diff --git a/.gitignore b/.gitignore index 3dd095c5b..3939e5bc8 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,4 @@ node_modules -dist scripts/icomoon scripts/*.zip npm*debug*.log @@ -9,3 +8,4 @@ site/bundle.js site/build site/node_modules .idea +.history \ No newline at end of file diff --git a/dist/Icon.js b/dist/Icon.js new file mode 100644 index 000000000..c9f3582e3 --- /dev/null +++ b/dist/Icon.js @@ -0,0 +1,76 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.withBaseIcon = exports["default"] = exports.Icon = void 0; + +var _react = _interopRequireDefault(require("react")); + +var _propTypes = _interopRequireDefault(require("prop-types")); + +var _SvgIcon = _interopRequireDefault(require("./SvgIcon")); + +var _excluded = ["style", "className", "icon", "size", "tag"]; + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); } + +function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; } + +function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; } + +function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } + +function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; } + +function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; } + +var Icon = function Icon(props) { + var style = props.style, + className = props.className, + icon = props.icon, + size = props.size, + tag = props.tag, + others = _objectWithoutProperties(props, _excluded); //eslint-disable-line + + + var Tag = tag; + return /*#__PURE__*/_react["default"].createElement(Tag, _extends({}, others, { + style: _objectSpread({ + display: 'inline-block' + }, style), + className: className + }), /*#__PURE__*/_react["default"].createElement(_SvgIcon["default"], { + size: props.size, + icon: props.icon, + title: props.title + })); +}; + +exports.Icon = Icon; + +var withBaseIcon = function withBaseIcon(defaultProps) { + return function (props) { + var propsToUse = _objectSpread({}, defaultProps); + + return /*#__PURE__*/_react["default"].createElement(Icon, _extends({}, propsToUse, props)); + }; +}; + +exports.withBaseIcon = withBaseIcon; +Icon.defaultProps = { + size: 16, + fill: 'currentColor', + tag: 'i' +}; +Icon.propTypes = { + icon: _propTypes["default"].object.isRequired, + size: _propTypes["default"].oneOfType([_propTypes["default"].number, _propTypes["default"].string]), + style: _propTypes["default"].object, + tag: _propTypes["default"].oneOf(['i', 'span', 'div']), + className: _propTypes["default"].string +}; +var _default = Icon; +exports["default"] = _default; \ No newline at end of file diff --git a/dist/Icon.playground.js b/dist/Icon.playground.js new file mode 100644 index 000000000..51f942089 --- /dev/null +++ b/dist/Icon.playground.js @@ -0,0 +1,37 @@ +"use strict"; + +function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); } + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.__PlaygroundIcon = void 0; + +var _react = _interopRequireDefault(require("react")); + +var _Icon = _interopRequireDefault(require("./Icon")); + +var icons = _interopRequireWildcard(require("./md/")); + +function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); } + +function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; } + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +var __PlaygroundIcon = function __PlaygroundIcon() { + return /*#__PURE__*/_react["default"].createElement("div", { + style: { + color: 'green', + margin: 2, + padding: 4 + } + }, Object.keys(icons).map(function (key) { + return /*#__PURE__*/_react["default"].createElement(_Icon["default"], { + icon: icons[key], + size: 42 + }); + })); +}; + +exports.__PlaygroundIcon = __PlaygroundIcon; \ No newline at end of file diff --git a/dist/README.md b/dist/README.md new file mode 100644 index 000000000..b0e162bf2 --- /dev/null +++ b/dist/README.md @@ -0,0 +1,109 @@ + +# react-icons-kit + +Note: Please visit https://reactsvgicons.com/ +has svg icons directly as react components can you can import to your project without +to need to use a library + +Releases: + +v2.0.0 + +- [@kamikazebr](https://github.com/kamikazebr) export withBaseIcon - PR [#75](https://github.com/wmira/react-icons-kit/pull/75) +- [@lyleunderwood](https://github.com/lyleunderwood) Don't discard fill=none - PR [#73](https://github.com/wmira/react-icons-kit/pull/73) +- [@lyleunderwood](https://github.com/lyleunderwood) Update Material Design Icons to 4.0.0 - PR [#60](https://github.com/wmira/react-icons-kit/pull/60) +- [@vahissan](https://github.com/vahissan) Allow IconProp type definition to allow all HTML attributes. PR[#58](https://github.com/wmira/react-icons-kit/pull/58) +- [@gottschalkironhack](https://github.com/gottschalkironhack) - Same material v4 update + +1.3.0 + +- `[Merged PR #42 by @nbcnc`](https://github.com/wmira/react-icons-kit/pull/42) + + +[![Project Supported By ReactForBeginners.com](https://img.shields.io/badge/%F0%9F%91%8D_Project_Supported_By-ReactForBeginners.com%20Tutorials-brightgreen.svg?style=flat-square)](https://ReactForBeginners.com/friend/REACTICONS) + +[![Project Supported By AdvancedReact.com](https://img.shields.io/badge/%F0%9F%91%8D_Project_Supported_By-AdvancedReact.com%20Tutorials-brightgreen.svg?style=flat-square)](https://AdvancedReact.com/friend/REACTICONS) + +## Installation + +``` +npm install --save react-icons-kit +``` + +## Documentation / Demo + +Please visit: +[Vercel react-icons-kit](https://react-icons-kit.vercel.app/) +[Surge react-icons-kit](https://react-icons-kit.surge.sh/) + +## Bundled Icon Sets + +* [`IcoMoon`](https://github.com/Keyamoon/IcoMoon-Free) vmaster +* [`FontAwesome`](http://fortawesome.github.io/Font-Awesome/icons/) v4.7 +* [`MaterialIcons`](https://www.google.com/design/icons/) v4.x +* [`Open Iconic`](https://github.com/iconic/open-iconic) v1.1.1 +* [`Entypo`](http://entypo.com) latest +* [`Ikons`](http://ikons.piotrkwiatkowski.co.uk/) latest +* [`Metrize`](http://www.alessioatzeni.com/metrize-icons/) latest +* [`Octicons`](https://octicons.github.com/) v5.0.1 +* [`Ionicons`](http://ionicons.com/) v2.0.1 +* [`Linea`](http://linea.io/) latest +* [`Typicons`](http://typicons.com/) v2.0.8 +* [`Noto Emoji Regular`](https://www.google.com/get/noto/#emoji-zsye/) latest +* [`Feather Icons`](https://feathericons.com/)latest + +Plus more to come. + +## Browse Icon Sets + +Browse all available icons here: + +[Vercel react-icons-kit](https://react-icons-kit-wmira.vercel.app/) +[Surge react-icons-kit](https://react-icons-kit.surge.sh/) + + +## Quick Start Guide + +```javascript + + import Icon from 'react-icons-kit'; + import { ic_add_a_photo } from 'react-icons-kit/md/ic_add_a_photo'; + import { lock } from 'react-icons-kit/fa/lock'; + + export const ShowIcons = () => { + + return ( +
+
+
+
+ ) + } +``` + +## Tree Shaking + +Use the eslint config from this: https://github.com/wmira/react-icons-kit/issues/38 + +## Development + +### React Icons Kit Site + +To update the react-icons-kit site deployed at [react-icons-kit](https://react-icons-kit-wmira.vercel.app/), You would need to clone +https://github.com/wmira/react-icons-kit-site + +1. Run npm run dist on react-icons-kit +2. Go to react-icons-kit-site and do npm install +3. cd node_modules +4. ln -sf /path/to/react-icons-kit/dist react-icons-kit +5. npm start + +You should now be able to live edit the website to do some changes, submit pull request. + +## Contributors + +react-icons-kit is brought to you by the following contributors: + + + + diff --git a/dist/SvgIcon.js b/dist/SvgIcon.js new file mode 100644 index 000000000..d86ff16b7 --- /dev/null +++ b/dist/SvgIcon.js @@ -0,0 +1,134 @@ +"use strict"; + +function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); } + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = exports.SvgIcon = void 0; + +var _react = _interopRequireWildcard(require("react")); + +var _propTypes = _interopRequireDefault(require("prop-types")); + +var _camelCase = require("camel-case"); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); } + +function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; } + +function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); } + +function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; } + +function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; } + +function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } + +function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); } + +function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } + +function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); } + +function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; } + +function _iterableToArrayLimit(arr, i) { var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"]; if (_i == null) return; var _arr = []; var _n = true; var _d = false; var _s, _e; try { for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; } + +function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; } + +function notNullOrUndef(val) { + return val !== null && val !== undefined; +} + +function expandStyle() { + var style = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : ''; + return style.split(';').reduce(function (partial, next) { + // next h ere is key:val + var _next$split = next.split(':'), + _next$split2 = _slicedToArray(_next$split, 2), + key = _next$split2[0], + val = _next$split2[1]; + + if (notNullOrUndef(key) && notNullOrUndef(val)) { + partial[(0, _camelCase.camelCase)(key)] = val; + } + + return partial; + }, {}); +} + +var walkChildren = function walkChildren(children) { + return children.map(function (child, idx) { + var name = child.name, + attribsMap = child.attribs, + _child$children = child.children, + gchildren = _child$children === void 0 ? null : _child$children; //fill, stroke + + var attribs = Object.keys(attribsMap).filter(function (key) { + return key !== 'fill' && key !== 'stroke' && attribsMap[key] !== 'none'; + }).reduce(function (partial, key) { + if (key === 'style') { + partial.style = expandStyle(attribsMap[key]); + } else { + partial[(0, _camelCase.camelCase)(key)] = attribsMap[key]; + } + + return partial; + }, {}); //special case, it has fill and stroke at the same time + + var merge = {}; + + if (attribsMap.fill === 'none' && attribsMap.stroke) { + merge = { + fill: 'none', + stroke: 'currentColor' + }; + } else if (attribsMap.fill === 'none') { + merge = { + fill: 'none' + }; + } + + return /*#__PURE__*/(0, _react.createElement)(name, _objectSpread(_objectSpread({ + key: idx + }, attribs), merge), gchildren === null ? gchildren : walkChildren(gchildren)); + }); +}; + +var SvgIcon = function SvgIcon(props) { + var size = props.size; + var _props$icon = props.icon, + children = _props$icon.children, + viewBox = _props$icon.viewBox, + _props$icon$attribs = _props$icon.attribs, + svgAttribs = _props$icon$attribs === void 0 ? {} : _props$icon$attribs; + var camelCasedAttribs = Object.keys(svgAttribs).reduce(function (partial, key) { + partial[(0, _camelCase.camelCase)(key)] = svgAttribs[key]; + return partial; + }, {}); + return /*#__PURE__*/_react["default"].createElement("svg", _extends({ + fill: "currentColor", + style: { + display: 'inline-block', + verticalAlign: 'middle' + }, + height: size, + width: size, + viewBox: viewBox + }, camelCasedAttribs), props.title ? /*#__PURE__*/_react["default"].createElement("title", null, props.title) : null, walkChildren(children)); +}; + +exports.SvgIcon = SvgIcon; +SvgIcon.defaultProps = { + size: 16 +}; +SvgIcon.propTypes = { + icon: _propTypes["default"].object.isRequired, + size: _propTypes["default"].oneOfType([_propTypes["default"].number, _propTypes["default"].string]), + title: _propTypes["default"].string +}; +var _default = SvgIcon; +exports["default"] = _default; \ No newline at end of file diff --git a/dist/entypo/address.js b/dist/entypo/address.js new file mode 100644 index 000000000..c98df8ecb --- /dev/null +++ b/dist/entypo/address.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.address = void 0; +var address = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M19.799,5.165l-2.375-1.83c-0.135-0.093-0.324-0.176-0.521-0.237C16.705,3.037,16.5,3,16.336,3H9.5l0.801,5h6.035\r\n\tc0.164,0,0.369-0.037,0.566-0.098s0.387-0.145,0.521-0.236l2.375-1.832C19.933,5.743,20,5.622,20,5.5S19.933,5.257,19.799,5.165z\r\n\t M8.5,1h-1C7.224,1,7,1.224,7,1.5V5H3.664c-0.166,0-0.37,0.037-0.567,0.099C2.899,5.159,2.71,5.242,2.576,5.335l-2.375,1.83\r\n\tC0.066,7.256,0,7.378,0,7.5c0,0.121,0.066,0.242,0.201,0.335l2.375,1.832C2.71,9.758,2.899,9.842,3.097,9.902\r\n\tC3.294,9.963,3.498,10,3.664,10H7v8.5C7,18.776,7.224,19,7.5,19h1C8.776,19,9,18.776,9,18.5v-17C9,1.224,8.776,1,8.5,1z" + } + }] +}; +exports.address = address; \ No newline at end of file diff --git a/dist/entypo/adjust.js b/dist/entypo/adjust.js new file mode 100644 index 000000000..a83d9dfd8 --- /dev/null +++ b/dist/entypo/adjust.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.adjust = void 0; +var adjust = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M19,9.199c-0.182,0-0.799,0-0.98,0c-0.553,0-1,0.359-1,0.801c0,0.441,0.447,0.799,1,0.799c0.182,0,0.799,0,0.98,0\r\n\tc0.552,0,1-0.357,1-0.799C20,9.559,19.551,9.199,19,9.199z M10,4.5c-3.051,0-5.5,2.449-5.5,5.5c0,3.051,2.449,5.5,5.5,5.5\r\n\tc3.05,0,5.5-2.449,5.5-5.5C15.5,6.949,13.049,4.5,10,4.5z M10,14c-2.211,0-4-1.791-4-4c0-2.211,1.789-4,4-4V14z M3,10\r\n\tc0-0.441-0.449-0.801-1-0.801c-0.185,0-0.816,0-1,0c-0.553,0-1,0.359-1,0.801c0,0.441,0.447,0.799,1,0.799c0.184,0,0.815,0,1,0\r\n\tC2.551,10.799,3,10.441,3,10z M10,3c0.441,0,0.799-0.447,0.799-1c0-0.184,0-0.816,0-1c0-0.553-0.358-1-0.799-1\r\n\tC9.558,0,9.199,0.447,9.199,1c0,0.184,0,0.816,0,1C9.199,2.553,9.558,3,10,3z M10,17c-0.442,0-0.801,0.447-0.801,1\r\n\tc0,0.184,0,0.816,0,1c0,0.553,0.359,1,0.801,1c0.441,0,0.799-0.447,0.799-1c0-0.184,0-0.816,0-1C10.799,17.447,10.441,17,10,17z\r\n\t M17.365,3.766c0.391-0.391,0.454-0.961,0.142-1.273s-0.883-0.248-1.272,0.143c-0.108,0.107-0.593,0.592-0.7,0.699\r\n\tc-0.391,0.391-0.454,0.961-0.142,1.273s0.883,0.248,1.273-0.143C16.773,4.357,17.257,3.873,17.365,3.766z M3.334,15.533\r\n\tc-0.108,0.109-0.593,0.594-0.7,0.701c-0.391,0.391-0.454,0.959-0.142,1.271s0.883,0.25,1.272-0.141\r\n\tc0.108-0.107,0.593-0.592,0.7-0.699c0.391-0.391,0.454-0.961,0.142-1.274S3.723,15.144,3.334,15.533z M3.765,2.635\r\n\tC3.375,2.244,2.804,2.18,2.492,2.492S2.244,3.375,2.633,3.766c0.108,0.107,0.593,0.592,0.7,0.699\r\n\tc0.391,0.391,0.96,0.455,1.272,0.143s0.249-0.883-0.141-1.273C4.357,3.227,3.873,2.742,3.765,2.635z M15.534,16.666\r\n\tc0.108,0.107,0.593,0.592,0.7,0.699c0.391,0.391,0.96,0.453,1.272,0.143c0.312-0.312,0.249-0.883-0.142-1.273\r\n\tc-0.107-0.107-0.592-0.592-0.699-0.699c-0.391-0.391-0.961-0.455-1.274-0.143S15.143,16.275,15.534,16.666z" + } + }] +}; +exports.adjust = adjust; \ No newline at end of file diff --git a/dist/entypo/air.js b/dist/entypo/air.js new file mode 100644 index 000000000..dfb598fb8 --- /dev/null +++ b/dist/entypo/air.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.air = void 0; +var air = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M2.643,6.357c1.747-1.5,3.127-2.686,6.872-0.57c1.799,1.016,3.25,1.4,4.457,1.398c2.115,0,3.486-1.176,4.671-2.193\r\n\tc0.423-0.363,0.477-1.008,0.122-1.439c-0.357-0.432-0.987-0.488-1.41-0.125c-1.746,1.502-3.127,2.688-6.872,0.57\r\n\tC5.535,1.205,3.217,3.195,1.355,4.795C0.933,5.158,0.879,5.801,1.234,6.234C1.59,6.664,2.22,6.721,2.643,6.357z M17.355,8.535\r\n\tc-1.746,1.5-3.127,2.688-6.872,0.57C5.535,6.31,3.217,8.301,1.355,9.9c-0.422,0.363-0.477,1.008-0.121,1.439\r\n\tc0.355,0.432,0.986,0.488,1.409,0.125C4.39,9.963,5.77,8.777,9.515,10.892c1.799,1.018,3.25,1.4,4.457,1.4\r\n\tc2.115,0,3.486-1.176,4.671-2.195c0.423-0.363,0.477-1.008,0.122-1.438C18.409,8.226,17.778,8.172,17.355,8.535z M17.355,13.641\r\n\tc-1.746,1.502-3.127,2.688-6.872,0.572c-4.948-2.795-7.266-0.805-9.128,0.795c-0.422,0.363-0.477,1.008-0.121,1.439\r\n\tc0.355,0.432,0.986,0.486,1.409,0.123C4.39,15.07,5.77,13.885,9.515,16c1.799,1.016,3.25,1.4,4.457,1.4\r\n\tc2.115,0,3.486-1.178,4.671-2.195c0.423-0.363,0.477-1.008,0.122-1.439C18.409,13.334,17.778,13.279,17.355,13.641z" + } + }] +}; +exports.air = air; \ No newline at end of file diff --git a/dist/entypo/aircraft.js b/dist/entypo/aircraft.js new file mode 100644 index 000000000..c5fcd8236 --- /dev/null +++ b/dist/entypo/aircraft.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.aircraft = void 0; +var aircraft = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M12.496,17.414c-0.394-1.096-1.805-4.775-2.39-6.297c-1.103,0.737-2.334,1.435-3.512,1.928\r\n\tc-0.366,1.28-1.094,3.709-1.446,4.033c-0.604,0.557-0.832,0.485-0.925-0.279c-0.093-0.764-0.485-3.236-0.485-3.236\r\n\ts-2.162-1.219-2.84-1.568s-0.667-0.591,0.057-0.974c0.422-0.223,2.927-0.085,4.242,0.005c0.861-0.951,1.931-1.882,2.993-2.679\r\n\tC6.975,7.271,4.04,4.672,3.156,3.923C2.38,3.265,3.235,3.126,3.235,3.126c0.39-0.07,1.222-0.132,1.628-0.009\r\n\tc2.524,0.763,6.442,2.068,7.363,2.376c0.353-0.249,0.737-0.52,1.162-0.821c4.702-3.33,5.887-2.593,6.111-2.27\r\n\ts0.503,1.701-4.199,5.032c-0.425,0.301-0.808,0.573-1.16,0.823c-0.029,0.98-0.157,5.151-0.311,7.811\r\n\tc-0.025,0.428-0.367,1.198-0.565,1.544C13.263,17.612,12.841,18.377,12.496,17.414z" + } + }] +}; +exports.aircraft = aircraft; \ No newline at end of file diff --git a/dist/entypo/all.js b/dist/entypo/all.js new file mode 100644 index 000000000..4987a342b --- /dev/null +++ b/dist/entypo/all.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.all = void 0; +var all = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M7.225,5.767V3.086L0,9.542l7.225,6.691v-2.777L3,9.542L7.225,5.767z M12.225,6.953V3.086L5,9.542l7.225,6.691v-4.357\r\n\tc3.292,0,5.291,0.422,7.775,4.81C20,16.685,19.632,6.953,12.225,6.953z" + } + }] +}; +exports.all = all; \ No newline at end of file diff --git a/dist/entypo/alternative.js b/dist/entypo/alternative.js new file mode 100644 index 000000000..dc10be5c7 --- /dev/null +++ b/dist/entypo/alternative.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.alternative = void 0; +var alternative = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M9,13h2V4h2l-3-4L7,4h2V13z M17,7h-3v2h2v9H4V9h2V7H3C2.447,7,2,7.447,2,8v11c0,0.552,0.447,1,1,1h14c0.553,0,1-0.448,1-1V8\r\n\tC18,7.448,17.553,7,17,7z" + } + }] +}; +exports.alternative = alternative; \ No newline at end of file diff --git a/dist/entypo/alternitive.js b/dist/entypo/alternitive.js new file mode 100644 index 000000000..b26211a4d --- /dev/null +++ b/dist/entypo/alternitive.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.alternitive = void 0; +var alternitive = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M19,17V3c0-1.1-0.903-2-2.005-2H3.005C1.855,1,1,1.853,1,3v14c0,1.148,0.855,2,2.005,2h13.99C18.097,19,19,18.101,19,17z\r\n\t M15.184,11.607c0,0,1.132,1.117,1.411,1.635c0.008,0.011,0.011,0.021,0.014,0.025c0.113,0.19,0.142,0.34,0.085,0.45\r\n\tC16.6,13.9,16.28,13.992,16.171,14c0,0-1.943,0-1.999,0c-0.14,0-0.43-0.036-0.782-0.279c-0.27-0.188-0.537-0.499-0.797-0.802\r\n\tc-0.388-0.45-0.724-0.84-1.062-0.84c-0.043,0-0.086,0.007-0.126,0.021c-0.257,0.082-0.583,0.447-0.583,1.422\r\n\tc0,0.305-0.24,0.479-0.41,0.479c0,0-0.872,0-0.916,0c-0.312,0-1.937-0.109-3.376-1.628c-1.766-1.86-3.352-5.591-3.366-5.624\r\n\tc-0.1-0.241,0.107-0.372,0.332-0.372h2.02c0.271,0,0.358,0.164,0.42,0.311C5.596,6.855,5.86,7.529,6.292,8.287\r\n\tc0.703,1.233,1.136,1.735,1.481,1.735c0.064,0,0.126-0.017,0.184-0.049c0.451-0.249,0.367-1.857,0.347-2.189\r\n\tc0-0.063-0.001-0.719-0.231-1.034C7.907,6.522,7.626,6.435,7.456,6.402c0.045-0.065,0.142-0.166,0.266-0.226\r\n\tC8.031,6.022,8.588,6,9.142,6h0.308c0.601,0.008,0.757,0.047,0.974,0.102c0.439,0.105,0.448,0.39,0.409,1.36\r\n\tc-0.011,0.276-0.023,0.589-0.023,0.956c0,0.079-0.003,0.166-0.003,0.256c-0.014,0.496-0.03,1.057,0.32,1.287\r\n\tc0.046,0.028,0.097,0.044,0.151,0.044c0.122,0,0.487,0,1.476-1.697c0.435-0.749,0.77-1.633,0.793-1.699\r\n\tc0.02-0.036,0.079-0.142,0.148-0.183c0.056-0.033,0.128-0.039,0.166-0.039h2.375c0.26,0,0.436,0.039,0.469,0.138\r\n\tc0.057,0.159-0.011,0.644-1.096,2.11c-0.184,0.243-0.343,0.455-0.483,0.64C14.142,10.563,14.142,10.629,15.184,11.607z" + } + }] +}; +exports.alternitive = alternitive; \ No newline at end of file diff --git a/dist/entypo/archive.js b/dist/entypo/archive.js new file mode 100644 index 000000000..6c6abca75 --- /dev/null +++ b/dist/entypo/archive.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.archive = void 0; +var archive = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M13.981,2H6.018c0,0-0.996,0-0.996,1h9.955C14.977,2,13.981,2,13.981,2z M16.968,5c0-1-0.995-1-0.995-1H4.027\r\n\tc0,0-0.995,0-0.995,1v1h13.936V5z M18.958,6C18.37,5.408,18.37,5.408,18.37,5.408V7H1.63V5.408c0,0,0,0-0.589,0.592\r\n\tC0.452,6.592,0.03,6.75,0.267,8c0.236,1.246,1.379,8.076,1.549,9c0.186,1.014,1.217,1,1.217,1h13.936c0,0,1.03,0.014,1.217-1\r\n\tc0.17-0.924,1.312-7.754,1.549-9C19.97,6.75,19.548,6.592,18.958,6z M14,11.997C14,12.551,13.551,13,12.997,13H7.003\r\n\tC6.449,13,6,12.551,6,11.997V10h1v2h6v-2h1V11.997z" + } + }] +}; +exports.archive = archive; \ No newline at end of file diff --git a/dist/entypo/arrows.js b/dist/entypo/arrows.js new file mode 100644 index 000000000..faf792303 --- /dev/null +++ b/dist/entypo/arrows.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows = void 0; +var arrows = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,1L5,8h10L10,1z M10,19l5-7H5L10,19z" + } + }] +}; +exports.arrows = arrows; \ No newline at end of file diff --git a/dist/entypo/attachment.js b/dist/entypo/attachment.js new file mode 100644 index 000000000..cb178f2ca --- /dev/null +++ b/dist/entypo/attachment.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.attachment = void 0; +var attachment = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M5.602,19.8c-1.293,0-2.504-0.555-3.378-1.44c-1.695-1.716-2.167-4.711,0.209-7.116c1.391-1.408,6.966-7.053,9.748-9.87\r\n\tc0.988-1,2.245-1.387,3.448-1.06c1.183,0.32,2.151,1.301,2.468,2.498c0.322,1.22-0.059,2.493-1.046,3.493l-9.323,9.44\r\n\tc-0.532,0.539-1.134,0.858-1.738,0.922c-0.599,0.064-1.17-0.13-1.57-0.535c-0.724-0.736-0.828-2.117,0.378-3.337l6.548-6.63\r\n\tc0.269-0.272,0.705-0.272,0.974,0s0.269,0.714,0,0.986l-6.549,6.631c-0.566,0.572-0.618,1.119-0.377,1.364\r\n\tC5.5,15.252,5.66,15.301,5.845,15.28c0.283-0.029,0.606-0.216,0.909-0.521l9.323-9.439c0.64-0.648,0.885-1.41,0.69-2.145\r\n\tc-0.192-0.725-0.778-1.318-1.493-1.513c-0.726-0.197-1.48,0.052-2.12,0.7c-2.782,2.818-8.356,8.462-9.748,9.87\r\n\tc-1.816,1.839-1.381,3.956-0.209,5.143c1.173,1.187,3.262,1.629,5.079-0.212l9.748-9.87c0.269-0.272,0.705-0.272,0.974,0\r\n\tc0.269,0.272,0.269,0.714,0,0.987L9.25,18.15C8.101,19.312,6.814,19.8,5.602,19.8z" + } + }] +}; +exports.attachment = attachment; \ No newline at end of file diff --git a/dist/entypo/back.js b/dist/entypo/back.js new file mode 100644 index 000000000..7508d4f00 --- /dev/null +++ b/dist/entypo/back.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.back = void 0; +var back = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M19,7v6c0,1.103-0.896,2-2,2H3v-3h13V8H5v2L1,6.5L5,3v2h12C18.104,5,19,5.896,19,7z" + } + }] +}; +exports.back = back; \ No newline at end of file diff --git a/dist/entypo/bag.js b/dist/entypo/bag.js new file mode 100644 index 000000000..aad71066d --- /dev/null +++ b/dist/entypo/bag.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bag = void 0; +var bag = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.121,3.271c-0.295-0.256-1.906-1.731-2.207-1.991C15.615,1.021,15.158,1,14.812,1H5.188C4.843,1,4.386,1.021,4.086,1.28\r\n\tC3.785,1.54,2.174,3.016,1.879,3.271C1.582,3.527,1.336,3.914,1.415,4.463c0.079,0.551,1.89,13.661,1.937,13.973\r\n\tC3.398,18.747,3.67,18.993,4,19h12c0.33-0.007,0.602-0.253,0.648-0.565c0.047-0.311,1.858-13.422,1.938-13.973\r\n\tC18.664,3.914,18.418,3.527,18.121,3.271z M10,11.973c-3.248,0-3.943-4.596-4.087-5.543H7.75c0.276,1.381,0.904,3.744,2.25,3.744\r\n\ts1.975-2.363,2.25-3.744h1.838C13.943,7.377,13.248,11.973,10,11.973z M3.17,4.006L5,2h10l1.83,2.006H3.17z" + } + }] +}; +exports.bag = bag; \ No newline at end of file diff --git a/dist/entypo/baidu.js b/dist/entypo/baidu.js new file mode 100644 index 000000000..2b1f8bdea --- /dev/null +++ b/dist/entypo/baidu.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.baidu = void 0; +var baidu = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M17.4116364,6.9370399c-0.3587151-0.2830696-0.923996-0.4004283-1.4627256-0.3652954\r\n\tc-0.4163361,0.0265503-0.7609177,0.0346184-1.0045052,0.1825905c-1.1165419,0.6770897-1.2169638,4.3529868,0.1820755,4.9340606\r\n\tC18.100399,12.9238987,19.1828365,8.3379107,17.4116364,6.9370399z M12.933279,10.7750425\r\n\tc-0.9637632-1.1185446-1.6411963-2.6815205-3.5630016-2.375906c-1.7067132,0.2714539-1.9238648,1.6706648-2.8335552,2.6501064\r\n\tc-1.0796924,1.1637497-3.1049521,2.0173635-3.5640316,3.8376598c-0.3346822,1.3286009,0.1159286,2.8923788,0.9135242,3.4726515\r\n\tc1.5661802,1.1375408,4.473722-0.1246262,6.5796628,0.0911503c1.2606802,0.1290321,2.2246733,0.571804,3.197649,0.5484009\r\n\tc2.2625532-0.0532722,4.0896587-1.669405,3.1077557-4.294507C16.2904587,13.418684,14.1704426,12.21099,12.933279,10.7750425z\r\n\t M12.6592512,6.8458877c1.1333075,0.0318718,2.3012905-1.2649717,2.3760777-2.467402\r\n\tc0.0976181-1.5697851-0.929431-3.1436331-2.4671726-2.7416024c-0.9137535,0.2387236-1.66397,1.4105408-1.7361822,2.5593553\r\n\tC10.7485466,5.5281014,11.4487524,6.8116126,12.6592512,6.8458877z M8.2726755,6.4801922\r\n\tC9.4498711,6.321291,9.9402504,4.9083467,9.7355728,3.2816844c-0.1689148-1.338729-0.8955564-2.6371751-2.4675736-2.192801\r\n\tC5.1026068,1.7001691,5.4477601,6.8620238,8.2726755,6.4801922z M4.1614451,10.5923948\r\n\tc2.5823007-0.3854933,1.9797125-5.9385071-0.8224294-5.2997556C0.9296925,5.8418407,1.2518435,11.0266409,4.1614451,10.5923948z" + } + }] +}; +exports.baidu = baidu; \ No newline at end of file diff --git a/dist/entypo/basecamp.js b/dist/entypo/basecamp.js new file mode 100644 index 000000000..901b79dc0 --- /dev/null +++ b/dist/entypo/basecamp.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basecamp = void 0; +var basecamp = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,2C5.327,2,0.7,8.481,0.7,14.422C0.7,15.799,5.234,18,10,18s9.3-2.201,9.3-3.578C19.3,8.481,14.673,2,10,2z\r\n\t M10.006,15.615c-5.198,0-6.673-2.068-6.673-2.722c0-1.287,2.13-4.485,2.906-4.485c0.719,0,1.542,1.811,2.314,1.811\r\n\tc1.241,0,2.567-3.954,3.579-3.954s4.601,5.178,4.601,6.749C16.733,13.285,15.649,15.615,10.006,15.615z" + } + }] +}; +exports.basecamp = basecamp; \ No newline at end of file diff --git a/dist/entypo/basket.js b/dist/entypo/basket.js new file mode 100644 index 000000000..e5ccb2e62 --- /dev/null +++ b/dist/entypo/basket.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basket = void 0; +var basket = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.399,7h-5.007l-1.812,1.812c-0.453,0.453-1.056,0.702-1.696,0.702c-0.642,0-1.244-0.25-1.698-0.703\r\n\tC7.734,8.359,7.484,7.757,7.483,7.116c0-0.039,0.01-0.077,0.011-0.116H1.6C1.268,7,1,7.268,1,7.6V10h18V7.6\r\n\tC19,7.268,18.73,7,18.399,7z M10.768,7.999l5.055-5.055c0.235-0.234,0.237-0.613,0.002-0.849l-0.92-0.92\r\n\tc-0.234-0.234-0.614-0.233-0.85,0L9,6.231c-0.488,0.488-0.488,1.28,0,1.768C9.488,8.486,10.279,8.487,10.768,7.999z M3.823,17.271\r\n\tC3.92,17.672,4.338,18,4.75,18h10.5c0.412,0,0.83-0.328,0.927-0.729L17.7,11H2.3L3.823,17.271z" + } + }] +}; +exports.basket = basket; \ No newline at end of file diff --git a/dist/entypo/battery.js b/dist/entypo/battery.js new file mode 100644 index 000000000..dbaf65bbf --- /dev/null +++ b/dist/entypo/battery.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.battery = void 0; +var battery = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M15.408,10c0-2.766,1.277-4.32,2.277-4.32c0.363,0,1.315,0,1.315,0C18.332,4.621,17.779,4,15.342,4H5.334\r\n\tC1.6,4,0,7.441,0,10c0,2.559,1.6,6,5.334,6h10.008c2.438,0,2.99-0.621,3.658-1.68c0,0-0.315,0-1.315,0S15.408,12.766,15.408,10z\r\n\t M12.688,11.795c-0.164,0.25-0.676,0.016-0.676,0.016l-2.957-1.338c0,0-0.264,0.67-0.467,1.141\r\n\tc-0.205,0.471-0.361,1.004-1.209,0.408c-0.849-0.598-3.581-3.25-3.581-3.25S3.453,8.488,3.625,8.221\r\n\tc0.163-0.252,0.676-0.016,0.676-0.016l2.956,1.336c0,0,0.265-0.668,0.468-1.139C7.93,7.932,8.086,7.396,8.934,7.994\r\n\tc0.849,0.596,3.58,3.25,3.58,3.25S12.859,11.527,12.688,11.795z M18.874,7.928h-0.749c-0.559,0-1.105,0.754-1.105,1.979\r\n\tc0,1.227,0.547,1.98,1.105,1.98h0.749c0.56,0,1.126-0.754,1.126-1.98C20,8.682,19.434,7.928,18.874,7.928z" + } + }] +}; +exports.battery = battery; \ No newline at end of file diff --git a/dist/entypo/behance.js b/dist/entypo/behance.js new file mode 100644 index 000000000..f12968ff2 --- /dev/null +++ b/dist/entypo/behance.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.behance = void 0; +var behance = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M8.072,9.301c0,0,1.892-0.147,1.892-2.459c0-2.315-1.548-3.441-3.51-3.441H0v12.926h6.454c0,0,3.941,0.129,3.941-3.816\r\n\tC10.394,12.51,10.566,9.301,8.072,9.301z M2.844,5.697h3.61c0,0,0.878,0,0.878,1.344c0,1.346-0.516,1.541-1.102,1.541H2.844V5.697z\r\n\t M6.271,14.029H2.844v-3.455h3.61c0,0,1.308-0.018,1.308,1.775C7.762,13.861,6.785,14.018,6.271,14.029z M15.649,6.688\r\n\tc-4.771,0-4.767,4.967-4.767,4.967s-0.326,4.941,4.767,4.941c0,0,4.243,0.254,4.243-3.437h-2.182c0,0,0.072,1.391-1.988,1.391\r\n\tc0,0-2.184,0.152-2.184-2.25h6.423C19.962,12.299,20.67,6.688,15.649,6.688z M17.59,10.574h-4.074c0,0,0.266-1.992,2.182-1.992\r\n\tS17.59,10.574,17.59,10.574z M18.097,4.16H12.98v1.594h5.117V4.16z" + } + }] +}; +exports.behance = behance; \ No newline at end of file diff --git a/dist/entypo/bell.js b/dist/entypo/bell.js new file mode 100644 index 000000000..15b89fb7d --- /dev/null +++ b/dist/entypo/bell.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bell = void 0; +var bell = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M14.65,8.512c-2.28-4.907-3.466-6.771-7.191-6.693C6.132,1.846,6.45,0.857,5.438,1.232C4.428,1.607,5.295,2.156,4.261,3.005\r\n\tc-2.902,2.383-2.635,4.587-1.289,9.84c0.567,2.213-1.367,2.321-0.602,4.465c0.559,1.564,4.679,2.219,9.025,0.607\r\n\tc4.347-1.613,7.086-4.814,6.527-6.378C17.157,9.394,15.611,10.578,14.65,8.512z M10.924,16.595c-3.882,1.44-7.072,0.594-7.207,0.217\r\n\tc-0.232-0.65,1.253-2.816,5.691-4.463c4.438-1.647,6.915-1.036,7.174-0.311C16.735,12.467,14.807,15.154,10.924,16.595z\r\n\t M9.676,13.101c-2.029,0.753-3.439,1.614-4.353,2.389c0.643,0.584,1.847,0.726,3.046,0.281c1.527-0.565,2.466-1.866,2.095-2.904\r\n\tc-0.005-0.013-0.011-0.023-0.016-0.036C10.197,12.913,9.94,13.002,9.676,13.101z" + } + }] +}; +exports.bell = bell; \ No newline at end of file diff --git a/dist/entypo/blackboard.js b/dist/entypo/blackboard.js new file mode 100644 index 000000000..498ad5c21 --- /dev/null +++ b/dist/entypo/blackboard.js @@ -0,0 +1,18 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.blackboard = void 0; +var blackboard = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M2.539,20H6l1.406-3.698L4.44,15.298L2.539,20z M12.594,16.302L14,20h3.461\r\n\tl-1.901-4.702L12.594,16.302z M18,2h-6.5L11,0H9L8.5,2H2C1.447,2,1,2.447,1,3v11c0,0.552,0.447,1,1,1h16c0.553,0,1-0.448,1-1V3\r\n\tC19,2.448,18.553,2,18,2z" + } + }] +}; +exports.blackboard = blackboard; \ No newline at end of file diff --git a/dist/entypo/block.js b/dist/entypo/block.js new file mode 100644 index 000000000..261df5ced --- /dev/null +++ b/dist/entypo/block.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.block = void 0; +var block = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,0.4c-5.303,0-9.601,4.298-9.601,9.6c0,5.303,4.298,9.601,9.601,9.601c5.301,0,9.6-4.298,9.6-9.601\r\n\tC19.6,4.698,15.301,0.4,10,0.4z M2.399,10c0-4.197,3.402-7.6,7.6-7.6c1.829,0,3.506,0.647,4.817,1.723L4.122,14.817\r\n\tC3.046,13.505,2.399,11.829,2.399,10z M9.999,17.599c-1.828,0-3.505-0.646-4.815-1.722L15.878,5.184\r\n\tC16.953,6.496,17.6,8.171,17.6,10C17.6,14.197,14.196,17.599,9.999,17.599z" + } + }] +}; +exports.block = block; \ No newline at end of file diff --git a/dist/entypo/boldDown.js b/dist/entypo/boldDown.js new file mode 100644 index 000000000..d4237785a --- /dev/null +++ b/dist/entypo/boldDown.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.boldDown = void 0; +var boldDown = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M2.5,10H6V3h8v7h3.5L10,17.5L2.5,10z" + } + }] +}; +exports.boldDown = boldDown; \ No newline at end of file diff --git a/dist/entypo/boldLeft.js b/dist/entypo/boldLeft.js new file mode 100644 index 000000000..959b4027e --- /dev/null +++ b/dist/entypo/boldLeft.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.boldLeft = void 0; +var boldLeft = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,2.5V6h7v8h-7v3.5L2.5,10L10,2.5z" + } + }] +}; +exports.boldLeft = boldLeft; \ No newline at end of file diff --git a/dist/entypo/boldRight.js b/dist/entypo/boldRight.js new file mode 100644 index 000000000..7f4ba5bd3 --- /dev/null +++ b/dist/entypo/boldRight.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.boldRight = void 0; +var boldRight = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M17.5,10L10,17.5V14H3V6h7V2.5L17.5,10z" + } + }] +}; +exports.boldRight = boldRight; \ No newline at end of file diff --git a/dist/entypo/boldUp.js b/dist/entypo/boldUp.js new file mode 100644 index 000000000..4d49328ed --- /dev/null +++ b/dist/entypo/boldUp.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.boldUp = void 0; +var boldUp = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,2.5l7.5,7.5H14v7H6v-7H2.5L10,2.5z" + } + }] +}; +exports.boldUp = boldUp; \ No newline at end of file diff --git a/dist/entypo/book.js b/dist/entypo/book.js new file mode 100644 index 000000000..a526893b3 --- /dev/null +++ b/dist/entypo/book.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.book = void 0; +var book = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M17,5.95v10.351c0,0.522-0.452,0.771-1,1.16c-0.44,0.313-1-0.075-1-0.587c0,0,0-9.905,0-10.114\r\n\tc0-0.211-0.074-0.412-0.314-0.535c-0.24-0.123-7.738-4.065-7.738-4.065C6.827,2.115,6.299,1.782,5.595,2.144\r\n\tC4.926,2.488,4.562,2.862,4.469,3.038l8.18,4.482C12.866,7.634,13,7.81,13,8.036v10.802c0,0.23-0.142,0.476-0.369,0.585\r\n\tc-0.104,0.052-0.219,0.077-0.333,0.077c-0.135,0-0.271-0.033-0.386-0.104c-0.215-0.131-7.774-4.766-8.273-5.067\r\n\tc-0.24-0.144-0.521-0.439-0.527-0.658L3,3.385c0-0.198-0.023-0.547,0.289-1.032c0.697-1.084,3.129-2.317,4.36-1.678l8.999,4.555\r\n\tC16.865,5.342,17,5.566,17,5.95z" + } + }] +}; +exports.book = book; \ No newline at end of file diff --git a/dist/entypo/bookmark.js b/dist/entypo/bookmark.js new file mode 100644 index 000000000..1d9c8eacd --- /dev/null +++ b/dist/entypo/bookmark.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bookmark = void 0; +var bookmark = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M14,2v17l-4-4l-4,4V2c0-0.553,0.585-1.02,1-1h6C13.689,0.98,14,1.447,14,2z" + } + }] +}; +exports.bookmark = bookmark; \ No newline at end of file diff --git a/dist/entypo/bookmarks.js b/dist/entypo/bookmarks.js new file mode 100644 index 000000000..83bb69ef7 --- /dev/null +++ b/dist/entypo/bookmarks.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bookmarks = void 0; +var bookmarks = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M15,0h-4c-0.553,0-1,0.447-1,1l0.023,0.222c1.102,0,2,0.897,2,2v11.359L13,13.4l3,3.6V1C16,0.447,15.553,0,15,0z M9.023,3H5\r\n\tC4.447,3,4,3.447,4,4v16l3-3.6l3,3.6V4C10,3.447,9.576,3,9.023,3z" + } + }] +}; +exports.bookmarks = bookmarks; \ No newline at end of file diff --git a/dist/entypo/bottom.js b/dist/entypo/bottom.js new file mode 100644 index 000000000..59202032c --- /dev/null +++ b/dist/entypo/bottom.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bottom = void 0; +var bottom = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M13,11h-2V3H9v8H7l3,3L13,11z M17.4,15H2.6C2.048,15,2,15.447,2,16c0,0.553,0.048,1,0.6,1H17.4c0.552,0,0.6-0.447,0.6-1\r\n\tC18,15.447,17.952,15,17.4,15z" + } + }] +}; +exports.bottom = bottom; \ No newline at end of file diff --git a/dist/entypo/bowl.js b/dist/entypo/bowl.js new file mode 100644 index 000000000..49a5669af --- /dev/null +++ b/dist/entypo/bowl.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bowl = void 0; +var bowl = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M16.949,7.472c-2.176,2.902-4.095,3.002-7.046,3.152H9.802c-3.591-0.002-6.138-1.336-6.138-1.832\r\n\tC3.662,8.321,5.962,7.095,9.269,6.973l0.59-1.473c-0.019,0-0.037-0.002-0.057-0.002c-4.908,0-7.791,1.562-7.791,3.051v2\r\n\tc0,0.918,0.582,8.949,7.582,8.949s8-8.031,8-8.949v-2c0-0.391-0.201-0.787-0.584-1.158L16.949,7.472z M17.589,2.702\r\n\tc-0.441-0.33-1.069-0.242-1.399,0.201l-3.608,4.809l2.336-5.838c0.206-0.512-0.044-1.094-0.557-1.301\r\n\tc-0.508-0.205-1.096,0.043-1.3,0.559L9.802,9.274c2.882-0.147,4.277-0.227,6.067-2.611c1.789-2.387,1.919-2.561,1.919-2.561\r\n\tC18.12,3.661,18.031,3.034,17.589,2.702z" + } + }] +}; +exports.bowl = bowl; \ No newline at end of file diff --git a/dist/entypo/box.js b/dist/entypo/box.js new file mode 100644 index 000000000..264ee9f0c --- /dev/null +++ b/dist/entypo/box.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.box = void 0; +var box = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.399,2H1.6C1.268,2,1,2.267,1,2.6V5h18V2.6C19,2.267,18.73,2,18.399,2z M2,16.6c0,0.77,0.629,1.4,1.399,1.4h13.2\r\n\tc0.77,0,1.4-0.631,1.4-1.4V6H2V16.6z M7,8h6v2H7V8z" + } + }] +}; +exports.box = box; \ No newline at end of file diff --git a/dist/entypo/branch.js b/dist/entypo/branch.js new file mode 100644 index 000000000..a90c00c9f --- /dev/null +++ b/dist/entypo/branch.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.branch = void 0; +var branch = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M16.4,4c0-1.326-1.074-2.4-2.4-2.4S11.6,2.674,11.6,4c0,0.961,0.568,1.784,1.384,2.167c-0.082,1.584-1.27,2.122-3.335,2.896\r\n\tC8.779,9.39,7.82,9.752,7,10.297V6.176C7.825,5.796,8.4,4.967,8.4,4c0-1.326-1.074-2.4-2.4-2.4S3.6,2.674,3.6,4\r\n\tc0,0.967,0.576,1.796,1.4,2.176v7.649C4.175,14.204,3.6,15.033,3.6,16c0,1.326,1.074,2.4,2.4,2.4s2.4-1.075,2.4-2.4\r\n\tc0-0.961-0.568-1.784-1.384-2.167c0.082-1.583,1.271-2.122,3.335-2.896c2.03-0.762,4.541-1.711,4.64-4.756\r\n\tC15.82,5.803,16.4,4.971,16.4,4z M6,2.615c0.764,0,1.384,0.619,1.384,1.385c0,0.764-0.62,1.385-1.384,1.385\r\n\tC5.235,5.385,4.616,4.764,4.616,4C4.616,3.234,5.235,2.615,6,2.615z M6,17.385c-0.766,0-1.385-0.621-1.385-1.385\r\n\tc0-0.766,0.619-1.385,1.385-1.385c0.764,0,1.384,0.619,1.384,1.385C7.384,16.764,6.764,17.385,6,17.385z M14,5.385\r\n\tc-0.766,0-1.385-0.621-1.385-1.385c0-0.766,0.619-1.385,1.385-1.385c0.764,0,1.384,0.619,1.384,1.385\r\n\tC15.384,4.764,14.764,5.385,14,5.385z" + } + }] +}; +exports.branch = branch; \ No newline at end of file diff --git a/dist/entypo/briefcase.js b/dist/entypo/briefcase.js new file mode 100644 index 000000000..9bbfa9918 --- /dev/null +++ b/dist/entypo/briefcase.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.briefcase = void 0; +var briefcase = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M9,10h2v2h9c0,0-0.149-4.459-0.2-5.854C19.75,4.82,19.275,4,17.8,4h-3.208c-0.497-0.938-1.032-1.945-1.197-2.256\r\n\tC13.064,1.121,12.951,1,12.216,1H7.783C7.048,1,6.936,1.121,6.604,1.744C6.439,2.055,5.904,3.062,5.408,4H2.199\r\n\tc-1.476,0-1.945,0.82-2,2.146C0.145,7.473,0,12,0,12h9V10z M7.649,2.916C7.879,2.484,7.957,2.4,8.466,2.4h3.067\r\n\tc0.509,0,0.588,0.084,0.816,0.516c0.086,0.16,0.318,0.6,0.575,1.084H7.074C7.331,3.516,7.563,3.076,7.649,2.916z M11,15H9v-2H0.5\r\n\tc0,0,0.124,1.797,0.199,3.322C0.73,16.955,0.917,18,2.499,18H17.5c1.582,0,1.765-1.047,1.8-1.678C19.387,14.754,19.5,13,19.5,13H11\r\n\tV15z" + } + }] +}; +exports.briefcase = briefcase; \ No newline at end of file diff --git a/dist/entypo/browser.js b/dist/entypo/browser.js new file mode 100644 index 000000000..1336c7d9d --- /dev/null +++ b/dist/entypo/browser.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.browser = void 0; +var browser = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M18,2H2C0.9,2,0,2.9,0,4v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V4C20,2.9,19.1,2,18,2z M4.5,3.75\r\n\tc0.414,0,0.75,0.336,0.75,0.75c0,0.414-0.336,0.75-0.75,0.75c-0.414,0-0.75-0.336-0.75-0.75C3.75,4.086,4.086,3.75,4.5,3.75z\r\n\t M1.75,4.5c0-0.414,0.336-0.75,0.75-0.75c0.414,0,0.75,0.336,0.75,0.75c0,0.414-0.336,0.75-0.75,0.75\r\n\tC2.086,5.25,1.75,4.914,1.75,4.5z M18,16H2V7h16V16z M18,5H6V4h12.019L18,5z" + } + }] +}; +exports.browser = browser; \ No newline at end of file diff --git a/dist/entypo/brush.js b/dist/entypo/brush.js new file mode 100644 index 000000000..c99b1e133 --- /dev/null +++ b/dist/entypo/brush.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.brush = void 0; +var brush = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M2.763,13.563c-1.515,1.488-0.235,3.016-2.247,5.279c-0.908,1.023,3.738,0.711,6.039-1.551\r\n\tc0.977-0.961,0.701-2.359-0.346-3.389C5.162,12.874,3.739,12.602,2.763,13.563z M19.539,0.659C18.763-0.105,10.16,6.788,7.6,9.305\r\n\tc-1.271,1.25-1.695,1.92-2.084,2.42c-0.17,0.219,0.055,0.285,0.154,0.336c0.504,0.258,0.856,0.496,1.311,0.943\r\n\tc0.456,0.447,0.699,0.793,0.959,1.289c0.053,0.098,0.121,0.318,0.342,0.152c0.51-0.383,1.191-0.801,2.462-2.049\r\n\tC13.305,9.88,20.317,1.422,19.539,0.659z" + } + }] +}; +exports.brush = brush; \ No newline at end of file diff --git a/dist/entypo/bucket.js b/dist/entypo/bucket.js new file mode 100644 index 000000000..4dc158d03 --- /dev/null +++ b/dist/entypo/bucket.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bucket = void 0; +var bucket = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M11,1C6.092,1,3.002,2.592,3.21,3.95c0.06,0.389,0.225,1.945,0.434,3.273c-2.405,0.934-3.202,2.449-3.095,3.684\r\n\tc0.127,1.461,1.441,3.025,4.328,3.295c1.648,0.154,3.631-0.75,4.916-2.295C9.671,11.7,9.6,11.457,9.6,11.2\r\n\tc0-0.774,0.627-1.4,1.4-1.4c0.774,0,1.4,0.627,1.4,1.4c0,0.762-0.61,1.381-1.369,1.398c-1.529,1.973-3.858,3.164-6.064,3.025\r\n\tc0.051,0.324,0.07,0.947,0.096,1.113C5.153,17.315,7.41,18.996,11,19c3.59-0.004,5.847-1.685,5.938-2.263\r\n\tC17.026,16.16,18.579,5.328,18.79,3.95C18.998,2.592,15.907,1,11,1z M1.943,10.785c-0.055-0.643,0.455-1.498,1.924-2.139\r\n\tc0.211,1.34,0.441,2.797,0.643,4.074C2.906,12.407,2.012,11.571,1.943,10.785z M11,6.024C7.41,6.022,4.863,4.69,4.863,4.192\r\n\tC4.861,3.698,7.41,2.402,11,2.404c3.59-0.002,6.139,1.294,6.137,1.788C17.137,4.69,14.59,6.022,11,6.024z" + } + }] +}; +exports.bucket = bucket; \ No newline at end of file diff --git a/dist/entypo/bug.js b/dist/entypo/bug.js new file mode 100644 index 000000000..22032bc48 --- /dev/null +++ b/dist/entypo/bug.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bug = void 0; +var bug = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,1C7.7907715,1,6,2.7908325,6,5h8C14,2.7908325,12.2092285,1,10,1z M19,10h-3V7.5031738\r\n\tc0-0.02771-0.0065918-0.0535278-0.0080566-0.0808716l2.2150879-2.21521c0.390625-0.3905029,0.390625-1.0236816,0-1.4141846\r\n\tc-0.3903809-0.390564-1.0236816-0.390564-1.4140625,0l-2.215332,2.21521C14.550293,6.0066528,14.5246582,6,14.4970703,6H5.5029297\r\n\tC5.4753418,6,5.449707,6.0066528,5.4223633,6.0081177l-2.215332-2.21521c-0.3903809-0.390564-1.0236816-0.390564-1.4140625,0\r\n\tc-0.390625,0.3905029-0.390625,1.0236816,0,1.4141846l2.2150879,2.21521C4.0065918,7.449646,4,7.4754639,4,7.5031738V10H1\r\n\tc-0.5522461,0-1,0.4476929-1,1c0,0.5522461,0.4477539,1,1,1h3c0,0.7799683,0.15625,1.520813,0.4272461,2.2037354\r\n\tc-0.0441895,0.0316162-0.0947266,0.0494995-0.1342773,0.0891724l-2.8286133,2.8283691\r\n\tc-0.3903809,0.390564-0.3903809,1.0237427,0,1.4142456c0.390625,0.3905029,1.0239258,0.3905029,1.4143066,0L5.4802246,15.93396\r\n\tC6.3725586,16.9555054,7.6027832,17.6751099,9,17.9100342V8h2v9.9100342\r\n\tc1.3972168-0.2349243,2.6274414-0.9545288,3.5197754-1.9760132l2.6015625,2.6015015\r\n\tc0.3903809,0.3905029,1.0236816,0.3905029,1.4143066,0c0.3903809-0.3905029,0.3903809-1.0236816,0-1.4142456l-2.8286133-2.8283691\r\n\tc-0.0395508-0.0396729-0.0900879-0.0575562-0.1342773-0.0891724C15.84375,13.520813,16,12.7799683,16,12h3\r\n\tc0.5522461,0,1-0.4477539,1-1C20,10.4476929,19.5522461,10,19,10z" + } + }] +}; +exports.bug = bug; \ No newline at end of file diff --git a/dist/entypo/bulb.js b/dist/entypo/bulb.js new file mode 100644 index 000000000..04c6e8259 --- /dev/null +++ b/dist/entypo/bulb.js @@ -0,0 +1,18 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bulb = void 0; +var bulb = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M7.186,19.172C7.975,19.682,8.887,20.027,10,20\r\n\tc1.111,0.027,2.025-0.318,2.814-0.828L12.797,17H7.203L7.186,19.172z M12.697,16c0-4.357,4.63-5.848,4.283-10.188\r\n\tC16.762,3.074,14.907,0.002,10,0.002c-4.907,0-6.762,3.072-6.981,5.811C2.672,10.152,7.303,11.643,7.303,16H12.697z M5,6\r\n\tc0.207-2.598,2.113-4,5-4c2.886,0,4.654,1.371,4.861,3.969c0.113,1.424-0.705,2.373-1.809,3.926C12.238,11.041,11.449,12.238,11,14\r\n\tH9c-0.449-1.762-1.238-2.959-2.053-4.106C5.844,8.342,4.886,7.424,5,6z" + } + }] +}; +exports.bulb = bulb; \ No newline at end of file diff --git a/dist/entypo/cake.js b/dist/entypo/cake.js new file mode 100644 index 000000000..ef6c0fce1 --- /dev/null +++ b/dist/entypo/cake.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cake = void 0; +var cake = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M9.584,6.036c1.952,0,2.591-1.381,1.839-2.843c-0.871-1.693,1.895-3.155,0.521-3.155c-1.301,0-3.736,1.418-4.19,3.183\r\n\tC7.415,4.545,8.05,6.036,9.584,6.036z M14.796,14.987l-0.444-0.383c-0.487-0.42-1.25-0.418-1.735,0l-0.442,0.382\r\n\tc-0.62,0.534-1.397,0.801-2.174,0.801c-0.777,0-1.554-0.267-2.173-0.8l-0.444-0.384c-0.487-0.418-1.249-0.419-1.734,0.001\r\n\tl-0.444,0.383c-1.193,1.028-2.967,1.056-4.204,0.1V19c0,0.552,0.448,1,1,1h16c0.552,0,1-0.448,1-1v-3.912\r\n\tC17.765,16.042,15.991,16.017,14.796,14.987z M10,7c-7.574,0-9,3.361-9,5v0.469l1.164,1.003c0.486,0.421,1.249,0.417,1.735,0\r\n\tl0.444-0.383c1.237-1.065,3.105-1.066,4.345,0l0.444,0.384c0.484,0.417,1.245,0.42,1.735-0.001l0.442-0.382\r\n\tc1.24-1.067,3.107-1.067,4.346-0.001l0.444,0.383c0.487,0.421,1.25,0.417,1.735,0L19,12.469V12C19,10.361,17.574,7,10,7z" + } + }] +}; +exports.cake = cake; \ No newline at end of file diff --git a/dist/entypo/calculator.js b/dist/entypo/calculator.js new file mode 100644 index 000000000..6fba54d6f --- /dev/null +++ b/dist/entypo/calculator.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.calculator = void 0; +var calculator = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M14.6,1H5.398C4.629,1,4,1.629,4,2.4V17.6c0,0.77,0.629,1.4,1.398,1.4H14.6c0.769,0,1.4-0.631,1.4-1.4V2.4\r\n\tC16,1.629,15.369,1,14.6,1z M7,12c0.689,0,1.25,0.447,1.25,1S7.689,14,7,14c-0.69,0-1.25-0.447-1.25-1S6.31,12,7,12z M5.75,10\r\n\tc0-0.553,0.56-1,1.25-1c0.689,0,1.25,0.447,1.25,1c0,0.553-0.561,1-1.25,1C6.31,11,5.75,10.553,5.75,10z M7,15\r\n\tc0.689,0,1.25,0.447,1.25,1S7.689,17,7,17c-0.69,0-1.25-0.447-1.25-1S6.31,15,7,15z M10,12c0.689,0,1.25,0.447,1.25,1\r\n\ts-0.561,1-1.25,1c-0.69,0-1.25-0.447-1.25-1S9.31,12,10,12z M8.75,10c0-0.553,0.56-1,1.25-1c0.689,0,1.25,0.447,1.25,1\r\n\tc0,0.553-0.561,1-1.25,1C9.31,11,8.75,10.553,8.75,10z M10,15c0.689,0,1.25,0.447,1.25,1s-0.561,1-1.25,1c-0.69,0-1.25-0.447-1.25-1\r\n\tS9.31,15,10,15z M13,12c0.689,0,1.25,0.447,1.25,1s-0.561,1-1.25,1c-0.69,0-1.25-0.447-1.25-1S12.31,12,13,12z M11.75,10\r\n\tc0-0.553,0.56-1,1.25-1c0.689,0,1.25,0.447,1.25,1c0,0.553-0.561,1-1.25,1C12.31,11,11.75,10.553,11.75,10z M13,15\r\n\tc0.689,0,1.25,0.447,1.25,1s-0.561,1-1.25,1c-0.69,0-1.25-0.447-1.25-1S12.31,15,13,15z M5,7V4h10v3H5z" + } + }] +}; +exports.calculator = calculator; \ No newline at end of file diff --git a/dist/entypo/calendar.js b/dist/entypo/calendar.js new file mode 100644 index 000000000..f3b8eeb7d --- /dev/null +++ b/dist/entypo/calendar.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.calendar = void 0; +var calendar = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M17,3h-1v2h-3V3H7v2H4V3H3C1.899,3,1,3.9,1,5v12c0,1.1,0.899,2,2,2h14c1.1,0,2-0.9,2-2V5C19,3.9,18.1,3,17,3z M17,17H3V9h14\r\n\tV17z M6.5,1h-2v3.5h2V1z M15.5,1h-2v3.5h2V1z" + } + }] +}; +exports.calendar = calendar; \ No newline at end of file diff --git a/dist/entypo/camera.js b/dist/entypo/camera.js new file mode 100644 index 000000000..d96c03e2c --- /dev/null +++ b/dist/entypo/camera.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.camera = void 0; +var camera = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,8c-1.657,0-3,1.344-3,3c0,1.656,1.343,3,3,3c1.656,0,3-1.344,3-3C13,9.344,11.656,8,10,8z M18,5h-2.4\r\n\tc-0.33,0-0.686-0.256-0.789-0.57l-0.621-1.861C14.085,2.256,13.731,2,13.4,2H6.6C6.27,2,5.914,2.256,5.811,2.568L5.189,4.43\r\n\tC5.085,4.744,4.73,5,4.4,5H2C0.9,5,0,5.9,0,7v9c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V7C20,5.9,19.1,5,18,5z M10,16\r\n\tc-2.762,0-5-2.238-5-5c0-2.762,2.238-5,5-5c2.761,0,5,2.238,5,5C15,13.762,12.761,16,10,16z M17.5,8.2c-0.387,0-0.7-0.314-0.7-0.701\r\n\tc0-0.385,0.313-0.7,0.7-0.7s0.7,0.314,0.7,0.7C18.2,7.886,17.887,8.2,17.5,8.2z" + } + }] +}; +exports.camera = camera; \ No newline at end of file diff --git a/dist/entypo/cap.js b/dist/entypo/cap.js new file mode 100644 index 000000000..9e117e267 --- /dev/null +++ b/dist/entypo/cap.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cap = void 0; +var cap = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M3.302,12.238c0.464,1.879,1.054,2.701,3.022,3.562C8.293,16.66,9.228,17.6,10,17.6c0.771,0,1.648-0.822,3.616-1.684\r\n\tc1.969-0.861,1.443-1.123,1.907-3.002L10,15.6L3.302,12.238z M19.511,7.336l-8.325-4.662c-0.652-0.365-1.72-0.365-2.372,0\r\n\tL0.488,7.336c-0.652,0.365-0.652,0.963,0,1.328l8.325,4.662c0.652,0.365,1.72,0.365,2.372,0l5.382-3.014l-5.836-1.367\r\n\tC10.506,9,10.259,9.031,10,9.031c-1.052,0-1.904-0.506-1.904-1.131c0-0.627,0.853-1.133,1.904-1.133c0.816,0,1.51,0.307,1.78,0.734\r\n\tl6.182,2.029l1.549-0.867C20.162,8.299,20.162,7.701,19.511,7.336z M16.967,16.17c-0.065,0.385,1.283,1.018,1.411-0.107\r\n\tc0.579-5.072-0.416-6.531-0.416-6.531l-1.395,0.781C16.567,10.312,17.75,11.438,16.967,16.17z" + } + }] +}; +exports.cap = cap; \ No newline at end of file diff --git a/dist/entypo/card.js b/dist/entypo/card.js new file mode 100644 index 000000000..1d8fbb1de --- /dev/null +++ b/dist/entypo/card.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.card = void 0; +var card = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M18,3H2C0.899,3,0,3.9,0,5v10c0,1.1,0.899,2,2,2h16c1.1,0,2-0.9,2-2V5C20,3.9,19.1,3,18,3z M18,15H2V9h16V15z M18,6H2V5h16\r\n\tV6z M4,11.1v0.6h0.6v-0.6H4z M7.6,12.299V12.9h1.2v-0.601h0.6v-0.6H10v-0.6H8.8v0.6H8.199v0.6H7.6z M10,12.9v-0.601H9.399V12.9H10z\r\n\t M7,12.9v-0.601H5.8V12.9H7z M7.6,11.699h0.6v-0.6H7v1.199h0.6V11.699z M5.199,12.299H5.8v-0.6h0.6v-0.6h-1.2v0.6H4.6v0.6H4V12.9\r\n\th1.199V12.299z" + } + }] +}; +exports.card = card; \ No newline at end of file diff --git a/dist/entypo/cart.js b/dist/entypo/cart.js new file mode 100644 index 000000000..875e5c2af --- /dev/null +++ b/dist/entypo/cart.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cart = void 0; +var cart = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M13,17c0,1.104,0.894,2,2,2c1.104,0,2-0.896,2-2c0-1.106-0.896-2-2-2C13.894,15,13,15.894,13,17z M3,17c0,1.104,0.895,2,2,2\r\n\tc1.103,0,2-0.896,2-2c0-1.106-0.897-2-2-2C3.895,15,3,15.894,3,17z M6.547,12.172L17.615,9.01C17.826,8.949,18,8.721,18,8.5V3H4V1.4\r\n\tC4,1.18,3.819,1,3.601,1H0.399C0.18,1,0,1.18,0,1.4L0,3h2l1.91,8.957L4,12.9v1.649c0,0.219,0.18,0.4,0.4,0.4H17.6\r\n\tc0.22,0,0.4-0.182,0.4-0.4V13H6.752C5.602,13,5.578,12.449,6.547,12.172z" + } + }] +}; +exports.cart = cart; \ No newline at end of file diff --git a/dist/entypo/cascade.js b/dist/entypo/cascade.js new file mode 100644 index 000000000..a029a809a --- /dev/null +++ b/dist/entypo/cascade.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cascade = void 0; +var cascade = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M14,14.6c-0.967,0-1.796,0.576-2.176,1.4H8.5C7.672,16,7,15.328,7,14.5v-3.85C7.456,10.868,7.961,11,8.5,11h3.324\r\n\tc0.38,0.824,1.208,1.4,2.176,1.4c1.326,0,2.4-1.075,2.4-2.4S15.326,7.6,14,7.6c-0.967,0-1.796,0.576-2.176,1.4H8.5\r\n\tC7.672,9,7,8.328,7,7.5V5.176C7.825,4.796,8.4,3.967,8.4,3c0-1.326-1.074-2.4-2.4-2.4S3.6,1.674,3.6,3\r\n\tc0,0.967,0.576,1.796,1.4,2.176V14.5C5,16.433,6.567,18,8.5,18h3.324c0.38,0.824,1.208,1.4,2.176,1.4c1.326,0,2.4-1.075,2.4-2.4\r\n\tS15.326,14.6,14,14.6z M14,8.615c0.764,0,1.384,0.619,1.384,1.385c0,0.764-0.62,1.385-1.384,1.385c-0.766,0-1.385-0.621-1.385-1.385\r\n\tC12.616,9.234,13.235,8.615,14,8.615z M6,1.615c0.764,0,1.384,0.619,1.384,1.385c0,0.764-0.62,1.385-1.384,1.385\r\n\tC5.235,4.385,4.616,3.764,4.616,3C4.616,2.234,5.235,1.615,6,1.615z M14,18.385c-0.766,0-1.385-0.621-1.385-1.385\r\n\tc0-0.766,0.619-1.385,1.385-1.385c0.764,0,1.384,0.619,1.384,1.385C15.384,17.764,14.764,18.385,14,18.385z" + } + }] +}; +exports.cascade = cascade; \ No newline at end of file diff --git a/dist/entypo/ccw.js b/dist/entypo/ccw.js new file mode 100644 index 000000000..bc65c77a8 --- /dev/null +++ b/dist/entypo/ccw.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ccw = void 0; +var ccw = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M0.685,10h2.372V9.795c0.108-4.434,3.724-7.996,8.169-7.996c4.515,0,8.174,3.672,8.174,8.201s-3.659,8.199-8.174,8.199\r\n\tc-1.898,0-3.645-0.65-5.033-1.738l1.406-1.504c1.016,0.748,2.27,1.193,3.627,1.193c3.386,0,6.131-2.754,6.131-6.15\r\n\tc0-3.396-2.745-6.15-6.131-6.15c-3.317,0-6.018,2.643-6.125,5.945V10h2.672l-3.494,3.894L0.685,10z" + } + }] +}; +exports.ccw = ccw; \ No newline at end of file diff --git a/dist/entypo/chart.js b/dist/entypo/chart.js new file mode 100644 index 000000000..3a33b28eb --- /dev/null +++ b/dist/entypo/chart.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.chart = void 0; +var chart = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M11,0.958v9.039C11,10.551,10.551,11,9.997,11H0.958c0.498,4.555,4.355,8.1,9.042,8.1c5.026,0,9.1-4.074,9.1-9.1\r\n\tC19.1,5.312,15.555,1.456,11,0.958z M9,0.958C4.774,1.42,1.42,4.774,0.958,9H9V0.958z" + } + }] +}; +exports.chart = chart; \ No newline at end of file diff --git a/dist/entypo/chat.js b/dist/entypo/chat.js new file mode 100644 index 000000000..80fd8d650 --- /dev/null +++ b/dist/entypo/chat.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.chat = void 0; +var chat = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M5.8,12.2V6H2C0.9,6,0,6.9,0,8v6c0,1.1,0.9,2,2,2h1v3l3-3h5c1.1,0,2-0.9,2-2v-1.82c-0.064,0.014-0.132,0.021-0.2,0.021h-7\r\n\tV12.2z M18,1H9C7.9,1,7,1.9,7,3v8h7l3,3v-3h1c1.1,0,2-0.899,2-2V3C20,1.9,19.1,1,18,1z" + } + }] +}; +exports.chat = chat; \ No newline at end of file diff --git a/dist/entypo/check.js b/dist/entypo/check.js new file mode 100644 index 000000000..f0be70c61 --- /dev/null +++ b/dist/entypo/check.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.check = void 0; +var check = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M8.294,16.998c-0.435,0-0.847-0.203-1.111-0.553L3.61,11.724c-0.465-0.613-0.344-1.486,0.27-1.951\r\n\tc0.615-0.467,1.488-0.344,1.953,0.27l2.351,3.104l5.911-9.492c0.407-0.652,1.267-0.852,1.921-0.445\r\n\tc0.653,0.406,0.854,1.266,0.446,1.92L9.478,16.34c-0.242,0.391-0.661,0.635-1.12,0.656C8.336,16.998,8.316,16.998,8.294,16.998z" + } + }] +}; +exports.check = check; \ No newline at end of file diff --git a/dist/entypo/circle.js b/dist/entypo/circle.js new file mode 100644 index 000000000..952aa2898 --- /dev/null +++ b/dist/entypo/circle.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.circle = void 0; +var circle = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,0.4C4.698,0.4,0.4,4.698,0.4,10C0.4,15.302,4.698,19.6,10,19.6c5.301,0,9.6-4.298,9.6-9.601\r\n\tC19.6,4.698,15.301,0.4,10,0.4z M10,17.599c-4.197,0-7.6-3.402-7.6-7.6S5.802,2.4,10,2.4c4.197,0,7.601,3.402,7.601,7.6\r\n\tS14.197,17.599,10,17.599z" + } + }] +}; +exports.circle = circle; \ No newline at end of file diff --git a/dist/entypo/clapperboard.js b/dist/entypo/clapperboard.js new file mode 100644 index 000000000..ac31c9f8b --- /dev/null +++ b/dist/entypo/clapperboard.js @@ -0,0 +1,18 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.clapperboard = void 0; +var clapperboard = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M20,3v14c0,0.552-0.447,1-1,1H1c-0.553,0-1-0.448-1-1V3c0-0.553,0.447-1,1-1h1l3,3\r\n\th2.5l-3-3h3l3,3H13l-3-3h3l3,3h2.5l-3-3H19C19.553,2,20,2.448,20,3z" + } + }] +}; +exports.clapperboard = clapperboard; \ No newline at end of file diff --git a/dist/entypo/clipboard.js b/dist/entypo/clipboard.js new file mode 100644 index 000000000..470aa39b6 --- /dev/null +++ b/dist/entypo/clipboard.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.clipboard = void 0; +var clipboard = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M15.6,2l-1.2,3H5.6l-1.2-3C3.629,2,3,2.629,3,3.4V18.6c0,0.77,0.629,1.4,1.399,1.4h11.2c0.77,0,1.4-0.631,1.4-1.4V3.4\r\n\tC17,2.629,16.369,2,15.6,2z M13.6,4l0.9-2h-2.181L11.6,0h-3.2L7.68,2H5.5l0.899,2H13.6z" + } + }] +}; +exports.clipboard = clipboard; \ No newline at end of file diff --git a/dist/entypo/clock.js b/dist/entypo/clock.js new file mode 100644 index 000000000..194a80059 --- /dev/null +++ b/dist/entypo/clock.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.clock = void 0; +var clock = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,0.4c-5.303,0-9.601,4.298-9.601,9.6c0,5.303,4.298,9.601,9.601,9.601c5.301,0,9.6-4.298,9.6-9.601\r\n\tC19.6,4.698,15.301,0.4,10,0.4z M9.999,17.6c-4.197,0-7.6-3.402-7.6-7.6c0-4.197,3.402-7.6,7.6-7.6c4.197,0,7.601,3.402,7.601,7.6\r\n\tC17.6,14.197,14.196,17.6,9.999,17.6z M11,9.33V4H9v6.245l-3.546,2.048l1,1.732l4.115-2.377C10.807,11.511,11,11.175,11,10.9v-0.168\r\n\tl4.24-4.166c-0.198-0.271-0.411-0.529-0.647-0.766L11,9.33z" + } + }] +}; +exports.clock = clock; \ No newline at end of file diff --git a/dist/entypo/cloud.js b/dist/entypo/cloud.js new file mode 100644 index 000000000..b6172ab23 --- /dev/null +++ b/dist/entypo/cloud.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cloud = void 0; +var cloud = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M20,11.32c0,2.584-2.144,4.68-4.787,4.68H3.617C1.619,16,0,14.416,0,12.463c0-1.951,1.619-3.535,3.617-3.535\r\n\tc0.146,0,0.288,0.012,0.429,0.027C4.009,8.709,3.989,8.457,3.989,8.199C3.989,5.328,6.37,3,9.309,3c2.407,0,4.439,1.562,5.096,3.707\r\n\tc0.263-0.043,0.532-0.066,0.809-0.066C17.856,6.641,20,8.734,20,11.32z" + } + }] +}; +exports.cloud = cloud; \ No newline at end of file diff --git a/dist/entypo/club.js b/dist/entypo/club.js new file mode 100644 index 000000000..a99ac6e2c --- /dev/null +++ b/dist/entypo/club.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.club = void 0; +var club = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M6,13.5l4,2.5l4-2.5V5H6V13.5z M4.5,10c0-1.105-0.896-2-2-2s-2,0.895-2,2c0,1.105,0.896,2,2,2S4.5,11.105,4.5,10z M17.5,8\r\n\tc-1.104,0-2,0.895-2,2c0,1.105,0.896,2,2,2s2-0.895,2-2C19.5,8.895,18.604,8,17.5,8z M4.485,6.199C5.74,4.384,7.802,3.3,10,3.3\r\n\tc2.158,0,4.198,1.056,5.456,2.823c0.449,0.629,1.323,0.776,1.952,0.329c0.63-0.448,0.777-1.323,0.329-1.953\r\n\tC15.955,1.995,13.062,0.5,10,0.5c-3.117,0-6.04,1.535-7.817,4.107c-0.439,0.636-0.28,1.508,0.355,1.948\r\n\tC3.175,6.993,4.046,6.834,4.485,6.199z M15.456,13.877C14.198,15.645,12.158,16.7,10,16.7c-2.198,0-4.26-1.084-5.515-2.899\r\n\tc-0.439-0.636-1.311-0.794-1.947-0.356c-0.636,0.44-0.795,1.312-0.355,1.948C3.96,17.965,6.883,19.5,10,19.5\r\n\tc3.062,0,5.955-1.495,7.737-3.999c0.448-0.63,0.301-1.504-0.329-1.953C16.779,13.101,15.905,13.248,15.456,13.877z" + } + }] +}; +exports.club = club; \ No newline at end of file diff --git a/dist/entypo/code.js b/dist/entypo/code.js new file mode 100644 index 000000000..ce5598c63 --- /dev/null +++ b/dist/entypo/code.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.code = void 0; +var code = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M5.719,14.75c-0.236,0-0.474-0.083-0.664-0.252L-0.005,10l5.341-4.748C5.748,4.887,6.38,4.922,6.747,5.335\r\n\tc0.367,0.413,0.33,1.045-0.083,1.412L3.005,10l3.378,3.002c0.413,0.367,0.45,0.999,0.083,1.412\r\n\tC6.269,14.637,5.994,14.75,5.719,14.75z M14.664,14.748L20.005,10l-5.06-4.498c-0.413-0.367-1.045-0.33-1.411,0.083\r\n\tc-0.367,0.413-0.33,1.045,0.083,1.412L16.995,10l-3.659,3.252c-0.413,0.367-0.45,0.999-0.083,1.412C13.45,14.887,13.725,15,14,15\r\n\tC14.236,15,14.474,14.917,14.664,14.748z M9.986,16.165l2-12c0.091-0.545-0.277-1.06-0.822-1.151\r\n\tc-0.547-0.092-1.061,0.277-1.15,0.822l-2,12c-0.091,0.545,0.277,1.06,0.822,1.151C8.892,16.996,8.946,17,9.001,17\r\n\tC9.481,17,9.905,16.653,9.986,16.165z" + } + }] +}; +exports.code = code; \ No newline at end of file diff --git a/dist/entypo/cog.js b/dist/entypo/cog.js new file mode 100644 index 000000000..94fccee3b --- /dev/null +++ b/dist/entypo/cog.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cog = void 0; +var cog = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M16.783,10c0-1.049,0.646-1.875,1.617-2.443c-0.176-0.584-0.407-1.145-0.692-1.672c-1.089,0.285-1.97-0.141-2.711-0.883\r\n\tc-0.741-0.74-0.968-1.621-0.683-2.711c-0.527-0.285-1.088-0.518-1.672-0.691C12.074,2.57,11.047,3.215,10,3.215\r\n\tc-1.048,0-2.074-0.645-2.643-1.615C6.772,1.773,6.213,2.006,5.686,2.291c0.285,1.09,0.059,1.971-0.684,2.711\r\n\tC4.262,5.744,3.381,6.17,2.291,5.885C2.006,6.412,1.774,6.973,1.6,7.557C2.57,8.125,3.215,8.951,3.215,10\r\n\tc0,1.047-0.645,2.074-1.615,2.643c0.175,0.584,0.406,1.144,0.691,1.672c1.09-0.285,1.971-0.059,2.711,0.682\r\n\tc0.741,0.742,0.969,1.623,0.684,2.711c0.527,0.285,1.087,0.518,1.672,0.693c0.568-0.973,1.595-1.617,2.643-1.617\r\n\tc1.047,0,2.074,0.645,2.643,1.617c0.584-0.176,1.144-0.408,1.672-0.693c-0.285-1.088-0.059-1.969,0.683-2.711\r\n\tc0.741-0.74,1.622-1.166,2.711-0.883c0.285-0.527,0.517-1.086,0.692-1.672C17.429,11.873,16.783,11.047,16.783,10z M10,13.652\r\n\tc-2.018,0-3.653-1.635-3.653-3.652c0-2.018,1.636-3.654,3.653-3.654c2.018,0,3.652,1.637,3.652,3.654\r\n\tC13.652,12.018,12.018,13.652,10,13.652z" + } + }] +}; +exports.cog = cog; \ No newline at end of file diff --git a/dist/entypo/colours.js b/dist/entypo/colours.js new file mode 100644 index 000000000..d7eba0a38 --- /dev/null +++ b/dist/entypo/colours.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.colours = void 0; +var colours = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M3.179,5.998C2.756,5.648,2.122,5.708,1.771,6.13L0.494,7.669c-0.35,0.423-0.291,1.058,0.131,1.407l7.888,6.542L4.706,7.264\r\n\tL3.179,5.998z M7.013,2.683l-1.82,0.829C4.694,3.74,4.471,4.337,4.698,4.836l4.25,9.325l0.213-9.179L8.339,3.178\r\n\tC8.109,2.678,7.513,2.455,7.013,2.683z M14.211,2.887c0.013-0.55-0.427-1.01-0.976-1.023l-2-0.046\r\n\tc-0.549-0.013-1.009,0.427-1.022,0.976L9.974,13.037l4.19-8.167L14.211,2.887z M19.191,3.837l-1.779-0.913\r\n\tc-0.489-0.25-1.096-0.055-1.347,0.434L9.674,15.814c-0.251,0.489-0.056,1.096,0.434,1.347l1.779,0.913\r\n\tc0.489,0.251,1.095,0.056,1.346-0.433l6.391-12.456C19.875,4.694,19.68,4.088,19.191,3.837z M12.799,16.293\r\n\tc-0.252,0.492-0.855,0.686-1.346,0.434c-0.492-0.252-0.685-0.854-0.433-1.346c0.252-0.492,0.854-0.685,1.346-0.433\r\n\tC12.858,15.199,13.051,15.802,12.799,16.293z" + } + }] +}; +exports.colours = colours; \ No newline at end of file diff --git a/dist/entypo/commons.js b/dist/entypo/commons.js new file mode 100644 index 000000000..b3b0fdec8 --- /dev/null +++ b/dist/entypo/commons.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.commons = void 0; +var commons = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M8.8,10.8l1.1,0.6c-0.2,0.4-0.6,0.8-1,1.1c-0.4,0.3-0.9,0.4-1.4,0.4c-0.8,0-1.5-0.2-2-0.8C5,11.6,4.8,10.9,4.8,10\r\n\tc0-0.9,0.3-1.6,0.8-2.1C6,7.4,6.7,7.1,7.5,7.1c1.1,0,2,0.4,2.4,1.3L8.7,9.1C8.5,8.8,8.4,8.6,8.2,8.5S7.8,8.4,7.7,8.4\r\n\tc-0.8,0-1.2,0.5-1.2,1.6c0,0.5,0.1,0.9,0.3,1.2c0.2,0.3,0.5,0.4,0.9,0.4C8.2,11.6,8.6,11.4,8.8,10.8z M13,11.6\r\n\tc-0.4,0-0.7-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.2c0-1.1,0.4-1.6,1.2-1.6c0.2,0,0.4,0.1,0.5,0.2c0.2,0.1,0.4,0.3,0.5,0.6l1.2-0.6\r\n\tc-0.5-0.9-1.3-1.3-2.4-1.3c-0.8,0-1.4,0.3-1.9,0.8c-0.5,0.5-0.8,1.2-0.8,2.1c0,0.9,0.2,1.6,0.7,2.1c0.5,0.5,1.2,0.8,2,0.8\r\n\tc0.5,0,1-0.1,1.4-0.4c0.4-0.3,0.8-0.6,1-1.1l-1.2-0.6C13.9,11.4,13.5,11.6,13,11.6z M19.6,10c0,2.7-0.9,4.9-2.7,6.7\r\n\tc-1.9,1.9-4.2,2.9-6.9,2.9c-2.6,0-4.9-0.9-6.8-2.8c-1.9-1.9-2.8-4.1-2.8-6.8c0-2.6,0.9-4.9,2.8-6.8C5.1,1.3,7.3,0.4,10,0.4\r\n\tc2.7,0,5,0.9,6.8,2.8C18.7,5,19.6,7.3,19.6,10z M17.9,10c0-2.2-0.8-4-2.3-5.6C14,2.9,12.2,2.1,10,2.1c-2.2,0-4,0.8-5.5,2.3\r\n\tC2.9,6,2.1,7.9,2.1,10c0,2.1,0.8,4,2.3,5.5c1.6,1.6,3.4,2.3,5.6,2.3c2.1,0,4-0.8,5.6-2.4C17.1,14,17.9,12.2,17.9,10z" + } + }] +}; +exports.commons = commons; \ No newline at end of file diff --git a/dist/entypo/commonsAttribution.js b/dist/entypo/commonsAttribution.js new file mode 100644 index 000000000..939836acc --- /dev/null +++ b/dist/entypo/commonsAttribution.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.commonsAttribution = void 0; +var commonsAttribution = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M12.6,7.6v3.9h-1.1v4.6h-3v-4.6H7.4V7.6C7.4,7.3,7.7,7,8,7H12C12.3,7,12.6,7.3,12.6,7.6z M10,6.5c0.7,0,1.3-0.6,1.3-1.3\r\n\tc0-0.7-0.6-1.3-1.3-1.3c-0.7,0-1.3,0.6-1.3,1.3C8.7,5.9,9.3,6.5,10,6.5z M19.6,10c0,2.7-0.9,4.9-2.7,6.7c-1.9,1.9-4.2,2.9-6.9,2.9\r\n\tc-2.6,0-4.9-0.9-6.8-2.8c-1.9-1.9-2.8-4.1-2.8-6.8c0-2.6,0.9-4.9,2.8-6.8C5.1,1.3,7.3,0.4,10,0.4c2.7,0,5,0.9,6.8,2.8\r\n\tC18.7,5,19.6,7.3,19.6,10z M17.9,10c0-2.2-0.8-4-2.3-5.6C14,2.9,12.2,2.1,10,2.1c-2.2,0-4,0.8-5.5,2.3C2.9,6,2.1,7.9,2.1,10\r\n\tc0,2.1,0.8,4,2.3,5.5s3.4,2.3,5.6,2.3c2.1,0,4-0.8,5.6-2.4C17.1,14,17.9,12.2,17.9,10z" + } + }] +}; +exports.commonsAttribution = commonsAttribution; \ No newline at end of file diff --git a/dist/entypo/commonsNoderivs.js b/dist/entypo/commonsNoderivs.js new file mode 100644 index 000000000..9a58bb9b3 --- /dev/null +++ b/dist/entypo/commonsNoderivs.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.commonsNoderivs = void 0; +var commonsNoderivs = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M16.8,3.2C15,1.3,12.7,0.4,10,0.4c-2.7,0-4.9,0.9-6.8,2.8C1.3,5.1,0.4,7.4,0.4,10c0,2.6,0.9,4.9,2.8,6.8\r\n\tc1.9,1.9,4.1,2.8,6.8,2.8c2.6,0,4.9-1,6.9-2.9c1.8-1.8,2.7-4.1,2.7-6.7C19.6,7.3,18.7,5,16.8,3.2z M15.6,15.5\r\n\tc-1.6,1.6-3.5,2.4-5.6,2.4c-2.1,0-4-0.8-5.6-2.3C2.9,14,2.1,12.1,2.1,10c0-2.1,0.8-4,2.4-5.6C6,2.9,7.8,2.1,10,2.1s4,0.8,5.6,2.3\r\n\tc1.5,1.5,2.3,3.4,2.3,5.6C17.9,12.2,17.1,14,15.6,15.5z M6.6,10.8h7v1.7h-7V10.8z M6.6,7.7h7v1.7h-7V7.7z" + } + }] +}; +exports.commonsNoderivs = commonsNoderivs; \ No newline at end of file diff --git a/dist/entypo/commonsNoncommercialEu.js b/dist/entypo/commonsNoncommercialEu.js new file mode 100644 index 000000000..cba9c375a --- /dev/null +++ b/dist/entypo/commonsNoncommercialEu.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.commonsNoncommercialEu = void 0; +var commonsNoncommercialEu = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M16.8,3.2C15,1.3,12.7,0.4,10,0.4c-2.7,0-4.9,0.9-6.8,2.8C1.3,5.1,0.4,7.4,0.4,10c0,2.6,0.9,4.9,2.8,6.8\r\n\tc1.9,1.9,4.1,2.8,6.8,2.8c2.6,0,4.9-1,6.9-2.9c1.8-1.8,2.7-4.1,2.7-6.7C19.6,7.3,18.7,5,16.8,3.2z M15.6,15.5\r\n\tc-1.6,1.6-3.5,2.4-5.6,2.4c-2.1,0-4-0.8-5.6-2.3C2.9,14,2.1,12.1,2.1,10c0-0.9,0.1-1.8,0.4-2.6l2.5,1.1H4.9v1.1h0.9\r\n\tc0,0.2,0,0.3,0,0.5v0.3H4.9v1.1h1c0.1,0.9,0.5,1.5,0.9,2.1c0.9,1.2,2.3,1.8,3.9,1.8c1,0,2-0.3,2.5-0.6l-0.4-1.8\r\n\tc-0.3,0.2-1.1,0.4-1.8,0.4c-0.8,0-1.6-0.2-2.1-0.8c-0.2-0.3-0.4-0.6-0.5-1.1H12l5,2.2C16.6,14.4,16.1,15,15.6,15.5z M9.3,10.5\r\n\tL9.3,10.5L9.3,10.5L9.3,10.5z M12.4,9.7h0.1V8.6H9.8L8.7,8.1C8.8,7.9,8.9,7.7,9,7.5c0.5-0.6,1.2-0.9,2-0.9c0.7,0,1.4,0.2,1.8,0.4\r\n\tl0.5-1.8c-0.6-0.3-1.4-0.5-2.4-0.5C9.3,4.7,8,5.3,7.1,6.4C6.9,6.6,6.7,6.9,6.6,7.1L3.4,5.8c0.3-0.5,0.7-0.9,1.1-1.3\r\n\tC6,2.9,7.8,2.1,10,2.1c2.2,0,4,0.8,5.6,2.3c1.5,1.5,2.3,3.4,2.3,5.6c0,0.7-0.1,1.4-0.2,2L12.4,9.7z" + } + }] +}; +exports.commonsNoncommercialEu = commonsNoncommercialEu; \ No newline at end of file diff --git a/dist/entypo/commonsNoncommercialUs.js b/dist/entypo/commonsNoncommercialUs.js new file mode 100644 index 000000000..75e59251c --- /dev/null +++ b/dist/entypo/commonsNoncommercialUs.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.commonsNoncommercialUs = void 0; +var commonsNoncommercialUs = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M16.8,3.2C15,1.3,12.7,0.4,10,0.4c-2.7,0-4.9,0.9-6.8,2.8C1.3,5.1,0.4,7.4,0.4,10s0.9,4.9,2.8,6.8c1.9,1.9,4.1,2.8,6.8,2.8\r\n\tc2.6,0,4.9-1,6.9-2.9c1.8-1.8,2.7-4.1,2.7-6.7S18.7,5,16.8,3.2z M15.6,15.5c-1.6,1.6-3.5,2.4-5.6,2.4c-2.1,0-4-0.8-5.6-2.3\r\n\tC2.9,14,2.1,12.1,2.1,10c0-0.9,0.1-1.8,0.4-2.6l4.9,2.2c0.5,0.2,1,0.4,1.5,0.7l1.1,0.5l0.9,0.4c0.2,0.1,0.3,0.3,0.3,0.6\r\n\tc0,0.7-0.6,1-1.2,1c-0.9,0-1.5-0.3-2.1-0.9l-1.3,1.3c0.8,0.7,1.8,1.1,2.9,1.1v1.5h1.1v-1.5c1.3-0.1,2.4-0.9,2.6-2.1l3.6,1.6\r\n\tC16.6,14.4,16.1,15,15.6,15.5z M12.7,9.9c-0.5-0.2-1-0.4-1.5-0.7l-0.8-0.4L9.1,8.3C9.1,8.2,9,8.1,9,8c0-0.6,0.7-0.7,1.2-0.7\r\n\tc0.6,0,1.2,0.2,1.6,0.6l1.3-1.3c-0.8-0.6-1.7-0.8-2.4-0.9V4.2H9.6v1.5C8.4,5.7,7.4,6.3,7.1,7.4L3.4,5.7c0.3-0.5,0.7-0.9,1.1-1.3\r\n\tC6,2.9,7.8,2.1,10,2.1c2.2,0,4,0.8,5.6,2.3c1.5,1.5,2.3,3.4,2.3,5.6c0,0.7-0.1,1.4-0.2,2.1L12.7,9.9z" + } + }] +}; +exports.commonsNoncommercialUs = commonsNoncommercialUs; \ No newline at end of file diff --git a/dist/entypo/commonsPublicDomain.js b/dist/entypo/commonsPublicDomain.js new file mode 100644 index 000000000..178590a8f --- /dev/null +++ b/dist/entypo/commonsPublicDomain.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.commonsPublicDomain = void 0; +var commonsPublicDomain = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M16.8,3.2C15,1.3,12.7,0.4,10,0.4c-2.7,0-4.9,0.9-6.8,2.8C1.3,5.1,0.4,7.4,0.4,10c0,2.6,0.9,4.9,2.8,6.8\r\n\tc1.9,1.9,4.1,2.8,6.8,2.8c2.6,0,4.9-1,6.9-2.9c1.8-1.8,2.7-4.1,2.7-6.7C19.6,7.3,18.7,5,16.8,3.2z M15.6,15.5\r\n\tc-1.6,1.6-3.5,2.4-5.6,2.4c-2.1,0-4-0.8-5.6-2.3C2.9,14,2.1,12.1,2.1,10c0-2.1,0.8-4,2.4-5.6C6,2.9,7.8,2.1,10,2.1\r\n\tc2.2,0,4,0.8,5.6,2.3c1.5,1.5,2.3,3.4,2.3,5.6C17.9,12.2,17.1,14,15.6,15.5z M8.1,7.3H5.5v5.3h1.3v-1.7h1c1.8,0,2.2-1.1,2.2-1.8\r\n\tC10.1,8,9.6,7.3,8.1,7.3z M7.9,9.9H6.8V8.3h1.1c0.6,0,0.9,0.3,0.9,0.8C8.8,9.5,8.5,9.9,7.9,9.9z M12.5,7.3h-2.1v5.3h2.1\r\n\tc1.6,0,2.7-0.8,2.7-2.7C15.2,8.1,14.1,7.3,12.5,7.3z M12.5,11.5h-0.8V8.4h0.8c1,0,1.4,0.7,1.4,1.5C13.9,10.8,13.5,11.5,12.5,11.5z" + } + }] +}; +exports.commonsPublicDomain = commonsPublicDomain; \ No newline at end of file diff --git a/dist/entypo/commonsRemix.js b/dist/entypo/commonsRemix.js new file mode 100644 index 000000000..5e46eba38 --- /dev/null +++ b/dist/entypo/commonsRemix.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.commonsRemix = void 0; +var commonsRemix = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M16.8,3.2C15,1.3,12.7,0.4,10,0.4c-2.7,0-4.9,0.9-6.8,2.8C1.3,5.1,0.4,7.4,0.4,10c0,2.6,0.9,4.9,2.8,6.8\r\n\tc1.9,1.9,4.1,2.8,6.8,2.8c2.6,0,4.9-1,6.9-2.9c1.8-1.8,2.7-4.1,2.7-6.7C19.6,7.3,18.7,5,16.8,3.2z M15.6,15.5\r\n\tc-1.6,1.6-3.5,2.4-5.6,2.4c-2.1,0-4-0.8-5.6-2.3C2.9,14,2.1,12.1,2.1,10c0-2.1,0.8-4,2.4-5.6C6,2.9,7.8,2.1,10,2.1\r\n\tc2.2,0,4,0.8,5.6,2.3c1.5,1.5,2.3,3.4,2.3,5.6C17.9,12.2,17.1,14,15.6,15.5z M16.3,10.2l-1.9-0.8V7L8.5,4.6L5.9,5.7v2.7l0,0l-2.3,1\r\n\tv2.5l2.5,1.1l2.5-1L8.7,12l5,2.1l0.1,0l0.1,0l2.3-1l0.2-0.1v-2.7L16.3,10.2z M13.6,13.3L13.6,13.3L13.6,13.3l-4.4-1.8V9.8l4.4,1.8\r\n\tv0.1l0,0V13.3z M13.8,11.1l-1.4-0.6L14,9.9l1.4,0.6L13.8,11.1z M15.9,12.6l-1.7,0.7v-1.7l1.7-0.7V12.6z" + } + }] +}; +exports.commonsRemix = commonsRemix; \ No newline at end of file diff --git a/dist/entypo/commonsShare.js b/dist/entypo/commonsShare.js new file mode 100644 index 000000000..d10cbefcd --- /dev/null +++ b/dist/entypo/commonsShare.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.commonsShare = void 0; +var commonsShare = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M16.8,3.2C15,1.3,12.7,0.4,10,0.4c-2.7,0-4.9,0.9-6.8,2.8C1.3,5.1,0.4,7.4,0.4,10c0,2.6,0.9,4.9,2.8,6.8\r\n\tc1.9,1.9,4.1,2.8,6.8,2.8c2.6,0,4.9-1,6.9-2.9c1.8-1.8,2.7-4.1,2.7-6.7C19.6,7.3,18.7,5,16.8,3.2z M15.6,15.5\r\n\tc-1.6,1.6-3.5,2.4-5.6,2.4c-2.1,0-4-0.8-5.6-2.3C2.9,14,2.1,12.1,2.1,10c0-2.1,0.8-4,2.4-5.6C6,2.9,7.8,2.1,10,2.1\r\n\tc2.2,0,4,0.8,5.6,2.3c1.5,1.5,2.3,3.4,2.3,5.6C17.9,12.2,17.1,14,15.6,15.5z M13.9,7.2h-2.1V5.2c0-0.3-0.2-0.5-0.5-0.5H6.1\r\n\tc0,0,0,0,0,0c-0.3,0-0.5,0.3-0.5,0.5v7.1c0,0.3,0.2,0.5,0.5,0.5h2.1v2.1c0,0.3,0.2,0.5,0.5,0.5h5.2c0.3,0,0.5-0.2,0.5-0.5V7.8\r\n\tC14.5,7.5,14.2,7.2,13.9,7.2z M8.6,7.2c-0.3,0-0.5,0.3-0.5,0.5v3.9H6.6v-6h4.2v1.6H8.6C8.7,7.2,8.7,7.2,8.6,7.2z M13.4,14.3H9.2v-6\r\n\th4.2V14.3z" + } + }] +}; +exports.commonsShare = commonsShare; \ No newline at end of file diff --git a/dist/entypo/commonsSharealike.js b/dist/entypo/commonsSharealike.js new file mode 100644 index 000000000..50962a478 --- /dev/null +++ b/dist/entypo/commonsSharealike.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.commonsSharealike = void 0; +var commonsSharealike = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M16.8,3.2C15,1.3,12.7,0.4,10,0.4c-2.7,0-4.9,0.9-6.8,2.8C1.3,5.1,0.4,7.4,0.4,10s0.9,4.9,2.8,6.8c1.9,1.9,4.1,2.8,6.8,2.8\r\n\tc2.6,0,4.9-1,6.9-2.9c1.8-1.8,2.7-4.1,2.7-6.7S18.7,5,16.8,3.2z M15.6,15.5c-1.6,1.6-3.5,2.4-5.6,2.4c-2.1,0-4-0.8-5.6-2.3\r\n\tC2.9,14,2.1,12.1,2.1,10s0.8-4,2.4-5.6C6,2.9,7.8,2.1,10,2.1s4,0.8,5.6,2.3c1.5,1.5,2.3,3.4,2.3,5.6C17.9,12.2,17.1,14,15.6,15.5z\r\n\t M14.9,10.1c0,2.9-2,5.1-5,5.1c-2.1,0-3.9-1.3-4.2-3.8h2.4c0.1,1.3,0.9,1.7,2.1,1.7c1.4,0,2.3-1.3,2.3-3.2c0-2-0.8-3.1-2.2-3.1\r\n\tc-1.1,0-2,0.4-2.2,1.7l0.7,0l-1.9,1.9L5,8.6l0.8,0c0.4-2.4,2.1-3.7,4.2-3.7C13,4.9,14.9,7.2,14.9,10.1z" + } + }] +}; +exports.commonsSharealike = commonsSharealike; \ No newline at end of file diff --git a/dist/entypo/compass.js b/dist/entypo/compass.js new file mode 100644 index 000000000..3d99e6b88 --- /dev/null +++ b/dist/entypo/compass.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.compass = void 0; +var compass = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M5.454,14.548c0,0,4.568-0.627,6.518-2.576s2.576-6.518,2.576-6.518S9.979,6.081,8.03,8.03S5.454,14.548,5.454,14.548z\r\n\t M9.017,9.015c0.818-0.818,2.385-1.4,3.729-1.762c-0.361,1.342-0.945,2.92-1.76,3.732c-0.543,0.545-1.426,0.545-1.969,0\r\n\tC8.472,10.442,8.472,9.56,9.017,9.015z M10.001,0.4C4.698,0.4,0.4,4.698,0.4,10c0,5.303,4.298,9.601,9.601,9.601\r\n\tc5.301,0,9.6-4.298,9.6-9.601C19.601,4.698,15.302,0.4,10.001,0.4z M10,17.6c-4.197,0-7.6-3.402-7.6-7.6c0-4.197,3.402-7.6,7.6-7.6\r\n\tc4.197,0,7.601,3.402,7.601,7.6C17.601,14.197,14.197,17.6,10,17.6z" + } + }] +}; +exports.compass = compass; \ No newline at end of file diff --git a/dist/entypo/computer.js b/dist/entypo/computer.js new file mode 100644 index 000000000..48771f41b --- /dev/null +++ b/dist/entypo/computer.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.computer = void 0; +var computer = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M16,0H4C2.9,0,2,0.899,2,2v15c0,0.552,0.447,1,1,1v2h14v-2c0.553,0,1-0.448,1-1V2C18,0.899,17.101,0,16,0z M14,15h-4v-1h4\r\n\tV15z M15,11H5V3h10V11z" + } + }] +}; +exports.computer = computer; \ No newline at end of file diff --git a/dist/entypo/cone.js b/dist/entypo/cone.js new file mode 100644 index 000000000..3d56fbd2c --- /dev/null +++ b/dist/entypo/cone.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cone = void 0; +var cone = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,12.078c2.39,0,4.392-0.812,4.513-1.873c-0.356-0.996-0.744-2.084-1.125-3.152C13.124,7.814,11.663,8.354,10,8.354\r\n\tS6.876,7.814,6.612,7.053c-0.381,1.068-0.769,2.156-1.124,3.152C5.609,11.266,7.61,12.078,10,12.078z M10,5.373\r\n\tc1.124,0,2.167-0.348,2.473-0.889c-0.421-1.182-0.782-2.197-1.011-2.836C11.31,1.221,10.621,1,10,1S8.69,1.221,8.538,1.648\r\n\tc-0.228,0.639-0.59,1.654-1.011,2.836C7.833,5.025,8.877,5.373,10,5.373z M18.78,13.066l-3.755-1.514l0.433,1.207\r\n\tc-0.022,1.279-2.504,2.299-5.458,2.299c-2.953,0-5.437-1.019-5.458-2.299l0.433-1.207L1.22,13.066\r\n\tc-1.053,0.424-1.098,1.209-0.098,1.744l7.062,3.787c0.998,0.535,2.633,0.535,3.632,0l7.063-3.787\r\n\tC19.878,14.275,19.833,13.49,18.78,13.066z" + } + }] +}; +exports.cone = cone; \ No newline at end of file diff --git a/dist/entypo/controller.js b/dist/entypo/controller.js new file mode 100644 index 000000000..c963f3b63 --- /dev/null +++ b/dist/entypo/controller.js @@ -0,0 +1,18 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.controller = void 0; +var controller = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M19.444,9.361c-0.882-4.926-2.854-6.379-3.903-6.379\r\n\tc-1.637,0-2.057,1.217-5.541,1.258C6.516,4.199,6.096,2.982,4.459,2.982c-1.049,0-3.022,1.453-3.904,6.379\r\n\tc-0.503,2.812-1.049,7.01,0.252,7.514c1.619,0.627,2.168-0.941,3.946-2.266C6.558,13.266,7.424,12.95,10,12.95\r\n\tc2.576,0,3.442,0.316,5.247,1.659c1.778,1.324,2.327,2.893,3.946,2.266C20.494,16.371,19.948,12.174,19.444,9.361z M6,10\r\n\tc-1.105,0-2-0.896-2-2c0-1.105,0.895-2,2-2s2,0.895,2,2C8,9.104,7.104,10,6,10z M13,10c-0.553,0-1-0.447-1-1s0.447-1,1-1\r\n\tc0.553,0,1,0.447,1,1S13.553,10,13,10z M15,8c-0.553,0-1-0.447-1-1s0.447-1,1-1c0.553,0,1,0.447,1,1S15.553,8,15,8z" + } + }] +}; +exports.controller = controller; \ No newline at end of file diff --git a/dist/entypo/copy.js b/dist/entypo/copy.js new file mode 100644 index 000000000..1a5b461d1 --- /dev/null +++ b/dist/entypo/copy.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.copy = void 0; +var copy = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M11,0H3C2.447,0,2,0.447,2,1v12c0,0.552,0.447,1,1,1h5v2h2v-2H8.001v-2H10v-2H8v2H4V2h6v4h2V1C12,0.448,11.553,0,11,0z M8,7\r\n\tv1h2V6H9C8.447,6,8,6.447,8,7z M12,20h2v-2h-2V20z M12,8h2V6h-2V8z M8,19c0,0.552,0.447,1,1,1h1v-2H8V19z M17,6h-1v2h2V7\r\n\tC18,6.448,17.553,6,17,6z M16,20h1c0.553,0,1-0.448,1-1v-1h-2V20z M16,12h2v-2h-2V12z M16,16h2v-2h-2V16z" + } + }] +}; +exports.copy = copy; \ No newline at end of file diff --git a/dist/entypo/credit.js b/dist/entypo/credit.js new file mode 100644 index 000000000..0c1f7ea31 --- /dev/null +++ b/dist/entypo/credit.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.credit = void 0; +var credit = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M11,16.755V19H9v-2.143c-1.712-0.1-3.066-0.589-4.241-1.797l1.718-1.74c0.859,0.87,2.023,1.16,3.282,1.16\r\n\tc1.565,0,2.405-0.599,2.405-1.702c0-0.483-0.133-0.889-0.42-1.16c-0.267-0.251-0.572-0.387-1.202-0.483L8.9,10.903\r\n\tc-1.164-0.174-2.022-0.541-2.634-1.141C5.618,9.105,5.293,8.216,5.293,7.055c0-2.155,1.382-3.743,3.707-4.1V1h2v1.932\r\n\tc1.382,0.145,2.465,0.62,3.415,1.551l-1.679,1.682c-0.859-0.832-1.889-0.947-2.787-0.947c-1.412,0-2.099,0.792-2.099,1.74\r\n\tc0,0.348,0.115,0.716,0.401,0.986c0.267,0.252,0.706,0.464,1.26,0.541l1.602,0.232c1.241,0.174,2.023,0.522,2.596,1.063\r\n\tc0.726,0.696,1.05,1.702,1.05,2.92C14.759,14.95,13.192,16.362,11,16.755z" + } + }] +}; +exports.credit = credit; \ No newline at end of file diff --git a/dist/entypo/crop.js b/dist/entypo/crop.js new file mode 100644 index 000000000..5100f3288 --- /dev/null +++ b/dist/entypo/crop.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.crop = void 0; +var crop = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M6,14V1H4v3H1v2h3v8c0,1.0996094,0.8989258,2,2,2h8v3h2v-3h3v-2H6z M14,13h2V6c0-1.0996094-0.8989258-2-2-2H7v2h7V13z" + } + }] +}; +exports.crop = crop; \ No newline at end of file diff --git a/dist/entypo/cross.js b/dist/entypo/cross.js new file mode 100644 index 000000000..b813d17b4 --- /dev/null +++ b/dist/entypo/cross.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cross = void 0; +var cross = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M14.348,14.849c-0.469,0.469-1.229,0.469-1.697,0L10,11.819l-2.651,3.029c-0.469,0.469-1.229,0.469-1.697,0\r\n\tc-0.469-0.469-0.469-1.229,0-1.697l2.758-3.15L5.651,6.849c-0.469-0.469-0.469-1.228,0-1.697c0.469-0.469,1.228-0.469,1.697,0\r\n\tL10,8.183l2.651-3.031c0.469-0.469,1.228-0.469,1.697,0c0.469,0.469,0.469,1.229,0,1.697l-2.758,3.152l2.758,3.15\r\n\tC14.817,13.62,14.817,14.38,14.348,14.849z" + } + }] +}; +exports.cross = cross; \ No newline at end of file diff --git a/dist/entypo/cup.js b/dist/entypo/cup.js new file mode 100644 index 000000000..fdc24ab05 --- /dev/null +++ b/dist/entypo/cup.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cup = void 0; +var cup = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,1C5.721,1,3.06,2.41,3.205,3.555l1.442,13.467C4.705,17.482,6.868,18.998,10,19c3.131-0.002,5.295-1.518,5.351-1.979\r\n\tl1.442-13.467C16.938,2.41,14.279,1,10,1z M10,5.291C6.868,5.289,4.647,4.174,4.647,3.756C4.646,3.342,6.869,2.225,10,2.227\r\n\tc3.131-0.002,5.354,1.115,5.351,1.529C15.351,4.174,13.131,5.289,10,5.291z" + } + }] +}; +exports.cup = cup; \ No newline at end of file diff --git a/dist/entypo/cw.js b/dist/entypo/cw.js new file mode 100644 index 000000000..1879bcbdd --- /dev/null +++ b/dist/entypo/cw.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cw = void 0; +var cw = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M19.315,10h-2.372V9.795c-0.108-4.434-3.724-7.996-8.169-7.996C4.259,1.799,0.6,5.471,0.6,10s3.659,8.199,8.174,8.199\r\n\tc1.898,0,3.645-0.65,5.033-1.738l-1.406-1.504c-1.016,0.748-2.27,1.193-3.627,1.193c-3.386,0-6.131-2.754-6.131-6.15\r\n\ts2.745-6.15,6.131-6.15c3.317,0,6.018,2.643,6.125,5.945V10h-2.672l3.494,3.894L19.315,10z" + } + }] +}; +exports.cw = cw; \ No newline at end of file diff --git a/dist/entypo/cycle.js b/dist/entypo/cycle.js new file mode 100644 index 000000000..ff4472899 --- /dev/null +++ b/dist/entypo/cycle.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cycle = void 0; +var cycle = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M5.516,14.224c-2.262-2.432-2.222-6.244,0.128-8.611c0.962-0.969,2.164-1.547,3.414-1.736L8.989,1.8\r\n\tC7.234,2.013,5.537,2.796,4.192,4.151c-3.149,3.17-3.187,8.289-0.123,11.531l-1.741,1.752l5.51,0.301l-0.015-5.834L5.516,14.224z\r\n\t M12.163,2.265l0.015,5.834l2.307-2.322c2.262,2.434,2.222,6.246-0.128,8.611c-0.961,0.969-2.164,1.547-3.414,1.736l0.069,2.076\r\n\tc1.755-0.213,3.452-0.996,4.798-2.35c3.148-3.172,3.186-8.291,0.122-11.531l1.741-1.754L12.163,2.265z" + } + }] +}; +exports.cycle = cycle; \ No newline at end of file diff --git a/dist/entypo/database.js b/dist/entypo/database.js new file mode 100644 index 000000000..3c23be208 --- /dev/null +++ b/dist/entypo/database.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.database = void 0; +var database = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M16.726,12.641c-0.843,1.363-3.535,2.361-6.726,2.361c-3.191,0-5.883-0.998-6.727-2.361C3.095,12.351,3,12.506,3,12.648\r\n\tc0,0.144,0,2.002,0,2.002C3,16.59,6.134,18.6,10,18.6s7-2.01,7-3.949c0,0,0-1.858,0-2.002C17,12.506,16.904,12.351,16.726,12.641z\r\n\t M16.737,7.525c-0.83,1.205-3.532,2.09-6.737,2.09c-3.205,0-5.908-0.885-6.738-2.09C3.091,7.277,3,7.412,3,7.523\r\n\tc0,0.113,0,2.357,0,2.357c0,1.762,3.134,3.189,7,3.189s7-1.428,7-3.189c0,0,0-2.244,0-2.357C17,7.412,16.908,7.277,16.737,7.525z\r\n\t M10,1C6.134,1,3,2.18,3,3.633v1.26c0,1.541,3.134,2.791,7,2.791s7-1.25,7-2.791v-1.26C17,2.18,13.866,1,10,1z" + } + }] +}; +exports.database = database; \ No newline at end of file diff --git a/dist/entypo/direction.js b/dist/entypo/direction.js new file mode 100644 index 000000000..4a73e783e --- /dev/null +++ b/dist/entypo/direction.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.direction = void 0; +var direction = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.06,1.941c-0.586-0.586-1.144-0.033-3.041,0.879C9.944,5.259,1.1,10.216,1.1,10.216L8.699,11.3l1.085,7.599\r\n\tc0,0,4.958-8.843,7.396-13.916C18.092,3.085,18.645,2.527,18.06,1.941z M16.236,3.896l-5.519,10.247l-0.561-4.655L16.236,3.896z" + } + }] +}; +exports.direction = direction; \ No newline at end of file diff --git a/dist/entypo/document.js b/dist/entypo/document.js new file mode 100644 index 000000000..562375dca --- /dev/null +++ b/dist/entypo/document.js @@ -0,0 +1,18 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.document = void 0; +var document = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M16,1H4C3.447,1,3,1.447,3,2v16c0,0.552,0.447,1,1,1h12c0.553,0,1-0.448,1-1V2\r\n\tC17,1.448,16.553,1,16,1z M15,17H5V3h10V17z" + } + }] +}; +exports.document = document; \ No newline at end of file diff --git a/dist/entypo/documentInverted.js b/dist/entypo/documentInverted.js new file mode 100644 index 000000000..2f2cc5c41 --- /dev/null +++ b/dist/entypo/documentInverted.js @@ -0,0 +1,18 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.documentInverted = void 0; +var documentInverted = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M16,1H4C3.447,1,3,1.447,3,2v16c0,0.552,0.447,1,1,1h12c0.553,0,1-0.448,1-1V2\r\n\tC17,1.448,16.553,1,16,1z M13,15H7v-2h6V15z M13,11H7V9h6V11z M13,7H7V5h6V7z" + } + }] +}; +exports.documentInverted = documentInverted; \ No newline at end of file diff --git a/dist/entypo/documents.js b/dist/entypo/documents.js new file mode 100644 index 000000000..9b8eca93b --- /dev/null +++ b/dist/entypo/documents.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.documents = void 0; +var documents = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M19.398,7.415l-7.444-1.996l-1.303-4.861c-0.109-0.406-0.545-0.642-0.973-0.529L0.602,2.461\r\n\tC0.174,2.575-0.084,2.999,0.025,3.405l3.23,12.051c0.109,0.406,0.544,0.643,0.971,0.527l3.613-0.967l-0.492,1.838\r\n\tc-0.109,0.406,0.149,0.83,0.577,0.943l8.11,2.174c0.428,0.115,0.862-0.121,0.972-0.529l2.97-11.084\r\n\tC20.084,7.952,19.826,7.528,19.398,7.415z M1.633,3.631l7.83-2.096l2.898,10.818l-7.83,2.096L1.633,3.631z M15.678,18.463\r\n\tL8.864,16.6L9.4,14.598l3.901-1.047c0.428-0.113,0.688-0.537,0.578-0.943l-1.508-5.627l5.947,1.631L15.678,18.463z" + } + }] +}; +exports.documents = documents; \ No newline at end of file diff --git a/dist/entypo/down.js b/dist/entypo/down.js new file mode 100644 index 000000000..2f8214404 --- /dev/null +++ b/dist/entypo/down.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.down = void 0; +var down = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,17.5L3.5,11H7V3h6v8h3.5L10,17.5z" + } + }] +}; +exports.down = down; \ No newline at end of file diff --git a/dist/entypo/download.js b/dist/entypo/download.js new file mode 100644 index 000000000..f8e084be3 --- /dev/null +++ b/dist/entypo/download.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.download = void 0; +var download = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M15,7h-3V1H8v6H5l5,5L15,7z M19.338,13.532c-0.21-0.224-1.611-1.723-2.011-2.114C17.062,11.159,16.683,11,16.285,11h-1.757\r\n\tl3.064,2.994h-3.544c-0.102,0-0.194,0.052-0.24,0.133L12.992,16H7.008l-0.816-1.873c-0.046-0.081-0.139-0.133-0.24-0.133H2.408\r\n\tL5.471,11H3.715c-0.397,0-0.776,0.159-1.042,0.418c-0.4,0.392-1.801,1.891-2.011,2.114c-0.489,0.521-0.758,0.936-0.63,1.449\r\n\tl0.561,3.074c0.128,0.514,0.691,0.936,1.252,0.936h16.312c0.561,0,1.124-0.422,1.252-0.936l0.561-3.074\r\n\tC20.096,14.468,19.828,14.053,19.338,13.532z" + } + }] +}; +exports.download = download; \ No newline at end of file diff --git a/dist/entypo/dribbble.js b/dist/entypo/dribbble.js new file mode 100644 index 000000000..52af279a3 --- /dev/null +++ b/dist/entypo/dribbble.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.dribbble = void 0; +var dribbble = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M9.565,7.421C8.207,5.007,6.754,3.038,6.648,2.893C4.457,3.929,2.822,5.948,2.311,8.38C2.517,8.384,5.793,8.423,9.565,7.421\r\n\tz M10.543,10.061c0.102-0.033,0.206-0.064,0.309-0.094c-0.197-0.447-0.412-0.895-0.637-1.336C6.169,9.843,2.287,9.755,2.15,9.751\r\n\tc-0.003,0.084-0.007,0.166-0.007,0.25c0,2.019,0.763,3.861,2.016,5.252l-0.005-0.006C4.154,15.247,6.304,11.433,10.543,10.061z\r\n\t M5.171,16.194V16.19c-0.058-0.045-0.12-0.086-0.178-0.135C5.099,16.14,5.171,16.194,5.171,16.194z M8.118,2.372\r\n\tC8.111,2.374,8.103,2.376,8.103,2.376c0.006-0.002,0.014-0.002,0.014-0.002L8.118,2.372z M15.189,4.104\r\n\tC13.805,2.886,11.99,2.143,10,2.143c-0.639,0-1.258,0.078-1.852,0.221c0.12,0.16,1.595,2.119,2.938,4.584\r\n\tC14.048,5.839,15.167,4.136,15.189,4.104z M10,19.2c-5.08,0-9.199-4.119-9.199-9.199C0.8,4.919,4.919,0.8,10,0.8\r\n\tc5.082,0,9.2,4.119,9.2,9.201C19.2,15.081,15.082,19.2,10,19.2z M11.336,11.286c-4.611,1.607-6.134,4.838-6.165,4.904\r\n\tc1.334,1.041,3.006,1.666,4.828,1.666c1.088,0,2.125-0.221,3.067-0.621c-0.116-0.689-0.573-3.096-1.679-5.967\r\n\tC11.371,11.274,11.354,11.28,11.336,11.286z M11.69,8.12c0.184,0.373,0.358,0.754,0.523,1.139c0.059,0.135,0.114,0.272,0.17,0.406\r\n\tc2.713-0.342,5.385,0.238,5.473,0.256c-0.019-1.863-0.686-3.572-1.787-4.912C16.051,5.032,14.79,6.852,11.69,8.12z M12.861,10.905\r\n\tc1.031,2.836,1.449,5.142,1.529,5.611c1.764-1.191,3.018-3.08,3.367-5.27C17.601,11.196,15.401,10.499,12.861,10.905z" + } + }] +}; +exports.dribbble = dribbble; \ No newline at end of file diff --git a/dist/entypo/drink.js b/dist/entypo/drink.js new file mode 100644 index 000000000..c349a38b0 --- /dev/null +++ b/dist/entypo/drink.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.drink = void 0; +var drink = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M17.538,2.639C17.932,2.094,18,1,18,1H2c0,0,0.068,1.094,0.462,1.639L9,11v6H7c-2,0-2,2-2,2h10c0,0,0-2-2-2h-2v-6\r\n\tL17.538,2.639z M9.4,6c0-0.885,0.716-1.6,1.6-1.6s1.6,0.715,1.6,1.6c0,0.883-0.716,1.6-1.6,1.6S9.4,6.883,9.4,6z" + } + }] +}; +exports.drink = drink; \ No newline at end of file diff --git a/dist/entypo/drive.js b/dist/entypo/drive.js new file mode 100644 index 000000000..ea80f4075 --- /dev/null +++ b/dist/entypo/drive.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.drive = void 0; +var drive = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M19.059,10.898l-3.171-7.927C15.654,2.384,15.086,2,14.454,2H5.546C4.914,2,4.346,2.384,4.112,2.971l-3.171,7.927\r\n\tc-0.288,0.721-0.373,1.507-0.246,2.272l0.59,3.539C1.409,17.454,2.053,18,2.808,18h14.383c0.755,0,1.399-0.546,1.523-1.291\r\n\tl0.59-3.539C19.433,12.405,19.348,11.619,19.059,10.898z M16.959,15.245C16.887,15.681,16.51,16,16.068,16H3.932\r\n\tc-0.442,0-0.819-0.319-0.891-0.755l-0.365-2.193C2.583,12.501,3.008,12,3.567,12h12.867c0.558,0,0.983,0.501,0.891,1.052\r\n\tL16.959,15.245z" + } + }] +}; +exports.drive = drive; \ No newline at end of file diff --git a/dist/entypo/drop.js b/dist/entypo/drop.js new file mode 100644 index 000000000..ba64dad48 --- /dev/null +++ b/dist/entypo/drop.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.drop = void 0; +var drop = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10.203,0.561c-0.027-0.215-0.38-0.215-0.406,0C8.914,7.668,4.399,9.133,4.399,14.073c0,3.053,2.564,5.527,5.601,5.527\r\n\tc3.036,0,5.6-2.475,5.6-5.527C15.6,9.133,11.086,7.668,10.203,0.561z M9.35,8.418C9.291,8.637,9.227,8.862,9.161,9.096\r\n\tc-0.401,1.424-0.856,3.039-0.856,4.906c0,1.012-0.598,1.371-1.156,1.371c-0.639,0-1.156-0.523-1.156-1.166\r\n\tc0-2.207,1.062-3.649,2-4.92c0.295-0.398,0.572-0.775,0.797-1.15C8.893,7.965,9.17,7.973,9.296,8.143\r\n\tC9.355,8.223,9.375,8.325,9.35,8.418z" + } + }] +}; +exports.drop = drop; \ No newline at end of file diff --git a/dist/entypo/dropbox.js b/dist/entypo/dropbox.js new file mode 100644 index 000000000..aa28fad92 --- /dev/null +++ b/dist/entypo/dropbox.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.dropbox = void 0; +var dropbox = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M6.109,0.902L0.4,4.457l3.911,3.279L10,4.043L6.109,0.902z M13.452,15.992c-0.102,0-0.203-0.033-0.285-0.102L10,13.262\r\n\tl-3.167,2.629c-0.082,0.068-0.184,0.102-0.285,0.102c-0.085,0-0.17-0.023-0.244-0.072l-2.346-1.533v0.904L10,19.098l6.042-3.807\r\n\tv-0.904l-2.346,1.533C13.622,15.969,13.537,15.992,13.452,15.992z M19.6,4.457l-5.71-3.555L10,4.043l5.688,3.693L19.6,4.457z\r\n\t M10,11.291l3.528,2.928l5.641-3.688l-3.481-2.795L10,11.291z M6.472,14.219L10,11.291L4.311,7.736l-3.48,2.795L6.472,14.219z" + } + }] +}; +exports.dropbox = dropbox; \ No newline at end of file diff --git a/dist/entypo/edit.js b/dist/entypo/edit.js new file mode 100644 index 000000000..03e6a0313 --- /dev/null +++ b/dist/entypo/edit.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.edit = void 0; +var edit = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M17.561,2.439c-1.442-1.443-2.525-1.227-2.525-1.227L8.984,7.264L2.21,14.037L1.2,18.799l4.763-1.01l6.774-6.771\r\n\tl6.052-6.052C18.788,4.966,19.005,3.883,17.561,2.439z M5.68,17.217l-1.624,0.35c-0.156-0.293-0.345-0.586-0.69-0.932\r\n\tc-0.346-0.346-0.639-0.533-0.932-0.691l0.35-1.623l0.47-0.469c0,0,0.883,0.018,1.881,1.016c0.997,0.996,1.016,1.881,1.016,1.881\r\n\tL5.68,17.217z" + } + }] +}; +exports.edit = edit; \ No newline at end of file diff --git a/dist/entypo/email.js b/dist/entypo/email.js new file mode 100644 index 000000000..73164c310 --- /dev/null +++ b/dist/entypo/email.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.email = void 0; +var email = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M14.608,12.172c0,0.84,0.239,1.175,0.864,1.175c1.393,0,2.28-1.775,2.28-4.727c0-4.512-3.288-6.672-7.393-6.672\r\n\tc-4.223,0-8.064,2.832-8.064,8.184c0,5.112,3.36,7.896,8.52,7.896c1.752,0,2.928-0.192,4.727-0.792l0.386,1.607\r\n\tc-1.776,0.577-3.674,0.744-5.137,0.744c-6.768,0-10.393-3.72-10.393-9.456c0-5.784,4.201-9.72,9.985-9.72\r\n\tc6.024,0,9.215,3.6,9.215,8.016c0,3.744-1.175,6.6-4.871,6.6c-1.681,0-2.784-0.672-2.928-2.161\r\n\tc-0.432,1.656-1.584,2.161-3.145,2.161c-2.088,0-3.84-1.609-3.84-4.848c0-3.264,1.537-5.28,4.297-5.28\r\n\tc1.464,0,2.376,0.576,2.782,1.488l0.697-1.272h2.016v7.057H14.608z M11.657,9.004c0-1.319-0.985-1.872-1.801-1.872\r\n\tc-0.888,0-1.871,0.719-1.871,2.832c0,1.68,0.744,2.616,1.871,2.616c0.792,0,1.801-0.504,1.801-1.896V9.004z" + } + }] +}; +exports.email = email; \ No newline at end of file diff --git a/dist/entypo/empty.js b/dist/entypo/empty.js new file mode 100644 index 000000000..e4c6ac59b --- /dev/null +++ b/dist/entypo/empty.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.empty = void 0; +var empty = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M18,5H2C0.9,5,0,5.9,0,7v6c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V7C20,5.9,19.1,5,18,5z M18,13H2V7h16V13z" + } + }] +}; +exports.empty = empty; \ No newline at end of file diff --git a/dist/entypo/erase.js b/dist/entypo/erase.js new file mode 100644 index 000000000..9cb6ccd9e --- /dev/null +++ b/dist/entypo/erase.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.erase = void 0; +var erase = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M18,3H8.446c-0.44,0-1.071,0.236-1.402,0.525L0.248,9.473c-0.331,0.289-0.331,0.764,0,1.053l6.796,5.947\r\n\tC7.375,16.762,8.006,17,8.446,17H18c1.1,0,2-0.9,2-2V5C20,3.9,19.1,3,18,3z M15.191,14l-2.557-2.557L10.078,14l-1.443-1.443\r\n\tL11.191,10L8.635,7.443L10.078,6l2.557,2.555L15.19,6l1.444,1.443L14.078,10l2.557,2.555L15.191,14z" + } + }] +}; +exports.erase = erase; \ No newline at end of file diff --git a/dist/entypo/eraser.js b/dist/entypo/eraser.js new file mode 100644 index 000000000..77acf6887 --- /dev/null +++ b/dist/entypo/eraser.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.eraser = void 0; +var eraser = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M16.998,4.18l-3.154-2.425c-0.872-0.671-2.135-0.506-2.807,0.365l-8.4,10.897c-0.671,0.871-0.507,2.132,0.365,2.803\r\n\tl3.153,2.425c0.872,0.671,2.135,0.506,2.807-0.365l8.401-10.897C18.034,6.112,17.87,4.851,16.998,4.18z M8.548,16.467l-0.537,0.681\r\n\tc-0.152,0.197-0.385,0.31-0.639,0.31c-0.124,0-0.309-0.029-0.485-0.164l-3.153-2.425c-0.168-0.129-0.275-0.317-0.303-0.53\r\n\tc-0.028-0.213,0.028-0.422,0.157-0.589l0.537-0.681c0.152-0.197,0.385-0.311,0.64-0.311c0.124,0,0.309,0.029,0.485,0.164\r\n\tl3.154,2.425c0.168,0.129,0.275,0.317,0.303,0.53C8.733,16.09,8.677,16.299,8.548,16.467z" + } + }] +}; +exports.eraser = eraser; \ No newline at end of file diff --git a/dist/entypo/evernote.js b/dist/entypo/evernote.js new file mode 100644 index 000000000..fd6026296 --- /dev/null +++ b/dist/entypo/evernote.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.evernote = void 0; +var evernote = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M17.3,4.3c0-1.2-1.7-1.3-1.7-1.3l-4.1-0.3c0,0-0.1-1.1-0.9-1.5C9.8,0.9,8.9,1,8.3,1C7.6,1,7.5,1.9,7.5,2.6\r\n\tc0,0.8,0,1.7,0,2.2c0,1-0.4,1.4-1.6,1.4H3.6c-0.6,0-1.1,0.1-1.1,0.6c0,0.5,0.8,5,1.8,6c0.6,0.6,4.3,1,5.1,1s0.5-2.3,0.7-2.3\r\n\ts0.5,1.3,1.7,1.6c1.2,0.3,2.9,0.2,3,1.1c0.1,1.2,0.2,2.6-0.5,2.7l-1.7,0.1c-1.2-0.1-0.9-1.4-0.3-1.4c0.5,0,0.8,0,0.8,0l0.1-1.4\r\n\tc0,0-2.7-0.3-2.8,1.5c-0.1,1.7,0.2,2.4,0.4,2.6c0.2,0.2,0.6,0.5,3.9,0.5C19,19,17.3,5.5,17.3,4.3z M15.4,10.3\r\n\tC15.3,10.5,14.6,10,14,10c-0.6,0-1.3,0.3-1.5,0.1c-0.2-0.2,0.1-2,1.3-2S15.6,10.1,15.4,10.3z M5.3,4.6c-0.5,0-2.9,0-2.9,0l3.5-3.4\r\n\tc0,0-0.1,2.8-0.1,3C5.8,4.4,5.7,4.6,5.3,4.6z" + } + }] +}; +exports.evernote = evernote; \ No newline at end of file diff --git a/dist/entypo/exportIcon.js b/dist/entypo/exportIcon.js new file mode 100644 index 000000000..f5e4b6d2a --- /dev/null +++ b/dist/entypo/exportIcon.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.exportIcon = void 0; +var exportIcon = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M15,15H2V6h2.595c0,0,0.689-0.896,2.17-2H1C0.447,4,0,4.449,0,5v11c0,0.553,0.447,1,1,1h15c0.553,0,1-0.447,1-1v-3.746\r\n\tl-2,1.645V15z M13.361,8.05v3.551L20,6.4l-6.639-4.999v3.131C5.3,4.532,5.3,12.5,5.3,12.5C7.582,8.752,8.986,8.05,13.361,8.05z" + } + }] +}; +exports.exportIcon = exportIcon; \ No newline at end of file diff --git a/dist/entypo/eye.js b/dist/entypo/eye.js new file mode 100644 index 000000000..22fbf532c --- /dev/null +++ b/dist/entypo/eye.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.eye = void 0; +var eye = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,4.4C3.439,4.4,0,9.232,0,10c0,0.766,3.439,5.6,10,5.6c6.56,0,10-4.834,10-5.6C20,9.232,16.56,4.4,10,4.4z M10,14.307\r\n\tc-2.455,0-4.445-1.928-4.445-4.307c0-2.379,1.99-4.309,4.445-4.309c2.455,0,4.444,1.93,4.444,4.309\r\n\tC14.444,12.379,12.455,14.307,10,14.307z M10,10c-0.407-0.447,0.663-2.154,0-2.154c-1.228,0-2.223,0.965-2.223,2.154\r\n\tc0,1.189,0.995,2.154,2.223,2.154c1.227,0,2.223-0.965,2.223-2.154C12.223,9.453,10.346,10.379,10,10z" + } + }] +}; +exports.eye = eye; \ No newline at end of file diff --git a/dist/entypo/facebook.js b/dist/entypo/facebook.js new file mode 100644 index 000000000..e3e6a4d09 --- /dev/null +++ b/dist/entypo/facebook.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.facebook = void 0; +var facebook = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M17,1H3C1.9,1,1,1.9,1,3v14c0,1.101,0.9,2,2,2h7v-7H8V9.525h2V7.475c0-2.164,1.212-3.684,3.766-3.684l1.803,0.002v2.605\r\n\th-1.197C13.378,6.398,13,7.144,13,7.836v1.69h2.568L15,12h-2v7h4c1.1,0,2-0.899,2-2V3C19,1.9,18.1,1,17,1z" + } + }] +}; +exports.facebook = facebook; \ No newline at end of file diff --git a/dist/entypo/fastBackward.js b/dist/entypo/fastBackward.js new file mode 100644 index 000000000..3a84a9238 --- /dev/null +++ b/dist/entypo/fastBackward.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.fastBackward = void 0; +var fastBackward = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M17.959,4.571L10.756,9.52c0,0-0.279,0.201-0.279,0.481s0.279,0.479,0.279,0.479l7.203,4.951\r\n\tC18.531,15.811,19,15.53,19,14.805V5.196C19,4.469,18.531,4.188,17.959,4.571z M8.883,4.571L1.68,9.52c0,0-0.279,0.201-0.279,0.481\r\n\ts0.279,0.479,0.279,0.479l7.203,4.951c0.572,0.381,1.041,0.1,1.041-0.625V5.196C9.924,4.469,9.455,4.188,8.883,4.571z" + } + }] +}; +exports.fastBackward = fastBackward; \ No newline at end of file diff --git a/dist/entypo/fastForward.js b/dist/entypo/fastForward.js new file mode 100644 index 000000000..7b5fb3dad --- /dev/null +++ b/dist/entypo/fastForward.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.fastForward = void 0; +var fastForward = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M9.244,9.52L2.041,4.571C1.469,4.188,1,4.469,1,5.196v9.609c0,0.725,0.469,1.006,1.041,0.625l7.203-4.951\r\n\tc0,0,0.279-0.199,0.279-0.478C9.523,9.721,9.244,9.52,9.244,9.52z M18.6,10.001c0,0.279-0.279,0.478-0.279,0.478l-7.203,4.951\r\n\tc-0.572,0.381-1.041,0.1-1.041-0.625V5.196c0-0.727,0.469-1.008,1.041-0.625L18.32,9.52C18.32,9.52,18.6,9.721,18.6,10.001z" + } + }] +}; +exports.fastForward = fastForward; \ No newline at end of file diff --git a/dist/entypo/feather.js b/dist/entypo/feather.js new file mode 100644 index 000000000..4742608d2 --- /dev/null +++ b/dist/entypo/feather.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.feather = void 0; +var feather = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M4.254,19.567c0.307-0.982,0.77-2.364,1.391-4.362c2.707-0.429,3.827,0.341,5.546-2.729\r\n\tc-1.395,0.427-3.077-0.792-2.987-1.321c0.091-0.528,3.913,0.381,6.416-3.173c-3.155,0.696-4.164-0.836-3.757-1.067\r\n\tc0.939-0.534,3.726-0.222,5.212-1.669c0.766-0.745,1.125-2.556,0.813-3.202c-0.374-0.781-2.656-1.946-3.914-1.836\r\n\tc-1.258,0.109-3.231,4.79-3.817,4.754C8.573,4.925,8.454,2.864,9.476,0.949c-1.077,0.477-3.051,1.959-3.67,3.226\r\n\tc-1.153,2.357,0.108,7.766-0.296,7.958c-0.405,0.193-1.766-2.481-2.172-3.694c-0.555,1.859-0.568,3.721,1.053,6.194\r\n\tc-0.611,1.623-0.945,3.491-0.996,4.441C3.371,19.833,4.119,19.996,4.254,19.567z" + } + }] +}; +exports.feather = feather; \ No newline at end of file diff --git a/dist/entypo/fingerprint.js b/dist/entypo/fingerprint.js new file mode 100644 index 000000000..95a46c131 --- /dev/null +++ b/dist/entypo/fingerprint.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.fingerprint = void 0; +var fingerprint = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M9.6795855,7.8502398c-0.3737011,0.09375-0.6062469,0.4970703-0.5193815,0.9003906\r\n\tc0.7166376,3.3271484,0.8731756,6.8144531,0.4515181,10.0849619c-0.0524817,0.4106445,0.2126379,0.7895508,0.5926733,0.8461914\r\n\tc0.0325747,0.0048828,0.0651484,0.0073242,0.096818,0.0073242c0.3411264,0,0.6388206-0.2714844,0.6876822-0.6464844\r\n\tc0.4442797-3.4511728,0.2805023-7.1274424-0.4750433-10.6318369C10.4269867,8.0064898,10.0532856,7.7584429,9.6795855,7.8502398z\r\n\t M8.0689611,12.0733843c-0.3818445,0.0380859-0.6632514,0.4033203-0.6279626,0.815918\r\n\tc0.1692061,1.9672852,0.1248689,3.9091806-0.1321073,5.7714853c-0.0561004,0.409668,0.2063046,0.7915039,0.5854349,0.8520508\r\n\tc0.0343838,0.0058594,0.068768,0.0083008,0.1031523,0.0083008c0.3384123,0,0.6352015-0.2675781,0.6867771-0.6396484\r\n\tc0.2723579-1.980957,0.3203154-4.0439463,0.1411562-6.1308603C8.790122,12.3380327,8.439043,12.0304155,8.0689611,12.0733843z\r\n\t M9.1583948,5.4142046c-0.783596,0.1967773-1.4495621,0.7114258-1.8757439,1.4487305\r\n\tC6.8564687,7.6012163,6.7225518,8.4727983,6.9044256,9.3165483c0.08777,0.409668,0.1673961,0.8198242,0.2370691,1.2294922\r\n\tc0.0678635,0.4077148,0.4388499,0.6767578,0.8080268,0.6025391c0.3782248-0.074707,0.6279626-0.4658203,0.5582891-0.8730469\r\n\tc-0.0732918-0.4321289-0.156538-0.8647461-0.2497368-1.2983398c-0.097723-0.4541016-0.0253363-0.9228516,0.2044945-1.3203125\r\n\tc0.2298307-0.3979492,0.5890541-0.6757812,1.0098076-0.78125c0.8722706-0.2192383,1.7418261,0.3706055,1.9436064,1.309082\r\n\tc0.7464972,3.4614258,0.9419441,6.9296875,0.5809107,10.309083c-0.0443373,0.4116211,0.2298307,0.7836914,0.6107702,0.8310547\r\n\tc0.0271454,0.003418,0.0542908,0.0048828,0.0805311,0.0048828c0.3483658,0,0.6487741-0.2817383,0.6894922-0.6640625\r\n\tc0.3791304-3.5507822,0.1746349-7.1914072-0.6080561-10.8203135C12.3950253,6.1026812,10.7789717,5.0118608,9.1583948,5.4142046z\r\n\t M6.7478876,5.9469194c0.2388787-0.3251953,0.1873026-0.796875-0.1140108-1.0537109\r\n\tc-0.302218-0.2573242-0.7383533-0.2001953-0.9754229,0.1230469C5.5363002,5.1827593,5.4222894,5.3580523,5.3173275,5.5396929\r\n\tc-0.753736,1.3056641-0.9917102,2.8481445-0.6686802,4.34375c0.5935779,2.7563477,0.7320194,5.5878906,0.400846,8.1889658\r\n\tc-0.0524807,0.4101562,0.2135434,0.7885742,0.5935783,0.8452148c0.0325747,0.0043945,0.0642443,0.0068359,0.0959134,0.0068359\r\n\tc0.3420315,0,0.6397257-0.2719727,0.6876826-0.6479492c0.3537941-2.7802744,0.2072091-5.7998056-0.4243727-8.7329111\r\n\tC5.7643209,8.4386187,5.9398608,7.2984819,6.4972453,6.3326616C6.5750618,6.197896,6.6583076,6.069478,6.7478876,5.9469194z\r\n\t M15.10956,12.8189898c-0.3827496,0.0205078-0.6786337,0.3720703-0.6596327,0.7861328\r\n\tc0.0633392,1.3837891,0.0434332,2.7739267-0.058814,4.1313486c-0.0316696,0.4130859,0.253356,0.7749023,0.6361055,0.8085938\r\n\tc0.019002,0.0014648,0.0380039,0.0024414,0.0570049,0.0024414c0.3583193,0,0.6623468-0.296875,0.6913023-0.6889648\r\n\tc0.1076765-1.4223633,0.1284876-2.8784189,0.0624342-4.3276377C15.8189583,13.1168413,15.4841652,12.8082476,15.10956,12.8189898z\r\n\t M14.9403534,11.7843218c0.0289555,0,0.05791-0.0019531,0.0868654-0.0058594\r\n\tc0.3809395-0.0507812,0.6505833-0.4257812,0.6035318-0.8364258c-0.1402512-1.2226562-0.3447466-2.4550781-0.6053419-3.6625977\r\n\tc-0.5528603-2.574707-2.7498236-4.4438477-5.22367-4.4438477c-0.390893,0-0.781786,0.0478516-1.1636305,0.1425781\r\n\tc-0.3157902,0.0791016-0.625248,0.1889648-0.9211321,0.3271484C7.3649917,3.4698689,7.2030244,3.9117634,7.3550382,4.291646\r\n\tC7.507957,4.6720171,7.9178519,4.8473101,8.2689314,4.682271c0.2189732-0.1025391,0.449708-0.184082,0.6822538-0.2426758\r\n\tc0.2777872-0.0688477,0.5637178-0.1040039,0.8505535-0.1040039c1.8341208,0,3.4610329,1.3803711,3.8700228,3.2836914\r\n\tc0.2497368,1.1572266,0.4451838,2.3374023,0.5800056,3.5073242C14.2951994,11.5064898,14.5947027,11.7843218,14.9403534,11.7843218z\r\n\t M17.282093,6.7164507c-0.3157921-1.4726562-1.0152359-2.8251951-2.0205193-3.913574\r\n\tc-0.2705488-0.2929688-0.7103033-0.2920532-0.9826622,0.0009155c-0.2723579,0.2924805-0.2723579,0.7734375-0.0018091,1.0664062\r\n\tc0.822504,0.8906248,1.3934612,2.0072629,1.6513424,3.2074583c0.6469641,3.003418,0.9365149,6.0850124,0.860507,9.0986834\r\n\tC16.7789993,16.5904026,17.0812168,17,17.4648705,17h0.0190029c0.3755093,0,0.684063-0.3749294,0.6949196-0.782156\r\n\tC18.257515,13.0757551,17.9562016,9.8443804,17.282093,6.7164507z M3.3900077,12.8546343\r\n\tc0.0334792,0,0.0678635-0.0024414,0.1022475-0.0078125c0.3791301-0.0600586,0.6415353-0.4414062,0.5863395-0.8510742\r\n\tc-0.0841506-0.6181641-0.1954465-1.2524414-0.332078-1.8867188C3.3673866,8.3546343,3.6460788,6.5435991,4.5319219,5.0108843\r\n\tc0.8831291-1.5297849,2.2675419-2.597656,3.8944526-3.0063474c1.4052248-0.3491211,2.9009333-0.1430664,4.1930523,0.5581055\r\n\tc0.3411264,0.1875,0.7600698,0.0371094,0.9328947-0.3325195c0.1728258-0.3701172,0.0343838-0.8212891-0.3085518-1.0073242\r\n\tc-1.5789547-0.8579102-3.4076462-1.105957-5.1304712-0.6796875c-1.9897542,0.5-3.6809092,1.8046875-4.7612944,3.6738279\r\n\tC2.2698097,6.0909624,1.929588,8.3043413,2.3928685,10.4488726c0.1275833,0.59375,0.2316403,1.1870117,0.3103619,1.7646484\r\n\tC2.7539017,12.5865679,3.0506909,12.8546343,3.3900077,12.8546343z M3.5972173,14h-0.023526\r\n\tc-0.3836544,0-0.684063,0.2493391-0.6713951,0.6634016c0.0271454,0.8476562,0.0036194,1.5799913-0.0696731,2.3895617\r\n\tc-0.0380034,0.4121094,0.2415936,0.777544,0.6234381,0.8180714c0.0226212,0.0024414,0.0461471,0.0025425,0.0687683,0.0025425\r\n\tc0.3528895,0,0.6551077-0.2373772,0.6903965-0.6245842c0.0796266-0.875,0.1058669-1.7228241,0.0769119-2.6368866\r\n\tC4.2785654,14.2068329,3.9700134,14,3.5972173,14z" + } + }] +}; +exports.fingerprint = fingerprint; \ No newline at end of file diff --git a/dist/entypo/fiveHundredPX.js b/dist/entypo/fiveHundredPX.js new file mode 100644 index 000000000..b696af0a7 --- /dev/null +++ b/dist/entypo/fiveHundredPX.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.fiveHundredPX = void 0; +var fiveHundredPX = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M6.398,14.775c0.481-0.174,0.928-0.4,1.337-0.683c0.41-0.282,0.797-0.608,1.16-0.982c0.363-0.373,0.736-0.759,1.118-1.159\r\n\tc0.346,0.4,0.71,0.786,1.092,1.159c0.382,0.374,0.787,0.7,1.214,0.982c0.428,0.282,0.887,0.509,1.379,0.683\r\n\tc0.49,0.173,1.017,0.259,1.582,0.259c0.727,0,1.387-0.132,1.977-0.396c0.591-0.264,1.087-0.627,1.487-1.092\r\n\tc0.399-0.464,0.71-1.005,0.928-1.623C19.891,11.306,20,10.642,20,9.932c0-0.71-0.109-1.364-0.328-1.964\r\n\tc-0.218-0.602-0.528-1.123-0.928-1.569c-0.4-0.446-0.892-0.795-1.473-1.05c-0.583-0.256-1.238-0.383-1.966-0.383\r\n\tc-0.581,0-1.123,0.092-1.623,0.273c-0.5,0.182-0.964,0.423-1.391,0.723c-0.428,0.3-0.828,0.65-1.201,1.051\r\n\tc-0.372,0.399-0.732,0.81-1.078,1.228C9.648,7.804,9.28,7.391,8.908,6.999C8.535,6.608,8.135,6.262,7.707,5.962\r\n\tc-0.428-0.3-0.891-0.541-1.391-0.723c-0.5-0.182-1.051-0.273-1.65-0.273c-0.728,0-1.385,0.133-1.965,0.396\r\n\tC2.117,5.626,1.628,5.979,1.227,6.426c-0.4,0.446-0.706,0.974-0.914,1.583C0.104,8.618,0,9.277,0,9.985\r\n\tc0,0.71,0.108,1.374,0.326,1.992c0.219,0.619,0.537,1.15,0.955,1.597c0.419,0.446,0.919,0.801,1.5,1.064\r\n\tc0.584,0.264,1.246,0.396,1.993,0.396C5.374,15.034,5.916,14.948,6.398,14.775z M3.164,11.65c-0.383-0.418-0.573-0.955-0.573-1.609\r\n\tc0-0.6,0.186-1.142,0.561-1.624c0.372-0.48,0.876-0.723,1.515-0.723c0.345,0,0.689,0.078,1.035,0.232\r\n\tc0.346,0.154,0.678,0.35,0.997,0.587C7.016,8.75,7.321,9.009,7.611,9.29c0.291,0.283,0.546,0.542,0.765,0.778\r\n\tc-0.219,0.255-0.464,0.515-0.737,0.776c-0.273,0.266-0.562,0.502-0.872,0.71c-0.311,0.21-0.637,0.382-0.983,0.519\r\n\tc-0.345,0.137-0.691,0.205-1.036,0.205C4.073,12.278,3.546,12.069,3.164,11.65z M14.256,12.088c-0.336-0.127-0.66-0.296-0.968-0.505\r\n\tc-0.311-0.209-0.603-0.445-0.874-0.709c-0.273-0.264-0.528-0.532-0.764-0.806c0.218-0.236,0.463-0.495,0.736-0.778\r\n\tc0.273-0.281,0.56-0.54,0.859-0.776c0.3-0.237,0.619-0.433,0.955-0.587c0.337-0.154,0.688-0.232,1.051-0.232\r\n\tc0.673,0,1.204,0.227,1.596,0.683c0.392,0.454,0.587,1,0.587,1.638c0,0.637-0.183,1.172-0.546,1.608\r\n\tc-0.364,0.438-0.882,0.655-1.555,0.655C14.952,12.278,14.592,12.215,14.256,12.088z" + } + }] +}; +exports.fiveHundredPX = fiveHundredPX; \ No newline at end of file diff --git a/dist/entypo/flag.js b/dist/entypo/flag.js new file mode 100644 index 000000000..285e325b5 --- /dev/null +++ b/dist/entypo/flag.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.flag = void 0; +var flag = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.926,5.584c-9.339,13.568-6.142-0.26-14.037,6.357L6.684,19H4.665L1,4.59l1.85-0.664\r\n\tc8.849-6.471,4.228,5.82,15.637,1.254C18.851,5.033,19.142,5.27,18.926,5.584z" + } + }] +}; +exports.flag = flag; \ No newline at end of file diff --git a/dist/entypo/flash.js b/dist/entypo/flash.js new file mode 100644 index 000000000..d02f088e3 --- /dev/null +++ b/dist/entypo/flash.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.flash = void 0; +var flash = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M6.803,18.998c-0.194-0.127,3.153-7.16,3.038-7.469c-0.116-0.309-3.665-1.436-3.838-1.979\r\n\tc-0.174-0.543,7.007-8.707,7.196-8.549c0.188,0.158-3.129,7.238-3.039,7.469c0.091,0.23,3.728,1.404,3.838,1.979\r\n\tC14.109,11.024,6.996,19.125,6.803,18.998z" + } + }] +}; +exports.flash = flash; \ No newline at end of file diff --git a/dist/entypo/flashlight.js b/dist/entypo/flashlight.js new file mode 100644 index 000000000..7a6fa35ac --- /dev/null +++ b/dist/entypo/flashlight.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.flashlight = void 0; +var flashlight = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M17.115,2.884c-1.676-1.676-3.779-2.288-4.449-1.618L9.97,3.962C9.561,4.372,9.204,5.741,9.368,7.126l-8.161,8.161\r\n\tc-0.484,0.484-0.092,1.66,0.876,2.629c0.968,0.969,2.146,1.359,2.629,0.877l8.161-8.162c1.386,0.164,2.755-0.193,3.164-0.601\r\n\tl2.696-2.697C19.403,6.663,18.791,4.559,17.115,2.884z M8.141,11.039C7.768,10.667,7.89,9.943,8.41,9.422\r\n\tc0.521-0.521,1.246-0.643,1.618-0.27c0.372,0.371,0.251,1.097-0.27,1.617C9.237,11.291,8.513,11.412,8.141,11.039z M14.891,5.108\r\n\tc-1.298-1.297-1.623-3.01-1.508-3.125c0.115-0.116,1.76,0.277,3.059,1.575c1.298,1.298,1.688,2.946,1.575,3.059\r\n\tC17.905,6.729,16.188,6.407,14.891,5.108z" + } + }] +}; +exports.flashlight = flashlight; \ No newline at end of file diff --git a/dist/entypo/flask.js b/dist/entypo/flask.js new file mode 100644 index 000000000..71cb6fd07 --- /dev/null +++ b/dist/entypo/flask.js @@ -0,0 +1,18 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.flask = void 0; +var flask = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M16.432,15C14.387,9.893,12,8.547,12,6V3h0.5C12.776,3,13,2.776,13,2.5v-1\r\n\tC13,1.224,12.776,1,12.5,1h-5C7.224,1,7,1.224,7,1.5v1C7,2.776,7.224,3,7.5,3H8v3c0,2.547-2.387,3.893-4.432,9\r\n\tC2.917,16.625,1.245,19,10,19S17.083,16.625,16.432,15z M14.815,16.751C14.113,16.961,12.716,17.2,10,17.2s-4.113-0.239-4.815-0.449\r\n\tc-0.249-0.074-0.346-0.363-0.258-0.628c0.22-0.67,0.635-1.828,1.411-3.121c1.896-3.159,3.863,0.497,5.5,0.497\r\n\tc1.637,0,1.188-1.561,1.824-0.497c0.774,1.294,1.191,2.451,1.411,3.121C15.161,16.388,15.064,16.676,14.815,16.751z" + } + }] +}; +exports.flask = flask; \ No newline at end of file diff --git a/dist/entypo/flattr.js b/dist/entypo/flattr.js new file mode 100644 index 000000000..83878e3f5 --- /dev/null +++ b/dist/entypo/flattr.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.flattr = void 0; +var flattr = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M5.598,8.541c0-1.637,0.434-2.678,1.889-2.912c0.508-0.1,1.566-0.064,2.239-0.064v2.5c0,0.024,0.003,0.064,0.009,0.084\r\n\tC9.762,8.25,9.854,8.324,9.963,8.324c0.061,0,0.118-0.031,0.178-0.09L16.377,2H12.19H7.548C3.874,2,2,4.115,2,8.066v8.287\r\n\tl3.598-3.602V8.541z M14.4,7.248v4.209c0,1.637-0.434,2.68-1.889,2.912c-0.508,0.1-1.566,0.065-2.238,0.065v-2.5\r\n\tc0-0.022-0.004-0.062-0.009-0.084c-0.028-0.1-0.12-0.174-0.228-0.176c-0.062,0-0.118,0.033-0.179,0.092l-6.235,6.232L7.809,18h4.643\r\n\tC16.125,18,18,15.885,18,11.934V3.647L14.4,7.248z" + } + }] +}; +exports.flattr = flattr; \ No newline at end of file diff --git a/dist/entypo/flickr.js b/dist/entypo/flickr.js new file mode 100644 index 000000000..c9ebebc49 --- /dev/null +++ b/dist/entypo/flickr.js @@ -0,0 +1,21 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.flickr = void 0; +var flickr = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M5,14c-2.188,0-3.96-1.789-3.96-4c0-2.211,1.772-4,3.96-4c2.187,0,3.96,1.789,3.96,4C8.96,12.211,7.187,14,5,14z" + } + }, { + "name": "path", + "attribs": { + "d": "M15,14c-2.188,0-3.96-1.789-3.96-4c0-2.211,1.772-4,3.96-4c2.187,0,3.96,1.789,3.96,4C18.96,12.211,17.187,14,15,14z" + } + }] +}; +exports.flickr = flickr; \ No newline at end of file diff --git a/dist/entypo/flirt.js b/dist/entypo/flirt.js new file mode 100644 index 000000000..46dc0bd9a --- /dev/null +++ b/dist/entypo/flirt.js @@ -0,0 +1,34 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.flirt = void 0; +var flirt = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M7.5,9.75C8.329,9.75,9,8.967,9,8S8.329,6.25,7.5,6.25S6,7.034,6,8S6.672,9.75,7.5,9.75z M10,0.4\r\n\tC4.698,0.4,0.4,4.698,0.4,10C0.4,15.302,4.698,19.6,10,19.6c5.301,0,9.6-4.298,9.6-9.601C19.6,4.698,15.301,0.4,10,0.4z M10,17.599\r\n\tc-4.197,0-7.6-3.402-7.6-7.6c0-4.197,3.402-7.6,7.6-7.6S17.6,5.802,17.6,10C17.6,14.197,14.197,17.599,10,17.599z M14.341,11.336\r\n\tc-0.363-0.187-0.815-0.043-1.008,0.32c-0.034,0.065-0.869,1.593-3.332,1.593c-2.451,0-3.291-1.513-3.333-1.592\r\n\tc-0.188-0.365-0.632-0.514-1.004-0.329c-0.37,0.185-0.521,0.636-0.335,1.007c0.05,0.099,1.248,2.414,4.672,2.414\r\n\tc3.425,0,4.621-2.316,4.67-2.415C14.855,11.967,14.707,11.524,14.341,11.336z M11.25,8.75h2.5c0.414,0,0.75-0.336,0.75-0.75\r\n\tc0-0.414-0.336-0.75-0.75-0.75h-2.5c-0.414,0-0.75,0.336-0.75,0.75C10.5,8.415,10.836,8.75,11.25,8.75z" + } + }, { + "name": "g", + "attribs": {} + }, { + "name": "g", + "attribs": {} + }, { + "name": "g", + "attribs": {} + }, { + "name": "g", + "attribs": {} + }, { + "name": "g", + "attribs": {} + }, { + "name": "g", + "attribs": {} + }] +}; +exports.flirt = flirt; \ No newline at end of file diff --git a/dist/entypo/flower.js b/dist/entypo/flower.js new file mode 100644 index 000000000..5f1f278bb --- /dev/null +++ b/dist/entypo/flower.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.flower = void 0; +var flower = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M12.6591797,8.7595215c0.4396973-1.0861816-0.3630371-2.5083008-1.2099609-3.4055176\r\n\tc0.3283691-1.1893311,0.3718262-2.8215332-0.5253906-3.5754395c-0.8969727-0.7540283-2.4973145-0.4300537-3.6125488,0.0980225\r\n\tC6.2817383,1.1970215,4.7426758,0.651123,3.748291,1.2713623C2.7543945,1.8916016,2.5678711,3.513916,2.7253418,4.7375488\r\n\tc-0.9645996,0.7692871-1.9592285,2.064209-1.6765137,3.201416s1.7678223,1.815918,2.9804688,2.0440674\r\n\tc0.4333496,1.1551514,1.357666,2.5012207,2.5266113,2.5838623c0.828125,0.0585938,1.619873-0.53125,2.223877-1.2633057\r\n\tc1.2209473,1.5201416,2.0817871,3.1278076,2.5551758,4.706543C10.6123047,14.9285889,9.1147461,14,6,14\r\n\tc0,4.1550293,3.0419922,5.0028076,5,5.0028076l3.2001953,0.0020752c0-2.7229004-0.986084-5.909668-3.2895508-8.9008789\r\n\tC11.692627,9.8570557,12.388916,9.4267578,12.6591797,8.7595215z M8.2827148,8.5396729\r\n\tC7.1357422,9.255127,5.6259766,8.9055176,4.9106445,7.7585449C4.1950684,6.6116943,4.5446777,5.1018066,5.6916504,4.3863525\r\n\tS8.3483887,4.020752,9.0639648,5.1674805C9.7792969,6.3144531,9.4296875,7.8242188,8.2827148,8.5396729z M14.0200195,12.2478027\r\n\tc1.0825195,2.1699219,1.6687012,4.4530029,1.6774902,6.7053223C18.9963379,16.5820312,19,12.2062988,19,8.0028076\r\n\tC19,8.0028076,15.3293457,9.0374756,14.0200195,12.2478027z" + } + }] +}; +exports.flower = flower; \ No newline at end of file diff --git a/dist/entypo/folder.js b/dist/entypo/folder.js new file mode 100644 index 000000000..a76390a59 --- /dev/null +++ b/dist/entypo/folder.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.folder = void 0; +var folder = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.405,4.799C18.294,4.359,17.75,4,17.195,4h-6.814C9.827,4,9.051,3.682,8.659,3.293L8.063,2.705\r\n\tC7.671,2.316,6.896,2,6.342,2H3.087C2.532,2,2.028,2.447,1.967,2.994L1.675,6h16.931L18.405,4.799z M19.412,7H0.588\r\n\tc-0.342,0-0.61,0.294-0.577,0.635l0.923,9.669C0.971,17.698,1.303,18,1.7,18H18.3c0.397,0,0.728-0.302,0.766-0.696l0.923-9.669\r\n\tC20.022,7.294,19.754,7,19.412,7z" + } + }] +}; +exports.folder = folder; \ No newline at end of file diff --git a/dist/entypo/forward.js b/dist/entypo/forward.js new file mode 100644 index 000000000..f2c756021 --- /dev/null +++ b/dist/entypo/forward.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.forward = void 0; +var forward = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M12,11.874v4.357l7-6.69l-7-6.572v3.983c-8.775,0-11,9.732-11,9.732C3.484,12.296,7.237,11.874,12,11.874z" + } + }] +}; +exports.forward = forward; \ No newline at end of file diff --git a/dist/entypo/foursquare.js b/dist/entypo/foursquare.js new file mode 100644 index 000000000..9a2b89087 --- /dev/null +++ b/dist/entypo/foursquare.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.foursquare = void 0; +var foursquare = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M4.92,1C4.412,1,4,1.412,4,1.92v16.516c0,0.625,0.765,0.926,1.192,0.47l4.471-4.79C9.731,14.042,9.826,14,9.927,14h3.237\r\n\tc0.486,0,0.905-0.343,1.001-0.82l2.111-10.514C16.449,1.804,15.79,1,14.911,1H4.92z M8.838,12.19L6,15.527V3.343\r\n\tC6,3.154,6.154,3,6.343,3h7.14c0.342,0,0.598,0.313,0.53,0.648l-0.413,2.055C13.566,5.876,13.414,6,13.238,6h-3.71\r\n\tC9.236,6,9,6.236,9,6.528v1.22C9,7.887,9.113,8,9.253,8h3.294c0.306,0,0.536,0.28,0.476,0.581l-0.614,3.058\r\n\tC12.366,11.849,12.181,12,11.967,12H9.25C9.091,12,8.941,12.069,8.838,12.19z" + } + }] +}; +exports.foursquare = foursquare; \ No newline at end of file diff --git a/dist/entypo/full.js b/dist/entypo/full.js new file mode 100644 index 000000000..3e8133004 --- /dev/null +++ b/dist/entypo/full.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.full = void 0; +var full = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M18,5H2C0.9,5,0,5.9,0,7v6c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V7C20,5.9,19.1,5,18,5z M18,13H2V7h16V13z M7,8H3v4h4V8z\r\n\t M12,8H8v4h4V8z M17,8h-4v4h4V8z" + } + }] +}; +exports.full = full; \ No newline at end of file diff --git a/dist/entypo/fullScreen.js b/dist/entypo/fullScreen.js new file mode 100644 index 000000000..772199997 --- /dev/null +++ b/dist/entypo/fullScreen.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.fullScreen = void 0; +var fullScreen = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M6.987,10.987l-2.931,3.031L2,11.589V18h6.387l-2.43-2.081l3.03-2.932L6.987,10.987z M11.613,2l2.43,2.081l-3.03,2.932l2,2\r\n\tl2.931-3.031L18,8.411V2H11.613z" + } + }] +}; +exports.fullScreen = fullScreen; \ No newline at end of file diff --git a/dist/entypo/funnel.js b/dist/entypo/funnel.js new file mode 100644 index 000000000..d02329222 --- /dev/null +++ b/dist/entypo/funnel.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.funnel = void 0; +var funnel = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,1C5.092,1,2,2.512,2,4.001v2c0,0.918,6,6,6,6v6c-0.001,0.684,1,1,2,1s2.001-0.316,2-1v-6c0,0,6-5.082,6-6v-2\r\n\tC18,2.512,14.908,1,10,1z M10,6.123C6.409,6.122,3.862,4.79,3.862,4.292C3.86,3.797,6.41,2.461,10,2.463\r\n\tc3.59-0.002,6.14,1.334,6.138,1.828C16.138,4.79,13.591,6.122,10,6.123z" + } + }] +}; +exports.funnel = funnel; \ No newline at end of file diff --git a/dist/entypo/gauge.js b/dist/entypo/gauge.js new file mode 100644 index 000000000..6a8f50ad1 --- /dev/null +++ b/dist/entypo/gauge.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.gauge = void 0; +var gauge = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M8.127,13.6c-0.689,1.197-0.225,2.18,0.732,2.732c0.956,0.553,2.041,0.465,2.732-0.732\r\n\tc0.689-1.195,5.047-11.865,4.668-12.084C15.88,3.297,8.817,12.404,8.127,13.6z M10,6c0.438,0,0.864,0.037,1.281,0.109\r\n\tc0.438-0.549,0.928-1.154,1.405-1.728C11.834,4.135,10.934,4,10,4C4.393,4,0,8.729,0,14.766c0,0.371,0.016,0.742,0.049,1.103\r\n\tc0.049,0.551,0.54,0.955,1.084,0.908c0.551-0.051,0.957-0.535,0.908-1.086C2.014,15.389,2,15.076,2,14.766C2,9.85,5.514,6,10,6z\r\n\t M17.219,7.25C16.94,8,16.645,8.764,16.385,9.424C17.4,10.894,18,12.738,18,14.766c0,0.316-0.015,0.635-0.043,0.943\r\n\tc-0.05,0.551,0.355,1.037,0.905,1.088c0.03,0.002,0.061,0.004,0.092,0.004c0.511,0,0.948-0.391,0.995-0.91\r\n\tC19.982,15.521,20,15.143,20,14.766C20,11.812,18.947,9.176,17.219,7.25z" + } + }] +}; +exports.gauge = gauge; \ No newline at end of file diff --git a/dist/entypo/github.js b/dist/entypo/github.js new file mode 100644 index 000000000..8cb642f4e --- /dev/null +++ b/dist/entypo/github.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.github = void 0; +var github = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M13.18,11.309c-0.718,0-1.3,0.807-1.3,1.799c0,0.994,0.582,1.801,1.3,1.801s1.3-0.807,1.3-1.801\r\n\tC14.479,12.116,13.898,11.309,13.18,11.309z M17.706,6.626c0.149-0.365,0.155-2.439-0.635-4.426c0,0-1.811,0.199-4.551,2.08\r\n\tc-0.575-0.16-1.548-0.238-2.519-0.238c-0.973,0-1.945,0.078-2.52,0.238C4.74,2.399,2.929,2.2,2.929,2.2\r\n\tC2.14,4.187,2.148,6.261,2.295,6.626C1.367,7.634,0.8,8.845,0.8,10.497c0,7.186,5.963,7.301,7.467,7.301\r\n\tc0.342,0,1.018,0.002,1.734,0.002c0.715,0,1.392-0.002,1.732-0.002c1.506,0,7.467-0.115,7.467-7.301\r\n\tC19.2,8.845,18.634,7.634,17.706,6.626z M10.028,16.915H9.972c-3.771,0-6.709-0.449-6.709-4.115c0-0.879,0.31-1.693,1.047-2.369\r\n\tc1.227-1.127,3.305-0.531,5.662-0.531c0.01,0,0.02,0,0.029,0c0.01,0,0.018,0,0.027,0c2.357,0,4.436-0.596,5.664,0.531\r\n\tc0.735,0.676,1.045,1.49,1.045,2.369C16.737,16.466,13.8,16.915,10.028,16.915z M6.821,11.309c-0.718,0-1.3,0.807-1.3,1.799\r\n\tc0,0.994,0.582,1.801,1.3,1.801c0.719,0,1.301-0.807,1.301-1.801C8.122,12.116,7.54,11.309,6.821,11.309z" + } + }] +}; +exports.github = github; \ No newline at end of file diff --git a/dist/entypo/glass.js b/dist/entypo/glass.js new file mode 100644 index 000000000..69ed2ab68 --- /dev/null +++ b/dist/entypo/glass.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.glass = void 0; +var glass = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M15.6,4.576c0-2.139,0-2.348,0-2.348C15.6,1.439,13.092,0,10,0C6.907,0,4.4,1.439,4.4,2.228c0,0,0,0.209,0,2.348\r\n\tC4.4,6.717,8.277,8.484,8.277,10c0,1.514-3.877,3.281-3.877,5.422c0,2.141,0,2.35,0,2.35C4.4,18.56,6.907,20,10,20\r\n\tc3.092,0,5.6-1.44,5.6-2.229c0,0,0-0.209,0-2.35c0-2.141-3.877-3.908-3.877-5.422C11.723,8.484,15.6,6.717,15.6,4.576z M5.941,2.328\r\n\tc0.696-0.439,2-1.082,4.114-1.082c2.113,0,4.006,1.082,4.006,1.082c0.142,0.086,0.698,0.383,0.317,0.609\r\n\tC13.54,3.434,11.9,3.957,10,3.957c-1.9,0-3.484-0.576-4.324-1.074C5.295,2.658,5.941,2.328,5.941,2.328z M10.501,10\r\n\tc0,1.193,0.996,1.961,2.051,2.986c0.771,0.748,1.826,1.773,1.826,2.435v1.328c-0.97-0.483-3.872-0.955-3.872-2.504\r\n\tc0-0.783-1.013-0.783-1.013,0c0,1.549-2.902,2.021-3.872,2.504v-1.328c0-0.662,1.056-1.688,1.826-2.435\r\n\tC8.502,11.961,9.498,11.193,9.498,10c0-1.193-0.996-1.961-2.051-2.986c-0.771-0.75-1.826-1.775-1.826-2.438L5.575,3.578\r\n\tC6.601,4.131,8.227,4.656,10,4.656c1.772,0,3.406-0.525,4.433-1.078l-0.055,0.998c0,0.662-1.056,1.688-1.826,2.438\r\n\tC11.498,8.039,10.501,8.807,10.501,10z" + } + }] +}; +exports.glass = glass; \ No newline at end of file diff --git a/dist/entypo/globe.js b/dist/entypo/globe.js new file mode 100644 index 000000000..c9b99ba93 --- /dev/null +++ b/dist/entypo/globe.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.globe = void 0; +var globe = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,0.4c-5.295,0-9.601,4.307-9.601,9.6c0,5.293,4.306,9.6,9.601,9.6c5.293,0,9.6-4.307,9.6-9.6\r\n\tC19.6,4.707,15.293,0.4,10,0.4z M18.188,10c0,1.873-0.636,3.6-1.696,4.98c-0.3-0.234-0.619-0.867-0.319-1.523\r\n\tc0.303-0.66,0.382-2.188,0.312-2.783c-0.066-0.594-0.375-2.025-1.214-2.039c-0.838-0.012-1.413-0.289-1.911-1.283\r\n\tc-1.033-2.068,1.939-2.465,0.906-3.609c-0.289-0.322-1.783,1.322-2.002-0.869C12.25,2.717,12.399,2.482,12.6,2.238\r\n\tC15.844,3.328,18.188,6.395,18.188,10z M8.875,1.893C8.679,2.275,8.162,2.43,7.848,2.717C7.164,3.336,6.87,3.25,6.502,3.844\r\n\tC6.131,4.438,4.935,5.293,4.935,5.723s0.604,0.936,0.906,0.838c0.302-0.1,1.099-0.094,1.567,0.07\r\n\tc0.469,0.166,3.914,0.332,2.816,3.244c-0.348,0.926-1.873,0.77-2.279,2.303c-0.061,0.225-0.272,1.186-0.285,1.5\r\n\tc-0.025,0.486,0.344,2.318-0.125,2.318c-0.471,0-1.738-1.639-1.738-1.936c0-0.297-0.328-1.338-0.328-2.23\r\n\tc0-0.891-1.518-0.877-1.518-2.062c0-1.068,0.823-1.6,0.638-2.113c-0.181-0.51-1.627-0.527-2.23-0.59\r\n\tC3.412,4.334,5.889,2.307,8.875,1.893z M7.424,17.77c0.492-0.26,0.542-0.596,0.988-0.613c0.51-0.023,0.925-0.199,1.5-0.326\r\n\tc0.51-0.111,1.423-0.629,2.226-0.695c0.678-0.055,2.015,0.035,2.375,0.689c-1.295,0.861-2.848,1.363-4.514,1.363\r\n\tC9.1,18.188,8.234,18.039,7.424,17.77z" + } + }] +}; +exports.globe = globe; \ No newline at end of file diff --git a/dist/entypo/googlePlus.js b/dist/entypo/googlePlus.js new file mode 100644 index 000000000..e402f725c --- /dev/null +++ b/dist/entypo/googlePlus.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.googlePlus = void 0; +var googlePlus = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M1.989,5.589c0,1.494,0.499,2.572,1.482,3.205c0.806,0.52,1.74,0.598,2.226,0.598c0.118,0,0.213-0.006,0.279-0.01\r\n\tc0,0-0.154,1.004,0.59,1.996H6.532c-1.289,0-5.493,0.269-5.493,3.727c0,3.516,3.861,3.695,4.636,3.695\r\n\tc0.061,0,0.097-0.002,0.097-0.002c0.008,0,0.063,0.002,0.158,0.002c0.497,0,1.782-0.062,2.975-0.643\r\n\tc1.548-0.75,2.333-2.059,2.333-3.885c0-1.764-1.196-2.814-2.069-3.582c-0.533-0.469-0.994-0.873-0.994-1.266\r\n\tc0-0.4,0.337-0.701,0.762-1.082c0.689-0.615,1.339-1.492,1.339-3.15c0-1.457-0.189-2.436-1.354-3.057\r\n\tc0.121-0.062,0.551-0.107,0.763-0.137c0.631-0.086,1.554-0.184,1.554-0.699V1.2H6.64C6.594,1.202,1.989,1.372,1.989,5.589z\r\n\t M9.413,14.602c0.088,1.406-1.115,2.443-2.922,2.574c-1.835,0.135-3.345-0.691-3.433-2.096c-0.043-0.676,0.254-1.336,0.835-1.863\r\n\tc0.589-0.533,1.398-0.863,2.278-0.928c0.104-0.006,0.207-0.012,0.31-0.012C8.18,12.278,9.33,13.276,9.413,14.602z M8.212,4.626\r\n\tc0.451,1.588-0.23,3.246-1.316,3.553C6.771,8.214,6.643,8.231,6.512,8.231c-0.994,0-1.979-1.006-2.345-2.393\r\n\tC3.963,5.062,3.98,4.38,4.214,3.726c0.229-0.645,0.643-1.078,1.163-1.225c0.125-0.035,0.254-0.053,0.385-0.053\r\n\tC6.962,2.448,7.734,2.946,8.212,4.626z M16,8V5h-2v3h-3v2h3v3h2v-3h3V8H16z" + } + }] +}; +exports.googlePlus = googlePlus; \ No newline at end of file diff --git a/dist/entypo/graph.js b/dist/entypo/graph.js new file mode 100644 index 000000000..2c5407c25 --- /dev/null +++ b/dist/entypo/graph.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.graph = void 0; +var graph = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M20,2v16H0.32c-0.318,0-0.416-0.209-0.216-0.465l4.469-5.748c0.199-0.256,0.553-0.283,0.789-0.062l1.419,1.334\r\n\tc0.235,0.221,0.572,0.178,0.747-0.096l3.047-4.74c0.175-0.273,0.509-0.312,0.741-0.09l2.171,2.096c0.232,0.225,0.559,0.18,0.724-0.1\r\n\tl5.133-7.785C19.51,2.062,19.75,2,20,2z" + } + }] +}; +exports.graph = graph; \ No newline at end of file diff --git a/dist/entypo/grid.js b/dist/entypo/grid.js new file mode 100644 index 000000000..5f59dfc8b --- /dev/null +++ b/dist/entypo/grid.js @@ -0,0 +1,18 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.grid = void 0; +var grid = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M8,4H5C4.447,4,4,4.447,4,5v3c0,0.552,0.447,1,1,1h3c0.553,0,1-0.448,1-1V5\r\n\tC9,4.448,8.553,4,8,4z M15,4h-3c-0.553,0-1,0.447-1,1v3c0,0.552,0.447,1,1,1h3c0.553,0,1-0.448,1-1V5C16,4.448,15.553,4,15,4z M8,11\r\n\tH5c-0.553,0-1,0.447-1,1v3c0,0.552,0.447,1,1,1h3c0.553,0,1-0.448,1-1v-3C9,11.448,8.553,11,8,11z M15,11h-3c-0.553,0-1,0.447-1,1v3\r\n\tc0,0.552,0.447,1,1,1h3c0.553,0,1-0.448,1-1v-3C16,11.448,15.553,11,15,11z" + } + }] +}; +exports.grid = grid; \ No newline at end of file diff --git a/dist/entypo/grooveshark.js b/dist/entypo/grooveshark.js new file mode 100644 index 000000000..1590b5631 --- /dev/null +++ b/dist/entypo/grooveshark.js @@ -0,0 +1,14 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.grooveshark = void 0; +var grooveshark = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "g", + "attribs": {} + }] +}; +exports.grooveshark = grooveshark; \ No newline at end of file diff --git a/dist/entypo/hand.js b/dist/entypo/hand.js new file mode 100644 index 000000000..d039800e8 --- /dev/null +++ b/dist/entypo/hand.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.hand = void 0; +var hand = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M17.924,17.315c-0.057,0.174-0.193,0.367-0.416,0.432c-0.161,0.047-5.488,1.59-5.652,1.633\r\n\tc-0.469,0.125-0.795,0.033-1.009-0.156c-0.326-0.287-4.093-2.85-8.845-3.092c-0.508-0.025-0.259-1.951,1.193-1.951\r\n\tc0.995,0,3.904,0.723,4.255,0.371c0.271-0.272,0.394-1.879-0.737-4.683l0,0L4.438,4.232C4.222,3.697,4.482,3.089,5.016,2.873\r\n\tc0.535-0.216,1.145,0.043,1.359,0.578c0,0,1.791,4.438,1.986,4.919c0.193,0.48,0.431,0.662,0.69,0.562\r\n\tC9.282,8.844,9.33,8.69,9.19,8.223L7.144,2.195C6.958,1.649,7.25,1.057,7.796,0.871c0.547-0.187,1.141,0.106,1.325,0.652\r\n\tl1.946,5.732c0.172,0.504,0.354,0.768,0.642,0.646c0.173-0.073,0.161-0.338,0.115-0.569l-1.366-5.471\r\n\tc-0.14-0.561,0.201-1.127,0.761-1.267c0.56-0.139,1.125,0.2,1.266,0.761l1.26,5.042c0.184,0.741,0.353,1.008,0.646,0.935\r\n\tc0.299-0.073,0.285-0.319,0.244-0.522c-0.095-0.475-0.872-4.328-0.872-4.328c-0.103-0.515,0.23-1.015,0.744-1.118\r\n\tc0.513-0.103,1.014,0.23,1.116,0.743l0.948,4.711l0.001,0.001c0,0,0,0,0,0.001l0.568,2.825c0.124,0.533,0.266,1.035,0.45,1.527\r\n\tC18.675,14.061,18.109,16.736,17.924,17.315z" + } + }] +}; +exports.hand = hand; \ No newline at end of file diff --git a/dist/entypo/hangouts.js b/dist/entypo/hangouts.js new file mode 100644 index 000000000..71e977793 --- /dev/null +++ b/dist/entypo/hangouts.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.hangouts = void 0; +var hangouts = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,0C5.25,0,1.4,3.806,1.4,8.5C1.4,13.194,5.25,17,10,17v3c3.368-1.672,8.6-5.305,8.6-11.5C18.6,3.806,14.75,0,10,0z\r\n\t M9,9.741c0,1.328-1.021,2.422-2.32,2.538c-0.123,0.011-0.228-0.088-0.228-0.211v-0.852c0-0.106,0.079-0.194,0.184-0.21\r\n\tC7.167,10.93,7.573,10.519,7.683,10H5.732C5.328,10,5,9.672,5,9.268V6.732C5,6.328,5.328,6,5.732,6h2.536C8.672,6,9,6.328,9,6.732\r\n\tV9.741z M15,9.741c0,1.328-1.021,2.422-2.32,2.538c-0.123,0.011-0.228-0.088-0.228-0.211v-0.852c0-0.106,0.079-0.194,0.184-0.21\r\n\tc0.531-0.077,0.937-0.487,1.047-1.006h-1.951C11.328,10,11,9.672,11,9.268V6.732C11,6.328,11.328,6,11.732,6h2.536\r\n\tC14.672,6,15,6.328,15,6.732V9.741z" + } + }] +}; +exports.hangouts = hangouts; \ No newline at end of file diff --git a/dist/entypo/happy.js b/dist/entypo/happy.js new file mode 100644 index 000000000..11b077929 --- /dev/null +++ b/dist/entypo/happy.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.happy = void 0; +var happy = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,0.4C4.698,0.4,0.4,4.698,0.4,10C0.4,15.302,4.698,19.6,10,19.6c5.301,0,9.6-4.298,9.6-9.601\r\n\tC19.6,4.698,15.301,0.4,10,0.4z M10,17.599c-4.197,0-7.6-3.402-7.6-7.6S5.802,2.4,10,2.4c4.197,0,7.601,3.402,7.601,7.6\r\n\tS14.197,17.599,10,17.599z M7.501,9.75C8.329,9.75,9,8.967,9,8s-0.672-1.75-1.5-1.75s-1.5,0.783-1.5,1.75S6.672,9.75,7.501,9.75z\r\n\t M12.5,9.75C13.329,9.75,14,8.967,14,8s-0.672-1.75-1.5-1.75S11,7.034,11,8S11.672,9.75,12.5,9.75z M14.341,11.336\r\n\tc-0.363-0.186-0.815-0.043-1.008,0.32c-0.034,0.066-0.869,1.593-3.332,1.593c-2.451,0-3.291-1.513-3.333-1.592\r\n\tc-0.188-0.365-0.632-0.514-1.004-0.329c-0.37,0.186-0.52,0.636-0.335,1.007c0.05,0.099,1.248,2.414,4.672,2.414\r\n\tc3.425,0,4.621-2.316,4.67-2.415C14.855,11.967,14.707,11.524,14.341,11.336z" + } + }] +}; +exports.happy = happy; \ No newline at end of file diff --git a/dist/entypo/heart.js b/dist/entypo/heart.js new file mode 100644 index 000000000..0af23d511 --- /dev/null +++ b/dist/entypo/heart.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.heart = void 0; +var heart = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M17.19,4.155c-1.672-1.534-4.383-1.534-6.055,0L10,5.197L8.864,4.155c-1.672-1.534-4.382-1.534-6.054,0\r\n\tc-1.881,1.727-1.881,4.52,0,6.246L10,17l7.19-6.599C19.07,8.675,19.07,5.881,17.19,4.155z" + } + }] +}; +exports.heart = heart; \ No newline at end of file diff --git a/dist/entypo/help.js b/dist/entypo/help.js new file mode 100644 index 000000000..73bd616a5 --- /dev/null +++ b/dist/entypo/help.js @@ -0,0 +1,14 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.help = void 0; +var help = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "g", + "attribs": {} + }] +}; +exports.help = help; \ No newline at end of file diff --git a/dist/entypo/home.js b/dist/entypo/home.js new file mode 100644 index 000000000..4756952b3 --- /dev/null +++ b/dist/entypo/home.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.home = void 0; +var home = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.672,11H17v6c0,0.445-0.194,1-1,1h-4v-6H8v6H4c-0.806,0-1-0.555-1-1v-6H1.328c-0.598,0-0.47-0.324-0.06-0.748L9.292,2.22\r\n\tC9.487,2.018,9.743,1.918,10,1.908c0.257,0.01,0.513,0.109,0.708,0.312l8.023,8.031C19.142,10.676,19.27,11,18.672,11z" + } + }] +}; +exports.home = home; \ No newline at end of file diff --git a/dist/entypo/horizontalMiddle.js b/dist/entypo/horizontalMiddle.js new file mode 100644 index 000000000..321741572 --- /dev/null +++ b/dist/entypo/horizontalMiddle.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.horizontalMiddle = void 0; +var horizontalMiddle = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M8,10L5,7v2H1v2h4v2L8,10z M15,13v-2h4V9h-4V7l-3,3L15,13z M10,18c0.553,0,1-0.049,1-0.6V2.6C11,2.047,10.553,2,10,2\r\n\tC9.448,2,9,2.047,9,2.6V17.4C9,17.951,9.448,18,10,18z" + } + }] +}; +exports.horizontalMiddle = horizontalMiddle; \ No newline at end of file diff --git a/dist/entypo/houzz.js b/dist/entypo/houzz.js new file mode 100644 index 000000000..611e0b96b --- /dev/null +++ b/dist/entypo/houzz.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.houzz = void 0; +var houzz = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M4,10l6,3l-6,3V10z M10,7l6,3V4L10,7z M10,20l6-3v-7l-6,3V20z M10,0L4,3v7l6-3V0z" + } + }] +}; +exports.houzz = houzz; \ No newline at end of file diff --git a/dist/entypo/icloud.js b/dist/entypo/icloud.js new file mode 100644 index 000000000..98a1760a2 --- /dev/null +++ b/dist/entypo/icloud.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.icloud = void 0; +var icloud = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10.909,5c1.884,0,3.417,1.598,3.417,3.561c0,0.136-0.012,0.29-0.037,0.484c0,0-0.163,1.262-0.206,1.594\r\n\tc-0.043,0.332,0.186,0.65,0.528,0.653c0.342,0.002,1.65,0.01,1.65,0.01C17.219,11.308,18,12.137,18,13.15\r\n\tc0,1.02-0.785,1.85-1.75,1.85H4.167C2.972,15,2,13.978,2,12.722c0-0.913,0.519-1.735,1.323-2.095c0,0,0.421-0.188,0.651-0.291\r\n\tc0.23-0.103,0.508-0.431,0.516-0.775c0.008-0.344,0.016-0.714,0.016-0.714c0.012-0.535,0.421-0.97,0.91-0.97\r\n\tc0.032,0,0.094,0.006,0.207,0.035c0,0,0.774,0.197,1.039,0.264c0.265,0.067,0.606-0.066,0.73-0.309\r\n\tc0.124-0.243,0.503-0.981,0.503-0.981C8.493,5.723,9.648,5,10.909,5 M10.909,3C8.828,3,7.023,4.207,6.116,5.974\r\n\tC5.891,5.917,5.659,5.878,5.417,5.878c-1.587,0-2.873,1.304-2.91,2.924C1.033,9.461,0,10.966,0,12.722C0,15.085,1.865,17,4.167,17\r\n\tH16.25c2.071,0,3.75-1.724,3.75-3.85c0-2.118-1.667-3.835-3.728-3.848c0.031-0.243,0.053-0.489,0.053-0.741\r\n\tC16.326,5.49,13.901,3,10.909,3L10.909,3z" + } + }] +}; +exports.icloud = icloud; \ No newline at end of file diff --git a/dist/entypo/image.js b/dist/entypo/image.js new file mode 100644 index 000000000..c7da1f70b --- /dev/null +++ b/dist/entypo/image.js @@ -0,0 +1,18 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.image = void 0; +var image = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M19,2H1C0.447,2,0,2.447,0,3v14c0,0.552,0.447,1,1,1h18c0.553,0,1-0.448,1-1V3\r\n\tC20,2.448,19.553,2,19,2z M18,16H2V4h16V16z M14.315,10.877l-3.231,1.605L7.314,6.381L4,14h12L14.315,10.877z M13.25,9\r\n\tc0.69,0,1.25-0.56,1.25-1.25S13.94,6.5,13.25,6.5S12,7.06,12,7.75S12.56,9,13.25,9z" + } + }] +}; +exports.image = image; \ No newline at end of file diff --git a/dist/entypo/images.js b/dist/entypo/images.js new file mode 100644 index 000000000..4cf69c5d9 --- /dev/null +++ b/dist/entypo/images.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.images = void 0; +var images = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.405,2.799C18.293,2.359,17.749,2,17.195,2H2.805c-0.555,0-1.099,0.359-1.21,0.799L1.394,4h17.211L18.405,2.799z\r\n\t M19.412,5H0.587C0.245,5-0.022,5.294,0.01,5.635l0.923,11.669C0.971,17.698,1.303,18,1.699,18H18.3\r\n\tc0.397,0,0.728-0.302,0.766-0.696l0.923-11.669C20.022,5.294,19.754,5,19.412,5z M12.438,8.375c0.518,0,0.938,0.42,0.938,0.938\r\n\tc0,0.518-0.42,0.938-0.938,0.938S11.5,9.83,11.5,9.312C11.5,8.795,11.92,8.375,12.438,8.375z M5.5,14l2.486-5.714l2.827,4.576\r\n\tl2.424-1.204L14.5,14H5.5z" + } + }] +}; +exports.images = images; \ No newline at end of file diff --git a/dist/entypo/inTime.js b/dist/entypo/inTime.js new file mode 100644 index 000000000..e5eae4df0 --- /dev/null +++ b/dist/entypo/inTime.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.inTime = void 0; +var inTime = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M11,1.799c-4.445,0-8.061,3.562-8.169,7.996V10H0.459l3.594,3.894L7.547,10H4.875V9.795C4.982,6.492,7.683,3.85,11,3.85\r\n\tc3.386,0,6.131,2.754,6.131,6.15c0,3.396-2.745,6.15-6.131,6.15c-1.357,0-2.611-0.445-3.627-1.193l-1.406,1.504\r\n\tc1.388,1.088,3.135,1.738,5.033,1.738c4.515,0,8.174-3.67,8.174-8.199S15.515,1.799,11,1.799z M10,5v5\r\n\tc0,0.13,0.027,0.26,0.077,0.382c0.051,0.122,0.124,0.233,0.216,0.325l3.2,3.2c0.283-0.183,0.55-0.389,0.787-0.628L12,11V5H10z" + } + }] +}; +exports.inTime = inTime; \ No newline at end of file diff --git a/dist/entypo/inbox.js b/dist/entypo/inbox.js new file mode 100644 index 000000000..6fe8ee240 --- /dev/null +++ b/dist/entypo/inbox.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.inbox = void 0; +var inbox = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M19.253,9.542c-0.388-0.416-2.265-2.271-3.122-3.118C15.868,6.165,15.492,6,15.098,6H4.902c-0.394,0-0.77,0.165-1.033,0.424\r\n\tC3.011,7.271,1.135,9.125,0.747,9.542c-0.485,0.521-0.723,0.902-0.624,1.449s0.466,2.654,0.556,3.074\r\n\tC0.767,14.484,1.363,15,1.919,15h16.162c0.556,0,1.152-0.516,1.241-0.935c0.089-0.42,0.457-2.527,0.556-3.074\r\n\tS19.739,10.062,19.253,9.542z M14.014,10.003c-0.101,0-0.193,0.052-0.238,0.133L12.966,12H7.034l-0.809-1.864\r\n\tc-0.045-0.081-0.137-0.133-0.238-0.133H2.473L4.495,8h11.01l2.023,2.003H14.014z" + } + }] +}; +exports.inbox = inbox; \ No newline at end of file diff --git a/dist/entypo/index.js b/dist/entypo/index.js new file mode 100644 index 000000000..f62b28f9c --- /dev/null +++ b/dist/entypo/index.js @@ -0,0 +1,3352 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.fastBackward = exports.facebook = exports.eye = exports.exportIcon = exports.evernote = exports.eraser = exports.erase = exports.empty = exports.email = exports.edit = exports.dropbox = exports.drop = exports.drive = exports.drink = exports.dribbble = exports.download = exports.down = exports.documents = exports.documentInverted = exports.document = exports.direction = exports.database = exports.cycle = exports.cw = exports.cup = exports.cross = exports.crop = exports.credit = exports.copy = exports.controller = exports.cone = exports.computer = exports.compass = exports.commonsSharealike = exports.commonsShare = exports.commonsRemix = exports.commonsPublicDomain = exports.commonsNoncommercialUs = exports.commonsNoncommercialEu = exports.commonsNoderivs = exports.commonsAttribution = exports.commons = exports.colours = exports.cog = exports.code = exports.club = exports.cloud = exports.clock = exports.clipboard = exports.clapperboard = exports.circle = exports.check = exports.chat = exports.chart = exports.ccw = exports.cascade = exports.cart = exports.card = exports.cap = exports.camera = exports.calendar = exports.calculator = exports.cake = exports.bulb = exports.bug = exports.bucket = exports.brush = exports.browser = exports.briefcase = exports.branch = exports.box = exports.bowl = exports.bottom = exports.bookmarks = exports.bookmark = exports.book = exports.boldUp = exports.boldRight = exports.boldLeft = exports.boldDown = exports.block = exports.blackboard = exports.bell = exports.behance = exports.battery = exports.basket = exports.basecamp = exports.baidu = exports.bag = exports.back = exports.attachment = exports.arrows = exports.archive = exports.alternitive = exports.alternative = exports.all = exports.aircraft = exports.air = exports.adjust = exports.address = void 0; +exports.one = exports.off = exports.notification = exports.note = exports.next = exports.newsletter = exports.news = exports.newIcon = exports.neutral = exports.network = exports.mute = exports.music = exports.mouse = exports.moon = exports.mobileCombo = exports.mobile = exports.mixi = exports.mix = exports.minus = exports.mic = exports.message = exports.merge = exports.menu = exports.megaphone = exports.medium = exports.medal = exports.mask = exports.map = exports.man = exports.mail = exports.magnet = exports.loop = exports.longUp = exports.longRight = exports.longLeft = exports.longDown = exports.login = exports.lock = exports.location = exports.list = exports.linkedin = exports.link = exports.line = exports.lifebuoy = exports.left = exports.leaf = exports.layers = exports.lastfm = exports.laptop = exports.language = exports.landscape = exports.landline = exports.landing = exports.keyboard = exports.key = exports.jumpToStart = exports.inverted = exports.install = exports.instagram = exports.info = exports.infinity = exports.inbox = exports.inTime = exports.images = exports.image = exports.icloud = exports.houzz = exports.horizontalMiddle = exports.home = exports.help = exports.heart = exports.happy = exports.hangouts = exports.hand = exports.grooveshark = exports.grid = exports.graph = exports.googlePlus = exports.globe = exports.glass = exports.github = exports.gauge = exports.funnel = exports.fullScreen = exports.full = exports.foursquare = exports.forward = exports.folder = exports.flower = exports.flirt = exports.flickr = exports.flattr = exports.flask = exports.flashlight = exports.flash = exports.flag = exports.fiveHundredPX = exports.fingerprint = exports.feather = exports.fastForward = void 0; +exports.unread = exports.uninstall = exports.typing = exports.twoVertical = exports.twoHorizontal = exports.two = exports.twitter = exports.tv = exports.tumblr = exports.trophy = exports.tripadvisor = exports.tree = exports.trash = exports.top = exports.tools = exports.toList = exports.toCloud = exports.ticket = exports.threeVertical = exports.threeHorizontal = exports.thinUp = exports.thinRight = exports.thinLeft = exports.thinDown = exports.thermometer = exports.text = exports.takeOff = exports.tag = exports.tablet = exports.switchIcon = exports.sweden = exports.swarm = exports.swap = exports.suitcase = exports.stumbleupon = exports.store = exports.stopwatch = exports.stop = exports.star = exports.spreadsheet = exports.spotify = exports.soundcloud = exports.sound = exports.smashing = exports.smallUp = exports.smallRight = exports.smallLeft = exports.smallDown = exports.slot = exports.slideshare = exports.skype = exports.single = exports.signal = exports.shuffle = exports.shop = exports.shield = exports.shareable = exports.share = exports.scribd = exports.scissors = exports.save = exports.sad = exports.ruler = exports.rss = exports.rocket = exports.right = exports.ribbon = exports.retweet = exports.reply = exports.renren = exports.record = exports.rdio = exports.rainbow = exports.raft = exports.radio = exports.quote = exports.qq = exports.publish = exports.print = exports.popup = exports.pointer = exports.plus = exports.plug = exports.play = exports.plane = exports.pinterest = exports.pin = exports.picasa = exports.phone = exports.pencil = exports.paypal = exports.paus = exports.parallel = exports.palette = exports.pad = exports.outlined = exports.out = exports.open = exports.onedrive = exports.oneHundredPercent = void 0; +exports.youtube = exports.youko = exports.yelp = exports.xing = exports.withPlus = exports.withMinus = exports.withLine = exports.withCross = exports.withCircleUp = exports.withCircleRight = exports.withCircleLeft = exports.withCircleDown = exports.withCircle = exports.weibo = exports.water = exports.warning = exports.wallet = exports.volume = exports.voicemail = exports.vk = exports.vinyl = exports.vine = exports.vimeo = exports.video = exports.verticalMiddle = exports.users = exports.user = exports.upload = exports.up = exports.untag = void 0; +var toList = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M19.4,9H16V5.6C16,5,15.6,5,15,5s-1,0-1,0.6V9h-3.4C10,9,10,9.4,10,10s0,1,0.6,1H14v3.4c0,0.6,0.4,0.6,1,0.6s1,0,1-0.6V11\r\n\th3.4c0.6,0,0.6-0.4,0.6-1S20,9,19.4,9z M7.4,9H0.6C0,9,0,9.4,0,10s0,1,0.6,1h6.8C8,11,8,10.6,8,10S8,9,7.4,9z M7.4,14H0.6\r\n\tC0,14,0,14.4,0,15s0,1,0.6,1h6.8C8,16,8,15.6,8,15S8,14,7.4,14z M7.4,4H0.6C0,4,0,4.4,0,5s0,1,0.6,1h6.8C8,6,8,5.6,8,5S8,4,7.4,4z" + } + }] +}; +exports.toList = toList; +var user = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M15.989,19.129C16,17,13.803,15.74,11.672,14.822c-2.123-0.914-2.801-1.684-2.801-3.334c0-0.989,0.648-0.667,0.932-2.481\r\n\tc0.12-0.752,0.692-0.012,0.802-1.729c0-0.684-0.313-0.854-0.313-0.854s0.159-1.013,0.221-1.793c0.064-0.817-0.398-2.56-2.301-3.095\r\n\tC7.88,1.195,7.655,0.654,8.679,0.112c-2.24-0.104-2.761,1.068-3.954,1.93c-1.015,0.756-1.289,1.953-1.24,2.59\r\n\tc0.065,0.78,0.223,1.793,0.223,1.793s-0.314,0.17-0.314,0.854c0.11,1.718,0.684,0.977,0.803,1.729\r\n\tC4.481,10.822,5.13,10.5,5.13,11.489c0,1.65-0.212,2.21-2.336,3.124C0.663,15.53,0,17,0.011,19.129C0.014,19.766,0,20,0,20h16\r\n\tC16,20,15.986,19.766,15.989,19.129z M17,10V7h-2v3h-3v2h3v3h2v-3h3v-2H17z" + } + }] +}; +exports.user = user; +var address = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M19.799,5.165l-2.375-1.83c-0.135-0.093-0.324-0.176-0.521-0.237C16.705,3.037,16.5,3,16.336,3H9.5l0.801,5h6.035\r\n\tc0.164,0,0.369-0.037,0.566-0.098s0.387-0.145,0.521-0.236l2.375-1.832C19.933,5.743,20,5.622,20,5.5S19.933,5.257,19.799,5.165z\r\n\t M8.5,1h-1C7.224,1,7,1.224,7,1.5V5H3.664c-0.166,0-0.37,0.037-0.567,0.099C2.899,5.159,2.71,5.242,2.576,5.335l-2.375,1.83\r\n\tC0.066,7.256,0,7.378,0,7.5c0,0.121,0.066,0.242,0.201,0.335l2.375,1.832C2.71,9.758,2.899,9.842,3.097,9.902\r\n\tC3.294,9.963,3.498,10,3.664,10H7v8.5C7,18.776,7.224,19,7.5,19h1C8.776,19,9,18.776,9,18.5v-17C9,1.224,8.776,1,8.5,1z" + } + }] +}; +exports.address = address; +var adjust = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M19,9.199c-0.182,0-0.799,0-0.98,0c-0.553,0-1,0.359-1,0.801c0,0.441,0.447,0.799,1,0.799c0.182,0,0.799,0,0.98,0\r\n\tc0.552,0,1-0.357,1-0.799C20,9.559,19.551,9.199,19,9.199z M10,4.5c-3.051,0-5.5,2.449-5.5,5.5c0,3.051,2.449,5.5,5.5,5.5\r\n\tc3.05,0,5.5-2.449,5.5-5.5C15.5,6.949,13.049,4.5,10,4.5z M10,14c-2.211,0-4-1.791-4-4c0-2.211,1.789-4,4-4V14z M3,10\r\n\tc0-0.441-0.449-0.801-1-0.801c-0.185,0-0.816,0-1,0c-0.553,0-1,0.359-1,0.801c0,0.441,0.447,0.799,1,0.799c0.184,0,0.815,0,1,0\r\n\tC2.551,10.799,3,10.441,3,10z M10,3c0.441,0,0.799-0.447,0.799-1c0-0.184,0-0.816,0-1c0-0.553-0.358-1-0.799-1\r\n\tC9.558,0,9.199,0.447,9.199,1c0,0.184,0,0.816,0,1C9.199,2.553,9.558,3,10,3z M10,17c-0.442,0-0.801,0.447-0.801,1\r\n\tc0,0.184,0,0.816,0,1c0,0.553,0.359,1,0.801,1c0.441,0,0.799-0.447,0.799-1c0-0.184,0-0.816,0-1C10.799,17.447,10.441,17,10,17z\r\n\t M17.365,3.766c0.391-0.391,0.454-0.961,0.142-1.273s-0.883-0.248-1.272,0.143c-0.108,0.107-0.593,0.592-0.7,0.699\r\n\tc-0.391,0.391-0.454,0.961-0.142,1.273s0.883,0.248,1.273-0.143C16.773,4.357,17.257,3.873,17.365,3.766z M3.334,15.533\r\n\tc-0.108,0.109-0.593,0.594-0.7,0.701c-0.391,0.391-0.454,0.959-0.142,1.271s0.883,0.25,1.272-0.141\r\n\tc0.108-0.107,0.593-0.592,0.7-0.699c0.391-0.391,0.454-0.961,0.142-1.274S3.723,15.144,3.334,15.533z M3.765,2.635\r\n\tC3.375,2.244,2.804,2.18,2.492,2.492S2.244,3.375,2.633,3.766c0.108,0.107,0.593,0.592,0.7,0.699\r\n\tc0.391,0.391,0.96,0.455,1.272,0.143s0.249-0.883-0.141-1.273C4.357,3.227,3.873,2.742,3.765,2.635z M15.534,16.666\r\n\tc0.108,0.107,0.593,0.592,0.7,0.699c0.391,0.391,0.96,0.453,1.272,0.143c0.312-0.312,0.249-0.883-0.142-1.273\r\n\tc-0.107-0.107-0.592-0.592-0.699-0.699c-0.391-0.391-0.961-0.455-1.274-0.143S15.143,16.275,15.534,16.666z" + } + }] +}; +exports.adjust = adjust; +var air = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M2.643,6.357c1.747-1.5,3.127-2.686,6.872-0.57c1.799,1.016,3.25,1.4,4.457,1.398c2.115,0,3.486-1.176,4.671-2.193\r\n\tc0.423-0.363,0.477-1.008,0.122-1.439c-0.357-0.432-0.987-0.488-1.41-0.125c-1.746,1.502-3.127,2.688-6.872,0.57\r\n\tC5.535,1.205,3.217,3.195,1.355,4.795C0.933,5.158,0.879,5.801,1.234,6.234C1.59,6.664,2.22,6.721,2.643,6.357z M17.355,8.535\r\n\tc-1.746,1.5-3.127,2.688-6.872,0.57C5.535,6.31,3.217,8.301,1.355,9.9c-0.422,0.363-0.477,1.008-0.121,1.439\r\n\tc0.355,0.432,0.986,0.488,1.409,0.125C4.39,9.963,5.77,8.777,9.515,10.892c1.799,1.018,3.25,1.4,4.457,1.4\r\n\tc2.115,0,3.486-1.176,4.671-2.195c0.423-0.363,0.477-1.008,0.122-1.438C18.409,8.226,17.778,8.172,17.355,8.535z M17.355,13.641\r\n\tc-1.746,1.502-3.127,2.688-6.872,0.572c-4.948-2.795-7.266-0.805-9.128,0.795c-0.422,0.363-0.477,1.008-0.121,1.439\r\n\tc0.355,0.432,0.986,0.486,1.409,0.123C4.39,15.07,5.77,13.885,9.515,16c1.799,1.016,3.25,1.4,4.457,1.4\r\n\tc2.115,0,3.486-1.178,4.671-2.195c0.423-0.363,0.477-1.008,0.122-1.439C18.409,13.334,17.778,13.279,17.355,13.641z" + } + }] +}; +exports.air = air; +var landing = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.752,16.038c-0.097,0.266-0.822,1.002-6.029-0.878l-5.105-1.843C5.841,12.676,3.34,11.668,2.36,11.1\r\n\tc-0.686-0.397-0.836-1.282-0.836-1.282S1.361,6.862,1.261,6.134c-0.1-0.728,0.095-0.853,0.796-0.492\r\n\tc0.436,0.225,1.865,2.562,2.464,3.567C6.033,9.59,7.383,9.97,8.014,10.158C7.757,8.441,7.274,5.23,7.101,4.225\r\n\tC6.935,3.262,7.651,3.69,7.651,3.69c0.331,0.19,0.983,0.661,1.206,1.002c1.522,2.326,3.672,6.6,3.836,6.928\r\n\tc0.896,0.28,2.277,0.733,3.102,1.03C17.951,13.429,18.882,15.684,18.752,16.038z" + } + }] +}; +exports.landing = landing; +var takeOff = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M19.87,6.453c0.119,0.257,0.127,1.29-4.884,3.642l-4.913,2.306c-1.71,0.803-4.191,1.859-5.285,2.151\r\n\tc-0.766,0.204-1.497-0.316-1.497-0.316s-2.206-1.975-2.792-2.419c-0.585-0.444-0.535-0.67,0.215-0.91\r\n\tc0.467-0.149,3.13,0.493,4.265,0.78c1.339-0.8,2.562-1.486,3.141-1.798c-1.396-1.033-4.008-2.962-4.841-3.55\r\n\tc-0.799-0.565,0.01-0.768,0.01-0.768c0.368-0.099,1.162-0.228,1.562-0.144c2.721,0.569,7.263,2.071,7.611,2.186\r\n\tc0.832-0.436,2.128-1.092,2.922-1.465C17.459,5.174,19.711,6.111,19.87,6.453z" + } + }] +}; +exports.takeOff = takeOff; +var aircraft = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M12.496,17.414c-0.394-1.096-1.805-4.775-2.39-6.297c-1.103,0.737-2.334,1.435-3.512,1.928\r\n\tc-0.366,1.28-1.094,3.709-1.446,4.033c-0.604,0.557-0.832,0.485-0.925-0.279c-0.093-0.764-0.485-3.236-0.485-3.236\r\n\ts-2.162-1.219-2.84-1.568s-0.667-0.591,0.057-0.974c0.422-0.223,2.927-0.085,4.242,0.005c0.861-0.951,1.931-1.882,2.993-2.679\r\n\tC6.975,7.271,4.04,4.672,3.156,3.923C2.38,3.265,3.235,3.126,3.235,3.126c0.39-0.07,1.222-0.132,1.628-0.009\r\n\tc2.524,0.763,6.442,2.068,7.363,2.376c0.353-0.249,0.737-0.52,1.162-0.821c4.702-3.33,5.887-2.593,6.111-2.27\r\n\ts0.503,1.701-4.199,5.032c-0.425,0.301-0.808,0.573-1.16,0.823c-0.029,0.98-0.157,5.151-0.311,7.811\r\n\tc-0.025,0.428-0.367,1.198-0.565,1.544C13.263,17.612,12.841,18.377,12.496,17.414z" + } + }] +}; +exports.aircraft = aircraft; +var bottom = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M13,11h-2V3H9v8H7l3,3L13,11z M17.4,15H2.6C2.048,15,2,15.447,2,16c0,0.553,0.048,1,0.6,1H17.4c0.552,0,0.6-0.447,0.6-1\r\n\tC18,15.447,17.952,15,17.4,15z" + } + }] +}; +exports.bottom = bottom; +var horizontalMiddle = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M8,10L5,7v2H1v2h4v2L8,10z M15,13v-2h4V9h-4V7l-3,3L15,13z M10,18c0.553,0,1-0.049,1-0.6V2.6C11,2.047,10.553,2,10,2\r\n\tC9.448,2,9,2.047,9,2.6V17.4C9,17.951,9.448,18,10,18z" + } + }] +}; +exports.horizontalMiddle = horizontalMiddle; +var left = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M6,10l3,3v-2h8V9H9V7L6,10z M4,2C3.447,2,3,2.047,3,2.6V17.4C3,17.951,3.447,18,4,18c0.552,0,1-0.049,1-0.6V2.6\r\n\tC5,2.047,4.552,2,4,2z" + } + }] +}; +exports.left = left; +var right = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M11,7v2H3v2h8v2l3-3L11,7z M15,2.6V17.4c0,0.551,0.448,0.6,1,0.6c0.553,0,1-0.049,1-0.6V2.6C17,2.047,16.553,2,16,2\r\n\tC15.448,2,15,2.047,15,2.6z" + } + }] +}; +exports.right = right; +var top = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,6L7,9h2v8h2V9h2L10,6z M18,4c0-0.553-0.048-1-0.6-1H2.6C2.048,3,2,3.447,2,4c0,0.553,0.048,1,0.6,1H17.4\r\n\tC17.952,5,18,4.553,18,4z" + } + }] +}; +exports.top = top; +var verticalMiddle = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,12l-3,3h2v4h2v-4h2L10,12z M13,5h-2V1H9v4H7l3,3L13,5z M18,10c0-0.553-0.048-1-0.6-1H2.6C2.048,9,2,9.447,2,10\r\n\tc0,0.551,0.048,1,0.6,1H17.4C17.952,11,18,10.551,18,10z" + } + }] +}; +exports.verticalMiddle = verticalMiddle; +var archive = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M13.981,2H6.018c0,0-0.996,0-0.996,1h9.955C14.977,2,13.981,2,13.981,2z M16.968,5c0-1-0.995-1-0.995-1H4.027\r\n\tc0,0-0.995,0-0.995,1v1h13.936V5z M18.958,6C18.37,5.408,18.37,5.408,18.37,5.408V7H1.63V5.408c0,0,0,0-0.589,0.592\r\n\tC0.452,6.592,0.03,6.75,0.267,8c0.236,1.246,1.379,8.076,1.549,9c0.186,1.014,1.217,1,1.217,1h13.936c0,0,1.03,0.014,1.217-1\r\n\tc0.17-0.924,1.312-7.754,1.549-9C19.97,6.75,19.548,6.592,18.958,6z M14,11.997C14,12.551,13.551,13,12.997,13H7.003\r\n\tC6.449,13,6,12.551,6,11.997V10h1v2h6v-2h1V11.997z" + } + }] +}; +exports.archive = archive; +var graph = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M20,2v16H0.32c-0.318,0-0.416-0.209-0.216-0.465l4.469-5.748c0.199-0.256,0.553-0.283,0.789-0.062l1.419,1.334\r\n\tc0.235,0.221,0.572,0.178,0.747-0.096l3.047-4.74c0.175-0.273,0.509-0.312,0.741-0.09l2.171,2.096c0.232,0.225,0.559,0.18,0.724-0.1\r\n\tl5.133-7.785C19.51,2.062,19.75,2,20,2z" + } + }] +}; +exports.graph = graph; +var boldDown = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M2.5,10H6V3h8v7h3.5L10,17.5L2.5,10z" + } + }] +}; +exports.boldDown = boldDown; +var boldLeft = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,2.5V6h7v8h-7v3.5L2.5,10L10,2.5z" + } + }] +}; +exports.boldLeft = boldLeft; +var boldRight = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M17.5,10L10,17.5V14H3V6h7V2.5L17.5,10z" + } + }] +}; +exports.boldRight = boldRight; +var boldUp = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,2.5l7.5,7.5H14v7H6v-7H2.5L10,2.5z" + } + }] +}; +exports.boldUp = boldUp; +var down = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,17.5L3.5,11H7V3h6v8h3.5L10,17.5z" + } + }] +}; +exports.down = down; +var longDown = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,19.25L4.5,14H8V1h4v13h3.5L10,19.25z" + } + }] +}; +exports.longDown = longDown; +var longLeft = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M0.75,10L6,4.5V8h13v4H6v3.5L0.75,10z" + } + }] +}; +exports.longLeft = longLeft; +var longRight = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M14,15.5V12H1V8h13V4.5l5.25,5.5L14,15.5z" + } + }] +}; +exports.longRight = longRight; +var longUp = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,0.75L15.5,6H12v13H8V6H4.5L10,0.75z" + } + }] +}; +exports.longUp = longUp; +var up = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,2.5L16.5,9H13v8H7V9H3.5L10,2.5z" + } + }] +}; +exports.up = up; +var withCircleDown = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,0.4c-5.303,0-9.601,4.298-9.601,9.6c0,5.303,4.298,9.601,9.601,9.601c5.301,0,9.6-4.298,9.6-9.601\r\n\tC19.6,4.698,15.301,0.4,10,0.4z M9.999,17.6c-4.197,0-7.6-3.402-7.6-7.6s3.402-7.6,7.6-7.6S17.6,5.803,17.6,10\r\n\tS14.196,17.6,9.999,17.6z M12,6H8v4H5.5l4.5,4.5l4.5-4.5H12V6z" + } + }] +}; +exports.withCircleDown = withCircleDown; +var withCircleLeft = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,0.4c-5.303,0-9.601,4.298-9.601,9.6c0,5.303,4.298,9.601,9.601,9.601c5.301,0,9.6-4.298,9.6-9.601\r\n\tC19.6,4.698,15.301,0.4,10,0.4z M9.999,17.6c-4.197,0-7.6-3.402-7.6-7.6s3.402-7.6,7.6-7.6S17.6,5.803,17.6,10\r\n\tS14.196,17.6,9.999,17.6z M10,5.5L5.5,10l4.5,4.5V12h4V8h-4V5.5z" + } + }] +}; +exports.withCircleLeft = withCircleLeft; +var withCircleRight = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,0.4c-5.303,0-9.601,4.298-9.601,9.6c0,5.303,4.298,9.601,9.601,9.601c5.301,0,9.6-4.298,9.6-9.601\r\n\tC19.6,4.698,15.301,0.4,10,0.4z M9.999,17.6c-4.197,0-7.6-3.402-7.6-7.6s3.402-7.6,7.6-7.6S17.6,5.803,17.6,10\r\n\tS14.196,17.6,9.999,17.6z M10,8H6v4h4v2.5l4.5-4.5L10,5.5V8z" + } + }] +}; +exports.withCircleRight = withCircleRight; +var withCircleUp = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,0.4c-5.303,0-9.601,4.298-9.601,9.6c0,5.303,4.298,9.601,9.601,9.601c5.301,0,9.6-4.298,9.6-9.601\r\n\tC19.6,4.698,15.301,0.4,10,0.4z M9.999,17.6c-4.197,0-7.6-3.402-7.6-7.6s3.402-7.6,7.6-7.6S17.6,5.803,17.6,10\r\n\tS14.196,17.6,9.999,17.6z M10,5.5l4.5,4.5H12v4H8v-4H5.5L10,5.5z" + } + }] +}; +exports.withCircleUp = withCircleUp; +var attachment = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M5.602,19.8c-1.293,0-2.504-0.555-3.378-1.44c-1.695-1.716-2.167-4.711,0.209-7.116c1.391-1.408,6.966-7.053,9.748-9.87\r\n\tc0.988-1,2.245-1.387,3.448-1.06c1.183,0.32,2.151,1.301,2.468,2.498c0.322,1.22-0.059,2.493-1.046,3.493l-9.323,9.44\r\n\tc-0.532,0.539-1.134,0.858-1.738,0.922c-0.599,0.064-1.17-0.13-1.57-0.535c-0.724-0.736-0.828-2.117,0.378-3.337l6.548-6.63\r\n\tc0.269-0.272,0.705-0.272,0.974,0s0.269,0.714,0,0.986l-6.549,6.631c-0.566,0.572-0.618,1.119-0.377,1.364\r\n\tC5.5,15.252,5.66,15.301,5.845,15.28c0.283-0.029,0.606-0.216,0.909-0.521l9.323-9.439c0.64-0.648,0.885-1.41,0.69-2.145\r\n\tc-0.192-0.725-0.778-1.318-1.493-1.513c-0.726-0.197-1.48,0.052-2.12,0.7c-2.782,2.818-8.356,8.462-9.748,9.87\r\n\tc-1.816,1.839-1.381,3.956-0.209,5.143c1.173,1.187,3.262,1.629,5.079-0.212l9.748-9.87c0.269-0.272,0.705-0.272,0.974,0\r\n\tc0.269,0.272,0.269,0.714,0,0.987L9.25,18.15C8.101,19.312,6.814,19.8,5.602,19.8z" + } + }] +}; +exports.attachment = attachment; +var ribbon = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M16.574,16.338c-0.757-1.051-2.851-3.824-4.57-6.106c0.696-0.999,1.251-1.815,1.505-2.242\r\n\tc1.545-2.594,0.874-4.26,0.022-5.67C12.677,0.909,12.542,0.094,10,0.094c-2.543,0-2.678,0.815-3.531,2.227\r\n\tC5.615,3.731,4.945,5.397,6.49,7.991c0.254,0.426,0.809,1.243,1.506,2.242c-1.72,2.281-3.814,5.055-4.571,6.106\r\n\tc-0.176,0.244-0.16,0.664,0.009,1.082c0.13,0.322,0.63,1.762,0.752,2.064c0.156,0.389,0.664,0.67,1.082,0.092\r\n\tc0.241-0.334,2.582-3.525,4.732-6.522c2.149,2.996,4.491,6.188,4.732,6.522c0.417,0.578,0.926,0.297,1.082-0.092\r\n\tc0.122-0.303,0.622-1.742,0.752-2.064C16.733,17.002,16.75,16.582,16.574,16.338z M9.634,7.063C8.566,5.579,7.802,3.852,7.802,3.852\r\n\tS8.222,3.094,10,3.094c1.778,0,2.198,0.758,2.198,0.758s-0.766,1.727-1.833,3.211C10.277,7.184,10.147,7.36,10,7.56\r\n\tC9.851,7.36,9.721,7.184,9.634,7.063z" + } + }] +}; +exports.ribbon = ribbon; +var inTime = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M11,1.799c-4.445,0-8.061,3.562-8.169,7.996V10H0.459l3.594,3.894L7.547,10H4.875V9.795C4.982,6.492,7.683,3.85,11,3.85\r\n\tc3.386,0,6.131,2.754,6.131,6.15c0,3.396-2.745,6.15-6.131,6.15c-1.357,0-2.611-0.445-3.627-1.193l-1.406,1.504\r\n\tc1.388,1.088,3.135,1.738,5.033,1.738c4.515,0,8.174-3.67,8.174-8.199S15.515,1.799,11,1.799z M10,5v5\r\n\tc0,0.13,0.027,0.26,0.077,0.382c0.051,0.122,0.124,0.233,0.216,0.325l3.2,3.2c0.283-0.183,0.55-0.389,0.787-0.628L12,11V5H10z" + } + }] +}; +exports.inTime = inTime; +var back = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M19,7v6c0,1.103-0.896,2-2,2H3v-3h13V8H5v2L1,6.5L5,3v2h12C18.104,5,19,5.896,19,7z" + } + }] +}; +exports.back = back; +var battery = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M15.408,10c0-2.766,1.277-4.32,2.277-4.32c0.363,0,1.315,0,1.315,0C18.332,4.621,17.779,4,15.342,4H5.334\r\n\tC1.6,4,0,7.441,0,10c0,2.559,1.6,6,5.334,6h10.008c2.438,0,2.99-0.621,3.658-1.68c0,0-0.315,0-1.315,0S15.408,12.766,15.408,10z\r\n\t M12.688,11.795c-0.164,0.25-0.676,0.016-0.676,0.016l-2.957-1.338c0,0-0.264,0.67-0.467,1.141\r\n\tc-0.205,0.471-0.361,1.004-1.209,0.408c-0.849-0.598-3.581-3.25-3.581-3.25S3.453,8.488,3.625,8.221\r\n\tc0.163-0.252,0.676-0.016,0.676-0.016l2.956,1.336c0,0,0.265-0.668,0.468-1.139C7.93,7.932,8.086,7.396,8.934,7.994\r\n\tc0.849,0.596,3.58,3.25,3.58,3.25S12.859,11.527,12.688,11.795z M18.874,7.928h-0.749c-0.559,0-1.105,0.754-1.105,1.979\r\n\tc0,1.227,0.547,1.98,1.105,1.98h0.749c0.56,0,1.126-0.754,1.126-1.98C20,8.682,19.434,7.928,18.874,7.928z" + } + }] +}; +exports.battery = battery; +var note = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M17,1l-0.002,13c0,1.243-1.301,3-3.748,3C12.007,17,11,16.347,11,15.125c0-1.589,1.445-2.55,3-2.55\r\n\tc0.432,0,0.754,0.059,1,0.123V5.364L8,6.637L8,16H7.998c0,1.243-1.301,3-3.748,3C3.007,19,2,18.347,2,17.125\r\n\tc0-1.589,1.445-2.55,3-2.55c0.432,0,0.754,0.059,1,0.123V3L17,1z" + } + }] +}; +exports.note = note; +var bell = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M14.65,8.512c-2.28-4.907-3.466-6.771-7.191-6.693C6.132,1.846,6.45,0.857,5.438,1.232C4.428,1.607,5.295,2.156,4.261,3.005\r\n\tc-2.902,2.383-2.635,4.587-1.289,9.84c0.567,2.213-1.367,2.321-0.602,4.465c0.559,1.564,4.679,2.219,9.025,0.607\r\n\tc4.347-1.613,7.086-4.814,6.527-6.378C17.157,9.394,15.611,10.578,14.65,8.512z M10.924,16.595c-3.882,1.44-7.072,0.594-7.207,0.217\r\n\tc-0.232-0.65,1.253-2.816,5.691-4.463c4.438-1.647,6.915-1.036,7.174-0.311C16.735,12.467,14.807,15.154,10.924,16.595z\r\n\t M9.676,13.101c-2.029,0.753-3.439,1.614-4.353,2.389c0.643,0.584,1.847,0.726,3.046,0.281c1.527-0.565,2.466-1.866,2.095-2.904\r\n\tc-0.005-0.013-0.011-0.023-0.016-0.036C10.197,12.913,9.94,13.002,9.676,13.101z" + } + }] +}; +exports.bell = bell; +var blackboard = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M2.539,20H6l1.406-3.698L4.44,15.298L2.539,20z M12.594,16.302L14,20h3.461\r\n\tl-1.901-4.702L12.594,16.302z M18,2h-6.5L11,0H9L8.5,2H2C1.447,2,1,2.447,1,3v11c0,0.552,0.447,1,1,1h16c0.553,0,1-0.448,1-1V3\r\n\tC19,2.448,18.553,2,18,2z" + } + }] +}; +exports.blackboard = blackboard; +var block = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,0.4c-5.303,0-9.601,4.298-9.601,9.6c0,5.303,4.298,9.601,9.601,9.601c5.301,0,9.6-4.298,9.6-9.601\r\n\tC19.6,4.698,15.301,0.4,10,0.4z M2.399,10c0-4.197,3.402-7.6,7.6-7.6c1.829,0,3.506,0.647,4.817,1.723L4.122,14.817\r\n\tC3.046,13.505,2.399,11.829,2.399,10z M9.999,17.599c-1.828,0-3.505-0.646-4.815-1.722L15.878,5.184\r\n\tC16.953,6.496,17.6,8.171,17.6,10C17.6,14.197,14.196,17.599,9.999,17.599z" + } + }] +}; +exports.block = block; +var book = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M17,5.95v10.351c0,0.522-0.452,0.771-1,1.16c-0.44,0.313-1-0.075-1-0.587c0,0,0-9.905,0-10.114\r\n\tc0-0.211-0.074-0.412-0.314-0.535c-0.24-0.123-7.738-4.065-7.738-4.065C6.827,2.115,6.299,1.782,5.595,2.144\r\n\tC4.926,2.488,4.562,2.862,4.469,3.038l8.18,4.482C12.866,7.634,13,7.81,13,8.036v10.802c0,0.23-0.142,0.476-0.369,0.585\r\n\tc-0.104,0.052-0.219,0.077-0.333,0.077c-0.135,0-0.271-0.033-0.386-0.104c-0.215-0.131-7.774-4.766-8.273-5.067\r\n\tc-0.24-0.144-0.521-0.439-0.527-0.658L3,3.385c0-0.198-0.023-0.547,0.289-1.032c0.697-1.084,3.129-2.317,4.36-1.678l8.999,4.555\r\n\tC16.865,5.342,17,5.566,17,5.95z" + } + }] +}; +exports.book = book; +var bookmark = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M14,2v17l-4-4l-4,4V2c0-0.553,0.585-1.02,1-1h6C13.689,0.98,14,1.447,14,2z" + } + }] +}; +exports.bookmark = bookmark; +var bookmarks = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M15,0h-4c-0.553,0-1,0.447-1,1l0.023,0.222c1.102,0,2,0.897,2,2v11.359L13,13.4l3,3.6V1C16,0.447,15.553,0,15,0z M9.023,3H5\r\n\tC4.447,3,4,3.447,4,4v16l3-3.6l3,3.6V4C10,3.447,9.576,3,9.023,3z" + } + }] +}; +exports.bookmarks = bookmarks; +var bowl = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M16.949,7.472c-2.176,2.902-4.095,3.002-7.046,3.152H9.802c-3.591-0.002-6.138-1.336-6.138-1.832\r\n\tC3.662,8.321,5.962,7.095,9.269,6.973l0.59-1.473c-0.019,0-0.037-0.002-0.057-0.002c-4.908,0-7.791,1.562-7.791,3.051v2\r\n\tc0,0.918,0.582,8.949,7.582,8.949s8-8.031,8-8.949v-2c0-0.391-0.201-0.787-0.584-1.158L16.949,7.472z M17.589,2.702\r\n\tc-0.441-0.33-1.069-0.242-1.399,0.201l-3.608,4.809l2.336-5.838c0.206-0.512-0.044-1.094-0.557-1.301\r\n\tc-0.508-0.205-1.096,0.043-1.3,0.559L9.802,9.274c2.882-0.147,4.277-0.227,6.067-2.611c1.789-2.387,1.919-2.561,1.919-2.561\r\n\tC18.12,3.661,18.031,3.034,17.589,2.702z" + } + }] +}; +exports.bowl = bowl; +var box = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.399,2H1.6C1.268,2,1,2.267,1,2.6V5h18V2.6C19,2.267,18.73,2,18.399,2z M2,16.6c0,0.77,0.629,1.4,1.399,1.4h13.2\r\n\tc0.77,0,1.4-0.631,1.4-1.4V6H2V16.6z M7,8h6v2H7V8z" + } + }] +}; +exports.box = box; +var briefcase = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M9,10h2v2h9c0,0-0.149-4.459-0.2-5.854C19.75,4.82,19.275,4,17.8,4h-3.208c-0.497-0.938-1.032-1.945-1.197-2.256\r\n\tC13.064,1.121,12.951,1,12.216,1H7.783C7.048,1,6.936,1.121,6.604,1.744C6.439,2.055,5.904,3.062,5.408,4H2.199\r\n\tc-1.476,0-1.945,0.82-2,2.146C0.145,7.473,0,12,0,12h9V10z M7.649,2.916C7.879,2.484,7.957,2.4,8.466,2.4h3.067\r\n\tc0.509,0,0.588,0.084,0.816,0.516c0.086,0.16,0.318,0.6,0.575,1.084H7.074C7.331,3.516,7.563,3.076,7.649,2.916z M11,15H9v-2H0.5\r\n\tc0,0,0.124,1.797,0.199,3.322C0.73,16.955,0.917,18,2.499,18H17.5c1.582,0,1.765-1.047,1.8-1.678C19.387,14.754,19.5,13,19.5,13H11\r\n\tV15z" + } + }] +}; +exports.briefcase = briefcase; +var browser = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M18,2H2C0.9,2,0,2.9,0,4v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V4C20,2.9,19.1,2,18,2z M4.5,3.75\r\n\tc0.414,0,0.75,0.336,0.75,0.75c0,0.414-0.336,0.75-0.75,0.75c-0.414,0-0.75-0.336-0.75-0.75C3.75,4.086,4.086,3.75,4.5,3.75z\r\n\t M1.75,4.5c0-0.414,0.336-0.75,0.75-0.75c0.414,0,0.75,0.336,0.75,0.75c0,0.414-0.336,0.75-0.75,0.75\r\n\tC2.086,5.25,1.75,4.914,1.75,4.5z M18,16H2V7h16V16z M18,5H6V4h12.019L18,5z" + } + }] +}; +exports.browser = browser; +var brush = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M2.763,13.563c-1.515,1.488-0.235,3.016-2.247,5.279c-0.908,1.023,3.738,0.711,6.039-1.551\r\n\tc0.977-0.961,0.701-2.359-0.346-3.389C5.162,12.874,3.739,12.602,2.763,13.563z M19.539,0.659C18.763-0.105,10.16,6.788,7.6,9.305\r\n\tc-1.271,1.25-1.695,1.92-2.084,2.42c-0.17,0.219,0.055,0.285,0.154,0.336c0.504,0.258,0.856,0.496,1.311,0.943\r\n\tc0.456,0.447,0.699,0.793,0.959,1.289c0.053,0.098,0.121,0.318,0.342,0.152c0.51-0.383,1.191-0.801,2.462-2.049\r\n\tC13.305,9.88,20.317,1.422,19.539,0.659z" + } + }] +}; +exports.brush = brush; +var bucket = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M11,1C6.092,1,3.002,2.592,3.21,3.95c0.06,0.389,0.225,1.945,0.434,3.273c-2.405,0.934-3.202,2.449-3.095,3.684\r\n\tc0.127,1.461,1.441,3.025,4.328,3.295c1.648,0.154,3.631-0.75,4.916-2.295C9.671,11.7,9.6,11.457,9.6,11.2\r\n\tc0-0.774,0.627-1.4,1.4-1.4c0.774,0,1.4,0.627,1.4,1.4c0,0.762-0.61,1.381-1.369,1.398c-1.529,1.973-3.858,3.164-6.064,3.025\r\n\tc0.051,0.324,0.07,0.947,0.096,1.113C5.153,17.315,7.41,18.996,11,19c3.59-0.004,5.847-1.685,5.938-2.263\r\n\tC17.026,16.16,18.579,5.328,18.79,3.95C18.998,2.592,15.907,1,11,1z M1.943,10.785c-0.055-0.643,0.455-1.498,1.924-2.139\r\n\tc0.211,1.34,0.441,2.797,0.643,4.074C2.906,12.407,2.012,11.571,1.943,10.785z M11,6.024C7.41,6.022,4.863,4.69,4.863,4.192\r\n\tC4.861,3.698,7.41,2.402,11,2.404c3.59-0.002,6.139,1.294,6.137,1.788C17.137,4.69,14.59,6.022,11,6.024z" + } + }] +}; +exports.bucket = bucket; +var bug = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,1C7.7907715,1,6,2.7908325,6,5h8C14,2.7908325,12.2092285,1,10,1z M19,10h-3V7.5031738\r\n\tc0-0.02771-0.0065918-0.0535278-0.0080566-0.0808716l2.2150879-2.21521c0.390625-0.3905029,0.390625-1.0236816,0-1.4141846\r\n\tc-0.3903809-0.390564-1.0236816-0.390564-1.4140625,0l-2.215332,2.21521C14.550293,6.0066528,14.5246582,6,14.4970703,6H5.5029297\r\n\tC5.4753418,6,5.449707,6.0066528,5.4223633,6.0081177l-2.215332-2.21521c-0.3903809-0.390564-1.0236816-0.390564-1.4140625,0\r\n\tc-0.390625,0.3905029-0.390625,1.0236816,0,1.4141846l2.2150879,2.21521C4.0065918,7.449646,4,7.4754639,4,7.5031738V10H1\r\n\tc-0.5522461,0-1,0.4476929-1,1c0,0.5522461,0.4477539,1,1,1h3c0,0.7799683,0.15625,1.520813,0.4272461,2.2037354\r\n\tc-0.0441895,0.0316162-0.0947266,0.0494995-0.1342773,0.0891724l-2.8286133,2.8283691\r\n\tc-0.3903809,0.390564-0.3903809,1.0237427,0,1.4142456c0.390625,0.3905029,1.0239258,0.3905029,1.4143066,0L5.4802246,15.93396\r\n\tC6.3725586,16.9555054,7.6027832,17.6751099,9,17.9100342V8h2v9.9100342\r\n\tc1.3972168-0.2349243,2.6274414-0.9545288,3.5197754-1.9760132l2.6015625,2.6015015\r\n\tc0.3903809,0.3905029,1.0236816,0.3905029,1.4143066,0c0.3903809-0.3905029,0.3903809-1.0236816,0-1.4142456l-2.8286133-2.8283691\r\n\tc-0.0395508-0.0396729-0.0900879-0.0575562-0.1342773-0.0891724C15.84375,13.520813,16,12.7799683,16,12h3\r\n\tc0.5522461,0,1-0.4477539,1-1C20,10.4476929,19.5522461,10,19,10z" + } + }] +}; +exports.bug = bug; +var cake = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M9.584,6.036c1.952,0,2.591-1.381,1.839-2.843c-0.871-1.693,1.895-3.155,0.521-3.155c-1.301,0-3.736,1.418-4.19,3.183\r\n\tC7.415,4.545,8.05,6.036,9.584,6.036z M14.796,14.987l-0.444-0.383c-0.487-0.42-1.25-0.418-1.735,0l-0.442,0.382\r\n\tc-0.62,0.534-1.397,0.801-2.174,0.801c-0.777,0-1.554-0.267-2.173-0.8l-0.444-0.384c-0.487-0.418-1.249-0.419-1.734,0.001\r\n\tl-0.444,0.383c-1.193,1.028-2.967,1.056-4.204,0.1V19c0,0.552,0.448,1,1,1h16c0.552,0,1-0.448,1-1v-3.912\r\n\tC17.765,16.042,15.991,16.017,14.796,14.987z M10,7c-7.574,0-9,3.361-9,5v0.469l1.164,1.003c0.486,0.421,1.249,0.417,1.735,0\r\n\tl0.444-0.383c1.237-1.065,3.105-1.066,4.345,0l0.444,0.384c0.484,0.417,1.245,0.42,1.735-0.001l0.442-0.382\r\n\tc1.24-1.067,3.107-1.067,4.346-0.001l0.444,0.383c0.487,0.421,1.25,0.417,1.735,0L19,12.469V12C19,10.361,17.574,7,10,7z" + } + }] +}; +exports.cake = cake; +var calculator = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M14.6,1H5.398C4.629,1,4,1.629,4,2.4V17.6c0,0.77,0.629,1.4,1.398,1.4H14.6c0.769,0,1.4-0.631,1.4-1.4V2.4\r\n\tC16,1.629,15.369,1,14.6,1z M7,12c0.689,0,1.25,0.447,1.25,1S7.689,14,7,14c-0.69,0-1.25-0.447-1.25-1S6.31,12,7,12z M5.75,10\r\n\tc0-0.553,0.56-1,1.25-1c0.689,0,1.25,0.447,1.25,1c0,0.553-0.561,1-1.25,1C6.31,11,5.75,10.553,5.75,10z M7,15\r\n\tc0.689,0,1.25,0.447,1.25,1S7.689,17,7,17c-0.69,0-1.25-0.447-1.25-1S6.31,15,7,15z M10,12c0.689,0,1.25,0.447,1.25,1\r\n\ts-0.561,1-1.25,1c-0.69,0-1.25-0.447-1.25-1S9.31,12,10,12z M8.75,10c0-0.553,0.56-1,1.25-1c0.689,0,1.25,0.447,1.25,1\r\n\tc0,0.553-0.561,1-1.25,1C9.31,11,8.75,10.553,8.75,10z M10,15c0.689,0,1.25,0.447,1.25,1s-0.561,1-1.25,1c-0.69,0-1.25-0.447-1.25-1\r\n\tS9.31,15,10,15z M13,12c0.689,0,1.25,0.447,1.25,1s-0.561,1-1.25,1c-0.69,0-1.25-0.447-1.25-1S12.31,12,13,12z M11.75,10\r\n\tc0-0.553,0.56-1,1.25-1c0.689,0,1.25,0.447,1.25,1c0,0.553-0.561,1-1.25,1C12.31,11,11.75,10.553,11.75,10z M13,15\r\n\tc0.689,0,1.25,0.447,1.25,1s-0.561,1-1.25,1c-0.69,0-1.25-0.447-1.25-1S12.31,15,13,15z M5,7V4h10v3H5z" + } + }] +}; +exports.calculator = calculator; +var calendar = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M17,3h-1v2h-3V3H7v2H4V3H3C1.899,3,1,3.9,1,5v12c0,1.1,0.899,2,2,2h14c1.1,0,2-0.9,2-2V5C19,3.9,18.1,3,17,3z M17,17H3V9h14\r\n\tV17z M6.5,1h-2v3.5h2V1z M15.5,1h-2v3.5h2V1z" + } + }] +}; +exports.calendar = calendar; +var camera = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,8c-1.657,0-3,1.344-3,3c0,1.656,1.343,3,3,3c1.656,0,3-1.344,3-3C13,9.344,11.656,8,10,8z M18,5h-2.4\r\n\tc-0.33,0-0.686-0.256-0.789-0.57l-0.621-1.861C14.085,2.256,13.731,2,13.4,2H6.6C6.27,2,5.914,2.256,5.811,2.568L5.189,4.43\r\n\tC5.085,4.744,4.73,5,4.4,5H2C0.9,5,0,5.9,0,7v9c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V7C20,5.9,19.1,5,18,5z M10,16\r\n\tc-2.762,0-5-2.238-5-5c0-2.762,2.238-5,5-5c2.761,0,5,2.238,5,5C15,13.762,12.761,16,10,16z M17.5,8.2c-0.387,0-0.7-0.314-0.7-0.701\r\n\tc0-0.385,0.313-0.7,0.7-0.7s0.7,0.314,0.7,0.7C18.2,7.886,17.887,8.2,17.5,8.2z" + } + }] +}; +exports.camera = camera; +var ccw = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M0.685,10h2.372V9.795c0.108-4.434,3.724-7.996,8.169-7.996c4.515,0,8.174,3.672,8.174,8.201s-3.659,8.199-8.174,8.199\r\n\tc-1.898,0-3.645-0.65-5.033-1.738l1.406-1.504c1.016,0.748,2.27,1.193,3.627,1.193c3.386,0,6.131-2.754,6.131-6.15\r\n\tc0-3.396-2.745-6.15-6.131-6.15c-3.317,0-6.018,2.643-6.125,5.945V10h2.672l-3.494,3.894L0.685,10z" + } + }] +}; +exports.ccw = ccw; +var chat = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M5.8,12.2V6H2C0.9,6,0,6.9,0,8v6c0,1.1,0.9,2,2,2h1v3l3-3h5c1.1,0,2-0.9,2-2v-1.82c-0.064,0.014-0.132,0.021-0.2,0.021h-7\r\n\tV12.2z M18,1H9C7.9,1,7,1.9,7,3v8h7l3,3v-3h1c1.1,0,2-0.899,2-2V3C20,1.9,19.1,1,18,1z" + } + }] +}; +exports.chat = chat; +var check = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M8.294,16.998c-0.435,0-0.847-0.203-1.111-0.553L3.61,11.724c-0.465-0.613-0.344-1.486,0.27-1.951\r\n\tc0.615-0.467,1.488-0.344,1.953,0.27l2.351,3.104l5.911-9.492c0.407-0.652,1.267-0.852,1.921-0.445\r\n\tc0.653,0.406,0.854,1.266,0.446,1.92L9.478,16.34c-0.242,0.391-0.661,0.635-1.12,0.656C8.336,16.998,8.316,16.998,8.294,16.998z" + } + }] +}; +exports.check = check; +var smallDown = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M13.418,7.859c0.271-0.268,0.709-0.268,0.978,0c0.27,0.268,0.272,0.701,0,0.969l-3.908,3.83\r\n\tc-0.27,0.268-0.707,0.268-0.979,0l-3.908-3.83c-0.27-0.267-0.27-0.701,0-0.969c0.271-0.268,0.709-0.268,0.978,0L10,11L13.418,7.859z\r\n\t" + } + }] +}; +exports.smallDown = smallDown; +var smallLeft = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M12.141,13.418c0.268,0.271,0.268,0.709,0,0.978c-0.268,0.27-0.701,0.272-0.969,0l-3.83-3.908\r\n\tc-0.268-0.27-0.268-0.707,0-0.979l3.83-3.908c0.267-0.27,0.701-0.27,0.969,0c0.268,0.271,0.268,0.709,0,0.978L9,10L12.141,13.418z" + } + }] +}; +exports.smallLeft = smallLeft; +var smallRight = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M11,10L7.859,6.58c-0.268-0.27-0.268-0.707,0-0.978c0.268-0.27,0.701-0.27,0.969,0l3.83,3.908\r\n\tc0.268,0.271,0.268,0.709,0,0.979l-3.83,3.908c-0.267,0.272-0.701,0.27-0.969,0c-0.268-0.269-0.268-0.707,0-0.978L11,10z" + } + }] +}; +exports.smallRight = smallRight; +var smallUp = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M6.582,12.141c-0.271,0.268-0.709,0.268-0.978,0c-0.269-0.268-0.272-0.701,0-0.969l3.908-3.83\r\n\tc0.27-0.268,0.707-0.268,0.979,0l3.908,3.83c0.27,0.267,0.27,0.701,0,0.969c-0.271,0.268-0.709,0.268-0.979,0L10,9L6.582,12.141z" + } + }] +}; +exports.smallUp = smallUp; +var thinDown = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M17.418,6.109c0.272-0.268,0.709-0.268,0.979,0c0.27,0.268,0.271,0.701,0,0.969l-7.908,7.83\r\n\tc-0.27,0.268-0.707,0.268-0.979,0l-7.908-7.83c-0.27-0.268-0.27-0.701,0-0.969c0.271-0.268,0.709-0.268,0.979,0L10,13.25\r\n\tL17.418,6.109z" + } + }] +}; +exports.thinDown = thinDown; +var thinLeft = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M13.891,17.418c0.268,0.272,0.268,0.709,0,0.979c-0.268,0.27-0.701,0.271-0.969,0l-7.83-7.908\r\n\tc-0.268-0.27-0.268-0.707,0-0.979l7.83-7.908c0.268-0.27,0.701-0.27,0.969,0c0.268,0.271,0.268,0.709,0,0.979L6.75,10L13.891,17.418\r\n\tz" + } + }] +}; +exports.thinLeft = thinLeft; +var thinRight = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M13.25,10L6.109,2.58c-0.268-0.27-0.268-0.707,0-0.979c0.268-0.27,0.701-0.27,0.969,0l7.83,7.908\r\n\tc0.268,0.271,0.268,0.709,0,0.979l-7.83,7.908c-0.268,0.271-0.701,0.27-0.969,0c-0.268-0.269-0.268-0.707,0-0.979L13.25,10z" + } + }] +}; +exports.thinRight = thinRight; +var thinUp = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M2.582,13.891c-0.272,0.268-0.709,0.268-0.979,0s-0.271-0.701,0-0.969l7.908-7.83c0.27-0.268,0.707-0.268,0.979,0\r\n\tl7.908,7.83c0.27,0.268,0.27,0.701,0,0.969c-0.271,0.268-0.709,0.268-0.978,0L10,6.75L2.582,13.891z" + } + }] +}; +exports.thinUp = thinUp; +var withCross = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,1.6c-4.639,0-8.4,3.761-8.4,8.4c0,4.639,3.761,8.4,8.4,8.4s8.4-3.761,8.4-8.4C18.4,5.361,14.639,1.6,10,1.6z\r\n\t M14.789,13.061l-1.729,1.729L10,11.729l-3.061,3.06l-1.729-1.729L8.272,10L5.211,6.939L6.94,5.211L10,8.271l3.061-3.061\r\n\tl1.729,1.729L11.728,10L14.789,13.061z" + } + }] +}; +exports.withCross = withCross; +var withMinus = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,1.6c-4.639,0-8.4,3.761-8.4,8.4c0,4.639,3.761,8.4,8.4,8.4s8.4-3.761,8.4-8.4C18.4,5.361,14.639,1.6,10,1.6z M15,11H5V9\r\n\th10V11z" + } + }] +}; +exports.withMinus = withMinus; +var withPlus = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,1.6c-4.639,0-8.4,3.761-8.4,8.4c0,4.639,3.761,8.4,8.4,8.4s8.4-3.761,8.4-8.4C18.4,5.361,14.639,1.6,10,1.6z M15,11h-4\r\n\tv4H9v-4H5V9h4V5h2v4h4V11z" + } + }] +}; +exports.withPlus = withPlus; +var circle = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,0.4C4.698,0.4,0.4,4.698,0.4,10C0.4,15.302,4.698,19.6,10,19.6c5.301,0,9.6-4.298,9.6-9.601\r\n\tC19.6,4.698,15.301,0.4,10,0.4z M10,17.599c-4.197,0-7.6-3.402-7.6-7.6S5.802,2.4,10,2.4c4.197,0,7.601,3.402,7.601,7.6\r\n\tS14.197,17.599,10,17.599z" + } + }] +}; +exports.circle = circle; +var clapperboard = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M20,3v14c0,0.552-0.447,1-1,1H1c-0.553,0-1-0.448-1-1V3c0-0.553,0.447-1,1-1h1l3,3\r\n\th2.5l-3-3h3l3,3H13l-3-3h3l3,3h2.5l-3-3H19C19.553,2,20,2.448,20,3z" + } + }] +}; +exports.clapperboard = clapperboard; +var computer = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M16,0H4C2.9,0,2,0.899,2,2v15c0,0.552,0.447,1,1,1v2h14v-2c0.553,0,1-0.448,1-1V2C18,0.899,17.101,0,16,0z M14,15h-4v-1h4\r\n\tV15z M15,11H5V3h10V11z" + } + }] +}; +exports.computer = computer; +var clipboard = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M15.6,2l-1.2,3H5.6l-1.2-3C3.629,2,3,2.629,3,3.4V18.6c0,0.77,0.629,1.4,1.399,1.4h11.2c0.77,0,1.4-0.631,1.4-1.4V3.4\r\n\tC17,2.629,16.369,2,15.6,2z M13.6,4l0.9-2h-2.181L11.6,0h-3.2L7.68,2H5.5l0.899,2H13.6z" + } + }] +}; +exports.clipboard = clipboard; +var clock = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,0.4c-5.303,0-9.601,4.298-9.601,9.6c0,5.303,4.298,9.601,9.601,9.601c5.301,0,9.6-4.298,9.6-9.601\r\n\tC19.6,4.698,15.301,0.4,10,0.4z M9.999,17.6c-4.197,0-7.6-3.402-7.6-7.6c0-4.197,3.402-7.6,7.6-7.6c4.197,0,7.601,3.402,7.601,7.6\r\n\tC17.6,14.197,14.196,17.6,9.999,17.6z M11,9.33V4H9v6.245l-3.546,2.048l1,1.732l4.115-2.377C10.807,11.511,11,11.175,11,10.9v-0.168\r\n\tl4.24-4.166c-0.198-0.271-0.411-0.529-0.647-0.766L11,9.33z" + } + }] +}; +exports.clock = clock; +var cloud = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M20,11.32c0,2.584-2.144,4.68-4.787,4.68H3.617C1.619,16,0,14.416,0,12.463c0-1.951,1.619-3.535,3.617-3.535\r\n\tc0.146,0,0.288,0.012,0.429,0.027C4.009,8.709,3.989,8.457,3.989,8.199C3.989,5.328,6.37,3,9.309,3c2.407,0,4.439,1.562,5.096,3.707\r\n\tc0.263-0.043,0.532-0.066,0.809-0.066C17.856,6.641,20,8.734,20,11.32z" + } + }] +}; +exports.cloud = cloud; +var code = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M5.719,14.75c-0.236,0-0.474-0.083-0.664-0.252L-0.005,10l5.341-4.748C5.748,4.887,6.38,4.922,6.747,5.335\r\n\tc0.367,0.413,0.33,1.045-0.083,1.412L3.005,10l3.378,3.002c0.413,0.367,0.45,0.999,0.083,1.412\r\n\tC6.269,14.637,5.994,14.75,5.719,14.75z M14.664,14.748L20.005,10l-5.06-4.498c-0.413-0.367-1.045-0.33-1.411,0.083\r\n\tc-0.367,0.413-0.33,1.045,0.083,1.412L16.995,10l-3.659,3.252c-0.413,0.367-0.45,0.999-0.083,1.412C13.45,14.887,13.725,15,14,15\r\n\tC14.236,15,14.474,14.917,14.664,14.748z M9.986,16.165l2-12c0.091-0.545-0.277-1.06-0.822-1.151\r\n\tc-0.547-0.092-1.061,0.277-1.15,0.822l-2,12c-0.091,0.545,0.277,1.06,0.822,1.151C8.892,16.996,8.946,17,9.001,17\r\n\tC9.481,17,9.905,16.653,9.986,16.165z" + } + }] +}; +exports.code = code; +var cog = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M16.783,10c0-1.049,0.646-1.875,1.617-2.443c-0.176-0.584-0.407-1.145-0.692-1.672c-1.089,0.285-1.97-0.141-2.711-0.883\r\n\tc-0.741-0.74-0.968-1.621-0.683-2.711c-0.527-0.285-1.088-0.518-1.672-0.691C12.074,2.57,11.047,3.215,10,3.215\r\n\tc-1.048,0-2.074-0.645-2.643-1.615C6.772,1.773,6.213,2.006,5.686,2.291c0.285,1.09,0.059,1.971-0.684,2.711\r\n\tC4.262,5.744,3.381,6.17,2.291,5.885C2.006,6.412,1.774,6.973,1.6,7.557C2.57,8.125,3.215,8.951,3.215,10\r\n\tc0,1.047-0.645,2.074-1.615,2.643c0.175,0.584,0.406,1.144,0.691,1.672c1.09-0.285,1.971-0.059,2.711,0.682\r\n\tc0.741,0.742,0.969,1.623,0.684,2.711c0.527,0.285,1.087,0.518,1.672,0.693c0.568-0.973,1.595-1.617,2.643-1.617\r\n\tc1.047,0,2.074,0.645,2.643,1.617c0.584-0.176,1.144-0.408,1.672-0.693c-0.285-1.088-0.059-1.969,0.683-2.711\r\n\tc0.741-0.74,1.622-1.166,2.711-0.883c0.285-0.527,0.517-1.086,0.692-1.672C17.429,11.873,16.783,11.047,16.783,10z M10,13.652\r\n\tc-2.018,0-3.653-1.635-3.653-3.652c0-2.018,1.636-3.654,3.653-3.654c2.018,0,3.652,1.637,3.652,3.654\r\n\tC13.652,12.018,12.018,13.652,10,13.652z" + } + }] +}; +exports.cog = cog; +var colours = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M3.179,5.998C2.756,5.648,2.122,5.708,1.771,6.13L0.494,7.669c-0.35,0.423-0.291,1.058,0.131,1.407l7.888,6.542L4.706,7.264\r\n\tL3.179,5.998z M7.013,2.683l-1.82,0.829C4.694,3.74,4.471,4.337,4.698,4.836l4.25,9.325l0.213-9.179L8.339,3.178\r\n\tC8.109,2.678,7.513,2.455,7.013,2.683z M14.211,2.887c0.013-0.55-0.427-1.01-0.976-1.023l-2-0.046\r\n\tc-0.549-0.013-1.009,0.427-1.022,0.976L9.974,13.037l4.19-8.167L14.211,2.887z M19.191,3.837l-1.779-0.913\r\n\tc-0.489-0.25-1.096-0.055-1.347,0.434L9.674,15.814c-0.251,0.489-0.056,1.096,0.434,1.347l1.779,0.913\r\n\tc0.489,0.251,1.095,0.056,1.346-0.433l6.391-12.456C19.875,4.694,19.68,4.088,19.191,3.837z M12.799,16.293\r\n\tc-0.252,0.492-0.855,0.686-1.346,0.434c-0.492-0.252-0.685-0.854-0.433-1.346c0.252-0.492,0.854-0.685,1.346-0.433\r\n\tC12.858,15.199,13.051,15.802,12.799,16.293z" + } + }] +}; +exports.colours = colours; +var compass = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M5.454,14.548c0,0,4.568-0.627,6.518-2.576s2.576-6.518,2.576-6.518S9.979,6.081,8.03,8.03S5.454,14.548,5.454,14.548z\r\n\t M9.017,9.015c0.818-0.818,2.385-1.4,3.729-1.762c-0.361,1.342-0.945,2.92-1.76,3.732c-0.543,0.545-1.426,0.545-1.969,0\r\n\tC8.472,10.442,8.472,9.56,9.017,9.015z M10.001,0.4C4.698,0.4,0.4,4.698,0.4,10c0,5.303,4.298,9.601,9.601,9.601\r\n\tc5.301,0,9.6-4.298,9.6-9.601C19.601,4.698,15.302,0.4,10.001,0.4z M10,17.6c-4.197,0-7.6-3.402-7.6-7.6c0-4.197,3.402-7.6,7.6-7.6\r\n\tc4.197,0,7.601,3.402,7.601,7.6C17.601,14.197,14.197,17.6,10,17.6z" + } + }] +}; +exports.compass = compass; +var fastBackward = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M17.959,4.571L10.756,9.52c0,0-0.279,0.201-0.279,0.481s0.279,0.479,0.279,0.479l7.203,4.951\r\n\tC18.531,15.811,19,15.53,19,14.805V5.196C19,4.469,18.531,4.188,17.959,4.571z M8.883,4.571L1.68,9.52c0,0-0.279,0.201-0.279,0.481\r\n\ts0.279,0.479,0.279,0.479l7.203,4.951c0.572,0.381,1.041,0.1,1.041-0.625V5.196C9.924,4.469,9.455,4.188,8.883,4.571z" + } + }] +}; +exports.fastBackward = fastBackward; +var fastForward = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M9.244,9.52L2.041,4.571C1.469,4.188,1,4.469,1,5.196v9.609c0,0.725,0.469,1.006,1.041,0.625l7.203-4.951\r\n\tc0,0,0.279-0.199,0.279-0.478C9.523,9.721,9.244,9.52,9.244,9.52z M18.6,10.001c0,0.279-0.279,0.478-0.279,0.478l-7.203,4.951\r\n\tc-0.572,0.381-1.041,0.1-1.041-0.625V5.196c0-0.727,0.469-1.008,1.041-0.625L18.32,9.52C18.32,9.52,18.6,9.721,18.6,10.001z" + } + }] +}; +exports.fastForward = fastForward; +var jumpToStart = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M14.959,4.571L7.756,9.52c0,0-0.279,0.201-0.279,0.481s0.279,0.479,0.279,0.479l7.203,4.951\r\n\tC15.531,15.811,16,15.53,16,14.805V5.196C16,4.469,15.531,4.188,14.959,4.571z M6,4H5C4.447,4,4,4.048,4,4.6V15.4\r\n\tC4,15.952,4.447,16,5,16h1c0.553,0,1-0.048,1-0.6V4.6C7,4.048,6.553,4,6,4z" + } + }] +}; +exports.jumpToStart = jumpToStart; +var next = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M12.244,9.52L5.041,4.571C4.469,4.188,4,4.469,4,5.196v9.609c0,0.725,0.469,1.006,1.041,0.625l7.203-4.951\r\n\tc0,0,0.279-0.199,0.279-0.478C12.523,9.721,12.244,9.52,12.244,9.52z M14,4h1c0.553,0,1,0.048,1,0.6V15.4c0,0.552-0.447,0.6-1,0.6\r\n\th-1c-0.553,0-1-0.048-1-0.6V4.6C13,4.048,13.447,4,14,4z" + } + }] +}; +exports.next = next; +var paus = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M15,3h-2c-0.553,0-1,0.048-1,0.6V16.4c0,0.552,0.447,0.6,1,0.6h2c0.553,0,1-0.048,1-0.6V3.6C16,3.048,15.553,3,15,3z M7,3H5\r\n\tC4.447,3,4,3.048,4,3.6V16.4C4,16.952,4.447,17,5,17h2c0.553,0,1-0.048,1-0.6V3.6C8,3.048,7.553,3,7,3z" + } + }] +}; +exports.paus = paus; +var play = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M15,10.001c0,0.299-0.305,0.514-0.305,0.514l-8.561,5.303C5.51,16.227,5,15.924,5,15.149V4.852\r\n\tc0-0.777,0.51-1.078,1.135-0.67l8.561,5.305C14.695,9.487,15,9.702,15,10.001z" + } + }] +}; +exports.play = play; +var record = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,3c-3.866,0-7,3.133-7,7c0,3.865,3.134,7,7,7s7-3.135,7-7C17,6.133,13.866,3,10,3z" + } + }] +}; +exports.record = record; +var stop = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M16,4.995v9.808C16,15.464,15.464,16,14.804,16H4.997C4.446,16,4,15.554,4,15.003V5.196C4,4.536,4.536,4,5.196,4h9.808\r\n\tC15.554,4,16,4.446,16,4.995z" + } + }] +}; +exports.stop = stop; +var volume = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M19,13.805C19,14.462,18.462,15,17.805,15H1.533c-0.88,0-0.982-0.371-0.229-0.822l16.323-9.055C18.382,4.67,19,5.019,19,5.9\r\n\tV13.805z" + } + }] +}; +exports.volume = volume; +var copy = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M11,0H3C2.447,0,2,0.447,2,1v12c0,0.552,0.447,1,1,1h5v2h2v-2H8.001v-2H10v-2H8v2H4V2h6v4h2V1C12,0.448,11.553,0,11,0z M8,7\r\n\tv1h2V6H9C8.447,6,8,6.447,8,7z M12,20h2v-2h-2V20z M12,8h2V6h-2V8z M8,19c0,0.552,0.447,1,1,1h1v-2H8V19z M17,6h-1v2h2V7\r\n\tC18,6.448,17.553,6,17,6z M16,20h1c0.553,0,1-0.448,1-1v-1h-2V20z M16,12h2v-2h-2V12z M16,16h2v-2h-2V16z" + } + }] +}; +exports.copy = copy; +var commonsAttribution = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M12.6,7.6v3.9h-1.1v4.6h-3v-4.6H7.4V7.6C7.4,7.3,7.7,7,8,7H12C12.3,7,12.6,7.3,12.6,7.6z M10,6.5c0.7,0,1.3-0.6,1.3-1.3\r\n\tc0-0.7-0.6-1.3-1.3-1.3c-0.7,0-1.3,0.6-1.3,1.3C8.7,5.9,9.3,6.5,10,6.5z M19.6,10c0,2.7-0.9,4.9-2.7,6.7c-1.9,1.9-4.2,2.9-6.9,2.9\r\n\tc-2.6,0-4.9-0.9-6.8-2.8c-1.9-1.9-2.8-4.1-2.8-6.8c0-2.6,0.9-4.9,2.8-6.8C5.1,1.3,7.3,0.4,10,0.4c2.7,0,5,0.9,6.8,2.8\r\n\tC18.7,5,19.6,7.3,19.6,10z M17.9,10c0-2.2-0.8-4-2.3-5.6C14,2.9,12.2,2.1,10,2.1c-2.2,0-4,0.8-5.5,2.3C2.9,6,2.1,7.9,2.1,10\r\n\tc0,2.1,0.8,4,2.3,5.5s3.4,2.3,5.6,2.3c2.1,0,4-0.8,5.6-2.4C17.1,14,17.9,12.2,17.9,10z" + } + }] +}; +exports.commonsAttribution = commonsAttribution; +var commonsNoderivs = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M16.8,3.2C15,1.3,12.7,0.4,10,0.4c-2.7,0-4.9,0.9-6.8,2.8C1.3,5.1,0.4,7.4,0.4,10c0,2.6,0.9,4.9,2.8,6.8\r\n\tc1.9,1.9,4.1,2.8,6.8,2.8c2.6,0,4.9-1,6.9-2.9c1.8-1.8,2.7-4.1,2.7-6.7C19.6,7.3,18.7,5,16.8,3.2z M15.6,15.5\r\n\tc-1.6,1.6-3.5,2.4-5.6,2.4c-2.1,0-4-0.8-5.6-2.3C2.9,14,2.1,12.1,2.1,10c0-2.1,0.8-4,2.4-5.6C6,2.9,7.8,2.1,10,2.1s4,0.8,5.6,2.3\r\n\tc1.5,1.5,2.3,3.4,2.3,5.6C17.9,12.2,17.1,14,15.6,15.5z M6.6,10.8h7v1.7h-7V10.8z M6.6,7.7h7v1.7h-7V7.7z" + } + }] +}; +exports.commonsNoderivs = commonsNoderivs; +var commonsNoncommercialEu = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M16.8,3.2C15,1.3,12.7,0.4,10,0.4c-2.7,0-4.9,0.9-6.8,2.8C1.3,5.1,0.4,7.4,0.4,10c0,2.6,0.9,4.9,2.8,6.8\r\n\tc1.9,1.9,4.1,2.8,6.8,2.8c2.6,0,4.9-1,6.9-2.9c1.8-1.8,2.7-4.1,2.7-6.7C19.6,7.3,18.7,5,16.8,3.2z M15.6,15.5\r\n\tc-1.6,1.6-3.5,2.4-5.6,2.4c-2.1,0-4-0.8-5.6-2.3C2.9,14,2.1,12.1,2.1,10c0-0.9,0.1-1.8,0.4-2.6l2.5,1.1H4.9v1.1h0.9\r\n\tc0,0.2,0,0.3,0,0.5v0.3H4.9v1.1h1c0.1,0.9,0.5,1.5,0.9,2.1c0.9,1.2,2.3,1.8,3.9,1.8c1,0,2-0.3,2.5-0.6l-0.4-1.8\r\n\tc-0.3,0.2-1.1,0.4-1.8,0.4c-0.8,0-1.6-0.2-2.1-0.8c-0.2-0.3-0.4-0.6-0.5-1.1H12l5,2.2C16.6,14.4,16.1,15,15.6,15.5z M9.3,10.5\r\n\tL9.3,10.5L9.3,10.5L9.3,10.5z M12.4,9.7h0.1V8.6H9.8L8.7,8.1C8.8,7.9,8.9,7.7,9,7.5c0.5-0.6,1.2-0.9,2-0.9c0.7,0,1.4,0.2,1.8,0.4\r\n\tl0.5-1.8c-0.6-0.3-1.4-0.5-2.4-0.5C9.3,4.7,8,5.3,7.1,6.4C6.9,6.6,6.7,6.9,6.6,7.1L3.4,5.8c0.3-0.5,0.7-0.9,1.1-1.3\r\n\tC6,2.9,7.8,2.1,10,2.1c2.2,0,4,0.8,5.6,2.3c1.5,1.5,2.3,3.4,2.3,5.6c0,0.7-0.1,1.4-0.2,2L12.4,9.7z" + } + }] +}; +exports.commonsNoncommercialEu = commonsNoncommercialEu; +var commonsNoncommercialUs = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M16.8,3.2C15,1.3,12.7,0.4,10,0.4c-2.7,0-4.9,0.9-6.8,2.8C1.3,5.1,0.4,7.4,0.4,10s0.9,4.9,2.8,6.8c1.9,1.9,4.1,2.8,6.8,2.8\r\n\tc2.6,0,4.9-1,6.9-2.9c1.8-1.8,2.7-4.1,2.7-6.7S18.7,5,16.8,3.2z M15.6,15.5c-1.6,1.6-3.5,2.4-5.6,2.4c-2.1,0-4-0.8-5.6-2.3\r\n\tC2.9,14,2.1,12.1,2.1,10c0-0.9,0.1-1.8,0.4-2.6l4.9,2.2c0.5,0.2,1,0.4,1.5,0.7l1.1,0.5l0.9,0.4c0.2,0.1,0.3,0.3,0.3,0.6\r\n\tc0,0.7-0.6,1-1.2,1c-0.9,0-1.5-0.3-2.1-0.9l-1.3,1.3c0.8,0.7,1.8,1.1,2.9,1.1v1.5h1.1v-1.5c1.3-0.1,2.4-0.9,2.6-2.1l3.6,1.6\r\n\tC16.6,14.4,16.1,15,15.6,15.5z M12.7,9.9c-0.5-0.2-1-0.4-1.5-0.7l-0.8-0.4L9.1,8.3C9.1,8.2,9,8.1,9,8c0-0.6,0.7-0.7,1.2-0.7\r\n\tc0.6,0,1.2,0.2,1.6,0.6l1.3-1.3c-0.8-0.6-1.7-0.8-2.4-0.9V4.2H9.6v1.5C8.4,5.7,7.4,6.3,7.1,7.4L3.4,5.7c0.3-0.5,0.7-0.9,1.1-1.3\r\n\tC6,2.9,7.8,2.1,10,2.1c2.2,0,4,0.8,5.6,2.3c1.5,1.5,2.3,3.4,2.3,5.6c0,0.7-0.1,1.4-0.2,2.1L12.7,9.9z" + } + }] +}; +exports.commonsNoncommercialUs = commonsNoncommercialUs; +var commonsPublicDomain = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M16.8,3.2C15,1.3,12.7,0.4,10,0.4c-2.7,0-4.9,0.9-6.8,2.8C1.3,5.1,0.4,7.4,0.4,10c0,2.6,0.9,4.9,2.8,6.8\r\n\tc1.9,1.9,4.1,2.8,6.8,2.8c2.6,0,4.9-1,6.9-2.9c1.8-1.8,2.7-4.1,2.7-6.7C19.6,7.3,18.7,5,16.8,3.2z M15.6,15.5\r\n\tc-1.6,1.6-3.5,2.4-5.6,2.4c-2.1,0-4-0.8-5.6-2.3C2.9,14,2.1,12.1,2.1,10c0-2.1,0.8-4,2.4-5.6C6,2.9,7.8,2.1,10,2.1\r\n\tc2.2,0,4,0.8,5.6,2.3c1.5,1.5,2.3,3.4,2.3,5.6C17.9,12.2,17.1,14,15.6,15.5z M8.1,7.3H5.5v5.3h1.3v-1.7h1c1.8,0,2.2-1.1,2.2-1.8\r\n\tC10.1,8,9.6,7.3,8.1,7.3z M7.9,9.9H6.8V8.3h1.1c0.6,0,0.9,0.3,0.9,0.8C8.8,9.5,8.5,9.9,7.9,9.9z M12.5,7.3h-2.1v5.3h2.1\r\n\tc1.6,0,2.7-0.8,2.7-2.7C15.2,8.1,14.1,7.3,12.5,7.3z M12.5,11.5h-0.8V8.4h0.8c1,0,1.4,0.7,1.4,1.5C13.9,10.8,13.5,11.5,12.5,11.5z" + } + }] +}; +exports.commonsPublicDomain = commonsPublicDomain; +var commonsRemix = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M16.8,3.2C15,1.3,12.7,0.4,10,0.4c-2.7,0-4.9,0.9-6.8,2.8C1.3,5.1,0.4,7.4,0.4,10c0,2.6,0.9,4.9,2.8,6.8\r\n\tc1.9,1.9,4.1,2.8,6.8,2.8c2.6,0,4.9-1,6.9-2.9c1.8-1.8,2.7-4.1,2.7-6.7C19.6,7.3,18.7,5,16.8,3.2z M15.6,15.5\r\n\tc-1.6,1.6-3.5,2.4-5.6,2.4c-2.1,0-4-0.8-5.6-2.3C2.9,14,2.1,12.1,2.1,10c0-2.1,0.8-4,2.4-5.6C6,2.9,7.8,2.1,10,2.1\r\n\tc2.2,0,4,0.8,5.6,2.3c1.5,1.5,2.3,3.4,2.3,5.6C17.9,12.2,17.1,14,15.6,15.5z M16.3,10.2l-1.9-0.8V7L8.5,4.6L5.9,5.7v2.7l0,0l-2.3,1\r\n\tv2.5l2.5,1.1l2.5-1L8.7,12l5,2.1l0.1,0l0.1,0l2.3-1l0.2-0.1v-2.7L16.3,10.2z M13.6,13.3L13.6,13.3L13.6,13.3l-4.4-1.8V9.8l4.4,1.8\r\n\tv0.1l0,0V13.3z M13.8,11.1l-1.4-0.6L14,9.9l1.4,0.6L13.8,11.1z M15.9,12.6l-1.7,0.7v-1.7l1.7-0.7V12.6z" + } + }] +}; +exports.commonsRemix = commonsRemix; +var commonsShare = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M16.8,3.2C15,1.3,12.7,0.4,10,0.4c-2.7,0-4.9,0.9-6.8,2.8C1.3,5.1,0.4,7.4,0.4,10c0,2.6,0.9,4.9,2.8,6.8\r\n\tc1.9,1.9,4.1,2.8,6.8,2.8c2.6,0,4.9-1,6.9-2.9c1.8-1.8,2.7-4.1,2.7-6.7C19.6,7.3,18.7,5,16.8,3.2z M15.6,15.5\r\n\tc-1.6,1.6-3.5,2.4-5.6,2.4c-2.1,0-4-0.8-5.6-2.3C2.9,14,2.1,12.1,2.1,10c0-2.1,0.8-4,2.4-5.6C6,2.9,7.8,2.1,10,2.1\r\n\tc2.2,0,4,0.8,5.6,2.3c1.5,1.5,2.3,3.4,2.3,5.6C17.9,12.2,17.1,14,15.6,15.5z M13.9,7.2h-2.1V5.2c0-0.3-0.2-0.5-0.5-0.5H6.1\r\n\tc0,0,0,0,0,0c-0.3,0-0.5,0.3-0.5,0.5v7.1c0,0.3,0.2,0.5,0.5,0.5h2.1v2.1c0,0.3,0.2,0.5,0.5,0.5h5.2c0.3,0,0.5-0.2,0.5-0.5V7.8\r\n\tC14.5,7.5,14.2,7.2,13.9,7.2z M8.6,7.2c-0.3,0-0.5,0.3-0.5,0.5v3.9H6.6v-6h4.2v1.6H8.6C8.7,7.2,8.7,7.2,8.6,7.2z M13.4,14.3H9.2v-6\r\n\th4.2V14.3z" + } + }] +}; +exports.commonsShare = commonsShare; +var commonsSharealike = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M16.8,3.2C15,1.3,12.7,0.4,10,0.4c-2.7,0-4.9,0.9-6.8,2.8C1.3,5.1,0.4,7.4,0.4,10s0.9,4.9,2.8,6.8c1.9,1.9,4.1,2.8,6.8,2.8\r\n\tc2.6,0,4.9-1,6.9-2.9c1.8-1.8,2.7-4.1,2.7-6.7S18.7,5,16.8,3.2z M15.6,15.5c-1.6,1.6-3.5,2.4-5.6,2.4c-2.1,0-4-0.8-5.6-2.3\r\n\tC2.9,14,2.1,12.1,2.1,10s0.8-4,2.4-5.6C6,2.9,7.8,2.1,10,2.1s4,0.8,5.6,2.3c1.5,1.5,2.3,3.4,2.3,5.6C17.9,12.2,17.1,14,15.6,15.5z\r\n\t M14.9,10.1c0,2.9-2,5.1-5,5.1c-2.1,0-3.9-1.3-4.2-3.8h2.4c0.1,1.3,0.9,1.7,2.1,1.7c1.4,0,2.3-1.3,2.3-3.2c0-2-0.8-3.1-2.2-3.1\r\n\tc-1.1,0-2,0.4-2.2,1.7l0.7,0l-1.9,1.9L5,8.6l0.8,0c0.4-2.4,2.1-3.7,4.2-3.7C13,4.9,14.9,7.2,14.9,10.1z" + } + }] +}; +exports.commonsSharealike = commonsSharealike; +var commons = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M8.8,10.8l1.1,0.6c-0.2,0.4-0.6,0.8-1,1.1c-0.4,0.3-0.9,0.4-1.4,0.4c-0.8,0-1.5-0.2-2-0.8C5,11.6,4.8,10.9,4.8,10\r\n\tc0-0.9,0.3-1.6,0.8-2.1C6,7.4,6.7,7.1,7.5,7.1c1.1,0,2,0.4,2.4,1.3L8.7,9.1C8.5,8.8,8.4,8.6,8.2,8.5S7.8,8.4,7.7,8.4\r\n\tc-0.8,0-1.2,0.5-1.2,1.6c0,0.5,0.1,0.9,0.3,1.2c0.2,0.3,0.5,0.4,0.9,0.4C8.2,11.6,8.6,11.4,8.8,10.8z M13,11.6\r\n\tc-0.4,0-0.7-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.2c0-1.1,0.4-1.6,1.2-1.6c0.2,0,0.4,0.1,0.5,0.2c0.2,0.1,0.4,0.3,0.5,0.6l1.2-0.6\r\n\tc-0.5-0.9-1.3-1.3-2.4-1.3c-0.8,0-1.4,0.3-1.9,0.8c-0.5,0.5-0.8,1.2-0.8,2.1c0,0.9,0.2,1.6,0.7,2.1c0.5,0.5,1.2,0.8,2,0.8\r\n\tc0.5,0,1-0.1,1.4-0.4c0.4-0.3,0.8-0.6,1-1.1l-1.2-0.6C13.9,11.4,13.5,11.6,13,11.6z M19.6,10c0,2.7-0.9,4.9-2.7,6.7\r\n\tc-1.9,1.9-4.2,2.9-6.9,2.9c-2.6,0-4.9-0.9-6.8-2.8c-1.9-1.9-2.8-4.1-2.8-6.8c0-2.6,0.9-4.9,2.8-6.8C5.1,1.3,7.3,0.4,10,0.4\r\n\tc2.7,0,5,0.9,6.8,2.8C18.7,5,19.6,7.3,19.6,10z M17.9,10c0-2.2-0.8-4-2.3-5.6C14,2.9,12.2,2.1,10,2.1c-2.2,0-4,0.8-5.5,2.3\r\n\tC2.9,6,2.1,7.9,2.1,10c0,2.1,0.8,4,2.3,5.5c1.6,1.6,3.4,2.3,5.6,2.3c2.1,0,4-0.8,5.6-2.4C17.1,14,17.9,12.2,17.9,10z" + } + }] +}; +exports.commons = commons; +var card = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M18,3H2C0.899,3,0,3.9,0,5v10c0,1.1,0.899,2,2,2h16c1.1,0,2-0.9,2-2V5C20,3.9,19.1,3,18,3z M18,15H2V9h16V15z M18,6H2V5h16\r\n\tV6z M4,11.1v0.6h0.6v-0.6H4z M7.6,12.299V12.9h1.2v-0.601h0.6v-0.6H10v-0.6H8.8v0.6H8.199v0.6H7.6z M10,12.9v-0.601H9.399V12.9H10z\r\n\t M7,12.9v-0.601H5.8V12.9H7z M7.6,11.699h0.6v-0.6H7v1.199h0.6V11.699z M5.199,12.299H5.8v-0.6h0.6v-0.6h-1.2v0.6H4.6v0.6H4V12.9\r\n\th1.199V12.299z" + } + }] +}; +exports.card = card; +var credit = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M11,16.755V19H9v-2.143c-1.712-0.1-3.066-0.589-4.241-1.797l1.718-1.74c0.859,0.87,2.023,1.16,3.282,1.16\r\n\tc1.565,0,2.405-0.599,2.405-1.702c0-0.483-0.133-0.889-0.42-1.16c-0.267-0.251-0.572-0.387-1.202-0.483L8.9,10.903\r\n\tc-1.164-0.174-2.022-0.541-2.634-1.141C5.618,9.105,5.293,8.216,5.293,7.055c0-2.155,1.382-3.743,3.707-4.1V1h2v1.932\r\n\tc1.382,0.145,2.465,0.62,3.415,1.551l-1.679,1.682c-0.859-0.832-1.889-0.947-2.787-0.947c-1.412,0-2.099,0.792-2.099,1.74\r\n\tc0,0.348,0.115,0.716,0.401,0.986c0.267,0.252,0.706,0.464,1.26,0.541l1.602,0.232c1.241,0.174,2.023,0.522,2.596,1.063\r\n\tc0.726,0.696,1.05,1.702,1.05,2.92C14.759,14.95,13.192,16.362,11,16.755z" + } + }] +}; +exports.credit = credit; +var crop = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M6,14V1H4v3H1v2h3v8c0,1.0996094,0.8989258,2,2,2h8v3h2v-3h3v-2H6z M14,13h2V6c0-1.0996094-0.8989258-2-2-2H7v2h7V13z" + } + }] +}; +exports.crop = crop; +var cross = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M14.348,14.849c-0.469,0.469-1.229,0.469-1.697,0L10,11.819l-2.651,3.029c-0.469,0.469-1.229,0.469-1.697,0\r\n\tc-0.469-0.469-0.469-1.229,0-1.697l2.758-3.15L5.651,6.849c-0.469-0.469-0.469-1.228,0-1.697c0.469-0.469,1.228-0.469,1.697,0\r\n\tL10,8.183l2.651-3.031c0.469-0.469,1.228-0.469,1.697,0c0.469,0.469,0.469,1.229,0,1.697l-2.758,3.152l2.758,3.15\r\n\tC14.817,13.62,14.817,14.38,14.348,14.849z" + } + }] +}; +exports.cross = cross; +var cup = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,1C5.721,1,3.06,2.41,3.205,3.555l1.442,13.467C4.705,17.482,6.868,18.998,10,19c3.131-0.002,5.295-1.518,5.351-1.979\r\n\tl1.442-13.467C16.938,2.41,14.279,1,10,1z M10,5.291C6.868,5.289,4.647,4.174,4.647,3.756C4.646,3.342,6.869,2.225,10,2.227\r\n\tc3.131-0.002,5.354,1.115,5.351,1.529C15.351,4.174,13.131,5.289,10,5.291z" + } + }] +}; +exports.cup = cup; +var cw = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M19.315,10h-2.372V9.795c-0.108-4.434-3.724-7.996-8.169-7.996C4.259,1.799,0.6,5.471,0.6,10s3.659,8.199,8.174,8.199\r\n\tc1.898,0,3.645-0.65,5.033-1.738l-1.406-1.504c-1.016,0.748-2.27,1.193-3.627,1.193c-3.386,0-6.131-2.754-6.131-6.15\r\n\ts2.745-6.15,6.131-6.15c3.317,0,6.018,2.643,6.125,5.945V10h-2.672l3.494,3.894L19.315,10z" + } + }] +}; +exports.cw = cw; +var cycle = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M5.516,14.224c-2.262-2.432-2.222-6.244,0.128-8.611c0.962-0.969,2.164-1.547,3.414-1.736L8.989,1.8\r\n\tC7.234,2.013,5.537,2.796,4.192,4.151c-3.149,3.17-3.187,8.289-0.123,11.531l-1.741,1.752l5.51,0.301l-0.015-5.834L5.516,14.224z\r\n\t M12.163,2.265l0.015,5.834l2.307-2.322c2.262,2.434,2.222,6.246-0.128,8.611c-0.961,0.969-2.164,1.547-3.414,1.736l0.069,2.076\r\n\tc1.755-0.213,3.452-0.996,4.798-2.35c3.148-3.172,3.186-8.291,0.122-11.531l1.741-1.754L12.163,2.265z" + } + }] +}; +exports.cycle = cycle; +var database = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M16.726,12.641c-0.843,1.363-3.535,2.361-6.726,2.361c-3.191,0-5.883-0.998-6.727-2.361C3.095,12.351,3,12.506,3,12.648\r\n\tc0,0.144,0,2.002,0,2.002C3,16.59,6.134,18.6,10,18.6s7-2.01,7-3.949c0,0,0-1.858,0-2.002C17,12.506,16.904,12.351,16.726,12.641z\r\n\t M16.737,7.525c-0.83,1.205-3.532,2.09-6.737,2.09c-3.205,0-5.908-0.885-6.738-2.09C3.091,7.277,3,7.412,3,7.523\r\n\tc0,0.113,0,2.357,0,2.357c0,1.762,3.134,3.189,7,3.189s7-1.428,7-3.189c0,0,0-2.244,0-2.357C17,7.412,16.908,7.277,16.737,7.525z\r\n\t M10,1C6.134,1,3,2.18,3,3.633v1.26c0,1.541,3.134,2.791,7,2.791s7-1.25,7-2.791v-1.26C17,2.18,13.866,1,10,1z" + } + }] +}; +exports.database = database; +var pad = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M6,0H4C3.448,0,3,0.448,3,1v2c0,0.552,0.448,1,1,1h2c0.552,0,1-0.448,1-1V1\r\n\tC7,0.448,6.552,0,6,0z M11,0H9C8.448,0,8,0.448,8,1v2c0,0.552,0.448,1,1,1h2c0.552,0,1-0.448,1-1V1C12,0.448,11.552,0,11,0z M16,0\r\n\th-2c-0.552,0-1,0.448-1,1v2c0,0.552,0.448,1,1,1h2c0.552,0,1-0.448,1-1V1C17,0.448,16.552,0,16,0z M6,5H4C3.448,5,3,5.448,3,6v2\r\n\tc0,0.552,0.448,1,1,1h2c0.552,0,1-0.448,1-1V6C7,5.448,6.552,5,6,5z M11,5H9C8.448,5,8,5.448,8,6v2c0,0.552,0.448,1,1,1h2\r\n\tc0.552,0,1-0.448,1-1V6C12,5.448,11.552,5,11,5z M16,5h-2c-0.552,0-1,0.448-1,1v2c0,0.552,0.448,1,1,1h2c0.552,0,1-0.448,1-1V6\r\n\tC17,5.448,16.552,5,16,5z M6,10H4c-0.552,0-1,0.448-1,1v2c0,0.552,0.448,1,1,1h2c0.552,0,1-0.448,1-1v-2C7,10.448,6.552,10,6,10z\r\n\t M11,10H9c-0.552,0-1,0.448-1,1v2c0,0.552,0.448,1,1,1h2c0.552,0,1-0.448,1-1v-2C12,10.448,11.552,10,11,10z M11,16H9\r\n\tc-0.552,0-1,0.448-1,1v2c0,0.552,0.448,1,1,1h2c0.552,0,1-0.448,1-1v-2C12,16.448,11.552,16,11,16z M16,10h-2c-0.552,0-1,0.448-1,1\r\n\tv2c0,0.552,0.448,1,1,1h2c0.552,0,1-0.448,1-1v-2C17,10.448,16.552,10,16,10z" + } + }] +}; +exports.pad = pad; +var direction = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.06,1.941c-0.586-0.586-1.144-0.033-3.041,0.879C9.944,5.259,1.1,10.216,1.1,10.216L8.699,11.3l1.085,7.599\r\n\tc0,0,4.958-8.843,7.396-13.916C18.092,3.085,18.645,2.527,18.06,1.941z M16.236,3.896l-5.519,10.247l-0.561-4.655L16.236,3.896z" + } + }] +}; +exports.direction = direction; +var landscape = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M19,3H1C0.448,3,0,3.447,0,4v12c0,0.553,0.448,1,1,1h18c0.552,0,1-0.447,1-1V4C20,3.447,19.553,3,19,3z M18,15H2V5h16V15z" + } + }] +}; +exports.landscape = landscape; +var document = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M16,1H4C3.447,1,3,1.447,3,2v16c0,0.552,0.447,1,1,1h12c0.553,0,1-0.448,1-1V2\r\n\tC17,1.448,16.553,1,16,1z M15,17H5V3h10V17z" + } + }] +}; +exports.document = document; +var documents = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M19.398,7.415l-7.444-1.996l-1.303-4.861c-0.109-0.406-0.545-0.642-0.973-0.529L0.602,2.461\r\n\tC0.174,2.575-0.084,2.999,0.025,3.405l3.23,12.051c0.109,0.406,0.544,0.643,0.971,0.527l3.613-0.967l-0.492,1.838\r\n\tc-0.109,0.406,0.149,0.83,0.577,0.943l8.11,2.174c0.428,0.115,0.862-0.121,0.972-0.529l2.97-11.084\r\n\tC20.084,7.952,19.826,7.528,19.398,7.415z M1.633,3.631l7.83-2.096l2.898,10.818l-7.83,2.096L1.633,3.631z M15.678,18.463\r\n\tL8.864,16.6L9.4,14.598l3.901-1.047c0.428-0.113,0.688-0.537,0.578-0.943l-1.508-5.627l5.947,1.631L15.678,18.463z" + } + }] +}; +exports.documents = documents; +var single = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M7.8,10c0,1.215,0.986,2.2,2.201,2.2S12.2,11.214,12.2,10c0-1.215-0.984-2.199-2.199-2.199S7.8,8.785,7.8,10z" + } + }] +}; +exports.single = single; +var threeHorizontal = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10.001,7.8C8.786,7.8,7.8,8.785,7.8,10s0.986,2.2,2.201,2.2c1.215,0,2.199-0.985,2.199-2.2S11.216,7.8,10.001,7.8z\r\n\t M3.001,7.8C1.786,7.8,0.8,8.785,0.8,10s0.986,2.2,2.201,2.2C4.216,12.2,5.2,11.214,5.2,10S4.216,7.8,3.001,7.8z M17.001,7.8\r\n\tC15.786,7.8,14.8,8.785,14.8,10s0.986,2.2,2.201,2.2c1.215,0,2.199-0.985,2.199-2.2S18.216,7.8,17.001,7.8z" + } + }] +}; +exports.threeHorizontal = threeHorizontal; +var threeVertical = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10.001,7.8C8.786,7.8,7.8,8.785,7.8,10s0.986,2.2,2.201,2.2c1.215,0,2.199-0.985,2.199-2.2S11.216,7.8,10.001,7.8z\r\n\t M10.001,5.2C11.216,5.2,12.2,4.214,12.2,3S11.216,0.8,10.001,0.8C8.786,0.8,7.8,1.785,7.8,3S8.786,5.2,10.001,5.2z M10.001,14.8\r\n\tC8.786,14.8,7.8,15.785,7.8,17s0.986,2.2,2.201,2.2c1.215,0,2.199-0.985,2.199-2.2S11.216,14.8,10.001,14.8z" + } + }] +}; +exports.threeVertical = threeVertical; +var twoHorizontal = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M14.001,7.8C12.786,7.8,11.8,8.785,11.8,10s0.986,2.2,2.201,2.2c1.215,0,2.199-0.985,2.199-2.2S15.216,7.8,14.001,7.8z\r\n\t M6.001,7.8C4.786,7.8,3.8,8.785,3.8,10s0.986,2.2,2.201,2.2C7.216,12.2,8.2,11.214,8.2,10S7.216,7.8,6.001,7.8z" + } + }] +}; +exports.twoHorizontal = twoHorizontal; +var twoVertical = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10.001,8.2C11.216,8.2,12.2,7.214,12.2,6S11.216,3.8,10.001,3.8C8.786,3.8,7.8,4.785,7.8,6S8.786,8.2,10.001,8.2z\r\n\t M10.001,11.8C8.786,11.8,7.8,12.785,7.8,14s0.986,2.2,2.201,2.2c1.215,0,2.199-0.985,2.199-2.2S11.216,11.8,10.001,11.8z" + } + }] +}; +exports.twoVertical = twoVertical; +var download = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M15,7h-3V1H8v6H5l5,5L15,7z M19.338,13.532c-0.21-0.224-1.611-1.723-2.011-2.114C17.062,11.159,16.683,11,16.285,11h-1.757\r\n\tl3.064,2.994h-3.544c-0.102,0-0.194,0.052-0.24,0.133L12.992,16H7.008l-0.816-1.873c-0.046-0.081-0.139-0.133-0.24-0.133H2.408\r\n\tL5.471,11H3.715c-0.397,0-0.776,0.159-1.042,0.418c-0.4,0.392-1.801,1.891-2.011,2.114c-0.489,0.521-0.758,0.936-0.63,1.449\r\n\tl0.561,3.074c0.128,0.514,0.691,0.936,1.252,0.936h16.312c0.561,0,1.124-0.422,1.252-0.936l0.561-3.074\r\n\tC20.096,14.468,19.828,14.053,19.338,13.532z" + } + }] +}; +exports.download = download; +var drink = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M17.538,2.639C17.932,2.094,18,1,18,1H2c0,0,0.068,1.094,0.462,1.639L9,11v6H7c-2,0-2,2-2,2h10c0,0,0-2-2-2h-2v-6\r\n\tL17.538,2.639z M9.4,6c0-0.885,0.716-1.6,1.6-1.6s1.6,0.715,1.6,1.6c0,0.883-0.716,1.6-1.6,1.6S9.4,6.883,9.4,6z" + } + }] +}; +exports.drink = drink; +var drive = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M19.059,10.898l-3.171-7.927C15.654,2.384,15.086,2,14.454,2H5.546C4.914,2,4.346,2.384,4.112,2.971l-3.171,7.927\r\n\tc-0.288,0.721-0.373,1.507-0.246,2.272l0.59,3.539C1.409,17.454,2.053,18,2.808,18h14.383c0.755,0,1.399-0.546,1.523-1.291\r\n\tl0.59-3.539C19.433,12.405,19.348,11.619,19.059,10.898z M16.959,15.245C16.887,15.681,16.51,16,16.068,16H3.932\r\n\tc-0.442,0-0.819-0.319-0.891-0.755l-0.365-2.193C2.583,12.501,3.008,12,3.567,12h12.867c0.558,0,0.983,0.501,0.891,1.052\r\n\tL16.959,15.245z" + } + }] +}; +exports.drive = drive; +var drop = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10.203,0.561c-0.027-0.215-0.38-0.215-0.406,0C8.914,7.668,4.399,9.133,4.399,14.073c0,3.053,2.564,5.527,5.601,5.527\r\n\tc3.036,0,5.6-2.475,5.6-5.527C15.6,9.133,11.086,7.668,10.203,0.561z M9.35,8.418C9.291,8.637,9.227,8.862,9.161,9.096\r\n\tc-0.401,1.424-0.856,3.039-0.856,4.906c0,1.012-0.598,1.371-1.156,1.371c-0.639,0-1.156-0.523-1.156-1.166\r\n\tc0-2.207,1.062-3.649,2-4.92c0.295-0.398,0.572-0.775,0.797-1.15C8.893,7.965,9.17,7.973,9.296,8.143\r\n\tC9.355,8.223,9.375,8.325,9.35,8.418z" + } + }] +}; +exports.drop = drop; +var edit = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M17.561,2.439c-1.442-1.443-2.525-1.227-2.525-1.227L8.984,7.264L2.21,14.037L1.2,18.799l4.763-1.01l6.774-6.771\r\n\tl6.052-6.052C18.788,4.966,19.005,3.883,17.561,2.439z M5.68,17.217l-1.624,0.35c-0.156-0.293-0.345-0.586-0.69-0.932\r\n\tc-0.346-0.346-0.639-0.533-0.932-0.691l0.35-1.623l0.47-0.469c0,0,0.883,0.018,1.881,1.016c0.997,0.996,1.016,1.881,1.016,1.881\r\n\tL5.68,17.217z" + } + }] +}; +exports.edit = edit; +var email = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M14.608,12.172c0,0.84,0.239,1.175,0.864,1.175c1.393,0,2.28-1.775,2.28-4.727c0-4.512-3.288-6.672-7.393-6.672\r\n\tc-4.223,0-8.064,2.832-8.064,8.184c0,5.112,3.36,7.896,8.52,7.896c1.752,0,2.928-0.192,4.727-0.792l0.386,1.607\r\n\tc-1.776,0.577-3.674,0.744-5.137,0.744c-6.768,0-10.393-3.72-10.393-9.456c0-5.784,4.201-9.72,9.985-9.72\r\n\tc6.024,0,9.215,3.6,9.215,8.016c0,3.744-1.175,6.6-4.871,6.6c-1.681,0-2.784-0.672-2.928-2.161\r\n\tc-0.432,1.656-1.584,2.161-3.145,2.161c-2.088,0-3.84-1.609-3.84-4.848c0-3.264,1.537-5.28,4.297-5.28\r\n\tc1.464,0,2.376,0.576,2.782,1.488l0.697-1.272h2.016v7.057H14.608z M11.657,9.004c0-1.319-0.985-1.872-1.801-1.872\r\n\tc-0.888,0-1.871,0.719-1.871,2.832c0,1.68,0.744,2.616,1.871,2.616c0.792,0,1.801-0.504,1.801-1.896V9.004z" + } + }] +}; +exports.email = email; +var flirt = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M7.5,9.75C8.329,9.75,9,8.967,9,8S8.329,6.25,7.5,6.25S6,7.034,6,8S6.672,9.75,7.5,9.75z M10,0.4\r\n\tC4.698,0.4,0.4,4.698,0.4,10C0.4,15.302,4.698,19.6,10,19.6c5.301,0,9.6-4.298,9.6-9.601C19.6,4.698,15.301,0.4,10,0.4z M10,17.599\r\n\tc-4.197,0-7.6-3.402-7.6-7.6c0-4.197,3.402-7.6,7.6-7.6S17.6,5.802,17.6,10C17.6,14.197,14.197,17.599,10,17.599z M14.341,11.336\r\n\tc-0.363-0.187-0.815-0.043-1.008,0.32c-0.034,0.065-0.869,1.593-3.332,1.593c-2.451,0-3.291-1.513-3.333-1.592\r\n\tc-0.188-0.365-0.632-0.514-1.004-0.329c-0.37,0.185-0.521,0.636-0.335,1.007c0.05,0.099,1.248,2.414,4.672,2.414\r\n\tc3.425,0,4.621-2.316,4.67-2.415C14.855,11.967,14.707,11.524,14.341,11.336z M11.25,8.75h2.5c0.414,0,0.75-0.336,0.75-0.75\r\n\tc0-0.414-0.336-0.75-0.75-0.75h-2.5c-0.414,0-0.75,0.336-0.75,0.75C10.5,8.415,10.836,8.75,11.25,8.75z" + } + }, { + "name": "g", + "attribs": {} + }, { + "name": "g", + "attribs": {} + }, { + "name": "g", + "attribs": {} + }, { + "name": "g", + "attribs": {} + }, { + "name": "g", + "attribs": {} + }, { + "name": "g", + "attribs": {} + }] +}; +exports.flirt = flirt; +var happy = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,0.4C4.698,0.4,0.4,4.698,0.4,10C0.4,15.302,4.698,19.6,10,19.6c5.301,0,9.6-4.298,9.6-9.601\r\n\tC19.6,4.698,15.301,0.4,10,0.4z M10,17.599c-4.197,0-7.6-3.402-7.6-7.6S5.802,2.4,10,2.4c4.197,0,7.601,3.402,7.601,7.6\r\n\tS14.197,17.599,10,17.599z M7.501,9.75C8.329,9.75,9,8.967,9,8s-0.672-1.75-1.5-1.75s-1.5,0.783-1.5,1.75S6.672,9.75,7.501,9.75z\r\n\t M12.5,9.75C13.329,9.75,14,8.967,14,8s-0.672-1.75-1.5-1.75S11,7.034,11,8S11.672,9.75,12.5,9.75z M14.341,11.336\r\n\tc-0.363-0.186-0.815-0.043-1.008,0.32c-0.034,0.066-0.869,1.593-3.332,1.593c-2.451,0-3.291-1.513-3.333-1.592\r\n\tc-0.188-0.365-0.632-0.514-1.004-0.329c-0.37,0.186-0.52,0.636-0.335,1.007c0.05,0.099,1.248,2.414,4.672,2.414\r\n\tc3.425,0,4.621-2.316,4.67-2.415C14.855,11.967,14.707,11.524,14.341,11.336z" + } + }] +}; +exports.happy = happy; +var neutral = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,0.4C4.698,0.4,0.4,4.698,0.4,10C0.4,15.302,4.698,19.6,10,19.6c5.301,0,9.6-4.298,9.6-9.601\r\n\tC19.6,4.698,15.301,0.4,10,0.4z M10,17.599c-4.197,0-7.6-3.402-7.6-7.6c0-4.197,3.402-7.6,7.6-7.6c4.197,0,7.6,3.402,7.6,7.6\r\n\tC17.6,14.197,14.197,17.599,10,17.599z M12.5,6.251C11.672,6.251,11,7.034,11,8s0.672,1.75,1.5,1.75C13.329,9.75,14,8.967,14,8\r\n\tS13.329,6.251,12.5,6.251z M7.501,9.75C8.329,9.75,9,8.967,9,8s-0.672-1.75-1.5-1.75c-0.828,0-1.5,0.783-1.5,1.75\r\n\tS6.672,9.75,7.501,9.75z M13,12.25h-6c-0.414,0-0.75,0.336-0.75,0.75c0,0.414,0.336,0.75,0.75,0.75h6c0.414,0,0.75-0.336,0.75-0.75\r\n\tC13.75,12.585,13.415,12.25,13,12.25z" + } + }] +}; +exports.neutral = neutral; +var sad = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10.001,0.4C4.698,0.4,0.4,4.698,0.4,10c0,5.303,4.298,9.601,9.601,9.601c5.301,0,9.6-4.298,9.6-9.601\r\n\tC19.6,4.698,15.301,0.4,10.001,0.4z M10,17.599c-4.197,0-7.6-3.402-7.6-7.6c0-4.197,3.402-7.6,7.6-7.6c4.197,0,7.6,3.402,7.6,7.6\r\n\tC17.6,14.197,14.197,17.599,10,17.599z M12.501,9.75c0.828,0,1.5-0.783,1.5-1.75s-0.672-1.75-1.5-1.75c-0.828,0-1.5,0.783-1.5,1.75\r\n\tS11.672,9.75,12.501,9.75z M7.501,9.75c0.828,0,1.5-0.783,1.5-1.75s-0.672-1.75-1.5-1.75c-0.828,0-1.5,0.783-1.5,1.75\r\n\tS6.672,9.75,7.501,9.75z M10.002,11.25c-3.424,0-4.622,2.315-4.672,2.414c-0.186,0.371-0.035,0.821,0.335,1.007\r\n\tC5.773,14.724,5.887,14.75,6,14.75c0.275,0,0.54-0.151,0.672-0.414c0.008-0.017,0.822-1.586,3.33-1.586\r\n\tc2.463,0,3.298,1.527,3.328,1.585c0.184,0.37,0.635,0.523,1.006,0.336c0.371-0.184,0.521-0.636,0.336-1.006\r\n\tC14.623,13.566,13.426,11.25,10.002,11.25z" + } + }] +}; +exports.sad = sad; +var erase = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M18,3H8.446c-0.44,0-1.071,0.236-1.402,0.525L0.248,9.473c-0.331,0.289-0.331,0.764,0,1.053l6.796,5.947\r\n\tC7.375,16.762,8.006,17,8.446,17H18c1.1,0,2-0.9,2-2V5C20,3.9,19.1,3,18,3z M15.191,14l-2.557-2.557L10.078,14l-1.443-1.443\r\n\tL11.191,10L8.635,7.443L10.078,6l2.557,2.555L15.19,6l1.444,1.443L14.078,10l2.557,2.555L15.191,14z" + } + }] +}; +exports.erase = erase; +var eraser = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M16.998,4.18l-3.154-2.425c-0.872-0.671-2.135-0.506-2.807,0.365l-8.4,10.897c-0.671,0.871-0.507,2.132,0.365,2.803\r\n\tl3.153,2.425c0.872,0.671,2.135,0.506,2.807-0.365l8.401-10.897C18.034,6.112,17.87,4.851,16.998,4.18z M8.548,16.467l-0.537,0.681\r\n\tc-0.152,0.197-0.385,0.31-0.639,0.31c-0.124,0-0.309-0.029-0.485-0.164l-3.153-2.425c-0.168-0.129-0.275-0.317-0.303-0.53\r\n\tc-0.028-0.213,0.028-0.422,0.157-0.589l0.537-0.681c0.152-0.197,0.385-0.311,0.64-0.311c0.124,0,0.309,0.029,0.485,0.164\r\n\tl3.154,2.425c0.168,0.129,0.275,0.317,0.303,0.53C8.733,16.09,8.677,16.299,8.548,16.467z" + } + }] +}; +exports.eraser = eraser; +var exportIcon = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M15,15H2V6h2.595c0,0,0.689-0.896,2.17-2H1C0.447,4,0,4.449,0,5v11c0,0.553,0.447,1,1,1h15c0.553,0,1-0.447,1-1v-3.746\r\n\tl-2,1.645V15z M13.361,8.05v3.551L20,6.4l-6.639-4.999v3.131C5.3,4.532,5.3,12.5,5.3,12.5C7.582,8.752,8.986,8.05,13.361,8.05z" + } + }] +}; +exports.exportIcon = exportIcon; +var withLine = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.5214844,1.4776001C18.131958,1.086853,17.4981079,1.086792,17.1074829,1.477478L1.4785156,17.1084595\r\n\tc-0.390625,0.390625-0.390625,1.0244141,0.0001221,1.4140015c0.390625,0.390686,1.0233765,0.390625,1.4140015-0.000061\r\n\tL18.5214233,2.8916016C18.9121704,2.5009766,18.9121704,1.8682251,18.5214844,1.4776001z M3.1083984,13.4973145l2.5593262-2.5584717\r\n\tC5.5981445,10.6357422,5.5546875,10.3234863,5.5546875,10c0-2.3789062,1.9902344-4.3085938,4.4453125-4.3085938\r\n\tc0.2861328,0,0.5644531,0.0314941,0.8354492,0.081665l1.2021484-1.2016602C11.394043,4.467041,10.7192383,4.4003906,10,4.4003906\r\n\tC3.4394531,4.4003906,0,9.2324219,0,10C0,10.4234619,1.057373,12.0908203,3.1083984,13.4973145z M16.8950195,6.5046387\r\n\tL14.3330078,9.065918C14.4018555,9.3674316,14.4443359,9.6784668,14.4443359,10\r\n\tc0,2.3789062-1.9892578,4.3066406-4.4443359,4.3066406c-0.2839355,0-0.5598145-0.0317383-0.8288574-0.0810547L7.967041,15.4291992\r\n\tC8.609375,15.5330811,9.2827148,15.5996094,10,15.5996094c6.5605469,0,10-4.8339844,10-5.5996094\r\n\tC20,9.5756836,18.9438477,7.9101562,16.8950195,6.5046387z" + } + }] +}; +exports.withLine = withLine; +var eye = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,4.4C3.439,4.4,0,9.232,0,10c0,0.766,3.439,5.6,10,5.6c6.56,0,10-4.834,10-5.6C20,9.232,16.56,4.4,10,4.4z M10,14.307\r\n\tc-2.455,0-4.445-1.928-4.445-4.307c0-2.379,1.99-4.309,4.445-4.309c2.455,0,4.444,1.93,4.444,4.309\r\n\tC14.444,12.379,12.455,14.307,10,14.307z M10,10c-0.407-0.447,0.663-2.154,0-2.154c-1.228,0-2.223,0.965-2.223,2.154\r\n\tc0,1.189,0.995,2.154,2.223,2.154c1.227,0,2.223-0.965,2.223-2.154C12.223,9.453,10.346,10.379,10,10z" + } + }] +}; +exports.eye = eye; +var feather = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M4.254,19.567c0.307-0.982,0.77-2.364,1.391-4.362c2.707-0.429,3.827,0.341,5.546-2.729\r\n\tc-1.395,0.427-3.077-0.792-2.987-1.321c0.091-0.528,3.913,0.381,6.416-3.173c-3.155,0.696-4.164-0.836-3.757-1.067\r\n\tc0.939-0.534,3.726-0.222,5.212-1.669c0.766-0.745,1.125-2.556,0.813-3.202c-0.374-0.781-2.656-1.946-3.914-1.836\r\n\tc-1.258,0.109-3.231,4.79-3.817,4.754C8.573,4.925,8.454,2.864,9.476,0.949c-1.077,0.477-3.051,1.959-3.67,3.226\r\n\tc-1.153,2.357,0.108,7.766-0.296,7.958c-0.405,0.193-1.766-2.481-2.172-3.694c-0.555,1.859-0.568,3.721,1.053,6.194\r\n\tc-0.611,1.623-0.945,3.491-0.996,4.441C3.371,19.833,4.119,19.996,4.254,19.567z" + } + }] +}; +exports.feather = feather; +var fingerprint = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M9.6795855,7.8502398c-0.3737011,0.09375-0.6062469,0.4970703-0.5193815,0.9003906\r\n\tc0.7166376,3.3271484,0.8731756,6.8144531,0.4515181,10.0849619c-0.0524817,0.4106445,0.2126379,0.7895508,0.5926733,0.8461914\r\n\tc0.0325747,0.0048828,0.0651484,0.0073242,0.096818,0.0073242c0.3411264,0,0.6388206-0.2714844,0.6876822-0.6464844\r\n\tc0.4442797-3.4511728,0.2805023-7.1274424-0.4750433-10.6318369C10.4269867,8.0064898,10.0532856,7.7584429,9.6795855,7.8502398z\r\n\t M8.0689611,12.0733843c-0.3818445,0.0380859-0.6632514,0.4033203-0.6279626,0.815918\r\n\tc0.1692061,1.9672852,0.1248689,3.9091806-0.1321073,5.7714853c-0.0561004,0.409668,0.2063046,0.7915039,0.5854349,0.8520508\r\n\tc0.0343838,0.0058594,0.068768,0.0083008,0.1031523,0.0083008c0.3384123,0,0.6352015-0.2675781,0.6867771-0.6396484\r\n\tc0.2723579-1.980957,0.3203154-4.0439463,0.1411562-6.1308603C8.790122,12.3380327,8.439043,12.0304155,8.0689611,12.0733843z\r\n\t M9.1583948,5.4142046c-0.783596,0.1967773-1.4495621,0.7114258-1.8757439,1.4487305\r\n\tC6.8564687,7.6012163,6.7225518,8.4727983,6.9044256,9.3165483c0.08777,0.409668,0.1673961,0.8198242,0.2370691,1.2294922\r\n\tc0.0678635,0.4077148,0.4388499,0.6767578,0.8080268,0.6025391c0.3782248-0.074707,0.6279626-0.4658203,0.5582891-0.8730469\r\n\tc-0.0732918-0.4321289-0.156538-0.8647461-0.2497368-1.2983398c-0.097723-0.4541016-0.0253363-0.9228516,0.2044945-1.3203125\r\n\tc0.2298307-0.3979492,0.5890541-0.6757812,1.0098076-0.78125c0.8722706-0.2192383,1.7418261,0.3706055,1.9436064,1.309082\r\n\tc0.7464972,3.4614258,0.9419441,6.9296875,0.5809107,10.309083c-0.0443373,0.4116211,0.2298307,0.7836914,0.6107702,0.8310547\r\n\tc0.0271454,0.003418,0.0542908,0.0048828,0.0805311,0.0048828c0.3483658,0,0.6487741-0.2817383,0.6894922-0.6640625\r\n\tc0.3791304-3.5507822,0.1746349-7.1914072-0.6080561-10.8203135C12.3950253,6.1026812,10.7789717,5.0118608,9.1583948,5.4142046z\r\n\t M6.7478876,5.9469194c0.2388787-0.3251953,0.1873026-0.796875-0.1140108-1.0537109\r\n\tc-0.302218-0.2573242-0.7383533-0.2001953-0.9754229,0.1230469C5.5363002,5.1827593,5.4222894,5.3580523,5.3173275,5.5396929\r\n\tc-0.753736,1.3056641-0.9917102,2.8481445-0.6686802,4.34375c0.5935779,2.7563477,0.7320194,5.5878906,0.400846,8.1889658\r\n\tc-0.0524807,0.4101562,0.2135434,0.7885742,0.5935783,0.8452148c0.0325747,0.0043945,0.0642443,0.0068359,0.0959134,0.0068359\r\n\tc0.3420315,0,0.6397257-0.2719727,0.6876826-0.6479492c0.3537941-2.7802744,0.2072091-5.7998056-0.4243727-8.7329111\r\n\tC5.7643209,8.4386187,5.9398608,7.2984819,6.4972453,6.3326616C6.5750618,6.197896,6.6583076,6.069478,6.7478876,5.9469194z\r\n\t M15.10956,12.8189898c-0.3827496,0.0205078-0.6786337,0.3720703-0.6596327,0.7861328\r\n\tc0.0633392,1.3837891,0.0434332,2.7739267-0.058814,4.1313486c-0.0316696,0.4130859,0.253356,0.7749023,0.6361055,0.8085938\r\n\tc0.019002,0.0014648,0.0380039,0.0024414,0.0570049,0.0024414c0.3583193,0,0.6623468-0.296875,0.6913023-0.6889648\r\n\tc0.1076765-1.4223633,0.1284876-2.8784189,0.0624342-4.3276377C15.8189583,13.1168413,15.4841652,12.8082476,15.10956,12.8189898z\r\n\t M14.9403534,11.7843218c0.0289555,0,0.05791-0.0019531,0.0868654-0.0058594\r\n\tc0.3809395-0.0507812,0.6505833-0.4257812,0.6035318-0.8364258c-0.1402512-1.2226562-0.3447466-2.4550781-0.6053419-3.6625977\r\n\tc-0.5528603-2.574707-2.7498236-4.4438477-5.22367-4.4438477c-0.390893,0-0.781786,0.0478516-1.1636305,0.1425781\r\n\tc-0.3157902,0.0791016-0.625248,0.1889648-0.9211321,0.3271484C7.3649917,3.4698689,7.2030244,3.9117634,7.3550382,4.291646\r\n\tC7.507957,4.6720171,7.9178519,4.8473101,8.2689314,4.682271c0.2189732-0.1025391,0.449708-0.184082,0.6822538-0.2426758\r\n\tc0.2777872-0.0688477,0.5637178-0.1040039,0.8505535-0.1040039c1.8341208,0,3.4610329,1.3803711,3.8700228,3.2836914\r\n\tc0.2497368,1.1572266,0.4451838,2.3374023,0.5800056,3.5073242C14.2951994,11.5064898,14.5947027,11.7843218,14.9403534,11.7843218z\r\n\t M17.282093,6.7164507c-0.3157921-1.4726562-1.0152359-2.8251951-2.0205193-3.913574\r\n\tc-0.2705488-0.2929688-0.7103033-0.2920532-0.9826622,0.0009155c-0.2723579,0.2924805-0.2723579,0.7734375-0.0018091,1.0664062\r\n\tc0.822504,0.8906248,1.3934612,2.0072629,1.6513424,3.2074583c0.6469641,3.003418,0.9365149,6.0850124,0.860507,9.0986834\r\n\tC16.7789993,16.5904026,17.0812168,17,17.4648705,17h0.0190029c0.3755093,0,0.684063-0.3749294,0.6949196-0.782156\r\n\tC18.257515,13.0757551,17.9562016,9.8443804,17.282093,6.7164507z M3.3900077,12.8546343\r\n\tc0.0334792,0,0.0678635-0.0024414,0.1022475-0.0078125c0.3791301-0.0600586,0.6415353-0.4414062,0.5863395-0.8510742\r\n\tc-0.0841506-0.6181641-0.1954465-1.2524414-0.332078-1.8867188C3.3673866,8.3546343,3.6460788,6.5435991,4.5319219,5.0108843\r\n\tc0.8831291-1.5297849,2.2675419-2.597656,3.8944526-3.0063474c1.4052248-0.3491211,2.9009333-0.1430664,4.1930523,0.5581055\r\n\tc0.3411264,0.1875,0.7600698,0.0371094,0.9328947-0.3325195c0.1728258-0.3701172,0.0343838-0.8212891-0.3085518-1.0073242\r\n\tc-1.5789547-0.8579102-3.4076462-1.105957-5.1304712-0.6796875c-1.9897542,0.5-3.6809092,1.8046875-4.7612944,3.6738279\r\n\tC2.2698097,6.0909624,1.929588,8.3043413,2.3928685,10.4488726c0.1275833,0.59375,0.2316403,1.1870117,0.3103619,1.7646484\r\n\tC2.7539017,12.5865679,3.0506909,12.8546343,3.3900077,12.8546343z M3.5972173,14h-0.023526\r\n\tc-0.3836544,0-0.684063,0.2493391-0.6713951,0.6634016c0.0271454,0.8476562,0.0036194,1.5799913-0.0696731,2.3895617\r\n\tc-0.0380034,0.4121094,0.2415936,0.777544,0.6234381,0.8180714c0.0226212,0.0024414,0.0461471,0.0025425,0.0687683,0.0025425\r\n\tc0.3528895,0,0.6551077-0.2373772,0.6903965-0.6245842c0.0796266-0.875,0.1058669-1.7228241,0.0769119-2.6368866\r\n\tC4.2785654,14.2068329,3.9700134,14,3.5972173,14z" + } + }] +}; +exports.fingerprint = fingerprint; +var flag = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.926,5.584c-9.339,13.568-6.142-0.26-14.037,6.357L6.684,19H4.665L1,4.59l1.85-0.664\r\n\tc8.849-6.471,4.228,5.82,15.637,1.254C18.851,5.033,19.142,5.27,18.926,5.584z" + } + }] +}; +exports.flag = flag; +var flash = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M6.803,18.998c-0.194-0.127,3.153-7.16,3.038-7.469c-0.116-0.309-3.665-1.436-3.838-1.979\r\n\tc-0.174-0.543,7.007-8.707,7.196-8.549c0.188,0.158-3.129,7.238-3.039,7.469c0.091,0.23,3.728,1.404,3.838,1.979\r\n\tC14.109,11.024,6.996,19.125,6.803,18.998z" + } + }] +}; +exports.flash = flash; +var flashlight = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M17.115,2.884c-1.676-1.676-3.779-2.288-4.449-1.618L9.97,3.962C9.561,4.372,9.204,5.741,9.368,7.126l-8.161,8.161\r\n\tc-0.484,0.484-0.092,1.66,0.876,2.629c0.968,0.969,2.146,1.359,2.629,0.877l8.161-8.162c1.386,0.164,2.755-0.193,3.164-0.601\r\n\tl2.696-2.697C19.403,6.663,18.791,4.559,17.115,2.884z M8.141,11.039C7.768,10.667,7.89,9.943,8.41,9.422\r\n\tc0.521-0.521,1.246-0.643,1.618-0.27c0.372,0.371,0.251,1.097-0.27,1.617C9.237,11.291,8.513,11.412,8.141,11.039z M14.891,5.108\r\n\tc-1.298-1.297-1.623-3.01-1.508-3.125c0.115-0.116,1.76,0.277,3.059,1.575c1.298,1.298,1.688,2.946,1.575,3.059\r\n\tC17.905,6.729,16.188,6.407,14.891,5.108z" + } + }] +}; +exports.flashlight = flashlight; +var branch = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M16.4,4c0-1.326-1.074-2.4-2.4-2.4S11.6,2.674,11.6,4c0,0.961,0.568,1.784,1.384,2.167c-0.082,1.584-1.27,2.122-3.335,2.896\r\n\tC8.779,9.39,7.82,9.752,7,10.297V6.176C7.825,5.796,8.4,4.967,8.4,4c0-1.326-1.074-2.4-2.4-2.4S3.6,2.674,3.6,4\r\n\tc0,0.967,0.576,1.796,1.4,2.176v7.649C4.175,14.204,3.6,15.033,3.6,16c0,1.326,1.074,2.4,2.4,2.4s2.4-1.075,2.4-2.4\r\n\tc0-0.961-0.568-1.784-1.384-2.167c0.082-1.583,1.271-2.122,3.335-2.896c2.03-0.762,4.541-1.711,4.64-4.756\r\n\tC15.82,5.803,16.4,4.971,16.4,4z M6,2.615c0.764,0,1.384,0.619,1.384,1.385c0,0.764-0.62,1.385-1.384,1.385\r\n\tC5.235,5.385,4.616,4.764,4.616,4C4.616,3.234,5.235,2.615,6,2.615z M6,17.385c-0.766,0-1.385-0.621-1.385-1.385\r\n\tc0-0.766,0.619-1.385,1.385-1.385c0.764,0,1.384,0.619,1.384,1.385C7.384,16.764,6.764,17.385,6,17.385z M14,5.385\r\n\tc-0.766,0-1.385-0.621-1.385-1.385c0-0.766,0.619-1.385,1.385-1.385c0.764,0,1.384,0.619,1.384,1.385\r\n\tC15.384,4.764,14.764,5.385,14,5.385z" + } + }] +}; +exports.branch = branch; +var cascade = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M14,14.6c-0.967,0-1.796,0.576-2.176,1.4H8.5C7.672,16,7,15.328,7,14.5v-3.85C7.456,10.868,7.961,11,8.5,11h3.324\r\n\tc0.38,0.824,1.208,1.4,2.176,1.4c1.326,0,2.4-1.075,2.4-2.4S15.326,7.6,14,7.6c-0.967,0-1.796,0.576-2.176,1.4H8.5\r\n\tC7.672,9,7,8.328,7,7.5V5.176C7.825,4.796,8.4,3.967,8.4,3c0-1.326-1.074-2.4-2.4-2.4S3.6,1.674,3.6,3\r\n\tc0,0.967,0.576,1.796,1.4,2.176V14.5C5,16.433,6.567,18,8.5,18h3.324c0.38,0.824,1.208,1.4,2.176,1.4c1.326,0,2.4-1.075,2.4-2.4\r\n\tS15.326,14.6,14,14.6z M14,8.615c0.764,0,1.384,0.619,1.384,1.385c0,0.764-0.62,1.385-1.384,1.385c-0.766,0-1.385-0.621-1.385-1.385\r\n\tC12.616,9.234,13.235,8.615,14,8.615z M6,1.615c0.764,0,1.384,0.619,1.384,1.385c0,0.764-0.62,1.385-1.384,1.385\r\n\tC5.235,4.385,4.616,3.764,4.616,3C4.616,2.234,5.235,1.615,6,1.615z M14,18.385c-0.766,0-1.385-0.621-1.385-1.385\r\n\tc0-0.766,0.619-1.385,1.385-1.385c0.764,0,1.384,0.619,1.384,1.385C15.384,17.764,14.764,18.385,14,18.385z" + } + }] +}; +exports.cascade = cascade; +var line = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M11,13.824V6.176c0.825-0.38,1.4-1.208,1.4-2.176c0-1.326-1.074-2.4-2.4-2.4S7.6,2.674,7.6,4c0,0.967,0.576,1.796,1.4,2.176\r\n\tv7.649C8.175,14.204,7.6,15.033,7.6,16c0,1.326,1.074,2.4,2.4,2.4s2.4-1.075,2.4-2.4C12.4,15.033,11.825,14.204,11,13.824z\r\n\t M10,2.615c0.764,0,1.384,0.619,1.384,1.385c0,0.764-0.62,1.385-1.384,1.385C9.235,5.385,8.616,4.764,8.616,4\r\n\tC8.616,3.234,9.235,2.615,10,2.615z M10,17.385c-0.766,0-1.385-0.621-1.385-1.385c0-0.766,0.619-1.385,1.385-1.385\r\n\tc0.764,0,1.384,0.619,1.384,1.385C11.384,16.764,10.764,17.385,10,17.385z" + } + }] +}; +exports.line = line; +var parallel = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M8.4,4c0-1.326-1.074-2.4-2.4-2.4S3.6,2.674,3.6,4c0,0.967,0.576,1.796,1.4,2.176v7.649C4.175,14.204,3.6,15.033,3.6,16\r\n\tc0,1.326,1.074,2.4,2.4,2.4s2.4-1.075,2.4-2.4c0-0.967-0.576-1.796-1.4-2.176V6.176C7.825,5.796,8.4,4.967,8.4,4z M7.384,16\r\n\tc0,0.764-0.62,1.385-1.384,1.385c-0.766,0-1.385-0.621-1.385-1.385c0-0.766,0.619-1.385,1.385-1.385\r\n\tC6.764,14.615,7.384,15.234,7.384,16z M6,5.385C5.235,5.385,4.616,4.764,4.616,4c0-0.766,0.619-1.385,1.385-1.385\r\n\tc0.764,0,1.384,0.619,1.384,1.385C7.384,4.764,6.764,5.385,6,5.385z M15,13.824V6.176c0.825-0.38,1.4-1.208,1.4-2.176\r\n\tc0-1.326-1.074-2.4-2.4-2.4S11.6,2.674,11.6,4c0,0.967,0.576,1.796,1.4,2.176v7.649c-0.825,0.38-1.4,1.208-1.4,2.176\r\n\tc0,1.326,1.074,2.4,2.4,2.4s2.4-1.075,2.4-2.4C16.4,15.033,15.825,14.204,15,13.824z M12.616,4c0-0.766,0.619-1.385,1.385-1.385\r\n\tc0.764,0,1.384,0.619,1.384,1.385c0,0.764-0.62,1.385-1.384,1.385C13.235,5.385,12.616,4.764,12.616,4z M14,17.385\r\n\tc-0.766,0-1.385-0.621-1.385-1.385c0-0.766,0.619-1.385,1.385-1.385c0.764,0,1.384,0.619,1.384,1.385\r\n\tC15.384,16.764,14.764,17.385,14,17.385z" + } + }] +}; +exports.parallel = parallel; +var tree = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M18,14.824V12.5c0-1.933-1.567-3.5-3.5-3.5h-2C11.672,9,11,8.328,11,7.5V5.176c0.825-0.38,1.4-1.208,1.4-2.176\r\n\tc0-1.326-1.074-2.4-2.4-2.4S7.6,1.674,7.6,3c0,0.967,0.576,1.796,1.4,2.176V7.5C9,8.328,8.328,9,7.5,9h-2C3.567,9,2,10.567,2,12.5\r\n\tv2.324C1.175,15.204,0.6,16.033,0.6,17c0,1.326,1.074,2.4,2.4,2.4s2.4-1.075,2.4-2.4c0-0.967-0.576-1.796-1.4-2.176V12.5\r\n\tC4,11.672,4.672,11,5.5,11h2c0.539,0,1.044-0.132,1.5-0.35v4.174C8.175,15.204,7.6,16.033,7.6,17c0,1.326,1.074,2.4,2.4,2.4\r\n\ts2.4-1.075,2.4-2.4c0-0.967-0.576-1.796-1.4-2.176V10.65c0.456,0.218,0.961,0.35,1.5,0.35h2c0.828,0,1.5,0.672,1.5,1.5v2.324\r\n\tc-0.825,0.38-1.4,1.208-1.4,2.176c0,1.326,1.074,2.4,2.4,2.4s2.4-1.075,2.4-2.4C19.4,16.033,18.825,15.204,18,14.824z M10,1.615\r\n\tc0.764,0,1.384,0.619,1.384,1.385c0,0.764-0.62,1.385-1.384,1.385C9.235,4.385,8.616,3.764,8.616,3\r\n\tC8.616,2.234,9.235,1.615,10,1.615z M3,18.385c-0.766,0-1.385-0.621-1.385-1.385c0-0.766,0.619-1.385,1.385-1.385\r\n\tc0.764,0,1.384,0.619,1.384,1.385C4.384,17.764,3.764,18.385,3,18.385z M10,18.385c-0.766,0-1.385-0.621-1.385-1.385\r\n\tc0-0.766,0.619-1.385,1.385-1.385c0.764,0,1.384,0.619,1.384,1.385C11.384,17.764,10.764,18.385,10,18.385z M17,18.385\r\n\tc-0.766,0-1.385-0.621-1.385-1.385c0-0.766,0.619-1.385,1.385-1.385c0.764,0,1.384,0.619,1.384,1.385\r\n\tC18.384,17.764,17.764,18.385,17,18.385z" + } + }] +}; +exports.tree = tree; +var flower = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M12.6591797,8.7595215c0.4396973-1.0861816-0.3630371-2.5083008-1.2099609-3.4055176\r\n\tc0.3283691-1.1893311,0.3718262-2.8215332-0.5253906-3.5754395c-0.8969727-0.7540283-2.4973145-0.4300537-3.6125488,0.0980225\r\n\tC6.2817383,1.1970215,4.7426758,0.651123,3.748291,1.2713623C2.7543945,1.8916016,2.5678711,3.513916,2.7253418,4.7375488\r\n\tc-0.9645996,0.7692871-1.9592285,2.064209-1.6765137,3.201416s1.7678223,1.815918,2.9804688,2.0440674\r\n\tc0.4333496,1.1551514,1.357666,2.5012207,2.5266113,2.5838623c0.828125,0.0585938,1.619873-0.53125,2.223877-1.2633057\r\n\tc1.2209473,1.5201416,2.0817871,3.1278076,2.5551758,4.706543C10.6123047,14.9285889,9.1147461,14,6,14\r\n\tc0,4.1550293,3.0419922,5.0028076,5,5.0028076l3.2001953,0.0020752c0-2.7229004-0.986084-5.909668-3.2895508-8.9008789\r\n\tC11.692627,9.8570557,12.388916,9.4267578,12.6591797,8.7595215z M8.2827148,8.5396729\r\n\tC7.1357422,9.255127,5.6259766,8.9055176,4.9106445,7.7585449C4.1950684,6.6116943,4.5446777,5.1018066,5.6916504,4.3863525\r\n\tS8.3483887,4.020752,9.0639648,5.1674805C9.7792969,6.3144531,9.4296875,7.8242188,8.2827148,8.5396729z M14.0200195,12.2478027\r\n\tc1.0825195,2.1699219,1.6687012,4.4530029,1.6774902,6.7053223C18.9963379,16.5820312,19,12.2062988,19,8.0028076\r\n\tC19,8.0028076,15.3293457,9.0374756,14.0200195,12.2478027z" + } + }] +}; +exports.flower = flower; +var images = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.405,2.799C18.293,2.359,17.749,2,17.195,2H2.805c-0.555,0-1.099,0.359-1.21,0.799L1.394,4h17.211L18.405,2.799z\r\n\t M19.412,5H0.587C0.245,5-0.022,5.294,0.01,5.635l0.923,11.669C0.971,17.698,1.303,18,1.699,18H18.3\r\n\tc0.397,0,0.728-0.302,0.766-0.696l0.923-11.669C20.022,5.294,19.754,5,19.412,5z M12.438,8.375c0.518,0,0.938,0.42,0.938,0.938\r\n\tc0,0.518-0.42,0.938-0.938,0.938S11.5,9.83,11.5,9.312C11.5,8.795,11.92,8.375,12.438,8.375z M5.5,14l2.486-5.714l2.827,4.576\r\n\tl2.424-1.204L14.5,14H5.5z" + } + }] +}; +exports.images = images; +var music = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.405,2.799C18.293,2.359,17.749,2,17.195,2H2.805c-0.555,0-1.099,0.359-1.21,0.799L1.394,4h17.211L18.405,2.799z\r\n\t M19.412,5H0.587C0.245,5-0.022,5.294,0.01,5.635l0.923,11.669C0.971,17.698,1.303,18,1.699,18H18.3\r\n\tc0.397,0,0.728-0.302,0.766-0.696l0.923-11.669C20.022,5.294,19.754,5,19.412,5z M11.942,12.521c-0.128,0.265-0.258,0.279-0.202,0\r\n\tc0.146-0.721,0.047-2.269-1.043-2.441v3.294c0,0.674-0.311,1.262-1.136,1.528c-0.802,0.256-1.699-0.011-1.908-0.586\r\n\tc-0.21-0.576,0.261-1.276,1.052-1.564c0.442-0.161,0.954-0.203,1.299-0.07V8h0.694C10.697,9.633,13.516,9.275,11.942,12.521z" + } + }] +}; +exports.music = music; +var video = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.405,2.799C18.293,2.359,17.749,2,17.195,2H2.805c-0.555,0-1.099,0.359-1.21,0.799L1.394,4h17.211L18.405,2.799z\r\n\t M19.412,5H0.587C0.245,5-0.022,5.294,0.01,5.635l0.923,11.669C0.971,17.698,1.303,18,1.699,18H18.3\r\n\tc0.397,0,0.728-0.302,0.766-0.696l0.923-11.669C20.022,5.294,19.754,5,19.412,5z M8,14V9l4.383,2.5L8,14z" + } + }] +}; +exports.video = video; +var folder = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.405,4.799C18.294,4.359,17.75,4,17.195,4h-6.814C9.827,4,9.051,3.682,8.659,3.293L8.063,2.705\r\n\tC7.671,2.316,6.896,2,6.342,2H3.087C2.532,2,2.028,2.447,1.967,2.994L1.675,6h16.931L18.405,4.799z M19.412,7H0.588\r\n\tc-0.342,0-0.61,0.294-0.577,0.635l0.923,9.669C0.971,17.698,1.303,18,1.7,18H18.3c0.397,0,0.728-0.302,0.766-0.696l0.923-9.669\r\n\tC20.022,7.294,19.754,7,19.412,7z" + } + }] +}; +exports.folder = folder; +var forward = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M12,11.874v4.357l7-6.69l-7-6.572v3.983c-8.775,0-11,9.732-11,9.732C3.484,12.296,7.237,11.874,12,11.874z" + } + }] +}; +exports.forward = forward; +var funnel = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,1C5.092,1,2,2.512,2,4.001v2c0,0.918,6,6,6,6v6c-0.001,0.684,1,1,2,1s2.001-0.316,2-1v-6c0,0,6-5.082,6-6v-2\r\n\tC18,2.512,14.908,1,10,1z M10,6.123C6.409,6.122,3.862,4.79,3.862,4.292C3.86,3.797,6.41,2.461,10,2.463\r\n\tc3.59-0.002,6.14,1.334,6.138,1.828C16.138,4.79,13.591,6.122,10,6.123z" + } + }] +}; +exports.funnel = funnel; +var controller = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M19.444,9.361c-0.882-4.926-2.854-6.379-3.903-6.379\r\n\tc-1.637,0-2.057,1.217-5.541,1.258C6.516,4.199,6.096,2.982,4.459,2.982c-1.049,0-3.022,1.453-3.904,6.379\r\n\tc-0.503,2.812-1.049,7.01,0.252,7.514c1.619,0.627,2.168-0.941,3.946-2.266C6.558,13.266,7.424,12.95,10,12.95\r\n\tc2.576,0,3.442,0.316,5.247,1.659c1.778,1.324,2.327,2.893,3.946,2.266C20.494,16.371,19.948,12.174,19.444,9.361z M6,10\r\n\tc-1.105,0-2-0.896-2-2c0-1.105,0.895-2,2-2s2,0.895,2,2C8,9.104,7.104,10,6,10z M13,10c-0.553,0-1-0.447-1-1s0.447-1,1-1\r\n\tc0.553,0,1,0.447,1,1S13.553,10,13,10z M15,8c-0.553,0-1-0.447-1-1s0.447-1,1-1c0.553,0,1,0.447,1,1S15.553,8,15,8z" + } + }] +}; +exports.controller = controller; +var gauge = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M8.127,13.6c-0.689,1.197-0.225,2.18,0.732,2.732c0.956,0.553,2.041,0.465,2.732-0.732\r\n\tc0.689-1.195,5.047-11.865,4.668-12.084C15.88,3.297,8.817,12.404,8.127,13.6z M10,6c0.438,0,0.864,0.037,1.281,0.109\r\n\tc0.438-0.549,0.928-1.154,1.405-1.728C11.834,4.135,10.934,4,10,4C4.393,4,0,8.729,0,14.766c0,0.371,0.016,0.742,0.049,1.103\r\n\tc0.049,0.551,0.54,0.955,1.084,0.908c0.551-0.051,0.957-0.535,0.908-1.086C2.014,15.389,2,15.076,2,14.766C2,9.85,5.514,6,10,6z\r\n\t M17.219,7.25C16.94,8,16.645,8.764,16.385,9.424C17.4,10.894,18,12.738,18,14.766c0,0.316-0.015,0.635-0.043,0.943\r\n\tc-0.05,0.551,0.355,1.037,0.905,1.088c0.03,0.002,0.061,0.004,0.092,0.004c0.511,0,0.948-0.391,0.995-0.91\r\n\tC19.982,15.521,20,15.143,20,14.766C20,11.812,18.947,9.176,17.219,7.25z" + } + }] +}; +exports.gauge = gauge; +var globe = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,0.4c-5.295,0-9.601,4.307-9.601,9.6c0,5.293,4.306,9.6,9.601,9.6c5.293,0,9.6-4.307,9.6-9.6\r\n\tC19.6,4.707,15.293,0.4,10,0.4z M18.188,10c0,1.873-0.636,3.6-1.696,4.98c-0.3-0.234-0.619-0.867-0.319-1.523\r\n\tc0.303-0.66,0.382-2.188,0.312-2.783c-0.066-0.594-0.375-2.025-1.214-2.039c-0.838-0.012-1.413-0.289-1.911-1.283\r\n\tc-1.033-2.068,1.939-2.465,0.906-3.609c-0.289-0.322-1.783,1.322-2.002-0.869C12.25,2.717,12.399,2.482,12.6,2.238\r\n\tC15.844,3.328,18.188,6.395,18.188,10z M8.875,1.893C8.679,2.275,8.162,2.43,7.848,2.717C7.164,3.336,6.87,3.25,6.502,3.844\r\n\tC6.131,4.438,4.935,5.293,4.935,5.723s0.604,0.936,0.906,0.838c0.302-0.1,1.099-0.094,1.567,0.07\r\n\tc0.469,0.166,3.914,0.332,2.816,3.244c-0.348,0.926-1.873,0.77-2.279,2.303c-0.061,0.225-0.272,1.186-0.285,1.5\r\n\tc-0.025,0.486,0.344,2.318-0.125,2.318c-0.471,0-1.738-1.639-1.738-1.936c0-0.297-0.328-1.338-0.328-2.23\r\n\tc0-0.891-1.518-0.877-1.518-2.062c0-1.068,0.823-1.6,0.638-2.113c-0.181-0.51-1.627-0.527-2.23-0.59\r\n\tC3.412,4.334,5.889,2.307,8.875,1.893z M7.424,17.77c0.492-0.26,0.542-0.596,0.988-0.613c0.51-0.023,0.925-0.199,1.5-0.326\r\n\tc0.51-0.111,1.423-0.629,2.226-0.695c0.678-0.055,2.015,0.035,2.375,0.689c-1.295,0.861-2.848,1.363-4.514,1.363\r\n\tC9.1,18.188,8.234,18.039,7.424,17.77z" + } + }] +}; +exports.globe = globe; +var cap = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M3.302,12.238c0.464,1.879,1.054,2.701,3.022,3.562C8.293,16.66,9.228,17.6,10,17.6c0.771,0,1.648-0.822,3.616-1.684\r\n\tc1.969-0.861,1.443-1.123,1.907-3.002L10,15.6L3.302,12.238z M19.511,7.336l-8.325-4.662c-0.652-0.365-1.72-0.365-2.372,0\r\n\tL0.488,7.336c-0.652,0.365-0.652,0.963,0,1.328l8.325,4.662c0.652,0.365,1.72,0.365,2.372,0l5.382-3.014l-5.836-1.367\r\n\tC10.506,9,10.259,9.031,10,9.031c-1.052,0-1.904-0.506-1.904-1.131c0-0.627,0.853-1.133,1.904-1.133c0.816,0,1.51,0.307,1.78,0.734\r\n\tl6.182,2.029l1.549-0.867C20.162,8.299,20.162,7.701,19.511,7.336z M16.967,16.17c-0.065,0.385,1.283,1.018,1.411-0.107\r\n\tc0.579-5.072-0.416-6.531-0.416-6.531l-1.395,0.781C16.567,10.312,17.75,11.438,16.967,16.17z" + } + }] +}; +exports.cap = cap; +var grid = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M8,4H5C4.447,4,4,4.447,4,5v3c0,0.552,0.447,1,1,1h3c0.553,0,1-0.448,1-1V5\r\n\tC9,4.448,8.553,4,8,4z M15,4h-3c-0.553,0-1,0.447-1,1v3c0,0.552,0.447,1,1,1h3c0.553,0,1-0.448,1-1V5C16,4.448,15.553,4,15,4z M8,11\r\n\tH5c-0.553,0-1,0.447-1,1v3c0,0.552,0.447,1,1,1h3c0.553,0,1-0.448,1-1v-3C9,11.448,8.553,11,8,11z M15,11h-3c-0.553,0-1,0.447-1,1v3\r\n\tc0,0.552,0.447,1,1,1h3c0.553,0,1-0.448,1-1v-3C16,11.448,15.553,11,15,11z" + } + }] +}; +exports.grid = grid; +var hand = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M17.924,17.315c-0.057,0.174-0.193,0.367-0.416,0.432c-0.161,0.047-5.488,1.59-5.652,1.633\r\n\tc-0.469,0.125-0.795,0.033-1.009-0.156c-0.326-0.287-4.093-2.85-8.845-3.092c-0.508-0.025-0.259-1.951,1.193-1.951\r\n\tc0.995,0,3.904,0.723,4.255,0.371c0.271-0.272,0.394-1.879-0.737-4.683l0,0L4.438,4.232C4.222,3.697,4.482,3.089,5.016,2.873\r\n\tc0.535-0.216,1.145,0.043,1.359,0.578c0,0,1.791,4.438,1.986,4.919c0.193,0.48,0.431,0.662,0.69,0.562\r\n\tC9.282,8.844,9.33,8.69,9.19,8.223L7.144,2.195C6.958,1.649,7.25,1.057,7.796,0.871c0.547-0.187,1.141,0.106,1.325,0.652\r\n\tl1.946,5.732c0.172,0.504,0.354,0.768,0.642,0.646c0.173-0.073,0.161-0.338,0.115-0.569l-1.366-5.471\r\n\tc-0.14-0.561,0.201-1.127,0.761-1.267c0.56-0.139,1.125,0.2,1.266,0.761l1.26,5.042c0.184,0.741,0.353,1.008,0.646,0.935\r\n\tc0.299-0.073,0.285-0.319,0.244-0.522c-0.095-0.475-0.872-4.328-0.872-4.328c-0.103-0.515,0.23-1.015,0.744-1.118\r\n\tc0.513-0.103,1.014,0.23,1.116,0.743l0.948,4.711l0.001,0.001c0,0,0,0,0,0.001l0.568,2.825c0.124,0.533,0.266,1.035,0.45,1.527\r\n\tC18.675,14.061,18.109,16.736,17.924,17.315z" + } + }] +}; +exports.hand = hand; +var outlined = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M17.19,4.156c-1.672-1.535-4.383-1.535-6.055,0L10,5.197L8.864,4.156c-1.672-1.535-4.382-1.535-6.054,0\r\n\tc-1.881,1.726-1.881,4.519,0,6.245L10,17l7.19-6.599C19.07,8.675,19.07,5.881,17.19,4.156z M16.124,9.375L10,15.09L3.875,9.375\r\n\tC3.258,8.808,3.019,8.068,3.019,7.281s0.138-1.433,0.756-1.999C4.32,4.781,5.053,4.505,5.838,4.505c0.784,0,1.517,0.476,2.062,0.978\r\n\tL10,7.308l2.099-1.826c0.546-0.502,1.278-0.978,2.063-0.978s1.518,0.276,2.063,0.777c0.618,0.566,0.755,1.212,0.755,1.999\r\n\tS16.742,8.808,16.124,9.375z" + } + }] +}; +exports.outlined = outlined; +var heart = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M17.19,4.155c-1.672-1.534-4.383-1.534-6.055,0L10,5.197L8.864,4.155c-1.672-1.534-4.382-1.534-6.054,0\r\n\tc-1.881,1.727-1.881,4.52,0,6.246L10,17l7.19-6.599C19.07,8.675,19.07,5.881,17.19,4.155z" + } + }] +}; +exports.heart = heart; +var withCircle = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,0.4c-5.302,0-9.6,4.298-9.6,9.6s4.298,9.6,9.6,9.6c5.301,0,9.6-4.298,9.6-9.601C19.6,4.698,15.301,0.4,10,0.4z\r\n\t M9.849,15.599H9.798c-0.782-0.023-1.334-0.6-1.311-1.371c0.022-0.758,0.587-1.309,1.343-1.309l0.046,0.002\r\n\tc0.804,0.023,1.35,0.594,1.327,1.387C11.18,15.068,10.625,15.599,9.849,15.599z M13.14,9.068c-0.184,0.26-0.588,0.586-1.098,0.983\r\n\tl-0.562,0.387c-0.308,0.24-0.494,0.467-0.563,0.688c-0.056,0.174-0.082,0.221-0.087,0.576v0.09H8.685l0.006-0.182\r\n\tc0.027-0.744,0.045-1.184,0.354-1.547c0.485-0.568,1.555-1.258,1.6-1.287c0.154-0.115,0.283-0.246,0.379-0.387\r\n\tc0.225-0.311,0.324-0.555,0.324-0.793c0-0.334-0.098-0.643-0.293-0.916c-0.188-0.266-0.545-0.398-1.061-0.398\r\n\tc-0.512,0-0.863,0.162-1.072,0.496c-0.216,0.341-0.325,0.7-0.325,1.067v0.092H6.386L6.39,7.841c0.057-1.353,0.541-2.328,1.435-2.897\r\n\tC8.388,4.583,9.089,4.4,9.906,4.4c1.068,0,1.972,0.26,2.682,0.772c0.721,0.519,1.086,1.297,1.086,2.311\r\n\tC13.673,8.05,13.494,8.583,13.14,9.068z" + } + }] +}; +exports.withCircle = withCircle; +var help = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "g", + "attribs": {} + }] +}; +exports.help = help; +var home = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.672,11H17v6c0,0.445-0.194,1-1,1h-4v-6H8v6H4c-0.806,0-1-0.555-1-1v-6H1.328c-0.598,0-0.47-0.324-0.06-0.748L9.292,2.22\r\n\tC9.487,2.018,9.743,1.918,10,1.908c0.257,0.01,0.513,0.109,0.708,0.312l8.023,8.031C19.142,10.676,19.27,11,18.672,11z" + } + }] +}; +exports.home = home; +var glass = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M15.6,4.576c0-2.139,0-2.348,0-2.348C15.6,1.439,13.092,0,10,0C6.907,0,4.4,1.439,4.4,2.228c0,0,0,0.209,0,2.348\r\n\tC4.4,6.717,8.277,8.484,8.277,10c0,1.514-3.877,3.281-3.877,5.422c0,2.141,0,2.35,0,2.35C4.4,18.56,6.907,20,10,20\r\n\tc3.092,0,5.6-1.44,5.6-2.229c0,0,0-0.209,0-2.35c0-2.141-3.877-3.908-3.877-5.422C11.723,8.484,15.6,6.717,15.6,4.576z M5.941,2.328\r\n\tc0.696-0.439,2-1.082,4.114-1.082c2.113,0,4.006,1.082,4.006,1.082c0.142,0.086,0.698,0.383,0.317,0.609\r\n\tC13.54,3.434,11.9,3.957,10,3.957c-1.9,0-3.484-0.576-4.324-1.074C5.295,2.658,5.941,2.328,5.941,2.328z M10.501,10\r\n\tc0,1.193,0.996,1.961,2.051,2.986c0.771,0.748,1.826,1.773,1.826,2.435v1.328c-0.97-0.483-3.872-0.955-3.872-2.504\r\n\tc0-0.783-1.013-0.783-1.013,0c0,1.549-2.902,2.021-3.872,2.504v-1.328c0-0.662,1.056-1.688,1.826-2.435\r\n\tC8.502,11.961,9.498,11.193,9.498,10c0-1.193-0.996-1.961-2.051-2.986c-0.771-0.75-1.826-1.775-1.826-2.438L5.575,3.578\r\n\tC6.601,4.131,8.227,4.656,10,4.656c1.772,0,3.406-0.525,4.433-1.078l-0.055,0.998c0,0.662-1.056,1.688-1.826,2.438\r\n\tC11.498,8.039,10.501,8.807,10.501,10z" + } + }] +}; +exports.glass = glass; +var inverted = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M18,3H2C1.447,3,1,3.447,1,4v12c0,0.552,0.447,1,1,1h16c0.553,0,1-0.448,1-1V4C19,3.448,18.553,3,18,3z M13.25,6.5\r\n\tc0.69,0,1.25,0.56,1.25,1.25S13.94,9,13.25,9S12,8.44,12,7.75S12.56,6.5,13.25,6.5z M4,14l3.314-7.619l3.769,6.102l3.231-1.605\r\n\tL16,14H4z" + } + }] +}; +exports.inverted = inverted; +var image = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M19,2H1C0.447,2,0,2.447,0,3v14c0,0.552,0.447,1,1,1h18c0.553,0,1-0.448,1-1V3\r\n\tC20,2.448,19.553,2,19,2z M18,16H2V4h16V16z M14.315,10.877l-3.231,1.605L7.314,6.381L4,14h12L14.315,10.877z M13.25,9\r\n\tc0.69,0,1.25-0.56,1.25-1.25S13.94,6.5,13.25,6.5S12,7.06,12,7.75S12.56,9,13.25,9z" + } + }] +}; +exports.image = image; +var inbox = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M19.253,9.542c-0.388-0.416-2.265-2.271-3.122-3.118C15.868,6.165,15.492,6,15.098,6H4.902c-0.394,0-0.77,0.165-1.033,0.424\r\n\tC3.011,7.271,1.135,9.125,0.747,9.542c-0.485,0.521-0.723,0.902-0.624,1.449s0.466,2.654,0.556,3.074\r\n\tC0.767,14.484,1.363,15,1.919,15h16.162c0.556,0,1.152-0.516,1.241-0.935c0.089-0.42,0.457-2.527,0.556-3.074\r\n\tS19.739,10.062,19.253,9.542z M14.014,10.003c-0.101,0-0.193,0.052-0.238,0.133L12.966,12H7.034l-0.809-1.864\r\n\tc-0.045-0.081-0.137-0.133-0.238-0.133H2.473L4.495,8h11.01l2.023,2.003H14.014z" + } + }] +}; +exports.inbox = inbox; +var infinity = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M15.902,5.6c-2.079,0-4.358,1.158-5.902,2.916C8.455,6.758,6.175,5.6,4.096,5.6C2.116,5.6,0,6.756,0,10\r\n\tc0,3.244,2.116,4.398,4.096,4.4l0,0c2.079,0,4.358-1.158,5.903-2.916c1.544,1.758,3.823,2.916,5.902,2.916\r\n\tC17.882,14.4,20,13.244,20,10C20,6.756,17.882,5.6,15.902,5.6z M4.096,12.641C2.584,12.641,1.8,11.752,1.8,10\r\n\tc0-1.752,0.784-2.641,2.296-2.641c1.673,0,3.614,1.086,4.807,2.641C7.71,11.555,5.769,12.641,4.096,12.641z M15.902,12.641\r\n\tc-1.673,0-3.614-1.086-4.807-2.641c1.192-1.555,3.135-2.641,4.807-2.641c1.512,0,2.298,0.889,2.298,2.641\r\n\tC18.2,11.752,17.414,12.641,15.902,12.641z" + } + }] +}; +exports.infinity = infinity; +var info = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M12.432,0c1.34,0,2.01,0.912,2.01,1.957c0,1.305-1.164,2.512-2.679,2.512c-1.269,0-2.009-0.75-1.974-1.99\r\n\tC9.789,1.436,10.67,0,12.432,0z M8.309,20c-1.058,0-1.833-0.652-1.093-3.524l1.214-5.092c0.211-0.814,0.246-1.141,0-1.141\r\n\tc-0.317,0-1.689,0.562-2.502,1.117L5.4,10.48c2.572-2.186,5.531-3.467,6.801-3.467c1.057,0,1.233,1.273,0.705,3.23l-1.391,5.352\r\n\tc-0.246,0.945-0.141,1.271,0.106,1.271c0.317,0,1.357-0.392,2.379-1.207l0.6,0.814C12.098,19.02,9.365,20,8.309,20z" + } + }] +}; +exports.info = info; +var install = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M19.059,10.898l-3.171-7.927C15.654,2.384,15.086,2,14.454,2H12.02l0.38,4.065h2.7L10,10.293L4.9,6.065h2.7L7.98,2H5.546\r\n\tC4.914,2,4.346,2.384,4.112,2.971l-3.171,7.927c-0.288,0.721-0.373,1.507-0.246,2.272l0.59,3.539C1.409,17.454,2.053,18,2.808,18\r\n\th14.383c0.755,0,1.399-0.546,1.523-1.291l0.59-3.539C19.433,12.405,19.348,11.619,19.059,10.898z M16.959,15.245\r\n\tC16.887,15.681,16.51,16,16.068,16H3.932c-0.442,0-0.819-0.319-0.891-0.755l-0.365-2.193C2.583,12.501,3.008,12,3.567,12h12.867\r\n\tc0.558,0,0.983,0.501,0.891,1.052L16.959,15.245z" + } + }] +}; +exports.install = install; +var key = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M17.691,4.725c-0.503-2.977-3.22-4.967-6.069-4.441C8.772,0.809,6.366,3.1,6.869,6.079c0.107,0.641,0.408,1.644,0.763,2.365\r\n\tl-5.175,7.723c-0.191,0.285-0.299,0.799-0.242,1.141l0.333,1.971c0.058,0.342,0.372,0.572,0.7,0.514l1.516-0.281\r\n\tc0.328-0.059,0.744-0.348,0.924-0.639l2.047-3.311l0.018-0.022l1.386-0.256l2.39-3.879c0.785,0.139,1.912,0.092,2.578-0.031\r\n\tC16.955,10.848,18.194,7.704,17.691,4.725z M15.166,6.252c-0.784,1.17-1.584,0.346-2.703-0.475\r\n\tc-1.119-0.818-2.135-1.322-1.352-2.492c0.784-1.17,2.326-1.455,3.447-0.635C15.678,3.469,15.949,5.082,15.166,6.252z" + } + }] +}; +exports.key = key; +var keyboard = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.6,4h-17.2C0.629,4,0,4.629,0,5.4V14.6C0,15.369,0.629,16,1.399,16h17.2c0.77,0,1.4-0.631,1.4-1.4V5.4\r\n\tC20,4.629,19.369,4,18.6,4z M11,6h2v2h-2V6z M14,9v2h-2V9H14z M8,6h2v2H8V6z M11,9v2H9V9H11z M5,6h2v2H5V6z M8,9v2H6V9H8z M2,6h2v2\r\n\tH2V6z M5,9v2H3V9H5z M4,14H2v-2h2V14z M15,14H5v-2h10V14z M18,14h-2v-2h2V14z M15,11V9h2v2H15z M18,8h-4V6h4V8z" + } + }] +}; +exports.keyboard = keyboard; +var flask = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M16.432,15C14.387,9.893,12,8.547,12,6V3h0.5C12.776,3,13,2.776,13,2.5v-1\r\n\tC13,1.224,12.776,1,12.5,1h-5C7.224,1,7,1.224,7,1.5v1C7,2.776,7.224,3,7.5,3H8v3c0,2.547-2.387,3.893-4.432,9\r\n\tC2.917,16.625,1.245,19,10,19S17.083,16.625,16.432,15z M14.815,16.751C14.113,16.961,12.716,17.2,10,17.2s-4.113-0.239-4.815-0.449\r\n\tc-0.249-0.074-0.346-0.363-0.258-0.628c0.22-0.67,0.635-1.828,1.411-3.121c1.896-3.159,3.863,0.497,5.5,0.497\r\n\tc1.637,0,1.188-1.561,1.824-0.497c0.774,1.294,1.191,2.451,1.411,3.121C15.161,16.388,15.064,16.676,14.815,16.751z" + } + }] +}; +exports.flask = flask; +var landline = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M4.902,0.25C3.498-0.027,2.115,0.875,1.833,2.273c-1.105,5.455-1.105,9.997,0,15.454C2.08,18.952,3.17,19.8,4.388,19.8\r\n\tc0.17,0,0.342-0.016,0.515-0.05c1.412-0.279,2.329-1.638,2.046-3.036c-0.978-4.832-0.978-8.598,0-13.43\r\n\tC7.231,1.888,6.314,0.529,4.902,0.25z M17,2H8.436c0.073,0.467,0.081,0.951-0.017,1.44c-0.936,4.72-0.936,8.398,0,13.12\r\n\tc0.098,0.49,0.09,0.973,0.017,1.44H17c1.1,0,2-0.9,2-2V4C19,2.9,18.101,2,17,2z M12,14.5c-0.828,0-1.5-0.672-1.5-1.5\r\n\ts0.672-1.5,1.5-1.5s1.5,0.672,1.5,1.5S12.828,14.5,12,14.5z M17,9h-7V5h7V9z" + } + }] +}; +exports.landline = landline; +var language = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M19.753,10.909c-0.624-1.707-2.366-2.726-4.661-2.726c-0.09,0-0.176,0.002-0.262,0.006l-0.016-2.063\r\n\tc0,0,3.41-0.588,3.525-0.607s0.133-0.119,0.109-0.231c-0.023-0.111-0.167-0.883-0.188-0.976c-0.027-0.131-0.102-0.127-0.207-0.109\r\n\tc-0.104,0.018-3.25,0.461-3.25,0.461s-0.012-1.953-0.013-2.078c-0.001-0.125-0.069-0.158-0.194-0.156\r\n\tc-0.125,0.002-0.92,0.014-1.025,0.016c-0.105,0.002-0.164,0.049-0.162,0.148c0.002,0.1,0.033,2.307,0.033,2.307\r\n\ts-3.061,0.527-3.144,0.543c-0.084,0.014-0.17,0.053-0.151,0.143c0.019,0.09,0.19,1.094,0.208,1.172\r\n\tc0.018,0.08,0.072,0.129,0.188,0.107c0.115-0.019,2.924-0.504,2.924-0.504l0.035,2.018c-1.077,0.281-1.801,0.824-2.256,1.303\r\n\tc-0.768,0.807-1.207,1.887-1.207,2.963c0,1.586,0.971,2.529,2.328,2.695c3.162,0.387,5.119-3.06,5.769-4.715\r\n\tc1.097,1.506,0.256,4.354-2.094,5.98c-0.043,0.029-0.098,0.129-0.033,0.207c0.065,0.078,0.541,0.662,0.619,0.756\r\n\tc0.08,0.096,0.206,0.059,0.256,0.023C19.394,15.862,20.545,13.077,19.753,10.909z M12.367,14.097\r\n\tc-0.966-0.121-0.944-0.914-0.944-1.453c0-0.773,0.327-1.58,0.876-2.156c0.335-0.354,0.75-0.621,1.229-0.799l0.082,4.277\r\n\tC13.225,14.097,12.811,14.151,12.367,14.097z M14.794,13.544l0.046-4.109c0.084-0.004,0.166-0.01,0.252-0.01\r\n\tc0.773,0,1.494,0.145,1.885,0.361C17.368,10.003,15.954,12.499,14.794,13.544z M5.844,5.876C5.814,5.782,5.741,5.731,5.648,5.731\r\n\th-1.95c-0.093,0-0.165,0.051-0.194,0.144c-0.412,1.299-3.48,10.99-3.496,11.041c-0.017,0.051-0.011,0.076,0.062,0.076h1.733\r\n\tc0.075,0,0.099-0.023,0.114-0.072c0.015-0.051,1.008-3.318,1.008-3.318h3.496c0,0,0.992,3.268,1.008,3.318\r\n\tc0.016,0.049,0.039,0.072,0.113,0.072h1.734c0.072,0,0.078-0.025,0.062-0.076C9.324,16.866,6.255,7.175,5.844,5.876z M3.226,12.194\r\n\tl1.447-5.25l1.447,5.25H3.226z" + } + }] +}; +exports.language = language; +var laptop = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M19.754,15.631C19.507,15.26,18,13,18,13V4c0-1.102-0.9-2-2-2H4C2.899,2,2,2.898,2,4v9c0,0-1.507,2.26-1.754,2.631\r\n\tC0,16,0,16.213,0,16.5V17c0,0.5,0.5,1,0.999,1h18.002C19.5,18,20,17.5,20,17v-0.5C20,16.213,20,16,19.754,15.631z M7,16l0.6-1h4.8\r\n\tl0.6,1H7z M16,12H4V4h12V12z" + } + }] +}; +exports.laptop = laptop; +var layers = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M9.248,11.601c0.45,0.313,1.05,0.313,1.5,0l9.088-5.281c0.236-0.164,0.21-0.518-0.048-0.646l-9.205-3.537\r\n\tc-0.368-0.183-0.802-0.183-1.17,0L0.208,5.674C-0.05,5.801-0.076,6.156,0.16,6.32L9.248,11.601z M19.788,10.811l-2.486-1.233\r\n\tl-5.725,3.327c-0.469,0.309-1.014,0.471-1.579,0.471s-1.11-0.163-1.579-0.471L2.698,9.576l-2.49,1.234\r\n\tc-0.258,0.128-0.284,0.482-0.048,0.646l9.088,6.309c0.45,0.313,1.05,0.313,1.5,0l9.088-6.309\r\n\tC20.072,11.293,20.046,10.939,19.788,10.811z" + } + }] +}; +exports.layers = layers; +var leaf = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M19.025,3.587c-4.356,2.556-4.044,7.806-7.096,10.175c-2.297,1.783-5.538,0.88-7.412,0.113c0,0-1.27,1.603-2.181,3.74\r\n\tc-0.305,0.717-1.644-0.073-1.409-0.68C3.905,9.25,14.037,5.416,14.037,5.416S6.888,5.113,2.11,11.356\r\n\tC1.982,9.93,1.77,6.072,5.47,3.706C10.486,0.495,20.042,2.991,19.025,3.587z" + } + }] +}; +exports.leaf = leaf; +var lifebuoy = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M16.788,3.212c-3.749-3.749-9.827-3.749-13.575,0c-3.75,3.75-3.75,9.828-0.002,13.576c3.75,3.75,9.828,3.75,13.578,0\r\n\tC20.537,13.039,20.537,6.961,16.788,3.212z M6.748,13.252c-1.797-1.797-1.797-4.709,0-6.505c1.795-1.796,4.709-1.796,6.506,0\r\n\tc1.797,1.797,1.795,4.709,0,6.505C11.457,15.049,8.545,15.049,6.748,13.252z M15.347,12.879c0.968-1.799,0.969-3.959,0-5.759\r\n\tl1.783-0.96c1.289,2.391,1.289,5.29,0.002,7.678L15.347,12.879z M13.839,2.869l-0.961,1.784c-1.799-0.967-3.959-0.967-5.756,0\r\n\tL6.161,2.87C8.551,1.582,11.448,1.582,13.839,2.869z M2.87,6.16l1.784,0.961c-0.968,1.798-0.968,3.957-0.001,5.756l-1.784,0.961\r\n\tC1.581,11.449,1.582,8.551,2.87,6.16z M6.159,17.129l0.961-1.783c1.799,0.969,3.96,0.969,5.759,0l0.961,1.785\r\n\tC11.448,18.418,8.55,18.418,6.159,17.129z" + } + }] +}; +exports.lifebuoy = lifebuoy; +var bulb = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M7.186,19.172C7.975,19.682,8.887,20.027,10,20\r\n\tc1.111,0.027,2.025-0.318,2.814-0.828L12.797,17H7.203L7.186,19.172z M12.697,16c0-4.357,4.63-5.848,4.283-10.188\r\n\tC16.762,3.074,14.907,0.002,10,0.002c-4.907,0-6.762,3.072-6.981,5.811C2.672,10.152,7.303,11.643,7.303,16H12.697z M5,6\r\n\tc0.207-2.598,2.113-4,5-4c2.886,0,4.654,1.371,4.861,3.969c0.113,1.424-0.705,2.373-1.809,3.926C12.238,11.041,11.449,12.238,11,14\r\n\tH9c-0.449-1.762-1.238-2.959-2.053-4.106C5.844,8.342,4.886,7.424,5,6z" + } + }] +}; +exports.bulb = bulb; +var link = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M7.859,14.691l-0.81,0.805c-0.701,0.695-1.843,0.695-2.545,0c-0.336-0.334-0.521-0.779-0.521-1.252\r\n\tc0-0.473,0.186-0.916,0.521-1.252l2.98-2.955c0.617-0.613,1.779-1.515,2.626-0.675c0.389,0.386,1.016,0.384,1.403-0.005\r\n\tc0.385-0.389,0.383-1.017-0.006-1.402C10.069,6.527,7.941,6.791,6.088,8.63l-2.98,2.956C2.393,12.295,2,13.24,2,14.244\r\n\tc0,1.006,0.394,1.949,1.108,2.658c0.736,0.73,1.702,1.096,2.669,1.096c0.967,0,1.934-0.365,2.669-1.096l0.811-0.805\r\n\tc0.389-0.385,0.391-1.012,0.005-1.4C8.875,14.309,8.248,14.307,7.859,14.691z M16.891,3.207c-1.547-1.534-3.709-1.617-5.139-0.197\r\n\tl-1.009,1.002c-0.389,0.386-0.392,1.013-0.006,1.401c0.386,0.389,1.013,0.391,1.402,0.005l1.01-1.001\r\n\tc0.74-0.736,1.711-0.431,2.346,0.197c0.336,0.335,0.522,0.779,0.522,1.252s-0.186,0.917-0.522,1.251l-3.18,3.154\r\n\tc-1.454,1.441-2.136,0.766-2.427,0.477c-0.389-0.386-1.016-0.383-1.401,0.005c-0.386,0.389-0.384,1.017,0.005,1.401\r\n\tc0.668,0.662,1.43,0.99,2.228,0.99c0.977,0,2.01-0.492,2.993-1.467l3.18-3.153C17.605,7.814,18,6.87,18,5.866\r\n\tC18,4.861,17.605,3.917,16.891,3.207z" + } + }] +}; +exports.link = link; +var list = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M14.4,9H8.6C8.048,9,8,9.447,8,10s0.048,1,0.6,1H14.4c0.552,0,0.6-0.447,0.6-1S14.952,9,14.4,9z M16.4,14H8.6\r\n\tC8.048,14,8,14.447,8,15s0.048,1,0.6,1H16.4c0.552,0,0.6-0.447,0.6-1S16.952,14,16.4,14z M8.6,6H16.4C16.952,6,17,5.553,17,5\r\n\ts-0.048-1-0.6-1H8.6C8.048,4,8,4.447,8,5S8.048,6,8.6,6z M5.4,9H3.6C3.048,9,3,9.447,3,10s0.048,1,0.6,1H5.4C5.952,11,6,10.553,6,10\r\n\tS5.952,9,5.4,9z M5.4,14H3.6C3.048,14,3,14.447,3,15s0.048,1,0.6,1H5.4C5.952,16,6,15.553,6,15S5.952,14,5.4,14z M5.4,4H3.6\r\n\tC3.048,4,3,4.447,3,5s0.048,1,0.6,1H5.4C5.952,6,6,5.553,6,5S5.952,4,5.4,4z" + } + }] +}; +exports.list = list; +var pin = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,2.009c-2.762,0-5,2.229-5,4.99c0,4.774,5,11,5,11s5-6.227,5-11C15,4.239,12.762,2.009,10,2.009z M10,9.76\r\n\tc-1.492,0-2.7-1.209-2.7-2.7s1.208-2.7,2.7-2.7c1.49,0,2.699,1.209,2.699,2.7S11.49,9.76,10,9.76z" + } + }] +}; +exports.pin = pin; +var location = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M19.367,18.102L18,14h-1.5l0.833,4H2.667L3.5,14H2l-1.368,4.102C0.285,19.146,0.9,20,2,20h16\r\n\tC19.1,20,19.715,19.146,19.367,18.102z M15,5c0-2.761-2.238-5-5-5S5,2.239,5,5c0,4.775,5,10,5,10S15,9.775,15,5z M7.3,5.06\r\n\tc0-1.491,1.208-2.699,2.7-2.699s2.7,1.208,2.7,2.699c0,1.492-1.209,2.7-2.7,2.7S7.3,6.551,7.3,5.06z" + } + }] +}; +exports.location = location; +var open = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M15.8,8H14V5.6C14,2.703,12.665,1,10,1C7.334,1,6,2.703,6,5.6V6h2V5.199C8,3.754,8.797,3,10,3c1.203,0,2,0.754,2,2.199V8H4\r\n\tC3.447,8,3,8.646,3,9.199V17c0,0.549,0.428,1.139,0.951,1.307l1.197,0.387C5.672,18.861,6.55,19,7.1,19H12.9\r\n\tc0.549,0,1.428-0.139,1.951-0.307l1.196-0.387C16.571,18.139,17,17.549,17,17V9.199C17,8.646,16.352,8,15.8,8z" + } + }] +}; +exports.open = open; +var lock = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M15.8,8H14V5.6C14,2.703,12.665,1,10,1C7.334,1,6,2.703,6,5.6V8H4C3.447,8,3,8.646,3,9.199V17\r\n\tc0,0.549,0.428,1.139,0.951,1.307l1.197,0.387C5.672,18.861,6.55,19,7.1,19H12.9c0.549,0,1.428-0.139,1.951-0.307l1.196-0.387\r\n\tC16.571,18.139,17,17.549,17,17V9.199C17,8.646,16.352,8,15.8,8z M12,8H8V5.199C8,3.754,8.797,3,10,3c1.203,0,2,0.754,2,2.199V8z" + } + }] +}; +exports.lock = lock; +var out = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M19,10l-6-5v3H6v4h7v3L19,10z M3,3h8V1H3C1.9,1,1,1.9,1,3v14c0,1.1,0.9,2,2,2h8v-2H3V3z" + } + }] +}; +exports.out = out; +var login = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M14,10L8,5v3H1v4h7v3L14,10z M17,17H9v2h8c1.1,0,2-0.9,2-2V3c0-1.1-0.9-2-2-2H9v2h8V17z" + } + }] +}; +exports.login = login; +var loop = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M20,7v7c0,1.103-0.896,2-2,2H2c-1.104,0-2-0.897-2-2V7c0-1.104,0.896-2,2-2h7V3l4,3.5L9,10V8H3v5h14V8h-3V5h4\r\n\tC19.104,5,20,5.896,20,7z" + } + }] +}; +exports.loop = loop; +var magnet = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M12.165,17.86c-0.028,0.309,0.217,0.584,0.545,0.611l3.985,0.326c0.329,0.027,0.621-0.203,0.65-0.512l0.311-3.287\r\n\tl-5.18-0.426L12.165,17.86z M2.344,14.999l0.312,3.287c0.028,0.309,0.321,0.539,0.65,0.512l3.985-0.326\r\n\tc0.328-0.027,0.573-0.303,0.546-0.611l-0.312-3.287L2.344,14.999z M1.831,9.583l0.321,3.391l5.181-0.426L7.011,9.161\r\n\tc-0.007-0.082-0.011-0.166-0.011-0.25c0-1.555,1.346-2.82,3-2.82s3,1.266,3,2.82c0,0.084-0.004,0.168-0.012,0.25l-0.321,3.387\r\n\tl5.181,0.426l0.321-3.391c0.021-0.225,0.03-0.449,0.03-0.672C18.2,4.659,14.522,1.2,10,1.2S1.8,4.659,1.8,8.911\r\n\tC1.8,9.134,1.811,9.358,1.831,9.583z" + } + }] +}; +exports.magnet = magnet; +var mail = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M1.574,5.286c0.488,0.262,7.248,3.894,7.5,4.029C9.326,9.45,9.652,9.514,9.98,9.514c0.328,0,0.654-0.064,0.906-0.199\r\n\ts7.012-3.767,7.5-4.029C18.875,5.023,19.337,4,18.44,4H1.521C0.624,4,1.086,5.023,1.574,5.286z M18.613,7.489\r\n\tc-0.555,0.289-7.387,3.849-7.727,4.027s-0.578,0.199-0.906,0.199s-0.566-0.021-0.906-0.199S1.941,7.777,1.386,7.488\r\n\tC0.996,7.284,1,7.523,1,7.707S1,15,1,15c0,0.42,0.566,1,1,1h16c0.434,0,1-0.58,1-1c0,0,0-7.108,0-7.292S19.004,7.285,18.613,7.489z" + } + }] +}; +exports.mail = mail; +var man = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,4c1.104,0,2-0.896,2-2c0-1.105-0.896-2-2-2S8,0.895,8,2C8,3.104,8.896,4,10,4z M15.978,11.583\r\n\tc-0.385-1.775-1.058-4.688-2.042-5.894C12.979,4.516,11.051,4.467,10,4.467h0c-1.051,0-2.979,0.049-3.936,1.222\r\n\tC5.08,6.895,4.407,9.808,4.022,11.583c-0.213,0.983,1.154,1.344,1.511,0.355c0.531-1.473,0.941-2.71,1.839-3.736\r\n\tC7.844,11.109,6.102,16.168,6,19c0,0.552,0.448,1,1,1c0.426,0,0.79-0.266,0.934-0.642C8.391,17.771,10,13.355,10,13.355l0,0l0,0\r\n\tc0,0,1.609,4.416,2.066,6.003C12.21,19.734,12.574,20,13,20c0.552,0,1-0.448,1-1c-0.102-2.832-1.844-7.891-1.372-10.797\r\n\tc0.898,1.026,1.308,2.263,1.839,3.736C14.823,12.927,16.191,12.566,15.978,11.583z" + } + }] +}; +exports.man = man; +var map = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M19.447,3.718l-6-3c-0.281-0.141-0.613-0.141-0.895,0l-5.63,2.815L1.316,1.664C1.01,1.562,0.676,1.613,0.415,1.802\r\n\tC0.154,1.99,0,2.292,0,2.613v13.001c0,0.379,0.214,0.725,0.553,0.894l6,3c0.141,0.07,0.294,0.106,0.447,0.106\r\n\ts0.307-0.035,0.447-0.106l5.63-2.814l5.606,1.869c0.305,0.1,0.64,0.049,0.901-0.139c0.261-0.188,0.415-0.49,0.415-0.81V4.612\r\n\tC20,4.233,19.786,3.887,19.447,3.718z M8,5.231l4-2v11.763l-4,2V5.231z M2,4l4,1.333v11.661l-4-2V4z M18,16.227l-4-1.334V3.231l4,2\r\n\tV16.227z" + } + }] +}; +exports.map = map; +var mask = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M19.581,5.84c-0.043-0.469-0.462-0.803-0.92-0.73C16.919,5.388,12.835,7,10,7C7.165,7,3.081,5.388,1.339,5.11\r\n\tc-0.458-0.073-0.876,0.26-0.92,0.729C0.277,7.371,0,11.45,0,12.068c0,0.83,3.472,2.732,6,2.732c2.452,0,2.95-2.732,4-2.732\r\n\ts1.548,2.732,4,2.732c2.528,0,6-1.902,6-2.732C20,11.45,19.723,7.371,19.581,5.84z M7.66,10.72c-0.353,0.318-1.335,1.07-2.531,0.835\r\n\tc-1.196-0.235-1.919-1.323-2.166-1.758C2.903,9.691,2.922,9.557,3.007,9.48C3.36,9.162,4.342,8.41,5.539,8.645\r\n\tc1.196,0.235,1.919,1.323,2.166,1.758C7.764,10.509,7.745,10.643,7.66,10.72z M17.037,9.797c-0.246,0.436-0.969,1.523-2.166,1.758\r\n\tc-1.196,0.235-2.179-0.517-2.531-0.835c-0.086-0.077-0.104-0.211-0.045-0.317c0.246-0.436,0.969-1.523,2.166-1.758\r\n\tc1.196-0.235,2.179,0.517,2.531,0.835C17.078,9.557,17.097,9.691,17.037,9.797z" + } + }] +}; +exports.mask = mask; +var medal = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,10c0.528,0,1.026,0.104,1.504,0.256L5.427,1.141C5.368,1.053,5.27,1,5.164,1H1.608C1.491,1,1.42,1.131,1.486,1.229\r\n\tl6.231,9.347C8.404,10.22,9.173,10,10,10z M18.392,1h-3.556c-0.106,0-0.204,0.053-0.263,0.141L10.75,6.875l2,3l5.764-8.646\r\n\tC18.579,1.131,18.509,1,18.392,1z M10,11c-2.209,0-4,1.791-4,4c0,2.209,1.791,4,4,4s4-1.791,4-4C14,12.791,12.209,11,10,11z\r\n\t M12.112,15.117c0.062,0.064,0.052,0.158-0.022,0.208c-0.074,0.05-0.095,0.153-0.049,0.229c0.047,0.076,0.018,0.165-0.065,0.199\r\n\ts-0.125,0.13-0.095,0.214s-0.017,0.165-0.104,0.181s-0.149,0.101-0.137,0.189s-0.051,0.158-0.14,0.155\r\n\tc-0.089-0.003-0.167,0.068-0.174,0.156s-0.083,0.144-0.169,0.123s-0.178,0.031-0.203,0.117s-0.111,0.124-0.191,0.085\r\n\tc-0.08-0.039-0.18-0.006-0.222,0.072s-0.134,0.098-0.205,0.043s-0.175-0.044-0.232,0.024s-0.151,0.068-0.209,0\r\n\ts-0.162-0.079-0.232-0.024s-0.162,0.035-0.205-0.043s-0.142-0.111-0.222-0.072c-0.08,0.039-0.166,0-0.191-0.085\r\n\ts-0.116-0.138-0.203-0.117s-0.163-0.034-0.169-0.123S8.589,16.489,8.5,16.491c-0.089,0.003-0.152-0.067-0.14-0.155\r\n\ts-0.05-0.173-0.137-0.189s-0.135-0.097-0.104-0.181s-0.013-0.18-0.095-0.214s-0.111-0.123-0.065-0.199\r\n\tc0.047-0.076,0.025-0.179-0.049-0.229c-0.074-0.05-0.083-0.144-0.022-0.208c0.062-0.064,0.062-0.169,0-0.234\r\n\ts-0.052-0.158,0.022-0.208s0.095-0.153,0.049-0.229c-0.047-0.076-0.018-0.165,0.065-0.199s0.125-0.13,0.095-0.214\r\n\ts0.017-0.165,0.104-0.181s0.149-0.101,0.137-0.189s0.051-0.158,0.14-0.155c0.089,0.003,0.167-0.068,0.174-0.156\r\n\ts0.083-0.144,0.169-0.123s0.178-0.031,0.203-0.117s0.111-0.124,0.191-0.085c0.08,0.039,0.18,0.006,0.222-0.072\r\n\ts0.134-0.098,0.205-0.043s0.175,0.044,0.232-0.024s0.151-0.068,0.209,0s0.162,0.079,0.232,0.024s0.162-0.035,0.205,0.043\r\n\ts0.142,0.111,0.222,0.072c0.08-0.039,0.166,0,0.191,0.085s0.116,0.138,0.203,0.117s0.163,0.034,0.169,0.123s0.085,0.159,0.174,0.156\r\n\tc0.089-0.003,0.152,0.067,0.14,0.155s0.05,0.173,0.137,0.189s0.135,0.097,0.104,0.181s0.013,0.18,0.095,0.214\r\n\ts0.111,0.123,0.065,0.199c-0.047,0.076-0.025,0.179,0.049,0.229s0.083,0.144,0.022,0.208S12.05,15.053,12.112,15.117z" + } + }] +}; +exports.medal = medal; +var megaphone = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M17.223,7.03c-1.584-3.686-4.132-6.49-5.421-5.967c-2.189,0.891,1.304,5.164-9.447,9.533\r\n\tc-0.929,0.379-1.164,1.888-0.775,2.792c0.388,0.902,1.658,1.801,2.587,1.424c0.161-0.066,0.751-0.256,0.751-0.256\r\n\tc0.663,0.891,1.357,0.363,1.604,0.928c0.296,0.68,0.939,2.158,1.158,2.66c0.219,0.502,0.715,0.967,1.075,0.83\r\n\tc0.359-0.137,1.582-0.602,2.05-0.779c0.468-0.178,0.579-0.596,0.436-0.924c-0.154-0.355-0.786-0.459-0.967-0.873\r\n\tc-0.18-0.412-0.769-1.738-0.938-2.156c-0.23-0.568,0.259-1.031,0.97-1.104c4.894-0.512,5.809,2.512,7.475,1.834\r\n\tC19.068,14.447,18.806,10.713,17.223,7.03z M16.672,13.006c-0.287,0.115-2.213-1.402-3.443-4.267\r\n\tc-1.231-2.863-1.076-5.48-0.79-5.597c0.286-0.115,2.165,1.717,3.395,4.58C17.065,10.585,16.958,12.889,16.672,13.006z" + } + }] +}; +exports.megaphone = megaphone; +var menu = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M16.4,9H3.6C3.048,9,3,9.447,3,10c0,0.553,0.048,1,0.6,1H16.4c0.552,0,0.6-0.447,0.6-1C17,9.447,16.952,9,16.4,9z M16.4,13\r\n\tH3.6C3.048,13,3,13.447,3,14c0,0.553,0.048,1,0.6,1H16.4c0.552,0,0.6-0.447,0.6-1C17,13.447,16.952,13,16.4,13z M3.6,7H16.4\r\n\tC16.952,7,17,6.553,17,6c0-0.553-0.048-1-0.6-1H3.6C3.048,5,3,5.447,3,6C3,6.553,3.048,7,3.6,7z" + } + }] +}; +exports.menu = menu; +var merge = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M17.8896484,17.7070312L16.8916016,20C13.7548828,18.6341553,11.3964844,16.8476562,10,14.7250977\r\n\tC8.6035156,16.8476562,6.2451172,18.6341553,3.1083984,20l-0.9980469-2.2929688\r\n\tC5.1396484,16.3886719,8.5498047,14.1015625,8.5498047,10V7H5.5L10,0l4.5,7h-3.0498047v3\r\n\tC11.4501953,14.1015625,14.8603516,16.3886719,17.8896484,17.7070312z" + } + }] +}; +exports.merge = merge; +var message = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M18,6v7c0,1.1-0.9,2-2,2h-4v3l-4-3H4c-1.101,0-2-0.9-2-2V6c0-1.1,0.899-2,2-2h12C17.1,4,18,4.9,18,6z" + } + }] +}; +exports.message = message; +var mic = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M16.399,7.643V10.4c0,2.236-1.643,4.629-5.399,4.959V18h2.6c0.22,0,0.4,0.18,0.4,0.4V19.6c0,0.221-0.181,0.4-0.4,0.4h-7.2\r\n\tC6.18,20,6,19.82,6,19.6V18.4C6,18.18,6.18,18,6.399,18H9v-2.641c-3.758-0.33-5.4-2.723-5.4-4.959V7.643c0-0.221,0.18-0.4,0.4-0.4\r\n\th0.6c0.22,0,0.4,0.18,0.4,0.4V10.4c0,1.336,1.053,3.6,5,3.6c3.946,0,5-2.264,5-3.6V7.643c0-0.221,0.18-0.4,0.399-0.4H16\r\n\tC16.22,7.242,16.399,7.422,16.399,7.643z M10,12c2.346,0,3-0.965,3-1.6V7.242H7V10.4C7,11.035,7.652,12,10,12z M13,1.6\r\n\tC13,0.963,12.346,0,10,0C7.652,0,7,0.963,7,1.6v4.242h6V1.6z" + } + }] +}; +exports.mic = mic; +var minus = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M16,10c0,0.553-0.048,1-0.601,1H4.601C4.049,11,4,10.553,4,10c0-0.553,0.049-1,0.601-1h10.799C15.952,9,16,9.447,16,10z" + } + }] +}; +exports.minus = minus; +var mobile = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M14.004,0H5.996C4.894,0,4,0.894,4,1.996v16.007C4,19.106,4.894,20,5.996,20h8.007C15.106,20,16,19.106,16,18.004V1.996\r\n\tC16,0.894,15.106,0,14.004,0z M10,19c-0.69,0-1.25-0.447-1.25-1s0.56-1,1.25-1s1.25,0.447,1.25,1S10.69,19,10,19z M14,16H6V2h8V16z" + } + }] +}; +exports.mobile = mobile; +var moon = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M13.719,1.8c0.686,0.385,1.332,0.867,1.916,1.449c3.42,3.422,3.42,8.966,0,12.386c-3.42,3.42-8.965,3.42-12.386,0\r\n\tc-0.583-0.584-1.065-1.231-1.449-1.916c3.335,1.867,7.633,1.387,10.469-1.449C15.106,9.433,15.587,5.136,13.719,1.8z" + } + }] +}; +exports.moon = moon; +var pointer = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10.8601685,11.9953299l2.5251465,6.0802317L11.1703491,19l-2.5252075-6.050354L5,16.6248779V1.1005249\r\n\tl10.9461327,10.8882742L10.8601685,11.9953299z" + } + }] +}; +exports.pointer = pointer; +var mouse = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M15.402,14.402l-2.627-7.535c-0.722-2.073-2.966-3.22-5.092-2.653L5.707,0.379C5.528,0.033,5.109-0.1,4.769,0.083\r\n\tC4.43,0.266,4.3,0.697,4.48,1.044l1.929,3.742C4.872,5.806,4.073,7.74,4.58,9.56l2.139,7.696c0.602,2.162,3.08,3.264,5.571,2.502\r\n\tC14.749,18.895,16.14,16.521,15.402,14.402z M8.899,8.923c-0.73,0.24-1.511-0.172-1.745-0.921C6.919,7.254,7.322,6.454,8.051,6.214\r\n\tc0.73-0.24,1.512,0.172,1.746,0.92S9.629,8.683,8.899,8.923z" + } + }] +}; +exports.mouse = mouse; +var network = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M5.274,6.915c0.2,0,0.394,0.029,0.576,0.086c0.69-0.773,1.455-1.477,2.283-2.1C8.098,4.755,8.079,4.602,8.079,4.446\r\n\tc0-0.217,0.036-0.426,0.102-0.621C7.252,3.161,6.244,2.602,5.17,2.171C4.165,2.792,3.288,3.602,2.588,4.552\r\n\tc0.519,0.92,1.136,1.777,1.838,2.557C4.682,6.985,4.969,6.915,5.274,6.915z M3.316,8.872c0-0.275,0.058-0.537,0.159-0.773\r\n\tC2.847,7.407,2.278,6.663,1.78,5.87C1.155,7.112,0.8,8.515,0.8,10.001c0,1.719,0.474,3.328,1.295,4.705\r\n\tc0.294-1.654,0.851-3.219,1.62-4.652C3.465,9.726,3.316,9.315,3.316,8.872z M10.036,2.489c0.517,0,0.985,0.201,1.336,0.529\r\n\tc1.021-0.439,2.096-0.777,3.215-0.992C13.236,1.247,11.67,0.8,10,0.8c-1.139,0-2.229,0.209-3.236,0.588\r\n\tc0.799,0.395,1.561,0.855,2.277,1.375C9.333,2.589,9.672,2.489,10.036,2.489z M12.962,11.708c0.122-0.254,0.295-0.479,0.509-0.656\r\n\tc-0.578-1.777-1.493-3.404-2.672-4.803c-0.234,0.1-0.492,0.154-0.764,0.154c-0.425,0-0.816-0.137-1.137-0.365\r\n\tc-0.71,0.539-1.367,1.143-1.964,1.803C7.122,8.14,7.231,8.493,7.231,8.872c0,0.203-0.031,0.4-0.09,0.586\r\n\tC8.858,10.604,10.835,11.392,12.962,11.708z M15.501,14.351c0.026,0.371,0.041,0.744,0.041,1.121c0,0.664-0.042,1.318-0.122,1.961\r\n\tc1.56-1.139,2.748-2.758,3.347-4.639c-0.71,0.172-1.438,0.295-2.181,0.365C16.413,13.696,16.014,14.128,15.501,14.351z\r\n\t M12.504,13.024c-2.272-0.377-4.377-1.244-6.21-2.484c-0.298,0.182-0.647,0.289-1.021,0.289c-0.139,0-0.272-0.014-0.402-0.041\r\n\tc-0.877,1.662-1.438,3.517-1.599,5.484c0.876,0.94,1.944,1.697,3.145,2.205C7.909,16.184,9.993,14.288,12.504,13.024z M16.176,3.181\r\n\tc-1.475,0.143-2.883,0.514-4.193,1.068c0.006,0.066,0.01,0.131,0.01,0.197c0,0.309-0.074,0.6-0.201,0.859\r\n\tc1.311,1.539,2.327,3.33,2.969,5.291c0.797,0.016,1.477,0.502,1.77,1.195c0.886-0.09,1.748-0.26,2.578-0.504\r\n\tc0.06-0.42,0.092-0.85,0.092-1.287C19.2,7.296,18.034,4.864,16.176,3.181z M13.489,14.069c-2.344,1.098-4.304,2.789-5.723,4.856\r\n\tC8.481,19.104,9.229,19.2,10,19.2c1.387,0,2.702-0.309,3.882-0.859c0.19-0.928,0.29-1.887,0.29-2.869\r\n\tc0-0.355-0.016-0.707-0.043-1.055C13.893,14.341,13.676,14.224,13.489,14.069z" + } + }] +}; +exports.network = network; +var newIcon = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.69,12.344l-1.727-1.538c-0.5-0.445-0.5-1.174,0-1.619l1.727-1.539c0.5-0.445,0.367-0.859-0.296-0.924l-2.29-0.217\r\n\tc-0.662-0.062-1.02-0.633-0.791-1.266l1.215-3.383c0.228-0.635-0.051-0.865-0.619-0.514l-2.701,1.67\r\n\tc-0.568,0.354-1.303,0.16-1.631-0.426l-0.978-1.746c-0.329-0.588-0.872-0.59-1.207-0.008l-0.909,1.58\r\n\tC8.146,2.999,7.375,3.247,6.77,2.97l-1.6-0.734C4.562,1.956,4.097,2.278,4.133,2.952l0.086,1.615\r\n\tc0.037,0.674-0.461,1.367-1.104,1.541L1.57,6.522C0.928,6.696,0.81,7.202,1.31,7.647l1.727,1.539c0.5,0.445,0.5,1.174,0,1.619\r\n\tL1.31,12.344c-0.5,0.445-0.368,0.877,0.293,0.957l2.095,0.254c0.661,0.08,1.029,0.67,0.818,1.311l-1.074,3.258\r\n\tc-0.211,0.641,0.09,0.889,0.668,0.555l2.463-1.426c0.578-0.334,1.356-0.15,1.729,0.408l1.022,1.539\r\n\tc0.372,0.559,0.931,0.529,1.24-0.068l0.899-1.733c0.31-0.598,1.052-0.842,1.648-0.543l1.734,0.867\r\n\tc0.598,0.297,1.057-0.01,1.021-0.682l-0.087-1.617c-0.035-0.674,0.461-1.365,1.106-1.539l1.543-0.416\r\n\tC19.072,13.295,19.19,12.789,18.69,12.344z M11,14H9v-2h2V14z M11,11H9V6h2V11z" + } + }] +}; +exports.newIcon = newIcon; +var news = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M14,5h-4v2h4V5z M14,8h-4v1h4V8z M9,5H6v4h3V5z M9,11h5v-1H9V11z M12,13h2v-1h-2\r\n\tV13z M14,14H6v1h8V14z M11,12H6v1h5V12z M8,10H6v1h2V10z M17,1H3C2.447,1,2,1.447,2,2v16c0,0.552,0.447,1,1,1h14\r\n\tc0.553,0,1-0.448,1-1V2C18,1.448,17.553,1,17,1z M16,17H4V3h12V17z" + } + }] +}; +exports.news = news; +var newsletter = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M18,3H2C1.4472656,3,1,3.4472656,1,4v12c0,0.5517578,0.4472656,1,1,1h16c0.5527344,0,1-0.4482422,1-1V4\r\n\tC19,3.4481812,18.5527344,3,18,3z M4,10h6v1H4V10z M12,14H4v-1h8V14z M17,8h-3V5h3V8z" + } + }] +}; +exports.newsletter = newsletter; +var notification = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M15,8.38V17H3V5h8.62c-0.073-0.322-0.12-0.655-0.12-1s0.047-0.678,0.12-1H3C1.898,3,1,3.9,1,5v12c0,1.1,0.9,2,2,2h12\r\n\tc1.1,0,2-0.9,2-2V8.38c-0.322,0.073-0.655,0.12-1,0.12S15.322,8.453,15,8.38z M16,1c-1.657,0-3,1.343-3,3s1.343,3,3,3s3-1.343,3-3\r\n\tS17.657,1,16,1z" + } + }] +}; +exports.notification = notification; +var off = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.8,17.4c0.2,0.2,0.2,0.5,0,0.7l-0.7,0.7c-0.2,0.2-0.5,0.2-0.7,0L1.2,2.6C1,2.4,1,2.1,1.2,1.9l0.7-0.7\r\n\tC2.1,1,2.4,1,2.6,1.2L18.8,17.4z M16,7c1.7,0,3-1.3,3-3c0-1.7-1.3-3-3-3s-3,1.3-3,3C13,5.7,14.3,7,16,7z M15,8.4v3.8l2,2V8.4\r\n\tc-0.3,0.1-0.7,0.1-1,0.1S15.3,8.5,15,8.4z M11.6,5c-0.1-0.3-0.1-0.7-0.1-1c0-0.3,0-0.7,0.1-1H5.8l2,2H11.6z M5,15V7.8l-2-2V15\r\n\tc0,1.1,0.9,2,2,2h9.2l-2-2H5z" + } + }] +}; +exports.off = off; +var phone = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M17.256,12.253c-0.096-0.667-0.611-1.187-1.274-1.342c-2.577-0.604-3.223-2.088-3.332-3.734C12.193,7.092,11.38,7,10,7\r\n\tS7.807,7.092,7.35,7.177c-0.109,1.646-0.755,3.13-3.332,3.734c-0.663,0.156-1.178,0.675-1.274,1.342l-0.497,3.442\r\n\tC2.072,16.907,2.962,18,4.2,18h11.6c1.237,0,2.128-1.093,1.953-2.305L17.256,12.253z M10,15.492c-1.395,0-2.526-1.12-2.526-2.5\r\n\ts1.131-2.5,2.526-2.5s2.526,1.12,2.526,2.5S11.394,15.492,10,15.492z M19.95,6C19.926,4.5,16.108,2.001,10,2\r\n\tC3.891,2.001,0.073,4.5,0.05,6s0.021,3.452,2.535,3.127c2.941-0.381,2.76-1.408,2.76-2.876C5.345,5.227,7.737,4.98,10,4.98\r\n\ts4.654,0.247,4.655,1.271c0,1.468-0.181,2.495,2.76,2.876C19.928,9.452,19.973,7.5,19.95,6z" + } + }] +}; +exports.phone = phone; +var palette = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M15.74,2.608C12.212,1.422,8.674,1.647,5.02,3.882c-2.853,1.743-4.718,6.076-4.103,9.182\r\n\tc0.728,3.671,4.351,5.995,9.243,4.651c5.275-1.449,6.549-4.546,6.379-5.334c-0.17-0.788-2.665-1.652-1.718-3.498\r\n\tc1.188-2.313,3.129-1.149,3.982-1.622C19.658,6.789,19.342,3.819,15.74,2.608z M12.094,13.314c-0.798,0.218-1.623-0.256-1.843-1.059\r\n\tc-0.221-0.805,0.248-1.631,1.046-1.849c0.798-0.218,1.622,0.254,1.843,1.059C13.36,12.268,12.892,13.096,12.094,13.314z" + } + }] +}; +exports.palette = palette; +var plane = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.64,2.634C18.296,2.755,1.319,8.738,0.984,8.856c-0.284,0.1-0.347,0.345-0.01,0.479c0.401,0.161,3.796,1.521,3.796,1.521\r\n\tl0,0l2.25,0.901c0,0,10.838-7.958,10.984-8.066c0.148-0.108,0.318,0.095,0.211,0.211c-0.107,0.117-7.871,8.513-7.871,8.513v0.002\r\n\tL9.892,12.92l0.599,0.322l0,0c0,0,4.65,2.504,4.982,2.682c0.291,0.156,0.668,0.027,0.752-0.334\r\n\tc0.099-0.426,2.845-12.261,2.906-12.525C19.21,2.722,18.983,2.513,18.64,2.634z M7,17.162c0,0.246,0.139,0.315,0.331,0.141\r\n\tc0.251-0.229,2.85-2.561,2.85-2.561L7,13.098V17.162z" + } + }] +}; +exports.plane = plane; +var pencil = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M14.69,2.661c-1.894-1.379-3.242-1.349-3.754-1.266c-0.144,0.023-0.265,0.106-0.35,0.223l-4.62,6.374l-2.263,3.123\r\n\tc-0.277,0.382-0.437,0.836-0.462,1.307l-0.296,5.624c-0.021,0.405,0.382,0.698,0.76,0.553l5.256-2.01\r\n\tc0.443-0.17,0.828-0.465,1.106-0.849l1.844-2.545l5.036-6.949c0.089-0.123,0.125-0.273,0.1-0.423\r\n\tC16.963,5.297,16.56,4.021,14.69,2.661z M8.977,15.465l-2.043,0.789c-0.08,0.031-0.169,0.006-0.221-0.062\r\n\tc-0.263-0.335-0.576-0.667-1.075-1.03c-0.499-0.362-0.911-0.558-1.31-0.706c-0.08-0.03-0.131-0.106-0.126-0.192l0.122-2.186\r\n\tl0.549-0.755c0,0,1.229-0.169,2.833,0.998c1.602,1.166,1.821,2.388,1.821,2.388L8.977,15.465z" + } + }] +}; +exports.pencil = pencil; +var chart = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M11,0.958v9.039C11,10.551,10.551,11,9.997,11H0.958c0.498,4.555,4.355,8.1,9.042,8.1c5.026,0,9.1-4.074,9.1-9.1\r\n\tC19.1,5.312,15.555,1.456,11,0.958z M9,0.958C4.774,1.42,1.42,4.774,0.958,9H9V0.958z" + } + }] +}; +exports.chart = chart; +var plus = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M16,10c0,0.553-0.048,1-0.601,1H11v4.399C11,15.951,10.553,16,10,16c-0.553,0-1-0.049-1-0.601V11H4.601\r\n\tC4.049,11,4,10.553,4,10c0-0.553,0.049-1,0.601-1H9V4.601C9,4.048,9.447,4,10,4c0.553,0,1,0.048,1,0.601V9h4.399\r\n\tC15.952,9,16,9.447,16,10z" + } + }] +}; +exports.plus = plus; +var popup = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M16,2H7.979C6.88,2,6,2.88,6,3.98V12c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V4C18,2.9,17.1,2,16,2z M16,12H8V4h8V12z M4,10H2v6\r\n\tc0,1.1,0.9,2,2,2h6v-2H4V10z" + } + }] +}; +exports.popup = popup; +var plug = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M0,14v1.498C0,15.775,0.225,16,0.502,16h0.997C1.775,16,2,15.775,2,15.498V14c0-0.959,0.801-2.273,2-2.779V9.116\r\n\tC1.684,9.652,0,11.97,0,14z M12.065,4.701L9.535,6.599C9.188,6.859,8.766,7,8.332,7H6.005C5.45,7,5,7.45,5,8.005v3.991\r\n\tC5,12.55,5.45,13,6.005,13h2.327c0.434,0,0.856,0.141,1.203,0.401l2.531,1.898C12.672,15.754,13.41,16,14.168,16H16V4h-1.832\r\n\tC13.41,4,12.672,4.246,12.065,4.701z M17,6v2h3V6H17z M17,14h3v-2h-3V14z" + } + }] +}; +exports.plug = plug; +var tag = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "g", + "attribs": {} + }] +}; +exports.tag = tag; +var print = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M1.501,6h17c0.57,0,0.477-0.608,0.193-0.707C18.409,5.194,15.251,4,14.7,4H14V1H6v3H5.301c-0.55,0-3.709,1.194-3.993,1.293\r\n\tC1.024,5.392,0.931,6,1.501,6z M19,7H1C0.45,7,0,7.45,0,8v5c0,0.551,0.45,1,1,1h2.283l-0.882,5h15.199l-0.883-5H19\r\n\tc0.551,0,1-0.449,1-1V8C20,7.45,19.551,7,19,7z M4.603,17l1.198-7.003H14.2L15.399,17H4.603z" + } + }] +}; +exports.print = print; +var empty = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M18,5H2C0.9,5,0,5.9,0,7v6c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V7C20,5.9,19.1,5,18,5z M18,13H2V7h16V13z" + } + }] +}; +exports.empty = empty; +var full = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M18,5H2C0.9,5,0,5.9,0,7v6c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V7C20,5.9,19.1,5,18,5z M18,13H2V7h16V13z M7,8H3v4h4V8z\r\n\t M12,8H8v4h4V8z M17,8h-4v4h4V8z" + } + }] +}; +exports.full = full; +var one = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M18,5H2C0.9,5,0,5.9,0,7v6c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V7C20,5.9,19.1,5,18,5z M18,13H2V7h16V13z M7,8H3v4h4V8z" + } + }] +}; +exports.one = one; +var two = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M18,5H2C0.9,5,0,5.9,0,7v6c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V7C20,5.9,19.1,5,18,5z M18,13H2V7h16V13z M7,8H3v4h4V8z\r\n\t M12,8H8v4h4V8z" + } + }] +}; +exports.two = two; +var publish = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M9.967,8.193L5,13h3v6h4v-6h3L9.967,8.193z M18,1H2C0.9,1,0,1.9,0,3v12c0,1.1,0.9,2,2,2h4v-2H2V6h16v9h-4v2h4\r\n\tc1.1,0,2-0.9,2-2V3C20,1.9,19.1,1,18,1z M2.5,4.25c-0.414,0-0.75-0.336-0.75-0.75c0-0.414,0.336-0.75,0.75-0.75\r\n\tc0.414,0,0.75,0.336,0.75,0.75C3.25,3.914,2.914,4.25,2.5,4.25z M4.5,4.25c-0.414,0-0.75-0.336-0.75-0.75\r\n\tc0-0.414,0.336-0.75,0.75-0.75c0.414,0,0.75,0.336,0.75,0.75C5.25,3.914,4.914,4.25,4.5,4.25z M18,4H6V3h12.019L18,4z" + } + }] +}; +exports.publish = publish; +var quote = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M5.315,3.401c-1.61,0-2.916,1.343-2.916,3c0,1.656,1.306,3,2.916,3c2.915,0,0.972,5.799-2.916,5.799v1.4\r\n\tC9.338,16.601,12.057,3.401,5.315,3.401z M13.715,3.401c-1.609,0-2.915,1.343-2.915,3c0,1.656,1.306,3,2.915,3\r\n\tc2.916,0,0.973,5.799-2.915,5.799v1.4C17.738,16.601,20.457,3.401,13.715,3.401z" + } + }] +}; +exports.quote = quote; +var radio = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M17,8H5.021l8.974-5.265L13,1L1.736,7.571C1.28,7.837,1,8.324,1,8.852V17c0,1.105,0.895,2,2,2h14c1.105,0,2-0.895,2-2v-7\r\n\tC19,8.895,18.105,8,17,8z M15.5,17c-0.828,0-1.5-0.672-1.5-1.5c0-0.828,0.672-1.5,1.5-1.5s1.5,0.672,1.5,1.5\r\n\tC17,16.328,16.328,17,15.5,17z M17,12H3v-2h14V12z" + } + }] +}; +exports.radio = radio; +var all = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M7.225,5.767V3.086L0,9.542l7.225,6.691v-2.777L3,9.542L7.225,5.767z M12.225,6.953V3.086L5,9.542l7.225,6.691v-4.357\r\n\tc3.292,0,5.291,0.422,7.775,4.81C20,16.685,19.632,6.953,12.225,6.953z" + } + }] +}; +exports.all = all; +var reply = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M19,16.685c0,0-2.225-9.732-11-9.732V2.969L1,9.542l7,6.69v-4.357C12.763,11.874,16.516,12.296,19,16.685z" + } + }] +}; +exports.reply = reply; +var oneHundredPercent = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M4.1,14.1L1,17l2,2l2.9-3.1L8,18v-6H2L4.1,14.1z M19,3l-2-2l-2.9,3.1L12,2v6h6l-2.1-2.1L19,3z" + } + }] +}; +exports.oneHundredPercent = oneHundredPercent; +var fullScreen = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M6.987,10.987l-2.931,3.031L2,11.589V18h6.387l-2.43-2.081l3.03-2.932L6.987,10.987z M11.613,2l2.43,2.081l-3.03,2.932l2,2\r\n\tl2.931-3.031L18,8.411V2H11.613z" + } + }] +}; +exports.fullScreen = fullScreen; +var retweet = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M5,13V8h2L3.5,4L0,8h2v6c0,1.104,0.895,2,2,2h9.482l-2.638-3H5z M9.156,7L6.518,4H16c1.104,0,2,0.897,2,2v6h2l-3.5,4L13,12\r\n\th2V7H9.156z" + } + }] +}; +exports.retweet = retweet; +var rocket = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M11.933,13.069c0,0,7.059-5.094,6.276-10.924c-0.017-0.127-0.059-0.213-0.112-0.268c-0.054-0.055-0.137-0.098-0.263-0.115\r\n\tC12.137,0.961,7.16,8.184,7.16,8.184C2.842,7.667,3.156,8.528,1.186,13.26c-0.377,0.902,0.234,1.213,0.904,0.959\r\n\tc0.67-0.252,2.148-0.811,2.148-0.811l2.59,2.648c0,0-0.546,1.514-0.793,2.199c-0.248,0.686,0.055,1.311,0.938,0.926\r\n\tC11.597,17.165,12.439,17.487,11.933,13.069z M12.942,7.153c-0.598-0.613-0.598-1.604,0-2.217c0.598-0.611,1.567-0.611,2.166,0\r\n\tc0.598,0.611,0.598,1.603,0,2.217C14.509,7.764,13.539,7.764,12.942,7.153z" + } + }] +}; +exports.rocket = rocket; +var rss = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M2.4,2.4v2.367c7.086,0,12.83,5.746,12.83,12.832h2.369C17.599,9.205,10.794,2.4,2.4,2.4z M2.4,7.137v2.369\r\n\tc4.469,0,8.093,3.623,8.093,8.094h2.368C12.861,11.822,8.177,7.137,2.4,7.137z M4.669,13.059c-1.254,0-2.27,1.018-2.27,2.271\r\n\ts1.016,2.27,2.27,2.27s2.269-1.016,2.269-2.27S5.923,13.059,4.669,13.059z" + } + }] +}; +exports.rss = rss; +var ruler = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M14.249,0.438L0.438,14.251c-0.584,0.584-0.584,1.538,0.002,2.124l3.185,3.187c0.584,0.584,1.541,0.586,2.124,0.002\r\n\tL19.562,5.751c0.584-0.585,0.584-1.541,0-2.125l-3.186-3.188C15.789-0.148,14.834-0.145,14.249,0.438z M3.929,15.312L3.17,16.071\r\n\tl-1.896-1.897l0.759-0.759L3.929,15.312z M6.965,15.312l-0.759,0.759l-3.415-3.415l0.759-0.76L6.965,15.312z M6.965,12.276\r\n\tl-0.759,0.759l-1.898-1.896l0.76-0.76L6.965,12.276z M8.483,10.758l-0.759,0.759L5.828,9.621l0.759-0.76L8.483,10.758z\r\n\t M11.518,10.758l-0.759,0.759L7.345,8.103l0.759-0.759L11.518,10.758z M11.518,7.723l-0.759,0.759L8.863,6.586l0.759-0.759\r\n\tL11.518,7.723z M13.036,6.206l-0.759,0.759L10.38,5.068l0.759-0.759L13.036,6.206z M16.072,6.206l-0.76,0.759L11.898,3.55\r\n\tl0.759-0.76L16.072,6.206z M16.071,3.171l-0.759,0.759l-1.896-1.898l0.759-0.758L16.071,3.171z" + } + }] +}; +exports.ruler = ruler; +var save = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M15.173,2H4C2.899,2,2,2.9,2,4v12c0,1.1,0.899,2,2,2h12c1.101,0,2-0.9,2-2V5.127L15.173,2z M14,8c0,0.549-0.45,1-1,1H7\r\n\tC6.45,9,6,8.549,6,8V3h8V8z M13,4h-2v4h2V4z" + } + }] +}; +exports.save = save; +var scissors = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M8.38,5.59c0-2.038-1.652-3.69-3.69-3.69S1,3.552,1,5.59c0,2.038,1.652,3.69,3.69,3.69c0.96,0,1.826-0.376,2.483-0.976\r\n\tL9,9.991L9.012,10l-0.004,0.003l-1.836,1.693C6.516,11.096,5.65,10.72,4.69,10.72C2.652,10.72,1,12.372,1,14.41\r\n\tc0,2.038,1.652,3.69,3.69,3.69s3.69-1.652,3.69-3.69c0-0.297-0.044-0.582-0.111-0.858l2.844-1.991l4.127,3.065\r\n\tc2.212,1.549,3.76-0.663,3.76-0.663L8.269,6.448C8.335,6.172,8.38,5.887,8.38,5.59z M4.69,7.39c-0.994,0-1.8-0.806-1.8-1.8\r\n\ts0.806-1.8,1.8-1.8s1.8,0.806,1.8,1.8S5.684,7.39,4.69,7.39z M4.69,16.21c-0.994,0-1.8-0.806-1.8-1.8s0.806-1.8,1.8-1.8\r\n\ts1.8,0.806,1.8,1.8S5.684,16.21,4.69,16.21z M19,6.038c0,0-1.548-2.212-3.76-0.663L12.035,7.61l2.354,1.648L19,6.038z" + } + }] +}; +exports.scissors = scissors; +var arrows = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,1L5,8h10L10,1z M10,19l5-7H5L10,19z" + } + }] +}; +exports.arrows = arrows; +var alternative = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M9,13h2V4h2l-3-4L7,4h2V13z M17,7h-3v2h2v9H4V9h2V7H3C2.447,7,2,7.447,2,8v11c0,0.552,0.447,1,1,1h14c0.553,0,1-0.448,1-1V8\r\n\tC18,7.448,17.553,7,17,7z" + } + }] +}; +exports.alternative = alternative; +var share = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M15,13.442c-0.633,0-1.204,0.246-1.637,0.642l-5.938-3.463C7.471,10.433,7.5,10.237,7.5,10.037S7.471,9.642,7.425,9.454\r\n\tL13.3,6.025C13.746,6.442,14.342,6.7,15,6.7c1.379,0,2.5-1.121,2.5-2.5S16.379,1.7,15,1.7s-2.5,1.121-2.5,2.5\r\n\tc0,0.2,0.029,0.396,0.075,0.583L6.7,8.212C6.254,7.796,5.658,7.537,5,7.537c-1.379,0-2.5,1.121-2.5,2.5s1.121,2.5,2.5,2.5\r\n\tc0.658,0,1.254-0.258,1.7-0.675l5.938,3.463c-0.042,0.175-0.067,0.358-0.067,0.546c0,1.342,1.087,2.429,2.429,2.429\r\n\ts2.429-1.088,2.429-2.429S16.342,13.442,15,13.442z" + } + }] +}; +exports.share = share; +var shareable = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M6.8,10c0,1.768,1.433,3.201,3.2,3.201c1.768,0,3.199-1.433,3.199-3.201c0-1.767-1.431-3.2-3.199-3.2S6.8,8.233,6.8,10z\r\n\t M4.529,8.8C5.078,6.284,7.318,4.4,10,4.4c1.546,0,2.945,0.627,3.959,1.64c0.469,0.469,1.229,0.469,1.697,0\r\n\tc0.469-0.469,0.469-1.229,0-1.697C14.209,2.896,12.209,2,10,2C6.418,2,3.386,4.354,2.367,7.601H0V10h3.199\r\n\tC4.198,10,4.444,9.187,4.529,8.8z M16.8,10c-0.999,0-1.245,0.814-1.329,1.199c-0.549,2.516-2.789,4.4-5.471,4.4\r\n\tc-1.547,0-2.946-0.627-3.959-1.641c-0.469-0.469-1.229-0.469-1.698,0c-0.468,0.469-0.468,1.229,0,1.697C5.791,17.104,7.791,18,10,18\r\n\tc3.582,0,6.613-2.356,7.633-5.6H20V10H16.8z" + } + }] +}; +exports.shareable = shareable; +var shield = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M17.604,3.332C12.99,4,12.075,2.833,10,1C7.925,2.833,7.01,4,2.396,3.332C-0.063,15.58,10,19,10,19\r\n\tS20.063,15.58,17.604,3.332z M12.473,13.309L10,12.009l-2.472,1.3L8,10.556L6,8.606l2.764-0.401L10,5.7l1.236,2.505L14,8.606\r\n\tl-2,1.949L12.473,13.309z" + } + }] +}; +exports.shield = shield; +var shop = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M6.123,7.25L6.914,2H2.8L1.081,6.5C1.028,6.66,1,6.826,1,7c0,1.104,1.15,2,2.571,2C4.881,9,5.964,8.236,6.123,7.25z M10,9\r\n\tc1.42,0,2.571-0.896,2.571-2c0-0.041-0.003-0.082-0.005-0.121L12.057,2H7.943l-0.51,4.875C7.431,6.916,7.429,6.957,7.429,7\r\n\tC7.429,8.104,8.58,9,10,9z M15,10.046V14H5v-3.948C4.562,10.21,4.08,10.3,3.571,10.3c-0.195,0-0.384-0.023-0.571-0.049V16.6\r\n\tc0,0.77,0.629,1.4,1.398,1.4H15.6c0.77,0,1.4-0.631,1.4-1.4v-6.348c-0.188,0.025-0.376,0.049-0.571,0.049\r\n\tC15.923,10.3,15.439,10.208,15,10.046z M18.92,6.5L17.199,2h-4.113l0.79,5.242C14.03,8.232,15.113,9,16.429,9\r\n\tC17.849,9,19,8.104,19,7C19,6.826,18.972,6.66,18.92,6.5z" + } + }] +}; +exports.shop = shop; +var bag = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.121,3.271c-0.295-0.256-1.906-1.731-2.207-1.991C15.615,1.021,15.158,1,14.812,1H5.188C4.843,1,4.386,1.021,4.086,1.28\r\n\tC3.785,1.54,2.174,3.016,1.879,3.271C1.582,3.527,1.336,3.914,1.415,4.463c0.079,0.551,1.89,13.661,1.937,13.973\r\n\tC3.398,18.747,3.67,18.993,4,19h12c0.33-0.007,0.602-0.253,0.648-0.565c0.047-0.311,1.858-13.422,1.938-13.973\r\n\tC18.664,3.914,18.418,3.527,18.121,3.271z M10,11.973c-3.248,0-3.943-4.596-4.087-5.543H7.75c0.276,1.381,0.904,3.744,2.25,3.744\r\n\ts1.975-2.363,2.25-3.744h1.838C13.943,7.377,13.248,11.973,10,11.973z M3.17,4.006L5,2h10l1.83,2.006H3.17z" + } + }] +}; +exports.bag = bag; +var basket = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.399,7h-5.007l-1.812,1.812c-0.453,0.453-1.056,0.702-1.696,0.702c-0.642,0-1.244-0.25-1.698-0.703\r\n\tC7.734,8.359,7.484,7.757,7.483,7.116c0-0.039,0.01-0.077,0.011-0.116H1.6C1.268,7,1,7.268,1,7.6V10h18V7.6\r\n\tC19,7.268,18.73,7,18.399,7z M10.768,7.999l5.055-5.055c0.235-0.234,0.237-0.613,0.002-0.849l-0.92-0.92\r\n\tc-0.234-0.234-0.614-0.233-0.85,0L9,6.231c-0.488,0.488-0.488,1.28,0,1.768C9.488,8.486,10.279,8.487,10.768,7.999z M3.823,17.271\r\n\tC3.92,17.672,4.338,18,4.75,18h10.5c0.412,0,0.83-0.328,0.927-0.729L17.7,11H2.3L3.823,17.271z" + } + }] +}; +exports.basket = basket; +var cart = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M13,17c0,1.104,0.894,2,2,2c1.104,0,2-0.896,2-2c0-1.106-0.896-2-2-2C13.894,15,13,15.894,13,17z M3,17c0,1.104,0.895,2,2,2\r\n\tc1.103,0,2-0.896,2-2c0-1.106-0.897-2-2-2C3.895,15,3,15.894,3,17z M6.547,12.172L17.615,9.01C17.826,8.949,18,8.721,18,8.5V3H4V1.4\r\n\tC4,1.18,3.819,1,3.601,1H0.399C0.18,1,0,1.18,0,1.4L0,3h2l1.91,8.957L4,12.9v1.649c0,0.219,0.18,0.4,0.4,0.4H17.6\r\n\tc0.22,0,0.4-0.182,0.4-0.4V13H6.752C5.602,13,5.578,12.449,6.547,12.172z" + } + }] +}; +exports.cart = cart; +var shuffle = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M15.093,6.694h0.92v2.862L20,5.532l-3.988-4.025v2.387h-0.92c-3.694,0-5.776,2.738-7.614,5.152\r\n\tc-1.652,2.172-3.08,4.049-5.386,4.049H0v2.799h2.093c3.694,0,5.776-2.736,7.614-5.152C11.359,8.569,12.787,6.694,15.093,6.694z\r\n\t M5.41,8.458c0.158-0.203,0.316-0.412,0.477-0.623C6.277,7.321,6.691,6.78,7.139,6.239C5.817,5.005,4.224,4.095,2.093,4.095H0v2.799\r\n\th2.093C3.42,6.894,4.455,7.517,5.41,8.458z M16.012,13.294h-0.92c-1.407,0-2.487-0.701-3.491-1.738\r\n\tc-0.1,0.131-0.201,0.264-0.303,0.397c-0.441,0.58-0.915,1.201-1.439,1.818c1.356,1.324,3,2.324,5.232,2.324h0.92v2.398L20,14.468\r\n\tl-3.988-4.025V13.294z" + } + }] +}; +exports.shuffle = shuffle; +var signal = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,14c-1.094,0-1.981,0.894-1.981,2c0,1.104,0.887,2,1.981,2c1.094,0,1.98-0.896,1.98-2C11.98,14.895,11.094,14,10,14z\r\n\t M5.8,11.758l1.4,1.414c1.546-1.562,4.054-1.562,5.601,0l1.399-1.414C11.881,9.415,8.119,9.415,5.8,11.758z M3,8.928l1.4,1.414\r\n\tc3.092-3.123,8.106-3.123,11.199,0L17,8.928C13.135,5.024,6.865,5.024,3,8.928z M0.199,6.1l1.4,1.414\r\n\tc4.639-4.686,12.161-4.686,16.801,0L19.8,6.1C14.388,0.633,5.612,0.633,0.199,6.1z" + } + }] +}; +exports.signal = signal; +var mix = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M5,1.6C5,1.047,4.552,1,4,1C3.447,1,3,1.047,3,1.6V10h2V1.6z M3,18.4C3,18.951,3.447,19,4,19c0.552,0,1-0.049,1-0.6V15H3\r\n\tV18.4z M6.399,11H1.599C1.046,11,1,11.448,1,12v1c0,0.553,0.046,1,0.599,1h4.801C6.95,14,7,13.553,7,13v-1\r\n\tC7,11.448,6.95,11,6.399,11z M18.399,12h-4.801C13.046,12,13,12.448,13,13v1c0,0.553,0.046,1,0.599,1h4.801\r\n\tC18.95,15,19,14.553,19,14v-1C19,12.448,18.95,12,18.399,12z M13,7c0-0.552-0.05-1-0.601-1H7.599C7.046,6,7,6.448,7,7v1\r\n\tc0,0.553,0.046,1,0.599,1h4.801C12.95,9,13,8.553,13,8V7z M11,1.6C11,1.047,10.552,1,10,1C9.447,1,9,1.047,9,1.6V5h2V1.6z M9,18.4\r\n\tc0,0.551,0.447,0.6,1,0.6c0.552,0,1-0.049,1-0.6V10H9V18.4z M17,1.6C17,1.047,16.552,1,16,1c-0.553,0-1,0.047-1,0.6V11h2V1.6z\r\n\t M15,18.4c0,0.551,0.447,0.6,1,0.6c0.552,0,1-0.049,1-0.6V16h-2V18.4z" + } + }] +}; +exports.mix = mix; +var mute = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M14.201,9.194c1.389,1.883,1.818,3.517,1.559,3.777c-0.26,0.258-1.893-0.17-3.778-1.559l-5.526,5.527\r\n\tc4.186,1.838,9.627-2.018,10.605-2.996c0.925-0.922,0.097-3.309-1.856-5.754L14.201,9.194z M8.667,7.941\r\n\tc-1.099-1.658-1.431-3.023-1.194-3.26c0.233-0.234,1.6,0.096,3.257,1.197l1.023-1.025C9.489,3.179,7.358,2.519,6.496,3.384\r\n\tC5.568,4.31,2.048,9.261,3.265,13.341L8.667,7.941z M18.521,1.478c-0.39-0.391-1.023-0.391-1.414,0L1.478,17.108\r\n\tc-0.391,0.391-0.391,1.024,0,1.414c0.391,0.391,1.023,0.391,1.414,0L18.521,2.892C18.912,2.501,18.912,1.868,18.521,1.478z" + } + }] +}; +exports.mute = mute; +var sound = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M5.312,4.566C4.19,5.685-0.715,12.681,3.523,16.918c4.236,4.238,11.23-0.668,12.354-1.789\r\n\tc1.121-1.119-0.335-4.395-3.252-7.312C9.706,4.898,6.434,3.441,5.312,4.566z M14.576,14.156c-0.332,0.328-2.895-0.457-5.364-2.928\r\n\tC6.745,8.759,5.956,6.195,6.288,5.865c0.328-0.332,2.894,0.457,5.36,2.926C14.119,11.258,14.906,13.824,14.576,14.156z\r\n\t M15.434,5.982l1.904-1.906c0.391-0.391,0.391-1.023,0-1.414c-0.39-0.391-1.023-0.391-1.414,0l-1.904,1.906\r\n\tc-0.391,0.391-0.391,1.024,0,1.414C14.41,6.372,15.043,6.372,15.434,5.982z M11.124,3.8c0.483,0.268,1.091,0.095,1.36-0.388\r\n\tl1.087-1.926c0.268-0.483,0.095-1.091-0.388-1.36c-0.482-0.269-1.091-0.095-1.36,0.388l-1.087,1.926\r\n\tC10.468,2.924,10.642,3.533,11.124,3.8z M19.872,6.816c-0.267-0.483-0.877-0.657-1.36-0.388l-1.94,1.061\r\n\tc-0.483,0.268-0.657,0.878-0.388,1.36c0.268,0.483,0.877,0.657,1.36,0.388l1.94-1.061C19.967,7.907,20.141,7.299,19.872,6.816z" + } + }] +}; +exports.sound = sound; +var club = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M6,13.5l4,2.5l4-2.5V5H6V13.5z M4.5,10c0-1.105-0.896-2-2-2s-2,0.895-2,2c0,1.105,0.896,2,2,2S4.5,11.105,4.5,10z M17.5,8\r\n\tc-1.104,0-2,0.895-2,2c0,1.105,0.896,2,2,2s2-0.895,2-2C19.5,8.895,18.604,8,17.5,8z M4.485,6.199C5.74,4.384,7.802,3.3,10,3.3\r\n\tc2.158,0,4.198,1.056,5.456,2.823c0.449,0.629,1.323,0.776,1.952,0.329c0.63-0.448,0.777-1.323,0.329-1.953\r\n\tC15.955,1.995,13.062,0.5,10,0.5c-3.117,0-6.04,1.535-7.817,4.107c-0.439,0.636-0.28,1.508,0.355,1.948\r\n\tC3.175,6.993,4.046,6.834,4.485,6.199z M15.456,13.877C14.198,15.645,12.158,16.7,10,16.7c-2.198,0-4.26-1.084-5.515-2.899\r\n\tc-0.439-0.636-1.311-0.794-1.947-0.356c-0.636,0.44-0.795,1.312-0.355,1.948C3.96,17.965,6.883,19.5,10,19.5\r\n\tc3.062,0,5.955-1.495,7.737-3.999c0.448-0.63,0.301-1.504-0.329-1.953C16.779,13.101,15.905,13.248,15.456,13.877z" + } + }] +}; +exports.club = club; +var spreadsheet = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M16,1H4C3.447,1,3,1.447,3,2v16c0,0.552,0.447,1,1,1h12c0.553,0,1-0.448,1-1V2\r\n\tC17,1.448,16.553,1,16,1z M15,8H9v9H8V8H5V7h3V3h1v4h6V8z" + } + }] +}; +exports.spreadsheet = spreadsheet; +var star = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,1.3l2.388,6.722H18.8l-5.232,3.948l1.871,6.928L10,14.744l-5.438,4.154l1.87-6.928L1.199,8.022h6.412L10,1.3z" + } + }] +}; +exports.star = star; +var stopwatch = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M7.376,6.745c-0.447,0.275,1.197,4.242,1.598,4.888c0.35,0.569,1.093,0.742,1.658,0.394c0.568-0.352,0.745-1.094,0.395-1.66\r\n\tC10.63,9.719,7.822,6.469,7.376,6.745z M7.041,2.402C7.969,2.079,8.963,1.9,10,1.9s2.031,0.179,2.959,0.502\r\n\tc0.329,0.114,0.765-0.115,0.572-0.611c-0.141-0.36-0.277-0.712-0.332-0.855c-0.131-0.339-0.6-0.619-0.804-0.665\r\n\tC11.623,0.097,10.823,0,10,0S8.377,0.097,7.604,0.271C7.4,0.317,6.932,0.597,6.801,0.936C6.746,1.079,6.609,1.431,6.469,1.791\r\n\tC6.276,2.287,6.712,2.517,7.041,2.402z M19.098,3.186c-0.192-0.23-0.396-0.455-0.613-0.672c-0.216-0.217-0.441-0.42-0.67-0.613\r\n\tc-0.153-0.129-0.603-0.234-0.888,0.051c-0.284,0.285-1.648,1.647-1.648,1.647c0.402,0.288,0.793,0.605,1.155,0.966\r\n\tc0.362,0.361,0.677,0.752,0.966,1.155c0,0,1.363-1.362,1.647-1.647C19.333,3.787,19.228,3.338,19.098,3.186z M10,2.9\r\n\tc-4.475,0-8.101,3.626-8.101,8.1c0,4.475,3.626,8.101,8.101,8.101c4.473,0,8.1-3.626,8.1-8.101C18.1,6.527,14.473,2.9,10,2.9z\r\n\t M10,17.101c-3.368,0-6.1-2.731-6.1-6.1c0-3.369,2.731-6.1,6.1-6.1c3.369,0,6.101,2.731,6.101,6.1\r\n\tC16.101,14.369,13.369,17.101,10,17.101z" + } + }] +}; +exports.stopwatch = stopwatch; +var suitcase = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M18,4h-1v15h1c1.1,0,2-0.9,2-2V6C20,4.9,19.1,4,18,4z M0,6l0,11c0,1.1,0.899,2,2,2h1V4H2C0.899,4,0,4.9,0,6z M13.5,1.906\r\n\tC12.819,1.59,11.611,1,9.981,1C8.348,1,7.181,1.59,6.5,1.906V4H4v15h12V4h-2.5V1.906z M12,4H8V2.664\r\n\tc0.534-0.23,1.078-0.465,1.981-0.465c0.902,0,1.486,0.234,2.019,0.465V4z" + } + }] +}; +exports.suitcase = suitcase; +var swap = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M14,5H4V3L0,6.5L4,10V8h10V5z M20,13.5L16,10v2H6v3h10v2L20,13.5z" + } + }] +}; +exports.swap = swap; +var sweden = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "g", + "attribs": {} + }] +}; +exports.sweden = sweden; +var switchIcon = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M13,3H7c-3.866,0-7,3.134-7,7c0,3.866,3.134,7,7,7h6c3.866,0,7-3.134,7-7C20,6.134,16.866,3,13,3z M13,15\r\n\tc-2.761,0-5-2.239-5-5s2.239-5,5-5s5,2.239,5,5S15.761,15,13,15z" + } + }] +}; +exports.switchIcon = switchIcon; +var mobileCombo = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M17.00354,5H11.99646C10.8938599,5,10,5.8937988,10,6.9963989V18.00354C10,19.1061401,10.8938599,20,11.99646,20H17.00354\r\n\tC18.1061401,20,19,19.1061401,19,18.00354V6.9963989C19,5.8937988,18.1061401,5,17.00354,5z M14.5,19\r\n\tc-0.6904297,0-1.25-0.4473267-1.25-1c0-0.5527344,0.5595703-1,1.25-1c0.6895142,0,1.25,0.4472656,1.25,1\r\n\tC15.75,18.5526733,15.1895142,19,14.5,19z M17,16h-5V7h5V16z M8,16H3V2h12v1h2V2c0-1.1010742-0.8994141-2-2-2H3\r\n\tC1.9003906,0,1,0.8989258,1,2v16c0,1.0996094,0.9003906,2,2,2h5.5551758C8.2114258,19.4101562,8,18.7338867,8,18.003418V16z" + } + }] +}; +exports.mobileCombo = mobileCombo; +var tablet = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M16,0H4C2.9,0,2,0.899,2,2v16c0,1.1,0.9,2,2,2h12c1.101,0,2-0.9,2-2V2C18,0.899,17.101,0,16,0z M10,19\r\n\tc-0.69,0-1.25-0.447-1.25-1s0.56-1,1.25-1c0.689,0,1.25,0.447,1.25,1S10.689,19,10,19z M16,16H4V2h12V16z" + } + }] +}; +exports.tablet = tablet; +var documentInverted = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M16,1H4C3.447,1,3,1.447,3,2v16c0,0.552,0.447,1,1,1h12c0.553,0,1-0.448,1-1V2\r\n\tC17,1.448,16.553,1,16,1z M13,15H7v-2h6V15z M13,11H7V9h6V11z M13,7H7V5h6V7z" + } + }] +}; +exports.documentInverted = documentInverted; +var text = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M15.5,11h-11C4.225,11,4,11.225,4,11.5v1C4,12.776,4.225,13,4.5,13h11\r\n\tc0.276,0,0.5-0.224,0.5-0.5v-1C16,11.225,15.776,11,15.5,11z M15.5,7h-11C4.225,7,4,7.225,4,7.5v1C4,8.776,4.225,9,4.5,9h11\r\n\tC15.776,9,16,8.776,16,8.5v-1C16,7.225,15.776,7,15.5,7z M10.5,15h-6C4.225,15,4,15.225,4,15.5v1C4,16.776,4.225,17,4.5,17h6\r\n\tc0.276,0,0.5-0.224,0.5-0.5v-1C11,15.225,10.776,15,10.5,15z M15.5,3h-11C4.225,3,4,3.225,4,3.5v1C4,4.776,4.225,5,4.5,5h11\r\n\tC15.776,5,16,4.776,16,4.5v-1C16,3.225,15.776,3,15.5,3z" + } + }] +}; +exports.text = text; +var thermometer = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M13,10.123V1c0-0.553-0.447-1-1-1H7.799C7.247,0,7,0.447,7,1v9.123c-1.444,0.969-2.4,2.608-2.4,4.477\r\n\tc0,2.982,2.418,5.4,5.4,5.4c2.982,0,5.4-2.418,5.4-5.4C15.4,12.731,14.444,11.092,13,10.123z M10,17.9c-1.823,0-3.3-1.477-3.3-3.3\r\n\tc0-1.472,0.97-2.703,2.3-3.129V4h2v7.471c1.33,0.426,2.3,1.657,2.3,3.129C13.3,16.422,11.823,17.9,10,17.9z" + } + }] +}; +exports.thermometer = thermometer; +var ticket = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M4.906,11.541l3.551,3.553l6.518-6.518l-3.553-3.551L4.906,11.541z M19.104,6.664l-1.511-1.512\r\n\tc-0.289,0.156-0.618,0.246-0.969,0.246c-1.118,0-2.024-0.906-2.024-2.023c0-0.352,0.089-0.682,0.246-0.969l-1.511-1.512\r\n\tc-0.394-0.393-1.038-0.393-1.432,0l-11.01,11.01c-0.393,0.392-0.393,1.037,0,1.432l1.512,1.51C2.694,14.69,3.023,14.6,3.375,14.6\r\n\tc1.117,0,2.023,0.906,2.023,2.025c0,0.35-0.089,0.68-0.246,0.969l1.512,1.51c0.394,0.394,1.037,0.394,1.432,0L19.104,8.096\r\n\tC19.498,7.701,19.498,7.057,19.104,6.664z M8.457,16.719l-5.176-5.178l8.142-8.141l5.176,5.176L8.457,16.719z" + } + }] +}; +exports.ticket = ticket; +var slot = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,0.4C4.698,0.4,0.4,4.698,0.4,10C0.4,15.302,4.698,19.6,10,19.6c5.301,0,9.6-4.298,9.6-9.601\r\n\tC19.6,4.698,15.301,0.4,10,0.4z M10,17.599c-4.197,0-7.6-3.402-7.6-7.6c0-4.197,3.402-7.6,7.6-7.6h0V10l6.792-3.396\r\n\tC17.305,7.627,17.6,8.777,17.6,10C17.6,14.197,14.197,17.599,10,17.599z" + } + }] +}; +exports.slot = slot; +var tools = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M3.135,6.89c0.933-0.725,1.707-0.225,2.74,0.971c0.116,0.135,0.272-0.023,0.361-0.1c0.088-0.078,1.451-1.305,1.518-1.361\r\n\tC7.82,6.341,7.9,6.231,7.795,6.108C7.688,5.985,7.301,5.483,7.052,5.157c-1.808-2.365,4.946-3.969,3.909-3.994\r\n\tc-0.528-0.014-2.646-0.039-2.963-0.004C6.715,1.294,5.104,2.493,4.293,3.052C3.232,3.778,2.836,4.204,2.771,4.263\r\n\tc-0.3,0.262-0.048,0.867-0.592,1.344C1.604,6.11,1.245,5.729,0.912,6.021C0.747,6.167,0.285,6.513,0.153,6.628\r\n\tC0.02,6.745-0.004,6.942,0.132,7.099c0,0,1.264,1.396,1.37,1.52C1.607,8.741,1.893,8.847,2.069,8.69\r\n\tc0.177-0.156,0.632-0.553,0.708-0.623C2.855,8.001,2.727,7.206,3.135,6.89z M8.843,7.407c-0.12-0.139-0.269-0.143-0.397-0.029\r\n\tL7.012,8.63c-0.113,0.1-0.129,0.283-0.027,0.4l8.294,9.439c0.194,0.223,0.53,0.246,0.751,0.053L17,17.709\r\n\tc0.222-0.195,0.245-0.533,0.052-0.758L8.843,7.407z M19.902,3.39c-0.074-0.494-0.33-0.391-0.463-0.182\r\n\tc-0.133,0.211-0.721,1.102-0.963,1.506c-0.24,0.4-0.832,1.191-1.934,0.41c-1.148-0.811-0.749-1.377-0.549-1.758\r\n\tc0.201-0.383,0.818-1.457,0.907-1.59c0.089-0.135-0.015-0.527-0.371-0.363c-0.357,0.164-2.523,1.025-2.823,2.26\r\n\tc-0.307,1.256,0.257,2.379-0.85,3.494l-1.343,1.4l1.349,1.566l1.654-1.57c0.394-0.396,1.236-0.781,1.998-0.607\r\n\tc1.633,0.369,2.524-0.244,3.061-1.258C20.057,5.792,19.977,3.884,19.902,3.39z M2.739,17.053c-0.208,0.209-0.208,0.549,0,0.758\r\n\tl0.951,0.93c0.208,0.209,0.538,0.121,0.746-0.088l4.907-4.824L7.84,12.115L2.739,17.053z" + } + }] +}; +exports.tools = tools; +var cone = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,12.078c2.39,0,4.392-0.812,4.513-1.873c-0.356-0.996-0.744-2.084-1.125-3.152C13.124,7.814,11.663,8.354,10,8.354\r\n\tS6.876,7.814,6.612,7.053c-0.381,1.068-0.769,2.156-1.124,3.152C5.609,11.266,7.61,12.078,10,12.078z M10,5.373\r\n\tc1.124,0,2.167-0.348,2.473-0.889c-0.421-1.182-0.782-2.197-1.011-2.836C11.31,1.221,10.621,1,10,1S8.69,1.221,8.538,1.648\r\n\tc-0.228,0.639-0.59,1.654-1.011,2.836C7.833,5.025,8.877,5.373,10,5.373z M18.78,13.066l-3.755-1.514l0.433,1.207\r\n\tc-0.022,1.279-2.504,2.299-5.458,2.299c-2.953,0-5.437-1.019-5.458-2.299l0.433-1.207L1.22,13.066\r\n\tc-1.053,0.424-1.098,1.209-0.098,1.744l7.062,3.787c0.998,0.535,2.633,0.535,3.632,0l7.063-3.787\r\n\tC19.878,14.275,19.833,13.49,18.78,13.066z" + } + }] +}; +exports.cone = cone; +var trash = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M3.389,7.113L4.49,18.021C4.551,18.482,6.777,19.998,10,20c3.225-0.002,5.451-1.518,5.511-1.979l1.102-10.908\r\n\tC14.929,8.055,12.412,8.5,10,8.5C7.59,8.5,5.072,8.055,3.389,7.113z M13.168,1.51l-0.859-0.951C11.977,0.086,11.617,0,10.916,0\r\n\tH9.085c-0.7,0-1.061,0.086-1.392,0.559L6.834,1.51C4.264,1.959,2.4,3.15,2.4,4.029v0.17C2.4,5.746,5.803,7,10,7\r\n\tc4.198,0,7.601-1.254,7.601-2.801v-0.17C17.601,3.15,15.738,1.959,13.168,1.51z M12.07,4.34L11,3H9L7.932,4.34h-1.7\r\n\tc0,0,1.862-2.221,2.111-2.522C8.533,1.588,8.727,1.5,8.979,1.5h2.043c0.253,0,0.447,0.088,0.637,0.318\r\n\tc0.248,0.301,2.111,2.522,2.111,2.522H12.07z" + } + }] +}; +exports.trash = trash; +var trophy = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "g", + "attribs": {} + }] +}; +exports.trophy = trophy; +var tv = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M18,1H2C0.899,1,0,1.9,0,3v11c0,1.1,0.882,2.178,1.961,2.393l4.372,0.875C6.333,17.268,2.57,19,5,19h10\r\n\tc2.43,0-1.334-1.732-1.334-1.732l4.373-0.875C19.117,16.178,20,15.1,20,14V3C20,1.9,19.1,1,18,1z M18,14H2V3h16V14z" + } + }] +}; +exports.tv = tv; +var typing = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M16,4H4C2.899,4,2,4.9,2,6v7c0,1.1,0.899,2,2,2h4l4,3v-3h4c1.1,0,2-0.9,2-2V6C18,4.9,17.1,4,16,4z M6,10.6\r\n\tc-0.607,0-1.1-0.492-1.1-1.1c0-0.608,0.492-1.1,1.1-1.1s1.1,0.492,1.1,1.1C7.1,10.107,6.607,10.6,6,10.6z M10,10.6\r\n\tc-0.607,0-1.1-0.492-1.1-1.1c0-0.608,0.492-1.1,1.1-1.1s1.1,0.492,1.1,1.1C11.1,10.107,10.607,10.6,10,10.6z M14,10.6\r\n\tc-0.607,0-1.1-0.492-1.1-1.1c0-0.608,0.492-1.1,1.1-1.1s1.1,0.492,1.1,1.1C15.1,10.107,14.607,10.6,14,10.6z" + } + }] +}; +exports.typing = typing; +var uninstall = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M19.059,10.898l-3.171-7.927C15.654,2.384,15.086,2,14.454,2H5.546C4.914,2,4.346,2.384,4.112,2.971l-3.171,7.927\r\n\tc-0.288,0.721-0.373,1.507-0.246,2.272l0.59,3.539C1.409,17.454,2.053,18,2.808,18h14.383c0.755,0,1.399-0.546,1.523-1.291\r\n\tl0.59-3.539C19.433,12.405,19.348,11.619,19.059,10.898z M5.52,4.786l1.639-1.132l2.868,2.011l2.868-2.011l1.639,1.132l-2.869,2.033\r\n\tl2.928,2.06l-1.639,1.171l-2.927-2.076L7.1,10.05L5.461,8.879l2.928-2.06L5.52,4.786z M16.959,15.245\r\n\tC16.887,15.681,16.51,16,16.068,16H3.932c-0.442,0-0.819-0.319-0.891-0.755l-0.365-2.193C2.583,12.501,3.008,12,3.567,12h12.867\r\n\tc0.558,0,0.983,0.501,0.891,1.052L16.959,15.245z" + } + }] +}; +exports.uninstall = uninstall; +var unread = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M17,3c-1.104,0-2,0.895-2,2c0,1.105,0.896,2,2,2s2-0.895,2-2\r\n\tC19,3.895,18.104,3,17,3z M12.5,4h-11C1.224,4,1,4.224,1,4.5v1C1,5.776,1.224,6,1.5,6h11C12.776,6,13,5.776,13,5.5v-1\r\n\tC13,4.224,12.776,4,12.5,4z M12.5,9h-11C1.224,9,1,9.224,1,9.5v1C1,10.776,1.224,11,1.5,11h11c0.276,0,0.5-0.224,0.5-0.5v-1\r\n\tC13,9.224,12.776,9,12.5,9z M12.5,14h-11C1.224,14,1,14.224,1,14.5v1C1,15.776,1.224,16,1.5,16h11c0.276,0,0.5-0.224,0.5-0.5v-1\r\n\tC13,14.224,12.776,14,12.5,14z" + } + }] +}; +exports.unread = unread; +var untag = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M1,14.742l4.945-0.709L5.239,19l5.962-5.985L7.132,8.586L1,14.742z M18.664,5.521c0.391-0.393,0.5-0.945,0-1.419\r\n\tl-2.826-2.839c-0.279-0.308-1.021-0.392-1.412,0l-3.766,3.78l4.068,4.429L18.664,5.521z M18.706,15.293l-14.001-14\r\n\tc-0.391-0.391-1.023-0.391-1.414,0c-0.391,0.391-0.391,1.023,0,1.414l14.001,14C17.488,16.903,17.744,17,17.999,17\r\n\tc0.256,0,0.512-0.098,0.707-0.293C19.097,16.317,19.097,15.684,18.706,15.293z" + } + }] +}; +exports.untag = untag; +var toCloud = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "g", + "attribs": {} + }] +}; +exports.toCloud = toCloud; +var upload = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M8,12h4V6h3l-5-5L5,6h3V12z M19.338,13.532c-0.21-0.224-1.611-1.723-2.011-2.114C17.062,11.159,16.683,11,16.285,11h-1.757\r\n\tl3.064,2.994h-3.544c-0.102,0-0.194,0.052-0.24,0.133L12.992,16H7.008l-0.816-1.873c-0.046-0.081-0.139-0.133-0.24-0.133H2.408\r\n\tL5.471,11H3.715c-0.397,0-0.776,0.159-1.042,0.418c-0.4,0.392-1.801,1.891-2.011,2.114c-0.489,0.521-0.758,0.936-0.63,1.449\r\n\tl0.561,3.074c0.128,0.514,0.691,0.936,1.252,0.936h16.312c0.561,0,1.124-0.422,1.252-0.936l0.561-3.074\r\n\tC20.096,14.468,19.828,14.053,19.338,13.532z" + } + }] +}; +exports.upload = upload; +var users = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M15.989,19.129c0-2.246-2.187-3.389-4.317-4.307c-2.123-0.914-2.801-1.684-2.801-3.334c0-0.989,0.648-0.667,0.932-2.481\r\n\tc0.12-0.752,0.692-0.012,0.802-1.729c0-0.684-0.313-0.854-0.313-0.854s0.159-1.013,0.221-1.793c0.064-0.817-0.398-2.56-2.301-3.095\r\n\tC7.88,1.195,7.655,0.654,8.679,0.112c-2.24-0.104-2.761,1.068-3.954,1.93c-1.015,0.756-1.289,1.953-1.24,2.59\r\n\tc0.065,0.78,0.223,1.793,0.223,1.793s-0.314,0.17-0.314,0.854c0.11,1.718,0.684,0.977,0.803,1.729\r\n\tC4.481,10.822,5.13,10.5,5.13,11.489c0,1.65-0.212,2.21-2.336,3.124C0.663,15.53,0,17,0.011,19.129C0.014,19.766,0,20,0,20h16\r\n\tC16,20,15.989,19.766,15.989,19.129z M18.528,13.365c-1.135-0.457-1.605-1.002-1.605-2.066c0-0.641,0.418-0.432,0.602-1.603\r\n\tc0.077-0.484,0.447-0.008,0.518-1.115c0-0.441-0.202-0.551-0.202-0.551s0.103-0.656,0.143-1.159c0.05-0.627-0.364-2.247-2.268-2.247\r\n\tc-1.903,0-2.318,1.62-2.269,2.247c0.042,0.502,0.144,1.159,0.144,1.159s-0.202,0.109-0.202,0.551\r\n\tc0.071,1.107,0.441,0.631,0.518,1.115c0.184,1.172,0.602,0.963,0.602,1.603c0,1.064-0.438,1.562-1.809,2.152\r\n\tc-0.069,0.029-0.12,0.068-0.183,0.102c1.64,0.712,4.226,1.941,4.838,4.447H20c0,0,0-1.906,0-2.318\r\n\tC20,14.682,19.727,13.848,18.528,13.365z" + } + }] +}; +exports.users = users; +var vinyl = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M9.999,0.8C4.918,0.8,0.8,4.919,0.8,10.001c0,5.08,4.118,9.199,9.199,9.199c5.081,0,9.2-4.119,9.2-9.199\r\n\tC19.199,4.919,15.08,0.8,9.999,0.8z M10,13.001c-1.657,0-3-1.344-3-3c0-1.656,1.343-3,3-3c1.656,0,3,1.344,3,3\r\n\tC13,11.657,11.656,13.001,10,13.001z" + } + }] +}; +exports.vinyl = vinyl; +var voicemail = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M15.4,5.801c-2.541,0-4.601,2.059-4.601,4.6c0,0.965,0.298,1.859,0.806,2.6H8.394c0.508-0.74,0.805-1.635,0.805-2.6\r\n\tc0-2.541-2.059-4.6-4.6-4.6c-2.54,0-4.6,2.059-4.6,4.6C0,12.941,2.059,15,4.6,15H15.4c2.54,0,4.6-2.059,4.6-4.6\r\n\tC20,7.859,17.94,5.801,15.4,5.801z M2,10.4c0-1.436,1.164-2.6,2.6-2.6c1.436,0,2.6,1.164,2.6,2.6c0,1.436-1.164,2.6-2.6,2.6\r\n\tC3.164,13,2,11.836,2,10.4z M15.4,13c-1.437,0-2.601-1.164-2.601-2.6c0-1.436,1.164-2.6,2.601-2.6c1.435,0,2.6,1.164,2.6,2.6\r\n\tC18,11.836,16.836,13,15.4,13z" + } + }] +}; +exports.voicemail = voicemail; +var wallet = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M16,6H3.5V5.5l11-0.88V5.5H16V4c0-1.1-0.891-1.872-1.979-1.717L3.98,3.717C2.891,3.873,2,4.9,2,6v10c0,1.104,0.895,2,2,2h12\r\n\tc1.104,0,2-0.896,2-2V8C18,6.896,17.104,6,16,6z M14.5,13.006c-0.828,0-1.5-0.672-1.5-1.5s0.672-1.5,1.5-1.5s1.5,0.672,1.5,1.5\r\n\tS15.328,13.006,14.5,13.006z" + } + }] +}; +exports.wallet = wallet; +var warning = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M19.511,17.98L10.604,1.348C10.48,1.133,10.25,1,10,1C9.749,1,9.519,1.133,9.396,1.348L0.49,17.98\r\n\tc-0.121,0.211-0.119,0.471,0.005,0.68C0.62,18.871,0.847,19,1.093,19h17.814c0.245,0,0.474-0.129,0.598-0.34\r\n\tC19.629,18.451,19.631,18.191,19.511,17.98z M11,17H9v-2h2V17z M11,13.5H9V7h2V13.5z" + } + }] +}; +exports.warning = warning; +var water = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M9.882,9.093c-0.511,4.115-3.121,4.847-3.121,7.708C6.761,18.567,8.244,20,10,20c1.756,0,3.238-1.434,3.238-3.199\r\n\tc0-2.861-2.61-3.593-3.121-7.708C10.101,8.97,9.898,8.97,9.882,9.093z M3.883,0.093C3.372,4.208,0.762,4.939,0.762,7.801\r\n\tC0.762,9.566,2.244,11,4,11c1.756,0,3.238-1.434,3.238-3.199c0-2.861-2.61-3.593-3.121-7.708C4.102-0.03,3.898-0.03,3.883,0.093z\r\n\t M15.883,0.093c-0.511,4.115-3.121,4.847-3.121,7.708C12.762,9.566,14.244,11,16,11c1.756,0,3.238-1.434,3.238-3.199\r\n\tc0-2.861-2.61-3.593-3.121-7.708C16.101-0.03,15.898-0.03,15.883,0.093z" + } + }] +}; +exports.water = water; +var fiveHundredPX = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M6.398,14.775c0.481-0.174,0.928-0.4,1.337-0.683c0.41-0.282,0.797-0.608,1.16-0.982c0.363-0.373,0.736-0.759,1.118-1.159\r\n\tc0.346,0.4,0.71,0.786,1.092,1.159c0.382,0.374,0.787,0.7,1.214,0.982c0.428,0.282,0.887,0.509,1.379,0.683\r\n\tc0.49,0.173,1.017,0.259,1.582,0.259c0.727,0,1.387-0.132,1.977-0.396c0.591-0.264,1.087-0.627,1.487-1.092\r\n\tc0.399-0.464,0.71-1.005,0.928-1.623C19.891,11.306,20,10.642,20,9.932c0-0.71-0.109-1.364-0.328-1.964\r\n\tc-0.218-0.602-0.528-1.123-0.928-1.569c-0.4-0.446-0.892-0.795-1.473-1.05c-0.583-0.256-1.238-0.383-1.966-0.383\r\n\tc-0.581,0-1.123,0.092-1.623,0.273c-0.5,0.182-0.964,0.423-1.391,0.723c-0.428,0.3-0.828,0.65-1.201,1.051\r\n\tc-0.372,0.399-0.732,0.81-1.078,1.228C9.648,7.804,9.28,7.391,8.908,6.999C8.535,6.608,8.135,6.262,7.707,5.962\r\n\tc-0.428-0.3-0.891-0.541-1.391-0.723c-0.5-0.182-1.051-0.273-1.65-0.273c-0.728,0-1.385,0.133-1.965,0.396\r\n\tC2.117,5.626,1.628,5.979,1.227,6.426c-0.4,0.446-0.706,0.974-0.914,1.583C0.104,8.618,0,9.277,0,9.985\r\n\tc0,0.71,0.108,1.374,0.326,1.992c0.219,0.619,0.537,1.15,0.955,1.597c0.419,0.446,0.919,0.801,1.5,1.064\r\n\tc0.584,0.264,1.246,0.396,1.993,0.396C5.374,15.034,5.916,14.948,6.398,14.775z M3.164,11.65c-0.383-0.418-0.573-0.955-0.573-1.609\r\n\tc0-0.6,0.186-1.142,0.561-1.624c0.372-0.48,0.876-0.723,1.515-0.723c0.345,0,0.689,0.078,1.035,0.232\r\n\tc0.346,0.154,0.678,0.35,0.997,0.587C7.016,8.75,7.321,9.009,7.611,9.29c0.291,0.283,0.546,0.542,0.765,0.778\r\n\tc-0.219,0.255-0.464,0.515-0.737,0.776c-0.273,0.266-0.562,0.502-0.872,0.71c-0.311,0.21-0.637,0.382-0.983,0.519\r\n\tc-0.345,0.137-0.691,0.205-1.036,0.205C4.073,12.278,3.546,12.069,3.164,11.65z M14.256,12.088c-0.336-0.127-0.66-0.296-0.968-0.505\r\n\tc-0.311-0.209-0.603-0.445-0.874-0.709c-0.273-0.264-0.528-0.532-0.764-0.806c0.218-0.236,0.463-0.495,0.736-0.778\r\n\tc0.273-0.281,0.56-0.54,0.859-0.776c0.3-0.237,0.619-0.433,0.955-0.587c0.337-0.154,0.688-0.232,1.051-0.232\r\n\tc0.673,0,1.204,0.227,1.596,0.683c0.392,0.454,0.587,1,0.587,1.638c0,0.637-0.183,1.172-0.546,1.608\r\n\tc-0.364,0.438-0.882,0.655-1.555,0.655C14.952,12.278,14.592,12.215,14.256,12.088z" + } + }] +}; +exports.fiveHundredPX = fiveHundredPX; +var store = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M17.5640259,13.8623047\r\n\tc-0.4133301,0.9155273-0.6115723,1.3251343-1.1437988,2.1346436c-0.7424927,1.1303711-1.7894897,2.5380249-3.086853,2.5500488\r\n\tc-1.1524048,0.0109253-1.4483032-0.749939-3.0129395-0.741333c-1.5640259,0.008606-1.8909302,0.755127-3.0438843,0.7442017\r\n\tc-1.296814-0.0120239-2.2891235-1.2833252-3.0321655-2.4136963c-2.0770874-3.1607666-2.2941895-6.8709106-1.0131836-8.8428955\r\n\tc0.9106445-1.4013062,2.3466187-2.2217407,3.6970215-2.2217407c1.375,0,2.239502,0.7539673,3.3761597,0.7539673\r\n\tc1.1028442,0,1.7749023-0.755127,3.3641357-0.755127c1.201416,0,2.4744263,0.6542969,3.3816528,1.7846069\r\n\tC14.0778809,8.4837646,14.5608521,12.7279663,17.5640259,13.8623047z M12.4625244,3.8076782\r\n\tc0.5775146-0.741333,1.0163574-1.7880859,0.8571167-2.857666c-0.9436035,0.0653076-2.0470581,0.6651611-2.6912842,1.4477539\r\n\tC10.0437012,3.107605,9.56073,4.1605835,9.7486572,5.1849365C10.7787476,5.2164917,11.8443604,4.6011963,12.4625244,3.8076782z" + } + }] +}; +exports.store = store; +var baidu = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M17.4116364,6.9370399c-0.3587151-0.2830696-0.923996-0.4004283-1.4627256-0.3652954\r\n\tc-0.4163361,0.0265503-0.7609177,0.0346184-1.0045052,0.1825905c-1.1165419,0.6770897-1.2169638,4.3529868,0.1820755,4.9340606\r\n\tC18.100399,12.9238987,19.1828365,8.3379107,17.4116364,6.9370399z M12.933279,10.7750425\r\n\tc-0.9637632-1.1185446-1.6411963-2.6815205-3.5630016-2.375906c-1.7067132,0.2714539-1.9238648,1.6706648-2.8335552,2.6501064\r\n\tc-1.0796924,1.1637497-3.1049521,2.0173635-3.5640316,3.8376598c-0.3346822,1.3286009,0.1159286,2.8923788,0.9135242,3.4726515\r\n\tc1.5661802,1.1375408,4.473722-0.1246262,6.5796628,0.0911503c1.2606802,0.1290321,2.2246733,0.571804,3.197649,0.5484009\r\n\tc2.2625532-0.0532722,4.0896587-1.669405,3.1077557-4.294507C16.2904587,13.418684,14.1704426,12.21099,12.933279,10.7750425z\r\n\t M12.6592512,6.8458877c1.1333075,0.0318718,2.3012905-1.2649717,2.3760777-2.467402\r\n\tc0.0976181-1.5697851-0.929431-3.1436331-2.4671726-2.7416024c-0.9137535,0.2387236-1.66397,1.4105408-1.7361822,2.5593553\r\n\tC10.7485466,5.5281014,11.4487524,6.8116126,12.6592512,6.8458877z M8.2726755,6.4801922\r\n\tC9.4498711,6.321291,9.9402504,4.9083467,9.7355728,3.2816844c-0.1689148-1.338729-0.8955564-2.6371751-2.4675736-2.192801\r\n\tC5.1026068,1.7001691,5.4477601,6.8620238,8.2726755,6.4801922z M4.1614451,10.5923948\r\n\tc2.5823007-0.3854933,1.9797125-5.9385071-0.8224294-5.2997556C0.9296925,5.8418407,1.2518435,11.0266409,4.1614451,10.5923948z" + } + }] +}; +exports.baidu = baidu; +var basecamp = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,2C5.327,2,0.7,8.481,0.7,14.422C0.7,15.799,5.234,18,10,18s9.3-2.201,9.3-3.578C19.3,8.481,14.673,2,10,2z\r\n\t M10.006,15.615c-5.198,0-6.673-2.068-6.673-2.722c0-1.287,2.13-4.485,2.906-4.485c0.719,0,1.542,1.811,2.314,1.811\r\n\tc1.241,0,2.567-3.954,3.579-3.954s4.601,5.178,4.601,6.749C16.733,13.285,15.649,15.615,10.006,15.615z" + } + }] +}; +exports.basecamp = basecamp; +var behance = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M8.072,9.301c0,0,1.892-0.147,1.892-2.459c0-2.315-1.548-3.441-3.51-3.441H0v12.926h6.454c0,0,3.941,0.129,3.941-3.816\r\n\tC10.394,12.51,10.566,9.301,8.072,9.301z M2.844,5.697h3.61c0,0,0.878,0,0.878,1.344c0,1.346-0.516,1.541-1.102,1.541H2.844V5.697z\r\n\t M6.271,14.029H2.844v-3.455h3.61c0,0,1.308-0.018,1.308,1.775C7.762,13.861,6.785,14.018,6.271,14.029z M15.649,6.688\r\n\tc-4.771,0-4.767,4.967-4.767,4.967s-0.326,4.941,4.767,4.941c0,0,4.243,0.254,4.243-3.437h-2.182c0,0,0.072,1.391-1.988,1.391\r\n\tc0,0-2.184,0.152-2.184-2.25h6.423C19.962,12.299,20.67,6.688,15.649,6.688z M17.59,10.574h-4.074c0,0,0.266-1.992,2.182-1.992\r\n\tS17.59,10.574,17.59,10.574z M18.097,4.16H12.98v1.594h5.117V4.16z" + } + }] +}; +exports.behance = behance; +var dribbble = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M9.565,7.421C8.207,5.007,6.754,3.038,6.648,2.893C4.457,3.929,2.822,5.948,2.311,8.38C2.517,8.384,5.793,8.423,9.565,7.421\r\n\tz M10.543,10.061c0.102-0.033,0.206-0.064,0.309-0.094c-0.197-0.447-0.412-0.895-0.637-1.336C6.169,9.843,2.287,9.755,2.15,9.751\r\n\tc-0.003,0.084-0.007,0.166-0.007,0.25c0,2.019,0.763,3.861,2.016,5.252l-0.005-0.006C4.154,15.247,6.304,11.433,10.543,10.061z\r\n\t M5.171,16.194V16.19c-0.058-0.045-0.12-0.086-0.178-0.135C5.099,16.14,5.171,16.194,5.171,16.194z M8.118,2.372\r\n\tC8.111,2.374,8.103,2.376,8.103,2.376c0.006-0.002,0.014-0.002,0.014-0.002L8.118,2.372z M15.189,4.104\r\n\tC13.805,2.886,11.99,2.143,10,2.143c-0.639,0-1.258,0.078-1.852,0.221c0.12,0.16,1.595,2.119,2.938,4.584\r\n\tC14.048,5.839,15.167,4.136,15.189,4.104z M10,19.2c-5.08,0-9.199-4.119-9.199-9.199C0.8,4.919,4.919,0.8,10,0.8\r\n\tc5.082,0,9.2,4.119,9.2,9.201C19.2,15.081,15.082,19.2,10,19.2z M11.336,11.286c-4.611,1.607-6.134,4.838-6.165,4.904\r\n\tc1.334,1.041,3.006,1.666,4.828,1.666c1.088,0,2.125-0.221,3.067-0.621c-0.116-0.689-0.573-3.096-1.679-5.967\r\n\tC11.371,11.274,11.354,11.28,11.336,11.286z M11.69,8.12c0.184,0.373,0.358,0.754,0.523,1.139c0.059,0.135,0.114,0.272,0.17,0.406\r\n\tc2.713-0.342,5.385,0.238,5.473,0.256c-0.019-1.863-0.686-3.572-1.787-4.912C16.051,5.032,14.79,6.852,11.69,8.12z M12.861,10.905\r\n\tc1.031,2.836,1.449,5.142,1.529,5.611c1.764-1.191,3.018-3.08,3.367-5.27C17.601,11.196,15.401,10.499,12.861,10.905z" + } + }] +}; +exports.dribbble = dribbble; +var dropbox = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M6.109,0.902L0.4,4.457l3.911,3.279L10,4.043L6.109,0.902z M13.452,15.992c-0.102,0-0.203-0.033-0.285-0.102L10,13.262\r\n\tl-3.167,2.629c-0.082,0.068-0.184,0.102-0.285,0.102c-0.085,0-0.17-0.023-0.244-0.072l-2.346-1.533v0.904L10,19.098l6.042-3.807\r\n\tv-0.904l-2.346,1.533C13.622,15.969,13.537,15.992,13.452,15.992z M19.6,4.457l-5.71-3.555L10,4.043l5.688,3.693L19.6,4.457z\r\n\t M10,11.291l3.528,2.928l5.641-3.688l-3.481-2.795L10,11.291z M6.472,14.219L10,11.291L4.311,7.736l-3.48,2.795L6.472,14.219z" + } + }] +}; +exports.dropbox = dropbox; +var evernote = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M17.3,4.3c0-1.2-1.7-1.3-1.7-1.3l-4.1-0.3c0,0-0.1-1.1-0.9-1.5C9.8,0.9,8.9,1,8.3,1C7.6,1,7.5,1.9,7.5,2.6\r\n\tc0,0.8,0,1.7,0,2.2c0,1-0.4,1.4-1.6,1.4H3.6c-0.6,0-1.1,0.1-1.1,0.6c0,0.5,0.8,5,1.8,6c0.6,0.6,4.3,1,5.1,1s0.5-2.3,0.7-2.3\r\n\ts0.5,1.3,1.7,1.6c1.2,0.3,2.9,0.2,3,1.1c0.1,1.2,0.2,2.6-0.5,2.7l-1.7,0.1c-1.2-0.1-0.9-1.4-0.3-1.4c0.5,0,0.8,0,0.8,0l0.1-1.4\r\n\tc0,0-2.7-0.3-2.8,1.5c-0.1,1.7,0.2,2.4,0.4,2.6c0.2,0.2,0.6,0.5,3.9,0.5C19,19,17.3,5.5,17.3,4.3z M15.4,10.3\r\n\tC15.3,10.5,14.6,10,14,10c-0.6,0-1.3,0.3-1.5,0.1c-0.2-0.2,0.1-2,1.3-2S15.6,10.1,15.4,10.3z M5.3,4.6c-0.5,0-2.9,0-2.9,0l3.5-3.4\r\n\tc0,0-0.1,2.8-0.1,3C5.8,4.4,5.7,4.6,5.3,4.6z" + } + }] +}; +exports.evernote = evernote; +var facebook = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M17,1H3C1.9,1,1,1.9,1,3v14c0,1.101,0.9,2,2,2h7v-7H8V9.525h2V7.475c0-2.164,1.212-3.684,3.766-3.684l1.803,0.002v2.605\r\n\th-1.197C13.378,6.398,13,7.144,13,7.836v1.69h2.568L15,12h-2v7h4c1.1,0,2-0.899,2-2V3C19,1.9,18.1,1,17,1z" + } + }] +}; +exports.facebook = facebook; +var flattr = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M5.598,8.541c0-1.637,0.434-2.678,1.889-2.912c0.508-0.1,1.566-0.064,2.239-0.064v2.5c0,0.024,0.003,0.064,0.009,0.084\r\n\tC9.762,8.25,9.854,8.324,9.963,8.324c0.061,0,0.118-0.031,0.178-0.09L16.377,2H12.19H7.548C3.874,2,2,4.115,2,8.066v8.287\r\n\tl3.598-3.602V8.541z M14.4,7.248v4.209c0,1.637-0.434,2.68-1.889,2.912c-0.508,0.1-1.566,0.065-2.238,0.065v-2.5\r\n\tc0-0.022-0.004-0.062-0.009-0.084c-0.028-0.1-0.12-0.174-0.228-0.176c-0.062,0-0.118,0.033-0.179,0.092l-6.235,6.232L7.809,18h4.643\r\n\tC16.125,18,18,15.885,18,11.934V3.647L14.4,7.248z" + } + }] +}; +exports.flattr = flattr; +var flickr = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M5,14c-2.188,0-3.96-1.789-3.96-4c0-2.211,1.772-4,3.96-4c2.187,0,3.96,1.789,3.96,4C8.96,12.211,7.187,14,5,14z" + } + }, { + "name": "path", + "attribs": { + "d": "M15,14c-2.188,0-3.96-1.789-3.96-4c0-2.211,1.772-4,3.96-4c2.187,0,3.96,1.789,3.96,4C18.96,12.211,17.187,14,15,14z" + } + }] +}; +exports.flickr = flickr; +var foursquare = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M4.92,1C4.412,1,4,1.412,4,1.92v16.516c0,0.625,0.765,0.926,1.192,0.47l4.471-4.79C9.731,14.042,9.826,14,9.927,14h3.237\r\n\tc0.486,0,0.905-0.343,1.001-0.82l2.111-10.514C16.449,1.804,15.79,1,14.911,1H4.92z M8.838,12.19L6,15.527V3.343\r\n\tC6,3.154,6.154,3,6.343,3h7.14c0.342,0,0.598,0.313,0.53,0.648l-0.413,2.055C13.566,5.876,13.414,6,13.238,6h-3.71\r\n\tC9.236,6,9,6.236,9,6.528v1.22C9,7.887,9.113,8,9.253,8h3.294c0.306,0,0.536,0.28,0.476,0.581l-0.614,3.058\r\n\tC12.366,11.849,12.181,12,11.967,12H9.25C9.091,12,8.941,12.069,8.838,12.19z" + } + }] +}; +exports.foursquare = foursquare; +var github = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M13.18,11.309c-0.718,0-1.3,0.807-1.3,1.799c0,0.994,0.582,1.801,1.3,1.801s1.3-0.807,1.3-1.801\r\n\tC14.479,12.116,13.898,11.309,13.18,11.309z M17.706,6.626c0.149-0.365,0.155-2.439-0.635-4.426c0,0-1.811,0.199-4.551,2.08\r\n\tc-0.575-0.16-1.548-0.238-2.519-0.238c-0.973,0-1.945,0.078-2.52,0.238C4.74,2.399,2.929,2.2,2.929,2.2\r\n\tC2.14,4.187,2.148,6.261,2.295,6.626C1.367,7.634,0.8,8.845,0.8,10.497c0,7.186,5.963,7.301,7.467,7.301\r\n\tc0.342,0,1.018,0.002,1.734,0.002c0.715,0,1.392-0.002,1.732-0.002c1.506,0,7.467-0.115,7.467-7.301\r\n\tC19.2,8.845,18.634,7.634,17.706,6.626z M10.028,16.915H9.972c-3.771,0-6.709-0.449-6.709-4.115c0-0.879,0.31-1.693,1.047-2.369\r\n\tc1.227-1.127,3.305-0.531,5.662-0.531c0.01,0,0.02,0,0.029,0c0.01,0,0.018,0,0.027,0c2.357,0,4.436-0.596,5.664,0.531\r\n\tc0.735,0.676,1.045,1.49,1.045,2.369C16.737,16.466,13.8,16.915,10.028,16.915z M6.821,11.309c-0.718,0-1.3,0.807-1.3,1.799\r\n\tc0,0.994,0.582,1.801,1.3,1.801c0.719,0,1.301-0.807,1.301-1.801C8.122,12.116,7.54,11.309,6.821,11.309z" + } + }] +}; +exports.github = github; +var googlePlus = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M1.989,5.589c0,1.494,0.499,2.572,1.482,3.205c0.806,0.52,1.74,0.598,2.226,0.598c0.118,0,0.213-0.006,0.279-0.01\r\n\tc0,0-0.154,1.004,0.59,1.996H6.532c-1.289,0-5.493,0.269-5.493,3.727c0,3.516,3.861,3.695,4.636,3.695\r\n\tc0.061,0,0.097-0.002,0.097-0.002c0.008,0,0.063,0.002,0.158,0.002c0.497,0,1.782-0.062,2.975-0.643\r\n\tc1.548-0.75,2.333-2.059,2.333-3.885c0-1.764-1.196-2.814-2.069-3.582c-0.533-0.469-0.994-0.873-0.994-1.266\r\n\tc0-0.4,0.337-0.701,0.762-1.082c0.689-0.615,1.339-1.492,1.339-3.15c0-1.457-0.189-2.436-1.354-3.057\r\n\tc0.121-0.062,0.551-0.107,0.763-0.137c0.631-0.086,1.554-0.184,1.554-0.699V1.2H6.64C6.594,1.202,1.989,1.372,1.989,5.589z\r\n\t M9.413,14.602c0.088,1.406-1.115,2.443-2.922,2.574c-1.835,0.135-3.345-0.691-3.433-2.096c-0.043-0.676,0.254-1.336,0.835-1.863\r\n\tc0.589-0.533,1.398-0.863,2.278-0.928c0.104-0.006,0.207-0.012,0.31-0.012C8.18,12.278,9.33,13.276,9.413,14.602z M8.212,4.626\r\n\tc0.451,1.588-0.23,3.246-1.316,3.553C6.771,8.214,6.643,8.231,6.512,8.231c-0.994,0-1.979-1.006-2.345-2.393\r\n\tC3.963,5.062,3.98,4.38,4.214,3.726c0.229-0.645,0.643-1.078,1.163-1.225c0.125-0.035,0.254-0.053,0.385-0.053\r\n\tC6.962,2.448,7.734,2.946,8.212,4.626z M16,8V5h-2v3h-3v2h3v3h2v-3h3V8H16z" + } + }] +}; +exports.googlePlus = googlePlus; +var hangouts = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,0C5.25,0,1.4,3.806,1.4,8.5C1.4,13.194,5.25,17,10,17v3c3.368-1.672,8.6-5.305,8.6-11.5C18.6,3.806,14.75,0,10,0z\r\n\t M9,9.741c0,1.328-1.021,2.422-2.32,2.538c-0.123,0.011-0.228-0.088-0.228-0.211v-0.852c0-0.106,0.079-0.194,0.184-0.21\r\n\tC7.167,10.93,7.573,10.519,7.683,10H5.732C5.328,10,5,9.672,5,9.268V6.732C5,6.328,5.328,6,5.732,6h2.536C8.672,6,9,6.328,9,6.732\r\n\tV9.741z M15,9.741c0,1.328-1.021,2.422-2.32,2.538c-0.123,0.011-0.228-0.088-0.228-0.211v-0.852c0-0.106,0.079-0.194,0.184-0.21\r\n\tc0.531-0.077,0.937-0.487,1.047-1.006h-1.951C11.328,10,11,9.672,11,9.268V6.732C11,6.328,11.328,6,11.732,6h2.536\r\n\tC14.672,6,15,6.328,15,6.732V9.741z" + } + }] +}; +exports.hangouts = hangouts; +var grooveshark = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "g", + "attribs": {} + }] +}; +exports.grooveshark = grooveshark; +var houzz = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M4,10l6,3l-6,3V10z M10,7l6,3V4L10,7z M10,20l6-3v-7l-6,3V20z M10,0L4,3v7l6-3V0z" + } + }] +}; +exports.houzz = houzz; +var icloud = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10.909,5c1.884,0,3.417,1.598,3.417,3.561c0,0.136-0.012,0.29-0.037,0.484c0,0-0.163,1.262-0.206,1.594\r\n\tc-0.043,0.332,0.186,0.65,0.528,0.653c0.342,0.002,1.65,0.01,1.65,0.01C17.219,11.308,18,12.137,18,13.15\r\n\tc0,1.02-0.785,1.85-1.75,1.85H4.167C2.972,15,2,13.978,2,12.722c0-0.913,0.519-1.735,1.323-2.095c0,0,0.421-0.188,0.651-0.291\r\n\tc0.23-0.103,0.508-0.431,0.516-0.775c0.008-0.344,0.016-0.714,0.016-0.714c0.012-0.535,0.421-0.97,0.91-0.97\r\n\tc0.032,0,0.094,0.006,0.207,0.035c0,0,0.774,0.197,1.039,0.264c0.265,0.067,0.606-0.066,0.73-0.309\r\n\tc0.124-0.243,0.503-0.981,0.503-0.981C8.493,5.723,9.648,5,10.909,5 M10.909,3C8.828,3,7.023,4.207,6.116,5.974\r\n\tC5.891,5.917,5.659,5.878,5.417,5.878c-1.587,0-2.873,1.304-2.91,2.924C1.033,9.461,0,10.966,0,12.722C0,15.085,1.865,17,4.167,17\r\n\tH16.25c2.071,0,3.75-1.724,3.75-3.85c0-2.118-1.667-3.835-3.728-3.848c0.031-0.243,0.053-0.489,0.053-0.741\r\n\tC16.326,5.49,13.901,3,10.909,3L10.909,3z" + } + }] +}; +exports.icloud = icloud; +var instagram = { + "viewBox": "0 0 18 18", + "children": [{ + "name": "title", + "attribs": {} + }, { + "name": "path", + "attribs": { + "d": "M18.94586,6.28931a6.60561,6.60561,0,0,0-.41833-2.18463,4.41189,4.41189,0,0,0-1.03809-1.59412,4.41189,4.41189,0,0,0-1.59412-1.03809,6.60561,6.60561,0,0,0-2.18463-.41833C12.75073,1.01038,12.44427,1,10,1s-2.75073.01038-3.71069,0.05414a6.60561,6.60561,0,0,0-2.18463.41833A4.41189,4.41189,0,0,0,2.51056,2.51056,4.41189,4.41189,0,0,0,1.47247,4.10468a6.60561,6.60561,0,0,0-.41833,2.18463C1.01038,7.24927,1,7.55573,1,10s0.01038,2.75073.05414,3.71069a6.60561,6.60561,0,0,0,.41833,2.18463,4.41189,4.41189,0,0,0,1.03809,1.59412,4.41109,4.41109,0,0,0,1.59412,1.03809,6.60561,6.60561,0,0,0,2.18463.41833C7.24927,18.98969,7.55573,19,10,19s2.75073-.01031,3.71069-0.05414a6.60561,6.60561,0,0,0,2.18463-.41833,4.60208,4.60208,0,0,0,2.6322-2.6322,6.60561,6.60561,0,0,0,.41833-2.18463C18.98962,12.75073,19,12.44427,19,10S18.98962,7.24927,18.94586,6.28931Zm-1.61993,7.34747a4.97824,4.97824,0,0,1-.30994,1.67114A2.98017,2.98017,0,0,1,15.30792,17.016a4.9786,4.9786,0,0,1-1.67114.30994C12.68787,17.3692,12.40326,17.37836,10,17.37836s-2.68787-.00916-3.63678-0.05243A4.9786,4.9786,0,0,1,4.69208,17.016a2.78769,2.78769,0,0,1-1.03485-.67322A2.78769,2.78769,0,0,1,2.984,15.30792a4.97824,4.97824,0,0,1-.30994-1.67114C2.6308,12.68774,2.62164,12.40314,2.62164,10s0.00916-2.68774.05243-3.63678A4.9786,4.9786,0,0,1,2.984,4.69208a2.78769,2.78769,0,0,1,.67322-1.03485A2.78769,2.78769,0,0,1,4.69208,2.984a4.9786,4.9786,0,0,1,1.67114-.30994C7.31226,2.6308,7.59686,2.62164,10,2.62164s2.68774,0.00916,3.63678.05243a4.9786,4.9786,0,0,1,1.67114.30994,2.78769,2.78769,0,0,1,1.03485.67322A2.78769,2.78769,0,0,1,17.016,4.69208a4.9786,4.9786,0,0,1,.30994,1.67114c0.04327,0.949.05243,1.2337,0.05243,3.63678S17.3692,12.68774,17.32593,13.63678ZM10,5.37836A4.62164,4.62164,0,1,0,14.62164,10,4.62169,4.62169,0,0,0,10,5.37836ZM10,13a3,3,0,1,1,3-3A3,3,0,0,1,10,13Zm5.88422-7.8042a1.08,1.08,0,1,1-1.08-1.08A1.08,1.08,0,0,1,15.88422,5.1958Z", + "transform": "translate(-1 -1)" + } + }] +}; +exports.instagram = instagram; +var lastfm = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M8.574,14.576C8.097,14.924,7.119,15.6,5.193,15.6C2.532,15.6,0,13.707,0,10.195C0,6.547,2.637,4.4,5.354,4.4\r\n\tc3.047,0,4.183,1.108,5.144,4.109l0.756,2.309c0.551,1.688,1.713,2.91,4.026,2.91c1.558,0,2.382-0.346,2.382-1.199\r\n\tc0-0.67-0.389-1.156-1.557-1.434l-1.559-0.369c-1.9-0.461-2.656-1.455-2.656-3.025c0-2.516,2.016-3.301,4.077-3.301\r\n\tc2.337,0,3.757,0.854,3.94,2.932l-2.291,0.277c-0.092-0.992-0.688-1.408-1.787-1.408c-1.008,0-1.627,0.461-1.627,1.246\r\n\tc0,0.693,0.299,1.109,1.307,1.34l1.466,0.324C18.945,9.572,20,10.543,20,12.414c0,2.309-1.924,3.186-4.766,3.186\r\n\tc-3.963,0-5.338-1.801-6.07-4.041L8.43,9.25c-0.549-1.687-0.99-2.902-3.006-2.902c-1.398,0-3.219,0.916-3.219,3.756\r\n\tc0,2.217,1.523,3.604,3.104,3.604c1.34,0,2.146-0.754,2.564-1.131L8.574,14.576z" + } + }] +}; +exports.lastfm = lastfm; +var linkedin = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M5,3c0,1.1-0.7,2-2,2C1.8,5,1,4.1,1,3.1C1,2,1.8,1,3,1S5,1.9,5,3z M1,19h4V6H1V19z M14.6,6.2c-2.1,0-3.3,1.2-3.8,2h-0.1\r\n\tl-0.2-1.7H6.9C6.9,7.6,7,8.9,7,10.4V19h4v-7.1c0-0.4,0-0.7,0.1-1c0.3-0.7,0.8-1.6,1.9-1.6c1.4,0,2,1.2,2,2.8V19h4v-7.4\r\n\tC19,7.9,17.1,6.2,14.6,6.2z" + } + }] +}; +exports.linkedin = linkedin; +var medium = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.7502384,5C18.7502384,5,18,5,18,5.7501426s0,8.5002785,0,8.5002785S18,15,18.7502384,15H19v2h-6v-2h1V5.6999512\r\n\th-0.0999756L10.8354492,17H8.1365967L5.0999761,5.6999512H5.0000005V15h1v2h-5v-2h0.2497627c0,0,0.7502373,0,0.7502373-0.7501431\r\n\tc0-0.7501421,0-8.5002775,0-8.5002775S2.0000005,5,1.2497631,5H1.0000005V3h6.6340332l2.3269038,8.6591797h0.0766602L12.3859863,3\r\n\tH19v2H18.7502384z" + } + }] +}; +exports.medium = medium; +var mixi = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "g", + "attribs": {} + }] +}; +exports.mixi = mixi; +var onedrive = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M6.429,9.847c0.487-1.961,2.249-3.394,4.341-3.394c1.236,0,2.394,0.505,3.232,1.382c0.354-0.114,0.768-0.202,1.136-0.21\r\n\tv-0.13c0-2.482-1.845-4.495-4.12-4.495C9.392,3,7.998,4.038,7.328,5.531C6.834,5.197,6.257,4.996,5.634,4.996\r\n\tc-1.785,0-3.231,1.577-3.231,3.523c0,0.21,0.024,0.414,0.057,0.613c-1.377,0.136-2.455,1.544-2.455,3.08\r\n\tc0,0.016,0.004,0.029,0.004,0.045C0.008,12.271,0,12.285,0,12.299c0,0.615,0.214,1.177,0.561,1.631C1.053,14.592,1.823,15,2.701,15\r\n\th1.261c-0.246-0.488-0.398-1.032-0.398-1.615C3.563,11.648,4.794,10.193,6.429,9.847z M17.889,11.777\r\n\tc-0.025,0-0.05,0.007-0.075,0.008c0.007-0.074,0.022-0.146,0.022-0.222c0-1.472-1.193-2.664-2.665-2.664\r\n\tc-0.586,0-1.123,0.194-1.564,0.516c-0.546-1.015-1.604-1.712-2.838-1.712c-1.788,0-3.237,1.449-3.237,3.237\r\n\tc0,0.023,0.006,0.043,0.007,0.066C7.421,10.988,7.303,10.97,7.18,10.97c-1.335,0-2.415,1.081-2.415,2.415\r\n\tc0,0.167,0.017,0.33,0.049,0.487C5.042,15.083,6.102,16,7.38,16h10.706v-0.019C19.158,15.879,20,14.987,20,13.889\r\n\tC20,12.723,19.055,11.777,17.889,11.777z" + } + }] +}; +exports.onedrive = onedrive; +var paypal = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M7.914,10.677h1.659c3.604,0,5.649-1.623,6.3-4.96c0.021-0.11,0.04-0.216,0.056-0.322c0.036-0.226,0.054-0.429,0.062-0.624\r\n\tC15.997,4.637,16.001,4.558,16,4.484c-0.008-0.391-0.077-0.722-0.216-1.039c-0.129-0.296-0.324-0.587-0.613-0.918\r\n\tC14.318,1.557,12.832,1,11.057,1H5.404C5.006,1,4.667,1.29,4.605,1.683l-1.02,6.571l-1.269,8.185C2.27,16.734,2.498,17,2.796,17\r\n\tl2.772,0l0.849-5.043C6.534,11.217,7.164,10.677,7.914,10.677z M17.017,6.09c-0.792,3.771-3.357,5.772-7.445,5.772H7.914\r\n\tc-0.164,0-0.302,0.118-0.328,0.282L6.481,19h2.907c0.348,0,0.645-0.253,0.699-0.597l0.029-0.15l0.555-3.514l0.036-0.194\r\n\tc0.054-0.344,0.351-0.597,0.699-0.597h0.44c2.85,0,5.081-1.158,5.733-4.506C17.847,8.062,17.711,6.908,17.017,6.09z" + } + }] +}; +exports.paypal = paypal; +var picasa = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M5.808,1.823C2.719,3.411,0.8,6.544,0.8,10.021c0,0.633,0.08,1.275,0.221,1.918L8.97,4.7\r\n\tC8.122,3.929,5.894,1.901,5.808,1.823z M13.793,1.626C12.593,1.081,11.317,0.8,9.999,0.8c-0.934,0-1.855,0.156-2.749,0.441\r\n\tl6.543,5.951V1.626z M15.192,2.438v10.617h3.485c0.343-0.982,0.522-2.004,0.522-3.035C19.2,6.987,17.677,4.148,15.192,2.438z\r\n\t M1.463,13.429c0.674,1.693,1.857,3.15,3.368,4.184v-7.25l-2.045,1.861C2.088,12.858,1.506,13.39,1.463,13.429z M6.23,18.425\r\n\tc0.935,0.422,1.913,0.682,2.92,0.775h1.689c3.019-0.281,5.727-2.068,7.199-4.744H6.23V18.425z" + } + }] +}; +exports.picasa = picasa; +var pinterest = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M8.617,13.227C8.091,15.981,7.45,18.621,5.549,20C4.963,15.838,6.41,12.713,7.083,9.395\r\n\tc-1.147-1.93,0.138-5.812,2.555-4.855c2.975,1.176-2.576,7.172,1.15,7.922c3.891,0.781,5.479-6.75,3.066-9.199\r\n\tC10.369-0.275,3.708,3.18,4.528,8.245c0.199,1.238,1.478,1.613,0.511,3.322c-2.231-0.494-2.897-2.254-2.811-4.6\r\n\tc0.138-3.84,3.449-6.527,6.771-6.9c4.201-0.471,8.144,1.543,8.689,5.494c0.613,4.461-1.896,9.293-6.389,8.945\r\n\tC10.081,14.411,9.571,13.807,8.617,13.227z" + } + }] +}; +exports.pinterest = pinterest; +var qq = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M17.005,13.018c-0.779-0.547-1.751-0.51-2.304,0.277c-0.553,0.785-4.418,5.633-10.751,3.619\r\n\tc0.239,0.209,0.49,0.406,0.755,0.592c4.153,2.926,9.892,1.928,12.816-2.225C18.076,14.494,17.784,13.567,17.005,13.018z\r\n\t M4.785,12.401C4.381,11.53,2.116,5.758,7.025,1.28c-0.3,0.104-0.597,0.221-0.89,0.357C1.526,3.772-0.481,9.24,1.654,13.85\r\n\tc0.403,0.871,1.353,1.084,2.218,0.684C4.736,14.133,5.188,13.272,4.785,12.401z M10.826,0.823c-0.956-0.086-1.614,0.629-1.7,1.578\r\n\tC9.041,3.35,9.561,4.172,10.517,4.258c0.956,0.086,7.087,1.01,8.51,7.502c0.062-0.311,0.106-0.627,0.136-0.949\r\n\tC19.618,5.75,15.886,1.278,10.826,0.823z M6.891,10.53c-0.264,0.619-0.306,1.213-0.094,1.322c0.146,0.076,0.374-0.098,0.588-0.416\r\n\tC7.47,11.783,7.68,12.098,7.98,12.35c-0.314,0.115-0.52,0.305-0.52,0.519c0,0.354,0.556,0.639,1.241,0.639\r\n\tc0.618,0,1.13-0.232,1.225-0.537c0.025,0,0.123,0,0.147,0c0.095,0.305,0.607,0.537,1.226,0.537c0.686,0,1.241-0.285,1.241-0.639\r\n\tc0-0.215-0.205-0.404-0.52-0.519c0.299-0.252,0.51-0.566,0.594-0.914c0.214,0.318,0.442,0.492,0.589,0.416\r\n\tc0.211-0.109,0.17-0.703-0.095-1.322c-0.207-0.488-0.488-0.848-0.702-0.926C12.41,9.573,12.41,9.541,12.41,9.51\r\n\tc0-0.19-0.052-0.363-0.142-0.504c0.002-0.012,0.002-0.023,0.002-0.033c0-0.088-0.021-0.168-0.056-0.238\r\n\tC12.16,7.467,11.335,6.461,10,6.461c-1.336,0-2.161,1.006-2.215,2.273c-0.035,0.07-0.057,0.15-0.057,0.238\r\n\tc0,0.01,0.001,0.021,0.002,0.033C7.642,9.147,7.589,9.321,7.589,9.51c0,0.031,0.001,0.062,0.004,0.094\r\n\tC7.38,9.682,7.098,10.041,6.891,10.53z" + } + }] +}; +exports.qq = qq; +var raft = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M5.6734395,19c-0.877316,0-1.6501045-0.3605442-2.1763153-1.0143661\r\n\tc-0.6450326-0.8027058-0.8514075-1.9354591-0.5816016-3.1901903l0.0580709-0.2699594l1.9735143,0.4313974l-0.0580707,0.269063\r\n\tc-0.13937,0.6448536-0.083086,1.1650429,0.1581311,1.4654961c0.148304,0.1838589,0.3591456,0.2780323,0.6262712,0.2780323\r\n\tc0.7754688,0,1.5446839-1.2412777,2.125392-3.4179964c-0.6360989-0.2161474-1.2203803-0.5354357-1.7403374-0.9524832\r\n\tl-0.213522-0.1713028l1.2579031-1.5892649l0.2153087,0.1722002c0.2742729,0.2206316,0.580708,0.4009037,0.9139452,0.5372286\r\n\tc0.1688519-0.968626,0.3037548-2.0323219,0.4029226-3.168664L8.659173,8.1047468l2.0110369,0.1775808l-0.0241213,0.2744446\r\n\tc-0.1018476,1.1695271-0.240324,2.2673035-0.4109631,3.2682171c1.3874464-0.1399126,2.6516027-0.9273701,3.3547068-2.1112471\r\n\tc1.152482-1.9408398,0.694169-4.3704782-1.0890512-5.7776766c-0.7620678-0.601804-1.8814945-0.9433796-2.9267693-0.8913608\r\n\tc-1.3043594,0.0547094-2.4041319,0.642029-3.2680469,1.765815C5.2660508,6.1621122,5.1561627,8.1881561,6.0450931,9.6267452\r\n\tl0.1447301,0.2340851L4.4745007,10.934391l-0.1447301-0.2349815c-1.338309-2.1677494-1.182858-5.1014323,0.3796935-7.1328573\r\n\tc1.2266345-1.59644,2.8794193-2.4716568,4.7805681-2.5514789c1.5518312-0.0609876,3.1134892,0.4205006,4.2570381,1.3218613\r\n\tc2.5944252,2.0466716,3.2573261,5.5875397,1.5768461,8.4180813c-0.7397337,1.2457609-1.8823881,2.1955528-3.2430325,2.7067728\r\n\tc0.2519379,0.3838625,0.4663534,0.8430634,0.712038,1.5139265l0.1581316,0.4394693\r\n\tc0.4967279,1.3874674,0.7236509,1.5112371,1.2453957,1.5112371c0.2358561,0,0.4940481-0.1004505,0.6566467-0.256506\r\n\tc0.3126888-0.2995567,0.4047089-0.8753519,0.2742729-1.7121372l-0.0428829-0.2726507l1.9949551-0.3148041l0.0428829,0.2726507\r\n\tc0.235857,1.513031-0.0678978,2.7229156-0.8773155,3.4987144c-0.5422916,0.5183945-1.2891722,0.8152599-2.0485592,0.8152599\r\n\tc-0.9309206,0-1.684948-0.3479881-2.239747-1.0332012c-0.3850546-0.4735508-0.5985765-0.9641418-0.9050112-1.8179684\r\n\tl-0.152771-0.4260159c-0.3546791-0.9677296-0.6682615-1.4565268-1.1203203-1.7067556\r\n\tc-0.1375828,0.5264664-0.2894602,1.0188513-0.453846,1.4681864C8.4599457,17.8026695,7.2315245,19,5.6734395,19z" + } + }] +}; +exports.raft = raft; +var rainbow = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,5C4.4771729,5,0,9.4771118,0,15h1.5c0-4.694458,3.8056641-8.5,8.5-8.5s8.5,3.805542,8.5,8.5H20\r\n\tC20,9.4771118,15.5228271,5,10,5z M10,11c-2.2092285,0-4,1.7908325-4,4h1.5c0-1.3807373,1.1192627-2.5,2.5-2.5\r\n\ts2.5,1.1192627,2.5,2.5H14C14,12.7908325,12.2092285,11,10,11z M10,8c-3.8659668,0-7,3.1339722-7,7h1.5\r\n\tc0-3.0375977,2.4624023-5.5,5.5-5.5s5.5,2.4624023,5.5,5.5H17C17,11.1339722,13.8659668,8,10,8z" + } + }] +}; +exports.rainbow = rainbow; +var rdio = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M16.203,10.001c0,4.307-3.448,7.799-7.701,7.799S0.8,14.308,0.8,10.001C0.8,5.692,4.248,2.2,8.501,2.2\r\n\tc0.611,0,1.204,0.076,1.774,0.213v4.441c-0.902-0.33-2.01-0.281-3.053,0.223c-1.885,0.91-2.841,2.957-2.135,4.57\r\n\tc0.705,1.615,2.807,2.188,4.691,1.277c1.299-0.627,2.443-2.137,2.443-4.029V3.171c0.162,0.09,0.32,0.188,0.475,0.289\r\n\tc1.464,0.92,3.638,2.152,6.178,2.281c0.99,0.049-0.389,2.541-2.738,3.236C16.18,9.311,16.203,9.653,16.203,10.001z" + } + }] +}; +exports.rdio = rdio; +var renren = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M8.468,0.865C4.117,1.594,0.8,5.377,0.8,9.936c0,2.266,0.82,4.338,2.179,5.941c3.221-1.559,5.472-5.086,5.489-9.191V0.865z\r\n\t M10.002,12.258c-0.573,2.373-2.285,4.4-4.418,5.748C6.894,18.725,8.4,19.135,10,19.135c1.602,0,3.108-0.41,4.418-1.129\r\n\tC12.285,16.658,10.574,14.631,10.002,12.258z M11.535,6.643c0,4.123,2.256,7.668,5.487,9.234c1.358-1.603,2.178-3.676,2.178-5.941\r\n\tc0-4.559-3.315-8.34-7.665-9.07V6.643z" + } + }] +}; +exports.renren = renren; +var scribd = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M4.643,18.284c0,0.224-0.072,0.492-0.148,0.716h5.737c0.328-0.377,0.513-0.831,0.513-1.342c0-1.385-1.644-2.154-5.241-3.842\r\n\tL4.998,13.58C3.225,12.737,1.912,11.995,1,11.111v4.398c0.176-0.024,0.359-0.042,0.558-0.042\r\n\tC4.559,15.468,4.643,18.256,4.643,18.284z M17,1h-3.738c1.748,1.178,2.467,2.842,2.467,4.142c0,2.194-1.836,2.905-2.727,2.905\r\n\tl-0.271,0.002c-2.046,0-3.09-1.247-3.104-3.707C9.506,4.246,8.939,3.889,7.28,3.889c-1.96,0-2.773,1.543-2.773,2.369\r\n\tc0,0.973,0.543,2.055,4.484,3.382c6.736,2.254,6.736,5.255,6.736,7.903v0.026c0,0.437-0.031,0.924-0.117,1.431H17c1.1,0,2-0.899,2-2\r\n\tV3C19,1.9,18.1,1,17,1z" + } + }] +}; +exports.scribd = scribd; +var weibo = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M14.688,10.068c-0.274-0.084-0.463-0.142-0.319-0.508c0.311-0.797,0.344-1.484,0.007-1.975\r\n\tc-0.633-0.92-2.364-0.871-4.348-0.025c0-0.002-0.623,0.277-0.464-0.227C9.87,6.336,9.823,5.5,9.348,5.018\r\n\tC8.272,3.92,5.411,5.059,2.956,7.557C1.117,9.428,0.05,11.41,0.05,13.125c0,3.281,4.132,5.475,8.175,5.475\r\n\tc5.299,0,8.825-3.334,8.825-5.822C17.05,11.273,15.806,10.42,14.688,10.068z M8.236,17.129c-3.225,0.32-6.011-1.147-6.22-3.275\r\n\tc-0.209-2.129,2.236-4.115,5.462-4.438c3.226-0.32,6.011,1.146,6.22,3.275C13.907,14.822,11.462,16.809,8.236,17.129z M19.95,7.397\r\n\tc-0.001-3.312-2.686-5.996-6-5.996c-0.387,0-0.699,0.312-0.699,0.699s0.312,0.699,0.699,0.699c2.541,0,4.601,2.061,4.601,4.602\r\n\tc0,0.387,0.313,0.699,0.7,0.699S19.95,7.787,19.95,7.4V7.397z M17.169,7.295c-0.319-1.562-1.551-2.793-3.113-3.113\r\n\tc-0.378-0.078-0.748,0.166-0.826,0.545c-0.077,0.377,0.166,0.748,0.545,0.826c1.016,0.207,1.816,1.008,2.024,2.023\r\n\tc0.078,0.379,0.448,0.621,0.826,0.545C17.002,8.043,17.247,7.672,17.169,7.295z M6.582,11.502c-1.3,0.262-2.177,1.352-1.959,2.434\r\n\tc0.218,1.084,1.447,1.75,2.747,1.488c1.299-0.262,2.176-1.352,1.959-2.434C9.111,11.908,7.88,11.24,6.582,11.502z" + } + }] +}; +exports.weibo = weibo; +var skype = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.671,12.037c0.132-0.623,0.203-1.272,0.203-1.938c0-4.986-3.93-9.029-8.777-9.029c-0.511,0-1.012,0.047-1.5,0.133\r\n\tC7.812,0.695,6.885,0.4,5.89,0.4C3.079,0.4,0.8,2.744,0.8,5.637c0,0.965,0.256,1.871,0.699,2.648\r\n\tC1.383,8.871,1.321,9.479,1.321,10.1c0,4.986,3.93,9.029,8.775,9.029c0.551,0,1.087-0.051,1.607-0.15\r\n\tc0.717,0.396,1.535,0.621,2.406,0.621c2.811,0,5.09-2.344,5.09-5.236C19.2,13.527,19.009,12.738,18.671,12.037z M14.599,14.416\r\n\tc-0.406,0.59-1.006,1.059-1.783,1.391c-0.769,0.33-1.692,0.496-2.742,0.496c-1.26,0-2.317-0.227-3.143-0.678\r\n\tc-0.59-0.328-1.076-0.771-1.445-1.318c-0.372-0.555-0.561-1.104-0.561-1.633c0-0.33,0.123-0.617,0.365-0.852\r\n\tc0.24-0.232,0.549-0.352,0.916-0.352c0.301,0,0.562,0.094,0.773,0.277c0.202,0.176,0.375,0.438,0.514,0.773\r\n\tc0.156,0.367,0.326,0.676,0.505,0.92c0.172,0.234,0.42,0.432,0.735,0.586c0.318,0.154,0.748,0.232,1.275,0.232\r\n\tc0.725,0,1.32-0.158,1.768-0.473c0.438-0.309,0.65-0.676,0.65-1.127c0-0.357-0.111-0.637-0.34-0.857\r\n\tc-0.238-0.228-0.555-0.408-0.936-0.531c-0.399-0.127-0.941-0.266-1.611-0.41c-0.91-0.201-1.683-0.439-2.299-0.707\r\n\tc-0.63-0.275-1.137-0.658-1.508-1.137C5.357,8.533,5.165,7.924,5.165,7.209c0-0.682,0.2-1.297,0.596-1.828\r\n\tc0.393-0.525,0.965-0.935,1.703-1.217C8.192,3.887,9.06,3.746,10.04,3.746c0.783,0,1.473,0.094,2.047,0.277\r\n\tc0.578,0.186,1.066,0.436,1.449,0.744c0.387,0.311,0.674,0.643,0.854,0.986c0.182,0.35,0.275,0.695,0.275,1.031\r\n\tc0,0.322-0.121,0.615-0.361,0.871c-0.24,0.258-0.543,0.387-0.9,0.387c-0.324,0-0.58-0.082-0.756-0.242\r\n\tc-0.164-0.148-0.336-0.383-0.524-0.717c-0.219-0.428-0.484-0.766-0.788-1.002c-0.295-0.232-0.788-0.35-1.466-0.35\r\n\tc-0.629,0-1.141,0.131-1.519,0.387C7.983,6.367,7.806,6.65,7.806,6.984c0,0.207,0.058,0.379,0.176,0.525\r\n\tc0.125,0.158,0.301,0.295,0.523,0.41C8.735,8.039,8.972,8.133,9.21,8.201c0.244,0.07,0.654,0.172,1.215,0.307\r\n\tc0.711,0.156,1.363,0.332,1.939,0.521c0.585,0.193,1.09,0.43,1.502,0.705c0.42,0.283,0.754,0.645,0.989,1.076\r\n\tc0.237,0.434,0.357,0.969,0.357,1.59C15.213,13.145,15.006,13.822,14.599,14.416z" + } + }] +}; +exports.skype = skype; +var slideshare = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M13,7.08c1.381,0,2.5-1.119,2.5-2.5s-1.119-2.5-2.5-2.5s-2.5,1.119-2.5,2.5S11.62,7.08,13,7.08z M18.845,5.943\r\n\tC15.265,8.498,13.616,8.051,12,8c-1.118-0.057-1.5,0.298-1.5,1.08l0.001,6c0,5,8.421,3.43,5.165-4.949\r\n\tc1.671-0.959,3.076-2.434,3.876-3.412C19.953,6.111,19.514,5.474,18.845,5.943z M7,2.08c-1.381,0-2.5,1.119-2.5,2.5\r\n\ts1.119,2.5,2.5,2.5s2.5-1.119,2.5-2.5S8.38,2.08,7,2.08z M8,8C6.384,8.051,4.735,8.498,1.155,5.943\r\n\tC0.486,5.474,0.047,6.111,0.458,6.718c0.8,0.979,2.205,2.453,3.876,3.412c-3.256,8.379,5.165,9.949,5.165,4.949l0.001-6\r\n\tC9.5,8.298,9.118,7.943,8,8z" + } + }] +}; +exports.slideshare = slideshare; +var smashing = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10.023,16.032c-2.508,0-4.253-1.555-4.253-1.555L4.287,17.84c1.023,0.547,2.092,0.936,2.709,1.141l-1.592,0.381\r\n\tc-0.746,0.178-1.496-0.283-1.675-1.029L0.639,5.405C0.46,4.659,0.92,3.909,1.667,3.729L5.383,2.84\r\n\tc-0.91,1.029-1.263,2.252-1.174,3.65c0.139,2.193,2.237,3.879,4.734,4.822C13.644,13.088,12.529,16.032,10.023,16.032z\r\n\t M19.361,14.594L16.27,1.666c-0.178-0.746-0.928-1.207-1.675-1.027l-2.663,0.637c0.679,0.105,2.024,0.4,3.505,1.178l-1.159,3.213\r\n\tc0,0-0.965-1.078-3.553-1.209c-2.46-0.125-3.828,2.537,0.969,4.105c3.674,1.201,4.848,3.516,4.787,5.658\r\n\tc-0.031,1.113-0.421,2.018-0.872,2.701l2.725-0.652C19.08,16.092,19.54,15.342,19.361,14.594z" + } + }] +}; +exports.smashing = smashing; +var soundcloud = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M0.672,13.055L1,11.654l-0.328-1.447c-0.009-0.043-0.092-0.076-0.191-0.076c-0.102,0-0.184,0.033-0.191,0.076L0,11.654\r\n\tl0.289,1.4c0.008,0.045,0.09,0.076,0.191,0.076C0.58,13.131,0.663,13.1,0.672,13.055z M2.723,13.832L3,11.668L2.723,8.32\r\n\tC2.714,8.236,2.609,8.168,2.484,8.168c-0.127,0-0.233,0.068-0.238,0.152L2,11.668l0.246,2.164c0.006,0.086,0.111,0.152,0.238,0.152\r\n\tC2.609,13.984,2.714,13.918,2.723,13.832z M4.768,13.797L5,11.67L4.768,7.213C4.762,7.107,4.639,7.025,4.486,7.025\r\n\tc-0.152,0-0.275,0.082-0.281,0.188L4,11.67l0.205,2.129c0.006,0.103,0.129,0.186,0.281,0.186\r\n\tC4.639,13.984,4.762,13.902,4.768,13.797z M6.81,13.766L7,11.67L6.81,7.18C6.805,7.057,6.664,6.959,6.49,6.959\r\n\tc-0.176,0-0.316,0.098-0.321,0.221L6,11.67l0.17,2.096c0.004,0.123,0.145,0.221,0.32,0.221C6.664,13.986,6.805,13.891,6.81,13.766z\r\n\t M8.85,13.738L9,11.672L8.85,6.523C8.846,6.381,8.686,6.268,8.492,6.268c-0.194,0-0.354,0.115-0.357,0.256L8,11.67l0.135,2.068\r\n\tc0.003,0.141,0.163,0.256,0.357,0.256C8.686,13.994,8.846,13.881,8.85,13.738z M10.277,13.996c0.008,0,7.1,0.004,7.145,0.004\r\n\tC18.846,14,20,12.883,20,11.506c0-1.377-1.154-2.492-2.578-2.492c-0.353,0-0.689,0.07-0.996,0.193\r\n\tc-0.205-2.246-2.153-4.008-4.529-4.008c-0.581,0-1.148,0.111-1.648,0.297C10.053,5.57,10.002,5.644,10,5.791v7.91\r\n\tC10.002,13.854,10.124,13.98,10.277,13.996z" + } + }] +}; +exports.soundcloud = soundcloud; +var spotify = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "g", + "attribs": {} + }] +}; +exports.spotify = spotify; +var stumbleupon = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M11.051,8.059l1.365,0.66l2.059-0.66V6.865C14.475,4.402,12.467,2.4,10,2.4S5.525,4.402,5.525,6.865v6.27\r\n\tc0,0.578-0.472,1.049-1.051,1.049c-0.58,0-1.051-0.471-1.051-1.049V10.51H0v2.625C0,15.596,2.007,17.6,4.475,17.6\r\n\tc2.467,0,4.474-2.004,4.474-4.465v-6.27c0-0.578,0.472-1.049,1.052-1.049c0.579,0,1.051,0.471,1.051,1.049V8.059z M16.576,10.51\r\n\tv2.625c0,0.578-0.471,1.049-1.051,1.049c-0.58,0-1.051-0.471-1.051-1.049v-2.678l-2.059,0.658l-1.365-0.658v2.678\r\n\tc0,2.461,2.008,4.465,4.475,4.465S20,15.596,20,13.135V10.51H16.576z" + } + }] +}; +exports.stumbleupon = stumbleupon; +var swarm = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10.286,18.821c-1.429-0.232-2.733-0.607-3.677-0.923c-0.046-0.015-0.781-0.282-1.007-0.37\r\n\tc-0.278-0.107-0.423-0.431-0.317-0.71c0.086-0.225,0.379-0.949,0.399-0.994c0.4-0.92,1-2.153,1.795-3.379\r\n\tc0.029,1.203,0.297,2.399,0.791,3.506C8.75,17.028,9.439,18.007,10.286,18.821z M10.173,7.027c-2.791-5.689-8.99-5.486-9.968-2.943\r\n\tc-0.751,1.952,2.535,6.602,10.097,3.244c0.002-0.001,0.002-0.001,0.004-0.002C10.28,7.279,10.192,7.079,10.173,7.027z M11.56,6.805\r\n\tc0.001,0,0.002-0.001,0.002-0.001c4.271-1.897,3.674-5.191,2.569-5.614c-1.487-0.569-4.19,1.624-2.647,5.447\r\n\tC11.499,6.664,11.55,6.777,11.56,6.805z M19.413,10.97C18.767,9.52,17.58,8.481,16.2,7.986c-0.139-0.05-0.281-0.073-0.423-0.073\r\n\tc-0.717,0-1.407,0.595-1.472,1.338c-0.109,1.239,0.137,2.501,0.68,3.718c0.535,1.199,1.294,2.213,2.27,2.957\r\n\tc0.254,0.194,0.565,0.285,0.875,0.285c0.559,0,1.117-0.296,1.339-0.826C20.04,14.023,20.066,12.432,19.413,10.97z M16.172,17.339\r\n\tc-1.195-0.912-2.142-2.139-2.815-3.646c-0.682-1.529-0.961-3.075-0.827-4.596c0.037-0.423,0.161-0.831,0.36-1.204\r\n\tc-0.035,0.009-0.111,0.027-0.114,0.028c-0.628,0.157-1.237,0.429-1.778,0.784c-0.784,0.514-1.475,1.277-1.772,2.177\r\n\tc-0.08,0.243-0.141,0.51-0.161,0.765c-0.095,1.218,0.103,2.476,0.636,3.67c0.516,1.155,1.285,2.118,2.213,2.853\r\n\tC12.48,18.617,13.5,18.9,14.334,18.9c0.783,0,1.556-0.233,2.25-0.585c0.217-0.11,0.695-0.408,0.726-0.429\r\n\tC16.895,17.78,16.506,17.594,16.172,17.339z" + } + }] +}; +exports.swarm = swarm; +var tripadvisor = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M20,6.0090332h-2.8286133C15.2119141,4.6748047,12.8125,4,10,4S4.7880859,4.6748047,2.8286133,6.0090332H0\r\n\tC0.4279785,6.4293823,0.8271484,7.348877,0.9931641,8.0480957C0.3771973,8.8793335,0,9.8972778,0,11.0090332\r\n\tc0,2.7568359,2.2431641,5,5,5c1.3266602,0,2.5268555-0.5282593,3.4228516-1.3746338L10,17l1.5771484-2.3656006\r\n\tC12.4731445,15.4807739,13.6733398,16.0090332,15,16.0090332c2.7568359,0,5-2.2431641,5-5\r\n\tc0-1.1117554-0.3771973-2.1296997-0.9931641-2.9609375C19.1728516,7.348877,19.5720215,6.4293823,20,6.0090332z M5,14.4090576\r\n\tc-1.8745117,0-3.3999023-1.5254517-3.3999023-3.4000244S3.1254883,7.6090088,5,7.6090088s3.3999023,1.5254517,3.3999023,3.4000244\r\n\tS6.8745117,14.4090576,5,14.4090576z M10,11.0090332c0-2.4172974-1.7250977-4.4382935-4.0085449-4.8997803\r\n\tC7.1948242,5.7042847,8.5290527,5.5,10,5.5s2.8051758,0.2042847,4.0085449,0.6092529\r\n\tC11.7250977,6.5707397,10,8.5917358,10,11.0090332z M15,14.4090576c-1.8745117,0-3.3999023-1.5254517-3.3999023-3.4000244\r\n\tS13.1254883,7.6090088,15,7.6090088s3.3999023,1.5254517,3.3999023,3.4000244S16.8745117,14.4090576,15,14.4090576z M5,8.8590088\r\n\tc-1.1850586,0-2.1499023,0.9644775-2.1499023,2.1500244S3.8149414,13.1590576,5,13.1590576s2.1499023-0.9644775,2.1499023-2.1500244\r\n\tS6.1850586,8.8590088,5,8.8590088z M5,11.6500244c-0.3588867,0-0.6499023-0.2910156-0.6499023-0.6500244\r\n\tS4.6411133,10.3499756,5,10.3499756S5.6499023,10.6409912,5.6499023,11S5.3588867,11.6500244,5,11.6500244z M15,8.8590088\r\n\tc-1.1850586,0-2.1499023,0.9644775-2.1499023,2.1500244S13.8149414,13.1590576,15,13.1590576\r\n\ts2.1499023-0.9644775,2.1499023-2.1500244S16.1850586,8.8590088,15,8.8590088z M15,11.6500244\r\n\tc-0.3588867,0-0.6499023-0.2910156-0.6499023-0.6500244S14.6411133,10.3499756,15,10.3499756S15.6499023,10.6409912,15.6499023,11\r\n\tS15.3588867,11.6500244,15,11.6500244z" + } + }] +}; +exports.tripadvisor = tripadvisor; +var tumblr = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M15.6,18.196c-0.777,0.371-1.48,0.631-2.109,0.781c-0.63,0.148-1.311,0.223-2.043,0.223c-0.831,0-1.566-0.107-2.205-0.318\r\n\tc-0.639-0.213-1.183-0.516-1.635-0.908c-0.451-0.395-0.764-0.812-0.938-1.254c-0.174-0.443-0.261-1.086-0.261-1.926V8.339H4.4V5.735\r\n\tc0.714-0.234,1.326-0.57,1.835-1.01c0.51-0.438,0.918-0.965,1.227-1.58C7.77,2.532,7.981,1.749,8.098,0.8h2.585v4.652h4.314v2.887\r\n\th-4.314v4.719c0,1.066,0.056,1.752,0.168,2.055c0.111,0.303,0.319,0.545,0.622,0.725c0.403,0.244,0.863,0.367,1.381,0.367\r\n\tc0.92,0,1.836-0.303,2.746-0.908V18.196z" + } + }] +}; +exports.tumblr = tumblr; +var twitter = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M17.316,6.246c0.008,0.162,0.011,0.326,0.011,0.488c0,4.99-3.797,10.742-10.74,10.742c-2.133,0-4.116-0.625-5.787-1.697\r\n\tc0.296,0.035,0.596,0.053,0.9,0.053c1.77,0,3.397-0.604,4.688-1.615c-1.651-0.031-3.046-1.121-3.526-2.621\r\n\tc0.23,0.043,0.467,0.066,0.71,0.066c0.345,0,0.679-0.045,0.995-0.131c-1.727-0.348-3.028-1.873-3.028-3.703c0-0.016,0-0.031,0-0.047\r\n\tc0.509,0.283,1.092,0.453,1.71,0.473c-1.013-0.678-1.68-1.832-1.68-3.143c0-0.691,0.186-1.34,0.512-1.898\r\n\tC3.942,5.498,6.725,7,9.862,7.158C9.798,6.881,9.765,6.594,9.765,6.297c0-2.084,1.689-3.773,3.774-3.773\r\n\tc1.086,0,2.067,0.457,2.756,1.191c0.859-0.17,1.667-0.484,2.397-0.916c-0.282,0.881-0.881,1.621-1.66,2.088\r\n\tc0.764-0.092,1.49-0.293,2.168-0.594C18.694,5.051,18.054,5.715,17.316,6.246z" + } + }] +}; +exports.twitter = twitter; +var vimeo = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.91,5.84c-1.006,5.773-6.625,10.66-8.315,11.777c-1.69,1.115-3.233-0.447-3.792-1.631\r\n\tC6.162,14.639,4.244,7.33,3.741,6.725C3.238,6.119,1.731,7.33,1.731,7.33L1,6.354c0,0,3.061-3.725,5.391-4.191\r\n\tC8.861,1.67,8.857,6.027,9.451,8.445c0.574,2.342,0.961,3.68,1.463,3.68c0.502,0,1.462-1.305,2.512-3.305\r\n\tc1.053-2.004-0.045-3.772-2.101-2.514C12.148,1.279,19.916,0.07,18.91,5.84z" + } + }] +}; +exports.vimeo = vimeo; +var vine = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M17.452,9.951c-0.438,0.101-0.863,0.145-1.244,0.145c-2.145,0-3.797-1.496-3.797-4.102c0-1.277,0.493-1.941,1.192-1.941\r\n\tc0.664,0,1.107,0.596,1.107,1.805c0,0.688-0.184,1.44-0.32,1.887c0,0,0.66,1.152,2.469,0.799c0.385-0.852,0.593-1.956,0.593-2.924\r\n\tc0-2.605-1.33-4.119-3.763-4.119c-2.504,0-3.968,1.922-3.968,4.461c0,2.512,1.175,4.668,3.113,5.651\r\n\tc-0.815,1.629-1.852,3.065-2.933,4.146c-1.961-2.371-3.734-5.534-4.463-11.706H2.548c1.335,10.279,5.319,13.553,6.373,14.181\r\n\tc0.596,0.358,1.108,0.341,1.654,0.034c0.855-0.485,3.422-3.054,4.847-6.061c0.597-0.002,1.314-0.069,2.03-0.231V9.951z" + } + }] +}; +exports.vine = vine; +var alternitive = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M19,17V3c0-1.1-0.903-2-2.005-2H3.005C1.855,1,1,1.853,1,3v14c0,1.148,0.855,2,2.005,2h13.99C18.097,19,19,18.101,19,17z\r\n\t M15.184,11.607c0,0,1.132,1.117,1.411,1.635c0.008,0.011,0.011,0.021,0.014,0.025c0.113,0.19,0.142,0.34,0.085,0.45\r\n\tC16.6,13.9,16.28,13.992,16.171,14c0,0-1.943,0-1.999,0c-0.14,0-0.43-0.036-0.782-0.279c-0.27-0.188-0.537-0.499-0.797-0.802\r\n\tc-0.388-0.45-0.724-0.84-1.062-0.84c-0.043,0-0.086,0.007-0.126,0.021c-0.257,0.082-0.583,0.447-0.583,1.422\r\n\tc0,0.305-0.24,0.479-0.41,0.479c0,0-0.872,0-0.916,0c-0.312,0-1.937-0.109-3.376-1.628c-1.766-1.86-3.352-5.591-3.366-5.624\r\n\tc-0.1-0.241,0.107-0.372,0.332-0.372h2.02c0.271,0,0.358,0.164,0.42,0.311C5.596,6.855,5.86,7.529,6.292,8.287\r\n\tc0.703,1.233,1.136,1.735,1.481,1.735c0.064,0,0.126-0.017,0.184-0.049c0.451-0.249,0.367-1.857,0.347-2.189\r\n\tc0-0.063-0.001-0.719-0.231-1.034C7.907,6.522,7.626,6.435,7.456,6.402c0.045-0.065,0.142-0.166,0.266-0.226\r\n\tC8.031,6.022,8.588,6,9.142,6h0.308c0.601,0.008,0.757,0.047,0.974,0.102c0.439,0.105,0.448,0.39,0.409,1.36\r\n\tc-0.011,0.276-0.023,0.589-0.023,0.956c0,0.079-0.003,0.166-0.003,0.256c-0.014,0.496-0.03,1.057,0.32,1.287\r\n\tc0.046,0.028,0.097,0.044,0.151,0.044c0.122,0,0.487,0,1.476-1.697c0.435-0.749,0.77-1.633,0.793-1.699\r\n\tc0.02-0.036,0.079-0.142,0.148-0.183c0.056-0.033,0.128-0.039,0.166-0.039h2.375c0.26,0,0.436,0.039,0.469,0.138\r\n\tc0.057,0.159-0.011,0.644-1.096,2.11c-0.184,0.243-0.343,0.455-0.483,0.64C14.142,10.563,14.142,10.629,15.184,11.607z" + } + }] +}; +exports.alternitive = alternitive; +var vk = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M17.802,12.298c0,0,1.617,1.597,2.017,2.336c0.011,0.016,0.016,0.028,0.018,0.035\r\n\tc0.163,0.273,0.203,0.487,0.123,0.645c-0.135,0.261-0.592,0.392-0.747,0.403c0,0-2.778,0-2.858,0c-0.199,0-0.613-0.052-1.117-0.4\r\n\tc-0.385-0.269-0.768-0.712-1.139-1.145c-0.554-0.643-1.033-1.201-1.518-1.201c-0.062,0-0.122,0.01-0.18,0.03\r\n\tc-0.367,0.116-0.833,0.639-0.833,2.032c0,0.436-0.344,0.684-0.585,0.684c0,0-1.248,0-1.309,0c-0.446,0-2.768-0.156-4.827-2.327\r\n\tc-2.523-2.658-4.789-7.99-4.811-8.037C-0.105,5.008,0.191,4.82,0.511,4.82h2.886c0.387,0,0.513,0.234,0.601,0.444\r\n\tc0.102,0.241,0.48,1.205,1.1,2.288c1.004,1.762,1.621,2.479,2.114,2.479c0.093,0,0.181-0.023,0.264-0.07\r\n\tc0.644-0.354,0.524-2.654,0.494-3.128c0-0.092-0.001-1.027-0.331-1.479C7.403,5.03,7.001,4.904,6.758,4.858\r\n\tc0.065-0.094,0.203-0.238,0.38-0.323c0.441-0.22,1.238-0.252,2.029-0.252h0.439c0.858,0.012,1.08,0.067,1.392,0.146\r\n\tc0.628,0.15,0.64,0.557,0.585,1.943c-0.016,0.396-0.033,0.842-0.033,1.367c0,0.112-0.005,0.237-0.005,0.364\r\n\tc-0.019,0.711-0.044,1.512,0.458,1.841c0.064,0.04,0.139,0.062,0.217,0.062c0.174,0,0.695,0,2.108-2.425\r\n\tc0.62-1.071,1.1-2.334,1.133-2.429c0.028-0.053,0.112-0.202,0.214-0.262c0.078-0.048,0.182-0.056,0.236-0.056h3.395\r\n\tc0.37,0,0.621,0.056,0.67,0.196c0.082,0.227-0.016,0.92-1.566,3.016c-0.261,0.349-0.49,0.651-0.691,0.915\r\n\tC16.314,10.805,16.314,10.898,17.802,12.298z" + } + }] +}; +exports.vk = vk; +var xing = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M17.703,1h-2.828c-0.223,0-0.553,0.105-0.69,0.381S13.875,2,13.875,2l-5,10l3,6c0,0,0.172,0.344,0.31,0.619\r\n\tS12.652,19,12.875,19h2.828c0.5,0,0.48-0.381,0.355-0.631S15.875,18,15.875,18l-3-6l5-10c0,0,0.059-0.119,0.184-0.369\r\n\tS18.203,1,17.703,1z M6.815,5.381C6.678,5.105,6.348,5,6.125,5H3.297c-0.5,0-0.48,0.381-0.355,0.631S3.125,6,3.125,6l1.25,2.5\r\n\tL2.125,13c0,0-0.059,0.119-0.184,0.369S1.797,14,2.297,14h2.828c0.223,0,0.553-0.106,0.691-0.381C5.953,13.344,6.125,13,6.125,13\r\n\tl2.25-4.5L7.125,6C7.125,6,6.953,5.656,6.815,5.381z" + } + }] +}; +exports.xing = xing; +var yelp = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M12.538,12.471l4.523,1.466c0,0,0.647,0.119,0.64,0.552c-0.004,0.305-0.197,0.652-0.197,0.652l-1.91,2.756\r\n\tc0,0-0.341,0.286-0.686,0.286c-0.344,0-0.741-0.537-0.741-0.537l-2.417-4.073c0,0-0.272-0.594,0.05-0.921\r\n\tC12.095,12.352,12.538,12.471,12.538,12.471z M11.57,10.6c0.231,0.396,0.87,0.281,0.87,0.281l4.513-1.331\r\n\tc0,0,0.615-0.253,0.703-0.589c0.086-0.337-0.102-0.743-0.102-0.743l-2.157-2.564c0,0-0.187-0.324-0.575-0.357\r\n\tc-0.428-0.037-0.691,0.486-0.691,0.486l-2.55,4.05C11.582,9.832,11.357,10.235,11.57,10.6z M9.438,9.021\r\n\tc0.531-0.132,0.616-0.911,0.616-0.911l-0.036-6.485c0,0-0.08-0.8-0.436-1.017c-0.559-0.342-0.724-0.164-0.884-0.14L4.951,1.873\r\n\tc0,0-0.367,0.123-0.558,0.432C4.12,2.742,4.67,3.384,4.67,3.384l3.894,5.358C8.564,8.742,8.949,9.143,9.438,9.021z M8.513,11.645\r\n\tc0.013-0.5-0.595-0.801-0.595-0.801L3.89,8.791c0,0-0.597-0.248-0.887-0.075C2.782,8.848,2.585,9.088,2.566,9.299l-0.262,3.259\r\n\tc0,0-0.039,0.565,0.106,0.822c0.205,0.364,0.881,0.111,0.881,0.111l4.702-1.049C8.175,12.318,8.495,12.306,8.513,11.645z\r\n\t M9.682,13.404c-0.404-0.209-0.887,0.224-0.887,0.224l-3.148,3.498c0,0-0.393,0.535-0.293,0.863c0.094,0.308,0.25,0.461,0.47,0.569\r\n\tl3.162,1.007c0,0,0.383,0.08,0.674-0.005c0.412-0.121,0.336-0.772,0.336-0.772l0.071-4.736\r\n\tC10.067,14.053,10.051,13.597,9.682,13.404z" + } + }] +}; +exports.yelp = yelp; +var youko = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M19.418047,12.0796385c-0.5478516-1.0457487-2.1255493-1.7149191-2.8060303-2.6412954\r\n\tc0.4585571-1.0617428,2.9511719-1.7141776,2.7406616-3.5655117c-0.1517944-1.3371668-2.1604614-1.4112105-2.6756592-0.3305092\r\n\tc-0.3861084,0.4457431-0.7995005,0.8636346-1.2400522,1.254293c-0.2116089,0.269928-0.4511719,0.5119433-0.7175293,0.7264161\r\n\tc-0.3097534,0.3260632-0.5610962,0.7093105-0.979187,0.9249573V5.8728313c-0.0095825-1.400774-2.6002808-1.400774-2.6101685,0\r\n\tv7.3295012c0.1132812,0.5230598,0.3482666,0.9234743,0.9133911,0.9899845h0.7833252\r\n\tc0.5371704-0.0944233,0.8428955-0.4238205,0.9134521-0.9899845v-1.5851727c0-0.549428-0.1014404-1.4766083,0.2612305-0.9241543\r\n\tc0.5316772,0.5263948,1.2804565,1.0925589,1.9580078,1.7160301c0.6503305,0.6000061,1.272706,1.5688076,1.9572153,1.7170801\r\n\tC19.3184376,14.4302559,19.9368458,13.068881,19.418047,12.0796385z M8.1933756,4.1556897\r\n\tC7.636735,4.5449276,7.3271646,5.7449384,6.9533243,6.5988774C6.5416422,7.5382848,6.1798868,8.4847937,5.7787027,9.1743431\r\n\tC4.6934977,7.9286342,3.9533243,5.1675968,2.6461954,4.1556897c-0.4216309-0.3260012-1.3457031-0.3167379-1.7619629,0\r\n\tC-0.241744,5.0133343,0.8880777,6.5300832,1.3409586,7.3256645c0.9940186,1.7442522,2.0955811,3.6115799,2.9366455,5.2160816\r\n\tc-0.5467529,1.4587612-3.3081665,5.5814819,0.3916626,5.3487911c0.8953857-0.5855541,1.2750854-1.8037815,1.762146-2.9060354\r\n\tc0.9957275-2.255393,1.8415527-4.204113,2.8713989-6.5365133c0.4280396-0.9695439,1.4592285-2.4023066,1.2398682-3.500052\r\n\tC10.3683634,4.0776324,9.0449381,3.5608718,8.1933756,4.1556897z" + } + }] +}; +exports.youko = youko; +var youtube = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,2.3C0.172,2.3,0,3.174,0,10s0.172,7.7,10,7.7s10-0.874,10-7.7S19.828,2.3,10,2.3z M13.205,10.334l-4.49,2.096\r\n\tC8.322,12.612,8,12.408,8,11.974V8.026C8,7.593,8.322,7.388,8.715,7.57l4.49,2.096C13.598,9.85,13.598,10.15,13.205,10.334z" + } + }] +}; +exports.youtube = youtube; \ No newline at end of file diff --git a/dist/entypo/infinity.js b/dist/entypo/infinity.js new file mode 100644 index 000000000..721c19c10 --- /dev/null +++ b/dist/entypo/infinity.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.infinity = void 0; +var infinity = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M15.902,5.6c-2.079,0-4.358,1.158-5.902,2.916C8.455,6.758,6.175,5.6,4.096,5.6C2.116,5.6,0,6.756,0,10\r\n\tc0,3.244,2.116,4.398,4.096,4.4l0,0c2.079,0,4.358-1.158,5.903-2.916c1.544,1.758,3.823,2.916,5.902,2.916\r\n\tC17.882,14.4,20,13.244,20,10C20,6.756,17.882,5.6,15.902,5.6z M4.096,12.641C2.584,12.641,1.8,11.752,1.8,10\r\n\tc0-1.752,0.784-2.641,2.296-2.641c1.673,0,3.614,1.086,4.807,2.641C7.71,11.555,5.769,12.641,4.096,12.641z M15.902,12.641\r\n\tc-1.673,0-3.614-1.086-4.807-2.641c1.192-1.555,3.135-2.641,4.807-2.641c1.512,0,2.298,0.889,2.298,2.641\r\n\tC18.2,11.752,17.414,12.641,15.902,12.641z" + } + }] +}; +exports.infinity = infinity; \ No newline at end of file diff --git a/dist/entypo/info.js b/dist/entypo/info.js new file mode 100644 index 000000000..dfcfa00f4 --- /dev/null +++ b/dist/entypo/info.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.info = void 0; +var info = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M12.432,0c1.34,0,2.01,0.912,2.01,1.957c0,1.305-1.164,2.512-2.679,2.512c-1.269,0-2.009-0.75-1.974-1.99\r\n\tC9.789,1.436,10.67,0,12.432,0z M8.309,20c-1.058,0-1.833-0.652-1.093-3.524l1.214-5.092c0.211-0.814,0.246-1.141,0-1.141\r\n\tc-0.317,0-1.689,0.562-2.502,1.117L5.4,10.48c2.572-2.186,5.531-3.467,6.801-3.467c1.057,0,1.233,1.273,0.705,3.23l-1.391,5.352\r\n\tc-0.246,0.945-0.141,1.271,0.106,1.271c0.317,0,1.357-0.392,2.379-1.207l0.6,0.814C12.098,19.02,9.365,20,8.309,20z" + } + }] +}; +exports.info = info; \ No newline at end of file diff --git a/dist/entypo/instagram.js b/dist/entypo/instagram.js new file mode 100644 index 000000000..46403f3aa --- /dev/null +++ b/dist/entypo/instagram.js @@ -0,0 +1,20 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.instagram = void 0; +var instagram = { + "viewBox": "0 0 18 18", + "children": [{ + "name": "title", + "attribs": {} + }, { + "name": "path", + "attribs": { + "d": "M18.94586,6.28931a6.60561,6.60561,0,0,0-.41833-2.18463,4.41189,4.41189,0,0,0-1.03809-1.59412,4.41189,4.41189,0,0,0-1.59412-1.03809,6.60561,6.60561,0,0,0-2.18463-.41833C12.75073,1.01038,12.44427,1,10,1s-2.75073.01038-3.71069,0.05414a6.60561,6.60561,0,0,0-2.18463.41833A4.41189,4.41189,0,0,0,2.51056,2.51056,4.41189,4.41189,0,0,0,1.47247,4.10468a6.60561,6.60561,0,0,0-.41833,2.18463C1.01038,7.24927,1,7.55573,1,10s0.01038,2.75073.05414,3.71069a6.60561,6.60561,0,0,0,.41833,2.18463,4.41189,4.41189,0,0,0,1.03809,1.59412,4.41109,4.41109,0,0,0,1.59412,1.03809,6.60561,6.60561,0,0,0,2.18463.41833C7.24927,18.98969,7.55573,19,10,19s2.75073-.01031,3.71069-0.05414a6.60561,6.60561,0,0,0,2.18463-.41833,4.60208,4.60208,0,0,0,2.6322-2.6322,6.60561,6.60561,0,0,0,.41833-2.18463C18.98962,12.75073,19,12.44427,19,10S18.98962,7.24927,18.94586,6.28931Zm-1.61993,7.34747a4.97824,4.97824,0,0,1-.30994,1.67114A2.98017,2.98017,0,0,1,15.30792,17.016a4.9786,4.9786,0,0,1-1.67114.30994C12.68787,17.3692,12.40326,17.37836,10,17.37836s-2.68787-.00916-3.63678-0.05243A4.9786,4.9786,0,0,1,4.69208,17.016a2.78769,2.78769,0,0,1-1.03485-.67322A2.78769,2.78769,0,0,1,2.984,15.30792a4.97824,4.97824,0,0,1-.30994-1.67114C2.6308,12.68774,2.62164,12.40314,2.62164,10s0.00916-2.68774.05243-3.63678A4.9786,4.9786,0,0,1,2.984,4.69208a2.78769,2.78769,0,0,1,.67322-1.03485A2.78769,2.78769,0,0,1,4.69208,2.984a4.9786,4.9786,0,0,1,1.67114-.30994C7.31226,2.6308,7.59686,2.62164,10,2.62164s2.68774,0.00916,3.63678.05243a4.9786,4.9786,0,0,1,1.67114.30994,2.78769,2.78769,0,0,1,1.03485.67322A2.78769,2.78769,0,0,1,17.016,4.69208a4.9786,4.9786,0,0,1,.30994,1.67114c0.04327,0.949.05243,1.2337,0.05243,3.63678S17.3692,12.68774,17.32593,13.63678ZM10,5.37836A4.62164,4.62164,0,1,0,14.62164,10,4.62169,4.62169,0,0,0,10,5.37836ZM10,13a3,3,0,1,1,3-3A3,3,0,0,1,10,13Zm5.88422-7.8042a1.08,1.08,0,1,1-1.08-1.08A1.08,1.08,0,0,1,15.88422,5.1958Z", + "transform": "translate(-1 -1)" + } + }] +}; +exports.instagram = instagram; \ No newline at end of file diff --git a/dist/entypo/install.js b/dist/entypo/install.js new file mode 100644 index 000000000..788d0f477 --- /dev/null +++ b/dist/entypo/install.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.install = void 0; +var install = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M19.059,10.898l-3.171-7.927C15.654,2.384,15.086,2,14.454,2H12.02l0.38,4.065h2.7L10,10.293L4.9,6.065h2.7L7.98,2H5.546\r\n\tC4.914,2,4.346,2.384,4.112,2.971l-3.171,7.927c-0.288,0.721-0.373,1.507-0.246,2.272l0.59,3.539C1.409,17.454,2.053,18,2.808,18\r\n\th14.383c0.755,0,1.399-0.546,1.523-1.291l0.59-3.539C19.433,12.405,19.348,11.619,19.059,10.898z M16.959,15.245\r\n\tC16.887,15.681,16.51,16,16.068,16H3.932c-0.442,0-0.819-0.319-0.891-0.755l-0.365-2.193C2.583,12.501,3.008,12,3.567,12h12.867\r\n\tc0.558,0,0.983,0.501,0.891,1.052L16.959,15.245z" + } + }] +}; +exports.install = install; \ No newline at end of file diff --git a/dist/entypo/inverted.js b/dist/entypo/inverted.js new file mode 100644 index 000000000..2b0707269 --- /dev/null +++ b/dist/entypo/inverted.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.inverted = void 0; +var inverted = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M18,3H2C1.447,3,1,3.447,1,4v12c0,0.552,0.447,1,1,1h16c0.553,0,1-0.448,1-1V4C19,3.448,18.553,3,18,3z M13.25,6.5\r\n\tc0.69,0,1.25,0.56,1.25,1.25S13.94,9,13.25,9S12,8.44,12,7.75S12.56,6.5,13.25,6.5z M4,14l3.314-7.619l3.769,6.102l3.231-1.605\r\n\tL16,14H4z" + } + }] +}; +exports.inverted = inverted; \ No newline at end of file diff --git a/dist/entypo/jumpToStart.js b/dist/entypo/jumpToStart.js new file mode 100644 index 000000000..ab357e61d --- /dev/null +++ b/dist/entypo/jumpToStart.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.jumpToStart = void 0; +var jumpToStart = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M14.959,4.571L7.756,9.52c0,0-0.279,0.201-0.279,0.481s0.279,0.479,0.279,0.479l7.203,4.951\r\n\tC15.531,15.811,16,15.53,16,14.805V5.196C16,4.469,15.531,4.188,14.959,4.571z M6,4H5C4.447,4,4,4.048,4,4.6V15.4\r\n\tC4,15.952,4.447,16,5,16h1c0.553,0,1-0.048,1-0.6V4.6C7,4.048,6.553,4,6,4z" + } + }] +}; +exports.jumpToStart = jumpToStart; \ No newline at end of file diff --git a/dist/entypo/key.js b/dist/entypo/key.js new file mode 100644 index 000000000..f3a330068 --- /dev/null +++ b/dist/entypo/key.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.key = void 0; +var key = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M17.691,4.725c-0.503-2.977-3.22-4.967-6.069-4.441C8.772,0.809,6.366,3.1,6.869,6.079c0.107,0.641,0.408,1.644,0.763,2.365\r\n\tl-5.175,7.723c-0.191,0.285-0.299,0.799-0.242,1.141l0.333,1.971c0.058,0.342,0.372,0.572,0.7,0.514l1.516-0.281\r\n\tc0.328-0.059,0.744-0.348,0.924-0.639l2.047-3.311l0.018-0.022l1.386-0.256l2.39-3.879c0.785,0.139,1.912,0.092,2.578-0.031\r\n\tC16.955,10.848,18.194,7.704,17.691,4.725z M15.166,6.252c-0.784,1.17-1.584,0.346-2.703-0.475\r\n\tc-1.119-0.818-2.135-1.322-1.352-2.492c0.784-1.17,2.326-1.455,3.447-0.635C15.678,3.469,15.949,5.082,15.166,6.252z" + } + }] +}; +exports.key = key; \ No newline at end of file diff --git a/dist/entypo/keyboard.js b/dist/entypo/keyboard.js new file mode 100644 index 000000000..e134e22e1 --- /dev/null +++ b/dist/entypo/keyboard.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.keyboard = void 0; +var keyboard = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.6,4h-17.2C0.629,4,0,4.629,0,5.4V14.6C0,15.369,0.629,16,1.399,16h17.2c0.77,0,1.4-0.631,1.4-1.4V5.4\r\n\tC20,4.629,19.369,4,18.6,4z M11,6h2v2h-2V6z M14,9v2h-2V9H14z M8,6h2v2H8V6z M11,9v2H9V9H11z M5,6h2v2H5V6z M8,9v2H6V9H8z M2,6h2v2\r\n\tH2V6z M5,9v2H3V9H5z M4,14H2v-2h2V14z M15,14H5v-2h10V14z M18,14h-2v-2h2V14z M15,11V9h2v2H15z M18,8h-4V6h4V8z" + } + }] +}; +exports.keyboard = keyboard; \ No newline at end of file diff --git a/dist/entypo/landing.js b/dist/entypo/landing.js new file mode 100644 index 000000000..3f4a55514 --- /dev/null +++ b/dist/entypo/landing.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.landing = void 0; +var landing = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.752,16.038c-0.097,0.266-0.822,1.002-6.029-0.878l-5.105-1.843C5.841,12.676,3.34,11.668,2.36,11.1\r\n\tc-0.686-0.397-0.836-1.282-0.836-1.282S1.361,6.862,1.261,6.134c-0.1-0.728,0.095-0.853,0.796-0.492\r\n\tc0.436,0.225,1.865,2.562,2.464,3.567C6.033,9.59,7.383,9.97,8.014,10.158C7.757,8.441,7.274,5.23,7.101,4.225\r\n\tC6.935,3.262,7.651,3.69,7.651,3.69c0.331,0.19,0.983,0.661,1.206,1.002c1.522,2.326,3.672,6.6,3.836,6.928\r\n\tc0.896,0.28,2.277,0.733,3.102,1.03C17.951,13.429,18.882,15.684,18.752,16.038z" + } + }] +}; +exports.landing = landing; \ No newline at end of file diff --git a/dist/entypo/landline.js b/dist/entypo/landline.js new file mode 100644 index 000000000..dd4c31dd4 --- /dev/null +++ b/dist/entypo/landline.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.landline = void 0; +var landline = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M4.902,0.25C3.498-0.027,2.115,0.875,1.833,2.273c-1.105,5.455-1.105,9.997,0,15.454C2.08,18.952,3.17,19.8,4.388,19.8\r\n\tc0.17,0,0.342-0.016,0.515-0.05c1.412-0.279,2.329-1.638,2.046-3.036c-0.978-4.832-0.978-8.598,0-13.43\r\n\tC7.231,1.888,6.314,0.529,4.902,0.25z M17,2H8.436c0.073,0.467,0.081,0.951-0.017,1.44c-0.936,4.72-0.936,8.398,0,13.12\r\n\tc0.098,0.49,0.09,0.973,0.017,1.44H17c1.1,0,2-0.9,2-2V4C19,2.9,18.101,2,17,2z M12,14.5c-0.828,0-1.5-0.672-1.5-1.5\r\n\ts0.672-1.5,1.5-1.5s1.5,0.672,1.5,1.5S12.828,14.5,12,14.5z M17,9h-7V5h7V9z" + } + }] +}; +exports.landline = landline; \ No newline at end of file diff --git a/dist/entypo/landscape.js b/dist/entypo/landscape.js new file mode 100644 index 000000000..4862b9ade --- /dev/null +++ b/dist/entypo/landscape.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.landscape = void 0; +var landscape = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M19,3H1C0.448,3,0,3.447,0,4v12c0,0.553,0.448,1,1,1h18c0.552,0,1-0.447,1-1V4C20,3.447,19.553,3,19,3z M18,15H2V5h16V15z" + } + }] +}; +exports.landscape = landscape; \ No newline at end of file diff --git a/dist/entypo/language.js b/dist/entypo/language.js new file mode 100644 index 000000000..58653632f --- /dev/null +++ b/dist/entypo/language.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.language = void 0; +var language = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M19.753,10.909c-0.624-1.707-2.366-2.726-4.661-2.726c-0.09,0-0.176,0.002-0.262,0.006l-0.016-2.063\r\n\tc0,0,3.41-0.588,3.525-0.607s0.133-0.119,0.109-0.231c-0.023-0.111-0.167-0.883-0.188-0.976c-0.027-0.131-0.102-0.127-0.207-0.109\r\n\tc-0.104,0.018-3.25,0.461-3.25,0.461s-0.012-1.953-0.013-2.078c-0.001-0.125-0.069-0.158-0.194-0.156\r\n\tc-0.125,0.002-0.92,0.014-1.025,0.016c-0.105,0.002-0.164,0.049-0.162,0.148c0.002,0.1,0.033,2.307,0.033,2.307\r\n\ts-3.061,0.527-3.144,0.543c-0.084,0.014-0.17,0.053-0.151,0.143c0.019,0.09,0.19,1.094,0.208,1.172\r\n\tc0.018,0.08,0.072,0.129,0.188,0.107c0.115-0.019,2.924-0.504,2.924-0.504l0.035,2.018c-1.077,0.281-1.801,0.824-2.256,1.303\r\n\tc-0.768,0.807-1.207,1.887-1.207,2.963c0,1.586,0.971,2.529,2.328,2.695c3.162,0.387,5.119-3.06,5.769-4.715\r\n\tc1.097,1.506,0.256,4.354-2.094,5.98c-0.043,0.029-0.098,0.129-0.033,0.207c0.065,0.078,0.541,0.662,0.619,0.756\r\n\tc0.08,0.096,0.206,0.059,0.256,0.023C19.394,15.862,20.545,13.077,19.753,10.909z M12.367,14.097\r\n\tc-0.966-0.121-0.944-0.914-0.944-1.453c0-0.773,0.327-1.58,0.876-2.156c0.335-0.354,0.75-0.621,1.229-0.799l0.082,4.277\r\n\tC13.225,14.097,12.811,14.151,12.367,14.097z M14.794,13.544l0.046-4.109c0.084-0.004,0.166-0.01,0.252-0.01\r\n\tc0.773,0,1.494,0.145,1.885,0.361C17.368,10.003,15.954,12.499,14.794,13.544z M5.844,5.876C5.814,5.782,5.741,5.731,5.648,5.731\r\n\th-1.95c-0.093,0-0.165,0.051-0.194,0.144c-0.412,1.299-3.48,10.99-3.496,11.041c-0.017,0.051-0.011,0.076,0.062,0.076h1.733\r\n\tc0.075,0,0.099-0.023,0.114-0.072c0.015-0.051,1.008-3.318,1.008-3.318h3.496c0,0,0.992,3.268,1.008,3.318\r\n\tc0.016,0.049,0.039,0.072,0.113,0.072h1.734c0.072,0,0.078-0.025,0.062-0.076C9.324,16.866,6.255,7.175,5.844,5.876z M3.226,12.194\r\n\tl1.447-5.25l1.447,5.25H3.226z" + } + }] +}; +exports.language = language; \ No newline at end of file diff --git a/dist/entypo/laptop.js b/dist/entypo/laptop.js new file mode 100644 index 000000000..e0c5fde7f --- /dev/null +++ b/dist/entypo/laptop.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.laptop = void 0; +var laptop = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M19.754,15.631C19.507,15.26,18,13,18,13V4c0-1.102-0.9-2-2-2H4C2.899,2,2,2.898,2,4v9c0,0-1.507,2.26-1.754,2.631\r\n\tC0,16,0,16.213,0,16.5V17c0,0.5,0.5,1,0.999,1h18.002C19.5,18,20,17.5,20,17v-0.5C20,16.213,20,16,19.754,15.631z M7,16l0.6-1h4.8\r\n\tl0.6,1H7z M16,12H4V4h12V12z" + } + }] +}; +exports.laptop = laptop; \ No newline at end of file diff --git a/dist/entypo/lastfm.js b/dist/entypo/lastfm.js new file mode 100644 index 000000000..56aafe803 --- /dev/null +++ b/dist/entypo/lastfm.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.lastfm = void 0; +var lastfm = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M8.574,14.576C8.097,14.924,7.119,15.6,5.193,15.6C2.532,15.6,0,13.707,0,10.195C0,6.547,2.637,4.4,5.354,4.4\r\n\tc3.047,0,4.183,1.108,5.144,4.109l0.756,2.309c0.551,1.688,1.713,2.91,4.026,2.91c1.558,0,2.382-0.346,2.382-1.199\r\n\tc0-0.67-0.389-1.156-1.557-1.434l-1.559-0.369c-1.9-0.461-2.656-1.455-2.656-3.025c0-2.516,2.016-3.301,4.077-3.301\r\n\tc2.337,0,3.757,0.854,3.94,2.932l-2.291,0.277c-0.092-0.992-0.688-1.408-1.787-1.408c-1.008,0-1.627,0.461-1.627,1.246\r\n\tc0,0.693,0.299,1.109,1.307,1.34l1.466,0.324C18.945,9.572,20,10.543,20,12.414c0,2.309-1.924,3.186-4.766,3.186\r\n\tc-3.963,0-5.338-1.801-6.07-4.041L8.43,9.25c-0.549-1.687-0.99-2.902-3.006-2.902c-1.398,0-3.219,0.916-3.219,3.756\r\n\tc0,2.217,1.523,3.604,3.104,3.604c1.34,0,2.146-0.754,2.564-1.131L8.574,14.576z" + } + }] +}; +exports.lastfm = lastfm; \ No newline at end of file diff --git a/dist/entypo/layers.js b/dist/entypo/layers.js new file mode 100644 index 000000000..5ed059445 --- /dev/null +++ b/dist/entypo/layers.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.layers = void 0; +var layers = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M9.248,11.601c0.45,0.313,1.05,0.313,1.5,0l9.088-5.281c0.236-0.164,0.21-0.518-0.048-0.646l-9.205-3.537\r\n\tc-0.368-0.183-0.802-0.183-1.17,0L0.208,5.674C-0.05,5.801-0.076,6.156,0.16,6.32L9.248,11.601z M19.788,10.811l-2.486-1.233\r\n\tl-5.725,3.327c-0.469,0.309-1.014,0.471-1.579,0.471s-1.11-0.163-1.579-0.471L2.698,9.576l-2.49,1.234\r\n\tc-0.258,0.128-0.284,0.482-0.048,0.646l9.088,6.309c0.45,0.313,1.05,0.313,1.5,0l9.088-6.309\r\n\tC20.072,11.293,20.046,10.939,19.788,10.811z" + } + }] +}; +exports.layers = layers; \ No newline at end of file diff --git a/dist/entypo/leaf.js b/dist/entypo/leaf.js new file mode 100644 index 000000000..08356e744 --- /dev/null +++ b/dist/entypo/leaf.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.leaf = void 0; +var leaf = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M19.025,3.587c-4.356,2.556-4.044,7.806-7.096,10.175c-2.297,1.783-5.538,0.88-7.412,0.113c0,0-1.27,1.603-2.181,3.74\r\n\tc-0.305,0.717-1.644-0.073-1.409-0.68C3.905,9.25,14.037,5.416,14.037,5.416S6.888,5.113,2.11,11.356\r\n\tC1.982,9.93,1.77,6.072,5.47,3.706C10.486,0.495,20.042,2.991,19.025,3.587z" + } + }] +}; +exports.leaf = leaf; \ No newline at end of file diff --git a/dist/entypo/left.js b/dist/entypo/left.js new file mode 100644 index 000000000..83e18a109 --- /dev/null +++ b/dist/entypo/left.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.left = void 0; +var left = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M6,10l3,3v-2h8V9H9V7L6,10z M4,2C3.447,2,3,2.047,3,2.6V17.4C3,17.951,3.447,18,4,18c0.552,0,1-0.049,1-0.6V2.6\r\n\tC5,2.047,4.552,2,4,2z" + } + }] +}; +exports.left = left; \ No newline at end of file diff --git a/dist/entypo/lifebuoy.js b/dist/entypo/lifebuoy.js new file mode 100644 index 000000000..7134676ae --- /dev/null +++ b/dist/entypo/lifebuoy.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.lifebuoy = void 0; +var lifebuoy = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M16.788,3.212c-3.749-3.749-9.827-3.749-13.575,0c-3.75,3.75-3.75,9.828-0.002,13.576c3.75,3.75,9.828,3.75,13.578,0\r\n\tC20.537,13.039,20.537,6.961,16.788,3.212z M6.748,13.252c-1.797-1.797-1.797-4.709,0-6.505c1.795-1.796,4.709-1.796,6.506,0\r\n\tc1.797,1.797,1.795,4.709,0,6.505C11.457,15.049,8.545,15.049,6.748,13.252z M15.347,12.879c0.968-1.799,0.969-3.959,0-5.759\r\n\tl1.783-0.96c1.289,2.391,1.289,5.29,0.002,7.678L15.347,12.879z M13.839,2.869l-0.961,1.784c-1.799-0.967-3.959-0.967-5.756,0\r\n\tL6.161,2.87C8.551,1.582,11.448,1.582,13.839,2.869z M2.87,6.16l1.784,0.961c-0.968,1.798-0.968,3.957-0.001,5.756l-1.784,0.961\r\n\tC1.581,11.449,1.582,8.551,2.87,6.16z M6.159,17.129l0.961-1.783c1.799,0.969,3.96,0.969,5.759,0l0.961,1.785\r\n\tC11.448,18.418,8.55,18.418,6.159,17.129z" + } + }] +}; +exports.lifebuoy = lifebuoy; \ No newline at end of file diff --git a/dist/entypo/line.js b/dist/entypo/line.js new file mode 100644 index 000000000..4f6845087 --- /dev/null +++ b/dist/entypo/line.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.line = void 0; +var line = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M11,13.824V6.176c0.825-0.38,1.4-1.208,1.4-2.176c0-1.326-1.074-2.4-2.4-2.4S7.6,2.674,7.6,4c0,0.967,0.576,1.796,1.4,2.176\r\n\tv7.649C8.175,14.204,7.6,15.033,7.6,16c0,1.326,1.074,2.4,2.4,2.4s2.4-1.075,2.4-2.4C12.4,15.033,11.825,14.204,11,13.824z\r\n\t M10,2.615c0.764,0,1.384,0.619,1.384,1.385c0,0.764-0.62,1.385-1.384,1.385C9.235,5.385,8.616,4.764,8.616,4\r\n\tC8.616,3.234,9.235,2.615,10,2.615z M10,17.385c-0.766,0-1.385-0.621-1.385-1.385c0-0.766,0.619-1.385,1.385-1.385\r\n\tc0.764,0,1.384,0.619,1.384,1.385C11.384,16.764,10.764,17.385,10,17.385z" + } + }] +}; +exports.line = line; \ No newline at end of file diff --git a/dist/entypo/link.js b/dist/entypo/link.js new file mode 100644 index 000000000..a046cba3a --- /dev/null +++ b/dist/entypo/link.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.link = void 0; +var link = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M7.859,14.691l-0.81,0.805c-0.701,0.695-1.843,0.695-2.545,0c-0.336-0.334-0.521-0.779-0.521-1.252\r\n\tc0-0.473,0.186-0.916,0.521-1.252l2.98-2.955c0.617-0.613,1.779-1.515,2.626-0.675c0.389,0.386,1.016,0.384,1.403-0.005\r\n\tc0.385-0.389,0.383-1.017-0.006-1.402C10.069,6.527,7.941,6.791,6.088,8.63l-2.98,2.956C2.393,12.295,2,13.24,2,14.244\r\n\tc0,1.006,0.394,1.949,1.108,2.658c0.736,0.73,1.702,1.096,2.669,1.096c0.967,0,1.934-0.365,2.669-1.096l0.811-0.805\r\n\tc0.389-0.385,0.391-1.012,0.005-1.4C8.875,14.309,8.248,14.307,7.859,14.691z M16.891,3.207c-1.547-1.534-3.709-1.617-5.139-0.197\r\n\tl-1.009,1.002c-0.389,0.386-0.392,1.013-0.006,1.401c0.386,0.389,1.013,0.391,1.402,0.005l1.01-1.001\r\n\tc0.74-0.736,1.711-0.431,2.346,0.197c0.336,0.335,0.522,0.779,0.522,1.252s-0.186,0.917-0.522,1.251l-3.18,3.154\r\n\tc-1.454,1.441-2.136,0.766-2.427,0.477c-0.389-0.386-1.016-0.383-1.401,0.005c-0.386,0.389-0.384,1.017,0.005,1.401\r\n\tc0.668,0.662,1.43,0.99,2.228,0.99c0.977,0,2.01-0.492,2.993-1.467l3.18-3.153C17.605,7.814,18,6.87,18,5.866\r\n\tC18,4.861,17.605,3.917,16.891,3.207z" + } + }] +}; +exports.link = link; \ No newline at end of file diff --git a/dist/entypo/linkedin.js b/dist/entypo/linkedin.js new file mode 100644 index 000000000..ae6b3f909 --- /dev/null +++ b/dist/entypo/linkedin.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.linkedin = void 0; +var linkedin = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M5,3c0,1.1-0.7,2-2,2C1.8,5,1,4.1,1,3.1C1,2,1.8,1,3,1S5,1.9,5,3z M1,19h4V6H1V19z M14.6,6.2c-2.1,0-3.3,1.2-3.8,2h-0.1\r\n\tl-0.2-1.7H6.9C6.9,7.6,7,8.9,7,10.4V19h4v-7.1c0-0.4,0-0.7,0.1-1c0.3-0.7,0.8-1.6,1.9-1.6c1.4,0,2,1.2,2,2.8V19h4v-7.4\r\n\tC19,7.9,17.1,6.2,14.6,6.2z" + } + }] +}; +exports.linkedin = linkedin; \ No newline at end of file diff --git a/dist/entypo/list.js b/dist/entypo/list.js new file mode 100644 index 000000000..1f8937329 --- /dev/null +++ b/dist/entypo/list.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.list = void 0; +var list = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M14.4,9H8.6C8.048,9,8,9.447,8,10s0.048,1,0.6,1H14.4c0.552,0,0.6-0.447,0.6-1S14.952,9,14.4,9z M16.4,14H8.6\r\n\tC8.048,14,8,14.447,8,15s0.048,1,0.6,1H16.4c0.552,0,0.6-0.447,0.6-1S16.952,14,16.4,14z M8.6,6H16.4C16.952,6,17,5.553,17,5\r\n\ts-0.048-1-0.6-1H8.6C8.048,4,8,4.447,8,5S8.048,6,8.6,6z M5.4,9H3.6C3.048,9,3,9.447,3,10s0.048,1,0.6,1H5.4C5.952,11,6,10.553,6,10\r\n\tS5.952,9,5.4,9z M5.4,14H3.6C3.048,14,3,14.447,3,15s0.048,1,0.6,1H5.4C5.952,16,6,15.553,6,15S5.952,14,5.4,14z M5.4,4H3.6\r\n\tC3.048,4,3,4.447,3,5s0.048,1,0.6,1H5.4C5.952,6,6,5.553,6,5S5.952,4,5.4,4z" + } + }] +}; +exports.list = list; \ No newline at end of file diff --git a/dist/entypo/location.js b/dist/entypo/location.js new file mode 100644 index 000000000..73346daa4 --- /dev/null +++ b/dist/entypo/location.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.location = void 0; +var location = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M19.367,18.102L18,14h-1.5l0.833,4H2.667L3.5,14H2l-1.368,4.102C0.285,19.146,0.9,20,2,20h16\r\n\tC19.1,20,19.715,19.146,19.367,18.102z M15,5c0-2.761-2.238-5-5-5S5,2.239,5,5c0,4.775,5,10,5,10S15,9.775,15,5z M7.3,5.06\r\n\tc0-1.491,1.208-2.699,2.7-2.699s2.7,1.208,2.7,2.699c0,1.492-1.209,2.7-2.7,2.7S7.3,6.551,7.3,5.06z" + } + }] +}; +exports.location = location; \ No newline at end of file diff --git a/dist/entypo/lock.js b/dist/entypo/lock.js new file mode 100644 index 000000000..7136c97b3 --- /dev/null +++ b/dist/entypo/lock.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.lock = void 0; +var lock = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M15.8,8H14V5.6C14,2.703,12.665,1,10,1C7.334,1,6,2.703,6,5.6V8H4C3.447,8,3,8.646,3,9.199V17\r\n\tc0,0.549,0.428,1.139,0.951,1.307l1.197,0.387C5.672,18.861,6.55,19,7.1,19H12.9c0.549,0,1.428-0.139,1.951-0.307l1.196-0.387\r\n\tC16.571,18.139,17,17.549,17,17V9.199C17,8.646,16.352,8,15.8,8z M12,8H8V5.199C8,3.754,8.797,3,10,3c1.203,0,2,0.754,2,2.199V8z" + } + }] +}; +exports.lock = lock; \ No newline at end of file diff --git a/dist/entypo/login.js b/dist/entypo/login.js new file mode 100644 index 000000000..23aef63d8 --- /dev/null +++ b/dist/entypo/login.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.login = void 0; +var login = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M14,10L8,5v3H1v4h7v3L14,10z M17,17H9v2h8c1.1,0,2-0.9,2-2V3c0-1.1-0.9-2-2-2H9v2h8V17z" + } + }] +}; +exports.login = login; \ No newline at end of file diff --git a/dist/entypo/longDown.js b/dist/entypo/longDown.js new file mode 100644 index 000000000..b0703ad31 --- /dev/null +++ b/dist/entypo/longDown.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.longDown = void 0; +var longDown = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,19.25L4.5,14H8V1h4v13h3.5L10,19.25z" + } + }] +}; +exports.longDown = longDown; \ No newline at end of file diff --git a/dist/entypo/longLeft.js b/dist/entypo/longLeft.js new file mode 100644 index 000000000..96f6acd8a --- /dev/null +++ b/dist/entypo/longLeft.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.longLeft = void 0; +var longLeft = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M0.75,10L6,4.5V8h13v4H6v3.5L0.75,10z" + } + }] +}; +exports.longLeft = longLeft; \ No newline at end of file diff --git a/dist/entypo/longRight.js b/dist/entypo/longRight.js new file mode 100644 index 000000000..6353b1930 --- /dev/null +++ b/dist/entypo/longRight.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.longRight = void 0; +var longRight = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M14,15.5V12H1V8h13V4.5l5.25,5.5L14,15.5z" + } + }] +}; +exports.longRight = longRight; \ No newline at end of file diff --git a/dist/entypo/longUp.js b/dist/entypo/longUp.js new file mode 100644 index 000000000..e48792a59 --- /dev/null +++ b/dist/entypo/longUp.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.longUp = void 0; +var longUp = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,0.75L15.5,6H12v13H8V6H4.5L10,0.75z" + } + }] +}; +exports.longUp = longUp; \ No newline at end of file diff --git a/dist/entypo/loop.js b/dist/entypo/loop.js new file mode 100644 index 000000000..3e09de023 --- /dev/null +++ b/dist/entypo/loop.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.loop = void 0; +var loop = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M20,7v7c0,1.103-0.896,2-2,2H2c-1.104,0-2-0.897-2-2V7c0-1.104,0.896-2,2-2h7V3l4,3.5L9,10V8H3v5h14V8h-3V5h4\r\n\tC19.104,5,20,5.896,20,7z" + } + }] +}; +exports.loop = loop; \ No newline at end of file diff --git a/dist/entypo/magnet.js b/dist/entypo/magnet.js new file mode 100644 index 000000000..33d7e2d59 --- /dev/null +++ b/dist/entypo/magnet.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.magnet = void 0; +var magnet = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M12.165,17.86c-0.028,0.309,0.217,0.584,0.545,0.611l3.985,0.326c0.329,0.027,0.621-0.203,0.65-0.512l0.311-3.287\r\n\tl-5.18-0.426L12.165,17.86z M2.344,14.999l0.312,3.287c0.028,0.309,0.321,0.539,0.65,0.512l3.985-0.326\r\n\tc0.328-0.027,0.573-0.303,0.546-0.611l-0.312-3.287L2.344,14.999z M1.831,9.583l0.321,3.391l5.181-0.426L7.011,9.161\r\n\tc-0.007-0.082-0.011-0.166-0.011-0.25c0-1.555,1.346-2.82,3-2.82s3,1.266,3,2.82c0,0.084-0.004,0.168-0.012,0.25l-0.321,3.387\r\n\tl5.181,0.426l0.321-3.391c0.021-0.225,0.03-0.449,0.03-0.672C18.2,4.659,14.522,1.2,10,1.2S1.8,4.659,1.8,8.911\r\n\tC1.8,9.134,1.811,9.358,1.831,9.583z" + } + }] +}; +exports.magnet = magnet; \ No newline at end of file diff --git a/dist/entypo/mail.js b/dist/entypo/mail.js new file mode 100644 index 000000000..5b20727f2 --- /dev/null +++ b/dist/entypo/mail.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.mail = void 0; +var mail = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M1.574,5.286c0.488,0.262,7.248,3.894,7.5,4.029C9.326,9.45,9.652,9.514,9.98,9.514c0.328,0,0.654-0.064,0.906-0.199\r\n\ts7.012-3.767,7.5-4.029C18.875,5.023,19.337,4,18.44,4H1.521C0.624,4,1.086,5.023,1.574,5.286z M18.613,7.489\r\n\tc-0.555,0.289-7.387,3.849-7.727,4.027s-0.578,0.199-0.906,0.199s-0.566-0.021-0.906-0.199S1.941,7.777,1.386,7.488\r\n\tC0.996,7.284,1,7.523,1,7.707S1,15,1,15c0,0.42,0.566,1,1,1h16c0.434,0,1-0.58,1-1c0,0,0-7.108,0-7.292S19.004,7.285,18.613,7.489z" + } + }] +}; +exports.mail = mail; \ No newline at end of file diff --git a/dist/entypo/man.js b/dist/entypo/man.js new file mode 100644 index 000000000..aadc5d8d6 --- /dev/null +++ b/dist/entypo/man.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.man = void 0; +var man = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,4c1.104,0,2-0.896,2-2c0-1.105-0.896-2-2-2S8,0.895,8,2C8,3.104,8.896,4,10,4z M15.978,11.583\r\n\tc-0.385-1.775-1.058-4.688-2.042-5.894C12.979,4.516,11.051,4.467,10,4.467h0c-1.051,0-2.979,0.049-3.936,1.222\r\n\tC5.08,6.895,4.407,9.808,4.022,11.583c-0.213,0.983,1.154,1.344,1.511,0.355c0.531-1.473,0.941-2.71,1.839-3.736\r\n\tC7.844,11.109,6.102,16.168,6,19c0,0.552,0.448,1,1,1c0.426,0,0.79-0.266,0.934-0.642C8.391,17.771,10,13.355,10,13.355l0,0l0,0\r\n\tc0,0,1.609,4.416,2.066,6.003C12.21,19.734,12.574,20,13,20c0.552,0,1-0.448,1-1c-0.102-2.832-1.844-7.891-1.372-10.797\r\n\tc0.898,1.026,1.308,2.263,1.839,3.736C14.823,12.927,16.191,12.566,15.978,11.583z" + } + }] +}; +exports.man = man; \ No newline at end of file diff --git a/dist/entypo/map.js b/dist/entypo/map.js new file mode 100644 index 000000000..c28c068ee --- /dev/null +++ b/dist/entypo/map.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.map = void 0; +var map = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M19.447,3.718l-6-3c-0.281-0.141-0.613-0.141-0.895,0l-5.63,2.815L1.316,1.664C1.01,1.562,0.676,1.613,0.415,1.802\r\n\tC0.154,1.99,0,2.292,0,2.613v13.001c0,0.379,0.214,0.725,0.553,0.894l6,3c0.141,0.07,0.294,0.106,0.447,0.106\r\n\ts0.307-0.035,0.447-0.106l5.63-2.814l5.606,1.869c0.305,0.1,0.64,0.049,0.901-0.139c0.261-0.188,0.415-0.49,0.415-0.81V4.612\r\n\tC20,4.233,19.786,3.887,19.447,3.718z M8,5.231l4-2v11.763l-4,2V5.231z M2,4l4,1.333v11.661l-4-2V4z M18,16.227l-4-1.334V3.231l4,2\r\n\tV16.227z" + } + }] +}; +exports.map = map; \ No newline at end of file diff --git a/dist/entypo/mask.js b/dist/entypo/mask.js new file mode 100644 index 000000000..89e88cbb1 --- /dev/null +++ b/dist/entypo/mask.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.mask = void 0; +var mask = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M19.581,5.84c-0.043-0.469-0.462-0.803-0.92-0.73C16.919,5.388,12.835,7,10,7C7.165,7,3.081,5.388,1.339,5.11\r\n\tc-0.458-0.073-0.876,0.26-0.92,0.729C0.277,7.371,0,11.45,0,12.068c0,0.83,3.472,2.732,6,2.732c2.452,0,2.95-2.732,4-2.732\r\n\ts1.548,2.732,4,2.732c2.528,0,6-1.902,6-2.732C20,11.45,19.723,7.371,19.581,5.84z M7.66,10.72c-0.353,0.318-1.335,1.07-2.531,0.835\r\n\tc-1.196-0.235-1.919-1.323-2.166-1.758C2.903,9.691,2.922,9.557,3.007,9.48C3.36,9.162,4.342,8.41,5.539,8.645\r\n\tc1.196,0.235,1.919,1.323,2.166,1.758C7.764,10.509,7.745,10.643,7.66,10.72z M17.037,9.797c-0.246,0.436-0.969,1.523-2.166,1.758\r\n\tc-1.196,0.235-2.179-0.517-2.531-0.835c-0.086-0.077-0.104-0.211-0.045-0.317c0.246-0.436,0.969-1.523,2.166-1.758\r\n\tc1.196-0.235,2.179,0.517,2.531,0.835C17.078,9.557,17.097,9.691,17.037,9.797z" + } + }] +}; +exports.mask = mask; \ No newline at end of file diff --git a/dist/entypo/medal.js b/dist/entypo/medal.js new file mode 100644 index 000000000..b2c59859f --- /dev/null +++ b/dist/entypo/medal.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.medal = void 0; +var medal = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,10c0.528,0,1.026,0.104,1.504,0.256L5.427,1.141C5.368,1.053,5.27,1,5.164,1H1.608C1.491,1,1.42,1.131,1.486,1.229\r\n\tl6.231,9.347C8.404,10.22,9.173,10,10,10z M18.392,1h-3.556c-0.106,0-0.204,0.053-0.263,0.141L10.75,6.875l2,3l5.764-8.646\r\n\tC18.579,1.131,18.509,1,18.392,1z M10,11c-2.209,0-4,1.791-4,4c0,2.209,1.791,4,4,4s4-1.791,4-4C14,12.791,12.209,11,10,11z\r\n\t M12.112,15.117c0.062,0.064,0.052,0.158-0.022,0.208c-0.074,0.05-0.095,0.153-0.049,0.229c0.047,0.076,0.018,0.165-0.065,0.199\r\n\ts-0.125,0.13-0.095,0.214s-0.017,0.165-0.104,0.181s-0.149,0.101-0.137,0.189s-0.051,0.158-0.14,0.155\r\n\tc-0.089-0.003-0.167,0.068-0.174,0.156s-0.083,0.144-0.169,0.123s-0.178,0.031-0.203,0.117s-0.111,0.124-0.191,0.085\r\n\tc-0.08-0.039-0.18-0.006-0.222,0.072s-0.134,0.098-0.205,0.043s-0.175-0.044-0.232,0.024s-0.151,0.068-0.209,0\r\n\ts-0.162-0.079-0.232-0.024s-0.162,0.035-0.205-0.043s-0.142-0.111-0.222-0.072c-0.08,0.039-0.166,0-0.191-0.085\r\n\ts-0.116-0.138-0.203-0.117s-0.163-0.034-0.169-0.123S8.589,16.489,8.5,16.491c-0.089,0.003-0.152-0.067-0.14-0.155\r\n\ts-0.05-0.173-0.137-0.189s-0.135-0.097-0.104-0.181s-0.013-0.18-0.095-0.214s-0.111-0.123-0.065-0.199\r\n\tc0.047-0.076,0.025-0.179-0.049-0.229c-0.074-0.05-0.083-0.144-0.022-0.208c0.062-0.064,0.062-0.169,0-0.234\r\n\ts-0.052-0.158,0.022-0.208s0.095-0.153,0.049-0.229c-0.047-0.076-0.018-0.165,0.065-0.199s0.125-0.13,0.095-0.214\r\n\ts0.017-0.165,0.104-0.181s0.149-0.101,0.137-0.189s0.051-0.158,0.14-0.155c0.089,0.003,0.167-0.068,0.174-0.156\r\n\ts0.083-0.144,0.169-0.123s0.178-0.031,0.203-0.117s0.111-0.124,0.191-0.085c0.08,0.039,0.18,0.006,0.222-0.072\r\n\ts0.134-0.098,0.205-0.043s0.175,0.044,0.232-0.024s0.151-0.068,0.209,0s0.162,0.079,0.232,0.024s0.162-0.035,0.205,0.043\r\n\ts0.142,0.111,0.222,0.072c0.08-0.039,0.166,0,0.191,0.085s0.116,0.138,0.203,0.117s0.163,0.034,0.169,0.123s0.085,0.159,0.174,0.156\r\n\tc0.089-0.003,0.152,0.067,0.14,0.155s0.05,0.173,0.137,0.189s0.135,0.097,0.104,0.181s0.013,0.18,0.095,0.214\r\n\ts0.111,0.123,0.065,0.199c-0.047,0.076-0.025,0.179,0.049,0.229s0.083,0.144,0.022,0.208S12.05,15.053,12.112,15.117z" + } + }] +}; +exports.medal = medal; \ No newline at end of file diff --git a/dist/entypo/medium.js b/dist/entypo/medium.js new file mode 100644 index 000000000..2af4cb6ce --- /dev/null +++ b/dist/entypo/medium.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.medium = void 0; +var medium = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.7502384,5C18.7502384,5,18,5,18,5.7501426s0,8.5002785,0,8.5002785S18,15,18.7502384,15H19v2h-6v-2h1V5.6999512\r\n\th-0.0999756L10.8354492,17H8.1365967L5.0999761,5.6999512H5.0000005V15h1v2h-5v-2h0.2497627c0,0,0.7502373,0,0.7502373-0.7501431\r\n\tc0-0.7501421,0-8.5002775,0-8.5002775S2.0000005,5,1.2497631,5H1.0000005V3h6.6340332l2.3269038,8.6591797h0.0766602L12.3859863,3\r\n\tH19v2H18.7502384z" + } + }] +}; +exports.medium = medium; \ No newline at end of file diff --git a/dist/entypo/megaphone.js b/dist/entypo/megaphone.js new file mode 100644 index 000000000..f43c1d362 --- /dev/null +++ b/dist/entypo/megaphone.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.megaphone = void 0; +var megaphone = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M17.223,7.03c-1.584-3.686-4.132-6.49-5.421-5.967c-2.189,0.891,1.304,5.164-9.447,9.533\r\n\tc-0.929,0.379-1.164,1.888-0.775,2.792c0.388,0.902,1.658,1.801,2.587,1.424c0.161-0.066,0.751-0.256,0.751-0.256\r\n\tc0.663,0.891,1.357,0.363,1.604,0.928c0.296,0.68,0.939,2.158,1.158,2.66c0.219,0.502,0.715,0.967,1.075,0.83\r\n\tc0.359-0.137,1.582-0.602,2.05-0.779c0.468-0.178,0.579-0.596,0.436-0.924c-0.154-0.355-0.786-0.459-0.967-0.873\r\n\tc-0.18-0.412-0.769-1.738-0.938-2.156c-0.23-0.568,0.259-1.031,0.97-1.104c4.894-0.512,5.809,2.512,7.475,1.834\r\n\tC19.068,14.447,18.806,10.713,17.223,7.03z M16.672,13.006c-0.287,0.115-2.213-1.402-3.443-4.267\r\n\tc-1.231-2.863-1.076-5.48-0.79-5.597c0.286-0.115,2.165,1.717,3.395,4.58C17.065,10.585,16.958,12.889,16.672,13.006z" + } + }] +}; +exports.megaphone = megaphone; \ No newline at end of file diff --git a/dist/entypo/menu.js b/dist/entypo/menu.js new file mode 100644 index 000000000..d582d57a7 --- /dev/null +++ b/dist/entypo/menu.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.menu = void 0; +var menu = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M16.4,9H3.6C3.048,9,3,9.447,3,10c0,0.553,0.048,1,0.6,1H16.4c0.552,0,0.6-0.447,0.6-1C17,9.447,16.952,9,16.4,9z M16.4,13\r\n\tH3.6C3.048,13,3,13.447,3,14c0,0.553,0.048,1,0.6,1H16.4c0.552,0,0.6-0.447,0.6-1C17,13.447,16.952,13,16.4,13z M3.6,7H16.4\r\n\tC16.952,7,17,6.553,17,6c0-0.553-0.048-1-0.6-1H3.6C3.048,5,3,5.447,3,6C3,6.553,3.048,7,3.6,7z" + } + }] +}; +exports.menu = menu; \ No newline at end of file diff --git a/dist/entypo/merge.js b/dist/entypo/merge.js new file mode 100644 index 000000000..d7827a891 --- /dev/null +++ b/dist/entypo/merge.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.merge = void 0; +var merge = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M17.8896484,17.7070312L16.8916016,20C13.7548828,18.6341553,11.3964844,16.8476562,10,14.7250977\r\n\tC8.6035156,16.8476562,6.2451172,18.6341553,3.1083984,20l-0.9980469-2.2929688\r\n\tC5.1396484,16.3886719,8.5498047,14.1015625,8.5498047,10V7H5.5L10,0l4.5,7h-3.0498047v3\r\n\tC11.4501953,14.1015625,14.8603516,16.3886719,17.8896484,17.7070312z" + } + }] +}; +exports.merge = merge; \ No newline at end of file diff --git a/dist/entypo/message.js b/dist/entypo/message.js new file mode 100644 index 000000000..b5fdee4d5 --- /dev/null +++ b/dist/entypo/message.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.message = void 0; +var message = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M18,6v7c0,1.1-0.9,2-2,2h-4v3l-4-3H4c-1.101,0-2-0.9-2-2V6c0-1.1,0.899-2,2-2h12C17.1,4,18,4.9,18,6z" + } + }] +}; +exports.message = message; \ No newline at end of file diff --git a/dist/entypo/mic.js b/dist/entypo/mic.js new file mode 100644 index 000000000..47b3f5c4e --- /dev/null +++ b/dist/entypo/mic.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.mic = void 0; +var mic = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M16.399,7.643V10.4c0,2.236-1.643,4.629-5.399,4.959V18h2.6c0.22,0,0.4,0.18,0.4,0.4V19.6c0,0.221-0.181,0.4-0.4,0.4h-7.2\r\n\tC6.18,20,6,19.82,6,19.6V18.4C6,18.18,6.18,18,6.399,18H9v-2.641c-3.758-0.33-5.4-2.723-5.4-4.959V7.643c0-0.221,0.18-0.4,0.4-0.4\r\n\th0.6c0.22,0,0.4,0.18,0.4,0.4V10.4c0,1.336,1.053,3.6,5,3.6c3.946,0,5-2.264,5-3.6V7.643c0-0.221,0.18-0.4,0.399-0.4H16\r\n\tC16.22,7.242,16.399,7.422,16.399,7.643z M10,12c2.346,0,3-0.965,3-1.6V7.242H7V10.4C7,11.035,7.652,12,10,12z M13,1.6\r\n\tC13,0.963,12.346,0,10,0C7.652,0,7,0.963,7,1.6v4.242h6V1.6z" + } + }] +}; +exports.mic = mic; \ No newline at end of file diff --git a/dist/entypo/minus.js b/dist/entypo/minus.js new file mode 100644 index 000000000..4b21de6ce --- /dev/null +++ b/dist/entypo/minus.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.minus = void 0; +var minus = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M16,10c0,0.553-0.048,1-0.601,1H4.601C4.049,11,4,10.553,4,10c0-0.553,0.049-1,0.601-1h10.799C15.952,9,16,9.447,16,10z" + } + }] +}; +exports.minus = minus; \ No newline at end of file diff --git a/dist/entypo/mix.js b/dist/entypo/mix.js new file mode 100644 index 000000000..c87be273a --- /dev/null +++ b/dist/entypo/mix.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.mix = void 0; +var mix = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M5,1.6C5,1.047,4.552,1,4,1C3.447,1,3,1.047,3,1.6V10h2V1.6z M3,18.4C3,18.951,3.447,19,4,19c0.552,0,1-0.049,1-0.6V15H3\r\n\tV18.4z M6.399,11H1.599C1.046,11,1,11.448,1,12v1c0,0.553,0.046,1,0.599,1h4.801C6.95,14,7,13.553,7,13v-1\r\n\tC7,11.448,6.95,11,6.399,11z M18.399,12h-4.801C13.046,12,13,12.448,13,13v1c0,0.553,0.046,1,0.599,1h4.801\r\n\tC18.95,15,19,14.553,19,14v-1C19,12.448,18.95,12,18.399,12z M13,7c0-0.552-0.05-1-0.601-1H7.599C7.046,6,7,6.448,7,7v1\r\n\tc0,0.553,0.046,1,0.599,1h4.801C12.95,9,13,8.553,13,8V7z M11,1.6C11,1.047,10.552,1,10,1C9.447,1,9,1.047,9,1.6V5h2V1.6z M9,18.4\r\n\tc0,0.551,0.447,0.6,1,0.6c0.552,0,1-0.049,1-0.6V10H9V18.4z M17,1.6C17,1.047,16.552,1,16,1c-0.553,0-1,0.047-1,0.6V11h2V1.6z\r\n\t M15,18.4c0,0.551,0.447,0.6,1,0.6c0.552,0,1-0.049,1-0.6V16h-2V18.4z" + } + }] +}; +exports.mix = mix; \ No newline at end of file diff --git a/dist/entypo/mixi.js b/dist/entypo/mixi.js new file mode 100644 index 000000000..9a20bcbf7 --- /dev/null +++ b/dist/entypo/mixi.js @@ -0,0 +1,14 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.mixi = void 0; +var mixi = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "g", + "attribs": {} + }] +}; +exports.mixi = mixi; \ No newline at end of file diff --git a/dist/entypo/mobile.js b/dist/entypo/mobile.js new file mode 100644 index 000000000..a35305123 --- /dev/null +++ b/dist/entypo/mobile.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.mobile = void 0; +var mobile = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M14.004,0H5.996C4.894,0,4,0.894,4,1.996v16.007C4,19.106,4.894,20,5.996,20h8.007C15.106,20,16,19.106,16,18.004V1.996\r\n\tC16,0.894,15.106,0,14.004,0z M10,19c-0.69,0-1.25-0.447-1.25-1s0.56-1,1.25-1s1.25,0.447,1.25,1S10.69,19,10,19z M14,16H6V2h8V16z" + } + }] +}; +exports.mobile = mobile; \ No newline at end of file diff --git a/dist/entypo/mobileCombo.js b/dist/entypo/mobileCombo.js new file mode 100644 index 000000000..ba0585d16 --- /dev/null +++ b/dist/entypo/mobileCombo.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.mobileCombo = void 0; +var mobileCombo = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M17.00354,5H11.99646C10.8938599,5,10,5.8937988,10,6.9963989V18.00354C10,19.1061401,10.8938599,20,11.99646,20H17.00354\r\n\tC18.1061401,20,19,19.1061401,19,18.00354V6.9963989C19,5.8937988,18.1061401,5,17.00354,5z M14.5,19\r\n\tc-0.6904297,0-1.25-0.4473267-1.25-1c0-0.5527344,0.5595703-1,1.25-1c0.6895142,0,1.25,0.4472656,1.25,1\r\n\tC15.75,18.5526733,15.1895142,19,14.5,19z M17,16h-5V7h5V16z M8,16H3V2h12v1h2V2c0-1.1010742-0.8994141-2-2-2H3\r\n\tC1.9003906,0,1,0.8989258,1,2v16c0,1.0996094,0.9003906,2,2,2h5.5551758C8.2114258,19.4101562,8,18.7338867,8,18.003418V16z" + } + }] +}; +exports.mobileCombo = mobileCombo; \ No newline at end of file diff --git a/dist/entypo/moon.js b/dist/entypo/moon.js new file mode 100644 index 000000000..32ced2e17 --- /dev/null +++ b/dist/entypo/moon.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.moon = void 0; +var moon = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M13.719,1.8c0.686,0.385,1.332,0.867,1.916,1.449c3.42,3.422,3.42,8.966,0,12.386c-3.42,3.42-8.965,3.42-12.386,0\r\n\tc-0.583-0.584-1.065-1.231-1.449-1.916c3.335,1.867,7.633,1.387,10.469-1.449C15.106,9.433,15.587,5.136,13.719,1.8z" + } + }] +}; +exports.moon = moon; \ No newline at end of file diff --git a/dist/entypo/mouse.js b/dist/entypo/mouse.js new file mode 100644 index 000000000..a72d87d56 --- /dev/null +++ b/dist/entypo/mouse.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.mouse = void 0; +var mouse = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M15.402,14.402l-2.627-7.535c-0.722-2.073-2.966-3.22-5.092-2.653L5.707,0.379C5.528,0.033,5.109-0.1,4.769,0.083\r\n\tC4.43,0.266,4.3,0.697,4.48,1.044l1.929,3.742C4.872,5.806,4.073,7.74,4.58,9.56l2.139,7.696c0.602,2.162,3.08,3.264,5.571,2.502\r\n\tC14.749,18.895,16.14,16.521,15.402,14.402z M8.899,8.923c-0.73,0.24-1.511-0.172-1.745-0.921C6.919,7.254,7.322,6.454,8.051,6.214\r\n\tc0.73-0.24,1.512,0.172,1.746,0.92S9.629,8.683,8.899,8.923z" + } + }] +}; +exports.mouse = mouse; \ No newline at end of file diff --git a/dist/entypo/music.js b/dist/entypo/music.js new file mode 100644 index 000000000..5c728da5f --- /dev/null +++ b/dist/entypo/music.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.music = void 0; +var music = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.405,2.799C18.293,2.359,17.749,2,17.195,2H2.805c-0.555,0-1.099,0.359-1.21,0.799L1.394,4h17.211L18.405,2.799z\r\n\t M19.412,5H0.587C0.245,5-0.022,5.294,0.01,5.635l0.923,11.669C0.971,17.698,1.303,18,1.699,18H18.3\r\n\tc0.397,0,0.728-0.302,0.766-0.696l0.923-11.669C20.022,5.294,19.754,5,19.412,5z M11.942,12.521c-0.128,0.265-0.258,0.279-0.202,0\r\n\tc0.146-0.721,0.047-2.269-1.043-2.441v3.294c0,0.674-0.311,1.262-1.136,1.528c-0.802,0.256-1.699-0.011-1.908-0.586\r\n\tc-0.21-0.576,0.261-1.276,1.052-1.564c0.442-0.161,0.954-0.203,1.299-0.07V8h0.694C10.697,9.633,13.516,9.275,11.942,12.521z" + } + }] +}; +exports.music = music; \ No newline at end of file diff --git a/dist/entypo/mute.js b/dist/entypo/mute.js new file mode 100644 index 000000000..5aead76ae --- /dev/null +++ b/dist/entypo/mute.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.mute = void 0; +var mute = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M14.201,9.194c1.389,1.883,1.818,3.517,1.559,3.777c-0.26,0.258-1.893-0.17-3.778-1.559l-5.526,5.527\r\n\tc4.186,1.838,9.627-2.018,10.605-2.996c0.925-0.922,0.097-3.309-1.856-5.754L14.201,9.194z M8.667,7.941\r\n\tc-1.099-1.658-1.431-3.023-1.194-3.26c0.233-0.234,1.6,0.096,3.257,1.197l1.023-1.025C9.489,3.179,7.358,2.519,6.496,3.384\r\n\tC5.568,4.31,2.048,9.261,3.265,13.341L8.667,7.941z M18.521,1.478c-0.39-0.391-1.023-0.391-1.414,0L1.478,17.108\r\n\tc-0.391,0.391-0.391,1.024,0,1.414c0.391,0.391,1.023,0.391,1.414,0L18.521,2.892C18.912,2.501,18.912,1.868,18.521,1.478z" + } + }] +}; +exports.mute = mute; \ No newline at end of file diff --git a/dist/entypo/network.js b/dist/entypo/network.js new file mode 100644 index 000000000..c445497b5 --- /dev/null +++ b/dist/entypo/network.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.network = void 0; +var network = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M5.274,6.915c0.2,0,0.394,0.029,0.576,0.086c0.69-0.773,1.455-1.477,2.283-2.1C8.098,4.755,8.079,4.602,8.079,4.446\r\n\tc0-0.217,0.036-0.426,0.102-0.621C7.252,3.161,6.244,2.602,5.17,2.171C4.165,2.792,3.288,3.602,2.588,4.552\r\n\tc0.519,0.92,1.136,1.777,1.838,2.557C4.682,6.985,4.969,6.915,5.274,6.915z M3.316,8.872c0-0.275,0.058-0.537,0.159-0.773\r\n\tC2.847,7.407,2.278,6.663,1.78,5.87C1.155,7.112,0.8,8.515,0.8,10.001c0,1.719,0.474,3.328,1.295,4.705\r\n\tc0.294-1.654,0.851-3.219,1.62-4.652C3.465,9.726,3.316,9.315,3.316,8.872z M10.036,2.489c0.517,0,0.985,0.201,1.336,0.529\r\n\tc1.021-0.439,2.096-0.777,3.215-0.992C13.236,1.247,11.67,0.8,10,0.8c-1.139,0-2.229,0.209-3.236,0.588\r\n\tc0.799,0.395,1.561,0.855,2.277,1.375C9.333,2.589,9.672,2.489,10.036,2.489z M12.962,11.708c0.122-0.254,0.295-0.479,0.509-0.656\r\n\tc-0.578-1.777-1.493-3.404-2.672-4.803c-0.234,0.1-0.492,0.154-0.764,0.154c-0.425,0-0.816-0.137-1.137-0.365\r\n\tc-0.71,0.539-1.367,1.143-1.964,1.803C7.122,8.14,7.231,8.493,7.231,8.872c0,0.203-0.031,0.4-0.09,0.586\r\n\tC8.858,10.604,10.835,11.392,12.962,11.708z M15.501,14.351c0.026,0.371,0.041,0.744,0.041,1.121c0,0.664-0.042,1.318-0.122,1.961\r\n\tc1.56-1.139,2.748-2.758,3.347-4.639c-0.71,0.172-1.438,0.295-2.181,0.365C16.413,13.696,16.014,14.128,15.501,14.351z\r\n\t M12.504,13.024c-2.272-0.377-4.377-1.244-6.21-2.484c-0.298,0.182-0.647,0.289-1.021,0.289c-0.139,0-0.272-0.014-0.402-0.041\r\n\tc-0.877,1.662-1.438,3.517-1.599,5.484c0.876,0.94,1.944,1.697,3.145,2.205C7.909,16.184,9.993,14.288,12.504,13.024z M16.176,3.181\r\n\tc-1.475,0.143-2.883,0.514-4.193,1.068c0.006,0.066,0.01,0.131,0.01,0.197c0,0.309-0.074,0.6-0.201,0.859\r\n\tc1.311,1.539,2.327,3.33,2.969,5.291c0.797,0.016,1.477,0.502,1.77,1.195c0.886-0.09,1.748-0.26,2.578-0.504\r\n\tc0.06-0.42,0.092-0.85,0.092-1.287C19.2,7.296,18.034,4.864,16.176,3.181z M13.489,14.069c-2.344,1.098-4.304,2.789-5.723,4.856\r\n\tC8.481,19.104,9.229,19.2,10,19.2c1.387,0,2.702-0.309,3.882-0.859c0.19-0.928,0.29-1.887,0.29-2.869\r\n\tc0-0.355-0.016-0.707-0.043-1.055C13.893,14.341,13.676,14.224,13.489,14.069z" + } + }] +}; +exports.network = network; \ No newline at end of file diff --git a/dist/entypo/neutral.js b/dist/entypo/neutral.js new file mode 100644 index 000000000..2a6d920c4 --- /dev/null +++ b/dist/entypo/neutral.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.neutral = void 0; +var neutral = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,0.4C4.698,0.4,0.4,4.698,0.4,10C0.4,15.302,4.698,19.6,10,19.6c5.301,0,9.6-4.298,9.6-9.601\r\n\tC19.6,4.698,15.301,0.4,10,0.4z M10,17.599c-4.197,0-7.6-3.402-7.6-7.6c0-4.197,3.402-7.6,7.6-7.6c4.197,0,7.6,3.402,7.6,7.6\r\n\tC17.6,14.197,14.197,17.599,10,17.599z M12.5,6.251C11.672,6.251,11,7.034,11,8s0.672,1.75,1.5,1.75C13.329,9.75,14,8.967,14,8\r\n\tS13.329,6.251,12.5,6.251z M7.501,9.75C8.329,9.75,9,8.967,9,8s-0.672-1.75-1.5-1.75c-0.828,0-1.5,0.783-1.5,1.75\r\n\tS6.672,9.75,7.501,9.75z M13,12.25h-6c-0.414,0-0.75,0.336-0.75,0.75c0,0.414,0.336,0.75,0.75,0.75h6c0.414,0,0.75-0.336,0.75-0.75\r\n\tC13.75,12.585,13.415,12.25,13,12.25z" + } + }] +}; +exports.neutral = neutral; \ No newline at end of file diff --git a/dist/entypo/newIcon.js b/dist/entypo/newIcon.js new file mode 100644 index 000000000..7c36365c6 --- /dev/null +++ b/dist/entypo/newIcon.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.newIcon = void 0; +var newIcon = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.69,12.344l-1.727-1.538c-0.5-0.445-0.5-1.174,0-1.619l1.727-1.539c0.5-0.445,0.367-0.859-0.296-0.924l-2.29-0.217\r\n\tc-0.662-0.062-1.02-0.633-0.791-1.266l1.215-3.383c0.228-0.635-0.051-0.865-0.619-0.514l-2.701,1.67\r\n\tc-0.568,0.354-1.303,0.16-1.631-0.426l-0.978-1.746c-0.329-0.588-0.872-0.59-1.207-0.008l-0.909,1.58\r\n\tC8.146,2.999,7.375,3.247,6.77,2.97l-1.6-0.734C4.562,1.956,4.097,2.278,4.133,2.952l0.086,1.615\r\n\tc0.037,0.674-0.461,1.367-1.104,1.541L1.57,6.522C0.928,6.696,0.81,7.202,1.31,7.647l1.727,1.539c0.5,0.445,0.5,1.174,0,1.619\r\n\tL1.31,12.344c-0.5,0.445-0.368,0.877,0.293,0.957l2.095,0.254c0.661,0.08,1.029,0.67,0.818,1.311l-1.074,3.258\r\n\tc-0.211,0.641,0.09,0.889,0.668,0.555l2.463-1.426c0.578-0.334,1.356-0.15,1.729,0.408l1.022,1.539\r\n\tc0.372,0.559,0.931,0.529,1.24-0.068l0.899-1.733c0.31-0.598,1.052-0.842,1.648-0.543l1.734,0.867\r\n\tc0.598,0.297,1.057-0.01,1.021-0.682l-0.087-1.617c-0.035-0.674,0.461-1.365,1.106-1.539l1.543-0.416\r\n\tC19.072,13.295,19.19,12.789,18.69,12.344z M11,14H9v-2h2V14z M11,11H9V6h2V11z" + } + }] +}; +exports.newIcon = newIcon; \ No newline at end of file diff --git a/dist/entypo/news.js b/dist/entypo/news.js new file mode 100644 index 000000000..957fc076f --- /dev/null +++ b/dist/entypo/news.js @@ -0,0 +1,18 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.news = void 0; +var news = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M14,5h-4v2h4V5z M14,8h-4v1h4V8z M9,5H6v4h3V5z M9,11h5v-1H9V11z M12,13h2v-1h-2\r\n\tV13z M14,14H6v1h8V14z M11,12H6v1h5V12z M8,10H6v1h2V10z M17,1H3C2.447,1,2,1.447,2,2v16c0,0.552,0.447,1,1,1h14\r\n\tc0.553,0,1-0.448,1-1V2C18,1.448,17.553,1,17,1z M16,17H4V3h12V17z" + } + }] +}; +exports.news = news; \ No newline at end of file diff --git a/dist/entypo/newsletter.js b/dist/entypo/newsletter.js new file mode 100644 index 000000000..01cad3c6c --- /dev/null +++ b/dist/entypo/newsletter.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.newsletter = void 0; +var newsletter = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M18,3H2C1.4472656,3,1,3.4472656,1,4v12c0,0.5517578,0.4472656,1,1,1h16c0.5527344,0,1-0.4482422,1-1V4\r\n\tC19,3.4481812,18.5527344,3,18,3z M4,10h6v1H4V10z M12,14H4v-1h8V14z M17,8h-3V5h3V8z" + } + }] +}; +exports.newsletter = newsletter; \ No newline at end of file diff --git a/dist/entypo/next.js b/dist/entypo/next.js new file mode 100644 index 000000000..b7437ca58 --- /dev/null +++ b/dist/entypo/next.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.next = void 0; +var next = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M12.244,9.52L5.041,4.571C4.469,4.188,4,4.469,4,5.196v9.609c0,0.725,0.469,1.006,1.041,0.625l7.203-4.951\r\n\tc0,0,0.279-0.199,0.279-0.478C12.523,9.721,12.244,9.52,12.244,9.52z M14,4h1c0.553,0,1,0.048,1,0.6V15.4c0,0.552-0.447,0.6-1,0.6\r\n\th-1c-0.553,0-1-0.048-1-0.6V4.6C13,4.048,13.447,4,14,4z" + } + }] +}; +exports.next = next; \ No newline at end of file diff --git a/dist/entypo/note.js b/dist/entypo/note.js new file mode 100644 index 000000000..f9709e701 --- /dev/null +++ b/dist/entypo/note.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.note = void 0; +var note = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M17,1l-0.002,13c0,1.243-1.301,3-3.748,3C12.007,17,11,16.347,11,15.125c0-1.589,1.445-2.55,3-2.55\r\n\tc0.432,0,0.754,0.059,1,0.123V5.364L8,6.637L8,16H7.998c0,1.243-1.301,3-3.748,3C3.007,19,2,18.347,2,17.125\r\n\tc0-1.589,1.445-2.55,3-2.55c0.432,0,0.754,0.059,1,0.123V3L17,1z" + } + }] +}; +exports.note = note; \ No newline at end of file diff --git a/dist/entypo/notification.js b/dist/entypo/notification.js new file mode 100644 index 000000000..085cdc7fb --- /dev/null +++ b/dist/entypo/notification.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.notification = void 0; +var notification = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M15,8.38V17H3V5h8.62c-0.073-0.322-0.12-0.655-0.12-1s0.047-0.678,0.12-1H3C1.898,3,1,3.9,1,5v12c0,1.1,0.9,2,2,2h12\r\n\tc1.1,0,2-0.9,2-2V8.38c-0.322,0.073-0.655,0.12-1,0.12S15.322,8.453,15,8.38z M16,1c-1.657,0-3,1.343-3,3s1.343,3,3,3s3-1.343,3-3\r\n\tS17.657,1,16,1z" + } + }] +}; +exports.notification = notification; \ No newline at end of file diff --git a/dist/entypo/off.js b/dist/entypo/off.js new file mode 100644 index 000000000..73b7d2871 --- /dev/null +++ b/dist/entypo/off.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.off = void 0; +var off = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.8,17.4c0.2,0.2,0.2,0.5,0,0.7l-0.7,0.7c-0.2,0.2-0.5,0.2-0.7,0L1.2,2.6C1,2.4,1,2.1,1.2,1.9l0.7-0.7\r\n\tC2.1,1,2.4,1,2.6,1.2L18.8,17.4z M16,7c1.7,0,3-1.3,3-3c0-1.7-1.3-3-3-3s-3,1.3-3,3C13,5.7,14.3,7,16,7z M15,8.4v3.8l2,2V8.4\r\n\tc-0.3,0.1-0.7,0.1-1,0.1S15.3,8.5,15,8.4z M11.6,5c-0.1-0.3-0.1-0.7-0.1-1c0-0.3,0-0.7,0.1-1H5.8l2,2H11.6z M5,15V7.8l-2-2V15\r\n\tc0,1.1,0.9,2,2,2h9.2l-2-2H5z" + } + }] +}; +exports.off = off; \ No newline at end of file diff --git a/dist/entypo/one.js b/dist/entypo/one.js new file mode 100644 index 000000000..662ddd8a7 --- /dev/null +++ b/dist/entypo/one.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.one = void 0; +var one = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M18,5H2C0.9,5,0,5.9,0,7v6c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V7C20,5.9,19.1,5,18,5z M18,13H2V7h16V13z M7,8H3v4h4V8z" + } + }] +}; +exports.one = one; \ No newline at end of file diff --git a/dist/entypo/oneHundredPercent.js b/dist/entypo/oneHundredPercent.js new file mode 100644 index 000000000..040f36e69 --- /dev/null +++ b/dist/entypo/oneHundredPercent.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.oneHundredPercent = void 0; +var oneHundredPercent = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M4.1,14.1L1,17l2,2l2.9-3.1L8,18v-6H2L4.1,14.1z M19,3l-2-2l-2.9,3.1L12,2v6h6l-2.1-2.1L19,3z" + } + }] +}; +exports.oneHundredPercent = oneHundredPercent; \ No newline at end of file diff --git a/dist/entypo/onedrive.js b/dist/entypo/onedrive.js new file mode 100644 index 000000000..d6d5f7f6e --- /dev/null +++ b/dist/entypo/onedrive.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.onedrive = void 0; +var onedrive = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M6.429,9.847c0.487-1.961,2.249-3.394,4.341-3.394c1.236,0,2.394,0.505,3.232,1.382c0.354-0.114,0.768-0.202,1.136-0.21\r\n\tv-0.13c0-2.482-1.845-4.495-4.12-4.495C9.392,3,7.998,4.038,7.328,5.531C6.834,5.197,6.257,4.996,5.634,4.996\r\n\tc-1.785,0-3.231,1.577-3.231,3.523c0,0.21,0.024,0.414,0.057,0.613c-1.377,0.136-2.455,1.544-2.455,3.08\r\n\tc0,0.016,0.004,0.029,0.004,0.045C0.008,12.271,0,12.285,0,12.299c0,0.615,0.214,1.177,0.561,1.631C1.053,14.592,1.823,15,2.701,15\r\n\th1.261c-0.246-0.488-0.398-1.032-0.398-1.615C3.563,11.648,4.794,10.193,6.429,9.847z M17.889,11.777\r\n\tc-0.025,0-0.05,0.007-0.075,0.008c0.007-0.074,0.022-0.146,0.022-0.222c0-1.472-1.193-2.664-2.665-2.664\r\n\tc-0.586,0-1.123,0.194-1.564,0.516c-0.546-1.015-1.604-1.712-2.838-1.712c-1.788,0-3.237,1.449-3.237,3.237\r\n\tc0,0.023,0.006,0.043,0.007,0.066C7.421,10.988,7.303,10.97,7.18,10.97c-1.335,0-2.415,1.081-2.415,2.415\r\n\tc0,0.167,0.017,0.33,0.049,0.487C5.042,15.083,6.102,16,7.38,16h10.706v-0.019C19.158,15.879,20,14.987,20,13.889\r\n\tC20,12.723,19.055,11.777,17.889,11.777z" + } + }] +}; +exports.onedrive = onedrive; \ No newline at end of file diff --git a/dist/entypo/open.js b/dist/entypo/open.js new file mode 100644 index 000000000..e1cd018c6 --- /dev/null +++ b/dist/entypo/open.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.open = void 0; +var open = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M15.8,8H14V5.6C14,2.703,12.665,1,10,1C7.334,1,6,2.703,6,5.6V6h2V5.199C8,3.754,8.797,3,10,3c1.203,0,2,0.754,2,2.199V8H4\r\n\tC3.447,8,3,8.646,3,9.199V17c0,0.549,0.428,1.139,0.951,1.307l1.197,0.387C5.672,18.861,6.55,19,7.1,19H12.9\r\n\tc0.549,0,1.428-0.139,1.951-0.307l1.196-0.387C16.571,18.139,17,17.549,17,17V9.199C17,8.646,16.352,8,15.8,8z" + } + }] +}; +exports.open = open; \ No newline at end of file diff --git a/dist/entypo/out.js b/dist/entypo/out.js new file mode 100644 index 000000000..42f6d741d --- /dev/null +++ b/dist/entypo/out.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.out = void 0; +var out = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M19,10l-6-5v3H6v4h7v3L19,10z M3,3h8V1H3C1.9,1,1,1.9,1,3v14c0,1.1,0.9,2,2,2h8v-2H3V3z" + } + }] +}; +exports.out = out; \ No newline at end of file diff --git a/dist/entypo/outlined.js b/dist/entypo/outlined.js new file mode 100644 index 000000000..7191faaa7 --- /dev/null +++ b/dist/entypo/outlined.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.outlined = void 0; +var outlined = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M17.19,4.156c-1.672-1.535-4.383-1.535-6.055,0L10,5.197L8.864,4.156c-1.672-1.535-4.382-1.535-6.054,0\r\n\tc-1.881,1.726-1.881,4.519,0,6.245L10,17l7.19-6.599C19.07,8.675,19.07,5.881,17.19,4.156z M16.124,9.375L10,15.09L3.875,9.375\r\n\tC3.258,8.808,3.019,8.068,3.019,7.281s0.138-1.433,0.756-1.999C4.32,4.781,5.053,4.505,5.838,4.505c0.784,0,1.517,0.476,2.062,0.978\r\n\tL10,7.308l2.099-1.826c0.546-0.502,1.278-0.978,2.063-0.978s1.518,0.276,2.063,0.777c0.618,0.566,0.755,1.212,0.755,1.999\r\n\tS16.742,8.808,16.124,9.375z" + } + }] +}; +exports.outlined = outlined; \ No newline at end of file diff --git a/dist/entypo/pad.js b/dist/entypo/pad.js new file mode 100644 index 000000000..70076583f --- /dev/null +++ b/dist/entypo/pad.js @@ -0,0 +1,18 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pad = void 0; +var pad = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M6,0H4C3.448,0,3,0.448,3,1v2c0,0.552,0.448,1,1,1h2c0.552,0,1-0.448,1-1V1\r\n\tC7,0.448,6.552,0,6,0z M11,0H9C8.448,0,8,0.448,8,1v2c0,0.552,0.448,1,1,1h2c0.552,0,1-0.448,1-1V1C12,0.448,11.552,0,11,0z M16,0\r\n\th-2c-0.552,0-1,0.448-1,1v2c0,0.552,0.448,1,1,1h2c0.552,0,1-0.448,1-1V1C17,0.448,16.552,0,16,0z M6,5H4C3.448,5,3,5.448,3,6v2\r\n\tc0,0.552,0.448,1,1,1h2c0.552,0,1-0.448,1-1V6C7,5.448,6.552,5,6,5z M11,5H9C8.448,5,8,5.448,8,6v2c0,0.552,0.448,1,1,1h2\r\n\tc0.552,0,1-0.448,1-1V6C12,5.448,11.552,5,11,5z M16,5h-2c-0.552,0-1,0.448-1,1v2c0,0.552,0.448,1,1,1h2c0.552,0,1-0.448,1-1V6\r\n\tC17,5.448,16.552,5,16,5z M6,10H4c-0.552,0-1,0.448-1,1v2c0,0.552,0.448,1,1,1h2c0.552,0,1-0.448,1-1v-2C7,10.448,6.552,10,6,10z\r\n\t M11,10H9c-0.552,0-1,0.448-1,1v2c0,0.552,0.448,1,1,1h2c0.552,0,1-0.448,1-1v-2C12,10.448,11.552,10,11,10z M11,16H9\r\n\tc-0.552,0-1,0.448-1,1v2c0,0.552,0.448,1,1,1h2c0.552,0,1-0.448,1-1v-2C12,16.448,11.552,16,11,16z M16,10h-2c-0.552,0-1,0.448-1,1\r\n\tv2c0,0.552,0.448,1,1,1h2c0.552,0,1-0.448,1-1v-2C17,10.448,16.552,10,16,10z" + } + }] +}; +exports.pad = pad; \ No newline at end of file diff --git a/dist/entypo/palette.js b/dist/entypo/palette.js new file mode 100644 index 000000000..fac92e3d3 --- /dev/null +++ b/dist/entypo/palette.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.palette = void 0; +var palette = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M15.74,2.608C12.212,1.422,8.674,1.647,5.02,3.882c-2.853,1.743-4.718,6.076-4.103,9.182\r\n\tc0.728,3.671,4.351,5.995,9.243,4.651c5.275-1.449,6.549-4.546,6.379-5.334c-0.17-0.788-2.665-1.652-1.718-3.498\r\n\tc1.188-2.313,3.129-1.149,3.982-1.622C19.658,6.789,19.342,3.819,15.74,2.608z M12.094,13.314c-0.798,0.218-1.623-0.256-1.843-1.059\r\n\tc-0.221-0.805,0.248-1.631,1.046-1.849c0.798-0.218,1.622,0.254,1.843,1.059C13.36,12.268,12.892,13.096,12.094,13.314z" + } + }] +}; +exports.palette = palette; \ No newline at end of file diff --git a/dist/entypo/parallel.js b/dist/entypo/parallel.js new file mode 100644 index 000000000..452ffd64c --- /dev/null +++ b/dist/entypo/parallel.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.parallel = void 0; +var parallel = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M8.4,4c0-1.326-1.074-2.4-2.4-2.4S3.6,2.674,3.6,4c0,0.967,0.576,1.796,1.4,2.176v7.649C4.175,14.204,3.6,15.033,3.6,16\r\n\tc0,1.326,1.074,2.4,2.4,2.4s2.4-1.075,2.4-2.4c0-0.967-0.576-1.796-1.4-2.176V6.176C7.825,5.796,8.4,4.967,8.4,4z M7.384,16\r\n\tc0,0.764-0.62,1.385-1.384,1.385c-0.766,0-1.385-0.621-1.385-1.385c0-0.766,0.619-1.385,1.385-1.385\r\n\tC6.764,14.615,7.384,15.234,7.384,16z M6,5.385C5.235,5.385,4.616,4.764,4.616,4c0-0.766,0.619-1.385,1.385-1.385\r\n\tc0.764,0,1.384,0.619,1.384,1.385C7.384,4.764,6.764,5.385,6,5.385z M15,13.824V6.176c0.825-0.38,1.4-1.208,1.4-2.176\r\n\tc0-1.326-1.074-2.4-2.4-2.4S11.6,2.674,11.6,4c0,0.967,0.576,1.796,1.4,2.176v7.649c-0.825,0.38-1.4,1.208-1.4,2.176\r\n\tc0,1.326,1.074,2.4,2.4,2.4s2.4-1.075,2.4-2.4C16.4,15.033,15.825,14.204,15,13.824z M12.616,4c0-0.766,0.619-1.385,1.385-1.385\r\n\tc0.764,0,1.384,0.619,1.384,1.385c0,0.764-0.62,1.385-1.384,1.385C13.235,5.385,12.616,4.764,12.616,4z M14,17.385\r\n\tc-0.766,0-1.385-0.621-1.385-1.385c0-0.766,0.619-1.385,1.385-1.385c0.764,0,1.384,0.619,1.384,1.385\r\n\tC15.384,16.764,14.764,17.385,14,17.385z" + } + }] +}; +exports.parallel = parallel; \ No newline at end of file diff --git a/dist/entypo/paus.js b/dist/entypo/paus.js new file mode 100644 index 000000000..e29651d40 --- /dev/null +++ b/dist/entypo/paus.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.paus = void 0; +var paus = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M15,3h-2c-0.553,0-1,0.048-1,0.6V16.4c0,0.552,0.447,0.6,1,0.6h2c0.553,0,1-0.048,1-0.6V3.6C16,3.048,15.553,3,15,3z M7,3H5\r\n\tC4.447,3,4,3.048,4,3.6V16.4C4,16.952,4.447,17,5,17h2c0.553,0,1-0.048,1-0.6V3.6C8,3.048,7.553,3,7,3z" + } + }] +}; +exports.paus = paus; \ No newline at end of file diff --git a/dist/entypo/paypal.js b/dist/entypo/paypal.js new file mode 100644 index 000000000..965f3c80d --- /dev/null +++ b/dist/entypo/paypal.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.paypal = void 0; +var paypal = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M7.914,10.677h1.659c3.604,0,5.649-1.623,6.3-4.96c0.021-0.11,0.04-0.216,0.056-0.322c0.036-0.226,0.054-0.429,0.062-0.624\r\n\tC15.997,4.637,16.001,4.558,16,4.484c-0.008-0.391-0.077-0.722-0.216-1.039c-0.129-0.296-0.324-0.587-0.613-0.918\r\n\tC14.318,1.557,12.832,1,11.057,1H5.404C5.006,1,4.667,1.29,4.605,1.683l-1.02,6.571l-1.269,8.185C2.27,16.734,2.498,17,2.796,17\r\n\tl2.772,0l0.849-5.043C6.534,11.217,7.164,10.677,7.914,10.677z M17.017,6.09c-0.792,3.771-3.357,5.772-7.445,5.772H7.914\r\n\tc-0.164,0-0.302,0.118-0.328,0.282L6.481,19h2.907c0.348,0,0.645-0.253,0.699-0.597l0.029-0.15l0.555-3.514l0.036-0.194\r\n\tc0.054-0.344,0.351-0.597,0.699-0.597h0.44c2.85,0,5.081-1.158,5.733-4.506C17.847,8.062,17.711,6.908,17.017,6.09z" + } + }] +}; +exports.paypal = paypal; \ No newline at end of file diff --git a/dist/entypo/pencil.js b/dist/entypo/pencil.js new file mode 100644 index 000000000..10e5c63fa --- /dev/null +++ b/dist/entypo/pencil.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pencil = void 0; +var pencil = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M14.69,2.661c-1.894-1.379-3.242-1.349-3.754-1.266c-0.144,0.023-0.265,0.106-0.35,0.223l-4.62,6.374l-2.263,3.123\r\n\tc-0.277,0.382-0.437,0.836-0.462,1.307l-0.296,5.624c-0.021,0.405,0.382,0.698,0.76,0.553l5.256-2.01\r\n\tc0.443-0.17,0.828-0.465,1.106-0.849l1.844-2.545l5.036-6.949c0.089-0.123,0.125-0.273,0.1-0.423\r\n\tC16.963,5.297,16.56,4.021,14.69,2.661z M8.977,15.465l-2.043,0.789c-0.08,0.031-0.169,0.006-0.221-0.062\r\n\tc-0.263-0.335-0.576-0.667-1.075-1.03c-0.499-0.362-0.911-0.558-1.31-0.706c-0.08-0.03-0.131-0.106-0.126-0.192l0.122-2.186\r\n\tl0.549-0.755c0,0,1.229-0.169,2.833,0.998c1.602,1.166,1.821,2.388,1.821,2.388L8.977,15.465z" + } + }] +}; +exports.pencil = pencil; \ No newline at end of file diff --git a/dist/entypo/phone.js b/dist/entypo/phone.js new file mode 100644 index 000000000..923abd122 --- /dev/null +++ b/dist/entypo/phone.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.phone = void 0; +var phone = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M17.256,12.253c-0.096-0.667-0.611-1.187-1.274-1.342c-2.577-0.604-3.223-2.088-3.332-3.734C12.193,7.092,11.38,7,10,7\r\n\tS7.807,7.092,7.35,7.177c-0.109,1.646-0.755,3.13-3.332,3.734c-0.663,0.156-1.178,0.675-1.274,1.342l-0.497,3.442\r\n\tC2.072,16.907,2.962,18,4.2,18h11.6c1.237,0,2.128-1.093,1.953-2.305L17.256,12.253z M10,15.492c-1.395,0-2.526-1.12-2.526-2.5\r\n\ts1.131-2.5,2.526-2.5s2.526,1.12,2.526,2.5S11.394,15.492,10,15.492z M19.95,6C19.926,4.5,16.108,2.001,10,2\r\n\tC3.891,2.001,0.073,4.5,0.05,6s0.021,3.452,2.535,3.127c2.941-0.381,2.76-1.408,2.76-2.876C5.345,5.227,7.737,4.98,10,4.98\r\n\ts4.654,0.247,4.655,1.271c0,1.468-0.181,2.495,2.76,2.876C19.928,9.452,19.973,7.5,19.95,6z" + } + }] +}; +exports.phone = phone; \ No newline at end of file diff --git a/dist/entypo/picasa.js b/dist/entypo/picasa.js new file mode 100644 index 000000000..2b576add0 --- /dev/null +++ b/dist/entypo/picasa.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.picasa = void 0; +var picasa = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M5.808,1.823C2.719,3.411,0.8,6.544,0.8,10.021c0,0.633,0.08,1.275,0.221,1.918L8.97,4.7\r\n\tC8.122,3.929,5.894,1.901,5.808,1.823z M13.793,1.626C12.593,1.081,11.317,0.8,9.999,0.8c-0.934,0-1.855,0.156-2.749,0.441\r\n\tl6.543,5.951V1.626z M15.192,2.438v10.617h3.485c0.343-0.982,0.522-2.004,0.522-3.035C19.2,6.987,17.677,4.148,15.192,2.438z\r\n\t M1.463,13.429c0.674,1.693,1.857,3.15,3.368,4.184v-7.25l-2.045,1.861C2.088,12.858,1.506,13.39,1.463,13.429z M6.23,18.425\r\n\tc0.935,0.422,1.913,0.682,2.92,0.775h1.689c3.019-0.281,5.727-2.068,7.199-4.744H6.23V18.425z" + } + }] +}; +exports.picasa = picasa; \ No newline at end of file diff --git a/dist/entypo/pin.js b/dist/entypo/pin.js new file mode 100644 index 000000000..765d5e583 --- /dev/null +++ b/dist/entypo/pin.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pin = void 0; +var pin = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,2.009c-2.762,0-5,2.229-5,4.99c0,4.774,5,11,5,11s5-6.227,5-11C15,4.239,12.762,2.009,10,2.009z M10,9.76\r\n\tc-1.492,0-2.7-1.209-2.7-2.7s1.208-2.7,2.7-2.7c1.49,0,2.699,1.209,2.699,2.7S11.49,9.76,10,9.76z" + } + }] +}; +exports.pin = pin; \ No newline at end of file diff --git a/dist/entypo/pinterest.js b/dist/entypo/pinterest.js new file mode 100644 index 000000000..710b03f0c --- /dev/null +++ b/dist/entypo/pinterest.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pinterest = void 0; +var pinterest = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M8.617,13.227C8.091,15.981,7.45,18.621,5.549,20C4.963,15.838,6.41,12.713,7.083,9.395\r\n\tc-1.147-1.93,0.138-5.812,2.555-4.855c2.975,1.176-2.576,7.172,1.15,7.922c3.891,0.781,5.479-6.75,3.066-9.199\r\n\tC10.369-0.275,3.708,3.18,4.528,8.245c0.199,1.238,1.478,1.613,0.511,3.322c-2.231-0.494-2.897-2.254-2.811-4.6\r\n\tc0.138-3.84,3.449-6.527,6.771-6.9c4.201-0.471,8.144,1.543,8.689,5.494c0.613,4.461-1.896,9.293-6.389,8.945\r\n\tC10.081,14.411,9.571,13.807,8.617,13.227z" + } + }] +}; +exports.pinterest = pinterest; \ No newline at end of file diff --git a/dist/entypo/plane.js b/dist/entypo/plane.js new file mode 100644 index 000000000..29ea2318e --- /dev/null +++ b/dist/entypo/plane.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.plane = void 0; +var plane = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.64,2.634C18.296,2.755,1.319,8.738,0.984,8.856c-0.284,0.1-0.347,0.345-0.01,0.479c0.401,0.161,3.796,1.521,3.796,1.521\r\n\tl0,0l2.25,0.901c0,0,10.838-7.958,10.984-8.066c0.148-0.108,0.318,0.095,0.211,0.211c-0.107,0.117-7.871,8.513-7.871,8.513v0.002\r\n\tL9.892,12.92l0.599,0.322l0,0c0,0,4.65,2.504,4.982,2.682c0.291,0.156,0.668,0.027,0.752-0.334\r\n\tc0.099-0.426,2.845-12.261,2.906-12.525C19.21,2.722,18.983,2.513,18.64,2.634z M7,17.162c0,0.246,0.139,0.315,0.331,0.141\r\n\tc0.251-0.229,2.85-2.561,2.85-2.561L7,13.098V17.162z" + } + }] +}; +exports.plane = plane; \ No newline at end of file diff --git a/dist/entypo/play.js b/dist/entypo/play.js new file mode 100644 index 000000000..4feb7a114 --- /dev/null +++ b/dist/entypo/play.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.play = void 0; +var play = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M15,10.001c0,0.299-0.305,0.514-0.305,0.514l-8.561,5.303C5.51,16.227,5,15.924,5,15.149V4.852\r\n\tc0-0.777,0.51-1.078,1.135-0.67l8.561,5.305C14.695,9.487,15,9.702,15,10.001z" + } + }] +}; +exports.play = play; \ No newline at end of file diff --git a/dist/entypo/plug.js b/dist/entypo/plug.js new file mode 100644 index 000000000..25f61e212 --- /dev/null +++ b/dist/entypo/plug.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.plug = void 0; +var plug = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M0,14v1.498C0,15.775,0.225,16,0.502,16h0.997C1.775,16,2,15.775,2,15.498V14c0-0.959,0.801-2.273,2-2.779V9.116\r\n\tC1.684,9.652,0,11.97,0,14z M12.065,4.701L9.535,6.599C9.188,6.859,8.766,7,8.332,7H6.005C5.45,7,5,7.45,5,8.005v3.991\r\n\tC5,12.55,5.45,13,6.005,13h2.327c0.434,0,0.856,0.141,1.203,0.401l2.531,1.898C12.672,15.754,13.41,16,14.168,16H16V4h-1.832\r\n\tC13.41,4,12.672,4.246,12.065,4.701z M17,6v2h3V6H17z M17,14h3v-2h-3V14z" + } + }] +}; +exports.plug = plug; \ No newline at end of file diff --git a/dist/entypo/plus.js b/dist/entypo/plus.js new file mode 100644 index 000000000..930e9931e --- /dev/null +++ b/dist/entypo/plus.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.plus = void 0; +var plus = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M16,10c0,0.553-0.048,1-0.601,1H11v4.399C11,15.951,10.553,16,10,16c-0.553,0-1-0.049-1-0.601V11H4.601\r\n\tC4.049,11,4,10.553,4,10c0-0.553,0.049-1,0.601-1H9V4.601C9,4.048,9.447,4,10,4c0.553,0,1,0.048,1,0.601V9h4.399\r\n\tC15.952,9,16,9.447,16,10z" + } + }] +}; +exports.plus = plus; \ No newline at end of file diff --git a/dist/entypo/pointer.js b/dist/entypo/pointer.js new file mode 100644 index 000000000..28be5a9ad --- /dev/null +++ b/dist/entypo/pointer.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pointer = void 0; +var pointer = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10.8601685,11.9953299l2.5251465,6.0802317L11.1703491,19l-2.5252075-6.050354L5,16.6248779V1.1005249\r\n\tl10.9461327,10.8882742L10.8601685,11.9953299z" + } + }] +}; +exports.pointer = pointer; \ No newline at end of file diff --git a/dist/entypo/popup.js b/dist/entypo/popup.js new file mode 100644 index 000000000..8c0347381 --- /dev/null +++ b/dist/entypo/popup.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.popup = void 0; +var popup = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M16,2H7.979C6.88,2,6,2.88,6,3.98V12c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V4C18,2.9,17.1,2,16,2z M16,12H8V4h8V12z M4,10H2v6\r\n\tc0,1.1,0.9,2,2,2h6v-2H4V10z" + } + }] +}; +exports.popup = popup; \ No newline at end of file diff --git a/dist/entypo/print.js b/dist/entypo/print.js new file mode 100644 index 000000000..5c625846a --- /dev/null +++ b/dist/entypo/print.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.print = void 0; +var print = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M1.501,6h17c0.57,0,0.477-0.608,0.193-0.707C18.409,5.194,15.251,4,14.7,4H14V1H6v3H5.301c-0.55,0-3.709,1.194-3.993,1.293\r\n\tC1.024,5.392,0.931,6,1.501,6z M19,7H1C0.45,7,0,7.45,0,8v5c0,0.551,0.45,1,1,1h2.283l-0.882,5h15.199l-0.883-5H19\r\n\tc0.551,0,1-0.449,1-1V8C20,7.45,19.551,7,19,7z M4.603,17l1.198-7.003H14.2L15.399,17H4.603z" + } + }] +}; +exports.print = print; \ No newline at end of file diff --git a/dist/entypo/publish.js b/dist/entypo/publish.js new file mode 100644 index 000000000..9ef35092c --- /dev/null +++ b/dist/entypo/publish.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.publish = void 0; +var publish = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M9.967,8.193L5,13h3v6h4v-6h3L9.967,8.193z M18,1H2C0.9,1,0,1.9,0,3v12c0,1.1,0.9,2,2,2h4v-2H2V6h16v9h-4v2h4\r\n\tc1.1,0,2-0.9,2-2V3C20,1.9,19.1,1,18,1z M2.5,4.25c-0.414,0-0.75-0.336-0.75-0.75c0-0.414,0.336-0.75,0.75-0.75\r\n\tc0.414,0,0.75,0.336,0.75,0.75C3.25,3.914,2.914,4.25,2.5,4.25z M4.5,4.25c-0.414,0-0.75-0.336-0.75-0.75\r\n\tc0-0.414,0.336-0.75,0.75-0.75c0.414,0,0.75,0.336,0.75,0.75C5.25,3.914,4.914,4.25,4.5,4.25z M18,4H6V3h12.019L18,4z" + } + }] +}; +exports.publish = publish; \ No newline at end of file diff --git a/dist/entypo/qq.js b/dist/entypo/qq.js new file mode 100644 index 000000000..ef6105802 --- /dev/null +++ b/dist/entypo/qq.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.qq = void 0; +var qq = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M17.005,13.018c-0.779-0.547-1.751-0.51-2.304,0.277c-0.553,0.785-4.418,5.633-10.751,3.619\r\n\tc0.239,0.209,0.49,0.406,0.755,0.592c4.153,2.926,9.892,1.928,12.816-2.225C18.076,14.494,17.784,13.567,17.005,13.018z\r\n\t M4.785,12.401C4.381,11.53,2.116,5.758,7.025,1.28c-0.3,0.104-0.597,0.221-0.89,0.357C1.526,3.772-0.481,9.24,1.654,13.85\r\n\tc0.403,0.871,1.353,1.084,2.218,0.684C4.736,14.133,5.188,13.272,4.785,12.401z M10.826,0.823c-0.956-0.086-1.614,0.629-1.7,1.578\r\n\tC9.041,3.35,9.561,4.172,10.517,4.258c0.956,0.086,7.087,1.01,8.51,7.502c0.062-0.311,0.106-0.627,0.136-0.949\r\n\tC19.618,5.75,15.886,1.278,10.826,0.823z M6.891,10.53c-0.264,0.619-0.306,1.213-0.094,1.322c0.146,0.076,0.374-0.098,0.588-0.416\r\n\tC7.47,11.783,7.68,12.098,7.98,12.35c-0.314,0.115-0.52,0.305-0.52,0.519c0,0.354,0.556,0.639,1.241,0.639\r\n\tc0.618,0,1.13-0.232,1.225-0.537c0.025,0,0.123,0,0.147,0c0.095,0.305,0.607,0.537,1.226,0.537c0.686,0,1.241-0.285,1.241-0.639\r\n\tc0-0.215-0.205-0.404-0.52-0.519c0.299-0.252,0.51-0.566,0.594-0.914c0.214,0.318,0.442,0.492,0.589,0.416\r\n\tc0.211-0.109,0.17-0.703-0.095-1.322c-0.207-0.488-0.488-0.848-0.702-0.926C12.41,9.573,12.41,9.541,12.41,9.51\r\n\tc0-0.19-0.052-0.363-0.142-0.504c0.002-0.012,0.002-0.023,0.002-0.033c0-0.088-0.021-0.168-0.056-0.238\r\n\tC12.16,7.467,11.335,6.461,10,6.461c-1.336,0-2.161,1.006-2.215,2.273c-0.035,0.07-0.057,0.15-0.057,0.238\r\n\tc0,0.01,0.001,0.021,0.002,0.033C7.642,9.147,7.589,9.321,7.589,9.51c0,0.031,0.001,0.062,0.004,0.094\r\n\tC7.38,9.682,7.098,10.041,6.891,10.53z" + } + }] +}; +exports.qq = qq; \ No newline at end of file diff --git a/dist/entypo/quote.js b/dist/entypo/quote.js new file mode 100644 index 000000000..394956d98 --- /dev/null +++ b/dist/entypo/quote.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.quote = void 0; +var quote = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M5.315,3.401c-1.61,0-2.916,1.343-2.916,3c0,1.656,1.306,3,2.916,3c2.915,0,0.972,5.799-2.916,5.799v1.4\r\n\tC9.338,16.601,12.057,3.401,5.315,3.401z M13.715,3.401c-1.609,0-2.915,1.343-2.915,3c0,1.656,1.306,3,2.915,3\r\n\tc2.916,0,0.973,5.799-2.915,5.799v1.4C17.738,16.601,20.457,3.401,13.715,3.401z" + } + }] +}; +exports.quote = quote; \ No newline at end of file diff --git a/dist/entypo/radio.js b/dist/entypo/radio.js new file mode 100644 index 000000000..87739e786 --- /dev/null +++ b/dist/entypo/radio.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.radio = void 0; +var radio = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M17,8H5.021l8.974-5.265L13,1L1.736,7.571C1.28,7.837,1,8.324,1,8.852V17c0,1.105,0.895,2,2,2h14c1.105,0,2-0.895,2-2v-7\r\n\tC19,8.895,18.105,8,17,8z M15.5,17c-0.828,0-1.5-0.672-1.5-1.5c0-0.828,0.672-1.5,1.5-1.5s1.5,0.672,1.5,1.5\r\n\tC17,16.328,16.328,17,15.5,17z M17,12H3v-2h14V12z" + } + }] +}; +exports.radio = radio; \ No newline at end of file diff --git a/dist/entypo/raft.js b/dist/entypo/raft.js new file mode 100644 index 000000000..c2c92faef --- /dev/null +++ b/dist/entypo/raft.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.raft = void 0; +var raft = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M5.6734395,19c-0.877316,0-1.6501045-0.3605442-2.1763153-1.0143661\r\n\tc-0.6450326-0.8027058-0.8514075-1.9354591-0.5816016-3.1901903l0.0580709-0.2699594l1.9735143,0.4313974l-0.0580707,0.269063\r\n\tc-0.13937,0.6448536-0.083086,1.1650429,0.1581311,1.4654961c0.148304,0.1838589,0.3591456,0.2780323,0.6262712,0.2780323\r\n\tc0.7754688,0,1.5446839-1.2412777,2.125392-3.4179964c-0.6360989-0.2161474-1.2203803-0.5354357-1.7403374-0.9524832\r\n\tl-0.213522-0.1713028l1.2579031-1.5892649l0.2153087,0.1722002c0.2742729,0.2206316,0.580708,0.4009037,0.9139452,0.5372286\r\n\tc0.1688519-0.968626,0.3037548-2.0323219,0.4029226-3.168664L8.659173,8.1047468l2.0110369,0.1775808l-0.0241213,0.2744446\r\n\tc-0.1018476,1.1695271-0.240324,2.2673035-0.4109631,3.2682171c1.3874464-0.1399126,2.6516027-0.9273701,3.3547068-2.1112471\r\n\tc1.152482-1.9408398,0.694169-4.3704782-1.0890512-5.7776766c-0.7620678-0.601804-1.8814945-0.9433796-2.9267693-0.8913608\r\n\tc-1.3043594,0.0547094-2.4041319,0.642029-3.2680469,1.765815C5.2660508,6.1621122,5.1561627,8.1881561,6.0450931,9.6267452\r\n\tl0.1447301,0.2340851L4.4745007,10.934391l-0.1447301-0.2349815c-1.338309-2.1677494-1.182858-5.1014323,0.3796935-7.1328573\r\n\tc1.2266345-1.59644,2.8794193-2.4716568,4.7805681-2.5514789c1.5518312-0.0609876,3.1134892,0.4205006,4.2570381,1.3218613\r\n\tc2.5944252,2.0466716,3.2573261,5.5875397,1.5768461,8.4180813c-0.7397337,1.2457609-1.8823881,2.1955528-3.2430325,2.7067728\r\n\tc0.2519379,0.3838625,0.4663534,0.8430634,0.712038,1.5139265l0.1581316,0.4394693\r\n\tc0.4967279,1.3874674,0.7236509,1.5112371,1.2453957,1.5112371c0.2358561,0,0.4940481-0.1004505,0.6566467-0.256506\r\n\tc0.3126888-0.2995567,0.4047089-0.8753519,0.2742729-1.7121372l-0.0428829-0.2726507l1.9949551-0.3148041l0.0428829,0.2726507\r\n\tc0.235857,1.513031-0.0678978,2.7229156-0.8773155,3.4987144c-0.5422916,0.5183945-1.2891722,0.8152599-2.0485592,0.8152599\r\n\tc-0.9309206,0-1.684948-0.3479881-2.239747-1.0332012c-0.3850546-0.4735508-0.5985765-0.9641418-0.9050112-1.8179684\r\n\tl-0.152771-0.4260159c-0.3546791-0.9677296-0.6682615-1.4565268-1.1203203-1.7067556\r\n\tc-0.1375828,0.5264664-0.2894602,1.0188513-0.453846,1.4681864C8.4599457,17.8026695,7.2315245,19,5.6734395,19z" + } + }] +}; +exports.raft = raft; \ No newline at end of file diff --git a/dist/entypo/rainbow.js b/dist/entypo/rainbow.js new file mode 100644 index 000000000..e7013ffc9 --- /dev/null +++ b/dist/entypo/rainbow.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.rainbow = void 0; +var rainbow = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,5C4.4771729,5,0,9.4771118,0,15h1.5c0-4.694458,3.8056641-8.5,8.5-8.5s8.5,3.805542,8.5,8.5H20\r\n\tC20,9.4771118,15.5228271,5,10,5z M10,11c-2.2092285,0-4,1.7908325-4,4h1.5c0-1.3807373,1.1192627-2.5,2.5-2.5\r\n\ts2.5,1.1192627,2.5,2.5H14C14,12.7908325,12.2092285,11,10,11z M10,8c-3.8659668,0-7,3.1339722-7,7h1.5\r\n\tc0-3.0375977,2.4624023-5.5,5.5-5.5s5.5,2.4624023,5.5,5.5H17C17,11.1339722,13.8659668,8,10,8z" + } + }] +}; +exports.rainbow = rainbow; \ No newline at end of file diff --git a/dist/entypo/rdio.js b/dist/entypo/rdio.js new file mode 100644 index 000000000..6a1221150 --- /dev/null +++ b/dist/entypo/rdio.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.rdio = void 0; +var rdio = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M16.203,10.001c0,4.307-3.448,7.799-7.701,7.799S0.8,14.308,0.8,10.001C0.8,5.692,4.248,2.2,8.501,2.2\r\n\tc0.611,0,1.204,0.076,1.774,0.213v4.441c-0.902-0.33-2.01-0.281-3.053,0.223c-1.885,0.91-2.841,2.957-2.135,4.57\r\n\tc0.705,1.615,2.807,2.188,4.691,1.277c1.299-0.627,2.443-2.137,2.443-4.029V3.171c0.162,0.09,0.32,0.188,0.475,0.289\r\n\tc1.464,0.92,3.638,2.152,6.178,2.281c0.99,0.049-0.389,2.541-2.738,3.236C16.18,9.311,16.203,9.653,16.203,10.001z" + } + }] +}; +exports.rdio = rdio; \ No newline at end of file diff --git a/dist/entypo/record.js b/dist/entypo/record.js new file mode 100644 index 000000000..d1c3d9ee5 --- /dev/null +++ b/dist/entypo/record.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.record = void 0; +var record = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,3c-3.866,0-7,3.133-7,7c0,3.865,3.134,7,7,7s7-3.135,7-7C17,6.133,13.866,3,10,3z" + } + }] +}; +exports.record = record; \ No newline at end of file diff --git a/dist/entypo/renren.js b/dist/entypo/renren.js new file mode 100644 index 000000000..f21fe75a9 --- /dev/null +++ b/dist/entypo/renren.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.renren = void 0; +var renren = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M8.468,0.865C4.117,1.594,0.8,5.377,0.8,9.936c0,2.266,0.82,4.338,2.179,5.941c3.221-1.559,5.472-5.086,5.489-9.191V0.865z\r\n\t M10.002,12.258c-0.573,2.373-2.285,4.4-4.418,5.748C6.894,18.725,8.4,19.135,10,19.135c1.602,0,3.108-0.41,4.418-1.129\r\n\tC12.285,16.658,10.574,14.631,10.002,12.258z M11.535,6.643c0,4.123,2.256,7.668,5.487,9.234c1.358-1.603,2.178-3.676,2.178-5.941\r\n\tc0-4.559-3.315-8.34-7.665-9.07V6.643z" + } + }] +}; +exports.renren = renren; \ No newline at end of file diff --git a/dist/entypo/reply.js b/dist/entypo/reply.js new file mode 100644 index 000000000..9db55efd2 --- /dev/null +++ b/dist/entypo/reply.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.reply = void 0; +var reply = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M19,16.685c0,0-2.225-9.732-11-9.732V2.969L1,9.542l7,6.69v-4.357C12.763,11.874,16.516,12.296,19,16.685z" + } + }] +}; +exports.reply = reply; \ No newline at end of file diff --git a/dist/entypo/retweet.js b/dist/entypo/retweet.js new file mode 100644 index 000000000..3477bd07d --- /dev/null +++ b/dist/entypo/retweet.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.retweet = void 0; +var retweet = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M5,13V8h2L3.5,4L0,8h2v6c0,1.104,0.895,2,2,2h9.482l-2.638-3H5z M9.156,7L6.518,4H16c1.104,0,2,0.897,2,2v6h2l-3.5,4L13,12\r\n\th2V7H9.156z" + } + }] +}; +exports.retweet = retweet; \ No newline at end of file diff --git a/dist/entypo/ribbon.js b/dist/entypo/ribbon.js new file mode 100644 index 000000000..8f1402485 --- /dev/null +++ b/dist/entypo/ribbon.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ribbon = void 0; +var ribbon = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M16.574,16.338c-0.757-1.051-2.851-3.824-4.57-6.106c0.696-0.999,1.251-1.815,1.505-2.242\r\n\tc1.545-2.594,0.874-4.26,0.022-5.67C12.677,0.909,12.542,0.094,10,0.094c-2.543,0-2.678,0.815-3.531,2.227\r\n\tC5.615,3.731,4.945,5.397,6.49,7.991c0.254,0.426,0.809,1.243,1.506,2.242c-1.72,2.281-3.814,5.055-4.571,6.106\r\n\tc-0.176,0.244-0.16,0.664,0.009,1.082c0.13,0.322,0.63,1.762,0.752,2.064c0.156,0.389,0.664,0.67,1.082,0.092\r\n\tc0.241-0.334,2.582-3.525,4.732-6.522c2.149,2.996,4.491,6.188,4.732,6.522c0.417,0.578,0.926,0.297,1.082-0.092\r\n\tc0.122-0.303,0.622-1.742,0.752-2.064C16.733,17.002,16.75,16.582,16.574,16.338z M9.634,7.063C8.566,5.579,7.802,3.852,7.802,3.852\r\n\tS8.222,3.094,10,3.094c1.778,0,2.198,0.758,2.198,0.758s-0.766,1.727-1.833,3.211C10.277,7.184,10.147,7.36,10,7.56\r\n\tC9.851,7.36,9.721,7.184,9.634,7.063z" + } + }] +}; +exports.ribbon = ribbon; \ No newline at end of file diff --git a/dist/entypo/right.js b/dist/entypo/right.js new file mode 100644 index 000000000..a8fab577e --- /dev/null +++ b/dist/entypo/right.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.right = void 0; +var right = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M11,7v2H3v2h8v2l3-3L11,7z M15,2.6V17.4c0,0.551,0.448,0.6,1,0.6c0.553,0,1-0.049,1-0.6V2.6C17,2.047,16.553,2,16,2\r\n\tC15.448,2,15,2.047,15,2.6z" + } + }] +}; +exports.right = right; \ No newline at end of file diff --git a/dist/entypo/rocket.js b/dist/entypo/rocket.js new file mode 100644 index 000000000..0ef6650d4 --- /dev/null +++ b/dist/entypo/rocket.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.rocket = void 0; +var rocket = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M11.933,13.069c0,0,7.059-5.094,6.276-10.924c-0.017-0.127-0.059-0.213-0.112-0.268c-0.054-0.055-0.137-0.098-0.263-0.115\r\n\tC12.137,0.961,7.16,8.184,7.16,8.184C2.842,7.667,3.156,8.528,1.186,13.26c-0.377,0.902,0.234,1.213,0.904,0.959\r\n\tc0.67-0.252,2.148-0.811,2.148-0.811l2.59,2.648c0,0-0.546,1.514-0.793,2.199c-0.248,0.686,0.055,1.311,0.938,0.926\r\n\tC11.597,17.165,12.439,17.487,11.933,13.069z M12.942,7.153c-0.598-0.613-0.598-1.604,0-2.217c0.598-0.611,1.567-0.611,2.166,0\r\n\tc0.598,0.611,0.598,1.603,0,2.217C14.509,7.764,13.539,7.764,12.942,7.153z" + } + }] +}; +exports.rocket = rocket; \ No newline at end of file diff --git a/dist/entypo/rss.js b/dist/entypo/rss.js new file mode 100644 index 000000000..dca755648 --- /dev/null +++ b/dist/entypo/rss.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.rss = void 0; +var rss = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M2.4,2.4v2.367c7.086,0,12.83,5.746,12.83,12.832h2.369C17.599,9.205,10.794,2.4,2.4,2.4z M2.4,7.137v2.369\r\n\tc4.469,0,8.093,3.623,8.093,8.094h2.368C12.861,11.822,8.177,7.137,2.4,7.137z M4.669,13.059c-1.254,0-2.27,1.018-2.27,2.271\r\n\ts1.016,2.27,2.27,2.27s2.269-1.016,2.269-2.27S5.923,13.059,4.669,13.059z" + } + }] +}; +exports.rss = rss; \ No newline at end of file diff --git a/dist/entypo/ruler.js b/dist/entypo/ruler.js new file mode 100644 index 000000000..051dcf2c9 --- /dev/null +++ b/dist/entypo/ruler.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ruler = void 0; +var ruler = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M14.249,0.438L0.438,14.251c-0.584,0.584-0.584,1.538,0.002,2.124l3.185,3.187c0.584,0.584,1.541,0.586,2.124,0.002\r\n\tL19.562,5.751c0.584-0.585,0.584-1.541,0-2.125l-3.186-3.188C15.789-0.148,14.834-0.145,14.249,0.438z M3.929,15.312L3.17,16.071\r\n\tl-1.896-1.897l0.759-0.759L3.929,15.312z M6.965,15.312l-0.759,0.759l-3.415-3.415l0.759-0.76L6.965,15.312z M6.965,12.276\r\n\tl-0.759,0.759l-1.898-1.896l0.76-0.76L6.965,12.276z M8.483,10.758l-0.759,0.759L5.828,9.621l0.759-0.76L8.483,10.758z\r\n\t M11.518,10.758l-0.759,0.759L7.345,8.103l0.759-0.759L11.518,10.758z M11.518,7.723l-0.759,0.759L8.863,6.586l0.759-0.759\r\n\tL11.518,7.723z M13.036,6.206l-0.759,0.759L10.38,5.068l0.759-0.759L13.036,6.206z M16.072,6.206l-0.76,0.759L11.898,3.55\r\n\tl0.759-0.76L16.072,6.206z M16.071,3.171l-0.759,0.759l-1.896-1.898l0.759-0.758L16.071,3.171z" + } + }] +}; +exports.ruler = ruler; \ No newline at end of file diff --git a/dist/entypo/sad.js b/dist/entypo/sad.js new file mode 100644 index 000000000..5ceb4ba73 --- /dev/null +++ b/dist/entypo/sad.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.sad = void 0; +var sad = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10.001,0.4C4.698,0.4,0.4,4.698,0.4,10c0,5.303,4.298,9.601,9.601,9.601c5.301,0,9.6-4.298,9.6-9.601\r\n\tC19.6,4.698,15.301,0.4,10.001,0.4z M10,17.599c-4.197,0-7.6-3.402-7.6-7.6c0-4.197,3.402-7.6,7.6-7.6c4.197,0,7.6,3.402,7.6,7.6\r\n\tC17.6,14.197,14.197,17.599,10,17.599z M12.501,9.75c0.828,0,1.5-0.783,1.5-1.75s-0.672-1.75-1.5-1.75c-0.828,0-1.5,0.783-1.5,1.75\r\n\tS11.672,9.75,12.501,9.75z M7.501,9.75c0.828,0,1.5-0.783,1.5-1.75s-0.672-1.75-1.5-1.75c-0.828,0-1.5,0.783-1.5,1.75\r\n\tS6.672,9.75,7.501,9.75z M10.002,11.25c-3.424,0-4.622,2.315-4.672,2.414c-0.186,0.371-0.035,0.821,0.335,1.007\r\n\tC5.773,14.724,5.887,14.75,6,14.75c0.275,0,0.54-0.151,0.672-0.414c0.008-0.017,0.822-1.586,3.33-1.586\r\n\tc2.463,0,3.298,1.527,3.328,1.585c0.184,0.37,0.635,0.523,1.006,0.336c0.371-0.184,0.521-0.636,0.336-1.006\r\n\tC14.623,13.566,13.426,11.25,10.002,11.25z" + } + }] +}; +exports.sad = sad; \ No newline at end of file diff --git a/dist/entypo/save.js b/dist/entypo/save.js new file mode 100644 index 000000000..769c1f727 --- /dev/null +++ b/dist/entypo/save.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.save = void 0; +var save = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M15.173,2H4C2.899,2,2,2.9,2,4v12c0,1.1,0.899,2,2,2h12c1.101,0,2-0.9,2-2V5.127L15.173,2z M14,8c0,0.549-0.45,1-1,1H7\r\n\tC6.45,9,6,8.549,6,8V3h8V8z M13,4h-2v4h2V4z" + } + }] +}; +exports.save = save; \ No newline at end of file diff --git a/dist/entypo/scissors.js b/dist/entypo/scissors.js new file mode 100644 index 000000000..10be19947 --- /dev/null +++ b/dist/entypo/scissors.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.scissors = void 0; +var scissors = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M8.38,5.59c0-2.038-1.652-3.69-3.69-3.69S1,3.552,1,5.59c0,2.038,1.652,3.69,3.69,3.69c0.96,0,1.826-0.376,2.483-0.976\r\n\tL9,9.991L9.012,10l-0.004,0.003l-1.836,1.693C6.516,11.096,5.65,10.72,4.69,10.72C2.652,10.72,1,12.372,1,14.41\r\n\tc0,2.038,1.652,3.69,3.69,3.69s3.69-1.652,3.69-3.69c0-0.297-0.044-0.582-0.111-0.858l2.844-1.991l4.127,3.065\r\n\tc2.212,1.549,3.76-0.663,3.76-0.663L8.269,6.448C8.335,6.172,8.38,5.887,8.38,5.59z M4.69,7.39c-0.994,0-1.8-0.806-1.8-1.8\r\n\ts0.806-1.8,1.8-1.8s1.8,0.806,1.8,1.8S5.684,7.39,4.69,7.39z M4.69,16.21c-0.994,0-1.8-0.806-1.8-1.8s0.806-1.8,1.8-1.8\r\n\ts1.8,0.806,1.8,1.8S5.684,16.21,4.69,16.21z M19,6.038c0,0-1.548-2.212-3.76-0.663L12.035,7.61l2.354,1.648L19,6.038z" + } + }] +}; +exports.scissors = scissors; \ No newline at end of file diff --git a/dist/entypo/scribd.js b/dist/entypo/scribd.js new file mode 100644 index 000000000..e721df05f --- /dev/null +++ b/dist/entypo/scribd.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.scribd = void 0; +var scribd = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M4.643,18.284c0,0.224-0.072,0.492-0.148,0.716h5.737c0.328-0.377,0.513-0.831,0.513-1.342c0-1.385-1.644-2.154-5.241-3.842\r\n\tL4.998,13.58C3.225,12.737,1.912,11.995,1,11.111v4.398c0.176-0.024,0.359-0.042,0.558-0.042\r\n\tC4.559,15.468,4.643,18.256,4.643,18.284z M17,1h-3.738c1.748,1.178,2.467,2.842,2.467,4.142c0,2.194-1.836,2.905-2.727,2.905\r\n\tl-0.271,0.002c-2.046,0-3.09-1.247-3.104-3.707C9.506,4.246,8.939,3.889,7.28,3.889c-1.96,0-2.773,1.543-2.773,2.369\r\n\tc0,0.973,0.543,2.055,4.484,3.382c6.736,2.254,6.736,5.255,6.736,7.903v0.026c0,0.437-0.031,0.924-0.117,1.431H17c1.1,0,2-0.899,2-2\r\n\tV3C19,1.9,18.1,1,17,1z" + } + }] +}; +exports.scribd = scribd; \ No newline at end of file diff --git a/dist/entypo/share.js b/dist/entypo/share.js new file mode 100644 index 000000000..41aa44138 --- /dev/null +++ b/dist/entypo/share.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.share = void 0; +var share = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M15,13.442c-0.633,0-1.204,0.246-1.637,0.642l-5.938-3.463C7.471,10.433,7.5,10.237,7.5,10.037S7.471,9.642,7.425,9.454\r\n\tL13.3,6.025C13.746,6.442,14.342,6.7,15,6.7c1.379,0,2.5-1.121,2.5-2.5S16.379,1.7,15,1.7s-2.5,1.121-2.5,2.5\r\n\tc0,0.2,0.029,0.396,0.075,0.583L6.7,8.212C6.254,7.796,5.658,7.537,5,7.537c-1.379,0-2.5,1.121-2.5,2.5s1.121,2.5,2.5,2.5\r\n\tc0.658,0,1.254-0.258,1.7-0.675l5.938,3.463c-0.042,0.175-0.067,0.358-0.067,0.546c0,1.342,1.087,2.429,2.429,2.429\r\n\ts2.429-1.088,2.429-2.429S16.342,13.442,15,13.442z" + } + }] +}; +exports.share = share; \ No newline at end of file diff --git a/dist/entypo/shareable.js b/dist/entypo/shareable.js new file mode 100644 index 000000000..7132c1208 --- /dev/null +++ b/dist/entypo/shareable.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.shareable = void 0; +var shareable = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M6.8,10c0,1.768,1.433,3.201,3.2,3.201c1.768,0,3.199-1.433,3.199-3.201c0-1.767-1.431-3.2-3.199-3.2S6.8,8.233,6.8,10z\r\n\t M4.529,8.8C5.078,6.284,7.318,4.4,10,4.4c1.546,0,2.945,0.627,3.959,1.64c0.469,0.469,1.229,0.469,1.697,0\r\n\tc0.469-0.469,0.469-1.229,0-1.697C14.209,2.896,12.209,2,10,2C6.418,2,3.386,4.354,2.367,7.601H0V10h3.199\r\n\tC4.198,10,4.444,9.187,4.529,8.8z M16.8,10c-0.999,0-1.245,0.814-1.329,1.199c-0.549,2.516-2.789,4.4-5.471,4.4\r\n\tc-1.547,0-2.946-0.627-3.959-1.641c-0.469-0.469-1.229-0.469-1.698,0c-0.468,0.469-0.468,1.229,0,1.697C5.791,17.104,7.791,18,10,18\r\n\tc3.582,0,6.613-2.356,7.633-5.6H20V10H16.8z" + } + }] +}; +exports.shareable = shareable; \ No newline at end of file diff --git a/dist/entypo/shield.js b/dist/entypo/shield.js new file mode 100644 index 000000000..8859fd01b --- /dev/null +++ b/dist/entypo/shield.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.shield = void 0; +var shield = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M17.604,3.332C12.99,4,12.075,2.833,10,1C7.925,2.833,7.01,4,2.396,3.332C-0.063,15.58,10,19,10,19\r\n\tS20.063,15.58,17.604,3.332z M12.473,13.309L10,12.009l-2.472,1.3L8,10.556L6,8.606l2.764-0.401L10,5.7l1.236,2.505L14,8.606\r\n\tl-2,1.949L12.473,13.309z" + } + }] +}; +exports.shield = shield; \ No newline at end of file diff --git a/dist/entypo/shop.js b/dist/entypo/shop.js new file mode 100644 index 000000000..b726c6d41 --- /dev/null +++ b/dist/entypo/shop.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.shop = void 0; +var shop = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M6.123,7.25L6.914,2H2.8L1.081,6.5C1.028,6.66,1,6.826,1,7c0,1.104,1.15,2,2.571,2C4.881,9,5.964,8.236,6.123,7.25z M10,9\r\n\tc1.42,0,2.571-0.896,2.571-2c0-0.041-0.003-0.082-0.005-0.121L12.057,2H7.943l-0.51,4.875C7.431,6.916,7.429,6.957,7.429,7\r\n\tC7.429,8.104,8.58,9,10,9z M15,10.046V14H5v-3.948C4.562,10.21,4.08,10.3,3.571,10.3c-0.195,0-0.384-0.023-0.571-0.049V16.6\r\n\tc0,0.77,0.629,1.4,1.398,1.4H15.6c0.77,0,1.4-0.631,1.4-1.4v-6.348c-0.188,0.025-0.376,0.049-0.571,0.049\r\n\tC15.923,10.3,15.439,10.208,15,10.046z M18.92,6.5L17.199,2h-4.113l0.79,5.242C14.03,8.232,15.113,9,16.429,9\r\n\tC17.849,9,19,8.104,19,7C19,6.826,18.972,6.66,18.92,6.5z" + } + }] +}; +exports.shop = shop; \ No newline at end of file diff --git a/dist/entypo/shuffle.js b/dist/entypo/shuffle.js new file mode 100644 index 000000000..a9a4bda68 --- /dev/null +++ b/dist/entypo/shuffle.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.shuffle = void 0; +var shuffle = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M15.093,6.694h0.92v2.862L20,5.532l-3.988-4.025v2.387h-0.92c-3.694,0-5.776,2.738-7.614,5.152\r\n\tc-1.652,2.172-3.08,4.049-5.386,4.049H0v2.799h2.093c3.694,0,5.776-2.736,7.614-5.152C11.359,8.569,12.787,6.694,15.093,6.694z\r\n\t M5.41,8.458c0.158-0.203,0.316-0.412,0.477-0.623C6.277,7.321,6.691,6.78,7.139,6.239C5.817,5.005,4.224,4.095,2.093,4.095H0v2.799\r\n\th2.093C3.42,6.894,4.455,7.517,5.41,8.458z M16.012,13.294h-0.92c-1.407,0-2.487-0.701-3.491-1.738\r\n\tc-0.1,0.131-0.201,0.264-0.303,0.397c-0.441,0.58-0.915,1.201-1.439,1.818c1.356,1.324,3,2.324,5.232,2.324h0.92v2.398L20,14.468\r\n\tl-3.988-4.025V13.294z" + } + }] +}; +exports.shuffle = shuffle; \ No newline at end of file diff --git a/dist/entypo/signal.js b/dist/entypo/signal.js new file mode 100644 index 000000000..7049bee51 --- /dev/null +++ b/dist/entypo/signal.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.signal = void 0; +var signal = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,14c-1.094,0-1.981,0.894-1.981,2c0,1.104,0.887,2,1.981,2c1.094,0,1.98-0.896,1.98-2C11.98,14.895,11.094,14,10,14z\r\n\t M5.8,11.758l1.4,1.414c1.546-1.562,4.054-1.562,5.601,0l1.399-1.414C11.881,9.415,8.119,9.415,5.8,11.758z M3,8.928l1.4,1.414\r\n\tc3.092-3.123,8.106-3.123,11.199,0L17,8.928C13.135,5.024,6.865,5.024,3,8.928z M0.199,6.1l1.4,1.414\r\n\tc4.639-4.686,12.161-4.686,16.801,0L19.8,6.1C14.388,0.633,5.612,0.633,0.199,6.1z" + } + }] +}; +exports.signal = signal; \ No newline at end of file diff --git a/dist/entypo/single.js b/dist/entypo/single.js new file mode 100644 index 000000000..3e5ecbafc --- /dev/null +++ b/dist/entypo/single.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.single = void 0; +var single = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M7.8,10c0,1.215,0.986,2.2,2.201,2.2S12.2,11.214,12.2,10c0-1.215-0.984-2.199-2.199-2.199S7.8,8.785,7.8,10z" + } + }] +}; +exports.single = single; \ No newline at end of file diff --git a/dist/entypo/skype.js b/dist/entypo/skype.js new file mode 100644 index 000000000..b20ad1ef4 --- /dev/null +++ b/dist/entypo/skype.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.skype = void 0; +var skype = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.671,12.037c0.132-0.623,0.203-1.272,0.203-1.938c0-4.986-3.93-9.029-8.777-9.029c-0.511,0-1.012,0.047-1.5,0.133\r\n\tC7.812,0.695,6.885,0.4,5.89,0.4C3.079,0.4,0.8,2.744,0.8,5.637c0,0.965,0.256,1.871,0.699,2.648\r\n\tC1.383,8.871,1.321,9.479,1.321,10.1c0,4.986,3.93,9.029,8.775,9.029c0.551,0,1.087-0.051,1.607-0.15\r\n\tc0.717,0.396,1.535,0.621,2.406,0.621c2.811,0,5.09-2.344,5.09-5.236C19.2,13.527,19.009,12.738,18.671,12.037z M14.599,14.416\r\n\tc-0.406,0.59-1.006,1.059-1.783,1.391c-0.769,0.33-1.692,0.496-2.742,0.496c-1.26,0-2.317-0.227-3.143-0.678\r\n\tc-0.59-0.328-1.076-0.771-1.445-1.318c-0.372-0.555-0.561-1.104-0.561-1.633c0-0.33,0.123-0.617,0.365-0.852\r\n\tc0.24-0.232,0.549-0.352,0.916-0.352c0.301,0,0.562,0.094,0.773,0.277c0.202,0.176,0.375,0.438,0.514,0.773\r\n\tc0.156,0.367,0.326,0.676,0.505,0.92c0.172,0.234,0.42,0.432,0.735,0.586c0.318,0.154,0.748,0.232,1.275,0.232\r\n\tc0.725,0,1.32-0.158,1.768-0.473c0.438-0.309,0.65-0.676,0.65-1.127c0-0.357-0.111-0.637-0.34-0.857\r\n\tc-0.238-0.228-0.555-0.408-0.936-0.531c-0.399-0.127-0.941-0.266-1.611-0.41c-0.91-0.201-1.683-0.439-2.299-0.707\r\n\tc-0.63-0.275-1.137-0.658-1.508-1.137C5.357,8.533,5.165,7.924,5.165,7.209c0-0.682,0.2-1.297,0.596-1.828\r\n\tc0.393-0.525,0.965-0.935,1.703-1.217C8.192,3.887,9.06,3.746,10.04,3.746c0.783,0,1.473,0.094,2.047,0.277\r\n\tc0.578,0.186,1.066,0.436,1.449,0.744c0.387,0.311,0.674,0.643,0.854,0.986c0.182,0.35,0.275,0.695,0.275,1.031\r\n\tc0,0.322-0.121,0.615-0.361,0.871c-0.24,0.258-0.543,0.387-0.9,0.387c-0.324,0-0.58-0.082-0.756-0.242\r\n\tc-0.164-0.148-0.336-0.383-0.524-0.717c-0.219-0.428-0.484-0.766-0.788-1.002c-0.295-0.232-0.788-0.35-1.466-0.35\r\n\tc-0.629,0-1.141,0.131-1.519,0.387C7.983,6.367,7.806,6.65,7.806,6.984c0,0.207,0.058,0.379,0.176,0.525\r\n\tc0.125,0.158,0.301,0.295,0.523,0.41C8.735,8.039,8.972,8.133,9.21,8.201c0.244,0.07,0.654,0.172,1.215,0.307\r\n\tc0.711,0.156,1.363,0.332,1.939,0.521c0.585,0.193,1.09,0.43,1.502,0.705c0.42,0.283,0.754,0.645,0.989,1.076\r\n\tc0.237,0.434,0.357,0.969,0.357,1.59C15.213,13.145,15.006,13.822,14.599,14.416z" + } + }] +}; +exports.skype = skype; \ No newline at end of file diff --git a/dist/entypo/slideshare.js b/dist/entypo/slideshare.js new file mode 100644 index 000000000..d096f6f16 --- /dev/null +++ b/dist/entypo/slideshare.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.slideshare = void 0; +var slideshare = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M13,7.08c1.381,0,2.5-1.119,2.5-2.5s-1.119-2.5-2.5-2.5s-2.5,1.119-2.5,2.5S11.62,7.08,13,7.08z M18.845,5.943\r\n\tC15.265,8.498,13.616,8.051,12,8c-1.118-0.057-1.5,0.298-1.5,1.08l0.001,6c0,5,8.421,3.43,5.165-4.949\r\n\tc1.671-0.959,3.076-2.434,3.876-3.412C19.953,6.111,19.514,5.474,18.845,5.943z M7,2.08c-1.381,0-2.5,1.119-2.5,2.5\r\n\ts1.119,2.5,2.5,2.5s2.5-1.119,2.5-2.5S8.38,2.08,7,2.08z M8,8C6.384,8.051,4.735,8.498,1.155,5.943\r\n\tC0.486,5.474,0.047,6.111,0.458,6.718c0.8,0.979,2.205,2.453,3.876,3.412c-3.256,8.379,5.165,9.949,5.165,4.949l0.001-6\r\n\tC9.5,8.298,9.118,7.943,8,8z" + } + }] +}; +exports.slideshare = slideshare; \ No newline at end of file diff --git a/dist/entypo/slot.js b/dist/entypo/slot.js new file mode 100644 index 000000000..d344b8941 --- /dev/null +++ b/dist/entypo/slot.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.slot = void 0; +var slot = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,0.4C4.698,0.4,0.4,4.698,0.4,10C0.4,15.302,4.698,19.6,10,19.6c5.301,0,9.6-4.298,9.6-9.601\r\n\tC19.6,4.698,15.301,0.4,10,0.4z M10,17.599c-4.197,0-7.6-3.402-7.6-7.6c0-4.197,3.402-7.6,7.6-7.6h0V10l6.792-3.396\r\n\tC17.305,7.627,17.6,8.777,17.6,10C17.6,14.197,14.197,17.599,10,17.599z" + } + }] +}; +exports.slot = slot; \ No newline at end of file diff --git a/dist/entypo/smallDown.js b/dist/entypo/smallDown.js new file mode 100644 index 000000000..69d42f449 --- /dev/null +++ b/dist/entypo/smallDown.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.smallDown = void 0; +var smallDown = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M13.418,7.859c0.271-0.268,0.709-0.268,0.978,0c0.27,0.268,0.272,0.701,0,0.969l-3.908,3.83\r\n\tc-0.27,0.268-0.707,0.268-0.979,0l-3.908-3.83c-0.27-0.267-0.27-0.701,0-0.969c0.271-0.268,0.709-0.268,0.978,0L10,11L13.418,7.859z\r\n\t" + } + }] +}; +exports.smallDown = smallDown; \ No newline at end of file diff --git a/dist/entypo/smallLeft.js b/dist/entypo/smallLeft.js new file mode 100644 index 000000000..05b9b26ce --- /dev/null +++ b/dist/entypo/smallLeft.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.smallLeft = void 0; +var smallLeft = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M12.141,13.418c0.268,0.271,0.268,0.709,0,0.978c-0.268,0.27-0.701,0.272-0.969,0l-3.83-3.908\r\n\tc-0.268-0.27-0.268-0.707,0-0.979l3.83-3.908c0.267-0.27,0.701-0.27,0.969,0c0.268,0.271,0.268,0.709,0,0.978L9,10L12.141,13.418z" + } + }] +}; +exports.smallLeft = smallLeft; \ No newline at end of file diff --git a/dist/entypo/smallRight.js b/dist/entypo/smallRight.js new file mode 100644 index 000000000..a42ef28fd --- /dev/null +++ b/dist/entypo/smallRight.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.smallRight = void 0; +var smallRight = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M11,10L7.859,6.58c-0.268-0.27-0.268-0.707,0-0.978c0.268-0.27,0.701-0.27,0.969,0l3.83,3.908\r\n\tc0.268,0.271,0.268,0.709,0,0.979l-3.83,3.908c-0.267,0.272-0.701,0.27-0.969,0c-0.268-0.269-0.268-0.707,0-0.978L11,10z" + } + }] +}; +exports.smallRight = smallRight; \ No newline at end of file diff --git a/dist/entypo/smallUp.js b/dist/entypo/smallUp.js new file mode 100644 index 000000000..d65feb264 --- /dev/null +++ b/dist/entypo/smallUp.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.smallUp = void 0; +var smallUp = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M6.582,12.141c-0.271,0.268-0.709,0.268-0.978,0c-0.269-0.268-0.272-0.701,0-0.969l3.908-3.83\r\n\tc0.27-0.268,0.707-0.268,0.979,0l3.908,3.83c0.27,0.267,0.27,0.701,0,0.969c-0.271,0.268-0.709,0.268-0.979,0L10,9L6.582,12.141z" + } + }] +}; +exports.smallUp = smallUp; \ No newline at end of file diff --git a/dist/entypo/smashing.js b/dist/entypo/smashing.js new file mode 100644 index 000000000..b4e866781 --- /dev/null +++ b/dist/entypo/smashing.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.smashing = void 0; +var smashing = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10.023,16.032c-2.508,0-4.253-1.555-4.253-1.555L4.287,17.84c1.023,0.547,2.092,0.936,2.709,1.141l-1.592,0.381\r\n\tc-0.746,0.178-1.496-0.283-1.675-1.029L0.639,5.405C0.46,4.659,0.92,3.909,1.667,3.729L5.383,2.84\r\n\tc-0.91,1.029-1.263,2.252-1.174,3.65c0.139,2.193,2.237,3.879,4.734,4.822C13.644,13.088,12.529,16.032,10.023,16.032z\r\n\t M19.361,14.594L16.27,1.666c-0.178-0.746-0.928-1.207-1.675-1.027l-2.663,0.637c0.679,0.105,2.024,0.4,3.505,1.178l-1.159,3.213\r\n\tc0,0-0.965-1.078-3.553-1.209c-2.46-0.125-3.828,2.537,0.969,4.105c3.674,1.201,4.848,3.516,4.787,5.658\r\n\tc-0.031,1.113-0.421,2.018-0.872,2.701l2.725-0.652C19.08,16.092,19.54,15.342,19.361,14.594z" + } + }] +}; +exports.smashing = smashing; \ No newline at end of file diff --git a/dist/entypo/sound.js b/dist/entypo/sound.js new file mode 100644 index 000000000..d57cf26e6 --- /dev/null +++ b/dist/entypo/sound.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.sound = void 0; +var sound = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M5.312,4.566C4.19,5.685-0.715,12.681,3.523,16.918c4.236,4.238,11.23-0.668,12.354-1.789\r\n\tc1.121-1.119-0.335-4.395-3.252-7.312C9.706,4.898,6.434,3.441,5.312,4.566z M14.576,14.156c-0.332,0.328-2.895-0.457-5.364-2.928\r\n\tC6.745,8.759,5.956,6.195,6.288,5.865c0.328-0.332,2.894,0.457,5.36,2.926C14.119,11.258,14.906,13.824,14.576,14.156z\r\n\t M15.434,5.982l1.904-1.906c0.391-0.391,0.391-1.023,0-1.414c-0.39-0.391-1.023-0.391-1.414,0l-1.904,1.906\r\n\tc-0.391,0.391-0.391,1.024,0,1.414C14.41,6.372,15.043,6.372,15.434,5.982z M11.124,3.8c0.483,0.268,1.091,0.095,1.36-0.388\r\n\tl1.087-1.926c0.268-0.483,0.095-1.091-0.388-1.36c-0.482-0.269-1.091-0.095-1.36,0.388l-1.087,1.926\r\n\tC10.468,2.924,10.642,3.533,11.124,3.8z M19.872,6.816c-0.267-0.483-0.877-0.657-1.36-0.388l-1.94,1.061\r\n\tc-0.483,0.268-0.657,0.878-0.388,1.36c0.268,0.483,0.877,0.657,1.36,0.388l1.94-1.061C19.967,7.907,20.141,7.299,19.872,6.816z" + } + }] +}; +exports.sound = sound; \ No newline at end of file diff --git a/dist/entypo/soundcloud.js b/dist/entypo/soundcloud.js new file mode 100644 index 000000000..c49ddcb9e --- /dev/null +++ b/dist/entypo/soundcloud.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.soundcloud = void 0; +var soundcloud = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M0.672,13.055L1,11.654l-0.328-1.447c-0.009-0.043-0.092-0.076-0.191-0.076c-0.102,0-0.184,0.033-0.191,0.076L0,11.654\r\n\tl0.289,1.4c0.008,0.045,0.09,0.076,0.191,0.076C0.58,13.131,0.663,13.1,0.672,13.055z M2.723,13.832L3,11.668L2.723,8.32\r\n\tC2.714,8.236,2.609,8.168,2.484,8.168c-0.127,0-0.233,0.068-0.238,0.152L2,11.668l0.246,2.164c0.006,0.086,0.111,0.152,0.238,0.152\r\n\tC2.609,13.984,2.714,13.918,2.723,13.832z M4.768,13.797L5,11.67L4.768,7.213C4.762,7.107,4.639,7.025,4.486,7.025\r\n\tc-0.152,0-0.275,0.082-0.281,0.188L4,11.67l0.205,2.129c0.006,0.103,0.129,0.186,0.281,0.186\r\n\tC4.639,13.984,4.762,13.902,4.768,13.797z M6.81,13.766L7,11.67L6.81,7.18C6.805,7.057,6.664,6.959,6.49,6.959\r\n\tc-0.176,0-0.316,0.098-0.321,0.221L6,11.67l0.17,2.096c0.004,0.123,0.145,0.221,0.32,0.221C6.664,13.986,6.805,13.891,6.81,13.766z\r\n\t M8.85,13.738L9,11.672L8.85,6.523C8.846,6.381,8.686,6.268,8.492,6.268c-0.194,0-0.354,0.115-0.357,0.256L8,11.67l0.135,2.068\r\n\tc0.003,0.141,0.163,0.256,0.357,0.256C8.686,13.994,8.846,13.881,8.85,13.738z M10.277,13.996c0.008,0,7.1,0.004,7.145,0.004\r\n\tC18.846,14,20,12.883,20,11.506c0-1.377-1.154-2.492-2.578-2.492c-0.353,0-0.689,0.07-0.996,0.193\r\n\tc-0.205-2.246-2.153-4.008-4.529-4.008c-0.581,0-1.148,0.111-1.648,0.297C10.053,5.57,10.002,5.644,10,5.791v7.91\r\n\tC10.002,13.854,10.124,13.98,10.277,13.996z" + } + }] +}; +exports.soundcloud = soundcloud; \ No newline at end of file diff --git a/dist/entypo/spotify.js b/dist/entypo/spotify.js new file mode 100644 index 000000000..a931eb5e2 --- /dev/null +++ b/dist/entypo/spotify.js @@ -0,0 +1,14 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.spotify = void 0; +var spotify = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "g", + "attribs": {} + }] +}; +exports.spotify = spotify; \ No newline at end of file diff --git a/dist/entypo/spreadsheet.js b/dist/entypo/spreadsheet.js new file mode 100644 index 000000000..e8d5e720f --- /dev/null +++ b/dist/entypo/spreadsheet.js @@ -0,0 +1,18 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.spreadsheet = void 0; +var spreadsheet = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M16,1H4C3.447,1,3,1.447,3,2v16c0,0.552,0.447,1,1,1h12c0.553,0,1-0.448,1-1V2\r\n\tC17,1.448,16.553,1,16,1z M15,8H9v9H8V8H5V7h3V3h1v4h6V8z" + } + }] +}; +exports.spreadsheet = spreadsheet; \ No newline at end of file diff --git a/dist/entypo/star.js b/dist/entypo/star.js new file mode 100644 index 000000000..f81a36005 --- /dev/null +++ b/dist/entypo/star.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.star = void 0; +var star = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,1.3l2.388,6.722H18.8l-5.232,3.948l1.871,6.928L10,14.744l-5.438,4.154l1.87-6.928L1.199,8.022h6.412L10,1.3z" + } + }] +}; +exports.star = star; \ No newline at end of file diff --git a/dist/entypo/stop.js b/dist/entypo/stop.js new file mode 100644 index 000000000..460b23b31 --- /dev/null +++ b/dist/entypo/stop.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.stop = void 0; +var stop = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M16,4.995v9.808C16,15.464,15.464,16,14.804,16H4.997C4.446,16,4,15.554,4,15.003V5.196C4,4.536,4.536,4,5.196,4h9.808\r\n\tC15.554,4,16,4.446,16,4.995z" + } + }] +}; +exports.stop = stop; \ No newline at end of file diff --git a/dist/entypo/stopwatch.js b/dist/entypo/stopwatch.js new file mode 100644 index 000000000..a30a56708 --- /dev/null +++ b/dist/entypo/stopwatch.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.stopwatch = void 0; +var stopwatch = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M7.376,6.745c-0.447,0.275,1.197,4.242,1.598,4.888c0.35,0.569,1.093,0.742,1.658,0.394c0.568-0.352,0.745-1.094,0.395-1.66\r\n\tC10.63,9.719,7.822,6.469,7.376,6.745z M7.041,2.402C7.969,2.079,8.963,1.9,10,1.9s2.031,0.179,2.959,0.502\r\n\tc0.329,0.114,0.765-0.115,0.572-0.611c-0.141-0.36-0.277-0.712-0.332-0.855c-0.131-0.339-0.6-0.619-0.804-0.665\r\n\tC11.623,0.097,10.823,0,10,0S8.377,0.097,7.604,0.271C7.4,0.317,6.932,0.597,6.801,0.936C6.746,1.079,6.609,1.431,6.469,1.791\r\n\tC6.276,2.287,6.712,2.517,7.041,2.402z M19.098,3.186c-0.192-0.23-0.396-0.455-0.613-0.672c-0.216-0.217-0.441-0.42-0.67-0.613\r\n\tc-0.153-0.129-0.603-0.234-0.888,0.051c-0.284,0.285-1.648,1.647-1.648,1.647c0.402,0.288,0.793,0.605,1.155,0.966\r\n\tc0.362,0.361,0.677,0.752,0.966,1.155c0,0,1.363-1.362,1.647-1.647C19.333,3.787,19.228,3.338,19.098,3.186z M10,2.9\r\n\tc-4.475,0-8.101,3.626-8.101,8.1c0,4.475,3.626,8.101,8.101,8.101c4.473,0,8.1-3.626,8.1-8.101C18.1,6.527,14.473,2.9,10,2.9z\r\n\t M10,17.101c-3.368,0-6.1-2.731-6.1-6.1c0-3.369,2.731-6.1,6.1-6.1c3.369,0,6.101,2.731,6.101,6.1\r\n\tC16.101,14.369,13.369,17.101,10,17.101z" + } + }] +}; +exports.stopwatch = stopwatch; \ No newline at end of file diff --git a/dist/entypo/store.js b/dist/entypo/store.js new file mode 100644 index 000000000..af49df16a --- /dev/null +++ b/dist/entypo/store.js @@ -0,0 +1,18 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.store = void 0; +var store = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M17.5640259,13.8623047\r\n\tc-0.4133301,0.9155273-0.6115723,1.3251343-1.1437988,2.1346436c-0.7424927,1.1303711-1.7894897,2.5380249-3.086853,2.5500488\r\n\tc-1.1524048,0.0109253-1.4483032-0.749939-3.0129395-0.741333c-1.5640259,0.008606-1.8909302,0.755127-3.0438843,0.7442017\r\n\tc-1.296814-0.0120239-2.2891235-1.2833252-3.0321655-2.4136963c-2.0770874-3.1607666-2.2941895-6.8709106-1.0131836-8.8428955\r\n\tc0.9106445-1.4013062,2.3466187-2.2217407,3.6970215-2.2217407c1.375,0,2.239502,0.7539673,3.3761597,0.7539673\r\n\tc1.1028442,0,1.7749023-0.755127,3.3641357-0.755127c1.201416,0,2.4744263,0.6542969,3.3816528,1.7846069\r\n\tC14.0778809,8.4837646,14.5608521,12.7279663,17.5640259,13.8623047z M12.4625244,3.8076782\r\n\tc0.5775146-0.741333,1.0163574-1.7880859,0.8571167-2.857666c-0.9436035,0.0653076-2.0470581,0.6651611-2.6912842,1.4477539\r\n\tC10.0437012,3.107605,9.56073,4.1605835,9.7486572,5.1849365C10.7787476,5.2164917,11.8443604,4.6011963,12.4625244,3.8076782z" + } + }] +}; +exports.store = store; \ No newline at end of file diff --git a/dist/entypo/stumbleupon.js b/dist/entypo/stumbleupon.js new file mode 100644 index 000000000..fc19dc50f --- /dev/null +++ b/dist/entypo/stumbleupon.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.stumbleupon = void 0; +var stumbleupon = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M11.051,8.059l1.365,0.66l2.059-0.66V6.865C14.475,4.402,12.467,2.4,10,2.4S5.525,4.402,5.525,6.865v6.27\r\n\tc0,0.578-0.472,1.049-1.051,1.049c-0.58,0-1.051-0.471-1.051-1.049V10.51H0v2.625C0,15.596,2.007,17.6,4.475,17.6\r\n\tc2.467,0,4.474-2.004,4.474-4.465v-6.27c0-0.578,0.472-1.049,1.052-1.049c0.579,0,1.051,0.471,1.051,1.049V8.059z M16.576,10.51\r\n\tv2.625c0,0.578-0.471,1.049-1.051,1.049c-0.58,0-1.051-0.471-1.051-1.049v-2.678l-2.059,0.658l-1.365-0.658v2.678\r\n\tc0,2.461,2.008,4.465,4.475,4.465S20,15.596,20,13.135V10.51H16.576z" + } + }] +}; +exports.stumbleupon = stumbleupon; \ No newline at end of file diff --git a/dist/entypo/suitcase.js b/dist/entypo/suitcase.js new file mode 100644 index 000000000..d4d54fe8d --- /dev/null +++ b/dist/entypo/suitcase.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.suitcase = void 0; +var suitcase = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M18,4h-1v15h1c1.1,0,2-0.9,2-2V6C20,4.9,19.1,4,18,4z M0,6l0,11c0,1.1,0.899,2,2,2h1V4H2C0.899,4,0,4.9,0,6z M13.5,1.906\r\n\tC12.819,1.59,11.611,1,9.981,1C8.348,1,7.181,1.59,6.5,1.906V4H4v15h12V4h-2.5V1.906z M12,4H8V2.664\r\n\tc0.534-0.23,1.078-0.465,1.981-0.465c0.902,0,1.486,0.234,2.019,0.465V4z" + } + }] +}; +exports.suitcase = suitcase; \ No newline at end of file diff --git a/dist/entypo/swap.js b/dist/entypo/swap.js new file mode 100644 index 000000000..5e29de32f --- /dev/null +++ b/dist/entypo/swap.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.swap = void 0; +var swap = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M14,5H4V3L0,6.5L4,10V8h10V5z M20,13.5L16,10v2H6v3h10v2L20,13.5z" + } + }] +}; +exports.swap = swap; \ No newline at end of file diff --git a/dist/entypo/swarm.js b/dist/entypo/swarm.js new file mode 100644 index 000000000..225d5f195 --- /dev/null +++ b/dist/entypo/swarm.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.swarm = void 0; +var swarm = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10.286,18.821c-1.429-0.232-2.733-0.607-3.677-0.923c-0.046-0.015-0.781-0.282-1.007-0.37\r\n\tc-0.278-0.107-0.423-0.431-0.317-0.71c0.086-0.225,0.379-0.949,0.399-0.994c0.4-0.92,1-2.153,1.795-3.379\r\n\tc0.029,1.203,0.297,2.399,0.791,3.506C8.75,17.028,9.439,18.007,10.286,18.821z M10.173,7.027c-2.791-5.689-8.99-5.486-9.968-2.943\r\n\tc-0.751,1.952,2.535,6.602,10.097,3.244c0.002-0.001,0.002-0.001,0.004-0.002C10.28,7.279,10.192,7.079,10.173,7.027z M11.56,6.805\r\n\tc0.001,0,0.002-0.001,0.002-0.001c4.271-1.897,3.674-5.191,2.569-5.614c-1.487-0.569-4.19,1.624-2.647,5.447\r\n\tC11.499,6.664,11.55,6.777,11.56,6.805z M19.413,10.97C18.767,9.52,17.58,8.481,16.2,7.986c-0.139-0.05-0.281-0.073-0.423-0.073\r\n\tc-0.717,0-1.407,0.595-1.472,1.338c-0.109,1.239,0.137,2.501,0.68,3.718c0.535,1.199,1.294,2.213,2.27,2.957\r\n\tc0.254,0.194,0.565,0.285,0.875,0.285c0.559,0,1.117-0.296,1.339-0.826C20.04,14.023,20.066,12.432,19.413,10.97z M16.172,17.339\r\n\tc-1.195-0.912-2.142-2.139-2.815-3.646c-0.682-1.529-0.961-3.075-0.827-4.596c0.037-0.423,0.161-0.831,0.36-1.204\r\n\tc-0.035,0.009-0.111,0.027-0.114,0.028c-0.628,0.157-1.237,0.429-1.778,0.784c-0.784,0.514-1.475,1.277-1.772,2.177\r\n\tc-0.08,0.243-0.141,0.51-0.161,0.765c-0.095,1.218,0.103,2.476,0.636,3.67c0.516,1.155,1.285,2.118,2.213,2.853\r\n\tC12.48,18.617,13.5,18.9,14.334,18.9c0.783,0,1.556-0.233,2.25-0.585c0.217-0.11,0.695-0.408,0.726-0.429\r\n\tC16.895,17.78,16.506,17.594,16.172,17.339z" + } + }] +}; +exports.swarm = swarm; \ No newline at end of file diff --git a/dist/entypo/sweden.js b/dist/entypo/sweden.js new file mode 100644 index 000000000..eb73da09c --- /dev/null +++ b/dist/entypo/sweden.js @@ -0,0 +1,14 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.sweden = void 0; +var sweden = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "g", + "attribs": {} + }] +}; +exports.sweden = sweden; \ No newline at end of file diff --git a/dist/entypo/switchIcon.js b/dist/entypo/switchIcon.js new file mode 100644 index 000000000..74915e357 --- /dev/null +++ b/dist/entypo/switchIcon.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.switchIcon = void 0; +var switchIcon = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M13,3H7c-3.866,0-7,3.134-7,7c0,3.866,3.134,7,7,7h6c3.866,0,7-3.134,7-7C20,6.134,16.866,3,13,3z M13,15\r\n\tc-2.761,0-5-2.239-5-5s2.239-5,5-5s5,2.239,5,5S15.761,15,13,15z" + } + }] +}; +exports.switchIcon = switchIcon; \ No newline at end of file diff --git a/dist/entypo/tablet.js b/dist/entypo/tablet.js new file mode 100644 index 000000000..21b8273db --- /dev/null +++ b/dist/entypo/tablet.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.tablet = void 0; +var tablet = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M16,0H4C2.9,0,2,0.899,2,2v16c0,1.1,0.9,2,2,2h12c1.101,0,2-0.9,2-2V2C18,0.899,17.101,0,16,0z M10,19\r\n\tc-0.69,0-1.25-0.447-1.25-1s0.56-1,1.25-1c0.689,0,1.25,0.447,1.25,1S10.689,19,10,19z M16,16H4V2h12V16z" + } + }] +}; +exports.tablet = tablet; \ No newline at end of file diff --git a/dist/entypo/tag.js b/dist/entypo/tag.js new file mode 100644 index 000000000..b84cbc2b2 --- /dev/null +++ b/dist/entypo/tag.js @@ -0,0 +1,14 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.tag = void 0; +var tag = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "g", + "attribs": {} + }] +}; +exports.tag = tag; \ No newline at end of file diff --git a/dist/entypo/takeOff.js b/dist/entypo/takeOff.js new file mode 100644 index 000000000..1a35ad2e3 --- /dev/null +++ b/dist/entypo/takeOff.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.takeOff = void 0; +var takeOff = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M19.87,6.453c0.119,0.257,0.127,1.29-4.884,3.642l-4.913,2.306c-1.71,0.803-4.191,1.859-5.285,2.151\r\n\tc-0.766,0.204-1.497-0.316-1.497-0.316s-2.206-1.975-2.792-2.419c-0.585-0.444-0.535-0.67,0.215-0.91\r\n\tc0.467-0.149,3.13,0.493,4.265,0.78c1.339-0.8,2.562-1.486,3.141-1.798c-1.396-1.033-4.008-2.962-4.841-3.55\r\n\tc-0.799-0.565,0.01-0.768,0.01-0.768c0.368-0.099,1.162-0.228,1.562-0.144c2.721,0.569,7.263,2.071,7.611,2.186\r\n\tc0.832-0.436,2.128-1.092,2.922-1.465C17.459,5.174,19.711,6.111,19.87,6.453z" + } + }] +}; +exports.takeOff = takeOff; \ No newline at end of file diff --git a/dist/entypo/text.js b/dist/entypo/text.js new file mode 100644 index 000000000..e15198e45 --- /dev/null +++ b/dist/entypo/text.js @@ -0,0 +1,18 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.text = void 0; +var text = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M15.5,11h-11C4.225,11,4,11.225,4,11.5v1C4,12.776,4.225,13,4.5,13h11\r\n\tc0.276,0,0.5-0.224,0.5-0.5v-1C16,11.225,15.776,11,15.5,11z M15.5,7h-11C4.225,7,4,7.225,4,7.5v1C4,8.776,4.225,9,4.5,9h11\r\n\tC15.776,9,16,8.776,16,8.5v-1C16,7.225,15.776,7,15.5,7z M10.5,15h-6C4.225,15,4,15.225,4,15.5v1C4,16.776,4.225,17,4.5,17h6\r\n\tc0.276,0,0.5-0.224,0.5-0.5v-1C11,15.225,10.776,15,10.5,15z M15.5,3h-11C4.225,3,4,3.225,4,3.5v1C4,4.776,4.225,5,4.5,5h11\r\n\tC15.776,5,16,4.776,16,4.5v-1C16,3.225,15.776,3,15.5,3z" + } + }] +}; +exports.text = text; \ No newline at end of file diff --git a/dist/entypo/thermometer.js b/dist/entypo/thermometer.js new file mode 100644 index 000000000..dc4b4b48e --- /dev/null +++ b/dist/entypo/thermometer.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.thermometer = void 0; +var thermometer = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M13,10.123V1c0-0.553-0.447-1-1-1H7.799C7.247,0,7,0.447,7,1v9.123c-1.444,0.969-2.4,2.608-2.4,4.477\r\n\tc0,2.982,2.418,5.4,5.4,5.4c2.982,0,5.4-2.418,5.4-5.4C15.4,12.731,14.444,11.092,13,10.123z M10,17.9c-1.823,0-3.3-1.477-3.3-3.3\r\n\tc0-1.472,0.97-2.703,2.3-3.129V4h2v7.471c1.33,0.426,2.3,1.657,2.3,3.129C13.3,16.422,11.823,17.9,10,17.9z" + } + }] +}; +exports.thermometer = thermometer; \ No newline at end of file diff --git a/dist/entypo/thinDown.js b/dist/entypo/thinDown.js new file mode 100644 index 000000000..a4d85b0ed --- /dev/null +++ b/dist/entypo/thinDown.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.thinDown = void 0; +var thinDown = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M17.418,6.109c0.272-0.268,0.709-0.268,0.979,0c0.27,0.268,0.271,0.701,0,0.969l-7.908,7.83\r\n\tc-0.27,0.268-0.707,0.268-0.979,0l-7.908-7.83c-0.27-0.268-0.27-0.701,0-0.969c0.271-0.268,0.709-0.268,0.979,0L10,13.25\r\n\tL17.418,6.109z" + } + }] +}; +exports.thinDown = thinDown; \ No newline at end of file diff --git a/dist/entypo/thinLeft.js b/dist/entypo/thinLeft.js new file mode 100644 index 000000000..d9a167c33 --- /dev/null +++ b/dist/entypo/thinLeft.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.thinLeft = void 0; +var thinLeft = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M13.891,17.418c0.268,0.272,0.268,0.709,0,0.979c-0.268,0.27-0.701,0.271-0.969,0l-7.83-7.908\r\n\tc-0.268-0.27-0.268-0.707,0-0.979l7.83-7.908c0.268-0.27,0.701-0.27,0.969,0c0.268,0.271,0.268,0.709,0,0.979L6.75,10L13.891,17.418\r\n\tz" + } + }] +}; +exports.thinLeft = thinLeft; \ No newline at end of file diff --git a/dist/entypo/thinRight.js b/dist/entypo/thinRight.js new file mode 100644 index 000000000..6efec0d12 --- /dev/null +++ b/dist/entypo/thinRight.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.thinRight = void 0; +var thinRight = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M13.25,10L6.109,2.58c-0.268-0.27-0.268-0.707,0-0.979c0.268-0.27,0.701-0.27,0.969,0l7.83,7.908\r\n\tc0.268,0.271,0.268,0.709,0,0.979l-7.83,7.908c-0.268,0.271-0.701,0.27-0.969,0c-0.268-0.269-0.268-0.707,0-0.979L13.25,10z" + } + }] +}; +exports.thinRight = thinRight; \ No newline at end of file diff --git a/dist/entypo/thinUp.js b/dist/entypo/thinUp.js new file mode 100644 index 000000000..9c97eab4e --- /dev/null +++ b/dist/entypo/thinUp.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.thinUp = void 0; +var thinUp = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M2.582,13.891c-0.272,0.268-0.709,0.268-0.979,0s-0.271-0.701,0-0.969l7.908-7.83c0.27-0.268,0.707-0.268,0.979,0\r\n\tl7.908,7.83c0.27,0.268,0.27,0.701,0,0.969c-0.271,0.268-0.709,0.268-0.978,0L10,6.75L2.582,13.891z" + } + }] +}; +exports.thinUp = thinUp; \ No newline at end of file diff --git a/dist/entypo/threeHorizontal.js b/dist/entypo/threeHorizontal.js new file mode 100644 index 000000000..7abd16ff0 --- /dev/null +++ b/dist/entypo/threeHorizontal.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.threeHorizontal = void 0; +var threeHorizontal = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10.001,7.8C8.786,7.8,7.8,8.785,7.8,10s0.986,2.2,2.201,2.2c1.215,0,2.199-0.985,2.199-2.2S11.216,7.8,10.001,7.8z\r\n\t M3.001,7.8C1.786,7.8,0.8,8.785,0.8,10s0.986,2.2,2.201,2.2C4.216,12.2,5.2,11.214,5.2,10S4.216,7.8,3.001,7.8z M17.001,7.8\r\n\tC15.786,7.8,14.8,8.785,14.8,10s0.986,2.2,2.201,2.2c1.215,0,2.199-0.985,2.199-2.2S18.216,7.8,17.001,7.8z" + } + }] +}; +exports.threeHorizontal = threeHorizontal; \ No newline at end of file diff --git a/dist/entypo/threeVertical.js b/dist/entypo/threeVertical.js new file mode 100644 index 000000000..4a631d709 --- /dev/null +++ b/dist/entypo/threeVertical.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.threeVertical = void 0; +var threeVertical = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10.001,7.8C8.786,7.8,7.8,8.785,7.8,10s0.986,2.2,2.201,2.2c1.215,0,2.199-0.985,2.199-2.2S11.216,7.8,10.001,7.8z\r\n\t M10.001,5.2C11.216,5.2,12.2,4.214,12.2,3S11.216,0.8,10.001,0.8C8.786,0.8,7.8,1.785,7.8,3S8.786,5.2,10.001,5.2z M10.001,14.8\r\n\tC8.786,14.8,7.8,15.785,7.8,17s0.986,2.2,2.201,2.2c1.215,0,2.199-0.985,2.199-2.2S11.216,14.8,10.001,14.8z" + } + }] +}; +exports.threeVertical = threeVertical; \ No newline at end of file diff --git a/dist/entypo/ticket.js b/dist/entypo/ticket.js new file mode 100644 index 000000000..34d80a25c --- /dev/null +++ b/dist/entypo/ticket.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ticket = void 0; +var ticket = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M4.906,11.541l3.551,3.553l6.518-6.518l-3.553-3.551L4.906,11.541z M19.104,6.664l-1.511-1.512\r\n\tc-0.289,0.156-0.618,0.246-0.969,0.246c-1.118,0-2.024-0.906-2.024-2.023c0-0.352,0.089-0.682,0.246-0.969l-1.511-1.512\r\n\tc-0.394-0.393-1.038-0.393-1.432,0l-11.01,11.01c-0.393,0.392-0.393,1.037,0,1.432l1.512,1.51C2.694,14.69,3.023,14.6,3.375,14.6\r\n\tc1.117,0,2.023,0.906,2.023,2.025c0,0.35-0.089,0.68-0.246,0.969l1.512,1.51c0.394,0.394,1.037,0.394,1.432,0L19.104,8.096\r\n\tC19.498,7.701,19.498,7.057,19.104,6.664z M8.457,16.719l-5.176-5.178l8.142-8.141l5.176,5.176L8.457,16.719z" + } + }] +}; +exports.ticket = ticket; \ No newline at end of file diff --git a/dist/entypo/toCloud.js b/dist/entypo/toCloud.js new file mode 100644 index 000000000..aafd25fc5 --- /dev/null +++ b/dist/entypo/toCloud.js @@ -0,0 +1,14 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.toCloud = void 0; +var toCloud = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "g", + "attribs": {} + }] +}; +exports.toCloud = toCloud; \ No newline at end of file diff --git a/dist/entypo/toList.js b/dist/entypo/toList.js new file mode 100644 index 000000000..8d056c9fc --- /dev/null +++ b/dist/entypo/toList.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.toList = void 0; +var toList = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M19.4,9H16V5.6C16,5,15.6,5,15,5s-1,0-1,0.6V9h-3.4C10,9,10,9.4,10,10s0,1,0.6,1H14v3.4c0,0.6,0.4,0.6,1,0.6s1,0,1-0.6V11\r\n\th3.4c0.6,0,0.6-0.4,0.6-1S20,9,19.4,9z M7.4,9H0.6C0,9,0,9.4,0,10s0,1,0.6,1h6.8C8,11,8,10.6,8,10S8,9,7.4,9z M7.4,14H0.6\r\n\tC0,14,0,14.4,0,15s0,1,0.6,1h6.8C8,16,8,15.6,8,15S8,14,7.4,14z M7.4,4H0.6C0,4,0,4.4,0,5s0,1,0.6,1h6.8C8,6,8,5.6,8,5S8,4,7.4,4z" + } + }] +}; +exports.toList = toList; \ No newline at end of file diff --git a/dist/entypo/tools.js b/dist/entypo/tools.js new file mode 100644 index 000000000..521c2403d --- /dev/null +++ b/dist/entypo/tools.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.tools = void 0; +var tools = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M3.135,6.89c0.933-0.725,1.707-0.225,2.74,0.971c0.116,0.135,0.272-0.023,0.361-0.1c0.088-0.078,1.451-1.305,1.518-1.361\r\n\tC7.82,6.341,7.9,6.231,7.795,6.108C7.688,5.985,7.301,5.483,7.052,5.157c-1.808-2.365,4.946-3.969,3.909-3.994\r\n\tc-0.528-0.014-2.646-0.039-2.963-0.004C6.715,1.294,5.104,2.493,4.293,3.052C3.232,3.778,2.836,4.204,2.771,4.263\r\n\tc-0.3,0.262-0.048,0.867-0.592,1.344C1.604,6.11,1.245,5.729,0.912,6.021C0.747,6.167,0.285,6.513,0.153,6.628\r\n\tC0.02,6.745-0.004,6.942,0.132,7.099c0,0,1.264,1.396,1.37,1.52C1.607,8.741,1.893,8.847,2.069,8.69\r\n\tc0.177-0.156,0.632-0.553,0.708-0.623C2.855,8.001,2.727,7.206,3.135,6.89z M8.843,7.407c-0.12-0.139-0.269-0.143-0.397-0.029\r\n\tL7.012,8.63c-0.113,0.1-0.129,0.283-0.027,0.4l8.294,9.439c0.194,0.223,0.53,0.246,0.751,0.053L17,17.709\r\n\tc0.222-0.195,0.245-0.533,0.052-0.758L8.843,7.407z M19.902,3.39c-0.074-0.494-0.33-0.391-0.463-0.182\r\n\tc-0.133,0.211-0.721,1.102-0.963,1.506c-0.24,0.4-0.832,1.191-1.934,0.41c-1.148-0.811-0.749-1.377-0.549-1.758\r\n\tc0.201-0.383,0.818-1.457,0.907-1.59c0.089-0.135-0.015-0.527-0.371-0.363c-0.357,0.164-2.523,1.025-2.823,2.26\r\n\tc-0.307,1.256,0.257,2.379-0.85,3.494l-1.343,1.4l1.349,1.566l1.654-1.57c0.394-0.396,1.236-0.781,1.998-0.607\r\n\tc1.633,0.369,2.524-0.244,3.061-1.258C20.057,5.792,19.977,3.884,19.902,3.39z M2.739,17.053c-0.208,0.209-0.208,0.549,0,0.758\r\n\tl0.951,0.93c0.208,0.209,0.538,0.121,0.746-0.088l4.907-4.824L7.84,12.115L2.739,17.053z" + } + }] +}; +exports.tools = tools; \ No newline at end of file diff --git a/dist/entypo/top.js b/dist/entypo/top.js new file mode 100644 index 000000000..46d1f07a5 --- /dev/null +++ b/dist/entypo/top.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.top = void 0; +var top = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,6L7,9h2v8h2V9h2L10,6z M18,4c0-0.553-0.048-1-0.6-1H2.6C2.048,3,2,3.447,2,4c0,0.553,0.048,1,0.6,1H17.4\r\n\tC17.952,5,18,4.553,18,4z" + } + }] +}; +exports.top = top; \ No newline at end of file diff --git a/dist/entypo/trash.js b/dist/entypo/trash.js new file mode 100644 index 000000000..296ec07b7 --- /dev/null +++ b/dist/entypo/trash.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.trash = void 0; +var trash = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M3.389,7.113L4.49,18.021C4.551,18.482,6.777,19.998,10,20c3.225-0.002,5.451-1.518,5.511-1.979l1.102-10.908\r\n\tC14.929,8.055,12.412,8.5,10,8.5C7.59,8.5,5.072,8.055,3.389,7.113z M13.168,1.51l-0.859-0.951C11.977,0.086,11.617,0,10.916,0\r\n\tH9.085c-0.7,0-1.061,0.086-1.392,0.559L6.834,1.51C4.264,1.959,2.4,3.15,2.4,4.029v0.17C2.4,5.746,5.803,7,10,7\r\n\tc4.198,0,7.601-1.254,7.601-2.801v-0.17C17.601,3.15,15.738,1.959,13.168,1.51z M12.07,4.34L11,3H9L7.932,4.34h-1.7\r\n\tc0,0,1.862-2.221,2.111-2.522C8.533,1.588,8.727,1.5,8.979,1.5h2.043c0.253,0,0.447,0.088,0.637,0.318\r\n\tc0.248,0.301,2.111,2.522,2.111,2.522H12.07z" + } + }] +}; +exports.trash = trash; \ No newline at end of file diff --git a/dist/entypo/tree.js b/dist/entypo/tree.js new file mode 100644 index 000000000..478f2b033 --- /dev/null +++ b/dist/entypo/tree.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.tree = void 0; +var tree = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M18,14.824V12.5c0-1.933-1.567-3.5-3.5-3.5h-2C11.672,9,11,8.328,11,7.5V5.176c0.825-0.38,1.4-1.208,1.4-2.176\r\n\tc0-1.326-1.074-2.4-2.4-2.4S7.6,1.674,7.6,3c0,0.967,0.576,1.796,1.4,2.176V7.5C9,8.328,8.328,9,7.5,9h-2C3.567,9,2,10.567,2,12.5\r\n\tv2.324C1.175,15.204,0.6,16.033,0.6,17c0,1.326,1.074,2.4,2.4,2.4s2.4-1.075,2.4-2.4c0-0.967-0.576-1.796-1.4-2.176V12.5\r\n\tC4,11.672,4.672,11,5.5,11h2c0.539,0,1.044-0.132,1.5-0.35v4.174C8.175,15.204,7.6,16.033,7.6,17c0,1.326,1.074,2.4,2.4,2.4\r\n\ts2.4-1.075,2.4-2.4c0-0.967-0.576-1.796-1.4-2.176V10.65c0.456,0.218,0.961,0.35,1.5,0.35h2c0.828,0,1.5,0.672,1.5,1.5v2.324\r\n\tc-0.825,0.38-1.4,1.208-1.4,2.176c0,1.326,1.074,2.4,2.4,2.4s2.4-1.075,2.4-2.4C19.4,16.033,18.825,15.204,18,14.824z M10,1.615\r\n\tc0.764,0,1.384,0.619,1.384,1.385c0,0.764-0.62,1.385-1.384,1.385C9.235,4.385,8.616,3.764,8.616,3\r\n\tC8.616,2.234,9.235,1.615,10,1.615z M3,18.385c-0.766,0-1.385-0.621-1.385-1.385c0-0.766,0.619-1.385,1.385-1.385\r\n\tc0.764,0,1.384,0.619,1.384,1.385C4.384,17.764,3.764,18.385,3,18.385z M10,18.385c-0.766,0-1.385-0.621-1.385-1.385\r\n\tc0-0.766,0.619-1.385,1.385-1.385c0.764,0,1.384,0.619,1.384,1.385C11.384,17.764,10.764,18.385,10,18.385z M17,18.385\r\n\tc-0.766,0-1.385-0.621-1.385-1.385c0-0.766,0.619-1.385,1.385-1.385c0.764,0,1.384,0.619,1.384,1.385\r\n\tC18.384,17.764,17.764,18.385,17,18.385z" + } + }] +}; +exports.tree = tree; \ No newline at end of file diff --git a/dist/entypo/tripadvisor.js b/dist/entypo/tripadvisor.js new file mode 100644 index 000000000..6b0092ca9 --- /dev/null +++ b/dist/entypo/tripadvisor.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.tripadvisor = void 0; +var tripadvisor = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M20,6.0090332h-2.8286133C15.2119141,4.6748047,12.8125,4,10,4S4.7880859,4.6748047,2.8286133,6.0090332H0\r\n\tC0.4279785,6.4293823,0.8271484,7.348877,0.9931641,8.0480957C0.3771973,8.8793335,0,9.8972778,0,11.0090332\r\n\tc0,2.7568359,2.2431641,5,5,5c1.3266602,0,2.5268555-0.5282593,3.4228516-1.3746338L10,17l1.5771484-2.3656006\r\n\tC12.4731445,15.4807739,13.6733398,16.0090332,15,16.0090332c2.7568359,0,5-2.2431641,5-5\r\n\tc0-1.1117554-0.3771973-2.1296997-0.9931641-2.9609375C19.1728516,7.348877,19.5720215,6.4293823,20,6.0090332z M5,14.4090576\r\n\tc-1.8745117,0-3.3999023-1.5254517-3.3999023-3.4000244S3.1254883,7.6090088,5,7.6090088s3.3999023,1.5254517,3.3999023,3.4000244\r\n\tS6.8745117,14.4090576,5,14.4090576z M10,11.0090332c0-2.4172974-1.7250977-4.4382935-4.0085449-4.8997803\r\n\tC7.1948242,5.7042847,8.5290527,5.5,10,5.5s2.8051758,0.2042847,4.0085449,0.6092529\r\n\tC11.7250977,6.5707397,10,8.5917358,10,11.0090332z M15,14.4090576c-1.8745117,0-3.3999023-1.5254517-3.3999023-3.4000244\r\n\tS13.1254883,7.6090088,15,7.6090088s3.3999023,1.5254517,3.3999023,3.4000244S16.8745117,14.4090576,15,14.4090576z M5,8.8590088\r\n\tc-1.1850586,0-2.1499023,0.9644775-2.1499023,2.1500244S3.8149414,13.1590576,5,13.1590576s2.1499023-0.9644775,2.1499023-2.1500244\r\n\tS6.1850586,8.8590088,5,8.8590088z M5,11.6500244c-0.3588867,0-0.6499023-0.2910156-0.6499023-0.6500244\r\n\tS4.6411133,10.3499756,5,10.3499756S5.6499023,10.6409912,5.6499023,11S5.3588867,11.6500244,5,11.6500244z M15,8.8590088\r\n\tc-1.1850586,0-2.1499023,0.9644775-2.1499023,2.1500244S13.8149414,13.1590576,15,13.1590576\r\n\ts2.1499023-0.9644775,2.1499023-2.1500244S16.1850586,8.8590088,15,8.8590088z M15,11.6500244\r\n\tc-0.3588867,0-0.6499023-0.2910156-0.6499023-0.6500244S14.6411133,10.3499756,15,10.3499756S15.6499023,10.6409912,15.6499023,11\r\n\tS15.3588867,11.6500244,15,11.6500244z" + } + }] +}; +exports.tripadvisor = tripadvisor; \ No newline at end of file diff --git a/dist/entypo/trophy.js b/dist/entypo/trophy.js new file mode 100644 index 000000000..5a6f5801d --- /dev/null +++ b/dist/entypo/trophy.js @@ -0,0 +1,14 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.trophy = void 0; +var trophy = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "g", + "attribs": {} + }] +}; +exports.trophy = trophy; \ No newline at end of file diff --git a/dist/entypo/tumblr.js b/dist/entypo/tumblr.js new file mode 100644 index 000000000..0bc5ab5c1 --- /dev/null +++ b/dist/entypo/tumblr.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.tumblr = void 0; +var tumblr = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M15.6,18.196c-0.777,0.371-1.48,0.631-2.109,0.781c-0.63,0.148-1.311,0.223-2.043,0.223c-0.831,0-1.566-0.107-2.205-0.318\r\n\tc-0.639-0.213-1.183-0.516-1.635-0.908c-0.451-0.395-0.764-0.812-0.938-1.254c-0.174-0.443-0.261-1.086-0.261-1.926V8.339H4.4V5.735\r\n\tc0.714-0.234,1.326-0.57,1.835-1.01c0.51-0.438,0.918-0.965,1.227-1.58C7.77,2.532,7.981,1.749,8.098,0.8h2.585v4.652h4.314v2.887\r\n\th-4.314v4.719c0,1.066,0.056,1.752,0.168,2.055c0.111,0.303,0.319,0.545,0.622,0.725c0.403,0.244,0.863,0.367,1.381,0.367\r\n\tc0.92,0,1.836-0.303,2.746-0.908V18.196z" + } + }] +}; +exports.tumblr = tumblr; \ No newline at end of file diff --git a/dist/entypo/tv.js b/dist/entypo/tv.js new file mode 100644 index 000000000..6120b1a43 --- /dev/null +++ b/dist/entypo/tv.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.tv = void 0; +var tv = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M18,1H2C0.899,1,0,1.9,0,3v11c0,1.1,0.882,2.178,1.961,2.393l4.372,0.875C6.333,17.268,2.57,19,5,19h10\r\n\tc2.43,0-1.334-1.732-1.334-1.732l4.373-0.875C19.117,16.178,20,15.1,20,14V3C20,1.9,19.1,1,18,1z M18,14H2V3h16V14z" + } + }] +}; +exports.tv = tv; \ No newline at end of file diff --git a/dist/entypo/twitter.js b/dist/entypo/twitter.js new file mode 100644 index 000000000..6c684f47e --- /dev/null +++ b/dist/entypo/twitter.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.twitter = void 0; +var twitter = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M17.316,6.246c0.008,0.162,0.011,0.326,0.011,0.488c0,4.99-3.797,10.742-10.74,10.742c-2.133,0-4.116-0.625-5.787-1.697\r\n\tc0.296,0.035,0.596,0.053,0.9,0.053c1.77,0,3.397-0.604,4.688-1.615c-1.651-0.031-3.046-1.121-3.526-2.621\r\n\tc0.23,0.043,0.467,0.066,0.71,0.066c0.345,0,0.679-0.045,0.995-0.131c-1.727-0.348-3.028-1.873-3.028-3.703c0-0.016,0-0.031,0-0.047\r\n\tc0.509,0.283,1.092,0.453,1.71,0.473c-1.013-0.678-1.68-1.832-1.68-3.143c0-0.691,0.186-1.34,0.512-1.898\r\n\tC3.942,5.498,6.725,7,9.862,7.158C9.798,6.881,9.765,6.594,9.765,6.297c0-2.084,1.689-3.773,3.774-3.773\r\n\tc1.086,0,2.067,0.457,2.756,1.191c0.859-0.17,1.667-0.484,2.397-0.916c-0.282,0.881-0.881,1.621-1.66,2.088\r\n\tc0.764-0.092,1.49-0.293,2.168-0.594C18.694,5.051,18.054,5.715,17.316,6.246z" + } + }] +}; +exports.twitter = twitter; \ No newline at end of file diff --git a/dist/entypo/two.js b/dist/entypo/two.js new file mode 100644 index 000000000..bea3af419 --- /dev/null +++ b/dist/entypo/two.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.two = void 0; +var two = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M18,5H2C0.9,5,0,5.9,0,7v6c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V7C20,5.9,19.1,5,18,5z M18,13H2V7h16V13z M7,8H3v4h4V8z\r\n\t M12,8H8v4h4V8z" + } + }] +}; +exports.two = two; \ No newline at end of file diff --git a/dist/entypo/twoHorizontal.js b/dist/entypo/twoHorizontal.js new file mode 100644 index 000000000..488c71ef0 --- /dev/null +++ b/dist/entypo/twoHorizontal.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.twoHorizontal = void 0; +var twoHorizontal = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M14.001,7.8C12.786,7.8,11.8,8.785,11.8,10s0.986,2.2,2.201,2.2c1.215,0,2.199-0.985,2.199-2.2S15.216,7.8,14.001,7.8z\r\n\t M6.001,7.8C4.786,7.8,3.8,8.785,3.8,10s0.986,2.2,2.201,2.2C7.216,12.2,8.2,11.214,8.2,10S7.216,7.8,6.001,7.8z" + } + }] +}; +exports.twoHorizontal = twoHorizontal; \ No newline at end of file diff --git a/dist/entypo/twoVertical.js b/dist/entypo/twoVertical.js new file mode 100644 index 000000000..2a21ebb3a --- /dev/null +++ b/dist/entypo/twoVertical.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.twoVertical = void 0; +var twoVertical = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10.001,8.2C11.216,8.2,12.2,7.214,12.2,6S11.216,3.8,10.001,3.8C8.786,3.8,7.8,4.785,7.8,6S8.786,8.2,10.001,8.2z\r\n\t M10.001,11.8C8.786,11.8,7.8,12.785,7.8,14s0.986,2.2,2.201,2.2c1.215,0,2.199-0.985,2.199-2.2S11.216,11.8,10.001,11.8z" + } + }] +}; +exports.twoVertical = twoVertical; \ No newline at end of file diff --git a/dist/entypo/typing.js b/dist/entypo/typing.js new file mode 100644 index 000000000..b23cd43dd --- /dev/null +++ b/dist/entypo/typing.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.typing = void 0; +var typing = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M16,4H4C2.899,4,2,4.9,2,6v7c0,1.1,0.899,2,2,2h4l4,3v-3h4c1.1,0,2-0.9,2-2V6C18,4.9,17.1,4,16,4z M6,10.6\r\n\tc-0.607,0-1.1-0.492-1.1-1.1c0-0.608,0.492-1.1,1.1-1.1s1.1,0.492,1.1,1.1C7.1,10.107,6.607,10.6,6,10.6z M10,10.6\r\n\tc-0.607,0-1.1-0.492-1.1-1.1c0-0.608,0.492-1.1,1.1-1.1s1.1,0.492,1.1,1.1C11.1,10.107,10.607,10.6,10,10.6z M14,10.6\r\n\tc-0.607,0-1.1-0.492-1.1-1.1c0-0.608,0.492-1.1,1.1-1.1s1.1,0.492,1.1,1.1C15.1,10.107,14.607,10.6,14,10.6z" + } + }] +}; +exports.typing = typing; \ No newline at end of file diff --git a/dist/entypo/uninstall.js b/dist/entypo/uninstall.js new file mode 100644 index 000000000..17ccbc64b --- /dev/null +++ b/dist/entypo/uninstall.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.uninstall = void 0; +var uninstall = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M19.059,10.898l-3.171-7.927C15.654,2.384,15.086,2,14.454,2H5.546C4.914,2,4.346,2.384,4.112,2.971l-3.171,7.927\r\n\tc-0.288,0.721-0.373,1.507-0.246,2.272l0.59,3.539C1.409,17.454,2.053,18,2.808,18h14.383c0.755,0,1.399-0.546,1.523-1.291\r\n\tl0.59-3.539C19.433,12.405,19.348,11.619,19.059,10.898z M5.52,4.786l1.639-1.132l2.868,2.011l2.868-2.011l1.639,1.132l-2.869,2.033\r\n\tl2.928,2.06l-1.639,1.171l-2.927-2.076L7.1,10.05L5.461,8.879l2.928-2.06L5.52,4.786z M16.959,15.245\r\n\tC16.887,15.681,16.51,16,16.068,16H3.932c-0.442,0-0.819-0.319-0.891-0.755l-0.365-2.193C2.583,12.501,3.008,12,3.567,12h12.867\r\n\tc0.558,0,0.983,0.501,0.891,1.052L16.959,15.245z" + } + }] +}; +exports.uninstall = uninstall; \ No newline at end of file diff --git a/dist/entypo/unread.js b/dist/entypo/unread.js new file mode 100644 index 000000000..70d9e081b --- /dev/null +++ b/dist/entypo/unread.js @@ -0,0 +1,18 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.unread = void 0; +var unread = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M17,3c-1.104,0-2,0.895-2,2c0,1.105,0.896,2,2,2s2-0.895,2-2\r\n\tC19,3.895,18.104,3,17,3z M12.5,4h-11C1.224,4,1,4.224,1,4.5v1C1,5.776,1.224,6,1.5,6h11C12.776,6,13,5.776,13,5.5v-1\r\n\tC13,4.224,12.776,4,12.5,4z M12.5,9h-11C1.224,9,1,9.224,1,9.5v1C1,10.776,1.224,11,1.5,11h11c0.276,0,0.5-0.224,0.5-0.5v-1\r\n\tC13,9.224,12.776,9,12.5,9z M12.5,14h-11C1.224,14,1,14.224,1,14.5v1C1,15.776,1.224,16,1.5,16h11c0.276,0,0.5-0.224,0.5-0.5v-1\r\n\tC13,14.224,12.776,14,12.5,14z" + } + }] +}; +exports.unread = unread; \ No newline at end of file diff --git a/dist/entypo/untag.js b/dist/entypo/untag.js new file mode 100644 index 000000000..d0d6b844f --- /dev/null +++ b/dist/entypo/untag.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.untag = void 0; +var untag = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M1,14.742l4.945-0.709L5.239,19l5.962-5.985L7.132,8.586L1,14.742z M18.664,5.521c0.391-0.393,0.5-0.945,0-1.419\r\n\tl-2.826-2.839c-0.279-0.308-1.021-0.392-1.412,0l-3.766,3.78l4.068,4.429L18.664,5.521z M18.706,15.293l-14.001-14\r\n\tc-0.391-0.391-1.023-0.391-1.414,0c-0.391,0.391-0.391,1.023,0,1.414l14.001,14C17.488,16.903,17.744,17,17.999,17\r\n\tc0.256,0,0.512-0.098,0.707-0.293C19.097,16.317,19.097,15.684,18.706,15.293z" + } + }] +}; +exports.untag = untag; \ No newline at end of file diff --git a/dist/entypo/up.js b/dist/entypo/up.js new file mode 100644 index 000000000..7b5c05f22 --- /dev/null +++ b/dist/entypo/up.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.up = void 0; +var up = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,2.5L16.5,9H13v8H7V9H3.5L10,2.5z" + } + }] +}; +exports.up = up; \ No newline at end of file diff --git a/dist/entypo/upload.js b/dist/entypo/upload.js new file mode 100644 index 000000000..bd93d712d --- /dev/null +++ b/dist/entypo/upload.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.upload = void 0; +var upload = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M8,12h4V6h3l-5-5L5,6h3V12z M19.338,13.532c-0.21-0.224-1.611-1.723-2.011-2.114C17.062,11.159,16.683,11,16.285,11h-1.757\r\n\tl3.064,2.994h-3.544c-0.102,0-0.194,0.052-0.24,0.133L12.992,16H7.008l-0.816-1.873c-0.046-0.081-0.139-0.133-0.24-0.133H2.408\r\n\tL5.471,11H3.715c-0.397,0-0.776,0.159-1.042,0.418c-0.4,0.392-1.801,1.891-2.011,2.114c-0.489,0.521-0.758,0.936-0.63,1.449\r\n\tl0.561,3.074c0.128,0.514,0.691,0.936,1.252,0.936h16.312c0.561,0,1.124-0.422,1.252-0.936l0.561-3.074\r\n\tC20.096,14.468,19.828,14.053,19.338,13.532z" + } + }] +}; +exports.upload = upload; \ No newline at end of file diff --git a/dist/entypo/user.js b/dist/entypo/user.js new file mode 100644 index 000000000..a32f5c3aa --- /dev/null +++ b/dist/entypo/user.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.user = void 0; +var user = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M15.989,19.129C16,17,13.803,15.74,11.672,14.822c-2.123-0.914-2.801-1.684-2.801-3.334c0-0.989,0.648-0.667,0.932-2.481\r\n\tc0.12-0.752,0.692-0.012,0.802-1.729c0-0.684-0.313-0.854-0.313-0.854s0.159-1.013,0.221-1.793c0.064-0.817-0.398-2.56-2.301-3.095\r\n\tC7.88,1.195,7.655,0.654,8.679,0.112c-2.24-0.104-2.761,1.068-3.954,1.93c-1.015,0.756-1.289,1.953-1.24,2.59\r\n\tc0.065,0.78,0.223,1.793,0.223,1.793s-0.314,0.17-0.314,0.854c0.11,1.718,0.684,0.977,0.803,1.729\r\n\tC4.481,10.822,5.13,10.5,5.13,11.489c0,1.65-0.212,2.21-2.336,3.124C0.663,15.53,0,17,0.011,19.129C0.014,19.766,0,20,0,20h16\r\n\tC16,20,15.986,19.766,15.989,19.129z M17,10V7h-2v3h-3v2h3v3h2v-3h3v-2H17z" + } + }] +}; +exports.user = user; \ No newline at end of file diff --git a/dist/entypo/users.js b/dist/entypo/users.js new file mode 100644 index 000000000..faeb540d4 --- /dev/null +++ b/dist/entypo/users.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.users = void 0; +var users = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M15.989,19.129c0-2.246-2.187-3.389-4.317-4.307c-2.123-0.914-2.801-1.684-2.801-3.334c0-0.989,0.648-0.667,0.932-2.481\r\n\tc0.12-0.752,0.692-0.012,0.802-1.729c0-0.684-0.313-0.854-0.313-0.854s0.159-1.013,0.221-1.793c0.064-0.817-0.398-2.56-2.301-3.095\r\n\tC7.88,1.195,7.655,0.654,8.679,0.112c-2.24-0.104-2.761,1.068-3.954,1.93c-1.015,0.756-1.289,1.953-1.24,2.59\r\n\tc0.065,0.78,0.223,1.793,0.223,1.793s-0.314,0.17-0.314,0.854c0.11,1.718,0.684,0.977,0.803,1.729\r\n\tC4.481,10.822,5.13,10.5,5.13,11.489c0,1.65-0.212,2.21-2.336,3.124C0.663,15.53,0,17,0.011,19.129C0.014,19.766,0,20,0,20h16\r\n\tC16,20,15.989,19.766,15.989,19.129z M18.528,13.365c-1.135-0.457-1.605-1.002-1.605-2.066c0-0.641,0.418-0.432,0.602-1.603\r\n\tc0.077-0.484,0.447-0.008,0.518-1.115c0-0.441-0.202-0.551-0.202-0.551s0.103-0.656,0.143-1.159c0.05-0.627-0.364-2.247-2.268-2.247\r\n\tc-1.903,0-2.318,1.62-2.269,2.247c0.042,0.502,0.144,1.159,0.144,1.159s-0.202,0.109-0.202,0.551\r\n\tc0.071,1.107,0.441,0.631,0.518,1.115c0.184,1.172,0.602,0.963,0.602,1.603c0,1.064-0.438,1.562-1.809,2.152\r\n\tc-0.069,0.029-0.12,0.068-0.183,0.102c1.64,0.712,4.226,1.941,4.838,4.447H20c0,0,0-1.906,0-2.318\r\n\tC20,14.682,19.727,13.848,18.528,13.365z" + } + }] +}; +exports.users = users; \ No newline at end of file diff --git a/dist/entypo/verticalMiddle.js b/dist/entypo/verticalMiddle.js new file mode 100644 index 000000000..81ae63d1b --- /dev/null +++ b/dist/entypo/verticalMiddle.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.verticalMiddle = void 0; +var verticalMiddle = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,12l-3,3h2v4h2v-4h2L10,12z M13,5h-2V1H9v4H7l3,3L13,5z M18,10c0-0.553-0.048-1-0.6-1H2.6C2.048,9,2,9.447,2,10\r\n\tc0,0.551,0.048,1,0.6,1H17.4C17.952,11,18,10.551,18,10z" + } + }] +}; +exports.verticalMiddle = verticalMiddle; \ No newline at end of file diff --git a/dist/entypo/video.js b/dist/entypo/video.js new file mode 100644 index 000000000..0a4f35836 --- /dev/null +++ b/dist/entypo/video.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.video = void 0; +var video = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.405,2.799C18.293,2.359,17.749,2,17.195,2H2.805c-0.555,0-1.099,0.359-1.21,0.799L1.394,4h17.211L18.405,2.799z\r\n\t M19.412,5H0.587C0.245,5-0.022,5.294,0.01,5.635l0.923,11.669C0.971,17.698,1.303,18,1.699,18H18.3\r\n\tc0.397,0,0.728-0.302,0.766-0.696l0.923-11.669C20.022,5.294,19.754,5,19.412,5z M8,14V9l4.383,2.5L8,14z" + } + }] +}; +exports.video = video; \ No newline at end of file diff --git a/dist/entypo/vimeo.js b/dist/entypo/vimeo.js new file mode 100644 index 000000000..9510aa155 --- /dev/null +++ b/dist/entypo/vimeo.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.vimeo = void 0; +var vimeo = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.91,5.84c-1.006,5.773-6.625,10.66-8.315,11.777c-1.69,1.115-3.233-0.447-3.792-1.631\r\n\tC6.162,14.639,4.244,7.33,3.741,6.725C3.238,6.119,1.731,7.33,1.731,7.33L1,6.354c0,0,3.061-3.725,5.391-4.191\r\n\tC8.861,1.67,8.857,6.027,9.451,8.445c0.574,2.342,0.961,3.68,1.463,3.68c0.502,0,1.462-1.305,2.512-3.305\r\n\tc1.053-2.004-0.045-3.772-2.101-2.514C12.148,1.279,19.916,0.07,18.91,5.84z" + } + }] +}; +exports.vimeo = vimeo; \ No newline at end of file diff --git a/dist/entypo/vine.js b/dist/entypo/vine.js new file mode 100644 index 000000000..56f50049a --- /dev/null +++ b/dist/entypo/vine.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.vine = void 0; +var vine = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M17.452,9.951c-0.438,0.101-0.863,0.145-1.244,0.145c-2.145,0-3.797-1.496-3.797-4.102c0-1.277,0.493-1.941,1.192-1.941\r\n\tc0.664,0,1.107,0.596,1.107,1.805c0,0.688-0.184,1.44-0.32,1.887c0,0,0.66,1.152,2.469,0.799c0.385-0.852,0.593-1.956,0.593-2.924\r\n\tc0-2.605-1.33-4.119-3.763-4.119c-2.504,0-3.968,1.922-3.968,4.461c0,2.512,1.175,4.668,3.113,5.651\r\n\tc-0.815,1.629-1.852,3.065-2.933,4.146c-1.961-2.371-3.734-5.534-4.463-11.706H2.548c1.335,10.279,5.319,13.553,6.373,14.181\r\n\tc0.596,0.358,1.108,0.341,1.654,0.034c0.855-0.485,3.422-3.054,4.847-6.061c0.597-0.002,1.314-0.069,2.03-0.231V9.951z" + } + }] +}; +exports.vine = vine; \ No newline at end of file diff --git a/dist/entypo/vinyl.js b/dist/entypo/vinyl.js new file mode 100644 index 000000000..41a9ca795 --- /dev/null +++ b/dist/entypo/vinyl.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.vinyl = void 0; +var vinyl = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M9.999,0.8C4.918,0.8,0.8,4.919,0.8,10.001c0,5.08,4.118,9.199,9.199,9.199c5.081,0,9.2-4.119,9.2-9.199\r\n\tC19.199,4.919,15.08,0.8,9.999,0.8z M10,13.001c-1.657,0-3-1.344-3-3c0-1.656,1.343-3,3-3c1.656,0,3,1.344,3,3\r\n\tC13,11.657,11.656,13.001,10,13.001z" + } + }] +}; +exports.vinyl = vinyl; \ No newline at end of file diff --git a/dist/entypo/vk.js b/dist/entypo/vk.js new file mode 100644 index 000000000..cf1dd6877 --- /dev/null +++ b/dist/entypo/vk.js @@ -0,0 +1,18 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.vk = void 0; +var vk = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M17.802,12.298c0,0,1.617,1.597,2.017,2.336c0.011,0.016,0.016,0.028,0.018,0.035\r\n\tc0.163,0.273,0.203,0.487,0.123,0.645c-0.135,0.261-0.592,0.392-0.747,0.403c0,0-2.778,0-2.858,0c-0.199,0-0.613-0.052-1.117-0.4\r\n\tc-0.385-0.269-0.768-0.712-1.139-1.145c-0.554-0.643-1.033-1.201-1.518-1.201c-0.062,0-0.122,0.01-0.18,0.03\r\n\tc-0.367,0.116-0.833,0.639-0.833,2.032c0,0.436-0.344,0.684-0.585,0.684c0,0-1.248,0-1.309,0c-0.446,0-2.768-0.156-4.827-2.327\r\n\tc-2.523-2.658-4.789-7.99-4.811-8.037C-0.105,5.008,0.191,4.82,0.511,4.82h2.886c0.387,0,0.513,0.234,0.601,0.444\r\n\tc0.102,0.241,0.48,1.205,1.1,2.288c1.004,1.762,1.621,2.479,2.114,2.479c0.093,0,0.181-0.023,0.264-0.07\r\n\tc0.644-0.354,0.524-2.654,0.494-3.128c0-0.092-0.001-1.027-0.331-1.479C7.403,5.03,7.001,4.904,6.758,4.858\r\n\tc0.065-0.094,0.203-0.238,0.38-0.323c0.441-0.22,1.238-0.252,2.029-0.252h0.439c0.858,0.012,1.08,0.067,1.392,0.146\r\n\tc0.628,0.15,0.64,0.557,0.585,1.943c-0.016,0.396-0.033,0.842-0.033,1.367c0,0.112-0.005,0.237-0.005,0.364\r\n\tc-0.019,0.711-0.044,1.512,0.458,1.841c0.064,0.04,0.139,0.062,0.217,0.062c0.174,0,0.695,0,2.108-2.425\r\n\tc0.62-1.071,1.1-2.334,1.133-2.429c0.028-0.053,0.112-0.202,0.214-0.262c0.078-0.048,0.182-0.056,0.236-0.056h3.395\r\n\tc0.37,0,0.621,0.056,0.67,0.196c0.082,0.227-0.016,0.92-1.566,3.016c-0.261,0.349-0.49,0.651-0.691,0.915\r\n\tC16.314,10.805,16.314,10.898,17.802,12.298z" + } + }] +}; +exports.vk = vk; \ No newline at end of file diff --git a/dist/entypo/voicemail.js b/dist/entypo/voicemail.js new file mode 100644 index 000000000..0ed7d1d70 --- /dev/null +++ b/dist/entypo/voicemail.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.voicemail = void 0; +var voicemail = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M15.4,5.801c-2.541,0-4.601,2.059-4.601,4.6c0,0.965,0.298,1.859,0.806,2.6H8.394c0.508-0.74,0.805-1.635,0.805-2.6\r\n\tc0-2.541-2.059-4.6-4.6-4.6c-2.54,0-4.6,2.059-4.6,4.6C0,12.941,2.059,15,4.6,15H15.4c2.54,0,4.6-2.059,4.6-4.6\r\n\tC20,7.859,17.94,5.801,15.4,5.801z M2,10.4c0-1.436,1.164-2.6,2.6-2.6c1.436,0,2.6,1.164,2.6,2.6c0,1.436-1.164,2.6-2.6,2.6\r\n\tC3.164,13,2,11.836,2,10.4z M15.4,13c-1.437,0-2.601-1.164-2.601-2.6c0-1.436,1.164-2.6,2.601-2.6c1.435,0,2.6,1.164,2.6,2.6\r\n\tC18,11.836,16.836,13,15.4,13z" + } + }] +}; +exports.voicemail = voicemail; \ No newline at end of file diff --git a/dist/entypo/volume.js b/dist/entypo/volume.js new file mode 100644 index 000000000..fac674568 --- /dev/null +++ b/dist/entypo/volume.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.volume = void 0; +var volume = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M19,13.805C19,14.462,18.462,15,17.805,15H1.533c-0.88,0-0.982-0.371-0.229-0.822l16.323-9.055C18.382,4.67,19,5.019,19,5.9\r\n\tV13.805z" + } + }] +}; +exports.volume = volume; \ No newline at end of file diff --git a/dist/entypo/wallet.js b/dist/entypo/wallet.js new file mode 100644 index 000000000..bdf4d3489 --- /dev/null +++ b/dist/entypo/wallet.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.wallet = void 0; +var wallet = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M16,6H3.5V5.5l11-0.88V5.5H16V4c0-1.1-0.891-1.872-1.979-1.717L3.98,3.717C2.891,3.873,2,4.9,2,6v10c0,1.104,0.895,2,2,2h12\r\n\tc1.104,0,2-0.896,2-2V8C18,6.896,17.104,6,16,6z M14.5,13.006c-0.828,0-1.5-0.672-1.5-1.5s0.672-1.5,1.5-1.5s1.5,0.672,1.5,1.5\r\n\tS15.328,13.006,14.5,13.006z" + } + }] +}; +exports.wallet = wallet; \ No newline at end of file diff --git a/dist/entypo/warning.js b/dist/entypo/warning.js new file mode 100644 index 000000000..d6e5a386b --- /dev/null +++ b/dist/entypo/warning.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.warning = void 0; +var warning = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M19.511,17.98L10.604,1.348C10.48,1.133,10.25,1,10,1C9.749,1,9.519,1.133,9.396,1.348L0.49,17.98\r\n\tc-0.121,0.211-0.119,0.471,0.005,0.68C0.62,18.871,0.847,19,1.093,19h17.814c0.245,0,0.474-0.129,0.598-0.34\r\n\tC19.629,18.451,19.631,18.191,19.511,17.98z M11,17H9v-2h2V17z M11,13.5H9V7h2V13.5z" + } + }] +}; +exports.warning = warning; \ No newline at end of file diff --git a/dist/entypo/water.js b/dist/entypo/water.js new file mode 100644 index 000000000..ad32af704 --- /dev/null +++ b/dist/entypo/water.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.water = void 0; +var water = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M9.882,9.093c-0.511,4.115-3.121,4.847-3.121,7.708C6.761,18.567,8.244,20,10,20c1.756,0,3.238-1.434,3.238-3.199\r\n\tc0-2.861-2.61-3.593-3.121-7.708C10.101,8.97,9.898,8.97,9.882,9.093z M3.883,0.093C3.372,4.208,0.762,4.939,0.762,7.801\r\n\tC0.762,9.566,2.244,11,4,11c1.756,0,3.238-1.434,3.238-3.199c0-2.861-2.61-3.593-3.121-7.708C4.102-0.03,3.898-0.03,3.883,0.093z\r\n\t M15.883,0.093c-0.511,4.115-3.121,4.847-3.121,7.708C12.762,9.566,14.244,11,16,11c1.756,0,3.238-1.434,3.238-3.199\r\n\tc0-2.861-2.61-3.593-3.121-7.708C16.101-0.03,15.898-0.03,15.883,0.093z" + } + }] +}; +exports.water = water; \ No newline at end of file diff --git a/dist/entypo/weibo.js b/dist/entypo/weibo.js new file mode 100644 index 000000000..a7aa9224d --- /dev/null +++ b/dist/entypo/weibo.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weibo = void 0; +var weibo = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M14.688,10.068c-0.274-0.084-0.463-0.142-0.319-0.508c0.311-0.797,0.344-1.484,0.007-1.975\r\n\tc-0.633-0.92-2.364-0.871-4.348-0.025c0-0.002-0.623,0.277-0.464-0.227C9.87,6.336,9.823,5.5,9.348,5.018\r\n\tC8.272,3.92,5.411,5.059,2.956,7.557C1.117,9.428,0.05,11.41,0.05,13.125c0,3.281,4.132,5.475,8.175,5.475\r\n\tc5.299,0,8.825-3.334,8.825-5.822C17.05,11.273,15.806,10.42,14.688,10.068z M8.236,17.129c-3.225,0.32-6.011-1.147-6.22-3.275\r\n\tc-0.209-2.129,2.236-4.115,5.462-4.438c3.226-0.32,6.011,1.146,6.22,3.275C13.907,14.822,11.462,16.809,8.236,17.129z M19.95,7.397\r\n\tc-0.001-3.312-2.686-5.996-6-5.996c-0.387,0-0.699,0.312-0.699,0.699s0.312,0.699,0.699,0.699c2.541,0,4.601,2.061,4.601,4.602\r\n\tc0,0.387,0.313,0.699,0.7,0.699S19.95,7.787,19.95,7.4V7.397z M17.169,7.295c-0.319-1.562-1.551-2.793-3.113-3.113\r\n\tc-0.378-0.078-0.748,0.166-0.826,0.545c-0.077,0.377,0.166,0.748,0.545,0.826c1.016,0.207,1.816,1.008,2.024,2.023\r\n\tc0.078,0.379,0.448,0.621,0.826,0.545C17.002,8.043,17.247,7.672,17.169,7.295z M6.582,11.502c-1.3,0.262-2.177,1.352-1.959,2.434\r\n\tc0.218,1.084,1.447,1.75,2.747,1.488c1.299-0.262,2.176-1.352,1.959-2.434C9.111,11.908,7.88,11.24,6.582,11.502z" + } + }] +}; +exports.weibo = weibo; \ No newline at end of file diff --git a/dist/entypo/withCircle.js b/dist/entypo/withCircle.js new file mode 100644 index 000000000..55524e007 --- /dev/null +++ b/dist/entypo/withCircle.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.withCircle = void 0; +var withCircle = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,0.4c-5.302,0-9.6,4.298-9.6,9.6s4.298,9.6,9.6,9.6c5.301,0,9.6-4.298,9.6-9.601C19.6,4.698,15.301,0.4,10,0.4z\r\n\t M9.849,15.599H9.798c-0.782-0.023-1.334-0.6-1.311-1.371c0.022-0.758,0.587-1.309,1.343-1.309l0.046,0.002\r\n\tc0.804,0.023,1.35,0.594,1.327,1.387C11.18,15.068,10.625,15.599,9.849,15.599z M13.14,9.068c-0.184,0.26-0.588,0.586-1.098,0.983\r\n\tl-0.562,0.387c-0.308,0.24-0.494,0.467-0.563,0.688c-0.056,0.174-0.082,0.221-0.087,0.576v0.09H8.685l0.006-0.182\r\n\tc0.027-0.744,0.045-1.184,0.354-1.547c0.485-0.568,1.555-1.258,1.6-1.287c0.154-0.115,0.283-0.246,0.379-0.387\r\n\tc0.225-0.311,0.324-0.555,0.324-0.793c0-0.334-0.098-0.643-0.293-0.916c-0.188-0.266-0.545-0.398-1.061-0.398\r\n\tc-0.512,0-0.863,0.162-1.072,0.496c-0.216,0.341-0.325,0.7-0.325,1.067v0.092H6.386L6.39,7.841c0.057-1.353,0.541-2.328,1.435-2.897\r\n\tC8.388,4.583,9.089,4.4,9.906,4.4c1.068,0,1.972,0.26,2.682,0.772c0.721,0.519,1.086,1.297,1.086,2.311\r\n\tC13.673,8.05,13.494,8.583,13.14,9.068z" + } + }] +}; +exports.withCircle = withCircle; \ No newline at end of file diff --git a/dist/entypo/withCircleDown.js b/dist/entypo/withCircleDown.js new file mode 100644 index 000000000..243d96497 --- /dev/null +++ b/dist/entypo/withCircleDown.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.withCircleDown = void 0; +var withCircleDown = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,0.4c-5.303,0-9.601,4.298-9.601,9.6c0,5.303,4.298,9.601,9.601,9.601c5.301,0,9.6-4.298,9.6-9.601\r\n\tC19.6,4.698,15.301,0.4,10,0.4z M9.999,17.6c-4.197,0-7.6-3.402-7.6-7.6s3.402-7.6,7.6-7.6S17.6,5.803,17.6,10\r\n\tS14.196,17.6,9.999,17.6z M12,6H8v4H5.5l4.5,4.5l4.5-4.5H12V6z" + } + }] +}; +exports.withCircleDown = withCircleDown; \ No newline at end of file diff --git a/dist/entypo/withCircleLeft.js b/dist/entypo/withCircleLeft.js new file mode 100644 index 000000000..292129f6b --- /dev/null +++ b/dist/entypo/withCircleLeft.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.withCircleLeft = void 0; +var withCircleLeft = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,0.4c-5.303,0-9.601,4.298-9.601,9.6c0,5.303,4.298,9.601,9.601,9.601c5.301,0,9.6-4.298,9.6-9.601\r\n\tC19.6,4.698,15.301,0.4,10,0.4z M9.999,17.6c-4.197,0-7.6-3.402-7.6-7.6s3.402-7.6,7.6-7.6S17.6,5.803,17.6,10\r\n\tS14.196,17.6,9.999,17.6z M10,5.5L5.5,10l4.5,4.5V12h4V8h-4V5.5z" + } + }] +}; +exports.withCircleLeft = withCircleLeft; \ No newline at end of file diff --git a/dist/entypo/withCircleRight.js b/dist/entypo/withCircleRight.js new file mode 100644 index 000000000..fbf0d5299 --- /dev/null +++ b/dist/entypo/withCircleRight.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.withCircleRight = void 0; +var withCircleRight = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,0.4c-5.303,0-9.601,4.298-9.601,9.6c0,5.303,4.298,9.601,9.601,9.601c5.301,0,9.6-4.298,9.6-9.601\r\n\tC19.6,4.698,15.301,0.4,10,0.4z M9.999,17.6c-4.197,0-7.6-3.402-7.6-7.6s3.402-7.6,7.6-7.6S17.6,5.803,17.6,10\r\n\tS14.196,17.6,9.999,17.6z M10,8H6v4h4v2.5l4.5-4.5L10,5.5V8z" + } + }] +}; +exports.withCircleRight = withCircleRight; \ No newline at end of file diff --git a/dist/entypo/withCircleUp.js b/dist/entypo/withCircleUp.js new file mode 100644 index 000000000..e87aad242 --- /dev/null +++ b/dist/entypo/withCircleUp.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.withCircleUp = void 0; +var withCircleUp = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,0.4c-5.303,0-9.601,4.298-9.601,9.6c0,5.303,4.298,9.601,9.601,9.601c5.301,0,9.6-4.298,9.6-9.601\r\n\tC19.6,4.698,15.301,0.4,10,0.4z M9.999,17.6c-4.197,0-7.6-3.402-7.6-7.6s3.402-7.6,7.6-7.6S17.6,5.803,17.6,10\r\n\tS14.196,17.6,9.999,17.6z M10,5.5l4.5,4.5H12v4H8v-4H5.5L10,5.5z" + } + }] +}; +exports.withCircleUp = withCircleUp; \ No newline at end of file diff --git a/dist/entypo/withCross.js b/dist/entypo/withCross.js new file mode 100644 index 000000000..441dbad07 --- /dev/null +++ b/dist/entypo/withCross.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.withCross = void 0; +var withCross = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,1.6c-4.639,0-8.4,3.761-8.4,8.4c0,4.639,3.761,8.4,8.4,8.4s8.4-3.761,8.4-8.4C18.4,5.361,14.639,1.6,10,1.6z\r\n\t M14.789,13.061l-1.729,1.729L10,11.729l-3.061,3.06l-1.729-1.729L8.272,10L5.211,6.939L6.94,5.211L10,8.271l3.061-3.061\r\n\tl1.729,1.729L11.728,10L14.789,13.061z" + } + }] +}; +exports.withCross = withCross; \ No newline at end of file diff --git a/dist/entypo/withLine.js b/dist/entypo/withLine.js new file mode 100644 index 000000000..ddf9d582e --- /dev/null +++ b/dist/entypo/withLine.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.withLine = void 0; +var withLine = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.5214844,1.4776001C18.131958,1.086853,17.4981079,1.086792,17.1074829,1.477478L1.4785156,17.1084595\r\n\tc-0.390625,0.390625-0.390625,1.0244141,0.0001221,1.4140015c0.390625,0.390686,1.0233765,0.390625,1.4140015-0.000061\r\n\tL18.5214233,2.8916016C18.9121704,2.5009766,18.9121704,1.8682251,18.5214844,1.4776001z M3.1083984,13.4973145l2.5593262-2.5584717\r\n\tC5.5981445,10.6357422,5.5546875,10.3234863,5.5546875,10c0-2.3789062,1.9902344-4.3085938,4.4453125-4.3085938\r\n\tc0.2861328,0,0.5644531,0.0314941,0.8354492,0.081665l1.2021484-1.2016602C11.394043,4.467041,10.7192383,4.4003906,10,4.4003906\r\n\tC3.4394531,4.4003906,0,9.2324219,0,10C0,10.4234619,1.057373,12.0908203,3.1083984,13.4973145z M16.8950195,6.5046387\r\n\tL14.3330078,9.065918C14.4018555,9.3674316,14.4443359,9.6784668,14.4443359,10\r\n\tc0,2.3789062-1.9892578,4.3066406-4.4443359,4.3066406c-0.2839355,0-0.5598145-0.0317383-0.8288574-0.0810547L7.967041,15.4291992\r\n\tC8.609375,15.5330811,9.2827148,15.5996094,10,15.5996094c6.5605469,0,10-4.8339844,10-5.5996094\r\n\tC20,9.5756836,18.9438477,7.9101562,16.8950195,6.5046387z" + } + }] +}; +exports.withLine = withLine; \ No newline at end of file diff --git a/dist/entypo/withMinus.js b/dist/entypo/withMinus.js new file mode 100644 index 000000000..cc489c47d --- /dev/null +++ b/dist/entypo/withMinus.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.withMinus = void 0; +var withMinus = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,1.6c-4.639,0-8.4,3.761-8.4,8.4c0,4.639,3.761,8.4,8.4,8.4s8.4-3.761,8.4-8.4C18.4,5.361,14.639,1.6,10,1.6z M15,11H5V9\r\n\th10V11z" + } + }] +}; +exports.withMinus = withMinus; \ No newline at end of file diff --git a/dist/entypo/withPlus.js b/dist/entypo/withPlus.js new file mode 100644 index 000000000..96dee8839 --- /dev/null +++ b/dist/entypo/withPlus.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.withPlus = void 0; +var withPlus = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,1.6c-4.639,0-8.4,3.761-8.4,8.4c0,4.639,3.761,8.4,8.4,8.4s8.4-3.761,8.4-8.4C18.4,5.361,14.639,1.6,10,1.6z M15,11h-4\r\n\tv4H9v-4H5V9h4V5h2v4h4V11z" + } + }] +}; +exports.withPlus = withPlus; \ No newline at end of file diff --git a/dist/entypo/xing.js b/dist/entypo/xing.js new file mode 100644 index 000000000..4bf6f9daa --- /dev/null +++ b/dist/entypo/xing.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.xing = void 0; +var xing = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M17.703,1h-2.828c-0.223,0-0.553,0.105-0.69,0.381S13.875,2,13.875,2l-5,10l3,6c0,0,0.172,0.344,0.31,0.619\r\n\tS12.652,19,12.875,19h2.828c0.5,0,0.48-0.381,0.355-0.631S15.875,18,15.875,18l-3-6l5-10c0,0,0.059-0.119,0.184-0.369\r\n\tS18.203,1,17.703,1z M6.815,5.381C6.678,5.105,6.348,5,6.125,5H3.297c-0.5,0-0.48,0.381-0.355,0.631S3.125,6,3.125,6l1.25,2.5\r\n\tL2.125,13c0,0-0.059,0.119-0.184,0.369S1.797,14,2.297,14h2.828c0.223,0,0.553-0.106,0.691-0.381C5.953,13.344,6.125,13,6.125,13\r\n\tl2.25-4.5L7.125,6C7.125,6,6.953,5.656,6.815,5.381z" + } + }] +}; +exports.xing = xing; \ No newline at end of file diff --git a/dist/entypo/yelp.js b/dist/entypo/yelp.js new file mode 100644 index 000000000..540d5d24c --- /dev/null +++ b/dist/entypo/yelp.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.yelp = void 0; +var yelp = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M12.538,12.471l4.523,1.466c0,0,0.647,0.119,0.64,0.552c-0.004,0.305-0.197,0.652-0.197,0.652l-1.91,2.756\r\n\tc0,0-0.341,0.286-0.686,0.286c-0.344,0-0.741-0.537-0.741-0.537l-2.417-4.073c0,0-0.272-0.594,0.05-0.921\r\n\tC12.095,12.352,12.538,12.471,12.538,12.471z M11.57,10.6c0.231,0.396,0.87,0.281,0.87,0.281l4.513-1.331\r\n\tc0,0,0.615-0.253,0.703-0.589c0.086-0.337-0.102-0.743-0.102-0.743l-2.157-2.564c0,0-0.187-0.324-0.575-0.357\r\n\tc-0.428-0.037-0.691,0.486-0.691,0.486l-2.55,4.05C11.582,9.832,11.357,10.235,11.57,10.6z M9.438,9.021\r\n\tc0.531-0.132,0.616-0.911,0.616-0.911l-0.036-6.485c0,0-0.08-0.8-0.436-1.017c-0.559-0.342-0.724-0.164-0.884-0.14L4.951,1.873\r\n\tc0,0-0.367,0.123-0.558,0.432C4.12,2.742,4.67,3.384,4.67,3.384l3.894,5.358C8.564,8.742,8.949,9.143,9.438,9.021z M8.513,11.645\r\n\tc0.013-0.5-0.595-0.801-0.595-0.801L3.89,8.791c0,0-0.597-0.248-0.887-0.075C2.782,8.848,2.585,9.088,2.566,9.299l-0.262,3.259\r\n\tc0,0-0.039,0.565,0.106,0.822c0.205,0.364,0.881,0.111,0.881,0.111l4.702-1.049C8.175,12.318,8.495,12.306,8.513,11.645z\r\n\t M9.682,13.404c-0.404-0.209-0.887,0.224-0.887,0.224l-3.148,3.498c0,0-0.393,0.535-0.293,0.863c0.094,0.308,0.25,0.461,0.47,0.569\r\n\tl3.162,1.007c0,0,0.383,0.08,0.674-0.005c0.412-0.121,0.336-0.772,0.336-0.772l0.071-4.736\r\n\tC10.067,14.053,10.051,13.597,9.682,13.404z" + } + }] +}; +exports.yelp = yelp; \ No newline at end of file diff --git a/dist/entypo/youko.js b/dist/entypo/youko.js new file mode 100644 index 000000000..200c41de3 --- /dev/null +++ b/dist/entypo/youko.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.youko = void 0; +var youko = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M19.418047,12.0796385c-0.5478516-1.0457487-2.1255493-1.7149191-2.8060303-2.6412954\r\n\tc0.4585571-1.0617428,2.9511719-1.7141776,2.7406616-3.5655117c-0.1517944-1.3371668-2.1604614-1.4112105-2.6756592-0.3305092\r\n\tc-0.3861084,0.4457431-0.7995005,0.8636346-1.2400522,1.254293c-0.2116089,0.269928-0.4511719,0.5119433-0.7175293,0.7264161\r\n\tc-0.3097534,0.3260632-0.5610962,0.7093105-0.979187,0.9249573V5.8728313c-0.0095825-1.400774-2.6002808-1.400774-2.6101685,0\r\n\tv7.3295012c0.1132812,0.5230598,0.3482666,0.9234743,0.9133911,0.9899845h0.7833252\r\n\tc0.5371704-0.0944233,0.8428955-0.4238205,0.9134521-0.9899845v-1.5851727c0-0.549428-0.1014404-1.4766083,0.2612305-0.9241543\r\n\tc0.5316772,0.5263948,1.2804565,1.0925589,1.9580078,1.7160301c0.6503305,0.6000061,1.272706,1.5688076,1.9572153,1.7170801\r\n\tC19.3184376,14.4302559,19.9368458,13.068881,19.418047,12.0796385z M8.1933756,4.1556897\r\n\tC7.636735,4.5449276,7.3271646,5.7449384,6.9533243,6.5988774C6.5416422,7.5382848,6.1798868,8.4847937,5.7787027,9.1743431\r\n\tC4.6934977,7.9286342,3.9533243,5.1675968,2.6461954,4.1556897c-0.4216309-0.3260012-1.3457031-0.3167379-1.7619629,0\r\n\tC-0.241744,5.0133343,0.8880777,6.5300832,1.3409586,7.3256645c0.9940186,1.7442522,2.0955811,3.6115799,2.9366455,5.2160816\r\n\tc-0.5467529,1.4587612-3.3081665,5.5814819,0.3916626,5.3487911c0.8953857-0.5855541,1.2750854-1.8037815,1.762146-2.9060354\r\n\tc0.9957275-2.255393,1.8415527-4.204113,2.8713989-6.5365133c0.4280396-0.9695439,1.4592285-2.4023066,1.2398682-3.500052\r\n\tC10.3683634,4.0776324,9.0449381,3.5608718,8.1933756,4.1556897z" + } + }] +}; +exports.youko = youko; \ No newline at end of file diff --git a/dist/entypo/youtube.js b/dist/entypo/youtube.js new file mode 100644 index 000000000..eb36c9152 --- /dev/null +++ b/dist/entypo/youtube.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.youtube = void 0; +var youtube = { + "viewBox": "0 0 20 20", + "children": [{ + "name": "path", + "attribs": { + "d": "M10,2.3C0.172,2.3,0,3.174,0,10s0.172,7.7,10,7.7s10-0.874,10-7.7S19.828,2.3,10,2.3z M13.205,10.334l-4.49,2.096\r\n\tC8.322,12.612,8,12.408,8,11.974V8.026C8,7.593,8.322,7.388,8.715,7.57l4.49,2.096C13.598,9.85,13.598,10.15,13.205,10.334z" + } + }] +}; +exports.youtube = youtube; \ No newline at end of file diff --git a/dist/fa/addressBook.js b/dist/fa/addressBook.js new file mode 100644 index 000000000..b2c5ea3ec --- /dev/null +++ b/dist/fa/addressBook.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.addressBook = void 0; +var addressBook = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1201 1238q0-57-5.5-107t-21-100.5-39.5-86-64-58-91-22.5q-6 4-33.5 20.5t-42.5 24.5-40.5 20-49 17-46.5 5-46.5-5-49-17-40.5-20-42.5-24.5-33.5-20.5q-51 0-91 22.5t-64 58-39.5 86-21 100.5-5.5 107q0 73 42 121.5t103 48.5h576q61 0 103-48.5t42-121.5zM1028 644q0-108-76.5-184t-183.5-76-183.5 76-76.5 184q0 107 76.5 183t183.5 76 183.5-76 76.5-183zM1664 1184v192q0 14-9 23t-23 9h-96v224q0 66-47 113t-113 47h-1216q-66 0-113-47t-47-113v-1472q0-66 47-113t113-47h1216q66 0 113 47t47 113v224h96q14 0 23 9t9 23v192q0 14-9 23t-23 9h-96v128h96q14 0 23 9t9 23v192q0 14-9 23t-23 9h-96v128h96q14 0 23 9t9 23z" + } + }] +}; +exports.addressBook = addressBook; \ No newline at end of file diff --git a/dist/fa/addressBookO.js b/dist/fa/addressBookO.js new file mode 100644 index 000000000..56c39f895 --- /dev/null +++ b/dist/fa/addressBookO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.addressBookO = void 0; +var addressBookO = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1028 644q0 107-76.5 183t-183.5 76-183.5-76-76.5-183q0-108 76.5-184t183.5-76 183.5 76 76.5 184zM980 864q46 0 82.5 17t60 47.5 39.5 67 24 81 11.5 82.5 3.5 79q0 67-39.5 118.5t-105.5 51.5h-576q-66 0-105.5-51.5t-39.5-118.5q0-48 4.5-93.5t18.5-98.5 36.5-91.5 63-64.5 93.5-26h5q7 4 32 19.5t35.5 21 33 17 37 16 35 9 39.5 4.5 39.5-4.5 35-9 37-16 33-17 35.5-21 32-19.5zM1664 608q0 13-9.5 22.5t-22.5 9.5h-96v128h96q13 0 22.5 9.5t9.5 22.5v192q0 13-9.5 22.5t-22.5 9.5h-96v128h96q13 0 22.5 9.5t9.5 22.5v192q0 13-9.5 22.5t-22.5 9.5h-96v224q0 66-47 113t-113 47h-1216q-66 0-113-47t-47-113v-1472q0-66 47-113t113-47h1216q66 0 113 47t47 113v224h96q13 0 22.5 9.5t9.5 22.5v192zM1408 1632v-1472q0-13-9.5-22.5t-22.5-9.5h-1216q-13 0-22.5 9.5t-9.5 22.5v1472q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5-9.5t9.5-22.5z" + } + }] +}; +exports.addressBookO = addressBookO; \ No newline at end of file diff --git a/dist/fa/addressCard.js b/dist/fa/addressCard.js new file mode 100644 index 000000000..a8427c711 --- /dev/null +++ b/dist/fa/addressCard.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.addressCard = void 0; +var addressCard = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 1131q0-64-9-117.5t-29.5-103-60.5-78-97-28.5q-6 4-30 18t-37.5 21.5-35.5 17.5-43 14.5-42 4.5-42-4.5-43-14.5-35.5-17.5-37.5-21.5-30-18q-57 0-97 28.5t-60.5 78-29.5 103-9 117.5 37 106.5 91 42.5h512q54 0 91-42.5t37-106.5zM867 611q0-94-66.5-160.5t-160.5-66.5-160.5 66.5-66.5 160.5 66.5 160.5 160.5 66.5 160.5-66.5 66.5-160.5zM1792 1120v-64q0-14-9-23t-23-9h-576q-14 0-23 9t-9 23v64q0 14 9 23t23 9h576q14 0 23-9t9-23zM1792 860v-56q0-15-10.5-25.5t-25.5-10.5h-568q-15 0-25.5 10.5t-10.5 25.5v56q0 15 10.5 25.5t25.5 10.5h568q15 0 25.5-10.5t10.5-25.5zM1792 608v-64q0-14-9-23t-23-9h-576q-14 0-23 9t-9 23v64q0 14 9 23t23 9h576q14 0 23-9t9-23zM2048 288v1216q0 66-47 113t-113 47h-352v-96q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v96h-768v-96q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v96h-352q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1728q66 0 113 47t47 113z" + } + }] +}; +exports.addressCard = addressCard; \ No newline at end of file diff --git a/dist/fa/addressCardO.js b/dist/fa/addressCardO.js new file mode 100644 index 000000000..d13d20e5d --- /dev/null +++ b/dist/fa/addressCardO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.addressCardO = void 0; +var addressCardO = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 1131q0 64-37 106.5t-91 42.5h-512q-54 0-91-42.5t-37-106.5 9-117.5 29.5-103 60.5-78 97-28.5q6 4 30 18t37.5 21.5 35.5 17.5 43 14.5 42 4.5 42-4.5 43-14.5 35.5-17.5 37.5-21.5 30-18q57 0 97 28.5t60.5 78 29.5 103 9 117.5zM867 611q0 94-66.5 160.5t-160.5 66.5-160.5-66.5-66.5-160.5 66.5-160.5 160.5-66.5 160.5 66.5 66.5 160.5zM1792 1056v64q0 14-9 23t-23 9h-576q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h576q14 0 23 9t9 23zM1792 804v56q0 15-10.5 25.5t-25.5 10.5h-568q-15 0-25.5-10.5t-10.5-25.5v-56q0-15 10.5-25.5t25.5-10.5h568q15 0 25.5 10.5t10.5 25.5zM1792 544v64q0 14-9 23t-23 9h-576q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h576q14 0 23 9t9 23zM1920 1504v-1216q0-13-9.5-22.5t-22.5-9.5h-1728q-13 0-22.5 9.5t-9.5 22.5v1216q0 13 9.5 22.5t22.5 9.5h352v-96q0-14 9-23t23-9h64q14 0 23 9t9 23v96h768v-96q0-14 9-23t23-9h64q14 0 23 9t9 23v96h352q13 0 22.5-9.5t9.5-22.5zM2048 288v1216q0 66-47 113t-113 47h-1728q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1728q66 0 113 47t47 113z" + } + }] +}; +exports.addressCardO = addressCardO; \ No newline at end of file diff --git a/dist/fa/adjust.js b/dist/fa/adjust.js new file mode 100644 index 000000000..0f7f2a6a1 --- /dev/null +++ b/dist/fa/adjust.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.adjust = void 0; +var adjust = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M768 1440v-1088q-148 0-273 73t-198 198-73 273 73 273 198 198 273 73zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.adjust = adjust; \ No newline at end of file diff --git a/dist/fa/adn.js b/dist/fa/adn.js new file mode 100644 index 000000000..da26103bf --- /dev/null +++ b/dist/fa/adn.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.adn = void 0; +var adn = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M768 622l201 306h-402zM1133 1152h94l-459-691-459 691h94l104-160h522zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.adn = adn; \ No newline at end of file diff --git a/dist/fa/alignCenter.js b/dist/fa/alignCenter.js new file mode 100644 index 000000000..bb1edf904 --- /dev/null +++ b/dist/fa/alignCenter.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.alignCenter = void 0; +var alignCenter = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1792 1344v128q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1664q26 0 45 19t19 45zM1408 960v128q0 26-19 45t-45 19h-896q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h896q26 0 45 19t19 45zM1664 576v128q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1408q26 0 45 19t19 45zM1280 192v128q0 26-19 45t-45 19h-640q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h640q26 0 45 19t19 45z" + } + }] +}; +exports.alignCenter = alignCenter; \ No newline at end of file diff --git a/dist/fa/alignJustify.js b/dist/fa/alignJustify.js new file mode 100644 index 000000000..2f39d6f6c --- /dev/null +++ b/dist/fa/alignJustify.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.alignJustify = void 0; +var alignJustify = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1792 1344v128q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1664q26 0 45 19t19 45zM1792 960v128q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1664q26 0 45 19t19 45zM1792 576v128q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1664q26 0 45 19t19 45zM1792 192v128q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1664q26 0 45 19t19 45z" + } + }] +}; +exports.alignJustify = alignJustify; \ No newline at end of file diff --git a/dist/fa/alignLeft.js b/dist/fa/alignLeft.js new file mode 100644 index 000000000..ab017b8ef --- /dev/null +++ b/dist/fa/alignLeft.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.alignLeft = void 0; +var alignLeft = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1792 1344v128q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1664q26 0 45 19t19 45zM1408 960v128q0 26-19 45t-45 19h-1280q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1280q26 0 45 19t19 45zM1664 576v128q0 26-19 45t-45 19h-1536q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1536q26 0 45 19t19 45zM1280 192v128q0 26-19 45t-45 19h-1152q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1152q26 0 45 19t19 45z" + } + }] +}; +exports.alignLeft = alignLeft; \ No newline at end of file diff --git a/dist/fa/alignRight.js b/dist/fa/alignRight.js new file mode 100644 index 000000000..98fdad964 --- /dev/null +++ b/dist/fa/alignRight.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.alignRight = void 0; +var alignRight = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1792 1344v128q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1664q26 0 45 19t19 45zM1792 960v128q0 26-19 45t-45 19h-1280q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1280q26 0 45 19t19 45zM1792 576v128q0 26-19 45t-45 19h-1536q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1536q26 0 45 19t19 45zM1792 192v128q0 26-19 45t-45 19h-1152q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1152q26 0 45 19t19 45z" + } + }] +}; +exports.alignRight = alignRight; \ No newline at end of file diff --git a/dist/fa/amazon.js b/dist/fa/amazon.js new file mode 100644 index 000000000..c3a7e3ef3 --- /dev/null +++ b/dist/fa/amazon.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.amazon = void 0; +var amazon = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1551 1476q15-6 26-3t11 17.5-15 33.5q-13 16-44 43.5t-95.5 68-141 74-188 58-229.5 24.5q-119 0-238-31t-209-76.5-172.5-104-132.5-105-84-87.5q-8-9-10-16.5t1-12 8-7 11.5-2 11.5 4.5q192 117 300 166 389 176 799 90 190-40 391-135zM1758 1361q11 16 2.5 69.5t-28.5 102.5q-34 83-85 124-17 14-26 9t0-24q21-45 44.5-121.5t6.5-98.5q-5-7-15.5-11.5t-27-6-29.5-2.5-35 0-31.5 2-31 3-22.5 2q-6 1-13 1.5t-11 1-8.5 1-7 0.5h-5.5-4.5t-3-0.5-2-1.5l-1.5-3q-6-16 47-40t103-30q46-7 108-1t76 24zM1364 918q0 31 13.5 64t32 58 37.5 46 33 32l13 11-227 224q-40-37-79-75.5t-58-58.5l-19-20q-11-11-25-33-38 59-97.5 102.5t-127.5 63.5-140 23-137.5-21-117.5-65.5-83-113-31-162.5q0-84 28-154t72-116.5 106.5-83 122.5-57 130-34.5 119.5-18.5 99.5-6.5v-127q0-65-21-97-34-53-121-53-6 0-16.5 1t-40.5 12-56 29.5-56 59.5-48 96l-294-27q0-60 22-119t67-113 108-95 151.5-65.5 190.5-24.5q100 0 181 25t129.5 61.5 81 83 45 86 12.5 73.5v589zM692 939q0 86 70 133 66 44 139 22 84-25 114-123 14-45 14-101v-162q-59 2-111 12t-106.5 33.5-87 71-32.5 114.5z" + } + }] +}; +exports.amazon = amazon; \ No newline at end of file diff --git a/dist/fa/ambulance.js b/dist/fa/ambulance.js new file mode 100644 index 000000000..b43312d62 --- /dev/null +++ b/dist/fa/ambulance.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ambulance = void 0; +var ambulance = { + "viewBox": "0 0 1920 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 1408q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM256 896h384v-256h-158q-14 2-22 9l-195 195q-7 12-9 22v30zM1536 1408q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1664 736v-192q0-14-9-23t-23-9h-224v-224q0-14-9-23t-23-9h-192q-14 0-23 9t-9 23v224h-224q-14 0-23 9t-9 23v192q0 14 9 23t23 9h224v224q0 14 9 23t23 9h192q14 0 23-9t9-23v-224h224q14 0 23-9t9-23zM1920 192v1152q0 26-19 45t-45 19h-192q0 106-75 181t-181 75-181-75-75-181h-384q0 106-75 181t-181 75-181-75-75-181h-128q-26 0-45-19t-19-45 19-45 45-19v-416q0-26 13-58t32-51l198-198q19-19 51-32t58-13h160v-320q0-26 19-45t45-19h1152q26 0 45 19t19 45z" + } + }] +}; +exports.ambulance = ambulance; \ No newline at end of file diff --git a/dist/fa/americanSignLanguageInterpreting.js b/dist/fa/americanSignLanguageInterpreting.js new file mode 100644 index 000000000..034353b93 --- /dev/null +++ b/dist/fa/americanSignLanguageInterpreting.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.americanSignLanguageInterpreting = void 0; +var americanSignLanguageInterpreting = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1032 960q-59-2-84-55-17-34-48-53.5t-68-19.5q-53 0-90.5 37.5t-37.5 90.5q0 56 36 89l10 8q34 31 82 31 37 0 68-19.5t48-53.5q25-53 84-55zM1600 832q0-56-36-89l-10-8q-34-31-82-31-37 0-68 19.5t-48 53.5q-25 53-84 55 59 2 84 55 17 34 48 53.5t68 19.5q53 0 90.5-37.5t37.5-90.5zM1174 611q-17 35-55 48t-73-4q-62-31-134-31-51 0-99 17 3 0 9.5-0.5t9.5-0.5q92 0 170.5 50t118.5 133q17 36 3.5 73.5t-49.5 54.5q-18 9-39 9 21 0 39 9 36 17 49.5 54.5t-3.5 73.5q-40 83-118.5 133t-170.5 50h-6q-16-2-44-4l-290-27-239 120q-14 7-29 7-40 0-57-35l-160-320q-11-23-4-47.5t29-37.5l209-119 148-267q17-155 91.5-291.5t195.5-236.5q31-25 70.5-21.5t64.5 34.5 21.5 70-34.5 65q-70 59-117 128 123-84 267-101 40-5 71.5 19t35.5 64q5 40-19 71.5t-64 35.5q-84 10-159 55 46-10 99-10 115 0 218 50 36 18 49 55.5t-5 73.5zM2137 451l160 320q11 23 4 47.5t-29 37.5l-209 119-148 267q-17 155-91.5 291.5t-195.5 236.5q-26 22-61 22-45 0-74-35-25-31-21.5-70t34.5-65q70-59 117-128-123 84-267 101-4 1-12 1-36 0-63.5-24t-31.5-60q-5-40 19-71.5t64-35.5q84-10 159-55-46 10-99 10-115 0-218-50-36-18-49-55.5t5-73.5q17-35 55-48t73 4q62 31 134 31 51 0 99-17-3 0-9.5 0.5t-9.5 0.5q-92 0-170.5-50t-118.5-133q-17-36-3.5-73.5t49.5-54.5q18-9 39-9-21 0-39-9-36-17-49.5-54.5t3.5-73.5q40-83 118.5-133t170.5-50h6 1q14 2 42 4l291 27 239-120q14-7 29-7 40 0 57 35z" + } + }] +}; +exports.americanSignLanguageInterpreting = americanSignLanguageInterpreting; \ No newline at end of file diff --git a/dist/fa/anchor.js b/dist/fa/anchor.js new file mode 100644 index 000000000..651ae2d2d --- /dev/null +++ b/dist/fa/anchor.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.anchor = void 0; +var anchor = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M960 256q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zM1792 1184v352q0 22-20 30-8 2-12 2-12 0-23-9l-93-93q-119 143-318.5 226.5t-429.5 83.5-429.5-83.5-318.5-226.5l-93 93q-9 9-23 9-4 0-12-2-20-8-20-30v-352q0-14 9-23t23-9h352q22 0 30 20 8 19-7 35l-100 100q67 91 189.5 153.5t271.5 82.5v-647h-192q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h192v-163q-58-34-93-92.5t-35-128.5q0-106 75-181t181-75 181 75 75 181q0 70-35 128.5t-93 92.5v163h192q26 0 45 19t19 45v128q0 26-19 45t-45 19h-192v647q149-20 271.5-82.5t189.5-153.5l-100-100q-15-16-7-35 8-20 30-20h352q14 0 23 9t9 23z" + } + }] +}; +exports.anchor = anchor; \ No newline at end of file diff --git a/dist/fa/android.js b/dist/fa/android.js new file mode 100644 index 000000000..9f571816e --- /dev/null +++ b/dist/fa/android.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.android = void 0; +var android = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M493 483q16 0 27.5-11.5t11.5-27.5-11.5-27.5-27.5-11.5-27 11.5-11 27.5 11 27.5 27 11.5zM915 483q16 0 27-11.5t11-27.5-11-27.5-27-11.5-27.5 11.5-11.5 27.5 11.5 27.5 27.5 11.5zM103 667q42 0 72 30t30 72v430q0 43-29.5 73t-72.5 30-73-30-30-73v-430q0-42 30-72t73-30zM1163 686v666q0 46-32 78t-77 32h-75v227q0 43-30 73t-73 30-73-30-30-73v-227h-138v227q0 43-30 73t-73 30q-42 0-72-30t-30-73l-1-227h-74q-46 0-78-32t-32-78v-666h918zM931 281q107 55 171 153.5t64 215.5h-925q0-117 64-215.5t172-153.5l-71-131q-7-13 5-20 13-6 20 6l72 132q95-42 201-42t201 42l72-132q7-12 20-6 12 7 5 20zM1408 769v430q0 43-30 73t-73 30q-42 0-72-30t-30-73v-430q0-43 30-72.5t72-29.5q43 0 73 29.5t30 72.5z" + } + }] +}; +exports.android = android; \ No newline at end of file diff --git a/dist/fa/angellist.js b/dist/fa/angellist.js new file mode 100644 index 000000000..2eb58257b --- /dev/null +++ b/dist/fa/angellist.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.angellist = void 0; +var angellist = { + "viewBox": "0 0 1280 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M953 378l-114 328 117 21q165-451 165-518 0-56-38-56-57 0-130 225zM654 1065l33 88q37-42 71-67l-33-5.5t-38.5-7-32.5-8.5zM362 169q0 98 159 521 17-10 49-10 15 0 75 5l-121-351q-75-220-123-220-19 0-29 17.5t-10 37.5zM283 928q0 36 51.5 119t117.5 153 100 70q14 0 25.5-13t11.5-27q0-24-32-102-13-32-32-72t-47.5-89-61.5-81-62-32q-20 0-45.5 27t-25.5 47zM125 1263q0 41 25 104 59 145 183.5 227t281.5 82q227 0 382-170 152-169 152-427 0-43-1-67t-11.5-62-30.5-56q-56-49-211.5-75.5t-270.5-26.5q-37 0-49 11-12 5-12 35 0 34 21.5 60t55.5 40 77.5 23.5 87.5 11.5 85 4 70 0h23q24 0 40 19 15 19 19 55-28 28-96 54-61 22-93 46-64 46-108.5 114t-44.5 137q0 31 18.5 88.5t18.5 87.5l-3 12q-4 12-4 14-137-10-146-216-8 2-41 2 2 7 2 21 0 53-40.5 89.5t-94.5 36.5q-82 0-166.5-78t-84.5-159q0-34 33-67 52 64 60 76 77 104 133 104 12 0 26.5-8.5t14.5-20.5q0-34-87.5-145t-116.5-111q-43 0-70 44.5t-27 90.5zM11 1272q0-101 42.5-163t136.5-88q-28-74-28-104 0-62 61-123t122-61q29 0 70 15-163-462-163-567 0-80 41-130.5t119-50.5q131 0 325 581 6 17 8 23 6-16 29-79.5t43.5-118.5 54-127.5 64.5-123 70.5-86.5 76.5-36q71 0 112 49t41 122q0 108-159 550 61 15 100.5 46t58.5 78 26 93.5 7 110.5q0 150-47 280t-132 225-211 150-278 55q-111 0-223-42-149-57-258-191.5t-109-286.5z" + } + }] +}; +exports.angellist = angellist; \ No newline at end of file diff --git a/dist/fa/angleDoubleDown.js b/dist/fa/angleDoubleDown.js new file mode 100644 index 000000000..d55dd008b --- /dev/null +++ b/dist/fa/angleDoubleDown.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.angleDoubleDown = void 0; +var angleDoubleDown = { + "viewBox": "0 0 1152 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1075 864q0 13-10 23l-466 466q-10 10-23 10t-23-10l-466-466q-10-10-10-23t10-23l50-50q10-10 23-10t23 10l393 393 393-393q10-10 23-10t23 10l50 50q10 10 10 23zM1075 480q0 13-10 23l-466 466q-10 10-23 10t-23-10l-466-466q-10-10-10-23t10-23l50-50q10-10 23-10t23 10l393 393 393-393q10-10 23-10t23 10l50 50q10 10 10 23z" + } + }] +}; +exports.angleDoubleDown = angleDoubleDown; \ No newline at end of file diff --git a/dist/fa/angleDoubleLeft.js b/dist/fa/angleDoubleLeft.js new file mode 100644 index 000000000..a2cf9496d --- /dev/null +++ b/dist/fa/angleDoubleLeft.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.angleDoubleLeft = void 0; +var angleDoubleLeft = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M627 1376q0 13-10 23l-50 50q-10 10-23 10t-23-10l-466-466q-10-10-10-23t10-23l466-466q10-10 23-10t23 10l50 50q10 10 10 23t-10 23l-393 393 393 393q10 10 10 23zM1011 1376q0 13-10 23l-50 50q-10 10-23 10t-23-10l-466-466q-10-10-10-23t10-23l466-466q10-10 23-10t23 10l50 50q10 10 10 23t-10 23l-393 393 393 393q10 10 10 23z" + } + }] +}; +exports.angleDoubleLeft = angleDoubleLeft; \ No newline at end of file diff --git a/dist/fa/angleDoubleRight.js b/dist/fa/angleDoubleRight.js new file mode 100644 index 000000000..bbb96f525 --- /dev/null +++ b/dist/fa/angleDoubleRight.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.angleDoubleRight = void 0; +var angleDoubleRight = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M595 960q0 13-10 23l-466 466q-10 10-23 10t-23-10l-50-50q-10-10-10-23t10-23l393-393-393-393q-10-10-10-23t10-23l50-50q10-10 23-10t23 10l466 466q10 10 10 23zM979 960q0 13-10 23l-466 466q-10 10-23 10t-23-10l-50-50q-10-10-10-23t10-23l393-393-393-393q-10-10-10-23t10-23l50-50q10-10 23-10t23 10l466 466q10 10 10 23z" + } + }] +}; +exports.angleDoubleRight = angleDoubleRight; \ No newline at end of file diff --git a/dist/fa/angleDoubleUp.js b/dist/fa/angleDoubleUp.js new file mode 100644 index 000000000..98ce07c8f --- /dev/null +++ b/dist/fa/angleDoubleUp.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.angleDoubleUp = void 0; +var angleDoubleUp = { + "viewBox": "0 0 1152 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1075 1312q0 13-10 23l-50 50q-10 10-23 10t-23-10l-393-393-393 393q-10 10-23 10t-23-10l-50-50q-10-10-10-23t10-23l466-466q10-10 23-10t23 10l466 466q10 10 10 23zM1075 928q0 13-10 23l-50 50q-10 10-23 10t-23-10l-393-393-393 393q-10 10-23 10t-23-10l-50-50q-10-10-10-23t10-23l466-466q10-10 23-10t23 10l466 466q10 10 10 23z" + } + }] +}; +exports.angleDoubleUp = angleDoubleUp; \ No newline at end of file diff --git a/dist/fa/angleDown.js b/dist/fa/angleDown.js new file mode 100644 index 000000000..abe93b2b1 --- /dev/null +++ b/dist/fa/angleDown.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.angleDown = void 0; +var angleDown = { + "viewBox": "0 0 1152 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1075 736q0 13-10 23l-466 466q-10 10-23 10t-23-10l-466-466q-10-10-10-23t10-23l50-50q10-10 23-10t23 10l393 393 393-393q10-10 23-10t23 10l50 50q10 10 10 23z" + } + }] +}; +exports.angleDown = angleDown; \ No newline at end of file diff --git a/dist/fa/angleLeft.js b/dist/fa/angleLeft.js new file mode 100644 index 000000000..6c822f033 --- /dev/null +++ b/dist/fa/angleLeft.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.angleLeft = void 0; +var angleLeft = { + "viewBox": "0 0 640 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M627 544q0 13-10 23l-393 393 393 393q10 10 10 23t-10 23l-50 50q-10 10-23 10t-23-10l-466-466q-10-10-10-23t10-23l466-466q10-10 23-10t23 10l50 50q10 10 10 23z" + } + }] +}; +exports.angleLeft = angleLeft; \ No newline at end of file diff --git a/dist/fa/angleRight.js b/dist/fa/angleRight.js new file mode 100644 index 000000000..2f64c1dab --- /dev/null +++ b/dist/fa/angleRight.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.angleRight = void 0; +var angleRight = { + "viewBox": "0 0 640 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M595 960q0 13-10 23l-466 466q-10 10-23 10t-23-10l-50-50q-10-10-10-23t10-23l393-393-393-393q-10-10-10-23t10-23l50-50q10-10 23-10t23 10l466 466q10 10 10 23z" + } + }] +}; +exports.angleRight = angleRight; \ No newline at end of file diff --git a/dist/fa/angleUp.js b/dist/fa/angleUp.js new file mode 100644 index 000000000..2ff4ba45b --- /dev/null +++ b/dist/fa/angleUp.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.angleUp = void 0; +var angleUp = { + "viewBox": "0 0 1152 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1075 1184q0 13-10 23l-50 50q-10 10-23 10t-23-10l-393-393-393 393q-10 10-23 10t-23-10l-50-50q-10-10-10-23t10-23l466-466q10-10 23-10t23 10l466 466q10 10 10 23z" + } + }] +}; +exports.angleUp = angleUp; \ No newline at end of file diff --git a/dist/fa/apple.js b/dist/fa/apple.js new file mode 100644 index 000000000..501ec7989 --- /dev/null +++ b/dist/fa/apple.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.apple = void 0; +var apple = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1393 1215q-39 125-123 250-129 196-257 196-49 0-140-32-86-32-151-32-61 0-142 33-81 34-132 34-152 0-301-259-147-261-147-503 0-228 113-374 113-144 284-144 72 0 177 30 104 30 138 30 45 0 143-34 102-34 173-34 119 0 213 65 52 36 104 100-79 67-114 118-65 94-65 207 0 124 69 223t158 126zM1017 42q0 61-29 136-30 75-93 138-54 54-108 72-37 11-104 17 3-149 78-257 74-107 250-148 1 3 2.5 11t2.5 11q0 4 0.5 10t0.5 10z" + } + }] +}; +exports.apple = apple; \ No newline at end of file diff --git a/dist/fa/archive.js b/dist/fa/archive.js new file mode 100644 index 000000000..b79659dbe --- /dev/null +++ b/dist/fa/archive.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.archive = void 0; +var archive = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1088 832q0-26-19-45t-45-19h-256q-26 0-45 19t-19 45 19 45 45 19h256q26 0 45-19t19-45zM1664 640v960q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-960q0-26 19-45t45-19h1408q26 0 45 19t19 45zM1728 192v256q0 26-19 45t-45 19h-1536q-26 0-45-19t-19-45v-256q0-26 19-45t45-19h1536q26 0 45 19t19 45z" + } + }] +}; +exports.archive = archive; \ No newline at end of file diff --git a/dist/fa/areaChart.js b/dist/fa/areaChart.js new file mode 100644 index 000000000..637f910ed --- /dev/null +++ b/dist/fa/areaChart.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.areaChart = void 0; +var areaChart = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M2048 1536v128h-2048v-1536h128v1408h1920zM1664 512l256 896h-1664v-576l448-576 576 576z" + } + }] +}; +exports.areaChart = areaChart; \ No newline at end of file diff --git a/dist/fa/arrowCircleDown.js b/dist/fa/arrowCircleDown.js new file mode 100644 index 000000000..3f64eee17 --- /dev/null +++ b/dist/fa/arrowCircleDown.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowCircleDown = void 0; +var arrowCircleDown = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1284 897q0-27-18-45l-91-91q-18-18-45-18t-45 18l-189 189v-502q0-26-19-45t-45-19h-128q-26 0-45 19t-19 45v502l-189-189q-19-19-45-19t-45 19l-91 91q-18 18-18 45t18 45l362 362 91 91q18 18 45 18t45-18l91-91 362-362q18-18 18-45zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.arrowCircleDown = arrowCircleDown; \ No newline at end of file diff --git a/dist/fa/arrowCircleLeft.js b/dist/fa/arrowCircleLeft.js new file mode 100644 index 000000000..306c577c7 --- /dev/null +++ b/dist/fa/arrowCircleLeft.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowCircleLeft = void 0; +var arrowCircleLeft = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1280 960v-128q0-26-19-45t-45-19h-502l189-189q19-19 19-45t-19-45l-91-91q-18-18-45-18t-45 18l-362 362-91 91q-18 18-18 45t18 45l91 91 362 362q18 18 45 18t45-18l91-91q18-18 18-45t-18-45l-189-189h502q26 0 45-19t19-45zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.arrowCircleLeft = arrowCircleLeft; \ No newline at end of file diff --git a/dist/fa/arrowCircleODown.js b/dist/fa/arrowCircleODown.js new file mode 100644 index 000000000..d94049efe --- /dev/null +++ b/dist/fa/arrowCircleODown.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowCircleODown = void 0; +var arrowCircleODown = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1120 928q0 12-10 24l-319 319q-11 9-23 9t-23-9l-320-320q-15-16-7-35 8-20 30-20h192v-352q0-14 9-23t23-9h192q14 0 23 9t9 23v352h192q14 0 23 9t9 23zM768 352q-148 0-273 73t-198 198-73 273 73 273 198 198 273 73 273-73 198-198 73-273-73-273-198-198-273-73zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.arrowCircleODown = arrowCircleODown; \ No newline at end of file diff --git a/dist/fa/arrowCircleOLeft.js b/dist/fa/arrowCircleOLeft.js new file mode 100644 index 000000000..984d2a280 --- /dev/null +++ b/dist/fa/arrowCircleOLeft.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowCircleOLeft = void 0; +var arrowCircleOLeft = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1152 800v192q0 13-9.5 22.5t-22.5 9.5h-352v192q0 14-9 23t-23 9q-12 0-24-10l-319-319q-9-9-9-23t9-23l320-320q9-9 23-9 13 0 22.5 9.5t9.5 22.5v192h352q13 0 22.5 9.5t9.5 22.5zM1312 896q0-148-73-273t-198-198-273-73-273 73-198 198-73 273 73 273 198 198 273 73 273-73 198-198 73-273zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.arrowCircleOLeft = arrowCircleOLeft; \ No newline at end of file diff --git a/dist/fa/arrowCircleORight.js b/dist/fa/arrowCircleORight.js new file mode 100644 index 000000000..56a858c2c --- /dev/null +++ b/dist/fa/arrowCircleORight.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowCircleORight = void 0; +var arrowCircleORight = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1152 896q0 14-9 23l-320 320q-9 9-23 9-13 0-22.5-9.5t-9.5-22.5v-192h-352q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h352v-192q0-14 9-23t23-9q12 0 24 10l319 319q9 9 9 23zM1312 896q0-148-73-273t-198-198-273-73-273 73-198 198-73 273 73 273 198 198 273 73 273-73 198-198 73-273zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.arrowCircleORight = arrowCircleORight; \ No newline at end of file diff --git a/dist/fa/arrowCircleOUp.js b/dist/fa/arrowCircleOUp.js new file mode 100644 index 000000000..1d0fff0b2 --- /dev/null +++ b/dist/fa/arrowCircleOUp.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowCircleOUp = void 0; +var arrowCircleOUp = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1118 876q-8 20-30 20h-192v352q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-352h-192q-14 0-23-9t-9-23q0-12 10-24l319-319q11-9 23-9t23 9l320 320q15 16 7 35zM768 352q-148 0-273 73t-198 198-73 273 73 273 198 198 273 73 273-73 198-198 73-273-73-273-198-198-273-73zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.arrowCircleOUp = arrowCircleOUp; \ No newline at end of file diff --git a/dist/fa/arrowCircleRight.js b/dist/fa/arrowCircleRight.js new file mode 100644 index 000000000..467af4676 --- /dev/null +++ b/dist/fa/arrowCircleRight.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowCircleRight = void 0; +var arrowCircleRight = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1285 896q0-27-18-45l-91-91-362-362q-18-18-45-18t-45 18l-91 91q-18 18-18 45t18 45l189 189h-502q-26 0-45 19t-19 45v128q0 26 19 45t45 19h502l-189 189q-19 19-19 45t19 45l91 91q18 18 45 18t45-18l362-362 91-91q18-18 18-45zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.arrowCircleRight = arrowCircleRight; \ No newline at end of file diff --git a/dist/fa/arrowCircleUp.js b/dist/fa/arrowCircleUp.js new file mode 100644 index 000000000..73efca80c --- /dev/null +++ b/dist/fa/arrowCircleUp.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowCircleUp = void 0; +var arrowCircleUp = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1284 895q0-27-18-45l-362-362-91-91q-18-18-45-18t-45 18l-91 91-362 362q-18 18-18 45t18 45l91 91q18 18 45 18t45-18l189-189v502q0 26 19 45t45 19h128q26 0 45-19t19-45v-502l189 189q19 19 45 19t45-19l91-91q18-18 18-45zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.arrowCircleUp = arrowCircleUp; \ No newline at end of file diff --git a/dist/fa/arrowDown.js b/dist/fa/arrowDown.js new file mode 100644 index 000000000..924118d20 --- /dev/null +++ b/dist/fa/arrowDown.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowDown = void 0; +var arrowDown = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1611 832q0 53-37 90l-651 652q-39 37-91 37-53 0-90-37l-651-652q-38-36-38-90 0-53 38-91l74-75q39-37 91-37 53 0 90 37l294 294v-704q0-52 38-90t90-38h128q52 0 90 38t38 90v704l294-294q37-37 90-37 52 0 91 37l75 75q37 39 37 91z" + } + }] +}; +exports.arrowDown = arrowDown; \ No newline at end of file diff --git a/dist/fa/arrowLeft.js b/dist/fa/arrowLeft.js new file mode 100644 index 000000000..bb242aa82 --- /dev/null +++ b/dist/fa/arrowLeft.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowLeft = void 0; +var arrowLeft = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1536 896v128q0 53-32.5 90.5t-84.5 37.5h-704l293 294q38 36 38 90t-38 90l-75 76q-37 37-90 37-52 0-91-37l-651-652q-37-37-37-90 0-52 37-91l651-650q38-38 91-38 52 0 90 38l75 74q38 38 38 91t-38 91l-293 293h704q52 0 84.5 37.5t32.5 90.5z" + } + }] +}; +exports.arrowLeft = arrowLeft; \ No newline at end of file diff --git a/dist/fa/arrowRight.js b/dist/fa/arrowRight.js new file mode 100644 index 000000000..4fc0c9448 --- /dev/null +++ b/dist/fa/arrowRight.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowRight = void 0; +var arrowRight = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1472 960q0 54-37 91l-651 651q-39 37-91 37-51 0-90-37l-75-75q-38-38-38-91t38-91l293-293h-704q-52 0-84.5-37.5t-32.5-90.5v-128q0-53 32.5-90.5t84.5-37.5h704l-293-294q-38-36-38-90t38-90l75-75q38-38 90-38 53 0 91 38l651 651q37 35 37 90z" + } + }] +}; +exports.arrowRight = arrowRight; \ No newline at end of file diff --git a/dist/fa/arrowUp.js b/dist/fa/arrowUp.js new file mode 100644 index 000000000..caac4a786 --- /dev/null +++ b/dist/fa/arrowUp.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowUp = void 0; +var arrowUp = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1611 971q0 51-37 90l-75 75q-38 38-91 38-54 0-90-38l-294-293v704q0 52-37.5 84.5t-90.5 32.5h-128q-53 0-90.5-32.5t-37.5-84.5v-704l-294 293q-36 38-90 38t-90-38l-75-75q-38-38-38-90 0-53 38-91l651-651q35-37 90-37 54 0 91 37l651 651q37 39 37 91z" + } + }] +}; +exports.arrowUp = arrowUp; \ No newline at end of file diff --git a/dist/fa/arrows.js b/dist/fa/arrows.js new file mode 100644 index 000000000..19702acf1 --- /dev/null +++ b/dist/fa/arrows.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows = void 0; +var arrows = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1792 896q0 26-19 45l-256 256q-19 19-45 19t-45-19-19-45v-128h-384v384h128q26 0 45 19t19 45-19 45l-256 256q-19 19-45 19t-45-19l-256-256q-19-19-19-45t19-45 45-19h128v-384h-384v128q0 26-19 45t-45 19-45-19l-256-256q-19-19-19-45t19-45l256-256q19-19 45-19t45 19 19 45v128h384v-384h-128q-26 0-45-19t-19-45 19-45l256-256q19-19 45-19t45 19l256 256q19 19 19 45t-19 45-45 19h-128v384h384v-128q0-26 19-45t45-19 45 19l256 256q19 19 19 45z" + } + }] +}; +exports.arrows = arrows; \ No newline at end of file diff --git a/dist/fa/arrowsAlt.js b/dist/fa/arrowsAlt.js new file mode 100644 index 000000000..685b87475 --- /dev/null +++ b/dist/fa/arrowsAlt.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowsAlt = void 0; +var arrowsAlt = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1283 541l-355 355 355 355 144-144q29-31 70-14 39 17 39 59v448q0 26-19 45t-45 19h-448q-42 0-59-40-17-39 14-69l144-144-355-355-355 355 144 144q31 30 14 69-17 40-59 40h-448q-26 0-45-19t-19-45v-448q0-42 40-59 39-17 69 14l144 144 355-355-355-355-144 144q-19 19-45 19-12 0-24-5-40-17-40-59v-448q0-26 19-45t45-19h448q42 0 59 40 17 39-14 69l-144 144 355 355 355-355-144-144q-31-30-14-69 17-40 59-40h448q26 0 45 19t19 45v448q0 42-39 59-13 5-25 5-26 0-45-19z" + } + }] +}; +exports.arrowsAlt = arrowsAlt; \ No newline at end of file diff --git a/dist/fa/arrowsH.js b/dist/fa/arrowsH.js new file mode 100644 index 000000000..1f072f3eb --- /dev/null +++ b/dist/fa/arrowsH.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowsH = void 0; +var arrowsH = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1792 896q0 26-19 45l-256 256q-19 19-45 19t-45-19-19-45v-128h-1024v128q0 26-19 45t-45 19-45-19l-256-256q-19-19-19-45t19-45l256-256q19-19 45-19t45 19 19 45v128h1024v-128q0-26 19-45t45-19 45 19l256 256q19 19 19 45z" + } + }] +}; +exports.arrowsH = arrowsH; \ No newline at end of file diff --git a/dist/fa/arrowsV.js b/dist/fa/arrowsV.js new file mode 100644 index 000000000..fbc313931 --- /dev/null +++ b/dist/fa/arrowsV.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowsV = void 0; +var arrowsV = { + "viewBox": "0 0 768 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M704 320q0 26-19 45t-45 19h-128v1024h128q26 0 45 19t19 45-19 45l-256 256q-19 19-45 19t-45-19l-256-256q-19-19-19-45t19-45 45-19h128v-1024h-128q-26 0-45-19t-19-45 19-45l256-256q19-19 45-19t45 19l256 256q19 19 19 45z" + } + }] +}; +exports.arrowsV = arrowsV; \ No newline at end of file diff --git a/dist/fa/aslInterpreting.js b/dist/fa/aslInterpreting.js new file mode 100644 index 000000000..86231f8f1 --- /dev/null +++ b/dist/fa/aslInterpreting.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.aslInterpreting = void 0; +var aslInterpreting = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1032 960q-59-2-84-55-17-34-48-53.5t-68-19.5q-53 0-90.5 37.5t-37.5 90.5q0 56 36 89l10 8q34 31 82 31 37 0 68-19.5t48-53.5q25-53 84-55zM1600 832q0-56-36-89l-10-8q-34-31-82-31-37 0-68 19.5t-48 53.5q-25 53-84 55 59 2 84 55 17 34 48 53.5t68 19.5q53 0 90.5-37.5t37.5-90.5zM1174 611q-17 35-55 48t-73-4q-62-31-134-31-51 0-99 17 3 0 9.5-0.5t9.5-0.5q92 0 170.5 50t118.5 133q17 36 3.5 73.5t-49.5 54.5q-18 9-39 9 21 0 39 9 36 17 49.5 54.5t-3.5 73.5q-40 83-118.5 133t-170.5 50h-6q-16-2-44-4l-290-27-239 120q-14 7-29 7-40 0-57-35l-160-320q-11-23-4-47.5t29-37.5l209-119 148-267q17-155 91.5-291.5t195.5-236.5q31-25 70.5-21.5t64.5 34.5 21.5 70-34.5 65q-70 59-117 128 123-84 267-101 40-5 71.5 19t35.5 64q5 40-19 71.5t-64 35.5q-84 10-159 55 46-10 99-10 115 0 218 50 36 18 49 55.5t-5 73.5zM2137 451l160 320q11 23 4 47.5t-29 37.5l-209 119-148 267q-17 155-91.5 291.5t-195.5 236.5q-26 22-61 22-45 0-74-35-25-31-21.5-70t34.5-65q70-59 117-128-123 84-267 101-4 1-12 1-36 0-63.5-24t-31.5-60q-5-40 19-71.5t64-35.5q84-10 159-55-46 10-99 10-115 0-218-50-36-18-49-55.5t5-73.5q17-35 55-48t73 4q62 31 134 31 51 0 99-17-3 0-9.5 0.5t-9.5 0.5q-92 0-170.5-50t-118.5-133q-17-36-3.5-73.5t49.5-54.5q18-9 39-9-21 0-39-9-36-17-49.5-54.5t3.5-73.5q40-83 118.5-133t170.5-50h6 1q14 2 42 4l291 27 239-120q14-7 29-7 40 0 57 35z" + } + }] +}; +exports.aslInterpreting = aslInterpreting; \ No newline at end of file diff --git a/dist/fa/assistiveListeningSystems.js b/dist/fa/assistiveListeningSystems.js new file mode 100644 index 000000000..c9ba415b2 --- /dev/null +++ b/dist/fa/assistiveListeningSystems.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.assistiveListeningSystems = void 0; +var assistiveListeningSystems = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M128 1728q0 26-19 45t-45 19-45-19-19-45 19-45 45-19 45 19 19 45zM320 1536q0 26-19 45t-45 19-45-19-19-45 19-45 45-19 45 19 19 45zM365 1171l256 256-90 90-256-256zM704 1152q0 26-19 45t-45 19-45-19-19-45 19-45 45-19 45 19 19 45zM1411 832q0 59-11.5 108.5t-37.5 93.5-44 67.5-53 64.5q-31 35-45.5 54t-33.5 50-26.5 64-7.5 74q0 159-112.5 271.5t-271.5 112.5q-26 0-45-19t-19-45 19-45 45-19q106 0 181-75t75-181q0-57 11.5-105.5t37-91 43.5-66.5 52-63q40-46 59.5-72t37.5-74.5 18-103.5q0-185-131.5-316.5t-316.5-131.5-316.5 131.5-131.5 316.5q0 26-19 45t-45 19-45-19-19-45q0-117 45.5-223.5t123-184 184-123 223.5-45.5 223.5 45.5 184 123 123 184 45.5 223.5zM896 960q0 26-19 45t-45 19-45-19-19-45 19-45 45-19 45 19 19 45zM1184 832q0 26-19 45t-45 19-45-19-19-45q0-93-65.5-158.5t-158.5-65.5q-92 0-158 65.5t-66 158.5q0 26-19 45t-45 19-45-19-19-45q0-146 103-249t249-103 249 103 103 249zM1578 543q10 25-1 49t-36 34q-9 4-23 4-19 0-35.5-11t-23.5-30q-68-178-224-295-21-16-25-42t12-47q17-21 43-25t47 12q183 137 266 351zM1788 462q9 25-1.5 49t-35.5 34q-11 4-23 4-44 0-60-41-92-238-297-393-22-16-25.5-42t12.5-47q16-22 42-25.5t47 12.5q235 175 341 449z" + } + }] +}; +exports.assistiveListeningSystems = assistiveListeningSystems; \ No newline at end of file diff --git a/dist/fa/asterisk.js b/dist/fa/asterisk.js new file mode 100644 index 000000000..811d4c9d2 --- /dev/null +++ b/dist/fa/asterisk.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.asterisk = void 0; +var asterisk = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1482 1050q46 26 59.5 77.5t-12.5 97.5l-64 110q-26 46-77.5 59.5t-97.5-12.5l-266-153v307q0 52-38 90t-90 38h-128q-52 0-90-38t-38-90v-307l-266 153q-46 26-97.5 12.5t-77.5-59.5l-64-110q-26-46-12.5-97.5t59.5-77.5l266-154-266-154q-46-26-59.5-77.5t12.5-97.5l64-110q26-46 77.5-59.5t97.5 12.5l266 153v-307q0-52 38-90t90-38h128q52 0 90 38t38 90v307l266-153q46-26 97.5-12.5t77.5 59.5l64 110q26 46 12.5 97.5t-59.5 77.5l-266 154z" + } + }] +}; +exports.asterisk = asterisk; \ No newline at end of file diff --git a/dist/fa/at.js b/dist/fa/at.js new file mode 100644 index 000000000..154739657 --- /dev/null +++ b/dist/fa/at.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.at = void 0; +var at = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M972 775q0-108-53.5-169t-147.5-61q-63 0-124 30.5t-110 84.5-79.5 137-30.5 180q0 112 53.5 173t150.5 61q96 0 176-66.5t122.5-166 42.5-203.5zM1536 896q0 111-37 197t-98.5 135-131.5 74.5-145 27.5q-6 0-15.5 0.5t-16.5 0.5q-95 0-142-53-28-33-33-83-52 66-131.5 110t-173.5 44q-161 0-249.5-95.5t-88.5-269.5q0-157 66-290t179-210.5 246-77.5q87 0 155 35.5t106 99.5l2-19 11-56q1-6 5.5-12t9.5-6h118q5 0 13 11 5 5 3 16l-120 614q-5 24-5 48 0 39 12.5 52t44.5 13q28-1 57-5.5t73-24 77-50 57-89.5 24-137q0-292-174-466t-466-174q-130 0-248.5 51t-204 136.5-136.5 204-51 248.5 51 248.5 136.5 204 204 136.5 248.5 51q228 0 405-144 11-9 24-8t21 12l41 49q8 12 7 24-2 13-12 22-102 83-227.5 128t-258.5 45q-156 0-298-61t-245-164-164-245-61-298 61-298 164-245 245-164 298-61q344 0 556 212t212 556z" + } + }] +}; +exports.at = at; \ No newline at end of file diff --git a/dist/fa/audioDescription.js b/dist/fa/audioDescription.js new file mode 100644 index 000000000..99ad75392 --- /dev/null +++ b/dist/fa/audioDescription.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.audioDescription = void 0; +var audioDescription = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M504 994h171l-1-265zM1530 895q0-87-50.5-140t-146.5-53h-54v388h52q91 0 145-57t54-138zM956 518l1 756q0 14-9.5 24t-23.5 10h-216q-14 0-23.5-10t-9.5-24v-62h-291l-55 81q-10 15-28 15h-267q-21 0-30.5-18t3.5-35l556-757q9-14 27-14h332q14 0 24 10t10 24zM1783 895q0 193-125.5 303t-324.5 110h-270q-14 0-24-10t-10-24v-756q0-14 10-24t24-10h268q200 0 326 109t126 302zM1939 896q0 11-0.5 29t-8 71.5-21.5 102-44.5 108-73.5 102.5h-51q38-45 66.5-104.5t41.5-112 21-98 9-72.5l1-27q0-8-0.5-22.5t-7.5-60-20-91.5-41-111.5-66-124.5h43q41 47 72 107t45.5 111.5 23 96 10.5 70.5zM2123 896q0 11-0.5 29t-8 71.5-21.5 102-45 108-74 102.5h-51q38-45 66.5-104.5t41.5-112 21-98 9-72.5l1-27q0-8-0.5-22.5t-7.5-60-19.5-91.5-40.5-111.5-66-124.5h43q41 47 72 107t45.5 111.5 23 96 10.5 70.5zM2304 896q0 11-0.5 29t-8 71.5-21.5 102-44.5 108-73.5 102.5h-51q38-45 66-104.5t41-112 21-98 9-72.5l1-27q0-8-0.5-22.5t-7.5-60-19.5-91.5-40.5-111.5-66-124.5h43q41 47 72 107t45.5 111.5 23 96 9.5 70.5z" + } + }] +}; +exports.audioDescription = audioDescription; \ No newline at end of file diff --git a/dist/fa/automobile.js b/dist/fa/automobile.js new file mode 100644 index 000000000..4fb60321e --- /dev/null +++ b/dist/fa/automobile.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.automobile = void 0; +var automobile = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M480 1088q0-66-47-113t-113-47-113 47-47 113 47 113 113 47 113-47 47-113zM516 768h1016l-89-357q-2-8-14-17.5t-21-9.5h-768q-9 0-21 9.5t-14 17.5zM1888 1088q0-66-47-113t-113-47-113 47-47 113 47 113 113 47 113-47 47-113zM2048 992v384q0 14-9 23t-23 9h-96v128q0 80-56 136t-136 56-136-56-56-136v-128h-1024v128q0 80-56 136t-136 56-136-56-56-136v-128h-96q-14 0-23-9t-9-23v-384q0-93 65.5-158.5t158.5-65.5h28l105-419q23-94 104-157.5t179-63.5h768q98 0 179 63.5t104 157.5l105 419h28q93 0 158.5 65.5t65.5 158.5z" + } + }] +}; +exports.automobile = automobile; \ No newline at end of file diff --git a/dist/fa/backward.js b/dist/fa/backward.js new file mode 100644 index 000000000..0d16871f1 --- /dev/null +++ b/dist/fa/backward.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.backward = void 0; +var backward = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1619 141q19-19 32-13t13 32v1472q0 26-13 32t-32-13l-710-710q-9-9-13-19v710q0 26-13 32t-32-13l-710-710q-19-19-19-45t19-45l710-710q19-19 32-13t13 32v710q4-10 13-19z" + } + }] +}; +exports.backward = backward; \ No newline at end of file diff --git a/dist/fa/balanceScale.js b/dist/fa/balanceScale.js new file mode 100644 index 000000000..d54eaa1e9 --- /dev/null +++ b/dist/fa/balanceScale.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.balanceScale = void 0; +var balanceScale = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1728 448l-384 704h768zM448 448l-384 704h768zM1269 256q-14 40-45.5 71.5t-71.5 45.5v1291h608q14 0 23 9t9 23v64q0 14-9 23t-23 9h-1344q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h608v-1291q-40-14-71.5-45.5t-45.5-71.5h-491q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h491q21-57 70-92.5t111-35.5 111 35.5 70 92.5h491q14 0 23 9t9 23v64q0 14-9 23t-23 9h-491zM1088 272q33 0 56.5-23.5t23.5-56.5-23.5-56.5-56.5-23.5-56.5 23.5-23.5 56.5 23.5 56.5 56.5 23.5zM2176 1152q0 73-46.5 131t-117.5 91-144.5 49.5-139.5 16.5-139.5-16.5-144.5-49.5-117.5-91-46.5-131q0-11 35-81t92-174.5 107-195.5 102-184 56-100q18-33 56-33t56 33q4 7 56 100t102 184 107 195.5 92 174.5 35 81zM896 1152q0 73-46.5 131t-117.5 91-144.5 49.5-139.5 16.5-139.5-16.5-144.5-49.5-117.5-91-46.5-131q0-11 35-81t92-174.5 107-195.5 102-184 56-100q18-33 56-33t56 33q4 7 56 100t102 184 107 195.5 92 174.5 35 81z" + } + }] +}; +exports.balanceScale = balanceScale; \ No newline at end of file diff --git a/dist/fa/ban.js b/dist/fa/ban.js new file mode 100644 index 000000000..2e4bcb7c4 --- /dev/null +++ b/dist/fa/ban.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ban = void 0; +var ban = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1312 893q0-161-87-295l-754 753q137 89 297 89 111 0 211.5-43.5t173.5-116.5 116-174.5 43-212.5zM313 1192l755-754q-135-91-300-91-148 0-273 73t-198 199-73 274q0 162 89 299zM1536 893q0 157-61 300t-163.5 246-245 164-298.5 61-298.5-61-245-164-163.5-246-61-300 61-299.5 163.5-245.5 245-164 298.5-61 298.5 61 245 164 163.5 245.5 61 299.5z" + } + }] +}; +exports.ban = ban; \ No newline at end of file diff --git a/dist/fa/bandcamp.js b/dist/fa/bandcamp.js new file mode 100644 index 000000000..28ac84382 --- /dev/null +++ b/dist/fa/bandcamp.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bandcamp = void 0; +var bandcamp = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1070 1178l306-564h-654l-306 564h654zM1792 896q0 182-71 348t-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71 348 71 286 191 191 286 71 348z" + } + }] +}; +exports.bandcamp = bandcamp; \ No newline at end of file diff --git a/dist/fa/bank.js b/dist/fa/bank.js new file mode 100644 index 000000000..202f8a637 --- /dev/null +++ b/dist/fa/bank.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bank = void 0; +var bank = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M960 0l960 384v128h-128q0 26-20.5 45t-48.5 19h-1526q-28 0-48.5-19t-20.5-45h-128v-128zM256 640h256v768h128v-768h256v768h128v-768h256v768h128v-768h256v768h59q28 0 48.5 19t20.5 45v64h-1664v-64q0-26 20.5-45t48.5-19h59v-768zM1851 1600q28 0 48.5 19t20.5 45v128h-1920v-128q0-26 20.5-45t48.5-19h1782z" + } + }] +}; +exports.bank = bank; \ No newline at end of file diff --git a/dist/fa/barChart.js b/dist/fa/barChart.js new file mode 100644 index 000000000..e87197781 --- /dev/null +++ b/dist/fa/barChart.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.barChart = void 0; +var barChart = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 896v512h-256v-512h256zM1024 384v1024h-256v-1024h256zM2048 1536v128h-2048v-1536h128v1408h1920zM1408 640v768h-256v-768h256zM1792 256v1152h-256v-1152h256z" + } + }] +}; +exports.barChart = barChart; \ No newline at end of file diff --git a/dist/fa/barChartO.js b/dist/fa/barChartO.js new file mode 100644 index 000000000..46241dad5 --- /dev/null +++ b/dist/fa/barChartO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.barChartO = void 0; +var barChartO = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 896v512h-256v-512h256zM1024 384v1024h-256v-1024h256zM2048 1536v128h-2048v-1536h128v1408h1920zM1408 640v768h-256v-768h256zM1792 256v1152h-256v-1152h256z" + } + }] +}; +exports.barChartO = barChartO; \ No newline at end of file diff --git a/dist/fa/barcode.js b/dist/fa/barcode.js new file mode 100644 index 000000000..b02421876 --- /dev/null +++ b/dist/fa/barcode.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.barcode = void 0; +var barcode = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M63 1536h-63v-1408h63v1408zM126 1535h-32v-1407h32v1407zM220 1535h-31v-1407h31v1407zM377 1535h-31v-1407h31v1407zM534 1535h-62v-1407h62v1407zM660 1535h-31v-1407h31v1407zM723 1535h-31v-1407h31v1407zM786 1535h-31v-1407h31v1407zM943 1535h-63v-1407h63v1407zM1100 1535h-63v-1407h63v1407zM1226 1535h-63v-1407h63v1407zM1352 1535h-63v-1407h63v1407zM1446 1535h-63v-1407h63v1407zM1635 1535h-94v-1407h94v1407zM1698 1535h-32v-1407h32v1407zM1792 1536h-63v-1408h63v1408z" + } + }] +}; +exports.barcode = barcode; \ No newline at end of file diff --git a/dist/fa/bars.js b/dist/fa/bars.js new file mode 100644 index 000000000..001096630 --- /dev/null +++ b/dist/fa/bars.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bars = void 0; +var bars = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1536 1344v128q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1408q26 0 45 19t19 45zM1536 832v128q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1408q26 0 45 19t19 45zM1536 320v128q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1408q26 0 45 19t19 45z" + } + }] +}; +exports.bars = bars; \ No newline at end of file diff --git a/dist/fa/bath.js b/dist/fa/bath.js new file mode 100644 index 000000000..b65e79acf --- /dev/null +++ b/dist/fa/bath.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bath = void 0; +var bath = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1664 1088v192q0 169-128 286v194q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-118q-63 22-128 22h-768q-65 0-128-22v110q0 17-9.5 28.5t-22.5 11.5h-64q-13 0-22.5-11.5t-9.5-28.5v-186q-128-117-128-286v-192h1536zM704 672q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM768 608q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM704 544q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM832 544q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM768 480q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM704 416q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM1792 928v64q0 14-9 23t-23 9h-1728q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h96v-640q0-106 75-181t181-75q108 0 184 78 46-19 98-12t93 39l22-22q11-11 22 0l42 42q11 11 0 22l-314 314q-11 11-22 0l-42-42q-11-11 0-22l22-22q-36-46-40.5-104t23.5-108q-37-35-88-35-53 0-90.5 37.5t-37.5 90.5v640h1504q14 0 23 9t9 23zM896 480q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM832 416q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM768 352q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM960 416q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM896 352q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM832 288q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM1024 352q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM960 288q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM1088 288q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23z" + } + }] +}; +exports.bath = bath; \ No newline at end of file diff --git a/dist/fa/bathtub.js b/dist/fa/bathtub.js new file mode 100644 index 000000000..11ba1b936 --- /dev/null +++ b/dist/fa/bathtub.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bathtub = void 0; +var bathtub = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1664 1088v192q0 169-128 286v194q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-118q-63 22-128 22h-768q-65 0-128-22v110q0 17-9.5 28.5t-22.5 11.5h-64q-13 0-22.5-11.5t-9.5-28.5v-186q-128-117-128-286v-192h1536zM704 672q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM768 608q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM704 544q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM832 544q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM768 480q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM704 416q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM1792 928v64q0 14-9 23t-23 9h-1728q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h96v-640q0-106 75-181t181-75q108 0 184 78 46-19 98-12t93 39l22-22q11-11 22 0l42 42q11 11 0 22l-314 314q-11 11-22 0l-42-42q-11-11 0-22l22-22q-36-46-40.5-104t23.5-108q-37-35-88-35-53 0-90.5 37.5t-37.5 90.5v640h1504q14 0 23 9t9 23zM896 480q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM832 416q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM768 352q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM960 416q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM896 352q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM832 288q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM1024 352q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM960 288q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM1088 288q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23z" + } + }] +}; +exports.bathtub = bathtub; \ No newline at end of file diff --git a/dist/fa/battery.js b/dist/fa/battery.js new file mode 100644 index 000000000..527db2690 --- /dev/null +++ b/dist/fa/battery.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.battery = void 0; +var battery = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1920 512v768h-1664v-768h1664zM2048 1088h128v-384h-128v-288q0-14-9-23t-23-9h-1856q-14 0-23 9t-9 23v960q0 14 9 23t23 9h1856q14 0 23-9t9-23v-288zM2304 704v384q0 53-37.5 90.5t-90.5 37.5v160q0 66-47 113t-113 47h-1856q-66 0-113-47t-47-113v-960q0-66 47-113t113-47h1856q66 0 113 47t47 113v160q53 0 90.5 37.5t37.5 90.5z" + } + }] +}; +exports.battery = battery; \ No newline at end of file diff --git a/dist/fa/battery0.js b/dist/fa/battery0.js new file mode 100644 index 000000000..effe57f84 --- /dev/null +++ b/dist/fa/battery0.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.battery0 = void 0; +var battery0 = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M2176 576q53 0 90.5 37.5t37.5 90.5v384q0 53-37.5 90.5t-90.5 37.5v160q0 66-47 113t-113 47h-1856q-66 0-113-47t-47-113v-960q0-66 47-113t113-47h1856q66 0 113 47t47 113v160zM2176 1088v-384h-128v-288q0-14-9-23t-23-9h-1856q-14 0-23 9t-9 23v960q0 14 9 23t23 9h1856q14 0 23-9t9-23v-288h128z" + } + }] +}; +exports.battery0 = battery0; \ No newline at end of file diff --git a/dist/fa/battery1.js b/dist/fa/battery1.js new file mode 100644 index 000000000..d4758500c --- /dev/null +++ b/dist/fa/battery1.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.battery1 = void 0; +var battery1 = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M256 1280v-768h512v768h-512zM2176 576q53 0 90.5 37.5t37.5 90.5v384q0 53-37.5 90.5t-90.5 37.5v160q0 66-47 113t-113 47h-1856q-66 0-113-47t-47-113v-960q0-66 47-113t113-47h1856q66 0 113 47t47 113v160zM2176 1088v-384h-128v-288q0-14-9-23t-23-9h-1856q-14 0-23 9t-9 23v960q0 14 9 23t23 9h1856q14 0 23-9t9-23v-288h128z" + } + }] +}; +exports.battery1 = battery1; \ No newline at end of file diff --git a/dist/fa/battery2.js b/dist/fa/battery2.js new file mode 100644 index 000000000..2cf7a3050 --- /dev/null +++ b/dist/fa/battery2.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.battery2 = void 0; +var battery2 = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M256 1280v-768h896v768h-896zM2176 576q53 0 90.5 37.5t37.5 90.5v384q0 53-37.5 90.5t-90.5 37.5v160q0 66-47 113t-113 47h-1856q-66 0-113-47t-47-113v-960q0-66 47-113t113-47h1856q66 0 113 47t47 113v160zM2176 1088v-384h-128v-288q0-14-9-23t-23-9h-1856q-14 0-23 9t-9 23v960q0 14 9 23t23 9h1856q14 0 23-9t9-23v-288h128z" + } + }] +}; +exports.battery2 = battery2; \ No newline at end of file diff --git a/dist/fa/battery3.js b/dist/fa/battery3.js new file mode 100644 index 000000000..53821d383 --- /dev/null +++ b/dist/fa/battery3.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.battery3 = void 0; +var battery3 = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M256 1280v-768h1280v768h-1280zM2176 576q53 0 90.5 37.5t37.5 90.5v384q0 53-37.5 90.5t-90.5 37.5v160q0 66-47 113t-113 47h-1856q-66 0-113-47t-47-113v-960q0-66 47-113t113-47h1856q66 0 113 47t47 113v160zM2176 1088v-384h-128v-288q0-14-9-23t-23-9h-1856q-14 0-23 9t-9 23v960q0 14 9 23t23 9h1856q14 0 23-9t9-23v-288h128z" + } + }] +}; +exports.battery3 = battery3; \ No newline at end of file diff --git a/dist/fa/battery4.js b/dist/fa/battery4.js new file mode 100644 index 000000000..4bfe3cb51 --- /dev/null +++ b/dist/fa/battery4.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.battery4 = void 0; +var battery4 = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1920 512v768h-1664v-768h1664zM2048 1088h128v-384h-128v-288q0-14-9-23t-23-9h-1856q-14 0-23 9t-9 23v960q0 14 9 23t23 9h1856q14 0 23-9t9-23v-288zM2304 704v384q0 53-37.5 90.5t-90.5 37.5v160q0 66-47 113t-113 47h-1856q-66 0-113-47t-47-113v-960q0-66 47-113t113-47h1856q66 0 113 47t47 113v160q53 0 90.5 37.5t37.5 90.5z" + } + }] +}; +exports.battery4 = battery4; \ No newline at end of file diff --git a/dist/fa/batteryEmpty.js b/dist/fa/batteryEmpty.js new file mode 100644 index 000000000..3b5a0ddaf --- /dev/null +++ b/dist/fa/batteryEmpty.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.batteryEmpty = void 0; +var batteryEmpty = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M2176 576q53 0 90.5 37.5t37.5 90.5v384q0 53-37.5 90.5t-90.5 37.5v160q0 66-47 113t-113 47h-1856q-66 0-113-47t-47-113v-960q0-66 47-113t113-47h1856q66 0 113 47t47 113v160zM2176 1088v-384h-128v-288q0-14-9-23t-23-9h-1856q-14 0-23 9t-9 23v960q0 14 9 23t23 9h1856q14 0 23-9t9-23v-288h128z" + } + }] +}; +exports.batteryEmpty = batteryEmpty; \ No newline at end of file diff --git a/dist/fa/batteryFull.js b/dist/fa/batteryFull.js new file mode 100644 index 000000000..6795ea5e6 --- /dev/null +++ b/dist/fa/batteryFull.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.batteryFull = void 0; +var batteryFull = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1920 512v768h-1664v-768h1664zM2048 1088h128v-384h-128v-288q0-14-9-23t-23-9h-1856q-14 0-23 9t-9 23v960q0 14 9 23t23 9h1856q14 0 23-9t9-23v-288zM2304 704v384q0 53-37.5 90.5t-90.5 37.5v160q0 66-47 113t-113 47h-1856q-66 0-113-47t-47-113v-960q0-66 47-113t113-47h1856q66 0 113 47t47 113v160q53 0 90.5 37.5t37.5 90.5z" + } + }] +}; +exports.batteryFull = batteryFull; \ No newline at end of file diff --git a/dist/fa/batteryHalf.js b/dist/fa/batteryHalf.js new file mode 100644 index 000000000..3f34d06df --- /dev/null +++ b/dist/fa/batteryHalf.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.batteryHalf = void 0; +var batteryHalf = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M256 1280v-768h896v768h-896zM2176 576q53 0 90.5 37.5t37.5 90.5v384q0 53-37.5 90.5t-90.5 37.5v160q0 66-47 113t-113 47h-1856q-66 0-113-47t-47-113v-960q0-66 47-113t113-47h1856q66 0 113 47t47 113v160zM2176 1088v-384h-128v-288q0-14-9-23t-23-9h-1856q-14 0-23 9t-9 23v960q0 14 9 23t23 9h1856q14 0 23-9t9-23v-288h128z" + } + }] +}; +exports.batteryHalf = batteryHalf; \ No newline at end of file diff --git a/dist/fa/batteryQuarter.js b/dist/fa/batteryQuarter.js new file mode 100644 index 000000000..ef12e4770 --- /dev/null +++ b/dist/fa/batteryQuarter.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.batteryQuarter = void 0; +var batteryQuarter = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M256 1280v-768h512v768h-512zM2176 576q53 0 90.5 37.5t37.5 90.5v384q0 53-37.5 90.5t-90.5 37.5v160q0 66-47 113t-113 47h-1856q-66 0-113-47t-47-113v-960q0-66 47-113t113-47h1856q66 0 113 47t47 113v160zM2176 1088v-384h-128v-288q0-14-9-23t-23-9h-1856q-14 0-23 9t-9 23v960q0 14 9 23t23 9h1856q14 0 23-9t9-23v-288h128z" + } + }] +}; +exports.batteryQuarter = batteryQuarter; \ No newline at end of file diff --git a/dist/fa/batteryThreeQuarters.js b/dist/fa/batteryThreeQuarters.js new file mode 100644 index 000000000..0923aafc4 --- /dev/null +++ b/dist/fa/batteryThreeQuarters.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.batteryThreeQuarters = void 0; +var batteryThreeQuarters = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M256 1280v-768h1280v768h-1280zM2176 576q53 0 90.5 37.5t37.5 90.5v384q0 53-37.5 90.5t-90.5 37.5v160q0 66-47 113t-113 47h-1856q-66 0-113-47t-47-113v-960q0-66 47-113t113-47h1856q66 0 113 47t47 113v160zM2176 1088v-384h-128v-288q0-14-9-23t-23-9h-1856q-14 0-23 9t-9 23v960q0 14 9 23t23 9h1856q14 0 23-9t9-23v-288h128z" + } + }] +}; +exports.batteryThreeQuarters = batteryThreeQuarters; \ No newline at end of file diff --git a/dist/fa/bed.js b/dist/fa/bed.js new file mode 100644 index 000000000..8aad210ed --- /dev/null +++ b/dist/fa/bed.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bed = void 0; +var bed = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M256 1024h1728q26 0 45 19t19 45v448h-256v-256h-1536v256h-256v-1216q0-26 19-45t45-19h128q26 0 45 19t19 45v704zM832 704q0-106-75-181t-181-75-181 75-75 181 75 181 181 75 181-75 75-181zM2048 960v-64q0-159-112.5-271.5t-271.5-112.5h-704q-26 0-45 19t-19 45v384h1152z" + } + }] +}; +exports.bed = bed; \ No newline at end of file diff --git a/dist/fa/beer.js b/dist/fa/beer.js new file mode 100644 index 000000000..faf879e19 --- /dev/null +++ b/dist/fa/beer.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.beer = void 0; +var beer = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 896v-384h-256v256q0 53 37.5 90.5t90.5 37.5h128zM1664 1344v192h-1152v-192l128-192h-128q-159 0-271.5-112.5t-112.5-271.5v-320l-64-64 32-128h480l32-128h960l32 192-64 32v800z" + } + }] +}; +exports.beer = beer; \ No newline at end of file diff --git a/dist/fa/behance.js b/dist/fa/behance.js new file mode 100644 index 000000000..4ce3fecd1 --- /dev/null +++ b/dist/fa/behance.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.behance = void 0; +var behance = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1848 339h-511v124h511v-124zM1596 765q-90 0-146 52.5t-62 142.5h408q-18-195-200-195zM1612 1350q63 0 122-32t76-87h221q-100 307-427 307-214 0-340.5-132t-126.5-347q0-208 130.5-345.5t336.5-137.5q138 0 240.5 68t153 179 50.5 248q0 17-2 47h-658q0 111 57.5 171.5t166.5 60.5zM277 1300h296q205 0 205-167 0-180-199-180h-302v347zM277 763h281q78 0 123.5-36.5t45.5-113.5q0-144-190-144h-260v294zM0 254h594q87 0 155 14t126.5 47.5 90 96.5 31.5 154q0 181-172 263 114 32 172 115t58 204q0 75-24.5 136.5t-66 103.5-98.5 71-121 42-134 13h-611v-1260z" + } + }] +}; +exports.behance = behance; \ No newline at end of file diff --git a/dist/fa/behanceSquare.js b/dist/fa/behanceSquare.js new file mode 100644 index 000000000..88aa1170a --- /dev/null +++ b/dist/fa/behanceSquare.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.behanceSquare = void 0; +var behanceSquare = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1248 128q119 0 203.5 84.5t84.5 203.5v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960zM499 495h-371v787h382q117 0 197-57.5t80-170.5q0-158-143-200 107-52 107-164 0-57-19.5-96.5t-56.5-60.5-79-29.5-97-8.5zM477 813h-176v-184h163q119 0 119 90 0 94-106 94zM486 1148h-185v-217h189q124 0 124 113 0 104-128 104zM1136 1180q-68 0-104-38t-36-107h411q1-10 1-30 0-132-74.5-220.5t-203.5-88.5q-128 0-210 86t-82 216q0 135 79 217t213 82q205 0 267-191h-138q-11 34-47.5 54t-75.5 20zM1126 814q113 0 124 122h-254q4-56 39-89t91-33zM964 548h319v77h-319v-77z" + } + }] +}; +exports.behanceSquare = behanceSquare; \ No newline at end of file diff --git a/dist/fa/bell.js b/dist/fa/bell.js new file mode 100644 index 000000000..41fe5f2a4 --- /dev/null +++ b/dist/fa/bell.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bell = void 0; +var bell = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M912 1696q0-16-16-16-59 0-101.5-42.5t-42.5-101.5q0-16-16-16t-16 16q0 73 51.5 124.5t124.5 51.5q16 0 16-16zM1728 1408q0 52-38 90t-90 38h-448q0 106-75 181t-181 75-181-75-75-181h-448q-52 0-90-38t-38-90q50-42 91-88t85-119.5 74.5-158.5 50-206 19.5-260q0-152 117-282.5t307-158.5q-8-19-8-39 0-40 28-68t68-28 68 28 28 68q0 20-8 39 190 28 307 158.5t117 282.5q0 139 19.5 260t50 206 74.5 158.5 85 119.5 91 88z" + } + }] +}; +exports.bell = bell; \ No newline at end of file diff --git a/dist/fa/bellO.js b/dist/fa/bellO.js new file mode 100644 index 000000000..21bbec3de --- /dev/null +++ b/dist/fa/bellO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bellO = void 0; +var bellO = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M912 1696q0-16-16-16-59 0-101.5-42.5t-42.5-101.5q0-16-16-16t-16 16q0 73 51.5 124.5t124.5 51.5q16 0 16-16zM246 1408h1300q-266-300-266-832 0-51-24-105t-69-103-121.5-80.5-169.5-31.5-169.5 31.5-121.5 80.5-69 103-24 105q0 532-266 832zM1728 1408q0 52-38 90t-90 38h-448q0 106-75 181t-181 75-181-75-75-181h-448q-52 0-90-38t-38-90q50-42 91-88t85-119.5 74.5-158.5 50-206 19.5-260q0-152 117-282.5t307-158.5q-8-19-8-39 0-40 28-68t68-28 68 28 28 68q0 20-8 39 190 28 307 158.5t117 282.5q0 139 19.5 260t50 206 74.5 158.5 85 119.5 91 88z" + } + }] +}; +exports.bellO = bellO; \ No newline at end of file diff --git a/dist/fa/bellSlash.js b/dist/fa/bellSlash.js new file mode 100644 index 000000000..a9028a970 --- /dev/null +++ b/dist/fa/bellSlash.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bellSlash = void 0; +var bellSlash = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1558 852q61 356 298 556 0 52-38 90t-90 38h-448q0 106-75 181t-181 75-180.5-74.5-75.5-180.5zM1024 1712q16 0 16-16t-16-16q-59 0-101.5-42.5t-42.5-101.5q0-16-16-16t-16 16q0 73 51.5 124.5t124.5 51.5zM2026 112q8 10 7.5 23.5t-10.5 22.5l-1872 1622q-10 8-23.5 7t-21.5-11l-84-96q-8-10-7.5-23.5t10.5-21.5l186-161q-19-32-19-66 50-42 91-88t85-119.5 74.5-158.5 50-206 19.5-260q0-152 117-282.5t307-158.5q-8-19-8-39 0-40 28-68t68-28 68 28 28 68q0 20-8 39 124 18 219 82.5t148 157.5l418-363q10-8 23.5-7t21.5 11z" + } + }] +}; +exports.bellSlash = bellSlash; \ No newline at end of file diff --git a/dist/fa/bellSlashO.js b/dist/fa/bellSlashO.js new file mode 100644 index 000000000..de0111219 --- /dev/null +++ b/dist/fa/bellSlashO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bellSlashO = void 0; +var bellSlashO = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1040 1696q0-16-16-16-59 0-101.5-42.5t-42.5-101.5q0-16-16-16t-16 16q0 73 51.5 124.5t124.5 51.5q16 0 16-16zM503 1221l877-760q-42-88-132.5-146.5t-223.5-58.5q-93 0-169.5 31.5t-121.5 80.5-69 103-24 105q0 384-137 645zM1856 1408q0 52-38 90t-90 38h-448q0 106-75 181t-181 75-180.5-74.5-75.5-180.5l149-129h757q-166-187-227-459l111-97q61 356 298 556zM1942 16l84 96q8 10 7.5 23.5t-10.5 22.5l-1872 1622q-10 8-23.5 7t-21.5-11l-84-96q-8-10-7.5-23.5t10.5-21.5l186-161q-19-32-19-66 50-42 91-88t85-119.5 74.5-158.5 50-206 19.5-260q0-152 117-282.5t307-158.5q-8-19-8-39 0-40 28-68t68-28 68 28 28 68q0 20-8 39 124 18 219 82.5t148 157.5l418-363q10-8 23.5-7t21.5 11z" + } + }] +}; +exports.bellSlashO = bellSlashO; \ No newline at end of file diff --git a/dist/fa/bicycle.js b/dist/fa/bicycle.js new file mode 100644 index 000000000..992365e66 --- /dev/null +++ b/dist/fa/bicycle.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bicycle = void 0; +var bicycle = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M762 1152h-314q-40 0-57.5-35t6.5-67l188-251q-65-31-137-31-132 0-226 94t-94 226 94 226 226 94q115 0 203-72.5t111-183.5zM576 1024h186q-18-85-75-148zM1056 1024l288-384h-480l-99 132q105 103 126 252h165zM2176 1088q0-132-94-226t-226-94q-60 0-121 24l174 260q15 23 10 49t-27 40q-15 11-36 11-35 0-53-29l-174-260q-93 95-93 225 0 132 94 226t226 94 226-94 94-226zM2304 1088q0 185-131.5 316.5t-316.5 131.5-316.5-131.5-131.5-316.5q0-97 39.5-183.5t109.5-149.5l-65-98-353 469q-18 26-51 26h-197q-23 164-149 274t-294 110q-185 0-316.5-131.5t-131.5-316.5 131.5-316.5 316.5-131.5q114 0 215 55l137-183h-224q-26 0-45-19t-19-45 19-45 45-19h384v128h435l-85-128h-222q-26 0-45-19t-19-45 19-45 45-19h256q33 0 53 28l267 400q91-44 192-44 185 0 316.5 131.5t131.5 316.5z" + } + }] +}; +exports.bicycle = bicycle; \ No newline at end of file diff --git a/dist/fa/binoculars.js b/dist/fa/binoculars.js new file mode 100644 index 000000000..b52bf94e3 --- /dev/null +++ b/dist/fa/binoculars.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.binoculars = void 0; +var binoculars = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M704 320v768q0 26-19 45t-45 19v576q0 26-19 45t-45 19h-512q-26 0-45-19t-19-45v-512l249-873q7-23 31-23h424zM1024 320v704h-256v-704h256zM1792 1216v512q0 26-19 45t-45 19h-512q-26 0-45-19t-19-45v-576q-26 0-45-19t-19-45v-768h424q24 0 31 23zM736 32v224h-352v-224q0-14 9-23t23-9h288q14 0 23 9t9 23zM1408 32v224h-352v-224q0-14 9-23t23-9h288q14 0 23 9t9 23z" + } + }] +}; +exports.binoculars = binoculars; \ No newline at end of file diff --git a/dist/fa/birthdayCake.js b/dist/fa/birthdayCake.js new file mode 100644 index 000000000..d3daa0a50 --- /dev/null +++ b/dist/fa/birthdayCake.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.birthdayCake = void 0; +var birthdayCake = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1792 1408v384h-1792v-384q45 0 85-14t59-27.5 47-37.5q30-27 51.5-38t56.5-11q24 0 44 7t31 15 33 27q29 25 47 38t58 27 86 14q45 0 85-14.5t58-27 48-37.5q21-19 32.5-27t31-15 43.5-7q35 0 56.5 11t51.5 38q28 24 47 37.5t59 27.5 85 14 85-14 59-27.5 47-37.5q30-27 51.5-38t56.5-11q34 0 55.5 11t51.5 38q28 24 47 37.5t59 27.5 85 14zM1792 1088v192q-24 0-44-7t-31-15-33-27q-29-25-47-38t-58-27-85-14q-46 0-86 14t-58 27-47 38q-22 19-33 27t-31 15-44 7q-35 0-56.5-11t-51.5-38q-29-25-47-38t-58-27-86-14q-45 0-85 14.5t-58 27-48 37.5q-21 19-32.5 27t-31 15-43.5 7q-35 0-56.5-11t-51.5-38q-28-24-47-37.5t-59-27.5-85-14q-46 0-86 14t-58 27-47 38q-30 27-51.5 38t-56.5 11v-192q0-80 56-136t136-56h64v-448h256v448h256v-448h256v448h256v-448h256v448h64q80 0 136 56t56 136zM512 224q0 77-36 118.5t-92 41.5q-53 0-90.5-37.5t-37.5-90.5q0-29 9.5-51t23.5-34 31-28 31-31.5 23.5-44.5 9.5-67q38 0 83 74t45 150zM1024 224q0 77-36 118.5t-92 41.5q-53 0-90.5-37.5t-37.5-90.5q0-29 9.5-51t23.5-34 31-28 31-31.5 23.5-44.5 9.5-67q38 0 83 74t45 150zM1536 224q0 77-36 118.5t-92 41.5q-53 0-90.5-37.5t-37.5-90.5q0-29 9.5-51t23.5-34 31-28 31-31.5 23.5-44.5 9.5-67q38 0 83 74t45 150z" + } + }] +}; +exports.birthdayCake = birthdayCake; \ No newline at end of file diff --git a/dist/fa/bitbucket.js b/dist/fa/bitbucket.js new file mode 100644 index 000000000..47fc1fc4b --- /dev/null +++ b/dist/fa/bitbucket.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bitbucket = void 0; +var bitbucket = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M815 859q8 63-50.5 101t-111.5 6q-39-17-53.5-58t-0.5-82 52-58q36-18 72.5-12t64 35.5 27.5 67.5zM926 838q-14-107-113-164t-197-13q-63 28-100.5 88.5t-34.5 129.5q4 91 77.5 155t165.5 56q91-8 152-84t50-168zM1165 296q-20-27-56-44.5t-58-22-71-12.5q-291-47-566 2-43 7-66 12t-55 22-50 43q30 28 76 45.5t73.5 22 87.5 11.5q228 29 448 1 63-8 89.5-12t72.5-21.5 75-46.5zM1222 1331q-8 26-15.5 76.5t-14 84-28.5 70-58 56.5q-86 48-189.5 71.5t-202 22-201.5-18.5q-46-8-81.5-18t-76.5-27-73-43.5-52-61.5q-25-96-57-292l6-16 18-9q223 148 506.5 148t507.5-148q21 6 24 23t-5 45-8 37zM1403 370q-26 167-111 655-5 30-27 56t-43.5 40-54.5 31q-252 126-610 88-248-27-394-139-15-12-25.5-26.5t-17-35-9-34-6-39.5-5.5-35q-9-50-26.5-150t-28-161.5-23.5-147.5-22-158q3-26 17.5-48.5t31.5-37.5 45-30 46-22.5 48-18.5q125-46 313-64 379-37 676 50 155 46 215 122 16 20 16.5 51t-5.5 54z" + } + }] +}; +exports.bitbucket = bitbucket; \ No newline at end of file diff --git a/dist/fa/bitbucketSquare.js b/dist/fa/bitbucketSquare.js new file mode 100644 index 000000000..33927341f --- /dev/null +++ b/dist/fa/bitbucketSquare.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bitbucketSquare = void 0; +var bitbucketSquare = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M848 870q0-43-41-66t-77-1q-43 20-42.5 72.5t43.5 70.5q39 23 81-4t36-72zM928 854q8 66-36 121t-110 61-119-40-56-113q-2-49 25.5-93t72.5-64q70-31 141.5 10t81.5 118zM1100 463q-20 21-53.5 34t-53 16-63.5 8q-155 20-324 0-44-6-63-9.5t-52.5-16-54.5-32.5q13-19 36-31t40-15.5 47-8.5q198-35 408-1 33 5 51 8.5t43 16 39 31.5zM1142 1209q0-7 5.5-26.5t3-32-17.5-16.5q-161 106-365 106t-366-106l-12 6-5 12q26 154 41 210 47 81 204 108 249 46 428-53 34-19 49-51.5t22.5-85.5 12.5-71zM1272 516q9-53-8-75-43-55-155-88-216-63-487-36-132 12-226 46-38 15-59.5 25t-47 34-29.5 54q8 68 19 138t29 171 24 137q1 5 5 31t7 36 12 27 22 28q105 80 284 100 259 28 440-63 24-13 39.5-23t31-29 19.5-40q48-267 80-473zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.bitbucketSquare = bitbucketSquare; \ No newline at end of file diff --git a/dist/fa/bitcoin.js b/dist/fa/bitcoin.js new file mode 100644 index 000000000..70d7f101b --- /dev/null +++ b/dist/fa/bitcoin.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bitcoin = void 0; +var bitcoin = { + "viewBox": "0 0 1280 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1167 640q18 182-131 258 117 28 175 103t45 214q-7 71-32.5 125t-64.5 89-97 58.5-121.5 34.5-145.5 15v255h-154v-251q-80 0-122-1v252h-154v-255q-18 0-54-0.5t-55-0.5h-200l31-183h111q50 0 58-51v-402h16q-6-1-16-1v-287q-13-68-89-68h-111v-164l212 1q64 0 97-1v-252h154v247q82-2 122-2v-245h154v252q79 7 140 22.5t113 45 82.5 78 36.5 114.5zM952 1185q0-36-15-64t-37-46-57.5-30.5-65.5-18.5-74-9-69-3-64.5 1-47.5 1v338q8 0 37 0.5t48 0.5 53-1.5 58.5-4 57-8.5 55.5-14 47.5-21 39.5-30 24.5-40 9.5-51zM881 709q0-33-12.5-58.5t-30.5-42-48-28-55-16.5-61.5-8-58-2.5-54 1-39.5 0.5v307q5 0 34.5 0.5t46.5 0 50-2 55-5.5 51.5-11 48.5-18.5 37-27 27-38.5 9-51z" + } + }] +}; +exports.bitcoin = bitcoin; \ No newline at end of file diff --git a/dist/fa/blackTie.js b/dist/fa/blackTie.js new file mode 100644 index 000000000..d29a6f520 --- /dev/null +++ b/dist/fa/blackTie.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.blackTie = void 0; +var blackTie = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 128h1536v1536h-1536v-1536zM1085 1243l-221-631 221-297h-634l221 297-221 631 317 304z" + } + }] +}; +exports.blackTie = blackTie; \ No newline at end of file diff --git a/dist/fa/blind.js b/dist/fa/blind.js new file mode 100644 index 000000000..a410920be --- /dev/null +++ b/dist/fa/blind.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.blind = void 0; +var blind = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M366 311q-64 0-110-45.5t-46-110.5q0-64 46-109.5t110-45.5 109.5 45.5 45.5 109.5q0 65-45.5 110.5t-109.5 45.5zM917 953q0 50-30 67.5t-63.5 6.5-47.5-34l-367-438q-7-12-14-15.5t-11-1.5l-3 3q-7 8 4 21l122 139 1 354-161 457q-67 192-92 234-15 26-28 32-50 26-103 1-29-13-41.5-43t-9.5-57q2-17 197-618l5-416-85 164 35 222q4 24-1 42t-14 27.5-19 16-17 7.5l-7 2q-19 3-34.5-3t-24-16-14-22-7.5-19.5-2-9.5l-46-299 211-381q23-34 113-34 75 0 107 40l424 521q7 5 14 17l3 3-1 1q7 13 7 29zM514 1103q43 113 88.5 225t69.5 168l24 55q36 93 42 125 11 70-36 97-35 22-66 16t-51-22-29-35h-1q-6-16-8-25l-124-351zM1338 1695q31 49 31 57 0 5-3 7-9 5-14.5-0.5t-15.5-26-16-30.5q-114-172-423-661 3 1 7-1t7-4l3-2q11-9 11-17z" + } + }] +}; +exports.blind = blind; \ No newline at end of file diff --git a/dist/fa/bluetooth.js b/dist/fa/bluetooth.js new file mode 100644 index 000000000..a791e2ab6 --- /dev/null +++ b/dist/fa/bluetooth.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bluetooth = void 0; +var bluetooth = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M841 1053l148 148-149 149zM840 442l149 149-148 148zM710 1666l464-464-306-306 306-306-464-464v611l-255-255-93 93 320 321-320 321 93 93 255-255v611zM1429 896q0 209-32 365.5t-87.5 257-140.5 162.5-181.5 86.5-219.5 24.5-219.5-24.5-181.5-86.5-140.5-162.5-87.5-257-32-365.5 32-365.5 87.5-257 140.5-162.5 181.5-86.5 219.5-24.5 219.5 24.5 181.5 86.5 140.5 162.5 87.5 257 32 365.5z" + } + }] +}; +exports.bluetooth = bluetooth; \ No newline at end of file diff --git a/dist/fa/bluetoothB.js b/dist/fa/bluetoothB.js new file mode 100644 index 000000000..def607200 --- /dev/null +++ b/dist/fa/bluetoothB.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bluetoothB = void 0; +var bluetoothB = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M596 1423l173-172-173-172v344zM596 713l173-172-173-172v344zM628 896l356 356-539 540v-711l-297 296-108-108 372-373-372-373 108-108 297 296v-711l539 540z" + } + }] +}; +exports.bluetoothB = bluetoothB; \ No newline at end of file diff --git a/dist/fa/bold.js b/dist/fa/bold.js new file mode 100644 index 000000000..3e9f831af --- /dev/null +++ b/dist/fa/bold.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bold = void 0; +var bold = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M555 1521q74 32 140 32 376 0 376-335 0-114-41-180-27-44-61.5-74t-67.5-46.5-80.5-25-84-10.5-94.5-2q-73 0-101 10 0 53-0.5 159t-0.5 158q0 8-1 67.5t-0.5 96.5 4.5 83.5 12 66.5zM541 775q42 7 109 7 82 0 143-13t110-44.5 74.5-89.5 25.5-142q0-70-29-122.5t-79-82-108-43.5-124-14q-50 0-130 13 0 50 4 151t4 152q0 27-0.5 80t-0.5 79q0 46 1 69zM0 1664l2-94q15-4 85-16t106-27q7-12 12.5-27t8.5-33.5 5.5-32.5 3-37.5 0.5-34v-35.5-30q0-982-22-1025-4-8-22-14.5t-44.5-11-49.5-7-48.5-4.5-30.5-3l-4-83q98-2 340-11.5t373-9.5q23 0 68 0.5t68 0.5q70 0 136.5 13t128.5 42 108 71 74 104.5 28 137.5q0 52-16.5 95.5t-39 72-64.5 57.5-73 45-84 40q154 35 256.5 134t102.5 248q0 100-35 179.5t-93.5 130.5-138 85.5-163.5 48.5-176 14q-44 0-132-3t-132-3q-106 0-307 11t-231 12z" + } + }] +}; +exports.bold = bold; \ No newline at end of file diff --git a/dist/fa/bolt.js b/dist/fa/bolt.js new file mode 100644 index 000000000..0477bdae9 --- /dev/null +++ b/dist/fa/bolt.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bolt = void 0; +var bolt = { + "viewBox": "0 0 896 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M885 566q18 20 7 44l-540 1157q-13 25-42 25-4 0-14-2-17-5-25.5-19t-4.5-30l197-808-406 101q-4 1-12 1-18 0-31-11-18-15-13-39l201-825q4-14 16-23t28-9h328q19 0 32 12.5t13 29.5q0 8-5 18l-171 463 396-98q8-2 12-2 19 0 34 15z" + } + }] +}; +exports.bolt = bolt; \ No newline at end of file diff --git a/dist/fa/bomb.js b/dist/fa/bomb.js new file mode 100644 index 000000000..a4e8cb175 --- /dev/null +++ b/dist/fa/bomb.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bomb = void 0; +var bomb = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M571 589q-10-25-34-35t-49 0q-108 44-191 127t-127 191q-10 25 0 49t35 34q13 5 24 5 42 0 60-40 34-84 98.5-148.5t148.5-98.5q25-11 35-35t0-49zM1513 233l46 46-244 243 68 68q19 19 19 45.5t-19 45.5l-64 64q89 161 89 343 0 143-55.5 273.5t-150 225-225 150-273.5 55.5-273.5-55.5-225-150-150-225-55.5-273.5 55.5-273.5 150-225 225-150 273.5-55.5q182 0 343 89l64-64q19-19 45.5-19t45.5 19l68 68zM1521 177q-10 10-22 10-13 0-23-10l-91-90q-9-10-9-23t9-23q10-9 23-9t23 9l90 91q10 9 10 22.5t-10 22.5zM1751 407q-11 9-23 9t-23-9l-90-91q-10-9-10-22.5t10-22.5q9-10 22.5-10t22.5 10l91 90q9 10 9 23t-9 23zM1792 224q0 14-9 23t-23 9h-96q-14 0-23-9t-9-23 9-23 23-9h96q14 0 23 9t9 23zM1600 32v96q0 14-9 23t-23 9-23-9-9-23v-96q0-14 9-23t23-9 23 9 9 23zM1751 87l-91 90q-10 10-22 10-13 0-23-10-10-9-10-22.5t10-22.5l90-91q10-9 23-9t23 9q9 10 9 23t-9 23z" + } + }] +}; +exports.bomb = bomb; \ No newline at end of file diff --git a/dist/fa/book.js b/dist/fa/book.js new file mode 100644 index 000000000..1569a62e6 --- /dev/null +++ b/dist/fa/book.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.book = void 0; +var book = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1639 478q40 57 18 129l-275 906q-19 64-76.5 107.5t-122.5 43.5h-923q-77 0-148.5-53.5t-99.5-131.5q-24-67-2-127 0-4 3-27t4-37q1-8-3-21.5t-3-19.5q2-11 8-21t16.5-23.5 16.5-23.5q23-38 45-91.5t30-91.5q3-10 0.5-30t-0.5-28q3-11 17-28t17-23q21-36 42-92t25-90q1-9-2.5-32t0.5-28q4-13 22-30.5t22-22.5q19-26 42.5-84.5t27.5-96.5q1-8-3-25.5t-2-26.5q2-8 9-18t18-23 17-21q8-12 16.5-30.5t15-35 16-36 19.5-32 26.5-23.5 36-11.5 47.5 5.5l-1 3q38-9 51-9h761q74 0 114 56t18 130l-274 906q-36 119-71.5 153.5t-128.5 34.5h-869q-27 0-38 15-11 16-1 43 24 70 144 70h923q29 0 56-15.5t35-41.5l300-987q7-22 5-57 38 15 59 43zM575 480q-4 13 2 22.5t20 9.5h608q13 0 25.5-9.5t16.5-22.5l21-64q4-13-2-22.5t-20-9.5h-608q-13 0-25.5 9.5t-16.5 22.5zM492 736q-4 13 2 22.5t20 9.5h608q13 0 25.5-9.5t16.5-22.5l21-64q4-13-2-22.5t-20-9.5h-608q-13 0-25.5 9.5t-16.5 22.5z" + } + }] +}; +exports.book = book; \ No newline at end of file diff --git a/dist/fa/bookmark.js b/dist/fa/bookmark.js new file mode 100644 index 000000000..665466c1b --- /dev/null +++ b/dist/fa/bookmark.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bookmark = void 0; +var bookmark = { + "viewBox": "0 0 1280 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1164 128q23 0 44 9 33 13 52.5 41t19.5 62v1289q0 34-19.5 62t-52.5 41q-19 8-44 8-48 0-83-32l-441-424-441 424q-36 33-83 33-23 0-44-9-33-13-52.5-41t-19.5-62v-1289q0-34 19.5-62t52.5-41q21-9 44-9h1048z" + } + }] +}; +exports.bookmark = bookmark; \ No newline at end of file diff --git a/dist/fa/bookmarkO.js b/dist/fa/bookmarkO.js new file mode 100644 index 000000000..dcfb32c27 --- /dev/null +++ b/dist/fa/bookmarkO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bookmarkO = void 0; +var bookmarkO = { + "viewBox": "0 0 1280 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1152 256h-1024v1242l423-406 89-85 89 85 423 406v-1242zM1164 128q23 0 44 9 33 13 52.5 41t19.5 62v1289q0 34-19.5 62t-52.5 41q-19 8-44 8-48 0-83-32l-441-424-441 424q-36 33-83 33-23 0-44-9-33-13-52.5-41t-19.5-62v-1289q0-34 19.5-62t52.5-41q21-9 44-9h1048z" + } + }] +}; +exports.bookmarkO = bookmarkO; \ No newline at end of file diff --git a/dist/fa/braille.js b/dist/fa/braille.js new file mode 100644 index 000000000..9182b470e --- /dev/null +++ b/dist/fa/braille.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.braille = void 0; +var braille = { + "viewBox": "0 0 2176 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M192 1184q-66 0-113 47t-47 113 47 113 113 47 113-47 47-113-47-113-113-47zM704 1184q-66 0-113 47t-47 113 47 113 113 47 113-47 47-113-47-113-113-47zM704 672q-66 0-113 47t-47 113 47 113 113 47 113-47 47-113-47-113-113-47zM1472 1184q-66 0-113 47t-47 113 47 113 113 47 113-47 47-113-47-113-113-47zM1984 1184q-66 0-113 47t-47 113 47 113 113 47 113-47 47-113-47-113-113-47zM1472 672q-66 0-113 47t-47 113 47 113 113 47 113-47 47-113-47-113-113-47zM1984 672q-66 0-113 47t-47 113 47 113 113 47 113-47 47-113-47-113-113-47zM1984 160q-66 0-113 47t-47 113 47 113 113 47 113-47 47-113-47-113-113-47zM384 1344q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM896 1344q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM384 832q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM896 832q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM384 320q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM1664 1344q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM896 320q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM2176 1344q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM1664 832q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM2176 832q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM1664 320q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM2176 320q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136z" + } + }] +}; +exports.braille = braille; \ No newline at end of file diff --git a/dist/fa/briefcase.js b/dist/fa/briefcase.js new file mode 100644 index 000000000..b6e140f91 --- /dev/null +++ b/dist/fa/briefcase.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.briefcase = void 0; +var briefcase = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 256h512v-128h-512v128zM1792 896v480q0 66-47 113t-113 47h-1472q-66 0-113-47t-47-113v-480h672v160q0 26 19 45t45 19h320q26 0 45-19t19-45v-160h672zM1024 896v128h-256v-128h256zM1792 416v384h-1792v-384q0-66 47-113t113-47h352v-160q0-40 28-68t68-28h576q40 0 68 28t28 68v160h352q66 0 113 47t47 113z" + } + }] +}; +exports.briefcase = briefcase; \ No newline at end of file diff --git a/dist/fa/btc.js b/dist/fa/btc.js new file mode 100644 index 000000000..12e55afed --- /dev/null +++ b/dist/fa/btc.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.btc = void 0; +var btc = { + "viewBox": "0 0 1280 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1167 640q18 182-131 258 117 28 175 103t45 214q-7 71-32.5 125t-64.5 89-97 58.5-121.5 34.5-145.5 15v255h-154v-251q-80 0-122-1v252h-154v-255q-18 0-54-0.5t-55-0.5h-200l31-183h111q50 0 58-51v-402h16q-6-1-16-1v-287q-13-68-89-68h-111v-164l212 1q64 0 97-1v-252h154v247q82-2 122-2v-245h154v252q79 7 140 22.5t113 45 82.5 78 36.5 114.5zM952 1185q0-36-15-64t-37-46-57.5-30.5-65.5-18.5-74-9-69-3-64.5 1-47.5 1v338q8 0 37 0.5t48 0.5 53-1.5 58.5-4 57-8.5 55.5-14 47.5-21 39.5-30 24.5-40 9.5-51zM881 709q0-33-12.5-58.5t-30.5-42-48-28-55-16.5-61.5-8-58-2.5-54 1-39.5 0.5v307q5 0 34.5 0.5t46.5 0 50-2 55-5.5 51.5-11 48.5-18.5 37-27 27-38.5 9-51z" + } + }] +}; +exports.btc = btc; \ No newline at end of file diff --git a/dist/fa/bug.js b/dist/fa/bug.js new file mode 100644 index 000000000..f3d78bfde --- /dev/null +++ b/dist/fa/bug.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bug = void 0; +var bug = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1632 960q0 26-19 45t-45 19h-224q0 171-67 290l208 209q19 19 19 45t-19 45q-18 19-45 19t-45-19l-198-197q-5 5-15 13t-42 28.5-65 36.5-82 29-97 13v-896h-128v896q-51 0-101.5-13.5t-87-33-66-39-43.5-32.5l-15-14-183 207q-20 21-48 21-24 0-43-16-19-18-20.5-44.5t15.5-46.5l202-227q-58-114-58-274h-224q-26 0-45-19t-19-45 19-45 45-19h224v-294l-173-173q-19-19-19-45t19-45 45-19 45 19l173 173h844l173-173q19-19 45-19t45 19 19 45-19 45l-173 173v294h224q26 0 45 19t19 45zM1152 384h-640q0-133 93.5-226.5t226.5-93.5 226.5 93.5 93.5 226.5z" + } + }] +}; +exports.bug = bug; \ No newline at end of file diff --git a/dist/fa/building.js b/dist/fa/building.js new file mode 100644 index 000000000..a44ee98d0 --- /dev/null +++ b/dist/fa/building.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.building = void 0; +var building = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1344 0q26 0 45 19t19 45v1664q0 26-19 45t-45 19h-1280q-26 0-45-19t-19-45v-1664q0-26 19-45t45-19h1280zM512 288v64q0 14 9 23t23 9h64q14 0 23-9t9-23v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23zM512 544v64q0 14 9 23t23 9h64q14 0 23-9t9-23v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23zM512 800v64q0 14 9 23t23 9h64q14 0 23-9t9-23v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23zM512 1056v64q0 14 9 23t23 9h64q14 0 23-9t9-23v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23zM384 1376v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v64q0 14 9 23t23 9h64q14 0 23-9t9-23zM384 1120v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v64q0 14 9 23t23 9h64q14 0 23-9t9-23zM384 864v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v64q0 14 9 23t23 9h64q14 0 23-9t9-23zM384 608v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v64q0 14 9 23t23 9h64q14 0 23-9t9-23zM384 352v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v64q0 14 9 23t23 9h64q14 0 23-9t9-23zM896 1632v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zM896 1120v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v64q0 14 9 23t23 9h64q14 0 23-9t9-23zM896 864v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v64q0 14 9 23t23 9h64q14 0 23-9t9-23zM896 608v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v64q0 14 9 23t23 9h64q14 0 23-9t9-23zM896 352v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v64q0 14 9 23t23 9h64q14 0 23-9t9-23zM1152 1376v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v64q0 14 9 23t23 9h64q14 0 23-9t9-23zM1152 1120v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v64q0 14 9 23t23 9h64q14 0 23-9t9-23zM1152 864v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v64q0 14 9 23t23 9h64q14 0 23-9t9-23zM1152 608v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v64q0 14 9 23t23 9h64q14 0 23-9t9-23zM1152 352v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v64q0 14 9 23t23 9h64q14 0 23-9t9-23z" + } + }] +}; +exports.building = building; \ No newline at end of file diff --git a/dist/fa/buildingO.js b/dist/fa/buildingO.js new file mode 100644 index 000000000..e31cacd9d --- /dev/null +++ b/dist/fa/buildingO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.buildingO = void 0; +var buildingO = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M384 1312v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM384 1056v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM640 1056v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM384 800v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM1152 1312v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM896 1056v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM640 800v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM384 544v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM1152 1056v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM896 800v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM640 544v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM384 288v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM1152 800v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM896 544v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM640 288v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM1152 544v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM896 288v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM1152 288v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM896 1664h384v-1536h-1152v1536h384v-224q0-13 9.5-22.5t22.5-9.5h320q13 0 22.5 9.5t9.5 22.5v224zM1408 64v1664q0 26-19 45t-45 19h-1280q-26 0-45-19t-19-45v-1664q0-26 19-45t45-19h1280q26 0 45 19t19 45z" + } + }] +}; +exports.buildingO = buildingO; \ No newline at end of file diff --git a/dist/fa/bullhorn.js b/dist/fa/bullhorn.js new file mode 100644 index 000000000..e2783274f --- /dev/null +++ b/dist/fa/bullhorn.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bullhorn = void 0; +var bullhorn = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1664 640q53 0 90.5 37.5t37.5 90.5-37.5 90.5-90.5 37.5v384q0 52-38 90t-90 38q-417-347-812-380-58 19-91 66t-31 100.5 40 92.5q-20 33-23 65.5t6 58 33.5 55 48 50 61.5 50.5q-29 58-111.5 83t-168.5 11.5-132-55.5q-7-23-29.5-87.5t-32-94.5-23-89-15-101 3.5-98.5 22-110.5h-122q-66 0-113-47t-47-113v-192q0-66 47-113t113-47h480q435 0 896-384 52 0 90 38t38 90v384zM1536 1244v-954q-394 302-768 343v270q377 42 768 341z" + } + }] +}; +exports.bullhorn = bullhorn; \ No newline at end of file diff --git a/dist/fa/bullseye.js b/dist/fa/bullseye.js new file mode 100644 index 000000000..80ac2e802 --- /dev/null +++ b/dist/fa/bullseye.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bullseye = void 0; +var bullseye = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 896q0 106-75 181t-181 75-181-75-75-181 75-181 181-75 181 75 75 181zM1152 896q0-159-112.5-271.5t-271.5-112.5-271.5 112.5-112.5 271.5 112.5 271.5 271.5 112.5 271.5-112.5 112.5-271.5zM1280 896q0 212-150 362t-362 150-362-150-150-362 150-362 362-150 362 150 150 362zM1408 896q0-130-51-248.5t-136.5-204-204-136.5-248.5-51-248.5 51-204 136.5-136.5 204-51 248.5 51 248.5 136.5 204 204 136.5 248.5 51 248.5-51 204-136.5 136.5-204 51-248.5zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.bullseye = bullseye; \ No newline at end of file diff --git a/dist/fa/bus.js b/dist/fa/bus.js new file mode 100644 index 000000000..5fe72e6c2 --- /dev/null +++ b/dist/fa/bus.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bus = void 0; +var bus = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M384 1216q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1408 1216q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1362 820l-72-384q-5-23-22.5-37.5t-40.5-14.5h-918q-23 0-40.5 14.5t-22.5 37.5l-72 384q-5 30 14 53t49 23h1062q30 0 49-23t14-53zM1136 208q0-20-14-34t-34-14h-640q-20 0-34 14t-14 34 14 34 34 14h640q20 0 34-14t14-34zM1536 933v603h-128v128q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5v-128h-768v128q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5v-128h-128v-603q0-112 25-223l103-454q9-78 97.5-137t230-89 312.5-30 312.5 30 230 89 97.5 137l105 454q23 102 23 223z" + } + }] +}; +exports.bus = bus; \ No newline at end of file diff --git a/dist/fa/buysellads.js b/dist/fa/buysellads.js new file mode 100644 index 000000000..39dc9ed43 --- /dev/null +++ b/dist/fa/buysellads.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.buysellads = void 0; +var buysellads = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M915 1086h-294l147-551zM1001 1408h311l-324-1024h-440l-324 1024h311l383-314zM1536 416v960q0 118-85 203t-203 85h-960q-118 0-203-85t-85-203v-960q0-118 85-203t203-85h960q118 0 203 85t85 203z" + } + }] +}; +exports.buysellads = buysellads; \ No newline at end of file diff --git a/dist/fa/cab.js b/dist/fa/cab.js new file mode 100644 index 000000000..930229b5a --- /dev/null +++ b/dist/fa/cab.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cab = void 0; +var cab = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1824 896q93 0 158.5 65.5t65.5 158.5v384q0 14-9 23t-23 9h-96v64q0 80-56 136t-136 56-136-56-56-136v-64h-1024v64q0 80-56 136t-136 56-136-56-56-136v-64h-96q-14 0-23-9t-9-23v-384q0-93 65.5-158.5t158.5-65.5h28l105-419q23-94 104-157.5t179-63.5h128v-224q0-14 9-23t23-9h448q14 0 23 9t9 23v224h128q98 0 179 63.5t104 157.5l105 419h28zM320 1376q66 0 113-47t47-113-47-113-113-47-113 47-47 113 47 113 113 47zM516 896h1016l-89-357q-2-8-14-17.5t-21-9.5h-768q-9 0-21 9.5t-14 17.5zM1728 1376q66 0 113-47t47-113-47-113-113-47-113 47-47 113 47 113 113 47z" + } + }] +}; +exports.cab = cab; \ No newline at end of file diff --git a/dist/fa/calculator.js b/dist/fa/calculator.js new file mode 100644 index 000000000..fa63dc61c --- /dev/null +++ b/dist/fa/calculator.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.calculator = void 0; +var calculator = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M384 1536q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM768 1536q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM384 1152q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1152 1536q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM768 1152q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM384 768q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1152 1152q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM768 768q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1536 1536v-384q0-52-38-90t-90-38-90 38-38 90v384q0 52 38 90t90 38 90-38 38-90zM1152 768q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1536 448v-256q0-26-19-45t-45-19h-1280q-26 0-45 19t-19 45v256q0 26 19 45t45 19h1280q26 0 45-19t19-45zM1536 768q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1664 128v1536q0 52-38 90t-90 38h-1408q-52 0-90-38t-38-90v-1536q0-52 38-90t90-38h1408q52 0 90 38t38 90z" + } + }] +}; +exports.calculator = calculator; \ No newline at end of file diff --git a/dist/fa/calendar.js b/dist/fa/calendar.js new file mode 100644 index 000000000..a3c5a2760 --- /dev/null +++ b/dist/fa/calendar.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.calendar = void 0; +var calendar = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M128 1664h288v-288h-288v288zM480 1664h320v-288h-320v288zM128 1312h288v-320h-288v320zM480 1312h320v-320h-320v320zM128 928h288v-288h-288v288zM864 1664h320v-288h-320v288zM480 928h320v-288h-320v288zM1248 1664h288v-288h-288v288zM864 1312h320v-320h-320v320zM512 448v-288q0-13-9.5-22.5t-22.5-9.5h-64q-13 0-22.5 9.5t-9.5 22.5v288q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5-9.5t9.5-22.5zM1248 1312h288v-320h-288v320zM864 928h320v-288h-320v288zM1248 928h288v-288h-288v288zM1280 448v-288q0-13-9.5-22.5t-22.5-9.5h-64q-13 0-22.5 9.5t-9.5 22.5v288q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5-9.5t9.5-22.5zM1664 384v1280q0 52-38 90t-90 38h-1408q-52 0-90-38t-38-90v-1280q0-52 38-90t90-38h128v-96q0-66 47-113t113-47h64q66 0 113 47t47 113v96h384v-96q0-66 47-113t113-47h64q66 0 113 47t47 113v96h128q52 0 90 38t38 90z" + } + }] +}; +exports.calendar = calendar; \ No newline at end of file diff --git a/dist/fa/calendarCheckO.js b/dist/fa/calendarCheckO.js new file mode 100644 index 000000000..97e347b39 --- /dev/null +++ b/dist/fa/calendarCheckO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.calendarCheckO = void 0; +var calendarCheckO = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1303 964l-512 512q-10 9-23 9t-23-9l-288-288q-9-10-9-23t9-22l46-46q9-9 22-9t23 9l220 220 444-444q10-9 23-9t22 9l46 46q9 9 9 22t-9 23zM128 1664h1408v-1024h-1408v1024zM512 448v-288q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v288q0 14 9 23t23 9h64q14 0 23-9t9-23zM1280 448v-288q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v288q0 14 9 23t23 9h64q14 0 23-9t9-23zM1664 384v1280q0 52-38 90t-90 38h-1408q-52 0-90-38t-38-90v-1280q0-52 38-90t90-38h128v-96q0-66 47-113t113-47h64q66 0 113 47t47 113v96h384v-96q0-66 47-113t113-47h64q66 0 113 47t47 113v96h128q52 0 90 38t38 90z" + } + }] +}; +exports.calendarCheckO = calendarCheckO; \ No newline at end of file diff --git a/dist/fa/calendarMinusO.js b/dist/fa/calendarMinusO.js new file mode 100644 index 000000000..fb5c1757e --- /dev/null +++ b/dist/fa/calendarMinusO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.calendarMinusO = void 0; +var calendarMinusO = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1152 1120v64q0 14-9 23t-23 9h-576q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h576q14 0 23 9t9 23zM128 1664h1408v-1024h-1408v1024zM512 448v-288q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v288q0 14 9 23t23 9h64q14 0 23-9t9-23zM1280 448v-288q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v288q0 14 9 23t23 9h64q14 0 23-9t9-23zM1664 384v1280q0 52-38 90t-90 38h-1408q-52 0-90-38t-38-90v-1280q0-52 38-90t90-38h128v-96q0-66 47-113t113-47h64q66 0 113 47t47 113v96h384v-96q0-66 47-113t113-47h64q66 0 113 47t47 113v96h128q52 0 90 38t38 90z" + } + }] +}; +exports.calendarMinusO = calendarMinusO; \ No newline at end of file diff --git a/dist/fa/calendarO.js b/dist/fa/calendarO.js new file mode 100644 index 000000000..02e14c00f --- /dev/null +++ b/dist/fa/calendarO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.calendarO = void 0; +var calendarO = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M128 1664h1408v-1024h-1408v1024zM512 448v-288q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v288q0 14 9 23t23 9h64q14 0 23-9t9-23zM1280 448v-288q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v288q0 14 9 23t23 9h64q14 0 23-9t9-23zM1664 384v1280q0 52-38 90t-90 38h-1408q-52 0-90-38t-38-90v-1280q0-52 38-90t90-38h128v-96q0-66 47-113t113-47h64q66 0 113 47t47 113v96h384v-96q0-66 47-113t113-47h64q66 0 113 47t47 113v96h128q52 0 90 38t38 90z" + } + }] +}; +exports.calendarO = calendarO; \ No newline at end of file diff --git a/dist/fa/calendarPlusO.js b/dist/fa/calendarPlusO.js new file mode 100644 index 000000000..815f2e0ec --- /dev/null +++ b/dist/fa/calendarPlusO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.calendarPlusO = void 0; +var calendarPlusO = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1536 256q52 0 90 38t38 90v1280q0 52-38 90t-90 38h-1408q-52 0-90-38t-38-90v-1280q0-52 38-90t90-38h128v-96q0-66 47-113t113-47h64q66 0 113 47t47 113v96h384v-96q0-66 47-113t113-47h64q66 0 113 47t47 113v96h128zM1152 160v288q0 14 9 23t23 9h64q14 0 23-9t9-23v-288q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23zM384 160v288q0 14 9 23t23 9h64q14 0 23-9t9-23v-288q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23zM1536 1664v-1024h-1408v1024h1408zM896 1088h224q14 0 23 9t9 23v64q0 14-9 23t-23 9h-224v224q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-224h-224q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h224v-224q0-14 9-23t23-9h64q14 0 23 9t9 23v224z" + } + }] +}; +exports.calendarPlusO = calendarPlusO; \ No newline at end of file diff --git a/dist/fa/calendarTimesO.js b/dist/fa/calendarTimesO.js new file mode 100644 index 000000000..585e8a7e4 --- /dev/null +++ b/dist/fa/calendarTimesO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.calendarTimesO = void 0; +var calendarTimesO = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1111 1385l-46 46q-9 9-22 9t-23-9l-188-189-188 189q-10 9-23 9t-22-9l-46-46q-9-9-9-22t9-23l189-188-189-188q-9-10-9-23t9-22l46-46q9-9 22-9t23 9l188 188 188-188q10-9 23-9t22 9l46 46q9 9 9 22t-9 23l-188 188 188 188q9 10 9 23t-9 22zM128 1664h1408v-1024h-1408v1024zM512 448v-288q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v288q0 14 9 23t23 9h64q14 0 23-9t9-23zM1280 448v-288q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v288q0 14 9 23t23 9h64q14 0 23-9t9-23zM1664 384v1280q0 52-38 90t-90 38h-1408q-52 0-90-38t-38-90v-1280q0-52 38-90t90-38h128v-96q0-66 47-113t113-47h64q66 0 113 47t47 113v96h384v-96q0-66 47-113t113-47h64q66 0 113 47t47 113v96h128q52 0 90 38t38 90z" + } + }] +}; +exports.calendarTimesO = calendarTimesO; \ No newline at end of file diff --git a/dist/fa/camera.js b/dist/fa/camera.js new file mode 100644 index 000000000..8b6adf630 --- /dev/null +++ b/dist/fa/camera.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.camera = void 0; +var camera = { + "viewBox": "0 0 1920 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M960 672q119 0 203.5 84.5t84.5 203.5-84.5 203.5-203.5 84.5-203.5-84.5-84.5-203.5 84.5-203.5 203.5-84.5zM1664 256q106 0 181 75t75 181v896q0 106-75 181t-181 75h-1408q-106 0-181-75t-75-181v-896q0-106 75-181t181-75h224l51-136q19-49 69.5-84.5t103.5-35.5h512q53 0 103.5 35.5t69.5 84.5l51 136h224zM960 1408q185 0 316.5-131.5t131.5-316.5-131.5-316.5-316.5-131.5-316.5 131.5-131.5 316.5 131.5 316.5 316.5 131.5z" + } + }] +}; +exports.camera = camera; \ No newline at end of file diff --git a/dist/fa/cameraRetro.js b/dist/fa/cameraRetro.js new file mode 100644 index 000000000..25510d111 --- /dev/null +++ b/dist/fa/cameraRetro.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cameraRetro = void 0; +var cameraRetro = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M928 832q0-14-9-23t-23-9q-66 0-113 47t-47 113q0 14 9 23t23 9 23-9 9-23q0-40 28-68t68-28q14 0 23-9t9-23zM1152 962q0 106-75 181t-181 75-181-75-75-181 75-181 181-75 181 75 75 181zM128 1536h1536v-128h-1536v128zM1280 962q0-159-112.5-271.5t-271.5-112.5-271.5 112.5-112.5 271.5 112.5 271.5 271.5 112.5 271.5-112.5 112.5-271.5zM256 320h384v-128h-384v128zM128 512h1536v-118-138h-828l-64 128h-644v128zM1792 256v1280q0 53-37.5 90.5t-90.5 37.5h-1536q-53 0-90.5-37.5t-37.5-90.5v-1280q0-53 37.5-90.5t90.5-37.5h1536q53 0 90.5 37.5t37.5 90.5z" + } + }] +}; +exports.cameraRetro = cameraRetro; \ No newline at end of file diff --git a/dist/fa/car.js b/dist/fa/car.js new file mode 100644 index 000000000..4e718d974 --- /dev/null +++ b/dist/fa/car.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.car = void 0; +var car = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M480 1088q0-66-47-113t-113-47-113 47-47 113 47 113 113 47 113-47 47-113zM516 768h1016l-89-357q-2-8-14-17.5t-21-9.5h-768q-9 0-21 9.5t-14 17.5zM1888 1088q0-66-47-113t-113-47-113 47-47 113 47 113 113 47 113-47 47-113zM2048 992v384q0 14-9 23t-23 9h-96v128q0 80-56 136t-136 56-136-56-56-136v-128h-1024v128q0 80-56 136t-136 56-136-56-56-136v-128h-96q-14 0-23-9t-9-23v-384q0-93 65.5-158.5t158.5-65.5h28l105-419q23-94 104-157.5t179-63.5h768q98 0 179 63.5t104 157.5l105 419h28q93 0 158.5 65.5t65.5 158.5z" + } + }] +}; +exports.car = car; \ No newline at end of file diff --git a/dist/fa/caretDown.js b/dist/fa/caretDown.js new file mode 100644 index 000000000..e6780b536 --- /dev/null +++ b/dist/fa/caretDown.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.caretDown = void 0; +var caretDown = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 704q0 26-19 45l-448 448q-19 19-45 19t-45-19l-448-448q-19-19-19-45t19-45 45-19h896q26 0 45 19t19 45z" + } + }] +}; +exports.caretDown = caretDown; \ No newline at end of file diff --git a/dist/fa/caretLeft.js b/dist/fa/caretLeft.js new file mode 100644 index 000000000..034e09cd9 --- /dev/null +++ b/dist/fa/caretLeft.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.caretLeft = void 0; +var caretLeft = { + "viewBox": "0 0 640 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 448v896q0 26-19 45t-45 19-45-19l-448-448q-19-19-19-45t19-45l448-448q19-19 45-19t45 19 19 45z" + } + }] +}; +exports.caretLeft = caretLeft; \ No newline at end of file diff --git a/dist/fa/caretRight.js b/dist/fa/caretRight.js new file mode 100644 index 000000000..6e374a6d9 --- /dev/null +++ b/dist/fa/caretRight.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.caretRight = void 0; +var caretRight = { + "viewBox": "0 0 640 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M576 896q0 26-19 45l-448 448q-19 19-45 19t-45-19-19-45v-896q0-26 19-45t45-19 45 19l448 448q19 19 19 45z" + } + }] +}; +exports.caretRight = caretRight; \ No newline at end of file diff --git a/dist/fa/caretSquareODown.js b/dist/fa/caretSquareODown.js new file mode 100644 index 000000000..456ea3f35 --- /dev/null +++ b/dist/fa/caretSquareODown.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.caretSquareODown = void 0; +var caretSquareODown = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1145 675q18 35-5 66l-320 448q-19 27-52 27t-52-27l-320-448q-23-31-5-66 17-35 57-35h640q40 0 57 35zM1280 1376v-960q0-13-9.5-22.5t-22.5-9.5h-960q-13 0-22.5 9.5t-9.5 22.5v960q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5-9.5t9.5-22.5zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.caretSquareODown = caretSquareODown; \ No newline at end of file diff --git a/dist/fa/caretSquareOLeft.js b/dist/fa/caretSquareOLeft.js new file mode 100644 index 000000000..0aa055618 --- /dev/null +++ b/dist/fa/caretSquareOLeft.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.caretSquareOLeft = void 0; +var caretSquareOLeft = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 576v640q0 26-19 45t-45 19q-20 0-37-12l-448-320q-27-19-27-52t27-52l448-320q17-12 37-12 26 0 45 19t19 45zM1280 1376v-960q0-13-9.5-22.5t-22.5-9.5h-960q-13 0-22.5 9.5t-9.5 22.5v960q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5-9.5t9.5-22.5zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.caretSquareOLeft = caretSquareOLeft; \ No newline at end of file diff --git a/dist/fa/caretSquareORight.js b/dist/fa/caretSquareORight.js new file mode 100644 index 000000000..60f53e1ba --- /dev/null +++ b/dist/fa/caretSquareORight.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.caretSquareORight = void 0; +var caretSquareORight = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1088 896q0 33-27 52l-448 320q-31 23-66 5-35-17-35-57v-640q0-40 35-57 35-18 66 5l448 320q27 19 27 52zM1280 1376v-960q0-14-9-23t-23-9h-960q-14 0-23 9t-9 23v960q0 14 9 23t23 9h960q14 0 23-9t9-23zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.caretSquareORight = caretSquareORight; \ No newline at end of file diff --git a/dist/fa/caretSquareOUp.js b/dist/fa/caretSquareOUp.js new file mode 100644 index 000000000..d7d85473c --- /dev/null +++ b/dist/fa/caretSquareOUp.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.caretSquareOUp = void 0; +var caretSquareOUp = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1145 1117q-17 35-57 35h-640q-40 0-57-35-18-35 5-66l320-448q19-27 52-27t52 27l320 448q23 31 5 66zM1280 1376v-960q0-13-9.5-22.5t-22.5-9.5h-960q-13 0-22.5 9.5t-9.5 22.5v960q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5-9.5t9.5-22.5zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.caretSquareOUp = caretSquareOUp; \ No newline at end of file diff --git a/dist/fa/caretUp.js b/dist/fa/caretUp.js new file mode 100644 index 000000000..4aeefd908 --- /dev/null +++ b/dist/fa/caretUp.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.caretUp = void 0; +var caretUp = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 1216q0 26-19 45t-45 19h-896q-26 0-45-19t-19-45 19-45l448-448q19-19 45-19t45 19l448 448q19 19 19 45z" + } + }] +}; +exports.caretUp = caretUp; \ No newline at end of file diff --git a/dist/fa/cartArrowDown.js b/dist/fa/cartArrowDown.js new file mode 100644 index 000000000..8727e44ca --- /dev/null +++ b/dist/fa/cartArrowDown.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cartArrowDown = void 0; +var cartArrowDown = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1280 704q0-26-19-45t-45-19-45 19l-147 146v-293q0-26-19-45t-45-19-45 19-19 45v293l-147-146q-19-19-45-19t-45 19-19 45 19 45l256 256q19 19 45 19t45-19l256-256q19-19 19-45zM640 1536q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5 90.5 37.5 37.5 90.5zM1536 1536q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5 90.5 37.5 37.5 90.5zM1664 448v512q0 24-16 42.5t-41 21.5l-1044 122q1 7 4.5 21.5t6 26.5 2.5 22q0 16-24 64h920q26 0 45 19t19 45-19 45-45 19h-1024q-26 0-45-19t-19-45q0-14 11-39.5t29.5-59.5 20.5-38l-177-823h-204q-26 0-45-19t-19-45 19-45 45-19h256q16 0 28.5 6.5t20 15.5 13 24.5 7.5 26.5 5.5 29.5 4.5 25.5h1201q26 0 45 19t19 45z" + } + }] +}; +exports.cartArrowDown = cartArrowDown; \ No newline at end of file diff --git a/dist/fa/cartPlus.js b/dist/fa/cartPlus.js new file mode 100644 index 000000000..73d683483 --- /dev/null +++ b/dist/fa/cartPlus.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cartPlus = void 0; +var cartPlus = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1216 704q0-26-19-45t-45-19h-128v-128q0-26-19-45t-45-19-45 19-19 45v128h-128q-26 0-45 19t-19 45 19 45 45 19h128v128q0 26 19 45t45 19 45-19 19-45v-128h128q26 0 45-19t19-45zM640 1536q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5 90.5 37.5 37.5 90.5zM1536 1536q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5 90.5 37.5 37.5 90.5zM1664 448v512q0 24-16 42.5t-41 21.5l-1044 122q1 7 4.5 21.5t6 26.5 2.5 22q0 16-24 64h920q26 0 45 19t19 45-19 45-45 19h-1024q-26 0-45-19t-19-45q0-14 11-39.5t29.5-59.5 20.5-38l-177-823h-204q-26 0-45-19t-19-45 19-45 45-19h256q16 0 28.5 6.5t20 15.5 13 24.5 7.5 26.5 5.5 29.5 4.5 25.5h1201q26 0 45 19t19 45z" + } + }] +}; +exports.cartPlus = cartPlus; \ No newline at end of file diff --git a/dist/fa/cc.js b/dist/fa/cc.js new file mode 100644 index 000000000..4e56c8ca7 --- /dev/null +++ b/dist/fa/cc.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cc = void 0; +var cc = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M785 1008h207q-14 158-98.5 248.5t-214.5 90.5q-162 0-254.5-116t-92.5-316q0-194 93-311.5t233-117.5q148 0 232 87t97 247h-203q-5-64-35.5-99t-81.5-35q-57 0-88.5 60.5t-31.5 177.5q0 48 5 84t18 69.5 40 51.5 66 18q95 0 109-139zM1497 1008h206q-14 158-98 248.5t-214 90.5q-162 0-254.5-116t-92.5-316q0-194 93-311.5t233-117.5q148 0 232 87t97 247h-204q-4-64-35-99t-81-35q-57 0-88.5 60.5t-31.5 177.5q0 48 5 84t18 69.5 39.5 51.5 65.5 18q49 0 76.5-38t33.5-101zM1856 889q0-207-15.5-307t-60.5-161q-6-8-13.5-14t-21.5-15-16-11q-86-63-697-63-625 0-710 63-5 4-17.5 11.5t-21 14-14.5 14.5q-45 60-60 159.5t-15 308.5q0 208 15 307.5t60 160.5q6 8 15 15t20.5 14 17.5 12q44 33 239.5 49t470.5 16q610 0 697-65 5-4 17-11t20.5-14 13.5-16q46-60 61-159t15-309zM2048 128v1536h-2048v-1536h2048z" + } + }] +}; +exports.cc = cc; \ No newline at end of file diff --git a/dist/fa/ccAmex.js b/dist/fa/ccAmex.js new file mode 100644 index 000000000..165db3d5d --- /dev/null +++ b/dist/fa/ccAmex.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ccAmex = void 0; +var ccAmex = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M119 682h89l-45-108zM740 1208l74-79-70-79h-163v49h142v55h-142v54h159zM898 1130l99 110v-217zM1186 1083q0-33-40-33h-84v69h83q41 0 41-36zM1475 1079q0-29-42-29h-82v61h81q43 0 43-32zM1197 613q0-29-42-29h-82v60h81q43 0 43-31zM1656 682h89l-44-108zM699 527v271h-66v-212l-94 212h-57l-94-212v212h-132l-25-60h-135l-25 60h-70l116-271h96l110 257v-257h106l85 184 77-184h108zM1255 1083q0 20-5.5 35t-14 25-22.5 16.5-26 10-31.5 4.5-31.5 1-32.5-0.5-29.5-0.5v91h-126l-80-90-83 90h-256v-271h260l80 89 82-89h207q109 0 109 89zM964 742v56h-217v-271h217v57h-152v49h148v55h-148v54h152zM2304 1301v229q0 55-38.5 94.5t-93.5 39.5h-2040q-55 0-93.5-39.5t-38.5-94.5v-678h111l25-61h55l25 61h218v-46l19 46h113l20-47v47h541v-99l10-1q10 0 10 14v86h279v-23q23 12 55 18t52.5 6.5 63-0.5 51.5-1l25-61h56l25 61h227v-58l34 58h182v-378h-180v44l-25-44h-185v44l-23-44h-249q-69 0-109 22v-22h-172v22q-24-22-73-22h-628l-43 97-43-97h-198v44l-22-44h-169l-78 179v-391q0-55 38.5-94.5t93.5-39.5h2040q55 0 93.5 39.5t38.5 94.5v678h-120q-51 0-81 22v-22h-177q-55 0-78 22v-22h-316v22q-31-22-87-22h-209v22q-23-22-91-22h-234l-54 58-50-58h-349v378h343l55-59 52 59h211v-89h21q59 0 90-13v102h174v-99h8q8 0 10 2t2 10v87h529q57 0 88-24v24h168q60 0 95-17zM1546 1067q0 23-12 43t-34 29q25 9 34 26t9 46v54h-65v-45q0-33-12-43.5t-46-10.5h-69v99h-65v-271h154q48 0 77 15t29 58zM1269 600q0 24-12.5 44t-33.5 29q26 9 34.5 25.5t8.5 46.5v53h-65q0-9 0.5-26.5t0-25-3-18.5-8.5-16-17.5-8.5-29.5-3.5h-70v98h-64v-271l153 1q49 0 78 14.5t29 57.5zM1798 1209v56h-216v-271h216v56h-151v49h148v55h-148v54zM1372 527v271h-66v-271h66zM2065 1179q0 86-102 86h-126v-58h126q34 0 34-25 0-16-17-21t-41.5-5-49.5-3.5-42-22.5-17-55q0-39 26-60t66-21h130v57h-119q-36 0-36 25 0 16 17.5 20.5t42 4 49 2.5 42 21.5 17.5 54.5zM2304 1129v101q-24 35-88 35h-125v-58h125q33 0 33-25 0-13-12.5-19t-31-5.5-40-2-40-8-31-24-12.5-48.5q0-39 26.5-60t66.5-21h129v57h-118q-36 0-36 25 0 20 29 22t68.5 5 56.5 26zM2139 528v270h-92l-122-203v203h-132l-26-60h-134l-25 60h-75q-129 0-129-133 0-138 133-138h63v59q-7 0-28-1t-28.5-0.5-23 2-21.5 6.5-14.5 13.5-11.5 23-3 33.5q0 38 13.5 58t49.5 20h29l92-213h97l109 256v-256h99l114 188v-188h66z" + } + }] +}; +exports.ccAmex = ccAmex; \ No newline at end of file diff --git a/dist/fa/ccDinersClub.js b/dist/fa/ccDinersClub.js new file mode 100644 index 000000000..c1ea5ba9a --- /dev/null +++ b/dist/fa/ccDinersClub.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ccDinersClub = void 0; +var ccDinersClub = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M858 1241v-693q-106 41-172 135.5t-66 211.5 66 211.5 172 134.5zM1362 895q0-117-66-211.5t-172-135.5v694q106-41 172-135.5t66-211.5zM1577 895q0 159-78.5 294t-213.5 213.5-294 78.5q-119 0-227.5-46.5t-187-125-125-187-46.5-227.5q0-159 78.5-294t213.5-213.5 294-78.5 294 78.5 213.5 213.5 78.5 294zM1960 902q0-139-55.5-261.5t-147.5-205.5-213.5-131-252.5-48h-301q-176 0-323.5 81t-235 230-87.5 335q0 171 87 317.5t236 231.5 323 85h301q129 0 251.5-50.5t214.5-135 147.5-202.5 55.5-246zM2304 256v1280q0 52-38 90t-90 38h-2048q-52 0-90-38t-38-90v-1280q0-52 38-90t90-38h2048q52 0 90 38t38 90z" + } + }] +}; +exports.ccDinersClub = ccDinersClub; \ No newline at end of file diff --git a/dist/fa/ccDiscover.js b/dist/fa/ccDiscover.js new file mode 100644 index 000000000..9b2936224 --- /dev/null +++ b/dist/fa/ccDiscover.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ccDiscover = void 0; +var ccDiscover = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M313 777q0 51-36 84-29 26-89 26h-17v-220h17q61 0 89 27 36 31 36 83zM2089 712q0 52-64 52h-19v-101h20q63 0 63 49zM380 777q0-74-50-120.5t-129-46.5h-95v333h95q74 0 119-38 60-51 60-128zM410 943h65v-333h-65v333zM730 842q0-40-20.5-62t-75.5-42q-29-10-39.5-19t-10.5-23q0-16 13.5-26.5t34.5-10.5q29 0 53 27l34-44q-41-37-98-37-44 0-74 27.5t-30 67.5q0 35 18 55.5t64 36.5q37 13 45 19 19 12 19 34 0 20-14 33.5t-36 13.5q-48 0-71-44l-42 40q44 64 115 64 51 0 83-30.5t32-79.5zM1008 932v-77q-37 37-78 37-49 0-80.5-32.5t-31.5-82.5q0-48 31.5-81.5t77.5-33.5q43 0 81 38v-77q-40-20-80-20-74 0-125.5 50.5t-51.5 123.5 51 123.5 125 50.5q42 0 81-19zM2240 1536v-527q-65 40-144.5 84t-237.5 117-329.5 137.5-417.5 134.5-504 118h1569q26 0 45-19t19-45zM1389 779q0-75-53-128t-128-53-128 53-53 128 53 128 128 53 128-53 53-128zM1541 952l144-342h-71l-90 224-89-224h-71l142 342h35zM1714 943h184v-56h-119v-90h115v-56h-115v-74h119v-57h-184v333zM2105 943h80l-105-140q76-16 76-94 0-47-31-73t-87-26h-97v333h65v-133h9zM2304 262v1268q0 56-38.5 95t-93.5 39h-2040q-55 0-93.5-39t-38.5-95v-1268q0-56 38.5-95t93.5-39h2040q55 0 93.5 39t38.5 95z" + } + }] +}; +exports.ccDiscover = ccDiscover; \ No newline at end of file diff --git a/dist/fa/ccJcb.js b/dist/fa/ccJcb.js new file mode 100644 index 000000000..fc949f8c7 --- /dev/null +++ b/dist/fa/ccJcb.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ccJcb = void 0; +var ccJcb = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1951 998q0 26-15.5 44.5t-38.5 23.5q-8 2-18 2h-153v-140h153q10 0 18 2 23 5 38.5 23.5t15.5 44.5zM1933 785q0 25-15 42t-38 21q-3 1-15 1h-139v-129h139q3 0 8.5 0.5t6.5 0.5q23 4 38 21.5t15 42.5zM728 949v-308h-228v308q0 58-38 94.5t-105 36.5q-108 0-229-59v112q53 15 121 23t109 9l42 1q328 0 328-217zM1442 1133v-113q-99 52-200 59-108 8-169-41t-61-142 61-142 169-41q101 7 200 58v-112q-48-12-100-19.5t-80-9.5l-28-2q-127-6-218.5 14t-140.5 60-71 88-22 106 22 106 71 88 140.5 60 218.5 14q101-4 208-31zM2176 1018q0-54-43-88.5t-109-39.5v-3q57-8 89-41.5t32-79.5q0-55-41-88t-107-36q-3 0-12-0.5t-14-0.5h-455v510h491q74 0 121.5-36.5t47.5-96.5zM2304 256v1280q0 52-38 90t-90 38h-2048q-52 0-90-38t-38-90v-1280q0-52 38-90t90-38h2048q52 0 90 38t38 90z" + } + }] +}; +exports.ccJcb = ccJcb; \ No newline at end of file diff --git a/dist/fa/ccMastercard.js b/dist/fa/ccMastercard.js new file mode 100644 index 000000000..150f5cae1 --- /dev/null +++ b/dist/fa/ccMastercard.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ccMastercard = void 0; +var ccMastercard = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1119 341q-128-85-281-85-103 0-197.5 40.5t-162.5 108.5-108.5 162-40.5 197q0 104 40.5 198t108.5 162 162 108.5 198 40.5q153 0 281-85-131-107-178-265.5t0.5-316.5 177.5-265zM1152 365q-126 99-172 249.5t-0.5 300.5 172.5 249q127-99 172.5-249t-0.5-300.5-172-249.5zM1185 341q130 107 177.5 265.5t0.5 317-178 264.5q128 85 281 85 104 0 198-40.5t162-108.5 108.5-162 40.5-198q0-103-40.5-197t-108.5-162-162.5-108.5-197.5-40.5q-153 0-281 85zM1926 1063h7v-3h-17v3h7v17h3v-17zM1955 1080h4v-20h-5l-6 13-6-13h-5v20h3v-15l6 13h4l5-13v15zM1947 1520v2h-2-3v-3h3 2v1zM1947 1529h3l-4-5h2l1-1q1-1 1-3t-1-3l-1-1h-3-6v13h3v-5h1zM685 1461q0-19 11-31t30-12q18 0 29 12.5t11 30.5q0 19-11 31t-29 12q-19 0-30-12t-11-31zM1158 1417q30 0 35 32h-70q5-32 35-32zM1514 1461q0-19 11-31t29-12 29.5 12.5 11.5 30.5q0 19-11 31t-30 12q-18 0-29-12t-11-31zM1786 1461q0-18 11.5-30.5t29.5-12.5 29.5 12.5 11.5 30.5q0 19-11.5 31t-29.5 12-29.5-12.5-11.5-30.5zM1944 1533q-2 0-4-1-1 0-3-2t-2-3q-1-2-1-4 0-3 1-4 0-2 2-4l1-1q2 0 2-1 2-1 4-1 3 0 4 1l4 2 2 4v1q1 2 1 3l-1 1v3t-1 1l-1 2q-2 2-4 2-1 1-4 1zM599 1529h30v-85q0-24-14.5-38.5t-39.5-15.5q-32 0-47 24-14-24-45-24-24 0-39 20v-16h-30v135h30v-75q0-36 33-36 30 0 30 36v75h29v-75q0-36 33-36 30 0 30 36v75zM765 1529h29v-68-67h-29v16q-17-20-43-20-29 0-48 20t-19 51 19 51 48 20q28 0 43-20v17zM943 1488q0-34-47-40l-14-2q-23-4-23-14 0-15 25-15 23 0 43 11l12-24q-22-14-55-14-26 0-41 12t-15 32q0 33 47 39l13 2q24 4 24 14 0 17-31 17-25 0-45-14l-13 23q25 17 58 17 29 0 45.5-12t16.5-32zM1073 1522l-8-25q-13 7-26 7-19 0-19-22v-61h48v-27h-48v-41h-30v41h-28v27h28v61q0 50 47 50 21 0 36-10zM1159 1390q-29 0-48 20t-19 51q0 32 19.5 51.5t49.5 19.5q33 0 55-19l-14-22q-18 15-39 15-34 0-41-33h101v-12q0-32-18-51.5t-46-19.5zM1318 1390q-23 0-35 20v-16h-30v135h30v-76q0-35 29-35 10 0 18 4l9-28q-9-4-21-4zM1348 1461q0 31 19.5 51t52.5 20q29 0 48-16l-14-24q-18 13-35 12-18 0-29.5-12t-11.5-31 11.5-31 29.5-12q19 0 35 12l14-24q-20-16-48-16-33 0-52.5 20t-19.5 51zM1593 1529h30v-68-67h-30v16q-15-20-42-20-29 0-48.5 20t-19.5 51 19.5 51 48.5 20q28 0 42-20v17zM1726 1390q-23 0-35 20v-16h-29v135h29v-76q0-35 29-35 10 0 18 4l9-28q-8-4-21-4zM1866 1529h29v-68-122h-29v71q-15-20-43-20t-47.5 20.5-19.5 50.5 19.5 50.5 47.5 20.5q29 0 43-20v17zM1944 1509l-2 1h-3q-2 1-4 3-3 1-3 4-1 2-1 6 0 3 1 5 0 2 3 4 2 2 4 3t5 1q4 0 6-1 0-1 2-2l2-1q1-1 3-4 1-2 1-5 0-4-1-6-1-1-3-4 0-1-2-2l-2-1q-1 0-3-0.5t-3-0.5zM2304 256v1280q0 52-38 90t-90 38h-2048q-52 0-90-38t-38-90v-1280q0-52 38-90t90-38h2048q52 0 90 38t38 90z" + } + }] +}; +exports.ccMastercard = ccMastercard; \ No newline at end of file diff --git a/dist/fa/ccPaypal.js b/dist/fa/ccPaypal.js new file mode 100644 index 000000000..557dae322 --- /dev/null +++ b/dist/fa/ccPaypal.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ccPaypal = void 0; +var ccPaypal = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M745 906q0 37-25.5 61.5t-62.5 24.5q-29 0-46.5-16t-17.5-44q0-37 25-62.5t62-25.5q28 0 46.5 16.5t18.5 45.5zM1530 757q0 42-22 57t-66 15l-32 1 17-107q2-11 13-11h18q22 0 35 2t25 12.5 12 30.5zM1881 906q0 36-25.5 61t-61.5 25q-29 0-47-16t-18-44q0-37 25-62.5t62-25.5q28 0 46.5 16.5t18.5 45.5zM513 735q0-59-38.5-85.5t-100.5-26.5h-160q-19 0-21 19l-65 408q-1 6 3 11t10 5h76q20 0 22-19l18-110q1-8 7-13t15-6.5 17-1.5 19 1 14 1q86 0 135-48.5t49-134.5zM822 1047l41-261q1-6-3-11t-10-5h-76q-14 0-17 33-27-40-95-40-72 0-122.5 54t-50.5 127q0 59 34.5 94t92.5 35q28 0 58-12t48-32q-4 12-4 21 0 16 13 16h69q19 0 22-19zM1269 784q0-5-4-9.5t-9-4.5h-77q-11 0-18 10l-106 156-44-150q-5-16-22-16h-75q-5 0-9 4.5t-4 9.5q0 2 19.5 59t42 123 23.5 70q-82 112-82 120 0 13 13 13h77q11 0 18-10l255-368q2-2 2-7zM1649 735q0-59-38.5-85.5t-100.5-26.5h-159q-20 0-22 19l-65 408q-1 6 3 11t10 5h82q12 0 16-13l18-116q1-8 7-13t15-6.5 17-1.5 19 1 14 1q86 0 135-48.5t49-134.5zM1958 1047l41-261q1-6-3-11t-10-5h-76q-14 0-17 33-26-40-95-40-72 0-122.5 54t-50.5 127q0 59 34.5 94t92.5 35q29 0 59-12t47-32q0 1-2 9t-2 12q0 16 13 16h69q19 0 22-19zM2176 638v-1q0-14-13-14h-74q-11 0-13 11l-65 416-1 2q0 5 4 9.5t10 4.5h66q19 0 21-19zM392 772q-5 35-26 46t-60 11l-33 1 17-107q2-11 13-11h19q40 0 58 11.5t12 48.5zM2304 256v1280q0 52-38 90t-90 38h-2048q-52 0-90-38t-38-90v-1280q0-52 38-90t90-38h2048q52 0 90 38t38 90z" + } + }] +}; +exports.ccPaypal = ccPaypal; \ No newline at end of file diff --git a/dist/fa/ccStripe.js b/dist/fa/ccStripe.js new file mode 100644 index 000000000..29b494a86 --- /dev/null +++ b/dist/fa/ccStripe.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ccStripe = void 0; +var ccStripe = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1597 903q0 69-21 106-19 35-52 35-23 0-41-9v-224q29-30 57-30 57 0 57 122zM2035 867h-110q6-98 56-98 51 0 54 98zM476 1002q0-59-33-91.5t-101-57.5q-36-13-52-24t-16-25q0-26 38-26 58 0 124 33l18-112q-67-32-149-32-77 0-123 38-48 39-48 109 0 58 32.5 90.5t99.5 56.5q39 14 54.5 25.5t15.5 27.5q0 31-48 31-29 0-70-12.5t-72-30.5l-18 113q72 41 168 41 81 0 129-37 51-41 51-117zM771 787l19-111h-96v-135l-129 21-18 114-46 8-17 103h62v219q0 84 44 120 38 30 111 30 32 0 79-11v-118q-32 7-44 7-42 0-42-50v-197h77zM1087 812v-139q-15-3-28-3-32 0-55.5 16t-33.5 46l-10-56h-131v471h150v-306q26-31 82-31 16 0 26 2zM1124 1147h150v-471h-150v471zM1746 898q0-122-45-179-40-52-111-52-64 0-117 56l-8-47h-132v645l150-25v-151q36 11 68 11 83 0 134-56 61-65 61-202zM1278 550q0-33-23-56t-56-23-56 23-23 56 23 56.5 56 23.5 56-23.5 23-56.5zM2176 907q0-113-48-176-50-64-144-64-96 0-151.5 66t-55.5 180q0 128 63 188 55 55 161 55 101 0 160-40l-16-103q-57 31-128 31-43 0-63-19-23-19-28-66h248q2-14 2-52zM2304 256v1280q0 52-38 90t-90 38h-2048q-52 0-90-38t-38-90v-1280q0-52 38-90t90-38h2048q52 0 90 38t38 90z" + } + }] +}; +exports.ccStripe = ccStripe; \ No newline at end of file diff --git a/dist/fa/ccVisa.js b/dist/fa/ccVisa.js new file mode 100644 index 000000000..e04860305 --- /dev/null +++ b/dist/fa/ccVisa.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ccVisa = void 0; +var ccVisa = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1975 990h-138q14-37 66-179l3-9q4-10 10-26t9-26l12 55zM531 925l-58-295q-11-54-75-54h-268l-2 13q311 79 403 336zM710 576l-162 438-17-89q-26-70-85-129.5t-131-88.5l135 510h175l261-641h-176zM849 1218h166l104-642h-166zM1617 592q-69-27-149-27-123 0-201 59t-79 153q-1 102 145 174 48 23 67 41t19 39q0 30-30 46t-69 16q-86 0-156-33l-22-11-23 144q74 34 185 34 130 1 208.5-59t80.5-160q0-106-140-174-49-25-71-42t-22-38q0-22 24.5-38.5t70.5-16.5q70-1 124 24l15 8zM2042 576h-128q-65 0-87 54l-246 588h174l35-96h212q5 22 20 96h154zM2304 256v1280q0 52-38 90t-90 38h-2048q-52 0-90-38t-38-90v-1280q0-52 38-90t90-38h2048q52 0 90 38t38 90z" + } + }] +}; +exports.ccVisa = ccVisa; \ No newline at end of file diff --git a/dist/fa/certificate.js b/dist/fa/certificate.js new file mode 100644 index 000000000..f96ab89d9 --- /dev/null +++ b/dist/fa/certificate.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.certificate = void 0; +var certificate = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1376 896l138 135q30 28 20 70-12 41-52 51l-188 48 53 186q12 41-19 70-29 31-70 19l-186-53-48 188q-10 40-51 52-12 2-19 2-31 0-51-22l-135-138-135 138q-28 30-70 20-41-11-51-52l-48-188-186 53q-41 12-70-19-31-29-19-70l53-186-188-48q-40-10-52-51-10-42 20-70l138-135-138-135q-30-28-20-70 12-41 52-51l188-48-53-186q-12-41 19-70 29-31 70-19l186 53 48-188q10-41 51-51 41-12 70 19l135 139 135-139q29-30 70-19 41 10 51 51l48 188 186-53q41-12 70 19 31 29 19 70l-53 186 188 48q40 10 52 51 10 42-20 70z" + } + }] +}; +exports.certificate = certificate; \ No newline at end of file diff --git a/dist/fa/chain.js b/dist/fa/chain.js new file mode 100644 index 000000000..829058609 --- /dev/null +++ b/dist/fa/chain.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.chain = void 0; +var chain = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1456 1216q0-40-28-68l-208-208q-28-28-68-28-42 0-72 32 3 3 19 18.5t21.5 21.5 15 19 13 25.5 3.5 27.5q0 40-28 68t-68 28q-15 0-27.5-3.5t-25.5-13-19-15-21.5-21.5-18.5-19q-33 31-33 73 0 40 28 68l206 207q27 27 68 27 40 0 68-26l147-146q28-28 28-67zM753 511q0-40-28-68l-206-207q-28-28-68-28-39 0-68 27l-147 146q-28 28-28 67 0 40 28 68l208 208q27 27 68 27 42 0 72-31-3-3-19-18.5t-21.5-21.5-15-19-13-25.5-3.5-27.5q0-40 28-68t68-28q15 0 27.5 3.5t25.5 13 19 15 21.5 21.5 18.5 19q33-31 33-73zM1648 1216q0 120-85 203l-147 146q-83 83-203 83-121 0-204-85l-206-207q-83-83-83-203 0-123 88-209l-88-88q-86 88-208 88-120 0-204-84l-208-208q-84-84-84-204t85-203l147-146q83-83 203-83 121 0 204 85l206 207q83 83 83 203 0 123-88 209l88 88q86-88 208-88 120 0 204 84l208 208q84 84 84 204z" + } + }] +}; +exports.chain = chain; \ No newline at end of file diff --git a/dist/fa/chainBroken.js b/dist/fa/chainBroken.js new file mode 100644 index 000000000..89bfe1d51 --- /dev/null +++ b/dist/fa/chainBroken.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.chainBroken = void 0; +var chainBroken = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M439 1271l-256 256q-11 9-23 9t-23-9q-9-10-9-23t9-23l256-256q10-9 23-9t23 9q9 10 9 23t-9 23zM608 1312v320q0 14-9 23t-23 9-23-9-9-23v-320q0-14 9-23t23-9 23 9 9 23zM384 1088q0 14-9 23t-23 9h-320q-14 0-23-9t-9-23 9-23 23-9h320q14 0 23 9t9 23zM1648 1216q0 120-85 203l-147 146q-83 83-203 83-121 0-204-85l-334-335q-21-21-42-56l239-18 273 274q27 27 68 27.5t68-26.5l147-146q28-28 28-67 0-40-28-68l-274-275 18-239q35 21 56 42l336 336q84 86 84 204zM1031 492l-239 18-273-274q-28-28-68-28-39 0-68 27l-147 146q-28 28-28 67 0 40 28 68l274 274-18 240q-35-21-56-42l-336-336q-84-86-84-204 0-120 85-203l147-146q83-83 203-83 121 0 204 85l334 335q21 21 42 56zM1664 576q0 14-9 23t-23 9h-320q-14 0-23-9t-9-23 9-23 23-9h320q14 0 23 9t9 23zM1120 32v320q0 14-9 23t-23 9-23-9-9-23v-320q0-14 9-23t23-9 23 9 9 23zM1527 183l-256 256q-11 9-23 9t-23-9q-9-10-9-23t9-23l256-256q10-9 23-9t23 9q9 10 9 23t-9 23z" + } + }] +}; +exports.chainBroken = chainBroken; \ No newline at end of file diff --git a/dist/fa/check.js b/dist/fa/check.js new file mode 100644 index 000000000..79adf4f0c --- /dev/null +++ b/dist/fa/check.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.check = void 0; +var check = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1671 566q0 40-28 68l-724 724-136 136q-28 28-68 28t-68-28l-136-136-362-362q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 295 656-657q28-28 68-28t68 28l136 136q28 28 28 68z" + } + }] +}; +exports.check = check; \ No newline at end of file diff --git a/dist/fa/checkCircle.js b/dist/fa/checkCircle.js new file mode 100644 index 000000000..43d9d916c --- /dev/null +++ b/dist/fa/checkCircle.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.checkCircle = void 0; +var checkCircle = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1284 734q0-28-18-46l-91-90q-19-19-45-19t-45 19l-408 407-226-226q-19-19-45-19t-45 19l-91 90q-18 18-18 46 0 27 18 45l362 362q19 19 45 19 27 0 46-19l543-543q18-18 18-45zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.checkCircle = checkCircle; \ No newline at end of file diff --git a/dist/fa/checkCircleO.js b/dist/fa/checkCircleO.js new file mode 100644 index 000000000..0cb617609 --- /dev/null +++ b/dist/fa/checkCircleO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.checkCircleO = void 0; +var checkCircleO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1171 813l-422 422q-19 19-45 19t-45-19l-294-294q-19-19-19-45t19-45l102-102q19-19 45-19t45 19l147 147 275-275q19-19 45-19t45 19l102 102q19 19 19 45t-19 45zM1312 896q0-148-73-273t-198-198-273-73-273 73-198 198-73 273 73 273 198 198 273 73 273-73 198-198 73-273zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.checkCircleO = checkCircleO; \ No newline at end of file diff --git a/dist/fa/checkSquare.js b/dist/fa/checkSquare.js new file mode 100644 index 000000000..a8b6bd17f --- /dev/null +++ b/dist/fa/checkSquare.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.checkSquare = void 0; +var checkSquare = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M685 1299l614-614q19-19 19-45t-19-45l-102-102q-19-19-45-19t-45 19l-467 467-211-211q-19-19-45-19t-45 19l-102 102q-19 19-19 45t19 45l358 358q19 19 45 19t45-19zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.checkSquare = checkSquare; \ No newline at end of file diff --git a/dist/fa/checkSquareO.js b/dist/fa/checkSquareO.js new file mode 100644 index 000000000..ca8527c04 --- /dev/null +++ b/dist/fa/checkSquareO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.checkSquareO = void 0; +var checkSquareO = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1408 930v318q0 119-84.5 203.5t-203.5 84.5h-832q-119 0-203.5-84.5t-84.5-203.5v-832q0-119 84.5-203.5t203.5-84.5h832q63 0 117 25 15 7 18 23 3 17-9 29l-49 49q-10 10-23 10-3 0-9-2-23-6-45-6h-832q-66 0-113 47t-47 113v832q0 66 47 113t113 47h832q66 0 113-47t47-113v-254q0-13 9-22l64-64q10-10 23-10 6 0 12 3 20 8 20 29zM1639 441l-814 814q-24 24-57 24t-57-24l-430-430q-24-24-24-57t24-57l110-110q24-24 57-24t57 24l263 263 647-647q24-24 57-24t57 24l110 110q24 24 24 57t-24 57z" + } + }] +}; +exports.checkSquareO = checkSquareO; \ No newline at end of file diff --git a/dist/fa/chevronCircleDown.js b/dist/fa/chevronCircleDown.js new file mode 100644 index 000000000..33147e262 --- /dev/null +++ b/dist/fa/chevronCircleDown.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.chevronCircleDown = void 0; +var chevronCircleDown = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M813 1299l454-454q19-19 19-45t-19-45l-102-102q-19-19-45-19t-45 19l-307 307-307-307q-19-19-45-19t-45 19l-102 102q-19 19-19 45t19 45l454 454q19 19 45 19t45-19zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.chevronCircleDown = chevronCircleDown; \ No newline at end of file diff --git a/dist/fa/chevronCircleLeft.js b/dist/fa/chevronCircleLeft.js new file mode 100644 index 000000000..76e475aef --- /dev/null +++ b/dist/fa/chevronCircleLeft.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.chevronCircleLeft = void 0; +var chevronCircleLeft = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M909 1395l102-102q19-19 19-45t-19-45l-307-307 307-307q19-19 19-45t-19-45l-102-102q-19-19-45-19t-45 19l-454 454q-19 19-19 45t19 45l454 454q19 19 45 19t45-19zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.chevronCircleLeft = chevronCircleLeft; \ No newline at end of file diff --git a/dist/fa/chevronCircleRight.js b/dist/fa/chevronCircleRight.js new file mode 100644 index 000000000..8df62e61a --- /dev/null +++ b/dist/fa/chevronCircleRight.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.chevronCircleRight = void 0; +var chevronCircleRight = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M717 1395l454-454q19-19 19-45t-19-45l-454-454q-19-19-45-19t-45 19l-102 102q-19 19-19 45t19 45l307 307-307 307q-19 19-19 45t19 45l102 102q19 19 45 19t45-19zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.chevronCircleRight = chevronCircleRight; \ No newline at end of file diff --git a/dist/fa/chevronCircleUp.js b/dist/fa/chevronCircleUp.js new file mode 100644 index 000000000..191cbf518 --- /dev/null +++ b/dist/fa/chevronCircleUp.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.chevronCircleUp = void 0; +var chevronCircleUp = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1165 1139l102-102q19-19 19-45t-19-45l-454-454q-19-19-45-19t-45 19l-454 454q-19 19-19 45t19 45l102 102q19 19 45 19t45-19l307-307 307 307q19 19 45 19t45-19zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.chevronCircleUp = chevronCircleUp; \ No newline at end of file diff --git a/dist/fa/chevronDown.js b/dist/fa/chevronDown.js new file mode 100644 index 000000000..26a2cde5c --- /dev/null +++ b/dist/fa/chevronDown.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.chevronDown = void 0; +var chevronDown = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1683 808l-742 741q-19 19-45 19t-45-19l-742-741q-19-19-19-45.5t19-45.5l166-165q19-19 45-19t45 19l531 531 531-531q19-19 45-19t45 19l166 165q19 19 19 45.5t-19 45.5z" + } + }] +}; +exports.chevronDown = chevronDown; \ No newline at end of file diff --git a/dist/fa/chevronLeft.js b/dist/fa/chevronLeft.js new file mode 100644 index 000000000..2411226a0 --- /dev/null +++ b/dist/fa/chevronLeft.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.chevronLeft = void 0; +var chevronLeft = { + "viewBox": "0 0 1280 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1171 301l-531 531 531 531q19 19 19 45t-19 45l-166 166q-19 19-45 19t-45-19l-742-742q-19-19-19-45t19-45l742-742q19-19 45-19t45 19l166 166q19 19 19 45t-19 45z" + } + }] +}; +exports.chevronLeft = chevronLeft; \ No newline at end of file diff --git a/dist/fa/chevronRight.js b/dist/fa/chevronRight.js new file mode 100644 index 000000000..15c5cfb47 --- /dev/null +++ b/dist/fa/chevronRight.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.chevronRight = void 0; +var chevronRight = { + "viewBox": "0 0 1280 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1107 877l-742 742q-19 19-45 19t-45-19l-166-166q-19-19-19-45t19-45l531-531-531-531q-19-19-19-45t19-45l166-166q19-19 45-19t45 19l742 742q19 19 19 45t-19 45z" + } + }] +}; +exports.chevronRight = chevronRight; \ No newline at end of file diff --git a/dist/fa/chevronUp.js b/dist/fa/chevronUp.js new file mode 100644 index 000000000..6d826a396 --- /dev/null +++ b/dist/fa/chevronUp.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.chevronUp = void 0; +var chevronUp = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1683 1331l-166 165q-19 19-45 19t-45-19l-531-531-531 531q-19 19-45 19t-45-19l-166-165q-19-19-19-45.5t19-45.5l742-741q19-19 45-19t45 19l742 741q19 19 19 45.5t-19 45.5z" + } + }] +}; +exports.chevronUp = chevronUp; \ No newline at end of file diff --git a/dist/fa/child.js b/dist/fa/child.js new file mode 100644 index 000000000..84baa28d7 --- /dev/null +++ b/dist/fa/child.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.child = void 0; +var child = { + "viewBox": "0 0 1280 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1188 548l-292 292v824q0 46-33 79t-79 33-79-33-33-79v-384h-64v384q0 46-33 79t-79 33-79-33-33-79v-824l-292-292q-28-28-28-68t28-68q29-28 68.5-28t67.5 28l228 228h368l228-228q28-28 68-28t68 28q28 29 28 68.5t-28 67.5zM864 384q0 93-65.5 158.5t-158.5 65.5-158.5-65.5-65.5-158.5 65.5-158.5 158.5-65.5 158.5 65.5 65.5 158.5z" + } + }] +}; +exports.child = child; \ No newline at end of file diff --git a/dist/fa/chrome.js b/dist/fa/chrome.js new file mode 100644 index 000000000..fdb467d10 --- /dev/null +++ b/dist/fa/chrome.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.chrome = void 0; +var chrome = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M893 0q240-2 451 120 232 134 352 372l-742-39q-160-9-294 74.5t-185 229.5l-276-424q128-159 311-245.5t383-87.5zM146 405l337 663q72 143 211 217t293 45l-230 451q-212-33-385-157.5t-272.5-316-99.5-411.5q0-267 146-491zM1732 574q58 150 59.5 310.5t-48.5 306-153 272-246 209.5q-230 133-498 119l405-623q88-131 82.5-290.5t-106.5-277.5zM896 594q125 0 213.5 88.5t88.5 213.5-88.5 213.5-213.5 88.5-213.5-88.5-88.5-213.5 88.5-213.5 213.5-88.5z" + } + }] +}; +exports.chrome = chrome; \ No newline at end of file diff --git a/dist/fa/circle.js b/dist/fa/circle.js new file mode 100644 index 000000000..463cf1962 --- /dev/null +++ b/dist/fa/circle.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.circle = void 0; +var circle = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.circle = circle; \ No newline at end of file diff --git a/dist/fa/circleO.js b/dist/fa/circleO.js new file mode 100644 index 000000000..7442168bc --- /dev/null +++ b/dist/fa/circleO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.circleO = void 0; +var circleO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M768 352q-148 0-273 73t-198 198-73 273 73 273 198 198 273 73 273-73 198-198 73-273-73-273-198-198-273-73zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.circleO = circleO; \ No newline at end of file diff --git a/dist/fa/circleONotch.js b/dist/fa/circleONotch.js new file mode 100644 index 000000000..cbb3a33c0 --- /dev/null +++ b/dist/fa/circleONotch.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.circleONotch = void 0; +var circleONotch = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1760 896q0 176-68.5 336t-184 275.5-275.5 184-336 68.5-336-68.5-275.5-184-184-275.5-68.5-336q0-213 97-398.5t265-305.5 374-151v228q-221 45-366.5 221t-145.5 406q0 130 51 248.5t136.5 204 204 136.5 248.5 51 248.5-51 204-136.5 136.5-204 51-248.5q0-230-145.5-406t-366.5-221v-228q206 31 374 151t265 305.5 97 398.5z" + } + }] +}; +exports.circleONotch = circleONotch; \ No newline at end of file diff --git a/dist/fa/circleThin.js b/dist/fa/circleThin.js new file mode 100644 index 000000000..5235608bc --- /dev/null +++ b/dist/fa/circleThin.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.circleThin = void 0; +var circleThin = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M768 256q-130 0-248.5 51t-204 136.5-136.5 204-51 248.5 51 248.5 136.5 204 204 136.5 248.5 51 248.5-51 204-136.5 136.5-204 51-248.5-51-248.5-136.5-204-204-136.5-248.5-51zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.circleThin = circleThin; \ No newline at end of file diff --git a/dist/fa/clipboard.js b/dist/fa/clipboard.js new file mode 100644 index 000000000..f6f5232e2 --- /dev/null +++ b/dist/fa/clipboard.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.clipboard = void 0; +var clipboard = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M768 1664h896v-640h-416q-40 0-68-28t-28-68v-416h-384v1152zM1024 224v-64q0-13-9.5-22.5t-22.5-9.5h-704q-13 0-22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h704q13 0 22.5-9.5t9.5-22.5zM1280 896h299l-299-299v299zM1792 1024v672q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-160h-544q-40 0-68-28t-28-68v-1344q0-40 28-68t68-28h1088q40 0 68 28t28 68v328q21 13 36 28l408 408q28 28 48 76t20 88z" + } + }] +}; +exports.clipboard = clipboard; \ No newline at end of file diff --git a/dist/fa/clockO.js b/dist/fa/clockO.js new file mode 100644 index 000000000..66912ea9c --- /dev/null +++ b/dist/fa/clockO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.clockO = void 0; +var clockO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M896 544v448q0 14-9 23t-23 9h-320q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h224v-352q0-14 9-23t23-9h64q14 0 23 9t9 23zM1312 896q0-148-73-273t-198-198-273-73-273 73-198 198-73 273 73 273 198 198 273 73 273-73 198-198 73-273zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.clockO = clockO; \ No newline at end of file diff --git a/dist/fa/clone.js b/dist/fa/clone.js new file mode 100644 index 000000000..adc65d2f6 --- /dev/null +++ b/dist/fa/clone.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.clone = void 0; +var clone = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1664 1632v-1088q0-13-9.5-22.5t-22.5-9.5h-1088q-13 0-22.5 9.5t-9.5 22.5v1088q0 13 9.5 22.5t22.5 9.5h1088q13 0 22.5-9.5t9.5-22.5zM1792 544v1088q0 66-47 113t-113 47h-1088q-66 0-113-47t-47-113v-1088q0-66 47-113t113-47h1088q66 0 113 47t47 113zM1408 160v160h-128v-160q0-13-9.5-22.5t-22.5-9.5h-1088q-13 0-22.5 9.5t-9.5 22.5v1088q0 13 9.5 22.5t22.5 9.5h160v128h-160q-66 0-113-47t-47-113v-1088q0-66 47-113t113-47h1088q66 0 113 47t47 113z" + } + }] +}; +exports.clone = clone; \ No newline at end of file diff --git a/dist/fa/close.js b/dist/fa/close.js new file mode 100644 index 000000000..7428cbcd5 --- /dev/null +++ b/dist/fa/close.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.close = void 0; +var close = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1298 1322q0 40-28 68l-136 136q-28 28-68 28t-68-28l-294-294-294 294q-28 28-68 28t-68-28l-136-136q-28-28-28-68t28-68l294-294-294-294q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 294 294-294q28-28 68-28t68 28l136 136q28 28 28 68t-28 68l-294 294 294 294q28 28 28 68z" + } + }] +}; +exports.close = close; \ No newline at end of file diff --git a/dist/fa/cloud.js b/dist/fa/cloud.js new file mode 100644 index 000000000..25ab2df19 --- /dev/null +++ b/dist/fa/cloud.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cloud = void 0; +var cloud = { + "viewBox": "0 0 1920 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1920 1152q0 159-112.5 271.5t-271.5 112.5h-1088q-185 0-316.5-131.5t-131.5-316.5q0-132 71-241.5t187-163.5q-2-28-2-43 0-212 150-362t362-150q158 0 286.5 88t187.5 230q70-62 166-62 106 0 181 75t75 181q0 75-41 138 129 30 213 134.5t84 239.5z" + } + }] +}; +exports.cloud = cloud; \ No newline at end of file diff --git a/dist/fa/cloudDownload.js b/dist/fa/cloudDownload.js new file mode 100644 index 000000000..0354cc9b3 --- /dev/null +++ b/dist/fa/cloudDownload.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cloudDownload = void 0; +var cloudDownload = { + "viewBox": "0 0 1920 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1280 928q0-14-9-23t-23-9h-224v-352q0-13-9.5-22.5t-22.5-9.5h-192q-13 0-22.5 9.5t-9.5 22.5v352h-224q-13 0-22.5 9.5t-9.5 22.5q0 14 9 23l352 352q9 9 23 9t23-9l351-351q10-12 10-24zM1920 1152q0 159-112.5 271.5t-271.5 112.5h-1088q-185 0-316.5-131.5t-131.5-316.5q0-130 70-240t188-165q-2-30-2-43 0-212 150-362t362-150q156 0 285.5 87t188.5 231q71-62 166-62 106 0 181 75t75 181q0 76-41 138 130 31 213.5 135.5t83.5 238.5z" + } + }] +}; +exports.cloudDownload = cloudDownload; \ No newline at end of file diff --git a/dist/fa/cloudUpload.js b/dist/fa/cloudUpload.js new file mode 100644 index 000000000..4fca205b8 --- /dev/null +++ b/dist/fa/cloudUpload.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cloudUpload = void 0; +var cloudUpload = { + "viewBox": "0 0 1920 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1280 864q0-14-9-23l-352-352q-9-9-23-9t-23 9l-351 351q-10 12-10 24 0 14 9 23t23 9h224v352q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5-9.5t9.5-22.5v-352h224q13 0 22.5-9.5t9.5-22.5zM1920 1152q0 159-112.5 271.5t-271.5 112.5h-1088q-185 0-316.5-131.5t-131.5-316.5q0-130 70-240t188-165q-2-30-2-43 0-212 150-362t362-150q156 0 285.5 87t188.5 231q71-62 166-62 106 0 181 75t75 181q0 76-41 138 130 31 213.5 135.5t83.5 238.5z" + } + }] +}; +exports.cloudUpload = cloudUpload; \ No newline at end of file diff --git a/dist/fa/cny.js b/dist/fa/cny.js new file mode 100644 index 000000000..ffa4e7205 --- /dev/null +++ b/dist/fa/cny.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cny = void 0; +var cny = { + "viewBox": "0 0 1027 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M603 1536h-172q-13 0-22.5-9t-9.5-23v-330h-288q-13 0-22.5-9t-9.5-23v-103q0-13 9.5-22.5t22.5-9.5h288v-85h-288q-13 0-22.5-9t-9.5-23v-104q0-13 9.5-22.5t22.5-9.5h214l-321-578q-8-16 0-32 10-16 28-16h194q19 0 29 18l215 425q19 38 56 125 10-24 30.5-68t27.5-61l191-420q8-19 29-19h191q17 0 27 16 9 14 1 31l-313 579h215q13 0 22.5 9.5t9.5 22.5v104q0 14-9.5 23t-22.5 9h-290v85h290q13 0 22.5 9.5t9.5 22.5v103q0 14-9.5 23t-22.5 9h-290v330q0 13-9.5 22.5t-22.5 9.5z" + } + }] +}; +exports.cny = cny; \ No newline at end of file diff --git a/dist/fa/code.js b/dist/fa/code.js new file mode 100644 index 000000000..de6aa026e --- /dev/null +++ b/dist/fa/code.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.code = void 0; +var code = { + "viewBox": "0 0 1920 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M617 1399l-50 50q-10 10-23 10t-23-10l-466-466q-10-10-10-23t10-23l466-466q10-10 23-10t23 10l50 50q10 10 10 23t-10 23l-393 393 393 393q10 10 10 23t-10 23zM1208 332l-373 1291q-4 13-15.5 19.5t-23.5 2.5l-62-17q-13-4-19.5-15.5t-2.5-24.5l373-1291q4-13 15.5-19.5t23.5-2.5l62 17q13 4 19.5 15.5t2.5 24.5zM1865 983l-466 466q-10 10-23 10t-23-10l-50-50q-10-10-10-23t10-23l393-393-393-393q-10-10-10-23t10-23l50-50q10-10 23-10t23 10l466 466q10 10 10 23t-10 23z" + } + }] +}; +exports.code = code; \ No newline at end of file diff --git a/dist/fa/codeFork.js b/dist/fa/codeFork.js new file mode 100644 index 000000000..f134c4dc3 --- /dev/null +++ b/dist/fa/codeFork.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.codeFork = void 0; +var codeFork = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M288 1472q0-40-28-68t-68-28-68 28-28 68 28 68 68 28 68-28 28-68zM288 320q0-40-28-68t-68-28-68 28-28 68 28 68 68 28 68-28 28-68zM928 448q0-40-28-68t-68-28-68 28-28 68 28 68 68 28 68-28 28-68zM1024 448q0 52-26 96.5t-70 69.5q-2 287-226 414-67 38-203 81-128 40-169.5 71t-41.5 100v26q44 25 70 69.5t26 96.5q0 80-56 136t-136 56-136-56-56-136q0-52 26-96.5t70-69.5v-820q-44-25-70-69.5t-26-96.5q0-80 56-136t136-56 136 56 56 136q0 52-26 96.5t-70 69.5v497q54-26 154-57 55-17 87.5-29.5t70.5-31 59-39.5 40.5-51 28-69.5 8.5-91.5q-44-25-70-69.5t-26-96.5q0-80 56-136t136-56 136 56 56 136z" + } + }] +}; +exports.codeFork = codeFork; \ No newline at end of file diff --git a/dist/fa/codepen.js b/dist/fa/codepen.js new file mode 100644 index 000000000..ed2b9b0bc --- /dev/null +++ b/dist/fa/codepen.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.codepen = void 0; +var codepen = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M216 1169l603 402v-359l-334-223zM154 1025l193-129-193-129v258zM973 1571l603-402-269-180-334 223v359zM896 1078l272-182-272-182-272 182zM485 803l334-223v-359l-603 402zM1445 896l193 129v-258zM1307 803l269-180-603-402v359zM1792 623v546q0 41-34 64l-819 546q-21 13-43 13t-43-13l-819-546q-34-23-34-64v-546q0-41 34-64l819-546q21-13 43-13t43 13l819 546q34 23 34 64z" + } + }] +}; +exports.codepen = codepen; \ No newline at end of file diff --git a/dist/fa/codiepie.js b/dist/fa/codiepie.js new file mode 100644 index 000000000..588b748b8 --- /dev/null +++ b/dist/fa/codiepie.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.codiepie = void 0; +var codiepie = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1584 1290l-218-111q-74 120-196.5 189t-263.5 69q-147 0-271-72t-196-196-72-270q0-110 42.5-209.5t115-172 172-115 209.5-42.5q131 0 247.5 60.5t192.5 168.5l215-125q-110-169-286.5-265t-378.5-96q-161 0-308 63t-253 169-169 253-63 308 63 308 169 253 253 169 308 63q213 0 397.5-107t290.5-292zM1030 893l693 352q-116 253-334.5 400t-492.5 147q-182 0-348-71t-286-191-191-286-71-348 71-348 191-286 286-191 348-71q260 0 470.5 133.5t335.5 366.5zM1543 896h-39v160h-96v-352h136q32 0 54.5 20t28.5 48 1 56-27.5 48-57.5 20z" + } + }] +}; +exports.codiepie = codiepie; \ No newline at end of file diff --git a/dist/fa/coffee.js b/dist/fa/coffee.js new file mode 100644 index 000000000..16075fe67 --- /dev/null +++ b/dist/fa/coffee.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.coffee = void 0; +var coffee = { + "viewBox": "0 0 1920 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1664 640q0-80-56-136t-136-56h-64v384h64q80 0 136-56t56-136zM0 1408h1792q0 106-75 181t-181 75h-1280q-106 0-181-75t-75-181zM1856 640q0 159-112.5 271.5t-271.5 112.5h-64v32q0 92-66 158t-158 66h-704q-92 0-158-66t-66-158v-736q0-26 19-45t45-19h1152q159 0 271.5 112.5t112.5 271.5z" + } + }] +}; +exports.coffee = coffee; \ No newline at end of file diff --git a/dist/fa/cog.js b/dist/fa/cog.js new file mode 100644 index 000000000..e74b7aa69 --- /dev/null +++ b/dist/fa/cog.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cog = void 0; +var cog = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 896q0-106-75-181t-181-75-181 75-75 181 75 181 181 75 181-75 75-181zM1536 787v222q0 12-8 23t-20 13l-185 28q-19 54-39 91 35 50 107 138 10 12 10 25t-9 23q-27 37-99 108t-94 71q-12 0-26-9l-138-108q-44 23-91 38-16 136-29 186-7 28-36 28h-222q-14 0-24.5-8.5t-11.5-21.5l-28-184q-49-16-90-37l-141 107q-10 9-25 9-14 0-25-11-126-114-165-168-7-10-7-23 0-12 8-23 15-21 51-66.5t54-70.5q-27-50-41-99l-183-27q-13-2-21-12.5t-8-23.5v-222q0-12 8-23t19-13l186-28q14-46 39-92-40-57-107-138-10-12-10-24 0-10 9-23 26-36 98.5-107.5t94.5-71.5q13 0 26 10l138 107q44-23 91-38 16-136 29-186 7-28 36-28h222q14 0 24.5 8.5t11.5 21.5l28 184q49 16 90 37l142-107q9-9 24-9 13 0 25 10 129 119 165 170 7 8 7 22 0 12-8 23-15 21-51 66.5t-54 70.5q26 50 41 98l183 28q13 2 21 12.5t8 23.5z" + } + }] +}; +exports.cog = cog; \ No newline at end of file diff --git a/dist/fa/cogs.js b/dist/fa/cogs.js new file mode 100644 index 000000000..b4fc8da4b --- /dev/null +++ b/dist/fa/cogs.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cogs = void 0; +var cogs = { + "viewBox": "0 0 1920 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M896 896q0-106-75-181t-181-75-181 75-75 181 75 181 181 75 181-75 75-181zM1664 1408q0-52-38-90t-90-38-90 38-38 90q0 53 37.5 90.5t90.5 37.5 90.5-37.5 37.5-90.5zM1664 384q0-52-38-90t-90-38-90 38-38 90q0 53 37.5 90.5t90.5 37.5 90.5-37.5 37.5-90.5zM1280 805v185q0 10-7 19.5t-16 10.5l-155 24q-11 35-32 76 34 48 90 115 7 11 7 20 0 12-7 19-23 30-82.5 89.5t-78.5 59.5q-11 0-21-7l-115-90q-37 19-77 31-11 108-23 155-7 24-30 24h-186q-11 0-20-7.5t-10-17.5l-23-153q-34-10-75-31l-118 89q-7 7-20 7-11 0-21-8-144-133-144-160 0-9 7-19 10-14 41-53t47-61q-23-44-35-82l-152-24q-10-1-17-9.5t-7-19.5v-185q0-10 7-19.5t16-10.5l155-24q11-35 32-76-34-48-90-115-7-11-7-20 0-12 7-20 22-30 82-89t79-59q11 0 21 7l115 90q34-18 77-32 11-108 23-154 7-24 30-24h186q11 0 20 7.5t10 17.5l23 153q34 10 75 31l118-89q8-7 20-7 11 0 21 8 144 133 144 160 0 8-7 19-12 16-42 54t-45 60q23 48 34 82l152 23q10 2 17 10.5t7 19.5zM1920 1338v140q0 16-149 31-12 27-30 52 51 113 51 138 0 4-4 7-122 71-124 71-8 0-46-47t-52-68q-20 2-30 2t-30-2q-14 21-52 68t-46 47q-2 0-124-71-4-3-4-7 0-25 51-138-18-25-30-52-149-15-149-31v-140q0-16 149-31 13-29 30-52-51-113-51-138 0-4 4-7 4-2 35-20t59-34 30-16q8 0 46 46.5t52 67.5q20-2 30-2t30 2q51-71 92-112l6-2q4 0 124 70 4 3 4 7 0 25-51 138 17 23 30 52 149 15 149 31zM1920 314v140q0 16-149 31-12 27-30 52 51 113 51 138 0 4-4 7-122 71-124 71-8 0-46-47t-52-68q-20 2-30 2t-30-2q-14 21-52 68t-46 47q-2 0-124-71-4-3-4-7 0-25 51-138-18-25-30-52-149-15-149-31v-140q0-16 149-31 13-29 30-52-51-113-51-138 0-4 4-7 4-2 35-20t59-34 30-16q8 0 46 46.5t52 67.5q20-2 30-2t30 2q51-71 92-112l6-2q4 0 124 70 4 3 4 7 0 25-51 138 17 23 30 52 149 15 149 31z" + } + }] +}; +exports.cogs = cogs; \ No newline at end of file diff --git a/dist/fa/columns.js b/dist/fa/columns.js new file mode 100644 index 000000000..ec8ce4d3f --- /dev/null +++ b/dist/fa/columns.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.columns = void 0; +var columns = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M160 1536h608v-1152h-640v1120q0 13 9.5 22.5t22.5 9.5zM1536 1504v-1120h-640v1152h608q13 0 22.5-9.5t9.5-22.5zM1664 288v1216q0 66-47 113t-113 47h-1344q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1344q66 0 113 47t47 113z" + } + }] +}; +exports.columns = columns; \ No newline at end of file diff --git a/dist/fa/comment.js b/dist/fa/comment.js new file mode 100644 index 000000000..ae0557aea --- /dev/null +++ b/dist/fa/comment.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.comment = void 0; +var comment = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1792 896q0 174-120 321.5t-326 233-450 85.5q-70 0-145-8-198 175-460 242-49 14-114 22-17 2-30.5-9t-17.5-29v-1q-3-4-0.5-12t2-10 4.5-9.5l6-9t7-8.5 8-9q7-8 31-34.5t34.5-38 31-39.5 32.5-51 27-59 26-76q-157-89-247.5-220t-90.5-281q0-130 71-248.5t191-204.5 286-136.5 348-50.5q244 0 450 85.5t326 233 120 321.5z" + } + }] +}; +exports.comment = comment; \ No newline at end of file diff --git a/dist/fa/commentO.js b/dist/fa/commentO.js new file mode 100644 index 000000000..cdc774fce --- /dev/null +++ b/dist/fa/commentO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.commentO = void 0; +var commentO = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M896 384q-204 0-381.5 69.5t-282 187.5-104.5 255q0 112 71.5 213.5t201.5 175.5l87 50-27 96q-24 91-70 172 152-63 275-171l43-38 57 6q69 8 130 8 204 0 381.5-69.5t282-187.5 104.5-255-104.5-255-282-187.5-381.5-69.5zM1792 896q0 174-120 321.5t-326 233-450 85.5q-70 0-145-8-198 175-460 242-49 14-114 22h-5q-15 0-27-10.5t-16-27.5v-1q-3-4-0.5-12t2-10 4.5-9.5l6-9t7-8.5 8-9q7-8 31-34.5t34.5-38 31-39.5 32.5-51 27-59 26-76q-157-89-247.5-220t-90.5-281q0-174 120-321.5t326-233 450-85.5 450 85.5 326 233 120 321.5z" + } + }] +}; +exports.commentO = commentO; \ No newline at end of file diff --git a/dist/fa/commenting.js b/dist/fa/commenting.js new file mode 100644 index 000000000..93bb9c2da --- /dev/null +++ b/dist/fa/commenting.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.commenting = void 0; +var commenting = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 896q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1024 896q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1408 896q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1792 896q0 174-120 321.5t-326 233-450 85.5q-110 0-211-18-173 173-435 229-52 10-86 13-12 1-22-6t-13-18q-4-15 20-37 5-5 23.5-21.5t25.5-23.5 23.5-25.5 24-31.5 20.5-37 20-48 14.5-57.5 12.5-72.5q-146-90-229.5-216.5t-83.5-269.5q0-174 120-321.5t326-233 450-85.5 450 85.5 326 233 120 321.5z" + } + }] +}; +exports.commenting = commenting; \ No newline at end of file diff --git a/dist/fa/commentingO.js b/dist/fa/commentingO.js new file mode 100644 index 000000000..18ebe766d --- /dev/null +++ b/dist/fa/commentingO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.commentingO = void 0; +var commentingO = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 896q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5 90.5 37.5 37.5 90.5zM1024 896q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5 90.5 37.5 37.5 90.5zM1408 896q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5 90.5 37.5 37.5 90.5zM896 384q-204 0-381.5 69.5t-282 187.5-104.5 255q0 112 71.5 213.5t201.5 175.5l87 50-27 96q-24 91-70 172 152-63 275-171l43-38 57 6q69 8 130 8 204 0 381.5-69.5t282-187.5 104.5-255-104.5-255-282-187.5-381.5-69.5zM1792 896q0 174-120 321.5t-326 233-450 85.5q-70 0-145-8-198 175-460 242-49 14-114 22h-5q-15 0-27-10.5t-16-27.5v-1q-3-4-0.5-12t2-10 4.5-9.5l6-9t7-8.5 8-9q7-8 31-34.5t34.5-38 31-39.5 32.5-51 27-59 26-76q-157-89-247.5-220t-90.5-281q0-130 71-248.5t191-204.5 286-136.5 348-50.5 348 50.5 286 136.5 191 204.5 71 248.5z" + } + }] +}; +exports.commentingO = commentingO; \ No newline at end of file diff --git a/dist/fa/comments.js b/dist/fa/comments.js new file mode 100644 index 000000000..2cfc12fda --- /dev/null +++ b/dist/fa/comments.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.comments = void 0; +var comments = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1408 768q0 139-94 257t-256.5 186.5-353.5 68.5q-86 0-176-16-124 88-278 128-36 9-86 16h-3q-11 0-20.5-8t-11.5-21q-1-3-1-6.5t0.5-6.5 2-6l2.5-5t3.5-5.5 4-5 4.5-5 4-4.5q5-6 23-25t26-29.5 22.5-29 25-38.5 20.5-44q-124-72-195-177t-71-224q0-139 94-257t256.5-186.5 353.5-68.5 353.5 68.5 256.5 186.5 94 257zM1792 1024q0 120-71 224.5t-195 176.5q10 24 20.5 44t25 38.5 22.5 29 26 29.5 23 25q1 1 4 4.5t4.5 5 4 5 3.5 5.5l2.5 5t2 6 0.5 6.5-1 6.5q-3 14-13 22t-22 7q-50-7-86-16-154-40-278-128-90 16-176 16-271 0-472-132 58 4 88 4 161 0 309-45t264-129q125-92 192-212t67-254q0-77-23-152 129 71 204 178t75 230z" + } + }] +}; +exports.comments = comments; \ No newline at end of file diff --git a/dist/fa/commentsO.js b/dist/fa/commentsO.js new file mode 100644 index 000000000..5c2b63761 --- /dev/null +++ b/dist/fa/commentsO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.commentsO = void 0; +var commentsO = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M704 384q-153 0-286 52t-211.5 141-78.5 191q0 82 53 158t149 132l97 56-35 84q34-20 62-39l44-31 53 10q78 14 153 14 153 0 286-52t211.5-141 78.5-191-78.5-191-211.5-141-286-52zM704 256q191 0 353.5 68.5t256.5 186.5 94 257-94 257-256.5 186.5-353.5 68.5q-86 0-176-16-124 88-278 128-36 9-86 16h-3q-11 0-20.5-8t-11.5-21q-1-3-1-6.5t0.5-6.5 2-6l2.5-5t3.5-5.5 4-5 4.5-5 4-4.5q5-6 23-25t26-29.5 22.5-29 25-38.5 20.5-44q-124-72-195-177t-71-224q0-139 94-257t256.5-186.5 353.5-68.5zM1526 1425q10 24 20.5 44t25 38.5 22.5 29 26 29.5 23 25q1 1 4 4.5t4.5 5 4 5 3.5 5.5l2.5 5t2 6 0.5 6.5-1 6.5q-3 14-13 22t-22 7q-50-7-86-16-154-40-278-128-90 16-176 16-271 0-472-132 58 4 88 4 161 0 309-45t264-129q125-92 192-212t67-254q0-77-23-152 129 71 204 178t75 230q0 120-71 224.5t-195 176.5z" + } + }] +}; +exports.commentsO = commentsO; \ No newline at end of file diff --git a/dist/fa/compass.js b/dist/fa/compass.js new file mode 100644 index 000000000..22a4c0060 --- /dev/null +++ b/dist/fa/compass.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.compass = void 0; +var compass = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 1088l256-128-256-128v256zM1024 497v542l-512 256v-542zM1312 896q0-148-73-273t-198-198-273-73-273 73-198 198-73 273 73 273 198 198 273 73 273-73 198-198 73-273zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.compass = compass; \ No newline at end of file diff --git a/dist/fa/compress.js b/dist/fa/compress.js new file mode 100644 index 000000000..1e0549324 --- /dev/null +++ b/dist/fa/compress.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.compress = void 0; +var compress = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M768 960v448q0 26-19 45t-45 19-45-19l-144-144-332 332q-10 10-23 10t-23-10l-114-114q-10-10-10-23t10-23l332-332-144-144q-19-19-19-45t19-45 45-19h448q26 0 45 19t19 45zM1523 288q0 13-10 23l-332 332 144 144q19 19 19 45t-19 45-45 19h-448q-26 0-45-19t-19-45v-448q0-26 19-45t45-19 45 19l144 144 332-332q10-10 23-10t23 10l114 114q10 10 10 23z" + } + }] +}; +exports.compress = compress; \ No newline at end of file diff --git a/dist/fa/connectdevelop.js b/dist/fa/connectdevelop.js new file mode 100644 index 000000000..0e7c3b9ef --- /dev/null +++ b/dist/fa/connectdevelop.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.connectdevelop = void 0; +var connectdevelop = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M2048 895q0 21-13 36.5t-33 19.5l-205 356q3 9 3 18 0 20-12.5 35.5t-32.5 19.5l-193 337q3 8 3 16 0 23-16.5 40t-40.5 17q-25 0-41-18h-400q-17 20-43 20t-43-20h-399q-17 20-43 20-23 0-40-16.5t-17-40.5q0-8 4-20l-193-335q-20-4-32.5-19.5t-12.5-35.5q0-9 3-18l-206-356q-20-5-32.5-20.5t-12.5-35.5q0-21 13.5-36.5t33.5-19.5l199-344q0-1-0.5-3t-0.5-3q0-36 34-51l209-363q-4-10-4-18 0-24 17-40.5t40-16.5q26 0 44 21h396q16-21 43-21t43 21h398q18-21 44-21 23 0 40 16.5t17 40.5q0 6-4 18l207 358q23 1 39 17.5t16 38.5q0 13-7 27l187 324q19 4 31.5 19.5t12.5 35.5zM1063 1694h389l-342-354h-143l-342 354h360q18-16 39-16t39 16zM112 882q1 4 1 13 0 10-2 15l208 360 15 6 188-199v-347l-187-194q-13 8-29 10zM986 98h-388l190 200 554-200h-280q-16 16-38 16t-38-16zM1689 1310q1-6 5-11l-64-68-17 79h76zM1583 1310l22-105-252-266-296 307 63 64h463zM1495 1678l16-28 65-310h-427l333 343q8-4 13-5zM578 1694h5l342-354h-373v335l4 6q14 5 22 13zM552 1310h402l64-66-309-321-157 166v221zM359 1310h163v-189l-168 177q4 8 5 12zM358 485q0 1 0.5 2t0.5 2q0 16-8 29l171 177v-269zM552 415v311l153 157 297-314-223-236zM556 111l-4 8v264l205-74-191-201q-6 2-10 3zM1447 98h-16l-621 224 213 225zM1023 590l-297 315 311 319 296-307zM688 902l-136-141v284zM1038 1266l-42 44h85zM1374 918l238 251 132-624-3-5-1-1zM1718 518q-8-13-8-29v-2l-216-376q-5-1-13-5l-437 463 310 327zM522 394v-223l-163 282zM522 1340h-163l163 283v-283zM1607 1340l-48 227 130-227h-82zM1729 1270l207-361q-2-10-2-14 0-1 3-16l-171-296-129 612 77 82q5-3 15-7z" + } + }] +}; +exports.connectdevelop = connectdevelop; \ No newline at end of file diff --git a/dist/fa/contao.js b/dist/fa/contao.js new file mode 100644 index 000000000..428af12fa --- /dev/null +++ b/dist/fa/contao.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.contao = void 0; +var contao = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M138 128h197q-70 64-126 149-36 56-59 115t-30 125.5-8.5 120 10.5 132 21 126 28 136.5q4 19 6 28 51 238 81 329 57 171 152 275h-272q-48 0-82-34t-34-82v-1304q0-48 34-82t82-34zM1346 128h308q48 0 82 34t34 82v1304q0 48-34 82t-82 34h-178q212-210 196-565l-469 101q-2 45-12 82t-31 72-59.5 59.5-93.5 36.5q-123 26-199-40-32-27-53-61t-51.5-129-64.5-258q-35-163-45.5-263t-5.5-139 23-77q20-41 62.5-73t102.5-45q45-12 83.5-6.5t67 17 54 35 43 48 34.5 56.5l468-100q-68-175-180-287z" + } + }] +}; +exports.contao = contao; \ No newline at end of file diff --git a/dist/fa/copy.js b/dist/fa/copy.js new file mode 100644 index 000000000..26f59f9be --- /dev/null +++ b/dist/fa/copy.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.copy = void 0; +var copy = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1696 384q40 0 68 28t28 68v1216q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-288h-544q-40 0-68-28t-28-68v-672q0-40 20-88t48-76l408-408q28-28 76-48t88-20h416q40 0 68 28t28 68v328q68-40 128-40h416zM1152 597l-299 299h299v-299zM512 213l-299 299h299v-299zM708 860l316-316v-416h-384v416q0 40-28 68t-68 28h-416v640h512v-256q0-40 20-88t48-76zM1664 1664v-1152h-384v416q0 40-28 68t-68 28h-416v640h896z" + } + }] +}; +exports.copy = copy; \ No newline at end of file diff --git a/dist/fa/copyright.js b/dist/fa/copyright.js new file mode 100644 index 000000000..b92acb60e --- /dev/null +++ b/dist/fa/copyright.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.copyright = void 0; +var copyright = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1150 1074v109q0 50-36.5 89t-94 60.5-118 32.5-117.5 11q-205 0-342.5-139t-137.5-346q0-203 136-339t339-136q34 0 75.5 4.5t93 18 92.5 34 69 56.5 28 81v109q0 16-16 16h-118q-16 0-16-16v-70q0-43-65.5-67.5t-137.5-24.5q-140 0-228.5 91.5t-88.5 237.5q0 151 91.5 249.5t233.5 98.5q68 0 138-24t70-66v-70q0-7 4.5-11.5t10.5-4.5h119q6 0 11 4.5t5 11.5zM768 256q-130 0-248.5 51t-204 136.5-136.5 204-51 248.5 51 248.5 136.5 204 204 136.5 248.5 51 248.5-51 204-136.5 136.5-204 51-248.5-51-248.5-136.5-204-204-136.5-248.5-51zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.copyright = copyright; \ No newline at end of file diff --git a/dist/fa/creativeCommons.js b/dist/fa/creativeCommons.js new file mode 100644 index 000000000..7242bfeb8 --- /dev/null +++ b/dist/fa/creativeCommons.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.creativeCommons = void 0; +var creativeCommons = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M605 1233q153 0 257-104 14-18 3-36l-45-82q-6-13-24-17-16-2-27 11l-4 3q-4 4-11.5 10t-17.5 13.5-23.5 14.5-28.5 13-33.5 9.5-37.5 3.5q-76 0-125-50t-49-127q0-76 48-125.5t122-49.5q37 0 71.5 14t50.5 28l16 14q11 11 26 10 16-2 24-14l53-78q13-20-2-39-3-4-11-12t-30-23.5-48.5-28-67.5-22.5-86-10q-148 0-246 96.5t-98 240.5q0 146 97 241.5t247 95.5zM1235 1233q153 0 257-104 14-18 4-36l-45-82q-8-14-25-17-16-2-27 11l-4 3q-4 4-11.5 10t-17.5 13.5-23.5 14.5-28.5 13-33.5 9.5-37.5 3.5q-76 0-125-50t-49-127q0-76 48-125.5t122-49.5q37 0 71.5 14t50.5 28l16 14q11 11 26 10 16-2 24-14l53-78q13-20-2-39-3-4-11-12t-30-23.5-48.5-28-67.5-22.5-86-10q-147 0-245.5 96.5t-98.5 240.5q0 146 97 241.5t247 95.5zM896 160q-150 0-286 58.5t-234.5 157-157 234.5-58.5 286 58.5 286 157 234.5 234.5 157 286 58.5 286-58.5 234.5-157 157-234.5 58.5-286-58.5-286-157-234.5-234.5-157-286-58.5zM896 0q182 0 348 71t286 191 191 286 71 348-71 348-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71z" + } + }] +}; +exports.creativeCommons = creativeCommons; \ No newline at end of file diff --git a/dist/fa/creditCard.js b/dist/fa/creditCard.js new file mode 100644 index 000000000..950082a53 --- /dev/null +++ b/dist/fa/creditCard.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.creditCard = void 0; +var creditCard = { + "viewBox": "0 0 1920 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1760 128q66 0 113 47t47 113v1216q0 66-47 113t-113 47h-1600q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1600zM160 256q-13 0-22.5 9.5t-9.5 22.5v224h1664v-224q0-13-9.5-22.5t-22.5-9.5h-1600zM1760 1536q13 0 22.5-9.5t9.5-22.5v-608h-1664v608q0 13 9.5 22.5t22.5 9.5h1600zM256 1408v-128h256v128h-256zM640 1408v-128h384v128h-384z" + } + }] +}; +exports.creditCard = creditCard; \ No newline at end of file diff --git a/dist/fa/creditCardAlt.js b/dist/fa/creditCardAlt.js new file mode 100644 index 000000000..ef2d3698b --- /dev/null +++ b/dist/fa/creditCardAlt.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.creditCardAlt = void 0; +var creditCardAlt = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 1504v-608h2304v608q0 66-47 113t-113 47h-1984q-66 0-113-47t-47-113zM640 1280v128h384v-128h-384zM256 1280v128h256v-128h-256zM2144 128q66 0 113 47t47 113v224h-2304v-224q0-66 47-113t113-47h1984z" + } + }] +}; +exports.creditCardAlt = creditCardAlt; \ No newline at end of file diff --git a/dist/fa/crop.js b/dist/fa/crop.js new file mode 100644 index 000000000..bc92dc21b --- /dev/null +++ b/dist/fa/crop.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.crop = void 0; +var crop = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M557 1280h595v-595zM512 1235l595-595h-595v595zM1664 1312v192q0 14-9 23t-23 9h-224v224q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-224h-864q-14 0-23-9t-9-23v-864h-224q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h224v-224q0-14 9-23t23-9h192q14 0 23 9t9 23v224h851l246-247q10-9 23-9t23 9q9 10 9 23t-9 23l-247 246v851h224q14 0 23 9t9 23z" + } + }] +}; +exports.crop = crop; \ No newline at end of file diff --git a/dist/fa/crosshairs.js b/dist/fa/crosshairs.js new file mode 100644 index 000000000..286cac569 --- /dev/null +++ b/dist/fa/crosshairs.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.crosshairs = void 0; +var crosshairs = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1197 1024h-109q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h109q-32-108-112.5-188.5t-188.5-112.5v109q0 26-19 45t-45 19h-128q-26 0-45-19t-19-45v-109q-108 32-188.5 112.5t-112.5 188.5h109q26 0 45 19t19 45v128q0 26-19 45t-45 19h-109q32 108 112.5 188.5t188.5 112.5v-109q0-26 19-45t45-19h128q26 0 45 19t19 45v109q108-32 188.5-112.5t112.5-188.5zM1536 832v128q0 26-19 45t-45 19h-143q-37 161-154.5 278.5t-278.5 154.5v143q0 26-19 45t-45 19h-128q-26 0-45-19t-19-45v-143q-161-37-278.5-154.5t-154.5-278.5h-143q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h143q37-161 154.5-278.5t278.5-154.5v-143q0-26 19-45t45-19h128q26 0 45 19t19 45v143q161 37 278.5 154.5t154.5 278.5h143q26 0 45 19t19 45z" + } + }] +}; +exports.crosshairs = crosshairs; \ No newline at end of file diff --git a/dist/fa/css3.js b/dist/fa/css3.js new file mode 100644 index 000000000..66677547a --- /dev/null +++ b/dist/fa/css3.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.css3 = void 0; +var css3 = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M275 128h1505l-266 1333-804 267-698-267 71-356h297l-29 147 422 161 486-161 68-339h-1208l58-297h1209l38-191h-1208z" + } + }] +}; +exports.css3 = css3; \ No newline at end of file diff --git a/dist/fa/cube.js b/dist/fa/cube.js new file mode 100644 index 000000000..71429291d --- /dev/null +++ b/dist/fa/cube.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cube = void 0; +var cube = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M896 1629l640-349v-636l-640 233v752zM832 764l698-254-698-254-698 254zM1664 512v768q0 35-18 65t-49 47l-704 384q-28 16-61 16t-61-16l-704-384q-31-17-49-47t-18-65v-768q0-40 23-73t61-47l704-256q22-8 44-8t44 8l704 256q38 14 61 47t23 73z" + } + }] +}; +exports.cube = cube; \ No newline at end of file diff --git a/dist/fa/cubes.js b/dist/fa/cubes.js new file mode 100644 index 000000000..4d373529a --- /dev/null +++ b/dist/fa/cubes.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cubes = void 0; +var cubes = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 1632l384-192v-314l-384 164v342zM576 1178l404-173-404-173-404 173zM1664 1632l384-192v-314l-384 164v342zM1600 1178l404-173-404-173-404 173zM1152 885l384-165v-266l-384 164v267zM1088 506l441-189-441-189-441 189zM2176 1024v416q0 36-19 67t-52 47l-448 224q-25 14-57 14t-57-14l-448-224q-4-2-7-4-2 2-7 4l-448 224q-25 14-57 14t-57-14l-448-224q-33-16-52-47t-19-67v-416q0-38 21.5-70t56.5-48l434-186v-400q0-38 21.5-70t56.5-48l448-192q23-10 50-10t50 10l448 192q35 16 56.5 48t21.5 70v400l434 186q36 16 57 48t21 70z" + } + }] +}; +exports.cubes = cubes; \ No newline at end of file diff --git a/dist/fa/cut.js b/dist/fa/cut.js new file mode 100644 index 000000000..ef9ad7197 --- /dev/null +++ b/dist/fa/cut.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cut = void 0; +var cut = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M960 896q26 0 45 19t19 45-19 45-45 19-45-19-19-45 19-45 45-19zM1260 960l507 398q28 20 25 56-5 35-35 51l-128 64q-13 7-29 7-17 0-31-8l-690-387-110 66q-8 4-12 5 14 49 10 97-7 77-56 147.5t-132 123.5q-132 84-277 84-136 0-222-78-90-84-79-207 7-76 56-147t131-124q132-84 278-84 83 0 151 31 9-13 22-22l122-73-122-73q-13-9-22-22-68 31-151 31-146 0-278-84-82-53-131-124t-56-147q-5-59 15.5-113t63.5-93q85-79 222-79 145 0 277 84 83 52 132 123t56 148q4 48-10 97 4 1 12 5l110 66 690-387q14-8 31-8 16 0 29 7l128 64q30 16 35 51 3 36-25 56zM579 700q46-42 21-108t-106-117q-92-59-192-59-74 0-113 36-46 42-21 108t106 117q92 59 192 59 74 0 113-36zM494 1445q81-51 106-117t-21-108q-39-36-113-36-100 0-192 59-81 51-106 117t21 108q39 36 113 36 100 0 192-59zM672 832l96 58v-11q0-36 33-56l14-8-79-47-26 26q-3 3-10 11t-12 12q-2 2-4 3.5t-3 2.5zM896 1056l96 32 736-576-128-64-768 431v113l-160 96 9 8q2 2 7 6 4 4 11 12t11 12l26 26zM1600 1472l128-64-520-408-177 138q-2 3-13 7z" + } + }] +}; +exports.cut = cut; \ No newline at end of file diff --git a/dist/fa/cutlery.js b/dist/fa/cutlery.js new file mode 100644 index 000000000..35be383c8 --- /dev/null +++ b/dist/fa/cutlery.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cutlery = void 0; +var cutlery = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 64v640q0 61-35.5 111t-92.5 70v779q0 52-38 90t-90 38h-128q-52 0-90-38t-38-90v-779q-57-20-92.5-70t-35.5-111v-640q0-26 19-45t45-19 45 19 19 45v416q0 26 19 45t45 19 45-19 19-45v-416q0-26 19-45t45-19 45 19 19 45v416q0 26 19 45t45 19 45-19 19-45v-416q0-26 19-45t45-19 45 19 19 45zM1408 64v1600q0 52-38 90t-90 38h-128q-52 0-90-38t-38-90v-512h-224q-13 0-22.5-9.5t-9.5-22.5v-800q0-132 94-226t226-94h256q26 0 45 19t19 45z" + } + }] +}; +exports.cutlery = cutlery; \ No newline at end of file diff --git a/dist/fa/dashboard.js b/dist/fa/dashboard.js new file mode 100644 index 000000000..e89fd0765 --- /dev/null +++ b/dist/fa/dashboard.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.dashboard = void 0; +var dashboard = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M384 1152q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM576 704q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1004 1185l101-382q6-26-7.5-48.5t-38.5-29.5-48 6.5-30 39.5l-101 382q-60 5-107 43.5t-63 98.5q-20 77 20 146t117 89 146-20 89-117q16-60-6-117t-72-91zM1664 1152q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1024 512q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1472 704q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1792 1152q0 261-141 483-19 29-54 29h-1402q-35 0-54-29-141-221-141-483 0-182 71-348t191-286 286-191 348-71 348 71 286 191 191 286 71 348z" + } + }] +}; +exports.dashboard = dashboard; \ No newline at end of file diff --git a/dist/fa/dashcube.js b/dist/fa/dashcube.js new file mode 100644 index 000000000..ccee8ac0c --- /dev/null +++ b/dist/fa/dashcube.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.dashcube = void 0; +var dashcube = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 680q0-131 91.5-226.5t222.5-95.5h742l352-358v1470q0 132-91.5 227t-222.5 95h-780q-131 0-222.5-95t-91.5-227v-790zM1232 1434l-176-180v-425q0-46-32-79t-78-33h-484q-46 0-78 33t-32 79v492q0 46 32.5 79.5t77.5 33.5h770z" + } + }] +}; +exports.dashcube = dashcube; \ No newline at end of file diff --git a/dist/fa/database.js b/dist/fa/database.js new file mode 100644 index 000000000..fdfb118dc --- /dev/null +++ b/dist/fa/database.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.database = void 0; +var database = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M768 768q237 0 443-43t325-127v170q0 69-103 128t-280 93.5-385 34.5-385-34.5-280-93.5-103-128v-170q119 84 325 127t443 43zM768 1536q237 0 443-43t325-127v170q0 69-103 128t-280 93.5-385 34.5-385-34.5-280-93.5-103-128v-170q119 84 325 127t443 43zM768 1152q237 0 443-43t325-127v170q0 69-103 128t-280 93.5-385 34.5-385-34.5-280-93.5-103-128v-170q119 84 325 127t443 43zM768 0q208 0 385 34.5t280 93.5 103 128v128q0 69-103 128t-280 93.5-385 34.5-385-34.5-280-93.5-103-128v-128q0-69 103-128t280-93.5 385-34.5z" + } + }] +}; +exports.database = database; \ No newline at end of file diff --git a/dist/fa/deaf.js b/dist/fa/deaf.js new file mode 100644 index 000000000..f13569b2e --- /dev/null +++ b/dist/fa/deaf.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.deaf = void 0; +var deaf = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1056 832q0 26 19 45t45 19 45-19 19-45q0-146-103-249t-249-103-249 103-103 249q0 26 19 45t45 19 45-19 19-45q0-93 66-158.5t158-65.5 158 65.5 66 158.5zM835 256q-117 0-223.5 45.5t-184 123-123 184-45.5 223.5q0 26 19 45t45 19 45-19 19-45q0-185 131.5-316.5t316.5-131.5 316.5 131.5 131.5 316.5q0 55-18 103.5t-37.5 74.5-59.5 72q-34 39-52 63t-43.5 66.5-37 91-11.5 105.5q0 106-75 181t-181 75q-26 0-45 19t-19 45 19 45 45 19q159 0 271.5-112.5t112.5-271.5q0-41 7.5-74t26.5-64 33.5-50 45.5-54q35-41 53-64.5t44-67.5 37.5-93.5 11.5-108.5q0-117-45.5-223.5t-123-184-184-123-223.5-45.5zM591 975l226 226-579 579q-12 12-29 12t-29-12l-168-168q-12-12-12-29t12-29zM1612 12l168 168q12 12 12 29t-12 30l-233 233-26 25-71 71q-66-153-195-258l91-91 207-207q13-12 30-12t29 12z" + } + }] +}; +exports.deaf = deaf; \ No newline at end of file diff --git a/dist/fa/deafness.js b/dist/fa/deafness.js new file mode 100644 index 000000000..ca228b5d8 --- /dev/null +++ b/dist/fa/deafness.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.deafness = void 0; +var deafness = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1056 832q0 26 19 45t45 19 45-19 19-45q0-146-103-249t-249-103-249 103-103 249q0 26 19 45t45 19 45-19 19-45q0-93 66-158.5t158-65.5 158 65.5 66 158.5zM835 256q-117 0-223.5 45.5t-184 123-123 184-45.5 223.5q0 26 19 45t45 19 45-19 19-45q0-185 131.5-316.5t316.5-131.5 316.5 131.5 131.5 316.5q0 55-18 103.5t-37.5 74.5-59.5 72q-34 39-52 63t-43.5 66.5-37 91-11.5 105.5q0 106-75 181t-181 75q-26 0-45 19t-19 45 19 45 45 19q159 0 271.5-112.5t112.5-271.5q0-41 7.5-74t26.5-64 33.5-50 45.5-54q35-41 53-64.5t44-67.5 37.5-93.5 11.5-108.5q0-117-45.5-223.5t-123-184-184-123-223.5-45.5zM591 975l226 226-579 579q-12 12-29 12t-29-12l-168-168q-12-12-12-29t12-29zM1612 12l168 168q12 12 12 29t-12 30l-233 233-26 25-71 71q-66-153-195-258l91-91 207-207q13-12 30-12t29 12z" + } + }] +}; +exports.deafness = deafness; \ No newline at end of file diff --git a/dist/fa/dedent.js b/dist/fa/dedent.js new file mode 100644 index 000000000..95aea936a --- /dev/null +++ b/dist/fa/dedent.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.dedent = void 0; +var dedent = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M384 544v576q0 13-9.5 22.5t-22.5 9.5q-14 0-23-9l-288-288q-9-9-9-23t9-23l288-288q9-9 23-9 13 0 22.5 9.5t9.5 22.5zM1792 1312v192q0 13-9.5 22.5t-22.5 9.5h-1728q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1728q13 0 22.5 9.5t9.5 22.5zM1792 928v192q0 13-9.5 22.5t-22.5 9.5h-1088q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1088q13 0 22.5 9.5t9.5 22.5zM1792 544v192q0 13-9.5 22.5t-22.5 9.5h-1088q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1088q13 0 22.5 9.5t9.5 22.5zM1792 160v192q0 13-9.5 22.5t-22.5 9.5h-1728q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1728q13 0 22.5 9.5t9.5 22.5z" + } + }] +}; +exports.dedent = dedent; \ No newline at end of file diff --git a/dist/fa/delicious.js b/dist/fa/delicious.js new file mode 100644 index 000000000..08cd104e7 --- /dev/null +++ b/dist/fa/delicious.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.delicious = void 0; +var delicious = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1472 1376v-480h-704v-704h-480q-93 0-158.5 65.5t-65.5 158.5v480h704v704h480q93 0 158.5-65.5t65.5-158.5zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.delicious = delicious; \ No newline at end of file diff --git a/dist/fa/desktop.js b/dist/fa/desktop.js new file mode 100644 index 000000000..c5f809274 --- /dev/null +++ b/dist/fa/desktop.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.desktop = void 0; +var desktop = { + "viewBox": "0 0 1920 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1792 992v-832q0-13-9.5-22.5t-22.5-9.5h-1600q-13 0-22.5 9.5t-9.5 22.5v832q0 13 9.5 22.5t22.5 9.5h1600q13 0 22.5-9.5t9.5-22.5zM1920 160v1088q0 66-47 113t-113 47h-544q0 37 16 77.5t32 71 16 43.5q0 26-19 45t-45 19h-512q-26 0-45-19t-19-45q0-14 16-44t32-70 16-78h-544q-66 0-113-47t-47-113v-1088q0-66 47-113t113-47h1600q66 0 113 47t47 113z" + } + }] +}; +exports.desktop = desktop; \ No newline at end of file diff --git a/dist/fa/deviantart.js b/dist/fa/deviantart.js new file mode 100644 index 000000000..1210eb7c1 --- /dev/null +++ b/dist/fa/deviantart.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.deviantart = void 0; +var deviantart = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 303l-303 582 24 31h279v415h-507l-44 30-142 273-30 30h-301v-303l303-583-24-30h-279v-415h507l44-30 142-273 30-30h301v303z" + } + }] +}; +exports.deviantart = deviantart; \ No newline at end of file diff --git a/dist/fa/diamond.js b/dist/fa/diamond.js new file mode 100644 index 000000000..ee76eccea --- /dev/null +++ b/dist/fa/diamond.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.diamond = void 0; +var diamond = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M212 768l623 665-300-665h-323zM1024 1540l349-772h-698zM538 640l204-384h-262l-288 384h346zM1213 1433l623-665h-323zM683 640h682l-204-384h-274zM1510 640h346l-288-384h-262zM1651 154l384 512q14 18 13 41.5t-17 40.5l-960 1024q-18 20-47 20t-47-20l-960-1024q-16-17-17-40.5t13-41.5l384-512q18-26 51-26h1152q33 0 51 26z" + } + }] +}; +exports.diamond = diamond; \ No newline at end of file diff --git a/dist/fa/digg.js b/dist/fa/digg.js new file mode 100644 index 000000000..15d91790e --- /dev/null +++ b/dist/fa/digg.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.digg = void 0; +var digg = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M328 282h204v983h-532v-697h328v-286zM328 1101v-369h-123v369h123zM614 568v697h205v-697h-205zM614 282v204h205v-204h-205zM901 568h533v942h-533v-163h328v-82h-328v-697zM1229 1101v-369h-123v369h123zM1516 568h532v942h-532v-163h327v-82h-327v-697zM1843 1101v-369h-123v369h123z" + } + }] +}; +exports.digg = digg; \ No newline at end of file diff --git a/dist/fa/dollar.js b/dist/fa/dollar.js new file mode 100644 index 000000000..aab0736c3 --- /dev/null +++ b/dist/fa/dollar.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.dollar = void 0; +var dollar = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M978 1185q0 153-99.5 263.5t-258.5 136.5v175q0 14-9 23t-23 9h-135q-13 0-22.5-9.5t-9.5-22.5v-175q-66-9-127.5-31t-101.5-44.5-74-48-46.5-37.5-17.5-18q-17-21-2-41l103-135q7-10 23-12 15-2 24 9l2 2q113 99 243 125 37 8 74 8 81 0 142.5-43t61.5-122q0-28-15-53t-33.5-42-58.5-37.5-66-32-80-32.5q-39-16-61.5-25t-61.5-26.5-62.5-31-56.5-35.5-53.5-42.5-43.5-49-35.5-58-21-66.5-8.5-78q0-138 98-242t255-134v-180q0-13 9.5-22.5t22.5-9.5h135q14 0 23 9t9 23v176q57 6 110.5 23t87 33.5 63.5 37.5 39 29 15 14q17 18 5 38l-81 146q-8 15-23 16-14 3-27-7-3-3-14.5-12t-39-26.5-58.5-32-74.5-26-85.5-11.5q-95 0-155 43t-60 111q0 26 8.5 48t29.5 41.5 39.5 33 56 31 60.5 27 70 27.5q53 20 81 31.5t76 35 75.5 42.5 62 50 53 63.5 31.5 76.5 13 94z" + } + }] +}; +exports.dollar = dollar; \ No newline at end of file diff --git a/dist/fa/dotCircleO.js b/dist/fa/dotCircleO.js new file mode 100644 index 000000000..a08051e6d --- /dev/null +++ b/dist/fa/dotCircleO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.dotCircleO = void 0; +var dotCircleO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 896q0 106-75 181t-181 75-181-75-75-181 75-181 181-75 181 75 75 181zM768 352q-148 0-273 73t-198 198-73 273 73 273 198 198 273 73 273-73 198-198 73-273-73-273-198-198-273-73zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.dotCircleO = dotCircleO; \ No newline at end of file diff --git a/dist/fa/download.js b/dist/fa/download.js new file mode 100644 index 000000000..cfafae167 --- /dev/null +++ b/dist/fa/download.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.download = void 0; +var download = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1280 1344q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zM1536 1344q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zM1664 1120v320q0 40-28 68t-68 28h-1472q-40 0-68-28t-28-68v-320q0-40 28-68t68-28h465l135 136q58 56 136 56t136-56l136-136h464q40 0 68 28t28 68zM1339 551q17 41-14 70l-448 448q-18 19-45 19t-45-19l-448-448q-31-29-14-70 17-39 59-39h256v-448q0-26 19-45t45-19h256q26 0 45 19t19 45v448h256q42 0 59 39z" + } + }] +}; +exports.download = download; \ No newline at end of file diff --git a/dist/fa/dribbble.js b/dist/fa/dribbble.js new file mode 100644 index 000000000..7b40df2d6 --- /dev/null +++ b/dist/fa/dribbble.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.dribbble = void 0; +var dribbble = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 1500q-42-241-140-498h-2l-2 1q-16 6-43 16.5t-101 49-137 82-131 114.5-103 148l-15-11q184 150 418 150 132 0 256-52zM839 893q-21-49-53-111-311 93-673 93-1 7-1 21 0 124 44 236.5t124 201.5q50-89 123.5-166.5t142.5-124.5 130.5-81 99.5-48l37-13q4-1 13-3.5t13-4.5zM732 681q-120-213-244-378-138 65-234 186t-128 272q302 0 606-80zM1416 1000q-210-60-409-29 87 239 128 469 111-75 185-189.5t96-250.5zM611 259q-1 0-2 1 1-1 2-1zM1201 404q-185-164-433-164-76 0-155 19 131 170 246 382 69-26 130-60.5t96.5-61.5 65.5-57 37.5-40.5zM1424 889q-3-232-149-410l-1 1q-9 12-19 24.5t-43.5 44.5-71 60.5-100 65-131.5 64.5q25 53 44 95 2 5 6.5 17t7.5 17q36-5 74.5-7t73.5-2 69 1.5 64 4 56.5 5.5 48 6.5 36.5 6 25 4.5zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.dribbble = dribbble; \ No newline at end of file diff --git a/dist/fa/driversLicense.js b/dist/fa/driversLicense.js new file mode 100644 index 000000000..369946bd4 --- /dev/null +++ b/dist/fa/driversLicense.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.driversLicense = void 0; +var driversLicense = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M896 1212q0-54-7.5-100.5t-24.5-90-51-68.5-81-25q-64 64-156 64t-156-64q-47 0-81 25t-51 68.5-24.5 90-7.5 100.5q0 55 31.5 93.5t75.5 38.5h426q44 0 75.5-38.5t31.5-93.5zM768 768q0-80-56-136t-136-56-136 56-56 136 56 136 136 56 136-56 56-136zM1792 1248v-64q0-14-9-23t-23-9h-704q-14 0-23 9t-9 23v64q0 14 9 23t23 9h704q14 0 23-9t9-23zM1408 992v-64q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v64q0 14 9 23t23 9h320q14 0 23-9t9-23zM1792 992v-64q0-14-9-23t-23-9h-192q-14 0-23 9t-9 23v64q0 14 9 23t23 9h192q14 0 23-9t9-23zM1792 736v-64q0-14-9-23t-23-9h-704q-14 0-23 9t-9 23v64q0 14 9 23t23 9h704q14 0 23-9t9-23zM128 384h1792v-96q0-14-9-23t-23-9h-1728q-14 0-23 9t-9 23v96zM2048 288v1216q0 66-47 113t-113 47h-1728q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1728q66 0 113 47t47 113z" + } + }] +}; +exports.driversLicense = driversLicense; \ No newline at end of file diff --git a/dist/fa/driversLicenseO.js b/dist/fa/driversLicenseO.js new file mode 100644 index 000000000..f5eaca062 --- /dev/null +++ b/dist/fa/driversLicenseO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.driversLicenseO = void 0; +var driversLicenseO = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M896 1212q0 55-31.5 93.5t-75.5 38.5h-426q-44 0-75.5-38.5t-31.5-93.5q0-54 7.5-100.5t24.5-90 51-68.5 81-25q64 64 156 64t156-64q47 0 81 25t51 68.5 24.5 90 7.5 100.5zM768 768q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM1792 1184v64q0 14-9 23t-23 9h-704q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h704q14 0 23 9t9 23zM1408 928v64q0 14-9 23t-23 9h-320q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h320q14 0 23 9t9 23zM1792 928v64q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h192q14 0 23 9t9 23zM1792 672v64q0 14-9 23t-23 9h-704q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h704q14 0 23 9t9 23zM1920 1504v-1120h-1792v1120q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5-9.5t9.5-22.5zM2048 288v1216q0 66-47 113t-113 47h-1728q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1728q66 0 113 47t47 113z" + } + }] +}; +exports.driversLicenseO = driversLicenseO; \ No newline at end of file diff --git a/dist/fa/dropbox.js b/dist/fa/dropbox.js new file mode 100644 index 000000000..e13217963 --- /dev/null +++ b/dist/fa/dropbox.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.dropbox = void 0; +var dropbox = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M402 707l494 305-342 285-490-319zM1388 1262v108l-490 293v1l-1-1-1 1v-1l-489-293v-108l147 96 342-284v-2l1 1 1-1v2l343 284zM554 118l342 285-494 304-338-270zM1390 707l338 271-489 319-343-285zM1239 118l489 319-338 270-494-304z" + } + }] +}; +exports.dropbox = dropbox; \ No newline at end of file diff --git a/dist/fa/drupal.js b/dist/fa/drupal.js new file mode 100644 index 000000000..ddd1b2b35 --- /dev/null +++ b/dist/fa/drupal.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.drupal = void 0; +var drupal = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1167 1586q-5-19-24-5-30 22-87 39t-131 17q-129 0-193-49-5-4-13-4-11 0-26 12-7 6-7.5 16t7.5 20q34 32 87.5 46t102.5 12.5 99-4.5q41-4 84.5-20.5t65-30 28.5-20.5q12-12 7-29zM1128 1471q-19-47-39-61-23-15-76-15-47 0-71 10-29 12-78 56-26 24-12 44 9 8 17.5 4.5t31.5-23.5q3-2 10.5-8.5t10.5-8.5 10-7 11.5-7 12.5-5 15-4.5 16.5-2.5 20.5-1q27 0 44.5 7.5t23 14.5 13.5 22q10 17 12.5 20t12.5-1q23-12 14-34zM1483 1190q0-22-5-44.5t-16.5-45-34-36.5-52.5-14q-33 0-97 41.5t-129 83.5-101 42q-27 1-63.5-19t-76-49-83.5-58-100-49-111-19q-115 1-197 78.5t-84 178.5q-2 112 74 164 29 20 62.5 28.5t103.5 8.5q57 0 132-32.5t134-71 120-70.5 93-31q26 1 65 31.5t71.5 67 68 67.5 55.5 32q35 3 58.5-14t55.5-63q28-41 42.5-101t14.5-106zM1536 1030q0 164-62 304.5t-166 236-242.5 149.5-290.5 54-293-57.5-247.5-157-170.5-241.5-64-302q0-89 19.5-172.5t49-145.5 70.5-118.5 78.5-94 78.5-69.5 64.5-46.5 42.5-24.5q14-8 51-26.5t54.5-28.5 48-30 60.5-44q36-28 58-72.5t30-125.5q129 155 186 193 44 29 130 68t129 66q21 13 39 25t60.5 46.5 76 70.5 75 95 69 122 47 148.5 19.5 177.5z" + } + }] +}; +exports.drupal = drupal; \ No newline at end of file diff --git a/dist/fa/edge.js b/dist/fa/edge.js new file mode 100644 index 000000000..a2207e4ec --- /dev/null +++ b/dist/fa/edge.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.edge = void 0; +var edge = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M69 795h1q16-126 58.5-241.5t115-217 167.5-176 223.5-117.5 276.5-43q231 0 414 105.5t294 303.5q104 187 104 442v188h-1125q1 111 53.5 192.5t136.5 122.5 189.5 57 213 3 208-46.5 173.5-84.5v377q-92 55-229.5 92t-312.5 38-316-53q-189-73-311.5-249t-124.5-372q-3-242 111-412t325-268q-48 60-78 125.5t-46 159.5h635q8-77-8-140t-47-101.5-70.5-66.5-80.5-41-75-20.5-56-8.5l-22-1q-135 5-259.5 44.5t-223.5 104.5-176 140.5-138 163.5z" + } + }] +}; +exports.edge = edge; \ No newline at end of file diff --git a/dist/fa/edit.js b/dist/fa/edit.js new file mode 100644 index 000000000..934a32ad4 --- /dev/null +++ b/dist/fa/edit.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.edit = void 0; +var edit = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M888 1184l116-116-152-152-116 116v56h96v96h56zM1328 464q-16-16-33 1l-350 350q-17 17-1 33t33-1l350-350q17-17 1-33zM1408 1058v190q0 119-84.5 203.5t-203.5 84.5h-832q-119 0-203.5-84.5t-84.5-203.5v-832q0-119 84.5-203.5t203.5-84.5h832q63 0 117 25 15 7 18 23 3 17-9 29l-49 49q-14 14-32 8-23-6-45-6h-832q-66 0-113 47t-47 113v832q0 66 47 113t113 47h832q66 0 113-47t47-113v-126q0-13 9-22l64-64q15-15 35-7t20 29zM1312 320l288 288-672 672h-288v-288zM1756 452l-92 92-288-288 92-92q28-28 68-28t68 28l152 152q28 28 28 68t-28 68z" + } + }] +}; +exports.edit = edit; \ No newline at end of file diff --git a/dist/fa/eercast.js b/dist/fa/eercast.js new file mode 100644 index 000000000..d19b1a2c3 --- /dev/null +++ b/dist/fa/eercast.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.eercast = void 0; +var eercast = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1341 784q29-44-6.5-129.5t-121.5-142.5q-58-39-125.5-53.5t-118-4.5-68.5 37q-12 23-4.5 28t42.5 10q23 3 38.5 5t44.5 9.5 56 17.5q36 13 67.5 31.5t53 37 40 38.5 30.5 38 22 34.5 16.5 28.5 12 18.5 10.5 6 11-9.5zM1704 1358q-52 127-148.5 220t-214.5 141.5-253 60.5-266-13.5-251-91-210-161.5-141.5-235.5-46.5-303.5q1-41 8.5-84.5t12.5-64 24-80.5 23-73q-51 208 1 397t173 318 291 206 346 83 349-74.5 289-244.5q20-27 18-14 0 4-4 14zM1465 909q0 104-40.5 199t-108.5 164-162 109.5-198 40.5-198-40.5-162-109.5-108.5-164-40.5-199 40.5-199 108.5-164 162-109.5 198-40.5 198 40.5 162 109.5 108.5 164 40.5 199zM1752 621q-65-147-180.5-251t-253-153.5-292-53.5-301 36.5-275.5 129-220 211.5-131 297-10 373q-49-161-51.5-311.5t35.5-272.5 109-227 165.5-180.5 207-126 232-71 242.5-9 236 54 216 124.5 178 197q33 50 62 121t31 112zM1690 963q12-244-136.5-416t-396.5-240q-8 0-10-5t24-8q125 4 230 50t173 120 116 168.5 58.5 199-1 208-61.5 197.5-122.5 167-185 117.5-248.5 46.5q108-30 201.5-80t174-123 129.5-176.5 55-225.5z" + } + }] +}; +exports.eercast = eercast; \ No newline at end of file diff --git a/dist/fa/eject.js b/dist/fa/eject.js new file mode 100644 index 000000000..0b721ee8b --- /dev/null +++ b/dist/fa/eject.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.eject = void 0; +var eject = { + "viewBox": "0 0 1538 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M14 979l710-710q19-19 45-19t45 19l710 710q19 19 13 32t-32 13h-1472q-26 0-32-13t13-32zM1473 1536h-1408q-26 0-45-19t-19-45v-256q0-26 19-45t45-19h1408q26 0 45 19t19 45v256q0 26-19 45t-45 19z" + } + }] +}; +exports.eject = eject; \ No newline at end of file diff --git a/dist/fa/ellipsisH.js b/dist/fa/ellipsisH.js new file mode 100644 index 000000000..42595e77d --- /dev/null +++ b/dist/fa/ellipsisH.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ellipsisH = void 0; +var ellipsisH = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M384 736v192q0 40-28 68t-68 28h-192q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h192q40 0 68 28t28 68zM896 736v192q0 40-28 68t-68 28h-192q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h192q40 0 68 28t28 68zM1408 736v192q0 40-28 68t-68 28h-192q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h192q40 0 68 28t28 68z" + } + }] +}; +exports.ellipsisH = ellipsisH; \ No newline at end of file diff --git a/dist/fa/ellipsisV.js b/dist/fa/ellipsisV.js new file mode 100644 index 000000000..b5b841416 --- /dev/null +++ b/dist/fa/ellipsisV.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ellipsisV = void 0; +var ellipsisV = { + "viewBox": "0 0 384 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M384 1248v192q0 40-28 68t-68 28h-192q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h192q40 0 68 28t28 68zM384 736v192q0 40-28 68t-68 28h-192q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h192q40 0 68 28t28 68zM384 224v192q0 40-28 68t-68 28h-192q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h192q40 0 68 28t28 68z" + } + }] +}; +exports.ellipsisV = ellipsisV; \ No newline at end of file diff --git a/dist/fa/empire.js b/dist/fa/empire.js new file mode 100644 index 000000000..0013e29e6 --- /dev/null +++ b/dist/fa/empire.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.empire = void 0; +var empire = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M874 1638v66q-208-6-385-109.5t-283-275.5l58-34q29 49 73 99l65-57q148 168 368 212l-17 86q65 12 121 13zM276 1108l-83 28q22 60 49 112l-57 33q-98-180-98-385t98-385l57 33q-30 56-49 112l82 28q-35 100-35 212 0 109 36 212zM1528 1285l58 34q-106 172-283 275.5t-385 109.5v-66q56-1 121-13l-17-86q220-44 368-212l65 57q44-50 73-99zM1377 731l-233 80q14 42 14 85t-14 85l232 80q-31 92-98 169l-185-162q-57 67-147 85l48 241q-52 10-98 10t-98-10l48-241q-90-18-147-85l-185 162q-67-77-98-169l232-80q-14-42-14-85t14-85l-233-80q33-93 99-169l185 162q59-68 147-86l-48-240q44-10 98-10t98 10l-48 240q88 18 147 86l185-162q66 76 99 169zM874 88v66q-65 2-121 13l17 86q-220 42-368 211l-65-56q-38 42-73 98l-57-33q106-172 282-275.5t385-109.5zM1705 896q0 205-98 385l-57-33q27-52 49-112l-83-28q36-103 36-212 0-112-35-212l82-28q-19-56-49-112l57-33q98 180 98 385zM1585 473l-57 33q-35-56-73-98l-65 56q-148-169-368-211l17-86q-56-11-121-13v-66q209 6 385 109.5t282 275.5zM1748 896q0-173-67.5-331t-181.5-272-272-181.5-331-67.5-331 67.5-272 181.5-181.5 272-67.5 331 67.5 331 181.5 272 272 181.5 331 67.5 331-67.5 272-181.5 181.5-272 67.5-331zM1792 896q0 182-71 348t-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71 348 71 286 191 191 286 71 348z" + } + }] +}; +exports.empire = empire; \ No newline at end of file diff --git a/dist/fa/envelope.js b/dist/fa/envelope.js new file mode 100644 index 000000000..a5ae71684 --- /dev/null +++ b/dist/fa/envelope.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.envelope = void 0; +var envelope = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1792 710v794q0 66-47 113t-113 47h-1472q-66 0-113-47t-47-113v-794q44 49 101 87 362 246 497 345 57 42 92.5 65.5t94.5 48 110 24.5h1 1q51 0 110-24.5t94.5-48 92.5-65.5q170-123 498-345 57-39 100-87zM1792 416q0 79-49 151t-122 123q-376 261-468 325-10 7-42.5 30.5t-54 38-52 32.5-57.5 27-50 9h-1-1q-23 0-50-9t-57.5-27-52-32.5-54-38-42.5-30.5q-91-64-262-182.5t-205-142.5q-62-42-117-115.5t-55-136.5q0-78 41.5-130t118.5-52h1472q65 0 112.5 47t47.5 113z" + } + }] +}; +exports.envelope = envelope; \ No newline at end of file diff --git a/dist/fa/envelopeO.js b/dist/fa/envelopeO.js new file mode 100644 index 000000000..98c40b769 --- /dev/null +++ b/dist/fa/envelopeO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.envelopeO = void 0; +var envelopeO = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1664 1504v-768q-32 36-69 66-268 206-426 338-51 43-83 67t-86.5 48.5-102.5 24.5h-1-1q-48 0-102.5-24.5t-86.5-48.5-83-67q-158-132-426-338-37-30-69-66v768q0 13 9.5 22.5t22.5 9.5h1472q13 0 22.5-9.5t9.5-22.5zM1664 453v-11-13.5t-0.5-13-3-12.5-5.5-9-9-7.5-14-2.5h-1472q-13 0-22.5 9.5t-9.5 22.5q0 168 147 284 193 152 401 317 6 5 35 29.5t46 37.5 44.5 31.5 50.5 27.5 43 9h1 1q20 0 43-9t50.5-27.5 44.5-31.5 46-37.5 35-29.5q208-165 401-317 54-43 100.5-115.5t46.5-131.5zM1792 416v1088q0 66-47 113t-113 47h-1472q-66 0-113-47t-47-113v-1088q0-66 47-113t113-47h1472q66 0 113 47t47 113z" + } + }] +}; +exports.envelopeO = envelopeO; \ No newline at end of file diff --git a/dist/fa/envelopeOpen.js b/dist/fa/envelopeOpen.js new file mode 100644 index 000000000..1d0b6c1da --- /dev/null +++ b/dist/fa/envelopeOpen.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.envelopeOpen = void 0; +var envelopeOpen = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1792 654v978q0 66-47 113t-113 47h-1472q-66 0-113-47t-47-113v-978q0-15 11-24 8-7 39-34.5t41.5-36 45.5-37.5 70-55.5 96-73 143.5-107 192.5-140.5q5-4 52.5-40t71.5-52.5 64-35 69-18.5 69 18.5 65 35.5 71 52 52 40q110 80 192.5 140.5t143.5 107 96 73 70 55.5 45.5 37.5 41.5 36 39 34.5q11 9 11 24zM1228 1239q263-191 345-252 11-8 12.5-20.5t-6.5-23.5l-38-52q-8-11-21-12.5t-24 6.5q-231 169-343 250-5 3-52 39t-71.5 52.5-64.5 35-69 18.5-69-18.5-64.5-35-71.5-52.5-52-39q-186-134-343-250-11-8-24-6.5t-21 12.5l-38 52q-8 11-6.5 23.5t12.5 20.5q82 61 345 252 10 8 50 38t65 47 64 39.5 77.5 33.5 75.5 11 75.5-11 79-34.5 64.5-39.5 65-47.5 48-36.5z" + } + }] +}; +exports.envelopeOpen = envelopeOpen; \ No newline at end of file diff --git a/dist/fa/envelopeOpenO.js b/dist/fa/envelopeOpenO.js new file mode 100644 index 000000000..683f86536 --- /dev/null +++ b/dist/fa/envelopeOpenO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.envelopeOpenO = void 0; +var envelopeOpenO = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1474 913l39 51q8 11 6.5 23.5t-11.5 20.5q-43 34-126.5 98.5t-146.5 113-67 51.5q-39 32-60 48t-60.5 41-76.5 36.5-74 11.5h-1-1q-37 0-74-11.5t-76-36.5-61-41.5-60-47.5q-5-4-65-50.5t-143.5-111-122.5-94.5q-11-8-12.5-20.5t6.5-23.5l37-52q8-11 21.5-13t24.5 7q94 73 306 236 5 4 43.5 35t60.5 46.5 56.5 32.5 58.5 17h1 1q24 0 58.5-17t56.5-32.5 60.5-46.5 43.5-35q258-198 313-242 11-8 24-6.5t21 12.5zM1664 1632v-928q-90-83-159-139-91-74-389-304-3-2-43-35t-61-48-56-32.5-59-17.5h-1-1q-24 0-59 17.5t-56 32.5-61 48-43 35q-215 166-315.5 245.5t-129.5 104-82 74.5q-14 12-21 19v928q0 13 9.5 22.5t22.5 9.5h1472q13 0 22.5-9.5t9.5-22.5zM1792 704v928q0 66-47 113t-113 47h-1472q-66 0-113-47t-47-113v-928q0-56 41-94 123-114 350-290.5t233-181.5q36-30 59-47.5t61.5-42 76-36.5 74.5-12h1 1q37 0 74.5 12t76 36.5 61.5 42 59 47.5q43 36 156 122t226 177 201 173q41 38 41 94z" + } + }] +}; +exports.envelopeOpenO = envelopeOpenO; \ No newline at end of file diff --git a/dist/fa/envelopeSquare.js b/dist/fa/envelopeSquare.js new file mode 100644 index 000000000..866329400 --- /dev/null +++ b/dist/fa/envelopeSquare.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.envelopeSquare = void 0; +var envelopeSquare = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1248 128q119 0 203.5 84.5t84.5 203.5v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960zM1280 1184v-436q-31 35-64 55-34 22-132.5 85t-151.5 99q-98 69-164 69v0 0q-66 0-164-69-47-32-142-92.5t-142-92.5q-12-8-33-27t-31-27v436q0 40 28 68t68 28h832q40 0 68-28t28-68zM1280 611q0-41-27.5-70t-68.5-29h-832q-40 0-68 28t-28 68q0 37 30.5 76.5t67.5 64.5q47 32 137.5 89t129.5 83q3 2 17 11.5t21 14 21 13 23.5 13 21.5 9.5 22.5 7.5 20.5 2.5 20.5-2.5 22.5-7.5 21.5-9.5 23.5-13 21-13 21-14 17-11.5l267-174q35-23 66.5-62.5t31.5-73.5z" + } + }] +}; +exports.envelopeSquare = envelopeSquare; \ No newline at end of file diff --git a/dist/fa/envira.js b/dist/fa/envira.js new file mode 100644 index 000000000..48d7a5eb5 --- /dev/null +++ b/dist/fa/envira.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.envira = void 0; +var envira = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M896 816q-104-196-160-278-139-202-347-318-34-19-70-36-89-40-94-32t34 38l39 31q62 43 112.5 93.5t94.5 116.5 70.5 113 70.5 131q9 17 13 25 44 84 84 153t98 154 115.5 150 131 123.5 148.5 90.5q153 66 154 60 1-3-49-37-53-36-81-57-77-58-179-211t-185-310zM549 1359q-76-60-132.5-125t-98-143.5-71-154.5-58.5-186-52-209-60.5-252-76.5-289q273 0 497.5 36t379 92 271 144.5 185.5 172.5 110 198.5 56 199.5 12.5 198.5-9.5 173-20 143.5-13 107l323 327h-104l-281-285q-22 2-91.5 14t-121.5 19-138 6-160.5-17-167.5-59-179-111z" + } + }] +}; +exports.envira = envira; \ No newline at end of file diff --git a/dist/fa/eraser.js b/dist/fa/eraser.js new file mode 100644 index 000000000..8d0c4eeee --- /dev/null +++ b/dist/fa/eraser.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.eraser = void 0; +var eraser = { + "viewBox": "0 0 1920 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M896 1408l336-384h-768l-336 384h768zM1909 331q15 34 9.5 71.5t-30.5 65.5l-896 1024q-38 44-96 44h-768q-38 0-69.5-20.5t-47.5-54.5q-15-34-9.5-71.5t30.5-65.5l896-1024q38-44 96-44h768q38 0 69.5 20.5t47.5 54.5z" + } + }] +}; +exports.eraser = eraser; \ No newline at end of file diff --git a/dist/fa/etsy.js b/dist/fa/etsy.js new file mode 100644 index 000000000..c2fcf3c2c --- /dev/null +++ b/dist/fa/etsy.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.etsy = void 0; +var etsy = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M518 183v655q103 1 191.5-1.5t125.5-5.5l37-3q68-2 90.5-24.5t39.5-94.5l33-142h103l-14 322 7 319h-103l-29-127q-15-68-45-93t-84-26q-87-8-352-8v556q0 78 43.5 115.5t133.5 37.5h357q35 0 59.5-2t55-7.5 54-18 48.5-32 46-50.5 39-73l93-216h89q-6 37-31.5 252t-30.5 276q-146-5-263.5-8t-162.5-4h-44-628l-376 12v-102l127-25q67-13 91.5-37t25.5-79l8-643q3-402-8-645-2-61-25.5-84t-91.5-36l-127-24v-102l376 12h702q139 0 374-27-6 68-14 194.5t-12 219.5l-5 92h-93l-32-124q-31-121-74-179.5t-113-58.5h-548q-28 0-35.5 8.5t-7.5 30.5z" + } + }] +}; +exports.etsy = etsy; \ No newline at end of file diff --git a/dist/fa/eur.js b/dist/fa/eur.js new file mode 100644 index 000000000..7592f8d9b --- /dev/null +++ b/dist/fa/eur.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.eur = void 0; +var eur = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M976 1307l35 159q3 12-3 22.5t-17 14.5l-5 1q-4 2-10.5 3.5t-16 4.5-21.5 5.5-25.5 5-30 5-33.5 4.5-36.5 3-38.5 1q-234 0-409-130.5t-238-351.5h-95q-13 0-22.5-9.5t-9.5-22.5v-113q0-13 9.5-22.5t22.5-9.5h66q-2-57 1-105h-67q-14 0-23-9t-9-23v-114q0-14 9-23t23-9h98q67-210 243.5-338t400.5-128q102 0 194 23 11 3 20 15 6 11 3 24l-43 159q-3 13-14 19.5t-24 2.5l-4-1q-4-1-11.5-2.5l-17.5-3.5t-22.5-3.5-26-3-29-2.5-29.5-1q-126 0-226 64t-150 176h468q16 0 25 12 10 12 7 26l-24 114q-5 26-32 26h-488q-3 37 0 105h459q15 0 25 12 9 12 6 27l-24 112q-2 11-11 18.5t-20 7.5h-387q48 117 149.5 185.5t228.5 68.5q18 0 36-1.5t33.5-3.5 29.5-4.5 24.5-5 18.5-4.5l12-3 5-2q13-5 26 2 12 7 15 21z" + } + }] +}; +exports.eur = eur; \ No newline at end of file diff --git a/dist/fa/euro.js b/dist/fa/euro.js new file mode 100644 index 000000000..0d1e5c5aa --- /dev/null +++ b/dist/fa/euro.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.euro = void 0; +var euro = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M976 1307l35 159q3 12-3 22.5t-17 14.5l-5 1q-4 2-10.5 3.5t-16 4.5-21.5 5.5-25.5 5-30 5-33.5 4.5-36.5 3-38.5 1q-234 0-409-130.5t-238-351.5h-95q-13 0-22.5-9.5t-9.5-22.5v-113q0-13 9.5-22.5t22.5-9.5h66q-2-57 1-105h-67q-14 0-23-9t-9-23v-114q0-14 9-23t23-9h98q67-210 243.5-338t400.5-128q102 0 194 23 11 3 20 15 6 11 3 24l-43 159q-3 13-14 19.5t-24 2.5l-4-1q-4-1-11.5-2.5l-17.5-3.5t-22.5-3.5-26-3-29-2.5-29.5-1q-126 0-226 64t-150 176h468q16 0 25 12 10 12 7 26l-24 114q-5 26-32 26h-488q-3 37 0 105h459q15 0 25 12 9 12 6 27l-24 112q-2 11-11 18.5t-20 7.5h-387q48 117 149.5 185.5t228.5 68.5q18 0 36-1.5t33.5-3.5 29.5-4.5 24.5-5 18.5-4.5l12-3 5-2q13-5 26 2 12 7 15 21z" + } + }] +}; +exports.euro = euro; \ No newline at end of file diff --git a/dist/fa/exchange.js b/dist/fa/exchange.js new file mode 100644 index 000000000..122846867 --- /dev/null +++ b/dist/fa/exchange.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.exchange = void 0; +var exchange = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1792 1184v192q0 13-9.5 22.5t-22.5 9.5h-1376v192q0 13-9.5 22.5t-22.5 9.5q-12 0-24-10l-319-320q-9-9-9-22 0-14 9-23l320-320q9-9 23-9 13 0 22.5 9.5t9.5 22.5v192h1376q13 0 22.5 9.5t9.5 22.5zM1792 640q0 14-9 23l-320 320q-9 9-23 9-13 0-22.5-9.5t-9.5-22.5v-192h-1376q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1376v-192q0-14 9-23t23-9q12 0 24 10l319 319q9 9 9 23z" + } + }] +}; +exports.exchange = exchange; \ No newline at end of file diff --git a/dist/fa/exclamation.js b/dist/fa/exclamation.js new file mode 100644 index 000000000..d6b87dba2 --- /dev/null +++ b/dist/fa/exclamation.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.exclamation = void 0; +var exclamation = { + "viewBox": "0 0 640 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M512 1248v224q0 26-19 45t-45 19h-256q-26 0-45-19t-19-45v-224q0-26 19-45t45-19h256q26 0 45 19t19 45zM542 192l-28 768q-1 26-20.5 45t-45.5 19h-256q-26 0-45.5-19t-20.5-45l-28-768q-1-26 17.5-45t44.5-19h320q26 0 44.5 19t17.5 45z" + } + }] +}; +exports.exclamation = exclamation; \ No newline at end of file diff --git a/dist/fa/exclamationCircle.js b/dist/fa/exclamationCircle.js new file mode 100644 index 000000000..474b6b630 --- /dev/null +++ b/dist/fa/exclamationCircle.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.exclamationCircle = void 0; +var exclamationCircle = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M768 128q209 0 385.5 103t279.5 279.5 103 385.5-103 385.5-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103zM896 1375v-190q0-14-9-23.5t-22-9.5h-192q-13 0-23 10t-10 23v190q0 13 10 23t23 10h192q13 0 22-9.5t9-23.5zM894 1031l18-621q0-12-10-18-10-8-24-8h-220q-14 0-24 8-10 6-10 18l17 621q0 10 10 17.5t24 7.5h185q14 0 23.5-7.5t10.5-17.5z" + } + }] +}; +exports.exclamationCircle = exclamationCircle; \ No newline at end of file diff --git a/dist/fa/exclamationTriangle.js b/dist/fa/exclamationTriangle.js new file mode 100644 index 000000000..68c534f47 --- /dev/null +++ b/dist/fa/exclamationTriangle.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.exclamationTriangle = void 0; +var exclamationTriangle = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 1375v-190q0-14-9.5-23.5t-22.5-9.5h-192q-13 0-22.5 9.5t-9.5 23.5v190q0 14 9.5 23.5t22.5 9.5h192q13 0 22.5-9.5t9.5-23.5zM1022 1001l18-459q0-12-10-19-13-11-24-11h-220q-11 0-24 11-10 7-10 21l17 457q0 10 10 16.5t24 6.5h185q14 0 23.5-6.5t10.5-16.5zM1008 67l768 1408q35 63-2 126-17 29-46.5 46t-63.5 17h-1536q-34 0-63.5-17t-46.5-46q-37-63-2-126l768-1408q17-31 47-49t65-18 65 18 47 49z" + } + }] +}; +exports.exclamationTriangle = exclamationTriangle; \ No newline at end of file diff --git a/dist/fa/expand.js b/dist/fa/expand.js new file mode 100644 index 000000000..c9efd7081 --- /dev/null +++ b/dist/fa/expand.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.expand = void 0; +var expand = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M755 1056q0 13-10 23l-332 332 144 144q19 19 19 45t-19 45-45 19h-448q-26 0-45-19t-19-45v-448q0-26 19-45t45-19 45 19l144 144 332-332q10-10 23-10t23 10l114 114q10 10 10 23zM1536 192v448q0 26-19 45t-45 19-45-19l-144-144-332 332q-10 10-23 10t-23-10l-114-114q-10-10-10-23t10-23l332-332-144-144q-19-19-19-45t19-45 45-19h448q26 0 45 19t19 45z" + } + }] +}; +exports.expand = expand; \ No newline at end of file diff --git a/dist/fa/expeditedssl.js b/dist/fa/expeditedssl.js new file mode 100644 index 000000000..194d6fed5 --- /dev/null +++ b/dist/fa/expeditedssl.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.expeditedssl = void 0; +var expeditedssl = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M896 64q-169 0-323 66t-265.5 177.5-177.5 265.5-66 323 66 323 177.5 265.5 265.5 177.5 323 66 323-66 265.5-177.5 177.5-265.5 66-323-66-323-177.5-265.5-265.5-177.5-323-66zM896 0q182 0 348 71t286 191 191 286 71 348-71 348-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71zM496 832q16 0 16 16v480q0 16-16 16h-32q-16 0-16-16v-480q0-16 16-16h32zM896 896q53 0 90.5 37.5t37.5 90.5q0 35-17.5 64t-46.5 46v114q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-114q-29-17-46.5-46t-17.5-64q0-53 37.5-90.5t90.5-37.5zM896 128q209 0 385.5 103t279.5 279.5 103 385.5-103 385.5-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103zM544 608v96q0 14 9 23t23 9h64q14 0 23-9t9-23v-96q0-93 65.5-158.5t158.5-65.5 158.5 65.5 65.5 158.5v96q0 14 9 23t23 9h64q14 0 23-9t9-23v-96q0-146-103-249t-249-103-249 103-103 249zM1408 1344v-512q0-26-19-45t-45-19h-896q-26 0-45 19t-19 45v512q0 26 19 45t45 19h896q26 0 45-19t19-45z" + } + }] +}; +exports.expeditedssl = expeditedssl; \ No newline at end of file diff --git a/dist/fa/externalLink.js b/dist/fa/externalLink.js new file mode 100644 index 000000000..ae0425541 --- /dev/null +++ b/dist/fa/externalLink.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.externalLink = void 0; +var externalLink = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1408 928v320q0 119-84.5 203.5t-203.5 84.5h-832q-119 0-203.5-84.5t-84.5-203.5v-832q0-119 84.5-203.5t203.5-84.5h704q14 0 23 9t9 23v64q0 14-9 23t-23 9h-704q-66 0-113 47t-47 113v832q0 66 47 113t113 47h832q66 0 113-47t47-113v-320q0-14 9-23t23-9h64q14 0 23 9t9 23zM1792 64v512q0 26-19 45t-45 19-45-19l-176-176-652 652q-10 10-23 10t-23-10l-114-114q-10-10-10-23t10-23l652-652-176-176q-19-19-19-45t19-45 45-19h512q26 0 45 19t19 45z" + } + }] +}; +exports.externalLink = externalLink; \ No newline at end of file diff --git a/dist/fa/externalLinkSquare.js b/dist/fa/externalLinkSquare.js new file mode 100644 index 000000000..0e2ead5f7 --- /dev/null +++ b/dist/fa/externalLinkSquare.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.externalLinkSquare = void 0; +var externalLinkSquare = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1280 928v-480q0-26-19-45t-45-19h-480q-42 0-59 39-17 41 14 70l144 144-534 534q-19 19-19 45t19 45l102 102q19 19 45 19t45-19l534-534 144 144q18 19 45 19 12 0 25-5 39-17 39-59zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.externalLinkSquare = externalLinkSquare; \ No newline at end of file diff --git a/dist/fa/eye.js b/dist/fa/eye.js new file mode 100644 index 000000000..92d618b7d --- /dev/null +++ b/dist/fa/eye.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.eye = void 0; +var eye = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1664 960q-152-236-381-353 61 104 61 225 0 185-131.5 316.5t-316.5 131.5-316.5-131.5-131.5-316.5q0-121 61-225-229 117-381 353 133 205 333.5 326.5t434.5 121.5 434.5-121.5 333.5-326.5zM944 576q0-20-14-34t-34-14q-125 0-214.5 89.5t-89.5 214.5q0 20 14 34t34 14 34-14 14-34q0-86 61-147t147-61q20 0 34-14t14-34zM1792 960q0 34-20 69-140 230-376.5 368.5t-499.5 138.5-499.5-139-376.5-368q-20-35-20-69t20-69q140-229 376.5-368t499.5-139 499.5 139 376.5 368q20 35 20 69z" + } + }] +}; +exports.eye = eye; \ No newline at end of file diff --git a/dist/fa/eyeSlash.js b/dist/fa/eyeSlash.js new file mode 100644 index 000000000..b801b1f62 --- /dev/null +++ b/dist/fa/eyeSlash.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.eyeSlash = void 0; +var eyeSlash = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M555 1335l78-141q-87-63-136-159t-49-203q0-121 61-225-229 117-381 353 167 258 427 375zM944 576q0-20-14-34t-34-14q-125 0-214.5 89.5t-89.5 214.5q0 20 14 34t34 14 34-14 14-34q0-86 61-147t147-61q20 0 34-14t14-34zM1307 385q0 7-1 9-106 189-316 567t-315 566l-49 89q-10 16-28 16-12 0-134-70-16-10-16-28 0-12 44-87-143-65-263.5-173t-208.5-245q-20-31-20-69t20-69q153-235 380-371t496-136q89 0 180 17l54-97q10-16 28-16 5 0 18 6t31 15.5 33 18.5 31.5 18.5 19.5 11.5q16 10 16 27zM1344 832q0 139-79 253.5t-209 164.5l280-502q8 45 8 84zM1792 960q0 35-20 69-39 64-109 145-150 172-347.5 267t-419.5 95l74-132q212-18 392.5-137t301.5-307q-115-179-282-294l63-112q95 64 182.5 153t144.5 184q20 34 20 69z" + } + }] +}; +exports.eyeSlash = eyeSlash; \ No newline at end of file diff --git a/dist/fa/eyedropper.js b/dist/fa/eyedropper.js new file mode 100644 index 000000000..84d1aec31 --- /dev/null +++ b/dist/fa/eyedropper.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.eyedropper = void 0; +var eyedropper = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1698 94q94 94 94 226.5t-94 225.5l-225 223 104 104q10 10 10 23t-10 23l-210 210q-10 10-23 10t-23-10l-105-105-603 603q-37 37-90 37h-203l-256 128-64-64 128-256v-203q0-53 37-90l603-603-105-105q-10-10-10-23t10-23l210-210q10-10 23-10t23 10l104 104 223-225q93-94 225.5-94t226.5 94zM512 1472l576-576-192-192-576 576v192h192z" + } + }] +}; +exports.eyedropper = eyedropper; \ No newline at end of file diff --git a/dist/fa/fa.js b/dist/fa/fa.js new file mode 100644 index 000000000..70bd8cbea --- /dev/null +++ b/dist/fa/fa.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.fa = void 0; +var fa = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1536 512v839q0 48-49 62-174 52-338 52-73 0-215.5-29.5t-227.5-29.5q-164 0-370 48v338h-160v-1368q-63-25-101-81t-38-124q0-91 64-155t155-64 155 64 64 155q0 68-38 124t-101 81v68q190-44 343-44 99 0 198 15 14 2 111.5 22.5t149.5 20.5q77 0 165-18 11-2 80-21t89-19q26 0 45 19t19 45z" + } + }] +}; +exports.fa = fa; \ No newline at end of file diff --git a/dist/fa/facebook.js b/dist/fa/facebook.js new file mode 100644 index 000000000..5ca3605d9 --- /dev/null +++ b/dist/fa/facebook.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.facebook = void 0; +var facebook = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M959 12v264h-157q-86 0-116 36t-30 108v189h293l-39 296h-254v759h-306v-759h-255v-296h255v-218q0-186 104-288.5t277-102.5q147 0 228 12z" + } + }] +}; +exports.facebook = facebook; \ No newline at end of file diff --git a/dist/fa/facebookF.js b/dist/fa/facebookF.js new file mode 100644 index 000000000..5ec59514c --- /dev/null +++ b/dist/fa/facebookF.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.facebookF = void 0; +var facebookF = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M959 12v264h-157q-86 0-116 36t-30 108v189h293l-39 296h-254v759h-306v-759h-255v-296h255v-218q0-186 104-288.5t277-102.5q147 0 228 12z" + } + }] +}; +exports.facebookF = facebookF; \ No newline at end of file diff --git a/dist/fa/facebookOfficial.js b/dist/fa/facebookOfficial.js new file mode 100644 index 000000000..ac775d6df --- /dev/null +++ b/dist/fa/facebookOfficial.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.facebookOfficial = void 0; +var facebookOfficial = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1451 128q35 0 60 25t25 60v1366q0 35-25 60t-60 25h-391v-595h199l30-232h-229v-148q0-56 23.5-84t91.5-28l122-1v-207q-63-9-178-9-136 0-217.5 80t-81.5 226v171h-200v232h200v595h-735q-35 0-60-25t-25-60v-1366q0-35 25-60t60-25h1366z" + } + }] +}; +exports.facebookOfficial = facebookOfficial; \ No newline at end of file diff --git a/dist/fa/facebookSquare.js b/dist/fa/facebookSquare.js new file mode 100644 index 000000000..385fcc141 --- /dev/null +++ b/dist/fa/facebookSquare.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.facebookSquare = void 0; +var facebookSquare = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1248 128q119 0 203.5 84.5t84.5 203.5v960q0 119-84.5 203.5t-203.5 84.5h-188v-595h199l30-232h-229v-148q0-56 23.5-84t91.5-28l122-1v-207q-63-9-178-9-136 0-217.5 80t-81.5 226v171h-200v232h200v595h-532q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960z" + } + }] +}; +exports.facebookSquare = facebookSquare; \ No newline at end of file diff --git a/dist/fa/fastBackward.js b/dist/fa/fastBackward.js new file mode 100644 index 000000000..052ea42c7 --- /dev/null +++ b/dist/fa/fastBackward.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.fastBackward = void 0; +var fastBackward = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1747 141q19-19 32-13t13 32v1472q0 26-13 32t-32-13l-710-710q-9-9-13-19v710q0 26-13 32t-32-13l-710-710q-9-9-13-19v678q0 26-19 45t-45 19h-128q-26 0-45-19t-19-45v-1408q0-26 19-45t45-19h128q26 0 45 19t19 45v678q4-10 13-19l710-710q19-19 32-13t13 32v710q4-10 13-19z" + } + }] +}; +exports.fastBackward = fastBackward; \ No newline at end of file diff --git a/dist/fa/fastForward.js b/dist/fa/fastForward.js new file mode 100644 index 000000000..c2f7dad60 --- /dev/null +++ b/dist/fa/fastForward.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.fastForward = void 0; +var fastForward = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M45 1651q-19 19-32 13t-13-32v-1472q0-26 13-32t32 13l710 710q9 9 13 19v-710q0-26 13-32t32 13l710 710q9 9 13 19v-678q0-26 19-45t45-19h128q26 0 45 19t19 45v1408q0 26-19 45t-45 19h-128q-26 0-45-19t-19-45v-678q-4 10-13 19l-710 710q-19 19-32 13t-13-32v-710q-4 10-13 19z" + } + }] +}; +exports.fastForward = fastForward; \ No newline at end of file diff --git a/dist/fa/fax.js b/dist/fa/fax.js new file mode 100644 index 000000000..149ef7594 --- /dev/null +++ b/dist/fa/fax.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.fax = void 0; +var fax = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M288 384q66 0 113 47t47 113v1088q0 66-47 113t-113 47h-128q-66 0-113-47t-47-113v-1088q0-66 47-113t113-47h128zM1664 547q58 34 93 93t35 128v768q0 106-75 181t-181 75h-864q-66 0-113-47t-47-113v-1536q0-40 28-68t68-28h672q40 0 88 20t76 48l152 152q28 28 48 76t20 88v163zM928 1536v-128q0-14-9-23t-23-9h-128q-14 0-23 9t-9 23v128q0 14 9 23t23 9h128q14 0 23-9t9-23zM928 1280v-128q0-14-9-23t-23-9h-128q-14 0-23 9t-9 23v128q0 14 9 23t23 9h128q14 0 23-9t9-23zM928 1024v-128q0-14-9-23t-23-9h-128q-14 0-23 9t-9 23v128q0 14 9 23t23 9h128q14 0 23-9t9-23zM1184 1536v-128q0-14-9-23t-23-9h-128q-14 0-23 9t-9 23v128q0 14 9 23t23 9h128q14 0 23-9t9-23zM1184 1280v-128q0-14-9-23t-23-9h-128q-14 0-23 9t-9 23v128q0 14 9 23t23 9h128q14 0 23-9t9-23zM1184 1024v-128q0-14-9-23t-23-9h-128q-14 0-23 9t-9 23v128q0 14 9 23t23 9h128q14 0 23-9t9-23zM1440 1536v-128q0-14-9-23t-23-9h-128q-14 0-23 9t-9 23v128q0 14 9 23t23 9h128q14 0 23-9t9-23zM1440 1280v-128q0-14-9-23t-23-9h-128q-14 0-23 9t-9 23v128q0 14 9 23t23 9h128q14 0 23-9t9-23zM1440 1024v-128q0-14-9-23t-23-9h-128q-14 0-23 9t-9 23v128q0 14 9 23t23 9h128q14 0 23-9t9-23zM1536 640v-256h-160q-40 0-68-28t-28-68v-160h-640v512h896z" + } + }] +}; +exports.fax = fax; \ No newline at end of file diff --git a/dist/fa/feed.js b/dist/fa/feed.js new file mode 100644 index 000000000..2137663f9 --- /dev/null +++ b/dist/fa/feed.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.feed = void 0; +var feed = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M384 1344q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM896 1467q2 28-17 48-18 21-47 21h-135q-25 0-43-16.5t-20-41.5q-22-229-184.5-391.5t-391.5-184.5q-25-2-41.5-20t-16.5-43v-135q0-29 21-47 17-17 43-17h5q160 13 306 80.5t259 181.5q114 113 181.5 259t80.5 306zM1408 1469q2 27-18 47-18 20-46 20h-143q-26 0-44.5-17.5t-19.5-42.5q-12-215-101-408.5t-231.5-336-336-231.5-408.5-102q-25-1-42.5-19.5t-17.5-43.5v-143q0-28 20-46 18-18 44-18h3q262 13 501.5 120t425.5 294q187 186 294 425.5t120 501.5z" + } + }] +}; +exports.feed = feed; \ No newline at end of file diff --git a/dist/fa/female.js b/dist/fa/female.js new file mode 100644 index 000000000..14825ee2a --- /dev/null +++ b/dist/fa/female.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.female = void 0; +var female = { + "viewBox": "0 0 1280 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1280 1056q0 40-28 68t-68 28q-51 0-80-43l-227-341h-45v132l247 411q9 15 9 33 0 26-19 45t-45 19h-192v272q0 46-33 79t-79 33h-160q-46 0-79-33t-33-79v-272h-192q-26 0-45-19t-19-45q0-18 9-33l247-411v-132h-45l-227 341q-29 43-80 43-40 0-68-28t-28-68q0-29 16-53l256-384q73-107 176-107h384q103 0 176 107l256 384q16 24 16 53zM864 256q0 93-65.5 158.5t-158.5 65.5-158.5-65.5-65.5-158.5 65.5-158.5 158.5-65.5 158.5 65.5 65.5 158.5z" + } + }] +}; +exports.female = female; \ No newline at end of file diff --git a/dist/fa/fighterJet.js b/dist/fa/fighterJet.js new file mode 100644 index 000000000..b33cc6060 --- /dev/null +++ b/dist/fa/fighterJet.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.fighterJet = void 0; +var fighterJet = { + "viewBox": "0 0 1920 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1920 960q-1 32-288 96l-352 32-224 64h-64l-293 352h69q26 0 45 4.5t19 11.5-19 11.5-45 4.5h-96-160-64v-32h64v-416h-160l-192 224h-96l-32-32v-192h32v-32h128v-8l-192-24v-128l192-24v-8h-128v-32h-32v-192l32-32h96l192 224h160v-416h-64v-32h64 160 96q26 0 45 4.5t19 11.5-19 11.5-45 4.5h-69l293 352h64l224 64 352 32q128 28 200 52t80 34z" + } + }] +}; +exports.fighterJet = fighterJet; \ No newline at end of file diff --git a/dist/fa/file.js b/dist/fa/file.js new file mode 100644 index 000000000..b31304464 --- /dev/null +++ b/dist/fa/file.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.file = void 0; +var file = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 512v-472q22 14 36 28l408 408q14 14 28 36h-472zM896 544q0 40 28 68t68 28h544v1056q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h800v544z" + } + }] +}; +exports.file = file; \ No newline at end of file diff --git a/dist/fa/fileArchiveO.js b/dist/fa/fileArchiveO.js new file mode 100644 index 000000000..854984d2d --- /dev/null +++ b/dist/fa/fileArchiveO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.fileArchiveO = void 0; +var fileArchiveO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 384v-128h-128v128h128zM768 512v-128h-128v128h128zM640 640v-128h-128v128h128zM768 768v-128h-128v128h128zM1468 380q28 28 48 76t20 88v1152q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h896q40 0 88 20t76 48zM1024 136v376h376q-10-29-22-41l-313-313q-12-12-41-22zM1408 1664v-1024h-416q-40 0-68-28t-28-68v-416h-128v128h-128v-128h-512v1536h1280zM781 943l107 349q8 27 8 52 0 83-72.5 137.5t-183.5 54.5-183.5-54.5-72.5-137.5q0-25 8-52 21-63 120-396v-128h128v128h79q22 0 39 13t23 34zM640 1408q53 0 90.5-19t37.5-45-37.5-45-90.5-19-90.5 19-37.5 45 37.5 45 90.5 19z" + } + }] +}; +exports.fileArchiveO = fileArchiveO; \ No newline at end of file diff --git a/dist/fa/fileAudioO.js b/dist/fa/fileAudioO.js new file mode 100644 index 000000000..4df6c351d --- /dev/null +++ b/dist/fa/fileAudioO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.fileAudioO = void 0; +var fileAudioO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1468 380q28 28 48 76t20 88v1152q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h896q40 0 88 20t76 48zM1024 136v376h376q-10-29-22-41l-313-313q-12-12-41-22zM1408 1664v-1024h-416q-40 0-68-28t-28-68v-416h-768v1536h1280zM620 850q20 8 20 30v544q0 22-20 30-8 2-12 2-12 0-23-9l-166-167h-131q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h131l166-167q16-15 35-7zM1037 1539q31 0 50-24 129-159 129-363t-129-363q-16-21-43-24t-47 14q-21 17-23.5 43.5t14.5 47.5q100 123 100 282t-100 282q-17 21-14.5 47.5t23.5 42.5q18 15 40 15zM826 1391q27 0 47-20 87-93 87-219t-87-219q-18-19-45-20t-46 17-20 44.5 18 46.5q52 57 52 131t-52 131q-19 20-18 46.5t20 44.5q20 17 44 17z" + } + }] +}; +exports.fileAudioO = fileAudioO; \ No newline at end of file diff --git a/dist/fa/fileCodeO.js b/dist/fa/fileCodeO.js new file mode 100644 index 000000000..3c9ca0f61 --- /dev/null +++ b/dist/fa/fileCodeO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.fileCodeO = void 0; +var fileCodeO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1468 380q28 28 48 76t20 88v1152q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h896q40 0 88 20t76 48zM1024 136v376h376q-10-29-22-41l-313-313q-12-12-41-22zM1408 1664v-1024h-416q-40 0-68-28t-28-68v-416h-768v1536h1280zM480 768q8-11 21-12.5t24 6.5l51 38q11 8 12.5 21t-6.5 24l-182 243 182 243q8 11 6.5 24t-12.5 21l-51 38q-11 8-24 6.5t-21-12.5l-226-301q-14-19 0-38zM1282 1069q14 19 0 38l-226 301q-8 11-21 12.5t-24-6.5l-51-38q-11-8-12.5-21t6.5-24l182-243-182-243q-8-11-6.5-24t12.5-21l51-38q11-8 24-6.5t21 12.5zM662 1530q-13-2-20.5-13t-5.5-24l138-831q2-13 13-20.5t24-5.5l63 10q13 2 20.5 13t5.5 24l-138 831q-2 13-13 20.5t-24 5.5z" + } + }] +}; +exports.fileCodeO = fileCodeO; \ No newline at end of file diff --git a/dist/fa/fileExcelO.js b/dist/fa/fileExcelO.js new file mode 100644 index 000000000..674ed6355 --- /dev/null +++ b/dist/fa/fileExcelO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.fileExcelO = void 0; +var fileExcelO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1468 380q28 28 48 76t20 88v1152q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h896q40 0 88 20t76 48zM1024 136v376h376q-10-29-22-41l-313-313q-12-12-41-22zM1408 1664v-1024h-416q-40 0-68-28t-28-68v-416h-768v1536h1280zM429 1430v106h281v-106h-75l103-161q5-7 10-16.5t7.5-13.5 3.5-4h2q1 4 5 10 2 4 4.5 7.5t6 8 6.5 8.5l107 161h-76v106h291v-106h-68l-192-273 195-282h67v-107h-279v107h74l-103 159q-4 7-10 16.5t-9 13.5l-2 3h-2q-1-4-5-10-6-11-17-23l-106-159h76v-107h-290v107h68l189 272-194 283h-68z" + } + }] +}; +exports.fileExcelO = fileExcelO; \ No newline at end of file diff --git a/dist/fa/fileImageO.js b/dist/fa/fileImageO.js new file mode 100644 index 000000000..f1a256a16 --- /dev/null +++ b/dist/fa/fileImageO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.fileImageO = void 0; +var fileImageO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1468 380q28 28 48 76t20 88v1152q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h896q40 0 88 20t76 48zM1024 136v376h376q-10-29-22-41l-313-313q-12-12-41-22zM1408 1664v-1024h-416q-40 0-68-28t-28-68v-416h-768v1536h1280zM1280 1216v320h-1024v-192l192-192 128 128 384-384zM448 1024q-80 0-136-56t-56-136 56-136 136-56 136 56 56 136-56 136-136 56z" + } + }] +}; +exports.fileImageO = fileImageO; \ No newline at end of file diff --git a/dist/fa/fileMovieO.js b/dist/fa/fileMovieO.js new file mode 100644 index 000000000..93c0e8dff --- /dev/null +++ b/dist/fa/fileMovieO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.fileMovieO = void 0; +var fileMovieO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1468 380q28 28 48 76t20 88v1152q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h896q40 0 88 20t76 48zM1024 136v376h376q-10-29-22-41l-313-313q-12-12-41-22zM1408 1664v-1024h-416q-40 0-68-28t-28-68v-416h-768v1536h1280zM768 768q52 0 90 38t38 90v384q0 52-38 90t-90 38h-384q-52 0-90-38t-38-90v-384q0-52 38-90t90-38h384zM1260 770q20 8 20 30v576q0 22-20 30-8 2-12 2-14 0-23-9l-265-266v-90l265-266q9-9 23-9 4 0 12 2z" + } + }] +}; +exports.fileMovieO = fileMovieO; \ No newline at end of file diff --git a/dist/fa/fileO.js b/dist/fa/fileO.js new file mode 100644 index 000000000..490db446e --- /dev/null +++ b/dist/fa/fileO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.fileO = void 0; +var fileO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1468 380q28 28 48 76t20 88v1152q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h896q40 0 88 20t76 48zM1024 136v376h376q-10-29-22-41l-313-313q-12-12-41-22zM1408 1664v-1024h-416q-40 0-68-28t-28-68v-416h-768v1536h1280z" + } + }] +}; +exports.fileO = fileO; \ No newline at end of file diff --git a/dist/fa/filePdfO.js b/dist/fa/filePdfO.js new file mode 100644 index 000000000..a2d9680d4 --- /dev/null +++ b/dist/fa/filePdfO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.filePdfO = void 0; +var filePdfO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1468 380q28 28 48 76t20 88v1152q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h896q40 0 88 20t76 48zM1024 136v376h376q-10-29-22-41l-313-313q-12-12-41-22zM1408 1664v-1024h-416q-40 0-68-28t-28-68v-416h-768v1536h1280zM894 1071q33 26 84 56 59-7 117-7 147 0 177 49 16 22 2 52 0 1-1 2l-2 2v1q-6 38-71 38-48 0-115-20t-130-53q-221 24-392 83-153 262-242 262-15 0-28-7l-24-12q-1-1-6-5-10-10-6-36 9-40 56-91.5t132-96.5q14-9 23 6 2 2 2 4 52-85 107-197 68-136 104-262-24-82-30.5-159.5t6.5-127.5q11-40 42-40h21 1q23 0 35 15 18 21 9 68-2 6-4 8 1 3 1 8v30q-2 123-14 192 55 164 146 238zM318 1482q52-24 137-158-51 40-87.5 84t-49.5 74zM716 562q-15 42-2 132 1-7 7-44 0-3 7-43 1-4 4-8-1-1-1-2-1-2-1-3-1-22-13-36 0 1-1 2v2zM592 1223q135-54 284-81-2-1-13-9.5t-16-13.5q-76-67-127-176-27 86-83 197-30 56-45 83zM1238 1207q-24-24-140-24 76 28 124 28 14 0 18-1 0-1-2-3z" + } + }] +}; +exports.filePdfO = filePdfO; \ No newline at end of file diff --git a/dist/fa/filePhotoO.js b/dist/fa/filePhotoO.js new file mode 100644 index 000000000..6c17134ac --- /dev/null +++ b/dist/fa/filePhotoO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.filePhotoO = void 0; +var filePhotoO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1468 380q28 28 48 76t20 88v1152q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h896q40 0 88 20t76 48zM1024 136v376h376q-10-29-22-41l-313-313q-12-12-41-22zM1408 1664v-1024h-416q-40 0-68-28t-28-68v-416h-768v1536h1280zM1280 1216v320h-1024v-192l192-192 128 128 384-384zM448 1024q-80 0-136-56t-56-136 56-136 136-56 136 56 56 136-56 136-136 56z" + } + }] +}; +exports.filePhotoO = filePhotoO; \ No newline at end of file diff --git a/dist/fa/filePictureO.js b/dist/fa/filePictureO.js new file mode 100644 index 000000000..cfc8689af --- /dev/null +++ b/dist/fa/filePictureO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.filePictureO = void 0; +var filePictureO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1468 380q28 28 48 76t20 88v1152q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h896q40 0 88 20t76 48zM1024 136v376h376q-10-29-22-41l-313-313q-12-12-41-22zM1408 1664v-1024h-416q-40 0-68-28t-28-68v-416h-768v1536h1280zM1280 1216v320h-1024v-192l192-192 128 128 384-384zM448 1024q-80 0-136-56t-56-136 56-136 136-56 136 56 56 136-56 136-136 56z" + } + }] +}; +exports.filePictureO = filePictureO; \ No newline at end of file diff --git a/dist/fa/filePowerpointO.js b/dist/fa/filePowerpointO.js new file mode 100644 index 000000000..0d401d12a --- /dev/null +++ b/dist/fa/filePowerpointO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.filePowerpointO = void 0; +var filePowerpointO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1468 380q28 28 48 76t20 88v1152q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h896q40 0 88 20t76 48zM1024 136v376h376q-10-29-22-41l-313-313q-12-12-41-22zM1408 1664v-1024h-416q-40 0-68-28t-28-68v-416h-768v1536h1280zM416 1430v106h327v-106h-93v-167h137q76 0 118-15 67-23 106.5-87t39.5-146q0-81-37-141t-100-87q-48-19-130-19h-368v107h92v555h-92zM769 1150h-119v-268h120q52 0 83 18 56 33 56 115 0 89-62 120-31 15-78 15z" + } + }] +}; +exports.filePowerpointO = filePowerpointO; \ No newline at end of file diff --git a/dist/fa/fileSoundO.js b/dist/fa/fileSoundO.js new file mode 100644 index 000000000..01b52cf38 --- /dev/null +++ b/dist/fa/fileSoundO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.fileSoundO = void 0; +var fileSoundO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1468 380q28 28 48 76t20 88v1152q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h896q40 0 88 20t76 48zM1024 136v376h376q-10-29-22-41l-313-313q-12-12-41-22zM1408 1664v-1024h-416q-40 0-68-28t-28-68v-416h-768v1536h1280zM620 850q20 8 20 30v544q0 22-20 30-8 2-12 2-12 0-23-9l-166-167h-131q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h131l166-167q16-15 35-7zM1037 1539q31 0 50-24 129-159 129-363t-129-363q-16-21-43-24t-47 14q-21 17-23.5 43.5t14.5 47.5q100 123 100 282t-100 282q-17 21-14.5 47.5t23.5 42.5q18 15 40 15zM826 1391q27 0 47-20 87-93 87-219t-87-219q-18-19-45-20t-46 17-20 44.5 18 46.5q52 57 52 131t-52 131q-19 20-18 46.5t20 44.5q20 17 44 17z" + } + }] +}; +exports.fileSoundO = fileSoundO; \ No newline at end of file diff --git a/dist/fa/fileText.js b/dist/fa/fileText.js new file mode 100644 index 000000000..5bc94eb36 --- /dev/null +++ b/dist/fa/fileText.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.fileText = void 0; +var fileText = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1468 476q14 14 28 36h-472v-472q22 14 36 28zM992 640h544v1056q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h800v544q0 40 28 68t68 28zM1152 1376v-64q0-14-9-23t-23-9h-704q-14 0-23 9t-9 23v64q0 14 9 23t23 9h704q14 0 23-9t9-23zM1152 1120v-64q0-14-9-23t-23-9h-704q-14 0-23 9t-9 23v64q0 14 9 23t23 9h704q14 0 23-9t9-23zM1152 864v-64q0-14-9-23t-23-9h-704q-14 0-23 9t-9 23v64q0 14 9 23t23 9h704q14 0 23-9t9-23z" + } + }] +}; +exports.fileText = fileText; \ No newline at end of file diff --git a/dist/fa/fileTextO.js b/dist/fa/fileTextO.js new file mode 100644 index 000000000..d751b2d7a --- /dev/null +++ b/dist/fa/fileTextO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.fileTextO = void 0; +var fileTextO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1468 380q28 28 48 76t20 88v1152q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h896q40 0 88 20t76 48zM1024 136v376h376q-10-29-22-41l-313-313q-12-12-41-22zM1408 1664v-1024h-416q-40 0-68-28t-28-68v-416h-768v1536h1280zM384 800q0-14 9-23t23-9h704q14 0 23 9t9 23v64q0 14-9 23t-23 9h-704q-14 0-23-9t-9-23v-64zM1120 1024q14 0 23 9t9 23v64q0 14-9 23t-23 9h-704q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h704zM1120 1280q14 0 23 9t9 23v64q0 14-9 23t-23 9h-704q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h704z" + } + }] +}; +exports.fileTextO = fileTextO; \ No newline at end of file diff --git a/dist/fa/fileVideoO.js b/dist/fa/fileVideoO.js new file mode 100644 index 000000000..701a6fe2d --- /dev/null +++ b/dist/fa/fileVideoO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.fileVideoO = void 0; +var fileVideoO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1468 380q28 28 48 76t20 88v1152q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h896q40 0 88 20t76 48zM1024 136v376h376q-10-29-22-41l-313-313q-12-12-41-22zM1408 1664v-1024h-416q-40 0-68-28t-28-68v-416h-768v1536h1280zM768 768q52 0 90 38t38 90v384q0 52-38 90t-90 38h-384q-52 0-90-38t-38-90v-384q0-52 38-90t90-38h384zM1260 770q20 8 20 30v576q0 22-20 30-8 2-12 2-14 0-23-9l-265-266v-90l265-266q9-9 23-9 4 0 12 2z" + } + }] +}; +exports.fileVideoO = fileVideoO; \ No newline at end of file diff --git a/dist/fa/fileWordO.js b/dist/fa/fileWordO.js new file mode 100644 index 000000000..00da92e72 --- /dev/null +++ b/dist/fa/fileWordO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.fileWordO = void 0; +var fileWordO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1468 380q28 28 48 76t20 88v1152q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h896q40 0 88 20t76 48zM1024 136v376h376q-10-29-22-41l-313-313q-12-12-41-22zM1408 1664v-1024h-416q-40 0-68-28t-28-68v-416h-768v1536h1280zM233 768v107h70l164 661h159l128-485q7-20 10-46 2-16 2-24h4l3 24q1 3 3.5 20t5.5 26l128 485h159l164-661h70v-107h-300v107h90l-99 438q-5 20-7 46l-2 21h-4q0-3-0.5-6.5t-1.5-8-1-6.5q-1-5-4-21t-5-25l-144-545h-114l-144 545q-2 9-4.5 24.5t-3.5 21.5l-4 21h-4l-2-21q-2-26-7-46l-99-438h90v-107h-300z" + } + }] +}; +exports.fileWordO = fileWordO; \ No newline at end of file diff --git a/dist/fa/fileZipO.js b/dist/fa/fileZipO.js new file mode 100644 index 000000000..c9bf0f083 --- /dev/null +++ b/dist/fa/fileZipO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.fileZipO = void 0; +var fileZipO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 384v-128h-128v128h128zM768 512v-128h-128v128h128zM640 640v-128h-128v128h128zM768 768v-128h-128v128h128zM1468 380q28 28 48 76t20 88v1152q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h896q40 0 88 20t76 48zM1024 136v376h376q-10-29-22-41l-313-313q-12-12-41-22zM1408 1664v-1024h-416q-40 0-68-28t-28-68v-416h-128v128h-128v-128h-512v1536h1280zM781 943l107 349q8 27 8 52 0 83-72.5 137.5t-183.5 54.5-183.5-54.5-72.5-137.5q0-25 8-52 21-63 120-396v-128h128v128h79q22 0 39 13t23 34zM640 1408q53 0 90.5-19t37.5-45-37.5-45-90.5-19-90.5 19-37.5 45 37.5 45 90.5 19z" + } + }] +}; +exports.fileZipO = fileZipO; \ No newline at end of file diff --git a/dist/fa/filesO.js b/dist/fa/filesO.js new file mode 100644 index 000000000..22c297c60 --- /dev/null +++ b/dist/fa/filesO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.filesO = void 0; +var filesO = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1696 384q40 0 68 28t28 68v1216q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-288h-544q-40 0-68-28t-28-68v-672q0-40 20-88t48-76l408-408q28-28 76-48t88-20h416q40 0 68 28t28 68v328q68-40 128-40h416zM1152 597l-299 299h299v-299zM512 213l-299 299h299v-299zM708 860l316-316v-416h-384v416q0 40-28 68t-68 28h-416v640h512v-256q0-40 20-88t48-76zM1664 1664v-1152h-384v416q0 40-28 68t-68 28h-416v640h896z" + } + }] +}; +exports.filesO = filesO; \ No newline at end of file diff --git a/dist/fa/film.js b/dist/fa/film.js new file mode 100644 index 000000000..11dbdc8ba --- /dev/null +++ b/dist/fa/film.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.film = void 0; +var film = { + "viewBox": "0 0 1920 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M384 1600v-128q0-26-19-45t-45-19h-128q-26 0-45 19t-19 45v128q0 26 19 45t45 19h128q26 0 45-19t19-45zM384 1216v-128q0-26-19-45t-45-19h-128q-26 0-45 19t-19 45v128q0 26 19 45t45 19h128q26 0 45-19t19-45zM384 832v-128q0-26-19-45t-45-19h-128q-26 0-45 19t-19 45v128q0 26 19 45t45 19h128q26 0 45-19t19-45zM1408 1600v-512q0-26-19-45t-45-19h-768q-26 0-45 19t-19 45v512q0 26 19 45t45 19h768q26 0 45-19t19-45zM384 448v-128q0-26-19-45t-45-19h-128q-26 0-45 19t-19 45v128q0 26 19 45t45 19h128q26 0 45-19t19-45zM1792 1600v-128q0-26-19-45t-45-19h-128q-26 0-45 19t-19 45v128q0 26 19 45t45 19h128q26 0 45-19t19-45zM1408 832v-512q0-26-19-45t-45-19h-768q-26 0-45 19t-19 45v512q0 26 19 45t45 19h768q26 0 45-19t19-45zM1792 1216v-128q0-26-19-45t-45-19h-128q-26 0-45 19t-19 45v128q0 26 19 45t45 19h128q26 0 45-19t19-45zM1792 832v-128q0-26-19-45t-45-19h-128q-26 0-45 19t-19 45v128q0 26 19 45t45 19h128q26 0 45-19t19-45zM1792 448v-128q0-26-19-45t-45-19h-128q-26 0-45 19t-19 45v128q0 26 19 45t45 19h128q26 0 45-19t19-45zM1920 288v1344q0 66-47 113t-113 47h-1600q-66 0-113-47t-47-113v-1344q0-66 47-113t113-47h1600q66 0 113 47t47 113z" + } + }] +}; +exports.film = film; \ No newline at end of file diff --git a/dist/fa/filter.js b/dist/fa/filter.js new file mode 100644 index 000000000..d3e7366f7 --- /dev/null +++ b/dist/fa/filter.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.filter = void 0; +var filter = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1403 295q17 41-14 70l-493 493v742q0 42-39 59-13 5-25 5-27 0-45-19l-256-256q-19-19-19-45v-486l-493-493q-31-29-14-70 17-39 59-39h1280q42 0 59 39z" + } + }] +}; +exports.filter = filter; \ No newline at end of file diff --git a/dist/fa/fire.js b/dist/fa/fire.js new file mode 100644 index 000000000..54d825413 --- /dev/null +++ b/dist/fa/fire.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.fire = void 0; +var fire = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1408 1696v64q0 13-9.5 22.5t-22.5 9.5h-1344q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h1344q13 0 22.5 9.5t9.5 22.5zM1152 640q0 78-24.5 144t-64 112.5-87.5 88-96 77.5-87.5 72-64 81.5-24.5 96.5q0 96 67 224l-4-1 1 1q-90-41-160-83t-138.5-100-113.5-122.5-72.5-150.5-27.5-184q0-78 24.5-144t64-112.5 87.5-88 96-77.5 87.5-72 64-81.5 24.5-96.5q0-94-66-224l3 1-1-1q90 41 160 83t138.5 100 113.5 122.5 72.5 150.5 27.5 184z" + } + }] +}; +exports.fire = fire; \ No newline at end of file diff --git a/dist/fa/fireExtinguisher.js b/dist/fa/fireExtinguisher.js new file mode 100644 index 000000000..aecb91f49 --- /dev/null +++ b/dist/fa/fireExtinguisher.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.fireExtinguisher = void 0; +var fireExtinguisher = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M512 192q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zM1408 160v320q0 16-12 25-8 7-20 7-4 0-7-1l-448-96q-11-2-18-11t-7-20h-256v102q111 23 183.5 111t72.5 203v800q0 26-19 45t-45 19h-512q-26 0-45-19t-19-45v-800q0-106 62.5-190.5t161.5-114.5v-111h-32q-59 0-115 23.5t-91.5 53-66 66.5-40.5 53.5-14 24.5q-17 35-57 35-16 0-29-7-23-12-31.5-37t3.5-49q5-10 14.5-26t37.5-53.5 60.5-70 85-67 108.5-52.5q-25-42-25-86 0-66 47-113t113-47 113 47 47 113q0 33-14 64h302q0-11 7-20t18-11l448-96q3-1 7-1 12 0 20 7 12 9 12 25z" + } + }] +}; +exports.fireExtinguisher = fireExtinguisher; \ No newline at end of file diff --git a/dist/fa/firefox.js b/dist/fa/firefox.js new file mode 100644 index 000000000..13fc561c8 --- /dev/null +++ b/dist/fa/firefox.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.firefox = void 0; +var firefox = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M903 1792q-283 0-504.5-150.5t-329.5-398.5q-58-131-67-301t26-332.5 111-312 179-242.5l-11 281q11-14 68-15.5t70 15.5q42-81 160.5-138t234.5-59q-54 45-119.5 148.5t-58.5 163.5q25 8 62.5 13.5t63 7.5 68 4 50.5 3q15 5 9.5 45.5t-30.5 75.5q-5 7-16.5 18.5t-56.5 35.5-101 34l15 189-139-67q-18 43-7.5 81.5t36 66.5 65.5 41.5 81 6.5q51-9 98-34.5t83.5-45 73.5-17.5q61 4 89.5 33t19.5 65q-1 2-2.5 5.5t-8.5 12.5-18 15.5-31.5 10.5-46.5 1q-60 95-144.5 135.5t-209.5 29.5q74 61 162.5 82.5t168.5 6 154.5-52 128-87.5 80.5-104q43-91 39-192.5t-37.5-188.5-78.5-125q87 38 137 79.5t77 112.5q15-170-57.5-343t-209.5-284q265 77 412 279.5t151 517.5q2 127-40.5 255t-123.5 238-189 196-247.5 135.5-288.5 49.5z" + } + }] +}; +exports.firefox = firefox; \ No newline at end of file diff --git a/dist/fa/firstOrder.js b/dist/fa/firstOrder.js new file mode 100644 index 000000000..12e20e611 --- /dev/null +++ b/dist/fa/firstOrder.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.firstOrder = void 0; +var firstOrder = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1322 896q0 45-5 76l-236-14 224 78q-19 73-58 141l-214-103 177 158q-44 61-107 108l-157-178 103 215q-61 37-140 59l-79-228 14 240q-38 6-76 6t-76-6l14-238-78 226q-74-19-140-59l103-215-157 178q-59-43-108-108l178-158-214 104q-39-69-58-141l224-79-237 14q-5-42-5-76 0-35 5-77l238 14-225-79q19-73 58-140l214 104-177-159q46-61 107-108l158 178-103-215q67-39 140-58l77 224-13-236q36-6 75-6 38 0 76 6l-14 237 78-225q74 19 140 59l-103 214 158-178q61 47 107 108l-177 159 213-104q37 62 58 141l-224 78 237-14q5 31 5 77zM1352 896q0-160-78.5-295.5t-213-214-292.5-78.5q-119 0-227 46.5t-186.5 125-124.5 187.5-46 229q0 119 46 228t124.5 187.5 186.5 125 227 46.5q158 0 292.5-78.5t213-214 78.5-294.5zM1425 513v766l-657 383-657-383v-766l657-383zM768 1719l708-412v-823l-708-411-708 411v823zM1536 448v896l-768 448-768-448v-896l768-448z" + } + }] +}; +exports.firstOrder = firstOrder; \ No newline at end of file diff --git a/dist/fa/fiveHundredPX.js b/dist/fa/fiveHundredPX.js new file mode 100644 index 000000000..ab5998086 --- /dev/null +++ b/dist/fa/fiveHundredPX.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.fiveHundredPX = void 0; +var fiveHundredPX = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1401 1547l-6 6q-113 113-259 175-154 64-317 64-165 0-317-64-148-63-259-175-113-112-175-258-42-103-54-189-4-28 48-36 51-8 56 20 1 1 1 4 18 90 46 159 50 124 152 226 98 98 226 152 132 56 276 56 143 0 276-56 128-55 225-152l6-6q10-10 25-6 12 3 33 22 36 37 17 58zM929 932l-66 66 63 63q21 21-7 49-17 17-32 17-10 0-19-10l-62-61-66 66q-5 5-15 5-15 0-31-16l-2-2q-18-15-18-29 0-7 8-17l66-65-66-66q-16-16 14-45 18-18 31-18 6 0 13 5l65 66 65-65q18-17 48 13 27 27 11 44zM1400 989q0 118-46 228-45 105-126 186-80 80-187 126t-228 46-228-46-187-126q-82-82-125-186-15-33-15-40h-1q-9-27 43-44 50-16 60 12 37 99 97 167h1v-339-2q3-136 102-232 105-103 253-103 147 0 251 103t104 249q0 147-104.5 251t-250.5 104q-58 0-112-16-28-11-13-61 16-51 44-43l14 3q14 3 33 6t30 3q104 0 176-71.5t72-174.5q0-101-72-171-71-71-175-71-107 0-178 80-64 72-64 160v413q110 67 242 67 96 0 185-36.5t156-103.5 103.5-155 36.5-183q0-198-141-339-140-140-339-140-200 0-340 140-53 53-77 87l-2 2q-8 11-13 15.5t-21.5 9.5-38.5-3q-21-5-36.5-16.5t-15.5-26.5v-680q0-15 10.5-26.5t27.5-11.5h877q30 0 30 55t-30 55h-811v483h1q40-42 102-84t108-61q109-46 231-46 121 0 228 46t187 126q81 81 126 186 46 112 46 229zM1369 408q9 8 9 18t-5.5 18-16.5 21q-26 26-39 26-9 0-16-7-106-91-207-133-128-56-276-56-133 0-262 49-27 10-45-37-9-25-8-38 3-16 16-20 130-57 299-57 164 0 316 64 137 58 235 152z" + } + }] +}; +exports.fiveHundredPX = fiveHundredPX; \ No newline at end of file diff --git a/dist/fa/flag.js b/dist/fa/flag.js new file mode 100644 index 000000000..7f5cb9820 --- /dev/null +++ b/dist/fa/flag.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.flag = void 0; +var flag = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M320 256q0 72-64 110v1266q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-1266q-64-38-64-110 0-53 37.5-90.5t90.5-37.5 90.5 37.5 37.5 90.5zM1792 320v763q0 25-12.5 38.5t-39.5 27.5q-215 116-369 116-61 0-123.5-22t-108.5-48-115.5-48-142.5-22q-192 0-464 146-17 9-33 9-26 0-45-19t-19-45v-742q0-32 31-55 21-14 79-43 236-120 421-120 107 0 200 29t219 88q38 19 88 19 54 0 117.5-21t110-47 88-47 54.5-21q26 0 45 19t19 45z" + } + }] +}; +exports.flag = flag; \ No newline at end of file diff --git a/dist/fa/flagCheckered.js b/dist/fa/flagCheckered.js new file mode 100644 index 000000000..b82800c37 --- /dev/null +++ b/dist/fa/flagCheckered.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.flagCheckered = void 0; +var flagCheckered = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M832 1000v-192q-181 16-384 117v185q205-96 384-110zM832 582v-197q-172 8-384 126v189q215-111 384-118zM1664 1045v-184q-235 116-384 71v-224q-20-6-39-15-5-3-33-17t-34.5-17-31.5-15-34.5-15.5-32.5-13-36-12.5-35-8.5-39.5-7.5-39.5-4-44-2q-23 0-49 3v222h19q102 0 192.5 29t197.5 82q19 9 39 15v188q42 17 91 17 120 0 293-92zM1664 618v-189q-169 91-306 91-45 0-78-8v196q148 42 384-90zM320 256q0 35-17.5 64t-46.5 46v1266q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-1266q-29-17-46.5-46t-17.5-64q0-53 37.5-90.5t90.5-37.5 90.5 37.5 37.5 90.5zM1792 320v763q0 39-35 57-10 5-17 9-218 116-369 116-88 0-158-35l-28-14q-64-33-99-48t-91-29-114-14q-102 0-235.5 44t-228.5 102q-15 9-33 9-16 0-32-8-32-19-32-56v-742q0-35 31-55 35-21 78.5-42.5t114-52 152.5-49.5 155-19q112 0 209 31t209 86q38 19 89 19 122 0 310-112 22-12 31-17 31-16 62 2 31 20 31 55z" + } + }] +}; +exports.flagCheckered = flagCheckered; \ No newline at end of file diff --git a/dist/fa/flagO.js b/dist/fa/flagO.js new file mode 100644 index 000000000..3f139380b --- /dev/null +++ b/dist/fa/flagO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.flagO = void 0; +var flagO = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1664 1045v-616q-169 91-306 91-82 0-145-32-100-49-184-76.5t-178-27.5q-173 0-403 127v599q245-113 433-113 55 0 103.5 7.5t98 26 77 31 82.5 39.5l28 14q44 22 101 22 120 0 293-92zM320 256q0 35-17.5 64t-46.5 46v1266q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-1266q-29-17-46.5-46t-17.5-64q0-53 37.5-90.5t90.5-37.5 90.5 37.5 37.5 90.5zM1792 320v763q0 39-35 57-10 5-17 9-218 116-369 116-88 0-158-35l-28-14q-64-33-99-48t-91-29-114-14q-102 0-235.5 44t-228.5 102q-15 9-33 9-16 0-32-8-32-19-32-56v-742q0-35 31-55 35-21 78.5-42.5t114-52 152.5-49.5 155-19q112 0 209 31t209 86q38 19 89 19 122 0 310-112 22-12 31-17 31-16 62 2 31 20 31 55z" + } + }] +}; +exports.flagO = flagO; \ No newline at end of file diff --git a/dist/fa/flash.js b/dist/fa/flash.js new file mode 100644 index 000000000..3e6212318 --- /dev/null +++ b/dist/fa/flash.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.flash = void 0; +var flash = { + "viewBox": "0 0 896 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M885 566q18 20 7 44l-540 1157q-13 25-42 25-4 0-14-2-17-5-25.5-19t-4.5-30l197-808-406 101q-4 1-12 1-18 0-31-11-18-15-13-39l201-825q4-14 16-23t28-9h328q19 0 32 12.5t13 29.5q0 8-5 18l-171 463 396-98q8-2 12-2 19 0 34 15z" + } + }] +}; +exports.flash = flash; \ No newline at end of file diff --git a/dist/fa/flask.js b/dist/fa/flask.js new file mode 100644 index 000000000..4f01fc905 --- /dev/null +++ b/dist/fa/flask.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.flask = void 0; +var flask = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1527 1448q56 89 21.5 152.5t-140.5 63.5h-1152q-106 0-140.5-63.5t21.5-152.5l503-793v-399h-64q-26 0-45-19t-19-45 19-45 45-19h512q26 0 45 19t19 45-19 45-45 19h-64v399zM748 723l-272 429h712l-272-429-20-31v-37-399h-128v399 37z" + } + }] +}; +exports.flask = flask; \ No newline at end of file diff --git a/dist/fa/flickr.js b/dist/fa/flickr.js new file mode 100644 index 000000000..2213f8a08 --- /dev/null +++ b/dist/fa/flickr.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.flickr = void 0; +var flickr = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1248 128q119 0 203.5 84.5t84.5 203.5v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960zM698 896q0-88-62-150t-150-62-150 62-62 150 62 150 150 62 150-62 62-150zM1262 896q0-88-62-150t-150-62-150 62-62 150 62 150 150 62 150-62 62-150z" + } + }] +}; +exports.flickr = flickr; \ No newline at end of file diff --git a/dist/fa/floppyO.js b/dist/fa/floppyO.js new file mode 100644 index 000000000..bb8551ff9 --- /dev/null +++ b/dist/fa/floppyO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.floppyO = void 0; +var floppyO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M384 1536h768v-384h-768v384zM1280 1536h128v-896q0-14-10-38.5t-20-34.5l-281-281q-10-10-34-20t-39-10v416q0 40-28 68t-68 28h-576q-40 0-68-28t-28-68v-416h-128v1280h128v-416q0-40 28-68t68-28h832q40 0 68 28t28 68v416zM896 608v-320q0-13-9.5-22.5t-22.5-9.5h-192q-13 0-22.5 9.5t-9.5 22.5v320q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5-9.5t9.5-22.5zM1536 640v928q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1344q0-40 28-68t68-28h928q40 0 88 20t76 48l280 280q28 28 48 76t20 88z" + } + }] +}; +exports.floppyO = floppyO; \ No newline at end of file diff --git a/dist/fa/folder.js b/dist/fa/folder.js new file mode 100644 index 000000000..93435afdc --- /dev/null +++ b/dist/fa/folder.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.folder = void 0; +var folder = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1664 608v704q0 92-66 158t-158 66h-1216q-92 0-158-66t-66-158v-960q0-92 66-158t158-66h320q92 0 158 66t66 158v32h672q92 0 158 66t66 158z" + } + }] +}; +exports.folder = folder; \ No newline at end of file diff --git a/dist/fa/folderO.js b/dist/fa/folderO.js new file mode 100644 index 000000000..86d80d8f7 --- /dev/null +++ b/dist/fa/folderO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.folderO = void 0; +var folderO = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1536 1312v-704q0-40-28-68t-68-28h-704q-40 0-68-28t-28-68v-64q0-40-28-68t-68-28h-320q-40 0-68 28t-28 68v960q0 40 28 68t68 28h1216q40 0 68-28t28-68zM1664 608v704q0 92-66 158t-158 66h-1216q-92 0-158-66t-66-158v-960q0-92 66-158t158-66h320q92 0 158 66t66 158v32h672q92 0 158 66t66 158z" + } + }] +}; +exports.folderO = folderO; \ No newline at end of file diff --git a/dist/fa/folderOpen.js b/dist/fa/folderOpen.js new file mode 100644 index 000000000..f59b0407f --- /dev/null +++ b/dist/fa/folderOpen.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.folderOpen = void 0; +var folderOpen = { + "viewBox": "0 0 1920 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1879 952q0 31-31 66l-336 396q-43 51-120.5 86.5t-143.5 35.5h-1088q-34 0-60.5-13t-26.5-43q0-31 31-66l336-396q43-51 120.5-86.5t143.5-35.5h1088q34 0 60.5 13t26.5 43zM1536 608v160h-832q-94 0-197 47.5t-164 119.5l-337 396-5 6q0-4-0.5-12.5t-0.5-12.5v-960q0-92 66-158t158-66h320q92 0 158 66t66 158v32h544q92 0 158 66t66 158z" + } + }] +}; +exports.folderOpen = folderOpen; \ No newline at end of file diff --git a/dist/fa/folderOpenO.js b/dist/fa/folderOpenO.js new file mode 100644 index 000000000..6388e5ae6 --- /dev/null +++ b/dist/fa/folderOpenO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.folderOpenO = void 0; +var folderOpenO = { + "viewBox": "0 0 1920 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1781 931q0-35-53-35h-1088q-40 0-85.5 21.5t-71.5 52.5l-294 363q-18 24-18 40 0 35 53 35h1088q40 0 86-22t71-53l294-363q18-22 18-39zM640 768h768v-160q0-40-28-68t-68-28h-576q-40 0-68-28t-28-68v-64q0-40-28-68t-68-28h-320q-40 0-68 28t-28 68v853l256-315q44-53 116-87.5t140-34.5zM1909 931q0 62-46 120l-295 363q-43 53-116 87.5t-140 34.5h-1088q-92 0-158-66t-66-158v-960q0-92 66-158t158-66h320q92 0 158 66t66 158v32h544q92 0 158 66t66 158v160h192q54 0 99 24.5t67 70.5q15 32 15 68z" + } + }] +}; +exports.folderOpenO = folderOpenO; \ No newline at end of file diff --git a/dist/fa/font.js b/dist/fa/font.js new file mode 100644 index 000000000..5359e54b3 --- /dev/null +++ b/dist/fa/font.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.font = void 0; +var font = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M725 559l-170 450q33 0 136.5 2t160.5 2q19 0 57-2-87-253-184-452zM0 1664l2-79q23-7 56-12.5t57-10.5 49.5-14.5 44.5-29 31-50.5l237-616 280-724h75 53q8 14 11 21l205 480q33 78 106 257.5t114 274.5q15 34 58 144.5t72 168.5q20 45 35 57 19 15 88 29.5t84 20.5q6 38 6 57 0 5-0.5 13.5t-0.5 12.5q-63 0-190-8t-191-8q-76 0-215 7t-178 8q0-43 4-78l131-28q1 0 12.5-2.5t15.5-3.5 14.5-4.5 15-6.5 11-8 9-11 2.5-14q0-16-31-96.5t-72-177.5-42-100l-450-2q-26 58-76.5 195.5t-50.5 162.5q0 22 14 37.5t43.5 24.5 48.5 13.5 57 8.5 41 4q1 19 1 58 0 9-2 27-58 0-174.5-10t-174.5-10q-8 0-26.5 4t-21.5 4q-80 14-188 14z" + } + }] +}; +exports.font = font; \ No newline at end of file diff --git a/dist/fa/fontAwesome.js b/dist/fa/fontAwesome.js new file mode 100644 index 000000000..83cf04aa8 --- /dev/null +++ b/dist/fa/fontAwesome.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.fontAwesome = void 0; +var fontAwesome = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1536 512v839q0 48-49 62-174 52-338 52-73 0-215.5-29.5t-227.5-29.5q-164 0-370 48v338h-160v-1368q-63-25-101-81t-38-124q0-91 64-155t155-64 155 64 64 155q0 68-38 124t-101 81v68q190-44 343-44 99 0 198 15 14 2 111.5 22.5t149.5 20.5q77 0 165-18 11-2 80-21t89-19q26 0 45 19t19 45z" + } + }] +}; +exports.fontAwesome = fontAwesome; \ No newline at end of file diff --git a/dist/fa/fonticons.js b/dist/fa/fonticons.js new file mode 100644 index 000000000..fa01455e4 --- /dev/null +++ b/dist/fa/fonticons.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.fonticons = void 0; +var fonticons = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 128h1536v1536h-1536v-1536zM908 448l-12 33 75 83-31 114 25 25 107-57 107 57 25-25-31-114 75-83-12-33h-95l-53-96h-32l-53 96h-95zM641 611q32 0 44.5 16t11.5 63l174-21q0-55-17.5-92.5t-50.5-56-69-25.5-85-7q-133 0-199 57.5t-66 182.5v72h-96v128h76q20 0 20 8v382q0 14-5 20t-18 7l-73 7v88h448v-86l-149-14q-6-1-8.5-1.5t-3.5-2.5-0.5-4 1-7 0.5-10v-387h191l38-128h-231q-6 0-2-6t4-9v-80q0-27 1.5-40.5t7.5-28 19.5-20 36.5-5.5zM1248 1440v-86l-54-9q-7-1-9.5-2.5t-2.5-3 1-7.5 1-12v-520h-275l-23 101 83 22q23 7 23 27v370q0 14-6 18.5t-20 6.5l-70 9v86h352z" + } + }] +}; +exports.fonticons = fonticons; \ No newline at end of file diff --git a/dist/fa/fortAwesome.js b/dist/fa/fortAwesome.js new file mode 100644 index 000000000..c5740390d --- /dev/null +++ b/dist/fa/fortAwesome.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.fortAwesome = void 0; +var fortAwesome = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 1008v-224q0-16-16-16h-96q-16 0-16 16v224q0 16 16 16h96q16 0 16-16zM1152 1008v-224q0-16-16-16h-96q-16 0-16 16v224q0 16 16 16h96q16 0 16-16zM1664 1040v752h-640v-320q0-80-56-136t-136-56-136 56-56 136v320h-640v-752q0-16 16-16h96q16 0 16 16v112h128v-624q0-16 16-16h96q16 0 16 16v112h128v-112q0-16 16-16h96q16 0 16 16v112h128v-112q0-6 2.5-9.5t8.5-5 9.5-2 11.5 0 9 0.5v-391q-32-15-32-50 0-23 16.5-39t38.5-16 38.5 16 16.5 39q0 35-32 50v17q45-10 83-10 21 0 59.5 7.5t54.5 7.5q17 0 47-7.5t37-7.5q16 0 16 16v210q0 15-35 21.5t-62 6.5q-18 0-54.5-7.5t-55.5-7.5q-40 0-90 12v133q1 0 9-0.5t11.5 0 9.5 2 8.5 5 2.5 9.5v112h128v-112q0-16 16-16h96q16 0 16 16v112h128v-112q0-16 16-16h96q16 0 16 16v624h128v-112q0-16 16-16h96q16 0 16 16z" + } + }] +}; +exports.fortAwesome = fortAwesome; \ No newline at end of file diff --git a/dist/fa/forumbee.js b/dist/fa/forumbee.js new file mode 100644 index 000000000..80b1452c6 --- /dev/null +++ b/dist/fa/forumbee.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.forumbee = void 0; +var forumbee = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M934 150q-317 121-556 362.5t-358 560.5q-20-89-20-176 0-208 102.5-384.5t278.5-279 384-102.5q82 0 169 19zM1203 269q93 65 164 155-389 113-674.5 400.5t-396.5 676.5q-93-72-155-162 112-386 395-671t667-399zM470 1603q115-356 379.5-622t619.5-384q40 92 54 195-292 120-516 345t-343 518q-103-14-194-52zM1536 1661q-193-50-367-115-135 84-290 107 109-205 274-370.5t369-275.5q-21 152-101 284 65 175 115 370z" + } + }] +}; +exports.forumbee = forumbee; \ No newline at end of file diff --git a/dist/fa/forward.js b/dist/fa/forward.js new file mode 100644 index 000000000..57c3b2c1c --- /dev/null +++ b/dist/fa/forward.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.forward = void 0; +var forward = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M45 1651q-19 19-32 13t-13-32v-1472q0-26 13-32t32 13l710 710q9 9 13 19v-710q0-26 13-32t32 13l710 710q19 19 19 45t-19 45l-710 710q-19 19-32 13t-13-32v-710q-4 10-13 19z" + } + }] +}; +exports.forward = forward; \ No newline at end of file diff --git a/dist/fa/foursquare.js b/dist/fa/foursquare.js new file mode 100644 index 000000000..56a8fd346 --- /dev/null +++ b/dist/fa/foursquare.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.foursquare = void 0; +var foursquare = { + "viewBox": "0 0 1280 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1000 434l37-194q5-23-9-40t-35-17h-712q-23 0-38.5 17t-15.5 37v1101q0 7 6 1l291-352q23-26 38-33.5t48-7.5h239q22 0 37-14.5t18-29.5q24-130 37-191 4-21-11.5-40t-36.5-19h-294q-29 0-48-19t-19-48v-42q0-29 19-47.5t48-18.5h346q18 0 35-13.5t20-29.5zM1227 212q-15 73-53.5 266.5t-69.5 350-35 173.5q-6 22-9 32.5t-14 32.5-24.5 33-38.5 21-58 10h-271q-13 0-22 10-8 9-426 494-22 25-58.5 28.5t-48.5-5.5q-55-22-55-98v-1410q0-55 38-102.5t120-47.5h888q95 0 127 53t10 159zM1227 212l-158 790q4-17 35-173.5t69.5-350 53.5-266.5z" + } + }] +}; +exports.foursquare = foursquare; \ No newline at end of file diff --git a/dist/fa/freeCodeCamp.js b/dist/fa/freeCodeCamp.js new file mode 100644 index 000000000..1ec9929fa --- /dev/null +++ b/dist/fa/freeCodeCamp.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.freeCodeCamp = void 0; +var freeCodeCamp = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M453 1637q0 21-16 37.5t-37 16.5q-1 0-13-3-63-15-162-140-225-284-225-676 0-341 213-614 39-51 95-103.5t94-52.5q19 0 35 13.5t16 32.5q0 27-63 90-98 102-147 184-119 199-119 449 0 281 123 491 50 85 136 173 2 3 14.5 16t19.5 21 17 20.5 14.5 23.5 4.5 21zM1796 1503q0 29-17.5 48.5t-46.5 19.5h-1081q-26 0-45-19t-19-45q0-29 17.5-48.5t46.5-19.5h1081q26 0 45 19t19 45zM1581 892q0 134-67 233-25 38-69.5 78.5t-83.5 60.5q-16 10-27 10-7 0-15-6t-8-12q0-9 19-30t42-46 42-67.5 19-88.5q0-76-35-130-29-42-46-42-3 0-3 5 0 12 7.5 35.5t7.5 36.5q0 22-21.5 35t-44.5 13q-66 0-66-76 0-15 1.5-44t1.5-44q0-25-10-46-13-25-42-53.5t-51-28.5q-5 0-7 0.5t-3.5 2.5-1.5 6q0 2 16 26t16 54q0 37-19 68t-46 54-53.5 46-45.5 54-19 68q0 98 42 160 29 43 79 63 16 5 17 10 1 2 1 5 0 16-18 16-6 0-33-11-119-43-195-139.5t-76-218.5q0-55 24.5-115.5t60-115 70.5-108.5 59.5-113.5 24.5-111.5q0-53-25-94-29-48-56-64-19-9-19-21 0-20 41-20 50 0 110 29 41 19 71 44.5t49.5 51 33.5 62.5 22 69 16 80q0 1 3 17.5t4.5 25 5.5 25 9 27 11 21.5 14.5 16.5 18.5 5.5q23 0 37-14t14-37q0-25-20-67t-20-52 10-10q27 0 93 70 72 76 102.5 156t30.5 186zM2304 921q0 274-138 503-19 32-48 72t-68 86.5-81 77-74 30.5q-16 0-31-15.5t-15-31.5q0-15 29-50.5t68.5-77 48.5-52.5q183-230 183-531 0-131-20.5-235t-72.5-211q-58-119-163-228-2-3-13-13.5t-16.5-16.5-15-17.5-15-20-9.5-18.5-4-19q0-19 16-35.5t35-16.5q70 0 196 169 98 131 146 273t60 314q2 42 2 64z" + } + }] +}; +exports.freeCodeCamp = freeCodeCamp; \ No newline at end of file diff --git a/dist/fa/frownO.js b/dist/fa/frownO.js new file mode 100644 index 000000000..9059188a9 --- /dev/null +++ b/dist/fa/frownO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.frownO = void 0; +var frownO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1134 1229q8 25-4 48.5t-37 31.5-49-4-32-38q-25-80-92.5-129.5t-151.5-49.5-151.5 49.5-92.5 129.5q-8 26-31.5 38t-48.5 4q-26-8-38-31.5t-4-48.5q37-121 138-195t228-74 228 74 138 195zM640 640q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5 90.5 37.5 37.5 90.5zM1152 640q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5 90.5 37.5 37.5 90.5zM1408 896q0-130-51-248.5t-136.5-204-204-136.5-248.5-51-248.5 51-204 136.5-136.5 204-51 248.5 51 248.5 136.5 204 204 136.5 248.5 51 248.5-51 204-136.5 136.5-204 51-248.5zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.frownO = frownO; \ No newline at end of file diff --git a/dist/fa/futbolO.js b/dist/fa/futbolO.js new file mode 100644 index 000000000..ab4b79dce --- /dev/null +++ b/dist/fa/futbolO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.futbolO = void 0; +var futbolO = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M609 816l287-208 287 208-109 336h-355zM896 0q182 0 348 71t286 191 191 286 71 348-71 348-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71zM1515 1350q149-203 149-454v-3l-102 89-240-224 63-323 134 12q-150-206-389-282l53 124-287 159-287-159 53-124q-239 76-389 282l135-12 62 323-240 224-102-89v3q0 251 149 454l30-132 326 40 139 298-116 69q117 39 240 39t240-39l-116-69 139-298 326-40z" + } + }] +}; +exports.futbolO = futbolO; \ No newline at end of file diff --git a/dist/fa/gamepad.js b/dist/fa/gamepad.js new file mode 100644 index 000000000..ce5a08e79 --- /dev/null +++ b/dist/fa/gamepad.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.gamepad = void 0; +var gamepad = { + "viewBox": "0 0 1920 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M832 1088v-128q0-14-9-23t-23-9h-192v-192q0-14-9-23t-23-9h-128q-14 0-23 9t-9 23v192h-192q-14 0-23 9t-9 23v128q0 14 9 23t23 9h192v192q0 14 9 23t23 9h128q14 0 23-9t9-23v-192h192q14 0 23-9t9-23zM1408 1152q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1664 896q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1920 1024q0 212-150 362t-362 150q-192 0-338-128h-220q-146 128-338 128-212 0-362-150t-150-362 150-362 362-150h896q212 0 362 150t150 362z" + } + }] +}; +exports.gamepad = gamepad; \ No newline at end of file diff --git a/dist/fa/gavel.js b/dist/fa/gavel.js new file mode 100644 index 000000000..8fb752dc3 --- /dev/null +++ b/dist/fa/gavel.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.gavel = void 0; +var gavel = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1771 1536q0 53-37 90l-107 108q-39 37-91 37-53 0-90-37l-363-364q-38-36-38-90 0-53 43-96l-256-256-126 126q-14 14-34 14t-34-14q2 2 12.5 12t12.5 13 10 11.5 10 13.5 6 13.5 5.5 16.5 1.5 18q0 38-28 68-3 3-16.5 18t-19 20.5-18.5 16.5-22 15.5-22 9-26 4.5q-40 0-68-28l-408-408q-28-28-28-68 0-13 4.5-26t9-22 15.5-22 16.5-18.5 20.5-19 18-16.5q30-28 68-28 10 0 18 1.5t16.5 5.5 13.5 6 13.5 10 11.5 10 13 12.5 12 12.5q-14-14-14-34t14-34l348-348q14-14 34-14t34 14q-2-2-12.5-12t-12.5-13-10-11.5-10-13.5-6-13.5-5.5-16.5-1.5-18q0-38 28-68 3-3 16.5-18t19-20.5 18.5-16.5 22-15.5 22-9 26-4.5q40 0 68 28l408 408q28 28 28 68 0 13-4.5 26t-9 22-15.5 22-16.5 18.5-20.5 19-18 16.5q-30 28-68 28-10 0-18-1.5t-16.5-5.5-13.5-6-13.5-10-11.5-10-13-12.5-12-12.5q14 14 14 34t-14 34l-126 126 256 256q43-43 96-43 52 0 91 37l363 363q37 39 37 91z" + } + }] +}; +exports.gavel = gavel; \ No newline at end of file diff --git a/dist/fa/gbp.js b/dist/fa/gbp.js new file mode 100644 index 000000000..219971e89 --- /dev/null +++ b/dist/fa/gbp.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.gbp = void 0; +var gbp = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1020 1137v367q0 14-9 23t-23 9h-956q-14 0-23-9t-9-23v-150q0-13 9.5-22.5t22.5-9.5h97v-383h-95q-14 0-23-9.5t-9-22.5v-131q0-14 9-23t23-9h95v-223q0-171 123.5-282t314.5-111q185 0 335 125 9 8 10 20.5t-7 22.5l-103 127q-9 11-22 12-13 2-23-7-5-5-26-19t-69-32-93-18q-85 0-137 47t-52 123v215h305q13 0 22.5 9t9.5 23v131q0 13-9.5 22.5t-22.5 9.5h-305v379h414v-181q0-13 9-22.5t23-9.5h162q14 0 23 9.5t9 22.5z" + } + }] +}; +exports.gbp = gbp; \ No newline at end of file diff --git a/dist/fa/ge.js b/dist/fa/ge.js new file mode 100644 index 000000000..a49047b7a --- /dev/null +++ b/dist/fa/ge.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ge = void 0; +var ge = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M874 1638v66q-208-6-385-109.5t-283-275.5l58-34q29 49 73 99l65-57q148 168 368 212l-17 86q65 12 121 13zM276 1108l-83 28q22 60 49 112l-57 33q-98-180-98-385t98-385l57 33q-30 56-49 112l82 28q-35 100-35 212 0 109 36 212zM1528 1285l58 34q-106 172-283 275.5t-385 109.5v-66q56-1 121-13l-17-86q220-44 368-212l65 57q44-50 73-99zM1377 731l-233 80q14 42 14 85t-14 85l232 80q-31 92-98 169l-185-162q-57 67-147 85l48 241q-52 10-98 10t-98-10l48-241q-90-18-147-85l-185 162q-67-77-98-169l232-80q-14-42-14-85t14-85l-233-80q33-93 99-169l185 162q59-68 147-86l-48-240q44-10 98-10t98 10l-48 240q88 18 147 86l185-162q66 76 99 169zM874 88v66q-65 2-121 13l17 86q-220 42-368 211l-65-56q-38 42-73 98l-57-33q106-172 282-275.5t385-109.5zM1705 896q0 205-98 385l-57-33q27-52 49-112l-83-28q36-103 36-212 0-112-35-212l82-28q-19-56-49-112l57-33q98 180 98 385zM1585 473l-57 33q-35-56-73-98l-65 56q-148-169-368-211l17-86q-56-11-121-13v-66q209 6 385 109.5t282 275.5zM1748 896q0-173-67.5-331t-181.5-272-272-181.5-331-67.5-331 67.5-272 181.5-181.5 272-67.5 331 67.5 331 181.5 272 272 181.5 331 67.5 331-67.5 272-181.5 181.5-272 67.5-331zM1792 896q0 182-71 348t-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71 348 71 286 191 191 286 71 348z" + } + }] +}; +exports.ge = ge; \ No newline at end of file diff --git a/dist/fa/gear.js b/dist/fa/gear.js new file mode 100644 index 000000000..f45ef4e12 --- /dev/null +++ b/dist/fa/gear.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.gear = void 0; +var gear = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 896q0-106-75-181t-181-75-181 75-75 181 75 181 181 75 181-75 75-181zM1536 787v222q0 12-8 23t-20 13l-185 28q-19 54-39 91 35 50 107 138 10 12 10 25t-9 23q-27 37-99 108t-94 71q-12 0-26-9l-138-108q-44 23-91 38-16 136-29 186-7 28-36 28h-222q-14 0-24.5-8.5t-11.5-21.5l-28-184q-49-16-90-37l-141 107q-10 9-25 9-14 0-25-11-126-114-165-168-7-10-7-23 0-12 8-23 15-21 51-66.5t54-70.5q-27-50-41-99l-183-27q-13-2-21-12.5t-8-23.5v-222q0-12 8-23t19-13l186-28q14-46 39-92-40-57-107-138-10-12-10-24 0-10 9-23 26-36 98.5-107.5t94.5-71.5q13 0 26 10l138 107q44-23 91-38 16-136 29-186 7-28 36-28h222q14 0 24.5 8.5t11.5 21.5l28 184q49 16 90 37l142-107q9-9 24-9 13 0 25 10 129 119 165 170 7 8 7 22 0 12-8 23-15 21-51 66.5t-54 70.5q26 50 41 98l183 28q13 2 21 12.5t8 23.5z" + } + }] +}; +exports.gear = gear; \ No newline at end of file diff --git a/dist/fa/gears.js b/dist/fa/gears.js new file mode 100644 index 000000000..82b4ea2c5 --- /dev/null +++ b/dist/fa/gears.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.gears = void 0; +var gears = { + "viewBox": "0 0 1920 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M896 896q0-106-75-181t-181-75-181 75-75 181 75 181 181 75 181-75 75-181zM1664 1408q0-52-38-90t-90-38-90 38-38 90q0 53 37.5 90.5t90.5 37.5 90.5-37.5 37.5-90.5zM1664 384q0-52-38-90t-90-38-90 38-38 90q0 53 37.5 90.5t90.5 37.5 90.5-37.5 37.5-90.5zM1280 805v185q0 10-7 19.5t-16 10.5l-155 24q-11 35-32 76 34 48 90 115 7 11 7 20 0 12-7 19-23 30-82.5 89.5t-78.5 59.5q-11 0-21-7l-115-90q-37 19-77 31-11 108-23 155-7 24-30 24h-186q-11 0-20-7.5t-10-17.5l-23-153q-34-10-75-31l-118 89q-7 7-20 7-11 0-21-8-144-133-144-160 0-9 7-19 10-14 41-53t47-61q-23-44-35-82l-152-24q-10-1-17-9.5t-7-19.5v-185q0-10 7-19.5t16-10.5l155-24q11-35 32-76-34-48-90-115-7-11-7-20 0-12 7-20 22-30 82-89t79-59q11 0 21 7l115 90q34-18 77-32 11-108 23-154 7-24 30-24h186q11 0 20 7.5t10 17.5l23 153q34 10 75 31l118-89q8-7 20-7 11 0 21 8 144 133 144 160 0 8-7 19-12 16-42 54t-45 60q23 48 34 82l152 23q10 2 17 10.5t7 19.5zM1920 1338v140q0 16-149 31-12 27-30 52 51 113 51 138 0 4-4 7-122 71-124 71-8 0-46-47t-52-68q-20 2-30 2t-30-2q-14 21-52 68t-46 47q-2 0-124-71-4-3-4-7 0-25 51-138-18-25-30-52-149-15-149-31v-140q0-16 149-31 13-29 30-52-51-113-51-138 0-4 4-7 4-2 35-20t59-34 30-16q8 0 46 46.5t52 67.5q20-2 30-2t30 2q51-71 92-112l6-2q4 0 124 70 4 3 4 7 0 25-51 138 17 23 30 52 149 15 149 31zM1920 314v140q0 16-149 31-12 27-30 52 51 113 51 138 0 4-4 7-122 71-124 71-8 0-46-47t-52-68q-20 2-30 2t-30-2q-14 21-52 68t-46 47q-2 0-124-71-4-3-4-7 0-25 51-138-18-25-30-52-149-15-149-31v-140q0-16 149-31 13-29 30-52-51-113-51-138 0-4 4-7 4-2 35-20t59-34 30-16q8 0 46 46.5t52 67.5q20-2 30-2t30 2q51-71 92-112l6-2q4 0 124 70 4 3 4 7 0 25-51 138 17 23 30 52 149 15 149 31z" + } + }] +}; +exports.gears = gears; \ No newline at end of file diff --git a/dist/fa/genderless.js b/dist/fa/genderless.js new file mode 100644 index 000000000..62da52b16 --- /dev/null +++ b/dist/fa/genderless.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.genderless = void 0; +var genderless = { + "viewBox": "0 0 1280 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 960q0-185-131.5-316.5t-316.5-131.5-316.5 131.5-131.5 316.5 131.5 316.5 316.5 131.5 316.5-131.5 131.5-316.5zM1152 960q0 117-45.5 223.5t-123 184-184 123-223.5 45.5-223.5-45.5-184-123-123-184-45.5-223.5 45.5-223.5 123-184 184-123 223.5-45.5 223.5 45.5 184 123 123 184 45.5 223.5z" + } + }] +}; +exports.genderless = genderless; \ No newline at end of file diff --git a/dist/fa/getPocket.js b/dist/fa/getPocket.js new file mode 100644 index 000000000..0a9d934d2 --- /dev/null +++ b/dist/fa/getPocket.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.getPocket = void 0; +var getPocket = { + "viewBox": "0 0 1720 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1565 128q65 0 110 45.5t45 110.5v519q0 176-68 336t-182.5 275-274 182.5-334.5 67.5q-176 0-335.5-67.5t-274.5-182.5-183-275-68-336v-519q0-64 46-110t110-46h1409zM861 1192q47 0 82-33l404-388q37-35 37-85 0-49-34.5-83.5t-83.5-34.5q-47 0-82 33l-323 310-323-310q-35-33-81-33-49 0-83.5 34.5t-34.5 83.5q0 51 36 85l405 388q33 33 81 33z" + } + }] +}; +exports.getPocket = getPocket; \ No newline at end of file diff --git a/dist/fa/gg.js b/dist/fa/gg.js new file mode 100644 index 000000000..b501df71c --- /dev/null +++ b/dist/fa/gg.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.gg = void 0; +var gg = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M736 800l384 384-384 384-672-672 672-672 168 168-96 96-72-72-480 480 480 480 193-193-289-287zM1312 224l672 672-672 672-168-168 96-96 72 72 480-480-480-480-193 193 289 287-96 96-384-384z" + } + }] +}; +exports.gg = gg; \ No newline at end of file diff --git a/dist/fa/ggCircle.js b/dist/fa/ggCircle.js new file mode 100644 index 000000000..402675386 --- /dev/null +++ b/dist/fa/ggCircle.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ggCircle = void 0; +var ggCircle = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M717 1354l271-271-279-279-88 88 192 191-96 96-279-279 279-279 40 40 87-87-127-128-454 454zM1075 1346l454-454-454-454-271 271 279 279 88-88-192-191 96-96 279 279-279 279-40-40-87 88zM1792 896q0 182-71 348t-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71 348 71 286 191 191 286 71 348z" + } + }] +}; +exports.ggCircle = ggCircle; \ No newline at end of file diff --git a/dist/fa/gift.js b/dist/fa/gift.js new file mode 100644 index 000000000..04812babb --- /dev/null +++ b/dist/fa/gift.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.gift = void 0; +var gift = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M928 1356v-56-468-192h-320v192 468 56q0 25 18 38.5t46 13.5h192q28 0 46-13.5t18-38.5zM472 512h195l-126-161q-26-31-69-31-40 0-68 28t-28 68 28 68 68 28zM1160 416q0-40-28-68t-68-28q-43 0-69 31l-125 161h194q40 0 68-28t28-68zM1536 672v320q0 14-9 23t-23 9h-96v416q0 40-28 68t-68 28h-1088q-40 0-68-28t-28-68v-416h-96q-14 0-23-9t-9-23v-320q0-14 9-23t23-9h440q-93 0-158.5-65.5t-65.5-158.5 65.5-158.5 158.5-65.5q107 0 168 77l128 165 128-165q61-77 168-77 93 0 158.5 65.5t65.5 158.5-65.5 158.5-158.5 65.5h440q14 0 23 9t9 23z" + } + }] +}; +exports.gift = gift; \ No newline at end of file diff --git a/dist/fa/git.js b/dist/fa/git.js new file mode 100644 index 000000000..b6a9888cf --- /dev/null +++ b/dist/fa/git.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.git = void 0; +var git = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M595 1514q0-100-165-100-158 0-158 104 0 101 172 101 151 0 151-105zM536 759q0-61-30-102t-89-41q-124 0-124 145 0 135 124 135 119 0 119-137zM805 435v202q-36 12-79 22 16 43 16 84 0 127-73 216.5t-197 112.5q-40 8-59.5 27t-19.5 58q0 31 22.5 51.5t58 32 78.5 22 86 25.5 78.5 37.5 58 64 22.5 98.5q0 304-363 304-69 0-130-12.5t-116-41-87.5-82-32.5-127.5q0-165 182-225v-4q-67-41-67-126 0-109 63-137v-4q-72-24-119.5-108.5t-47.5-165.5q0-139 95-231.5t235-92.5q96 0 178 47 98 0 218-47zM1123 1316h-222q4-45 4-134v-609q0-94-4-128h222q-4 33-4 124v613q0 89 4 134zM1724 1094v196q-71 39-174 39-62 0-107-20t-70-50-39.5-78-18.5-92-4-103v-351h2v-4q-7 0-19-1t-18-1q-21 0-59 6v-190h96v-76q0-54-6-89h227q-6 41-6 165h171v190q-15 0-43.5-2t-42.5-2h-85v365q0 131 87 131 61 0 109-33zM1148 147q0 58-39 101.5t-96 43.5q-58 0-98-43.5t-40-101.5q0-59 39.5-103t98.5-44q58 0 96.5 44.5t38.5 102.5z" + } + }] +}; +exports.git = git; \ No newline at end of file diff --git a/dist/fa/gitSquare.js b/dist/fa/gitSquare.js new file mode 100644 index 000000000..3e6d02d5a --- /dev/null +++ b/dist/fa/gitSquare.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.gitSquare = void 0; +var gitSquare = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M582 1308q0 66-93 66-107 0-107-63 0-64 98-64 102 0 102 61zM546 842q0 85-74 85-77 0-77-84 0-90 77-90 36 0 55 25.5t19 63.5zM712 767v-125q-78 29-135 29-50-29-110-29-86 0-145 57t-59 143q0 50 29.5 102t73.5 67v3q-38 17-38 85 0 53 41 77v3q-113 37-113 139 0 45 20 78.5t54 51 72 25.5 81 8q224 0 224-188 0-67-48-99t-126-46q-27-5-51.5-20.5t-24.5-39.5q0-44 49-52 77-15 122-70t45-134q0-24-10-52 37-9 49-13zM771 1186h137q-2-27-2-82v-387q0-46 2-69h-137q3 23 3 71v392q0 50-3 75zM1280 1170v-121q-30 21-68 21-53 0-53-82v-225h52q9 0 26.5 1t26.5 1v-117h-105q0-82 3-102h-140q4 24 4 55v47h-60v117q36-3 37-3 3 0 11 0.5t12 0.5v2h-2v217q0 37 2.5 64t11.5 56.5 24.5 48.5 43.5 31 66 12q64 0 108-24zM924 464q0-36-24-63.5t-60-27.5-60.5 27-24.5 64q0 36 25 62.5t60 26.5 59.5-27 24.5-62zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.gitSquare = gitSquare; \ No newline at end of file diff --git a/dist/fa/github.js b/dist/fa/github.js new file mode 100644 index 000000000..dd45cf0f0 --- /dev/null +++ b/dist/fa/github.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.github = void 0; +var github = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M768 128q209 0 385.5 103t279.5 279.5 103 385.5q0 251-146.5 451.5t-378.5 277.5q-27 5-40-7t-13-30q0-3 0.5-76.5t0.5-134.5q0-97-52-142 57-6 102.5-18t94-39 81-66.5 53-105 20.5-150.5q0-119-79-206 37-91-8-204-28-9-81 11t-92 44l-38 24q-93-26-192-26t-192 26q-16-11-42.5-27t-83.5-38.5-85-13.5q-45 113-8 204-79 87-79 206 0 85 20.5 150t52.5 105 80.5 67 94 39 102.5 18q-39 36-49 103-21 10-45 15t-57 5-65.5-21.5-55.5-62.5q-19-32-48.5-52t-49.5-24l-20-3q-21 0-29 4.5t-5 11.5 9 14 13 12l7 5q22 10 43.5 38t31.5 51l10 23q13 38 44 61.5t67 30 69.5 7 55.5-3.5l23-4q0 38 0.5 88.5t0.5 54.5q0 18-13 30t-40 7q-232-77-378.5-277.5t-146.5-451.5q0-209 103-385.5t279.5-279.5 385.5-103zM291 1231q3-7-7-12-10-3-13 2-3 7 7 12 9 6 13-2zM322 1265q7-5-2-16-10-9-16-3-7 5 2 16 10 10 16 3zM352 1310q9-7 0-19-8-13-17-6-9 5 0 18t17 7zM394 1352q8-8-4-19-12-12-20-3-9 8 4 19 12 12 20 3zM451 1377q3-11-13-16-15-4-19 7t13 15q15 6 19-6zM514 1382q0-13-17-11-16 0-16 11 0 13 17 11 16 0 16-11zM572 1372q-2-11-18-9-16 3-14 15t18 8 14-14z" + } + }] +}; +exports.github = github; \ No newline at end of file diff --git a/dist/fa/githubAlt.js b/dist/fa/githubAlt.js new file mode 100644 index 000000000..56d23c1b5 --- /dev/null +++ b/dist/fa/githubAlt.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.githubAlt = void 0; +var githubAlt = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 1216q0 40-12.5 82t-43 76-72.5 34-72.5-34-43-76-12.5-82 12.5-82 43-76 72.5-34 72.5 34 43 76 12.5 82zM1280 1216q0 40-12.5 82t-43 76-72.5 34-72.5-34-43-76-12.5-82 12.5-82 43-76 72.5-34 72.5 34 43 76 12.5 82zM1440 1216q0-120-69-204t-187-84q-41 0-195 21-71 11-157 11t-157-11q-152-21-195-21-118 0-187 84t-69 204q0 88 32 153.5t81 103 122 60 140 29.5 149 7h168q82 0 149-7t140-29.5 122-60 81-103 32-153.5zM1664 1040q0 207-61 331-38 77-105.5 133t-141 86-170 47.5-171.5 22-167 4.5q-78 0-142-3t-147.5-12.5-152.5-30-137-51.5-121-81-86-115q-62-123-62-331 0-237 136-396-27-82-27-170 0-116 51-218 108 0 190 39.5t189 123.5q147-35 309-35 148 0 280 32 105-82 187-121t189-39q51 102 51 218 0 87-27 168 136 160 136 398z" + } + }] +}; +exports.githubAlt = githubAlt; \ No newline at end of file diff --git a/dist/fa/githubSquare.js b/dist/fa/githubSquare.js new file mode 100644 index 000000000..72e39b4f0 --- /dev/null +++ b/dist/fa/githubSquare.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.githubSquare = void 0; +var githubSquare = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M519 1200q4-6-3-13-9-7-14-2-4 6 3 13 9 7 14 2zM491 1159q-5-7-12-4-6 4 0 12 7 8 12 5 6-4 0-13zM450 1119q2-4-5-8-7-2-8 2-3 5 4 8 8 2 9-2zM471 1142q2-1 1.5-4.5t-3.5-5.5q-6-7-10-3t1 11q6 6 11 2zM557 1217q2-7-9-11-9-3-13 4-2 7 9 11 9 3 13-4zM599 1220q0-8-12-8-10 0-10 8t11 8 11-8zM638 1213q-2-7-13-5t-9 9q2 8 12 6t10-10zM1280 896q0-212-150-362t-362-150-362 150-150 362q0 167 98 300.5t252 185.5q18 3 26.5-5t8.5-20q0-52-1-95-6 1-15.5 2.5t-35.5 2-48-4-43.5-20-29.5-41.5q-23-59-57-74-2-1-4.5-3.5l-8-8t-7-9.5 4-7.5 19.5-3.5q6 0 15 2t30 15.5 33 35.5q16 28 37.5 42t43.5 14 38-3.5 30-9.5q7-47 33-69-49-6-86-18.5t-73-39-55.5-76-19.5-119.5q0-79 53-137-24-62 5-136 19-6 54.5 7.5t60.5 29.5l26 16q58-17 128-17t128 17q11-7 28.5-18t55.5-26 57-9q29 74 5 136 53 58 53 137 0 57-14 100.5t-35.5 70-53.5 44.5-62.5 26-68.5 12q35 31 35 95 0 40-0.5 89t-0.5 51q0 12 8.5 20t26.5 5q154-52 252-185.5t98-300.5zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.githubSquare = githubSquare; \ No newline at end of file diff --git a/dist/fa/gitlab.js b/dist/fa/gitlab.js new file mode 100644 index 000000000..7b2db52c0 --- /dev/null +++ b/dist/fa/gitlab.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.gitlab = void 0; +var gitlab = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M104 706l792 1015-868-630q-18-13-25-34.5t0-42.5l101-308v0zM566 706h660l-330 1015v0zM368 94l198 612h-462l198-612q8-23 33-23t33 23zM1688 706l101 308q7 21 0 42.5t-25 34.5l-868 630 792-1015v0zM1688 706h-462l198-612q8-23 33-23t33 23z" + } + }] +}; +exports.gitlab = gitlab; \ No newline at end of file diff --git a/dist/fa/gittip.js b/dist/fa/gittip.js new file mode 100644 index 000000000..c5193a866 --- /dev/null +++ b/dist/fa/gittip.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.gittip = void 0; +var gittip = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M773 1302l350-473q16-22 24.5-59t-6-85-61.5-79q-40-26-83-25.5t-73.5 17.5-54.5 45q-36 40-96 40-59 0-95-40-24-28-54.5-45t-73.5-17.5-84 25.5q-46 31-60.5 79t-6 85 24.5 59zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.gittip = gittip; \ No newline at end of file diff --git a/dist/fa/glass.js b/dist/fa/glass.js new file mode 100644 index 000000000..9f30f4935 --- /dev/null +++ b/dist/fa/glass.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.glass = void 0; +var glass = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1699 186q0 35-43 78l-632 632v768h320q26 0 45 19t19 45-19 45-45 19h-896q-26 0-45-19t-19-45 19-45 45-19h320v-768l-632-632q-43-43-43-78 0-23 18-36.5t38-17.5 43-4h1408q23 0 43 4t38 17.5 18 36.5z" + } + }] +}; +exports.glass = glass; \ No newline at end of file diff --git a/dist/fa/glide.js b/dist/fa/glide.js new file mode 100644 index 000000000..304c6267c --- /dev/null +++ b/dist/fa/glide.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.glide = void 0; +var glide = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M866 515q0 27-13 94-11 50-31.5 150t-30.5 150q-2 11-4.5 12.5t-13.5 2.5q-20 2-31 2-58 0-84-49.5t-26-113.5q0-88 35-174t103-124q28-14 51-14 28 0 36.5 16.5t8.5 47.5zM1352 939q0-14-39-75.5t-52-66.5q-21-8-34-8-91 0-226 77l-2-2q3-22 27.5-135t24.5-178q0-233-242-233-24 0-68 6-94 17-168.5 89.5t-111.5 166.5-37 189q0 146 80.5 225t227.5 79q25 0 25 3t-1 5q-4 34-26 117-14 52-51.5 101t-82.5 49q-42 0-42-47 0-24 10.5-47.5t25-39.5 29.5-28.5 26-20 11-8.5q0-3-7-10-24-22-58.5-36.5t-65.5-14.5q-35 0-63.5 34t-41 75-12.5 75q0 88 51.5 142t138.5 54q82 0 155-53t117.5-126 65.5-153q6-22 15.5-66.5t14.5-66.5q3-12 14-18 118-60 227-60 48 0 127 18 1 1 4 1 5 0 9.5-4.5t4.5-8.5zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.glide = glide; \ No newline at end of file diff --git a/dist/fa/glideG.js b/dist/fa/glideG.js new file mode 100644 index 000000000..6e8a08b5f --- /dev/null +++ b/dist/fa/glideG.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.glideG = void 0; +var glideG = { + "viewBox": "0 0 1535 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M744 305q0-24-2-38.5t-8.5-30-21-23-37.5-7.5q-39 0-78 23-105 58-159 190.5t-54 269.5q0 44 8.5 85.5t26.5 80.5 52.5 62.5 81.5 23.5q4 0 18 0.5t20 0 16-3 15-8.5 7-16q16-77 48-231.5t48-231.5q19-91 19-146zM1498 961q0 7-7.5 13.5t-15.5 6.5l-6-1q-22-3-62-11t-72-12.5-63-4.5q-167 0-351 93-15 8-21 27-10 36-24.5 105.5t-22.5 100.5q-23 91-70 179.5t-112.5 164.5-154.5 123-185 47q-135 0-214.5-83.5t-79.5-219.5q0-53 19.5-117t63-116.5 97.5-52.5q38 0 120 33.5t83 61.5q0 1-16.5 12.5t-39.5 31-46 44.5-39 61-16 74q0 33 16.5 53t48.5 20q45 0 85-31.5t66.5-78 48-105.5 32.5-107 16-90v-9q0-2-3.5-3.5t-8.5-1.5h-10t-10 0.5-6 0.5q-227 0-352-122.5t-125-348.5q0-108 34.5-221t96-210 156-167.5 204.5-89.5q52-9 106-9 374 0 374 360 0 98-38 273t-43 211l3 3q101-57 182.5-88t167.5-31q22 0 53 13 19 7 80 102.5t61 116.5z" + } + }] +}; +exports.glideG = glideG; \ No newline at end of file diff --git a/dist/fa/globe.js b/dist/fa/globe.js new file mode 100644 index 000000000..2277afa1c --- /dev/null +++ b/dist/fa/globe.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.globe = void 0; +var globe = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M768 128q209 0 385.5 103t279.5 279.5 103 385.5-103 385.5-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103zM1042 649q-2 1-9.5 9.5t-13.5 9.5q2 0 4.5-5t5-11 3.5-7q6-7 22-15 14-6 52-12 34-8 51 11-2-2 9.5-13t14.5-12q3-2 15-4.5t15-7.5l2-22q-12 1-17.5-7t-6.5-21q0 2-6 8 0-7-4.5-8t-11.5 1-9 1q-10-3-15-7.5t-8-16.5-4-15q-2-5-9.5-11t-9.5-10q-1-2-2.5-5.5t-3-6.5-4-5.5-5.5-2.5-7 5-7.5 10-4.5 5q-3-2-6-1.5t-4.5 1-4.5 3-5 3.5q-3 2-8.5 3t-8.5 2q15-5-1-11-10-4-16-3 9-4 7.5-12t-8.5-14h5q-1-4-8.5-8.5t-17.5-8.5-13-6q-8-5-34-9.5t-33-0.5q-5 6-4.5 10.5t4 14 3.5 12.5q1 6-5.5 13t-6.5 12q0 7 14 15.5t10 21.5q-3 8-16 16t-16 12q-5 8-1.5 18.5t10.5 16.5q2 2 1.5 4t-3.5 4.5-5.5 4-6.5 3.5l-3 2q-11 5-20.5-6t-13.5-26q-7-25-16-30-23-8-29 1-5-13-41-26-25-9-58-4 6-1 0-15-7-15-19-12 3-6 4-17.5t1-13.5q3-13 12-23 1-1 7-8.5t9.5-13.5 0.5-6q35 4 50-11 5-5 11.5-17t10.5-17q9-6 14-5.5t14.5 5.5 14.5 5q14 1 15.5-11t-7.5-20q12 1 3-17-4-7-8-9-12-4-27 5-8 4 2 8-1-1-9.5 10.5t-16.5 17.5-16-5q-1-1-5.5-13.5t-9.5-13.5q-8 0-16 15 3-8-11-15t-24-8q19-12-8-27-7-4-20.5-5t-19.5 4q-5 7-5.5 11.5t5 8 10.5 5.5 11.5 4 8.5 3q14 10 8 14-2 1-8.5 3.5t-11.5 4.5-6 4q-3 4 0 14t-2 14q-5-5-9-17.5t-7-16.5q7 9-25 6l-10-1q-4 0-16 2t-20.5 1-13.5-8q-4-8 0-20 1-4 4-2-4-3-11-9.5t-10-8.5q-46 15-94 41 6 1 12-1 5-2 13-6.5t10-5.5q34-14 42-7l5-5q14 16 20 25-7-4-30-1-20 6-22 12 7 12 5 18-4-3-11.5-10t-14.5-11-15-5q-16 0-22 1-146 80-235 222 7 7 12 8 4 1 5 9t2.5 11 11.5-3q9 8 3 19 1-1 44 27 19 17 21 21 3 11-10 18-1-2-9-9t-9-4q-3 5 0.5 18.5t10.5 12.5q-7 0-9.5 16t-2.5 35.5-1 23.5l2 1q-3 12 5.5 34.5t21.5 19.5q-13 3 20 43 6 8 8 9 3 2 12 7.5t15 10 10 10.5q4 5 10 22.5t14 23.5q-2 6 9.5 20t10.5 23q-1 0-2.5 1t-2.5 1q3 7 15.5 14t15.5 13q1 3 2 10t3 11 8 2q2-20-24-62-15-25-17-29-3-5-5.5-15.5t-4.5-14.5q2 0 6 1.5t8.5 3.5 7.5 4 2 3q-3 7 2 17.5t12 18.5 17 19 12 13q6 6 14 19.5t0 13.5q9 0 20 10.5t17 19.5q5 8 8 26t5 24q2 7 8.5 13.5t12.5 9.5l16 8t13 7q5 2 18.5 10.5t21.5 11.5q10 4 16 4t14.5-2.5 13.5-3.5q15-2 29 15t21 21q36 19 55 11-2 1 0.5 7.5t8 15.5 9 14.5 5.5 8.5q5 6 18 15t18 15q6-4 7-9-3 8 7 20t18 10q14-3 14-32-31 15-49-18 0-1-2.5-5.5t-4-8.5-2.5-8.5 0-7.5 5-3q9 0 10-3.5t-2-12.5-4-13q-1-8-11-20t-12-15q-5 9-16 8t-16-9q0 1-1.5 5.5t-1.5 6.5q-13 0-15-1 1-3 2.5-17.5t3.5-22.5q1-4 5.5-12t7.5-14.5 4-12.5-4.5-9.5-17.5-2.5q-19 1-26 20-1 3-3 10.5t-5 11.5-9 7q-7 3-24 2t-24-5q-13-8-22.5-29t-9.5-37q0-10 2.5-26.5t3-25-5.5-24.5q3-2 9-9.5t10-10.5q2-1 4.5-1.5t4.5 0 4-1.5 3-6q-1-1-4-3-3-3-4-3 7 3 28.5-1.5t27.5 1.5q15 11 22-2 0-1-2.5-9.5t-0.5-13.5q5 27 29 9 3 3 15.5 5t17.5 5q3 2 7 5.5t5.5 4.5 5-0.5 8.5-6.5q10 14 12 24 11 40 19 44 7 3 11 2t4.5-9.5 0-14-1.5-12.5l-1-8v-18l-1-8q-15-3-18.5-12t1.5-18.5 15-18.5q1-1 8-3.5t15.5-6.5 12.5-8q21-19 15-35 7 0 11-9-1 0-5-3t-7.5-5-4.5-2q9-5 2-16 5-3 7.5-11t7.5-10q9 12 21 2 8-8 1-16 5-7 20.5-10.5t18.5-9.5q7 2 8-2t1-12 3-12q4-5 15-9t13-5l17-11q3-4 0-4 18 2 31-11 10-11-6-20 3-6-3-9.5t-15-5.5q3-1 11.5-0.5t10.5-1.5q15-10-7-16-17-5-43 12zM879 1526q206-36 351-189-3-3-12.5-4.5t-12.5-3.5q-18-7-24-8 1-7-2.5-13t-8-9-12.5-8-11-7q-2-2-7-6t-7-5.5-7.5-4.5-8.5-2-10 1l-3 1q-3 1-5.5 2.5t-5.5 3-4 3 0 2.5q-21-17-36-22-5-1-11-5.5t-10.5-7-10-1.5-11.5 7q-5 5-6 15t-2 13q-7-5 0-17.5t2-18.5q-3-6-10.5-4.5t-12 4.5-11.5 8.5-9 6.5-8.5 5.5-8.5 7.5q-3 4-6 12t-5 11q-2-4-11.5-6.5t-9.5-5.5q2 10 4 35t5 38q7 31-12 48-27 25-29 40-4 22 12 26 0 7-8 20.5t-7 21.5q0 6 2 16z" + } + }] +}; +exports.globe = globe; \ No newline at end of file diff --git a/dist/fa/google.js b/dist/fa/google.js new file mode 100644 index 000000000..d0c4a0c5c --- /dev/null +++ b/dist/fa/google.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.google = void 0; +var google = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M768 786h725q12 67 12 128 0 217-91 387.5t-259.5 266.5-386.5 96q-157 0-299-60.5t-245-163.5-163.5-245-60.5-299 60.5-299 163.5-245 245-163.5 299-60.5q300 0 515 201l-209 201q-123-119-306-119-129 0-238.5 65t-173.5 176.5-64 243.5 64 243.5 173.5 176.5 238.5 65q87 0 160-24t120-60 82-82 51.5-87 22.5-78h-436v-264z" + } + }] +}; +exports.google = google; \ No newline at end of file diff --git a/dist/fa/googlePlus.js b/dist/fa/googlePlus.js new file mode 100644 index 000000000..0ee1bad67 --- /dev/null +++ b/dist/fa/googlePlus.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.googlePlus = void 0; +var googlePlus = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1437 913q0 208-87 370.5t-248 254-369 91.5q-149 0-285-58t-234-156-156-234-58-285 58-285 156-234 234-156 285-58q286 0 491 192l-199 191q-117-113-292-113-123 0-227.5 62t-165.5 168.5-61 232.5 61 232.5 165.5 168.5 227.5 62q83 0 152.5-23t114.5-57.5 78.5-78.5 49-83 21.5-74h-416v-252h692q12 63 12 122zM2304 791v210h-209v209h-210v-209h-209v-210h209v-209h210v209h209z" + } + }] +}; +exports.googlePlus = googlePlus; \ No newline at end of file diff --git a/dist/fa/googlePlusCircle.js b/dist/fa/googlePlusCircle.js new file mode 100644 index 000000000..017867f2f --- /dev/null +++ b/dist/fa/googlePlusCircle.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.googlePlusCircle = void 0; +var googlePlusCircle = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M917 905q0-33-6-64h-362v132h217q-12 76-74.5 120.5t-142.5 44.5q-99 0-169-71.5t-70-170.5 70-170.5 169-71.5q93 0 153 59l104-101q-108-100-257-100-160 0-272 112.5t-112 271.5 112 271.5 272 112.5q165 0 266.5-105t101.5-270zM1262 951h109v-110h-109v-110h-110v110h-110v110h110v110h110v-110zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.googlePlusCircle = googlePlusCircle; \ No newline at end of file diff --git a/dist/fa/googlePlusOfficial.js b/dist/fa/googlePlusOfficial.js new file mode 100644 index 000000000..c973b8c0c --- /dev/null +++ b/dist/fa/googlePlusOfficial.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.googlePlusOfficial = void 0; +var googlePlusOfficial = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M917 905q0-33-6-64h-362v132h217q-12 76-74.5 120.5t-142.5 44.5q-99 0-169-71.5t-70-170.5 70-170.5 169-71.5q93 0 153 59l104-101q-108-100-257-100-160 0-272 112.5t-112 271.5 112 271.5 272 112.5q165 0 266.5-105t101.5-270zM1262 951h109v-110h-109v-110h-110v110h-110v110h110v110h110v-110zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.googlePlusOfficial = googlePlusOfficial; \ No newline at end of file diff --git a/dist/fa/googlePlusSquare.js b/dist/fa/googlePlusSquare.js new file mode 100644 index 000000000..3b0afce5b --- /dev/null +++ b/dist/fa/googlePlusSquare.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.googlePlusSquare = void 0; +var googlePlusSquare = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M917 905q0-26-6-64h-362v132h217q-3 24-16.5 50t-37.5 53-66.5 44.5-96.5 17.5q-99 0-169-71t-70-171 70-171 169-71q92 0 153 59l104-101q-108-100-257-100-160 0-272 112.5t-112 271.5 112 271.5 272 112.5q165 0 266.5-105t101.5-270zM1262 951h109v-110h-109v-110h-110v110h-110v110h110v110h110v-110zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.googlePlusSquare = googlePlusSquare; \ No newline at end of file diff --git a/dist/fa/googleWallet.js b/dist/fa/googleWallet.js new file mode 100644 index 000000000..058f08d86 --- /dev/null +++ b/dist/fa/googleWallet.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.googleWallet = void 0; +var googleWallet = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M441 672q33 0 52 26 266 364 362 774h-446q-127-441-367-749-12-16-3-33.5t29-17.5h373zM1000 1029q-49 199-125 393-79-310-256-594 40-221 44-449 211 340 337 650zM1099 320q235 324 384.5 698.5t184.5 773.5h-451q-41-665-553-1472h435zM1792 896q0 424-101 812-67-560-359-1083-25-301-106-584-4-16 5.5-28.5t25.5-12.5h359q21 0 38.5 13t22.5 33q115 409 115 850z" + } + }] +}; +exports.googleWallet = googleWallet; \ No newline at end of file diff --git a/dist/fa/graduationCap.js b/dist/fa/graduationCap.js new file mode 100644 index 000000000..a67533b8a --- /dev/null +++ b/dist/fa/graduationCap.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.graduationCap = void 0; +var graduationCap = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1774 836l18 316q4 69-82 128t-235 93.5-323 34.5-323-34.5-235-93.5-82-128l18-316 574 181q22 7 48 7t48-7zM2304 512q0 23-22 31l-1120 352q-4 1-10 1t-10-1l-652-206q-43 34-71 111.5t-34 178.5q63 36 63 109 0 69-58 107l58 433q2 14-8 25-9 11-24 11h-192q-15 0-24-11-10-11-8-25l58-433q-58-38-58-107 0-73 65-111 11-207 98-330l-333-104q-22-8-22-31t22-31l1120-352q4-1 10-1t10 1l1120 352q22 8 22 31z" + } + }] +}; +exports.graduationCap = graduationCap; \ No newline at end of file diff --git a/dist/fa/gratipay.js b/dist/fa/gratipay.js new file mode 100644 index 000000000..992f85a7b --- /dev/null +++ b/dist/fa/gratipay.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.gratipay = void 0; +var gratipay = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M773 1302l350-473q16-22 24.5-59t-6-85-61.5-79q-40-26-83-25.5t-73.5 17.5-54.5 45q-36 40-96 40-59 0-95-40-24-28-54.5-45t-73.5-17.5-84 25.5q-46 31-60.5 79t-6 85 24.5 59zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.gratipay = gratipay; \ No newline at end of file diff --git a/dist/fa/grav.js b/dist/fa/grav.js new file mode 100644 index 000000000..e01d70399 --- /dev/null +++ b/dist/fa/grav.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.grav = void 0; +var grav = { + "viewBox": "0 0 1794 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1291 476q-15-17-35-8.5t-26 28.5 5 38q14 17 40 14.5t34-20.5-18-52zM895 722q-8 8-19.5 8t-18.5-8q-8-8-8-19t8-18q7-8 18.5-8t19.5 8q7 7 7 18t-7 19zM1060 796l-35 35q-12 13-29.5 13t-30.5-13l-38-38q-12-13-12-30t12-30l35-35q12-12 29.5-12t30.5 12l38 39q12 12 12 29.5t-12 29.5zM951 666q-7 8-18.5 8t-19.5-8q-7-8-7-19t7-19q8-8 19-8t19 8 8 19-8 19zM1354 568q-34 64-107.5 85.5t-127.5-16.5q-38-28-61-66.5t-21-87.5 39-92 75.5-53 70.5 5 70 51q2 2 13 12.5t14.5 13.5 13 13.5 12.5 15.5 10 15.5 8.5 18 4 18.5 1 21-5 22-9.5 24zM1555 1050q3-20-8.5-34.5t-27.5-21.5-33-17-23-20q-40-71-84-98.5t-113-11.5q19-13 40-18.5t33-4.5l12 1q2-45-34-90 6-20 6.5-40.5t-2.5-30.5l-3-10q43-24 71-65t34-91q10-84-43-150.5t-137-76.5q-60-7-114 18.5t-82 74.5q-30 51-33.5 101t14.5 87 43.5 64 56.5 42q-45-4-88-36t-57-88q-28-108 32-222-16-21-29-32-50 0-89 19 19-24 42-37t36-14l13-1q0-50-13-78-10-21-32.5-28.5t-47 3.5-37.5 40q2-4 4-7-7 28-6.5 75.5t19 117 48.5 122.5q-25 14-47 36-35 16-85.5 70.5t-84.5 101.5l-33 46q-90 34-181 125.5t-75 162.5q1 16 11 27-15 12-30 30-21 25-21 54t21.5 40 63.5-6q41-19 77-49.5t55-60.5q-2-2-6.5-5t-20.5-7.5-33-3.5q23-5 51-12.5t40-10 27.5-6 26-4 23.5-0.5q14 7 22-34 7-37 7-90 0-102-40-150 106 103 101 219-1 29-15 50t-27 27l-13 6q-4 7-19 32t-26 45.5-26.5 52-25 61-17 63-6.5 66.5 10 63q-35-54-37-80-22 24-34.5 39t-33.5 42-30.5 46-16.5 41-0.5 38 25.5 27q45 25 144-64t190.5-221.5 122.5-228.5q86-52 145-115.5t86-119.5q47 93 154 178 104 83 167 80 39-2 46-43zM1794 896q0 182-71 348t-191 286-286.5 191-348.5 71-348.5-71-286.5-191-191-286-71-348 71-348 191-286 286.5-191 348.5-71 348.5 71 286.5 191 191 286 71 348z" + } + }] +}; +exports.grav = grav; \ No newline at end of file diff --git a/dist/fa/group.js b/dist/fa/group.js new file mode 100644 index 000000000..3428b0435 --- /dev/null +++ b/dist/fa/group.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.group = void 0; +var group = { + "viewBox": "0 0 1920 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M593 896q-162 5-265 128h-134q-82 0-138-40.5t-56-118.5q0-353 124-353 6 0 43.5 21t97.5 42.5 119 21.5q67 0 133-23-5 37-5 66 0 139 81 256zM1664 1533q0 120-73 189.5t-194 69.5h-874q-121 0-194-69.5t-73-189.5q0-53 3.5-103.5t14-109 26.5-108.5 43-97.5 62-81 85.5-53.5 111.5-20q10 0 43 21.5t73 48 107 48 135 21.5 135-21.5 107-48 73-48 43-21.5q61 0 111.5 20t85.5 53.5 62 81 43 97.5 26.5 108.5 14 109 3.5 103.5zM640 256q0 106-75 181t-181 75-181-75-75-181 75-181 181-75 181 75 75 181zM1344 640q0 159-112.5 271.5t-271.5 112.5-271.5-112.5-112.5-271.5 112.5-271.5 271.5-112.5 271.5 112.5 112.5 271.5zM1920 865q0 78-56 118.5t-138 40.5h-134q-103-123-265-128 81-117 81-256 0-29-5-66 66 23 133 23 59 0 119-21.5t97.5-42.5 43.5-21q124 0 124 353zM1792 256q0 106-75 181t-181 75-181-75-75-181 75-181 181-75 181 75 75 181z" + } + }] +}; +exports.group = group; \ No newline at end of file diff --git a/dist/fa/hSquare.js b/dist/fa/hSquare.js new file mode 100644 index 000000000..bba36713c --- /dev/null +++ b/dist/fa/hSquare.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.hSquare = void 0; +var hSquare = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1280 1344v-896q0-26-19-45t-45-19h-128q-26 0-45 19t-19 45v320h-512v-320q0-26-19-45t-45-19h-128q-26 0-45 19t-19 45v896q0 26 19 45t45 19h128q26 0 45-19t19-45v-320h512v320q0 26 19 45t45 19h128q26 0 45-19t19-45zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.hSquare = hSquare; \ No newline at end of file diff --git a/dist/fa/hackerNews.js b/dist/fa/hackerNews.js new file mode 100644 index 000000000..fe68c0c74 --- /dev/null +++ b/dist/fa/hackerNews.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.hackerNews = void 0; +var hackerNews = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M809 1004l266-499h-112l-157 312q-24 48-44 92l-42-92-155-312h-120l263 493v324h101v-318zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.hackerNews = hackerNews; \ No newline at end of file diff --git a/dist/fa/handGrabO.js b/dist/fa/handGrabO.js new file mode 100644 index 000000000..781a12a47 --- /dev/null +++ b/dist/fa/handGrabO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.handGrabO = void 0; +var handGrabO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M768 384q-53 0-90.5 37.5t-37.5 90.5v128h-32v-93q0-48-32-81.5t-80-33.5q-46 0-79 33t-33 79v429l-32-30v-172q0-48-32-81.5t-80-33.5q-46 0-79 33t-33 79v224q0 47 35 82l310 296q39 39 39 102 0 26 19 45t45 19h640q26 0 45-19t19-45v-25q0-41 10-77l108-436q10-36 10-77v-246q0-48-32-81.5t-80-33.5q-46 0-79 33t-33 79v32h-32v-125q0-40-25-72.5t-64-40.5q-14-2-23-2-46 0-79 33t-33 79v128h-32v-122q0-51-32.5-89.5t-82.5-43.5q-5-1-13-1zM768 256q84 0 149 50 57-34 123-34 59 0 111 27t86 76q27-7 59-7 100 0 170 71.5t70 171.5v246q0 51-13 108l-109 436q-6 24-6 71 0 80-56 136t-136 56h-640q-84 0-138-58.5t-54-142.5l-308-296q-76-73-76-175v-224q0-99 70.5-169.5t169.5-70.5q11 0 16 1 6-95 75.5-160t164.5-65q52 0 98 21 72-69 174-69z" + } + }] +}; +exports.handGrabO = handGrabO; \ No newline at end of file diff --git a/dist/fa/handLizardO.js b/dist/fa/handLizardO.js new file mode 100644 index 000000000..86cfd83e9 --- /dev/null +++ b/dist/fa/handLizardO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.handLizardO = void 0; +var handLizardO = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1151 0q61 0 116 28t91 77l572 781q118 159 118 359v355q0 80-56 136t-136 56h-384q-80 0-136-56t-56-136v-177l-286-143h-546q-80 0-136-56t-56-136v-32q0-119 84.5-203.5t203.5-84.5h420l42-128h-686q-100 0-173.5-67.5t-81.5-166.5q-65-79-65-182v-32q0-80 56-136t136-56h959zM1920 1600v-355q0-157-93-284l-573-781q-39-52-103-52h-959q-26 0-45 19t-19 45q0 32 1.5 49.5t9.5 40.5 25 43q10-31 35.5-50t56.5-19h832v32h-832q-26 0-45 19t-19 45q0 44 3 58 8 44 44 73t81 29h640 91q40 0 68 28t28 68q0 15-5 30l-64 192q-10 29-35 47.5t-56 18.5h-443q-66 0-113 47t-47 113v32q0 26 19 45t45 19h561q16 0 29 7l317 158q24 13 38.5 36t14.5 50v197q0 26 19 45t45 19h384q26 0 45-19t19-45z" + } + }] +}; +exports.handLizardO = handLizardO; \ No newline at end of file diff --git a/dist/fa/handODown.js b/dist/fa/handODown.js new file mode 100644 index 000000000..7783cea22 --- /dev/null +++ b/dist/fa/handODown.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.handODown = void 0; +var handODown = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1408 960q0-84-32-183t-64-194-32-167v-32h-640v32q0 35-12 67.5t-37 62.5-46 50-54 49q-9 8-14 12-81 72-145 112-22 14-68 38-3 1-22.5 10.5t-36 18.5-35.5 20-30.5 21.5-11.5 18.5q0 71 30.5 115.5t97.5 44.5q43 0 84.5-15t68-33 55-33 48.5-15v576q0 50 38.5 89t89.5 39q52 0 90-38t38-90v-331q46 35 103 35 69 0 119-53 32 18 69 18t73.5-17.5 52.5-47.5q24 4 56 4 85 0 126-48.5t41-135.5zM1280 192q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zM1536 956q0 142-77.5 230t-217.5 87l-5-1q-76 61-178 61-22 0-43-3-54 30-119 37v169q0 105-76 180.5t-181 75.5q-103 0-179-76t-76-180v-374q-54 22-128 22-121 0-188.5-81.5t-67.5-206.5q0-38 17.5-69.5t49.5-55 63-40.5 72-37 62-33q55-35 129-100 3-2 17-14t21.5-19 21.5-20.5 22.5-24 18-22.5 14-23.5 4.5-21.5v-288q0-53 37.5-90.5t90.5-37.5h640q53 0 90.5 37.5t37.5 90.5v288q0 59 59 223 69 190 69 317z" + } + }] +}; +exports.handODown = handODown; \ No newline at end of file diff --git a/dist/fa/handOLeft.js b/dist/fa/handOLeft.js new file mode 100644 index 000000000..51530b82d --- /dev/null +++ b/dist/fa/handOLeft.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.handOLeft = void 0; +var handOLeft = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1376 1408h32v-640h-32q-35 0-67.5-12t-62.5-37-50-46-49-54q-8-9-12-14-72-81-112-145-14-22-38-68-1-3-10.5-22.5t-18.5-36-20-35.5-21.5-30.5-18.5-11.5q-71 0-115.5 30.5t-44.5 97.5q0 43 15 84.5t33 68 33 55 15 48.5h-576q-50 0-89 38.5t-39 89.5q0 52 38 90t90 38h331q-15 17-25 47.5t-10 55.5q0 69 53 119-18 32-18 69t17.5 73.5 47.5 52.5q-4 24-4 56 0 85 48.5 126t135.5 41q84 0 183-32t194-64 167-32zM1664 1344q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zM1792 768v640q0 53-37.5 90.5t-90.5 37.5h-288q-59 0-223 59-190 69-317 69-142 0-230-77.5t-87-217.5l1-5q-61-76-61-178 0-22 3-43-33-57-37-119h-169q-105 0-180.5-76t-75.5-181q0-103 76-179t180-76h374q-22-60-22-128 0-122 81.5-189t206.5-67q38 0 69.5 17.5t55 49.5 40.5 63 37 72 33 62q35 55 100 129 2 3 14 17t19 21.5 20.5 21.5 24 22.5 22.5 18 23.5 14 21.5 4.5h288q53 0 90.5 37.5t37.5 90.5z" + } + }] +}; +exports.handOLeft = handOLeft; \ No newline at end of file diff --git a/dist/fa/handORight.js b/dist/fa/handORight.js new file mode 100644 index 000000000..152346a37 --- /dev/null +++ b/dist/fa/handORight.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.handORight = void 0; +var handORight = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M256 1344q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zM1664 768q0-51-39-89.5t-89-38.5h-576q0-20 15-48.5t33-55 33-68 15-84.5q0-67-44.5-97.5t-115.5-30.5q-24 0-90 139-24 44-37 65-40 64-112 145-71 81-101 106-69 57-140 57h-32v640h32q72 0 167 32t193.5 64 179.5 32q189 0 189-167 0-26-5-56 30-16 47.5-52.5t17.5-73.5-18-69q53-50 53-119 0-25-10-55.5t-25-47.5h331q52 0 90-38t38-90zM1792 767q0 105-75.5 181t-180.5 76h-169q-4 62-37 119 3 21 3 43 0 101-60 178 1 139-85 219.5t-227 80.5q-133 0-322-69-164-59-223-59h-288q-53 0-90.5-37.5t-37.5-90.5v-640q0-53 37.5-90.5t90.5-37.5h288q10 0 21.5-4.5t23.5-14 22.5-18 24-22.5 20.5-21.5 19-21.5 14-17q65-74 100-129 13-21 33-62t37-72 40.5-63 55-49.5 69.5-17.5q125 0 206.5 67t81.5 189q0 68-22 128h374q104 0 180 76t76 179z" + } + }] +}; +exports.handORight = handORight; \ No newline at end of file diff --git a/dist/fa/handOUp.js b/dist/fa/handOUp.js new file mode 100644 index 000000000..68ceed7af --- /dev/null +++ b/dist/fa/handOUp.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.handOUp = void 0; +var handOUp = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1280 1600q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zM1408 836q0-189-167-189-26 0-56 5-16-30-52.5-47.5t-73.5-17.5-69 18q-50-53-119-53-25 0-55.5 10t-47.5 25v-331q0-52-38-90t-90-38q-51 0-89.5 39t-38.5 89v576q-20 0-48.5-15t-55-33-68-33-84.5-15q-67 0-97.5 44.5t-30.5 115.5q0 24 139 90 44 24 65 37 64 40 145 112 81 71 106 101 57 69 57 140v32h640v-32q0-72 32-167t64-193.5 32-179.5zM1536 831q0 133-69 322-59 164-59 223v288q0 53-37.5 90.5t-90.5 37.5h-640q-53 0-90.5-37.5t-37.5-90.5v-288q0-10-4.5-21.5t-14-23.5-18-22.5-22.5-24-21.5-20.5-21.5-19-17-14q-74-65-129-100-21-13-62-33t-72-37-63-40.5-49.5-55-17.5-69.5q0-125 67-206.5t189-81.5q68 0 128 22v-374q0-104 76-180t179-76q105 0 181 75.5t76 180.5v169q62 4 119 37 21-3 43-3 101 0 178 60 139-1 219.5 85t80.5 227z" + } + }] +}; +exports.handOUp = handOUp; \ No newline at end of file diff --git a/dist/fa/handPaperO.js b/dist/fa/handPaperO.js new file mode 100644 index 000000000..e97d14b9d --- /dev/null +++ b/dist/fa/handPaperO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.handPaperO = void 0; +var handPaperO = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M880 128q-46 0-79 33t-33 79v656h-32v-528q0-46-33-79t-79-33-79 33-33 79v528 256l-154-205q-38-51-102-51-53 0-90.5 37.5t-37.5 90.5q0 43 26 77l384 512q38 51 102 51h688q34 0 61-22t34-56l76-405q5-32 5-59v-498q0-46-33-79t-79-33-79 33-33 79v272h-32v-528q0-46-33-79t-79-33-79 33-33 79v528h-32v-656q0-46-33-79t-79-33zM880 0q68 0 125.5 35.5t88.5 96.5q19-4 42-4 99 0 169.5 70.5t70.5 169.5v17q105-6 180.5 64t75.5 175v498q0 40-8 83l-76 404q-14 79-76.5 131t-143.5 52h-688q-60 0-114.5-27.5t-90.5-74.5l-384-512q-51-68-51-154 0-106 75-181t181-75q78 0 128 34v-434q0-99 70.5-169.5t169.5-70.5q23 0 42 4 31-61 88.5-96.5t125.5-35.5z" + } + }] +}; +exports.handPaperO = handPaperO; \ No newline at end of file diff --git a/dist/fa/handPeaceO.js b/dist/fa/handPeaceO.js new file mode 100644 index 000000000..b7e65715a --- /dev/null +++ b/dist/fa/handPeaceO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.handPeaceO = void 0; +var handPeaceO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1288 647q60 0 107 23 141 63 141 226v177q0 94-23 186l-85 339q-21 86-90.5 140t-157.5 54h-668q-106 0-181-75t-75-181v-401l-239-628q-17-45-17-91 0-106 75-181t181-75q80 0 145.5 45.5t93.5 119.5l17 44v-113q0-106 75-181t181-75 181 75 75 181v261q27-5 48-5 69 0 127.5 36.5t88.5 98.5zM1072 640q-33 0-60.5 18t-41.5 48l-74 163-71 155h55q50 0 90 31.5t50 80.5l154-338q10-20 10-46 0-46-33-79t-79-33zM1293 775q-22 0-40.5 8t-29 16-23.5 29.5-17 30.5-17 37l-132 290q-10 20-10 46 0 46 33 79t79 33q33 0 60.5-18t41.5-48l160-352q9-18 9-38 0-50-32-81.5t-82-31.5zM128 416q0 22 8 46l248 650v69l102-111q43-46 106-46h198l106-233v-535q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5v640h-64l-200-526q-14-37-47-59.5t-73-22.5q-53 0-90.5 37.5t-37.5 90.5zM1180 1664q44 0 78.5-27t45.5-70l85-339q19-73 19-155v-91l-141 310q-17 38-53 61t-78 23q-53 0-93.5-34.5t-48.5-86.5q-44 57-114 57h-208v-32h208q46 0 81-33t35-79-31-79-77-33h-296q-49 0-82 36l-126 136v308q0 53 37.5 90.5t90.5 37.5h668z" + } + }] +}; +exports.handPeaceO = handPeaceO; \ No newline at end of file diff --git a/dist/fa/handPointerO.js b/dist/fa/handPointerO.js new file mode 100644 index 000000000..88f22f5d1 --- /dev/null +++ b/dist/fa/handPointerO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.handPointerO = void 0; +var handPointerO = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 128q-53 0-90.5 37.5t-37.5 90.5v512 384l-151-202q-41-54-107-54-52 0-89 38t-37 90q0 43 26 77l384 512q38 51 102 51h718q22 0 39.5-13.5t22.5-34.5l92-368q24-96 24-194v-217q0-41-28-71t-68-30-68 28-28 68h-32v-61q0-48-32-81.5t-80-33.5q-46 0-79 33t-33 79v64h-32v-90q0-55-37-94.5t-91-39.5q-53 0-90.5 37.5t-37.5 90.5v96h-32v-570q0-55-37-94.5t-91-39.5zM640 0q107 0 181.5 77.5t74.5 184.5v220q22-2 32-2 99 0 173 69 47-21 99-21 113 0 184 87 27-7 56-7 94 0 159 67.5t65 161.5v217q0 116-28 225l-92 368q-16 64-68 104.5t-118 40.5h-718q-60 0-114.5-27.5t-90.5-74.5l-384-512q-51-68-51-154 0-105 74.5-180.5t179.5-75.5q71 0 130 35v-547q0-106 75-181t181-75zM768 1408v-384h-32v384h32zM1024 1408v-384h-32v384h32zM1280 1408v-384h-32v384h32z" + } + }] +}; +exports.handPointerO = handPointerO; \ No newline at end of file diff --git a/dist/fa/handRockO.js b/dist/fa/handRockO.js new file mode 100644 index 000000000..bebb2061f --- /dev/null +++ b/dist/fa/handRockO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.handRockO = void 0; +var handRockO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M768 384q-53 0-90.5 37.5t-37.5 90.5v128h-32v-93q0-48-32-81.5t-80-33.5q-46 0-79 33t-33 79v429l-32-30v-172q0-48-32-81.5t-80-33.5q-46 0-79 33t-33 79v224q0 47 35 82l310 296q39 39 39 102 0 26 19 45t45 19h640q26 0 45-19t19-45v-25q0-41 10-77l108-436q10-36 10-77v-246q0-48-32-81.5t-80-33.5q-46 0-79 33t-33 79v32h-32v-125q0-40-25-72.5t-64-40.5q-14-2-23-2-46 0-79 33t-33 79v128h-32v-122q0-51-32.5-89.5t-82.5-43.5q-5-1-13-1zM768 256q84 0 149 50 57-34 123-34 59 0 111 27t86 76q27-7 59-7 100 0 170 71.5t70 171.5v246q0 51-13 108l-109 436q-6 24-6 71 0 80-56 136t-136 56h-640q-84 0-138-58.5t-54-142.5l-308-296q-76-73-76-175v-224q0-99 70.5-169.5t169.5-70.5q11 0 16 1 6-95 75.5-160t164.5-65q52 0 98 21 72-69 174-69z" + } + }] +}; +exports.handRockO = handRockO; \ No newline at end of file diff --git a/dist/fa/handScissorsO.js b/dist/fa/handScissorsO.js new file mode 100644 index 000000000..8586722d2 --- /dev/null +++ b/dist/fa/handScissorsO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.handScissorsO = void 0; +var handScissorsO = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1073 1664h-177q-163 0-226-141-23-49-23-102v-5q-62-30-98.5-88.5t-36.5-127.5q0-38 5-48h-261q-106 0-181-75t-75-181 75-181 181-75h113l-44-17q-74-28-119.5-93.5t-45.5-145.5q0-106 75-181t181-75q46 0 91 17l628 239h401q106 0 181 75t75 181v668q0 88-54 157.5t-140 90.5l-339 85q-92 23-186 23zM1024 953l-155 71-163 74q-30 14-48 41.5t-18 60.5q0 46 33 79t79 33q26 0 46-10l338-154q-49-10-80.5-50t-31.5-90v-55zM1344 1264q0-46-33-79t-79-33q-26 0-46 10l-290 132q-28 13-37 17t-30.5 17-29.5 23.5-16 29-8 40.5q0 50 31.5 82t81.5 32q20 0 38-9l352-160q30-14 48-41.5t18-60.5zM1112 512l-650-248q-24-8-46-8-53 0-90.5 37.5t-37.5 90.5q0 40 22.5 73t59.5 47l526 200v64h-640q-53 0-90.5 37.5t-37.5 90.5 37.5 90.5 90.5 37.5h535l233-106v-198q0-63 46-106l111-102h-69zM1073 1536q82 0 155-19l339-85q43-11 70-45.5t27-78.5v-668q0-53-37.5-90.5t-90.5-37.5h-308l-136 126q-36 33-36 82v296q0 46 33 77t79 31 79-35 33-81v-208h32v208q0 70-57 114 52 8 86.5 48.5t34.5 93.5q0 42-23 78t-61 53l-310 141h91z" + } + }] +}; +exports.handScissorsO = handScissorsO; \ No newline at end of file diff --git a/dist/fa/handSpockO.js b/dist/fa/handSpockO.js new file mode 100644 index 000000000..e2b82be88 --- /dev/null +++ b/dist/fa/handSpockO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.handSpockO = void 0; +var handSpockO = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M459 1792q-77 0-137.5-47.5t-79.5-122.5l-101-401q-13-57-13-108 0-45-5-67l-116-477q-7-27-7-57 0-93 62-161t155-78q17-85 82.5-139t152.5-54q83 0 148 51.5t85 132.5l83 348 103-428q20-81 85-132.5t148-51.5q89 0 155.5 57.5t80.5 144.5q92 10 152 79t60 162q0 24-7 59l-123 512q10-7 37.5-28.5t38.5-29.5 35-23 41-20.5 41.5-11 49.5-5.5q105 0 180 74t75 179q0 62-28.5 118t-78.5 94l-507 380q-68 51-153 51h-694zM1104 128q-38 0-68.5 24t-39.5 62l-164 682h-127l-145-602q-9-38-39.5-62t-68.5-24q-48 0-80 33t-32 80q0 15 3 28l132 547h-26l-99-408q-9-37-40-62.5t-69-25.5q-47 0-80 33t-33 79q0 14 3 26l116 478q7 28 9 86t10 88l100 401q8 32 34 52.5t59 20.5h694q42 0 76-26l507-379q56-43 56-110 0-52-37.5-88.5t-89.5-36.5q-43 0-77 26l-307 230v-227q0-4 32-138t68-282 39-161q4-18 4-29 0-47-32-81t-79-34q-39 0-69.5 24t-39.5 62l-116 482h-26l150-624q3-14 3-28 0-48-31.5-82t-79.5-34z" + } + }] +}; +exports.handSpockO = handSpockO; \ No newline at end of file diff --git a/dist/fa/handStopO.js b/dist/fa/handStopO.js new file mode 100644 index 000000000..1952ed651 --- /dev/null +++ b/dist/fa/handStopO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.handStopO = void 0; +var handStopO = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M880 128q-46 0-79 33t-33 79v656h-32v-528q0-46-33-79t-79-33-79 33-33 79v528 256l-154-205q-38-51-102-51-53 0-90.5 37.5t-37.5 90.5q0 43 26 77l384 512q38 51 102 51h688q34 0 61-22t34-56l76-405q5-32 5-59v-498q0-46-33-79t-79-33-79 33-33 79v272h-32v-528q0-46-33-79t-79-33-79 33-33 79v528h-32v-656q0-46-33-79t-79-33zM880 0q68 0 125.5 35.5t88.5 96.5q19-4 42-4 99 0 169.5 70.5t70.5 169.5v17q105-6 180.5 64t75.5 175v498q0 40-8 83l-76 404q-14 79-76.5 131t-143.5 52h-688q-60 0-114.5-27.5t-90.5-74.5l-384-512q-51-68-51-154 0-106 75-181t181-75q78 0 128 34v-434q0-99 70.5-169.5t169.5-70.5q23 0 42 4 31-61 88.5-96.5t125.5-35.5z" + } + }] +}; +exports.handStopO = handStopO; \ No newline at end of file diff --git a/dist/fa/handshakeO.js b/dist/fa/handshakeO.js new file mode 100644 index 000000000..d9ddf8392 --- /dev/null +++ b/dist/fa/handshakeO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.handshakeO = void 0; +var handshakeO = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M192 1152q40 0 56-32t0-64-56-32-56 32 0 64 56 32zM1665 1094q-10-13-38.5-50t-41.5-54-38-49-42.5-53-40.5-47-45-49l-125 140q-83 94-208.5 92t-205.5-98q-57-69-56.5-158t58.5-157l177-206q-22-11-51-16.5t-47.5-6-56.5 0.5-49 1q-92 0-158 66l-158 158h-155v544q5 0 21-0.5t22 0 19.5 2 20.5 4.5 17.5 8.5 18.5 13.5l297 292q115 111 227 111 78 0 125-47 57 20 112.5-8t72.5-85q74 6 127-44 20-18 36-45.5t14-50.5q10 10 43 10 43 0 77-21t49.5-53 12-71.5-30.5-73.5zM1824 1152h96v-512h-93l-157-180q-66-76-169-76h-167q-89 0-146 67l-209 243q-28 33-28 75t27 75q43 51 110 52t111-49l193-218q25-23 53.5-21.5t47 27 8.5 56.5q16 19 56 63t60 68q29 36 82.5 105.5t64.5 84.5q52 66 60 140zM2112 1152q40 0 56-32t0-64-56-32-56 32 0 64 56 32zM2304 576v640q0 26-19 45t-45 19h-434q-27 65-82 106.5t-125 51.5q-33 48-80.5 81.5t-102.5 45.5q-42 53-104.5 81.5t-128.5 24.5q-60 34-126 39.5t-127.5-14-117-53.5-103.5-81l-287-282h-358q-26 0-45-19t-19-45v-672q0-26 19-45t45-19h421q14-14 47-48t47.5-48 44-40 50.5-37.5 51-25.5 62-19.5 68-5.5h117q99 0 181 56 82-56 181-56h167q35 0 67 6t56.5 14.5 51.5 26.5 44.5 31 43 39.5 39 42 41 48 41.5 48.5h355q26 0 45 19t19 45z" + } + }] +}; +exports.handshakeO = handshakeO; \ No newline at end of file diff --git a/dist/fa/hardOfHearing.js b/dist/fa/hardOfHearing.js new file mode 100644 index 000000000..79a6be784 --- /dev/null +++ b/dist/fa/hardOfHearing.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.hardOfHearing = void 0; +var hardOfHearing = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1056 832q0 26 19 45t45 19 45-19 19-45q0-146-103-249t-249-103-249 103-103 249q0 26 19 45t45 19 45-19 19-45q0-93 66-158.5t158-65.5 158 65.5 66 158.5zM835 256q-117 0-223.5 45.5t-184 123-123 184-45.5 223.5q0 26 19 45t45 19 45-19 19-45q0-185 131.5-316.5t316.5-131.5 316.5 131.5 131.5 316.5q0 55-18 103.5t-37.5 74.5-59.5 72q-34 39-52 63t-43.5 66.5-37 91-11.5 105.5q0 106-75 181t-181 75q-26 0-45 19t-19 45 19 45 45 19q159 0 271.5-112.5t112.5-271.5q0-41 7.5-74t26.5-64 33.5-50 45.5-54q35-41 53-64.5t44-67.5 37.5-93.5 11.5-108.5q0-117-45.5-223.5t-123-184-184-123-223.5-45.5zM591 975l226 226-579 579q-12 12-29 12t-29-12l-168-168q-12-12-12-29t12-29zM1612 12l168 168q12 12 12 29t-12 30l-233 233-26 25-71 71q-66-153-195-258l91-91 207-207q13-12 30-12t29 12z" + } + }] +}; +exports.hardOfHearing = hardOfHearing; \ No newline at end of file diff --git a/dist/fa/hashtag.js b/dist/fa/hashtag.js new file mode 100644 index 000000000..995477eb6 --- /dev/null +++ b/dist/fa/hashtag.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.hashtag = void 0; +var hashtag = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M991 1024l64-256h-254l-64 256h254zM1759 520l-56 224q-7 24-31 24h-327l-64 256h311q15 0 25 12 10 14 6 28l-56 224q-5 24-31 24h-327l-81 328q-7 24-31 24h-224q-16 0-26-12-9-12-6-28l78-312h-254l-81 328q-7 24-31 24h-225q-15 0-25-12-9-12-6-28l78-312h-311q-15 0-25-12-9-12-6-28l56-224q7-24 31-24h327l64-256h-311q-15 0-25-12-10-14-6-28l56-224q5-24 31-24h327l81-328q7-24 32-24h224q15 0 25 12 9 12 6 28l-78 312h254l81-328q7-24 32-24h224q15 0 25 12 9 12 6 28l-78 312h311q15 0 25 12 9 12 6 28z" + } + }] +}; +exports.hashtag = hashtag; \ No newline at end of file diff --git a/dist/fa/hddO.js b/dist/fa/hddO.js new file mode 100644 index 000000000..45efdeded --- /dev/null +++ b/dist/fa/hddO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.hddO = void 0; +var hddO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1040 1216q0 33-23.5 56.5t-56.5 23.5-56.5-23.5-23.5-56.5 23.5-56.5 56.5-23.5 56.5 23.5 23.5 56.5zM1296 1216q0 33-23.5 56.5t-56.5 23.5-56.5-23.5-23.5-56.5 23.5-56.5 56.5-23.5 56.5 23.5 23.5 56.5zM1408 1376v-320q0-13-9.5-22.5t-22.5-9.5h-1216q-13 0-22.5 9.5t-9.5 22.5v320q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5-9.5t9.5-22.5zM178 896h1180l-157-482q-4-13-16-21.5t-26-8.5h-782q-14 0-26 8.5t-16 21.5zM1536 1056v320q0 66-47 113t-113 47h-1216q-66 0-113-47t-47-113v-320q0-25 16-75l197-606q17-53 63-86t101-33h782q55 0 101 33t63 86l197 606q16 50 16 75z" + } + }] +}; +exports.hddO = hddO; \ No newline at end of file diff --git a/dist/fa/header.js b/dist/fa/header.js new file mode 100644 index 000000000..80a05bcbd --- /dev/null +++ b/dist/fa/header.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.header = void 0; +var header = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1682 1664q-44 0-132.5-3.5t-133.5-3.5q-44 0-132 3.5t-132 3.5q-24 0-37-20.5t-13-45.5q0-31 17-46t39-17 51-7 45-15q33-21 33-140l-1-391q0-21-1-31-13-4-50-4h-675q-38 0-51 4-1 10-1 31l-1 371q0 142 37 164 16 10 48 13t57 3.5 45 15 20 45.5q0 26-12.5 48t-36.5 22q-47 0-139.5-3.5t-138.5-3.5q-43 0-128 3.5t-127 3.5q-23 0-35.5-21t-12.5-45q0-30 15.5-45t36-17.5 47.5-7.5 42-15q33-23 33-143l-1-57v-813q0-3 0.5-26t0-36.5-1.5-38.5-3.5-42-6.5-36.5-11-31.5-16-18q-15-10-45-12t-53-2-41-14-18-45q0-26 12-48t36-22q46 0 138.5 3.5t138.5 3.5q42 0 126.5-3.5t126.5-3.5q25 0 37.5 22t12.5 48q0 30-17 43.5t-38.5 14.5-49.5 4-43 13q-35 21-35 160l1 320q0 21 1 32 13 3 39 3h699q25 0 38-3 1-11 1-32l1-320q0-139-35-160-18-11-58.5-12.5t-66-13-25.5-49.5q0-26 12.5-48t37.5-22q44 0 132 3.5t132 3.5q43 0 129-3.5t129-3.5q25 0 37.5 22t12.5 48q0 30-17.5 44t-40 14.5-51.5 3-44 12.5q-35 23-35 161l1 943q0 119 34 140 16 10 46 13.5t53.5 4.5 41.5 15.5 18 44.5q0 26-12 48t-36 22z" + } + }] +}; +exports.header = header; \ No newline at end of file diff --git a/dist/fa/headphones.js b/dist/fa/headphones.js new file mode 100644 index 000000000..ff0a099ed --- /dev/null +++ b/dist/fa/headphones.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.headphones = void 0; +var headphones = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1664 886q0 166-60 314l-20 49-185 33q-22 83-90.5 136.5t-156.5 53.5v32q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-576q0-14 9-23t23-9h64q14 0 23 9t9 23v32q71 0 130 35.5t93 95.5l68-12q29-95 29-193 0-148-88-279t-236.5-209-315.5-78-315.5 78-236.5 209-88 279q0 98 29 193l68 12q34-60 93-95.5t130-35.5v-32q0-14 9-23t23-9h64q14 0 23 9t9 23v576q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-32q-88 0-156.5-53.5t-90.5-136.5l-185-33-20-49q-60-148-60-314 0-151 67-291t179-242.5 266-163.5 320-61 320 61 266 163.5 179 242.5 67 291z" + } + }] +}; +exports.headphones = headphones; \ No newline at end of file diff --git a/dist/fa/heart.js b/dist/fa/heart.js new file mode 100644 index 000000000..5e7ead3d9 --- /dev/null +++ b/dist/fa/heart.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.heart = void 0; +var heart = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M896 1664q-26 0-44-18l-624-602q-10-8-27.5-26t-55.5-65.5-68-97.5-53.5-121-23.5-138q0-220 127-344t351-124q62 0 126.5 21.5t120 58 95.5 68.5 76 68q36-36 76-68t95.5-68.5 120-58 126.5-21.5q224 0 351 124t127 344q0 221-229 450l-623 600q-18 18-44 18z" + } + }] +}; +exports.heart = heart; \ No newline at end of file diff --git a/dist/fa/heartO.js b/dist/fa/heartO.js new file mode 100644 index 000000000..009ff2de8 --- /dev/null +++ b/dist/fa/heartO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.heartO = void 0; +var heartO = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1664 596q0-81-21.5-143t-55-98.5-81.5-59.5-94-31-98-8-112 25.5-110.5 64-86.5 72-60 61.5q-18 22-49 22t-49-22q-24-28-60-61.5t-86.5-72-110.5-64-112-25.5-98 8-94 31-81.5 59.5-55 98.5-21.5 143q0 168 187 355l581 560 580-559q188-188 188-356zM1792 596q0 221-229 450l-623 600q-18 18-44 18t-44-18l-624-602q-10-8-27.5-26t-55.5-65.5-68-97.5-53.5-121-23.5-138q0-220 127-344t351-124q62 0 126.5 21.5t120 58 95.5 68.5 76 68q36-36 76-68t95.5-68.5 120-58 126.5-21.5q224 0 351 124t127 344z" + } + }] +}; +exports.heartO = heartO; \ No newline at end of file diff --git a/dist/fa/heartbeat.js b/dist/fa/heartbeat.js new file mode 100644 index 000000000..a1a0d90ee --- /dev/null +++ b/dist/fa/heartbeat.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.heartbeat = void 0; +var heartbeat = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1280 1024h305q-5 6-10 10.5t-9 7.5l-3 4-623 600q-18 18-44 18t-44-18l-624-602q-5-2-21-20h369q22 0 39.5-13.5t22.5-34.5l70-281 190 667q6 20 23 33t39 13q21 0 38-13t23-33l146-485 56 112q18 35 57 35zM1792 596q0 145-103 300h-369l-111-221q-8-17-25.5-27t-36.5-8q-45 5-56 46l-129 430-196-686q-6-20-23.5-33t-39.5-13-39 13.5-22 34.5l-116 464h-423q-103-155-103-300 0-220 127-344t351-124q62 0 126.5 21.5t120 58 95.5 68.5 76 68q36-36 76-68t95.5-68.5 120-58 126.5-21.5q224 0 351 124t127 344z" + } + }] +}; +exports.heartbeat = heartbeat; \ No newline at end of file diff --git a/dist/fa/history.js b/dist/fa/history.js new file mode 100644 index 000000000..6347296e2 --- /dev/null +++ b/dist/fa/history.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.history = void 0; +var history = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1536 896q0 156-61 298t-164 245-245 164-298 61q-172 0-327-72.5t-264-204.5q-7-10-6.5-22.5t8.5-20.5l137-138q10-9 25-9 16 2 23 12 73 95 179 147t225 52q104 0 198.5-40.5t163.5-109.5 109.5-163.5 40.5-198.5-40.5-198.5-109.5-163.5-163.5-109.5-198.5-40.5q-98 0-188 35.5t-160 101.5l137 138q31 30 14 69-17 40-59 40h-448q-26 0-45-19t-19-45v-448q0-42 40-59 39-17 69 14l130 129q107-101 244.5-156.5t284.5-55.5q156 0 298 61t245 164 164 245 61 298zM896 608v448q0 14-9 23t-23 9h-320q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h224v-352q0-14 9-23t23-9h64q14 0 23 9t9 23z" + } + }] +}; +exports.history = history; \ No newline at end of file diff --git a/dist/fa/home.js b/dist/fa/home.js new file mode 100644 index 000000000..513cb32cf --- /dev/null +++ b/dist/fa/home.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.home = void 0; +var home = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1408 992v480q0 26-19 45t-45 19h-384v-384h-256v384h-384q-26 0-45-19t-19-45v-480q0-1 0.5-3t0.5-3l575-474 575 474q1 2 1 6zM1631 923l-62 74q-8 9-21 11h-3q-13 0-21-7l-692-577-692 577q-12 8-24 7-13-2-21-11l-62-74q-8-10-7-23.5t11-21.5l719-599q32-26 76-26t76 26l244 204v-195q0-14 9-23t23-9h192q14 0 23 9t9 23v408l219 182q10 8 11 21.5t-7 23.5z" + } + }] +}; +exports.home = home; \ No newline at end of file diff --git a/dist/fa/hospitalO.js b/dist/fa/hospitalO.js new file mode 100644 index 000000000..95adf084c --- /dev/null +++ b/dist/fa/hospitalO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.hospitalO = void 0; +var hospitalO = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M384 1312v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM384 1056v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM640 1056v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM384 800v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM1152 1312v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM896 1056v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM640 800v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM1152 1056v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM896 800v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM1152 800v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM896 1664h384v-1152h-256v32q0 40-28 68t-68 28h-448q-40 0-68-28t-28-68v-32h-256v1152h384v-224q0-13 9.5-22.5t22.5-9.5h320q13 0 22.5 9.5t9.5 22.5v224zM896 480v-320q0-13-9.5-22.5t-22.5-9.5h-64q-13 0-22.5 9.5t-9.5 22.5v96h-128v-96q0-13-9.5-22.5t-22.5-9.5h-64q-13 0-22.5 9.5t-9.5 22.5v320q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5-9.5t9.5-22.5v-96h128v96q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5-9.5t9.5-22.5zM1408 448v1280q0 26-19 45t-45 19h-1280q-26 0-45-19t-19-45v-1280q0-26 19-45t45-19h320v-288q0-40 28-68t68-28h448q40 0 68 28t28 68v288h320q26 0 45 19t19 45z" + } + }] +}; +exports.hospitalO = hospitalO; \ No newline at end of file diff --git a/dist/fa/hotel.js b/dist/fa/hotel.js new file mode 100644 index 000000000..b8a5571c5 --- /dev/null +++ b/dist/fa/hotel.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.hotel = void 0; +var hotel = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M256 1024h1728q26 0 45 19t19 45v448h-256v-256h-1536v256h-256v-1216q0-26 19-45t45-19h128q26 0 45 19t19 45v704zM832 704q0-106-75-181t-181-75-181 75-75 181 75 181 181 75 181-75 75-181zM2048 960v-64q0-159-112.5-271.5t-271.5-112.5h-704q-26 0-45 19t-19 45v384h1152z" + } + }] +}; +exports.hotel = hotel; \ No newline at end of file diff --git a/dist/fa/hourglass.js b/dist/fa/hourglass.js new file mode 100644 index 000000000..edb8a6d0c --- /dev/null +++ b/dist/fa/hourglass.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.hourglass = void 0; +var hourglass = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1504 1600q14 0 23 9t9 23v128q0 14-9 23t-23 9h-1472q-14 0-23-9t-9-23v-128q0-14 9-23t23-9h1472zM130 1536q3-55 16-107t30-95 46-87 53.5-76 64.5-69.5 66-60 70.5-55 66.5-47.5 65-43q-43-28-65-43t-66.5-47.5-70.5-55-66-60-64.5-69.5-53.5-76-46-87-30-95-16-107h1276q-3 55-16 107t-30 95-46 87-53.5 76-64.5 69.5-66 60-70.5 55-66.5 47.5-65 43q43 28 65 43t66.5 47.5 70.5 55 66 60 64.5 69.5 53.5 76 46 87 30 95 16 107h-1276zM1504 0q14 0 23 9t9 23v128q0 14-9 23t-23 9h-1472q-14 0-23-9t-9-23v-128q0-14 9-23t23-9h1472z" + } + }] +}; +exports.hourglass = hourglass; \ No newline at end of file diff --git a/dist/fa/hourglass1.js b/dist/fa/hourglass1.js new file mode 100644 index 000000000..bd69273fb --- /dev/null +++ b/dist/fa/hourglass1.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.hourglass1 = void 0; +var hourglass1 = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1408 128q0 261-106.5 461.5t-266.5 306.5q160 106 266.5 306.5t106.5 461.5h96q14 0 23 9t9 23v64q0 14-9 23t-23 9h-1472q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h96q0-261 106.5-461.5t266.5-306.5q-160-106-266.5-306.5t-106.5-461.5h-96q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h1472q14 0 23 9t9 23v64q0 14-9 23t-23 9h-96zM1280 128h-1024q0 66 9 128h1006q9-61 9-128zM1280 1664q0-130-34-249.5t-90.5-208-126.5-152-146-94.5h-230q-76 31-146 94.5t-126.5 152-90.5 208-34 249.5h1024z" + } + }] +}; +exports.hourglass1 = hourglass1; \ No newline at end of file diff --git a/dist/fa/hourglass2.js b/dist/fa/hourglass2.js new file mode 100644 index 000000000..8a6df7b74 --- /dev/null +++ b/dist/fa/hourglass2.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.hourglass2 = void 0; +var hourglass2 = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1408 128q0 261-106.5 461.5t-266.5 306.5q160 106 266.5 306.5t106.5 461.5h96q14 0 23 9t9 23v64q0 14-9 23t-23 9h-1472q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h96q0-261 106.5-461.5t266.5-306.5q-160-106-266.5-306.5t-106.5-461.5h-96q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h1472q14 0 23 9t9 23v64q0 14-9 23t-23 9h-96zM1280 128h-1024q0 206 85 384h854q85-178 85-384zM1223 1344q-54-141-145.5-241.5t-194.5-142.5h-230q-103 42-194.5 142.5t-145.5 241.5h910z" + } + }] +}; +exports.hourglass2 = hourglass2; \ No newline at end of file diff --git a/dist/fa/hourglass3.js b/dist/fa/hourglass3.js new file mode 100644 index 000000000..d24d55d87 --- /dev/null +++ b/dist/fa/hourglass3.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.hourglass3 = void 0; +var hourglass3 = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1408 128q0 261-106.5 461.5t-266.5 306.5q160 106 266.5 306.5t106.5 461.5h96q14 0 23 9t9 23v64q0 14-9 23t-23 9h-1472q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h96q0-261 106.5-461.5t266.5-306.5q-160-106-266.5-306.5t-106.5-461.5h-96q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h1472q14 0 23 9t9 23v64q0 14-9 23t-23 9h-96zM874 836q77-29 149-92.5t129.5-152.5 92.5-210 35-253h-1024q0 132 35 253t92.5 210 129.5 152.5 149 92.5q19 7 30.5 23.5t11.5 36.5-11.5 36.5-30.5 23.5q-137 51-244 196h700q-107-145-244-196-19-7-30.5-23.5t-11.5-36.5 11.5-36.5 30.5-23.5z" + } + }] +}; +exports.hourglass3 = hourglass3; \ No newline at end of file diff --git a/dist/fa/hourglassEnd.js b/dist/fa/hourglassEnd.js new file mode 100644 index 000000000..52b1b4342 --- /dev/null +++ b/dist/fa/hourglassEnd.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.hourglassEnd = void 0; +var hourglassEnd = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1408 128q0 261-106.5 461.5t-266.5 306.5q160 106 266.5 306.5t106.5 461.5h96q14 0 23 9t9 23v64q0 14-9 23t-23 9h-1472q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h96q0-261 106.5-461.5t266.5-306.5q-160-106-266.5-306.5t-106.5-461.5h-96q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h1472q14 0 23 9t9 23v64q0 14-9 23t-23 9h-96zM874 836q77-29 149-92.5t129.5-152.5 92.5-210 35-253h-1024q0 132 35 253t92.5 210 129.5 152.5 149 92.5q19 7 30.5 23.5t11.5 36.5-11.5 36.5-30.5 23.5q-137 51-244 196h700q-107-145-244-196-19-7-30.5-23.5t-11.5-36.5 11.5-36.5 30.5-23.5z" + } + }] +}; +exports.hourglassEnd = hourglassEnd; \ No newline at end of file diff --git a/dist/fa/hourglassHalf.js b/dist/fa/hourglassHalf.js new file mode 100644 index 000000000..f189eedfd --- /dev/null +++ b/dist/fa/hourglassHalf.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.hourglassHalf = void 0; +var hourglassHalf = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1408 128q0 261-106.5 461.5t-266.5 306.5q160 106 266.5 306.5t106.5 461.5h96q14 0 23 9t9 23v64q0 14-9 23t-23 9h-1472q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h96q0-261 106.5-461.5t266.5-306.5q-160-106-266.5-306.5t-106.5-461.5h-96q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h1472q14 0 23 9t9 23v64q0 14-9 23t-23 9h-96zM1280 128h-1024q0 206 85 384h854q85-178 85-384zM1223 1344q-54-141-145.5-241.5t-194.5-142.5h-230q-103 42-194.5 142.5t-145.5 241.5h910z" + } + }] +}; +exports.hourglassHalf = hourglassHalf; \ No newline at end of file diff --git a/dist/fa/hourglassO.js b/dist/fa/hourglassO.js new file mode 100644 index 000000000..7dcf0582c --- /dev/null +++ b/dist/fa/hourglassO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.hourglassO = void 0; +var hourglassO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1408 128q0 261-106.5 461.5t-266.5 306.5q160 106 266.5 306.5t106.5 461.5h96q14 0 23 9t9 23v64q0 14-9 23t-23 9h-1472q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h96q0-261 106.5-461.5t266.5-306.5q-160-106-266.5-306.5t-106.5-461.5h-96q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h1472q14 0 23 9t9 23v64q0 14-9 23t-23 9h-96zM874 836q77-29 149-92.5t129.5-152.5 92.5-210 35-253h-1024q0 132 35 253t92.5 210 129.5 152.5 149 92.5q19 7 30.5 23.5t11.5 36.5-11.5 36.5-30.5 23.5q-77 29-149 92.5t-129.5 152.5-92.5 210-35 253h1024q0-132-35-253t-92.5-210-129.5-152.5-149-92.5q-19-7-30.5-23.5t-11.5-36.5 11.5-36.5 30.5-23.5z" + } + }] +}; +exports.hourglassO = hourglassO; \ No newline at end of file diff --git a/dist/fa/hourglassStart.js b/dist/fa/hourglassStart.js new file mode 100644 index 000000000..28186ec6d --- /dev/null +++ b/dist/fa/hourglassStart.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.hourglassStart = void 0; +var hourglassStart = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1408 128q0 261-106.5 461.5t-266.5 306.5q160 106 266.5 306.5t106.5 461.5h96q14 0 23 9t9 23v64q0 14-9 23t-23 9h-1472q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h96q0-261 106.5-461.5t266.5-306.5q-160-106-266.5-306.5t-106.5-461.5h-96q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h1472q14 0 23 9t9 23v64q0 14-9 23t-23 9h-96zM1280 128h-1024q0 66 9 128h1006q9-61 9-128zM1280 1664q0-130-34-249.5t-90.5-208-126.5-152-146-94.5h-230q-76 31-146 94.5t-126.5 152-90.5 208-34 249.5h1024z" + } + }] +}; +exports.hourglassStart = hourglassStart; \ No newline at end of file diff --git a/dist/fa/houzz.js b/dist/fa/houzz.js new file mode 100644 index 000000000..c652aae76 --- /dev/null +++ b/dist/fa/houzz.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.houzz = void 0; +var houzz = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M512 1191l512-295v591l-512 296v-592zM0 896v591l512-296zM512 9v591l-512 296v-591zM512 600l512-295v591z" + } + }] +}; +exports.houzz = houzz; \ No newline at end of file diff --git a/dist/fa/html5.js b/dist/fa/html5.js new file mode 100644 index 000000000..b30f80d6c --- /dev/null +++ b/dist/fa/html5.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.html5 = void 0; +var html5 = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1130 597l16-175h-884l47 534h612l-22 228-197 53-196-53-13-140h-175l22 278 362 100h4v-1l359-99 50-544h-644l-15-181h674zM0 128h1408l-128 1438-578 162-574-162z" + } + }] +}; +exports.html5 = html5; \ No newline at end of file diff --git a/dist/fa/iCursor.js b/dist/fa/iCursor.js new file mode 100644 index 000000000..827174c8e --- /dev/null +++ b/dist/fa/iCursor.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iCursor = void 0; +var iCursor = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M832 128q-320 0-320 224v416h128v128h-128v544q0 224 320 224h64v128h-64q-272 0-384-146-112 146-384 146h-64v-128h64q320 0 320-224v-544h-128v-128h128v-416q0-224-320-224h-64v-128h64q272 0 384 146 112-146 384-146h64v128h-64z" + } + }] +}; +exports.iCursor = iCursor; \ No newline at end of file diff --git a/dist/fa/idBadge.js b/dist/fa/idBadge.js new file mode 100644 index 000000000..aa14573fd --- /dev/null +++ b/dist/fa/idBadge.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.idBadge = void 0; +var idBadge = { + "viewBox": "0 0 1280 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 1258q0 64-37 107t-91 43h-512q-54 0-91-43t-37-107 9-118 29.5-104 61-78.5 96.5-28.5q80 75 188 75t188-75q56 0 96.5 28.5t61 78.5 29.5 104 9 118zM870 739q0 94-67.5 160.5t-162.5 66.5-162.5-66.5-67.5-160.5 67.5-160.5 162.5-66.5 162.5 66.5 67.5 160.5zM1152 1632v-1376h-1024v1376q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5-9.5t9.5-22.5zM1280 160v1472q0 66-47 113t-113 47h-960q-66 0-113-47t-47-113v-1472q0-66 47-113t113-47h352v96q0 14 9 23t23 9h192q14 0 23-9t9-23v-96h352q66 0 113 47t47 113z" + } + }] +}; +exports.idBadge = idBadge; \ No newline at end of file diff --git a/dist/fa/idCard.js b/dist/fa/idCard.js new file mode 100644 index 000000000..a4db3f879 --- /dev/null +++ b/dist/fa/idCard.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.idCard = void 0; +var idCard = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M896 1212q0-54-7.5-100.5t-24.5-90-51-68.5-81-25q-64 64-156 64t-156-64q-47 0-81 25t-51 68.5-24.5 90-7.5 100.5q0 55 31.5 93.5t75.5 38.5h426q44 0 75.5-38.5t31.5-93.5zM768 768q0-80-56-136t-136-56-136 56-56 136 56 136 136 56 136-56 56-136zM1792 1248v-64q0-14-9-23t-23-9h-704q-14 0-23 9t-9 23v64q0 14 9 23t23 9h704q14 0 23-9t9-23zM1408 992v-64q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v64q0 14 9 23t23 9h320q14 0 23-9t9-23zM1792 992v-64q0-14-9-23t-23-9h-192q-14 0-23 9t-9 23v64q0 14 9 23t23 9h192q14 0 23-9t9-23zM1792 736v-64q0-14-9-23t-23-9h-704q-14 0-23 9t-9 23v64q0 14 9 23t23 9h704q14 0 23-9t9-23zM128 384h1792v-96q0-14-9-23t-23-9h-1728q-14 0-23 9t-9 23v96zM2048 288v1216q0 66-47 113t-113 47h-1728q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1728q66 0 113 47t47 113z" + } + }] +}; +exports.idCard = idCard; \ No newline at end of file diff --git a/dist/fa/idCardO.js b/dist/fa/idCardO.js new file mode 100644 index 000000000..dae1c5071 --- /dev/null +++ b/dist/fa/idCardO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.idCardO = void 0; +var idCardO = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M896 1212q0 55-31.5 93.5t-75.5 38.5h-426q-44 0-75.5-38.5t-31.5-93.5q0-54 7.5-100.5t24.5-90 51-68.5 81-25q64 64 156 64t156-64q47 0 81 25t51 68.5 24.5 90 7.5 100.5zM768 768q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM1792 1184v64q0 14-9 23t-23 9h-704q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h704q14 0 23 9t9 23zM1408 928v64q0 14-9 23t-23 9h-320q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h320q14 0 23 9t9 23zM1792 928v64q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h192q14 0 23 9t9 23zM1792 672v64q0 14-9 23t-23 9h-704q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h704q14 0 23 9t9 23zM1920 1504v-1120h-1792v1120q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5-9.5t9.5-22.5zM2048 288v1216q0 66-47 113t-113 47h-1728q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1728q66 0 113 47t47 113z" + } + }] +}; +exports.idCardO = idCardO; \ No newline at end of file diff --git a/dist/fa/ils.js b/dist/fa/ils.js new file mode 100644 index 000000000..11750188d --- /dev/null +++ b/dist/fa/ils.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ils = void 0; +var ils = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M992 624v496q0 14-9 23t-23 9h-160q-14 0-23-9t-9-23v-496q0-112-80-192t-192-80h-272v1152q0 14-9 23t-23 9h-160q-14 0-23-9t-9-23v-1344q0-14 9-23t23-9h464q135 0 249 66.5t180.5 180.5 66.5 249zM1376 160v880q0 135-66.5 249t-180.5 180.5-249 66.5h-464q-14 0-23-9t-9-23v-960q0-14 9-23t23-9h160q14 0 23 9t9 23v768h272q112 0 192-80t80-192v-880q0-14 9-23t23-9h160q14 0 23 9t9 23z" + } + }] +}; +exports.ils = ils; \ No newline at end of file diff --git a/dist/fa/image.js b/dist/fa/image.js new file mode 100644 index 000000000..686bfea1f --- /dev/null +++ b/dist/fa/image.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.image = void 0; +var image = { + "viewBox": "0 0 1920 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 576q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM1664 960v448h-1408v-192l320-320 160 160 512-512zM1760 256h-1600q-13 0-22.5 9.5t-9.5 22.5v1216q0 13 9.5 22.5t22.5 9.5h1600q13 0 22.5-9.5t9.5-22.5v-1216q0-13-9.5-22.5t-22.5-9.5zM1920 288v1216q0 66-47 113t-113 47h-1600q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1600q66 0 113 47t47 113z" + } + }] +}; +exports.image = image; \ No newline at end of file diff --git a/dist/fa/imdb.js b/dist/fa/imdb.js new file mode 100644 index 000000000..028b8b1d2 --- /dev/null +++ b/dist/fa/imdb.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.imdb = void 0; +var imdb = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M922 797v182q0 4 0.5 15t0 15l-1.5 12t-3.5 11.5-6.5 7.5-11 5.5-16 1.5v-309q9 0 16 1t11 5 6.5 5.5 3.5 9.5 1 10.5v13.5 14zM1238 893v121q0 1 0.5 12.5t0 15.5-2.5 11.5-7.5 10.5-13.5 3q-9 0-14-9-4-10-4-165v-7-8.5-9t1.5-8.5l3.5-7t5-5.5 8-1.5q6 0 10 1.5t6.5 4.5 4 6 2 8.5 0.5 8v9.5 9zM180 1129h122v-472h-122v472zM614 1129h106v-472h-159l-28 221q-20-148-32-221h-158v472h107v-312l45 312h76l43-319v319zM1039 824q0-67-5-90-3-16-11-28.5t-17-20.5-25-14-26.5-8.5-31-4-29-1.5h-29.5-12-91v472h56q169 1 197-24.5t25-180.5q-1-62-1-100zM1356 1021v-133q0-29-2-45t-9.5-33.5-24.5-25-46-7.5q-46 0-77 34v-154h-117v472h110l7-30q30 36 77 36 50 0 66-30.5t16-83.5zM1536 288v1216q0 66-47 113t-113 47h-1216q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1216q66 0 113 47t47 113z" + } + }] +}; +exports.imdb = imdb; \ No newline at end of file diff --git a/dist/fa/inbox.js b/dist/fa/inbox.js new file mode 100644 index 000000000..c8a09815a --- /dev/null +++ b/dist/fa/inbox.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.inbox = void 0; +var inbox = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1023 960h316q-1-3-2.5-8.5t-2.5-7.5l-212-496h-708l-212 496q-1 3-2.5 8.5t-2.5 7.5h316l95 192h320zM1536 990v482q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-482q0-62 25-123l238-552q10-25 36.5-42t52.5-17h832q26 0 52.5 17t36.5 42l238 552q25 61 25 123z" + } + }] +}; +exports.inbox = inbox; \ No newline at end of file diff --git a/dist/fa/indent.js b/dist/fa/indent.js new file mode 100644 index 000000000..6ff70aee7 --- /dev/null +++ b/dist/fa/indent.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.indent = void 0; +var indent = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M352 832q0 14-9 23l-288 288q-9 9-23 9-13 0-22.5-9.5t-9.5-22.5v-576q0-13 9.5-22.5t22.5-9.5q14 0 23 9l288 288q9 9 9 23zM1792 1312v192q0 13-9.5 22.5t-22.5 9.5h-1728q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1728q13 0 22.5 9.5t9.5 22.5zM1792 928v192q0 13-9.5 22.5t-22.5 9.5h-1088q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1088q13 0 22.5 9.5t9.5 22.5zM1792 544v192q0 13-9.5 22.5t-22.5 9.5h-1088q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1088q13 0 22.5 9.5t9.5 22.5zM1792 160v192q0 13-9.5 22.5t-22.5 9.5h-1728q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1728q13 0 22.5 9.5t9.5 22.5z" + } + }] +}; +exports.indent = indent; \ No newline at end of file diff --git a/dist/fa/index.js b/dist/fa/index.js new file mode 100644 index 000000000..083822fb8 --- /dev/null +++ b/dist/fa/index.js @@ -0,0 +1,7873 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.building = exports.bug = exports.btc = exports.briefcase = exports.braille = exports.bookmarkO = exports.bookmark = exports.book = exports.bomb = exports.bolt = exports.bold = exports.bluetoothB = exports.bluetooth = exports.blind = exports.blackTie = exports.bitcoin = exports.bitbucketSquare = exports.bitbucket = exports.birthdayCake = exports.binoculars = exports.bicycle = exports.bellSlashO = exports.bellSlash = exports.bellO = exports.bell = exports.behanceSquare = exports.behance = exports.beer = exports.bed = exports.batteryThreeQuarters = exports.batteryQuarter = exports.batteryHalf = exports.batteryFull = exports.batteryEmpty = exports.battery4 = exports.battery3 = exports.battery2 = exports.battery1 = exports.battery0 = exports.battery = exports.bathtub = exports.bath = exports.bars = exports.barcode = exports.barChartO = exports.barChart = exports.bank = exports.bandcamp = exports.ban = exports.balanceScale = exports.backward = exports.automobile = exports.audioDescription = exports.at = exports.asterisk = exports.assistiveListeningSystems = exports.aslInterpreting = exports.arrowsV = exports.arrowsH = exports.arrowsAlt = exports.arrows = exports.arrowUp = exports.arrowRight = exports.arrowLeft = exports.arrowDown = exports.arrowCircleUp = exports.arrowCircleRight = exports.arrowCircleOUp = exports.arrowCircleORight = exports.arrowCircleOLeft = exports.arrowCircleODown = exports.arrowCircleLeft = exports.arrowCircleDown = exports.areaChart = exports.archive = exports.apple = exports.angleUp = exports.angleRight = exports.angleLeft = exports.angleDown = exports.angleDoubleUp = exports.angleDoubleRight = exports.angleDoubleLeft = exports.angleDoubleDown = exports.angellist = exports.android = exports.anchor = exports.americanSignLanguageInterpreting = exports.ambulance = exports.amazon = exports.alignRight = exports.alignLeft = exports.alignJustify = exports.alignCenter = exports.adn = exports.adjust = exports.addressCardO = exports.addressCard = exports.addressBookO = exports.addressBook = void 0; +exports.deafness = exports.deaf = exports.database = exports.dashcube = exports.dashboard = exports.cutlery = exports.cut = exports.cubes = exports.cube = exports.css3 = exports.crosshairs = exports.crop = exports.creditCardAlt = exports.creditCard = exports.creativeCommons = exports.copyright = exports.copy = exports.contao = exports.connectdevelop = exports.compress = exports.compass = exports.commentsO = exports.comments = exports.commentingO = exports.commenting = exports.commentO = exports.comment = exports.columns = exports.cogs = exports.cog = exports.coffee = exports.codiepie = exports.codepen = exports.codeFork = exports.code = exports.cny = exports.cloudUpload = exports.cloudDownload = exports.cloud = exports.close = exports.clone = exports.clockO = exports.clipboard = exports.circleThin = exports.circleONotch = exports.circleO = exports.circle = exports.chrome = exports.child = exports.chevronUp = exports.chevronRight = exports.chevronLeft = exports.chevronDown = exports.chevronCircleUp = exports.chevronCircleRight = exports.chevronCircleLeft = exports.chevronCircleDown = exports.checkSquareO = exports.checkSquare = exports.checkCircleO = exports.checkCircle = exports.check = exports.chainBroken = exports.chain = exports.certificate = exports.ccVisa = exports.ccStripe = exports.ccPaypal = exports.ccMastercard = exports.ccJcb = exports.ccDiscover = exports.ccDinersClub = exports.ccAmex = exports.cc = exports.cartPlus = exports.cartArrowDown = exports.caretUp = exports.caretSquareOUp = exports.caretSquareORight = exports.caretSquareOLeft = exports.caretSquareODown = exports.caretRight = exports.caretLeft = exports.caretDown = exports.car = exports.cameraRetro = exports.camera = exports.calendarTimesO = exports.calendarPlusO = exports.calendarO = exports.calendarMinusO = exports.calendarCheckO = exports.calendar = exports.calculator = exports.cab = exports.buysellads = exports.bus = exports.bullseye = exports.bullhorn = exports.buildingO = void 0; +exports.futbolO = exports.frownO = exports.freeCodeCamp = exports.foursquare = exports.forward = exports.forumbee = exports.fortAwesome = exports.fonticons = exports.fontAwesome = exports.font = exports.folderOpenO = exports.folderOpen = exports.folderO = exports.folder = exports.floppyO = exports.flickr = exports.flask = exports.flash = exports.flagO = exports.flagCheckered = exports.flag = exports.fiveHundredPX = exports.firstOrder = exports.firefox = exports.fireExtinguisher = exports.fire = exports.filter = exports.film = exports.filesO = exports.fileZipO = exports.fileWordO = exports.fileVideoO = exports.fileTextO = exports.fileText = exports.fileSoundO = exports.filePowerpointO = exports.filePictureO = exports.filePhotoO = exports.filePdfO = exports.fileO = exports.fileMovieO = exports.fileImageO = exports.fileExcelO = exports.fileCodeO = exports.fileAudioO = exports.fileArchiveO = exports.file = exports.fighterJet = exports.female = exports.feed = exports.fax = exports.fastForward = exports.fastBackward = exports.facebookSquare = exports.facebookOfficial = exports.facebookF = exports.facebook = exports.fa = exports.eyedropper = exports.eyeSlash = exports.eye = exports.externalLinkSquare = exports.externalLink = exports.expeditedssl = exports.expand = exports.exclamationTriangle = exports.exclamationCircle = exports.exclamation = exports.exchange = exports.euro = exports.eur = exports.etsy = exports.eraser = exports.envira = exports.envelopeSquare = exports.envelopeOpenO = exports.envelopeOpen = exports.envelopeO = exports.envelope = exports.empire = exports.ellipsisV = exports.ellipsisH = exports.eject = exports.eercast = exports.edit = exports.edge = exports.drupal = exports.dropbox = exports.driversLicenseO = exports.driversLicense = exports.dribbble = exports.download = exports.dotCircleO = exports.dollar = exports.digg = exports.diamond = exports.deviantart = exports.desktop = exports.delicious = exports.dedent = void 0; +exports.leaf = exports.lastfmSquare = exports.lastfm = exports.laptop = exports.language = exports.krw = exports.keyboardO = exports.key = exports.jsfiddle = exports.jpy = exports.joomla = exports.italic = exports.ioxhost = exports.intersex = exports.internetExplorer = exports.institution = exports.instagram = exports.inr = exports.infoCircle = exports.info = exports.industry = exports.indent = exports.inbox = exports.imdb = exports.image = exports.ils = exports.idCardO = exports.idCard = exports.idBadge = exports.iCursor = exports.html5 = exports.houzz = exports.hourglassStart = exports.hourglassO = exports.hourglassHalf = exports.hourglassEnd = exports.hourglass3 = exports.hourglass2 = exports.hourglass1 = exports.hourglass = exports.hotel = exports.hospitalO = exports.home = exports.history = exports.heartbeat = exports.heartO = exports.heart = exports.headphones = exports.header = exports.hddO = exports.hashtag = exports.hardOfHearing = exports.handshakeO = exports.handStopO = exports.handSpockO = exports.handScissorsO = exports.handRockO = exports.handPointerO = exports.handPeaceO = exports.handPaperO = exports.handOUp = exports.handORight = exports.handOLeft = exports.handODown = exports.handLizardO = exports.handGrabO = exports.hackerNews = exports.hSquare = exports.group = exports.grav = exports.gratipay = exports.graduationCap = exports.googleWallet = exports.googlePlusSquare = exports.googlePlusOfficial = exports.googlePlusCircle = exports.googlePlus = exports.google = exports.globe = exports.glideG = exports.glide = exports.glass = exports.gittip = exports.gitlab = exports.githubSquare = exports.githubAlt = exports.github = exports.gitSquare = exports.git = exports.gift = exports.ggCircle = exports.gg = exports.getPocket = exports.genderless = exports.gears = exports.gear = exports.ge = exports.gbp = exports.gavel = exports.gamepad = void 0; +exports.pieChart = exports.pictureO = exports.photo = exports.phoneSquare = exports.phone = exports.percent = exports.pencilSquareO = exports.pencilSquare = exports.pencil = exports.paypal = exports.paw = exports.pauseCircleO = exports.pauseCircle = exports.pause = exports.paste = exports.paragraph = exports.paperclip = exports.paperPlaneO = exports.paperPlane = exports.paintBrush = exports.pagelines = exports.outdent = exports.optinMonster = exports.opera = exports.openid = exports.opencart = exports.odnoklassnikiSquare = exports.odnoklassniki = exports.objectUngroup = exports.objectGroup = exports.newspaperO = exports.neuter = exports.navicon = exports.music = exports.mousePointer = exports.motorcycle = exports.mortarBoard = exports.moonO = exports.money = exports.modx = exports.mobilePhone = exports.mobile = exports.mixcloud = exports.minusSquareO = exports.minusSquare = exports.minusCircle = exports.minus = exports.microphoneSlash = exports.microphone = exports.microchip = exports.mercury = exports.mehO = exports.meetup = exports.medkit = exports.medium = exports.meanpath = exports.maxcdn = exports.marsStrokeV = exports.marsStrokeH = exports.marsStroke = exports.marsDouble = exports.mars = exports.mapSigns = exports.mapPin = exports.mapO = exports.mapMarker = exports.map = exports.male = exports.mailReplyAll = exports.mailReply = exports.mailForward = exports.magnet = exports.magic = exports.lowVision = exports.longArrowUp = exports.longArrowRight = exports.longArrowLeft = exports.longArrowDown = exports.lock = exports.locationArrow = exports.listUl = exports.listOl = exports.listAlt = exports.list = exports.linux = exports.linode = exports.linkedinSquare = exports.linkedin = exports.link = exports.lineChart = exports.lightbulbO = exports.lifeSaver = exports.lifeRing = exports.lifeBuoy = exports.lifeBouy = exports.levelUp = exports.levelDown = exports.lemonO = exports.legal = exports.leanpub = void 0; +exports.snowflakeO = exports.snapchatSquare = exports.snapchatGhost = exports.snapchat = exports.smileO = exports.slideshare = exports.sliders = exports.slack = exports.skype = exports.skyatlas = exports.sitemap = exports.simplybuilt = exports.signing = exports.signal = exports.signOut = exports.signLanguage = exports.signIn = exports.shower = exports.shoppingCart = exports.shoppingBasket = exports.shoppingBag = exports.shirtsinbulk = exports.ship = exports.shield = exports.sheqel = exports.shekel = exports.shareSquareO = exports.shareSquare = exports.shareAltSquare = exports.shareAlt = exports.share = exports.server = exports.sendO = exports.send = exports.sellsy = exports.searchPlus = exports.searchMinus = exports.search = exports.scribd = exports.scissors = exports.save = exports.safari = exports.s15 = exports.rupee = exports.ruble = exports.rub = exports.rssSquare = exports.rss = exports.rouble = exports.rotateRight = exports.rotateLeft = exports.rocket = exports.road = exports.rmb = exports.retweet = exports.resistance = exports.replyAll = exports.reply = exports.repeat = exports.reorder = exports.renren = exports.remove = exports.registered = exports.refresh = exports.redditSquare = exports.redditAlien = exports.reddit = exports.recycle = exports.rebel = exports.ravelry = exports.random = exports.ra = exports.quoteRight = exports.quoteLeft = exports.quora = exports.questionCircleO = exports.questionCircle = exports.question = exports.qrcode = exports.qq = exports.puzzlePiece = exports.productHunt = exports.print = exports.powerOff = exports.podcast = exports.plusSquareO = exports.plusSquare = exports.plusCircle = exports.plus = exports.plug = exports.playCircleO = exports.playCircle = exports.play = exports.plane = exports.pinterestSquare = exports.pinterestP = exports.pinterest = exports.piedPiperPp = exports.piedPiperAlt = exports.piedPiper = void 0; +exports.trashO = exports.trash = exports.transgenderAlt = exports.transgender = exports.train = exports.trademark = exports.toggleUp = exports.toggleRight = exports.toggleOn = exports.toggleOff = exports.toggleLeft = exports.toggleDown = exports.tint = exports.timesRectangleO = exports.timesRectangle = exports.timesCircleO = exports.timesCircle = exports.times = exports.ticket = exports.thumbsUp = exports.thumbsOUp = exports.thumbsODown = exports.thumbsDown = exports.thumbTack = exports.thermometerThreeQuarters = exports.thermometerQuarter = exports.thermometerHalf = exports.thermometerFull = exports.thermometerEmpty = exports.thermometer4 = exports.thermometer3 = exports.thermometer2 = exports.thermometer1 = exports.thermometer0 = exports.thermometer = exports.themeisle = exports.thList = exports.thLarge = exports.th = exports.textWidth = exports.textHeight = exports.terminal = exports.tencentWeibo = exports.television = exports.telegram = exports.taxi = exports.tasks = exports.tags = exports.tag = exports.tachometer = exports.tablet = exports.table = exports.support = exports.superscript = exports.superpowers = exports.sunO = exports.suitcase = exports.subway = exports.subscript = exports.stumbleuponCircle = exports.stumbleupon = exports.strikethrough = exports.streetView = exports.stopCircleO = exports.stopCircle = exports.stop = exports.stickyNoteO = exports.stickyNote = exports.stethoscope = exports.stepForward = exports.stepBackward = exports.steamSquare = exports.steam = exports.starO = exports.starHalfO = exports.starHalfFull = exports.starHalfEmpty = exports.starHalf = exports.star = exports.stackOverflow = exports.stackExchange = exports.squareO = exports.square = exports.spotify = exports.spoon = exports.spinner = exports.spaceShuttle = exports.soundcloud = exports.sortUp = exports.sortNumericDesc = exports.sortNumericAsc = exports.sortDown = exports.sortDesc = exports.sortAsc = exports.sortAmountDesc = exports.sortAmountAsc = exports.sortAlphaDesc = exports.sortAlphaAsc = exports.sort = exports.soccerBallO = void 0; +exports.youtubeSquare = exports.youtubePlay = exports.youtube = exports.yoast = exports.yen = exports.yelp = exports.ycSquare = exports.yc = exports.yahoo = exports.yCombinatorSquare = exports.yCombinator = exports.xingSquare = exports.xing = exports.wrench = exports.wpforms = exports.wpexplorer = exports.wpbeginner = exports.wordpress = exports.won = exports.windows = exports.windowRestore = exports.windowMinimize = exports.windowMaximize = exports.windowCloseO = exports.windowClose = exports.wikipediaW = exports.wifi = exports.wheelchairAlt = exports.wheelchair = exports.whatsapp = exports.weixin = exports.weibo = exports.wechat = exports.warning = exports.volumeUp = exports.volumeOff = exports.volumeDown = exports.volumeControlPhone = exports.vk = exports.vine = exports.vimeoSquare = exports.vimeo = exports.videoCamera = exports.viadeoSquare = exports.viadeo = exports.viacoin = exports.venusMars = exports.venusDouble = exports.venus = exports.vcardO = exports.vcard = exports.users = exports.userTimes = exports.userSecret = exports.userPlus = exports.userO = exports.userMd = exports.userCircleO = exports.userCircle = exports.user = exports.usd = exports.usb = exports.upload = exports.unsorted = exports.unlockAlt = exports.unlock = exports.unlink = exports.university = exports.universalAccess = exports.undo = exports.underline = exports.umbrella = exports.twitterSquare = exports.twitter = exports.twitch = exports.tv = exports.turkishLira = exports.tumblrSquare = exports.tumblr = exports.tty = exports.tryIcon = exports.truck = exports.trophy = exports.tripadvisor = exports.trello = exports.tree = void 0; +var glass = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1699 186q0 35-43 78l-632 632v768h320q26 0 45 19t19 45-19 45-45 19h-896q-26 0-45-19t-19-45 19-45 45-19h320v-768l-632-632q-43-43-43-78 0-23 18-36.5t38-17.5 43-4h1408q23 0 43 4t38 17.5 18 36.5z" + } + }] +}; +exports.glass = glass; +var music = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1536 224v1120q0 50-34 89t-86 60.5-103.5 32-96.5 10.5-96.5-10.5-103.5-32-86-60.5-34-89 34-89 86-60.5 103.5-32 96.5-10.5q105 0 192 39v-537l-768 237v709q0 50-34 89t-86 60.5-103.5 32-96.5 10.5-96.5-10.5-103.5-32-86-60.5-34-89 34-89 86-60.5 103.5-32 96.5-10.5q105 0 192 39v-967q0-31 19-56.5t49-35.5l832-256q12-4 28-4 40 0 68 28t28 68z" + } + }] +}; +exports.music = music; +var search = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1152 832q0-185-131.5-316.5t-316.5-131.5-316.5 131.5-131.5 316.5 131.5 316.5 316.5 131.5 316.5-131.5 131.5-316.5zM1664 1664q0 52-38 90t-90 38q-54 0-90-38l-343-342q-179 124-399 124-143 0-273.5-55.5t-225-150-150-225-55.5-273.5 55.5-273.5 150-225 225-150 273.5-55.5 273.5 55.5 225 150 150 225 55.5 273.5q0 220-124 399l343 343q37 37 37 90z" + } + }] +}; +exports.search = search; +var envelopeO = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1664 1504v-768q-32 36-69 66-268 206-426 338-51 43-83 67t-86.5 48.5-102.5 24.5h-1-1q-48 0-102.5-24.5t-86.5-48.5-83-67q-158-132-426-338-37-30-69-66v768q0 13 9.5 22.5t22.5 9.5h1472q13 0 22.5-9.5t9.5-22.5zM1664 453v-11-13.5t-0.5-13-3-12.5-5.5-9-9-7.5-14-2.5h-1472q-13 0-22.5 9.5t-9.5 22.5q0 168 147 284 193 152 401 317 6 5 35 29.5t46 37.5 44.5 31.5 50.5 27.5 43 9h1 1q20 0 43-9t50.5-27.5 44.5-31.5 46-37.5 35-29.5q208-165 401-317 54-43 100.5-115.5t46.5-131.5zM1792 416v1088q0 66-47 113t-113 47h-1472q-66 0-113-47t-47-113v-1088q0-66 47-113t113-47h1472q66 0 113 47t47 113z" + } + }] +}; +exports.envelopeO = envelopeO; +var heart = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M896 1664q-26 0-44-18l-624-602q-10-8-27.5-26t-55.5-65.5-68-97.5-53.5-121-23.5-138q0-220 127-344t351-124q62 0 126.5 21.5t120 58 95.5 68.5 76 68q36-36 76-68t95.5-68.5 120-58 126.5-21.5q224 0 351 124t127 344q0 221-229 450l-623 600q-18 18-44 18z" + } + }] +}; +exports.heart = heart; +var star = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1664 647q0 22-26 48l-363 354 86 500q1 7 1 20 0 21-10.5 35.5t-30.5 14.5q-19 0-40-12l-449-236-449 236q-22 12-40 12-21 0-31.5-14.5t-10.5-35.5q0-6 2-20l86-500-364-354q-25-27-25-48 0-37 56-46l502-73 225-455q19-41 49-41t49 41l225 455 502 73q56 9 56 46z" + } + }] +}; +exports.star = star; +var starO = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1137 1004l306-297-422-62-189-382-189 382-422 62 306 297-73 421 378-199 377 199zM1664 647q0 22-26 48l-363 354 86 500q1 7 1 20 0 50-41 50-19 0-40-12l-449-236-449 236q-22 12-40 12-21 0-31.5-14.5t-10.5-35.5q0-6 2-20l86-500-364-354q-25-27-25-48 0-37 56-46l502-73 225-455q19-41 49-41t49 41l225 455 502 73q56 9 56 46z" + } + }] +}; +exports.starO = starO; +var user = { + "viewBox": "0 0 1280 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1280 1399q0 109-62.5 187t-150.5 78h-854q-88 0-150.5-78t-62.5-187q0-85 8.5-160.5t31.5-152 58.5-131 94-89 134.5-34.5q131 128 313 128t313-128q76 0 134.5 34.5t94 89 58.5 131 31.5 152 8.5 160.5zM1024 512q0 159-112.5 271.5t-271.5 112.5-271.5-112.5-112.5-271.5 112.5-271.5 271.5-112.5 271.5 112.5 112.5 271.5z" + } + }] +}; +exports.user = user; +var film = { + "viewBox": "0 0 1920 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M384 1600v-128q0-26-19-45t-45-19h-128q-26 0-45 19t-19 45v128q0 26 19 45t45 19h128q26 0 45-19t19-45zM384 1216v-128q0-26-19-45t-45-19h-128q-26 0-45 19t-19 45v128q0 26 19 45t45 19h128q26 0 45-19t19-45zM384 832v-128q0-26-19-45t-45-19h-128q-26 0-45 19t-19 45v128q0 26 19 45t45 19h128q26 0 45-19t19-45zM1408 1600v-512q0-26-19-45t-45-19h-768q-26 0-45 19t-19 45v512q0 26 19 45t45 19h768q26 0 45-19t19-45zM384 448v-128q0-26-19-45t-45-19h-128q-26 0-45 19t-19 45v128q0 26 19 45t45 19h128q26 0 45-19t19-45zM1792 1600v-128q0-26-19-45t-45-19h-128q-26 0-45 19t-19 45v128q0 26 19 45t45 19h128q26 0 45-19t19-45zM1408 832v-512q0-26-19-45t-45-19h-768q-26 0-45 19t-19 45v512q0 26 19 45t45 19h768q26 0 45-19t19-45zM1792 1216v-128q0-26-19-45t-45-19h-128q-26 0-45 19t-19 45v128q0 26 19 45t45 19h128q26 0 45-19t19-45zM1792 832v-128q0-26-19-45t-45-19h-128q-26 0-45 19t-19 45v128q0 26 19 45t45 19h128q26 0 45-19t19-45zM1792 448v-128q0-26-19-45t-45-19h-128q-26 0-45 19t-19 45v128q0 26 19 45t45 19h128q26 0 45-19t19-45zM1920 288v1344q0 66-47 113t-113 47h-1600q-66 0-113-47t-47-113v-1344q0-66 47-113t113-47h1600q66 0 113 47t47 113z" + } + }] +}; +exports.film = film; +var thLarge = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M768 1024v384q0 52-38 90t-90 38h-512q-52 0-90-38t-38-90v-384q0-52 38-90t90-38h512q52 0 90 38t38 90zM768 256v384q0 52-38 90t-90 38h-512q-52 0-90-38t-38-90v-384q0-52 38-90t90-38h512q52 0 90 38t38 90zM1664 1024v384q0 52-38 90t-90 38h-512q-52 0-90-38t-38-90v-384q0-52 38-90t90-38h512q52 0 90 38t38 90zM1664 256v384q0 52-38 90t-90 38h-512q-52 0-90-38t-38-90v-384q0-52 38-90t90-38h512q52 0 90 38t38 90z" + } + }] +}; +exports.thLarge = thLarge; +var th = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M512 1248v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zM512 736v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zM1152 1248v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zM512 224v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zM1152 736v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zM1792 1248v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zM1152 224v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zM1792 736v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zM1792 224v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68z" + } + }] +}; +exports.th = th; +var thList = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M512 1248v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zM512 736v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zM1792 1248v192q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h960q40 0 68 28t28 68zM512 224v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zM1792 736v192q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h960q40 0 68 28t28 68zM1792 224v192q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h960q40 0 68 28t28 68z" + } + }] +}; +exports.thList = thList; +var check = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1671 566q0 40-28 68l-724 724-136 136q-28 28-68 28t-68-28l-136-136-362-362q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 295 656-657q28-28 68-28t68 28l136 136q28 28 28 68z" + } + }] +}; +exports.check = check; +var close = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1298 1322q0 40-28 68l-136 136q-28 28-68 28t-68-28l-294-294-294 294q-28 28-68 28t-68-28l-136-136q-28-28-28-68t28-68l294-294-294-294q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 294 294-294q28-28 68-28t68 28l136 136q28 28 28 68t-28 68l-294 294 294 294q28 28 28 68z" + } + }] +}; +exports.close = close; +var remove = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1298 1322q0 40-28 68l-136 136q-28 28-68 28t-68-28l-294-294-294 294q-28 28-68 28t-68-28l-136-136q-28-28-28-68t28-68l294-294-294-294q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 294 294-294q28-28 68-28t68 28l136 136q28 28 28 68t-28 68l-294 294 294 294q28 28 28 68z" + } + }] +}; +exports.remove = remove; +var times = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1298 1322q0 40-28 68l-136 136q-28 28-68 28t-68-28l-294-294-294 294q-28 28-68 28t-68-28l-136-136q-28-28-28-68t28-68l294-294-294-294q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 294 294-294q28-28 68-28t68 28l136 136q28 28 28 68t-28 68l-294 294 294 294q28 28 28 68z" + } + }] +}; +exports.times = times; +var searchPlus = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 800v64q0 13-9.5 22.5t-22.5 9.5h-224v224q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-224h-224q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h224v-224q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5v224h224q13 0 22.5 9.5t9.5 22.5zM1152 832q0-185-131.5-316.5t-316.5-131.5-316.5 131.5-131.5 316.5 131.5 316.5 316.5 131.5 316.5-131.5 131.5-316.5zM1664 1664q0 53-37.5 90.5t-90.5 37.5q-54 0-90-38l-343-342q-179 124-399 124-143 0-273.5-55.5t-225-150-150-225-55.5-273.5 55.5-273.5 150-225 225-150 273.5-55.5 273.5 55.5 225 150 150 225 55.5 273.5q0 220-124 399l343 343q37 37 37 90z" + } + }] +}; +exports.searchPlus = searchPlus; +var searchMinus = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 800v64q0 13-9.5 22.5t-22.5 9.5h-576q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h576q13 0 22.5 9.5t9.5 22.5zM1152 832q0-185-131.5-316.5t-316.5-131.5-316.5 131.5-131.5 316.5 131.5 316.5 316.5 131.5 316.5-131.5 131.5-316.5zM1664 1664q0 53-37.5 90.5t-90.5 37.5q-54 0-90-38l-343-342q-179 124-399 124-143 0-273.5-55.5t-225-150-150-225-55.5-273.5 55.5-273.5 150-225 225-150 273.5-55.5 273.5 55.5 225 150 150 225 55.5 273.5q0 220-124 399l343 343q37 37 37 90z" + } + }] +}; +exports.searchMinus = searchMinus; +var powerOff = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1536 896q0 156-61 298t-164 245-245 164-298 61-298-61-245-164-164-245-61-298q0-182 80.5-343t226.5-270q43-32 95.5-25t83.5 50q32 42 24.5 94.5t-49.5 84.5q-98 74-151.5 181t-53.5 228q0 104 40.5 198.5t109.5 163.5 163.5 109.5 198.5 40.5 198.5-40.5 163.5-109.5 109.5-163.5 40.5-198.5q0-121-53.5-228t-151.5-181q-42-32-49.5-84.5t24.5-94.5q31-43 84-50t95 25q146 109 226.5 270t80.5 343zM896 128v640q0 52-38 90t-90 38-90-38-38-90v-640q0-52 38-90t90-38 90 38 38 90z" + } + }] +}; +exports.powerOff = powerOff; +var signal = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M256 1440v192q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h192q14 0 23 9t9 23zM640 1312v320q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-320q0-14 9-23t23-9h192q14 0 23 9t9 23zM1024 1056v576q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-576q0-14 9-23t23-9h192q14 0 23 9t9 23zM1408 672v960q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-960q0-14 9-23t23-9h192q14 0 23 9t9 23zM1792 160v1472q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-1472q0-14 9-23t23-9h192q14 0 23 9t9 23z" + } + }] +}; +exports.signal = signal; +var cog = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 896q0-106-75-181t-181-75-181 75-75 181 75 181 181 75 181-75 75-181zM1536 787v222q0 12-8 23t-20 13l-185 28q-19 54-39 91 35 50 107 138 10 12 10 25t-9 23q-27 37-99 108t-94 71q-12 0-26-9l-138-108q-44 23-91 38-16 136-29 186-7 28-36 28h-222q-14 0-24.5-8.5t-11.5-21.5l-28-184q-49-16-90-37l-141 107q-10 9-25 9-14 0-25-11-126-114-165-168-7-10-7-23 0-12 8-23 15-21 51-66.5t54-70.5q-27-50-41-99l-183-27q-13-2-21-12.5t-8-23.5v-222q0-12 8-23t19-13l186-28q14-46 39-92-40-57-107-138-10-12-10-24 0-10 9-23 26-36 98.5-107.5t94.5-71.5q13 0 26 10l138 107q44-23 91-38 16-136 29-186 7-28 36-28h222q14 0 24.5 8.5t11.5 21.5l28 184q49 16 90 37l142-107q9-9 24-9 13 0 25 10 129 119 165 170 7 8 7 22 0 12-8 23-15 21-51 66.5t-54 70.5q26 50 41 98l183 28q13 2 21 12.5t8 23.5z" + } + }] +}; +exports.cog = cog; +var gear = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 896q0-106-75-181t-181-75-181 75-75 181 75 181 181 75 181-75 75-181zM1536 787v222q0 12-8 23t-20 13l-185 28q-19 54-39 91 35 50 107 138 10 12 10 25t-9 23q-27 37-99 108t-94 71q-12 0-26-9l-138-108q-44 23-91 38-16 136-29 186-7 28-36 28h-222q-14 0-24.5-8.5t-11.5-21.5l-28-184q-49-16-90-37l-141 107q-10 9-25 9-14 0-25-11-126-114-165-168-7-10-7-23 0-12 8-23 15-21 51-66.5t54-70.5q-27-50-41-99l-183-27q-13-2-21-12.5t-8-23.5v-222q0-12 8-23t19-13l186-28q14-46 39-92-40-57-107-138-10-12-10-24 0-10 9-23 26-36 98.5-107.5t94.5-71.5q13 0 26 10l138 107q44-23 91-38 16-136 29-186 7-28 36-28h222q14 0 24.5 8.5t11.5 21.5l28 184q49 16 90 37l142-107q9-9 24-9 13 0 25 10 129 119 165 170 7 8 7 22 0 12-8 23-15 21-51 66.5t-54 70.5q26 50 41 98l183 28q13 2 21 12.5t8 23.5z" + } + }] +}; +exports.gear = gear; +var trashO = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M512 736v576q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-576q0-14 9-23t23-9h64q14 0 23 9t9 23zM768 736v576q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-576q0-14 9-23t23-9h64q14 0 23 9t9 23zM1024 736v576q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-576q0-14 9-23t23-9h64q14 0 23 9t9 23zM1152 1460v-948h-896v948q0 22 7 40.5t14.5 27 10.5 8.5h832q3 0 10.5-8.5t14.5-27 7-40.5zM480 384h448l-48-117q-7-9-17-11h-317q-10 2-17 11zM1408 416v64q0 14-9 23t-23 9h-96v948q0 83-47 143.5t-113 60.5h-832q-66 0-113-58.5t-47-141.5v-952h-96q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h309l70-167q15-37 54-63t79-26h320q40 0 79 26t54 63l70 167h309q14 0 23 9t9 23z" + } + }] +}; +exports.trashO = trashO; +var home = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1408 992v480q0 26-19 45t-45 19h-384v-384h-256v384h-384q-26 0-45-19t-19-45v-480q0-1 0.5-3t0.5-3l575-474 575 474q1 2 1 6zM1631 923l-62 74q-8 9-21 11h-3q-13 0-21-7l-692-577-692 577q-12 8-24 7-13-2-21-11l-62-74q-8-10-7-23.5t11-21.5l719-599q32-26 76-26t76 26l244 204v-195q0-14 9-23t23-9h192q14 0 23 9t9 23v408l219 182q10 8 11 21.5t-7 23.5z" + } + }] +}; +exports.home = home; +var fileO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1468 380q28 28 48 76t20 88v1152q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h896q40 0 88 20t76 48zM1024 136v376h376q-10-29-22-41l-313-313q-12-12-41-22zM1408 1664v-1024h-416q-40 0-68-28t-28-68v-416h-768v1536h1280z" + } + }] +}; +exports.fileO = fileO; +var clockO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M896 544v448q0 14-9 23t-23 9h-320q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h224v-352q0-14 9-23t23-9h64q14 0 23 9t9 23zM1312 896q0-148-73-273t-198-198-273-73-273 73-198 198-73 273 73 273 198 198 273 73 273-73 198-198 73-273zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.clockO = clockO; +var road = { + "viewBox": "0 0 1920 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1111 996v-4l-24-320q-1-13-11-22.5t-23-9.5h-186q-13 0-23 9.5t-11 22.5l-24 320v4q-1 12 8 20t21 8h244q12 0 21-8t8-20zM1870 1463q0 73-46 73h-704q13 0 22-9.5t8-22.5l-20-256q-1-13-11-22.5t-23-9.5h-272q-13 0-23 9.5t-11 22.5l-20 256q-1 13 8 22.5t22 9.5h-704q-46 0-46-73 0-54 26-116l417-1044q8-19 26-33t38-14h339q-13 0-23 9.5t-11 22.5l-15 192q-1 14 8 23t22 9h166q13 0 22-9t8-23l-15-192q-1-13-11-22.5t-23-9.5h339q20 0 38 14t26 33l417 1044q26 62 26 116z" + } + }] +}; +exports.road = road; +var download = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1280 1344q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zM1536 1344q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zM1664 1120v320q0 40-28 68t-68 28h-1472q-40 0-68-28t-28-68v-320q0-40 28-68t68-28h465l135 136q58 56 136 56t136-56l136-136h464q40 0 68 28t28 68zM1339 551q17 41-14 70l-448 448q-18 19-45 19t-45-19l-448-448q-31-29-14-70 17-39 59-39h256v-448q0-26 19-45t45-19h256q26 0 45 19t19 45v448h256q42 0 59 39z" + } + }] +}; +exports.download = download; +var arrowCircleODown = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1120 928q0 12-10 24l-319 319q-11 9-23 9t-23-9l-320-320q-15-16-7-35 8-20 30-20h192v-352q0-14 9-23t23-9h192q14 0 23 9t9 23v352h192q14 0 23 9t9 23zM768 352q-148 0-273 73t-198 198-73 273 73 273 198 198 273 73 273-73 198-198 73-273-73-273-198-198-273-73zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.arrowCircleODown = arrowCircleODown; +var arrowCircleOUp = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1118 876q-8 20-30 20h-192v352q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-352h-192q-14 0-23-9t-9-23q0-12 10-24l319-319q11-9 23-9t23 9l320 320q15 16 7 35zM768 352q-148 0-273 73t-198 198-73 273 73 273 198 198 273 73 273-73 198-198 73-273-73-273-198-198-273-73zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.arrowCircleOUp = arrowCircleOUp; +var inbox = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1023 960h316q-1-3-2.5-8.5t-2.5-7.5l-212-496h-708l-212 496q-1 3-2.5 8.5t-2.5 7.5h316l95 192h320zM1536 990v482q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-482q0-62 25-123l238-552q10-25 36.5-42t52.5-17h832q26 0 52.5 17t36.5 42l238 552q25 61 25 123z" + } + }] +}; +exports.inbox = inbox; +var playCircleO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1184 896q0 37-32 55l-544 320q-15 9-32 9-16 0-32-8-32-19-32-56v-640q0-37 32-56 33-18 64 1l544 320q32 18 32 55zM1312 896q0-148-73-273t-198-198-273-73-273 73-198 198-73 273 73 273 198 198 273 73 273-73 198-198 73-273zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.playCircleO = playCircleO; +var repeat = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1536 256v448q0 26-19 45t-45 19h-448q-42 0-59-40-17-39 14-69l138-138q-148-137-349-137-104 0-198.5 40.5t-163.5 109.5-109.5 163.5-40.5 198.5 40.5 198.5 109.5 163.5 163.5 109.5 198.5 40.5q119 0 225-52t179-147q7-10 23-12 15 0 25 9l137 138q9 8 9.5 20.5t-7.5 22.5q-109 132-264 204.5t-327 72.5q-156 0-298-61t-245-164-164-245-61-298 61-298 164-245 245-164 298-61q147 0 284.5 55.5t244.5 156.5l130-129q29-31 70-14 39 17 39 59z" + } + }] +}; +exports.repeat = repeat; +var rotateRight = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1536 256v448q0 26-19 45t-45 19h-448q-42 0-59-40-17-39 14-69l138-138q-148-137-349-137-104 0-198.5 40.5t-163.5 109.5-109.5 163.5-40.5 198.5 40.5 198.5 109.5 163.5 163.5 109.5 198.5 40.5q119 0 225-52t179-147q7-10 23-12 15 0 25 9l137 138q9 8 9.5 20.5t-7.5 22.5q-109 132-264 204.5t-327 72.5q-156 0-298-61t-245-164-164-245-61-298 61-298 164-245 245-164 298-61q147 0 284.5 55.5t244.5 156.5l130-129q29-31 70-14 39 17 39 59z" + } + }] +}; +exports.rotateRight = rotateRight; +var refresh = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1511 1056q0 5-1 7-64 268-268 434.5t-478 166.5q-146 0-282.5-55t-243.5-157l-129 129q-19 19-45 19t-45-19-19-45v-448q0-26 19-45t45-19h448q26 0 45 19t19 45-19 45l-137 137q71 66 161 102t187 36q134 0 250-65t186-179q11-17 53-117 8-23 30-23h192q13 0 22.5 9.5t9.5 22.5zM1536 256v448q0 26-19 45t-45 19h-448q-26 0-45-19t-19-45 19-45l138-138q-148-137-349-137-134 0-250 65t-186 179q-11 17-53 117-8 23-30 23h-199q-13 0-22.5-9.5t-9.5-22.5v-7q65-268 270-434.5t480-166.5q146 0 284 55.5t245 156.5l130-129q19-19 45-19t45 19 19 45z" + } + }] +}; +exports.refresh = refresh; +var listAlt = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M384 1184v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM384 928v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM384 672v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM1536 1184v64q0 13-9.5 22.5t-22.5 9.5h-960q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h960q13 0 22.5 9.5t9.5 22.5zM1536 928v64q0 13-9.5 22.5t-22.5 9.5h-960q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h960q13 0 22.5 9.5t9.5 22.5zM1536 672v64q0 13-9.5 22.5t-22.5 9.5h-960q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h960q13 0 22.5 9.5t9.5 22.5zM1664 1376v-832q0-13-9.5-22.5t-22.5-9.5h-1472q-13 0-22.5 9.5t-9.5 22.5v832q0 13 9.5 22.5t22.5 9.5h1472q13 0 22.5-9.5t9.5-22.5zM1792 288v1088q0 66-47 113t-113 47h-1472q-66 0-113-47t-47-113v-1088q0-66 47-113t113-47h1472q66 0 113 47t47 113z" + } + }] +}; +exports.listAlt = listAlt; +var lock = { + "viewBox": "0 0 1152 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M320 768h512v-192q0-106-75-181t-181-75-181 75-75 181v192zM1152 864v576q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-576q0-40 28-68t68-28h32v-192q0-184 132-316t316-132 316 132 132 316v192h32q40 0 68 28t28 68z" + } + }] +}; +exports.lock = lock; +var flag = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M320 256q0 72-64 110v1266q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-1266q-64-38-64-110 0-53 37.5-90.5t90.5-37.5 90.5 37.5 37.5 90.5zM1792 320v763q0 25-12.5 38.5t-39.5 27.5q-215 116-369 116-61 0-123.5-22t-108.5-48-115.5-48-142.5-22q-192 0-464 146-17 9-33 9-26 0-45-19t-19-45v-742q0-32 31-55 21-14 79-43 236-120 421-120 107 0 200 29t219 88q38 19 88 19 54 0 117.5-21t110-47 88-47 54.5-21q26 0 45 19t19 45z" + } + }] +}; +exports.flag = flag; +var headphones = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1664 886q0 166-60 314l-20 49-185 33q-22 83-90.5 136.5t-156.5 53.5v32q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-576q0-14 9-23t23-9h64q14 0 23 9t9 23v32q71 0 130 35.5t93 95.5l68-12q29-95 29-193 0-148-88-279t-236.5-209-315.5-78-315.5 78-236.5 209-88 279q0 98 29 193l68 12q34-60 93-95.5t130-35.5v-32q0-14 9-23t23-9h64q14 0 23 9t9 23v576q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-32q-88 0-156.5-53.5t-90.5-136.5l-185-33-20-49q-60-148-60-314 0-151 67-291t179-242.5 266-163.5 320-61 320 61 266 163.5 179 242.5 67 291z" + } + }] +}; +exports.headphones = headphones; +var volumeOff = { + "viewBox": "0 0 768 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M768 352v1088q0 26-19 45t-45 19-45-19l-333-333h-262q-26 0-45-19t-19-45v-384q0-26 19-45t45-19h262l333-333q19-19 45-19t45 19 19 45z" + } + }] +}; +exports.volumeOff = volumeOff; +var volumeDown = { + "viewBox": "0 0 1152 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M768 352v1088q0 26-19 45t-45 19-45-19l-333-333h-262q-26 0-45-19t-19-45v-384q0-26 19-45t45-19h262l333-333q19-19 45-19t45 19 19 45zM1152 896q0 76-42.5 141.5t-112.5 93.5q-10 5-25 5-26 0-45-18.5t-19-45.5q0-21 12-35.5t29-25 34-23 29-36 12-56.5-12-56.5-29-36-34-23-29-25-12-35.5q0-27 19-45.5t45-18.5q15 0 25 5 70 27 112.5 93t42.5 142z" + } + }] +}; +exports.volumeDown = volumeDown; +var volumeUp = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M768 352v1088q0 26-19 45t-45 19-45-19l-333-333h-262q-26 0-45-19t-19-45v-384q0-26 19-45t45-19h262l333-333q19-19 45-19t45 19 19 45zM1152 896q0 76-42.5 141.5t-112.5 93.5q-10 5-25 5-26 0-45-18.5t-19-45.5q0-21 12-35.5t29-25 34-23 29-36 12-56.5-12-56.5-29-36-34-23-29-25-12-35.5q0-27 19-45.5t45-18.5q15 0 25 5 70 27 112.5 93t42.5 142zM1408 896q0 153-85 282.5t-225 188.5q-13 5-25 5-27 0-46-19t-19-45q0-39 39-59 56-29 76-44 74-54 115.5-135.5t41.5-173.5-41.5-173.5-115.5-135.5q-20-15-76-44-39-20-39-59 0-26 19-45t45-19q13 0 26 5 140 59 225 188.5t85 282.5zM1664 896q0 230-127 422.5t-338 283.5q-13 5-26 5-26 0-45-19t-19-45q0-36 39-59 7-4 22.5-10.5t22.5-10.5q46-25 82-51 123-91 192-227t69-289-69-289-192-227q-36-26-82-51-7-4-22.5-10.5t-22.5-10.5q-39-23-39-59 0-26 19-45t45-19q13 0 26 5 211 91 338 283.5t127 422.5z" + } + }] +}; +exports.volumeUp = volumeUp; +var qrcode = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M384 1152v128h-128v-128h128zM384 384v128h-128v-128h128zM1152 384v128h-128v-128h128zM128 1407h384v-383h-384v383zM128 640h384v-384h-384v384zM896 640h384v-384h-384v384zM640 896v640h-640v-640h640zM1152 1408v128h-128v-128h128zM1408 1408v128h-128v-128h128zM1408 896v384h-384v-128h-128v384h-128v-640h384v128h128v-128h128zM640 128v640h-640v-640h640zM1408 128v640h-640v-640h640z" + } + }] +}; +exports.qrcode = qrcode; +var barcode = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M63 1536h-63v-1408h63v1408zM126 1535h-32v-1407h32v1407zM220 1535h-31v-1407h31v1407zM377 1535h-31v-1407h31v1407zM534 1535h-62v-1407h62v1407zM660 1535h-31v-1407h31v1407zM723 1535h-31v-1407h31v1407zM786 1535h-31v-1407h31v1407zM943 1535h-63v-1407h63v1407zM1100 1535h-63v-1407h63v1407zM1226 1535h-63v-1407h63v1407zM1352 1535h-63v-1407h63v1407zM1446 1535h-63v-1407h63v1407zM1635 1535h-94v-1407h94v1407zM1698 1535h-32v-1407h32v1407zM1792 1536h-63v-1408h63v1408z" + } + }] +}; +exports.barcode = barcode; +var tag = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M448 448q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1515 1024q0 53-37 90l-491 492q-39 37-91 37-53 0-90-37l-715-716q-38-37-64.5-101t-26.5-117v-416q0-52 38-90t90-38h416q53 0 117 26.5t102 64.5l715 714q37 39 37 91z" + } + }] +}; +exports.tag = tag; +var tags = { + "viewBox": "0 0 1920 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M448 448q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1515 1024q0 53-37 90l-491 492q-39 37-91 37-53 0-90-37l-715-716q-38-37-64.5-101t-26.5-117v-416q0-52 38-90t90-38h416q53 0 117 26.5t102 64.5l715 714q37 39 37 91zM1899 1024q0 53-37 90l-491 492q-39 37-91 37-36 0-59-14t-53-45l470-470q37-37 37-90 0-52-37-91l-715-714q-38-38-102-64.5t-117-26.5h224q53 0 117 26.5t102 64.5l715 714q37 39 37 91z" + } + }] +}; +exports.tags = tags; +var book = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1639 478q40 57 18 129l-275 906q-19 64-76.5 107.5t-122.5 43.5h-923q-77 0-148.5-53.5t-99.5-131.5q-24-67-2-127 0-4 3-27t4-37q1-8-3-21.5t-3-19.5q2-11 8-21t16.5-23.5 16.5-23.5q23-38 45-91.5t30-91.5q3-10 0.5-30t-0.5-28q3-11 17-28t17-23q21-36 42-92t25-90q1-9-2.5-32t0.5-28q4-13 22-30.5t22-22.5q19-26 42.5-84.5t27.5-96.5q1-8-3-25.5t-2-26.5q2-8 9-18t18-23 17-21q8-12 16.5-30.5t15-35 16-36 19.5-32 26.5-23.5 36-11.5 47.5 5.5l-1 3q38-9 51-9h761q74 0 114 56t18 130l-274 906q-36 119-71.5 153.5t-128.5 34.5h-869q-27 0-38 15-11 16-1 43 24 70 144 70h923q29 0 56-15.5t35-41.5l300-987q7-22 5-57 38 15 59 43zM575 480q-4 13 2 22.5t20 9.5h608q13 0 25.5-9.5t16.5-22.5l21-64q4-13-2-22.5t-20-9.5h-608q-13 0-25.5 9.5t-16.5 22.5zM492 736q-4 13 2 22.5t20 9.5h608q13 0 25.5-9.5t16.5-22.5l21-64q4-13-2-22.5t-20-9.5h-608q-13 0-25.5 9.5t-16.5 22.5z" + } + }] +}; +exports.book = book; +var bookmark = { + "viewBox": "0 0 1280 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1164 128q23 0 44 9 33 13 52.5 41t19.5 62v1289q0 34-19.5 62t-52.5 41q-19 8-44 8-48 0-83-32l-441-424-441 424q-36 33-83 33-23 0-44-9-33-13-52.5-41t-19.5-62v-1289q0-34 19.5-62t52.5-41q21-9 44-9h1048z" + } + }] +}; +exports.bookmark = bookmark; +var print = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M384 1536h896v-256h-896v256zM384 896h896v-384h-160q-40 0-68-28t-28-68v-160h-640v640zM1536 960q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zM1664 960v416q0 13-9.5 22.5t-22.5 9.5h-224v160q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-160h-224q-13 0-22.5-9.5t-9.5-22.5v-416q0-79 56.5-135.5t135.5-56.5h64v-544q0-40 28-68t68-28h672q40 0 88 20t76 48l152 152q28 28 48 76t20 88v256h64q79 0 135.5 56.5t56.5 135.5z" + } + }] +}; +exports.print = print; +var camera = { + "viewBox": "0 0 1920 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M960 672q119 0 203.5 84.5t84.5 203.5-84.5 203.5-203.5 84.5-203.5-84.5-84.5-203.5 84.5-203.5 203.5-84.5zM1664 256q106 0 181 75t75 181v896q0 106-75 181t-181 75h-1408q-106 0-181-75t-75-181v-896q0-106 75-181t181-75h224l51-136q19-49 69.5-84.5t103.5-35.5h512q53 0 103.5 35.5t69.5 84.5l51 136h224zM960 1408q185 0 316.5-131.5t131.5-316.5-131.5-316.5-316.5-131.5-316.5 131.5-131.5 316.5 131.5 316.5 316.5 131.5z" + } + }] +}; +exports.camera = camera; +var font = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M725 559l-170 450q33 0 136.5 2t160.5 2q19 0 57-2-87-253-184-452zM0 1664l2-79q23-7 56-12.5t57-10.5 49.5-14.5 44.5-29 31-50.5l237-616 280-724h75 53q8 14 11 21l205 480q33 78 106 257.5t114 274.5q15 34 58 144.5t72 168.5q20 45 35 57 19 15 88 29.5t84 20.5q6 38 6 57 0 5-0.5 13.5t-0.5 12.5q-63 0-190-8t-191-8q-76 0-215 7t-178 8q0-43 4-78l131-28q1 0 12.5-2.5t15.5-3.5 14.5-4.5 15-6.5 11-8 9-11 2.5-14q0-16-31-96.5t-72-177.5-42-100l-450-2q-26 58-76.5 195.5t-50.5 162.5q0 22 14 37.5t43.5 24.5 48.5 13.5 57 8.5 41 4q1 19 1 58 0 9-2 27-58 0-174.5-10t-174.5-10q-8 0-26.5 4t-21.5 4q-80 14-188 14z" + } + }] +}; +exports.font = font; +var bold = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M555 1521q74 32 140 32 376 0 376-335 0-114-41-180-27-44-61.5-74t-67.5-46.5-80.5-25-84-10.5-94.5-2q-73 0-101 10 0 53-0.5 159t-0.5 158q0 8-1 67.5t-0.5 96.5 4.5 83.5 12 66.5zM541 775q42 7 109 7 82 0 143-13t110-44.5 74.5-89.5 25.5-142q0-70-29-122.5t-79-82-108-43.5-124-14q-50 0-130 13 0 50 4 151t4 152q0 27-0.5 80t-0.5 79q0 46 1 69zM0 1664l2-94q15-4 85-16t106-27q7-12 12.5-27t8.5-33.5 5.5-32.5 3-37.5 0.5-34v-35.5-30q0-982-22-1025-4-8-22-14.5t-44.5-11-49.5-7-48.5-4.5-30.5-3l-4-83q98-2 340-11.5t373-9.5q23 0 68 0.5t68 0.5q70 0 136.5 13t128.5 42 108 71 74 104.5 28 137.5q0 52-16.5 95.5t-39 72-64.5 57.5-73 45-84 40q154 35 256.5 134t102.5 248q0 100-35 179.5t-93.5 130.5-138 85.5-163.5 48.5-176 14q-44 0-132-3t-132-3q-106 0-307 11t-231 12z" + } + }] +}; +exports.bold = bold; +var italic = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 1662l17-85q22-7 61.5-16.5t72-19 59.5-23.5q28-35 41-101 1-7 62-289t114-543.5 52-296.5v-25q-24-13-54.5-18.5t-69.5-8-58-5.5l19-103q33 2 120 6.5t149.5 7 120.5 2.5q48 0 98.5-2.5t121-7 98.5-6.5q-5 39-19 89-30 10-101.5 28.5t-108.5 33.5q-8 19-14 42.5t-9 40-7.5 45.5-6.5 42q-27 148-87.5 419.5t-77.5 355.5q-2 9-13 58t-20 90-16 83.5-6 57.5l1 18q17 4 185 31-3 44-16 99-11 0-32.5 1.5t-32.5 1.5q-29 0-87-10t-86-10q-138-2-206-2-51 0-143 9t-121 11z" + } + }] +}; +exports.italic = italic; +var textHeight = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1744 1408q33 0 42 18.5t-11 44.5l-126 162q-20 26-49 26t-49-26l-126-162q-20-26-11-44.5t42-18.5h80v-1024h-80q-33 0-42-18.5t11-44.5l126-162q20-26 49-26t49 26l126 162q20 26 11 44.5t-42 18.5h-80v1024h80zM81 129l54 27q12 5 211 5 44 0 132-2t132-2q36 0 107.5 0.5t107.5 0.5h293q6 0 21 0.5t20.5 0 16-3 17.5-9 15-17.5l42-1q4 0 14 0.5t14 0.5q2 112 2 336 0 80-5 109-39 14-68 18-25-44-54-128-3-9-11-48t-14.5-73.5-7.5-35.5q-6-8-12-12.5t-15.5-6-13-2.5-18-0.5-16.5 0.5q-17 0-66.5-0.5t-74.5-0.5-64 2-71 6q-9 81-8 136 0 94 2 388t2 455q0 16-2.5 71.5t0 91.5 12.5 69q40 21 124 42.5t120 37.5q5 40 5 50 0 14-3 29l-34 1q-76 2-218-8t-207-10q-50 0-151 9t-152 9q-3-51-3-52v-9q17-27 61.5-43t98.5-29 78-27q19-42 19-383 0-101-3-303t-3-303v-117q0-2 0.5-15.5t0.5-25-1-25.5-3-24-5-14q-11-12-162-12-33 0-93 12t-80 26q-19 13-34 72.5t-31.5 111-42.5 53.5q-42-26-56-44v-383z" + } + }] +}; +exports.textHeight = textHeight; +var textWidth = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M81 129l54 27q12 5 211 5 44 0 132-2t132-2q70 0 246.5-1t304.5-0.5 247 4.5q33 1 56-31l42-1q4 0 14 0.5t14 0.5q2 112 2 336 0 80-5 109-39 14-68 18-25-44-54-128-3-9-11-47.5t-15-73.5-7-36q-10-13-27-19-5-2-66-2-30 0-93-1t-103-1-94 2-96 7q-9 81-8 136l1 152v-52q0 55 1 154t1.5 180 0.5 153q0 16-2.5 71.5t0 91.5 12.5 69q40 21 124 42.5t120 37.5q5 40 5 50 0 14-3 29l-34 1q-76 2-218-8t-207-10q-50 0-151 9t-152 9q-3-51-3-52v-9q17-27 61.5-43t98.5-29 78-27q7-16 11.5-74t6-145.5 1.5-155-0.5-153.5-0.5-89q0-7-2.5-21.5t-2.5-22.5q0-7 0.5-44t1-73 0-76.5-3-67.5-6.5-32q-11-12-162-12-41 0-163 13.5t-138 24.5q-19 12-34 71.5t-31.5 111.5-42.5 54q-42-26-56-44v-383zM1310 1411q12 0 42 19.5t57.5 41.5 59.5 49 36 30q26 21 26 49t-26 49q-4 3-36 30t-59.5 49-57.5 41.5-42 19.5q-13 0-20.5-10.5t-10-28.5-2.5-33.5 1.5-33 1.5-19.5h-1024q0 2 1.5 19.5t1.5 33-2.5 33.5-10 28.5-20.5 10.5q-12 0-42-19.5t-57.5-41.5-59.5-49-36-30q-26-21-26-49t26-49q4-3 36-30t59.5-49 57.5-41.5 42-19.5q13 0 20.5 10.5t10 28.5 2.5 33.5-1.5 33-1.5 19.5h1024q0-2-1.5-19.5t-1.5-33 2.5-33.5 10-28.5 20.5-10.5z" + } + }] +}; +exports.textWidth = textWidth; +var alignLeft = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1792 1344v128q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1664q26 0 45 19t19 45zM1408 960v128q0 26-19 45t-45 19h-1280q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1280q26 0 45 19t19 45zM1664 576v128q0 26-19 45t-45 19h-1536q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1536q26 0 45 19t19 45zM1280 192v128q0 26-19 45t-45 19h-1152q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1152q26 0 45 19t19 45z" + } + }] +}; +exports.alignLeft = alignLeft; +var alignCenter = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1792 1344v128q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1664q26 0 45 19t19 45zM1408 960v128q0 26-19 45t-45 19h-896q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h896q26 0 45 19t19 45zM1664 576v128q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1408q26 0 45 19t19 45zM1280 192v128q0 26-19 45t-45 19h-640q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h640q26 0 45 19t19 45z" + } + }] +}; +exports.alignCenter = alignCenter; +var alignRight = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1792 1344v128q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1664q26 0 45 19t19 45zM1792 960v128q0 26-19 45t-45 19h-1280q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1280q26 0 45 19t19 45zM1792 576v128q0 26-19 45t-45 19h-1536q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1536q26 0 45 19t19 45zM1792 192v128q0 26-19 45t-45 19h-1152q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1152q26 0 45 19t19 45z" + } + }] +}; +exports.alignRight = alignRight; +var alignJustify = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1792 1344v128q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1664q26 0 45 19t19 45zM1792 960v128q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1664q26 0 45 19t19 45zM1792 576v128q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1664q26 0 45 19t19 45zM1792 192v128q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1664q26 0 45 19t19 45z" + } + }] +}; +exports.alignJustify = alignJustify; +var list = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M256 1312v192q0 13-9.5 22.5t-22.5 9.5h-192q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h192q13 0 22.5 9.5t9.5 22.5zM256 928v192q0 13-9.5 22.5t-22.5 9.5h-192q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h192q13 0 22.5 9.5t9.5 22.5zM256 544v192q0 13-9.5 22.5t-22.5 9.5h-192q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h192q13 0 22.5 9.5t9.5 22.5zM1792 1312v192q0 13-9.5 22.5t-22.5 9.5h-1344q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1344q13 0 22.5 9.5t9.5 22.5zM256 160v192q0 13-9.5 22.5t-22.5 9.5h-192q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h192q13 0 22.5 9.5t9.5 22.5zM1792 928v192q0 13-9.5 22.5t-22.5 9.5h-1344q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1344q13 0 22.5 9.5t9.5 22.5zM1792 544v192q0 13-9.5 22.5t-22.5 9.5h-1344q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1344q13 0 22.5 9.5t9.5 22.5zM1792 160v192q0 13-9.5 22.5t-22.5 9.5h-1344q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1344q13 0 22.5 9.5t9.5 22.5z" + } + }] +}; +exports.list = list; +var dedent = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M384 544v576q0 13-9.5 22.5t-22.5 9.5q-14 0-23-9l-288-288q-9-9-9-23t9-23l288-288q9-9 23-9 13 0 22.5 9.5t9.5 22.5zM1792 1312v192q0 13-9.5 22.5t-22.5 9.5h-1728q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1728q13 0 22.5 9.5t9.5 22.5zM1792 928v192q0 13-9.5 22.5t-22.5 9.5h-1088q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1088q13 0 22.5 9.5t9.5 22.5zM1792 544v192q0 13-9.5 22.5t-22.5 9.5h-1088q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1088q13 0 22.5 9.5t9.5 22.5zM1792 160v192q0 13-9.5 22.5t-22.5 9.5h-1728q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1728q13 0 22.5 9.5t9.5 22.5z" + } + }] +}; +exports.dedent = dedent; +var outdent = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M384 544v576q0 13-9.5 22.5t-22.5 9.5q-14 0-23-9l-288-288q-9-9-9-23t9-23l288-288q9-9 23-9 13 0 22.5 9.5t9.5 22.5zM1792 1312v192q0 13-9.5 22.5t-22.5 9.5h-1728q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1728q13 0 22.5 9.5t9.5 22.5zM1792 928v192q0 13-9.5 22.5t-22.5 9.5h-1088q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1088q13 0 22.5 9.5t9.5 22.5zM1792 544v192q0 13-9.5 22.5t-22.5 9.5h-1088q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1088q13 0 22.5 9.5t9.5 22.5zM1792 160v192q0 13-9.5 22.5t-22.5 9.5h-1728q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1728q13 0 22.5 9.5t9.5 22.5z" + } + }] +}; +exports.outdent = outdent; +var indent = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M352 832q0 14-9 23l-288 288q-9 9-23 9-13 0-22.5-9.5t-9.5-22.5v-576q0-13 9.5-22.5t22.5-9.5q14 0 23 9l288 288q9 9 9 23zM1792 1312v192q0 13-9.5 22.5t-22.5 9.5h-1728q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1728q13 0 22.5 9.5t9.5 22.5zM1792 928v192q0 13-9.5 22.5t-22.5 9.5h-1088q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1088q13 0 22.5 9.5t9.5 22.5zM1792 544v192q0 13-9.5 22.5t-22.5 9.5h-1088q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1088q13 0 22.5 9.5t9.5 22.5zM1792 160v192q0 13-9.5 22.5t-22.5 9.5h-1728q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1728q13 0 22.5 9.5t9.5 22.5z" + } + }] +}; +exports.indent = indent; +var videoCamera = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1792 352v1088q0 42-39 59-13 5-25 5-27 0-45-19l-403-403v166q0 119-84.5 203.5t-203.5 84.5h-704q-119 0-203.5-84.5t-84.5-203.5v-704q0-119 84.5-203.5t203.5-84.5h704q119 0 203.5 84.5t84.5 203.5v165l403-402q18-19 45-19 12 0 25 5 39 17 39 59z" + } + }] +}; +exports.videoCamera = videoCamera; +var image = { + "viewBox": "0 0 1920 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 576q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM1664 960v448h-1408v-192l320-320 160 160 512-512zM1760 256h-1600q-13 0-22.5 9.5t-9.5 22.5v1216q0 13 9.5 22.5t22.5 9.5h1600q13 0 22.5-9.5t9.5-22.5v-1216q0-13-9.5-22.5t-22.5-9.5zM1920 288v1216q0 66-47 113t-113 47h-1600q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1600q66 0 113 47t47 113z" + } + }] +}; +exports.image = image; +var photo = { + "viewBox": "0 0 1920 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 576q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM1664 960v448h-1408v-192l320-320 160 160 512-512zM1760 256h-1600q-13 0-22.5 9.5t-9.5 22.5v1216q0 13 9.5 22.5t22.5 9.5h1600q13 0 22.5-9.5t9.5-22.5v-1216q0-13-9.5-22.5t-22.5-9.5zM1920 288v1216q0 66-47 113t-113 47h-1600q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1600q66 0 113 47t47 113z" + } + }] +}; +exports.photo = photo; +var pictureO = { + "viewBox": "0 0 1920 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 576q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM1664 960v448h-1408v-192l320-320 160 160 512-512zM1760 256h-1600q-13 0-22.5 9.5t-9.5 22.5v1216q0 13 9.5 22.5t22.5 9.5h1600q13 0 22.5-9.5t9.5-22.5v-1216q0-13-9.5-22.5t-22.5-9.5zM1920 288v1216q0 66-47 113t-113 47h-1600q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1600q66 0 113 47t47 113z" + } + }] +}; +exports.pictureO = pictureO; +var pencil = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M363 1536l91-91-235-235-91 91v107h128v128h107zM886 608q0-22-22-22-10 0-17 7l-542 542q-7 7-7 17 0 22 22 22 10 0 17-7l542-542q7-7 7-17zM832 416l416 416-832 832h-416v-416zM1515 512q0 53-37 90l-166 166-416-416 166-165q36-38 90-38 53 0 91 38l235 234q37 39 37 91z" + } + }] +}; +exports.pencil = pencil; +var mapMarker = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M768 640q0-106-75-181t-181-75-181 75-75 181 75 181 181 75 181-75 75-181zM1024 640q0 109-33 179l-364 774q-16 33-47.5 52t-67.5 19-67.5-19-46.5-52l-365-774q-33-70-33-179 0-212 150-362t362-150 362 150 150 362z" + } + }] +}; +exports.mapMarker = mapMarker; +var adjust = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M768 1440v-1088q-148 0-273 73t-198 198-73 273 73 273 198 198 273 73zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.adjust = adjust; +var tint = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M512 1152q0-36-20-69-1-1-15.5-22.5t-25.5-38-25-44-21-50.5q-4-16-21-16t-21 16q-7 23-21 50.5t-25 44-25.5 38-15.5 22.5q-20 33-20 69 0 53 37.5 90.5t90.5 37.5 90.5-37.5 37.5-90.5zM1024 1024q0 212-150 362t-362 150-362-150-150-362q0-145 81-275 6-9 62.5-90.5t101-151 99.5-178 83-201.5q9-30 34-47t51-17 51.5 17 33.5 47q28 93 83 201.5t99.5 178 101 151 62.5 90.5q81 127 81 275z" + } + }] +}; +exports.tint = tint; +var edit = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M888 1184l116-116-152-152-116 116v56h96v96h56zM1328 464q-16-16-33 1l-350 350q-17 17-1 33t33-1l350-350q17-17 1-33zM1408 1058v190q0 119-84.5 203.5t-203.5 84.5h-832q-119 0-203.5-84.5t-84.5-203.5v-832q0-119 84.5-203.5t203.5-84.5h832q63 0 117 25 15 7 18 23 3 17-9 29l-49 49q-14 14-32 8-23-6-45-6h-832q-66 0-113 47t-47 113v832q0 66 47 113t113 47h832q66 0 113-47t47-113v-126q0-13 9-22l64-64q15-15 35-7t20 29zM1312 320l288 288-672 672h-288v-288zM1756 452l-92 92-288-288 92-92q28-28 68-28t68 28l152 152q28 28 28 68t-28 68z" + } + }] +}; +exports.edit = edit; +var pencilSquareO = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M888 1184l116-116-152-152-116 116v56h96v96h56zM1328 464q-16-16-33 1l-350 350q-17 17-1 33t33-1l350-350q17-17 1-33zM1408 1058v190q0 119-84.5 203.5t-203.5 84.5h-832q-119 0-203.5-84.5t-84.5-203.5v-832q0-119 84.5-203.5t203.5-84.5h832q63 0 117 25 15 7 18 23 3 17-9 29l-49 49q-14 14-32 8-23-6-45-6h-832q-66 0-113 47t-47 113v832q0 66 47 113t113 47h832q66 0 113-47t47-113v-126q0-13 9-22l64-64q15-15 35-7t20 29zM1312 320l288 288-672 672h-288v-288zM1756 452l-92 92-288-288 92-92q28-28 68-28t68 28l152 152q28 28 28 68t-28 68z" + } + }] +}; +exports.pencilSquareO = pencilSquareO; +var shareSquareO = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1408 989v259q0 119-84.5 203.5t-203.5 84.5h-832q-119 0-203.5-84.5t-84.5-203.5v-832q0-119 84.5-203.5t203.5-84.5h255v0q13 0 22.5 9.5t9.5 22.5q0 27-26 32-77 26-133 60-10 4-16 4h-112q-66 0-113 47t-47 113v832q0 66 47 113t113 47h832q66 0 113-47t47-113v-214q0-19 18-29 28-13 54-37 16-16 35-8 21 9 21 29zM1645 493l-384 384q-18 19-45 19-12 0-25-5-39-17-39-59v-192h-160q-323 0-438 131-119 137-74 473 3 23-20 34-8 2-12 2-16 0-26-13-10-14-21-31t-39.5-68.5-49.5-99.5-38.5-114-17.5-122q0-49 3.5-91t14-90 28-88 47-81.5 68.5-74 94.5-61.5 124.5-48.5 159.5-30.5 196.5-11h160v-192q0-42 39-59 13-5 25-5 26 0 45 19l384 384q19 19 19 45t-19 45z" + } + }] +}; +exports.shareSquareO = shareSquareO; +var checkSquareO = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1408 930v318q0 119-84.5 203.5t-203.5 84.5h-832q-119 0-203.5-84.5t-84.5-203.5v-832q0-119 84.5-203.5t203.5-84.5h832q63 0 117 25 15 7 18 23 3 17-9 29l-49 49q-10 10-23 10-3 0-9-2-23-6-45-6h-832q-66 0-113 47t-47 113v832q0 66 47 113t113 47h832q66 0 113-47t47-113v-254q0-13 9-22l64-64q10-10 23-10 6 0 12 3 20 8 20 29zM1639 441l-814 814q-24 24-57 24t-57-24l-430-430q-24-24-24-57t24-57l110-110q24-24 57-24t57 24l263 263 647-647q24-24 57-24t57 24l110 110q24 24 24 57t-24 57z" + } + }] +}; +exports.checkSquareO = checkSquareO; +var arrows = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1792 896q0 26-19 45l-256 256q-19 19-45 19t-45-19-19-45v-128h-384v384h128q26 0 45 19t19 45-19 45l-256 256q-19 19-45 19t-45-19l-256-256q-19-19-19-45t19-45 45-19h128v-384h-384v128q0 26-19 45t-45 19-45-19l-256-256q-19-19-19-45t19-45l256-256q19-19 45-19t45 19 19 45v128h384v-384h-128q-26 0-45-19t-19-45 19-45l256-256q19-19 45-19t45 19l256 256q19 19 19 45t-19 45-45 19h-128v384h384v-128q0-26 19-45t45-19 45 19l256 256q19 19 19 45z" + } + }] +}; +exports.arrows = arrows; +var stepBackward = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M979 141q19-19 32-13t13 32v1472q0 26-13 32t-32-13l-710-710q-9-9-13-19v678q0 26-19 45t-45 19h-128q-26 0-45-19t-19-45v-1408q0-26 19-45t45-19h128q26 0 45 19t19 45v678q4-10 13-19z" + } + }] +}; +exports.stepBackward = stepBackward; +var fastBackward = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1747 141q19-19 32-13t13 32v1472q0 26-13 32t-32-13l-710-710q-9-9-13-19v710q0 26-13 32t-32-13l-710-710q-9-9-13-19v678q0 26-19 45t-45 19h-128q-26 0-45-19t-19-45v-1408q0-26 19-45t45-19h128q26 0 45 19t19 45v678q4-10 13-19l710-710q19-19 32-13t13 32v710q4-10 13-19z" + } + }] +}; +exports.fastBackward = fastBackward; +var backward = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1619 141q19-19 32-13t13 32v1472q0 26-13 32t-32-13l-710-710q-9-9-13-19v710q0 26-13 32t-32-13l-710-710q-19-19-19-45t19-45l710-710q19-19 32-13t13 32v710q4-10 13-19z" + } + }] +}; +exports.backward = backward; +var play = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1384 927l-1328 738q-23 13-39.5 3t-16.5-36v-1472q0-26 16.5-36t39.5 3l1328 738q23 13 23 31t-23 31z" + } + }] +}; +exports.play = play; +var pause = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1536 192v1408q0 26-19 45t-45 19h-512q-26 0-45-19t-19-45v-1408q0-26 19-45t45-19h512q26 0 45 19t19 45zM640 192v1408q0 26-19 45t-45 19h-512q-26 0-45-19t-19-45v-1408q0-26 19-45t45-19h512q26 0 45 19t19 45z" + } + }] +}; +exports.pause = pause; +var stop = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1536 192v1408q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-1408q0-26 19-45t45-19h1408q26 0 45 19t19 45z" + } + }] +}; +exports.stop = stop; +var forward = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M45 1651q-19 19-32 13t-13-32v-1472q0-26 13-32t32 13l710 710q9 9 13 19v-710q0-26 13-32t32 13l710 710q19 19 19 45t-19 45l-710 710q-19 19-32 13t-13-32v-710q-4 10-13 19z" + } + }] +}; +exports.forward = forward; +var fastForward = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M45 1651q-19 19-32 13t-13-32v-1472q0-26 13-32t32 13l710 710q9 9 13 19v-710q0-26 13-32t32 13l710 710q9 9 13 19v-678q0-26 19-45t45-19h128q26 0 45 19t19 45v1408q0 26-19 45t-45 19h-128q-26 0-45-19t-19-45v-678q-4 10-13 19l-710 710q-19 19-32 13t-13-32v-710q-4 10-13 19z" + } + }] +}; +exports.fastForward = fastForward; +var stepForward = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M45 1651q-19 19-32 13t-13-32v-1472q0-26 13-32t32 13l710 710q9 9 13 19v-678q0-26 19-45t45-19h128q26 0 45 19t19 45v1408q0 26-19 45t-45 19h-128q-26 0-45-19t-19-45v-678q-4 10-13 19z" + } + }] +}; +exports.stepForward = stepForward; +var eject = { + "viewBox": "0 0 1538 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M14 979l710-710q19-19 45-19t45 19l710 710q19 19 13 32t-32 13h-1472q-26 0-32-13t13-32zM1473 1536h-1408q-26 0-45-19t-19-45v-256q0-26 19-45t45-19h1408q26 0 45 19t19 45v256q0 26-19 45t-45 19z" + } + }] +}; +exports.eject = eject; +var chevronLeft = { + "viewBox": "0 0 1280 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1171 301l-531 531 531 531q19 19 19 45t-19 45l-166 166q-19 19-45 19t-45-19l-742-742q-19-19-19-45t19-45l742-742q19-19 45-19t45 19l166 166q19 19 19 45t-19 45z" + } + }] +}; +exports.chevronLeft = chevronLeft; +var chevronRight = { + "viewBox": "0 0 1280 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1107 877l-742 742q-19 19-45 19t-45-19l-166-166q-19-19-19-45t19-45l531-531-531-531q-19-19-19-45t19-45l166-166q19-19 45-19t45 19l742 742q19 19 19 45t-19 45z" + } + }] +}; +exports.chevronRight = chevronRight; +var plusCircle = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1216 960v-128q0-26-19-45t-45-19h-256v-256q0-26-19-45t-45-19h-128q-26 0-45 19t-19 45v256h-256q-26 0-45 19t-19 45v128q0 26 19 45t45 19h256v256q0 26 19 45t45 19h128q26 0 45-19t19-45v-256h256q26 0 45-19t19-45zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.plusCircle = plusCircle; +var minusCircle = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1216 960v-128q0-26-19-45t-45-19h-768q-26 0-45 19t-19 45v128q0 26 19 45t45 19h768q26 0 45-19t19-45zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.minusCircle = minusCircle; +var timesCircle = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1149 1122q0-26-19-45l-181-181 181-181q19-19 19-45 0-27-19-46l-90-90q-19-19-46-19-26 0-45 19l-181 181-181-181q-19-19-45-19-27 0-46 19l-90 90q-19 19-19 46 0 26 19 45l181 181-181 181q-19 19-19 45 0 27 19 46l90 90q19 19 46 19 26 0 45-19l181-181 181 181q19 19 45 19 27 0 46-19l90-90q19-19 19-46zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.timesCircle = timesCircle; +var checkCircle = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1284 734q0-28-18-46l-91-90q-19-19-45-19t-45 19l-408 407-226-226q-19-19-45-19t-45 19l-91 90q-18 18-18 46 0 27 18 45l362 362q19 19 45 19 27 0 46-19l543-543q18-18 18-45zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.checkCircle = checkCircle; +var questionCircle = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M896 1376v-192q0-14-9-23t-23-9h-192q-14 0-23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23-9t9-23zM1152 704q0-88-55.5-163t-138.5-116-170-41q-243 0-371 213-15 24 8 42l132 100q7 6 19 6 16 0 25-12 53-68 86-92 34-24 86-24 48 0 85.5 26t37.5 59q0 38-20 61t-68 45q-63 28-115.5 86.5t-52.5 125.5v36q0 14 9 23t23 9h192q14 0 23-9t9-23q0-19 21.5-49.5t54.5-49.5q32-18 49-28.5t46-35 44.5-48 28-60.5 12.5-81zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.questionCircle = questionCircle; +var infoCircle = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 1376v-160q0-14-9-23t-23-9h-96v-512q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v160q0 14 9 23t23 9h96v320h-96q-14 0-23 9t-9 23v160q0 14 9 23t23 9h448q14 0 23-9t9-23zM896 480v-160q0-14-9-23t-23-9h-192q-14 0-23 9t-9 23v160q0 14 9 23t23 9h192q14 0 23-9t9-23zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.infoCircle = infoCircle; +var crosshairs = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1197 1024h-109q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h109q-32-108-112.5-188.5t-188.5-112.5v109q0 26-19 45t-45 19h-128q-26 0-45-19t-19-45v-109q-108 32-188.5 112.5t-112.5 188.5h109q26 0 45 19t19 45v128q0 26-19 45t-45 19h-109q32 108 112.5 188.5t188.5 112.5v-109q0-26 19-45t45-19h128q26 0 45 19t19 45v109q108-32 188.5-112.5t112.5-188.5zM1536 832v128q0 26-19 45t-45 19h-143q-37 161-154.5 278.5t-278.5 154.5v143q0 26-19 45t-45 19h-128q-26 0-45-19t-19-45v-143q-161-37-278.5-154.5t-154.5-278.5h-143q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h143q37-161 154.5-278.5t278.5-154.5v-143q0-26 19-45t45-19h128q26 0 45 19t19 45v143q161 37 278.5 154.5t154.5 278.5h143q26 0 45 19t19 45z" + } + }] +}; +exports.crosshairs = crosshairs; +var timesCircleO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1097 1079l-146 146q-10 10-23 10t-23-10l-137-137-137 137q-10 10-23 10t-23-10l-146-146q-10-10-10-23t10-23l137-137-137-137q-10-10-10-23t10-23l146-146q10-10 23-10t23 10l137 137 137-137q10-10 23-10t23 10l146 146q10 10 10 23t-10 23l-137 137 137 137q10 10 10 23t-10 23zM1312 896q0-148-73-273t-198-198-273-73-273 73-198 198-73 273 73 273 198 198 273 73 273-73 198-198 73-273zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.timesCircleO = timesCircleO; +var checkCircleO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1171 813l-422 422q-19 19-45 19t-45-19l-294-294q-19-19-19-45t19-45l102-102q19-19 45-19t45 19l147 147 275-275q19-19 45-19t45 19l102 102q19 19 19 45t-19 45zM1312 896q0-148-73-273t-198-198-273-73-273 73-198 198-73 273 73 273 198 198 273 73 273-73 198-198 73-273zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.checkCircleO = checkCircleO; +var ban = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1312 893q0-161-87-295l-754 753q137 89 297 89 111 0 211.5-43.5t173.5-116.5 116-174.5 43-212.5zM313 1192l755-754q-135-91-300-91-148 0-273 73t-198 199-73 274q0 162 89 299zM1536 893q0 157-61 300t-163.5 246-245 164-298.5 61-298.5-61-245-164-163.5-246-61-300 61-299.5 163.5-245.5 245-164 298.5-61 298.5 61 245 164 163.5 245.5 61 299.5z" + } + }] +}; +exports.ban = ban; +var arrowLeft = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1536 896v128q0 53-32.5 90.5t-84.5 37.5h-704l293 294q38 36 38 90t-38 90l-75 76q-37 37-90 37-52 0-91-37l-651-652q-37-37-37-90 0-52 37-91l651-650q38-38 91-38 52 0 90 38l75 74q38 38 38 91t-38 91l-293 293h704q52 0 84.5 37.5t32.5 90.5z" + } + }] +}; +exports.arrowLeft = arrowLeft; +var arrowRight = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1472 960q0 54-37 91l-651 651q-39 37-91 37-51 0-90-37l-75-75q-38-38-38-91t38-91l293-293h-704q-52 0-84.5-37.5t-32.5-90.5v-128q0-53 32.5-90.5t84.5-37.5h704l-293-294q-38-36-38-90t38-90l75-75q38-38 90-38 53 0 91 38l651 651q37 35 37 90z" + } + }] +}; +exports.arrowRight = arrowRight; +var arrowUp = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1611 971q0 51-37 90l-75 75q-38 38-91 38-54 0-90-38l-294-293v704q0 52-37.5 84.5t-90.5 32.5h-128q-53 0-90.5-32.5t-37.5-84.5v-704l-294 293q-36 38-90 38t-90-38l-75-75q-38-38-38-90 0-53 38-91l651-651q35-37 90-37 54 0 91 37l651 651q37 39 37 91z" + } + }] +}; +exports.arrowUp = arrowUp; +var arrowDown = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1611 832q0 53-37 90l-651 652q-39 37-91 37-53 0-90-37l-651-652q-38-36-38-90 0-53 38-91l74-75q39-37 91-37 53 0 90 37l294 294v-704q0-52 38-90t90-38h128q52 0 90 38t38 90v704l294-294q37-37 90-37 52 0 91 37l75 75q37 39 37 91z" + } + }] +}; +exports.arrowDown = arrowDown; +var mailForward = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1792 640q0 26-19 45l-512 512q-19 19-45 19t-45-19-19-45v-256h-224q-98 0-175.5 6t-154 21.5-133 42.5-105.5 69.5-80 101-48.5 138.5-17.5 181q0 55 5 123 0 6 2.5 23.5t2.5 26.5q0 15-8.5 25t-23.5 10q-16 0-28-17-7-9-13-22t-13.5-30-10.5-24q-127-285-127-451 0-199 53-333 162-403 875-403h224v-256q0-26 19-45t45-19 45 19l512 512q19 19 19 45z" + } + }] +}; +exports.mailForward = mailForward; +var share = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1792 640q0 26-19 45l-512 512q-19 19-45 19t-45-19-19-45v-256h-224q-98 0-175.5 6t-154 21.5-133 42.5-105.5 69.5-80 101-48.5 138.5-17.5 181q0 55 5 123 0 6 2.5 23.5t2.5 26.5q0 15-8.5 25t-23.5 10q-16 0-28-17-7-9-13-22t-13.5-30-10.5-24q-127-285-127-451 0-199 53-333 162-403 875-403h224v-256q0-26 19-45t45-19 45 19l512 512q19 19 19 45z" + } + }] +}; +exports.share = share; +var expand = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M755 1056q0 13-10 23l-332 332 144 144q19 19 19 45t-19 45-45 19h-448q-26 0-45-19t-19-45v-448q0-26 19-45t45-19 45 19l144 144 332-332q10-10 23-10t23 10l114 114q10 10 10 23zM1536 192v448q0 26-19 45t-45 19-45-19l-144-144-332 332q-10 10-23 10t-23-10l-114-114q-10-10-10-23t10-23l332-332-144-144q-19-19-19-45t19-45 45-19h448q26 0 45 19t19 45z" + } + }] +}; +exports.expand = expand; +var compress = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M768 960v448q0 26-19 45t-45 19-45-19l-144-144-332 332q-10 10-23 10t-23-10l-114-114q-10-10-10-23t10-23l332-332-144-144q-19-19-19-45t19-45 45-19h448q26 0 45 19t19 45zM1523 288q0 13-10 23l-332 332 144 144q19 19 19 45t-19 45-45 19h-448q-26 0-45-19t-19-45v-448q0-26 19-45t45-19 45 19l144 144 332-332q10-10 23-10t23 10l114 114q10 10 10 23z" + } + }] +}; +exports.compress = compress; +var plus = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1408 736v192q0 40-28 68t-68 28h-416v416q0 40-28 68t-68 28h-192q-40 0-68-28t-28-68v-416h-416q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h416v-416q0-40 28-68t68-28h192q40 0 68 28t28 68v416h416q40 0 68 28t28 68z" + } + }] +}; +exports.plus = plus; +var minus = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1408 736v192q0 40-28 68t-68 28h-1216q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h1216q40 0 68 28t28 68z" + } + }] +}; +exports.minus = minus; +var asterisk = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1482 1050q46 26 59.5 77.5t-12.5 97.5l-64 110q-26 46-77.5 59.5t-97.5-12.5l-266-153v307q0 52-38 90t-90 38h-128q-52 0-90-38t-38-90v-307l-266 153q-46 26-97.5 12.5t-77.5-59.5l-64-110q-26-46-12.5-97.5t59.5-77.5l266-154-266-154q-46-26-59.5-77.5t12.5-97.5l64-110q26-46 77.5-59.5t97.5 12.5l266 153v-307q0-52 38-90t90-38h128q52 0 90 38t38 90v307l266-153q46-26 97.5-12.5t77.5 59.5l64 110q26 46 12.5 97.5t-59.5 77.5l-266 154z" + } + }] +}; +exports.asterisk = asterisk; +var exclamationCircle = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M768 128q209 0 385.5 103t279.5 279.5 103 385.5-103 385.5-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103zM896 1375v-190q0-14-9-23.5t-22-9.5h-192q-13 0-23 10t-10 23v190q0 13 10 23t23 10h192q13 0 22-9.5t9-23.5zM894 1031l18-621q0-12-10-18-10-8-24-8h-220q-14 0-24 8-10 6-10 18l17 621q0 10 10 17.5t24 7.5h185q14 0 23.5-7.5t10.5-17.5z" + } + }] +}; +exports.exclamationCircle = exclamationCircle; +var gift = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M928 1356v-56-468-192h-320v192 468 56q0 25 18 38.5t46 13.5h192q28 0 46-13.5t18-38.5zM472 512h195l-126-161q-26-31-69-31-40 0-68 28t-28 68 28 68 68 28zM1160 416q0-40-28-68t-68-28q-43 0-69 31l-125 161h194q40 0 68-28t28-68zM1536 672v320q0 14-9 23t-23 9h-96v416q0 40-28 68t-68 28h-1088q-40 0-68-28t-28-68v-416h-96q-14 0-23-9t-9-23v-320q0-14 9-23t23-9h440q-93 0-158.5-65.5t-65.5-158.5 65.5-158.5 158.5-65.5q107 0 168 77l128 165 128-165q61-77 168-77 93 0 158.5 65.5t65.5 158.5-65.5 158.5-158.5 65.5h440q14 0 23 9t9 23z" + } + }] +}; +exports.gift = gift; +var leaf = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1280 704q0-26-19-45t-45-19q-172 0-318 49.5t-259.5 134-235.5 219.5q-19 21-19 45 0 26 19 45t45 19q24 0 45-19 27-24 74-71t67-66q137-124 268.5-176t313.5-52q26 0 45-19t19-45zM1792 506q0 95-20 193-46 224-184.5 383t-357.5 268q-214 108-438 108-148 0-286-47-15-5-88-42t-96-37q-16 0-39.5 32t-45 70-52.5 70-60 32q-43 0-63.5-17.5t-45.5-59.5q-2-4-6-11t-5.5-10-3-9.5-1.5-13.5q0-35 31-73.5t68-65.5 68-56 31-48q0-4-14-38t-16-44q-9-51-9-104 0-115 43.5-220t119-184.5 170.5-139 204-95.5q55-18 145-25.5t179.5-9 178.5-6 163.5-24 113.5-56.5l29.5-29.5t29.5-28 27-20 36.5-16 43.5-4.5q39 0 70.5 46t47.5 112 24 124 8 96z" + } + }] +}; +exports.leaf = leaf; +var fire = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1408 1696v64q0 13-9.5 22.5t-22.5 9.5h-1344q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h1344q13 0 22.5 9.5t9.5 22.5zM1152 640q0 78-24.5 144t-64 112.5-87.5 88-96 77.5-87.5 72-64 81.5-24.5 96.5q0 96 67 224l-4-1 1 1q-90-41-160-83t-138.5-100-113.5-122.5-72.5-150.5-27.5-184q0-78 24.5-144t64-112.5 87.5-88 96-77.5 87.5-72 64-81.5 24.5-96.5q0-94-66-224l3 1-1-1q90 41 160 83t138.5 100 113.5 122.5 72.5 150.5 27.5 184z" + } + }] +}; +exports.fire = fire; +var eye = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1664 960q-152-236-381-353 61 104 61 225 0 185-131.5 316.5t-316.5 131.5-316.5-131.5-131.5-316.5q0-121 61-225-229 117-381 353 133 205 333.5 326.5t434.5 121.5 434.5-121.5 333.5-326.5zM944 576q0-20-14-34t-34-14q-125 0-214.5 89.5t-89.5 214.5q0 20 14 34t34 14 34-14 14-34q0-86 61-147t147-61q20 0 34-14t14-34zM1792 960q0 34-20 69-140 230-376.5 368.5t-499.5 138.5-499.5-139-376.5-368q-20-35-20-69t20-69q140-229 376.5-368t499.5-139 499.5 139 376.5 368q20 35 20 69z" + } + }] +}; +exports.eye = eye; +var eyeSlash = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M555 1335l78-141q-87-63-136-159t-49-203q0-121 61-225-229 117-381 353 167 258 427 375zM944 576q0-20-14-34t-34-14q-125 0-214.5 89.5t-89.5 214.5q0 20 14 34t34 14 34-14 14-34q0-86 61-147t147-61q20 0 34-14t14-34zM1307 385q0 7-1 9-106 189-316 567t-315 566l-49 89q-10 16-28 16-12 0-134-70-16-10-16-28 0-12 44-87-143-65-263.5-173t-208.5-245q-20-31-20-69t20-69q153-235 380-371t496-136q89 0 180 17l54-97q10-16 28-16 5 0 18 6t31 15.5 33 18.5 31.5 18.5 19.5 11.5q16 10 16 27zM1344 832q0 139-79 253.5t-209 164.5l280-502q8 45 8 84zM1792 960q0 35-20 69-39 64-109 145-150 172-347.5 267t-419.5 95l74-132q212-18 392.5-137t301.5-307q-115-179-282-294l63-112q95 64 182.5 153t144.5 184q20 34 20 69z" + } + }] +}; +exports.eyeSlash = eyeSlash; +var exclamationTriangle = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 1375v-190q0-14-9.5-23.5t-22.5-9.5h-192q-13 0-22.5 9.5t-9.5 23.5v190q0 14 9.5 23.5t22.5 9.5h192q13 0 22.5-9.5t9.5-23.5zM1022 1001l18-459q0-12-10-19-13-11-24-11h-220q-11 0-24 11-10 7-10 21l17 457q0 10 10 16.5t24 6.5h185q14 0 23.5-6.5t10.5-16.5zM1008 67l768 1408q35 63-2 126-17 29-46.5 46t-63.5 17h-1536q-34 0-63.5-17t-46.5-46q-37-63-2-126l768-1408q17-31 47-49t65-18 65 18 47 49z" + } + }] +}; +exports.exclamationTriangle = exclamationTriangle; +var warning = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 1375v-190q0-14-9.5-23.5t-22.5-9.5h-192q-13 0-22.5 9.5t-9.5 23.5v190q0 14 9.5 23.5t22.5 9.5h192q13 0 22.5-9.5t9.5-23.5zM1022 1001l18-459q0-12-10-19-13-11-24-11h-220q-11 0-24 11-10 7-10 21l17 457q0 10 10 16.5t24 6.5h185q14 0 23.5-6.5t10.5-16.5zM1008 67l768 1408q35 63-2 126-17 29-46.5 46t-63.5 17h-1536q-34 0-63.5-17t-46.5-46q-37-63-2-126l768-1408q17-31 47-49t65-18 65 18 47 49z" + } + }] +}; +exports.warning = warning; +var plane = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1376 160q44 52 12 148t-108 172l-161 161 160 696q5 19-12 33l-128 96q-7 6-19 6-4 0-7-1-15-3-21-16l-279-508-259 259 53 194q5 17-8 31l-96 96q-9 9-23 9h-2q-15-2-24-13l-189-252-252-189q-11-7-13-23-1-13 9-25l96-97q9-9 23-9 6 0 8 1l194 53 259-259-508-279q-14-8-17-24-2-16 9-27l128-128q14-13 30-8l665 159 160-160q76-76 172-108t148 12z" + } + }] +}; +exports.plane = plane; +var calendar = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M128 1664h288v-288h-288v288zM480 1664h320v-288h-320v288zM128 1312h288v-320h-288v320zM480 1312h320v-320h-320v320zM128 928h288v-288h-288v288zM864 1664h320v-288h-320v288zM480 928h320v-288h-320v288zM1248 1664h288v-288h-288v288zM864 1312h320v-320h-320v320zM512 448v-288q0-13-9.5-22.5t-22.5-9.5h-64q-13 0-22.5 9.5t-9.5 22.5v288q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5-9.5t9.5-22.5zM1248 1312h288v-320h-288v320zM864 928h320v-288h-320v288zM1248 928h288v-288h-288v288zM1280 448v-288q0-13-9.5-22.5t-22.5-9.5h-64q-13 0-22.5 9.5t-9.5 22.5v288q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5-9.5t9.5-22.5zM1664 384v1280q0 52-38 90t-90 38h-1408q-52 0-90-38t-38-90v-1280q0-52 38-90t90-38h128v-96q0-66 47-113t113-47h64q66 0 113 47t47 113v96h384v-96q0-66 47-113t113-47h64q66 0 113 47t47 113v96h128q52 0 90 38t38 90z" + } + }] +}; +exports.calendar = calendar; +var random = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M666 481q-60 92-137 273-22-45-37-72.5t-40.5-63.5-51-56.5-63-35-81.5-14.5h-224q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h224q250 0 410 225zM1792 1280q0 14-9 23l-320 320q-9 9-23 9-13 0-22.5-9.5t-9.5-22.5v-192q-32 0-85 0.5t-81 1-73-1-71-5-64-10.5-63-18.5-58-28.5-59-40-55-53.5-56-69.5q59-93 136-273 22 45 37 72.5t40.5 63.5 51 56.5 63 35 81.5 14.5h256v-192q0-14 9-23t23-9q12 0 24 10l319 319q9 9 9 23zM1792 384q0 14-9 23l-320 320q-9 9-23 9-13 0-22.5-9.5t-9.5-22.5v-192h-256q-48 0-87 15t-69 45-51 61.5-45 77.5q-32 62-78 171-29 66-49.5 111t-54 105-64 100-74 83-90 68.5-106.5 42-128 16.5h-224q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h224q48 0 87-15t69-45 51-61.5 45-77.5q32-62 78-171 29-66 49.5-111t54-105 64-100 74-83 90-68.5 106.5-42 128-16.5h256v-192q0-14 9-23t23-9q12 0 24 10l319 319q9 9 9 23z" + } + }] +}; +exports.random = random; +var comment = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1792 896q0 174-120 321.5t-326 233-450 85.5q-70 0-145-8-198 175-460 242-49 14-114 22-17 2-30.5-9t-17.5-29v-1q-3-4-0.5-12t2-10 4.5-9.5l6-9t7-8.5 8-9q7-8 31-34.5t34.5-38 31-39.5 32.5-51 27-59 26-76q-157-89-247.5-220t-90.5-281q0-130 71-248.5t191-204.5 286-136.5 348-50.5q244 0 450 85.5t326 233 120 321.5z" + } + }] +}; +exports.comment = comment; +var magnet = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1536 832v128q0 201-98.5 362t-274 251.5-395.5 90.5-395.5-90.5-274-251.5-98.5-362v-128q0-26 19-45t45-19h384q26 0 45 19t19 45v128q0 52 23.5 90t53.5 57 71 30 64 13 44 2 44-2 64-13 71-30 53.5-57 23.5-90v-128q0-26 19-45t45-19h384q26 0 45 19t19 45zM512 192v384q0 26-19 45t-45 19h-384q-26 0-45-19t-19-45v-384q0-26 19-45t45-19h384q26 0 45 19t19 45zM1536 192v384q0 26-19 45t-45 19h-384q-26 0-45-19t-19-45v-384q0-26 19-45t45-19h384q26 0 45 19t19 45z" + } + }] +}; +exports.magnet = magnet; +var chevronUp = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1683 1331l-166 165q-19 19-45 19t-45-19l-531-531-531 531q-19 19-45 19t-45-19l-166-165q-19-19-19-45.5t19-45.5l742-741q19-19 45-19t45 19l742 741q19 19 19 45.5t-19 45.5z" + } + }] +}; +exports.chevronUp = chevronUp; +var chevronDown = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1683 808l-742 741q-19 19-45 19t-45-19l-742-741q-19-19-19-45.5t19-45.5l166-165q19-19 45-19t45 19l531 531 531-531q19-19 45-19t45 19l166 165q19 19 19 45.5t-19 45.5z" + } + }] +}; +exports.chevronDown = chevronDown; +var retweet = { + "viewBox": "0 0 1920 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1280 1504q0 13-9.5 22.5t-22.5 9.5h-960q-8 0-13.5-2t-9-7-5.5-8-3-11.5-1-11.5v-13-11-160-416h-192q-26 0-45-19t-19-45q0-24 15-41l320-384q19-22 49-22t49 22l320 384q15 17 15 41 0 26-19 45t-45 19h-192v384h576q16 0 25 11l160 192q7 10 7 21zM1920 1088q0 24-15 41l-320 384q-20 23-49 23t-49-23l-320-384q-15-17-15-41 0-26 19-45t45-19h192v-384h-576q-16 0-25-12l-160-192q-7-9-7-20 0-13 9.5-22.5t22.5-9.5h960q8 0 13.5 2t9 7 5.5 8 3 11.5 1 11.5v13 11 160 416h192q26 0 45 19t19 45z" + } + }] +}; +exports.retweet = retweet; +var shoppingCart = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 1536q0 52-38 90t-90 38-90-38-38-90 38-90 90-38 90 38 38 90zM1536 1536q0 52-38 90t-90 38-90-38-38-90 38-90 90-38 90 38 38 90zM1664 448v512q0 24-16.5 42.5t-40.5 21.5l-1044 122q13 60 13 70 0 16-24 64h920q26 0 45 19t19 45-19 45-45 19h-1024q-26 0-45-19t-19-45q0-11 8-31.5t16-36 21.5-40 15.5-29.5l-177-823h-204q-26 0-45-19t-19-45 19-45 45-19h256q16 0 28.5 6.5t19.5 15.5 13 24.5 8 26 5.5 29.5 4.5 26h1201q26 0 45 19t19 45z" + } + }] +}; +exports.shoppingCart = shoppingCart; +var folder = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1664 608v704q0 92-66 158t-158 66h-1216q-92 0-158-66t-66-158v-960q0-92 66-158t158-66h320q92 0 158 66t66 158v32h672q92 0 158 66t66 158z" + } + }] +}; +exports.folder = folder; +var folderOpen = { + "viewBox": "0 0 1920 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1879 952q0 31-31 66l-336 396q-43 51-120.5 86.5t-143.5 35.5h-1088q-34 0-60.5-13t-26.5-43q0-31 31-66l336-396q43-51 120.5-86.5t143.5-35.5h1088q34 0 60.5 13t26.5 43zM1536 608v160h-832q-94 0-197 47.5t-164 119.5l-337 396-5 6q0-4-0.5-12.5t-0.5-12.5v-960q0-92 66-158t158-66h320q92 0 158 66t66 158v32h544q92 0 158 66t66 158z" + } + }] +}; +exports.folderOpen = folderOpen; +var arrowsV = { + "viewBox": "0 0 768 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M704 320q0 26-19 45t-45 19h-128v1024h128q26 0 45 19t19 45-19 45l-256 256q-19 19-45 19t-45-19l-256-256q-19-19-19-45t19-45 45-19h128v-1024h-128q-26 0-45-19t-19-45 19-45l256-256q19-19 45-19t45 19l256 256q19 19 19 45z" + } + }] +}; +exports.arrowsV = arrowsV; +var arrowsH = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1792 896q0 26-19 45l-256 256q-19 19-45 19t-45-19-19-45v-128h-1024v128q0 26-19 45t-45 19-45-19l-256-256q-19-19-19-45t19-45l256-256q19-19 45-19t45 19 19 45v128h1024v-128q0-26 19-45t45-19 45 19l256 256q19 19 19 45z" + } + }] +}; +exports.arrowsH = arrowsH; +var barChart = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 896v512h-256v-512h256zM1024 384v1024h-256v-1024h256zM2048 1536v128h-2048v-1536h128v1408h1920zM1408 640v768h-256v-768h256zM1792 256v1152h-256v-1152h256z" + } + }] +}; +exports.barChart = barChart; +var barChartO = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 896v512h-256v-512h256zM1024 384v1024h-256v-1024h256zM2048 1536v128h-2048v-1536h128v1408h1920zM1408 640v768h-256v-768h256zM1792 256v1152h-256v-1152h256z" + } + }] +}; +exports.barChartO = barChartO; +var twitterSquare = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1280 610q-56 25-121 34 68-40 93-117-65 38-134 51-61-66-153-66-87 0-148.5 61.5t-61.5 148.5q0 29 5 48-129-7-242-65t-192-155q-29 50-29 106 0 114 91 175-47-1-100-26v2q0 75 50 133.5t123 72.5q-29 8-51 8-13 0-39-4 21 63 74.5 104t121.5 42q-116 90-261 90-26 0-50-3 148 94 322 94 112 0 210-35.5t168-95 120.5-137 75-162 24.5-168.5q0-18-1-27 63-45 105-109zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.twitterSquare = twitterSquare; +var facebookSquare = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1248 128q119 0 203.5 84.5t84.5 203.5v960q0 119-84.5 203.5t-203.5 84.5h-188v-595h199l30-232h-229v-148q0-56 23.5-84t91.5-28l122-1v-207q-63-9-178-9-136 0-217.5 80t-81.5 226v171h-200v232h200v595h-532q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960z" + } + }] +}; +exports.facebookSquare = facebookSquare; +var cameraRetro = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M928 832q0-14-9-23t-23-9q-66 0-113 47t-47 113q0 14 9 23t23 9 23-9 9-23q0-40 28-68t68-28q14 0 23-9t9-23zM1152 962q0 106-75 181t-181 75-181-75-75-181 75-181 181-75 181 75 75 181zM128 1536h1536v-128h-1536v128zM1280 962q0-159-112.5-271.5t-271.5-112.5-271.5 112.5-112.5 271.5 112.5 271.5 271.5 112.5 271.5-112.5 112.5-271.5zM256 320h384v-128h-384v128zM128 512h1536v-118-138h-828l-64 128h-644v128zM1792 256v1280q0 53-37.5 90.5t-90.5 37.5h-1536q-53 0-90.5-37.5t-37.5-90.5v-1280q0-53 37.5-90.5t90.5-37.5h1536q53 0 90.5 37.5t37.5 90.5z" + } + }] +}; +exports.cameraRetro = cameraRetro; +var key = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M832 512q0-80-56-136t-136-56-136 56-56 136q0 42 19 83-41-19-83-19-80 0-136 56t-56 136 56 136 136 56 136-56 56-136q0-42-19-83 41 19 83 19 80 0 136-56t56-136zM1683 1216q0 17-49 66t-66 49q-9 0-28.5-16t-36.5-33-38.5-40-24.5-26l-96 96 220 220q28 28 28 68 0 42-39 81t-81 39q-40 0-68-28l-671-671q-176 131-365 131-163 0-265.5-102.5t-102.5-265.5q0-160 95-313t248-248 313-95q163 0 265.5 102.5t102.5 265.5q0 189-131 365l355 355 96-96q-3-3-26-24.5t-40-38.5-33-36.5-16-28.5q0-17 49-66t66-49q13 0 23 10 6 6 46 44.5t82 79.5 86.5 86 73 78 28.5 41z" + } + }] +}; +exports.key = key; +var cogs = { + "viewBox": "0 0 1920 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M896 896q0-106-75-181t-181-75-181 75-75 181 75 181 181 75 181-75 75-181zM1664 1408q0-52-38-90t-90-38-90 38-38 90q0 53 37.5 90.5t90.5 37.5 90.5-37.5 37.5-90.5zM1664 384q0-52-38-90t-90-38-90 38-38 90q0 53 37.5 90.5t90.5 37.5 90.5-37.5 37.5-90.5zM1280 805v185q0 10-7 19.5t-16 10.5l-155 24q-11 35-32 76 34 48 90 115 7 11 7 20 0 12-7 19-23 30-82.5 89.5t-78.5 59.5q-11 0-21-7l-115-90q-37 19-77 31-11 108-23 155-7 24-30 24h-186q-11 0-20-7.5t-10-17.5l-23-153q-34-10-75-31l-118 89q-7 7-20 7-11 0-21-8-144-133-144-160 0-9 7-19 10-14 41-53t47-61q-23-44-35-82l-152-24q-10-1-17-9.5t-7-19.5v-185q0-10 7-19.5t16-10.5l155-24q11-35 32-76-34-48-90-115-7-11-7-20 0-12 7-20 22-30 82-89t79-59q11 0 21 7l115 90q34-18 77-32 11-108 23-154 7-24 30-24h186q11 0 20 7.5t10 17.5l23 153q34 10 75 31l118-89q8-7 20-7 11 0 21 8 144 133 144 160 0 8-7 19-12 16-42 54t-45 60q23 48 34 82l152 23q10 2 17 10.5t7 19.5zM1920 1338v140q0 16-149 31-12 27-30 52 51 113 51 138 0 4-4 7-122 71-124 71-8 0-46-47t-52-68q-20 2-30 2t-30-2q-14 21-52 68t-46 47q-2 0-124-71-4-3-4-7 0-25 51-138-18-25-30-52-149-15-149-31v-140q0-16 149-31 13-29 30-52-51-113-51-138 0-4 4-7 4-2 35-20t59-34 30-16q8 0 46 46.5t52 67.5q20-2 30-2t30 2q51-71 92-112l6-2q4 0 124 70 4 3 4 7 0 25-51 138 17 23 30 52 149 15 149 31zM1920 314v140q0 16-149 31-12 27-30 52 51 113 51 138 0 4-4 7-122 71-124 71-8 0-46-47t-52-68q-20 2-30 2t-30-2q-14 21-52 68t-46 47q-2 0-124-71-4-3-4-7 0-25 51-138-18-25-30-52-149-15-149-31v-140q0-16 149-31 13-29 30-52-51-113-51-138 0-4 4-7 4-2 35-20t59-34 30-16q8 0 46 46.5t52 67.5q20-2 30-2t30 2q51-71 92-112l6-2q4 0 124 70 4 3 4 7 0 25-51 138 17 23 30 52 149 15 149 31z" + } + }] +}; +exports.cogs = cogs; +var gears = { + "viewBox": "0 0 1920 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M896 896q0-106-75-181t-181-75-181 75-75 181 75 181 181 75 181-75 75-181zM1664 1408q0-52-38-90t-90-38-90 38-38 90q0 53 37.5 90.5t90.5 37.5 90.5-37.5 37.5-90.5zM1664 384q0-52-38-90t-90-38-90 38-38 90q0 53 37.5 90.5t90.5 37.5 90.5-37.5 37.5-90.5zM1280 805v185q0 10-7 19.5t-16 10.5l-155 24q-11 35-32 76 34 48 90 115 7 11 7 20 0 12-7 19-23 30-82.5 89.5t-78.5 59.5q-11 0-21-7l-115-90q-37 19-77 31-11 108-23 155-7 24-30 24h-186q-11 0-20-7.5t-10-17.5l-23-153q-34-10-75-31l-118 89q-7 7-20 7-11 0-21-8-144-133-144-160 0-9 7-19 10-14 41-53t47-61q-23-44-35-82l-152-24q-10-1-17-9.5t-7-19.5v-185q0-10 7-19.5t16-10.5l155-24q11-35 32-76-34-48-90-115-7-11-7-20 0-12 7-20 22-30 82-89t79-59q11 0 21 7l115 90q34-18 77-32 11-108 23-154 7-24 30-24h186q11 0 20 7.5t10 17.5l23 153q34 10 75 31l118-89q8-7 20-7 11 0 21 8 144 133 144 160 0 8-7 19-12 16-42 54t-45 60q23 48 34 82l152 23q10 2 17 10.5t7 19.5zM1920 1338v140q0 16-149 31-12 27-30 52 51 113 51 138 0 4-4 7-122 71-124 71-8 0-46-47t-52-68q-20 2-30 2t-30-2q-14 21-52 68t-46 47q-2 0-124-71-4-3-4-7 0-25 51-138-18-25-30-52-149-15-149-31v-140q0-16 149-31 13-29 30-52-51-113-51-138 0-4 4-7 4-2 35-20t59-34 30-16q8 0 46 46.5t52 67.5q20-2 30-2t30 2q51-71 92-112l6-2q4 0 124 70 4 3 4 7 0 25-51 138 17 23 30 52 149 15 149 31zM1920 314v140q0 16-149 31-12 27-30 52 51 113 51 138 0 4-4 7-122 71-124 71-8 0-46-47t-52-68q-20 2-30 2t-30-2q-14 21-52 68t-46 47q-2 0-124-71-4-3-4-7 0-25 51-138-18-25-30-52-149-15-149-31v-140q0-16 149-31 13-29 30-52-51-113-51-138 0-4 4-7 4-2 35-20t59-34 30-16q8 0 46 46.5t52 67.5q20-2 30-2t30 2q51-71 92-112l6-2q4 0 124 70 4 3 4 7 0 25-51 138 17 23 30 52 149 15 149 31z" + } + }] +}; +exports.gears = gears; +var comments = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1408 768q0 139-94 257t-256.5 186.5-353.5 68.5q-86 0-176-16-124 88-278 128-36 9-86 16h-3q-11 0-20.5-8t-11.5-21q-1-3-1-6.5t0.5-6.5 2-6l2.5-5t3.5-5.5 4-5 4.5-5 4-4.5q5-6 23-25t26-29.5 22.5-29 25-38.5 20.5-44q-124-72-195-177t-71-224q0-139 94-257t256.5-186.5 353.5-68.5 353.5 68.5 256.5 186.5 94 257zM1792 1024q0 120-71 224.5t-195 176.5q10 24 20.5 44t25 38.5 22.5 29 26 29.5 23 25q1 1 4 4.5t4.5 5 4 5 3.5 5.5l2.5 5t2 6 0.5 6.5-1 6.5q-3 14-13 22t-22 7q-50-7-86-16-154-40-278-128-90 16-176 16-271 0-472-132 58 4 88 4 161 0 309-45t264-129q125-92 192-212t67-254q0-77-23-152 129 71 204 178t75 230z" + } + }] +}; +exports.comments = comments; +var thumbsOUp = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M256 1344q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zM1408 768q0-51-39-89.5t-89-38.5h-352q0-58 48-159.5t48-160.5q0-98-32-145t-128-47q-26 26-38 85t-30.5 125.5-59.5 109.5q-22 23-77 91-4 5-23 30t-31.5 41-34.5 42.5-40 44-38.5 35.5-40 27-35.5 9h-32v640h32q13 0 31.5 3t33 6.5 38 11 35 11.5 35.5 12.5 29 10.5q211 73 342 73h121q192 0 192-167 0-26-5-56 30-16 47.5-52.5t17.5-73.5-18-69q53-50 53-119 0-25-10-55.5t-25-47.5q32-1 53.5-47t21.5-81zM1536 767q0 89-49 163 9 33 9 69 0 77-38 144 3 21 3 43 0 101-60 178 1 139-85 219.5t-227 80.5h-36-93q-96 0-189.5-22.5t-216.5-65.5q-116-40-138-40h-288q-53 0-90.5-37.5t-37.5-90.5v-640q0-53 37.5-90.5t90.5-37.5h274q36-24 137-155 58-75 107-128 24-25 35.5-85.5t30.5-126.5 62-108q39-37 90-37 84 0 151 32.5t102 101.5 35 186q0 93-48 192h176q104 0 180 76t76 179z" + } + }] +}; +exports.thumbsOUp = thumbsOUp; +var thumbsODown = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M256 448q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zM1408 1024q0-35-21.5-81t-53.5-47q15-17 25-47.5t10-55.5q0-69-53-119 18-31 18-69 0-37-17.5-73.5t-47.5-52.5q5-30 5-56 0-85-49-126t-136-41h-128q-131 0-342 73-5 2-29 10.5t-35.5 12.5-35 11.5-38 11-33 6.5-31.5 3h-32v640h32q16 0 35.5 9t40 27 38.5 35.5 40 44 34.5 42.5 31.5 41 23 30q55 68 77 91 41 43 59.5 109.5t30.5 125.5 38 85q96 0 128-47t32-145q0-59-48-160.5t-48-159.5h352q50 0 89-38.5t39-89.5zM1536 1025q0 103-76 179t-180 76h-176q48 99 48 192 0 118-35 186-35 69-102 101.5t-151 32.5q-51 0-90-37-34-33-54-82t-25.5-90.5-17.5-84.5-31-64q-48-50-107-127-101-131-137-155h-274q-53 0-90.5-37.5t-37.5-90.5v-640q0-53 37.5-90.5t90.5-37.5h288q22 0 138-40 128-44 223-66t200-22h112q140 0 226.5 79t85.5 216v5q60 77 60 178 0 22-3 43 38 67 38 144 0 36-9 69 49 73 49 163z" + } + }] +}; +exports.thumbsODown = thumbsODown; +var starHalf = { + "viewBox": "0 0 896 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M832 32v1339l-449 236q-22 12-40 12-21 0-31.5-14.5t-10.5-35.5q0-6 2-20l86-500-364-354q-25-27-25-48 0-37 56-46l502-73 225-455q19-41 49-41z" + } + }] +}; +exports.starHalf = starHalf; +var heartO = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1664 596q0-81-21.5-143t-55-98.5-81.5-59.5-94-31-98-8-112 25.5-110.5 64-86.5 72-60 61.5q-18 22-49 22t-49-22q-24-28-60-61.5t-86.5-72-110.5-64-112-25.5-98 8-94 31-81.5 59.5-55 98.5-21.5 143q0 168 187 355l581 560 580-559q188-188 188-356zM1792 596q0 221-229 450l-623 600q-18 18-44 18t-44-18l-624-602q-10-8-27.5-26t-55.5-65.5-68-97.5-53.5-121-23.5-138q0-220 127-344t351-124q62 0 126.5 21.5t120 58 95.5 68.5 76 68q36-36 76-68t95.5-68.5 120-58 126.5-21.5q224 0 351 124t127 344z" + } + }] +}; +exports.heartO = heartO; +var signOut = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 1440q0 4 1 20t0.5 26.5-3 23.5-10 19.5-20.5 6.5h-320q-119 0-203.5-84.5t-84.5-203.5v-704q0-119 84.5-203.5t203.5-84.5h320q13 0 22.5 9.5t9.5 22.5q0 4 1 20t0.5 26.5-3 23.5-10 19.5-20.5 6.5h-320q-66 0-113 47t-47 113v704q0 66 47 113t113 47h288 11 13t11.5 1 11.5 3 8 5.5 7 9 2 13.5zM1568 896q0 26-19 45l-544 544q-19 19-45 19t-45-19-19-45v-288h-448q-26 0-45-19t-19-45v-384q0-26 19-45t45-19h448v-288q0-26 19-45t45-19 45 19l544 544q19 19 19 45z" + } + }] +}; +exports.signOut = signOut; +var linkedinSquare = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M237 1414h231v-694h-231v694zM483 506q-1-52-36-86t-93-34-94.5 34-36.5 86q0 51 35.5 85.5t92.5 34.5h1q59 0 95-34.5t36-85.5zM1068 1414h231v-398q0-154-73-233t-193-79q-136 0-209 117h2v-101h-231q3 66 0 694h231v-388q0-38 7-56 15-35 45-59.5t74-24.5q116 0 116 157v371zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.linkedinSquare = linkedinSquare; +var thumbTack = { + "viewBox": "0 0 1152 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M480 864v-448q0-14-9-23t-23-9-23 9-9 23v448q0 14 9 23t23 9 23-9 9-23zM1152 1216q0 26-19 45t-45 19h-429l-51 483q-2 12-10.5 20.5t-20.5 8.5h-1q-27 0-32-27l-76-485h-404q-26 0-45-19t-19-45q0-123 78.5-221.5t177.5-98.5v-512q-52 0-90-38t-38-90 38-90 90-38h640q52 0 90 38t38 90-38 90-90 38v512q99 0 177.5 98.5t78.5 221.5z" + } + }] +}; +exports.thumbTack = thumbTack; +var externalLink = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1408 928v320q0 119-84.5 203.5t-203.5 84.5h-832q-119 0-203.5-84.5t-84.5-203.5v-832q0-119 84.5-203.5t203.5-84.5h704q14 0 23 9t9 23v64q0 14-9 23t-23 9h-704q-66 0-113 47t-47 113v832q0 66 47 113t113 47h832q66 0 113-47t47-113v-320q0-14 9-23t23-9h64q14 0 23 9t9 23zM1792 64v512q0 26-19 45t-45 19-45-19l-176-176-652 652q-10 10-23 10t-23-10l-114-114q-10-10-10-23t10-23l652-652-176-176q-19-19-19-45t19-45 45-19h512q26 0 45 19t19 45z" + } + }] +}; +exports.externalLink = externalLink; +var signIn = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1184 896q0 26-19 45l-544 544q-19 19-45 19t-45-19-19-45v-288h-448q-26 0-45-19t-19-45v-384q0-26 19-45t45-19h448v-288q0-26 19-45t45-19 45 19l544 544q19 19 19 45zM1536 544v704q0 119-84.5 203.5t-203.5 84.5h-320q-13 0-22.5-9.5t-9.5-22.5q0-4-1-20t-0.5-26.5 3-23.5 10-19.5 20.5-6.5h320q66 0 113-47t47-113v-704q0-66-47-113t-113-47h-288-11-13t-11.5-1-11.5-3-8-5.5-7-9-2-13.5q0-4-1-20t-0.5-26.5 3-23.5 10-19.5 20.5-6.5h320q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.signIn = signIn; +var trophy = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M458 883q-74-162-74-371h-256v96q0 78 94.5 162t235.5 113zM1536 608v-96h-256q0 209-74 371 141-29 235.5-113t94.5-162zM1664 480v128q0 71-41.5 143t-112 130-173 97.5-215.5 44.5q-42 54-95 95-38 34-52.5 72.5t-14.5 89.5q0 54 30.5 91t97.5 37q75 0 133.5 45.5t58.5 114.5v64q0 14-9 23t-23 9h-832q-14 0-23-9t-9-23v-64q0-69 58.5-114.5t133.5-45.5q67 0 97.5-37t30.5-91q0-51-14.5-89.5t-52.5-72.5q-53-41-95-95-113-5-215.5-44.5t-173-97.5-112-130-41.5-143v-128q0-40 28-68t68-28h288v-96q0-66 47-113t113-47h576q66 0 113 47t47 113v96h288q40 0 68 28t28 68z" + } + }] +}; +exports.trophy = trophy; +var githubSquare = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M519 1200q4-6-3-13-9-7-14-2-4 6 3 13 9 7 14 2zM491 1159q-5-7-12-4-6 4 0 12 7 8 12 5 6-4 0-13zM450 1119q2-4-5-8-7-2-8 2-3 5 4 8 8 2 9-2zM471 1142q2-1 1.5-4.5t-3.5-5.5q-6-7-10-3t1 11q6 6 11 2zM557 1217q2-7-9-11-9-3-13 4-2 7 9 11 9 3 13-4zM599 1220q0-8-12-8-10 0-10 8t11 8 11-8zM638 1213q-2-7-13-5t-9 9q2 8 12 6t10-10zM1280 896q0-212-150-362t-362-150-362 150-150 362q0 167 98 300.5t252 185.5q18 3 26.5-5t8.5-20q0-52-1-95-6 1-15.5 2.5t-35.5 2-48-4-43.5-20-29.5-41.5q-23-59-57-74-2-1-4.5-3.5l-8-8t-7-9.5 4-7.5 19.5-3.5q6 0 15 2t30 15.5 33 35.5q16 28 37.5 42t43.5 14 38-3.5 30-9.5q7-47 33-69-49-6-86-18.5t-73-39-55.5-76-19.5-119.5q0-79 53-137-24-62 5-136 19-6 54.5 7.5t60.5 29.5l26 16q58-17 128-17t128 17q11-7 28.5-18t55.5-26 57-9q29 74 5 136 53 58 53 137 0 57-14 100.5t-35.5 70-53.5 44.5-62.5 26-68.5 12q35 31 35 95 0 40-0.5 89t-0.5 51q0 12 8.5 20t26.5 5q154-52 252-185.5t98-300.5zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.githubSquare = githubSquare; +var upload = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1280 1472q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zM1536 1472q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zM1664 1248v320q0 40-28 68t-68 28h-1472q-40 0-68-28t-28-68v-320q0-40 28-68t68-28h427q21 56 70.5 92t110.5 36h256q61 0 110.5-36t70.5-92h427q40 0 68 28t28 68zM1339 600q-17 40-59 40h-256v448q0 26-19 45t-45 19h-256q-26 0-45-19t-19-45v-448h-256q-42 0-59-40-17-39 14-69l448-448q18-19 45-19t45 19l448 448q31 30 14 69z" + } + }] +}; +exports.upload = upload; +var lemonO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1407 826q0-44-7-113.5t-18-96.5q-12-30-17-44t-9-36.5-4-48.5q0-23 5-68.5t5-67.5q0-37-10-55-4-1-13-1-19 0-58 4.5t-59 4.5q-60 0-176-24t-175-24q-43 0-94.5 11.5t-85 23.5-89.5 34q-137 54-202 103-96 73-159.5 189.5t-88 236-24.5 248.5q0 40 12.5 120t12.5 121q0 23-11 66.5t-11 65.5 12 36.5 34 14.5q24 0 72.5-11t73.5-11q57 0 169.5 15.5t169.5 15.5q181 0 284-36 129-45 235.5-152.5t166-245.5 59.5-275zM1535 824q0 165-70 327.5t-196 288-281 180.5q-124 44-326 44-57 0-170-14.5t-169-14.5q-24 0-72.5 14.5t-73.5 14.5q-73 0-123.5-55.5t-50.5-128.5q0-24 11-68t11-67q0-40-12.5-120.5t-12.5-121.5q0-111 18-217.5t54.5-209.5 100.5-194 150-156q78-59 232-120 194-78 316-78 60 0 175.5 24t173.5 24q19 0 57-5t58-5q81 0 118 50.5t37 134.5q0 23-5 68t-5 68q0 13 2 25t3.5 16.5 7.5 20.5 8 20q16 40 25 118.5t9 136.5z" + } + }] +}; +exports.lemonO = lemonO; +var phone = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1408 1240q0 27-10 70.5t-21 68.5q-21 50-122 106-94 51-186 51-27 0-53-3.5t-57.5-12.5-47-14.5-55.5-20.5-49-18q-98-35-175-83-127-79-264-216t-216-264q-48-77-83-175-3-9-18-49t-20.5-55.5-14.5-47-12.5-57.5-3.5-53q0-92 51-186 56-101 106-122 25-11 68.5-21t70.5-10q14 0 21 3 18 6 53 76 11 19 30 54t35 63.5 31 53.5q3 4 17.5 25t21.5 35.5 7 28.5q0 20-28.5 50t-62 55-62 53-28.5 46q0 9 5 22.5t8.5 20.5 14 24 11.5 19q76 137 174 235t235 174q2 1 19 11.5t24 14 20.5 8.5 22.5 5q18 0 46-28.5t53-62 55-62 50-28.5q14 0 28.5 7t35.5 21.5 25 17.5q25 15 53.5 31t63.5 35 54 30q70 35 76 53 3 7 3 21z" + } + }] +}; +exports.phone = phone; +var squareO = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1120 256h-832q-66 0-113 47t-47 113v832q0 66 47 113t113 47h832q66 0 113-47t47-113v-832q0-66-47-113t-113-47zM1408 416v832q0 119-84.5 203.5t-203.5 84.5h-832q-119 0-203.5-84.5t-84.5-203.5v-832q0-119 84.5-203.5t203.5-84.5h832q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.squareO = squareO; +var bookmarkO = { + "viewBox": "0 0 1280 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1152 256h-1024v1242l423-406 89-85 89 85 423 406v-1242zM1164 128q23 0 44 9 33 13 52.5 41t19.5 62v1289q0 34-19.5 62t-52.5 41q-19 8-44 8-48 0-83-32l-441-424-441 424q-36 33-83 33-23 0-44-9-33-13-52.5-41t-19.5-62v-1289q0-34 19.5-62t52.5-41q21-9 44-9h1048z" + } + }] +}; +exports.bookmarkO = bookmarkO; +var phoneSquare = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1280 1193q0-11-2-16t-18-16.5-40.5-25-47.5-26.5-45.5-25-28.5-15q-5-3-19-13t-25-15-21-5q-15 0-36.5 20.5t-39.5 45-38.5 45-33.5 20.5q-7 0-16.5-3.5t-15.5-6.5-17-9.5-14-8.5q-99-55-170-126.5t-127-170.5q-2-3-8.5-14t-9.5-17-6.5-15.5-3.5-16.5q0-13 20.5-33.5t45-38.5 45-39.5 20.5-36.5q0-10-5-21t-15-25-13-19q-3-6-15-28.5t-25-45.5-26.5-47.5-25-40.5-16.5-18-16-2q-48 0-101 22-46 21-80 94.5t-34 130.5q0 16 2.5 34t5 30.5 9 33 10 29.5 12.5 33 11 30q60 164 216.5 320.5t320.5 216.5q6 2 30 11t33 12.5 29.5 10 33 9 30.5 5 34 2.5q57 0 130.5-34t94.5-80q22-53 22-101zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.phoneSquare = phoneSquare; +var twitter = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1620 408q-67 98-162 167 1 14 1 42 0 130-38 259.5t-115.5 248.5-184.5 210.5-258 146-323 54.5q-271 0-496-145 35 4 78 4 225 0 401-138-105-2-188-64.5t-114-159.5q33 5 61 5 43 0 85-11-112-23-185.5-111.5t-73.5-205.5v-4q68 38 146 41-66-44-105-115t-39-154q0-88 44-163 121 149 294.5 238.5t371.5 99.5q-8-38-8-74 0-134 94.5-228.5t228.5-94.5q140 0 236 102 109-21 205-78-37 115-142 178 93-10 186-50z" + } + }] +}; +exports.twitter = twitter; +var facebook = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M959 12v264h-157q-86 0-116 36t-30 108v189h293l-39 296h-254v759h-306v-759h-255v-296h255v-218q0-186 104-288.5t277-102.5q147 0 228 12z" + } + }] +}; +exports.facebook = facebook; +var facebookF = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M959 12v264h-157q-86 0-116 36t-30 108v189h293l-39 296h-254v759h-306v-759h-255v-296h255v-218q0-186 104-288.5t277-102.5q147 0 228 12z" + } + }] +}; +exports.facebookF = facebookF; +var github = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M768 128q209 0 385.5 103t279.5 279.5 103 385.5q0 251-146.5 451.5t-378.5 277.5q-27 5-40-7t-13-30q0-3 0.5-76.5t0.5-134.5q0-97-52-142 57-6 102.5-18t94-39 81-66.5 53-105 20.5-150.5q0-119-79-206 37-91-8-204-28-9-81 11t-92 44l-38 24q-93-26-192-26t-192 26q-16-11-42.5-27t-83.5-38.5-85-13.5q-45 113-8 204-79 87-79 206 0 85 20.5 150t52.5 105 80.5 67 94 39 102.5 18q-39 36-49 103-21 10-45 15t-57 5-65.5-21.5-55.5-62.5q-19-32-48.5-52t-49.5-24l-20-3q-21 0-29 4.5t-5 11.5 9 14 13 12l7 5q22 10 43.5 38t31.5 51l10 23q13 38 44 61.5t67 30 69.5 7 55.5-3.5l23-4q0 38 0.5 88.5t0.5 54.5q0 18-13 30t-40 7q-232-77-378.5-277.5t-146.5-451.5q0-209 103-385.5t279.5-279.5 385.5-103zM291 1231q3-7-7-12-10-3-13 2-3 7 7 12 9 6 13-2zM322 1265q7-5-2-16-10-9-16-3-7 5 2 16 10 10 16 3zM352 1310q9-7 0-19-8-13-17-6-9 5 0 18t17 7zM394 1352q8-8-4-19-12-12-20-3-9 8 4 19 12 12 20 3zM451 1377q3-11-13-16-15-4-19 7t13 15q15 6 19-6zM514 1382q0-13-17-11-16 0-16 11 0 13 17 11 16 0 16-11zM572 1372q-2-11-18-9-16 3-14 15t18 8 14-14z" + } + }] +}; +exports.github = github; +var unlock = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1664 576v256q0 26-19 45t-45 19h-64q-26 0-45-19t-19-45v-256q0-106-75-181t-181-75-181 75-75 181v192h96q40 0 68 28t28 68v576q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-576q0-40 28-68t68-28h672v-192q0-185 131.5-316.5t316.5-131.5 316.5 131.5 131.5 316.5z" + } + }] +}; +exports.unlock = unlock; +var creditCard = { + "viewBox": "0 0 1920 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1760 128q66 0 113 47t47 113v1216q0 66-47 113t-113 47h-1600q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1600zM160 256q-13 0-22.5 9.5t-9.5 22.5v224h1664v-224q0-13-9.5-22.5t-22.5-9.5h-1600zM1760 1536q13 0 22.5-9.5t9.5-22.5v-608h-1664v608q0 13 9.5 22.5t22.5 9.5h1600zM256 1408v-128h256v128h-256zM640 1408v-128h384v128h-384z" + } + }] +}; +exports.creditCard = creditCard; +var feed = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M384 1344q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM896 1467q2 28-17 48-18 21-47 21h-135q-25 0-43-16.5t-20-41.5q-22-229-184.5-391.5t-391.5-184.5q-25-2-41.5-20t-16.5-43v-135q0-29 21-47 17-17 43-17h5q160 13 306 80.5t259 181.5q114 113 181.5 259t80.5 306zM1408 1469q2 27-18 47-18 20-46 20h-143q-26 0-44.5-17.5t-19.5-42.5q-12-215-101-408.5t-231.5-336-336-231.5-408.5-102q-25-1-42.5-19.5t-17.5-43.5v-143q0-28 20-46 18-18 44-18h3q262 13 501.5 120t425.5 294q187 186 294 425.5t120 501.5z" + } + }] +}; +exports.feed = feed; +var rss = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M384 1344q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM896 1467q2 28-17 48-18 21-47 21h-135q-25 0-43-16.5t-20-41.5q-22-229-184.5-391.5t-391.5-184.5q-25-2-41.5-20t-16.5-43v-135q0-29 21-47 17-17 43-17h5q160 13 306 80.5t259 181.5q114 113 181.5 259t80.5 306zM1408 1469q2 27-18 47-18 20-46 20h-143q-26 0-44.5-17.5t-19.5-42.5q-12-215-101-408.5t-231.5-336-336-231.5-408.5-102q-25-1-42.5-19.5t-17.5-43.5v-143q0-28 20-46 18-18 44-18h3q262 13 501.5 120t425.5 294q187 186 294 425.5t120 501.5z" + } + }] +}; +exports.rss = rss; +var hddO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1040 1216q0 33-23.5 56.5t-56.5 23.5-56.5-23.5-23.5-56.5 23.5-56.5 56.5-23.5 56.5 23.5 23.5 56.5zM1296 1216q0 33-23.5 56.5t-56.5 23.5-56.5-23.5-23.5-56.5 23.5-56.5 56.5-23.5 56.5 23.5 23.5 56.5zM1408 1376v-320q0-13-9.5-22.5t-22.5-9.5h-1216q-13 0-22.5 9.5t-9.5 22.5v320q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5-9.5t9.5-22.5zM178 896h1180l-157-482q-4-13-16-21.5t-26-8.5h-782q-14 0-26 8.5t-16 21.5zM1536 1056v320q0 66-47 113t-113 47h-1216q-66 0-113-47t-47-113v-320q0-25 16-75l197-606q17-53 63-86t101-33h782q55 0 101 33t63 86l197 606q16 50 16 75z" + } + }] +}; +exports.hddO = hddO; +var bullhorn = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1664 640q53 0 90.5 37.5t37.5 90.5-37.5 90.5-90.5 37.5v384q0 52-38 90t-90 38q-417-347-812-380-58 19-91 66t-31 100.5 40 92.5q-20 33-23 65.5t6 58 33.5 55 48 50 61.5 50.5q-29 58-111.5 83t-168.5 11.5-132-55.5q-7-23-29.5-87.5t-32-94.5-23-89-15-101 3.5-98.5 22-110.5h-122q-66 0-113-47t-47-113v-192q0-66 47-113t113-47h480q435 0 896-384 52 0 90 38t38 90v384zM1536 1244v-954q-394 302-768 343v270q377 42 768 341z" + } + }] +}; +exports.bullhorn = bullhorn; +var bellO = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M912 1696q0-16-16-16-59 0-101.5-42.5t-42.5-101.5q0-16-16-16t-16 16q0 73 51.5 124.5t124.5 51.5q16 0 16-16zM246 1408h1300q-266-300-266-832 0-51-24-105t-69-103-121.5-80.5-169.5-31.5-169.5 31.5-121.5 80.5-69 103-24 105q0 532-266 832zM1728 1408q0 52-38 90t-90 38h-448q0 106-75 181t-181 75-181-75-75-181h-448q-52 0-90-38t-38-90q50-42 91-88t85-119.5 74.5-158.5 50-206 19.5-260q0-152 117-282.5t307-158.5q-8-19-8-39 0-40 28-68t68-28 68 28 28 68q0 20-8 39 190 28 307 158.5t117 282.5q0 139 19.5 260t50 206 74.5 158.5 85 119.5 91 88z" + } + }] +}; +exports.bellO = bellO; +var certificate = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1376 896l138 135q30 28 20 70-12 41-52 51l-188 48 53 186q12 41-19 70-29 31-70 19l-186-53-48 188q-10 40-51 52-12 2-19 2-31 0-51-22l-135-138-135 138q-28 30-70 20-41-11-51-52l-48-188-186 53q-41 12-70-19-31-29-19-70l53-186-188-48q-40-10-52-51-10-42 20-70l138-135-138-135q-30-28-20-70 12-41 52-51l188-48-53-186q-12-41 19-70 29-31 70-19l186 53 48-188q10-41 51-51 41-12 70 19l135 139 135-139q29-30 70-19 41 10 51 51l48 188 186-53q41-12 70 19 31 29 19 70l-53 186 188 48q40 10 52 51 10 42-20 70z" + } + }] +}; +exports.certificate = certificate; +var handORight = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M256 1344q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zM1664 768q0-51-39-89.5t-89-38.5h-576q0-20 15-48.5t33-55 33-68 15-84.5q0-67-44.5-97.5t-115.5-30.5q-24 0-90 139-24 44-37 65-40 64-112 145-71 81-101 106-69 57-140 57h-32v640h32q72 0 167 32t193.5 64 179.5 32q189 0 189-167 0-26-5-56 30-16 47.5-52.5t17.5-73.5-18-69q53-50 53-119 0-25-10-55.5t-25-47.5h331q52 0 90-38t38-90zM1792 767q0 105-75.5 181t-180.5 76h-169q-4 62-37 119 3 21 3 43 0 101-60 178 1 139-85 219.5t-227 80.5q-133 0-322-69-164-59-223-59h-288q-53 0-90.5-37.5t-37.5-90.5v-640q0-53 37.5-90.5t90.5-37.5h288q10 0 21.5-4.5t23.5-14 22.5-18 24-22.5 20.5-21.5 19-21.5 14-17q65-74 100-129 13-21 33-62t37-72 40.5-63 55-49.5 69.5-17.5q125 0 206.5 67t81.5 189q0 68-22 128h374q104 0 180 76t76 179z" + } + }] +}; +exports.handORight = handORight; +var handOLeft = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1376 1408h32v-640h-32q-35 0-67.5-12t-62.5-37-50-46-49-54q-8-9-12-14-72-81-112-145-14-22-38-68-1-3-10.5-22.5t-18.5-36-20-35.5-21.5-30.5-18.5-11.5q-71 0-115.5 30.5t-44.5 97.5q0 43 15 84.5t33 68 33 55 15 48.5h-576q-50 0-89 38.5t-39 89.5q0 52 38 90t90 38h331q-15 17-25 47.5t-10 55.5q0 69 53 119-18 32-18 69t17.5 73.5 47.5 52.5q-4 24-4 56 0 85 48.5 126t135.5 41q84 0 183-32t194-64 167-32zM1664 1344q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zM1792 768v640q0 53-37.5 90.5t-90.5 37.5h-288q-59 0-223 59-190 69-317 69-142 0-230-77.5t-87-217.5l1-5q-61-76-61-178 0-22 3-43-33-57-37-119h-169q-105 0-180.5-76t-75.5-181q0-103 76-179t180-76h374q-22-60-22-128 0-122 81.5-189t206.5-67q38 0 69.5 17.5t55 49.5 40.5 63 37 72 33 62q35 55 100 129 2 3 14 17t19 21.5 20.5 21.5 24 22.5 22.5 18 23.5 14 21.5 4.5h288q53 0 90.5 37.5t37.5 90.5z" + } + }] +}; +exports.handOLeft = handOLeft; +var handOUp = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1280 1600q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zM1408 836q0-189-167-189-26 0-56 5-16-30-52.5-47.5t-73.5-17.5-69 18q-50-53-119-53-25 0-55.5 10t-47.5 25v-331q0-52-38-90t-90-38q-51 0-89.5 39t-38.5 89v576q-20 0-48.5-15t-55-33-68-33-84.5-15q-67 0-97.5 44.5t-30.5 115.5q0 24 139 90 44 24 65 37 64 40 145 112 81 71 106 101 57 69 57 140v32h640v-32q0-72 32-167t64-193.5 32-179.5zM1536 831q0 133-69 322-59 164-59 223v288q0 53-37.5 90.5t-90.5 37.5h-640q-53 0-90.5-37.5t-37.5-90.5v-288q0-10-4.5-21.5t-14-23.5-18-22.5-22.5-24-21.5-20.5-21.5-19-17-14q-74-65-129-100-21-13-62-33t-72-37-63-40.5-49.5-55-17.5-69.5q0-125 67-206.5t189-81.5q68 0 128 22v-374q0-104 76-180t179-76q105 0 181 75.5t76 180.5v169q62 4 119 37 21-3 43-3 101 0 178 60 139-1 219.5 85t80.5 227z" + } + }] +}; +exports.handOUp = handOUp; +var handODown = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1408 960q0-84-32-183t-64-194-32-167v-32h-640v32q0 35-12 67.5t-37 62.5-46 50-54 49q-9 8-14 12-81 72-145 112-22 14-68 38-3 1-22.5 10.5t-36 18.5-35.5 20-30.5 21.5-11.5 18.5q0 71 30.5 115.5t97.5 44.5q43 0 84.5-15t68-33 55-33 48.5-15v576q0 50 38.5 89t89.5 39q52 0 90-38t38-90v-331q46 35 103 35 69 0 119-53 32 18 69 18t73.5-17.5 52.5-47.5q24 4 56 4 85 0 126-48.5t41-135.5zM1280 192q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zM1536 956q0 142-77.5 230t-217.5 87l-5-1q-76 61-178 61-22 0-43-3-54 30-119 37v169q0 105-76 180.5t-181 75.5q-103 0-179-76t-76-180v-374q-54 22-128 22-121 0-188.5-81.5t-67.5-206.5q0-38 17.5-69.5t49.5-55 63-40.5 72-37 62-33q55-35 129-100 3-2 17-14t21.5-19 21.5-20.5 22.5-24 18-22.5 14-23.5 4.5-21.5v-288q0-53 37.5-90.5t90.5-37.5h640q53 0 90.5 37.5t37.5 90.5v288q0 59 59 223 69 190 69 317z" + } + }] +}; +exports.handODown = handODown; +var arrowCircleLeft = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1280 960v-128q0-26-19-45t-45-19h-502l189-189q19-19 19-45t-19-45l-91-91q-18-18-45-18t-45 18l-362 362-91 91q-18 18-18 45t18 45l91 91 362 362q18 18 45 18t45-18l91-91q18-18 18-45t-18-45l-189-189h502q26 0 45-19t19-45zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.arrowCircleLeft = arrowCircleLeft; +var arrowCircleRight = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1285 896q0-27-18-45l-91-91-362-362q-18-18-45-18t-45 18l-91 91q-18 18-18 45t18 45l189 189h-502q-26 0-45 19t-19 45v128q0 26 19 45t45 19h502l-189 189q-19 19-19 45t19 45l91 91q18 18 45 18t45-18l362-362 91-91q18-18 18-45zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.arrowCircleRight = arrowCircleRight; +var arrowCircleUp = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1284 895q0-27-18-45l-362-362-91-91q-18-18-45-18t-45 18l-91 91-362 362q-18 18-18 45t18 45l91 91q18 18 45 18t45-18l189-189v502q0 26 19 45t45 19h128q26 0 45-19t19-45v-502l189 189q19 19 45 19t45-19l91-91q18-18 18-45zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.arrowCircleUp = arrowCircleUp; +var arrowCircleDown = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1284 897q0-27-18-45l-91-91q-18-18-45-18t-45 18l-189 189v-502q0-26-19-45t-45-19h-128q-26 0-45 19t-19 45v502l-189-189q-19-19-45-19t-45 19l-91 91q-18 18-18 45t18 45l362 362 91 91q18 18 45 18t45-18l91-91 362-362q18-18 18-45zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.arrowCircleDown = arrowCircleDown; +var globe = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M768 128q209 0 385.5 103t279.5 279.5 103 385.5-103 385.5-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103zM1042 649q-2 1-9.5 9.5t-13.5 9.5q2 0 4.5-5t5-11 3.5-7q6-7 22-15 14-6 52-12 34-8 51 11-2-2 9.5-13t14.5-12q3-2 15-4.5t15-7.5l2-22q-12 1-17.5-7t-6.5-21q0 2-6 8 0-7-4.5-8t-11.5 1-9 1q-10-3-15-7.5t-8-16.5-4-15q-2-5-9.5-11t-9.5-10q-1-2-2.5-5.5t-3-6.5-4-5.5-5.5-2.5-7 5-7.5 10-4.5 5q-3-2-6-1.5t-4.5 1-4.5 3-5 3.5q-3 2-8.5 3t-8.5 2q15-5-1-11-10-4-16-3 9-4 7.5-12t-8.5-14h5q-1-4-8.5-8.5t-17.5-8.5-13-6q-8-5-34-9.5t-33-0.5q-5 6-4.5 10.5t4 14 3.5 12.5q1 6-5.5 13t-6.5 12q0 7 14 15.5t10 21.5q-3 8-16 16t-16 12q-5 8-1.5 18.5t10.5 16.5q2 2 1.5 4t-3.5 4.5-5.5 4-6.5 3.5l-3 2q-11 5-20.5-6t-13.5-26q-7-25-16-30-23-8-29 1-5-13-41-26-25-9-58-4 6-1 0-15-7-15-19-12 3-6 4-17.5t1-13.5q3-13 12-23 1-1 7-8.5t9.5-13.5 0.5-6q35 4 50-11 5-5 11.5-17t10.5-17q9-6 14-5.5t14.5 5.5 14.5 5q14 1 15.5-11t-7.5-20q12 1 3-17-4-7-8-9-12-4-27 5-8 4 2 8-1-1-9.5 10.5t-16.5 17.5-16-5q-1-1-5.5-13.5t-9.5-13.5q-8 0-16 15 3-8-11-15t-24-8q19-12-8-27-7-4-20.5-5t-19.5 4q-5 7-5.5 11.5t5 8 10.5 5.5 11.5 4 8.5 3q14 10 8 14-2 1-8.5 3.5t-11.5 4.5-6 4q-3 4 0 14t-2 14q-5-5-9-17.5t-7-16.5q7 9-25 6l-10-1q-4 0-16 2t-20.5 1-13.5-8q-4-8 0-20 1-4 4-2-4-3-11-9.5t-10-8.5q-46 15-94 41 6 1 12-1 5-2 13-6.5t10-5.5q34-14 42-7l5-5q14 16 20 25-7-4-30-1-20 6-22 12 7 12 5 18-4-3-11.5-10t-14.5-11-15-5q-16 0-22 1-146 80-235 222 7 7 12 8 4 1 5 9t2.5 11 11.5-3q9 8 3 19 1-1 44 27 19 17 21 21 3 11-10 18-1-2-9-9t-9-4q-3 5 0.5 18.5t10.5 12.5q-7 0-9.5 16t-2.5 35.5-1 23.5l2 1q-3 12 5.5 34.5t21.5 19.5q-13 3 20 43 6 8 8 9 3 2 12 7.5t15 10 10 10.5q4 5 10 22.5t14 23.5q-2 6 9.5 20t10.5 23q-1 0-2.5 1t-2.5 1q3 7 15.5 14t15.5 13q1 3 2 10t3 11 8 2q2-20-24-62-15-25-17-29-3-5-5.5-15.5t-4.5-14.5q2 0 6 1.5t8.5 3.5 7.5 4 2 3q-3 7 2 17.5t12 18.5 17 19 12 13q6 6 14 19.5t0 13.5q9 0 20 10.5t17 19.5q5 8 8 26t5 24q2 7 8.5 13.5t12.5 9.5l16 8t13 7q5 2 18.5 10.5t21.5 11.5q10 4 16 4t14.5-2.5 13.5-3.5q15-2 29 15t21 21q36 19 55 11-2 1 0.5 7.5t8 15.5 9 14.5 5.5 8.5q5 6 18 15t18 15q6-4 7-9-3 8 7 20t18 10q14-3 14-32-31 15-49-18 0-1-2.5-5.5t-4-8.5-2.5-8.5 0-7.5 5-3q9 0 10-3.5t-2-12.5-4-13q-1-8-11-20t-12-15q-5 9-16 8t-16-9q0 1-1.5 5.5t-1.5 6.5q-13 0-15-1 1-3 2.5-17.5t3.5-22.5q1-4 5.5-12t7.5-14.5 4-12.5-4.5-9.5-17.5-2.5q-19 1-26 20-1 3-3 10.5t-5 11.5-9 7q-7 3-24 2t-24-5q-13-8-22.5-29t-9.5-37q0-10 2.5-26.5t3-25-5.5-24.5q3-2 9-9.5t10-10.5q2-1 4.5-1.5t4.5 0 4-1.5 3-6q-1-1-4-3-3-3-4-3 7 3 28.5-1.5t27.5 1.5q15 11 22-2 0-1-2.5-9.5t-0.5-13.5q5 27 29 9 3 3 15.5 5t17.5 5q3 2 7 5.5t5.5 4.5 5-0.5 8.5-6.5q10 14 12 24 11 40 19 44 7 3 11 2t4.5-9.5 0-14-1.5-12.5l-1-8v-18l-1-8q-15-3-18.5-12t1.5-18.5 15-18.5q1-1 8-3.5t15.5-6.5 12.5-8q21-19 15-35 7 0 11-9-1 0-5-3t-7.5-5-4.5-2q9-5 2-16 5-3 7.5-11t7.5-10q9 12 21 2 8-8 1-16 5-7 20.5-10.5t18.5-9.5q7 2 8-2t1-12 3-12q4-5 15-9t13-5l17-11q3-4 0-4 18 2 31-11 10-11-6-20 3-6-3-9.5t-15-5.5q3-1 11.5-0.5t10.5-1.5q15-10-7-16-17-5-43 12zM879 1526q206-36 351-189-3-3-12.5-4.5t-12.5-3.5q-18-7-24-8 1-7-2.5-13t-8-9-12.5-8-11-7q-2-2-7-6t-7-5.5-7.5-4.5-8.5-2-10 1l-3 1q-3 1-5.5 2.5t-5.5 3-4 3 0 2.5q-21-17-36-22-5-1-11-5.5t-10.5-7-10-1.5-11.5 7q-5 5-6 15t-2 13q-7-5 0-17.5t2-18.5q-3-6-10.5-4.5t-12 4.5-11.5 8.5-9 6.5-8.5 5.5-8.5 7.5q-3 4-6 12t-5 11q-2-4-11.5-6.5t-9.5-5.5q2 10 4 35t5 38q7 31-12 48-27 25-29 40-4 22 12 26 0 7-8 20.5t-7 21.5q0 6 2 16z" + } + }] +}; +exports.globe = globe; +var wrench = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M384 1472q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zM1028 1052l-682 682q-37 37-90 37-52 0-91-37l-106-108q-38-36-38-90 0-53 38-91l681-681q39 98 114.5 173.5t173.5 114.5zM1662 617q0 39-23 106-47 134-164.5 217.5t-258.5 83.5q-185 0-316.5-131.5t-131.5-316.5 131.5-316.5 316.5-131.5q58 0 121.5 16.5t107.5 46.5q16 11 16 28t-16 28l-293 169v224l193 107q5-3 79-48.5t135.5-81 70.5-35.5q15 0 23.5 10t8.5 25z" + } + }] +}; +exports.wrench = wrench; +var tasks = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 1408h640v-128h-640v128zM640 896h1024v-128h-1024v128zM1280 384h384v-128h-384v128zM1792 1216v256q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-256q0-26 19-45t45-19h1664q26 0 45 19t19 45zM1792 704v256q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-256q0-26 19-45t45-19h1664q26 0 45 19t19 45zM1792 192v256q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-256q0-26 19-45t45-19h1664q26 0 45 19t19 45z" + } + }] +}; +exports.tasks = tasks; +var filter = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1403 295q17 41-14 70l-493 493v742q0 42-39 59-13 5-25 5-27 0-45-19l-256-256q-19-19-19-45v-486l-493-493q-31-29-14-70 17-39 59-39h1280q42 0 59 39z" + } + }] +}; +exports.filter = filter; +var briefcase = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 256h512v-128h-512v128zM1792 896v480q0 66-47 113t-113 47h-1472q-66 0-113-47t-47-113v-480h672v160q0 26 19 45t45 19h320q26 0 45-19t19-45v-160h672zM1024 896v128h-256v-128h256zM1792 416v384h-1792v-384q0-66 47-113t113-47h352v-160q0-40 28-68t68-28h576q40 0 68 28t28 68v160h352q66 0 113 47t47 113z" + } + }] +}; +exports.briefcase = briefcase; +var arrowsAlt = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1283 541l-355 355 355 355 144-144q29-31 70-14 39 17 39 59v448q0 26-19 45t-45 19h-448q-42 0-59-40-17-39 14-69l144-144-355-355-355 355 144 144q31 30 14 69-17 40-59 40h-448q-26 0-45-19t-19-45v-448q0-42 40-59 39-17 69 14l144 144 355-355-355-355-144 144q-19 19-45 19-12 0-24-5-40-17-40-59v-448q0-26 19-45t45-19h448q42 0 59 40 17 39-14 69l-144 144 355 355 355-355-144-144q-31-30-14-69 17-40 59-40h448q26 0 45 19t19 45v448q0 42-39 59-13 5-25 5-26 0-45-19z" + } + }] +}; +exports.arrowsAlt = arrowsAlt; +var group = { + "viewBox": "0 0 1920 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M593 896q-162 5-265 128h-134q-82 0-138-40.5t-56-118.5q0-353 124-353 6 0 43.5 21t97.5 42.5 119 21.5q67 0 133-23-5 37-5 66 0 139 81 256zM1664 1533q0 120-73 189.5t-194 69.5h-874q-121 0-194-69.5t-73-189.5q0-53 3.5-103.5t14-109 26.5-108.5 43-97.5 62-81 85.5-53.5 111.5-20q10 0 43 21.5t73 48 107 48 135 21.5 135-21.5 107-48 73-48 43-21.5q61 0 111.5 20t85.5 53.5 62 81 43 97.5 26.5 108.5 14 109 3.5 103.5zM640 256q0 106-75 181t-181 75-181-75-75-181 75-181 181-75 181 75 75 181zM1344 640q0 159-112.5 271.5t-271.5 112.5-271.5-112.5-112.5-271.5 112.5-271.5 271.5-112.5 271.5 112.5 112.5 271.5zM1920 865q0 78-56 118.5t-138 40.5h-134q-103-123-265-128 81-117 81-256 0-29-5-66 66 23 133 23 59 0 119-21.5t97.5-42.5 43.5-21q124 0 124 353zM1792 256q0 106-75 181t-181 75-181-75-75-181 75-181 181-75 181 75 75 181z" + } + }] +}; +exports.group = group; +var users = { + "viewBox": "0 0 1920 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M593 896q-162 5-265 128h-134q-82 0-138-40.5t-56-118.5q0-353 124-353 6 0 43.5 21t97.5 42.5 119 21.5q67 0 133-23-5 37-5 66 0 139 81 256zM1664 1533q0 120-73 189.5t-194 69.5h-874q-121 0-194-69.5t-73-189.5q0-53 3.5-103.5t14-109 26.5-108.5 43-97.5 62-81 85.5-53.5 111.5-20q10 0 43 21.5t73 48 107 48 135 21.5 135-21.5 107-48 73-48 43-21.5q61 0 111.5 20t85.5 53.5 62 81 43 97.5 26.5 108.5 14 109 3.5 103.5zM640 256q0 106-75 181t-181 75-181-75-75-181 75-181 181-75 181 75 75 181zM1344 640q0 159-112.5 271.5t-271.5 112.5-271.5-112.5-112.5-271.5 112.5-271.5 271.5-112.5 271.5 112.5 112.5 271.5zM1920 865q0 78-56 118.5t-138 40.5h-134q-103-123-265-128 81-117 81-256 0-29-5-66 66 23 133 23 59 0 119-21.5t97.5-42.5 43.5-21q124 0 124 353zM1792 256q0 106-75 181t-181 75-181-75-75-181 75-181 181-75 181 75 75 181z" + } + }] +}; +exports.users = users; +var chain = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1456 1216q0-40-28-68l-208-208q-28-28-68-28-42 0-72 32 3 3 19 18.5t21.5 21.5 15 19 13 25.5 3.5 27.5q0 40-28 68t-68 28q-15 0-27.5-3.5t-25.5-13-19-15-21.5-21.5-18.5-19q-33 31-33 73 0 40 28 68l206 207q27 27 68 27 40 0 68-26l147-146q28-28 28-67zM753 511q0-40-28-68l-206-207q-28-28-68-28-39 0-68 27l-147 146q-28 28-28 67 0 40 28 68l208 208q27 27 68 27 42 0 72-31-3-3-19-18.5t-21.5-21.5-15-19-13-25.5-3.5-27.5q0-40 28-68t68-28q15 0 27.5 3.5t25.5 13 19 15 21.5 21.5 18.5 19q33-31 33-73zM1648 1216q0 120-85 203l-147 146q-83 83-203 83-121 0-204-85l-206-207q-83-83-83-203 0-123 88-209l-88-88q-86 88-208 88-120 0-204-84l-208-208q-84-84-84-204t85-203l147-146q83-83 203-83 121 0 204 85l206 207q83 83 83 203 0 123-88 209l88 88q86-88 208-88 120 0 204 84l208 208q84 84 84 204z" + } + }] +}; +exports.chain = chain; +var link = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1456 1216q0-40-28-68l-208-208q-28-28-68-28-42 0-72 32 3 3 19 18.5t21.5 21.5 15 19 13 25.5 3.5 27.5q0 40-28 68t-68 28q-15 0-27.5-3.5t-25.5-13-19-15-21.5-21.5-18.5-19q-33 31-33 73 0 40 28 68l206 207q27 27 68 27 40 0 68-26l147-146q28-28 28-67zM753 511q0-40-28-68l-206-207q-28-28-68-28-39 0-68 27l-147 146q-28 28-28 67 0 40 28 68l208 208q27 27 68 27 42 0 72-31-3-3-19-18.5t-21.5-21.5-15-19-13-25.5-3.5-27.5q0-40 28-68t68-28q15 0 27.5 3.5t25.5 13 19 15 21.5 21.5 18.5 19q33-31 33-73zM1648 1216q0 120-85 203l-147 146q-83 83-203 83-121 0-204-85l-206-207q-83-83-83-203 0-123 88-209l-88-88q-86 88-208 88-120 0-204-84l-208-208q-84-84-84-204t85-203l147-146q83-83 203-83 121 0 204 85l206 207q83 83 83 203 0 123-88 209l88 88q86-88 208-88 120 0 204 84l208 208q84 84 84 204z" + } + }] +}; +exports.link = link; +var cloud = { + "viewBox": "0 0 1920 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1920 1152q0 159-112.5 271.5t-271.5 112.5h-1088q-185 0-316.5-131.5t-131.5-316.5q0-132 71-241.5t187-163.5q-2-28-2-43 0-212 150-362t362-150q158 0 286.5 88t187.5 230q70-62 166-62 106 0 181 75t75 181q0 75-41 138 129 30 213 134.5t84 239.5z" + } + }] +}; +exports.cloud = cloud; +var flask = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1527 1448q56 89 21.5 152.5t-140.5 63.5h-1152q-106 0-140.5-63.5t21.5-152.5l503-793v-399h-64q-26 0-45-19t-19-45 19-45 45-19h512q26 0 45 19t19 45-19 45-45 19h-64v399zM748 723l-272 429h712l-272-429-20-31v-37-399h-128v399 37z" + } + }] +}; +exports.flask = flask; +var cut = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M960 896q26 0 45 19t19 45-19 45-45 19-45-19-19-45 19-45 45-19zM1260 960l507 398q28 20 25 56-5 35-35 51l-128 64q-13 7-29 7-17 0-31-8l-690-387-110 66q-8 4-12 5 14 49 10 97-7 77-56 147.5t-132 123.5q-132 84-277 84-136 0-222-78-90-84-79-207 7-76 56-147t131-124q132-84 278-84 83 0 151 31 9-13 22-22l122-73-122-73q-13-9-22-22-68 31-151 31-146 0-278-84-82-53-131-124t-56-147q-5-59 15.5-113t63.5-93q85-79 222-79 145 0 277 84 83 52 132 123t56 148q4 48-10 97 4 1 12 5l110 66 690-387q14-8 31-8 16 0 29 7l128 64q30 16 35 51 3 36-25 56zM579 700q46-42 21-108t-106-117q-92-59-192-59-74 0-113 36-46 42-21 108t106 117q92 59 192 59 74 0 113-36zM494 1445q81-51 106-117t-21-108q-39-36-113-36-100 0-192 59-81 51-106 117t21 108q39 36 113 36 100 0 192-59zM672 832l96 58v-11q0-36 33-56l14-8-79-47-26 26q-3 3-10 11t-12 12q-2 2-4 3.5t-3 2.5zM896 1056l96 32 736-576-128-64-768 431v113l-160 96 9 8q2 2 7 6 4 4 11 12t11 12l26 26zM1600 1472l128-64-520-408-177 138q-2 3-13 7z" + } + }] +}; +exports.cut = cut; +var scissors = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M960 896q26 0 45 19t19 45-19 45-45 19-45-19-19-45 19-45 45-19zM1260 960l507 398q28 20 25 56-5 35-35 51l-128 64q-13 7-29 7-17 0-31-8l-690-387-110 66q-8 4-12 5 14 49 10 97-7 77-56 147.5t-132 123.5q-132 84-277 84-136 0-222-78-90-84-79-207 7-76 56-147t131-124q132-84 278-84 83 0 151 31 9-13 22-22l122-73-122-73q-13-9-22-22-68 31-151 31-146 0-278-84-82-53-131-124t-56-147q-5-59 15.5-113t63.5-93q85-79 222-79 145 0 277 84 83 52 132 123t56 148q4 48-10 97 4 1 12 5l110 66 690-387q14-8 31-8 16 0 29 7l128 64q30 16 35 51 3 36-25 56zM579 700q46-42 21-108t-106-117q-92-59-192-59-74 0-113 36-46 42-21 108t106 117q92 59 192 59 74 0 113-36zM494 1445q81-51 106-117t-21-108q-39-36-113-36-100 0-192 59-81 51-106 117t21 108q39 36 113 36 100 0 192-59zM672 832l96 58v-11q0-36 33-56l14-8-79-47-26 26q-3 3-10 11t-12 12q-2 2-4 3.5t-3 2.5zM896 1056l96 32 736-576-128-64-768 431v113l-160 96 9 8q2 2 7 6 4 4 11 12t11 12l26 26zM1600 1472l128-64-520-408-177 138q-2 3-13 7z" + } + }] +}; +exports.scissors = scissors; +var copy = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1696 384q40 0 68 28t28 68v1216q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-288h-544q-40 0-68-28t-28-68v-672q0-40 20-88t48-76l408-408q28-28 76-48t88-20h416q40 0 68 28t28 68v328q68-40 128-40h416zM1152 597l-299 299h299v-299zM512 213l-299 299h299v-299zM708 860l316-316v-416h-384v416q0 40-28 68t-68 28h-416v640h512v-256q0-40 20-88t48-76zM1664 1664v-1152h-384v416q0 40-28 68t-68 28h-416v640h896z" + } + }] +}; +exports.copy = copy; +var filesO = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1696 384q40 0 68 28t28 68v1216q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-288h-544q-40 0-68-28t-28-68v-672q0-40 20-88t48-76l408-408q28-28 76-48t88-20h416q40 0 68 28t28 68v328q68-40 128-40h416zM1152 597l-299 299h299v-299zM512 213l-299 299h299v-299zM708 860l316-316v-416h-384v416q0 40-28 68t-68 28h-416v640h512v-256q0-40 20-88t48-76zM1664 1664v-1152h-384v416q0 40-28 68t-68 28h-416v640h896z" + } + }] +}; +exports.filesO = filesO; +var paperclip = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1404 1385q0 117-79 196t-196 79q-135 0-235-100l-777-776q-113-115-113-271 0-159 110-270t269-111q158 0 273 113l605 606q10 10 10 22 0 16-30.5 46.5t-46.5 30.5q-13 0-23-10l-606-607q-79-77-181-77-106 0-179 75t-73 181q0 105 76 181l776 777q63 63 145 63 64 0 106-42t42-106q0-82-63-145l-581-581q-26-24-60-24-29 0-48 19t-19 48q0 32 25 59l410 410q10 10 10 22 0 16-31 47t-47 31q-12 0-22-10l-410-410q-63-61-63-149 0-82 57-139t139-57q88 0 149 63l581 581q100 98 100 235z" + } + }] +}; +exports.paperclip = paperclip; +var floppyO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M384 1536h768v-384h-768v384zM1280 1536h128v-896q0-14-10-38.5t-20-34.5l-281-281q-10-10-34-20t-39-10v416q0 40-28 68t-68 28h-576q-40 0-68-28t-28-68v-416h-128v1280h128v-416q0-40 28-68t68-28h832q40 0 68 28t28 68v416zM896 608v-320q0-13-9.5-22.5t-22.5-9.5h-192q-13 0-22.5 9.5t-9.5 22.5v320q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5-9.5t9.5-22.5zM1536 640v928q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1344q0-40 28-68t68-28h928q40 0 88 20t76 48l280 280q28 28 48 76t20 88z" + } + }] +}; +exports.floppyO = floppyO; +var save = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M384 1536h768v-384h-768v384zM1280 1536h128v-896q0-14-10-38.5t-20-34.5l-281-281q-10-10-34-20t-39-10v416q0 40-28 68t-68 28h-576q-40 0-68-28t-28-68v-416h-128v1280h128v-416q0-40 28-68t68-28h832q40 0 68 28t28 68v416zM896 608v-320q0-13-9.5-22.5t-22.5-9.5h-192q-13 0-22.5 9.5t-9.5 22.5v320q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5-9.5t9.5-22.5zM1536 640v928q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1344q0-40 28-68t68-28h928q40 0 88 20t76 48l280 280q28 28 48 76t20 88z" + } + }] +}; +exports.save = save; +var square = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.square = square; +var bars = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1536 1344v128q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1408q26 0 45 19t19 45zM1536 832v128q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1408q26 0 45 19t19 45zM1536 320v128q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1408q26 0 45 19t19 45z" + } + }] +}; +exports.bars = bars; +var navicon = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1536 1344v128q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1408q26 0 45 19t19 45zM1536 832v128q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1408q26 0 45 19t19 45zM1536 320v128q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1408q26 0 45 19t19 45z" + } + }] +}; +exports.navicon = navicon; +var reorder = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1536 1344v128q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1408q26 0 45 19t19 45zM1536 832v128q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1408q26 0 45 19t19 45zM1536 320v128q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1408q26 0 45 19t19 45z" + } + }] +}; +exports.reorder = reorder; +var listUl = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M384 1408q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM384 896q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM1792 1312v192q0 13-9.5 22.5t-22.5 9.5h-1216q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1216q13 0 22.5 9.5t9.5 22.5zM384 384q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM1792 800v192q0 13-9.5 22.5t-22.5 9.5h-1216q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1216q13 0 22.5 9.5t9.5 22.5zM1792 288v192q0 13-9.5 22.5t-22.5 9.5h-1216q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1216q13 0 22.5 9.5t9.5 22.5z" + } + }] +}; +exports.listUl = listUl; +var listOl = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M381 1620q0 80-54.5 126t-135.5 46q-106 0-172-66l57-88q49 45 106 45 29 0 50.5-14.5t21.5-42.5q0-64-105-56l-26-56q8-10 32.5-43.5t42.5-54 37-38.5v-1q-16 0-48.5 1t-48.5 1v53h-106v-152h333v88l-95 115q51 12 81 49t30 88zM383 993v159h-362q-6-36-6-54 0-51 23.5-93t56.5-68 66-47.5 56.5-43.5 23.5-45q0-25-14.5-38.5t-39.5-13.5q-46 0-81 58l-85-59q24-51 71.5-79.5t105.5-28.5q73 0 123 41.5t50 112.5q0 50-34 91.5t-75 64.5-75.5 50.5-35.5 52.5h127v-60h105zM1792 1312v192q0 13-9.5 22.5t-22.5 9.5h-1216q-13 0-22.5-9.5t-9.5-22.5v-192q0-14 9-23t23-9h1216q13 0 22.5 9.5t9.5 22.5zM384 413v99h-335v-99h107q0-41 0.5-121.5t0.5-121.5v-12h-2q-8 17-50 54l-71-76 136-127h106v404h108zM1792 800v192q0 13-9.5 22.5t-22.5 9.5h-1216q-13 0-22.5-9.5t-9.5-22.5v-192q0-14 9-23t23-9h1216q13 0 22.5 9.5t9.5 22.5zM1792 288v192q0 13-9.5 22.5t-22.5 9.5h-1216q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1216q13 0 22.5 9.5t9.5 22.5z" + } + }] +}; +exports.listOl = listOl; +var strikethrough = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1760 896q14 0 23 9t9 23v64q0 14-9 23t-23 9h-1728q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h1728zM483 832q-28-35-51-80-48-98-48-188 0-181 134-309 133-127 393-127 50 0 167 19 66 12 177 48 10 38 21 118 14 123 14 183 0 18-5 45l-12 3-84-6-14-2q-50-149-103-205-88-91-210-91-114 0-182 59-67 58-67 146 0 73 66 140t279 129q69 20 173 66 58 28 95 52h-743zM990 1088h411q7 39 7 92 0 111-41 212-23 56-71 104-37 35-109 81-80 48-153 66-80 21-203 21-114 0-195-23l-140-40q-57-16-72-28-8-8-8-22v-13q0-108-2-156-1-30 0-68l2-37v-44l102-2q15 34 30 71t22.5 56 12.5 27q35 57 80 94 43 36 105 57 59 22 132 22 64 0 139-27 77-26 122-86 47-61 47-129 0-84-81-157-34-29-137-71z" + } + }] +}; +exports.strikethrough = strikethrough; +var underline = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M48 223q-37-2-45-4l-3-88q13-1 40-1 60 0 112 4 132 7 166 7 86 0 168-3 116-4 146-5 56 0 86-2l-1 14 2 64v9q-60 9-124 9-60 0-79 25-13 14-13 132 0 13 0.5 32.5t0.5 25.5l1 229 14 280q6 124 51 202 35 59 96 92 88 47 177 47 104 0 191-28 56-18 99-51 48-36 65-64 36-56 53-114 21-73 21-229 0-79-3.5-128t-11-122.5-13.5-159.5l-4-59q-5-67-24-88-34-35-77-34l-100 2-14-3 2-86h84l205 10q76 3 196-10l18 2q6 38 6 51 0 7-4 31-45 12-84 13-73 11-79 17-15 15-15 41 0 7 1.5 27t1.5 31q8 19 22 396 6 195-15 304-15 76-41 122-38 65-112 123-75 57-182 89-109 33-255 33-167 0-284-46-119-47-179-122-61-76-83-195-16-80-16-237v-333q0-188-17-213-25-36-147-39zM1536 1632v-64q0-14-9-23t-23-9h-1472q-14 0-23 9t-9 23v64q0 14 9 23t23 9h1472q14 0 23-9t9-23z" + } + }] +}; +exports.underline = underline; +var table = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M512 1376v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zM512 992v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zM1024 1376v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zM512 608v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zM1024 992v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zM1536 1376v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zM1024 608v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zM1536 992v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zM1536 608v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zM1664 288v1088q0 66-47 113t-113 47h-1344q-66 0-113-47t-47-113v-1088q0-66 47-113t113-47h1344q66 0 113 47t47 113z" + } + }] +}; +exports.table = table; +var magic = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1190 581l293-293-107-107-293 293zM1637 288q0 27-18 45l-1286 1286q-18 18-45 18t-45-18l-198-198q-18-18-18-45t18-45l1286-1286q18-18 45-18t45 18l198 198q18 18 18 45zM286 98l98 30-98 30-30 98-30-98-98-30 98-30 30-98zM636 260l196 60-196 60-60 196-60-196-196-60 196-60 60-196zM1566 738l98 30-98 30-30 98-30-98-98-30 98-30 30-98zM926 98l98 30-98 30-30 98-30-98-98-30 98-30 30-98z" + } + }] +}; +exports.magic = magic; +var truck = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 1408q0-52-38-90t-90-38-90 38-38 90 38 90 90 38 90-38 38-90zM256 896h384v-256h-158q-13 0-22 9l-195 195q-9 9-9 22v30zM1536 1408q0-52-38-90t-90-38-90 38-38 90 38 90 90 38 90-38 38-90zM1792 320v1024q0 15-4 26.5t-13.5 18.5-16.5 11.5-23.5 6-22.5 2-25.5 0-22.5-0.5q0 106-75 181t-181 75-181-75-75-181h-384q0 106-75 181t-181 75-181-75-75-181h-64q-3 0-22.5 0.5t-25.5 0-22.5-2-23.5-6-16.5-11.5-13.5-18.5-4-26.5q0-26 19-45t45-19v-320q0-8-0.5-35t0-38 2.5-34.5 6.5-37 14-30.5 22.5-30l198-198q19-19 50.5-32t58.5-13h160v-192q0-26 19-45t45-19h1024q26 0 45 19t19 45z" + } + }] +}; +exports.truck = truck; +var pinterest = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1536 896q0 209-103 385.5t-279.5 279.5-385.5 103q-111 0-218-32 59-93 78-164 9-34 54-211 20 39 73 67.5t114 28.5q121 0 216-68.5t147-188.5 52-270q0-114-59.5-214t-172.5-163-255-63q-105 0-196 29t-154.5 77-109 110.5-67 129.5-21.5 134q0 104 40 183t117 111q30 12 38-20 2-7 8-31t8-30q6-23-11-43-51-61-51-151 0-151 104.5-259.5t273.5-108.5q151 0 235.5 82t84.5 213q0 170-68.5 289t-175.5 119q-61 0-98-43.5t-23-104.5q8-35 26.5-93.5t30-103 11.5-75.5q0-50-27-83t-77-33q-62 0-105 57t-43 142q0 73 25 122l-99 418q-17 70-13 177-206-91-333-281t-127-423q0-209 103-385.5t279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.pinterest = pinterest; +var pinterestSquare = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1248 128q119 0 203.5 84.5t84.5 203.5v960q0 119-84.5 203.5t-203.5 84.5h-725q85-122 108-210 9-34 53-209 21 39 73.5 67t112.5 28q181 0 295.5-147.5t114.5-373.5q0-84-35-162.5t-96.5-139-152.5-97-197-36.5q-104 0-194.5 28.5t-153 76.5-107.5 109.5-66.5 128-21.5 132.5q0 102 39.5 180t116.5 110q13 5 23.5 0t14.5-19q10-44 15-61 6-23-11-42-50-62-50-150 0-150 103.5-256.5t270.5-106.5q149 0 232.5 81t83.5 210q0 168-67.5 286t-173.5 118q-60 0-97-43.5t-23-103.5q8-34 26.5-92.5t29.5-102 11-74.5q0-49-26.5-81.5t-75.5-32.5q-61 0-103.5 56.5t-42.5 139.5q0 72 24 121l-98 414q-24 100-7 254h-183q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960z" + } + }] +}; +exports.pinterestSquare = pinterestSquare; +var googlePlusSquare = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M917 905q0-26-6-64h-362v132h217q-3 24-16.5 50t-37.5 53-66.5 44.5-96.5 17.5q-99 0-169-71t-70-171 70-171 169-71q92 0 153 59l104-101q-108-100-257-100-160 0-272 112.5t-112 271.5 112 271.5 272 112.5q165 0 266.5-105t101.5-270zM1262 951h109v-110h-109v-110h-110v110h-110v110h110v110h110v-110zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.googlePlusSquare = googlePlusSquare; +var googlePlus = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1437 913q0 208-87 370.5t-248 254-369 91.5q-149 0-285-58t-234-156-156-234-58-285 58-285 156-234 234-156 285-58q286 0 491 192l-199 191q-117-113-292-113-123 0-227.5 62t-165.5 168.5-61 232.5 61 232.5 165.5 168.5 227.5 62q83 0 152.5-23t114.5-57.5 78.5-78.5 49-83 21.5-74h-416v-252h692q12 63 12 122zM2304 791v210h-209v209h-210v-209h-209v-210h209v-209h210v209h209z" + } + }] +}; +exports.googlePlus = googlePlus; +var money = { + "viewBox": "0 0 1920 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M768 1152h384v-96h-128v-448h-114l-148 137 77 80q42-37 55-57h2v288h-128v96zM1280 896q0 70-21 142t-59.5 134-101.5 101-138 39-138-39-101.5-101-59.5-134-21-142 21-142 59.5-134 101.5-101 138-39 138 39 101.5 101 59.5 134 21 142zM1792 1152v-512q-106 0-181-75t-75-181h-1152q0 106-75 181t-181 75v512q106 0 181 75t75 181h1152q0-106 75-181t181-75zM1920 320v1152q0 26-19 45t-45 19h-1792q-26 0-45-19t-19-45v-1152q0-26 19-45t45-19h1792q26 0 45 19t19 45z" + } + }] +}; +exports.money = money; +var caretDown = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 704q0 26-19 45l-448 448q-19 19-45 19t-45-19l-448-448q-19-19-19-45t19-45 45-19h896q26 0 45 19t19 45z" + } + }] +}; +exports.caretDown = caretDown; +var caretUp = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 1216q0 26-19 45t-45 19h-896q-26 0-45-19t-19-45 19-45l448-448q19-19 45-19t45 19l448 448q19 19 19 45z" + } + }] +}; +exports.caretUp = caretUp; +var caretLeft = { + "viewBox": "0 0 640 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 448v896q0 26-19 45t-45 19-45-19l-448-448q-19-19-19-45t19-45l448-448q19-19 45-19t45 19 19 45z" + } + }] +}; +exports.caretLeft = caretLeft; +var caretRight = { + "viewBox": "0 0 640 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M576 896q0 26-19 45l-448 448q-19 19-45 19t-45-19-19-45v-896q0-26 19-45t45-19 45 19l448 448q19 19 19 45z" + } + }] +}; +exports.caretRight = caretRight; +var columns = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M160 1536h608v-1152h-640v1120q0 13 9.5 22.5t22.5 9.5zM1536 1504v-1120h-640v1152h608q13 0 22.5-9.5t9.5-22.5zM1664 288v1216q0 66-47 113t-113 47h-1344q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1344q66 0 113 47t47 113z" + } + }] +}; +exports.columns = columns; +var sort = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 1088q0 26-19 45l-448 448q-19 19-45 19t-45-19l-448-448q-19-19-19-45t19-45 45-19h896q26 0 45 19t19 45zM1024 704q0 26-19 45t-45 19h-896q-26 0-45-19t-19-45 19-45l448-448q19-19 45-19t45 19l448 448q19 19 19 45z" + } + }] +}; +exports.sort = sort; +var unsorted = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 1088q0 26-19 45l-448 448q-19 19-45 19t-45-19l-448-448q-19-19-19-45t19-45 45-19h896q26 0 45 19t19 45zM1024 704q0 26-19 45t-45 19h-896q-26 0-45-19t-19-45 19-45l448-448q19-19 45-19t45 19l448 448q19 19 19 45z" + } + }] +}; +exports.unsorted = unsorted; +var sortDesc = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 1088q0 26-19 45l-448 448q-19 19-45 19t-45-19l-448-448q-19-19-19-45t19-45 45-19h896q26 0 45 19t19 45z" + } + }] +}; +exports.sortDesc = sortDesc; +var sortDown = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 1088q0 26-19 45l-448 448q-19 19-45 19t-45-19l-448-448q-19-19-19-45t19-45 45-19h896q26 0 45 19t19 45z" + } + }] +}; +exports.sortDown = sortDown; +var sortAsc = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 704q0 26-19 45t-45 19h-896q-26 0-45-19t-19-45 19-45l448-448q19-19 45-19t45 19l448 448q19 19 19 45z" + } + }] +}; +exports.sortAsc = sortAsc; +var sortUp = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 704q0 26-19 45t-45 19h-896q-26 0-45-19t-19-45 19-45l448-448q19-19 45-19t45 19l448 448q19 19 19 45z" + } + }] +}; +exports.sortUp = sortUp; +var envelope = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1792 710v794q0 66-47 113t-113 47h-1472q-66 0-113-47t-47-113v-794q44 49 101 87 362 246 497 345 57 42 92.5 65.5t94.5 48 110 24.5h1 1q51 0 110-24.5t94.5-48 92.5-65.5q170-123 498-345 57-39 100-87zM1792 416q0 79-49 151t-122 123q-376 261-468 325-10 7-42.5 30.5t-54 38-52 32.5-57.5 27-50 9h-1-1q-23 0-50-9t-57.5-27-52-32.5-54-38-42.5-30.5q-91-64-262-182.5t-205-142.5q-62-42-117-115.5t-55-136.5q0-78 41.5-130t118.5-52h1472q65 0 112.5 47t47.5 113z" + } + }] +}; +exports.envelope = envelope; +var linkedin = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M349 625v991h-330v-991h330zM370 319q1 73-50.5 122t-135.5 49h-2q-82 0-132-49t-50-122q0-74 51.5-122.5t134.5-48.5 133 48.5 51 122.5zM1536 1048v568h-329v-530q0-105-40.5-164.5t-126.5-59.5q-63 0-105.5 34.5t-63.5 85.5q-11 30-11 81v553h-329q2-399 2-647t-1-296l-1-48h329v144h-2q20-32 41-56t56.5-52 87-43.5 114.5-15.5q171 0 275 113.5t104 332.5z" + } + }] +}; +exports.linkedin = linkedin; +var rotateLeft = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1536 896q0 156-61 298t-164 245-245 164-298 61q-172 0-327-72.5t-264-204.5q-7-10-6.5-22.5t8.5-20.5l137-138q10-9 25-9 16 2 23 12 73 95 179 147t225 52q104 0 198.5-40.5t163.5-109.5 109.5-163.5 40.5-198.5-40.5-198.5-109.5-163.5-163.5-109.5-198.5-40.5q-98 0-188 35.5t-160 101.5l137 138q31 30 14 69-17 40-59 40h-448q-26 0-45-19t-19-45v-448q0-42 40-59 39-17 69 14l130 129q107-101 244.5-156.5t284.5-55.5q156 0 298 61t245 164 164 245 61 298z" + } + }] +}; +exports.rotateLeft = rotateLeft; +var undo = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1536 896q0 156-61 298t-164 245-245 164-298 61q-172 0-327-72.5t-264-204.5q-7-10-6.5-22.5t8.5-20.5l137-138q10-9 25-9 16 2 23 12 73 95 179 147t225 52q104 0 198.5-40.5t163.5-109.5 109.5-163.5 40.5-198.5-40.5-198.5-109.5-163.5-163.5-109.5-198.5-40.5q-98 0-188 35.5t-160 101.5l137 138q31 30 14 69-17 40-59 40h-448q-26 0-45-19t-19-45v-448q0-42 40-59 39-17 69 14l130 129q107-101 244.5-156.5t284.5-55.5q156 0 298 61t245 164 164 245 61 298z" + } + }] +}; +exports.undo = undo; +var gavel = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1771 1536q0 53-37 90l-107 108q-39 37-91 37-53 0-90-37l-363-364q-38-36-38-90 0-53 43-96l-256-256-126 126q-14 14-34 14t-34-14q2 2 12.5 12t12.5 13 10 11.5 10 13.5 6 13.5 5.5 16.5 1.5 18q0 38-28 68-3 3-16.5 18t-19 20.5-18.5 16.5-22 15.5-22 9-26 4.5q-40 0-68-28l-408-408q-28-28-28-68 0-13 4.5-26t9-22 15.5-22 16.5-18.5 20.5-19 18-16.5q30-28 68-28 10 0 18 1.5t16.5 5.5 13.5 6 13.5 10 11.5 10 13 12.5 12 12.5q-14-14-14-34t14-34l348-348q14-14 34-14t34 14q-2-2-12.5-12t-12.5-13-10-11.5-10-13.5-6-13.5-5.5-16.5-1.5-18q0-38 28-68 3-3 16.5-18t19-20.5 18.5-16.5 22-15.5 22-9 26-4.5q40 0 68 28l408 408q28 28 28 68 0 13-4.5 26t-9 22-15.5 22-16.5 18.5-20.5 19-18 16.5q-30 28-68 28-10 0-18-1.5t-16.5-5.5-13.5-6-13.5-10-11.5-10-13-12.5-12-12.5q14 14 14 34t-14 34l-126 126 256 256q43-43 96-43 52 0 91 37l363 363q37 39 37 91z" + } + }] +}; +exports.gavel = gavel; +var legal = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1771 1536q0 53-37 90l-107 108q-39 37-91 37-53 0-90-37l-363-364q-38-36-38-90 0-53 43-96l-256-256-126 126q-14 14-34 14t-34-14q2 2 12.5 12t12.5 13 10 11.5 10 13.5 6 13.5 5.5 16.5 1.5 18q0 38-28 68-3 3-16.5 18t-19 20.5-18.5 16.5-22 15.5-22 9-26 4.5q-40 0-68-28l-408-408q-28-28-28-68 0-13 4.5-26t9-22 15.5-22 16.5-18.5 20.5-19 18-16.5q30-28 68-28 10 0 18 1.5t16.5 5.5 13.5 6 13.5 10 11.5 10 13 12.5 12 12.5q-14-14-14-34t14-34l348-348q14-14 34-14t34 14q-2-2-12.5-12t-12.5-13-10-11.5-10-13.5-6-13.5-5.5-16.5-1.5-18q0-38 28-68 3-3 16.5-18t19-20.5 18.5-16.5 22-15.5 22-9 26-4.5q40 0 68 28l408 408q28 28 28 68 0 13-4.5 26t-9 22-15.5 22-16.5 18.5-20.5 19-18 16.5q-30 28-68 28-10 0-18-1.5t-16.5-5.5-13.5-6-13.5-10-11.5-10-13-12.5-12-12.5q14 14 14 34t-14 34l-126 126 256 256q43-43 96-43 52 0 91 37l363 363q37 39 37 91z" + } + }] +}; +exports.legal = legal; +var dashboard = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M384 1152q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM576 704q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1004 1185l101-382q6-26-7.5-48.5t-38.5-29.5-48 6.5-30 39.5l-101 382q-60 5-107 43.5t-63 98.5q-20 77 20 146t117 89 146-20 89-117q16-60-6-117t-72-91zM1664 1152q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1024 512q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1472 704q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1792 1152q0 261-141 483-19 29-54 29h-1402q-35 0-54-29-141-221-141-483 0-182 71-348t191-286 286-191 348-71 348 71 286 191 191 286 71 348z" + } + }] +}; +exports.dashboard = dashboard; +var tachometer = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M384 1152q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM576 704q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1004 1185l101-382q6-26-7.5-48.5t-38.5-29.5-48 6.5-30 39.5l-101 382q-60 5-107 43.5t-63 98.5q-20 77 20 146t117 89 146-20 89-117q16-60-6-117t-72-91zM1664 1152q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1024 512q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1472 704q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1792 1152q0 261-141 483-19 29-54 29h-1402q-35 0-54-29-141-221-141-483 0-182 71-348t191-286 286-191 348-71 348 71 286 191 191 286 71 348z" + } + }] +}; +exports.tachometer = tachometer; +var commentO = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M896 384q-204 0-381.5 69.5t-282 187.5-104.5 255q0 112 71.5 213.5t201.5 175.5l87 50-27 96q-24 91-70 172 152-63 275-171l43-38 57 6q69 8 130 8 204 0 381.5-69.5t282-187.5 104.5-255-104.5-255-282-187.5-381.5-69.5zM1792 896q0 174-120 321.5t-326 233-450 85.5q-70 0-145-8-198 175-460 242-49 14-114 22h-5q-15 0-27-10.5t-16-27.5v-1q-3-4-0.5-12t2-10 4.5-9.5l6-9t7-8.5 8-9q7-8 31-34.5t34.5-38 31-39.5 32.5-51 27-59 26-76q-157-89-247.5-220t-90.5-281q0-174 120-321.5t326-233 450-85.5 450 85.5 326 233 120 321.5z" + } + }] +}; +exports.commentO = commentO; +var commentsO = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M704 384q-153 0-286 52t-211.5 141-78.5 191q0 82 53 158t149 132l97 56-35 84q34-20 62-39l44-31 53 10q78 14 153 14 153 0 286-52t211.5-141 78.5-191-78.5-191-211.5-141-286-52zM704 256q191 0 353.5 68.5t256.5 186.5 94 257-94 257-256.5 186.5-353.5 68.5q-86 0-176-16-124 88-278 128-36 9-86 16h-3q-11 0-20.5-8t-11.5-21q-1-3-1-6.5t0.5-6.5 2-6l2.5-5t3.5-5.5 4-5 4.5-5 4-4.5q5-6 23-25t26-29.5 22.5-29 25-38.5 20.5-44q-124-72-195-177t-71-224q0-139 94-257t256.5-186.5 353.5-68.5zM1526 1425q10 24 20.5 44t25 38.5 22.5 29 26 29.5 23 25q1 1 4 4.5t4.5 5 4 5 3.5 5.5l2.5 5t2 6 0.5 6.5-1 6.5q-3 14-13 22t-22 7q-50-7-86-16-154-40-278-128-90 16-176 16-271 0-472-132 58 4 88 4 161 0 309-45t264-129q125-92 192-212t67-254q0-77-23-152 129 71 204 178t75 230q0 120-71 224.5t-195 176.5z" + } + }] +}; +exports.commentsO = commentsO; +var bolt = { + "viewBox": "0 0 896 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M885 566q18 20 7 44l-540 1157q-13 25-42 25-4 0-14-2-17-5-25.5-19t-4.5-30l197-808-406 101q-4 1-12 1-18 0-31-11-18-15-13-39l201-825q4-14 16-23t28-9h328q19 0 32 12.5t13 29.5q0 8-5 18l-171 463 396-98q8-2 12-2 19 0 34 15z" + } + }] +}; +exports.bolt = bolt; +var flash = { + "viewBox": "0 0 896 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M885 566q18 20 7 44l-540 1157q-13 25-42 25-4 0-14-2-17-5-25.5-19t-4.5-30l197-808-406 101q-4 1-12 1-18 0-31-11-18-15-13-39l201-825q4-14 16-23t28-9h328q19 0 32 12.5t13 29.5q0 8-5 18l-171 463 396-98q8-2 12-2 19 0 34 15z" + } + }] +}; +exports.flash = flash; +var sitemap = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1792 1248v320q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-320q0-40 28-68t68-28h96v-192h-512v192h96q40 0 68 28t28 68v320q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-320q0-40 28-68t68-28h96v-192h-512v192h96q40 0 68 28t28 68v320q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-320q0-40 28-68t68-28h96v-192q0-52 38-90t90-38h512v-192h-96q-40 0-68-28t-28-68v-320q0-40 28-68t68-28h320q40 0 68 28t28 68v320q0 40-28 68t-68 28h-96v192h512q52 0 90 38t38 90v192h96q40 0 68 28t28 68z" + } + }] +}; +exports.sitemap = sitemap; +var umbrella = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M896 828v580q0 104-76 180t-180 76-180-76-76-180q0-26 19-45t45-19 45 19 19 45q0 50 39 89t89 39 89-39 39-89v-580q33-11 64-11t64 11zM1664 855q0 13-9.5 22.5t-22.5 9.5q-11 0-23-10-49-46-93-69t-102-23q-68 0-128 37t-103 97q-7 10-17.5 28t-14.5 24q-11 17-28 17-18 0-29-17-4-6-14.5-24t-17.5-28q-43-60-102.5-97t-127.5-37-127.5 37-102.5 97q-7 10-17.5 28t-14.5 24q-11 17-29 17-17 0-28-17-4-6-14.5-24t-17.5-28q-43-60-103-97t-128-37q-58 0-102 23t-93 69q-12 10-23 10-13 0-22.5-9.5t-9.5-22.5q0-5 1-7 45-183 172.5-319.5t298-204.5 360.5-68q140 0 274.5 40t246.5 113.5 194.5 187 115.5 251.5q1 2 1 7zM896 128v98q-42-2-64-2t-64 2v-98q0-26 19-45t45-19 45 19 19 45z" + } + }] +}; +exports.umbrella = umbrella; +var clipboard = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M768 1664h896v-640h-416q-40 0-68-28t-28-68v-416h-384v1152zM1024 224v-64q0-13-9.5-22.5t-22.5-9.5h-704q-13 0-22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h704q13 0 22.5-9.5t9.5-22.5zM1280 896h299l-299-299v299zM1792 1024v672q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-160h-544q-40 0-68-28t-28-68v-1344q0-40 28-68t68-28h1088q40 0 68 28t28 68v328q21 13 36 28l408 408q28 28 48 76t20 88z" + } + }] +}; +exports.clipboard = clipboard; +var paste = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M768 1664h896v-640h-416q-40 0-68-28t-28-68v-416h-384v1152zM1024 224v-64q0-13-9.5-22.5t-22.5-9.5h-704q-13 0-22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h704q13 0 22.5-9.5t9.5-22.5zM1280 896h299l-299-299v299zM1792 1024v672q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-160h-544q-40 0-68-28t-28-68v-1344q0-40 28-68t68-28h1088q40 0 68 28t28 68v328q21 13 36 28l408 408q28 28 48 76t20 88z" + } + }] +}; +exports.paste = paste; +var lightbulbO = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M736 576q0 13-9.5 22.5t-22.5 9.5-22.5-9.5-9.5-22.5q0-46-54-71t-106-25q-13 0-22.5-9.5t-9.5-22.5 9.5-22.5 22.5-9.5q50 0 99.5 16t87 54 37.5 90zM896 576q0-72-34.5-134t-90-101.5-123-62-136.5-22.5-136.5 22.5-123 62-90 101.5-34.5 134q0 101 68 180 10 11 30.5 33t30.5 33q128 153 141 298h228q13-145 141-298 10-11 30.5-33t30.5-33q68-79 68-180zM1024 576q0 155-103 268-45 49-74.5 87t-59.5 95.5-34 107.5q47 28 47 82 0 37-25 64 25 27 25 64 0 52-45 81 13 23 13 47 0 46-31.5 71t-77.5 25q-20 44-60 70t-87 26-87-26-60-70q-46 0-77.5-25t-31.5-71q0-24 13-47-45-29-45-81 0-37 25-64-25-27-25-64 0-54 47-82-4-50-34-107.5t-59.5-95.5-74.5-87q-103-113-103-268 0-99 44.5-184.5t117-142 164-89 186.5-32.5 186.5 32.5 164 89 117 142 44.5 184.5z" + } + }] +}; +exports.lightbulbO = lightbulbO; +var exchange = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1792 1184v192q0 13-9.5 22.5t-22.5 9.5h-1376v192q0 13-9.5 22.5t-22.5 9.5q-12 0-24-10l-319-320q-9-9-9-22 0-14 9-23l320-320q9-9 23-9 13 0 22.5 9.5t9.5 22.5v192h1376q13 0 22.5 9.5t9.5 22.5zM1792 640q0 14-9 23l-320 320q-9 9-23 9-13 0-22.5-9.5t-9.5-22.5v-192h-1376q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1376v-192q0-14 9-23t23-9q12 0 24 10l319 319q9 9 9 23z" + } + }] +}; +exports.exchange = exchange; +var cloudDownload = { + "viewBox": "0 0 1920 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1280 928q0-14-9-23t-23-9h-224v-352q0-13-9.5-22.5t-22.5-9.5h-192q-13 0-22.5 9.5t-9.5 22.5v352h-224q-13 0-22.5 9.5t-9.5 22.5q0 14 9 23l352 352q9 9 23 9t23-9l351-351q10-12 10-24zM1920 1152q0 159-112.5 271.5t-271.5 112.5h-1088q-185 0-316.5-131.5t-131.5-316.5q0-130 70-240t188-165q-2-30-2-43 0-212 150-362t362-150q156 0 285.5 87t188.5 231q71-62 166-62 106 0 181 75t75 181q0 76-41 138 130 31 213.5 135.5t83.5 238.5z" + } + }] +}; +exports.cloudDownload = cloudDownload; +var cloudUpload = { + "viewBox": "0 0 1920 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1280 864q0-14-9-23l-352-352q-9-9-23-9t-23 9l-351 351q-10 12-10 24 0 14 9 23t23 9h224v352q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5-9.5t9.5-22.5v-352h224q13 0 22.5-9.5t9.5-22.5zM1920 1152q0 159-112.5 271.5t-271.5 112.5h-1088q-185 0-316.5-131.5t-131.5-316.5q0-130 70-240t188-165q-2-30-2-43 0-212 150-362t362-150q156 0 285.5 87t188.5 231q71-62 166-62 106 0 181 75t75 181q0 76-41 138 130 31 213.5 135.5t83.5 238.5z" + } + }] +}; +exports.cloudUpload = cloudUpload; +var userMd = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M384 1344q0 26-19 45t-45 19-45-19-19-45 19-45 45-19 45 19 19 45zM1408 1405q0 121-73 190t-194 69h-874q-121 0-194-69t-73-190q0-68 5.5-131t24-138 47.5-132.5 81-103 120-60.5q-22 52-22 120v203q-58 20-93 70t-35 111q0 80 56 136t136 56 136-56 56-136q0-61-35.5-111t-92.5-70v-203q0-62 25-93 132 104 295 104t295-104q25 31 25 93v64q-106 0-181 75t-75 181v89q-32 29-32 71 0 40 28 68t68 28 68-28 28-68q0-42-32-71v-89q0-52 38-90t90-38 90 38 38 90v89q-32 29-32 71 0 40 28 68t68 28 68-28 28-68q0-42-32-71v-89q0-68-34.5-127.5t-93.5-93.5q0-10 0.5-42.5t0-48-2.5-41.5-7-47-13-40q68 15 120 60.5t81 103 47.5 132.5 24 138 5.5 131zM1088 512q0 159-112.5 271.5t-271.5 112.5-271.5-112.5-112.5-271.5 112.5-271.5 271.5-112.5 271.5 112.5 112.5 271.5z" + } + }] +}; +exports.userMd = userMd; +var stethoscope = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1280 704q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zM1408 704q0 62-35.5 111t-92.5 70v395q0 159-131.5 271.5t-316.5 112.5-316.5-112.5-131.5-271.5v-132q-164-20-274-128t-110-252v-512q0-26 19-45t45-19q6 0 16 2 17-30 47-48t65-18q53 0 90.5 37.5t37.5 90.5-37.5 90.5-90.5 37.5q-33 0-64-18v402q0 106 94 181t226 75 226-75 94-181v-402q-31 18-64 18-53 0-90.5-37.5t-37.5-90.5 37.5-90.5 90.5-37.5q35 0 65 18t47 48q10-2 16-2 26 0 45 19t19 45v512q0 144-110 252t-274 128v132q0 106 94 181t226 75 226-75 94-181v-395q-57-21-92.5-70t-35.5-111q0-80 56-136t136-56 136 56 56 136z" + } + }] +}; +exports.stethoscope = stethoscope; +var suitcase = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 384h512v-128h-512v128zM288 384v1280h-64q-92 0-158-66t-66-158v-832q0-92 66-158t158-66h64zM1408 384v1280h-1024v-1280h128v-160q0-40 28-68t68-28h576q40 0 68 28t28 68v160h128zM1792 608v832q0 92-66 158t-158 66h-64v-1280h64q92 0 158 66t66 158z" + } + }] +}; +exports.suitcase = suitcase; +var bell = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M912 1696q0-16-16-16-59 0-101.5-42.5t-42.5-101.5q0-16-16-16t-16 16q0 73 51.5 124.5t124.5 51.5q16 0 16-16zM1728 1408q0 52-38 90t-90 38h-448q0 106-75 181t-181 75-181-75-75-181h-448q-52 0-90-38t-38-90q50-42 91-88t85-119.5 74.5-158.5 50-206 19.5-260q0-152 117-282.5t307-158.5q-8-19-8-39 0-40 28-68t68-28 68 28 28 68q0 20-8 39 190 28 307 158.5t117 282.5q0 139 19.5 260t50 206 74.5 158.5 85 119.5 91 88z" + } + }] +}; +exports.bell = bell; +var coffee = { + "viewBox": "0 0 1920 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1664 640q0-80-56-136t-136-56h-64v384h64q80 0 136-56t56-136zM0 1408h1792q0 106-75 181t-181 75h-1280q-106 0-181-75t-75-181zM1856 640q0 159-112.5 271.5t-271.5 112.5h-64v32q0 92-66 158t-158 66h-704q-92 0-158-66t-66-158v-736q0-26 19-45t45-19h1152q159 0 271.5 112.5t112.5 271.5z" + } + }] +}; +exports.coffee = coffee; +var cutlery = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 64v640q0 61-35.5 111t-92.5 70v779q0 52-38 90t-90 38h-128q-52 0-90-38t-38-90v-779q-57-20-92.5-70t-35.5-111v-640q0-26 19-45t45-19 45 19 19 45v416q0 26 19 45t45 19 45-19 19-45v-416q0-26 19-45t45-19 45 19 19 45v416q0 26 19 45t45 19 45-19 19-45v-416q0-26 19-45t45-19 45 19 19 45zM1408 64v1600q0 52-38 90t-90 38h-128q-52 0-90-38t-38-90v-512h-224q-13 0-22.5-9.5t-9.5-22.5v-800q0-132 94-226t226-94h256q26 0 45 19t19 45z" + } + }] +}; +exports.cutlery = cutlery; +var fileTextO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1468 380q28 28 48 76t20 88v1152q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h896q40 0 88 20t76 48zM1024 136v376h376q-10-29-22-41l-313-313q-12-12-41-22zM1408 1664v-1024h-416q-40 0-68-28t-28-68v-416h-768v1536h1280zM384 800q0-14 9-23t23-9h704q14 0 23 9t9 23v64q0 14-9 23t-23 9h-704q-14 0-23-9t-9-23v-64zM1120 1024q14 0 23 9t9 23v64q0 14-9 23t-23 9h-704q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h704zM1120 1280q14 0 23 9t9 23v64q0 14-9 23t-23 9h-704q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h704z" + } + }] +}; +exports.fileTextO = fileTextO; +var buildingO = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M384 1312v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM384 1056v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM640 1056v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM384 800v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM1152 1312v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM896 1056v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM640 800v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM384 544v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM1152 1056v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM896 800v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM640 544v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM384 288v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM1152 800v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM896 544v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM640 288v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM1152 544v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM896 288v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM1152 288v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM896 1664h384v-1536h-1152v1536h384v-224q0-13 9.5-22.5t22.5-9.5h320q13 0 22.5 9.5t9.5 22.5v224zM1408 64v1664q0 26-19 45t-45 19h-1280q-26 0-45-19t-19-45v-1664q0-26 19-45t45-19h1280q26 0 45 19t19 45z" + } + }] +}; +exports.buildingO = buildingO; +var hospitalO = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M384 1312v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM384 1056v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM640 1056v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM384 800v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM1152 1312v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM896 1056v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM640 800v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM1152 1056v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM896 800v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM1152 800v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM896 1664h384v-1152h-256v32q0 40-28 68t-68 28h-448q-40 0-68-28t-28-68v-32h-256v1152h384v-224q0-13 9.5-22.5t22.5-9.5h320q13 0 22.5 9.5t9.5 22.5v224zM896 480v-320q0-13-9.5-22.5t-22.5-9.5h-64q-13 0-22.5 9.5t-9.5 22.5v96h-128v-96q0-13-9.5-22.5t-22.5-9.5h-64q-13 0-22.5 9.5t-9.5 22.5v320q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5-9.5t9.5-22.5v-96h128v96q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5-9.5t9.5-22.5zM1408 448v1280q0 26-19 45t-45 19h-1280q-26 0-45-19t-19-45v-1280q0-26 19-45t45-19h320v-288q0-40 28-68t68-28h448q40 0 68 28t28 68v288h320q26 0 45 19t19 45z" + } + }] +}; +exports.hospitalO = hospitalO; +var ambulance = { + "viewBox": "0 0 1920 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 1408q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM256 896h384v-256h-158q-14 2-22 9l-195 195q-7 12-9 22v30zM1536 1408q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1664 736v-192q0-14-9-23t-23-9h-224v-224q0-14-9-23t-23-9h-192q-14 0-23 9t-9 23v224h-224q-14 0-23 9t-9 23v192q0 14 9 23t23 9h224v224q0 14 9 23t23 9h192q14 0 23-9t9-23v-224h224q14 0 23-9t9-23zM1920 192v1152q0 26-19 45t-45 19h-192q0 106-75 181t-181 75-181-75-75-181h-384q0 106-75 181t-181 75-181-75-75-181h-128q-26 0-45-19t-19-45 19-45 45-19v-416q0-26 13-58t32-51l198-198q19-19 51-32t58-13h160v-320q0-26 19-45t45-19h1152q26 0 45 19t19 45z" + } + }] +}; +exports.ambulance = ambulance; +var medkit = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1280 1120v-192q0-14-9-23t-23-9h-224v-224q0-14-9-23t-23-9h-192q-14 0-23 9t-9 23v224h-224q-14 0-23 9t-9 23v192q0 14 9 23t23 9h224v224q0 14 9 23t23 9h192q14 0 23-9t9-23v-224h224q14 0 23-9t9-23zM640 384h512v-128h-512v128zM256 384v1280h-32q-92 0-158-66t-66-158v-832q0-92 66-158t158-66h32zM1440 384v1280h-1088v-1280h160v-160q0-40 28-68t68-28h576q40 0 68 28t28 68v160h160zM1792 608v832q0 92-66 158t-158 66h-32v-1280h32q92 0 158 66t66 158z" + } + }] +}; +exports.medkit = medkit; +var fighterJet = { + "viewBox": "0 0 1920 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1920 960q-1 32-288 96l-352 32-224 64h-64l-293 352h69q26 0 45 4.5t19 11.5-19 11.5-45 4.5h-96-160-64v-32h64v-416h-160l-192 224h-96l-32-32v-192h32v-32h128v-8l-192-24v-128l192-24v-8h-128v-32h-32v-192l32-32h96l192 224h160v-416h-64v-32h64 160 96q26 0 45 4.5t19 11.5-19 11.5-45 4.5h-69l293 352h64l224 64 352 32q128 28 200 52t80 34z" + } + }] +}; +exports.fighterJet = fighterJet; +var beer = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 896v-384h-256v256q0 53 37.5 90.5t90.5 37.5h128zM1664 1344v192h-1152v-192l128-192h-128q-159 0-271.5-112.5t-112.5-271.5v-320l-64-64 32-128h480l32-128h960l32 192-64 32v800z" + } + }] +}; +exports.beer = beer; +var hSquare = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1280 1344v-896q0-26-19-45t-45-19h-128q-26 0-45 19t-19 45v320h-512v-320q0-26-19-45t-45-19h-128q-26 0-45 19t-19 45v896q0 26 19 45t45 19h128q26 0 45-19t19-45v-320h512v320q0 26 19 45t45 19h128q26 0 45-19t19-45zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.hSquare = hSquare; +var plusSquare = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1280 960v-128q0-26-19-45t-45-19h-320v-320q0-26-19-45t-45-19h-128q-26 0-45 19t-19 45v320h-320q-26 0-45 19t-19 45v128q0 26 19 45t45 19h320v320q0 26 19 45t45 19h128q26 0 45-19t19-45v-320h320q26 0 45-19t19-45zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.plusSquare = plusSquare; +var angleDoubleLeft = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M627 1376q0 13-10 23l-50 50q-10 10-23 10t-23-10l-466-466q-10-10-10-23t10-23l466-466q10-10 23-10t23 10l50 50q10 10 10 23t-10 23l-393 393 393 393q10 10 10 23zM1011 1376q0 13-10 23l-50 50q-10 10-23 10t-23-10l-466-466q-10-10-10-23t10-23l466-466q10-10 23-10t23 10l50 50q10 10 10 23t-10 23l-393 393 393 393q10 10 10 23z" + } + }] +}; +exports.angleDoubleLeft = angleDoubleLeft; +var angleDoubleRight = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M595 960q0 13-10 23l-466 466q-10 10-23 10t-23-10l-50-50q-10-10-10-23t10-23l393-393-393-393q-10-10-10-23t10-23l50-50q10-10 23-10t23 10l466 466q10 10 10 23zM979 960q0 13-10 23l-466 466q-10 10-23 10t-23-10l-50-50q-10-10-10-23t10-23l393-393-393-393q-10-10-10-23t10-23l50-50q10-10 23-10t23 10l466 466q10 10 10 23z" + } + }] +}; +exports.angleDoubleRight = angleDoubleRight; +var angleDoubleUp = { + "viewBox": "0 0 1152 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1075 1312q0 13-10 23l-50 50q-10 10-23 10t-23-10l-393-393-393 393q-10 10-23 10t-23-10l-50-50q-10-10-10-23t10-23l466-466q10-10 23-10t23 10l466 466q10 10 10 23zM1075 928q0 13-10 23l-50 50q-10 10-23 10t-23-10l-393-393-393 393q-10 10-23 10t-23-10l-50-50q-10-10-10-23t10-23l466-466q10-10 23-10t23 10l466 466q10 10 10 23z" + } + }] +}; +exports.angleDoubleUp = angleDoubleUp; +var angleDoubleDown = { + "viewBox": "0 0 1152 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1075 864q0 13-10 23l-466 466q-10 10-23 10t-23-10l-466-466q-10-10-10-23t10-23l50-50q10-10 23-10t23 10l393 393 393-393q10-10 23-10t23 10l50 50q10 10 10 23zM1075 480q0 13-10 23l-466 466q-10 10-23 10t-23-10l-466-466q-10-10-10-23t10-23l50-50q10-10 23-10t23 10l393 393 393-393q10-10 23-10t23 10l50 50q10 10 10 23z" + } + }] +}; +exports.angleDoubleDown = angleDoubleDown; +var angleLeft = { + "viewBox": "0 0 640 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M627 544q0 13-10 23l-393 393 393 393q10 10 10 23t-10 23l-50 50q-10 10-23 10t-23-10l-466-466q-10-10-10-23t10-23l466-466q10-10 23-10t23 10l50 50q10 10 10 23z" + } + }] +}; +exports.angleLeft = angleLeft; +var angleRight = { + "viewBox": "0 0 640 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M595 960q0 13-10 23l-466 466q-10 10-23 10t-23-10l-50-50q-10-10-10-23t10-23l393-393-393-393q-10-10-10-23t10-23l50-50q10-10 23-10t23 10l466 466q10 10 10 23z" + } + }] +}; +exports.angleRight = angleRight; +var angleUp = { + "viewBox": "0 0 1152 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1075 1184q0 13-10 23l-50 50q-10 10-23 10t-23-10l-393-393-393 393q-10 10-23 10t-23-10l-50-50q-10-10-10-23t10-23l466-466q10-10 23-10t23 10l466 466q10 10 10 23z" + } + }] +}; +exports.angleUp = angleUp; +var angleDown = { + "viewBox": "0 0 1152 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1075 736q0 13-10 23l-466 466q-10 10-23 10t-23-10l-466-466q-10-10-10-23t10-23l50-50q10-10 23-10t23 10l393 393 393-393q10-10 23-10t23 10l50 50q10 10 10 23z" + } + }] +}; +exports.angleDown = angleDown; +var desktop = { + "viewBox": "0 0 1920 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1792 992v-832q0-13-9.5-22.5t-22.5-9.5h-1600q-13 0-22.5 9.5t-9.5 22.5v832q0 13 9.5 22.5t22.5 9.5h1600q13 0 22.5-9.5t9.5-22.5zM1920 160v1088q0 66-47 113t-113 47h-544q0 37 16 77.5t32 71 16 43.5q0 26-19 45t-45 19h-512q-26 0-45-19t-19-45q0-14 16-44t32-70 16-78h-544q-66 0-113-47t-47-113v-1088q0-66 47-113t113-47h1600q66 0 113 47t47 113z" + } + }] +}; +exports.desktop = desktop; +var laptop = { + "viewBox": "0 0 1920 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M416 1280q-66 0-113-47t-47-113v-704q0-66 47-113t113-47h1088q66 0 113 47t47 113v704q0 66-47 113t-113 47h-1088zM384 416v704q0 13 9.5 22.5t22.5 9.5h1088q13 0 22.5-9.5t9.5-22.5v-704q0-13-9.5-22.5t-22.5-9.5h-1088q-13 0-22.5 9.5t-9.5 22.5zM1760 1344h160v96q0 40-47 68t-113 28h-1600q-66 0-113-28t-47-68v-96h160 1600zM1040 1440q16 0 16-16t-16-16h-160q-16 0-16 16t16 16h160z" + } + }] +}; +exports.laptop = laptop; +var tablet = { + "viewBox": "0 0 1152 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 1408q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zM1024 1248v-960q0-13-9.5-22.5t-22.5-9.5h-832q-13 0-22.5 9.5t-9.5 22.5v960q0 13 9.5 22.5t22.5 9.5h832q13 0 22.5-9.5t9.5-22.5zM1152 288v1088q0 66-47 113t-113 47h-832q-66 0-113-47t-47-113v-1088q0-66 47-113t113-47h832q66 0 113 47t47 113z" + } + }] +}; +exports.tablet = tablet; +var mobile = { + "viewBox": "0 0 768 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M464 1408q0-33-23.5-56.5t-56.5-23.5-56.5 23.5-23.5 56.5 23.5 56.5 56.5 23.5 56.5-23.5 23.5-56.5zM672 1248v-704q0-13-9.5-22.5t-22.5-9.5h-512q-13 0-22.5 9.5t-9.5 22.5v704q0 13 9.5 22.5t22.5 9.5h512q13 0 22.5-9.5t9.5-22.5zM480 400q0-16-16-16h-160q-16 0-16 16t16 16h160q16 0 16-16zM768 384v1024q0 52-38 90t-90 38h-512q-52 0-90-38t-38-90v-1024q0-52 38-90t90-38h512q52 0 90 38t38 90z" + } + }] +}; +exports.mobile = mobile; +var mobilePhone = { + "viewBox": "0 0 768 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M464 1408q0-33-23.5-56.5t-56.5-23.5-56.5 23.5-23.5 56.5 23.5 56.5 56.5 23.5 56.5-23.5 23.5-56.5zM672 1248v-704q0-13-9.5-22.5t-22.5-9.5h-512q-13 0-22.5 9.5t-9.5 22.5v704q0 13 9.5 22.5t22.5 9.5h512q13 0 22.5-9.5t9.5-22.5zM480 400q0-16-16-16h-160q-16 0-16 16t16 16h160q16 0 16-16zM768 384v1024q0 52-38 90t-90 38h-512q-52 0-90-38t-38-90v-1024q0-52 38-90t90-38h512q52 0 90 38t38 90z" + } + }] +}; +exports.mobilePhone = mobilePhone; +var circleO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M768 352q-148 0-273 73t-198 198-73 273 73 273 198 198 273 73 273-73 198-198 73-273-73-273-198-198-273-73zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.circleO = circleO; +var quoteLeft = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M768 960v384q0 80-56 136t-136 56h-384q-80 0-136-56t-56-136v-704q0-104 40.5-198.5t109.5-163.5 163.5-109.5 198.5-40.5h64q26 0 45 19t19 45v128q0 26-19 45t-45 19h-64q-106 0-181 75t-75 181v32q0 40 28 68t68 28h224q80 0 136 56t56 136zM1664 960v384q0 80-56 136t-136 56h-384q-80 0-136-56t-56-136v-704q0-104 40.5-198.5t109.5-163.5 163.5-109.5 198.5-40.5h64q26 0 45 19t19 45v128q0 26-19 45t-45 19h-64q-106 0-181 75t-75 181v32q0 40 28 68t68 28h224q80 0 136 56t56 136z" + } + }] +}; +exports.quoteLeft = quoteLeft; +var quoteRight = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M768 320v704q0 104-40.5 198.5t-109.5 163.5-163.5 109.5-198.5 40.5h-64q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h64q106 0 181-75t75-181v-32q0-40-28-68t-68-28h-224q-80 0-136-56t-56-136v-384q0-80 56-136t136-56h384q80 0 136 56t56 136zM1664 320v704q0 104-40.5 198.5t-109.5 163.5-163.5 109.5-198.5 40.5h-64q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h64q106 0 181-75t75-181v-32q0-40-28-68t-68-28h-224q-80 0-136-56t-56-136v-384q0-80 56-136t136-56h384q80 0 136 56t56 136z" + } + }] +}; +exports.quoteRight = quoteRight; +var spinner = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M526 1394q0 53-37.5 90.5t-90.5 37.5q-52 0-90-38t-38-90q0-53 37.5-90.5t90.5-37.5 90.5 37.5 37.5 90.5zM1024 1600q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5 90.5 37.5 37.5 90.5zM320 896q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5 90.5 37.5 37.5 90.5zM1522 1394q0 52-38 90t-90 38q-53 0-90.5-37.5t-37.5-90.5 37.5-90.5 90.5-37.5 90.5 37.5 37.5 90.5zM558 398q0 66-47 113t-113 47-113-47-47-113 47-113 113-47 113 47 47 113zM1728 896q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5 90.5 37.5 37.5 90.5zM1088 192q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM1618 398q0 93-66 158.5t-158 65.5q-93 0-158.5-65.5t-65.5-158.5q0-92 65.5-158t158.5-66q92 0 158 66t66 158z" + } + }] +}; +exports.spinner = spinner; +var circle = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.circle = circle; +var mailReply = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1792 1120q0 166-127 451-3 7-10.5 24t-13.5 30-13 22q-12 17-28 17-15 0-23.5-10t-8.5-25q0-9 2.5-26.5t2.5-23.5q5-68 5-123 0-101-17.5-181t-48.5-138.5-80-101-105.5-69.5-133-42.5-154-21.5-175.5-6h-224v256q0 26-19 45t-45 19-45-19l-512-512q-19-19-19-45t19-45l512-512q19-19 45-19t45 19 19 45v256h224q713 0 875 403 53 134 53 333z" + } + }] +}; +exports.mailReply = mailReply; +var reply = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1792 1120q0 166-127 451-3 7-10.5 24t-13.5 30-13 22q-12 17-28 17-15 0-23.5-10t-8.5-25q0-9 2.5-26.5t2.5-23.5q5-68 5-123 0-101-17.5-181t-48.5-138.5-80-101-105.5-69.5-133-42.5-154-21.5-175.5-6h-224v256q0 26-19 45t-45 19-45-19l-512-512q-19-19-19-45t19-45l512-512q19-19 45-19t45 19 19 45v256h224q713 0 875 403 53 134 53 333z" + } + }] +}; +exports.reply = reply; +var githubAlt = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 1216q0 40-12.5 82t-43 76-72.5 34-72.5-34-43-76-12.5-82 12.5-82 43-76 72.5-34 72.5 34 43 76 12.5 82zM1280 1216q0 40-12.5 82t-43 76-72.5 34-72.5-34-43-76-12.5-82 12.5-82 43-76 72.5-34 72.5 34 43 76 12.5 82zM1440 1216q0-120-69-204t-187-84q-41 0-195 21-71 11-157 11t-157-11q-152-21-195-21-118 0-187 84t-69 204q0 88 32 153.5t81 103 122 60 140 29.5 149 7h168q82 0 149-7t140-29.5 122-60 81-103 32-153.5zM1664 1040q0 207-61 331-38 77-105.5 133t-141 86-170 47.5-171.5 22-167 4.5q-78 0-142-3t-147.5-12.5-152.5-30-137-51.5-121-81-86-115q-62-123-62-331 0-237 136-396-27-82-27-170 0-116 51-218 108 0 190 39.5t189 123.5q147-35 309-35 148 0 280 32 105-82 187-121t189-39q51 102 51 218 0 87-27 168 136 160 136 398z" + } + }] +}; +exports.githubAlt = githubAlt; +var folderO = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1536 1312v-704q0-40-28-68t-68-28h-704q-40 0-68-28t-28-68v-64q0-40-28-68t-68-28h-320q-40 0-68 28t-28 68v960q0 40 28 68t68 28h1216q40 0 68-28t28-68zM1664 608v704q0 92-66 158t-158 66h-1216q-92 0-158-66t-66-158v-960q0-92 66-158t158-66h320q92 0 158 66t66 158v32h672q92 0 158 66t66 158z" + } + }] +}; +exports.folderO = folderO; +var folderOpenO = { + "viewBox": "0 0 1920 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1781 931q0-35-53-35h-1088q-40 0-85.5 21.5t-71.5 52.5l-294 363q-18 24-18 40 0 35 53 35h1088q40 0 86-22t71-53l294-363q18-22 18-39zM640 768h768v-160q0-40-28-68t-68-28h-576q-40 0-68-28t-28-68v-64q0-40-28-68t-68-28h-320q-40 0-68 28t-28 68v853l256-315q44-53 116-87.5t140-34.5zM1909 931q0 62-46 120l-295 363q-43 53-116 87.5t-140 34.5h-1088q-92 0-158-66t-66-158v-960q0-92 66-158t158-66h320q92 0 158 66t66 158v32h544q92 0 158 66t66 158v160h192q54 0 99 24.5t67 70.5q15 32 15 68z" + } + }] +}; +exports.folderOpenO = folderOpenO; +var smileO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1134 1075q-37 121-138 195t-228 74-228-74-138-195q-8-25 4-48.5t38-31.5q25-8 48.5 4t31.5 38q25 80 92.5 129.5t151.5 49.5 151.5-49.5 92.5-129.5q8-26 32-38t49-4 37 31.5 4 48.5zM640 640q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5 90.5 37.5 37.5 90.5zM1152 640q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5 90.5 37.5 37.5 90.5zM1408 896q0-130-51-248.5t-136.5-204-204-136.5-248.5-51-248.5 51-204 136.5-136.5 204-51 248.5 51 248.5 136.5 204 204 136.5 248.5 51 248.5-51 204-136.5 136.5-204 51-248.5zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.smileO = smileO; +var frownO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1134 1229q8 25-4 48.5t-37 31.5-49-4-32-38q-25-80-92.5-129.5t-151.5-49.5-151.5 49.5-92.5 129.5q-8 26-31.5 38t-48.5 4q-26-8-38-31.5t-4-48.5q37-121 138-195t228-74 228 74 138 195zM640 640q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5 90.5 37.5 37.5 90.5zM1152 640q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5 90.5 37.5 37.5 90.5zM1408 896q0-130-51-248.5t-136.5-204-204-136.5-248.5-51-248.5 51-204 136.5-136.5 204-51 248.5 51 248.5 136.5 204 204 136.5 248.5 51 248.5-51 204-136.5 136.5-204 51-248.5zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.frownO = frownO; +var mehO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1152 1088q0 26-19 45t-45 19h-640q-26 0-45-19t-19-45 19-45 45-19h640q26 0 45 19t19 45zM640 640q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5 90.5 37.5 37.5 90.5zM1152 640q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5 90.5 37.5 37.5 90.5zM1408 896q0-130-51-248.5t-136.5-204-204-136.5-248.5-51-248.5 51-204 136.5-136.5 204-51 248.5 51 248.5 136.5 204 204 136.5 248.5 51 248.5-51 204-136.5 136.5-204 51-248.5zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.mehO = mehO; +var gamepad = { + "viewBox": "0 0 1920 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M832 1088v-128q0-14-9-23t-23-9h-192v-192q0-14-9-23t-23-9h-128q-14 0-23 9t-9 23v192h-192q-14 0-23 9t-9 23v128q0 14 9 23t23 9h192v192q0 14 9 23t23 9h128q14 0 23-9t9-23v-192h192q14 0 23-9t9-23zM1408 1152q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1664 896q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1920 1024q0 212-150 362t-362 150q-192 0-338-128h-220q-146 128-338 128-212 0-362-150t-150-362 150-362 362-150h896q212 0 362 150t150 362z" + } + }] +}; +exports.gamepad = gamepad; +var keyboardO = { + "viewBox": "0 0 1920 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M384 1168v96q0 16-16 16h-96q-16 0-16-16v-96q0-16 16-16h96q16 0 16 16zM512 912v96q0 16-16 16h-224q-16 0-16-16v-96q0-16 16-16h224q16 0 16 16zM384 656v96q0 16-16 16h-96q-16 0-16-16v-96q0-16 16-16h96q16 0 16 16zM1408 1168v96q0 16-16 16h-864q-16 0-16-16v-96q0-16 16-16h864q16 0 16 16zM768 912v96q0 16-16 16h-96q-16 0-16-16v-96q0-16 16-16h96q16 0 16 16zM640 656v96q0 16-16 16h-96q-16 0-16-16v-96q0-16 16-16h96q16 0 16 16zM1024 912v96q0 16-16 16h-96q-16 0-16-16v-96q0-16 16-16h96q16 0 16 16zM896 656v96q0 16-16 16h-96q-16 0-16-16v-96q0-16 16-16h96q16 0 16 16zM1280 912v96q0 16-16 16h-96q-16 0-16-16v-96q0-16 16-16h96q16 0 16 16zM1664 1168v96q0 16-16 16h-96q-16 0-16-16v-96q0-16 16-16h96q16 0 16 16zM1152 656v96q0 16-16 16h-96q-16 0-16-16v-96q0-16 16-16h96q16 0 16 16zM1408 656v96q0 16-16 16h-96q-16 0-16-16v-96q0-16 16-16h96q16 0 16 16zM1664 656v352q0 16-16 16h-224q-16 0-16-16v-96q0-16 16-16h112v-240q0-16 16-16h96q16 0 16 16zM1792 1408v-896h-1664v896h1664zM1920 512v896q0 53-37.5 90.5t-90.5 37.5h-1664q-53 0-90.5-37.5t-37.5-90.5v-896q0-53 37.5-90.5t90.5-37.5h1664q53 0 90.5 37.5t37.5 90.5z" + } + }] +}; +exports.keyboardO = keyboardO; +var flagO = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1664 1045v-616q-169 91-306 91-82 0-145-32-100-49-184-76.5t-178-27.5q-173 0-403 127v599q245-113 433-113 55 0 103.5 7.5t98 26 77 31 82.5 39.5l28 14q44 22 101 22 120 0 293-92zM320 256q0 35-17.5 64t-46.5 46v1266q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-1266q-29-17-46.5-46t-17.5-64q0-53 37.5-90.5t90.5-37.5 90.5 37.5 37.5 90.5zM1792 320v763q0 39-35 57-10 5-17 9-218 116-369 116-88 0-158-35l-28-14q-64-33-99-48t-91-29-114-14q-102 0-235.5 44t-228.5 102q-15 9-33 9-16 0-32-8-32-19-32-56v-742q0-35 31-55 35-21 78.5-42.5t114-52 152.5-49.5 155-19q112 0 209 31t209 86q38 19 89 19 122 0 310-112 22-12 31-17 31-16 62 2 31 20 31 55z" + } + }] +}; +exports.flagO = flagO; +var flagCheckered = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M832 1000v-192q-181 16-384 117v185q205-96 384-110zM832 582v-197q-172 8-384 126v189q215-111 384-118zM1664 1045v-184q-235 116-384 71v-224q-20-6-39-15-5-3-33-17t-34.5-17-31.5-15-34.5-15.5-32.5-13-36-12.5-35-8.5-39.5-7.5-39.5-4-44-2q-23 0-49 3v222h19q102 0 192.5 29t197.5 82q19 9 39 15v188q42 17 91 17 120 0 293-92zM1664 618v-189q-169 91-306 91-45 0-78-8v196q148 42 384-90zM320 256q0 35-17.5 64t-46.5 46v1266q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-1266q-29-17-46.5-46t-17.5-64q0-53 37.5-90.5t90.5-37.5 90.5 37.5 37.5 90.5zM1792 320v763q0 39-35 57-10 5-17 9-218 116-369 116-88 0-158-35l-28-14q-64-33-99-48t-91-29-114-14q-102 0-235.5 44t-228.5 102q-15 9-33 9-16 0-32-8-32-19-32-56v-742q0-35 31-55 35-21 78.5-42.5t114-52 152.5-49.5 155-19q112 0 209 31t209 86q38 19 89 19 122 0 310-112 22-12 31-17 31-16 62 2 31 20 31 55z" + } + }] +}; +exports.flagCheckered = flagCheckered; +var terminal = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M585 983l-466 466q-10 10-23 10t-23-10l-50-50q-10-10-10-23t10-23l393-393-393-393q-10-10-10-23t10-23l50-50q10-10 23-10t23 10l466 466q10 10 10 23t-10 23zM1664 1440v64q0 14-9 23t-23 9h-960q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h960q14 0 23 9t9 23z" + } + }] +}; +exports.terminal = terminal; +var code = { + "viewBox": "0 0 1920 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M617 1399l-50 50q-10 10-23 10t-23-10l-466-466q-10-10-10-23t10-23l466-466q10-10 23-10t23 10l50 50q10 10 10 23t-10 23l-393 393 393 393q10 10 10 23t-10 23zM1208 332l-373 1291q-4 13-15.5 19.5t-23.5 2.5l-62-17q-13-4-19.5-15.5t-2.5-24.5l373-1291q4-13 15.5-19.5t23.5-2.5l62 17q13 4 19.5 15.5t2.5 24.5zM1865 983l-466 466q-10 10-23 10t-23-10l-50-50q-10-10-10-23t10-23l393-393-393-393q-10-10-10-23t10-23l50-50q10-10 23-10t23 10l466 466q10 10 10 23t-10 23z" + } + }] +}; +exports.code = code; +var mailReplyAll = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 1082v70q0 42-39 59-13 5-25 5-27 0-45-19l-512-512q-19-19-19-45t19-45l512-512q29-31 70-14 39 17 39 59v69l-397 398q-19 19-19 45t19 45zM1792 1120q0 58-17 133.5t-38.5 138-48 125-40.5 90.5l-20 40q-8 17-28 17-6 0-9-1-25-8-23-34 43-400-106-565-64-71-170.5-110.5t-267.5-52.5v251q0 42-39 59-13 5-25 5-27 0-45-19l-512-512q-19-19-19-45t19-45l512-512q29-31 70-14 39 17 39 59v262q411 28 599 221 169 173 169 509z" + } + }] +}; +exports.mailReplyAll = mailReplyAll; +var replyAll = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 1082v70q0 42-39 59-13 5-25 5-27 0-45-19l-512-512q-19-19-19-45t19-45l512-512q29-31 70-14 39 17 39 59v69l-397 398q-19 19-19 45t19 45zM1792 1120q0 58-17 133.5t-38.5 138-48 125-40.5 90.5l-20 40q-8 17-28 17-6 0-9-1-25-8-23-34 43-400-106-565-64-71-170.5-110.5t-267.5-52.5v251q0 42-39 59-13 5-25 5-27 0-45-19l-512-512q-19-19-19-45t19-45l512-512q29-31 70-14 39 17 39 59v262q411 28 599 221 169 173 169 509z" + } + }] +}; +exports.replyAll = replyAll; +var starHalfEmpty = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1186 957l257-250-356-52-66-10-30-60-159-322v963l59 31 318 168-60-355-12-66zM1638 695l-363 354 86 500q5 33-6 51.5t-34 18.5q-17 0-40-12l-449-236-449 236q-23 12-40 12-23 0-34-18.5t-6-51.5l86-500-364-354q-32-32-23-59.5t54-34.5l502-73 225-455q20-41 49-41 28 0 49 41l225 455 502 73q45 7 54 34.5t-24 59.5z" + } + }] +}; +exports.starHalfEmpty = starHalfEmpty; +var starHalfFull = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1186 957l257-250-356-52-66-10-30-60-159-322v963l59 31 318 168-60-355-12-66zM1638 695l-363 354 86 500q5 33-6 51.5t-34 18.5q-17 0-40-12l-449-236-449 236q-23 12-40 12-23 0-34-18.5t-6-51.5l86-500-364-354q-32-32-23-59.5t54-34.5l502-73 225-455q20-41 49-41 28 0 49 41l225 455 502 73q45 7 54 34.5t-24 59.5z" + } + }] +}; +exports.starHalfFull = starHalfFull; +var starHalfO = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1186 957l257-250-356-52-66-10-30-60-159-322v963l59 31 318 168-60-355-12-66zM1638 695l-363 354 86 500q5 33-6 51.5t-34 18.5q-17 0-40-12l-449-236-449 236q-23 12-40 12-23 0-34-18.5t-6-51.5l86-500-364-354q-32-32-23-59.5t54-34.5l502-73 225-455q20-41 49-41 28 0 49 41l225 455 502 73q45 7 54 34.5t-24 59.5z" + } + }] +}; +exports.starHalfO = starHalfO; +var locationArrow = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1401 349l-640 1280q-17 35-57 35-5 0-15-2-22-5-35.5-22.5t-13.5-39.5v-576h-576q-22 0-39.5-13.5t-22.5-35.5 4-42 29-30l1280-640q13-7 29-7 27 0 45 19 15 14 18.5 34.5t-6.5 39.5z" + } + }] +}; +exports.locationArrow = locationArrow; +var crop = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M557 1280h595v-595zM512 1235l595-595h-595v595zM1664 1312v192q0 14-9 23t-23 9h-224v224q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-224h-864q-14 0-23-9t-9-23v-864h-224q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h224v-224q0-14 9-23t23-9h192q14 0 23 9t9 23v224h851l246-247q10-9 23-9t23 9q9 10 9 23t-9 23l-247 246v851h224q14 0 23 9t9 23z" + } + }] +}; +exports.crop = crop; +var codeFork = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M288 1472q0-40-28-68t-68-28-68 28-28 68 28 68 68 28 68-28 28-68zM288 320q0-40-28-68t-68-28-68 28-28 68 28 68 68 28 68-28 28-68zM928 448q0-40-28-68t-68-28-68 28-28 68 28 68 68 28 68-28 28-68zM1024 448q0 52-26 96.5t-70 69.5q-2 287-226 414-67 38-203 81-128 40-169.5 71t-41.5 100v26q44 25 70 69.5t26 96.5q0 80-56 136t-136 56-136-56-56-136q0-52 26-96.5t70-69.5v-820q-44-25-70-69.5t-26-96.5q0-80 56-136t136-56 136 56 56 136q0 52-26 96.5t-70 69.5v497q54-26 154-57 55-17 87.5-29.5t70.5-31 59-39.5 40.5-51 28-69.5 8.5-91.5q-44-25-70-69.5t-26-96.5q0-80 56-136t136-56 136 56 56 136z" + } + }] +}; +exports.codeFork = codeFork; +var chainBroken = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M439 1271l-256 256q-11 9-23 9t-23-9q-9-10-9-23t9-23l256-256q10-9 23-9t23 9q9 10 9 23t-9 23zM608 1312v320q0 14-9 23t-23 9-23-9-9-23v-320q0-14 9-23t23-9 23 9 9 23zM384 1088q0 14-9 23t-23 9h-320q-14 0-23-9t-9-23 9-23 23-9h320q14 0 23 9t9 23zM1648 1216q0 120-85 203l-147 146q-83 83-203 83-121 0-204-85l-334-335q-21-21-42-56l239-18 273 274q27 27 68 27.5t68-26.5l147-146q28-28 28-67 0-40-28-68l-274-275 18-239q35 21 56 42l336 336q84 86 84 204zM1031 492l-239 18-273-274q-28-28-68-28-39 0-68 27l-147 146q-28 28-28 67 0 40 28 68l274 274-18 240q-35-21-56-42l-336-336q-84-86-84-204 0-120 85-203l147-146q83-83 203-83 121 0 204 85l334 335q21 21 42 56zM1664 576q0 14-9 23t-23 9h-320q-14 0-23-9t-9-23 9-23 23-9h320q14 0 23 9t9 23zM1120 32v320q0 14-9 23t-23 9-23-9-9-23v-320q0-14 9-23t23-9 23 9 9 23zM1527 183l-256 256q-11 9-23 9t-23-9q-9-10-9-23t9-23l256-256q10-9 23-9t23 9q9 10 9 23t-9 23z" + } + }] +}; +exports.chainBroken = chainBroken; +var unlink = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M439 1271l-256 256q-11 9-23 9t-23-9q-9-10-9-23t9-23l256-256q10-9 23-9t23 9q9 10 9 23t-9 23zM608 1312v320q0 14-9 23t-23 9-23-9-9-23v-320q0-14 9-23t23-9 23 9 9 23zM384 1088q0 14-9 23t-23 9h-320q-14 0-23-9t-9-23 9-23 23-9h320q14 0 23 9t9 23zM1648 1216q0 120-85 203l-147 146q-83 83-203 83-121 0-204-85l-334-335q-21-21-42-56l239-18 273 274q27 27 68 27.5t68-26.5l147-146q28-28 28-67 0-40-28-68l-274-275 18-239q35 21 56 42l336 336q84 86 84 204zM1031 492l-239 18-273-274q-28-28-68-28-39 0-68 27l-147 146q-28 28-28 67 0 40 28 68l274 274-18 240q-35-21-56-42l-336-336q-84-86-84-204 0-120 85-203l147-146q83-83 203-83 121 0 204 85l334 335q21 21 42 56zM1664 576q0 14-9 23t-23 9h-320q-14 0-23-9t-9-23 9-23 23-9h320q14 0 23 9t9 23zM1120 32v320q0 14-9 23t-23 9-23-9-9-23v-320q0-14 9-23t23-9 23 9 9 23zM1527 183l-256 256q-11 9-23 9t-23-9q-9-10-9-23t9-23l256-256q10-9 23-9t23 9q9 10 9 23t-9 23z" + } + }] +}; +exports.unlink = unlink; +var question = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M704 1256v240q0 16-12 28t-28 12h-240q-16 0-28-12t-12-28v-240q0-16 12-28t28-12h240q16 0 28 12t12 28zM1020 656q0 54-15.5 101t-35 76.5-55 59.5-57.5 43.5-61 35.5q-41 23-68.5 65t-27.5 67q0 17-12 32.5t-28 15.5h-240q-15 0-25.5-18.5t-10.5-37.5v-45q0-83 65-156.5t143-108.5q59-27 84-56t25-76q0-42-46.5-74t-107.5-32q-65 0-108 29-35 25-107 115-13 16-31 16-12 0-25-8l-164-125q-13-10-15.5-25t5.5-28q160-266 464-266 80 0 161 31t146 83 106 127.5 41 158.5z" + } + }] +}; +exports.question = question; +var info = { + "viewBox": "0 0 640 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 1344v128q0 26-19 45t-45 19h-512q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h64v-384h-64q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h384q26 0 45 19t19 45v576h64q26 0 45 19t19 45zM512 192v192q0 26-19 45t-45 19h-256q-26 0-45-19t-19-45v-192q0-26 19-45t45-19h256q26 0 45 19t19 45z" + } + }] +}; +exports.info = info; +var exclamation = { + "viewBox": "0 0 640 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M512 1248v224q0 26-19 45t-45 19h-256q-26 0-45-19t-19-45v-224q0-26 19-45t45-19h256q26 0 45 19t19 45zM542 192l-28 768q-1 26-20.5 45t-45.5 19h-256q-26 0-45.5-19t-20.5-45l-28-768q-1-26 17.5-45t44.5-19h320q26 0 44.5 19t17.5 45z" + } + }] +}; +exports.exclamation = exclamation; +var superscript = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M897 1369v167h-248l-159-252-24-42q-8-9-11-21h-3q-1 3-2.5 6.5t-3.5 8-3 6.5q-10 20-25 44l-155 250h-258v-167h128l197-291-185-272h-137v-168h276l139 228q2 4 23 42 8 9 11 21h3q3-9 11-21l25-42 140-228h257v168h-125l-184 267 204 296h109zM1534 690v206h-514l-3-27q-4-28-4-46 0-64 26-117t65-86.5 84-65 84-54.5 65-54 26-64q0-38-29.5-62.5t-70.5-24.5q-51 0-97 39-14 11-36 38l-105-92q26-37 63-66 83-65 188-65 110 0 178 59.5t68 158.5q0 56-24.5 103t-62 76.5-81.5 58.5-82 50.5-65.5 51.5-30.5 63h232v-80h126z" + } + }] +}; +exports.superscript = superscript; +var subscript = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M897 1369v167h-248l-159-252-24-42q-8-9-11-21h-3q-1 3-2.5 6.5t-3.5 8-3 6.5q-10 20-25 44l-155 250h-258v-167h128l197-291-185-272h-137v-168h276l139 228q2 4 23 42 8 9 11 21h3q3-9 11-21l25-42 140-228h257v168h-125l-184 267 204 296h109zM1536 1586v206h-514l-4-27q-3-45-3-46 0-64 26-117t65-86.5 84-65 84-54.5 65-54 26-64q0-38-29.5-62.5t-70.5-24.5q-51 0-97 39-14 11-36 38l-105-92q26-37 63-66 80-65 188-65 110 0 178 59.5t68 158.5q0 66-34.5 118.5t-84 86-99.5 62.5-87 63-41 73h232v-80h126z" + } + }] +}; +exports.subscript = subscript; +var eraser = { + "viewBox": "0 0 1920 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M896 1408l336-384h-768l-336 384h768zM1909 331q15 34 9.5 71.5t-30.5 65.5l-896 1024q-38 44-96 44h-768q-38 0-69.5-20.5t-47.5-54.5q-15-34-9.5-71.5t30.5-65.5l896-1024q38-44 96-44h768q38 0 69.5 20.5t47.5 54.5z" + } + }] +}; +exports.eraser = eraser; +var puzzlePiece = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1664 1098q0 81-44.5 135t-123.5 54q-41 0-77.5-17.5t-59-38-56.5-38-71-17.5q-110 0-110 124 0 39 16 115t15 115v5q-22 0-33 1-34 3-97.5 11.5t-115.5 13.5-98 5q-61 0-103-26.5t-42-83.5q0-37 17.5-71t38-56.5 38-59 17.5-77.5q0-79-54-123.5t-135-44.5q-84 0-143 45.5t-59 127.5q0 43 15 83t33.5 64.5 33.5 53 15 50.5q0 45-46 89-37 35-117 35-95 0-245-24-9-2-27.5-4t-27.5-4l-13-2q-1 0-3-1-2 0-2-1v-1024q2 1 17.5 3.5t34 5 21.5 3.5q150 24 245 24 80 0 117-35 46-44 46-89 0-22-15-50.5t-33.5-53-33.5-64.5-15-83q0-82 59-127.5t144-45.5q80 0 134 44.5t54 123.5q0 41-17.5 77.5t-38 59-38 56.5-17.5 71q0 57 42 83.5t103 26.5q64 0 180-15t163-17v2q-1 2-3.5 17.5t-5 34-3.5 21.5q-24 150-24 245 0 80 35 117 44 46 89 46 22 0 50.5-15t53-33.5 64.5-33.5 83-15q82 0 127.5 59t45.5 143z" + } + }] +}; +exports.puzzlePiece = puzzlePiece; +var microphone = { + "viewBox": "0 0 1152 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1152 704v128q0 221-147.5 384.5t-364.5 187.5v132h256q26 0 45 19t19 45-19 45-45 19h-640q-26 0-45-19t-19-45 19-45 45-19h256v-132q-217-24-364.5-187.5t-147.5-384.5v-128q0-26 19-45t45-19 45 19 19 45v128q0 185 131.5 316.5t316.5 131.5 316.5-131.5 131.5-316.5v-128q0-26 19-45t45-19 45 19 19 45zM896 320v512q0 132-94 226t-226 94-226-94-94-226v-512q0-132 94-226t226-94 226 94 94 226z" + } + }] +}; +exports.microphone = microphone; +var microphoneSlash = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M271 945l-101 101q-42-103-42-214v-128q0-26 19-45t45-19 45 19 19 45v128q0 53 15 113zM1385 343l-361 361v128q0 132-94 226t-226 94q-55 0-109-19l-96 96q97 51 205 51 185 0 316.5-131.5t131.5-316.5v-128q0-26 19-45t45-19 45 19 19 45v128q0 221-147.5 384.5t-364.5 187.5v132h256q26 0 45 19t19 45-19 45-45 19h-640q-26 0-45-19t-19-45 19-45 45-19h256v-132q-125-13-235-81l-254 254q-10 10-23 10t-23-10l-82-82q-10-10-10-23t10-23l1234-1234q10-10 23-10t23 10l82 82q10 10 10 23t-10 23zM1005 211l-621 621v-512q0-132 94-226t226-94q102 0 184.5 59t116.5 152z" + } + }] +}; +exports.microphoneSlash = microphoneSlash; +var shield = { + "viewBox": "0 0 1280 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1088 960v-640h-448v1137q119-63 213-137 235-184 235-360zM1280 192v768q0 86-33.5 170.5t-83 150-118 127.5-126.5 103-121 77.5-89.5 49.5-42.5 20q-12 6-26 6t-26-6q-16-7-42.5-20t-89.5-49.5-121-77.5-126.5-103-118-127.5-83-150-33.5-170.5v-768q0-26 19-45t45-19h1152q26 0 45 19t19 45z" + } + }] +}; +exports.shield = shield; +var calendarO = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M128 1664h1408v-1024h-1408v1024zM512 448v-288q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v288q0 14 9 23t23 9h64q14 0 23-9t9-23zM1280 448v-288q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v288q0 14 9 23t23 9h64q14 0 23-9t9-23zM1664 384v1280q0 52-38 90t-90 38h-1408q-52 0-90-38t-38-90v-1280q0-52 38-90t90-38h128v-96q0-66 47-113t113-47h64q66 0 113 47t47 113v96h384v-96q0-66 47-113t113-47h64q66 0 113 47t47 113v96h128q52 0 90 38t38 90z" + } + }] +}; +exports.calendarO = calendarO; +var fireExtinguisher = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M512 192q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zM1408 160v320q0 16-12 25-8 7-20 7-4 0-7-1l-448-96q-11-2-18-11t-7-20h-256v102q111 23 183.5 111t72.5 203v800q0 26-19 45t-45 19h-512q-26 0-45-19t-19-45v-800q0-106 62.5-190.5t161.5-114.5v-111h-32q-59 0-115 23.5t-91.5 53-66 66.5-40.5 53.5-14 24.5q-17 35-57 35-16 0-29-7-23-12-31.5-37t3.5-49q5-10 14.5-26t37.5-53.5 60.5-70 85-67 108.5-52.5q-25-42-25-86 0-66 47-113t113-47 113 47 47 113q0 33-14 64h302q0-11 7-20t18-11l448-96q3-1 7-1 12 0 20 7 12 9 12 25z" + } + }] +}; +exports.fireExtinguisher = fireExtinguisher; +var rocket = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1440 448q0-40-28-68t-68-28-68 28-28 68 28 68 68 28 68-28 28-68zM1664 160q0 249-75.5 430.5t-253.5 360.5q-81 80-195 176l-20 379q-2 16-16 26l-384 224q-7 4-16 4-12 0-23-9l-64-64q-13-14-8-32l85-276-281-281-276 85q-3 1-9 1-14 0-23-9l-64-64q-17-19-5-39l224-384q10-14 26-16l379-20q96-114 176-195 188-187 358-258t431-71q14 0 24 9.5t10 22.5z" + } + }] +}; +exports.rocket = rocket; +var maxcdn = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1745 773l-164 763h-334l178-832q13-56-15-88-27-33-83-33h-169l-204 953h-334l204-953h-286l-204 953h-334l204-953-153-327h1276q101 0 189.5 40.5t147.5 113.5q60 73 81 168.5t0 194.5z" + } + }] +}; +exports.maxcdn = maxcdn; +var chevronCircleLeft = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M909 1395l102-102q19-19 19-45t-19-45l-307-307 307-307q19-19 19-45t-19-45l-102-102q-19-19-45-19t-45 19l-454 454q-19 19-19 45t19 45l454 454q19 19 45 19t45-19zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.chevronCircleLeft = chevronCircleLeft; +var chevronCircleRight = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M717 1395l454-454q19-19 19-45t-19-45l-454-454q-19-19-45-19t-45 19l-102 102q-19 19-19 45t19 45l307 307-307 307q-19 19-19 45t19 45l102 102q19 19 45 19t45-19zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.chevronCircleRight = chevronCircleRight; +var chevronCircleUp = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1165 1139l102-102q19-19 19-45t-19-45l-454-454q-19-19-45-19t-45 19l-454 454q-19 19-19 45t19 45l102 102q19 19 45 19t45-19l307-307 307 307q19 19 45 19t45-19zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.chevronCircleUp = chevronCircleUp; +var chevronCircleDown = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M813 1299l454-454q19-19 19-45t-19-45l-102-102q-19-19-45-19t-45 19l-307 307-307-307q-19-19-45-19t-45 19l-102 102q-19 19-19 45t19 45l454 454q19 19 45 19t45-19zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.chevronCircleDown = chevronCircleDown; +var html5 = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1130 597l16-175h-884l47 534h612l-22 228-197 53-196-53-13-140h-175l22 278 362 100h4v-1l359-99 50-544h-644l-15-181h674zM0 128h1408l-128 1438-578 162-574-162z" + } + }] +}; +exports.html5 = html5; +var css3 = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M275 128h1505l-266 1333-804 267-698-267 71-356h297l-29 147 422 161 486-161 68-339h-1208l58-297h1209l38-191h-1208z" + } + }] +}; +exports.css3 = css3; +var anchor = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M960 256q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zM1792 1184v352q0 22-20 30-8 2-12 2-12 0-23-9l-93-93q-119 143-318.5 226.5t-429.5 83.5-429.5-83.5-318.5-226.5l-93 93q-9 9-23 9-4 0-12-2-20-8-20-30v-352q0-14 9-23t23-9h352q22 0 30 20 8 19-7 35l-100 100q67 91 189.5 153.5t271.5 82.5v-647h-192q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h192v-163q-58-34-93-92.5t-35-128.5q0-106 75-181t181-75 181 75 75 181q0 70-35 128.5t-93 92.5v163h192q26 0 45 19t19 45v128q0 26-19 45t-45 19h-192v647q149-20 271.5-82.5t189.5-153.5l-100-100q-15-16-7-35 8-20 30-20h352q14 0 23 9t9 23z" + } + }] +}; +exports.anchor = anchor; +var unlockAlt = { + "viewBox": "0 0 1152 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1056 768q40 0 68 28t28 68v576q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-576q0-40 28-68t68-28h32v-320q0-185 131.5-316.5t316.5-131.5 316.5 131.5 131.5 316.5q0 26-19 45t-45 19h-64q-26 0-45-19t-19-45q0-106-75-181t-181-75-181 75-75 181v320h736z" + } + }] +}; +exports.unlockAlt = unlockAlt; +var bullseye = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 896q0 106-75 181t-181 75-181-75-75-181 75-181 181-75 181 75 75 181zM1152 896q0-159-112.5-271.5t-271.5-112.5-271.5 112.5-112.5 271.5 112.5 271.5 271.5 112.5 271.5-112.5 112.5-271.5zM1280 896q0 212-150 362t-362 150-362-150-150-362 150-362 362-150 362 150 150 362zM1408 896q0-130-51-248.5t-136.5-204-204-136.5-248.5-51-248.5 51-204 136.5-136.5 204-51 248.5 51 248.5 136.5 204 204 136.5 248.5 51 248.5-51 204-136.5 136.5-204 51-248.5zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.bullseye = bullseye; +var ellipsisH = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M384 736v192q0 40-28 68t-68 28h-192q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h192q40 0 68 28t28 68zM896 736v192q0 40-28 68t-68 28h-192q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h192q40 0 68 28t28 68zM1408 736v192q0 40-28 68t-68 28h-192q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h192q40 0 68 28t28 68z" + } + }] +}; +exports.ellipsisH = ellipsisH; +var ellipsisV = { + "viewBox": "0 0 384 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M384 1248v192q0 40-28 68t-68 28h-192q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h192q40 0 68 28t28 68zM384 736v192q0 40-28 68t-68 28h-192q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h192q40 0 68 28t28 68zM384 224v192q0 40-28 68t-68 28h-192q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h192q40 0 68 28t28 68z" + } + }] +}; +exports.ellipsisV = ellipsisV; +var rssSquare = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M512 1280q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM863 1374q-13-233-176.5-396.5t-396.5-176.5q-14-1-24 9t-10 23v128q0 13 8.5 22t21.5 10q154 11 264 121t121 264q1 13 10 21.5t22 8.5h128q13 0 23-10t9-24zM1247 1375q-5-154-56-297.5t-139.5-260-205-205-260-139.5-297.5-56q-14-1-23 9-10 10-10 23v128q0 13 9 22t22 10q204 7 378 111.5t278.5 278.5 111.5 378q1 13 10 22t22 9h128q13 0 23-10 11-9 9-23zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.rssSquare = rssSquare; +var playCircle = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M768 128q209 0 385.5 103t279.5 279.5 103 385.5-103 385.5-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103zM1152 951q32-18 32-55t-32-55l-544-320q-31-19-64-1-32 19-32 56v640q0 37 32 56 16 8 32 8 17 0 32-9z" + } + }] +}; +exports.playCircle = playCircle; +var ticket = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 452l316 316-572 572-316-316zM813 1431l618-618q19-19 19-45t-19-45l-362-362q-18-18-45-18t-45 18l-618 618q-19 19-19 45t19 45l362 362q18 18 45 18t45-18zM1702 794l-907 908q-37 37-90.5 37t-90.5-37l-126-126q56-56 56-136t-56-136-136-56-136 56l-125-126q-37-37-37-90.5t37-90.5l907-906q37-37 90.5-37t90.5 37l125 125q-56 56-56 136t56 136 136 56 136-56l126 125q37 37 37 90.5t-37 90.5z" + } + }] +}; +exports.ticket = ticket; +var minusSquare = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1280 960v-128q0-26-19-45t-45-19h-896q-26 0-45 19t-19 45v128q0 26 19 45t45 19h896q26 0 45-19t19-45zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.minusSquare = minusSquare; +var minusSquareO = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1152 800v64q0 14-9 23t-23 9h-832q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h832q14 0 23 9t9 23zM1280 1248v-832q0-66-47-113t-113-47h-832q-66 0-113 47t-47 113v832q0 66 47 113t113 47h832q66 0 113-47t47-113zM1408 416v832q0 119-84.5 203.5t-203.5 84.5h-832q-119 0-203.5-84.5t-84.5-203.5v-832q0-119 84.5-203.5t203.5-84.5h832q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.minusSquareO = minusSquareO; +var levelUp = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1018 603q-18 37-58 37h-192v864q0 14-9 23t-23 9h-704q-21 0-29-18-8-20 4-35l160-192q9-11 25-11h320v-640h-192q-40 0-58-37-17-37 9-68l320-384q18-22 49-22t49 22l320 384q27 32 9 68z" + } + }] +}; +exports.levelUp = levelUp; +var levelDown = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M32 256h704q13 0 22.5 9.5t9.5 23.5v863h192q40 0 58 37t-9 69l-320 384q-18 22-49 22t-49-22l-320-384q-26-31-9-69 18-37 58-37h192v-640h-320q-14 0-25-11l-160-192q-13-14-4-34 9-19 29-19z" + } + }] +}; +exports.levelDown = levelDown; +var checkSquare = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M685 1299l614-614q19-19 19-45t-19-45l-102-102q-19-19-45-19t-45 19l-467 467-211-211q-19-19-45-19t-45 19l-102 102q-19 19-19 45t19 45l358 358q19 19 45 19t45-19zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.checkSquare = checkSquare; +var pencilSquare = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M404 1108l152 152-52 52h-56v-96h-96v-56zM818 718q14 13-3 30l-291 291q-17 17-30 3-14-13 3-30l291-291q17-17 30-3zM544 1408l544-544-288-288-544 544v288h288zM1152 800l92-92q28-28 28-68t-28-68l-152-152q-28-28-68-28t-68 28l-92 92zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.pencilSquare = pencilSquare; +var externalLinkSquare = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1280 928v-480q0-26-19-45t-45-19h-480q-42 0-59 39-17 41 14 70l144 144-534 534q-19 19-19 45t19 45l102 102q19 19 45 19t45-19l534-534 144 144q18 19 45 19 12 0 25-5 39-17 39-59zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.externalLinkSquare = externalLinkSquare; +var shareSquare = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1005 1101l352-352q19-19 19-45t-19-45l-352-352q-30-31-69-14-40 17-40 59v160q-119 0-216 19.5t-162.5 51-114 79-76.5 95.5-44.5 109-21.5 111.5-5 110.5q0 181 167 404 11 12 25 12 7 0 13-3 22-9 19-33-44-354 62-473 46-52 130-75.5t224-23.5v160q0 42 40 59 12 5 24 5 26 0 45-19zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.shareSquare = shareSquare; +var compass = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 1088l256-128-256-128v256zM1024 497v542l-512 256v-542zM1312 896q0-148-73-273t-198-198-273-73-273 73-198 198-73 273 73 273 198 198 273 73 273-73 198-198 73-273zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.compass = compass; +var caretSquareODown = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1145 675q18 35-5 66l-320 448q-19 27-52 27t-52-27l-320-448q-23-31-5-66 17-35 57-35h640q40 0 57 35zM1280 1376v-960q0-13-9.5-22.5t-22.5-9.5h-960q-13 0-22.5 9.5t-9.5 22.5v960q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5-9.5t9.5-22.5zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.caretSquareODown = caretSquareODown; +var toggleDown = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1145 675q18 35-5 66l-320 448q-19 27-52 27t-52-27l-320-448q-23-31-5-66 17-35 57-35h640q40 0 57 35zM1280 1376v-960q0-13-9.5-22.5t-22.5-9.5h-960q-13 0-22.5 9.5t-9.5 22.5v960q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5-9.5t9.5-22.5zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.toggleDown = toggleDown; +var caretSquareOUp = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1145 1117q-17 35-57 35h-640q-40 0-57-35-18-35 5-66l320-448q19-27 52-27t52 27l320 448q23 31 5 66zM1280 1376v-960q0-13-9.5-22.5t-22.5-9.5h-960q-13 0-22.5 9.5t-9.5 22.5v960q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5-9.5t9.5-22.5zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.caretSquareOUp = caretSquareOUp; +var toggleUp = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1145 1117q-17 35-57 35h-640q-40 0-57-35-18-35 5-66l320-448q19-27 52-27t52 27l320 448q23 31 5 66zM1280 1376v-960q0-13-9.5-22.5t-22.5-9.5h-960q-13 0-22.5 9.5t-9.5 22.5v960q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5-9.5t9.5-22.5zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.toggleUp = toggleUp; +var caretSquareORight = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1088 896q0 33-27 52l-448 320q-31 23-66 5-35-17-35-57v-640q0-40 35-57 35-18 66 5l448 320q27 19 27 52zM1280 1376v-960q0-14-9-23t-23-9h-960q-14 0-23 9t-9 23v960q0 14 9 23t23 9h960q14 0 23-9t9-23zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.caretSquareORight = caretSquareORight; +var toggleRight = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1088 896q0 33-27 52l-448 320q-31 23-66 5-35-17-35-57v-640q0-40 35-57 35-18 66 5l448 320q27 19 27 52zM1280 1376v-960q0-14-9-23t-23-9h-960q-14 0-23 9t-9 23v960q0 14 9 23t23 9h960q14 0 23-9t9-23zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.toggleRight = toggleRight; +var eur = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M976 1307l35 159q3 12-3 22.5t-17 14.5l-5 1q-4 2-10.5 3.5t-16 4.5-21.5 5.5-25.5 5-30 5-33.5 4.5-36.5 3-38.5 1q-234 0-409-130.5t-238-351.5h-95q-13 0-22.5-9.5t-9.5-22.5v-113q0-13 9.5-22.5t22.5-9.5h66q-2-57 1-105h-67q-14 0-23-9t-9-23v-114q0-14 9-23t23-9h98q67-210 243.5-338t400.5-128q102 0 194 23 11 3 20 15 6 11 3 24l-43 159q-3 13-14 19.5t-24 2.5l-4-1q-4-1-11.5-2.5l-17.5-3.5t-22.5-3.5-26-3-29-2.5-29.5-1q-126 0-226 64t-150 176h468q16 0 25 12 10 12 7 26l-24 114q-5 26-32 26h-488q-3 37 0 105h459q15 0 25 12 9 12 6 27l-24 112q-2 11-11 18.5t-20 7.5h-387q48 117 149.5 185.5t228.5 68.5q18 0 36-1.5t33.5-3.5 29.5-4.5 24.5-5 18.5-4.5l12-3 5-2q13-5 26 2 12 7 15 21z" + } + }] +}; +exports.eur = eur; +var euro = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M976 1307l35 159q3 12-3 22.5t-17 14.5l-5 1q-4 2-10.5 3.5t-16 4.5-21.5 5.5-25.5 5-30 5-33.5 4.5-36.5 3-38.5 1q-234 0-409-130.5t-238-351.5h-95q-13 0-22.5-9.5t-9.5-22.5v-113q0-13 9.5-22.5t22.5-9.5h66q-2-57 1-105h-67q-14 0-23-9t-9-23v-114q0-14 9-23t23-9h98q67-210 243.5-338t400.5-128q102 0 194 23 11 3 20 15 6 11 3 24l-43 159q-3 13-14 19.5t-24 2.5l-4-1q-4-1-11.5-2.5l-17.5-3.5t-22.5-3.5-26-3-29-2.5-29.5-1q-126 0-226 64t-150 176h468q16 0 25 12 10 12 7 26l-24 114q-5 26-32 26h-488q-3 37 0 105h459q15 0 25 12 9 12 6 27l-24 112q-2 11-11 18.5t-20 7.5h-387q48 117 149.5 185.5t228.5 68.5q18 0 36-1.5t33.5-3.5 29.5-4.5 24.5-5 18.5-4.5l12-3 5-2q13-5 26 2 12 7 15 21z" + } + }] +}; +exports.euro = euro; +var gbp = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1020 1137v367q0 14-9 23t-23 9h-956q-14 0-23-9t-9-23v-150q0-13 9.5-22.5t22.5-9.5h97v-383h-95q-14 0-23-9.5t-9-22.5v-131q0-14 9-23t23-9h95v-223q0-171 123.5-282t314.5-111q185 0 335 125 9 8 10 20.5t-7 22.5l-103 127q-9 11-22 12-13 2-23-7-5-5-26-19t-69-32-93-18q-85 0-137 47t-52 123v215h305q13 0 22.5 9t9.5 23v131q0 13-9.5 22.5t-22.5 9.5h-305v379h414v-181q0-13 9-22.5t23-9.5h162q14 0 23 9.5t9 22.5z" + } + }] +}; +exports.gbp = gbp; +var dollar = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M978 1185q0 153-99.5 263.5t-258.5 136.5v175q0 14-9 23t-23 9h-135q-13 0-22.5-9.5t-9.5-22.5v-175q-66-9-127.5-31t-101.5-44.5-74-48-46.5-37.5-17.5-18q-17-21-2-41l103-135q7-10 23-12 15-2 24 9l2 2q113 99 243 125 37 8 74 8 81 0 142.5-43t61.5-122q0-28-15-53t-33.5-42-58.5-37.5-66-32-80-32.5q-39-16-61.5-25t-61.5-26.5-62.5-31-56.5-35.5-53.5-42.5-43.5-49-35.5-58-21-66.5-8.5-78q0-138 98-242t255-134v-180q0-13 9.5-22.5t22.5-9.5h135q14 0 23 9t9 23v176q57 6 110.5 23t87 33.5 63.5 37.5 39 29 15 14q17 18 5 38l-81 146q-8 15-23 16-14 3-27-7-3-3-14.5-12t-39-26.5-58.5-32-74.5-26-85.5-11.5q-95 0-155 43t-60 111q0 26 8.5 48t29.5 41.5 39.5 33 56 31 60.5 27 70 27.5q53 20 81 31.5t76 35 75.5 42.5 62 50 53 63.5 31.5 76.5 13 94z" + } + }] +}; +exports.dollar = dollar; +var usd = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M978 1185q0 153-99.5 263.5t-258.5 136.5v175q0 14-9 23t-23 9h-135q-13 0-22.5-9.5t-9.5-22.5v-175q-66-9-127.5-31t-101.5-44.5-74-48-46.5-37.5-17.5-18q-17-21-2-41l103-135q7-10 23-12 15-2 24 9l2 2q113 99 243 125 37 8 74 8 81 0 142.5-43t61.5-122q0-28-15-53t-33.5-42-58.5-37.5-66-32-80-32.5q-39-16-61.5-25t-61.5-26.5-62.5-31-56.5-35.5-53.5-42.5-43.5-49-35.5-58-21-66.5-8.5-78q0-138 98-242t255-134v-180q0-13 9.5-22.5t22.5-9.5h135q14 0 23 9t9 23v176q57 6 110.5 23t87 33.5 63.5 37.5 39 29 15 14q17 18 5 38l-81 146q-8 15-23 16-14 3-27-7-3-3-14.5-12t-39-26.5-58.5-32-74.5-26-85.5-11.5q-95 0-155 43t-60 111q0 26 8.5 48t29.5 41.5 39.5 33 56 31 60.5 27 70 27.5q53 20 81 31.5t76 35 75.5 42.5 62 50 53 63.5 31.5 76.5 13 94z" + } + }] +}; +exports.usd = usd; +var inr = { + "viewBox": "0 0 898 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M898 470v102q0 14-9 23t-23 9h-168q-23 144-129 234t-276 110q167 178 459 536 14 16 4 34-8 18-29 18h-195q-16 0-25-12-306-367-498-571-9-9-9-22v-127q0-13 9.5-22.5t22.5-9.5h112q132 0 212.5-43t102.5-125h-427q-14 0-23-9t-9-23v-102q0-14 9-23t23-9h413q-57-113-268-113h-145q-13 0-22.5-9.5t-9.5-22.5v-133q0-14 9-23t23-9h832q14 0 23 9t9 23v102q0 14-9 23t-23 9h-233q47 61 64 144h171q14 0 23 9t9 23z" + } + }] +}; +exports.inr = inr; +var rupee = { + "viewBox": "0 0 898 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M898 470v102q0 14-9 23t-23 9h-168q-23 144-129 234t-276 110q167 178 459 536 14 16 4 34-8 18-29 18h-195q-16 0-25-12-306-367-498-571-9-9-9-22v-127q0-13 9.5-22.5t22.5-9.5h112q132 0 212.5-43t102.5-125h-427q-14 0-23-9t-9-23v-102q0-14 9-23t23-9h413q-57-113-268-113h-145q-13 0-22.5-9.5t-9.5-22.5v-133q0-14 9-23t23-9h832q14 0 23 9t9 23v102q0 14-9 23t-23 9h-233q47 61 64 144h171q14 0 23 9t9 23z" + } + }] +}; +exports.rupee = rupee; +var cny = { + "viewBox": "0 0 1027 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M603 1536h-172q-13 0-22.5-9t-9.5-23v-330h-288q-13 0-22.5-9t-9.5-23v-103q0-13 9.5-22.5t22.5-9.5h288v-85h-288q-13 0-22.5-9t-9.5-23v-104q0-13 9.5-22.5t22.5-9.5h214l-321-578q-8-16 0-32 10-16 28-16h194q19 0 29 18l215 425q19 38 56 125 10-24 30.5-68t27.5-61l191-420q8-19 29-19h191q17 0 27 16 9 14 1 31l-313 579h215q13 0 22.5 9.5t9.5 22.5v104q0 14-9.5 23t-22.5 9h-290v85h290q13 0 22.5 9.5t9.5 22.5v103q0 14-9.5 23t-22.5 9h-290v330q0 13-9.5 22.5t-22.5 9.5z" + } + }] +}; +exports.cny = cny; +var jpy = { + "viewBox": "0 0 1027 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M603 1536h-172q-13 0-22.5-9t-9.5-23v-330h-288q-13 0-22.5-9t-9.5-23v-103q0-13 9.5-22.5t22.5-9.5h288v-85h-288q-13 0-22.5-9t-9.5-23v-104q0-13 9.5-22.5t22.5-9.5h214l-321-578q-8-16 0-32 10-16 28-16h194q19 0 29 18l215 425q19 38 56 125 10-24 30.5-68t27.5-61l191-420q8-19 29-19h191q17 0 27 16 9 14 1 31l-313 579h215q13 0 22.5 9.5t9.5 22.5v104q0 14-9.5 23t-22.5 9h-290v85h290q13 0 22.5 9.5t9.5 22.5v103q0 14-9.5 23t-22.5 9h-290v330q0 13-9.5 22.5t-22.5 9.5z" + } + }] +}; +exports.jpy = jpy; +var rmb = { + "viewBox": "0 0 1027 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M603 1536h-172q-13 0-22.5-9t-9.5-23v-330h-288q-13 0-22.5-9t-9.5-23v-103q0-13 9.5-22.5t22.5-9.5h288v-85h-288q-13 0-22.5-9t-9.5-23v-104q0-13 9.5-22.5t22.5-9.5h214l-321-578q-8-16 0-32 10-16 28-16h194q19 0 29 18l215 425q19 38 56 125 10-24 30.5-68t27.5-61l191-420q8-19 29-19h191q17 0 27 16 9 14 1 31l-313 579h215q13 0 22.5 9.5t9.5 22.5v104q0 14-9.5 23t-22.5 9h-290v85h290q13 0 22.5 9.5t9.5 22.5v103q0 14-9.5 23t-22.5 9h-290v330q0 13-9.5 22.5t-22.5 9.5z" + } + }] +}; +exports.rmb = rmb; +var yen = { + "viewBox": "0 0 1027 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M603 1536h-172q-13 0-22.5-9t-9.5-23v-330h-288q-13 0-22.5-9t-9.5-23v-103q0-13 9.5-22.5t22.5-9.5h288v-85h-288q-13 0-22.5-9t-9.5-23v-104q0-13 9.5-22.5t22.5-9.5h214l-321-578q-8-16 0-32 10-16 28-16h194q19 0 29 18l215 425q19 38 56 125 10-24 30.5-68t27.5-61l191-420q8-19 29-19h191q17 0 27 16 9 14 1 31l-313 579h215q13 0 22.5 9.5t9.5 22.5v104q0 14-9.5 23t-22.5 9h-290v85h290q13 0 22.5 9.5t9.5 22.5v103q0 14-9.5 23t-22.5 9h-290v330q0 13-9.5 22.5t-22.5 9.5z" + } + }] +}; +exports.yen = yen; +var rouble = { + "viewBox": "0 0 1280 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1043 565q0-100-65-162t-171-62h-320v448h320q106 0 171-62t65-162zM1280 565q0 193-126.5 315t-326.5 122h-340v118h505q14 0 23 9t9 23v128q0 14-9 23t-23 9h-505v192q0 14-9.5 23t-22.5 9h-167q-14 0-23-9t-9-23v-192h-224q-14 0-23-9t-9-23v-128q0-14 9-23t23-9h224v-118h-224q-14 0-23-9t-9-23v-149q0-13 9-22.5t23-9.5h224v-629q0-14 9-23t23-9h539q200 0 326.5 122t126.5 315z" + } + }] +}; +exports.rouble = rouble; +var rub = { + "viewBox": "0 0 1280 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1043 565q0-100-65-162t-171-62h-320v448h320q106 0 171-62t65-162zM1280 565q0 193-126.5 315t-326.5 122h-340v118h505q14 0 23 9t9 23v128q0 14-9 23t-23 9h-505v192q0 14-9.5 23t-22.5 9h-167q-14 0-23-9t-9-23v-192h-224q-14 0-23-9t-9-23v-128q0-14 9-23t23-9h224v-118h-224q-14 0-23-9t-9-23v-149q0-13 9-22.5t23-9.5h224v-629q0-14 9-23t23-9h539q200 0 326.5 122t126.5 315z" + } + }] +}; +exports.rub = rub; +var ruble = { + "viewBox": "0 0 1280 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1043 565q0-100-65-162t-171-62h-320v448h320q106 0 171-62t65-162zM1280 565q0 193-126.5 315t-326.5 122h-340v118h505q14 0 23 9t9 23v128q0 14-9 23t-23 9h-505v192q0 14-9.5 23t-22.5 9h-167q-14 0-23-9t-9-23v-192h-224q-14 0-23-9t-9-23v-128q0-14 9-23t23-9h224v-118h-224q-14 0-23-9t-9-23v-149q0-13 9-22.5t23-9.5h224v-629q0-14 9-23t23-9h539q200 0 326.5 122t126.5 315z" + } + }] +}; +exports.ruble = ruble; +var krw = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M514 1195l81-299h-159l75 300q1 1 1 3t1 3q0-1 0.5-3.5t0.5-3.5zM630 768l35-128h-292l32 128h225zM822 768h139l-35-128h-70zM1271 1196l78-300h-162l81 299q0 1 0.5 3.5t1.5 3.5q0-1 0.5-3t0.5-3zM1382 768l33-128h-297l34 128h230zM1792 800v64q0 14-9 23t-23 9h-213l-164 616q-7 24-31 24h-159q-24 0-31-24l-166-616h-209l-167 616q-7 24-31 24h-159q-11 0-19.5-7t-10.5-17l-160-616h-208q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h175l-33-128h-142q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h109l-89-344q-5-15 5-28 10-12 26-12h137q26 0 31 24l90 360h359l97-360q7-24 31-24h126q24 0 31 24l98 360h365l93-360q5-24 31-24h137q16 0 26 12 10 13 5 28l-91 344h111q14 0 23 9t9 23v64q0 14-9 23t-23 9h-145l-34 128h179q14 0 23 9t9 23z" + } + }] +}; +exports.krw = krw; +var won = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M514 1195l81-299h-159l75 300q1 1 1 3t1 3q0-1 0.5-3.5t0.5-3.5zM630 768l35-128h-292l32 128h225zM822 768h139l-35-128h-70zM1271 1196l78-300h-162l81 299q0 1 0.5 3.5t1.5 3.5q0-1 0.5-3t0.5-3zM1382 768l33-128h-297l34 128h230zM1792 800v64q0 14-9 23t-23 9h-213l-164 616q-7 24-31 24h-159q-24 0-31-24l-166-616h-209l-167 616q-7 24-31 24h-159q-11 0-19.5-7t-10.5-17l-160-616h-208q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h175l-33-128h-142q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h109l-89-344q-5-15 5-28 10-12 26-12h137q26 0 31 24l90 360h359l97-360q7-24 31-24h126q24 0 31 24l98 360h365l93-360q5-24 31-24h137q16 0 26 12 10 13 5 28l-91 344h111q14 0 23 9t9 23v64q0 14-9 23t-23 9h-145l-34 128h179q14 0 23 9t9 23z" + } + }] +}; +exports.won = won; +var bitcoin = { + "viewBox": "0 0 1280 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1167 640q18 182-131 258 117 28 175 103t45 214q-7 71-32.5 125t-64.5 89-97 58.5-121.5 34.5-145.5 15v255h-154v-251q-80 0-122-1v252h-154v-255q-18 0-54-0.5t-55-0.5h-200l31-183h111q50 0 58-51v-402h16q-6-1-16-1v-287q-13-68-89-68h-111v-164l212 1q64 0 97-1v-252h154v247q82-2 122-2v-245h154v252q79 7 140 22.5t113 45 82.5 78 36.5 114.5zM952 1185q0-36-15-64t-37-46-57.5-30.5-65.5-18.5-74-9-69-3-64.5 1-47.5 1v338q8 0 37 0.5t48 0.5 53-1.5 58.5-4 57-8.5 55.5-14 47.5-21 39.5-30 24.5-40 9.5-51zM881 709q0-33-12.5-58.5t-30.5-42-48-28-55-16.5-61.5-8-58-2.5-54 1-39.5 0.5v307q5 0 34.5 0.5t46.5 0 50-2 55-5.5 51.5-11 48.5-18.5 37-27 27-38.5 9-51z" + } + }] +}; +exports.bitcoin = bitcoin; +var btc = { + "viewBox": "0 0 1280 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1167 640q18 182-131 258 117 28 175 103t45 214q-7 71-32.5 125t-64.5 89-97 58.5-121.5 34.5-145.5 15v255h-154v-251q-80 0-122-1v252h-154v-255q-18 0-54-0.5t-55-0.5h-200l31-183h111q50 0 58-51v-402h16q-6-1-16-1v-287q-13-68-89-68h-111v-164l212 1q64 0 97-1v-252h154v247q82-2 122-2v-245h154v252q79 7 140 22.5t113 45 82.5 78 36.5 114.5zM952 1185q0-36-15-64t-37-46-57.5-30.5-65.5-18.5-74-9-69-3-64.5 1-47.5 1v338q8 0 37 0.5t48 0.5 53-1.5 58.5-4 57-8.5 55.5-14 47.5-21 39.5-30 24.5-40 9.5-51zM881 709q0-33-12.5-58.5t-30.5-42-48-28-55-16.5-61.5-8-58-2.5-54 1-39.5 0.5v307q5 0 34.5 0.5t46.5 0 50-2 55-5.5 51.5-11 48.5-18.5 37-27 27-38.5 9-51z" + } + }] +}; +exports.btc = btc; +var file = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 512v-472q22 14 36 28l408 408q14 14 28 36h-472zM896 544q0 40 28 68t68 28h544v1056q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h800v544z" + } + }] +}; +exports.file = file; +var fileText = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1468 476q14 14 28 36h-472v-472q22 14 36 28zM992 640h544v1056q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h800v544q0 40 28 68t68 28zM1152 1376v-64q0-14-9-23t-23-9h-704q-14 0-23 9t-9 23v64q0 14 9 23t23 9h704q14 0 23-9t9-23zM1152 1120v-64q0-14-9-23t-23-9h-704q-14 0-23 9t-9 23v64q0 14 9 23t23 9h704q14 0 23-9t9-23zM1152 864v-64q0-14-9-23t-23-9h-704q-14 0-23 9t-9 23v64q0 14 9 23t23 9h704q14 0 23-9t9-23z" + } + }] +}; +exports.fileText = fileText; +var sortAlphaAsc = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1191 408h177l-72-218-12-47q-2-16-2-20h-4l-3 20q0 1-3.5 18t-7.5 29zM736 1440q0 12-10 24l-319 319q-10 9-23 9-12 0-23-9l-320-320q-15-16-7-35 8-20 30-20h192v-1376q0-14 9-23t23-9h192q14 0 23 9t9 23v1376h192q14 0 23 9t9 23zM1572 1559v233h-584v-90l369-529q12-18 21-27l11-9v-3q-2 0-6.5 0.5t-7.5 0.5q-12 3-30 3h-232v115h-120v-229h567v89l-369 530q-6 8-21 26l-11 11v2l14-2q9-2 30-2h248v-119h121zM1661 662v106h-288v-106h75l-47-144h-243l-47 144h75v106h-287v-106h70l230-662h162l230 662h70z" + } + }] +}; +exports.sortAlphaAsc = sortAlphaAsc; +var sortAlphaDesc = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1191 1432h177l-72-218-12-47q-2-16-2-20h-4l-3 20q0 1-3.5 18t-7.5 29zM736 1440q0 12-10 24l-319 319q-10 9-23 9-12 0-23-9l-320-320q-15-16-7-35 8-20 30-20h192v-1376q0-14 9-23t23-9h192q14 0 23 9t9 23v1376h192q14 0 23 9t9 23zM1661 1686v106h-288v-106h75l-47-144h-243l-47 144h75v106h-287v-106h70l230-662h162l230 662h70zM1572 535v233h-584v-90l369-529q12-18 21-27l11-9v-3q-2 0-6.5 0.5t-7.5 0.5q-12 3-30 3h-232v115h-120v-229h567v89l-369 530q-6 8-21 26l-11 10v3l14-3q9-1 30-1h248v-119h121z" + } + }] +}; +exports.sortAlphaDesc = sortAlphaDesc; +var sortAmountAsc = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M736 1440q0 12-10 24l-319 319q-10 9-23 9-12 0-23-9l-320-320q-15-16-7-35 8-20 30-20h192v-1376q0-14 9-23t23-9h192q14 0 23 9t9 23v1376h192q14 0 23 9t9 23zM1792 1568v192q0 14-9 23t-23 9h-832q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h832q14 0 23 9t9 23zM1600 1056v192q0 14-9 23t-23 9h-640q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h640q14 0 23 9t9 23zM1408 544v192q0 14-9 23t-23 9h-448q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h448q14 0 23 9t9 23zM1216 32v192q0 14-9 23t-23 9h-256q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h256q14 0 23 9t9 23z" + } + }] +}; +exports.sortAmountAsc = sortAmountAsc; +var sortAmountDesc = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1216 1568v192q0 14-9 23t-23 9h-256q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h256q14 0 23 9t9 23zM736 1440q0 12-10 24l-319 319q-10 9-23 9-12 0-23-9l-320-320q-15-16-7-35 8-20 30-20h192v-1376q0-14 9-23t23-9h192q14 0 23 9t9 23v1376h192q14 0 23 9t9 23zM1408 1056v192q0 14-9 23t-23 9h-448q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h448q14 0 23 9t9 23zM1600 544v192q0 14-9 23t-23 9h-640q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h640q14 0 23 9t9 23zM1792 32v192q0 14-9 23t-23 9h-832q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h832q14 0 23 9t9 23z" + } + }] +}; +exports.sortAmountDesc = sortAmountDesc; +var sortNumericAsc = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1346 1313q0-63-44-116t-103-53q-52 0-83 37t-31 94 36.5 95 104.5 38q50 0 85-27t35-68zM736 1440q0 12-10 24l-319 319q-10 9-23 9-12 0-23-9l-320-320q-15-16-7-35 8-20 30-20h192v-1376q0-14 9-23t23-9h192q14 0 23 9t9 23v1376h192q14 0 23 9t9 23zM1486 1371q0 62-13 121.5t-41 114-68 95.5-98.5 65.5-127.5 24.5q-62 0-108-16-24-8-42-15l39-113q15 7 31 11 37 13 75 13 84 0 134.5-58.5t66.5-145.5h-2q-21 23-61.5 37t-84.5 14q-106 0-173-71.5t-67-172.5q0-105 72-178t181-73q123 0 205 94.5t82 252.5zM1456 654v114h-469v-114h167v-432q0-7 0.5-19t0.5-17v-16h-2l-7 12q-8 13-26 31l-62 58-82-86 192-185h123v654h165z" + } + }] +}; +exports.sortNumericAsc = sortNumericAsc; +var sortNumericDesc = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1346 289q0-63-44-116t-103-53q-52 0-83 37t-31 94 36.5 95 104.5 38q50 0 85-27t35-68zM736 1440q0 12-10 24l-319 319q-10 9-23 9-12 0-23-9l-320-320q-15-16-7-35 8-20 30-20h192v-1376q0-14 9-23t23-9h192q14 0 23 9t9 23v1376h192q14 0 23 9t9 23zM1456 1678v114h-469v-114h167v-432q0-7 0.5-19t0.5-17v-16h-2l-7 12q-8 13-26 31l-62 58-82-86 192-185h123v654h165zM1486 347q0 62-13 121.5t-41 114-68 95.5-98.5 65.5-127.5 24.5q-62 0-108-16-24-8-42-15l39-113q15 7 31 11 37 13 75 13 84 0 134.5-58.5t66.5-145.5h-2q-21 23-61.5 37t-84.5 14q-106 0-173-71.5t-67-172.5q0-105 72-178t181-73q123 0 205 94.5t82 252.5z" + } + }] +}; +exports.sortNumericDesc = sortNumericDesc; +var thumbsUp = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M256 1344q0-26-19-45t-45-19q-27 0-45.5 19t-18.5 45q0 27 18.5 45.5t45.5 18.5q26 0 45-18.5t19-45.5zM416 832v640q0 26-19 45t-45 19h-288q-26 0-45-19t-19-45v-640q0-26 19-45t45-19h288q26 0 45 19t19 45zM1600 832q0 86-55 149 15 44 15 76 3 76-43 137 17 56 0 117-15 57-54 94 9 112-49 181-64 76-197 78h-36-76-17q-66 0-144-15.5t-121.5-29-120.5-39.5q-123-43-158-44-26-1-45-19.5t-19-44.5v-641q0-25 18-43.5t43-20.5q24-2 76-59t101-121q68-87 101-120 18-18 31-48t17.5-48.5 13.5-60.5q7-39 12.5-61t19.5-52 34-50q19-19 45-19 46 0 82.5 10.5t60 26 40 40.5 24 45 12 50 5 45 0.5 39q0 38-9.5 76t-19 60-27.5 56q-3 6-10 18t-11 22-8 24h277q78 0 135 57t57 135z" + } + }] +}; +exports.thumbsUp = thumbsUp; +var thumbsDown = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M256 576q0 26-19 45t-45 19q-27 0-45.5-19t-18.5-45q0-27 18.5-45.5t45.5-18.5q26 0 45 18.5t19 45.5zM416 1088v-640q0-26-19-45t-45-19h-288q-26 0-45 19t-19 45v640q0 26 19 45t45 19h288q26 0 45-19t19-45zM1545 939q55 61 55 149-1 78-57.5 135t-134.5 57h-277q4 14 8 24t11 22 10 18q18 37 27 57t19 58.5 10 76.5q0 24-0.5 39t-5 45-12 50-24 45-40 40.5-60 26-82.5 10.5q-26 0-45-19-20-20-34-50t-19.5-52-12.5-61q-9-42-13.5-60.5t-17.5-48.5-31-48q-33-33-101-120-49-64-101-121t-76-59q-25-2-43-20.5t-18-43.5v-641q0-26 19-44.5t45-19.5q35-1 158-44 77-26 120.5-39.5t121.5-29 144-15.5h17 76 36q133 2 197 78 58 69 49 181 39 37 54 94 17 61 0 117 46 61 43 137 0 32-15 76z" + } + }] +}; +exports.thumbsDown = thumbsDown; +var youtubeSquare = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M919 1303v-157q0-50-29-50-17 0-33 16v224q16 16 33 16 29 0 29-49zM1103 1181h66v-34q0-51-33-51t-33 51v34zM532 915v70h-80v423h-74v-423h-78v-70h232zM733 1041v367h-67v-40q-39 45-76 45-33 0-42-28-6-17-6-54v-290h66v270q0 24 1 26 1 15 15 15 20 0 42-31v-280h67zM985 1152v146q0 52-7 73-12 42-53 42-35 0-68-41v36h-67v-493h67v161q32-40 68-40 41 0 53 42 7 21 7 74zM1236 1281v9q0 29-2 43-3 22-15 40-27 40-80 40-52 0-81-38-21-27-21-86v-129q0-59 20-86 29-38 80-38t78 38q21 29 21 86v76h-133v65q0 51 34 51 24 0 30-26 0-1 0.5-7t0.5-16.5v-21.5h68zM785 457v156q0 51-32 51t-32-51v-156q0-52 32-52t32 52zM1318 1170q0-177-19-260-10-44-43-73.5t-76-34.5q-136-15-412-15-275 0-411 15-44 5-76.5 34.5t-42.5 73.5q-20 87-20 260 0 176 20 260 10 43 42.5 73t75.5 35q137 15 412 15t412-15q43-5 75.5-35t42.5-73q20-84 20-260zM563 519l90-296h-75l-51 195-53-195h-78q7 23 23 69l24 69q35 103 46 158v201h74v-201zM852 600v-130q0-58-21-87-29-38-78-38-51 0-78 38-21 29-21 87v130q0 58 21 87 27 38 78 38 49 0 78-38 21-27 21-87zM1033 720h67v-370h-67v283q-22 31-42 31-15 0-16-16-1-2-1-26v-272h-67v293q0 37 6 55 11 27 43 27 36 0 77-45v40zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.youtubeSquare = youtubeSquare; +var youtube = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M971 1244v211q0 67-39 67-23 0-45-22v-301q22-22 45-22 39 0 39 67zM1309 1245v46h-90v-46q0-68 45-68t45 68zM343 1027h107v-94h-312v94h105v569h100v-569zM631 1596h89v-494h-89v378q-30 42-57 42-18 0-21-21-1-3-1-35v-364h-89v391q0 49 8 73 12 37 58 37 48 0 102-61v54zM1060 1448v-197q0-73-9-99-17-56-71-56-50 0-93 54v-217h-89v663h89v-48q45 55 93 55 54 0 71-55 9-27 9-100zM1398 1438v-13h-91q0 51-2 61-7 36-40 36-46 0-46-69v-87h179v-103q0-79-27-116-39-51-106-51-68 0-107 51-28 37-28 116v173q0 79 29 116 39 51 108 51 72 0 108-53 18-27 21-54 2-9 2-58zM790 525v-210q0-69-43-69t-43 69v210q0 70 43 70t43-70zM1509 1276q0 234-26 350-14 59-58 99t-102 46q-184 21-555 21t-555-21q-58-6-102.5-46t-57.5-99q-26-112-26-350 0-234 26-350 14-59 58-99t103-47q183-20 554-20t555 20q58 7 102.5 47t57.5 99q26 112 26 350zM511 0h102l-121 399v271h-100v-271q-14-74-61-212-37-103-65-187h106l71 263zM881 333v175q0 81-28 118-38 51-106 51-67 0-105-51-28-38-28-118v-175q0-80 28-117 38-51 105-51 68 0 106 51 28 37 28 117zM1216 171v499h-91v-55q-53 62-103 62-46 0-59-37-8-24-8-75v-394h91v367q0 33 1 35 3 22 21 22 27 0 57-43v-381h91z" + } + }] +}; +exports.youtube = youtube; +var xing = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M597 667q-10 18-257 456-27 46-65 46h-239q-21 0-31-17t0-36l253-448q1 0 0-1l-161-279q-12-22-1-37 9-15 32-15h239q40 0 66 45zM1403 25q11 16 0 37l-528 934v1l336 615q11 20 1 37-10 15-32 15h-239q-42 0-66-45l-339-622q18-32 531-942 25-45 64-45h241q22 0 31 15z" + } + }] +}; +exports.xing = xing; +var xingSquare = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M685 765q0-1-126-222-21-34-52-34h-184q-18 0-26 11-7 12 1 29l125 216v1l-196 346q-9 14 0 28 8 13 24 13h185q31 0 50-36zM1309 268q-7-12-24-12h-187q-30 0-49 35l-411 729q1 2 262 481 20 35 52 35h184q18 0 25-12 8-13-1-28l-260-476v-1l409-723q8-16 0-28zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.xingSquare = xingSquare; +var youtubePlay = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M711 1128l484-250-484-253v503zM896 266q168 0 324.5 4.5t229.5 9.5l73 4q1 0 17 1.5t23 3 23.5 4.5 28.5 8 28 13 31 19.5 29 26.5q6 6 15.5 18.5t29 58.5 26.5 101q8 64 12.5 136.5t5.5 113.5v40 136q1 145-18 290-7 55-25 99.5t-32 61.5l-14 17q-14 15-29 26.5t-31 19-28 12.5-28.5 8-24 4.5-23 3-16.5 1.5q-251 19-627 19-207-2-359.5-6.5t-200.5-7.5l-49-4-36-4q-36-5-54.5-10t-51-21-56.5-41q-6-6-15.5-18.5t-29-58.5-26.5-101q-8-64-12.5-136.5t-5.5-113.5v-40-136q-1-145 18-290 7-55 25-99.5t32-61.5l14-17q14-15 29-26.5t31-19.5 28-13 28.5-8 23.5-4.5 23-3 17-1.5q251-18 627-18z" + } + }] +}; +exports.youtubePlay = youtubePlay; +var dropbox = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M402 707l494 305-342 285-490-319zM1388 1262v108l-490 293v1l-1-1-1 1v-1l-489-293v-108l147 96 342-284v-2l1 1 1-1v2l343 284zM554 118l342 285-494 304-338-270zM1390 707l338 271-489 319-343-285zM1239 118l489 319-338 270-494-304z" + } + }] +}; +exports.dropbox = dropbox; +var stackOverflow = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1289 1632h-1118v-480h-160v640h1438v-640h-160v480zM347 1108l33-157 783 165-33 156zM450 734l67-146 725 339-67 145zM651 378l102-123 614 513-102 123zM1048 0l477 641-128 96-477-641zM330 1471v-159h800v159h-800z" + } + }] +}; +exports.stackOverflow = stackOverflow; +var instagram = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 896q0-106-75-181t-181-75-181 75-75 181 75 181 181 75 181-75 75-181zM1162 896q0 164-115 279t-279 115-279-115-115-279 115-279 279-115 279 115 115 279zM1270 486q0 38-27 65t-65 27-65-27-27-65 27-65 65-27 65 27 27 65zM768 266q-7 0-76.5-0.5t-105.5 0-96.5 3-103 10-71.5 18.5q-50 20-88 58t-58 88q-11 29-18.5 71.5t-10 103-3 96.5 0 105.5 0.5 76.5-0.5 76.5 0 105.5 3 96.5 10 103 18.5 71.5q20 50 58 88t88 58q29 11 71.5 18.5t103 10 96.5 3 105.5 0 76.5-0.5 76.5 0.5 105.5 0 96.5-3 103-10 71.5-18.5q50-20 88-58t58-88q11-29 18.5-71.5t10-103 3-96.5 0-105.5-0.5-76.5 0.5-76.5 0-105.5-3-96.5-10-103-18.5-71.5q-20-50-58-88t-88-58q-29-11-71.5-18.5t-103-10-96.5-3-105.5 0-76.5 0.5zM1536 896q0 229-5 317-10 208-124 322t-322 124q-88 5-317 5t-317-5q-208-10-322-124t-124-322q-5-88-5-317t5-317q10-208 124-322t322-124q88-5 317-5t317 5q208 10 322 124t124 322q5 88 5 317z" + } + }] +}; +exports.instagram = instagram; +var flickr = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1248 128q119 0 203.5 84.5t84.5 203.5v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960zM698 896q0-88-62-150t-150-62-150 62-62 150 62 150 150 62 150-62 62-150zM1262 896q0-88-62-150t-150-62-150 62-62 150 62 150 150 62 150-62 62-150z" + } + }] +}; +exports.flickr = flickr; +var adn = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M768 622l201 306h-402zM1133 1152h94l-459-691-459 691h94l104-160h522zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.adn = adn; +var bitbucket = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M815 859q8 63-50.5 101t-111.5 6q-39-17-53.5-58t-0.5-82 52-58q36-18 72.5-12t64 35.5 27.5 67.5zM926 838q-14-107-113-164t-197-13q-63 28-100.5 88.5t-34.5 129.5q4 91 77.5 155t165.5 56q91-8 152-84t50-168zM1165 296q-20-27-56-44.5t-58-22-71-12.5q-291-47-566 2-43 7-66 12t-55 22-50 43q30 28 76 45.5t73.5 22 87.5 11.5q228 29 448 1 63-8 89.5-12t72.5-21.5 75-46.5zM1222 1331q-8 26-15.5 76.5t-14 84-28.5 70-58 56.5q-86 48-189.5 71.5t-202 22-201.5-18.5q-46-8-81.5-18t-76.5-27-73-43.5-52-61.5q-25-96-57-292l6-16 18-9q223 148 506.5 148t507.5-148q21 6 24 23t-5 45-8 37zM1403 370q-26 167-111 655-5 30-27 56t-43.5 40-54.5 31q-252 126-610 88-248-27-394-139-15-12-25.5-26.5t-17-35-9-34-6-39.5-5.5-35q-9-50-26.5-150t-28-161.5-23.5-147.5-22-158q3-26 17.5-48.5t31.5-37.5 45-30 46-22.5 48-18.5q125-46 313-64 379-37 676 50 155 46 215 122 16 20 16.5 51t-5.5 54z" + } + }] +}; +exports.bitbucket = bitbucket; +var bitbucketSquare = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M848 870q0-43-41-66t-77-1q-43 20-42.5 72.5t43.5 70.5q39 23 81-4t36-72zM928 854q8 66-36 121t-110 61-119-40-56-113q-2-49 25.5-93t72.5-64q70-31 141.5 10t81.5 118zM1100 463q-20 21-53.5 34t-53 16-63.5 8q-155 20-324 0-44-6-63-9.5t-52.5-16-54.5-32.5q13-19 36-31t40-15.5 47-8.5q198-35 408-1 33 5 51 8.5t43 16 39 31.5zM1142 1209q0-7 5.5-26.5t3-32-17.5-16.5q-161 106-365 106t-366-106l-12 6-5 12q26 154 41 210 47 81 204 108 249 46 428-53 34-19 49-51.5t22.5-85.5 12.5-71zM1272 516q9-53-8-75-43-55-155-88-216-63-487-36-132 12-226 46-38 15-59.5 25t-47 34-29.5 54q8 68 19 138t29 171 24 137q1 5 5 31t7 36 12 27 22 28q105 80 284 100 259 28 440-63 24-13 39.5-23t31-29 19.5-40q48-267 80-473zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.bitbucketSquare = bitbucketSquare; +var tumblr = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M944 1329l80 237q-23 35-111 66t-177 32q-104 2-190.5-26t-142.5-74-95-106-55.5-120-16.5-118v-544h-168v-215q72-26 129-69.5t91-90 58-102 34-99 15-88.5q1-5 4.5-8.5t7.5-3.5h244v424h333v252h-334v518q0 30 6.5 56t22.5 52.5 49.5 41.5 81.5 14q78-2 134-29z" + } + }] +}; +exports.tumblr = tumblr; +var tumblrSquare = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1136 1461l-62-183q-44 22-103 22-36 1-62-10.5t-38.5-31.5-17.5-40.5-5-43.5v-398h257v-194h-256v-326h-188q-8 0-9 10-5 44-17.5 87t-39 95-77 95-118.5 68v165h130v418q0 57 21.5 115t65 111 121 85.5 176.5 30.5q69-1 136.5-25t85.5-50zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.tumblrSquare = tumblrSquare; +var longArrowDown = { + "viewBox": "0 0 768 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M765 1299q8 19-5 35l-350 384q-10 10-23 10-14 0-24-10l-355-384q-13-16-5-35 9-19 29-19h224v-1248q0-14 9-23t23-9h192q14 0 23 9t9 23v1248h224q21 0 29 19z" + } + }] +}; +exports.longArrowDown = longArrowDown; +var longArrowUp = { + "viewBox": "0 0 768 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M765 493q-9 19-29 19h-224v1248q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-1248h-224q-21 0-29-19t5-35l350-384q10-10 23-10 14 0 24 10l355 384q13 16 5 35z" + } + }] +}; +exports.longArrowUp = longArrowUp; +var longArrowLeft = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1792 800v192q0 14-9 23t-23 9h-1248v224q0 21-19 29t-35-5l-384-350q-10-10-10-23 0-14 10-24l384-354q16-14 35-6 19 9 19 29v224h1248q14 0 23 9t9 23z" + } + }] +}; +exports.longArrowLeft = longArrowLeft; +var longArrowRight = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1728 893q0 14-10 24l-384 354q-16 14-35 6-19-9-19-29v-224h-1248q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h1248v-224q0-21 19-29t35 5l384 350q10 10 10 23z" + } + }] +}; +exports.longArrowRight = longArrowRight; +var apple = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1393 1215q-39 125-123 250-129 196-257 196-49 0-140-32-86-32-151-32-61 0-142 33-81 34-132 34-152 0-301-259-147-261-147-503 0-228 113-374 113-144 284-144 72 0 177 30 104 30 138 30 45 0 143-34 102-34 173-34 119 0 213 65 52 36 104 100-79 67-114 118-65 94-65 207 0 124 69 223t158 126zM1017 42q0 61-29 136-30 75-93 138-54 54-108 72-37 11-104 17 3-149 78-257 74-107 250-148 1 3 2.5 11t2.5 11q0 4 0.5 10t0.5 10z" + } + }] +}; +exports.apple = apple; +var windows = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M682 1006v651l-682-94v-557h682zM682 263v659h-682v-565zM1664 1006v786l-907-125v-661h907zM1664 128v794h-907v-669z" + } + }] +}; +exports.windows = windows; +var android = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M493 483q16 0 27.5-11.5t11.5-27.5-11.5-27.5-27.5-11.5-27 11.5-11 27.5 11 27.5 27 11.5zM915 483q16 0 27-11.5t11-27.5-11-27.5-27-11.5-27.5 11.5-11.5 27.5 11.5 27.5 27.5 11.5zM103 667q42 0 72 30t30 72v430q0 43-29.5 73t-72.5 30-73-30-30-73v-430q0-42 30-72t73-30zM1163 686v666q0 46-32 78t-77 32h-75v227q0 43-30 73t-73 30-73-30-30-73v-227h-138v227q0 43-30 73t-73 30q-42 0-72-30t-30-73l-1-227h-74q-46 0-78-32t-32-78v-666h918zM931 281q107 55 171 153.5t64 215.5h-925q0-117 64-215.5t172-153.5l-71-131q-7-13 5-20 13-6 20 6l72 132q95-42 201-42t201 42l72-132q7-12 20-6 12 7 5 20zM1408 769v430q0 43-30 73t-73 30q-42 0-72-30t-30-73v-430q0-43 30-72.5t72-29.5q43 0 73 29.5t30 72.5z" + } + }] +}; +exports.android = android; +var linux = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M663 411q-11 1-15.5 10.5t-8.5 9.5q-5 1-5-5 0-12 19-15h10zM750 425q-4 1-11.5-6.5t-17.5-4.5q24-11 32 2 3 6-3 9zM399 852q-4-1-6 3t-4.5 12.5-5.5 13.5-10 13q-10 11-1 12 4 1 12.5-7t12.5-18q1-3 2-7t2-6 1.5-4.5 0.5-4v-3t-1-2.5-3-2zM1254 1211q0-18-55-42 4-15 7.5-27.5t5-26 3-21.5 0.5-22.5-1-19.5-3.5-22-4-20.5-5-25-5.5-26.5q-10-48-47-103t-72-75q24 20 57 83 87 162 54 278-11 40-50 42-31 4-38.5-18.5t-8-83.5-11.5-107q-9-39-19.5-69t-19.5-45.5-15.5-24.5-13-15-7.5-7q-14-62-31-103t-29.5-56-23.5-33-15-40q-4-21 6-53.5t4.5-49.5-44.5-25q-15-3-44.5-18t-35.5-16q-8-1-11-26t8-51 36-27q37-3 51 30t4 58q-11 19-2 26.5t30 0.5q13-4 13-36v-37q-5-30-13.5-50t-21-30.5-23.5-15-27-7.5q-107 8-89 134 0 15-1 15-9-9-29.5-10.5t-33 0.5-15.5-5q1-57-16-90t-45-34q-27-1-41.5 27.5t-16.5 59.5q-1 15 3.5 37t13 37.5 15.5 13.5q10-3 16-14 4-9-7-8-7 0-15.5-14.5t-9.5-33.5q-1-22 9-37t34-14q17 0 27 21t9.5 39-1.5 22q-22 15-31 29-8 12-27.5 23.5t-20.5 12.5q-13 14-15.5 27t7.5 18q14 8 25 19.5t16 19 18.5 13 35.5 6.5q47 2 102-15 2-1 23-7t34.5-10.5 29.5-13 21-17.5q9-14 20-8 5 3 6.5 8.5t-3 12-16.5 9.5q-20 6-56.5 21.5t-45.5 19.5q-44 19-70 23-25 5-79-2-10-2-9 2t17 19q25 23 67 22 17-1 36-7t36-14 33.5-17.5 30-17 24.5-12 17.5-2.5 8.5 11q0 2-1 4.5t-4 5-6 4.5-8.5 5-9 4.5-10 5-9.5 4.5q-28 14-67.5 44t-66.5 43-49 1q-21-11-63-73-22-31-25-22-1 3-1 10 0 25-15 56.5t-29.5 55.5-21 58 11.5 63q-23 6-62.5 90t-47.5 141q-2 18-1.5 69t-5.5 59q-8 24-29 3-32-31-36-94-2-28 4-56 4-19-1-18-2 1-4 5-36 65 10 166 5 12 25 28t24 20q20 23 104 90.5t93 76.5q16 15 17.5 38t-14 43-45.5 23q8 15 29 44.5t28 54 7 70.5q46-24 7-92-4-8-10.5-16t-9.5-12-2-6q3-5 13-9.5t20 2.5q46 52 166 36 133-15 177-87 23-38 34-30 12 6 10 52-1 25-23 92-9 23-6 37.5t24 15.5q3-19 14.5-77t13.5-90q2-21-6.5-73.5t-7.5-97 23-70.5q15-18 51-18 1-37 34.5-53t72.5-10.5 60 22.5zM626 384q3-17-2.5-30t-11.5-15q-9-2-9 7 2 5 5 6 10 0 7 15-3 20 8 20 3 0 3-3zM1045 581q-2-8-6.5-11.5t-13-5-14.5-5.5q-5-3-9.5-8t-7-8-5.5-6.5-4-4-4 1.5q-14 16 7 43.5t39 31.5q9 1 14.5-8t3.5-20zM867 368q0-11-5-19.5t-11-12.5-9-3q-6 0-8 2t0 4 5 3q14 4 18 31 0 3 8-2 2-2 2-3zM921 135q0-2-2.5-5t-9-7-9.5-6q-15-15-24-15-9 1-11.5 7.5t-1 13-0.5 12.5q-1 4-6 10.5t-6 9 3 8.5q4 3 8 0t11-9 15-9q1-1 9-1t15-2 9-7zM1486 1476q20 12 31 24.5t12 24-2.5 22.5-15.5 22-23.5 19.5-30 18.5-31.5 16.5-32 15.5-27 13q-38 19-85.5 56t-75.5 64q-17 16-68 19.5t-89-14.5q-18-9-29.5-23.5t-16.5-25.5-22-19.5-47-9.5q-44-1-130-1-19 0-57 1.5t-58 2.5q-44 1-79.5 15t-53.5 30-43.5 28.5-53.5 11.5q-29-1-111-31t-146-43q-19-4-51-9.5t-50-9-39.5-9.5-33.5-14.5-17-19.5q-10-23 7-66.5t18-54.5q1-16-4-40t-10-42.5-4.5-36.5 10.5-27q14-12 57-14t60-12q30-18 42-35t12-51q21 73-32 106-32 20-83 15-34-3-43 10-13 15 5 57 2 6 8 18t8.5 18 4.5 17 1 22q0 15-17 49t-14 48q3 17 37 26 20 6 84.5 18.5t99.5 20.5q24 6 74 22t82.5 23 55.5 4q43-6 64.5-28t23-48-7.5-58.5-19-52-20-36.5q-121-190-169-242-68-74-113-40-11 9-15-15-3-16-2-38 1-29 10-52t24-47 22-42q8-21 26.5-72t29.5-78 30-61 39-54q110-143 124-195-12-112-16-310-2-90 24-151.5t106-104.5q39-21 104-21 53-1 106 13.5t89 41.5q57 42 91.5 121.5t29.5 147.5q-5 95 30 214 34 113 133 218 55 59 99.5 163t59.5 191q8 49 5 84.5t-12 55.5-20 22q-10 2-23.5 19t-27 35.5-40.5 33.5-61 14q-18-1-31.5-5t-22.5-13.5-13.5-15.5-11.5-20.5-9-19.5q-22-37-41-30t-28 49 7 97q20 70 1 195-10 65 18 100.5t73 33 85-35.5q59-49 89.5-66.5t103.5-42.5q53-18 77-36.5t18.5-34.5-25-28.5-51.5-23.5q-33-11-49.5-48t-15-72.5 15.5-47.5q1 31 8 56.5t14.5 40.5 20.5 28.5 21 19 21.5 13 16.5 9.5z" + } + }] +}; +exports.linux = linux; +var dribbble = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 1500q-42-241-140-498h-2l-2 1q-16 6-43 16.5t-101 49-137 82-131 114.5-103 148l-15-11q184 150 418 150 132 0 256-52zM839 893q-21-49-53-111-311 93-673 93-1 7-1 21 0 124 44 236.5t124 201.5q50-89 123.5-166.5t142.5-124.5 130.5-81 99.5-48l37-13q4-1 13-3.5t13-4.5zM732 681q-120-213-244-378-138 65-234 186t-128 272q302 0 606-80zM1416 1000q-210-60-409-29 87 239 128 469 111-75 185-189.5t96-250.5zM611 259q-1 0-2 1 1-1 2-1zM1201 404q-185-164-433-164-76 0-155 19 131 170 246 382 69-26 130-60.5t96.5-61.5 65.5-57 37.5-40.5zM1424 889q-3-232-149-410l-1 1q-9 12-19 24.5t-43.5 44.5-71 60.5-100 65-131.5 64.5q25 53 44 95 2 5 6.5 17t7.5 17q36-5 74.5-7t73.5-2 69 1.5 64 4 56.5 5.5 48 6.5 36.5 6 25 4.5zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.dribbble = dribbble; +var skype = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1173 1063q0-50-19.5-91.5t-48.5-68.5-73-49-82.5-34-87.5-23l-104-24q-30-7-44-10.5t-35-11.5-30-16-16.5-21-7.5-30q0-77 144-77 43 0 77 12t54 28.5 38 33.5 40 29 48 12q47 0 75.5-32t28.5-77q0-55-56-99.5t-142-67.5-182-23q-68 0-132 15.5t-119.5 47-89 87-33.5 128.5q0 61 19 106.5t56 75.5 80 48.5 103 32.5l146 36q90 22 112 36 32 20 32 60 0 39-40 64.5t-105 25.5q-51 0-91.5-16t-65-38.5-45.5-45-46-38.5-54-16q-50 0-75.5 30t-25.5 75q0 92 122 157.5t291 65.5q73 0 140-18.5t122.5-53.5 88.5-93.5 33-131.5zM1536 1280q0 159-112.5 271.5t-271.5 112.5q-130 0-234-80-77 16-150 16-143 0-273.5-55.5t-225-150-150-225-55.5-273.5q0-73 16-150-80-104-80-234 0-159 112.5-271.5t271.5-112.5q130 0 234 80 77-16 150-16 143 0 273.5 55.5t225 150 150 225 55.5 273.5q0 73-16 150 80 104 80 234z" + } + }] +}; +exports.skype = skype; +var foursquare = { + "viewBox": "0 0 1280 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1000 434l37-194q5-23-9-40t-35-17h-712q-23 0-38.5 17t-15.5 37v1101q0 7 6 1l291-352q23-26 38-33.5t48-7.5h239q22 0 37-14.5t18-29.5q24-130 37-191 4-21-11.5-40t-36.5-19h-294q-29 0-48-19t-19-48v-42q0-29 19-47.5t48-18.5h346q18 0 35-13.5t20-29.5zM1227 212q-15 73-53.5 266.5t-69.5 350-35 173.5q-6 22-9 32.5t-14 32.5-24.5 33-38.5 21-58 10h-271q-13 0-22 10-8 9-426 494-22 25-58.5 28.5t-48.5-5.5q-55-22-55-98v-1410q0-55 38-102.5t120-47.5h888q95 0 127 53t10 159zM1227 212l-158 790q4-17 35-173.5t69.5-350 53.5-266.5z" + } + }] +}; +exports.foursquare = foursquare; +var trello = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M704 1344v-1024q0-14-9-23t-23-9h-480q-14 0-23 9t-9 23v1024q0 14 9 23t23 9h480q14 0 23-9t9-23zM1376 960v-640q0-14-9-23t-23-9h-480q-14 0-23 9t-9 23v640q0 14 9 23t23 9h480q14 0 23-9t9-23zM1536 192v1408q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-1408q0-26 19-45t45-19h1408q26 0 45 19t19 45z" + } + }] +}; +exports.trello = trello; +var female = { + "viewBox": "0 0 1280 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1280 1056q0 40-28 68t-68 28q-51 0-80-43l-227-341h-45v132l247 411q9 15 9 33 0 26-19 45t-45 19h-192v272q0 46-33 79t-79 33h-160q-46 0-79-33t-33-79v-272h-192q-26 0-45-19t-19-45q0-18 9-33l247-411v-132h-45l-227 341q-29 43-80 43-40 0-68-28t-28-68q0-29 16-53l256-384q73-107 176-107h384q103 0 176 107l256 384q16 24 16 53zM864 256q0 93-65.5 158.5t-158.5 65.5-158.5-65.5-65.5-158.5 65.5-158.5 158.5-65.5 158.5 65.5 65.5 158.5z" + } + }] +}; +exports.female = female; +var male = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 704v416q0 40-28 68t-68 28-68-28-28-68v-352h-64v912q0 46-33 79t-79 33-79-33-33-79v-464h-64v464q0 46-33 79t-79 33-79-33-33-79v-912h-64v352q0 40-28 68t-68 28-68-28-28-68v-416q0-80 56-136t136-56h640q80 0 136 56t56 136zM736 256q0 93-65.5 158.5t-158.5 65.5-158.5-65.5-65.5-158.5 65.5-158.5 158.5-65.5 158.5 65.5 65.5 158.5z" + } + }] +}; +exports.male = male; +var gittip = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M773 1302l350-473q16-22 24.5-59t-6-85-61.5-79q-40-26-83-25.5t-73.5 17.5-54.5 45q-36 40-96 40-59 0-95-40-24-28-54.5-45t-73.5-17.5-84 25.5q-46 31-60.5 79t-6 85 24.5 59zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.gittip = gittip; +var gratipay = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M773 1302l350-473q16-22 24.5-59t-6-85-61.5-79q-40-26-83-25.5t-73.5 17.5-54.5 45q-36 40-96 40-59 0-95-40-24-28-54.5-45t-73.5-17.5-84 25.5q-46 31-60.5 79t-6 85 24.5 59zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.gratipay = gratipay; +var sunO = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1472 896q0-117-45.5-223.5t-123-184-184-123-223.5-45.5-223.5 45.5-184 123-123 184-45.5 223.5 45.5 223.5 123 184 184 123 223.5 45.5 223.5-45.5 184-123 123-184 45.5-223.5zM1748 1173q-4 15-20 20l-292 96v306q0 16-13 26-15 10-29 4l-292-94-180 248q-10 13-26 13t-26-13l-180-248-292 94q-14 6-29-4-13-10-13-26v-306l-292-96q-16-5-20-20-5-17 4-29l180-248-180-248q-9-13-4-29 4-15 20-20l292-96v-306q0-16 13-26 15-10 29-4l292 94 180-248q9-12 26-12t26 12l180 248 292-94q14-6 29 4 13 10 13 26v306l292 96q16 5 20 20 5 16-4 29l-180 248 180 248q9 12 4 29z" + } + }] +}; +exports.sunO = sunO; +var moonO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1262 1303q-54 9-110 9-182 0-337-90t-245-245-90-337q0-192 104-357-201 60-328.5 229t-127.5 384q0 130 51 248.5t136.5 204 204 136.5 248.5 51q144 0 273.5-61.5t220.5-171.5zM1465 1218q-94 203-283.5 324.5t-413.5 121.5q-156 0-298-61t-245-164-164-245-61-298q0-153 57.5-292.5t156-241.5 235.5-164.5 290-68.5q44-2 61 39 18 41-15 72-86 78-131.5 181.5t-45.5 218.5q0 148 73 273t198 198 273 73q118 0 228-51 41-18 72 13 14 14 17.5 34t-4.5 38z" + } + }] +}; +exports.moonO = moonO; +var archive = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1088 832q0-26-19-45t-45-19h-256q-26 0-45 19t-19 45 19 45 45 19h256q26 0 45-19t19-45zM1664 640v960q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-960q0-26 19-45t45-19h1408q26 0 45 19t19 45zM1728 192v256q0 26-19 45t-45 19h-1536q-26 0-45-19t-19-45v-256q0-26 19-45t45-19h1536q26 0 45 19t19 45z" + } + }] +}; +exports.archive = archive; +var bug = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1632 960q0 26-19 45t-45 19h-224q0 171-67 290l208 209q19 19 19 45t-19 45q-18 19-45 19t-45-19l-198-197q-5 5-15 13t-42 28.5-65 36.5-82 29-97 13v-896h-128v896q-51 0-101.5-13.5t-87-33-66-39-43.5-32.5l-15-14-183 207q-20 21-48 21-24 0-43-16-19-18-20.5-44.5t15.5-46.5l202-227q-58-114-58-274h-224q-26 0-45-19t-19-45 19-45 45-19h224v-294l-173-173q-19-19-19-45t19-45 45-19 45 19l173 173h844l173-173q19-19 45-19t45 19 19 45-19 45l-173 173v294h224q26 0 45 19t19 45zM1152 384h-640q0-133 93.5-226.5t226.5-93.5 226.5 93.5 93.5 226.5z" + } + }] +}; +exports.bug = bug; +var vk = { + "viewBox": "0 0 1920 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1917 520q23 64-150 294-24 32-65 85-40 51-55 72t-30.5 49.5-12 42 13 34.5 32.5 43 57 53q4 2 5 4 141 131 191 221 3 5 6.5 12.5t7 26.5-0.5 34-25 27.5-59 12.5l-256 4q-24 5-56-5t-52-22l-20-12q-30-21-70-64t-68.5-77.5-61-58-56.5-15.5q-3 1-8 3.5t-17 14.5-21.5 29.5-17 52-6.5 77.5q0 15-3.5 27.5t-7.5 18.5l-4 5q-18 19-53 22h-115q-71 4-146-16.5t-131.5-53-103-66-70.5-57.5l-25-24q-10-10-27.5-30t-71.5-91-106-151-122.5-211-130.5-272q-6-16-6-27t3-16l4-6q15-19 57-19l274-2q12 2 23 6.5t16 8.5l5 3q16 11 24 32 20 50 46 103.5t41 81.5l16 29q29 60 56 104t48.5 68.5 41.5 38.5 34 14 27-5q2-1 5-5t12-22 13.5-47 9.5-81 0-125q-2-40-9-73t-14-46l-6-12q-25-34-85-43-13-2 5-24 16-19 38-30 53-26 239-24 82 1 135 13 20 5 33.5 13.5t20.5 24 10.5 32 3.5 45.5-1 55-2.5 70.5-1.5 82.5q0 11-1 42t-0.5 48 3.5 40.5 11.5 39 22.5 24.5q8 2 17 4t26-11 38-34.5 52-67 68-107.5q60-104 107-225 4-10 10-17.5t11-10.5l4-3 5-2.5t13-3 20-0.5l288-2q39-5 64 2.5t31 16.5z" + } + }] +}; +exports.vk = vk; +var weibo = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M675 1284q21-34 11-69t-45-50q-34-14-73-1t-60 46q-22 34-13 68.5t43 50.5 74.5 2.5 62.5-47.5zM769 1163q8-13 3.5-26.5t-17.5-18.5q-14-5-28.5 0.5t-21.5 18.5q-17 31 13 45 14 5 29-0.5t22-18.5zM943 1270q-45 102-158 150t-224 12q-107-34-147.5-126.5t6.5-187.5q47-93 151.5-139t210.5-19q111 29 158.5 119.5t2.5 190.5zM1255 1110q-9-96-89-170t-208.5-109-274.5-21q-223 23-369.5 141.5t-132.5 264.5q9 96 89 170t208.5 109 274.5 21q223-23 369.5-141.5t132.5-264.5zM1563 1114q0 68-37 139.5t-109 137-168.5 117.5-226 83-270.5 31-275-33.5-240.5-93-171.5-151-65-199.5q0-115 69.5-245t197.5-258q169-169 341.5-236t246.5 7q65 64 20 209-4 14-1 20t10 7 14.5-0.5 13.5-3.5l6-2q139-59 246-59t153 61q45 63 0 178-2 13-4.5 20t4.5 12.5 12 7.5 17 6q57 18 103 47t80 81.5 34 116.5zM1489 490q42 47 54.5 108.5t-6.5 117.5q-8 23-29.5 34t-44.5 4q-23-8-34-29.5t-4-44.5q20-63-24-111t-107-35q-24 5-45-8t-25-37q-5-24 8-44.5t37-25.5q60-13 119 5.5t101 65.5zM1670 327q87 96 112.5 222.5t-13.5 241.5q-9 27-34 40t-52 4-40-34-5-52q28-82 10-172t-80-158q-62-69-148-95.5t-173-8.5q-28 6-52-9.5t-30-43.5 9.5-51.5 43.5-29.5q123-26 244 11.5t208 134.5z" + } + }] +}; +exports.weibo = weibo; +var renren = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1133 1570q-171 94-368 94-196 0-367-94 138-87 235.5-211t131.5-268q35 144 132.5 268t235.5 211zM638 142v485q0 252-126.5 459.5t-330.5 306.5q-181-215-181-495 0-187 83.5-349.5t229.5-269.5 325-137zM1536 898q0 280-181 495-204-99-330.5-306.5t-126.5-459.5v-485q179 30 325 137t229.5 269.5 83.5 349.5z" + } + }] +}; +exports.renren = renren; +var pagelines = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1402 1103q-32 80-76 138t-91 88.5-99 46.5-101.5 14.5-96.5-8.5-86.5-22-69.5-27.5-46-22.5l-17-10q-113 228-289.5 359.5t-384.5 132.5q-19 0-32-13t-13-32 13-31.5 32-12.5q173-1 322.5-107.5t251.5-294.5q-36 14-72 23t-83 13-91-2.5-93-28.5-92-59-84.5-100-74.5-146q114-47 214-57t167.5 7.5 124.5 56.5 88.5 77 56.5 82q53-131 79-291-7 1-18 2.5t-46.5 2.5-69.5-0.5-81.5-10-88.5-23-84-42.5-75-65-54.5-94.5-28.5-127.5q70-28 133.5-36.5t112.5 1 92 30 73.5 50 56 61 42 63 27.5 56 16 39.5l4 16q12-122 12-195-8-6-21.5-16t-49-44.5-63.5-71.5-54-93-33-112.5 12-127 70-138.5q73 25 127.5 61.5t84.5 76.5 48 85 20.5 89-0.5 85.5-13 76.5-19 62-17 42l-7 15q1 4 1 50t-1 72q3-7 10-18.5t30.5-43 50.5-58 71-55.5 91.5-44.5 112-14.5 132.5 24q-2 78-21.5 141.5t-50 104.5-69.5 71.5-81.5 45.5-84.5 24-80 9.5-67.5-1-46.5-4.5l-17-3q-23 147-73 283 6-7 18-18.5t49.5-41 77.5-52.5 99.5-42 117.5-20 129 23.5 137 77.5z" + } + }] +}; +exports.pagelines = pagelines; +var stackExchange = { + "viewBox": "0 0 1280 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1259 1253v66q0 85-57.5 144.5t-138.5 59.5h-57l-260 269v-269h-529q-81 0-138.5-59.5t-57.5-144.5v-66h1238zM1259 927v255h-1238v-255h1238zM1259 599v255h-1238v-255h1238zM1259 459v67h-1238v-67q0-84 57.5-143.5t138.5-59.5h846q81 0 138.5 59.5t57.5 143.5z" + } + }] +}; +exports.stackExchange = stackExchange; +var arrowCircleORight = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1152 896q0 14-9 23l-320 320q-9 9-23 9-13 0-22.5-9.5t-9.5-22.5v-192h-352q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h352v-192q0-14 9-23t23-9q12 0 24 10l319 319q9 9 9 23zM1312 896q0-148-73-273t-198-198-273-73-273 73-198 198-73 273 73 273 198 198 273 73 273-73 198-198 73-273zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.arrowCircleORight = arrowCircleORight; +var arrowCircleOLeft = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1152 800v192q0 13-9.5 22.5t-22.5 9.5h-352v192q0 14-9 23t-23 9q-12 0-24-10l-319-319q-9-9-9-23t9-23l320-320q9-9 23-9 13 0 22.5 9.5t9.5 22.5v192h352q13 0 22.5 9.5t9.5 22.5zM1312 896q0-148-73-273t-198-198-273-73-273 73-198 198-73 273 73 273 198 198 273 73 273-73 198-198 73-273zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.arrowCircleOLeft = arrowCircleOLeft; +var caretSquareOLeft = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 576v640q0 26-19 45t-45 19q-20 0-37-12l-448-320q-27-19-27-52t27-52l448-320q17-12 37-12 26 0 45 19t19 45zM1280 1376v-960q0-13-9.5-22.5t-22.5-9.5h-960q-13 0-22.5 9.5t-9.5 22.5v960q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5-9.5t9.5-22.5zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.caretSquareOLeft = caretSquareOLeft; +var toggleLeft = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 576v640q0 26-19 45t-45 19q-20 0-37-12l-448-320q-27-19-27-52t27-52l448-320q17-12 37-12 26 0 45 19t19 45zM1280 1376v-960q0-13-9.5-22.5t-22.5-9.5h-960q-13 0-22.5 9.5t-9.5 22.5v960q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5-9.5t9.5-22.5zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.toggleLeft = toggleLeft; +var dotCircleO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 896q0 106-75 181t-181 75-181-75-75-181 75-181 181-75 181 75 75 181zM768 352q-148 0-273 73t-198 198-73 273 73 273 198 198 273 73 273-73 198-198 73-273-73-273-198-198-273-73zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.dotCircleO = dotCircleO; +var wheelchair = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1023 1187l102 204q-58 179-210 290t-339 111q-156 0-288.5-77.5t-210-210-77.5-288.5q0-181 104.5-330t274.5-211l17 131q-122 54-195 165.5t-73 244.5q0 185 131.5 316.5t316.5 131.5q126 0 232.5-65t165-175.5 49.5-236.5zM1571 1287l58 114-256 128q-13 7-29 7-40 0-57-35l-239-477h-472q-24 0-42.5-16.5t-21.5-40.5l-96-779q-2-17 6-42 14-51 57-82.5t97-31.5q66 0 113 47t47 113q0 69-52 117.5t-120 41.5l37 289h423v128h-407l16 128h455q40 0 57 35l228 455z" + } + }] +}; +exports.wheelchair = wheelchair; +var vimeoSquare = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1292 638q10-216-161-222-231-8-312 261 44-19 82-19 85 0 74 96-4 57-74 167t-105 110q-43 0-82-169-13-54-45-255-30-189-160-177-59 7-164 100l-81 72-81 72 52 67q76-52 87-52 57 0 107 179 15 55 45 164.5t45 164.5q68 179 164 179 157 0 383-294 220-283 226-444zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.vimeoSquare = vimeoSquare; +var tryIcon = { + "viewBox": "0 0 1152 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1152 832q0 191-94.5 353t-256.5 256.5-353 94.5h-160q-14 0-23-9t-9-23v-611l-215 66q-3 1-9 1-10 0-19-6-13-10-13-26v-128q0-23 23-31l233-71v-93l-215 66q-3 1-9 1-10 0-19-6-13-10-13-26v-128q0-23 23-31l233-71v-250q0-14 9-23t23-9h160q14 0 23 9t9 23v181l375-116q15-5 28 5t13 26v128q0 23-23 31l-393 121v93l375-116q15-5 28 5t13 26v128q0 23-23 31l-393 121v487q188-13 318-151t130-328q0-14 9-23t23-9h160q14 0 23 9t9 23z" + } + }] +}; +exports.tryIcon = tryIcon; +var turkishLira = { + "viewBox": "0 0 1152 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1152 832q0 191-94.5 353t-256.5 256.5-353 94.5h-160q-14 0-23-9t-9-23v-611l-215 66q-3 1-9 1-10 0-19-6-13-10-13-26v-128q0-23 23-31l233-71v-93l-215 66q-3 1-9 1-10 0-19-6-13-10-13-26v-128q0-23 23-31l233-71v-250q0-14 9-23t23-9h160q14 0 23 9t9 23v181l375-116q15-5 28 5t13 26v128q0 23-23 31l-393 121v93l375-116q15-5 28 5t13 26v128q0 23-23 31l-393 121v487q188-13 318-151t130-328q0-14 9-23t23-9h160q14 0 23 9t9 23z" + } + }] +}; +exports.turkishLira = turkishLira; +var plusSquareO = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1152 800v64q0 14-9 23t-23 9h-352v352q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-352h-352q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h352v-352q0-14 9-23t23-9h64q14 0 23 9t9 23v352h352q14 0 23 9t9 23zM1280 1248v-832q0-66-47-113t-113-47h-832q-66 0-113 47t-47 113v832q0 66 47 113t113 47h832q66 0 113-47t47-113zM1408 416v832q0 119-84.5 203.5t-203.5 84.5h-832q-119 0-203.5-84.5t-84.5-203.5v-832q0-119 84.5-203.5t203.5-84.5h832q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.plusSquareO = plusSquareO; +var spaceShuttle = { + "viewBox": "0 0 2176 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M620 1120q-110 64-268 64h-128v-64h-64q-13 0-22.5-23.5t-9.5-56.5q0-24 7-49-58-2-96.5-10.5t-38.5-20.5 38.5-20.5 96.5-10.5q-7-25-7-49 0-33 9.5-56.5t22.5-23.5h64v-64h128q158 0 268 64h1113q42 7 106.5 18t80.5 14q89 15 150 40.5t83.5 47.5 22.5 40-22.5 40-83.5 47.5-150 40.5q-16 3-80.5 14t-106.5 18h-1113zM1739 868q53 36 53 92t-53 92l81 30q68-48 68-122t-68-122zM625 1136h1015q-217 38-456 80-57 0-113 24t-83 48l-28 24-288 288q-26 26-70.5 45t-89.5 19h-96l-93-464h29q157 0 273-64zM352 720h-29l93-464h96q46 0 90 19t70 45l288 288q4 4 11 10.5t30.5 23 48.5 29 61.5 23 72.5 10.5l456 80h-1015q-116-64-273-64z" + } + }] +}; +exports.spaceShuttle = spaceShuttle; +var slack = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1519 776q62 0 103.5 40.5t41.5 101.5q0 97-93 130l-172 59 56 167q7 21 7 47 0 59-42 102t-101 43q-47 0-85.5-27t-53.5-72l-55-165-310 106 55 164q8 24 8 47 0 59-42 102t-102 43q-47 0-85-27t-53-72l-55-163-153 53q-29 9-50 9-61 0-101.5-40t-40.5-101q0-47 27.5-85t71.5-53l156-53-105-313-156 54q-26 8-48 8-60 0-101-40.5t-41-100.5q0-47 27.5-85t71.5-53l157-53-53-159q-8-24-8-47 0-60 42-102.5t102-42.5q47 0 85 27t53 72l54 160 310-105-54-160q-8-24-8-47 0-59 42.5-102t101.5-43q47 0 85.5 27.5t53.5 71.5l53 161 162-55q21-6 43-6 60 0 102.5 39.5t42.5 98.5q0 45-30 81.5t-74 51.5l-157 54 105 316 164-56q24-8 46-8zM725 1038l310-105-105-315-310 107z" + } + }] +}; +exports.slack = slack; +var envelopeSquare = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1248 128q119 0 203.5 84.5t84.5 203.5v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960zM1280 1184v-436q-31 35-64 55-34 22-132.5 85t-151.5 99q-98 69-164 69v0 0q-66 0-164-69-47-32-142-92.5t-142-92.5q-12-8-33-27t-31-27v436q0 40 28 68t68 28h832q40 0 68-28t28-68zM1280 611q0-41-27.5-70t-68.5-29h-832q-40 0-68 28t-28 68q0 37 30.5 76.5t67.5 64.5q47 32 137.5 89t129.5 83q3 2 17 11.5t21 14 21 13 23.5 13 21.5 9.5 22.5 7.5 20.5 2.5 20.5-2.5 22.5-7.5 21.5-9.5 23.5-13 21-13 21-14 17-11.5l267-174q35-23 66.5-62.5t31.5-73.5z" + } + }] +}; +exports.envelopeSquare = envelopeSquare; +var wordpress = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M127 896q0-163 67-313l367 1005q-196-95-315-281t-119-411zM1415 857q0 19-2.5 38.5t-10 49.5-11.5 44-17.5 59-17.5 58l-76 256-278-826q46-3 88-8 19-2 26-18.5t-2.5-31-28.5-13.5l-205 10q-75-1-202-10-12-1-20.5 5t-11.5 15-1.5 18.5 9 16.5 19.5 8l80 8 120 328-168 504-280-832q46-3 88-8 19-2 26-18.5t-2.5-31-28.5-13.5l-205 10q-7 0-23-0.5t-26-0.5q105-160 274.5-253.5t367.5-93.5q147 0 280.5 53t238.5 149h-10q-55 0-92 40.5t-37 95.5q0 12 2 24t4 21.5 8 23 9 21 12 22.5 12.5 21 14.5 24 14 23q63 107 63 212zM909 963l237 647q1 6 5 11-126 44-255 44-112 0-217-32zM1570 527q95 174 95 369 0 209-104 385.5t-279 278.5l235-678q59-169 59-276 0-42-6-79zM896 0q182 0 348 71t286 191 191 286 71 348-71 348-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71zM896 1751q173 0 331.5-68t273-182.5 182.5-273 68-331.5-68-331.5-182.5-273-273-182.5-331.5-68-331.5 68-273 182.5-182.5 273-68 331.5 68 331.5 182.5 273 273 182.5 331.5 68z" + } + }] +}; +exports.wordpress = wordpress; +var openid = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1086 0v1536l-272 128q-228-20-414-102t-293-208.5-107-272.5q0-140 100.5-263.5t275-205.5 391.5-108v172q-217 38-356.5 150t-139.5 255q0 152 154.5 267t388.5 145v-1360zM1755 582l37 390-525-114 147-83q-119-70-280-99v-172q277 33 481 157z" + } + }] +}; +exports.openid = openid; +var bank = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M960 0l960 384v128h-128q0 26-20.5 45t-48.5 19h-1526q-28 0-48.5-19t-20.5-45h-128v-128zM256 640h256v768h128v-768h256v768h128v-768h256v768h128v-768h256v768h59q28 0 48.5 19t20.5 45v64h-1664v-64q0-26 20.5-45t48.5-19h59v-768zM1851 1600q28 0 48.5 19t20.5 45v128h-1920v-128q0-26 20.5-45t48.5-19h1782z" + } + }] +}; +exports.bank = bank; +var institution = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M960 0l960 384v128h-128q0 26-20.5 45t-48.5 19h-1526q-28 0-48.5-19t-20.5-45h-128v-128zM256 640h256v768h128v-768h256v768h128v-768h256v768h128v-768h256v768h59q28 0 48.5 19t20.5 45v64h-1664v-64q0-26 20.5-45t48.5-19h59v-768zM1851 1600q28 0 48.5 19t20.5 45v128h-1920v-128q0-26 20.5-45t48.5-19h1782z" + } + }] +}; +exports.institution = institution; +var university = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M960 0l960 384v128h-128q0 26-20.5 45t-48.5 19h-1526q-28 0-48.5-19t-20.5-45h-128v-128zM256 640h256v768h128v-768h256v768h128v-768h256v768h128v-768h256v768h59q28 0 48.5 19t20.5 45v64h-1664v-64q0-26 20.5-45t48.5-19h59v-768zM1851 1600q28 0 48.5 19t20.5 45v128h-1920v-128q0-26 20.5-45t48.5-19h1782z" + } + }] +}; +exports.university = university; +var graduationCap = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1774 836l18 316q4 69-82 128t-235 93.5-323 34.5-323-34.5-235-93.5-82-128l18-316 574 181q22 7 48 7t48-7zM2304 512q0 23-22 31l-1120 352q-4 1-10 1t-10-1l-652-206q-43 34-71 111.5t-34 178.5q63 36 63 109 0 69-58 107l58 433q2 14-8 25-9 11-24 11h-192q-15 0-24-11-10-11-8-25l58-433q-58-38-58-107 0-73 65-111 11-207 98-330l-333-104q-22-8-22-31t22-31l1120-352q4-1 10-1t10 1l1120 352q22 8 22 31z" + } + }] +}; +exports.graduationCap = graduationCap; +var mortarBoard = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1774 836l18 316q4 69-82 128t-235 93.5-323 34.5-323-34.5-235-93.5-82-128l18-316 574 181q22 7 48 7t48-7zM2304 512q0 23-22 31l-1120 352q-4 1-10 1t-10-1l-652-206q-43 34-71 111.5t-34 178.5q63 36 63 109 0 69-58 107l58 433q2 14-8 25-9 11-24 11h-192q-15 0-24-11-10-11-8-25l58-433q-58-38-58-107 0-73 65-111 11-207 98-330l-333-104q-22-8-22-31t22-31l1120-352q4-1 10-1t10 1l1120 352q22 8 22 31z" + } + }] +}; +exports.mortarBoard = mortarBoard; +var yahoo = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M859 957l13 707q-62-11-105-11-41 0-105 11l13-707q-40-69-168.5-295.5t-216.5-374.5-181-287q58 15 108 15 44 0 111-15 63 111 133.5 229.5t167 276.5 138.5 227q37-61 109.5-177.5t117.5-190 105-176 107-189.5q54 14 107 14 56 0 114-14v0q-28 39-60 88.5t-49.5 78.5-56.5 96-49 84q-146 248-353 610z" + } + }] +}; +exports.yahoo = yahoo; +var google = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M768 786h725q12 67 12 128 0 217-91 387.5t-259.5 266.5-386.5 96q-157 0-299-60.5t-245-163.5-163.5-245-60.5-299 60.5-299 163.5-245 245-163.5 299-60.5q300 0 515 201l-209 201q-123-119-306-119-129 0-238.5 65t-173.5 176.5-64 243.5 64 243.5 173.5 176.5 238.5 65q87 0 160-24t120-60 82-82 51.5-87 22.5-78h-436v-264z" + } + }] +}; +exports.google = google; +var reddit = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1095 1167q16 16 0 31-62 62-199 62t-199-62q-16-15 0-31 6-6 15-6t15 6q48 49 169 49 120 0 169-49 6-6 15-6t15 6zM788 986q0 37-26 63t-63 26-63.5-26-26.5-63q0-38 26.5-64t63.5-26 63 26.5 26 63.5zM1183 986q0 37-26.5 63t-63.5 26-63-26-26-63 26-63.5 63-26.5 63.5 26 26.5 64zM1434 866q0-49-35-84t-85-35-86 36q-130-90-311-96l63-283 200 45q0 37 26 63t63 26 63.5-26.5 26.5-63.5-26.5-63.5-63.5-26.5q-54 0-80 50l-221-49q-19-5-25 16l-69 312q-180 7-309 97-35-37-87-37-50 0-85 35t-35 84q0 35 18.5 64t49.5 44q-6 27-6 56 0 142 140 243t337 101q198 0 338-101t140-243q0-32-7-57 30-15 48-43.5t18-63.5zM1792 896q0 182-71 348t-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71 348 71 286 191 191 286 71 348z" + } + }] +}; +exports.reddit = reddit; +var redditSquare = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M939 1129q13 13 0 26-53 53-171 53t-171-53q-13-13 0-26 5-6 13-6t13 6q42 42 145 42t145-42q5-6 13-6t13 6zM676 973q0 31-23 54t-54 23-54-23-23-54q0-32 22.5-54.5t54.5-22.5 54.5 22.5 22.5 54.5zM1014 973q0 31-23 54t-54 23-54-23-23-54q0-32 22.5-54.5t54.5-22.5 54.5 22.5 22.5 54.5zM1229 870q0-42-30-72t-73-30q-42 0-73 31-113-78-267-82l54-243 171 39q1 32 23.5 54t53.5 22q32 0 54.5-22.5t22.5-54.5-22.5-54.5-54.5-22.5q-48 0-69 43l-189-42q-17-5-21 13l-60 268q-154 6-265 83-30-32-74-32-43 0-73 30t-30 72q0 30 16 55t42 38q-5 25-5 48 0 122 120 208.5t289 86.5q170 0 290-86.5t120-208.5q0-25-6-49 25-13 40.5-37.5t15.5-54.5zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.redditSquare = redditSquare; +var stumbleuponCircle = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M866 839l90-27v-62q0-79-58-135t-138-56-138 55.5-58 134.5v283q0 20-14 33.5t-33 13.5-32.5-13.5-13.5-33.5v-120h-151v122q0 82 57.5 139t139.5 57q81 0 138.5-56.5t57.5-136.5v-280q0-19 13.5-33t33.5-14q19 0 32.5 14t13.5 33v54zM1199 1034v-122h-150v126q0 20-13.5 33.5t-33.5 13.5q-19 0-32.5-14t-13.5-33v-123l-90 26-60-28v123q0 80 58 137t139 57 138.5-57 57.5-139zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.stumbleuponCircle = stumbleuponCircle; +var stumbleupon = { + "viewBox": "0 0 1920 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1062 712v-118q0-42-30-72t-72-30-72 30-30 72v612q0 175-126 299t-303 124q-178 0-303.5-125.5t-125.5-303.5v-266h328v262q0 43 30 72.5t72 29.5 72-29.5 30-72.5v-620q0-171 126.5-292t301.5-121q176 0 302 122t126 294v136l-195 58zM1592 934h328v266q0 178-125.5 303.5t-303.5 125.5q-177 0-303-124.5t-126-300.5v-268l131 61 195-58v270q0 42 30 71.5t72 29.5 72-29.5 30-71.5v-275z" + } + }] +}; +exports.stumbleupon = stumbleupon; +var delicious = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1472 1376v-480h-704v-704h-480q-93 0-158.5 65.5t-65.5 158.5v480h704v704h480q93 0 158.5-65.5t65.5-158.5zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.delicious = delicious; +var digg = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M328 282h204v983h-532v-697h328v-286zM328 1101v-369h-123v369h123zM614 568v697h205v-697h-205zM614 282v204h205v-204h-205zM901 568h533v942h-533v-163h328v-82h-328v-697zM1229 1101v-369h-123v369h123zM1516 568h532v942h-532v-163h327v-82h-327v-697zM1843 1101v-369h-123v369h123z" + } + }] +}; +exports.digg = digg; +var piedPiperPp = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1046 1020q0 64-38 109t-91 45q-43 0-70-15v-277q28-17 70-17 53 0 91 45.5t38 109.5zM703 592q0 64-38 109.5t-91 45.5q-43 0-70-15v-277q28-17 70-17 53 0 91 45t38 109zM1265 1023q0-134-88-229t-213-95q-20 0-39 3-23 78-78 136-87 95-211 101v636l211-41v-206q51 19 117 19 125 0 213-95t88-229zM922 596q0-134-88.5-229t-213.5-95q-74 0-141 36h-186v840l211-41v-206q55 19 116 19 125 0 213.5-95t88.5-229zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.piedPiperPp = piedPiperPp; +var piedPiperAlt = { + "viewBox": "0 0 2038 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1222 929q75-3 143.5 20.5t118 58.5 101 94.5 84 108 75.5 120.5q33 56 78.5 109t75.5 80.5 99 88.5q-48 30-108.5 57.5t-138.5 59-114 47.5q-44-37-74-115t-43.5-164.5-33-180.5-42.5-168.5-72.5-123-122.5-48.5l-10 2-6 4q4 5 13 14 6 5 28 23.5t25.5 22 19 18 18 20.5 11.5 21 10.5 27.5 4.5 31 4 40.5l1 33q1 26-2.5 57.5t-7.5 52-12.5 58.5-11.5 53q-35-1-101 9.5t-98 10.5q-39 0-72-10-2-16-2-47 0-74 3-96 2-13 31.5-41.5t57-59 26.5-51.5q-24-2-43 24-36 53-111.5 99.5t-136.5 46.5q-25 0-75.5-63t-106.5-139.5-84-96.5q-6-4-27-30-482 112-513 112-16 0-28-11t-12-27q0-15 8.5-26.5t22.5-14.5l486-106q-8-14-8-25t5.5-17.5 16-11.5 20-7 23-4.5 18.5-4.5q4-1 15.5-7.5t17.5-6.5q15 0 28 16t20 33q163-37 172-37 17 0 29.5 11t12.5 28q0 15-8.5 26t-23.5 14l-182 40-1 16q-1 26 81.5 117.5t104.5 91.5q47 0 119-80t72-129q0-36-23.5-53t-51-18.5-51-11.5-23.5-34q0-16 10-34l-68-19q43-44 43-117 0-26-5-58 82-16 144-16 44 0 71.5 1.5t48.5 8.5 31 13.5 20.5 24.5 15.5 33.5 17 47.5 24 60l50-25q-3 40-23 60t-42.5 21-40 6.5-16.5 20.5zM1282 694q-5-5-13.5-15.5t-12-14.5-10.5-11.5-10-10.5l-8-8t-8.5-7.5-8-5-8.5-4.5q-7-3-14.5-5t-20.5-2.5-22-0.5h-32.5-37.5q-126 0-217 43 16-30 36-46.5t54-29.5 65.5-36 46-36.5 50-55 43.5-50.5q12 9 28 31.5t32 36.5 38 13l12-1v76l22 1q247-95 371-190 28-21 50-39t42.5-37.5 33-31 29.5-34 24-31 24.5-37 23-38 27-47.5 29.5-53l7-9q-2 53-43 139-79 165-205 264t-306 142q-14 3-42 7.5t-50 9.5-39 14q3 19 24.5 46t21.5 34q0 11-26 30zM1061 1615q39-26 131.5-47.5t146.5-21.5q9 0 22.5 15.5t28 42.5 26 50 24 51 14.5 33q-121 45-244 45-61 0-125-11zM822 968l48-12 109 177-73 48zM1323 1485q3 15 3 16 0 7-17.5 14.5t-46 13-54 9.5-53.5 7.5-32 4.5l-7-43q21-2 60.5-8.5t72-10 60.5-3.5h14zM866 857l-96 20-6-17q10-1 32.5-7t34.5-6q19 0 35 10zM1061 1491h31l10 83-41 12v-95zM1950 1v-1 1zM1950 1l-1 5-2 2 1-3zM1950 1l1-1z" + } + }] +}; +exports.piedPiperAlt = piedPiperAlt; +var drupal = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1167 1586q-5-19-24-5-30 22-87 39t-131 17q-129 0-193-49-5-4-13-4-11 0-26 12-7 6-7.5 16t7.5 20q34 32 87.5 46t102.5 12.5 99-4.5q41-4 84.5-20.5t65-30 28.5-20.5q12-12 7-29zM1128 1471q-19-47-39-61-23-15-76-15-47 0-71 10-29 12-78 56-26 24-12 44 9 8 17.5 4.5t31.5-23.5q3-2 10.5-8.5t10.5-8.5 10-7 11.5-7 12.5-5 15-4.5 16.5-2.5 20.5-1q27 0 44.5 7.5t23 14.5 13.5 22q10 17 12.5 20t12.5-1q23-12 14-34zM1483 1190q0-22-5-44.5t-16.5-45-34-36.5-52.5-14q-33 0-97 41.5t-129 83.5-101 42q-27 1-63.5-19t-76-49-83.5-58-100-49-111-19q-115 1-197 78.5t-84 178.5q-2 112 74 164 29 20 62.5 28.5t103.5 8.5q57 0 132-32.5t134-71 120-70.5 93-31q26 1 65 31.5t71.5 67 68 67.5 55.5 32q35 3 58.5-14t55.5-63q28-41 42.5-101t14.5-106zM1536 1030q0 164-62 304.5t-166 236-242.5 149.5-290.5 54-293-57.5-247.5-157-170.5-241.5-64-302q0-89 19.5-172.5t49-145.5 70.5-118.5 78.5-94 78.5-69.5 64.5-46.5 42.5-24.5q14-8 51-26.5t54.5-28.5 48-30 60.5-44q36-28 58-72.5t30-125.5q129 155 186 193 44 29 130 68t129 66q21 13 39 25t60.5 46.5 76 70.5 75 95 69 122 47 148.5 19.5 177.5z" + } + }] +}; +exports.drupal = drupal; +var joomla = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1070 1073l-160 160-151 152-30 30q-65 64-151.5 87t-171.5 2q-16 70-72 115t-129 45q-85 0-145-60.5t-60-145.5q0-72 44.5-128t113.5-72q-22-86 1-173t88-152l12-12 151 152-11 11q-37 37-37 89t37 90q37 37 89 37t89-37l30-30 151-152 161-160zM729 391l12 12-152 152-12-12q-37-37-89-37t-89 37-37 89.5 37 89.5l29 29 152 152 160 160-151 152-161-160-151-152-30-30q-68-67-90-159.5t5-179.5q-70-15-115-71t-45-129q0-85 60-145.5t145-60.5q76 0 133.5 49t69.5 123q84-20 169.5 3.5t149.5 87.5zM1536 1458q0 85-60 145.5t-145 60.5q-74 0-131-47t-71-118q-86 28-179.5 6t-161.5-90l-11-12 151-152 12 12q37 37 89 37t89-37 37-89-37-89l-30-30-152-152-160-160 152-152 160 160 152 152 29 30q64 64 87.5 150.5t2.5 171.5q76 11 126.5 68.5t50.5 134.5zM1534 334q0 77-51 135t-127 69q26 85 3 176.5t-90 158.5l-12 12-151-152 12-12q37-37 37-89t-37-89-89-37-89 37l-30 30-152 152-160 160-152-152 161-160 152-152 29-30q67-67 159-89.5t178 3.5q11-75 68.5-126t135.5-51q85 0 145 60.5t60 145.5z" + } + }] +}; +exports.joomla = joomla; +var language = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M654 1078q-1 3-12.5-0.5t-31.5-11.5l-20-9q-44-20-87-49-7-5-41-31.5t-38-28.5q-67 103-134 181-81 95-105 110-4 2-19.5 4t-18.5 0q6-4 82-92 21-24 85.5-115t78.5-118q17-30 51-98.5t36-77.5q-8-1-110 33-8 2-27.5 7.5t-34.5 9.5-17 5q-2 2-2 10.5t-1 9.5q-5 10-31 15-23 7-47 0-18-4-28-21-4-6-5-23 6-2 24.5-5t29.5-6q58-16 105-32 100-35 102-35 10-2 43-19.5t44-21.5q9-3 21.5-8t14.5-5.5 6 0.5q2 12-1 33 0 2-12.5 27t-26.5 53.5-17 33.5q-25 50-77 131l64 28q12 6 74.5 32t67.5 28q4 1 10.5 25.5t4.5 30.5zM449 592q3 15-4 28-12 23-50 38-30 12-60 12-26-3-49-26-14-15-18-41l1-3q3 3 19.5 5t26.5 0 58-16q36-12 55-14 17 0 21 17zM1147 721l63 227-139-42zM39 1521l694-232v-1032l-694 233v1031zM1280 1204l102 31-181-657-100-31-216 536 102 31 45-110 211 65zM777 242l573 184v-380zM1088 1565l158 13-54 160-40-66q-130 83-276 108-58 12-91 12h-84q-79 0-199.5-39t-183.5-85q-8-7-8-16 0-8 5-13.5t13-5.5q4 0 18 7.5t30.5 16.5 20.5 11q73 37 159.5 61.5t157.5 24.5q95 0 167-14.5t157-50.5q15-7 30.5-15.5t34-19 28.5-16.5zM1536 486v1079l-774-246q-14 6-375 127.5t-368 121.5q-13 0-18-13 0-1-1-3v-1078q3-9 4-10 5-6 20-11 107-36 149-50v-384l558 198q2 0 160.5-55t316-108.5 161.5-53.5q20 0 20 21v418z" + } + }] +}; +exports.language = language; +var fax = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M288 384q66 0 113 47t47 113v1088q0 66-47 113t-113 47h-128q-66 0-113-47t-47-113v-1088q0-66 47-113t113-47h128zM1664 547q58 34 93 93t35 128v768q0 106-75 181t-181 75h-864q-66 0-113-47t-47-113v-1536q0-40 28-68t68-28h672q40 0 88 20t76 48l152 152q28 28 48 76t20 88v163zM928 1536v-128q0-14-9-23t-23-9h-128q-14 0-23 9t-9 23v128q0 14 9 23t23 9h128q14 0 23-9t9-23zM928 1280v-128q0-14-9-23t-23-9h-128q-14 0-23 9t-9 23v128q0 14 9 23t23 9h128q14 0 23-9t9-23zM928 1024v-128q0-14-9-23t-23-9h-128q-14 0-23 9t-9 23v128q0 14 9 23t23 9h128q14 0 23-9t9-23zM1184 1536v-128q0-14-9-23t-23-9h-128q-14 0-23 9t-9 23v128q0 14 9 23t23 9h128q14 0 23-9t9-23zM1184 1280v-128q0-14-9-23t-23-9h-128q-14 0-23 9t-9 23v128q0 14 9 23t23 9h128q14 0 23-9t9-23zM1184 1024v-128q0-14-9-23t-23-9h-128q-14 0-23 9t-9 23v128q0 14 9 23t23 9h128q14 0 23-9t9-23zM1440 1536v-128q0-14-9-23t-23-9h-128q-14 0-23 9t-9 23v128q0 14 9 23t23 9h128q14 0 23-9t9-23zM1440 1280v-128q0-14-9-23t-23-9h-128q-14 0-23 9t-9 23v128q0 14 9 23t23 9h128q14 0 23-9t9-23zM1440 1024v-128q0-14-9-23t-23-9h-128q-14 0-23 9t-9 23v128q0 14 9 23t23 9h128q14 0 23-9t9-23zM1536 640v-256h-160q-40 0-68-28t-28-68v-160h-640v512h896z" + } + }] +}; +exports.fax = fax; +var building = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1344 0q26 0 45 19t19 45v1664q0 26-19 45t-45 19h-1280q-26 0-45-19t-19-45v-1664q0-26 19-45t45-19h1280zM512 288v64q0 14 9 23t23 9h64q14 0 23-9t9-23v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23zM512 544v64q0 14 9 23t23 9h64q14 0 23-9t9-23v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23zM512 800v64q0 14 9 23t23 9h64q14 0 23-9t9-23v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23zM512 1056v64q0 14 9 23t23 9h64q14 0 23-9t9-23v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23zM384 1376v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v64q0 14 9 23t23 9h64q14 0 23-9t9-23zM384 1120v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v64q0 14 9 23t23 9h64q14 0 23-9t9-23zM384 864v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v64q0 14 9 23t23 9h64q14 0 23-9t9-23zM384 608v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v64q0 14 9 23t23 9h64q14 0 23-9t9-23zM384 352v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v64q0 14 9 23t23 9h64q14 0 23-9t9-23zM896 1632v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zM896 1120v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v64q0 14 9 23t23 9h64q14 0 23-9t9-23zM896 864v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v64q0 14 9 23t23 9h64q14 0 23-9t9-23zM896 608v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v64q0 14 9 23t23 9h64q14 0 23-9t9-23zM896 352v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v64q0 14 9 23t23 9h64q14 0 23-9t9-23zM1152 1376v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v64q0 14 9 23t23 9h64q14 0 23-9t9-23zM1152 1120v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v64q0 14 9 23t23 9h64q14 0 23-9t9-23zM1152 864v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v64q0 14 9 23t23 9h64q14 0 23-9t9-23zM1152 608v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v64q0 14 9 23t23 9h64q14 0 23-9t9-23zM1152 352v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v64q0 14 9 23t23 9h64q14 0 23-9t9-23z" + } + }] +}; +exports.building = building; +var child = { + "viewBox": "0 0 1280 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1188 548l-292 292v824q0 46-33 79t-79 33-79-33-33-79v-384h-64v384q0 46-33 79t-79 33-79-33-33-79v-824l-292-292q-28-28-28-68t28-68q29-28 68.5-28t67.5 28l228 228h368l228-228q28-28 68-28t68 28q28 29 28 68.5t-28 67.5zM864 384q0 93-65.5 158.5t-158.5 65.5-158.5-65.5-65.5-158.5 65.5-158.5 158.5-65.5 158.5 65.5 65.5 158.5z" + } + }] +}; +exports.child = child; +var paw = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M780 472q0 60-19 113.5t-63 92.5-105 39q-76 0-138-57.5t-92-135.5-30-151q0-60 19-113.5t63-92.5 105-39q77 0 138.5 57.5t91.5 135 30 151.5zM438 955q0 80-42 139t-119 59q-76 0-141.5-55.5t-100.5-133.5-35-152q0-80 42-139.5t119-59.5q76 0 141.5 55.5t100.5 134 35 152.5zM832 928q118 0 255 97.5t229 237 92 254.5q0 46-17 76.5t-48.5 45-64.5 20-76 5.5q-68 0-187.5-45t-182.5-45q-66 0-192.5 44.5t-200.5 44.5q-183 0-183-146 0-86 56-191.5t139.5-192.5 187.5-146 193-59zM1071 717q-61 0-105-39t-63-92.5-19-113.5q0-74 30-151.5t91.5-135 138.5-57.5q61 0 105 39t63 92.5 19 113.5q0 73-30 151t-92 135.5-138 57.5zM1503 613q77 0 119 59.5t42 139.5q0 74-35 152t-100.5 133.5-141.5 55.5q-77 0-119-59t-42-139q0-74 35-152.5t100.5-134 141.5-55.5z" + } + }] +}; +exports.paw = paw; +var spoon = { + "viewBox": "0 0 768 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M704 528q0 145-57 243.5t-152 135.5l45 821q2 26-16 45t-44 19h-192q-26 0-44-19t-16-45l45-821q-95-37-152-135.5t-57-243.5q0-128 42.5-249.5t117.5-200 160-78.5 160 78.5 117.5 200 42.5 249.5z" + } + }] +}; +exports.spoon = spoon; +var cube = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M896 1629l640-349v-636l-640 233v752zM832 764l698-254-698-254-698 254zM1664 512v768q0 35-18 65t-49 47l-704 384q-28 16-61 16t-61-16l-704-384q-31-17-49-47t-18-65v-768q0-40 23-73t61-47l704-256q22-8 44-8t44 8l704 256q38 14 61 47t23 73z" + } + }] +}; +exports.cube = cube; +var cubes = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 1632l384-192v-314l-384 164v342zM576 1178l404-173-404-173-404 173zM1664 1632l384-192v-314l-384 164v342zM1600 1178l404-173-404-173-404 173zM1152 885l384-165v-266l-384 164v267zM1088 506l441-189-441-189-441 189zM2176 1024v416q0 36-19 67t-52 47l-448 224q-25 14-57 14t-57-14l-448-224q-4-2-7-4-2 2-7 4l-448 224q-25 14-57 14t-57-14l-448-224q-33-16-52-47t-19-67v-416q0-38 21.5-70t56.5-48l434-186v-400q0-38 21.5-70t56.5-48l448-192q23-10 50-10t50 10l448 192q35 16 56.5 48t21.5 70v400l434 186q36 16 57 48t21 70z" + } + }] +}; +exports.cubes = cubes; +var behance = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1848 339h-511v124h511v-124zM1596 765q-90 0-146 52.5t-62 142.5h408q-18-195-200-195zM1612 1350q63 0 122-32t76-87h221q-100 307-427 307-214 0-340.5-132t-126.5-347q0-208 130.5-345.5t336.5-137.5q138 0 240.5 68t153 179 50.5 248q0 17-2 47h-658q0 111 57.5 171.5t166.5 60.5zM277 1300h296q205 0 205-167 0-180-199-180h-302v347zM277 763h281q78 0 123.5-36.5t45.5-113.5q0-144-190-144h-260v294zM0 254h594q87 0 155 14t126.5 47.5 90 96.5 31.5 154q0 181-172 263 114 32 172 115t58 204q0 75-24.5 136.5t-66 103.5-98.5 71-121 42-134 13h-611v-1260z" + } + }] +}; +exports.behance = behance; +var behanceSquare = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1248 128q119 0 203.5 84.5t84.5 203.5v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960zM499 495h-371v787h382q117 0 197-57.5t80-170.5q0-158-143-200 107-52 107-164 0-57-19.5-96.5t-56.5-60.5-79-29.5-97-8.5zM477 813h-176v-184h163q119 0 119 90 0 94-106 94zM486 1148h-185v-217h189q124 0 124 113 0 104-128 104zM1136 1180q-68 0-104-38t-36-107h411q1-10 1-30 0-132-74.5-220.5t-203.5-88.5q-128 0-210 86t-82 216q0 135 79 217t213 82q205 0 267-191h-138q-11 34-47.5 54t-75.5 20zM1126 814q113 0 124 122h-254q4-56 39-89t91-33zM964 548h319v77h-319v-77z" + } + }] +}; +exports.behanceSquare = behanceSquare; +var steam = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1582 582q0 101-71.5 172.5t-172.5 71.5-172.5-71.5-71.5-172.5 71.5-172.5 172.5-71.5 172.5 71.5 71.5 172.5zM812 1324q0-104-73-177t-177-73q-27 0-54 6l104 42q77 31 109.5 106.5t1.5 151.5q-31 77-107 109t-152 1q-21-8-62-24.5t-61-24.5q32 60 91 96.5t130 36.5q104 0 177-73t73-177zM1642 583q0-126-89.5-215.5t-215.5-89.5q-127 0-216.5 89.5t-89.5 215.5q0 127 89.5 216t216.5 89q126 0 215.5-89t89.5-216zM1792 583q0 189-133.5 322t-321.5 133l-437 319q-12 129-109 218t-229 89q-121 0-214-76t-118-192l-230-92v-429l389 157q79-48 173-48 13 0 35 2l284-407q2-187 135.5-319t320.5-132q188 0 321.5 133.5t133.5 321.5z" + } + }] +}; +exports.steam = steam; +var steamSquare = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1242 647q0-80-57-136.5t-137-56.5-136.5 57-56.5 136q0 80 56.5 136.5t136.5 56.5 137-56.5 57-136.5zM632 1235q0 83-58 140.5t-140 57.5q-56 0-103-29t-72-77q52 20 98 40 60 24 120-1.5t85-86.5q24-60-1.5-120t-86.5-84l-82-33q22-5 42-5 82 0 140 57.5t58 140.5zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-153l172 69q20 92 93.5 152t168.5 60q104 0 181-70t87-173l345-252q150 0 255.5-105.5t105.5-254.5q0-150-105.5-255.5t-255.5-105.5q-148 0-253 104.5t-107 252.5l-225 322q-9-1-28-1-75 0-137 37l-297-119v-468q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5zM1289 649q0 100-71 170.5t-171 70.5-170.5-70.5-70.5-170.5 70.5-171 170.5-71q101 0 171.5 70.5t70.5 171.5z" + } + }] +}; +exports.steamSquare = steamSquare; +var recycle = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M836 1169l-15 368-2 22-420-29q-36-3-67-31.5t-47-65.5q-11-27-14.5-55t4-65 12-55 21.5-64 19-53q78 12 509 28zM449 583l180 379-147-92q-63 72-111.5 144.5t-72.5 125-39.5 94.5-18.5 63l-4 21-190-357q-17-26-18-56t6-47l8-18q35-63 114-188l-140-86zM1680 1100l-188 359q-12 29-36.5 46.5t-43.5 20.5l-18 4q-71 7-219 12l8 164-230-367 211-362 7 173q170 16 283 5t170-33zM895 176q-47 63-265 435l-317-187-19-12 225-356q20-31 60-45t80-10q24 2 48.5 12t42 21 41.5 33 36 34.5 36 39.5 32 35zM1550 483l212 363q18 37 12.5 76t-27.5 74q-13 20-33 37t-38 28-48.5 22-47 16-51.5 14-46 12q-34-72-265-436l313-195zM1407 257l142-83-220 373-419-20 151-86q-34-89-75-166t-75.5-123.5-64.5-80-47-46.5l-17-13 405 1q31-3 58 10.5t39 28.5l11 15q39 61 112 190z" + } + }] +}; +exports.recycle = recycle; +var automobile = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M480 1088q0-66-47-113t-113-47-113 47-47 113 47 113 113 47 113-47 47-113zM516 768h1016l-89-357q-2-8-14-17.5t-21-9.5h-768q-9 0-21 9.5t-14 17.5zM1888 1088q0-66-47-113t-113-47-113 47-47 113 47 113 113 47 113-47 47-113zM2048 992v384q0 14-9 23t-23 9h-96v128q0 80-56 136t-136 56-136-56-56-136v-128h-1024v128q0 80-56 136t-136 56-136-56-56-136v-128h-96q-14 0-23-9t-9-23v-384q0-93 65.5-158.5t158.5-65.5h28l105-419q23-94 104-157.5t179-63.5h768q98 0 179 63.5t104 157.5l105 419h28q93 0 158.5 65.5t65.5 158.5z" + } + }] +}; +exports.automobile = automobile; +var car = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M480 1088q0-66-47-113t-113-47-113 47-47 113 47 113 113 47 113-47 47-113zM516 768h1016l-89-357q-2-8-14-17.5t-21-9.5h-768q-9 0-21 9.5t-14 17.5zM1888 1088q0-66-47-113t-113-47-113 47-47 113 47 113 113 47 113-47 47-113zM2048 992v384q0 14-9 23t-23 9h-96v128q0 80-56 136t-136 56-136-56-56-136v-128h-1024v128q0 80-56 136t-136 56-136-56-56-136v-128h-96q-14 0-23-9t-9-23v-384q0-93 65.5-158.5t158.5-65.5h28l105-419q23-94 104-157.5t179-63.5h768q98 0 179 63.5t104 157.5l105 419h28q93 0 158.5 65.5t65.5 158.5z" + } + }] +}; +exports.car = car; +var cab = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1824 896q93 0 158.5 65.5t65.5 158.5v384q0 14-9 23t-23 9h-96v64q0 80-56 136t-136 56-136-56-56-136v-64h-1024v64q0 80-56 136t-136 56-136-56-56-136v-64h-96q-14 0-23-9t-9-23v-384q0-93 65.5-158.5t158.5-65.5h28l105-419q23-94 104-157.5t179-63.5h128v-224q0-14 9-23t23-9h448q14 0 23 9t9 23v224h128q98 0 179 63.5t104 157.5l105 419h28zM320 1376q66 0 113-47t47-113-47-113-113-47-113 47-47 113 47 113 113 47zM516 896h1016l-89-357q-2-8-14-17.5t-21-9.5h-768q-9 0-21 9.5t-14 17.5zM1728 1376q66 0 113-47t47-113-47-113-113-47-113 47-47 113 47 113 113 47z" + } + }] +}; +exports.cab = cab; +var taxi = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1824 896q93 0 158.5 65.5t65.5 158.5v384q0 14-9 23t-23 9h-96v64q0 80-56 136t-136 56-136-56-56-136v-64h-1024v64q0 80-56 136t-136 56-136-56-56-136v-64h-96q-14 0-23-9t-9-23v-384q0-93 65.5-158.5t158.5-65.5h28l105-419q23-94 104-157.5t179-63.5h128v-224q0-14 9-23t23-9h448q14 0 23 9t9 23v224h128q98 0 179 63.5t104 157.5l105 419h28zM320 1376q66 0 113-47t47-113-47-113-113-47-113 47-47 113 47 113 113 47zM516 896h1016l-89-357q-2-8-14-17.5t-21-9.5h-768q-9 0-21 9.5t-14 17.5zM1728 1376q66 0 113-47t47-113-47-113-113-47-113 47-47 113 47 113 113 47z" + } + }] +}; +exports.taxi = taxi; +var tree = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1504 1472q0 26-19 45t-45 19h-462q1 17 6 87.5t5 108.5q0 25-18 42.5t-43 17.5h-320q-25 0-43-17.5t-18-42.5q0-38 5-108.5t6-87.5h-462q-26 0-45-19t-19-45 19-45l402-403h-229q-26 0-45-19t-19-45 19-45l402-403h-197q-26 0-45-19t-19-45 19-45l384-384q19-19 45-19t45 19l384 384q19 19 19 45t-19 45-45 19h-197l402 403q19 19 19 45t-19 45-45 19h-229l402 403q19 19 19 45z" + } + }] +}; +exports.tree = tree; +var spotify = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1127 1210q0-32-30-51-193-115-447-115-133 0-287 34-42 9-42 52 0 20 13.5 34.5t35.5 14.5q5 0 37-8 132-27 243-27 226 0 397 103 19 11 33 11 19 0 33-13.5t14-34.5zM1223 995q0-40-35-61-237-141-548-141-153 0-303 42-48 13-48 64 0 25 17.5 42.5t42.5 17.5q7 0 37-8 122-33 251-33 279 0 488 124 24 13 38 13 25 0 42.5-17.5t17.5-42.5zM1331 747q0-47-40-70-126-73-293-110.5t-343-37.5q-204 0-364 47-23 7-38.5 25.5t-15.5 48.5q0 31 20.5 52t51.5 21q11 0 40-8 133-37 307-37 159 0 309.5 34t253.5 95q21 12 40 12 29 0 50.5-20.5t21.5-51.5zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.spotify = spotify; +var deviantart = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 303l-303 582 24 31h279v415h-507l-44 30-142 273-30 30h-301v-303l303-583-24-30h-279v-415h507l44-30 142-273 30-30h301v303z" + } + }] +}; +exports.deviantart = deviantart; +var soundcloud = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M784 1372l16-241-16-523q-1-10-7.5-17t-16.5-7q-9 0-16 7t-7 17l-14 523 14 241q1 10 7.5 16.5t15.5 6.5q22 0 24-23zM1080 1343l11-211-12-586q0-16-13-24-8-5-16-5t-16 5q-13 8-13 24l-1 6-10 579q0 1 11 236v1q0 10 6 17 9 11 23 11 11 0 20-9 9-7 9-20zM35 1003l20 128-20 126q-2 9-9 9t-9-9l-17-126 17-128q2-9 9-9t9 9zM121 924l26 207-26 203q-2 9-10 9-9 0-9-10l-23-202 23-207q0-9 9-9 8 0 10 9zM401 1377zM213 886l25 245-25 237q0 11-11 11-10 0-12-11l-21-237 21-245q2-12 12-12 11 0 11 12zM307 879l23 252-23 244q-2 13-14 13-13 0-13-13l-21-244 21-252q0-13 13-13 12 0 14 13zM401 897l21 234-21 246q-2 16-16 16-6 0-10.5-4.5t-4.5-11.5l-20-246 20-234q0-6 4.5-10.5t10.5-4.5q14 0 16 15zM784 1372zM495 751l21 380-21 246q0 7-5 12.5t-12 5.5q-16 0-18-18l-18-246 18-380q2-18 18-18 7 0 12 5.5t5 12.5zM589 665l19 468-19 244q0 8-5.5 13.5t-13.5 5.5q-18 0-20-19l-16-244 16-468q2-19 20-19 8 0 13.5 5.5t5.5 13.5zM687 625l18 506-18 242q-2 21-22 21-19 0-21-21l-16-242 16-506q0-9 6.5-15.5t14.5-6.5q9 0 15 6.5t7 15.5zM1079 1367v0 0 0zM881 621l15 510-15 239q0 10-7.5 17.5t-17.5 7.5-17-7-8-18l-14-239 14-510q0-11 7.5-18t17.5-7 17.5 7 7.5 18zM980 640l14 492-14 236q0 11-8 19t-19 8-19-8-9-19l-12-236 12-492q1-12 9-20t19-8 18.5 8 8.5 20zM1192 1132l-14 231v0q0 13-9 22t-22 9-22-9-10-22l-6-114-6-117 12-636v-3q2-15 12-24 9-7 20-7 8 0 15 5 14 8 16 26zM2304 1113q0 117-83 199.5t-200 82.5h-786q-13-2-22-11t-9-22v-899q0-23 28-33 85-34 181-34 195 0 338 131.5t160 323.5q53-22 110-22 117 0 200 83t83 201z" + } + }] +}; +exports.soundcloud = soundcloud; +var database = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M768 768q237 0 443-43t325-127v170q0 69-103 128t-280 93.5-385 34.5-385-34.5-280-93.5-103-128v-170q119 84 325 127t443 43zM768 1536q237 0 443-43t325-127v170q0 69-103 128t-280 93.5-385 34.5-385-34.5-280-93.5-103-128v-170q119 84 325 127t443 43zM768 1152q237 0 443-43t325-127v170q0 69-103 128t-280 93.5-385 34.5-385-34.5-280-93.5-103-128v-170q119 84 325 127t443 43zM768 0q208 0 385 34.5t280 93.5 103 128v128q0 69-103 128t-280 93.5-385 34.5-385-34.5-280-93.5-103-128v-128q0-69 103-128t280-93.5 385-34.5z" + } + }] +}; +exports.database = database; +var filePdfO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1468 380q28 28 48 76t20 88v1152q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h896q40 0 88 20t76 48zM1024 136v376h376q-10-29-22-41l-313-313q-12-12-41-22zM1408 1664v-1024h-416q-40 0-68-28t-28-68v-416h-768v1536h1280zM894 1071q33 26 84 56 59-7 117-7 147 0 177 49 16 22 2 52 0 1-1 2l-2 2v1q-6 38-71 38-48 0-115-20t-130-53q-221 24-392 83-153 262-242 262-15 0-28-7l-24-12q-1-1-6-5-10-10-6-36 9-40 56-91.5t132-96.5q14-9 23 6 2 2 2 4 52-85 107-197 68-136 104-262-24-82-30.5-159.5t6.5-127.5q11-40 42-40h21 1q23 0 35 15 18 21 9 68-2 6-4 8 1 3 1 8v30q-2 123-14 192 55 164 146 238zM318 1482q52-24 137-158-51 40-87.5 84t-49.5 74zM716 562q-15 42-2 132 1-7 7-44 0-3 7-43 1-4 4-8-1-1-1-2-1-2-1-3-1-22-13-36 0 1-1 2v2zM592 1223q135-54 284-81-2-1-13-9.5t-16-13.5q-76-67-127-176-27 86-83 197-30 56-45 83zM1238 1207q-24-24-140-24 76 28 124 28 14 0 18-1 0-1-2-3z" + } + }] +}; +exports.filePdfO = filePdfO; +var fileWordO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1468 380q28 28 48 76t20 88v1152q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h896q40 0 88 20t76 48zM1024 136v376h376q-10-29-22-41l-313-313q-12-12-41-22zM1408 1664v-1024h-416q-40 0-68-28t-28-68v-416h-768v1536h1280zM233 768v107h70l164 661h159l128-485q7-20 10-46 2-16 2-24h4l3 24q1 3 3.5 20t5.5 26l128 485h159l164-661h70v-107h-300v107h90l-99 438q-5 20-7 46l-2 21h-4q0-3-0.5-6.5t-1.5-8-1-6.5q-1-5-4-21t-5-25l-144-545h-114l-144 545q-2 9-4.5 24.5t-3.5 21.5l-4 21h-4l-2-21q-2-26-7-46l-99-438h90v-107h-300z" + } + }] +}; +exports.fileWordO = fileWordO; +var fileExcelO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1468 380q28 28 48 76t20 88v1152q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h896q40 0 88 20t76 48zM1024 136v376h376q-10-29-22-41l-313-313q-12-12-41-22zM1408 1664v-1024h-416q-40 0-68-28t-28-68v-416h-768v1536h1280zM429 1430v106h281v-106h-75l103-161q5-7 10-16.5t7.5-13.5 3.5-4h2q1 4 5 10 2 4 4.5 7.5t6 8 6.5 8.5l107 161h-76v106h291v-106h-68l-192-273 195-282h67v-107h-279v107h74l-103 159q-4 7-10 16.5t-9 13.5l-2 3h-2q-1-4-5-10-6-11-17-23l-106-159h76v-107h-290v107h68l189 272-194 283h-68z" + } + }] +}; +exports.fileExcelO = fileExcelO; +var filePowerpointO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1468 380q28 28 48 76t20 88v1152q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h896q40 0 88 20t76 48zM1024 136v376h376q-10-29-22-41l-313-313q-12-12-41-22zM1408 1664v-1024h-416q-40 0-68-28t-28-68v-416h-768v1536h1280zM416 1430v106h327v-106h-93v-167h137q76 0 118-15 67-23 106.5-87t39.5-146q0-81-37-141t-100-87q-48-19-130-19h-368v107h92v555h-92zM769 1150h-119v-268h120q52 0 83 18 56 33 56 115 0 89-62 120-31 15-78 15z" + } + }] +}; +exports.filePowerpointO = filePowerpointO; +var fileImageO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1468 380q28 28 48 76t20 88v1152q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h896q40 0 88 20t76 48zM1024 136v376h376q-10-29-22-41l-313-313q-12-12-41-22zM1408 1664v-1024h-416q-40 0-68-28t-28-68v-416h-768v1536h1280zM1280 1216v320h-1024v-192l192-192 128 128 384-384zM448 1024q-80 0-136-56t-56-136 56-136 136-56 136 56 56 136-56 136-136 56z" + } + }] +}; +exports.fileImageO = fileImageO; +var filePhotoO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1468 380q28 28 48 76t20 88v1152q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h896q40 0 88 20t76 48zM1024 136v376h376q-10-29-22-41l-313-313q-12-12-41-22zM1408 1664v-1024h-416q-40 0-68-28t-28-68v-416h-768v1536h1280zM1280 1216v320h-1024v-192l192-192 128 128 384-384zM448 1024q-80 0-136-56t-56-136 56-136 136-56 136 56 56 136-56 136-136 56z" + } + }] +}; +exports.filePhotoO = filePhotoO; +var filePictureO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1468 380q28 28 48 76t20 88v1152q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h896q40 0 88 20t76 48zM1024 136v376h376q-10-29-22-41l-313-313q-12-12-41-22zM1408 1664v-1024h-416q-40 0-68-28t-28-68v-416h-768v1536h1280zM1280 1216v320h-1024v-192l192-192 128 128 384-384zM448 1024q-80 0-136-56t-56-136 56-136 136-56 136 56 56 136-56 136-136 56z" + } + }] +}; +exports.filePictureO = filePictureO; +var fileArchiveO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 384v-128h-128v128h128zM768 512v-128h-128v128h128zM640 640v-128h-128v128h128zM768 768v-128h-128v128h128zM1468 380q28 28 48 76t20 88v1152q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h896q40 0 88 20t76 48zM1024 136v376h376q-10-29-22-41l-313-313q-12-12-41-22zM1408 1664v-1024h-416q-40 0-68-28t-28-68v-416h-128v128h-128v-128h-512v1536h1280zM781 943l107 349q8 27 8 52 0 83-72.5 137.5t-183.5 54.5-183.5-54.5-72.5-137.5q0-25 8-52 21-63 120-396v-128h128v128h79q22 0 39 13t23 34zM640 1408q53 0 90.5-19t37.5-45-37.5-45-90.5-19-90.5 19-37.5 45 37.5 45 90.5 19z" + } + }] +}; +exports.fileArchiveO = fileArchiveO; +var fileZipO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 384v-128h-128v128h128zM768 512v-128h-128v128h128zM640 640v-128h-128v128h128zM768 768v-128h-128v128h128zM1468 380q28 28 48 76t20 88v1152q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h896q40 0 88 20t76 48zM1024 136v376h376q-10-29-22-41l-313-313q-12-12-41-22zM1408 1664v-1024h-416q-40 0-68-28t-28-68v-416h-128v128h-128v-128h-512v1536h1280zM781 943l107 349q8 27 8 52 0 83-72.5 137.5t-183.5 54.5-183.5-54.5-72.5-137.5q0-25 8-52 21-63 120-396v-128h128v128h79q22 0 39 13t23 34zM640 1408q53 0 90.5-19t37.5-45-37.5-45-90.5-19-90.5 19-37.5 45 37.5 45 90.5 19z" + } + }] +}; +exports.fileZipO = fileZipO; +var fileAudioO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1468 380q28 28 48 76t20 88v1152q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h896q40 0 88 20t76 48zM1024 136v376h376q-10-29-22-41l-313-313q-12-12-41-22zM1408 1664v-1024h-416q-40 0-68-28t-28-68v-416h-768v1536h1280zM620 850q20 8 20 30v544q0 22-20 30-8 2-12 2-12 0-23-9l-166-167h-131q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h131l166-167q16-15 35-7zM1037 1539q31 0 50-24 129-159 129-363t-129-363q-16-21-43-24t-47 14q-21 17-23.5 43.5t14.5 47.5q100 123 100 282t-100 282q-17 21-14.5 47.5t23.5 42.5q18 15 40 15zM826 1391q27 0 47-20 87-93 87-219t-87-219q-18-19-45-20t-46 17-20 44.5 18 46.5q52 57 52 131t-52 131q-19 20-18 46.5t20 44.5q20 17 44 17z" + } + }] +}; +exports.fileAudioO = fileAudioO; +var fileSoundO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1468 380q28 28 48 76t20 88v1152q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h896q40 0 88 20t76 48zM1024 136v376h376q-10-29-22-41l-313-313q-12-12-41-22zM1408 1664v-1024h-416q-40 0-68-28t-28-68v-416h-768v1536h1280zM620 850q20 8 20 30v544q0 22-20 30-8 2-12 2-12 0-23-9l-166-167h-131q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h131l166-167q16-15 35-7zM1037 1539q31 0 50-24 129-159 129-363t-129-363q-16-21-43-24t-47 14q-21 17-23.5 43.5t14.5 47.5q100 123 100 282t-100 282q-17 21-14.5 47.5t23.5 42.5q18 15 40 15zM826 1391q27 0 47-20 87-93 87-219t-87-219q-18-19-45-20t-46 17-20 44.5 18 46.5q52 57 52 131t-52 131q-19 20-18 46.5t20 44.5q20 17 44 17z" + } + }] +}; +exports.fileSoundO = fileSoundO; +var fileMovieO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1468 380q28 28 48 76t20 88v1152q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h896q40 0 88 20t76 48zM1024 136v376h376q-10-29-22-41l-313-313q-12-12-41-22zM1408 1664v-1024h-416q-40 0-68-28t-28-68v-416h-768v1536h1280zM768 768q52 0 90 38t38 90v384q0 52-38 90t-90 38h-384q-52 0-90-38t-38-90v-384q0-52 38-90t90-38h384zM1260 770q20 8 20 30v576q0 22-20 30-8 2-12 2-14 0-23-9l-265-266v-90l265-266q9-9 23-9 4 0 12 2z" + } + }] +}; +exports.fileMovieO = fileMovieO; +var fileVideoO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1468 380q28 28 48 76t20 88v1152q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h896q40 0 88 20t76 48zM1024 136v376h376q-10-29-22-41l-313-313q-12-12-41-22zM1408 1664v-1024h-416q-40 0-68-28t-28-68v-416h-768v1536h1280zM768 768q52 0 90 38t38 90v384q0 52-38 90t-90 38h-384q-52 0-90-38t-38-90v-384q0-52 38-90t90-38h384zM1260 770q20 8 20 30v576q0 22-20 30-8 2-12 2-14 0-23-9l-265-266v-90l265-266q9-9 23-9 4 0 12 2z" + } + }] +}; +exports.fileVideoO = fileVideoO; +var fileCodeO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1468 380q28 28 48 76t20 88v1152q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h896q40 0 88 20t76 48zM1024 136v376h376q-10-29-22-41l-313-313q-12-12-41-22zM1408 1664v-1024h-416q-40 0-68-28t-28-68v-416h-768v1536h1280zM480 768q8-11 21-12.5t24 6.5l51 38q11 8 12.5 21t-6.5 24l-182 243 182 243q8 11 6.5 24t-12.5 21l-51 38q-11 8-24 6.5t-21-12.5l-226-301q-14-19 0-38zM1282 1069q14 19 0 38l-226 301q-8 11-21 12.5t-24-6.5l-51-38q-11-8-12.5-21t6.5-24l182-243-182-243q-8-11-6.5-24t12.5-21l51-38q11-8 24-6.5t21 12.5zM662 1530q-13-2-20.5-13t-5.5-24l138-831q2-13 13-20.5t24-5.5l63 10q13 2 20.5 13t5.5 24l-138 831q-2 13-13 20.5t-24 5.5z" + } + }] +}; +exports.fileCodeO = fileCodeO; +var vine = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1497 827v198q-101 23-198 23-65 136-165.5 271t-181.5 215.5-128 106.5q-80 45-162-3-28-17-60.5-43.5t-85-83.5-102.5-128.5-107.5-184-105.5-244-91.5-314.5-70.5-390h283q26 218 70 398.5t104.5 317 121.5 235.5 140 195q169-169 287-406-142-72-223-220t-81-333q0-192 104-314.5t284-122.5q178 0 273 105.5t95 297.5q0 159-58 286-7 1-19.5 3t-46 2-63-6-62-25.5-50.5-51.5q31-103 31-184 0-87-29-132t-79-45q-53 0-85 49.5t-32 140.5q0 186 105 293.5t267 107.5q62 0 121-14z" + } + }] +}; +exports.vine = vine; +var codepen = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M216 1169l603 402v-359l-334-223zM154 1025l193-129-193-129v258zM973 1571l603-402-269-180-334 223v359zM896 1078l272-182-272-182-272 182zM485 803l334-223v-359l-603 402zM1445 896l193 129v-258zM1307 803l269-180-603-402v359zM1792 623v546q0 41-34 64l-819 546q-21 13-43 13t-43-13l-819-546q-34-23-34-64v-546q0-41 34-64l819-546q21-13 43-13t43 13l819 546q34 23 34 64z" + } + }] +}; +exports.codepen = codepen; +var jsfiddle = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1800 772q111 46 179.5 145.5t68.5 221.5q0 164-118 280.5t-285 116.5q-4 0-11.5-0.5t-10.5-0.5h-1209-1-2-5q-170-10-288-125.5t-118-280.5q0-110 55-203t147-147q-12-39-12-82 0-115 82-196t199-81q95 0 172 58 75-154 222.5-248t326.5-94q166 0 306 80.5t221.5 218.5 81.5 301q0 6-0.5 18t-0.5 18zM468 1038q0 122 84 193t208 71q137 0 240-99-16-20-47.5-56.5t-43.5-50.5q-67 65-144 65-55 0-93.5-33.5t-38.5-87.5q0-53 38.5-87t91.5-34q44 0 84.5 21t73 55 65 75 69 82 77 75 97 55 121.5 21q121 0 204.5-71.5t83.5-190.5q0-121-84-192t-207-71q-143 0-241 97l93 108q66-64 142-64 52 0 92 33t40 84q0 57-37 91.5t-94 34.5q-43 0-82.5-21t-72-55-65.5-75-69.5-82-77.5-75-96.5-55-118.5-21q-122 0-207 70.5t-85 189.5z" + } + }] +}; +exports.jsfiddle = jsfiddle; +var lifeBouy = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M896 0q182 0 348 71t286 191 191 286 71 348-71 348-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71zM896 128q-190 0-361 90l194 194q82-28 167-28t167 28l194-194q-171-90-361-90zM218 1257l194-194q-28-82-28-167t28-167l-194-194q-90 171-90 361t90 361zM896 1664q190 0 361-90l-194-194q-82 28-167 28t-167-28l-194 194q171 90 361 90zM896 1280q159 0 271.5-112.5t112.5-271.5-112.5-271.5-271.5-112.5-271.5 112.5-112.5 271.5 112.5 271.5 271.5 112.5zM1380 1063l194 194q90-171 90-361t-90-361l-194 194q28 82 28 167t-28 167z" + } + }] +}; +exports.lifeBouy = lifeBouy; +var lifeBuoy = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M896 0q182 0 348 71t286 191 191 286 71 348-71 348-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71zM896 128q-190 0-361 90l194 194q82-28 167-28t167 28l194-194q-171-90-361-90zM218 1257l194-194q-28-82-28-167t28-167l-194-194q-90 171-90 361t90 361zM896 1664q190 0 361-90l-194-194q-82 28-167 28t-167-28l-194 194q171 90 361 90zM896 1280q159 0 271.5-112.5t112.5-271.5-112.5-271.5-271.5-112.5-271.5 112.5-112.5 271.5 112.5 271.5 271.5 112.5zM1380 1063l194 194q90-171 90-361t-90-361l-194 194q28 82 28 167t-28 167z" + } + }] +}; +exports.lifeBuoy = lifeBuoy; +var lifeRing = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M896 0q182 0 348 71t286 191 191 286 71 348-71 348-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71zM896 128q-190 0-361 90l194 194q82-28 167-28t167 28l194-194q-171-90-361-90zM218 1257l194-194q-28-82-28-167t28-167l-194-194q-90 171-90 361t90 361zM896 1664q190 0 361-90l-194-194q-82 28-167 28t-167-28l-194 194q171 90 361 90zM896 1280q159 0 271.5-112.5t112.5-271.5-112.5-271.5-271.5-112.5-271.5 112.5-112.5 271.5 112.5 271.5 271.5 112.5zM1380 1063l194 194q90-171 90-361t-90-361l-194 194q28 82 28 167t-28 167z" + } + }] +}; +exports.lifeRing = lifeRing; +var lifeSaver = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M896 0q182 0 348 71t286 191 191 286 71 348-71 348-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71zM896 128q-190 0-361 90l194 194q82-28 167-28t167 28l194-194q-171-90-361-90zM218 1257l194-194q-28-82-28-167t28-167l-194-194q-90 171-90 361t90 361zM896 1664q190 0 361-90l-194-194q-82 28-167 28t-167-28l-194 194q171 90 361 90zM896 1280q159 0 271.5-112.5t112.5-271.5-112.5-271.5-271.5-112.5-271.5 112.5-112.5 271.5 112.5 271.5 271.5 112.5zM1380 1063l194 194q90-171 90-361t-90-361l-194 194q28 82 28 167t-28 167z" + } + }] +}; +exports.lifeSaver = lifeSaver; +var support = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M896 0q182 0 348 71t286 191 191 286 71 348-71 348-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71zM896 128q-190 0-361 90l194 194q82-28 167-28t167 28l194-194q-171-90-361-90zM218 1257l194-194q-28-82-28-167t28-167l-194-194q-90 171-90 361t90 361zM896 1664q190 0 361-90l-194-194q-82 28-167 28t-167-28l-194 194q171 90 361 90zM896 1280q159 0 271.5-112.5t112.5-271.5-112.5-271.5-271.5-112.5-271.5 112.5-112.5 271.5 112.5 271.5 271.5 112.5zM1380 1063l194 194q90-171 90-361t-90-361l-194 194q28 82 28 167t-28 167z" + } + }] +}; +exports.support = support; +var circleONotch = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1760 896q0 176-68.5 336t-184 275.5-275.5 184-336 68.5-336-68.5-275.5-184-184-275.5-68.5-336q0-213 97-398.5t265-305.5 374-151v228q-221 45-366.5 221t-145.5 406q0 130 51 248.5t136.5 204 204 136.5 248.5 51 248.5-51 204-136.5 136.5-204 51-248.5q0-230-145.5-406t-366.5-221v-228q206 31 374 151t265 305.5 97 398.5z" + } + }] +}; +exports.circleONotch = circleONotch; +var ra = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M19 874q8-217 116-406t305-318h5q0 1-1 3-8 8-28 33.5t-52 76.5-60 110.5-44.5 135.5-14 150.5 39 157.5 108.5 154q50 50 102 69.5t90.5 11.5 69.5-23.5 47-32.5l16-16q39-51 53-116.5t6.5-122.5-21-107-26.5-80l-14-29q-10-25-30.5-49.5t-43-41-43.5-29.5-35-19l-13-6 104-115q39 17 78 52t59 61l19 27q1-48-18.5-103.5t-40.5-87.5l-20-31 161-183 160 181q-33 46-52.5 102.5t-22.5 90.5l-4 33q22-37 61.5-72.5t67.5-52.5l28-17 103 115q-44 14-85 50t-60 65l-19 29q-31 56-48 133.5t-7 170 57 156.5q33 45 77.5 60.5t85 5.5 76-26.5 57.5-33.5l21-16q60-53 96.5-115t48.5-121.5 10-121.5-18-118-37-107.5-45.5-93-45-72-34.5-47.5l-13-17q-14-13-7-13l10 3q40 29 62.5 46t62 50 64 58 58.5 65 55.5 77 45.5 88 38 103 23.5 117 10.5 136q3 259-108 465t-312 321-456 115q-185 0-351-74t-283.5-198-184-293-60.5-353z" + } + }] +}; +exports.ra = ra; +var rebel = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M19 874q8-217 116-406t305-318h5q0 1-1 3-8 8-28 33.5t-52 76.5-60 110.5-44.5 135.5-14 150.5 39 157.5 108.5 154q50 50 102 69.5t90.5 11.5 69.5-23.5 47-32.5l16-16q39-51 53-116.5t6.5-122.5-21-107-26.5-80l-14-29q-10-25-30.5-49.5t-43-41-43.5-29.5-35-19l-13-6 104-115q39 17 78 52t59 61l19 27q1-48-18.5-103.5t-40.5-87.5l-20-31 161-183 160 181q-33 46-52.5 102.5t-22.5 90.5l-4 33q22-37 61.5-72.5t67.5-52.5l28-17 103 115q-44 14-85 50t-60 65l-19 29q-31 56-48 133.5t-7 170 57 156.5q33 45 77.5 60.5t85 5.5 76-26.5 57.5-33.5l21-16q60-53 96.5-115t48.5-121.5 10-121.5-18-118-37-107.5-45.5-93-45-72-34.5-47.5l-13-17q-14-13-7-13l10 3q40 29 62.5 46t62 50 64 58 58.5 65 55.5 77 45.5 88 38 103 23.5 117 10.5 136q3 259-108 465t-312 321-456 115q-185 0-351-74t-283.5-198-184-293-60.5-353z" + } + }] +}; +exports.rebel = rebel; +var resistance = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M19 874q8-217 116-406t305-318h5q0 1-1 3-8 8-28 33.5t-52 76.5-60 110.5-44.5 135.5-14 150.5 39 157.5 108.5 154q50 50 102 69.5t90.5 11.5 69.5-23.5 47-32.5l16-16q39-51 53-116.5t6.5-122.5-21-107-26.5-80l-14-29q-10-25-30.5-49.5t-43-41-43.5-29.5-35-19l-13-6 104-115q39 17 78 52t59 61l19 27q1-48-18.5-103.5t-40.5-87.5l-20-31 161-183 160 181q-33 46-52.5 102.5t-22.5 90.5l-4 33q22-37 61.5-72.5t67.5-52.5l28-17 103 115q-44 14-85 50t-60 65l-19 29q-31 56-48 133.5t-7 170 57 156.5q33 45 77.5 60.5t85 5.5 76-26.5 57.5-33.5l21-16q60-53 96.5-115t48.5-121.5 10-121.5-18-118-37-107.5-45.5-93-45-72-34.5-47.5l-13-17q-14-13-7-13l10 3q40 29 62.5 46t62 50 64 58 58.5 65 55.5 77 45.5 88 38 103 23.5 117 10.5 136q3 259-108 465t-312 321-456 115q-185 0-351-74t-283.5-198-184-293-60.5-353z" + } + }] +}; +exports.resistance = resistance; +var empire = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M874 1638v66q-208-6-385-109.5t-283-275.5l58-34q29 49 73 99l65-57q148 168 368 212l-17 86q65 12 121 13zM276 1108l-83 28q22 60 49 112l-57 33q-98-180-98-385t98-385l57 33q-30 56-49 112l82 28q-35 100-35 212 0 109 36 212zM1528 1285l58 34q-106 172-283 275.5t-385 109.5v-66q56-1 121-13l-17-86q220-44 368-212l65 57q44-50 73-99zM1377 731l-233 80q14 42 14 85t-14 85l232 80q-31 92-98 169l-185-162q-57 67-147 85l48 241q-52 10-98 10t-98-10l48-241q-90-18-147-85l-185 162q-67-77-98-169l232-80q-14-42-14-85t14-85l-233-80q33-93 99-169l185 162q59-68 147-86l-48-240q44-10 98-10t98 10l-48 240q88 18 147 86l185-162q66 76 99 169zM874 88v66q-65 2-121 13l17 86q-220 42-368 211l-65-56q-38 42-73 98l-57-33q106-172 282-275.5t385-109.5zM1705 896q0 205-98 385l-57-33q27-52 49-112l-83-28q36-103 36-212 0-112-35-212l82-28q-19-56-49-112l57-33q98 180 98 385zM1585 473l-57 33q-35-56-73-98l-65 56q-148-169-368-211l17-86q-56-11-121-13v-66q209 6 385 109.5t282 275.5zM1748 896q0-173-67.5-331t-181.5-272-272-181.5-331-67.5-331 67.5-272 181.5-181.5 272-67.5 331 67.5 331 181.5 272 272 181.5 331 67.5 331-67.5 272-181.5 181.5-272 67.5-331zM1792 896q0 182-71 348t-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71 348 71 286 191 191 286 71 348z" + } + }] +}; +exports.empire = empire; +var ge = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M874 1638v66q-208-6-385-109.5t-283-275.5l58-34q29 49 73 99l65-57q148 168 368 212l-17 86q65 12 121 13zM276 1108l-83 28q22 60 49 112l-57 33q-98-180-98-385t98-385l57 33q-30 56-49 112l82 28q-35 100-35 212 0 109 36 212zM1528 1285l58 34q-106 172-283 275.5t-385 109.5v-66q56-1 121-13l-17-86q220-44 368-212l65 57q44-50 73-99zM1377 731l-233 80q14 42 14 85t-14 85l232 80q-31 92-98 169l-185-162q-57 67-147 85l48 241q-52 10-98 10t-98-10l48-241q-90-18-147-85l-185 162q-67-77-98-169l232-80q-14-42-14-85t14-85l-233-80q33-93 99-169l185 162q59-68 147-86l-48-240q44-10 98-10t98 10l-48 240q88 18 147 86l185-162q66 76 99 169zM874 88v66q-65 2-121 13l17 86q-220 42-368 211l-65-56q-38 42-73 98l-57-33q106-172 282-275.5t385-109.5zM1705 896q0 205-98 385l-57-33q27-52 49-112l-83-28q36-103 36-212 0-112-35-212l82-28q-19-56-49-112l57-33q98 180 98 385zM1585 473l-57 33q-35-56-73-98l-65 56q-148-169-368-211l17-86q-56-11-121-13v-66q209 6 385 109.5t282 275.5zM1748 896q0-173-67.5-331t-181.5-272-272-181.5-331-67.5-331 67.5-272 181.5-181.5 272-67.5 331 67.5 331 181.5 272 272 181.5 331 67.5 331-67.5 272-181.5 181.5-272 67.5-331zM1792 896q0 182-71 348t-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71 348 71 286 191 191 286 71 348z" + } + }] +}; +exports.ge = ge; +var gitSquare = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M582 1308q0 66-93 66-107 0-107-63 0-64 98-64 102 0 102 61zM546 842q0 85-74 85-77 0-77-84 0-90 77-90 36 0 55 25.5t19 63.5zM712 767v-125q-78 29-135 29-50-29-110-29-86 0-145 57t-59 143q0 50 29.5 102t73.5 67v3q-38 17-38 85 0 53 41 77v3q-113 37-113 139 0 45 20 78.5t54 51 72 25.5 81 8q224 0 224-188 0-67-48-99t-126-46q-27-5-51.5-20.5t-24.5-39.5q0-44 49-52 77-15 122-70t45-134q0-24-10-52 37-9 49-13zM771 1186h137q-2-27-2-82v-387q0-46 2-69h-137q3 23 3 71v392q0 50-3 75zM1280 1170v-121q-30 21-68 21-53 0-53-82v-225h52q9 0 26.5 1t26.5 1v-117h-105q0-82 3-102h-140q4 24 4 55v47h-60v117q36-3 37-3 3 0 11 0.5t12 0.5v2h-2v217q0 37 2.5 64t11.5 56.5 24.5 48.5 43.5 31 66 12q64 0 108-24zM924 464q0-36-24-63.5t-60-27.5-60.5 27-24.5 64q0 36 25 62.5t60 26.5 59.5-27 24.5-62zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.gitSquare = gitSquare; +var git = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M595 1514q0-100-165-100-158 0-158 104 0 101 172 101 151 0 151-105zM536 759q0-61-30-102t-89-41q-124 0-124 145 0 135 124 135 119 0 119-137zM805 435v202q-36 12-79 22 16 43 16 84 0 127-73 216.5t-197 112.5q-40 8-59.5 27t-19.5 58q0 31 22.5 51.5t58 32 78.5 22 86 25.5 78.5 37.5 58 64 22.5 98.5q0 304-363 304-69 0-130-12.5t-116-41-87.5-82-32.5-127.5q0-165 182-225v-4q-67-41-67-126 0-109 63-137v-4q-72-24-119.5-108.5t-47.5-165.5q0-139 95-231.5t235-92.5q96 0 178 47 98 0 218-47zM1123 1316h-222q4-45 4-134v-609q0-94-4-128h222q-4 33-4 124v613q0 89 4 134zM1724 1094v196q-71 39-174 39-62 0-107-20t-70-50-39.5-78-18.5-92-4-103v-351h2v-4q-7 0-19-1t-18-1q-21 0-59 6v-190h96v-76q0-54-6-89h227q-6 41-6 165h171v190q-15 0-43.5-2t-42.5-2h-85v365q0 131 87 131 61 0 109-33zM1148 147q0 58-39 101.5t-96 43.5q-58 0-98-43.5t-40-101.5q0-59 39.5-103t98.5-44q58 0 96.5 44.5t38.5 102.5z" + } + }] +}; +exports.git = git; +var hackerNews = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M809 1004l266-499h-112l-157 312q-24 48-44 92l-42-92-155-312h-120l263 493v324h101v-318zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.hackerNews = hackerNews; +var yCombinatorSquare = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M809 1004l266-499h-112l-157 312q-24 48-44 92l-42-92-155-312h-120l263 493v324h101v-318zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.yCombinatorSquare = yCombinatorSquare; +var ycSquare = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M809 1004l266-499h-112l-157 312q-24 48-44 92l-42-92-155-312h-120l263 493v324h101v-318zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.ycSquare = ycSquare; +var tencentWeibo = { + "viewBox": "0 0 1280 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M842 572q0 80-57 136.5t-136 56.5q-60 0-111-35-62 67-115 146-247 371-202 859 1 22-12.5 38.5t-34.5 18.5h-5q-20 0-35-13.5t-17-33.5q-14-126-3.5-247.5t29.5-217 54-186 69-155.5 74-125q61-90 132-165-16-35-16-77 0-80 56.5-136.5t136.5-56.5 136.5 56.5 56.5 136.5zM1223 583q0 158-78 292t-212.5 212-292.5 78q-64 0-131-14-21-5-32.5-23.5t-6.5-39.5q5-20 23-31.5t39-7.5q51 13 108 13 97 0 186-38t153-102 102-153 38-186-38-186-102-153-153-102-186-38-186 38-153 102-102 153-38 186q0 114 52 218 10 20 3.5 40t-25.5 30-39.5 3-30.5-26q-64-123-64-265 0-119 46.5-227t124.5-186 186-124 226-46q158 0 292.5 78t212.5 212.5 78 292.5z" + } + }] +}; +exports.tencentWeibo = tencentWeibo; +var qq = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M270 806q-8-19-8-52 0-20 11-49t24-45q-1-22 7.5-53t22.5-43q0-139 92.5-288.5t217.5-209.5q139-66 324-66 133 0 266 55 49 21 90 48t71 56 55 68 42 74 32.5 84.5 25.5 89.5 22 98l1 5q55 83 55 150 0 14-9 40t-9 38q0 1 1.5 3.5t3.5 5 2 3.5q77 114 120.5 214.5t43.5 208.5q0 43-19.5 100t-55.5 57q-9 0-19.5-7.5t-19-17.5-19-26-16-26.5-13.5-26-9-17.5q-1-1-3-1l-5 4q-59 154-132 223 20 20 61.5 38.5t69 41.5 35.5 65q-2 4-4 16t-7 18q-64 97-302 97-53 0-110.5-9t-98-20-104.5-30q-15-5-23-7-14-4-46-4.5t-40-1.5q-41 45-127.5 65t-168.5 20q-35 0-69-1.5t-93-9-101-20.5-74.5-40-32.5-64q0-40 10-59.5t41-48.5q11-2 40.5-13t49.5-12q4 0 14-2 2-2 2-4l-2-3q-48-11-108-105.5t-73-156.5l-5-3q-4 0-12 20-18 41-54.5 74.5t-77.5 37.5h-1q-4 0-6-4.5t-5-5.5q-23-54-23-100 0-275 252-466z" + } + }] +}; +exports.qq = qq; +var wechat = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M580 461q0-41-25-66t-66-25q-43 0-76 25.5t-33 65.5q0 39 33 64.5t76 25.5q41 0 66-24.5t25-65.5zM1323 968q0-28-25.5-50t-65.5-22q-27 0-49.5 22.5t-22.5 49.5q0 28 22.5 50.5t49.5 22.5q40 0 65.5-22t25.5-51zM1087 461q0-41-24.5-66t-65.5-25q-43 0-76 25.5t-33 65.5q0 39 33 64.5t76 25.5q41 0 65.5-24.5t24.5-65.5zM1722 968q0-28-26-50t-65-22q-27 0-49.5 22.5t-22.5 49.5q0 28 22.5 50.5t49.5 22.5q39 0 65-22t26-51zM1456 571q-31-4-70-4-169 0-311 77t-223.5 208.5-81.5 287.5q0 78 23 152-35 3-68 3-26 0-50-1.5t-55-6.5-44.5-7-54.5-10.5-50-10.5l-253 127 72-218q-290-203-290-490 0-169 97.5-311t264-223.5 363.5-81.5q176 0 332.5 66t262 182.5 136.5 260.5zM2048 1132q0 117-68.5 223.5t-185.5 193.5l55 181-199-109q-150 37-218 37-169 0-311-70.5t-223.5-191.5-81.5-264 81.5-264 223.5-191.5 311-70.5q161 0 303 70.5t227.5 192 85.5 263.5z" + } + }] +}; +exports.wechat = wechat; +var weixin = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M580 461q0-41-25-66t-66-25q-43 0-76 25.5t-33 65.5q0 39 33 64.5t76 25.5q41 0 66-24.5t25-65.5zM1323 968q0-28-25.5-50t-65.5-22q-27 0-49.5 22.5t-22.5 49.5q0 28 22.5 50.5t49.5 22.5q40 0 65.5-22t25.5-51zM1087 461q0-41-24.5-66t-65.5-25q-43 0-76 25.5t-33 65.5q0 39 33 64.5t76 25.5q41 0 65.5-24.5t24.5-65.5zM1722 968q0-28-26-50t-65-22q-27 0-49.5 22.5t-22.5 49.5q0 28 22.5 50.5t49.5 22.5q39 0 65-22t26-51zM1456 571q-31-4-70-4-169 0-311 77t-223.5 208.5-81.5 287.5q0 78 23 152-35 3-68 3-26 0-50-1.5t-55-6.5-44.5-7-54.5-10.5-50-10.5l-253 127 72-218q-290-203-290-490 0-169 97.5-311t264-223.5 363.5-81.5q176 0 332.5 66t262 182.5 136.5 260.5zM2048 1132q0 117-68.5 223.5t-185.5 193.5l55 181-199-109q-150 37-218 37-169 0-311-70.5t-223.5-191.5-81.5-264 81.5-264 223.5-191.5 311-70.5q161 0 303 70.5t227.5 192 85.5 263.5z" + } + }] +}; +exports.weixin = weixin; +var paperPlane = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1764 11q33 24 27 64l-256 1536q-5 29-32 45-14 8-31 8-11 0-24-5l-453-185-242 295q-18 23-49 23-13 0-22-4-19-7-30.5-23.5t-11.5-36.5v-349l864-1059-1069 925-395-162q-37-14-40-55-2-40 32-59l1664-960q15-9 32-9 20 0 36 11z" + } + }] +}; +exports.paperPlane = paperPlane; +var send = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1764 11q33 24 27 64l-256 1536q-5 29-32 45-14 8-31 8-11 0-24-5l-453-185-242 295q-18 23-49 23-13 0-22-4-19-7-30.5-23.5t-11.5-36.5v-349l864-1059-1069 925-395-162q-37-14-40-55-2-40 32-59l1664-960q15-9 32-9 20 0 36 11z" + } + }] +}; +exports.send = send; +var paperPlaneO = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1764 11q33 24 27 64l-256 1536q-5 29-32 45-14 8-31 8-11 0-24-5l-527-215-298 327q-18 21-47 21-14 0-23-4-19-7-30-23.5t-11-36.5v-452l-472-193q-37-14-40-55-3-39 32-59l1664-960q35-21 68 2zM1422 1510l221-1323-1434 827 336 137 863-639-478 797z" + } + }] +}; +exports.paperPlaneO = paperPlaneO; +var sendO = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1764 11q33 24 27 64l-256 1536q-5 29-32 45-14 8-31 8-11 0-24-5l-527-215-298 327q-18 21-47 21-14 0-23-4-19-7-30-23.5t-11-36.5v-452l-472-193q-37-14-40-55-3-39 32-59l1664-960q35-21 68 2zM1422 1510l221-1323-1434 827 336 137 863-639-478 797z" + } + }] +}; +exports.sendO = sendO; +var history = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1536 896q0 156-61 298t-164 245-245 164-298 61q-172 0-327-72.5t-264-204.5q-7-10-6.5-22.5t8.5-20.5l137-138q10-9 25-9 16 2 23 12 73 95 179 147t225 52q104 0 198.5-40.5t163.5-109.5 109.5-163.5 40.5-198.5-40.5-198.5-109.5-163.5-163.5-109.5-198.5-40.5q-98 0-188 35.5t-160 101.5l137 138q31 30 14 69-17 40-59 40h-448q-26 0-45-19t-19-45v-448q0-42 40-59 39-17 69 14l130 129q107-101 244.5-156.5t284.5-55.5q156 0 298 61t245 164 164 245 61 298zM896 608v448q0 14-9 23t-23 9h-320q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h224v-352q0-14 9-23t23-9h64q14 0 23 9t9 23z" + } + }] +}; +exports.history = history; +var circleThin = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M768 256q-130 0-248.5 51t-204 136.5-136.5 204-51 248.5 51 248.5 136.5 204 204 136.5 248.5 51 248.5-51 204-136.5 136.5-204 51-248.5-51-248.5-136.5-204-204-136.5-248.5-51zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.circleThin = circleThin; +var header = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1682 1664q-44 0-132.5-3.5t-133.5-3.5q-44 0-132 3.5t-132 3.5q-24 0-37-20.5t-13-45.5q0-31 17-46t39-17 51-7 45-15q33-21 33-140l-1-391q0-21-1-31-13-4-50-4h-675q-38 0-51 4-1 10-1 31l-1 371q0 142 37 164 16 10 48 13t57 3.5 45 15 20 45.5q0 26-12.5 48t-36.5 22q-47 0-139.5-3.5t-138.5-3.5q-43 0-128 3.5t-127 3.5q-23 0-35.5-21t-12.5-45q0-30 15.5-45t36-17.5 47.5-7.5 42-15q33-23 33-143l-1-57v-813q0-3 0.5-26t0-36.5-1.5-38.5-3.5-42-6.5-36.5-11-31.5-16-18q-15-10-45-12t-53-2-41-14-18-45q0-26 12-48t36-22q46 0 138.5 3.5t138.5 3.5q42 0 126.5-3.5t126.5-3.5q25 0 37.5 22t12.5 48q0 30-17 43.5t-38.5 14.5-49.5 4-43 13q-35 21-35 160l1 320q0 21 1 32 13 3 39 3h699q25 0 38-3 1-11 1-32l1-320q0-139-35-160-18-11-58.5-12.5t-66-13-25.5-49.5q0-26 12.5-48t37.5-22q44 0 132 3.5t132 3.5q43 0 129-3.5t129-3.5q25 0 37.5 22t12.5 48q0 30-17.5 44t-40 14.5-51.5 3-44 12.5q-35 23-35 161l1 943q0 119 34 140 16 10 46 13.5t53.5 4.5 41.5 15.5 18 44.5q0 26-12 48t-36 22z" + } + }] +}; +exports.header = header; +var paragraph = { + "viewBox": "0 0 1280 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1278 189v73q0 29-18.5 61t-42.5 32q-50 0-54 1-26 6-32 31-3 11-3 64v1152q0 25-18 43t-43 18h-108q-25 0-43-18t-18-43v-1218h-143v1218q0 25-17.5 43t-43.5 18h-108q-26 0-43.5-18t-17.5-43v-496q-147-12-245-59-126-58-192-179-64-117-64-259 0-166 88-286 88-118 209-159 111-37 417-37h479q25 0 43 18t18 43z" + } + }] +}; +exports.paragraph = paragraph; +var sliders = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M352 1408v128h-352v-128h352zM704 1280q26 0 45 19t19 45v256q0 26-19 45t-45 19h-256q-26 0-45-19t-19-45v-256q0-26 19-45t45-19h256zM864 896v128h-864v-128h864zM224 384v128h-224v-128h224zM1536 1408v128h-736v-128h736zM576 256q26 0 45 19t19 45v256q0 26-19 45t-45 19h-256q-26 0-45-19t-19-45v-256q0-26 19-45t45-19h256zM1216 768q26 0 45 19t19 45v256q0 26-19 45t-45 19h-256q-26 0-45-19t-19-45v-256q0-26 19-45t45-19h256zM1536 896v128h-224v-128h224zM1536 384v128h-864v-128h864z" + } + }] +}; +exports.sliders = sliders; +var shareAlt = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1216 1024q133 0 226.5 93.5t93.5 226.5-93.5 226.5-226.5 93.5-226.5-93.5-93.5-226.5q0-12 2-34l-360-180q-92 86-218 86-133 0-226.5-93.5t-93.5-226.5 93.5-226.5 226.5-93.5q126 0 218 86l360-180q-2-22-2-34 0-133 93.5-226.5t226.5-93.5 226.5 93.5 93.5 226.5-93.5 226.5-226.5 93.5q-126 0-218-86l-360 180q2 22 2 34t-2 34l360 180q92-86 218-86z" + } + }] +}; +exports.shareAlt = shareAlt; +var shareAltSquare = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1280 1195q0-88-62.5-151t-150.5-63q-84 0-145 58l-241-120q2-16 2-23t-2-23l241-120q61 58 145 58 88 0 150.5-63t62.5-151-62.5-150.5-150.5-62.5-151 62.5-63 150.5q0 7 2 23l-241 120q-62-57-145-57-88 0-150.5 62.5t-62.5 150.5 62.5 150.5 150.5 62.5q83 0 145-57l241 120q-2 16-2 23 0 88 63 150.5t151 62.5 150.5-62.5 62.5-150.5zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.shareAltSquare = shareAltSquare; +var bomb = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M571 589q-10-25-34-35t-49 0q-108 44-191 127t-127 191q-10 25 0 49t35 34q13 5 24 5 42 0 60-40 34-84 98.5-148.5t148.5-98.5q25-11 35-35t0-49zM1513 233l46 46-244 243 68 68q19 19 19 45.5t-19 45.5l-64 64q89 161 89 343 0 143-55.5 273.5t-150 225-225 150-273.5 55.5-273.5-55.5-225-150-150-225-55.5-273.5 55.5-273.5 150-225 225-150 273.5-55.5q182 0 343 89l64-64q19-19 45.5-19t45.5 19l68 68zM1521 177q-10 10-22 10-13 0-23-10l-91-90q-9-10-9-23t9-23q10-9 23-9t23 9l90 91q10 9 10 22.5t-10 22.5zM1751 407q-11 9-23 9t-23-9l-90-91q-10-9-10-22.5t10-22.5q9-10 22.5-10t22.5 10l91 90q9 10 9 23t-9 23zM1792 224q0 14-9 23t-23 9h-96q-14 0-23-9t-9-23 9-23 23-9h96q14 0 23 9t9 23zM1600 32v96q0 14-9 23t-23 9-23-9-9-23v-96q0-14 9-23t23-9 23 9 9 23zM1751 87l-91 90q-10 10-22 10-13 0-23-10-10-9-10-22.5t10-22.5l90-91q10-9 23-9t23 9q9 10 9 23t-9 23z" + } + }] +}; +exports.bomb = bomb; +var futbolO = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M609 816l287-208 287 208-109 336h-355zM896 0q182 0 348 71t286 191 191 286 71 348-71 348-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71zM1515 1350q149-203 149-454v-3l-102 89-240-224 63-323 134 12q-150-206-389-282l53 124-287 159-287-159 53-124q-239 76-389 282l135-12 62 323-240 224-102-89v3q0 251 149 454l30-132 326 40 139 298-116 69q117 39 240 39t240-39l-116-69 139-298 326-40z" + } + }] +}; +exports.futbolO = futbolO; +var soccerBallO = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M609 816l287-208 287 208-109 336h-355zM896 0q182 0 348 71t286 191 191 286 71 348-71 348-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71zM1515 1350q149-203 149-454v-3l-102 89-240-224 63-323 134 12q-150-206-389-282l53 124-287 159-287-159 53-124q-239 76-389 282l135-12 62 323-240 224-102-89v3q0 251 149 454l30-132 326 40 139 298-116 69q117 39 240 39t240-39l-116-69 139-298 326-40z" + } + }] +}; +exports.soccerBallO = soccerBallO; +var tty = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M448 1312v192q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h192q14 0 23 9t9 23zM256 928v192q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h192q14 0 23 9t9 23zM832 1312v192q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h192q14 0 23 9t9 23zM640 928v192q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h192q14 0 23 9t9 23zM66 768q-28 0-47-19t-19-46v-129h514v129q0 27-19 46t-46 19h-383zM1216 1312v192q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h192q14 0 23 9t9 23zM1024 928v192q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h192q14 0 23 9t9 23zM1600 1312v192q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h192q14 0 23 9t9 23zM1408 928v192q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h192q14 0 23 9t9 23zM1792 520v13h-514v-10q0-104-382-102-382 1-382 102v10h-514v-13q0-17 8.5-43t34-64 65.5-75.5 110.5-76 160-67.5 224-47.5 293.5-18.5 293 18.5 224 47.5 160.5 67.5 110.5 76 65.5 75.5 34 64 8.5 43zM1792 928v192q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h192q14 0 23 9t9 23zM1792 574v129q0 27-19 46t-46 19h-384q-27 0-46-19t-19-46v-129h514z" + } + }] +}; +exports.tty = tty; +var binoculars = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M704 320v768q0 26-19 45t-45 19v576q0 26-19 45t-45 19h-512q-26 0-45-19t-19-45v-512l249-873q7-23 31-23h424zM1024 320v704h-256v-704h256zM1792 1216v512q0 26-19 45t-45 19h-512q-26 0-45-19t-19-45v-576q-26 0-45-19t-19-45v-768h424q24 0 31 23zM736 32v224h-352v-224q0-14 9-23t23-9h288q14 0 23 9t9 23zM1408 32v224h-352v-224q0-14 9-23t23-9h288q14 0 23 9t9 23z" + } + }] +}; +exports.binoculars = binoculars; +var plug = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1755 453q37 38 37 90.5t-37 90.5l-401 400 150 150-160 160q-163 163-389.5 186.5t-411.5-100.5l-362 362h-181v-181l362-362q-124-185-100.5-411.5t186.5-389.5l160-160 150 150 400-401q38-37 91-37t90 37 37 90.5-37 90.5l-400 401 234 234 401-400q38-37 91-37t90 37z" + } + }] +}; +exports.plug = plug; +var slideshare = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M873 740q0 83-63.5 142.5t-152.5 59.5-152.5-59.5-63.5-142.5q0-84 63.5-143t152.5-59 152.5 59 63.5 143zM1375 740q0 83-63 142.5t-153 59.5q-89 0-152.5-59.5t-63.5-142.5q0-84 63.5-143t152.5-59q90 0 153 59t63 143zM1600 920v-667q0-87-32-123.5t-111-36.5h-1112q-83 0-112.5 34t-29.5 126v673q43 23 88.5 40t81 28 81 18.5 71 11 70 4 58.5 0.5 56.5-2 44.5-2q68-1 95 27 6 6 10 9 26 25 61 51 7-91 118-87 5 0 36.5 1.5t43 2 45.5 1 53-1 54.5-4.5 61-8.5 62-13.5 67-19.5 67.5-27 72-34.5zM1763 915q-121 149-372 252 84 285-23 465-66 113-183 148-104 32-182-15-86-51-82-164l-1-326v-1q-8-2-24.5-6t-23.5-5l-1 338q4 114-83 164-79 47-183 15-117-36-182-150-105-180-22-463-251-103-372-252-25-37-4-63t60 1q4 2 11.5 7t10.5 8v-694q0-72 47-123t114-51h1257q67 0 114 51t47 123v694l21-15q39-27 60-1t-4 63z" + } + }] +}; +exports.slideshare = slideshare; +var twitch = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M896 434v434h-145v-434h145zM1294 434v434h-145v-434h145zM1294 1194l253-254v-795h-1194v1049h326v217l217-217h398zM1692 0v1013l-434 434h-326l-217 217h-217v-217h-398v-1158l109-289h1483z" + } + }] +}; +exports.twitch = twitch; +var yelp = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M773 1319v127q-1 292-6 305-12 32-51 40-54 9-181.5-38t-162.5-89q-13-15-17-36-1-12 4-26 4-10 34-47t181-216q1 0 60-70 15-19 39.5-24.5t49.5 3.5q24 10 37.5 29t12.5 42zM624 1068q-3 55-52 70l-120 39q-275 88-292 88-35-2-54-36-12-25-17-75-8-76 1-166.5t30-124.5 56-32q13 0 202 77 71 29 115 47l84 34q23 9 35.5 30.5t11.5 48.5zM1450 1365q-7 54-91.5 161t-135.5 127q-37 14-63-7-14-10-184-287l-47-77q-14-21-11.5-46t19.5-46q35-43 83-26 1 1 119 40 203 66 242 79.5t47 20.5q28 22 22 61zM778 733q5 102-54 122-58 17-114-71l-378-598q-8-35 19-62 41-43 207.5-89.5t224.5-31.5q40 10 49 45 3 18 22 305.5t24 379.5zM1440 841q3 39-26 59-15 10-329 86-67 15-91 23l1-2q-23 6-46-4t-37-32q-30-47 0-87 1-1 75-102 125-171 150-204t34-39q28-19 65-2 48 23 123 133.5t81 167.5v3z" + } + }] +}; +exports.yelp = yelp; +var newspaperO = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 512h-384v384h384v-384zM1152 1152v128h-640v-128h640zM1152 384v640h-640v-640h640zM1792 1152v128h-512v-128h512zM1792 896v128h-512v-128h512zM1792 640v128h-512v-128h512zM1792 384v128h-512v-128h512zM256 1344v-960h-128v960q0 26 19 45t45 19 45-19 19-45zM1920 1344v-1088h-1536v1088q0 33-11 64h1483q26 0 45-19t19-45zM2048 128v1216q0 80-56 136t-136 56h-1664q-80 0-136-56t-56-136v-1088h256v-128h1792z" + } + }] +}; +exports.newspaperO = newspaperO; +var wifi = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 1523q-20 0-93-73.5t-73-93.5q0-32 62.5-54t103.5-22 103.5 22 62.5 54q0 20-73 93.5t-93 73.5zM1294 1252q-2 0-40-25t-101.5-50-128.5-25-128.5 25-101 50-40.5 25q-18 0-93.5-75t-75.5-93q0-13 10-23 78-77 196-121t233-44 233 44 196 121q10 10 10 23 0 18-75.5 93t-93.5 75zM1567 980q-11 0-23-8-136-105-252-154.5t-268-49.5q-85 0-170.5 22t-149 53-113.5 62-79 53-31 22q-17 0-92-75t-75-93q0-12 10-22 132-132 320-205t380-73 380 73 320 205q10 10 10 22 0 18-75 93t-92 75zM1838 709q-11 0-22-9-179-157-371.5-236.5t-420.5-79.5-420.5 79.5-371.5 236.5q-11 9-22 9-17 0-92.5-75t-75.5-93q0-13 10-23 187-186 445-288t527-102 527 102 445 288q10 10 10 23 0 18-75.5 93t-92.5 75z" + } + }] +}; +exports.wifi = wifi; +var calculator = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M384 1536q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM768 1536q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM384 1152q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1152 1536q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM768 1152q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM384 768q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1152 1152q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM768 768q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1536 1536v-384q0-52-38-90t-90-38-90 38-38 90v384q0 52 38 90t90 38 90-38 38-90zM1152 768q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1536 448v-256q0-26-19-45t-45-19h-1280q-26 0-45 19t-19 45v256q0 26 19 45t45 19h1280q26 0 45-19t19-45zM1536 768q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1664 128v1536q0 52-38 90t-90 38h-1408q-52 0-90-38t-38-90v-1536q0-52 38-90t90-38h1408q52 0 90 38t38 90z" + } + }] +}; +exports.calculator = calculator; +var paypal = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1519 646q18 84-4 204-87 444-565 444h-44q-25 0-44 16.5t-24 42.5l-4 19-55 346-2 15q-5 26-24.5 42.5t-44.5 16.5h-251q-21 0-33-15t-9-36q9-56 26.5-168t26.5-168 27-167.5 27-167.5q5-37 43-37h131q133 2 236-21 175-39 287-144 102-95 155-246 24-70 35-133 1-6 2.5-7.5t3.5-1 6 3.5q79 59 98 162zM1347 364q0 107-46 236-80 233-302 315-113 40-252 42 0 1-90 1l-90-1q-100 0-118 96-2 8-85 530-1 10-12 10h-295q-22 0-36.5-16.5t-11.5-38.5l232-1471q5-29 27.5-48t51.5-19h598q34 0 97.5 13t111.5 32q107 41 163.5 123t56.5 196z" + } + }] +}; +exports.paypal = paypal; +var googleWallet = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M441 672q33 0 52 26 266 364 362 774h-446q-127-441-367-749-12-16-3-33.5t29-17.5h373zM1000 1029q-49 199-125 393-79-310-256-594 40-221 44-449 211 340 337 650zM1099 320q235 324 384.5 698.5t184.5 773.5h-451q-41-665-553-1472h435zM1792 896q0 424-101 812-67-560-359-1083-25-301-106-584-4-16 5.5-28.5t25.5-12.5h359q21 0 38.5 13t22.5 33q115 409 115 850z" + } + }] +}; +exports.googleWallet = googleWallet; +var ccVisa = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1975 990h-138q14-37 66-179l3-9q4-10 10-26t9-26l12 55zM531 925l-58-295q-11-54-75-54h-268l-2 13q311 79 403 336zM710 576l-162 438-17-89q-26-70-85-129.5t-131-88.5l135 510h175l261-641h-176zM849 1218h166l104-642h-166zM1617 592q-69-27-149-27-123 0-201 59t-79 153q-1 102 145 174 48 23 67 41t19 39q0 30-30 46t-69 16q-86 0-156-33l-22-11-23 144q74 34 185 34 130 1 208.5-59t80.5-160q0-106-140-174-49-25-71-42t-22-38q0-22 24.5-38.5t70.5-16.5q70-1 124 24l15 8zM2042 576h-128q-65 0-87 54l-246 588h174l35-96h212q5 22 20 96h154zM2304 256v1280q0 52-38 90t-90 38h-2048q-52 0-90-38t-38-90v-1280q0-52 38-90t90-38h2048q52 0 90 38t38 90z" + } + }] +}; +exports.ccVisa = ccVisa; +var ccMastercard = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1119 341q-128-85-281-85-103 0-197.5 40.5t-162.5 108.5-108.5 162-40.5 197q0 104 40.5 198t108.5 162 162 108.5 198 40.5q153 0 281-85-131-107-178-265.5t0.5-316.5 177.5-265zM1152 365q-126 99-172 249.5t-0.5 300.5 172.5 249q127-99 172.5-249t-0.5-300.5-172-249.5zM1185 341q130 107 177.5 265.5t0.5 317-178 264.5q128 85 281 85 104 0 198-40.5t162-108.5 108.5-162 40.5-198q0-103-40.5-197t-108.5-162-162.5-108.5-197.5-40.5q-153 0-281 85zM1926 1063h7v-3h-17v3h7v17h3v-17zM1955 1080h4v-20h-5l-6 13-6-13h-5v20h3v-15l6 13h4l5-13v15zM1947 1520v2h-2-3v-3h3 2v1zM1947 1529h3l-4-5h2l1-1q1-1 1-3t-1-3l-1-1h-3-6v13h3v-5h1zM685 1461q0-19 11-31t30-12q18 0 29 12.5t11 30.5q0 19-11 31t-29 12q-19 0-30-12t-11-31zM1158 1417q30 0 35 32h-70q5-32 35-32zM1514 1461q0-19 11-31t29-12 29.5 12.5 11.5 30.5q0 19-11 31t-30 12q-18 0-29-12t-11-31zM1786 1461q0-18 11.5-30.5t29.5-12.5 29.5 12.5 11.5 30.5q0 19-11.5 31t-29.5 12-29.5-12.5-11.5-30.5zM1944 1533q-2 0-4-1-1 0-3-2t-2-3q-1-2-1-4 0-3 1-4 0-2 2-4l1-1q2 0 2-1 2-1 4-1 3 0 4 1l4 2 2 4v1q1 2 1 3l-1 1v3t-1 1l-1 2q-2 2-4 2-1 1-4 1zM599 1529h30v-85q0-24-14.5-38.5t-39.5-15.5q-32 0-47 24-14-24-45-24-24 0-39 20v-16h-30v135h30v-75q0-36 33-36 30 0 30 36v75h29v-75q0-36 33-36 30 0 30 36v75zM765 1529h29v-68-67h-29v16q-17-20-43-20-29 0-48 20t-19 51 19 51 48 20q28 0 43-20v17zM943 1488q0-34-47-40l-14-2q-23-4-23-14 0-15 25-15 23 0 43 11l12-24q-22-14-55-14-26 0-41 12t-15 32q0 33 47 39l13 2q24 4 24 14 0 17-31 17-25 0-45-14l-13 23q25 17 58 17 29 0 45.5-12t16.5-32zM1073 1522l-8-25q-13 7-26 7-19 0-19-22v-61h48v-27h-48v-41h-30v41h-28v27h28v61q0 50 47 50 21 0 36-10zM1159 1390q-29 0-48 20t-19 51q0 32 19.5 51.5t49.5 19.5q33 0 55-19l-14-22q-18 15-39 15-34 0-41-33h101v-12q0-32-18-51.5t-46-19.5zM1318 1390q-23 0-35 20v-16h-30v135h30v-76q0-35 29-35 10 0 18 4l9-28q-9-4-21-4zM1348 1461q0 31 19.5 51t52.5 20q29 0 48-16l-14-24q-18 13-35 12-18 0-29.5-12t-11.5-31 11.5-31 29.5-12q19 0 35 12l14-24q-20-16-48-16-33 0-52.5 20t-19.5 51zM1593 1529h30v-68-67h-30v16q-15-20-42-20-29 0-48.5 20t-19.5 51 19.5 51 48.5 20q28 0 42-20v17zM1726 1390q-23 0-35 20v-16h-29v135h29v-76q0-35 29-35 10 0 18 4l9-28q-8-4-21-4zM1866 1529h29v-68-122h-29v71q-15-20-43-20t-47.5 20.5-19.5 50.5 19.5 50.5 47.5 20.5q29 0 43-20v17zM1944 1509l-2 1h-3q-2 1-4 3-3 1-3 4-1 2-1 6 0 3 1 5 0 2 3 4 2 2 4 3t5 1q4 0 6-1 0-1 2-2l2-1q1-1 3-4 1-2 1-5 0-4-1-6-1-1-3-4 0-1-2-2l-2-1q-1 0-3-0.5t-3-0.5zM2304 256v1280q0 52-38 90t-90 38h-2048q-52 0-90-38t-38-90v-1280q0-52 38-90t90-38h2048q52 0 90 38t38 90z" + } + }] +}; +exports.ccMastercard = ccMastercard; +var ccDiscover = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M313 777q0 51-36 84-29 26-89 26h-17v-220h17q61 0 89 27 36 31 36 83zM2089 712q0 52-64 52h-19v-101h20q63 0 63 49zM380 777q0-74-50-120.5t-129-46.5h-95v333h95q74 0 119-38 60-51 60-128zM410 943h65v-333h-65v333zM730 842q0-40-20.5-62t-75.5-42q-29-10-39.5-19t-10.5-23q0-16 13.5-26.5t34.5-10.5q29 0 53 27l34-44q-41-37-98-37-44 0-74 27.5t-30 67.5q0 35 18 55.5t64 36.5q37 13 45 19 19 12 19 34 0 20-14 33.5t-36 13.5q-48 0-71-44l-42 40q44 64 115 64 51 0 83-30.5t32-79.5zM1008 932v-77q-37 37-78 37-49 0-80.5-32.5t-31.5-82.5q0-48 31.5-81.5t77.5-33.5q43 0 81 38v-77q-40-20-80-20-74 0-125.5 50.5t-51.5 123.5 51 123.5 125 50.5q42 0 81-19zM2240 1536v-527q-65 40-144.5 84t-237.5 117-329.5 137.5-417.5 134.5-504 118h1569q26 0 45-19t19-45zM1389 779q0-75-53-128t-128-53-128 53-53 128 53 128 128 53 128-53 53-128zM1541 952l144-342h-71l-90 224-89-224h-71l142 342h35zM1714 943h184v-56h-119v-90h115v-56h-115v-74h119v-57h-184v333zM2105 943h80l-105-140q76-16 76-94 0-47-31-73t-87-26h-97v333h65v-133h9zM2304 262v1268q0 56-38.5 95t-93.5 39h-2040q-55 0-93.5-39t-38.5-95v-1268q0-56 38.5-95t93.5-39h2040q55 0 93.5 39t38.5 95z" + } + }] +}; +exports.ccDiscover = ccDiscover; +var ccAmex = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M119 682h89l-45-108zM740 1208l74-79-70-79h-163v49h142v55h-142v54h159zM898 1130l99 110v-217zM1186 1083q0-33-40-33h-84v69h83q41 0 41-36zM1475 1079q0-29-42-29h-82v61h81q43 0 43-32zM1197 613q0-29-42-29h-82v60h81q43 0 43-31zM1656 682h89l-44-108zM699 527v271h-66v-212l-94 212h-57l-94-212v212h-132l-25-60h-135l-25 60h-70l116-271h96l110 257v-257h106l85 184 77-184h108zM1255 1083q0 20-5.5 35t-14 25-22.5 16.5-26 10-31.5 4.5-31.5 1-32.5-0.5-29.5-0.5v91h-126l-80-90-83 90h-256v-271h260l80 89 82-89h207q109 0 109 89zM964 742v56h-217v-271h217v57h-152v49h148v55h-148v54h152zM2304 1301v229q0 55-38.5 94.5t-93.5 39.5h-2040q-55 0-93.5-39.5t-38.5-94.5v-678h111l25-61h55l25 61h218v-46l19 46h113l20-47v47h541v-99l10-1q10 0 10 14v86h279v-23q23 12 55 18t52.5 6.5 63-0.5 51.5-1l25-61h56l25 61h227v-58l34 58h182v-378h-180v44l-25-44h-185v44l-23-44h-249q-69 0-109 22v-22h-172v22q-24-22-73-22h-628l-43 97-43-97h-198v44l-22-44h-169l-78 179v-391q0-55 38.5-94.5t93.5-39.5h2040q55 0 93.5 39.5t38.5 94.5v678h-120q-51 0-81 22v-22h-177q-55 0-78 22v-22h-316v22q-31-22-87-22h-209v22q-23-22-91-22h-234l-54 58-50-58h-349v378h343l55-59 52 59h211v-89h21q59 0 90-13v102h174v-99h8q8 0 10 2t2 10v87h529q57 0 88-24v24h168q60 0 95-17zM1546 1067q0 23-12 43t-34 29q25 9 34 26t9 46v54h-65v-45q0-33-12-43.5t-46-10.5h-69v99h-65v-271h154q48 0 77 15t29 58zM1269 600q0 24-12.5 44t-33.5 29q26 9 34.5 25.5t8.5 46.5v53h-65q0-9 0.5-26.5t0-25-3-18.5-8.5-16-17.5-8.5-29.5-3.5h-70v98h-64v-271l153 1q49 0 78 14.5t29 57.5zM1798 1209v56h-216v-271h216v56h-151v49h148v55h-148v54zM1372 527v271h-66v-271h66zM2065 1179q0 86-102 86h-126v-58h126q34 0 34-25 0-16-17-21t-41.5-5-49.5-3.5-42-22.5-17-55q0-39 26-60t66-21h130v57h-119q-36 0-36 25 0 16 17.5 20.5t42 4 49 2.5 42 21.5 17.5 54.5zM2304 1129v101q-24 35-88 35h-125v-58h125q33 0 33-25 0-13-12.5-19t-31-5.5-40-2-40-8-31-24-12.5-48.5q0-39 26.5-60t66.5-21h129v57h-118q-36 0-36 25 0 20 29 22t68.5 5 56.5 26zM2139 528v270h-92l-122-203v203h-132l-26-60h-134l-25 60h-75q-129 0-129-133 0-138 133-138h63v59q-7 0-28-1t-28.5-0.5-23 2-21.5 6.5-14.5 13.5-11.5 23-3 33.5q0 38 13.5 58t49.5 20h29l92-213h97l109 256v-256h99l114 188v-188h66z" + } + }] +}; +exports.ccAmex = ccAmex; +var ccPaypal = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M745 906q0 37-25.5 61.5t-62.5 24.5q-29 0-46.5-16t-17.5-44q0-37 25-62.5t62-25.5q28 0 46.5 16.5t18.5 45.5zM1530 757q0 42-22 57t-66 15l-32 1 17-107q2-11 13-11h18q22 0 35 2t25 12.5 12 30.5zM1881 906q0 36-25.5 61t-61.5 25q-29 0-47-16t-18-44q0-37 25-62.5t62-25.5q28 0 46.5 16.5t18.5 45.5zM513 735q0-59-38.5-85.5t-100.5-26.5h-160q-19 0-21 19l-65 408q-1 6 3 11t10 5h76q20 0 22-19l18-110q1-8 7-13t15-6.5 17-1.5 19 1 14 1q86 0 135-48.5t49-134.5zM822 1047l41-261q1-6-3-11t-10-5h-76q-14 0-17 33-27-40-95-40-72 0-122.5 54t-50.5 127q0 59 34.5 94t92.5 35q28 0 58-12t48-32q-4 12-4 21 0 16 13 16h69q19 0 22-19zM1269 784q0-5-4-9.5t-9-4.5h-77q-11 0-18 10l-106 156-44-150q-5-16-22-16h-75q-5 0-9 4.5t-4 9.5q0 2 19.5 59t42 123 23.5 70q-82 112-82 120 0 13 13 13h77q11 0 18-10l255-368q2-2 2-7zM1649 735q0-59-38.5-85.5t-100.5-26.5h-159q-20 0-22 19l-65 408q-1 6 3 11t10 5h82q12 0 16-13l18-116q1-8 7-13t15-6.5 17-1.5 19 1 14 1q86 0 135-48.5t49-134.5zM1958 1047l41-261q1-6-3-11t-10-5h-76q-14 0-17 33-26-40-95-40-72 0-122.5 54t-50.5 127q0 59 34.5 94t92.5 35q29 0 59-12t47-32q0 1-2 9t-2 12q0 16 13 16h69q19 0 22-19zM2176 638v-1q0-14-13-14h-74q-11 0-13 11l-65 416-1 2q0 5 4 9.5t10 4.5h66q19 0 21-19zM392 772q-5 35-26 46t-60 11l-33 1 17-107q2-11 13-11h19q40 0 58 11.5t12 48.5zM2304 256v1280q0 52-38 90t-90 38h-2048q-52 0-90-38t-38-90v-1280q0-52 38-90t90-38h2048q52 0 90 38t38 90z" + } + }] +}; +exports.ccPaypal = ccPaypal; +var ccStripe = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1597 903q0 69-21 106-19 35-52 35-23 0-41-9v-224q29-30 57-30 57 0 57 122zM2035 867h-110q6-98 56-98 51 0 54 98zM476 1002q0-59-33-91.5t-101-57.5q-36-13-52-24t-16-25q0-26 38-26 58 0 124 33l18-112q-67-32-149-32-77 0-123 38-48 39-48 109 0 58 32.5 90.5t99.5 56.5q39 14 54.5 25.5t15.5 27.5q0 31-48 31-29 0-70-12.5t-72-30.5l-18 113q72 41 168 41 81 0 129-37 51-41 51-117zM771 787l19-111h-96v-135l-129 21-18 114-46 8-17 103h62v219q0 84 44 120 38 30 111 30 32 0 79-11v-118q-32 7-44 7-42 0-42-50v-197h77zM1087 812v-139q-15-3-28-3-32 0-55.5 16t-33.5 46l-10-56h-131v471h150v-306q26-31 82-31 16 0 26 2zM1124 1147h150v-471h-150v471zM1746 898q0-122-45-179-40-52-111-52-64 0-117 56l-8-47h-132v645l150-25v-151q36 11 68 11 83 0 134-56 61-65 61-202zM1278 550q0-33-23-56t-56-23-56 23-23 56 23 56.5 56 23.5 56-23.5 23-56.5zM2176 907q0-113-48-176-50-64-144-64-96 0-151.5 66t-55.5 180q0 128 63 188 55 55 161 55 101 0 160-40l-16-103q-57 31-128 31-43 0-63-19-23-19-28-66h248q2-14 2-52zM2304 256v1280q0 52-38 90t-90 38h-2048q-52 0-90-38t-38-90v-1280q0-52 38-90t90-38h2048q52 0 90 38t38 90z" + } + }] +}; +exports.ccStripe = ccStripe; +var bellSlash = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1558 852q61 356 298 556 0 52-38 90t-90 38h-448q0 106-75 181t-181 75-180.5-74.5-75.5-180.5zM1024 1712q16 0 16-16t-16-16q-59 0-101.5-42.5t-42.5-101.5q0-16-16-16t-16 16q0 73 51.5 124.5t124.5 51.5zM2026 112q8 10 7.5 23.5t-10.5 22.5l-1872 1622q-10 8-23.5 7t-21.5-11l-84-96q-8-10-7.5-23.5t10.5-21.5l186-161q-19-32-19-66 50-42 91-88t85-119.5 74.5-158.5 50-206 19.5-260q0-152 117-282.5t307-158.5q-8-19-8-39 0-40 28-68t68-28 68 28 28 68q0 20-8 39 124 18 219 82.5t148 157.5l418-363q10-8 23.5-7t21.5 11z" + } + }] +}; +exports.bellSlash = bellSlash; +var bellSlashO = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1040 1696q0-16-16-16-59 0-101.5-42.5t-42.5-101.5q0-16-16-16t-16 16q0 73 51.5 124.5t124.5 51.5q16 0 16-16zM503 1221l877-760q-42-88-132.5-146.5t-223.5-58.5q-93 0-169.5 31.5t-121.5 80.5-69 103-24 105q0 384-137 645zM1856 1408q0 52-38 90t-90 38h-448q0 106-75 181t-181 75-180.5-74.5-75.5-180.5l149-129h757q-166-187-227-459l111-97q61 356 298 556zM1942 16l84 96q8 10 7.5 23.5t-10.5 22.5l-1872 1622q-10 8-23.5 7t-21.5-11l-84-96q-8-10-7.5-23.5t10.5-21.5l186-161q-19-32-19-66 50-42 91-88t85-119.5 74.5-158.5 50-206 19.5-260q0-152 117-282.5t307-158.5q-8-19-8-39 0-40 28-68t68-28 68 28 28 68q0 20-8 39 124 18 219 82.5t148 157.5l418-363q10-8 23.5-7t21.5 11z" + } + }] +}; +exports.bellSlashO = bellSlashO; +var trash = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M512 1376v-704q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v704q0 14 9 23t23 9h64q14 0 23-9t9-23zM768 1376v-704q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v704q0 14 9 23t23 9h64q14 0 23-9t9-23zM1024 1376v-704q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v704q0 14 9 23t23 9h64q14 0 23-9t9-23zM480 384h448l-48-117q-7-9-17-11h-317q-10 2-17 11zM1408 416v64q0 14-9 23t-23 9h-96v948q0 83-47 143.5t-113 60.5h-832q-66 0-113-58.5t-47-141.5v-952h-96q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h309l70-167q15-37 54-63t79-26h320q40 0 79 26t54 63l70 167h309q14 0 23 9t9 23z" + } + }] +}; +exports.trash = trash; +var copyright = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1150 1074v109q0 50-36.5 89t-94 60.5-118 32.5-117.5 11q-205 0-342.5-139t-137.5-346q0-203 136-339t339-136q34 0 75.5 4.5t93 18 92.5 34 69 56.5 28 81v109q0 16-16 16h-118q-16 0-16-16v-70q0-43-65.5-67.5t-137.5-24.5q-140 0-228.5 91.5t-88.5 237.5q0 151 91.5 249.5t233.5 98.5q68 0 138-24t70-66v-70q0-7 4.5-11.5t10.5-4.5h119q6 0 11 4.5t5 11.5zM768 256q-130 0-248.5 51t-204 136.5-136.5 204-51 248.5 51 248.5 136.5 204 204 136.5 248.5 51 248.5-51 204-136.5 136.5-204 51-248.5-51-248.5-136.5-204-204-136.5-248.5-51zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.copyright = copyright; +var at = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M972 775q0-108-53.5-169t-147.5-61q-63 0-124 30.5t-110 84.5-79.5 137-30.5 180q0 112 53.5 173t150.5 61q96 0 176-66.5t122.5-166 42.5-203.5zM1536 896q0 111-37 197t-98.5 135-131.5 74.5-145 27.5q-6 0-15.5 0.5t-16.5 0.5q-95 0-142-53-28-33-33-83-52 66-131.5 110t-173.5 44q-161 0-249.5-95.5t-88.5-269.5q0-157 66-290t179-210.5 246-77.5q87 0 155 35.5t106 99.5l2-19 11-56q1-6 5.5-12t9.5-6h118q5 0 13 11 5 5 3 16l-120 614q-5 24-5 48 0 39 12.5 52t44.5 13q28-1 57-5.5t73-24 77-50 57-89.5 24-137q0-292-174-466t-466-174q-130 0-248.5 51t-204 136.5-136.5 204-51 248.5 51 248.5 136.5 204 204 136.5 248.5 51q228 0 405-144 11-9 24-8t21 12l41 49q8 12 7 24-2 13-12 22-102 83-227.5 128t-258.5 45q-156 0-298-61t-245-164-164-245-61-298 61-298 164-245 245-164 298-61q344 0 556 212t212 556z" + } + }] +}; +exports.at = at; +var eyedropper = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1698 94q94 94 94 226.5t-94 225.5l-225 223 104 104q10 10 10 23t-10 23l-210 210q-10 10-23 10t-23-10l-105-105-603 603q-37 37-90 37h-203l-256 128-64-64 128-256v-203q0-53 37-90l603-603-105-105q-10-10-10-23t10-23l210-210q10-10 23-10t23 10l104 104 223-225q93-94 225.5-94t226.5 94zM512 1472l576-576-192-192-576 576v192h192z" + } + }] +}; +exports.eyedropper = eyedropper; +var paintBrush = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1615 0q70 0 122.5 46.5t52.5 116.5q0 63-45 151-332 629-465 752-97 91-218 91-126 0-216.5-92.5t-90.5-219.5q0-128 92-212l638-579q59-54 130-54zM706 1034q39 76 106.5 130t150.5 76l1 71q4 213-129.5 347t-348.5 134q-123 0-218-46.5t-152.5-127.5-86.5-183-29-220q7 5 41 30t62 44.5 59 36.5 46 17q41 0 55-37 25-66 57.5-112.5t69.5-76 88-47.5 103-25.5 125-10.5z" + } + }] +}; +exports.paintBrush = paintBrush; +var birthdayCake = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1792 1408v384h-1792v-384q45 0 85-14t59-27.5 47-37.5q30-27 51.5-38t56.5-11q24 0 44 7t31 15 33 27q29 25 47 38t58 27 86 14q45 0 85-14.5t58-27 48-37.5q21-19 32.5-27t31-15 43.5-7q35 0 56.5 11t51.5 38q28 24 47 37.5t59 27.5 85 14 85-14 59-27.5 47-37.5q30-27 51.5-38t56.5-11q34 0 55.5 11t51.5 38q28 24 47 37.5t59 27.5 85 14zM1792 1088v192q-24 0-44-7t-31-15-33-27q-29-25-47-38t-58-27-85-14q-46 0-86 14t-58 27-47 38q-22 19-33 27t-31 15-44 7q-35 0-56.5-11t-51.5-38q-29-25-47-38t-58-27-86-14q-45 0-85 14.5t-58 27-48 37.5q-21 19-32.5 27t-31 15-43.5 7q-35 0-56.5-11t-51.5-38q-28-24-47-37.5t-59-27.5-85-14q-46 0-86 14t-58 27-47 38q-30 27-51.5 38t-56.5 11v-192q0-80 56-136t136-56h64v-448h256v448h256v-448h256v448h256v-448h256v448h64q80 0 136 56t56 136zM512 224q0 77-36 118.5t-92 41.5q-53 0-90.5-37.5t-37.5-90.5q0-29 9.5-51t23.5-34 31-28 31-31.5 23.5-44.5 9.5-67q38 0 83 74t45 150zM1024 224q0 77-36 118.5t-92 41.5q-53 0-90.5-37.5t-37.5-90.5q0-29 9.5-51t23.5-34 31-28 31-31.5 23.5-44.5 9.5-67q38 0 83 74t45 150zM1536 224q0 77-36 118.5t-92 41.5q-53 0-90.5-37.5t-37.5-90.5q0-29 9.5-51t23.5-34 31-28 31-31.5 23.5-44.5 9.5-67q38 0 83 74t45 150z" + } + }] +}; +exports.birthdayCake = birthdayCake; +var areaChart = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M2048 1536v128h-2048v-1536h128v1408h1920zM1664 512l256 896h-1664v-576l448-576 576 576z" + } + }] +}; +exports.areaChart = areaChart; +var pieChart = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M768 890l546 546q-106 108-247.5 168t-298.5 60q-209 0-385.5-103t-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103v762zM955 896h773q0 157-60 298.5t-168 247.5zM1664 768h-768v-768q209 0 385.5 103t279.5 279.5 103 385.5z" + } + }] +}; +exports.pieChart = pieChart; +var lineChart = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M2048 1536v128h-2048v-1536h128v1408h1920zM1920 288v435q0 21-19.5 29.5t-35.5-7.5l-121-121-633 633q-10 10-23 10t-23-10l-233-233-416 416-192-192 585-585q10-10 23-10t23 10l233 233 464-464-121-121q-16-16-7.5-35.5t29.5-19.5h435q14 0 23 9t9 23z" + } + }] +}; +exports.lineChart = lineChart; +var lastfm = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1292 704q0 6 10 41 10 29 25 49.5t41 34 44 20 55 16.5q325 91 325 332 0 146-105.5 242.5t-254.5 96.5q-59 0-111.5-18.5t-91.5-45.5-77-74.5-63-87.5-53.5-103.5-43.5-103-39.5-106.5-35.5-95q-32-81-61.5-133.5t-73.5-96.5-104-64-142-20q-96 0-183 55.5t-138 144.5-51 185q0 160 106.5 279.5t263.5 119.5q177 0 258-95 56-63 83-116l84 152q-15 34-44 70l1 1q-131 152-388 152-147 0-269.5-79t-190.5-207.5-68-274.5q0-105 43.5-206t116-176.5 172-121.5 204.5-46q87 0 159 19t123.5 50 95 80 72.5 99 58.5 117 50.5 124.5 50 130.5 55 127q96 200 233 200 81 0 138.5-48.5t57.5-128.5q0-42-19-72t-50.5-46-72.5-31.5-84.5-27-87.5-34-81-52-65-82-39-122.5q-3-16-3-33 0-110 87.5-192t198.5-78q78 3 120.5 14.5t90.5 53.5h-1q12 11 23 24.5t26 36 19 27.5l-129 99q-26-49-54-70v-1q-23-21-97-21-49 0-84 33t-35 83z" + } + }] +}; +exports.lastfm = lastfm; +var lastfmSquare = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1432 1052q0-173-234-239-35-10-53-16.5t-38-25-29-46.5q0-2-2-8.5t-3-12-1-7.5q0-36 24.5-59.5t60.5-23.5q54 0 71 15h-1q20 15 39 51l93-71q-39-54-49-64-33-29-67.5-39t-85.5-10q-80 0-142 57.5t-62 137.5q0 7 2 23 16 96 64.5 140t148.5 73q29 8 49 15.5t45 21.5 38.5 34.5 13.5 46.5v5q1 58-40.5 93t-100.5 35q-97 0-167-144-23-47-51.5-121.5t-48-125.5-54-110.5-74-95.5-103.5-60.5-147-24.5q-101 0-192 56t-144 148-50 192v1q4 108 50.5 199t133.5 147.5 196 56.5q186 0 279-110 20-27 31-51l-60-109q-42 80-99 116t-146 36q-115 0-191-87t-76-204q0-105 82-189t186-84q112 0 170 53.5t104 172.5q8 21 25.5 68.5t28.5 76.5 31.5 74.5 38.5 74 45.5 62.5 55.5 53.5 66 33 80 13.5q107 0 183-69.5t76-174.5zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.lastfmSquare = lastfmSquare; +var toggleOff = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1152 896q0-104-40.5-198.5t-109.5-163.5-163.5-109.5-198.5-40.5-198.5 40.5-163.5 109.5-109.5 163.5-40.5 198.5 40.5 198.5 109.5 163.5 163.5 109.5 198.5 40.5 198.5-40.5 163.5-109.5 109.5-163.5 40.5-198.5zM1920 896q0-104-40.5-198.5t-109.5-163.5-163.5-109.5-198.5-40.5h-386q119 90 188.5 224t69.5 288-69.5 288-188.5 224h386q104 0 198.5-40.5t163.5-109.5 109.5-163.5 40.5-198.5zM2048 896q0 130-51 248.5t-136.5 204-204 136.5-248.5 51h-768q-130 0-248.5-51t-204-136.5-136.5-204-51-248.5 51-248.5 136.5-204 204-136.5 248.5-51h768q130 0 248.5 51t204 136.5 136.5 204 51 248.5z" + } + }] +}; +exports.toggleOff = toggleOff; +var toggleOn = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 896q0-130 51-248.5t136.5-204 204-136.5 248.5-51h768q130 0 248.5 51t204 136.5 136.5 204 51 248.5-51 248.5-136.5 204-204 136.5-248.5 51h-768q-130 0-248.5-51t-204-136.5-136.5-204-51-248.5zM1408 1408q104 0 198.5-40.5t163.5-109.5 109.5-163.5 40.5-198.5-40.5-198.5-109.5-163.5-163.5-109.5-198.5-40.5-198.5 40.5-163.5 109.5-109.5 163.5-40.5 198.5 40.5 198.5 109.5 163.5 163.5 109.5 198.5 40.5z" + } + }] +}; +exports.toggleOn = toggleOn; +var bicycle = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M762 1152h-314q-40 0-57.5-35t6.5-67l188-251q-65-31-137-31-132 0-226 94t-94 226 94 226 226 94q115 0 203-72.5t111-183.5zM576 1024h186q-18-85-75-148zM1056 1024l288-384h-480l-99 132q105 103 126 252h165zM2176 1088q0-132-94-226t-226-94q-60 0-121 24l174 260q15 23 10 49t-27 40q-15 11-36 11-35 0-53-29l-174-260q-93 95-93 225 0 132 94 226t226 94 226-94 94-226zM2304 1088q0 185-131.5 316.5t-316.5 131.5-316.5-131.5-131.5-316.5q0-97 39.5-183.5t109.5-149.5l-65-98-353 469q-18 26-51 26h-197q-23 164-149 274t-294 110q-185 0-316.5-131.5t-131.5-316.5 131.5-316.5 316.5-131.5q114 0 215 55l137-183h-224q-26 0-45-19t-19-45 19-45 45-19h384v128h435l-85-128h-222q-26 0-45-19t-19-45 19-45 45-19h256q33 0 53 28l267 400q91-44 192-44 185 0 316.5 131.5t131.5 316.5z" + } + }] +}; +exports.bicycle = bicycle; +var bus = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M384 1216q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1408 1216q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1362 820l-72-384q-5-23-22.5-37.5t-40.5-14.5h-918q-23 0-40.5 14.5t-22.5 37.5l-72 384q-5 30 14 53t49 23h1062q30 0 49-23t14-53zM1136 208q0-20-14-34t-34-14h-640q-20 0-34 14t-14 34 14 34 34 14h640q20 0 34-14t14-34zM1536 933v603h-128v128q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5v-128h-768v128q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5v-128h-128v-603q0-112 25-223l103-454q9-78 97.5-137t230-89 312.5-30 312.5 30 230 89 97.5 137l105 454q23 102 23 223z" + } + }] +}; +exports.bus = bus; +var ioxhost = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1463 832q0 35-25 60.5t-61 25.5h-702q-36 0-61-25.5t-25-60.5 25-60.5 61-25.5h702q36 0 61 25.5t25 60.5zM1677 832q0-86-23-170h-982q-36 0-61-25t-25-60q0-36 25-61t61-25h908q-88-143-235-227t-320-84q-177 0-327.5 87.5t-238 237.5-87.5 327q0 86 23 170h982q36 0 61 25t25 60q0 36-25 61t-61 25h-908q88 143 235.5 227t320.5 84q132 0 253-51.5t208-139 139-208 52-253.5zM2048 577q0 35-25 60t-61 25h-131q17 85 17 170 0 167-65.5 319.5t-175.5 263-262.5 176-319.5 65.5q-246 0-448.5-133t-301.5-350h-189q-36 0-61-25t-25-61q0-35 25-60t61-25h132q-17-85-17-170 0-167 65.5-319.5t175.5-263 262.5-176 320.5-65.5q245 0 447.5 133t301.5 350h188q36 0 61 25t25 61z" + } + }] +}; +exports.ioxhost = ioxhost; +var angellist = { + "viewBox": "0 0 1280 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M953 378l-114 328 117 21q165-451 165-518 0-56-38-56-57 0-130 225zM654 1065l33 88q37-42 71-67l-33-5.5t-38.5-7-32.5-8.5zM362 169q0 98 159 521 17-10 49-10 15 0 75 5l-121-351q-75-220-123-220-19 0-29 17.5t-10 37.5zM283 928q0 36 51.5 119t117.5 153 100 70q14 0 25.5-13t11.5-27q0-24-32-102-13-32-32-72t-47.5-89-61.5-81-62-32q-20 0-45.5 27t-25.5 47zM125 1263q0 41 25 104 59 145 183.5 227t281.5 82q227 0 382-170 152-169 152-427 0-43-1-67t-11.5-62-30.5-56q-56-49-211.5-75.5t-270.5-26.5q-37 0-49 11-12 5-12 35 0 34 21.5 60t55.5 40 77.5 23.5 87.5 11.5 85 4 70 0h23q24 0 40 19 15 19 19 55-28 28-96 54-61 22-93 46-64 46-108.5 114t-44.5 137q0 31 18.5 88.5t18.5 87.5l-3 12q-4 12-4 14-137-10-146-216-8 2-41 2 2 7 2 21 0 53-40.5 89.5t-94.5 36.5q-82 0-166.5-78t-84.5-159q0-34 33-67 52 64 60 76 77 104 133 104 12 0 26.5-8.5t14.5-20.5q0-34-87.5-145t-116.5-111q-43 0-70 44.5t-27 90.5zM11 1272q0-101 42.5-163t136.5-88q-28-74-28-104 0-62 61-123t122-61q29 0 70 15-163-462-163-567 0-80 41-130.5t119-50.5q131 0 325 581 6 17 8 23 6-16 29-79.5t43.5-118.5 54-127.5 64.5-123 70.5-86.5 76.5-36q71 0 112 49t41 122q0 108-159 550 61 15 100.5 46t58.5 78 26 93.5 7 110.5q0 150-47 280t-132 225-211 150-278 55q-111 0-223-42-149-57-258-191.5t-109-286.5z" + } + }] +}; +exports.angellist = angellist; +var cc = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M785 1008h207q-14 158-98.5 248.5t-214.5 90.5q-162 0-254.5-116t-92.5-316q0-194 93-311.5t233-117.5q148 0 232 87t97 247h-203q-5-64-35.5-99t-81.5-35q-57 0-88.5 60.5t-31.5 177.5q0 48 5 84t18 69.5 40 51.5 66 18q95 0 109-139zM1497 1008h206q-14 158-98 248.5t-214 90.5q-162 0-254.5-116t-92.5-316q0-194 93-311.5t233-117.5q148 0 232 87t97 247h-204q-4-64-35-99t-81-35q-57 0-88.5 60.5t-31.5 177.5q0 48 5 84t18 69.5 39.5 51.5 65.5 18q49 0 76.5-38t33.5-101zM1856 889q0-207-15.5-307t-60.5-161q-6-8-13.5-14t-21.5-15-16-11q-86-63-697-63-625 0-710 63-5 4-17.5 11.5t-21 14-14.5 14.5q-45 60-60 159.5t-15 308.5q0 208 15 307.5t60 160.5q6 8 15 15t20.5 14 17.5 12q44 33 239.5 49t470.5 16q610 0 697-65 5-4 17-11t20.5-14 13.5-16q46-60 61-159t15-309zM2048 128v1536h-2048v-1536h2048z" + } + }] +}; +exports.cc = cc; +var ils = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M992 624v496q0 14-9 23t-23 9h-160q-14 0-23-9t-9-23v-496q0-112-80-192t-192-80h-272v1152q0 14-9 23t-23 9h-160q-14 0-23-9t-9-23v-1344q0-14 9-23t23-9h464q135 0 249 66.5t180.5 180.5 66.5 249zM1376 160v880q0 135-66.5 249t-180.5 180.5-249 66.5h-464q-14 0-23-9t-9-23v-960q0-14 9-23t23-9h160q14 0 23 9t9 23v768h272q112 0 192-80t80-192v-880q0-14 9-23t23-9h160q14 0 23 9t9 23z" + } + }] +}; +exports.ils = ils; +var shekel = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M992 624v496q0 14-9 23t-23 9h-160q-14 0-23-9t-9-23v-496q0-112-80-192t-192-80h-272v1152q0 14-9 23t-23 9h-160q-14 0-23-9t-9-23v-1344q0-14 9-23t23-9h464q135 0 249 66.5t180.5 180.5 66.5 249zM1376 160v880q0 135-66.5 249t-180.5 180.5-249 66.5h-464q-14 0-23-9t-9-23v-960q0-14 9-23t23-9h160q14 0 23 9t9 23v768h272q112 0 192-80t80-192v-880q0-14 9-23t23-9h160q14 0 23 9t9 23z" + } + }] +}; +exports.shekel = shekel; +var sheqel = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M992 624v496q0 14-9 23t-23 9h-160q-14 0-23-9t-9-23v-496q0-112-80-192t-192-80h-272v1152q0 14-9 23t-23 9h-160q-14 0-23-9t-9-23v-1344q0-14 9-23t23-9h464q135 0 249 66.5t180.5 180.5 66.5 249zM1376 160v880q0 135-66.5 249t-180.5 180.5-249 66.5h-464q-14 0-23-9t-9-23v-960q0-14 9-23t23-9h160q14 0 23 9t9 23v768h272q112 0 192-80t80-192v-880q0-14 9-23t23-9h160q14 0 23 9t9 23z" + } + }] +}; +exports.sheqel = sheqel; +var meanpath = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1311 842v114q0 24-13.5 38t-37.5 14h-202q-24 0-38-14t-14-38v-114q0-24 14-38t38-14h202q24 0 37.5 14t13.5 38zM821 1072v-250q0-53-32.5-85.5t-85.5-32.5h-133q-68 0-96 52-28-52-96-52h-130q-53 0-85.5 32.5t-32.5 85.5v250q0 22 21 22h55q22 0 22-22v-230q0-24 13.5-38t38.5-14h94q24 0 38 14t14 38v230q0 22 21 22h54q22 0 22-22v-230q0-24 14-38t38-14h97q24 0 37.5 14t13.5 38v230q0 22 22 22h55q21 0 21-22zM1410 976v-154q0-53-33-85.5t-86-32.5h-264q-53 0-86 32.5t-33 85.5v410q0 21 22 21h55q21 0 21-21v-180q31 42 94 42h191q53 0 86-32.5t33-85.5zM1536 360v1072q0 96-68 164t-164 68h-1072q-96 0-164-68t-68-164v-1072q0-96 68-164t164-68h1072q96 0 164 68t68 164z" + } + }] +}; +exports.meanpath = meanpath; +var buysellads = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M915 1086h-294l147-551zM1001 1408h311l-324-1024h-440l-324 1024h311l383-314zM1536 416v960q0 118-85 203t-203 85h-960q-118 0-203-85t-85-203v-960q0-118 85-203t203-85h960q118 0 203 85t85 203z" + } + }] +}; +exports.buysellads = buysellads; +var connectdevelop = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M2048 895q0 21-13 36.5t-33 19.5l-205 356q3 9 3 18 0 20-12.5 35.5t-32.5 19.5l-193 337q3 8 3 16 0 23-16.5 40t-40.5 17q-25 0-41-18h-400q-17 20-43 20t-43-20h-399q-17 20-43 20-23 0-40-16.5t-17-40.5q0-8 4-20l-193-335q-20-4-32.5-19.5t-12.5-35.5q0-9 3-18l-206-356q-20-5-32.5-20.5t-12.5-35.5q0-21 13.5-36.5t33.5-19.5l199-344q0-1-0.5-3t-0.5-3q0-36 34-51l209-363q-4-10-4-18 0-24 17-40.5t40-16.5q26 0 44 21h396q16-21 43-21t43 21h398q18-21 44-21 23 0 40 16.5t17 40.5q0 6-4 18l207 358q23 1 39 17.5t16 38.5q0 13-7 27l187 324q19 4 31.5 19.5t12.5 35.5zM1063 1694h389l-342-354h-143l-342 354h360q18-16 39-16t39 16zM112 882q1 4 1 13 0 10-2 15l208 360 15 6 188-199v-347l-187-194q-13 8-29 10zM986 98h-388l190 200 554-200h-280q-16 16-38 16t-38-16zM1689 1310q1-6 5-11l-64-68-17 79h76zM1583 1310l22-105-252-266-296 307 63 64h463zM1495 1678l16-28 65-310h-427l333 343q8-4 13-5zM578 1694h5l342-354h-373v335l4 6q14 5 22 13zM552 1310h402l64-66-309-321-157 166v221zM359 1310h163v-189l-168 177q4 8 5 12zM358 485q0 1 0.5 2t0.5 2q0 16-8 29l171 177v-269zM552 415v311l153 157 297-314-223-236zM556 111l-4 8v264l205-74-191-201q-6 2-10 3zM1447 98h-16l-621 224 213 225zM1023 590l-297 315 311 319 296-307zM688 902l-136-141v284zM1038 1266l-42 44h85zM1374 918l238 251 132-624-3-5-1-1zM1718 518q-8-13-8-29v-2l-216-376q-5-1-13-5l-437 463 310 327zM522 394v-223l-163 282zM522 1340h-163l163 283v-283zM1607 1340l-48 227 130-227h-82zM1729 1270l207-361q-2-10-2-14 0-1 3-16l-171-296-129 612 77 82q5-3 15-7z" + } + }] +}; +exports.connectdevelop = connectdevelop; +var dashcube = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 680q0-131 91.5-226.5t222.5-95.5h742l352-358v1470q0 132-91.5 227t-222.5 95h-780q-131 0-222.5-95t-91.5-227v-790zM1232 1434l-176-180v-425q0-46-32-79t-78-33h-484q-46 0-78 33t-32 79v492q0 46 32.5 79.5t77.5 33.5h770z" + } + }] +}; +exports.dashcube = dashcube; +var forumbee = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M934 150q-317 121-556 362.5t-358 560.5q-20-89-20-176 0-208 102.5-384.5t278.5-279 384-102.5q82 0 169 19zM1203 269q93 65 164 155-389 113-674.5 400.5t-396.5 676.5q-93-72-155-162 112-386 395-671t667-399zM470 1603q115-356 379.5-622t619.5-384q40 92 54 195-292 120-516 345t-343 518q-103-14-194-52zM1536 1661q-193-50-367-115-135 84-290 107 109-205 274-370.5t369-275.5q-21 152-101 284 65 175 115 370z" + } + }] +}; +exports.forumbee = forumbee; +var leanpub = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1893 392l155 1272q-131 0-257-57-200-91-393-91-226 0-374 148-148-148-374-148-193 0-393 91-128 57-252 57h-5l155-1272q224-127 482-127 233 0 387 106 154-106 387-106 258 0 482 127zM1398 1379q129 0 232 28.5t260 93.5l-124-1021q-171-78-368-78-224 0-374 141-150-141-374-141-197 0-368 78l-124 1021q105-43 165.5-65t148.5-39.5 178-17.5q202 0 374 108 172-108 374-108zM1438 1345l-55-907q-211 4-359 155-152-155-374-155-176 0-336 66l-114 941q124-51 228.5-76t221.5-25q209 0 374 102 172-107 374-102z" + } + }] +}; +exports.leanpub = leanpub; +var sellsy = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1500 1371v-733q0-21-15-36t-35-15h-93q-20 0-35 15t-15 36v733q0 20 15 35t35 15h93q20 0 35-15t15-35zM1216 1371v-531q0-20-15-35t-35-15h-101q-20 0-35 15t-15 35v531q0 20 15 35t35 15h101q20 0 35-15t15-35zM924 1371v-429q0-20-15-35t-35-15h-101q-20 0-35 15t-15 35v429q0 20 15 35t35 15h101q20 0 35-15t15-35zM632 1371v-362q0-20-15-35t-35-15h-101q-20 0-35 15t-15 35v362q0 20 15 35t35 15h101q20 0 35-15t15-35zM2048 1225q0 166-118 284t-284 118h-1244q-166 0-284-118t-118-284q0-116 63-214.5t168-148.5q-10-34-10-73 0-113 80.5-193.5t193.5-80.5q102 0 180 67 45-183 194-300t338-117q149 0 275 73.5t199.5 199.5 73.5 275q0 66-14 122 135 33 221 142.5t86 247.5z" + } + }] +}; +exports.sellsy = sellsy; +var shirtsinbulk = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h1536v1392l-776 338-760-338v-1392zM1436 1327v-926h-1336v926l661 294zM1436 301v-201h-1336v201h1336zM181 599v115h-37v-115h37zM181 747v115h-37v-115h37zM181 895v115h-37v-115h37zM181 1043v115h-37v-115h37zM181 1191v115h-37v-115h37zM207 1334l15-34 105 47-15 33zM343 1394l15-34 105 46-15 34zM478 1454l15-34 105 46-15 34zM614 1513l15-33 104 46-15 34zM797 1526l105-46 15 33-105 47zM932 1466l105-46 15 34-105 46zM1068 1406l105-46 15 34-105 46zM1203 1347l105-47 15 34-105 46zM259 147v36h-114v-36h114zM421 147v36h-115v-36h115zM583 147v36h-115v-36h115zM744 147v36h-114v-36h114zM906 147v36h-114v-36h114zM1068 147v36h-115v-36h115zM1230 147v36h-115v-36h115zM1391 147v36h-114v-36h114zM181 487v79h-37v-115h115v36h-78zM421 451v36h-115v-36h115zM583 451v36h-115v-36h115zM744 451v36h-114v-36h114zM906 451v36h-114v-36h114zM1068 451v36h-115v-36h115zM1230 451v36h-115v-36h115zM1355 566v-79h-78v-36h115v115h-37zM1355 714v-115h37v115h-37zM1355 862v-115h37v115h-37zM1355 1010v-115h37v115h-37zM1355 1158v-115h37v115h-37zM1355 1306v-115h37v115h-37zM760 1271q-129 0-221-91.5t-92-221.5q0-129 92-221t221-92q130 0 221.5 92t91.5 221q0 130-91.5 221.5t-221.5 91.5zM595 890q0 36 19.5 56.5t49.5 25 64 7 64 2 49.5 9 19.5 30.5q0 49-112 49-97 0-123-51h-3l-31 63q67 42 162 42 29 0 56.5-5t55.5-16 45.5-33 17.5-53q0-46-27.5-69.5t-67.5-27-79.5-3-67-5-27.5-25.5q0-21 20.5-33t40.5-15 41-3q34 0 70.5 11t51.5 34h3l30-58q-3-1-21-8.5t-22.5-9-19.5-7-22-7-20-4.5-24-4-23-1q-29 0-56.5 5t-54 16.5-43 34-16.5 53.5z" + } + }] +}; +exports.shirtsinbulk = shirtsinbulk; +var simplybuilt = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M863 1032q0-112-79.5-191.5t-191.5-79.5-191 79.5-79 191.5 79 191 191 79 191.5-79 79.5-191zM1726 1031q0-112-79-191t-191-79-191.5 79-79.5 191q0 113 79.5 192t191.5 79 191-79.5 79-191.5zM2048 222v1348q0 44-31.5 75.5t-76.5 31.5h-1832q-45 0-76.5-31.5t-31.5-75.5v-1348q0-44 31.5-75.5t76.5-31.5h431q44 0 76 31.5t32 75.5v161h754v-161q0-44 32-75.5t76-31.5h431q45 0 76.5 31.5t31.5 75.5z" + } + }] +}; +exports.simplybuilt = simplybuilt; +var skyatlas = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1430 583zM1690 787q148 0 253 98.5t105 244.5q0 157-109 261.5t-267 104.5q-85 0-162-27.5t-138-73.5-118-106-109-126-103.5-132.5-108.5-126.5-117-106-136-73.5-159-27.5q-154 0-251.5 91.5t-97.5 244.5q0 157 104 250t263 93q100 0 208-37.5t193-98.5q5-4 21-18.5t30-24 22-9.5q14 0 24.5 10.5t10.5 24.5q0 24-60 77-101 88-234.5 142t-260.5 54q-133 0-245.5-58t-180-165-67.5-241q0-205 141.5-341t347.5-136q120 0 226.5 43.5t185.5 113 151.5 153 139 167.5 133.5 153.5 149.5 113 172.5 43.5q102 0 168.5-61.5t66.5-162.5q0-95-64.5-159t-159.5-64q-30 0-81.5 18.5t-68.5 18.5q-20 0-35.5-15t-15.5-35q0-18 8.5-57t8.5-59q0-159-107.5-263t-266.5-104q-58 0-111.5 18.5t-84 40.5-55.5 40.5-33 18.5q-15 0-25.5-10.5t-10.5-25.5q0-19 25-46 59-67 147-103.5t182-36.5q191 0 318 125.5t127 315.5q0 37-4 66 57-15 115-15z" + } + }] +}; +exports.skyatlas = skyatlas; +var cartPlus = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1216 704q0-26-19-45t-45-19h-128v-128q0-26-19-45t-45-19-45 19-19 45v128h-128q-26 0-45 19t-19 45 19 45 45 19h128v128q0 26 19 45t45 19 45-19 19-45v-128h128q26 0 45-19t19-45zM640 1536q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5 90.5 37.5 37.5 90.5zM1536 1536q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5 90.5 37.5 37.5 90.5zM1664 448v512q0 24-16 42.5t-41 21.5l-1044 122q1 7 4.5 21.5t6 26.5 2.5 22q0 16-24 64h920q26 0 45 19t19 45-19 45-45 19h-1024q-26 0-45-19t-19-45q0-14 11-39.5t29.5-59.5 20.5-38l-177-823h-204q-26 0-45-19t-19-45 19-45 45-19h256q16 0 28.5 6.5t20 15.5 13 24.5 7.5 26.5 5.5 29.5 4.5 25.5h1201q26 0 45 19t19 45z" + } + }] +}; +exports.cartPlus = cartPlus; +var cartArrowDown = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1280 704q0-26-19-45t-45-19-45 19l-147 146v-293q0-26-19-45t-45-19-45 19-19 45v293l-147-146q-19-19-45-19t-45 19-19 45 19 45l256 256q19 19 45 19t45-19l256-256q19-19 19-45zM640 1536q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5 90.5 37.5 37.5 90.5zM1536 1536q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5 90.5 37.5 37.5 90.5zM1664 448v512q0 24-16 42.5t-41 21.5l-1044 122q1 7 4.5 21.5t6 26.5 2.5 22q0 16-24 64h920q26 0 45 19t19 45-19 45-45 19h-1024q-26 0-45-19t-19-45q0-14 11-39.5t29.5-59.5 20.5-38l-177-823h-204q-26 0-45-19t-19-45 19-45 45-19h256q16 0 28.5 6.5t20 15.5 13 24.5 7.5 26.5 5.5 29.5 4.5 25.5h1201q26 0 45 19t19 45z" + } + }] +}; +exports.cartArrowDown = cartArrowDown; +var diamond = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M212 768l623 665-300-665h-323zM1024 1540l349-772h-698zM538 640l204-384h-262l-288 384h346zM1213 1433l623-665h-323zM683 640h682l-204-384h-274zM1510 640h346l-288-384h-262zM1651 154l384 512q14 18 13 41.5t-17 40.5l-960 1024q-18 20-47 20t-47-20l-960-1024q-16-17-17-40.5t13-41.5l384-512q18-26 51-26h1152q33 0 51 26z" + } + }] +}; +exports.diamond = diamond; +var ship = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1811 1555q19-19 45-19t45 19l128 128-90 90-83-83-83 83q-18 19-45 19t-45-19l-83-83-83 83q-19 19-45 19t-45-19l-83-83-83 83q-19 19-45 19t-45-19l-83-83-83 83q-19 19-45 19t-45-19l-83-83-83 83q-19 19-45 19t-45-19l-83-83-83 83q-19 19-45 19t-45-19l-83-83-83 83q-19 19-45 19t-45-19l-128-128 90-90 83 83 83-83q19-19 45-19t45 19l83 83 83-83q19-19 45-19t45 19l83 83 83-83q19-19 45-19t45 19l83 83 83-83q19-19 45-19t45 19l83 83 83-83q19-19 45-19t45 19l83 83 83-83q19-19 45-19t45 19l83 83zM237 1517q-19 19-45 19t-45-19l-128-128 90-90 83 82 83-82q19-19 45-19t45 19l83 82 64-64v-293l-210-314q-17-26-7-56.5t40-40.5l177-58v-299h128v-128h256v-128h256v128h256v128h128v299l177 58q30 10 40 40.5t-7 56.5l-210 314v293l19-18q19-19 45-19t45 19l83 82 83-82q19-19 45-19t45 19l128 128-90 90-83-83-83 83q-18 19-45 19t-45-19l-83-83-83 83q-19 19-45 19t-45-19l-83-83-83 83q-19 19-45 19t-45-19l-83-83-83 83q-19 19-45 19t-45-19l-83-83-83 83q-19 19-45 19t-45-19l-83-83-83 83q-19 19-45 19t-45-19l-83-83zM640 384v128l384-128 384 128v-128h-128v-128h-512v128h-128z" + } + }] +}; +exports.ship = ship; +var userSecret = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M576 1536l96-448-96-128-128-64zM832 1536l128-640-128 64-96 128zM992 526q-2-4-4-6-10-8-96-8-70 0-167 19-7 2-21 2t-21-2q-97-19-167-19-86 0-96 8-2 2-4 6 2 18 4 27 2 3 7.5 6.5t7.5 10.5q2 4 7.5 20.5t7 20.5 7.5 17 8.5 17 9 14 12 13.5 14 9.5 17.5 8 20.5 4 24.5 2q36 0 59-12.5t32.5-30 14.5-34.5 11.5-29.5 17.5-12.5h12q11 0 17.5 12.5t11.5 29.5 14.5 34.5 32.5 30 59 12.5q13 0 24.5-2t20.5-4 17.5-8 14-9.5 12-13.5 9-14 8.5-17 7.5-17 7-20.5 7.5-20.5q2-7 7.5-10.5t7.5-6.5q2-9 4-27zM1408 1405q0 121-73 190t-194 69h-874q-121 0-194-69t-73-190q0-61 4.5-118t19-125.5 37.5-123.5 63.5-103.5 93.5-74.5l-90-220h214q-22-64-22-128 0-12 2-32-194-40-194-96 0-57 210-99 17-62 51.5-134t70.5-114q32-37 76-37 30 0 84 31t84 31 84-31 84-31q44 0 76 37 36 42 70.5 114t51.5 134q210 42 210 99 0 56-194 96 7 81-20 160h214l-82 225q63 33 107.5 96.5t65.5 143.5 29 151.5 8 148.5z" + } + }] +}; +exports.userSecret = userSecret; +var motorcycle = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M2301 1036q12 103-22 198.5t-99 163.5-158.5 106-196.5 31q-161-11-279.5-125t-134.5-274q-12-111 27.5-210.5t118.5-170.5l-71-107q-96 80-151 194t-55 244q0 27-18.5 46.5t-45.5 19.5h-256-69q-23 164-149 274t-294 110q-185 0-316.5-131.5t-131.5-316.5 131.5-316.5 316.5-131.5q76 0 152 27l24-45q-123-110-304-110h-64q-26 0-45-19t-19-45 19-45 45-19h128q78 0 145 13.5t116.5 38.5 71.5 39.5 51 36.5h512 115l-85-128h-222q-30 0-49-22.5t-14-52.5q4-23 23-38t43-15h253q33 0 53 28l70 105 114-114q19-19 46-19h101q26 0 45 19t19 45v128q0 26-19 45t-45 19h-179l115 172q131-63 275-36 143 26 244 134.5t118 253.5zM448 1408q115 0 203-72.5t111-183.5h-314q-35 0-55-31-18-32-1-63l147-277q-47-13-91-13-132 0-226 94t-94 226 94 226 226 94zM1856 1408q132 0 226-94t94-226-94-226-226-94q-60 0-121 24l174 260q15 23 10 49t-27 40q-15 11-36 11-35 0-53-29l-174-260q-93 95-93 225 0 132 94 226t226 94z" + } + }] +}; +exports.motorcycle = motorcycle; +var streetView = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1408 1536q0 63-61.5 113.5t-164 81-225 46-253.5 15.5-253.5-15.5-225-46-164-81-61.5-113.5q0-49 33-88.5t91-66.5 118-44.5 131-29.5q26-5 48 10.5t26 41.5q5 26-10.5 48t-41.5 26q-58 10-106 23.5t-76.5 25.5-48.5 23.5-27.5 19.5-8.5 12q3 11 27 26.5t73 33 114 32.5 160.5 25 201.5 10 201.5-10 160.5-25 114-33 73-33.5 27-27.5q-1-4-8.5-11t-27.5-19-48.5-23.5-76.5-25-106-23.5q-26-4-41.5-26t-10.5-48q4-26 26-41.5t48-10.5q71 12 131 29.5t118 44.5 91 66.5 33 88.5zM1024 640v384q0 26-19 45t-45 19h-64v384q0 26-19 45t-45 19h-256q-26 0-45-19t-19-45v-384h-64q-26 0-45-19t-19-45v-384q0-53 37.5-90.5t90.5-37.5h384q53 0 90.5 37.5t37.5 90.5zM928 256q0 93-65.5 158.5t-158.5 65.5-158.5-65.5-65.5-158.5 65.5-158.5 158.5-65.5 158.5 65.5 65.5 158.5z" + } + }] +}; +exports.streetView = streetView; +var heartbeat = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1280 1024h305q-5 6-10 10.5t-9 7.5l-3 4-623 600q-18 18-44 18t-44-18l-624-602q-5-2-21-20h369q22 0 39.5-13.5t22.5-34.5l70-281 190 667q6 20 23 33t39 13q21 0 38-13t23-33l146-485 56 112q18 35 57 35zM1792 596q0 145-103 300h-369l-111-221q-8-17-25.5-27t-36.5-8q-45 5-56 46l-129 430-196-686q-6-20-23.5-33t-39.5-13-39 13.5-22 34.5l-116 464h-423q-103-155-103-300 0-220 127-344t351-124q62 0 126.5 21.5t120 58 95.5 68.5 76 68q36-36 76-68t95.5-68.5 120-58 126.5-21.5q224 0 351 124t127 344z" + } + }] +}; +exports.heartbeat = heartbeat; +var venus = { + "viewBox": "0 0 1280 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1152 576q0 221-147.5 384.5t-364.5 187.5v260h224q14 0 23 9t9 23v64q0 14-9 23t-23 9h-224v224q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-224h-224q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h224v-260q-150-16-271.5-103t-186-224-52.5-292q11-134 80.5-249t182-188 245.5-88q170-19 319 54t236 212 87 306zM128 576q0 185 131.5 316.5t316.5 131.5 316.5-131.5 131.5-316.5-131.5-316.5-316.5-131.5-316.5 131.5-131.5 316.5z" + } + }] +}; +exports.venus = venus; +var mars = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1472 128q26 0 45 19t19 45v416q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-262l-382 383q126 156 126 359 0 117-45.5 223.5t-123 184-184 123-223.5 45.5-223.5-45.5-184-123-123-184-45.5-223.5 45.5-223.5 123-184 184-123 223.5-45.5q203 0 359 126l382-382h-261q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h416zM576 1536q185 0 316.5-131.5t131.5-316.5-131.5-316.5-316.5-131.5-316.5 131.5-131.5 316.5 131.5 316.5 316.5 131.5z" + } + }] +}; +exports.mars = mars; +var mercury = { + "viewBox": "0 0 1280 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M830 316q145 72 233.5 210.5t88.5 305.5q0 221-147.5 384.5t-364.5 187.5v132h96q14 0 23 9t9 23v64q0 14-9 23t-23 9h-96v96q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-96h-96q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h96v-132q-217-24-364.5-187.5t-147.5-384.5q0-167 88.5-305.5t233.5-210.5q-165-96-228-273-6-16 3.5-29.5t26.5-13.5h69q21 0 29 20 44 106 140 171t214 65 214-65 140-171q8-20 37-20h61q17 0 26.5 13.5t3.5 29.5q-63 177-228 273zM576 1280q185 0 316.5-131.5t131.5-316.5-131.5-316.5-316.5-131.5-316.5 131.5-131.5 316.5 131.5 316.5 316.5 131.5z" + } + }] +}; +exports.mercury = mercury; +var intersex = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 32q0-14 9-23t23-9h288q26 0 45 19t19 45v288q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-134l-254 255q126 158 126 359 0 221-147.5 384.5t-364.5 187.5v132h96q14 0 23 9t9 23v64q0 14-9 23t-23 9h-96v96q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-96h-96q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h96v-132q-149-16-270.5-103t-186.5-223.5-53-291.5q16-204 160-353.5t347-172.5q118-14 228 19t198 103l255-254h-134q-14 0-23-9t-9-23v-64zM576 1280q185 0 316.5-131.5t131.5-316.5-131.5-316.5-316.5-131.5-316.5 131.5-131.5 316.5 131.5 316.5 316.5 131.5z" + } + }] +}; +exports.intersex = intersex; +var transgender = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 32q0-14 9-23t23-9h288q26 0 45 19t19 45v288q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-134l-254 255q126 158 126 359 0 221-147.5 384.5t-364.5 187.5v132h96q14 0 23 9t9 23v64q0 14-9 23t-23 9h-96v96q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-96h-96q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h96v-132q-149-16-270.5-103t-186.5-223.5-53-291.5q16-204 160-353.5t347-172.5q118-14 228 19t198 103l255-254h-134q-14 0-23-9t-9-23v-64zM576 1280q185 0 316.5-131.5t131.5-316.5-131.5-316.5-316.5-131.5-316.5 131.5-131.5 316.5 131.5 316.5 316.5 131.5z" + } + }] +}; +exports.transgender = transgender; +var transgenderAlt = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1280 32q0-14 9-23t23-9h288q26 0 45 19t19 45v288q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-134l-254 255q126 158 126 359 0 221-147.5 384.5t-364.5 187.5v132h96q14 0 23 9t9 23v64q0 14-9 23t-23 9h-96v96q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-96h-96q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h96v-132q-217-24-364.5-187.5t-147.5-384.5q0-201 126-359l-52-53-101 111q-9 10-22 10.5t-23-7.5l-48-44q-10-8-10.5-21.5t8.5-23.5l105-115-111-112v134q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-288q0-26 19-45t45-19h288q14 0 23 9t9 23v64q0 14-9 23t-23 9h-133l106 107 86-94q9-10 22-10.5t23 7.5l48 44q10 8 10.5 21.5t-8.5 23.5l-90 99 57 56q158-126 359-126t359 126l255-254h-134q-14 0-23-9t-9-23v-64zM832 1280q185 0 316.5-131.5t131.5-316.5-131.5-316.5-316.5-131.5-316.5 131.5-131.5 316.5 131.5 316.5 316.5 131.5z" + } + }] +}; +exports.transgenderAlt = transgenderAlt; +var venusDouble = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1790 529q12 155-52.5 292t-186 224-271.5 103v260h224q14 0 23 9t9 23v64q0 14-9 23t-23 9h-224v224q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-224h-512v224q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-224h-224q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h224v-260q-150-16-271.5-103t-186-224-52.5-292q17-206 164.5-356.5t352.5-169.5q206-21 377 94 171-115 377-94 205 19 352.5 169.5t164.5 356.5zM896 889q128-131 128-313t-128-313q-128 131-128 313t128 313zM576 1024q115 0 218-57-154-165-154-391 0-224 154-391-103-57-218-57-185 0-316.5 131.5t-131.5 316.5 131.5 316.5 316.5 131.5zM1152 1408v-260q-137-15-256-94-119 79-256 94v260h512zM1216 1024q185 0 316.5-131.5t131.5-316.5-131.5-316.5-316.5-131.5q-115 0-218 57 154 167 154 391 0 226-154 391 103 57 218 57z" + } + }] +}; +exports.venusDouble = venusDouble; +var marsDouble = { + "viewBox": "0 0 1920 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1536 416q0-14 9-23t23-9h288q26 0 45 19t19 45v288q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-134l-254 255q76 95 107.5 214t9.5 247q-31 182-166 312t-318 156q-210 29-384.5-80t-241.5-300q-117-6-221-57.5t-177.5-133-113.5-192.5-32-230q9-135 78-252t182-191.5 248-89.5q118-14 227.5 19t198.5 103l255-254h-134q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h288q26 0 45 19t19 45v288q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-134l-254 255q59 74 93 169 182 9 328 124l255-254h-134q-14 0-23-9t-9-23v-64zM1024 832q0-20-4-58-162 25-271 150t-109 292q0 20 4 58 162-25 271-150t109-292zM128 832q0 168 111 294t276 149q-3-29-3-59 0-210 135-369.5t338-196.5q-53-120-163.5-193t-245.5-73q-185 0-316.5 131.5t-131.5 316.5zM1088 1664q185 0 316.5-131.5t131.5-316.5q0-168-111-294t-276-149q3 28 3 59 0 210-135 369.5t-338 196.5q53 120 163.5 193t245.5 73z" + } + }] +}; +exports.marsDouble = marsDouble; +var venusMars = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1664 32q0-14 9-23t23-9h288q26 0 45 19t19 45v288q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-134l-254 255q76 95 107.5 214t9.5 247q-32 180-164.5 310t-313.5 157q-223 34-409-90-117 78-256 93v132h96q14 0 23 9t9 23v64q0 14-9 23t-23 9h-96v96q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-96h-96q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h96v-132q-155-17-279.5-109.5t-187-237.5-39.5-307q25-187 159.5-322.5t320.5-164.5q224-34 410 90 146-97 320-97 201 0 359 126l255-254h-134q-14 0-23-9t-9-23v-64zM896 1145q128-131 128-313t-128-313q-128 131-128 313t128 313zM128 832q0 185 131.5 316.5t316.5 131.5q117 0 218-57-154-167-154-391t154-391q-101-57-218-57-185 0-316.5 131.5t-131.5 316.5zM1216 1280q185 0 316.5-131.5t131.5-316.5-131.5-316.5-316.5-131.5q-117 0-218 57 154 167 154 391t-154 391q101 57 218 57z" + } + }] +}; +exports.venusMars = venusMars; +var marsStroke = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1472 128q26 0 45 19t19 45v416q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-262l-213 214 140 140q9 10 9 23t-9 22l-46 46q-9 9-22 9t-23-9l-140-141-78 79q126 156 126 359 0 117-45.5 223.5t-123 184-184 123-223.5 45.5-223.5-45.5-184-123-123-184-45.5-223.5 45.5-223.5 123-184 184-123 223.5-45.5q203 0 359 126l78-78-172-172q-9-10-9-23t9-22l46-46q9-9 22-9t23 9l172 172 213-213h-261q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h416zM576 1536q185 0 316.5-131.5t131.5-316.5-131.5-316.5-316.5-131.5-316.5 131.5-131.5 316.5 131.5 316.5 316.5 131.5z" + } + }] +}; +exports.marsStroke = marsStroke; +var marsStrokeV = { + "viewBox": "0 0 1280 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 644q217 24 364.5 187.5t147.5 384.5q0 167-87 306t-236 212-319 54q-133-15-245.5-88t-182-188-80.5-249q-12-155 52.5-292t186-224 271.5-103v-132h-160q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h160v-165l-92 92q-10 9-23 9t-22-9l-46-46q-9-9-9-22t9-23l202-201q19-19 45-19t45 19l202 201q9 10 9 23t-9 22l-46 46q-9 9-22 9t-23-9l-92-92v165h160q14 0 23 9t9 23v64q0 14-9 23t-23 9h-160v132zM576 1664q185 0 316.5-131.5t131.5-316.5-131.5-316.5-316.5-131.5-316.5 131.5-131.5 316.5 131.5 316.5 316.5 131.5z" + } + }] +}; +exports.marsStrokeV = marsStrokeV; +var marsStrokeH = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1901 915q19 19 19 45t-19 45l-294 294q-9 10-22.5 10t-22.5-10l-45-45q-10-9-10-22.5t10-22.5l185-185h-294v224q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-224h-132q-24 217-187.5 364.5t-384.5 147.5q-167 0-306-87t-212-236-54-319q15-133 88-245.5t188-182 249-80.5q155-12 292 52.5t224 186 103 271.5h132v-224q0-14 9-23t23-9h64q14 0 23 9t9 23v224h294l-185-185q-10-9-10-22.5t10-22.5l45-45q9-10 22.5-10t22.5 10zM576 1408q185 0 316.5-131.5t131.5-316.5-131.5-316.5-316.5-131.5-316.5 131.5-131.5 316.5 131.5 316.5 316.5 131.5z" + } + }] +}; +exports.marsStrokeH = marsStrokeH; +var neuter = { + "viewBox": "0 0 1280 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1152 576q0 221-147.5 384.5t-364.5 187.5v612q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-612q-217-24-364.5-187.5t-147.5-384.5q0-117 45.5-223.5t123-184 184-123 223.5-45.5 223.5 45.5 184 123 123 184 45.5 223.5zM576 1024q185 0 316.5-131.5t131.5-316.5-131.5-316.5-316.5-131.5-316.5 131.5-131.5 316.5 131.5 316.5 316.5 131.5z" + } + }] +}; +exports.neuter = neuter; +var genderless = { + "viewBox": "0 0 1280 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 960q0-185-131.5-316.5t-316.5-131.5-316.5 131.5-131.5 316.5 131.5 316.5 316.5 131.5 316.5-131.5 131.5-316.5zM1152 960q0 117-45.5 223.5t-123 184-184 123-223.5 45.5-223.5-45.5-184-123-123-184-45.5-223.5 45.5-223.5 123-184 184-123 223.5-45.5 223.5 45.5 184 123 123 184 45.5 223.5z" + } + }] +}; +exports.genderless = genderless; +var facebookOfficial = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1451 128q35 0 60 25t25 60v1366q0 35-25 60t-60 25h-391v-595h199l30-232h-229v-148q0-56 23.5-84t91.5-28l122-1v-207q-63-9-178-9-136 0-217.5 80t-81.5 226v171h-200v232h200v595h-735q-35 0-60-25t-25-60v-1366q0-35 25-60t60-25h1366z" + } + }] +}; +exports.facebookOfficial = facebookOfficial; +var pinterestP = { + "viewBox": "0 0 1280 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 597q0-108 37.5-203.5t103.5-166.5 152-123 185-78 202-26q158 0 294 66.5t221 193.5 85 287q0 96-19 188t-60 177-100 149.5-145 103-189 38.5q-68 0-135-32t-96-88q-10 39-28 112.5t-23.5 95-20.5 71-26 71-32 62.5-46 77.5-62 86.5l-14 5-9-10q-15-157-15-188 0-92 21.5-206.5t66.5-287.5 52-203q-32-65-32-169 0-83 52-156t132-73q61 0 95 40.5t34 102.5q0 66-44 191t-44 187q0 63 45 104.5t109 41.5q55 0 102-25t78.5-68 56-95 38-110.5 20-111 6.5-99.5q0-173-109.5-269.5t-285.5-96.5q-200 0-334 129.5t-134 328.5q0 44 12.5 85t27 65 27 45.5 12.5 30.5q0 28-15 73t-37 45q-2 0-17-3-51-15-90.5-56t-61-94.5-32.5-108-11-106.5z" + } + }] +}; +exports.pinterestP = pinterestP; +var whatsapp = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M985 974q13 0 97.5 44t89.5 53q2 5 2 15 0 33-17 76-16 39-71 65.5t-102 26.5q-57 0-190-62-98-45-170-118t-148-185q-72-107-71-194v-8q3-91 74-158 24-22 52-22 6 0 18 1.5t19 1.5q19 0 26.5 6.5t15.5 27.5q8 20 33 88t25 75q0 21-34.5 57.5t-34.5 46.5q0 7 5 15 34 73 102 137 56 53 151 101 12 7 22 7 15 0 54-48.5t52-48.5zM782 1504q127 0 243.5-50t200.5-134 134-200.5 50-243.5-50-243.5-134-200.5-200.5-134-243.5-50-243.5 50-200.5 134-134 200.5-50 243.5q0 203 120 368l-79 233 242-77q158 104 345 104zM782 122q153 0 292.5 60t240.5 161 161 240.5 60 292.5-60 292.5-161 240.5-240.5 161-292.5 60q-195 0-365-94l-417 134 136-405q-108-178-108-389 0-153 60-292.5t161-240.5 240.5-161 292.5-60z" + } + }] +}; +exports.whatsapp = whatsapp; +var server = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M128 1408h1024v-128h-1024v128zM128 896h1024v-128h-1024v128zM1696 1344q0-40-28-68t-68-28-68 28-28 68 28 68 68 28 68-28 28-68zM128 384h1024v-128h-1024v128zM1696 832q0-40-28-68t-68-28-68 28-28 68 28 68 68 28 68-28 28-68zM1696 320q0-40-28-68t-68-28-68 28-28 68 28 68 68 28 68-28 28-68zM1792 1152v384h-1792v-384h1792zM1792 640v384h-1792v-384h1792zM1792 128v384h-1792v-384h1792z" + } + }] +}; +exports.server = server; +var userPlus = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M704 896q-159 0-271.5-112.5t-112.5-271.5 112.5-271.5 271.5-112.5 271.5 112.5 112.5 271.5-112.5 271.5-271.5 112.5zM1664 1024h352q13 0 22.5 9.5t9.5 22.5v192q0 13-9.5 22.5t-22.5 9.5h-352v352q0 13-9.5 22.5t-22.5 9.5h-192q-13 0-22.5-9.5t-9.5-22.5v-352h-352q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h352v-352q0-13 9.5-22.5t22.5-9.5h192q13 0 22.5 9.5t9.5 22.5v352zM928 1248q0 52 38 90t90 38h256v238q-68 50-171 50h-874q-121 0-194-69t-73-190q0-53 3.5-103.5t14-109 26.5-108.5 43-97.5 62-81 85.5-53.5 111.5-20q19 0 39 17 79 61 154.5 91.5t164.5 30.5 164.5-30.5 154.5-91.5q20-17 39-17 132 0 217 96h-223q-52 0-90 38t-38 90v192z" + } + }] +}; +exports.userPlus = userPlus; +var userTimes = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M704 896q-159 0-271.5-112.5t-112.5-271.5 112.5-271.5 271.5-112.5 271.5 112.5 112.5 271.5-112.5 271.5-271.5 112.5zM1781 1216l249 249q9 9 9 23 0 13-9 22l-136 136q-9 9-22 9-14 0-23-9l-249-249-249 249q-9 9-23 9-13 0-22-9l-136-136q-9-9-9-22 0-14 9-23l249-249-249-249q-9-9-9-23 0-13 9-22l136-136q9-9 22-9 14 0 23 9l249 249 249-249q9-9 23-9 13 0 22 9l136 136q9 9 9 22 0 14-9 23zM1283 1216l-181 181q-37 37-37 91 0 53 37 90l83 83q-21 3-44 3h-874q-121 0-194-69t-73-190q0-53 3.5-103.5t14-109 26.5-108.5 43-97.5 62-81 85.5-53.5 111.5-20q19 0 39 17 154 122 319 122t319-122q20-17 39-17 28 0 57 6-28 27-41 50t-13 56q0 54 37 91z" + } + }] +}; +exports.userTimes = userTimes; +var bed = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M256 1024h1728q26 0 45 19t19 45v448h-256v-256h-1536v256h-256v-1216q0-26 19-45t45-19h128q26 0 45 19t19 45v704zM832 704q0-106-75-181t-181-75-181 75-75 181 75 181 181 75 181-75 75-181zM2048 960v-64q0-159-112.5-271.5t-271.5-112.5h-704q-26 0-45 19t-19 45v384h1152z" + } + }] +}; +exports.bed = bed; +var hotel = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M256 1024h1728q26 0 45 19t19 45v448h-256v-256h-1536v256h-256v-1216q0-26 19-45t45-19h128q26 0 45 19t19 45v704zM832 704q0-106-75-181t-181-75-181 75-75 181 75 181 181 75 181-75 75-181zM2048 960v-64q0-159-112.5-271.5t-271.5-112.5h-704q-26 0-45 19t-19 45v384h1152z" + } + }] +}; +exports.hotel = hotel; +var viacoin = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1536 0l-192 448h192v192h-274l-55 128h329v192h-411l-357 832-357-832h-411v-192h329l-55-128h-274v-192h192l-192-448h256l323 768h378l323-768h256zM768 1216l108-256h-216z" + } + }] +}; +exports.viacoin = viacoin; +var train = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1088 0q185 0 316.5 93.5t131.5 226.5v896q0 130-125.5 222t-305.5 97l213 202q16 15 8 35t-30 20h-1056q-22 0-30-20t8-35l213-202q-180-5-305.5-97t-125.5-222v-896q0-133 131.5-226.5t316.5-93.5h640zM768 1344q80 0 136-56t56-136-56-136-136-56-136 56-56 136 56 136 136 56zM1344 768v-512h-1152v512h1152z" + } + }] +}; +exports.train = train; +var subway = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1088 0q185 0 316.5 93.5t131.5 226.5v896q0 130-125.5 222t-305.5 97l213 202q16 15 8 35t-30 20h-1056q-22 0-30-20t8-35l213-202q-180-5-305.5-97t-125.5-222v-896q0-133 131.5-226.5t316.5-93.5h640zM288 1312q66 0 113-47t47-113-47-113-113-47-113 47-47 113 47 113 113 47zM704 768v-512h-544v512h544zM1248 1312q66 0 113-47t47-113-47-113-113-47-113 47-47 113 47 113 113 47zM1408 768v-512h-576v512h576z" + } + }] +}; +exports.subway = subway; +var medium = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M597 421v1173q0 25-12.5 42.5t-36.5 17.5q-17 0-33-8l-465-233q-21-10-35.5-33.5t-14.5-46.5v-1140q0-20 10-34t29-14q14 0 44 15l511 256q3 3 3 5zM661 522l534 866-534-266v-600zM1792 540v1054q0 25-14 40.5t-38 15.5-47-13l-441-220zM1789 420q0 3-256.5 419.5t-300.5 487.5l-390-634 324-527q17-28 52-28 14 0 26 6l541 270q4 2 4 6z" + } + }] +}; +exports.medium = medium; +var yCombinator = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M809 1004l266-499h-112l-157 312q-24 48-44 92l-42-92-155-312h-120l263 493v324h101v-318zM1536 128v1536h-1536v-1536h1536z" + } + }] +}; +exports.yCombinator = yCombinator; +var yc = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M809 1004l266-499h-112l-157 312q-24 48-44 92l-42-92-155-312h-120l263 493v324h101v-318zM1536 128v1536h-1536v-1536h1536z" + } + }] +}; +exports.yc = yc; +var optinMonster = { + "viewBox": "0 0 2296 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M478 1675q-8 16-27 34.5t-37 25.5q-25 9-51.5-3.5t-28.5-31.5q-1-22 40-55t68-38q23-4 34 21.5t2 46.5zM1819 1675q7 16 26 34.5t38 25.5q25 9 51.5-3.5t27.5-31.5q2-22-39.5-55t-68.5-38q-22-4-33 21.5t-2 46.5zM1867 1566q13 27 56.5 59.5t77.5 41.5q45 13 82-4.5t37-50.5q0-46-67.5-100.5t-115.5-59.5q-40-5-63.5 37.5t-6.5 76.5zM428 1566q-13 27-56 59.5t-77 41.5q-45 13-82-4.5t-37-50.5q0-46 67.5-100.5t115.5-59.5q40-5 63 37.5t6 76.5zM1158 442h1q-41 0-76 15 27 8 44 30.5t17 49.5q0 35-27 60t-65 25q-52 0-80-43-5 23-5 42 0 74 56 126.5t135 52.5q80 0 136-52.5t56-126.5-56-126.5-136-52.5zM1462 224q-99-109-220.5-131.5t-245.5 44.5q27-60 82.5-96.5t118-39.5 121.5 17 99.5 74.5 44.5 131.5zM2212 1463q8 11-11 42 7 23 7 40 1 56-44.5 112.5t-109.5 91.5-118 37q-48 2-92-21.5t-66-65.5q-687 25-1259 0-23 41-66.5 65t-92.5 22q-86-3-179.5-80.5t-92.5-160.5q2-22 7-40-19-31-11-42 6-10 31-1 14-22 41-51-7-29 2-38 11-10 39 4 29-20 59-34 0-29 13-37 23-12 51 16 35-5 61 2 18 4 38 19v-73q-11 0-18-2-53-10-97-44.5t-55-87.5q-9-38 0-81 15-62 93-95 2-17 19-35.5t36-23.5 33 7.5 19 30.5h13q46 5 60 23 3 3 5 7 10-1 30.5-3.5t30.5-3.5q-15-11-30-17-23-40-91-43 0-6 1-10-62-2-118.5-18.5t-84.5-47.5q-32-36-42.5-92t-2.5-112q16-126 90-179 23-16 52-4.5t32 40.5q0 1 1.5 14t2.5 21 3 20 5.5 19 8.5 10q27 14 76 12 48-46 98-74-40-4-162 14l47-46q61-58 163-111 145-73 282-86-20-8-41-15.5t-47-14-42.5-10.5-47.5-11-43-10q595-126 904 139 98 84 158 222 85 10 121-9h1q5-3 8.5-10t5.5-19 3-19.5 3-21.5l1-14q3-28 32-40t52 5q73 52 91 178 7 57-3.5 113t-42.5 91q-28 32-83.5 48.5t-115.5 18.5v10q-71 2-95 43-14 5-31 17 11 1 32 3.5t30 3.5q1-5 5-8 16-18 60-23h13q5-18 19-30t33-8 36 23 19 36q79 32 93 95 9 40 1 81-12 53-56 88t-97 44q-10 2-17 2 0 49-1 73 20-15 38-19 26-7 61-2 28-28 51-16 14 9 14 37 33 16 59 34 27-13 38-4 10 10 2 38 28 30 41 51 23-8 31 1zM1937 511q0 29-9 54 82 32 112 132 4-37-9.5-98.5t-41.5-90.5q-20-19-36-17t-16 20zM1859 611q35 42 47.5 108.5t-0.5 124.5q67-13 97-45 13-14 18-28-3-64-31-114.5t-79-66.5q-15 15-52 21zM1822 615q-30 0-44-1 42 115 53 239 21 0 43-3 16-68 1-135t-53-100zM258 697q30-100 112-132-9-25-9-54 0-18-16.5-20t-35.5 17q-28 29-41.5 90.5t-9.5 98.5zM294 799q29 31 97 45-13-58-0.5-124.5t47.5-108.5v0q-37-6-52-21-51 16-78.5 66t-31.5 115q9 17 18 28zM471 853q14-124 73-235-19 4-55 18l-45 19v-1q-46 89-20 196 25 3 47 3zM1434 892q8 38 16.5 108.5t11.5 89.5q3 18 9.5 21.5t23.5-4.5q40-20 62-85.5t23-125.5q-24-2-146-4zM1152 251q-116 0-199 82.5t-83 198.5q0 117 83 199.5t199 82.5 199-82.5 83-199.5q0-116-83-198.5t-199-82.5zM1380 890q-105-2-211 0v-1q-1 27 2.5 86t13.5 66q29 14 93.5 14.5t95.5-10.5q9-3 11-39t-0.5-69.5-4.5-46.5zM1112 1089q8-4 9.5-48t-0.5-88-4-63v-1q-212 3-214 3-4 20-7 62t0 83 14 46q34 15 101 16t101-10zM718 900q-16 59 4.5 118.5t77.5 84.5q15 8 24 5t12-21q3-16 8-90t10-103q-69 2-136 6zM591 1026q3 23-34 36 132 141 271.5 240t305.5 154q172-49 310.5-146t293.5-250q-33-13-30-34 0-2 0.5-3.5t1.5-3 1-2.5v-1 1q-17-2-50-5.5t-48-4.5q-26 90-82 132-51 38-82-1-5-6-9-14-7-13-17-62-2 5-5 9t-7.5 7-8 5.5-9.5 4l-10 2.5t-12 2l-12 1.5t-13.5 1-13.5 0.5q-106 9-163-11-4 17-10 26.5t-21 15-23 7-36 3.5q-6 1-9 1-179 17-203-40-2 63-56 54-47-8-91-54-12-13-20-26-17-29-26-65-58 6-87 10 1 2 4 10zM507 1654q3-14 3-30-17-71-51-130t-73-70q-41-12-101.5 14.5t-104.5 80-39 107.5q35 53 100 93t119 42q51 2 94-28t53-79zM510 1483q23 63 27 119 195-113 392-174-98-52-180.5-120t-179.5-165q-6 4-29 13 0 1-1 4t-1 5q31 18 22 37-12 23-56 34-10 13-29 24h-1q-2 83 1 150 19 34 35 73zM579 1649q532 21 1145 0-254-147-428-196-76 35-156 57-8 3-16 0-65-21-129-49-208 60-416 188h-1v1q1 0 1-1zM1763 1603q4-54 28-120 14-38 33-71l-1 1q3-77 3-153-15-8-30-25-42-9-56-33-9-20 22-38-2-4-2-9-16-4-28-12-204 190-383 284 198 59 414 176zM2155 1626q5-54-39-107.5t-104-80-102-14.5q-38 11-72.5 70.5t-51.5 129.5q0 16 3 30 10 49 53 79t94 28q54-2 119-42t100-93z" + } + }] +}; +exports.optinMonster = optinMonster; +var opencart = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1524 1561q0 68-48 116t-116 48-116.5-48-48.5-116 48.5-116.5 116.5-48.5 116 48.5 48 116.5zM775 1561q0 68-48.5 116t-116.5 48-116-48-48-116 48-116.5 116-48.5 116.5 48.5 48.5 116.5zM0 67q57 60 110.5 104.5t121 82 136 63 166 45.5 200 31.5 250 18.5 304 9.5 372.5 2.5q139 0 244.5 5t181 16.5 124 27.5 71 39.5 24 51.5-19.5 64-56.5 76.5-89.5 91-116 104.5-139 119q-185 157-286 247 29-51 76.5-109t94-105.5 94.5-98.5 83-91.5 54-80.5 13-70-45.5-55.5-116.5-41-204-23.5-304-5q-168 2-314-6t-256-23-204.5-41-159.5-51.5-122.5-62.5-91.5-66.5-68-71.5-50.5-69.5-40-68-36.5-59.5z" + } + }] +}; +exports.opencart = opencart; +var expeditedssl = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M896 64q-169 0-323 66t-265.5 177.5-177.5 265.5-66 323 66 323 177.5 265.5 265.5 177.5 323 66 323-66 265.5-177.5 177.5-265.5 66-323-66-323-177.5-265.5-265.5-177.5-323-66zM896 0q182 0 348 71t286 191 191 286 71 348-71 348-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71zM496 832q16 0 16 16v480q0 16-16 16h-32q-16 0-16-16v-480q0-16 16-16h32zM896 896q53 0 90.5 37.5t37.5 90.5q0 35-17.5 64t-46.5 46v114q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-114q-29-17-46.5-46t-17.5-64q0-53 37.5-90.5t90.5-37.5zM896 128q209 0 385.5 103t279.5 279.5 103 385.5-103 385.5-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103zM544 608v96q0 14 9 23t23 9h64q14 0 23-9t9-23v-96q0-93 65.5-158.5t158.5-65.5 158.5 65.5 65.5 158.5v96q0 14 9 23t23 9h64q14 0 23-9t9-23v-96q0-146-103-249t-249-103-249 103-103 249zM1408 1344v-512q0-26-19-45t-45-19h-896q-26 0-45 19t-19 45v512q0 26 19 45t45 19h896q26 0 45-19t19-45z" + } + }] +}; +exports.expeditedssl = expeditedssl; +var battery = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1920 512v768h-1664v-768h1664zM2048 1088h128v-384h-128v-288q0-14-9-23t-23-9h-1856q-14 0-23 9t-9 23v960q0 14 9 23t23 9h1856q14 0 23-9t9-23v-288zM2304 704v384q0 53-37.5 90.5t-90.5 37.5v160q0 66-47 113t-113 47h-1856q-66 0-113-47t-47-113v-960q0-66 47-113t113-47h1856q66 0 113 47t47 113v160q53 0 90.5 37.5t37.5 90.5z" + } + }] +}; +exports.battery = battery; +var battery4 = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1920 512v768h-1664v-768h1664zM2048 1088h128v-384h-128v-288q0-14-9-23t-23-9h-1856q-14 0-23 9t-9 23v960q0 14 9 23t23 9h1856q14 0 23-9t9-23v-288zM2304 704v384q0 53-37.5 90.5t-90.5 37.5v160q0 66-47 113t-113 47h-1856q-66 0-113-47t-47-113v-960q0-66 47-113t113-47h1856q66 0 113 47t47 113v160q53 0 90.5 37.5t37.5 90.5z" + } + }] +}; +exports.battery4 = battery4; +var batteryFull = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1920 512v768h-1664v-768h1664zM2048 1088h128v-384h-128v-288q0-14-9-23t-23-9h-1856q-14 0-23 9t-9 23v960q0 14 9 23t23 9h1856q14 0 23-9t9-23v-288zM2304 704v384q0 53-37.5 90.5t-90.5 37.5v160q0 66-47 113t-113 47h-1856q-66 0-113-47t-47-113v-960q0-66 47-113t113-47h1856q66 0 113 47t47 113v160q53 0 90.5 37.5t37.5 90.5z" + } + }] +}; +exports.batteryFull = batteryFull; +var battery3 = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M256 1280v-768h1280v768h-1280zM2176 576q53 0 90.5 37.5t37.5 90.5v384q0 53-37.5 90.5t-90.5 37.5v160q0 66-47 113t-113 47h-1856q-66 0-113-47t-47-113v-960q0-66 47-113t113-47h1856q66 0 113 47t47 113v160zM2176 1088v-384h-128v-288q0-14-9-23t-23-9h-1856q-14 0-23 9t-9 23v960q0 14 9 23t23 9h1856q14 0 23-9t9-23v-288h128z" + } + }] +}; +exports.battery3 = battery3; +var batteryThreeQuarters = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M256 1280v-768h1280v768h-1280zM2176 576q53 0 90.5 37.5t37.5 90.5v384q0 53-37.5 90.5t-90.5 37.5v160q0 66-47 113t-113 47h-1856q-66 0-113-47t-47-113v-960q0-66 47-113t113-47h1856q66 0 113 47t47 113v160zM2176 1088v-384h-128v-288q0-14-9-23t-23-9h-1856q-14 0-23 9t-9 23v960q0 14 9 23t23 9h1856q14 0 23-9t9-23v-288h128z" + } + }] +}; +exports.batteryThreeQuarters = batteryThreeQuarters; +var battery2 = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M256 1280v-768h896v768h-896zM2176 576q53 0 90.5 37.5t37.5 90.5v384q0 53-37.5 90.5t-90.5 37.5v160q0 66-47 113t-113 47h-1856q-66 0-113-47t-47-113v-960q0-66 47-113t113-47h1856q66 0 113 47t47 113v160zM2176 1088v-384h-128v-288q0-14-9-23t-23-9h-1856q-14 0-23 9t-9 23v960q0 14 9 23t23 9h1856q14 0 23-9t9-23v-288h128z" + } + }] +}; +exports.battery2 = battery2; +var batteryHalf = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M256 1280v-768h896v768h-896zM2176 576q53 0 90.5 37.5t37.5 90.5v384q0 53-37.5 90.5t-90.5 37.5v160q0 66-47 113t-113 47h-1856q-66 0-113-47t-47-113v-960q0-66 47-113t113-47h1856q66 0 113 47t47 113v160zM2176 1088v-384h-128v-288q0-14-9-23t-23-9h-1856q-14 0-23 9t-9 23v960q0 14 9 23t23 9h1856q14 0 23-9t9-23v-288h128z" + } + }] +}; +exports.batteryHalf = batteryHalf; +var battery1 = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M256 1280v-768h512v768h-512zM2176 576q53 0 90.5 37.5t37.5 90.5v384q0 53-37.5 90.5t-90.5 37.5v160q0 66-47 113t-113 47h-1856q-66 0-113-47t-47-113v-960q0-66 47-113t113-47h1856q66 0 113 47t47 113v160zM2176 1088v-384h-128v-288q0-14-9-23t-23-9h-1856q-14 0-23 9t-9 23v960q0 14 9 23t23 9h1856q14 0 23-9t9-23v-288h128z" + } + }] +}; +exports.battery1 = battery1; +var batteryQuarter = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M256 1280v-768h512v768h-512zM2176 576q53 0 90.5 37.5t37.5 90.5v384q0 53-37.5 90.5t-90.5 37.5v160q0 66-47 113t-113 47h-1856q-66 0-113-47t-47-113v-960q0-66 47-113t113-47h1856q66 0 113 47t47 113v160zM2176 1088v-384h-128v-288q0-14-9-23t-23-9h-1856q-14 0-23 9t-9 23v960q0 14 9 23t23 9h1856q14 0 23-9t9-23v-288h128z" + } + }] +}; +exports.batteryQuarter = batteryQuarter; +var battery0 = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M2176 576q53 0 90.5 37.5t37.5 90.5v384q0 53-37.5 90.5t-90.5 37.5v160q0 66-47 113t-113 47h-1856q-66 0-113-47t-47-113v-960q0-66 47-113t113-47h1856q66 0 113 47t47 113v160zM2176 1088v-384h-128v-288q0-14-9-23t-23-9h-1856q-14 0-23 9t-9 23v960q0 14 9 23t23 9h1856q14 0 23-9t9-23v-288h128z" + } + }] +}; +exports.battery0 = battery0; +var batteryEmpty = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M2176 576q53 0 90.5 37.5t37.5 90.5v384q0 53-37.5 90.5t-90.5 37.5v160q0 66-47 113t-113 47h-1856q-66 0-113-47t-47-113v-960q0-66 47-113t113-47h1856q66 0 113 47t47 113v160zM2176 1088v-384h-128v-288q0-14-9-23t-23-9h-1856q-14 0-23 9t-9 23v960q0 14 9 23t23 9h1856q14 0 23-9t9-23v-288h128z" + } + }] +}; +exports.batteryEmpty = batteryEmpty; +var mousePointer = { + "viewBox": "0 0 1280 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1133 1043q31 30 14 69-17 40-59 40h-382l201 476q10 25 0 49t-34 35l-177 75q-25 10-49 0t-35-34l-191-452-312 312q-19 19-45 19-12 0-24-5-40-17-40-59v-1504q0-42 40-59 12-5 24-5 27 0 45 19z" + } + }] +}; +exports.mousePointer = mousePointer; +var iCursor = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M832 128q-320 0-320 224v416h128v128h-128v544q0 224 320 224h64v128h-64q-272 0-384-146-112 146-384 146h-64v-128h64q320 0 320-224v-544h-128v-128h128v-416q0-224-320-224h-64v-128h64q272 0 384 146 112-146 384-146h64v128h-64z" + } + }] +}; +exports.iCursor = iCursor; +var objectGroup = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M2048 384h-128v1024h128v384h-384v-128h-1280v128h-384v-384h128v-1024h-128v-384h384v128h1280v-128h384v384zM1792 128v128h128v-128h-128zM128 128v128h128v-128h-128zM256 1664v-128h-128v128h128zM1664 1536v-128h128v-1024h-128v-128h-1280v128h-128v1024h128v128h1280zM1920 1664v-128h-128v128h128zM1280 640h384v768h-896v-256h-384v-768h896v256zM512 1024h640v-512h-640v512zM1536 1280v-512h-256v384h-384v128h640z" + } + }] +}; +exports.objectGroup = objectGroup; +var objectUngroup = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M2304 768h-128v640h128v384h-384v-128h-896v128h-384v-384h128v-128h-384v128h-384v-384h128v-640h-128v-384h384v128h896v-128h384v384h-128v128h384v-128h384v384zM2048 512v128h128v-128h-128zM1408 128v128h128v-128h-128zM128 128v128h128v-128h-128zM256 1280v-128h-128v128h128zM1536 1152h-128v128h128v-128zM384 1152h896v-128h128v-640h-128v-128h-896v128h-128v640h128v128zM896 1664v-128h-128v128h128zM2176 1664v-128h-128v128h128zM2048 1408v-640h-128v-128h-384v384h128v384h-384v-128h-384v128h128v128h896v-128h128z" + } + }] +}; +exports.objectUngroup = objectUngroup; +var stickyNote = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 1248v416h-928q-40 0-68-28t-28-68v-1344q0-40 28-68t68-28h1344q40 0 68 28t28 68v928h-416q-40 0-68 28t-28 68zM1152 1280h381q-15 82-65 132l-184 184q-50 50-132 65v-381z" + } + }] +}; +exports.stickyNote = stickyNote; +var stickyNoteO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1400 1280h-248v248q29-10 41-22l185-185q12-12 22-41zM1120 1152h288v-896h-1280v1280h896v-288q0-40 28-68t68-28zM1536 224v1024q0 40-20 88t-48 76l-184 184q-28 28-76 48t-88 20h-1024q-40 0-68-28t-28-68v-1344q0-40 28-68t68-28h1344q40 0 68 28t28 68z" + } + }] +}; +exports.stickyNoteO = stickyNoteO; +var ccJcb = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1951 998q0 26-15.5 44.5t-38.5 23.5q-8 2-18 2h-153v-140h153q10 0 18 2 23 5 38.5 23.5t15.5 44.5zM1933 785q0 25-15 42t-38 21q-3 1-15 1h-139v-129h139q3 0 8.5 0.5t6.5 0.5q23 4 38 21.5t15 42.5zM728 949v-308h-228v308q0 58-38 94.5t-105 36.5q-108 0-229-59v112q53 15 121 23t109 9l42 1q328 0 328-217zM1442 1133v-113q-99 52-200 59-108 8-169-41t-61-142 61-142 169-41q101 7 200 58v-112q-48-12-100-19.5t-80-9.5l-28-2q-127-6-218.5 14t-140.5 60-71 88-22 106 22 106 71 88 140.5 60 218.5 14q101-4 208-31zM2176 1018q0-54-43-88.5t-109-39.5v-3q57-8 89-41.5t32-79.5q0-55-41-88t-107-36q-3 0-12-0.5t-14-0.5h-455v510h491q74 0 121.5-36.5t47.5-96.5zM2304 256v1280q0 52-38 90t-90 38h-2048q-52 0-90-38t-38-90v-1280q0-52 38-90t90-38h2048q52 0 90 38t38 90z" + } + }] +}; +exports.ccJcb = ccJcb; +var ccDinersClub = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M858 1241v-693q-106 41-172 135.5t-66 211.5 66 211.5 172 134.5zM1362 895q0-117-66-211.5t-172-135.5v694q106-41 172-135.5t66-211.5zM1577 895q0 159-78.5 294t-213.5 213.5-294 78.5q-119 0-227.5-46.5t-187-125-125-187-46.5-227.5q0-159 78.5-294t213.5-213.5 294-78.5 294 78.5 213.5 213.5 78.5 294zM1960 902q0-139-55.5-261.5t-147.5-205.5-213.5-131-252.5-48h-301q-176 0-323.5 81t-235 230-87.5 335q0 171 87 317.5t236 231.5 323 85h301q129 0 251.5-50.5t214.5-135 147.5-202.5 55.5-246zM2304 256v1280q0 52-38 90t-90 38h-2048q-52 0-90-38t-38-90v-1280q0-52 38-90t90-38h2048q52 0 90 38t38 90z" + } + }] +}; +exports.ccDinersClub = ccDinersClub; +var clone = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1664 1632v-1088q0-13-9.5-22.5t-22.5-9.5h-1088q-13 0-22.5 9.5t-9.5 22.5v1088q0 13 9.5 22.5t22.5 9.5h1088q13 0 22.5-9.5t9.5-22.5zM1792 544v1088q0 66-47 113t-113 47h-1088q-66 0-113-47t-47-113v-1088q0-66 47-113t113-47h1088q66 0 113 47t47 113zM1408 160v160h-128v-160q0-13-9.5-22.5t-22.5-9.5h-1088q-13 0-22.5 9.5t-9.5 22.5v1088q0 13 9.5 22.5t22.5 9.5h160v128h-160q-66 0-113-47t-47-113v-1088q0-66 47-113t113-47h1088q66 0 113 47t47 113z" + } + }] +}; +exports.clone = clone; +var balanceScale = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1728 448l-384 704h768zM448 448l-384 704h768zM1269 256q-14 40-45.5 71.5t-71.5 45.5v1291h608q14 0 23 9t9 23v64q0 14-9 23t-23 9h-1344q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h608v-1291q-40-14-71.5-45.5t-45.5-71.5h-491q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h491q21-57 70-92.5t111-35.5 111 35.5 70 92.5h491q14 0 23 9t9 23v64q0 14-9 23t-23 9h-491zM1088 272q33 0 56.5-23.5t23.5-56.5-23.5-56.5-56.5-23.5-56.5 23.5-23.5 56.5 23.5 56.5 56.5 23.5zM2176 1152q0 73-46.5 131t-117.5 91-144.5 49.5-139.5 16.5-139.5-16.5-144.5-49.5-117.5-91-46.5-131q0-11 35-81t92-174.5 107-195.5 102-184 56-100q18-33 56-33t56 33q4 7 56 100t102 184 107 195.5 92 174.5 35 81zM896 1152q0 73-46.5 131t-117.5 91-144.5 49.5-139.5 16.5-139.5-16.5-144.5-49.5-117.5-91-46.5-131q0-11 35-81t92-174.5 107-195.5 102-184 56-100q18-33 56-33t56 33q4 7 56 100t102 184 107 195.5 92 174.5 35 81z" + } + }] +}; +exports.balanceScale = balanceScale; +var hourglassO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1408 128q0 261-106.5 461.5t-266.5 306.5q160 106 266.5 306.5t106.5 461.5h96q14 0 23 9t9 23v64q0 14-9 23t-23 9h-1472q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h96q0-261 106.5-461.5t266.5-306.5q-160-106-266.5-306.5t-106.5-461.5h-96q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h1472q14 0 23 9t9 23v64q0 14-9 23t-23 9h-96zM874 836q77-29 149-92.5t129.5-152.5 92.5-210 35-253h-1024q0 132 35 253t92.5 210 129.5 152.5 149 92.5q19 7 30.5 23.5t11.5 36.5-11.5 36.5-30.5 23.5q-77 29-149 92.5t-129.5 152.5-92.5 210-35 253h1024q0-132-35-253t-92.5-210-129.5-152.5-149-92.5q-19-7-30.5-23.5t-11.5-36.5 11.5-36.5 30.5-23.5z" + } + }] +}; +exports.hourglassO = hourglassO; +var hourglass1 = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1408 128q0 261-106.5 461.5t-266.5 306.5q160 106 266.5 306.5t106.5 461.5h96q14 0 23 9t9 23v64q0 14-9 23t-23 9h-1472q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h96q0-261 106.5-461.5t266.5-306.5q-160-106-266.5-306.5t-106.5-461.5h-96q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h1472q14 0 23 9t9 23v64q0 14-9 23t-23 9h-96zM1280 128h-1024q0 66 9 128h1006q9-61 9-128zM1280 1664q0-130-34-249.5t-90.5-208-126.5-152-146-94.5h-230q-76 31-146 94.5t-126.5 152-90.5 208-34 249.5h1024z" + } + }] +}; +exports.hourglass1 = hourglass1; +var hourglassStart = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1408 128q0 261-106.5 461.5t-266.5 306.5q160 106 266.5 306.5t106.5 461.5h96q14 0 23 9t9 23v64q0 14-9 23t-23 9h-1472q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h96q0-261 106.5-461.5t266.5-306.5q-160-106-266.5-306.5t-106.5-461.5h-96q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h1472q14 0 23 9t9 23v64q0 14-9 23t-23 9h-96zM1280 128h-1024q0 66 9 128h1006q9-61 9-128zM1280 1664q0-130-34-249.5t-90.5-208-126.5-152-146-94.5h-230q-76 31-146 94.5t-126.5 152-90.5 208-34 249.5h1024z" + } + }] +}; +exports.hourglassStart = hourglassStart; +var hourglass2 = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1408 128q0 261-106.5 461.5t-266.5 306.5q160 106 266.5 306.5t106.5 461.5h96q14 0 23 9t9 23v64q0 14-9 23t-23 9h-1472q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h96q0-261 106.5-461.5t266.5-306.5q-160-106-266.5-306.5t-106.5-461.5h-96q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h1472q14 0 23 9t9 23v64q0 14-9 23t-23 9h-96zM1280 128h-1024q0 206 85 384h854q85-178 85-384zM1223 1344q-54-141-145.5-241.5t-194.5-142.5h-230q-103 42-194.5 142.5t-145.5 241.5h910z" + } + }] +}; +exports.hourglass2 = hourglass2; +var hourglassHalf = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1408 128q0 261-106.5 461.5t-266.5 306.5q160 106 266.5 306.5t106.5 461.5h96q14 0 23 9t9 23v64q0 14-9 23t-23 9h-1472q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h96q0-261 106.5-461.5t266.5-306.5q-160-106-266.5-306.5t-106.5-461.5h-96q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h1472q14 0 23 9t9 23v64q0 14-9 23t-23 9h-96zM1280 128h-1024q0 206 85 384h854q85-178 85-384zM1223 1344q-54-141-145.5-241.5t-194.5-142.5h-230q-103 42-194.5 142.5t-145.5 241.5h910z" + } + }] +}; +exports.hourglassHalf = hourglassHalf; +var hourglass3 = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1408 128q0 261-106.5 461.5t-266.5 306.5q160 106 266.5 306.5t106.5 461.5h96q14 0 23 9t9 23v64q0 14-9 23t-23 9h-1472q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h96q0-261 106.5-461.5t266.5-306.5q-160-106-266.5-306.5t-106.5-461.5h-96q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h1472q14 0 23 9t9 23v64q0 14-9 23t-23 9h-96zM874 836q77-29 149-92.5t129.5-152.5 92.5-210 35-253h-1024q0 132 35 253t92.5 210 129.5 152.5 149 92.5q19 7 30.5 23.5t11.5 36.5-11.5 36.5-30.5 23.5q-137 51-244 196h700q-107-145-244-196-19-7-30.5-23.5t-11.5-36.5 11.5-36.5 30.5-23.5z" + } + }] +}; +exports.hourglass3 = hourglass3; +var hourglassEnd = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1408 128q0 261-106.5 461.5t-266.5 306.5q160 106 266.5 306.5t106.5 461.5h96q14 0 23 9t9 23v64q0 14-9 23t-23 9h-1472q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h96q0-261 106.5-461.5t266.5-306.5q-160-106-266.5-306.5t-106.5-461.5h-96q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h1472q14 0 23 9t9 23v64q0 14-9 23t-23 9h-96zM874 836q77-29 149-92.5t129.5-152.5 92.5-210 35-253h-1024q0 132 35 253t92.5 210 129.5 152.5 149 92.5q19 7 30.5 23.5t11.5 36.5-11.5 36.5-30.5 23.5q-137 51-244 196h700q-107-145-244-196-19-7-30.5-23.5t-11.5-36.5 11.5-36.5 30.5-23.5z" + } + }] +}; +exports.hourglassEnd = hourglassEnd; +var hourglass = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1504 1600q14 0 23 9t9 23v128q0 14-9 23t-23 9h-1472q-14 0-23-9t-9-23v-128q0-14 9-23t23-9h1472zM130 1536q3-55 16-107t30-95 46-87 53.5-76 64.5-69.5 66-60 70.5-55 66.5-47.5 65-43q-43-28-65-43t-66.5-47.5-70.5-55-66-60-64.5-69.5-53.5-76-46-87-30-95-16-107h1276q-3 55-16 107t-30 95-46 87-53.5 76-64.5 69.5-66 60-70.5 55-66.5 47.5-65 43q43 28 65 43t66.5 47.5 70.5 55 66 60 64.5 69.5 53.5 76 46 87 30 95 16 107h-1276zM1504 0q14 0 23 9t9 23v128q0 14-9 23t-23 9h-1472q-14 0-23-9t-9-23v-128q0-14 9-23t23-9h1472z" + } + }] +}; +exports.hourglass = hourglass; +var handGrabO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M768 384q-53 0-90.5 37.5t-37.5 90.5v128h-32v-93q0-48-32-81.5t-80-33.5q-46 0-79 33t-33 79v429l-32-30v-172q0-48-32-81.5t-80-33.5q-46 0-79 33t-33 79v224q0 47 35 82l310 296q39 39 39 102 0 26 19 45t45 19h640q26 0 45-19t19-45v-25q0-41 10-77l108-436q10-36 10-77v-246q0-48-32-81.5t-80-33.5q-46 0-79 33t-33 79v32h-32v-125q0-40-25-72.5t-64-40.5q-14-2-23-2-46 0-79 33t-33 79v128h-32v-122q0-51-32.5-89.5t-82.5-43.5q-5-1-13-1zM768 256q84 0 149 50 57-34 123-34 59 0 111 27t86 76q27-7 59-7 100 0 170 71.5t70 171.5v246q0 51-13 108l-109 436q-6 24-6 71 0 80-56 136t-136 56h-640q-84 0-138-58.5t-54-142.5l-308-296q-76-73-76-175v-224q0-99 70.5-169.5t169.5-70.5q11 0 16 1 6-95 75.5-160t164.5-65q52 0 98 21 72-69 174-69z" + } + }] +}; +exports.handGrabO = handGrabO; +var handRockO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M768 384q-53 0-90.5 37.5t-37.5 90.5v128h-32v-93q0-48-32-81.5t-80-33.5q-46 0-79 33t-33 79v429l-32-30v-172q0-48-32-81.5t-80-33.5q-46 0-79 33t-33 79v224q0 47 35 82l310 296q39 39 39 102 0 26 19 45t45 19h640q26 0 45-19t19-45v-25q0-41 10-77l108-436q10-36 10-77v-246q0-48-32-81.5t-80-33.5q-46 0-79 33t-33 79v32h-32v-125q0-40-25-72.5t-64-40.5q-14-2-23-2-46 0-79 33t-33 79v128h-32v-122q0-51-32.5-89.5t-82.5-43.5q-5-1-13-1zM768 256q84 0 149 50 57-34 123-34 59 0 111 27t86 76q27-7 59-7 100 0 170 71.5t70 171.5v246q0 51-13 108l-109 436q-6 24-6 71 0 80-56 136t-136 56h-640q-84 0-138-58.5t-54-142.5l-308-296q-76-73-76-175v-224q0-99 70.5-169.5t169.5-70.5q11 0 16 1 6-95 75.5-160t164.5-65q52 0 98 21 72-69 174-69z" + } + }] +}; +exports.handRockO = handRockO; +var handPaperO = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M880 128q-46 0-79 33t-33 79v656h-32v-528q0-46-33-79t-79-33-79 33-33 79v528 256l-154-205q-38-51-102-51-53 0-90.5 37.5t-37.5 90.5q0 43 26 77l384 512q38 51 102 51h688q34 0 61-22t34-56l76-405q5-32 5-59v-498q0-46-33-79t-79-33-79 33-33 79v272h-32v-528q0-46-33-79t-79-33-79 33-33 79v528h-32v-656q0-46-33-79t-79-33zM880 0q68 0 125.5 35.5t88.5 96.5q19-4 42-4 99 0 169.5 70.5t70.5 169.5v17q105-6 180.5 64t75.5 175v498q0 40-8 83l-76 404q-14 79-76.5 131t-143.5 52h-688q-60 0-114.5-27.5t-90.5-74.5l-384-512q-51-68-51-154 0-106 75-181t181-75q78 0 128 34v-434q0-99 70.5-169.5t169.5-70.5q23 0 42 4 31-61 88.5-96.5t125.5-35.5z" + } + }] +}; +exports.handPaperO = handPaperO; +var handStopO = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M880 128q-46 0-79 33t-33 79v656h-32v-528q0-46-33-79t-79-33-79 33-33 79v528 256l-154-205q-38-51-102-51-53 0-90.5 37.5t-37.5 90.5q0 43 26 77l384 512q38 51 102 51h688q34 0 61-22t34-56l76-405q5-32 5-59v-498q0-46-33-79t-79-33-79 33-33 79v272h-32v-528q0-46-33-79t-79-33-79 33-33 79v528h-32v-656q0-46-33-79t-79-33zM880 0q68 0 125.5 35.5t88.5 96.5q19-4 42-4 99 0 169.5 70.5t70.5 169.5v17q105-6 180.5 64t75.5 175v498q0 40-8 83l-76 404q-14 79-76.5 131t-143.5 52h-688q-60 0-114.5-27.5t-90.5-74.5l-384-512q-51-68-51-154 0-106 75-181t181-75q78 0 128 34v-434q0-99 70.5-169.5t169.5-70.5q23 0 42 4 31-61 88.5-96.5t125.5-35.5z" + } + }] +}; +exports.handStopO = handStopO; +var handScissorsO = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1073 1664h-177q-163 0-226-141-23-49-23-102v-5q-62-30-98.5-88.5t-36.5-127.5q0-38 5-48h-261q-106 0-181-75t-75-181 75-181 181-75h113l-44-17q-74-28-119.5-93.5t-45.5-145.5q0-106 75-181t181-75q46 0 91 17l628 239h401q106 0 181 75t75 181v668q0 88-54 157.5t-140 90.5l-339 85q-92 23-186 23zM1024 953l-155 71-163 74q-30 14-48 41.5t-18 60.5q0 46 33 79t79 33q26 0 46-10l338-154q-49-10-80.5-50t-31.5-90v-55zM1344 1264q0-46-33-79t-79-33q-26 0-46 10l-290 132q-28 13-37 17t-30.5 17-29.5 23.5-16 29-8 40.5q0 50 31.5 82t81.5 32q20 0 38-9l352-160q30-14 48-41.5t18-60.5zM1112 512l-650-248q-24-8-46-8-53 0-90.5 37.5t-37.5 90.5q0 40 22.5 73t59.5 47l526 200v64h-640q-53 0-90.5 37.5t-37.5 90.5 37.5 90.5 90.5 37.5h535l233-106v-198q0-63 46-106l111-102h-69zM1073 1536q82 0 155-19l339-85q43-11 70-45.5t27-78.5v-668q0-53-37.5-90.5t-90.5-37.5h-308l-136 126q-36 33-36 82v296q0 46 33 77t79 31 79-35 33-81v-208h32v208q0 70-57 114 52 8 86.5 48.5t34.5 93.5q0 42-23 78t-61 53l-310 141h91z" + } + }] +}; +exports.handScissorsO = handScissorsO; +var handLizardO = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1151 0q61 0 116 28t91 77l572 781q118 159 118 359v355q0 80-56 136t-136 56h-384q-80 0-136-56t-56-136v-177l-286-143h-546q-80 0-136-56t-56-136v-32q0-119 84.5-203.5t203.5-84.5h420l42-128h-686q-100 0-173.5-67.5t-81.5-166.5q-65-79-65-182v-32q0-80 56-136t136-56h959zM1920 1600v-355q0-157-93-284l-573-781q-39-52-103-52h-959q-26 0-45 19t-19 45q0 32 1.5 49.5t9.5 40.5 25 43q10-31 35.5-50t56.5-19h832v32h-832q-26 0-45 19t-19 45q0 44 3 58 8 44 44 73t81 29h640 91q40 0 68 28t28 68q0 15-5 30l-64 192q-10 29-35 47.5t-56 18.5h-443q-66 0-113 47t-47 113v32q0 26 19 45t45 19h561q16 0 29 7l317 158q24 13 38.5 36t14.5 50v197q0 26 19 45t45 19h384q26 0 45-19t19-45z" + } + }] +}; +exports.handLizardO = handLizardO; +var handSpockO = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M459 1792q-77 0-137.5-47.5t-79.5-122.5l-101-401q-13-57-13-108 0-45-5-67l-116-477q-7-27-7-57 0-93 62-161t155-78q17-85 82.5-139t152.5-54q83 0 148 51.5t85 132.5l83 348 103-428q20-81 85-132.5t148-51.5q89 0 155.5 57.5t80.5 144.5q92 10 152 79t60 162q0 24-7 59l-123 512q10-7 37.5-28.5t38.5-29.5 35-23 41-20.5 41.5-11 49.5-5.5q105 0 180 74t75 179q0 62-28.5 118t-78.5 94l-507 380q-68 51-153 51h-694zM1104 128q-38 0-68.5 24t-39.5 62l-164 682h-127l-145-602q-9-38-39.5-62t-68.5-24q-48 0-80 33t-32 80q0 15 3 28l132 547h-26l-99-408q-9-37-40-62.5t-69-25.5q-47 0-80 33t-33 79q0 14 3 26l116 478q7 28 9 86t10 88l100 401q8 32 34 52.5t59 20.5h694q42 0 76-26l507-379q56-43 56-110 0-52-37.5-88.5t-89.5-36.5q-43 0-77 26l-307 230v-227q0-4 32-138t68-282 39-161q4-18 4-29 0-47-32-81t-79-34q-39 0-69.5 24t-39.5 62l-116 482h-26l150-624q3-14 3-28 0-48-31.5-82t-79.5-34z" + } + }] +}; +exports.handSpockO = handSpockO; +var handPointerO = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 128q-53 0-90.5 37.5t-37.5 90.5v512 384l-151-202q-41-54-107-54-52 0-89 38t-37 90q0 43 26 77l384 512q38 51 102 51h718q22 0 39.5-13.5t22.5-34.5l92-368q24-96 24-194v-217q0-41-28-71t-68-30-68 28-28 68h-32v-61q0-48-32-81.5t-80-33.5q-46 0-79 33t-33 79v64h-32v-90q0-55-37-94.5t-91-39.5q-53 0-90.5 37.5t-37.5 90.5v96h-32v-570q0-55-37-94.5t-91-39.5zM640 0q107 0 181.5 77.5t74.5 184.5v220q22-2 32-2 99 0 173 69 47-21 99-21 113 0 184 87 27-7 56-7 94 0 159 67.5t65 161.5v217q0 116-28 225l-92 368q-16 64-68 104.5t-118 40.5h-718q-60 0-114.5-27.5t-90.5-74.5l-384-512q-51-68-51-154 0-105 74.5-180.5t179.5-75.5q71 0 130 35v-547q0-106 75-181t181-75zM768 1408v-384h-32v384h32zM1024 1408v-384h-32v384h32zM1280 1408v-384h-32v384h32z" + } + }] +}; +exports.handPointerO = handPointerO; +var handPeaceO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1288 647q60 0 107 23 141 63 141 226v177q0 94-23 186l-85 339q-21 86-90.5 140t-157.5 54h-668q-106 0-181-75t-75-181v-401l-239-628q-17-45-17-91 0-106 75-181t181-75q80 0 145.5 45.5t93.5 119.5l17 44v-113q0-106 75-181t181-75 181 75 75 181v261q27-5 48-5 69 0 127.5 36.5t88.5 98.5zM1072 640q-33 0-60.5 18t-41.5 48l-74 163-71 155h55q50 0 90 31.5t50 80.5l154-338q10-20 10-46 0-46-33-79t-79-33zM1293 775q-22 0-40.5 8t-29 16-23.5 29.5-17 30.5-17 37l-132 290q-10 20-10 46 0 46 33 79t79 33q33 0 60.5-18t41.5-48l160-352q9-18 9-38 0-50-32-81.5t-82-31.5zM128 416q0 22 8 46l248 650v69l102-111q43-46 106-46h198l106-233v-535q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5v640h-64l-200-526q-14-37-47-59.5t-73-22.5q-53 0-90.5 37.5t-37.5 90.5zM1180 1664q44 0 78.5-27t45.5-70l85-339q19-73 19-155v-91l-141 310q-17 38-53 61t-78 23q-53 0-93.5-34.5t-48.5-86.5q-44 57-114 57h-208v-32h208q46 0 81-33t35-79-31-79-77-33h-296q-49 0-82 36l-126 136v308q0 53 37.5 90.5t90.5 37.5h668z" + } + }] +}; +exports.handPeaceO = handPeaceO; +var trademark = { + "viewBox": "0 0 1973 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M857 544v117q0 13-9.5 22t-22.5 9h-298v812q0 13-9 22.5t-22 9.5h-135q-13 0-22.5-9t-9.5-23v-812h-297q-13 0-22.5-9t-9.5-22v-117q0-14 9-23t23-9h793q13 0 22.5 9.5t9.5 22.5zM1895 541l77 961q1 13-8 24-10 10-23 10h-134q-12 0-21-8.5t-10-20.5l-46-588-189 425q-8 19-29 19h-120q-20 0-29-19l-188-427-45 590q-1 12-10 20.5t-21 8.5h-135q-13 0-23-10-9-10-9-24l78-961q1-12 10-20.5t21-8.5h142q20 0 29 19l220 520q10 24 20 51 3-7 9.5-24.5t10.5-26.5l221-520q9-19 29-19h141q13 0 22 8.5t10 20.5z" + } + }] +}; +exports.trademark = trademark; +var registered = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1042 703q0-88-60-121-33-18-117-18h-123v281h162q66 0 102-37t36-105zM1094 988l205 373q8 17-1 31-8 16-27 16h-152q-20 0-28-17l-194-365h-155v350q0 14-9 23t-23 9h-134q-14 0-23-9t-9-23v-960q0-14 9-23t23-9h294q128 0 190 24 85 31 134 109t49 180q0 92-42.5 165.5t-115.5 109.5q6 10 9 16zM896 160q-150 0-286 58.5t-234.5 157-157 234.5-58.5 286 58.5 286 157 234.5 234.5 157 286 58.5 286-58.5 234.5-157 157-234.5 58.5-286-58.5-286-157-234.5-234.5-157-286-58.5zM1792 896q0 182-71 348t-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71 348 71 286 191 191 286 71 348z" + } + }] +}; +exports.registered = registered; +var creativeCommons = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M605 1233q153 0 257-104 14-18 3-36l-45-82q-6-13-24-17-16-2-27 11l-4 3q-4 4-11.5 10t-17.5 13.5-23.5 14.5-28.5 13-33.5 9.5-37.5 3.5q-76 0-125-50t-49-127q0-76 48-125.5t122-49.5q37 0 71.5 14t50.5 28l16 14q11 11 26 10 16-2 24-14l53-78q13-20-2-39-3-4-11-12t-30-23.5-48.5-28-67.5-22.5-86-10q-148 0-246 96.5t-98 240.5q0 146 97 241.5t247 95.5zM1235 1233q153 0 257-104 14-18 4-36l-45-82q-8-14-25-17-16-2-27 11l-4 3q-4 4-11.5 10t-17.5 13.5-23.5 14.5-28.5 13-33.5 9.5-37.5 3.5q-76 0-125-50t-49-127q0-76 48-125.5t122-49.5q37 0 71.5 14t50.5 28l16 14q11 11 26 10 16-2 24-14l53-78q13-20-2-39-3-4-11-12t-30-23.5-48.5-28-67.5-22.5-86-10q-147 0-245.5 96.5t-98.5 240.5q0 146 97 241.5t247 95.5zM896 160q-150 0-286 58.5t-234.5 157-157 234.5-58.5 286 58.5 286 157 234.5 234.5 157 286 58.5 286-58.5 234.5-157 157-234.5 58.5-286-58.5-286-157-234.5-234.5-157-286-58.5zM896 0q182 0 348 71t286 191 191 286 71 348-71 348-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71z" + } + }] +}; +exports.creativeCommons = creativeCommons; +var gg = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M736 800l384 384-384 384-672-672 672-672 168 168-96 96-72-72-480 480 480 480 193-193-289-287zM1312 224l672 672-672 672-168-168 96-96 72 72 480-480-480-480-193 193 289 287-96 96-384-384z" + } + }] +}; +exports.gg = gg; +var ggCircle = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M717 1354l271-271-279-279-88 88 192 191-96 96-279-279 279-279 40 40 87-87-127-128-454 454zM1075 1346l454-454-454-454-271 271 279 279 88-88-192-191 96-96 279 279-279 279-40-40-87 88zM1792 896q0 182-71 348t-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71 348 71 286 191 191 286 71 348z" + } + }] +}; +exports.ggCircle = ggCircle; +var tripadvisor = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M651 997q0 39-27.5 66.5t-65.5 27.5q-39 0-66.5-27.5t-27.5-66.5q0-38 27.5-65.5t66.5-27.5q38 0 65.5 27.5t27.5 65.5zM1805 996q0 39-27.5 66.5t-66.5 27.5-66.5-27.5-27.5-66.5 27.5-66 66.5-27 66.5 27 27.5 66zM765 997q0-79-56.5-136t-136.5-57-136.5 56.5-56.5 136.5 56.5 136.5 136.5 56.5 136.5-56.5 56.5-136.5zM1918 996q0-80-56.5-136.5t-136.5-56.5q-79 0-136 56.5t-57 136.5 56.5 136.5 136.5 56.5 136.5-56.5 56.5-136.5zM850 997q0 116-81.5 197.5t-196.5 81.5q-116 0-197.5-82t-81.5-197 82-196.5 197-81.5 196.5 81.5 81.5 196.5zM2004 996q0 115-81.5 196.5t-197.5 81.5q-115 0-196.5-81.5t-81.5-196.5 81.5-196.5 196.5-81.5q116 0 197.5 81.5t81.5 196.5zM1040 999q0-191-135.5-326.5t-326.5-135.5q-125 0-231 62t-168 168.5-62 231.5 62 231.5 168 168.5 231 62q191 0 326.5-135.5t135.5-326.5zM1708 426q-254-111-556-111-319 0-573 110 117 0 223 45.5t182.5 122.5 122 183 45.5 223q0-115 43.5-219.5t118-180.5 177.5-123 217-50zM2187 999q0-191-135-326.5t-326-135.5-326.5 135.5-135.5 326.5 135.5 326.5 326.5 135.5 326-135.5 135-326.5zM1921 433h383q-44 51-75 114.5t-40 114.5q110 151 110 337 0 156-77 288t-209 208.5-287 76.5q-133 0-249-56t-196-155q-47 56-129 179-11-22-53.5-82.5t-74.5-97.5q-80 99-196.5 155.5t-249.5 56.5q-155 0-287-76.5t-209-208.5-77-288q0-186 110-337-9-51-40-114.5t-75-114.5h365q149-100 355-156.5t432-56.5q224 0 421 56t348 157z" + } + }] +}; +exports.tripadvisor = tripadvisor; +var odnoklassniki = { + "viewBox": "0 0 1280 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 907q-188 0-321-133t-133-320q0-188 133-321t321-133 321 133 133 321q0 187-133 320t-321 133zM640 230q-92 0-157.5 65.5t-65.5 158.5q0 92 65.5 157.5t157.5 65.5 157.5-65.5 65.5-157.5q0-93-65.5-158.5t-157.5-65.5zM1163 962q13 27 15 49.5t-4.5 40.5-26.5 38.5-42.5 37-61.5 41.5q-115 73-315 94l73 72 267 267q30 31 30 74t-30 73l-12 13q-31 30-74 30t-74-30q-67-68-267-268l-267 268q-31 30-74 30t-73-30l-12-13q-31-30-31-73t31-74l267-267 72-72q-203-21-317-94-39-25-61.5-41.5t-42.5-37-26.5-38.5-4.5-40.5 15-49.5q10-20 28-35t42-22 56 2 65 35q5 4 15 11t43 24.5 69 30.5 92 24 113 11q91 0 174-25.5t120-50.5l38-25q33-26 65-35t56-2 42 22 28 35z" + } + }] +}; +exports.odnoklassniki = odnoklassniki; +var odnoklassnikiSquare = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M927 580q0 66-46.5 112.5t-112.5 46.5-112.5-46.5-46.5-112.5 46.5-112.5 112.5-46.5 112.5 46.5 46.5 112.5zM1141 943q-10-20-28-32t-47.5-9.5-60.5 27.5q-10 8-29 20t-81 32-127 20-124-18-86-36l-27-18q-31-25-60.5-27.5t-47.5 9.5-28 32q-22 45-2 74.5t87 73.5q83 53 226 67l-51 52q-142 142-191 190-22 22-22 52.5t22 52.5l9 9q22 22 52.5 22t52.5-22l191-191q114 115 191 191 22 22 52.5 22t52.5-22l9-9q22-22 22-52.5t-22-52.5l-191-190-52-52q141-14 225-67 67-44 87-73.5t-2-74.5zM1092 580q0-134-95-229t-229-95-229 95-95 229 95 229 229 95 229-95 95-229zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.odnoklassnikiSquare = odnoklassnikiSquare; +var getPocket = { + "viewBox": "0 0 1720 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1565 128q65 0 110 45.5t45 110.5v519q0 176-68 336t-182.5 275-274 182.5-334.5 67.5q-176 0-335.5-67.5t-274.5-182.5-183-275-68-336v-519q0-64 46-110t110-46h1409zM861 1192q47 0 82-33l404-388q37-35 37-85 0-49-34.5-83.5t-83.5-34.5q-47 0-82 33l-323 310-323-310q-35-33-81-33-49 0-83.5 34.5t-34.5 83.5q0 51 36 85l405 388q33 33 81 33z" + } + }] +}; +exports.getPocket = getPocket; +var wikipediaW = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1494 1639l-295-695q-25 49-158.5 305.5t-198.5 389.5q-1 1-27.5 0.5t-26.5-1.5q-82-193-255.5-587t-259.5-596q-21-50-66.5-107.5t-103.5-100.5-102-43q0-5-0.5-24t-0.5-27h583v50q-39 2-79.5 16t-66.5 43-10 64q26 59 216.5 499t235.5 540q31-61 140-266.5t131-247.5q-19-39-126-281t-136-295q-38-69-201-71v-50l513 1v47q-60 2-93.5 25t-12.5 69q33 70 87 189.5t86 187.5q110-214 173-363 24-55-10-79.5t-129-26.5q1-7 1-25v-24q64 0 170.5-0.5t180-1 92.5-0.5v49q-62 2-119 33t-90 81l-213 442q13 33 127.5 290t121.5 274l441-1017q-14-38-49.5-62.5t-65-31.5-55.5-8v-50l460 4 1 2-1 44q-139 4-201 145-526 1216-559 1291h-49z" + } + }] +}; +exports.wikipediaW = wikipediaW; +var safari = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M949 893q0 26-16.5 45t-41.5 19q-26 0-45-16.5t-19-41.5q0-26 17-45t42-19 44 16.5 19 41.5zM964 951l350-581q-9 8-67.5 62.5t-125.5 116.5-136.5 127-117 110.5-50.5 51.5l-349 580q7-7 67-62t126-116.5 136-127 117-111 50-50.5zM1611 896q0 201-104 371-3-2-17-11t-26.5-16.5-16.5-7.5q-13 0-13 13 0 10 59 44-74 112-184.5 190.5t-241.5 110.5l-16-67q-1-10-15-10-5 0-8 5.5t-2 9.5l16 68q-72 15-146 15-199 0-372-105 1-2 13-20.5t21.5-33.5 9.5-19q0-13-13-13-6 0-17 14.5t-22.5 34.5-13.5 23q-113-75-192-187.5t-110-244.5l69-15q10-3 10-15 0-5-5.5-8t-10.5-2l-68 15q-14-72-14-139 0-206 109-379 2 1 18.5 12t30 19 17.5 8q13 0 13-12 0-6-12.5-15.5t-32.5-21.5l-20-12q77-112 189-189t244-107l15 67q2 10 15 10 5 0 8-5.5t2-10.5l-15-66q71-13 134-13 204 0 379 109-39 56-39 65 0 13 12 13 11 0 48-64 111 75 187.5 186t107.5 241l-56 12q-10 2-10 16 0 5 5.5 8t9.5 2l57-13q14 72 14 140zM1696 896q0-163-63.5-311t-170.5-255-255-170.5-311-63.5-311 63.5-255 170.5-170.5 255-63.5 311 63.5 311 170.5 255 255 170.5 311 63.5 311-63.5 255-170.5 170.5-255 63.5-311zM1792 896q0 182-71 348t-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71 348 71 286 191 191 286 71 348z" + } + }] +}; +exports.safari = safari; +var chrome = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M893 0q240-2 451 120 232 134 352 372l-742-39q-160-9-294 74.5t-185 229.5l-276-424q128-159 311-245.5t383-87.5zM146 405l337 663q72 143 211 217t293 45l-230 451q-212-33-385-157.5t-272.5-316-99.5-411.5q0-267 146-491zM1732 574q58 150 59.5 310.5t-48.5 306-153 272-246 209.5q-230 133-498 119l405-623q88-131 82.5-290.5t-106.5-277.5zM896 594q125 0 213.5 88.5t88.5 213.5-88.5 213.5-213.5 88.5-213.5-88.5-88.5-213.5 88.5-213.5 213.5-88.5z" + } + }] +}; +exports.chrome = chrome; +var firefox = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M903 1792q-283 0-504.5-150.5t-329.5-398.5q-58-131-67-301t26-332.5 111-312 179-242.5l-11 281q11-14 68-15.5t70 15.5q42-81 160.5-138t234.5-59q-54 45-119.5 148.5t-58.5 163.5q25 8 62.5 13.5t63 7.5 68 4 50.5 3q15 5 9.5 45.5t-30.5 75.5q-5 7-16.5 18.5t-56.5 35.5-101 34l15 189-139-67q-18 43-7.5 81.5t36 66.5 65.5 41.5 81 6.5q51-9 98-34.5t83.5-45 73.5-17.5q61 4 89.5 33t19.5 65q-1 2-2.5 5.5t-8.5 12.5-18 15.5-31.5 10.5-46.5 1q-60 95-144.5 135.5t-209.5 29.5q74 61 162.5 82.5t168.5 6 154.5-52 128-87.5 80.5-104q43-91 39-192.5t-37.5-188.5-78.5-125q87 38 137 79.5t77 112.5q15-170-57.5-343t-209.5-284q265 77 412 279.5t151 517.5q2 127-40.5 255t-123.5 238-189 196-247.5 135.5-288.5 49.5z" + } + }] +}; +exports.firefox = firefox; +var opera = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1493 228q-165-110-359-110-155 0-293 73t-240 200q-75 93-119.5 218t-48.5 266v42q4 141 48.5 266t119.5 218q102 127 240 200t293 73q194 0 359-110-121 108-274.5 168t-322.5 60q-29 0-43-1-175-8-333-82t-272-193-181-281-67-339q0-182 71-348t191-286 286-191 348-71h3q168 1 320.5 60.5t273.5 167.5zM1792 896q0 192-77 362.5t-213 296.5q-104 63-222 63-137 0-255-84 154-56 253.5-233t99.5-405q0-227-99-404t-253-234q119-83 254-83 119 0 226 65 135 125 210.5 295t75.5 361z" + } + }] +}; +exports.opera = opera; +var internetExplorer = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1792 937q0 56-7 104h-1151q0 146 109.5 244.5t257.5 98.5q99 0 185.5-46.5t136.5-130.5h423q-56 159-170.5 281t-267.5 188.5-321 66.5q-187 0-356-83-228 116-394 116-237 0-237-263 0-115 45-275 17-60 109-229 199-360 475-606-184 79-427 354 63-274 283.5-449.5t501.5-175.5q30 0 45 1 255-117 433-117 64 0 116 13t94.5 40.5 66.5 76.5 24 115q0 116-75 286 101 182 101 390zM1722 297q0-83-53-132t-137-49q-108 0-254 70 121 47 222.5 131.5t170.5 195.5q51-135 51-216zM128 1534q0 86 48.5 132.5t134.5 46.5q115 0 266-83-122-72-213.5-183t-137.5-245q-98 205-98 332zM632 821h728q-5-142-113-237t-251-95q-144 0-251.5 95t-112.5 237z" + } + }] +}; +exports.internetExplorer = internetExplorer; +var television = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1792 1248v-960q0-13-9.5-22.5t-22.5-9.5h-1600q-13 0-22.5 9.5t-9.5 22.5v960q0 13 9.5 22.5t22.5 9.5h1600q13 0 22.5-9.5t9.5-22.5zM1920 288v960q0 66-47 113t-113 47h-736v128h352q14 0 23 9t9 23v64q0 14-9 23t-23 9h-832q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h352v-128h-736q-66 0-113-47t-47-113v-960q0-66 47-113t113-47h1600q66 0 113 47t47 113z" + } + }] +}; +exports.television = television; +var tv = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1792 1248v-960q0-13-9.5-22.5t-22.5-9.5h-1600q-13 0-22.5 9.5t-9.5 22.5v960q0 13 9.5 22.5t22.5 9.5h1600q13 0 22.5-9.5t9.5-22.5zM1920 288v960q0 66-47 113t-113 47h-736v128h352q14 0 23 9t9 23v64q0 14-9 23t-23 9h-832q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h352v-128h-736q-66 0-113-47t-47-113v-960q0-66 47-113t113-47h1600q66 0 113 47t47 113z" + } + }] +}; +exports.tv = tv; +var contao = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M138 128h197q-70 64-126 149-36 56-59 115t-30 125.5-8.5 120 10.5 132 21 126 28 136.5q4 19 6 28 51 238 81 329 57 171 152 275h-272q-48 0-82-34t-34-82v-1304q0-48 34-82t82-34zM1346 128h308q48 0 82 34t34 82v1304q0 48-34 82t-82 34h-178q212-210 196-565l-469 101q-2 45-12 82t-31 72-59.5 59.5-93.5 36.5q-123 26-199-40-32-27-53-61t-51.5-129-64.5-258q-35-163-45.5-263t-5.5-139 23-77q20-41 62.5-73t102.5-45q45-12 83.5-6.5t67 17 54 35 43 48 34.5 56.5l468-100q-68-175-180-287z" + } + }] +}; +exports.contao = contao; +var fiveHundredPX = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1401 1547l-6 6q-113 113-259 175-154 64-317 64-165 0-317-64-148-63-259-175-113-112-175-258-42-103-54-189-4-28 48-36 51-8 56 20 1 1 1 4 18 90 46 159 50 124 152 226 98 98 226 152 132 56 276 56 143 0 276-56 128-55 225-152l6-6q10-10 25-6 12 3 33 22 36 37 17 58zM929 932l-66 66 63 63q21 21-7 49-17 17-32 17-10 0-19-10l-62-61-66 66q-5 5-15 5-15 0-31-16l-2-2q-18-15-18-29 0-7 8-17l66-65-66-66q-16-16 14-45 18-18 31-18 6 0 13 5l65 66 65-65q18-17 48 13 27 27 11 44zM1400 989q0 118-46 228-45 105-126 186-80 80-187 126t-228 46-228-46-187-126q-82-82-125-186-15-33-15-40h-1q-9-27 43-44 50-16 60 12 37 99 97 167h1v-339-2q3-136 102-232 105-103 253-103 147 0 251 103t104 249q0 147-104.5 251t-250.5 104q-58 0-112-16-28-11-13-61 16-51 44-43l14 3q14 3 33 6t30 3q104 0 176-71.5t72-174.5q0-101-72-171-71-71-175-71-107 0-178 80-64 72-64 160v413q110 67 242 67 96 0 185-36.5t156-103.5 103.5-155 36.5-183q0-198-141-339-140-140-339-140-200 0-340 140-53 53-77 87l-2 2q-8 11-13 15.5t-21.5 9.5-38.5-3q-21-5-36.5-16.5t-15.5-26.5v-680q0-15 10.5-26.5t27.5-11.5h877q30 0 30 55t-30 55h-811v483h1q40-42 102-84t108-61q109-46 231-46 121 0 228 46t187 126q81 81 126 186 46 112 46 229zM1369 408q9 8 9 18t-5.5 18-16.5 21q-26 26-39 26-9 0-16-7-106-91-207-133-128-56-276-56-133 0-262 49-27 10-45-37-9-25-8-38 3-16 16-20 130-57 299-57 164 0 316 64 137 58 235 152z" + } + }] +}; +exports.fiveHundredPX = fiveHundredPX; +var amazon = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1551 1476q15-6 26-3t11 17.5-15 33.5q-13 16-44 43.5t-95.5 68-141 74-188 58-229.5 24.5q-119 0-238-31t-209-76.5-172.5-104-132.5-105-84-87.5q-8-9-10-16.5t1-12 8-7 11.5-2 11.5 4.5q192 117 300 166 389 176 799 90 190-40 391-135zM1758 1361q11 16 2.5 69.5t-28.5 102.5q-34 83-85 124-17 14-26 9t0-24q21-45 44.5-121.5t6.5-98.5q-5-7-15.5-11.5t-27-6-29.5-2.5-35 0-31.5 2-31 3-22.5 2q-6 1-13 1.5t-11 1-8.5 1-7 0.5h-5.5-4.5t-3-0.5-2-1.5l-1.5-3q-6-16 47-40t103-30q46-7 108-1t76 24zM1364 918q0 31 13.5 64t32 58 37.5 46 33 32l13 11-227 224q-40-37-79-75.5t-58-58.5l-19-20q-11-11-25-33-38 59-97.5 102.5t-127.5 63.5-140 23-137.5-21-117.5-65.5-83-113-31-162.5q0-84 28-154t72-116.5 106.5-83 122.5-57 130-34.5 119.5-18.5 99.5-6.5v-127q0-65-21-97-34-53-121-53-6 0-16.5 1t-40.5 12-56 29.5-56 59.5-48 96l-294-27q0-60 22-119t67-113 108-95 151.5-65.5 190.5-24.5q100 0 181 25t129.5 61.5 81 83 45 86 12.5 73.5v589zM692 939q0 86 70 133 66 44 139 22 84-25 114-123 14-45 14-101v-162q-59 2-111 12t-106.5 33.5-87 71-32.5 114.5z" + } + }] +}; +exports.amazon = amazon; +var calendarPlusO = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1536 256q52 0 90 38t38 90v1280q0 52-38 90t-90 38h-1408q-52 0-90-38t-38-90v-1280q0-52 38-90t90-38h128v-96q0-66 47-113t113-47h64q66 0 113 47t47 113v96h384v-96q0-66 47-113t113-47h64q66 0 113 47t47 113v96h128zM1152 160v288q0 14 9 23t23 9h64q14 0 23-9t9-23v-288q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23zM384 160v288q0 14 9 23t23 9h64q14 0 23-9t9-23v-288q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23zM1536 1664v-1024h-1408v1024h1408zM896 1088h224q14 0 23 9t9 23v64q0 14-9 23t-23 9h-224v224q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-224h-224q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h224v-224q0-14 9-23t23-9h64q14 0 23 9t9 23v224z" + } + }] +}; +exports.calendarPlusO = calendarPlusO; +var calendarMinusO = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1152 1120v64q0 14-9 23t-23 9h-576q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h576q14 0 23 9t9 23zM128 1664h1408v-1024h-1408v1024zM512 448v-288q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v288q0 14 9 23t23 9h64q14 0 23-9t9-23zM1280 448v-288q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v288q0 14 9 23t23 9h64q14 0 23-9t9-23zM1664 384v1280q0 52-38 90t-90 38h-1408q-52 0-90-38t-38-90v-1280q0-52 38-90t90-38h128v-96q0-66 47-113t113-47h64q66 0 113 47t47 113v96h384v-96q0-66 47-113t113-47h64q66 0 113 47t47 113v96h128q52 0 90 38t38 90z" + } + }] +}; +exports.calendarMinusO = calendarMinusO; +var calendarTimesO = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1111 1385l-46 46q-9 9-22 9t-23-9l-188-189-188 189q-10 9-23 9t-22-9l-46-46q-9-9-9-22t9-23l189-188-189-188q-9-10-9-23t9-22l46-46q9-9 22-9t23 9l188 188 188-188q10-9 23-9t22 9l46 46q9 9 9 22t-9 23l-188 188 188 188q9 10 9 23t-9 22zM128 1664h1408v-1024h-1408v1024zM512 448v-288q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v288q0 14 9 23t23 9h64q14 0 23-9t9-23zM1280 448v-288q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v288q0 14 9 23t23 9h64q14 0 23-9t9-23zM1664 384v1280q0 52-38 90t-90 38h-1408q-52 0-90-38t-38-90v-1280q0-52 38-90t90-38h128v-96q0-66 47-113t113-47h64q66 0 113 47t47 113v96h384v-96q0-66 47-113t113-47h64q66 0 113 47t47 113v96h128q52 0 90 38t38 90z" + } + }] +}; +exports.calendarTimesO = calendarTimesO; +var calendarCheckO = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1303 964l-512 512q-10 9-23 9t-23-9l-288-288q-9-10-9-23t9-22l46-46q9-9 22-9t23 9l220 220 444-444q10-9 23-9t22 9l46 46q9 9 9 22t-9 23zM128 1664h1408v-1024h-1408v1024zM512 448v-288q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v288q0 14 9 23t23 9h64q14 0 23-9t9-23zM1280 448v-288q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v288q0 14 9 23t23 9h64q14 0 23-9t9-23zM1664 384v1280q0 52-38 90t-90 38h-1408q-52 0-90-38t-38-90v-1280q0-52 38-90t90-38h128v-96q0-66 47-113t113-47h64q66 0 113 47t47 113v96h384v-96q0-66 47-113t113-47h64q66 0 113 47t47 113v96h128q52 0 90 38t38 90z" + } + }] +}; +exports.calendarCheckO = calendarCheckO; +var industry = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M448 0q26 0 45 19t19 45v891l536-429q17-14 40-14 26 0 45 19t19 45v379l536-429q17-14 40-14 26 0 45 19t19 45v1152q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-1664q0-26 19-45t45-19h384z" + } + }] +}; +exports.industry = industry; +var mapPin = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M512 1088q66 0 128-15v655q0 26-19 45t-45 19h-128q-26 0-45-19t-19-45v-655q62 15 128 15zM512 0q212 0 362 150t150 362-150 362-362 150-362-150-150-362 150-362 362-150zM512 224q14 0 23-9t9-23-9-23-23-9q-146 0-249 103t-103 249q0 14 9 23t23 9 23-9 9-23q0-119 84.5-203.5t203.5-84.5z" + } + }] +}; +exports.mapPin = mapPin; +var mapSigns = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1745 297q10 10 10 23t-10 23l-141 141q-28 28-68 28h-1344q-26 0-45-19t-19-45v-256q0-26 19-45t45-19h576v-64q0-26 19-45t45-19h128q26 0 45 19t19 45v64h512q40 0 68 28zM768 1216h256v512q0 26-19 45t-45 19h-128q-26 0-45-19t-19-45v-512zM1600 768q26 0 45 19t19 45v256q0 26-19 45t-45 19h-1344q-40 0-68-28l-141-141q-10-10-10-23t10-23l141-141q28-28 68-28h512v-192h256v192h576z" + } + }] +}; +exports.mapSigns = mapSigns; +var mapO = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M2020 11q28 20 28 53v1408q0 20-11 36t-29 23l-640 256q-24 11-48 0l-616-246-616 246q-10 5-24 5-19 0-36-11-28-20-28-53v-1408q0-20 11-36t29-23l640-256q24-11 48 0l616 246 616-246q32-13 60 6zM736 146v1270l576 230v-1270zM128 363v1270l544-217v-1270zM1920 1429v-1270l-544 217v1270z" + } + }] +}; +exports.mapO = mapO; +var map = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M512 0q13 0 22.5 9.5t9.5 22.5v1472q0 20-17 28l-480 256q-7 4-15 4-13 0-22.5-9.5t-9.5-22.5v-1472q0-20 17-28l480-256q7-4 15-4zM1760 0q13 0 22.5 9.5t9.5 22.5v1472q0 20-17 28l-480 256q-7 4-15 4-13 0-22.5-9.5t-9.5-22.5v-1472q0-20 17-28l480-256q7-4 15-4zM640 0q8 0 14 3l512 256q18 10 18 29v1472q0 13-9.5 22.5t-22.5 9.5q-8 0-14-3l-512-256q-18-10-18-29v-1472q0-13 9.5-22.5t22.5-9.5z" + } + }] +}; +exports.map = map; +var commenting = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 896q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1024 896q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1408 896q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1792 896q0 174-120 321.5t-326 233-450 85.5q-110 0-211-18-173 173-435 229-52 10-86 13-12 1-22-6t-13-18q-4-15 20-37 5-5 23.5-21.5t25.5-23.5 23.5-25.5 24-31.5 20.5-37 20-48 14.5-57.5 12.5-72.5q-146-90-229.5-216.5t-83.5-269.5q0-174 120-321.5t326-233 450-85.5 450 85.5 326 233 120 321.5z" + } + }] +}; +exports.commenting = commenting; +var commentingO = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 896q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5 90.5 37.5 37.5 90.5zM1024 896q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5 90.5 37.5 37.5 90.5zM1408 896q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5 90.5 37.5 37.5 90.5zM896 384q-204 0-381.5 69.5t-282 187.5-104.5 255q0 112 71.5 213.5t201.5 175.5l87 50-27 96q-24 91-70 172 152-63 275-171l43-38 57 6q69 8 130 8 204 0 381.5-69.5t282-187.5 104.5-255-104.5-255-282-187.5-381.5-69.5zM1792 896q0 174-120 321.5t-326 233-450 85.5q-70 0-145-8-198 175-460 242-49 14-114 22h-5q-15 0-27-10.5t-16-27.5v-1q-3-4-0.5-12t2-10 4.5-9.5l6-9t7-8.5 8-9q7-8 31-34.5t34.5-38 31-39.5 32.5-51 27-59 26-76q-157-89-247.5-220t-90.5-281q0-130 71-248.5t191-204.5 286-136.5 348-50.5 348 50.5 286 136.5 191 204.5 71 248.5z" + } + }] +}; +exports.commentingO = commentingO; +var houzz = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M512 1191l512-295v591l-512 296v-592zM0 896v591l512-296zM512 9v591l-512 296v-591zM512 600l512-295v591z" + } + }] +}; +exports.houzz = houzz; +var vimeo = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1709 518q-10 236-332 651-333 431-562 431-142 0-240-263-44-160-132-482-72-262-157-262-18 0-127 76l-77-98q24-21 108-96.5t130-115.5q156-138 241-146 95-9 153 55.5t81 203.5q44 287 66 373 55 249 120 249 51 0 154-161 101-161 109-246 13-139-109-139-57 0-121 26 120-393 459-382 251 8 236 326z" + } + }] +}; +exports.vimeo = vimeo; +var blackTie = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 128h1536v1536h-1536v-1536zM1085 1243l-221-631 221-297h-634l221 297-221 631 317 304z" + } + }] +}; +exports.blackTie = blackTie; +var fonticons = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 128h1536v1536h-1536v-1536zM908 448l-12 33 75 83-31 114 25 25 107-57 107 57 25-25-31-114 75-83-12-33h-95l-53-96h-32l-53 96h-95zM641 611q32 0 44.5 16t11.5 63l174-21q0-55-17.5-92.5t-50.5-56-69-25.5-85-7q-133 0-199 57.5t-66 182.5v72h-96v128h76q20 0 20 8v382q0 14-5 20t-18 7l-73 7v88h448v-86l-149-14q-6-1-8.5-1.5t-3.5-2.5-0.5-4 1-7 0.5-10v-387h191l38-128h-231q-6 0-2-6t4-9v-80q0-27 1.5-40.5t7.5-28 19.5-20 36.5-5.5zM1248 1440v-86l-54-9q-7-1-9.5-2.5t-2.5-3 1-7.5 1-12v-520h-275l-23 101 83 22q23 7 23 27v370q0 14-6 18.5t-20 6.5l-70 9v86h352z" + } + }] +}; +exports.fonticons = fonticons; +var redditAlien = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1792 846q0 58-29.5 105.5t-79.5 72.5q12 46 12 96 0 155-106.5 287t-290.5 208.5-400 76.5-399.5-76.5-290-208.5-106.5-287q0-47 11-94-51-25-82-73.5t-31-106.5q0-82 58-140.5t141-58.5q85 0 145 63 218-152 515-162l116-521q3-13 15-21t26-5l369 81q18-37 54-59.5t79-22.5q62 0 106 43.5t44 105.5-44 106-106 44-105.5-43.5-43.5-105.5l-334-74-104 472q300 9 519 160 58-61 143-61 83 0 141 58.5t58 140.5zM418 1045q0 62 43.5 106t105.5 44 106-44 44-106-44-105.5-106-43.5q-61 0-105 44t-44 105zM1228 1400q11-11 11-26t-11-26q-10-10-25-10t-26 10q-41 42-121 62t-160 20-160-20-121-62q-11-10-26-10t-25 10q-11 10-11 25.5t11 26.5q43 43 118.5 68t122.5 29.5 91 4.5 91-4.5 122.5-29.5 118.5-68zM1225 1195q62 0 105.5-44t43.5-106q0-61-44-105t-105-44q-62 0-106 43.5t-44 105.5 44 106 106 44z" + } + }] +}; +exports.redditAlien = redditAlien; +var edge = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M69 795h1q16-126 58.5-241.5t115-217 167.5-176 223.5-117.5 276.5-43q231 0 414 105.5t294 303.5q104 187 104 442v188h-1125q1 111 53.5 192.5t136.5 122.5 189.5 57 213 3 208-46.5 173.5-84.5v377q-92 55-229.5 92t-312.5 38-316-53q-189-73-311.5-249t-124.5-372q-3-242 111-412t325-268q-48 60-78 125.5t-46 159.5h635q8-77-8-140t-47-101.5-70.5-66.5-80.5-41-75-20.5-56-8.5l-22-1q-135 5-259.5 44.5t-223.5 104.5-176 140.5-138 163.5z" + } + }] +}; +exports.edge = edge; +var creditCardAlt = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 1504v-608h2304v608q0 66-47 113t-113 47h-1984q-66 0-113-47t-47-113zM640 1280v128h384v-128h-384zM256 1280v128h256v-128h-256zM2144 128q66 0 113 47t47 113v224h-2304v-224q0-66 47-113t113-47h1984z" + } + }] +}; +exports.creditCardAlt = creditCardAlt; +var codiepie = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1584 1290l-218-111q-74 120-196.5 189t-263.5 69q-147 0-271-72t-196-196-72-270q0-110 42.5-209.5t115-172 172-115 209.5-42.5q131 0 247.5 60.5t192.5 168.5l215-125q-110-169-286.5-265t-378.5-96q-161 0-308 63t-253 169-169 253-63 308 63 308 169 253 253 169 308 63q213 0 397.5-107t290.5-292zM1030 893l693 352q-116 253-334.5 400t-492.5 147q-182 0-348-71t-286-191-191-286-71-348 71-348 191-286 286-191 348-71q260 0 470.5 133.5t335.5 366.5zM1543 896h-39v160h-96v-352h136q32 0 54.5 20t28.5 48 1 56-27.5 48-57.5 20z" + } + }] +}; +exports.codiepie = codiepie; +var modx = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1427 709l-614-386 92-151h855zM405 974l-184-116v-858l1183 743zM1424 839l147 95v858l-532-335zM1387 818l-500 802h-855l356-571z" + } + }] +}; +exports.modx = modx; +var fortAwesome = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 1008v-224q0-16-16-16h-96q-16 0-16 16v224q0 16 16 16h96q16 0 16-16zM1152 1008v-224q0-16-16-16h-96q-16 0-16 16v224q0 16 16 16h96q16 0 16-16zM1664 1040v752h-640v-320q0-80-56-136t-136-56-136 56-56 136v320h-640v-752q0-16 16-16h96q16 0 16 16v112h128v-624q0-16 16-16h96q16 0 16 16v112h128v-112q0-16 16-16h96q16 0 16 16v112h128v-112q0-6 2.5-9.5t8.5-5 9.5-2 11.5 0 9 0.5v-391q-32-15-32-50 0-23 16.5-39t38.5-16 38.5 16 16.5 39q0 35-32 50v17q45-10 83-10 21 0 59.5 7.5t54.5 7.5q17 0 47-7.5t37-7.5q16 0 16 16v210q0 15-35 21.5t-62 6.5q-18 0-54.5-7.5t-55.5-7.5q-40 0-90 12v133q1 0 9-0.5t11.5 0 9.5 2 8.5 5 2.5 9.5v112h128v-112q0-16 16-16h96q16 0 16 16v112h128v-112q0-16 16-16h96q16 0 16 16v624h128v-112q0-16 16-16h96q16 0 16 16z" + } + }] +}; +exports.fortAwesome = fortAwesome; +var usb = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M2288 805q16 8 16 27t-16 27l-320 192q-8 5-16 5-9 0-16-4-16-10-16-28v-128h-858q37 58 83 165 16 37 24.5 55t24 49 27 47 27 34 31.5 26 33 8h96v-96q0-14 9-23t23-9h320q14 0 23 9t9 23v320q0 14-9 23t-23 9h-320q-14 0-23-9t-9-23v-96h-96q-32 0-61-10t-51-23.5-45-40.5-37-46-33.5-57-28.5-57.5-28-60.5q-23-53-37-81.5t-36-65-44.5-53.5-46.5-17h-360q-22 84-91 138t-157 54q-106 0-181-75t-75-181 75-181 181-75q88 0 157 54t91 138h104q24 0 46.5-17t44.5-53.5 36-65 37-81.5q19-41 28-60.5t28.5-57.5 33.5-57 37-46 45-40.5 51-23.5 61-10h107q21-57 70-92.5t111-35.5q80 0 136 56t56 136-56 136-136 56q-62 0-111-35.5t-70-92.5h-107q-17 0-33 8t-31.5 26-27 34-27 47-24 49-24.5 55q-46 107-83 165h1114v-128q0-18 16-28t32 1z" + } + }] +}; +exports.usb = usb; +var productHunt = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1150 762q0 56-39.5 95t-95.5 39h-253v-269h253q56 0 95.5 39.5t39.5 95.5zM1329 762q0-130-91.5-222t-222.5-92h-433v896h180v-269h253q130 0 222-91.5t92-221.5zM1792 896q0 182-71 348t-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71 348 71 286 191 191 286 71 348z" + } + }] +}; +exports.productHunt = productHunt; +var mixcloud = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1645 1098q0-59-34-106.5t-87-68.5q-7 45-23 92-7 24-27.5 38t-44.5 14q-12 0-24-3-31-10-45-38.5t-4-58.5q23-71 23-143 0-123-61-227.5t-166-165.5-228-61q-134 0-247 73t-167 194q108 28 188 106 22 23 22 55t-22 54-54 22-55-22q-75-75-180-75-106 0-181 74.5t-75 180.5 75 180.5 181 74.5h1046q79 0 134.5-55.5t55.5-133.5zM1798 1098q0 142-100.5 242t-242.5 100h-1046q-169 0-289-119.5t-120-288.5q0-153 100-267t249-136q62-184 221-298t354-114q235 0 408.5 158.5t196.5 389.5q116 25 192.5 118.5t76.5 214.5zM2048 1098q0 175-97 319-23 33-64 33-24 0-43-13-26-17-32-48.5t12-57.5q71-104 71-233t-71-233q-18-26-12-57t32-49 57.5-11.5 49.5 32.5q97 142 97 318zM2304 1098q0 244-134 443-23 34-64 34-23 0-42-13-26-18-32.5-49t11.5-57q108-164 108-358 0-195-108-357-18-26-11.5-57.5t32.5-48.5q26-18 57-12t49 33q134 198 134 442z" + } + }] +}; +exports.mixcloud = mixcloud; +var scribd = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1500 1549q0 89-63 152.5t-153 63.5-153.5-63.5-63.5-152.5q0-90 63.5-153.5t153.5-63.5 153 63.5 63 153.5zM1267 1268q-115 15-192.5 102.5t-77.5 205.5q0 74 33 138-146 78-379 78-109 0-201-21t-153.5-54.5-110.5-76.5-76-85-44.5-83-23.5-66.5-6-39.5q0-19 4.5-42.5t18.5-56 36.5-58 64-43.5 94.5-18 94 17.5 63 41 35.5 53 17.5 49 4 33.5q0 34-23 81 28 27 82 42t93 17l40 1q115 0 190-51t75-133q0-26-9-48.5t-31.5-44.5-49.5-41-74-44-93.5-47.5-119.5-56.5q-28-13-43-20-116-55-187-100t-122.5-102-72-125.5-20.5-162.5q0-78 20.5-150t66-137.5 112.5-114 166.5-77 221.5-28.5q120 0 220 26t164.5 67 109.5 94 64 105.5 19 103.5q0 46-15 82.5t-36.5 58-48.5 36-49 19.5-39 5h-8-32t-39-5-44-14-41-28-37-46-24-70.5-10-97.5q-15-16-59-25.5t-81-10.5l-37-1q-68 0-117.5 31t-70.5 70-21 76q0 24 5 43t24 46 53 51 97 53.5 150 58.5q76 25 138.5 53.5t109 55.5 83 59 60.5 59.5 41 62.5 26.5 62 14.5 63.5 6 62 1 62.5z" + } + }] +}; +exports.scribd = scribd; +var pauseCircle = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M704 1184v-576q0-14-9-23t-23-9h-256q-14 0-23 9t-9 23v576q0 14 9 23t23 9h256q14 0 23-9t9-23zM1152 1184v-576q0-14-9-23t-23-9h-256q-14 0-23 9t-9 23v576q0 14 9 23t23 9h256q14 0 23-9t9-23zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.pauseCircle = pauseCircle; +var pauseCircleO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M768 128q209 0 385.5 103t279.5 279.5 103 385.5-103 385.5-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103zM768 1440q148 0 273-73t198-198 73-273-73-273-198-198-273-73-273 73-198 198-73 273 73 273 198 198 273 73zM864 1216q-14 0-23-9t-9-23v-576q0-14 9-23t23-9h192q14 0 23 9t9 23v576q0 14-9 23t-23 9h-192zM480 1216q-14 0-23-9t-9-23v-576q0-14 9-23t23-9h192q14 0 23 9t9 23v576q0 14-9 23t-23 9h-192z" + } + }] +}; +exports.pauseCircleO = pauseCircleO; +var stopCircle = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1088 1184v-576q0-14-9-23t-23-9h-576q-14 0-23 9t-9 23v576q0 14 9 23t23 9h576q14 0 23-9t9-23zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.stopCircle = stopCircle; +var stopCircleO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M768 128q209 0 385.5 103t279.5 279.5 103 385.5-103 385.5-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103zM768 1440q148 0 273-73t198-198 73-273-73-273-198-198-273-73-273 73-198 198-73 273 73 273 198 198 273 73zM480 1216q-14 0-23-9t-9-23v-576q0-14 9-23t23-9h576q14 0 23 9t9 23v576q0 14-9 23t-23 9h-576z" + } + }] +}; +exports.stopCircleO = stopCircleO; +var shoppingBag = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1757 1408l35 313q3 28-16 50-19 21-48 21h-1664q-29 0-48-21-19-22-16-50l35-313h1722zM1664 569l86 775h-1708l86-775q3-24 21-40.5t43-16.5h256v128q0 53 37.5 90.5t90.5 37.5 90.5-37.5 37.5-90.5v-128h384v128q0 53 37.5 90.5t90.5 37.5 90.5-37.5 37.5-90.5v-128h256q25 0 43 16.5t21 40.5zM1280 384v256q0 26-19 45t-45 19-45-19-19-45v-256q0-106-75-181t-181-75-181 75-75 181v256q0 26-19 45t-45 19-45-19-19-45v-256q0-159 112.5-271.5t271.5-112.5 271.5 112.5 112.5 271.5z" + } + }] +}; +exports.shoppingBag = shoppingBag; +var shoppingBasket = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1920 768q53 0 90.5 37.5t37.5 90.5-37.5 90.5-90.5 37.5h-15l-115 662q-8 46-44 76t-82 30h-1280q-46 0-82-30t-44-76l-115-662h-15q-53 0-90.5-37.5t-37.5-90.5 37.5-90.5 90.5-37.5h1792zM485 1568q26-2 43.5-22.5t15.5-46.5l-32-416q-2-26-22.5-43.5t-46.5-15.5-43.5 22.5-15.5 46.5l32 416q2 25 20.5 42t43.5 17h5zM896 1504v-416q0-26-19-45t-45-19-45 19-19 45v416q0 26 19 45t45 19 45-19 19-45zM1280 1504v-416q0-26-19-45t-45-19-45 19-19 45v416q0 26 19 45t45 19 45-19 19-45zM1632 1509l32-416q2-26-15.5-46.5t-43.5-22.5-46.5 15.5-22.5 43.5l-32 416q-2 26 15.5 46.5t43.5 22.5h5q25 0 43.5-17t20.5-42zM476 292l-93 412h-132l101-441q19-88 89-143.5t160-55.5h167q0-26 19-45t45-19h384q26 0 45 19t19 45h167q90 0 160 55.5t89 143.5l101 441h-132l-93-412q-11-44-45.5-72t-79.5-28h-167q0 26-19 45t-45 19h-384q-26 0-45-19t-19-45h-167q-45 0-79.5 28t-45.5 72z" + } + }] +}; +exports.shoppingBasket = shoppingBasket; +var hashtag = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M991 1024l64-256h-254l-64 256h254zM1759 520l-56 224q-7 24-31 24h-327l-64 256h311q15 0 25 12 10 14 6 28l-56 224q-5 24-31 24h-327l-81 328q-7 24-31 24h-224q-16 0-26-12-9-12-6-28l78-312h-254l-81 328q-7 24-31 24h-225q-15 0-25-12-9-12-6-28l78-312h-311q-15 0-25-12-9-12-6-28l56-224q7-24 31-24h327l64-256h-311q-15 0-25-12-10-14-6-28l56-224q5-24 31-24h327l81-328q7-24 32-24h224q15 0 25 12 9 12 6 28l-78 312h254l81-328q7-24 32-24h224q15 0 25 12 9 12 6 28l-78 312h311q15 0 25 12 9 12 6 28z" + } + }] +}; +exports.hashtag = hashtag; +var bluetooth = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M841 1053l148 148-149 149zM840 442l149 149-148 148zM710 1666l464-464-306-306 306-306-464-464v611l-255-255-93 93 320 321-320 321 93 93 255-255v611zM1429 896q0 209-32 365.5t-87.5 257-140.5 162.5-181.5 86.5-219.5 24.5-219.5-24.5-181.5-86.5-140.5-162.5-87.5-257-32-365.5 32-365.5 87.5-257 140.5-162.5 181.5-86.5 219.5-24.5 219.5 24.5 181.5 86.5 140.5 162.5 87.5 257 32 365.5z" + } + }] +}; +exports.bluetooth = bluetooth; +var bluetoothB = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M596 1423l173-172-173-172v344zM596 713l173-172-173-172v344zM628 896l356 356-539 540v-711l-297 296-108-108 372-373-372-373 108-108 297 296v-711l539 540z" + } + }] +}; +exports.bluetoothB = bluetoothB; +var percent = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1280 1280q0-52-38-90t-90-38-90 38-38 90 38 90 90 38 90-38 38-90zM512 512q0-52-38-90t-90-38-90 38-38 90 38 90 90 38 90-38 38-90zM1536 1280q0 159-112.5 271.5t-271.5 112.5-271.5-112.5-112.5-271.5 112.5-271.5 271.5-112.5 271.5 112.5 112.5 271.5zM1440 192q0 20-13 38l-1056 1408q-19 26-51 26h-160q-26 0-45-19t-19-45q0-20 13-38l1056-1408q19-26 51-26h160q26 0 45 19t19 45zM768 512q0 159-112.5 271.5t-271.5 112.5-271.5-112.5-112.5-271.5 112.5-271.5 271.5-112.5 271.5 112.5 112.5 271.5z" + } + }] +}; +exports.percent = percent; +var gitlab = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M104 706l792 1015-868-630q-18-13-25-34.5t0-42.5l101-308v0zM566 706h660l-330 1015v0zM368 94l198 612h-462l198-612q8-23 33-23t33 23zM1688 706l101 308q7 21 0 42.5t-25 34.5l-868 630 792-1015v0zM1688 706h-462l198-612q8-23 33-23t33 23z" + } + }] +}; +exports.gitlab = gitlab; +var wpbeginner = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M384 832h160v-224h-160v224zM1221 1164v-92q-104 36-243 38-135 1-259.5-46.5t-220.5-122.5l1 96q88 80 212 128.5t272 47.5q129 0 238-49zM640 832h640v-224h-640v224zM1792 800q0 187-99 352 89 102 89 229 0 157-129.5 268t-313.5 111q-122 0-225-52.5t-161-140.5q-19 1-57 1t-57-1q-58 88-161 140.5t-225 52.5q-184 0-313.5-111t-129.5-268q0-127 89-229-99-165-99-352 0-209 120-385.5t326.5-279.5 449.5-103 449.5 103 326.5 279.5 120 385.5z" + } + }] +}; +exports.wpbeginner = wpbeginner; +var wpforms = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M515 911v128h-252v-128h252zM515 656v127h-252v-127h252zM1273 1167v128h-341v-128h341zM1273 911v128h-672v-128h672zM1273 656v127h-672v-127h672zM1408 1516v-1240q0-8-6-14t-14-6h-32l-378 256-210-171-210 171-378-256h-32q-8 0-14 6t-6 14v1240q0 8 6 14t14 6h1240q8 0 14-6t6-14zM553 406l185-150h-406zM983 406l221-150h-406zM1536 276v1240q0 62-43 105t-105 43h-1240q-62 0-105-43t-43-105v-1240q0-62 43-105t105-43h1240q62 0 105 43t43 105z" + } + }] +}; +exports.wpforms = wpforms; +var envira = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M896 816q-104-196-160-278-139-202-347-318-34-19-70-36-89-40-94-32t34 38l39 31q62 43 112.5 93.5t94.5 116.5 70.5 113 70.5 131q9 17 13 25 44 84 84 153t98 154 115.5 150 131 123.5 148.5 90.5q153 66 154 60 1-3-49-37-53-36-81-57-77-58-179-211t-185-310zM549 1359q-76-60-132.5-125t-98-143.5-71-154.5-58.5-186-52-209-60.5-252-76.5-289q273 0 497.5 36t379 92 271 144.5 185.5 172.5 110 198.5 56 199.5 12.5 198.5-9.5 173-20 143.5-13 107l323 327h-104l-281-285q-22 2-91.5 14t-121.5 19-138 6-160.5-17-167.5-59-179-111z" + } + }] +}; +exports.envira = envira; +var universalAccess = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1374 657q-6-26-28.5-39.5t-48.5-7.5q-261 62-401 62t-401-62q-26-6-48.5 7.5t-28.5 39.5 7.5 48.5 39.5 28.5q194 46 303 58-2 158-15.5 269t-26.5 155.5-41 115.5l-9 21q-10 25 1 49t36 34q9 4 23 4 44 0 60-41l8-20q54-139 71-259h42q17 120 71 259l8 20q16 41 60 41 14 0 23-4 25-10 36-34t1-49l-9-21q-28-71-41-115.5t-26.5-155.5-15.5-269q109-12 303-58 26-6 39.5-28.5t7.5-48.5zM1024 512q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1600 896q0 143-55.5 273.5t-150 225-225 150-273.5 55.5-273.5-55.5-225-150-150-225-55.5-273.5 55.5-273.5 150-225 225-150 273.5-55.5 273.5 55.5 225 150 150 225 55.5 273.5zM896 128q-156 0-298 61t-245 164-164 245-61 298 61 298 164 245 245 164 298 61 298-61 245-164 164-245 61-298-61-298-164-245-245-164-298-61zM1792 896q0 182-71 348t-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71 348 71 286 191 191 286 71 348z" + } + }] +}; +exports.universalAccess = universalAccess; +var wheelchairAlt = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1438 813q34 35 29 82l-44 551q-4 42-34.5 70t-71.5 28q-6 0-9-1-44-3-72.5-36.5t-25.5-77.5l35-429-143 8q55 113 55 240 0 216-148 372l-137-137q91-101 91-235 0-145-102.5-248t-247.5-103q-134 0-236 92l-137-138q120-114 284-141l264-300-149-87-181 161q-33 30-77 27.5t-73-35.5-26.5-77 34.5-73l239-213q26-23 60-26.5t64 14.5l488 283q36 21 48 68 17 67-26 117l-205 232 371-20q49-3 83 32zM1240 356q-74 0-126-52t-52-126 52-126 126-52 126.5 52 52.5 126-52.5 126-126.5 52zM613 1598q106 0 196-61l139 139q-146 116-335 116-148 0-273.5-73t-198.5-198-73-273q0-188 116-336l139 139q-60 88-60 197 0 145 102.5 247.5t247.5 102.5z" + } + }] +}; +exports.wheelchairAlt = wheelchairAlt; +var questionCircleO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M880 1200v160q0 14-9 23t-23 9h-160q-14 0-23-9t-9-23v-160q0-14 9-23t23-9h160q14 0 23 9t9 23zM1136 704q0 50-15 90t-45.5 69-52 44-59.5 36q-32 18-46.5 28t-26 24-11.5 29v32q0 14-9 23t-23 9h-160q-14 0-23-9t-9-23v-68q0-35 10.5-64.5t24-47.5 39-35.5 41-25.5 44.5-21q53-25 75-43t22-49q0-42-43.5-71.5t-95.5-29.5q-56 0-95 27-29 20-80 83-9 12-25 12-11 0-19-6l-108-82q-10-7-12-20t5-23q122-192 349-192 129 0 238.5 89.5t109.5 214.5zM768 256q-130 0-248.5 51t-204 136.5-136.5 204-51 248.5 51 248.5 136.5 204 204 136.5 248.5 51 248.5-51 204-136.5 136.5-204 51-248.5-51-248.5-136.5-204-204-136.5-248.5-51zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.questionCircleO = questionCircleO; +var blind = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M366 311q-64 0-110-45.5t-46-110.5q0-64 46-109.5t110-45.5 109.5 45.5 45.5 109.5q0 65-45.5 110.5t-109.5 45.5zM917 953q0 50-30 67.5t-63.5 6.5-47.5-34l-367-438q-7-12-14-15.5t-11-1.5l-3 3q-7 8 4 21l122 139 1 354-161 457q-67 192-92 234-15 26-28 32-50 26-103 1-29-13-41.5-43t-9.5-57q2-17 197-618l5-416-85 164 35 222q4 24-1 42t-14 27.5-19 16-17 7.5l-7 2q-19 3-34.5-3t-24-16-14-22-7.5-19.5-2-9.5l-46-299 211-381q23-34 113-34 75 0 107 40l424 521q7 5 14 17l3 3-1 1q7 13 7 29zM514 1103q43 113 88.5 225t69.5 168l24 55q36 93 42 125 11 70-36 97-35 22-66 16t-51-22-29-35h-1q-6-16-8-25l-124-351zM1338 1695q31 49 31 57 0 5-3 7-9 5-14.5-0.5t-15.5-26-16-30.5q-114-172-423-661 3 1 7-1t7-4l3-2q11-9 11-17z" + } + }] +}; +exports.blind = blind; +var audioDescription = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M504 994h171l-1-265zM1530 895q0-87-50.5-140t-146.5-53h-54v388h52q91 0 145-57t54-138zM956 518l1 756q0 14-9.5 24t-23.5 10h-216q-14 0-23.5-10t-9.5-24v-62h-291l-55 81q-10 15-28 15h-267q-21 0-30.5-18t3.5-35l556-757q9-14 27-14h332q14 0 24 10t10 24zM1783 895q0 193-125.5 303t-324.5 110h-270q-14 0-24-10t-10-24v-756q0-14 10-24t24-10h268q200 0 326 109t126 302zM1939 896q0 11-0.5 29t-8 71.5-21.5 102-44.5 108-73.5 102.5h-51q38-45 66.5-104.5t41.5-112 21-98 9-72.5l1-27q0-8-0.5-22.5t-7.5-60-20-91.5-41-111.5-66-124.5h43q41 47 72 107t45.5 111.5 23 96 10.5 70.5zM2123 896q0 11-0.5 29t-8 71.5-21.5 102-45 108-74 102.5h-51q38-45 66.5-104.5t41.5-112 21-98 9-72.5l1-27q0-8-0.5-22.5t-7.5-60-19.5-91.5-40.5-111.5-66-124.5h43q41 47 72 107t45.5 111.5 23 96 10.5 70.5zM2304 896q0 11-0.5 29t-8 71.5-21.5 102-44.5 108-73.5 102.5h-51q38-45 66-104.5t41-112 21-98 9-72.5l1-27q0-8-0.5-22.5t-7.5-60-19.5-91.5-40.5-111.5-66-124.5h43q41 47 72 107t45.5 111.5 23 96 9.5 70.5z" + } + }] +}; +exports.audioDescription = audioDescription; +var volumeControlPhone = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M617 1689q0-11-13-58t-31-107-20-69q-1-4-5-26.5t-8.5-36-13.5-21.5q-15-14-51-14-23 0-70 5.5t-71 5.5q-34 0-47-11-6-5-11-15.5t-7.5-20-6.5-24-5-18.5q-37-128-37-255t37-255q1-4 5-18.5t6.5-24 7.5-20 11-15.5q13-11 47-11 24 0 71 5.5t70 5.5q36 0 51-14 9-8 13.5-21.5t8.5-36 5-26.5q2-9 20-69t31-107 13-58q0-22-43.5-52.5t-75.5-42.5q-20-8-45-8-34 0-98 18-57 17-96.5 40.5t-71 66-46 70-45.5 94.5q-6 12-9 19-49 107-68 216t-19 244 19 244 68 216q56 122 83 161 63 91 179 127l6 2q64 18 98 18 25 0 45-8 32-12 75.5-42.5t43.5-52.5zM776 776q-26 0-45-19t-19-45.5 19-45.5q37-37 37-90 0-52-37-91-19-19-19-45t19-45 45-19 45 19q75 75 75 181t-75 181q-21 19-45 19zM957 957q-27 0-45-19-19-19-19-45t19-45q112-114 112-272t-112-272q-19-19-19-45t19-45 45-19 45 19q150 150 150 362t-150 362q-18 19-45 19zM1138 1138q-27 0-45-19-19-19-19-45t19-45q90-91 138.5-208t48.5-245-48.5-245-138.5-208q-19-19-19-45t19-45 45-19 45 19q109 109 167 249t58 294-58 294-167 249q-18 19-45 19z" + } + }] +}; +exports.volumeControlPhone = volumeControlPhone; +var braille = { + "viewBox": "0 0 2176 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M192 1184q-66 0-113 47t-47 113 47 113 113 47 113-47 47-113-47-113-113-47zM704 1184q-66 0-113 47t-47 113 47 113 113 47 113-47 47-113-47-113-113-47zM704 672q-66 0-113 47t-47 113 47 113 113 47 113-47 47-113-47-113-113-47zM1472 1184q-66 0-113 47t-47 113 47 113 113 47 113-47 47-113-47-113-113-47zM1984 1184q-66 0-113 47t-47 113 47 113 113 47 113-47 47-113-47-113-113-47zM1472 672q-66 0-113 47t-47 113 47 113 113 47 113-47 47-113-47-113-113-47zM1984 672q-66 0-113 47t-47 113 47 113 113 47 113-47 47-113-47-113-113-47zM1984 160q-66 0-113 47t-47 113 47 113 113 47 113-47 47-113-47-113-113-47zM384 1344q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM896 1344q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM384 832q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM896 832q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM384 320q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM1664 1344q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM896 320q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM2176 1344q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM1664 832q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM2176 832q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM1664 320q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM2176 320q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136z" + } + }] +}; +exports.braille = braille; +var assistiveListeningSystems = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M128 1728q0 26-19 45t-45 19-45-19-19-45 19-45 45-19 45 19 19 45zM320 1536q0 26-19 45t-45 19-45-19-19-45 19-45 45-19 45 19 19 45zM365 1171l256 256-90 90-256-256zM704 1152q0 26-19 45t-45 19-45-19-19-45 19-45 45-19 45 19 19 45zM1411 832q0 59-11.5 108.5t-37.5 93.5-44 67.5-53 64.5q-31 35-45.5 54t-33.5 50-26.5 64-7.5 74q0 159-112.5 271.5t-271.5 112.5q-26 0-45-19t-19-45 19-45 45-19q106 0 181-75t75-181q0-57 11.5-105.5t37-91 43.5-66.5 52-63q40-46 59.5-72t37.5-74.5 18-103.5q0-185-131.5-316.5t-316.5-131.5-316.5 131.5-131.5 316.5q0 26-19 45t-45 19-45-19-19-45q0-117 45.5-223.5t123-184 184-123 223.5-45.5 223.5 45.5 184 123 123 184 45.5 223.5zM896 960q0 26-19 45t-45 19-45-19-19-45 19-45 45-19 45 19 19 45zM1184 832q0 26-19 45t-45 19-45-19-19-45q0-93-65.5-158.5t-158.5-65.5q-92 0-158 65.5t-66 158.5q0 26-19 45t-45 19-45-19-19-45q0-146 103-249t249-103 249 103 103 249zM1578 543q10 25-1 49t-36 34q-9 4-23 4-19 0-35.5-11t-23.5-30q-68-178-224-295-21-16-25-42t12-47q17-21 43-25t47 12q183 137 266 351zM1788 462q9 25-1.5 49t-35.5 34q-11 4-23 4-44 0-60-41-92-238-297-393-22-16-25.5-42t12.5-47q16-22 42-25.5t47 12.5q235 175 341 449z" + } + }] +}; +exports.assistiveListeningSystems = assistiveListeningSystems; +var americanSignLanguageInterpreting = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1032 960q-59-2-84-55-17-34-48-53.5t-68-19.5q-53 0-90.5 37.5t-37.5 90.5q0 56 36 89l10 8q34 31 82 31 37 0 68-19.5t48-53.5q25-53 84-55zM1600 832q0-56-36-89l-10-8q-34-31-82-31-37 0-68 19.5t-48 53.5q-25 53-84 55 59 2 84 55 17 34 48 53.5t68 19.5q53 0 90.5-37.5t37.5-90.5zM1174 611q-17 35-55 48t-73-4q-62-31-134-31-51 0-99 17 3 0 9.5-0.5t9.5-0.5q92 0 170.5 50t118.5 133q17 36 3.5 73.5t-49.5 54.5q-18 9-39 9 21 0 39 9 36 17 49.5 54.5t-3.5 73.5q-40 83-118.5 133t-170.5 50h-6q-16-2-44-4l-290-27-239 120q-14 7-29 7-40 0-57-35l-160-320q-11-23-4-47.5t29-37.5l209-119 148-267q17-155 91.5-291.5t195.5-236.5q31-25 70.5-21.5t64.5 34.5 21.5 70-34.5 65q-70 59-117 128 123-84 267-101 40-5 71.5 19t35.5 64q5 40-19 71.5t-64 35.5q-84 10-159 55 46-10 99-10 115 0 218 50 36 18 49 55.5t-5 73.5zM2137 451l160 320q11 23 4 47.5t-29 37.5l-209 119-148 267q-17 155-91.5 291.5t-195.5 236.5q-26 22-61 22-45 0-74-35-25-31-21.5-70t34.5-65q70-59 117-128-123 84-267 101-4 1-12 1-36 0-63.5-24t-31.5-60q-5-40 19-71.5t64-35.5q84-10 159-55-46 10-99 10-115 0-218-50-36-18-49-55.5t5-73.5q17-35 55-48t73 4q62 31 134 31 51 0 99-17-3 0-9.5 0.5t-9.5 0.5q-92 0-170.5-50t-118.5-133q-17-36-3.5-73.5t49.5-54.5q18-9 39-9-21 0-39-9-36-17-49.5-54.5t3.5-73.5q40-83 118.5-133t170.5-50h6 1q14 2 42 4l291 27 239-120q14-7 29-7 40 0 57 35z" + } + }] +}; +exports.americanSignLanguageInterpreting = americanSignLanguageInterpreting; +var aslInterpreting = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1032 960q-59-2-84-55-17-34-48-53.5t-68-19.5q-53 0-90.5 37.5t-37.5 90.5q0 56 36 89l10 8q34 31 82 31 37 0 68-19.5t48-53.5q25-53 84-55zM1600 832q0-56-36-89l-10-8q-34-31-82-31-37 0-68 19.5t-48 53.5q-25 53-84 55 59 2 84 55 17 34 48 53.5t68 19.5q53 0 90.5-37.5t37.5-90.5zM1174 611q-17 35-55 48t-73-4q-62-31-134-31-51 0-99 17 3 0 9.5-0.5t9.5-0.5q92 0 170.5 50t118.5 133q17 36 3.5 73.5t-49.5 54.5q-18 9-39 9 21 0 39 9 36 17 49.5 54.5t-3.5 73.5q-40 83-118.5 133t-170.5 50h-6q-16-2-44-4l-290-27-239 120q-14 7-29 7-40 0-57-35l-160-320q-11-23-4-47.5t29-37.5l209-119 148-267q17-155 91.5-291.5t195.5-236.5q31-25 70.5-21.5t64.5 34.5 21.5 70-34.5 65q-70 59-117 128 123-84 267-101 40-5 71.5 19t35.5 64q5 40-19 71.5t-64 35.5q-84 10-159 55 46-10 99-10 115 0 218 50 36 18 49 55.5t-5 73.5zM2137 451l160 320q11 23 4 47.5t-29 37.5l-209 119-148 267q-17 155-91.5 291.5t-195.5 236.5q-26 22-61 22-45 0-74-35-25-31-21.5-70t34.5-65q70-59 117-128-123 84-267 101-4 1-12 1-36 0-63.5-24t-31.5-60q-5-40 19-71.5t64-35.5q84-10 159-55-46 10-99 10-115 0-218-50-36-18-49-55.5t5-73.5q17-35 55-48t73 4q62 31 134 31 51 0 99-17-3 0-9.5 0.5t-9.5 0.5q-92 0-170.5-50t-118.5-133q-17-36-3.5-73.5t49.5-54.5q18-9 39-9-21 0-39-9-36-17-49.5-54.5t3.5-73.5q40-83 118.5-133t170.5-50h6 1q14 2 42 4l291 27 239-120q14-7 29-7 40 0 57 35z" + } + }] +}; +exports.aslInterpreting = aslInterpreting; +var deaf = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1056 832q0 26 19 45t45 19 45-19 19-45q0-146-103-249t-249-103-249 103-103 249q0 26 19 45t45 19 45-19 19-45q0-93 66-158.5t158-65.5 158 65.5 66 158.5zM835 256q-117 0-223.5 45.5t-184 123-123 184-45.5 223.5q0 26 19 45t45 19 45-19 19-45q0-185 131.5-316.5t316.5-131.5 316.5 131.5 131.5 316.5q0 55-18 103.5t-37.5 74.5-59.5 72q-34 39-52 63t-43.5 66.5-37 91-11.5 105.5q0 106-75 181t-181 75q-26 0-45 19t-19 45 19 45 45 19q159 0 271.5-112.5t112.5-271.5q0-41 7.5-74t26.5-64 33.5-50 45.5-54q35-41 53-64.5t44-67.5 37.5-93.5 11.5-108.5q0-117-45.5-223.5t-123-184-184-123-223.5-45.5zM591 975l226 226-579 579q-12 12-29 12t-29-12l-168-168q-12-12-12-29t12-29zM1612 12l168 168q12 12 12 29t-12 30l-233 233-26 25-71 71q-66-153-195-258l91-91 207-207q13-12 30-12t29 12z" + } + }] +}; +exports.deaf = deaf; +var deafness = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1056 832q0 26 19 45t45 19 45-19 19-45q0-146-103-249t-249-103-249 103-103 249q0 26 19 45t45 19 45-19 19-45q0-93 66-158.5t158-65.5 158 65.5 66 158.5zM835 256q-117 0-223.5 45.5t-184 123-123 184-45.5 223.5q0 26 19 45t45 19 45-19 19-45q0-185 131.5-316.5t316.5-131.5 316.5 131.5 131.5 316.5q0 55-18 103.5t-37.5 74.5-59.5 72q-34 39-52 63t-43.5 66.5-37 91-11.5 105.5q0 106-75 181t-181 75q-26 0-45 19t-19 45 19 45 45 19q159 0 271.5-112.5t112.5-271.5q0-41 7.5-74t26.5-64 33.5-50 45.5-54q35-41 53-64.5t44-67.5 37.5-93.5 11.5-108.5q0-117-45.5-223.5t-123-184-184-123-223.5-45.5zM591 975l226 226-579 579q-12 12-29 12t-29-12l-168-168q-12-12-12-29t12-29zM1612 12l168 168q12 12 12 29t-12 30l-233 233-26 25-71 71q-66-153-195-258l91-91 207-207q13-12 30-12t29 12z" + } + }] +}; +exports.deafness = deafness; +var hardOfHearing = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1056 832q0 26 19 45t45 19 45-19 19-45q0-146-103-249t-249-103-249 103-103 249q0 26 19 45t45 19 45-19 19-45q0-93 66-158.5t158-65.5 158 65.5 66 158.5zM835 256q-117 0-223.5 45.5t-184 123-123 184-45.5 223.5q0 26 19 45t45 19 45-19 19-45q0-185 131.5-316.5t316.5-131.5 316.5 131.5 131.5 316.5q0 55-18 103.5t-37.5 74.5-59.5 72q-34 39-52 63t-43.5 66.5-37 91-11.5 105.5q0 106-75 181t-181 75q-26 0-45 19t-19 45 19 45 45 19q159 0 271.5-112.5t112.5-271.5q0-41 7.5-74t26.5-64 33.5-50 45.5-54q35-41 53-64.5t44-67.5 37.5-93.5 11.5-108.5q0-117-45.5-223.5t-123-184-184-123-223.5-45.5zM591 975l226 226-579 579q-12 12-29 12t-29-12l-168-168q-12-12-12-29t12-29zM1612 12l168 168q12 12 12 29t-12 30l-233 233-26 25-71 71q-66-153-195-258l91-91 207-207q13-12 30-12t29 12z" + } + }] +}; +exports.hardOfHearing = hardOfHearing; +var glide = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M866 515q0 27-13 94-11 50-31.5 150t-30.5 150q-2 11-4.5 12.5t-13.5 2.5q-20 2-31 2-58 0-84-49.5t-26-113.5q0-88 35-174t103-124q28-14 51-14 28 0 36.5 16.5t8.5 47.5zM1352 939q0-14-39-75.5t-52-66.5q-21-8-34-8-91 0-226 77l-2-2q3-22 27.5-135t24.5-178q0-233-242-233-24 0-68 6-94 17-168.5 89.5t-111.5 166.5-37 189q0 146 80.5 225t227.5 79q25 0 25 3t-1 5q-4 34-26 117-14 52-51.5 101t-82.5 49q-42 0-42-47 0-24 10.5-47.5t25-39.5 29.5-28.5 26-20 11-8.5q0-3-7-10-24-22-58.5-36.5t-65.5-14.5q-35 0-63.5 34t-41 75-12.5 75q0 88 51.5 142t138.5 54q82 0 155-53t117.5-126 65.5-153q6-22 15.5-66.5t14.5-66.5q3-12 14-18 118-60 227-60 48 0 127 18 1 1 4 1 5 0 9.5-4.5t4.5-8.5zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.glide = glide; +var glideG = { + "viewBox": "0 0 1535 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M744 305q0-24-2-38.5t-8.5-30-21-23-37.5-7.5q-39 0-78 23-105 58-159 190.5t-54 269.5q0 44 8.5 85.5t26.5 80.5 52.5 62.5 81.5 23.5q4 0 18 0.5t20 0 16-3 15-8.5 7-16q16-77 48-231.5t48-231.5q19-91 19-146zM1498 961q0 7-7.5 13.5t-15.5 6.5l-6-1q-22-3-62-11t-72-12.5-63-4.5q-167 0-351 93-15 8-21 27-10 36-24.5 105.5t-22.5 100.5q-23 91-70 179.5t-112.5 164.5-154.5 123-185 47q-135 0-214.5-83.5t-79.5-219.5q0-53 19.5-117t63-116.5 97.5-52.5q38 0 120 33.5t83 61.5q0 1-16.5 12.5t-39.5 31-46 44.5-39 61-16 74q0 33 16.5 53t48.5 20q45 0 85-31.5t66.5-78 48-105.5 32.5-107 16-90v-9q0-2-3.5-3.5t-8.5-1.5h-10t-10 0.5-6 0.5q-227 0-352-122.5t-125-348.5q0-108 34.5-221t96-210 156-167.5 204.5-89.5q52-9 106-9 374 0 374 360 0 98-38 273t-43 211l3 3q101-57 182.5-88t167.5-31q22 0 53 13 19 7 80 102.5t61 116.5z" + } + }] +}; +exports.glideG = glideG; +var signLanguage = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M831 673q32 0 59 18l222 148q61 40 110 97l146 170q40 46 29 106l-72 413q-6 32-29.5 53.5t-55.5 25.5l-527 56-352 32h-9q-39 0-67.5-28t-28.5-68q0-37 27-64t65-32l260-32h-448q-41 0-69.5-30t-26.5-71q2-39 32-65t69-26l442-1-521-64q-41-5-66-37t-19-73q6-35 34.5-57.5t65.5-22.5h10l481 60-351-94q-38-10-62-41.5t-18-68.5q6-36 33-58.5t62-22.5q6 0 20 2l448 96 217 37q1 0 3 0.5t3 0.5q23 0 30.5-23t-12.5-36l-186-125q-35-23-42-63.5t18-73.5q27-38 76-38zM761 875l186 125-218-37-5-2-36-38-238-262q-1-1-2.5-3.5t-2.5-3.5q-24-31-18.5-70t37.5-64q31-23 68-17.5t64 33.5l142 147q-2 1-5 3.5t-4 4.5q-32 45-23 99t55 85zM1648 421l15 266q4 73-11 147l-48 219q-12 59-67 87l-106 54q2-62-39-109l-146-170q-53-61-117-103l-222-148q-34-23-76-23-51 0-88 37l-235-312q-25-33-18-73.5t41-63.5q33-22 71.5-14t62.5 40l266 352-262-455q-21-35-10.5-75t47.5-59q35-18 72.5-6t57.5 46l241 420-136-337q-15-35-4.5-74t44.5-56q37-19 76-6t56 51l193 415 101 196q8 15 23 17.5t27-7.5 11-26l-12-224q-2-41 26-71t69-31q39 0 67 28.5t30 67.5z" + } + }] +}; +exports.signLanguage = signLanguage; +var signing = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M831 673q32 0 59 18l222 148q61 40 110 97l146 170q40 46 29 106l-72 413q-6 32-29.5 53.5t-55.5 25.5l-527 56-352 32h-9q-39 0-67.5-28t-28.5-68q0-37 27-64t65-32l260-32h-448q-41 0-69.5-30t-26.5-71q2-39 32-65t69-26l442-1-521-64q-41-5-66-37t-19-73q6-35 34.5-57.5t65.5-22.5h10l481 60-351-94q-38-10-62-41.5t-18-68.5q6-36 33-58.5t62-22.5q6 0 20 2l448 96 217 37q1 0 3 0.5t3 0.5q23 0 30.5-23t-12.5-36l-186-125q-35-23-42-63.5t18-73.5q27-38 76-38zM761 875l186 125-218-37-5-2-36-38-238-262q-1-1-2.5-3.5t-2.5-3.5q-24-31-18.5-70t37.5-64q31-23 68-17.5t64 33.5l142 147q-2 1-5 3.5t-4 4.5q-32 45-23 99t55 85zM1648 421l15 266q4 73-11 147l-48 219q-12 59-67 87l-106 54q2-62-39-109l-146-170q-53-61-117-103l-222-148q-34-23-76-23-51 0-88 37l-235-312q-25-33-18-73.5t41-63.5q33-22 71.5-14t62.5 40l266 352-262-455q-21-35-10.5-75t47.5-59q35-18 72.5-6t57.5 46l241 420-136-337q-15-35-4.5-74t44.5-56q37-19 76-6t56 51l193 415 101 196q8 15 23 17.5t27-7.5 11-26l-12-224q-2-41 26-71t69-31q39 0 67 28.5t30 67.5z" + } + }] +}; +exports.signing = signing; +var lowVision = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M335 1356q-2 0-6-2-86-57-168.5-145t-139.5-180q-21-30-21-69 0-9 2-19t4-18 7-18 8.5-16 10.5-17 10-15 12-15.5 11-14.5q184-251 452-365-110-198-110-211 0-19 17-29 116-64 128-64 18 0 28 16l124 229q92-19 192-19 266 0 497.5 137.5t378.5 369.5q20 31 20 69t-20 69q-91 142-218.5 253.5t-278.5 175.5q110 198 110 211 0 20-17 29-116 64-127 64-19 0-29-16l-124-229-64-119-444-820 7-7q-58 24-99 47 3 5 127 234t243 449 119 223q0 7-9 9-13 3-72 3-57 0-60-7l-456-841q-39 28-82 68 24 43 214 393.5t190 354.5q0 10-11 10-14 0-82.5-22t-72.5-28l-106-197-224-413q-44 53-78 106 2 3 18 25t23 34l176 327q0 10-10 10zM1165 1254l49 91q273-111 450-385-180-277-459-389 67 64 103 148.5t36 176.5q0 106-47 200.5t-132 157.5zM848 640q0 20 14 34t34 14q86 0 147 61t61 147q0 20 14 34t34 14 34-14 14-34q0-126-89-215t-215-89q-20 0-34 14t-14 34zM1214 575l-9-4 7 7z" + } + }] +}; +exports.lowVision = lowVision; +var viadeo = { + "viewBox": "0 0 1280 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1050 1106q0 215-147 374-148 161-378 161-232 0-378-161-147-159-147-374 0-147 68-270.5t189-196.5 268-73q96 0 182 31-32 62-39 126-66-28-143-28-167 0-280.5 123t-113.5 291q0 170 112.5 288.5t281.5 118.5 281-118.5 112-288.5q0-89-32-166 66-13 123-49 41 98 41 212zM846 917q0 192-79.5 345t-238.5 253l-14 1q-29 0-62-5 83-32 146.5-102.5t99.5-154.5 58.5-189 30-192.5 7.5-178.5q0-69-3-103 55 160 55 326zM791 589v2q-73-214-206-440 88 59 142.5 186.5t63.5 251.5zM1035 792q-83 0-160-75 218-120 290-247 19-37 21-56-42 94-139.5 166.5t-204.5 97.5q-35-54-35-113 0-37 17-79t43-68q46-44 157-74 59-16 106-58.5t74-100.5q74 105 74 253 0 109-24 170-32 77-88.5 130.5t-130.5 53.5z" + } + }] +}; +exports.viadeo = viadeo; +var viadeoSquare = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1050 1041q0-78-28-147-41 25-85 34 22 50 22 114 0 117-77 198.5t-193 81.5-193.5-81.5-77.5-198.5q0-115 78-199.5t193-84.5q53 0 98 19 4-43 27-87-60-21-125-21-154 0-257.5 108.5t-103.5 263.5 103.5 261 257.5 106 257.5-106.5 103.5-260.5zM872 686q2 24 2 71 0 63-5 123t-20.5 132.5-40.5 130-68.5 106-100.5 70.5q21 3 42 3h10q219-139 219-411 0-116-38-225zM872 686q-4-80-44-171.5t-98-130.5q92 156 142 302zM1207 581q0-102-51-174-41 86-124 109-69 19-109 53.5t-40 99.5q0 40 24 77 74-17 140.5-67t95.5-115q-4 52-74.5 111.5t-138.5 97.5q52 52 110 52 51 0 90-37t60-90q17-42 17-117zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.viadeoSquare = viadeoSquare; +var snapchat = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1279 1148q0-22-22-27-67-15-118-59t-80-108q-7-19-7-25 0-15 19.5-26t43-17 43-20.5 19.5-36.5q0-19-18.5-31.5t-38.5-12.5q-12 0-32 8t-31 8q-4 0-12-2 5-95 5-114 0-79-17-114-36-78-103-121.5t-152-43.5q-199 0-275 165-17 35-17 114 0 19 5 114-4 2-14 2-12 0-32-7.5t-30-7.5q-21 0-38.5 12t-17.5 32q0 21 19.5 35.5t43 20.5 43 17 19.5 26q0 6-7 25-64 138-198 167-22 5-22 27 0 46 137 68 2 5 6 26t11.5 30.5 23.5 9.5q12 0 37.5-4.5t39.5-4.5q35 0 67 15t54 32.5 57.5 32.5 76.5 15q43 0 79-15t57.5-32.5 53.5-32.5 67-15q14 0 39.5 4t38.5 4q16 0 23-10t11-30 6-25q137-22 137-68zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.snapchat = snapchat; +var snapchatGhost = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M848 128q134-1 240.5 68.5t163.5 192.5q27 58 27 179 0 47-9 191 14 7 28 7 18 0 51-13.5t51-13.5q29 0 56 18t27 46q0 32-31.5 54t-69 31.5-69 29-31.5 47.5q0 15 12 43 37 82 102.5 150t144.5 101q28 12 80 23 28 6 28 35 0 70-219 103-7 11-11 39t-14 46.5-33 18.5q-20 0-62-6.5t-64-6.5q-37 0-62 5-32 5-63 22.5t-58 38-58 40.5-76 33.5-99 13.5q-52 0-96.5-13.5t-75-33.5-57.5-40.5-58-38-62-22.5q-26-5-63-5-24 0-65.5 7.5t-58.5 7.5q-25 0-35-18.5t-14-47.5-11-40q-219-33-219-103 0-29 28-35 52-11 80-23 78-32 144.5-101t102.5-150q12-28 12-43 0-28-31.5-47.5t-69.5-29.5-69.5-31.5-31.5-52.5q0-27 26-45.5t55-18.5q15 0 48 13t53 13q18 0 32-7-9-142-9-190 0-122 27-180 64-137 172-198t264-63z" + } + }] +}; +exports.snapchatGhost = snapchatGhost; +var snapchatSquare = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1280 1148q0-22-22-27-67-14-118-58t-80-109q-7-14-7-25 0-15 19.5-26t42.5-17 42.5-20.5 19.5-36.5q0-19-18.5-31.5t-38.5-12.5q-11 0-31 8t-32 8q-4 0-12-2 5-63 5-115 0-78-17-114-36-78-102.5-121.5t-152.5-43.5q-198 0-275 165-18 38-18 115 0 38 6 114-10 2-15 2-11 0-31.5-8t-30.5-8q-20 0-37.5 12.5t-17.5 32.5q0 21 19.5 35.5t42.5 20.5 42.5 17 19.5 26q0 11-7 25-64 138-198 167-22 5-22 27 0 47 138 69 2 5 6 26t11 30.5 23 9.5q13 0 38.5-5t38.5-5q35 0 67.5 15t54.5 32.5 57.5 32.5 76.5 15q43 0 79-15t57.5-32.5 54-32.5 67.5-15q13 0 39 4.5t39 4.5q15 0 22.5-9.5t11.5-31 5-24.5q138-22 138-69zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.snapchatSquare = snapchatSquare; +var piedPiper = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M2304 0q-69 46-125 92t-89 81-59.5 71.5-37.5 57.5-22 44.5-14 29.5q-10 18-35.5 136.5t-48.5 164.5q-15 29-50 60.5t-67.5 50.5-72.5 41-48 28q-47 31-151 231-341-14-630 158-92 53-303 179 47-16 86-31t55-22l15-7q71-27 163-64.5t133.5-53.5 108-34.5 142.5-31.5q186-31 465 7 1 0 10 3 11 6 14 17t-3 22l-194 345q-15 29-47 22-128-24-354-24-146 0-402 44.5t-392 46.5q-82 1-149-13t-107-37-61-40-33-34l-1-1v-2q0-6 6-6 138 0 371-55 192-366 374.5-524t383.5-158q5 0 14.5 0.5t38 5 55 12 61.5 24.5 63 39.5 54 59 40 82.5l102-177q2-4 21-42.5t44.5-86.5 61-109.5 84-133.5 100.5-137q66-82 128-141.5t121.5-96.5 92.5-53.5 88-39.5z" + } + }] +}; +exports.piedPiper = piedPiper; +var firstOrder = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1322 896q0 45-5 76l-236-14 224 78q-19 73-58 141l-214-103 177 158q-44 61-107 108l-157-178 103 215q-61 37-140 59l-79-228 14 240q-38 6-76 6t-76-6l14-238-78 226q-74-19-140-59l103-215-157 178q-59-43-108-108l178-158-214 104q-39-69-58-141l224-79-237 14q-5-42-5-76 0-35 5-77l238 14-225-79q19-73 58-140l214 104-177-159q46-61 107-108l158 178-103-215q67-39 140-58l77 224-13-236q36-6 75-6 38 0 76 6l-14 237 78-225q74 19 140 59l-103 214 158-178q61 47 107 108l-177 159 213-104q37 62 58 141l-224 78 237-14q5 31 5 77zM1352 896q0-160-78.5-295.5t-213-214-292.5-78.5q-119 0-227 46.5t-186.5 125-124.5 187.5-46 229q0 119 46 228t124.5 187.5 186.5 125 227 46.5q158 0 292.5-78.5t213-214 78.5-294.5zM1425 513v766l-657 383-657-383v-766l657-383zM768 1719l708-412v-823l-708-411-708 411v823zM1536 448v896l-768 448-768-448v-896l768-448z" + } + }] +}; +exports.firstOrder = firstOrder; +var yoast = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M339 218h691l-26 72h-665q-110 0-188.5 79t-78.5 189v771q0 95 60.5 169.5t153.5 93.5q23 5 98 5v72h-45q-140 0-239.5-100t-99.5-240v-771q0-140 99.5-240t239.5-100zM1190 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106l-285-733h228l187 585zM1664 558v1111h-795q37-55 45-73h678v-1038q0-85-49.5-155t-129.5-99l25-67q101 34 163.5 123.5t62.5 197.5z" + } + }] +}; +exports.yoast = yoast; +var themeisle = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M852 309q0 29-17 52.5t-45 23.5-45-23.5-17-52.5 17-52.5 45-23.5 45 23.5 17 52.5zM688 1685v-114q0-30-20.5-51.5t-50.5-21.5-50 21.5-20 51.5v114q0 30 20.5 52t49.5 22q30 0 50.5-22t20.5-52zM860 1685v-114q0-30-20-51.5t-50-21.5-50.5 21.5-20.5 51.5v114q0 30 20.5 52t50.5 22q29 0 49.5-22t20.5-52zM1034 1685v-114q0-30-20.5-51.5t-50.5-21.5-50.5 21.5-20.5 51.5v114q0 30 20.5 52t50.5 22 50.5-22 20.5-52zM1208 1685v-114q0-30-20.5-51.5t-50.5-21.5-50.5 21.5-20.5 51.5v114q0 30 20.5 52t50.5 22 50.5-22 20.5-52zM1476 1001q-84 160-232 259.5t-323 99.5q-123 0-229.5-51.5t-178.5-137-113-197.5-41-232q0-88 21-174-104 175-104 390 0 162 65 312t185 251q30-57 91-57 56 0 86 50 32-50 87-50 56 0 86 50 32-50 87-50t87 50q30-50 86-50 28 0 52.5 15.5t37.5 40.5q112-94 177-231.5t73-287.5zM1326 972q0-75-72-75-17 0-47 6-95 19-149 19-226 0-226-243 0-86 30-204-83 127-83 275 0 150 89 260.5t235 110.5q111 0 210-70 13-48 13-79zM884 313q0-50-32-89.5t-81-39.5-81 39.5-32 89.5q0 51 31.5 90.5t81.5 39.5 81.5-39.5 31.5-90.5zM1513 652q0-96-37.5-179t-113-137-173.5-54q-77 0-149 35t-127 94q-48 159-48 268 0 104 45.5 157t147.5 53q53 0 142-19 36-6 53-6 51 0 77.5 28t26.5 80q0 26-4 46 75-68 117.5-165.5t42.5-200.5zM1792 869q0 111-33.5 249.5t-93.5 204.5q-58 64-195 142.5t-228 104.5l-4 1v114q0 43-29.5 75t-72.5 32q-56 0-86-50-32 50-87 50t-87-50q-30 50-86 50-55 0-87-50-30 50-86 50-47 0-75-33.5t-28-81.5q-90 68-198 68-118 0-211-80 54-1 106-20-113-31-182-127 32 7 71 7 89 0 164-46-192-192-240-306-24-56-24-160 0-57 9-125.5t31.5-146.5 55-141 86.5-105 120-42q59 0 81 52 19-29 42-54 2-3 12-13t13-16q10-15 23-38t25-42 28-39q87-111 211.5-177t260.5-66q35 0 62 4 59-64 146-64 83 0 140 57 5 5 5 12 0 5-6 13.5t-12.5 16-16 17l-10.5 10.5q17 6 36 18t19 24q0 6-16 25 157 138 197 378 25-30 60-30 45 0 100 49 90 80 90 279z" + } + }] +}; +exports.themeisle = themeisle; +var googlePlusCircle = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M917 905q0-33-6-64h-362v132h217q-12 76-74.5 120.5t-142.5 44.5q-99 0-169-71.5t-70-170.5 70-170.5 169-71.5q93 0 153 59l104-101q-108-100-257-100-160 0-272 112.5t-112 271.5 112 271.5 272 112.5q165 0 266.5-105t101.5-270zM1262 951h109v-110h-109v-110h-110v110h-110v110h110v110h110v-110zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.googlePlusCircle = googlePlusCircle; +var googlePlusOfficial = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M917 905q0-33-6-64h-362v132h217q-12 76-74.5 120.5t-142.5 44.5q-99 0-169-71.5t-70-170.5 70-170.5 169-71.5q93 0 153 59l104-101q-108-100-257-100-160 0-272 112.5t-112 271.5 112 271.5 272 112.5q165 0 266.5-105t101.5-270zM1262 951h109v-110h-109v-110h-110v110h-110v110h110v110h110v-110zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.googlePlusOfficial = googlePlusOfficial; +var fa = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1536 512v839q0 48-49 62-174 52-338 52-73 0-215.5-29.5t-227.5-29.5q-164 0-370 48v338h-160v-1368q-63-25-101-81t-38-124q0-91 64-155t155-64 155 64 64 155q0 68-38 124t-101 81v68q190-44 343-44 99 0 198 15 14 2 111.5 22.5t149.5 20.5q77 0 165-18 11-2 80-21t89-19q26 0 45 19t19 45z" + } + }] +}; +exports.fa = fa; +var fontAwesome = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1536 512v839q0 48-49 62-174 52-338 52-73 0-215.5-29.5t-227.5-29.5q-164 0-370 48v338h-160v-1368q-63-25-101-81t-38-124q0-91 64-155t155-64 155 64 64 155q0 68-38 124t-101 81v68q190-44 343-44 99 0 198 15 14 2 111.5 22.5t149.5 20.5q77 0 165-18 11-2 80-21t89-19q26 0 45 19t19 45z" + } + }] +}; +exports.fontAwesome = fontAwesome; +var handshakeO = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M192 1152q40 0 56-32t0-64-56-32-56 32 0 64 56 32zM1665 1094q-10-13-38.5-50t-41.5-54-38-49-42.5-53-40.5-47-45-49l-125 140q-83 94-208.5 92t-205.5-98q-57-69-56.5-158t58.5-157l177-206q-22-11-51-16.5t-47.5-6-56.5 0.5-49 1q-92 0-158 66l-158 158h-155v544q5 0 21-0.5t22 0 19.5 2 20.5 4.5 17.5 8.5 18.5 13.5l297 292q115 111 227 111 78 0 125-47 57 20 112.5-8t72.5-85q74 6 127-44 20-18 36-45.5t14-50.5q10 10 43 10 43 0 77-21t49.5-53 12-71.5-30.5-73.5zM1824 1152h96v-512h-93l-157-180q-66-76-169-76h-167q-89 0-146 67l-209 243q-28 33-28 75t27 75q43 51 110 52t111-49l193-218q25-23 53.5-21.5t47 27 8.5 56.5q16 19 56 63t60 68q29 36 82.5 105.5t64.5 84.5q52 66 60 140zM2112 1152q40 0 56-32t0-64-56-32-56 32 0 64 56 32zM2304 576v640q0 26-19 45t-45 19h-434q-27 65-82 106.5t-125 51.5q-33 48-80.5 81.5t-102.5 45.5q-42 53-104.5 81.5t-128.5 24.5q-60 34-126 39.5t-127.5-14-117-53.5-103.5-81l-287-282h-358q-26 0-45-19t-19-45v-672q0-26 19-45t45-19h421q14-14 47-48t47.5-48 44-40 50.5-37.5 51-25.5 62-19.5 68-5.5h117q99 0 181 56 82-56 181-56h167q35 0 67 6t56.5 14.5 51.5 26.5 44.5 31 43 39.5 39 42 41 48 41.5 48.5h355q26 0 45 19t19 45z" + } + }] +}; +exports.handshakeO = handshakeO; +var envelopeOpen = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1792 654v978q0 66-47 113t-113 47h-1472q-66 0-113-47t-47-113v-978q0-15 11-24 8-7 39-34.5t41.5-36 45.5-37.5 70-55.5 96-73 143.5-107 192.5-140.5q5-4 52.5-40t71.5-52.5 64-35 69-18.5 69 18.5 65 35.5 71 52 52 40q110 80 192.5 140.5t143.5 107 96 73 70 55.5 45.5 37.5 41.5 36 39 34.5q11 9 11 24zM1228 1239q263-191 345-252 11-8 12.5-20.5t-6.5-23.5l-38-52q-8-11-21-12.5t-24 6.5q-231 169-343 250-5 3-52 39t-71.5 52.5-64.5 35-69 18.5-69-18.5-64.5-35-71.5-52.5-52-39q-186-134-343-250-11-8-24-6.5t-21 12.5l-38 52q-8 11-6.5 23.5t12.5 20.5q82 61 345 252 10 8 50 38t65 47 64 39.5 77.5 33.5 75.5 11 75.5-11 79-34.5 64.5-39.5 65-47.5 48-36.5z" + } + }] +}; +exports.envelopeOpen = envelopeOpen; +var envelopeOpenO = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1474 913l39 51q8 11 6.5 23.5t-11.5 20.5q-43 34-126.5 98.5t-146.5 113-67 51.5q-39 32-60 48t-60.5 41-76.5 36.5-74 11.5h-1-1q-37 0-74-11.5t-76-36.5-61-41.5-60-47.5q-5-4-65-50.5t-143.5-111-122.5-94.5q-11-8-12.5-20.5t6.5-23.5l37-52q8-11 21.5-13t24.5 7q94 73 306 236 5 4 43.5 35t60.5 46.5 56.5 32.5 58.5 17h1 1q24 0 58.5-17t56.5-32.5 60.5-46.5 43.5-35q258-198 313-242 11-8 24-6.5t21 12.5zM1664 1632v-928q-90-83-159-139-91-74-389-304-3-2-43-35t-61-48-56-32.5-59-17.5h-1-1q-24 0-59 17.5t-56 32.5-61 48-43 35q-215 166-315.5 245.5t-129.5 104-82 74.5q-14 12-21 19v928q0 13 9.5 22.5t22.5 9.5h1472q13 0 22.5-9.5t9.5-22.5zM1792 704v928q0 66-47 113t-113 47h-1472q-66 0-113-47t-47-113v-928q0-56 41-94 123-114 350-290.5t233-181.5q36-30 59-47.5t61.5-42 76-36.5 74.5-12h1 1q37 0 74.5 12t76 36.5 61.5 42 59 47.5q43 36 156 122t226 177 201 173q41 38 41 94z" + } + }] +}; +exports.envelopeOpenO = envelopeOpenO; +var linode = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M330 1535l202 214-34-236-216-213zM556 1761l274-218-11-245-300 215zM245 1123l227 213-48-327-245-204zM495 1347l317-214-14-324-352 200zM843 1358l95 80-2-239-103-79q0 1 1 8.5t0 12-5 7.5l-78 52 85 70q7 6 7 88zM138 606l256 200-68-465-279-173zM1173 1269l15-234-230 164 2 240zM417 814l373-194-19-441-423 163zM1270 1179l20-233-226-142-2 105 144 95q6 4 4 9l-7 119zM1461 1040l30-222-179 128-20 228zM1273 1207l-71-49-8 117q0 5-4 8l-234 187q-7 5-14 0l-98-83 7 161q0 5-4 8l-293 234q-4 2-6 2-8-2-8-3l-228-242q-4-4-59-277-2-7 5-11l61-37q-94-86-95-92l-72-351q-2-7 6-12l94-45q-133-100-135-108l-96-466q-2-10 7-13l433-135q5 0 8 1l317 153q6 4 6 9l20 463q0 7-6 10l-118 61 126 85q5 2 5 8l5 123 121-74q5-4 11 0l84 56 3-110q0-6 5-9l206-126q6-3 11 0l245 135q4 4 5 7t-6.5 60-17.5 124.5-10 70.5q0 5-4 7l-191 153q-6 5-13 0z" + } + }] +}; +exports.linode = linode; +var addressBook = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1201 1238q0-57-5.5-107t-21-100.5-39.5-86-64-58-91-22.5q-6 4-33.5 20.5t-42.5 24.5-40.5 20-49 17-46.5 5-46.5-5-49-17-40.5-20-42.5-24.5-33.5-20.5q-51 0-91 22.5t-64 58-39.5 86-21 100.5-5.5 107q0 73 42 121.5t103 48.5h576q61 0 103-48.5t42-121.5zM1028 644q0-108-76.5-184t-183.5-76-183.5 76-76.5 184q0 107 76.5 183t183.5 76 183.5-76 76.5-183zM1664 1184v192q0 14-9 23t-23 9h-96v224q0 66-47 113t-113 47h-1216q-66 0-113-47t-47-113v-1472q0-66 47-113t113-47h1216q66 0 113 47t47 113v224h96q14 0 23 9t9 23v192q0 14-9 23t-23 9h-96v128h96q14 0 23 9t9 23v192q0 14-9 23t-23 9h-96v128h96q14 0 23 9t9 23z" + } + }] +}; +exports.addressBook = addressBook; +var addressBookO = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1028 644q0 107-76.5 183t-183.5 76-183.5-76-76.5-183q0-108 76.5-184t183.5-76 183.5 76 76.5 184zM980 864q46 0 82.5 17t60 47.5 39.5 67 24 81 11.5 82.5 3.5 79q0 67-39.5 118.5t-105.5 51.5h-576q-66 0-105.5-51.5t-39.5-118.5q0-48 4.5-93.5t18.5-98.5 36.5-91.5 63-64.5 93.5-26h5q7 4 32 19.5t35.5 21 33 17 37 16 35 9 39.5 4.5 39.5-4.5 35-9 37-16 33-17 35.5-21 32-19.5zM1664 608q0 13-9.5 22.5t-22.5 9.5h-96v128h96q13 0 22.5 9.5t9.5 22.5v192q0 13-9.5 22.5t-22.5 9.5h-96v128h96q13 0 22.5 9.5t9.5 22.5v192q0 13-9.5 22.5t-22.5 9.5h-96v224q0 66-47 113t-113 47h-1216q-66 0-113-47t-47-113v-1472q0-66 47-113t113-47h1216q66 0 113 47t47 113v224h96q13 0 22.5 9.5t9.5 22.5v192zM1408 1632v-1472q0-13-9.5-22.5t-22.5-9.5h-1216q-13 0-22.5 9.5t-9.5 22.5v1472q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5-9.5t9.5-22.5z" + } + }] +}; +exports.addressBookO = addressBookO; +var addressCard = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 1131q0-64-9-117.5t-29.5-103-60.5-78-97-28.5q-6 4-30 18t-37.5 21.5-35.5 17.5-43 14.5-42 4.5-42-4.5-43-14.5-35.5-17.5-37.5-21.5-30-18q-57 0-97 28.5t-60.5 78-29.5 103-9 117.5 37 106.5 91 42.5h512q54 0 91-42.5t37-106.5zM867 611q0-94-66.5-160.5t-160.5-66.5-160.5 66.5-66.5 160.5 66.5 160.5 160.5 66.5 160.5-66.5 66.5-160.5zM1792 1120v-64q0-14-9-23t-23-9h-576q-14 0-23 9t-9 23v64q0 14 9 23t23 9h576q14 0 23-9t9-23zM1792 860v-56q0-15-10.5-25.5t-25.5-10.5h-568q-15 0-25.5 10.5t-10.5 25.5v56q0 15 10.5 25.5t25.5 10.5h568q15 0 25.5-10.5t10.5-25.5zM1792 608v-64q0-14-9-23t-23-9h-576q-14 0-23 9t-9 23v64q0 14 9 23t23 9h576q14 0 23-9t9-23zM2048 288v1216q0 66-47 113t-113 47h-352v-96q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v96h-768v-96q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v96h-352q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1728q66 0 113 47t47 113z" + } + }] +}; +exports.addressCard = addressCard; +var vcard = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 1131q0-64-9-117.5t-29.5-103-60.5-78-97-28.5q-6 4-30 18t-37.5 21.5-35.5 17.5-43 14.5-42 4.5-42-4.5-43-14.5-35.5-17.5-37.5-21.5-30-18q-57 0-97 28.5t-60.5 78-29.5 103-9 117.5 37 106.5 91 42.5h512q54 0 91-42.5t37-106.5zM867 611q0-94-66.5-160.5t-160.5-66.5-160.5 66.5-66.5 160.5 66.5 160.5 160.5 66.5 160.5-66.5 66.5-160.5zM1792 1120v-64q0-14-9-23t-23-9h-576q-14 0-23 9t-9 23v64q0 14 9 23t23 9h576q14 0 23-9t9-23zM1792 860v-56q0-15-10.5-25.5t-25.5-10.5h-568q-15 0-25.5 10.5t-10.5 25.5v56q0 15 10.5 25.5t25.5 10.5h568q15 0 25.5-10.5t10.5-25.5zM1792 608v-64q0-14-9-23t-23-9h-576q-14 0-23 9t-9 23v64q0 14 9 23t23 9h576q14 0 23-9t9-23zM2048 288v1216q0 66-47 113t-113 47h-352v-96q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v96h-768v-96q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v96h-352q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1728q66 0 113 47t47 113z" + } + }] +}; +exports.vcard = vcard; +var addressCardO = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 1131q0 64-37 106.5t-91 42.5h-512q-54 0-91-42.5t-37-106.5 9-117.5 29.5-103 60.5-78 97-28.5q6 4 30 18t37.5 21.5 35.5 17.5 43 14.5 42 4.5 42-4.5 43-14.5 35.5-17.5 37.5-21.5 30-18q57 0 97 28.5t60.5 78 29.5 103 9 117.5zM867 611q0 94-66.5 160.5t-160.5 66.5-160.5-66.5-66.5-160.5 66.5-160.5 160.5-66.5 160.5 66.5 66.5 160.5zM1792 1056v64q0 14-9 23t-23 9h-576q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h576q14 0 23 9t9 23zM1792 804v56q0 15-10.5 25.5t-25.5 10.5h-568q-15 0-25.5-10.5t-10.5-25.5v-56q0-15 10.5-25.5t25.5-10.5h568q15 0 25.5 10.5t10.5 25.5zM1792 544v64q0 14-9 23t-23 9h-576q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h576q14 0 23 9t9 23zM1920 1504v-1216q0-13-9.5-22.5t-22.5-9.5h-1728q-13 0-22.5 9.5t-9.5 22.5v1216q0 13 9.5 22.5t22.5 9.5h352v-96q0-14 9-23t23-9h64q14 0 23 9t9 23v96h768v-96q0-14 9-23t23-9h64q14 0 23 9t9 23v96h352q13 0 22.5-9.5t9.5-22.5zM2048 288v1216q0 66-47 113t-113 47h-1728q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1728q66 0 113 47t47 113z" + } + }] +}; +exports.addressCardO = addressCardO; +var vcardO = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 1131q0 64-37 106.5t-91 42.5h-512q-54 0-91-42.5t-37-106.5 9-117.5 29.5-103 60.5-78 97-28.5q6 4 30 18t37.5 21.5 35.5 17.5 43 14.5 42 4.5 42-4.5 43-14.5 35.5-17.5 37.5-21.5 30-18q57 0 97 28.5t60.5 78 29.5 103 9 117.5zM867 611q0 94-66.5 160.5t-160.5 66.5-160.5-66.5-66.5-160.5 66.5-160.5 160.5-66.5 160.5 66.5 66.5 160.5zM1792 1056v64q0 14-9 23t-23 9h-576q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h576q14 0 23 9t9 23zM1792 804v56q0 15-10.5 25.5t-25.5 10.5h-568q-15 0-25.5-10.5t-10.5-25.5v-56q0-15 10.5-25.5t25.5-10.5h568q15 0 25.5 10.5t10.5 25.5zM1792 544v64q0 14-9 23t-23 9h-576q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h576q14 0 23 9t9 23zM1920 1504v-1216q0-13-9.5-22.5t-22.5-9.5h-1728q-13 0-22.5 9.5t-9.5 22.5v1216q0 13 9.5 22.5t22.5 9.5h352v-96q0-14 9-23t23-9h64q14 0 23 9t9 23v96h768v-96q0-14 9-23t23-9h64q14 0 23 9t9 23v96h352q13 0 22.5-9.5t9.5-22.5zM2048 288v1216q0 66-47 113t-113 47h-1728q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1728q66 0 113 47t47 113z" + } + }] +}; +exports.vcardO = vcardO; +var userCircle = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1523 1339q-22-155-87.5-257.5t-184.5-118.5q-67 74-159.5 115.5t-195.5 41.5-195.5-41.5-159.5-115.5q-119 16-184.5 118.5t-87.5 257.5q106 150 271 237.5t356 87.5 356-87.5 271-237.5zM1280 640q0-159-112.5-271.5t-271.5-112.5-271.5 112.5-112.5 271.5 112.5 271.5 271.5 112.5 271.5-112.5 112.5-271.5zM1792 896q0 182-71 347.5t-190.5 286-285.5 191.5-349 71q-182 0-348-71t-286-191-191-286-71-348 71-348 191-286 286-191 348-71 348 71 286 191 191 286 71 348z" + } + }] +}; +exports.userCircle = userCircle; +var userCircleO = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M896 0q182 0 348 71t286 191 191 286 71 348q0 181-70.5 347t-190.5 286-286 191.5-349 71.5-349-71-285.5-191.5-190.5-286-71-347.5 71-348 191-286 286-191 348-71zM1515 1351q149-205 149-455 0-156-61-298t-164-245-245-164-298-61-298 61-245 164-164 245-61 298q0 250 149 455 66-327 306-327 131 128 313 128t313-128q240 0 306 327zM1280 704q0-159-112.5-271.5t-271.5-112.5-271.5 112.5-112.5 271.5 112.5 271.5 271.5 112.5 271.5-112.5 112.5-271.5z" + } + }] +}; +exports.userCircleO = userCircleO; +var userO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1201 784q47 14 89.5 38t89 73 79.5 115.5 55 172 22 236.5q0 154-100 263.5t-241 109.5h-854q-141 0-241-109.5t-100-263.5q0-131 22-236.5t55-172 79.5-115.5 89-73 89.5-38q-79-125-79-272 0-104 40.5-198.5t109.5-163.5 163.5-109.5 198.5-40.5 198.5 40.5 163.5 109.5 109.5 163.5 40.5 198.5q0 147-79 272zM768 128q-159 0-271.5 112.5t-112.5 271.5 112.5 271.5 271.5 112.5 271.5-112.5 112.5-271.5-112.5-271.5-271.5-112.5zM1195 1664q88 0 150.5-71.5t62.5-173.5q0-239-78.5-377t-225.5-145q-145 127-336 127t-336-127q-147 7-225.5 145t-78.5 377q0 102 62.5 173.5t150.5 71.5h854z" + } + }] +}; +exports.userO = userO; +var idBadge = { + "viewBox": "0 0 1280 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 1258q0 64-37 107t-91 43h-512q-54 0-91-43t-37-107 9-118 29.5-104 61-78.5 96.5-28.5q80 75 188 75t188-75q56 0 96.5 28.5t61 78.5 29.5 104 9 118zM870 739q0 94-67.5 160.5t-162.5 66.5-162.5-66.5-67.5-160.5 67.5-160.5 162.5-66.5 162.5 66.5 67.5 160.5zM1152 1632v-1376h-1024v1376q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5-9.5t9.5-22.5zM1280 160v1472q0 66-47 113t-113 47h-960q-66 0-113-47t-47-113v-1472q0-66 47-113t113-47h352v96q0 14 9 23t23 9h192q14 0 23-9t9-23v-96h352q66 0 113 47t47 113z" + } + }] +}; +exports.idBadge = idBadge; +var driversLicense = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M896 1212q0-54-7.5-100.5t-24.5-90-51-68.5-81-25q-64 64-156 64t-156-64q-47 0-81 25t-51 68.5-24.5 90-7.5 100.5q0 55 31.5 93.5t75.5 38.5h426q44 0 75.5-38.5t31.5-93.5zM768 768q0-80-56-136t-136-56-136 56-56 136 56 136 136 56 136-56 56-136zM1792 1248v-64q0-14-9-23t-23-9h-704q-14 0-23 9t-9 23v64q0 14 9 23t23 9h704q14 0 23-9t9-23zM1408 992v-64q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v64q0 14 9 23t23 9h320q14 0 23-9t9-23zM1792 992v-64q0-14-9-23t-23-9h-192q-14 0-23 9t-9 23v64q0 14 9 23t23 9h192q14 0 23-9t9-23zM1792 736v-64q0-14-9-23t-23-9h-704q-14 0-23 9t-9 23v64q0 14 9 23t23 9h704q14 0 23-9t9-23zM128 384h1792v-96q0-14-9-23t-23-9h-1728q-14 0-23 9t-9 23v96zM2048 288v1216q0 66-47 113t-113 47h-1728q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1728q66 0 113 47t47 113z" + } + }] +}; +exports.driversLicense = driversLicense; +var idCard = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M896 1212q0-54-7.5-100.5t-24.5-90-51-68.5-81-25q-64 64-156 64t-156-64q-47 0-81 25t-51 68.5-24.5 90-7.5 100.5q0 55 31.5 93.5t75.5 38.5h426q44 0 75.5-38.5t31.5-93.5zM768 768q0-80-56-136t-136-56-136 56-56 136 56 136 136 56 136-56 56-136zM1792 1248v-64q0-14-9-23t-23-9h-704q-14 0-23 9t-9 23v64q0 14 9 23t23 9h704q14 0 23-9t9-23zM1408 992v-64q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v64q0 14 9 23t23 9h320q14 0 23-9t9-23zM1792 992v-64q0-14-9-23t-23-9h-192q-14 0-23 9t-9 23v64q0 14 9 23t23 9h192q14 0 23-9t9-23zM1792 736v-64q0-14-9-23t-23-9h-704q-14 0-23 9t-9 23v64q0 14 9 23t23 9h704q14 0 23-9t9-23zM128 384h1792v-96q0-14-9-23t-23-9h-1728q-14 0-23 9t-9 23v96zM2048 288v1216q0 66-47 113t-113 47h-1728q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1728q66 0 113 47t47 113z" + } + }] +}; +exports.idCard = idCard; +var driversLicenseO = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M896 1212q0 55-31.5 93.5t-75.5 38.5h-426q-44 0-75.5-38.5t-31.5-93.5q0-54 7.5-100.5t24.5-90 51-68.5 81-25q64 64 156 64t156-64q47 0 81 25t51 68.5 24.5 90 7.5 100.5zM768 768q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM1792 1184v64q0 14-9 23t-23 9h-704q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h704q14 0 23 9t9 23zM1408 928v64q0 14-9 23t-23 9h-320q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h320q14 0 23 9t9 23zM1792 928v64q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h192q14 0 23 9t9 23zM1792 672v64q0 14-9 23t-23 9h-704q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h704q14 0 23 9t9 23zM1920 1504v-1120h-1792v1120q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5-9.5t9.5-22.5zM2048 288v1216q0 66-47 113t-113 47h-1728q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1728q66 0 113 47t47 113z" + } + }] +}; +exports.driversLicenseO = driversLicenseO; +var idCardO = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M896 1212q0 55-31.5 93.5t-75.5 38.5h-426q-44 0-75.5-38.5t-31.5-93.5q0-54 7.5-100.5t24.5-90 51-68.5 81-25q64 64 156 64t156-64q47 0 81 25t51 68.5 24.5 90 7.5 100.5zM768 768q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM1792 1184v64q0 14-9 23t-23 9h-704q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h704q14 0 23 9t9 23zM1408 928v64q0 14-9 23t-23 9h-320q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h320q14 0 23 9t9 23zM1792 928v64q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h192q14 0 23 9t9 23zM1792 672v64q0 14-9 23t-23 9h-704q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h704q14 0 23 9t9 23zM1920 1504v-1120h-1792v1120q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5-9.5t9.5-22.5zM2048 288v1216q0 66-47 113t-113 47h-1728q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1728q66 0 113 47t47 113z" + } + }] +}; +exports.idCardO = idCardO; +var quora = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1255 787q0-318-105-474.5t-330-156.5q-222 0-326 157t-104 474q0 316 104 471.5t326 155.5q74 0 131-17-22-43-39-73t-44-65-53.5-56.5-63-36-77.5-14.5q-46 0-79 16l-49-97q105-91 276-91 132 0 215.5 54t150.5 155q67-149 67-402zM1645 1419h117q3 27-2 67t-26.5 95-58 100.5-107 78-162.5 32.5q-71 0-130.5-19t-105.5-56-79-78-66-96q-97 27-205 27-150 0-292.5-58t-253-158.5-178-249-67.5-317.5q0-170 67.5-319.5t178.5-250.5 253.5-159 291.5-58q121 0 238.5 36t217 106 176 164.5 119.5 219 43 261.5q0 190-80.5 347.5t-218.5 264.5q47 70 93.5 106.5t104.5 36.5q61 0 94-37.5t38-85.5z" + } + }] +}; +exports.quora = quora; +var freeCodeCamp = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M453 1637q0 21-16 37.5t-37 16.5q-1 0-13-3-63-15-162-140-225-284-225-676 0-341 213-614 39-51 95-103.5t94-52.5q19 0 35 13.5t16 32.5q0 27-63 90-98 102-147 184-119 199-119 449 0 281 123 491 50 85 136 173 2 3 14.5 16t19.5 21 17 20.5 14.5 23.5 4.5 21zM1796 1503q0 29-17.5 48.5t-46.5 19.5h-1081q-26 0-45-19t-19-45q0-29 17.5-48.5t46.5-19.5h1081q26 0 45 19t19 45zM1581 892q0 134-67 233-25 38-69.5 78.5t-83.5 60.5q-16 10-27 10-7 0-15-6t-8-12q0-9 19-30t42-46 42-67.5 19-88.5q0-76-35-130-29-42-46-42-3 0-3 5 0 12 7.5 35.5t7.5 36.5q0 22-21.5 35t-44.5 13q-66 0-66-76 0-15 1.5-44t1.5-44q0-25-10-46-13-25-42-53.5t-51-28.5q-5 0-7 0.5t-3.5 2.5-1.5 6q0 2 16 26t16 54q0 37-19 68t-46 54-53.5 46-45.5 54-19 68q0 98 42 160 29 43 79 63 16 5 17 10 1 2 1 5 0 16-18 16-6 0-33-11-119-43-195-139.5t-76-218.5q0-55 24.5-115.5t60-115 70.5-108.5 59.5-113.5 24.5-111.5q0-53-25-94-29-48-56-64-19-9-19-21 0-20 41-20 50 0 110 29 41 19 71 44.5t49.5 51 33.5 62.5 22 69 16 80q0 1 3 17.5t4.5 25 5.5 25 9 27 11 21.5 14.5 16.5 18.5 5.5q23 0 37-14t14-37q0-25-20-67t-20-52 10-10q27 0 93 70 72 76 102.5 156t30.5 186zM2304 921q0 274-138 503-19 32-48 72t-68 86.5-81 77-74 30.5q-16 0-31-15.5t-15-31.5q0-15 29-50.5t68.5-77 48.5-52.5q183-230 183-531 0-131-20.5-235t-72.5-211q-58-119-163-228-2-3-13-13.5t-16.5-16.5-15-17.5-15-20-9.5-18.5-4-19q0-19 16-35.5t35-16.5q70 0 196 169 98 131 146 273t60 314q2 42 2 64z" + } + }] +}; +exports.freeCodeCamp = freeCodeCamp; +var telegram = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1189 1307l147-693q9-44-10.5-63t-51.5-7l-864 333q-29 11-39.5 25t-2.5 26.5 32 19.5l221 69 513-323q21-14 32-6 7 5-4 15l-415 375v0 0l-16 228q23 0 45-22l108-104 224 165q64 36 81-38zM1792 896q0 182-71 348t-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71 348 71 286 191 191 286 71 348z" + } + }] +}; +exports.telegram = telegram; +var thermometer = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 1344q0 80-56 136t-136 56-136-56-56-136q0-60 35-110t93-71v-907h128v907q58 21 93 71t35 110zM768 1344q0-77-34-144t-94-112v-768q0-80-56-136t-136-56-136 56-56 136v768q-60 45-94 112t-34 144q0 133 93.5 226.5t226.5 93.5 226.5-93.5 93.5-226.5zM896 1344q0 185-131.5 316.5t-316.5 131.5-316.5-131.5-131.5-316.5q0-182 128-313v-711q0-133 93.5-226.5t226.5-93.5 226.5 93.5 93.5 226.5v711q128 131 128 313zM1024 768v128h-192v-128h192zM1024 512v128h-192v-128h192zM1024 256v128h-192v-128h192z" + } + }] +}; +exports.thermometer = thermometer; +var thermometer4 = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 1344q0 80-56 136t-136 56-136-56-56-136q0-60 35-110t93-71v-907h128v907q58 21 93 71t35 110zM768 1344q0-77-34-144t-94-112v-768q0-80-56-136t-136-56-136 56-56 136v768q-60 45-94 112t-34 144q0 133 93.5 226.5t226.5 93.5 226.5-93.5 93.5-226.5zM896 1344q0 185-131.5 316.5t-316.5 131.5-316.5-131.5-131.5-316.5q0-182 128-313v-711q0-133 93.5-226.5t226.5-93.5 226.5 93.5 93.5 226.5v711q128 131 128 313zM1024 768v128h-192v-128h192zM1024 512v128h-192v-128h192zM1024 256v128h-192v-128h192z" + } + }] +}; +exports.thermometer4 = thermometer4; +var thermometerFull = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 1344q0 80-56 136t-136 56-136-56-56-136q0-60 35-110t93-71v-907h128v907q58 21 93 71t35 110zM768 1344q0-77-34-144t-94-112v-768q0-80-56-136t-136-56-136 56-56 136v768q-60 45-94 112t-34 144q0 133 93.5 226.5t226.5 93.5 226.5-93.5 93.5-226.5zM896 1344q0 185-131.5 316.5t-316.5 131.5-316.5-131.5-131.5-316.5q0-182 128-313v-711q0-133 93.5-226.5t226.5-93.5 226.5 93.5 93.5 226.5v711q128 131 128 313zM1024 768v128h-192v-128h192zM1024 512v128h-192v-128h192zM1024 256v128h-192v-128h192z" + } + }] +}; +exports.thermometerFull = thermometerFull; +var thermometer3 = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 1344q0 80-56 136t-136 56-136-56-56-136q0-60 35-110t93-71v-651h128v651q58 21 93 71t35 110zM768 1344q0-77-34-144t-94-112v-768q0-80-56-136t-136-56-136 56-56 136v768q-60 45-94 112t-34 144q0 133 93.5 226.5t226.5 93.5 226.5-93.5 93.5-226.5zM896 1344q0 185-131.5 316.5t-316.5 131.5-316.5-131.5-131.5-316.5q0-182 128-313v-711q0-133 93.5-226.5t226.5-93.5 226.5 93.5 93.5 226.5v711q128 131 128 313zM1024 768v128h-192v-128h192zM1024 512v128h-192v-128h192zM1024 256v128h-192v-128h192z" + } + }] +}; +exports.thermometer3 = thermometer3; +var thermometerThreeQuarters = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 1344q0 80-56 136t-136 56-136-56-56-136q0-60 35-110t93-71v-651h128v651q58 21 93 71t35 110zM768 1344q0-77-34-144t-94-112v-768q0-80-56-136t-136-56-136 56-56 136v768q-60 45-94 112t-34 144q0 133 93.5 226.5t226.5 93.5 226.5-93.5 93.5-226.5zM896 1344q0 185-131.5 316.5t-316.5 131.5-316.5-131.5-131.5-316.5q0-182 128-313v-711q0-133 93.5-226.5t226.5-93.5 226.5 93.5 93.5 226.5v711q128 131 128 313zM1024 768v128h-192v-128h192zM1024 512v128h-192v-128h192zM1024 256v128h-192v-128h192z" + } + }] +}; +exports.thermometerThreeQuarters = thermometerThreeQuarters; +var thermometer2 = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 1344q0 80-56 136t-136 56-136-56-56-136q0-60 35-110t93-71v-395h128v395q58 21 93 71t35 110zM768 1344q0-77-34-144t-94-112v-768q0-80-56-136t-136-56-136 56-56 136v768q-60 45-94 112t-34 144q0 133 93.5 226.5t226.5 93.5 226.5-93.5 93.5-226.5zM896 1344q0 185-131.5 316.5t-316.5 131.5-316.5-131.5-131.5-316.5q0-182 128-313v-711q0-133 93.5-226.5t226.5-93.5 226.5 93.5 93.5 226.5v711q128 131 128 313zM1024 768v128h-192v-128h192zM1024 512v128h-192v-128h192zM1024 256v128h-192v-128h192z" + } + }] +}; +exports.thermometer2 = thermometer2; +var thermometerHalf = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 1344q0 80-56 136t-136 56-136-56-56-136q0-60 35-110t93-71v-395h128v395q58 21 93 71t35 110zM768 1344q0-77-34-144t-94-112v-768q0-80-56-136t-136-56-136 56-56 136v768q-60 45-94 112t-34 144q0 133 93.5 226.5t226.5 93.5 226.5-93.5 93.5-226.5zM896 1344q0 185-131.5 316.5t-316.5 131.5-316.5-131.5-131.5-316.5q0-182 128-313v-711q0-133 93.5-226.5t226.5-93.5 226.5 93.5 93.5 226.5v711q128 131 128 313zM1024 768v128h-192v-128h192zM1024 512v128h-192v-128h192zM1024 256v128h-192v-128h192z" + } + }] +}; +exports.thermometerHalf = thermometerHalf; +var thermometer1 = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 1344q0 80-56 136t-136 56-136-56-56-136q0-60 35-110t93-71v-139h128v139q58 21 93 71t35 110zM768 1344q0-77-34-144t-94-112v-768q0-80-56-136t-136-56-136 56-56 136v768q-60 45-94 112t-34 144q0 133 93.5 226.5t226.5 93.5 226.5-93.5 93.5-226.5zM896 1344q0 185-131.5 316.5t-316.5 131.5-316.5-131.5-131.5-316.5q0-182 128-313v-711q0-133 93.5-226.5t226.5-93.5 226.5 93.5 93.5 226.5v711q128 131 128 313zM1024 768v128h-192v-128h192zM1024 512v128h-192v-128h192zM1024 256v128h-192v-128h192z" + } + }] +}; +exports.thermometer1 = thermometer1; +var thermometerQuarter = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 1344q0 80-56 136t-136 56-136-56-56-136q0-60 35-110t93-71v-139h128v139q58 21 93 71t35 110zM768 1344q0-77-34-144t-94-112v-768q0-80-56-136t-136-56-136 56-56 136v768q-60 45-94 112t-34 144q0 133 93.5 226.5t226.5 93.5 226.5-93.5 93.5-226.5zM896 1344q0 185-131.5 316.5t-316.5 131.5-316.5-131.5-131.5-316.5q0-182 128-313v-711q0-133 93.5-226.5t226.5-93.5 226.5 93.5 93.5 226.5v711q128 131 128 313zM1024 768v128h-192v-128h192zM1024 512v128h-192v-128h192zM1024 256v128h-192v-128h192z" + } + }] +}; +exports.thermometerQuarter = thermometerQuarter; +var thermometer0 = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 1344q0 80-56 136t-136 56-136-56-56-136q0-79 56-135.5t136-56.5 136 56.5 56 135.5zM768 1344q0-77-34-144t-94-112v-768q0-80-56-136t-136-56-136 56-56 136v768q-60 45-94 112t-34 144q0 133 93.5 226.5t226.5 93.5 226.5-93.5 93.5-226.5zM896 1344q0 185-131.5 316.5t-316.5 131.5-316.5-131.5-131.5-316.5q0-182 128-313v-711q0-133 93.5-226.5t226.5-93.5 226.5 93.5 93.5 226.5v711q128 131 128 313zM1024 768v128h-192v-128h192zM1024 512v128h-192v-128h192zM1024 256v128h-192v-128h192z" + } + }] +}; +exports.thermometer0 = thermometer0; +var thermometerEmpty = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 1344q0 80-56 136t-136 56-136-56-56-136q0-79 56-135.5t136-56.5 136 56.5 56 135.5zM768 1344q0-77-34-144t-94-112v-768q0-80-56-136t-136-56-136 56-56 136v768q-60 45-94 112t-34 144q0 133 93.5 226.5t226.5 93.5 226.5-93.5 93.5-226.5zM896 1344q0 185-131.5 316.5t-316.5 131.5-316.5-131.5-131.5-316.5q0-182 128-313v-711q0-133 93.5-226.5t226.5-93.5 226.5 93.5 93.5 226.5v711q128 131 128 313zM1024 768v128h-192v-128h192zM1024 512v128h-192v-128h192zM1024 256v128h-192v-128h192z" + } + }] +}; +exports.thermometerEmpty = thermometerEmpty; +var shower = { + "viewBox": "0 0 1920 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1433 249q10 10 10 23t-10 23l-626 626q-10 10-23 10t-23-10l-82-82q-10-10-10-23t10-23l44-44q-72-91-81.5-207t46.5-215q-74-71-176-71-106 0-181 75t-75 181v1280h-256v-1280q0-104 40.5-198.5t109.5-163.5 163.5-109.5 198.5-40.5q106 0 201 41t166 115q94-39 197-24.5t185 79.5l44-44q10-10 23-10t23 10zM1344 512q26 0 45 19t19 45-19 45-45 19-45-19-19-45 19-45 45-19zM1600 640q-26 0-45-19t-19-45 19-45 45-19 45 19 19 45-19 45-45 19zM1856 512q26 0 45 19t19 45-19 45-45 19-45-19-19-45 19-45 45-19zM1216 640q26 0 45 19t19 45-19 45-45 19-45-19-19-45 19-45 45-19zM1408 704q0-26 19-45t45-19 45 19 19 45-19 45-45 19-45-19-19-45zM1728 640q26 0 45 19t19 45-19 45-45 19-45-19-19-45 19-45 45-19zM1088 768q26 0 45 19t19 45-19 45-45 19-45-19-19-45 19-45 45-19zM1344 896q-26 0-45-19t-19-45 19-45 45-19 45 19 19 45-19 45-45 19zM1600 768q26 0 45 19t19 45-19 45-45 19-45-19-19-45 19-45 45-19zM1216 1024q-26 0-45-19t-19-45 19-45 45-19 45 19 19 45-19 45-45 19zM1472 896q26 0 45 19t19 45-19 45-45 19-45-19-19-45 19-45 45-19zM1088 1024q26 0 45 19t19 45-19 45-45 19-45-19-19-45 19-45 45-19zM1344 1024q26 0 45 19t19 45-19 45-45 19-45-19-19-45 19-45 45-19zM1216 1152q26 0 45 19t19 45-19 45-45 19-45-19-19-45 19-45 45-19zM1088 1280q26 0 45 19t19 45-19 45-45 19-45-19-19-45 19-45 45-19z" + } + }] +}; +exports.shower = shower; +var bath = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1664 1088v192q0 169-128 286v194q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-118q-63 22-128 22h-768q-65 0-128-22v110q0 17-9.5 28.5t-22.5 11.5h-64q-13 0-22.5-11.5t-9.5-28.5v-186q-128-117-128-286v-192h1536zM704 672q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM768 608q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM704 544q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM832 544q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM768 480q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM704 416q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM1792 928v64q0 14-9 23t-23 9h-1728q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h96v-640q0-106 75-181t181-75q108 0 184 78 46-19 98-12t93 39l22-22q11-11 22 0l42 42q11 11 0 22l-314 314q-11 11-22 0l-42-42q-11-11 0-22l22-22q-36-46-40.5-104t23.5-108q-37-35-88-35-53 0-90.5 37.5t-37.5 90.5v640h1504q14 0 23 9t9 23zM896 480q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM832 416q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM768 352q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM960 416q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM896 352q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM832 288q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM1024 352q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM960 288q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM1088 288q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23z" + } + }] +}; +exports.bath = bath; +var bathtub = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1664 1088v192q0 169-128 286v194q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-118q-63 22-128 22h-768q-65 0-128-22v110q0 17-9.5 28.5t-22.5 11.5h-64q-13 0-22.5-11.5t-9.5-28.5v-186q-128-117-128-286v-192h1536zM704 672q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM768 608q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM704 544q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM832 544q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM768 480q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM704 416q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM1792 928v64q0 14-9 23t-23 9h-1728q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h96v-640q0-106 75-181t181-75q108 0 184 78 46-19 98-12t93 39l22-22q11-11 22 0l42 42q11 11 0 22l-314 314q-11 11-22 0l-42-42q-11-11 0-22l22-22q-36-46-40.5-104t23.5-108q-37-35-88-35-53 0-90.5 37.5t-37.5 90.5v640h1504q14 0 23 9t9 23zM896 480q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM832 416q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM768 352q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM960 416q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM896 352q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM832 288q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM1024 352q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM960 288q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM1088 288q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23z" + } + }] +}; +exports.bathtub = bathtub; +var s15 = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1664 1088v192q0 169-128 286v194q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-118q-63 22-128 22h-768q-65 0-128-22v110q0 17-9.5 28.5t-22.5 11.5h-64q-13 0-22.5-11.5t-9.5-28.5v-186q-128-117-128-286v-192h1536zM704 672q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM768 608q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM704 544q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM832 544q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM768 480q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM704 416q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM1792 928v64q0 14-9 23t-23 9h-1728q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h96v-640q0-106 75-181t181-75q108 0 184 78 46-19 98-12t93 39l22-22q11-11 22 0l42 42q11 11 0 22l-314 314q-11 11-22 0l-42-42q-11-11 0-22l22-22q-36-46-40.5-104t23.5-108q-37-35-88-35-53 0-90.5 37.5t-37.5 90.5v640h1504q14 0 23 9t9 23zM896 480q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM832 416q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM768 352q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM960 416q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM896 352q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM832 288q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM1024 352q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM960 288q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM1088 288q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23z" + } + }] +}; +exports.s15 = s15; +var podcast = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M994 1192q0 86-17 197-31 215-55 313-22 90-152 90t-152-90q-24-98-55-313-17-110-17-197 0-168 224-168t224 168zM1536 768q0 240-134 434t-350 280q-8 3-15-3t-6-15q7-48 10-66 4-32 6-47 1-9 9-12 159-81 255.5-234t96.5-337q0-180-91-330.5t-247-234.5-337-74q-124 7-237 61t-193.5 140.5-128 202-46.5 240.5q1 184 99 336.5t257 231.5q7 3 9 12 3 21 6 45 1 9 5 32.5t6 35.5q1 9-6.5 15t-15.5 2q-148-58-261-169.5t-173.5-264-52.5-319.5q7-143 66-273.5t154.5-227 225-157.5 272.5-70q164-10 315.5 46.5t261 160.5 175 250.5 65.5 308.5zM994 736q0 93-65.5 158.5t-158.5 65.5-158.5-65.5-65.5-158.5 65.5-158.5 158.5-65.5 158.5 65.5 65.5 158.5zM1282 768q0 122-53.5 228.5t-146.5 177.5q-8 6-16 2t-10-14q-6-52-29-92-7-10 3-20 58-54 91-127t33-155q0-111-58.5-204t-157.5-141.5-212-36.5q-133 15-229 113t-109 231q-10 92 23.5 176t98.5 144q10 10 3 20-24 41-29 93-2 9-10 13t-16-2q-95-74-148.5-183t-51.5-234q3-131 69-244t177-181.5 241-74.5q144-7 268 60t196.5 187.5 72.5 263.5z" + } + }] +}; +exports.podcast = podcast; +var windowMaximize = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M256 1408h1280v-768h-1280v768zM1792 288v1216q0 66-47 113t-113 47h-1472q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1472q66 0 113 47t47 113z" + } + }] +}; +exports.windowMaximize = windowMaximize; +var windowMinimize = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1792 1312v192q0 66-47 113t-113 47h-1472q-66 0-113-47t-47-113v-192q0-66 47-113t113-47h1472q66 0 113 47t47 113z" + } + }] +}; +exports.windowMinimize = windowMinimize; +var windowRestore = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M256 1536h768v-512h-768v512zM1280 1024h512v-768h-768v256h96q66 0 113 47t47 113v352zM2048 160v960q0 66-47 113t-113 47h-608v352q0 66-47 113t-113 47h-960q-66 0-113-47t-47-113v-960q0-66 47-113t113-47h608v-352q0-66 47-113t113-47h960q66 0 113 47t47 113z" + } + }] +}; +exports.windowRestore = windowRestore; +var timesRectangle = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1175 1321l146-146q10-10 10-23t-10-23l-233-233 233-233q10-10 10-23t-10-23l-146-146q-10-10-23-10t-23 10l-233 233-233-233q-10-10-23-10t-23 10l-146 146q-10 10-10 23t10 23l233 233-233 233q-10 10-10 23t10 23l146 146q10 10 23 10t23-10l233-233 233 233q10 10 23 10t23-10zM1792 288v1216q0 66-47 113t-113 47h-1472q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1472q66 0 113 47t47 113z" + } + }] +}; +exports.timesRectangle = timesRectangle; +var windowClose = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1175 1321l146-146q10-10 10-23t-10-23l-233-233 233-233q10-10 10-23t-10-23l-146-146q-10-10-23-10t-23 10l-233 233-233-233q-10-10-23-10t-23 10l-146 146q-10 10-10 23t10 23l233 233-233 233q-10 10-10 23t10 23l146 146q10 10 23 10t23-10l233-233 233 233q10 10 23 10t23-10zM1792 288v1216q0 66-47 113t-113 47h-1472q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1472q66 0 113 47t47 113z" + } + }] +}; +exports.windowClose = windowClose; +var timesRectangleO = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1257 1111l-146 146q-10 10-23 10t-23-10l-169-169-169 169q-10 10-23 10t-23-10l-146-146q-10-10-10-23t10-23l169-169-169-169q-10-10-10-23t10-23l146-146q10-10 23-10t23 10l169 169 169-169q10-10 23-10t23 10l146 146q10 10 10 23t-10 23l-169 169 169 169q10 10 10 23t-10 23zM256 1408h1280v-1024h-1280v1024zM1792 288v1216q0 66-47 113t-113 47h-1472q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1472q66 0 113 47t47 113z" + } + }] +}; +exports.timesRectangleO = timesRectangleO; +var windowCloseO = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1257 1111l-146 146q-10 10-23 10t-23-10l-169-169-169 169q-10 10-23 10t-23-10l-146-146q-10-10-10-23t10-23l169-169-169-169q-10-10-10-23t10-23l146-146q10-10 23-10t23 10l169 169 169-169q10-10 23-10t23 10l146 146q10 10 10 23t-10 23l-169 169 169 169q10 10 10 23t-10 23zM256 1408h1280v-1024h-1280v1024zM1792 288v1216q0 66-47 113t-113 47h-1472q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1472q66 0 113 47t47 113z" + } + }] +}; +exports.windowCloseO = windowCloseO; +var bandcamp = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1070 1178l306-564h-654l-306 564h654zM1792 896q0 182-71 348t-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71 348 71 286 191 191 286 71 348z" + } + }] +}; +exports.bandcamp = bandcamp; +var grav = { + "viewBox": "0 0 1794 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1291 476q-15-17-35-8.5t-26 28.5 5 38q14 17 40 14.5t34-20.5-18-52zM895 722q-8 8-19.5 8t-18.5-8q-8-8-8-19t8-18q7-8 18.5-8t19.5 8q7 7 7 18t-7 19zM1060 796l-35 35q-12 13-29.5 13t-30.5-13l-38-38q-12-13-12-30t12-30l35-35q12-12 29.5-12t30.5 12l38 39q12 12 12 29.5t-12 29.5zM951 666q-7 8-18.5 8t-19.5-8q-7-8-7-19t7-19q8-8 19-8t19 8 8 19-8 19zM1354 568q-34 64-107.5 85.5t-127.5-16.5q-38-28-61-66.5t-21-87.5 39-92 75.5-53 70.5 5 70 51q2 2 13 12.5t14.5 13.5 13 13.5 12.5 15.5 10 15.5 8.5 18 4 18.5 1 21-5 22-9.5 24zM1555 1050q3-20-8.5-34.5t-27.5-21.5-33-17-23-20q-40-71-84-98.5t-113-11.5q19-13 40-18.5t33-4.5l12 1q2-45-34-90 6-20 6.5-40.5t-2.5-30.5l-3-10q43-24 71-65t34-91q10-84-43-150.5t-137-76.5q-60-7-114 18.5t-82 74.5q-30 51-33.5 101t14.5 87 43.5 64 56.5 42q-45-4-88-36t-57-88q-28-108 32-222-16-21-29-32-50 0-89 19 19-24 42-37t36-14l13-1q0-50-13-78-10-21-32.5-28.5t-47 3.5-37.5 40q2-4 4-7-7 28-6.5 75.5t19 117 48.5 122.5q-25 14-47 36-35 16-85.5 70.5t-84.5 101.5l-33 46q-90 34-181 125.5t-75 162.5q1 16 11 27-15 12-30 30-21 25-21 54t21.5 40 63.5-6q41-19 77-49.5t55-60.5q-2-2-6.5-5t-20.5-7.5-33-3.5q23-5 51-12.5t40-10 27.5-6 26-4 23.5-0.5q14 7 22-34 7-37 7-90 0-102-40-150 106 103 101 219-1 29-15 50t-27 27l-13 6q-4 7-19 32t-26 45.5-26.5 52-25 61-17 63-6.5 66.5 10 63q-35-54-37-80-22 24-34.5 39t-33.5 42-30.5 46-16.5 41-0.5 38 25.5 27q45 25 144-64t190.5-221.5 122.5-228.5q86-52 145-115.5t86-119.5q47 93 154 178 104 83 167 80 39-2 46-43zM1794 896q0 182-71 348t-191 286-286.5 191-348.5 71-348.5-71-286.5-191-191-286-71-348 71-348 191-286 286.5-191 348.5-71 348.5 71 286.5 191 191 286 71 348z" + } + }] +}; +exports.grav = grav; +var etsy = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M518 183v655q103 1 191.5-1.5t125.5-5.5l37-3q68-2 90.5-24.5t39.5-94.5l33-142h103l-14 322 7 319h-103l-29-127q-15-68-45-93t-84-26q-87-8-352-8v556q0 78 43.5 115.5t133.5 37.5h357q35 0 59.5-2t55-7.5 54-18 48.5-32 46-50.5 39-73l93-216h89q-6 37-31.5 252t-30.5 276q-146-5-263.5-8t-162.5-4h-44-628l-376 12v-102l127-25q67-13 91.5-37t25.5-79l8-643q3-402-8-645-2-61-25.5-84t-91.5-36l-127-24v-102l376 12h702q139 0 374-27-6 68-14 194.5t-12 219.5l-5 92h-93l-32-124q-31-121-74-179.5t-113-58.5h-548q-28 0-35.5 8.5t-7.5 30.5z" + } + }] +}; +exports.etsy = etsy; +var imdb = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M922 797v182q0 4 0.5 15t0 15l-1.5 12t-3.5 11.5-6.5 7.5-11 5.5-16 1.5v-309q9 0 16 1t11 5 6.5 5.5 3.5 9.5 1 10.5v13.5 14zM1238 893v121q0 1 0.5 12.5t0 15.5-2.5 11.5-7.5 10.5-13.5 3q-9 0-14-9-4-10-4-165v-7-8.5-9t1.5-8.5l3.5-7t5-5.5 8-1.5q6 0 10 1.5t6.5 4.5 4 6 2 8.5 0.5 8v9.5 9zM180 1129h122v-472h-122v472zM614 1129h106v-472h-159l-28 221q-20-148-32-221h-158v472h107v-312l45 312h76l43-319v319zM1039 824q0-67-5-90-3-16-11-28.5t-17-20.5-25-14-26.5-8.5-31-4-29-1.5h-29.5-12-91v472h56q169 1 197-24.5t25-180.5q-1-62-1-100zM1356 1021v-133q0-29-2-45t-9.5-33.5-24.5-25-46-7.5q-46 0-77 34v-154h-117v472h110l7-30q30 36 77 36 50 0 66-30.5t16-83.5zM1536 288v1216q0 66-47 113t-113 47h-1216q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1216q66 0 113 47t47 113z" + } + }] +}; +exports.imdb = imdb; +var ravelry = { + "viewBox": "0 0 2176 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1143 1733q-6-1-11-4-13-8-36-23t-86-65-116.5-104.5-112-140-89.5-172.5q-17-3-175-37 66 213 235 362t391 184zM502 1127l168 28q-25-76-41-167.5t-19-145.5l-4-53q-84 82-121 224 5 65 17 114zM612 518q-43 64-77 148 44-46 74-68zM2049 952q0-161-62-307t-167.5-252-250.5-168.5-304-62.5q-147 0-281 52.5t-240 148.5q-30 58-45 160 60-51 143-83.5t158.5-43 143-13.5 108.5 1l40 3q33 1 53 15.5t24.5 33 6.5 37-1 28.5q-126-11-227.5-0.5t-183 43.5-142.5 71.5-131 98.5q4 36 11.5 92.5t35.5 178 62 179.5q123 6 247.5-14.5t214.5-53.5 162.5-67 109.5-59l37-24q22-16 39.5-20.5t30.5 5 17 34.5q14 97-39 121-208 97-467 134-135 20-317 16 41 96 110 176.5t137 127 130.5 79 101.5 43.5l39 12q143 23 263-15 195-99 314-289t119-418zM2123 915q-14 135-40 212-70 208-181.5 346.5t-318.5 253.5q-48 33-82 44-72 26-163 16-36 3-73 3-283 0-504.5-173t-295.5-442q-1 0-4-0.5t-5-0.5q-6 50 2.5 112.5t26 115 36 98 31.5 71.5l14 26q8 12 54 82-71-38-124.5-106.5t-78.5-140-39.5-137-17.5-107.5l-2-42q-5-2-33.5-12.5t-48.5-18-53-20.5-57.5-25-50-25.5-42.5-27-25-25.5q19 10 50.5 25.5t113 45.5 145.5 38l2-32q11-149 94-290 41-202 176-365 28-115 81-214 15-28 32-45t49-32q158-74 303.5-104t302-11 306.5 97q220 115 333 336t87 474z" + } + }] +}; +exports.ravelry = ravelry; +var eercast = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1341 784q29-44-6.5-129.5t-121.5-142.5q-58-39-125.5-53.5t-118-4.5-68.5 37q-12 23-4.5 28t42.5 10q23 3 38.5 5t44.5 9.5 56 17.5q36 13 67.5 31.5t53 37 40 38.5 30.5 38 22 34.5 16.5 28.5 12 18.5 10.5 6 11-9.5zM1704 1358q-52 127-148.5 220t-214.5 141.5-253 60.5-266-13.5-251-91-210-161.5-141.5-235.5-46.5-303.5q1-41 8.5-84.5t12.5-64 24-80.5 23-73q-51 208 1 397t173 318 291 206 346 83 349-74.5 289-244.5q20-27 18-14 0 4-4 14zM1465 909q0 104-40.5 199t-108.5 164-162 109.5-198 40.5-198-40.5-162-109.5-108.5-164-40.5-199 40.5-199 108.5-164 162-109.5 198-40.5 198 40.5 162 109.5 108.5 164 40.5 199zM1752 621q-65-147-180.5-251t-253-153.5-292-53.5-301 36.5-275.5 129-220 211.5-131 297-10 373q-49-161-51.5-311.5t35.5-272.5 109-227 165.5-180.5 207-126 232-71 242.5-9 236 54 216 124.5 178 197q33 50 62 121t31 112zM1690 963q12-244-136.5-416t-396.5-240q-8 0-10-5t24-8q125 4 230 50t173 120 116 168.5 58.5 199-1 208-61.5 197.5-122.5 167-185 117.5-248.5 46.5q108-30 201.5-80t174-123 129.5-176.5 55-225.5z" + } + }] +}; +exports.eercast = eercast; +var microchip = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M192 1280v128h-112q-16 0-16-16v-16h-48q-16 0-16-16v-32q0-16 16-16h48v-16q0-16 16-16h112zM192 1024v128h-112q-16 0-16-16v-16h-48q-16 0-16-16v-32q0-16 16-16h48v-16q0-16 16-16h112zM192 768v128h-112q-16 0-16-16v-16h-48q-16 0-16-16v-32q0-16 16-16h48v-16q0-16 16-16h112zM192 512v128h-112q-16 0-16-16v-16h-48q-16 0-16-16v-32q0-16 16-16h48v-16q0-16 16-16h112zM192 256v128h-112q-16 0-16-16v-16h-48q-16 0-16-16v-32q0-16 16-16h48v-16q0-16 16-16h112zM1280 96v1472q0 40-28 68t-68 28h-832q-40 0-68-28t-28-68v-1472q0-40 28-68t68-28h832q40 0 68 28t28 68zM1536 1328v32q0 16-16 16h-48v16q0 16-16 16h-112v-128h112q16 0 16 16v16h48q16 0 16 16zM1536 1072v32q0 16-16 16h-48v16q0 16-16 16h-112v-128h112q16 0 16 16v16h48q16 0 16 16zM1536 816v32q0 16-16 16h-48v16q0 16-16 16h-112v-128h112q16 0 16 16v16h48q16 0 16 16zM1536 560v32q0 16-16 16h-48v16q0 16-16 16h-112v-128h112q16 0 16 16v16h48q16 0 16 16zM1536 304v32q0 16-16 16h-48v16q0 16-16 16h-112v-128h112q16 0 16 16v16h48q16 0 16 16z" + } + }] +}; +exports.microchip = microchip; +var snowflakeO = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1566 1117l-167 33 186 107q23 13 29.5 38.5t-6.5 48.5q-14 23-39 29.5t-48-6.5l-186-106 55 160q13 38-12 63.5t-60.5 20.5-48.5-42l-102-300-271-156v313l208 238q16 18 17 39t-11 36.5-28.5 25-37 5.5-36.5-22l-112-128v214q0 26-19 45t-45 19-45-19-19-45v-214l-112 128q-16 18-36.5 22t-37-5.5-28.5-25-11-36.5 17-39l208-238v-313l-271 156-102 300q-13 37-48.5 42t-60.5-20.5-12-63.5l55-160-186 106q-23 13-48 6.5t-39-29.5q-13-23-6.5-48.5t29.5-38.5l186-107-167-33q-29-6-42-29t-8.5-46.5 25.5-40 50-10.5l310 62 271-157-271-157-310 62q-4 1-13 1-27 0-44-18t-19-40 11-43 40-26l167-33-186-107q-23-13-29.5-38.5t6.5-48.5 39-30 48 7l186 106-55-160q-13-38 12-63.5t60.5-20.5 48.5 42l102 300 271 156v-313l-208-238q-16-18-17-39t11-36.5 28.5-25 37-5.5 36.5 22l112 128v-214q0-26 19-45t45-19 45 19 19 45v214l112-128q16-18 36.5-22t37 5.5 28.5 25 11 36.5-17 39l-208 238v313l271-156 102-300q13-37 48.5-42t60.5 20.5 12 63.5l-55 160 186-106q23-13 48-6.5t39 29.5q13 23 6.5 48.5t-29.5 38.5l-186 107 167 33q27 5 40 26t11 43-19 40-44 18q-9 0-13-1l-310-62-271 157 271 157 310-62q29-6 50 10.5t25.5 40-8.5 46.5-42 29z" + } + }] +}; +exports.snowflakeO = snowflakeO; +var superpowers = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1473 929q7-118-33-226.5t-113-189-177-131-221-57.5q-116-7-225.5 32t-192 110.5-135 175-59.5 220.5q-7 118 33 226.5t113 189 177.5 131 221.5 57.5q155 9 293-59t224-195.5 94-283.5zM1792 0l-349 348q120 117 180.5 272t50.5 321q-11 183-102 339t-241 255.5-332 124.5l-999 132 347-347q-120-116-180.5-271.5t-50.5-321.5q11-184 102-340t241.5-255.5 332.5-124.5q167-22 500-66t500-66z" + } + }] +}; +exports.superpowers = superpowers; +var wpexplorer = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M948 1028l163 329h-51l-175-350-171 350h-49l179-374-78-33 21-49 240 102-21 50zM563 436l304 130-130 304-304-130zM907 621l240 103-103 239-239-102zM1188 771l191 81-82 190-190-81zM1680 896q0-159-62-304t-167.5-250.5-250.5-167.5-304-62-304 62-250.5 167.5-167.5 250.5-62 304 62 304 167.5 250.5 250.5 167.5 304 62 304-62 250.5-167.5 167.5-250.5 62-304zM1792 896q0 182-71 348t-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71 348 71 286 191 191 286 71 348z" + } + }] +}; +exports.wpexplorer = wpexplorer; +var meetup = { + "viewBox": "0 0 1920 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1334 1234q-4-24-27.5-34t-49.5-10.5-48.5-12.5-25.5-38q-5-47 33-139.5t75-181 32-127.5q-14-101-117-103-45-1-75 16l-3 2-5 2.5t-4.5 2-5 2-5 0.5-6-1.5-6-3.5-6.5-5q-3-2-9-8.5t-9-9-8.5-7.5-9.5-7.5-9.5-5.5-11-4.5-11.5-2.5q-30-5-48 3t-45 31q-1 1-9 8.5t-12.5 11-15 10-16.5 5.5-17-3q-54-27-84-40-41-18-94 5t-76 65q-16 28-41 98.5t-43.5 132.5-40 134-21.5 73q-22 69 18.5 119t110.5 46q30-2 50.5-15t38.5-46q7-13 79-199.5t77-194.5q6-11 21.5-18t29.5 0q27 15 21 53-2 18-51 139.5t-50 132.5q-6 38 19.5 56.5t60.5 7 55-49.5q4-8 45.5-92t81.5-163.5 46-88.5q20-29 41-28 29 0 25 38-2 16-65.5 147.5t-70.5 159.5q-12 53 13 103t74 74q17 9 51 15.5t71.5 8 62.5-14 20-48.5zM383 1450q3 15-5 27.5t-23 15.5q-14 3-26.5-5t-15.5-23q-3-14 5-27t22-16 27 5 16 23zM953 1713q12 17 8.5 37.5t-20.5 32.5-37.5 8-32.5-21q-11-17-7.5-37.5t20.5-32.5 37.5-8 31.5 21zM177 901q-18 27-49.5 33t-57.5-13q-26-18-32-50t12-58q18-27 49.5-33t57.5 12q26 19 32 50.5t-12 58.5zM1467 1578q19 28 13 61.5t-34 52.5-60.5 13-51.5-34-13-61 33-53q28-19 60.5-13t52.5 34zM1579 974q69 113 42.5 244.5t-134.5 207.5q-90 63-199 60-20 80-84.5 127t-143.5 44.5-140-57.5q-12 9-13 10-103 71-225 48.5t-193-126.5q-50-73-53-164-83-14-142.5-70.5t-80.5-128-2-152 81-138.5q-36-60-38-128t24.5-125 79.5-98.5 121-50.5q32-85 99-148t146.5-91.5 168-17 159.5 66.5q72-21 140-17.5t128.5 36 104.5 80 67.5 115 17.5 140.5q52 16 87 57t45.5 89-5.5 99.5-58 87.5zM455 314q14 20 9.5 44.5t-24.5 38.5q-19 14-43.5 9.5t-37.5-24.5q-14-20-9.5-44.5t24.5-38.5q19-14 43.5-9.5t37.5 24.5zM614 33q4 16-5 30.5t-26 18.5-31-5.5-18-26.5q-3-17 6.5-31t25.5-18q17-4 31 5.5t17 26.5zM1800 981q4 20-6.5 37t-30.5 21q-19 4-36-6.5t-21-30.5 6.5-37 30.5-22q20-4 36.5 7.5t20.5 30.5zM1136 88q16 27 8.5 58.5t-35.5 47.5q-27 16-57.5 8.5t-46.5-34.5q-16-28-8.5-59t34.5-48 58-9 47 36zM1882 744q4 15-4 27.5t-23 16.5q-15 3-27.5-5.5t-15.5-22.5q-3-15 5-28t23-16q14-3 26.5 5t15.5 23zM1691 503q15 22 10.5 49t-26.5 43q-22 15-49 10t-42-27-10-49 27-43 48.5-11 41.5 28z" + } + }] +}; +exports.meetup = meetup; \ No newline at end of file diff --git a/dist/fa/industry.js b/dist/fa/industry.js new file mode 100644 index 000000000..049526869 --- /dev/null +++ b/dist/fa/industry.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.industry = void 0; +var industry = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M448 0q26 0 45 19t19 45v891l536-429q17-14 40-14 26 0 45 19t19 45v379l536-429q17-14 40-14 26 0 45 19t19 45v1152q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-1664q0-26 19-45t45-19h384z" + } + }] +}; +exports.industry = industry; \ No newline at end of file diff --git a/dist/fa/info.js b/dist/fa/info.js new file mode 100644 index 000000000..64d411bea --- /dev/null +++ b/dist/fa/info.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.info = void 0; +var info = { + "viewBox": "0 0 640 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 1344v128q0 26-19 45t-45 19h-512q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h64v-384h-64q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h384q26 0 45 19t19 45v576h64q26 0 45 19t19 45zM512 192v192q0 26-19 45t-45 19h-256q-26 0-45-19t-19-45v-192q0-26 19-45t45-19h256q26 0 45 19t19 45z" + } + }] +}; +exports.info = info; \ No newline at end of file diff --git a/dist/fa/infoCircle.js b/dist/fa/infoCircle.js new file mode 100644 index 000000000..be9db2b71 --- /dev/null +++ b/dist/fa/infoCircle.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.infoCircle = void 0; +var infoCircle = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 1376v-160q0-14-9-23t-23-9h-96v-512q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v160q0 14 9 23t23 9h96v320h-96q-14 0-23 9t-9 23v160q0 14 9 23t23 9h448q14 0 23-9t9-23zM896 480v-160q0-14-9-23t-23-9h-192q-14 0-23 9t-9 23v160q0 14 9 23t23 9h192q14 0 23-9t9-23zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.infoCircle = infoCircle; \ No newline at end of file diff --git a/dist/fa/inr.js b/dist/fa/inr.js new file mode 100644 index 000000000..ef04c1a85 --- /dev/null +++ b/dist/fa/inr.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.inr = void 0; +var inr = { + "viewBox": "0 0 898 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M898 470v102q0 14-9 23t-23 9h-168q-23 144-129 234t-276 110q167 178 459 536 14 16 4 34-8 18-29 18h-195q-16 0-25-12-306-367-498-571-9-9-9-22v-127q0-13 9.5-22.5t22.5-9.5h112q132 0 212.5-43t102.5-125h-427q-14 0-23-9t-9-23v-102q0-14 9-23t23-9h413q-57-113-268-113h-145q-13 0-22.5-9.5t-9.5-22.5v-133q0-14 9-23t23-9h832q14 0 23 9t9 23v102q0 14-9 23t-23 9h-233q47 61 64 144h171q14 0 23 9t9 23z" + } + }] +}; +exports.inr = inr; \ No newline at end of file diff --git a/dist/fa/instagram.js b/dist/fa/instagram.js new file mode 100644 index 000000000..98c0235de --- /dev/null +++ b/dist/fa/instagram.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.instagram = void 0; +var instagram = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 896q0-106-75-181t-181-75-181 75-75 181 75 181 181 75 181-75 75-181zM1162 896q0 164-115 279t-279 115-279-115-115-279 115-279 279-115 279 115 115 279zM1270 486q0 38-27 65t-65 27-65-27-27-65 27-65 65-27 65 27 27 65zM768 266q-7 0-76.5-0.5t-105.5 0-96.5 3-103 10-71.5 18.5q-50 20-88 58t-58 88q-11 29-18.5 71.5t-10 103-3 96.5 0 105.5 0.5 76.5-0.5 76.5 0 105.5 3 96.5 10 103 18.5 71.5q20 50 58 88t88 58q29 11 71.5 18.5t103 10 96.5 3 105.5 0 76.5-0.5 76.5 0.5 105.5 0 96.5-3 103-10 71.5-18.5q50-20 88-58t58-88q11-29 18.5-71.5t10-103 3-96.5 0-105.5-0.5-76.5 0.5-76.5 0-105.5-3-96.5-10-103-18.5-71.5q-20-50-58-88t-88-58q-29-11-71.5-18.5t-103-10-96.5-3-105.5 0-76.5 0.5zM1536 896q0 229-5 317-10 208-124 322t-322 124q-88 5-317 5t-317-5q-208-10-322-124t-124-322q-5-88-5-317t5-317q10-208 124-322t322-124q88-5 317-5t317 5q208 10 322 124t124 322q5 88 5 317z" + } + }] +}; +exports.instagram = instagram; \ No newline at end of file diff --git a/dist/fa/institution.js b/dist/fa/institution.js new file mode 100644 index 000000000..2ea3cdc74 --- /dev/null +++ b/dist/fa/institution.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.institution = void 0; +var institution = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M960 0l960 384v128h-128q0 26-20.5 45t-48.5 19h-1526q-28 0-48.5-19t-20.5-45h-128v-128zM256 640h256v768h128v-768h256v768h128v-768h256v768h128v-768h256v768h59q28 0 48.5 19t20.5 45v64h-1664v-64q0-26 20.5-45t48.5-19h59v-768zM1851 1600q28 0 48.5 19t20.5 45v128h-1920v-128q0-26 20.5-45t48.5-19h1782z" + } + }] +}; +exports.institution = institution; \ No newline at end of file diff --git a/dist/fa/internetExplorer.js b/dist/fa/internetExplorer.js new file mode 100644 index 000000000..c6e4e1487 --- /dev/null +++ b/dist/fa/internetExplorer.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.internetExplorer = void 0; +var internetExplorer = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1792 937q0 56-7 104h-1151q0 146 109.5 244.5t257.5 98.5q99 0 185.5-46.5t136.5-130.5h423q-56 159-170.5 281t-267.5 188.5-321 66.5q-187 0-356-83-228 116-394 116-237 0-237-263 0-115 45-275 17-60 109-229 199-360 475-606-184 79-427 354 63-274 283.5-449.5t501.5-175.5q30 0 45 1 255-117 433-117 64 0 116 13t94.5 40.5 66.5 76.5 24 115q0 116-75 286 101 182 101 390zM1722 297q0-83-53-132t-137-49q-108 0-254 70 121 47 222.5 131.5t170.5 195.5q51-135 51-216zM128 1534q0 86 48.5 132.5t134.5 46.5q115 0 266-83-122-72-213.5-183t-137.5-245q-98 205-98 332zM632 821h728q-5-142-113-237t-251-95q-144 0-251.5 95t-112.5 237z" + } + }] +}; +exports.internetExplorer = internetExplorer; \ No newline at end of file diff --git a/dist/fa/intersex.js b/dist/fa/intersex.js new file mode 100644 index 000000000..802c51916 --- /dev/null +++ b/dist/fa/intersex.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.intersex = void 0; +var intersex = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 32q0-14 9-23t23-9h288q26 0 45 19t19 45v288q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-134l-254 255q126 158 126 359 0 221-147.5 384.5t-364.5 187.5v132h96q14 0 23 9t9 23v64q0 14-9 23t-23 9h-96v96q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-96h-96q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h96v-132q-149-16-270.5-103t-186.5-223.5-53-291.5q16-204 160-353.5t347-172.5q118-14 228 19t198 103l255-254h-134q-14 0-23-9t-9-23v-64zM576 1280q185 0 316.5-131.5t131.5-316.5-131.5-316.5-316.5-131.5-316.5 131.5-131.5 316.5 131.5 316.5 316.5 131.5z" + } + }] +}; +exports.intersex = intersex; \ No newline at end of file diff --git a/dist/fa/ioxhost.js b/dist/fa/ioxhost.js new file mode 100644 index 000000000..bd881cb12 --- /dev/null +++ b/dist/fa/ioxhost.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ioxhost = void 0; +var ioxhost = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1463 832q0 35-25 60.5t-61 25.5h-702q-36 0-61-25.5t-25-60.5 25-60.5 61-25.5h702q36 0 61 25.5t25 60.5zM1677 832q0-86-23-170h-982q-36 0-61-25t-25-60q0-36 25-61t61-25h908q-88-143-235-227t-320-84q-177 0-327.5 87.5t-238 237.5-87.5 327q0 86 23 170h982q36 0 61 25t25 60q0 36-25 61t-61 25h-908q88 143 235.5 227t320.5 84q132 0 253-51.5t208-139 139-208 52-253.5zM2048 577q0 35-25 60t-61 25h-131q17 85 17 170 0 167-65.5 319.5t-175.5 263-262.5 176-319.5 65.5q-246 0-448.5-133t-301.5-350h-189q-36 0-61-25t-25-61q0-35 25-60t61-25h132q-17-85-17-170 0-167 65.5-319.5t175.5-263 262.5-176 320.5-65.5q245 0 447.5 133t301.5 350h188q36 0 61 25t25 61z" + } + }] +}; +exports.ioxhost = ioxhost; \ No newline at end of file diff --git a/dist/fa/italic.js b/dist/fa/italic.js new file mode 100644 index 000000000..0883961fa --- /dev/null +++ b/dist/fa/italic.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.italic = void 0; +var italic = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 1662l17-85q22-7 61.5-16.5t72-19 59.5-23.5q28-35 41-101 1-7 62-289t114-543.5 52-296.5v-25q-24-13-54.5-18.5t-69.5-8-58-5.5l19-103q33 2 120 6.5t149.5 7 120.5 2.5q48 0 98.5-2.5t121-7 98.5-6.5q-5 39-19 89-30 10-101.5 28.5t-108.5 33.5q-8 19-14 42.5t-9 40-7.5 45.5-6.5 42q-27 148-87.5 419.5t-77.5 355.5q-2 9-13 58t-20 90-16 83.5-6 57.5l1 18q17 4 185 31-3 44-16 99-11 0-32.5 1.5t-32.5 1.5q-29 0-87-10t-86-10q-138-2-206-2-51 0-143 9t-121 11z" + } + }] +}; +exports.italic = italic; \ No newline at end of file diff --git a/dist/fa/joomla.js b/dist/fa/joomla.js new file mode 100644 index 000000000..73b011a0e --- /dev/null +++ b/dist/fa/joomla.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.joomla = void 0; +var joomla = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1070 1073l-160 160-151 152-30 30q-65 64-151.5 87t-171.5 2q-16 70-72 115t-129 45q-85 0-145-60.5t-60-145.5q0-72 44.5-128t113.5-72q-22-86 1-173t88-152l12-12 151 152-11 11q-37 37-37 89t37 90q37 37 89 37t89-37l30-30 151-152 161-160zM729 391l12 12-152 152-12-12q-37-37-89-37t-89 37-37 89.5 37 89.5l29 29 152 152 160 160-151 152-161-160-151-152-30-30q-68-67-90-159.5t5-179.5q-70-15-115-71t-45-129q0-85 60-145.5t145-60.5q76 0 133.5 49t69.5 123q84-20 169.5 3.5t149.5 87.5zM1536 1458q0 85-60 145.5t-145 60.5q-74 0-131-47t-71-118q-86 28-179.5 6t-161.5-90l-11-12 151-152 12 12q37 37 89 37t89-37 37-89-37-89l-30-30-152-152-160-160 152-152 160 160 152 152 29 30q64 64 87.5 150.5t2.5 171.5q76 11 126.5 68.5t50.5 134.5zM1534 334q0 77-51 135t-127 69q26 85 3 176.5t-90 158.5l-12 12-151-152 12-12q37-37 37-89t-37-89-89-37-89 37l-30 30-152 152-160 160-152-152 161-160 152-152 29-30q67-67 159-89.5t178 3.5q11-75 68.5-126t135.5-51q85 0 145 60.5t60 145.5z" + } + }] +}; +exports.joomla = joomla; \ No newline at end of file diff --git a/dist/fa/jpy.js b/dist/fa/jpy.js new file mode 100644 index 000000000..36da23ea9 --- /dev/null +++ b/dist/fa/jpy.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.jpy = void 0; +var jpy = { + "viewBox": "0 0 1027 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M603 1536h-172q-13 0-22.5-9t-9.5-23v-330h-288q-13 0-22.5-9t-9.5-23v-103q0-13 9.5-22.5t22.5-9.5h288v-85h-288q-13 0-22.5-9t-9.5-23v-104q0-13 9.5-22.5t22.5-9.5h214l-321-578q-8-16 0-32 10-16 28-16h194q19 0 29 18l215 425q19 38 56 125 10-24 30.5-68t27.5-61l191-420q8-19 29-19h191q17 0 27 16 9 14 1 31l-313 579h215q13 0 22.5 9.5t9.5 22.5v104q0 14-9.5 23t-22.5 9h-290v85h290q13 0 22.5 9.5t9.5 22.5v103q0 14-9.5 23t-22.5 9h-290v330q0 13-9.5 22.5t-22.5 9.5z" + } + }] +}; +exports.jpy = jpy; \ No newline at end of file diff --git a/dist/fa/jsfiddle.js b/dist/fa/jsfiddle.js new file mode 100644 index 000000000..5e4d5175b --- /dev/null +++ b/dist/fa/jsfiddle.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.jsfiddle = void 0; +var jsfiddle = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1800 772q111 46 179.5 145.5t68.5 221.5q0 164-118 280.5t-285 116.5q-4 0-11.5-0.5t-10.5-0.5h-1209-1-2-5q-170-10-288-125.5t-118-280.5q0-110 55-203t147-147q-12-39-12-82 0-115 82-196t199-81q95 0 172 58 75-154 222.5-248t326.5-94q166 0 306 80.5t221.5 218.5 81.5 301q0 6-0.5 18t-0.5 18zM468 1038q0 122 84 193t208 71q137 0 240-99-16-20-47.5-56.5t-43.5-50.5q-67 65-144 65-55 0-93.5-33.5t-38.5-87.5q0-53 38.5-87t91.5-34q44 0 84.5 21t73 55 65 75 69 82 77 75 97 55 121.5 21q121 0 204.5-71.5t83.5-190.5q0-121-84-192t-207-71q-143 0-241 97l93 108q66-64 142-64 52 0 92 33t40 84q0 57-37 91.5t-94 34.5q-43 0-82.5-21t-72-55-65.5-75-69.5-82-77.5-75-96.5-55-118.5-21q-122 0-207 70.5t-85 189.5z" + } + }] +}; +exports.jsfiddle = jsfiddle; \ No newline at end of file diff --git a/dist/fa/key.js b/dist/fa/key.js new file mode 100644 index 000000000..9fde34036 --- /dev/null +++ b/dist/fa/key.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.key = void 0; +var key = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M832 512q0-80-56-136t-136-56-136 56-56 136q0 42 19 83-41-19-83-19-80 0-136 56t-56 136 56 136 136 56 136-56 56-136q0-42-19-83 41 19 83 19 80 0 136-56t56-136zM1683 1216q0 17-49 66t-66 49q-9 0-28.5-16t-36.5-33-38.5-40-24.5-26l-96 96 220 220q28 28 28 68 0 42-39 81t-81 39q-40 0-68-28l-671-671q-176 131-365 131-163 0-265.5-102.5t-102.5-265.5q0-160 95-313t248-248 313-95q163 0 265.5 102.5t102.5 265.5q0 189-131 365l355 355 96-96q-3-3-26-24.5t-40-38.5-33-36.5-16-28.5q0-17 49-66t66-49q13 0 23 10 6 6 46 44.5t82 79.5 86.5 86 73 78 28.5 41z" + } + }] +}; +exports.key = key; \ No newline at end of file diff --git a/dist/fa/keyboardO.js b/dist/fa/keyboardO.js new file mode 100644 index 000000000..8483366a7 --- /dev/null +++ b/dist/fa/keyboardO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.keyboardO = void 0; +var keyboardO = { + "viewBox": "0 0 1920 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M384 1168v96q0 16-16 16h-96q-16 0-16-16v-96q0-16 16-16h96q16 0 16 16zM512 912v96q0 16-16 16h-224q-16 0-16-16v-96q0-16 16-16h224q16 0 16 16zM384 656v96q0 16-16 16h-96q-16 0-16-16v-96q0-16 16-16h96q16 0 16 16zM1408 1168v96q0 16-16 16h-864q-16 0-16-16v-96q0-16 16-16h864q16 0 16 16zM768 912v96q0 16-16 16h-96q-16 0-16-16v-96q0-16 16-16h96q16 0 16 16zM640 656v96q0 16-16 16h-96q-16 0-16-16v-96q0-16 16-16h96q16 0 16 16zM1024 912v96q0 16-16 16h-96q-16 0-16-16v-96q0-16 16-16h96q16 0 16 16zM896 656v96q0 16-16 16h-96q-16 0-16-16v-96q0-16 16-16h96q16 0 16 16zM1280 912v96q0 16-16 16h-96q-16 0-16-16v-96q0-16 16-16h96q16 0 16 16zM1664 1168v96q0 16-16 16h-96q-16 0-16-16v-96q0-16 16-16h96q16 0 16 16zM1152 656v96q0 16-16 16h-96q-16 0-16-16v-96q0-16 16-16h96q16 0 16 16zM1408 656v96q0 16-16 16h-96q-16 0-16-16v-96q0-16 16-16h96q16 0 16 16zM1664 656v352q0 16-16 16h-224q-16 0-16-16v-96q0-16 16-16h112v-240q0-16 16-16h96q16 0 16 16zM1792 1408v-896h-1664v896h1664zM1920 512v896q0 53-37.5 90.5t-90.5 37.5h-1664q-53 0-90.5-37.5t-37.5-90.5v-896q0-53 37.5-90.5t90.5-37.5h1664q53 0 90.5 37.5t37.5 90.5z" + } + }] +}; +exports.keyboardO = keyboardO; \ No newline at end of file diff --git a/dist/fa/krw.js b/dist/fa/krw.js new file mode 100644 index 000000000..e5ee4e90a --- /dev/null +++ b/dist/fa/krw.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.krw = void 0; +var krw = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M514 1195l81-299h-159l75 300q1 1 1 3t1 3q0-1 0.5-3.5t0.5-3.5zM630 768l35-128h-292l32 128h225zM822 768h139l-35-128h-70zM1271 1196l78-300h-162l81 299q0 1 0.5 3.5t1.5 3.5q0-1 0.5-3t0.5-3zM1382 768l33-128h-297l34 128h230zM1792 800v64q0 14-9 23t-23 9h-213l-164 616q-7 24-31 24h-159q-24 0-31-24l-166-616h-209l-167 616q-7 24-31 24h-159q-11 0-19.5-7t-10.5-17l-160-616h-208q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h175l-33-128h-142q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h109l-89-344q-5-15 5-28 10-12 26-12h137q26 0 31 24l90 360h359l97-360q7-24 31-24h126q24 0 31 24l98 360h365l93-360q5-24 31-24h137q16 0 26 12 10 13 5 28l-91 344h111q14 0 23 9t9 23v64q0 14-9 23t-23 9h-145l-34 128h179q14 0 23 9t9 23z" + } + }] +}; +exports.krw = krw; \ No newline at end of file diff --git a/dist/fa/language.js b/dist/fa/language.js new file mode 100644 index 000000000..8d89b46fb --- /dev/null +++ b/dist/fa/language.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.language = void 0; +var language = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M654 1078q-1 3-12.5-0.5t-31.5-11.5l-20-9q-44-20-87-49-7-5-41-31.5t-38-28.5q-67 103-134 181-81 95-105 110-4 2-19.5 4t-18.5 0q6-4 82-92 21-24 85.5-115t78.5-118q17-30 51-98.5t36-77.5q-8-1-110 33-8 2-27.5 7.5t-34.5 9.5-17 5q-2 2-2 10.5t-1 9.5q-5 10-31 15-23 7-47 0-18-4-28-21-4-6-5-23 6-2 24.5-5t29.5-6q58-16 105-32 100-35 102-35 10-2 43-19.5t44-21.5q9-3 21.5-8t14.5-5.5 6 0.5q2 12-1 33 0 2-12.5 27t-26.5 53.5-17 33.5q-25 50-77 131l64 28q12 6 74.5 32t67.5 28q4 1 10.5 25.5t4.5 30.5zM449 592q3 15-4 28-12 23-50 38-30 12-60 12-26-3-49-26-14-15-18-41l1-3q3 3 19.5 5t26.5 0 58-16q36-12 55-14 17 0 21 17zM1147 721l63 227-139-42zM39 1521l694-232v-1032l-694 233v1031zM1280 1204l102 31-181-657-100-31-216 536 102 31 45-110 211 65zM777 242l573 184v-380zM1088 1565l158 13-54 160-40-66q-130 83-276 108-58 12-91 12h-84q-79 0-199.5-39t-183.5-85q-8-7-8-16 0-8 5-13.5t13-5.5q4 0 18 7.5t30.5 16.5 20.5 11q73 37 159.5 61.5t157.5 24.5q95 0 167-14.5t157-50.5q15-7 30.5-15.5t34-19 28.5-16.5zM1536 486v1079l-774-246q-14 6-375 127.5t-368 121.5q-13 0-18-13 0-1-1-3v-1078q3-9 4-10 5-6 20-11 107-36 149-50v-384l558 198q2 0 160.5-55t316-108.5 161.5-53.5q20 0 20 21v418z" + } + }] +}; +exports.language = language; \ No newline at end of file diff --git a/dist/fa/laptop.js b/dist/fa/laptop.js new file mode 100644 index 000000000..ec22eff4c --- /dev/null +++ b/dist/fa/laptop.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.laptop = void 0; +var laptop = { + "viewBox": "0 0 1920 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M416 1280q-66 0-113-47t-47-113v-704q0-66 47-113t113-47h1088q66 0 113 47t47 113v704q0 66-47 113t-113 47h-1088zM384 416v704q0 13 9.5 22.5t22.5 9.5h1088q13 0 22.5-9.5t9.5-22.5v-704q0-13-9.5-22.5t-22.5-9.5h-1088q-13 0-22.5 9.5t-9.5 22.5zM1760 1344h160v96q0 40-47 68t-113 28h-1600q-66 0-113-28t-47-68v-96h160 1600zM1040 1440q16 0 16-16t-16-16h-160q-16 0-16 16t16 16h160z" + } + }] +}; +exports.laptop = laptop; \ No newline at end of file diff --git a/dist/fa/lastfm.js b/dist/fa/lastfm.js new file mode 100644 index 000000000..31f512cef --- /dev/null +++ b/dist/fa/lastfm.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.lastfm = void 0; +var lastfm = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1292 704q0 6 10 41 10 29 25 49.5t41 34 44 20 55 16.5q325 91 325 332 0 146-105.5 242.5t-254.5 96.5q-59 0-111.5-18.5t-91.5-45.5-77-74.5-63-87.5-53.5-103.5-43.5-103-39.5-106.5-35.5-95q-32-81-61.5-133.5t-73.5-96.5-104-64-142-20q-96 0-183 55.5t-138 144.5-51 185q0 160 106.5 279.5t263.5 119.5q177 0 258-95 56-63 83-116l84 152q-15 34-44 70l1 1q-131 152-388 152-147 0-269.5-79t-190.5-207.5-68-274.5q0-105 43.5-206t116-176.5 172-121.5 204.5-46q87 0 159 19t123.5 50 95 80 72.5 99 58.5 117 50.5 124.5 50 130.5 55 127q96 200 233 200 81 0 138.5-48.5t57.5-128.5q0-42-19-72t-50.5-46-72.5-31.5-84.5-27-87.5-34-81-52-65-82-39-122.5q-3-16-3-33 0-110 87.5-192t198.5-78q78 3 120.5 14.5t90.5 53.5h-1q12 11 23 24.5t26 36 19 27.5l-129 99q-26-49-54-70v-1q-23-21-97-21-49 0-84 33t-35 83z" + } + }] +}; +exports.lastfm = lastfm; \ No newline at end of file diff --git a/dist/fa/lastfmSquare.js b/dist/fa/lastfmSquare.js new file mode 100644 index 000000000..5d483ecd0 --- /dev/null +++ b/dist/fa/lastfmSquare.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.lastfmSquare = void 0; +var lastfmSquare = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1432 1052q0-173-234-239-35-10-53-16.5t-38-25-29-46.5q0-2-2-8.5t-3-12-1-7.5q0-36 24.5-59.5t60.5-23.5q54 0 71 15h-1q20 15 39 51l93-71q-39-54-49-64-33-29-67.5-39t-85.5-10q-80 0-142 57.5t-62 137.5q0 7 2 23 16 96 64.5 140t148.5 73q29 8 49 15.5t45 21.5 38.5 34.5 13.5 46.5v5q1 58-40.5 93t-100.5 35q-97 0-167-144-23-47-51.5-121.5t-48-125.5-54-110.5-74-95.5-103.5-60.5-147-24.5q-101 0-192 56t-144 148-50 192v1q4 108 50.5 199t133.5 147.5 196 56.5q186 0 279-110 20-27 31-51l-60-109q-42 80-99 116t-146 36q-115 0-191-87t-76-204q0-105 82-189t186-84q112 0 170 53.5t104 172.5q8 21 25.5 68.5t28.5 76.5 31.5 74.5 38.5 74 45.5 62.5 55.5 53.5 66 33 80 13.5q107 0 183-69.5t76-174.5zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.lastfmSquare = lastfmSquare; \ No newline at end of file diff --git a/dist/fa/leaf.js b/dist/fa/leaf.js new file mode 100644 index 000000000..f4aa2f431 --- /dev/null +++ b/dist/fa/leaf.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.leaf = void 0; +var leaf = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1280 704q0-26-19-45t-45-19q-172 0-318 49.5t-259.5 134-235.5 219.5q-19 21-19 45 0 26 19 45t45 19q24 0 45-19 27-24 74-71t67-66q137-124 268.5-176t313.5-52q26 0 45-19t19-45zM1792 506q0 95-20 193-46 224-184.5 383t-357.5 268q-214 108-438 108-148 0-286-47-15-5-88-42t-96-37q-16 0-39.5 32t-45 70-52.5 70-60 32q-43 0-63.5-17.5t-45.5-59.5q-2-4-6-11t-5.5-10-3-9.5-1.5-13.5q0-35 31-73.5t68-65.5 68-56 31-48q0-4-14-38t-16-44q-9-51-9-104 0-115 43.5-220t119-184.5 170.5-139 204-95.5q55-18 145-25.5t179.5-9 178.5-6 163.5-24 113.5-56.5l29.5-29.5t29.5-28 27-20 36.5-16 43.5-4.5q39 0 70.5 46t47.5 112 24 124 8 96z" + } + }] +}; +exports.leaf = leaf; \ No newline at end of file diff --git a/dist/fa/leanpub.js b/dist/fa/leanpub.js new file mode 100644 index 000000000..a84ad139e --- /dev/null +++ b/dist/fa/leanpub.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.leanpub = void 0; +var leanpub = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1893 392l155 1272q-131 0-257-57-200-91-393-91-226 0-374 148-148-148-374-148-193 0-393 91-128 57-252 57h-5l155-1272q224-127 482-127 233 0 387 106 154-106 387-106 258 0 482 127zM1398 1379q129 0 232 28.5t260 93.5l-124-1021q-171-78-368-78-224 0-374 141-150-141-374-141-197 0-368 78l-124 1021q105-43 165.5-65t148.5-39.5 178-17.5q202 0 374 108 172-108 374-108zM1438 1345l-55-907q-211 4-359 155-152-155-374-155-176 0-336 66l-114 941q124-51 228.5-76t221.5-25q209 0 374 102 172-107 374-102z" + } + }] +}; +exports.leanpub = leanpub; \ No newline at end of file diff --git a/dist/fa/legal.js b/dist/fa/legal.js new file mode 100644 index 000000000..67895198c --- /dev/null +++ b/dist/fa/legal.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.legal = void 0; +var legal = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1771 1536q0 53-37 90l-107 108q-39 37-91 37-53 0-90-37l-363-364q-38-36-38-90 0-53 43-96l-256-256-126 126q-14 14-34 14t-34-14q2 2 12.5 12t12.5 13 10 11.5 10 13.5 6 13.5 5.5 16.5 1.5 18q0 38-28 68-3 3-16.5 18t-19 20.5-18.5 16.5-22 15.5-22 9-26 4.5q-40 0-68-28l-408-408q-28-28-28-68 0-13 4.5-26t9-22 15.5-22 16.5-18.5 20.5-19 18-16.5q30-28 68-28 10 0 18 1.5t16.5 5.5 13.5 6 13.5 10 11.5 10 13 12.5 12 12.5q-14-14-14-34t14-34l348-348q14-14 34-14t34 14q-2-2-12.5-12t-12.5-13-10-11.5-10-13.5-6-13.5-5.5-16.5-1.5-18q0-38 28-68 3-3 16.5-18t19-20.5 18.5-16.5 22-15.5 22-9 26-4.5q40 0 68 28l408 408q28 28 28 68 0 13-4.5 26t-9 22-15.5 22-16.5 18.5-20.5 19-18 16.5q-30 28-68 28-10 0-18-1.5t-16.5-5.5-13.5-6-13.5-10-11.5-10-13-12.5-12-12.5q14 14 14 34t-14 34l-126 126 256 256q43-43 96-43 52 0 91 37l363 363q37 39 37 91z" + } + }] +}; +exports.legal = legal; \ No newline at end of file diff --git a/dist/fa/lemonO.js b/dist/fa/lemonO.js new file mode 100644 index 000000000..b7ca6495d --- /dev/null +++ b/dist/fa/lemonO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.lemonO = void 0; +var lemonO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1407 826q0-44-7-113.5t-18-96.5q-12-30-17-44t-9-36.5-4-48.5q0-23 5-68.5t5-67.5q0-37-10-55-4-1-13-1-19 0-58 4.5t-59 4.5q-60 0-176-24t-175-24q-43 0-94.5 11.5t-85 23.5-89.5 34q-137 54-202 103-96 73-159.5 189.5t-88 236-24.5 248.5q0 40 12.5 120t12.5 121q0 23-11 66.5t-11 65.5 12 36.5 34 14.5q24 0 72.5-11t73.5-11q57 0 169.5 15.5t169.5 15.5q181 0 284-36 129-45 235.5-152.5t166-245.5 59.5-275zM1535 824q0 165-70 327.5t-196 288-281 180.5q-124 44-326 44-57 0-170-14.5t-169-14.5q-24 0-72.5 14.5t-73.5 14.5q-73 0-123.5-55.5t-50.5-128.5q0-24 11-68t11-67q0-40-12.5-120.5t-12.5-121.5q0-111 18-217.5t54.5-209.5 100.5-194 150-156q78-59 232-120 194-78 316-78 60 0 175.5 24t173.5 24q19 0 57-5t58-5q81 0 118 50.5t37 134.5q0 23-5 68t-5 68q0 13 2 25t3.5 16.5 7.5 20.5 8 20q16 40 25 118.5t9 136.5z" + } + }] +}; +exports.lemonO = lemonO; \ No newline at end of file diff --git a/dist/fa/levelDown.js b/dist/fa/levelDown.js new file mode 100644 index 000000000..77692389e --- /dev/null +++ b/dist/fa/levelDown.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.levelDown = void 0; +var levelDown = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M32 256h704q13 0 22.5 9.5t9.5 23.5v863h192q40 0 58 37t-9 69l-320 384q-18 22-49 22t-49-22l-320-384q-26-31-9-69 18-37 58-37h192v-640h-320q-14 0-25-11l-160-192q-13-14-4-34 9-19 29-19z" + } + }] +}; +exports.levelDown = levelDown; \ No newline at end of file diff --git a/dist/fa/levelUp.js b/dist/fa/levelUp.js new file mode 100644 index 000000000..94041d7de --- /dev/null +++ b/dist/fa/levelUp.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.levelUp = void 0; +var levelUp = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1018 603q-18 37-58 37h-192v864q0 14-9 23t-23 9h-704q-21 0-29-18-8-20 4-35l160-192q9-11 25-11h320v-640h-192q-40 0-58-37-17-37 9-68l320-384q18-22 49-22t49 22l320 384q27 32 9 68z" + } + }] +}; +exports.levelUp = levelUp; \ No newline at end of file diff --git a/dist/fa/lifeBouy.js b/dist/fa/lifeBouy.js new file mode 100644 index 000000000..14a94cdf0 --- /dev/null +++ b/dist/fa/lifeBouy.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.lifeBouy = void 0; +var lifeBouy = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M896 0q182 0 348 71t286 191 191 286 71 348-71 348-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71zM896 128q-190 0-361 90l194 194q82-28 167-28t167 28l194-194q-171-90-361-90zM218 1257l194-194q-28-82-28-167t28-167l-194-194q-90 171-90 361t90 361zM896 1664q190 0 361-90l-194-194q-82 28-167 28t-167-28l-194 194q171 90 361 90zM896 1280q159 0 271.5-112.5t112.5-271.5-112.5-271.5-271.5-112.5-271.5 112.5-112.5 271.5 112.5 271.5 271.5 112.5zM1380 1063l194 194q90-171 90-361t-90-361l-194 194q28 82 28 167t-28 167z" + } + }] +}; +exports.lifeBouy = lifeBouy; \ No newline at end of file diff --git a/dist/fa/lifeBuoy.js b/dist/fa/lifeBuoy.js new file mode 100644 index 000000000..fdbf5dff8 --- /dev/null +++ b/dist/fa/lifeBuoy.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.lifeBuoy = void 0; +var lifeBuoy = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M896 0q182 0 348 71t286 191 191 286 71 348-71 348-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71zM896 128q-190 0-361 90l194 194q82-28 167-28t167 28l194-194q-171-90-361-90zM218 1257l194-194q-28-82-28-167t28-167l-194-194q-90 171-90 361t90 361zM896 1664q190 0 361-90l-194-194q-82 28-167 28t-167-28l-194 194q171 90 361 90zM896 1280q159 0 271.5-112.5t112.5-271.5-112.5-271.5-271.5-112.5-271.5 112.5-112.5 271.5 112.5 271.5 271.5 112.5zM1380 1063l194 194q90-171 90-361t-90-361l-194 194q28 82 28 167t-28 167z" + } + }] +}; +exports.lifeBuoy = lifeBuoy; \ No newline at end of file diff --git a/dist/fa/lifeRing.js b/dist/fa/lifeRing.js new file mode 100644 index 000000000..3e322e76f --- /dev/null +++ b/dist/fa/lifeRing.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.lifeRing = void 0; +var lifeRing = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M896 0q182 0 348 71t286 191 191 286 71 348-71 348-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71zM896 128q-190 0-361 90l194 194q82-28 167-28t167 28l194-194q-171-90-361-90zM218 1257l194-194q-28-82-28-167t28-167l-194-194q-90 171-90 361t90 361zM896 1664q190 0 361-90l-194-194q-82 28-167 28t-167-28l-194 194q171 90 361 90zM896 1280q159 0 271.5-112.5t112.5-271.5-112.5-271.5-271.5-112.5-271.5 112.5-112.5 271.5 112.5 271.5 271.5 112.5zM1380 1063l194 194q90-171 90-361t-90-361l-194 194q28 82 28 167t-28 167z" + } + }] +}; +exports.lifeRing = lifeRing; \ No newline at end of file diff --git a/dist/fa/lifeSaver.js b/dist/fa/lifeSaver.js new file mode 100644 index 000000000..a64662c6e --- /dev/null +++ b/dist/fa/lifeSaver.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.lifeSaver = void 0; +var lifeSaver = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M896 0q182 0 348 71t286 191 191 286 71 348-71 348-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71zM896 128q-190 0-361 90l194 194q82-28 167-28t167 28l194-194q-171-90-361-90zM218 1257l194-194q-28-82-28-167t28-167l-194-194q-90 171-90 361t90 361zM896 1664q190 0 361-90l-194-194q-82 28-167 28t-167-28l-194 194q171 90 361 90zM896 1280q159 0 271.5-112.5t112.5-271.5-112.5-271.5-271.5-112.5-271.5 112.5-112.5 271.5 112.5 271.5 271.5 112.5zM1380 1063l194 194q90-171 90-361t-90-361l-194 194q28 82 28 167t-28 167z" + } + }] +}; +exports.lifeSaver = lifeSaver; \ No newline at end of file diff --git a/dist/fa/lightbulbO.js b/dist/fa/lightbulbO.js new file mode 100644 index 000000000..e07e3bd0d --- /dev/null +++ b/dist/fa/lightbulbO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.lightbulbO = void 0; +var lightbulbO = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M736 576q0 13-9.5 22.5t-22.5 9.5-22.5-9.5-9.5-22.5q0-46-54-71t-106-25q-13 0-22.5-9.5t-9.5-22.5 9.5-22.5 22.5-9.5q50 0 99.5 16t87 54 37.5 90zM896 576q0-72-34.5-134t-90-101.5-123-62-136.5-22.5-136.5 22.5-123 62-90 101.5-34.5 134q0 101 68 180 10 11 30.5 33t30.5 33q128 153 141 298h228q13-145 141-298 10-11 30.5-33t30.5-33q68-79 68-180zM1024 576q0 155-103 268-45 49-74.5 87t-59.5 95.5-34 107.5q47 28 47 82 0 37-25 64 25 27 25 64 0 52-45 81 13 23 13 47 0 46-31.5 71t-77.5 25q-20 44-60 70t-87 26-87-26-60-70q-46 0-77.5-25t-31.5-71q0-24 13-47-45-29-45-81 0-37 25-64-25-27-25-64 0-54 47-82-4-50-34-107.5t-59.5-95.5-74.5-87q-103-113-103-268 0-99 44.5-184.5t117-142 164-89 186.5-32.5 186.5 32.5 164 89 117 142 44.5 184.5z" + } + }] +}; +exports.lightbulbO = lightbulbO; \ No newline at end of file diff --git a/dist/fa/lineChart.js b/dist/fa/lineChart.js new file mode 100644 index 000000000..2bf6d8304 --- /dev/null +++ b/dist/fa/lineChart.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.lineChart = void 0; +var lineChart = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M2048 1536v128h-2048v-1536h128v1408h1920zM1920 288v435q0 21-19.5 29.5t-35.5-7.5l-121-121-633 633q-10 10-23 10t-23-10l-233-233-416 416-192-192 585-585q10-10 23-10t23 10l233 233 464-464-121-121q-16-16-7.5-35.5t29.5-19.5h435q14 0 23 9t9 23z" + } + }] +}; +exports.lineChart = lineChart; \ No newline at end of file diff --git a/dist/fa/link.js b/dist/fa/link.js new file mode 100644 index 000000000..f37379eb7 --- /dev/null +++ b/dist/fa/link.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.link = void 0; +var link = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1456 1216q0-40-28-68l-208-208q-28-28-68-28-42 0-72 32 3 3 19 18.5t21.5 21.5 15 19 13 25.5 3.5 27.5q0 40-28 68t-68 28q-15 0-27.5-3.5t-25.5-13-19-15-21.5-21.5-18.5-19q-33 31-33 73 0 40 28 68l206 207q27 27 68 27 40 0 68-26l147-146q28-28 28-67zM753 511q0-40-28-68l-206-207q-28-28-68-28-39 0-68 27l-147 146q-28 28-28 67 0 40 28 68l208 208q27 27 68 27 42 0 72-31-3-3-19-18.5t-21.5-21.5-15-19-13-25.5-3.5-27.5q0-40 28-68t68-28q15 0 27.5 3.5t25.5 13 19 15 21.5 21.5 18.5 19q33-31 33-73zM1648 1216q0 120-85 203l-147 146q-83 83-203 83-121 0-204-85l-206-207q-83-83-83-203 0-123 88-209l-88-88q-86 88-208 88-120 0-204-84l-208-208q-84-84-84-204t85-203l147-146q83-83 203-83 121 0 204 85l206 207q83 83 83 203 0 123-88 209l88 88q86-88 208-88 120 0 204 84l208 208q84 84 84 204z" + } + }] +}; +exports.link = link; \ No newline at end of file diff --git a/dist/fa/linkedin.js b/dist/fa/linkedin.js new file mode 100644 index 000000000..7df89d41c --- /dev/null +++ b/dist/fa/linkedin.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.linkedin = void 0; +var linkedin = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M349 625v991h-330v-991h330zM370 319q1 73-50.5 122t-135.5 49h-2q-82 0-132-49t-50-122q0-74 51.5-122.5t134.5-48.5 133 48.5 51 122.5zM1536 1048v568h-329v-530q0-105-40.5-164.5t-126.5-59.5q-63 0-105.5 34.5t-63.5 85.5q-11 30-11 81v553h-329q2-399 2-647t-1-296l-1-48h329v144h-2q20-32 41-56t56.5-52 87-43.5 114.5-15.5q171 0 275 113.5t104 332.5z" + } + }] +}; +exports.linkedin = linkedin; \ No newline at end of file diff --git a/dist/fa/linkedinSquare.js b/dist/fa/linkedinSquare.js new file mode 100644 index 000000000..5c0126f7e --- /dev/null +++ b/dist/fa/linkedinSquare.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.linkedinSquare = void 0; +var linkedinSquare = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M237 1414h231v-694h-231v694zM483 506q-1-52-36-86t-93-34-94.5 34-36.5 86q0 51 35.5 85.5t92.5 34.5h1q59 0 95-34.5t36-85.5zM1068 1414h231v-398q0-154-73-233t-193-79q-136 0-209 117h2v-101h-231q3 66 0 694h231v-388q0-38 7-56 15-35 45-59.5t74-24.5q116 0 116 157v371zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.linkedinSquare = linkedinSquare; \ No newline at end of file diff --git a/dist/fa/linode.js b/dist/fa/linode.js new file mode 100644 index 000000000..590cbe3dc --- /dev/null +++ b/dist/fa/linode.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.linode = void 0; +var linode = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M330 1535l202 214-34-236-216-213zM556 1761l274-218-11-245-300 215zM245 1123l227 213-48-327-245-204zM495 1347l317-214-14-324-352 200zM843 1358l95 80-2-239-103-79q0 1 1 8.5t0 12-5 7.5l-78 52 85 70q7 6 7 88zM138 606l256 200-68-465-279-173zM1173 1269l15-234-230 164 2 240zM417 814l373-194-19-441-423 163zM1270 1179l20-233-226-142-2 105 144 95q6 4 4 9l-7 119zM1461 1040l30-222-179 128-20 228zM1273 1207l-71-49-8 117q0 5-4 8l-234 187q-7 5-14 0l-98-83 7 161q0 5-4 8l-293 234q-4 2-6 2-8-2-8-3l-228-242q-4-4-59-277-2-7 5-11l61-37q-94-86-95-92l-72-351q-2-7 6-12l94-45q-133-100-135-108l-96-466q-2-10 7-13l433-135q5 0 8 1l317 153q6 4 6 9l20 463q0 7-6 10l-118 61 126 85q5 2 5 8l5 123 121-74q5-4 11 0l84 56 3-110q0-6 5-9l206-126q6-3 11 0l245 135q4 4 5 7t-6.5 60-17.5 124.5-10 70.5q0 5-4 7l-191 153q-6 5-13 0z" + } + }] +}; +exports.linode = linode; \ No newline at end of file diff --git a/dist/fa/linux.js b/dist/fa/linux.js new file mode 100644 index 000000000..114fb1938 --- /dev/null +++ b/dist/fa/linux.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.linux = void 0; +var linux = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M663 411q-11 1-15.5 10.5t-8.5 9.5q-5 1-5-5 0-12 19-15h10zM750 425q-4 1-11.5-6.5t-17.5-4.5q24-11 32 2 3 6-3 9zM399 852q-4-1-6 3t-4.5 12.5-5.5 13.5-10 13q-10 11-1 12 4 1 12.5-7t12.5-18q1-3 2-7t2-6 1.5-4.5 0.5-4v-3t-1-2.5-3-2zM1254 1211q0-18-55-42 4-15 7.5-27.5t5-26 3-21.5 0.5-22.5-1-19.5-3.5-22-4-20.5-5-25-5.5-26.5q-10-48-47-103t-72-75q24 20 57 83 87 162 54 278-11 40-50 42-31 4-38.5-18.5t-8-83.5-11.5-107q-9-39-19.5-69t-19.5-45.5-15.5-24.5-13-15-7.5-7q-14-62-31-103t-29.5-56-23.5-33-15-40q-4-21 6-53.5t4.5-49.5-44.5-25q-15-3-44.5-18t-35.5-16q-8-1-11-26t8-51 36-27q37-3 51 30t4 58q-11 19-2 26.5t30 0.5q13-4 13-36v-37q-5-30-13.5-50t-21-30.5-23.5-15-27-7.5q-107 8-89 134 0 15-1 15-9-9-29.5-10.5t-33 0.5-15.5-5q1-57-16-90t-45-34q-27-1-41.5 27.5t-16.5 59.5q-1 15 3.5 37t13 37.5 15.5 13.5q10-3 16-14 4-9-7-8-7 0-15.5-14.5t-9.5-33.5q-1-22 9-37t34-14q17 0 27 21t9.5 39-1.5 22q-22 15-31 29-8 12-27.5 23.5t-20.5 12.5q-13 14-15.5 27t7.5 18q14 8 25 19.5t16 19 18.5 13 35.5 6.5q47 2 102-15 2-1 23-7t34.5-10.5 29.5-13 21-17.5q9-14 20-8 5 3 6.5 8.5t-3 12-16.5 9.5q-20 6-56.5 21.5t-45.5 19.5q-44 19-70 23-25 5-79-2-10-2-9 2t17 19q25 23 67 22 17-1 36-7t36-14 33.5-17.5 30-17 24.5-12 17.5-2.5 8.5 11q0 2-1 4.5t-4 5-6 4.5-8.5 5-9 4.5-10 5-9.5 4.5q-28 14-67.5 44t-66.5 43-49 1q-21-11-63-73-22-31-25-22-1 3-1 10 0 25-15 56.5t-29.5 55.5-21 58 11.5 63q-23 6-62.5 90t-47.5 141q-2 18-1.5 69t-5.5 59q-8 24-29 3-32-31-36-94-2-28 4-56 4-19-1-18-2 1-4 5-36 65 10 166 5 12 25 28t24 20q20 23 104 90.5t93 76.5q16 15 17.5 38t-14 43-45.5 23q8 15 29 44.5t28 54 7 70.5q46-24 7-92-4-8-10.5-16t-9.5-12-2-6q3-5 13-9.5t20 2.5q46 52 166 36 133-15 177-87 23-38 34-30 12 6 10 52-1 25-23 92-9 23-6 37.5t24 15.5q3-19 14.5-77t13.5-90q2-21-6.5-73.5t-7.5-97 23-70.5q15-18 51-18 1-37 34.5-53t72.5-10.5 60 22.5zM626 384q3-17-2.5-30t-11.5-15q-9-2-9 7 2 5 5 6 10 0 7 15-3 20 8 20 3 0 3-3zM1045 581q-2-8-6.5-11.5t-13-5-14.5-5.5q-5-3-9.5-8t-7-8-5.5-6.5-4-4-4 1.5q-14 16 7 43.5t39 31.5q9 1 14.5-8t3.5-20zM867 368q0-11-5-19.5t-11-12.5-9-3q-6 0-8 2t0 4 5 3q14 4 18 31 0 3 8-2 2-2 2-3zM921 135q0-2-2.5-5t-9-7-9.5-6q-15-15-24-15-9 1-11.5 7.5t-1 13-0.5 12.5q-1 4-6 10.5t-6 9 3 8.5q4 3 8 0t11-9 15-9q1-1 9-1t15-2 9-7zM1486 1476q20 12 31 24.5t12 24-2.5 22.5-15.5 22-23.5 19.5-30 18.5-31.5 16.5-32 15.5-27 13q-38 19-85.5 56t-75.5 64q-17 16-68 19.5t-89-14.5q-18-9-29.5-23.5t-16.5-25.5-22-19.5-47-9.5q-44-1-130-1-19 0-57 1.5t-58 2.5q-44 1-79.5 15t-53.5 30-43.5 28.5-53.5 11.5q-29-1-111-31t-146-43q-19-4-51-9.5t-50-9-39.5-9.5-33.5-14.5-17-19.5q-10-23 7-66.5t18-54.5q1-16-4-40t-10-42.5-4.5-36.5 10.5-27q14-12 57-14t60-12q30-18 42-35t12-51q21 73-32 106-32 20-83 15-34-3-43 10-13 15 5 57 2 6 8 18t8.5 18 4.5 17 1 22q0 15-17 49t-14 48q3 17 37 26 20 6 84.5 18.5t99.5 20.5q24 6 74 22t82.5 23 55.5 4q43-6 64.5-28t23-48-7.5-58.5-19-52-20-36.5q-121-190-169-242-68-74-113-40-11 9-15-15-3-16-2-38 1-29 10-52t24-47 22-42q8-21 26.5-72t29.5-78 30-61 39-54q110-143 124-195-12-112-16-310-2-90 24-151.5t106-104.5q39-21 104-21 53-1 106 13.5t89 41.5q57 42 91.5 121.5t29.5 147.5q-5 95 30 214 34 113 133 218 55 59 99.5 163t59.5 191q8 49 5 84.5t-12 55.5-20 22q-10 2-23.5 19t-27 35.5-40.5 33.5-61 14q-18-1-31.5-5t-22.5-13.5-13.5-15.5-11.5-20.5-9-19.5q-22-37-41-30t-28 49 7 97q20 70 1 195-10 65 18 100.5t73 33 85-35.5q59-49 89.5-66.5t103.5-42.5q53-18 77-36.5t18.5-34.5-25-28.5-51.5-23.5q-33-11-49.5-48t-15-72.5 15.5-47.5q1 31 8 56.5t14.5 40.5 20.5 28.5 21 19 21.5 13 16.5 9.5z" + } + }] +}; +exports.linux = linux; \ No newline at end of file diff --git a/dist/fa/list.js b/dist/fa/list.js new file mode 100644 index 000000000..67e8140ee --- /dev/null +++ b/dist/fa/list.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.list = void 0; +var list = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M256 1312v192q0 13-9.5 22.5t-22.5 9.5h-192q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h192q13 0 22.5 9.5t9.5 22.5zM256 928v192q0 13-9.5 22.5t-22.5 9.5h-192q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h192q13 0 22.5 9.5t9.5 22.5zM256 544v192q0 13-9.5 22.5t-22.5 9.5h-192q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h192q13 0 22.5 9.5t9.5 22.5zM1792 1312v192q0 13-9.5 22.5t-22.5 9.5h-1344q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1344q13 0 22.5 9.5t9.5 22.5zM256 160v192q0 13-9.5 22.5t-22.5 9.5h-192q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h192q13 0 22.5 9.5t9.5 22.5zM1792 928v192q0 13-9.5 22.5t-22.5 9.5h-1344q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1344q13 0 22.5 9.5t9.5 22.5zM1792 544v192q0 13-9.5 22.5t-22.5 9.5h-1344q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1344q13 0 22.5 9.5t9.5 22.5zM1792 160v192q0 13-9.5 22.5t-22.5 9.5h-1344q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1344q13 0 22.5 9.5t9.5 22.5z" + } + }] +}; +exports.list = list; \ No newline at end of file diff --git a/dist/fa/listAlt.js b/dist/fa/listAlt.js new file mode 100644 index 000000000..3e9a960d2 --- /dev/null +++ b/dist/fa/listAlt.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.listAlt = void 0; +var listAlt = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M384 1184v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM384 928v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM384 672v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM1536 1184v64q0 13-9.5 22.5t-22.5 9.5h-960q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h960q13 0 22.5 9.5t9.5 22.5zM1536 928v64q0 13-9.5 22.5t-22.5 9.5h-960q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h960q13 0 22.5 9.5t9.5 22.5zM1536 672v64q0 13-9.5 22.5t-22.5 9.5h-960q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h960q13 0 22.5 9.5t9.5 22.5zM1664 1376v-832q0-13-9.5-22.5t-22.5-9.5h-1472q-13 0-22.5 9.5t-9.5 22.5v832q0 13 9.5 22.5t22.5 9.5h1472q13 0 22.5-9.5t9.5-22.5zM1792 288v1088q0 66-47 113t-113 47h-1472q-66 0-113-47t-47-113v-1088q0-66 47-113t113-47h1472q66 0 113 47t47 113z" + } + }] +}; +exports.listAlt = listAlt; \ No newline at end of file diff --git a/dist/fa/listOl.js b/dist/fa/listOl.js new file mode 100644 index 000000000..ee4e16b06 --- /dev/null +++ b/dist/fa/listOl.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.listOl = void 0; +var listOl = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M381 1620q0 80-54.5 126t-135.5 46q-106 0-172-66l57-88q49 45 106 45 29 0 50.5-14.5t21.5-42.5q0-64-105-56l-26-56q8-10 32.5-43.5t42.5-54 37-38.5v-1q-16 0-48.5 1t-48.5 1v53h-106v-152h333v88l-95 115q51 12 81 49t30 88zM383 993v159h-362q-6-36-6-54 0-51 23.5-93t56.5-68 66-47.5 56.5-43.5 23.5-45q0-25-14.5-38.5t-39.5-13.5q-46 0-81 58l-85-59q24-51 71.5-79.5t105.5-28.5q73 0 123 41.5t50 112.5q0 50-34 91.5t-75 64.5-75.5 50.5-35.5 52.5h127v-60h105zM1792 1312v192q0 13-9.5 22.5t-22.5 9.5h-1216q-13 0-22.5-9.5t-9.5-22.5v-192q0-14 9-23t23-9h1216q13 0 22.5 9.5t9.5 22.5zM384 413v99h-335v-99h107q0-41 0.5-121.5t0.5-121.5v-12h-2q-8 17-50 54l-71-76 136-127h106v404h108zM1792 800v192q0 13-9.5 22.5t-22.5 9.5h-1216q-13 0-22.5-9.5t-9.5-22.5v-192q0-14 9-23t23-9h1216q13 0 22.5 9.5t9.5 22.5zM1792 288v192q0 13-9.5 22.5t-22.5 9.5h-1216q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1216q13 0 22.5 9.5t9.5 22.5z" + } + }] +}; +exports.listOl = listOl; \ No newline at end of file diff --git a/dist/fa/listUl.js b/dist/fa/listUl.js new file mode 100644 index 000000000..b8089210a --- /dev/null +++ b/dist/fa/listUl.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.listUl = void 0; +var listUl = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M384 1408q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM384 896q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM1792 1312v192q0 13-9.5 22.5t-22.5 9.5h-1216q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1216q13 0 22.5 9.5t9.5 22.5zM384 384q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM1792 800v192q0 13-9.5 22.5t-22.5 9.5h-1216q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1216q13 0 22.5 9.5t9.5 22.5zM1792 288v192q0 13-9.5 22.5t-22.5 9.5h-1216q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1216q13 0 22.5 9.5t9.5 22.5z" + } + }] +}; +exports.listUl = listUl; \ No newline at end of file diff --git a/dist/fa/locationArrow.js b/dist/fa/locationArrow.js new file mode 100644 index 000000000..de2321c6a --- /dev/null +++ b/dist/fa/locationArrow.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.locationArrow = void 0; +var locationArrow = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1401 349l-640 1280q-17 35-57 35-5 0-15-2-22-5-35.5-22.5t-13.5-39.5v-576h-576q-22 0-39.5-13.5t-22.5-35.5 4-42 29-30l1280-640q13-7 29-7 27 0 45 19 15 14 18.5 34.5t-6.5 39.5z" + } + }] +}; +exports.locationArrow = locationArrow; \ No newline at end of file diff --git a/dist/fa/lock.js b/dist/fa/lock.js new file mode 100644 index 000000000..df2afc531 --- /dev/null +++ b/dist/fa/lock.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.lock = void 0; +var lock = { + "viewBox": "0 0 1152 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M320 768h512v-192q0-106-75-181t-181-75-181 75-75 181v192zM1152 864v576q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-576q0-40 28-68t68-28h32v-192q0-184 132-316t316-132 316 132 132 316v192h32q40 0 68 28t28 68z" + } + }] +}; +exports.lock = lock; \ No newline at end of file diff --git a/dist/fa/longArrowDown.js b/dist/fa/longArrowDown.js new file mode 100644 index 000000000..881b9081e --- /dev/null +++ b/dist/fa/longArrowDown.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.longArrowDown = void 0; +var longArrowDown = { + "viewBox": "0 0 768 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M765 1299q8 19-5 35l-350 384q-10 10-23 10-14 0-24-10l-355-384q-13-16-5-35 9-19 29-19h224v-1248q0-14 9-23t23-9h192q14 0 23 9t9 23v1248h224q21 0 29 19z" + } + }] +}; +exports.longArrowDown = longArrowDown; \ No newline at end of file diff --git a/dist/fa/longArrowLeft.js b/dist/fa/longArrowLeft.js new file mode 100644 index 000000000..cd4dc8c03 --- /dev/null +++ b/dist/fa/longArrowLeft.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.longArrowLeft = void 0; +var longArrowLeft = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1792 800v192q0 14-9 23t-23 9h-1248v224q0 21-19 29t-35-5l-384-350q-10-10-10-23 0-14 10-24l384-354q16-14 35-6 19 9 19 29v224h1248q14 0 23 9t9 23z" + } + }] +}; +exports.longArrowLeft = longArrowLeft; \ No newline at end of file diff --git a/dist/fa/longArrowRight.js b/dist/fa/longArrowRight.js new file mode 100644 index 000000000..3dc13dfb5 --- /dev/null +++ b/dist/fa/longArrowRight.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.longArrowRight = void 0; +var longArrowRight = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1728 893q0 14-10 24l-384 354q-16 14-35 6-19-9-19-29v-224h-1248q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h1248v-224q0-21 19-29t35 5l384 350q10 10 10 23z" + } + }] +}; +exports.longArrowRight = longArrowRight; \ No newline at end of file diff --git a/dist/fa/longArrowUp.js b/dist/fa/longArrowUp.js new file mode 100644 index 000000000..adbaacfc1 --- /dev/null +++ b/dist/fa/longArrowUp.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.longArrowUp = void 0; +var longArrowUp = { + "viewBox": "0 0 768 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M765 493q-9 19-29 19h-224v1248q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-1248h-224q-21 0-29-19t5-35l350-384q10-10 23-10 14 0 24 10l355 384q13 16 5 35z" + } + }] +}; +exports.longArrowUp = longArrowUp; \ No newline at end of file diff --git a/dist/fa/lowVision.js b/dist/fa/lowVision.js new file mode 100644 index 000000000..60ee8f1da --- /dev/null +++ b/dist/fa/lowVision.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.lowVision = void 0; +var lowVision = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M335 1356q-2 0-6-2-86-57-168.5-145t-139.5-180q-21-30-21-69 0-9 2-19t4-18 7-18 8.5-16 10.5-17 10-15 12-15.5 11-14.5q184-251 452-365-110-198-110-211 0-19 17-29 116-64 128-64 18 0 28 16l124 229q92-19 192-19 266 0 497.5 137.5t378.5 369.5q20 31 20 69t-20 69q-91 142-218.5 253.5t-278.5 175.5q110 198 110 211 0 20-17 29-116 64-127 64-19 0-29-16l-124-229-64-119-444-820 7-7q-58 24-99 47 3 5 127 234t243 449 119 223q0 7-9 9-13 3-72 3-57 0-60-7l-456-841q-39 28-82 68 24 43 214 393.5t190 354.5q0 10-11 10-14 0-82.5-22t-72.5-28l-106-197-224-413q-44 53-78 106 2 3 18 25t23 34l176 327q0 10-10 10zM1165 1254l49 91q273-111 450-385-180-277-459-389 67 64 103 148.5t36 176.5q0 106-47 200.5t-132 157.5zM848 640q0 20 14 34t34 14q86 0 147 61t61 147q0 20 14 34t34 14 34-14 14-34q0-126-89-215t-215-89q-20 0-34 14t-14 34zM1214 575l-9-4 7 7z" + } + }] +}; +exports.lowVision = lowVision; \ No newline at end of file diff --git a/dist/fa/magic.js b/dist/fa/magic.js new file mode 100644 index 000000000..f22d1f352 --- /dev/null +++ b/dist/fa/magic.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.magic = void 0; +var magic = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1190 581l293-293-107-107-293 293zM1637 288q0 27-18 45l-1286 1286q-18 18-45 18t-45-18l-198-198q-18-18-18-45t18-45l1286-1286q18-18 45-18t45 18l198 198q18 18 18 45zM286 98l98 30-98 30-30 98-30-98-98-30 98-30 30-98zM636 260l196 60-196 60-60 196-60-196-196-60 196-60 60-196zM1566 738l98 30-98 30-30 98-30-98-98-30 98-30 30-98zM926 98l98 30-98 30-30 98-30-98-98-30 98-30 30-98z" + } + }] +}; +exports.magic = magic; \ No newline at end of file diff --git a/dist/fa/magnet.js b/dist/fa/magnet.js new file mode 100644 index 000000000..ed809ea17 --- /dev/null +++ b/dist/fa/magnet.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.magnet = void 0; +var magnet = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1536 832v128q0 201-98.5 362t-274 251.5-395.5 90.5-395.5-90.5-274-251.5-98.5-362v-128q0-26 19-45t45-19h384q26 0 45 19t19 45v128q0 52 23.5 90t53.5 57 71 30 64 13 44 2 44-2 64-13 71-30 53.5-57 23.5-90v-128q0-26 19-45t45-19h384q26 0 45 19t19 45zM512 192v384q0 26-19 45t-45 19h-384q-26 0-45-19t-19-45v-384q0-26 19-45t45-19h384q26 0 45 19t19 45zM1536 192v384q0 26-19 45t-45 19h-384q-26 0-45-19t-19-45v-384q0-26 19-45t45-19h384q26 0 45 19t19 45z" + } + }] +}; +exports.magnet = magnet; \ No newline at end of file diff --git a/dist/fa/mailForward.js b/dist/fa/mailForward.js new file mode 100644 index 000000000..3e52bdb1e --- /dev/null +++ b/dist/fa/mailForward.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.mailForward = void 0; +var mailForward = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1792 640q0 26-19 45l-512 512q-19 19-45 19t-45-19-19-45v-256h-224q-98 0-175.5 6t-154 21.5-133 42.5-105.5 69.5-80 101-48.5 138.5-17.5 181q0 55 5 123 0 6 2.5 23.5t2.5 26.5q0 15-8.5 25t-23.5 10q-16 0-28-17-7-9-13-22t-13.5-30-10.5-24q-127-285-127-451 0-199 53-333 162-403 875-403h224v-256q0-26 19-45t45-19 45 19l512 512q19 19 19 45z" + } + }] +}; +exports.mailForward = mailForward; \ No newline at end of file diff --git a/dist/fa/mailReply.js b/dist/fa/mailReply.js new file mode 100644 index 000000000..183ef4eea --- /dev/null +++ b/dist/fa/mailReply.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.mailReply = void 0; +var mailReply = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1792 1120q0 166-127 451-3 7-10.5 24t-13.5 30-13 22q-12 17-28 17-15 0-23.5-10t-8.5-25q0-9 2.5-26.5t2.5-23.5q5-68 5-123 0-101-17.5-181t-48.5-138.5-80-101-105.5-69.5-133-42.5-154-21.5-175.5-6h-224v256q0 26-19 45t-45 19-45-19l-512-512q-19-19-19-45t19-45l512-512q19-19 45-19t45 19 19 45v256h224q713 0 875 403 53 134 53 333z" + } + }] +}; +exports.mailReply = mailReply; \ No newline at end of file diff --git a/dist/fa/mailReplyAll.js b/dist/fa/mailReplyAll.js new file mode 100644 index 000000000..828e62cb3 --- /dev/null +++ b/dist/fa/mailReplyAll.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.mailReplyAll = void 0; +var mailReplyAll = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 1082v70q0 42-39 59-13 5-25 5-27 0-45-19l-512-512q-19-19-19-45t19-45l512-512q29-31 70-14 39 17 39 59v69l-397 398q-19 19-19 45t19 45zM1792 1120q0 58-17 133.5t-38.5 138-48 125-40.5 90.5l-20 40q-8 17-28 17-6 0-9-1-25-8-23-34 43-400-106-565-64-71-170.5-110.5t-267.5-52.5v251q0 42-39 59-13 5-25 5-27 0-45-19l-512-512q-19-19-19-45t19-45l512-512q29-31 70-14 39 17 39 59v262q411 28 599 221 169 173 169 509z" + } + }] +}; +exports.mailReplyAll = mailReplyAll; \ No newline at end of file diff --git a/dist/fa/male.js b/dist/fa/male.js new file mode 100644 index 000000000..bf906ce0f --- /dev/null +++ b/dist/fa/male.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.male = void 0; +var male = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 704v416q0 40-28 68t-68 28-68-28-28-68v-352h-64v912q0 46-33 79t-79 33-79-33-33-79v-464h-64v464q0 46-33 79t-79 33-79-33-33-79v-912h-64v352q0 40-28 68t-68 28-68-28-28-68v-416q0-80 56-136t136-56h640q80 0 136 56t56 136zM736 256q0 93-65.5 158.5t-158.5 65.5-158.5-65.5-65.5-158.5 65.5-158.5 158.5-65.5 158.5 65.5 65.5 158.5z" + } + }] +}; +exports.male = male; \ No newline at end of file diff --git a/dist/fa/map.js b/dist/fa/map.js new file mode 100644 index 000000000..fed403d6c --- /dev/null +++ b/dist/fa/map.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.map = void 0; +var map = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M512 0q13 0 22.5 9.5t9.5 22.5v1472q0 20-17 28l-480 256q-7 4-15 4-13 0-22.5-9.5t-9.5-22.5v-1472q0-20 17-28l480-256q7-4 15-4zM1760 0q13 0 22.5 9.5t9.5 22.5v1472q0 20-17 28l-480 256q-7 4-15 4-13 0-22.5-9.5t-9.5-22.5v-1472q0-20 17-28l480-256q7-4 15-4zM640 0q8 0 14 3l512 256q18 10 18 29v1472q0 13-9.5 22.5t-22.5 9.5q-8 0-14-3l-512-256q-18-10-18-29v-1472q0-13 9.5-22.5t22.5-9.5z" + } + }] +}; +exports.map = map; \ No newline at end of file diff --git a/dist/fa/mapMarker.js b/dist/fa/mapMarker.js new file mode 100644 index 000000000..a950843ef --- /dev/null +++ b/dist/fa/mapMarker.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.mapMarker = void 0; +var mapMarker = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M768 640q0-106-75-181t-181-75-181 75-75 181 75 181 181 75 181-75 75-181zM1024 640q0 109-33 179l-364 774q-16 33-47.5 52t-67.5 19-67.5-19-46.5-52l-365-774q-33-70-33-179 0-212 150-362t362-150 362 150 150 362z" + } + }] +}; +exports.mapMarker = mapMarker; \ No newline at end of file diff --git a/dist/fa/mapO.js b/dist/fa/mapO.js new file mode 100644 index 000000000..674dfd07a --- /dev/null +++ b/dist/fa/mapO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.mapO = void 0; +var mapO = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M2020 11q28 20 28 53v1408q0 20-11 36t-29 23l-640 256q-24 11-48 0l-616-246-616 246q-10 5-24 5-19 0-36-11-28-20-28-53v-1408q0-20 11-36t29-23l640-256q24-11 48 0l616 246 616-246q32-13 60 6zM736 146v1270l576 230v-1270zM128 363v1270l544-217v-1270zM1920 1429v-1270l-544 217v1270z" + } + }] +}; +exports.mapO = mapO; \ No newline at end of file diff --git a/dist/fa/mapPin.js b/dist/fa/mapPin.js new file mode 100644 index 000000000..7a474f3f3 --- /dev/null +++ b/dist/fa/mapPin.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.mapPin = void 0; +var mapPin = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M512 1088q66 0 128-15v655q0 26-19 45t-45 19h-128q-26 0-45-19t-19-45v-655q62 15 128 15zM512 0q212 0 362 150t150 362-150 362-362 150-362-150-150-362 150-362 362-150zM512 224q14 0 23-9t9-23-9-23-23-9q-146 0-249 103t-103 249q0 14 9 23t23 9 23-9 9-23q0-119 84.5-203.5t203.5-84.5z" + } + }] +}; +exports.mapPin = mapPin; \ No newline at end of file diff --git a/dist/fa/mapSigns.js b/dist/fa/mapSigns.js new file mode 100644 index 000000000..e41e4ad19 --- /dev/null +++ b/dist/fa/mapSigns.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.mapSigns = void 0; +var mapSigns = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1745 297q10 10 10 23t-10 23l-141 141q-28 28-68 28h-1344q-26 0-45-19t-19-45v-256q0-26 19-45t45-19h576v-64q0-26 19-45t45-19h128q26 0 45 19t19 45v64h512q40 0 68 28zM768 1216h256v512q0 26-19 45t-45 19h-128q-26 0-45-19t-19-45v-512zM1600 768q26 0 45 19t19 45v256q0 26-19 45t-45 19h-1344q-40 0-68-28l-141-141q-10-10-10-23t10-23l141-141q28-28 68-28h512v-192h256v192h576z" + } + }] +}; +exports.mapSigns = mapSigns; \ No newline at end of file diff --git a/dist/fa/mars.js b/dist/fa/mars.js new file mode 100644 index 000000000..fcaa829b5 --- /dev/null +++ b/dist/fa/mars.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.mars = void 0; +var mars = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1472 128q26 0 45 19t19 45v416q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-262l-382 383q126 156 126 359 0 117-45.5 223.5t-123 184-184 123-223.5 45.5-223.5-45.5-184-123-123-184-45.5-223.5 45.5-223.5 123-184 184-123 223.5-45.5q203 0 359 126l382-382h-261q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h416zM576 1536q185 0 316.5-131.5t131.5-316.5-131.5-316.5-316.5-131.5-316.5 131.5-131.5 316.5 131.5 316.5 316.5 131.5z" + } + }] +}; +exports.mars = mars; \ No newline at end of file diff --git a/dist/fa/marsDouble.js b/dist/fa/marsDouble.js new file mode 100644 index 000000000..8086155ab --- /dev/null +++ b/dist/fa/marsDouble.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.marsDouble = void 0; +var marsDouble = { + "viewBox": "0 0 1920 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1536 416q0-14 9-23t23-9h288q26 0 45 19t19 45v288q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-134l-254 255q76 95 107.5 214t9.5 247q-31 182-166 312t-318 156q-210 29-384.5-80t-241.5-300q-117-6-221-57.5t-177.5-133-113.5-192.5-32-230q9-135 78-252t182-191.5 248-89.5q118-14 227.5 19t198.5 103l255-254h-134q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h288q26 0 45 19t19 45v288q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-134l-254 255q59 74 93 169 182 9 328 124l255-254h-134q-14 0-23-9t-9-23v-64zM1024 832q0-20-4-58-162 25-271 150t-109 292q0 20 4 58 162-25 271-150t109-292zM128 832q0 168 111 294t276 149q-3-29-3-59 0-210 135-369.5t338-196.5q-53-120-163.5-193t-245.5-73q-185 0-316.5 131.5t-131.5 316.5zM1088 1664q185 0 316.5-131.5t131.5-316.5q0-168-111-294t-276-149q3 28 3 59 0 210-135 369.5t-338 196.5q53 120 163.5 193t245.5 73z" + } + }] +}; +exports.marsDouble = marsDouble; \ No newline at end of file diff --git a/dist/fa/marsStroke.js b/dist/fa/marsStroke.js new file mode 100644 index 000000000..2cdb5363a --- /dev/null +++ b/dist/fa/marsStroke.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.marsStroke = void 0; +var marsStroke = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1472 128q26 0 45 19t19 45v416q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-262l-213 214 140 140q9 10 9 23t-9 22l-46 46q-9 9-22 9t-23-9l-140-141-78 79q126 156 126 359 0 117-45.5 223.5t-123 184-184 123-223.5 45.5-223.5-45.5-184-123-123-184-45.5-223.5 45.5-223.5 123-184 184-123 223.5-45.5q203 0 359 126l78-78-172-172q-9-10-9-23t9-22l46-46q9-9 22-9t23 9l172 172 213-213h-261q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h416zM576 1536q185 0 316.5-131.5t131.5-316.5-131.5-316.5-316.5-131.5-316.5 131.5-131.5 316.5 131.5 316.5 316.5 131.5z" + } + }] +}; +exports.marsStroke = marsStroke; \ No newline at end of file diff --git a/dist/fa/marsStrokeH.js b/dist/fa/marsStrokeH.js new file mode 100644 index 000000000..c456bf985 --- /dev/null +++ b/dist/fa/marsStrokeH.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.marsStrokeH = void 0; +var marsStrokeH = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1901 915q19 19 19 45t-19 45l-294 294q-9 10-22.5 10t-22.5-10l-45-45q-10-9-10-22.5t10-22.5l185-185h-294v224q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-224h-132q-24 217-187.5 364.5t-384.5 147.5q-167 0-306-87t-212-236-54-319q15-133 88-245.5t188-182 249-80.5q155-12 292 52.5t224 186 103 271.5h132v-224q0-14 9-23t23-9h64q14 0 23 9t9 23v224h294l-185-185q-10-9-10-22.5t10-22.5l45-45q9-10 22.5-10t22.5 10zM576 1408q185 0 316.5-131.5t131.5-316.5-131.5-316.5-316.5-131.5-316.5 131.5-131.5 316.5 131.5 316.5 316.5 131.5z" + } + }] +}; +exports.marsStrokeH = marsStrokeH; \ No newline at end of file diff --git a/dist/fa/marsStrokeV.js b/dist/fa/marsStrokeV.js new file mode 100644 index 000000000..eaeac544c --- /dev/null +++ b/dist/fa/marsStrokeV.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.marsStrokeV = void 0; +var marsStrokeV = { + "viewBox": "0 0 1280 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 644q217 24 364.5 187.5t147.5 384.5q0 167-87 306t-236 212-319 54q-133-15-245.5-88t-182-188-80.5-249q-12-155 52.5-292t186-224 271.5-103v-132h-160q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h160v-165l-92 92q-10 9-23 9t-22-9l-46-46q-9-9-9-22t9-23l202-201q19-19 45-19t45 19l202 201q9 10 9 23t-9 22l-46 46q-9 9-22 9t-23-9l-92-92v165h160q14 0 23 9t9 23v64q0 14-9 23t-23 9h-160v132zM576 1664q185 0 316.5-131.5t131.5-316.5-131.5-316.5-316.5-131.5-316.5 131.5-131.5 316.5 131.5 316.5 316.5 131.5z" + } + }] +}; +exports.marsStrokeV = marsStrokeV; \ No newline at end of file diff --git a/dist/fa/maxcdn.js b/dist/fa/maxcdn.js new file mode 100644 index 000000000..aaa698012 --- /dev/null +++ b/dist/fa/maxcdn.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.maxcdn = void 0; +var maxcdn = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1745 773l-164 763h-334l178-832q13-56-15-88-27-33-83-33h-169l-204 953h-334l204-953h-286l-204 953h-334l204-953-153-327h1276q101 0 189.5 40.5t147.5 113.5q60 73 81 168.5t0 194.5z" + } + }] +}; +exports.maxcdn = maxcdn; \ No newline at end of file diff --git a/dist/fa/meanpath.js b/dist/fa/meanpath.js new file mode 100644 index 000000000..4b30477b7 --- /dev/null +++ b/dist/fa/meanpath.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.meanpath = void 0; +var meanpath = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1311 842v114q0 24-13.5 38t-37.5 14h-202q-24 0-38-14t-14-38v-114q0-24 14-38t38-14h202q24 0 37.5 14t13.5 38zM821 1072v-250q0-53-32.5-85.5t-85.5-32.5h-133q-68 0-96 52-28-52-96-52h-130q-53 0-85.5 32.5t-32.5 85.5v250q0 22 21 22h55q22 0 22-22v-230q0-24 13.5-38t38.5-14h94q24 0 38 14t14 38v230q0 22 21 22h54q22 0 22-22v-230q0-24 14-38t38-14h97q24 0 37.5 14t13.5 38v230q0 22 22 22h55q21 0 21-22zM1410 976v-154q0-53-33-85.5t-86-32.5h-264q-53 0-86 32.5t-33 85.5v410q0 21 22 21h55q21 0 21-21v-180q31 42 94 42h191q53 0 86-32.5t33-85.5zM1536 360v1072q0 96-68 164t-164 68h-1072q-96 0-164-68t-68-164v-1072q0-96 68-164t164-68h1072q96 0 164 68t68 164z" + } + }] +}; +exports.meanpath = meanpath; \ No newline at end of file diff --git a/dist/fa/medium.js b/dist/fa/medium.js new file mode 100644 index 000000000..975b40722 --- /dev/null +++ b/dist/fa/medium.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.medium = void 0; +var medium = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M597 421v1173q0 25-12.5 42.5t-36.5 17.5q-17 0-33-8l-465-233q-21-10-35.5-33.5t-14.5-46.5v-1140q0-20 10-34t29-14q14 0 44 15l511 256q3 3 3 5zM661 522l534 866-534-266v-600zM1792 540v1054q0 25-14 40.5t-38 15.5-47-13l-441-220zM1789 420q0 3-256.5 419.5t-300.5 487.5l-390-634 324-527q17-28 52-28 14 0 26 6l541 270q4 2 4 6z" + } + }] +}; +exports.medium = medium; \ No newline at end of file diff --git a/dist/fa/medkit.js b/dist/fa/medkit.js new file mode 100644 index 000000000..2134096ac --- /dev/null +++ b/dist/fa/medkit.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.medkit = void 0; +var medkit = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1280 1120v-192q0-14-9-23t-23-9h-224v-224q0-14-9-23t-23-9h-192q-14 0-23 9t-9 23v224h-224q-14 0-23 9t-9 23v192q0 14 9 23t23 9h224v224q0 14 9 23t23 9h192q14 0 23-9t9-23v-224h224q14 0 23-9t9-23zM640 384h512v-128h-512v128zM256 384v1280h-32q-92 0-158-66t-66-158v-832q0-92 66-158t158-66h32zM1440 384v1280h-1088v-1280h160v-160q0-40 28-68t68-28h576q40 0 68 28t28 68v160h160zM1792 608v832q0 92-66 158t-158 66h-32v-1280h32q92 0 158 66t66 158z" + } + }] +}; +exports.medkit = medkit; \ No newline at end of file diff --git a/dist/fa/meetup.js b/dist/fa/meetup.js new file mode 100644 index 000000000..41f89109a --- /dev/null +++ b/dist/fa/meetup.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.meetup = void 0; +var meetup = { + "viewBox": "0 0 1920 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1334 1234q-4-24-27.5-34t-49.5-10.5-48.5-12.5-25.5-38q-5-47 33-139.5t75-181 32-127.5q-14-101-117-103-45-1-75 16l-3 2-5 2.5t-4.5 2-5 2-5 0.5-6-1.5-6-3.5-6.5-5q-3-2-9-8.5t-9-9-8.5-7.5-9.5-7.5-9.5-5.5-11-4.5-11.5-2.5q-30-5-48 3t-45 31q-1 1-9 8.5t-12.5 11-15 10-16.5 5.5-17-3q-54-27-84-40-41-18-94 5t-76 65q-16 28-41 98.5t-43.5 132.5-40 134-21.5 73q-22 69 18.5 119t110.5 46q30-2 50.5-15t38.5-46q7-13 79-199.5t77-194.5q6-11 21.5-18t29.5 0q27 15 21 53-2 18-51 139.5t-50 132.5q-6 38 19.5 56.5t60.5 7 55-49.5q4-8 45.5-92t81.5-163.5 46-88.5q20-29 41-28 29 0 25 38-2 16-65.5 147.5t-70.5 159.5q-12 53 13 103t74 74q17 9 51 15.5t71.5 8 62.5-14 20-48.5zM383 1450q3 15-5 27.5t-23 15.5q-14 3-26.5-5t-15.5-23q-3-14 5-27t22-16 27 5 16 23zM953 1713q12 17 8.5 37.5t-20.5 32.5-37.5 8-32.5-21q-11-17-7.5-37.5t20.5-32.5 37.5-8 31.5 21zM177 901q-18 27-49.5 33t-57.5-13q-26-18-32-50t12-58q18-27 49.5-33t57.5 12q26 19 32 50.5t-12 58.5zM1467 1578q19 28 13 61.5t-34 52.5-60.5 13-51.5-34-13-61 33-53q28-19 60.5-13t52.5 34zM1579 974q69 113 42.5 244.5t-134.5 207.5q-90 63-199 60-20 80-84.5 127t-143.5 44.5-140-57.5q-12 9-13 10-103 71-225 48.5t-193-126.5q-50-73-53-164-83-14-142.5-70.5t-80.5-128-2-152 81-138.5q-36-60-38-128t24.5-125 79.5-98.5 121-50.5q32-85 99-148t146.5-91.5 168-17 159.5 66.5q72-21 140-17.5t128.5 36 104.5 80 67.5 115 17.5 140.5q52 16 87 57t45.5 89-5.5 99.5-58 87.5zM455 314q14 20 9.5 44.5t-24.5 38.5q-19 14-43.5 9.5t-37.5-24.5q-14-20-9.5-44.5t24.5-38.5q19-14 43.5-9.5t37.5 24.5zM614 33q4 16-5 30.5t-26 18.5-31-5.5-18-26.5q-3-17 6.5-31t25.5-18q17-4 31 5.5t17 26.5zM1800 981q4 20-6.5 37t-30.5 21q-19 4-36-6.5t-21-30.5 6.5-37 30.5-22q20-4 36.5 7.5t20.5 30.5zM1136 88q16 27 8.5 58.5t-35.5 47.5q-27 16-57.5 8.5t-46.5-34.5q-16-28-8.5-59t34.5-48 58-9 47 36zM1882 744q4 15-4 27.5t-23 16.5q-15 3-27.5-5.5t-15.5-22.5q-3-15 5-28t23-16q14-3 26.5 5t15.5 23zM1691 503q15 22 10.5 49t-26.5 43q-22 15-49 10t-42-27-10-49 27-43 48.5-11 41.5 28z" + } + }] +}; +exports.meetup = meetup; \ No newline at end of file diff --git a/dist/fa/mehO.js b/dist/fa/mehO.js new file mode 100644 index 000000000..ef48512f4 --- /dev/null +++ b/dist/fa/mehO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.mehO = void 0; +var mehO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1152 1088q0 26-19 45t-45 19h-640q-26 0-45-19t-19-45 19-45 45-19h640q26 0 45 19t19 45zM640 640q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5 90.5 37.5 37.5 90.5zM1152 640q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5 90.5 37.5 37.5 90.5zM1408 896q0-130-51-248.5t-136.5-204-204-136.5-248.5-51-248.5 51-204 136.5-136.5 204-51 248.5 51 248.5 136.5 204 204 136.5 248.5 51 248.5-51 204-136.5 136.5-204 51-248.5zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.mehO = mehO; \ No newline at end of file diff --git a/dist/fa/mercury.js b/dist/fa/mercury.js new file mode 100644 index 000000000..0e0e450f1 --- /dev/null +++ b/dist/fa/mercury.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.mercury = void 0; +var mercury = { + "viewBox": "0 0 1280 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M830 316q145 72 233.5 210.5t88.5 305.5q0 221-147.5 384.5t-364.5 187.5v132h96q14 0 23 9t9 23v64q0 14-9 23t-23 9h-96v96q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-96h-96q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h96v-132q-217-24-364.5-187.5t-147.5-384.5q0-167 88.5-305.5t233.5-210.5q-165-96-228-273-6-16 3.5-29.5t26.5-13.5h69q21 0 29 20 44 106 140 171t214 65 214-65 140-171q8-20 37-20h61q17 0 26.5 13.5t3.5 29.5q-63 177-228 273zM576 1280q185 0 316.5-131.5t131.5-316.5-131.5-316.5-316.5-131.5-316.5 131.5-131.5 316.5 131.5 316.5 316.5 131.5z" + } + }] +}; +exports.mercury = mercury; \ No newline at end of file diff --git a/dist/fa/microchip.js b/dist/fa/microchip.js new file mode 100644 index 000000000..05d087fc0 --- /dev/null +++ b/dist/fa/microchip.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.microchip = void 0; +var microchip = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M192 1280v128h-112q-16 0-16-16v-16h-48q-16 0-16-16v-32q0-16 16-16h48v-16q0-16 16-16h112zM192 1024v128h-112q-16 0-16-16v-16h-48q-16 0-16-16v-32q0-16 16-16h48v-16q0-16 16-16h112zM192 768v128h-112q-16 0-16-16v-16h-48q-16 0-16-16v-32q0-16 16-16h48v-16q0-16 16-16h112zM192 512v128h-112q-16 0-16-16v-16h-48q-16 0-16-16v-32q0-16 16-16h48v-16q0-16 16-16h112zM192 256v128h-112q-16 0-16-16v-16h-48q-16 0-16-16v-32q0-16 16-16h48v-16q0-16 16-16h112zM1280 96v1472q0 40-28 68t-68 28h-832q-40 0-68-28t-28-68v-1472q0-40 28-68t68-28h832q40 0 68 28t28 68zM1536 1328v32q0 16-16 16h-48v16q0 16-16 16h-112v-128h112q16 0 16 16v16h48q16 0 16 16zM1536 1072v32q0 16-16 16h-48v16q0 16-16 16h-112v-128h112q16 0 16 16v16h48q16 0 16 16zM1536 816v32q0 16-16 16h-48v16q0 16-16 16h-112v-128h112q16 0 16 16v16h48q16 0 16 16zM1536 560v32q0 16-16 16h-48v16q0 16-16 16h-112v-128h112q16 0 16 16v16h48q16 0 16 16zM1536 304v32q0 16-16 16h-48v16q0 16-16 16h-112v-128h112q16 0 16 16v16h48q16 0 16 16z" + } + }] +}; +exports.microchip = microchip; \ No newline at end of file diff --git a/dist/fa/microphone.js b/dist/fa/microphone.js new file mode 100644 index 000000000..547a9e8f3 --- /dev/null +++ b/dist/fa/microphone.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.microphone = void 0; +var microphone = { + "viewBox": "0 0 1152 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1152 704v128q0 221-147.5 384.5t-364.5 187.5v132h256q26 0 45 19t19 45-19 45-45 19h-640q-26 0-45-19t-19-45 19-45 45-19h256v-132q-217-24-364.5-187.5t-147.5-384.5v-128q0-26 19-45t45-19 45 19 19 45v128q0 185 131.5 316.5t316.5 131.5 316.5-131.5 131.5-316.5v-128q0-26 19-45t45-19 45 19 19 45zM896 320v512q0 132-94 226t-226 94-226-94-94-226v-512q0-132 94-226t226-94 226 94 94 226z" + } + }] +}; +exports.microphone = microphone; \ No newline at end of file diff --git a/dist/fa/microphoneSlash.js b/dist/fa/microphoneSlash.js new file mode 100644 index 000000000..34b2b4864 --- /dev/null +++ b/dist/fa/microphoneSlash.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.microphoneSlash = void 0; +var microphoneSlash = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M271 945l-101 101q-42-103-42-214v-128q0-26 19-45t45-19 45 19 19 45v128q0 53 15 113zM1385 343l-361 361v128q0 132-94 226t-226 94q-55 0-109-19l-96 96q97 51 205 51 185 0 316.5-131.5t131.5-316.5v-128q0-26 19-45t45-19 45 19 19 45v128q0 221-147.5 384.5t-364.5 187.5v132h256q26 0 45 19t19 45-19 45-45 19h-640q-26 0-45-19t-19-45 19-45 45-19h256v-132q-125-13-235-81l-254 254q-10 10-23 10t-23-10l-82-82q-10-10-10-23t10-23l1234-1234q10-10 23-10t23 10l82 82q10 10 10 23t-10 23zM1005 211l-621 621v-512q0-132 94-226t226-94q102 0 184.5 59t116.5 152z" + } + }] +}; +exports.microphoneSlash = microphoneSlash; \ No newline at end of file diff --git a/dist/fa/minus.js b/dist/fa/minus.js new file mode 100644 index 000000000..b80c09445 --- /dev/null +++ b/dist/fa/minus.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.minus = void 0; +var minus = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1408 736v192q0 40-28 68t-68 28h-1216q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h1216q40 0 68 28t28 68z" + } + }] +}; +exports.minus = minus; \ No newline at end of file diff --git a/dist/fa/minusCircle.js b/dist/fa/minusCircle.js new file mode 100644 index 000000000..9c00d927f --- /dev/null +++ b/dist/fa/minusCircle.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.minusCircle = void 0; +var minusCircle = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1216 960v-128q0-26-19-45t-45-19h-768q-26 0-45 19t-19 45v128q0 26 19 45t45 19h768q26 0 45-19t19-45zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.minusCircle = minusCircle; \ No newline at end of file diff --git a/dist/fa/minusSquare.js b/dist/fa/minusSquare.js new file mode 100644 index 000000000..474c47dad --- /dev/null +++ b/dist/fa/minusSquare.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.minusSquare = void 0; +var minusSquare = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1280 960v-128q0-26-19-45t-45-19h-896q-26 0-45 19t-19 45v128q0 26 19 45t45 19h896q26 0 45-19t19-45zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.minusSquare = minusSquare; \ No newline at end of file diff --git a/dist/fa/minusSquareO.js b/dist/fa/minusSquareO.js new file mode 100644 index 000000000..7169de898 --- /dev/null +++ b/dist/fa/minusSquareO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.minusSquareO = void 0; +var minusSquareO = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1152 800v64q0 14-9 23t-23 9h-832q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h832q14 0 23 9t9 23zM1280 1248v-832q0-66-47-113t-113-47h-832q-66 0-113 47t-47 113v832q0 66 47 113t113 47h832q66 0 113-47t47-113zM1408 416v832q0 119-84.5 203.5t-203.5 84.5h-832q-119 0-203.5-84.5t-84.5-203.5v-832q0-119 84.5-203.5t203.5-84.5h832q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.minusSquareO = minusSquareO; \ No newline at end of file diff --git a/dist/fa/mixcloud.js b/dist/fa/mixcloud.js new file mode 100644 index 000000000..8dbaf3d9c --- /dev/null +++ b/dist/fa/mixcloud.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.mixcloud = void 0; +var mixcloud = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1645 1098q0-59-34-106.5t-87-68.5q-7 45-23 92-7 24-27.5 38t-44.5 14q-12 0-24-3-31-10-45-38.5t-4-58.5q23-71 23-143 0-123-61-227.5t-166-165.5-228-61q-134 0-247 73t-167 194q108 28 188 106 22 23 22 55t-22 54-54 22-55-22q-75-75-180-75-106 0-181 74.5t-75 180.5 75 180.5 181 74.5h1046q79 0 134.5-55.5t55.5-133.5zM1798 1098q0 142-100.5 242t-242.5 100h-1046q-169 0-289-119.5t-120-288.5q0-153 100-267t249-136q62-184 221-298t354-114q235 0 408.5 158.5t196.5 389.5q116 25 192.5 118.5t76.5 214.5zM2048 1098q0 175-97 319-23 33-64 33-24 0-43-13-26-17-32-48.5t12-57.5q71-104 71-233t-71-233q-18-26-12-57t32-49 57.5-11.5 49.5 32.5q97 142 97 318zM2304 1098q0 244-134 443-23 34-64 34-23 0-42-13-26-18-32.5-49t11.5-57q108-164 108-358 0-195-108-357-18-26-11.5-57.5t32.5-48.5q26-18 57-12t49 33q134 198 134 442z" + } + }] +}; +exports.mixcloud = mixcloud; \ No newline at end of file diff --git a/dist/fa/mobile.js b/dist/fa/mobile.js new file mode 100644 index 000000000..5768bccdc --- /dev/null +++ b/dist/fa/mobile.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.mobile = void 0; +var mobile = { + "viewBox": "0 0 768 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M464 1408q0-33-23.5-56.5t-56.5-23.5-56.5 23.5-23.5 56.5 23.5 56.5 56.5 23.5 56.5-23.5 23.5-56.5zM672 1248v-704q0-13-9.5-22.5t-22.5-9.5h-512q-13 0-22.5 9.5t-9.5 22.5v704q0 13 9.5 22.5t22.5 9.5h512q13 0 22.5-9.5t9.5-22.5zM480 400q0-16-16-16h-160q-16 0-16 16t16 16h160q16 0 16-16zM768 384v1024q0 52-38 90t-90 38h-512q-52 0-90-38t-38-90v-1024q0-52 38-90t90-38h512q52 0 90 38t38 90z" + } + }] +}; +exports.mobile = mobile; \ No newline at end of file diff --git a/dist/fa/mobilePhone.js b/dist/fa/mobilePhone.js new file mode 100644 index 000000000..c0d94d684 --- /dev/null +++ b/dist/fa/mobilePhone.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.mobilePhone = void 0; +var mobilePhone = { + "viewBox": "0 0 768 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M464 1408q0-33-23.5-56.5t-56.5-23.5-56.5 23.5-23.5 56.5 23.5 56.5 56.5 23.5 56.5-23.5 23.5-56.5zM672 1248v-704q0-13-9.5-22.5t-22.5-9.5h-512q-13 0-22.5 9.5t-9.5 22.5v704q0 13 9.5 22.5t22.5 9.5h512q13 0 22.5-9.5t9.5-22.5zM480 400q0-16-16-16h-160q-16 0-16 16t16 16h160q16 0 16-16zM768 384v1024q0 52-38 90t-90 38h-512q-52 0-90-38t-38-90v-1024q0-52 38-90t90-38h512q52 0 90 38t38 90z" + } + }] +}; +exports.mobilePhone = mobilePhone; \ No newline at end of file diff --git a/dist/fa/modx.js b/dist/fa/modx.js new file mode 100644 index 000000000..4f6437afc --- /dev/null +++ b/dist/fa/modx.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.modx = void 0; +var modx = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1427 709l-614-386 92-151h855zM405 974l-184-116v-858l1183 743zM1424 839l147 95v858l-532-335zM1387 818l-500 802h-855l356-571z" + } + }] +}; +exports.modx = modx; \ No newline at end of file diff --git a/dist/fa/money.js b/dist/fa/money.js new file mode 100644 index 000000000..933915b1c --- /dev/null +++ b/dist/fa/money.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.money = void 0; +var money = { + "viewBox": "0 0 1920 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M768 1152h384v-96h-128v-448h-114l-148 137 77 80q42-37 55-57h2v288h-128v96zM1280 896q0 70-21 142t-59.5 134-101.5 101-138 39-138-39-101.5-101-59.5-134-21-142 21-142 59.5-134 101.5-101 138-39 138 39 101.5 101 59.5 134 21 142zM1792 1152v-512q-106 0-181-75t-75-181h-1152q0 106-75 181t-181 75v512q106 0 181 75t75 181h1152q0-106 75-181t181-75zM1920 320v1152q0 26-19 45t-45 19h-1792q-26 0-45-19t-19-45v-1152q0-26 19-45t45-19h1792q26 0 45 19t19 45z" + } + }] +}; +exports.money = money; \ No newline at end of file diff --git a/dist/fa/moonO.js b/dist/fa/moonO.js new file mode 100644 index 000000000..6b3f695be --- /dev/null +++ b/dist/fa/moonO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.moonO = void 0; +var moonO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1262 1303q-54 9-110 9-182 0-337-90t-245-245-90-337q0-192 104-357-201 60-328.5 229t-127.5 384q0 130 51 248.5t136.5 204 204 136.5 248.5 51q144 0 273.5-61.5t220.5-171.5zM1465 1218q-94 203-283.5 324.5t-413.5 121.5q-156 0-298-61t-245-164-164-245-61-298q0-153 57.5-292.5t156-241.5 235.5-164.5 290-68.5q44-2 61 39 18 41-15 72-86 78-131.5 181.5t-45.5 218.5q0 148 73 273t198 198 273 73q118 0 228-51 41-18 72 13 14 14 17.5 34t-4.5 38z" + } + }] +}; +exports.moonO = moonO; \ No newline at end of file diff --git a/dist/fa/mortarBoard.js b/dist/fa/mortarBoard.js new file mode 100644 index 000000000..925b51b59 --- /dev/null +++ b/dist/fa/mortarBoard.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.mortarBoard = void 0; +var mortarBoard = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1774 836l18 316q4 69-82 128t-235 93.5-323 34.5-323-34.5-235-93.5-82-128l18-316 574 181q22 7 48 7t48-7zM2304 512q0 23-22 31l-1120 352q-4 1-10 1t-10-1l-652-206q-43 34-71 111.5t-34 178.5q63 36 63 109 0 69-58 107l58 433q2 14-8 25-9 11-24 11h-192q-15 0-24-11-10-11-8-25l58-433q-58-38-58-107 0-73 65-111 11-207 98-330l-333-104q-22-8-22-31t22-31l1120-352q4-1 10-1t10 1l1120 352q22 8 22 31z" + } + }] +}; +exports.mortarBoard = mortarBoard; \ No newline at end of file diff --git a/dist/fa/motorcycle.js b/dist/fa/motorcycle.js new file mode 100644 index 000000000..abcf580d8 --- /dev/null +++ b/dist/fa/motorcycle.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.motorcycle = void 0; +var motorcycle = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M2301 1036q12 103-22 198.5t-99 163.5-158.5 106-196.5 31q-161-11-279.5-125t-134.5-274q-12-111 27.5-210.5t118.5-170.5l-71-107q-96 80-151 194t-55 244q0 27-18.5 46.5t-45.5 19.5h-256-69q-23 164-149 274t-294 110q-185 0-316.5-131.5t-131.5-316.5 131.5-316.5 316.5-131.5q76 0 152 27l24-45q-123-110-304-110h-64q-26 0-45-19t-19-45 19-45 45-19h128q78 0 145 13.5t116.5 38.5 71.5 39.5 51 36.5h512 115l-85-128h-222q-30 0-49-22.5t-14-52.5q4-23 23-38t43-15h253q33 0 53 28l70 105 114-114q19-19 46-19h101q26 0 45 19t19 45v128q0 26-19 45t-45 19h-179l115 172q131-63 275-36 143 26 244 134.5t118 253.5zM448 1408q115 0 203-72.5t111-183.5h-314q-35 0-55-31-18-32-1-63l147-277q-47-13-91-13-132 0-226 94t-94 226 94 226 226 94zM1856 1408q132 0 226-94t94-226-94-226-226-94q-60 0-121 24l174 260q15 23 10 49t-27 40q-15 11-36 11-35 0-53-29l-174-260q-93 95-93 225 0 132 94 226t226 94z" + } + }] +}; +exports.motorcycle = motorcycle; \ No newline at end of file diff --git a/dist/fa/mousePointer.js b/dist/fa/mousePointer.js new file mode 100644 index 000000000..0d459b9d1 --- /dev/null +++ b/dist/fa/mousePointer.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.mousePointer = void 0; +var mousePointer = { + "viewBox": "0 0 1280 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1133 1043q31 30 14 69-17 40-59 40h-382l201 476q10 25 0 49t-34 35l-177 75q-25 10-49 0t-35-34l-191-452-312 312q-19 19-45 19-12 0-24-5-40-17-40-59v-1504q0-42 40-59 12-5 24-5 27 0 45 19z" + } + }] +}; +exports.mousePointer = mousePointer; \ No newline at end of file diff --git a/dist/fa/music.js b/dist/fa/music.js new file mode 100644 index 000000000..45720aa30 --- /dev/null +++ b/dist/fa/music.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.music = void 0; +var music = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1536 224v1120q0 50-34 89t-86 60.5-103.5 32-96.5 10.5-96.5-10.5-103.5-32-86-60.5-34-89 34-89 86-60.5 103.5-32 96.5-10.5q105 0 192 39v-537l-768 237v709q0 50-34 89t-86 60.5-103.5 32-96.5 10.5-96.5-10.5-103.5-32-86-60.5-34-89 34-89 86-60.5 103.5-32 96.5-10.5q105 0 192 39v-967q0-31 19-56.5t49-35.5l832-256q12-4 28-4 40 0 68 28t28 68z" + } + }] +}; +exports.music = music; \ No newline at end of file diff --git a/dist/fa/navicon.js b/dist/fa/navicon.js new file mode 100644 index 000000000..10382a75f --- /dev/null +++ b/dist/fa/navicon.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.navicon = void 0; +var navicon = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1536 1344v128q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1408q26 0 45 19t19 45zM1536 832v128q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1408q26 0 45 19t19 45zM1536 320v128q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1408q26 0 45 19t19 45z" + } + }] +}; +exports.navicon = navicon; \ No newline at end of file diff --git a/dist/fa/neuter.js b/dist/fa/neuter.js new file mode 100644 index 000000000..b73051f33 --- /dev/null +++ b/dist/fa/neuter.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.neuter = void 0; +var neuter = { + "viewBox": "0 0 1280 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1152 576q0 221-147.5 384.5t-364.5 187.5v612q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-612q-217-24-364.5-187.5t-147.5-384.5q0-117 45.5-223.5t123-184 184-123 223.5-45.5 223.5 45.5 184 123 123 184 45.5 223.5zM576 1024q185 0 316.5-131.5t131.5-316.5-131.5-316.5-316.5-131.5-316.5 131.5-131.5 316.5 131.5 316.5 316.5 131.5z" + } + }] +}; +exports.neuter = neuter; \ No newline at end of file diff --git a/dist/fa/newspaperO.js b/dist/fa/newspaperO.js new file mode 100644 index 000000000..ac6d35375 --- /dev/null +++ b/dist/fa/newspaperO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.newspaperO = void 0; +var newspaperO = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 512h-384v384h384v-384zM1152 1152v128h-640v-128h640zM1152 384v640h-640v-640h640zM1792 1152v128h-512v-128h512zM1792 896v128h-512v-128h512zM1792 640v128h-512v-128h512zM1792 384v128h-512v-128h512zM256 1344v-960h-128v960q0 26 19 45t45 19 45-19 19-45zM1920 1344v-1088h-1536v1088q0 33-11 64h1483q26 0 45-19t19-45zM2048 128v1216q0 80-56 136t-136 56h-1664q-80 0-136-56t-56-136v-1088h256v-128h1792z" + } + }] +}; +exports.newspaperO = newspaperO; \ No newline at end of file diff --git a/dist/fa/objectGroup.js b/dist/fa/objectGroup.js new file mode 100644 index 000000000..80f52bec1 --- /dev/null +++ b/dist/fa/objectGroup.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.objectGroup = void 0; +var objectGroup = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M2048 384h-128v1024h128v384h-384v-128h-1280v128h-384v-384h128v-1024h-128v-384h384v128h1280v-128h384v384zM1792 128v128h128v-128h-128zM128 128v128h128v-128h-128zM256 1664v-128h-128v128h128zM1664 1536v-128h128v-1024h-128v-128h-1280v128h-128v1024h128v128h1280zM1920 1664v-128h-128v128h128zM1280 640h384v768h-896v-256h-384v-768h896v256zM512 1024h640v-512h-640v512zM1536 1280v-512h-256v384h-384v128h640z" + } + }] +}; +exports.objectGroup = objectGroup; \ No newline at end of file diff --git a/dist/fa/objectUngroup.js b/dist/fa/objectUngroup.js new file mode 100644 index 000000000..510148732 --- /dev/null +++ b/dist/fa/objectUngroup.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.objectUngroup = void 0; +var objectUngroup = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M2304 768h-128v640h128v384h-384v-128h-896v128h-384v-384h128v-128h-384v128h-384v-384h128v-640h-128v-384h384v128h896v-128h384v384h-128v128h384v-128h384v384zM2048 512v128h128v-128h-128zM1408 128v128h128v-128h-128zM128 128v128h128v-128h-128zM256 1280v-128h-128v128h128zM1536 1152h-128v128h128v-128zM384 1152h896v-128h128v-640h-128v-128h-896v128h-128v640h128v128zM896 1664v-128h-128v128h128zM2176 1664v-128h-128v128h128zM2048 1408v-640h-128v-128h-384v384h128v384h-384v-128h-384v128h128v128h896v-128h128z" + } + }] +}; +exports.objectUngroup = objectUngroup; \ No newline at end of file diff --git a/dist/fa/odnoklassniki.js b/dist/fa/odnoklassniki.js new file mode 100644 index 000000000..e043fcd7a --- /dev/null +++ b/dist/fa/odnoklassniki.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.odnoklassniki = void 0; +var odnoklassniki = { + "viewBox": "0 0 1280 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 907q-188 0-321-133t-133-320q0-188 133-321t321-133 321 133 133 321q0 187-133 320t-321 133zM640 230q-92 0-157.5 65.5t-65.5 158.5q0 92 65.5 157.5t157.5 65.5 157.5-65.5 65.5-157.5q0-93-65.5-158.5t-157.5-65.5zM1163 962q13 27 15 49.5t-4.5 40.5-26.5 38.5-42.5 37-61.5 41.5q-115 73-315 94l73 72 267 267q30 31 30 74t-30 73l-12 13q-31 30-74 30t-74-30q-67-68-267-268l-267 268q-31 30-74 30t-73-30l-12-13q-31-30-31-73t31-74l267-267 72-72q-203-21-317-94-39-25-61.5-41.5t-42.5-37-26.5-38.5-4.5-40.5 15-49.5q10-20 28-35t42-22 56 2 65 35q5 4 15 11t43 24.5 69 30.5 92 24 113 11q91 0 174-25.5t120-50.5l38-25q33-26 65-35t56-2 42 22 28 35z" + } + }] +}; +exports.odnoklassniki = odnoklassniki; \ No newline at end of file diff --git a/dist/fa/odnoklassnikiSquare.js b/dist/fa/odnoklassnikiSquare.js new file mode 100644 index 000000000..f09ed7991 --- /dev/null +++ b/dist/fa/odnoklassnikiSquare.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.odnoklassnikiSquare = void 0; +var odnoklassnikiSquare = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M927 580q0 66-46.5 112.5t-112.5 46.5-112.5-46.5-46.5-112.5 46.5-112.5 112.5-46.5 112.5 46.5 46.5 112.5zM1141 943q-10-20-28-32t-47.5-9.5-60.5 27.5q-10 8-29 20t-81 32-127 20-124-18-86-36l-27-18q-31-25-60.5-27.5t-47.5 9.5-28 32q-22 45-2 74.5t87 73.5q83 53 226 67l-51 52q-142 142-191 190-22 22-22 52.5t22 52.5l9 9q22 22 52.5 22t52.5-22l191-191q114 115 191 191 22 22 52.5 22t52.5-22l9-9q22-22 22-52.5t-22-52.5l-191-190-52-52q141-14 225-67 67-44 87-73.5t-2-74.5zM1092 580q0-134-95-229t-229-95-229 95-95 229 95 229 229 95 229-95 95-229zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.odnoklassnikiSquare = odnoklassnikiSquare; \ No newline at end of file diff --git a/dist/fa/opencart.js b/dist/fa/opencart.js new file mode 100644 index 000000000..0f700c420 --- /dev/null +++ b/dist/fa/opencart.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.opencart = void 0; +var opencart = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1524 1561q0 68-48 116t-116 48-116.5-48-48.5-116 48.5-116.5 116.5-48.5 116 48.5 48 116.5zM775 1561q0 68-48.5 116t-116.5 48-116-48-48-116 48-116.5 116-48.5 116.5 48.5 48.5 116.5zM0 67q57 60 110.5 104.5t121 82 136 63 166 45.5 200 31.5 250 18.5 304 9.5 372.5 2.5q139 0 244.5 5t181 16.5 124 27.5 71 39.5 24 51.5-19.5 64-56.5 76.5-89.5 91-116 104.5-139 119q-185 157-286 247 29-51 76.5-109t94-105.5 94.5-98.5 83-91.5 54-80.5 13-70-45.5-55.5-116.5-41-204-23.5-304-5q-168 2-314-6t-256-23-204.5-41-159.5-51.5-122.5-62.5-91.5-66.5-68-71.5-50.5-69.5-40-68-36.5-59.5z" + } + }] +}; +exports.opencart = opencart; \ No newline at end of file diff --git a/dist/fa/openid.js b/dist/fa/openid.js new file mode 100644 index 000000000..f15ed8c95 --- /dev/null +++ b/dist/fa/openid.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.openid = void 0; +var openid = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1086 0v1536l-272 128q-228-20-414-102t-293-208.5-107-272.5q0-140 100.5-263.5t275-205.5 391.5-108v172q-217 38-356.5 150t-139.5 255q0 152 154.5 267t388.5 145v-1360zM1755 582l37 390-525-114 147-83q-119-70-280-99v-172q277 33 481 157z" + } + }] +}; +exports.openid = openid; \ No newline at end of file diff --git a/dist/fa/opera.js b/dist/fa/opera.js new file mode 100644 index 000000000..106774d08 --- /dev/null +++ b/dist/fa/opera.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.opera = void 0; +var opera = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1493 228q-165-110-359-110-155 0-293 73t-240 200q-75 93-119.5 218t-48.5 266v42q4 141 48.5 266t119.5 218q102 127 240 200t293 73q194 0 359-110-121 108-274.5 168t-322.5 60q-29 0-43-1-175-8-333-82t-272-193-181-281-67-339q0-182 71-348t191-286 286-191 348-71h3q168 1 320.5 60.5t273.5 167.5zM1792 896q0 192-77 362.5t-213 296.5q-104 63-222 63-137 0-255-84 154-56 253.5-233t99.5-405q0-227-99-404t-253-234q119-83 254-83 119 0 226 65 135 125 210.5 295t75.5 361z" + } + }] +}; +exports.opera = opera; \ No newline at end of file diff --git a/dist/fa/optinMonster.js b/dist/fa/optinMonster.js new file mode 100644 index 000000000..0b26cecf3 --- /dev/null +++ b/dist/fa/optinMonster.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.optinMonster = void 0; +var optinMonster = { + "viewBox": "0 0 2296 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M478 1675q-8 16-27 34.5t-37 25.5q-25 9-51.5-3.5t-28.5-31.5q-1-22 40-55t68-38q23-4 34 21.5t2 46.5zM1819 1675q7 16 26 34.5t38 25.5q25 9 51.5-3.5t27.5-31.5q2-22-39.5-55t-68.5-38q-22-4-33 21.5t-2 46.5zM1867 1566q13 27 56.5 59.5t77.5 41.5q45 13 82-4.5t37-50.5q0-46-67.5-100.5t-115.5-59.5q-40-5-63.5 37.5t-6.5 76.5zM428 1566q-13 27-56 59.5t-77 41.5q-45 13-82-4.5t-37-50.5q0-46 67.5-100.5t115.5-59.5q40-5 63 37.5t6 76.5zM1158 442h1q-41 0-76 15 27 8 44 30.5t17 49.5q0 35-27 60t-65 25q-52 0-80-43-5 23-5 42 0 74 56 126.5t135 52.5q80 0 136-52.5t56-126.5-56-126.5-136-52.5zM1462 224q-99-109-220.5-131.5t-245.5 44.5q27-60 82.5-96.5t118-39.5 121.5 17 99.5 74.5 44.5 131.5zM2212 1463q8 11-11 42 7 23 7 40 1 56-44.5 112.5t-109.5 91.5-118 37q-48 2-92-21.5t-66-65.5q-687 25-1259 0-23 41-66.5 65t-92.5 22q-86-3-179.5-80.5t-92.5-160.5q2-22 7-40-19-31-11-42 6-10 31-1 14-22 41-51-7-29 2-38 11-10 39 4 29-20 59-34 0-29 13-37 23-12 51 16 35-5 61 2 18 4 38 19v-73q-11 0-18-2-53-10-97-44.5t-55-87.5q-9-38 0-81 15-62 93-95 2-17 19-35.5t36-23.5 33 7.5 19 30.5h13q46 5 60 23 3 3 5 7 10-1 30.5-3.5t30.5-3.5q-15-11-30-17-23-40-91-43 0-6 1-10-62-2-118.5-18.5t-84.5-47.5q-32-36-42.5-92t-2.5-112q16-126 90-179 23-16 52-4.5t32 40.5q0 1 1.5 14t2.5 21 3 20 5.5 19 8.5 10q27 14 76 12 48-46 98-74-40-4-162 14l47-46q61-58 163-111 145-73 282-86-20-8-41-15.5t-47-14-42.5-10.5-47.5-11-43-10q595-126 904 139 98 84 158 222 85 10 121-9h1q5-3 8.5-10t5.5-19 3-19.5 3-21.5l1-14q3-28 32-40t52 5q73 52 91 178 7 57-3.5 113t-42.5 91q-28 32-83.5 48.5t-115.5 18.5v10q-71 2-95 43-14 5-31 17 11 1 32 3.5t30 3.5q1-5 5-8 16-18 60-23h13q5-18 19-30t33-8 36 23 19 36q79 32 93 95 9 40 1 81-12 53-56 88t-97 44q-10 2-17 2 0 49-1 73 20-15 38-19 26-7 61-2 28-28 51-16 14 9 14 37 33 16 59 34 27-13 38-4 10 10 2 38 28 30 41 51 23-8 31 1zM1937 511q0 29-9 54 82 32 112 132 4-37-9.5-98.5t-41.5-90.5q-20-19-36-17t-16 20zM1859 611q35 42 47.5 108.5t-0.5 124.5q67-13 97-45 13-14 18-28-3-64-31-114.5t-79-66.5q-15 15-52 21zM1822 615q-30 0-44-1 42 115 53 239 21 0 43-3 16-68 1-135t-53-100zM258 697q30-100 112-132-9-25-9-54 0-18-16.5-20t-35.5 17q-28 29-41.5 90.5t-9.5 98.5zM294 799q29 31 97 45-13-58-0.5-124.5t47.5-108.5v0q-37-6-52-21-51 16-78.5 66t-31.5 115q9 17 18 28zM471 853q14-124 73-235-19 4-55 18l-45 19v-1q-46 89-20 196 25 3 47 3zM1434 892q8 38 16.5 108.5t11.5 89.5q3 18 9.5 21.5t23.5-4.5q40-20 62-85.5t23-125.5q-24-2-146-4zM1152 251q-116 0-199 82.5t-83 198.5q0 117 83 199.5t199 82.5 199-82.5 83-199.5q0-116-83-198.5t-199-82.5zM1380 890q-105-2-211 0v-1q-1 27 2.5 86t13.5 66q29 14 93.5 14.5t95.5-10.5q9-3 11-39t-0.5-69.5-4.5-46.5zM1112 1089q8-4 9.5-48t-0.5-88-4-63v-1q-212 3-214 3-4 20-7 62t0 83 14 46q34 15 101 16t101-10zM718 900q-16 59 4.5 118.5t77.5 84.5q15 8 24 5t12-21q3-16 8-90t10-103q-69 2-136 6zM591 1026q3 23-34 36 132 141 271.5 240t305.5 154q172-49 310.5-146t293.5-250q-33-13-30-34 0-2 0.5-3.5t1.5-3 1-2.5v-1 1q-17-2-50-5.5t-48-4.5q-26 90-82 132-51 38-82-1-5-6-9-14-7-13-17-62-2 5-5 9t-7.5 7-8 5.5-9.5 4l-10 2.5t-12 2l-12 1.5t-13.5 1-13.5 0.5q-106 9-163-11-4 17-10 26.5t-21 15-23 7-36 3.5q-6 1-9 1-179 17-203-40-2 63-56 54-47-8-91-54-12-13-20-26-17-29-26-65-58 6-87 10 1 2 4 10zM507 1654q3-14 3-30-17-71-51-130t-73-70q-41-12-101.5 14.5t-104.5 80-39 107.5q35 53 100 93t119 42q51 2 94-28t53-79zM510 1483q23 63 27 119 195-113 392-174-98-52-180.5-120t-179.5-165q-6 4-29 13 0 1-1 4t-1 5q31 18 22 37-12 23-56 34-10 13-29 24h-1q-2 83 1 150 19 34 35 73zM579 1649q532 21 1145 0-254-147-428-196-76 35-156 57-8 3-16 0-65-21-129-49-208 60-416 188h-1v1q1 0 1-1zM1763 1603q4-54 28-120 14-38 33-71l-1 1q3-77 3-153-15-8-30-25-42-9-56-33-9-20 22-38-2-4-2-9-16-4-28-12-204 190-383 284 198 59 414 176zM2155 1626q5-54-39-107.5t-104-80-102-14.5q-38 11-72.5 70.5t-51.5 129.5q0 16 3 30 10 49 53 79t94 28q54-2 119-42t100-93z" + } + }] +}; +exports.optinMonster = optinMonster; \ No newline at end of file diff --git a/dist/fa/outdent.js b/dist/fa/outdent.js new file mode 100644 index 000000000..45f336831 --- /dev/null +++ b/dist/fa/outdent.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.outdent = void 0; +var outdent = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M384 544v576q0 13-9.5 22.5t-22.5 9.5q-14 0-23-9l-288-288q-9-9-9-23t9-23l288-288q9-9 23-9 13 0 22.5 9.5t9.5 22.5zM1792 1312v192q0 13-9.5 22.5t-22.5 9.5h-1728q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1728q13 0 22.5 9.5t9.5 22.5zM1792 928v192q0 13-9.5 22.5t-22.5 9.5h-1088q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1088q13 0 22.5 9.5t9.5 22.5zM1792 544v192q0 13-9.5 22.5t-22.5 9.5h-1088q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1088q13 0 22.5 9.5t9.5 22.5zM1792 160v192q0 13-9.5 22.5t-22.5 9.5h-1728q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1728q13 0 22.5 9.5t9.5 22.5z" + } + }] +}; +exports.outdent = outdent; \ No newline at end of file diff --git a/dist/fa/pagelines.js b/dist/fa/pagelines.js new file mode 100644 index 000000000..b2b58818c --- /dev/null +++ b/dist/fa/pagelines.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pagelines = void 0; +var pagelines = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1402 1103q-32 80-76 138t-91 88.5-99 46.5-101.5 14.5-96.5-8.5-86.5-22-69.5-27.5-46-22.5l-17-10q-113 228-289.5 359.5t-384.5 132.5q-19 0-32-13t-13-32 13-31.5 32-12.5q173-1 322.5-107.5t251.5-294.5q-36 14-72 23t-83 13-91-2.5-93-28.5-92-59-84.5-100-74.5-146q114-47 214-57t167.5 7.5 124.5 56.5 88.5 77 56.5 82q53-131 79-291-7 1-18 2.5t-46.5 2.5-69.5-0.5-81.5-10-88.5-23-84-42.5-75-65-54.5-94.5-28.5-127.5q70-28 133.5-36.5t112.5 1 92 30 73.5 50 56 61 42 63 27.5 56 16 39.5l4 16q12-122 12-195-8-6-21.5-16t-49-44.5-63.5-71.5-54-93-33-112.5 12-127 70-138.5q73 25 127.5 61.5t84.5 76.5 48 85 20.5 89-0.5 85.5-13 76.5-19 62-17 42l-7 15q1 4 1 50t-1 72q3-7 10-18.5t30.5-43 50.5-58 71-55.5 91.5-44.5 112-14.5 132.5 24q-2 78-21.5 141.5t-50 104.5-69.5 71.5-81.5 45.5-84.5 24-80 9.5-67.5-1-46.5-4.5l-17-3q-23 147-73 283 6-7 18-18.5t49.5-41 77.5-52.5 99.5-42 117.5-20 129 23.5 137 77.5z" + } + }] +}; +exports.pagelines = pagelines; \ No newline at end of file diff --git a/dist/fa/paintBrush.js b/dist/fa/paintBrush.js new file mode 100644 index 000000000..7b0e2728f --- /dev/null +++ b/dist/fa/paintBrush.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.paintBrush = void 0; +var paintBrush = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1615 0q70 0 122.5 46.5t52.5 116.5q0 63-45 151-332 629-465 752-97 91-218 91-126 0-216.5-92.5t-90.5-219.5q0-128 92-212l638-579q59-54 130-54zM706 1034q39 76 106.5 130t150.5 76l1 71q4 213-129.5 347t-348.5 134q-123 0-218-46.5t-152.5-127.5-86.5-183-29-220q7 5 41 30t62 44.5 59 36.5 46 17q41 0 55-37 25-66 57.5-112.5t69.5-76 88-47.5 103-25.5 125-10.5z" + } + }] +}; +exports.paintBrush = paintBrush; \ No newline at end of file diff --git a/dist/fa/paperPlane.js b/dist/fa/paperPlane.js new file mode 100644 index 000000000..3e8920882 --- /dev/null +++ b/dist/fa/paperPlane.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.paperPlane = void 0; +var paperPlane = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1764 11q33 24 27 64l-256 1536q-5 29-32 45-14 8-31 8-11 0-24-5l-453-185-242 295q-18 23-49 23-13 0-22-4-19-7-30.5-23.5t-11.5-36.5v-349l864-1059-1069 925-395-162q-37-14-40-55-2-40 32-59l1664-960q15-9 32-9 20 0 36 11z" + } + }] +}; +exports.paperPlane = paperPlane; \ No newline at end of file diff --git a/dist/fa/paperPlaneO.js b/dist/fa/paperPlaneO.js new file mode 100644 index 000000000..8dcc308df --- /dev/null +++ b/dist/fa/paperPlaneO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.paperPlaneO = void 0; +var paperPlaneO = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1764 11q33 24 27 64l-256 1536q-5 29-32 45-14 8-31 8-11 0-24-5l-527-215-298 327q-18 21-47 21-14 0-23-4-19-7-30-23.5t-11-36.5v-452l-472-193q-37-14-40-55-3-39 32-59l1664-960q35-21 68 2zM1422 1510l221-1323-1434 827 336 137 863-639-478 797z" + } + }] +}; +exports.paperPlaneO = paperPlaneO; \ No newline at end of file diff --git a/dist/fa/paperclip.js b/dist/fa/paperclip.js new file mode 100644 index 000000000..18e532e26 --- /dev/null +++ b/dist/fa/paperclip.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.paperclip = void 0; +var paperclip = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1404 1385q0 117-79 196t-196 79q-135 0-235-100l-777-776q-113-115-113-271 0-159 110-270t269-111q158 0 273 113l605 606q10 10 10 22 0 16-30.5 46.5t-46.5 30.5q-13 0-23-10l-606-607q-79-77-181-77-106 0-179 75t-73 181q0 105 76 181l776 777q63 63 145 63 64 0 106-42t42-106q0-82-63-145l-581-581q-26-24-60-24-29 0-48 19t-19 48q0 32 25 59l410 410q10 10 10 22 0 16-31 47t-47 31q-12 0-22-10l-410-410q-63-61-63-149 0-82 57-139t139-57q88 0 149 63l581 581q100 98 100 235z" + } + }] +}; +exports.paperclip = paperclip; \ No newline at end of file diff --git a/dist/fa/paragraph.js b/dist/fa/paragraph.js new file mode 100644 index 000000000..0c787545e --- /dev/null +++ b/dist/fa/paragraph.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.paragraph = void 0; +var paragraph = { + "viewBox": "0 0 1280 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1278 189v73q0 29-18.5 61t-42.5 32q-50 0-54 1-26 6-32 31-3 11-3 64v1152q0 25-18 43t-43 18h-108q-25 0-43-18t-18-43v-1218h-143v1218q0 25-17.5 43t-43.5 18h-108q-26 0-43.5-18t-17.5-43v-496q-147-12-245-59-126-58-192-179-64-117-64-259 0-166 88-286 88-118 209-159 111-37 417-37h479q25 0 43 18t18 43z" + } + }] +}; +exports.paragraph = paragraph; \ No newline at end of file diff --git a/dist/fa/paste.js b/dist/fa/paste.js new file mode 100644 index 000000000..6fad05b93 --- /dev/null +++ b/dist/fa/paste.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.paste = void 0; +var paste = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M768 1664h896v-640h-416q-40 0-68-28t-28-68v-416h-384v1152zM1024 224v-64q0-13-9.5-22.5t-22.5-9.5h-704q-13 0-22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h704q13 0 22.5-9.5t9.5-22.5zM1280 896h299l-299-299v299zM1792 1024v672q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-160h-544q-40 0-68-28t-28-68v-1344q0-40 28-68t68-28h1088q40 0 68 28t28 68v328q21 13 36 28l408 408q28 28 48 76t20 88z" + } + }] +}; +exports.paste = paste; \ No newline at end of file diff --git a/dist/fa/pause.js b/dist/fa/pause.js new file mode 100644 index 000000000..e13b7f1b3 --- /dev/null +++ b/dist/fa/pause.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pause = void 0; +var pause = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1536 192v1408q0 26-19 45t-45 19h-512q-26 0-45-19t-19-45v-1408q0-26 19-45t45-19h512q26 0 45 19t19 45zM640 192v1408q0 26-19 45t-45 19h-512q-26 0-45-19t-19-45v-1408q0-26 19-45t45-19h512q26 0 45 19t19 45z" + } + }] +}; +exports.pause = pause; \ No newline at end of file diff --git a/dist/fa/pauseCircle.js b/dist/fa/pauseCircle.js new file mode 100644 index 000000000..6a82e407f --- /dev/null +++ b/dist/fa/pauseCircle.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pauseCircle = void 0; +var pauseCircle = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M704 1184v-576q0-14-9-23t-23-9h-256q-14 0-23 9t-9 23v576q0 14 9 23t23 9h256q14 0 23-9t9-23zM1152 1184v-576q0-14-9-23t-23-9h-256q-14 0-23 9t-9 23v576q0 14 9 23t23 9h256q14 0 23-9t9-23zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.pauseCircle = pauseCircle; \ No newline at end of file diff --git a/dist/fa/pauseCircleO.js b/dist/fa/pauseCircleO.js new file mode 100644 index 000000000..c3e9232c1 --- /dev/null +++ b/dist/fa/pauseCircleO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pauseCircleO = void 0; +var pauseCircleO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M768 128q209 0 385.5 103t279.5 279.5 103 385.5-103 385.5-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103zM768 1440q148 0 273-73t198-198 73-273-73-273-198-198-273-73-273 73-198 198-73 273 73 273 198 198 273 73zM864 1216q-14 0-23-9t-9-23v-576q0-14 9-23t23-9h192q14 0 23 9t9 23v576q0 14-9 23t-23 9h-192zM480 1216q-14 0-23-9t-9-23v-576q0-14 9-23t23-9h192q14 0 23 9t9 23v576q0 14-9 23t-23 9h-192z" + } + }] +}; +exports.pauseCircleO = pauseCircleO; \ No newline at end of file diff --git a/dist/fa/paw.js b/dist/fa/paw.js new file mode 100644 index 000000000..5aaa9f3c0 --- /dev/null +++ b/dist/fa/paw.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.paw = void 0; +var paw = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M780 472q0 60-19 113.5t-63 92.5-105 39q-76 0-138-57.5t-92-135.5-30-151q0-60 19-113.5t63-92.5 105-39q77 0 138.5 57.5t91.5 135 30 151.5zM438 955q0 80-42 139t-119 59q-76 0-141.5-55.5t-100.5-133.5-35-152q0-80 42-139.5t119-59.5q76 0 141.5 55.5t100.5 134 35 152.5zM832 928q118 0 255 97.5t229 237 92 254.5q0 46-17 76.5t-48.5 45-64.5 20-76 5.5q-68 0-187.5-45t-182.5-45q-66 0-192.5 44.5t-200.5 44.5q-183 0-183-146 0-86 56-191.5t139.5-192.5 187.5-146 193-59zM1071 717q-61 0-105-39t-63-92.5-19-113.5q0-74 30-151.5t91.5-135 138.5-57.5q61 0 105 39t63 92.5 19 113.5q0 73-30 151t-92 135.5-138 57.5zM1503 613q77 0 119 59.5t42 139.5q0 74-35 152t-100.5 133.5-141.5 55.5q-77 0-119-59t-42-139q0-74 35-152.5t100.5-134 141.5-55.5z" + } + }] +}; +exports.paw = paw; \ No newline at end of file diff --git a/dist/fa/paypal.js b/dist/fa/paypal.js new file mode 100644 index 000000000..1e8f96c85 --- /dev/null +++ b/dist/fa/paypal.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.paypal = void 0; +var paypal = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1519 646q18 84-4 204-87 444-565 444h-44q-25 0-44 16.5t-24 42.5l-4 19-55 346-2 15q-5 26-24.5 42.5t-44.5 16.5h-251q-21 0-33-15t-9-36q9-56 26.5-168t26.5-168 27-167.5 27-167.5q5-37 43-37h131q133 2 236-21 175-39 287-144 102-95 155-246 24-70 35-133 1-6 2.5-7.5t3.5-1 6 3.5q79 59 98 162zM1347 364q0 107-46 236-80 233-302 315-113 40-252 42 0 1-90 1l-90-1q-100 0-118 96-2 8-85 530-1 10-12 10h-295q-22 0-36.5-16.5t-11.5-38.5l232-1471q5-29 27.5-48t51.5-19h598q34 0 97.5 13t111.5 32q107 41 163.5 123t56.5 196z" + } + }] +}; +exports.paypal = paypal; \ No newline at end of file diff --git a/dist/fa/pencil.js b/dist/fa/pencil.js new file mode 100644 index 000000000..ad5d57297 --- /dev/null +++ b/dist/fa/pencil.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pencil = void 0; +var pencil = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M363 1536l91-91-235-235-91 91v107h128v128h107zM886 608q0-22-22-22-10 0-17 7l-542 542q-7 7-7 17 0 22 22 22 10 0 17-7l542-542q7-7 7-17zM832 416l416 416-832 832h-416v-416zM1515 512q0 53-37 90l-166 166-416-416 166-165q36-38 90-38 53 0 91 38l235 234q37 39 37 91z" + } + }] +}; +exports.pencil = pencil; \ No newline at end of file diff --git a/dist/fa/pencilSquare.js b/dist/fa/pencilSquare.js new file mode 100644 index 000000000..9f16d7c17 --- /dev/null +++ b/dist/fa/pencilSquare.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pencilSquare = void 0; +var pencilSquare = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M404 1108l152 152-52 52h-56v-96h-96v-56zM818 718q14 13-3 30l-291 291q-17 17-30 3-14-13 3-30l291-291q17-17 30-3zM544 1408l544-544-288-288-544 544v288h288zM1152 800l92-92q28-28 28-68t-28-68l-152-152q-28-28-68-28t-68 28l-92 92zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.pencilSquare = pencilSquare; \ No newline at end of file diff --git a/dist/fa/pencilSquareO.js b/dist/fa/pencilSquareO.js new file mode 100644 index 000000000..16f2d1421 --- /dev/null +++ b/dist/fa/pencilSquareO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pencilSquareO = void 0; +var pencilSquareO = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M888 1184l116-116-152-152-116 116v56h96v96h56zM1328 464q-16-16-33 1l-350 350q-17 17-1 33t33-1l350-350q17-17 1-33zM1408 1058v190q0 119-84.5 203.5t-203.5 84.5h-832q-119 0-203.5-84.5t-84.5-203.5v-832q0-119 84.5-203.5t203.5-84.5h832q63 0 117 25 15 7 18 23 3 17-9 29l-49 49q-14 14-32 8-23-6-45-6h-832q-66 0-113 47t-47 113v832q0 66 47 113t113 47h832q66 0 113-47t47-113v-126q0-13 9-22l64-64q15-15 35-7t20 29zM1312 320l288 288-672 672h-288v-288zM1756 452l-92 92-288-288 92-92q28-28 68-28t68 28l152 152q28 28 28 68t-28 68z" + } + }] +}; +exports.pencilSquareO = pencilSquareO; \ No newline at end of file diff --git a/dist/fa/percent.js b/dist/fa/percent.js new file mode 100644 index 000000000..e34750dc9 --- /dev/null +++ b/dist/fa/percent.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.percent = void 0; +var percent = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1280 1280q0-52-38-90t-90-38-90 38-38 90 38 90 90 38 90-38 38-90zM512 512q0-52-38-90t-90-38-90 38-38 90 38 90 90 38 90-38 38-90zM1536 1280q0 159-112.5 271.5t-271.5 112.5-271.5-112.5-112.5-271.5 112.5-271.5 271.5-112.5 271.5 112.5 112.5 271.5zM1440 192q0 20-13 38l-1056 1408q-19 26-51 26h-160q-26 0-45-19t-19-45q0-20 13-38l1056-1408q19-26 51-26h160q26 0 45 19t19 45zM768 512q0 159-112.5 271.5t-271.5 112.5-271.5-112.5-112.5-271.5 112.5-271.5 271.5-112.5 271.5 112.5 112.5 271.5z" + } + }] +}; +exports.percent = percent; \ No newline at end of file diff --git a/dist/fa/phone.js b/dist/fa/phone.js new file mode 100644 index 000000000..0a3aada84 --- /dev/null +++ b/dist/fa/phone.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.phone = void 0; +var phone = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1408 1240q0 27-10 70.5t-21 68.5q-21 50-122 106-94 51-186 51-27 0-53-3.5t-57.5-12.5-47-14.5-55.5-20.5-49-18q-98-35-175-83-127-79-264-216t-216-264q-48-77-83-175-3-9-18-49t-20.5-55.5-14.5-47-12.5-57.5-3.5-53q0-92 51-186 56-101 106-122 25-11 68.5-21t70.5-10q14 0 21 3 18 6 53 76 11 19 30 54t35 63.5 31 53.5q3 4 17.5 25t21.5 35.5 7 28.5q0 20-28.5 50t-62 55-62 53-28.5 46q0 9 5 22.5t8.5 20.5 14 24 11.5 19q76 137 174 235t235 174q2 1 19 11.5t24 14 20.5 8.5 22.5 5q18 0 46-28.5t53-62 55-62 50-28.5q14 0 28.5 7t35.5 21.5 25 17.5q25 15 53.5 31t63.5 35 54 30q70 35 76 53 3 7 3 21z" + } + }] +}; +exports.phone = phone; \ No newline at end of file diff --git a/dist/fa/phoneSquare.js b/dist/fa/phoneSquare.js new file mode 100644 index 000000000..1e23e96ba --- /dev/null +++ b/dist/fa/phoneSquare.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.phoneSquare = void 0; +var phoneSquare = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1280 1193q0-11-2-16t-18-16.5-40.5-25-47.5-26.5-45.5-25-28.5-15q-5-3-19-13t-25-15-21-5q-15 0-36.5 20.5t-39.5 45-38.5 45-33.5 20.5q-7 0-16.5-3.5t-15.5-6.5-17-9.5-14-8.5q-99-55-170-126.5t-127-170.5q-2-3-8.5-14t-9.5-17-6.5-15.5-3.5-16.5q0-13 20.5-33.5t45-38.5 45-39.5 20.5-36.5q0-10-5-21t-15-25-13-19q-3-6-15-28.5t-25-45.5-26.5-47.5-25-40.5-16.5-18-16-2q-48 0-101 22-46 21-80 94.5t-34 130.5q0 16 2.5 34t5 30.5 9 33 10 29.5 12.5 33 11 30q60 164 216.5 320.5t320.5 216.5q6 2 30 11t33 12.5 29.5 10 33 9 30.5 5 34 2.5q57 0 130.5-34t94.5-80q22-53 22-101zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.phoneSquare = phoneSquare; \ No newline at end of file diff --git a/dist/fa/photo.js b/dist/fa/photo.js new file mode 100644 index 000000000..5ce202270 --- /dev/null +++ b/dist/fa/photo.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.photo = void 0; +var photo = { + "viewBox": "0 0 1920 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 576q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM1664 960v448h-1408v-192l320-320 160 160 512-512zM1760 256h-1600q-13 0-22.5 9.5t-9.5 22.5v1216q0 13 9.5 22.5t22.5 9.5h1600q13 0 22.5-9.5t9.5-22.5v-1216q0-13-9.5-22.5t-22.5-9.5zM1920 288v1216q0 66-47 113t-113 47h-1600q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1600q66 0 113 47t47 113z" + } + }] +}; +exports.photo = photo; \ No newline at end of file diff --git a/dist/fa/pictureO.js b/dist/fa/pictureO.js new file mode 100644 index 000000000..b3fbf2b2f --- /dev/null +++ b/dist/fa/pictureO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pictureO = void 0; +var pictureO = { + "viewBox": "0 0 1920 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 576q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM1664 960v448h-1408v-192l320-320 160 160 512-512zM1760 256h-1600q-13 0-22.5 9.5t-9.5 22.5v1216q0 13 9.5 22.5t22.5 9.5h1600q13 0 22.5-9.5t9.5-22.5v-1216q0-13-9.5-22.5t-22.5-9.5zM1920 288v1216q0 66-47 113t-113 47h-1600q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1600q66 0 113 47t47 113z" + } + }] +}; +exports.pictureO = pictureO; \ No newline at end of file diff --git a/dist/fa/pieChart.js b/dist/fa/pieChart.js new file mode 100644 index 000000000..0e19cb47f --- /dev/null +++ b/dist/fa/pieChart.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pieChart = void 0; +var pieChart = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M768 890l546 546q-106 108-247.5 168t-298.5 60q-209 0-385.5-103t-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103v762zM955 896h773q0 157-60 298.5t-168 247.5zM1664 768h-768v-768q209 0 385.5 103t279.5 279.5 103 385.5z" + } + }] +}; +exports.pieChart = pieChart; \ No newline at end of file diff --git a/dist/fa/piedPiper.js b/dist/fa/piedPiper.js new file mode 100644 index 000000000..41b0dbe8d --- /dev/null +++ b/dist/fa/piedPiper.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.piedPiper = void 0; +var piedPiper = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M2304 0q-69 46-125 92t-89 81-59.5 71.5-37.5 57.5-22 44.5-14 29.5q-10 18-35.5 136.5t-48.5 164.5q-15 29-50 60.5t-67.5 50.5-72.5 41-48 28q-47 31-151 231-341-14-630 158-92 53-303 179 47-16 86-31t55-22l15-7q71-27 163-64.5t133.5-53.5 108-34.5 142.5-31.5q186-31 465 7 1 0 10 3 11 6 14 17t-3 22l-194 345q-15 29-47 22-128-24-354-24-146 0-402 44.5t-392 46.5q-82 1-149-13t-107-37-61-40-33-34l-1-1v-2q0-6 6-6 138 0 371-55 192-366 374.5-524t383.5-158q5 0 14.5 0.5t38 5 55 12 61.5 24.5 63 39.5 54 59 40 82.5l102-177q2-4 21-42.5t44.5-86.5 61-109.5 84-133.5 100.5-137q66-82 128-141.5t121.5-96.5 92.5-53.5 88-39.5z" + } + }] +}; +exports.piedPiper = piedPiper; \ No newline at end of file diff --git a/dist/fa/piedPiperAlt.js b/dist/fa/piedPiperAlt.js new file mode 100644 index 000000000..90c49a40c --- /dev/null +++ b/dist/fa/piedPiperAlt.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.piedPiperAlt = void 0; +var piedPiperAlt = { + "viewBox": "0 0 2038 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1222 929q75-3 143.5 20.5t118 58.5 101 94.5 84 108 75.5 120.5q33 56 78.5 109t75.5 80.5 99 88.5q-48 30-108.5 57.5t-138.5 59-114 47.5q-44-37-74-115t-43.5-164.5-33-180.5-42.5-168.5-72.5-123-122.5-48.5l-10 2-6 4q4 5 13 14 6 5 28 23.5t25.5 22 19 18 18 20.5 11.5 21 10.5 27.5 4.5 31 4 40.5l1 33q1 26-2.5 57.5t-7.5 52-12.5 58.5-11.5 53q-35-1-101 9.5t-98 10.5q-39 0-72-10-2-16-2-47 0-74 3-96 2-13 31.5-41.5t57-59 26.5-51.5q-24-2-43 24-36 53-111.5 99.5t-136.5 46.5q-25 0-75.5-63t-106.5-139.5-84-96.5q-6-4-27-30-482 112-513 112-16 0-28-11t-12-27q0-15 8.5-26.5t22.5-14.5l486-106q-8-14-8-25t5.5-17.5 16-11.5 20-7 23-4.5 18.5-4.5q4-1 15.5-7.5t17.5-6.5q15 0 28 16t20 33q163-37 172-37 17 0 29.5 11t12.5 28q0 15-8.5 26t-23.5 14l-182 40-1 16q-1 26 81.5 117.5t104.5 91.5q47 0 119-80t72-129q0-36-23.5-53t-51-18.5-51-11.5-23.5-34q0-16 10-34l-68-19q43-44 43-117 0-26-5-58 82-16 144-16 44 0 71.5 1.5t48.5 8.5 31 13.5 20.5 24.5 15.5 33.5 17 47.5 24 60l50-25q-3 40-23 60t-42.5 21-40 6.5-16.5 20.5zM1282 694q-5-5-13.5-15.5t-12-14.5-10.5-11.5-10-10.5l-8-8t-8.5-7.5-8-5-8.5-4.5q-7-3-14.5-5t-20.5-2.5-22-0.5h-32.5-37.5q-126 0-217 43 16-30 36-46.5t54-29.5 65.5-36 46-36.5 50-55 43.5-50.5q12 9 28 31.5t32 36.5 38 13l12-1v76l22 1q247-95 371-190 28-21 50-39t42.5-37.5 33-31 29.5-34 24-31 24.5-37 23-38 27-47.5 29.5-53l7-9q-2 53-43 139-79 165-205 264t-306 142q-14 3-42 7.5t-50 9.5-39 14q3 19 24.5 46t21.5 34q0 11-26 30zM1061 1615q39-26 131.5-47.5t146.5-21.5q9 0 22.5 15.5t28 42.5 26 50 24 51 14.5 33q-121 45-244 45-61 0-125-11zM822 968l48-12 109 177-73 48zM1323 1485q3 15 3 16 0 7-17.5 14.5t-46 13-54 9.5-53.5 7.5-32 4.5l-7-43q21-2 60.5-8.5t72-10 60.5-3.5h14zM866 857l-96 20-6-17q10-1 32.5-7t34.5-6q19 0 35 10zM1061 1491h31l10 83-41 12v-95zM1950 1v-1 1zM1950 1l-1 5-2 2 1-3zM1950 1l1-1z" + } + }] +}; +exports.piedPiperAlt = piedPiperAlt; \ No newline at end of file diff --git a/dist/fa/piedPiperPp.js b/dist/fa/piedPiperPp.js new file mode 100644 index 000000000..1906d165e --- /dev/null +++ b/dist/fa/piedPiperPp.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.piedPiperPp = void 0; +var piedPiperPp = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1046 1020q0 64-38 109t-91 45q-43 0-70-15v-277q28-17 70-17 53 0 91 45.5t38 109.5zM703 592q0 64-38 109.5t-91 45.5q-43 0-70-15v-277q28-17 70-17 53 0 91 45t38 109zM1265 1023q0-134-88-229t-213-95q-20 0-39 3-23 78-78 136-87 95-211 101v636l211-41v-206q51 19 117 19 125 0 213-95t88-229zM922 596q0-134-88.5-229t-213.5-95q-74 0-141 36h-186v840l211-41v-206q55 19 116 19 125 0 213.5-95t88.5-229zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.piedPiperPp = piedPiperPp; \ No newline at end of file diff --git a/dist/fa/pinterest.js b/dist/fa/pinterest.js new file mode 100644 index 000000000..ccdcde154 --- /dev/null +++ b/dist/fa/pinterest.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pinterest = void 0; +var pinterest = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1536 896q0 209-103 385.5t-279.5 279.5-385.5 103q-111 0-218-32 59-93 78-164 9-34 54-211 20 39 73 67.5t114 28.5q121 0 216-68.5t147-188.5 52-270q0-114-59.5-214t-172.5-163-255-63q-105 0-196 29t-154.5 77-109 110.5-67 129.5-21.5 134q0 104 40 183t117 111q30 12 38-20 2-7 8-31t8-30q6-23-11-43-51-61-51-151 0-151 104.5-259.5t273.5-108.5q151 0 235.5 82t84.5 213q0 170-68.5 289t-175.5 119q-61 0-98-43.5t-23-104.5q8-35 26.5-93.5t30-103 11.5-75.5q0-50-27-83t-77-33q-62 0-105 57t-43 142q0 73 25 122l-99 418q-17 70-13 177-206-91-333-281t-127-423q0-209 103-385.5t279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.pinterest = pinterest; \ No newline at end of file diff --git a/dist/fa/pinterestP.js b/dist/fa/pinterestP.js new file mode 100644 index 000000000..93eb04c12 --- /dev/null +++ b/dist/fa/pinterestP.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pinterestP = void 0; +var pinterestP = { + "viewBox": "0 0 1280 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 597q0-108 37.5-203.5t103.5-166.5 152-123 185-78 202-26q158 0 294 66.5t221 193.5 85 287q0 96-19 188t-60 177-100 149.5-145 103-189 38.5q-68 0-135-32t-96-88q-10 39-28 112.5t-23.5 95-20.5 71-26 71-32 62.5-46 77.5-62 86.5l-14 5-9-10q-15-157-15-188 0-92 21.5-206.5t66.5-287.5 52-203q-32-65-32-169 0-83 52-156t132-73q61 0 95 40.5t34 102.5q0 66-44 191t-44 187q0 63 45 104.5t109 41.5q55 0 102-25t78.5-68 56-95 38-110.5 20-111 6.5-99.5q0-173-109.5-269.5t-285.5-96.5q-200 0-334 129.5t-134 328.5q0 44 12.5 85t27 65 27 45.5 12.5 30.5q0 28-15 73t-37 45q-2 0-17-3-51-15-90.5-56t-61-94.5-32.5-108-11-106.5z" + } + }] +}; +exports.pinterestP = pinterestP; \ No newline at end of file diff --git a/dist/fa/pinterestSquare.js b/dist/fa/pinterestSquare.js new file mode 100644 index 000000000..e8acfc6e8 --- /dev/null +++ b/dist/fa/pinterestSquare.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pinterestSquare = void 0; +var pinterestSquare = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1248 128q119 0 203.5 84.5t84.5 203.5v960q0 119-84.5 203.5t-203.5 84.5h-725q85-122 108-210 9-34 53-209 21 39 73.5 67t112.5 28q181 0 295.5-147.5t114.5-373.5q0-84-35-162.5t-96.5-139-152.5-97-197-36.5q-104 0-194.5 28.5t-153 76.5-107.5 109.5-66.5 128-21.5 132.5q0 102 39.5 180t116.5 110q13 5 23.5 0t14.5-19q10-44 15-61 6-23-11-42-50-62-50-150 0-150 103.5-256.5t270.5-106.5q149 0 232.5 81t83.5 210q0 168-67.5 286t-173.5 118q-60 0-97-43.5t-23-103.5q8-34 26.5-92.5t29.5-102 11-74.5q0-49-26.5-81.5t-75.5-32.5q-61 0-103.5 56.5t-42.5 139.5q0 72 24 121l-98 414q-24 100-7 254h-183q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960z" + } + }] +}; +exports.pinterestSquare = pinterestSquare; \ No newline at end of file diff --git a/dist/fa/plane.js b/dist/fa/plane.js new file mode 100644 index 000000000..00272dd62 --- /dev/null +++ b/dist/fa/plane.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.plane = void 0; +var plane = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1376 160q44 52 12 148t-108 172l-161 161 160 696q5 19-12 33l-128 96q-7 6-19 6-4 0-7-1-15-3-21-16l-279-508-259 259 53 194q5 17-8 31l-96 96q-9 9-23 9h-2q-15-2-24-13l-189-252-252-189q-11-7-13-23-1-13 9-25l96-97q9-9 23-9 6 0 8 1l194 53 259-259-508-279q-14-8-17-24-2-16 9-27l128-128q14-13 30-8l665 159 160-160q76-76 172-108t148 12z" + } + }] +}; +exports.plane = plane; \ No newline at end of file diff --git a/dist/fa/play.js b/dist/fa/play.js new file mode 100644 index 000000000..c74a2d186 --- /dev/null +++ b/dist/fa/play.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.play = void 0; +var play = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1384 927l-1328 738q-23 13-39.5 3t-16.5-36v-1472q0-26 16.5-36t39.5 3l1328 738q23 13 23 31t-23 31z" + } + }] +}; +exports.play = play; \ No newline at end of file diff --git a/dist/fa/playCircle.js b/dist/fa/playCircle.js new file mode 100644 index 000000000..87559d397 --- /dev/null +++ b/dist/fa/playCircle.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.playCircle = void 0; +var playCircle = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M768 128q209 0 385.5 103t279.5 279.5 103 385.5-103 385.5-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103zM1152 951q32-18 32-55t-32-55l-544-320q-31-19-64-1-32 19-32 56v640q0 37 32 56 16 8 32 8 17 0 32-9z" + } + }] +}; +exports.playCircle = playCircle; \ No newline at end of file diff --git a/dist/fa/playCircleO.js b/dist/fa/playCircleO.js new file mode 100644 index 000000000..a4656490a --- /dev/null +++ b/dist/fa/playCircleO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.playCircleO = void 0; +var playCircleO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1184 896q0 37-32 55l-544 320q-15 9-32 9-16 0-32-8-32-19-32-56v-640q0-37 32-56 33-18 64 1l544 320q32 18 32 55zM1312 896q0-148-73-273t-198-198-273-73-273 73-198 198-73 273 73 273 198 198 273 73 273-73 198-198 73-273zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.playCircleO = playCircleO; \ No newline at end of file diff --git a/dist/fa/plug.js b/dist/fa/plug.js new file mode 100644 index 000000000..7f7845d82 --- /dev/null +++ b/dist/fa/plug.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.plug = void 0; +var plug = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1755 453q37 38 37 90.5t-37 90.5l-401 400 150 150-160 160q-163 163-389.5 186.5t-411.5-100.5l-362 362h-181v-181l362-362q-124-185-100.5-411.5t186.5-389.5l160-160 150 150 400-401q38-37 91-37t90 37 37 90.5-37 90.5l-400 401 234 234 401-400q38-37 91-37t90 37z" + } + }] +}; +exports.plug = plug; \ No newline at end of file diff --git a/dist/fa/plus.js b/dist/fa/plus.js new file mode 100644 index 000000000..42babb3ca --- /dev/null +++ b/dist/fa/plus.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.plus = void 0; +var plus = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1408 736v192q0 40-28 68t-68 28h-416v416q0 40-28 68t-68 28h-192q-40 0-68-28t-28-68v-416h-416q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h416v-416q0-40 28-68t68-28h192q40 0 68 28t28 68v416h416q40 0 68 28t28 68z" + } + }] +}; +exports.plus = plus; \ No newline at end of file diff --git a/dist/fa/plusCircle.js b/dist/fa/plusCircle.js new file mode 100644 index 000000000..a49eeb75c --- /dev/null +++ b/dist/fa/plusCircle.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.plusCircle = void 0; +var plusCircle = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1216 960v-128q0-26-19-45t-45-19h-256v-256q0-26-19-45t-45-19h-128q-26 0-45 19t-19 45v256h-256q-26 0-45 19t-19 45v128q0 26 19 45t45 19h256v256q0 26 19 45t45 19h128q26 0 45-19t19-45v-256h256q26 0 45-19t19-45zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.plusCircle = plusCircle; \ No newline at end of file diff --git a/dist/fa/plusSquare.js b/dist/fa/plusSquare.js new file mode 100644 index 000000000..e383b8f68 --- /dev/null +++ b/dist/fa/plusSquare.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.plusSquare = void 0; +var plusSquare = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1280 960v-128q0-26-19-45t-45-19h-320v-320q0-26-19-45t-45-19h-128q-26 0-45 19t-19 45v320h-320q-26 0-45 19t-19 45v128q0 26 19 45t45 19h320v320q0 26 19 45t45 19h128q26 0 45-19t19-45v-320h320q26 0 45-19t19-45zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.plusSquare = plusSquare; \ No newline at end of file diff --git a/dist/fa/plusSquareO.js b/dist/fa/plusSquareO.js new file mode 100644 index 000000000..0b26533bb --- /dev/null +++ b/dist/fa/plusSquareO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.plusSquareO = void 0; +var plusSquareO = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1152 800v64q0 14-9 23t-23 9h-352v352q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-352h-352q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h352v-352q0-14 9-23t23-9h64q14 0 23 9t9 23v352h352q14 0 23 9t9 23zM1280 1248v-832q0-66-47-113t-113-47h-832q-66 0-113 47t-47 113v832q0 66 47 113t113 47h832q66 0 113-47t47-113zM1408 416v832q0 119-84.5 203.5t-203.5 84.5h-832q-119 0-203.5-84.5t-84.5-203.5v-832q0-119 84.5-203.5t203.5-84.5h832q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.plusSquareO = plusSquareO; \ No newline at end of file diff --git a/dist/fa/podcast.js b/dist/fa/podcast.js new file mode 100644 index 000000000..85b0a3d2e --- /dev/null +++ b/dist/fa/podcast.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.podcast = void 0; +var podcast = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M994 1192q0 86-17 197-31 215-55 313-22 90-152 90t-152-90q-24-98-55-313-17-110-17-197 0-168 224-168t224 168zM1536 768q0 240-134 434t-350 280q-8 3-15-3t-6-15q7-48 10-66 4-32 6-47 1-9 9-12 159-81 255.5-234t96.5-337q0-180-91-330.5t-247-234.5-337-74q-124 7-237 61t-193.5 140.5-128 202-46.5 240.5q1 184 99 336.5t257 231.5q7 3 9 12 3 21 6 45 1 9 5 32.5t6 35.5q1 9-6.5 15t-15.5 2q-148-58-261-169.5t-173.5-264-52.5-319.5q7-143 66-273.5t154.5-227 225-157.5 272.5-70q164-10 315.5 46.5t261 160.5 175 250.5 65.5 308.5zM994 736q0 93-65.5 158.5t-158.5 65.5-158.5-65.5-65.5-158.5 65.5-158.5 158.5-65.5 158.5 65.5 65.5 158.5zM1282 768q0 122-53.5 228.5t-146.5 177.5q-8 6-16 2t-10-14q-6-52-29-92-7-10 3-20 58-54 91-127t33-155q0-111-58.5-204t-157.5-141.5-212-36.5q-133 15-229 113t-109 231q-10 92 23.5 176t98.5 144q10 10 3 20-24 41-29 93-2 9-10 13t-16-2q-95-74-148.5-183t-51.5-234q3-131 69-244t177-181.5 241-74.5q144-7 268 60t196.5 187.5 72.5 263.5z" + } + }] +}; +exports.podcast = podcast; \ No newline at end of file diff --git a/dist/fa/powerOff.js b/dist/fa/powerOff.js new file mode 100644 index 000000000..5a60a5fbd --- /dev/null +++ b/dist/fa/powerOff.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.powerOff = void 0; +var powerOff = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1536 896q0 156-61 298t-164 245-245 164-298 61-298-61-245-164-164-245-61-298q0-182 80.5-343t226.5-270q43-32 95.5-25t83.5 50q32 42 24.5 94.5t-49.5 84.5q-98 74-151.5 181t-53.5 228q0 104 40.5 198.5t109.5 163.5 163.5 109.5 198.5 40.5 198.5-40.5 163.5-109.5 109.5-163.5 40.5-198.5q0-121-53.5-228t-151.5-181q-42-32-49.5-84.5t24.5-94.5q31-43 84-50t95 25q146 109 226.5 270t80.5 343zM896 128v640q0 52-38 90t-90 38-90-38-38-90v-640q0-52 38-90t90-38 90 38 38 90z" + } + }] +}; +exports.powerOff = powerOff; \ No newline at end of file diff --git a/dist/fa/print.js b/dist/fa/print.js new file mode 100644 index 000000000..dedb4a285 --- /dev/null +++ b/dist/fa/print.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.print = void 0; +var print = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M384 1536h896v-256h-896v256zM384 896h896v-384h-160q-40 0-68-28t-28-68v-160h-640v640zM1536 960q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zM1664 960v416q0 13-9.5 22.5t-22.5 9.5h-224v160q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-160h-224q-13 0-22.5-9.5t-9.5-22.5v-416q0-79 56.5-135.5t135.5-56.5h64v-544q0-40 28-68t68-28h672q40 0 88 20t76 48l152 152q28 28 48 76t20 88v256h64q79 0 135.5 56.5t56.5 135.5z" + } + }] +}; +exports.print = print; \ No newline at end of file diff --git a/dist/fa/productHunt.js b/dist/fa/productHunt.js new file mode 100644 index 000000000..94e96d27b --- /dev/null +++ b/dist/fa/productHunt.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.productHunt = void 0; +var productHunt = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1150 762q0 56-39.5 95t-95.5 39h-253v-269h253q56 0 95.5 39.5t39.5 95.5zM1329 762q0-130-91.5-222t-222.5-92h-433v896h180v-269h253q130 0 222-91.5t92-221.5zM1792 896q0 182-71 348t-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71 348 71 286 191 191 286 71 348z" + } + }] +}; +exports.productHunt = productHunt; \ No newline at end of file diff --git a/dist/fa/puzzlePiece.js b/dist/fa/puzzlePiece.js new file mode 100644 index 000000000..89851b659 --- /dev/null +++ b/dist/fa/puzzlePiece.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.puzzlePiece = void 0; +var puzzlePiece = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1664 1098q0 81-44.5 135t-123.5 54q-41 0-77.5-17.5t-59-38-56.5-38-71-17.5q-110 0-110 124 0 39 16 115t15 115v5q-22 0-33 1-34 3-97.5 11.5t-115.5 13.5-98 5q-61 0-103-26.5t-42-83.5q0-37 17.5-71t38-56.5 38-59 17.5-77.5q0-79-54-123.5t-135-44.5q-84 0-143 45.5t-59 127.5q0 43 15 83t33.5 64.5 33.5 53 15 50.5q0 45-46 89-37 35-117 35-95 0-245-24-9-2-27.5-4t-27.5-4l-13-2q-1 0-3-1-2 0-2-1v-1024q2 1 17.5 3.5t34 5 21.5 3.5q150 24 245 24 80 0 117-35 46-44 46-89 0-22-15-50.5t-33.5-53-33.5-64.5-15-83q0-82 59-127.5t144-45.5q80 0 134 44.5t54 123.5q0 41-17.5 77.5t-38 59-38 56.5-17.5 71q0 57 42 83.5t103 26.5q64 0 180-15t163-17v2q-1 2-3.5 17.5t-5 34-3.5 21.5q-24 150-24 245 0 80 35 117 44 46 89 46 22 0 50.5-15t53-33.5 64.5-33.5 83-15q82 0 127.5 59t45.5 143z" + } + }] +}; +exports.puzzlePiece = puzzlePiece; \ No newline at end of file diff --git a/dist/fa/qq.js b/dist/fa/qq.js new file mode 100644 index 000000000..b247d48ec --- /dev/null +++ b/dist/fa/qq.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.qq = void 0; +var qq = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M270 806q-8-19-8-52 0-20 11-49t24-45q-1-22 7.5-53t22.5-43q0-139 92.5-288.5t217.5-209.5q139-66 324-66 133 0 266 55 49 21 90 48t71 56 55 68 42 74 32.5 84.5 25.5 89.5 22 98l1 5q55 83 55 150 0 14-9 40t-9 38q0 1 1.5 3.5t3.5 5 2 3.5q77 114 120.5 214.5t43.5 208.5q0 43-19.5 100t-55.5 57q-9 0-19.5-7.5t-19-17.5-19-26-16-26.5-13.5-26-9-17.5q-1-1-3-1l-5 4q-59 154-132 223 20 20 61.5 38.5t69 41.5 35.5 65q-2 4-4 16t-7 18q-64 97-302 97-53 0-110.5-9t-98-20-104.5-30q-15-5-23-7-14-4-46-4.5t-40-1.5q-41 45-127.5 65t-168.5 20q-35 0-69-1.5t-93-9-101-20.5-74.5-40-32.5-64q0-40 10-59.5t41-48.5q11-2 40.5-13t49.5-12q4 0 14-2 2-2 2-4l-2-3q-48-11-108-105.5t-73-156.5l-5-3q-4 0-12 20-18 41-54.5 74.5t-77.5 37.5h-1q-4 0-6-4.5t-5-5.5q-23-54-23-100 0-275 252-466z" + } + }] +}; +exports.qq = qq; \ No newline at end of file diff --git a/dist/fa/qrcode.js b/dist/fa/qrcode.js new file mode 100644 index 000000000..f86f501dc --- /dev/null +++ b/dist/fa/qrcode.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.qrcode = void 0; +var qrcode = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M384 1152v128h-128v-128h128zM384 384v128h-128v-128h128zM1152 384v128h-128v-128h128zM128 1407h384v-383h-384v383zM128 640h384v-384h-384v384zM896 640h384v-384h-384v384zM640 896v640h-640v-640h640zM1152 1408v128h-128v-128h128zM1408 1408v128h-128v-128h128zM1408 896v384h-384v-128h-128v384h-128v-640h384v128h128v-128h128zM640 128v640h-640v-640h640zM1408 128v640h-640v-640h640z" + } + }] +}; +exports.qrcode = qrcode; \ No newline at end of file diff --git a/dist/fa/question.js b/dist/fa/question.js new file mode 100644 index 000000000..4fc121b1b --- /dev/null +++ b/dist/fa/question.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.question = void 0; +var question = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M704 1256v240q0 16-12 28t-28 12h-240q-16 0-28-12t-12-28v-240q0-16 12-28t28-12h240q16 0 28 12t12 28zM1020 656q0 54-15.5 101t-35 76.5-55 59.5-57.5 43.5-61 35.5q-41 23-68.5 65t-27.5 67q0 17-12 32.5t-28 15.5h-240q-15 0-25.5-18.5t-10.5-37.5v-45q0-83 65-156.5t143-108.5q59-27 84-56t25-76q0-42-46.5-74t-107.5-32q-65 0-108 29-35 25-107 115-13 16-31 16-12 0-25-8l-164-125q-13-10-15.5-25t5.5-28q160-266 464-266 80 0 161 31t146 83 106 127.5 41 158.5z" + } + }] +}; +exports.question = question; \ No newline at end of file diff --git a/dist/fa/questionCircle.js b/dist/fa/questionCircle.js new file mode 100644 index 000000000..0b01d34d5 --- /dev/null +++ b/dist/fa/questionCircle.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.questionCircle = void 0; +var questionCircle = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M896 1376v-192q0-14-9-23t-23-9h-192q-14 0-23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23-9t9-23zM1152 704q0-88-55.5-163t-138.5-116-170-41q-243 0-371 213-15 24 8 42l132 100q7 6 19 6 16 0 25-12 53-68 86-92 34-24 86-24 48 0 85.5 26t37.5 59q0 38-20 61t-68 45q-63 28-115.5 86.5t-52.5 125.5v36q0 14 9 23t23 9h192q14 0 23-9t9-23q0-19 21.5-49.5t54.5-49.5q32-18 49-28.5t46-35 44.5-48 28-60.5 12.5-81zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.questionCircle = questionCircle; \ No newline at end of file diff --git a/dist/fa/questionCircleO.js b/dist/fa/questionCircleO.js new file mode 100644 index 000000000..d601e0ea9 --- /dev/null +++ b/dist/fa/questionCircleO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.questionCircleO = void 0; +var questionCircleO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M880 1200v160q0 14-9 23t-23 9h-160q-14 0-23-9t-9-23v-160q0-14 9-23t23-9h160q14 0 23 9t9 23zM1136 704q0 50-15 90t-45.5 69-52 44-59.5 36q-32 18-46.5 28t-26 24-11.5 29v32q0 14-9 23t-23 9h-160q-14 0-23-9t-9-23v-68q0-35 10.5-64.5t24-47.5 39-35.5 41-25.5 44.5-21q53-25 75-43t22-49q0-42-43.5-71.5t-95.5-29.5q-56 0-95 27-29 20-80 83-9 12-25 12-11 0-19-6l-108-82q-10-7-12-20t5-23q122-192 349-192 129 0 238.5 89.5t109.5 214.5zM768 256q-130 0-248.5 51t-204 136.5-136.5 204-51 248.5 51 248.5 136.5 204 204 136.5 248.5 51 248.5-51 204-136.5 136.5-204 51-248.5-51-248.5-136.5-204-204-136.5-248.5-51zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.questionCircleO = questionCircleO; \ No newline at end of file diff --git a/dist/fa/quora.js b/dist/fa/quora.js new file mode 100644 index 000000000..8d722315b --- /dev/null +++ b/dist/fa/quora.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.quora = void 0; +var quora = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1255 787q0-318-105-474.5t-330-156.5q-222 0-326 157t-104 474q0 316 104 471.5t326 155.5q74 0 131-17-22-43-39-73t-44-65-53.5-56.5-63-36-77.5-14.5q-46 0-79 16l-49-97q105-91 276-91 132 0 215.5 54t150.5 155q67-149 67-402zM1645 1419h117q3 27-2 67t-26.5 95-58 100.5-107 78-162.5 32.5q-71 0-130.5-19t-105.5-56-79-78-66-96q-97 27-205 27-150 0-292.5-58t-253-158.5-178-249-67.5-317.5q0-170 67.5-319.5t178.5-250.5 253.5-159 291.5-58q121 0 238.5 36t217 106 176 164.5 119.5 219 43 261.5q0 190-80.5 347.5t-218.5 264.5q47 70 93.5 106.5t104.5 36.5q61 0 94-37.5t38-85.5z" + } + }] +}; +exports.quora = quora; \ No newline at end of file diff --git a/dist/fa/quoteLeft.js b/dist/fa/quoteLeft.js new file mode 100644 index 000000000..040e9e161 --- /dev/null +++ b/dist/fa/quoteLeft.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.quoteLeft = void 0; +var quoteLeft = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M768 960v384q0 80-56 136t-136 56h-384q-80 0-136-56t-56-136v-704q0-104 40.5-198.5t109.5-163.5 163.5-109.5 198.5-40.5h64q26 0 45 19t19 45v128q0 26-19 45t-45 19h-64q-106 0-181 75t-75 181v32q0 40 28 68t68 28h224q80 0 136 56t56 136zM1664 960v384q0 80-56 136t-136 56h-384q-80 0-136-56t-56-136v-704q0-104 40.5-198.5t109.5-163.5 163.5-109.5 198.5-40.5h64q26 0 45 19t19 45v128q0 26-19 45t-45 19h-64q-106 0-181 75t-75 181v32q0 40 28 68t68 28h224q80 0 136 56t56 136z" + } + }] +}; +exports.quoteLeft = quoteLeft; \ No newline at end of file diff --git a/dist/fa/quoteRight.js b/dist/fa/quoteRight.js new file mode 100644 index 000000000..68ba1026f --- /dev/null +++ b/dist/fa/quoteRight.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.quoteRight = void 0; +var quoteRight = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M768 320v704q0 104-40.5 198.5t-109.5 163.5-163.5 109.5-198.5 40.5h-64q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h64q106 0 181-75t75-181v-32q0-40-28-68t-68-28h-224q-80 0-136-56t-56-136v-384q0-80 56-136t136-56h384q80 0 136 56t56 136zM1664 320v704q0 104-40.5 198.5t-109.5 163.5-163.5 109.5-198.5 40.5h-64q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h64q106 0 181-75t75-181v-32q0-40-28-68t-68-28h-224q-80 0-136-56t-56-136v-384q0-80 56-136t136-56h384q80 0 136 56t56 136z" + } + }] +}; +exports.quoteRight = quoteRight; \ No newline at end of file diff --git a/dist/fa/ra.js b/dist/fa/ra.js new file mode 100644 index 000000000..a304702eb --- /dev/null +++ b/dist/fa/ra.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ra = void 0; +var ra = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M19 874q8-217 116-406t305-318h5q0 1-1 3-8 8-28 33.5t-52 76.5-60 110.5-44.5 135.5-14 150.5 39 157.5 108.5 154q50 50 102 69.5t90.5 11.5 69.5-23.5 47-32.5l16-16q39-51 53-116.5t6.5-122.5-21-107-26.5-80l-14-29q-10-25-30.5-49.5t-43-41-43.5-29.5-35-19l-13-6 104-115q39 17 78 52t59 61l19 27q1-48-18.5-103.5t-40.5-87.5l-20-31 161-183 160 181q-33 46-52.5 102.5t-22.5 90.5l-4 33q22-37 61.5-72.5t67.5-52.5l28-17 103 115q-44 14-85 50t-60 65l-19 29q-31 56-48 133.5t-7 170 57 156.5q33 45 77.5 60.5t85 5.5 76-26.5 57.5-33.5l21-16q60-53 96.5-115t48.5-121.5 10-121.5-18-118-37-107.5-45.5-93-45-72-34.5-47.5l-13-17q-14-13-7-13l10 3q40 29 62.5 46t62 50 64 58 58.5 65 55.5 77 45.5 88 38 103 23.5 117 10.5 136q3 259-108 465t-312 321-456 115q-185 0-351-74t-283.5-198-184-293-60.5-353z" + } + }] +}; +exports.ra = ra; \ No newline at end of file diff --git a/dist/fa/random.js b/dist/fa/random.js new file mode 100644 index 000000000..fbf9f16e7 --- /dev/null +++ b/dist/fa/random.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.random = void 0; +var random = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M666 481q-60 92-137 273-22-45-37-72.5t-40.5-63.5-51-56.5-63-35-81.5-14.5h-224q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h224q250 0 410 225zM1792 1280q0 14-9 23l-320 320q-9 9-23 9-13 0-22.5-9.5t-9.5-22.5v-192q-32 0-85 0.5t-81 1-73-1-71-5-64-10.5-63-18.5-58-28.5-59-40-55-53.5-56-69.5q59-93 136-273 22 45 37 72.5t40.5 63.5 51 56.5 63 35 81.5 14.5h256v-192q0-14 9-23t23-9q12 0 24 10l319 319q9 9 9 23zM1792 384q0 14-9 23l-320 320q-9 9-23 9-13 0-22.5-9.5t-9.5-22.5v-192h-256q-48 0-87 15t-69 45-51 61.5-45 77.5q-32 62-78 171-29 66-49.5 111t-54 105-64 100-74 83-90 68.5-106.5 42-128 16.5h-224q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h224q48 0 87-15t69-45 51-61.5 45-77.5q32-62 78-171 29-66 49.5-111t54-105 64-100 74-83 90-68.5 106.5-42 128-16.5h256v-192q0-14 9-23t23-9q12 0 24 10l319 319q9 9 9 23z" + } + }] +}; +exports.random = random; \ No newline at end of file diff --git a/dist/fa/ravelry.js b/dist/fa/ravelry.js new file mode 100644 index 000000000..e18dd63eb --- /dev/null +++ b/dist/fa/ravelry.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ravelry = void 0; +var ravelry = { + "viewBox": "0 0 2176 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1143 1733q-6-1-11-4-13-8-36-23t-86-65-116.5-104.5-112-140-89.5-172.5q-17-3-175-37 66 213 235 362t391 184zM502 1127l168 28q-25-76-41-167.5t-19-145.5l-4-53q-84 82-121 224 5 65 17 114zM612 518q-43 64-77 148 44-46 74-68zM2049 952q0-161-62-307t-167.5-252-250.5-168.5-304-62.5q-147 0-281 52.5t-240 148.5q-30 58-45 160 60-51 143-83.5t158.5-43 143-13.5 108.5 1l40 3q33 1 53 15.5t24.5 33 6.5 37-1 28.5q-126-11-227.5-0.5t-183 43.5-142.5 71.5-131 98.5q4 36 11.5 92.5t35.5 178 62 179.5q123 6 247.5-14.5t214.5-53.5 162.5-67 109.5-59l37-24q22-16 39.5-20.5t30.5 5 17 34.5q14 97-39 121-208 97-467 134-135 20-317 16 41 96 110 176.5t137 127 130.5 79 101.5 43.5l39 12q143 23 263-15 195-99 314-289t119-418zM2123 915q-14 135-40 212-70 208-181.5 346.5t-318.5 253.5q-48 33-82 44-72 26-163 16-36 3-73 3-283 0-504.5-173t-295.5-442q-1 0-4-0.5t-5-0.5q-6 50 2.5 112.5t26 115 36 98 31.5 71.5l14 26q8 12 54 82-71-38-124.5-106.5t-78.5-140-39.5-137-17.5-107.5l-2-42q-5-2-33.5-12.5t-48.5-18-53-20.5-57.5-25-50-25.5-42.5-27-25-25.5q19 10 50.5 25.5t113 45.5 145.5 38l2-32q11-149 94-290 41-202 176-365 28-115 81-214 15-28 32-45t49-32q158-74 303.5-104t302-11 306.5 97q220 115 333 336t87 474z" + } + }] +}; +exports.ravelry = ravelry; \ No newline at end of file diff --git a/dist/fa/rebel.js b/dist/fa/rebel.js new file mode 100644 index 000000000..856755d4f --- /dev/null +++ b/dist/fa/rebel.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.rebel = void 0; +var rebel = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M19 874q8-217 116-406t305-318h5q0 1-1 3-8 8-28 33.5t-52 76.5-60 110.5-44.5 135.5-14 150.5 39 157.5 108.5 154q50 50 102 69.5t90.5 11.5 69.5-23.5 47-32.5l16-16q39-51 53-116.5t6.5-122.5-21-107-26.5-80l-14-29q-10-25-30.5-49.5t-43-41-43.5-29.5-35-19l-13-6 104-115q39 17 78 52t59 61l19 27q1-48-18.5-103.5t-40.5-87.5l-20-31 161-183 160 181q-33 46-52.5 102.5t-22.5 90.5l-4 33q22-37 61.5-72.5t67.5-52.5l28-17 103 115q-44 14-85 50t-60 65l-19 29q-31 56-48 133.5t-7 170 57 156.5q33 45 77.5 60.5t85 5.5 76-26.5 57.5-33.5l21-16q60-53 96.5-115t48.5-121.5 10-121.5-18-118-37-107.5-45.5-93-45-72-34.5-47.5l-13-17q-14-13-7-13l10 3q40 29 62.5 46t62 50 64 58 58.5 65 55.5 77 45.5 88 38 103 23.5 117 10.5 136q3 259-108 465t-312 321-456 115q-185 0-351-74t-283.5-198-184-293-60.5-353z" + } + }] +}; +exports.rebel = rebel; \ No newline at end of file diff --git a/dist/fa/recycle.js b/dist/fa/recycle.js new file mode 100644 index 000000000..14c109054 --- /dev/null +++ b/dist/fa/recycle.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.recycle = void 0; +var recycle = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M836 1169l-15 368-2 22-420-29q-36-3-67-31.5t-47-65.5q-11-27-14.5-55t4-65 12-55 21.5-64 19-53q78 12 509 28zM449 583l180 379-147-92q-63 72-111.5 144.5t-72.5 125-39.5 94.5-18.5 63l-4 21-190-357q-17-26-18-56t6-47l8-18q35-63 114-188l-140-86zM1680 1100l-188 359q-12 29-36.5 46.5t-43.5 20.5l-18 4q-71 7-219 12l8 164-230-367 211-362 7 173q170 16 283 5t170-33zM895 176q-47 63-265 435l-317-187-19-12 225-356q20-31 60-45t80-10q24 2 48.5 12t42 21 41.5 33 36 34.5 36 39.5 32 35zM1550 483l212 363q18 37 12.5 76t-27.5 74q-13 20-33 37t-38 28-48.5 22-47 16-51.5 14-46 12q-34-72-265-436l313-195zM1407 257l142-83-220 373-419-20 151-86q-34-89-75-166t-75.5-123.5-64.5-80-47-46.5l-17-13 405 1q31-3 58 10.5t39 28.5l11 15q39 61 112 190z" + } + }] +}; +exports.recycle = recycle; \ No newline at end of file diff --git a/dist/fa/reddit.js b/dist/fa/reddit.js new file mode 100644 index 000000000..9791e749e --- /dev/null +++ b/dist/fa/reddit.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.reddit = void 0; +var reddit = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1095 1167q16 16 0 31-62 62-199 62t-199-62q-16-15 0-31 6-6 15-6t15 6q48 49 169 49 120 0 169-49 6-6 15-6t15 6zM788 986q0 37-26 63t-63 26-63.5-26-26.5-63q0-38 26.5-64t63.5-26 63 26.5 26 63.5zM1183 986q0 37-26.5 63t-63.5 26-63-26-26-63 26-63.5 63-26.5 63.5 26 26.5 64zM1434 866q0-49-35-84t-85-35-86 36q-130-90-311-96l63-283 200 45q0 37 26 63t63 26 63.5-26.5 26.5-63.5-26.5-63.5-63.5-26.5q-54 0-80 50l-221-49q-19-5-25 16l-69 312q-180 7-309 97-35-37-87-37-50 0-85 35t-35 84q0 35 18.5 64t49.5 44q-6 27-6 56 0 142 140 243t337 101q198 0 338-101t140-243q0-32-7-57 30-15 48-43.5t18-63.5zM1792 896q0 182-71 348t-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71 348 71 286 191 191 286 71 348z" + } + }] +}; +exports.reddit = reddit; \ No newline at end of file diff --git a/dist/fa/redditAlien.js b/dist/fa/redditAlien.js new file mode 100644 index 000000000..3cf581f4f --- /dev/null +++ b/dist/fa/redditAlien.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.redditAlien = void 0; +var redditAlien = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1792 846q0 58-29.5 105.5t-79.5 72.5q12 46 12 96 0 155-106.5 287t-290.5 208.5-400 76.5-399.5-76.5-290-208.5-106.5-287q0-47 11-94-51-25-82-73.5t-31-106.5q0-82 58-140.5t141-58.5q85 0 145 63 218-152 515-162l116-521q3-13 15-21t26-5l369 81q18-37 54-59.5t79-22.5q62 0 106 43.5t44 105.5-44 106-106 44-105.5-43.5-43.5-105.5l-334-74-104 472q300 9 519 160 58-61 143-61 83 0 141 58.5t58 140.5zM418 1045q0 62 43.5 106t105.5 44 106-44 44-106-44-105.5-106-43.5q-61 0-105 44t-44 105zM1228 1400q11-11 11-26t-11-26q-10-10-25-10t-26 10q-41 42-121 62t-160 20-160-20-121-62q-11-10-26-10t-25 10q-11 10-11 25.5t11 26.5q43 43 118.5 68t122.5 29.5 91 4.5 91-4.5 122.5-29.5 118.5-68zM1225 1195q62 0 105.5-44t43.5-106q0-61-44-105t-105-44q-62 0-106 43.5t-44 105.5 44 106 106 44z" + } + }] +}; +exports.redditAlien = redditAlien; \ No newline at end of file diff --git a/dist/fa/redditSquare.js b/dist/fa/redditSquare.js new file mode 100644 index 000000000..e50aedc4d --- /dev/null +++ b/dist/fa/redditSquare.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.redditSquare = void 0; +var redditSquare = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M939 1129q13 13 0 26-53 53-171 53t-171-53q-13-13 0-26 5-6 13-6t13 6q42 42 145 42t145-42q5-6 13-6t13 6zM676 973q0 31-23 54t-54 23-54-23-23-54q0-32 22.5-54.5t54.5-22.5 54.5 22.5 22.5 54.5zM1014 973q0 31-23 54t-54 23-54-23-23-54q0-32 22.5-54.5t54.5-22.5 54.5 22.5 22.5 54.5zM1229 870q0-42-30-72t-73-30q-42 0-73 31-113-78-267-82l54-243 171 39q1 32 23.5 54t53.5 22q32 0 54.5-22.5t22.5-54.5-22.5-54.5-54.5-22.5q-48 0-69 43l-189-42q-17-5-21 13l-60 268q-154 6-265 83-30-32-74-32-43 0-73 30t-30 72q0 30 16 55t42 38q-5 25-5 48 0 122 120 208.5t289 86.5q170 0 290-86.5t120-208.5q0-25-6-49 25-13 40.5-37.5t15.5-54.5zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.redditSquare = redditSquare; \ No newline at end of file diff --git a/dist/fa/refresh.js b/dist/fa/refresh.js new file mode 100644 index 000000000..fb1d4ff00 --- /dev/null +++ b/dist/fa/refresh.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.refresh = void 0; +var refresh = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1511 1056q0 5-1 7-64 268-268 434.5t-478 166.5q-146 0-282.5-55t-243.5-157l-129 129q-19 19-45 19t-45-19-19-45v-448q0-26 19-45t45-19h448q26 0 45 19t19 45-19 45l-137 137q71 66 161 102t187 36q134 0 250-65t186-179q11-17 53-117 8-23 30-23h192q13 0 22.5 9.5t9.5 22.5zM1536 256v448q0 26-19 45t-45 19h-448q-26 0-45-19t-19-45 19-45l138-138q-148-137-349-137-134 0-250 65t-186 179q-11 17-53 117-8 23-30 23h-199q-13 0-22.5-9.5t-9.5-22.5v-7q65-268 270-434.5t480-166.5q146 0 284 55.5t245 156.5l130-129q19-19 45-19t45 19 19 45z" + } + }] +}; +exports.refresh = refresh; \ No newline at end of file diff --git a/dist/fa/registered.js b/dist/fa/registered.js new file mode 100644 index 000000000..a4a688a38 --- /dev/null +++ b/dist/fa/registered.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.registered = void 0; +var registered = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1042 703q0-88-60-121-33-18-117-18h-123v281h162q66 0 102-37t36-105zM1094 988l205 373q8 17-1 31-8 16-27 16h-152q-20 0-28-17l-194-365h-155v350q0 14-9 23t-23 9h-134q-14 0-23-9t-9-23v-960q0-14 9-23t23-9h294q128 0 190 24 85 31 134 109t49 180q0 92-42.5 165.5t-115.5 109.5q6 10 9 16zM896 160q-150 0-286 58.5t-234.5 157-157 234.5-58.5 286 58.5 286 157 234.5 234.5 157 286 58.5 286-58.5 234.5-157 157-234.5 58.5-286-58.5-286-157-234.5-234.5-157-286-58.5zM1792 896q0 182-71 348t-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71 348 71 286 191 191 286 71 348z" + } + }] +}; +exports.registered = registered; \ No newline at end of file diff --git a/dist/fa/remove.js b/dist/fa/remove.js new file mode 100644 index 000000000..7a04d9b83 --- /dev/null +++ b/dist/fa/remove.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.remove = void 0; +var remove = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1298 1322q0 40-28 68l-136 136q-28 28-68 28t-68-28l-294-294-294 294q-28 28-68 28t-68-28l-136-136q-28-28-28-68t28-68l294-294-294-294q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 294 294-294q28-28 68-28t68 28l136 136q28 28 28 68t-28 68l-294 294 294 294q28 28 28 68z" + } + }] +}; +exports.remove = remove; \ No newline at end of file diff --git a/dist/fa/renren.js b/dist/fa/renren.js new file mode 100644 index 000000000..0a26d0cda --- /dev/null +++ b/dist/fa/renren.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.renren = void 0; +var renren = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1133 1570q-171 94-368 94-196 0-367-94 138-87 235.5-211t131.5-268q35 144 132.5 268t235.5 211zM638 142v485q0 252-126.5 459.5t-330.5 306.5q-181-215-181-495 0-187 83.5-349.5t229.5-269.5 325-137zM1536 898q0 280-181 495-204-99-330.5-306.5t-126.5-459.5v-485q179 30 325 137t229.5 269.5 83.5 349.5z" + } + }] +}; +exports.renren = renren; \ No newline at end of file diff --git a/dist/fa/reorder.js b/dist/fa/reorder.js new file mode 100644 index 000000000..00b51267b --- /dev/null +++ b/dist/fa/reorder.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.reorder = void 0; +var reorder = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1536 1344v128q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1408q26 0 45 19t19 45zM1536 832v128q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1408q26 0 45 19t19 45zM1536 320v128q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1408q26 0 45 19t19 45z" + } + }] +}; +exports.reorder = reorder; \ No newline at end of file diff --git a/dist/fa/repeat.js b/dist/fa/repeat.js new file mode 100644 index 000000000..a9dc5cb28 --- /dev/null +++ b/dist/fa/repeat.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.repeat = void 0; +var repeat = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1536 256v448q0 26-19 45t-45 19h-448q-42 0-59-40-17-39 14-69l138-138q-148-137-349-137-104 0-198.5 40.5t-163.5 109.5-109.5 163.5-40.5 198.5 40.5 198.5 109.5 163.5 163.5 109.5 198.5 40.5q119 0 225-52t179-147q7-10 23-12 15 0 25 9l137 138q9 8 9.5 20.5t-7.5 22.5q-109 132-264 204.5t-327 72.5q-156 0-298-61t-245-164-164-245-61-298 61-298 164-245 245-164 298-61q147 0 284.5 55.5t244.5 156.5l130-129q29-31 70-14 39 17 39 59z" + } + }] +}; +exports.repeat = repeat; \ No newline at end of file diff --git a/dist/fa/reply.js b/dist/fa/reply.js new file mode 100644 index 000000000..71a0d9099 --- /dev/null +++ b/dist/fa/reply.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.reply = void 0; +var reply = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1792 1120q0 166-127 451-3 7-10.5 24t-13.5 30-13 22q-12 17-28 17-15 0-23.5-10t-8.5-25q0-9 2.5-26.5t2.5-23.5q5-68 5-123 0-101-17.5-181t-48.5-138.5-80-101-105.5-69.5-133-42.5-154-21.5-175.5-6h-224v256q0 26-19 45t-45 19-45-19l-512-512q-19-19-19-45t19-45l512-512q19-19 45-19t45 19 19 45v256h224q713 0 875 403 53 134 53 333z" + } + }] +}; +exports.reply = reply; \ No newline at end of file diff --git a/dist/fa/replyAll.js b/dist/fa/replyAll.js new file mode 100644 index 000000000..173b26f36 --- /dev/null +++ b/dist/fa/replyAll.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.replyAll = void 0; +var replyAll = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 1082v70q0 42-39 59-13 5-25 5-27 0-45-19l-512-512q-19-19-19-45t19-45l512-512q29-31 70-14 39 17 39 59v69l-397 398q-19 19-19 45t19 45zM1792 1120q0 58-17 133.5t-38.5 138-48 125-40.5 90.5l-20 40q-8 17-28 17-6 0-9-1-25-8-23-34 43-400-106-565-64-71-170.5-110.5t-267.5-52.5v251q0 42-39 59-13 5-25 5-27 0-45-19l-512-512q-19-19-19-45t19-45l512-512q29-31 70-14 39 17 39 59v262q411 28 599 221 169 173 169 509z" + } + }] +}; +exports.replyAll = replyAll; \ No newline at end of file diff --git a/dist/fa/resistance.js b/dist/fa/resistance.js new file mode 100644 index 000000000..647a57872 --- /dev/null +++ b/dist/fa/resistance.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.resistance = void 0; +var resistance = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M19 874q8-217 116-406t305-318h5q0 1-1 3-8 8-28 33.5t-52 76.5-60 110.5-44.5 135.5-14 150.5 39 157.5 108.5 154q50 50 102 69.5t90.5 11.5 69.5-23.5 47-32.5l16-16q39-51 53-116.5t6.5-122.5-21-107-26.5-80l-14-29q-10-25-30.5-49.5t-43-41-43.5-29.5-35-19l-13-6 104-115q39 17 78 52t59 61l19 27q1-48-18.5-103.5t-40.5-87.5l-20-31 161-183 160 181q-33 46-52.5 102.5t-22.5 90.5l-4 33q22-37 61.5-72.5t67.5-52.5l28-17 103 115q-44 14-85 50t-60 65l-19 29q-31 56-48 133.5t-7 170 57 156.5q33 45 77.5 60.5t85 5.5 76-26.5 57.5-33.5l21-16q60-53 96.5-115t48.5-121.5 10-121.5-18-118-37-107.5-45.5-93-45-72-34.5-47.5l-13-17q-14-13-7-13l10 3q40 29 62.5 46t62 50 64 58 58.5 65 55.5 77 45.5 88 38 103 23.5 117 10.5 136q3 259-108 465t-312 321-456 115q-185 0-351-74t-283.5-198-184-293-60.5-353z" + } + }] +}; +exports.resistance = resistance; \ No newline at end of file diff --git a/dist/fa/retweet.js b/dist/fa/retweet.js new file mode 100644 index 000000000..ff3958dd1 --- /dev/null +++ b/dist/fa/retweet.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.retweet = void 0; +var retweet = { + "viewBox": "0 0 1920 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1280 1504q0 13-9.5 22.5t-22.5 9.5h-960q-8 0-13.5-2t-9-7-5.5-8-3-11.5-1-11.5v-13-11-160-416h-192q-26 0-45-19t-19-45q0-24 15-41l320-384q19-22 49-22t49 22l320 384q15 17 15 41 0 26-19 45t-45 19h-192v384h576q16 0 25 11l160 192q7 10 7 21zM1920 1088q0 24-15 41l-320 384q-20 23-49 23t-49-23l-320-384q-15-17-15-41 0-26 19-45t45-19h192v-384h-576q-16 0-25-12l-160-192q-7-9-7-20 0-13 9.5-22.5t22.5-9.5h960q8 0 13.5 2t9 7 5.5 8 3 11.5 1 11.5v13 11 160 416h192q26 0 45 19t19 45z" + } + }] +}; +exports.retweet = retweet; \ No newline at end of file diff --git a/dist/fa/rmb.js b/dist/fa/rmb.js new file mode 100644 index 000000000..ce928355a --- /dev/null +++ b/dist/fa/rmb.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.rmb = void 0; +var rmb = { + "viewBox": "0 0 1027 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M603 1536h-172q-13 0-22.5-9t-9.5-23v-330h-288q-13 0-22.5-9t-9.5-23v-103q0-13 9.5-22.5t22.5-9.5h288v-85h-288q-13 0-22.5-9t-9.5-23v-104q0-13 9.5-22.5t22.5-9.5h214l-321-578q-8-16 0-32 10-16 28-16h194q19 0 29 18l215 425q19 38 56 125 10-24 30.5-68t27.5-61l191-420q8-19 29-19h191q17 0 27 16 9 14 1 31l-313 579h215q13 0 22.5 9.5t9.5 22.5v104q0 14-9.5 23t-22.5 9h-290v85h290q13 0 22.5 9.5t9.5 22.5v103q0 14-9.5 23t-22.5 9h-290v330q0 13-9.5 22.5t-22.5 9.5z" + } + }] +}; +exports.rmb = rmb; \ No newline at end of file diff --git a/dist/fa/road.js b/dist/fa/road.js new file mode 100644 index 000000000..29d17f484 --- /dev/null +++ b/dist/fa/road.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.road = void 0; +var road = { + "viewBox": "0 0 1920 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1111 996v-4l-24-320q-1-13-11-22.5t-23-9.5h-186q-13 0-23 9.5t-11 22.5l-24 320v4q-1 12 8 20t21 8h244q12 0 21-8t8-20zM1870 1463q0 73-46 73h-704q13 0 22-9.5t8-22.5l-20-256q-1-13-11-22.5t-23-9.5h-272q-13 0-23 9.5t-11 22.5l-20 256q-1 13 8 22.5t22 9.5h-704q-46 0-46-73 0-54 26-116l417-1044q8-19 26-33t38-14h339q-13 0-23 9.5t-11 22.5l-15 192q-1 14 8 23t22 9h166q13 0 22-9t8-23l-15-192q-1-13-11-22.5t-23-9.5h339q20 0 38 14t26 33l417 1044q26 62 26 116z" + } + }] +}; +exports.road = road; \ No newline at end of file diff --git a/dist/fa/rocket.js b/dist/fa/rocket.js new file mode 100644 index 000000000..521fb7c92 --- /dev/null +++ b/dist/fa/rocket.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.rocket = void 0; +var rocket = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1440 448q0-40-28-68t-68-28-68 28-28 68 28 68 68 28 68-28 28-68zM1664 160q0 249-75.5 430.5t-253.5 360.5q-81 80-195 176l-20 379q-2 16-16 26l-384 224q-7 4-16 4-12 0-23-9l-64-64q-13-14-8-32l85-276-281-281-276 85q-3 1-9 1-14 0-23-9l-64-64q-17-19-5-39l224-384q10-14 26-16l379-20q96-114 176-195 188-187 358-258t431-71q14 0 24 9.5t10 22.5z" + } + }] +}; +exports.rocket = rocket; \ No newline at end of file diff --git a/dist/fa/rotateLeft.js b/dist/fa/rotateLeft.js new file mode 100644 index 000000000..a3d44716f --- /dev/null +++ b/dist/fa/rotateLeft.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.rotateLeft = void 0; +var rotateLeft = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1536 896q0 156-61 298t-164 245-245 164-298 61q-172 0-327-72.5t-264-204.5q-7-10-6.5-22.5t8.5-20.5l137-138q10-9 25-9 16 2 23 12 73 95 179 147t225 52q104 0 198.5-40.5t163.5-109.5 109.5-163.5 40.5-198.5-40.5-198.5-109.5-163.5-163.5-109.5-198.5-40.5q-98 0-188 35.5t-160 101.5l137 138q31 30 14 69-17 40-59 40h-448q-26 0-45-19t-19-45v-448q0-42 40-59 39-17 69 14l130 129q107-101 244.5-156.5t284.5-55.5q156 0 298 61t245 164 164 245 61 298z" + } + }] +}; +exports.rotateLeft = rotateLeft; \ No newline at end of file diff --git a/dist/fa/rotateRight.js b/dist/fa/rotateRight.js new file mode 100644 index 000000000..6783197af --- /dev/null +++ b/dist/fa/rotateRight.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.rotateRight = void 0; +var rotateRight = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1536 256v448q0 26-19 45t-45 19h-448q-42 0-59-40-17-39 14-69l138-138q-148-137-349-137-104 0-198.5 40.5t-163.5 109.5-109.5 163.5-40.5 198.5 40.5 198.5 109.5 163.5 163.5 109.5 198.5 40.5q119 0 225-52t179-147q7-10 23-12 15 0 25 9l137 138q9 8 9.5 20.5t-7.5 22.5q-109 132-264 204.5t-327 72.5q-156 0-298-61t-245-164-164-245-61-298 61-298 164-245 245-164 298-61q147 0 284.5 55.5t244.5 156.5l130-129q29-31 70-14 39 17 39 59z" + } + }] +}; +exports.rotateRight = rotateRight; \ No newline at end of file diff --git a/dist/fa/rouble.js b/dist/fa/rouble.js new file mode 100644 index 000000000..d1c91bc15 --- /dev/null +++ b/dist/fa/rouble.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.rouble = void 0; +var rouble = { + "viewBox": "0 0 1280 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1043 565q0-100-65-162t-171-62h-320v448h320q106 0 171-62t65-162zM1280 565q0 193-126.5 315t-326.5 122h-340v118h505q14 0 23 9t9 23v128q0 14-9 23t-23 9h-505v192q0 14-9.5 23t-22.5 9h-167q-14 0-23-9t-9-23v-192h-224q-14 0-23-9t-9-23v-128q0-14 9-23t23-9h224v-118h-224q-14 0-23-9t-9-23v-149q0-13 9-22.5t23-9.5h224v-629q0-14 9-23t23-9h539q200 0 326.5 122t126.5 315z" + } + }] +}; +exports.rouble = rouble; \ No newline at end of file diff --git a/dist/fa/rss.js b/dist/fa/rss.js new file mode 100644 index 000000000..369fd89bf --- /dev/null +++ b/dist/fa/rss.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.rss = void 0; +var rss = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M384 1344q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM896 1467q2 28-17 48-18 21-47 21h-135q-25 0-43-16.5t-20-41.5q-22-229-184.5-391.5t-391.5-184.5q-25-2-41.5-20t-16.5-43v-135q0-29 21-47 17-17 43-17h5q160 13 306 80.5t259 181.5q114 113 181.5 259t80.5 306zM1408 1469q2 27-18 47-18 20-46 20h-143q-26 0-44.5-17.5t-19.5-42.5q-12-215-101-408.5t-231.5-336-336-231.5-408.5-102q-25-1-42.5-19.5t-17.5-43.5v-143q0-28 20-46 18-18 44-18h3q262 13 501.5 120t425.5 294q187 186 294 425.5t120 501.5z" + } + }] +}; +exports.rss = rss; \ No newline at end of file diff --git a/dist/fa/rssSquare.js b/dist/fa/rssSquare.js new file mode 100644 index 000000000..4bdd8b3fc --- /dev/null +++ b/dist/fa/rssSquare.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.rssSquare = void 0; +var rssSquare = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M512 1280q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM863 1374q-13-233-176.5-396.5t-396.5-176.5q-14-1-24 9t-10 23v128q0 13 8.5 22t21.5 10q154 11 264 121t121 264q1 13 10 21.5t22 8.5h128q13 0 23-10t9-24zM1247 1375q-5-154-56-297.5t-139.5-260-205-205-260-139.5-297.5-56q-14-1-23 9-10 10-10 23v128q0 13 9 22t22 10q204 7 378 111.5t278.5 278.5 111.5 378q1 13 10 22t22 9h128q13 0 23-10 11-9 9-23zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.rssSquare = rssSquare; \ No newline at end of file diff --git a/dist/fa/rub.js b/dist/fa/rub.js new file mode 100644 index 000000000..2ae883827 --- /dev/null +++ b/dist/fa/rub.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.rub = void 0; +var rub = { + "viewBox": "0 0 1280 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1043 565q0-100-65-162t-171-62h-320v448h320q106 0 171-62t65-162zM1280 565q0 193-126.5 315t-326.5 122h-340v118h505q14 0 23 9t9 23v128q0 14-9 23t-23 9h-505v192q0 14-9.5 23t-22.5 9h-167q-14 0-23-9t-9-23v-192h-224q-14 0-23-9t-9-23v-128q0-14 9-23t23-9h224v-118h-224q-14 0-23-9t-9-23v-149q0-13 9-22.5t23-9.5h224v-629q0-14 9-23t23-9h539q200 0 326.5 122t126.5 315z" + } + }] +}; +exports.rub = rub; \ No newline at end of file diff --git a/dist/fa/ruble.js b/dist/fa/ruble.js new file mode 100644 index 000000000..0e8d4f41c --- /dev/null +++ b/dist/fa/ruble.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ruble = void 0; +var ruble = { + "viewBox": "0 0 1280 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1043 565q0-100-65-162t-171-62h-320v448h320q106 0 171-62t65-162zM1280 565q0 193-126.5 315t-326.5 122h-340v118h505q14 0 23 9t9 23v128q0 14-9 23t-23 9h-505v192q0 14-9.5 23t-22.5 9h-167q-14 0-23-9t-9-23v-192h-224q-14 0-23-9t-9-23v-128q0-14 9-23t23-9h224v-118h-224q-14 0-23-9t-9-23v-149q0-13 9-22.5t23-9.5h224v-629q0-14 9-23t23-9h539q200 0 326.5 122t126.5 315z" + } + }] +}; +exports.ruble = ruble; \ No newline at end of file diff --git a/dist/fa/rupee.js b/dist/fa/rupee.js new file mode 100644 index 000000000..4eaba1ca2 --- /dev/null +++ b/dist/fa/rupee.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.rupee = void 0; +var rupee = { + "viewBox": "0 0 898 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M898 470v102q0 14-9 23t-23 9h-168q-23 144-129 234t-276 110q167 178 459 536 14 16 4 34-8 18-29 18h-195q-16 0-25-12-306-367-498-571-9-9-9-22v-127q0-13 9.5-22.5t22.5-9.5h112q132 0 212.5-43t102.5-125h-427q-14 0-23-9t-9-23v-102q0-14 9-23t23-9h413q-57-113-268-113h-145q-13 0-22.5-9.5t-9.5-22.5v-133q0-14 9-23t23-9h832q14 0 23 9t9 23v102q0 14-9 23t-23 9h-233q47 61 64 144h171q14 0 23 9t9 23z" + } + }] +}; +exports.rupee = rupee; \ No newline at end of file diff --git a/dist/fa/s15.js b/dist/fa/s15.js new file mode 100644 index 000000000..2cd60f3b3 --- /dev/null +++ b/dist/fa/s15.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.s15 = void 0; +var s15 = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1664 1088v192q0 169-128 286v194q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-118q-63 22-128 22h-768q-65 0-128-22v110q0 17-9.5 28.5t-22.5 11.5h-64q-13 0-22.5-11.5t-9.5-28.5v-186q-128-117-128-286v-192h1536zM704 672q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM768 608q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM704 544q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM832 544q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM768 480q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM704 416q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM1792 928v64q0 14-9 23t-23 9h-1728q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h96v-640q0-106 75-181t181-75q108 0 184 78 46-19 98-12t93 39l22-22q11-11 22 0l42 42q11 11 0 22l-314 314q-11 11-22 0l-42-42q-11-11 0-22l22-22q-36-46-40.5-104t23.5-108q-37-35-88-35-53 0-90.5 37.5t-37.5 90.5v640h1504q14 0 23 9t9 23zM896 480q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM832 416q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM768 352q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM960 416q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM896 352q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM832 288q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM1024 352q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM960 288q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM1088 288q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23z" + } + }] +}; +exports.s15 = s15; \ No newline at end of file diff --git a/dist/fa/safari.js b/dist/fa/safari.js new file mode 100644 index 000000000..028c77382 --- /dev/null +++ b/dist/fa/safari.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.safari = void 0; +var safari = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M949 893q0 26-16.5 45t-41.5 19q-26 0-45-16.5t-19-41.5q0-26 17-45t42-19 44 16.5 19 41.5zM964 951l350-581q-9 8-67.5 62.5t-125.5 116.5-136.5 127-117 110.5-50.5 51.5l-349 580q7-7 67-62t126-116.5 136-127 117-111 50-50.5zM1611 896q0 201-104 371-3-2-17-11t-26.5-16.5-16.5-7.5q-13 0-13 13 0 10 59 44-74 112-184.5 190.5t-241.5 110.5l-16-67q-1-10-15-10-5 0-8 5.5t-2 9.5l16 68q-72 15-146 15-199 0-372-105 1-2 13-20.5t21.5-33.5 9.5-19q0-13-13-13-6 0-17 14.5t-22.5 34.5-13.5 23q-113-75-192-187.5t-110-244.5l69-15q10-3 10-15 0-5-5.5-8t-10.5-2l-68 15q-14-72-14-139 0-206 109-379 2 1 18.5 12t30 19 17.5 8q13 0 13-12 0-6-12.5-15.5t-32.5-21.5l-20-12q77-112 189-189t244-107l15 67q2 10 15 10 5 0 8-5.5t2-10.5l-15-66q71-13 134-13 204 0 379 109-39 56-39 65 0 13 12 13 11 0 48-64 111 75 187.5 186t107.5 241l-56 12q-10 2-10 16 0 5 5.5 8t9.5 2l57-13q14 72 14 140zM1696 896q0-163-63.5-311t-170.5-255-255-170.5-311-63.5-311 63.5-255 170.5-170.5 255-63.5 311 63.5 311 170.5 255 255 170.5 311 63.5 311-63.5 255-170.5 170.5-255 63.5-311zM1792 896q0 182-71 348t-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71 348 71 286 191 191 286 71 348z" + } + }] +}; +exports.safari = safari; \ No newline at end of file diff --git a/dist/fa/save.js b/dist/fa/save.js new file mode 100644 index 000000000..33ad5ac6f --- /dev/null +++ b/dist/fa/save.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.save = void 0; +var save = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M384 1536h768v-384h-768v384zM1280 1536h128v-896q0-14-10-38.5t-20-34.5l-281-281q-10-10-34-20t-39-10v416q0 40-28 68t-68 28h-576q-40 0-68-28t-28-68v-416h-128v1280h128v-416q0-40 28-68t68-28h832q40 0 68 28t28 68v416zM896 608v-320q0-13-9.5-22.5t-22.5-9.5h-192q-13 0-22.5 9.5t-9.5 22.5v320q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5-9.5t9.5-22.5zM1536 640v928q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1344q0-40 28-68t68-28h928q40 0 88 20t76 48l280 280q28 28 48 76t20 88z" + } + }] +}; +exports.save = save; \ No newline at end of file diff --git a/dist/fa/scissors.js b/dist/fa/scissors.js new file mode 100644 index 000000000..21c501572 --- /dev/null +++ b/dist/fa/scissors.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.scissors = void 0; +var scissors = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M960 896q26 0 45 19t19 45-19 45-45 19-45-19-19-45 19-45 45-19zM1260 960l507 398q28 20 25 56-5 35-35 51l-128 64q-13 7-29 7-17 0-31-8l-690-387-110 66q-8 4-12 5 14 49 10 97-7 77-56 147.5t-132 123.5q-132 84-277 84-136 0-222-78-90-84-79-207 7-76 56-147t131-124q132-84 278-84 83 0 151 31 9-13 22-22l122-73-122-73q-13-9-22-22-68 31-151 31-146 0-278-84-82-53-131-124t-56-147q-5-59 15.5-113t63.5-93q85-79 222-79 145 0 277 84 83 52 132 123t56 148q4 48-10 97 4 1 12 5l110 66 690-387q14-8 31-8 16 0 29 7l128 64q30 16 35 51 3 36-25 56zM579 700q46-42 21-108t-106-117q-92-59-192-59-74 0-113 36-46 42-21 108t106 117q92 59 192 59 74 0 113-36zM494 1445q81-51 106-117t-21-108q-39-36-113-36-100 0-192 59-81 51-106 117t21 108q39 36 113 36 100 0 192-59zM672 832l96 58v-11q0-36 33-56l14-8-79-47-26 26q-3 3-10 11t-12 12q-2 2-4 3.5t-3 2.5zM896 1056l96 32 736-576-128-64-768 431v113l-160 96 9 8q2 2 7 6 4 4 11 12t11 12l26 26zM1600 1472l128-64-520-408-177 138q-2 3-13 7z" + } + }] +}; +exports.scissors = scissors; \ No newline at end of file diff --git a/dist/fa/scribd.js b/dist/fa/scribd.js new file mode 100644 index 000000000..38f4d4cd5 --- /dev/null +++ b/dist/fa/scribd.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.scribd = void 0; +var scribd = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1500 1549q0 89-63 152.5t-153 63.5-153.5-63.5-63.5-152.5q0-90 63.5-153.5t153.5-63.5 153 63.5 63 153.5zM1267 1268q-115 15-192.5 102.5t-77.5 205.5q0 74 33 138-146 78-379 78-109 0-201-21t-153.5-54.5-110.5-76.5-76-85-44.5-83-23.5-66.5-6-39.5q0-19 4.5-42.5t18.5-56 36.5-58 64-43.5 94.5-18 94 17.5 63 41 35.5 53 17.5 49 4 33.5q0 34-23 81 28 27 82 42t93 17l40 1q115 0 190-51t75-133q0-26-9-48.5t-31.5-44.5-49.5-41-74-44-93.5-47.5-119.5-56.5q-28-13-43-20-116-55-187-100t-122.5-102-72-125.5-20.5-162.5q0-78 20.5-150t66-137.5 112.5-114 166.5-77 221.5-28.5q120 0 220 26t164.5 67 109.5 94 64 105.5 19 103.5q0 46-15 82.5t-36.5 58-48.5 36-49 19.5-39 5h-8-32t-39-5-44-14-41-28-37-46-24-70.5-10-97.5q-15-16-59-25.5t-81-10.5l-37-1q-68 0-117.5 31t-70.5 70-21 76q0 24 5 43t24 46 53 51 97 53.5 150 58.5q76 25 138.5 53.5t109 55.5 83 59 60.5 59.5 41 62.5 26.5 62 14.5 63.5 6 62 1 62.5z" + } + }] +}; +exports.scribd = scribd; \ No newline at end of file diff --git a/dist/fa/search.js b/dist/fa/search.js new file mode 100644 index 000000000..8fb53e6df --- /dev/null +++ b/dist/fa/search.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.search = void 0; +var search = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1152 832q0-185-131.5-316.5t-316.5-131.5-316.5 131.5-131.5 316.5 131.5 316.5 316.5 131.5 316.5-131.5 131.5-316.5zM1664 1664q0 52-38 90t-90 38q-54 0-90-38l-343-342q-179 124-399 124-143 0-273.5-55.5t-225-150-150-225-55.5-273.5 55.5-273.5 150-225 225-150 273.5-55.5 273.5 55.5 225 150 150 225 55.5 273.5q0 220-124 399l343 343q37 37 37 90z" + } + }] +}; +exports.search = search; \ No newline at end of file diff --git a/dist/fa/searchMinus.js b/dist/fa/searchMinus.js new file mode 100644 index 000000000..76fda5b52 --- /dev/null +++ b/dist/fa/searchMinus.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.searchMinus = void 0; +var searchMinus = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 800v64q0 13-9.5 22.5t-22.5 9.5h-576q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h576q13 0 22.5 9.5t9.5 22.5zM1152 832q0-185-131.5-316.5t-316.5-131.5-316.5 131.5-131.5 316.5 131.5 316.5 316.5 131.5 316.5-131.5 131.5-316.5zM1664 1664q0 53-37.5 90.5t-90.5 37.5q-54 0-90-38l-343-342q-179 124-399 124-143 0-273.5-55.5t-225-150-150-225-55.5-273.5 55.5-273.5 150-225 225-150 273.5-55.5 273.5 55.5 225 150 150 225 55.5 273.5q0 220-124 399l343 343q37 37 37 90z" + } + }] +}; +exports.searchMinus = searchMinus; \ No newline at end of file diff --git a/dist/fa/searchPlus.js b/dist/fa/searchPlus.js new file mode 100644 index 000000000..763463ede --- /dev/null +++ b/dist/fa/searchPlus.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.searchPlus = void 0; +var searchPlus = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 800v64q0 13-9.5 22.5t-22.5 9.5h-224v224q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-224h-224q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h224v-224q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5v224h224q13 0 22.5 9.5t9.5 22.5zM1152 832q0-185-131.5-316.5t-316.5-131.5-316.5 131.5-131.5 316.5 131.5 316.5 316.5 131.5 316.5-131.5 131.5-316.5zM1664 1664q0 53-37.5 90.5t-90.5 37.5q-54 0-90-38l-343-342q-179 124-399 124-143 0-273.5-55.5t-225-150-150-225-55.5-273.5 55.5-273.5 150-225 225-150 273.5-55.5 273.5 55.5 225 150 150 225 55.5 273.5q0 220-124 399l343 343q37 37 37 90z" + } + }] +}; +exports.searchPlus = searchPlus; \ No newline at end of file diff --git a/dist/fa/sellsy.js b/dist/fa/sellsy.js new file mode 100644 index 000000000..2833971f5 --- /dev/null +++ b/dist/fa/sellsy.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.sellsy = void 0; +var sellsy = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1500 1371v-733q0-21-15-36t-35-15h-93q-20 0-35 15t-15 36v733q0 20 15 35t35 15h93q20 0 35-15t15-35zM1216 1371v-531q0-20-15-35t-35-15h-101q-20 0-35 15t-15 35v531q0 20 15 35t35 15h101q20 0 35-15t15-35zM924 1371v-429q0-20-15-35t-35-15h-101q-20 0-35 15t-15 35v429q0 20 15 35t35 15h101q20 0 35-15t15-35zM632 1371v-362q0-20-15-35t-35-15h-101q-20 0-35 15t-15 35v362q0 20 15 35t35 15h101q20 0 35-15t15-35zM2048 1225q0 166-118 284t-284 118h-1244q-166 0-284-118t-118-284q0-116 63-214.5t168-148.5q-10-34-10-73 0-113 80.5-193.5t193.5-80.5q102 0 180 67 45-183 194-300t338-117q149 0 275 73.5t199.5 199.5 73.5 275q0 66-14 122 135 33 221 142.5t86 247.5z" + } + }] +}; +exports.sellsy = sellsy; \ No newline at end of file diff --git a/dist/fa/send.js b/dist/fa/send.js new file mode 100644 index 000000000..94fb342fa --- /dev/null +++ b/dist/fa/send.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.send = void 0; +var send = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1764 11q33 24 27 64l-256 1536q-5 29-32 45-14 8-31 8-11 0-24-5l-453-185-242 295q-18 23-49 23-13 0-22-4-19-7-30.5-23.5t-11.5-36.5v-349l864-1059-1069 925-395-162q-37-14-40-55-2-40 32-59l1664-960q15-9 32-9 20 0 36 11z" + } + }] +}; +exports.send = send; \ No newline at end of file diff --git a/dist/fa/sendO.js b/dist/fa/sendO.js new file mode 100644 index 000000000..251985c31 --- /dev/null +++ b/dist/fa/sendO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.sendO = void 0; +var sendO = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1764 11q33 24 27 64l-256 1536q-5 29-32 45-14 8-31 8-11 0-24-5l-527-215-298 327q-18 21-47 21-14 0-23-4-19-7-30-23.5t-11-36.5v-452l-472-193q-37-14-40-55-3-39 32-59l1664-960q35-21 68 2zM1422 1510l221-1323-1434 827 336 137 863-639-478 797z" + } + }] +}; +exports.sendO = sendO; \ No newline at end of file diff --git a/dist/fa/server.js b/dist/fa/server.js new file mode 100644 index 000000000..66a901487 --- /dev/null +++ b/dist/fa/server.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.server = void 0; +var server = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M128 1408h1024v-128h-1024v128zM128 896h1024v-128h-1024v128zM1696 1344q0-40-28-68t-68-28-68 28-28 68 28 68 68 28 68-28 28-68zM128 384h1024v-128h-1024v128zM1696 832q0-40-28-68t-68-28-68 28-28 68 28 68 68 28 68-28 28-68zM1696 320q0-40-28-68t-68-28-68 28-28 68 28 68 68 28 68-28 28-68zM1792 1152v384h-1792v-384h1792zM1792 640v384h-1792v-384h1792zM1792 128v384h-1792v-384h1792z" + } + }] +}; +exports.server = server; \ No newline at end of file diff --git a/dist/fa/share.js b/dist/fa/share.js new file mode 100644 index 000000000..ed90cc8b2 --- /dev/null +++ b/dist/fa/share.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.share = void 0; +var share = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1792 640q0 26-19 45l-512 512q-19 19-45 19t-45-19-19-45v-256h-224q-98 0-175.5 6t-154 21.5-133 42.5-105.5 69.5-80 101-48.5 138.5-17.5 181q0 55 5 123 0 6 2.5 23.5t2.5 26.5q0 15-8.5 25t-23.5 10q-16 0-28-17-7-9-13-22t-13.5-30-10.5-24q-127-285-127-451 0-199 53-333 162-403 875-403h224v-256q0-26 19-45t45-19 45 19l512 512q19 19 19 45z" + } + }] +}; +exports.share = share; \ No newline at end of file diff --git a/dist/fa/shareAlt.js b/dist/fa/shareAlt.js new file mode 100644 index 000000000..04a6df9a0 --- /dev/null +++ b/dist/fa/shareAlt.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.shareAlt = void 0; +var shareAlt = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1216 1024q133 0 226.5 93.5t93.5 226.5-93.5 226.5-226.5 93.5-226.5-93.5-93.5-226.5q0-12 2-34l-360-180q-92 86-218 86-133 0-226.5-93.5t-93.5-226.5 93.5-226.5 226.5-93.5q126 0 218 86l360-180q-2-22-2-34 0-133 93.5-226.5t226.5-93.5 226.5 93.5 93.5 226.5-93.5 226.5-226.5 93.5q-126 0-218-86l-360 180q2 22 2 34t-2 34l360 180q92-86 218-86z" + } + }] +}; +exports.shareAlt = shareAlt; \ No newline at end of file diff --git a/dist/fa/shareAltSquare.js b/dist/fa/shareAltSquare.js new file mode 100644 index 000000000..8c533d850 --- /dev/null +++ b/dist/fa/shareAltSquare.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.shareAltSquare = void 0; +var shareAltSquare = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1280 1195q0-88-62.5-151t-150.5-63q-84 0-145 58l-241-120q2-16 2-23t-2-23l241-120q61 58 145 58 88 0 150.5-63t62.5-151-62.5-150.5-150.5-62.5-151 62.5-63 150.5q0 7 2 23l-241 120q-62-57-145-57-88 0-150.5 62.5t-62.5 150.5 62.5 150.5 150.5 62.5q83 0 145-57l241 120q-2 16-2 23 0 88 63 150.5t151 62.5 150.5-62.5 62.5-150.5zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.shareAltSquare = shareAltSquare; \ No newline at end of file diff --git a/dist/fa/shareSquare.js b/dist/fa/shareSquare.js new file mode 100644 index 000000000..b6b7df35e --- /dev/null +++ b/dist/fa/shareSquare.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.shareSquare = void 0; +var shareSquare = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1005 1101l352-352q19-19 19-45t-19-45l-352-352q-30-31-69-14-40 17-40 59v160q-119 0-216 19.5t-162.5 51-114 79-76.5 95.5-44.5 109-21.5 111.5-5 110.5q0 181 167 404 11 12 25 12 7 0 13-3 22-9 19-33-44-354 62-473 46-52 130-75.5t224-23.5v160q0 42 40 59 12 5 24 5 26 0 45-19zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.shareSquare = shareSquare; \ No newline at end of file diff --git a/dist/fa/shareSquareO.js b/dist/fa/shareSquareO.js new file mode 100644 index 000000000..9a3fcb95d --- /dev/null +++ b/dist/fa/shareSquareO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.shareSquareO = void 0; +var shareSquareO = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1408 989v259q0 119-84.5 203.5t-203.5 84.5h-832q-119 0-203.5-84.5t-84.5-203.5v-832q0-119 84.5-203.5t203.5-84.5h255v0q13 0 22.5 9.5t9.5 22.5q0 27-26 32-77 26-133 60-10 4-16 4h-112q-66 0-113 47t-47 113v832q0 66 47 113t113 47h832q66 0 113-47t47-113v-214q0-19 18-29 28-13 54-37 16-16 35-8 21 9 21 29zM1645 493l-384 384q-18 19-45 19-12 0-25-5-39-17-39-59v-192h-160q-323 0-438 131-119 137-74 473 3 23-20 34-8 2-12 2-16 0-26-13-10-14-21-31t-39.5-68.5-49.5-99.5-38.5-114-17.5-122q0-49 3.5-91t14-90 28-88 47-81.5 68.5-74 94.5-61.5 124.5-48.5 159.5-30.5 196.5-11h160v-192q0-42 39-59 13-5 25-5 26 0 45 19l384 384q19 19 19 45t-19 45z" + } + }] +}; +exports.shareSquareO = shareSquareO; \ No newline at end of file diff --git a/dist/fa/shekel.js b/dist/fa/shekel.js new file mode 100644 index 000000000..7832910b3 --- /dev/null +++ b/dist/fa/shekel.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.shekel = void 0; +var shekel = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M992 624v496q0 14-9 23t-23 9h-160q-14 0-23-9t-9-23v-496q0-112-80-192t-192-80h-272v1152q0 14-9 23t-23 9h-160q-14 0-23-9t-9-23v-1344q0-14 9-23t23-9h464q135 0 249 66.5t180.5 180.5 66.5 249zM1376 160v880q0 135-66.5 249t-180.5 180.5-249 66.5h-464q-14 0-23-9t-9-23v-960q0-14 9-23t23-9h160q14 0 23 9t9 23v768h272q112 0 192-80t80-192v-880q0-14 9-23t23-9h160q14 0 23 9t9 23z" + } + }] +}; +exports.shekel = shekel; \ No newline at end of file diff --git a/dist/fa/sheqel.js b/dist/fa/sheqel.js new file mode 100644 index 000000000..6bafbae0a --- /dev/null +++ b/dist/fa/sheqel.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.sheqel = void 0; +var sheqel = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M992 624v496q0 14-9 23t-23 9h-160q-14 0-23-9t-9-23v-496q0-112-80-192t-192-80h-272v1152q0 14-9 23t-23 9h-160q-14 0-23-9t-9-23v-1344q0-14 9-23t23-9h464q135 0 249 66.5t180.5 180.5 66.5 249zM1376 160v880q0 135-66.5 249t-180.5 180.5-249 66.5h-464q-14 0-23-9t-9-23v-960q0-14 9-23t23-9h160q14 0 23 9t9 23v768h272q112 0 192-80t80-192v-880q0-14 9-23t23-9h160q14 0 23 9t9 23z" + } + }] +}; +exports.sheqel = sheqel; \ No newline at end of file diff --git a/dist/fa/shield.js b/dist/fa/shield.js new file mode 100644 index 000000000..959fe2ca6 --- /dev/null +++ b/dist/fa/shield.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.shield = void 0; +var shield = { + "viewBox": "0 0 1280 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1088 960v-640h-448v1137q119-63 213-137 235-184 235-360zM1280 192v768q0 86-33.5 170.5t-83 150-118 127.5-126.5 103-121 77.5-89.5 49.5-42.5 20q-12 6-26 6t-26-6q-16-7-42.5-20t-89.5-49.5-121-77.5-126.5-103-118-127.5-83-150-33.5-170.5v-768q0-26 19-45t45-19h1152q26 0 45 19t19 45z" + } + }] +}; +exports.shield = shield; \ No newline at end of file diff --git a/dist/fa/ship.js b/dist/fa/ship.js new file mode 100644 index 000000000..06f237ec4 --- /dev/null +++ b/dist/fa/ship.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ship = void 0; +var ship = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1811 1555q19-19 45-19t45 19l128 128-90 90-83-83-83 83q-18 19-45 19t-45-19l-83-83-83 83q-19 19-45 19t-45-19l-83-83-83 83q-19 19-45 19t-45-19l-83-83-83 83q-19 19-45 19t-45-19l-83-83-83 83q-19 19-45 19t-45-19l-83-83-83 83q-19 19-45 19t-45-19l-83-83-83 83q-19 19-45 19t-45-19l-128-128 90-90 83 83 83-83q19-19 45-19t45 19l83 83 83-83q19-19 45-19t45 19l83 83 83-83q19-19 45-19t45 19l83 83 83-83q19-19 45-19t45 19l83 83 83-83q19-19 45-19t45 19l83 83 83-83q19-19 45-19t45 19l83 83zM237 1517q-19 19-45 19t-45-19l-128-128 90-90 83 82 83-82q19-19 45-19t45 19l83 82 64-64v-293l-210-314q-17-26-7-56.5t40-40.5l177-58v-299h128v-128h256v-128h256v128h256v128h128v299l177 58q30 10 40 40.5t-7 56.5l-210 314v293l19-18q19-19 45-19t45 19l83 82 83-82q19-19 45-19t45 19l128 128-90 90-83-83-83 83q-18 19-45 19t-45-19l-83-83-83 83q-19 19-45 19t-45-19l-83-83-83 83q-19 19-45 19t-45-19l-83-83-83 83q-19 19-45 19t-45-19l-83-83-83 83q-19 19-45 19t-45-19l-83-83-83 83q-19 19-45 19t-45-19l-83-83zM640 384v128l384-128 384 128v-128h-128v-128h-512v128h-128z" + } + }] +}; +exports.ship = ship; \ No newline at end of file diff --git a/dist/fa/shirtsinbulk.js b/dist/fa/shirtsinbulk.js new file mode 100644 index 000000000..b698b1c4e --- /dev/null +++ b/dist/fa/shirtsinbulk.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.shirtsinbulk = void 0; +var shirtsinbulk = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h1536v1392l-776 338-760-338v-1392zM1436 1327v-926h-1336v926l661 294zM1436 301v-201h-1336v201h1336zM181 599v115h-37v-115h37zM181 747v115h-37v-115h37zM181 895v115h-37v-115h37zM181 1043v115h-37v-115h37zM181 1191v115h-37v-115h37zM207 1334l15-34 105 47-15 33zM343 1394l15-34 105 46-15 34zM478 1454l15-34 105 46-15 34zM614 1513l15-33 104 46-15 34zM797 1526l105-46 15 33-105 47zM932 1466l105-46 15 34-105 46zM1068 1406l105-46 15 34-105 46zM1203 1347l105-47 15 34-105 46zM259 147v36h-114v-36h114zM421 147v36h-115v-36h115zM583 147v36h-115v-36h115zM744 147v36h-114v-36h114zM906 147v36h-114v-36h114zM1068 147v36h-115v-36h115zM1230 147v36h-115v-36h115zM1391 147v36h-114v-36h114zM181 487v79h-37v-115h115v36h-78zM421 451v36h-115v-36h115zM583 451v36h-115v-36h115zM744 451v36h-114v-36h114zM906 451v36h-114v-36h114zM1068 451v36h-115v-36h115zM1230 451v36h-115v-36h115zM1355 566v-79h-78v-36h115v115h-37zM1355 714v-115h37v115h-37zM1355 862v-115h37v115h-37zM1355 1010v-115h37v115h-37zM1355 1158v-115h37v115h-37zM1355 1306v-115h37v115h-37zM760 1271q-129 0-221-91.5t-92-221.5q0-129 92-221t221-92q130 0 221.5 92t91.5 221q0 130-91.5 221.5t-221.5 91.5zM595 890q0 36 19.5 56.5t49.5 25 64 7 64 2 49.5 9 19.5 30.5q0 49-112 49-97 0-123-51h-3l-31 63q67 42 162 42 29 0 56.5-5t55.5-16 45.5-33 17.5-53q0-46-27.5-69.5t-67.5-27-79.5-3-67-5-27.5-25.5q0-21 20.5-33t40.5-15 41-3q34 0 70.5 11t51.5 34h3l30-58q-3-1-21-8.5t-22.5-9-19.5-7-22-7-20-4.5-24-4-23-1q-29 0-56.5 5t-54 16.5-43 34-16.5 53.5z" + } + }] +}; +exports.shirtsinbulk = shirtsinbulk; \ No newline at end of file diff --git a/dist/fa/shoppingBag.js b/dist/fa/shoppingBag.js new file mode 100644 index 000000000..df7f3278c --- /dev/null +++ b/dist/fa/shoppingBag.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.shoppingBag = void 0; +var shoppingBag = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1757 1408l35 313q3 28-16 50-19 21-48 21h-1664q-29 0-48-21-19-22-16-50l35-313h1722zM1664 569l86 775h-1708l86-775q3-24 21-40.5t43-16.5h256v128q0 53 37.5 90.5t90.5 37.5 90.5-37.5 37.5-90.5v-128h384v128q0 53 37.5 90.5t90.5 37.5 90.5-37.5 37.5-90.5v-128h256q25 0 43 16.5t21 40.5zM1280 384v256q0 26-19 45t-45 19-45-19-19-45v-256q0-106-75-181t-181-75-181 75-75 181v256q0 26-19 45t-45 19-45-19-19-45v-256q0-159 112.5-271.5t271.5-112.5 271.5 112.5 112.5 271.5z" + } + }] +}; +exports.shoppingBag = shoppingBag; \ No newline at end of file diff --git a/dist/fa/shoppingBasket.js b/dist/fa/shoppingBasket.js new file mode 100644 index 000000000..08339e8dc --- /dev/null +++ b/dist/fa/shoppingBasket.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.shoppingBasket = void 0; +var shoppingBasket = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1920 768q53 0 90.5 37.5t37.5 90.5-37.5 90.5-90.5 37.5h-15l-115 662q-8 46-44 76t-82 30h-1280q-46 0-82-30t-44-76l-115-662h-15q-53 0-90.5-37.5t-37.5-90.5 37.5-90.5 90.5-37.5h1792zM485 1568q26-2 43.5-22.5t15.5-46.5l-32-416q-2-26-22.5-43.5t-46.5-15.5-43.5 22.5-15.5 46.5l32 416q2 25 20.5 42t43.5 17h5zM896 1504v-416q0-26-19-45t-45-19-45 19-19 45v416q0 26 19 45t45 19 45-19 19-45zM1280 1504v-416q0-26-19-45t-45-19-45 19-19 45v416q0 26 19 45t45 19 45-19 19-45zM1632 1509l32-416q2-26-15.5-46.5t-43.5-22.5-46.5 15.5-22.5 43.5l-32 416q-2 26 15.5 46.5t43.5 22.5h5q25 0 43.5-17t20.5-42zM476 292l-93 412h-132l101-441q19-88 89-143.5t160-55.5h167q0-26 19-45t45-19h384q26 0 45 19t19 45h167q90 0 160 55.5t89 143.5l101 441h-132l-93-412q-11-44-45.5-72t-79.5-28h-167q0 26-19 45t-45 19h-384q-26 0-45-19t-19-45h-167q-45 0-79.5 28t-45.5 72z" + } + }] +}; +exports.shoppingBasket = shoppingBasket; \ No newline at end of file diff --git a/dist/fa/shoppingCart.js b/dist/fa/shoppingCart.js new file mode 100644 index 000000000..296a33ea9 --- /dev/null +++ b/dist/fa/shoppingCart.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.shoppingCart = void 0; +var shoppingCart = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 1536q0 52-38 90t-90 38-90-38-38-90 38-90 90-38 90 38 38 90zM1536 1536q0 52-38 90t-90 38-90-38-38-90 38-90 90-38 90 38 38 90zM1664 448v512q0 24-16.5 42.5t-40.5 21.5l-1044 122q13 60 13 70 0 16-24 64h920q26 0 45 19t19 45-19 45-45 19h-1024q-26 0-45-19t-19-45q0-11 8-31.5t16-36 21.5-40 15.5-29.5l-177-823h-204q-26 0-45-19t-19-45 19-45 45-19h256q16 0 28.5 6.5t19.5 15.5 13 24.5 8 26 5.5 29.5 4.5 26h1201q26 0 45 19t19 45z" + } + }] +}; +exports.shoppingCart = shoppingCart; \ No newline at end of file diff --git a/dist/fa/shower.js b/dist/fa/shower.js new file mode 100644 index 000000000..a10076b92 --- /dev/null +++ b/dist/fa/shower.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.shower = void 0; +var shower = { + "viewBox": "0 0 1920 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1433 249q10 10 10 23t-10 23l-626 626q-10 10-23 10t-23-10l-82-82q-10-10-10-23t10-23l44-44q-72-91-81.5-207t46.5-215q-74-71-176-71-106 0-181 75t-75 181v1280h-256v-1280q0-104 40.5-198.5t109.5-163.5 163.5-109.5 198.5-40.5q106 0 201 41t166 115q94-39 197-24.5t185 79.5l44-44q10-10 23-10t23 10zM1344 512q26 0 45 19t19 45-19 45-45 19-45-19-19-45 19-45 45-19zM1600 640q-26 0-45-19t-19-45 19-45 45-19 45 19 19 45-19 45-45 19zM1856 512q26 0 45 19t19 45-19 45-45 19-45-19-19-45 19-45 45-19zM1216 640q26 0 45 19t19 45-19 45-45 19-45-19-19-45 19-45 45-19zM1408 704q0-26 19-45t45-19 45 19 19 45-19 45-45 19-45-19-19-45zM1728 640q26 0 45 19t19 45-19 45-45 19-45-19-19-45 19-45 45-19zM1088 768q26 0 45 19t19 45-19 45-45 19-45-19-19-45 19-45 45-19zM1344 896q-26 0-45-19t-19-45 19-45 45-19 45 19 19 45-19 45-45 19zM1600 768q26 0 45 19t19 45-19 45-45 19-45-19-19-45 19-45 45-19zM1216 1024q-26 0-45-19t-19-45 19-45 45-19 45 19 19 45-19 45-45 19zM1472 896q26 0 45 19t19 45-19 45-45 19-45-19-19-45 19-45 45-19zM1088 1024q26 0 45 19t19 45-19 45-45 19-45-19-19-45 19-45 45-19zM1344 1024q26 0 45 19t19 45-19 45-45 19-45-19-19-45 19-45 45-19zM1216 1152q26 0 45 19t19 45-19 45-45 19-45-19-19-45 19-45 45-19zM1088 1280q26 0 45 19t19 45-19 45-45 19-45-19-19-45 19-45 45-19z" + } + }] +}; +exports.shower = shower; \ No newline at end of file diff --git a/dist/fa/signIn.js b/dist/fa/signIn.js new file mode 100644 index 000000000..ff8c33b24 --- /dev/null +++ b/dist/fa/signIn.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.signIn = void 0; +var signIn = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1184 896q0 26-19 45l-544 544q-19 19-45 19t-45-19-19-45v-288h-448q-26 0-45-19t-19-45v-384q0-26 19-45t45-19h448v-288q0-26 19-45t45-19 45 19l544 544q19 19 19 45zM1536 544v704q0 119-84.5 203.5t-203.5 84.5h-320q-13 0-22.5-9.5t-9.5-22.5q0-4-1-20t-0.5-26.5 3-23.5 10-19.5 20.5-6.5h320q66 0 113-47t47-113v-704q0-66-47-113t-113-47h-288-11-13t-11.5-1-11.5-3-8-5.5-7-9-2-13.5q0-4-1-20t-0.5-26.5 3-23.5 10-19.5 20.5-6.5h320q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.signIn = signIn; \ No newline at end of file diff --git a/dist/fa/signLanguage.js b/dist/fa/signLanguage.js new file mode 100644 index 000000000..774e0f105 --- /dev/null +++ b/dist/fa/signLanguage.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.signLanguage = void 0; +var signLanguage = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M831 673q32 0 59 18l222 148q61 40 110 97l146 170q40 46 29 106l-72 413q-6 32-29.5 53.5t-55.5 25.5l-527 56-352 32h-9q-39 0-67.5-28t-28.5-68q0-37 27-64t65-32l260-32h-448q-41 0-69.5-30t-26.5-71q2-39 32-65t69-26l442-1-521-64q-41-5-66-37t-19-73q6-35 34.5-57.5t65.5-22.5h10l481 60-351-94q-38-10-62-41.5t-18-68.5q6-36 33-58.5t62-22.5q6 0 20 2l448 96 217 37q1 0 3 0.5t3 0.5q23 0 30.5-23t-12.5-36l-186-125q-35-23-42-63.5t18-73.5q27-38 76-38zM761 875l186 125-218-37-5-2-36-38-238-262q-1-1-2.5-3.5t-2.5-3.5q-24-31-18.5-70t37.5-64q31-23 68-17.5t64 33.5l142 147q-2 1-5 3.5t-4 4.5q-32 45-23 99t55 85zM1648 421l15 266q4 73-11 147l-48 219q-12 59-67 87l-106 54q2-62-39-109l-146-170q-53-61-117-103l-222-148q-34-23-76-23-51 0-88 37l-235-312q-25-33-18-73.5t41-63.5q33-22 71.5-14t62.5 40l266 352-262-455q-21-35-10.5-75t47.5-59q35-18 72.5-6t57.5 46l241 420-136-337q-15-35-4.5-74t44.5-56q37-19 76-6t56 51l193 415 101 196q8 15 23 17.5t27-7.5 11-26l-12-224q-2-41 26-71t69-31q39 0 67 28.5t30 67.5z" + } + }] +}; +exports.signLanguage = signLanguage; \ No newline at end of file diff --git a/dist/fa/signOut.js b/dist/fa/signOut.js new file mode 100644 index 000000000..d4c13b3db --- /dev/null +++ b/dist/fa/signOut.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.signOut = void 0; +var signOut = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 1440q0 4 1 20t0.5 26.5-3 23.5-10 19.5-20.5 6.5h-320q-119 0-203.5-84.5t-84.5-203.5v-704q0-119 84.5-203.5t203.5-84.5h320q13 0 22.5 9.5t9.5 22.5q0 4 1 20t0.5 26.5-3 23.5-10 19.5-20.5 6.5h-320q-66 0-113 47t-47 113v704q0 66 47 113t113 47h288 11 13t11.5 1 11.5 3 8 5.5 7 9 2 13.5zM1568 896q0 26-19 45l-544 544q-19 19-45 19t-45-19-19-45v-288h-448q-26 0-45-19t-19-45v-384q0-26 19-45t45-19h448v-288q0-26 19-45t45-19 45 19l544 544q19 19 19 45z" + } + }] +}; +exports.signOut = signOut; \ No newline at end of file diff --git a/dist/fa/signal.js b/dist/fa/signal.js new file mode 100644 index 000000000..a86c0777c --- /dev/null +++ b/dist/fa/signal.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.signal = void 0; +var signal = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M256 1440v192q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h192q14 0 23 9t9 23zM640 1312v320q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-320q0-14 9-23t23-9h192q14 0 23 9t9 23zM1024 1056v576q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-576q0-14 9-23t23-9h192q14 0 23 9t9 23zM1408 672v960q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-960q0-14 9-23t23-9h192q14 0 23 9t9 23zM1792 160v1472q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-1472q0-14 9-23t23-9h192q14 0 23 9t9 23z" + } + }] +}; +exports.signal = signal; \ No newline at end of file diff --git a/dist/fa/signing.js b/dist/fa/signing.js new file mode 100644 index 000000000..c19cc5a9f --- /dev/null +++ b/dist/fa/signing.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.signing = void 0; +var signing = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M831 673q32 0 59 18l222 148q61 40 110 97l146 170q40 46 29 106l-72 413q-6 32-29.5 53.5t-55.5 25.5l-527 56-352 32h-9q-39 0-67.5-28t-28.5-68q0-37 27-64t65-32l260-32h-448q-41 0-69.5-30t-26.5-71q2-39 32-65t69-26l442-1-521-64q-41-5-66-37t-19-73q6-35 34.5-57.5t65.5-22.5h10l481 60-351-94q-38-10-62-41.5t-18-68.5q6-36 33-58.5t62-22.5q6 0 20 2l448 96 217 37q1 0 3 0.5t3 0.5q23 0 30.5-23t-12.5-36l-186-125q-35-23-42-63.5t18-73.5q27-38 76-38zM761 875l186 125-218-37-5-2-36-38-238-262q-1-1-2.5-3.5t-2.5-3.5q-24-31-18.5-70t37.5-64q31-23 68-17.5t64 33.5l142 147q-2 1-5 3.5t-4 4.5q-32 45-23 99t55 85zM1648 421l15 266q4 73-11 147l-48 219q-12 59-67 87l-106 54q2-62-39-109l-146-170q-53-61-117-103l-222-148q-34-23-76-23-51 0-88 37l-235-312q-25-33-18-73.5t41-63.5q33-22 71.5-14t62.5 40l266 352-262-455q-21-35-10.5-75t47.5-59q35-18 72.5-6t57.5 46l241 420-136-337q-15-35-4.5-74t44.5-56q37-19 76-6t56 51l193 415 101 196q8 15 23 17.5t27-7.5 11-26l-12-224q-2-41 26-71t69-31q39 0 67 28.5t30 67.5z" + } + }] +}; +exports.signing = signing; \ No newline at end of file diff --git a/dist/fa/simplybuilt.js b/dist/fa/simplybuilt.js new file mode 100644 index 000000000..79a108e42 --- /dev/null +++ b/dist/fa/simplybuilt.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.simplybuilt = void 0; +var simplybuilt = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M863 1032q0-112-79.5-191.5t-191.5-79.5-191 79.5-79 191.5 79 191 191 79 191.5-79 79.5-191zM1726 1031q0-112-79-191t-191-79-191.5 79-79.5 191q0 113 79.5 192t191.5 79 191-79.5 79-191.5zM2048 222v1348q0 44-31.5 75.5t-76.5 31.5h-1832q-45 0-76.5-31.5t-31.5-75.5v-1348q0-44 31.5-75.5t76.5-31.5h431q44 0 76 31.5t32 75.5v161h754v-161q0-44 32-75.5t76-31.5h431q45 0 76.5 31.5t31.5 75.5z" + } + }] +}; +exports.simplybuilt = simplybuilt; \ No newline at end of file diff --git a/dist/fa/sitemap.js b/dist/fa/sitemap.js new file mode 100644 index 000000000..3ae98eb09 --- /dev/null +++ b/dist/fa/sitemap.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.sitemap = void 0; +var sitemap = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1792 1248v320q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-320q0-40 28-68t68-28h96v-192h-512v192h96q40 0 68 28t28 68v320q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-320q0-40 28-68t68-28h96v-192h-512v192h96q40 0 68 28t28 68v320q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-320q0-40 28-68t68-28h96v-192q0-52 38-90t90-38h512v-192h-96q-40 0-68-28t-28-68v-320q0-40 28-68t68-28h320q40 0 68 28t28 68v320q0 40-28 68t-68 28h-96v192h512q52 0 90 38t38 90v192h96q40 0 68 28t28 68z" + } + }] +}; +exports.sitemap = sitemap; \ No newline at end of file diff --git a/dist/fa/skyatlas.js b/dist/fa/skyatlas.js new file mode 100644 index 000000000..7724b039d --- /dev/null +++ b/dist/fa/skyatlas.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.skyatlas = void 0; +var skyatlas = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1430 583zM1690 787q148 0 253 98.5t105 244.5q0 157-109 261.5t-267 104.5q-85 0-162-27.5t-138-73.5-118-106-109-126-103.5-132.5-108.5-126.5-117-106-136-73.5-159-27.5q-154 0-251.5 91.5t-97.5 244.5q0 157 104 250t263 93q100 0 208-37.5t193-98.5q5-4 21-18.5t30-24 22-9.5q14 0 24.5 10.5t10.5 24.5q0 24-60 77-101 88-234.5 142t-260.5 54q-133 0-245.5-58t-180-165-67.5-241q0-205 141.5-341t347.5-136q120 0 226.5 43.5t185.5 113 151.5 153 139 167.5 133.5 153.5 149.5 113 172.5 43.5q102 0 168.5-61.5t66.5-162.5q0-95-64.5-159t-159.5-64q-30 0-81.5 18.5t-68.5 18.5q-20 0-35.5-15t-15.5-35q0-18 8.5-57t8.5-59q0-159-107.5-263t-266.5-104q-58 0-111.5 18.5t-84 40.5-55.5 40.5-33 18.5q-15 0-25.5-10.5t-10.5-25.5q0-19 25-46 59-67 147-103.5t182-36.5q191 0 318 125.5t127 315.5q0 37-4 66 57-15 115-15z" + } + }] +}; +exports.skyatlas = skyatlas; \ No newline at end of file diff --git a/dist/fa/skype.js b/dist/fa/skype.js new file mode 100644 index 000000000..7cf472137 --- /dev/null +++ b/dist/fa/skype.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.skype = void 0; +var skype = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1173 1063q0-50-19.5-91.5t-48.5-68.5-73-49-82.5-34-87.5-23l-104-24q-30-7-44-10.5t-35-11.5-30-16-16.5-21-7.5-30q0-77 144-77 43 0 77 12t54 28.5 38 33.5 40 29 48 12q47 0 75.5-32t28.5-77q0-55-56-99.5t-142-67.5-182-23q-68 0-132 15.5t-119.5 47-89 87-33.5 128.5q0 61 19 106.5t56 75.5 80 48.5 103 32.5l146 36q90 22 112 36 32 20 32 60 0 39-40 64.5t-105 25.5q-51 0-91.5-16t-65-38.5-45.5-45-46-38.5-54-16q-50 0-75.5 30t-25.5 75q0 92 122 157.5t291 65.5q73 0 140-18.5t122.5-53.5 88.5-93.5 33-131.5zM1536 1280q0 159-112.5 271.5t-271.5 112.5q-130 0-234-80-77 16-150 16-143 0-273.5-55.5t-225-150-150-225-55.5-273.5q0-73 16-150-80-104-80-234 0-159 112.5-271.5t271.5-112.5q130 0 234 80 77-16 150-16 143 0 273.5 55.5t225 150 150 225 55.5 273.5q0 73-16 150 80 104 80 234z" + } + }] +}; +exports.skype = skype; \ No newline at end of file diff --git a/dist/fa/slack.js b/dist/fa/slack.js new file mode 100644 index 000000000..08786f807 --- /dev/null +++ b/dist/fa/slack.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.slack = void 0; +var slack = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1519 776q62 0 103.5 40.5t41.5 101.5q0 97-93 130l-172 59 56 167q7 21 7 47 0 59-42 102t-101 43q-47 0-85.5-27t-53.5-72l-55-165-310 106 55 164q8 24 8 47 0 59-42 102t-102 43q-47 0-85-27t-53-72l-55-163-153 53q-29 9-50 9-61 0-101.5-40t-40.5-101q0-47 27.5-85t71.5-53l156-53-105-313-156 54q-26 8-48 8-60 0-101-40.5t-41-100.5q0-47 27.5-85t71.5-53l157-53-53-159q-8-24-8-47 0-60 42-102.5t102-42.5q47 0 85 27t53 72l54 160 310-105-54-160q-8-24-8-47 0-59 42.5-102t101.5-43q47 0 85.5 27.5t53.5 71.5l53 161 162-55q21-6 43-6 60 0 102.5 39.5t42.5 98.5q0 45-30 81.5t-74 51.5l-157 54 105 316 164-56q24-8 46-8zM725 1038l310-105-105-315-310 107z" + } + }] +}; +exports.slack = slack; \ No newline at end of file diff --git a/dist/fa/sliders.js b/dist/fa/sliders.js new file mode 100644 index 000000000..ab96b1c25 --- /dev/null +++ b/dist/fa/sliders.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.sliders = void 0; +var sliders = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M352 1408v128h-352v-128h352zM704 1280q26 0 45 19t19 45v256q0 26-19 45t-45 19h-256q-26 0-45-19t-19-45v-256q0-26 19-45t45-19h256zM864 896v128h-864v-128h864zM224 384v128h-224v-128h224zM1536 1408v128h-736v-128h736zM576 256q26 0 45 19t19 45v256q0 26-19 45t-45 19h-256q-26 0-45-19t-19-45v-256q0-26 19-45t45-19h256zM1216 768q26 0 45 19t19 45v256q0 26-19 45t-45 19h-256q-26 0-45-19t-19-45v-256q0-26 19-45t45-19h256zM1536 896v128h-224v-128h224zM1536 384v128h-864v-128h864z" + } + }] +}; +exports.sliders = sliders; \ No newline at end of file diff --git a/dist/fa/slideshare.js b/dist/fa/slideshare.js new file mode 100644 index 000000000..857a6516d --- /dev/null +++ b/dist/fa/slideshare.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.slideshare = void 0; +var slideshare = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M873 740q0 83-63.5 142.5t-152.5 59.5-152.5-59.5-63.5-142.5q0-84 63.5-143t152.5-59 152.5 59 63.5 143zM1375 740q0 83-63 142.5t-153 59.5q-89 0-152.5-59.5t-63.5-142.5q0-84 63.5-143t152.5-59q90 0 153 59t63 143zM1600 920v-667q0-87-32-123.5t-111-36.5h-1112q-83 0-112.5 34t-29.5 126v673q43 23 88.5 40t81 28 81 18.5 71 11 70 4 58.5 0.5 56.5-2 44.5-2q68-1 95 27 6 6 10 9 26 25 61 51 7-91 118-87 5 0 36.5 1.5t43 2 45.5 1 53-1 54.5-4.5 61-8.5 62-13.5 67-19.5 67.5-27 72-34.5zM1763 915q-121 149-372 252 84 285-23 465-66 113-183 148-104 32-182-15-86-51-82-164l-1-326v-1q-8-2-24.5-6t-23.5-5l-1 338q4 114-83 164-79 47-183 15-117-36-182-150-105-180-22-463-251-103-372-252-25-37-4-63t60 1q4 2 11.5 7t10.5 8v-694q0-72 47-123t114-51h1257q67 0 114 51t47 123v694l21-15q39-27 60-1t-4 63z" + } + }] +}; +exports.slideshare = slideshare; \ No newline at end of file diff --git a/dist/fa/smileO.js b/dist/fa/smileO.js new file mode 100644 index 000000000..65709ac5d --- /dev/null +++ b/dist/fa/smileO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.smileO = void 0; +var smileO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1134 1075q-37 121-138 195t-228 74-228-74-138-195q-8-25 4-48.5t38-31.5q25-8 48.5 4t31.5 38q25 80 92.5 129.5t151.5 49.5 151.5-49.5 92.5-129.5q8-26 32-38t49-4 37 31.5 4 48.5zM640 640q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5 90.5 37.5 37.5 90.5zM1152 640q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5 90.5 37.5 37.5 90.5zM1408 896q0-130-51-248.5t-136.5-204-204-136.5-248.5-51-248.5 51-204 136.5-136.5 204-51 248.5 51 248.5 136.5 204 204 136.5 248.5 51 248.5-51 204-136.5 136.5-204 51-248.5zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.smileO = smileO; \ No newline at end of file diff --git a/dist/fa/snapchat.js b/dist/fa/snapchat.js new file mode 100644 index 000000000..1c5d6b6ab --- /dev/null +++ b/dist/fa/snapchat.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.snapchat = void 0; +var snapchat = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1279 1148q0-22-22-27-67-15-118-59t-80-108q-7-19-7-25 0-15 19.5-26t43-17 43-20.5 19.5-36.5q0-19-18.5-31.5t-38.5-12.5q-12 0-32 8t-31 8q-4 0-12-2 5-95 5-114 0-79-17-114-36-78-103-121.5t-152-43.5q-199 0-275 165-17 35-17 114 0 19 5 114-4 2-14 2-12 0-32-7.5t-30-7.5q-21 0-38.5 12t-17.5 32q0 21 19.5 35.5t43 20.5 43 17 19.5 26q0 6-7 25-64 138-198 167-22 5-22 27 0 46 137 68 2 5 6 26t11.5 30.5 23.5 9.5q12 0 37.5-4.5t39.5-4.5q35 0 67 15t54 32.5 57.5 32.5 76.5 15q43 0 79-15t57.5-32.5 53.5-32.5 67-15q14 0 39.5 4t38.5 4q16 0 23-10t11-30 6-25q137-22 137-68zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.snapchat = snapchat; \ No newline at end of file diff --git a/dist/fa/snapchatGhost.js b/dist/fa/snapchatGhost.js new file mode 100644 index 000000000..1cc040b83 --- /dev/null +++ b/dist/fa/snapchatGhost.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.snapchatGhost = void 0; +var snapchatGhost = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M848 128q134-1 240.5 68.5t163.5 192.5q27 58 27 179 0 47-9 191 14 7 28 7 18 0 51-13.5t51-13.5q29 0 56 18t27 46q0 32-31.5 54t-69 31.5-69 29-31.5 47.5q0 15 12 43 37 82 102.5 150t144.5 101q28 12 80 23 28 6 28 35 0 70-219 103-7 11-11 39t-14 46.5-33 18.5q-20 0-62-6.5t-64-6.5q-37 0-62 5-32 5-63 22.5t-58 38-58 40.5-76 33.5-99 13.5q-52 0-96.5-13.5t-75-33.5-57.5-40.5-58-38-62-22.5q-26-5-63-5-24 0-65.5 7.5t-58.5 7.5q-25 0-35-18.5t-14-47.5-11-40q-219-33-219-103 0-29 28-35 52-11 80-23 78-32 144.5-101t102.5-150q12-28 12-43 0-28-31.5-47.5t-69.5-29.5-69.5-31.5-31.5-52.5q0-27 26-45.5t55-18.5q15 0 48 13t53 13q18 0 32-7-9-142-9-190 0-122 27-180 64-137 172-198t264-63z" + } + }] +}; +exports.snapchatGhost = snapchatGhost; \ No newline at end of file diff --git a/dist/fa/snapchatSquare.js b/dist/fa/snapchatSquare.js new file mode 100644 index 000000000..3dd885b83 --- /dev/null +++ b/dist/fa/snapchatSquare.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.snapchatSquare = void 0; +var snapchatSquare = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1280 1148q0-22-22-27-67-14-118-58t-80-109q-7-14-7-25 0-15 19.5-26t42.5-17 42.5-20.5 19.5-36.5q0-19-18.5-31.5t-38.5-12.5q-11 0-31 8t-32 8q-4 0-12-2 5-63 5-115 0-78-17-114-36-78-102.5-121.5t-152.5-43.5q-198 0-275 165-18 38-18 115 0 38 6 114-10 2-15 2-11 0-31.5-8t-30.5-8q-20 0-37.5 12.5t-17.5 32.5q0 21 19.5 35.5t42.5 20.5 42.5 17 19.5 26q0 11-7 25-64 138-198 167-22 5-22 27 0 47 138 69 2 5 6 26t11 30.5 23 9.5q13 0 38.5-5t38.5-5q35 0 67.5 15t54.5 32.5 57.5 32.5 76.5 15q43 0 79-15t57.5-32.5 54-32.5 67.5-15q13 0 39 4.5t39 4.5q15 0 22.5-9.5t11.5-31 5-24.5q138-22 138-69zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.snapchatSquare = snapchatSquare; \ No newline at end of file diff --git a/dist/fa/snowflakeO.js b/dist/fa/snowflakeO.js new file mode 100644 index 000000000..6b135a4a6 --- /dev/null +++ b/dist/fa/snowflakeO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.snowflakeO = void 0; +var snowflakeO = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1566 1117l-167 33 186 107q23 13 29.5 38.5t-6.5 48.5q-14 23-39 29.5t-48-6.5l-186-106 55 160q13 38-12 63.5t-60.5 20.5-48.5-42l-102-300-271-156v313l208 238q16 18 17 39t-11 36.5-28.5 25-37 5.5-36.5-22l-112-128v214q0 26-19 45t-45 19-45-19-19-45v-214l-112 128q-16 18-36.5 22t-37-5.5-28.5-25-11-36.5 17-39l208-238v-313l-271 156-102 300q-13 37-48.5 42t-60.5-20.5-12-63.5l55-160-186 106q-23 13-48 6.5t-39-29.5q-13-23-6.5-48.5t29.5-38.5l186-107-167-33q-29-6-42-29t-8.5-46.5 25.5-40 50-10.5l310 62 271-157-271-157-310 62q-4 1-13 1-27 0-44-18t-19-40 11-43 40-26l167-33-186-107q-23-13-29.5-38.5t6.5-48.5 39-30 48 7l186 106-55-160q-13-38 12-63.5t60.5-20.5 48.5 42l102 300 271 156v-313l-208-238q-16-18-17-39t11-36.5 28.5-25 37-5.5 36.5 22l112 128v-214q0-26 19-45t45-19 45 19 19 45v214l112-128q16-18 36.5-22t37 5.5 28.5 25 11 36.5-17 39l-208 238v313l271-156 102-300q13-37 48.5-42t60.5 20.5 12 63.5l-55 160 186-106q23-13 48-6.5t39 29.5q13 23 6.5 48.5t-29.5 38.5l-186 107 167 33q27 5 40 26t11 43-19 40-44 18q-9 0-13-1l-310-62-271 157 271 157 310-62q29-6 50 10.5t25.5 40-8.5 46.5-42 29z" + } + }] +}; +exports.snowflakeO = snowflakeO; \ No newline at end of file diff --git a/dist/fa/soccerBallO.js b/dist/fa/soccerBallO.js new file mode 100644 index 000000000..d663218d9 --- /dev/null +++ b/dist/fa/soccerBallO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.soccerBallO = void 0; +var soccerBallO = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M609 816l287-208 287 208-109 336h-355zM896 0q182 0 348 71t286 191 191 286 71 348-71 348-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71zM1515 1350q149-203 149-454v-3l-102 89-240-224 63-323 134 12q-150-206-389-282l53 124-287 159-287-159 53-124q-239 76-389 282l135-12 62 323-240 224-102-89v3q0 251 149 454l30-132 326 40 139 298-116 69q117 39 240 39t240-39l-116-69 139-298 326-40z" + } + }] +}; +exports.soccerBallO = soccerBallO; \ No newline at end of file diff --git a/dist/fa/sort.js b/dist/fa/sort.js new file mode 100644 index 000000000..9e4725117 --- /dev/null +++ b/dist/fa/sort.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.sort = void 0; +var sort = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 1088q0 26-19 45l-448 448q-19 19-45 19t-45-19l-448-448q-19-19-19-45t19-45 45-19h896q26 0 45 19t19 45zM1024 704q0 26-19 45t-45 19h-896q-26 0-45-19t-19-45 19-45l448-448q19-19 45-19t45 19l448 448q19 19 19 45z" + } + }] +}; +exports.sort = sort; \ No newline at end of file diff --git a/dist/fa/sortAlphaAsc.js b/dist/fa/sortAlphaAsc.js new file mode 100644 index 000000000..ac93c15d4 --- /dev/null +++ b/dist/fa/sortAlphaAsc.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.sortAlphaAsc = void 0; +var sortAlphaAsc = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1191 408h177l-72-218-12-47q-2-16-2-20h-4l-3 20q0 1-3.5 18t-7.5 29zM736 1440q0 12-10 24l-319 319q-10 9-23 9-12 0-23-9l-320-320q-15-16-7-35 8-20 30-20h192v-1376q0-14 9-23t23-9h192q14 0 23 9t9 23v1376h192q14 0 23 9t9 23zM1572 1559v233h-584v-90l369-529q12-18 21-27l11-9v-3q-2 0-6.5 0.5t-7.5 0.5q-12 3-30 3h-232v115h-120v-229h567v89l-369 530q-6 8-21 26l-11 11v2l14-2q9-2 30-2h248v-119h121zM1661 662v106h-288v-106h75l-47-144h-243l-47 144h75v106h-287v-106h70l230-662h162l230 662h70z" + } + }] +}; +exports.sortAlphaAsc = sortAlphaAsc; \ No newline at end of file diff --git a/dist/fa/sortAlphaDesc.js b/dist/fa/sortAlphaDesc.js new file mode 100644 index 000000000..a655a406b --- /dev/null +++ b/dist/fa/sortAlphaDesc.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.sortAlphaDesc = void 0; +var sortAlphaDesc = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1191 1432h177l-72-218-12-47q-2-16-2-20h-4l-3 20q0 1-3.5 18t-7.5 29zM736 1440q0 12-10 24l-319 319q-10 9-23 9-12 0-23-9l-320-320q-15-16-7-35 8-20 30-20h192v-1376q0-14 9-23t23-9h192q14 0 23 9t9 23v1376h192q14 0 23 9t9 23zM1661 1686v106h-288v-106h75l-47-144h-243l-47 144h75v106h-287v-106h70l230-662h162l230 662h70zM1572 535v233h-584v-90l369-529q12-18 21-27l11-9v-3q-2 0-6.5 0.5t-7.5 0.5q-12 3-30 3h-232v115h-120v-229h567v89l-369 530q-6 8-21 26l-11 10v3l14-3q9-1 30-1h248v-119h121z" + } + }] +}; +exports.sortAlphaDesc = sortAlphaDesc; \ No newline at end of file diff --git a/dist/fa/sortAmountAsc.js b/dist/fa/sortAmountAsc.js new file mode 100644 index 000000000..56f178508 --- /dev/null +++ b/dist/fa/sortAmountAsc.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.sortAmountAsc = void 0; +var sortAmountAsc = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M736 1440q0 12-10 24l-319 319q-10 9-23 9-12 0-23-9l-320-320q-15-16-7-35 8-20 30-20h192v-1376q0-14 9-23t23-9h192q14 0 23 9t9 23v1376h192q14 0 23 9t9 23zM1792 1568v192q0 14-9 23t-23 9h-832q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h832q14 0 23 9t9 23zM1600 1056v192q0 14-9 23t-23 9h-640q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h640q14 0 23 9t9 23zM1408 544v192q0 14-9 23t-23 9h-448q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h448q14 0 23 9t9 23zM1216 32v192q0 14-9 23t-23 9h-256q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h256q14 0 23 9t9 23z" + } + }] +}; +exports.sortAmountAsc = sortAmountAsc; \ No newline at end of file diff --git a/dist/fa/sortAmountDesc.js b/dist/fa/sortAmountDesc.js new file mode 100644 index 000000000..e330e594e --- /dev/null +++ b/dist/fa/sortAmountDesc.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.sortAmountDesc = void 0; +var sortAmountDesc = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1216 1568v192q0 14-9 23t-23 9h-256q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h256q14 0 23 9t9 23zM736 1440q0 12-10 24l-319 319q-10 9-23 9-12 0-23-9l-320-320q-15-16-7-35 8-20 30-20h192v-1376q0-14 9-23t23-9h192q14 0 23 9t9 23v1376h192q14 0 23 9t9 23zM1408 1056v192q0 14-9 23t-23 9h-448q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h448q14 0 23 9t9 23zM1600 544v192q0 14-9 23t-23 9h-640q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h640q14 0 23 9t9 23zM1792 32v192q0 14-9 23t-23 9h-832q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h832q14 0 23 9t9 23z" + } + }] +}; +exports.sortAmountDesc = sortAmountDesc; \ No newline at end of file diff --git a/dist/fa/sortAsc.js b/dist/fa/sortAsc.js new file mode 100644 index 000000000..c7412ea0c --- /dev/null +++ b/dist/fa/sortAsc.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.sortAsc = void 0; +var sortAsc = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 704q0 26-19 45t-45 19h-896q-26 0-45-19t-19-45 19-45l448-448q19-19 45-19t45 19l448 448q19 19 19 45z" + } + }] +}; +exports.sortAsc = sortAsc; \ No newline at end of file diff --git a/dist/fa/sortDesc.js b/dist/fa/sortDesc.js new file mode 100644 index 000000000..fa17394a2 --- /dev/null +++ b/dist/fa/sortDesc.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.sortDesc = void 0; +var sortDesc = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 1088q0 26-19 45l-448 448q-19 19-45 19t-45-19l-448-448q-19-19-19-45t19-45 45-19h896q26 0 45 19t19 45z" + } + }] +}; +exports.sortDesc = sortDesc; \ No newline at end of file diff --git a/dist/fa/sortDown.js b/dist/fa/sortDown.js new file mode 100644 index 000000000..d4c6b62e4 --- /dev/null +++ b/dist/fa/sortDown.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.sortDown = void 0; +var sortDown = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 1088q0 26-19 45l-448 448q-19 19-45 19t-45-19l-448-448q-19-19-19-45t19-45 45-19h896q26 0 45 19t19 45z" + } + }] +}; +exports.sortDown = sortDown; \ No newline at end of file diff --git a/dist/fa/sortNumericAsc.js b/dist/fa/sortNumericAsc.js new file mode 100644 index 000000000..985fabb6d --- /dev/null +++ b/dist/fa/sortNumericAsc.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.sortNumericAsc = void 0; +var sortNumericAsc = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1346 1313q0-63-44-116t-103-53q-52 0-83 37t-31 94 36.5 95 104.5 38q50 0 85-27t35-68zM736 1440q0 12-10 24l-319 319q-10 9-23 9-12 0-23-9l-320-320q-15-16-7-35 8-20 30-20h192v-1376q0-14 9-23t23-9h192q14 0 23 9t9 23v1376h192q14 0 23 9t9 23zM1486 1371q0 62-13 121.5t-41 114-68 95.5-98.5 65.5-127.5 24.5q-62 0-108-16-24-8-42-15l39-113q15 7 31 11 37 13 75 13 84 0 134.5-58.5t66.5-145.5h-2q-21 23-61.5 37t-84.5 14q-106 0-173-71.5t-67-172.5q0-105 72-178t181-73q123 0 205 94.5t82 252.5zM1456 654v114h-469v-114h167v-432q0-7 0.5-19t0.5-17v-16h-2l-7 12q-8 13-26 31l-62 58-82-86 192-185h123v654h165z" + } + }] +}; +exports.sortNumericAsc = sortNumericAsc; \ No newline at end of file diff --git a/dist/fa/sortNumericDesc.js b/dist/fa/sortNumericDesc.js new file mode 100644 index 000000000..67ea8653b --- /dev/null +++ b/dist/fa/sortNumericDesc.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.sortNumericDesc = void 0; +var sortNumericDesc = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1346 289q0-63-44-116t-103-53q-52 0-83 37t-31 94 36.5 95 104.5 38q50 0 85-27t35-68zM736 1440q0 12-10 24l-319 319q-10 9-23 9-12 0-23-9l-320-320q-15-16-7-35 8-20 30-20h192v-1376q0-14 9-23t23-9h192q14 0 23 9t9 23v1376h192q14 0 23 9t9 23zM1456 1678v114h-469v-114h167v-432q0-7 0.5-19t0.5-17v-16h-2l-7 12q-8 13-26 31l-62 58-82-86 192-185h123v654h165zM1486 347q0 62-13 121.5t-41 114-68 95.5-98.5 65.5-127.5 24.5q-62 0-108-16-24-8-42-15l39-113q15 7 31 11 37 13 75 13 84 0 134.5-58.5t66.5-145.5h-2q-21 23-61.5 37t-84.5 14q-106 0-173-71.5t-67-172.5q0-105 72-178t181-73q123 0 205 94.5t82 252.5z" + } + }] +}; +exports.sortNumericDesc = sortNumericDesc; \ No newline at end of file diff --git a/dist/fa/sortUp.js b/dist/fa/sortUp.js new file mode 100644 index 000000000..4001df3e6 --- /dev/null +++ b/dist/fa/sortUp.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.sortUp = void 0; +var sortUp = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 704q0 26-19 45t-45 19h-896q-26 0-45-19t-19-45 19-45l448-448q19-19 45-19t45 19l448 448q19 19 19 45z" + } + }] +}; +exports.sortUp = sortUp; \ No newline at end of file diff --git a/dist/fa/soundcloud.js b/dist/fa/soundcloud.js new file mode 100644 index 000000000..3cb2288c7 --- /dev/null +++ b/dist/fa/soundcloud.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.soundcloud = void 0; +var soundcloud = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M784 1372l16-241-16-523q-1-10-7.5-17t-16.5-7q-9 0-16 7t-7 17l-14 523 14 241q1 10 7.5 16.5t15.5 6.5q22 0 24-23zM1080 1343l11-211-12-586q0-16-13-24-8-5-16-5t-16 5q-13 8-13 24l-1 6-10 579q0 1 11 236v1q0 10 6 17 9 11 23 11 11 0 20-9 9-7 9-20zM35 1003l20 128-20 126q-2 9-9 9t-9-9l-17-126 17-128q2-9 9-9t9 9zM121 924l26 207-26 203q-2 9-10 9-9 0-9-10l-23-202 23-207q0-9 9-9 8 0 10 9zM401 1377zM213 886l25 245-25 237q0 11-11 11-10 0-12-11l-21-237 21-245q2-12 12-12 11 0 11 12zM307 879l23 252-23 244q-2 13-14 13-13 0-13-13l-21-244 21-252q0-13 13-13 12 0 14 13zM401 897l21 234-21 246q-2 16-16 16-6 0-10.5-4.5t-4.5-11.5l-20-246 20-234q0-6 4.5-10.5t10.5-4.5q14 0 16 15zM784 1372zM495 751l21 380-21 246q0 7-5 12.5t-12 5.5q-16 0-18-18l-18-246 18-380q2-18 18-18 7 0 12 5.5t5 12.5zM589 665l19 468-19 244q0 8-5.5 13.5t-13.5 5.5q-18 0-20-19l-16-244 16-468q2-19 20-19 8 0 13.5 5.5t5.5 13.5zM687 625l18 506-18 242q-2 21-22 21-19 0-21-21l-16-242 16-506q0-9 6.5-15.5t14.5-6.5q9 0 15 6.5t7 15.5zM1079 1367v0 0 0zM881 621l15 510-15 239q0 10-7.5 17.5t-17.5 7.5-17-7-8-18l-14-239 14-510q0-11 7.5-18t17.5-7 17.5 7 7.5 18zM980 640l14 492-14 236q0 11-8 19t-19 8-19-8-9-19l-12-236 12-492q1-12 9-20t19-8 18.5 8 8.5 20zM1192 1132l-14 231v0q0 13-9 22t-22 9-22-9-10-22l-6-114-6-117 12-636v-3q2-15 12-24 9-7 20-7 8 0 15 5 14 8 16 26zM2304 1113q0 117-83 199.5t-200 82.5h-786q-13-2-22-11t-9-22v-899q0-23 28-33 85-34 181-34 195 0 338 131.5t160 323.5q53-22 110-22 117 0 200 83t83 201z" + } + }] +}; +exports.soundcloud = soundcloud; \ No newline at end of file diff --git a/dist/fa/spaceShuttle.js b/dist/fa/spaceShuttle.js new file mode 100644 index 000000000..841525a00 --- /dev/null +++ b/dist/fa/spaceShuttle.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.spaceShuttle = void 0; +var spaceShuttle = { + "viewBox": "0 0 2176 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M620 1120q-110 64-268 64h-128v-64h-64q-13 0-22.5-23.5t-9.5-56.5q0-24 7-49-58-2-96.5-10.5t-38.5-20.5 38.5-20.5 96.5-10.5q-7-25-7-49 0-33 9.5-56.5t22.5-23.5h64v-64h128q158 0 268 64h1113q42 7 106.5 18t80.5 14q89 15 150 40.5t83.5 47.5 22.5 40-22.5 40-83.5 47.5-150 40.5q-16 3-80.5 14t-106.5 18h-1113zM1739 868q53 36 53 92t-53 92l81 30q68-48 68-122t-68-122zM625 1136h1015q-217 38-456 80-57 0-113 24t-83 48l-28 24-288 288q-26 26-70.5 45t-89.5 19h-96l-93-464h29q157 0 273-64zM352 720h-29l93-464h96q46 0 90 19t70 45l288 288q4 4 11 10.5t30.5 23 48.5 29 61.5 23 72.5 10.5l456 80h-1015q-116-64-273-64z" + } + }] +}; +exports.spaceShuttle = spaceShuttle; \ No newline at end of file diff --git a/dist/fa/spinner.js b/dist/fa/spinner.js new file mode 100644 index 000000000..a2f1d6613 --- /dev/null +++ b/dist/fa/spinner.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.spinner = void 0; +var spinner = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M526 1394q0 53-37.5 90.5t-90.5 37.5q-52 0-90-38t-38-90q0-53 37.5-90.5t90.5-37.5 90.5 37.5 37.5 90.5zM1024 1600q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5 90.5 37.5 37.5 90.5zM320 896q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5 90.5 37.5 37.5 90.5zM1522 1394q0 52-38 90t-90 38q-53 0-90.5-37.5t-37.5-90.5 37.5-90.5 90.5-37.5 90.5 37.5 37.5 90.5zM558 398q0 66-47 113t-113 47-113-47-47-113 47-113 113-47 113 47 47 113zM1728 896q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5 90.5 37.5 37.5 90.5zM1088 192q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM1618 398q0 93-66 158.5t-158 65.5q-93 0-158.5-65.5t-65.5-158.5q0-92 65.5-158t158.5-66q92 0 158 66t66 158z" + } + }] +}; +exports.spinner = spinner; \ No newline at end of file diff --git a/dist/fa/spoon.js b/dist/fa/spoon.js new file mode 100644 index 000000000..ac12d5147 --- /dev/null +++ b/dist/fa/spoon.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.spoon = void 0; +var spoon = { + "viewBox": "0 0 768 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M704 528q0 145-57 243.5t-152 135.5l45 821q2 26-16 45t-44 19h-192q-26 0-44-19t-16-45l45-821q-95-37-152-135.5t-57-243.5q0-128 42.5-249.5t117.5-200 160-78.5 160 78.5 117.5 200 42.5 249.5z" + } + }] +}; +exports.spoon = spoon; \ No newline at end of file diff --git a/dist/fa/spotify.js b/dist/fa/spotify.js new file mode 100644 index 000000000..86021bf6a --- /dev/null +++ b/dist/fa/spotify.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.spotify = void 0; +var spotify = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1127 1210q0-32-30-51-193-115-447-115-133 0-287 34-42 9-42 52 0 20 13.5 34.5t35.5 14.5q5 0 37-8 132-27 243-27 226 0 397 103 19 11 33 11 19 0 33-13.5t14-34.5zM1223 995q0-40-35-61-237-141-548-141-153 0-303 42-48 13-48 64 0 25 17.5 42.5t42.5 17.5q7 0 37-8 122-33 251-33 279 0 488 124 24 13 38 13 25 0 42.5-17.5t17.5-42.5zM1331 747q0-47-40-70-126-73-293-110.5t-343-37.5q-204 0-364 47-23 7-38.5 25.5t-15.5 48.5q0 31 20.5 52t51.5 21q11 0 40-8 133-37 307-37 159 0 309.5 34t253.5 95q21 12 40 12 29 0 50.5-20.5t21.5-51.5zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.spotify = spotify; \ No newline at end of file diff --git a/dist/fa/square.js b/dist/fa/square.js new file mode 100644 index 000000000..ae5226b36 --- /dev/null +++ b/dist/fa/square.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.square = void 0; +var square = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.square = square; \ No newline at end of file diff --git a/dist/fa/squareO.js b/dist/fa/squareO.js new file mode 100644 index 000000000..3d8111563 --- /dev/null +++ b/dist/fa/squareO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.squareO = void 0; +var squareO = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1120 256h-832q-66 0-113 47t-47 113v832q0 66 47 113t113 47h832q66 0 113-47t47-113v-832q0-66-47-113t-113-47zM1408 416v832q0 119-84.5 203.5t-203.5 84.5h-832q-119 0-203.5-84.5t-84.5-203.5v-832q0-119 84.5-203.5t203.5-84.5h832q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.squareO = squareO; \ No newline at end of file diff --git a/dist/fa/stackExchange.js b/dist/fa/stackExchange.js new file mode 100644 index 000000000..bb09ec16a --- /dev/null +++ b/dist/fa/stackExchange.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.stackExchange = void 0; +var stackExchange = { + "viewBox": "0 0 1280 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1259 1253v66q0 85-57.5 144.5t-138.5 59.5h-57l-260 269v-269h-529q-81 0-138.5-59.5t-57.5-144.5v-66h1238zM1259 927v255h-1238v-255h1238zM1259 599v255h-1238v-255h1238zM1259 459v67h-1238v-67q0-84 57.5-143.5t138.5-59.5h846q81 0 138.5 59.5t57.5 143.5z" + } + }] +}; +exports.stackExchange = stackExchange; \ No newline at end of file diff --git a/dist/fa/stackOverflow.js b/dist/fa/stackOverflow.js new file mode 100644 index 000000000..f965f23e1 --- /dev/null +++ b/dist/fa/stackOverflow.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.stackOverflow = void 0; +var stackOverflow = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1289 1632h-1118v-480h-160v640h1438v-640h-160v480zM347 1108l33-157 783 165-33 156zM450 734l67-146 725 339-67 145zM651 378l102-123 614 513-102 123zM1048 0l477 641-128 96-477-641zM330 1471v-159h800v159h-800z" + } + }] +}; +exports.stackOverflow = stackOverflow; \ No newline at end of file diff --git a/dist/fa/star.js b/dist/fa/star.js new file mode 100644 index 000000000..93953527e --- /dev/null +++ b/dist/fa/star.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.star = void 0; +var star = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1664 647q0 22-26 48l-363 354 86 500q1 7 1 20 0 21-10.5 35.5t-30.5 14.5q-19 0-40-12l-449-236-449 236q-22 12-40 12-21 0-31.5-14.5t-10.5-35.5q0-6 2-20l86-500-364-354q-25-27-25-48 0-37 56-46l502-73 225-455q19-41 49-41t49 41l225 455 502 73q56 9 56 46z" + } + }] +}; +exports.star = star; \ No newline at end of file diff --git a/dist/fa/starHalf.js b/dist/fa/starHalf.js new file mode 100644 index 000000000..b59751048 --- /dev/null +++ b/dist/fa/starHalf.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.starHalf = void 0; +var starHalf = { + "viewBox": "0 0 896 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M832 32v1339l-449 236q-22 12-40 12-21 0-31.5-14.5t-10.5-35.5q0-6 2-20l86-500-364-354q-25-27-25-48 0-37 56-46l502-73 225-455q19-41 49-41z" + } + }] +}; +exports.starHalf = starHalf; \ No newline at end of file diff --git a/dist/fa/starHalfEmpty.js b/dist/fa/starHalfEmpty.js new file mode 100644 index 000000000..b8c6ed7ac --- /dev/null +++ b/dist/fa/starHalfEmpty.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.starHalfEmpty = void 0; +var starHalfEmpty = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1186 957l257-250-356-52-66-10-30-60-159-322v963l59 31 318 168-60-355-12-66zM1638 695l-363 354 86 500q5 33-6 51.5t-34 18.5q-17 0-40-12l-449-236-449 236q-23 12-40 12-23 0-34-18.5t-6-51.5l86-500-364-354q-32-32-23-59.5t54-34.5l502-73 225-455q20-41 49-41 28 0 49 41l225 455 502 73q45 7 54 34.5t-24 59.5z" + } + }] +}; +exports.starHalfEmpty = starHalfEmpty; \ No newline at end of file diff --git a/dist/fa/starHalfFull.js b/dist/fa/starHalfFull.js new file mode 100644 index 000000000..5f2692d97 --- /dev/null +++ b/dist/fa/starHalfFull.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.starHalfFull = void 0; +var starHalfFull = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1186 957l257-250-356-52-66-10-30-60-159-322v963l59 31 318 168-60-355-12-66zM1638 695l-363 354 86 500q5 33-6 51.5t-34 18.5q-17 0-40-12l-449-236-449 236q-23 12-40 12-23 0-34-18.5t-6-51.5l86-500-364-354q-32-32-23-59.5t54-34.5l502-73 225-455q20-41 49-41 28 0 49 41l225 455 502 73q45 7 54 34.5t-24 59.5z" + } + }] +}; +exports.starHalfFull = starHalfFull; \ No newline at end of file diff --git a/dist/fa/starHalfO.js b/dist/fa/starHalfO.js new file mode 100644 index 000000000..e5f285f80 --- /dev/null +++ b/dist/fa/starHalfO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.starHalfO = void 0; +var starHalfO = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1186 957l257-250-356-52-66-10-30-60-159-322v963l59 31 318 168-60-355-12-66zM1638 695l-363 354 86 500q5 33-6 51.5t-34 18.5q-17 0-40-12l-449-236-449 236q-23 12-40 12-23 0-34-18.5t-6-51.5l86-500-364-354q-32-32-23-59.5t54-34.5l502-73 225-455q20-41 49-41 28 0 49 41l225 455 502 73q45 7 54 34.5t-24 59.5z" + } + }] +}; +exports.starHalfO = starHalfO; \ No newline at end of file diff --git a/dist/fa/starO.js b/dist/fa/starO.js new file mode 100644 index 000000000..f36f4de30 --- /dev/null +++ b/dist/fa/starO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.starO = void 0; +var starO = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1137 1004l306-297-422-62-189-382-189 382-422 62 306 297-73 421 378-199 377 199zM1664 647q0 22-26 48l-363 354 86 500q1 7 1 20 0 50-41 50-19 0-40-12l-449-236-449 236q-22 12-40 12-21 0-31.5-14.5t-10.5-35.5q0-6 2-20l86-500-364-354q-25-27-25-48 0-37 56-46l502-73 225-455q19-41 49-41t49 41l225 455 502 73q56 9 56 46z" + } + }] +}; +exports.starO = starO; \ No newline at end of file diff --git a/dist/fa/steam.js b/dist/fa/steam.js new file mode 100644 index 000000000..678172d1c --- /dev/null +++ b/dist/fa/steam.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.steam = void 0; +var steam = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1582 582q0 101-71.5 172.5t-172.5 71.5-172.5-71.5-71.5-172.5 71.5-172.5 172.5-71.5 172.5 71.5 71.5 172.5zM812 1324q0-104-73-177t-177-73q-27 0-54 6l104 42q77 31 109.5 106.5t1.5 151.5q-31 77-107 109t-152 1q-21-8-62-24.5t-61-24.5q32 60 91 96.5t130 36.5q104 0 177-73t73-177zM1642 583q0-126-89.5-215.5t-215.5-89.5q-127 0-216.5 89.5t-89.5 215.5q0 127 89.5 216t216.5 89q126 0 215.5-89t89.5-216zM1792 583q0 189-133.5 322t-321.5 133l-437 319q-12 129-109 218t-229 89q-121 0-214-76t-118-192l-230-92v-429l389 157q79-48 173-48 13 0 35 2l284-407q2-187 135.5-319t320.5-132q188 0 321.5 133.5t133.5 321.5z" + } + }] +}; +exports.steam = steam; \ No newline at end of file diff --git a/dist/fa/steamSquare.js b/dist/fa/steamSquare.js new file mode 100644 index 000000000..52dad19c2 --- /dev/null +++ b/dist/fa/steamSquare.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.steamSquare = void 0; +var steamSquare = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1242 647q0-80-57-136.5t-137-56.5-136.5 57-56.5 136q0 80 56.5 136.5t136.5 56.5 137-56.5 57-136.5zM632 1235q0 83-58 140.5t-140 57.5q-56 0-103-29t-72-77q52 20 98 40 60 24 120-1.5t85-86.5q24-60-1.5-120t-86.5-84l-82-33q22-5 42-5 82 0 140 57.5t58 140.5zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-153l172 69q20 92 93.5 152t168.5 60q104 0 181-70t87-173l345-252q150 0 255.5-105.5t105.5-254.5q0-150-105.5-255.5t-255.5-105.5q-148 0-253 104.5t-107 252.5l-225 322q-9-1-28-1-75 0-137 37l-297-119v-468q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5zM1289 649q0 100-71 170.5t-171 70.5-170.5-70.5-70.5-170.5 70.5-171 170.5-71q101 0 171.5 70.5t70.5 171.5z" + } + }] +}; +exports.steamSquare = steamSquare; \ No newline at end of file diff --git a/dist/fa/stepBackward.js b/dist/fa/stepBackward.js new file mode 100644 index 000000000..360383629 --- /dev/null +++ b/dist/fa/stepBackward.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.stepBackward = void 0; +var stepBackward = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M979 141q19-19 32-13t13 32v1472q0 26-13 32t-32-13l-710-710q-9-9-13-19v678q0 26-19 45t-45 19h-128q-26 0-45-19t-19-45v-1408q0-26 19-45t45-19h128q26 0 45 19t19 45v678q4-10 13-19z" + } + }] +}; +exports.stepBackward = stepBackward; \ No newline at end of file diff --git a/dist/fa/stepForward.js b/dist/fa/stepForward.js new file mode 100644 index 000000000..9139c3907 --- /dev/null +++ b/dist/fa/stepForward.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.stepForward = void 0; +var stepForward = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M45 1651q-19 19-32 13t-13-32v-1472q0-26 13-32t32 13l710 710q9 9 13 19v-678q0-26 19-45t45-19h128q26 0 45 19t19 45v1408q0 26-19 45t-45 19h-128q-26 0-45-19t-19-45v-678q-4 10-13 19z" + } + }] +}; +exports.stepForward = stepForward; \ No newline at end of file diff --git a/dist/fa/stethoscope.js b/dist/fa/stethoscope.js new file mode 100644 index 000000000..0dbbad597 --- /dev/null +++ b/dist/fa/stethoscope.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.stethoscope = void 0; +var stethoscope = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1280 704q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zM1408 704q0 62-35.5 111t-92.5 70v395q0 159-131.5 271.5t-316.5 112.5-316.5-112.5-131.5-271.5v-132q-164-20-274-128t-110-252v-512q0-26 19-45t45-19q6 0 16 2 17-30 47-48t65-18q53 0 90.5 37.5t37.5 90.5-37.5 90.5-90.5 37.5q-33 0-64-18v402q0 106 94 181t226 75 226-75 94-181v-402q-31 18-64 18-53 0-90.5-37.5t-37.5-90.5 37.5-90.5 90.5-37.5q35 0 65 18t47 48q10-2 16-2 26 0 45 19t19 45v512q0 144-110 252t-274 128v132q0 106 94 181t226 75 226-75 94-181v-395q-57-21-92.5-70t-35.5-111q0-80 56-136t136-56 136 56 56 136z" + } + }] +}; +exports.stethoscope = stethoscope; \ No newline at end of file diff --git a/dist/fa/stickyNote.js b/dist/fa/stickyNote.js new file mode 100644 index 000000000..337dd636f --- /dev/null +++ b/dist/fa/stickyNote.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.stickyNote = void 0; +var stickyNote = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 1248v416h-928q-40 0-68-28t-28-68v-1344q0-40 28-68t68-28h1344q40 0 68 28t28 68v928h-416q-40 0-68 28t-28 68zM1152 1280h381q-15 82-65 132l-184 184q-50 50-132 65v-381z" + } + }] +}; +exports.stickyNote = stickyNote; \ No newline at end of file diff --git a/dist/fa/stickyNoteO.js b/dist/fa/stickyNoteO.js new file mode 100644 index 000000000..2927181d8 --- /dev/null +++ b/dist/fa/stickyNoteO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.stickyNoteO = void 0; +var stickyNoteO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1400 1280h-248v248q29-10 41-22l185-185q12-12 22-41zM1120 1152h288v-896h-1280v1280h896v-288q0-40 28-68t68-28zM1536 224v1024q0 40-20 88t-48 76l-184 184q-28 28-76 48t-88 20h-1024q-40 0-68-28t-28-68v-1344q0-40 28-68t68-28h1344q40 0 68 28t28 68z" + } + }] +}; +exports.stickyNoteO = stickyNoteO; \ No newline at end of file diff --git a/dist/fa/stop.js b/dist/fa/stop.js new file mode 100644 index 000000000..8ca1098a6 --- /dev/null +++ b/dist/fa/stop.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.stop = void 0; +var stop = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1536 192v1408q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-1408q0-26 19-45t45-19h1408q26 0 45 19t19 45z" + } + }] +}; +exports.stop = stop; \ No newline at end of file diff --git a/dist/fa/stopCircle.js b/dist/fa/stopCircle.js new file mode 100644 index 000000000..a8f8ea556 --- /dev/null +++ b/dist/fa/stopCircle.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.stopCircle = void 0; +var stopCircle = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1088 1184v-576q0-14-9-23t-23-9h-576q-14 0-23 9t-9 23v576q0 14 9 23t23 9h576q14 0 23-9t9-23zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.stopCircle = stopCircle; \ No newline at end of file diff --git a/dist/fa/stopCircleO.js b/dist/fa/stopCircleO.js new file mode 100644 index 000000000..19ff4fcc4 --- /dev/null +++ b/dist/fa/stopCircleO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.stopCircleO = void 0; +var stopCircleO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M768 128q209 0 385.5 103t279.5 279.5 103 385.5-103 385.5-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103zM768 1440q148 0 273-73t198-198 73-273-73-273-198-198-273-73-273 73-198 198-73 273 73 273 198 198 273 73zM480 1216q-14 0-23-9t-9-23v-576q0-14 9-23t23-9h576q14 0 23 9t9 23v576q0 14-9 23t-23 9h-576z" + } + }] +}; +exports.stopCircleO = stopCircleO; \ No newline at end of file diff --git a/dist/fa/streetView.js b/dist/fa/streetView.js new file mode 100644 index 000000000..c0a031285 --- /dev/null +++ b/dist/fa/streetView.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.streetView = void 0; +var streetView = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1408 1536q0 63-61.5 113.5t-164 81-225 46-253.5 15.5-253.5-15.5-225-46-164-81-61.5-113.5q0-49 33-88.5t91-66.5 118-44.5 131-29.5q26-5 48 10.5t26 41.5q5 26-10.5 48t-41.5 26q-58 10-106 23.5t-76.5 25.5-48.5 23.5-27.5 19.5-8.5 12q3 11 27 26.5t73 33 114 32.5 160.5 25 201.5 10 201.5-10 160.5-25 114-33 73-33.5 27-27.5q-1-4-8.5-11t-27.5-19-48.5-23.5-76.5-25-106-23.5q-26-4-41.5-26t-10.5-48q4-26 26-41.5t48-10.5q71 12 131 29.5t118 44.5 91 66.5 33 88.5zM1024 640v384q0 26-19 45t-45 19h-64v384q0 26-19 45t-45 19h-256q-26 0-45-19t-19-45v-384h-64q-26 0-45-19t-19-45v-384q0-53 37.5-90.5t90.5-37.5h384q53 0 90.5 37.5t37.5 90.5zM928 256q0 93-65.5 158.5t-158.5 65.5-158.5-65.5-65.5-158.5 65.5-158.5 158.5-65.5 158.5 65.5 65.5 158.5z" + } + }] +}; +exports.streetView = streetView; \ No newline at end of file diff --git a/dist/fa/strikethrough.js b/dist/fa/strikethrough.js new file mode 100644 index 000000000..d412a15ef --- /dev/null +++ b/dist/fa/strikethrough.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.strikethrough = void 0; +var strikethrough = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1760 896q14 0 23 9t9 23v64q0 14-9 23t-23 9h-1728q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h1728zM483 832q-28-35-51-80-48-98-48-188 0-181 134-309 133-127 393-127 50 0 167 19 66 12 177 48 10 38 21 118 14 123 14 183 0 18-5 45l-12 3-84-6-14-2q-50-149-103-205-88-91-210-91-114 0-182 59-67 58-67 146 0 73 66 140t279 129q69 20 173 66 58 28 95 52h-743zM990 1088h411q7 39 7 92 0 111-41 212-23 56-71 104-37 35-109 81-80 48-153 66-80 21-203 21-114 0-195-23l-140-40q-57-16-72-28-8-8-8-22v-13q0-108-2-156-1-30 0-68l2-37v-44l102-2q15 34 30 71t22.5 56 12.5 27q35 57 80 94 43 36 105 57 59 22 132 22 64 0 139-27 77-26 122-86 47-61 47-129 0-84-81-157-34-29-137-71z" + } + }] +}; +exports.strikethrough = strikethrough; \ No newline at end of file diff --git a/dist/fa/stumbleupon.js b/dist/fa/stumbleupon.js new file mode 100644 index 000000000..bfe62e364 --- /dev/null +++ b/dist/fa/stumbleupon.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.stumbleupon = void 0; +var stumbleupon = { + "viewBox": "0 0 1920 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1062 712v-118q0-42-30-72t-72-30-72 30-30 72v612q0 175-126 299t-303 124q-178 0-303.5-125.5t-125.5-303.5v-266h328v262q0 43 30 72.5t72 29.5 72-29.5 30-72.5v-620q0-171 126.5-292t301.5-121q176 0 302 122t126 294v136l-195 58zM1592 934h328v266q0 178-125.5 303.5t-303.5 125.5q-177 0-303-124.5t-126-300.5v-268l131 61 195-58v270q0 42 30 71.5t72 29.5 72-29.5 30-71.5v-275z" + } + }] +}; +exports.stumbleupon = stumbleupon; \ No newline at end of file diff --git a/dist/fa/stumbleuponCircle.js b/dist/fa/stumbleuponCircle.js new file mode 100644 index 000000000..11e8a1997 --- /dev/null +++ b/dist/fa/stumbleuponCircle.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.stumbleuponCircle = void 0; +var stumbleuponCircle = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M866 839l90-27v-62q0-79-58-135t-138-56-138 55.5-58 134.5v283q0 20-14 33.5t-33 13.5-32.5-13.5-13.5-33.5v-120h-151v122q0 82 57.5 139t139.5 57q81 0 138.5-56.5t57.5-136.5v-280q0-19 13.5-33t33.5-14q19 0 32.5 14t13.5 33v54zM1199 1034v-122h-150v126q0 20-13.5 33.5t-33.5 13.5q-19 0-32.5-14t-13.5-33v-123l-90 26-60-28v123q0 80 58 137t139 57 138.5-57 57.5-139zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.stumbleuponCircle = stumbleuponCircle; \ No newline at end of file diff --git a/dist/fa/subscript.js b/dist/fa/subscript.js new file mode 100644 index 000000000..31e0364de --- /dev/null +++ b/dist/fa/subscript.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.subscript = void 0; +var subscript = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M897 1369v167h-248l-159-252-24-42q-8-9-11-21h-3q-1 3-2.5 6.5t-3.5 8-3 6.5q-10 20-25 44l-155 250h-258v-167h128l197-291-185-272h-137v-168h276l139 228q2 4 23 42 8 9 11 21h3q3-9 11-21l25-42 140-228h257v168h-125l-184 267 204 296h109zM1536 1586v206h-514l-4-27q-3-45-3-46 0-64 26-117t65-86.5 84-65 84-54.5 65-54 26-64q0-38-29.5-62.5t-70.5-24.5q-51 0-97 39-14 11-36 38l-105-92q26-37 63-66 80-65 188-65 110 0 178 59.5t68 158.5q0 66-34.5 118.5t-84 86-99.5 62.5-87 63-41 73h232v-80h126z" + } + }] +}; +exports.subscript = subscript; \ No newline at end of file diff --git a/dist/fa/subway.js b/dist/fa/subway.js new file mode 100644 index 000000000..883c8abe7 --- /dev/null +++ b/dist/fa/subway.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.subway = void 0; +var subway = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1088 0q185 0 316.5 93.5t131.5 226.5v896q0 130-125.5 222t-305.5 97l213 202q16 15 8 35t-30 20h-1056q-22 0-30-20t8-35l213-202q-180-5-305.5-97t-125.5-222v-896q0-133 131.5-226.5t316.5-93.5h640zM288 1312q66 0 113-47t47-113-47-113-113-47-113 47-47 113 47 113 113 47zM704 768v-512h-544v512h544zM1248 1312q66 0 113-47t47-113-47-113-113-47-113 47-47 113 47 113 113 47zM1408 768v-512h-576v512h576z" + } + }] +}; +exports.subway = subway; \ No newline at end of file diff --git a/dist/fa/suitcase.js b/dist/fa/suitcase.js new file mode 100644 index 000000000..1abc1e619 --- /dev/null +++ b/dist/fa/suitcase.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.suitcase = void 0; +var suitcase = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 384h512v-128h-512v128zM288 384v1280h-64q-92 0-158-66t-66-158v-832q0-92 66-158t158-66h64zM1408 384v1280h-1024v-1280h128v-160q0-40 28-68t68-28h576q40 0 68 28t28 68v160h128zM1792 608v832q0 92-66 158t-158 66h-64v-1280h64q92 0 158 66t66 158z" + } + }] +}; +exports.suitcase = suitcase; \ No newline at end of file diff --git a/dist/fa/sunO.js b/dist/fa/sunO.js new file mode 100644 index 000000000..24b31f21b --- /dev/null +++ b/dist/fa/sunO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.sunO = void 0; +var sunO = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1472 896q0-117-45.5-223.5t-123-184-184-123-223.5-45.5-223.5 45.5-184 123-123 184-45.5 223.5 45.5 223.5 123 184 184 123 223.5 45.5 223.5-45.5 184-123 123-184 45.5-223.5zM1748 1173q-4 15-20 20l-292 96v306q0 16-13 26-15 10-29 4l-292-94-180 248q-10 13-26 13t-26-13l-180-248-292 94q-14 6-29-4-13-10-13-26v-306l-292-96q-16-5-20-20-5-17 4-29l180-248-180-248q-9-13-4-29 4-15 20-20l292-96v-306q0-16 13-26 15-10 29-4l292 94 180-248q9-12 26-12t26 12l180 248 292-94q14-6 29 4 13 10 13 26v306l292 96q16 5 20 20 5 16-4 29l-180 248 180 248q9 12 4 29z" + } + }] +}; +exports.sunO = sunO; \ No newline at end of file diff --git a/dist/fa/superpowers.js b/dist/fa/superpowers.js new file mode 100644 index 000000000..99edcb9bb --- /dev/null +++ b/dist/fa/superpowers.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.superpowers = void 0; +var superpowers = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1473 929q7-118-33-226.5t-113-189-177-131-221-57.5q-116-7-225.5 32t-192 110.5-135 175-59.5 220.5q-7 118 33 226.5t113 189 177.5 131 221.5 57.5q155 9 293-59t224-195.5 94-283.5zM1792 0l-349 348q120 117 180.5 272t50.5 321q-11 183-102 339t-241 255.5-332 124.5l-999 132 347-347q-120-116-180.5-271.5t-50.5-321.5q11-184 102-340t241.5-255.5 332.5-124.5q167-22 500-66t500-66z" + } + }] +}; +exports.superpowers = superpowers; \ No newline at end of file diff --git a/dist/fa/superscript.js b/dist/fa/superscript.js new file mode 100644 index 000000000..c8c00fc6d --- /dev/null +++ b/dist/fa/superscript.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.superscript = void 0; +var superscript = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M897 1369v167h-248l-159-252-24-42q-8-9-11-21h-3q-1 3-2.5 6.5t-3.5 8-3 6.5q-10 20-25 44l-155 250h-258v-167h128l197-291-185-272h-137v-168h276l139 228q2 4 23 42 8 9 11 21h3q3-9 11-21l25-42 140-228h257v168h-125l-184 267 204 296h109zM1534 690v206h-514l-3-27q-4-28-4-46 0-64 26-117t65-86.5 84-65 84-54.5 65-54 26-64q0-38-29.5-62.5t-70.5-24.5q-51 0-97 39-14 11-36 38l-105-92q26-37 63-66 83-65 188-65 110 0 178 59.5t68 158.5q0 56-24.5 103t-62 76.5-81.5 58.5-82 50.5-65.5 51.5-30.5 63h232v-80h126z" + } + }] +}; +exports.superscript = superscript; \ No newline at end of file diff --git a/dist/fa/support.js b/dist/fa/support.js new file mode 100644 index 000000000..8c09a1b4c --- /dev/null +++ b/dist/fa/support.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.support = void 0; +var support = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M896 0q182 0 348 71t286 191 191 286 71 348-71 348-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71zM896 128q-190 0-361 90l194 194q82-28 167-28t167 28l194-194q-171-90-361-90zM218 1257l194-194q-28-82-28-167t28-167l-194-194q-90 171-90 361t90 361zM896 1664q190 0 361-90l-194-194q-82 28-167 28t-167-28l-194 194q171 90 361 90zM896 1280q159 0 271.5-112.5t112.5-271.5-112.5-271.5-271.5-112.5-271.5 112.5-112.5 271.5 112.5 271.5 271.5 112.5zM1380 1063l194 194q90-171 90-361t-90-361l-194 194q28 82 28 167t-28 167z" + } + }] +}; +exports.support = support; \ No newline at end of file diff --git a/dist/fa/table.js b/dist/fa/table.js new file mode 100644 index 000000000..bcf8e900d --- /dev/null +++ b/dist/fa/table.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.table = void 0; +var table = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M512 1376v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zM512 992v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zM1024 1376v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zM512 608v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zM1024 992v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zM1536 1376v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zM1024 608v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zM1536 992v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zM1536 608v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zM1664 288v1088q0 66-47 113t-113 47h-1344q-66 0-113-47t-47-113v-1088q0-66 47-113t113-47h1344q66 0 113 47t47 113z" + } + }] +}; +exports.table = table; \ No newline at end of file diff --git a/dist/fa/tablet.js b/dist/fa/tablet.js new file mode 100644 index 000000000..68aa64f1e --- /dev/null +++ b/dist/fa/tablet.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.tablet = void 0; +var tablet = { + "viewBox": "0 0 1152 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 1408q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zM1024 1248v-960q0-13-9.5-22.5t-22.5-9.5h-832q-13 0-22.5 9.5t-9.5 22.5v960q0 13 9.5 22.5t22.5 9.5h832q13 0 22.5-9.5t9.5-22.5zM1152 288v1088q0 66-47 113t-113 47h-832q-66 0-113-47t-47-113v-1088q0-66 47-113t113-47h832q66 0 113 47t47 113z" + } + }] +}; +exports.tablet = tablet; \ No newline at end of file diff --git a/dist/fa/tachometer.js b/dist/fa/tachometer.js new file mode 100644 index 000000000..6dfa8f128 --- /dev/null +++ b/dist/fa/tachometer.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.tachometer = void 0; +var tachometer = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M384 1152q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM576 704q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1004 1185l101-382q6-26-7.5-48.5t-38.5-29.5-48 6.5-30 39.5l-101 382q-60 5-107 43.5t-63 98.5q-20 77 20 146t117 89 146-20 89-117q16-60-6-117t-72-91zM1664 1152q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1024 512q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1472 704q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1792 1152q0 261-141 483-19 29-54 29h-1402q-35 0-54-29-141-221-141-483 0-182 71-348t191-286 286-191 348-71 348 71 286 191 191 286 71 348z" + } + }] +}; +exports.tachometer = tachometer; \ No newline at end of file diff --git a/dist/fa/tag.js b/dist/fa/tag.js new file mode 100644 index 000000000..34289c123 --- /dev/null +++ b/dist/fa/tag.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.tag = void 0; +var tag = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M448 448q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1515 1024q0 53-37 90l-491 492q-39 37-91 37-53 0-90-37l-715-716q-38-37-64.5-101t-26.5-117v-416q0-52 38-90t90-38h416q53 0 117 26.5t102 64.5l715 714q37 39 37 91z" + } + }] +}; +exports.tag = tag; \ No newline at end of file diff --git a/dist/fa/tags.js b/dist/fa/tags.js new file mode 100644 index 000000000..21a110a9c --- /dev/null +++ b/dist/fa/tags.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.tags = void 0; +var tags = { + "viewBox": "0 0 1920 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M448 448q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1515 1024q0 53-37 90l-491 492q-39 37-91 37-53 0-90-37l-715-716q-38-37-64.5-101t-26.5-117v-416q0-52 38-90t90-38h416q53 0 117 26.5t102 64.5l715 714q37 39 37 91zM1899 1024q0 53-37 90l-491 492q-39 37-91 37-36 0-59-14t-53-45l470-470q37-37 37-90 0-52-37-91l-715-714q-38-38-102-64.5t-117-26.5h224q53 0 117 26.5t102 64.5l715 714q37 39 37 91z" + } + }] +}; +exports.tags = tags; \ No newline at end of file diff --git a/dist/fa/tasks.js b/dist/fa/tasks.js new file mode 100644 index 000000000..73478fb60 --- /dev/null +++ b/dist/fa/tasks.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.tasks = void 0; +var tasks = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 1408h640v-128h-640v128zM640 896h1024v-128h-1024v128zM1280 384h384v-128h-384v128zM1792 1216v256q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-256q0-26 19-45t45-19h1664q26 0 45 19t19 45zM1792 704v256q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-256q0-26 19-45t45-19h1664q26 0 45 19t19 45zM1792 192v256q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-256q0-26 19-45t45-19h1664q26 0 45 19t19 45z" + } + }] +}; +exports.tasks = tasks; \ No newline at end of file diff --git a/dist/fa/taxi.js b/dist/fa/taxi.js new file mode 100644 index 000000000..bc617dc83 --- /dev/null +++ b/dist/fa/taxi.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.taxi = void 0; +var taxi = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1824 896q93 0 158.5 65.5t65.5 158.5v384q0 14-9 23t-23 9h-96v64q0 80-56 136t-136 56-136-56-56-136v-64h-1024v64q0 80-56 136t-136 56-136-56-56-136v-64h-96q-14 0-23-9t-9-23v-384q0-93 65.5-158.5t158.5-65.5h28l105-419q23-94 104-157.5t179-63.5h128v-224q0-14 9-23t23-9h448q14 0 23 9t9 23v224h128q98 0 179 63.5t104 157.5l105 419h28zM320 1376q66 0 113-47t47-113-47-113-113-47-113 47-47 113 47 113 113 47zM516 896h1016l-89-357q-2-8-14-17.5t-21-9.5h-768q-9 0-21 9.5t-14 17.5zM1728 1376q66 0 113-47t47-113-47-113-113-47-113 47-47 113 47 113 113 47z" + } + }] +}; +exports.taxi = taxi; \ No newline at end of file diff --git a/dist/fa/telegram.js b/dist/fa/telegram.js new file mode 100644 index 000000000..ca00d18b4 --- /dev/null +++ b/dist/fa/telegram.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.telegram = void 0; +var telegram = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1189 1307l147-693q9-44-10.5-63t-51.5-7l-864 333q-29 11-39.5 25t-2.5 26.5 32 19.5l221 69 513-323q21-14 32-6 7 5-4 15l-415 375v0 0l-16 228q23 0 45-22l108-104 224 165q64 36 81-38zM1792 896q0 182-71 348t-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71 348 71 286 191 191 286 71 348z" + } + }] +}; +exports.telegram = telegram; \ No newline at end of file diff --git a/dist/fa/television.js b/dist/fa/television.js new file mode 100644 index 000000000..2c1fa04c3 --- /dev/null +++ b/dist/fa/television.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.television = void 0; +var television = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1792 1248v-960q0-13-9.5-22.5t-22.5-9.5h-1600q-13 0-22.5 9.5t-9.5 22.5v960q0 13 9.5 22.5t22.5 9.5h1600q13 0 22.5-9.5t9.5-22.5zM1920 288v960q0 66-47 113t-113 47h-736v128h352q14 0 23 9t9 23v64q0 14-9 23t-23 9h-832q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h352v-128h-736q-66 0-113-47t-47-113v-960q0-66 47-113t113-47h1600q66 0 113 47t47 113z" + } + }] +}; +exports.television = television; \ No newline at end of file diff --git a/dist/fa/tencentWeibo.js b/dist/fa/tencentWeibo.js new file mode 100644 index 000000000..548fcb4a2 --- /dev/null +++ b/dist/fa/tencentWeibo.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.tencentWeibo = void 0; +var tencentWeibo = { + "viewBox": "0 0 1280 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M842 572q0 80-57 136.5t-136 56.5q-60 0-111-35-62 67-115 146-247 371-202 859 1 22-12.5 38.5t-34.5 18.5h-5q-20 0-35-13.5t-17-33.5q-14-126-3.5-247.5t29.5-217 54-186 69-155.5 74-125q61-90 132-165-16-35-16-77 0-80 56.5-136.5t136.5-56.5 136.5 56.5 56.5 136.5zM1223 583q0 158-78 292t-212.5 212-292.5 78q-64 0-131-14-21-5-32.5-23.5t-6.5-39.5q5-20 23-31.5t39-7.5q51 13 108 13 97 0 186-38t153-102 102-153 38-186-38-186-102-153-153-102-186-38-186 38-153 102-102 153-38 186q0 114 52 218 10 20 3.5 40t-25.5 30-39.5 3-30.5-26q-64-123-64-265 0-119 46.5-227t124.5-186 186-124 226-46q158 0 292.5 78t212.5 212.5 78 292.5z" + } + }] +}; +exports.tencentWeibo = tencentWeibo; \ No newline at end of file diff --git a/dist/fa/terminal.js b/dist/fa/terminal.js new file mode 100644 index 000000000..8eaaa11fe --- /dev/null +++ b/dist/fa/terminal.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.terminal = void 0; +var terminal = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M585 983l-466 466q-10 10-23 10t-23-10l-50-50q-10-10-10-23t10-23l393-393-393-393q-10-10-10-23t10-23l50-50q10-10 23-10t23 10l466 466q10 10 10 23t-10 23zM1664 1440v64q0 14-9 23t-23 9h-960q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h960q14 0 23 9t9 23z" + } + }] +}; +exports.terminal = terminal; \ No newline at end of file diff --git a/dist/fa/textHeight.js b/dist/fa/textHeight.js new file mode 100644 index 000000000..17fcf4c9c --- /dev/null +++ b/dist/fa/textHeight.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.textHeight = void 0; +var textHeight = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1744 1408q33 0 42 18.5t-11 44.5l-126 162q-20 26-49 26t-49-26l-126-162q-20-26-11-44.5t42-18.5h80v-1024h-80q-33 0-42-18.5t11-44.5l126-162q20-26 49-26t49 26l126 162q20 26 11 44.5t-42 18.5h-80v1024h80zM81 129l54 27q12 5 211 5 44 0 132-2t132-2q36 0 107.5 0.5t107.5 0.5h293q6 0 21 0.5t20.5 0 16-3 17.5-9 15-17.5l42-1q4 0 14 0.5t14 0.5q2 112 2 336 0 80-5 109-39 14-68 18-25-44-54-128-3-9-11-48t-14.5-73.5-7.5-35.5q-6-8-12-12.5t-15.5-6-13-2.5-18-0.5-16.5 0.5q-17 0-66.5-0.5t-74.5-0.5-64 2-71 6q-9 81-8 136 0 94 2 388t2 455q0 16-2.5 71.5t0 91.5 12.5 69q40 21 124 42.5t120 37.5q5 40 5 50 0 14-3 29l-34 1q-76 2-218-8t-207-10q-50 0-151 9t-152 9q-3-51-3-52v-9q17-27 61.5-43t98.5-29 78-27q19-42 19-383 0-101-3-303t-3-303v-117q0-2 0.5-15.5t0.5-25-1-25.5-3-24-5-14q-11-12-162-12-33 0-93 12t-80 26q-19 13-34 72.5t-31.5 111-42.5 53.5q-42-26-56-44v-383z" + } + }] +}; +exports.textHeight = textHeight; \ No newline at end of file diff --git a/dist/fa/textWidth.js b/dist/fa/textWidth.js new file mode 100644 index 000000000..8c6106186 --- /dev/null +++ b/dist/fa/textWidth.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.textWidth = void 0; +var textWidth = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M81 129l54 27q12 5 211 5 44 0 132-2t132-2q70 0 246.5-1t304.5-0.5 247 4.5q33 1 56-31l42-1q4 0 14 0.5t14 0.5q2 112 2 336 0 80-5 109-39 14-68 18-25-44-54-128-3-9-11-47.5t-15-73.5-7-36q-10-13-27-19-5-2-66-2-30 0-93-1t-103-1-94 2-96 7q-9 81-8 136l1 152v-52q0 55 1 154t1.5 180 0.5 153q0 16-2.5 71.5t0 91.5 12.5 69q40 21 124 42.5t120 37.5q5 40 5 50 0 14-3 29l-34 1q-76 2-218-8t-207-10q-50 0-151 9t-152 9q-3-51-3-52v-9q17-27 61.5-43t98.5-29 78-27q7-16 11.5-74t6-145.5 1.5-155-0.5-153.5-0.5-89q0-7-2.5-21.5t-2.5-22.5q0-7 0.5-44t1-73 0-76.5-3-67.5-6.5-32q-11-12-162-12-41 0-163 13.5t-138 24.5q-19 12-34 71.5t-31.5 111.5-42.5 54q-42-26-56-44v-383zM1310 1411q12 0 42 19.5t57.5 41.5 59.5 49 36 30q26 21 26 49t-26 49q-4 3-36 30t-59.5 49-57.5 41.5-42 19.5q-13 0-20.5-10.5t-10-28.5-2.5-33.5 1.5-33 1.5-19.5h-1024q0 2 1.5 19.5t1.5 33-2.5 33.5-10 28.5-20.5 10.5q-12 0-42-19.5t-57.5-41.5-59.5-49-36-30q-26-21-26-49t26-49q4-3 36-30t59.5-49 57.5-41.5 42-19.5q13 0 20.5 10.5t10 28.5 2.5 33.5-1.5 33-1.5 19.5h1024q0-2-1.5-19.5t-1.5-33 2.5-33.5 10-28.5 20.5-10.5z" + } + }] +}; +exports.textWidth = textWidth; \ No newline at end of file diff --git a/dist/fa/th.js b/dist/fa/th.js new file mode 100644 index 000000000..3c8a975e8 --- /dev/null +++ b/dist/fa/th.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.th = void 0; +var th = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M512 1248v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zM512 736v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zM1152 1248v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zM512 224v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zM1152 736v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zM1792 1248v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zM1152 224v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zM1792 736v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zM1792 224v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68z" + } + }] +}; +exports.th = th; \ No newline at end of file diff --git a/dist/fa/thLarge.js b/dist/fa/thLarge.js new file mode 100644 index 000000000..614efdb33 --- /dev/null +++ b/dist/fa/thLarge.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.thLarge = void 0; +var thLarge = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M768 1024v384q0 52-38 90t-90 38h-512q-52 0-90-38t-38-90v-384q0-52 38-90t90-38h512q52 0 90 38t38 90zM768 256v384q0 52-38 90t-90 38h-512q-52 0-90-38t-38-90v-384q0-52 38-90t90-38h512q52 0 90 38t38 90zM1664 1024v384q0 52-38 90t-90 38h-512q-52 0-90-38t-38-90v-384q0-52 38-90t90-38h512q52 0 90 38t38 90zM1664 256v384q0 52-38 90t-90 38h-512q-52 0-90-38t-38-90v-384q0-52 38-90t90-38h512q52 0 90 38t38 90z" + } + }] +}; +exports.thLarge = thLarge; \ No newline at end of file diff --git a/dist/fa/thList.js b/dist/fa/thList.js new file mode 100644 index 000000000..ca2dc5f4d --- /dev/null +++ b/dist/fa/thList.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.thList = void 0; +var thList = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M512 1248v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zM512 736v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zM1792 1248v192q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h960q40 0 68 28t28 68zM512 224v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zM1792 736v192q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h960q40 0 68 28t28 68zM1792 224v192q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h960q40 0 68 28t28 68z" + } + }] +}; +exports.thList = thList; \ No newline at end of file diff --git a/dist/fa/themeisle.js b/dist/fa/themeisle.js new file mode 100644 index 000000000..92f8a01f2 --- /dev/null +++ b/dist/fa/themeisle.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.themeisle = void 0; +var themeisle = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M852 309q0 29-17 52.5t-45 23.5-45-23.5-17-52.5 17-52.5 45-23.5 45 23.5 17 52.5zM688 1685v-114q0-30-20.5-51.5t-50.5-21.5-50 21.5-20 51.5v114q0 30 20.5 52t49.5 22q30 0 50.5-22t20.5-52zM860 1685v-114q0-30-20-51.5t-50-21.5-50.5 21.5-20.5 51.5v114q0 30 20.5 52t50.5 22q29 0 49.5-22t20.5-52zM1034 1685v-114q0-30-20.5-51.5t-50.5-21.5-50.5 21.5-20.5 51.5v114q0 30 20.5 52t50.5 22 50.5-22 20.5-52zM1208 1685v-114q0-30-20.5-51.5t-50.5-21.5-50.5 21.5-20.5 51.5v114q0 30 20.5 52t50.5 22 50.5-22 20.5-52zM1476 1001q-84 160-232 259.5t-323 99.5q-123 0-229.5-51.5t-178.5-137-113-197.5-41-232q0-88 21-174-104 175-104 390 0 162 65 312t185 251q30-57 91-57 56 0 86 50 32-50 87-50 56 0 86 50 32-50 87-50t87 50q30-50 86-50 28 0 52.5 15.5t37.5 40.5q112-94 177-231.5t73-287.5zM1326 972q0-75-72-75-17 0-47 6-95 19-149 19-226 0-226-243 0-86 30-204-83 127-83 275 0 150 89 260.5t235 110.5q111 0 210-70 13-48 13-79zM884 313q0-50-32-89.5t-81-39.5-81 39.5-32 89.5q0 51 31.5 90.5t81.5 39.5 81.5-39.5 31.5-90.5zM1513 652q0-96-37.5-179t-113-137-173.5-54q-77 0-149 35t-127 94q-48 159-48 268 0 104 45.5 157t147.5 53q53 0 142-19 36-6 53-6 51 0 77.5 28t26.5 80q0 26-4 46 75-68 117.5-165.5t42.5-200.5zM1792 869q0 111-33.5 249.5t-93.5 204.5q-58 64-195 142.5t-228 104.5l-4 1v114q0 43-29.5 75t-72.5 32q-56 0-86-50-32 50-87 50t-87-50q-30 50-86 50-55 0-87-50-30 50-86 50-47 0-75-33.5t-28-81.5q-90 68-198 68-118 0-211-80 54-1 106-20-113-31-182-127 32 7 71 7 89 0 164-46-192-192-240-306-24-56-24-160 0-57 9-125.5t31.5-146.5 55-141 86.5-105 120-42q59 0 81 52 19-29 42-54 2-3 12-13t13-16q10-15 23-38t25-42 28-39q87-111 211.5-177t260.5-66q35 0 62 4 59-64 146-64 83 0 140 57 5 5 5 12 0 5-6 13.5t-12.5 16-16 17l-10.5 10.5q17 6 36 18t19 24q0 6-16 25 157 138 197 378 25-30 60-30 45 0 100 49 90 80 90 279z" + } + }] +}; +exports.themeisle = themeisle; \ No newline at end of file diff --git a/dist/fa/thermometer.js b/dist/fa/thermometer.js new file mode 100644 index 000000000..20c3d7a7e --- /dev/null +++ b/dist/fa/thermometer.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.thermometer = void 0; +var thermometer = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 1344q0 80-56 136t-136 56-136-56-56-136q0-60 35-110t93-71v-907h128v907q58 21 93 71t35 110zM768 1344q0-77-34-144t-94-112v-768q0-80-56-136t-136-56-136 56-56 136v768q-60 45-94 112t-34 144q0 133 93.5 226.5t226.5 93.5 226.5-93.5 93.5-226.5zM896 1344q0 185-131.5 316.5t-316.5 131.5-316.5-131.5-131.5-316.5q0-182 128-313v-711q0-133 93.5-226.5t226.5-93.5 226.5 93.5 93.5 226.5v711q128 131 128 313zM1024 768v128h-192v-128h192zM1024 512v128h-192v-128h192zM1024 256v128h-192v-128h192z" + } + }] +}; +exports.thermometer = thermometer; \ No newline at end of file diff --git a/dist/fa/thermometer0.js b/dist/fa/thermometer0.js new file mode 100644 index 000000000..36f0d7f00 --- /dev/null +++ b/dist/fa/thermometer0.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.thermometer0 = void 0; +var thermometer0 = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 1344q0 80-56 136t-136 56-136-56-56-136q0-79 56-135.5t136-56.5 136 56.5 56 135.5zM768 1344q0-77-34-144t-94-112v-768q0-80-56-136t-136-56-136 56-56 136v768q-60 45-94 112t-34 144q0 133 93.5 226.5t226.5 93.5 226.5-93.5 93.5-226.5zM896 1344q0 185-131.5 316.5t-316.5 131.5-316.5-131.5-131.5-316.5q0-182 128-313v-711q0-133 93.5-226.5t226.5-93.5 226.5 93.5 93.5 226.5v711q128 131 128 313zM1024 768v128h-192v-128h192zM1024 512v128h-192v-128h192zM1024 256v128h-192v-128h192z" + } + }] +}; +exports.thermometer0 = thermometer0; \ No newline at end of file diff --git a/dist/fa/thermometer1.js b/dist/fa/thermometer1.js new file mode 100644 index 000000000..0eef0e29a --- /dev/null +++ b/dist/fa/thermometer1.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.thermometer1 = void 0; +var thermometer1 = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 1344q0 80-56 136t-136 56-136-56-56-136q0-60 35-110t93-71v-139h128v139q58 21 93 71t35 110zM768 1344q0-77-34-144t-94-112v-768q0-80-56-136t-136-56-136 56-56 136v768q-60 45-94 112t-34 144q0 133 93.5 226.5t226.5 93.5 226.5-93.5 93.5-226.5zM896 1344q0 185-131.5 316.5t-316.5 131.5-316.5-131.5-131.5-316.5q0-182 128-313v-711q0-133 93.5-226.5t226.5-93.5 226.5 93.5 93.5 226.5v711q128 131 128 313zM1024 768v128h-192v-128h192zM1024 512v128h-192v-128h192zM1024 256v128h-192v-128h192z" + } + }] +}; +exports.thermometer1 = thermometer1; \ No newline at end of file diff --git a/dist/fa/thermometer2.js b/dist/fa/thermometer2.js new file mode 100644 index 000000000..742ee308f --- /dev/null +++ b/dist/fa/thermometer2.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.thermometer2 = void 0; +var thermometer2 = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 1344q0 80-56 136t-136 56-136-56-56-136q0-60 35-110t93-71v-395h128v395q58 21 93 71t35 110zM768 1344q0-77-34-144t-94-112v-768q0-80-56-136t-136-56-136 56-56 136v768q-60 45-94 112t-34 144q0 133 93.5 226.5t226.5 93.5 226.5-93.5 93.5-226.5zM896 1344q0 185-131.5 316.5t-316.5 131.5-316.5-131.5-131.5-316.5q0-182 128-313v-711q0-133 93.5-226.5t226.5-93.5 226.5 93.5 93.5 226.5v711q128 131 128 313zM1024 768v128h-192v-128h192zM1024 512v128h-192v-128h192zM1024 256v128h-192v-128h192z" + } + }] +}; +exports.thermometer2 = thermometer2; \ No newline at end of file diff --git a/dist/fa/thermometer3.js b/dist/fa/thermometer3.js new file mode 100644 index 000000000..d83a8e577 --- /dev/null +++ b/dist/fa/thermometer3.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.thermometer3 = void 0; +var thermometer3 = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 1344q0 80-56 136t-136 56-136-56-56-136q0-60 35-110t93-71v-651h128v651q58 21 93 71t35 110zM768 1344q0-77-34-144t-94-112v-768q0-80-56-136t-136-56-136 56-56 136v768q-60 45-94 112t-34 144q0 133 93.5 226.5t226.5 93.5 226.5-93.5 93.5-226.5zM896 1344q0 185-131.5 316.5t-316.5 131.5-316.5-131.5-131.5-316.5q0-182 128-313v-711q0-133 93.5-226.5t226.5-93.5 226.5 93.5 93.5 226.5v711q128 131 128 313zM1024 768v128h-192v-128h192zM1024 512v128h-192v-128h192zM1024 256v128h-192v-128h192z" + } + }] +}; +exports.thermometer3 = thermometer3; \ No newline at end of file diff --git a/dist/fa/thermometer4.js b/dist/fa/thermometer4.js new file mode 100644 index 000000000..25dafe367 --- /dev/null +++ b/dist/fa/thermometer4.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.thermometer4 = void 0; +var thermometer4 = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 1344q0 80-56 136t-136 56-136-56-56-136q0-60 35-110t93-71v-907h128v907q58 21 93 71t35 110zM768 1344q0-77-34-144t-94-112v-768q0-80-56-136t-136-56-136 56-56 136v768q-60 45-94 112t-34 144q0 133 93.5 226.5t226.5 93.5 226.5-93.5 93.5-226.5zM896 1344q0 185-131.5 316.5t-316.5 131.5-316.5-131.5-131.5-316.5q0-182 128-313v-711q0-133 93.5-226.5t226.5-93.5 226.5 93.5 93.5 226.5v711q128 131 128 313zM1024 768v128h-192v-128h192zM1024 512v128h-192v-128h192zM1024 256v128h-192v-128h192z" + } + }] +}; +exports.thermometer4 = thermometer4; \ No newline at end of file diff --git a/dist/fa/thermometerEmpty.js b/dist/fa/thermometerEmpty.js new file mode 100644 index 000000000..06c92d243 --- /dev/null +++ b/dist/fa/thermometerEmpty.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.thermometerEmpty = void 0; +var thermometerEmpty = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 1344q0 80-56 136t-136 56-136-56-56-136q0-79 56-135.5t136-56.5 136 56.5 56 135.5zM768 1344q0-77-34-144t-94-112v-768q0-80-56-136t-136-56-136 56-56 136v768q-60 45-94 112t-34 144q0 133 93.5 226.5t226.5 93.5 226.5-93.5 93.5-226.5zM896 1344q0 185-131.5 316.5t-316.5 131.5-316.5-131.5-131.5-316.5q0-182 128-313v-711q0-133 93.5-226.5t226.5-93.5 226.5 93.5 93.5 226.5v711q128 131 128 313zM1024 768v128h-192v-128h192zM1024 512v128h-192v-128h192zM1024 256v128h-192v-128h192z" + } + }] +}; +exports.thermometerEmpty = thermometerEmpty; \ No newline at end of file diff --git a/dist/fa/thermometerFull.js b/dist/fa/thermometerFull.js new file mode 100644 index 000000000..02062f029 --- /dev/null +++ b/dist/fa/thermometerFull.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.thermometerFull = void 0; +var thermometerFull = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 1344q0 80-56 136t-136 56-136-56-56-136q0-60 35-110t93-71v-907h128v907q58 21 93 71t35 110zM768 1344q0-77-34-144t-94-112v-768q0-80-56-136t-136-56-136 56-56 136v768q-60 45-94 112t-34 144q0 133 93.5 226.5t226.5 93.5 226.5-93.5 93.5-226.5zM896 1344q0 185-131.5 316.5t-316.5 131.5-316.5-131.5-131.5-316.5q0-182 128-313v-711q0-133 93.5-226.5t226.5-93.5 226.5 93.5 93.5 226.5v711q128 131 128 313zM1024 768v128h-192v-128h192zM1024 512v128h-192v-128h192zM1024 256v128h-192v-128h192z" + } + }] +}; +exports.thermometerFull = thermometerFull; \ No newline at end of file diff --git a/dist/fa/thermometerHalf.js b/dist/fa/thermometerHalf.js new file mode 100644 index 000000000..15e10e3f8 --- /dev/null +++ b/dist/fa/thermometerHalf.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.thermometerHalf = void 0; +var thermometerHalf = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 1344q0 80-56 136t-136 56-136-56-56-136q0-60 35-110t93-71v-395h128v395q58 21 93 71t35 110zM768 1344q0-77-34-144t-94-112v-768q0-80-56-136t-136-56-136 56-56 136v768q-60 45-94 112t-34 144q0 133 93.5 226.5t226.5 93.5 226.5-93.5 93.5-226.5zM896 1344q0 185-131.5 316.5t-316.5 131.5-316.5-131.5-131.5-316.5q0-182 128-313v-711q0-133 93.5-226.5t226.5-93.5 226.5 93.5 93.5 226.5v711q128 131 128 313zM1024 768v128h-192v-128h192zM1024 512v128h-192v-128h192zM1024 256v128h-192v-128h192z" + } + }] +}; +exports.thermometerHalf = thermometerHalf; \ No newline at end of file diff --git a/dist/fa/thermometerQuarter.js b/dist/fa/thermometerQuarter.js new file mode 100644 index 000000000..4c9d55ba6 --- /dev/null +++ b/dist/fa/thermometerQuarter.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.thermometerQuarter = void 0; +var thermometerQuarter = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 1344q0 80-56 136t-136 56-136-56-56-136q0-60 35-110t93-71v-139h128v139q58 21 93 71t35 110zM768 1344q0-77-34-144t-94-112v-768q0-80-56-136t-136-56-136 56-56 136v768q-60 45-94 112t-34 144q0 133 93.5 226.5t226.5 93.5 226.5-93.5 93.5-226.5zM896 1344q0 185-131.5 316.5t-316.5 131.5-316.5-131.5-131.5-316.5q0-182 128-313v-711q0-133 93.5-226.5t226.5-93.5 226.5 93.5 93.5 226.5v711q128 131 128 313zM1024 768v128h-192v-128h192zM1024 512v128h-192v-128h192zM1024 256v128h-192v-128h192z" + } + }] +}; +exports.thermometerQuarter = thermometerQuarter; \ No newline at end of file diff --git a/dist/fa/thermometerThreeQuarters.js b/dist/fa/thermometerThreeQuarters.js new file mode 100644 index 000000000..6ee4947db --- /dev/null +++ b/dist/fa/thermometerThreeQuarters.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.thermometerThreeQuarters = void 0; +var thermometerThreeQuarters = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 1344q0 80-56 136t-136 56-136-56-56-136q0-60 35-110t93-71v-651h128v651q58 21 93 71t35 110zM768 1344q0-77-34-144t-94-112v-768q0-80-56-136t-136-56-136 56-56 136v768q-60 45-94 112t-34 144q0 133 93.5 226.5t226.5 93.5 226.5-93.5 93.5-226.5zM896 1344q0 185-131.5 316.5t-316.5 131.5-316.5-131.5-131.5-316.5q0-182 128-313v-711q0-133 93.5-226.5t226.5-93.5 226.5 93.5 93.5 226.5v711q128 131 128 313zM1024 768v128h-192v-128h192zM1024 512v128h-192v-128h192zM1024 256v128h-192v-128h192z" + } + }] +}; +exports.thermometerThreeQuarters = thermometerThreeQuarters; \ No newline at end of file diff --git a/dist/fa/thumbTack.js b/dist/fa/thumbTack.js new file mode 100644 index 000000000..274cf4d60 --- /dev/null +++ b/dist/fa/thumbTack.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.thumbTack = void 0; +var thumbTack = { + "viewBox": "0 0 1152 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M480 864v-448q0-14-9-23t-23-9-23 9-9 23v448q0 14 9 23t23 9 23-9 9-23zM1152 1216q0 26-19 45t-45 19h-429l-51 483q-2 12-10.5 20.5t-20.5 8.5h-1q-27 0-32-27l-76-485h-404q-26 0-45-19t-19-45q0-123 78.5-221.5t177.5-98.5v-512q-52 0-90-38t-38-90 38-90 90-38h640q52 0 90 38t38 90-38 90-90 38v512q99 0 177.5 98.5t78.5 221.5z" + } + }] +}; +exports.thumbTack = thumbTack; \ No newline at end of file diff --git a/dist/fa/thumbsDown.js b/dist/fa/thumbsDown.js new file mode 100644 index 000000000..dd60360fa --- /dev/null +++ b/dist/fa/thumbsDown.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.thumbsDown = void 0; +var thumbsDown = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M256 576q0 26-19 45t-45 19q-27 0-45.5-19t-18.5-45q0-27 18.5-45.5t45.5-18.5q26 0 45 18.5t19 45.5zM416 1088v-640q0-26-19-45t-45-19h-288q-26 0-45 19t-19 45v640q0 26 19 45t45 19h288q26 0 45-19t19-45zM1545 939q55 61 55 149-1 78-57.5 135t-134.5 57h-277q4 14 8 24t11 22 10 18q18 37 27 57t19 58.5 10 76.5q0 24-0.5 39t-5 45-12 50-24 45-40 40.5-60 26-82.5 10.5q-26 0-45-19-20-20-34-50t-19.5-52-12.5-61q-9-42-13.5-60.5t-17.5-48.5-31-48q-33-33-101-120-49-64-101-121t-76-59q-25-2-43-20.5t-18-43.5v-641q0-26 19-44.5t45-19.5q35-1 158-44 77-26 120.5-39.5t121.5-29 144-15.5h17 76 36q133 2 197 78 58 69 49 181 39 37 54 94 17 61 0 117 46 61 43 137 0 32-15 76z" + } + }] +}; +exports.thumbsDown = thumbsDown; \ No newline at end of file diff --git a/dist/fa/thumbsODown.js b/dist/fa/thumbsODown.js new file mode 100644 index 000000000..5f4e47334 --- /dev/null +++ b/dist/fa/thumbsODown.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.thumbsODown = void 0; +var thumbsODown = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M256 448q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zM1408 1024q0-35-21.5-81t-53.5-47q15-17 25-47.5t10-55.5q0-69-53-119 18-31 18-69 0-37-17.5-73.5t-47.5-52.5q5-30 5-56 0-85-49-126t-136-41h-128q-131 0-342 73-5 2-29 10.5t-35.5 12.5-35 11.5-38 11-33 6.5-31.5 3h-32v640h32q16 0 35.5 9t40 27 38.5 35.5 40 44 34.5 42.5 31.5 41 23 30q55 68 77 91 41 43 59.5 109.5t30.5 125.5 38 85q96 0 128-47t32-145q0-59-48-160.5t-48-159.5h352q50 0 89-38.5t39-89.5zM1536 1025q0 103-76 179t-180 76h-176q48 99 48 192 0 118-35 186-35 69-102 101.5t-151 32.5q-51 0-90-37-34-33-54-82t-25.5-90.5-17.5-84.5-31-64q-48-50-107-127-101-131-137-155h-274q-53 0-90.5-37.5t-37.5-90.5v-640q0-53 37.5-90.5t90.5-37.5h288q22 0 138-40 128-44 223-66t200-22h112q140 0 226.5 79t85.5 216v5q60 77 60 178 0 22-3 43 38 67 38 144 0 36-9 69 49 73 49 163z" + } + }] +}; +exports.thumbsODown = thumbsODown; \ No newline at end of file diff --git a/dist/fa/thumbsOUp.js b/dist/fa/thumbsOUp.js new file mode 100644 index 000000000..d82f28b0d --- /dev/null +++ b/dist/fa/thumbsOUp.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.thumbsOUp = void 0; +var thumbsOUp = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M256 1344q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zM1408 768q0-51-39-89.5t-89-38.5h-352q0-58 48-159.5t48-160.5q0-98-32-145t-128-47q-26 26-38 85t-30.5 125.5-59.5 109.5q-22 23-77 91-4 5-23 30t-31.5 41-34.5 42.5-40 44-38.5 35.5-40 27-35.5 9h-32v640h32q13 0 31.5 3t33 6.5 38 11 35 11.5 35.5 12.5 29 10.5q211 73 342 73h121q192 0 192-167 0-26-5-56 30-16 47.5-52.5t17.5-73.5-18-69q53-50 53-119 0-25-10-55.5t-25-47.5q32-1 53.5-47t21.5-81zM1536 767q0 89-49 163 9 33 9 69 0 77-38 144 3 21 3 43 0 101-60 178 1 139-85 219.5t-227 80.5h-36-93q-96 0-189.5-22.5t-216.5-65.5q-116-40-138-40h-288q-53 0-90.5-37.5t-37.5-90.5v-640q0-53 37.5-90.5t90.5-37.5h274q36-24 137-155 58-75 107-128 24-25 35.5-85.5t30.5-126.5 62-108q39-37 90-37 84 0 151 32.5t102 101.5 35 186q0 93-48 192h176q104 0 180 76t76 179z" + } + }] +}; +exports.thumbsOUp = thumbsOUp; \ No newline at end of file diff --git a/dist/fa/thumbsUp.js b/dist/fa/thumbsUp.js new file mode 100644 index 000000000..a3645d6f1 --- /dev/null +++ b/dist/fa/thumbsUp.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.thumbsUp = void 0; +var thumbsUp = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M256 1344q0-26-19-45t-45-19q-27 0-45.5 19t-18.5 45q0 27 18.5 45.5t45.5 18.5q26 0 45-18.5t19-45.5zM416 832v640q0 26-19 45t-45 19h-288q-26 0-45-19t-19-45v-640q0-26 19-45t45-19h288q26 0 45 19t19 45zM1600 832q0 86-55 149 15 44 15 76 3 76-43 137 17 56 0 117-15 57-54 94 9 112-49 181-64 76-197 78h-36-76-17q-66 0-144-15.5t-121.5-29-120.5-39.5q-123-43-158-44-26-1-45-19.5t-19-44.5v-641q0-25 18-43.5t43-20.5q24-2 76-59t101-121q68-87 101-120 18-18 31-48t17.5-48.5 13.5-60.5q7-39 12.5-61t19.5-52 34-50q19-19 45-19 46 0 82.5 10.5t60 26 40 40.5 24 45 12 50 5 45 0.5 39q0 38-9.5 76t-19 60-27.5 56q-3 6-10 18t-11 22-8 24h277q78 0 135 57t57 135z" + } + }] +}; +exports.thumbsUp = thumbsUp; \ No newline at end of file diff --git a/dist/fa/ticket.js b/dist/fa/ticket.js new file mode 100644 index 000000000..ccaa93415 --- /dev/null +++ b/dist/fa/ticket.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ticket = void 0; +var ticket = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 452l316 316-572 572-316-316zM813 1431l618-618q19-19 19-45t-19-45l-362-362q-18-18-45-18t-45 18l-618 618q-19 19-19 45t19 45l362 362q18 18 45 18t45-18zM1702 794l-907 908q-37 37-90.5 37t-90.5-37l-126-126q56-56 56-136t-56-136-136-56-136 56l-125-126q-37-37-37-90.5t37-90.5l907-906q37-37 90.5-37t90.5 37l125 125q-56 56-56 136t56 136 136 56 136-56l126 125q37 37 37 90.5t-37 90.5z" + } + }] +}; +exports.ticket = ticket; \ No newline at end of file diff --git a/dist/fa/times.js b/dist/fa/times.js new file mode 100644 index 000000000..0fd0d9f06 --- /dev/null +++ b/dist/fa/times.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.times = void 0; +var times = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1298 1322q0 40-28 68l-136 136q-28 28-68 28t-68-28l-294-294-294 294q-28 28-68 28t-68-28l-136-136q-28-28-28-68t28-68l294-294-294-294q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 294 294-294q28-28 68-28t68 28l136 136q28 28 28 68t-28 68l-294 294 294 294q28 28 28 68z" + } + }] +}; +exports.times = times; \ No newline at end of file diff --git a/dist/fa/timesCircle.js b/dist/fa/timesCircle.js new file mode 100644 index 000000000..05698c12d --- /dev/null +++ b/dist/fa/timesCircle.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.timesCircle = void 0; +var timesCircle = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1149 1122q0-26-19-45l-181-181 181-181q19-19 19-45 0-27-19-46l-90-90q-19-19-46-19-26 0-45 19l-181 181-181-181q-19-19-45-19-27 0-46 19l-90 90q-19 19-19 46 0 26 19 45l181 181-181 181q-19 19-19 45 0 27 19 46l90 90q19 19 46 19 26 0 45-19l181-181 181 181q19 19 45 19 27 0 46-19l90-90q19-19 19-46zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.timesCircle = timesCircle; \ No newline at end of file diff --git a/dist/fa/timesCircleO.js b/dist/fa/timesCircleO.js new file mode 100644 index 000000000..c07c8c630 --- /dev/null +++ b/dist/fa/timesCircleO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.timesCircleO = void 0; +var timesCircleO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1097 1079l-146 146q-10 10-23 10t-23-10l-137-137-137 137q-10 10-23 10t-23-10l-146-146q-10-10-10-23t10-23l137-137-137-137q-10-10-10-23t10-23l146-146q10-10 23-10t23 10l137 137 137-137q10-10 23-10t23 10l146 146q10 10 10 23t-10 23l-137 137 137 137q10 10 10 23t-10 23zM1312 896q0-148-73-273t-198-198-273-73-273 73-198 198-73 273 73 273 198 198 273 73 273-73 198-198 73-273zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" + } + }] +}; +exports.timesCircleO = timesCircleO; \ No newline at end of file diff --git a/dist/fa/timesRectangle.js b/dist/fa/timesRectangle.js new file mode 100644 index 000000000..ac0651415 --- /dev/null +++ b/dist/fa/timesRectangle.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.timesRectangle = void 0; +var timesRectangle = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1175 1321l146-146q10-10 10-23t-10-23l-233-233 233-233q10-10 10-23t-10-23l-146-146q-10-10-23-10t-23 10l-233 233-233-233q-10-10-23-10t-23 10l-146 146q-10 10-10 23t10 23l233 233-233 233q-10 10-10 23t10 23l146 146q10 10 23 10t23-10l233-233 233 233q10 10 23 10t23-10zM1792 288v1216q0 66-47 113t-113 47h-1472q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1472q66 0 113 47t47 113z" + } + }] +}; +exports.timesRectangle = timesRectangle; \ No newline at end of file diff --git a/dist/fa/timesRectangleO.js b/dist/fa/timesRectangleO.js new file mode 100644 index 000000000..d3f609915 --- /dev/null +++ b/dist/fa/timesRectangleO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.timesRectangleO = void 0; +var timesRectangleO = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1257 1111l-146 146q-10 10-23 10t-23-10l-169-169-169 169q-10 10-23 10t-23-10l-146-146q-10-10-10-23t10-23l169-169-169-169q-10-10-10-23t10-23l146-146q10-10 23-10t23 10l169 169 169-169q10-10 23-10t23 10l146 146q10 10 10 23t-10 23l-169 169 169 169q10 10 10 23t-10 23zM256 1408h1280v-1024h-1280v1024zM1792 288v1216q0 66-47 113t-113 47h-1472q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1472q66 0 113 47t47 113z" + } + }] +}; +exports.timesRectangleO = timesRectangleO; \ No newline at end of file diff --git a/dist/fa/tint.js b/dist/fa/tint.js new file mode 100644 index 000000000..9ad73d41f --- /dev/null +++ b/dist/fa/tint.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.tint = void 0; +var tint = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M512 1152q0-36-20-69-1-1-15.5-22.5t-25.5-38-25-44-21-50.5q-4-16-21-16t-21 16q-7 23-21 50.5t-25 44-25.5 38-15.5 22.5q-20 33-20 69 0 53 37.5 90.5t90.5 37.5 90.5-37.5 37.5-90.5zM1024 1024q0 212-150 362t-362 150-362-150-150-362q0-145 81-275 6-9 62.5-90.5t101-151 99.5-178 83-201.5q9-30 34-47t51-17 51.5 17 33.5 47q28 93 83 201.5t99.5 178 101 151 62.5 90.5q81 127 81 275z" + } + }] +}; +exports.tint = tint; \ No newline at end of file diff --git a/dist/fa/toggleDown.js b/dist/fa/toggleDown.js new file mode 100644 index 000000000..62452ca44 --- /dev/null +++ b/dist/fa/toggleDown.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.toggleDown = void 0; +var toggleDown = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1145 675q18 35-5 66l-320 448q-19 27-52 27t-52-27l-320-448q-23-31-5-66 17-35 57-35h640q40 0 57 35zM1280 1376v-960q0-13-9.5-22.5t-22.5-9.5h-960q-13 0-22.5 9.5t-9.5 22.5v960q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5-9.5t9.5-22.5zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.toggleDown = toggleDown; \ No newline at end of file diff --git a/dist/fa/toggleLeft.js b/dist/fa/toggleLeft.js new file mode 100644 index 000000000..34e4b3605 --- /dev/null +++ b/dist/fa/toggleLeft.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.toggleLeft = void 0; +var toggleLeft = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 576v640q0 26-19 45t-45 19q-20 0-37-12l-448-320q-27-19-27-52t27-52l448-320q17-12 37-12 26 0 45 19t19 45zM1280 1376v-960q0-13-9.5-22.5t-22.5-9.5h-960q-13 0-22.5 9.5t-9.5 22.5v960q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5-9.5t9.5-22.5zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.toggleLeft = toggleLeft; \ No newline at end of file diff --git a/dist/fa/toggleOff.js b/dist/fa/toggleOff.js new file mode 100644 index 000000000..58ef898d5 --- /dev/null +++ b/dist/fa/toggleOff.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.toggleOff = void 0; +var toggleOff = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1152 896q0-104-40.5-198.5t-109.5-163.5-163.5-109.5-198.5-40.5-198.5 40.5-163.5 109.5-109.5 163.5-40.5 198.5 40.5 198.5 109.5 163.5 163.5 109.5 198.5 40.5 198.5-40.5 163.5-109.5 109.5-163.5 40.5-198.5zM1920 896q0-104-40.5-198.5t-109.5-163.5-163.5-109.5-198.5-40.5h-386q119 90 188.5 224t69.5 288-69.5 288-188.5 224h386q104 0 198.5-40.5t163.5-109.5 109.5-163.5 40.5-198.5zM2048 896q0 130-51 248.5t-136.5 204-204 136.5-248.5 51h-768q-130 0-248.5-51t-204-136.5-136.5-204-51-248.5 51-248.5 136.5-204 204-136.5 248.5-51h768q130 0 248.5 51t204 136.5 136.5 204 51 248.5z" + } + }] +}; +exports.toggleOff = toggleOff; \ No newline at end of file diff --git a/dist/fa/toggleOn.js b/dist/fa/toggleOn.js new file mode 100644 index 000000000..8f6b00eaa --- /dev/null +++ b/dist/fa/toggleOn.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.toggleOn = void 0; +var toggleOn = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 896q0-130 51-248.5t136.5-204 204-136.5 248.5-51h768q130 0 248.5 51t204 136.5 136.5 204 51 248.5-51 248.5-136.5 204-204 136.5-248.5 51h-768q-130 0-248.5-51t-204-136.5-136.5-204-51-248.5zM1408 1408q104 0 198.5-40.5t163.5-109.5 109.5-163.5 40.5-198.5-40.5-198.5-109.5-163.5-163.5-109.5-198.5-40.5-198.5 40.5-163.5 109.5-109.5 163.5-40.5 198.5 40.5 198.5 109.5 163.5 163.5 109.5 198.5 40.5z" + } + }] +}; +exports.toggleOn = toggleOn; \ No newline at end of file diff --git a/dist/fa/toggleRight.js b/dist/fa/toggleRight.js new file mode 100644 index 000000000..94d623a32 --- /dev/null +++ b/dist/fa/toggleRight.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.toggleRight = void 0; +var toggleRight = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1088 896q0 33-27 52l-448 320q-31 23-66 5-35-17-35-57v-640q0-40 35-57 35-18 66 5l448 320q27 19 27 52zM1280 1376v-960q0-14-9-23t-23-9h-960q-14 0-23 9t-9 23v960q0 14 9 23t23 9h960q14 0 23-9t9-23zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.toggleRight = toggleRight; \ No newline at end of file diff --git a/dist/fa/toggleUp.js b/dist/fa/toggleUp.js new file mode 100644 index 000000000..ce1b140f5 --- /dev/null +++ b/dist/fa/toggleUp.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.toggleUp = void 0; +var toggleUp = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1145 1117q-17 35-57 35h-640q-40 0-57-35-18-35 5-66l320-448q19-27 52-27t52 27l320 448q23 31 5 66zM1280 1376v-960q0-13-9.5-22.5t-22.5-9.5h-960q-13 0-22.5 9.5t-9.5 22.5v960q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5-9.5t9.5-22.5zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.toggleUp = toggleUp; \ No newline at end of file diff --git a/dist/fa/trademark.js b/dist/fa/trademark.js new file mode 100644 index 000000000..50f2c9b44 --- /dev/null +++ b/dist/fa/trademark.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.trademark = void 0; +var trademark = { + "viewBox": "0 0 1973 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M857 544v117q0 13-9.5 22t-22.5 9h-298v812q0 13-9 22.5t-22 9.5h-135q-13 0-22.5-9t-9.5-23v-812h-297q-13 0-22.5-9t-9.5-22v-117q0-14 9-23t23-9h793q13 0 22.5 9.5t9.5 22.5zM1895 541l77 961q1 13-8 24-10 10-23 10h-134q-12 0-21-8.5t-10-20.5l-46-588-189 425q-8 19-29 19h-120q-20 0-29-19l-188-427-45 590q-1 12-10 20.5t-21 8.5h-135q-13 0-23-10-9-10-9-24l78-961q1-12 10-20.5t21-8.5h142q20 0 29 19l220 520q10 24 20 51 3-7 9.5-24.5t10.5-26.5l221-520q9-19 29-19h141q13 0 22 8.5t10 20.5z" + } + }] +}; +exports.trademark = trademark; \ No newline at end of file diff --git a/dist/fa/train.js b/dist/fa/train.js new file mode 100644 index 000000000..d674472b0 --- /dev/null +++ b/dist/fa/train.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.train = void 0; +var train = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1088 0q185 0 316.5 93.5t131.5 226.5v896q0 130-125.5 222t-305.5 97l213 202q16 15 8 35t-30 20h-1056q-22 0-30-20t8-35l213-202q-180-5-305.5-97t-125.5-222v-896q0-133 131.5-226.5t316.5-93.5h640zM768 1344q80 0 136-56t56-136-56-136-136-56-136 56-56 136 56 136 136 56zM1344 768v-512h-1152v512h1152z" + } + }] +}; +exports.train = train; \ No newline at end of file diff --git a/dist/fa/transgender.js b/dist/fa/transgender.js new file mode 100644 index 000000000..be028b2cf --- /dev/null +++ b/dist/fa/transgender.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.transgender = void 0; +var transgender = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 32q0-14 9-23t23-9h288q26 0 45 19t19 45v288q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-134l-254 255q126 158 126 359 0 221-147.5 384.5t-364.5 187.5v132h96q14 0 23 9t9 23v64q0 14-9 23t-23 9h-96v96q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-96h-96q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h96v-132q-149-16-270.5-103t-186.5-223.5-53-291.5q16-204 160-353.5t347-172.5q118-14 228 19t198 103l255-254h-134q-14 0-23-9t-9-23v-64zM576 1280q185 0 316.5-131.5t131.5-316.5-131.5-316.5-316.5-131.5-316.5 131.5-131.5 316.5 131.5 316.5 316.5 131.5z" + } + }] +}; +exports.transgender = transgender; \ No newline at end of file diff --git a/dist/fa/transgenderAlt.js b/dist/fa/transgenderAlt.js new file mode 100644 index 000000000..12e682f8c --- /dev/null +++ b/dist/fa/transgenderAlt.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.transgenderAlt = void 0; +var transgenderAlt = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1280 32q0-14 9-23t23-9h288q26 0 45 19t19 45v288q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-134l-254 255q126 158 126 359 0 221-147.5 384.5t-364.5 187.5v132h96q14 0 23 9t9 23v64q0 14-9 23t-23 9h-96v96q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-96h-96q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h96v-132q-217-24-364.5-187.5t-147.5-384.5q0-201 126-359l-52-53-101 111q-9 10-22 10.5t-23-7.5l-48-44q-10-8-10.5-21.5t8.5-23.5l105-115-111-112v134q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-288q0-26 19-45t45-19h288q14 0 23 9t9 23v64q0 14-9 23t-23 9h-133l106 107 86-94q9-10 22-10.5t23 7.5l48 44q10 8 10.5 21.5t-8.5 23.5l-90 99 57 56q158-126 359-126t359 126l255-254h-134q-14 0-23-9t-9-23v-64zM832 1280q185 0 316.5-131.5t131.5-316.5-131.5-316.5-316.5-131.5-316.5 131.5-131.5 316.5 131.5 316.5 316.5 131.5z" + } + }] +}; +exports.transgenderAlt = transgenderAlt; \ No newline at end of file diff --git a/dist/fa/trash.js b/dist/fa/trash.js new file mode 100644 index 000000000..092f5a812 --- /dev/null +++ b/dist/fa/trash.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.trash = void 0; +var trash = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M512 1376v-704q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v704q0 14 9 23t23 9h64q14 0 23-9t9-23zM768 1376v-704q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v704q0 14 9 23t23 9h64q14 0 23-9t9-23zM1024 1376v-704q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v704q0 14 9 23t23 9h64q14 0 23-9t9-23zM480 384h448l-48-117q-7-9-17-11h-317q-10 2-17 11zM1408 416v64q0 14-9 23t-23 9h-96v948q0 83-47 143.5t-113 60.5h-832q-66 0-113-58.5t-47-141.5v-952h-96q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h309l70-167q15-37 54-63t79-26h320q40 0 79 26t54 63l70 167h309q14 0 23 9t9 23z" + } + }] +}; +exports.trash = trash; \ No newline at end of file diff --git a/dist/fa/trashO.js b/dist/fa/trashO.js new file mode 100644 index 000000000..64bb63f8b --- /dev/null +++ b/dist/fa/trashO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.trashO = void 0; +var trashO = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M512 736v576q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-576q0-14 9-23t23-9h64q14 0 23 9t9 23zM768 736v576q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-576q0-14 9-23t23-9h64q14 0 23 9t9 23zM1024 736v576q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-576q0-14 9-23t23-9h64q14 0 23 9t9 23zM1152 1460v-948h-896v948q0 22 7 40.5t14.5 27 10.5 8.5h832q3 0 10.5-8.5t14.5-27 7-40.5zM480 384h448l-48-117q-7-9-17-11h-317q-10 2-17 11zM1408 416v64q0 14-9 23t-23 9h-96v948q0 83-47 143.5t-113 60.5h-832q-66 0-113-58.5t-47-141.5v-952h-96q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h309l70-167q15-37 54-63t79-26h320q40 0 79 26t54 63l70 167h309q14 0 23 9t9 23z" + } + }] +}; +exports.trashO = trashO; \ No newline at end of file diff --git a/dist/fa/tree.js b/dist/fa/tree.js new file mode 100644 index 000000000..8438a9f2c --- /dev/null +++ b/dist/fa/tree.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.tree = void 0; +var tree = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1504 1472q0 26-19 45t-45 19h-462q1 17 6 87.5t5 108.5q0 25-18 42.5t-43 17.5h-320q-25 0-43-17.5t-18-42.5q0-38 5-108.5t6-87.5h-462q-26 0-45-19t-19-45 19-45l402-403h-229q-26 0-45-19t-19-45 19-45l402-403h-197q-26 0-45-19t-19-45 19-45l384-384q19-19 45-19t45 19l384 384q19 19 19 45t-19 45-45 19h-197l402 403q19 19 19 45t-19 45-45 19h-229l402 403q19 19 19 45z" + } + }] +}; +exports.tree = tree; \ No newline at end of file diff --git a/dist/fa/trello.js b/dist/fa/trello.js new file mode 100644 index 000000000..1ac95b058 --- /dev/null +++ b/dist/fa/trello.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.trello = void 0; +var trello = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M704 1344v-1024q0-14-9-23t-23-9h-480q-14 0-23 9t-9 23v1024q0 14 9 23t23 9h480q14 0 23-9t9-23zM1376 960v-640q0-14-9-23t-23-9h-480q-14 0-23 9t-9 23v640q0 14 9 23t23 9h480q14 0 23-9t9-23zM1536 192v1408q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-1408q0-26 19-45t45-19h1408q26 0 45 19t19 45z" + } + }] +}; +exports.trello = trello; \ No newline at end of file diff --git a/dist/fa/tripadvisor.js b/dist/fa/tripadvisor.js new file mode 100644 index 000000000..89c834870 --- /dev/null +++ b/dist/fa/tripadvisor.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.tripadvisor = void 0; +var tripadvisor = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M651 997q0 39-27.5 66.5t-65.5 27.5q-39 0-66.5-27.5t-27.5-66.5q0-38 27.5-65.5t66.5-27.5q38 0 65.5 27.5t27.5 65.5zM1805 996q0 39-27.5 66.5t-66.5 27.5-66.5-27.5-27.5-66.5 27.5-66 66.5-27 66.5 27 27.5 66zM765 997q0-79-56.5-136t-136.5-57-136.5 56.5-56.5 136.5 56.5 136.5 136.5 56.5 136.5-56.5 56.5-136.5zM1918 996q0-80-56.5-136.5t-136.5-56.5q-79 0-136 56.5t-57 136.5 56.5 136.5 136.5 56.5 136.5-56.5 56.5-136.5zM850 997q0 116-81.5 197.5t-196.5 81.5q-116 0-197.5-82t-81.5-197 82-196.5 197-81.5 196.5 81.5 81.5 196.5zM2004 996q0 115-81.5 196.5t-197.5 81.5q-115 0-196.5-81.5t-81.5-196.5 81.5-196.5 196.5-81.5q116 0 197.5 81.5t81.5 196.5zM1040 999q0-191-135.5-326.5t-326.5-135.5q-125 0-231 62t-168 168.5-62 231.5 62 231.5 168 168.5 231 62q191 0 326.5-135.5t135.5-326.5zM1708 426q-254-111-556-111-319 0-573 110 117 0 223 45.5t182.5 122.5 122 183 45.5 223q0-115 43.5-219.5t118-180.5 177.5-123 217-50zM2187 999q0-191-135-326.5t-326-135.5-326.5 135.5-135.5 326.5 135.5 326.5 326.5 135.5 326-135.5 135-326.5zM1921 433h383q-44 51-75 114.5t-40 114.5q110 151 110 337 0 156-77 288t-209 208.5-287 76.5q-133 0-249-56t-196-155q-47 56-129 179-11-22-53.5-82.5t-74.5-97.5q-80 99-196.5 155.5t-249.5 56.5q-155 0-287-76.5t-209-208.5-77-288q0-186 110-337-9-51-40-114.5t-75-114.5h365q149-100 355-156.5t432-56.5q224 0 421 56t348 157z" + } + }] +}; +exports.tripadvisor = tripadvisor; \ No newline at end of file diff --git a/dist/fa/trophy.js b/dist/fa/trophy.js new file mode 100644 index 000000000..2944db711 --- /dev/null +++ b/dist/fa/trophy.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.trophy = void 0; +var trophy = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M458 883q-74-162-74-371h-256v96q0 78 94.5 162t235.5 113zM1536 608v-96h-256q0 209-74 371 141-29 235.5-113t94.5-162zM1664 480v128q0 71-41.5 143t-112 130-173 97.5-215.5 44.5q-42 54-95 95-38 34-52.5 72.5t-14.5 89.5q0 54 30.5 91t97.5 37q75 0 133.5 45.5t58.5 114.5v64q0 14-9 23t-23 9h-832q-14 0-23-9t-9-23v-64q0-69 58.5-114.5t133.5-45.5q67 0 97.5-37t30.5-91q0-51-14.5-89.5t-52.5-72.5q-53-41-95-95-113-5-215.5-44.5t-173-97.5-112-130-41.5-143v-128q0-40 28-68t68-28h288v-96q0-66 47-113t113-47h576q66 0 113 47t47 113v96h288q40 0 68 28t28 68z" + } + }] +}; +exports.trophy = trophy; \ No newline at end of file diff --git a/dist/fa/truck.js b/dist/fa/truck.js new file mode 100644 index 000000000..ad719eb3e --- /dev/null +++ b/dist/fa/truck.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.truck = void 0; +var truck = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M640 1408q0-52-38-90t-90-38-90 38-38 90 38 90 90 38 90-38 38-90zM256 896h384v-256h-158q-13 0-22 9l-195 195q-9 9-9 22v30zM1536 1408q0-52-38-90t-90-38-90 38-38 90 38 90 90 38 90-38 38-90zM1792 320v1024q0 15-4 26.5t-13.5 18.5-16.5 11.5-23.5 6-22.5 2-25.5 0-22.5-0.5q0 106-75 181t-181 75-181-75-75-181h-384q0 106-75 181t-181 75-181-75-75-181h-64q-3 0-22.5 0.5t-25.5 0-22.5-2-23.5-6-16.5-11.5-13.5-18.5-4-26.5q0-26 19-45t45-19v-320q0-8-0.5-35t0-38 2.5-34.5 6.5-37 14-30.5 22.5-30l198-198q19-19 50.5-32t58.5-13h160v-192q0-26 19-45t45-19h1024q26 0 45 19t19 45z" + } + }] +}; +exports.truck = truck; \ No newline at end of file diff --git a/dist/fa/tryIcon.js b/dist/fa/tryIcon.js new file mode 100644 index 000000000..f76195d92 --- /dev/null +++ b/dist/fa/tryIcon.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.tryIcon = void 0; +var tryIcon = { + "viewBox": "0 0 1152 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1152 832q0 191-94.5 353t-256.5 256.5-353 94.5h-160q-14 0-23-9t-9-23v-611l-215 66q-3 1-9 1-10 0-19-6-13-10-13-26v-128q0-23 23-31l233-71v-93l-215 66q-3 1-9 1-10 0-19-6-13-10-13-26v-128q0-23 23-31l233-71v-250q0-14 9-23t23-9h160q14 0 23 9t9 23v181l375-116q15-5 28 5t13 26v128q0 23-23 31l-393 121v93l375-116q15-5 28 5t13 26v128q0 23-23 31l-393 121v487q188-13 318-151t130-328q0-14 9-23t23-9h160q14 0 23 9t9 23z" + } + }] +}; +exports.tryIcon = tryIcon; \ No newline at end of file diff --git a/dist/fa/tty.js b/dist/fa/tty.js new file mode 100644 index 000000000..88752670a --- /dev/null +++ b/dist/fa/tty.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.tty = void 0; +var tty = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M448 1312v192q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h192q14 0 23 9t9 23zM256 928v192q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h192q14 0 23 9t9 23zM832 1312v192q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h192q14 0 23 9t9 23zM640 928v192q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h192q14 0 23 9t9 23zM66 768q-28 0-47-19t-19-46v-129h514v129q0 27-19 46t-46 19h-383zM1216 1312v192q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h192q14 0 23 9t9 23zM1024 928v192q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h192q14 0 23 9t9 23zM1600 1312v192q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h192q14 0 23 9t9 23zM1408 928v192q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h192q14 0 23 9t9 23zM1792 520v13h-514v-10q0-104-382-102-382 1-382 102v10h-514v-13q0-17 8.5-43t34-64 65.5-75.5 110.5-76 160-67.5 224-47.5 293.5-18.5 293 18.5 224 47.5 160.5 67.5 110.5 76 65.5 75.5 34 64 8.5 43zM1792 928v192q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h192q14 0 23 9t9 23zM1792 574v129q0 27-19 46t-46 19h-384q-27 0-46-19t-19-46v-129h514z" + } + }] +}; +exports.tty = tty; \ No newline at end of file diff --git a/dist/fa/tumblr.js b/dist/fa/tumblr.js new file mode 100644 index 000000000..694602c2b --- /dev/null +++ b/dist/fa/tumblr.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.tumblr = void 0; +var tumblr = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M944 1329l80 237q-23 35-111 66t-177 32q-104 2-190.5-26t-142.5-74-95-106-55.5-120-16.5-118v-544h-168v-215q72-26 129-69.5t91-90 58-102 34-99 15-88.5q1-5 4.5-8.5t7.5-3.5h244v424h333v252h-334v518q0 30 6.5 56t22.5 52.5 49.5 41.5 81.5 14q78-2 134-29z" + } + }] +}; +exports.tumblr = tumblr; \ No newline at end of file diff --git a/dist/fa/tumblrSquare.js b/dist/fa/tumblrSquare.js new file mode 100644 index 000000000..c83405b98 --- /dev/null +++ b/dist/fa/tumblrSquare.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.tumblrSquare = void 0; +var tumblrSquare = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1136 1461l-62-183q-44 22-103 22-36 1-62-10.5t-38.5-31.5-17.5-40.5-5-43.5v-398h257v-194h-256v-326h-188q-8 0-9 10-5 44-17.5 87t-39 95-77 95-118.5 68v165h130v418q0 57 21.5 115t65 111 121 85.5 176.5 30.5q69-1 136.5-25t85.5-50zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.tumblrSquare = tumblrSquare; \ No newline at end of file diff --git a/dist/fa/turkishLira.js b/dist/fa/turkishLira.js new file mode 100644 index 000000000..b6e0a700d --- /dev/null +++ b/dist/fa/turkishLira.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.turkishLira = void 0; +var turkishLira = { + "viewBox": "0 0 1152 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1152 832q0 191-94.5 353t-256.5 256.5-353 94.5h-160q-14 0-23-9t-9-23v-611l-215 66q-3 1-9 1-10 0-19-6-13-10-13-26v-128q0-23 23-31l233-71v-93l-215 66q-3 1-9 1-10 0-19-6-13-10-13-26v-128q0-23 23-31l233-71v-250q0-14 9-23t23-9h160q14 0 23 9t9 23v181l375-116q15-5 28 5t13 26v128q0 23-23 31l-393 121v93l375-116q15-5 28 5t13 26v128q0 23-23 31l-393 121v487q188-13 318-151t130-328q0-14 9-23t23-9h160q14 0 23 9t9 23z" + } + }] +}; +exports.turkishLira = turkishLira; \ No newline at end of file diff --git a/dist/fa/tv.js b/dist/fa/tv.js new file mode 100644 index 000000000..de0b635b6 --- /dev/null +++ b/dist/fa/tv.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.tv = void 0; +var tv = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1792 1248v-960q0-13-9.5-22.5t-22.5-9.5h-1600q-13 0-22.5 9.5t-9.5 22.5v960q0 13 9.5 22.5t22.5 9.5h1600q13 0 22.5-9.5t9.5-22.5zM1920 288v960q0 66-47 113t-113 47h-736v128h352q14 0 23 9t9 23v64q0 14-9 23t-23 9h-832q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h352v-128h-736q-66 0-113-47t-47-113v-960q0-66 47-113t113-47h1600q66 0 113 47t47 113z" + } + }] +}; +exports.tv = tv; \ No newline at end of file diff --git a/dist/fa/twitch.js b/dist/fa/twitch.js new file mode 100644 index 000000000..cd4f29015 --- /dev/null +++ b/dist/fa/twitch.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.twitch = void 0; +var twitch = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M896 434v434h-145v-434h145zM1294 434v434h-145v-434h145zM1294 1194l253-254v-795h-1194v1049h326v217l217-217h398zM1692 0v1013l-434 434h-326l-217 217h-217v-217h-398v-1158l109-289h1483z" + } + }] +}; +exports.twitch = twitch; \ No newline at end of file diff --git a/dist/fa/twitter.js b/dist/fa/twitter.js new file mode 100644 index 000000000..0087f04df --- /dev/null +++ b/dist/fa/twitter.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.twitter = void 0; +var twitter = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1620 408q-67 98-162 167 1 14 1 42 0 130-38 259.5t-115.5 248.5-184.5 210.5-258 146-323 54.5q-271 0-496-145 35 4 78 4 225 0 401-138-105-2-188-64.5t-114-159.5q33 5 61 5 43 0 85-11-112-23-185.5-111.5t-73.5-205.5v-4q68 38 146 41-66-44-105-115t-39-154q0-88 44-163 121 149 294.5 238.5t371.5 99.5q-8-38-8-74 0-134 94.5-228.5t228.5-94.5q140 0 236 102 109-21 205-78-37 115-142 178 93-10 186-50z" + } + }] +}; +exports.twitter = twitter; \ No newline at end of file diff --git a/dist/fa/twitterSquare.js b/dist/fa/twitterSquare.js new file mode 100644 index 000000000..6abac0385 --- /dev/null +++ b/dist/fa/twitterSquare.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.twitterSquare = void 0; +var twitterSquare = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1280 610q-56 25-121 34 68-40 93-117-65 38-134 51-61-66-153-66-87 0-148.5 61.5t-61.5 148.5q0 29 5 48-129-7-242-65t-192-155q-29 50-29 106 0 114 91 175-47-1-100-26v2q0 75 50 133.5t123 72.5q-29 8-51 8-13 0-39-4 21 63 74.5 104t121.5 42q-116 90-261 90-26 0-50-3 148 94 322 94 112 0 210-35.5t168-95 120.5-137 75-162 24.5-168.5q0-18-1-27 63-45 105-109zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.twitterSquare = twitterSquare; \ No newline at end of file diff --git a/dist/fa/umbrella.js b/dist/fa/umbrella.js new file mode 100644 index 000000000..cc5027d16 --- /dev/null +++ b/dist/fa/umbrella.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.umbrella = void 0; +var umbrella = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M896 828v580q0 104-76 180t-180 76-180-76-76-180q0-26 19-45t45-19 45 19 19 45q0 50 39 89t89 39 89-39 39-89v-580q33-11 64-11t64 11zM1664 855q0 13-9.5 22.5t-22.5 9.5q-11 0-23-10-49-46-93-69t-102-23q-68 0-128 37t-103 97q-7 10-17.5 28t-14.5 24q-11 17-28 17-18 0-29-17-4-6-14.5-24t-17.5-28q-43-60-102.5-97t-127.5-37-127.5 37-102.5 97q-7 10-17.5 28t-14.5 24q-11 17-29 17-17 0-28-17-4-6-14.5-24t-17.5-28q-43-60-103-97t-128-37q-58 0-102 23t-93 69q-12 10-23 10-13 0-22.5-9.5t-9.5-22.5q0-5 1-7 45-183 172.5-319.5t298-204.5 360.5-68q140 0 274.5 40t246.5 113.5 194.5 187 115.5 251.5q1 2 1 7zM896 128v98q-42-2-64-2t-64 2v-98q0-26 19-45t45-19 45 19 19 45z" + } + }] +}; +exports.umbrella = umbrella; \ No newline at end of file diff --git a/dist/fa/underline.js b/dist/fa/underline.js new file mode 100644 index 000000000..05d45e57b --- /dev/null +++ b/dist/fa/underline.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.underline = void 0; +var underline = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M48 223q-37-2-45-4l-3-88q13-1 40-1 60 0 112 4 132 7 166 7 86 0 168-3 116-4 146-5 56 0 86-2l-1 14 2 64v9q-60 9-124 9-60 0-79 25-13 14-13 132 0 13 0.5 32.5t0.5 25.5l1 229 14 280q6 124 51 202 35 59 96 92 88 47 177 47 104 0 191-28 56-18 99-51 48-36 65-64 36-56 53-114 21-73 21-229 0-79-3.5-128t-11-122.5-13.5-159.5l-4-59q-5-67-24-88-34-35-77-34l-100 2-14-3 2-86h84l205 10q76 3 196-10l18 2q6 38 6 51 0 7-4 31-45 12-84 13-73 11-79 17-15 15-15 41 0 7 1.5 27t1.5 31q8 19 22 396 6 195-15 304-15 76-41 122-38 65-112 123-75 57-182 89-109 33-255 33-167 0-284-46-119-47-179-122-61-76-83-195-16-80-16-237v-333q0-188-17-213-25-36-147-39zM1536 1632v-64q0-14-9-23t-23-9h-1472q-14 0-23 9t-9 23v64q0 14 9 23t23 9h1472q14 0 23-9t9-23z" + } + }] +}; +exports.underline = underline; \ No newline at end of file diff --git a/dist/fa/undo.js b/dist/fa/undo.js new file mode 100644 index 000000000..befb19c00 --- /dev/null +++ b/dist/fa/undo.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.undo = void 0; +var undo = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1536 896q0 156-61 298t-164 245-245 164-298 61q-172 0-327-72.5t-264-204.5q-7-10-6.5-22.5t8.5-20.5l137-138q10-9 25-9 16 2 23 12 73 95 179 147t225 52q104 0 198.5-40.5t163.5-109.5 109.5-163.5 40.5-198.5-40.5-198.5-109.5-163.5-163.5-109.5-198.5-40.5q-98 0-188 35.5t-160 101.5l137 138q31 30 14 69-17 40-59 40h-448q-26 0-45-19t-19-45v-448q0-42 40-59 39-17 69 14l130 129q107-101 244.5-156.5t284.5-55.5q156 0 298 61t245 164 164 245 61 298z" + } + }] +}; +exports.undo = undo; \ No newline at end of file diff --git a/dist/fa/universalAccess.js b/dist/fa/universalAccess.js new file mode 100644 index 000000000..e9e5b1fbd --- /dev/null +++ b/dist/fa/universalAccess.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.universalAccess = void 0; +var universalAccess = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1374 657q-6-26-28.5-39.5t-48.5-7.5q-261 62-401 62t-401-62q-26-6-48.5 7.5t-28.5 39.5 7.5 48.5 39.5 28.5q194 46 303 58-2 158-15.5 269t-26.5 155.5-41 115.5l-9 21q-10 25 1 49t36 34q9 4 23 4 44 0 60-41l8-20q54-139 71-259h42q17 120 71 259l8 20q16 41 60 41 14 0 23-4 25-10 36-34t1-49l-9-21q-28-71-41-115.5t-26.5-155.5-15.5-269q109-12 303-58 26-6 39.5-28.5t7.5-48.5zM1024 512q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1600 896q0 143-55.5 273.5t-150 225-225 150-273.5 55.5-273.5-55.5-225-150-150-225-55.5-273.5 55.5-273.5 150-225 225-150 273.5-55.5 273.5 55.5 225 150 150 225 55.5 273.5zM896 128q-156 0-298 61t-245 164-164 245-61 298 61 298 164 245 245 164 298 61 298-61 245-164 164-245 61-298-61-298-164-245-245-164-298-61zM1792 896q0 182-71 348t-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71 348 71 286 191 191 286 71 348z" + } + }] +}; +exports.universalAccess = universalAccess; \ No newline at end of file diff --git a/dist/fa/university.js b/dist/fa/university.js new file mode 100644 index 000000000..ad92b5c3c --- /dev/null +++ b/dist/fa/university.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.university = void 0; +var university = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M960 0l960 384v128h-128q0 26-20.5 45t-48.5 19h-1526q-28 0-48.5-19t-20.5-45h-128v-128zM256 640h256v768h128v-768h256v768h128v-768h256v768h128v-768h256v768h59q28 0 48.5 19t20.5 45v64h-1664v-64q0-26 20.5-45t48.5-19h59v-768zM1851 1600q28 0 48.5 19t20.5 45v128h-1920v-128q0-26 20.5-45t48.5-19h1782z" + } + }] +}; +exports.university = university; \ No newline at end of file diff --git a/dist/fa/unlink.js b/dist/fa/unlink.js new file mode 100644 index 000000000..be51d85e4 --- /dev/null +++ b/dist/fa/unlink.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.unlink = void 0; +var unlink = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M439 1271l-256 256q-11 9-23 9t-23-9q-9-10-9-23t9-23l256-256q10-9 23-9t23 9q9 10 9 23t-9 23zM608 1312v320q0 14-9 23t-23 9-23-9-9-23v-320q0-14 9-23t23-9 23 9 9 23zM384 1088q0 14-9 23t-23 9h-320q-14 0-23-9t-9-23 9-23 23-9h320q14 0 23 9t9 23zM1648 1216q0 120-85 203l-147 146q-83 83-203 83-121 0-204-85l-334-335q-21-21-42-56l239-18 273 274q27 27 68 27.5t68-26.5l147-146q28-28 28-67 0-40-28-68l-274-275 18-239q35 21 56 42l336 336q84 86 84 204zM1031 492l-239 18-273-274q-28-28-68-28-39 0-68 27l-147 146q-28 28-28 67 0 40 28 68l274 274-18 240q-35-21-56-42l-336-336q-84-86-84-204 0-120 85-203l147-146q83-83 203-83 121 0 204 85l334 335q21 21 42 56zM1664 576q0 14-9 23t-23 9h-320q-14 0-23-9t-9-23 9-23 23-9h320q14 0 23 9t9 23zM1120 32v320q0 14-9 23t-23 9-23-9-9-23v-320q0-14 9-23t23-9 23 9 9 23zM1527 183l-256 256q-11 9-23 9t-23-9q-9-10-9-23t9-23l256-256q10-9 23-9t23 9q9 10 9 23t-9 23z" + } + }] +}; +exports.unlink = unlink; \ No newline at end of file diff --git a/dist/fa/unlock.js b/dist/fa/unlock.js new file mode 100644 index 000000000..ef49df44c --- /dev/null +++ b/dist/fa/unlock.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.unlock = void 0; +var unlock = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1664 576v256q0 26-19 45t-45 19h-64q-26 0-45-19t-19-45v-256q0-106-75-181t-181-75-181 75-75 181v192h96q40 0 68 28t28 68v576q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-576q0-40 28-68t68-28h672v-192q0-185 131.5-316.5t316.5-131.5 316.5 131.5 131.5 316.5z" + } + }] +}; +exports.unlock = unlock; \ No newline at end of file diff --git a/dist/fa/unlockAlt.js b/dist/fa/unlockAlt.js new file mode 100644 index 000000000..ba999cd01 --- /dev/null +++ b/dist/fa/unlockAlt.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.unlockAlt = void 0; +var unlockAlt = { + "viewBox": "0 0 1152 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1056 768q40 0 68 28t28 68v576q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-576q0-40 28-68t68-28h32v-320q0-185 131.5-316.5t316.5-131.5 316.5 131.5 131.5 316.5q0 26-19 45t-45 19h-64q-26 0-45-19t-19-45q0-106-75-181t-181-75-181 75-75 181v320h736z" + } + }] +}; +exports.unlockAlt = unlockAlt; \ No newline at end of file diff --git a/dist/fa/unsorted.js b/dist/fa/unsorted.js new file mode 100644 index 000000000..ef5ec2e68 --- /dev/null +++ b/dist/fa/unsorted.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.unsorted = void 0; +var unsorted = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 1088q0 26-19 45l-448 448q-19 19-45 19t-45-19l-448-448q-19-19-19-45t19-45 45-19h896q26 0 45 19t19 45zM1024 704q0 26-19 45t-45 19h-896q-26 0-45-19t-19-45 19-45l448-448q19-19 45-19t45 19l448 448q19 19 19 45z" + } + }] +}; +exports.unsorted = unsorted; \ No newline at end of file diff --git a/dist/fa/upload.js b/dist/fa/upload.js new file mode 100644 index 000000000..acd524e7d --- /dev/null +++ b/dist/fa/upload.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.upload = void 0; +var upload = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1280 1472q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zM1536 1472q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zM1664 1248v320q0 40-28 68t-68 28h-1472q-40 0-68-28t-28-68v-320q0-40 28-68t68-28h427q21 56 70.5 92t110.5 36h256q61 0 110.5-36t70.5-92h427q40 0 68 28t28 68zM1339 600q-17 40-59 40h-256v448q0 26-19 45t-45 19h-256q-26 0-45-19t-19-45v-448h-256q-42 0-59-40-17-39 14-69l448-448q18-19 45-19t45 19l448 448q31 30 14 69z" + } + }] +}; +exports.upload = upload; \ No newline at end of file diff --git a/dist/fa/usb.js b/dist/fa/usb.js new file mode 100644 index 000000000..29bf90d4f --- /dev/null +++ b/dist/fa/usb.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.usb = void 0; +var usb = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M2288 805q16 8 16 27t-16 27l-320 192q-8 5-16 5-9 0-16-4-16-10-16-28v-128h-858q37 58 83 165 16 37 24.5 55t24 49 27 47 27 34 31.5 26 33 8h96v-96q0-14 9-23t23-9h320q14 0 23 9t9 23v320q0 14-9 23t-23 9h-320q-14 0-23-9t-9-23v-96h-96q-32 0-61-10t-51-23.5-45-40.5-37-46-33.5-57-28.5-57.5-28-60.5q-23-53-37-81.5t-36-65-44.5-53.5-46.5-17h-360q-22 84-91 138t-157 54q-106 0-181-75t-75-181 75-181 181-75q88 0 157 54t91 138h104q24 0 46.5-17t44.5-53.5 36-65 37-81.5q19-41 28-60.5t28.5-57.5 33.5-57 37-46 45-40.5 51-23.5 61-10h107q21-57 70-92.5t111-35.5q80 0 136 56t56 136-56 136-136 56q-62 0-111-35.5t-70-92.5h-107q-17 0-33 8t-31.5 26-27 34-27 47-24 49-24.5 55q-46 107-83 165h1114v-128q0-18 16-28t32 1z" + } + }] +}; +exports.usb = usb; \ No newline at end of file diff --git a/dist/fa/usd.js b/dist/fa/usd.js new file mode 100644 index 000000000..eae1586a2 --- /dev/null +++ b/dist/fa/usd.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.usd = void 0; +var usd = { + "viewBox": "0 0 1024 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M978 1185q0 153-99.5 263.5t-258.5 136.5v175q0 14-9 23t-23 9h-135q-13 0-22.5-9.5t-9.5-22.5v-175q-66-9-127.5-31t-101.5-44.5-74-48-46.5-37.5-17.5-18q-17-21-2-41l103-135q7-10 23-12 15-2 24 9l2 2q113 99 243 125 37 8 74 8 81 0 142.5-43t61.5-122q0-28-15-53t-33.5-42-58.5-37.5-66-32-80-32.5q-39-16-61.5-25t-61.5-26.5-62.5-31-56.5-35.5-53.5-42.5-43.5-49-35.5-58-21-66.5-8.5-78q0-138 98-242t255-134v-180q0-13 9.5-22.5t22.5-9.5h135q14 0 23 9t9 23v176q57 6 110.5 23t87 33.5 63.5 37.5 39 29 15 14q17 18 5 38l-81 146q-8 15-23 16-14 3-27-7-3-3-14.5-12t-39-26.5-58.5-32-74.5-26-85.5-11.5q-95 0-155 43t-60 111q0 26 8.5 48t29.5 41.5 39.5 33 56 31 60.5 27 70 27.5q53 20 81 31.5t76 35 75.5 42.5 62 50 53 63.5 31.5 76.5 13 94z" + } + }] +}; +exports.usd = usd; \ No newline at end of file diff --git a/dist/fa/user.js b/dist/fa/user.js new file mode 100644 index 000000000..6e1d5a664 --- /dev/null +++ b/dist/fa/user.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.user = void 0; +var user = { + "viewBox": "0 0 1280 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1280 1399q0 109-62.5 187t-150.5 78h-854q-88 0-150.5-78t-62.5-187q0-85 8.5-160.5t31.5-152 58.5-131 94-89 134.5-34.5q131 128 313 128t313-128q76 0 134.5 34.5t94 89 58.5 131 31.5 152 8.5 160.5zM1024 512q0 159-112.5 271.5t-271.5 112.5-271.5-112.5-112.5-271.5 112.5-271.5 271.5-112.5 271.5 112.5 112.5 271.5z" + } + }] +}; +exports.user = user; \ No newline at end of file diff --git a/dist/fa/userCircle.js b/dist/fa/userCircle.js new file mode 100644 index 000000000..042ce6a13 --- /dev/null +++ b/dist/fa/userCircle.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.userCircle = void 0; +var userCircle = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1523 1339q-22-155-87.5-257.5t-184.5-118.5q-67 74-159.5 115.5t-195.5 41.5-195.5-41.5-159.5-115.5q-119 16-184.5 118.5t-87.5 257.5q106 150 271 237.5t356 87.5 356-87.5 271-237.5zM1280 640q0-159-112.5-271.5t-271.5-112.5-271.5 112.5-112.5 271.5 112.5 271.5 271.5 112.5 271.5-112.5 112.5-271.5zM1792 896q0 182-71 347.5t-190.5 286-285.5 191.5-349 71q-182 0-348-71t-286-191-191-286-71-348 71-348 191-286 286-191 348-71 348 71 286 191 191 286 71 348z" + } + }] +}; +exports.userCircle = userCircle; \ No newline at end of file diff --git a/dist/fa/userCircleO.js b/dist/fa/userCircleO.js new file mode 100644 index 000000000..58c24fb8d --- /dev/null +++ b/dist/fa/userCircleO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.userCircleO = void 0; +var userCircleO = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M896 0q182 0 348 71t286 191 191 286 71 348q0 181-70.5 347t-190.5 286-286 191.5-349 71.5-349-71-285.5-191.5-190.5-286-71-347.5 71-348 191-286 286-191 348-71zM1515 1351q149-205 149-455 0-156-61-298t-164-245-245-164-298-61-298 61-245 164-164 245-61 298q0 250 149 455 66-327 306-327 131 128 313 128t313-128q240 0 306 327zM1280 704q0-159-112.5-271.5t-271.5-112.5-271.5 112.5-112.5 271.5 112.5 271.5 271.5 112.5 271.5-112.5 112.5-271.5z" + } + }] +}; +exports.userCircleO = userCircleO; \ No newline at end of file diff --git a/dist/fa/userMd.js b/dist/fa/userMd.js new file mode 100644 index 000000000..1f5cd1340 --- /dev/null +++ b/dist/fa/userMd.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.userMd = void 0; +var userMd = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M384 1344q0 26-19 45t-45 19-45-19-19-45 19-45 45-19 45 19 19 45zM1408 1405q0 121-73 190t-194 69h-874q-121 0-194-69t-73-190q0-68 5.5-131t24-138 47.5-132.5 81-103 120-60.5q-22 52-22 120v203q-58 20-93 70t-35 111q0 80 56 136t136 56 136-56 56-136q0-61-35.5-111t-92.5-70v-203q0-62 25-93 132 104 295 104t295-104q25 31 25 93v64q-106 0-181 75t-75 181v89q-32 29-32 71 0 40 28 68t68 28 68-28 28-68q0-42-32-71v-89q0-52 38-90t90-38 90 38 38 90v89q-32 29-32 71 0 40 28 68t68 28 68-28 28-68q0-42-32-71v-89q0-68-34.5-127.5t-93.5-93.5q0-10 0.5-42.5t0-48-2.5-41.5-7-47-13-40q68 15 120 60.5t81 103 47.5 132.5 24 138 5.5 131zM1088 512q0 159-112.5 271.5t-271.5 112.5-271.5-112.5-112.5-271.5 112.5-271.5 271.5-112.5 271.5 112.5 112.5 271.5z" + } + }] +}; +exports.userMd = userMd; \ No newline at end of file diff --git a/dist/fa/userO.js b/dist/fa/userO.js new file mode 100644 index 000000000..1c4e604b0 --- /dev/null +++ b/dist/fa/userO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.userO = void 0; +var userO = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1201 784q47 14 89.5 38t89 73 79.5 115.5 55 172 22 236.5q0 154-100 263.5t-241 109.5h-854q-141 0-241-109.5t-100-263.5q0-131 22-236.5t55-172 79.5-115.5 89-73 89.5-38q-79-125-79-272 0-104 40.5-198.5t109.5-163.5 163.5-109.5 198.5-40.5 198.5 40.5 163.5 109.5 109.5 163.5 40.5 198.5q0 147-79 272zM768 128q-159 0-271.5 112.5t-112.5 271.5 112.5 271.5 271.5 112.5 271.5-112.5 112.5-271.5-112.5-271.5-271.5-112.5zM1195 1664q88 0 150.5-71.5t62.5-173.5q0-239-78.5-377t-225.5-145q-145 127-336 127t-336-127q-147 7-225.5 145t-78.5 377q0 102 62.5 173.5t150.5 71.5h854z" + } + }] +}; +exports.userO = userO; \ No newline at end of file diff --git a/dist/fa/userPlus.js b/dist/fa/userPlus.js new file mode 100644 index 000000000..12b523250 --- /dev/null +++ b/dist/fa/userPlus.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.userPlus = void 0; +var userPlus = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M704 896q-159 0-271.5-112.5t-112.5-271.5 112.5-271.5 271.5-112.5 271.5 112.5 112.5 271.5-112.5 271.5-271.5 112.5zM1664 1024h352q13 0 22.5 9.5t9.5 22.5v192q0 13-9.5 22.5t-22.5 9.5h-352v352q0 13-9.5 22.5t-22.5 9.5h-192q-13 0-22.5-9.5t-9.5-22.5v-352h-352q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h352v-352q0-13 9.5-22.5t22.5-9.5h192q13 0 22.5 9.5t9.5 22.5v352zM928 1248q0 52 38 90t90 38h256v238q-68 50-171 50h-874q-121 0-194-69t-73-190q0-53 3.5-103.5t14-109 26.5-108.5 43-97.5 62-81 85.5-53.5 111.5-20q19 0 39 17 79 61 154.5 91.5t164.5 30.5 164.5-30.5 154.5-91.5q20-17 39-17 132 0 217 96h-223q-52 0-90 38t-38 90v192z" + } + }] +}; +exports.userPlus = userPlus; \ No newline at end of file diff --git a/dist/fa/userSecret.js b/dist/fa/userSecret.js new file mode 100644 index 000000000..4b0819dc2 --- /dev/null +++ b/dist/fa/userSecret.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.userSecret = void 0; +var userSecret = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M576 1536l96-448-96-128-128-64zM832 1536l128-640-128 64-96 128zM992 526q-2-4-4-6-10-8-96-8-70 0-167 19-7 2-21 2t-21-2q-97-19-167-19-86 0-96 8-2 2-4 6 2 18 4 27 2 3 7.5 6.5t7.5 10.5q2 4 7.5 20.5t7 20.5 7.5 17 8.5 17 9 14 12 13.5 14 9.5 17.5 8 20.5 4 24.5 2q36 0 59-12.5t32.5-30 14.5-34.5 11.5-29.5 17.5-12.5h12q11 0 17.5 12.5t11.5 29.5 14.5 34.5 32.5 30 59 12.5q13 0 24.5-2t20.5-4 17.5-8 14-9.5 12-13.5 9-14 8.5-17 7.5-17 7-20.5 7.5-20.5q2-7 7.5-10.5t7.5-6.5q2-9 4-27zM1408 1405q0 121-73 190t-194 69h-874q-121 0-194-69t-73-190q0-61 4.5-118t19-125.5 37.5-123.5 63.5-103.5 93.5-74.5l-90-220h214q-22-64-22-128 0-12 2-32-194-40-194-96 0-57 210-99 17-62 51.5-134t70.5-114q32-37 76-37 30 0 84 31t84 31 84-31 84-31q44 0 76 37 36 42 70.5 114t51.5 134q210 42 210 99 0 56-194 96 7 81-20 160h214l-82 225q63 33 107.5 96.5t65.5 143.5 29 151.5 8 148.5z" + } + }] +}; +exports.userSecret = userSecret; \ No newline at end of file diff --git a/dist/fa/userTimes.js b/dist/fa/userTimes.js new file mode 100644 index 000000000..442e1c2b2 --- /dev/null +++ b/dist/fa/userTimes.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.userTimes = void 0; +var userTimes = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M704 896q-159 0-271.5-112.5t-112.5-271.5 112.5-271.5 271.5-112.5 271.5 112.5 112.5 271.5-112.5 271.5-271.5 112.5zM1781 1216l249 249q9 9 9 23 0 13-9 22l-136 136q-9 9-22 9-14 0-23-9l-249-249-249 249q-9 9-23 9-13 0-22-9l-136-136q-9-9-9-22 0-14 9-23l249-249-249-249q-9-9-9-23 0-13 9-22l136-136q9-9 22-9 14 0 23 9l249 249 249-249q9-9 23-9 13 0 22 9l136 136q9 9 9 22 0 14-9 23zM1283 1216l-181 181q-37 37-37 91 0 53 37 90l83 83q-21 3-44 3h-874q-121 0-194-69t-73-190q0-53 3.5-103.5t14-109 26.5-108.5 43-97.5 62-81 85.5-53.5 111.5-20q19 0 39 17 154 122 319 122t319-122q20-17 39-17 28 0 57 6-28 27-41 50t-13 56q0 54 37 91z" + } + }] +}; +exports.userTimes = userTimes; \ No newline at end of file diff --git a/dist/fa/users.js b/dist/fa/users.js new file mode 100644 index 000000000..0c5e73598 --- /dev/null +++ b/dist/fa/users.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.users = void 0; +var users = { + "viewBox": "0 0 1920 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M593 896q-162 5-265 128h-134q-82 0-138-40.5t-56-118.5q0-353 124-353 6 0 43.5 21t97.5 42.5 119 21.5q67 0 133-23-5 37-5 66 0 139 81 256zM1664 1533q0 120-73 189.5t-194 69.5h-874q-121 0-194-69.5t-73-189.5q0-53 3.5-103.5t14-109 26.5-108.5 43-97.5 62-81 85.5-53.5 111.5-20q10 0 43 21.5t73 48 107 48 135 21.5 135-21.5 107-48 73-48 43-21.5q61 0 111.5 20t85.5 53.5 62 81 43 97.5 26.5 108.5 14 109 3.5 103.5zM640 256q0 106-75 181t-181 75-181-75-75-181 75-181 181-75 181 75 75 181zM1344 640q0 159-112.5 271.5t-271.5 112.5-271.5-112.5-112.5-271.5 112.5-271.5 271.5-112.5 271.5 112.5 112.5 271.5zM1920 865q0 78-56 118.5t-138 40.5h-134q-103-123-265-128 81-117 81-256 0-29-5-66 66 23 133 23 59 0 119-21.5t97.5-42.5 43.5-21q124 0 124 353zM1792 256q0 106-75 181t-181 75-181-75-75-181 75-181 181-75 181 75 75 181z" + } + }] +}; +exports.users = users; \ No newline at end of file diff --git a/dist/fa/vcard.js b/dist/fa/vcard.js new file mode 100644 index 000000000..b8f107a20 --- /dev/null +++ b/dist/fa/vcard.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.vcard = void 0; +var vcard = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 1131q0-64-9-117.5t-29.5-103-60.5-78-97-28.5q-6 4-30 18t-37.5 21.5-35.5 17.5-43 14.5-42 4.5-42-4.5-43-14.5-35.5-17.5-37.5-21.5-30-18q-57 0-97 28.5t-60.5 78-29.5 103-9 117.5 37 106.5 91 42.5h512q54 0 91-42.5t37-106.5zM867 611q0-94-66.5-160.5t-160.5-66.5-160.5 66.5-66.5 160.5 66.5 160.5 160.5 66.5 160.5-66.5 66.5-160.5zM1792 1120v-64q0-14-9-23t-23-9h-576q-14 0-23 9t-9 23v64q0 14 9 23t23 9h576q14 0 23-9t9-23zM1792 860v-56q0-15-10.5-25.5t-25.5-10.5h-568q-15 0-25.5 10.5t-10.5 25.5v56q0 15 10.5 25.5t25.5 10.5h568q15 0 25.5-10.5t10.5-25.5zM1792 608v-64q0-14-9-23t-23-9h-576q-14 0-23 9t-9 23v64q0 14 9 23t23 9h576q14 0 23-9t9-23zM2048 288v1216q0 66-47 113t-113 47h-352v-96q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v96h-768v-96q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v96h-352q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1728q66 0 113 47t47 113z" + } + }] +}; +exports.vcard = vcard; \ No newline at end of file diff --git a/dist/fa/vcardO.js b/dist/fa/vcardO.js new file mode 100644 index 000000000..7d62e3aaf --- /dev/null +++ b/dist/fa/vcardO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.vcardO = void 0; +var vcardO = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 1131q0 64-37 106.5t-91 42.5h-512q-54 0-91-42.5t-37-106.5 9-117.5 29.5-103 60.5-78 97-28.5q6 4 30 18t37.5 21.5 35.5 17.5 43 14.5 42 4.5 42-4.5 43-14.5 35.5-17.5 37.5-21.5 30-18q57 0 97 28.5t60.5 78 29.5 103 9 117.5zM867 611q0 94-66.5 160.5t-160.5 66.5-160.5-66.5-66.5-160.5 66.5-160.5 160.5-66.5 160.5 66.5 66.5 160.5zM1792 1056v64q0 14-9 23t-23 9h-576q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h576q14 0 23 9t9 23zM1792 804v56q0 15-10.5 25.5t-25.5 10.5h-568q-15 0-25.5-10.5t-10.5-25.5v-56q0-15 10.5-25.5t25.5-10.5h568q15 0 25.5 10.5t10.5 25.5zM1792 544v64q0 14-9 23t-23 9h-576q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h576q14 0 23 9t9 23zM1920 1504v-1216q0-13-9.5-22.5t-22.5-9.5h-1728q-13 0-22.5 9.5t-9.5 22.5v1216q0 13 9.5 22.5t22.5 9.5h352v-96q0-14 9-23t23-9h64q14 0 23 9t9 23v96h768v-96q0-14 9-23t23-9h64q14 0 23 9t9 23v96h352q13 0 22.5-9.5t9.5-22.5zM2048 288v1216q0 66-47 113t-113 47h-1728q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1728q66 0 113 47t47 113z" + } + }] +}; +exports.vcardO = vcardO; \ No newline at end of file diff --git a/dist/fa/venus.js b/dist/fa/venus.js new file mode 100644 index 000000000..70c369c3a --- /dev/null +++ b/dist/fa/venus.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.venus = void 0; +var venus = { + "viewBox": "0 0 1280 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1152 576q0 221-147.5 384.5t-364.5 187.5v260h224q14 0 23 9t9 23v64q0 14-9 23t-23 9h-224v224q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-224h-224q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h224v-260q-150-16-271.5-103t-186-224-52.5-292q11-134 80.5-249t182-188 245.5-88q170-19 319 54t236 212 87 306zM128 576q0 185 131.5 316.5t316.5 131.5 316.5-131.5 131.5-316.5-131.5-316.5-316.5-131.5-316.5 131.5-131.5 316.5z" + } + }] +}; +exports.venus = venus; \ No newline at end of file diff --git a/dist/fa/venusDouble.js b/dist/fa/venusDouble.js new file mode 100644 index 000000000..6554ad593 --- /dev/null +++ b/dist/fa/venusDouble.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.venusDouble = void 0; +var venusDouble = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1790 529q12 155-52.5 292t-186 224-271.5 103v260h224q14 0 23 9t9 23v64q0 14-9 23t-23 9h-224v224q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-224h-512v224q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-224h-224q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h224v-260q-150-16-271.5-103t-186-224-52.5-292q17-206 164.5-356.5t352.5-169.5q206-21 377 94 171-115 377-94 205 19 352.5 169.5t164.5 356.5zM896 889q128-131 128-313t-128-313q-128 131-128 313t128 313zM576 1024q115 0 218-57-154-165-154-391 0-224 154-391-103-57-218-57-185 0-316.5 131.5t-131.5 316.5 131.5 316.5 316.5 131.5zM1152 1408v-260q-137-15-256-94-119 79-256 94v260h512zM1216 1024q185 0 316.5-131.5t131.5-316.5-131.5-316.5-316.5-131.5q-115 0-218 57 154 167 154 391 0 226-154 391 103 57 218 57z" + } + }] +}; +exports.venusDouble = venusDouble; \ No newline at end of file diff --git a/dist/fa/venusMars.js b/dist/fa/venusMars.js new file mode 100644 index 000000000..8b45a479d --- /dev/null +++ b/dist/fa/venusMars.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.venusMars = void 0; +var venusMars = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1664 32q0-14 9-23t23-9h288q26 0 45 19t19 45v288q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-134l-254 255q76 95 107.5 214t9.5 247q-32 180-164.5 310t-313.5 157q-223 34-409-90-117 78-256 93v132h96q14 0 23 9t9 23v64q0 14-9 23t-23 9h-96v96q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-96h-96q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h96v-132q-155-17-279.5-109.5t-187-237.5-39.5-307q25-187 159.5-322.5t320.5-164.5q224-34 410 90 146-97 320-97 201 0 359 126l255-254h-134q-14 0-23-9t-9-23v-64zM896 1145q128-131 128-313t-128-313q-128 131-128 313t128 313zM128 832q0 185 131.5 316.5t316.5 131.5q117 0 218-57-154-167-154-391t154-391q-101-57-218-57-185 0-316.5 131.5t-131.5 316.5zM1216 1280q185 0 316.5-131.5t131.5-316.5-131.5-316.5-316.5-131.5q-117 0-218 57 154 167 154 391t-154 391q101 57 218 57z" + } + }] +}; +exports.venusMars = venusMars; \ No newline at end of file diff --git a/dist/fa/viacoin.js b/dist/fa/viacoin.js new file mode 100644 index 000000000..52a252300 --- /dev/null +++ b/dist/fa/viacoin.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.viacoin = void 0; +var viacoin = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1536 0l-192 448h192v192h-274l-55 128h329v192h-411l-357 832-357-832h-411v-192h329l-55-128h-274v-192h192l-192-448h256l323 768h378l323-768h256zM768 1216l108-256h-216z" + } + }] +}; +exports.viacoin = viacoin; \ No newline at end of file diff --git a/dist/fa/viadeo.js b/dist/fa/viadeo.js new file mode 100644 index 000000000..2519951d1 --- /dev/null +++ b/dist/fa/viadeo.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.viadeo = void 0; +var viadeo = { + "viewBox": "0 0 1280 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1050 1106q0 215-147 374-148 161-378 161-232 0-378-161-147-159-147-374 0-147 68-270.5t189-196.5 268-73q96 0 182 31-32 62-39 126-66-28-143-28-167 0-280.5 123t-113.5 291q0 170 112.5 288.5t281.5 118.5 281-118.5 112-288.5q0-89-32-166 66-13 123-49 41 98 41 212zM846 917q0 192-79.5 345t-238.5 253l-14 1q-29 0-62-5 83-32 146.5-102.5t99.5-154.5 58.5-189 30-192.5 7.5-178.5q0-69-3-103 55 160 55 326zM791 589v2q-73-214-206-440 88 59 142.5 186.5t63.5 251.5zM1035 792q-83 0-160-75 218-120 290-247 19-37 21-56-42 94-139.5 166.5t-204.5 97.5q-35-54-35-113 0-37 17-79t43-68q46-44 157-74 59-16 106-58.5t74-100.5q74 105 74 253 0 109-24 170-32 77-88.5 130.5t-130.5 53.5z" + } + }] +}; +exports.viadeo = viadeo; \ No newline at end of file diff --git a/dist/fa/viadeoSquare.js b/dist/fa/viadeoSquare.js new file mode 100644 index 000000000..6e2c81e44 --- /dev/null +++ b/dist/fa/viadeoSquare.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.viadeoSquare = void 0; +var viadeoSquare = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1050 1041q0-78-28-147-41 25-85 34 22 50 22 114 0 117-77 198.5t-193 81.5-193.5-81.5-77.5-198.5q0-115 78-199.5t193-84.5q53 0 98 19 4-43 27-87-60-21-125-21-154 0-257.5 108.5t-103.5 263.5 103.5 261 257.5 106 257.5-106.5 103.5-260.5zM872 686q2 24 2 71 0 63-5 123t-20.5 132.5-40.5 130-68.5 106-100.5 70.5q21 3 42 3h10q219-139 219-411 0-116-38-225zM872 686q-4-80-44-171.5t-98-130.5q92 156 142 302zM1207 581q0-102-51-174-41 86-124 109-69 19-109 53.5t-40 99.5q0 40 24 77 74-17 140.5-67t95.5-115q-4 52-74.5 111.5t-138.5 97.5q52 52 110 52 51 0 90-37t60-90q17-42 17-117zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.viadeoSquare = viadeoSquare; \ No newline at end of file diff --git a/dist/fa/videoCamera.js b/dist/fa/videoCamera.js new file mode 100644 index 000000000..01c0d1a7a --- /dev/null +++ b/dist/fa/videoCamera.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.videoCamera = void 0; +var videoCamera = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1792 352v1088q0 42-39 59-13 5-25 5-27 0-45-19l-403-403v166q0 119-84.5 203.5t-203.5 84.5h-704q-119 0-203.5-84.5t-84.5-203.5v-704q0-119 84.5-203.5t203.5-84.5h704q119 0 203.5 84.5t84.5 203.5v165l403-402q18-19 45-19 12 0 25 5 39 17 39 59z" + } + }] +}; +exports.videoCamera = videoCamera; \ No newline at end of file diff --git a/dist/fa/vimeo.js b/dist/fa/vimeo.js new file mode 100644 index 000000000..b8ebc70b3 --- /dev/null +++ b/dist/fa/vimeo.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.vimeo = void 0; +var vimeo = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1709 518q-10 236-332 651-333 431-562 431-142 0-240-263-44-160-132-482-72-262-157-262-18 0-127 76l-77-98q24-21 108-96.5t130-115.5q156-138 241-146 95-9 153 55.5t81 203.5q44 287 66 373 55 249 120 249 51 0 154-161 101-161 109-246 13-139-109-139-57 0-121 26 120-393 459-382 251 8 236 326z" + } + }] +}; +exports.vimeo = vimeo; \ No newline at end of file diff --git a/dist/fa/vimeoSquare.js b/dist/fa/vimeoSquare.js new file mode 100644 index 000000000..ecaea35c8 --- /dev/null +++ b/dist/fa/vimeoSquare.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.vimeoSquare = void 0; +var vimeoSquare = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1292 638q10-216-161-222-231-8-312 261 44-19 82-19 85 0 74 96-4 57-74 167t-105 110q-43 0-82-169-13-54-45-255-30-189-160-177-59 7-164 100l-81 72-81 72 52 67q76-52 87-52 57 0 107 179 15 55 45 164.5t45 164.5q68 179 164 179 157 0 383-294 220-283 226-444zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.vimeoSquare = vimeoSquare; \ No newline at end of file diff --git a/dist/fa/vine.js b/dist/fa/vine.js new file mode 100644 index 000000000..c67d5207e --- /dev/null +++ b/dist/fa/vine.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.vine = void 0; +var vine = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1497 827v198q-101 23-198 23-65 136-165.5 271t-181.5 215.5-128 106.5q-80 45-162-3-28-17-60.5-43.5t-85-83.5-102.5-128.5-107.5-184-105.5-244-91.5-314.5-70.5-390h283q26 218 70 398.5t104.5 317 121.5 235.5 140 195q169-169 287-406-142-72-223-220t-81-333q0-192 104-314.5t284-122.5q178 0 273 105.5t95 297.5q0 159-58 286-7 1-19.5 3t-46 2-63-6-62-25.5-50.5-51.5q31-103 31-184 0-87-29-132t-79-45q-53 0-85 49.5t-32 140.5q0 186 105 293.5t267 107.5q62 0 121-14z" + } + }] +}; +exports.vine = vine; \ No newline at end of file diff --git a/dist/fa/vk.js b/dist/fa/vk.js new file mode 100644 index 000000000..d03ccd0e4 --- /dev/null +++ b/dist/fa/vk.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.vk = void 0; +var vk = { + "viewBox": "0 0 1920 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1917 520q23 64-150 294-24 32-65 85-40 51-55 72t-30.5 49.5-12 42 13 34.5 32.5 43 57 53q4 2 5 4 141 131 191 221 3 5 6.5 12.5t7 26.5-0.5 34-25 27.5-59 12.5l-256 4q-24 5-56-5t-52-22l-20-12q-30-21-70-64t-68.5-77.5-61-58-56.5-15.5q-3 1-8 3.5t-17 14.5-21.5 29.5-17 52-6.5 77.5q0 15-3.5 27.5t-7.5 18.5l-4 5q-18 19-53 22h-115q-71 4-146-16.5t-131.5-53-103-66-70.5-57.5l-25-24q-10-10-27.5-30t-71.5-91-106-151-122.5-211-130.5-272q-6-16-6-27t3-16l4-6q15-19 57-19l274-2q12 2 23 6.5t16 8.5l5 3q16 11 24 32 20 50 46 103.5t41 81.5l16 29q29 60 56 104t48.5 68.5 41.5 38.5 34 14 27-5q2-1 5-5t12-22 13.5-47 9.5-81 0-125q-2-40-9-73t-14-46l-6-12q-25-34-85-43-13-2 5-24 16-19 38-30 53-26 239-24 82 1 135 13 20 5 33.5 13.5t20.5 24 10.5 32 3.5 45.5-1 55-2.5 70.5-1.5 82.5q0 11-1 42t-0.5 48 3.5 40.5 11.5 39 22.5 24.5q8 2 17 4t26-11 38-34.5 52-67 68-107.5q60-104 107-225 4-10 10-17.5t11-10.5l4-3 5-2.5t13-3 20-0.5l288-2q39-5 64 2.5t31 16.5z" + } + }] +}; +exports.vk = vk; \ No newline at end of file diff --git a/dist/fa/volumeControlPhone.js b/dist/fa/volumeControlPhone.js new file mode 100644 index 000000000..cd3a49310 --- /dev/null +++ b/dist/fa/volumeControlPhone.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.volumeControlPhone = void 0; +var volumeControlPhone = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M617 1689q0-11-13-58t-31-107-20-69q-1-4-5-26.5t-8.5-36-13.5-21.5q-15-14-51-14-23 0-70 5.5t-71 5.5q-34 0-47-11-6-5-11-15.5t-7.5-20-6.5-24-5-18.5q-37-128-37-255t37-255q1-4 5-18.5t6.5-24 7.5-20 11-15.5q13-11 47-11 24 0 71 5.5t70 5.5q36 0 51-14 9-8 13.5-21.5t8.5-36 5-26.5q2-9 20-69t31-107 13-58q0-22-43.5-52.5t-75.5-42.5q-20-8-45-8-34 0-98 18-57 17-96.5 40.5t-71 66-46 70-45.5 94.5q-6 12-9 19-49 107-68 216t-19 244 19 244 68 216q56 122 83 161 63 91 179 127l6 2q64 18 98 18 25 0 45-8 32-12 75.5-42.5t43.5-52.5zM776 776q-26 0-45-19t-19-45.5 19-45.5q37-37 37-90 0-52-37-91-19-19-19-45t19-45 45-19 45 19q75 75 75 181t-75 181q-21 19-45 19zM957 957q-27 0-45-19-19-19-19-45t19-45q112-114 112-272t-112-272q-19-19-19-45t19-45 45-19 45 19q150 150 150 362t-150 362q-18 19-45 19zM1138 1138q-27 0-45-19-19-19-19-45t19-45q90-91 138.5-208t48.5-245-48.5-245-138.5-208q-19-19-19-45t19-45 45-19 45 19q109 109 167 249t58 294-58 294-167 249q-18 19-45 19z" + } + }] +}; +exports.volumeControlPhone = volumeControlPhone; \ No newline at end of file diff --git a/dist/fa/volumeDown.js b/dist/fa/volumeDown.js new file mode 100644 index 000000000..0e1b598d8 --- /dev/null +++ b/dist/fa/volumeDown.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.volumeDown = void 0; +var volumeDown = { + "viewBox": "0 0 1152 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M768 352v1088q0 26-19 45t-45 19-45-19l-333-333h-262q-26 0-45-19t-19-45v-384q0-26 19-45t45-19h262l333-333q19-19 45-19t45 19 19 45zM1152 896q0 76-42.5 141.5t-112.5 93.5q-10 5-25 5-26 0-45-18.5t-19-45.5q0-21 12-35.5t29-25 34-23 29-36 12-56.5-12-56.5-29-36-34-23-29-25-12-35.5q0-27 19-45.5t45-18.5q15 0 25 5 70 27 112.5 93t42.5 142z" + } + }] +}; +exports.volumeDown = volumeDown; \ No newline at end of file diff --git a/dist/fa/volumeOff.js b/dist/fa/volumeOff.js new file mode 100644 index 000000000..47ad680ac --- /dev/null +++ b/dist/fa/volumeOff.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.volumeOff = void 0; +var volumeOff = { + "viewBox": "0 0 768 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M768 352v1088q0 26-19 45t-45 19-45-19l-333-333h-262q-26 0-45-19t-19-45v-384q0-26 19-45t45-19h262l333-333q19-19 45-19t45 19 19 45z" + } + }] +}; +exports.volumeOff = volumeOff; \ No newline at end of file diff --git a/dist/fa/volumeUp.js b/dist/fa/volumeUp.js new file mode 100644 index 000000000..bb74bfcf8 --- /dev/null +++ b/dist/fa/volumeUp.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.volumeUp = void 0; +var volumeUp = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M768 352v1088q0 26-19 45t-45 19-45-19l-333-333h-262q-26 0-45-19t-19-45v-384q0-26 19-45t45-19h262l333-333q19-19 45-19t45 19 19 45zM1152 896q0 76-42.5 141.5t-112.5 93.5q-10 5-25 5-26 0-45-18.5t-19-45.5q0-21 12-35.5t29-25 34-23 29-36 12-56.5-12-56.5-29-36-34-23-29-25-12-35.5q0-27 19-45.5t45-18.5q15 0 25 5 70 27 112.5 93t42.5 142zM1408 896q0 153-85 282.5t-225 188.5q-13 5-25 5-27 0-46-19t-19-45q0-39 39-59 56-29 76-44 74-54 115.5-135.5t41.5-173.5-41.5-173.5-115.5-135.5q-20-15-76-44-39-20-39-59 0-26 19-45t45-19q13 0 26 5 140 59 225 188.5t85 282.5zM1664 896q0 230-127 422.5t-338 283.5q-13 5-26 5-26 0-45-19t-19-45q0-36 39-59 7-4 22.5-10.5t22.5-10.5q46-25 82-51 123-91 192-227t69-289-69-289-192-227q-36-26-82-51-7-4-22.5-10.5t-22.5-10.5q-39-23-39-59 0-26 19-45t45-19q13 0 26 5 211 91 338 283.5t127 422.5z" + } + }] +}; +exports.volumeUp = volumeUp; \ No newline at end of file diff --git a/dist/fa/warning.js b/dist/fa/warning.js new file mode 100644 index 000000000..146bda06c --- /dev/null +++ b/dist/fa/warning.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.warning = void 0; +var warning = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 1375v-190q0-14-9.5-23.5t-22.5-9.5h-192q-13 0-22.5 9.5t-9.5 23.5v190q0 14 9.5 23.5t22.5 9.5h192q13 0 22.5-9.5t9.5-23.5zM1022 1001l18-459q0-12-10-19-13-11-24-11h-220q-11 0-24 11-10 7-10 21l17 457q0 10 10 16.5t24 6.5h185q14 0 23.5-6.5t10.5-16.5zM1008 67l768 1408q35 63-2 126-17 29-46.5 46t-63.5 17h-1536q-34 0-63.5-17t-46.5-46q-37-63-2-126l768-1408q17-31 47-49t65-18 65 18 47 49z" + } + }] +}; +exports.warning = warning; \ No newline at end of file diff --git a/dist/fa/wechat.js b/dist/fa/wechat.js new file mode 100644 index 000000000..f36f9902c --- /dev/null +++ b/dist/fa/wechat.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.wechat = void 0; +var wechat = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M580 461q0-41-25-66t-66-25q-43 0-76 25.5t-33 65.5q0 39 33 64.5t76 25.5q41 0 66-24.5t25-65.5zM1323 968q0-28-25.5-50t-65.5-22q-27 0-49.5 22.5t-22.5 49.5q0 28 22.5 50.5t49.5 22.5q40 0 65.5-22t25.5-51zM1087 461q0-41-24.5-66t-65.5-25q-43 0-76 25.5t-33 65.5q0 39 33 64.5t76 25.5q41 0 65.5-24.5t24.5-65.5zM1722 968q0-28-26-50t-65-22q-27 0-49.5 22.5t-22.5 49.5q0 28 22.5 50.5t49.5 22.5q39 0 65-22t26-51zM1456 571q-31-4-70-4-169 0-311 77t-223.5 208.5-81.5 287.5q0 78 23 152-35 3-68 3-26 0-50-1.5t-55-6.5-44.5-7-54.5-10.5-50-10.5l-253 127 72-218q-290-203-290-490 0-169 97.5-311t264-223.5 363.5-81.5q176 0 332.5 66t262 182.5 136.5 260.5zM2048 1132q0 117-68.5 223.5t-185.5 193.5l55 181-199-109q-150 37-218 37-169 0-311-70.5t-223.5-191.5-81.5-264 81.5-264 223.5-191.5 311-70.5q161 0 303 70.5t227.5 192 85.5 263.5z" + } + }] +}; +exports.wechat = wechat; \ No newline at end of file diff --git a/dist/fa/weibo.js b/dist/fa/weibo.js new file mode 100644 index 000000000..12348dc04 --- /dev/null +++ b/dist/fa/weibo.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weibo = void 0; +var weibo = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M675 1284q21-34 11-69t-45-50q-34-14-73-1t-60 46q-22 34-13 68.5t43 50.5 74.5 2.5 62.5-47.5zM769 1163q8-13 3.5-26.5t-17.5-18.5q-14-5-28.5 0.5t-21.5 18.5q-17 31 13 45 14 5 29-0.5t22-18.5zM943 1270q-45 102-158 150t-224 12q-107-34-147.5-126.5t6.5-187.5q47-93 151.5-139t210.5-19q111 29 158.5 119.5t2.5 190.5zM1255 1110q-9-96-89-170t-208.5-109-274.5-21q-223 23-369.5 141.5t-132.5 264.5q9 96 89 170t208.5 109 274.5 21q223-23 369.5-141.5t132.5-264.5zM1563 1114q0 68-37 139.5t-109 137-168.5 117.5-226 83-270.5 31-275-33.5-240.5-93-171.5-151-65-199.5q0-115 69.5-245t197.5-258q169-169 341.5-236t246.5 7q65 64 20 209-4 14-1 20t10 7 14.5-0.5 13.5-3.5l6-2q139-59 246-59t153 61q45 63 0 178-2 13-4.5 20t4.5 12.5 12 7.5 17 6q57 18 103 47t80 81.5 34 116.5zM1489 490q42 47 54.5 108.5t-6.5 117.5q-8 23-29.5 34t-44.5 4q-23-8-34-29.5t-4-44.5q20-63-24-111t-107-35q-24 5-45-8t-25-37q-5-24 8-44.5t37-25.5q60-13 119 5.5t101 65.5zM1670 327q87 96 112.5 222.5t-13.5 241.5q-9 27-34 40t-52 4-40-34-5-52q28-82 10-172t-80-158q-62-69-148-95.5t-173-8.5q-28 6-52-9.5t-30-43.5 9.5-51.5 43.5-29.5q123-26 244 11.5t208 134.5z" + } + }] +}; +exports.weibo = weibo; \ No newline at end of file diff --git a/dist/fa/weixin.js b/dist/fa/weixin.js new file mode 100644 index 000000000..cae47b4f9 --- /dev/null +++ b/dist/fa/weixin.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weixin = void 0; +var weixin = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M580 461q0-41-25-66t-66-25q-43 0-76 25.5t-33 65.5q0 39 33 64.5t76 25.5q41 0 66-24.5t25-65.5zM1323 968q0-28-25.5-50t-65.5-22q-27 0-49.5 22.5t-22.5 49.5q0 28 22.5 50.5t49.5 22.5q40 0 65.5-22t25.5-51zM1087 461q0-41-24.5-66t-65.5-25q-43 0-76 25.5t-33 65.5q0 39 33 64.5t76 25.5q41 0 65.5-24.5t24.5-65.5zM1722 968q0-28-26-50t-65-22q-27 0-49.5 22.5t-22.5 49.5q0 28 22.5 50.5t49.5 22.5q39 0 65-22t26-51zM1456 571q-31-4-70-4-169 0-311 77t-223.5 208.5-81.5 287.5q0 78 23 152-35 3-68 3-26 0-50-1.5t-55-6.5-44.5-7-54.5-10.5-50-10.5l-253 127 72-218q-290-203-290-490 0-169 97.5-311t264-223.5 363.5-81.5q176 0 332.5 66t262 182.5 136.5 260.5zM2048 1132q0 117-68.5 223.5t-185.5 193.5l55 181-199-109q-150 37-218 37-169 0-311-70.5t-223.5-191.5-81.5-264 81.5-264 223.5-191.5 311-70.5q161 0 303 70.5t227.5 192 85.5 263.5z" + } + }] +}; +exports.weixin = weixin; \ No newline at end of file diff --git a/dist/fa/whatsapp.js b/dist/fa/whatsapp.js new file mode 100644 index 000000000..d966a6808 --- /dev/null +++ b/dist/fa/whatsapp.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.whatsapp = void 0; +var whatsapp = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M985 974q13 0 97.5 44t89.5 53q2 5 2 15 0 33-17 76-16 39-71 65.5t-102 26.5q-57 0-190-62-98-45-170-118t-148-185q-72-107-71-194v-8q3-91 74-158 24-22 52-22 6 0 18 1.5t19 1.5q19 0 26.5 6.5t15.5 27.5q8 20 33 88t25 75q0 21-34.5 57.5t-34.5 46.5q0 7 5 15 34 73 102 137 56 53 151 101 12 7 22 7 15 0 54-48.5t52-48.5zM782 1504q127 0 243.5-50t200.5-134 134-200.5 50-243.5-50-243.5-134-200.5-200.5-134-243.5-50-243.5 50-200.5 134-134 200.5-50 243.5q0 203 120 368l-79 233 242-77q158 104 345 104zM782 122q153 0 292.5 60t240.5 161 161 240.5 60 292.5-60 292.5-161 240.5-240.5 161-292.5 60q-195 0-365-94l-417 134 136-405q-108-178-108-389 0-153 60-292.5t161-240.5 240.5-161 292.5-60z" + } + }] +}; +exports.whatsapp = whatsapp; \ No newline at end of file diff --git a/dist/fa/wheelchair.js b/dist/fa/wheelchair.js new file mode 100644 index 000000000..198267b41 --- /dev/null +++ b/dist/fa/wheelchair.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.wheelchair = void 0; +var wheelchair = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1023 1187l102 204q-58 179-210 290t-339 111q-156 0-288.5-77.5t-210-210-77.5-288.5q0-181 104.5-330t274.5-211l17 131q-122 54-195 165.5t-73 244.5q0 185 131.5 316.5t316.5 131.5q126 0 232.5-65t165-175.5 49.5-236.5zM1571 1287l58 114-256 128q-13 7-29 7-40 0-57-35l-239-477h-472q-24 0-42.5-16.5t-21.5-40.5l-96-779q-2-17 6-42 14-51 57-82.5t97-31.5q66 0 113 47t47 113q0 69-52 117.5t-120 41.5l37 289h423v128h-407l16 128h455q40 0 57 35l228 455z" + } + }] +}; +exports.wheelchair = wheelchair; \ No newline at end of file diff --git a/dist/fa/wheelchairAlt.js b/dist/fa/wheelchairAlt.js new file mode 100644 index 000000000..bfb2ecf3e --- /dev/null +++ b/dist/fa/wheelchairAlt.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.wheelchairAlt = void 0; +var wheelchairAlt = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1438 813q34 35 29 82l-44 551q-4 42-34.5 70t-71.5 28q-6 0-9-1-44-3-72.5-36.5t-25.5-77.5l35-429-143 8q55 113 55 240 0 216-148 372l-137-137q91-101 91-235 0-145-102.5-248t-247.5-103q-134 0-236 92l-137-138q120-114 284-141l264-300-149-87-181 161q-33 30-77 27.5t-73-35.5-26.5-77 34.5-73l239-213q26-23 60-26.5t64 14.5l488 283q36 21 48 68 17 67-26 117l-205 232 371-20q49-3 83 32zM1240 356q-74 0-126-52t-52-126 52-126 126-52 126.5 52 52.5 126-52.5 126-126.5 52zM613 1598q106 0 196-61l139 139q-146 116-335 116-148 0-273.5-73t-198.5-198-73-273q0-188 116-336l139 139q-60 88-60 197 0 145 102.5 247.5t247.5 102.5z" + } + }] +}; +exports.wheelchairAlt = wheelchairAlt; \ No newline at end of file diff --git a/dist/fa/wifi.js b/dist/fa/wifi.js new file mode 100644 index 000000000..698b02638 --- /dev/null +++ b/dist/fa/wifi.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.wifi = void 0; +var wifi = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1024 1523q-20 0-93-73.5t-73-93.5q0-32 62.5-54t103.5-22 103.5 22 62.5 54q0 20-73 93.5t-93 73.5zM1294 1252q-2 0-40-25t-101.5-50-128.5-25-128.5 25-101 50-40.5 25q-18 0-93.5-75t-75.5-93q0-13 10-23 78-77 196-121t233-44 233 44 196 121q10 10 10 23 0 18-75.5 93t-93.5 75zM1567 980q-11 0-23-8-136-105-252-154.5t-268-49.5q-85 0-170.5 22t-149 53-113.5 62-79 53-31 22q-17 0-92-75t-75-93q0-12 10-22 132-132 320-205t380-73 380 73 320 205q10 10 10 22 0 18-75 93t-92 75zM1838 709q-11 0-22-9-179-157-371.5-236.5t-420.5-79.5-420.5 79.5-371.5 236.5q-11 9-22 9-17 0-92.5-75t-75.5-93q0-13 10-23 187-186 445-288t527-102 527 102 445 288q10 10 10 23 0 18-75.5 93t-92.5 75z" + } + }] +}; +exports.wifi = wifi; \ No newline at end of file diff --git a/dist/fa/wikipediaW.js b/dist/fa/wikipediaW.js new file mode 100644 index 000000000..df098ffc0 --- /dev/null +++ b/dist/fa/wikipediaW.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.wikipediaW = void 0; +var wikipediaW = { + "viewBox": "0 0 2304 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1494 1639l-295-695q-25 49-158.5 305.5t-198.5 389.5q-1 1-27.5 0.5t-26.5-1.5q-82-193-255.5-587t-259.5-596q-21-50-66.5-107.5t-103.5-100.5-102-43q0-5-0.5-24t-0.5-27h583v50q-39 2-79.5 16t-66.5 43-10 64q26 59 216.5 499t235.5 540q31-61 140-266.5t131-247.5q-19-39-126-281t-136-295q-38-69-201-71v-50l513 1v47q-60 2-93.5 25t-12.5 69q33 70 87 189.5t86 187.5q110-214 173-363 24-55-10-79.5t-129-26.5q1-7 1-25v-24q64 0 170.5-0.5t180-1 92.5-0.5v49q-62 2-119 33t-90 81l-213 442q13 33 127.5 290t121.5 274l441-1017q-14-38-49.5-62.5t-65-31.5-55.5-8v-50l460 4 1 2-1 44q-139 4-201 145-526 1216-559 1291h-49z" + } + }] +}; +exports.wikipediaW = wikipediaW; \ No newline at end of file diff --git a/dist/fa/windowClose.js b/dist/fa/windowClose.js new file mode 100644 index 000000000..2c67b3e63 --- /dev/null +++ b/dist/fa/windowClose.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.windowClose = void 0; +var windowClose = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1175 1321l146-146q10-10 10-23t-10-23l-233-233 233-233q10-10 10-23t-10-23l-146-146q-10-10-23-10t-23 10l-233 233-233-233q-10-10-23-10t-23 10l-146 146q-10 10-10 23t10 23l233 233-233 233q-10 10-10 23t10 23l146 146q10 10 23 10t23-10l233-233 233 233q10 10 23 10t23-10zM1792 288v1216q0 66-47 113t-113 47h-1472q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1472q66 0 113 47t47 113z" + } + }] +}; +exports.windowClose = windowClose; \ No newline at end of file diff --git a/dist/fa/windowCloseO.js b/dist/fa/windowCloseO.js new file mode 100644 index 000000000..33951aa81 --- /dev/null +++ b/dist/fa/windowCloseO.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.windowCloseO = void 0; +var windowCloseO = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1257 1111l-146 146q-10 10-23 10t-23-10l-169-169-169 169q-10 10-23 10t-23-10l-146-146q-10-10-10-23t10-23l169-169-169-169q-10-10-10-23t10-23l146-146q10-10 23-10t23 10l169 169 169-169q10-10 23-10t23 10l146 146q10 10 10 23t-10 23l-169 169 169 169q10 10 10 23t-10 23zM256 1408h1280v-1024h-1280v1024zM1792 288v1216q0 66-47 113t-113 47h-1472q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1472q66 0 113 47t47 113z" + } + }] +}; +exports.windowCloseO = windowCloseO; \ No newline at end of file diff --git a/dist/fa/windowMaximize.js b/dist/fa/windowMaximize.js new file mode 100644 index 000000000..e0f81a242 --- /dev/null +++ b/dist/fa/windowMaximize.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.windowMaximize = void 0; +var windowMaximize = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M256 1408h1280v-768h-1280v768zM1792 288v1216q0 66-47 113t-113 47h-1472q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1472q66 0 113 47t47 113z" + } + }] +}; +exports.windowMaximize = windowMaximize; \ No newline at end of file diff --git a/dist/fa/windowMinimize.js b/dist/fa/windowMinimize.js new file mode 100644 index 000000000..b7b5e1f42 --- /dev/null +++ b/dist/fa/windowMinimize.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.windowMinimize = void 0; +var windowMinimize = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M1792 1312v192q0 66-47 113t-113 47h-1472q-66 0-113-47t-47-113v-192q0-66 47-113t113-47h1472q66 0 113 47t47 113z" + } + }] +}; +exports.windowMinimize = windowMinimize; \ No newline at end of file diff --git a/dist/fa/windowRestore.js b/dist/fa/windowRestore.js new file mode 100644 index 000000000..2c631b5ec --- /dev/null +++ b/dist/fa/windowRestore.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.windowRestore = void 0; +var windowRestore = { + "viewBox": "0 0 2048 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M256 1536h768v-512h-768v512zM1280 1024h512v-768h-768v256h96q66 0 113 47t47 113v352zM2048 160v960q0 66-47 113t-113 47h-608v352q0 66-47 113t-113 47h-960q-66 0-113-47t-47-113v-960q0-66 47-113t113-47h608v-352q0-66 47-113t113-47h960q66 0 113 47t47 113z" + } + }] +}; +exports.windowRestore = windowRestore; \ No newline at end of file diff --git a/dist/fa/windows.js b/dist/fa/windows.js new file mode 100644 index 000000000..6bf9d6f2c --- /dev/null +++ b/dist/fa/windows.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.windows = void 0; +var windows = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M682 1006v651l-682-94v-557h682zM682 263v659h-682v-565zM1664 1006v786l-907-125v-661h907zM1664 128v794h-907v-669z" + } + }] +}; +exports.windows = windows; \ No newline at end of file diff --git a/dist/fa/won.js b/dist/fa/won.js new file mode 100644 index 000000000..2f2d5e356 --- /dev/null +++ b/dist/fa/won.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.won = void 0; +var won = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M514 1195l81-299h-159l75 300q1 1 1 3t1 3q0-1 0.5-3.5t0.5-3.5zM630 768l35-128h-292l32 128h225zM822 768h139l-35-128h-70zM1271 1196l78-300h-162l81 299q0 1 0.5 3.5t1.5 3.5q0-1 0.5-3t0.5-3zM1382 768l33-128h-297l34 128h230zM1792 800v64q0 14-9 23t-23 9h-213l-164 616q-7 24-31 24h-159q-24 0-31-24l-166-616h-209l-167 616q-7 24-31 24h-159q-11 0-19.5-7t-10.5-17l-160-616h-208q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h175l-33-128h-142q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h109l-89-344q-5-15 5-28 10-12 26-12h137q26 0 31 24l90 360h359l97-360q7-24 31-24h126q24 0 31 24l98 360h365l93-360q5-24 31-24h137q16 0 26 12 10 13 5 28l-91 344h111q14 0 23 9t9 23v64q0 14-9 23t-23 9h-145l-34 128h179q14 0 23 9t9 23z" + } + }] +}; +exports.won = won; \ No newline at end of file diff --git a/dist/fa/wordpress.js b/dist/fa/wordpress.js new file mode 100644 index 000000000..8740f5a71 --- /dev/null +++ b/dist/fa/wordpress.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.wordpress = void 0; +var wordpress = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M127 896q0-163 67-313l367 1005q-196-95-315-281t-119-411zM1415 857q0 19-2.5 38.5t-10 49.5-11.5 44-17.5 59-17.5 58l-76 256-278-826q46-3 88-8 19-2 26-18.5t-2.5-31-28.5-13.5l-205 10q-75-1-202-10-12-1-20.5 5t-11.5 15-1.5 18.5 9 16.5 19.5 8l80 8 120 328-168 504-280-832q46-3 88-8 19-2 26-18.5t-2.5-31-28.5-13.5l-205 10q-7 0-23-0.5t-26-0.5q105-160 274.5-253.5t367.5-93.5q147 0 280.5 53t238.5 149h-10q-55 0-92 40.5t-37 95.5q0 12 2 24t4 21.5 8 23 9 21 12 22.5 12.5 21 14.5 24 14 23q63 107 63 212zM909 963l237 647q1 6 5 11-126 44-255 44-112 0-217-32zM1570 527q95 174 95 369 0 209-104 385.5t-279 278.5l235-678q59-169 59-276 0-42-6-79zM896 0q182 0 348 71t286 191 191 286 71 348-71 348-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71zM896 1751q173 0 331.5-68t273-182.5 182.5-273 68-331.5-68-331.5-182.5-273-273-182.5-331.5-68-331.5 68-273 182.5-182.5 273-68 331.5 68 331.5 182.5 273 273 182.5 331.5 68z" + } + }] +}; +exports.wordpress = wordpress; \ No newline at end of file diff --git a/dist/fa/wpbeginner.js b/dist/fa/wpbeginner.js new file mode 100644 index 000000000..69bd4fd02 --- /dev/null +++ b/dist/fa/wpbeginner.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.wpbeginner = void 0; +var wpbeginner = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M384 832h160v-224h-160v224zM1221 1164v-92q-104 36-243 38-135 1-259.5-46.5t-220.5-122.5l1 96q88 80 212 128.5t272 47.5q129 0 238-49zM640 832h640v-224h-640v224zM1792 800q0 187-99 352 89 102 89 229 0 157-129.5 268t-313.5 111q-122 0-225-52.5t-161-140.5q-19 1-57 1t-57-1q-58 88-161 140.5t-225 52.5q-184 0-313.5-111t-129.5-268q0-127 89-229-99-165-99-352 0-209 120-385.5t326.5-279.5 449.5-103 449.5 103 326.5 279.5 120 385.5z" + } + }] +}; +exports.wpbeginner = wpbeginner; \ No newline at end of file diff --git a/dist/fa/wpexplorer.js b/dist/fa/wpexplorer.js new file mode 100644 index 000000000..672f5add2 --- /dev/null +++ b/dist/fa/wpexplorer.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.wpexplorer = void 0; +var wpexplorer = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M948 1028l163 329h-51l-175-350-171 350h-49l179-374-78-33 21-49 240 102-21 50zM563 436l304 130-130 304-304-130zM907 621l240 103-103 239-239-102zM1188 771l191 81-82 190-190-81zM1680 896q0-159-62-304t-167.5-250.5-250.5-167.5-304-62-304 62-250.5 167.5-167.5 250.5-62 304 62 304 167.5 250.5 250.5 167.5 304 62 304-62 250.5-167.5 167.5-250.5 62-304zM1792 896q0 182-71 348t-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71 348 71 286 191 191 286 71 348z" + } + }] +}; +exports.wpexplorer = wpexplorer; \ No newline at end of file diff --git a/dist/fa/wpforms.js b/dist/fa/wpforms.js new file mode 100644 index 000000000..b3d4e402d --- /dev/null +++ b/dist/fa/wpforms.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.wpforms = void 0; +var wpforms = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M515 911v128h-252v-128h252zM515 656v127h-252v-127h252zM1273 1167v128h-341v-128h341zM1273 911v128h-672v-128h672zM1273 656v127h-672v-127h672zM1408 1516v-1240q0-8-6-14t-14-6h-32l-378 256-210-171-210 171-378-256h-32q-8 0-14 6t-6 14v1240q0 8 6 14t14 6h1240q8 0 14-6t6-14zM553 406l185-150h-406zM983 406l221-150h-406zM1536 276v1240q0 62-43 105t-105 43h-1240q-62 0-105-43t-43-105v-1240q0-62 43-105t105-43h1240q62 0 105 43t43 105z" + } + }] +}; +exports.wpforms = wpforms; \ No newline at end of file diff --git a/dist/fa/wrench.js b/dist/fa/wrench.js new file mode 100644 index 000000000..5ff9a7d95 --- /dev/null +++ b/dist/fa/wrench.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.wrench = void 0; +var wrench = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M384 1472q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zM1028 1052l-682 682q-37 37-90 37-52 0-91-37l-106-108q-38-36-38-90 0-53 38-91l681-681q39 98 114.5 173.5t173.5 114.5zM1662 617q0 39-23 106-47 134-164.5 217.5t-258.5 83.5q-185 0-316.5-131.5t-131.5-316.5 131.5-316.5 316.5-131.5q58 0 121.5 16.5t107.5 46.5q16 11 16 28t-16 28l-293 169v224l193 107q5-3 79-48.5t135.5-81 70.5-35.5q15 0 23.5 10t8.5 25z" + } + }] +}; +exports.wrench = wrench; \ No newline at end of file diff --git a/dist/fa/xing.js b/dist/fa/xing.js new file mode 100644 index 000000000..2824f3538 --- /dev/null +++ b/dist/fa/xing.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.xing = void 0; +var xing = { + "viewBox": "0 0 1408 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M597 667q-10 18-257 456-27 46-65 46h-239q-21 0-31-17t0-36l253-448q1 0 0-1l-161-279q-12-22-1-37 9-15 32-15h239q40 0 66 45zM1403 25q11 16 0 37l-528 934v1l336 615q11 20 1 37-10 15-32 15h-239q-42 0-66-45l-339-622q18-32 531-942 25-45 64-45h241q22 0 31 15z" + } + }] +}; +exports.xing = xing; \ No newline at end of file diff --git a/dist/fa/xingSquare.js b/dist/fa/xingSquare.js new file mode 100644 index 000000000..1084bed6d --- /dev/null +++ b/dist/fa/xingSquare.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.xingSquare = void 0; +var xingSquare = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M685 765q0-1-126-222-21-34-52-34h-184q-18 0-26 11-7 12 1 29l125 216v1l-196 346q-9 14 0 28 8 13 24 13h185q31 0 50-36zM1309 268q-7-12-24-12h-187q-30 0-49 35l-411 729q1 2 262 481 20 35 52 35h184q18 0 25-12 8-13-1-28l-260-476v-1l409-723q8-16 0-28zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.xingSquare = xingSquare; \ No newline at end of file diff --git a/dist/fa/yCombinator.js b/dist/fa/yCombinator.js new file mode 100644 index 000000000..9794a9cba --- /dev/null +++ b/dist/fa/yCombinator.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.yCombinator = void 0; +var yCombinator = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M809 1004l266-499h-112l-157 312q-24 48-44 92l-42-92-155-312h-120l263 493v324h101v-318zM1536 128v1536h-1536v-1536h1536z" + } + }] +}; +exports.yCombinator = yCombinator; \ No newline at end of file diff --git a/dist/fa/yCombinatorSquare.js b/dist/fa/yCombinatorSquare.js new file mode 100644 index 000000000..37475c9aa --- /dev/null +++ b/dist/fa/yCombinatorSquare.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.yCombinatorSquare = void 0; +var yCombinatorSquare = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M809 1004l266-499h-112l-157 312q-24 48-44 92l-42-92-155-312h-120l263 493v324h101v-318zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.yCombinatorSquare = yCombinatorSquare; \ No newline at end of file diff --git a/dist/fa/yahoo.js b/dist/fa/yahoo.js new file mode 100644 index 000000000..b973690e4 --- /dev/null +++ b/dist/fa/yahoo.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.yahoo = void 0; +var yahoo = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M859 957l13 707q-62-11-105-11-41 0-105 11l13-707q-40-69-168.5-295.5t-216.5-374.5-181-287q58 15 108 15 44 0 111-15 63 111 133.5 229.5t167 276.5 138.5 227q37-61 109.5-177.5t117.5-190 105-176 107-189.5q54 14 107 14 56 0 114-14v0q-28 39-60 88.5t-49.5 78.5-56.5 96-49 84q-146 248-353 610z" + } + }] +}; +exports.yahoo = yahoo; \ No newline at end of file diff --git a/dist/fa/yc.js b/dist/fa/yc.js new file mode 100644 index 000000000..94094b21f --- /dev/null +++ b/dist/fa/yc.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.yc = void 0; +var yc = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M809 1004l266-499h-112l-157 312q-24 48-44 92l-42-92-155-312h-120l263 493v324h101v-318zM1536 128v1536h-1536v-1536h1536z" + } + }] +}; +exports.yc = yc; \ No newline at end of file diff --git a/dist/fa/ycSquare.js b/dist/fa/ycSquare.js new file mode 100644 index 000000000..0fc8c5e30 --- /dev/null +++ b/dist/fa/ycSquare.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ycSquare = void 0; +var ycSquare = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M809 1004l266-499h-112l-157 312q-24 48-44 92l-42-92-155-312h-120l263 493v324h101v-318zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.ycSquare = ycSquare; \ No newline at end of file diff --git a/dist/fa/yelp.js b/dist/fa/yelp.js new file mode 100644 index 000000000..46e02b726 --- /dev/null +++ b/dist/fa/yelp.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.yelp = void 0; +var yelp = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M773 1319v127q-1 292-6 305-12 32-51 40-54 9-181.5-38t-162.5-89q-13-15-17-36-1-12 4-26 4-10 34-47t181-216q1 0 60-70 15-19 39.5-24.5t49.5 3.5q24 10 37.5 29t12.5 42zM624 1068q-3 55-52 70l-120 39q-275 88-292 88-35-2-54-36-12-25-17-75-8-76 1-166.5t30-124.5 56-32q13 0 202 77 71 29 115 47l84 34q23 9 35.5 30.5t11.5 48.5zM1450 1365q-7 54-91.5 161t-135.5 127q-37 14-63-7-14-10-184-287l-47-77q-14-21-11.5-46t19.5-46q35-43 83-26 1 1 119 40 203 66 242 79.5t47 20.5q28 22 22 61zM778 733q5 102-54 122-58 17-114-71l-378-598q-8-35 19-62 41-43 207.5-89.5t224.5-31.5q40 10 49 45 3 18 22 305.5t24 379.5zM1440 841q3 39-26 59-15 10-329 86-67 15-91 23l1-2q-23 6-46-4t-37-32q-30-47 0-87 1-1 75-102 125-171 150-204t34-39q28-19 65-2 48 23 123 133.5t81 167.5v3z" + } + }] +}; +exports.yelp = yelp; \ No newline at end of file diff --git a/dist/fa/yen.js b/dist/fa/yen.js new file mode 100644 index 000000000..98e81f13a --- /dev/null +++ b/dist/fa/yen.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.yen = void 0; +var yen = { + "viewBox": "0 0 1027 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M603 1536h-172q-13 0-22.5-9t-9.5-23v-330h-288q-13 0-22.5-9t-9.5-23v-103q0-13 9.5-22.5t22.5-9.5h288v-85h-288q-13 0-22.5-9t-9.5-23v-104q0-13 9.5-22.5t22.5-9.5h214l-321-578q-8-16 0-32 10-16 28-16h194q19 0 29 18l215 425q19 38 56 125 10-24 30.5-68t27.5-61l191-420q8-19 29-19h191q17 0 27 16 9 14 1 31l-313 579h215q13 0 22.5 9.5t9.5 22.5v104q0 14-9.5 23t-22.5 9h-290v85h290q13 0 22.5 9.5t9.5 22.5v103q0 14-9.5 23t-22.5 9h-290v330q0 13-9.5 22.5t-22.5 9.5z" + } + }] +}; +exports.yen = yen; \ No newline at end of file diff --git a/dist/fa/yoast.js b/dist/fa/yoast.js new file mode 100644 index 000000000..0a99f3c1a --- /dev/null +++ b/dist/fa/yoast.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.yoast = void 0; +var yoast = { + "viewBox": "0 0 1664 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M339 218h691l-26 72h-665q-110 0-188.5 79t-78.5 189v771q0 95 60.5 169.5t153.5 93.5q23 5 98 5v72h-45q-140 0-239.5-100t-99.5-240v-771q0-140 99.5-240t239.5-100zM1190 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106l-285-733h228l187 585zM1664 558v1111h-795q37-55 45-73h678v-1038q0-85-49.5-155t-129.5-99l25-67q101 34 163.5 123.5t62.5 197.5z" + } + }] +}; +exports.yoast = yoast; \ No newline at end of file diff --git a/dist/fa/youtube.js b/dist/fa/youtube.js new file mode 100644 index 000000000..961425818 --- /dev/null +++ b/dist/fa/youtube.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.youtube = void 0; +var youtube = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M971 1244v211q0 67-39 67-23 0-45-22v-301q22-22 45-22 39 0 39 67zM1309 1245v46h-90v-46q0-68 45-68t45 68zM343 1027h107v-94h-312v94h105v569h100v-569zM631 1596h89v-494h-89v378q-30 42-57 42-18 0-21-21-1-3-1-35v-364h-89v391q0 49 8 73 12 37 58 37 48 0 102-61v54zM1060 1448v-197q0-73-9-99-17-56-71-56-50 0-93 54v-217h-89v663h89v-48q45 55 93 55 54 0 71-55 9-27 9-100zM1398 1438v-13h-91q0 51-2 61-7 36-40 36-46 0-46-69v-87h179v-103q0-79-27-116-39-51-106-51-68 0-107 51-28 37-28 116v173q0 79 29 116 39 51 108 51 72 0 108-53 18-27 21-54 2-9 2-58zM790 525v-210q0-69-43-69t-43 69v210q0 70 43 70t43-70zM1509 1276q0 234-26 350-14 59-58 99t-102 46q-184 21-555 21t-555-21q-58-6-102.5-46t-57.5-99q-26-112-26-350 0-234 26-350 14-59 58-99t103-47q183-20 554-20t555 20q58 7 102.5 47t57.5 99q26 112 26 350zM511 0h102l-121 399v271h-100v-271q-14-74-61-212-37-103-65-187h106l71 263zM881 333v175q0 81-28 118-38 51-106 51-67 0-105-51-28-38-28-118v-175q0-80 28-117 38-51 105-51 68 0 106 51 28 37 28 117zM1216 171v499h-91v-55q-53 62-103 62-46 0-59-37-8-24-8-75v-394h91v367q0 33 1 35 3 22 21 22 27 0 57-43v-381h91z" + } + }] +}; +exports.youtube = youtube; \ No newline at end of file diff --git a/dist/fa/youtubePlay.js b/dist/fa/youtubePlay.js new file mode 100644 index 000000000..f2e93245e --- /dev/null +++ b/dist/fa/youtubePlay.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.youtubePlay = void 0; +var youtubePlay = { + "viewBox": "0 0 1792 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M711 1128l484-250-484-253v503zM896 266q168 0 324.5 4.5t229.5 9.5l73 4q1 0 17 1.5t23 3 23.5 4.5 28.5 8 28 13 31 19.5 29 26.5q6 6 15.5 18.5t29 58.5 26.5 101q8 64 12.5 136.5t5.5 113.5v40 136q1 145-18 290-7 55-25 99.5t-32 61.5l-14 17q-14 15-29 26.5t-31 19-28 12.5-28.5 8-24 4.5-23 3-16.5 1.5q-251 19-627 19-207-2-359.5-6.5t-200.5-7.5l-49-4-36-4q-36-5-54.5-10t-51-21-56.5-41q-6-6-15.5-18.5t-29-58.5-26.5-101q-8-64-12.5-136.5t-5.5-113.5v-40-136q-1-145 18-290 7-55 25-99.5t32-61.5l14-17q14-15 29-26.5t31-19.5 28-13 28.5-8 23.5-4.5 23-3 17-1.5q251-18 627-18z" + } + }] +}; +exports.youtubePlay = youtubePlay; \ No newline at end of file diff --git a/dist/fa/youtubeSquare.js b/dist/fa/youtubeSquare.js new file mode 100644 index 000000000..7e223d216 --- /dev/null +++ b/dist/fa/youtubeSquare.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.youtubeSquare = void 0; +var youtubeSquare = { + "viewBox": "0 0 1536 1792", + "children": [{ + "name": "path", + "attribs": { + "d": "M919 1303v-157q0-50-29-50-17 0-33 16v224q16 16 33 16 29 0 29-49zM1103 1181h66v-34q0-51-33-51t-33 51v34zM532 915v70h-80v423h-74v-423h-78v-70h232zM733 1041v367h-67v-40q-39 45-76 45-33 0-42-28-6-17-6-54v-290h66v270q0 24 1 26 1 15 15 15 20 0 42-31v-280h67zM985 1152v146q0 52-7 73-12 42-53 42-35 0-68-41v36h-67v-493h67v161q32-40 68-40 41 0 53 42 7 21 7 74zM1236 1281v9q0 29-2 43-3 22-15 40-27 40-80 40-52 0-81-38-21-27-21-86v-129q0-59 20-86 29-38 80-38t78 38q21 29 21 86v76h-133v65q0 51 34 51 24 0 30-26 0-1 0.5-7t0.5-16.5v-21.5h68zM785 457v156q0 51-32 51t-32-51v-156q0-52 32-52t32 52zM1318 1170q0-177-19-260-10-44-43-73.5t-76-34.5q-136-15-412-15-275 0-411 15-44 5-76.5 34.5t-42.5 73.5q-20 87-20 260 0 176 20 260 10 43 42.5 73t75.5 35q137 15 412 15t412-15q43-5 75.5-35t42.5-73q20-84 20-260zM563 519l90-296h-75l-51 195-53-195h-78q7 23 23 69l24 69q35 103 46 158v201h74v-201zM852 600v-130q0-58-21-87-29-38-78-38-51 0-78 38-21 29-21 87v130q0 58 21 87 27 38 78 38 49 0 78-38 21-27 21-87zM1033 720h67v-370h-67v283q-22 31-42 31-15 0-16-16-1-2-1-26v-272h-67v293q0 37 6 55 11 27 43 27 36 0 77-45v40zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" + } + }] +}; +exports.youtubeSquare = youtubeSquare; \ No newline at end of file diff --git a/dist/feather/activity.js b/dist/feather/activity.js new file mode 100644 index 000000000..684be6e7c --- /dev/null +++ b/dist/feather/activity.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.activity = void 0; +var activity = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "22 12 18 12 15 21 9 3 6 12 2 12" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.activity = activity; \ No newline at end of file diff --git a/dist/feather/airplay.js b/dist/feather/airplay.js new file mode 100644 index 000000000..0bea276cc --- /dev/null +++ b/dist/feather/airplay.js @@ -0,0 +1,30 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.airplay = void 0; +var airplay = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M5 17H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-1" + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "points": "12 15 17 21 7 21 12 15" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.airplay = airplay; \ No newline at end of file diff --git a/dist/feather/alertCircle.js b/dist/feather/alertCircle.js new file mode 100644 index 000000000..9556f3ee2 --- /dev/null +++ b/dist/feather/alertCircle.js @@ -0,0 +1,44 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.alertCircle = void 0; +var alertCircle = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "10" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "8", + "x2": "12", + "y2": "12" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "16", + "x2": "12", + "y2": "16" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.alertCircle = alertCircle; \ No newline at end of file diff --git a/dist/feather/alertOctagon.js b/dist/feather/alertOctagon.js new file mode 100644 index 000000000..c7a6eefc6 --- /dev/null +++ b/dist/feather/alertOctagon.js @@ -0,0 +1,42 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.alertOctagon = void 0; +var alertOctagon = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polygon", + "attribs": { + "points": "7.86 2 16.14 2 22 7.86 22 16.14 16.14 22 7.86 22 2 16.14 2 7.86 7.86 2" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "8", + "x2": "12", + "y2": "12" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "16", + "x2": "12", + "y2": "16" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.alertOctagon = alertOctagon; \ No newline at end of file diff --git a/dist/feather/alertTriangle.js b/dist/feather/alertTriangle.js new file mode 100644 index 000000000..0c485768f --- /dev/null +++ b/dist/feather/alertTriangle.js @@ -0,0 +1,42 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.alertTriangle = void 0; +var alertTriangle = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "9", + "x2": "12", + "y2": "13" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "17", + "x2": "12", + "y2": "17" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.alertTriangle = alertTriangle; \ No newline at end of file diff --git a/dist/feather/alignCenter.js b/dist/feather/alignCenter.js new file mode 100644 index 000000000..b9ced8dba --- /dev/null +++ b/dist/feather/alignCenter.js @@ -0,0 +1,54 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.alignCenter = void 0; +var alignCenter = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "line", + "attribs": { + "x1": "18", + "y1": "10", + "x2": "6", + "y2": "10" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "21", + "y1": "6", + "x2": "3", + "y2": "6" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "21", + "y1": "14", + "x2": "3", + "y2": "14" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "18", + "y1": "18", + "x2": "6", + "y2": "18" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.alignCenter = alignCenter; \ No newline at end of file diff --git a/dist/feather/alignJustify.js b/dist/feather/alignJustify.js new file mode 100644 index 000000000..a2fa344d4 --- /dev/null +++ b/dist/feather/alignJustify.js @@ -0,0 +1,54 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.alignJustify = void 0; +var alignJustify = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "line", + "attribs": { + "x1": "21", + "y1": "10", + "x2": "3", + "y2": "10" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "21", + "y1": "6", + "x2": "3", + "y2": "6" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "21", + "y1": "14", + "x2": "3", + "y2": "14" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "21", + "y1": "18", + "x2": "3", + "y2": "18" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.alignJustify = alignJustify; \ No newline at end of file diff --git a/dist/feather/alignLeft.js b/dist/feather/alignLeft.js new file mode 100644 index 000000000..30f755b43 --- /dev/null +++ b/dist/feather/alignLeft.js @@ -0,0 +1,54 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.alignLeft = void 0; +var alignLeft = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "line", + "attribs": { + "x1": "17", + "y1": "10", + "x2": "3", + "y2": "10" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "21", + "y1": "6", + "x2": "3", + "y2": "6" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "21", + "y1": "14", + "x2": "3", + "y2": "14" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "17", + "y1": "18", + "x2": "3", + "y2": "18" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.alignLeft = alignLeft; \ No newline at end of file diff --git a/dist/feather/alignRight.js b/dist/feather/alignRight.js new file mode 100644 index 000000000..57e80c095 --- /dev/null +++ b/dist/feather/alignRight.js @@ -0,0 +1,54 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.alignRight = void 0; +var alignRight = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "line", + "attribs": { + "x1": "21", + "y1": "10", + "x2": "7", + "y2": "10" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "21", + "y1": "6", + "x2": "3", + "y2": "6" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "21", + "y1": "14", + "x2": "3", + "y2": "14" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "21", + "y1": "18", + "x2": "7", + "y2": "18" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.alignRight = alignRight; \ No newline at end of file diff --git a/dist/feather/anchor.js b/dist/feather/anchor.js new file mode 100644 index 000000000..5e3ddbeb0 --- /dev/null +++ b/dist/feather/anchor.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.anchor = void 0; +var anchor = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "5", + "r": "3" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "22", + "x2": "12", + "y2": "8" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 12H2a10 10 0 0 0 20 0h-3" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.anchor = anchor; \ No newline at end of file diff --git a/dist/feather/aperture.js b/dist/feather/aperture.js new file mode 100644 index 000000000..355fe9afd --- /dev/null +++ b/dist/feather/aperture.js @@ -0,0 +1,80 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.aperture = void 0; +var aperture = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "10" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "14.31", + "y1": "8", + "x2": "20.05", + "y2": "17.94" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "9.69", + "y1": "8", + "x2": "21.17", + "y2": "8" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "7.38", + "y1": "12", + "x2": "13.12", + "y2": "2.06" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "9.69", + "y1": "16", + "x2": "3.95", + "y2": "6.06" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "14.31", + "y1": "16", + "x2": "2.83", + "y2": "16" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "16.62", + "y1": "12", + "x2": "10.88", + "y2": "21.94" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.aperture = aperture; \ No newline at end of file diff --git a/dist/feather/archive.js b/dist/feather/archive.js new file mode 100644 index 000000000..1109888f4 --- /dev/null +++ b/dist/feather/archive.js @@ -0,0 +1,42 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.archive = void 0; +var archive = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "21 8 21 21 3 21 3 8" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "1", + "y": "3", + "width": "22", + "height": "5" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "10", + "y1": "12", + "x2": "14", + "y2": "12" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.archive = archive; \ No newline at end of file diff --git a/dist/feather/arrowDown.js b/dist/feather/arrowDown.js new file mode 100644 index 000000000..8501ce9aa --- /dev/null +++ b/dist/feather/arrowDown.js @@ -0,0 +1,33 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowDown = void 0; +var arrowDown = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "line", + "attribs": { + "x1": "12", + "y1": "5", + "x2": "12", + "y2": "19" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "19 12 12 19 5 12" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.arrowDown = arrowDown; \ No newline at end of file diff --git a/dist/feather/arrowDownCircle.js b/dist/feather/arrowDownCircle.js new file mode 100644 index 000000000..839d5edb5 --- /dev/null +++ b/dist/feather/arrowDownCircle.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowDownCircle = void 0; +var arrowDownCircle = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "10" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "8 12 12 16 16 12" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "8", + "x2": "12", + "y2": "16" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.arrowDownCircle = arrowDownCircle; \ No newline at end of file diff --git a/dist/feather/arrowDownLeft.js b/dist/feather/arrowDownLeft.js new file mode 100644 index 000000000..3b1465429 --- /dev/null +++ b/dist/feather/arrowDownLeft.js @@ -0,0 +1,33 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowDownLeft = void 0; +var arrowDownLeft = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "line", + "attribs": { + "x1": "17", + "y1": "7", + "x2": "7", + "y2": "17" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "17 17 7 17 7 7" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.arrowDownLeft = arrowDownLeft; \ No newline at end of file diff --git a/dist/feather/arrowDownRight.js b/dist/feather/arrowDownRight.js new file mode 100644 index 000000000..a546c1536 --- /dev/null +++ b/dist/feather/arrowDownRight.js @@ -0,0 +1,33 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowDownRight = void 0; +var arrowDownRight = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "line", + "attribs": { + "x1": "7", + "y1": "7", + "x2": "17", + "y2": "17" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "17 7 17 17 7 17" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.arrowDownRight = arrowDownRight; \ No newline at end of file diff --git a/dist/feather/arrowLeft.js b/dist/feather/arrowLeft.js new file mode 100644 index 000000000..960edd761 --- /dev/null +++ b/dist/feather/arrowLeft.js @@ -0,0 +1,33 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowLeft = void 0; +var arrowLeft = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "line", + "attribs": { + "x1": "19", + "y1": "12", + "x2": "5", + "y2": "12" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "12 19 5 12 12 5" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.arrowLeft = arrowLeft; \ No newline at end of file diff --git a/dist/feather/arrowLeftCircle.js b/dist/feather/arrowLeftCircle.js new file mode 100644 index 000000000..f712bd501 --- /dev/null +++ b/dist/feather/arrowLeftCircle.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowLeftCircle = void 0; +var arrowLeftCircle = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "10" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "12 8 8 12 12 16" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "16", + "y1": "12", + "x2": "8", + "y2": "12" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.arrowLeftCircle = arrowLeftCircle; \ No newline at end of file diff --git a/dist/feather/arrowRight.js b/dist/feather/arrowRight.js new file mode 100644 index 000000000..e4996158f --- /dev/null +++ b/dist/feather/arrowRight.js @@ -0,0 +1,33 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowRight = void 0; +var arrowRight = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "line", + "attribs": { + "x1": "5", + "y1": "12", + "x2": "19", + "y2": "12" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "12 5 19 12 12 19" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.arrowRight = arrowRight; \ No newline at end of file diff --git a/dist/feather/arrowRightCircle.js b/dist/feather/arrowRightCircle.js new file mode 100644 index 000000000..70f4b63b4 --- /dev/null +++ b/dist/feather/arrowRightCircle.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowRightCircle = void 0; +var arrowRightCircle = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "10" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "12 16 16 12 12 8" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "8", + "y1": "12", + "x2": "16", + "y2": "12" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.arrowRightCircle = arrowRightCircle; \ No newline at end of file diff --git a/dist/feather/arrowUp.js b/dist/feather/arrowUp.js new file mode 100644 index 000000000..e7cb24f6d --- /dev/null +++ b/dist/feather/arrowUp.js @@ -0,0 +1,33 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowUp = void 0; +var arrowUp = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "line", + "attribs": { + "x1": "12", + "y1": "19", + "x2": "12", + "y2": "5" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "5 12 12 5 19 12" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.arrowUp = arrowUp; \ No newline at end of file diff --git a/dist/feather/arrowUpCircle.js b/dist/feather/arrowUpCircle.js new file mode 100644 index 000000000..71311ad4a --- /dev/null +++ b/dist/feather/arrowUpCircle.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowUpCircle = void 0; +var arrowUpCircle = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "10" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "16 12 12 8 8 12" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "16", + "x2": "12", + "y2": "8" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.arrowUpCircle = arrowUpCircle; \ No newline at end of file diff --git a/dist/feather/arrowUpLeft.js b/dist/feather/arrowUpLeft.js new file mode 100644 index 000000000..bfcb7f800 --- /dev/null +++ b/dist/feather/arrowUpLeft.js @@ -0,0 +1,33 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowUpLeft = void 0; +var arrowUpLeft = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "line", + "attribs": { + "x1": "17", + "y1": "17", + "x2": "7", + "y2": "7" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "7 17 7 7 17 7" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.arrowUpLeft = arrowUpLeft; \ No newline at end of file diff --git a/dist/feather/arrowUpRight.js b/dist/feather/arrowUpRight.js new file mode 100644 index 000000000..674b6b999 --- /dev/null +++ b/dist/feather/arrowUpRight.js @@ -0,0 +1,33 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowUpRight = void 0; +var arrowUpRight = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "line", + "attribs": { + "x1": "7", + "y1": "17", + "x2": "17", + "y2": "7" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "7 7 17 7 17 17" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.arrowUpRight = arrowUpRight; \ No newline at end of file diff --git a/dist/feather/atSign.js b/dist/feather/atSign.js new file mode 100644 index 000000000..65fa133d6 --- /dev/null +++ b/dist/feather/atSign.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.atSign = void 0; +var atSign = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "4" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 8v5a3 3 0 0 0 6 0v-1a10 10 0 1 0-3.92 7.94" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.atSign = atSign; \ No newline at end of file diff --git a/dist/feather/award.js b/dist/feather/award.js new file mode 100644 index 000000000..04b7d5293 --- /dev/null +++ b/dist/feather/award.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.award = void 0; +var award = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "8", + "r": "7" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "8.21 13.89 7 23 12 20 17 23 15.79 13.88" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.award = award; \ No newline at end of file diff --git a/dist/feather/barChart.js b/dist/feather/barChart.js new file mode 100644 index 000000000..f38037c96 --- /dev/null +++ b/dist/feather/barChart.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.barChart = void 0; +var barChart = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "line", + "attribs": { + "x1": "12", + "y1": "20", + "x2": "12", + "y2": "10" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "18", + "y1": "20", + "x2": "18", + "y2": "4" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "6", + "y1": "20", + "x2": "6", + "y2": "16" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.barChart = barChart; \ No newline at end of file diff --git a/dist/feather/barChart2.js b/dist/feather/barChart2.js new file mode 100644 index 000000000..40f41b4ba --- /dev/null +++ b/dist/feather/barChart2.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.barChart2 = void 0; +var barChart2 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "line", + "attribs": { + "x1": "18", + "y1": "20", + "x2": "18", + "y2": "10" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "20", + "x2": "12", + "y2": "4" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "6", + "y1": "20", + "x2": "6", + "y2": "14" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.barChart2 = barChart2; \ No newline at end of file diff --git a/dist/feather/battery.js b/dist/feather/battery.js new file mode 100644 index 000000000..f839722cb --- /dev/null +++ b/dist/feather/battery.js @@ -0,0 +1,38 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.battery = void 0; +var battery = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "6", + "width": "18", + "height": "12", + "rx": "2", + "ry": "2" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "23", + "y1": "13", + "x2": "23", + "y2": "11" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.battery = battery; \ No newline at end of file diff --git a/dist/feather/batteryCharging.js b/dist/feather/batteryCharging.js new file mode 100644 index 000000000..8a23492c7 --- /dev/null +++ b/dist/feather/batteryCharging.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.batteryCharging = void 0; +var batteryCharging = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M5 18H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h3.19M15 6h2a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-3.19" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "23", + "y1": "13", + "x2": "23", + "y2": "11" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "11 6 7 12 13 12 9 18" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.batteryCharging = batteryCharging; \ No newline at end of file diff --git a/dist/feather/bell.js b/dist/feather/bell.js new file mode 100644 index 000000000..23c9e5fee --- /dev/null +++ b/dist/feather/bell.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bell = void 0; +var bell = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M22 17H2a3 3 0 0 0 3-3V9a7 7 0 0 1 14 0v5a3 3 0 0 0 3 3zm-8.27 4a2 2 0 0 1-3.46 0" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.bell = bell; \ No newline at end of file diff --git a/dist/feather/bellOff.js b/dist/feather/bellOff.js new file mode 100644 index 000000000..e091d3a55 --- /dev/null +++ b/dist/feather/bellOff.js @@ -0,0 +1,33 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bellOff = void 0; +var bellOff = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M8.56 2.9A7 7 0 0 1 19 9v4m-2 4H2a3 3 0 0 0 3-3V9a7 7 0 0 1 .78-3.22M13.73 21a2 2 0 0 1-3.46 0" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "1", + "y1": "1", + "x2": "23", + "y2": "23" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.bellOff = bellOff; \ No newline at end of file diff --git a/dist/feather/bluetooth.js b/dist/feather/bluetooth.js new file mode 100644 index 000000000..1c53afebb --- /dev/null +++ b/dist/feather/bluetooth.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bluetooth = void 0; +var bluetooth = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "6.5 6.5 17.5 17.5 12 23 12 1 17.5 6.5 6.5 17.5" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.bluetooth = bluetooth; \ No newline at end of file diff --git a/dist/feather/bold.js b/dist/feather/bold.js new file mode 100644 index 000000000..3e50eab9e --- /dev/null +++ b/dist/feather/bold.js @@ -0,0 +1,30 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bold = void 0; +var bold = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M6 4h8a4 4 0 0 1 4 4 4 4 0 0 1-4 4H6z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 12h9a4 4 0 0 1 4 4 4 4 0 0 1-4 4H6z" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.bold = bold; \ No newline at end of file diff --git a/dist/feather/book.js b/dist/feather/book.js new file mode 100644 index 000000000..f8651ab7b --- /dev/null +++ b/dist/feather/book.js @@ -0,0 +1,30 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.book = void 0; +var book = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 19.5A2.5 2.5 0 0 1 6.5 17H20" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.book = book; \ No newline at end of file diff --git a/dist/feather/bookOpen.js b/dist/feather/bookOpen.js new file mode 100644 index 000000000..67525a2f8 --- /dev/null +++ b/dist/feather/bookOpen.js @@ -0,0 +1,30 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bookOpen = void 0; +var bookOpen = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M2 3h6a4 4 0 0 1 4 4v14a3 3 0 0 0-3-3H2z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 3h-6a4 4 0 0 0-4 4v14a3 3 0 0 1 3-3h7z" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.bookOpen = bookOpen; \ No newline at end of file diff --git a/dist/feather/bookmark.js b/dist/feather/bookmark.js new file mode 100644 index 000000000..840339c45 --- /dev/null +++ b/dist/feather/bookmark.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bookmark = void 0; +var bookmark = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M19 21l-7-5-7 5V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.bookmark = bookmark; \ No newline at end of file diff --git a/dist/feather/box.js b/dist/feather/box.js new file mode 100644 index 000000000..6aff0fbf2 --- /dev/null +++ b/dist/feather/box.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.box = void 0; +var box = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12.89 1.45l8 4A2 2 0 0 1 22 7.24v9.53a2 2 0 0 1-1.11 1.79l-8 4a2 2 0 0 1-1.79 0l-8-4a2 2 0 0 1-1.1-1.8V7.24a2 2 0 0 1 1.11-1.79l8-4a2 2 0 0 1 1.78 0z" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "2.32 6.16 12 11 21.68 6.16" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "22.76", + "x2": "12", + "y2": "11" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.box = box; \ No newline at end of file diff --git a/dist/feather/briefcase.js b/dist/feather/briefcase.js new file mode 100644 index 000000000..040a67536 --- /dev/null +++ b/dist/feather/briefcase.js @@ -0,0 +1,35 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.briefcase = void 0; +var briefcase = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "x": "2", + "y": "7", + "width": "20", + "height": "14", + "rx": "2", + "ry": "2" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 21V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.briefcase = briefcase; \ No newline at end of file diff --git a/dist/feather/calendar.js b/dist/feather/calendar.js new file mode 100644 index 000000000..06ec81dc4 --- /dev/null +++ b/dist/feather/calendar.js @@ -0,0 +1,56 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.calendar = void 0; +var calendar = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "x": "3", + "y": "4", + "width": "18", + "height": "18", + "rx": "2", + "ry": "2" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "16", + "y1": "2", + "x2": "16", + "y2": "6" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "8", + "y1": "2", + "x2": "8", + "y2": "6" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "3", + "y1": "10", + "x2": "21", + "y2": "10" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.calendar = calendar; \ No newline at end of file diff --git a/dist/feather/camera.js b/dist/feather/camera.js new file mode 100644 index 000000000..8c8349bbe --- /dev/null +++ b/dist/feather/camera.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.camera = void 0; +var camera = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M23 19a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h4l2-3h6l2 3h4a2 2 0 0 1 2 2z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "13", + "r": "4" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.camera = camera; \ No newline at end of file diff --git a/dist/feather/cameraOff.js b/dist/feather/cameraOff.js new file mode 100644 index 000000000..fdaa62893 --- /dev/null +++ b/dist/feather/cameraOff.js @@ -0,0 +1,33 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cameraOff = void 0; +var cameraOff = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "line", + "attribs": { + "x1": "1", + "y1": "1", + "x2": "23", + "y2": "23" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 21H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h3m3-3h6l2 3h4a2 2 0 0 1 2 2v9.34m-7.72-2.06a4 4 0 1 1-5.56-5.56" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.cameraOff = cameraOff; \ No newline at end of file diff --git a/dist/feather/cast.js b/dist/feather/cast.js new file mode 100644 index 000000000..09e8536cc --- /dev/null +++ b/dist/feather/cast.js @@ -0,0 +1,33 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cast = void 0; +var cast = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M2 16.1A5 5 0 0 1 5.9 20M2 12.05A9 9 0 0 1 9.95 20M2 8V6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-6" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "2", + "y1": "20", + "x2": "2", + "y2": "20" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.cast = cast; \ No newline at end of file diff --git a/dist/feather/check.js b/dist/feather/check.js new file mode 100644 index 000000000..02a8987bc --- /dev/null +++ b/dist/feather/check.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.check = void 0; +var check = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "20 6 9 17 4 12" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.check = check; \ No newline at end of file diff --git a/dist/feather/checkCircle.js b/dist/feather/checkCircle.js new file mode 100644 index 000000000..b587e49b5 --- /dev/null +++ b/dist/feather/checkCircle.js @@ -0,0 +1,30 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.checkCircle = void 0; +var checkCircle = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M22 11.08V12a10 10 0 1 1-5.93-9.14" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "22 4 12 14.01 9 11.01" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.checkCircle = checkCircle; \ No newline at end of file diff --git a/dist/feather/checkSquare.js b/dist/feather/checkSquare.js new file mode 100644 index 000000000..bfa2e956a --- /dev/null +++ b/dist/feather/checkSquare.js @@ -0,0 +1,30 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.checkSquare = void 0; +var checkSquare = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "9 11 12 14 22 4" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 12v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.checkSquare = checkSquare; \ No newline at end of file diff --git a/dist/feather/chevronDown.js b/dist/feather/chevronDown.js new file mode 100644 index 000000000..a1bf9e6be --- /dev/null +++ b/dist/feather/chevronDown.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.chevronDown = void 0; +var chevronDown = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "6 9 12 15 18 9" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.chevronDown = chevronDown; \ No newline at end of file diff --git a/dist/feather/chevronLeft.js b/dist/feather/chevronLeft.js new file mode 100644 index 000000000..7ad08d12b --- /dev/null +++ b/dist/feather/chevronLeft.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.chevronLeft = void 0; +var chevronLeft = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "15 18 9 12 15 6" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.chevronLeft = chevronLeft; \ No newline at end of file diff --git a/dist/feather/chevronRight.js b/dist/feather/chevronRight.js new file mode 100644 index 000000000..aaebaf0a7 --- /dev/null +++ b/dist/feather/chevronRight.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.chevronRight = void 0; +var chevronRight = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "9 18 15 12 9 6" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.chevronRight = chevronRight; \ No newline at end of file diff --git a/dist/feather/chevronUp.js b/dist/feather/chevronUp.js new file mode 100644 index 000000000..94da27189 --- /dev/null +++ b/dist/feather/chevronUp.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.chevronUp = void 0; +var chevronUp = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "18 15 12 9 6 15" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.chevronUp = chevronUp; \ No newline at end of file diff --git a/dist/feather/chevronsDown.js b/dist/feather/chevronsDown.js new file mode 100644 index 000000000..55285b697 --- /dev/null +++ b/dist/feather/chevronsDown.js @@ -0,0 +1,30 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.chevronsDown = void 0; +var chevronsDown = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "7 13 12 18 17 13" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "7 6 12 11 17 6" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.chevronsDown = chevronsDown; \ No newline at end of file diff --git a/dist/feather/chevronsLeft.js b/dist/feather/chevronsLeft.js new file mode 100644 index 000000000..58b8a840a --- /dev/null +++ b/dist/feather/chevronsLeft.js @@ -0,0 +1,30 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.chevronsLeft = void 0; +var chevronsLeft = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "11 17 6 12 11 7" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "18 17 13 12 18 7" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.chevronsLeft = chevronsLeft; \ No newline at end of file diff --git a/dist/feather/chevronsRight.js b/dist/feather/chevronsRight.js new file mode 100644 index 000000000..df39358ce --- /dev/null +++ b/dist/feather/chevronsRight.js @@ -0,0 +1,30 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.chevronsRight = void 0; +var chevronsRight = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "13 17 18 12 13 7" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "6 17 11 12 6 7" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.chevronsRight = chevronsRight; \ No newline at end of file diff --git a/dist/feather/chevronsUp.js b/dist/feather/chevronsUp.js new file mode 100644 index 000000000..32ff041c3 --- /dev/null +++ b/dist/feather/chevronsUp.js @@ -0,0 +1,30 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.chevronsUp = void 0; +var chevronsUp = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "17 11 12 6 7 11" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "17 18 12 13 7 18" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.chevronsUp = chevronsUp; \ No newline at end of file diff --git a/dist/feather/chrome.js b/dist/feather/chrome.js new file mode 100644 index 000000000..1ee111129 --- /dev/null +++ b/dist/feather/chrome.js @@ -0,0 +1,61 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.chrome = void 0; +var chrome = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "10" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "4" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "21.17", + "y1": "8", + "x2": "12", + "y2": "8" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "3.95", + "y1": "6.06", + "x2": "8.54", + "y2": "14" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "10.88", + "y1": "21.94", + "x2": "15.46", + "y2": "14" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.chrome = chrome; \ No newline at end of file diff --git a/dist/feather/circle.js b/dist/feather/circle.js new file mode 100644 index 000000000..9e1880d74 --- /dev/null +++ b/dist/feather/circle.js @@ -0,0 +1,26 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.circle = void 0; +var circle = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "10" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.circle = circle; \ No newline at end of file diff --git a/dist/feather/clipboard.js b/dist/feather/clipboard.js new file mode 100644 index 000000000..b06ea2415 --- /dev/null +++ b/dist/feather/clipboard.js @@ -0,0 +1,35 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.clipboard = void 0; +var clipboard = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "8", + "y": "2", + "width": "8", + "height": "4", + "rx": "1", + "ry": "1" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.clipboard = clipboard; \ No newline at end of file diff --git a/dist/feather/clock.js b/dist/feather/clock.js new file mode 100644 index 000000000..f67b45dde --- /dev/null +++ b/dist/feather/clock.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.clock = void 0; +var clock = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "10" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "12 6 12 12 16 14" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.clock = clock; \ No newline at end of file diff --git a/dist/feather/cloud.js b/dist/feather/cloud.js new file mode 100644 index 000000000..ae65ef43e --- /dev/null +++ b/dist/feather/cloud.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cloud = void 0; +var cloud = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18 10h-1.26A8 8 0 1 0 9 20h9a5 5 0 0 0 0-10z" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.cloud = cloud; \ No newline at end of file diff --git a/dist/feather/cloudDrizzle.js b/dist/feather/cloudDrizzle.js new file mode 100644 index 000000000..6cf7e0eab --- /dev/null +++ b/dist/feather/cloudDrizzle.js @@ -0,0 +1,78 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cloudDrizzle = void 0; +var cloudDrizzle = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "line", + "attribs": { + "x1": "8", + "y1": "19", + "x2": "8", + "y2": "21" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "8", + "y1": "13", + "x2": "8", + "y2": "15" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "16", + "y1": "19", + "x2": "16", + "y2": "21" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "16", + "y1": "13", + "x2": "16", + "y2": "15" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "21", + "x2": "12", + "y2": "23" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "15", + "x2": "12", + "y2": "17" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 16.58A5 5 0 0 0 18 7h-1.26A8 8 0 1 0 4 15.25" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.cloudDrizzle = cloudDrizzle; \ No newline at end of file diff --git a/dist/feather/cloudLightning.js b/dist/feather/cloudLightning.js new file mode 100644 index 000000000..a8e8c73d1 --- /dev/null +++ b/dist/feather/cloudLightning.js @@ -0,0 +1,30 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cloudLightning = void 0; +var cloudLightning = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M19 16.9A5 5 0 0 0 18 7h-1.26a8 8 0 1 0-11.62 9" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "13 11 9 17 15 17 11 23" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.cloudLightning = cloudLightning; \ No newline at end of file diff --git a/dist/feather/cloudOff.js b/dist/feather/cloudOff.js new file mode 100644 index 000000000..2ba6dd65a --- /dev/null +++ b/dist/feather/cloudOff.js @@ -0,0 +1,33 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cloudOff = void 0; +var cloudOff = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M22.61 16.95A5 5 0 0 0 18 10h-1.26a8 8 0 0 0-7.05-6M5 5a8 8 0 0 0 4 15h9a5 5 0 0 0 1.7-.3" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "1", + "y1": "1", + "x2": "23", + "y2": "23" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.cloudOff = cloudOff; \ No newline at end of file diff --git a/dist/feather/cloudRain.js b/dist/feather/cloudRain.js new file mode 100644 index 000000000..ae112c296 --- /dev/null +++ b/dist/feather/cloudRain.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cloudRain = void 0; +var cloudRain = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "line", + "attribs": { + "x1": "16", + "y1": "13", + "x2": "16", + "y2": "21" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "8", + "y1": "13", + "x2": "8", + "y2": "21" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "15", + "x2": "12", + "y2": "23" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 16.58A5 5 0 0 0 18 7h-1.26A8 8 0 1 0 4 15.25" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.cloudRain = cloudRain; \ No newline at end of file diff --git a/dist/feather/cloudSnow.js b/dist/feather/cloudSnow.js new file mode 100644 index 000000000..626077e64 --- /dev/null +++ b/dist/feather/cloudSnow.js @@ -0,0 +1,78 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cloudSnow = void 0; +var cloudSnow = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M20 17.58A5 5 0 0 0 18 8h-1.26A8 8 0 1 0 4 16.25" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "8", + "y1": "16", + "x2": "8", + "y2": "16" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "8", + "y1": "20", + "x2": "8", + "y2": "20" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "18", + "x2": "12", + "y2": "18" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "22", + "x2": "12", + "y2": "22" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "16", + "y1": "16", + "x2": "16", + "y2": "16" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "16", + "y1": "20", + "x2": "16", + "y2": "20" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.cloudSnow = cloudSnow; \ No newline at end of file diff --git a/dist/feather/code.js b/dist/feather/code.js new file mode 100644 index 000000000..a22ecb02a --- /dev/null +++ b/dist/feather/code.js @@ -0,0 +1,30 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.code = void 0; +var code = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "16 18 22 12 16 6" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "8 6 2 12 8 18" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.code = code; \ No newline at end of file diff --git a/dist/feather/codepen.js b/dist/feather/codepen.js new file mode 100644 index 000000000..db221a4e4 --- /dev/null +++ b/dist/feather/codepen.js @@ -0,0 +1,54 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.codepen = void 0; +var codepen = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polygon", + "attribs": { + "points": "12 2 22 8.5 22 15.5 12 22 2 15.5 2 8.5 12 2" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "22", + "x2": "12", + "y2": "15.5" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "22 8.5 12 15.5 2 8.5" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "2 15.5 12 8.5 22 15.5" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "2", + "x2": "12", + "y2": "8.5" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.codepen = codepen; \ No newline at end of file diff --git a/dist/feather/command.js b/dist/feather/command.js new file mode 100644 index 000000000..b3d072beb --- /dev/null +++ b/dist/feather/command.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.command = void 0; +var command = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18 3a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3H6a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3V6a3 3 0 0 0-3-3 3 3 0 0 0-3 3 3 3 0 0 0 3 3h12a3 3 0 0 0 3-3 3 3 0 0 0-3-3z" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.command = command; \ No newline at end of file diff --git a/dist/feather/compass.js b/dist/feather/compass.js new file mode 100644 index 000000000..3f22ef4c3 --- /dev/null +++ b/dist/feather/compass.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.compass = void 0; +var compass = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "10" + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "points": "16.24 7.76 14.12 14.12 7.76 16.24 9.88 9.88 16.24 7.76" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.compass = compass; \ No newline at end of file diff --git a/dist/feather/copy.js b/dist/feather/copy.js new file mode 100644 index 000000000..5aa7457f9 --- /dev/null +++ b/dist/feather/copy.js @@ -0,0 +1,35 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.copy = void 0; +var copy = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "x": "9", + "y": "9", + "width": "13", + "height": "13", + "rx": "2", + "ry": "2" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.copy = copy; \ No newline at end of file diff --git a/dist/feather/cornerDownLeft.js b/dist/feather/cornerDownLeft.js new file mode 100644 index 000000000..557a84760 --- /dev/null +++ b/dist/feather/cornerDownLeft.js @@ -0,0 +1,30 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cornerDownLeft = void 0; +var cornerDownLeft = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "9 10 4 15 9 20" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 4v7a4 4 0 0 1-4 4H4" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.cornerDownLeft = cornerDownLeft; \ No newline at end of file diff --git a/dist/feather/cornerDownRight.js b/dist/feather/cornerDownRight.js new file mode 100644 index 000000000..6ab0c9532 --- /dev/null +++ b/dist/feather/cornerDownRight.js @@ -0,0 +1,30 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cornerDownRight = void 0; +var cornerDownRight = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "15 10 20 15 15 20" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 4v7a4 4 0 0 0 4 4h12" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.cornerDownRight = cornerDownRight; \ No newline at end of file diff --git a/dist/feather/cornerLeftDown.js b/dist/feather/cornerLeftDown.js new file mode 100644 index 000000000..e9e09808f --- /dev/null +++ b/dist/feather/cornerLeftDown.js @@ -0,0 +1,30 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cornerLeftDown = void 0; +var cornerLeftDown = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "14 15 9 20 4 15" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 4h-7a4 4 0 0 0-4 4v12" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.cornerLeftDown = cornerLeftDown; \ No newline at end of file diff --git a/dist/feather/cornerLeftUp.js b/dist/feather/cornerLeftUp.js new file mode 100644 index 000000000..0c5733b18 --- /dev/null +++ b/dist/feather/cornerLeftUp.js @@ -0,0 +1,30 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cornerLeftUp = void 0; +var cornerLeftUp = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "14 9 9 4 4 9" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 20h-7a4 4 0 0 1-4-4V4" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.cornerLeftUp = cornerLeftUp; \ No newline at end of file diff --git a/dist/feather/cornerRightDown.js b/dist/feather/cornerRightDown.js new file mode 100644 index 000000000..19652b9c6 --- /dev/null +++ b/dist/feather/cornerRightDown.js @@ -0,0 +1,30 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cornerRightDown = void 0; +var cornerRightDown = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "10 15 15 20 20 15" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 4h7a4 4 0 0 1 4 4v12" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.cornerRightDown = cornerRightDown; \ No newline at end of file diff --git a/dist/feather/cornerRightUp.js b/dist/feather/cornerRightUp.js new file mode 100644 index 000000000..fb6286e4e --- /dev/null +++ b/dist/feather/cornerRightUp.js @@ -0,0 +1,30 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cornerRightUp = void 0; +var cornerRightUp = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "10 9 15 4 20 9" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 20h7a4 4 0 0 0 4-4V4" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.cornerRightUp = cornerRightUp; \ No newline at end of file diff --git a/dist/feather/cornerUpLeft.js b/dist/feather/cornerUpLeft.js new file mode 100644 index 000000000..e0e7a8b65 --- /dev/null +++ b/dist/feather/cornerUpLeft.js @@ -0,0 +1,30 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cornerUpLeft = void 0; +var cornerUpLeft = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "9 14 4 9 9 4" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 20v-7a4 4 0 0 0-4-4H4" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.cornerUpLeft = cornerUpLeft; \ No newline at end of file diff --git a/dist/feather/cornerUpRight.js b/dist/feather/cornerUpRight.js new file mode 100644 index 000000000..d99256e4a --- /dev/null +++ b/dist/feather/cornerUpRight.js @@ -0,0 +1,30 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cornerUpRight = void 0; +var cornerUpRight = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "15 14 20 9 15 4" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 20v-7a4 4 0 0 1 4-4h12" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.cornerUpRight = cornerUpRight; \ No newline at end of file diff --git a/dist/feather/cpu.js b/dist/feather/cpu.js new file mode 100644 index 000000000..42f6248e8 --- /dev/null +++ b/dist/feather/cpu.js @@ -0,0 +1,110 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cpu = void 0; +var cpu = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "x": "4", + "y": "4", + "width": "16", + "height": "16", + "rx": "2", + "ry": "2" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "9", + "y": "9", + "width": "6", + "height": "6" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "9", + "y1": "1", + "x2": "9", + "y2": "4" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "15", + "y1": "1", + "x2": "15", + "y2": "4" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "9", + "y1": "20", + "x2": "9", + "y2": "23" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "15", + "y1": "20", + "x2": "15", + "y2": "23" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "20", + "y1": "9", + "x2": "23", + "y2": "9" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "20", + "y1": "14", + "x2": "23", + "y2": "14" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "1", + "y1": "9", + "x2": "4", + "y2": "9" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "1", + "y1": "14", + "x2": "4", + "y2": "14" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.cpu = cpu; \ No newline at end of file diff --git a/dist/feather/creditCard.js b/dist/feather/creditCard.js new file mode 100644 index 000000000..8248e711e --- /dev/null +++ b/dist/feather/creditCard.js @@ -0,0 +1,38 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.creditCard = void 0; +var creditCard = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "4", + "width": "22", + "height": "16", + "rx": "2", + "ry": "2" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "1", + "y1": "10", + "x2": "23", + "y2": "10" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.creditCard = creditCard; \ No newline at end of file diff --git a/dist/feather/crop.js b/dist/feather/crop.js new file mode 100644 index 000000000..f7a9f3711 --- /dev/null +++ b/dist/feather/crop.js @@ -0,0 +1,30 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.crop = void 0; +var crop = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M6.13 1L6 16a2 2 0 0 0 2 2h15" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M1 6.13L16 6a2 2 0 0 1 2 2v15" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.crop = crop; \ No newline at end of file diff --git a/dist/feather/crosshair.js b/dist/feather/crosshair.js new file mode 100644 index 000000000..301f3a65b --- /dev/null +++ b/dist/feather/crosshair.js @@ -0,0 +1,62 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.crosshair = void 0; +var crosshair = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "10" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "22", + "y1": "12", + "x2": "18", + "y2": "12" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "6", + "y1": "12", + "x2": "2", + "y2": "12" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "6", + "x2": "12", + "y2": "2" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "22", + "x2": "12", + "y2": "18" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.crosshair = crosshair; \ No newline at end of file diff --git a/dist/feather/database.js b/dist/feather/database.js new file mode 100644 index 000000000..cedf5791e --- /dev/null +++ b/dist/feather/database.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.database = void 0; +var database = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "ellipse", + "attribs": { + "cx": "12", + "cy": "5", + "rx": "9", + "ry": "3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 12c0 1.66-4 3-9 3s-9-1.34-9-3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 5v14c0 1.66 4 3 9 3s9-1.34 9-3V5" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.database = database; \ No newline at end of file diff --git a/dist/feather/deleteIconic.js b/dist/feather/deleteIconic.js new file mode 100644 index 000000000..85f21dfb9 --- /dev/null +++ b/dist/feather/deleteIconic.js @@ -0,0 +1,42 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.deleteIconic = void 0; +var deleteIconic = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M21 4H8l-7 8 7 8h13a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2z" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "18", + "y1": "9", + "x2": "12", + "y2": "15" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "9", + "x2": "18", + "y2": "15" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.deleteIconic = deleteIconic; \ No newline at end of file diff --git a/dist/feather/disc.js b/dist/feather/disc.js new file mode 100644 index 000000000..9fec774ad --- /dev/null +++ b/dist/feather/disc.js @@ -0,0 +1,34 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.disc = void 0; +var disc = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "10" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "3" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.disc = disc; \ No newline at end of file diff --git a/dist/feather/dollarSign.js b/dist/feather/dollarSign.js new file mode 100644 index 000000000..b39f37eed --- /dev/null +++ b/dist/feather/dollarSign.js @@ -0,0 +1,33 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.dollarSign = void 0; +var dollarSign = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "line", + "attribs": { + "x1": "12", + "y1": "1", + "x2": "12", + "y2": "23" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.dollarSign = dollarSign; \ No newline at end of file diff --git a/dist/feather/download.js b/dist/feather/download.js new file mode 100644 index 000000000..23b845819 --- /dev/null +++ b/dist/feather/download.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.download = void 0; +var download = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "7 10 12 15 17 10" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "15", + "x2": "12", + "y2": "3" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.download = download; \ No newline at end of file diff --git a/dist/feather/downloadCloud.js b/dist/feather/downloadCloud.js new file mode 100644 index 000000000..ca17d1939 --- /dev/null +++ b/dist/feather/downloadCloud.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.downloadCloud = void 0; +var downloadCloud = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "8 17 12 21 16 17" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "12", + "x2": "12", + "y2": "21" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20.88 18.09A5 5 0 0 0 18 9h-1.26A8 8 0 1 0 3 16.29" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.downloadCloud = downloadCloud; \ No newline at end of file diff --git a/dist/feather/droplet.js b/dist/feather/droplet.js new file mode 100644 index 000000000..086a294e6 --- /dev/null +++ b/dist/feather/droplet.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.droplet = void 0; +var droplet = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 2.69l5.66 5.66a8 8 0 1 1-11.31 0z" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.droplet = droplet; \ No newline at end of file diff --git a/dist/feather/edit.js b/dist/feather/edit.js new file mode 100644 index 000000000..b670ab05a --- /dev/null +++ b/dist/feather/edit.js @@ -0,0 +1,30 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.edit = void 0; +var edit = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M20 14.66V20a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h5.34" + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "points": "18 2 22 6 12 16 8 16 8 12 18 2" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.edit = edit; \ No newline at end of file diff --git a/dist/feather/edit2.js b/dist/feather/edit2.js new file mode 100644 index 000000000..b4416615d --- /dev/null +++ b/dist/feather/edit2.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.edit2 = void 0; +var edit2 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polygon", + "attribs": { + "points": "16 3 21 8 8 21 3 21 3 16 16 3" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.edit2 = edit2; \ No newline at end of file diff --git a/dist/feather/edit3.js b/dist/feather/edit3.js new file mode 100644 index 000000000..7f21d3fe5 --- /dev/null +++ b/dist/feather/edit3.js @@ -0,0 +1,33 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.edit3 = void 0; +var edit3 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polygon", + "attribs": { + "points": "14 2 18 6 7 17 3 17 3 13 14 2" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "3", + "y1": "22", + "x2": "21", + "y2": "22" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.edit3 = edit3; \ No newline at end of file diff --git a/dist/feather/externalLink.js b/dist/feather/externalLink.js new file mode 100644 index 000000000..640ee1fc8 --- /dev/null +++ b/dist/feather/externalLink.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.externalLink = void 0; +var externalLink = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "15 3 21 3 21 9" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "10", + "y1": "14", + "x2": "21", + "y2": "3" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.externalLink = externalLink; \ No newline at end of file diff --git a/dist/feather/eye.js b/dist/feather/eye.js new file mode 100644 index 000000000..426937bdb --- /dev/null +++ b/dist/feather/eye.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.eye = void 0; +var eye = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "3" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.eye = eye; \ No newline at end of file diff --git a/dist/feather/eyeOff.js b/dist/feather/eyeOff.js new file mode 100644 index 000000000..2393df945 --- /dev/null +++ b/dist/feather/eyeOff.js @@ -0,0 +1,33 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.eyeOff = void 0; +var eyeOff = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M17.94 17.94A10.07 10.07 0 0 1 12 20c-7 0-11-8-11-8a18.45 18.45 0 0 1 5.06-5.94M9.9 4.24A9.12 9.12 0 0 1 12 4c7 0 11 8 11 8a18.5 18.5 0 0 1-2.16 3.19m-6.72-1.07a3 3 0 1 1-4.24-4.24" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "1", + "y1": "1", + "x2": "23", + "y2": "23" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.eyeOff = eyeOff; \ No newline at end of file diff --git a/dist/feather/facebook.js b/dist/feather/facebook.js new file mode 100644 index 000000000..c4c2ee44c --- /dev/null +++ b/dist/feather/facebook.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.facebook = void 0; +var facebook = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.facebook = facebook; \ No newline at end of file diff --git a/dist/feather/fastForward.js b/dist/feather/fastForward.js new file mode 100644 index 000000000..6c949f5b9 --- /dev/null +++ b/dist/feather/fastForward.js @@ -0,0 +1,30 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.fastForward = void 0; +var fastForward = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polygon", + "attribs": { + "points": "13 19 22 12 13 5 13 19" + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "points": "2 19 11 12 2 5 2 19" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.fastForward = fastForward; \ No newline at end of file diff --git a/dist/feather/feather.js b/dist/feather/feather.js new file mode 100644 index 000000000..e8da5f25f --- /dev/null +++ b/dist/feather/feather.js @@ -0,0 +1,42 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.feather = void 0; +var feather = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M20.24 12.24a6 6 0 0 0-8.49-8.49L5 10.5V19h8.5z" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "16", + "y1": "8", + "x2": "2", + "y2": "22" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "17", + "y1": "15", + "x2": "9", + "y2": "15" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.feather = feather; \ No newline at end of file diff --git a/dist/feather/file.js b/dist/feather/file.js new file mode 100644 index 000000000..6be78d315 --- /dev/null +++ b/dist/feather/file.js @@ -0,0 +1,30 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.file = void 0; +var file = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M13 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V9z" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "13 2 13 9 20 9" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.file = file; \ No newline at end of file diff --git a/dist/feather/fileMinus.js b/dist/feather/fileMinus.js new file mode 100644 index 000000000..0d63dd894 --- /dev/null +++ b/dist/feather/fileMinus.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.fileMinus = void 0; +var fileMinus = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "14 2 14 8 20 8" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "9", + "y1": "15", + "x2": "15", + "y2": "15" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.fileMinus = fileMinus; \ No newline at end of file diff --git a/dist/feather/filePlus.js b/dist/feather/filePlus.js new file mode 100644 index 000000000..416508d75 --- /dev/null +++ b/dist/feather/filePlus.js @@ -0,0 +1,48 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.filePlus = void 0; +var filePlus = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "14 2 14 8 20 8" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "18", + "x2": "12", + "y2": "12" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "9", + "y1": "15", + "x2": "15", + "y2": "15" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.filePlus = filePlus; \ No newline at end of file diff --git a/dist/feather/fileText.js b/dist/feather/fileText.js new file mode 100644 index 000000000..65ea2cb22 --- /dev/null +++ b/dist/feather/fileText.js @@ -0,0 +1,54 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.fileText = void 0; +var fileText = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "14 2 14 8 20 8" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "16", + "y1": "13", + "x2": "8", + "y2": "13" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "16", + "y1": "17", + "x2": "8", + "y2": "17" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "10 9 9 9 8 9" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.fileText = fileText; \ No newline at end of file diff --git a/dist/feather/film.js b/dist/feather/film.js new file mode 100644 index 000000000..16d366a34 --- /dev/null +++ b/dist/feather/film.js @@ -0,0 +1,92 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.film = void 0; +var film = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "x": "2", + "y": "2", + "width": "20", + "height": "20", + "rx": "2.18", + "ry": "2.18" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "7", + "y1": "2", + "x2": "7", + "y2": "22" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "17", + "y1": "2", + "x2": "17", + "y2": "22" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "2", + "y1": "12", + "x2": "22", + "y2": "12" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "2", + "y1": "7", + "x2": "7", + "y2": "7" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "2", + "y1": "17", + "x2": "7", + "y2": "17" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "17", + "y1": "17", + "x2": "22", + "y2": "17" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "17", + "y1": "7", + "x2": "22", + "y2": "7" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.film = film; \ No newline at end of file diff --git a/dist/feather/filter.js b/dist/feather/filter.js new file mode 100644 index 000000000..b6e0cfbed --- /dev/null +++ b/dist/feather/filter.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.filter = void 0; +var filter = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polygon", + "attribs": { + "points": "22 3 2 3 10 12.46 10 19 14 21 14 12.46 22 3" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.filter = filter; \ No newline at end of file diff --git a/dist/feather/flag.js b/dist/feather/flag.js new file mode 100644 index 000000000..6c972d907 --- /dev/null +++ b/dist/feather/flag.js @@ -0,0 +1,33 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.flag = void 0; +var flag = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 15s1-1 4-1 5 2 8 2 4-1 4-1V3s-1 1-4 1-5-2-8-2-4 1-4 1z" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "4", + "y1": "22", + "x2": "4", + "y2": "15" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.flag = flag; \ No newline at end of file diff --git a/dist/feather/folder.js b/dist/feather/folder.js new file mode 100644 index 000000000..f5446546f --- /dev/null +++ b/dist/feather/folder.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.folder = void 0; +var folder = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.folder = folder; \ No newline at end of file diff --git a/dist/feather/folderMinus.js b/dist/feather/folderMinus.js new file mode 100644 index 000000000..e87a8a8e0 --- /dev/null +++ b/dist/feather/folderMinus.js @@ -0,0 +1,33 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.folderMinus = void 0; +var folderMinus = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "9", + "y1": "14", + "x2": "15", + "y2": "14" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.folderMinus = folderMinus; \ No newline at end of file diff --git a/dist/feather/folderPlus.js b/dist/feather/folderPlus.js new file mode 100644 index 000000000..74bed35f2 --- /dev/null +++ b/dist/feather/folderPlus.js @@ -0,0 +1,42 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.folderPlus = void 0; +var folderPlus = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "11", + "x2": "12", + "y2": "17" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "9", + "y1": "14", + "x2": "15", + "y2": "14" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.folderPlus = folderPlus; \ No newline at end of file diff --git a/dist/feather/gift.js b/dist/feather/gift.js new file mode 100644 index 000000000..a6c6ccd1d --- /dev/null +++ b/dist/feather/gift.js @@ -0,0 +1,54 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.gift = void 0; +var gift = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "20 12 20 22 4 22 4 12" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "2", + "y": "7", + "width": "20", + "height": "5" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "22", + "x2": "12", + "y2": "7" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 7H7.5a2.5 2.5 0 0 1 0-5C11 2 12 7 12 7z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 7h4.5a2.5 2.5 0 0 0 0-5C13 2 12 7 12 7z" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.gift = gift; \ No newline at end of file diff --git a/dist/feather/gitBranch.js b/dist/feather/gitBranch.js new file mode 100644 index 000000000..a03c751a6 --- /dev/null +++ b/dist/feather/gitBranch.js @@ -0,0 +1,49 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.gitBranch = void 0; +var gitBranch = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "line", + "attribs": { + "x1": "6", + "y1": "3", + "x2": "6", + "y2": "15" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "18", + "cy": "6", + "r": "3" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "6", + "cy": "18", + "r": "3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 9a9 9 0 0 1-9 9" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.gitBranch = gitBranch; \ No newline at end of file diff --git a/dist/feather/gitCommit.js b/dist/feather/gitCommit.js new file mode 100644 index 000000000..b692ac361 --- /dev/null +++ b/dist/feather/gitCommit.js @@ -0,0 +1,44 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.gitCommit = void 0; +var gitCommit = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "4" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "1.05", + "y1": "12", + "x2": "7", + "y2": "12" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "17.01", + "y1": "12", + "x2": "22.96", + "y2": "12" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.gitCommit = gitCommit; \ No newline at end of file diff --git a/dist/feather/gitMerge.js b/dist/feather/gitMerge.js new file mode 100644 index 000000000..f9e2523e7 --- /dev/null +++ b/dist/feather/gitMerge.js @@ -0,0 +1,40 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.gitMerge = void 0; +var gitMerge = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "18", + "cy": "18", + "r": "3" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "6", + "cy": "6", + "r": "3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 21V9a9 9 0 0 0 9 9" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.gitMerge = gitMerge; \ No newline at end of file diff --git a/dist/feather/gitPullRequest.js b/dist/feather/gitPullRequest.js new file mode 100644 index 000000000..89c740730 --- /dev/null +++ b/dist/feather/gitPullRequest.js @@ -0,0 +1,49 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.gitPullRequest = void 0; +var gitPullRequest = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "18", + "cy": "18", + "r": "3" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "6", + "cy": "6", + "r": "3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 6h3a2 2 0 0 1 2 2v7" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "6", + "y1": "9", + "x2": "6", + "y2": "21" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.gitPullRequest = gitPullRequest; \ No newline at end of file diff --git a/dist/feather/github.js b/dist/feather/github.js new file mode 100644 index 000000000..9cdf0c58b --- /dev/null +++ b/dist/feather/github.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.github = void 0; +var github = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M9 19c-5 1.5-5-2.5-7-3m14 6v-3.87a3.37 3.37 0 0 0-.94-2.61c3.14-.35 6.44-1.54 6.44-7A5.44 5.44 0 0 0 20 4.77 5.07 5.07 0 0 0 19.91 1S18.73.65 16 2.48a13.38 13.38 0 0 0-7 0C6.27.65 5.09 1 5.09 1A5.07 5.07 0 0 0 5 4.77a5.44 5.44 0 0 0-1.5 3.78c0 5.42 3.3 6.61 6.44 7A3.37 3.37 0 0 0 9 18.13V22" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.github = github; \ No newline at end of file diff --git a/dist/feather/gitlab.js b/dist/feather/gitlab.js new file mode 100644 index 000000000..773de7639 --- /dev/null +++ b/dist/feather/gitlab.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.gitlab = void 0; +var gitlab = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M22.65 14.39L12 22.13 1.35 14.39a.84.84 0 0 1-.3-.94l1.22-3.78 2.44-7.51A.42.42 0 0 1 4.82 2a.43.43 0 0 1 .58 0 .42.42 0 0 1 .11.18l2.44 7.49h8.1l2.44-7.51A.42.42 0 0 1 18.6 2a.43.43 0 0 1 .58 0 .42.42 0 0 1 .11.18l2.44 7.51L23 13.45a.84.84 0 0 1-.35.94z" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.gitlab = gitlab; \ No newline at end of file diff --git a/dist/feather/globe.js b/dist/feather/globe.js new file mode 100644 index 000000000..35d96481c --- /dev/null +++ b/dist/feather/globe.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.globe = void 0; +var globe = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "10" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "2", + "y1": "12", + "x2": "22", + "y2": "12" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.globe = globe; \ No newline at end of file diff --git a/dist/feather/grid.js b/dist/feather/grid.js new file mode 100644 index 000000000..ff258a2c9 --- /dev/null +++ b/dist/feather/grid.js @@ -0,0 +1,54 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.grid = void 0; +var grid = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "x": "3", + "y": "3", + "width": "7", + "height": "7" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "14", + "y": "3", + "width": "7", + "height": "7" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "14", + "y": "14", + "width": "7", + "height": "7" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "3", + "y": "14", + "width": "7", + "height": "7" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.grid = grid; \ No newline at end of file diff --git a/dist/feather/hardDrive.js b/dist/feather/hardDrive.js new file mode 100644 index 000000000..3f4bfcb03 --- /dev/null +++ b/dist/feather/hardDrive.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.hardDrive = void 0; +var hardDrive = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "line", + "attribs": { + "x1": "22", + "y1": "12", + "x2": "2", + "y2": "12" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5.45 5.11L2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "6", + "y1": "16", + "x2": "6", + "y2": "16" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "10", + "y1": "16", + "x2": "10", + "y2": "16" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.hardDrive = hardDrive; \ No newline at end of file diff --git a/dist/feather/hash.js b/dist/feather/hash.js new file mode 100644 index 000000000..26397a575 --- /dev/null +++ b/dist/feather/hash.js @@ -0,0 +1,54 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.hash = void 0; +var hash = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "line", + "attribs": { + "x1": "4", + "y1": "9", + "x2": "20", + "y2": "9" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "4", + "y1": "15", + "x2": "20", + "y2": "15" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "10", + "y1": "3", + "x2": "8", + "y2": "21" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "16", + "y1": "3", + "x2": "14", + "y2": "21" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.hash = hash; \ No newline at end of file diff --git a/dist/feather/headphones.js b/dist/feather/headphones.js new file mode 100644 index 000000000..e279d469e --- /dev/null +++ b/dist/feather/headphones.js @@ -0,0 +1,30 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.headphones = void 0; +var headphones = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M3 18v-6a9 9 0 0 1 18 0v6" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 19a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3zM3 19a2 2 0 0 0 2 2h1a2 2 0 0 0 2-2v-3a2 2 0 0 0-2-2H3z" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.headphones = headphones; \ No newline at end of file diff --git a/dist/feather/heart.js b/dist/feather/heart.js new file mode 100644 index 000000000..282c01ebc --- /dev/null +++ b/dist/feather/heart.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.heart = void 0; +var heart = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.heart = heart; \ No newline at end of file diff --git a/dist/feather/helpCircle.js b/dist/feather/helpCircle.js new file mode 100644 index 000000000..080358195 --- /dev/null +++ b/dist/feather/helpCircle.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.helpCircle = void 0; +var helpCircle = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "10" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "17", + "x2": "12", + "y2": "17" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.helpCircle = helpCircle; \ No newline at end of file diff --git a/dist/feather/home.js b/dist/feather/home.js new file mode 100644 index 000000000..65295656d --- /dev/null +++ b/dist/feather/home.js @@ -0,0 +1,30 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.home = void 0; +var home = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "9 22 9 12 15 12 15 22" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.home = home; \ No newline at end of file diff --git a/dist/feather/image.js b/dist/feather/image.js new file mode 100644 index 000000000..2eb4b19b0 --- /dev/null +++ b/dist/feather/image.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.image = void 0; +var image = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "x": "3", + "y": "3", + "width": "18", + "height": "18", + "rx": "2", + "ry": "2" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "8.5", + "cy": "8.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "21 15 16 10 5 21" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.image = image; \ No newline at end of file diff --git a/dist/feather/inbox.js b/dist/feather/inbox.js new file mode 100644 index 000000000..94f33260f --- /dev/null +++ b/dist/feather/inbox.js @@ -0,0 +1,30 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.inbox = void 0; +var inbox = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "22 12 16 12 14 15 10 15 8 12 2 12" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5.45 5.11L2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.inbox = inbox; \ No newline at end of file diff --git a/dist/feather/index.js b/dist/feather/index.js new file mode 100644 index 000000000..bb8687c03 --- /dev/null +++ b/dist/feather/index.js @@ -0,0 +1,8715 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.filePlus = exports.fileMinus = exports.file = exports.feather = exports.fastForward = exports.facebook = exports.eyeOff = exports.eye = exports.externalLink = exports.edit3 = exports.edit2 = exports.edit = exports.droplet = exports.downloadCloud = exports.download = exports.dollarSign = exports.disc = exports.deleteIconic = exports.database = exports.crosshair = exports.crop = exports.creditCard = exports.cpu = exports.cornerUpRight = exports.cornerUpLeft = exports.cornerRightUp = exports.cornerRightDown = exports.cornerLeftUp = exports.cornerLeftDown = exports.cornerDownRight = exports.cornerDownLeft = exports.copy = exports.compass = exports.command = exports.codepen = exports.code = exports.cloudSnow = exports.cloudRain = exports.cloudOff = exports.cloudLightning = exports.cloudDrizzle = exports.cloud = exports.clock = exports.clipboard = exports.circle = exports.chrome = exports.chevronsUp = exports.chevronsRight = exports.chevronsLeft = exports.chevronsDown = exports.chevronUp = exports.chevronRight = exports.chevronLeft = exports.chevronDown = exports.checkSquare = exports.checkCircle = exports.check = exports.cast = exports.cameraOff = exports.camera = exports.calendar = exports.briefcase = exports.box = exports.bookmark = exports.bookOpen = exports.book = exports.bold = exports.bluetooth = exports.bellOff = exports.bell = exports.batteryCharging = exports.battery = exports.barChart2 = exports.barChart = exports.award = exports.atSign = exports.arrowUpRight = exports.arrowUpLeft = exports.arrowUpCircle = exports.arrowUp = exports.arrowRightCircle = exports.arrowRight = exports.arrowLeftCircle = exports.arrowLeft = exports.arrowDownRight = exports.arrowDownLeft = exports.arrowDownCircle = exports.arrowDown = exports.archive = exports.aperture = exports.anchor = exports.alignRight = exports.alignLeft = exports.alignJustify = exports.alignCenter = exports.alertTriangle = exports.alertOctagon = exports.alertCircle = exports.airplay = exports.activity = void 0; +exports.shield = exports.share2 = exports.share = exports.settings = exports.server = exports.send = exports.search = exports.scissors = exports.save = exports.rss = exports.rotateCw = exports.rotateCcw = exports.rewind = exports.repeat = exports.refreshCw = exports.refreshCcw = exports.radio = exports.printer = exports.power = exports.pocket = exports.plusSquare = exports.plusCircle = exports.plus = exports.playCircle = exports.play = exports.pieChart = exports.phoneOutgoing = exports.phoneOff = exports.phoneMissed = exports.phoneIncoming = exports.phoneForwarded = exports.phoneCall = exports.phone = exports.percent = exports.pauseCircle = exports.pause = exports.paperclip = exports.packageIcon = exports.octagon = exports.navigation2 = exports.navigation = exports.music = exports.move = exports.moreVertical = exports.moreHorizontal = exports.moon = exports.monitor = exports.minusSquare = exports.minusCircle = exports.minus = exports.minimize2 = exports.minimize = exports.micOff = exports.mic = exports.messageSquare = exports.messageCircle = exports.menu = exports.maximize2 = exports.maximize = exports.mapPin = exports.map = exports.mail = exports.logOut = exports.logIn = exports.lock = exports.loader = exports.list = exports.linkedin = exports.link2 = exports.link = exports.lifeBuoy = exports.layout = exports.layers = exports.italic = exports.instagram = exports.info = exports.inbox = exports.image = exports.home = exports.helpCircle = exports.heart = exports.headphones = exports.hash = exports.hardDrive = exports.grid = exports.globe = exports.gitlab = exports.github = exports.gitPullRequest = exports.gitMerge = exports.gitCommit = exports.gitBranch = exports.gift = exports.folderPlus = exports.folderMinus = exports.folder = exports.flag = exports.filter = exports.film = exports.fileText = void 0; +exports.zoomOut = exports.zoomIn = exports.zapOff = exports.zap = exports.youtube = exports.xSquare = exports.xCircle = exports.x = exports.wind = exports.wifiOff = exports.wifi = exports.watch = exports.volumeX = exports.volume2 = exports.volume1 = exports.volume = exports.voicemail = exports.videoOff = exports.video = exports.users = exports.userX = exports.userPlus = exports.userMinus = exports.userCheck = exports.user = exports.uploadCloud = exports.upload = exports.unlock = exports.underline = exports.umbrella = exports.type = exports.twitter = exports.tv = exports.truck = exports.triangle = exports.trendingUp = exports.trendingDown = exports.trash2 = exports.trash = exports.toggleRight = exports.toggleLeft = exports.thumbsUp = exports.thumbsDown = exports.thermometer = exports.terminal = exports.target = exports.tag = exports.tablet = exports.sunset = exports.sunrise = exports.sun = exports.stopCircle = exports.star = exports.square = exports.speaker = exports.smartphone = exports.sliders = exports.slash = exports.slack = exports.skipForward = exports.skipBack = exports.sidebar = exports.shuffle = exports.shoppingCart = exports.shoppingBag = exports.shieldOff = void 0; +var activity = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "22 12 18 12 15 21 9 3 6 12 2 12" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.activity = activity; +var airplay = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M5 17H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-1" + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "points": "12 15 17 21 7 21 12 15" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.airplay = airplay; +var alertCircle = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "10" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "8", + "x2": "12", + "y2": "12" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "16", + "x2": "12", + "y2": "16" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.alertCircle = alertCircle; +var alertOctagon = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polygon", + "attribs": { + "points": "7.86 2 16.14 2 22 7.86 22 16.14 16.14 22 7.86 22 2 16.14 2 7.86 7.86 2" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "8", + "x2": "12", + "y2": "12" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "16", + "x2": "12", + "y2": "16" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.alertOctagon = alertOctagon; +var alertTriangle = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "9", + "x2": "12", + "y2": "13" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "17", + "x2": "12", + "y2": "17" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.alertTriangle = alertTriangle; +var alignCenter = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "line", + "attribs": { + "x1": "18", + "y1": "10", + "x2": "6", + "y2": "10" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "21", + "y1": "6", + "x2": "3", + "y2": "6" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "21", + "y1": "14", + "x2": "3", + "y2": "14" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "18", + "y1": "18", + "x2": "6", + "y2": "18" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.alignCenter = alignCenter; +var alignJustify = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "line", + "attribs": { + "x1": "21", + "y1": "10", + "x2": "3", + "y2": "10" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "21", + "y1": "6", + "x2": "3", + "y2": "6" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "21", + "y1": "14", + "x2": "3", + "y2": "14" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "21", + "y1": "18", + "x2": "3", + "y2": "18" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.alignJustify = alignJustify; +var alignLeft = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "line", + "attribs": { + "x1": "17", + "y1": "10", + "x2": "3", + "y2": "10" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "21", + "y1": "6", + "x2": "3", + "y2": "6" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "21", + "y1": "14", + "x2": "3", + "y2": "14" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "17", + "y1": "18", + "x2": "3", + "y2": "18" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.alignLeft = alignLeft; +var alignRight = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "line", + "attribs": { + "x1": "21", + "y1": "10", + "x2": "7", + "y2": "10" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "21", + "y1": "6", + "x2": "3", + "y2": "6" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "21", + "y1": "14", + "x2": "3", + "y2": "14" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "21", + "y1": "18", + "x2": "7", + "y2": "18" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.alignRight = alignRight; +var anchor = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "5", + "r": "3" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "22", + "x2": "12", + "y2": "8" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 12H2a10 10 0 0 0 20 0h-3" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.anchor = anchor; +var aperture = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "10" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "14.31", + "y1": "8", + "x2": "20.05", + "y2": "17.94" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "9.69", + "y1": "8", + "x2": "21.17", + "y2": "8" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "7.38", + "y1": "12", + "x2": "13.12", + "y2": "2.06" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "9.69", + "y1": "16", + "x2": "3.95", + "y2": "6.06" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "14.31", + "y1": "16", + "x2": "2.83", + "y2": "16" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "16.62", + "y1": "12", + "x2": "10.88", + "y2": "21.94" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.aperture = aperture; +var archive = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "21 8 21 21 3 21 3 8" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "1", + "y": "3", + "width": "22", + "height": "5" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "10", + "y1": "12", + "x2": "14", + "y2": "12" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.archive = archive; +var arrowDownCircle = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "10" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "8 12 12 16 16 12" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "8", + "x2": "12", + "y2": "16" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.arrowDownCircle = arrowDownCircle; +var arrowDownLeft = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "line", + "attribs": { + "x1": "17", + "y1": "7", + "x2": "7", + "y2": "17" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "17 17 7 17 7 7" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.arrowDownLeft = arrowDownLeft; +var arrowDownRight = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "line", + "attribs": { + "x1": "7", + "y1": "7", + "x2": "17", + "y2": "17" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "17 7 17 17 7 17" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.arrowDownRight = arrowDownRight; +var arrowDown = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "line", + "attribs": { + "x1": "12", + "y1": "5", + "x2": "12", + "y2": "19" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "19 12 12 19 5 12" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.arrowDown = arrowDown; +var arrowLeftCircle = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "10" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "12 8 8 12 12 16" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "16", + "y1": "12", + "x2": "8", + "y2": "12" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.arrowLeftCircle = arrowLeftCircle; +var arrowLeft = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "line", + "attribs": { + "x1": "19", + "y1": "12", + "x2": "5", + "y2": "12" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "12 19 5 12 12 5" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.arrowLeft = arrowLeft; +var arrowRightCircle = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "10" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "12 16 16 12 12 8" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "8", + "y1": "12", + "x2": "16", + "y2": "12" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.arrowRightCircle = arrowRightCircle; +var arrowRight = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "line", + "attribs": { + "x1": "5", + "y1": "12", + "x2": "19", + "y2": "12" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "12 5 19 12 12 19" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.arrowRight = arrowRight; +var arrowUpCircle = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "10" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "16 12 12 8 8 12" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "16", + "x2": "12", + "y2": "8" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.arrowUpCircle = arrowUpCircle; +var arrowUpLeft = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "line", + "attribs": { + "x1": "17", + "y1": "17", + "x2": "7", + "y2": "7" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "7 17 7 7 17 7" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.arrowUpLeft = arrowUpLeft; +var arrowUpRight = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "line", + "attribs": { + "x1": "7", + "y1": "17", + "x2": "17", + "y2": "7" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "7 7 17 7 17 17" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.arrowUpRight = arrowUpRight; +var arrowUp = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "line", + "attribs": { + "x1": "12", + "y1": "19", + "x2": "12", + "y2": "5" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "5 12 12 5 19 12" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.arrowUp = arrowUp; +var atSign = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "4" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 8v5a3 3 0 0 0 6 0v-1a10 10 0 1 0-3.92 7.94" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.atSign = atSign; +var award = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "8", + "r": "7" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "8.21 13.89 7 23 12 20 17 23 15.79 13.88" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.award = award; +var barChart2 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "line", + "attribs": { + "x1": "18", + "y1": "20", + "x2": "18", + "y2": "10" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "20", + "x2": "12", + "y2": "4" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "6", + "y1": "20", + "x2": "6", + "y2": "14" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.barChart2 = barChart2; +var barChart = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "line", + "attribs": { + "x1": "12", + "y1": "20", + "x2": "12", + "y2": "10" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "18", + "y1": "20", + "x2": "18", + "y2": "4" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "6", + "y1": "20", + "x2": "6", + "y2": "16" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.barChart = barChart; +var batteryCharging = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M5 18H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h3.19M15 6h2a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-3.19" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "23", + "y1": "13", + "x2": "23", + "y2": "11" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "11 6 7 12 13 12 9 18" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.batteryCharging = batteryCharging; +var battery = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "6", + "width": "18", + "height": "12", + "rx": "2", + "ry": "2" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "23", + "y1": "13", + "x2": "23", + "y2": "11" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.battery = battery; +var bellOff = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M8.56 2.9A7 7 0 0 1 19 9v4m-2 4H2a3 3 0 0 0 3-3V9a7 7 0 0 1 .78-3.22M13.73 21a2 2 0 0 1-3.46 0" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "1", + "y1": "1", + "x2": "23", + "y2": "23" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.bellOff = bellOff; +var bell = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M22 17H2a3 3 0 0 0 3-3V9a7 7 0 0 1 14 0v5a3 3 0 0 0 3 3zm-8.27 4a2 2 0 0 1-3.46 0" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.bell = bell; +var bluetooth = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "6.5 6.5 17.5 17.5 12 23 12 1 17.5 6.5 6.5 17.5" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.bluetooth = bluetooth; +var bold = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M6 4h8a4 4 0 0 1 4 4 4 4 0 0 1-4 4H6z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 12h9a4 4 0 0 1 4 4 4 4 0 0 1-4 4H6z" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.bold = bold; +var bookOpen = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M2 3h6a4 4 0 0 1 4 4v14a3 3 0 0 0-3-3H2z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 3h-6a4 4 0 0 0-4 4v14a3 3 0 0 1 3-3h7z" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.bookOpen = bookOpen; +var book = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 19.5A2.5 2.5 0 0 1 6.5 17H20" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.book = book; +var bookmark = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M19 21l-7-5-7 5V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.bookmark = bookmark; +var box = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12.89 1.45l8 4A2 2 0 0 1 22 7.24v9.53a2 2 0 0 1-1.11 1.79l-8 4a2 2 0 0 1-1.79 0l-8-4a2 2 0 0 1-1.1-1.8V7.24a2 2 0 0 1 1.11-1.79l8-4a2 2 0 0 1 1.78 0z" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "2.32 6.16 12 11 21.68 6.16" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "22.76", + "x2": "12", + "y2": "11" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.box = box; +var briefcase = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "x": "2", + "y": "7", + "width": "20", + "height": "14", + "rx": "2", + "ry": "2" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 21V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.briefcase = briefcase; +var calendar = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "x": "3", + "y": "4", + "width": "18", + "height": "18", + "rx": "2", + "ry": "2" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "16", + "y1": "2", + "x2": "16", + "y2": "6" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "8", + "y1": "2", + "x2": "8", + "y2": "6" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "3", + "y1": "10", + "x2": "21", + "y2": "10" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.calendar = calendar; +var cameraOff = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "line", + "attribs": { + "x1": "1", + "y1": "1", + "x2": "23", + "y2": "23" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 21H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h3m3-3h6l2 3h4a2 2 0 0 1 2 2v9.34m-7.72-2.06a4 4 0 1 1-5.56-5.56" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.cameraOff = cameraOff; +var camera = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M23 19a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h4l2-3h6l2 3h4a2 2 0 0 1 2 2z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "13", + "r": "4" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.camera = camera; +var cast = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M2 16.1A5 5 0 0 1 5.9 20M2 12.05A9 9 0 0 1 9.95 20M2 8V6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-6" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "2", + "y1": "20", + "x2": "2", + "y2": "20" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.cast = cast; +var checkCircle = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M22 11.08V12a10 10 0 1 1-5.93-9.14" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "22 4 12 14.01 9 11.01" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.checkCircle = checkCircle; +var checkSquare = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "9 11 12 14 22 4" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 12v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.checkSquare = checkSquare; +var check = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "20 6 9 17 4 12" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.check = check; +var chevronDown = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "6 9 12 15 18 9" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.chevronDown = chevronDown; +var chevronLeft = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "15 18 9 12 15 6" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.chevronLeft = chevronLeft; +var chevronRight = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "9 18 15 12 9 6" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.chevronRight = chevronRight; +var chevronUp = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "18 15 12 9 6 15" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.chevronUp = chevronUp; +var chevronsDown = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "7 13 12 18 17 13" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "7 6 12 11 17 6" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.chevronsDown = chevronsDown; +var chevronsLeft = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "11 17 6 12 11 7" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "18 17 13 12 18 7" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.chevronsLeft = chevronsLeft; +var chevronsRight = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "13 17 18 12 13 7" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "6 17 11 12 6 7" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.chevronsRight = chevronsRight; +var chevronsUp = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "17 11 12 6 7 11" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "17 18 12 13 7 18" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.chevronsUp = chevronsUp; +var chrome = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "10" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "4" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "21.17", + "y1": "8", + "x2": "12", + "y2": "8" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "3.95", + "y1": "6.06", + "x2": "8.54", + "y2": "14" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "10.88", + "y1": "21.94", + "x2": "15.46", + "y2": "14" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.chrome = chrome; +var circle = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "10" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.circle = circle; +var clipboard = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "8", + "y": "2", + "width": "8", + "height": "4", + "rx": "1", + "ry": "1" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.clipboard = clipboard; +var clock = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "10" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "12 6 12 12 16 14" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.clock = clock; +var cloudDrizzle = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "line", + "attribs": { + "x1": "8", + "y1": "19", + "x2": "8", + "y2": "21" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "8", + "y1": "13", + "x2": "8", + "y2": "15" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "16", + "y1": "19", + "x2": "16", + "y2": "21" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "16", + "y1": "13", + "x2": "16", + "y2": "15" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "21", + "x2": "12", + "y2": "23" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "15", + "x2": "12", + "y2": "17" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 16.58A5 5 0 0 0 18 7h-1.26A8 8 0 1 0 4 15.25" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.cloudDrizzle = cloudDrizzle; +var cloudLightning = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M19 16.9A5 5 0 0 0 18 7h-1.26a8 8 0 1 0-11.62 9" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "13 11 9 17 15 17 11 23" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.cloudLightning = cloudLightning; +var cloudOff = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M22.61 16.95A5 5 0 0 0 18 10h-1.26a8 8 0 0 0-7.05-6M5 5a8 8 0 0 0 4 15h9a5 5 0 0 0 1.7-.3" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "1", + "y1": "1", + "x2": "23", + "y2": "23" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.cloudOff = cloudOff; +var cloudRain = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "line", + "attribs": { + "x1": "16", + "y1": "13", + "x2": "16", + "y2": "21" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "8", + "y1": "13", + "x2": "8", + "y2": "21" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "15", + "x2": "12", + "y2": "23" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 16.58A5 5 0 0 0 18 7h-1.26A8 8 0 1 0 4 15.25" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.cloudRain = cloudRain; +var cloudSnow = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M20 17.58A5 5 0 0 0 18 8h-1.26A8 8 0 1 0 4 16.25" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "8", + "y1": "16", + "x2": "8", + "y2": "16" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "8", + "y1": "20", + "x2": "8", + "y2": "20" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "18", + "x2": "12", + "y2": "18" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "22", + "x2": "12", + "y2": "22" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "16", + "y1": "16", + "x2": "16", + "y2": "16" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "16", + "y1": "20", + "x2": "16", + "y2": "20" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.cloudSnow = cloudSnow; +var cloud = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18 10h-1.26A8 8 0 1 0 9 20h9a5 5 0 0 0 0-10z" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.cloud = cloud; +var code = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "16 18 22 12 16 6" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "8 6 2 12 8 18" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.code = code; +var codepen = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polygon", + "attribs": { + "points": "12 2 22 8.5 22 15.5 12 22 2 15.5 2 8.5 12 2" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "22", + "x2": "12", + "y2": "15.5" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "22 8.5 12 15.5 2 8.5" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "2 15.5 12 8.5 22 15.5" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "2", + "x2": "12", + "y2": "8.5" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.codepen = codepen; +var command = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18 3a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3H6a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3V6a3 3 0 0 0-3-3 3 3 0 0 0-3 3 3 3 0 0 0 3 3h12a3 3 0 0 0 3-3 3 3 0 0 0-3-3z" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.command = command; +var compass = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "10" + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "points": "16.24 7.76 14.12 14.12 7.76 16.24 9.88 9.88 16.24 7.76" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.compass = compass; +var copy = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "x": "9", + "y": "9", + "width": "13", + "height": "13", + "rx": "2", + "ry": "2" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.copy = copy; +var cornerDownLeft = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "9 10 4 15 9 20" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 4v7a4 4 0 0 1-4 4H4" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.cornerDownLeft = cornerDownLeft; +var cornerDownRight = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "15 10 20 15 15 20" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 4v7a4 4 0 0 0 4 4h12" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.cornerDownRight = cornerDownRight; +var cornerLeftDown = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "14 15 9 20 4 15" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 4h-7a4 4 0 0 0-4 4v12" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.cornerLeftDown = cornerLeftDown; +var cornerLeftUp = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "14 9 9 4 4 9" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 20h-7a4 4 0 0 1-4-4V4" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.cornerLeftUp = cornerLeftUp; +var cornerRightDown = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "10 15 15 20 20 15" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 4h7a4 4 0 0 1 4 4v12" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.cornerRightDown = cornerRightDown; +var cornerRightUp = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "10 9 15 4 20 9" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 20h7a4 4 0 0 0 4-4V4" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.cornerRightUp = cornerRightUp; +var cornerUpLeft = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "9 14 4 9 9 4" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 20v-7a4 4 0 0 0-4-4H4" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.cornerUpLeft = cornerUpLeft; +var cornerUpRight = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "15 14 20 9 15 4" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 20v-7a4 4 0 0 1 4-4h12" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.cornerUpRight = cornerUpRight; +var cpu = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "x": "4", + "y": "4", + "width": "16", + "height": "16", + "rx": "2", + "ry": "2" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "9", + "y": "9", + "width": "6", + "height": "6" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "9", + "y1": "1", + "x2": "9", + "y2": "4" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "15", + "y1": "1", + "x2": "15", + "y2": "4" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "9", + "y1": "20", + "x2": "9", + "y2": "23" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "15", + "y1": "20", + "x2": "15", + "y2": "23" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "20", + "y1": "9", + "x2": "23", + "y2": "9" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "20", + "y1": "14", + "x2": "23", + "y2": "14" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "1", + "y1": "9", + "x2": "4", + "y2": "9" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "1", + "y1": "14", + "x2": "4", + "y2": "14" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.cpu = cpu; +var creditCard = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "4", + "width": "22", + "height": "16", + "rx": "2", + "ry": "2" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "1", + "y1": "10", + "x2": "23", + "y2": "10" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.creditCard = creditCard; +var crop = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M6.13 1L6 16a2 2 0 0 0 2 2h15" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M1 6.13L16 6a2 2 0 0 1 2 2v15" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.crop = crop; +var crosshair = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "10" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "22", + "y1": "12", + "x2": "18", + "y2": "12" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "6", + "y1": "12", + "x2": "2", + "y2": "12" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "6", + "x2": "12", + "y2": "2" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "22", + "x2": "12", + "y2": "18" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.crosshair = crosshair; +var database = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "ellipse", + "attribs": { + "cx": "12", + "cy": "5", + "rx": "9", + "ry": "3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 12c0 1.66-4 3-9 3s-9-1.34-9-3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 5v14c0 1.66 4 3 9 3s9-1.34 9-3V5" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.database = database; +var deleteIconic = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M21 4H8l-7 8 7 8h13a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2z" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "18", + "y1": "9", + "x2": "12", + "y2": "15" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "9", + "x2": "18", + "y2": "15" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.deleteIconic = deleteIconic; +var disc = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "10" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "3" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.disc = disc; +var dollarSign = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "line", + "attribs": { + "x1": "12", + "y1": "1", + "x2": "12", + "y2": "23" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.dollarSign = dollarSign; +var downloadCloud = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "8 17 12 21 16 17" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "12", + "x2": "12", + "y2": "21" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20.88 18.09A5 5 0 0 0 18 9h-1.26A8 8 0 1 0 3 16.29" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.downloadCloud = downloadCloud; +var download = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "7 10 12 15 17 10" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "15", + "x2": "12", + "y2": "3" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.download = download; +var droplet = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 2.69l5.66 5.66a8 8 0 1 1-11.31 0z" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.droplet = droplet; +var edit2 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polygon", + "attribs": { + "points": "16 3 21 8 8 21 3 21 3 16 16 3" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.edit2 = edit2; +var edit3 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polygon", + "attribs": { + "points": "14 2 18 6 7 17 3 17 3 13 14 2" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "3", + "y1": "22", + "x2": "21", + "y2": "22" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.edit3 = edit3; +var edit = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M20 14.66V20a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h5.34" + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "points": "18 2 22 6 12 16 8 16 8 12 18 2" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.edit = edit; +var externalLink = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "15 3 21 3 21 9" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "10", + "y1": "14", + "x2": "21", + "y2": "3" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.externalLink = externalLink; +var eyeOff = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M17.94 17.94A10.07 10.07 0 0 1 12 20c-7 0-11-8-11-8a18.45 18.45 0 0 1 5.06-5.94M9.9 4.24A9.12 9.12 0 0 1 12 4c7 0 11 8 11 8a18.5 18.5 0 0 1-2.16 3.19m-6.72-1.07a3 3 0 1 1-4.24-4.24" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "1", + "y1": "1", + "x2": "23", + "y2": "23" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.eyeOff = eyeOff; +var eye = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "3" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.eye = eye; +var facebook = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.facebook = facebook; +var fastForward = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polygon", + "attribs": { + "points": "13 19 22 12 13 5 13 19" + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "points": "2 19 11 12 2 5 2 19" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.fastForward = fastForward; +var feather = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M20.24 12.24a6 6 0 0 0-8.49-8.49L5 10.5V19h8.5z" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "16", + "y1": "8", + "x2": "2", + "y2": "22" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "17", + "y1": "15", + "x2": "9", + "y2": "15" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.feather = feather; +var fileMinus = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "14 2 14 8 20 8" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "9", + "y1": "15", + "x2": "15", + "y2": "15" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.fileMinus = fileMinus; +var filePlus = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "14 2 14 8 20 8" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "18", + "x2": "12", + "y2": "12" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "9", + "y1": "15", + "x2": "15", + "y2": "15" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.filePlus = filePlus; +var fileText = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "14 2 14 8 20 8" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "16", + "y1": "13", + "x2": "8", + "y2": "13" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "16", + "y1": "17", + "x2": "8", + "y2": "17" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "10 9 9 9 8 9" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.fileText = fileText; +var file = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M13 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V9z" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "13 2 13 9 20 9" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.file = file; +var film = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "x": "2", + "y": "2", + "width": "20", + "height": "20", + "rx": "2.18", + "ry": "2.18" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "7", + "y1": "2", + "x2": "7", + "y2": "22" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "17", + "y1": "2", + "x2": "17", + "y2": "22" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "2", + "y1": "12", + "x2": "22", + "y2": "12" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "2", + "y1": "7", + "x2": "7", + "y2": "7" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "2", + "y1": "17", + "x2": "7", + "y2": "17" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "17", + "y1": "17", + "x2": "22", + "y2": "17" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "17", + "y1": "7", + "x2": "22", + "y2": "7" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.film = film; +var filter = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polygon", + "attribs": { + "points": "22 3 2 3 10 12.46 10 19 14 21 14 12.46 22 3" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.filter = filter; +var flag = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 15s1-1 4-1 5 2 8 2 4-1 4-1V3s-1 1-4 1-5-2-8-2-4 1-4 1z" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "4", + "y1": "22", + "x2": "4", + "y2": "15" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.flag = flag; +var folderMinus = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "9", + "y1": "14", + "x2": "15", + "y2": "14" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.folderMinus = folderMinus; +var folderPlus = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "11", + "x2": "12", + "y2": "17" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "9", + "y1": "14", + "x2": "15", + "y2": "14" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.folderPlus = folderPlus; +var folder = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.folder = folder; +var gift = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "20 12 20 22 4 22 4 12" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "2", + "y": "7", + "width": "20", + "height": "5" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "22", + "x2": "12", + "y2": "7" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 7H7.5a2.5 2.5 0 0 1 0-5C11 2 12 7 12 7z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 7h4.5a2.5 2.5 0 0 0 0-5C13 2 12 7 12 7z" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.gift = gift; +var gitBranch = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "line", + "attribs": { + "x1": "6", + "y1": "3", + "x2": "6", + "y2": "15" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "18", + "cy": "6", + "r": "3" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "6", + "cy": "18", + "r": "3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 9a9 9 0 0 1-9 9" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.gitBranch = gitBranch; +var gitCommit = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "4" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "1.05", + "y1": "12", + "x2": "7", + "y2": "12" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "17.01", + "y1": "12", + "x2": "22.96", + "y2": "12" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.gitCommit = gitCommit; +var gitMerge = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "18", + "cy": "18", + "r": "3" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "6", + "cy": "6", + "r": "3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 21V9a9 9 0 0 0 9 9" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.gitMerge = gitMerge; +var gitPullRequest = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "18", + "cy": "18", + "r": "3" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "6", + "cy": "6", + "r": "3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 6h3a2 2 0 0 1 2 2v7" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "6", + "y1": "9", + "x2": "6", + "y2": "21" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.gitPullRequest = gitPullRequest; +var github = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M9 19c-5 1.5-5-2.5-7-3m14 6v-3.87a3.37 3.37 0 0 0-.94-2.61c3.14-.35 6.44-1.54 6.44-7A5.44 5.44 0 0 0 20 4.77 5.07 5.07 0 0 0 19.91 1S18.73.65 16 2.48a13.38 13.38 0 0 0-7 0C6.27.65 5.09 1 5.09 1A5.07 5.07 0 0 0 5 4.77a5.44 5.44 0 0 0-1.5 3.78c0 5.42 3.3 6.61 6.44 7A3.37 3.37 0 0 0 9 18.13V22" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.github = github; +var gitlab = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M22.65 14.39L12 22.13 1.35 14.39a.84.84 0 0 1-.3-.94l1.22-3.78 2.44-7.51A.42.42 0 0 1 4.82 2a.43.43 0 0 1 .58 0 .42.42 0 0 1 .11.18l2.44 7.49h8.1l2.44-7.51A.42.42 0 0 1 18.6 2a.43.43 0 0 1 .58 0 .42.42 0 0 1 .11.18l2.44 7.51L23 13.45a.84.84 0 0 1-.35.94z" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.gitlab = gitlab; +var globe = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "10" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "2", + "y1": "12", + "x2": "22", + "y2": "12" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.globe = globe; +var grid = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "x": "3", + "y": "3", + "width": "7", + "height": "7" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "14", + "y": "3", + "width": "7", + "height": "7" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "14", + "y": "14", + "width": "7", + "height": "7" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "3", + "y": "14", + "width": "7", + "height": "7" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.grid = grid; +var hardDrive = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "line", + "attribs": { + "x1": "22", + "y1": "12", + "x2": "2", + "y2": "12" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5.45 5.11L2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "6", + "y1": "16", + "x2": "6", + "y2": "16" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "10", + "y1": "16", + "x2": "10", + "y2": "16" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.hardDrive = hardDrive; +var hash = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "line", + "attribs": { + "x1": "4", + "y1": "9", + "x2": "20", + "y2": "9" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "4", + "y1": "15", + "x2": "20", + "y2": "15" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "10", + "y1": "3", + "x2": "8", + "y2": "21" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "16", + "y1": "3", + "x2": "14", + "y2": "21" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.hash = hash; +var headphones = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M3 18v-6a9 9 0 0 1 18 0v6" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 19a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3zM3 19a2 2 0 0 0 2 2h1a2 2 0 0 0 2-2v-3a2 2 0 0 0-2-2H3z" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.headphones = headphones; +var heart = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.heart = heart; +var helpCircle = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "10" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "17", + "x2": "12", + "y2": "17" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.helpCircle = helpCircle; +var home = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "9 22 9 12 15 12 15 22" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.home = home; +var image = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "x": "3", + "y": "3", + "width": "18", + "height": "18", + "rx": "2", + "ry": "2" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "8.5", + "cy": "8.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "21 15 16 10 5 21" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.image = image; +var inbox = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "22 12 16 12 14 15 10 15 8 12 2 12" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5.45 5.11L2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.inbox = inbox; +var info = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "10" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "16", + "x2": "12", + "y2": "12" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "8", + "x2": "12", + "y2": "8" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.info = info; +var instagram = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "x": "2", + "y": "2", + "width": "20", + "height": "20", + "rx": "5", + "ry": "5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "17.5", + "y1": "6.5", + "x2": "17.5", + "y2": "6.5" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.instagram = instagram; +var italic = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "line", + "attribs": { + "x1": "19", + "y1": "4", + "x2": "10", + "y2": "4" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "14", + "y1": "20", + "x2": "5", + "y2": "20" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "15", + "y1": "4", + "x2": "9", + "y2": "20" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.italic = italic; +var layers = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polygon", + "attribs": { + "points": "12 2 2 7 12 12 22 7 12 2" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "2 17 12 22 22 17" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "2 12 12 17 22 12" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.layers = layers; +var layout = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "x": "3", + "y": "3", + "width": "18", + "height": "18", + "rx": "2", + "ry": "2" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "3", + "y1": "9", + "x2": "21", + "y2": "9" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "9", + "y1": "21", + "x2": "9", + "y2": "9" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.layout = layout; +var lifeBuoy = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "10" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "4" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "4.93", + "y1": "4.93", + "x2": "9.17", + "y2": "9.17" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "14.83", + "y1": "14.83", + "x2": "19.07", + "y2": "19.07" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "14.83", + "y1": "9.17", + "x2": "19.07", + "y2": "4.93" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "14.83", + "y1": "9.17", + "x2": "18.36", + "y2": "5.64" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "4.93", + "y1": "19.07", + "x2": "9.17", + "y2": "14.83" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.lifeBuoy = lifeBuoy; +var link2 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M15 7h3a5 5 0 0 1 5 5 5 5 0 0 1-5 5h-3m-6 0H6a5 5 0 0 1-5-5 5 5 0 0 1 5-5h3" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "8", + "y1": "12", + "x2": "16", + "y2": "12" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.link2 = link2; +var link = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.link = link; +var linkedin = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "2", + "y": "9", + "width": "4", + "height": "12" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "4", + "cy": "4", + "r": "2" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.linkedin = linkedin; +var list = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "line", + "attribs": { + "x1": "8", + "y1": "6", + "x2": "21", + "y2": "6" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "8", + "y1": "12", + "x2": "21", + "y2": "12" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "8", + "y1": "18", + "x2": "21", + "y2": "18" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "3", + "y1": "6", + "x2": "3", + "y2": "6" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "3", + "y1": "12", + "x2": "3", + "y2": "12" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "3", + "y1": "18", + "x2": "3", + "y2": "18" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.list = list; +var loader = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "line", + "attribs": { + "x1": "12", + "y1": "2", + "x2": "12", + "y2": "6" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "18", + "x2": "12", + "y2": "22" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "4.93", + "y1": "4.93", + "x2": "7.76", + "y2": "7.76" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "16.24", + "y1": "16.24", + "x2": "19.07", + "y2": "19.07" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "2", + "y1": "12", + "x2": "6", + "y2": "12" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "18", + "y1": "12", + "x2": "22", + "y2": "12" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "4.93", + "y1": "19.07", + "x2": "7.76", + "y2": "16.24" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "16.24", + "y1": "7.76", + "x2": "19.07", + "y2": "4.93" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.loader = loader; +var lock = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "x": "3", + "y": "11", + "width": "18", + "height": "11", + "rx": "2", + "ry": "2" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 11V7a5 5 0 0 1 10 0v4" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.lock = lock; +var logIn = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "10 17 15 12 10 7" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "15", + "y1": "12", + "x2": "3", + "y2": "12" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.logIn = logIn; +var logOut = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "16 17 21 12 16 7" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "21", + "y1": "12", + "x2": "9", + "y2": "12" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.logOut = logOut; +var mail = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "22,6 12,13 2,6" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.mail = mail; +var mapPin = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "10", + "r": "3" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.mapPin = mapPin; +var map = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polygon", + "attribs": { + "points": "1 6 1 22 8 18 16 22 23 18 23 2 16 6 8 2 1 6" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "8", + "y1": "2", + "x2": "8", + "y2": "18" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "16", + "y1": "6", + "x2": "16", + "y2": "22" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.map = map; +var maximize2 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "15 3 21 3 21 9" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "9 21 3 21 3 15" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "21", + "y1": "3", + "x2": "14", + "y2": "10" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "3", + "y1": "21", + "x2": "10", + "y2": "14" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.maximize2 = maximize2; +var maximize = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M8 3H5a2 2 0 0 0-2 2v3m18 0V5a2 2 0 0 0-2-2h-3m0 18h3a2 2 0 0 0 2-2v-3M3 16v3a2 2 0 0 0 2 2h3" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.maximize = maximize; +var menu = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "line", + "attribs": { + "x1": "3", + "y1": "12", + "x2": "21", + "y2": "12" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "3", + "y1": "6", + "x2": "21", + "y2": "6" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "3", + "y1": "18", + "x2": "21", + "y2": "18" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.menu = menu; +var messageCircle = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.38 8.38 0 0 1 3.8-.9h.5a8.48 8.48 0 0 1 8 8v.5z" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.messageCircle = messageCircle; +var messageSquare = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.messageSquare = messageSquare; +var micOff = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "line", + "attribs": { + "x1": "1", + "y1": "1", + "x2": "23", + "y2": "23" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 9v3a3 3 0 0 0 5.12 2.12M15 9.34V4a3 3 0 0 0-5.94-.6" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 16.95A7 7 0 0 1 5 12v-2m14 0v2a7 7 0 0 1-.11 1.23" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "19", + "x2": "12", + "y2": "23" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "8", + "y1": "23", + "x2": "16", + "y2": "23" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.micOff = micOff; +var mic = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 1a3 3 0 0 0-3 3v8a3 3 0 0 0 6 0V4a3 3 0 0 0-3-3z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 10v2a7 7 0 0 1-14 0v-2" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "19", + "x2": "12", + "y2": "23" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "8", + "y1": "23", + "x2": "16", + "y2": "23" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.mic = mic; +var minimize2 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "4 14 10 14 10 20" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "20 10 14 10 14 4" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "14", + "y1": "10", + "x2": "21", + "y2": "3" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "3", + "y1": "21", + "x2": "10", + "y2": "14" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.minimize2 = minimize2; +var minimize = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M8 3v3a2 2 0 0 1-2 2H3m18 0h-3a2 2 0 0 1-2-2V3m0 18v-3a2 2 0 0 1 2-2h3M3 16h3a2 2 0 0 1 2 2v3" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.minimize = minimize; +var minusCircle = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "10" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "8", + "y1": "12", + "x2": "16", + "y2": "12" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.minusCircle = minusCircle; +var minusSquare = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "x": "3", + "y": "3", + "width": "18", + "height": "18", + "rx": "2", + "ry": "2" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "8", + "y1": "12", + "x2": "16", + "y2": "12" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.minusSquare = minusSquare; +var minus = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "line", + "attribs": { + "x1": "5", + "y1": "12", + "x2": "19", + "y2": "12" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.minus = minus; +var monitor = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "x": "2", + "y": "3", + "width": "20", + "height": "14", + "rx": "2", + "ry": "2" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "8", + "y1": "21", + "x2": "16", + "y2": "21" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "17", + "x2": "12", + "y2": "21" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.monitor = monitor; +var moon = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.moon = moon; +var moreHorizontal = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "1" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "19", + "cy": "12", + "r": "1" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "5", + "cy": "12", + "r": "1" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.moreHorizontal = moreHorizontal; +var moreVertical = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "1" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "5", + "r": "1" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "19", + "r": "1" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.moreVertical = moreVertical; +var move = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "5 9 2 12 5 15" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "9 5 12 2 15 5" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "15 19 12 22 9 19" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "19 9 22 12 19 15" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "2", + "y1": "12", + "x2": "22", + "y2": "12" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "2", + "x2": "12", + "y2": "22" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.move = move; +var music = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M9 17H5a2 2 0 0 0-2 2 2 2 0 0 0 2 2h2a2 2 0 0 0 2-2zm12-2h-4a2 2 0 0 0-2 2 2 2 0 0 0 2 2h2a2 2 0 0 0 2-2z" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "9 17 9 5 21 3 21 15" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.music = music; +var navigation2 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polygon", + "attribs": { + "points": "12 2 19 21 12 17 5 21 12 2" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.navigation2 = navigation2; +var navigation = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polygon", + "attribs": { + "points": "3 11 22 2 13 21 11 13 3 11" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.navigation = navigation; +var octagon = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polygon", + "attribs": { + "points": "7.86 2 16.14 2 22 7.86 22 16.14 16.14 22 7.86 22 2 16.14 2 7.86 7.86 2" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.octagon = octagon; +var packageIcon = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12.89 1.45l8 4A2 2 0 0 1 22 7.24v9.53a2 2 0 0 1-1.11 1.79l-8 4a2 2 0 0 1-1.79 0l-8-4a2 2 0 0 1-1.1-1.8V7.24a2 2 0 0 1 1.11-1.79l8-4a2 2 0 0 1 1.78 0z" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "2.32 6.16 12 11 21.68 6.16" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "22.76", + "x2": "12", + "y2": "11" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "7", + "y1": "3.5", + "x2": "17", + "y2": "8.5" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.packageIcon = packageIcon; +var paperclip = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M21.44 11.05l-9.19 9.19a6 6 0 0 1-8.49-8.49l9.19-9.19a4 4 0 0 1 5.66 5.66l-9.2 9.19a2 2 0 0 1-2.83-2.83l8.49-8.48" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.paperclip = paperclip; +var pauseCircle = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "10" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "10", + "y1": "15", + "x2": "10", + "y2": "9" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "14", + "y1": "15", + "x2": "14", + "y2": "9" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.pauseCircle = pauseCircle; +var pause = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "x": "6", + "y": "4", + "width": "4", + "height": "16" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "14", + "y": "4", + "width": "4", + "height": "16" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.pause = pause; +var percent = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "line", + "attribs": { + "x1": "19", + "y1": "5", + "x2": "5", + "y2": "19" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "6.5", + "cy": "6.5", + "r": "2.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "17.5", + "cy": "17.5", + "r": "2.5" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.percent = percent; +var phoneCall = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M15.05 5A5 5 0 0 1 19 8.95M15.05 1A9 9 0 0 1 23 8.94m-1 7.98v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.phoneCall = phoneCall; +var phoneForwarded = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "19 1 23 5 19 9" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "15", + "y1": "5", + "x2": "23", + "y2": "5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.phoneForwarded = phoneForwarded; +var phoneIncoming = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "16 2 16 8 22 8" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "23", + "y1": "1", + "x2": "16", + "y2": "8" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.phoneIncoming = phoneIncoming; +var phoneMissed = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "line", + "attribs": { + "x1": "23", + "y1": "1", + "x2": "17", + "y2": "7" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "17", + "y1": "1", + "x2": "23", + "y2": "7" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.phoneMissed = phoneMissed; +var phoneOff = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M10.68 13.31a16 16 0 0 0 3.41 2.6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7 2 2 0 0 1 1.72 2v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.42 19.42 0 0 1-3.33-2.67m-2.67-3.34a19.79 19.79 0 0 1-3.07-8.63A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "23", + "y1": "1", + "x2": "1", + "y2": "23" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.phoneOff = phoneOff; +var phoneOutgoing = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "23 7 23 1 17 1" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "16", + "y1": "8", + "x2": "23", + "y2": "1" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.phoneOutgoing = phoneOutgoing; +var phone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.phone = phone; +var pieChart = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M21.21 15.89A10 10 0 1 1 8 2.83" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 12A10 10 0 0 0 12 2v10z" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.pieChart = pieChart; +var playCircle = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "10" + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "points": "10 8 16 12 10 16 10 8" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.playCircle = playCircle; +var play = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polygon", + "attribs": { + "points": "5 3 19 12 5 21 5 3" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.play = play; +var plusCircle = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "10" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "8", + "x2": "12", + "y2": "16" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "8", + "y1": "12", + "x2": "16", + "y2": "12" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.plusCircle = plusCircle; +var plusSquare = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "x": "3", + "y": "3", + "width": "18", + "height": "18", + "rx": "2", + "ry": "2" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "8", + "x2": "12", + "y2": "16" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "8", + "y1": "12", + "x2": "16", + "y2": "12" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.plusSquare = plusSquare; +var plus = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "line", + "attribs": { + "x1": "12", + "y1": "5", + "x2": "12", + "y2": "19" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "5", + "y1": "12", + "x2": "19", + "y2": "12" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.plus = plus; +var pocket = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 3h16a2 2 0 0 1 2 2v6a10 10 0 0 1-10 10A10 10 0 0 1 2 11V5a2 2 0 0 1 2-2z" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "8 10 12 14 16 10" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.pocket = pocket; +var power = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.36 6.64a9 9 0 1 1-12.73 0" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "2", + "x2": "12", + "y2": "12" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.power = power; +var printer = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "6 9 6 2 18 2 18 9" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "6", + "y": "14", + "width": "12", + "height": "8" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.printer = printer; +var radio = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "2" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16.24 7.76a6 6 0 0 1 0 8.49m-8.48-.01a6 6 0 0 1 0-8.49m11.31-2.82a10 10 0 0 1 0 14.14m-14.14 0a10 10 0 0 1 0-14.14" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.radio = radio; +var refreshCcw = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "1 4 1 10 7 10" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "23 20 23 14 17 14" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20.49 9A9 9 0 0 0 5.64 5.64L1 10m22 4l-4.64 4.36A9 9 0 0 1 3.51 15" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.refreshCcw = refreshCcw; +var refreshCw = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "23 4 23 10 17 10" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "1 20 1 14 7 14" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3.51 9a9 9 0 0 1 14.85-3.36L23 10M1 14l4.64 4.36A9 9 0 0 0 20.49 15" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.refreshCw = refreshCw; +var repeat = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "17 1 21 5 17 9" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 11V9a4 4 0 0 1 4-4h14" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "7 23 3 19 7 15" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 13v2a4 4 0 0 1-4 4H3" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.repeat = repeat; +var rewind = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polygon", + "attribs": { + "points": "11 19 2 12 11 5 11 19" + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "points": "22 19 13 12 22 5 22 19" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.rewind = rewind; +var rotateCcw = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "1 4 1 10 7 10" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3.51 15a9 9 0 1 0 2.13-9.36L1 10" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.rotateCcw = rotateCcw; +var rotateCw = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "23 4 23 10 17 10" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20.49 15a9 9 0 1 1-2.12-9.36L23 10" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.rotateCw = rotateCw; +var rss = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 11a9 9 0 0 1 9 9" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 4a16 16 0 0 1 16 16" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "5", + "cy": "19", + "r": "1" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.rss = rss; +var save = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M19 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11l5 5v11a2 2 0 0 1-2 2z" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "17 21 17 13 7 13 7 21" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "7 3 7 8 15 8" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.save = save; +var scissors = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "6", + "cy": "6", + "r": "3" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "6", + "cy": "18", + "r": "3" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "20", + "y1": "4", + "x2": "8.12", + "y2": "15.88" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "14.47", + "y1": "14.48", + "x2": "20", + "y2": "20" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "8.12", + "y1": "8.12", + "x2": "12", + "y2": "12" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.scissors = scissors; +var search = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "11", + "cy": "11", + "r": "8" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "21", + "y1": "21", + "x2": "16.65", + "y2": "16.65" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.search = search; +var send = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "line", + "attribs": { + "x1": "22", + "y1": "2", + "x2": "11", + "y2": "13" + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "points": "22 2 15 22 11 13 2 9 22 2" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.send = send; +var server = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "x": "2", + "y": "2", + "width": "20", + "height": "8", + "rx": "2", + "ry": "2" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "2", + "y": "14", + "width": "20", + "height": "8", + "rx": "2", + "ry": "2" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "6", + "y1": "6", + "x2": "6", + "y2": "6" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "6", + "y1": "18", + "x2": "6", + "y2": "18" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.server = server; +var settings = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1z" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.settings = settings; +var share2 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "18", + "cy": "5", + "r": "3" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "6", + "cy": "12", + "r": "3" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "18", + "cy": "19", + "r": "3" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "8.59", + "y1": "13.51", + "x2": "15.42", + "y2": "17.49" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "15.41", + "y1": "6.51", + "x2": "8.59", + "y2": "10.49" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.share2 = share2; +var share = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "16 6 12 2 8 6" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "2", + "x2": "12", + "y2": "15" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.share = share; +var shieldOff = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M19.69 14a6.9 6.9 0 0 0 .31-2V5l-8-3-3.16 1.18" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4.73 4.73L4 5v7c0 6 8 10 8 10a20.29 20.29 0 0 0 5.62-4.38" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "1", + "y1": "1", + "x2": "23", + "y2": "23" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.shieldOff = shieldOff; +var shield = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.shield = shield; +var shoppingBag = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M6 2L3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4z" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "3", + "y1": "6", + "x2": "21", + "y2": "6" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 10a4 4 0 0 1-8 0" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.shoppingBag = shoppingBag; +var shoppingCart = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "9", + "cy": "21", + "r": "1" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "20", + "cy": "21", + "r": "1" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.shoppingCart = shoppingCart; +var shuffle = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "16 3 21 3 21 8" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "4", + "y1": "20", + "x2": "21", + "y2": "3" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "21 16 21 21 16 21" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "15", + "y1": "15", + "x2": "21", + "y2": "21" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "4", + "y1": "4", + "x2": "9", + "y2": "9" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.shuffle = shuffle; +var sidebar = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "x": "3", + "y": "3", + "width": "18", + "height": "18", + "rx": "2", + "ry": "2" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "9", + "y1": "3", + "x2": "9", + "y2": "21" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.sidebar = sidebar; +var skipBack = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polygon", + "attribs": { + "points": "19 20 9 12 19 4 19 20" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "5", + "y1": "19", + "x2": "5", + "y2": "5" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.skipBack = skipBack; +var skipForward = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polygon", + "attribs": { + "points": "5 4 15 12 5 20 5 4" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "19", + "y1": "5", + "x2": "19", + "y2": "19" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.skipForward = skipForward; +var slack = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M22.08 9C19.81 1.41 16.54-.35 9 1.92S-.35 7.46 1.92 15 7.46 24.35 15 22.08 24.35 16.54 22.08 9z" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12.57", + "y1": "5.99", + "x2": "16.15", + "y2": "16.39" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "7.85", + "y1": "7.61", + "x2": "11.43", + "y2": "18.01" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "16.39", + "y1": "7.85", + "x2": "5.99", + "y2": "11.43" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "18.01", + "y1": "12.57", + "x2": "7.61", + "y2": "16.15" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.slack = slack; +var slash = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "10" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "4.93", + "y1": "4.93", + "x2": "19.07", + "y2": "19.07" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.slash = slash; +var sliders = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "line", + "attribs": { + "x1": "4", + "y1": "21", + "x2": "4", + "y2": "14" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "4", + "y1": "10", + "x2": "4", + "y2": "3" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "21", + "x2": "12", + "y2": "12" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "8", + "x2": "12", + "y2": "3" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "20", + "y1": "21", + "x2": "20", + "y2": "16" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "20", + "y1": "12", + "x2": "20", + "y2": "3" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "1", + "y1": "14", + "x2": "7", + "y2": "14" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "9", + "y1": "8", + "x2": "15", + "y2": "8" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "17", + "y1": "16", + "x2": "23", + "y2": "16" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.sliders = sliders; +var smartphone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "x": "5", + "y": "2", + "width": "14", + "height": "20", + "rx": "2", + "ry": "2" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "18", + "x2": "12", + "y2": "18" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.smartphone = smartphone; +var speaker = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "x": "4", + "y": "2", + "width": "16", + "height": "20", + "rx": "2", + "ry": "2" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "14", + "r": "4" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "6", + "x2": "12", + "y2": "6" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.speaker = speaker; +var square = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "x": "3", + "y": "3", + "width": "18", + "height": "18", + "rx": "2", + "ry": "2" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.square = square; +var star = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polygon", + "attribs": { + "points": "12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.star = star; +var stopCircle = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "10" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "9", + "y": "9", + "width": "6", + "height": "6" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.stopCircle = stopCircle; +var sun = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "5" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "1", + "x2": "12", + "y2": "3" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "21", + "x2": "12", + "y2": "23" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "4.22", + "y1": "4.22", + "x2": "5.64", + "y2": "5.64" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "18.36", + "y1": "18.36", + "x2": "19.78", + "y2": "19.78" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "1", + "y1": "12", + "x2": "3", + "y2": "12" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "21", + "y1": "12", + "x2": "23", + "y2": "12" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "4.22", + "y1": "19.78", + "x2": "5.64", + "y2": "18.36" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "18.36", + "y1": "5.64", + "x2": "19.78", + "y2": "4.22" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.sun = sun; +var sunrise = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M17 18a5 5 0 0 0-10 0" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "2", + "x2": "12", + "y2": "9" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "4.22", + "y1": "10.22", + "x2": "5.64", + "y2": "11.64" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "1", + "y1": "18", + "x2": "3", + "y2": "18" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "21", + "y1": "18", + "x2": "23", + "y2": "18" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "18.36", + "y1": "11.64", + "x2": "19.78", + "y2": "10.22" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "23", + "y1": "22", + "x2": "1", + "y2": "22" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "8 6 12 2 16 6" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.sunrise = sunrise; +var sunset = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M17 18a5 5 0 0 0-10 0" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "9", + "x2": "12", + "y2": "2" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "4.22", + "y1": "10.22", + "x2": "5.64", + "y2": "11.64" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "1", + "y1": "18", + "x2": "3", + "y2": "18" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "21", + "y1": "18", + "x2": "23", + "y2": "18" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "18.36", + "y1": "11.64", + "x2": "19.78", + "y2": "10.22" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "23", + "y1": "22", + "x2": "1", + "y2": "22" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "16 5 12 9 8 5" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.sunset = sunset; +var tablet = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "x": "4", + "y": "2", + "width": "16", + "height": "20", + "rx": "2", + "ry": "2", + "transform": "rotate(180 12 12)" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "18", + "x2": "12", + "y2": "18" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.tablet = tablet; +var tag = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M20.59 13.41l-7.17 7.17a2 2 0 0 1-2.83 0L2 12V2h10l8.59 8.59a2 2 0 0 1 0 2.82z" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "7", + "y1": "7", + "x2": "7", + "y2": "7" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.tag = tag; +var target = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "10" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "6" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "2" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.target = target; +var terminal = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "4 17 10 11 4 5" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "19", + "x2": "20", + "y2": "19" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.terminal = terminal; +var thermometer = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M14 14.76V3.5a2.5 2.5 0 0 0-5 0v11.26a4.5 4.5 0 1 0 5 0z" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.thermometer = thermometer; +var thumbsDown = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M10 15v4a3 3 0 0 0 3 3l4-9V2H5.72a2 2 0 0 0-2 1.7l-1.38 9a2 2 0 0 0 2 2.3zm7-13h2.67A2.31 2.31 0 0 1 22 4v7a2.31 2.31 0 0 1-2.33 2H17" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.thumbsDown = thumbsDown; +var thumbsUp = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M14 9V5a3 3 0 0 0-3-3l-4 9v11h11.28a2 2 0 0 0 2-1.7l1.38-9a2 2 0 0 0-2-2.3zM7 22H4a2 2 0 0 1-2-2v-7a2 2 0 0 1 2-2h3" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.thumbsUp = thumbsUp; +var toggleLeft = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "5", + "width": "22", + "height": "14", + "rx": "7", + "ry": "7" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "8", + "cy": "12", + "r": "3" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.toggleLeft = toggleLeft; +var toggleRight = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "5", + "width": "22", + "height": "14", + "rx": "7", + "ry": "7" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "16", + "cy": "12", + "r": "3" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.toggleRight = toggleRight; +var trash2 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "3 6 5 6 21 6" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "10", + "y1": "11", + "x2": "10", + "y2": "17" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "14", + "y1": "11", + "x2": "14", + "y2": "17" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.trash2 = trash2; +var trash = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "3 6 5 6 21 6" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.trash = trash; +var trendingDown = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "23 18 13.5 8.5 8.5 13.5 1 6" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "17 18 23 18 23 12" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.trendingDown = trendingDown; +var trendingUp = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "23 6 13.5 15.5 8.5 10.5 1 18" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "17 6 23 6 23 12" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.trendingUp = trendingUp; +var triangle = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.triangle = triangle; +var truck = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "3", + "width": "15", + "height": "13" + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "points": "16 8 20 8 23 11 23 16 16 16 16 8" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "5.5", + "cy": "18.5", + "r": "2.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "18.5", + "cy": "18.5", + "r": "2.5" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.truck = truck; +var tv = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "x": "2", + "y": "7", + "width": "20", + "height": "15", + "rx": "2", + "ry": "2" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "17 2 12 7 7 2" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.tv = tv; +var twitter = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M23 3a10.9 10.9 0 0 1-3.14 1.53 4.48 4.48 0 0 0-7.86 3v1A10.66 10.66 0 0 1 3 4s-4 9 5 13a11.64 11.64 0 0 1-7 2c9 5 20 0 20-11.5a4.5 4.5 0 0 0-.08-.83A7.72 7.72 0 0 0 23 3z" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.twitter = twitter; +var type = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "4 7 4 4 20 4 20 7" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "9", + "y1": "20", + "x2": "15", + "y2": "20" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "4", + "x2": "12", + "y2": "20" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.type = type; +var umbrella = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M23 12a11.05 11.05 0 0 0-22 0zm-5 7a3 3 0 0 1-6 0v-7" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.umbrella = umbrella; +var underline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M6 3v7a6 6 0 0 0 6 6 6 6 0 0 0 6-6V3" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "4", + "y1": "21", + "x2": "20", + "y2": "21" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.underline = underline; +var unlock = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "x": "3", + "y": "11", + "width": "18", + "height": "11", + "rx": "2", + "ry": "2" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 11V7a5 5 0 0 1 9.9-1" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.unlock = unlock; +var uploadCloud = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "16 16 12 12 8 16" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "12", + "x2": "12", + "y2": "21" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20.39 18.39A5 5 0 0 0 18 9h-1.26A8 8 0 1 0 3 16.3" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "16 16 12 12 8 16" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.uploadCloud = uploadCloud; +var upload = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "17 8 12 3 7 8" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "3", + "x2": "12", + "y2": "15" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.upload = upload; +var userCheck = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "8.5", + "cy": "7", + "r": "4" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "17 11 19 13 23 9" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.userCheck = userCheck; +var userMinus = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "8.5", + "cy": "7", + "r": "4" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "23", + "y1": "11", + "x2": "17", + "y2": "11" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.userMinus = userMinus; +var userPlus = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "8.5", + "cy": "7", + "r": "4" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "20", + "y1": "8", + "x2": "20", + "y2": "14" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "23", + "y1": "11", + "x2": "17", + "y2": "11" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.userPlus = userPlus; +var userX = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "8.5", + "cy": "7", + "r": "4" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "18", + "y1": "8", + "x2": "23", + "y2": "13" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "23", + "y1": "8", + "x2": "18", + "y2": "13" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.userX = userX; +var user = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "7", + "r": "4" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.user = user; +var users = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "9", + "cy": "7", + "r": "4" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M23 21v-2a4 4 0 0 0-3-3.87" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 3.13a4 4 0 0 1 0 7.75" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.users = users; +var videoOff = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M16 16v1a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h2m5.66 0H14a2 2 0 0 1 2 2v3.34l1 1L23 7v10" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "1", + "y1": "1", + "x2": "23", + "y2": "23" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.videoOff = videoOff; +var video = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polygon", + "attribs": { + "points": "23 7 16 12 23 17 23 7" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "1", + "y": "5", + "width": "15", + "height": "14", + "rx": "2", + "ry": "2" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.video = video; +var voicemail = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "5.5", + "cy": "11.5", + "r": "4.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "18.5", + "cy": "11.5", + "r": "4.5" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "5.5", + "y1": "16", + "x2": "18.5", + "y2": "16" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.voicemail = voicemail; +var volume1 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polygon", + "attribs": { + "points": "11 5 6 9 2 9 2 15 6 15 11 19 11 5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.54 8.46a5 5 0 0 1 0 7.07" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.volume1 = volume1; +var volume2 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polygon", + "attribs": { + "points": "11 5 6 9 2 9 2 15 6 15 11 19 11 5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.07 4.93a10 10 0 0 1 0 14.14M15.54 8.46a5 5 0 0 1 0 7.07" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.volume2 = volume2; +var volumeX = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polygon", + "attribs": { + "points": "11 5 6 9 2 9 2 15 6 15 11 19 11 5" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "23", + "y1": "9", + "x2": "17", + "y2": "15" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "17", + "y1": "9", + "x2": "23", + "y2": "15" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.volumeX = volumeX; +var volume = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polygon", + "attribs": { + "points": "11 5 6 9 2 9 2 15 6 15 11 19 11 5" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.volume = volume; +var watch = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "7" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "12 9 12 12 13.5 13.5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16.51 17.35l-.35 3.83a2 2 0 0 1-2 1.82H9.83a2 2 0 0 1-2-1.82l-.35-3.83m.01-10.7l.35-3.83A2 2 0 0 1 9.83 1h4.35a2 2 0 0 1 2 1.82l.35 3.83" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.watch = watch; +var wifiOff = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "line", + "attribs": { + "x1": "1", + "y1": "1", + "x2": "23", + "y2": "23" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16.72 11.06A10.94 10.94 0 0 1 19 12.55" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 12.55a10.94 10.94 0 0 1 5.17-2.39" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10.71 5.05A16 16 0 0 1 22.58 9" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M1.42 9a15.91 15.91 0 0 1 4.7-2.88" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8.53 16.11a6 6 0 0 1 6.95 0" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "20", + "x2": "12", + "y2": "20" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.wifiOff = wifiOff; +var wifi = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M5 12.55a11 11 0 0 1 14.08 0" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M1.42 9a16 16 0 0 1 21.16 0" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8.53 16.11a6 6 0 0 1 6.95 0" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "20", + "x2": "12", + "y2": "20" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.wifi = wifi; +var wind = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M9.59 4.59A2 2 0 1 1 11 8H2m10.59 11.41A2 2 0 1 0 14 16H2m15.73-8.27A2.5 2.5 0 1 1 19.5 12H2" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.wind = wind; +var xCircle = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "10" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "15", + "y1": "9", + "x2": "9", + "y2": "15" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "9", + "y1": "9", + "x2": "15", + "y2": "15" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.xCircle = xCircle; +var xSquare = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "x": "3", + "y": "3", + "width": "18", + "height": "18", + "rx": "2", + "ry": "2" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "9", + "y1": "9", + "x2": "15", + "y2": "15" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "15", + "y1": "9", + "x2": "9", + "y2": "15" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.xSquare = xSquare; +var x = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "line", + "attribs": { + "x1": "18", + "y1": "6", + "x2": "6", + "y2": "18" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "6", + "y1": "6", + "x2": "18", + "y2": "18" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.x = x; +var youtube = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M22.54 6.42a2.78 2.78 0 0 0-1.94-2C18.88 4 12 4 12 4s-6.88 0-8.6.46a2.78 2.78 0 0 0-1.94 2A29 29 0 0 0 1 11.75a29 29 0 0 0 .46 5.33A2.78 2.78 0 0 0 3.4 19c1.72.46 8.6.46 8.6.46s6.88 0 8.6-.46a2.78 2.78 0 0 0 1.94-2 29 29 0 0 0 .46-5.25 29 29 0 0 0-.46-5.33z" + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "points": "9.75 15.02 15.5 11.75 9.75 8.48 9.75 15.02" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.youtube = youtube; +var zapOff = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "12.41 6.75 13 2 10.57 4.92" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "18.57 12.91 21 10 15.66 10" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "8 8 3 14 12 14 11 22 16 16" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "1", + "y1": "1", + "x2": "23", + "y2": "23" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.zapOff = zapOff; +var zap = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polygon", + "attribs": { + "points": "13 2 3 14 12 14 11 22 21 10 12 10 13 2" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.zap = zap; +var zoomIn = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "11", + "cy": "11", + "r": "8" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "21", + "y1": "21", + "x2": "16.65", + "y2": "16.65" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "11", + "y1": "8", + "x2": "11", + "y2": "14" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "8", + "y1": "11", + "x2": "14", + "y2": "11" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.zoomIn = zoomIn; +var zoomOut = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "11", + "cy": "11", + "r": "8" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "21", + "y1": "21", + "x2": "16.65", + "y2": "16.65" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "8", + "y1": "11", + "x2": "14", + "y2": "11" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.zoomOut = zoomOut; \ No newline at end of file diff --git a/dist/feather/info.js b/dist/feather/info.js new file mode 100644 index 000000000..7887260f0 --- /dev/null +++ b/dist/feather/info.js @@ -0,0 +1,44 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.info = void 0; +var info = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "10" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "16", + "x2": "12", + "y2": "12" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "8", + "x2": "12", + "y2": "8" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.info = info; \ No newline at end of file diff --git a/dist/feather/instagram.js b/dist/feather/instagram.js new file mode 100644 index 000000000..aea37ee4b --- /dev/null +++ b/dist/feather/instagram.js @@ -0,0 +1,44 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.instagram = void 0; +var instagram = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "x": "2", + "y": "2", + "width": "20", + "height": "20", + "rx": "5", + "ry": "5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "17.5", + "y1": "6.5", + "x2": "17.5", + "y2": "6.5" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.instagram = instagram; \ No newline at end of file diff --git a/dist/feather/italic.js b/dist/feather/italic.js new file mode 100644 index 000000000..8541c8abd --- /dev/null +++ b/dist/feather/italic.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.italic = void 0; +var italic = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "line", + "attribs": { + "x1": "19", + "y1": "4", + "x2": "10", + "y2": "4" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "14", + "y1": "20", + "x2": "5", + "y2": "20" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "15", + "y1": "4", + "x2": "9", + "y2": "20" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.italic = italic; \ No newline at end of file diff --git a/dist/feather/layers.js b/dist/feather/layers.js new file mode 100644 index 000000000..6d25088c8 --- /dev/null +++ b/dist/feather/layers.js @@ -0,0 +1,36 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.layers = void 0; +var layers = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polygon", + "attribs": { + "points": "12 2 2 7 12 12 22 7 12 2" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "2 17 12 22 22 17" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "2 12 12 17 22 12" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.layers = layers; \ No newline at end of file diff --git a/dist/feather/layout.js b/dist/feather/layout.js new file mode 100644 index 000000000..a3a2becbe --- /dev/null +++ b/dist/feather/layout.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.layout = void 0; +var layout = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "x": "3", + "y": "3", + "width": "18", + "height": "18", + "rx": "2", + "ry": "2" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "3", + "y1": "9", + "x2": "21", + "y2": "9" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "9", + "y1": "21", + "x2": "9", + "y2": "9" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.layout = layout; \ No newline at end of file diff --git a/dist/feather/lifeBuoy.js b/dist/feather/lifeBuoy.js new file mode 100644 index 000000000..b51fa7743 --- /dev/null +++ b/dist/feather/lifeBuoy.js @@ -0,0 +1,79 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.lifeBuoy = void 0; +var lifeBuoy = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "10" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "4" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "4.93", + "y1": "4.93", + "x2": "9.17", + "y2": "9.17" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "14.83", + "y1": "14.83", + "x2": "19.07", + "y2": "19.07" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "14.83", + "y1": "9.17", + "x2": "19.07", + "y2": "4.93" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "14.83", + "y1": "9.17", + "x2": "18.36", + "y2": "5.64" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "4.93", + "y1": "19.07", + "x2": "9.17", + "y2": "14.83" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.lifeBuoy = lifeBuoy; \ No newline at end of file diff --git a/dist/feather/link.js b/dist/feather/link.js new file mode 100644 index 000000000..8b9644c81 --- /dev/null +++ b/dist/feather/link.js @@ -0,0 +1,30 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.link = void 0; +var link = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.link = link; \ No newline at end of file diff --git a/dist/feather/link2.js b/dist/feather/link2.js new file mode 100644 index 000000000..286de6b72 --- /dev/null +++ b/dist/feather/link2.js @@ -0,0 +1,33 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.link2 = void 0; +var link2 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M15 7h3a5 5 0 0 1 5 5 5 5 0 0 1-5 5h-3m-6 0H6a5 5 0 0 1-5-5 5 5 0 0 1 5-5h3" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "8", + "y1": "12", + "x2": "16", + "y2": "12" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.link2 = link2; \ No newline at end of file diff --git a/dist/feather/linkedin.js b/dist/feather/linkedin.js new file mode 100644 index 000000000..f93e3cc94 --- /dev/null +++ b/dist/feather/linkedin.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.linkedin = void 0; +var linkedin = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "2", + "y": "9", + "width": "4", + "height": "12" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "4", + "cy": "4", + "r": "2" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.linkedin = linkedin; \ No newline at end of file diff --git a/dist/feather/list.js b/dist/feather/list.js new file mode 100644 index 000000000..37de69b1a --- /dev/null +++ b/dist/feather/list.js @@ -0,0 +1,72 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.list = void 0; +var list = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "line", + "attribs": { + "x1": "8", + "y1": "6", + "x2": "21", + "y2": "6" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "8", + "y1": "12", + "x2": "21", + "y2": "12" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "8", + "y1": "18", + "x2": "21", + "y2": "18" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "3", + "y1": "6", + "x2": "3", + "y2": "6" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "3", + "y1": "12", + "x2": "3", + "y2": "12" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "3", + "y1": "18", + "x2": "3", + "y2": "18" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.list = list; \ No newline at end of file diff --git a/dist/feather/loader.js b/dist/feather/loader.js new file mode 100644 index 000000000..dca323bc5 --- /dev/null +++ b/dist/feather/loader.js @@ -0,0 +1,90 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.loader = void 0; +var loader = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "line", + "attribs": { + "x1": "12", + "y1": "2", + "x2": "12", + "y2": "6" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "18", + "x2": "12", + "y2": "22" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "4.93", + "y1": "4.93", + "x2": "7.76", + "y2": "7.76" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "16.24", + "y1": "16.24", + "x2": "19.07", + "y2": "19.07" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "2", + "y1": "12", + "x2": "6", + "y2": "12" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "18", + "y1": "12", + "x2": "22", + "y2": "12" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "4.93", + "y1": "19.07", + "x2": "7.76", + "y2": "16.24" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "16.24", + "y1": "7.76", + "x2": "19.07", + "y2": "4.93" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.loader = loader; \ No newline at end of file diff --git a/dist/feather/lock.js b/dist/feather/lock.js new file mode 100644 index 000000000..76b7d324c --- /dev/null +++ b/dist/feather/lock.js @@ -0,0 +1,35 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.lock = void 0; +var lock = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "x": "3", + "y": "11", + "width": "18", + "height": "11", + "rx": "2", + "ry": "2" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 11V7a5 5 0 0 1 10 0v4" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.lock = lock; \ No newline at end of file diff --git a/dist/feather/logIn.js b/dist/feather/logIn.js new file mode 100644 index 000000000..4cdedfa3c --- /dev/null +++ b/dist/feather/logIn.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.logIn = void 0; +var logIn = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "10 17 15 12 10 7" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "15", + "y1": "12", + "x2": "3", + "y2": "12" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.logIn = logIn; \ No newline at end of file diff --git a/dist/feather/logOut.js b/dist/feather/logOut.js new file mode 100644 index 000000000..4f2b1576f --- /dev/null +++ b/dist/feather/logOut.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.logOut = void 0; +var logOut = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "16 17 21 12 16 7" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "21", + "y1": "12", + "x2": "9", + "y2": "12" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.logOut = logOut; \ No newline at end of file diff --git a/dist/feather/mail.js b/dist/feather/mail.js new file mode 100644 index 000000000..389880311 --- /dev/null +++ b/dist/feather/mail.js @@ -0,0 +1,30 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.mail = void 0; +var mail = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "22,6 12,13 2,6" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.mail = mail; \ No newline at end of file diff --git a/dist/feather/map.js b/dist/feather/map.js new file mode 100644 index 000000000..4b7b4291d --- /dev/null +++ b/dist/feather/map.js @@ -0,0 +1,42 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.map = void 0; +var map = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polygon", + "attribs": { + "points": "1 6 1 22 8 18 16 22 23 18 23 2 16 6 8 2 1 6" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "8", + "y1": "2", + "x2": "8", + "y2": "18" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "16", + "y1": "6", + "x2": "16", + "y2": "22" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.map = map; \ No newline at end of file diff --git a/dist/feather/mapPin.js b/dist/feather/mapPin.js new file mode 100644 index 000000000..86b89c8ef --- /dev/null +++ b/dist/feather/mapPin.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.mapPin = void 0; +var mapPin = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "10", + "r": "3" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.mapPin = mapPin; \ No newline at end of file diff --git a/dist/feather/maximize.js b/dist/feather/maximize.js new file mode 100644 index 000000000..259cb60b3 --- /dev/null +++ b/dist/feather/maximize.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.maximize = void 0; +var maximize = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M8 3H5a2 2 0 0 0-2 2v3m18 0V5a2 2 0 0 0-2-2h-3m0 18h3a2 2 0 0 0 2-2v-3M3 16v3a2 2 0 0 0 2 2h3" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.maximize = maximize; \ No newline at end of file diff --git a/dist/feather/maximize2.js b/dist/feather/maximize2.js new file mode 100644 index 000000000..38402688f --- /dev/null +++ b/dist/feather/maximize2.js @@ -0,0 +1,48 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.maximize2 = void 0; +var maximize2 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "15 3 21 3 21 9" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "9 21 3 21 3 15" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "21", + "y1": "3", + "x2": "14", + "y2": "10" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "3", + "y1": "21", + "x2": "10", + "y2": "14" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.maximize2 = maximize2; \ No newline at end of file diff --git a/dist/feather/menu.js b/dist/feather/menu.js new file mode 100644 index 000000000..da8f5a12f --- /dev/null +++ b/dist/feather/menu.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.menu = void 0; +var menu = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "line", + "attribs": { + "x1": "3", + "y1": "12", + "x2": "21", + "y2": "12" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "3", + "y1": "6", + "x2": "21", + "y2": "6" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "3", + "y1": "18", + "x2": "21", + "y2": "18" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.menu = menu; \ No newline at end of file diff --git a/dist/feather/messageCircle.js b/dist/feather/messageCircle.js new file mode 100644 index 000000000..cb5ac1b10 --- /dev/null +++ b/dist/feather/messageCircle.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.messageCircle = void 0; +var messageCircle = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.38 8.38 0 0 1 3.8-.9h.5a8.48 8.48 0 0 1 8 8v.5z" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.messageCircle = messageCircle; \ No newline at end of file diff --git a/dist/feather/messageSquare.js b/dist/feather/messageSquare.js new file mode 100644 index 000000000..b98928063 --- /dev/null +++ b/dist/feather/messageSquare.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.messageSquare = void 0; +var messageSquare = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.messageSquare = messageSquare; \ No newline at end of file diff --git a/dist/feather/mic.js b/dist/feather/mic.js new file mode 100644 index 000000000..4475b8c8e --- /dev/null +++ b/dist/feather/mic.js @@ -0,0 +1,48 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.mic = void 0; +var mic = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 1a3 3 0 0 0-3 3v8a3 3 0 0 0 6 0V4a3 3 0 0 0-3-3z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 10v2a7 7 0 0 1-14 0v-2" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "19", + "x2": "12", + "y2": "23" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "8", + "y1": "23", + "x2": "16", + "y2": "23" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.mic = mic; \ No newline at end of file diff --git a/dist/feather/micOff.js b/dist/feather/micOff.js new file mode 100644 index 000000000..27879ea54 --- /dev/null +++ b/dist/feather/micOff.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.micOff = void 0; +var micOff = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "line", + "attribs": { + "x1": "1", + "y1": "1", + "x2": "23", + "y2": "23" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 9v3a3 3 0 0 0 5.12 2.12M15 9.34V4a3 3 0 0 0-5.94-.6" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 16.95A7 7 0 0 1 5 12v-2m14 0v2a7 7 0 0 1-.11 1.23" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "19", + "x2": "12", + "y2": "23" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "8", + "y1": "23", + "x2": "16", + "y2": "23" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.micOff = micOff; \ No newline at end of file diff --git a/dist/feather/minimize.js b/dist/feather/minimize.js new file mode 100644 index 000000000..3d561d65d --- /dev/null +++ b/dist/feather/minimize.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.minimize = void 0; +var minimize = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M8 3v3a2 2 0 0 1-2 2H3m18 0h-3a2 2 0 0 1-2-2V3m0 18v-3a2 2 0 0 1 2-2h3M3 16h3a2 2 0 0 1 2 2v3" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.minimize = minimize; \ No newline at end of file diff --git a/dist/feather/minimize2.js b/dist/feather/minimize2.js new file mode 100644 index 000000000..08cf68817 --- /dev/null +++ b/dist/feather/minimize2.js @@ -0,0 +1,48 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.minimize2 = void 0; +var minimize2 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "4 14 10 14 10 20" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "20 10 14 10 14 4" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "14", + "y1": "10", + "x2": "21", + "y2": "3" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "3", + "y1": "21", + "x2": "10", + "y2": "14" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.minimize2 = minimize2; \ No newline at end of file diff --git a/dist/feather/minus.js b/dist/feather/minus.js new file mode 100644 index 000000000..90e4ffa07 --- /dev/null +++ b/dist/feather/minus.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.minus = void 0; +var minus = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "line", + "attribs": { + "x1": "5", + "y1": "12", + "x2": "19", + "y2": "12" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.minus = minus; \ No newline at end of file diff --git a/dist/feather/minusCircle.js b/dist/feather/minusCircle.js new file mode 100644 index 000000000..11b9dc56b --- /dev/null +++ b/dist/feather/minusCircle.js @@ -0,0 +1,35 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.minusCircle = void 0; +var minusCircle = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "10" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "8", + "y1": "12", + "x2": "16", + "y2": "12" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.minusCircle = minusCircle; \ No newline at end of file diff --git a/dist/feather/minusSquare.js b/dist/feather/minusSquare.js new file mode 100644 index 000000000..06b3d9e44 --- /dev/null +++ b/dist/feather/minusSquare.js @@ -0,0 +1,38 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.minusSquare = void 0; +var minusSquare = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "x": "3", + "y": "3", + "width": "18", + "height": "18", + "rx": "2", + "ry": "2" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "8", + "y1": "12", + "x2": "16", + "y2": "12" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.minusSquare = minusSquare; \ No newline at end of file diff --git a/dist/feather/monitor.js b/dist/feather/monitor.js new file mode 100644 index 000000000..13ee010d6 --- /dev/null +++ b/dist/feather/monitor.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.monitor = void 0; +var monitor = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "x": "2", + "y": "3", + "width": "20", + "height": "14", + "rx": "2", + "ry": "2" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "8", + "y1": "21", + "x2": "16", + "y2": "21" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "17", + "x2": "12", + "y2": "21" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.monitor = monitor; \ No newline at end of file diff --git a/dist/feather/moon.js b/dist/feather/moon.js new file mode 100644 index 000000000..9ed398ff0 --- /dev/null +++ b/dist/feather/moon.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.moon = void 0; +var moon = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.moon = moon; \ No newline at end of file diff --git a/dist/feather/moreHorizontal.js b/dist/feather/moreHorizontal.js new file mode 100644 index 000000000..88cec9ea3 --- /dev/null +++ b/dist/feather/moreHorizontal.js @@ -0,0 +1,42 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.moreHorizontal = void 0; +var moreHorizontal = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "1" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "19", + "cy": "12", + "r": "1" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "5", + "cy": "12", + "r": "1" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.moreHorizontal = moreHorizontal; \ No newline at end of file diff --git a/dist/feather/moreVertical.js b/dist/feather/moreVertical.js new file mode 100644 index 000000000..bdac1d633 --- /dev/null +++ b/dist/feather/moreVertical.js @@ -0,0 +1,42 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.moreVertical = void 0; +var moreVertical = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "1" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "5", + "r": "1" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "19", + "r": "1" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.moreVertical = moreVertical; \ No newline at end of file diff --git a/dist/feather/move.js b/dist/feather/move.js new file mode 100644 index 000000000..181c1e2fe --- /dev/null +++ b/dist/feather/move.js @@ -0,0 +1,60 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.move = void 0; +var move = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "5 9 2 12 5 15" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "9 5 12 2 15 5" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "15 19 12 22 9 19" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "19 9 22 12 19 15" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "2", + "y1": "12", + "x2": "22", + "y2": "12" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "2", + "x2": "12", + "y2": "22" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.move = move; \ No newline at end of file diff --git a/dist/feather/music.js b/dist/feather/music.js new file mode 100644 index 000000000..c9ffd53e5 --- /dev/null +++ b/dist/feather/music.js @@ -0,0 +1,30 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.music = void 0; +var music = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M9 17H5a2 2 0 0 0-2 2 2 2 0 0 0 2 2h2a2 2 0 0 0 2-2zm12-2h-4a2 2 0 0 0-2 2 2 2 0 0 0 2 2h2a2 2 0 0 0 2-2z" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "9 17 9 5 21 3 21 15" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.music = music; \ No newline at end of file diff --git a/dist/feather/navigation.js b/dist/feather/navigation.js new file mode 100644 index 000000000..86224cd8f --- /dev/null +++ b/dist/feather/navigation.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.navigation = void 0; +var navigation = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polygon", + "attribs": { + "points": "3 11 22 2 13 21 11 13 3 11" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.navigation = navigation; \ No newline at end of file diff --git a/dist/feather/navigation2.js b/dist/feather/navigation2.js new file mode 100644 index 000000000..32d54e3e3 --- /dev/null +++ b/dist/feather/navigation2.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.navigation2 = void 0; +var navigation2 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polygon", + "attribs": { + "points": "12 2 19 21 12 17 5 21 12 2" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.navigation2 = navigation2; \ No newline at end of file diff --git a/dist/feather/octagon.js b/dist/feather/octagon.js new file mode 100644 index 000000000..df66bb9ff --- /dev/null +++ b/dist/feather/octagon.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.octagon = void 0; +var octagon = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polygon", + "attribs": { + "points": "7.86 2 16.14 2 22 7.86 22 16.14 16.14 22 7.86 22 2 16.14 2 7.86 7.86 2" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.octagon = octagon; \ No newline at end of file diff --git a/dist/feather/packageIcon.js b/dist/feather/packageIcon.js new file mode 100644 index 000000000..3ee321d79 --- /dev/null +++ b/dist/feather/packageIcon.js @@ -0,0 +1,48 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.packageIcon = void 0; +var packageIcon = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12.89 1.45l8 4A2 2 0 0 1 22 7.24v9.53a2 2 0 0 1-1.11 1.79l-8 4a2 2 0 0 1-1.79 0l-8-4a2 2 0 0 1-1.1-1.8V7.24a2 2 0 0 1 1.11-1.79l8-4a2 2 0 0 1 1.78 0z" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "2.32 6.16 12 11 21.68 6.16" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "22.76", + "x2": "12", + "y2": "11" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "7", + "y1": "3.5", + "x2": "17", + "y2": "8.5" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.packageIcon = packageIcon; \ No newline at end of file diff --git a/dist/feather/paperclip.js b/dist/feather/paperclip.js new file mode 100644 index 000000000..9455f2439 --- /dev/null +++ b/dist/feather/paperclip.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.paperclip = void 0; +var paperclip = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M21.44 11.05l-9.19 9.19a6 6 0 0 1-8.49-8.49l9.19-9.19a4 4 0 0 1 5.66 5.66l-9.2 9.19a2 2 0 0 1-2.83-2.83l8.49-8.48" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.paperclip = paperclip; \ No newline at end of file diff --git a/dist/feather/pause.js b/dist/feather/pause.js new file mode 100644 index 000000000..6b94be894 --- /dev/null +++ b/dist/feather/pause.js @@ -0,0 +1,36 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pause = void 0; +var pause = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "x": "6", + "y": "4", + "width": "4", + "height": "16" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "14", + "y": "4", + "width": "4", + "height": "16" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.pause = pause; \ No newline at end of file diff --git a/dist/feather/pauseCircle.js b/dist/feather/pauseCircle.js new file mode 100644 index 000000000..a774ecca9 --- /dev/null +++ b/dist/feather/pauseCircle.js @@ -0,0 +1,44 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pauseCircle = void 0; +var pauseCircle = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "10" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "10", + "y1": "15", + "x2": "10", + "y2": "9" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "14", + "y1": "15", + "x2": "14", + "y2": "9" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.pauseCircle = pauseCircle; \ No newline at end of file diff --git a/dist/feather/percent.js b/dist/feather/percent.js new file mode 100644 index 000000000..f31bf3f58 --- /dev/null +++ b/dist/feather/percent.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.percent = void 0; +var percent = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "line", + "attribs": { + "x1": "19", + "y1": "5", + "x2": "5", + "y2": "19" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "6.5", + "cy": "6.5", + "r": "2.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "17.5", + "cy": "17.5", + "r": "2.5" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.percent = percent; \ No newline at end of file diff --git a/dist/feather/phone.js b/dist/feather/phone.js new file mode 100644 index 000000000..a98554f0f --- /dev/null +++ b/dist/feather/phone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.phone = void 0; +var phone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.phone = phone; \ No newline at end of file diff --git a/dist/feather/phoneCall.js b/dist/feather/phoneCall.js new file mode 100644 index 000000000..2abb35db3 --- /dev/null +++ b/dist/feather/phoneCall.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.phoneCall = void 0; +var phoneCall = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M15.05 5A5 5 0 0 1 19 8.95M15.05 1A9 9 0 0 1 23 8.94m-1 7.98v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.phoneCall = phoneCall; \ No newline at end of file diff --git a/dist/feather/phoneForwarded.js b/dist/feather/phoneForwarded.js new file mode 100644 index 000000000..b13b13e78 --- /dev/null +++ b/dist/feather/phoneForwarded.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.phoneForwarded = void 0; +var phoneForwarded = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "19 1 23 5 19 9" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "15", + "y1": "5", + "x2": "23", + "y2": "5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.phoneForwarded = phoneForwarded; \ No newline at end of file diff --git a/dist/feather/phoneIncoming.js b/dist/feather/phoneIncoming.js new file mode 100644 index 000000000..5d264d40b --- /dev/null +++ b/dist/feather/phoneIncoming.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.phoneIncoming = void 0; +var phoneIncoming = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "16 2 16 8 22 8" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "23", + "y1": "1", + "x2": "16", + "y2": "8" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.phoneIncoming = phoneIncoming; \ No newline at end of file diff --git a/dist/feather/phoneMissed.js b/dist/feather/phoneMissed.js new file mode 100644 index 000000000..c904c694b --- /dev/null +++ b/dist/feather/phoneMissed.js @@ -0,0 +1,42 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.phoneMissed = void 0; +var phoneMissed = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "line", + "attribs": { + "x1": "23", + "y1": "1", + "x2": "17", + "y2": "7" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "17", + "y1": "1", + "x2": "23", + "y2": "7" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.phoneMissed = phoneMissed; \ No newline at end of file diff --git a/dist/feather/phoneOff.js b/dist/feather/phoneOff.js new file mode 100644 index 000000000..4c3bbf072 --- /dev/null +++ b/dist/feather/phoneOff.js @@ -0,0 +1,33 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.phoneOff = void 0; +var phoneOff = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M10.68 13.31a16 16 0 0 0 3.41 2.6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7 2 2 0 0 1 1.72 2v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.42 19.42 0 0 1-3.33-2.67m-2.67-3.34a19.79 19.79 0 0 1-3.07-8.63A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "23", + "y1": "1", + "x2": "1", + "y2": "23" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.phoneOff = phoneOff; \ No newline at end of file diff --git a/dist/feather/phoneOutgoing.js b/dist/feather/phoneOutgoing.js new file mode 100644 index 000000000..9cfd02df0 --- /dev/null +++ b/dist/feather/phoneOutgoing.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.phoneOutgoing = void 0; +var phoneOutgoing = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "23 7 23 1 17 1" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "16", + "y1": "8", + "x2": "23", + "y2": "1" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.phoneOutgoing = phoneOutgoing; \ No newline at end of file diff --git a/dist/feather/pieChart.js b/dist/feather/pieChart.js new file mode 100644 index 000000000..e2138d00f --- /dev/null +++ b/dist/feather/pieChart.js @@ -0,0 +1,30 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pieChart = void 0; +var pieChart = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M21.21 15.89A10 10 0 1 1 8 2.83" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 12A10 10 0 0 0 12 2v10z" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.pieChart = pieChart; \ No newline at end of file diff --git a/dist/feather/play.js b/dist/feather/play.js new file mode 100644 index 000000000..18f551305 --- /dev/null +++ b/dist/feather/play.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.play = void 0; +var play = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polygon", + "attribs": { + "points": "5 3 19 12 5 21 5 3" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.play = play; \ No newline at end of file diff --git a/dist/feather/playCircle.js b/dist/feather/playCircle.js new file mode 100644 index 000000000..f06e66581 --- /dev/null +++ b/dist/feather/playCircle.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.playCircle = void 0; +var playCircle = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "10" + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "points": "10 8 16 12 10 16 10 8" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.playCircle = playCircle; \ No newline at end of file diff --git a/dist/feather/plus.js b/dist/feather/plus.js new file mode 100644 index 000000000..c0c6225a3 --- /dev/null +++ b/dist/feather/plus.js @@ -0,0 +1,36 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.plus = void 0; +var plus = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "line", + "attribs": { + "x1": "12", + "y1": "5", + "x2": "12", + "y2": "19" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "5", + "y1": "12", + "x2": "19", + "y2": "12" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.plus = plus; \ No newline at end of file diff --git a/dist/feather/plusCircle.js b/dist/feather/plusCircle.js new file mode 100644 index 000000000..f2a97406d --- /dev/null +++ b/dist/feather/plusCircle.js @@ -0,0 +1,44 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.plusCircle = void 0; +var plusCircle = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "10" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "8", + "x2": "12", + "y2": "16" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "8", + "y1": "12", + "x2": "16", + "y2": "12" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.plusCircle = plusCircle; \ No newline at end of file diff --git a/dist/feather/plusSquare.js b/dist/feather/plusSquare.js new file mode 100644 index 000000000..ecb83a024 --- /dev/null +++ b/dist/feather/plusSquare.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.plusSquare = void 0; +var plusSquare = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "x": "3", + "y": "3", + "width": "18", + "height": "18", + "rx": "2", + "ry": "2" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "8", + "x2": "12", + "y2": "16" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "8", + "y1": "12", + "x2": "16", + "y2": "12" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.plusSquare = plusSquare; \ No newline at end of file diff --git a/dist/feather/pocket.js b/dist/feather/pocket.js new file mode 100644 index 000000000..49cbcfdf2 --- /dev/null +++ b/dist/feather/pocket.js @@ -0,0 +1,30 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pocket = void 0; +var pocket = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 3h16a2 2 0 0 1 2 2v6a10 10 0 0 1-10 10A10 10 0 0 1 2 11V5a2 2 0 0 1 2-2z" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "8 10 12 14 16 10" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.pocket = pocket; \ No newline at end of file diff --git a/dist/feather/power.js b/dist/feather/power.js new file mode 100644 index 000000000..bae35922c --- /dev/null +++ b/dist/feather/power.js @@ -0,0 +1,33 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.power = void 0; +var power = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.36 6.64a9 9 0 1 1-12.73 0" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "2", + "x2": "12", + "y2": "12" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.power = power; \ No newline at end of file diff --git a/dist/feather/printer.js b/dist/feather/printer.js new file mode 100644 index 000000000..e61ab7c81 --- /dev/null +++ b/dist/feather/printer.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.printer = void 0; +var printer = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "6 9 6 2 18 2 18 9" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "6", + "y": "14", + "width": "12", + "height": "8" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.printer = printer; \ No newline at end of file diff --git a/dist/feather/radio.js b/dist/feather/radio.js new file mode 100644 index 000000000..0a2aafd30 --- /dev/null +++ b/dist/feather/radio.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.radio = void 0; +var radio = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "2" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16.24 7.76a6 6 0 0 1 0 8.49m-8.48-.01a6 6 0 0 1 0-8.49m11.31-2.82a10 10 0 0 1 0 14.14m-14.14 0a10 10 0 0 1 0-14.14" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.radio = radio; \ No newline at end of file diff --git a/dist/feather/refreshCcw.js b/dist/feather/refreshCcw.js new file mode 100644 index 000000000..6af2936c5 --- /dev/null +++ b/dist/feather/refreshCcw.js @@ -0,0 +1,36 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.refreshCcw = void 0; +var refreshCcw = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "1 4 1 10 7 10" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "23 20 23 14 17 14" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20.49 9A9 9 0 0 0 5.64 5.64L1 10m22 4l-4.64 4.36A9 9 0 0 1 3.51 15" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.refreshCcw = refreshCcw; \ No newline at end of file diff --git a/dist/feather/refreshCw.js b/dist/feather/refreshCw.js new file mode 100644 index 000000000..5f4492822 --- /dev/null +++ b/dist/feather/refreshCw.js @@ -0,0 +1,36 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.refreshCw = void 0; +var refreshCw = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "23 4 23 10 17 10" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "1 20 1 14 7 14" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3.51 9a9 9 0 0 1 14.85-3.36L23 10M1 14l4.64 4.36A9 9 0 0 0 20.49 15" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.refreshCw = refreshCw; \ No newline at end of file diff --git a/dist/feather/repeat.js b/dist/feather/repeat.js new file mode 100644 index 000000000..c77847844 --- /dev/null +++ b/dist/feather/repeat.js @@ -0,0 +1,42 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.repeat = void 0; +var repeat = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "17 1 21 5 17 9" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 11V9a4 4 0 0 1 4-4h14" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "7 23 3 19 7 15" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 13v2a4 4 0 0 1-4 4H3" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.repeat = repeat; \ No newline at end of file diff --git a/dist/feather/rewind.js b/dist/feather/rewind.js new file mode 100644 index 000000000..dd1fc4df8 --- /dev/null +++ b/dist/feather/rewind.js @@ -0,0 +1,30 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.rewind = void 0; +var rewind = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polygon", + "attribs": { + "points": "11 19 2 12 11 5 11 19" + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "points": "22 19 13 12 22 5 22 19" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.rewind = rewind; \ No newline at end of file diff --git a/dist/feather/rotateCcw.js b/dist/feather/rotateCcw.js new file mode 100644 index 000000000..771645b68 --- /dev/null +++ b/dist/feather/rotateCcw.js @@ -0,0 +1,30 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.rotateCcw = void 0; +var rotateCcw = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "1 4 1 10 7 10" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3.51 15a9 9 0 1 0 2.13-9.36L1 10" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.rotateCcw = rotateCcw; \ No newline at end of file diff --git a/dist/feather/rotateCw.js b/dist/feather/rotateCw.js new file mode 100644 index 000000000..604ea3bbb --- /dev/null +++ b/dist/feather/rotateCw.js @@ -0,0 +1,30 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.rotateCw = void 0; +var rotateCw = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "23 4 23 10 17 10" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20.49 15a9 9 0 1 1-2.12-9.36L23 10" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.rotateCw = rotateCw; \ No newline at end of file diff --git a/dist/feather/rss.js b/dist/feather/rss.js new file mode 100644 index 000000000..29f76868b --- /dev/null +++ b/dist/feather/rss.js @@ -0,0 +1,38 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.rss = void 0; +var rss = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 11a9 9 0 0 1 9 9" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 4a16 16 0 0 1 16 16" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "5", + "cy": "19", + "r": "1" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.rss = rss; \ No newline at end of file diff --git a/dist/feather/save.js b/dist/feather/save.js new file mode 100644 index 000000000..16935d976 --- /dev/null +++ b/dist/feather/save.js @@ -0,0 +1,36 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.save = void 0; +var save = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M19 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11l5 5v11a2 2 0 0 1-2 2z" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "17 21 17 13 7 13 7 21" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "7 3 7 8 15 8" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.save = save; \ No newline at end of file diff --git a/dist/feather/scissors.js b/dist/feather/scissors.js new file mode 100644 index 000000000..c65c41eed --- /dev/null +++ b/dist/feather/scissors.js @@ -0,0 +1,61 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.scissors = void 0; +var scissors = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "6", + "cy": "6", + "r": "3" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "6", + "cy": "18", + "r": "3" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "20", + "y1": "4", + "x2": "8.12", + "y2": "15.88" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "14.47", + "y1": "14.48", + "x2": "20", + "y2": "20" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "8.12", + "y1": "8.12", + "x2": "12", + "y2": "12" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.scissors = scissors; \ No newline at end of file diff --git a/dist/feather/search.js b/dist/feather/search.js new file mode 100644 index 000000000..337336953 --- /dev/null +++ b/dist/feather/search.js @@ -0,0 +1,35 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.search = void 0; +var search = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "11", + "cy": "11", + "r": "8" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "21", + "y1": "21", + "x2": "16.65", + "y2": "16.65" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.search = search; \ No newline at end of file diff --git a/dist/feather/send.js b/dist/feather/send.js new file mode 100644 index 000000000..80360140b --- /dev/null +++ b/dist/feather/send.js @@ -0,0 +1,33 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.send = void 0; +var send = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "line", + "attribs": { + "x1": "22", + "y1": "2", + "x2": "11", + "y2": "13" + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "points": "22 2 15 22 11 13 2 9 22 2" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.send = send; \ No newline at end of file diff --git a/dist/feather/server.js b/dist/feather/server.js new file mode 100644 index 000000000..db0977685 --- /dev/null +++ b/dist/feather/server.js @@ -0,0 +1,58 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.server = void 0; +var server = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "x": "2", + "y": "2", + "width": "20", + "height": "8", + "rx": "2", + "ry": "2" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "2", + "y": "14", + "width": "20", + "height": "8", + "rx": "2", + "ry": "2" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "6", + "y1": "6", + "x2": "6", + "y2": "6" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "6", + "y1": "18", + "x2": "6", + "y2": "18" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.server = server; \ No newline at end of file diff --git a/dist/feather/settings.js b/dist/feather/settings.js new file mode 100644 index 000000000..2dec847b8 --- /dev/null +++ b/dist/feather/settings.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.settings = void 0; +var settings = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1z" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.settings = settings; \ No newline at end of file diff --git a/dist/feather/share.js b/dist/feather/share.js new file mode 100644 index 000000000..d30c98771 --- /dev/null +++ b/dist/feather/share.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.share = void 0; +var share = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "16 6 12 2 8 6" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "2", + "x2": "12", + "y2": "15" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.share = share; \ No newline at end of file diff --git a/dist/feather/share2.js b/dist/feather/share2.js new file mode 100644 index 000000000..566a38fbd --- /dev/null +++ b/dist/feather/share2.js @@ -0,0 +1,60 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.share2 = void 0; +var share2 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "18", + "cy": "5", + "r": "3" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "6", + "cy": "12", + "r": "3" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "18", + "cy": "19", + "r": "3" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "8.59", + "y1": "13.51", + "x2": "15.42", + "y2": "17.49" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "15.41", + "y1": "6.51", + "x2": "8.59", + "y2": "10.49" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.share2 = share2; \ No newline at end of file diff --git a/dist/feather/shield.js b/dist/feather/shield.js new file mode 100644 index 000000000..882d561ec --- /dev/null +++ b/dist/feather/shield.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.shield = void 0; +var shield = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.shield = shield; \ No newline at end of file diff --git a/dist/feather/shieldOff.js b/dist/feather/shieldOff.js new file mode 100644 index 000000000..ff971d8c4 --- /dev/null +++ b/dist/feather/shieldOff.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.shieldOff = void 0; +var shieldOff = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M19.69 14a6.9 6.9 0 0 0 .31-2V5l-8-3-3.16 1.18" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4.73 4.73L4 5v7c0 6 8 10 8 10a20.29 20.29 0 0 0 5.62-4.38" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "1", + "y1": "1", + "x2": "23", + "y2": "23" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.shieldOff = shieldOff; \ No newline at end of file diff --git a/dist/feather/shoppingBag.js b/dist/feather/shoppingBag.js new file mode 100644 index 000000000..9337f5bd7 --- /dev/null +++ b/dist/feather/shoppingBag.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.shoppingBag = void 0; +var shoppingBag = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M6 2L3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4z" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "3", + "y1": "6", + "x2": "21", + "y2": "6" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 10a4 4 0 0 1-8 0" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.shoppingBag = shoppingBag; \ No newline at end of file diff --git a/dist/feather/shoppingCart.js b/dist/feather/shoppingCart.js new file mode 100644 index 000000000..3bcd67452 --- /dev/null +++ b/dist/feather/shoppingCart.js @@ -0,0 +1,40 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.shoppingCart = void 0; +var shoppingCart = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "9", + "cy": "21", + "r": "1" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "20", + "cy": "21", + "r": "1" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.shoppingCart = shoppingCart; \ No newline at end of file diff --git a/dist/feather/shuffle.js b/dist/feather/shuffle.js new file mode 100644 index 000000000..b8663b57d --- /dev/null +++ b/dist/feather/shuffle.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.shuffle = void 0; +var shuffle = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "16 3 21 3 21 8" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "4", + "y1": "20", + "x2": "21", + "y2": "3" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "21 16 21 21 16 21" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "15", + "y1": "15", + "x2": "21", + "y2": "21" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "4", + "y1": "4", + "x2": "9", + "y2": "9" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.shuffle = shuffle; \ No newline at end of file diff --git a/dist/feather/sidebar.js b/dist/feather/sidebar.js new file mode 100644 index 000000000..6e1b45d2b --- /dev/null +++ b/dist/feather/sidebar.js @@ -0,0 +1,38 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.sidebar = void 0; +var sidebar = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "x": "3", + "y": "3", + "width": "18", + "height": "18", + "rx": "2", + "ry": "2" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "9", + "y1": "3", + "x2": "9", + "y2": "21" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.sidebar = sidebar; \ No newline at end of file diff --git a/dist/feather/skipBack.js b/dist/feather/skipBack.js new file mode 100644 index 000000000..826890877 --- /dev/null +++ b/dist/feather/skipBack.js @@ -0,0 +1,33 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.skipBack = void 0; +var skipBack = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polygon", + "attribs": { + "points": "19 20 9 12 19 4 19 20" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "5", + "y1": "19", + "x2": "5", + "y2": "5" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.skipBack = skipBack; \ No newline at end of file diff --git a/dist/feather/skipForward.js b/dist/feather/skipForward.js new file mode 100644 index 000000000..4adb1d166 --- /dev/null +++ b/dist/feather/skipForward.js @@ -0,0 +1,33 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.skipForward = void 0; +var skipForward = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polygon", + "attribs": { + "points": "5 4 15 12 5 20 5 4" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "19", + "y1": "5", + "x2": "19", + "y2": "19" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.skipForward = skipForward; \ No newline at end of file diff --git a/dist/feather/slack.js b/dist/feather/slack.js new file mode 100644 index 000000000..9e6ea4d1d --- /dev/null +++ b/dist/feather/slack.js @@ -0,0 +1,60 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.slack = void 0; +var slack = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M22.08 9C19.81 1.41 16.54-.35 9 1.92S-.35 7.46 1.92 15 7.46 24.35 15 22.08 24.35 16.54 22.08 9z" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12.57", + "y1": "5.99", + "x2": "16.15", + "y2": "16.39" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "7.85", + "y1": "7.61", + "x2": "11.43", + "y2": "18.01" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "16.39", + "y1": "7.85", + "x2": "5.99", + "y2": "11.43" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "18.01", + "y1": "12.57", + "x2": "7.61", + "y2": "16.15" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.slack = slack; \ No newline at end of file diff --git a/dist/feather/slash.js b/dist/feather/slash.js new file mode 100644 index 000000000..0245a2552 --- /dev/null +++ b/dist/feather/slash.js @@ -0,0 +1,35 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.slash = void 0; +var slash = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "10" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "4.93", + "y1": "4.93", + "x2": "19.07", + "y2": "19.07" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.slash = slash; \ No newline at end of file diff --git a/dist/feather/sliders.js b/dist/feather/sliders.js new file mode 100644 index 000000000..220c68a41 --- /dev/null +++ b/dist/feather/sliders.js @@ -0,0 +1,99 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.sliders = void 0; +var sliders = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "line", + "attribs": { + "x1": "4", + "y1": "21", + "x2": "4", + "y2": "14" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "4", + "y1": "10", + "x2": "4", + "y2": "3" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "21", + "x2": "12", + "y2": "12" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "8", + "x2": "12", + "y2": "3" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "20", + "y1": "21", + "x2": "20", + "y2": "16" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "20", + "y1": "12", + "x2": "20", + "y2": "3" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "1", + "y1": "14", + "x2": "7", + "y2": "14" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "9", + "y1": "8", + "x2": "15", + "y2": "8" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "17", + "y1": "16", + "x2": "23", + "y2": "16" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.sliders = sliders; \ No newline at end of file diff --git a/dist/feather/smartphone.js b/dist/feather/smartphone.js new file mode 100644 index 000000000..8d7bb226d --- /dev/null +++ b/dist/feather/smartphone.js @@ -0,0 +1,38 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.smartphone = void 0; +var smartphone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "x": "5", + "y": "2", + "width": "14", + "height": "20", + "rx": "2", + "ry": "2" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "18", + "x2": "12", + "y2": "18" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.smartphone = smartphone; \ No newline at end of file diff --git a/dist/feather/speaker.js b/dist/feather/speaker.js new file mode 100644 index 000000000..0baca1573 --- /dev/null +++ b/dist/feather/speaker.js @@ -0,0 +1,46 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.speaker = void 0; +var speaker = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "x": "4", + "y": "2", + "width": "16", + "height": "20", + "rx": "2", + "ry": "2" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "14", + "r": "4" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "6", + "x2": "12", + "y2": "6" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.speaker = speaker; \ No newline at end of file diff --git a/dist/feather/square.js b/dist/feather/square.js new file mode 100644 index 000000000..b2300f018 --- /dev/null +++ b/dist/feather/square.js @@ -0,0 +1,29 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.square = void 0; +var square = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "x": "3", + "y": "3", + "width": "18", + "height": "18", + "rx": "2", + "ry": "2" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.square = square; \ No newline at end of file diff --git a/dist/feather/star.js b/dist/feather/star.js new file mode 100644 index 000000000..c8f8e790d --- /dev/null +++ b/dist/feather/star.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.star = void 0; +var star = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polygon", + "attribs": { + "points": "12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.star = star; \ No newline at end of file diff --git a/dist/feather/stopCircle.js b/dist/feather/stopCircle.js new file mode 100644 index 000000000..301177c8c --- /dev/null +++ b/dist/feather/stopCircle.js @@ -0,0 +1,35 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.stopCircle = void 0; +var stopCircle = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "10" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "9", + "y": "9", + "width": "6", + "height": "6" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.stopCircle = stopCircle; \ No newline at end of file diff --git a/dist/feather/sun.js b/dist/feather/sun.js new file mode 100644 index 000000000..1a6dcfd7b --- /dev/null +++ b/dist/feather/sun.js @@ -0,0 +1,98 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.sun = void 0; +var sun = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "5" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "1", + "x2": "12", + "y2": "3" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "21", + "x2": "12", + "y2": "23" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "4.22", + "y1": "4.22", + "x2": "5.64", + "y2": "5.64" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "18.36", + "y1": "18.36", + "x2": "19.78", + "y2": "19.78" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "1", + "y1": "12", + "x2": "3", + "y2": "12" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "21", + "y1": "12", + "x2": "23", + "y2": "12" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "4.22", + "y1": "19.78", + "x2": "5.64", + "y2": "18.36" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "18.36", + "y1": "5.64", + "x2": "19.78", + "y2": "4.22" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.sun = sun; \ No newline at end of file diff --git a/dist/feather/sunrise.js b/dist/feather/sunrise.js new file mode 100644 index 000000000..25b76f0d8 --- /dev/null +++ b/dist/feather/sunrise.js @@ -0,0 +1,84 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.sunrise = void 0; +var sunrise = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M17 18a5 5 0 0 0-10 0" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "2", + "x2": "12", + "y2": "9" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "4.22", + "y1": "10.22", + "x2": "5.64", + "y2": "11.64" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "1", + "y1": "18", + "x2": "3", + "y2": "18" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "21", + "y1": "18", + "x2": "23", + "y2": "18" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "18.36", + "y1": "11.64", + "x2": "19.78", + "y2": "10.22" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "23", + "y1": "22", + "x2": "1", + "y2": "22" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "8 6 12 2 16 6" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.sunrise = sunrise; \ No newline at end of file diff --git a/dist/feather/sunset.js b/dist/feather/sunset.js new file mode 100644 index 000000000..3bd39d105 --- /dev/null +++ b/dist/feather/sunset.js @@ -0,0 +1,84 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.sunset = void 0; +var sunset = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M17 18a5 5 0 0 0-10 0" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "9", + "x2": "12", + "y2": "2" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "4.22", + "y1": "10.22", + "x2": "5.64", + "y2": "11.64" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "1", + "y1": "18", + "x2": "3", + "y2": "18" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "21", + "y1": "18", + "x2": "23", + "y2": "18" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "18.36", + "y1": "11.64", + "x2": "19.78", + "y2": "10.22" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "23", + "y1": "22", + "x2": "1", + "y2": "22" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "16 5 12 9 8 5" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.sunset = sunset; \ No newline at end of file diff --git a/dist/feather/tablet.js b/dist/feather/tablet.js new file mode 100644 index 000000000..efc7e10a6 --- /dev/null +++ b/dist/feather/tablet.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.tablet = void 0; +var tablet = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "x": "4", + "y": "2", + "width": "16", + "height": "20", + "rx": "2", + "ry": "2", + "transform": "rotate(180 12 12)" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "18", + "x2": "12", + "y2": "18" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.tablet = tablet; \ No newline at end of file diff --git a/dist/feather/tag.js b/dist/feather/tag.js new file mode 100644 index 000000000..4ef89e165 --- /dev/null +++ b/dist/feather/tag.js @@ -0,0 +1,33 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.tag = void 0; +var tag = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M20.59 13.41l-7.17 7.17a2 2 0 0 1-2.83 0L2 12V2h10l8.59 8.59a2 2 0 0 1 0 2.82z" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "7", + "y1": "7", + "x2": "7", + "y2": "7" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.tag = tag; \ No newline at end of file diff --git a/dist/feather/target.js b/dist/feather/target.js new file mode 100644 index 000000000..72ec0c4f7 --- /dev/null +++ b/dist/feather/target.js @@ -0,0 +1,42 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.target = void 0; +var target = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "10" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "6" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "2" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.target = target; \ No newline at end of file diff --git a/dist/feather/terminal.js b/dist/feather/terminal.js new file mode 100644 index 000000000..d0369006f --- /dev/null +++ b/dist/feather/terminal.js @@ -0,0 +1,33 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.terminal = void 0; +var terminal = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "4 17 10 11 4 5" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "19", + "x2": "20", + "y2": "19" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.terminal = terminal; \ No newline at end of file diff --git a/dist/feather/thermometer.js b/dist/feather/thermometer.js new file mode 100644 index 000000000..50b854468 --- /dev/null +++ b/dist/feather/thermometer.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.thermometer = void 0; +var thermometer = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M14 14.76V3.5a2.5 2.5 0 0 0-5 0v11.26a4.5 4.5 0 1 0 5 0z" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.thermometer = thermometer; \ No newline at end of file diff --git a/dist/feather/thumbsDown.js b/dist/feather/thumbsDown.js new file mode 100644 index 000000000..37bf69ebd --- /dev/null +++ b/dist/feather/thumbsDown.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.thumbsDown = void 0; +var thumbsDown = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M10 15v4a3 3 0 0 0 3 3l4-9V2H5.72a2 2 0 0 0-2 1.7l-1.38 9a2 2 0 0 0 2 2.3zm7-13h2.67A2.31 2.31 0 0 1 22 4v7a2.31 2.31 0 0 1-2.33 2H17" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.thumbsDown = thumbsDown; \ No newline at end of file diff --git a/dist/feather/thumbsUp.js b/dist/feather/thumbsUp.js new file mode 100644 index 000000000..f4cb12991 --- /dev/null +++ b/dist/feather/thumbsUp.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.thumbsUp = void 0; +var thumbsUp = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M14 9V5a3 3 0 0 0-3-3l-4 9v11h11.28a2 2 0 0 0 2-1.7l1.38-9a2 2 0 0 0-2-2.3zM7 22H4a2 2 0 0 1-2-2v-7a2 2 0 0 1 2-2h3" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.thumbsUp = thumbsUp; \ No newline at end of file diff --git a/dist/feather/toggleLeft.js b/dist/feather/toggleLeft.js new file mode 100644 index 000000000..c11232c4b --- /dev/null +++ b/dist/feather/toggleLeft.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.toggleLeft = void 0; +var toggleLeft = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "5", + "width": "22", + "height": "14", + "rx": "7", + "ry": "7" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "8", + "cy": "12", + "r": "3" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.toggleLeft = toggleLeft; \ No newline at end of file diff --git a/dist/feather/toggleRight.js b/dist/feather/toggleRight.js new file mode 100644 index 000000000..2dbda7885 --- /dev/null +++ b/dist/feather/toggleRight.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.toggleRight = void 0; +var toggleRight = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "5", + "width": "22", + "height": "14", + "rx": "7", + "ry": "7" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "16", + "cy": "12", + "r": "3" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.toggleRight = toggleRight; \ No newline at end of file diff --git a/dist/feather/trash.js b/dist/feather/trash.js new file mode 100644 index 000000000..af0f51e85 --- /dev/null +++ b/dist/feather/trash.js @@ -0,0 +1,30 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.trash = void 0; +var trash = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "3 6 5 6 21 6" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.trash = trash; \ No newline at end of file diff --git a/dist/feather/trash2.js b/dist/feather/trash2.js new file mode 100644 index 000000000..a61fbf859 --- /dev/null +++ b/dist/feather/trash2.js @@ -0,0 +1,48 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.trash2 = void 0; +var trash2 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "3 6 5 6 21 6" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "10", + "y1": "11", + "x2": "10", + "y2": "17" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "14", + "y1": "11", + "x2": "14", + "y2": "17" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.trash2 = trash2; \ No newline at end of file diff --git a/dist/feather/trendingDown.js b/dist/feather/trendingDown.js new file mode 100644 index 000000000..e13ee3b2d --- /dev/null +++ b/dist/feather/trendingDown.js @@ -0,0 +1,30 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.trendingDown = void 0; +var trendingDown = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "23 18 13.5 8.5 8.5 13.5 1 6" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "17 18 23 18 23 12" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.trendingDown = trendingDown; \ No newline at end of file diff --git a/dist/feather/trendingUp.js b/dist/feather/trendingUp.js new file mode 100644 index 000000000..74bdb7754 --- /dev/null +++ b/dist/feather/trendingUp.js @@ -0,0 +1,30 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.trendingUp = void 0; +var trendingUp = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "23 6 13.5 15.5 8.5 10.5 1 18" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "17 6 23 6 23 12" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.trendingUp = trendingUp; \ No newline at end of file diff --git a/dist/feather/triangle.js b/dist/feather/triangle.js new file mode 100644 index 000000000..6c9d8a6c7 --- /dev/null +++ b/dist/feather/triangle.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.triangle = void 0; +var triangle = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.triangle = triangle; \ No newline at end of file diff --git a/dist/feather/truck.js b/dist/feather/truck.js new file mode 100644 index 000000000..3381210b3 --- /dev/null +++ b/dist/feather/truck.js @@ -0,0 +1,49 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.truck = void 0; +var truck = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "3", + "width": "15", + "height": "13" + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "points": "16 8 20 8 23 11 23 16 16 16 16 8" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "5.5", + "cy": "18.5", + "r": "2.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "18.5", + "cy": "18.5", + "r": "2.5" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.truck = truck; \ No newline at end of file diff --git a/dist/feather/tv.js b/dist/feather/tv.js new file mode 100644 index 000000000..1e9fec9ff --- /dev/null +++ b/dist/feather/tv.js @@ -0,0 +1,35 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.tv = void 0; +var tv = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "x": "2", + "y": "7", + "width": "20", + "height": "15", + "rx": "2", + "ry": "2" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "17 2 12 7 7 2" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.tv = tv; \ No newline at end of file diff --git a/dist/feather/twitter.js b/dist/feather/twitter.js new file mode 100644 index 000000000..8b0db8891 --- /dev/null +++ b/dist/feather/twitter.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.twitter = void 0; +var twitter = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M23 3a10.9 10.9 0 0 1-3.14 1.53 4.48 4.48 0 0 0-7.86 3v1A10.66 10.66 0 0 1 3 4s-4 9 5 13a11.64 11.64 0 0 1-7 2c9 5 20 0 20-11.5a4.5 4.5 0 0 0-.08-.83A7.72 7.72 0 0 0 23 3z" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.twitter = twitter; \ No newline at end of file diff --git a/dist/feather/type.js b/dist/feather/type.js new file mode 100644 index 000000000..481009c5a --- /dev/null +++ b/dist/feather/type.js @@ -0,0 +1,42 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.type = void 0; +var type = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "4 7 4 4 20 4 20 7" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "9", + "y1": "20", + "x2": "15", + "y2": "20" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "4", + "x2": "12", + "y2": "20" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.type = type; \ No newline at end of file diff --git a/dist/feather/umbrella.js b/dist/feather/umbrella.js new file mode 100644 index 000000000..c67d198a0 --- /dev/null +++ b/dist/feather/umbrella.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.umbrella = void 0; +var umbrella = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M23 12a11.05 11.05 0 0 0-22 0zm-5 7a3 3 0 0 1-6 0v-7" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.umbrella = umbrella; \ No newline at end of file diff --git a/dist/feather/underline.js b/dist/feather/underline.js new file mode 100644 index 000000000..cccdae80d --- /dev/null +++ b/dist/feather/underline.js @@ -0,0 +1,33 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.underline = void 0; +var underline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M6 3v7a6 6 0 0 0 6 6 6 6 0 0 0 6-6V3" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "4", + "y1": "21", + "x2": "20", + "y2": "21" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.underline = underline; \ No newline at end of file diff --git a/dist/feather/unlock.js b/dist/feather/unlock.js new file mode 100644 index 000000000..276cc9461 --- /dev/null +++ b/dist/feather/unlock.js @@ -0,0 +1,35 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.unlock = void 0; +var unlock = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "x": "3", + "y": "11", + "width": "18", + "height": "11", + "rx": "2", + "ry": "2" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 11V7a5 5 0 0 1 9.9-1" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.unlock = unlock; \ No newline at end of file diff --git a/dist/feather/upload.js b/dist/feather/upload.js new file mode 100644 index 000000000..4dbd1fe43 --- /dev/null +++ b/dist/feather/upload.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.upload = void 0; +var upload = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "17 8 12 3 7 8" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "3", + "x2": "12", + "y2": "15" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.upload = upload; \ No newline at end of file diff --git a/dist/feather/uploadCloud.js b/dist/feather/uploadCloud.js new file mode 100644 index 000000000..e0cfddae2 --- /dev/null +++ b/dist/feather/uploadCloud.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.uploadCloud = void 0; +var uploadCloud = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "16 16 12 12 8 16" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "12", + "x2": "12", + "y2": "21" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20.39 18.39A5 5 0 0 0 18 9h-1.26A8 8 0 1 0 3 16.3" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "16 16 12 12 8 16" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.uploadCloud = uploadCloud; \ No newline at end of file diff --git a/dist/feather/user.js b/dist/feather/user.js new file mode 100644 index 000000000..56cb65935 --- /dev/null +++ b/dist/feather/user.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.user = void 0; +var user = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "7", + "r": "4" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.user = user; \ No newline at end of file diff --git a/dist/feather/userCheck.js b/dist/feather/userCheck.js new file mode 100644 index 000000000..cca5b1f8f --- /dev/null +++ b/dist/feather/userCheck.js @@ -0,0 +1,38 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.userCheck = void 0; +var userCheck = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "8.5", + "cy": "7", + "r": "4" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "17 11 19 13 23 9" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.userCheck = userCheck; \ No newline at end of file diff --git a/dist/feather/userMinus.js b/dist/feather/userMinus.js new file mode 100644 index 000000000..5c95cd304 --- /dev/null +++ b/dist/feather/userMinus.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.userMinus = void 0; +var userMinus = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "8.5", + "cy": "7", + "r": "4" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "23", + "y1": "11", + "x2": "17", + "y2": "11" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.userMinus = userMinus; \ No newline at end of file diff --git a/dist/feather/userPlus.js b/dist/feather/userPlus.js new file mode 100644 index 000000000..449cbd178 --- /dev/null +++ b/dist/feather/userPlus.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.userPlus = void 0; +var userPlus = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "8.5", + "cy": "7", + "r": "4" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "20", + "y1": "8", + "x2": "20", + "y2": "14" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "23", + "y1": "11", + "x2": "17", + "y2": "11" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.userPlus = userPlus; \ No newline at end of file diff --git a/dist/feather/userX.js b/dist/feather/userX.js new file mode 100644 index 000000000..d0b7107d4 --- /dev/null +++ b/dist/feather/userX.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.userX = void 0; +var userX = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "8.5", + "cy": "7", + "r": "4" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "18", + "y1": "8", + "x2": "23", + "y2": "13" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "23", + "y1": "8", + "x2": "18", + "y2": "13" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.userX = userX; \ No newline at end of file diff --git a/dist/feather/users.js b/dist/feather/users.js new file mode 100644 index 000000000..772e7bb37 --- /dev/null +++ b/dist/feather/users.js @@ -0,0 +1,44 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.users = void 0; +var users = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "9", + "cy": "7", + "r": "4" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M23 21v-2a4 4 0 0 0-3-3.87" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 3.13a4 4 0 0 1 0 7.75" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.users = users; \ No newline at end of file diff --git a/dist/feather/video.js b/dist/feather/video.js new file mode 100644 index 000000000..a19e60ffd --- /dev/null +++ b/dist/feather/video.js @@ -0,0 +1,35 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.video = void 0; +var video = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polygon", + "attribs": { + "points": "23 7 16 12 23 17 23 7" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "1", + "y": "5", + "width": "15", + "height": "14", + "rx": "2", + "ry": "2" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.video = video; \ No newline at end of file diff --git a/dist/feather/videoOff.js b/dist/feather/videoOff.js new file mode 100644 index 000000000..20763717b --- /dev/null +++ b/dist/feather/videoOff.js @@ -0,0 +1,33 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.videoOff = void 0; +var videoOff = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M16 16v1a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h2m5.66 0H14a2 2 0 0 1 2 2v3.34l1 1L23 7v10" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "1", + "y1": "1", + "x2": "23", + "y2": "23" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.videoOff = videoOff; \ No newline at end of file diff --git a/dist/feather/voicemail.js b/dist/feather/voicemail.js new file mode 100644 index 000000000..320912292 --- /dev/null +++ b/dist/feather/voicemail.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.voicemail = void 0; +var voicemail = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "5.5", + "cy": "11.5", + "r": "4.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "18.5", + "cy": "11.5", + "r": "4.5" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "5.5", + "y1": "16", + "x2": "18.5", + "y2": "16" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.voicemail = voicemail; \ No newline at end of file diff --git a/dist/feather/volume.js b/dist/feather/volume.js new file mode 100644 index 000000000..8f0575e18 --- /dev/null +++ b/dist/feather/volume.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.volume = void 0; +var volume = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polygon", + "attribs": { + "points": "11 5 6 9 2 9 2 15 6 15 11 19 11 5" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.volume = volume; \ No newline at end of file diff --git a/dist/feather/volume1.js b/dist/feather/volume1.js new file mode 100644 index 000000000..3a01008ea --- /dev/null +++ b/dist/feather/volume1.js @@ -0,0 +1,30 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.volume1 = void 0; +var volume1 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polygon", + "attribs": { + "points": "11 5 6 9 2 9 2 15 6 15 11 19 11 5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.54 8.46a5 5 0 0 1 0 7.07" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.volume1 = volume1; \ No newline at end of file diff --git a/dist/feather/volume2.js b/dist/feather/volume2.js new file mode 100644 index 000000000..74bc2c75a --- /dev/null +++ b/dist/feather/volume2.js @@ -0,0 +1,30 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.volume2 = void 0; +var volume2 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polygon", + "attribs": { + "points": "11 5 6 9 2 9 2 15 6 15 11 19 11 5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.07 4.93a10 10 0 0 1 0 14.14M15.54 8.46a5 5 0 0 1 0 7.07" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.volume2 = volume2; \ No newline at end of file diff --git a/dist/feather/volumeX.js b/dist/feather/volumeX.js new file mode 100644 index 000000000..b6f5789f5 --- /dev/null +++ b/dist/feather/volumeX.js @@ -0,0 +1,42 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.volumeX = void 0; +var volumeX = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polygon", + "attribs": { + "points": "11 5 6 9 2 9 2 15 6 15 11 19 11 5" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "23", + "y1": "9", + "x2": "17", + "y2": "15" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "17", + "y1": "9", + "x2": "23", + "y2": "15" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.volumeX = volumeX; \ No newline at end of file diff --git a/dist/feather/watch.js b/dist/feather/watch.js new file mode 100644 index 000000000..adaa98009 --- /dev/null +++ b/dist/feather/watch.js @@ -0,0 +1,38 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.watch = void 0; +var watch = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "7" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "12 9 12 12 13.5 13.5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16.51 17.35l-.35 3.83a2 2 0 0 1-2 1.82H9.83a2 2 0 0 1-2-1.82l-.35-3.83m.01-10.7l.35-3.83A2 2 0 0 1 9.83 1h4.35a2 2 0 0 1 2 1.82l.35 3.83" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.watch = watch; \ No newline at end of file diff --git a/dist/feather/wifi.js b/dist/feather/wifi.js new file mode 100644 index 000000000..648b3d821 --- /dev/null +++ b/dist/feather/wifi.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.wifi = void 0; +var wifi = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M5 12.55a11 11 0 0 1 14.08 0" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M1.42 9a16 16 0 0 1 21.16 0" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8.53 16.11a6 6 0 0 1 6.95 0" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "20", + "x2": "12", + "y2": "20" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.wifi = wifi; \ No newline at end of file diff --git a/dist/feather/wifiOff.js b/dist/feather/wifiOff.js new file mode 100644 index 000000000..549ed6f7f --- /dev/null +++ b/dist/feather/wifiOff.js @@ -0,0 +1,66 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.wifiOff = void 0; +var wifiOff = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "line", + "attribs": { + "x1": "1", + "y1": "1", + "x2": "23", + "y2": "23" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16.72 11.06A10.94 10.94 0 0 1 19 12.55" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 12.55a10.94 10.94 0 0 1 5.17-2.39" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10.71 5.05A16 16 0 0 1 22.58 9" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M1.42 9a15.91 15.91 0 0 1 4.7-2.88" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8.53 16.11a6 6 0 0 1 6.95 0" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "12", + "y1": "20", + "x2": "12", + "y2": "20" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.wifiOff = wifiOff; \ No newline at end of file diff --git a/dist/feather/wind.js b/dist/feather/wind.js new file mode 100644 index 000000000..1c7a01737 --- /dev/null +++ b/dist/feather/wind.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.wind = void 0; +var wind = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M9.59 4.59A2 2 0 1 1 11 8H2m10.59 11.41A2 2 0 1 0 14 16H2m15.73-8.27A2.5 2.5 0 1 1 19.5 12H2" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.wind = wind; \ No newline at end of file diff --git a/dist/feather/x.js b/dist/feather/x.js new file mode 100644 index 000000000..5863a929a --- /dev/null +++ b/dist/feather/x.js @@ -0,0 +1,36 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.x = void 0; +var x = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "line", + "attribs": { + "x1": "18", + "y1": "6", + "x2": "6", + "y2": "18" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "6", + "y1": "6", + "x2": "18", + "y2": "18" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.x = x; \ No newline at end of file diff --git a/dist/feather/xCircle.js b/dist/feather/xCircle.js new file mode 100644 index 000000000..09b6f3f0c --- /dev/null +++ b/dist/feather/xCircle.js @@ -0,0 +1,44 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.xCircle = void 0; +var xCircle = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "10" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "15", + "y1": "9", + "x2": "9", + "y2": "15" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "9", + "y1": "9", + "x2": "15", + "y2": "15" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.xCircle = xCircle; \ No newline at end of file diff --git a/dist/feather/xSquare.js b/dist/feather/xSquare.js new file mode 100644 index 000000000..cc746bdd8 --- /dev/null +++ b/dist/feather/xSquare.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.xSquare = void 0; +var xSquare = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "x": "3", + "y": "3", + "width": "18", + "height": "18", + "rx": "2", + "ry": "2" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "9", + "y1": "9", + "x2": "15", + "y2": "15" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "15", + "y1": "9", + "x2": "9", + "y2": "15" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.xSquare = xSquare; \ No newline at end of file diff --git a/dist/feather/youtube.js b/dist/feather/youtube.js new file mode 100644 index 000000000..59c2a6804 --- /dev/null +++ b/dist/feather/youtube.js @@ -0,0 +1,30 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.youtube = void 0; +var youtube = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M22.54 6.42a2.78 2.78 0 0 0-1.94-2C18.88 4 12 4 12 4s-6.88 0-8.6.46a2.78 2.78 0 0 0-1.94 2A29 29 0 0 0 1 11.75a29 29 0 0 0 .46 5.33A2.78 2.78 0 0 0 3.4 19c1.72.46 8.6.46 8.6.46s6.88 0 8.6-.46a2.78 2.78 0 0 0 1.94-2 29 29 0 0 0 .46-5.25 29 29 0 0 0-.46-5.33z" + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "points": "9.75 15.02 15.5 11.75 9.75 8.48 9.75 15.02" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.youtube = youtube; \ No newline at end of file diff --git a/dist/feather/zap.js b/dist/feather/zap.js new file mode 100644 index 000000000..d3685965c --- /dev/null +++ b/dist/feather/zap.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.zap = void 0; +var zap = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polygon", + "attribs": { + "points": "13 2 3 14 12 14 11 22 21 10 12 10 13 2" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.zap = zap; \ No newline at end of file diff --git a/dist/feather/zapOff.js b/dist/feather/zapOff.js new file mode 100644 index 000000000..487112f10 --- /dev/null +++ b/dist/feather/zapOff.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.zapOff = void 0; +var zapOff = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polyline", + "attribs": { + "points": "12.41 6.75 13 2 10.57 4.92" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "18.57 12.91 21 10 15.66 10" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "points": "8 8 3 14 12 14 11 22 16 16" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "1", + "y1": "1", + "x2": "23", + "y2": "23" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.zapOff = zapOff; \ No newline at end of file diff --git a/dist/feather/zoomIn.js b/dist/feather/zoomIn.js new file mode 100644 index 000000000..c399da4fb --- /dev/null +++ b/dist/feather/zoomIn.js @@ -0,0 +1,53 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.zoomIn = void 0; +var zoomIn = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "11", + "cy": "11", + "r": "8" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "21", + "y1": "21", + "x2": "16.65", + "y2": "16.65" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "11", + "y1": "8", + "x2": "11", + "y2": "14" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "8", + "y1": "11", + "x2": "14", + "y2": "11" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.zoomIn = zoomIn; \ No newline at end of file diff --git a/dist/feather/zoomOut.js b/dist/feather/zoomOut.js new file mode 100644 index 000000000..90e7fca50 --- /dev/null +++ b/dist/feather/zoomOut.js @@ -0,0 +1,44 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.zoomOut = void 0; +var zoomOut = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "11", + "cy": "11", + "r": "8" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "21", + "y1": "21", + "x2": "16.65", + "y2": "16.65" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "x1": "8", + "y1": "11", + "x2": "14", + "y2": "11" + }, + "children": [] + }], + "attribs": { + "fill": "none", + "stroke": "currentColor", + "stroke-width": "2", + "stroke-linecap": "round", + "stroke-linejoin": "round" + } +}; +exports.zoomOut = zoomOut; \ No newline at end of file diff --git a/dist/horizontalCenter.js b/dist/horizontalCenter.js new file mode 100644 index 000000000..c426ab0da --- /dev/null +++ b/dist/horizontalCenter.js @@ -0,0 +1,46 @@ +"use strict"; + +function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); } + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.horizontalCenter = exports["default"] = void 0; + +var _react = _interopRequireWildcard(require("react")); + +function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); } + +function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; } + +function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } + +var horizontalCenter = function horizontalCenter(Component) { + var _ref = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}, + _ref$rAlign = _ref.rAlign, + rAlign = _ref$rAlign === void 0 ? false : _ref$rAlign, + _ref$space = _ref.space, + space = _ref$space === void 0 ? 4 : _ref$space; + + return function (props) { + return /*#__PURE__*/_react["default"].createElement(Component, props, /*#__PURE__*/_react["default"].createElement("div", { + style: { + display: 'inline-flex', + justifyContent: 'center', + 'alignItems': 'center' + } + }, _react.Children.toArray(props.children).map(function (child, idx) { + var spacerField = rAlign ? 'paddingLeft' : 'paddingRight'; + return /*#__PURE__*/_react["default"].createElement("div", { + key: idx, + style: _defineProperty({ + display: 'inline-block' + }, spacerField, space) + }, child); + }))); + }; +}; + +exports.horizontalCenter = horizontalCenter; +var _default = horizontalCenter; +exports["default"] = _default; \ No newline at end of file diff --git a/dist/icomoon/IE.js b/dist/icomoon/IE.js new file mode 100644 index 000000000..8ba4f792c --- /dev/null +++ b/dist/icomoon/IE.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.IE = void 0; +var IE = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.472 9.825h3.688c0.028-0.256 0.040-0.517 0.040-0.784 0-1.253-0.336-2.429-0.924-3.442 0.607-1.614 0.586-2.984-0.227-3.803-0.773-0.77-2.848-0.645-5.194 0.394-0.174-0.013-0.349-0.020-0.526-0.020-3.22 0-5.921 2.216-6.667 5.201 1.010-1.293 2.072-2.231 3.492-2.913-0.129 0.121-0.882 0.87-1.009 0.996-3.743 3.742-4.923 8.63-3.653 9.9 0.965 0.965 2.715 0.802 4.725-0.182 0.934 0.476 1.992 0.744 3.113 0.744 3.018 0 5.575-1.942 6.501-4.648h-3.717c-0.511 0.943-1.512 1.586-2.66 1.586s-2.148-0.642-2.66-1.586c-0.227-0.426-0.358-0.915-0.358-1.432v-0.011h6.035zM5.442 8.013c0.085-1.517 1.347-2.728 2.887-2.728s2.802 1.21 2.887 2.728h-5.774zM14.015 2.559c0.524 0.529 0.511 1.503 0.063 2.719-0.768-1.17-1.883-2.093-3.2-2.619 1.408-0.604 2.553-0.684 3.137-0.1zM1.461 15.113c-0.668-0.669-0.467-2.072 0.394-3.763 0.536 1.504 1.581 2.767 2.927 3.581-1.491 0.677-2.712 0.792-3.321 0.182z" + } + }] +}; +exports.IE = IE; \ No newline at end of file diff --git a/dist/icomoon/IcoMoon.js b/dist/icomoon/IcoMoon.js new file mode 100644 index 000000000..177d94be4 --- /dev/null +++ b/dist/icomoon/IcoMoon.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.IcoMoon = void 0; +var IcoMoon = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4.055 8c0-1.022 0.829-1.851 1.851-1.851s1.851 0.829 1.851 1.851c0 1.022-0.829 1.851-1.851 1.851s-1.851-0.829-1.851-1.851zM8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8c4.418 0 8-3.582 8-8s-3.582-8-8-8zM5.928 14.989c-2.406-1.4-4.023-4.005-4.023-6.989s1.617-5.589 4.023-6.989c2.406 1.399 4.025 4.005 4.025 6.989s-1.618 5.589-4.025 6.989z" + } + }] +}; +exports.IcoMoon = IcoMoon; \ No newline at end of file diff --git a/dist/icomoon/accessibility.js b/dist/icomoon/accessibility.js new file mode 100644 index 000000000..081a2ec23 --- /dev/null +++ b/dist/icomoon/accessibility.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.accessibility = void 0; +var accessibility = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6.5 1.5c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M10 5l5.15-2.221-0.371-0.929-6.279 2.15h-1l-6.279-2.15-0.371 0.929 5.15 2.221v4l-2.051 6.634 0.935 0.355 2.902-6.489h0.429l2.902 6.489 0.935-0.355-2.051-6.634z" + } + }] +}; +exports.accessibility = accessibility; \ No newline at end of file diff --git a/dist/icomoon/addressBook.js b/dist/icomoon/addressBook.js new file mode 100644 index 000000000..f81be6198 --- /dev/null +++ b/dist/icomoon/addressBook.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.addressBook = void 0; +var addressBook = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M3 0v16h12v-16h-12zM9 4.005c1.102 0 1.995 0.893 1.995 1.995s-0.893 1.995-1.995 1.995-1.995-0.893-1.995-1.995 0.893-1.995 1.995-1.995v0zM12 12h-6v-1c0-1.105 0.895-2 2-2v0h2c1.105 0 2 0.895 2 2v1z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M1 1h1.5v3h-1.5v-3z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M1 5h1.5v3h-1.5v-3z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M1 9h1.5v3h-1.5v-3z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M1 13h1.5v3h-1.5v-3z" + } + }] +}; +exports.addressBook = addressBook; \ No newline at end of file diff --git a/dist/icomoon/aidKit.js b/dist/icomoon/aidKit.js new file mode 100644 index 000000000..350776227 --- /dev/null +++ b/dist/icomoon/aidKit.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.aidKit = void 0; +var aidKit = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14 4h-3v-2c0-0.55-0.45-1-1-1h-4c-0.55 0-1 0.45-1 1v2h-3c-1.1 0-2 0.9-2 2v8c0 1.1 0.9 2 2 2h12c1.1 0 2-0.9 2-2v-8c0-1.1-0.9-2-2-2zM6 2h4v2h-4v-2zM12 11h-3v3h-2v-3h-3v-2h3v-3h2v3h3v2z" + } + }] +}; +exports.aidKit = aidKit; \ No newline at end of file diff --git a/dist/icomoon/airplane.js b/dist/icomoon/airplane.js new file mode 100644 index 000000000..d434cc09d --- /dev/null +++ b/dist/icomoon/airplane.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.airplane = void 0; +var airplane = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12 9.999l-2.857-2.857 6.857-5.143-2-2-8.571 3.429-2.698-2.699c-0.778-0.778-1.864-0.964-2.414-0.414s-0.364 1.636 0.414 2.414l2.698 2.698-3.429 8.572 2 2 5.144-6.857 2.857 2.857v4h2l1-3 3-1v-2l-4 0z" + } + }] +}; +exports.airplane = airplane; \ No newline at end of file diff --git a/dist/icomoon/alarm.js b/dist/icomoon/alarm.js new file mode 100644 index 000000000..391594f87 --- /dev/null +++ b/dist/icomoon/alarm.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.alarm = void 0; +var alarm = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 2c-3.866 0-7 3.134-7 7s3.134 7 7 7 7-3.134 7-7-3.134-7-7-7zM8 14.625c-3.107 0-5.625-2.518-5.625-5.625s2.518-5.625 5.625-5.625c3.107 0 5.625 2.518 5.625 5.625s-2.518 5.625-5.625 5.625zM14.606 4.487c0.251-0.438 0.394-0.946 0.394-1.487 0-1.657-1.343-3-3-3-0.966 0-1.825 0.457-2.374 1.166 2.061 0.426 3.831 1.644 4.98 3.322v0zM6.374 1.166c-0.549-0.709-1.408-1.166-2.374-1.166-1.657 0-3 1.343-3 3 0 0.541 0.143 1.049 0.394 1.487 1.148-1.678 2.919-2.896 4.98-3.322z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 9v-4h-1v5h4v-1z" + } + }] +}; +exports.alarm = alarm; \ No newline at end of file diff --git a/dist/icomoon/amazon.js b/dist/icomoon/amazon.js new file mode 100644 index 000000000..f1a5fd133 --- /dev/null +++ b/dist/icomoon/amazon.js @@ -0,0 +1,29 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.amazon = void 0; +var amazon = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.463 13.831c-1.753 1.294-4.291 1.981-6.478 1.981-3.066 0-5.825-1.131-7.912-3.019-0.163-0.147-0.019-0.35 0.178-0.234 2.253 1.313 5.041 2.1 7.919 2.1 1.941 0 4.075-0.403 6.041-1.238 0.294-0.125 0.544 0.197 0.253 0.409z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.191 13c-0.225-0.287-1.481-0.137-2.047-0.069-0.172 0.019-0.197-0.128-0.044-0.238 1.003-0.703 2.647-0.5 2.838-0.266 0.194 0.238-0.050 1.884-0.991 2.672-0.144 0.122-0.281 0.056-0.219-0.103 0.216-0.528 0.688-1.709 0.463-1.997z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.053 11.838l0.003 0.003c0.387-0.341 1.084-0.95 1.478-1.278 0.156-0.125 0.128-0.334 0.006-0.509-0.353-0.488-0.728-0.884-0.728-1.784v-3c0-1.272 0.088-2.438-0.847-3.313-0.738-0.706-1.963-0.956-2.9-0.956-1.831 0-3.875 0.684-4.303 2.947-0.047 0.241 0.131 0.369 0.287 0.403l1.866 0.203c0.175-0.009 0.3-0.181 0.334-0.356 0.159-0.778 0.813-1.156 1.547-1.156 0.397 0 0.847 0.144 1.081 0.5 0.269 0.397 0.234 0.938 0.234 1.397v0.25c-1.116 0.125-2.575 0.206-3.619 0.666-1.206 0.522-2.053 1.584-2.053 3.147 0 2 1.259 3 2.881 3 1.369 0 2.116-0.322 3.172-1.403 0.35 0.506 0.463 0.753 1.103 1.284 0.147 0.078 0.328 0.072 0.456-0.044zM9.113 7.144c0 0.75 0.019 1.375-0.359 2.041-0.306 0.544-0.791 0.875-1.331 0.875-0.737 0-1.169-0.563-1.169-1.394 0-1.641 1.472-1.938 2.863-1.938v0.416z" + } + }] +}; +exports.amazon = amazon; \ No newline at end of file diff --git a/dist/icomoon/android.js b/dist/icomoon/android.js new file mode 100644 index 000000000..045029bb9 --- /dev/null +++ b/dist/icomoon/android.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.android = void 0; +var android = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14 6c-0.55 0-1 0.45-1 1v4c0 0.55 0.45 1 1 1s1-0.45 1-1v-4c0-0.55-0.45-1-1-1zM2 6c-0.55 0-1 0.45-1 1v4c0 0.55 0.45 1 1 1s1-0.45 1-1v-4c0-0.55-0.45-1-1-1zM3.5 11.5c0 0.828 0.672 1.5 1.5 1.5v0 2c0 0.55 0.45 1 1 1s1-0.45 1-1v-2h2v2c0 0.55 0.45 1 1 1s1-0.45 1-1v-2c0.828 0 1.5-0.672 1.5-1.5v-5.5h-9v5.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12.472 5c-0.152-1.373-0.922-2.559-2.025-3.276l0.5-1.001c0.123-0.247 0.023-0.547-0.224-0.671s-0.547-0.023-0.671 0.224l-0.502 1.004-0.13-0.052c-0.446-0.148-0.924-0.229-1.42-0.229s-0.974 0.081-1.42 0.229l-0.13 0.052-0.502-1.004c-0.123-0.247-0.424-0.347-0.671-0.224s-0.347 0.424-0.224 0.671l0.5 1.001c-1.103 0.716-1.873 1.903-2.025 3.276v0.5h8.972v-0.5h-0.028zM6.5 4c-0.276 0-0.5-0.224-0.5-0.5s0.223-0.499 0.499-0.5c0 0 0.001 0 0.001 0s0.001-0 0.001-0c0.276 0.001 0.499 0.224 0.499 0.5s-0.224 0.5-0.5 0.5zM9.5 4c-0.276 0-0.5-0.224-0.5-0.5s0.223-0.499 0.499-0.5c0 0 0.001 0 0.001 0s0.001-0 0.002-0c0.276 0.001 0.499 0.224 0.499 0.5s-0.224 0.5-0.5 0.5z" + } + }] +}; +exports.android = android; \ No newline at end of file diff --git a/dist/icomoon/angry.js b/dist/icomoon/angry.js new file mode 100644 index 000000000..2b910f637 --- /dev/null +++ b/dist/icomoon/angry.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.angry = void 0; +var angry = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5zM11.002 12.199c-0.612-1.018-1.727-1.699-3.002-1.699s-2.389 0.681-3.002 1.699l-1.286-0.772c0.874-1.454 2.467-2.427 4.288-2.427s3.414 0.973 4.288 2.427l-1.286 0.772zM11.985 4.379c0.067 0.268-0.096 0.539-0.364 0.606-0.275 0.070-0.602 0.189-0.89 0.334 0.166 0.179 0.268 0.418 0.268 0.681 0 0.552-0.448 1-1 1s-1-0.448-1-1c0-0.018 0.001-0.036 0.002-0.054 0.032-0.741 0.706-1.234 1.275-1.518 0.543-0.271 1.080-0.407 1.102-0.413 0.268-0.067 0.539 0.096 0.606 0.364zM4.015 4.379c0.067-0.268 0.338-0.431 0.606-0.364 0.023 0.006 0.559 0.141 1.102 0.413 0.568 0.284 1.243 0.776 1.275 1.518 0.001 0.018 0.002 0.036 0.002 0.054 0 0.552-0.448 1-1 1s-1-0.448-1-1c0-0.263 0.102-0.503 0.268-0.681-0.288-0.144-0.614-0.264-0.89-0.334-0.268-0.067-0.431-0.338-0.364-0.606z" + } + }] +}; +exports.angry = angry; \ No newline at end of file diff --git a/dist/icomoon/angry2.js b/dist/icomoon/angry2.js new file mode 100644 index 000000000..3cbabbd55 --- /dev/null +++ b/dist/icomoon/angry2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.angry2 = void 0; +var angry2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM9.001 5.946c0.032-0.741 0.706-1.234 1.275-1.518 0.543-0.271 1.080-0.407 1.102-0.413 0.268-0.067 0.539 0.096 0.606 0.364s-0.096 0.539-0.364 0.606c-0.275 0.070-0.602 0.189-0.89 0.334 0.166 0.179 0.268 0.418 0.268 0.681 0 0.552-0.448 1-1 1s-1-0.448-1-1c0-0.018 0.001-0.036 0.002-0.054zM4.015 4.379c0.067-0.268 0.338-0.431 0.606-0.364 0.023 0.006 0.559 0.141 1.102 0.413 0.568 0.284 1.243 0.776 1.275 1.518 0.001 0.018 0.002 0.036 0.002 0.054 0 0.552-0.448 1-1 1s-1-0.448-1-1c0-0.263 0.102-0.503 0.268-0.681-0.288-0.144-0.614-0.264-0.89-0.334-0.268-0.067-0.431-0.338-0.364-0.606zM11.002 12.199c-0.612-1.018-1.727-1.699-3.002-1.699s-2.389 0.681-3.002 1.699l-1.286-0.772c0.874-1.454 2.467-2.427 4.288-2.427s3.414 0.973 4.288 2.427l-1.286 0.772z" + } + }] +}; +exports.angry2 = angry2; \ No newline at end of file diff --git a/dist/icomoon/appleinc.js b/dist/icomoon/appleinc.js new file mode 100644 index 000000000..fb5dab44b --- /dev/null +++ b/dist/icomoon/appleinc.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.appleinc = void 0; +var appleinc = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12.367 8.501c-0.020-2.026 1.652-2.998 1.727-3.046-0.94-1.375-2.404-1.564-2.926-1.585-1.246-0.126-2.431 0.734-3.064 0.734-0.631 0-1.607-0.715-2.64-0.696-1.358 0.020-2.61 0.79-3.31 2.006-1.411 2.448-0.361 6.076 1.014 8.061 0.672 0.972 1.473 2.064 2.525 2.025 1.013-0.040 1.396-0.656 2.621-0.656s1.569 0.656 2.641 0.635c1.090-0.020 1.781-0.991 2.448-1.966 0.772-1.128 1.089-2.219 1.108-2.275-0.024-0.011-2.126-0.816-2.147-3.236zM10.353 2.555c0.558-0.677 0.935-1.617 0.832-2.555-0.804 0.033-1.779 0.536-2.356 1.212-0.518 0.6-0.971 1.557-0.85 2.476 0.898 0.070 1.815-0.456 2.373-1.132z" + } + }] +}; +exports.appleinc = appleinc; \ No newline at end of file diff --git a/dist/icomoon/arrowDown.js b/dist/icomoon/arrowDown.js new file mode 100644 index 000000000..9fa5bea76 --- /dev/null +++ b/dist/icomoon/arrowDown.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowDown = void 0; +var arrowDown = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 15.5l7.5-7.5h-4.5v-8h-6v8h-4.5z" + } + }] +}; +exports.arrowDown = arrowDown; \ No newline at end of file diff --git a/dist/icomoon/arrowDown2.js b/dist/icomoon/arrowDown2.js new file mode 100644 index 000000000..672e6628f --- /dev/null +++ b/dist/icomoon/arrowDown2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowDown2 = void 0; +var arrowDown2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.707 9.707l-5 5c-0.39 0.391-1.024 0.391-1.414 0l-5-5c-0.391-0.391-0.391-1.024 0-1.414s1.024-0.391 1.414 0l3.293 3.293v-9.586c0-0.552 0.448-1 1-1s1 0.448 1 1v9.586l3.293-3.293c0.195-0.195 0.451-0.293 0.707-0.293s0.512 0.098 0.707 0.293c0.391 0.391 0.391 1.024 0 1.414z" + } + }] +}; +exports.arrowDown2 = arrowDown2; \ No newline at end of file diff --git a/dist/icomoon/arrowDownLeft.js b/dist/icomoon/arrowDownLeft.js new file mode 100644 index 000000000..4adeedbc4 --- /dev/null +++ b/dist/icomoon/arrowDownLeft.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowDownLeft = void 0; +var arrowDownLeft = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.5 16l-4-4 8.5-8.5-3.5-3.5-8.5 8.5-4-4v11.5h11.5z" + } + }] +}; +exports.arrowDownLeft = arrowDownLeft; \ No newline at end of file diff --git a/dist/icomoon/arrowDownLeft2.js b/dist/icomoon/arrowDownLeft2.js new file mode 100644 index 000000000..171e151e6 --- /dev/null +++ b/dist/icomoon/arrowDownLeft2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowDownLeft2 = void 0; +var arrowDownLeft2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12.293 2.293l-8.293 8.293v-3.586c0-0.552-0.448-1-1-1s-1 0.448-1 1v6c0 0.404 0.244 0.769 0.617 0.924 0.124 0.051 0.254 0.076 0.383 0.076v0.001l6-0c0.552 0 1-0.448 1-1s-0.448-1-1-1h-3.586l8.293-8.293c0.195-0.195 0.293-0.451 0.293-0.707s-0.098-0.512-0.293-0.707c-0.39-0.391-1.024-0.391-1.414 0v0z" + } + }] +}; +exports.arrowDownLeft2 = arrowDownLeft2; \ No newline at end of file diff --git a/dist/icomoon/arrowDownRight.js b/dist/icomoon/arrowDownRight.js new file mode 100644 index 000000000..4c03dabab --- /dev/null +++ b/dist/icomoon/arrowDownRight.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowDownRight = void 0; +var arrowDownRight = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16 4.5l-4 4-8.5-8.5-3.5 3.5 8.5 8.5-4 4h11.5v-11.5z" + } + }] +}; +exports.arrowDownRight = arrowDownRight; \ No newline at end of file diff --git a/dist/icomoon/arrowDownRight2.js b/dist/icomoon/arrowDownRight2.js new file mode 100644 index 000000000..49e7b68a7 --- /dev/null +++ b/dist/icomoon/arrowDownRight2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowDownRight2 = void 0; +var arrowDownRight2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M2.293 3.707l8.293 8.293h-3.586c-0.552 0-1 0.448-1 1s0.448 1 1 1h6c0.404 0 0.769-0.244 0.924-0.617 0.051-0.124 0.076-0.254 0.076-0.383h0.001v-6c0-0.552-0.448-1-1-1s-1 0.448-1 1v3.586l-8.293-8.293c-0.195-0.195-0.451-0.293-0.707-0.293s-0.512 0.098-0.707 0.293c-0.391 0.39-0.391 1.024 0 1.414z" + } + }] +}; +exports.arrowDownRight2 = arrowDownRight2; \ No newline at end of file diff --git a/dist/icomoon/arrowLeft.js b/dist/icomoon/arrowLeft.js new file mode 100644 index 000000000..4bd4c31fd --- /dev/null +++ b/dist/icomoon/arrowLeft.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowLeft = void 0; +var arrowLeft = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0.5 8l7.5 7.5v-4.5h8v-6h-8v-4.5z" + } + }] +}; +exports.arrowLeft = arrowLeft; \ No newline at end of file diff --git a/dist/icomoon/arrowLeft2.js b/dist/icomoon/arrowLeft2.js new file mode 100644 index 000000000..097666424 --- /dev/null +++ b/dist/icomoon/arrowLeft2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowLeft2 = void 0; +var arrowLeft2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6.293 13.707l-5-5c-0.391-0.39-0.391-1.024 0-1.414l5-5c0.391-0.391 1.024-0.391 1.414 0s0.391 1.024 0 1.414l-3.293 3.293h9.586c0.552 0 1 0.448 1 1s-0.448 1-1 1h-9.586l3.293 3.293c0.195 0.195 0.293 0.451 0.293 0.707s-0.098 0.512-0.293 0.707c-0.391 0.391-1.024 0.391-1.414 0z" + } + }] +}; +exports.arrowLeft2 = arrowLeft2; \ No newline at end of file diff --git a/dist/icomoon/arrowRight.js b/dist/icomoon/arrowRight.js new file mode 100644 index 000000000..6b1ad512a --- /dev/null +++ b/dist/icomoon/arrowRight.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowRight = void 0; +var arrowRight = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.5 8l-7.5-7.5v4.5h-8v6h8v4.5z" + } + }] +}; +exports.arrowRight = arrowRight; \ No newline at end of file diff --git a/dist/icomoon/arrowRight2.js b/dist/icomoon/arrowRight2.js new file mode 100644 index 000000000..f36fa2cc2 --- /dev/null +++ b/dist/icomoon/arrowRight2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowRight2 = void 0; +var arrowRight2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9.707 13.707l5-5c0.391-0.39 0.391-1.024 0-1.414l-5-5c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414l3.293 3.293h-9.586c-0.552 0-1 0.448-1 1s0.448 1 1 1h9.586l-3.293 3.293c-0.195 0.195-0.293 0.451-0.293 0.707s0.098 0.512 0.293 0.707c0.391 0.391 1.024 0.391 1.414 0z" + } + }] +}; +exports.arrowRight2 = arrowRight2; \ No newline at end of file diff --git a/dist/icomoon/arrowUp.js b/dist/icomoon/arrowUp.js new file mode 100644 index 000000000..52926f8e7 --- /dev/null +++ b/dist/icomoon/arrowUp.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowUp = void 0; +var arrowUp = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0.5l-7.5 7.5h4.5v8h6v-8h4.5z" + } + }] +}; +exports.arrowUp = arrowUp; \ No newline at end of file diff --git a/dist/icomoon/arrowUp2.js b/dist/icomoon/arrowUp2.js new file mode 100644 index 000000000..9f1ec1ae8 --- /dev/null +++ b/dist/icomoon/arrowUp2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowUp2 = void 0; +var arrowUp2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.707 6.293l-5-5c-0.39-0.391-1.024-0.391-1.414 0l-5 5c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0l3.293-3.293v9.586c0 0.552 0.448 1 1 1s1-0.448 1-1v-9.586l3.293 3.293c0.195 0.195 0.451 0.293 0.707 0.293s0.512-0.098 0.707-0.293c0.391-0.391 0.391-1.024 0-1.414z" + } + }] +}; +exports.arrowUp2 = arrowUp2; \ No newline at end of file diff --git a/dist/icomoon/arrowUpLeft.js b/dist/icomoon/arrowUpLeft.js new file mode 100644 index 000000000..f4a8fda5a --- /dev/null +++ b/dist/icomoon/arrowUpLeft.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowUpLeft = void 0; +var arrowUpLeft = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 11.5l4-4 8.5 8.5 3.5-3.5-8.5-8.5 4-4h-11.5v11.5z" + } + }] +}; +exports.arrowUpLeft = arrowUpLeft; \ No newline at end of file diff --git a/dist/icomoon/arrowUpLeft2.js b/dist/icomoon/arrowUpLeft2.js new file mode 100644 index 000000000..e0bd6ce74 --- /dev/null +++ b/dist/icomoon/arrowUpLeft2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowUpLeft2 = void 0; +var arrowUpLeft2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.707 12.293l-8.293-8.293h3.586c0.552 0 1-0.448 1-1s-0.448-1-1-1h-6c-0.404 0-0.769 0.244-0.924 0.617-0.051 0.124-0.076 0.254-0.076 0.383h-0.001v6c0 0.552 0.448 1 1 1s1-0.448 1-1v-3.586l8.293 8.293c0.195 0.195 0.451 0.293 0.707 0.293s0.512-0.098 0.707-0.293c0.391-0.39 0.391-1.024 0-1.414z" + } + }] +}; +exports.arrowUpLeft2 = arrowUpLeft2; \ No newline at end of file diff --git a/dist/icomoon/arrowUpRight.js b/dist/icomoon/arrowUpRight.js new file mode 100644 index 000000000..a4bc65aa9 --- /dev/null +++ b/dist/icomoon/arrowUpRight.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowUpRight = void 0; +var arrowUpRight = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4.5 0l4 4-8.5 8.5 3.5 3.5 8.5-8.5 4 4v-11.5h-11.5z" + } + }] +}; +exports.arrowUpRight = arrowUpRight; \ No newline at end of file diff --git a/dist/icomoon/arrowUpRight2.js b/dist/icomoon/arrowUpRight2.js new file mode 100644 index 000000000..6150da5b3 --- /dev/null +++ b/dist/icomoon/arrowUpRight2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowUpRight2 = void 0; +var arrowUpRight2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M3.707 13.707l8.293-8.293v3.586c0 0.552 0.448 1 1 1s1-0.448 1-1v-6c0-0.404-0.244-0.769-0.617-0.924-0.124-0.051-0.254-0.076-0.383-0.076v-0.001h-6c-0.552 0-1 0.448-1 1s0.448 1 1 1h3.586l-8.293 8.293c-0.195 0.195-0.293 0.451-0.293 0.707s0.098 0.512 0.293 0.707c0.39 0.391 1.024 0.391 1.414 0z" + } + }] +}; +exports.arrowUpRight2 = arrowUpRight2; \ No newline at end of file diff --git a/dist/icomoon/attachment.js b/dist/icomoon/attachment.js new file mode 100644 index 000000000..037202431 --- /dev/null +++ b/dist/icomoon/attachment.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.attachment = void 0; +var attachment = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M10.404 5.11l-1.015-1.014-5.075 5.074c-0.841 0.841-0.841 2.204 0 3.044s2.204 0.841 3.045 0l6.090-6.089c1.402-1.401 1.402-3.673 0-5.074s-3.674-1.402-5.075 0l-6.394 6.393c-0.005 0.005-0.010 0.009-0.014 0.013-1.955 1.955-1.955 5.123 0 7.077s5.123 1.954 7.078 0c0.004-0.004 0.008-0.009 0.013-0.014l0.001 0.001 4.365-4.364-1.015-1.014-4.365 4.363c-0.005 0.004-0.009 0.009-0.013 0.013-1.392 1.392-3.656 1.392-5.048 0s-1.392-3.655 0-5.047c0.005-0.005 0.009-0.009 0.014-0.013l-0.001-0.001 6.395-6.393c0.839-0.84 2.205-0.84 3.045 0s0.839 2.205 0 3.044l-6.090 6.089c-0.28 0.28-0.735 0.28-1.015 0s-0.28-0.735 0-1.014l5.075-5.075z" + } + }] +}; +exports.attachment = attachment; \ No newline at end of file diff --git a/dist/icomoon/backward.js b/dist/icomoon/backward.js new file mode 100644 index 000000000..5a33115c5 --- /dev/null +++ b/dist/icomoon/backward.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.backward = void 0; +var backward = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5zM11 10.5l-3.5-2.5 3.5-2.5zM7 10.5l-3.5-2.5 3.5-2.5z" + } + }] +}; +exports.backward = backward; \ No newline at end of file diff --git a/dist/icomoon/backward2.js b/dist/icomoon/backward2.js new file mode 100644 index 000000000..381948d4c --- /dev/null +++ b/dist/icomoon/backward2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.backward2 = void 0; +var backward2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9 2.5v5l5-5v11l-5-5v5l-5.5-5.5z" + } + }] +}; +exports.backward2 = backward2; \ No newline at end of file diff --git a/dist/icomoon/baffled.js b/dist/icomoon/baffled.js new file mode 100644 index 000000000..81edf6943 --- /dev/null +++ b/dist/icomoon/baffled.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.baffled = void 0; +var baffled = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6 6.5c0 0.276-0.224 0.5-0.5 0.5s-0.5-0.224-0.5-0.5c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5.5 5c0.828 0 1.5 0.672 1.5 1.5s-0.672 1.5-1.5 1.5-1.5-0.672-1.5-1.5 0.672-1.5 1.5-1.5zM5.5 4c-1.378 0-2.5 1.122-2.5 2.5s1.122 2.5 2.5 2.5 2.5-1.122 2.5-2.5-1.122-2.5-2.5-2.5v0z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11 6.5c0 0.276-0.224 0.5-0.5 0.5s-0.5-0.224-0.5-0.5c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M10.5 5c0.828 0 1.5 0.672 1.5 1.5s-0.672 1.5-1.5 1.5-1.5-0.672-1.5-1.5 0.672-1.5 1.5-1.5zM10.5 4c-1.379 0-2.5 1.122-2.5 2.5s1.121 2.5 2.5 2.5 2.5-1.122 2.5-2.5-1.121-2.5-2.5-2.5v0z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6 11h4v1h-4v-1z" + } + }] +}; +exports.baffled = baffled; \ No newline at end of file diff --git a/dist/icomoon/baffled2.js b/dist/icomoon/baffled2.js new file mode 100644 index 000000000..da3557974 --- /dev/null +++ b/dist/icomoon/baffled2.js @@ -0,0 +1,29 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.baffled2 = void 0; +var baffled2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6 6.5c0 0.276-0.224 0.5-0.5 0.5s-0.5-0.224-0.5-0.5 0.224-0.5 0.5-0.5 0.5 0.224 0.5 0.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11 6.5c0 0.276-0.224 0.5-0.5 0.5s-0.5-0.224-0.5-0.5 0.224-0.5 0.5-0.5 0.5 0.224 0.5 0.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM4 6.5c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5-0.672 1.5-1.5 1.5-1.5-0.672-1.5-1.5zM10 12h-4v-1h4v1zM10.5 8c-0.828 0-1.5-0.672-1.5-1.5s0.672-1.5 1.5-1.5 1.5 0.672 1.5 1.5-0.672 1.5-1.5 1.5z" + } + }] +}; +exports.baffled2 = baffled2; \ No newline at end of file diff --git a/dist/icomoon/barcode.js b/dist/icomoon/barcode.js new file mode 100644 index 000000000..8fdcf008b --- /dev/null +++ b/dist/icomoon/barcode.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.barcode = void 0; +var barcode = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 2h2v10h-2zM3 2h1v10h-1zM5 2h1v10h-1zM8 2h1v10h-1zM12 2h1v10h-1zM15 2h1v10h-1zM10 2h0.5v10h-0.5zM7 2h0.5v10h-0.5zM13.5 2h0.5v10h-0.5zM0 13h1v1h-1zM3 13h1v1h-1zM5 13h1v1h-1zM10 13h1v1h-1zM15 13h1v1h-1zM12 13h2v1h-2zM7 13h2v1h-2z" + } + }] +}; +exports.barcode = barcode; \ No newline at end of file diff --git a/dist/icomoon/basecamp.js b/dist/icomoon/basecamp.js new file mode 100644 index 000000000..35c8add44 --- /dev/null +++ b/dist/icomoon/basecamp.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basecamp = void 0; +var basecamp = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 1.666c-2.919 0-5.169 2.444-6.444 4.838-0.719 1.347-1.222 2.822-1.453 4.331-0.025 0.172-0.050 0.344-0.069 0.519-0.009 0.094-0.019 0.188-0.025 0.281-0.009 0.119-0.003 0.156 0.059 0.256 0.187 0.303 0.409 0.584 0.659 0.838 0.512 0.525 1.134 0.928 1.794 1.241 1.503 0.709 3.2 0.966 4.85 1.022 1.703 0.056 3.453-0.084 5.081-0.616 1.391-0.453 2.731-1.244 3.503-2.522 0.084-0.137 0.025-0.341 0.009-0.5-0.019-0.191-0.044-0.378-0.075-0.566-0.056-0.369-0.131-0.731-0.222-1.094-0.181-0.738-0.428-1.463-0.728-2.159-1.088-2.525-3.1-5.219-5.963-5.775-0.322-0.063-0.65-0.094-0.978-0.094zM8.1 13.909c-1.784 0-3.728-0.159-5.334-1.019-0.625-0.334-1.262-0.819-1.563-1.484-0.087-0.194-0.056-0.269-0.016-0.497 0.028-0.147 0.041-0.291 0.106-0.428 0.091-0.191 0.184-0.378 0.281-0.566 0.328-0.634 0.681-1.262 1.091-1.853 0.203-0.291 0.419-0.578 0.669-0.828 0.175-0.175 0.388-0.362 0.634-0.422 0.756-0.181 1.334 0.694 1.794 1.134 0.222 0.213 0.519 0.453 0.85 0.412 0.228-0.028 0.431-0.206 0.594-0.353 0.553-0.497 0.997-1.112 1.456-1.691 0.228-0.284 0.453-0.572 0.7-0.844 0.166-0.184 0.347-0.394 0.569-0.513 0.397-0.216 0.903 0.228 1.178 0.456 0.469 0.391 0.884 0.847 1.281 1.309 0.378 0.441 0.744 0.888 1.066 1.372 0.497 0.75 0.928 1.55 1.322 2.359 0.084 0.175 0.113 0.294 0.144 0.488 0.019 0.106 0.059 0.228 0.044 0.338-0.022 0.153-0.128 0.319-0.206 0.444-0.188 0.297-0.441 0.553-0.719 0.769-1.166 0.903-2.744 1.203-4.178 1.338-0.588 0.056-1.175 0.078-1.762 0.078z" + } + }] +}; +exports.basecamp = basecamp; \ No newline at end of file diff --git a/dist/icomoon/behance.js b/dist/icomoon/behance.js new file mode 100644 index 000000000..79a65c4b9 --- /dev/null +++ b/dist/icomoon/behance.js @@ -0,0 +1,29 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.behance = void 0; +var behance = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4.641 3.206c0.472 0 0.897 0.041 1.284 0.125 0.388 0.081 0.716 0.219 0.994 0.406 0.275 0.188 0.487 0.438 0.644 0.75 0.15 0.309 0.225 0.697 0.225 1.156 0 0.497-0.112 0.909-0.338 1.241-0.228 0.331-0.559 0.6-1.003 0.813 0.606 0.175 1.053 0.481 1.353 0.916 0.3 0.438 0.444 0.963 0.444 1.581 0 0.5-0.097 0.928-0.287 1.291-0.194 0.366-0.456 0.662-0.778 0.891-0.325 0.231-0.7 0.4-1.119 0.509-0.416 0.109-0.844 0.166-1.287 0.166h-4.772v-9.844h4.641zM4.359 7.181c0.384 0 0.703-0.091 0.953-0.275 0.25-0.181 0.369-0.481 0.369-0.894 0-0.228-0.041-0.419-0.122-0.566-0.084-0.147-0.194-0.263-0.334-0.344-0.138-0.084-0.294-0.141-0.478-0.172-0.178-0.034-0.366-0.050-0.556-0.050h-2.025v2.3h2.194zM4.478 11.372c0.213 0 0.416-0.019 0.606-0.063 0.194-0.044 0.366-0.109 0.509-0.209 0.144-0.097 0.266-0.225 0.353-0.394 0.088-0.166 0.128-0.378 0.128-0.637 0-0.506-0.144-0.869-0.428-1.088-0.284-0.216-0.662-0.322-1.131-0.322h-2.35v2.709h2.313z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.331 11.338c0.294 0.287 0.716 0.431 1.266 0.431 0.394 0 0.738-0.1 1.022-0.3s0.456-0.412 0.522-0.631h1.725c-0.278 0.859-0.697 1.469-1.272 1.838-0.566 0.369-1.259 0.556-2.063 0.556-0.563 0-1.066-0.091-1.519-0.269-0.453-0.181-0.831-0.434-1.15-0.766-0.309-0.331-0.553-0.725-0.725-1.188-0.169-0.459-0.256-0.969-0.256-1.519 0-0.534 0.088-1.031 0.262-1.491 0.178-0.463 0.422-0.859 0.747-1.194s0.706-0.6 1.156-0.794c0.447-0.194 0.941-0.291 1.488-0.291 0.603 0 1.131 0.116 1.584 0.353 0.45 0.234 0.822 0.55 1.113 0.944s0.497 0.847 0.625 1.353c0.128 0.506 0.172 1.034 0.137 1.588h-5.147c0 0.559 0.188 1.094 0.484 1.378zM13.578 7.594c-0.231-0.256-0.628-0.397-1.106-0.397-0.313 0-0.572 0.053-0.778 0.159-0.203 0.106-0.369 0.237-0.497 0.394-0.125 0.156-0.213 0.325-0.262 0.503-0.050 0.172-0.081 0.331-0.091 0.469h3.188c-0.047-0.5-0.219-0.869-0.453-1.128z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M10.444 4h3.991v0.972h-3.991v-0.972z" + } + }] +}; +exports.behance = behance; \ No newline at end of file diff --git a/dist/icomoon/behance2.js b/dist/icomoon/behance2.js new file mode 100644 index 000000000..f5a6f9e9e --- /dev/null +++ b/dist/icomoon/behance2.js @@ -0,0 +1,35 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.behance2 = void 0; +var behance2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6.316 7.009c0.203-0.147 0.3-0.391 0.3-0.728 0-0.188-0.031-0.341-0.097-0.459-0.069-0.119-0.156-0.213-0.272-0.278-0.112-0.069-0.241-0.116-0.388-0.141-0.144-0.028-0.297-0.041-0.453-0.041h-1.647v1.869h1.781c0.313 0.003 0.572-0.072 0.775-0.222z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6.594 8.697c-0.231-0.175-0.537-0.262-0.919-0.262h-1.916v2.203h1.878c0.175 0 0.338-0.016 0.494-0.050s0.297-0.088 0.416-0.169c0.119-0.078 0.216-0.184 0.287-0.319s0.106-0.309 0.106-0.519c0-0.412-0.116-0.706-0.347-0.884z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.5 0h-13c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM10.488 4.209h3.241v0.791h-3.241v-0.791zM8.463 10.725c-0.156 0.297-0.369 0.537-0.631 0.725-0.266 0.188-0.569 0.325-0.909 0.416-0.338 0.091-0.688 0.134-1.044 0.134h-3.878v-7.997h3.769c0.381 0 0.728 0.034 1.044 0.1 0.313 0.066 0.581 0.178 0.806 0.331 0.222 0.153 0.397 0.356 0.522 0.609 0.122 0.25 0.184 0.566 0.184 0.938 0 0.403-0.091 0.737-0.275 1.006s-0.453 0.487-0.816 0.659c0.494 0.141 0.856 0.391 1.097 0.744 0.244 0.356 0.363 0.784 0.363 1.284 0.003 0.409-0.075 0.759-0.231 1.050zM14.991 9.488h-4.178c0 0.456 0.156 0.891 0.394 1.125 0.238 0.231 0.581 0.35 1.028 0.35 0.322 0 0.597-0.081 0.831-0.244 0.231-0.162 0.372-0.334 0.425-0.512h1.4c-0.225 0.697-0.566 1.194-1.031 1.494-0.459 0.3-1.022 0.45-1.675 0.45-0.456 0-0.866-0.075-1.234-0.219-0.369-0.147-0.675-0.353-0.934-0.622-0.253-0.269-0.447-0.591-0.588-0.966-0.137-0.372-0.209-0.787-0.209-1.234 0-0.434 0.072-0.838 0.213-1.213 0.144-0.375 0.344-0.7 0.606-0.969 0.262-0.272 0.575-0.487 0.938-0.647 0.363-0.156 0.762-0.234 1.206-0.234 0.491 0 0.919 0.094 1.287 0.287 0.366 0.191 0.666 0.447 0.903 0.769s0.403 0.688 0.509 1.1c0.103 0.406 0.137 0.834 0.109 1.284z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12.134 7.247c-0.253 0-0.466 0.044-0.631 0.131s-0.3 0.194-0.403 0.319c-0.103 0.128-0.172 0.263-0.213 0.409-0.041 0.141-0.066 0.269-0.072 0.381h2.588c-0.037-0.406-0.178-0.706-0.366-0.916-0.194-0.213-0.512-0.325-0.903-0.325z" + } + }] +}; +exports.behance2 = behance2; \ No newline at end of file diff --git a/dist/icomoon/bell.js b/dist/icomoon/bell.js new file mode 100644 index 000000000..7b6717876 --- /dev/null +++ b/dist/icomoon/bell.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bell = void 0; +var bell = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16.023 12.5c0-4.5-4-3.5-4-7 0-0.29-0.028-0.538-0.079-0.749-0.263-1.766-1.44-3.183-2.965-3.615 0.014-0.062 0.021-0.125 0.021-0.191 0-0.52-0.45-0.945-1-0.945s-1 0.425-1 0.945c0 0.065 0.007 0.129 0.021 0.191-1.71 0.484-2.983 2.208-3.020 4.273-0.001 0.030-0.001 0.060-0.001 0.091 0 3.5-4 2.5-4 7 0 1.191 2.665 2.187 6.234 2.439 0.336 0.631 1.001 1.061 1.766 1.061s1.43-0.43 1.766-1.061c3.568-0.251 6.234-1.248 6.234-2.439 0-0.004-0-0.007-0-0.011l0.024 0.011zM12.91 13.345c-0.847 0.226-1.846 0.389-2.918 0.479-0.089-1.022-0.947-1.824-1.992-1.824s-1.903 0.802-1.992 1.824c-1.072-0.090-2.071-0.253-2.918-0.479-1.166-0.311-1.724-0.659-1.928-0.845 0.204-0.186 0.762-0.534 1.928-0.845 1.356-0.362 3.1-0.561 4.91-0.561s3.554 0.199 4.91 0.561c1.166 0.311 1.724 0.659 1.928 0.845-0.204 0.186-0.762 0.534-1.928 0.845z" + } + }] +}; +exports.bell = bell; \ No newline at end of file diff --git a/dist/icomoon/bin.js b/dist/icomoon/bin.js new file mode 100644 index 000000000..e5807ff81 --- /dev/null +++ b/dist/icomoon/bin.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bin = void 0; +var bin = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M2 5v10c0 0.55 0.45 1 1 1h9c0.55 0 1-0.45 1-1v-10h-11zM5 14h-1v-7h1v7zM7 14h-1v-7h1v7zM9 14h-1v-7h1v7zM11 14h-1v-7h1v7z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.25 2h-3.25v-1.25c0-0.412-0.338-0.75-0.75-0.75h-3.5c-0.412 0-0.75 0.338-0.75 0.75v1.25h-3.25c-0.413 0-0.75 0.337-0.75 0.75v1.25h13v-1.25c0-0.413-0.338-0.75-0.75-0.75zM9 2h-3v-0.987h3v0.987z" + } + }] +}; +exports.bin = bin; \ No newline at end of file diff --git a/dist/icomoon/bin2.js b/dist/icomoon/bin2.js new file mode 100644 index 000000000..981a70d61 --- /dev/null +++ b/dist/icomoon/bin2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bin2 = void 0; +var bin2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M3 16h10l1-11h-12zM10 2v-2h-4v2h-5v3l1-1h12l1 1v-3h-5zM9 2h-2v-1h2v1z" + } + }] +}; +exports.bin2 = bin2; \ No newline at end of file diff --git a/dist/icomoon/binoculars.js b/dist/icomoon/binoculars.js new file mode 100644 index 000000000..a6c5897dc --- /dev/null +++ b/dist/icomoon/binoculars.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.binoculars = void 0; +var binoculars = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M1 0h6v1h-6zM9 0h6v1h-6zM14.875 5h-0.875v-4h-4v4h-4v-4h-4v4h-0.875c-0.619 0-1.125 0.506-1.125 1.125v8.75c0 0.619 0.506 1.125 1.125 1.125h4.75c0.619 0 1.125-0.506 1.125-1.125v-5.875h2v5.875c0 0.619 0.506 1.125 1.125 1.125h4.75c0.619 0 1.125-0.506 1.125-1.125v-8.75c0-0.619-0.506-1.125-1.125-1.125zM5.438 15h-3.875c-0.309 0-0.563-0.225-0.563-0.5s0.253-0.5 0.563-0.5h3.875c0.309 0 0.563 0.225 0.563 0.5s-0.253 0.5-0.563 0.5zM8.5 8h-1c-0.275 0-0.5-0.225-0.5-0.5s0.225-0.5 0.5-0.5h1c0.275 0 0.5 0.225 0.5 0.5s-0.225 0.5-0.5 0.5zM14.438 15h-3.875c-0.309 0-0.563-0.225-0.563-0.5s0.253-0.5 0.563-0.5h3.875c0.309 0 0.563 0.225 0.563 0.5s-0.253 0.5-0.563 0.5z" + } + }] +}; +exports.binoculars = binoculars; \ No newline at end of file diff --git a/dist/icomoon/blocked.js b/dist/icomoon/blocked.js new file mode 100644 index 000000000..6a42b2d0b --- /dev/null +++ b/dist/icomoon/blocked.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.blocked = void 0; +var blocked = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.657 2.343c-1.511-1.511-3.52-2.343-5.657-2.343s-4.146 0.832-5.657 2.343c-1.511 1.511-2.343 3.52-2.343 5.657s0.832 4.146 2.343 5.657c1.511 1.511 3.52 2.343 5.657 2.343s4.146-0.832 5.657-2.343c1.511-1.511 2.343-3.52 2.343-5.657s-0.832-4.146-2.343-5.657zM14 8c0 1.294-0.412 2.494-1.111 3.475l-8.364-8.364c0.981-0.699 2.181-1.111 3.475-1.111 3.308 0 6 2.692 6 6zM2 8c0-1.294 0.412-2.494 1.111-3.475l8.364 8.364c-0.981 0.699-2.181 1.111-3.475 1.111-3.308 0-6-2.692-6-6z" + } + }] +}; +exports.blocked = blocked; \ No newline at end of file diff --git a/dist/icomoon/blog.js b/dist/icomoon/blog.js new file mode 100644 index 000000000..d0c0b3e74 --- /dev/null +++ b/dist/icomoon/blog.js @@ -0,0 +1,29 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.blog = void 0; +var blog = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6 0v1.5c1.148 0 2.261 0.225 3.308 0.667 1.012 0.428 1.921 1.041 2.702 1.822s1.394 1.69 1.822 2.702c0.443 1.047 0.667 2.16 0.667 3.308h1.5c0-5.523-4.477-10-10-10z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6 3v1.5c1.469 0 2.85 0.572 3.889 1.611s1.611 2.42 1.611 3.889h1.5c0-3.866-3.134-7-7-7z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7.5 6l-1 1-3.5 1-3 6.5 0.396 0.396 3.638-3.638c-0.022-0.083-0.034-0.169-0.034-0.259 0-0.552 0.448-1 1-1s1 0.448 1 1-0.448 1-1 1c-0.090 0-0.176-0.012-0.259-0.034l-3.638 3.638 0.396 0.396 6.5-3 1-3.5 1-1-2.5-2.5z" + } + }] +}; +exports.blog = blog; \ No newline at end of file diff --git a/dist/icomoon/blogger.js b/dist/icomoon/blogger.js new file mode 100644 index 000000000..b0b281759 --- /dev/null +++ b/dist/icomoon/blogger.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.blogger = void 0; +var blogger = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.966 6h-0.897c-0.549 0-1.031-0.465-1.069-1v0c0-2.854-2.301-5-5.175-5h-2.622c-2.872 0-5.201 2.313-5.203 5.167v5.669c0 2.854 2.331 5.165 5.203 5.165h5.6c2.874 0 5.197-2.311 5.197-5.165v-3.662c0-0.57-0.46-1.173-1.034-1.173zM5 4h3c0.55 0 1 0.45 1 1s-0.45 1-1 1h-3c-0.55 0-1-0.45-1-1s0.45-1 1-1zM11 12h-6c-0.55 0-1-0.45-1-1s0.45-1 1-1h6c0.55 0 1 0.45 1 1s-0.45 1-1 1z" + } + }] +}; +exports.blogger = blogger; \ No newline at end of file diff --git a/dist/icomoon/blogger2.js b/dist/icomoon/blogger2.js new file mode 100644 index 000000000..e57d20438 --- /dev/null +++ b/dist/icomoon/blogger2.js @@ -0,0 +1,29 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.blogger2 = void 0; +var blogger2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.5 0h-13c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM14 10.125c0 2.141-1.741 3.875-3.897 3.875h-4.2c-2.156 0-3.903-1.734-3.903-3.875v-4.25c0-2.141 1.747-3.875 3.903-3.875h1.966c2.156 0 3.881 1.609 3.881 3.75 0.028 0.4 0.391 0.75 0.8 0.75h0.672c0.431 0 0.775 0.453 0.775 0.881v2.744z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11 10c0 0.55-0.45 1-1 1h-4c-0.55 0-1-0.45-1-1v0c0-0.55 0.45-1 1-1h4c0.55 0 1 0.45 1 1v0z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9 6c0 0.55-0.45 1-1 1h-2c-0.55 0-1-0.45-1-1v0c0-0.55 0.45-1 1-1h2c0.55 0 1 0.45 1 1v0z" + } + }] +}; +exports.blogger2 = blogger2; \ No newline at end of file diff --git a/dist/icomoon/bold.js b/dist/icomoon/bold.js new file mode 100644 index 000000000..94d5d5009 --- /dev/null +++ b/dist/icomoon/bold.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bold = void 0; +var bold = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.061 7.573c0.586-0.696 0.939-1.594 0.939-2.573 0-2.206-1.794-4-4-4h-5v14h6c2.206 0 4-1.794 4-4 0-1.452-0.778-2.726-1.939-3.427zM6 3h1.586c0.874 0 1.586 0.897 1.586 2s-0.711 2-1.586 2h-1.586v-4zM8.484 13h-2.484v-4h2.484c0.913 0 1.656 0.897 1.656 2s-0.743 2-1.656 2z" + } + }] +}; +exports.bold = bold; \ No newline at end of file diff --git a/dist/icomoon/book.js b/dist/icomoon/book.js new file mode 100644 index 000000000..46b1a4a70 --- /dev/null +++ b/dist/icomoon/book.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.book = void 0; +var book = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14 2v13h-10.5c-0.829 0-1.5-0.672-1.5-1.5s0.671-1.5 1.5-1.5h9.5v-12h-10c-1.1 0-2 0.9-2 2v12c0 1.1 0.9 2 2 2h12v-14h-1z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M3.501 13v0c-0 0-0.001 0-0.001 0-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5c0 0 0.001-0 0.001-0v0h9.498v-1h-9.498z" + } + }] +}; +exports.book = book; \ No newline at end of file diff --git a/dist/icomoon/bookmark.js b/dist/icomoon/bookmark.js new file mode 100644 index 000000000..f5dca35b3 --- /dev/null +++ b/dist/icomoon/bookmark.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bookmark = void 0; +var bookmark = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M3 0v16l5-5 5 5v-16z" + } + }] +}; +exports.bookmark = bookmark; \ No newline at end of file diff --git a/dist/icomoon/bookmarks.js b/dist/icomoon/bookmarks.js new file mode 100644 index 000000000..fa4cb7f2e --- /dev/null +++ b/dist/icomoon/bookmarks.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bookmarks = void 0; +var bookmarks = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4 2v14l5-5 5 5v-14zM12 0h-10v14l1-1v-12h9z" + } + }] +}; +exports.bookmarks = bookmarks; \ No newline at end of file diff --git a/dist/icomoon/books.js b/dist/icomoon/books.js new file mode 100644 index 000000000..8fe3ebf7c --- /dev/null +++ b/dist/icomoon/books.js @@ -0,0 +1,35 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.books = void 0; +var books = { + "viewBox": "0 0 18 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M3.5 2h-3c-0.275 0-0.5 0.225-0.5 0.5v11c0 0.275 0.225 0.5 0.5 0.5h3c0.275 0 0.5-0.225 0.5-0.5v-11c0-0.275-0.225-0.5-0.5-0.5zM3 5h-2v-1h2v1z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8.5 2h-3c-0.275 0-0.5 0.225-0.5 0.5v11c0 0.275 0.225 0.5 0.5 0.5h3c0.275 0 0.5-0.225 0.5-0.5v-11c0-0.275-0.225-0.5-0.5-0.5zM8 5h-2v-1h2v1z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.954 2.773l-2.679 1.35c-0.246 0.124-0.345 0.426-0.222 0.671l4.5 8.93c0.124 0.246 0.426 0.345 0.671 0.222l2.679-1.35c0.246-0.124 0.345-0.426 0.222-0.671l-4.5-8.93c-0.124-0.246-0.426-0.345-0.671-0.222z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.5 13.5c0 0.276-0.224 0.5-0.5 0.5s-0.5-0.224-0.5-0.5c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5z" + } + }] +}; +exports.books = books; \ No newline at end of file diff --git a/dist/icomoon/boxAdd.js b/dist/icomoon/boxAdd.js new file mode 100644 index 000000000..bbb27b5da --- /dev/null +++ b/dist/icomoon/boxAdd.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.boxAdd = void 0; +var boxAdd = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13 1h-10l-3 3v10.5c0 0.276 0.224 0.5 0.5 0.5h15c0.276 0 0.5-0.224 0.5-0.5v-10.5l-3-3zM8 13l-5-4h3v-3h4v3h3l-5 4zM2.414 3l1-1h9.172l1 1h-11.172z" + } + }] +}; +exports.boxAdd = boxAdd; \ No newline at end of file diff --git a/dist/icomoon/boxRemove.js b/dist/icomoon/boxRemove.js new file mode 100644 index 000000000..8c9ec696c --- /dev/null +++ b/dist/icomoon/boxRemove.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.boxRemove = void 0; +var boxRemove = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13 1h-10l-3 3v10.5c0 0.276 0.224 0.5 0.5 0.5h15c0.276 0 0.5-0.224 0.5-0.5v-10.5l-3-3zM10 10v3h-4v-3h-3l5-4 5 4h-3zM2.414 3l1-1h9.171l1 1h-11.171z" + } + }] +}; +exports.boxRemove = boxRemove; \ No newline at end of file diff --git a/dist/icomoon/briefcase.js b/dist/icomoon/briefcase.js new file mode 100644 index 000000000..ad114b5d1 --- /dev/null +++ b/dist/icomoon/briefcase.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.briefcase = void 0; +var briefcase = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15 4h-4v-1c0-0.55-0.45-1-1-1h-4c-0.55 0-1 0.45-1 1v1h-4c-0.55 0-1 0.45-1 1v9c0 0.55 0.45 1 1 1h14c0.55 0 1-0.45 1-1v-9c0-0.55-0.45-1-1-1zM6 3.002c0.001-0.001 0.001-0.001 0.002-0.002h3.996c0.001 0.001 0.001 0.001 0.002 0.002v0.998h-4v-0.998zM15 8h-2v1.5c0 0.275-0.225 0.5-0.5 0.5h-1c-0.275 0-0.5-0.225-0.5-0.5v-1.5h-6v1.5c0 0.275-0.225 0.5-0.5 0.5h-1c-0.275 0-0.5-0.225-0.5-0.5v-1.5h-2v-1h14v1z" + } + }] +}; +exports.briefcase = briefcase; \ No newline at end of file diff --git a/dist/icomoon/brightnessContrast.js b/dist/icomoon/brightnessContrast.js new file mode 100644 index 000000000..bbfb1f0ca --- /dev/null +++ b/dist/icomoon/brightnessContrast.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.brightnessContrast = void 0; +var brightnessContrast = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 4c-2.209 0-4 1.791-4 4s1.791 4 4 4 4-1.791 4-4-1.791-4-4-4zM8 10.5v-5c1.379 0 2.5 1.122 2.5 2.5s-1.121 2.5-2.5 2.5zM8 13c0.552 0 1 0.448 1 1v1c0 0.552-0.448 1-1 1s-1-0.448-1-1v-1c0-0.552 0.448-1 1-1zM8 3c-0.552 0-1-0.448-1-1v-1c0-0.552 0.448-1 1-1s1 0.448 1 1v1c0 0.552-0.448 1-1 1zM15 7c0.552 0 1 0.448 1 1s-0.448 1-1 1h-1c-0.552 0-1-0.448-1-1s0.448-1 1-1h1zM3 8c0 0.552-0.448 1-1 1h-1c-0.552 0-1-0.448-1-1s0.448-1 1-1h1c0.552 0 1 0.448 1 1zM12.95 11.536l0.707 0.707c0.39 0.39 0.39 1.024 0 1.414s-1.024 0.39-1.414 0l-0.707-0.707c-0.39-0.39-0.39-1.024 0-1.414s1.024-0.39 1.414 0zM3.050 4.464l-0.707-0.707c-0.391-0.391-0.391-1.024 0-1.414s1.024-0.391 1.414 0l0.707 0.707c0.391 0.391 0.391 1.024 0 1.414s-1.024 0.391-1.414 0zM12.95 4.464c-0.39 0.391-1.024 0.391-1.414 0s-0.39-1.024 0-1.414l0.707-0.707c0.39-0.391 1.024-0.391 1.414 0s0.39 1.024 0 1.414l-0.707 0.707zM3.050 11.536c0.39-0.39 1.024-0.39 1.414 0s0.391 1.024 0 1.414l-0.707 0.707c-0.391 0.39-1.024 0.39-1.414 0s-0.391-1.024 0-1.414l0.707-0.707z" + } + }] +}; +exports.brightnessContrast = brightnessContrast; \ No newline at end of file diff --git a/dist/icomoon/bubble.js b/dist/icomoon/bubble.js new file mode 100644 index 000000000..bf4b8a45d --- /dev/null +++ b/dist/icomoon/bubble.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bubble = void 0; +var bubble = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 1c4.418 0 8 2.91 8 6.5s-3.582 6.5-8 6.5c-0.424 0-0.841-0.027-1.247-0.079-1.718 1.718-3.77 2.027-5.753 2.072v-0.421c1.071-0.525 2-1.48 2-2.572 0-0.152-0.012-0.302-0.034-0.448-1.809-1.192-2.966-3.012-2.966-5.052 0-3.59 3.582-6.5 8-6.5z" + } + }] +}; +exports.bubble = bubble; \ No newline at end of file diff --git a/dist/icomoon/bubble2.js b/dist/icomoon/bubble2.js new file mode 100644 index 000000000..b96decf67 --- /dev/null +++ b/dist/icomoon/bubble2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bubble2 = void 0; +var bubble2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 3c-0.858 0-1.687 0.135-2.464 0.402-0.73 0.251-1.38 0.605-1.932 1.054-1.035 0.841-1.604 1.922-1.604 3.044 0 0.63 0.175 1.24 0.52 1.815 0.356 0.592 0.89 1.134 1.547 1.566 0.474 0.312 0.793 0.812 0.878 1.373 0.028 0.187 0.046 0.376 0.053 0.564 0.117-0.097 0.23-0.201 0.342-0.312 0.377-0.377 0.887-0.586 1.414-0.586 0.084 0 0.168 0.005 0.252 0.016 0.328 0.042 0.662 0.063 0.995 0.063 0.858 0 1.687-0.135 2.464-0.402 0.73-0.251 1.38-0.605 1.932-1.054 1.035-0.841 1.604-1.922 1.604-3.044s-0.57-2.203-1.604-3.044c-0.552-0.448-1.202-0.803-1.932-1.054-0.777-0.267-1.606-0.402-2.464-0.402zM8 1v0c4.418 0 8 2.91 8 6.5s-3.582 6.5-8 6.5c-0.424 0-0.841-0.027-1.247-0.079-1.718 1.718-3.77 2.027-5.753 2.072v-0.421c1.071-0.525 2-1.48 2-2.572 0-0.152-0.012-0.302-0.034-0.448-1.809-1.192-2.966-3.012-2.966-5.052 0-3.59 3.582-6.5 8-6.5z" + } + }] +}; +exports.bubble2 = bubble2; \ No newline at end of file diff --git a/dist/icomoon/bubbles.js b/dist/icomoon/bubbles.js new file mode 100644 index 000000000..cae455e15 --- /dev/null +++ b/dist/icomoon/bubbles.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bubbles = void 0; +var bubbles = { + "viewBox": "0 0 18 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M17 14.081c0 0.711 0.407 1.327 1 1.628v0.249c-0.166 0.023-0.335 0.035-0.508 0.035-1.063 0-2.021-0.446-2.699-1.16-0.41 0.109-0.844 0.168-1.293 0.168-2.485 0-4.5-1.791-4.5-4s2.015-4 4.5-4c2.485 0 4.5 1.791 4.5 4 0 0.865-0.309 1.665-0.834 2.32-0.107 0.232-0.166 0.489-0.166 0.761zM8 0c4.351 0 7.89 2.822 7.997 6.336-0.768-0.343-1.619-0.524-2.497-0.524-1.493 0-2.903 0.523-3.971 1.472-1.107 0.984-1.717 2.304-1.717 3.716 0 0.698 0.149 1.373 0.433 1.997-0.082 0.002-0.164 0.003-0.246 0.003-0.424 0-0.841-0.027-1.247-0.079-1.718 1.718-3.77 2.027-5.753 2.072v-0.421c1.071-0.525 2-1.48 2-2.572 0-0.152-0.012-0.302-0.034-0.448-1.809-1.192-2.966-3.012-2.966-5.052 0-3.59 3.582-6.5 8-6.5z" + } + }] +}; +exports.bubbles = bubbles; \ No newline at end of file diff --git a/dist/icomoon/bubbles2.js b/dist/icomoon/bubbles2.js new file mode 100644 index 000000000..8838a9bba --- /dev/null +++ b/dist/icomoon/bubbles2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bubbles2 = void 0; +var bubbles2 = { + "viewBox": "0 0 18 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7.5 0v0c4.142 0 7.5 2.717 7.5 6.069s-3.358 6.069-7.5 6.069c-0.398 0-0.788-0.025-1.169-0.074-1.611 1.605-3.471 1.892-5.331 1.935v-0.393c1.004-0.49 1.813-1.382 1.813-2.402 0-0.142-0.011-0.282-0.032-0.419-1.696-1.113-2.781-2.812-2.781-4.717 0-3.352 3.358-6.069 7.5-6.069zM15.563 13.604c0 0.874 0.567 1.639 1.438 2.059v0.337c-1.611-0.036-3.090-0.283-4.487-1.658-0.33 0.041-0.669 0.063-1.013 0.063-1.492 0-2.866-0.402-3.963-1.079 2.261-0.008 4.395-0.732 6.013-2.042 0.816-0.66 1.459-1.435 1.913-2.302 0.481-0.92 0.724-1.9 0.724-2.913 0-0.163-0.007-0.326-0.020-0.487 1.134 0.936 1.832 2.213 1.832 3.62 0 1.633-0.94 3.089-2.41 4.043-0.018 0.117-0.027 0.237-0.027 0.359z" + } + }] +}; +exports.bubbles2 = bubbles2; \ No newline at end of file diff --git a/dist/icomoon/bubbles3.js b/dist/icomoon/bubbles3.js new file mode 100644 index 000000000..ccd0f83de --- /dev/null +++ b/dist/icomoon/bubbles3.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bubbles3 = void 0; +var bubbles3 = { + "viewBox": "0 0 18 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M17 14.081c0 0.711 0.407 1.327 1 1.628v0.249c-0.166 0.023-0.335 0.035-0.508 0.035-1.063 0-2.021-0.446-2.699-1.16-0.41 0.109-0.844 0.168-1.293 0.168-2.485 0-4.5-1.791-4.5-4s2.015-4 4.5-4c2.485 0 4.5 1.791 4.5 4 0 0.865-0.309 1.665-0.834 2.32-0.107 0.232-0.166 0.489-0.166 0.761zM3.604 3.456c-1.035 0.841-1.604 1.922-1.604 3.044 0 0.63 0.175 1.24 0.52 1.815 0.356 0.592 0.89 1.134 1.547 1.566 0.474 0.312 0.793 0.812 0.878 1.373 0.028 0.187 0.046 0.376 0.053 0.564 0.117-0.097 0.23-0.201 0.342-0.312 0.377-0.377 0.887-0.586 1.414-0.586 0.084 0 0.168 0.005 0.252 0.016 0.327 0.042 0.662 0.063 0.994 0.063v2c-0.424-0-0.84-0.027-1.246-0.079-1.718 1.718-3.77 2.027-5.753 2.072v-0.421c1.071-0.525 2-1.48 2-2.572 0-0.152-0.012-0.302-0.034-0.448-1.809-1.192-2.966-3.012-2.966-5.052 0-3.59 3.582-6.5 8-6.5 4.351 0 7.89 2.822 7.997 6.336-0.642-0.286-1.341-0.46-2.067-0.509-0.18-0.876-0.709-1.7-1.535-2.371-0.552-0.448-1.202-0.803-1.932-1.054-0.777-0.267-1.606-0.402-2.464-0.402s-1.687 0.135-2.464 0.402c-0.73 0.251-1.38 0.605-1.932 1.054z" + } + }] +}; +exports.bubbles3 = bubbles3; \ No newline at end of file diff --git a/dist/icomoon/bubbles4.js b/dist/icomoon/bubbles4.js new file mode 100644 index 000000000..8b7cba579 --- /dev/null +++ b/dist/icomoon/bubbles4.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bubbles4 = void 0; +var bubbles4 = { + "viewBox": "0 0 18 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7.5 2c-0.792 0-1.556 0.124-2.272 0.369-0.671 0.23-1.267 0.554-1.773 0.963-0.938 0.759-1.455 1.731-1.455 2.737 0 0.562 0.157 1.109 0.467 1.623 0.323 0.537 0.811 1.028 1.41 1.421 0.476 0.312 0.796 0.812 0.881 1.374 0.014 0.094 0.025 0.188 0.034 0.282 0.043-0.039 0.085-0.080 0.127-0.122 0.377-0.376 0.886-0.583 1.411-0.583 0.084 0 0.167 0.005 0.251 0.016 0.303 0.038 0.611 0.058 0.918 0.058 0.792 0 1.556-0.124 2.272-0.369 0.671-0.23 1.267-0.554 1.774-0.963 0.938-0.759 1.455-1.731 1.455-2.737s-0.517-1.978-1.455-2.737c-0.506-0.41-1.103-0.734-1.774-0.963-0.716-0.245-1.48-0.369-2.272-0.369zM7.5 0v0c4.142 0 7.5 2.717 7.5 6.069s-3.358 6.069-7.5 6.069c-0.398 0-0.788-0.025-1.169-0.074-1.611 1.605-3.471 1.892-5.331 1.935v-0.393c1.004-0.49 1.813-1.382 1.813-2.402 0-0.142-0.011-0.282-0.032-0.419-1.696-1.113-2.781-2.812-2.781-4.717 0-3.352 3.358-6.069 7.5-6.069zM15.563 13.604c0 0.874 0.567 1.639 1.438 2.059v0.337c-1.611-0.036-3.090-0.283-4.487-1.658-0.33 0.041-0.669 0.063-1.013 0.063-1.492 0-2.866-0.402-3.963-1.079 2.261-0.008 4.395-0.732 6.013-2.042 0.816-0.66 1.459-1.435 1.913-2.302 0.481-0.92 0.724-1.9 0.724-2.913 0-0.163-0.007-0.326-0.020-0.487 1.134 0.936 1.832 2.213 1.832 3.62 0 1.633-0.94 3.089-2.41 4.043-0.018 0.117-0.027 0.237-0.027 0.359z" + } + }] +}; +exports.bubbles4 = bubbles4; \ No newline at end of file diff --git a/dist/icomoon/bug.js b/dist/icomoon/bug.js new file mode 100644 index 000000000..8803c6a14 --- /dev/null +++ b/dist/icomoon/bug.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bug = void 0; +var bug = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16 9v-1h-3.020c-0.092-1.136-0.497-2.172-1.12-3.004h2.53l1.095-4.379-0.97-0.243-0.905 3.621h-2.729c-0.014-0.011-0.028-0.021-0.042-0.032 0.105-0.305 0.162-0.632 0.162-0.972 0-1.653-1.343-2.992-3-2.992s-3 1.34-3 2.992c0 0.34 0.057 0.667 0.162 0.972-0.014 0.011-0.028 0.021-0.042 0.032h-2.729l-0.905-3.621-0.97 0.243 1.095 4.379h2.53c-0.623 0.832-1.028 1.868-1.12 3.004h-3.020v1h3.021c0.059 0.713 0.242 1.388 0.526 1.996h-1.937l-1.095 4.379 0.97 0.243 0.905-3.621h1.756c0.917 1.219 2.303 1.996 3.854 1.996s2.937-0.777 3.854-1.996h1.756l0.905 3.621 0.97-0.243-1.095-4.379h-1.937c0.283-0.608 0.466-1.283 0.526-1.996h3.021z" + } + }] +}; +exports.bug = bug; \ No newline at end of file diff --git a/dist/icomoon/bullhorn.js b/dist/icomoon/bullhorn.js new file mode 100644 index 000000000..d7d3dd3b3 --- /dev/null +++ b/dist/icomoon/bullhorn.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bullhorn = void 0; +var bullhorn = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16 6.707c0-3.139-0.919-5.687-2.054-5.707 0.005-0 0.009-0 0.014-0h-1.296c0 0-3.044 2.287-7.425 3.184-0.134 0.708-0.219 1.551-0.219 2.523s0.085 1.816 0.219 2.523c4.382 0.897 7.425 3.184 7.425 3.184h1.296c-0.005 0-0.009-0-0.014-0.001 1.136-0.020 2.054-2.567 2.054-5.707zM13.513 11.551c-0.147 0-0.305-0.152-0.387-0.243-0.197-0.22-0.387-0.562-0.55-0.989-0.363-0.957-0.564-2.239-0.564-3.611s0.2-2.655 0.564-3.611c0.162-0.428 0.353-0.77 0.55-0.99 0.081-0.091 0.24-0.243 0.387-0.243s0.305 0.152 0.387 0.243c0.197 0.22 0.387 0.562 0.55 0.99 0.363 0.957 0.564 2.239 0.564 3.611s-0.2 2.655-0.564 3.611c-0.162 0.428-0.353 0.77-0.55 0.989-0.081 0.091-0.24 0.243-0.387 0.243zM3.935 6.707c0-0.812 0.060-1.6 0.173-2.33-0.74 0.102-1.39 0.161-2.193 0.161-1.048 0-1.048 0-1.048 0l-0.867 1.479v1.378l0.867 1.479c0 0 0 0 1.048 0 0.803 0 1.453 0.059 2.193 0.161-0.113-0.729-0.173-1.518-0.173-2.33zM5.752 10.034l-2-0.383 1.279 5.024c0.066 0.26 0.324 0.391 0.573 0.291l1.852-0.741c0.249-0.1 0.349-0.374 0.222-0.611l-1.926-3.581zM13.513 8.574c-0.057 0-0.118-0.059-0.149-0.094-0.076-0.085-0.149-0.217-0.212-0.381-0.14-0.369-0.217-0.863-0.217-1.392s0.077-1.023 0.217-1.392c0.063-0.165 0.136-0.297 0.212-0.381 0.031-0.035 0.092-0.094 0.149-0.094s0.118 0.059 0.149 0.094c0.076 0.085 0.149 0.217 0.212 0.381 0.14 0.369 0.217 0.863 0.217 1.392s-0.077 1.023-0.217 1.392c-0.063 0.165-0.136 0.297-0.212 0.381-0.031 0.035-0.092 0.094-0.149 0.094z" + } + }] +}; +exports.bullhorn = bullhorn; \ No newline at end of file diff --git a/dist/icomoon/calculator.js b/dist/icomoon/calculator.js new file mode 100644 index 000000000..2b4bcfcae --- /dev/null +++ b/dist/icomoon/calculator.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.calculator = void 0; +var calculator = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6 1h-5c-0.55 0-1 0.45-1 1v5c0 0.55 0.45 1 1 1h5c0.55 0 1-0.45 1-1v-5c0-0.55-0.45-1-1-1zM6 5h-5v-1h5v1zM14 1h-5c-0.55 0-1 0.45-1 1v13c0 0.55 0.45 1 1 1h5c0.55 0 1-0.45 1-1v-13c0-0.55-0.45-1-1-1zM14 10h-5v-1h5v1zM14 7h-5v-1h5v1zM6 9h-5c-0.55 0-1 0.45-1 1v5c0 0.55 0.45 1 1 1h5c0.55 0 1-0.45 1-1v-5c0-0.55-0.45-1-1-1zM6 13h-2v2h-1v-2h-2v-1h2v-2h1v2h2v1z" + } + }] +}; +exports.calculator = calculator; \ No newline at end of file diff --git a/dist/icomoon/calendar.js b/dist/icomoon/calendar.js new file mode 100644 index 000000000..39b59195f --- /dev/null +++ b/dist/icomoon/calendar.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.calendar = void 0; +var calendar = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5 6h2v2h-2zM8 6h2v2h-2zM11 6h2v2h-2zM2 12h2v2h-2zM5 12h2v2h-2zM8 12h2v2h-2zM5 9h2v2h-2zM8 9h2v2h-2zM11 9h2v2h-2zM2 9h2v2h-2zM13 0v1h-2v-1h-7v1h-2v-1h-2v16h15v-16h-2zM14 15h-13v-11h13v11z" + } + }] +}; +exports.calendar = calendar; \ No newline at end of file diff --git a/dist/icomoon/camera.js b/dist/icomoon/camera.js new file mode 100644 index 000000000..42a9585d1 --- /dev/null +++ b/dist/icomoon/camera.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.camera = void 0; +var camera = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4.75 9.5c0 1.795 1.455 3.25 3.25 3.25s3.25-1.455 3.25-3.25-1.455-3.25-3.25-3.25-3.25 1.455-3.25 3.25zM15 4h-3.5c-0.25-1-0.5-2-1.5-2h-4c-1 0-1.25 1-1.5 2h-3.5c-0.55 0-1 0.45-1 1v9c0 0.55 0.45 1 1 1h14c0.55 0 1-0.45 1-1v-9c0-0.55-0.45-1-1-1zM8 13.938c-2.451 0-4.438-1.987-4.438-4.438s1.987-4.438 4.438-4.438c2.451 0 4.438 1.987 4.438 4.438s-1.987 4.438-4.438 4.438zM15 7h-2v-1h2v1z" + } + }] +}; +exports.camera = camera; \ No newline at end of file diff --git a/dist/icomoon/cancelCircle.js b/dist/icomoon/cancelCircle.js new file mode 100644 index 000000000..dcc2d62dc --- /dev/null +++ b/dist/icomoon/cancelCircle.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cancelCircle = void 0; +var cancelCircle = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM8 14.5c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5 6.5 2.91 6.5 6.5-2.91 6.5-6.5 6.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M10.5 4l-2.5 2.5-2.5-2.5-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 2.5-2.5 2.5 2.5 1.5-1.5-2.5-2.5 2.5-2.5z" + } + }] +}; +exports.cancelCircle = cancelCircle; \ No newline at end of file diff --git a/dist/icomoon/cart.js b/dist/icomoon/cart.js new file mode 100644 index 000000000..81111566a --- /dev/null +++ b/dist/icomoon/cart.js @@ -0,0 +1,29 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cart = void 0; +var cart = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6 14.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16 14.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16 8v-6h-12c0-0.552-0.448-1-1-1h-3v1h2l0.751 6.438c-0.458 0.367-0.751 0.93-0.751 1.562 0 1.105 0.895 2 2 2h12v-1h-12c-0.552 0-1-0.448-1-1 0-0.003 0-0.007 0-0.010l13-1.99z" + } + }] +}; +exports.cart = cart; \ No newline at end of file diff --git a/dist/icomoon/checkboxChecked.js b/dist/icomoon/checkboxChecked.js new file mode 100644 index 000000000..4021a8b3a --- /dev/null +++ b/dist/icomoon/checkboxChecked.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.checkboxChecked = void 0; +var checkboxChecked = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14 0h-12c-1.1 0-2 0.9-2 2v12c0 1.1 0.9 2 2 2h12c1.1 0 2-0.9 2-2v-12c0-1.1-0.9-2-2-2zM7 12.414l-3.707-3.707 1.414-1.414 2.293 2.293 4.793-4.793 1.414 1.414-6.207 6.207z" + } + }] +}; +exports.checkboxChecked = checkboxChecked; \ No newline at end of file diff --git a/dist/icomoon/checkboxUnchecked.js b/dist/icomoon/checkboxUnchecked.js new file mode 100644 index 000000000..1f5144729 --- /dev/null +++ b/dist/icomoon/checkboxUnchecked.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.checkboxUnchecked = void 0; +var checkboxUnchecked = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14 0h-12c-1.1 0-2 0.9-2 2v12c0 1.1 0.9 2 2 2h12c1.1 0 2-0.9 2-2v-12c0-1.1-0.9-2-2-2zM14 14h-12v-12h12v12z" + } + }] +}; +exports.checkboxUnchecked = checkboxUnchecked; \ No newline at end of file diff --git a/dist/icomoon/checkmark.js b/dist/icomoon/checkmark.js new file mode 100644 index 000000000..ea5be549e --- /dev/null +++ b/dist/icomoon/checkmark.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.checkmark = void 0; +var checkmark = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.5 2l-7.5 7.5-3.5-3.5-2.5 2.5 6 6 10-10z" + } + }] +}; +exports.checkmark = checkmark; \ No newline at end of file diff --git a/dist/icomoon/checkmark2.js b/dist/icomoon/checkmark2.js new file mode 100644 index 000000000..6ca6f4306 --- /dev/null +++ b/dist/icomoon/checkmark2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.checkmark2 = void 0; +var checkmark2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6.21 14.339l-6.217-6.119 3.084-3.035 3.133 3.083 6.713-6.607 3.084 3.035-9.797 9.643zM1.686 8.22l4.524 4.453 8.104-7.976-1.391-1.369-6.713 6.607-3.133-3.083-1.391 1.369z" + } + }] +}; +exports.checkmark2 = checkmark2; \ No newline at end of file diff --git a/dist/icomoon/chrome.js b/dist/icomoon/chrome.js new file mode 100644 index 000000000..cafdd83d5 --- /dev/null +++ b/dist/icomoon/chrome.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.chrome = void 0; +var chrome = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4.036 6.977l-2.29-3.966c1.466-1.835 3.722-3.012 6.254-3.012 2.929 0 5.489 1.574 6.883 3.922h-6.528c-0.117-0.010-0.236-0.016-0.356-0.016-1.904 0-3.509 1.307-3.964 3.071zM10.864 5.078h4.585c0.355 0.905 0.551 1.891 0.551 2.922 0 4.388-3.533 7.95-7.909 7.999l3.272-5.667c0.461-0.662 0.731-1.466 0.731-2.332 0-1.143-0.471-2.178-1.23-2.922zM5.094 8c0-1.603 1.304-2.906 2.906-2.906s2.906 1.304 2.906 2.906c0 1.602-1.304 2.906-2.906 2.906s-2.906-1.304-2.906-2.906zM9.097 11.944l-2.29 3.967c-3.852-0.576-6.806-3.899-6.806-7.911 0-1.425 0.373-2.763 1.026-3.922l3.266 5.657c0.654 1.392 2.070 2.359 3.707 2.359 0.38 0 0.747-0.052 1.097-0.149z" + } + }] +}; +exports.chrome = chrome; \ No newline at end of file diff --git a/dist/icomoon/circleDown.js b/dist/icomoon/circleDown.js new file mode 100644 index 000000000..0b5c96380 --- /dev/null +++ b/dist/icomoon/circleDown.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.circleDown = void 0; +var circleDown = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16 8c0-4.418-3.582-8-8-8s-8 3.582-8 8 3.582 8 8 8 8-3.582 8-8zM1.5 8c0-3.59 2.91-6.5 6.5-6.5s6.5 2.91 6.5 6.5-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4.957 5.543l-1.414 1.414 4.457 4.457 4.457-4.457-1.414-1.414-3.043 3.043z" + } + }] +}; +exports.circleDown = circleDown; \ No newline at end of file diff --git a/dist/icomoon/circleLeft.js b/dist/icomoon/circleLeft.js new file mode 100644 index 000000000..63968c0c4 --- /dev/null +++ b/dist/icomoon/circleLeft.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.circleLeft = void 0; +var circleLeft = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M10.457 4.957l-1.414-1.414-4.457 4.457 4.457 4.457 1.414-1.414-3.043-3.043z" + } + }] +}; +exports.circleLeft = circleLeft; \ No newline at end of file diff --git a/dist/icomoon/circleRight.js b/dist/icomoon/circleRight.js new file mode 100644 index 000000000..6494feeba --- /dev/null +++ b/dist/icomoon/circleRight.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.circleRight = void 0; +var circleRight = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM8 14.5c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5 6.5 2.91 6.5 6.5-2.91 6.5-6.5 6.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5.543 11.043l1.414 1.414 4.457-4.457-4.457-4.457-1.414 1.414 3.043 3.043z" + } + }] +}; +exports.circleRight = circleRight; \ No newline at end of file diff --git a/dist/icomoon/circleUp.js b/dist/icomoon/circleUp.js new file mode 100644 index 000000000..b0776f611 --- /dev/null +++ b/dist/icomoon/circleUp.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.circleUp = void 0; +var circleUp = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 8c0 4.418 3.582 8 8 8s8-3.582 8-8-3.582-8-8-8-8 3.582-8 8zM14.5 8c0 3.59-2.91 6.5-6.5 6.5s-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5 6.5 2.91 6.5 6.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.043 10.457l1.414-1.414-4.457-4.457-4.457 4.457 1.414 1.414 3.043-3.043z" + } + }] +}; +exports.circleUp = circleUp; \ No newline at end of file diff --git a/dist/icomoon/clearFormatting.js b/dist/icomoon/clearFormatting.js new file mode 100644 index 000000000..efb81fd13 --- /dev/null +++ b/dist/icomoon/clearFormatting.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.clearFormatting = void 0; +var clearFormatting = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 14h9v2h-9zM14 2h-4.727l-2.871 11h-2.067l2.871-11h-4.205v-2h11zM14.528 16l-2.028-2.028-2.028 2.028-0.972-0.972 2.028-2.028-2.028-2.028 0.972-0.972 2.028 2.028 2.028-2.028 0.972 0.972-2.028 2.028 2.028 2.028z" + } + }] +}; +exports.clearFormatting = clearFormatting; \ No newline at end of file diff --git a/dist/icomoon/clipboard.js b/dist/icomoon/clipboard.js new file mode 100644 index 000000000..07f0ffcb2 --- /dev/null +++ b/dist/icomoon/clipboard.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.clipboard = void 0; +var clipboard = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.5 2h-4.5c0-1.105-0.895-2-2-2s-2 0.895-2 2h-4.5c-0.276 0-0.5 0.224-0.5 0.5v13c0 0.276 0.224 0.5 0.5 0.5h13c0.276 0 0.5-0.224 0.5-0.5v-13c0-0.276-0.224-0.5-0.5-0.5zM8 1c0.552 0 1 0.448 1 1s-0.448 1-1 1c-0.552 0-1-0.448-1-1s0.448-1 1-1zM14 15h-12v-12h2v1.5c0 0.276 0.224 0.5 0.5 0.5h7c0.276 0 0.5-0.224 0.5-0.5v-1.5h2v12z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7 13.414l-3.207-3.707 0.914-0.914 2.293 1.793 4.293-3.793 0.914 0.914z" + } + }] +}; +exports.clipboard = clipboard; \ No newline at end of file diff --git a/dist/icomoon/clock.js b/dist/icomoon/clock.js new file mode 100644 index 000000000..0555d5640 --- /dev/null +++ b/dist/icomoon/clock.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.clock = void 0; +var clock = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M10.293 11.707l-3.293-3.293v-4.414h2v3.586l2.707 2.707zM8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM8 14c-3.314 0-6-2.686-6-6s2.686-6 6-6c3.314 0 6 2.686 6 6s-2.686 6-6 6z" + } + }] +}; +exports.clock = clock; \ No newline at end of file diff --git a/dist/icomoon/clock2.js b/dist/icomoon/clock2.js new file mode 100644 index 000000000..0b2308e96 --- /dev/null +++ b/dist/icomoon/clock2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.clock2 = void 0; +var clock2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM10.293 11.707l-3.293-3.293v-4.414h2v3.586l2.707 2.707-1.414 1.414z" + } + }] +}; +exports.clock2 = clock2; \ No newline at end of file diff --git a/dist/icomoon/cloud.js b/dist/icomoon/cloud.js new file mode 100644 index 000000000..308c8225e --- /dev/null +++ b/dist/icomoon/cloud.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cloud = void 0; +var cloud = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16 10.274c0-1.283-0.886-2.358-2.078-2.648-0.051-2.011-1.695-3.626-3.717-3.626-1.184 0-2.239 0.555-2.92 1.418-0.382-0.494-0.98-0.812-1.652-0.812-1.153 0-2.088 0.936-2.088 2.089 0 0.101 0.007 0.199 0.021 0.296-0.175-0.032-0.356-0.049-0.54-0.049-1.672-0-3.027 1.356-3.027 3.029s1.355 3.029 3.027 3.029l10.254-0c1.502-0.003 2.719-1.222 2.719-2.726z" + } + }] +}; +exports.cloud = cloud; \ No newline at end of file diff --git a/dist/icomoon/cloudCheck.js b/dist/icomoon/cloudCheck.js new file mode 100644 index 000000000..75b0c2309 --- /dev/null +++ b/dist/icomoon/cloudCheck.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cloudCheck = void 0; +var cloudCheck = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.942 8.039c0.038-0.174 0.058-0.354 0.058-0.539 0-1.381-1.119-2.5-2.5-2.5-0.222 0-0.438 0.029-0.643 0.084-0.387-1.209-1.52-2.084-2.857-2.084-1.365 0-2.516 0.911-2.88 2.159-0.355-0.103-0.731-0.159-1.12-0.159-2.209 0-4 1.791-4 4s1.791 4 4 4h9.5c1.381 0 2.5-1.119 2.5-2.5 0-1.23-0.888-2.252-2.058-2.461zM6.5 12l-2.5-2.5 1-1 1.5 1.5 3.5-3.5 1 1-4.5 4.5z" + } + }] +}; +exports.cloudCheck = cloudCheck; \ No newline at end of file diff --git a/dist/icomoon/cloudDownload.js b/dist/icomoon/cloudDownload.js new file mode 100644 index 000000000..d87f78663 --- /dev/null +++ b/dist/icomoon/cloudDownload.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cloudDownload = void 0; +var cloudDownload = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.922 5.626c-0.051-2.011-1.695-3.626-3.717-3.626-1.184 0-2.239 0.555-2.92 1.418-0.382-0.494-0.98-0.812-1.652-0.812-1.153 0-2.088 0.936-2.088 2.089 0 0.101 0.007 0.199 0.021 0.296-0.175-0.032-0.356-0.049-0.54-0.049-1.672-0-3.027 1.356-3.027 3.029s1.355 3.029 3.027 3.029h1.434l3.539 3.664 3.539-3.664 1.742-0c1.502-0.003 2.719-1.222 2.719-2.726 0-1.283-0.886-2.358-2.078-2.648zM8 13l-3-3h2v-3h2v3h2l-3 3z" + } + }] +}; +exports.cloudDownload = cloudDownload; \ No newline at end of file diff --git a/dist/icomoon/cloudUpload.js b/dist/icomoon/cloudUpload.js new file mode 100644 index 000000000..1263b9be1 --- /dev/null +++ b/dist/icomoon/cloudUpload.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cloudUpload = void 0; +var cloudUpload = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.942 6.039c0.038-0.174 0.058-0.354 0.058-0.539 0-1.381-1.119-2.5-2.5-2.5-0.222 0-0.438 0.029-0.643 0.084-0.387-1.209-1.52-2.084-2.857-2.084-1.365 0-2.516 0.911-2.88 2.159-0.355-0.103-0.731-0.159-1.12-0.159-2.209 0-4 1.791-4 4s1.791 4 4 4h2v3h4v-3h3.5c1.381 0 2.5-1.119 2.5-2.5 0-1.23-0.888-2.253-2.058-2.461zM9 10v3h-2v-3h-2.5l3.5-3.5 3.5 3.5h-2.5z" + } + }] +}; +exports.cloudUpload = cloudUpload; \ No newline at end of file diff --git a/dist/icomoon/clubs.js b/dist/icomoon/clubs.js new file mode 100644 index 000000000..b78ab3850 --- /dev/null +++ b/dist/icomoon/clubs.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.clubs = void 0; +var clubs = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12.294 6.137c-0.922 0-1.751 0.384-2.341 1.011-0.25 0.265-0.684 0.58-1.153 0.856 0.22-0.842 0.917-1.902 1.4-2.367 0.619-0.596 1-1.435 1-2.367 0-1.795-1.429-3.252-3.2-3.271-1.771 0.019-3.2 1.475-3.2 3.271 0 0.932 0.38 1.771 1 2.367 0.484 0.465 1.18 1.525 1.4 2.367-0.469-0.277-0.903-0.591-1.153-0.856-0.59-0.627-1.419-1.011-2.341-1.011-1.787 0-3.236 1.463-3.236 3.271s1.448 3.271 3.236 3.271c0.923 0 1.751-0.396 2.341-1.023 0.263-0.279 0.726-0.627 1.223-0.916-0.047 2.308-1.149 4.003-2.271 4.67v0.59h6v-0.59c-1.122-0.668-2.224-2.363-2.271-4.67 0.498 0.289 0.961 0.637 1.223 0.916 0.59 0.626 1.419 1.023 2.341 1.023 1.787 0 3.236-1.464 3.236-3.271s-1.448-3.271-3.236-3.271z" + } + }] +}; +exports.clubs = clubs; \ No newline at end of file diff --git a/dist/icomoon/codepen.js b/dist/icomoon/codepen.js new file mode 100644 index 000000000..f7c7b0588 --- /dev/null +++ b/dist/icomoon/codepen.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.codepen = void 0; +var codepen = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.777 5.751l-7-4.667c-0.168-0.112-0.387-0.112-0.555 0l-7 4.667c-0.139 0.093-0.223 0.249-0.223 0.416v4.667c0 0.167 0.084 0.323 0.223 0.416l7 4.667c0.084 0.056 0.181 0.084 0.277 0.084s0.193-0.028 0.277-0.084l7-4.667c0.139-0.093 0.223-0.249 0.223-0.416v-4.667c0-0.167-0.084-0.323-0.223-0.416zM7.5 10.232l-2.599-1.732 2.599-1.732 2.599 1.732-2.599 1.732zM8 5.899v-3.465l5.599 3.732-2.599 1.732-3-2zM7 5.899l-3 2-2.599-1.732 5.599-3.732v3.465zM3.099 8.5l-2.099 1.399v-2.798l2.099 1.399zM4 9.101l3 2v3.465l-5.599-3.732 2.599-1.732zM8 11.101l3-2 2.599 1.732-5.599 3.732v-3.465zM11.901 8.5l2.099-1.399v2.798l-2.099-1.399z" + } + }] +}; +exports.codepen = codepen; \ No newline at end of file diff --git a/dist/icomoon/cog.js b/dist/icomoon/cog.js new file mode 100644 index 000000000..4fdf1f4b5 --- /dev/null +++ b/dist/icomoon/cog.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cog = void 0; +var cog = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.59 9.535c-0.839-1.454-0.335-3.317 1.127-4.164l-1.572-2.723c-0.449 0.263-0.972 0.414-1.529 0.414-1.68 0-3.042-1.371-3.042-3.062h-3.145c0.004 0.522-0.126 1.051-0.406 1.535-0.839 1.454-2.706 1.948-4.17 1.106l-1.572 2.723c0.453 0.257 0.845 0.634 1.123 1.117 0.838 1.452 0.336 3.311-1.12 4.16l1.572 2.723c0.448-0.261 0.967-0.41 1.522-0.41 1.675 0 3.033 1.362 3.042 3.046h3.145c-0.001-0.517 0.129-1.040 0.406-1.519 0.838-1.452 2.7-1.947 4.163-1.11l1.572-2.723c-0.45-0.257-0.839-0.633-1.116-1.113zM8 11.24c-1.789 0-3.24-1.45-3.24-3.24s1.45-3.24 3.24-3.24c1.789 0 3.24 1.45 3.24 3.24s-1.45 3.24-3.24 3.24z" + } + }] +}; +exports.cog = cog; \ No newline at end of file diff --git a/dist/icomoon/cogs.js b/dist/icomoon/cogs.js new file mode 100644 index 000000000..4e86b8135 --- /dev/null +++ b/dist/icomoon/cogs.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cogs = void 0; +var cogs = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5.683 11.282l0.645-0.903-0.707-0.707-0.903 0.645c-0.168-0.094-0.347-0.168-0.535-0.222l-0.183-1.095h-1l-0.183 1.095c-0.188 0.053-0.368 0.128-0.535 0.222l-0.903-0.645-0.707 0.707 0.645 0.903c-0.094 0.168-0.168 0.347-0.222 0.535l-1.095 0.183v1l1.095 0.183c0.053 0.188 0.128 0.368 0.222 0.535l-0.645 0.903 0.707 0.707 0.903-0.645c0.168 0.094 0.347 0.168 0.535 0.222l0.183 1.095h1l0.183-1.095c0.188-0.053 0.368-0.128 0.535-0.222l0.903 0.645 0.707-0.707-0.645-0.903c0.094-0.168 0.168-0.347 0.222-0.535l1.095-0.182v-1l-1.095-0.183c-0.053-0.188-0.128-0.368-0.222-0.535zM3.5 13.5c-0.552 0-1-0.448-1-1s0.448-1 1-1 1 0.448 1 1-0.448 1-1 1zM16 6v-1l-1.053-0.191c-0.019-0.126-0.044-0.25-0.074-0.372l0.899-0.58-0.383-0.924-1.046 0.226c-0.066-0.108-0.136-0.213-0.211-0.315l0.609-0.88-0.707-0.707-0.88 0.609c-0.102-0.074-0.207-0.145-0.315-0.211l0.226-1.046-0.924-0.383-0.58 0.899c-0.122-0.030-0.246-0.054-0.372-0.074l-0.191-1.053h-1l-0.191 1.053c-0.126 0.019-0.25 0.044-0.372 0.074l-0.58-0.899-0.924 0.383 0.226 1.046c-0.108 0.066-0.213 0.136-0.315 0.211l-0.88-0.609-0.707 0.707 0.609 0.88c-0.074 0.102-0.145 0.207-0.211 0.315l-1.046-0.226-0.383 0.924 0.899 0.58c-0.030 0.122-0.054 0.246-0.074 0.372l-1.053 0.191v1l1.053 0.191c0.019 0.126 0.044 0.25 0.074 0.372l-0.899 0.58 0.383 0.924 1.046-0.226c0.066 0.108 0.136 0.213 0.211 0.315l-0.609 0.88 0.707 0.707 0.88-0.609c0.102 0.074 0.207 0.145 0.315 0.211l-0.226 1.046 0.924 0.383 0.58-0.899c0.122 0.030 0.246 0.054 0.372 0.074l0.191 1.053h1l0.191-1.053c0.126-0.019 0.25-0.044 0.372-0.074l0.58 0.899 0.924-0.383-0.226-1.046c0.108-0.066 0.213-0.136 0.315-0.211l0.88 0.609 0.707-0.707-0.609-0.88c0.074-0.102 0.145-0.207 0.211-0.315l1.046 0.226 0.383-0.924-0.899-0.58c0.030-0.122 0.054-0.246 0.074-0.372l1.053-0.191zM10.5 7.675c-1.201 0-2.175-0.974-2.175-2.175s0.974-2.175 2.175-2.175 2.175 0.974 2.175 2.175c0 1.201-0.974 2.175-2.175 2.175z" + } + }] +}; +exports.cogs = cogs; \ No newline at end of file diff --git a/dist/icomoon/coinDollar.js b/dist/icomoon/coinDollar.js new file mode 100644 index 000000000..d7841171c --- /dev/null +++ b/dist/icomoon/coinDollar.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.coinDollar = void 0; +var coinDollar = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7.5 1c-4.142 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5c4.142 0 7.5-3.358 7.5-7.5s-3.358-7.5-7.5-7.5zM7.5 14.5c-3.314 0-6-2.686-6-6s2.686-6 6-6c3.314 0 6 2.686 6 6s-2.686 6-6 6zM8 8v-2h2v-1h-2v-1h-1v1h-2v4h2v2h-2v1h2v1h1v-1h2l-0-4h-2zM7 8h-1v-2h1v2zM9 11h-1v-2h1v2z" + } + }] +}; +exports.coinDollar = coinDollar; \ No newline at end of file diff --git a/dist/icomoon/coinEuro.js b/dist/icomoon/coinEuro.js new file mode 100644 index 000000000..6eb410e77 --- /dev/null +++ b/dist/icomoon/coinEuro.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.coinEuro = void 0; +var coinEuro = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7.5 1c-4.142 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5c4.142 0 7.5-3.358 7.5-7.5s-3.358-7.5-7.5-7.5zM7.5 14.5c-3.314 0-6-2.686-6-6s2.686-6 6-6c3.314 0 6 2.686 6 6s-2.686 6-6 6z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M10.482 10.068c-0.239-0.139-0.545-0.058-0.684 0.181-0.27 0.463-0.767 0.751-1.298 0.751h-2c-0.652 0-1.208-0.418-1.414-1h2.414c0.276 0 0.5-0.224 0.5-0.5s-0.224-0.5-0.5-0.5h-2.5v-1h2.5c0.276 0 0.5-0.224 0.5-0.5s-0.224-0.5-0.5-0.5h-2.414c0.206-0.582 0.762-1 1.414-1h2c0.531 0 1.028 0.288 1.298 0.751 0.139 0.239 0.445 0.32 0.684 0.181s0.32-0.445 0.181-0.684c-0.448-0.77-1.277-1.249-2.162-1.249h-2c-1.207 0-2.217 0.86-2.45 2h-0.55c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5h0.5v1h-0.5c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5h0.55c0.232 1.14 1.242 2 2.45 2h2c0.886 0 1.714-0.478 2.162-1.249 0.139-0.239 0.058-0.545-0.181-0.684z" + } + }] +}; +exports.coinEuro = coinEuro; \ No newline at end of file diff --git a/dist/icomoon/coinPound.js b/dist/icomoon/coinPound.js new file mode 100644 index 000000000..1e9a1b706 --- /dev/null +++ b/dist/icomoon/coinPound.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.coinPound = void 0; +var coinPound = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7.5 1c-4.142 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5c4.142 0 7.5-3.358 7.5-7.5s-3.358-7.5-7.5-7.5zM7.5 14.5c-3.314 0-6-2.686-6-6s2.686-6 6-6c3.314 0 6 2.686 6 6s-2.686 6-6 6z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9.5 11h-3.5v-2h1.5c0.276 0 0.5-0.224 0.5-0.5s-0.224-0.5-0.5-0.5h-1.5v-0.5c0-0.827 0.673-1.5 1.5-1.5 0.534 0 1.032 0.288 1.3 0.75 0.138 0.239 0.444 0.321 0.683 0.182s0.321-0.444 0.182-0.683c-0.446-0.771-1.276-1.25-2.165-1.25-1.378 0-2.5 1.122-2.5 2.5v0.5h-0.5c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5h0.5v3h4.5c0.276 0 0.5-0.224 0.5-0.5s-0.224-0.5-0.5-0.5z" + } + }] +}; +exports.coinPound = coinPound; \ No newline at end of file diff --git a/dist/icomoon/coinYen.js b/dist/icomoon/coinYen.js new file mode 100644 index 000000000..0e2df51dd --- /dev/null +++ b/dist/icomoon/coinYen.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.coinYen = void 0; +var coinYen = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7.5 1c-4.142 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5c4.142 0 7.5-3.358 7.5-7.5s-3.358-7.5-7.5-7.5zM7.5 14.5c-3.314 0-6-2.686-6-6s2.686-6 6-6c3.314 0 6 2.686 6 6s-2.686 6-6 6z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9.5 9c0.276 0 0.5-0.224 0.5-0.5s-0.224-0.5-0.5-0.5h-1.066l1.482-2.223c0.153-0.23 0.091-0.54-0.139-0.693s-0.54-0.091-0.693 0.139l-1.584 2.376-1.584-2.376c-0.153-0.23-0.464-0.292-0.693-0.139s-0.292 0.464-0.139 0.693l1.482 2.223h-1.066c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5h1.5v1h-1.5c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5h1.5v1.5c0 0.276 0.224 0.5 0.5 0.5s0.5-0.224 0.5-0.5v-1.5h1.5c0.276 0 0.5-0.224 0.5-0.5s-0.224-0.5-0.5-0.5h-1.5v-1h1.5z" + } + }] +}; +exports.coinYen = coinYen; \ No newline at end of file diff --git a/dist/icomoon/command.js b/dist/icomoon/command.js new file mode 100644 index 000000000..aac72e763 --- /dev/null +++ b/dist/icomoon/command.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.command = void 0; +var command = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.5 14c-1.379 0-2.5-1.121-2.5-2.5v-1.5h-2v1.5c0 1.379-1.122 2.5-2.5 2.5s-2.5-1.121-2.5-2.5 1.122-2.5 2.5-2.5h1.5v-2h-1.5c-1.378 0-2.5-1.122-2.5-2.5s1.122-2.5 2.5-2.5 2.5 1.122 2.5 2.5v1.5h2v-1.5c0-1.378 1.121-2.5 2.5-2.5s2.5 1.122 2.5 2.5-1.121 2.5-2.5 2.5h-1.5v2h1.5c1.379 0 2.5 1.121 2.5 2.5s-1.121 2.5-2.5 2.5zM10 10v1.5c0 0.827 0.673 1.5 1.5 1.5s1.5-0.673 1.5-1.5-0.673-1.5-1.5-1.5h-1.5zM4.5 10c-0.827 0-1.5 0.673-1.5 1.5s0.673 1.5 1.5 1.5 1.5-0.673 1.5-1.5v-1.5h-1.5zM7 9h2v-2h-2v2zM10 6h1.5c0.827 0 1.5-0.673 1.5-1.5s-0.673-1.5-1.5-1.5-1.5 0.673-1.5 1.5v1.5zM4.5 3c-0.827 0-1.5 0.673-1.5 1.5s0.673 1.5 1.5 1.5h1.5v-1.5c0-0.827-0.673-1.5-1.5-1.5z" + } + }] +}; +exports.command = command; \ No newline at end of file diff --git a/dist/icomoon/compass.js b/dist/icomoon/compass.js new file mode 100644 index 000000000..6ec9abd55 --- /dev/null +++ b/dist/icomoon/compass.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.compass = void 0; +var compass = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8.5 16c-0.036 0-0.072-0.004-0.108-0.012-0.229-0.051-0.392-0.254-0.392-0.488v-7.5h-7.5c-0.234 0-0.437-0.163-0.488-0.392s0.064-0.462 0.277-0.561l15-7c0.191-0.089 0.416-0.049 0.565 0.1s0.188 0.374 0.1 0.565l-7 15c-0.083 0.179-0.262 0.289-0.453 0.289zM2.754 7h5.746c0.276 0 0.5 0.224 0.5 0.5v5.746l5.465-11.712-11.712 5.465z" + } + }] +}; +exports.compass = compass; \ No newline at end of file diff --git a/dist/icomoon/compass2.js b/dist/icomoon/compass2.js new file mode 100644 index 000000000..a531cd771 --- /dev/null +++ b/dist/icomoon/compass2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.compass2 = void 0; +var compass2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM1.5 8c0-3.59 2.91-6.5 6.5-6.5 1.712 0 3.269 0.662 4.43 1.744l-6.43 2.756-2.756 6.43c-1.082-1.161-1.744-2.718-1.744-4.43zM9.143 9.143l-4.001 1.715 1.715-4.001 2.286 2.286zM8 14.5c-1.712 0-3.269-0.662-4.43-1.744l6.43-2.756 2.756-6.43c1.082 1.161 1.744 2.718 1.744 4.43 0 3.59-2.91 6.5-6.5 6.5z" + } + }] +}; +exports.compass2 = compass2; \ No newline at end of file diff --git a/dist/icomoon/confused.js b/dist/icomoon/confused.js new file mode 100644 index 000000000..feb750ebb --- /dev/null +++ b/dist/icomoon/confused.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.confused = void 0; +var confused = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5zM4 5c0-0.552 0.448-1 1-1s1 0.448 1 1c0 0.552-0.448 1-1 1s-1-0.448-1-1zM10 5c0-0.552 0.448-1 1-1s1 0.448 1 1c0 0.552-0.448 1-1 1s-1-0.448-1-1zM11.345 10h1.014c0.144 1.133-0.507 2.258-1.624 2.665-1.295 0.472-2.733-0.199-3.204-1.494-0.283-0.777-1.145-1.179-1.923-0.896-0.712 0.259-1.109 1.005-0.953 1.725h-1.013c-0.144-1.133 0.507-2.258 1.624-2.665 1.295-0.472 2.733 0.199 3.204 1.494 0.283 0.777 1.145 1.179 1.923 0.896 0.712-0.259 1.109-1.005 0.953-1.725z" + } + }] +}; +exports.confused = confused; \ No newline at end of file diff --git a/dist/icomoon/confused2.js b/dist/icomoon/confused2.js new file mode 100644 index 000000000..4212bead2 --- /dev/null +++ b/dist/icomoon/confused2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.confused2 = void 0; +var confused2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8c4.418 0 8-3.582 8-8s-3.582-8-8-8zM11 4c0.552 0 1 0.448 1 1s-0.448 1-1 1-1-0.448-1-1c0-0.552 0.448-1 1-1zM5 4c0.552 0 1 0.448 1 1s-0.448 1-1 1-1-0.448-1-1c0-0.552 0.448-1 1-1zM10.735 12.665c-1.295 0.472-2.733-0.199-3.204-1.494-0.283-0.777-1.145-1.179-1.923-0.896-0.712 0.259-1.109 1.005-0.953 1.725h-1.013c-0.144-1.133 0.507-2.258 1.624-2.665 1.295-0.472 2.733 0.199 3.204 1.494 0.283 0.777 1.145 1.179 1.923 0.896 0.712-0.259 1.109-1.005 0.953-1.725h1.014c0.144 1.133-0.507 2.258-1.624 2.665z" + } + }] +}; +exports.confused2 = confused2; \ No newline at end of file diff --git a/dist/icomoon/connection.js b/dist/icomoon/connection.js new file mode 100644 index 000000000..63590b40c --- /dev/null +++ b/dist/icomoon/connection.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.connection = void 0; +var connection = { + "viewBox": "0 0 20 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M10 9c1.654 0 3.154 0.673 4.241 1.759l-1.414 1.414c-0.724-0.724-1.724-1.173-2.827-1.173s-2.103 0.449-2.827 1.173l-1.414-1.414c1.086-1.086 2.586-1.759 4.241-1.759zM2.929 7.929c1.889-1.889 4.4-2.929 7.071-2.929s5.182 1.040 7.071 2.929l-1.414 1.414c-1.511-1.511-3.52-2.343-5.657-2.343s-4.146 0.832-5.657 2.343l-1.414-1.414zM15.45 2.101c1.667 0.705 3.164 1.715 4.45 3v0l-1.414 1.414c-2.267-2.266-5.28-3.515-8.485-3.515s-6.219 1.248-8.485 3.515l-1.414-1.414c1.285-1.285 2.783-2.295 4.45-3 1.727-0.73 3.56-1.101 5.45-1.101s3.723 0.37 5.45 1.101zM9 14c0-0.552 0.448-1 1-1s1 0.448 1 1c0 0.552-0.448 1-1 1s-1-0.448-1-1z" + } + }] +}; +exports.connection = connection; \ No newline at end of file diff --git a/dist/icomoon/contrast.js b/dist/icomoon/contrast.js new file mode 100644 index 000000000..fc03e8e82 --- /dev/null +++ b/dist/icomoon/contrast.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.contrast = void 0; +var contrast = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM2 8c0-3.314 2.686-6 6-6v12c-3.314 0-6-2.686-6-6z" + } + }] +}; +exports.contrast = contrast; \ No newline at end of file diff --git a/dist/icomoon/cool.js b/dist/icomoon/cool.js new file mode 100644 index 000000000..62eca2050 --- /dev/null +++ b/dist/icomoon/cool.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cool = void 0; +var cool = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5zM12.5 4c0.275 0 0.5 0.225 0.5 0.5v1.5c0 0.55-0.45 1-1 1h-2c-0.55 0-1-0.45-1-1h-2c0 0.55-0.45 1-1 1h-2c-0.55 0-1-0.45-1-1v-1.5c0-0.275 0.225-0.5 0.5-0.5h3c0.275 0 0.5 0.225 0.5 0.5v0.5h2v-0.5c0-0.275 0.225-0.5 0.5-0.5h3zM8 12c1.456 0 2.731-0.778 3.43-1.942l0.857 0.515c-0.874 1.454-2.467 2.427-4.288 2.427-0.757 0-1.475-0.169-2.118-0.47l0.518-0.864c0.49 0.214 1.031 0.334 1.6 0.334z" + } + }] +}; +exports.cool = cool; \ No newline at end of file diff --git a/dist/icomoon/cool2.js b/dist/icomoon/cool2.js new file mode 100644 index 000000000..1d9330507 --- /dev/null +++ b/dist/icomoon/cool2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cool2 = void 0; +var cool2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8c4.418 0 8-3.582 8-8s-3.582-8-8-8zM8 13c-0.757 0-1.475-0.169-2.118-0.47l0.518-0.864c0.49 0.214 1.031 0.334 1.6 0.334 1.456 0 2.731-0.778 3.43-1.942l0.858 0.515c-0.874 1.454-2.467 2.427-4.288 2.427zM13 6c0 0.55-0.45 1-1 1h-2c-0.55 0-1-0.45-1-1h-2c0 0.55-0.45 1-1 1h-2c-0.55 0-1-0.45-1-1v-1.5c0-0.275 0.225-0.5 0.5-0.5h3c0.275 0 0.5 0.225 0.5 0.5v0.5h2v-0.5c0-0.275 0.225-0.5 0.5-0.5h3c0.275 0 0.5 0.225 0.5 0.5v1.5z" + } + }] +}; +exports.cool2 = cool2; \ No newline at end of file diff --git a/dist/icomoon/copy.js b/dist/icomoon/copy.js new file mode 100644 index 000000000..135d5ffdd --- /dev/null +++ b/dist/icomoon/copy.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.copy = void 0; +var copy = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M10 4v-4h-7l-3 3v9h6v4h10v-12h-6zM3 1.414v1.586h-1.586l1.586-1.586zM1 11v-7h3v-3h5v3l-3 3v4h-5zM9 5.414v1.586h-1.586l1.586-1.586zM15 15h-8v-7h3v-3h5v10z" + } + }] +}; +exports.copy = copy; \ No newline at end of file diff --git a/dist/icomoon/creditCard.js b/dist/icomoon/creditCard.js new file mode 100644 index 000000000..dd68758a5 --- /dev/null +++ b/dist/icomoon/creditCard.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.creditCard = void 0; +var creditCard = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.5 2h-13c-0.825 0-1.5 0.675-1.5 1.5v9c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-9c0-0.825-0.675-1.5-1.5-1.5zM1.5 3h13c0.271 0 0.5 0.229 0.5 0.5v1.5h-14v-1.5c0-0.271 0.229-0.5 0.5-0.5zM14.5 13h-13c-0.271 0-0.5-0.229-0.5-0.5v-4.5h14v4.5c0 0.271-0.229 0.5-0.5 0.5zM2 10h1v2h-1zM4 10h1v2h-1zM6 10h1v2h-1z" + } + }] +}; +exports.creditCard = creditCard; \ No newline at end of file diff --git a/dist/icomoon/crop.js b/dist/icomoon/crop.js new file mode 100644 index 000000000..e6ae17812 --- /dev/null +++ b/dist/icomoon/crop.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.crop = void 0; +var crop = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13 4l3-3-1-1-3 3h-7v-3h-2v3h-3v2h3v8h8v3h2v-3h3v-2h-3v-7zM5 5h5l-5 5v-5zM6 11l5-5v5h-5z" + } + }] +}; +exports.crop = crop; \ No newline at end of file diff --git a/dist/icomoon/cross.js b/dist/icomoon/cross.js new file mode 100644 index 000000000..2e06e7654 --- /dev/null +++ b/dist/icomoon/cross.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cross = void 0; +var cross = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.854 12.854c-0-0-0-0-0-0l-4.854-4.854 4.854-4.854c0-0 0-0 0-0 0.052-0.052 0.090-0.113 0.114-0.178 0.066-0.178 0.028-0.386-0.114-0.529l-2.293-2.293c-0.143-0.143-0.351-0.181-0.529-0.114-0.065 0.024-0.126 0.062-0.178 0.114 0 0-0 0-0 0l-4.854 4.854-4.854-4.854c-0-0-0-0-0-0-0.052-0.052-0.113-0.090-0.178-0.114-0.178-0.066-0.386-0.029-0.529 0.114l-2.293 2.293c-0.143 0.143-0.181 0.351-0.114 0.529 0.024 0.065 0.062 0.126 0.114 0.178 0 0 0 0 0 0l4.854 4.854-4.854 4.854c-0 0-0 0-0 0-0.052 0.052-0.090 0.113-0.114 0.178-0.066 0.178-0.029 0.386 0.114 0.529l2.293 2.293c0.143 0.143 0.351 0.181 0.529 0.114 0.065-0.024 0.126-0.062 0.178-0.114 0-0 0-0 0-0l4.854-4.854 4.854 4.854c0 0 0 0 0 0 0.052 0.052 0.113 0.090 0.178 0.114 0.178 0.066 0.386 0.029 0.529-0.114l2.293-2.293c0.143-0.143 0.181-0.351 0.114-0.529-0.024-0.065-0.062-0.126-0.114-0.178z" + } + }] +}; +exports.cross = cross; \ No newline at end of file diff --git a/dist/icomoon/crying.js b/dist/icomoon/crying.js new file mode 100644 index 000000000..5639b38b5 --- /dev/null +++ b/dist/icomoon/crying.js @@ -0,0 +1,59 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.crying = void 0; +var crying = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12.5 6h-2c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5h2c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5.5 6h-2c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5h2c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9.5 13.375c-0.128 0-0.256-0.049-0.354-0.146-0.072-0.072-0.46-0.229-1.146-0.229s-1.075 0.157-1.146 0.229c-0.195 0.195-0.512 0.195-0.707 0s-0.195-0.512 0-0.707c0.471-0.471 1.453-0.521 1.854-0.521s1.383 0.051 1.854 0.521c0.195 0.195 0.195 0.512 0 0.707-0.098 0.098-0.226 0.146-0.354 0.146z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.5 9c-0.276 0-0.5-0.224-0.5-0.5v-1c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5v1c0 0.276-0.224 0.5-0.5 0.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.5 12c-0.276 0-0.5-0.224-0.5-0.5v-1c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5v1c0 0.276-0.224 0.5-0.5 0.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4.5 9c-0.276 0-0.5-0.224-0.5-0.5v-1c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5v1c0 0.276-0.224 0.5-0.5 0.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4.5 12c-0.276 0-0.5-0.224-0.5-0.5v-1c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5v1c0 0.276-0.224 0.5-0.5 0.5z" + } + }] +}; +exports.crying = crying; \ No newline at end of file diff --git a/dist/icomoon/crying2.js b/dist/icomoon/crying2.js new file mode 100644 index 000000000..ea8ff226b --- /dev/null +++ b/dist/icomoon/crying2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.crying2 = void 0; +var crying2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM5 11.5c0 0.276-0.224 0.5-0.5 0.5s-0.5-0.224-0.5-0.5v-1c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5v1zM5 8.5c0 0.276-0.224 0.5-0.5 0.5s-0.5-0.224-0.5-0.5v-1c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5v1zM5.5 6h-2c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5h2c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5zM9.854 13.229c-0.098 0.098-0.226 0.146-0.354 0.146s-0.256-0.049-0.354-0.146c-0.072-0.072-0.46-0.229-1.146-0.229s-1.075 0.157-1.146 0.229c-0.195 0.195-0.512 0.195-0.707 0s-0.195-0.512 0-0.707c0.471-0.471 1.453-0.521 1.854-0.521s1.383 0.051 1.854 0.521c0.195 0.195 0.195 0.512 0 0.707zM12 11.5c0 0.276-0.224 0.5-0.5 0.5s-0.5-0.224-0.5-0.5v-1c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5v1zM12 8.5c0 0.276-0.224 0.5-0.5 0.5s-0.5-0.224-0.5-0.5v-1c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5v1zM12.5 6h-2c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5h2c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5z" + } + }] +}; +exports.crying2 = crying2; \ No newline at end of file diff --git a/dist/icomoon/css3.js b/dist/icomoon/css3.js new file mode 100644 index 000000000..3314e3f48 --- /dev/null +++ b/dist/icomoon/css3.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.css3 = void 0; +var css3 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M2.381 0.758l-0.537 2.686h10.934l-0.342 1.735h-10.94l-0.53 2.686h10.933l-0.61 3.063-4.406 1.46-3.819-1.46 0.261-1.329h-2.686l-0.639 3.224 6.316 2.417 7.281-2.417 2.403-12.066z" + } + }] +}; +exports.css3 = css3; \ No newline at end of file diff --git a/dist/icomoon/ctrl.js b/dist/icomoon/ctrl.js new file mode 100644 index 000000000..f40dd4028 --- /dev/null +++ b/dist/icomoon/ctrl.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ctrl = void 0; +var ctrl = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.5 7c-0.139 0-0.278-0.058-0.377-0.171l-3.124-3.57-3.124 3.57c-0.182 0.208-0.498 0.229-0.706 0.047s-0.229-0.498-0.047-0.706l3.5-4c0.095-0.108 0.232-0.171 0.376-0.171s0.281 0.062 0.376 0.171l3.5 4c0.182 0.208 0.161 0.524-0.047 0.706-0.095 0.083-0.212 0.124-0.329 0.124z" + } + }] +}; +exports.ctrl = ctrl; \ No newline at end of file diff --git a/dist/icomoon/database.js b/dist/icomoon/database.js new file mode 100644 index 000000000..2561b1377 --- /dev/null +++ b/dist/icomoon/database.js @@ -0,0 +1,29 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.database = void 0; +var database = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 1.119-8 2.5v2c0 1.381 3.582 2.5 8 2.5s8-1.119 8-2.5v-2c0-1.381-3.582-2.5-8-2.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 8.5c-4.418 0-8-1.119-8-2.5v3c0 1.381 3.582 2.5 8 2.5s8-1.119 8-2.5v-3c0 1.381-3.582 2.5-8 2.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 13c-4.418 0-8-1.119-8-2.5v3c0 1.381 3.582 2.5 8 2.5s8-1.119 8-2.5v-3c0 1.381-3.582 2.5-8 2.5z" + } + }] +}; +exports.database = database; \ No newline at end of file diff --git a/dist/icomoon/delicious.js b/dist/icomoon/delicious.js new file mode 100644 index 000000000..7410b398e --- /dev/null +++ b/dist/icomoon/delicious.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.delicious = void 0; +var delicious = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 0v16h16v-16h-16zM8 15v-7h-7v-7h7v7h7v7h-7z" + } + }] +}; +exports.delicious = delicious; \ No newline at end of file diff --git a/dist/icomoon/deviantart.js b/dist/icomoon/deviantart.js new file mode 100644 index 000000000..a4dd05779 --- /dev/null +++ b/dist/icomoon/deviantart.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.deviantart = void 0; +var deviantart = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12.953 2.909v-2.909h-2.909l-0.291 0.294-1.375 2.616-0.431 0.291h-4.9v3.994h2.694l0.241 0.291-2.934 5.606v2.909h2.909l0.291-0.294 1.375-2.616 0.431-0.291h4.9v-3.994h-2.694l-0.241-0.294z" + } + }] +}; +exports.deviantart = deviantart; \ No newline at end of file diff --git a/dist/icomoon/diamonds.js b/dist/icomoon/diamonds.js new file mode 100644 index 000000000..385debc25 --- /dev/null +++ b/dist/icomoon/diamonds.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.diamonds = void 0; +var diamonds = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0l-5 8 5 8 5-8z" + } + }] +}; +exports.diamonds = diamonds; \ No newline at end of file diff --git a/dist/icomoon/dice.js b/dist/icomoon/dice.js new file mode 100644 index 000000000..a6656c3be --- /dev/null +++ b/dist/icomoon/dice.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.dice = void 0; +var dice = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.5 3h-8c-1.375 0-2.5 1.125-2.5 2.5v8c0 1.375 1.125 2.5 2.5 2.5h8c1.375 0 2.5-1.125 2.5-2.5v-8c0-1.375-1.125-2.5-2.5-2.5zM6.5 14c-0.828 0-1.5-0.672-1.5-1.5s0.672-1.5 1.5-1.5 1.5 0.672 1.5 1.5-0.672 1.5-1.5 1.5zM6.5 8c-0.828 0-1.5-0.672-1.5-1.5s0.672-1.5 1.5-1.5 1.5 0.672 1.5 1.5-0.672 1.5-1.5 1.5zM9.5 11c-0.828 0-1.5-0.672-1.5-1.5s0.672-1.5 1.5-1.5 1.5 0.672 1.5 1.5-0.672 1.5-1.5 1.5zM12.5 14c-0.828 0-1.5-0.672-1.5-1.5s0.672-1.5 1.5-1.5 1.5 0.672 1.5 1.5-0.672 1.5-1.5 1.5zM12.5 8c-0.828 0-1.5-0.672-1.5-1.5s0.672-1.5 1.5-1.5 1.5 0.672 1.5 1.5-0.672 1.5-1.5 1.5zM12.949 2c-0.233-1.138-1.245-2-2.449-2h-8c-1.375 0-2.5 1.125-2.5 2.5v8c0 1.204 0.862 2.216 2 2.449v-9.949c0-0.55 0.45-1 1-1h9.949z" + } + }] +}; +exports.dice = dice; \ No newline at end of file diff --git a/dist/icomoon/display.js b/dist/icomoon/display.js new file mode 100644 index 000000000..0ea8be49a --- /dev/null +++ b/dist/icomoon/display.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.display = void 0; +var display = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 1v10h16v-10h-16zM15 10h-14v-8h14v8zM10.5 12h-5l-0.5 2-1 1h8l-1-1z" + } + }] +}; +exports.display = display; \ No newline at end of file diff --git a/dist/icomoon/download.js b/dist/icomoon/download.js new file mode 100644 index 000000000..566db7291 --- /dev/null +++ b/dist/icomoon/download.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.download = void 0; +var download = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 9l4-4h-3v-4h-2v4h-3zM11.636 7.364l-1.121 1.121 4.064 1.515-6.579 2.453-6.579-2.453 4.064-1.515-1.121-1.121-4.364 1.636v4l8 3 8-3v-4z" + } + }] +}; +exports.download = download; \ No newline at end of file diff --git a/dist/icomoon/download2.js b/dist/icomoon/download2.js new file mode 100644 index 000000000..dd6e99fa8 --- /dev/null +++ b/dist/icomoon/download2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.download2 = void 0; +var download2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14 8h-2.5l-3.5 3.5-3.5-3.5h-2.5l-2 4v1h16v-1l-2-4zM0 14h16v1h-16v-1zM9 5v-4h-2v4h-3.5l4.5 4.5 4.5-4.5h-3.5z" + } + }] +}; +exports.download2 = download2; \ No newline at end of file diff --git a/dist/icomoon/download3.js b/dist/icomoon/download3.js new file mode 100644 index 000000000..84eb5fe9c --- /dev/null +++ b/dist/icomoon/download3.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.download3 = void 0; +var download3 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.5 7l-4 4-4-4h2.5v-6h3v6zM7.5 11h-7.5v4h15v-4h-7.5zM14 13h-2v-1h2v1z" + } + }] +}; +exports.download3 = download3; \ No newline at end of file diff --git a/dist/icomoon/drawer.js b/dist/icomoon/drawer.js new file mode 100644 index 000000000..ee570c122 --- /dev/null +++ b/dist/icomoon/drawer.js @@ -0,0 +1,29 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.drawer = void 0; +var drawer = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.89 10.188l-4-5c-0.095-0.119-0.239-0.188-0.39-0.188h-7c-0.152 0-0.296 0.069-0.39 0.188l-4 5c-0.071 0.089-0.11 0.199-0.11 0.312v4.5c0 0.552 0.448 1 1 1h14c0.552 0 1-0.448 1-1v-4.5c0-0.114-0.039-0.224-0.11-0.312zM15 11h-3.5l-2 2h-3l-2-2h-3.5v-0.325l3.74-4.675h6.519l3.74 4.675v0.325z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.5 8h-7c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5h7c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12.5 10h-9c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5h9c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5z" + } + }] +}; +exports.drawer = drawer; \ No newline at end of file diff --git a/dist/icomoon/drawer2.js b/dist/icomoon/drawer2.js new file mode 100644 index 000000000..e57b4341b --- /dev/null +++ b/dist/icomoon/drawer2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.drawer2 = void 0; +var drawer2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.89 10.188l-4-5c-0.095-0.119-0.239-0.188-0.39-0.188h-7c-0.152 0-0.296 0.069-0.39 0.188l-4 5c-0.071 0.089-0.11 0.199-0.11 0.312v4.5c0 0.552 0.448 1 1 1h14c0.552 0 1-0.448 1-1v-4.5c0-0.114-0.039-0.224-0.11-0.312zM15 11h-3.5l-2 2h-3l-2-2h-3.5v-0.325l3.74-4.675h6.519l3.74 4.675v0.325z" + } + }] +}; +exports.drawer2 = drawer2; \ No newline at end of file diff --git a/dist/icomoon/dribbble.js b/dist/icomoon/dribbble.js new file mode 100644 index 000000000..0c39b97a6 --- /dev/null +++ b/dist/icomoon/dribbble.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.dribbble = void 0; +var dribbble = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 16c-4.412 0-8-3.588-8-8s3.587-8 8-8c4.412 0 8 3.587 8 8s-3.588 8-8 8v0zM14.747 9.094c-0.234-0.075-2.116-0.634-4.256-0.291 0.894 2.456 1.256 4.456 1.328 4.872 1.531-1.037 2.625-2.678 2.928-4.581v0zM10.669 14.3c-0.103-0.6-0.497-2.688-1.456-5.181-0.016 0.006-0.031 0.009-0.044 0.016-3.856 1.344-5.241 4.016-5.362 4.266 1.159 0.903 2.616 1.444 4.194 1.444 0.947 0 1.85-0.194 2.669-0.544v0zM2.922 12.578c0.156-0.266 2.031-3.369 5.553-4.509 0.088-0.028 0.178-0.056 0.269-0.081-0.172-0.388-0.359-0.778-0.553-1.159-3.409 1.022-6.722 0.978-7.022 0.975-0.003 0.069-0.003 0.138-0.003 0.209 0 1.753 0.666 3.356 1.756 4.566v0zM1.313 6.609c0.306 0.003 3.122 0.016 6.319-0.831-1.131-2.013-2.353-3.706-2.534-3.953-1.913 0.903-3.344 2.666-3.784 4.784v0zM6.4 1.366c0.188 0.253 1.431 1.944 2.55 4 2.431-0.909 3.459-2.294 3.581-2.469-1.206-1.072-2.794-1.722-4.531-1.722-0.55 0.003-1.088 0.069-1.6 0.191v0zM13.291 3.691c-0.144 0.194-1.291 1.663-3.816 2.694 0.159 0.325 0.313 0.656 0.453 0.991 0.050 0.119 0.1 0.234 0.147 0.353 2.275-0.284 4.534 0.172 4.759 0.219-0.016-1.612-0.594-3.094-1.544-4.256v0z" + } + }] +}; +exports.dribbble = dribbble; \ No newline at end of file diff --git a/dist/icomoon/drive.js b/dist/icomoon/drive.js new file mode 100644 index 000000000..9849484e7 --- /dev/null +++ b/dist/icomoon/drive.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.drive = void 0; +var drive = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M3 14h10c1.657 0 3-1.343 3-3h-16c0 1.657 1.343 3 3 3zM13 12h1v1h-1v-1zM15 2h-14l-1 8h16z" + } + }] +}; +exports.drive = drive; \ No newline at end of file diff --git a/dist/icomoon/dropbox.js b/dist/icomoon/dropbox.js new file mode 100644 index 000000000..38d65d835 --- /dev/null +++ b/dist/icomoon/dropbox.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.dropbox = void 0; +var dropbox = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.5 0.5l-3.5 3 4.5 3 3.5-3z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 3.5l-3.5-3-4.5 3 3.5 3z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12.5 6.5l3.5 3-4.5 2.5-3.5-3z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 9l-4.5-2.5-3.5 3 4.5 2.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.377 13.212l-3.377-2.895-3.377 2.895-2.123-1.179v1.467l5.5 2.5 5.5-2.5v-1.467z" + } + }] +}; +exports.dropbox = dropbox; \ No newline at end of file diff --git a/dist/icomoon/droplet.js b/dist/icomoon/droplet.js new file mode 100644 index 000000000..bce4438db --- /dev/null +++ b/dist/icomoon/droplet.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.droplet = void 0; +var droplet = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.51 7.393c-1.027-2.866-3.205-5.44-5.51-7.393-2.305 1.953-4.482 4.527-5.51 7.393-0.635 1.772-0.698 3.696 0.197 5.397 1.029 1.955 3.104 3.21 5.313 3.21s4.284-1.255 5.313-3.21c0.895-1.701 0.832-3.624 0.197-5.397zM11.543 11.859c-0.684 1.301-2.075 2.141-3.543 2.141-0.861 0-1.696-0.29-2.377-0.791 0.207 0.027 0.416 0.041 0.627 0.041 1.835 0 3.573-1.050 4.428-2.676 0.701-1.333 0.64-2.716 0.373-3.818 0.227 0.44 0.42 0.878 0.576 1.311 0.353 0.985 0.625 2.443-0.084 3.791z" + } + }] +}; +exports.droplet = droplet; \ No newline at end of file diff --git a/dist/icomoon/earth.js b/dist/icomoon/earth.js new file mode 100644 index 000000000..9468e19ba --- /dev/null +++ b/dist/icomoon/earth.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.earth = void 0; +var earth = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM8 15c-0.984 0-1.92-0.203-2.769-0.57l3.643-4.098c0.081-0.092 0.126-0.21 0.126-0.332v-1.5c0-0.276-0.224-0.5-0.5-0.5-1.765 0-3.628-1.835-3.646-1.854-0.094-0.094-0.221-0.146-0.354-0.146h-2c-0.276 0-0.5 0.224-0.5 0.5v3c0 0.189 0.107 0.363 0.276 0.447l1.724 0.862v2.936c-1.813-1.265-3-3.366-3-5.745 0-1.074 0.242-2.091 0.674-3h1.826c0.133 0 0.26-0.053 0.354-0.146l2-2c0.094-0.094 0.146-0.221 0.146-0.354v-1.21c0.634-0.189 1.305-0.29 2-0.29 1.1 0 2.141 0.254 3.067 0.706-0.065 0.055-0.128 0.112-0.188 0.172-0.567 0.567-0.879 1.32-0.879 2.121s0.312 1.555 0.879 2.121c0.569 0.569 1.332 0.879 2.119 0.879 0.049 0 0.099-0.001 0.149-0.004 0.216 0.809 0.605 2.917-0.131 5.818-0.007 0.027-0.011 0.055-0.013 0.082-1.271 1.298-3.042 2.104-5.002 2.104z" + } + }] +}; +exports.earth = earth; \ No newline at end of file diff --git a/dist/icomoon/edge.js b/dist/icomoon/edge.js new file mode 100644 index 000000000..5582933ae --- /dev/null +++ b/dist/icomoon/edge.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.edge = void 0; +var edge = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0.241 7.103c0.469-3.7 2.994-7.056 7.519-7.103 2.731 0.053 4.978 1.291 6.316 3.65 0.672 1.231 0.881 2.525 0.925 3.953v1.678h-10.041c0.047 4.141 6.094 4 8.697 2.175v3.372c-1.525 0.916-4.984 1.734-7.662 0.681-2.281-0.856-3.906-3.244-3.897-5.541-0.075-2.978 1.481-4.95 3.897-6.072-0.513 0.634-0.903 1.334-1.106 2.547h5.669c0 0 0.331-3.388-3.209-3.388-3.338 0.116-5.744 2.056-7.106 4.047v0z" + } + }] +}; +exports.edge = edge; \ No newline at end of file diff --git a/dist/icomoon/eject.js b/dist/icomoon/eject.js new file mode 100644 index 000000000..d69d04a02 --- /dev/null +++ b/dist/icomoon/eject.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.eject = void 0; +var eject = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 12h16v2h-16zM8 2l8 8h-16z" + } + }] +}; +exports.eject = eject; \ No newline at end of file diff --git a/dist/icomoon/ello.js b/dist/icomoon/ello.js new file mode 100644 index 000000000..f0bf07e88 --- /dev/null +++ b/dist/icomoon/ello.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ello = void 0; +var ello = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM12.885 9.212c-0.575 2.23-2.584 3.788-4.885 3.788s-4.31-1.558-4.885-3.788c-0.097-0.377 0.131-0.764 0.508-0.861 0.058-0.015 0.118-0.023 0.177-0.023 0.322 0 0.604 0.218 0.684 0.531 0.414 1.605 1.86 2.727 3.516 2.727s3.102-1.121 3.516-2.727c0.081-0.313 0.362-0.531 0.684-0.531 0.060 0 0.12 0.008 0.178 0.023 0.183 0.047 0.336 0.163 0.432 0.326s0.123 0.353 0.075 0.536z" + } + }] +}; +exports.ello = ello; \ No newline at end of file diff --git a/dist/icomoon/embed.js b/dist/icomoon/embed.js new file mode 100644 index 000000000..142ff22d4 --- /dev/null +++ b/dist/icomoon/embed.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.embed = void 0; +var embed = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9 11.5l1.5 1.5 5-5-5-5-1.5 1.5 3.5 3.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7 4.5l-1.5-1.5-5 5 5 5 1.5-1.5-3.5-3.5z" + } + }] +}; +exports.embed = embed; \ No newline at end of file diff --git a/dist/icomoon/embed2.js b/dist/icomoon/embed2.js new file mode 100644 index 000000000..e0b8bd451 --- /dev/null +++ b/dist/icomoon/embed2.js @@ -0,0 +1,29 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.embed2 = void 0; +var embed2 = { + "viewBox": "0 0 20 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13 11.5l1.5 1.5 5-5-5-5-1.5 1.5 3.5 3.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7 4.5l-1.5-1.5-5 5 5 5 1.5-1.5-3.5-3.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M10.958 2.352l1.085 0.296-3 11-1.085-0.296 3-11z" + } + }] +}; +exports.embed2 = embed2; \ No newline at end of file diff --git a/dist/icomoon/enlarge.js b/dist/icomoon/enlarge.js new file mode 100644 index 000000000..86e9fdfbd --- /dev/null +++ b/dist/icomoon/enlarge.js @@ -0,0 +1,35 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.enlarge = void 0; +var enlarge = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16 0h-6.5l2.5 2.5-3 3 1.5 1.5 3-3 2.5 2.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16 16v-6.5l-2.5 2.5-3-3-1.5 1.5 3 3-2.5 2.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 16h6.5l-2.5-2.5 3-3-1.5-1.5-3 3-2.5-2.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 0v6.5l2.5-2.5 3 3 1.5-1.5-3-3 2.5-2.5z" + } + }] +}; +exports.enlarge = enlarge; \ No newline at end of file diff --git a/dist/icomoon/enlarge2.js b/dist/icomoon/enlarge2.js new file mode 100644 index 000000000..25c392663 --- /dev/null +++ b/dist/icomoon/enlarge2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.enlarge2 = void 0; +var enlarge2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16 0v6.5l-2.5-2.5-3 3-1.5-1.5 3-3-2.5-2.5zM7 10.5l-3 3 2.5 2.5h-6.5v-6.5l2.5 2.5 3-3z" + } + }] +}; +exports.enlarge2 = enlarge2; \ No newline at end of file diff --git a/dist/icomoon/enter.js b/dist/icomoon/enter.js new file mode 100644 index 000000000..eab79af5e --- /dev/null +++ b/dist/icomoon/enter.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.enter = void 0; +var enter = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6 8h-5v-2h5v-2l3 3-3 3zM16 0v13l-6 3v-3h-6v-4h1v3h5v-9l4-2h-9v4h-1v-5z" + } + }] +}; +exports.enter = enter; \ No newline at end of file diff --git a/dist/icomoon/envelop.js b/dist/icomoon/envelop.js new file mode 100644 index 000000000..b0cf474ec --- /dev/null +++ b/dist/icomoon/envelop.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.envelop = void 0; +var envelop = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.5 2h-13c-0.825 0-1.5 0.675-1.5 1.5v10c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-10c0-0.825-0.675-1.5-1.5-1.5zM6.23 8.6l-4.23 3.295v-7.838l4.23 4.543zM2.756 4h10.488l-5.244 3.938-5.244-3.938zM6.395 8.777l1.605 1.723 1.605-1.723 3.29 4.223h-9.79l3.29-4.223zM9.77 8.6l4.23-4.543v7.838l-4.23-3.295z" + } + }] +}; +exports.envelop = envelop; \ No newline at end of file diff --git a/dist/icomoon/equalizer.js b/dist/icomoon/equalizer.js new file mode 100644 index 000000000..b05ede47e --- /dev/null +++ b/dist/icomoon/equalizer.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.equalizer = void 0; +var equalizer = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7 2v-0.25c0-0.413-0.338-0.75-0.75-0.75h-2.5c-0.413 0-0.75 0.337-0.75 0.75v0.25h-3v2h3v0.25c0 0.412 0.337 0.75 0.75 0.75h2.5c0.412 0 0.75-0.338 0.75-0.75v-0.25h9v-2h-9zM4 4v-2h2v2h-2zM13 6.75c0-0.412-0.338-0.75-0.75-0.75h-2.5c-0.412 0-0.75 0.338-0.75 0.75v0.25h-9v2h9v0.25c0 0.412 0.338 0.75 0.75 0.75h2.5c0.412 0 0.75-0.338 0.75-0.75v-0.25h3v-2h-3v-0.25zM10 9v-2h2v2h-2zM7 11.75c0-0.412-0.338-0.75-0.75-0.75h-2.5c-0.413 0-0.75 0.338-0.75 0.75v0.25h-3v2h3v0.25c0 0.412 0.337 0.75 0.75 0.75h2.5c0.412 0 0.75-0.338 0.75-0.75v-0.25h9v-2h-9v-0.25zM4 14v-2h2v2h-2z" + } + }] +}; +exports.equalizer = equalizer; \ No newline at end of file diff --git a/dist/icomoon/equalizer2.js b/dist/icomoon/equalizer2.js new file mode 100644 index 000000000..e6f6b1e38 --- /dev/null +++ b/dist/icomoon/equalizer2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.equalizer2 = void 0; +var equalizer2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14 7h0.25c0.412 0 0.75-0.338 0.75-0.75v-2.5c0-0.413-0.338-0.75-0.75-0.75h-0.25v-3h-2v3h-0.25c-0.412 0-0.75 0.337-0.75 0.75v2.5c0 0.412 0.338 0.75 0.75 0.75h0.25v9h2v-9zM12 4h2v2h-2v-2zM9.25 13c0.412 0 0.75-0.338 0.75-0.75v-2.5c0-0.412-0.338-0.75-0.75-0.75h-0.25v-9h-2v9h-0.25c-0.412 0-0.75 0.338-0.75 0.75v2.5c0 0.412 0.338 0.75 0.75 0.75h0.25v3h2v-3h0.25zM7 10h2v2h-2v-2zM4.25 7c0.412 0 0.75-0.338 0.75-0.75v-2.5c0-0.413-0.338-0.75-0.75-0.75h-0.25v-3h-2v3h-0.25c-0.413 0-0.75 0.337-0.75 0.75v2.5c0 0.412 0.337 0.75 0.75 0.75h0.25v9h2v-9h0.25zM2 4h2v2h-2v-2z" + } + }] +}; +exports.equalizer2 = equalizer2; \ No newline at end of file diff --git a/dist/icomoon/evil.js b/dist/icomoon/evil.js new file mode 100644 index 000000000..35993855d --- /dev/null +++ b/dist/icomoon/evil.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.evil = void 0; +var evil = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M10 7c-0.552 0-1-0.448-1-1 0-0.018 0.001-0.036 0.002-0.054 0.032-0.741 0.706-1.234 1.275-1.518 0.543-0.271 1.080-0.407 1.102-0.413 0.268-0.067 0.539 0.096 0.606 0.364s-0.096 0.539-0.364 0.606c-0.275 0.070-0.602 0.189-0.89 0.334 0.166 0.179 0.268 0.418 0.268 0.681 0 0.552-0.448 1-1 1zM4.379 4.985c-0.268-0.067-0.431-0.338-0.364-0.606s0.338-0.431 0.606-0.364c0.023 0.006 0.559 0.141 1.102 0.413 0.568 0.284 1.243 0.776 1.275 1.518 0.001 0.018 0.002 0.036 0.002 0.054 0 0.552-0.448 1-1 1s-1-0.448-1-1c0-0.263 0.102-0.503 0.268-0.681-0.288-0.144-0.614-0.264-0.89-0.334zM8 11.5c1.274 0 2.389-0.681 3.002-1.699l1.286 0.772c-0.874 1.454-2.467 2.427-4.288 2.427s-3.413-0.973-4.288-2.427l1.286-0.772c0.612 1.018 1.727 1.699 3.002 1.699zM16 1c0-0.711-0.149-1.387-0.416-2-0.525 1.201-1.507 2.155-2.726 2.643-1.347-1.031-3.030-1.643-4.857-1.643s-3.51 0.613-4.857 1.643c-1.22-0.488-2.202-1.443-2.726-2.643-0.268 0.613-0.416 1.289-0.416 2 0 1.15 0.388 2.208 1.040 3.053-0.662 1.165-1.040 2.512-1.040 3.947 0 4.418 3.582 8 8 8s8-3.582 8-8c0-1.436-0.378-2.783-1.040-3.947 0.652-0.845 1.040-1.903 1.040-3.053zM8 14.5c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5 6.5 2.91 6.5 6.5-2.91 6.5-6.5 6.5z" + } + }] +}; +exports.evil = evil; \ No newline at end of file diff --git a/dist/icomoon/evil2.js b/dist/icomoon/evil2.js new file mode 100644 index 000000000..492a04ac2 --- /dev/null +++ b/dist/icomoon/evil2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.evil2 = void 0; +var evil2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16 1c0-0.711-0.149-1.387-0.416-2-0.525 1.201-1.507 2.155-2.726 2.643-1.347-1.031-3.030-1.643-4.857-1.643s-3.51 0.613-4.857 1.643c-1.22-0.488-2.202-1.443-2.726-2.643-0.268 0.613-0.416 1.289-0.416 2 0 1.15 0.388 2.208 1.040 3.053-0.662 1.165-1.040 2.512-1.040 3.947 0 4.418 3.582 8 8 8s8-3.582 8-8c0-1.436-0.378-2.783-1.040-3.947 0.652-0.845 1.040-1.903 1.040-3.053zM9.001 5.946c0.032-0.741 0.706-1.234 1.275-1.518 0.543-0.271 1.080-0.407 1.102-0.413 0.268-0.067 0.539 0.096 0.606 0.364s-0.096 0.539-0.364 0.606c-0.275 0.070-0.602 0.189-0.89 0.334 0.166 0.179 0.268 0.418 0.268 0.681 0 0.552-0.448 1-1 1s-1-0.448-1-1c0-0.018 0.001-0.036 0.002-0.054zM4.015 4.379c0.067-0.268 0.338-0.431 0.606-0.364 0.023 0.006 0.559 0.141 1.102 0.413 0.568 0.284 1.243 0.776 1.275 1.518 0.001 0.018 0.002 0.036 0.002 0.054 0 0.552-0.448 1-1 1s-1-0.448-1-1c0-0.263 0.102-0.503 0.268-0.681-0.288-0.144-0.614-0.264-0.89-0.334-0.268-0.067-0.431-0.338-0.364-0.606zM8 13c-1.82 0-3.413-0.973-4.288-2.427l1.286-0.772c0.612 1.018 1.727 1.699 3.002 1.699s2.389-0.681 3.002-1.699l1.286 0.772c-0.874 1.454-2.467 2.427-4.288 2.427z" + } + }] +}; +exports.evil2 = evil2; \ No newline at end of file diff --git a/dist/icomoon/exit.js b/dist/icomoon/exit.js new file mode 100644 index 000000000..7597b5f6c --- /dev/null +++ b/dist/icomoon/exit.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.exit = void 0; +var exit = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12 10v-2h-5v-2h5v-2l3 3zM11 9v4h-5v3l-6-3v-13h11v5h-1v-4h-8l4 2v9h4v-3z" + } + }] +}; +exports.exit = exit; \ No newline at end of file diff --git a/dist/icomoon/eye.js b/dist/icomoon/eye.js new file mode 100644 index 000000000..d8382b287 --- /dev/null +++ b/dist/icomoon/eye.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.eye = void 0; +var eye = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 3c-3.489 0-6.514 2.032-8 5 1.486 2.968 4.511 5 8 5s6.514-2.032 8-5c-1.486-2.968-4.511-5-8-5zM11.945 5.652c0.94 0.6 1.737 1.403 2.335 2.348-0.598 0.946-1.395 1.749-2.335 2.348-1.181 0.753-2.545 1.152-3.944 1.152s-2.763-0.398-3.945-1.152c-0.94-0.6-1.737-1.403-2.335-2.348 0.598-0.946 1.395-1.749 2.335-2.348 0.061-0.039 0.123-0.077 0.185-0.114-0.156 0.427-0.241 0.888-0.241 1.369 0 2.209 1.791 4 4 4s4-1.791 4-4c0-0.481-0.085-0.942-0.241-1.369 0.062 0.037 0.124 0.075 0.185 0.114v0zM8 6.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5 0.672-1.5 1.5-1.5 1.5 0.672 1.5 1.5z" + } + }] +}; +exports.eye = eye; \ No newline at end of file diff --git a/dist/icomoon/eyeBlocked.js b/dist/icomoon/eyeBlocked.js new file mode 100644 index 000000000..f42898179 --- /dev/null +++ b/dist/icomoon/eyeBlocked.js @@ -0,0 +1,29 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.eyeBlocked = void 0; +var eyeBlocked = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.78 0.22c-0.293-0.293-0.768-0.293-1.061 0l-3.159 3.159c-0.812-0.246-1.671-0.378-2.561-0.378-3.489 0-6.514 2.032-8 5 0.643 1.283 1.573 2.391 2.703 3.236l-2.484 2.484c-0.293 0.293-0.293 0.768 0 1.061 0.146 0.146 0.338 0.22 0.53 0.22s0.384-0.073 0.53-0.22l13.5-13.5c0.293-0.293 0.293-0.768 0-1.061zM6.5 5c0.66 0 1.22 0.426 1.421 1.019l-1.902 1.902c-0.592-0.201-1.019-0.761-1.019-1.421 0-0.828 0.672-1.5 1.5-1.5zM1.721 8c0.598-0.946 1.395-1.749 2.335-2.348 0.061-0.039 0.123-0.077 0.185-0.114-0.156 0.427-0.241 0.888-0.241 1.369 0 0.858 0.27 1.652 0.73 2.303l-0.952 0.952c-0.819-0.576-1.519-1.311-2.057-2.162z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12 6.906c0-0.424-0.066-0.833-0.189-1.217l-5.028 5.028c0.384 0.123 0.793 0.189 1.217 0.189 2.209 0 4-1.791 4-4z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12.969 4.531l-1.084 1.084c0.020 0.012 0.040 0.024 0.059 0.037 0.94 0.6 1.737 1.403 2.335 2.348-0.598 0.946-1.395 1.749-2.335 2.348-1.181 0.753-2.545 1.152-3.944 1.152-0.604 0-1.202-0.074-1.781-0.219l-1.201 1.201c0.933 0.335 1.937 0.518 2.982 0.518 3.489 0 6.514-2.032 8-5-0.703-1.405-1.752-2.6-3.031-3.469z" + } + }] +}; +exports.eyeBlocked = eyeBlocked; \ No newline at end of file diff --git a/dist/icomoon/eyeMinus.js b/dist/icomoon/eyeMinus.js new file mode 100644 index 000000000..fbdceb5d5 --- /dev/null +++ b/dist/icomoon/eyeMinus.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.eyeMinus = void 0; +var eyeMinus = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M10 2h6v2h-6v-2z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.599 5h-4.599v-1.944c-0.328-0.037-0.662-0.056-1-0.056-3.489 0-6.514 2.032-8 5 1.486 2.968 4.511 5 8 5s6.514-2.032 8-5c-0.584-1.167-1.407-2.189-2.401-3zM6.5 5c0.828 0 1.5 0.672 1.5 1.5s-0.672 1.5-1.5 1.5-1.5-0.672-1.5-1.5 0.672-1.5 1.5-1.5zM11.944 10.348c-1.181 0.753-2.545 1.152-3.944 1.152s-2.763-0.398-3.945-1.152c-0.94-0.6-1.736-1.403-2.335-2.348 0.598-0.946 1.395-1.749 2.335-2.348 0.061-0.039 0.123-0.077 0.185-0.114-0.156 0.427-0.241 0.888-0.241 1.369 0 2.209 1.791 4 4 4s4-1.791 4-4c0-0.481-0.085-0.942-0.241-1.369 0.062 0.037 0.124 0.075 0.185 0.114 0.94 0.6 1.737 1.403 2.335 2.348-0.598 0.946-1.395 1.749-2.335 2.348z" + } + }] +}; +exports.eyeMinus = eyeMinus; \ No newline at end of file diff --git a/dist/icomoon/eyePlus.js b/dist/icomoon/eyePlus.js new file mode 100644 index 000000000..f40d64560 --- /dev/null +++ b/dist/icomoon/eyePlus.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.eyePlus = void 0; +var eyePlus = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16 2h-2v-2h-2v2h-2v2h2v2h2v-2h2z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.498 6.969c0.288 0.32 0.55 0.665 0.782 1.031-0.598 0.946-1.395 1.749-2.335 2.348-1.181 0.753-2.545 1.152-3.944 1.152s-2.763-0.398-3.945-1.152c-0.94-0.6-1.736-1.403-2.335-2.348 0.598-0.946 1.395-1.749 2.335-2.348 0.061-0.039 0.123-0.077 0.185-0.114-0.156 0.427-0.241 0.888-0.241 1.369 0 2.209 1.791 4 4 4s4-1.791 4-4c0-0.011-0-0.022-0-0.032-1.708-0.44-2.973-1.979-2.999-3.817-0.329-0.037-0.662-0.057-1.001-0.057-3.489 0-6.514 2.032-8 5 1.486 2.968 4.511 5 8 5s6.514-2.032 8-5c-0.276-0.55-0.604-1.069-0.979-1.548-0.457 0.268-0.973 0.449-1.523 0.517zM6.5 5c0.828 0 1.5 0.672 1.5 1.5s-0.672 1.5-1.5 1.5-1.5-0.672-1.5-1.5 0.672-1.5 1.5-1.5z" + } + }] +}; +exports.eyePlus = eyePlus; \ No newline at end of file diff --git a/dist/icomoon/eyedropper.js b/dist/icomoon/eyedropper.js new file mode 100644 index 000000000..c56bad5ca --- /dev/null +++ b/dist/icomoon/eyedropper.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.eyedropper = void 0; +var eyedropper = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.414 0.586c-0.781-0.781-2.047-0.781-2.828 0l-2.689 2.689-1.896-1.896-2.121 2.121 1.663 1.663-7.377 7.377c-0.126 0.126-0.179 0.296-0.161 0.46h-0.004v2.5c0 0.276 0.224 0.5 0.5 0.5h2.5c0 0 0.042 0 0.063 0 0.144 0 0.288-0.055 0.398-0.165l7.377-7.377 1.663 1.663 2.121-2.121-1.896-1.896 2.689-2.689c0.781-0.781 0.781-2.047 0-2.828zM2.705 15h-1.705v-1.705l7.337-7.337 1.704 1.704-7.337 7.337z" + } + }] +}; +exports.eyedropper = eyedropper; \ No newline at end of file diff --git a/dist/icomoon/facebook.js b/dist/icomoon/facebook.js new file mode 100644 index 000000000..68de25089 --- /dev/null +++ b/dist/icomoon/facebook.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.facebook = void 0; +var facebook = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9.5 3h2.5v-3h-2.5c-1.93 0-3.5 1.57-3.5 3.5v1.5h-2v3h2v8h3v-8h2.5l0.5-3h-3v-1.5c0-0.271 0.229-0.5 0.5-0.5z" + } + }] +}; +exports.facebook = facebook; \ No newline at end of file diff --git a/dist/icomoon/facebook2.js b/dist/icomoon/facebook2.js new file mode 100644 index 000000000..a84ac6854 --- /dev/null +++ b/dist/icomoon/facebook2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.facebook2 = void 0; +var facebook2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.5 0h-13c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h6.5v-7h-2v-2h2v-1c0-1.653 1.347-3 3-3h2v2h-2c-0.55 0-1 0.45-1 1v1h3l-0.5 2h-2.5v7h4.5c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5z" + } + }] +}; +exports.facebook2 = facebook2; \ No newline at end of file diff --git a/dist/icomoon/feed.js b/dist/icomoon/feed.js new file mode 100644 index 000000000..03021278b --- /dev/null +++ b/dist/icomoon/feed.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.feed = void 0; +var feed = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6 8c0-1.105 0.895-2 2-2s2 0.895 2 2c0 1.105-0.895 2-2 2s-2-0.895-2-2zM10.38 3.602c1.56 0.846 2.62 2.498 2.62 4.398s-1.059 3.552-2.62 4.398c0.689-1.096 1.12-2.66 1.12-4.398s-0.431-3.302-1.12-4.398zM4.5 8c0 1.738 0.431 3.302 1.12 4.398-1.56-0.846-2.62-2.498-2.62-4.398s1.059-3.552 2.62-4.398c-0.689 1.096-1.12 2.66-1.12 4.398zM1.5 8c0 2.686 0.85 5.097 2.198 6.746-2.223-1.421-3.698-3.911-3.698-6.746s1.474-5.325 3.698-6.746c-1.348 1.649-2.198 4.060-2.198 6.746zM12.302 1.254c2.223 1.421 3.698 3.911 3.698 6.746s-1.474 5.325-3.698 6.746c1.348-1.649 2.198-4.060 2.198-6.746s-0.85-5.097-2.198-6.746z" + } + }] +}; +exports.feed = feed; \ No newline at end of file diff --git a/dist/icomoon/fileEmpty.js b/dist/icomoon/fileEmpty.js new file mode 100644 index 000000000..38ad3dd11 --- /dev/null +++ b/dist/icomoon/fileEmpty.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.fileEmpty = void 0; +var fileEmpty = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.341 3.579c-0.347-0.473-0.831-1.027-1.362-1.558s-1.085-1.015-1.558-1.362c-0.806-0.591-1.197-0.659-1.421-0.659h-7.75c-0.689 0-1.25 0.561-1.25 1.25v13.5c0 0.689 0.561 1.25 1.25 1.25h11.5c0.689 0 1.25-0.561 1.25-1.25v-9.75c0-0.224-0.068-0.615-0.659-1.421zM12.271 2.729c0.48 0.48 0.856 0.912 1.134 1.271h-2.406v-2.405c0.359 0.278 0.792 0.654 1.271 1.134zM14 14.75c0 0.136-0.114 0.25-0.25 0.25h-11.5c-0.135 0-0.25-0.114-0.25-0.25v-13.5c0-0.135 0.115-0.25 0.25-0.25 0 0 7.749-0 7.75 0v3.5c0 0.276 0.224 0.5 0.5 0.5h3.5v9.75z" + } + }] +}; +exports.fileEmpty = fileEmpty; \ No newline at end of file diff --git a/dist/icomoon/fileExcel.js b/dist/icomoon/fileExcel.js new file mode 100644 index 000000000..00cd65dcb --- /dev/null +++ b/dist/icomoon/fileExcel.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.fileExcel = void 0; +var fileExcel = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.61 6h-2.114l-1.496 2.204-1.496-2.204h-2.114l2.534 3.788-2.859 4.212h3.935v-1.431h-0.784l0.784-1.172 1.741 2.603h2.194l-2.859-4.212 2.534-3.788z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.341 3.579c-0.347-0.473-0.831-1.027-1.362-1.558s-1.085-1.015-1.558-1.362c-0.806-0.591-1.197-0.659-1.421-0.659h-7.75c-0.689 0-1.25 0.561-1.25 1.25v13.5c0 0.689 0.561 1.25 1.25 1.25h11.5c0.689 0 1.25-0.561 1.25-1.25v-9.75c0-0.224-0.068-0.615-0.659-1.421v0zM12.271 2.729c0.48 0.48 0.856 0.912 1.134 1.271h-2.406v-2.405c0.359 0.278 0.792 0.654 1.271 1.134v0zM14 14.75c0 0.136-0.114 0.25-0.25 0.25h-11.5c-0.135 0-0.25-0.114-0.25-0.25v-13.5c0-0.135 0.115-0.25 0.25-0.25 0 0 7.749-0 7.75 0v3.5c0 0.276 0.224 0.5 0.5 0.5h3.5v9.75z" + } + }] +}; +exports.fileExcel = fileExcel; \ No newline at end of file diff --git a/dist/icomoon/fileMusic.js b/dist/icomoon/fileMusic.js new file mode 100644 index 000000000..823d39a32 --- /dev/null +++ b/dist/icomoon/fileMusic.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.fileMusic = void 0; +var fileMusic = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.341 3.579c-0.347-0.473-0.831-1.027-1.362-1.558s-1.085-1.015-1.558-1.362c-0.806-0.591-1.197-0.659-1.421-0.659h-7.75c-0.689 0-1.25 0.561-1.25 1.25v13.5c0 0.689 0.561 1.25 1.25 1.25h11.5c0.689 0 1.25-0.561 1.25-1.25v-9.75c0-0.224-0.068-0.615-0.659-1.421v0zM12.271 2.729c0.48 0.48 0.856 0.912 1.134 1.271h-2.406v-2.405c0.359 0.278 0.792 0.654 1.271 1.134v0zM14 14.75c0 0.136-0.114 0.25-0.25 0.25h-11.5c-0.135 0-0.25-0.114-0.25-0.25v-13.5c0-0.135 0.115-0.25 0.25-0.25 0 0 7.749-0 7.75 0v3.5c0 0.276 0.224 0.5 0.5 0.5h3.5v9.75z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.817 6.113c-0.116-0.095-0.268-0.133-0.415-0.104l-5 1c-0.234 0.047-0.402 0.252-0.402 0.49v3.701c-0.294-0.128-0.636-0.201-1-0.201-1.105 0-2 0.672-2 1.5s0.895 1.5 2 1.5 2-0.672 2-1.5v-3.59l4-0.8v2.091c-0.294-0.128-0.636-0.201-1-0.201-1.105 0-2 0.672-2 1.5s0.895 1.5 2 1.5 2-0.672 2-1.5v-5c0-0.15-0.067-0.292-0.183-0.387z" + } + }] +}; +exports.fileMusic = fileMusic; \ No newline at end of file diff --git a/dist/icomoon/fileOpenoffice.js b/dist/icomoon/fileOpenoffice.js new file mode 100644 index 000000000..eae05ddf2 --- /dev/null +++ b/dist/icomoon/fileOpenoffice.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.fileOpenoffice = void 0; +var fileOpenoffice = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M10.785 7.37c-0.948-0.448-2.156-0.538-3.044 0.095 1.080-0.103 2.265 0.076 3.049 0.893 0.75-0.861 1.939-1.022 3.015-0.933-0.898-0.596-2.082-0.516-3.019-0.054v0zM10.401 9.465c-1.068-0.025-2.101 0.362-2.986 0.939-1.675-0.712-3.793-0.58-5.219 0.609 0.411-0.015 0.813-0.116 1.22-0.169 1.487-0.148 3.072 0.221 4.196 1.247 0.465-0.68 1.119-1.223 1.87-1.561 0.986-0.477 2.096-0.526 3.169-0.539-0.651-0.448-1.478-0.531-2.249-0.526z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.341 3.579c-0.347-0.473-0.831-1.027-1.362-1.558s-1.085-1.015-1.558-1.362c-0.806-0.591-1.197-0.659-1.421-0.659h-7.75c-0.689 0-1.25 0.561-1.25 1.25v13.5c0 0.689 0.561 1.25 1.25 1.25h11.5c0.689 0 1.25-0.561 1.25-1.25v-9.75c0-0.224-0.068-0.615-0.659-1.421v0zM12.271 2.729c0.48 0.48 0.856 0.912 1.134 1.271h-2.406v-2.405c0.359 0.278 0.792 0.654 1.271 1.134v0zM14 14.75c0 0.136-0.114 0.25-0.25 0.25h-11.5c-0.135 0-0.25-0.114-0.25-0.25v-13.5c0-0.135 0.115-0.25 0.25-0.25 0 0 7.749-0 7.75 0v3.5c0 0.276 0.224 0.5 0.5 0.5h3.5v9.75z" + } + }] +}; +exports.fileOpenoffice = fileOpenoffice; \ No newline at end of file diff --git a/dist/icomoon/filePdf.js b/dist/icomoon/filePdf.js new file mode 100644 index 000000000..933a992b8 --- /dev/null +++ b/dist/icomoon/filePdf.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.filePdf = void 0; +var filePdf = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.156 9.211c-0.213-0.21-0.686-0.321-1.406-0.331-0.487-0.005-1.073 0.038-1.69 0.124-0.276-0.159-0.561-0.333-0.784-0.542-0.601-0.561-1.103-1.34-1.415-2.197 0.020-0.080 0.038-0.15 0.054-0.222 0 0 0.339-1.923 0.249-2.573-0.012-0.089-0.020-0.115-0.044-0.184l-0.029-0.076c-0.092-0.212-0.273-0.437-0.556-0.425l-0.171-0.005c-0.316 0-0.573 0.161-0.64 0.403-0.205 0.757 0.007 1.889 0.39 3.355l-0.098 0.239c-0.275 0.67-0.619 1.345-0.923 1.94l-0.040 0.077c-0.32 0.626-0.61 1.157-0.873 1.607l-0.271 0.144c-0.020 0.010-0.485 0.257-0.594 0.323-0.926 0.553-1.539 1.18-1.641 1.678-0.032 0.159-0.008 0.362 0.156 0.456l0.263 0.132c0.114 0.057 0.234 0.086 0.357 0.086 0.659 0 1.425-0.821 2.48-2.662 1.218-0.396 2.604-0.726 3.819-0.908 0.926 0.521 2.065 0.883 2.783 0.883 0.128 0 0.238-0.012 0.327-0.036 0.138-0.037 0.254-0.115 0.325-0.222 0.139-0.21 0.168-0.499 0.13-0.795-0.011-0.088-0.081-0.196-0.157-0.271zM3.307 12.72c0.12-0.329 0.596-0.979 1.3-1.556 0.044-0.036 0.153-0.138 0.253-0.233-0.736 1.174-1.229 1.642-1.553 1.788zM7.476 3.12c0.212 0 0.333 0.534 0.343 1.035s-0.107 0.853-0.252 1.113c-0.12-0.385-0.179-0.992-0.179-1.389 0 0-0.009-0.759 0.088-0.759v0zM6.232 9.961c0.148-0.264 0.301-0.543 0.458-0.839 0.383-0.724 0.624-1.29 0.804-1.755 0.358 0.651 0.804 1.205 1.328 1.649 0.065 0.055 0.135 0.111 0.207 0.166-1.066 0.211-1.987 0.467-2.798 0.779v0zM12.952 9.901c-0.065 0.041-0.251 0.064-0.37 0.064-0.386 0-0.864-0.176-1.533-0.464 0.257-0.019 0.493-0.029 0.705-0.029 0.387 0 0.502-0.002 0.88 0.095s0.383 0.293 0.318 0.333v0z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.341 3.579c-0.347-0.473-0.831-1.027-1.362-1.558s-1.085-1.015-1.558-1.362c-0.806-0.591-1.197-0.659-1.421-0.659h-7.75c-0.689 0-1.25 0.561-1.25 1.25v13.5c0 0.689 0.561 1.25 1.25 1.25h11.5c0.689 0 1.25-0.561 1.25-1.25v-9.75c0-0.224-0.068-0.615-0.659-1.421v0zM12.271 2.729c0.48 0.48 0.856 0.912 1.134 1.271h-2.406v-2.405c0.359 0.278 0.792 0.654 1.271 1.134v0zM14 14.75c0 0.136-0.114 0.25-0.25 0.25h-11.5c-0.135 0-0.25-0.114-0.25-0.25v-13.5c0-0.135 0.115-0.25 0.25-0.25 0 0 7.749-0 7.75 0v3.5c0 0.276 0.224 0.5 0.5 0.5h3.5v9.75z" + } + }] +}; +exports.filePdf = filePdf; \ No newline at end of file diff --git a/dist/icomoon/filePicture.js b/dist/icomoon/filePicture.js new file mode 100644 index 000000000..889ca307a --- /dev/null +++ b/dist/icomoon/filePicture.js @@ -0,0 +1,29 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.filePicture = void 0; +var filePicture = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13 14h-10v-2l3-5 4.109 5 2.891-2v4z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13 7.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5 0.672-1.5 1.5-1.5c0.828 0 1.5 0.672 1.5 1.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.341 3.579c-0.347-0.473-0.831-1.027-1.362-1.558s-1.085-1.015-1.558-1.362c-0.806-0.591-1.197-0.659-1.421-0.659h-7.75c-0.689 0-1.25 0.561-1.25 1.25v13.5c0 0.689 0.561 1.25 1.25 1.25h11.5c0.689 0 1.25-0.561 1.25-1.25v-9.75c0-0.224-0.068-0.615-0.659-1.421zM12.271 2.729c0.48 0.48 0.856 0.912 1.134 1.271h-2.406v-2.405c0.359 0.278 0.792 0.654 1.271 1.134zM14 14.75c0 0.136-0.114 0.25-0.25 0.25h-11.5c-0.135 0-0.25-0.114-0.25-0.25v-13.5c0-0.135 0.115-0.25 0.25-0.25 0 0 7.749-0 7.75 0v3.5c0 0.276 0.224 0.5 0.5 0.5h3.5v9.75z" + } + }] +}; +exports.filePicture = filePicture; \ No newline at end of file diff --git a/dist/icomoon/filePlay.js b/dist/icomoon/filePlay.js new file mode 100644 index 000000000..70d52450a --- /dev/null +++ b/dist/icomoon/filePlay.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.filePlay = void 0; +var filePlay = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6 6l5 3.5-5 3.5v-7z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.341 3.579c-0.347-0.473-0.831-1.027-1.362-1.558s-1.085-1.015-1.558-1.362c-0.806-0.591-1.197-0.659-1.421-0.659h-7.75c-0.689 0-1.25 0.561-1.25 1.25v13.5c0 0.689 0.561 1.25 1.25 1.25h11.5c0.689 0 1.25-0.561 1.25-1.25v-9.75c0-0.224-0.068-0.615-0.659-1.421zM12.271 2.729c0.48 0.48 0.856 0.912 1.134 1.271h-2.406v-2.405c0.359 0.278 0.792 0.654 1.271 1.134zM14 14.75c0 0.136-0.114 0.25-0.25 0.25h-11.5c-0.135 0-0.25-0.114-0.25-0.25v-13.5c0-0.135 0.115-0.25 0.25-0.25 0 0 7.749-0 7.75 0v3.5c0 0.276 0.224 0.5 0.5 0.5h3.5v9.75z" + } + }] +}; +exports.filePlay = filePlay; \ No newline at end of file diff --git a/dist/icomoon/fileText.js b/dist/icomoon/fileText.js new file mode 100644 index 000000000..7fab0a2ba --- /dev/null +++ b/dist/icomoon/fileText.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.fileText = void 0; +var fileText = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.5 0h-12c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h12c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM13 14h-11v-12h11v12zM4 7h7v1h-7zM4 9h7v1h-7zM4 11h7v1h-7zM4 5h7v1h-7z" + } + }] +}; +exports.fileText = fileText; \ No newline at end of file diff --git a/dist/icomoon/fileText2.js b/dist/icomoon/fileText2.js new file mode 100644 index 000000000..bab24fe54 --- /dev/null +++ b/dist/icomoon/fileText2.js @@ -0,0 +1,35 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.fileText2 = void 0; +var fileText2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.341 3.579c-0.347-0.473-0.831-1.027-1.362-1.558s-1.085-1.015-1.558-1.362c-0.806-0.591-1.197-0.659-1.421-0.659h-7.75c-0.689 0-1.25 0.561-1.25 1.25v13.5c0 0.689 0.561 1.25 1.25 1.25h11.5c0.689 0 1.25-0.561 1.25-1.25v-9.75c0-0.224-0.068-0.615-0.659-1.421zM12.271 2.729c0.48 0.48 0.856 0.912 1.134 1.271h-2.406v-2.405c0.359 0.278 0.792 0.654 1.271 1.134zM14 14.75c0 0.136-0.114 0.25-0.25 0.25h-11.5c-0.135 0-0.25-0.114-0.25-0.25v-13.5c0-0.135 0.115-0.25 0.25-0.25 0 0 7.749-0 7.75 0v3.5c0 0.276 0.224 0.5 0.5 0.5h3.5v9.75z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.5 13h-7c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5h7c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.5 11h-7c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5h7c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.5 9h-7c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5h7c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5z" + } + }] +}; +exports.fileText2 = fileText2; \ No newline at end of file diff --git a/dist/icomoon/fileVideo.js b/dist/icomoon/fileVideo.js new file mode 100644 index 000000000..de14bf879 --- /dev/null +++ b/dist/icomoon/fileVideo.js @@ -0,0 +1,29 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.fileVideo = void 0; +var fileVideo = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.341 3.579c-0.347-0.473-0.831-1.027-1.362-1.558s-1.085-1.015-1.558-1.362c-0.806-0.591-1.197-0.659-1.421-0.659h-7.75c-0.689 0-1.25 0.561-1.25 1.25v13.5c0 0.689 0.561 1.25 1.25 1.25h11.5c0.689 0 1.25-0.561 1.25-1.25v-9.75c0-0.224-0.068-0.615-0.659-1.421v0 0zM12.271 2.729c0.48 0.48 0.856 0.912 1.134 1.271h-2.406v-2.405c0.359 0.278 0.792 0.654 1.271 1.134v0 0zM14 14.75c0 0.136-0.114 0.25-0.25 0.25h-11.5c-0.135 0-0.25-0.114-0.25-0.25v-13.5c0-0.135 0.115-0.25 0.25-0.25 0 0 7.749-0 7.75 0v3.5c0 0.276 0.224 0.5 0.5 0.5h3.5v9.75z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4 8h5v5h-5v-5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9 10l3-2v5l-3-2z" + } + }] +}; +exports.fileVideo = fileVideo; \ No newline at end of file diff --git a/dist/icomoon/fileWord.js b/dist/icomoon/fileWord.js new file mode 100644 index 000000000..3dbbc95fb --- /dev/null +++ b/dist/icomoon/fileWord.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.fileWord = void 0; +var fileWord = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9.997 7.436h0.691l-0.797 3.534-1.036-4.969h-1.665l-1.205 4.969-0.903-4.969h-1.741l1.767 7.998h1.701l1.192-4.73 1.066 4.73h1.568l2.025-7.998h-2.663v1.435z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.341 3.579c-0.347-0.473-0.831-1.027-1.362-1.558s-1.085-1.015-1.558-1.362c-0.806-0.591-1.197-0.659-1.421-0.659h-7.75c-0.689 0-1.25 0.561-1.25 1.25v13.5c0 0.689 0.561 1.25 1.25 1.25h11.5c0.689 0 1.25-0.561 1.25-1.25v-9.75c0-0.224-0.068-0.615-0.659-1.421v0zM12.271 2.729c0.48 0.48 0.856 0.912 1.134 1.271h-2.406v-2.405c0.359 0.278 0.792 0.654 1.271 1.134v0zM14 14.75c0 0.136-0.114 0.25-0.25 0.25h-11.5c-0.135 0-0.25-0.114-0.25-0.25v-13.5c0-0.135 0.115-0.25 0.25-0.25 0 0 7.749-0 7.75 0v3.5c0 0.276 0.224 0.5 0.5 0.5h3.5v9.75z" + } + }] +}; +exports.fileWord = fileWord; \ No newline at end of file diff --git a/dist/icomoon/fileZip.js b/dist/icomoon/fileZip.js new file mode 100644 index 000000000..ae8f5cd5a --- /dev/null +++ b/dist/icomoon/fileZip.js @@ -0,0 +1,71 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.fileZip = void 0; +var fileZip = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.341 3.579c-0.347-0.473-0.831-1.027-1.362-1.558s-1.085-1.015-1.558-1.362c-0.806-0.591-1.197-0.659-1.421-0.659h-7.75c-0.689 0-1.25 0.561-1.25 1.25v13.5c0 0.689 0.561 1.25 1.25 1.25h11.5c0.689 0 1.25-0.561 1.25-1.25v-9.75c0-0.224-0.068-0.615-0.659-1.421v0 0zM12.271 2.729c0.48 0.48 0.856 0.912 1.134 1.271h-2.406v-2.405c0.359 0.278 0.792 0.654 1.271 1.134v0 0zM14 14.75c0 0.136-0.114 0.25-0.25 0.25h-11.5c-0.135 0-0.25-0.114-0.25-0.25v-13.5c0-0.135 0.115-0.25 0.25-0.25 0 0 7.749-0 7.75 0v3.5c0 0.276 0.224 0.5 0.5 0.5h3.5v9.75z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4 1h2v1h-2v-1z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6 2h2v1h-2v-1z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4 3h2v1h-2v-1z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6 4h2v1h-2v-1z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4 5h2v1h-2v-1z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6 6h2v1h-2v-1z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4 7h2v1h-2v-1z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6 8h2v1h-2v-1z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4 13.25c0 0.412 0.338 0.75 0.75 0.75h2.5c0.412 0 0.75-0.338 0.75-0.75v-2.5c0-0.412-0.338-0.75-0.75-0.75h-1.25v-1h-2v4.25zM7 12v1h-2v-1h2z" + } + }] +}; +exports.fileZip = fileZip; \ No newline at end of file diff --git a/dist/icomoon/filesEmpty.js b/dist/icomoon/filesEmpty.js new file mode 100644 index 000000000..2b68b5305 --- /dev/null +++ b/dist/icomoon/filesEmpty.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.filesEmpty = void 0; +var filesEmpty = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.341 5.579c-0.347-0.473-0.831-1.027-1.362-1.558s-1.085-1.015-1.558-1.362c-0.806-0.591-1.197-0.659-1.421-0.659h-5.75c-0.689 0-1.25 0.561-1.25 1.25v11.5c0 0.689 0.561 1.25 1.25 1.25h9.5c0.689 0 1.25-0.561 1.25-1.25v-7.75c0-0.224-0.068-0.615-0.659-1.421zM12.271 4.729c0.48 0.48 0.856 0.912 1.134 1.271h-2.406v-2.405c0.359 0.278 0.792 0.654 1.271 1.134v0zM14 14.75c0 0.136-0.114 0.25-0.25 0.25h-9.5c-0.136 0-0.25-0.114-0.25-0.25v-11.5c0-0.135 0.114-0.25 0.25-0.25 0 0 5.749-0 5.75 0v3.5c0 0.276 0.224 0.5 0.5 0.5h3.5v7.75z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9.421 0.659c-0.806-0.591-1.197-0.659-1.421-0.659h-5.75c-0.689 0-1.25 0.561-1.25 1.25v11.5c0 0.604 0.43 1.109 1 1.225v-12.725c0-0.135 0.115-0.25 0.25-0.25h7.607c-0.151-0.124-0.297-0.238-0.437-0.341z" + } + }] +}; +exports.filesEmpty = filesEmpty; \ No newline at end of file diff --git a/dist/icomoon/film.js b/dist/icomoon/film.js new file mode 100644 index 000000000..63cfe2812 --- /dev/null +++ b/dist/icomoon/film.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.film = void 0; +var film = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 2v12h16v-12h-16zM3 13h-2v-2h2v2zM3 9h-2v-2h2v2zM3 5h-2v-2h2v2zM12 13h-8v-10h8v10zM15 13h-2v-2h2v2zM15 9h-2v-2h2v2zM15 5h-2v-2h2v2zM6 5v6l4-3z" + } + }] +}; +exports.film = film; \ No newline at end of file diff --git a/dist/icomoon/filter.js b/dist/icomoon/filter.js new file mode 100644 index 000000000..bbfcca55d --- /dev/null +++ b/dist/icomoon/filter.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.filter = void 0; +var filter = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 1.119-8 2.5v1.5l6 6v5c0 0.552 0.895 1 2 1s2-0.448 2-1v-5l6-6v-1.5c0-1.381-3.582-2.5-8-2.5zM1.475 2.169c0.374-0.213 0.9-0.416 1.52-0.586 1.374-0.376 3.152-0.583 5.005-0.583s3.631 0.207 5.005 0.583c0.62 0.17 1.146 0.372 1.52 0.586 0.247 0.141 0.38 0.26 0.442 0.331-0.062 0.071-0.195 0.19-0.442 0.331-0.374 0.213-0.9 0.416-1.52 0.586-1.374 0.376-3.152 0.583-5.005 0.583s-3.631-0.207-5.005-0.583c-0.62-0.17-1.146-0.372-1.52-0.586-0.247-0.141-0.38-0.26-0.442-0.331 0.062-0.071 0.195-0.19 0.442-0.331z" + } + }] +}; +exports.filter = filter; \ No newline at end of file diff --git a/dist/icomoon/finder.js b/dist/icomoon/finder.js new file mode 100644 index 000000000..bd48b21b6 --- /dev/null +++ b/dist/icomoon/finder.js @@ -0,0 +1,83 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.finder = void 0; +var finder = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8.894 12.16c-0-0.001-0-0.001-0-0.002 0 0.001 0 0.001 0 0.002z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8.916 12.727c-0-0.004-0-0.007-0.001-0.011 0 0.004 0 0.007 0.001 0.011z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8.903 12.442c-0-0.003-0-0.006-0-0.008 0 0.003 0 0.006 0 0.008z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15 0h-14c-0.55 0-1 0.45-1 1v14c0 0.55 0.45 1 1 1h7.716c0.001 0 0.001 0 0.002 0s0.001-0 0.002-0h6.28c0.55 0 1-0.45 1-1v-14c0-0.55-0.45-1-1-1zM3 3.5c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5v1c0 0.276-0.224 0.5-0.5 0.5s-0.5-0.224-0.5-0.5v-1zM15 15h-5.86c-0.105-0.658-0.17-1.336-0.209-1.994 0 0.002 0 0.004 0 0.005-0.308 0.034-0.618 0.051-0.931 0.051-2.088 0-4.1-0.76-5.664-2.141-0.233-0.206-0.255-0.561-0.050-0.794s0.561-0.255 0.794-0.050c1.358 1.199 3.105 1.859 4.919 1.859 0.298 0 0.595-0.018 0.888-0.053-0.034-1.847 0.107-3.311 0.11-3.334 0.014-0.141-0.032-0.28-0.127-0.385s-0.229-0.164-0.371-0.164h-1.487c0.022-0.541 0.079-1.466 0.234-2.503 0.295-1.981 0.812-3.528 1.502-4.497h6.251v14z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12.5 5c-0.276 0-0.5-0.224-0.5-0.5v-1c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5v1c0 0.276-0.224 0.5-0.5 0.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8.445 13.050c-0.057 0.003-0.114 0.005-0.171 0.007 0.057-0.002 0.114-0.004 0.171-0.007z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 13.063c0.073 0 0.146-0.001 0.22-0.003-0.073 0.002-0.146 0.003-0.22 0.003z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8.423 11.925c0.012-0.001 0.024-0.001 0.037-0.002-0.012 0.001-0.024 0.001-0.037 0.002z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8.204 11.934c0.017-0 0.034-0.001 0.050-0.002-0.017 0.001-0.034 0.001-0.050 0.002z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.713 10.128c-0.206-0.233-0.561-0.255-0.794-0.050-1.135 1.002-2.542 1.627-4.032 1.806 0.007 0.364 0.020 0.742 0.043 1.127 1.749-0.191 3.403-0.916 4.733-2.090 0.233-0.206 0.255-0.561 0.050-0.794z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8.93 13.012c-0.072 0.008-0.144 0.015-0.216 0.021 0.072-0.006 0.144-0.013 0.216-0.021z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8.68 13.035c-0.061 0.005-0.122 0.009-0.183 0.013 0.061-0.004 0.122-0.008 0.183-0.013z" + } + }] +}; +exports.finder = finder; \ No newline at end of file diff --git a/dist/icomoon/fire.js b/dist/icomoon/fire.js new file mode 100644 index 000000000..6ad502cf5 --- /dev/null +++ b/dist/icomoon/fire.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.fire = void 0; +var fire = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5.016 16c-1.066-2.219-0.498-3.49 0.321-4.688 0.897-1.312 1.129-2.61 1.129-2.61s0.706 0.917 0.423 2.352c1.246-1.387 1.482-3.598 1.293-4.445 2.817 1.969 4.021 6.232 2.399 9.392 8.631-4.883 2.147-12.19 1.018-13.013 0.376 0.823 0.448 2.216-0.313 2.893-1.287-4.879-4.468-5.879-4.468-5.879 0.376 2.516-1.364 5.268-3.042 7.324-0.059-1.003-0.122-1.696-0.649-2.656-0.118 1.823-1.511 3.309-1.889 5.135-0.511 2.473 0.383 4.284 3.777 6.197z" + } + }] +}; +exports.fire = fire; \ No newline at end of file diff --git a/dist/icomoon/firefox.js b/dist/icomoon/firefox.js new file mode 100644 index 000000000..a4a988e56 --- /dev/null +++ b/dist/icomoon/firefox.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.firefox = void 0; +var firefox = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.977 5.221l-0.185 1.189c0 0-0.265-2.201-0.59-3.024-0.498-1.261-0.719-1.251-0.72-1.249 0.333 0.847 0.273 1.302 0.273 1.302s-0.591-1.609-2.152-2.121c-1.729-0.567-2.665-0.412-2.773-0.383-0.016-0-0.032-0-0.047-0 0.013 0.001 0.025 0.002 0.038 0.003-0.001 0-0.001 0.001-0.001 0.001 0.007 0.009 1.911 0.333 2.249 0.797 0 0-0.809 0-1.614 0.232-0.036 0.010 2.961 0.374 3.574 3.37 0 0-0.329-0.686-0.735-0.802 0.267 0.813 0.199 2.356-0.056 3.123-0.033 0.099-0.066-0.426-0.568-0.652 0.161 1.151-0.010 2.976-0.808 3.479-0.062 0.039 0.5-1.802 0.113-1.090-2.23 3.419-4.866 1.578-6.051 0.767 0.607 0.132 1.76-0.021 2.271-0.4 0.001-0 0.001-0.001 0.002-0.001 0.554-0.379 0.882-0.656 1.177-0.59s0.491-0.23 0.262-0.493c-0.229-0.263-0.786-0.625-1.539-0.428-0.531 0.139-1.19 0.727-2.194 0.132-0.771-0.457-0.844-0.837-0.851-1.1 0.019-0.093 0.043-0.18 0.072-0.26 0.089-0.248 0.358-0.323 0.508-0.382 0.254 0.044 0.473 0.123 0.703 0.241 0.003-0.076 0.004-0.178-0-0.293 0.022-0.044 0.008-0.176-0.027-0.337-0.020-0.161-0.053-0.328-0.106-0.48 0-0 0-0 0-0s0.002-0.001 0.002-0.001c0.001-0.001 0.002-0.002 0.003-0.003s0-0.001 0.001-0.001c0.001-0.002 0.002-0.004 0.003-0.007 0.016-0.072 0.188-0.211 0.402-0.361 0.192-0.134 0.417-0.277 0.595-0.387 0.157-0.098 0.277-0.17 0.302-0.189 0.010-0.007 0.021-0.016 0.034-0.026 0.002-0.002 0.005-0.004 0.007-0.006s0.003-0.002 0.004-0.004c0.085-0.067 0.211-0.194 0.237-0.462 0-0.001 0-0.001 0-0.002 0.001-0.008 0.001-0.016 0.002-0.024 0-0.006 0.001-0.011 0.001-0.017 0-0.004 0-0.009 0.001-0.013 0-0.011 0.001-0.021 0.001-0.032 0-0.001 0-0.001 0-0.002 0-0.026-0-0.053-0.002-0.081-0.001-0.016-0.002-0.030-0.005-0.043-0-0.001-0-0.001-0-0.002s-0.001-0.003-0.001-0.004-0.001-0.005-0.002-0.007c-0-0-0-0-0-0.001-0.001-0.003-0.002-0.005-0.003-0.007-0-0-0-0-0-0-0.027-0.064-0.13-0.088-0.554-0.096-0-0-0.001-0-0.001-0v0c-0.173-0.003-0.399-0.003-0.695-0.002-0.52 0.002-0.807-0.508-0.898-0.705 0.126-0.695 0.489-1.19 1.085-1.525 0.011-0.006 0.009-0.012-0.004-0.015 0.117-0.071-1.41-0.002-2.112 0.891-0.623-0.155-1.166-0.144-1.635-0.035-0.090-0.003-0.202-0.014-0.335-0.041-0.311-0.282-0.757-0.803-0.781-1.425 0 0-0.001 0.001-0.004 0.003-0-0.006-0.001-0.012-0.001-0.018 0 0-0.949 0.729-0.807 2.717-0 0.032-0.001 0.062-0.002 0.092-0.257 0.348-0.384 0.641-0.394 0.706-0.228 0.463-0.458 1.16-0.646 2.218 0 0 0.131-0.417 0.395-0.889-0.194 0.594-0.346 1.518-0.257 2.904 0 0 0.024-0.307 0.107-0.75 0.065 0.86 0.352 1.921 1.076 3.169 1.39 2.396 3.526 3.605 5.887 3.791 0.419 0.035 0.845 0.035 1.272 0.003 0.039-0.003 0.079-0.006 0.118-0.009 0.484-0.034 0.971-0.107 1.457-0.224 6.643-1.606 5.921-9.628 5.921-9.628z" + } + }] +}; +exports.firefox = firefox; \ No newline at end of file diff --git a/dist/icomoon/first.js b/dist/icomoon/first.js new file mode 100644 index 000000000..3d6dcb403 --- /dev/null +++ b/dist/icomoon/first.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.first = void 0; +var first = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M2 14v-12h2v5.5l5-5v5l5-5v11l-5-5v5l-5-5v5.5z" + } + }] +}; +exports.first = first; \ No newline at end of file diff --git a/dist/icomoon/fiveHundredPX.js b/dist/icomoon/fiveHundredPX.js new file mode 100644 index 000000000..ae6859c41 --- /dev/null +++ b/dist/icomoon/fiveHundredPX.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.fiveHundredPX = void 0; +var fiveHundredPX = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M3.953 10.512c0.003 0.009 0.088 0.238 0.134 0.353 0.263 0.622 0.641 1.184 1.122 1.666s1.041 0.859 1.666 1.122c0.647 0.272 1.331 0.412 2.037 0.412s1.394-0.137 2.037-0.412c0.625-0.262 1.184-0.641 1.666-1.122s0.859-1.041 1.122-1.666c0.272-0.647 0.412-1.331 0.412-2.037s-0.137-1.394-0.412-2.037c-0.262-0.625-0.641-1.184-1.122-1.666s-1.041-0.859-1.666-1.122c-0.647-0.272-1.331-0.413-2.037-0.413-0.716 0-1.431 0.144-2.066 0.413-0.509 0.216-1.372 0.769-1.875 1.291l-0.003 0.003v-4.313h7.241c0.262-0.003 0.262-0.372 0.262-0.491 0-0.122 0-0.487-0.266-0.491h-7.828c-0.213 0-0.344 0.178-0.344 0.341v6.066c0 0.197 0.244 0.338 0.472 0.384 0.444 0.094 0.544-0.047 0.653-0.197l0.016-0.019c0.166-0.247 0.681-0.766 0.688-0.772 0.806-0.806 1.884-1.25 3.037-1.25 1.147 0 2.222 0.444 3.028 1.25 0.809 0.809 1.256 1.881 1.256 3.019 0 1.141-0.444 2.216-1.25 3.019-0.794 0.794-1.906 1.25-3.047 1.25-0.772 0-1.519-0.206-2.159-0.597l0.003-3.688c0-0.491 0.213-1.028 0.572-1.431 0.409-0.463 0.972-0.716 1.588-0.716 0.594 0 1.15 0.225 1.566 0.634 0.409 0.406 0.637 0.95 0.637 1.528 0 1.231-0.969 2.197-2.206 2.197-0.238 0-0.672-0.106-0.691-0.109-0.25-0.075-0.356 0.272-0.391 0.387-0.134 0.441 0.069 0.528 0.109 0.541 0.397 0.125 0.659 0.147 1.003 0.147 1.747 0 3.169-1.422 3.169-3.169 0-1.734-1.422-3.144-3.166-3.144-0.856 0-1.659 0.328-2.263 0.919-0.575 0.566-0.903 1.319-0.903 2.069v0.019c-0.003 0.094-0.003 2.306-0.006 3.031l-0.003-0.003c-0.328-0.363-0.653-0.919-0.869-1.488-0.084-0.222-0.275-0.184-0.534-0.103-0.125 0.034-0.469 0.141-0.391 0.394v0zM7.675 9.647c0 0.106 0.097 0.2 0.156 0.253l0.019 0.019c0.1 0.097 0.194 0.147 0.281 0.147 0.072 0 0.116-0.034 0.131-0.050 0.044-0.041 0.537-0.544 0.588-0.591l0.553 0.55c0.050 0.056 0.106 0.088 0.172 0.088 0.088 0 0.184-0.053 0.284-0.156 0.238-0.244 0.119-0.375 0.063-0.438l-0.559-0.559 0.584-0.588c0.128-0.137 0.016-0.284-0.097-0.397-0.162-0.162-0.322-0.206-0.422-0.112l-0.581 0.581-0.588-0.588c-0.031-0.031-0.072-0.047-0.113-0.047-0.078 0-0.172 0.053-0.275 0.156-0.181 0.181-0.219 0.306-0.125 0.406l0.588 0.584-0.584 0.584c-0.053 0.050-0.078 0.103-0.075 0.156zM8.953 1.716c-0.938 0-1.938 0.191-2.669 0.506-0.078 0.031-0.125 0.094-0.134 0.181-0.009 0.084 0.013 0.194 0.069 0.337 0.047 0.116 0.166 0.425 0.4 0.334 0.75-0.288 1.581-0.444 2.334-0.444 0.856 0 1.688 0.169 2.469 0.497 0.622 0.263 1.206 0.644 1.844 1.194 0.047 0.041 0.097 0.059 0.147 0.059 0.125 0 0.244-0.122 0.347-0.237 0.169-0.191 0.287-0.35 0.119-0.509-0.609-0.575-1.275-1.006-2.1-1.356-0.894-0.372-1.847-0.563-2.825-0.563zM14.006 13.3v0c-0.113-0.113-0.209-0.178-0.294-0.203s-0.162-0.006-0.222 0.053l-0.056 0.056c-0.581 0.581-1.259 1.037-2.012 1.356-0.781 0.331-1.609 0.497-2.463 0.497-0.856 0-1.684-0.169-2.463-0.497-0.753-0.319-1.431-0.775-2.013-1.356-0.606-0.606-1.063-1.284-1.356-2.012-0.288-0.713-0.381-1.247-0.413-1.422-0.003-0.016-0.006-0.028-0.006-0.037-0.041-0.206-0.231-0.222-0.503-0.178-0.112 0.019-0.459 0.072-0.428 0.319v0.006c0.091 0.578 0.253 1.144 0.481 1.681 0.366 0.866 0.891 1.644 1.559 2.313s1.447 1.191 2.313 1.559c0.897 0.378 1.85 0.572 2.831 0.572s1.934-0.194 2.831-0.572c0.866-0.366 1.644-0.891 2.313-1.559 0 0 0.037-0.037 0.059-0.059 0.069-0.084 0.134-0.225-0.159-0.516z" + } + }] +}; +exports.fiveHundredPX = fiveHundredPX; \ No newline at end of file diff --git a/dist/icomoon/flag.js b/dist/icomoon/flag.js new file mode 100644 index 000000000..b288c125e --- /dev/null +++ b/dist/icomoon/flag.js @@ -0,0 +1,29 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.flag = void 0; +var flag = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 0h2v16h-2v-16z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13 10.047c1.291 0 2.415-0.312 3-0.773v-8c-0.585 0.461-1.709 0.773-3 0.773s-2.415-0.312-3-0.773v8c0.585 0.461 1.709 0.773 3 0.773z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9.5 0.508c-0.733-0.312-1.805-0.508-3-0.508-1.506 0-2.818 0.312-3.5 0.773v8c0.682-0.461 1.994-0.773 3.5-0.773 1.195 0 2.267 0.197 3 0.508v-8z" + } + }] +}; +exports.flag = flag; \ No newline at end of file diff --git a/dist/icomoon/flattr.js b/dist/icomoon/flattr.js new file mode 100644 index 000000000..019bad66c --- /dev/null +++ b/dist/icomoon/flattr.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.flattr = void 0; +var flattr = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5.743 0c-3.802 0-5.743 2.19-5.743 6.279v0 8.579l3.725-3.729v-4.358c0-1.694 0.449-2.772 1.955-3.014v0c0.526-0.103 1.621-0.067 2.317-0.067v0 2.587c0 0.024 0.003 0.066 0.009 0.087v0c0.029 0.105 0.124 0.181 0.236 0.182v0c0.063 0 0.123-0.033 0.184-0.093v0l6.455-6.453-9.139-0.001zM12.275 4.871v4.358c0 1.694-0.449 2.772-1.955 3.014v0c-0.526 0.103-1.621 0.067-2.317 0.067v0-2.587c0-0.023-0.003-0.066-0.009-0.087v0c-0.029-0.105-0.124-0.182-0.236-0.182v0c-0.064-0-0.123 0.033-0.184 0.093v0l-6.455 6.453 9.139 0.001c3.802 0 5.743-2.19 5.743-6.279v0-8.579l-3.725 3.729z" + } + }] +}; +exports.flattr = flattr; \ No newline at end of file diff --git a/dist/icomoon/flickr.js b/dist/icomoon/flickr.js new file mode 100644 index 000000000..e4a300ab9 --- /dev/null +++ b/dist/icomoon/flickr.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.flickr = void 0; +var flickr = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 8.5c0-1.933 1.567-3.5 3.5-3.5s3.5 1.567 3.5 3.5c0 1.933-1.567 3.5-3.5 3.5s-3.5-1.567-3.5-3.5zM9 8.5c0-1.933 1.567-3.5 3.5-3.5s3.5 1.567 3.5 3.5c0 1.933-1.567 3.5-3.5 3.5s-3.5-1.567-3.5-3.5z" + } + }] +}; +exports.flickr = flickr; \ No newline at end of file diff --git a/dist/icomoon/flickr2.js b/dist/icomoon/flickr2.js new file mode 100644 index 000000000..18833a23b --- /dev/null +++ b/dist/icomoon/flickr2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.flickr2 = void 0; +var flickr2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12.5 6.5c-1.103 0-2 0.897-2 2s0.897 2 2 2c1.103 0 2-0.897 2-2s-0.897-2-2-2zM12.5 5v0c1.933 0 3.5 1.567 3.5 3.5s-1.567 3.5-3.5 3.5-3.5-1.567-3.5-3.5c0-1.933 1.567-3.5 3.5-3.5zM0 8.5c0-1.933 1.567-3.5 3.5-3.5s3.5 1.567 3.5 3.5c0 1.933-1.567 3.5-3.5 3.5s-3.5-1.567-3.5-3.5z" + } + }] +}; +exports.flickr2 = flickr2; \ No newline at end of file diff --git a/dist/icomoon/flickr3.js b/dist/icomoon/flickr3.js new file mode 100644 index 000000000..72f521784 --- /dev/null +++ b/dist/icomoon/flickr3.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.flickr3 = void 0; +var flickr3 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.5 0h-13c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM4.5 10.5c-1.381 0-2.5-1.119-2.5-2.5s1.119-2.5 2.5-2.5 2.5 1.119 2.5 2.5-1.119 2.5-2.5 2.5zM11.5 10.5c-1.381 0-2.5-1.119-2.5-2.5s1.119-2.5 2.5-2.5c1.381 0 2.5 1.119 2.5 2.5s-1.119 2.5-2.5 2.5z" + } + }] +}; +exports.flickr3 = flickr3; \ No newline at end of file diff --git a/dist/icomoon/flickr4.js b/dist/icomoon/flickr4.js new file mode 100644 index 000000000..85b80f6d4 --- /dev/null +++ b/dist/icomoon/flickr4.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.flickr4 = void 0; +var flickr4 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.606-8 8.055s3.582 8.055 8 8.055 8-3.606 8-8.055-3.582-8.055-8-8.055zM4.5 10.5c-1.381 0-2.5-1.119-2.5-2.5s1.119-2.5 2.5-2.5 2.5 1.119 2.5 2.5c0 1.381-1.119 2.5-2.5 2.5zM11.5 10.5c-1.381 0-2.5-1.119-2.5-2.5s1.119-2.5 2.5-2.5 2.5 1.119 2.5 2.5c0 1.381-1.119 2.5-2.5 2.5z" + } + }] +}; +exports.flickr4 = flickr4; \ No newline at end of file diff --git a/dist/icomoon/floppyDisk.js b/dist/icomoon/floppyDisk.js new file mode 100644 index 000000000..c4bf9b013 --- /dev/null +++ b/dist/icomoon/floppyDisk.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.floppyDisk = void 0; +var floppyDisk = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14 0h-14v16h16v-14l-2-2zM8 2h2v4h-2v-4zM14 14h-12v-12h1v5h9v-5h1.172l0.828 0.828v11.172z" + } + }] +}; +exports.floppyDisk = floppyDisk; \ No newline at end of file diff --git a/dist/icomoon/folder.js b/dist/icomoon/folder.js new file mode 100644 index 000000000..bc2a316a7 --- /dev/null +++ b/dist/icomoon/folder.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.folder = void 0; +var folder = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7 2l2 2h7v11h-16v-13z" + } + }] +}; +exports.folder = folder; \ No newline at end of file diff --git a/dist/icomoon/folderDownload.js b/dist/icomoon/folderDownload.js new file mode 100644 index 000000000..78676ebfb --- /dev/null +++ b/dist/icomoon/folderDownload.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.folderDownload = void 0; +var folderDownload = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9 4l-2-2h-7v13h16v-11h-7zM8 13.5l-3.5-3.5h2.5v-4h2v4h2.5l-3.5 3.5z" + } + }] +}; +exports.folderDownload = folderDownload; \ No newline at end of file diff --git a/dist/icomoon/folderMinus.js b/dist/icomoon/folderMinus.js new file mode 100644 index 000000000..adab5e3de --- /dev/null +++ b/dist/icomoon/folderMinus.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.folderMinus = void 0; +var folderMinus = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9 4l-2-2h-7v13h16v-11h-7zM11 11h-6v-2h6v2z" + } + }] +}; +exports.folderMinus = folderMinus; \ No newline at end of file diff --git a/dist/icomoon/folderOpen.js b/dist/icomoon/folderOpen.js new file mode 100644 index 000000000..681f0e979 --- /dev/null +++ b/dist/icomoon/folderOpen.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.folderOpen = void 0; +var folderOpen = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13 15l3-8h-13l-3 8zM2 6l-2 9v-13h4.5l2 2h6.5v2z" + } + }] +}; +exports.folderOpen = folderOpen; \ No newline at end of file diff --git a/dist/icomoon/folderPlus.js b/dist/icomoon/folderPlus.js new file mode 100644 index 000000000..b376d7a8e --- /dev/null +++ b/dist/icomoon/folderPlus.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.folderPlus = void 0; +var folderPlus = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9 4l-2-2h-7v13h16v-11h-7zM11 11h-2v2h-2v-2h-2v-2h2v-2h2v2h2v2z" + } + }] +}; +exports.folderPlus = folderPlus; \ No newline at end of file diff --git a/dist/icomoon/folderUpload.js b/dist/icomoon/folderUpload.js new file mode 100644 index 000000000..f16709a15 --- /dev/null +++ b/dist/icomoon/folderUpload.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.folderUpload = void 0; +var folderUpload = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9 4l-2-2h-7v13h16v-11h-7zM8 7.5l3.5 3.5h-2.5v4h-2v-4h-2.5l3.5-3.5z" + } + }] +}; +exports.folderUpload = folderUpload; \ No newline at end of file diff --git a/dist/icomoon/font.js b/dist/icomoon/font.js new file mode 100644 index 000000000..5835360d1 --- /dev/null +++ b/dist/icomoon/font.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.font = void 0; +var font = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12.494 0.253c-1.414 0-2.322-0.253-3.779-0.253-4.708 0-6.903 2.681-6.903 5.404 0 1.604 0.76 2.132 2.259 2.132-0.106-0.232-0.296-0.486-0.296-1.626 0-3.188 1.203-4.117 2.744-4.18 0 0-1.264 12.396-4.934 13.883v0.385h4.947l1.688-8h3.091l0.689-2h-3.358l0.812-3.847c0.929 0.19 1.837 0.38 2.618 0.38 0.971 0 1.858-0.296 2.343-2.533-0.591 0.19-1.224 0.253-1.921 0.253z" + } + }] +}; +exports.font = font; \ No newline at end of file diff --git a/dist/icomoon/fontSize.js b/dist/icomoon/fontSize.js new file mode 100644 index 000000000..63644e065 --- /dev/null +++ b/dist/icomoon/fontSize.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.fontSize = void 0; +var fontSize = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M1 8h6v2h-2v6h-2v-6h-2zM15 4h-3.934v12h-2.133v-12h-3.934v-2h10z" + } + }] +}; +exports.fontSize = fontSize; \ No newline at end of file diff --git a/dist/icomoon/forward.js b/dist/icomoon/forward.js new file mode 100644 index 000000000..ecda31bef --- /dev/null +++ b/dist/icomoon/forward.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.forward = void 0; +var forward = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4.096 0c-1.777 3.219-2.076 8.13 4.904 7.966v-3.966l6 6-6 6v-3.881c-8.359 0.218-9.29-7.378-4.904-12.119z" + } + }] +}; +exports.forward = forward; \ No newline at end of file diff --git a/dist/icomoon/forward2.js b/dist/icomoon/forward2.js new file mode 100644 index 000000000..8790d1db8 --- /dev/null +++ b/dist/icomoon/forward2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.forward2 = void 0; +var forward2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM8 14.5c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5 6.5 2.91 6.5 6.5-2.91 6.5-6.5 6.5zM5 5.5l3.5 2.5-3.5 2.5zM9 5.5l3.5 2.5-3.5 2.5z" + } + }] +}; +exports.forward2 = forward2; \ No newline at end of file diff --git a/dist/icomoon/forward3.js b/dist/icomoon/forward3.js new file mode 100644 index 000000000..9b73b3449 --- /dev/null +++ b/dist/icomoon/forward3.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.forward3 = void 0; +var forward3 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 13.5v-5l-5 5v-11l5 5v-5l5.5 5.5z" + } + }] +}; +exports.forward3 = forward3; \ No newline at end of file diff --git a/dist/icomoon/foursquare.js b/dist/icomoon/foursquare.js new file mode 100644 index 000000000..480f18d9d --- /dev/null +++ b/dist/icomoon/foursquare.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.foursquare = void 0; +var foursquare = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.306 1.408c-0.188-0.256-0.488-0.408-0.806-0.408h-9.5c-0.552 0-1 0.448-1 1v12c0 0.404 0.244 0.769 0.617 0.924 0.124 0.051 0.254 0.076 0.382 0.076 0.26 0 0.516-0.102 0.707-0.293l3.707-3.707h2.586c0.437 0 0.824-0.284 0.954-0.702l2.5-8c0.095-0.304 0.040-0.634-0.149-0.891zM10.515 5h-3.515c-0.552 0-1 0.448-1 1s0.448 1 1 1h2.89l-0.625 2h-2.265c-0.265 0-0.52 0.105-0.707 0.293l-2.293 2.293v-8.586h7.14l-0.625 2z" + } + }] +}; +exports.foursquare = foursquare; \ No newline at end of file diff --git a/dist/icomoon/frustrated.js b/dist/icomoon/frustrated.js new file mode 100644 index 000000000..0476487ac --- /dev/null +++ b/dist/icomoon/frustrated.js @@ -0,0 +1,29 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.frustrated = void 0; +var frustrated = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5.724 4.428c-0.543-0.271-1.080-0.407-1.102-0.413-0.268-0.067-0.539 0.096-0.606 0.364s0.096 0.539 0.364 0.606c0.275 0.070 0.602 0.189 0.89 0.334-0.166 0.179-0.268 0.418-0.268 0.681 0 0.552 0.448 1 1 1s1-0.448 1-1c0-0.018-0.001-0.036-0.002-0.054-0.032-0.741-0.706-1.234-1.275-1.518z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM3.695 12.87c0.167 0.083 0.356 0.13 0.555 0.13h7.5c0.199 0 0.387-0.047 0.555-0.13-1.147 1.014-2.654 1.63-4.305 1.63s-3.158-0.616-4.305-1.63zM4 11.75v-1.5c0-0.136 0.114-0.25 0.25-0.25h1.75v2h-1.75c-0.136 0-0.25-0.114-0.25-0.25zM7 12v-2h2v2h-2zM10 12v-2h1.75c0.136 0 0.25 0.114 0.25 0.25v1.5c0 0.136-0.114 0.25-0.25 0.25h-1.75zM12.87 12.305c0.083-0.167 0.13-0.356 0.13-0.555v-1.5c0-0.689-0.561-1.25-1.25-1.25h-7.5c-0.689 0-1.25 0.561-1.25 1.25v1.5c0 0.199 0.047 0.387 0.13 0.555-1.014-1.147-1.63-2.654-1.63-4.305 0-3.59 2.91-6.5 6.5-6.5s6.5 2.91 6.5 6.5c0 1.651-0.616 3.158-1.63 4.305z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.379 4.015c-0.023 0.006-0.559 0.141-1.102 0.413-0.568 0.284-1.243 0.776-1.275 1.518-0.001 0.018-0.002 0.036-0.002 0.054 0 0.552 0.448 1 1 1s1-0.448 1-1c0-0.263-0.102-0.503-0.268-0.681 0.288-0.144 0.614-0.264 0.89-0.334 0.268-0.067 0.431-0.338 0.364-0.606s-0.338-0.431-0.606-0.364z" + } + }] +}; +exports.frustrated = frustrated; \ No newline at end of file diff --git a/dist/icomoon/frustrated2.js b/dist/icomoon/frustrated2.js new file mode 100644 index 000000000..78e9e639a --- /dev/null +++ b/dist/icomoon/frustrated2.js @@ -0,0 +1,35 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.frustrated2 = void 0; +var frustrated2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4 10.25v1.5c0 0.136 0.114 0.25 0.25 0.25h1.75v-2h-1.75c-0.136 0-0.25 0.114-0.25 0.25z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7 10h2v2h-2v-2z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.75 10h-1.75v2h1.75c0.136 0 0.25-0.114 0.25-0.25v-1.5c0-0.136-0.114-0.25-0.25-0.25z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM9.002 5.946c0.032-0.741 0.706-1.234 1.275-1.518 0.543-0.271 1.080-0.407 1.102-0.413 0.268-0.067 0.539 0.096 0.606 0.364s-0.096 0.539-0.364 0.606c-0.275 0.070-0.602 0.189-0.89 0.334 0.166 0.179 0.268 0.418 0.268 0.681 0 0.552-0.448 1-1 1s-1-0.448-1-1c0-0.018 0.001-0.036 0.002-0.054zM4.015 4.379c0.067-0.268 0.338-0.431 0.606-0.364 0.023 0.006 0.559 0.141 1.102 0.413 0.568 0.284 1.243 0.776 1.275 1.518 0.001 0.018 0.002 0.036 0.002 0.054 0 0.552-0.448 1-1 1s-1-0.448-1-1c0-0.263 0.102-0.503 0.268-0.681-0.288-0.144-0.614-0.264-0.89-0.334-0.268-0.067-0.431-0.338-0.364-0.606zM13 11.75c0 0.689-0.561 1.25-1.25 1.25h-7.5c-0.689 0-1.25-0.561-1.25-1.25v-1.5c0-0.689 0.561-1.25 1.25-1.25h7.5c0.689 0 1.25 0.561 1.25 1.25v1.5z" + } + }] +}; +exports.frustrated2 = frustrated2; \ No newline at end of file diff --git a/dist/icomoon/gift.js b/dist/icomoon/gift.js new file mode 100644 index 000000000..d12fe1783 --- /dev/null +++ b/dist/icomoon/gift.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.gift = void 0; +var gift = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12.055 5c0.283-0.201 0.555-0.425 0.804-0.674 0.522-0.522 0.871-1.164 0.983-1.808 0.123-0.706-0.057-1.362-0.494-1.798-0.348-0.348-0.82-0.533-1.365-0.533-0.775 0-1.593 0.372-2.242 1.021-1.039 1.039-1.644 2.472-1.97 3.496-0.241-1.028-0.722-2.416-1.657-3.351-0.501-0.501-1.142-0.759-1.748-0.759-0.495 0-0.965 0.172-1.317 0.523-0.781 0.781-0.675 2.153 0.236 3.064 0.325 0.325 0.705 0.595 1.105 0.819h-3.391v4h1v7h12v-7h1v-4h-2.945zM10.536 2.003c0.433-0.433 0.974-0.692 1.446-0.692 0.167 0 0.402 0.035 0.57 0.203 0.407 0.407 0.178 1.349-0.489 2.016-0.687 0.687-1.61 1.159-2.413 1.47h-0.792c0.29-0.899 0.813-2.132 1.678-2.997zM3.655 2.514c-0.011-0.143-0.001-0.41 0.191-0.601 0.16-0.16 0.372-0.194 0.521-0.194v0c0.332 0 0.679 0.157 0.952 0.429 0.529 0.529 0.965 1.371 1.26 2.436 0.008 0.029 0.016 0.057 0.023 0.086-0.028-0.008-0.057-0.015-0.086-0.023-1.064-0.295-1.906-0.731-2.436-1.26-0.247-0.247-0.403-0.565-0.426-0.872zM7 15h-4v-6.5h4v6.5zM7 8h-5v-2h5v2zM13 15h-4v-6.5h4v6.5zM14 8h-5v-2h5v2z" + } + }] +}; +exports.gift = gift; \ No newline at end of file diff --git a/dist/icomoon/git.js b/dist/icomoon/git.js new file mode 100644 index 000000000..d19fd199e --- /dev/null +++ b/dist/icomoon/git.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.git = void 0; +var git = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.698 7.287l-6.986-6.986c-0.402-0.402-1.055-0.402-1.457 0l-1.623 1.623 1.221 1.221c0.196-0.094 0.415-0.146 0.647-0.146 0.828 0 1.5 0.672 1.5 1.5 0 0.232-0.053 0.451-0.146 0.647l2 2c0.196-0.094 0.415-0.146 0.647-0.146 0.828 0 1.5 0.672 1.5 1.5s-0.672 1.5-1.5 1.5-1.5-0.672-1.5-1.5c0-0.232 0.053-0.451 0.146-0.647l-2-2c-0.048 0.023-0.097 0.043-0.147 0.061v4.171c0.583 0.206 1 0.761 1 1.414 0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5c0-0.653 0.417-1.208 1-1.414v-4.171c-0.583-0.206-1-0.761-1-1.414 0-0.232 0.053-0.451 0.146-0.647l-1.221-1.221-4.623 4.623c-0.402 0.403-0.402 1.055 0 1.458l6.986 6.986c0.402 0.402 1.054 0.402 1.457 0l6.953-6.953c0.402-0.403 0.402-1.055-0-1.458z" + } + }] +}; +exports.git = git; \ No newline at end of file diff --git a/dist/icomoon/github.js b/dist/icomoon/github.js new file mode 100644 index 000000000..1b971ed17 --- /dev/null +++ b/dist/icomoon/github.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.github = void 0; +var github = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0.198c-4.418 0-8 3.582-8 8 0 3.535 2.292 6.533 5.471 7.591 0.4 0.074 0.547-0.174 0.547-0.385 0-0.191-0.008-0.821-0.011-1.489-2.226 0.484-2.695-0.944-2.695-0.944-0.364-0.925-0.888-1.171-0.888-1.171-0.726-0.497 0.055-0.486 0.055-0.486 0.803 0.056 1.226 0.824 1.226 0.824 0.714 1.223 1.872 0.869 2.328 0.665 0.072-0.517 0.279-0.87 0.508-1.070-1.777-0.202-3.645-0.888-3.645-3.954 0-0.873 0.313-1.587 0.824-2.147-0.083-0.202-0.357-1.015 0.077-2.117 0 0 0.672-0.215 2.201 0.82 0.638-0.177 1.322-0.266 2.002-0.269 0.68 0.003 1.365 0.092 2.004 0.269 1.527-1.035 2.198-0.82 2.198-0.82 0.435 1.102 0.162 1.916 0.079 2.117 0.513 0.56 0.823 1.274 0.823 2.147 0 3.073-1.872 3.749-3.653 3.947 0.287 0.248 0.543 0.735 0.543 1.481 0 1.070-0.009 1.932-0.009 2.195 0 0.213 0.144 0.462 0.55 0.384 3.177-1.059 5.466-4.057 5.466-7.59 0-4.418-3.582-8-8-8z" + } + }] +}; +exports.github = github; \ No newline at end of file diff --git a/dist/icomoon/glass.js b/dist/icomoon/glass.js new file mode 100644 index 000000000..3a7107b52 --- /dev/null +++ b/dist/icomoon/glass.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.glass = void 0; +var glass = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12.153 0.263c-0.087-0.162-0.256-0.263-0.44-0.263h-7.425c-0.184 0-0.353 0.101-0.44 0.263-0.554 1.032-0.847 2.237-0.847 3.487 0 1.647 0.506 3.2 1.424 4.374 0.71 0.907 1.601 1.508 2.576 1.753v5.123h-1.5c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5h5c0.276 0 0.5-0.224 0.5-0.5s-0.224-0.5-0.5-0.5h-1.5v-5.123c0.975-0.244 1.866-0.846 2.576-1.753 0.918-1.174 1.424-2.727 1.424-4.374 0-1.249-0.293-2.455-0.847-3.487zM4.595 1h6.809c0.39 0.827 0.595 1.771 0.595 2.75 0 0.084-0.002 0.167-0.005 0.25h-7.991c-0.003-0.083-0.005-0.166-0.005-0.25-0-0.979 0.205-1.923 0.595-2.75z" + } + }] +}; +exports.glass = glass; \ No newline at end of file diff --git a/dist/icomoon/glass2.js b/dist/icomoon/glass2.js new file mode 100644 index 000000000..0cd8caed6 --- /dev/null +++ b/dist/icomoon/glass2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.glass2 = void 0; +var glass2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.893 2.809c0.118-0.151 0.14-0.355 0.057-0.527s-0.258-0.281-0.45-0.281h-11c-0.191 0-0.366 0.109-0.45 0.281s-0.062 0.377 0.057 0.527l4.893 6.228v5.963h-1.5c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5h5c0.276 0 0.5-0.224 0.5-0.5s-0.224-0.5-0.5-0.5h-1.5v-5.963l4.893-6.228zM12.471 3l-1.571 2h-5.8l-1.571-2h8.943z" + } + }] +}; +exports.glass2 = glass2; \ No newline at end of file diff --git a/dist/icomoon/google.js b/dist/icomoon/google.js new file mode 100644 index 000000000..8026f8629 --- /dev/null +++ b/dist/icomoon/google.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.google = void 0; +var google = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8.159 6.856v2.744h4.537c-0.184 1.178-1.372 3.45-4.537 3.45-2.731 0-4.959-2.262-4.959-5.050s2.228-5.050 4.959-5.050c1.553 0 2.594 0.663 3.188 1.234l2.172-2.091c-1.394-1.306-3.2-2.094-5.359-2.094-4.422 0-8 3.578-8 8s3.578 8 8 8c4.616 0 7.681-3.247 7.681-7.816 0-0.525-0.056-0.925-0.125-1.325l-7.556-0.003z" + } + }] +}; +exports.google = google; \ No newline at end of file diff --git a/dist/icomoon/google2.js b/dist/icomoon/google2.js new file mode 100644 index 000000000..7f3f62a49 --- /dev/null +++ b/dist/icomoon/google2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.google2 = void 0; +var google2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.5 0h-13c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM8.119 14c-3.316 0-6-2.684-6-6s2.684-6 6-6c1.619 0 2.975 0.591 4.019 1.569l-1.628 1.569c-0.447-0.428-1.225-0.925-2.391-0.925-2.050 0-3.719 1.697-3.719 3.787s1.672 3.787 3.719 3.787c2.375 0 3.266-1.706 3.403-2.588h-3.403v-2.056h5.666c0.050 0.3 0.094 0.6 0.094 0.994 0.003 3.428-2.294 5.863-5.759 5.863z" + } + }] +}; +exports.google2 = google2; \ No newline at end of file diff --git a/dist/icomoon/google3.js b/dist/icomoon/google3.js new file mode 100644 index 000000000..977c86bc3 --- /dev/null +++ b/dist/icomoon/google3.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.google3 = void 0; +var google3 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.419 0-8 3.581-8 8s3.581 8 8 8 8-3.581 8-8-3.581-8-8-8zM8.119 14c-3.316 0-6-2.684-6-6s2.684-6 6-6c1.619 0 2.975 0.591 4.019 1.569l-1.628 1.569c-0.447-0.428-1.225-0.925-2.391-0.925-2.050 0-3.719 1.697-3.719 3.787s1.672 3.787 3.719 3.787c2.375 0 3.266-1.706 3.403-2.588h-3.403v-2.056h5.666c0.050 0.3 0.094 0.6 0.094 0.994 0.003 3.428-2.294 5.863-5.759 5.863z" + } + }] +}; +exports.google3 = google3; \ No newline at end of file diff --git a/dist/icomoon/googleDrive.js b/dist/icomoon/googleDrive.js new file mode 100644 index 000000000..0787fffe9 --- /dev/null +++ b/dist/icomoon/googleDrive.js @@ -0,0 +1,29 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.googleDrive = void 0; +var googleDrive = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6.844 10l-2.884 5h9.072l2.884-5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.506 9l-4.619-8h-5.775l4.619 8z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4.534 2l-4.534 7.856 2.888 5 4.534-7.856z" + } + }] +}; +exports.googleDrive = googleDrive; \ No newline at end of file diff --git a/dist/icomoon/googlePlus.js b/dist/icomoon/googlePlus.js new file mode 100644 index 000000000..df6f3f7f3 --- /dev/null +++ b/dist/icomoon/googlePlus.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.googlePlus = void 0; +var googlePlus = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5.091 7.147v1.747h2.888c-0.116 0.75-0.872 2.197-2.888 2.197-1.737 0-3.156-1.441-3.156-3.216s1.419-3.216 3.156-3.216c0.991 0 1.65 0.422 2.028 0.784l1.381-1.331c-0.888-0.828-2.037-1.331-3.409-1.331-2.816 0.003-5.091 2.278-5.091 5.094s2.275 5.091 5.091 5.091c2.937 0 4.888-2.066 4.888-4.975 0-0.334-0.037-0.591-0.081-0.844h-4.806z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16 7h-1.5v-1.5h-1.5v1.5h-1.5v1.5h1.5v1.5h1.5v-1.5h1.5z" + } + }] +}; +exports.googlePlus = googlePlus; \ No newline at end of file diff --git a/dist/icomoon/googlePlus2.js b/dist/icomoon/googlePlus2.js new file mode 100644 index 000000000..d34a6f2d4 --- /dev/null +++ b/dist/icomoon/googlePlus2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.googlePlus2 = void 0; +var googlePlus2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.5 0h-13c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM6 12c-2.212 0-4-1.787-4-4s1.788-4 4-4c1.081 0 1.984 0.394 2.681 1.047l-1.088 1.044c-0.297-0.284-0.816-0.616-1.594-0.616-1.366 0-2.481 1.131-2.481 2.525s1.116 2.525 2.481 2.525c1.584 0 2.178-1.137 2.269-1.725h-2.269v-1.372h3.778c0.034 0.2 0.063 0.4 0.063 0.663 0 2.287-1.531 3.909-3.841 3.909zM14 8h-1v1h-1v-1h-1v-1h1v-1h1v1h1v1z" + } + }] +}; +exports.googlePlus2 = googlePlus2; \ No newline at end of file diff --git a/dist/icomoon/googlePlus3.js b/dist/icomoon/googlePlus3.js new file mode 100644 index 000000000..7c25bf9c1 --- /dev/null +++ b/dist/icomoon/googlePlus3.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.googlePlus3 = void 0; +var googlePlus3 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.419 0-8 3.581-8 8s3.581 8 8 8 8-3.581 8-8-3.581-8-8-8zM6 12c-2.212 0-4-1.787-4-4s1.788-4 4-4c1.081 0 1.984 0.394 2.681 1.047l-1.088 1.044c-0.297-0.284-0.816-0.616-1.594-0.616-1.366 0-2.481 1.131-2.481 2.525s1.116 2.525 2.481 2.525c1.584 0 2.178-1.137 2.269-1.725h-2.269v-1.372h3.778c0.034 0.2 0.063 0.4 0.063 0.663 0 2.287-1.531 3.909-3.841 3.909zM13 8v1h-1v-1h-1v-1h1v-1h1v1h1v1h-1z" + } + }] +}; +exports.googlePlus3 = googlePlus3; \ No newline at end of file diff --git a/dist/icomoon/grin.js b/dist/icomoon/grin.js new file mode 100644 index 000000000..4449fe784 --- /dev/null +++ b/dist/icomoon/grin.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.grin = void 0; +var grin = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5zM3 8v1c0 2.2 1.8 4 4 4h2c2.2 0 4-1.8 4-4v-1h-10zM6 11.828c-0.415-0.148-0.796-0.388-1.118-0.71-0.569-0.569-0.882-1.321-0.882-2.118h2v2.828zM9 12h-2v-3h2v3zM11.118 11.118c-0.322 0.322-0.703 0.562-1.118 0.71v-2.828h2c0 0.797-0.313 1.549-0.882 2.118zM3.521 6c0 0 0 0 0 0 0.153 0 0.283-0.11 0.308-0.261 0.096-0.573 0.589-0.989 1.171-0.989s1.074 0.416 1.171 0.989c0.025 0.151 0.156 0.261 0.308 0.261s0.283-0.11 0.308-0.261c0.017-0.101 0.025-0.202 0.025-0.302 0-0.999-0.813-1.813-1.813-1.813s-1.813 0.813-1.813 1.813c0 0.1 0.009 0.201 0.025 0.302 0.025 0.151 0.156 0.261 0.308 0.261zM9.521 6c0 0 0 0 0 0 0.153 0 0.283-0.11 0.308-0.261 0.096-0.573 0.589-0.989 1.171-0.989s1.074 0.416 1.171 0.989c0.025 0.151 0.156 0.261 0.308 0.261s0.283-0.11 0.308-0.261c0.017-0.101 0.025-0.202 0.025-0.302 0-0.999-0.813-1.813-1.813-1.813s-1.813 0.813-1.813 1.813c0 0.1 0.008 0.201 0.025 0.302 0.025 0.151 0.156 0.261 0.308 0.261z" + } + }] +}; +exports.grin = grin; \ No newline at end of file diff --git a/dist/icomoon/grin2.js b/dist/icomoon/grin2.js new file mode 100644 index 000000000..9a6fce508 --- /dev/null +++ b/dist/icomoon/grin2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.grin2 = void 0; +var grin2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8c4.418 0 8-3.582 8-8s-3.582-8-8-8zM11 3.688c0.999 0 1.813 0.813 1.813 1.813 0 0.1-0.009 0.201-0.025 0.302-0.025 0.151-0.156 0.261-0.308 0.261s-0.283-0.11-0.308-0.261c-0.096-0.573-0.589-0.833-1.171-0.833s-1.074 0.26-1.171 0.833c-0.025 0.151-0.156 0.261-0.308 0.261-0 0 0 0-0 0-0.153 0-0.283-0.11-0.308-0.261-0.017-0.101-0.025-0.202-0.025-0.302 0-0.999 0.813-1.813 1.813-1.813zM5 3.688c0.999 0 1.813 0.813 1.813 1.813 0 0.1-0.009 0.201-0.025 0.302-0.025 0.151-0.156 0.261-0.308 0.261s-0.283-0.11-0.308-0.261c-0.096-0.573-0.589-0.833-1.171-0.833s-1.074 0.26-1.171 0.833c-0.025 0.151-0.156 0.261-0.308 0.261 0 0 0 0 0 0-0.153 0-0.283-0.11-0.308-0.261-0.017-0.101-0.025-0.202-0.025-0.302 0-0.999 0.813-1.813 1.813-1.813zM3 9h3v3.873c-1.72-0.447-3-2.018-3-3.873zM7 13v-4h2v4h-2zM10 12.873v-3.873h3c0 1.855-1.28 3.426-3 3.873z" + } + }] +}; +exports.grin2 = grin2; \ No newline at end of file diff --git a/dist/icomoon/hackernews.js b/dist/icomoon/hackernews.js new file mode 100644 index 000000000..6e37c0e08 --- /dev/null +++ b/dist/icomoon/hackernews.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.hackernews = void 0; +var hackernews = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 0v16h16v-16h-16zM8.5 9.125v3.375h-1v-3.375l-2.734-5.125h1.134l2.1 3.938 2.1-3.938h1.134l-2.734 5.125z" + } + }] +}; +exports.hackernews = hackernews; \ No newline at end of file diff --git a/dist/icomoon/hammer.js b/dist/icomoon/hammer.js new file mode 100644 index 000000000..3d34773e6 --- /dev/null +++ b/dist/icomoon/hammer.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.hammer = void 0; +var hammer = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.781 12.953l-4.712-4.712c-0.292-0.292-0.769-0.292-1.061 0l-0.354 0.354-2.875-2.875 4.72-4.72h-5l-2.22 2.22-0.22-0.22h-1.061v1.061l0.22 0.22-3.22 3.22 2.5 2.5 3.22-3.22 2.875 2.875-0.354 0.354c-0.292 0.292-0.292 0.769 0 1.061l4.712 4.712c0.292 0.292 0.769 0.292 1.061 0l1.768-1.768c0.292-0.292 0.292-0.769 0-1.061z" + } + }] +}; +exports.hammer = hammer; \ No newline at end of file diff --git a/dist/icomoon/hammer2.js b/dist/icomoon/hammer2.js new file mode 100644 index 000000000..407955595 --- /dev/null +++ b/dist/icomoon/hammer2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.hammer2 = void 0; +var hammer2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.784 14.309l-8.572-7.804 0.399-0.4c0.326-0.327 0.503-0.75 0.53-1.181 0.016-0.007 0.031-0.014 0.046-0.023l1.609-1.006c0.218-0.256 0.202-0.66-0.036-0.898l-2.799-2.806c-0.237-0.238-0.641-0.254-0.896-0.036l-1.004 1.614c-0.008 0.015-0.015 0.031-0.022 0.046-0.43 0.027-0.852 0.204-1.178 0.531l-1.522 1.527c-0.327 0.327-0.503 0.75-0.53 1.181-0.016 0.007-0.031 0.014-0.046 0.023l-1.609 1.006c-0.218 0.256-0.202 0.66 0.036 0.898l2.799 2.806c0.237 0.238 0.641 0.254 0.896 0.036l1.004-1.614c0.008-0.015 0.015-0.031 0.023-0.046 0.43-0.027 0.852-0.204 1.178-0.531l0.442-0.443 7.783 8.596c0.226 0.249 0.573 0.289 0.773 0.089l0.787-0.789c0.199-0.2 0.159-0.549-0.089-0.775z" + } + }] +}; +exports.hammer2 = hammer2; \ No newline at end of file diff --git a/dist/icomoon/hangouts.js b/dist/icomoon/hangouts.js new file mode 100644 index 000000000..4e6fd61a5 --- /dev/null +++ b/dist/icomoon/hangouts.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.hangouts = void 0; +var hangouts = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7.997 0c-3.816 0-6.909 3.094-6.909 6.909 0 3.616 3.294 6.547 6.909 6.547v2.544c4.197-2.128 6.916-5.556 6.916-9.091 0-3.816-3.1-6.909-6.916-6.909zM7 8c0 0.828-0.447 1.5-1 1.5v-1.5h-2v-3h3v3zM12 8c0 0.828-0.447 1.5-1 1.5v-1.5h-2v-3h3v3z" + } + }] +}; +exports.hangouts = hangouts; \ No newline at end of file diff --git a/dist/icomoon/happy.js b/dist/icomoon/happy.js new file mode 100644 index 000000000..c03123487 --- /dev/null +++ b/dist/icomoon/happy.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.happy = void 0; +var happy = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5zM8 9.356c1.812 0 3.535-0.481 5-1.327-0.228 2.788-2.393 4.971-5 4.971s-4.772-2.186-5-4.973c1.465 0.845 3.188 1.329 5 1.329zM4 5.5c0-0.828 0.448-1.5 1-1.5s1 0.672 1 1.5c0 0.828-0.448 1.5-1 1.5s-1-0.672-1-1.5zM10 5.5c0-0.828 0.448-1.5 1-1.5s1 0.672 1 1.5c0 0.828-0.448 1.5-1 1.5s-1-0.672-1-1.5z" + } + }] +}; +exports.happy = happy; \ No newline at end of file diff --git a/dist/icomoon/happy2.js b/dist/icomoon/happy2.js new file mode 100644 index 000000000..76bc113e3 --- /dev/null +++ b/dist/icomoon/happy2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.happy2 = void 0; +var happy2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM11 4c0.552 0 1 0.672 1 1.5s-0.448 1.5-1 1.5-1-0.672-1-1.5 0.448-1.5 1-1.5zM5 4c0.552 0 1 0.672 1 1.5s-0.448 1.5-1 1.5-1-0.672-1-1.5 0.448-1.5 1-1.5zM8 14c-2.607 0-4.772-2.186-5-4.973 1.465 0.846 3.188 1.329 5 1.329s3.535-0.481 5-1.327c-0.228 2.788-2.393 4.971-5 4.971z" + } + }] +}; +exports.happy2 = happy2; \ No newline at end of file diff --git a/dist/icomoon/headphones.js b/dist/icomoon/headphones.js new file mode 100644 index 000000000..b926a619f --- /dev/null +++ b/dist/icomoon/headphones.js @@ -0,0 +1,29 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.headphones = void 0; +var headphones = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4.5 9h-1v7h1c0.275 0 0.5-0.225 0.5-0.5v-6c0-0.275-0.225-0.5-0.5-0.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.5 9c-0.275 0-0.5 0.225-0.5 0.5v6c0 0.275 0.225 0.5 0.5 0.5h1v-7h-1z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16 8c0-4.418-3.582-8-8-8s-8 3.582-8 8c0 0.96 0.169 1.88 0.479 2.732-0.304 0.519-0.479 1.123-0.479 1.768 0 1.763 1.304 3.222 3 3.464v-6.928c-0.499 0.071-0.963 0.248-1.371 0.506-0.084-0.417-0.129-0.849-0.129-1.292 0-3.59 2.91-6.5 6.5-6.5s6.5 2.91 6.5 6.5c0 0.442-0.044 0.874-0.128 1.292-0.408-0.259-0.873-0.435-1.372-0.507v6.929c1.696-0.243 3-1.701 3-3.464 0-0.645-0.175-1.249-0.479-1.768 0.31-0.853 0.479-1.773 0.479-2.732z" + } + }] +}; +exports.headphones = headphones; \ No newline at end of file diff --git a/dist/icomoon/heart.js b/dist/icomoon/heart.js new file mode 100644 index 000000000..a141cc855 --- /dev/null +++ b/dist/icomoon/heart.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.heart = void 0; +var heart = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.8 1c-1.682 0-3.129 1.368-3.799 2.797-0.671-1.429-2.118-2.797-3.8-2.797-2.318 0-4.2 1.882-4.2 4.2 0 4.716 4.758 5.953 8 10.616 3.065-4.634 8-6.050 8-10.616 0-2.319-1.882-4.2-4.2-4.2z" + } + }] +}; +exports.heart = heart; \ No newline at end of file diff --git a/dist/icomoon/heartBroken.js b/dist/icomoon/heartBroken.js new file mode 100644 index 000000000..bc08782dc --- /dev/null +++ b/dist/icomoon/heartBroken.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.heartBroken = void 0; +var heartBroken = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.8 1c2.318 0 4.2 1.882 4.2 4.2 0 4.566-4.935 5.982-8 10.616-3.243-4.663-8-5.9-8-10.616 0-2.319 1.882-4.2 4.2-4.2 0.943 0 1.812 0.43 2.512 1.060l-1.213 1.94 3.5 2-2 5 5.5-6-3.5-2 0.967-1.451c0.553-0.34 1.175-0.549 1.833-0.549z" + } + }] +}; +exports.heartBroken = heartBroken; \ No newline at end of file diff --git a/dist/icomoon/hipster.js b/dist/icomoon/hipster.js new file mode 100644 index 000000000..fd85a8291 --- /dev/null +++ b/dist/icomoon/hipster.js @@ -0,0 +1,29 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.hipster = void 0; +var hipster = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5zM4 5c0-0.552 0.448-1 1-1s1 0.448 1 1-0.448 1-1 1-1-0.448-1-1zM10 5c0-0.552 0.448-1 1-1s1 0.448 1 1-0.448 1-1 1-1-0.448-1-1z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M10.561 8.439c-0.586-0.586-1.536-0.586-2.121 0s-0.586 1.536 0 2.121c0.019 0.019 0.038 0.037 0.058 0.055 1.352 1.227 4.503-0.029 4.503-1.615-0.969 0.625-1.726 0.153-2.439-0.561z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5.439 8.439c0.586-0.586 1.536-0.586 2.121 0s0.586 1.536 0 2.121c-0.019 0.019-0.038 0.037-0.058 0.055-1.352 1.227-4.503-0.029-4.503-1.615 0.969 0.625 1.726 0.153 2.439-0.561z" + } + }] +}; +exports.hipster = hipster; \ No newline at end of file diff --git a/dist/icomoon/hipster2.js b/dist/icomoon/hipster2.js new file mode 100644 index 000000000..64a205c6e --- /dev/null +++ b/dist/icomoon/hipster2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.hipster2 = void 0; +var hipster2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM11 4c0.552 0 1 0.448 1 1s-0.448 1-1 1-1-0.448-1-1 0.448-1 1-1zM5 4c0.552 0 1 0.448 1 1s-0.448 1-1 1-1-0.448-1-1 0.448-1 1-1zM8.497 10.615c-0.020-0.018-0.039-0.036-0.058-0.055-0.293-0.293-0.439-0.677-0.439-1.060-0 0.384-0.146 0.768-0.439 1.060-0.019 0.019-0.038 0.037-0.058 0.055-1.352 1.227-4.503-0.029-4.503-1.615 0.969 0.625 1.726 0.153 2.439-0.561 0.586-0.586 1.536-0.586 2.121 0 0.293 0.293 0.439 0.677 0.439 1.060 0-0.384 0.146-0.768 0.439-1.060 0.586-0.586 1.536-0.586 2.121 0 0.713 0.714 1.471 1.186 2.439 0.561 0 1.586-3.151 2.842-4.503 1.615z" + } + }] +}; +exports.hipster2 = hipster2; \ No newline at end of file diff --git a/dist/icomoon/history.js b/dist/icomoon/history.js new file mode 100644 index 000000000..b4e44a3be --- /dev/null +++ b/dist/icomoon/history.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.history = void 0; +var history = { + "viewBox": "0 0 17 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M10 1c3.866 0 7 3.134 7 7s-3.134 7-7 7v-1.5c1.469 0 2.85-0.572 3.889-1.611s1.611-2.42 1.611-3.889c0-1.469-0.572-2.85-1.611-3.889s-2.42-1.611-3.889-1.611c-1.469 0-2.85 0.572-3.889 1.611-0.799 0.799-1.322 1.801-1.52 2.889h2.909l-3.5 4-3.5-4h2.571c0.485-3.392 3.402-6 6.929-6zM13 7v2h-4v-5h2v3z" + } + }] +}; +exports.history = history; \ No newline at end of file diff --git a/dist/icomoon/home.js b/dist/icomoon/home.js new file mode 100644 index 000000000..a99e7cb9a --- /dev/null +++ b/dist/icomoon/home.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.home = void 0; +var home = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16 9.226l-8-6.21-8 6.21v-2.532l8-6.21 8 6.21zM14 9v6h-4v-4h-4v4h-4v-6l6-4.5z" + } + }] +}; +exports.home = home; \ No newline at end of file diff --git a/dist/icomoon/home2.js b/dist/icomoon/home2.js new file mode 100644 index 000000000..08d82e945 --- /dev/null +++ b/dist/icomoon/home2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.home2 = void 0; +var home2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0.5l-8 8 1.5 1.5 1.5-1.5v6.5h4v-3h2v3h4v-6.5l1.5 1.5 1.5-1.5-8-8zM8 7c-0.552 0-1-0.448-1-1s0.448-1 1-1c0.552 0 1 0.448 1 1s-0.448 1-1 1z" + } + }] +}; +exports.home2 = home2; \ No newline at end of file diff --git a/dist/icomoon/home3.js b/dist/icomoon/home3.js new file mode 100644 index 000000000..adc8a6dca --- /dev/null +++ b/dist/icomoon/home3.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.home3 = void 0; +var home3 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16 9.5l-3-3v-4.5h-2v2.5l-3-3-8 8v0.5h2v5h5v-3h2v3h5v-5h2z" + } + }] +}; +exports.home3 = home3; \ No newline at end of file diff --git a/dist/icomoon/hourGlass.js b/dist/icomoon/hourGlass.js new file mode 100644 index 000000000..b5eeac8e1 --- /dev/null +++ b/dist/icomoon/hourGlass.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.hourGlass = void 0; +var hourGlass = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.39 8c2.152-1.365 3.61-3.988 3.61-7 0-0.339-0.019-0.672-0.054-1h-13.891c-0.036 0.328-0.054 0.661-0.054 1 0 3.012 1.457 5.635 3.609 7-2.152 1.365-3.609 3.988-3.609 7 0 0.339 0.019 0.672 0.054 1h13.891c0.036-0.328 0.054-0.661 0.054-1 0-3.012-1.457-5.635-3.609-7zM2.5 15c0-2.921 1.253-5.397 3.5-6.214v-1.572c-2.247-0.817-3.5-3.294-3.5-6.214v0h11c0 2.921-1.253 5.397-3.5 6.214v1.572c2.247 0.817 3.5 3.294 3.5 6.214h-11zM9.682 10.462c-1.12-0.635-1.181-1.459-1.182-1.959v-1.004c0-0.5 0.059-1.327 1.184-1.963 0.602-0.349 1.122-0.88 1.516-1.537h-6.4c0.395 0.657 0.916 1.188 1.518 1.538 1.12 0.635 1.181 1.459 1.182 1.959v1.004c0 0.5-0.059 1.327-1.184 1.963-1.135 0.659-1.98 1.964-2.236 3.537h7.839c-0.256-1.574-1.102-2.879-2.238-3.538z" + } + }] +}; +exports.hourGlass = hourGlass; \ No newline at end of file diff --git a/dist/icomoon/htmlFive.js b/dist/icomoon/htmlFive.js new file mode 100644 index 000000000..9f6501cd5 --- /dev/null +++ b/dist/icomoon/htmlFive.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.htmlFive = void 0; +var htmlFive = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0.946 0l1.284 14.4 5.762 1.6 5.777-1.602 1.286-14.398h-14.108zM12.26 4.71h-6.758l0.161 1.809h6.437l-0.485 5.422-3.623 1.004-3.618-1.004-0.247-2.774h1.773l0.126 1.41 1.967 0.53 0.004-0.001 1.968-0.531 0.204-2.29h-6.121l-0.476-5.341h8.847l-0.158 1.766z" + } + }] +}; +exports.htmlFive = htmlFive; \ No newline at end of file diff --git a/dist/icomoon/htmlFive2.js b/dist/icomoon/htmlFive2.js new file mode 100644 index 000000000..1b2050f6c --- /dev/null +++ b/dist/icomoon/htmlFive2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.htmlFive2 = void 0; +var htmlFive2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0.946 0l1.284 14.4 5.762 1.6 5.777-1.602 1.286-14.398h-14.108zM12.668 13.482l-4.644 1.287v0.007l-0.012-0.004-0.012 0.004v-0.007l-4.644-1.287-1.098-12.304h11.508l-1.098 12.304zM10.168 8.284l-0.204 2.29-1.972 0.532-1.967-0.53-0.126-1.41h-1.773l0.247 2.774 3.626 1.003 3.615-1.003 0.485-5.422h-6.437l-0.161-1.809h6.758l0.158-1.766h-8.847l0.477 5.341z" + } + }] +}; +exports.htmlFive2 = htmlFive2; \ No newline at end of file diff --git a/dist/icomoon/image.js b/dist/icomoon/image.js new file mode 100644 index 000000000..f5de209e2 --- /dev/null +++ b/dist/icomoon/image.js @@ -0,0 +1,29 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.image = void 0; +var image = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.998 2c0.001 0.001 0.001 0.001 0.002 0.002v11.996c-0.001 0.001-0.001 0.001-0.002 0.002h-13.996c-0.001-0.001-0.001-0.001-0.002-0.002v-11.996c0.001-0.001 0.001-0.001 0.002-0.002h13.996zM15 1h-14c-0.55 0-1 0.45-1 1v12c0 0.55 0.45 1 1 1h14c0.55 0 1-0.45 1-1v-12c0-0.55-0.45-1-1-1v0z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13 4.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5 0.672-1.5 1.5-1.5 1.5 0.672 1.5 1.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14 13h-12v-2l3.5-6 4 5h1l3.5-3z" + } + }] +}; +exports.image = image; \ No newline at end of file diff --git a/dist/icomoon/images.js b/dist/icomoon/images.js new file mode 100644 index 000000000..c94af5151 --- /dev/null +++ b/dist/icomoon/images.js @@ -0,0 +1,29 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.images = void 0; +var images = { + "viewBox": "0 0 18 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M17 2h-1v-1c0-0.55-0.45-1-1-1h-14c-0.55 0-1 0.45-1 1v12c0 0.55 0.45 1 1 1h1v1c0 0.55 0.45 1 1 1h14c0.55 0 1-0.45 1-1v-12c0-0.55-0.45-1-1-1zM2 3v10h-0.998c-0.001-0.001-0.001-0.001-0.002-0.002v-11.996c0.001-0.001 0.001-0.001 0.002-0.002h13.996c0.001 0.001 0.001 0.001 0.002 0.002v0.998h-12c-0.55 0-1 0.45-1 1v0zM17 14.998c-0.001 0.001-0.001 0.001-0.002 0.002h-13.996c-0.001-0.001-0.001-0.001-0.002-0.002v-11.996c0.001-0.001 0.001-0.001 0.002-0.002h13.996c0.001 0.001 0.001 0.001 0.002 0.002v11.996z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15 5.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5 0.672-1.5 1.5-1.5 1.5 0.672 1.5 1.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16 14h-12v-2l3.5-6 4 5h1l3.5-3z" + } + }] +}; +exports.images = images; \ No newline at end of file diff --git a/dist/icomoon/indentDecrease.js b/dist/icomoon/indentDecrease.js new file mode 100644 index 000000000..0fd3df452 --- /dev/null +++ b/dist/icomoon/indentDecrease.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.indentDecrease = void 0; +var indentDecrease = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 1h16v2h-16zM6 4h10v2h-10zM6 7h10v2h-10zM6 10h10v2h-10zM0 13h16v2h-16zM4 5v6l-4-3z" + } + }] +}; +exports.indentDecrease = indentDecrease; \ No newline at end of file diff --git a/dist/icomoon/indentIncrease.js b/dist/icomoon/indentIncrease.js new file mode 100644 index 000000000..5c0235c46 --- /dev/null +++ b/dist/icomoon/indentIncrease.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.indentIncrease = void 0; +var indentIncrease = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 1h16v2h-16zM6 4h10v2h-10zM6 7h10v2h-10zM6 10h10v2h-10zM0 13h16v2h-16zM0 11v-6l4 3z" + } + }] +}; +exports.indentIncrease = indentIncrease; \ No newline at end of file diff --git a/dist/icomoon/index.js b/dist/icomoon/index.js new file mode 100644 index 000000000..7a0f0f03a --- /dev/null +++ b/dist/icomoon/index.js @@ -0,0 +1,7145 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cool = exports.contrast = exports.connection = exports.confused2 = exports.confused = exports.compass2 = exports.compass = exports.command = exports.coinYen = exports.coinPound = exports.coinEuro = exports.coinDollar = exports.cogs = exports.cog = exports.codepen = exports.clubs = exports.cloudUpload = exports.cloudDownload = exports.cloudCheck = exports.cloud = exports.clock2 = exports.clock = exports.clipboard = exports.clearFormatting = exports.circleUp = exports.circleRight = exports.circleLeft = exports.circleDown = exports.chrome = exports.checkmark2 = exports.checkmark = exports.checkboxUnchecked = exports.checkboxChecked = exports.cart = exports.cancelCircle = exports.camera = exports.calendar = exports.calculator = exports.bullhorn = exports.bug = exports.bubbles4 = exports.bubbles3 = exports.bubbles2 = exports.bubbles = exports.bubble2 = exports.bubble = exports.brightnessContrast = exports.briefcase = exports.boxRemove = exports.boxAdd = exports.books = exports.bookmarks = exports.bookmark = exports.book = exports.bold = exports.blogger2 = exports.blogger = exports.blog = exports.blocked = exports.binoculars = exports.bin2 = exports.bin = exports.bell = exports.behance2 = exports.behance = exports.basecamp = exports.barcode = exports.baffled2 = exports.baffled = exports.backward2 = exports.backward = exports.attachment = exports.arrowUpRight2 = exports.arrowUpRight = exports.arrowUpLeft2 = exports.arrowUpLeft = exports.arrowUp2 = exports.arrowUp = exports.arrowRight2 = exports.arrowRight = exports.arrowLeft2 = exports.arrowLeft = exports.arrowDownRight2 = exports.arrowDownRight = exports.arrowDownLeft2 = exports.arrowDownLeft = exports.arrowDown2 = exports.arrowDown = exports.appleinc = exports.angry2 = exports.angry = exports.android = exports.amazon = exports.alarm = exports.airplane = exports.aidKit = exports.addressBook = exports.accessibility = exports.IcoMoon = exports.IE = void 0; +exports.googlePlus3 = exports.googlePlus2 = exports.googlePlus = exports.googleDrive = exports.google3 = exports.google2 = exports.google = exports.glass2 = exports.glass = exports.github = exports.git = exports.gift = exports.frustrated2 = exports.frustrated = exports.foursquare = exports.forward3 = exports.forward2 = exports.forward = exports.fontSize = exports.font = exports.folderUpload = exports.folderPlus = exports.folderOpen = exports.folderMinus = exports.folderDownload = exports.folder = exports.floppyDisk = exports.flickr4 = exports.flickr3 = exports.flickr2 = exports.flickr = exports.flattr = exports.flag = exports.fiveHundredPX = exports.first = exports.firefox = exports.fire = exports.finder = exports.filter = exports.film = exports.filesEmpty = exports.fileZip = exports.fileWord = exports.fileVideo = exports.fileText2 = exports.fileText = exports.filePlay = exports.filePicture = exports.filePdf = exports.fileOpenoffice = exports.fileMusic = exports.fileExcel = exports.fileEmpty = exports.feed = exports.facebook2 = exports.facebook = exports.eyedropper = exports.eyePlus = exports.eyeMinus = exports.eyeBlocked = exports.eye = exports.exit = exports.evil2 = exports.evil = exports.equalizer2 = exports.equalizer = exports.envelop = exports.enter = exports.enlarge2 = exports.enlarge = exports.embed2 = exports.embed = exports.ello = exports.eject = exports.edge = exports.earth = exports.droplet = exports.dropbox = exports.drive = exports.dribbble = exports.drawer2 = exports.drawer = exports.download3 = exports.download2 = exports.download = exports.display = exports.dice = exports.diamonds = exports.deviantart = exports.delicious = exports.database = exports.ctrl = exports.css3 = exports.crying2 = exports.crying = exports.cross = exports.crop = exports.creditCard = exports.copy = exports.cool2 = void 0; +exports.paragraphCenter = exports.paintFormat = exports.pagebreak = exports.pageBreak = exports.pacman = exports.opt = exports.opera = exports.onedrive = exports.omega = exports.office = exports.npm = exports.notification = exports.next2 = exports.next = exports.newspaper = exports.newTab = exports.neutral2 = exports.neutral = exports.music = exports.mug = exports.moveUp = exports.moveDown = exports.mobile2 = exports.mobile = exports.minus = exports.mic = exports.meter2 = exports.meter = exports.menu4 = exports.menu3 = exports.menu2 = exports.menu = exports.map2 = exports.map = exports.manWoman = exports.man = exports.makeGroup = exports.mail4 = exports.mail3 = exports.mail2 = exports.mail = exports.magnet = exports.magicWand = exports.ltr = exports.loop2 = exports.loop = exports.lock = exports.location2 = exports.location = exports.listNumbered = exports.list2 = exports.list = exports.linkedin2 = exports.linkedin = exports.link = exports.ligature2 = exports.ligature = exports.lifebuoy = exports.libreoffice = exports.library = exports.leaf = exports.lastfm2 = exports.lastfm = exports.last = exports.laptop = exports.lanyrd = exports.lab = exports.keyboard = exports.key2 = exports.key = exports.joomla = exports.italic = exports.instagram = exports.insertTemplate = exports.info = exports.infinite = exports.indentIncrease = exports.indentDecrease = exports.images = exports.image = exports.htmlFive2 = exports.htmlFive = exports.hourGlass = exports.home3 = exports.home2 = exports.home = exports.history = exports.hipster2 = exports.hipster = exports.heartBroken = exports.heart = exports.headphones = exports.happy2 = exports.happy = exports.hangouts = exports.hammer2 = exports.hammer = exports.hackernews = exports.grin2 = exports.grin = void 0; +exports.stackoverflow = exports.stack = exports.spotify = exports.spoonKnife = exports.spinner9 = exports.spinner8 = exports.spinner7 = exports.spinner6 = exports.spinner5 = exports.spinner4 = exports.spinner3 = exports.spinner2 = exports.spinner11 = exports.spinner10 = exports.spinner = exports.sphere = exports.spellCheck = exports.spades = exports.soundcloud2 = exports.soundcloud = exports.sortNumericAsc = exports.sortNumbericDesc = exports.sortAmountDesc = exports.sortAmountAsc = exports.sortAlphaDesc = exports.sortAlphaAsc = exports.smile2 = exports.smile = exports.sleepy2 = exports.sleepy = exports.skype = exports.sinaWeibo = exports.sigma = exports.shuffle = exports.shrink2 = exports.shrink = exports.shocked2 = exports.shocked = exports.shift = exports.shield = exports.share2 = exports.share = exports.section = exports.search = exports.scissors = exports.safari = exports.sad2 = exports.sad = exports.rtl = exports.rss2 = exports.rss = exports.rocket = exports.road = exports.reply = exports.renren = exports.redo2 = exports.redo = exports.reddit = exports.radioUnchecked = exports.radioChecked2 = exports.radioChecked = exports.quotesRight = exports.quotesLeft = exports.quill = exports.question = exports.qrcode = exports.pushpin = exports.profile = exports.printer = exports.priceTags = exports.priceTag = exports.previous2 = exports.previous = exports.powerCord = exports.power = exports.pointUp = exports.pointRight = exports.pointLeft = exports.pointDown = exports.podcast = exports.plus = exports.play3 = exports.play2 = exports.play = exports.pinterest2 = exports.pinterest = exports.pilcrow = exports.pieChart = exports.phoneHangUp = exports.phone = exports.pencil2 = exports.pencil = exports.pen = exports.paypal = exports.pause2 = exports.pause = exports.paste = exports.paragraphRight = exports.paragraphLeft = exports.paragraphJustify = void 0; +exports.zoomOut = exports.zoomIn = exports.youtube2 = exports.youtube = exports.yelp = exports.yahoo2 = exports.yahoo = exports.xing2 = exports.xing = exports.wrench = exports.wordpress = exports.wondering2 = exports.wondering = exports.woman = exports.wink2 = exports.wink = exports.windows8 = exports.windows = exports.wikipedia = exports.whatsapp = exports.warning = exports.volumeMute2 = exports.volumeMute = exports.volumeMedium = exports.volumeLow = exports.volumeIncrease = exports.volumeHigh = exports.volumeDecrease = exports.vk = exports.vine = exports.vimeo2 = exports.vimeo = exports.videoCamera = exports.users = exports.userTie = exports.userPlus = exports.userMinus = exports.userCheck = exports.user = exports.upload3 = exports.upload2 = exports.upload = exports.unlocked = exports.ungroup = exports.undo2 = exports.undo = exports.underline = exports.twitter = exports.twitch = exports.tv = exports.tux = exports.tumblr2 = exports.tumblr = exports.truck = exports.trophy = exports.trello = exports.tree = exports.tongue2 = exports.tongue = exports.ticket = exports.textWidth = exports.textHeight = exports.textColor = exports.terminal = exports.telegram = exports.target = exports.tablet = exports.table2 = exports.table = exports.tab = exports.switchIcon = exports.svg = exports.superscript2 = exports.superscript = exports.sun = exports.subscript2 = exports.subscript = exports.stumbleupon2 = exports.stumbleupon = exports.strikethrough = exports.stopwatch = exports.stop2 = exports.stop = exports.steam2 = exports.steam = exports.statsDots = exports.statsBars2 = exports.statsBars = exports.starHalf = exports.starFull = exports.starEmpty = void 0; +var home = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16 9.226l-8-6.21-8 6.21v-2.532l8-6.21 8 6.21zM14 9v6h-4v-4h-4v4h-4v-6l6-4.5z" + } + }] +}; +exports.home = home; +var home2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0.5l-8 8 1.5 1.5 1.5-1.5v6.5h4v-3h2v3h4v-6.5l1.5 1.5 1.5-1.5-8-8zM8 7c-0.552 0-1-0.448-1-1s0.448-1 1-1c0.552 0 1 0.448 1 1s-0.448 1-1 1z" + } + }] +}; +exports.home2 = home2; +var home3 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16 9.5l-3-3v-4.5h-2v2.5l-3-3-8 8v0.5h2v5h5v-3h2v3h5v-5h2z" + } + }] +}; +exports.home3 = home3; +var office = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 16h8v-16h-8v16zM5 2h2v2h-2v-2zM5 6h2v2h-2v-2zM5 10h2v2h-2v-2zM1 2h2v2h-2v-2zM1 6h2v2h-2v-2zM1 10h2v2h-2v-2zM9 5h7v1h-7zM9 16h2v-4h3v4h2v-9h-7z" + } + }] +}; +exports.office = office; +var newspaper = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14 4v-2h-14v11c0 0.552 0.448 1 1 1h13.5c0.828 0 1.5-0.672 1.5-1.5v-8.5h-2zM13 13h-12v-10h12v10zM2 5h10v1h-10zM8 7h4v1h-4zM8 9h4v1h-4zM8 11h3v1h-3zM2 7h5v5h-5z" + } + }] +}; +exports.newspaper = newspaper; +var pencil = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.5 0c1.381 0 2.5 1.119 2.5 2.5 0 0.563-0.186 1.082-0.5 1.5l-1 1-3.5-3.5 1-1c0.418-0.314 0.937-0.5 1.5-0.5zM1 11.5l-1 4.5 4.5-1 9.25-9.25-3.5-3.5-9.25 9.25zM11.181 5.681l-7 7-0.862-0.862 7-7 0.862 0.862z" + } + }] +}; +exports.pencil = pencil; +var pencil2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6 10l2-1 7-7-1-1-7 7-1 2zM4.52 13.548c-0.494-1.043-1.026-1.574-2.069-2.069l1.548-4.262 2-1.217 6-6h-3l-6 6-3 10 10-3 6-6v-3l-6 6-1.217 2z" + } + }] +}; +exports.pencil2 = pencil2; +var quill = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 16c2-6 7.234-16 16-16-4.109 3.297-6 11-9 11s-3 0-3 0l-3 5h-1z" + } + }] +}; +exports.quill = quill; +var pen = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.909 4.561l-4.47-4.47c-0.146-0.146-0.338-0.113-0.427 0.073l-0.599 1.248 4.175 4.175 1.248-0.599c0.186-0.089 0.219-0.282 0.073-0.427z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9.615 2.115l-4.115 0.343c-0.273 0.034-0.501 0.092-0.58 0.449-0 0-0 0.001-0 0.001-1.116 5.36-4.92 10.591-4.92 10.591l0.896 0.896 4.25-4.25c-0.094-0.196-0.146-0.415-0.146-0.647 0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5-0.672 1.5-1.5 1.5c-0.232 0-0.451-0.053-0.647-0.146l-4.25 4.25 0.896 0.896c0 0 5.231-3.804 10.591-4.92 0-0 0.001-0 0.001-0 0.357-0.078 0.415-0.306 0.449-0.58l0.343-4.115-4.269-4.269z" + } + }] +}; +exports.pen = pen; +var blog = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6 0v1.5c1.148 0 2.261 0.225 3.308 0.667 1.012 0.428 1.921 1.041 2.702 1.822s1.394 1.69 1.822 2.702c0.443 1.047 0.667 2.16 0.667 3.308h1.5c0-5.523-4.477-10-10-10z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6 3v1.5c1.469 0 2.85 0.572 3.889 1.611s1.611 2.42 1.611 3.889h1.5c0-3.866-3.134-7-7-7z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7.5 6l-1 1-3.5 1-3 6.5 0.396 0.396 3.638-3.638c-0.022-0.083-0.034-0.169-0.034-0.259 0-0.552 0.448-1 1-1s1 0.448 1 1-0.448 1-1 1c-0.090 0-0.176-0.012-0.259-0.034l-3.638 3.638 0.396 0.396 6.5-3 1-3.5 1-1-2.5-2.5z" + } + }] +}; +exports.blog = blog; +var eyedropper = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.414 0.586c-0.781-0.781-2.047-0.781-2.828 0l-2.689 2.689-1.896-1.896-2.121 2.121 1.663 1.663-7.377 7.377c-0.126 0.126-0.179 0.296-0.161 0.46h-0.004v2.5c0 0.276 0.224 0.5 0.5 0.5h2.5c0 0 0.042 0 0.063 0 0.144 0 0.288-0.055 0.398-0.165l7.377-7.377 1.663 1.663 2.121-2.121-1.896-1.896 2.689-2.689c0.781-0.781 0.781-2.047 0-2.828zM2.705 15h-1.705v-1.705l7.337-7.337 1.704 1.704-7.337 7.337z" + } + }] +}; +exports.eyedropper = eyedropper; +var droplet = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.51 7.393c-1.027-2.866-3.205-5.44-5.51-7.393-2.305 1.953-4.482 4.527-5.51 7.393-0.635 1.772-0.698 3.696 0.197 5.397 1.029 1.955 3.104 3.21 5.313 3.21s4.284-1.255 5.313-3.21c0.895-1.701 0.832-3.624 0.197-5.397zM11.543 11.859c-0.684 1.301-2.075 2.141-3.543 2.141-0.861 0-1.696-0.29-2.377-0.791 0.207 0.027 0.416 0.041 0.627 0.041 1.835 0 3.573-1.050 4.428-2.676 0.701-1.333 0.64-2.716 0.373-3.818 0.227 0.44 0.42 0.878 0.576 1.311 0.353 0.985 0.625 2.443-0.084 3.791z" + } + }] +}; +exports.droplet = droplet; +var paintFormat = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16 9v-6h-3v-1c0-0.55-0.45-1-1-1h-11c-0.55 0-1 0.45-1 1v3c0 0.55 0.45 1 1 1h11c0.55 0 1-0.45 1-1v-1h2v4h-9v2h-0.5c-0.276 0-0.5 0.224-0.5 0.5v5c0 0.276 0.224 0.5 0.5 0.5h2c0.276 0 0.5-0.224 0.5-0.5v-5c0-0.276-0.224-0.5-0.5-0.5h-0.5v-1h9zM12 3h-11v-1h11v1z" + } + }] +}; +exports.paintFormat = paintFormat; +var image = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.998 2c0.001 0.001 0.001 0.001 0.002 0.002v11.996c-0.001 0.001-0.001 0.001-0.002 0.002h-13.996c-0.001-0.001-0.001-0.001-0.002-0.002v-11.996c0.001-0.001 0.001-0.001 0.002-0.002h13.996zM15 1h-14c-0.55 0-1 0.45-1 1v12c0 0.55 0.45 1 1 1h14c0.55 0 1-0.45 1-1v-12c0-0.55-0.45-1-1-1v0z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13 4.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5 0.672-1.5 1.5-1.5 1.5 0.672 1.5 1.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14 13h-12v-2l3.5-6 4 5h1l3.5-3z" + } + }] +}; +exports.image = image; +var images = { + "viewBox": "0 0 18 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M17 2h-1v-1c0-0.55-0.45-1-1-1h-14c-0.55 0-1 0.45-1 1v12c0 0.55 0.45 1 1 1h1v1c0 0.55 0.45 1 1 1h14c0.55 0 1-0.45 1-1v-12c0-0.55-0.45-1-1-1zM2 3v10h-0.998c-0.001-0.001-0.001-0.001-0.002-0.002v-11.996c0.001-0.001 0.001-0.001 0.002-0.002h13.996c0.001 0.001 0.001 0.001 0.002 0.002v0.998h-12c-0.55 0-1 0.45-1 1v0zM17 14.998c-0.001 0.001-0.001 0.001-0.002 0.002h-13.996c-0.001-0.001-0.001-0.001-0.002-0.002v-11.996c0.001-0.001 0.001-0.001 0.002-0.002h13.996c0.001 0.001 0.001 0.001 0.002 0.002v11.996z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15 5.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5 0.672-1.5 1.5-1.5 1.5 0.672 1.5 1.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16 14h-12v-2l3.5-6 4 5h1l3.5-3z" + } + }] +}; +exports.images = images; +var camera = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4.75 9.5c0 1.795 1.455 3.25 3.25 3.25s3.25-1.455 3.25-3.25-1.455-3.25-3.25-3.25-3.25 1.455-3.25 3.25zM15 4h-3.5c-0.25-1-0.5-2-1.5-2h-4c-1 0-1.25 1-1.5 2h-3.5c-0.55 0-1 0.45-1 1v9c0 0.55 0.45 1 1 1h14c0.55 0 1-0.45 1-1v-9c0-0.55-0.45-1-1-1zM8 13.938c-2.451 0-4.438-1.987-4.438-4.438s1.987-4.438 4.438-4.438c2.451 0 4.438 1.987 4.438 4.438s-1.987 4.438-4.438 4.438zM15 7h-2v-1h2v1z" + } + }] +}; +exports.camera = camera; +var headphones = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4.5 9h-1v7h1c0.275 0 0.5-0.225 0.5-0.5v-6c0-0.275-0.225-0.5-0.5-0.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.5 9c-0.275 0-0.5 0.225-0.5 0.5v6c0 0.275 0.225 0.5 0.5 0.5h1v-7h-1z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16 8c0-4.418-3.582-8-8-8s-8 3.582-8 8c0 0.96 0.169 1.88 0.479 2.732-0.304 0.519-0.479 1.123-0.479 1.768 0 1.763 1.304 3.222 3 3.464v-6.928c-0.499 0.071-0.963 0.248-1.371 0.506-0.084-0.417-0.129-0.849-0.129-1.292 0-3.59 2.91-6.5 6.5-6.5s6.5 2.91 6.5 6.5c0 0.442-0.044 0.874-0.128 1.292-0.408-0.259-0.873-0.435-1.372-0.507v6.929c1.696-0.243 3-1.701 3-3.464 0-0.645-0.175-1.249-0.479-1.768 0.31-0.853 0.479-1.773 0.479-2.732z" + } + }] +}; +exports.headphones = headphones; +var music = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15 0h1v11.5c0 1.381-1.567 2.5-3.5 2.5s-3.5-1.119-3.5-2.5c0-1.381 1.567-2.5 3.5-2.5 0.979 0 1.865 0.287 2.5 0.751v-5.751l-8 1.778v7.722c0 1.381-1.567 2.5-3.5 2.5s-3.5-1.119-3.5-2.5c0-1.381 1.567-2.5 3.5-2.5 0.979 0 1.865 0.287 2.5 0.751v-9.751l9-2z" + } + }] +}; +exports.music = music; +var play = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.331 2.502c-2.244-0.323-4.724-0.502-7.331-0.502s-5.087 0.179-7.331 0.502c-0.43 1.683-0.669 3.543-0.669 5.498s0.239 3.815 0.669 5.498c2.244 0.323 4.724 0.502 7.331 0.502s5.087-0.179 7.331-0.502c0.43-1.683 0.669-3.543 0.669-5.498s-0.239-3.815-0.669-5.498zM6 11v-6l5 3-5 3z" + } + }] +}; +exports.play = play; +var film = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 2v12h16v-12h-16zM3 13h-2v-2h2v2zM3 9h-2v-2h2v2zM3 5h-2v-2h2v2zM12 13h-8v-10h8v10zM15 13h-2v-2h2v2zM15 9h-2v-2h2v2zM15 5h-2v-2h2v2zM6 5v6l4-3z" + } + }] +}; +exports.film = film; +var videoCamera = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6 4.5c0-1.381 1.119-2.5 2.5-2.5s2.5 1.119 2.5 2.5c0 1.381-1.119 2.5-2.5 2.5s-2.5-1.119-2.5-2.5zM0 4.5c0-1.381 1.119-2.5 2.5-2.5s2.5 1.119 2.5 2.5c0 1.381-1.119 2.5-2.5 2.5s-2.5-1.119-2.5-2.5zM12 9.5v-1.5c0-0.55-0.45-1-1-1h-10c-0.55 0-1 0.45-1 1v5c0 0.55 0.45 1 1 1h10c0.55 0 1-0.45 1-1v-1.5l4 2.5v-7l-4 2.5zM10 12h-8v-3h8v3z" + } + }] +}; +exports.videoCamera = videoCamera; +var dice = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.5 3h-8c-1.375 0-2.5 1.125-2.5 2.5v8c0 1.375 1.125 2.5 2.5 2.5h8c1.375 0 2.5-1.125 2.5-2.5v-8c0-1.375-1.125-2.5-2.5-2.5zM6.5 14c-0.828 0-1.5-0.672-1.5-1.5s0.672-1.5 1.5-1.5 1.5 0.672 1.5 1.5-0.672 1.5-1.5 1.5zM6.5 8c-0.828 0-1.5-0.672-1.5-1.5s0.672-1.5 1.5-1.5 1.5 0.672 1.5 1.5-0.672 1.5-1.5 1.5zM9.5 11c-0.828 0-1.5-0.672-1.5-1.5s0.672-1.5 1.5-1.5 1.5 0.672 1.5 1.5-0.672 1.5-1.5 1.5zM12.5 14c-0.828 0-1.5-0.672-1.5-1.5s0.672-1.5 1.5-1.5 1.5 0.672 1.5 1.5-0.672 1.5-1.5 1.5zM12.5 8c-0.828 0-1.5-0.672-1.5-1.5s0.672-1.5 1.5-1.5 1.5 0.672 1.5 1.5-0.672 1.5-1.5 1.5zM12.949 2c-0.233-1.138-1.245-2-2.449-2h-8c-1.375 0-2.5 1.125-2.5 2.5v8c0 1.204 0.862 2.216 2 2.449v-9.949c0-0.55 0.45-1 1-1h9.949z" + } + }] +}; +exports.dice = dice; +var pacman = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.074 2.794c-1.467-1.71-3.644-2.794-6.074-2.794-4.418 0-8 3.582-8 8s3.582 8 8 8c2.43 0 4.607-1.084 6.074-2.794l-5.074-5.206 5.074-5.206zM11 1.884c0.616 0 1.116 0.499 1.116 1.116s-0.499 1.116-1.116 1.116-1.116-0.499-1.116-1.116c0-0.616 0.499-1.116 1.116-1.116z" + } + }] +}; +exports.pacman = pacman; +var spades = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12.775 5.44c-3.024-2.248-4.067-4.047-4.774-5.44v0c-0 0-0-0-0-0v0c-0.708 1.393-1.75 3.192-4.774 5.44-5.157 3.833-0.303 9.182 3.965 6.238-0.278 1.827-1.227 3.159-2.191 3.733v0.59h6v-0.59c-0.964-0.574-1.913-1.906-2.191-3.733 4.268 2.944 9.122-2.405 3.965-6.238z" + } + }] +}; +exports.spades = spades; +var clubs = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12.294 6.137c-0.922 0-1.751 0.384-2.341 1.011-0.25 0.265-0.684 0.58-1.153 0.856 0.22-0.842 0.917-1.902 1.4-2.367 0.619-0.596 1-1.435 1-2.367 0-1.795-1.429-3.252-3.2-3.271-1.771 0.019-3.2 1.475-3.2 3.271 0 0.932 0.38 1.771 1 2.367 0.484 0.465 1.18 1.525 1.4 2.367-0.469-0.277-0.903-0.591-1.153-0.856-0.59-0.627-1.419-1.011-2.341-1.011-1.787 0-3.236 1.463-3.236 3.271s1.448 3.271 3.236 3.271c0.923 0 1.751-0.396 2.341-1.023 0.263-0.279 0.726-0.627 1.223-0.916-0.047 2.308-1.149 4.003-2.271 4.67v0.59h6v-0.59c-1.122-0.668-2.224-2.363-2.271-4.67 0.498 0.289 0.961 0.637 1.223 0.916 0.59 0.626 1.419 1.023 2.341 1.023 1.787 0 3.236-1.464 3.236-3.271s-1.448-3.271-3.236-3.271z" + } + }] +}; +exports.clubs = clubs; +var diamonds = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0l-5 8 5 8 5-8z" + } + }] +}; +exports.diamonds = diamonds; +var bullhorn = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16 6.707c0-3.139-0.919-5.687-2.054-5.707 0.005-0 0.009-0 0.014-0h-1.296c0 0-3.044 2.287-7.425 3.184-0.134 0.708-0.219 1.551-0.219 2.523s0.085 1.816 0.219 2.523c4.382 0.897 7.425 3.184 7.425 3.184h1.296c-0.005 0-0.009-0-0.014-0.001 1.136-0.020 2.054-2.567 2.054-5.707zM13.513 11.551c-0.147 0-0.305-0.152-0.387-0.243-0.197-0.22-0.387-0.562-0.55-0.989-0.363-0.957-0.564-2.239-0.564-3.611s0.2-2.655 0.564-3.611c0.162-0.428 0.353-0.77 0.55-0.99 0.081-0.091 0.24-0.243 0.387-0.243s0.305 0.152 0.387 0.243c0.197 0.22 0.387 0.562 0.55 0.99 0.363 0.957 0.564 2.239 0.564 3.611s-0.2 2.655-0.564 3.611c-0.162 0.428-0.353 0.77-0.55 0.989-0.081 0.091-0.24 0.243-0.387 0.243zM3.935 6.707c0-0.812 0.060-1.6 0.173-2.33-0.74 0.102-1.39 0.161-2.193 0.161-1.048 0-1.048 0-1.048 0l-0.867 1.479v1.378l0.867 1.479c0 0 0 0 1.048 0 0.803 0 1.453 0.059 2.193 0.161-0.113-0.729-0.173-1.518-0.173-2.33zM5.752 10.034l-2-0.383 1.279 5.024c0.066 0.26 0.324 0.391 0.573 0.291l1.852-0.741c0.249-0.1 0.349-0.374 0.222-0.611l-1.926-3.581zM13.513 8.574c-0.057 0-0.118-0.059-0.149-0.094-0.076-0.085-0.149-0.217-0.212-0.381-0.14-0.369-0.217-0.863-0.217-1.392s0.077-1.023 0.217-1.392c0.063-0.165 0.136-0.297 0.212-0.381 0.031-0.035 0.092-0.094 0.149-0.094s0.118 0.059 0.149 0.094c0.076 0.085 0.149 0.217 0.212 0.381 0.14 0.369 0.217 0.863 0.217 1.392s-0.077 1.023-0.217 1.392c-0.063 0.165-0.136 0.297-0.212 0.381-0.031 0.035-0.092 0.094-0.149 0.094z" + } + }] +}; +exports.bullhorn = bullhorn; +var connection = { + "viewBox": "0 0 20 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M10 9c1.654 0 3.154 0.673 4.241 1.759l-1.414 1.414c-0.724-0.724-1.724-1.173-2.827-1.173s-2.103 0.449-2.827 1.173l-1.414-1.414c1.086-1.086 2.586-1.759 4.241-1.759zM2.929 7.929c1.889-1.889 4.4-2.929 7.071-2.929s5.182 1.040 7.071 2.929l-1.414 1.414c-1.511-1.511-3.52-2.343-5.657-2.343s-4.146 0.832-5.657 2.343l-1.414-1.414zM15.45 2.101c1.667 0.705 3.164 1.715 4.45 3v0l-1.414 1.414c-2.267-2.266-5.28-3.515-8.485-3.515s-6.219 1.248-8.485 3.515l-1.414-1.414c1.285-1.285 2.783-2.295 4.45-3 1.727-0.73 3.56-1.101 5.45-1.101s3.723 0.37 5.45 1.101zM9 14c0-0.552 0.448-1 1-1s1 0.448 1 1c0 0.552-0.448 1-1 1s-1-0.448-1-1z" + } + }] +}; +exports.connection = connection; +var podcast = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16 8c0-4.418-3.582-8-8-8s-8 3.582-8 8c0 3.438 2.169 6.37 5.214 7.501l-0.214 0.499h6l-0.214-0.499c3.045-1.131 5.214-4.063 5.214-7.501zM7.606 9.919c-0.356-0.153-0.606-0.507-0.606-0.919 0-0.552 0.448-1 1-1s1 0.448 1 1c0 0.412-0.25 0.766-0.606 0.919l-0.394-0.919-0.394 0.919zM8.41 9.958c0.908-0.189 1.59-0.994 1.59-1.958 0-1.105-0.895-2-2-2s-2 0.895-2 2c0 0.964 0.682 1.768 1.59 1.957l-1.166 2.721c-1.425-0.612-2.424-2.028-2.424-3.677 0-2.209 1.791-4.188 4-4.188s4 1.978 4 4.188c0 1.649-0.999 3.066-2.424 3.677l-1.166-2.72zM10.757 15.433l-1.155-2.695c1.976-0.668 3.398-2.537 3.398-4.738 0-2.761-2.239-5-5-5s-5 2.239-5 5c0 2.201 1.422 4.070 3.398 4.738l-1.155 2.695c-2.494-1.070-4.24-3.547-4.24-6.433 0-3.865 3.133-7.185 6.997-7.185s6.997 3.32 6.997 7.185c0 2.886-1.747 5.363-4.24 6.433z" + } + }] +}; +exports.podcast = podcast; +var feed = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6 8c0-1.105 0.895-2 2-2s2 0.895 2 2c0 1.105-0.895 2-2 2s-2-0.895-2-2zM10.38 3.602c1.56 0.846 2.62 2.498 2.62 4.398s-1.059 3.552-2.62 4.398c0.689-1.096 1.12-2.66 1.12-4.398s-0.431-3.302-1.12-4.398zM4.5 8c0 1.738 0.431 3.302 1.12 4.398-1.56-0.846-2.62-2.498-2.62-4.398s1.059-3.552 2.62-4.398c-0.689 1.096-1.12 2.66-1.12 4.398zM1.5 8c0 2.686 0.85 5.097 2.198 6.746-2.223-1.421-3.698-3.911-3.698-6.746s1.474-5.325 3.698-6.746c-1.348 1.649-2.198 4.060-2.198 6.746zM12.302 1.254c2.223 1.421 3.698 3.911 3.698 6.746s-1.474 5.325-3.698 6.746c1.348-1.649 2.198-4.060 2.198-6.746s-0.85-5.097-2.198-6.746z" + } + }] +}; +exports.feed = feed; +var mic = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7.5 11c1.381 0 2.5-1.119 2.5-2.5v-6c0-1.381-1.119-2.5-2.5-2.5s-2.5 1.119-2.5 2.5v6c0 1.381 1.119 2.5 2.5 2.5zM11 7v1.5c0 1.933-1.567 3.5-3.5 3.5s-3.5-1.567-3.5-3.5v-1.5h-1v1.5c0 2.316 1.75 4.223 4 4.472v2.028h-2v1h5v-1h-2v-2.028c2.25-0.249 4-2.156 4-4.472v-1.5h-1z" + } + }] +}; +exports.mic = mic; +var book = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14 2v13h-10.5c-0.829 0-1.5-0.672-1.5-1.5s0.671-1.5 1.5-1.5h9.5v-12h-10c-1.1 0-2 0.9-2 2v12c0 1.1 0.9 2 2 2h12v-14h-1z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M3.501 13v0c-0 0-0.001 0-0.001 0-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5c0 0 0.001-0 0.001-0v0h9.498v-1h-9.498z" + } + }] +}; +exports.book = book; +var books = { + "viewBox": "0 0 18 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M3.5 2h-3c-0.275 0-0.5 0.225-0.5 0.5v11c0 0.275 0.225 0.5 0.5 0.5h3c0.275 0 0.5-0.225 0.5-0.5v-11c0-0.275-0.225-0.5-0.5-0.5zM3 5h-2v-1h2v1z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8.5 2h-3c-0.275 0-0.5 0.225-0.5 0.5v11c0 0.275 0.225 0.5 0.5 0.5h3c0.275 0 0.5-0.225 0.5-0.5v-11c0-0.275-0.225-0.5-0.5-0.5zM8 5h-2v-1h2v1z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.954 2.773l-2.679 1.35c-0.246 0.124-0.345 0.426-0.222 0.671l4.5 8.93c0.124 0.246 0.426 0.345 0.671 0.222l2.679-1.35c0.246-0.124 0.345-0.426 0.222-0.671l-4.5-8.93c-0.124-0.246-0.426-0.345-0.671-0.222z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.5 13.5c0 0.276-0.224 0.5-0.5 0.5s-0.5-0.224-0.5-0.5c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5z" + } + }] +}; +exports.books = books; +var library = { + "viewBox": "0 0 17 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16 15v-1h-1v-6h1v-1h-3v1h1v6h-3v-6h1v-1h-3v1h1v6h-3v-6h1v-1h-3v1h1v6h-3v-6h1v-1h-3v1h1v6h-1v1h-1v1h17v-1h-1z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0h1l8 5v1h-17v-1l8-5z" + } + }] +}; +exports.library = library; +var fileText = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.5 0h-12c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h12c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM13 14h-11v-12h11v12zM4 7h7v1h-7zM4 9h7v1h-7zM4 11h7v1h-7zM4 5h7v1h-7z" + } + }] +}; +exports.fileText = fileText; +var profile = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.5 0h-12c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h12c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM13 14h-11v-12h11v12zM4 9h7v1h-7zM4 11h7v1h-7zM5 4.5c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5zM7.5 6h-2c-0.825 0-1.5 0.45-1.5 1v1h5v-1c0-0.55-0.675-1-1.5-1z" + } + }] +}; +exports.profile = profile; +var fileEmpty = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.341 3.579c-0.347-0.473-0.831-1.027-1.362-1.558s-1.085-1.015-1.558-1.362c-0.806-0.591-1.197-0.659-1.421-0.659h-7.75c-0.689 0-1.25 0.561-1.25 1.25v13.5c0 0.689 0.561 1.25 1.25 1.25h11.5c0.689 0 1.25-0.561 1.25-1.25v-9.75c0-0.224-0.068-0.615-0.659-1.421zM12.271 2.729c0.48 0.48 0.856 0.912 1.134 1.271h-2.406v-2.405c0.359 0.278 0.792 0.654 1.271 1.134zM14 14.75c0 0.136-0.114 0.25-0.25 0.25h-11.5c-0.135 0-0.25-0.114-0.25-0.25v-13.5c0-0.135 0.115-0.25 0.25-0.25 0 0 7.749-0 7.75 0v3.5c0 0.276 0.224 0.5 0.5 0.5h3.5v9.75z" + } + }] +}; +exports.fileEmpty = fileEmpty; +var filesEmpty = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.341 5.579c-0.347-0.473-0.831-1.027-1.362-1.558s-1.085-1.015-1.558-1.362c-0.806-0.591-1.197-0.659-1.421-0.659h-5.75c-0.689 0-1.25 0.561-1.25 1.25v11.5c0 0.689 0.561 1.25 1.25 1.25h9.5c0.689 0 1.25-0.561 1.25-1.25v-7.75c0-0.224-0.068-0.615-0.659-1.421zM12.271 4.729c0.48 0.48 0.856 0.912 1.134 1.271h-2.406v-2.405c0.359 0.278 0.792 0.654 1.271 1.134v0zM14 14.75c0 0.136-0.114 0.25-0.25 0.25h-9.5c-0.136 0-0.25-0.114-0.25-0.25v-11.5c0-0.135 0.114-0.25 0.25-0.25 0 0 5.749-0 5.75 0v3.5c0 0.276 0.224 0.5 0.5 0.5h3.5v7.75z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9.421 0.659c-0.806-0.591-1.197-0.659-1.421-0.659h-5.75c-0.689 0-1.25 0.561-1.25 1.25v11.5c0 0.604 0.43 1.109 1 1.225v-12.725c0-0.135 0.115-0.25 0.25-0.25h7.607c-0.151-0.124-0.297-0.238-0.437-0.341z" + } + }] +}; +exports.filesEmpty = filesEmpty; +var fileText2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.341 3.579c-0.347-0.473-0.831-1.027-1.362-1.558s-1.085-1.015-1.558-1.362c-0.806-0.591-1.197-0.659-1.421-0.659h-7.75c-0.689 0-1.25 0.561-1.25 1.25v13.5c0 0.689 0.561 1.25 1.25 1.25h11.5c0.689 0 1.25-0.561 1.25-1.25v-9.75c0-0.224-0.068-0.615-0.659-1.421zM12.271 2.729c0.48 0.48 0.856 0.912 1.134 1.271h-2.406v-2.405c0.359 0.278 0.792 0.654 1.271 1.134zM14 14.75c0 0.136-0.114 0.25-0.25 0.25h-11.5c-0.135 0-0.25-0.114-0.25-0.25v-13.5c0-0.135 0.115-0.25 0.25-0.25 0 0 7.749-0 7.75 0v3.5c0 0.276 0.224 0.5 0.5 0.5h3.5v9.75z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.5 13h-7c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5h7c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.5 11h-7c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5h7c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.5 9h-7c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5h7c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5z" + } + }] +}; +exports.fileText2 = fileText2; +var filePicture = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13 14h-10v-2l3-5 4.109 5 2.891-2v4z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13 7.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5 0.672-1.5 1.5-1.5c0.828 0 1.5 0.672 1.5 1.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.341 3.579c-0.347-0.473-0.831-1.027-1.362-1.558s-1.085-1.015-1.558-1.362c-0.806-0.591-1.197-0.659-1.421-0.659h-7.75c-0.689 0-1.25 0.561-1.25 1.25v13.5c0 0.689 0.561 1.25 1.25 1.25h11.5c0.689 0 1.25-0.561 1.25-1.25v-9.75c0-0.224-0.068-0.615-0.659-1.421zM12.271 2.729c0.48 0.48 0.856 0.912 1.134 1.271h-2.406v-2.405c0.359 0.278 0.792 0.654 1.271 1.134zM14 14.75c0 0.136-0.114 0.25-0.25 0.25h-11.5c-0.135 0-0.25-0.114-0.25-0.25v-13.5c0-0.135 0.115-0.25 0.25-0.25 0 0 7.749-0 7.75 0v3.5c0 0.276 0.224 0.5 0.5 0.5h3.5v9.75z" + } + }] +}; +exports.filePicture = filePicture; +var fileMusic = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.341 3.579c-0.347-0.473-0.831-1.027-1.362-1.558s-1.085-1.015-1.558-1.362c-0.806-0.591-1.197-0.659-1.421-0.659h-7.75c-0.689 0-1.25 0.561-1.25 1.25v13.5c0 0.689 0.561 1.25 1.25 1.25h11.5c0.689 0 1.25-0.561 1.25-1.25v-9.75c0-0.224-0.068-0.615-0.659-1.421v0zM12.271 2.729c0.48 0.48 0.856 0.912 1.134 1.271h-2.406v-2.405c0.359 0.278 0.792 0.654 1.271 1.134v0zM14 14.75c0 0.136-0.114 0.25-0.25 0.25h-11.5c-0.135 0-0.25-0.114-0.25-0.25v-13.5c0-0.135 0.115-0.25 0.25-0.25 0 0 7.749-0 7.75 0v3.5c0 0.276 0.224 0.5 0.5 0.5h3.5v9.75z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.817 6.113c-0.116-0.095-0.268-0.133-0.415-0.104l-5 1c-0.234 0.047-0.402 0.252-0.402 0.49v3.701c-0.294-0.128-0.636-0.201-1-0.201-1.105 0-2 0.672-2 1.5s0.895 1.5 2 1.5 2-0.672 2-1.5v-3.59l4-0.8v2.091c-0.294-0.128-0.636-0.201-1-0.201-1.105 0-2 0.672-2 1.5s0.895 1.5 2 1.5 2-0.672 2-1.5v-5c0-0.15-0.067-0.292-0.183-0.387z" + } + }] +}; +exports.fileMusic = fileMusic; +var filePlay = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6 6l5 3.5-5 3.5v-7z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.341 3.579c-0.347-0.473-0.831-1.027-1.362-1.558s-1.085-1.015-1.558-1.362c-0.806-0.591-1.197-0.659-1.421-0.659h-7.75c-0.689 0-1.25 0.561-1.25 1.25v13.5c0 0.689 0.561 1.25 1.25 1.25h11.5c0.689 0 1.25-0.561 1.25-1.25v-9.75c0-0.224-0.068-0.615-0.659-1.421zM12.271 2.729c0.48 0.48 0.856 0.912 1.134 1.271h-2.406v-2.405c0.359 0.278 0.792 0.654 1.271 1.134zM14 14.75c0 0.136-0.114 0.25-0.25 0.25h-11.5c-0.135 0-0.25-0.114-0.25-0.25v-13.5c0-0.135 0.115-0.25 0.25-0.25 0 0 7.749-0 7.75 0v3.5c0 0.276 0.224 0.5 0.5 0.5h3.5v9.75z" + } + }] +}; +exports.filePlay = filePlay; +var fileVideo = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.341 3.579c-0.347-0.473-0.831-1.027-1.362-1.558s-1.085-1.015-1.558-1.362c-0.806-0.591-1.197-0.659-1.421-0.659h-7.75c-0.689 0-1.25 0.561-1.25 1.25v13.5c0 0.689 0.561 1.25 1.25 1.25h11.5c0.689 0 1.25-0.561 1.25-1.25v-9.75c0-0.224-0.068-0.615-0.659-1.421v0 0zM12.271 2.729c0.48 0.48 0.856 0.912 1.134 1.271h-2.406v-2.405c0.359 0.278 0.792 0.654 1.271 1.134v0 0zM14 14.75c0 0.136-0.114 0.25-0.25 0.25h-11.5c-0.135 0-0.25-0.114-0.25-0.25v-13.5c0-0.135 0.115-0.25 0.25-0.25 0 0 7.749-0 7.75 0v3.5c0 0.276 0.224 0.5 0.5 0.5h3.5v9.75z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4 8h5v5h-5v-5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9 10l3-2v5l-3-2z" + } + }] +}; +exports.fileVideo = fileVideo; +var fileZip = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.341 3.579c-0.347-0.473-0.831-1.027-1.362-1.558s-1.085-1.015-1.558-1.362c-0.806-0.591-1.197-0.659-1.421-0.659h-7.75c-0.689 0-1.25 0.561-1.25 1.25v13.5c0 0.689 0.561 1.25 1.25 1.25h11.5c0.689 0 1.25-0.561 1.25-1.25v-9.75c0-0.224-0.068-0.615-0.659-1.421v0 0zM12.271 2.729c0.48 0.48 0.856 0.912 1.134 1.271h-2.406v-2.405c0.359 0.278 0.792 0.654 1.271 1.134v0 0zM14 14.75c0 0.136-0.114 0.25-0.25 0.25h-11.5c-0.135 0-0.25-0.114-0.25-0.25v-13.5c0-0.135 0.115-0.25 0.25-0.25 0 0 7.749-0 7.75 0v3.5c0 0.276 0.224 0.5 0.5 0.5h3.5v9.75z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4 1h2v1h-2v-1z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6 2h2v1h-2v-1z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4 3h2v1h-2v-1z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6 4h2v1h-2v-1z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4 5h2v1h-2v-1z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6 6h2v1h-2v-1z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4 7h2v1h-2v-1z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6 8h2v1h-2v-1z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4 13.25c0 0.412 0.338 0.75 0.75 0.75h2.5c0.412 0 0.75-0.338 0.75-0.75v-2.5c0-0.412-0.338-0.75-0.75-0.75h-1.25v-1h-2v4.25zM7 12v1h-2v-1h2z" + } + }] +}; +exports.fileZip = fileZip; +var copy = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M10 4v-4h-7l-3 3v9h6v4h10v-12h-6zM3 1.414v1.586h-1.586l1.586-1.586zM1 11v-7h3v-3h5v3l-3 3v4h-5zM9 5.414v1.586h-1.586l1.586-1.586zM15 15h-8v-7h3v-3h5v10z" + } + }] +}; +exports.copy = copy; +var paste = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11 2h-2v-1c0-0.55-0.45-1-1-1h-2c-0.55 0-1 0.45-1 1v1h-2v2h8v-2zM8 2h-2v-0.998c0.001-0.001 0.001-0.001 0.002-0.002h1.996c0.001 0.001 0.001 0.001 0.002 0.002v0.998zM13 5v-2.5c0-0.275-0.225-0.5-0.5-0.5h-1v1h0.5v2h-3l-3 3v4h-4v-9h0.5v-1h-1c-0.275 0-0.5 0.225-0.5 0.5v10c0 0.275 0.225 0.5 0.5 0.5h4.5v3h10v-11h-3zM9 6.414v1.586h-1.586l1.586-1.586zM15 15h-8v-6h3v-3h5v9z" + } + }] +}; +exports.paste = paste; +var stack = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16 5l-8-4-8 4 8 4 8-4zM8 2.328l5.345 2.672-5.345 2.672-5.345-2.672 5.345-2.672zM14.398 7.199l1.602 0.801-8 4-8-4 1.602-0.801 6.398 3.199zM14.398 10.199l1.602 0.801-8 4-8-4 1.602-0.801 6.398 3.199z" + } + }] +}; +exports.stack = stack; +var folder = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7 2l2 2h7v11h-16v-13z" + } + }] +}; +exports.folder = folder; +var folderOpen = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13 15l3-8h-13l-3 8zM2 6l-2 9v-13h4.5l2 2h6.5v2z" + } + }] +}; +exports.folderOpen = folderOpen; +var folderPlus = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9 4l-2-2h-7v13h16v-11h-7zM11 11h-2v2h-2v-2h-2v-2h2v-2h2v2h2v2z" + } + }] +}; +exports.folderPlus = folderPlus; +var folderMinus = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9 4l-2-2h-7v13h16v-11h-7zM11 11h-6v-2h6v2z" + } + }] +}; +exports.folderMinus = folderMinus; +var folderDownload = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9 4l-2-2h-7v13h16v-11h-7zM8 13.5l-3.5-3.5h2.5v-4h2v4h2.5l-3.5 3.5z" + } + }] +}; +exports.folderDownload = folderDownload; +var folderUpload = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9 4l-2-2h-7v13h16v-11h-7zM8 7.5l3.5 3.5h-2.5v4h-2v-4h-2.5l3.5-3.5z" + } + }] +}; +exports.folderUpload = folderUpload; +var priceTag = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.25 0h-6c-0.412 0-0.989 0.239-1.28 0.53l-7.439 7.439c-0.292 0.292-0.292 0.769 0 1.061l6.439 6.439c0.292 0.292 0.769 0.292 1.061 0l7.439-7.439c0.292-0.292 0.53-0.868 0.53-1.28v-6c0-0.412-0.338-0.75-0.75-0.75zM11.5 6c-0.828 0-1.5-0.672-1.5-1.5s0.672-1.5 1.5-1.5 1.5 0.672 1.5 1.5-0.672 1.5-1.5 1.5z" + } + }] +}; +exports.priceTag = priceTag; +var priceTags = { + "viewBox": "0 0 20 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M19.25 0h-6c-0.412 0-0.989 0.239-1.28 0.53l-7.439 7.439c-0.292 0.292-0.292 0.769 0 1.061l6.439 6.439c0.292 0.292 0.769 0.292 1.061 0l7.439-7.439c0.292-0.292 0.53-0.868 0.53-1.28v-6c0-0.412-0.337-0.75-0.75-0.75zM15.5 6c-0.828 0-1.5-0.672-1.5-1.5s0.672-1.5 1.5-1.5 1.5 0.672 1.5 1.5-0.672 1.5-1.5 1.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M2 8.5l8.5-8.5h-1.25c-0.412 0-0.989 0.239-1.28 0.53l-7.439 7.439c-0.292 0.292-0.292 0.769 0 1.061l6.439 6.439c0.292 0.292 0.769 0.292 1.061 0l0.47-0.47-6.5-6.5z" + } + }] +}; +exports.priceTags = priceTags; +var barcode = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 2h2v10h-2zM3 2h1v10h-1zM5 2h1v10h-1zM8 2h1v10h-1zM12 2h1v10h-1zM15 2h1v10h-1zM10 2h0.5v10h-0.5zM7 2h0.5v10h-0.5zM13.5 2h0.5v10h-0.5zM0 13h1v1h-1zM3 13h1v1h-1zM5 13h1v1h-1zM10 13h1v1h-1zM15 13h1v1h-1zM12 13h2v1h-2zM7 13h2v1h-2z" + } + }] +}; +exports.barcode = barcode; +var qrcode = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5 1h-4v4h4v-4zM6 0v0 6h-6v-6h6zM2 2h2v2h-2zM15 1h-4v4h4v-4zM16 0v0 6h-6v-6h6zM12 2h2v2h-2zM5 11h-4v4h4v-4zM6 10v0 6h-6v-6h6zM2 12h2v2h-2zM7 0h1v1h-1zM8 1h1v1h-1zM7 2h1v1h-1zM8 3h1v1h-1zM7 4h1v1h-1zM8 5h1v1h-1zM7 6h1v1h-1zM7 8h1v1h-1zM8 9h1v1h-1zM7 10h1v1h-1zM8 11h1v1h-1zM7 12h1v1h-1zM8 13h1v1h-1zM7 14h1v1h-1zM8 15h1v1h-1zM15 8h1v1h-1zM1 8h1v1h-1zM2 7h1v1h-1zM0 7h1v1h-1zM4 7h1v1h-1zM5 8h1v1h-1zM6 7h1v1h-1zM9 8h1v1h-1zM10 7h1v1h-1zM11 8h1v1h-1zM12 7h1v1h-1zM13 8h1v1h-1zM14 7h1v1h-1zM15 10h1v1h-1zM9 10h1v1h-1zM10 9h1v1h-1zM11 10h1v1h-1zM13 10h1v1h-1zM14 9h1v1h-1zM15 12h1v1h-1zM9 12h1v1h-1zM10 11h1v1h-1zM12 11h1v1h-1zM13 12h1v1h-1zM14 11h1v1h-1zM15 14h1v1h-1zM10 13h1v1h-1zM11 14h1v1h-1zM12 13h1v1h-1zM13 14h1v1h-1zM10 15h1v1h-1zM12 15h1v1h-1zM14 15h1v1h-1z" + } + }] +}; +exports.qrcode = qrcode; +var ticket = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9 5l2 2-4 4-2-2zM15.649 4.649l-1.149-1.149-0.5 0.5c-0.256 0.256-0.61 0.414-1 0.414-0.781 0-1.414-0.633-1.414-1.414 0-0.391 0.158-0.744 0.415-1l0.5-0.5-1.149-1.149c-0.468-0.468-1.235-0.468-1.703 0l-9.297 9.297c-0.468 0.468-0.468 1.235 0 1.703l1.149 1.149 0.499-0.499c0.256-0.256 0.61-0.415 1.001-0.415 0.781 0 1.414 0.633 1.414 1.414 0 0.391-0.158 0.744-0.415 1l-0.5 0.5 1.149 1.149c0.468 0.468 1.234 0.468 1.703 0l9.297-9.297c0.468-0.468 0.468-1.235 0-1.703zM7 13l-4-4 6-6 4 4-6 6z" + } + }] +}; +exports.ticket = ticket; +var cart = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6 14.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16 14.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16 8v-6h-12c0-0.552-0.448-1-1-1h-3v1h2l0.751 6.438c-0.458 0.367-0.751 0.93-0.751 1.562 0 1.105 0.895 2 2 2h12v-1h-12c-0.552 0-1-0.448-1-1 0-0.003 0-0.007 0-0.010l13-1.99z" + } + }] +}; +exports.cart = cart; +var coinDollar = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7.5 1c-4.142 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5c4.142 0 7.5-3.358 7.5-7.5s-3.358-7.5-7.5-7.5zM7.5 14.5c-3.314 0-6-2.686-6-6s2.686-6 6-6c3.314 0 6 2.686 6 6s-2.686 6-6 6zM8 8v-2h2v-1h-2v-1h-1v1h-2v4h2v2h-2v1h2v1h1v-1h2l-0-4h-2zM7 8h-1v-2h1v2zM9 11h-1v-2h1v2z" + } + }] +}; +exports.coinDollar = coinDollar; +var coinEuro = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7.5 1c-4.142 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5c4.142 0 7.5-3.358 7.5-7.5s-3.358-7.5-7.5-7.5zM7.5 14.5c-3.314 0-6-2.686-6-6s2.686-6 6-6c3.314 0 6 2.686 6 6s-2.686 6-6 6z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M10.482 10.068c-0.239-0.139-0.545-0.058-0.684 0.181-0.27 0.463-0.767 0.751-1.298 0.751h-2c-0.652 0-1.208-0.418-1.414-1h2.414c0.276 0 0.5-0.224 0.5-0.5s-0.224-0.5-0.5-0.5h-2.5v-1h2.5c0.276 0 0.5-0.224 0.5-0.5s-0.224-0.5-0.5-0.5h-2.414c0.206-0.582 0.762-1 1.414-1h2c0.531 0 1.028 0.288 1.298 0.751 0.139 0.239 0.445 0.32 0.684 0.181s0.32-0.445 0.181-0.684c-0.448-0.77-1.277-1.249-2.162-1.249h-2c-1.207 0-2.217 0.86-2.45 2h-0.55c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5h0.5v1h-0.5c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5h0.55c0.232 1.14 1.242 2 2.45 2h2c0.886 0 1.714-0.478 2.162-1.249 0.139-0.239 0.058-0.545-0.181-0.684z" + } + }] +}; +exports.coinEuro = coinEuro; +var coinPound = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7.5 1c-4.142 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5c4.142 0 7.5-3.358 7.5-7.5s-3.358-7.5-7.5-7.5zM7.5 14.5c-3.314 0-6-2.686-6-6s2.686-6 6-6c3.314 0 6 2.686 6 6s-2.686 6-6 6z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9.5 11h-3.5v-2h1.5c0.276 0 0.5-0.224 0.5-0.5s-0.224-0.5-0.5-0.5h-1.5v-0.5c0-0.827 0.673-1.5 1.5-1.5 0.534 0 1.032 0.288 1.3 0.75 0.138 0.239 0.444 0.321 0.683 0.182s0.321-0.444 0.182-0.683c-0.446-0.771-1.276-1.25-2.165-1.25-1.378 0-2.5 1.122-2.5 2.5v0.5h-0.5c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5h0.5v3h4.5c0.276 0 0.5-0.224 0.5-0.5s-0.224-0.5-0.5-0.5z" + } + }] +}; +exports.coinPound = coinPound; +var coinYen = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7.5 1c-4.142 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5c4.142 0 7.5-3.358 7.5-7.5s-3.358-7.5-7.5-7.5zM7.5 14.5c-3.314 0-6-2.686-6-6s2.686-6 6-6c3.314 0 6 2.686 6 6s-2.686 6-6 6z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9.5 9c0.276 0 0.5-0.224 0.5-0.5s-0.224-0.5-0.5-0.5h-1.066l1.482-2.223c0.153-0.23 0.091-0.54-0.139-0.693s-0.54-0.091-0.693 0.139l-1.584 2.376-1.584-2.376c-0.153-0.23-0.464-0.292-0.693-0.139s-0.292 0.464-0.139 0.693l1.482 2.223h-1.066c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5h1.5v1h-1.5c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5h1.5v1.5c0 0.276 0.224 0.5 0.5 0.5s0.5-0.224 0.5-0.5v-1.5h1.5c0.276 0 0.5-0.224 0.5-0.5s-0.224-0.5-0.5-0.5h-1.5v-1h1.5z" + } + }] +}; +exports.coinYen = coinYen; +var creditCard = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.5 2h-13c-0.825 0-1.5 0.675-1.5 1.5v9c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-9c0-0.825-0.675-1.5-1.5-1.5zM1.5 3h13c0.271 0 0.5 0.229 0.5 0.5v1.5h-14v-1.5c0-0.271 0.229-0.5 0.5-0.5zM14.5 13h-13c-0.271 0-0.5-0.229-0.5-0.5v-4.5h14v4.5c0 0.271-0.229 0.5-0.5 0.5zM2 10h1v2h-1zM4 10h1v2h-1zM6 10h1v2h-1z" + } + }] +}; +exports.creditCard = creditCard; +var calculator = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6 1h-5c-0.55 0-1 0.45-1 1v5c0 0.55 0.45 1 1 1h5c0.55 0 1-0.45 1-1v-5c0-0.55-0.45-1-1-1zM6 5h-5v-1h5v1zM14 1h-5c-0.55 0-1 0.45-1 1v13c0 0.55 0.45 1 1 1h5c0.55 0 1-0.45 1-1v-13c0-0.55-0.45-1-1-1zM14 10h-5v-1h5v1zM14 7h-5v-1h5v1zM6 9h-5c-0.55 0-1 0.45-1 1v5c0 0.55 0.45 1 1 1h5c0.55 0 1-0.45 1-1v-5c0-0.55-0.45-1-1-1zM6 13h-2v2h-1v-2h-2v-1h2v-2h1v2h2v1z" + } + }] +}; +exports.calculator = calculator; +var lifebuoy = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM5 8c0-1.657 1.343-3 3-3s3 1.343 3 3-1.343 3-3 3-3-1.343-3-3zM14.468 10.679v0l-2.772-1.148c0.196-0.472 0.304-0.989 0.304-1.531s-0.108-1.059-0.304-1.531l2.772-1.148c0.342 0.825 0.532 1.73 0.532 2.679s-0.189 1.854-0.532 2.679v0zM10.679 1.532v0 0l-1.148 2.772c-0.472-0.196-0.989-0.304-1.531-0.304s-1.059 0.108-1.531 0.304l-1.148-2.772c0.825-0.342 1.73-0.532 2.679-0.532s1.854 0.189 2.679 0.532zM1.532 5.321l2.772 1.148c-0.196 0.472-0.304 0.989-0.304 1.531s0.108 1.059 0.304 1.531l-2.772 1.148c-0.342-0.825-0.532-1.73-0.532-2.679s0.189-1.854 0.532-2.679zM5.321 14.468l1.148-2.772c0.472 0.196 0.989 0.304 1.531 0.304s1.059-0.108 1.531-0.304l1.148 2.772c-0.825 0.342-1.73 0.532-2.679 0.532s-1.854-0.189-2.679-0.532z" + } + }] +}; +exports.lifebuoy = lifebuoy; +var phone = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11 10c-1 1-1 2-2 2s-2-1-3-2-2-2-2-3 1-1 2-2-2-4-3-4-3 3-3 3c0 2 2.055 6.055 4 8s6 4 8 4c0 0 3-2 3-3s-3-4-4-3z" + } + }] +}; +exports.phone = phone; +var phoneHangUp = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.897 9c0.125 0.867 0.207 2.053-0.182 2.507-0.643 0.751-4.714 0.751-4.714-0.751 0-0.756 0.67-1.252 0.027-2.003-0.632-0.738-1.766-0.75-3.027-0.751s-2.394 0.012-3.027 0.751c-0.643 0.751 0.027 1.247 0.027 2.003 0 1.501-4.071 1.501-4.714 0.751-0.389-0.454-0.307-1.64-0.182-2.507 0.096-0.579 0.339-1.203 1.118-2 0-0 0-0 0-0 1.168-1.090 2.935-1.98 6.716-2v-0c0.021 0 0.042 0 0.063 0s0.041-0 0.063-0v0c3.781 0.019 5.548 0.91 6.716 2 0 0 0 0 0 0 0.778 0.797 1.022 1.421 1.118 2z" + } + }] +}; +exports.phoneHangUp = phoneHangUp; +var addressBook = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M3 0v16h12v-16h-12zM9 4.005c1.102 0 1.995 0.893 1.995 1.995s-0.893 1.995-1.995 1.995-1.995-0.893-1.995-1.995 0.893-1.995 1.995-1.995v0zM12 12h-6v-1c0-1.105 0.895-2 2-2v0h2c1.105 0 2 0.895 2 2v1z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M1 1h1.5v3h-1.5v-3z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M1 5h1.5v3h-1.5v-3z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M1 9h1.5v3h-1.5v-3z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M1 13h1.5v3h-1.5v-3z" + } + }] +}; +exports.addressBook = addressBook; +var envelop = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.5 2h-13c-0.825 0-1.5 0.675-1.5 1.5v10c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-10c0-0.825-0.675-1.5-1.5-1.5zM6.23 8.6l-4.23 3.295v-7.838l4.23 4.543zM2.756 4h10.488l-5.244 3.938-5.244-3.938zM6.395 8.777l1.605 1.723 1.605-1.723 3.29 4.223h-9.79l3.29-4.223zM9.77 8.6l4.23-4.543v7.838l-4.23-3.295z" + } + }] +}; +exports.envelop = envelop; +var pushpin = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8.5 0l-1.5 1.5 1.5 1.5-3.5 4h-3.5l2.75 2.75-4.25 5.635v0.615h0.615l5.635-4.25 2.75 2.75v-3.5l4-3.5 1.5 1.5 1.5-1.5-7.5-7.5zM7 8.5l-1-1 3.5-3.5 1 1-3.5 3.5z" + } + }] +}; +exports.pushpin = pushpin; +var location = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-2.761 0-5 2.239-5 5 0 5 5 11 5 11s5-6 5-11c0-2.761-2.239-5-5-5zM8 8c-1.657 0-3-1.343-3-3s1.343-3 3-3 3 1.343 3 3-1.343 3-3 3z" + } + }] +}; +exports.location = location; +var location2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-2.761 0-5 2.239-5 5 0 5 5 11 5 11s5-6 5-11c0-2.761-2.239-5-5-5zM8 8.063c-1.691 0-3.063-1.371-3.063-3.063s1.371-3.063 3.063-3.063 3.063 1.371 3.063 3.063-1.371 3.063-3.063 3.063zM6.063 5c0-1.070 0.867-1.938 1.938-1.938s1.938 0.867 1.938 1.938c0 1.070-0.867 1.938-1.938 1.938s-1.938-0.867-1.938-1.938z" + } + }] +}; +exports.location2 = location2; +var compass = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8.5 16c-0.036 0-0.072-0.004-0.108-0.012-0.229-0.051-0.392-0.254-0.392-0.488v-7.5h-7.5c-0.234 0-0.437-0.163-0.488-0.392s0.064-0.462 0.277-0.561l15-7c0.191-0.089 0.416-0.049 0.565 0.1s0.188 0.374 0.1 0.565l-7 15c-0.083 0.179-0.262 0.289-0.453 0.289zM2.754 7h5.746c0.276 0 0.5 0.224 0.5 0.5v5.746l5.465-11.712-11.712 5.465z" + } + }] +}; +exports.compass = compass; +var compass2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM1.5 8c0-3.59 2.91-6.5 6.5-6.5 1.712 0 3.269 0.662 4.43 1.744l-6.43 2.756-2.756 6.43c-1.082-1.161-1.744-2.718-1.744-4.43zM9.143 9.143l-4.001 1.715 1.715-4.001 2.286 2.286zM8 14.5c-1.712 0-3.269-0.662-4.43-1.744l6.43-2.756 2.756-6.43c1.082 1.161 1.744 2.718 1.744 4.43 0 3.59-2.91 6.5-6.5 6.5z" + } + }] +}; +exports.compass2 = compass2; +var map = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 3l5-2v12l-5 2z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6 0.5l5 3v11.5l-5-2.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12 3.5l4-3v12l-4 3z" + } + }] +}; +exports.map = map; +var map2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M10.5 3l-5-2-5.5 2v12l5.5-2 5 2 5.5-2v-12l-5.5 2zM6 2.277l4 1.6v9.846l-4-1.6v-9.846zM1 3.7l4-1.455v9.872l-4 1.454v-9.872zM15 12.3l-4 1.455v-9.872l4-1.455v9.872z" + } + }] +}; +exports.map2 = map2; +var history = { + "viewBox": "0 0 17 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M10 1c3.866 0 7 3.134 7 7s-3.134 7-7 7v-1.5c1.469 0 2.85-0.572 3.889-1.611s1.611-2.42 1.611-3.889c0-1.469-0.572-2.85-1.611-3.889s-2.42-1.611-3.889-1.611c-1.469 0-2.85 0.572-3.889 1.611-0.799 0.799-1.322 1.801-1.52 2.889h2.909l-3.5 4-3.5-4h2.571c0.485-3.392 3.402-6 6.929-6zM13 7v2h-4v-5h2v3z" + } + }] +}; +exports.history = history; +var clock = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M10.293 11.707l-3.293-3.293v-4.414h2v3.586l2.707 2.707zM8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM8 14c-3.314 0-6-2.686-6-6s2.686-6 6-6c3.314 0 6 2.686 6 6s-2.686 6-6 6z" + } + }] +}; +exports.clock = clock; +var clock2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM10.293 11.707l-3.293-3.293v-4.414h2v3.586l2.707 2.707-1.414 1.414z" + } + }] +}; +exports.clock2 = clock2; +var alarm = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 2c-3.866 0-7 3.134-7 7s3.134 7 7 7 7-3.134 7-7-3.134-7-7-7zM8 14.625c-3.107 0-5.625-2.518-5.625-5.625s2.518-5.625 5.625-5.625c3.107 0 5.625 2.518 5.625 5.625s-2.518 5.625-5.625 5.625zM14.606 4.487c0.251-0.438 0.394-0.946 0.394-1.487 0-1.657-1.343-3-3-3-0.966 0-1.825 0.457-2.374 1.166 2.061 0.426 3.831 1.644 4.98 3.322v0zM6.374 1.166c-0.549-0.709-1.408-1.166-2.374-1.166-1.657 0-3 1.343-3 3 0 0.541 0.143 1.049 0.394 1.487 1.148-1.678 2.919-2.896 4.98-3.322z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 9v-4h-1v5h4v-1z" + } + }] +}; +exports.alarm = alarm; +var bell = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16.023 12.5c0-4.5-4-3.5-4-7 0-0.29-0.028-0.538-0.079-0.749-0.263-1.766-1.44-3.183-2.965-3.615 0.014-0.062 0.021-0.125 0.021-0.191 0-0.52-0.45-0.945-1-0.945s-1 0.425-1 0.945c0 0.065 0.007 0.129 0.021 0.191-1.71 0.484-2.983 2.208-3.020 4.273-0.001 0.030-0.001 0.060-0.001 0.091 0 3.5-4 2.5-4 7 0 1.191 2.665 2.187 6.234 2.439 0.336 0.631 1.001 1.061 1.766 1.061s1.43-0.43 1.766-1.061c3.568-0.251 6.234-1.248 6.234-2.439 0-0.004-0-0.007-0-0.011l0.024 0.011zM12.91 13.345c-0.847 0.226-1.846 0.389-2.918 0.479-0.089-1.022-0.947-1.824-1.992-1.824s-1.903 0.802-1.992 1.824c-1.072-0.090-2.071-0.253-2.918-0.479-1.166-0.311-1.724-0.659-1.928-0.845 0.204-0.186 0.762-0.534 1.928-0.845 1.356-0.362 3.1-0.561 4.91-0.561s3.554 0.199 4.91 0.561c1.166 0.311 1.724 0.659 1.928 0.845-0.204 0.186-0.762 0.534-1.928 0.845z" + } + }] +}; +exports.bell = bell; +var stopwatch = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 3.019v-1.019h2v-1c0-0.552-0.448-1-1-1h-3c-0.552 0-1 0.448-1 1v1h2v1.019c-3.356 0.255-6 3.059-6 6.481 0 3.59 2.91 6.5 6.5 6.5s6.5-2.91 6.5-6.5c0-3.422-2.644-6.226-6-6.481zM11.036 13.036c-0.944 0.944-2.2 1.464-3.536 1.464s-2.591-0.52-3.536-1.464c-0.944-0.944-1.464-2.2-1.464-3.536s0.52-2.591 1.464-3.536c0.907-0.907 2.101-1.422 3.377-1.462l-0.339 4.907c-0.029 0.411 0.195 0.591 0.497 0.591s0.527-0.18 0.497-0.591l-0.339-4.907c1.276 0.040 2.47 0.555 3.377 1.462 0.944 0.944 1.464 2.2 1.464 3.536s-0.52 2.591-1.464 3.536z" + } + }] +}; +exports.stopwatch = stopwatch; +var calendar = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5 6h2v2h-2zM8 6h2v2h-2zM11 6h2v2h-2zM2 12h2v2h-2zM5 12h2v2h-2zM8 12h2v2h-2zM5 9h2v2h-2zM8 9h2v2h-2zM11 9h2v2h-2zM2 9h2v2h-2zM13 0v1h-2v-1h-7v1h-2v-1h-2v16h15v-16h-2zM14 15h-13v-11h13v11z" + } + }] +}; +exports.calendar = calendar; +var printer = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4 1h8v2h-8v-2z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15 4h-14c-0.55 0-1 0.45-1 1v5c0 0.55 0.45 1 1 1h3v4h8v-4h3c0.55 0 1-0.45 1-1v-5c0-0.55-0.45-1-1-1zM2 7c-0.552 0-1-0.448-1-1s0.448-1 1-1 1 0.448 1 1-0.448 1-1 1zM11 14h-6v-5h6v5z" + } + }] +}; +exports.printer = printer; +var keyboard = { + "viewBox": "0 0 18 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M17 2h-16c-0.55 0-1 0.45-1 1v10c0 0.55 0.45 1 1 1h16c0.55 0 1-0.45 1-1v-10c0-0.55-0.45-1-1-1zM10 4h2v2h-2v-2zM13 7v2h-2v-2h2zM7 4h2v2h-2v-2zM10 7v2h-2v-2h2zM4 4h2v2h-2v-2zM7 7v2h-2v-2h2zM2 4h1v2h-1v-2zM2 7h2v2h-2v-2zM3 12h-1v-2h1v2zM12 12h-8v-2h8v2zM16 12h-3v-2h3v2zM16 9h-2v-2h2v2zM16 6h-3v-2h3v2z" + } + }] +}; +exports.keyboard = keyboard; +var display = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 1v10h16v-10h-16zM15 10h-14v-8h14v8zM10.5 12h-5l-0.5 2-1 1h8l-1-1z" + } + }] +}; +exports.display = display; +var laptop = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14 11v-8c0-0.55-0.45-1-1-1h-10c-0.55 0-1 0.45-1 1v8h-2v3h16v-3h-2zM10 13h-4v-1h4v1zM13 11h-10v-7.998c0.001-0.001 0.001-0.001 0.002-0.002h9.996c0.001 0.001 0.001 0.001 0.002 0.002v7.998z" + } + }] +}; +exports.laptop = laptop; +var mobile = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.5 0h-7c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h7c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM6 0.75h4v0.5h-4v-0.5zM8 15c-0.552 0-1-0.448-1-1s0.448-1 1-1 1 0.448 1 1-0.448 1-1 1zM12 12h-8v-10h8v10z" + } + }] +}; +exports.mobile = mobile; +var mobile2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12 0h-9c-0.55 0-1 0.45-1 1v14c0 0.55 0.45 1 1 1h9c0.55 0 1-0.45 1-1v-14c0-0.55-0.45-1-1-1zM7.5 15.278c-0.43 0-0.778-0.348-0.778-0.778s0.348-0.778 0.778-0.778 0.778 0.348 0.778 0.778-0.348 0.778-0.778 0.778zM12 13h-9v-11h9v11z" + } + }] +}; +exports.mobile2 = mobile2; +var tablet = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12.5 0h-10c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h10c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM7.5 15.5c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5 0.5 0.224 0.5 0.5-0.224 0.5-0.5 0.5zM12 14h-9v-12h9v12z" + } + }] +}; +exports.tablet = tablet; +var tv = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.331 4.502c-1.388-0.199-2.865-0.344-4.407-0.425l2.576-2.576-1-1-3.509 3.509c-0.328-0.006-0.659-0.009-0.991-0.009v0l-4-4-1 1 3.034 3.034c-1.889 0.066-3.693 0.227-5.365 0.467-0.43 1.683-0.669 3.543-0.669 5.498s0.239 3.815 0.669 5.498c2.244 0.323 4.724 0.502 7.331 0.502s5.087-0.179 7.331-0.502c0.43-1.683 0.669-3.543 0.669-5.498s-0.239-3.815-0.669-5.498zM13.498 13.666c-1.683 0.215-3.543 0.334-5.498 0.334s-3.815-0.119-5.498-0.334c-0.323-1.122-0.502-2.362-0.502-3.666s0.179-2.543 0.502-3.666c1.683-0.215 3.543-0.334 5.498-0.334s3.815 0.119 5.498 0.334c0.323 1.122 0.502 2.362 0.502 3.666s-0.179 2.543-0.502 3.666z" + } + }] +}; +exports.tv = tv; +var drawer = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.89 10.188l-4-5c-0.095-0.119-0.239-0.188-0.39-0.188h-7c-0.152 0-0.296 0.069-0.39 0.188l-4 5c-0.071 0.089-0.11 0.199-0.11 0.312v4.5c0 0.552 0.448 1 1 1h14c0.552 0 1-0.448 1-1v-4.5c0-0.114-0.039-0.224-0.11-0.312zM15 11h-3.5l-2 2h-3l-2-2h-3.5v-0.325l3.74-4.675h6.519l3.74 4.675v0.325z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.5 8h-7c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5h7c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12.5 10h-9c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5h9c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5z" + } + }] +}; +exports.drawer = drawer; +var drawer2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.89 10.188l-4-5c-0.095-0.119-0.239-0.188-0.39-0.188h-7c-0.152 0-0.296 0.069-0.39 0.188l-4 5c-0.071 0.089-0.11 0.199-0.11 0.312v4.5c0 0.552 0.448 1 1 1h14c0.552 0 1-0.448 1-1v-4.5c0-0.114-0.039-0.224-0.11-0.312zM15 11h-3.5l-2 2h-3l-2-2h-3.5v-0.325l3.74-4.675h6.519l3.74 4.675v0.325z" + } + }] +}; +exports.drawer2 = drawer2; +var boxAdd = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13 1h-10l-3 3v10.5c0 0.276 0.224 0.5 0.5 0.5h15c0.276 0 0.5-0.224 0.5-0.5v-10.5l-3-3zM8 13l-5-4h3v-3h4v3h3l-5 4zM2.414 3l1-1h9.172l1 1h-11.172z" + } + }] +}; +exports.boxAdd = boxAdd; +var boxRemove = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13 1h-10l-3 3v10.5c0 0.276 0.224 0.5 0.5 0.5h15c0.276 0 0.5-0.224 0.5-0.5v-10.5l-3-3zM10 10v3h-4v-3h-3l5-4 5 4h-3zM2.414 3l1-1h9.171l1 1h-11.171z" + } + }] +}; +exports.boxRemove = boxRemove; +var download = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 9l4-4h-3v-4h-2v4h-3zM11.636 7.364l-1.121 1.121 4.064 1.515-6.579 2.453-6.579-2.453 4.064-1.515-1.121-1.121-4.364 1.636v4l8 3 8-3v-4z" + } + }] +}; +exports.download = download; +var upload = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7 9h2v-4h3l-4-4-4 4h3zM10 6.75v1.542l4.579 1.708-6.579 2.453-6.579-2.453 4.579-1.708v-1.542l-6 2.25v4l8 3 8-3v-4z" + } + }] +}; +exports.upload = upload; +var floppyDisk = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14 0h-14v16h16v-14l-2-2zM8 2h2v4h-2v-4zM14 14h-12v-12h1v5h9v-5h1.172l0.828 0.828v11.172z" + } + }] +}; +exports.floppyDisk = floppyDisk; +var drive = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M3 14h10c1.657 0 3-1.343 3-3h-16c0 1.657 1.343 3 3 3zM13 12h1v1h-1v-1zM15 2h-14l-1 8h16z" + } + }] +}; +exports.drive = drive; +var database = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 1.119-8 2.5v2c0 1.381 3.582 2.5 8 2.5s8-1.119 8-2.5v-2c0-1.381-3.582-2.5-8-2.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 8.5c-4.418 0-8-1.119-8-2.5v3c0 1.381 3.582 2.5 8 2.5s8-1.119 8-2.5v-3c0 1.381-3.582 2.5-8 2.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 13c-4.418 0-8-1.119-8-2.5v3c0 1.381 3.582 2.5 8 2.5s8-1.119 8-2.5v-3c0 1.381-3.582 2.5-8 2.5z" + } + }] +}; +exports.database = database; +var undo = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 1c-2.209 0-4.209 0.896-5.657 2.343l-2.343-2.343v6h6l-2.243-2.243c1.086-1.086 2.586-1.757 4.243-1.757 3.314 0 6 2.686 6 6 0 1.792-0.786 3.401-2.032 4.5l1.323 1.5c1.661-1.466 2.709-3.611 2.709-6 0-4.418-3.582-8-8-8z" + } + }] +}; +exports.undo = undo; +var redo = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 9c0 2.389 1.048 4.534 2.709 6l1.323-1.5c-1.246-1.099-2.031-2.708-2.031-4.5 0-3.314 2.686-6 6-6 1.657 0 3.157 0.672 4.243 1.757l-2.243 2.243h6v-6l-2.343 2.343c-1.448-1.448-3.448-2.343-5.657-2.343-4.418 0-8 3.582-8 8z" + } + }] +}; +exports.redo = redo; +var undo2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.904 16c1.777-3.219 2.076-8.13-4.904-7.966v3.966l-6-6 6-6v3.881c8.359-0.218 9.29 7.378 4.904 12.119z" + } + }] +}; +exports.undo2 = undo2; +var redo2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9 3.881v-3.881l6 6-6 6v-3.966c-6.98-0.164-6.681 4.747-4.904 7.966-4.386-4.741-3.455-12.337 4.904-12.119z" + } + }] +}; +exports.redo2 = redo2; +var forward = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4.096 0c-1.777 3.219-2.076 8.13 4.904 7.966v-3.966l6 6-6 6v-3.881c-8.359 0.218-9.29-7.378-4.904-12.119z" + } + }] +}; +exports.forward = forward; +var reply = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7 12.119v3.881l-6-6 6-6v3.966c6.98 0.164 6.681-4.747 4.904-7.966 4.386 4.741 3.455 12.337-4.904 12.119z" + } + }] +}; +exports.reply = reply; +var bubble = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 1c4.418 0 8 2.91 8 6.5s-3.582 6.5-8 6.5c-0.424 0-0.841-0.027-1.247-0.079-1.718 1.718-3.77 2.027-5.753 2.072v-0.421c1.071-0.525 2-1.48 2-2.572 0-0.152-0.012-0.302-0.034-0.448-1.809-1.192-2.966-3.012-2.966-5.052 0-3.59 3.582-6.5 8-6.5z" + } + }] +}; +exports.bubble = bubble; +var bubbles = { + "viewBox": "0 0 18 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M17 14.081c0 0.711 0.407 1.327 1 1.628v0.249c-0.166 0.023-0.335 0.035-0.508 0.035-1.063 0-2.021-0.446-2.699-1.16-0.41 0.109-0.844 0.168-1.293 0.168-2.485 0-4.5-1.791-4.5-4s2.015-4 4.5-4c2.485 0 4.5 1.791 4.5 4 0 0.865-0.309 1.665-0.834 2.32-0.107 0.232-0.166 0.489-0.166 0.761zM8 0c4.351 0 7.89 2.822 7.997 6.336-0.768-0.343-1.619-0.524-2.497-0.524-1.493 0-2.903 0.523-3.971 1.472-1.107 0.984-1.717 2.304-1.717 3.716 0 0.698 0.149 1.373 0.433 1.997-0.082 0.002-0.164 0.003-0.246 0.003-0.424 0-0.841-0.027-1.247-0.079-1.718 1.718-3.77 2.027-5.753 2.072v-0.421c1.071-0.525 2-1.48 2-2.572 0-0.152-0.012-0.302-0.034-0.448-1.809-1.192-2.966-3.012-2.966-5.052 0-3.59 3.582-6.5 8-6.5z" + } + }] +}; +exports.bubbles = bubbles; +var bubbles2 = { + "viewBox": "0 0 18 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7.5 0v0c4.142 0 7.5 2.717 7.5 6.069s-3.358 6.069-7.5 6.069c-0.398 0-0.788-0.025-1.169-0.074-1.611 1.605-3.471 1.892-5.331 1.935v-0.393c1.004-0.49 1.813-1.382 1.813-2.402 0-0.142-0.011-0.282-0.032-0.419-1.696-1.113-2.781-2.812-2.781-4.717 0-3.352 3.358-6.069 7.5-6.069zM15.563 13.604c0 0.874 0.567 1.639 1.438 2.059v0.337c-1.611-0.036-3.090-0.283-4.487-1.658-0.33 0.041-0.669 0.063-1.013 0.063-1.492 0-2.866-0.402-3.963-1.079 2.261-0.008 4.395-0.732 6.013-2.042 0.816-0.66 1.459-1.435 1.913-2.302 0.481-0.92 0.724-1.9 0.724-2.913 0-0.163-0.007-0.326-0.020-0.487 1.134 0.936 1.832 2.213 1.832 3.62 0 1.633-0.94 3.089-2.41 4.043-0.018 0.117-0.027 0.237-0.027 0.359z" + } + }] +}; +exports.bubbles2 = bubbles2; +var bubble2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 3c-0.858 0-1.687 0.135-2.464 0.402-0.73 0.251-1.38 0.605-1.932 1.054-1.035 0.841-1.604 1.922-1.604 3.044 0 0.63 0.175 1.24 0.52 1.815 0.356 0.592 0.89 1.134 1.547 1.566 0.474 0.312 0.793 0.812 0.878 1.373 0.028 0.187 0.046 0.376 0.053 0.564 0.117-0.097 0.23-0.201 0.342-0.312 0.377-0.377 0.887-0.586 1.414-0.586 0.084 0 0.168 0.005 0.252 0.016 0.328 0.042 0.662 0.063 0.995 0.063 0.858 0 1.687-0.135 2.464-0.402 0.73-0.251 1.38-0.605 1.932-1.054 1.035-0.841 1.604-1.922 1.604-3.044s-0.57-2.203-1.604-3.044c-0.552-0.448-1.202-0.803-1.932-1.054-0.777-0.267-1.606-0.402-2.464-0.402zM8 1v0c4.418 0 8 2.91 8 6.5s-3.582 6.5-8 6.5c-0.424 0-0.841-0.027-1.247-0.079-1.718 1.718-3.77 2.027-5.753 2.072v-0.421c1.071-0.525 2-1.48 2-2.572 0-0.152-0.012-0.302-0.034-0.448-1.809-1.192-2.966-3.012-2.966-5.052 0-3.59 3.582-6.5 8-6.5z" + } + }] +}; +exports.bubble2 = bubble2; +var bubbles3 = { + "viewBox": "0 0 18 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M17 14.081c0 0.711 0.407 1.327 1 1.628v0.249c-0.166 0.023-0.335 0.035-0.508 0.035-1.063 0-2.021-0.446-2.699-1.16-0.41 0.109-0.844 0.168-1.293 0.168-2.485 0-4.5-1.791-4.5-4s2.015-4 4.5-4c2.485 0 4.5 1.791 4.5 4 0 0.865-0.309 1.665-0.834 2.32-0.107 0.232-0.166 0.489-0.166 0.761zM3.604 3.456c-1.035 0.841-1.604 1.922-1.604 3.044 0 0.63 0.175 1.24 0.52 1.815 0.356 0.592 0.89 1.134 1.547 1.566 0.474 0.312 0.793 0.812 0.878 1.373 0.028 0.187 0.046 0.376 0.053 0.564 0.117-0.097 0.23-0.201 0.342-0.312 0.377-0.377 0.887-0.586 1.414-0.586 0.084 0 0.168 0.005 0.252 0.016 0.327 0.042 0.662 0.063 0.994 0.063v2c-0.424-0-0.84-0.027-1.246-0.079-1.718 1.718-3.77 2.027-5.753 2.072v-0.421c1.071-0.525 2-1.48 2-2.572 0-0.152-0.012-0.302-0.034-0.448-1.809-1.192-2.966-3.012-2.966-5.052 0-3.59 3.582-6.5 8-6.5 4.351 0 7.89 2.822 7.997 6.336-0.642-0.286-1.341-0.46-2.067-0.509-0.18-0.876-0.709-1.7-1.535-2.371-0.552-0.448-1.202-0.803-1.932-1.054-0.777-0.267-1.606-0.402-2.464-0.402s-1.687 0.135-2.464 0.402c-0.73 0.251-1.38 0.605-1.932 1.054z" + } + }] +}; +exports.bubbles3 = bubbles3; +var bubbles4 = { + "viewBox": "0 0 18 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7.5 2c-0.792 0-1.556 0.124-2.272 0.369-0.671 0.23-1.267 0.554-1.773 0.963-0.938 0.759-1.455 1.731-1.455 2.737 0 0.562 0.157 1.109 0.467 1.623 0.323 0.537 0.811 1.028 1.41 1.421 0.476 0.312 0.796 0.812 0.881 1.374 0.014 0.094 0.025 0.188 0.034 0.282 0.043-0.039 0.085-0.080 0.127-0.122 0.377-0.376 0.886-0.583 1.411-0.583 0.084 0 0.167 0.005 0.251 0.016 0.303 0.038 0.611 0.058 0.918 0.058 0.792 0 1.556-0.124 2.272-0.369 0.671-0.23 1.267-0.554 1.774-0.963 0.938-0.759 1.455-1.731 1.455-2.737s-0.517-1.978-1.455-2.737c-0.506-0.41-1.103-0.734-1.774-0.963-0.716-0.245-1.48-0.369-2.272-0.369zM7.5 0v0c4.142 0 7.5 2.717 7.5 6.069s-3.358 6.069-7.5 6.069c-0.398 0-0.788-0.025-1.169-0.074-1.611 1.605-3.471 1.892-5.331 1.935v-0.393c1.004-0.49 1.813-1.382 1.813-2.402 0-0.142-0.011-0.282-0.032-0.419-1.696-1.113-2.781-2.812-2.781-4.717 0-3.352 3.358-6.069 7.5-6.069zM15.563 13.604c0 0.874 0.567 1.639 1.438 2.059v0.337c-1.611-0.036-3.090-0.283-4.487-1.658-0.33 0.041-0.669 0.063-1.013 0.063-1.492 0-2.866-0.402-3.963-1.079 2.261-0.008 4.395-0.732 6.013-2.042 0.816-0.66 1.459-1.435 1.913-2.302 0.481-0.92 0.724-1.9 0.724-2.913 0-0.163-0.007-0.326-0.020-0.487 1.134 0.936 1.832 2.213 1.832 3.62 0 1.633-0.94 3.089-2.41 4.043-0.018 0.117-0.027 0.237-0.027 0.359z" + } + }] +}; +exports.bubbles4 = bubbles4; +var user = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9 11.041v-0.825c1.102-0.621 2-2.168 2-3.716 0-2.485 0-4.5-3-4.5s-3 2.015-3 4.5c0 1.548 0.898 3.095 2 3.716v0.825c-3.392 0.277-6 1.944-6 3.959h14c0-2.015-2.608-3.682-6-3.959z" + } + }] +}; +exports.user = user; +var users = { + "viewBox": "0 0 18 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12 12.041v-0.825c1.102-0.621 2-2.168 2-3.716 0-2.485 0-4.5-3-4.5s-3 2.015-3 4.5c0 1.548 0.898 3.095 2 3.716v0.825c-3.392 0.277-6 1.944-6 3.959h14c0-2.015-2.608-3.682-6-3.959z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5.112 12.427c0.864-0.565 1.939-0.994 3.122-1.256-0.235-0.278-0.449-0.588-0.633-0.922-0.475-0.863-0.726-1.813-0.726-2.748 0-1.344 0-2.614 0.478-3.653 0.464-1.008 1.299-1.633 2.488-1.867-0.264-1.195-0.968-1.98-2.841-1.98-3 0-3 2.015-3 4.5 0 1.548 0.898 3.095 2 3.716v0.825c-3.392 0.277-6 1.944-6 3.959h4.359c0.227-0.202 0.478-0.393 0.753-0.573z" + } + }] +}; +exports.users = users; +var userPlus = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6 11.5c0-2.363 1.498-4.383 3.594-5.159 0.254-0.571 0.406-1.206 0.406-1.841 0-2.485 0-4.5-3-4.5s-3 2.015-3 4.5c0 1.548 0.898 3.095 2 3.716v0.825c-3.392 0.277-6 1.944-6 3.959h6.208c-0.135-0.477-0.208-0.98-0.208-1.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.5 7c-2.485 0-4.5 2.015-4.5 4.5s2.015 4.5 4.5 4.5c2.485 0 4.5-2.015 4.5-4.5s-2.015-4.5-4.5-4.5zM14 12h-2v2h-1v-2h-2v-1h2v-2h1v2h2v1z" + } + }] +}; +exports.userPlus = userPlus; +var userMinus = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6 11.5c0-2.363 1.498-4.383 3.594-5.159 0.254-0.571 0.406-1.206 0.406-1.841 0-2.485 0-4.5-3-4.5s-3 2.015-3 4.5c0 1.548 0.898 3.095 2 3.716v0.825c-3.392 0.277-6 1.944-6 3.959h6.208c-0.135-0.477-0.208-0.98-0.208-1.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.5 7c-2.485 0-4.5 2.015-4.5 4.5s2.015 4.5 4.5 4.5c2.485 0 4.5-2.015 4.5-4.5s-2.015-4.5-4.5-4.5zM14 12h-5v-1h5v1z" + } + }] +}; +exports.userMinus = userMinus; +var userCheck = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15 9.5l-4.5 4.5-1.5-1.5-1 1 2.5 2.5 5.5-5.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7 12h5v-1.799c-1.050-0.613-2.442-1.033-4-1.16v-0.825c1.102-0.621 2-2.168 2-3.716 0-2.485 0-4.5-3-4.5s-3 2.015-3 4.5c0 1.548 0.898 3.095 2 3.716v0.825c-3.392 0.277-6 1.944-6 3.959h7v-1z" + } + }] +}; +exports.userCheck = userCheck; +var userTie = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5 3c0-1.657 1.343-3 3-3s3 1.343 3 3c0 1.657-1.343 3-3 3s-3-1.343-3-3zM12.001 7h-0.553l-3.111 6.316 1.163-5.816-1.5-1.5-1.5 1.5 1.163 5.816-3.111-6.316h-0.554c-1.999 0-1.999 1.344-1.999 3v5h12v-5c0-1.656 0-3-1.999-3z" + } + }] +}; +exports.userTie = userTie; +var quotesLeft = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M3.516 7c1.933 0 3.5 1.567 3.5 3.5s-1.567 3.5-3.5 3.5-3.5-1.567-3.5-3.5l-0.016-0.5c0-3.866 3.134-7 7-7v2c-1.336 0-2.591 0.52-3.536 1.464-0.182 0.182-0.348 0.375-0.497 0.578 0.179-0.028 0.362-0.043 0.548-0.043zM12.516 7c1.933 0 3.5 1.567 3.5 3.5s-1.567 3.5-3.5 3.5-3.5-1.567-3.5-3.5l-0.016-0.5c0-3.866 3.134-7 7-7v2c-1.336 0-2.591 0.52-3.536 1.464-0.182 0.182-0.348 0.375-0.497 0.578 0.179-0.028 0.362-0.043 0.549-0.043z" + } + }] +}; +exports.quotesLeft = quotesLeft; +var quotesRight = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12.5 10c-1.933 0-3.5-1.567-3.5-3.5s1.567-3.5 3.5-3.5 3.5 1.567 3.5 3.5l0.016 0.5c0 3.866-3.134 7-7 7v-2c1.336 0 2.591-0.52 3.536-1.464 0.182-0.182 0.348-0.375 0.497-0.578-0.179 0.028-0.362 0.043-0.549 0.043zM3.5 10c-1.933 0-3.5-1.567-3.5-3.5s1.567-3.5 3.5-3.5 3.5 1.567 3.5 3.5l0.016 0.5c0 3.866-3.134 7-7 7v-2c1.336 0 2.591-0.52 3.536-1.464 0.182-0.182 0.348-0.375 0.497-0.578-0.179 0.028-0.362 0.043-0.549 0.043z" + } + }] +}; +exports.quotesRight = quotesRight; +var hourGlass = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.39 8c2.152-1.365 3.61-3.988 3.61-7 0-0.339-0.019-0.672-0.054-1h-13.891c-0.036 0.328-0.054 0.661-0.054 1 0 3.012 1.457 5.635 3.609 7-2.152 1.365-3.609 3.988-3.609 7 0 0.339 0.019 0.672 0.054 1h13.891c0.036-0.328 0.054-0.661 0.054-1 0-3.012-1.457-5.635-3.609-7zM2.5 15c0-2.921 1.253-5.397 3.5-6.214v-1.572c-2.247-0.817-3.5-3.294-3.5-6.214v0h11c0 2.921-1.253 5.397-3.5 6.214v1.572c2.247 0.817 3.5 3.294 3.5 6.214h-11zM9.682 10.462c-1.12-0.635-1.181-1.459-1.182-1.959v-1.004c0-0.5 0.059-1.327 1.184-1.963 0.602-0.349 1.122-0.88 1.516-1.537h-6.4c0.395 0.657 0.916 1.188 1.518 1.538 1.12 0.635 1.181 1.459 1.182 1.959v1.004c0 0.5-0.059 1.327-1.184 1.963-1.135 0.659-1.98 1.964-2.236 3.537h7.839c-0.256-1.574-1.102-2.879-2.238-3.538z" + } + }] +}; +exports.hourGlass = hourGlass; +var spinner = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6 2c0-1.105 0.895-2 2-2s2 0.895 2 2c0 1.105-0.895 2-2 2s-2-0.895-2-2zM10.243 3.757c0-1.105 0.895-2 2-2s2 0.895 2 2c0 1.105-0.895 2-2 2s-2-0.895-2-2zM13 8c0-0.552 0.448-1 1-1s1 0.448 1 1c0 0.552-0.448 1-1 1s-1-0.448-1-1zM11.243 12.243c0-0.552 0.448-1 1-1s1 0.448 1 1c0 0.552-0.448 1-1 1s-1-0.448-1-1zM7 14c0 0 0 0 0 0 0-0.552 0.448-1 1-1s1 0.448 1 1c0 0 0 0 0 0 0 0.552-0.448 1-1 1s-1-0.448-1-1zM2.757 12.243c0 0 0 0 0 0 0-0.552 0.448-1 1-1s1 0.448 1 1c0 0 0 0 0 0 0 0.552-0.448 1-1 1s-1-0.448-1-1zM2.257 3.757c0 0 0 0 0 0 0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5c0 0 0 0 0 0 0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5zM0.875 8c0-0.621 0.504-1.125 1.125-1.125s1.125 0.504 1.125 1.125c0 0.621-0.504 1.125-1.125 1.125s-1.125-0.504-1.125-1.125z" + } + }] +}; +exports.spinner = spinner; +var spinner2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16 8c-0.020-1.045-0.247-2.086-0.665-3.038-0.417-0.953-1.023-1.817-1.766-2.53s-1.624-1.278-2.578-1.651c-0.953-0.374-1.978-0.552-2.991-0.531-1.013 0.020-2.021 0.24-2.943 0.646-0.923 0.405-1.758 0.992-2.449 1.712s-1.237 1.574-1.597 2.497c-0.361 0.923-0.533 1.914-0.512 2.895 0.020 0.981 0.234 1.955 0.627 2.847 0.392 0.892 0.961 1.7 1.658 2.368s1.523 1.195 2.416 1.543c0.892 0.348 1.851 0.514 2.799 0.493 0.949-0.020 1.89-0.227 2.751-0.608 0.862-0.379 1.642-0.929 2.287-1.604s1.154-1.472 1.488-2.335c0.204-0.523 0.342-1.069 0.415-1.622 0.019 0.001 0.039 0.002 0.059 0.002 0.552 0 1-0.448 1-1 0-0.028-0.001-0.056-0.004-0.083h0.004zM14.411 10.655c-0.367 0.831-0.898 1.584-1.55 2.206s-1.422 1.112-2.254 1.434c-0.832 0.323-1.723 0.476-2.608 0.454-0.884-0.020-1.759-0.215-2.56-0.57-0.801-0.354-1.526-0.867-2.125-1.495s-1.071-1.371-1.38-2.173c-0.31-0.801-0.457-1.66-0.435-2.512s0.208-1.694 0.551-2.464c0.342-0.77 0.836-1.468 1.441-2.044s1.321-1.029 2.092-1.326c0.771-0.298 1.596-0.438 2.416-0.416s1.629 0.202 2.368 0.532c0.74 0.329 1.41 0.805 1.963 1.387s0.988 1.27 1.272 2.011c0.285 0.74 0.418 1.532 0.397 2.32h0.004c-0.002 0.027-0.004 0.055-0.004 0.083 0 0.516 0.39 0.94 0.892 0.994-0.097 0.544-0.258 1.075-0.481 1.578z" + } + }] +}; +exports.spinner2 = spinner2; +var spinner3 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 4.736c-0.515 0-0.933-0.418-0.933-0.933v-2.798c0-0.515 0.418-0.933 0.933-0.933s0.933 0.418 0.933 0.933v2.798c0 0.515-0.418 0.933-0.933 0.933z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 15.577c-0.322 0-0.583-0.261-0.583-0.583v-2.798c0-0.322 0.261-0.583 0.583-0.583s0.583 0.261 0.583 0.583v2.798c0 0.322-0.261 0.583-0.583 0.583z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5.902 5.24c-0.302 0-0.596-0.157-0.758-0.437l-1.399-2.423c-0.241-0.418-0.098-0.953 0.32-1.194s0.953-0.098 1.194 0.32l1.399 2.423c0.241 0.418 0.098 0.953-0.32 1.194-0.138 0.079-0.288 0.117-0.436 0.117z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.498 14.582c-0.181 0-0.358-0.094-0.455-0.262l-1.399-2.423c-0.145-0.251-0.059-0.572 0.192-0.717s0.572-0.059 0.717 0.192l1.399 2.423c0.145 0.251 0.059 0.572-0.192 0.717-0.083 0.048-0.173 0.070-0.262 0.070z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4.365 6.718c-0.138 0-0.279-0.035-0.407-0.109l-2.423-1.399c-0.39-0.225-0.524-0.724-0.299-1.115s0.724-0.524 1.115-0.299l2.423 1.399c0.39 0.225 0.524 0.724 0.299 1.115-0.151 0.262-0.425 0.408-0.707 0.408z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.057 11.964c-0.079 0-0.159-0.020-0.233-0.063l-2.423-1.399c-0.223-0.129-0.299-0.414-0.171-0.637s0.414-0.299 0.637-0.171l2.423 1.399c0.223 0.129 0.299 0.414 0.171 0.637-0.086 0.15-0.243 0.233-0.404 0.233z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M3.803 8.758h-2.798c-0.418 0-0.758-0.339-0.758-0.758s0.339-0.758 0.758-0.758h2.798c0.419 0 0.758 0.339 0.758 0.758s-0.339 0.758-0.758 0.758z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.995 8.466c-0 0 0 0 0 0h-2.798c-0.258-0-0.466-0.209-0.466-0.466s0.209-0.466 0.466-0.466c0 0 0 0 0 0h2.798c0.258 0 0.466 0.209 0.466 0.466s-0.209 0.466-0.466 0.466z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M1.943 12.197c-0.242 0-0.477-0.125-0.606-0.35-0.193-0.335-0.079-0.762 0.256-0.955l2.423-1.399c0.335-0.193 0.762-0.079 0.955 0.256s0.079 0.762-0.256 0.955l-2.423 1.399c-0.11 0.064-0.23 0.094-0.349 0.094z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.635 6.368c-0.161 0-0.318-0.084-0.404-0.233-0.129-0.223-0.052-0.508 0.171-0.637l2.423-1.399c0.223-0.129 0.508-0.052 0.637 0.171s0.052 0.508-0.171 0.637l-2.423 1.399c-0.073 0.042-0.154 0.063-0.233 0.063z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4.502 14.699c-0.109 0-0.219-0.028-0.32-0.086-0.307-0.177-0.412-0.569-0.235-0.876l1.399-2.423c0.177-0.307 0.569-0.412 0.876-0.235s0.412 0.569 0.235 0.876l-1.399 2.423c-0.119 0.206-0.334 0.321-0.556 0.321z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M10.098 4.832c-0.079 0-0.159-0.020-0.233-0.063-0.223-0.129-0.299-0.414-0.171-0.637l1.399-2.423c0.129-0.223 0.414-0.299 0.637-0.171s0.299 0.414 0.171 0.637l-1.399 2.423c-0.086 0.15-0.243 0.233-0.404 0.233z" + } + }] +}; +exports.spinner3 = spinner3; +var spinner4 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M3 8c0-0.19 0.011-0.378 0.032-0.563l-2.89-0.939c-0.092 0.487-0.141 0.989-0.141 1.502 0 2.3 0.971 4.374 2.526 5.833l1.786-2.458c-0.814-0.889-1.312-2.074-1.312-3.375zM13 8c0 1.301-0.497 2.486-1.312 3.375l1.786 2.458c1.555-1.459 2.526-3.533 2.526-5.833 0-0.513-0.049-1.015-0.141-1.502l-2.89 0.939c0.021 0.185 0.032 0.373 0.032 0.563zM9 3.1c1.436 0.292 2.649 1.199 3.351 2.435l2.89-0.939c-1.144-2.428-3.473-4.188-6.241-4.534v3.038zM3.649 5.535c0.702-1.236 1.914-2.143 3.351-2.435v-3.038c-2.769 0.345-5.097 2.105-6.241 4.534l2.89 0.939zM10.071 12.552c-0.631 0.288-1.332 0.448-2.071 0.448s-1.44-0.16-2.071-0.448l-1.786 2.458c1.144 0.631 2.458 0.99 3.857 0.99s2.713-0.359 3.857-0.99l-1.786-2.458z" + } + }] +}; +exports.spinner4 = spinner4; +var spinner5 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM8 4c2.209 0 4 1.791 4 4s-1.791 4-4 4-4-1.791-4-4 1.791-4 4-4zM12.773 12.773c-1.275 1.275-2.97 1.977-4.773 1.977s-3.498-0.702-4.773-1.977-1.977-2.97-1.977-4.773c0-1.803 0.702-3.498 1.977-4.773l1.061 1.061c0 0 0 0 0 0-2.047 2.047-2.047 5.378 0 7.425 0.992 0.992 2.31 1.538 3.712 1.538s2.721-0.546 3.712-1.538c2.047-2.047 2.047-5.378 0-7.425l1.061-1.061c1.275 1.275 1.977 2.97 1.977 4.773s-0.702 3.498-1.977 4.773z" + } + }] +}; +exports.spinner5 = spinner5; +var spinner6 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6 2c0-1.105 0.895-2 2-2s2 0.895 2 2c0 1.105-0.895 2-2 2s-2-0.895-2-2zM12.359 8c0 0 0 0 0 0 0-0.906 0.735-1.641 1.641-1.641s1.641 0.735 1.641 1.641c0 0 0 0 0 0 0 0.906-0.735 1.641-1.641 1.641s-1.641-0.735-1.641-1.641zM10.757 12.243c0-0.821 0.665-1.486 1.486-1.486s1.486 0.665 1.486 1.486c0 0.821-0.665 1.486-1.486 1.486s-1.486-0.665-1.486-1.486zM6.654 14c0-0.743 0.603-1.346 1.346-1.346s1.346 0.603 1.346 1.346c0 0.743-0.603 1.346-1.346 1.346s-1.346-0.603-1.346-1.346zM2.538 12.243c0-0.673 0.546-1.219 1.219-1.219s1.219 0.546 1.219 1.219c0 0.673-0.546 1.219-1.219 1.219s-1.219-0.546-1.219-1.219zM0.896 8c0-0.61 0.494-1.104 1.104-1.104s1.104 0.494 1.104 1.104c0 0.61-0.494 1.104-1.104 1.104s-1.104-0.494-1.104-1.104zM2.757 3.757c0 0 0 0 0 0 0-0.552 0.448-1 1-1s1 0.448 1 1c0 0 0 0 0 0 0 0.552-0.448 1-1 1s-1-0.448-1-1zM14.054 3.757c0 1-0.811 1.811-1.812 1.811s-1.812-0.811-1.812-1.811c0-1.001 0.811-1.811 1.812-1.811s1.812 0.811 1.812 1.811z" + } + }] +}; +exports.spinner6 = spinner6; +var spinner7 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6.5 14.5c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5zM0 8c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5zM13 8c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5zM1.904 3.404c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5zM11.096 12.596c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5zM1.904 12.596c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5zM11.096 3.404c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5z" + } + }] +}; +exports.spinner7 = spinner7; +var spinner8 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 16c-2.137 0-4.146-0.832-5.657-2.343s-2.343-3.52-2.343-5.657c0-1.513 0.425-2.986 1.228-4.261 0.781-1.239 1.885-2.24 3.193-2.895l0.672 1.341c-1.063 0.533-1.961 1.347-2.596 2.354-0.652 1.034-0.997 2.231-0.997 3.461 0 3.584 2.916 6.5 6.5 6.5s6.5-2.916 6.5-6.5c0-1.23-0.345-2.426-0.997-3.461-0.635-1.008-1.533-1.822-2.596-2.354l0.672-1.341c1.308 0.655 2.412 1.656 3.193 2.895 0.803 1.274 1.228 2.748 1.228 4.261 0 2.137-0.832 4.146-2.343 5.657s-3.52 2.343-5.657 2.343z" + } + }] +}; +exports.spinner8 = spinner8; +var spinner9 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.355 0-7.898 3.481-7.998 7.812 0.092-3.779 2.966-6.812 6.498-6.812 3.59 0 6.5 3.134 6.5 7 0 0.828 0.672 1.5 1.5 1.5s1.5-0.672 1.5-1.5c0-4.418-3.582-8-8-8zM8 16c4.355 0 7.898-3.481 7.998-7.812-0.092 3.779-2.966 6.812-6.498 6.812-3.59 0-6.5-3.134-6.5-7 0-0.828-0.672-1.5-1.5-1.5s-1.5 0.672-1.5 1.5c0 4.418 3.582 8 8 8z" + } + }] +}; +exports.spinner9 = spinner9; +var spinner10 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0.001 8.025l-0 0c0 0 0 0.001 0 0.003 0.002 0.061 0.009 0.12 0.021 0.177 0.003 0.027 0.007 0.057 0.011 0.090 0.003 0.029 0.007 0.061 0.011 0.095 0.006 0.040 0.012 0.083 0.019 0.128 0.013 0.090 0.028 0.189 0.045 0.296 0.021 0.101 0.044 0.21 0.068 0.326 0.011 0.058 0.028 0.117 0.044 0.178s0.032 0.123 0.049 0.188c0.009 0.032 0.016 0.065 0.027 0.097s0.021 0.065 0.031 0.098 0.043 0.134 0.065 0.203c0.006 0.017 0.011 0.035 0.017 0.052s0.013 0.034 0.019 0.052 0.026 0.070 0.039 0.105c0.027 0.070 0.053 0.142 0.081 0.215 0.031 0.071 0.062 0.144 0.094 0.218 0.016 0.037 0.032 0.074 0.048 0.111s0.035 0.073 0.053 0.111 0.073 0.148 0.11 0.224c0.039 0.075 0.081 0.149 0.123 0.224 0.021 0.037 0.042 0.075 0.063 0.113s0.045 0.074 0.068 0.112 0.093 0.149 0.14 0.224c0.198 0.295 0.417 0.587 0.66 0.864 0.245 0.275 0.511 0.535 0.792 0.775 0.284 0.236 0.582 0.452 0.886 0.642 0.306 0.188 0.619 0.349 0.928 0.487 0.078 0.032 0.156 0.063 0.232 0.095 0.038 0.015 0.076 0.032 0.115 0.046s0.077 0.027 0.115 0.041 0.151 0.054 0.226 0.078c0.075 0.022 0.15 0.044 0.224 0.066 0.037 0.011 0.073 0.022 0.109 0.031s0.073 0.018 0.109 0.027 0.143 0.035 0.213 0.052c0.070 0.014 0.139 0.027 0.207 0.040 0.034 0.006 0.067 0.013 0.101 0.019 0.017 0.003 0.033 0.006 0.049 0.009s0.033 0.005 0.049 0.007c0.066 0.009 0.13 0.018 0.192 0.027 0.031 0.004 0.062 0.009 0.093 0.013s0.061 0.006 0.091 0.009 0.118 0.010 0.174 0.015c0.056 0.005 0.111 0.011 0.164 0.012 0.004 0 0.007 0 0.011 0 0.010 0.544 0.453 0.982 1 0.982 0.008 0 0.017-0 0.025-0.001v0c0 0 0.001-0 0.004-0 0.061-0.002 0.12-0.009 0.177-0.021 0.027-0.003 0.057-0.007 0.090-0.011 0.029-0.003 0.061-0.007 0.095-0.011 0.040-0.006 0.083-0.012 0.128-0.019 0.090-0.013 0.189-0.028 0.296-0.045 0.101-0.021 0.21-0.044 0.326-0.068 0.058-0.011 0.117-0.028 0.178-0.044s0.123-0.033 0.188-0.049c0.032-0.009 0.065-0.016 0.097-0.027s0.065-0.021 0.098-0.031 0.134-0.043 0.203-0.065c0.017-0.006 0.035-0.011 0.052-0.017s0.034-0.013 0.052-0.019 0.070-0.026 0.105-0.039c0.070-0.027 0.142-0.053 0.215-0.081 0.071-0.031 0.144-0.062 0.218-0.094 0.037-0.016 0.074-0.032 0.111-0.048s0.073-0.035 0.111-0.053 0.148-0.073 0.224-0.11c0.075-0.039 0.149-0.081 0.224-0.123 0.037-0.021 0.075-0.042 0.113-0.063s0.074-0.045 0.112-0.068 0.149-0.093 0.224-0.14c0.295-0.197 0.587-0.417 0.864-0.66 0.275-0.245 0.535-0.511 0.775-0.792 0.236-0.284 0.452-0.582 0.642-0.886 0.188-0.306 0.349-0.619 0.487-0.928 0.032-0.078 0.063-0.156 0.095-0.232 0.015-0.038 0.032-0.076 0.046-0.115s0.027-0.077 0.040-0.115 0.054-0.151 0.078-0.226c0.022-0.075 0.044-0.15 0.066-0.224 0.011-0.037 0.022-0.073 0.031-0.109s0.018-0.073 0.027-0.109 0.035-0.143 0.052-0.213c0.014-0.070 0.027-0.139 0.040-0.207 0.006-0.034 0.013-0.067 0.019-0.101 0.003-0.017 0.006-0.033 0.009-0.049s0.005-0.033 0.007-0.050c0.009-0.065 0.018-0.13 0.027-0.192 0.004-0.031 0.009-0.062 0.013-0.093s0.006-0.061 0.009-0.091 0.010-0.118 0.015-0.174c0.005-0.056 0.011-0.111 0.012-0.165 0-0.008 0.001-0.016 0.001-0.025 0.55-0.002 0.996-0.449 0.996-1 0-0.008-0-0.017-0.001-0.025h0c0 0-0-0.001-0-0.003-0.002-0.061-0.009-0.12-0.021-0.177-0.003-0.027-0.007-0.057-0.011-0.090-0.003-0.029-0.007-0.061-0.011-0.095-0.006-0.040-0.012-0.083-0.019-0.128-0.013-0.090-0.028-0.189-0.045-0.296-0.021-0.101-0.044-0.21-0.068-0.326-0.011-0.058-0.028-0.117-0.044-0.178s-0.032-0.123-0.049-0.188c-0.009-0.032-0.016-0.065-0.027-0.097s-0.021-0.065-0.031-0.098-0.043-0.134-0.065-0.203c-0.005-0.017-0.011-0.035-0.017-0.052s-0.013-0.034-0.019-0.052-0.026-0.070-0.039-0.105c-0.027-0.070-0.053-0.142-0.081-0.215-0.031-0.071-0.062-0.144-0.094-0.218-0.016-0.037-0.032-0.074-0.048-0.111s-0.035-0.073-0.053-0.111-0.073-0.148-0.11-0.224c-0.039-0.075-0.081-0.149-0.123-0.224-0.021-0.037-0.042-0.075-0.063-0.113s-0.045-0.074-0.068-0.112-0.093-0.149-0.14-0.224c-0.197-0.295-0.417-0.587-0.66-0.864-0.245-0.275-0.511-0.535-0.792-0.775-0.284-0.236-0.582-0.452-0.886-0.642-0.306-0.188-0.619-0.349-0.928-0.487-0.078-0.032-0.156-0.063-0.232-0.095-0.038-0.015-0.076-0.032-0.115-0.046s-0.077-0.027-0.115-0.040-0.151-0.054-0.226-0.078c-0.075-0.022-0.15-0.044-0.224-0.066-0.037-0.010-0.073-0.022-0.109-0.031s-0.073-0.018-0.109-0.027-0.143-0.035-0.213-0.052c-0.070-0.014-0.139-0.027-0.207-0.040-0.034-0.006-0.067-0.013-0.101-0.019-0.017-0.003-0.033-0.006-0.049-0.009s-0.033-0.005-0.049-0.007c-0.066-0.009-0.13-0.018-0.192-0.027-0.031-0.004-0.062-0.009-0.093-0.013s-0.061-0.006-0.091-0.009-0.118-0.010-0.174-0.015c-0.056-0.005-0.111-0.011-0.164-0.012-0.013-0-0.026-0.001-0.039-0.001-0.010-0.543-0.454-0.981-0.999-0.981-0.008 0-0.017 0-0.025 0.001l-0-0c0 0-0.001 0-0.003 0-0.061 0.002-0.12 0.009-0.177 0.021-0.027 0.003-0.057 0.007-0.090 0.011-0.029 0.003-0.061 0.007-0.095 0.011-0.040 0.006-0.083 0.012-0.128 0.019-0.090 0.013-0.189 0.028-0.296 0.045-0.101 0.021-0.21 0.044-0.326 0.068-0.058 0.011-0.117 0.028-0.178 0.044s-0.123 0.033-0.188 0.049c-0.032 0.009-0.065 0.016-0.097 0.027s-0.065 0.021-0.098 0.031-0.134 0.043-0.203 0.065c-0.017 0.006-0.035 0.011-0.052 0.017s-0.034 0.013-0.052 0.019-0.070 0.026-0.105 0.039c-0.070 0.027-0.142 0.053-0.215 0.081-0.071 0.031-0.144 0.062-0.218 0.094-0.037 0.016-0.074 0.032-0.111 0.048s-0.073 0.035-0.111 0.053-0.148 0.073-0.224 0.11c-0.075 0.039-0.149 0.081-0.224 0.123-0.037 0.021-0.075 0.042-0.113 0.063s-0.074 0.045-0.112 0.068-0.149 0.093-0.224 0.14c-0.295 0.198-0.587 0.417-0.864 0.66-0.275 0.245-0.535 0.511-0.775 0.792-0.236 0.284-0.452 0.582-0.642 0.886-0.188 0.306-0.349 0.619-0.487 0.928-0.032 0.078-0.063 0.156-0.095 0.232-0.015 0.038-0.032 0.076-0.046 0.115s-0.027 0.077-0.040 0.115-0.054 0.151-0.078 0.226c-0.022 0.075-0.044 0.15-0.066 0.224-0.011 0.037-0.022 0.073-0.032 0.109s-0.018 0.073-0.027 0.109-0.035 0.143-0.052 0.213c-0.014 0.070-0.027 0.139-0.040 0.207-0.006 0.034-0.013 0.067-0.019 0.101-0.003 0.017-0.006 0.033-0.009 0.049s-0.005 0.033-0.007 0.050c-0.009 0.065-0.018 0.13-0.027 0.192-0.004 0.031-0.009 0.062-0.013 0.093s-0.006 0.061-0.009 0.091-0.010 0.118-0.015 0.174c-0.005 0.056-0.011 0.111-0.012 0.165-0 0.009-0.001 0.017-0.001 0.025-0.537 0.017-0.967 0.458-0.967 0.999 0 0.008 0 0.017 0.001 0.025zM1.149 7.011c0.001-0.003 0.001-0.006 0.002-0.009 0.010-0.051 0.026-0.102 0.040-0.155s0.030-0.107 0.045-0.163c0.008-0.028 0.015-0.056 0.024-0.084s0.019-0.057 0.028-0.086 0.038-0.116 0.058-0.176c0.005-0.015 0.010-0.030 0.015-0.045s0.012-0.030 0.017-0.045 0.023-0.060 0.035-0.091 0.048-0.123 0.073-0.186c0.028-0.062 0.056-0.125 0.084-0.189 0.014-0.032 0.028-0.064 0.043-0.096s0.032-0.064 0.048-0.096 0.065-0.128 0.098-0.194c0.034-0.065 0.073-0.128 0.109-0.194 0.018-0.032 0.037-0.065 0.056-0.098s0.040-0.064 0.061-0.096c0.041-0.064 0.082-0.129 0.124-0.194 0.176-0.255 0.369-0.506 0.583-0.744 0.217-0.236 0.451-0.459 0.697-0.665 0.25-0.202 0.511-0.385 0.776-0.547 0.268-0.159 0.541-0.294 0.808-0.41 0.068-0.027 0.135-0.053 0.202-0.079 0.033-0.013 0.066-0.027 0.099-0.038s0.067-0.022 0.1-0.033 0.131-0.045 0.196-0.065c0.065-0.018 0.13-0.036 0.194-0.054 0.032-0.009 0.063-0.019 0.095-0.026s0.063-0.014 0.094-0.021 0.123-0.028 0.184-0.042c0.061-0.011 0.12-0.021 0.179-0.032 0.029-0.005 0.058-0.010 0.087-0.015 0.014-0.003 0.029-0.005 0.043-0.008s0.029-0.003 0.043-0.005c0.056-0.007 0.112-0.014 0.166-0.020 0.027-0.003 0.053-0.007 0.080-0.010s0.053-0.004 0.078-0.006 0.102-0.007 0.15-0.011c0.049-0.003 0.095-0.008 0.142-0.008 0.091-0.002 0.177-0.004 0.256-0.006 0.073 0.003 0.14 0.005 0.2 0.007 0.030 0.001 0.058 0.002 0.085 0.002 0.033 0.002 0.064 0.004 0.093 0.006 0.033 0.002 0.063 0.004 0.091 0.006 0.051 0.008 0.103 0.012 0.156 0.012 0.007 0 0.015-0 0.022-0.001 0.002 0 0.004 0 0.004 0v-0c0.487-0.012 0.887-0.372 0.962-0.84 0.008 0.002 0.017 0.004 0.025 0.006 0.051 0.010 0.102 0.026 0.155 0.040s0.107 0.030 0.163 0.045c0.028 0.008 0.056 0.015 0.084 0.024s0.057 0.019 0.086 0.028 0.116 0.038 0.176 0.058c0.015 0.005 0.030 0.010 0.045 0.015s0.030 0.012 0.045 0.017 0.060 0.023 0.091 0.035 0.123 0.048 0.186 0.073c0.062 0.028 0.125 0.056 0.189 0.084 0.032 0.014 0.064 0.028 0.096 0.043s0.064 0.032 0.096 0.048 0.128 0.065 0.194 0.098c0.065 0.034 0.129 0.073 0.194 0.109 0.032 0.018 0.065 0.037 0.098 0.056s0.064 0.040 0.096 0.061 0.129 0.082 0.194 0.124c0.255 0.176 0.506 0.369 0.744 0.583 0.236 0.217 0.459 0.451 0.665 0.697 0.202 0.25 0.385 0.511 0.547 0.776 0.159 0.268 0.294 0.541 0.41 0.808 0.027 0.068 0.053 0.135 0.079 0.202 0.013 0.033 0.027 0.066 0.038 0.099s0.022 0.067 0.033 0.1 0.045 0.131 0.065 0.196c0.018 0.065 0.036 0.13 0.054 0.194 0.009 0.032 0.019 0.063 0.026 0.095s0.014 0.063 0.021 0.094 0.028 0.123 0.042 0.184c0.011 0.061 0.021 0.12 0.032 0.179 0.005 0.029 0.010 0.058 0.015 0.087 0.003 0.014 0.005 0.029 0.008 0.043s0.003 0.029 0.005 0.043c0.007 0.056 0.014 0.112 0.020 0.166 0.003 0.027 0.007 0.053 0.010 0.080s0.004 0.053 0.006 0.078 0.007 0.102 0.011 0.15c0.003 0.049 0.008 0.095 0.008 0.142 0.002 0.091 0.004 0.177 0.006 0.256-0.003 0.073-0.005 0.14-0.007 0.2-0.001 0.030-0.002 0.058-0.002 0.085-0.002 0.033-0.004 0.064-0.006 0.093-0.002 0.033-0.004 0.063-0.006 0.091-0.008 0.051-0.012 0.103-0.012 0.156 0 0.007 0 0.015 0.001 0.022-0 0.002-0 0.004-0 0.004h0c0.012 0.481 0.363 0.877 0.823 0.959-0.001 0.005-0.002 0.009-0.003 0.014-0.010 0.051-0.025 0.102-0.040 0.155s-0.030 0.107-0.045 0.163c-0.008 0.028-0.015 0.056-0.024 0.084s-0.019 0.057-0.028 0.086-0.039 0.116-0.058 0.176c-0.005 0.015-0.010 0.030-0.015 0.045s-0.012 0.030-0.017 0.045-0.023 0.060-0.035 0.091-0.048 0.123-0.073 0.186c-0.028 0.062-0.056 0.125-0.084 0.189-0.014 0.032-0.028 0.064-0.043 0.096s-0.032 0.064-0.048 0.096-0.065 0.128-0.098 0.194c-0.034 0.065-0.073 0.129-0.109 0.194-0.018 0.032-0.037 0.065-0.056 0.098s-0.040 0.064-0.061 0.096-0.082 0.129-0.124 0.194c-0.176 0.255-0.369 0.506-0.583 0.744-0.217 0.236-0.451 0.459-0.697 0.665-0.25 0.202-0.511 0.385-0.776 0.547-0.268 0.159-0.541 0.294-0.808 0.41-0.068 0.027-0.135 0.053-0.202 0.079-0.033 0.013-0.066 0.027-0.099 0.038s-0.067 0.022-0.1 0.033-0.131 0.045-0.196 0.065c-0.065 0.018-0.13 0.036-0.194 0.054-0.032 0.009-0.063 0.019-0.095 0.026s-0.063 0.014-0.094 0.021-0.123 0.028-0.184 0.042c-0.061 0.011-0.12 0.021-0.179 0.032-0.029 0.005-0.058 0.010-0.087 0.015-0.014 0.003-0.028 0.005-0.043 0.008s-0.029 0.003-0.043 0.005c-0.056 0.007-0.112 0.014-0.166 0.020-0.027 0.003-0.053 0.007-0.080 0.010s-0.053 0.004-0.078 0.006-0.102 0.007-0.15 0.011c-0.049 0.003-0.095 0.008-0.142 0.008-0.091 0.002-0.177 0.004-0.256 0.006-0.073-0.003-0.14-0.005-0.2-0.007-0.030-0.001-0.058-0.002-0.085-0.002-0.033-0.002-0.064-0.004-0.093-0.006-0.033-0.002-0.063-0.004-0.091-0.006-0.051-0.008-0.103-0.012-0.156-0.012-0.007 0-0.015 0-0.022 0.001-0.002-0-0.003-0-0.003-0v0c-0.484 0.012-0.883 0.369-0.961 0.834-0.050-0.010-0.101-0.025-0.153-0.039s-0.107-0.030-0.163-0.045c-0.028-0.008-0.056-0.015-0.084-0.024s-0.057-0.019-0.086-0.028-0.116-0.039-0.176-0.058c-0.015-0.005-0.030-0.010-0.045-0.015s-0.030-0.012-0.045-0.017-0.060-0.023-0.091-0.035-0.123-0.048-0.186-0.073c-0.062-0.028-0.125-0.056-0.189-0.084-0.032-0.014-0.064-0.028-0.096-0.043s-0.064-0.032-0.096-0.048-0.128-0.065-0.194-0.098c-0.065-0.034-0.129-0.073-0.194-0.109-0.032-0.018-0.065-0.037-0.098-0.056s-0.064-0.040-0.096-0.061c-0.064-0.041-0.129-0.082-0.194-0.124-0.255-0.175-0.506-0.369-0.744-0.583-0.236-0.217-0.459-0.451-0.665-0.697-0.202-0.25-0.385-0.511-0.547-0.776-0.159-0.268-0.294-0.541-0.41-0.808-0.027-0.068-0.053-0.135-0.079-0.202-0.013-0.033-0.027-0.066-0.038-0.099s-0.022-0.067-0.033-0.1-0.045-0.131-0.065-0.196c-0.018-0.065-0.036-0.13-0.054-0.194-0.009-0.032-0.019-0.063-0.026-0.095s-0.014-0.063-0.021-0.094-0.028-0.123-0.042-0.184c-0.011-0.061-0.021-0.12-0.032-0.179-0.005-0.029-0.010-0.058-0.015-0.087-0.003-0.014-0.005-0.028-0.008-0.043s-0.003-0.029-0.005-0.043c-0.007-0.056-0.014-0.112-0.020-0.166-0.003-0.027-0.007-0.053-0.010-0.080s-0.004-0.053-0.006-0.078-0.007-0.101-0.011-0.15c-0.003-0.049-0.008-0.095-0.008-0.142-0.002-0.091-0.004-0.177-0.006-0.256 0.003-0.073 0.005-0.14 0.007-0.2 0.001-0.030 0.002-0.058 0.002-0.085 0.002-0.033 0.004-0.064 0.006-0.093 0.002-0.033 0.004-0.063 0.006-0.091 0.008-0.051 0.012-0.103 0.012-0.156 0-0.007-0-0.015-0.001-0.022 0-0.002 0-0.003 0-0.003h-0c-0.012-0.49-0.377-0.893-0.851-0.964z" + } + }] +}; +exports.spinner10 = spinner10; +var spinner11 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16 6h-6l2.243-2.243c-1.133-1.133-2.64-1.757-4.243-1.757s-3.109 0.624-4.243 1.757c-1.133 1.133-1.757 2.64-1.757 4.243s0.624 3.109 1.757 4.243c1.133 1.133 2.64 1.757 4.243 1.757s3.109-0.624 4.243-1.757c0.095-0.095 0.185-0.192 0.273-0.292l1.505 1.317c-1.466 1.674-3.62 2.732-6.020 2.732-4.418 0-8-3.582-8-8s3.582-8 8-8c2.209 0 4.209 0.896 5.656 2.344l2.343-2.344v6z" + } + }] +}; +exports.spinner11 = spinner11; +var binoculars = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M1 0h6v1h-6zM9 0h6v1h-6zM14.875 5h-0.875v-4h-4v4h-4v-4h-4v4h-0.875c-0.619 0-1.125 0.506-1.125 1.125v8.75c0 0.619 0.506 1.125 1.125 1.125h4.75c0.619 0 1.125-0.506 1.125-1.125v-5.875h2v5.875c0 0.619 0.506 1.125 1.125 1.125h4.75c0.619 0 1.125-0.506 1.125-1.125v-8.75c0-0.619-0.506-1.125-1.125-1.125zM5.438 15h-3.875c-0.309 0-0.563-0.225-0.563-0.5s0.253-0.5 0.563-0.5h3.875c0.309 0 0.563 0.225 0.563 0.5s-0.253 0.5-0.563 0.5zM8.5 8h-1c-0.275 0-0.5-0.225-0.5-0.5s0.225-0.5 0.5-0.5h1c0.275 0 0.5 0.225 0.5 0.5s-0.225 0.5-0.5 0.5zM14.438 15h-3.875c-0.309 0-0.563-0.225-0.563-0.5s0.253-0.5 0.563-0.5h3.875c0.309 0 0.563 0.225 0.563 0.5s-0.253 0.5-0.563 0.5z" + } + }] +}; +exports.binoculars = binoculars; +var search = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.504 13.616l-3.79-3.223c-0.392-0.353-0.811-0.514-1.149-0.499 0.895-1.048 1.435-2.407 1.435-3.893 0-3.314-2.686-6-6-6s-6 2.686-6 6 2.686 6 6 6c1.486 0 2.845-0.54 3.893-1.435-0.016 0.338 0.146 0.757 0.499 1.149l3.223 3.79c0.552 0.613 1.453 0.665 2.003 0.115s0.498-1.452-0.115-2.003zM6 10c-2.209 0-4-1.791-4-4s1.791-4 4-4 4 1.791 4 4-1.791 4-4 4z" + } + }] +}; +exports.search = search; +var zoomIn = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.504 13.616l-3.79-3.223c-0.392-0.353-0.811-0.514-1.149-0.499 0.895-1.048 1.435-2.407 1.435-3.893 0-3.314-2.686-6-6-6s-6 2.686-6 6 2.686 6 6 6c1.486 0 2.845-0.54 3.893-1.435-0.016 0.338 0.146 0.757 0.499 1.149l3.223 3.79c0.552 0.613 1.453 0.665 2.003 0.115s0.498-1.452-0.115-2.003zM6 10c-2.209 0-4-1.791-4-4s1.791-4 4-4 4 1.791 4 4-1.791 4-4 4zM7 3h-2v2h-2v2h2v2h2v-2h2v-2h-2z" + } + }] +}; +exports.zoomIn = zoomIn; +var zoomOut = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.504 13.616l-3.79-3.223c-0.392-0.353-0.811-0.514-1.149-0.499 0.895-1.048 1.435-2.407 1.435-3.893 0-3.314-2.686-6-6-6s-6 2.686-6 6 2.686 6 6 6c1.486 0 2.845-0.54 3.893-1.435-0.016 0.338 0.146 0.757 0.499 1.149l3.223 3.79c0.552 0.613 1.453 0.665 2.003 0.115s0.498-1.452-0.115-2.003zM6 10c-2.209 0-4-1.791-4-4s1.791-4 4-4 4 1.791 4 4-1.791 4-4 4zM3 5h6v2h-6z" + } + }] +}; +exports.zoomOut = zoomOut; +var enlarge = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16 0h-6.5l2.5 2.5-3 3 1.5 1.5 3-3 2.5 2.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16 16v-6.5l-2.5 2.5-3-3-1.5 1.5 3 3-2.5 2.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 16h6.5l-2.5-2.5 3-3-1.5-1.5-3 3-2.5-2.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 0v6.5l2.5-2.5 3 3 1.5-1.5-3-3 2.5-2.5z" + } + }] +}; +exports.enlarge = enlarge; +var shrink = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9 7h6.5l-2.5-2.5 3-3-1.5-1.5-3 3-2.5-2.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9 9v6.5l2.5-2.5 3 3 1.5-1.5-3-3 2.5-2.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7 9h-6.5l2.5 2.5-3 3 1.5 1.5 3-3 2.5 2.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7 7v-6.5l-2.5 2.5-3-3-1.5 1.5 3 3-2.5 2.5z" + } + }] +}; +exports.shrink = shrink; +var enlarge2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16 0v6.5l-2.5-2.5-3 3-1.5-1.5 3-3-2.5-2.5zM7 10.5l-3 3 2.5 2.5h-6.5v-6.5l2.5 2.5 3-3z" + } + }] +}; +exports.enlarge2 = enlarge2; +var shrink2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7 9v6.5l-2.5-2.5-3 3-1.5-1.5 3-3-2.5-2.5zM16 1.5l-3 3 2.5 2.5h-6.5v-6.5l2.5 2.5 3-3z" + } + }] +}; +exports.shrink2 = shrink2; +var key = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11 0c-2.761 0-5 2.239-5 5 0 0.313 0.029 0.619 0.084 0.916l-6.084 6.084v3c0 0.552 0.448 1 1 1h1v-1h2v-2h2v-2h2l1.298-1.298c0.531 0.192 1.105 0.298 1.702 0.298 2.761 0 5-2.239 5-5s-2.239-5-5-5zM12.498 5.002c-0.828 0-1.5-0.672-1.5-1.5s0.672-1.5 1.5-1.5 1.5 0.672 1.5 1.5-0.672 1.5-1.5 1.5z" + } + }] +}; +exports.key = key; +var key2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.658 4.91l-1.58-1.58c-0.387-0.387-1.021-1.021-1.409-1.409l-1.58-1.58c-0.387-0.387-1.077-0.456-1.533-0.152l-4.319 2.88c-0.456 0.304-0.628 0.954-0.383 1.444l1.101 2.203c0.034 0.067 0.073 0.139 0.115 0.213l-5.571 5.571-0.5 3.5h3v-1h2v-2h2v-2h2v-1.112c0.1 0.060 0.196 0.113 0.284 0.157l2.203 1.101c0.49 0.245 1.14 0.072 1.444-0.383l2.88-4.319c0.304-0.456 0.236-1.146-0.152-1.533zM2.354 13.354l-0.707-0.707 4.868-4.868 0.707 0.707-4.868 4.868zM14.328 6.621l-0.707 0.707c-0.194 0.194-0.513 0.194-0.707 0l-4.243-4.243c-0.194-0.194-0.194-0.513 0-0.707l0.707-0.707c0.194-0.194 0.513-0.194 0.707 0l4.243 4.243c0.194 0.194 0.194 0.513 0 0.707z" + } + }] +}; +exports.key2 = key2; +var lock = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9.25 7h-0.25v-3c0-1.654-1.346-3-3-3h-2c-1.654 0-3 1.346-3 3v3h-0.25c-0.412 0-0.75 0.338-0.75 0.75v7.5c0 0.412 0.338 0.75 0.75 0.75h8.5c0.412 0 0.75-0.338 0.75-0.75v-7.5c0-0.412-0.338-0.75-0.75-0.75zM3 4c0-0.551 0.449-1 1-1h2c0.551 0 1 0.449 1 1v3h-4v-3z" + } + }] +}; +exports.lock = lock; +var unlocked = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12 1c1.654 0 3 1.346 3 3v3h-2v-3c0-0.551-0.449-1-1-1h-2c-0.551 0-1 0.449-1 1v3h0.25c0.412 0 0.75 0.338 0.75 0.75v7.5c0 0.412-0.338 0.75-0.75 0.75h-8.5c-0.412 0-0.75-0.338-0.75-0.75v-7.5c0-0.412 0.338-0.75 0.75-0.75h6.25v-3c0-1.654 1.346-3 3-3h2z" + } + }] +}; +exports.unlocked = unlocked; +var wrench = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.671 12.779l-7.196-6.168c0.335-0.63 0.525-1.348 0.525-2.111 0-2.485-2.015-4.5-4.5-4.5-0.455 0-0.893 0.068-1.307 0.193l2.6 2.6c0.389 0.389 0.389 1.025 0 1.414l-1.586 1.586c-0.389 0.389-1.025 0.389-1.414 0l-2.6-2.6c-0.125 0.414-0.193 0.852-0.193 1.307 0 2.485 2.015 4.5 4.5 4.5 0.763 0 1.482-0.19 2.111-0.525l6.168 7.196c0.358 0.418 0.969 0.441 1.358 0.052l1.586-1.586c0.389-0.389 0.365-1-0.052-1.358z" + } + }] +}; +exports.wrench = wrench; +var equalizer = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7 2v-0.25c0-0.413-0.338-0.75-0.75-0.75h-2.5c-0.413 0-0.75 0.337-0.75 0.75v0.25h-3v2h3v0.25c0 0.412 0.337 0.75 0.75 0.75h2.5c0.412 0 0.75-0.338 0.75-0.75v-0.25h9v-2h-9zM4 4v-2h2v2h-2zM13 6.75c0-0.412-0.338-0.75-0.75-0.75h-2.5c-0.412 0-0.75 0.338-0.75 0.75v0.25h-9v2h9v0.25c0 0.412 0.338 0.75 0.75 0.75h2.5c0.412 0 0.75-0.338 0.75-0.75v-0.25h3v-2h-3v-0.25zM10 9v-2h2v2h-2zM7 11.75c0-0.412-0.338-0.75-0.75-0.75h-2.5c-0.413 0-0.75 0.338-0.75 0.75v0.25h-3v2h3v0.25c0 0.412 0.337 0.75 0.75 0.75h2.5c0.412 0 0.75-0.338 0.75-0.75v-0.25h9v-2h-9v-0.25zM4 14v-2h2v2h-2z" + } + }] +}; +exports.equalizer = equalizer; +var equalizer2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14 7h0.25c0.412 0 0.75-0.338 0.75-0.75v-2.5c0-0.413-0.338-0.75-0.75-0.75h-0.25v-3h-2v3h-0.25c-0.412 0-0.75 0.337-0.75 0.75v2.5c0 0.412 0.338 0.75 0.75 0.75h0.25v9h2v-9zM12 4h2v2h-2v-2zM9.25 13c0.412 0 0.75-0.338 0.75-0.75v-2.5c0-0.412-0.338-0.75-0.75-0.75h-0.25v-9h-2v9h-0.25c-0.412 0-0.75 0.338-0.75 0.75v2.5c0 0.412 0.338 0.75 0.75 0.75h0.25v3h2v-3h0.25zM7 10h2v2h-2v-2zM4.25 7c0.412 0 0.75-0.338 0.75-0.75v-2.5c0-0.413-0.338-0.75-0.75-0.75h-0.25v-3h-2v3h-0.25c-0.413 0-0.75 0.337-0.75 0.75v2.5c0 0.412 0.337 0.75 0.75 0.75h0.25v9h2v-9h0.25zM2 4h2v2h-2v-2z" + } + }] +}; +exports.equalizer2 = equalizer2; +var cog = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.59 9.535c-0.839-1.454-0.335-3.317 1.127-4.164l-1.572-2.723c-0.449 0.263-0.972 0.414-1.529 0.414-1.68 0-3.042-1.371-3.042-3.062h-3.145c0.004 0.522-0.126 1.051-0.406 1.535-0.839 1.454-2.706 1.948-4.17 1.106l-1.572 2.723c0.453 0.257 0.845 0.634 1.123 1.117 0.838 1.452 0.336 3.311-1.12 4.16l1.572 2.723c0.448-0.261 0.967-0.41 1.522-0.41 1.675 0 3.033 1.362 3.042 3.046h3.145c-0.001-0.517 0.129-1.040 0.406-1.519 0.838-1.452 2.7-1.947 4.163-1.11l1.572-2.723c-0.45-0.257-0.839-0.633-1.116-1.113zM8 11.24c-1.789 0-3.24-1.45-3.24-3.24s1.45-3.24 3.24-3.24c1.789 0 3.24 1.45 3.24 3.24s-1.45 3.24-3.24 3.24z" + } + }] +}; +exports.cog = cog; +var cogs = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5.683 11.282l0.645-0.903-0.707-0.707-0.903 0.645c-0.168-0.094-0.347-0.168-0.535-0.222l-0.183-1.095h-1l-0.183 1.095c-0.188 0.053-0.368 0.128-0.535 0.222l-0.903-0.645-0.707 0.707 0.645 0.903c-0.094 0.168-0.168 0.347-0.222 0.535l-1.095 0.183v1l1.095 0.183c0.053 0.188 0.128 0.368 0.222 0.535l-0.645 0.903 0.707 0.707 0.903-0.645c0.168 0.094 0.347 0.168 0.535 0.222l0.183 1.095h1l0.183-1.095c0.188-0.053 0.368-0.128 0.535-0.222l0.903 0.645 0.707-0.707-0.645-0.903c0.094-0.168 0.168-0.347 0.222-0.535l1.095-0.182v-1l-1.095-0.183c-0.053-0.188-0.128-0.368-0.222-0.535zM3.5 13.5c-0.552 0-1-0.448-1-1s0.448-1 1-1 1 0.448 1 1-0.448 1-1 1zM16 6v-1l-1.053-0.191c-0.019-0.126-0.044-0.25-0.074-0.372l0.899-0.58-0.383-0.924-1.046 0.226c-0.066-0.108-0.136-0.213-0.211-0.315l0.609-0.88-0.707-0.707-0.88 0.609c-0.102-0.074-0.207-0.145-0.315-0.211l0.226-1.046-0.924-0.383-0.58 0.899c-0.122-0.030-0.246-0.054-0.372-0.074l-0.191-1.053h-1l-0.191 1.053c-0.126 0.019-0.25 0.044-0.372 0.074l-0.58-0.899-0.924 0.383 0.226 1.046c-0.108 0.066-0.213 0.136-0.315 0.211l-0.88-0.609-0.707 0.707 0.609 0.88c-0.074 0.102-0.145 0.207-0.211 0.315l-1.046-0.226-0.383 0.924 0.899 0.58c-0.030 0.122-0.054 0.246-0.074 0.372l-1.053 0.191v1l1.053 0.191c0.019 0.126 0.044 0.25 0.074 0.372l-0.899 0.58 0.383 0.924 1.046-0.226c0.066 0.108 0.136 0.213 0.211 0.315l-0.609 0.88 0.707 0.707 0.88-0.609c0.102 0.074 0.207 0.145 0.315 0.211l-0.226 1.046 0.924 0.383 0.58-0.899c0.122 0.030 0.246 0.054 0.372 0.074l0.191 1.053h1l0.191-1.053c0.126-0.019 0.25-0.044 0.372-0.074l0.58 0.899 0.924-0.383-0.226-1.046c0.108-0.066 0.213-0.136 0.315-0.211l0.88 0.609 0.707-0.707-0.609-0.88c0.074-0.102 0.145-0.207 0.211-0.315l1.046 0.226 0.383-0.924-0.899-0.58c0.030-0.122 0.054-0.246 0.074-0.372l1.053-0.191zM10.5 7.675c-1.201 0-2.175-0.974-2.175-2.175s0.974-2.175 2.175-2.175 2.175 0.974 2.175 2.175c0 1.201-0.974 2.175-2.175 2.175z" + } + }] +}; +exports.cogs = cogs; +var hammer = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.781 12.953l-4.712-4.712c-0.292-0.292-0.769-0.292-1.061 0l-0.354 0.354-2.875-2.875 4.72-4.72h-5l-2.22 2.22-0.22-0.22h-1.061v1.061l0.22 0.22-3.22 3.22 2.5 2.5 3.22-3.22 2.875 2.875-0.354 0.354c-0.292 0.292-0.292 0.769 0 1.061l4.712 4.712c0.292 0.292 0.769 0.292 1.061 0l1.768-1.768c0.292-0.292 0.292-0.769 0-1.061z" + } + }] +}; +exports.hammer = hammer; +var magicWand = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4 3l-2-2h-1v1l2 2zM5 0h1v2h-1zM9 5h2v1h-2zM10 2v-1h-1l-2 2 1 1zM0 5h2v1h-2zM5 9h1v2h-1zM1 9v1h1l2-2-1-1zM15.781 13.781l-9.939-9.939c-0.292-0.292-0.769-0.292-1.061 0l-0.939 0.939c-0.292 0.292-0.292 0.769 0 1.061l9.939 9.939c0.292 0.292 0.769 0.292 1.061 0l0.939-0.939c0.292-0.292 0.292-0.769 0-1.061zM7.5 8.5l-3-3 1-1 3 3-1 1z" + } + }] +}; +exports.magicWand = magicWand; +var aidKit = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14 4h-3v-2c0-0.55-0.45-1-1-1h-4c-0.55 0-1 0.45-1 1v2h-3c-1.1 0-2 0.9-2 2v8c0 1.1 0.9 2 2 2h12c1.1 0 2-0.9 2-2v-8c0-1.1-0.9-2-2-2zM6 2h4v2h-4v-2zM12 11h-3v3h-2v-3h-3v-2h3v-3h2v3h3v2z" + } + }] +}; +exports.aidKit = aidKit; +var bug = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16 9v-1h-3.020c-0.092-1.136-0.497-2.172-1.12-3.004h2.53l1.095-4.379-0.97-0.243-0.905 3.621h-2.729c-0.014-0.011-0.028-0.021-0.042-0.032 0.105-0.305 0.162-0.632 0.162-0.972 0-1.653-1.343-2.992-3-2.992s-3 1.34-3 2.992c0 0.34 0.057 0.667 0.162 0.972-0.014 0.011-0.028 0.021-0.042 0.032h-2.729l-0.905-3.621-0.97 0.243 1.095 4.379h2.53c-0.623 0.832-1.028 1.868-1.12 3.004h-3.020v1h3.021c0.059 0.713 0.242 1.388 0.526 1.996h-1.937l-1.095 4.379 0.97 0.243 0.905-3.621h1.756c0.917 1.219 2.303 1.996 3.854 1.996s2.937-0.777 3.854-1.996h1.756l0.905 3.621 0.97-0.243-1.095-4.379h-1.937c0.283-0.608 0.466-1.283 0.526-1.996h3.021z" + } + }] +}; +exports.bug = bug; +var pieChart = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7 9v-7c-3.866 0-7 3.134-7 7s3.134 7 7 7 7-3.134 7-7c0-1.126-0.266-2.189-0.738-3.131l-6.262 3.131zM14.262 3.869c-1.149-2.294-3.521-3.869-6.262-3.869v7l6.262-3.131z" + } + }] +}; +exports.pieChart = pieChart; +var statsDots = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M2 14h14v2h-16v-16h2zM4.5 13c-0.828 0-1.5-0.672-1.5-1.5s0.672-1.5 1.5-1.5c0.044 0 0.088 0.002 0.131 0.006l1.612-2.687c-0.154-0.235-0.243-0.517-0.243-0.819 0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5c0 0.302-0.090 0.583-0.243 0.819l1.612 2.687c0.043-0.004 0.087-0.006 0.131-0.006 0.033 0 0.066 0.001 0.099 0.004l2.662-4.658c-0.165-0.241-0.261-0.532-0.261-0.845 0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5c0 0.828-0.672 1.5-1.5 1.5-0.033 0-0.066-0.001-0.099-0.004l-2.662 4.658c0.165 0.241 0.261 0.532 0.261 0.845 0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5c0-0.302 0.090-0.583 0.243-0.819l-1.612-2.687c-0.043 0.004-0.087 0.006-0.131 0.006s-0.088-0.002-0.131-0.006l-1.612 2.687c0.154 0.235 0.243 0.517 0.243 0.819 0 0.828-0.672 1.5-1.5 1.5z" + } + }] +}; +exports.statsDots = statsDots; +var statsBars = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 13h16v2h-16zM2 9h2v3h-2zM5 5h2v7h-2zM8 8h2v4h-2zM11 2h2v10h-2z" + } + }] +}; +exports.statsBars = statsBars; +var statsBars2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4.5 6h-3c-0.275 0-0.5 0.225-0.5 0.5v9c0 0.275 0.225 0.5 0.5 0.5h3c0.275 0 0.5-0.225 0.5-0.5v-9c0-0.275-0.225-0.5-0.5-0.5zM4.5 15h-3v-4h3v4zM9.5 4h-3c-0.275 0-0.5 0.225-0.5 0.5v11c0 0.275 0.225 0.5 0.5 0.5h3c0.275 0 0.5-0.225 0.5-0.5v-11c0-0.275-0.225-0.5-0.5-0.5zM9.5 15h-3v-5h3v5zM14.5 2h-3c-0.275 0-0.5 0.225-0.5 0.5v13c0 0.275 0.225 0.5 0.5 0.5h3c0.275 0 0.5-0.225 0.5-0.5v-13c0-0.275-0.225-0.5-0.5-0.5zM14.5 15h-3v-6h3v6z" + } + }] +}; +exports.statsBars2 = statsBars2; +var trophy = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13 3v-2h-10v2h-3v2c0 1.657 1.343 3 3 3 0.314 0 0.616-0.048 0.9-0.138 0.721 1.031 1.822 1.778 3.1 2.037v3.1h-1c-1.105 0-2 0.895-2 2h8c0-1.105-0.895-2-2-2h-1v-3.1c1.278-0.259 2.378-1.006 3.1-2.037 0.284 0.089 0.587 0.138 0.9 0.138 1.657 0 3-1.343 3-3v-2h-3zM3 6.813c-0.999 0-1.813-0.813-1.813-1.813v-1h1.813v1c0 0.628 0.116 1.229 0.327 1.782-0.106 0.019-0.216 0.030-0.327 0.030zM14.813 5c0 0.999-0.813 1.813-1.813 1.813-0.112 0-0.221-0.011-0.327-0.030 0.211-0.554 0.327-1.154 0.327-1.782v-1h1.813v1z" + } + }] +}; +exports.trophy = trophy; +var gift = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12.055 5c0.283-0.201 0.555-0.425 0.804-0.674 0.522-0.522 0.871-1.164 0.983-1.808 0.123-0.706-0.057-1.362-0.494-1.798-0.348-0.348-0.82-0.533-1.365-0.533-0.775 0-1.593 0.372-2.242 1.021-1.039 1.039-1.644 2.472-1.97 3.496-0.241-1.028-0.722-2.416-1.657-3.351-0.501-0.501-1.142-0.759-1.748-0.759-0.495 0-0.965 0.172-1.317 0.523-0.781 0.781-0.675 2.153 0.236 3.064 0.325 0.325 0.705 0.595 1.105 0.819h-3.391v4h1v7h12v-7h1v-4h-2.945zM10.536 2.003c0.433-0.433 0.974-0.692 1.446-0.692 0.167 0 0.402 0.035 0.57 0.203 0.407 0.407 0.178 1.349-0.489 2.016-0.687 0.687-1.61 1.159-2.413 1.47h-0.792c0.29-0.899 0.813-2.132 1.678-2.997zM3.655 2.514c-0.011-0.143-0.001-0.41 0.191-0.601 0.16-0.16 0.372-0.194 0.521-0.194v0c0.332 0 0.679 0.157 0.952 0.429 0.529 0.529 0.965 1.371 1.26 2.436 0.008 0.029 0.016 0.057 0.023 0.086-0.028-0.008-0.057-0.015-0.086-0.023-1.064-0.295-1.906-0.731-2.436-1.26-0.247-0.247-0.403-0.565-0.426-0.872zM7 15h-4v-6.5h4v6.5zM7 8h-5v-2h5v2zM13 15h-4v-6.5h4v6.5zM14 8h-5v-2h5v2z" + } + }] +}; +exports.gift = gift; +var glass = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12.153 0.263c-0.087-0.162-0.256-0.263-0.44-0.263h-7.425c-0.184 0-0.353 0.101-0.44 0.263-0.554 1.032-0.847 2.237-0.847 3.487 0 1.647 0.506 3.2 1.424 4.374 0.71 0.907 1.601 1.508 2.576 1.753v5.123h-1.5c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5h5c0.276 0 0.5-0.224 0.5-0.5s-0.224-0.5-0.5-0.5h-1.5v-5.123c0.975-0.244 1.866-0.846 2.576-1.753 0.918-1.174 1.424-2.727 1.424-4.374 0-1.249-0.293-2.455-0.847-3.487zM4.595 1h6.809c0.39 0.827 0.595 1.771 0.595 2.75 0 0.084-0.002 0.167-0.005 0.25h-7.991c-0.003-0.083-0.005-0.166-0.005-0.25-0-0.979 0.205-1.923 0.595-2.75z" + } + }] +}; +exports.glass = glass; +var glass2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.893 2.809c0.118-0.151 0.14-0.355 0.057-0.527s-0.258-0.281-0.45-0.281h-11c-0.191 0-0.366 0.109-0.45 0.281s-0.062 0.377 0.057 0.527l4.893 6.228v5.963h-1.5c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5h5c0.276 0 0.5-0.224 0.5-0.5s-0.224-0.5-0.5-0.5h-1.5v-5.963l4.893-6.228zM12.471 3l-1.571 2h-5.8l-1.571-2h8.943z" + } + }] +}; +exports.glass2 = glass2; +var mug = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15 5h-3v-1.5c0-1.381-2.686-2.5-6-2.5s-6 1.119-6 2.5v10c0 1.381 2.686 2.5 6 2.5s6-1.119 6-2.5v-1.5h3c0.552 0 1-0.448 1-1v-5c0-0.552-0.448-1-1-1zM2.751 4.037c-0.578-0.19-0.928-0.394-1.116-0.537 0.188-0.143 0.538-0.347 1.116-0.537 0.905-0.298 2.059-0.463 3.249-0.463s2.344 0.164 3.249 0.463c0.578 0.19 0.928 0.394 1.116 0.537-0.188 0.143-0.538 0.347-1.116 0.537-0.905 0.298-2.059 0.463-3.249 0.463s-2.344-0.164-3.249-0.463zM14 10h-2v-3h2v3z" + } + }] +}; +exports.mug = mug; +var spoonKnife = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M3.5 0c-1.657 0-3 1.567-3 3.5 0 1.655 0.985 3.042 2.308 3.406l-0.497 8.096c-0.034 0.549 0.389 0.998 0.939 0.998h0.5c0.55 0 0.972-0.449 0.939-0.998l-0.497-8.096c1.323-0.365 2.308-1.751 2.308-3.406 0-1.933-1.343-3.5-3-3.5zM13.583 0l-0.833 5h-0.625l-0.417-5h-0.417l-0.417 5h-0.625l-0.833-5h-0.417v6.5c0 0.276 0.224 0.5 0.5 0.5h1.302l-0.491 8.002c-0.034 0.549 0.389 0.998 0.939 0.998h0.5c0.55 0 0.972-0.449 0.939-0.998l-0.491-8.002h1.302c0.276 0 0.5-0.224 0.5-0.5v-6.5h-0.417z" + } + }] +}; +exports.spoonKnife = spoonKnife; +var leaf = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.802 2.102c-1.73-1.311-4.393-2.094-7.124-2.094-3.377 0-6.129 1.179-7.549 3.235-0.667 0.965-1.036 2.109-1.097 3.398-0.054 1.148 0.139 2.418 0.573 3.784 1.482-4.444 5.622-7.923 10.395-7.923 0 0-4.466 1.175-7.274 4.816-0.002 0.002-0.039 0.048-0.103 0.136-0.564 0.754-1.055 1.612-1.423 2.583-0.623 1.482-1.2 3.515-1.2 5.965h2c0 0-0.304-1.91 0.224-4.106 0.873 0.118 1.654 0.177 2.357 0.177 1.839 0 3.146-0.398 4.115-1.252 0.868-0.765 1.347-1.794 1.854-2.882 0.774-1.663 1.651-3.547 4.198-5.002 0.146-0.083 0.24-0.234 0.251-0.402s-0.063-0.329-0.197-0.431z" + } + }] +}; +exports.leaf = leaf; +var rocket = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11 1l-5 5h-3l-3 4c0 0 3.178-0.885 5.032-0.47l-5.032 6.47 6.592-5.127c0.919 2.104-0.592 5.127-0.592 5.127l4-3v-3l5-5 1-5-5 1z" + } + }] +}; +exports.rocket = rocket; +var meter = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 1c4.418 0 8 3.582 8 8 0 3.012-1.665 5.635-4.125 7h-7.75c-2.46-1.365-4.125-3.988-4.125-7 0-4.418 3.582-8 8-8zM12.53 13.53c1.21-1.21 1.876-2.819 1.876-4.53h-1.406v-1h1.329c-0.11-0.703-0.334-1.377-0.665-2h-1.664v-1h1.004c-0.147-0.184-0.306-0.361-0.475-0.53-0.722-0.722-1.587-1.251-2.53-1.559v1.089h-1v-1.329c-0.328-0.051-0.662-0.078-1-0.078s-0.672 0.026-1 0.078v1.329h-1v-1.089c-0.943 0.309-1.808 0.837-2.53 1.559-0.169 0.169-0.327 0.346-0.475 0.53h1.004v1h-1.664c-0.331 0.623-0.555 1.297-0.665 2h1.329v1h-1.406c0 1.711 0.666 3.32 1.876 4.53 0.167 0.167 0.343 0.324 0.524 0.47h3.006l0.571-8h0.857l0.571 8h3.006c0.182-0.146 0.357-0.303 0.524-0.47z" + } + }] +}; +exports.meter = meter; +var meter2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM4.732 13.034c0.174-0.479 0.268-0.995 0.268-1.534 0-1.943-1.231-3.598-2.956-4.228 0.16-1.327 0.754-2.555 1.714-3.514 1.133-1.133 2.64-1.757 4.243-1.757s3.109 0.624 4.243 1.757c0.96 0.96 1.554 2.188 1.714 3.514-1.725 0.63-2.956 2.285-2.956 4.228 0 0.539 0.095 1.055 0.268 1.534-0.964 0.629-2.090 0.966-3.268 0.966s-2.304-0.338-3.268-0.966zM8.621 10.016c0.217 0.055 0.379 0.251 0.379 0.484v1c0 0.275-0.225 0.5-0.5 0.5h-1c-0.275 0-0.5-0.225-0.5-0.5v-1c0-0.233 0.162-0.43 0.379-0.484l0.371-7.016h0.5l0.371 7.016z" + } + }] +}; +exports.meter2 = meter2; +var hammer2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.784 14.309l-8.572-7.804 0.399-0.4c0.326-0.327 0.503-0.75 0.53-1.181 0.016-0.007 0.031-0.014 0.046-0.023l1.609-1.006c0.218-0.256 0.202-0.66-0.036-0.898l-2.799-2.806c-0.237-0.238-0.641-0.254-0.896-0.036l-1.004 1.614c-0.008 0.015-0.015 0.031-0.022 0.046-0.43 0.027-0.852 0.204-1.178 0.531l-1.522 1.527c-0.327 0.327-0.503 0.75-0.53 1.181-0.016 0.007-0.031 0.014-0.046 0.023l-1.609 1.006c-0.218 0.256-0.202 0.66 0.036 0.898l2.799 2.806c0.237 0.238 0.641 0.254 0.896 0.036l1.004-1.614c0.008-0.015 0.015-0.031 0.023-0.046 0.43-0.027 0.852-0.204 1.178-0.531l0.442-0.443 7.783 8.596c0.226 0.249 0.573 0.289 0.773 0.089l0.787-0.789c0.199-0.2 0.159-0.549-0.089-0.775z" + } + }] +}; +exports.hammer2 = hammer2; +var fire = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5.016 16c-1.066-2.219-0.498-3.49 0.321-4.688 0.897-1.312 1.129-2.61 1.129-2.61s0.706 0.917 0.423 2.352c1.246-1.387 1.482-3.598 1.293-4.445 2.817 1.969 4.021 6.232 2.399 9.392 8.631-4.883 2.147-12.19 1.018-13.013 0.376 0.823 0.448 2.216-0.313 2.893-1.287-4.879-4.468-5.879-4.468-5.879 0.376 2.516-1.364 5.268-3.042 7.324-0.059-1.003-0.122-1.696-0.649-2.656-0.118 1.823-1.511 3.309-1.889 5.135-0.511 2.473 0.383 4.284 3.777 6.197z" + } + }] +}; +exports.fire = fire; +var lab = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.942 12.57l-4.942-8.235v-3.335h0.5c0.275 0 0.5-0.225 0.5-0.5s-0.225-0.5-0.5-0.5h-5c-0.275 0-0.5 0.225-0.5 0.5s0.225 0.5 0.5 0.5h0.5v3.335l-4.942 8.235c-1.132 1.886-0.258 3.43 1.942 3.43h10c2.2 0 3.074-1.543 1.942-3.43zM3.766 10l3.234-5.39v-3.61h2v3.61l3.234 5.39h-8.468z" + } + }] +}; +exports.lab = lab; +var magnet = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14 0h-4l1 9c0 1.657-1.343 3-3 3s-3-1.343-3-3l1-9h-4l-1 9c0 3.866 3.134 7 7 7s7-3.134 7-7l-1-9zM12.154 13.154c-1.11 1.11-2.585 1.721-4.154 1.721s-3.045-0.611-4.154-1.721c-1.096-1.096-1.705-2.548-1.72-4.095l0.564-5.075h1.736l-0.55 4.953v0.062c0 1.102 0.429 2.138 1.208 2.917s1.815 1.208 2.917 1.208 2.138-0.429 2.917-1.208c0.779-0.779 1.208-1.815 1.208-2.917v-0.062l-0.007-0.062-0.543-4.891h1.736l0.564 5.075c-0.015 1.547-0.625 2.999-1.72 4.095z" + } + }] +}; +exports.magnet = magnet; +var bin = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M2 5v10c0 0.55 0.45 1 1 1h9c0.55 0 1-0.45 1-1v-10h-11zM5 14h-1v-7h1v7zM7 14h-1v-7h1v7zM9 14h-1v-7h1v7zM11 14h-1v-7h1v7z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.25 2h-3.25v-1.25c0-0.412-0.338-0.75-0.75-0.75h-3.5c-0.412 0-0.75 0.338-0.75 0.75v1.25h-3.25c-0.413 0-0.75 0.337-0.75 0.75v1.25h13v-1.25c0-0.413-0.338-0.75-0.75-0.75zM9 2h-3v-0.987h3v0.987z" + } + }] +}; +exports.bin = bin; +var bin2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M3 16h10l1-11h-12zM10 2v-2h-4v2h-5v3l1-1h12l1 1v-3h-5zM9 2h-2v-1h2v1z" + } + }] +}; +exports.bin2 = bin2; +var briefcase = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15 4h-4v-1c0-0.55-0.45-1-1-1h-4c-0.55 0-1 0.45-1 1v1h-4c-0.55 0-1 0.45-1 1v9c0 0.55 0.45 1 1 1h14c0.55 0 1-0.45 1-1v-9c0-0.55-0.45-1-1-1zM6 3.002c0.001-0.001 0.001-0.001 0.002-0.002h3.996c0.001 0.001 0.001 0.001 0.002 0.002v0.998h-4v-0.998zM15 8h-2v1.5c0 0.275-0.225 0.5-0.5 0.5h-1c-0.275 0-0.5-0.225-0.5-0.5v-1.5h-6v1.5c0 0.275-0.225 0.5-0.5 0.5h-1c-0.275 0-0.5-0.225-0.5-0.5v-1.5h-2v-1h14v1z" + } + }] +}; +exports.briefcase = briefcase; +var airplane = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12 9.999l-2.857-2.857 6.857-5.143-2-2-8.571 3.429-2.698-2.699c-0.778-0.778-1.864-0.964-2.414-0.414s-0.364 1.636 0.414 2.414l2.698 2.698-3.429 8.572 2 2 5.144-6.857 2.857 2.857v4h2l1-3 3-1v-2l-4 0z" + } + }] +}; +exports.airplane = airplane; +var truck = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16 9l-2-4h-3v-2c0-0.55-0.45-1-1-1h-9c-0.55 0-1 0.45-1 1v8l1 1h1.268c-0.17 0.294-0.268 0.636-0.268 1 0 1.105 0.895 2 2 2s2-0.895 2-2c0-0.364-0.098-0.706-0.268-1h5.536c-0.17 0.294-0.268 0.636-0.268 1 0 1.105 0.895 2 2 2s2-0.895 2-2c0-0.364-0.098-0.706-0.268-1h1.268v-3zM11 9v-3h2.073l1.5 3h-3.573z" + } + }] +}; +exports.truck = truck; +var road = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11 16h5l-4-16h-3l0.5 4h-3l0.5-4h-3l-4 16h5l0.5-4h5l0.5 4zM5.75 10l0.5-4h3.5l0.5 4h-4.5z" + } + }] +}; +exports.road = road; +var accessibility = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6.5 1.5c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M10 5l5.15-2.221-0.371-0.929-6.279 2.15h-1l-6.279-2.15-0.371 0.929 5.15 2.221v4l-2.051 6.634 0.935 0.355 2.902-6.489h0.429l2.902 6.489 0.935-0.355-2.051-6.634z" + } + }] +}; +exports.accessibility = accessibility; +var target = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16 7h-1.577c-0.432-2.785-2.638-4.991-5.423-5.423v-1.577h-2v1.577c-2.785 0.432-4.991 2.638-5.423 5.423h-1.577v2h1.577c0.432 2.785 2.638 4.991 5.423 5.423v1.577h2v-1.577c2.785-0.432 4.991-2.638 5.423-5.423h1.577v-2zM12.388 7h-1.559c-0.301-0.852-0.977-1.528-1.829-1.829v-1.559c1.68 0.383 3.005 1.708 3.388 3.388zM8 9c-0.552 0-1-0.448-1-1s0.448-1 1-1c0.552 0 1 0.448 1 1s-0.448 1-1 1zM7 3.612v1.559c-0.852 0.301-1.528 0.977-1.829 1.829h-1.559c0.383-1.68 1.708-3.005 3.388-3.388zM3.612 9h1.559c0.301 0.852 0.977 1.528 1.829 1.829v1.559c-1.68-0.383-3.005-1.708-3.388-3.388zM9 12.388v-1.559c0.852-0.301 1.528-0.977 1.829-1.829h1.559c-0.383 1.68-1.708 3.005-3.388 3.388z" + } + }] +}; +exports.target = target; +var shield = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15 0l-7 2-7-2c0 0-0.070 0.808 0 2l7 2.189 7-2.189c0.070-1.192 0-2 0-2zM1.128 3.049c0.375 3.917 1.773 10.504 6.872 12.951 5.099-2.448 6.497-9.034 6.872-12.951l-6.872 2.584-6.872-2.584z" + } + }] +}; +exports.shield = shield; +var power = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6 0l-6 8h6l-4 8 14-10h-8l6-6z" + } + }] +}; +exports.power = power; +var switchIcon = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M10 2.29v2.124c0.566 0.247 1.086 0.6 1.536 1.050 0.944 0.944 1.464 2.2 1.464 3.536s-0.52 2.591-1.464 3.536c-0.944 0.944-2.2 1.464-3.536 1.464s-2.591-0.52-3.536-1.464c-0.944-0.944-1.464-2.2-1.464-3.536s0.52-2.591 1.464-3.536c0.45-0.45 0.97-0.803 1.536-1.050v-2.124c-2.891 0.861-5 3.539-5 6.71 0 3.866 3.134 7 7 7s7-3.134 7-7c0-3.171-2.109-5.849-5-6.71zM7 0h2v8h-2z" + } + }] +}; +exports.switchIcon = switchIcon; +var powerCord = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16 4.414l-1.414-1.414-2.793 2.793-1.586-1.586 2.793-2.793-1.414-1.414-2.793 2.793-1.793-1.793-1.354 1.353 8 8 1.354-1.353-1.793-1.793 2.793-2.793z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12.407 10.528l-6.935-6.935c-1.497 1.795-3.196 4.57-2.022 6.957l-2.066 2.066c-0.486 0.486-0.486 1.282 0 1.768l0.232 0.232c0.486 0.486 1.282 0.486 1.768 0l2.066-2.066c2.387 1.174 5.161-0.524 6.957-2.022z" + } + }] +}; +exports.powerCord = powerCord; +var clipboard = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.5 2h-4.5c0-1.105-0.895-2-2-2s-2 0.895-2 2h-4.5c-0.276 0-0.5 0.224-0.5 0.5v13c0 0.276 0.224 0.5 0.5 0.5h13c0.276 0 0.5-0.224 0.5-0.5v-13c0-0.276-0.224-0.5-0.5-0.5zM8 1c0.552 0 1 0.448 1 1s-0.448 1-1 1c-0.552 0-1-0.448-1-1s0.448-1 1-1zM14 15h-12v-12h2v1.5c0 0.276 0.224 0.5 0.5 0.5h7c0.276 0 0.5-0.224 0.5-0.5v-1.5h2v12z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7 13.414l-3.207-3.707 0.914-0.914 2.293 1.793 4.293-3.793 0.914 0.914z" + } + }] +}; +exports.clipboard = clipboard; +var listNumbered = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6 13h10v2h-10zM6 7h10v2h-10zM6 1h10v2h-10zM3 0v4h-1v-3h-1v-1zM2 8.219v0.781h2v1h-3v-2.281l2-0.938v-0.781h-2v-1h3v2.281zM4 11v5h-3v-1h2v-1h-2v-1h2v-1h-2v-1z" + } + }] +}; +exports.listNumbered = listNumbered; +var list = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 0h4v4h-4zM6 1h10v2h-10zM0 6h4v4h-4zM6 7h10v2h-10zM0 12h4v4h-4zM6 13h10v2h-10z" + } + }] +}; +exports.list = list; +var list2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6 1h10v2h-10v-2zM6 7h10v2h-10v-2zM6 13h10v2h-10v-2zM0 2c0-1.105 0.895-2 2-2s2 0.895 2 2c0 1.105-0.895 2-2 2s-2-0.895-2-2zM0 8c0-1.105 0.895-2 2-2s2 0.895 2 2c0 1.105-0.895 2-2 2s-2-0.895-2-2zM0 14c0-1.105 0.895-2 2-2s2 0.895 2 2c0 1.105-0.895 2-2 2s-2-0.895-2-2z" + } + }] +}; +exports.list2 = list2; +var tree = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.25 12h-0.25v-3.25c0-0.965-0.785-1.75-1.75-1.75h-4.25v-2h0.25c0.412 0 0.75-0.338 0.75-0.75v-2.5c0-0.413-0.338-0.75-0.75-0.75h-2.5c-0.412 0-0.75 0.337-0.75 0.75v2.5c0 0.412 0.338 0.75 0.75 0.75h0.25v2h-4.25c-0.965 0-1.75 0.785-1.75 1.75v3.25h-0.25c-0.412 0-0.75 0.338-0.75 0.75v2.5c0 0.412 0.338 0.75 0.75 0.75h2.5c0.413 0 0.75-0.338 0.75-0.75v-2.5c0-0.412-0.337-0.75-0.75-0.75h-0.25v-3h4v3h-0.25c-0.412 0-0.75 0.338-0.75 0.75v2.5c0 0.412 0.338 0.75 0.75 0.75h2.5c0.412 0 0.75-0.338 0.75-0.75v-2.5c0-0.412-0.338-0.75-0.75-0.75h-0.25v-3h4v3h-0.25c-0.412 0-0.75 0.338-0.75 0.75v2.5c0 0.412 0.338 0.75 0.75 0.75h2.5c0.412 0 0.75-0.338 0.75-0.75v-2.5c0-0.412-0.338-0.75-0.75-0.75zM3 15h-2v-2h2v2zM9 15h-2v-2h2v2zM7 4v-2h2v2h-2zM15 15h-2v-2h2v2z" + } + }] +}; +exports.tree = tree; +var menu = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M1 3h14v3h-14zM1 7h14v3h-14zM1 11h14v3h-14z" + } + }] +}; +exports.menu = menu; +var menu2 = { + "viewBox": "0 0 22 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 3h14v3h-14v-3zM0 7h14v3h-14v-3zM0 11h14v3h-14v-3z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.5 9l3 3 3-3z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M21.5 8l-3-3-3 3z" + } + }] +}; +exports.menu2 = menu2; +var menu3 = { + "viewBox": "0 0 22 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 3h14v3h-14v-3zM0 7h14v3h-14v-3zM0 11h14v3h-14v-3z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.5 7l3 3 3-3z" + } + }] +}; +exports.menu3 = menu3; +var menu4 = { + "viewBox": "0 0 22 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 3h14v3h-14v-3zM0 7h14v3h-14v-3zM0 11h14v3h-14v-3z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.5 10l3-3 3 3z" + } + }] +}; +exports.menu4 = menu4; +var cloud = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16 10.274c0-1.283-0.886-2.358-2.078-2.648-0.051-2.011-1.695-3.626-3.717-3.626-1.184 0-2.239 0.555-2.92 1.418-0.382-0.494-0.98-0.812-1.652-0.812-1.153 0-2.088 0.936-2.088 2.089 0 0.101 0.007 0.199 0.021 0.296-0.175-0.032-0.356-0.049-0.54-0.049-1.672-0-3.027 1.356-3.027 3.029s1.355 3.029 3.027 3.029l10.254-0c1.502-0.003 2.719-1.222 2.719-2.726z" + } + }] +}; +exports.cloud = cloud; +var cloudDownload = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.922 5.626c-0.051-2.011-1.695-3.626-3.717-3.626-1.184 0-2.239 0.555-2.92 1.418-0.382-0.494-0.98-0.812-1.652-0.812-1.153 0-2.088 0.936-2.088 2.089 0 0.101 0.007 0.199 0.021 0.296-0.175-0.032-0.356-0.049-0.54-0.049-1.672-0-3.027 1.356-3.027 3.029s1.355 3.029 3.027 3.029h1.434l3.539 3.664 3.539-3.664 1.742-0c1.502-0.003 2.719-1.222 2.719-2.726 0-1.283-0.886-2.358-2.078-2.648zM8 13l-3-3h2v-3h2v3h2l-3 3z" + } + }] +}; +exports.cloudDownload = cloudDownload; +var cloudUpload = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.942 6.039c0.038-0.174 0.058-0.354 0.058-0.539 0-1.381-1.119-2.5-2.5-2.5-0.222 0-0.438 0.029-0.643 0.084-0.387-1.209-1.52-2.084-2.857-2.084-1.365 0-2.516 0.911-2.88 2.159-0.355-0.103-0.731-0.159-1.12-0.159-2.209 0-4 1.791-4 4s1.791 4 4 4h2v3h4v-3h3.5c1.381 0 2.5-1.119 2.5-2.5 0-1.23-0.888-2.253-2.058-2.461zM9 10v3h-2v-3h-2.5l3.5-3.5 3.5 3.5h-2.5z" + } + }] +}; +exports.cloudUpload = cloudUpload; +var cloudCheck = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.942 8.039c0.038-0.174 0.058-0.354 0.058-0.539 0-1.381-1.119-2.5-2.5-2.5-0.222 0-0.438 0.029-0.643 0.084-0.387-1.209-1.52-2.084-2.857-2.084-1.365 0-2.516 0.911-2.88 2.159-0.355-0.103-0.731-0.159-1.12-0.159-2.209 0-4 1.791-4 4s1.791 4 4 4h9.5c1.381 0 2.5-1.119 2.5-2.5 0-1.23-0.888-2.252-2.058-2.461zM6.5 12l-2.5-2.5 1-1 1.5 1.5 3.5-3.5 1 1-4.5 4.5z" + } + }] +}; +exports.cloudCheck = cloudCheck; +var download2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14 8h-2.5l-3.5 3.5-3.5-3.5h-2.5l-2 4v1h16v-1l-2-4zM0 14h16v1h-16v-1zM9 5v-4h-2v4h-3.5l4.5 4.5 4.5-4.5h-3.5z" + } + }] +}; +exports.download2 = download2; +var upload2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 14h16v1h-16zM16 12v1h-16v-1l2-4h4v2h4v-2h4zM3.5 5l4.5-4.5 4.5 4.5h-3.5v4h-2v-4z" + } + }] +}; +exports.upload2 = upload2; +var download3 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.5 7l-4 4-4-4h2.5v-6h3v6zM7.5 11h-7.5v4h15v-4h-7.5zM14 13h-2v-1h2v1z" + } + }] +}; +exports.download3 = download3; +var upload3 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7.5 11h-7.5v4h15v-4h-7.5zM14 13h-2v-1h2v1zM3.5 5l4-4 4 4h-2.5v5h-3v-5z" + } + }] +}; +exports.upload3 = upload3; +var sphere = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7.5 1c-4.142 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5c4.142 0 7.5-3.358 7.5-7.5s-3.358-7.5-7.5-7.5zM11.744 11c0.134-0.632 0.219-1.303 0.246-2h1.991c-0.052 0.691-0.213 1.361-0.479 2h-1.758zM3.256 6c-0.134 0.632-0.219 1.303-0.246 2h-1.991c0.052-0.691 0.213-1.361 0.479-2h1.758zM10.719 6c0.15 0.64 0.241 1.31 0.27 2h-2.989v-2h2.719zM8 5v-2.927c0.228 0.066 0.454 0.178 0.675 0.334 0.415 0.293 0.813 0.744 1.149 1.304 0.233 0.388 0.434 0.819 0.601 1.289h-2.426zM5.176 3.711c0.336-0.561 0.734-1.012 1.149-1.304 0.222-0.156 0.447-0.268 0.675-0.334v2.927h-2.426c0.168-0.47 0.369-0.901 0.601-1.289zM7 6v2h-2.989c0.029-0.69 0.12-1.36 0.27-2h2.719zM1.498 11c-0.266-0.639-0.427-1.309-0.479-2h1.991c0.028 0.697 0.112 1.368 0.246 2h-1.758zM4.011 9h2.989v2h-2.719c-0.15-0.64-0.241-1.31-0.27-2zM7 12v2.927c-0.228-0.066-0.454-0.178-0.675-0.334-0.415-0.293-0.813-0.744-1.149-1.304-0.233-0.388-0.434-0.819-0.602-1.289h2.426zM9.825 13.289c-0.336 0.561-0.734 1.012-1.149 1.304-0.222 0.156-0.447 0.268-0.675 0.334v-2.927h2.426c-0.168 0.47-0.369 0.901-0.602 1.289zM8 11v-2h2.989c-0.029 0.69-0.12 1.36-0.27 2h-2.719zM11.99 8c-0.028-0.697-0.112-1.368-0.246-2h1.758c0.267 0.639 0.427 1.309 0.479 2h-1.991zM12.979 5h-1.498c-0.291-0.918-0.693-1.723-1.177-2.366 0.665 0.318 1.267 0.744 1.792 1.27 0.336 0.336 0.631 0.702 0.883 1.096zM2.904 3.904c0.526-0.526 1.128-0.952 1.792-1.27-0.483 0.643-0.886 1.448-1.177 2.366h-1.498c0.252-0.394 0.547-0.761 0.883-1.096zM2.021 12h1.498c0.291 0.918 0.693 1.723 1.177 2.366-0.665-0.318-1.267-0.744-1.792-1.27-0.336-0.336-0.631-0.702-0.883-1.096zM12.096 13.096c-0.526 0.526-1.128 0.952-1.792 1.27 0.483-0.643 0.886-1.448 1.177-2.366h1.498c-0.252 0.394-0.547 0.761-0.883 1.096z" + } + }] +}; +exports.sphere = sphere; +var earth = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM8 15c-0.984 0-1.92-0.203-2.769-0.57l3.643-4.098c0.081-0.092 0.126-0.21 0.126-0.332v-1.5c0-0.276-0.224-0.5-0.5-0.5-1.765 0-3.628-1.835-3.646-1.854-0.094-0.094-0.221-0.146-0.354-0.146h-2c-0.276 0-0.5 0.224-0.5 0.5v3c0 0.189 0.107 0.363 0.276 0.447l1.724 0.862v2.936c-1.813-1.265-3-3.366-3-5.745 0-1.074 0.242-2.091 0.674-3h1.826c0.133 0 0.26-0.053 0.354-0.146l2-2c0.094-0.094 0.146-0.221 0.146-0.354v-1.21c0.634-0.189 1.305-0.29 2-0.29 1.1 0 2.141 0.254 3.067 0.706-0.065 0.055-0.128 0.112-0.188 0.172-0.567 0.567-0.879 1.32-0.879 2.121s0.312 1.555 0.879 2.121c0.569 0.569 1.332 0.879 2.119 0.879 0.049 0 0.099-0.001 0.149-0.004 0.216 0.809 0.605 2.917-0.131 5.818-0.007 0.027-0.011 0.055-0.013 0.082-1.271 1.298-3.042 2.104-5.002 2.104z" + } + }] +}; +exports.earth = earth; +var link = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6.879 9.934c-0.208 0-0.416-0.079-0.575-0.238-1.486-1.486-1.486-3.905 0-5.392l3-3c0.72-0.72 1.678-1.117 2.696-1.117s1.976 0.397 2.696 1.117c1.486 1.487 1.486 3.905 0 5.392l-1.371 1.371c-0.317 0.317-0.832 0.317-1.149 0s-0.317-0.832 0-1.149l1.371-1.371c0.853-0.853 0.853-2.241 0-3.094-0.413-0.413-0.963-0.641-1.547-0.641s-1.134 0.228-1.547 0.641l-3 3c-0.853 0.853-0.853 2.241 0 3.094 0.317 0.317 0.317 0.832 0 1.149-0.159 0.159-0.367 0.238-0.575 0.238z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4 15.813c-1.018 0-1.976-0.397-2.696-1.117-1.486-1.486-1.486-3.905 0-5.392l1.371-1.371c0.317-0.317 0.832-0.317 1.149 0s0.317 0.832 0 1.149l-1.371 1.371c-0.853 0.853-0.853 2.241 0 3.094 0.413 0.413 0.962 0.641 1.547 0.641s1.134-0.228 1.547-0.641l3-3c0.853-0.853 0.853-2.241 0-3.094-0.317-0.317-0.317-0.832 0-1.149s0.832-0.317 1.149 0c1.486 1.486 1.486 3.905 0 5.392l-3 3c-0.72 0.72-1.678 1.117-2.696 1.117z" + } + }] +}; +exports.link = link; +var flag = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 0h2v16h-2v-16z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13 10.047c1.291 0 2.415-0.312 3-0.773v-8c-0.585 0.461-1.709 0.773-3 0.773s-2.415-0.312-3-0.773v8c0.585 0.461 1.709 0.773 3 0.773z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9.5 0.508c-0.733-0.312-1.805-0.508-3-0.508-1.506 0-2.818 0.312-3.5 0.773v8c0.682-0.461 1.994-0.773 3.5-0.773 1.195 0 2.267 0.197 3 0.508v-8z" + } + }] +}; +exports.flag = flag; +var attachment = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M10.404 5.11l-1.015-1.014-5.075 5.074c-0.841 0.841-0.841 2.204 0 3.044s2.204 0.841 3.045 0l6.090-6.089c1.402-1.401 1.402-3.673 0-5.074s-3.674-1.402-5.075 0l-6.394 6.393c-0.005 0.005-0.010 0.009-0.014 0.013-1.955 1.955-1.955 5.123 0 7.077s5.123 1.954 7.078 0c0.004-0.004 0.008-0.009 0.013-0.014l0.001 0.001 4.365-4.364-1.015-1.014-4.365 4.363c-0.005 0.004-0.009 0.009-0.013 0.013-1.392 1.392-3.656 1.392-5.048 0s-1.392-3.655 0-5.047c0.005-0.005 0.009-0.009 0.014-0.013l-0.001-0.001 6.395-6.393c0.839-0.84 2.205-0.84 3.045 0s0.839 2.205 0 3.044l-6.090 6.089c-0.28 0.28-0.735 0.28-1.015 0s-0.28-0.735 0-1.014l5.075-5.075z" + } + }] +}; +exports.attachment = attachment; +var eye = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 3c-3.489 0-6.514 2.032-8 5 1.486 2.968 4.511 5 8 5s6.514-2.032 8-5c-1.486-2.968-4.511-5-8-5zM11.945 5.652c0.94 0.6 1.737 1.403 2.335 2.348-0.598 0.946-1.395 1.749-2.335 2.348-1.181 0.753-2.545 1.152-3.944 1.152s-2.763-0.398-3.945-1.152c-0.94-0.6-1.737-1.403-2.335-2.348 0.598-0.946 1.395-1.749 2.335-2.348 0.061-0.039 0.123-0.077 0.185-0.114-0.156 0.427-0.241 0.888-0.241 1.369 0 2.209 1.791 4 4 4s4-1.791 4-4c0-0.481-0.085-0.942-0.241-1.369 0.062 0.037 0.124 0.075 0.185 0.114v0zM8 6.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5 0.672-1.5 1.5-1.5 1.5 0.672 1.5 1.5z" + } + }] +}; +exports.eye = eye; +var eyePlus = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16 2h-2v-2h-2v2h-2v2h2v2h2v-2h2z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.498 6.969c0.288 0.32 0.55 0.665 0.782 1.031-0.598 0.946-1.395 1.749-2.335 2.348-1.181 0.753-2.545 1.152-3.944 1.152s-2.763-0.398-3.945-1.152c-0.94-0.6-1.736-1.403-2.335-2.348 0.598-0.946 1.395-1.749 2.335-2.348 0.061-0.039 0.123-0.077 0.185-0.114-0.156 0.427-0.241 0.888-0.241 1.369 0 2.209 1.791 4 4 4s4-1.791 4-4c0-0.011-0-0.022-0-0.032-1.708-0.44-2.973-1.979-2.999-3.817-0.329-0.037-0.662-0.057-1.001-0.057-3.489 0-6.514 2.032-8 5 1.486 2.968 4.511 5 8 5s6.514-2.032 8-5c-0.276-0.55-0.604-1.069-0.979-1.548-0.457 0.268-0.973 0.449-1.523 0.517zM6.5 5c0.828 0 1.5 0.672 1.5 1.5s-0.672 1.5-1.5 1.5-1.5-0.672-1.5-1.5 0.672-1.5 1.5-1.5z" + } + }] +}; +exports.eyePlus = eyePlus; +var eyeMinus = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M10 2h6v2h-6v-2z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.599 5h-4.599v-1.944c-0.328-0.037-0.662-0.056-1-0.056-3.489 0-6.514 2.032-8 5 1.486 2.968 4.511 5 8 5s6.514-2.032 8-5c-0.584-1.167-1.407-2.189-2.401-3zM6.5 5c0.828 0 1.5 0.672 1.5 1.5s-0.672 1.5-1.5 1.5-1.5-0.672-1.5-1.5 0.672-1.5 1.5-1.5zM11.944 10.348c-1.181 0.753-2.545 1.152-3.944 1.152s-2.763-0.398-3.945-1.152c-0.94-0.6-1.736-1.403-2.335-2.348 0.598-0.946 1.395-1.749 2.335-2.348 0.061-0.039 0.123-0.077 0.185-0.114-0.156 0.427-0.241 0.888-0.241 1.369 0 2.209 1.791 4 4 4s4-1.791 4-4c0-0.481-0.085-0.942-0.241-1.369 0.062 0.037 0.124 0.075 0.185 0.114 0.94 0.6 1.737 1.403 2.335 2.348-0.598 0.946-1.395 1.749-2.335 2.348z" + } + }] +}; +exports.eyeMinus = eyeMinus; +var eyeBlocked = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.78 0.22c-0.293-0.293-0.768-0.293-1.061 0l-3.159 3.159c-0.812-0.246-1.671-0.378-2.561-0.378-3.489 0-6.514 2.032-8 5 0.643 1.283 1.573 2.391 2.703 3.236l-2.484 2.484c-0.293 0.293-0.293 0.768 0 1.061 0.146 0.146 0.338 0.22 0.53 0.22s0.384-0.073 0.53-0.22l13.5-13.5c0.293-0.293 0.293-0.768 0-1.061zM6.5 5c0.66 0 1.22 0.426 1.421 1.019l-1.902 1.902c-0.592-0.201-1.019-0.761-1.019-1.421 0-0.828 0.672-1.5 1.5-1.5zM1.721 8c0.598-0.946 1.395-1.749 2.335-2.348 0.061-0.039 0.123-0.077 0.185-0.114-0.156 0.427-0.241 0.888-0.241 1.369 0 0.858 0.27 1.652 0.73 2.303l-0.952 0.952c-0.819-0.576-1.519-1.311-2.057-2.162z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12 6.906c0-0.424-0.066-0.833-0.189-1.217l-5.028 5.028c0.384 0.123 0.793 0.189 1.217 0.189 2.209 0 4-1.791 4-4z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12.969 4.531l-1.084 1.084c0.020 0.012 0.040 0.024 0.059 0.037 0.94 0.6 1.737 1.403 2.335 2.348-0.598 0.946-1.395 1.749-2.335 2.348-1.181 0.753-2.545 1.152-3.944 1.152-0.604 0-1.202-0.074-1.781-0.219l-1.201 1.201c0.933 0.335 1.937 0.518 2.982 0.518 3.489 0 6.514-2.032 8-5-0.703-1.405-1.752-2.6-3.031-3.469z" + } + }] +}; +exports.eyeBlocked = eyeBlocked; +var bookmark = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M3 0v16l5-5 5 5v-16z" + } + }] +}; +exports.bookmark = bookmark; +var bookmarks = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4 2v14l5-5 5 5v-14zM12 0h-10v14l1-1v-12h9z" + } + }] +}; +exports.bookmarks = bookmarks; +var sun = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 13c0.552 0 1 0.448 1 1v1c0 0.552-0.448 1-1 1s-1-0.448-1-1v-1c0-0.552 0.448-1 1-1zM8 3c-0.552 0-1-0.448-1-1v-1c0-0.552 0.448-1 1-1s1 0.448 1 1v1c0 0.552-0.448 1-1 1zM15 7c0.552 0 1 0.448 1 1s-0.448 1-1 1h-1c-0.552 0-1-0.448-1-1s0.448-1 1-1h1zM3 8c0 0.552-0.448 1-1 1h-1c-0.552 0-1-0.448-1-1s0.448-1 1-1h1c0.552 0 1 0.448 1 1zM12.95 11.536l0.707 0.707c0.39 0.39 0.39 1.024 0 1.414s-1.024 0.39-1.414 0l-0.707-0.707c-0.39-0.39-0.39-1.024 0-1.414s1.024-0.39 1.414 0zM3.050 4.464l-0.707-0.707c-0.391-0.391-0.391-1.024 0-1.414s1.024-0.391 1.414 0l0.707 0.707c0.391 0.391 0.391 1.024 0 1.414s-1.024 0.391-1.414 0zM12.95 4.464c-0.39 0.391-1.024 0.391-1.414 0s-0.39-1.024 0-1.414l0.707-0.707c0.39-0.391 1.024-0.391 1.414 0s0.39 1.024 0 1.414l-0.707 0.707zM3.050 11.536c0.39-0.39 1.024-0.39 1.414 0s0.391 1.024 0 1.414l-0.707 0.707c-0.391 0.39-1.024 0.39-1.414 0s-0.391-1.024 0-1.414l0.707-0.707z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 4c-2.209 0-4 1.791-4 4s1.791 4 4 4c2.209 0 4-1.791 4-4s-1.791-4-4-4zM8 10.5c-1.381 0-2.5-1.119-2.5-2.5s1.119-2.5 2.5-2.5 2.5 1.119 2.5 2.5-1.119 2.5-2.5 2.5z" + } + }] +}; +exports.sun = sun; +var contrast = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM2 8c0-3.314 2.686-6 6-6v12c-3.314 0-6-2.686-6-6z" + } + }] +}; +exports.contrast = contrast; +var brightnessContrast = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 4c-2.209 0-4 1.791-4 4s1.791 4 4 4 4-1.791 4-4-1.791-4-4-4zM8 10.5v-5c1.379 0 2.5 1.122 2.5 2.5s-1.121 2.5-2.5 2.5zM8 13c0.552 0 1 0.448 1 1v1c0 0.552-0.448 1-1 1s-1-0.448-1-1v-1c0-0.552 0.448-1 1-1zM8 3c-0.552 0-1-0.448-1-1v-1c0-0.552 0.448-1 1-1s1 0.448 1 1v1c0 0.552-0.448 1-1 1zM15 7c0.552 0 1 0.448 1 1s-0.448 1-1 1h-1c-0.552 0-1-0.448-1-1s0.448-1 1-1h1zM3 8c0 0.552-0.448 1-1 1h-1c-0.552 0-1-0.448-1-1s0.448-1 1-1h1c0.552 0 1 0.448 1 1zM12.95 11.536l0.707 0.707c0.39 0.39 0.39 1.024 0 1.414s-1.024 0.39-1.414 0l-0.707-0.707c-0.39-0.39-0.39-1.024 0-1.414s1.024-0.39 1.414 0zM3.050 4.464l-0.707-0.707c-0.391-0.391-0.391-1.024 0-1.414s1.024-0.391 1.414 0l0.707 0.707c0.391 0.391 0.391 1.024 0 1.414s-1.024 0.391-1.414 0zM12.95 4.464c-0.39 0.391-1.024 0.391-1.414 0s-0.39-1.024 0-1.414l0.707-0.707c0.39-0.391 1.024-0.391 1.414 0s0.39 1.024 0 1.414l-0.707 0.707zM3.050 11.536c0.39-0.39 1.024-0.39 1.414 0s0.391 1.024 0 1.414l-0.707 0.707c-0.391 0.39-1.024 0.39-1.414 0s-0.391-1.024 0-1.414l0.707-0.707z" + } + }] +}; +exports.brightnessContrast = brightnessContrast; +var starEmpty = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16 6.204l-5.528-0.803-2.472-5.009-2.472 5.009-5.528 0.803 4 3.899-0.944 5.505 4.944-2.599 4.944 2.599-0.944-5.505 4-3.899zM8 11.773l-3.492 1.836 0.667-3.888-2.825-2.753 3.904-0.567 1.746-3.537 1.746 3.537 3.904 0.567-2.825 2.753 0.667 3.888-3.492-1.836z" + } + }] +}; +exports.starEmpty = starEmpty; +var starHalf = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16 6.204l-5.528-0.803-2.472-5.009-2.472 5.009-5.528 0.803 4 3.899-0.944 5.505 4.944-2.599 4.944 2.599-0.944-5.505 4-3.899zM8 11.773l-0.015 0.008 0.015-8.918 1.746 3.537 3.904 0.567-2.825 2.753 0.667 3.888-3.492-1.836z" + } + }] +}; +exports.starHalf = starHalf; +var starFull = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16 6.204l-5.528-0.803-2.472-5.009-2.472 5.009-5.528 0.803 4 3.899-0.944 5.505 4.944-2.599 4.944 2.599-0.944-5.505 4-3.899z" + } + }] +}; +exports.starFull = starFull; +var heart = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.8 1c-1.682 0-3.129 1.368-3.799 2.797-0.671-1.429-2.118-2.797-3.8-2.797-2.318 0-4.2 1.882-4.2 4.2 0 4.716 4.758 5.953 8 10.616 3.065-4.634 8-6.050 8-10.616 0-2.319-1.882-4.2-4.2-4.2z" + } + }] +}; +exports.heart = heart; +var heartBroken = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.8 1c2.318 0 4.2 1.882 4.2 4.2 0 4.566-4.935 5.982-8 10.616-3.243-4.663-8-5.9-8-10.616 0-2.319 1.882-4.2 4.2-4.2 0.943 0 1.812 0.43 2.512 1.060l-1.213 1.94 3.5 2-2 5 5.5-6-3.5-2 0.967-1.451c0.553-0.34 1.175-0.549 1.833-0.549z" + } + }] +}; +exports.heartBroken = heartBroken; +var man = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9 1.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9 4h-3c-0.552 0-1 0.448-1 1v5h1v6h1.25v-6h0.5v6h1.25v-6h1v-5c0-0.552-0.448-1-1-1z" + } + }] +}; +exports.man = man; +var woman = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9 1.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.234 8l0.766-0.555-2.083-3.221c-0.092-0.14-0.249-0.225-0.417-0.225h-4c-0.168 0-0.325 0.084-0.417 0.225l-2.083 3.221 0.766 0.555 1.729-2.244 0.601 1.402-2.095 3.841h1.917l0.333 5h1v-5h0.5v5h1l0.333-5h1.917l-2.095-3.842 0.601-1.402 1.729 2.244z" + } + }] +}; +exports.woman = woman; +var manWoman = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4 1.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13 1.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4 4h-3c-0.552 0-1 0.448-1 1v5h1v6h1.25v-6h0.5v6h1.25v-6h1v-5c0-0.552-0.448-1-1-1z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.234 8l0.766-0.555-2.083-3.221c-0.092-0.14-0.249-0.225-0.417-0.225h-4c-0.168 0-0.325 0.084-0.417 0.225l-2.083 3.221 0.766 0.555 1.729-2.244 0.601 1.402-2.095 3.841h1.917l0.333 5h1v-5h0.5v5h1l0.333-5h1.917l-2.095-3.842 0.601-1.402 1.729 2.244z" + } + }] +}; +exports.manWoman = manWoman; +var happy = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5zM8 9.356c1.812 0 3.535-0.481 5-1.327-0.228 2.788-2.393 4.971-5 4.971s-4.772-2.186-5-4.973c1.465 0.845 3.188 1.329 5 1.329zM4 5.5c0-0.828 0.448-1.5 1-1.5s1 0.672 1 1.5c0 0.828-0.448 1.5-1 1.5s-1-0.672-1-1.5zM10 5.5c0-0.828 0.448-1.5 1-1.5s1 0.672 1 1.5c0 0.828-0.448 1.5-1 1.5s-1-0.672-1-1.5z" + } + }] +}; +exports.happy = happy; +var happy2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM11 4c0.552 0 1 0.672 1 1.5s-0.448 1.5-1 1.5-1-0.672-1-1.5 0.448-1.5 1-1.5zM5 4c0.552 0 1 0.672 1 1.5s-0.448 1.5-1 1.5-1-0.672-1-1.5 0.448-1.5 1-1.5zM8 14c-2.607 0-4.772-2.186-5-4.973 1.465 0.846 3.188 1.329 5 1.329s3.535-0.481 5-1.327c-0.228 2.788-2.393 4.971-5 4.971z" + } + }] +}; +exports.happy2 = happy2; +var smile = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5zM4 5c0-0.552 0.448-1 1-1s1 0.448 1 1c0 0.552-0.448 1-1 1s-1-0.448-1-1zM10 5c0-0.552 0.448-1 1-1s1 0.448 1 1c0 0.552-0.448 1-1 1s-1-0.448-1-1zM11.002 9.801l1.286 0.772c-0.874 1.454-2.467 2.427-4.288 2.427s-3.413-0.973-4.288-2.427l1.286-0.772c0.612 1.018 1.727 1.699 3.002 1.699s2.389-0.681 3.002-1.699z" + } + }] +}; +exports.smile = smile; +var smile2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM11 4c0.552 0 1 0.448 1 1s-0.448 1-1 1-1-0.448-1-1 0.448-1 1-1zM5 4c0.552 0 1 0.448 1 1s-0.448 1-1 1-1-0.448-1-1 0.448-1 1-1zM8 13c-1.82 0-3.413-0.973-4.288-2.427l1.286-0.772c0.612 1.018 1.727 1.699 3.002 1.699s2.389-0.681 3.002-1.699l1.286 0.772c-0.874 1.454-2.467 2.427-4.288 2.427z" + } + }] +}; +exports.smile2 = smile2; +var tongue = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5zM4 5c0-0.552 0.448-1 1-1s1 0.448 1 1c0 0.552-0.448 1-1 1s-1-0.448-1-1zM10 5c0-0.552 0.448-1 1-1s1 0.448 1 1c0 0.552-0.448 1-1 1s-1-0.448-1-1zM12 9v1h-1v1.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5v-1.5h-4v-1h8z" + } + }] +}; +exports.tongue = tongue; +var tongue2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM5 4c0.552 0 1 0.448 1 1s-0.448 1-1 1-1-0.448-1-1 0.448-1 1-1zM12 10h-1v1.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5v-1.5h-4v-1h8v1zM11 6c-0.552 0-1-0.448-1-1s0.448-1 1-1 1 0.448 1 1-0.448 1-1 1z" + } + }] +}; +exports.tongue2 = tongue2; +var sad = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5zM4 5c0-0.552 0.448-1 1-1s1 0.448 1 1c0 0.552-0.448 1-1 1s-1-0.448-1-1zM10 5c0-0.552 0.448-1 1-1s1 0.448 1 1c0 0.552-0.448 1-1 1s-1-0.448-1-1zM4.998 12.199l-1.286-0.772c0.874-1.454 2.467-2.427 4.288-2.427s3.413 0.973 4.288 2.427l-1.286 0.772c-0.612-1.018-1.727-1.699-3.002-1.699s-2.389 0.681-3.002 1.699z" + } + }] +}; +exports.sad = sad; +var sad2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM11 4c0.552 0 1 0.448 1 1s-0.448 1-1 1-1-0.448-1-1 0.448-1 1-1zM5 4c0.552 0 1 0.448 1 1s-0.448 1-1 1-1-0.448-1-1 0.448-1 1-1zM11.002 12.199c-0.612-1.018-1.727-1.699-3.002-1.699s-2.389 0.681-3.002 1.699l-1.286-0.772c0.874-1.454 2.467-2.427 4.288-2.427s3.414 0.973 4.288 2.427l-1.286 0.772z" + } + }] +}; +exports.sad2 = sad2; +var wink = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5zM8.48 11.11c2.191-0.433 3.892-1.43 4.507-2.759-0.338 2.624-2.524 4.649-5.17 4.649-1.863 0-3.498-1.004-4.42-2.515 1.1 0.86 3.040 1.028 5.083 0.625zM10 5.5c0-0.828 0.448-1.5 1-1.5s1 0.672 1 1.5c0 0.828-0.448 1.5-1 1.5s-1-0.672-1-1.5zM5.5 5.805c-0.653 0-1.208 0.245-1.414 0.586-0.055-0.092-0.086-0.503-0.086-0.605 0-0.485 0.672-0.879 1.5-0.879s1.5 0.394 1.5 0.879c0 0.103-0.030 0.514-0.086 0.605-0.206-0.341-0.761-0.586-1.414-0.586z" + } + }] +}; +exports.wink = wink; +var wink2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8c4.418 0 8-3.582 8-8s-3.582-8-8-8zM11 4c0.552 0 1 0.672 1 1.5s-0.448 1.5-1 1.5-1-0.672-1-1.5 0.448-1.5 1-1.5zM5.5 4.876c0.932 0 1.594 0.349 1.594 0.895 0 0.116 0.060 0.672-0.003 0.775-0.232-0.384-0.856-0.659-1.591-0.659s-1.359 0.275-1.591 0.659c-0.062-0.103-0.003-0.659-0.003-0.775 0-0.546 0.662-0.895 1.594-0.895zM7.818 13c-1.863 0-3.498-1.004-4.42-2.515 1.1 0.86 3.040 1.028 5.083 0.625 2.191-0.433 3.892-1.43 4.507-2.759-0.338 2.624-2.524 4.649-5.17 4.649z" + } + }] +}; +exports.wink2 = wink2; +var grin = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5zM3 8v1c0 2.2 1.8 4 4 4h2c2.2 0 4-1.8 4-4v-1h-10zM6 11.828c-0.415-0.148-0.796-0.388-1.118-0.71-0.569-0.569-0.882-1.321-0.882-2.118h2v2.828zM9 12h-2v-3h2v3zM11.118 11.118c-0.322 0.322-0.703 0.562-1.118 0.71v-2.828h2c0 0.797-0.313 1.549-0.882 2.118zM3.521 6c0 0 0 0 0 0 0.153 0 0.283-0.11 0.308-0.261 0.096-0.573 0.589-0.989 1.171-0.989s1.074 0.416 1.171 0.989c0.025 0.151 0.156 0.261 0.308 0.261s0.283-0.11 0.308-0.261c0.017-0.101 0.025-0.202 0.025-0.302 0-0.999-0.813-1.813-1.813-1.813s-1.813 0.813-1.813 1.813c0 0.1 0.009 0.201 0.025 0.302 0.025 0.151 0.156 0.261 0.308 0.261zM9.521 6c0 0 0 0 0 0 0.153 0 0.283-0.11 0.308-0.261 0.096-0.573 0.589-0.989 1.171-0.989s1.074 0.416 1.171 0.989c0.025 0.151 0.156 0.261 0.308 0.261s0.283-0.11 0.308-0.261c0.017-0.101 0.025-0.202 0.025-0.302 0-0.999-0.813-1.813-1.813-1.813s-1.813 0.813-1.813 1.813c0 0.1 0.008 0.201 0.025 0.302 0.025 0.151 0.156 0.261 0.308 0.261z" + } + }] +}; +exports.grin = grin; +var grin2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8c4.418 0 8-3.582 8-8s-3.582-8-8-8zM11 3.688c0.999 0 1.813 0.813 1.813 1.813 0 0.1-0.009 0.201-0.025 0.302-0.025 0.151-0.156 0.261-0.308 0.261s-0.283-0.11-0.308-0.261c-0.096-0.573-0.589-0.833-1.171-0.833s-1.074 0.26-1.171 0.833c-0.025 0.151-0.156 0.261-0.308 0.261-0 0 0 0-0 0-0.153 0-0.283-0.11-0.308-0.261-0.017-0.101-0.025-0.202-0.025-0.302 0-0.999 0.813-1.813 1.813-1.813zM5 3.688c0.999 0 1.813 0.813 1.813 1.813 0 0.1-0.009 0.201-0.025 0.302-0.025 0.151-0.156 0.261-0.308 0.261s-0.283-0.11-0.308-0.261c-0.096-0.573-0.589-0.833-1.171-0.833s-1.074 0.26-1.171 0.833c-0.025 0.151-0.156 0.261-0.308 0.261 0 0 0 0 0 0-0.153 0-0.283-0.11-0.308-0.261-0.017-0.101-0.025-0.202-0.025-0.302 0-0.999 0.813-1.813 1.813-1.813zM3 9h3v3.873c-1.72-0.447-3-2.018-3-3.873zM7 13v-4h2v4h-2zM10 12.873v-3.873h3c0 1.855-1.28 3.426-3 3.873z" + } + }] +}; +exports.grin2 = grin2; +var cool = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5zM12.5 4c0.275 0 0.5 0.225 0.5 0.5v1.5c0 0.55-0.45 1-1 1h-2c-0.55 0-1-0.45-1-1h-2c0 0.55-0.45 1-1 1h-2c-0.55 0-1-0.45-1-1v-1.5c0-0.275 0.225-0.5 0.5-0.5h3c0.275 0 0.5 0.225 0.5 0.5v0.5h2v-0.5c0-0.275 0.225-0.5 0.5-0.5h3zM8 12c1.456 0 2.731-0.778 3.43-1.942l0.857 0.515c-0.874 1.454-2.467 2.427-4.288 2.427-0.757 0-1.475-0.169-2.118-0.47l0.518-0.864c0.49 0.214 1.031 0.334 1.6 0.334z" + } + }] +}; +exports.cool = cool; +var cool2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8c4.418 0 8-3.582 8-8s-3.582-8-8-8zM8 13c-0.757 0-1.475-0.169-2.118-0.47l0.518-0.864c0.49 0.214 1.031 0.334 1.6 0.334 1.456 0 2.731-0.778 3.43-1.942l0.858 0.515c-0.874 1.454-2.467 2.427-4.288 2.427zM13 6c0 0.55-0.45 1-1 1h-2c-0.55 0-1-0.45-1-1h-2c0 0.55-0.45 1-1 1h-2c-0.55 0-1-0.45-1-1v-1.5c0-0.275 0.225-0.5 0.5-0.5h3c0.275 0 0.5 0.225 0.5 0.5v0.5h2v-0.5c0-0.275 0.225-0.5 0.5-0.5h3c0.275 0 0.5 0.225 0.5 0.5v1.5z" + } + }] +}; +exports.cool2 = cool2; +var angry = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5zM11.002 12.199c-0.612-1.018-1.727-1.699-3.002-1.699s-2.389 0.681-3.002 1.699l-1.286-0.772c0.874-1.454 2.467-2.427 4.288-2.427s3.414 0.973 4.288 2.427l-1.286 0.772zM11.985 4.379c0.067 0.268-0.096 0.539-0.364 0.606-0.275 0.070-0.602 0.189-0.89 0.334 0.166 0.179 0.268 0.418 0.268 0.681 0 0.552-0.448 1-1 1s-1-0.448-1-1c0-0.018 0.001-0.036 0.002-0.054 0.032-0.741 0.706-1.234 1.275-1.518 0.543-0.271 1.080-0.407 1.102-0.413 0.268-0.067 0.539 0.096 0.606 0.364zM4.015 4.379c0.067-0.268 0.338-0.431 0.606-0.364 0.023 0.006 0.559 0.141 1.102 0.413 0.568 0.284 1.243 0.776 1.275 1.518 0.001 0.018 0.002 0.036 0.002 0.054 0 0.552-0.448 1-1 1s-1-0.448-1-1c0-0.263 0.102-0.503 0.268-0.681-0.288-0.144-0.614-0.264-0.89-0.334-0.268-0.067-0.431-0.338-0.364-0.606z" + } + }] +}; +exports.angry = angry; +var angry2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM9.001 5.946c0.032-0.741 0.706-1.234 1.275-1.518 0.543-0.271 1.080-0.407 1.102-0.413 0.268-0.067 0.539 0.096 0.606 0.364s-0.096 0.539-0.364 0.606c-0.275 0.070-0.602 0.189-0.89 0.334 0.166 0.179 0.268 0.418 0.268 0.681 0 0.552-0.448 1-1 1s-1-0.448-1-1c0-0.018 0.001-0.036 0.002-0.054zM4.015 4.379c0.067-0.268 0.338-0.431 0.606-0.364 0.023 0.006 0.559 0.141 1.102 0.413 0.568 0.284 1.243 0.776 1.275 1.518 0.001 0.018 0.002 0.036 0.002 0.054 0 0.552-0.448 1-1 1s-1-0.448-1-1c0-0.263 0.102-0.503 0.268-0.681-0.288-0.144-0.614-0.264-0.89-0.334-0.268-0.067-0.431-0.338-0.364-0.606zM11.002 12.199c-0.612-1.018-1.727-1.699-3.002-1.699s-2.389 0.681-3.002 1.699l-1.286-0.772c0.874-1.454 2.467-2.427 4.288-2.427s3.414 0.973 4.288 2.427l-1.286 0.772z" + } + }] +}; +exports.angry2 = angry2; +var evil = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M10 7c-0.552 0-1-0.448-1-1 0-0.018 0.001-0.036 0.002-0.054 0.032-0.741 0.706-1.234 1.275-1.518 0.543-0.271 1.080-0.407 1.102-0.413 0.268-0.067 0.539 0.096 0.606 0.364s-0.096 0.539-0.364 0.606c-0.275 0.070-0.602 0.189-0.89 0.334 0.166 0.179 0.268 0.418 0.268 0.681 0 0.552-0.448 1-1 1zM4.379 4.985c-0.268-0.067-0.431-0.338-0.364-0.606s0.338-0.431 0.606-0.364c0.023 0.006 0.559 0.141 1.102 0.413 0.568 0.284 1.243 0.776 1.275 1.518 0.001 0.018 0.002 0.036 0.002 0.054 0 0.552-0.448 1-1 1s-1-0.448-1-1c0-0.263 0.102-0.503 0.268-0.681-0.288-0.144-0.614-0.264-0.89-0.334zM8 11.5c1.274 0 2.389-0.681 3.002-1.699l1.286 0.772c-0.874 1.454-2.467 2.427-4.288 2.427s-3.413-0.973-4.288-2.427l1.286-0.772c0.612 1.018 1.727 1.699 3.002 1.699zM16 1c0-0.711-0.149-1.387-0.416-2-0.525 1.201-1.507 2.155-2.726 2.643-1.347-1.031-3.030-1.643-4.857-1.643s-3.51 0.613-4.857 1.643c-1.22-0.488-2.202-1.443-2.726-2.643-0.268 0.613-0.416 1.289-0.416 2 0 1.15 0.388 2.208 1.040 3.053-0.662 1.165-1.040 2.512-1.040 3.947 0 4.418 3.582 8 8 8s8-3.582 8-8c0-1.436-0.378-2.783-1.040-3.947 0.652-0.845 1.040-1.903 1.040-3.053zM8 14.5c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5 6.5 2.91 6.5 6.5-2.91 6.5-6.5 6.5z" + } + }] +}; +exports.evil = evil; +var evil2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16 1c0-0.711-0.149-1.387-0.416-2-0.525 1.201-1.507 2.155-2.726 2.643-1.347-1.031-3.030-1.643-4.857-1.643s-3.51 0.613-4.857 1.643c-1.22-0.488-2.202-1.443-2.726-2.643-0.268 0.613-0.416 1.289-0.416 2 0 1.15 0.388 2.208 1.040 3.053-0.662 1.165-1.040 2.512-1.040 3.947 0 4.418 3.582 8 8 8s8-3.582 8-8c0-1.436-0.378-2.783-1.040-3.947 0.652-0.845 1.040-1.903 1.040-3.053zM9.001 5.946c0.032-0.741 0.706-1.234 1.275-1.518 0.543-0.271 1.080-0.407 1.102-0.413 0.268-0.067 0.539 0.096 0.606 0.364s-0.096 0.539-0.364 0.606c-0.275 0.070-0.602 0.189-0.89 0.334 0.166 0.179 0.268 0.418 0.268 0.681 0 0.552-0.448 1-1 1s-1-0.448-1-1c0-0.018 0.001-0.036 0.002-0.054zM4.015 4.379c0.067-0.268 0.338-0.431 0.606-0.364 0.023 0.006 0.559 0.141 1.102 0.413 0.568 0.284 1.243 0.776 1.275 1.518 0.001 0.018 0.002 0.036 0.002 0.054 0 0.552-0.448 1-1 1s-1-0.448-1-1c0-0.263 0.102-0.503 0.268-0.681-0.288-0.144-0.614-0.264-0.89-0.334-0.268-0.067-0.431-0.338-0.364-0.606zM8 13c-1.82 0-3.413-0.973-4.288-2.427l1.286-0.772c0.612 1.018 1.727 1.699 3.002 1.699s2.389-0.681 3.002-1.699l1.286 0.772c-0.874 1.454-2.467 2.427-4.288 2.427z" + } + }] +}; +exports.evil2 = evil2; +var shocked = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5zM6 11c0-1.105 0.895-2 2-2s2 0.895 2 2c0 1.105-0.895 2-2 2s-2-0.895-2-2zM10 5.5c0-0.828 0.448-1.5 1-1.5s1 0.672 1 1.5c0 0.828-0.448 1.5-1 1.5s-1-0.672-1-1.5zM4 5.5c0-0.828 0.448-1.5 1-1.5s1 0.672 1 1.5c0 0.828-0.448 1.5-1 1.5s-1-0.672-1-1.5z" + } + }] +}; +exports.shocked = shocked; +var shocked2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM5 7c-0.552 0-1-0.672-1-1.5s0.448-1.5 1-1.5 1 0.672 1 1.5-0.448 1.5-1 1.5zM8 13c-1.105 0-2-0.895-2-2s0.895-2 2-2c1.105 0 2 0.895 2 2s-0.895 2-2 2zM11 7c-0.552 0-1-0.672-1-1.5s0.448-1.5 1-1.5 1 0.672 1 1.5-0.448 1.5-1 1.5z" + } + }] +}; +exports.shocked2 = shocked2; +var baffled = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6 6.5c0 0.276-0.224 0.5-0.5 0.5s-0.5-0.224-0.5-0.5c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5.5 5c0.828 0 1.5 0.672 1.5 1.5s-0.672 1.5-1.5 1.5-1.5-0.672-1.5-1.5 0.672-1.5 1.5-1.5zM5.5 4c-1.378 0-2.5 1.122-2.5 2.5s1.122 2.5 2.5 2.5 2.5-1.122 2.5-2.5-1.122-2.5-2.5-2.5v0z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11 6.5c0 0.276-0.224 0.5-0.5 0.5s-0.5-0.224-0.5-0.5c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M10.5 5c0.828 0 1.5 0.672 1.5 1.5s-0.672 1.5-1.5 1.5-1.5-0.672-1.5-1.5 0.672-1.5 1.5-1.5zM10.5 4c-1.379 0-2.5 1.122-2.5 2.5s1.121 2.5 2.5 2.5 2.5-1.122 2.5-2.5-1.121-2.5-2.5-2.5v0z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6 11h4v1h-4v-1z" + } + }] +}; +exports.baffled = baffled; +var baffled2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6 6.5c0 0.276-0.224 0.5-0.5 0.5s-0.5-0.224-0.5-0.5 0.224-0.5 0.5-0.5 0.5 0.224 0.5 0.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11 6.5c0 0.276-0.224 0.5-0.5 0.5s-0.5-0.224-0.5-0.5 0.224-0.5 0.5-0.5 0.5 0.224 0.5 0.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM4 6.5c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5-0.672 1.5-1.5 1.5-1.5-0.672-1.5-1.5zM10 12h-4v-1h4v1zM10.5 8c-0.828 0-1.5-0.672-1.5-1.5s0.672-1.5 1.5-1.5 1.5 0.672 1.5 1.5-0.672 1.5-1.5 1.5z" + } + }] +}; +exports.baffled2 = baffled2; +var confused = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5zM4 5c0-0.552 0.448-1 1-1s1 0.448 1 1c0 0.552-0.448 1-1 1s-1-0.448-1-1zM10 5c0-0.552 0.448-1 1-1s1 0.448 1 1c0 0.552-0.448 1-1 1s-1-0.448-1-1zM11.345 10h1.014c0.144 1.133-0.507 2.258-1.624 2.665-1.295 0.472-2.733-0.199-3.204-1.494-0.283-0.777-1.145-1.179-1.923-0.896-0.712 0.259-1.109 1.005-0.953 1.725h-1.013c-0.144-1.133 0.507-2.258 1.624-2.665 1.295-0.472 2.733 0.199 3.204 1.494 0.283 0.777 1.145 1.179 1.923 0.896 0.712-0.259 1.109-1.005 0.953-1.725z" + } + }] +}; +exports.confused = confused; +var confused2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8c4.418 0 8-3.582 8-8s-3.582-8-8-8zM11 4c0.552 0 1 0.448 1 1s-0.448 1-1 1-1-0.448-1-1c0-0.552 0.448-1 1-1zM5 4c0.552 0 1 0.448 1 1s-0.448 1-1 1-1-0.448-1-1c0-0.552 0.448-1 1-1zM10.735 12.665c-1.295 0.472-2.733-0.199-3.204-1.494-0.283-0.777-1.145-1.179-1.923-0.896-0.712 0.259-1.109 1.005-0.953 1.725h-1.013c-0.144-1.133 0.507-2.258 1.624-2.665 1.295-0.472 2.733 0.199 3.204 1.494 0.283 0.777 1.145 1.179 1.923 0.896 0.712-0.259 1.109-1.005 0.953-1.725h1.014c0.144 1.133-0.507 2.258-1.624 2.665z" + } + }] +}; +exports.confused2 = confused2; +var neutral = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5zM4 5c0 0.552 0.448 1 1 1s1-0.448 1-1-0.448-1-1-1-1 0.448-1 1zM10 5c0 0.552 0.448 1 1 1s1-0.448 1-1-0.448-1-1-1-1 0.448-1 1zM6 11h4v1h-4v-1z" + } + }] +}; +exports.neutral = neutral; +var neutral2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8c4.418 0 8-3.582 8-8s-3.582-8-8-8zM10 12h-4v-1h4v1zM11 4c0.552 0 1 0.448 1 1s-0.448 1-1 1-1-0.448-1-1c0-0.552 0.448-1 1-1zM5 4c0.552 0 1 0.448 1 1s-0.448 1-1 1-1-0.448-1-1c0-0.552 0.448-1 1-1z" + } + }] +}; +exports.neutral2 = neutral2; +var hipster = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5zM4 5c0-0.552 0.448-1 1-1s1 0.448 1 1-0.448 1-1 1-1-0.448-1-1zM10 5c0-0.552 0.448-1 1-1s1 0.448 1 1-0.448 1-1 1-1-0.448-1-1z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M10.561 8.439c-0.586-0.586-1.536-0.586-2.121 0s-0.586 1.536 0 2.121c0.019 0.019 0.038 0.037 0.058 0.055 1.352 1.227 4.503-0.029 4.503-1.615-0.969 0.625-1.726 0.153-2.439-0.561z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5.439 8.439c0.586-0.586 1.536-0.586 2.121 0s0.586 1.536 0 2.121c-0.019 0.019-0.038 0.037-0.058 0.055-1.352 1.227-4.503-0.029-4.503-1.615 0.969 0.625 1.726 0.153 2.439-0.561z" + } + }] +}; +exports.hipster = hipster; +var hipster2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM11 4c0.552 0 1 0.448 1 1s-0.448 1-1 1-1-0.448-1-1 0.448-1 1-1zM5 4c0.552 0 1 0.448 1 1s-0.448 1-1 1-1-0.448-1-1 0.448-1 1-1zM8.497 10.615c-0.020-0.018-0.039-0.036-0.058-0.055-0.293-0.293-0.439-0.677-0.439-1.060-0 0.384-0.146 0.768-0.439 1.060-0.019 0.019-0.038 0.037-0.058 0.055-1.352 1.227-4.503-0.029-4.503-1.615 0.969 0.625 1.726 0.153 2.439-0.561 0.586-0.586 1.536-0.586 2.121 0 0.293 0.293 0.439 0.677 0.439 1.060 0-0.384 0.146-0.768 0.439-1.060 0.586-0.586 1.536-0.586 2.121 0 0.713 0.714 1.471 1.186 2.439 0.561 0 1.586-3.151 2.842-4.503 1.615z" + } + }] +}; +exports.hipster2 = hipster2; +var wondering = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5zM11.652 9.4l0.351 1.2-6.828 2-0.351-1.2zM4 5c0-0.552 0.448-1 1-1s1 0.448 1 1c0 0.552-0.448 1-1 1s-1-0.448-1-1zM10 5c0-0.552 0.448-1 1-1s1 0.448 1 1c0 0.552-0.448 1-1 1s-1-0.448-1-1z" + } + }] +}; +exports.wondering = wondering; +var wondering2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM11 4c0.552 0 1 0.448 1 1s-0.448 1-1 1-1-0.448-1-1 0.448-1 1-1zM4 5c0-0.552 0.448-1 1-1s1 0.448 1 1-0.448 1-1 1-1-0.448-1-1zM5.176 12.6l-0.351-1.2 6.828-2 0.351 1.2-6.828 2z" + } + }] +}; +exports.wondering2 = wondering2; +var sleepy = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M10 10.5c0 1.381-0.895 2.5-2 2.5s-2-1.119-2-2.5c0-1.381 0.895-2.5 2-2.5s2 1.119 2 2.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6.5 5.313c-0.128 0-0.256-0.049-0.354-0.146-0.302-0.302-0.991-0.302-1.293 0-0.195 0.195-0.512 0.195-0.707 0s-0.195-0.512 0-0.707c0.696-0.696 2.011-0.696 2.707 0 0.195 0.195 0.195 0.512 0 0.707-0.098 0.098-0.226 0.146-0.354 0.146z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.5 5.313c-0.128 0-0.256-0.049-0.354-0.146-0.302-0.302-0.991-0.302-1.293 0-0.195 0.195-0.512 0.195-0.707 0s-0.195-0.512 0-0.707c0.696-0.696 2.011-0.696 2.707 0 0.195 0.195 0.195 0.512 0 0.707-0.098 0.098-0.226 0.146-0.354 0.146z" + } + }] +}; +exports.sleepy = sleepy; +var sleepy2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM4.854 5.166c-0.195 0.195-0.512 0.195-0.707 0s-0.195-0.512 0-0.707c0.696-0.696 2.011-0.696 2.707 0 0.195 0.195 0.195 0.512 0 0.707-0.098 0.098-0.226 0.146-0.354 0.146s-0.256-0.049-0.354-0.146c-0.302-0.302-0.991-0.302-1.293 0zM8 13c-1.105 0-2-1.119-2-2.5s0.895-2.5 2-2.5 2 1.119 2 2.5-0.895 2.5-2 2.5zM11.854 5.166c-0.098 0.098-0.226 0.146-0.354 0.146s-0.256-0.049-0.354-0.146c-0.302-0.302-0.991-0.302-1.293 0-0.195 0.195-0.512 0.195-0.707 0s-0.195-0.512 0-0.707c0.696-0.696 2.011-0.696 2.707 0 0.195 0.195 0.195 0.512 0 0.707z" + } + }] +}; +exports.sleepy2 = sleepy2; +var frustrated = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5.724 4.428c-0.543-0.271-1.080-0.407-1.102-0.413-0.268-0.067-0.539 0.096-0.606 0.364s0.096 0.539 0.364 0.606c0.275 0.070 0.602 0.189 0.89 0.334-0.166 0.179-0.268 0.418-0.268 0.681 0 0.552 0.448 1 1 1s1-0.448 1-1c0-0.018-0.001-0.036-0.002-0.054-0.032-0.741-0.706-1.234-1.275-1.518z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM3.695 12.87c0.167 0.083 0.356 0.13 0.555 0.13h7.5c0.199 0 0.387-0.047 0.555-0.13-1.147 1.014-2.654 1.63-4.305 1.63s-3.158-0.616-4.305-1.63zM4 11.75v-1.5c0-0.136 0.114-0.25 0.25-0.25h1.75v2h-1.75c-0.136 0-0.25-0.114-0.25-0.25zM7 12v-2h2v2h-2zM10 12v-2h1.75c0.136 0 0.25 0.114 0.25 0.25v1.5c0 0.136-0.114 0.25-0.25 0.25h-1.75zM12.87 12.305c0.083-0.167 0.13-0.356 0.13-0.555v-1.5c0-0.689-0.561-1.25-1.25-1.25h-7.5c-0.689 0-1.25 0.561-1.25 1.25v1.5c0 0.199 0.047 0.387 0.13 0.555-1.014-1.147-1.63-2.654-1.63-4.305 0-3.59 2.91-6.5 6.5-6.5s6.5 2.91 6.5 6.5c0 1.651-0.616 3.158-1.63 4.305z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.379 4.015c-0.023 0.006-0.559 0.141-1.102 0.413-0.568 0.284-1.243 0.776-1.275 1.518-0.001 0.018-0.002 0.036-0.002 0.054 0 0.552 0.448 1 1 1s1-0.448 1-1c0-0.263-0.102-0.503-0.268-0.681 0.288-0.144 0.614-0.264 0.89-0.334 0.268-0.067 0.431-0.338 0.364-0.606s-0.338-0.431-0.606-0.364z" + } + }] +}; +exports.frustrated = frustrated; +var frustrated2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4 10.25v1.5c0 0.136 0.114 0.25 0.25 0.25h1.75v-2h-1.75c-0.136 0-0.25 0.114-0.25 0.25z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7 10h2v2h-2v-2z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.75 10h-1.75v2h1.75c0.136 0 0.25-0.114 0.25-0.25v-1.5c0-0.136-0.114-0.25-0.25-0.25z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM9.002 5.946c0.032-0.741 0.706-1.234 1.275-1.518 0.543-0.271 1.080-0.407 1.102-0.413 0.268-0.067 0.539 0.096 0.606 0.364s-0.096 0.539-0.364 0.606c-0.275 0.070-0.602 0.189-0.89 0.334 0.166 0.179 0.268 0.418 0.268 0.681 0 0.552-0.448 1-1 1s-1-0.448-1-1c0-0.018 0.001-0.036 0.002-0.054zM4.015 4.379c0.067-0.268 0.338-0.431 0.606-0.364 0.023 0.006 0.559 0.141 1.102 0.413 0.568 0.284 1.243 0.776 1.275 1.518 0.001 0.018 0.002 0.036 0.002 0.054 0 0.552-0.448 1-1 1s-1-0.448-1-1c0-0.263 0.102-0.503 0.268-0.681-0.288-0.144-0.614-0.264-0.89-0.334-0.268-0.067-0.431-0.338-0.364-0.606zM13 11.75c0 0.689-0.561 1.25-1.25 1.25h-7.5c-0.689 0-1.25-0.561-1.25-1.25v-1.5c0-0.689 0.561-1.25 1.25-1.25h7.5c0.689 0 1.25 0.561 1.25 1.25v1.5z" + } + }] +}; +exports.frustrated2 = frustrated2; +var crying = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12.5 6h-2c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5h2c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5.5 6h-2c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5h2c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9.5 13.375c-0.128 0-0.256-0.049-0.354-0.146-0.072-0.072-0.46-0.229-1.146-0.229s-1.075 0.157-1.146 0.229c-0.195 0.195-0.512 0.195-0.707 0s-0.195-0.512 0-0.707c0.471-0.471 1.453-0.521 1.854-0.521s1.383 0.051 1.854 0.521c0.195 0.195 0.195 0.512 0 0.707-0.098 0.098-0.226 0.146-0.354 0.146z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.5 9c-0.276 0-0.5-0.224-0.5-0.5v-1c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5v1c0 0.276-0.224 0.5-0.5 0.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.5 12c-0.276 0-0.5-0.224-0.5-0.5v-1c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5v1c0 0.276-0.224 0.5-0.5 0.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4.5 9c-0.276 0-0.5-0.224-0.5-0.5v-1c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5v1c0 0.276-0.224 0.5-0.5 0.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4.5 12c-0.276 0-0.5-0.224-0.5-0.5v-1c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5v1c0 0.276-0.224 0.5-0.5 0.5z" + } + }] +}; +exports.crying = crying; +var crying2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM5 11.5c0 0.276-0.224 0.5-0.5 0.5s-0.5-0.224-0.5-0.5v-1c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5v1zM5 8.5c0 0.276-0.224 0.5-0.5 0.5s-0.5-0.224-0.5-0.5v-1c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5v1zM5.5 6h-2c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5h2c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5zM9.854 13.229c-0.098 0.098-0.226 0.146-0.354 0.146s-0.256-0.049-0.354-0.146c-0.072-0.072-0.46-0.229-1.146-0.229s-1.075 0.157-1.146 0.229c-0.195 0.195-0.512 0.195-0.707 0s-0.195-0.512 0-0.707c0.471-0.471 1.453-0.521 1.854-0.521s1.383 0.051 1.854 0.521c0.195 0.195 0.195 0.512 0 0.707zM12 11.5c0 0.276-0.224 0.5-0.5 0.5s-0.5-0.224-0.5-0.5v-1c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5v1zM12 8.5c0 0.276-0.224 0.5-0.5 0.5s-0.5-0.224-0.5-0.5v-1c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5v1zM12.5 6h-2c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5h2c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5z" + } + }] +}; +exports.crying2 = crying2; +var pointUp = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15 9.5v-2.5c0-0.827-0.673-1.5-1.5-1.5-0.267 0-0.518 0.070-0.736 0.193-0.267-0.417-0.734-0.693-1.264-0.693-0.384 0-0.734 0.145-1 0.383-0.266-0.238-0.616-0.383-1-0.383-0.175 0-0.344 0.030-0.5 0.086v-3.586c0-0.827-0.673-1.5-1.5-1.5s-1.5 0.673-1.5 1.5v6.167l-2.75-1.466c-0.227-0.131-0.486-0.201-0.75-0.201-0.827 0-1.5 0.673-1.5 1.5 0 0.412 0.164 0.796 0.461 1.082 0.004 0.004 0.008 0.007 0.012 0.011l3.737 3.407h-0.71c-0.276 0-0.5 0.224-0.5 0.5v3c0 0.276 0.224 0.5 0.5 0.5h10c0.276 0 0.5-0.224 0.5-0.5v-3c0-0.276-0.224-0.5-0.5-0.5h-0.691l1.138-2.276c0.035-0.069 0.053-0.146 0.053-0.224zM14 13.5c0 0.276-0.224 0.5-0.5 0.5s-0.5-0.224-0.5-0.5 0.224-0.5 0.5-0.5 0.5 0.224 0.5 0.5zM14 9.382l-1.309 2.618h-5.997l-4.544-4.143c-0.097-0.095-0.15-0.221-0.15-0.357 0-0.276 0.224-0.5 0.5-0.5 0.085 0 0.166 0.020 0.239 0.061 0.008 0.005 0.017 0.010 0.025 0.014l3.5 1.866c0.155 0.083 0.342 0.078 0.492-0.012s0.243-0.253 0.243-0.429v-7c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5v5c0 0.276 0.224 0.5 0.5 0.5s0.5-0.224 0.5-0.5c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5c0 0.276 0.224 0.5 0.5 0.5s0.5-0.224 0.5-0.5c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5v0.5c0 0.276 0.224 0.5 0.5 0.5s0.5-0.224 0.5-0.5c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5v2.382z" + } + }] +}; +exports.pointUp = pointUp; +var pointRight = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6.5 15h2.5c0.827 0 1.5-0.673 1.5-1.5 0-0.267-0.070-0.518-0.193-0.736 0.417-0.267 0.693-0.734 0.693-1.264 0-0.384-0.145-0.734-0.383-1 0.238-0.266 0.383-0.616 0.383-1 0-0.175-0.030-0.344-0.086-0.5h3.586c0.827 0 1.5-0.673 1.5-1.5s-0.673-1.5-1.5-1.5h-6.167l1.466-2.75c0.131-0.227 0.201-0.486 0.201-0.75 0-0.827-0.673-1.5-1.5-1.5-0.412 0-0.796 0.164-1.082 0.461-0.004 0.004-0.007 0.008-0.011 0.012l-3.407 3.737v-0.71c0-0.276-0.224-0.5-0.5-0.5h-3c-0.276 0-0.5 0.224-0.5 0.5v10c0 0.276 0.224 0.5 0.5 0.5h3c0.276 0 0.5-0.224 0.5-0.5v-0.691l2.276 1.138c0.069 0.035 0.146 0.053 0.224 0.053zM2.5 14c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5 0.5 0.224 0.5 0.5-0.224 0.5-0.5 0.5zM6.618 14l-2.618-1.309v-5.997l4.143-4.544c0.095-0.097 0.221-0.15 0.357-0.15 0.276 0 0.5 0.224 0.5 0.5 0 0.085-0.020 0.166-0.061 0.239-0.005 0.008-0.010 0.017-0.014 0.025l-1.866 3.5c-0.083 0.155-0.078 0.342 0.013 0.492s0.253 0.243 0.429 0.243h7c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5h-5c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5h-0.5c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5h-2.382z" + } + }] +}; +exports.pointRight = pointRight; +var pointDown = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15 6.5v2.5c0 0.827-0.673 1.5-1.5 1.5-0.267 0-0.518-0.070-0.736-0.193-0.267 0.417-0.734 0.693-1.264 0.693-0.384 0-0.734-0.145-1-0.383-0.266 0.238-0.616 0.383-1 0.383-0.175 0-0.344-0.030-0.5-0.086v3.586c0 0.827-0.673 1.5-1.5 1.5s-1.5-0.673-1.5-1.5v-6.167l-2.75 1.466c-0.227 0.131-0.486 0.201-0.75 0.201-0.827 0-1.5-0.673-1.5-1.5 0-0.412 0.164-0.796 0.461-1.082 0.004-0.004 0.008-0.007 0.012-0.011l3.737-3.407h-0.71c-0.276 0-0.5-0.224-0.5-0.5v-3c0-0.276 0.224-0.5 0.5-0.5h10c0.276 0 0.5 0.224 0.5 0.5v3c0 0.276-0.224 0.5-0.5 0.5h-0.691l1.138 2.276c0.035 0.069 0.053 0.146 0.053 0.224zM14 2.5c0-0.276-0.224-0.5-0.5-0.5s-0.5 0.224-0.5 0.5 0.224 0.5 0.5 0.5 0.5-0.224 0.5-0.5zM14 6.618l-1.309-2.618h-5.997l-4.544 4.143c-0.097 0.095-0.15 0.221-0.15 0.357 0 0.276 0.224 0.5 0.5 0.5 0.085 0 0.166-0.020 0.239-0.061 0.008-0.005 0.017-0.010 0.025-0.014l3.5-1.866c0.155-0.083 0.342-0.078 0.492 0.013s0.243 0.253 0.243 0.429v7c0 0.276 0.224 0.5 0.5 0.5s0.5-0.224 0.5-0.5v-5c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5c0 0.276 0.224 0.5 0.5 0.5s0.5-0.224 0.5-0.5c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5c0 0.276 0.224 0.5 0.5 0.5s0.5-0.224 0.5-0.5v-0.5c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5c0 0.276 0.224 0.5 0.5 0.5s0.5-0.224 0.5-0.5v-2.382z" + } + }] +}; +exports.pointDown = pointDown; +var pointLeft = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9.5 15h-2.5c-0.827 0-1.5-0.673-1.5-1.5 0-0.267 0.070-0.518 0.193-0.736-0.417-0.267-0.693-0.734-0.693-1.264 0-0.384 0.145-0.734 0.383-1-0.238-0.266-0.383-0.616-0.383-1 0-0.175 0.030-0.344 0.086-0.5h-3.586c-0.827 0-1.5-0.673-1.5-1.5s0.673-1.5 1.5-1.5h6.167l-1.466-2.75c-0.131-0.227-0.201-0.486-0.201-0.75 0-0.827 0.673-1.5 1.5-1.5 0.412 0 0.796 0.164 1.082 0.461 0.004 0.004 0.007 0.008 0.011 0.012l3.407 3.737v-0.71c0-0.276 0.224-0.5 0.5-0.5h3c0.276 0 0.5 0.224 0.5 0.5v10c0 0.276-0.224 0.5-0.5 0.5h-3c-0.276 0-0.5-0.224-0.5-0.5v-0.691l-2.276 1.138c-0.069 0.035-0.146 0.053-0.224 0.053zM13.5 14c0.276 0 0.5-0.224 0.5-0.5s-0.224-0.5-0.5-0.5-0.5 0.224-0.5 0.5 0.224 0.5 0.5 0.5zM9.382 14l2.618-1.309v-5.997l-4.143-4.544c-0.095-0.097-0.221-0.15-0.357-0.15-0.276 0-0.5 0.224-0.5 0.5 0 0.085 0.020 0.166 0.061 0.239 0.005 0.008 0.010 0.017 0.014 0.025l1.866 3.5c0.083 0.155 0.078 0.342-0.012 0.492s-0.253 0.243-0.429 0.243h-7c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5h5c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5h0.5c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5h2.382z" + } + }] +}; +exports.pointLeft = pointLeft; +var warning = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 1.45l6.705 13.363h-13.409l6.705-13.363zM8 0c-0.345 0-0.69 0.233-0.951 0.698l-6.829 13.611c-0.523 0.93-0.078 1.691 0.989 1.691h13.583c1.067 0 1.512-0.761 0.989-1.691h0l-6.829-13.611c-0.262-0.465-0.606-0.698-0.951-0.698v0z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9 13c0 0.552-0.448 1-1 1s-1-0.448-1-1c0-0.552 0.448-1 1-1s1 0.448 1 1z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 11c-0.552 0-1-0.448-1-1v-3c0-0.552 0.448-1 1-1s1 0.448 1 1v3c0 0.552-0.448 1-1 1z" + } + }] +}; +exports.warning = warning; +var notification = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 1.5c-1.736 0-3.369 0.676-4.596 1.904s-1.904 2.86-1.904 4.596c0 1.736 0.676 3.369 1.904 4.596s2.86 1.904 4.596 1.904c1.736 0 3.369-0.676 4.596-1.904s1.904-2.86 1.904-4.596c0-1.736-0.676-3.369-1.904-4.596s-2.86-1.904-4.596-1.904zM8 0v0c4.418 0 8 3.582 8 8s-3.582 8-8 8c-4.418 0-8-3.582-8-8s3.582-8 8-8zM7 11h2v2h-2zM7 3h2v6h-2z" + } + }] +}; +exports.notification = notification; +var question = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7 11h2v2h-2zM11 4c0.552 0 1 0.448 1 1v3l-3 2h-2v-1l3-2v-1h-5v-2h6zM8 1.5c-1.736 0-3.369 0.676-4.596 1.904s-1.904 2.86-1.904 4.596c0 1.736 0.676 3.369 1.904 4.596s2.86 1.904 4.596 1.904c1.736 0 3.369-0.676 4.596-1.904s1.904-2.86 1.904-4.596c0-1.736-0.676-3.369-1.904-4.596s-2.86-1.904-4.596-1.904zM8 0v0c4.418 0 8 3.582 8 8s-3.582 8-8 8c-4.418 0-8-3.582-8-8s3.582-8 8-8z" + } + }] +}; +exports.question = question; +var plus = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.5 6h-5.5v-5.5c0-0.276-0.224-0.5-0.5-0.5h-3c-0.276 0-0.5 0.224-0.5 0.5v5.5h-5.5c-0.276 0-0.5 0.224-0.5 0.5v3c0 0.276 0.224 0.5 0.5 0.5h5.5v5.5c0 0.276 0.224 0.5 0.5 0.5h3c0.276 0 0.5-0.224 0.5-0.5v-5.5h5.5c0.276 0 0.5-0.224 0.5-0.5v-3c0-0.276-0.224-0.5-0.5-0.5z" + } + }] +}; +exports.plus = plus; +var minus = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 6.5v3c0 0.276 0.224 0.5 0.5 0.5h15c0.276 0 0.5-0.224 0.5-0.5v-3c0-0.276-0.224-0.5-0.5-0.5h-15c-0.276 0-0.5 0.224-0.5 0.5z" + } + }] +}; +exports.minus = minus; +var info = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7 4.75c0-0.412 0.338-0.75 0.75-0.75h0.5c0.412 0 0.75 0.338 0.75 0.75v0.5c0 0.412-0.338 0.75-0.75 0.75h-0.5c-0.412 0-0.75-0.338-0.75-0.75v-0.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M10 12h-4v-1h1v-3h-1v-1h3v4h1z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM8 14.5c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5 6.5 2.91 6.5 6.5-2.91 6.5-6.5 6.5z" + } + }] +}; +exports.info = info; +var cancelCircle = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM8 14.5c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5 6.5 2.91 6.5 6.5-2.91 6.5-6.5 6.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M10.5 4l-2.5 2.5-2.5-2.5-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 2.5-2.5 2.5 2.5 1.5-1.5-2.5-2.5 2.5-2.5z" + } + }] +}; +exports.cancelCircle = cancelCircle; +var blocked = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.657 2.343c-1.511-1.511-3.52-2.343-5.657-2.343s-4.146 0.832-5.657 2.343c-1.511 1.511-2.343 3.52-2.343 5.657s0.832 4.146 2.343 5.657c1.511 1.511 3.52 2.343 5.657 2.343s4.146-0.832 5.657-2.343c1.511-1.511 2.343-3.52 2.343-5.657s-0.832-4.146-2.343-5.657zM14 8c0 1.294-0.412 2.494-1.111 3.475l-8.364-8.364c0.981-0.699 2.181-1.111 3.475-1.111 3.308 0 6 2.692 6 6zM2 8c0-1.294 0.412-2.494 1.111-3.475l8.364 8.364c-0.981 0.699-2.181 1.111-3.475 1.111-3.308 0-6-2.692-6-6z" + } + }] +}; +exports.blocked = blocked; +var cross = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.854 12.854c-0-0-0-0-0-0l-4.854-4.854 4.854-4.854c0-0 0-0 0-0 0.052-0.052 0.090-0.113 0.114-0.178 0.066-0.178 0.028-0.386-0.114-0.529l-2.293-2.293c-0.143-0.143-0.351-0.181-0.529-0.114-0.065 0.024-0.126 0.062-0.178 0.114 0 0-0 0-0 0l-4.854 4.854-4.854-4.854c-0-0-0-0-0-0-0.052-0.052-0.113-0.090-0.178-0.114-0.178-0.066-0.386-0.029-0.529 0.114l-2.293 2.293c-0.143 0.143-0.181 0.351-0.114 0.529 0.024 0.065 0.062 0.126 0.114 0.178 0 0 0 0 0 0l4.854 4.854-4.854 4.854c-0 0-0 0-0 0-0.052 0.052-0.090 0.113-0.114 0.178-0.066 0.178-0.029 0.386 0.114 0.529l2.293 2.293c0.143 0.143 0.351 0.181 0.529 0.114 0.065-0.024 0.126-0.062 0.178-0.114 0-0 0-0 0-0l4.854-4.854 4.854 4.854c0 0 0 0 0 0 0.052 0.052 0.113 0.090 0.178 0.114 0.178 0.066 0.386 0.029 0.529-0.114l2.293-2.293c0.143-0.143 0.181-0.351 0.114-0.529-0.024-0.065-0.062-0.126-0.114-0.178z" + } + }] +}; +exports.cross = cross; +var checkmark = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.5 2l-7.5 7.5-3.5-3.5-2.5 2.5 6 6 10-10z" + } + }] +}; +exports.checkmark = checkmark; +var checkmark2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6.21 14.339l-6.217-6.119 3.084-3.035 3.133 3.083 6.713-6.607 3.084 3.035-9.797 9.643zM1.686 8.22l4.524 4.453 8.104-7.976-1.391-1.369-6.713 6.607-3.133-3.083-1.391 1.369z" + } + }] +}; +exports.checkmark2 = checkmark2; +var spellCheck = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M2 4h2v3h1v-6c0-0.55-0.45-1-1-1h-2c-0.55 0-1 0.45-1 1v6h1v-3zM2 1h2v2h-2v-2zM15 1v-1h-3c-0.55 0-1 0.45-1 1v5c0 0.55 0.45 1 1 1h3v-1h-3v-5h3zM10 2.5v-1.5c0-0.55-0.45-1-1-1h-3v7h3c0.55 0 1-0.45 1-1v-1.5c0-0.55-0.137-1-0.688-1 0.55 0 0.688-0.45 0.688-1zM9 6h-2v-2h2v2zM9 3h-2v-2h2v2zM13 9l-6.5 7-3.5-4.5 1.281-1.094 2.219 2.313 5.5-4.719z" + } + }] +}; +exports.spellCheck = spellCheck; +var enter = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6 8h-5v-2h5v-2l3 3-3 3zM16 0v13l-6 3v-3h-6v-4h1v3h5v-9l4-2h-9v4h-1v-5z" + } + }] +}; +exports.enter = enter; +var exit = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12 10v-2h-5v-2h5v-2l3 3zM11 9v4h-5v3l-6-3v-13h11v5h-1v-4h-8l4 2v9h4v-3z" + } + }] +}; +exports.exit = exit; +var play2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM8 14.5c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5 6.5 2.91 6.5 6.5-2.91 6.5-6.5 6.5zM6 4.5l6 3.5-6 3.5z" + } + }] +}; +exports.play2 = play2; +var pause = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM8 14.5c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5 6.5 2.91 6.5 6.5-2.91 6.5-6.5 6.5zM5 5h2v6h-2zM9 5h2v6h-2z" + } + }] +}; +exports.pause = pause; +var stop = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM8 14.5c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5 6.5 2.91 6.5 6.5-2.91 6.5-6.5 6.5zM5 5h6v6h-6z" + } + }] +}; +exports.stop = stop; +var previous = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM8 14.5c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5 6.5 2.91 6.5 6.5-2.91 6.5-6.5 6.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7 8l4-3v6z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5 5h2v6h-2v-6z" + } + }] +}; +exports.previous = previous; +var next = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c4.418 0 8 3.582 8 8s-3.582 8-8 8-8-3.582-8-8 3.582-8 8-8zM8 14.5c3.59 0 6.5-2.91 6.5-6.5s-2.91-6.5-6.5-6.5-6.5 2.91-6.5 6.5 2.91 6.5 6.5 6.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9 8l-4-3v6z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11 5h-2v6h2v-6z" + } + }] +}; +exports.next = next; +var backward = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5zM11 10.5l-3.5-2.5 3.5-2.5zM7 10.5l-3.5-2.5 3.5-2.5z" + } + }] +}; +exports.backward = backward; +var forward2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM8 14.5c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5 6.5 2.91 6.5 6.5-2.91 6.5-6.5 6.5zM5 5.5l3.5 2.5-3.5 2.5zM9 5.5l3.5 2.5-3.5 2.5z" + } + }] +}; +exports.forward2 = forward2; +var play3 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M3 2l10 6-10 6z" + } + }] +}; +exports.play3 = play3; +var pause2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M2 2h5v12h-5zM9 2h5v12h-5z" + } + }] +}; +exports.pause2 = pause2; +var stop2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M2 2h12v12h-12z" + } + }] +}; +exports.stop2 = stop2; +var backward2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9 2.5v5l5-5v11l-5-5v5l-5.5-5.5z" + } + }] +}; +exports.backward2 = backward2; +var forward3 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 13.5v-5l-5 5v-11l5 5v-5l5.5 5.5z" + } + }] +}; +exports.forward3 = forward3; +var first = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M2 14v-12h2v5.5l5-5v5l5-5v11l-5-5v5l-5-5v5.5z" + } + }] +}; +exports.first = first; +var last = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14 2v12h-2v-5.5l-5 5v-5l-5 5v-11l5 5v-5l5 5v-5.5z" + } + }] +}; +exports.last = last; +var previous2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4 14v-12h2v5.5l5-5v11l-5-5v5.5z" + } + }] +}; +exports.previous2 = previous2; +var next2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12 2v12h-2v-5.5l-5 5v-11l5 5v-5.5z" + } + }] +}; +exports.next2 = next2; +var eject = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 12h16v2h-16zM8 2l8 8h-16z" + } + }] +}; +exports.eject = eject; +var volumeHigh = { + "viewBox": "0 0 17 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.907 14.407c-0.192 0-0.384-0.073-0.53-0.22-0.293-0.293-0.293-0.768 0-1.061 1.369-1.369 2.123-3.19 2.123-5.127s-0.754-3.757-2.123-5.127c-0.293-0.293-0.293-0.768 0-1.061s0.768-0.293 1.061 0c1.653 1.653 2.563 3.85 2.563 6.187s-0.91 4.534-2.563 6.187c-0.146 0.146-0.338 0.22-0.53 0.22zM11.243 12.993c-0.192 0-0.384-0.073-0.53-0.22-0.293-0.293-0.293-0.768 0-1.061 2.047-2.047 2.047-5.378 0-7.425-0.293-0.293-0.293-0.768 0-1.061s0.768-0.293 1.061 0c1.275 1.275 1.977 2.97 1.977 4.773s-0.702 3.498-1.977 4.773c-0.146 0.146-0.338 0.22-0.53 0.22v0zM8.578 11.578c-0.192 0-0.384-0.073-0.53-0.22-0.293-0.293-0.293-0.768 0-1.061 1.267-1.267 1.267-3.329 0-4.596-0.293-0.293-0.293-0.768 0-1.061s0.768-0.293 1.061 0c1.852 1.852 1.852 4.865 0 6.718-0.146 0.146-0.338 0.22-0.53 0.22z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6.5 15c-0.13 0-0.258-0.051-0.354-0.146l-3.854-3.854h-1.793c-0.276 0-0.5-0.224-0.5-0.5v-5c0-0.276 0.224-0.5 0.5-0.5h1.793l3.854-3.854c0.143-0.143 0.358-0.186 0.545-0.108s0.309 0.26 0.309 0.462v13c0 0.202-0.122 0.385-0.309 0.462-0.062 0.026-0.127 0.038-0.191 0.038z" + } + }] +}; +exports.volumeHigh = volumeHigh; +var volumeMedium = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.243 12.993c-0.192 0-0.384-0.073-0.53-0.22-0.293-0.293-0.293-0.768 0-1.061 2.047-2.047 2.047-5.378 0-7.425-0.293-0.293-0.293-0.768 0-1.061s0.768-0.293 1.061 0c1.275 1.275 1.977 2.97 1.977 4.773s-0.702 3.498-1.977 4.773c-0.146 0.146-0.338 0.22-0.53 0.22v0zM8.578 11.578c-0.192 0-0.384-0.073-0.53-0.22-0.293-0.293-0.293-0.768 0-1.061 1.267-1.267 1.267-3.329 0-4.596-0.293-0.293-0.293-0.768 0-1.061s0.768-0.293 1.061 0c1.852 1.852 1.852 4.865 0 6.718-0.146 0.146-0.338 0.22-0.53 0.22z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6.5 15c-0.13 0-0.258-0.051-0.354-0.146l-3.854-3.854h-1.793c-0.276 0-0.5-0.224-0.5-0.5v-5c0-0.276 0.224-0.5 0.5-0.5h1.793l3.854-3.854c0.143-0.143 0.358-0.186 0.545-0.108s0.309 0.26 0.309 0.462v13c0 0.202-0.122 0.385-0.309 0.462-0.062 0.026-0.127 0.038-0.191 0.038z" + } + }] +}; +exports.volumeMedium = volumeMedium; +var volumeLow = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8.578 11.578c-0.192 0-0.384-0.073-0.53-0.22-0.293-0.293-0.293-0.768 0-1.061 1.267-1.267 1.267-3.329 0-4.596-0.293-0.293-0.293-0.768 0-1.061s0.768-0.293 1.061 0c1.852 1.852 1.852 4.865 0 6.718-0.146 0.146-0.338 0.22-0.53 0.22z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6.5 15c-0.13 0-0.258-0.051-0.354-0.146l-3.854-3.854h-1.793c-0.276 0-0.5-0.224-0.5-0.5v-5c0-0.276 0.224-0.5 0.5-0.5h1.793l3.854-3.854c0.143-0.143 0.358-0.186 0.545-0.108s0.309 0.26 0.309 0.462v13c0 0.202-0.122 0.385-0.309 0.462-0.062 0.026-0.127 0.038-0.191 0.038z" + } + }] +}; +exports.volumeLow = volumeLow; +var volumeMute = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6.5 15c-0.13 0-0.258-0.051-0.354-0.146l-3.854-3.854h-1.793c-0.276 0-0.5-0.224-0.5-0.5v-5c0-0.276 0.224-0.5 0.5-0.5h1.793l3.854-3.854c0.143-0.143 0.358-0.186 0.545-0.108s0.309 0.26 0.309 0.462v13c0 0.202-0.122 0.385-0.309 0.462-0.062 0.026-0.127 0.038-0.191 0.038z" + } + }] +}; +exports.volumeMute = volumeMute; +var volumeMute2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15 9.674v1.326h-1.326l-1.674-1.674-1.674 1.674h-1.326v-1.326l1.674-1.674-1.674-1.674v-1.326h1.326l1.674 1.674 1.674-1.674h1.326v1.326l-1.674 1.674 1.674 1.674z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6.5 15c-0.13 0-0.258-0.051-0.354-0.146l-3.854-3.854h-1.793c-0.276 0-0.5-0.224-0.5-0.5v-5c0-0.276 0.224-0.5 0.5-0.5h1.793l3.854-3.854c0.143-0.143 0.358-0.186 0.545-0.108s0.309 0.26 0.309 0.462v13c0 0.202-0.122 0.385-0.309 0.462-0.062 0.026-0.127 0.038-0.191 0.038z" + } + }] +}; +exports.volumeMute2 = volumeMute2; +var volumeIncrease = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16 9h-3v3h-2v-3h-3v-2h3v-3h2v3h3v2z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6.5 15c-0.13 0-0.258-0.051-0.354-0.146l-3.854-3.854h-1.793c-0.276 0-0.5-0.224-0.5-0.5v-5c0-0.276 0.224-0.5 0.5-0.5h1.793l3.854-3.854c0.143-0.143 0.358-0.186 0.545-0.108s0.309 0.26 0.309 0.462v13c0 0.202-0.122 0.385-0.309 0.462-0.062 0.026-0.127 0.038-0.191 0.038z" + } + }] +}; +exports.volumeIncrease = volumeIncrease; +var volumeDecrease = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 7h8v2h-8v-2z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6.5 15c-0.13 0-0.258-0.051-0.354-0.146l-3.854-3.854h-1.793c-0.276 0-0.5-0.224-0.5-0.5v-5c0-0.276 0.224-0.5 0.5-0.5h1.793l3.854-3.854c0.143-0.143 0.358-0.186 0.545-0.108s0.309 0.26 0.309 0.462v13c0 0.202-0.122 0.385-0.309 0.462-0.062 0.026-0.127 0.038-0.191 0.038z" + } + }] +}; +exports.volumeDecrease = volumeDecrease; +var loop = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M2 5h10v3l4-4-4-4v3h-12v6h2zM14 11h-10v-3l-4 4 4 4v-3h12v-6h-2z" + } + }] +}; +exports.loop = loop; +var loop2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.901 2.599c-1.463-1.597-3.565-2.599-5.901-2.599-4.418 0-8 3.582-8 8h1.5c0-3.59 2.91-6.5 6.5-6.5 1.922 0 3.649 0.835 4.839 2.161l-2.339 2.339h5.5v-5.5l-2.099 2.099z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.5 8c0 3.59-2.91 6.5-6.5 6.5-1.922 0-3.649-0.835-4.839-2.161l2.339-2.339h-5.5v5.5l2.099-2.099c1.463 1.597 3.565 2.599 5.901 2.599 4.418 0 8-3.582 8-8h-1.5z" + } + }] +}; +exports.loop2 = loop2; +var infinite = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12.25 11.75c-1.002 0-1.943-0.39-2.652-1.098l-1.598-1.598-1.598 1.598c-0.708 0.708-1.65 1.098-2.652 1.098s-1.944-0.39-2.652-1.098c-0.708-0.708-1.098-1.65-1.098-2.652s0.39-1.943 1.098-2.652c0.708-0.708 1.65-1.098 2.652-1.098s1.943 0.39 2.652 1.098l1.598 1.598 1.598-1.598c0.708-0.708 1.65-1.098 2.652-1.098s1.944 0.39 2.652 1.098c0.708 0.708 1.098 1.65 1.098 2.652s-0.39 1.943-1.098 2.652c-0.708 0.708-1.65 1.098-2.652 1.098zM10.652 9.598c0.427 0.427 0.994 0.662 1.598 0.662s1.171-0.235 1.598-0.662c0.427-0.427 0.662-0.994 0.662-1.598s-0.235-1.171-0.662-1.598c-0.427-0.427-0.994-0.662-1.598-0.662s-1.171 0.235-1.598 0.662l-1.598 1.598 1.598 1.598zM3.75 5.74c-0.604 0-1.171 0.235-1.598 0.662s-0.662 0.994-0.662 1.598c0 0.604 0.235 1.171 0.662 1.598s0.994 0.662 1.598 0.662c0.604 0 1.171-0.235 1.598-0.662l1.598-1.598-1.598-1.598c-0.427-0.427-0.994-0.662-1.598-0.662v0z" + } + }] +}; +exports.infinite = infinite; +var shuffle = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12 11h-1.586l-2.5-2.5 2.5-2.5h1.586v2.5l3.5-3.5-3.5-3.5v2.5h-2c-0.265 0-0.52 0.105-0.707 0.293l-2.793 2.793-2.793-2.793c-0.188-0.188-0.442-0.293-0.707-0.293h-3v2h2.586l2.5 2.5-2.5 2.5h-2.586v2h3c0.265 0 0.52-0.105 0.707-0.293l2.793-2.793 2.793 2.793c0.188 0.188 0.442 0.293 0.707 0.293h2v2.5l3.5-3.5-3.5-3.5v2.5z" + } + }] +}; +exports.shuffle = shuffle; +var arrowUpLeft = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 11.5l4-4 8.5 8.5 3.5-3.5-8.5-8.5 4-4h-11.5v11.5z" + } + }] +}; +exports.arrowUpLeft = arrowUpLeft; +var arrowUp = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0.5l-7.5 7.5h4.5v8h6v-8h4.5z" + } + }] +}; +exports.arrowUp = arrowUp; +var arrowUpRight = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4.5 0l4 4-8.5 8.5 3.5 3.5 8.5-8.5 4 4v-11.5h-11.5z" + } + }] +}; +exports.arrowUpRight = arrowUpRight; +var arrowRight = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.5 8l-7.5-7.5v4.5h-8v6h8v4.5z" + } + }] +}; +exports.arrowRight = arrowRight; +var arrowDownRight = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16 4.5l-4 4-8.5-8.5-3.5 3.5 8.5 8.5-4 4h11.5v-11.5z" + } + }] +}; +exports.arrowDownRight = arrowDownRight; +var arrowDown = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 15.5l7.5-7.5h-4.5v-8h-6v8h-4.5z" + } + }] +}; +exports.arrowDown = arrowDown; +var arrowDownLeft = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.5 16l-4-4 8.5-8.5-3.5-3.5-8.5 8.5-4-4v11.5h11.5z" + } + }] +}; +exports.arrowDownLeft = arrowDownLeft; +var arrowLeft = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0.5 8l7.5 7.5v-4.5h8v-6h-8v-4.5z" + } + }] +}; +exports.arrowLeft = arrowLeft; +var arrowUpLeft2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.707 12.293l-8.293-8.293h3.586c0.552 0 1-0.448 1-1s-0.448-1-1-1h-6c-0.404 0-0.769 0.244-0.924 0.617-0.051 0.124-0.076 0.254-0.076 0.383h-0.001v6c0 0.552 0.448 1 1 1s1-0.448 1-1v-3.586l8.293 8.293c0.195 0.195 0.451 0.293 0.707 0.293s0.512-0.098 0.707-0.293c0.391-0.39 0.391-1.024 0-1.414z" + } + }] +}; +exports.arrowUpLeft2 = arrowUpLeft2; +var arrowUp2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.707 6.293l-5-5c-0.39-0.391-1.024-0.391-1.414 0l-5 5c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0l3.293-3.293v9.586c0 0.552 0.448 1 1 1s1-0.448 1-1v-9.586l3.293 3.293c0.195 0.195 0.451 0.293 0.707 0.293s0.512-0.098 0.707-0.293c0.391-0.391 0.391-1.024 0-1.414z" + } + }] +}; +exports.arrowUp2 = arrowUp2; +var arrowUpRight2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M3.707 13.707l8.293-8.293v3.586c0 0.552 0.448 1 1 1s1-0.448 1-1v-6c0-0.404-0.244-0.769-0.617-0.924-0.124-0.051-0.254-0.076-0.383-0.076v-0.001h-6c-0.552 0-1 0.448-1 1s0.448 1 1 1h3.586l-8.293 8.293c-0.195 0.195-0.293 0.451-0.293 0.707s0.098 0.512 0.293 0.707c0.39 0.391 1.024 0.391 1.414 0z" + } + }] +}; +exports.arrowUpRight2 = arrowUpRight2; +var arrowRight2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9.707 13.707l5-5c0.391-0.39 0.391-1.024 0-1.414l-5-5c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414l3.293 3.293h-9.586c-0.552 0-1 0.448-1 1s0.448 1 1 1h9.586l-3.293 3.293c-0.195 0.195-0.293 0.451-0.293 0.707s0.098 0.512 0.293 0.707c0.391 0.391 1.024 0.391 1.414 0z" + } + }] +}; +exports.arrowRight2 = arrowRight2; +var arrowDownRight2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M2.293 3.707l8.293 8.293h-3.586c-0.552 0-1 0.448-1 1s0.448 1 1 1h6c0.404 0 0.769-0.244 0.924-0.617 0.051-0.124 0.076-0.254 0.076-0.383h0.001v-6c0-0.552-0.448-1-1-1s-1 0.448-1 1v3.586l-8.293-8.293c-0.195-0.195-0.451-0.293-0.707-0.293s-0.512 0.098-0.707 0.293c-0.391 0.39-0.391 1.024 0 1.414z" + } + }] +}; +exports.arrowDownRight2 = arrowDownRight2; +var arrowDown2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.707 9.707l-5 5c-0.39 0.391-1.024 0.391-1.414 0l-5-5c-0.391-0.391-0.391-1.024 0-1.414s1.024-0.391 1.414 0l3.293 3.293v-9.586c0-0.552 0.448-1 1-1s1 0.448 1 1v9.586l3.293-3.293c0.195-0.195 0.451-0.293 0.707-0.293s0.512 0.098 0.707 0.293c0.391 0.391 0.391 1.024 0 1.414z" + } + }] +}; +exports.arrowDown2 = arrowDown2; +var arrowDownLeft2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12.293 2.293l-8.293 8.293v-3.586c0-0.552-0.448-1-1-1s-1 0.448-1 1v6c0 0.404 0.244 0.769 0.617 0.924 0.124 0.051 0.254 0.076 0.383 0.076v0.001l6-0c0.552 0 1-0.448 1-1s-0.448-1-1-1h-3.586l8.293-8.293c0.195-0.195 0.293-0.451 0.293-0.707s-0.098-0.512-0.293-0.707c-0.39-0.391-1.024-0.391-1.414 0v0z" + } + }] +}; +exports.arrowDownLeft2 = arrowDownLeft2; +var arrowLeft2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6.293 13.707l-5-5c-0.391-0.39-0.391-1.024 0-1.414l5-5c0.391-0.391 1.024-0.391 1.414 0s0.391 1.024 0 1.414l-3.293 3.293h9.586c0.552 0 1 0.448 1 1s-0.448 1-1 1h-9.586l3.293 3.293c0.195 0.195 0.293 0.451 0.293 0.707s-0.098 0.512-0.293 0.707c-0.391 0.391-1.024 0.391-1.414 0z" + } + }] +}; +exports.arrowLeft2 = arrowLeft2; +var circleUp = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 8c0 4.418 3.582 8 8 8s8-3.582 8-8-3.582-8-8-8-8 3.582-8 8zM14.5 8c0 3.59-2.91 6.5-6.5 6.5s-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5 6.5 2.91 6.5 6.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.043 10.457l1.414-1.414-4.457-4.457-4.457 4.457 1.414 1.414 3.043-3.043z" + } + }] +}; +exports.circleUp = circleUp; +var circleRight = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM8 14.5c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5 6.5 2.91 6.5 6.5-2.91 6.5-6.5 6.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5.543 11.043l1.414 1.414 4.457-4.457-4.457-4.457-1.414 1.414 3.043 3.043z" + } + }] +}; +exports.circleRight = circleRight; +var circleDown = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16 8c0-4.418-3.582-8-8-8s-8 3.582-8 8 3.582 8 8 8 8-3.582 8-8zM1.5 8c0-3.59 2.91-6.5 6.5-6.5s6.5 2.91 6.5 6.5-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4.957 5.543l-1.414 1.414 4.457 4.457 4.457-4.457-1.414-1.414-3.043 3.043z" + } + }] +}; +exports.circleDown = circleDown; +var circleLeft = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M10.457 4.957l-1.414-1.414-4.457 4.457 4.457 4.457 1.414-1.414-3.043-3.043z" + } + }] +}; +exports.circleLeft = circleLeft; +var tab = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15 0h1v8h-1v-8z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 8h1v8h-1v-8z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5 11h11v2h-11v2.5l-3.5-3.5 3.5-3.5v2.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11 5h-11v-2h11v-2.5l3.5 3.5-3.5 3.5z" + } + }] +}; +exports.tab = tab; +var moveUp = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11 8v6h1v-6h2.5l-3-3-3 3z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M1 3h1.5v1h-1.5v-1z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M3 3h1.5v1h-1.5v-1z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5 3h1v1.5h-1v-1.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M1 6.5h1v1.5h-1v-1.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M2.5 7h1.5v1h-1.5v-1z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4.5 7h1.5v1h-1.5v-1z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M1 4.5h1v1.5h-1v-1.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5 5h1v1.5h-1v-1.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5 11v3h-3v-3h3zM6 10h-5v5h5v-5z" + } + }] +}; +exports.moveUp = moveUp; +var moveDown = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12 11v-6h-1v6h-2.5l3 3 3-3z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5 4v3h-3v-3h3zM6 3h-5v5h5v-5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M1 10h1.5v1h-1.5v-1z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M3 10h1.5v1h-1.5v-1z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5 10h1v1.5h-1v-1.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M1 13.5h1v1.5h-1v-1.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M2.5 14h1.5v1h-1.5v-1z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4.5 14h1.5v1h-1.5v-1z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M1 11.5h1v1.5h-1v-1.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5 12h1v1.5h-1v-1.5z" + } + }] +}; +exports.moveDown = moveDown; +var sortAlphaAsc = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5 12v-12h-2v12h-2.5l3.5 3.5 3.5-3.5h-2.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.5 16h-4c-0.184 0-0.354-0.101-0.441-0.264s-0.077-0.36 0.025-0.513l3.482-5.223h-3.066c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5h4c0.184 0 0.354 0.101 0.441 0.264s0.077 0.36-0.025 0.513l-3.482 5.223h3.066c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.947 6.276l-3-6c-0.085-0.169-0.258-0.276-0.447-0.276s-0.363 0.107-0.447 0.276l-3 6c-0.123 0.247-0.023 0.547 0.224 0.671 0.072 0.036 0.148 0.053 0.223 0.053 0.183 0 0.36-0.101 0.448-0.277l0.862-1.724h3.382l0.862 1.724c0.123 0.247 0.424 0.347 0.671 0.224s0.347-0.424 0.224-0.671zM11.309 4l1.191-2.382 1.191 2.382h-2.382z" + } + }] +}; +exports.sortAlphaAsc = sortAlphaAsc; +var sortAlphaDesc = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5 12v-12h-2v12h-2.5l3.5 3.5 3.5-3.5h-2.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.5 7h-4c-0.184 0-0.354-0.101-0.441-0.264s-0.077-0.36 0.025-0.513l3.482-5.223h-3.066c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5h4c0.184 0 0.354 0.102 0.441 0.264s0.077 0.36-0.025 0.513l-3.482 5.223h3.066c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.947 15.276l-3-6c-0.085-0.169-0.258-0.276-0.447-0.276s-0.363 0.107-0.447 0.276l-3 6c-0.123 0.247-0.023 0.547 0.224 0.671 0.072 0.036 0.148 0.053 0.223 0.053 0.183 0 0.36-0.101 0.448-0.277l0.862-1.724h3.382l0.862 1.724c0.123 0.247 0.424 0.347 0.671 0.224s0.347-0.424 0.224-0.671zM11.309 13l1.191-2.382 1.191 2.382h-2.382z" + } + }] +}; +exports.sortAlphaDesc = sortAlphaDesc; +var sortNumericAsc = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5 12v-12h-2v12h-2.5l3.5 3.5 3.5-3.5h-2.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.5 7c-0.276 0-0.5-0.224-0.5-0.5v-5.5h-0.5c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5h1c0.276 0 0.5 0.224 0.5 0.5v6c0 0.276-0.224 0.5-0.5 0.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.5 9h-3c-0.276 0-0.5 0.224-0.5 0.5v3c0 0.276 0.224 0.5 0.5 0.5h2.5v2h-2.5c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5h3c0.276 0 0.5-0.224 0.5-0.5v-6c0-0.276-0.224-0.5-0.5-0.5zM12 10h2v2h-2v-2z" + } + }] +}; +exports.sortNumericAsc = sortNumericAsc; +var sortNumbericDesc = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5 12v-12h-2v12h-2.5l3.5 3.5 3.5-3.5h-2.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.5 16c-0.276 0-0.5-0.224-0.5-0.5v-5.5h-0.5c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5h1c0.276 0 0.5 0.224 0.5 0.5v6c0 0.276-0.224 0.5-0.5 0.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.5 0h-3c-0.276 0-0.5 0.224-0.5 0.5v3c0 0.276 0.224 0.5 0.5 0.5h2.5v2h-2.5c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5h3c0.276 0 0.5-0.224 0.5-0.5v-6c0-0.276-0.224-0.5-0.5-0.5zM12 1h2v2h-2v-2z" + } + }] +}; +exports.sortNumbericDesc = sortNumbericDesc; +var sortAmountAsc = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5 12v-12h-2v12h-2.5l3.5 3.5 3.5-3.5h-2.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7 9h9v2h-9v-2z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7 6h7v2h-7v-2z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7 3h5v2h-5v-2z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7 0h3v2h-3v-2z" + } + }] +}; +exports.sortAmountAsc = sortAmountAsc; +var sortAmountDesc = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5 12v-12h-2v12h-2.5l3.5 3.5 3.5-3.5h-2.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7 0h9v2h-9v-2z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7 3h7v2h-7v-2z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7 6h5v2h-5v-2z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7 9h3v2h-3v-2z" + } + }] +}; +exports.sortAmountDesc = sortAmountDesc; +var command = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.5 14c-1.379 0-2.5-1.121-2.5-2.5v-1.5h-2v1.5c0 1.379-1.122 2.5-2.5 2.5s-2.5-1.121-2.5-2.5 1.122-2.5 2.5-2.5h1.5v-2h-1.5c-1.378 0-2.5-1.122-2.5-2.5s1.122-2.5 2.5-2.5 2.5 1.122 2.5 2.5v1.5h2v-1.5c0-1.378 1.121-2.5 2.5-2.5s2.5 1.122 2.5 2.5-1.121 2.5-2.5 2.5h-1.5v2h1.5c1.379 0 2.5 1.121 2.5 2.5s-1.121 2.5-2.5 2.5zM10 10v1.5c0 0.827 0.673 1.5 1.5 1.5s1.5-0.673 1.5-1.5-0.673-1.5-1.5-1.5h-1.5zM4.5 10c-0.827 0-1.5 0.673-1.5 1.5s0.673 1.5 1.5 1.5 1.5-0.673 1.5-1.5v-1.5h-1.5zM7 9h2v-2h-2v2zM10 6h1.5c0.827 0 1.5-0.673 1.5-1.5s-0.673-1.5-1.5-1.5-1.5 0.673-1.5 1.5v1.5zM4.5 3c-0.827 0-1.5 0.673-1.5 1.5s0.673 1.5 1.5 1.5h1.5v-1.5c0-0.827-0.673-1.5-1.5-1.5z" + } + }] +}; +exports.command = command; +var shift = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M10.5 14h-5c-0.276 0-0.5-0.224-0.5-0.5v-5.5h-2c-0.202 0-0.385-0.122-0.462-0.309s-0.035-0.402 0.108-0.545l5-5c0.195-0.195 0.512-0.195 0.707 0l5 5c0.143 0.143 0.186 0.358 0.108 0.545s-0.26 0.309-0.462 0.309h-2v5.5c0 0.276-0.224 0.5-0.5 0.5zM6 13h4v-5.5c0-0.276 0.224-0.5 0.5-0.5h1.293l-3.793-3.793-3.793 3.793h1.293c0.276 0 0.5 0.224 0.5 0.5v5.5z" + } + }] +}; +exports.shift = shift; +var ctrl = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.5 7c-0.139 0-0.278-0.058-0.377-0.171l-3.124-3.57-3.124 3.57c-0.182 0.208-0.498 0.229-0.706 0.047s-0.229-0.498-0.047-0.706l3.5-4c0.095-0.108 0.232-0.171 0.376-0.171s0.281 0.062 0.376 0.171l3.5 4c0.182 0.208 0.161 0.524-0.047 0.706-0.095 0.083-0.212 0.124-0.329 0.124z" + } + }] +}; +exports.ctrl = ctrl; +var opt = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.5 13h-4c-0.198 0-0.377-0.116-0.457-0.297l-3.868-8.703h-4.675c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5h5c0.198 0 0.377 0.116 0.457 0.297l3.868 8.703h3.675c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.5 4h-5c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5h5c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5z" + } + }] +}; +exports.opt = opt; +var checkboxChecked = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14 0h-12c-1.1 0-2 0.9-2 2v12c0 1.1 0.9 2 2 2h12c1.1 0 2-0.9 2-2v-12c0-1.1-0.9-2-2-2zM7 12.414l-3.707-3.707 1.414-1.414 2.293 2.293 4.793-4.793 1.414 1.414-6.207 6.207z" + } + }] +}; +exports.checkboxChecked = checkboxChecked; +var checkboxUnchecked = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14 0h-12c-1.1 0-2 0.9-2 2v12c0 1.1 0.9 2 2 2h12c1.1 0 2-0.9 2-2v-12c0-1.1-0.9-2-2-2zM14 14h-12v-12h12v12z" + } + }] +}; +exports.checkboxUnchecked = checkboxUnchecked; +var radioChecked = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM8 14c-3.314 0-6-2.686-6-6s2.686-6 6-6c3.314 0 6 2.686 6 6s-2.686 6-6 6zM5 8c0-1.657 1.343-3 3-3s3 1.343 3 3c0 1.657-1.343 3-3 3s-3-1.343-3-3z" + } + }] +}; +exports.radioChecked = radioChecked; +var radioChecked2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM8 10c-1.105 0-2-0.895-2-2s0.895-2 2-2c1.105 0 2 0.895 2 2s-0.895 2-2 2z" + } + }] +}; +exports.radioChecked2 = radioChecked2; +var radioUnchecked = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM8 14c-3.314 0-6-2.686-6-6s2.686-6 6-6c3.314 0 6 2.686 6 6s-2.686 6-6 6z" + } + }] +}; +exports.radioUnchecked = radioUnchecked; +var crop = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13 4l3-3-1-1-3 3h-7v-3h-2v3h-3v2h3v8h8v3h2v-3h3v-2h-3v-7zM5 5h5l-5 5v-5zM6 11l5-5v5h-5z" + } + }] +}; +exports.crop = crop; +var makeGroup = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5 2h-2c-0.55 0-1 0.45-1 1v2c0 0.55 0.45 1 1 1h2c0.55 0 1-0.45 1-1v-2c0-0.55-0.45-1-1-1z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11 6h2c0.55 0 1-0.45 1-1v-2c0-0.55-0.45-1-1-1h-2c-0.55 0-1 0.45-1 1v2c0 0.55 0.45 1 1 1zM11 3h2v2h-2v-2z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5 10h-2c-0.55 0-1 0.45-1 1v2c0 0.55 0.45 1 1 1h2c0.55 0 1-0.45 1-1v-2c0-0.55-0.45-1-1-1zM5 13h-2v-2h2v2z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13 10h-2c-0.55 0-1 0.45-1 1v2c0 0.55 0.45 1 1 1h2c0.55 0 1-0.45 1-1v-2c0-0.55-0.45-1-1-1z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14 8h-1c-1.336 0-2.591-0.52-3.536-1.464s-1.464-2.2-1.464-3.536v-1c0-1.1-0.9-2-2-2h-4c-1.1 0-2 0.9-2 2v4c0 1.1 0.9 2 2 2h1c1.336 0 2.591 0.52 3.536 1.464s1.464 2.2 1.464 3.536v1c0 1.1 0.9 2 2 2h4c1.1 0 2-0.9 2-2v-4c0-1.1-0.9-2-2-2zM15 14c0 0.265-0.105 0.515-0.295 0.705s-0.44 0.295-0.705 0.295h-4c-0.265 0-0.515-0.105-0.705-0.295s-0.295-0.44-0.295-0.705v-1c0-3.314-2.686-6-6-6h-1c-0.265 0-0.515-0.105-0.705-0.295s-0.295-0.441-0.295-0.705v-4c0-0.265 0.105-0.515 0.295-0.705s0.44-0.295 0.705-0.295h4c0.265 0 0.515 0.105 0.705 0.295s0.295 0.44 0.295 0.705v1c0 3.314 2.686 6 6 6h1c0.265 0 0.515 0.105 0.705 0.295s0.295 0.44 0.295 0.705v4z" + } + }] +}; +exports.makeGroup = makeGroup; +var ungroup = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6 7.25c0 0.412-0.338 0.75-0.75 0.75h-1.5c-0.413 0-0.75-0.338-0.75-0.75v-1.5c0-0.412 0.337-0.75 0.75-0.75h1.5c0.412 0 0.75 0.338 0.75 0.75v1.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11 7.25c0 0.412-0.338 0.75-0.75 0.75h-1.5c-0.412 0-0.75-0.338-0.75-0.75v-1.5c0-0.412 0.338-0.75 0.75-0.75h1.5c0.412 0 0.75 0.338 0.75 0.75v1.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6 12.25c0 0.412-0.338 0.75-0.75 0.75h-1.5c-0.413 0-0.75-0.338-0.75-0.75v-1.5c0-0.412 0.337-0.75 0.75-0.75h1.5c0.412 0 0.75 0.338 0.75 0.75v1.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11 12.25c0 0.412-0.338 0.75-0.75 0.75h-1.5c-0.412 0-0.75-0.338-0.75-0.75v-1.5c0-0.412 0.338-0.75 0.75-0.75h1.5c0.412 0 0.75 0.338 0.75 0.75v1.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.251 2.5l1.749-1.749v-0.751h-0.751l-1.749 1.749-1.749-1.749h-0.751v0.751l1.749 1.749-1.749 1.749v0.751h0.751l1.749-1.749 1.749 1.749h0.751v-0.751z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 12h1v2h-1v-2z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 9h1v2h-1v-2z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13 7h1v2h-1v-2z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13 13h1v2h-1v-2z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13 10h1v2h-1v-2z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 6h1v2h-1v-2z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 3h1v2h-1v-2z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 2h2v1h-2v-1z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5 2h2v1h-2v-1z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M2 2h2v1h-2v-1z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7 15h2v1h-2v-1z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M10 15h2v1h-2v-1z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4 15h2v1h-2v-1z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M1 15h2v1h-2v-1z" + } + }] +}; +exports.ungroup = ungroup; +var scissors = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.279 10.62c-1.042-1.628-2.829-2.345-3.992-1.601-0.1 0.064-0.193 0.138-0.277 0.218l-1.241-1.942 2.867-4.5c0.235-0.433 0.321-0.949 0.207-1.468-0.109-0.496-0.383-0.913-0.752-1.207l-0.192-0.122-3.398 5.314-3.398-5.314-0.192 0.122c-0.369 0.294-0.643 0.711-0.752 1.207-0.114 0.519-0.027 1.035 0.207 1.468l2.867 4.5-1.241 1.942c-0.085-0.081-0.177-0.154-0.277-0.218-1.163-0.744-2.95-0.028-3.992 1.601s-0.944 3.551 0.219 4.296c1.163 0.744 2.95 0.028 3.992-1.601l2.567-4.029 2.567 4.029c1.042 1.628 2.829 2.345 3.992 1.601s1.261-2.667 0.219-4.296zM3.67 12.507c-0.469 0.733-1.071 1.089-1.478 1.179-0 0-0 0-0 0-0.133 0.029-0.317 0.047-0.443-0.033-0.139-0.089-0.231-0.324-0.247-0.629-0.025-0.494 0.151-1.076 0.483-1.594 0.469-0.733 1.071-1.089 1.478-1.179 0.133-0.029 0.317-0.047 0.443 0.033 0.139 0.089 0.231 0.324 0.247 0.629 0.025 0.495-0.151 1.076-0.483 1.594zM7.5 8c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5 0.5 0.224 0.5 0.5-0.224 0.5-0.5 0.5zM13.498 13.023c-0.016 0.305-0.108 0.54-0.247 0.629-0.125 0.080-0.31 0.062-0.443 0.033 0 0 0 0-0 0-0.407-0.089-1.009-0.446-1.478-1.179-0.332-0.519-0.508-1.1-0.483-1.594 0.016-0.305 0.108-0.54 0.247-0.629 0.125-0.080 0.31-0.062 0.443-0.033 0.407 0.089 1.009 0.446 1.478 1.179 0.332 0.519 0.508 1.1 0.483 1.594z" + } + }] +}; +exports.scissors = scissors; +var filter = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 1.119-8 2.5v1.5l6 6v5c0 0.552 0.895 1 2 1s2-0.448 2-1v-5l6-6v-1.5c0-1.381-3.582-2.5-8-2.5zM1.475 2.169c0.374-0.213 0.9-0.416 1.52-0.586 1.374-0.376 3.152-0.583 5.005-0.583s3.631 0.207 5.005 0.583c0.62 0.17 1.146 0.372 1.52 0.586 0.247 0.141 0.38 0.26 0.442 0.331-0.062 0.071-0.195 0.19-0.442 0.331-0.374 0.213-0.9 0.416-1.52 0.586-1.374 0.376-3.152 0.583-5.005 0.583s-3.631-0.207-5.005-0.583c-0.62-0.17-1.146-0.372-1.52-0.586-0.247-0.141-0.38-0.26-0.442-0.331 0.062-0.071 0.195-0.19 0.442-0.331z" + } + }] +}; +exports.filter = filter; +var font = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12.494 0.253c-1.414 0-2.322-0.253-3.779-0.253-4.708 0-6.903 2.681-6.903 5.404 0 1.604 0.76 2.132 2.259 2.132-0.106-0.232-0.296-0.486-0.296-1.626 0-3.188 1.203-4.117 2.744-4.18 0 0-1.264 12.396-4.934 13.883v0.385h4.947l1.688-8h3.091l0.689-2h-3.358l0.812-3.847c0.929 0.19 1.837 0.38 2.618 0.38 0.971 0 1.858-0.296 2.343-2.533-0.591 0.19-1.224 0.253-1.921 0.253z" + } + }] +}; +exports.font = font; +var ligature = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12 13.622c0-0.001 0-0.001 0-0.002l-0.005-6.821-1.992 0.097h-3.936v-0.336c0-1.274 0.091-2.546 0.269-3.042 0.123-0.343 0.353-0.652 0.683-0.919 0.322-0.261 0.643-0.393 0.955-0.393 0.262 0 0.48 0.045 0.647 0.134 0.235 0.134 0.464 0.359 0.682 0.669 0.577 0.82 0.812 1.038 0.939 1.131 0.216 0.158 0.477 0.238 0.776 0.238 0.292 0 0.546-0.109 0.757-0.324 0.209-0.213 0.315-0.479 0.315-0.792 0-0.335-0.139-0.691-0.414-1.057-0.268-0.358-0.683-0.652-1.232-0.875-0.536-0.218-1.14-0.329-1.793-0.329-0.949 0-1.813 0.228-2.568 0.678-0.757 0.451-1.337 1.077-1.725 1.863-0.359 0.728-0.333 2.105-0.355 3.355h-1.965v1.116h1.962v5.073c0 1.12-0.342 1.422-0.472 1.583-0.179 0.222-0.509 0.455-0.944 0.455h-0.604v0.878h6.021v-0.878h-0.105c-1.424 0-1.828-0.154-1.828-1.888 0-0 0-0.001 0-0.001l-0.001-5.222h2.191c1.163 0 1.43 0.054 1.491 0.077 0.074 0.028 0.169 0.075 0.204 0.143 0.014 0.026 0.081 0.391 0.081 1.296v3.917c0 0.913-0.111 1.217-0.179 1.319-0.145 0.222-0.319 0.345-0.854 0.358v0.879h4.588v-0.873c-1.431 0-1.588-0.153-1.588-1.505z" + } + }] +}; +exports.ligature = ligature; +var ligature2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.364 14.335c-0.183 0-1.307-0.206-1.375-0.458-0.161-0.619-0.183-1.284-0.183-2.040v-8.453c0-1.261 0.252-1.994 0.252-1.994-0.023-0.115-0.138-0.367-0.275-0.367h-0.069c-0.069 0-0.871 0.504-1.605 0.504-0.596-0-0.967-0.527-1.655-0.527-2.892 0-4.249 2.349-4.249 5.672v0.173c0 0.069-0.046 0.138-0.115 0.138h-0.94c-0.115 0-0.344 0.642-0.344 0.94 0 0.092 0.023 0.137 0.069 0.137h1.215c0.069 0 0.115 0.092 0.115 0.16 0 2.040-0.023 4.052-0.023 4.052 0 0.321-0.023 1.031-0.16 1.605-0.069 0.252-1.123 0.458-1.398 0.458-0.115 0-0.115 0.55 0 0.665 0.94-0.046 1.559-0.115 2.499-0.115 0.871 0 1.536 0.069 2.453 0.115 0.046-0.138 0.046-0.665-0.069-0.665-0.183 0-1.307-0.206-1.375-0.458-0.16-0.619-0.16-1.284-0.183-2.040v-3.639c0-0.069 0.069-0.138 0.138-0.138h2.361c0.16-0.321 0.275-0.711 0.275-0.917 0-0.138 0-0.16-0.115-0.16h-2.544c-0.046 0-0.115-0.069-0.115-0.115v-0.825c0-2.040 0.836-3.837 2.234-3.837 0.99 0 1.854 0.642 1.854 3.093 0 0 0 0 0 0 0.003 0.063 0.005 0.114 0.005 0.148v6.825c0 0.321-0.023 1.031-0.16 1.605-0.069 0.252-1.123 0.458-1.398 0.458-0.115 0-0.115 0.55 0 0.665 0.94-0.046 1.559-0.115 2.499-0.115 0.871 0 1.536 0.069 2.453 0.115 0.046-0.137 0.046-0.665-0.069-0.665z" + } + }] +}; +exports.ligature2 = ligature2; +var textHeight = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14 12h2l-2.5 3-2.5-3h2v-8h-2l2.5-3 2.5 3h-2zM10 1v4l-1-2h-3v11h2v1h-6v-1h2v-11h-3l-1 2v-4z" + } + }] +}; +exports.textHeight = textHeight; +var textWidth = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4 14v2l-3-2.5 3-2.5v2h8v-2l3 2.5-3 2.5v-2zM13 1v4l-1-2h-3v7h2v1h-6v-1h2v-7h-3l-1 2v-4z" + } + }] +}; +exports.textWidth = textWidth; +var fontSize = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M1 8h6v2h-2v6h-2v-6h-2zM15 4h-3.934v12h-2.133v-12h-3.934v-2h10z" + } + }] +}; +exports.fontSize = fontSize; +var bold = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.061 7.573c0.586-0.696 0.939-1.594 0.939-2.573 0-2.206-1.794-4-4-4h-5v14h6c2.206 0 4-1.794 4-4 0-1.452-0.778-2.726-1.939-3.427zM6 3h1.586c0.874 0 1.586 0.897 1.586 2s-0.711 2-1.586 2h-1.586v-4zM8.484 13h-2.484v-4h2.484c0.913 0 1.656 0.897 1.656 2s-0.743 2-1.656 2z" + } + }] +}; +exports.bold = bold; +var underline = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11 1h2v6.5c0 2.485-2.239 4.5-5 4.5s-5-2.015-5-4.5v-6.5h2v6.5c0 0.628 0.285 1.23 0.802 1.695 0.577 0.519 1.357 0.805 2.198 0.805s1.621-0.286 2.198-0.805c0.517-0.466 0.802-1.068 0.802-1.695v-6.5zM3 13h10v2h-10z" + } + }] +}; +exports.underline = underline; +var italic = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14 1v1h-2l-5 12h2v1h-7v-1h2l5-12h-2v-1z" + } + }] +}; +exports.italic = italic; +var strikethrough = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16 8v1h-3.664c0.43 0.602 0.664 1.292 0.664 2 0 1.107-0.573 2.172-1.572 2.921-0.927 0.696-2.145 1.079-3.428 1.079s-2.501-0.383-3.428-1.079c-0.999-0.749-1.572-1.814-1.572-2.921h2c0 1.084 1.374 2 3 2s3-0.916 3-2c0-1.084-1.374-2-3-2h-8v-1h4.68c-0.037-0.026-0.073-0.052-0.108-0.079-0.999-0.749-1.572-1.814-1.572-2.921s0.573-2.172 1.572-2.921c0.927-0.696 2.145-1.079 3.428-1.079s2.501 0.383 3.428 1.079c0.999 0.749 1.572 1.814 1.572 2.921h-2c0-1.084-1.374-2-3-2s-3 0.916-3 2c0 1.084 1.374 2 3 2 1.234 0 2.407 0.354 3.32 1h4.68z" + } + }] +}; +exports.strikethrough = strikethrough; +var omega = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11 14h4l1-2v4h-6v-3.347c2.049-0.883 3.5-3.081 3.5-5.653 0-3.35-2.462-5.973-5.5-5.973s-5.5 2.622-5.5 5.973c0 2.572 1.451 4.77 3.5 5.653v3.347h-6v-4l1 2h4v-0.509c-2.932-1.038-5-3.553-5-6.491 0-3.866 3.582-7 8-7s8 3.134 8 7c0 2.938-2.068 5.452-5 6.491v0.509z" + } + }] +}; +exports.omega = omega; +var sigma = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.713 11.48l0.694-1.48h0.594l-1 6h-15v-1.16l5.18-6.113-5.18-5.18v-3.547h15.313l0.688 4h-0.537l-0.293-0.607c-0.552-1.146-0.967-1.393-2.17-1.393h-10.344l5.517 5.516-4.647 5.483h8.474c1.813 0 2.291-0.65 2.713-1.52z" + } + }] +}; +exports.sigma = sigma; +var pageBreak = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 8h2v1h-2zM3 8h3v1h-3zM7 8h2v1h-2zM10 8h3v1h-3zM14 8h2v1h-2zM13.75 0l0.25 7h-12l0.25-7h0.5l0.25 6h10l0.25-6zM2.25 16l-0.25-6h12l-0.25 6h-0.5l-0.25-5h-10l-0.25 5z" + } + }] +}; +exports.pageBreak = pageBreak; +var superscript = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12 3.219v0.781h2v1h-3v-2.281l2-0.938v-0.781h-2v-1h3v2.281zM10.563 4h-2.125l-2.938 2.938-2.938-2.938h-2.125l4 4-4 4h2.125l2.938-2.938 2.938 2.938h2.125l-4-4z" + } + }] +}; +exports.superscript = superscript; +var subscript = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12 14.219v0.781h2v1h-3v-2.281l2-0.938v-0.781h-2v-1h3v2.281zM10.563 4h-2.125l-2.938 2.938-2.938-2.938h-2.125l4 4-4 4h2.125l2.938-2.938 2.938 2.938h2.125l-4-4z" + } + }] +}; +exports.subscript = subscript; +var superscript2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M3.032 13l0.9-3h4.137l0.9 3h1.775l-3-10h-3.488l-3 10h1.776zM5.432 5h1.137l0.9 3h-2.937l0.9-3zM11 13l2.5-4 2.5 4h-5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.5 2h-1c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5h2c0.276 0 0.5-0.224 0.5-0.5s-0.224-0.5-0.5-0.5h-2c-0.827 0-1.5 0.673-1.5 1.5 0 0.384 0.145 0.734 0.383 1 0.275 0.307 0.674 0.5 1.117 0.5h1c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5h-2c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5h2c0.827 0 1.5-0.673 1.5-1.5 0-0.384-0.145-0.734-0.383-1-0.275-0.307-0.674-0.5-1.117-0.5z" + } + }] +}; +exports.superscript2 = superscript2; +var subscript2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M3.032 13l0.9-3h4.137l0.9 3h1.775l-3-10h-3.488l-3 10h1.776zM5.432 5h1.137l0.9 3h-2.937l0.9-3zM16 3l-2.5 4-2.5-4h5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.5 13h-1c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5h2c0.276 0 0.5-0.224 0.5-0.5s-0.224-0.5-0.5-0.5h-2c-0.827 0-1.5 0.673-1.5 1.5 0 0.384 0.145 0.734 0.383 1 0.275 0.307 0.674 0.5 1.117 0.5h1c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5h-2c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5h2c0.827 0 1.5-0.673 1.5-1.5 0-0.384-0.145-0.734-0.383-1-0.275-0.307-0.674-0.5-1.117-0.5z" + } + }] +}; +exports.subscript2 = subscript2; +var textColor = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5.032 13l0.9-3h4.137l0.9 3h1.775l-3-10h-3.488l-3 10h1.776zM7.432 5h1.137l0.9 3h-2.937l0.9-3z" + } + }] +}; +exports.textColor = textColor; +var pagebreak = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4 6v-6h12v6h-1v-5h-10v5zM16 9v7h-12v-7h1v6h10v-6zM8 7h2v1h-2zM5 7h2v1h-2zM11 7h2v1h-2zM14 7h2v1h-2zM0 4.5l3 3-3 3z" + } + }] +}; +exports.pagebreak = pagebreak; +var clearFormatting = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 14h9v2h-9zM14 2h-4.727l-2.871 11h-2.067l2.871-11h-4.205v-2h11zM14.528 16l-2.028-2.028-2.028 2.028-0.972-0.972 2.028-2.028-2.028-2.028 0.972-0.972 2.028 2.028 2.028-2.028 0.972 0.972-2.028 2.028 2.028 2.028z" + } + }] +}; +exports.clearFormatting = clearFormatting; +var table = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 3v11h16v-11h-16zM6 10v-2h4v2h-4zM10 11v2h-4v-2h4zM10 5v2h-4v-2h4zM5 5v2h-4v-2h4zM1 8h4v2h-4v-2zM11 8h4v2h-4v-2zM11 7v-2h4v2h-4zM1 11h4v2h-4v-2zM11 13v-2h4v2h-4z" + } + }] +}; +exports.table = table; +var table2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 1v14h16v-14h-16zM6 10v-3h4v3h-4zM10 11v3h-4v-3h4zM10 3v3h-4v-3h4zM5 3v3h-4v-3h4zM1 7h4v3h-4v-3zM11 7h4v3h-4v-3zM11 6v-3h4v3h-4zM1 11h4v3h-4v-3zM11 14v-3h4v3h-4z" + } + }] +}; +exports.table2 = table2; +var insertTemplate = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6 3h2v1h-2zM9 3h2v1h-2zM14 3v4h-3v-1h2v-2h-1v-1zM5 6h2v1h-2zM8 6h2v1h-2zM3 4v2h1v1h-2v-4h3v1zM6 9h2v1h-2zM9 9h2v1h-2zM14 9v4h-3v-1h2v-2h-1v-1zM5 12h2v1h-2zM8 12h2v1h-2zM3 10v2h1v1h-2v-4h3v1zM15 1h-14v14h14v-14zM16 0v0 16h-16v-16h16z" + } + }] +}; +exports.insertTemplate = insertTemplate; +var pilcrow = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6 0h8v2h-2v14h-2v-14h-2v14h-2v-8c-2.209 0-4-1.791-4-4s1.791-4 4-4z" + } + }] +}; +exports.pilcrow = pilcrow; +var ltr = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-2.209 0-4 1.791-4 4s1.791 4 4 4v8h2v-14h2v14h2v-14h2v-2h-8zM0 11l4-4-4-4z" + } + }] +}; +exports.ltr = ltr; +var rtl = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4 0c-2.209 0-4 1.791-4 4s1.791 4 4 4v8h2v-14h2v14h2v-14h2v-2h-8zM16 3l-4 4 4 4z" + } + }] +}; +exports.rtl = rtl; +var section = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7.749 16c-0.771 0-1.424-0.225-1.939-0.669-0.519-0.447-0.782-0.969-0.782-1.552 0-0.283 0.103-0.527 0.307-0.726 0.207-0.202 0.465-0.309 0.748-0.309 0.281 0 0.534 0.1 0.732 0.29 0.195 0.187 0.294 0.435 0.294 0.736 0 0.177-0.029 0.372-0.086 0.58-0.056 0.206-0.068 0.312-0.068 0.364 0 0.058 0.014 0.126 0.121 0.199 0.199 0.138 0.439 0.204 0.732 0.204 0.353 0 0.667-0.123 0.962-0.375 0.29-0.249 0.431-0.505 0.431-0.782 0-0.308-0.082-0.575-0.252-0.816-0.287-0.402-0.826-0.874-1.603-1.401-1.248-0.835-2.079-1.559-2.54-2.211-0.358-0.511-0.539-1.061-0.539-1.636 0-0.579 0.19-1.155 0.564-1.713 0.32-0.477 0.794-0.908 1.41-1.283-0.33-0.355-0.577-0.689-0.736-0.995-0.201-0.387-0.303-0.787-0.303-1.189 0-0.747 0.295-1.393 0.878-1.92s1.31-0.795 2.161-0.795c0.783 0 1.441 0.22 1.956 0.654 0.521 0.439 0.785 0.952 0.785 1.524 0 0.292-0.109 0.553-0.324 0.776l-0.004 0.004c-0.125 0.124-0.353 0.271-0.735 0.271-0.299 0-0.561-0.098-0.758-0.283-0.196-0.184-0.296-0.405-0.296-0.656 0-0.108 0.027-0.272 0.084-0.515 0.028-0.115 0.042-0.221 0.042-0.316 0-0.162-0.058-0.285-0.183-0.39-0.129-0.108-0.314-0.161-0.565-0.161-0.389 0-0.708 0.118-0.975 0.361s-0.399 0.533-0.399 0.883c0 0.315 0.071 0.574 0.212 0.771 0.267 0.374 0.731 0.778 1.378 1.201 1.315 0.853 2.233 1.636 2.727 2.325 0.365 0.518 0.549 1.068 0.549 1.637 0 0.572-0.186 1.148-0.552 1.714-0.316 0.487-0.793 0.926-1.42 1.308 0.347 0.367 0.591 0.688 0.743 0.977 0.189 0.359 0.284 0.751 0.284 1.165 0 0.776-0.296 1.435-0.879 1.96s-1.31 0.79-2.161 0.79zM6.975 5.568c-0.753 0.452-1.12 0.972-1.12 1.583 0 0.356 0.102 0.674 0.31 0.973 0.311 0.436 0.926 0.97 1.825 1.583 0.381 0.259 0.724 0.511 1.025 0.751 0.767-0.461 1.14-0.974 1.14-1.565 0-0.322-0.127-0.668-0.378-1.030-0.263-0.378-0.826-0.872-1.674-1.467-0.443-0.306-0.821-0.583-1.128-0.827z" + } + }] +}; +exports.section = section; +var paragraphLeft = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 1h16v2h-16zM0 4h10v2h-10zM0 10h10v2h-10zM0 7h16v2h-16zM0 13h16v2h-16z" + } + }] +}; +exports.paragraphLeft = paragraphLeft; +var paragraphCenter = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 1h16v2h-16zM3 4h10v2h-10zM3 10h10v2h-10zM0 7h16v2h-16zM0 13h16v2h-16z" + } + }] +}; +exports.paragraphCenter = paragraphCenter; +var paragraphRight = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 1h16v2h-16zM6 4h10v2h-10zM6 10h10v2h-10zM0 7h16v2h-16zM0 13h16v2h-16z" + } + }] +}; +exports.paragraphRight = paragraphRight; +var paragraphJustify = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 1h16v2h-16zM0 4h16v2h-16zM0 7h16v2h-16zM0 10h16v2h-16zM0 13h16v2h-16z" + } + }] +}; +exports.paragraphJustify = paragraphJustify; +var indentIncrease = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 1h16v2h-16zM6 4h10v2h-10zM6 7h10v2h-10zM6 10h10v2h-10zM0 13h16v2h-16zM0 11v-6l4 3z" + } + }] +}; +exports.indentIncrease = indentIncrease; +var indentDecrease = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 1h16v2h-16zM6 4h10v2h-10zM6 7h10v2h-10zM6 10h10v2h-10zM0 13h16v2h-16zM4 5v6l-4-3z" + } + }] +}; +exports.indentDecrease = indentDecrease; +var share = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4 10c0 0 0.919-3 6-3v3l6-4-6-4v3c-4 0-6 2.495-6 5zM11 12h-9v-6h1.967c0.158-0.186 0.327-0.365 0.508-0.534 0.687-0.644 1.509-1.135 2.439-1.466h-6.914v10h13v-4.197l-2 1.333v0.864z" + } + }] +}; +exports.share = share; +var newTab = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M3 1v12h12v-12h-12zM14 12h-10v-10h10v10zM2 14v-10.5l-1-1v12.5h12.5l-1-1h-10.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5.5 4l2.5 2.5-3 3 1.5 1.5 3-3 2.5 2.5v-6.5z" + } + }] +}; +exports.newTab = newTab; +var embed = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9 11.5l1.5 1.5 5-5-5-5-1.5 1.5 3.5 3.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7 4.5l-1.5-1.5-5 5 5 5 1.5-1.5-3.5-3.5z" + } + }] +}; +exports.embed = embed; +var embed2 = { + "viewBox": "0 0 20 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13 11.5l1.5 1.5 5-5-5-5-1.5 1.5 3.5 3.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7 4.5l-1.5-1.5-5 5 5 5 1.5-1.5-3.5-3.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M10.958 2.352l1.085 0.296-3 11-1.085-0.296 3-11z" + } + }] +}; +exports.embed2 = embed2; +var terminal = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 1v14h16v-14h-16zM15 14h-14v-12h14v12zM14 3h-12v10h12v-10zM7 8h-1v1h-1v1h-1v-1h1v-1h1v-1h-1v-1h-1v-1h1v1h1v1h1v1zM11 10h-3v-1h3v1z" + } + }] +}; +exports.terminal = terminal; +var share2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.5 11c-0.706 0-1.342 0.293-1.797 0.763l-6.734-3.367c0.021-0.129 0.032-0.261 0.032-0.396s-0.011-0.267-0.032-0.396l6.734-3.367c0.455 0.47 1.091 0.763 1.797 0.763 1.381 0 2.5-1.119 2.5-2.5s-1.119-2.5-2.5-2.5-2.5 1.119-2.5 2.5c0 0.135 0.011 0.267 0.031 0.396l-6.734 3.367c-0.455-0.47-1.091-0.763-1.797-0.763-1.381 0-2.5 1.119-2.5 2.5s1.119 2.5 2.5 2.5c0.706 0 1.343-0.293 1.797-0.763l6.734 3.367c-0.021 0.129-0.031 0.261-0.031 0.396 0 1.381 1.119 2.5 2.5 2.5s2.5-1.119 2.5-2.5c0-1.381-1.119-2.5-2.5-2.5z" + } + }] +}; +exports.share2 = share2; +var mail = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.333 0h-10.666c-1.467 0-2.667 1.2-2.667 2.667v10.666c0 1.467 1.2 2.667 2.667 2.667h10.666c1.468 0 2.667-1.2 2.667-2.667v-10.666c0-1.467-1.199-2.667-2.667-2.667zM4 4h8c0.143 0 0.281 0.031 0.409 0.088l-4.409 5.143-4.409-5.143c0.127-0.058 0.266-0.088 0.409-0.088zM3 11v-6c0-0.021 0.001-0.042 0.002-0.063l2.932 3.421-2.9 2.9c-0.023-0.083-0.034-0.17-0.034-0.258zM12 12h-8c-0.088 0-0.175-0.012-0.258-0.034l2.846-2.846 1.413 1.648 1.413-1.648 2.846 2.846c-0.083 0.023-0.17 0.034-0.258 0.034zM13 11c0 0.088-0.012 0.175-0.034 0.258l-2.9-2.9 2.932-3.421c0.001 0.021 0.002 0.042 0.002 0.063v6z" + } + }] +}; +exports.mail = mail; +var mail2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.333 0h-10.666c-1.467 0-2.667 1.2-2.667 2.667v10.666c0 1.468 1.2 2.667 2.667 2.667h10.666c1.467 0 2.667-1.199 2.667-2.667v-10.666c0-1.467-1.2-2.667-2.667-2.667zM13.333 2c0.125 0 0.243 0.036 0.344 0.099l-5.678 4.694-5.677-4.694c0.101-0.063 0.219-0.099 0.344-0.099h10.666zM2.667 14c-0.030 0-0.060-0.002-0.089-0.006l3.525-4.89-0.457-0.457-3.646 3.646v-9.549l6 7.256 6-7.256v9.549l-3.646-3.646-0.457 0.457 3.525 4.89c-0.029 0.004-0.059 0.006-0.088 0.006h-10.666z" + } + }] +}; +exports.mail2 = mail2; +var mail3 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.333 0h-10.666c-1.467 0-2.667 1.2-2.667 2.667v10.666c0 1.468 1.2 2.667 2.667 2.667h10.666c1.467 0 2.667-1.199 2.667-2.667v-10.666c0-1.467-1.2-2.667-2.667-2.667zM2.854 13.854l-1.207-1.207 4-4 0.457 0.457-3.25 4.75zM2.396 3.104l0.457-0.457 5.146 4.146 5.146-4.146 0.457 0.457-5.604 6.604-5.604-6.604zM13.146 13.854l-3.25-4.75 0.457-0.457 4 4-1.207 1.207z" + } + }] +}; +exports.mail3 = mail3; +var mail4 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM4 4h8c0.143 0 0.281 0.031 0.409 0.088l-4.409 5.143-4.409-5.143c0.127-0.058 0.266-0.088 0.409-0.088zM3 11v-6c0-0.021 0.001-0.042 0.002-0.063l2.932 3.421-2.9 2.9c-0.023-0.083-0.034-0.17-0.034-0.258zM12 12h-8c-0.088 0-0.175-0.012-0.258-0.034l2.846-2.846 1.413 1.648 1.413-1.648 2.846 2.846c-0.083 0.023-0.17 0.034-0.258 0.034zM13 11c0 0.088-0.012 0.175-0.034 0.258l-2.9-2.9 2.932-3.421c0.001 0.021 0.002 0.042 0.002 0.063v6z" + } + }] +}; +exports.mail4 = mail4; +var amazon = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.463 13.831c-1.753 1.294-4.291 1.981-6.478 1.981-3.066 0-5.825-1.131-7.912-3.019-0.163-0.147-0.019-0.35 0.178-0.234 2.253 1.313 5.041 2.1 7.919 2.1 1.941 0 4.075-0.403 6.041-1.238 0.294-0.125 0.544 0.197 0.253 0.409z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.191 13c-0.225-0.287-1.481-0.137-2.047-0.069-0.172 0.019-0.197-0.128-0.044-0.238 1.003-0.703 2.647-0.5 2.838-0.266 0.194 0.238-0.050 1.884-0.991 2.672-0.144 0.122-0.281 0.056-0.219-0.103 0.216-0.528 0.688-1.709 0.463-1.997z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.053 11.838l0.003 0.003c0.387-0.341 1.084-0.95 1.478-1.278 0.156-0.125 0.128-0.334 0.006-0.509-0.353-0.488-0.728-0.884-0.728-1.784v-3c0-1.272 0.088-2.438-0.847-3.313-0.738-0.706-1.963-0.956-2.9-0.956-1.831 0-3.875 0.684-4.303 2.947-0.047 0.241 0.131 0.369 0.287 0.403l1.866 0.203c0.175-0.009 0.3-0.181 0.334-0.356 0.159-0.778 0.813-1.156 1.547-1.156 0.397 0 0.847 0.144 1.081 0.5 0.269 0.397 0.234 0.938 0.234 1.397v0.25c-1.116 0.125-2.575 0.206-3.619 0.666-1.206 0.522-2.053 1.584-2.053 3.147 0 2 1.259 3 2.881 3 1.369 0 2.116-0.322 3.172-1.403 0.35 0.506 0.463 0.753 1.103 1.284 0.147 0.078 0.328 0.072 0.456-0.044zM9.113 7.144c0 0.75 0.019 1.375-0.359 2.041-0.306 0.544-0.791 0.875-1.331 0.875-0.737 0-1.169-0.563-1.169-1.394 0-1.641 1.472-1.938 2.863-1.938v0.416z" + } + }] +}; +exports.amazon = amazon; +var google = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8.159 6.856v2.744h4.537c-0.184 1.178-1.372 3.45-4.537 3.45-2.731 0-4.959-2.262-4.959-5.050s2.228-5.050 4.959-5.050c1.553 0 2.594 0.663 3.188 1.234l2.172-2.091c-1.394-1.306-3.2-2.094-5.359-2.094-4.422 0-8 3.578-8 8s3.578 8 8 8c4.616 0 7.681-3.247 7.681-7.816 0-0.525-0.056-0.925-0.125-1.325l-7.556-0.003z" + } + }] +}; +exports.google = google; +var google2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.5 0h-13c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM8.119 14c-3.316 0-6-2.684-6-6s2.684-6 6-6c1.619 0 2.975 0.591 4.019 1.569l-1.628 1.569c-0.447-0.428-1.225-0.925-2.391-0.925-2.050 0-3.719 1.697-3.719 3.787s1.672 3.787 3.719 3.787c2.375 0 3.266-1.706 3.403-2.588h-3.403v-2.056h5.666c0.050 0.3 0.094 0.6 0.094 0.994 0.003 3.428-2.294 5.863-5.759 5.863z" + } + }] +}; +exports.google2 = google2; +var google3 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.419 0-8 3.581-8 8s3.581 8 8 8 8-3.581 8-8-3.581-8-8-8zM8.119 14c-3.316 0-6-2.684-6-6s2.684-6 6-6c1.619 0 2.975 0.591 4.019 1.569l-1.628 1.569c-0.447-0.428-1.225-0.925-2.391-0.925-2.050 0-3.719 1.697-3.719 3.787s1.672 3.787 3.719 3.787c2.375 0 3.266-1.706 3.403-2.588h-3.403v-2.056h5.666c0.050 0.3 0.094 0.6 0.094 0.994 0.003 3.428-2.294 5.863-5.759 5.863z" + } + }] +}; +exports.google3 = google3; +var googlePlus = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5.091 7.147v1.747h2.888c-0.116 0.75-0.872 2.197-2.888 2.197-1.737 0-3.156-1.441-3.156-3.216s1.419-3.216 3.156-3.216c0.991 0 1.65 0.422 2.028 0.784l1.381-1.331c-0.888-0.828-2.037-1.331-3.409-1.331-2.816 0.003-5.091 2.278-5.091 5.094s2.275 5.091 5.091 5.091c2.937 0 4.888-2.066 4.888-4.975 0-0.334-0.037-0.591-0.081-0.844h-4.806z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16 7h-1.5v-1.5h-1.5v1.5h-1.5v1.5h1.5v1.5h1.5v-1.5h1.5z" + } + }] +}; +exports.googlePlus = googlePlus; +var googlePlus2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.5 0h-13c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM6 12c-2.212 0-4-1.787-4-4s1.788-4 4-4c1.081 0 1.984 0.394 2.681 1.047l-1.088 1.044c-0.297-0.284-0.816-0.616-1.594-0.616-1.366 0-2.481 1.131-2.481 2.525s1.116 2.525 2.481 2.525c1.584 0 2.178-1.137 2.269-1.725h-2.269v-1.372h3.778c0.034 0.2 0.063 0.4 0.063 0.663 0 2.287-1.531 3.909-3.841 3.909zM14 8h-1v1h-1v-1h-1v-1h1v-1h1v1h1v1z" + } + }] +}; +exports.googlePlus2 = googlePlus2; +var googlePlus3 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.419 0-8 3.581-8 8s3.581 8 8 8 8-3.581 8-8-3.581-8-8-8zM6 12c-2.212 0-4-1.787-4-4s1.788-4 4-4c1.081 0 1.984 0.394 2.681 1.047l-1.088 1.044c-0.297-0.284-0.816-0.616-1.594-0.616-1.366 0-2.481 1.131-2.481 2.525s1.116 2.525 2.481 2.525c1.584 0 2.178-1.137 2.269-1.725h-2.269v-1.372h3.778c0.034 0.2 0.063 0.4 0.063 0.663 0 2.287-1.531 3.909-3.841 3.909zM13 8v1h-1v-1h-1v-1h1v-1h1v1h1v1h-1z" + } + }] +}; +exports.googlePlus3 = googlePlus3; +var hangouts = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7.997 0c-3.816 0-6.909 3.094-6.909 6.909 0 3.616 3.294 6.547 6.909 6.547v2.544c4.197-2.128 6.916-5.556 6.916-9.091 0-3.816-3.1-6.909-6.916-6.909zM7 8c0 0.828-0.447 1.5-1 1.5v-1.5h-2v-3h3v3zM12 8c0 0.828-0.447 1.5-1 1.5v-1.5h-2v-3h3v3z" + } + }] +}; +exports.hangouts = hangouts; +var googleDrive = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6.844 10l-2.884 5h9.072l2.884-5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.506 9l-4.619-8h-5.775l4.619 8z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4.534 2l-4.534 7.856 2.888 5 4.534-7.856z" + } + }] +}; +exports.googleDrive = googleDrive; +var facebook = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9.5 3h2.5v-3h-2.5c-1.93 0-3.5 1.57-3.5 3.5v1.5h-2v3h2v8h3v-8h2.5l0.5-3h-3v-1.5c0-0.271 0.229-0.5 0.5-0.5z" + } + }] +}; +exports.facebook = facebook; +var facebook2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.5 0h-13c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h6.5v-7h-2v-2h2v-1c0-1.653 1.347-3 3-3h2v2h-2c-0.55 0-1 0.45-1 1v1h3l-0.5 2h-2.5v7h4.5c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5z" + } + }] +}; +exports.facebook2 = facebook2; +var instagram = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.5 0h-13c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM11 2.5c0-0.275 0.225-0.5 0.5-0.5h2c0.275 0 0.5 0.225 0.5 0.5v2c0 0.275-0.225 0.5-0.5 0.5h-2c-0.275 0-0.5-0.225-0.5-0.5v-2zM8 5c1.656 0 3 1.344 3 3s-1.344 3-3 3c-1.656 0-3-1.344-3-3s1.344-3 3-3zM14 13.5v0c0 0.275-0.225 0.5-0.5 0.5h-11c-0.275 0-0.5-0.225-0.5-0.5v0-6.5h1.1c-0.066 0.322-0.1 0.656-0.1 1 0 2.762 2.237 5 5 5s5-2.238 5-5c0-0.344-0.034-0.678-0.1-1h1.1v6.5z" + } + }] +}; +exports.instagram = instagram; +var whatsapp = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.641 2.325c-1.497-1.5-3.488-2.325-5.609-2.325-4.369 0-7.925 3.556-7.925 7.928 0 1.397 0.366 2.763 1.059 3.963l-1.125 4.109 4.203-1.103c1.159 0.631 2.463 0.966 3.787 0.966h0.003c0 0 0 0 0 0 4.369 0 7.928-3.556 7.928-7.928 0-2.119-0.825-4.109-2.322-5.609zM8.034 14.525v0c-1.184 0-2.344-0.319-3.356-0.919l-0.241-0.144-2.494 0.653 0.666-2.431-0.156-0.25c-0.663-1.047-1.009-2.259-1.009-3.506 0-3.634 2.956-6.591 6.594-6.591 1.759 0 3.416 0.688 4.659 1.931 1.244 1.247 1.928 2.9 1.928 4.662-0.003 3.637-2.959 6.594-6.591 6.594zM11.647 9.588c-0.197-0.1-1.172-0.578-1.353-0.644s-0.313-0.1-0.447 0.1c-0.131 0.197-0.512 0.644-0.628 0.778-0.116 0.131-0.231 0.15-0.428 0.050s-0.838-0.309-1.594-0.984c-0.588-0.525-0.987-1.175-1.103-1.372s-0.013-0.306 0.088-0.403c0.091-0.088 0.197-0.231 0.297-0.347s0.131-0.197 0.197-0.331c0.066-0.131 0.034-0.247-0.016-0.347s-0.447-1.075-0.609-1.472c-0.159-0.388-0.325-0.334-0.447-0.341-0.116-0.006-0.247-0.006-0.378-0.006s-0.347 0.050-0.528 0.247c-0.181 0.197-0.694 0.678-0.694 1.653s0.709 1.916 0.809 2.050c0.1 0.131 1.397 2.134 3.384 2.991 0.472 0.203 0.841 0.325 1.128 0.419 0.475 0.15 0.906 0.128 1.247 0.078 0.381-0.056 1.172-0.478 1.338-0.941s0.166-0.859 0.116-0.941c-0.047-0.088-0.178-0.137-0.378-0.238z" + } + }] +}; +exports.whatsapp = whatsapp; +var spotify = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.4 0-8 3.6-8 8s3.6 8 8 8 8-3.6 8-8-3.559-8-8-8zM11.681 11.559c-0.159 0.241-0.441 0.319-0.681 0.159-1.881-1.159-4.241-1.4-7.041-0.759-0.281 0.081-0.519-0.119-0.6-0.359-0.081-0.281 0.119-0.519 0.359-0.6 3.041-0.681 5.681-0.4 7.759 0.881 0.281 0.119 0.322 0.438 0.203 0.678zM12.641 9.359c-0.2 0.281-0.559 0.4-0.841 0.2-2.159-1.319-5.441-1.719-7.959-0.919-0.319 0.081-0.681-0.081-0.759-0.4-0.081-0.319 0.081-0.681 0.4-0.759 2.919-0.881 6.519-0.441 9 1.081 0.238 0.119 0.359 0.519 0.159 0.797zM12.719 7.119c-2.559-1.519-6.841-1.681-9.281-0.919-0.4 0.119-0.8-0.119-0.919-0.481-0.119-0.4 0.119-0.8 0.481-0.919 2.841-0.841 7.519-0.681 10.481 1.081 0.359 0.2 0.481 0.681 0.281 1.041-0.203 0.278-0.681 0.397-1.044 0.197z" + } + }] +}; +exports.spotify = spotify; +var telegram = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.419 0-8 3.581-8 8s3.581 8 8 8 8-3.581 8-8-3.581-8-8-8zM11.931 5.484l-1.313 6.184c-0.091 0.441-0.356 0.544-0.725 0.341l-2-1.478-0.959 0.934c-0.112 0.109-0.2 0.2-0.4 0.2-0.259 0-0.216-0.097-0.303-0.344l-0.681-2.237-1.978-0.616c-0.428-0.131-0.431-0.425 0.097-0.634l7.706-2.975c0.35-0.159 0.691 0.084 0.556 0.625z" + } + }] +}; +exports.telegram = telegram; +var twitter = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16 3.538c-0.588 0.263-1.222 0.438-1.884 0.516 0.678-0.406 1.197-1.050 1.444-1.816-0.634 0.375-1.338 0.65-2.084 0.797-0.6-0.638-1.453-1.034-2.397-1.034-1.813 0-3.281 1.469-3.281 3.281 0 0.256 0.028 0.506 0.084 0.747-2.728-0.138-5.147-1.444-6.766-3.431-0.281 0.484-0.444 1.050-0.444 1.65 0 1.138 0.578 2.144 1.459 2.731-0.538-0.016-1.044-0.166-1.488-0.409 0 0.013 0 0.028 0 0.041 0 1.591 1.131 2.919 2.634 3.219-0.275 0.075-0.566 0.116-0.866 0.116-0.212 0-0.416-0.022-0.619-0.059 0.419 1.303 1.631 2.253 3.066 2.281-1.125 0.881-2.538 1.406-4.078 1.406-0.266 0-0.525-0.016-0.784-0.047 1.456 0.934 3.181 1.475 5.034 1.475 6.037 0 9.341-5.003 9.341-9.341 0-0.144-0.003-0.284-0.009-0.425 0.641-0.459 1.197-1.038 1.637-1.697z" + } + }] +}; +exports.twitter = twitter; +var vine = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.012 7.953c-0.412 0.094-0.809 0.137-1.169 0.137-2.019 0-3.572-1.409-3.572-3.862 0-1.203 0.466-1.825 1.122-1.825 0.625 0 1.041 0.559 1.041 1.697 0 0.647-0.172 1.356-0.3 1.775 0 0 0.622 1.084 2.322 0.753 0.363-0.803 0.556-1.841 0.556-2.75 0-2.45-1.25-3.878-3.541-3.878-2.356 0-3.734 1.809-3.734 4.197 0 2.366 1.106 4.394 2.928 5.319-0.766 1.534-1.741 2.884-2.759 3.903-1.844-2.231-3.513-5.206-4.197-11.016h-2.722c1.259 9.675 5.006 12.756 6 13.347 0.559 0.337 1.044 0.322 1.556 0.031 0.806-0.456 3.222-2.875 4.563-5.703 0.563 0 1.238-0.066 1.909-0.219v-1.906z" + } + }] +}; +exports.vine = vine; +var vk = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.5 0h-13c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM12.959 11.2l-1.463 0.022c0 0-0.316 0.063-0.728-0.222-0.547-0.375-1.063-1.353-1.466-1.225-0.406 0.128-0.394 1.006-0.394 1.006s0.003 0.188-0.091 0.287c-0.1 0.109-0.3 0.131-0.3 0.131h-0.653c0 0-1.444 0.088-2.716-1.238-1.388-1.444-2.612-4.309-2.612-4.309s-0.072-0.188 0.006-0.278c0.087-0.103 0.322-0.109 0.322-0.109l1.566-0.009c0 0 0.147 0.025 0.253 0.103 0.088 0.063 0.134 0.184 0.134 0.184s0.253 0.641 0.588 1.219c0.653 1.128 0.959 1.375 1.181 1.256 0.322-0.175 0.225-1.597 0.225-1.597s0.006-0.516-0.162-0.744c-0.131-0.178-0.378-0.231-0.484-0.244-0.088-0.013 0.056-0.216 0.244-0.309 0.281-0.138 0.778-0.147 1.366-0.141 0.456 0.003 0.591 0.034 0.769 0.075 0.541 0.131 0.356 0.634 0.356 1.841 0 0.388-0.069 0.931 0.209 1.109 0.119 0.078 0.412 0.012 1.147-1.234 0.347-0.591 0.609-1.284 0.609-1.284s0.056-0.125 0.144-0.178c0.091-0.053 0.213-0.037 0.213-0.037l1.647-0.009c0 0 0.494-0.059 0.575 0.166 0.084 0.234-0.184 0.781-0.856 1.678-1.103 1.472-1.228 1.334-0.309 2.184 0.875 0.813 1.056 1.209 1.088 1.259 0.356 0.6-0.406 0.647-0.406 0.647z" + } + }] +}; +exports.vk = vk; +var renren = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6.644 0.166c-3.769 0.634-6.644 3.913-6.644 7.862 0 1.963 0.713 3.759 1.887 5.15 2.791-1.35 4.744-4.406 4.756-7.966v-5.047z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9.356 0.166c3.769 0.634 6.644 3.913 6.644 7.862 0 1.963-0.713 3.759-1.887 5.15-2.791-1.35-4.744-4.406-4.756-7.966v-5.047z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7.972 10.041c-0.497 2.056-1.981 3.813-3.828 4.981 1.138 0.622 2.441 0.978 3.828 0.978s2.691-0.356 3.828-0.978c-1.847-1.169-3.331-2.925-3.828-4.981z" + } + }] +}; +exports.renren = renren; +var sinaWeibo = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6.722 14.031c-2.65 0.262-4.938-0.938-5.109-2.675-0.172-1.741 1.837-3.359 4.484-3.622 2.65-0.263 4.938 0.938 5.106 2.675 0.175 1.741-1.834 3.362-4.481 3.622zM12.019 8.259c-0.225-0.069-0.381-0.113-0.262-0.409 0.256-0.644 0.281-1.197 0.003-1.594-0.519-0.741-1.941-0.703-3.569-0.019 0 0-0.513 0.222-0.381-0.181 0.25-0.806 0.213-1.478-0.178-1.869-0.884-0.884-3.234 0.034-5.25 2.050-1.506 1.503-2.381 3.106-2.381 4.491 0 2.644 3.394 4.253 6.713 4.253 4.35 0 7.247-2.528 7.247-4.534 0-1.216-1.022-1.903-1.941-2.188z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.909 3.416c-1.050-1.166-2.6-1.609-4.031-1.306v0c-0.331 0.072-0.541 0.397-0.469 0.725 0.072 0.331 0.394 0.541 0.725 0.469 1.019-0.216 2.119 0.1 2.866 0.928s0.95 1.956 0.628 2.944v0c-0.103 0.322 0.072 0.666 0.394 0.772 0.322 0.103 0.666-0.072 0.772-0.394v-0.003c0.45-1.381 0.166-2.969-0.884-4.134z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.294 4.875c-0.512-0.569-1.269-0.784-1.963-0.634-0.284 0.059-0.466 0.344-0.406 0.628 0.063 0.284 0.344 0.466 0.625 0.403v0c0.341-0.072 0.709 0.034 0.959 0.309 0.25 0.278 0.319 0.656 0.209 0.987v0c-0.088 0.275 0.063 0.575 0.341 0.666 0.278 0.088 0.575-0.063 0.666-0.341 0.219-0.678 0.081-1.453-0.431-2.019z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6.869 10.884c-0.094 0.159-0.297 0.234-0.456 0.169-0.159-0.063-0.206-0.244-0.116-0.397 0.094-0.153 0.291-0.228 0.447-0.169 0.156 0.056 0.213 0.234 0.125 0.397zM6.022 11.966c-0.256 0.409-0.806 0.588-1.219 0.4-0.406-0.184-0.528-0.659-0.272-1.059 0.253-0.397 0.784-0.575 1.194-0.403 0.416 0.178 0.55 0.65 0.297 1.063zM6.984 9.072c-1.259-0.328-2.684 0.3-3.231 1.409-0.559 1.131-0.019 2.391 1.253 2.803 1.319 0.425 2.875-0.228 3.416-1.447 0.534-1.197-0.131-2.425-1.438-2.766z" + } + }] +}; +exports.sinaWeibo = sinaWeibo; +var rss = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M2.13 11.733c-1.175 0-2.13 0.958-2.13 2.126 0 1.174 0.955 2.122 2.13 2.122 1.179 0 2.133-0.948 2.133-2.122-0-1.168-0.954-2.126-2.133-2.126zM0.002 5.436v3.067c1.997 0 3.874 0.781 5.288 2.196 1.412 1.411 2.192 3.297 2.192 5.302h3.080c-0-5.825-4.739-10.564-10.56-10.564zM0.006 0v3.068c7.122 0 12.918 5.802 12.918 12.932h3.076c0-8.82-7.176-16-15.994-16z" + } + }] +}; +exports.rss = rss; +var rss2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.5 0h-13c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM4.359 12.988c-0.75 0-1.359-0.603-1.359-1.353 0-0.744 0.609-1.356 1.359-1.356 0.753 0 1.359 0.613 1.359 1.356 0 0.75-0.609 1.353-1.359 1.353zM7.772 13c0-1.278-0.497-2.481-1.397-3.381-0.903-0.903-2.1-1.4-3.375-1.4v-1.956c3.713 0 6.738 3.022 6.738 6.737h-1.966zM11.244 13c0-4.547-3.697-8.25-8.241-8.25v-1.956c5.625 0 10.203 4.581 10.203 10.206h-1.963z" + } + }] +}; +exports.rss2 = rss2; +var youtube = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.841 4.8c0 0-0.156-1.103-0.637-1.587-0.609-0.637-1.291-0.641-1.603-0.678-2.237-0.163-5.597-0.163-5.597-0.163h-0.006c0 0-3.359 0-5.597 0.163-0.313 0.038-0.994 0.041-1.603 0.678-0.481 0.484-0.634 1.587-0.634 1.587s-0.159 1.294-0.159 2.591v1.213c0 1.294 0.159 2.591 0.159 2.591s0.156 1.103 0.634 1.588c0.609 0.637 1.409 0.616 1.766 0.684 1.281 0.122 5.441 0.159 5.441 0.159s3.363-0.006 5.6-0.166c0.313-0.037 0.994-0.041 1.603-0.678 0.481-0.484 0.637-1.588 0.637-1.588s0.159-1.294 0.159-2.591v-1.213c-0.003-1.294-0.162-2.591-0.162-2.591zM6.347 10.075v-4.497l4.322 2.256-4.322 2.241z" + } + }] +}; +exports.youtube = youtube; +var youtube2 = { + "viewBox": "0 0 40 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5.375 2.647c0.003-0.014 0.005-0.023 0.006-0.028l0.016-0.118-0.74-0.004c-0.668-0.004-0.873 0-0.891 0.017-0.009 0.008-0.24 0.885-0.651 2.473-0.196 0.758-0.361 1.363-0.367 1.345s-0.24-0.883-0.522-1.922c-0.281-1.039-0.517-1.894-0.524-1.901-0.010-0.010-0.906-0.014-1.632-0.008-0.105 0.001-0.164-0.205 0.938 3.299 0.152 0.485 0.381 1.172 0.507 1.526 0.146 0.408 0.25 0.724 0.321 0.987 0.126 0.501 0.13 0.815 0.103 1.182-0.032 0.423-0.036 3.413-0.005 3.463 0.024 0.038 1.425 0.056 1.558 0.020 0.021-0.006 0.035-0.026 0.045-0.139 0.033-0.097 0.036-0.484 0.036-2.090v-2.051l0.090-0.283c0.059-0.185 0.206-0.672 0.328-1.082s0.269-0.9 0.327-1.090c0.529-1.724 1.033-3.419 1.047-3.516l0.011-0.079z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.221 5.135l-0 0.107-0.017 0-0.009 2.953-0.009 2.863-0.229 0.233c-0.257 0.261-0.462 0.361-0.648 0.314-0.203-0.051-0.197 0.028-0.214-3.356l-0.016-3.115h-1.474v0.107h-0.017v3.38c0 3.621-0 3.619 0.184 3.982 0.146 0.29 0.36 0.431 0.725 0.479h0c0.481 0.064 1-0.154 1.481-0.622l0.209-0.203v0.351c0 0.303 0.009 0.353 0.064 0.368 0.090 0.025 1.206 0.027 1.326 0.002l0.1-0.021v-0.104l0.017-0.003v-7.736l-1.472 0.020z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9.483 6.661c-0.14-0.599-0.401-1.002-0.832-1.28-0.676-0.437-1.449-0.484-2.165-0.13-0.522 0.258-0.859 0.686-1.032 1.314-0.021 0.075-0.036 0.138-0.047 0.231-0.044 0.222-0.049 0.552-0.061 2.093-0.018 2.374 0.010 2.656 0.307 3.195 0.292 0.529 0.897 0.917 1.556 0.997 0.198 0.024 0.6-0.013 0.832-0.078 0.525-0.146 1.029-0.561 1.252-1.032 0.096-0.204 0.154-0.345 0.189-0.604 0.065-0.353 0.070-0.925 0.070-2.381-0-1.857-0.006-2.060-0.068-2.326zM7.802 11.5c-0.124 0.094-0.34 0.135-0.515 0.098-0.135-0.029-0.318-0.241-0.374-0.434-0.070-0.241-0.075-3.594-0.015-4.251 0.1-0.329 0.378-0.501 0.682-0.419 0.237 0.064 0.358 0.212 0.427 0.523 0.051 0.231 0.057 0.518 0.046 2.207-0.007 1.12-0.011 1.668-0.048 1.962-0.037 0.185-0.099 0.235-0.203 0.315z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M35.944 8.346h0.712l-0.011-0.645c-0.011-0.592-0.020-0.659-0.099-0.82-0.125-0.253-0.309-0.366-0.601-0.366-0.351 0-0.573 0.17-0.678 0.518-0.045 0.148-0.092 1.167-0.058 1.255 0.019 0.049 0.121 0.058 0.735 0.058z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M31.184 6.879c-0.095-0.191-0.272-0.286-0.477-0.278-0.16 0.006-0.337 0.073-0.508 0.203l-0.127 0.097v4.634l0.127 0.097c0.288 0.22 0.604 0.266 0.822 0.12 0.086-0.058 0.142-0.137 0.186-0.263 0.057-0.164 0.062-0.375 0.055-2.325-0.008-2.032-0.012-2.152-0.078-2.285z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M40.014 4.791c-0.142-1.701-0.255-2.253-0.605-2.962-0.465-0.939-1.136-1.434-2.092-1.543-0.739-0.084-3.521-0.203-6.094-0.26-4.456-0.099-11.782 0.092-12.718 0.331-0.432 0.111-0.757 0.299-1.094 0.634-0.591 0.588-0.944 1.432-1.085 2.6-0.323 2.666-0.33 5.886-0.019 8.649 0.134 1.188 0.41 1.96 0.928 2.596 0.323 0.397 0.881 0.734 1.379 0.835 0.35 0.071 2.1 0.169 4.65 0.26 0.38 0.014 1.385 0.037 2.235 0.052 1.77 0.031 5.025 0.013 6.886-0.039 1.252-0.035 3.534-0.128 3.961-0.161 0.12-0.009 0.398-0.027 0.618-0.039 0.739-0.042 1.209-0.196 1.65-0.543 0.571-0.449 1.013-1.278 1.2-2.251 0.177-0.92 0.295-2.559 0.319-4.42 0.020-1.555-0.007-2.393-0.119-3.741zM22.27 4.175l-0.828 0.010-0.036 8.83-0.718 0.009c-0.555 0.008-0.724-0.001-0.737-0.036-0.010-0.025-0.021-2.016-0.026-4.424l-0.009-4.379-1.617-0.020v-1.38l4.779 0.019 0.020 1.36-0.828 0.010zM27.347 9.236v3.797h-1.308v-0.4c0-0.301-0.011-0.4-0.047-0.4-0.026 0-0.144 0.099-0.263 0.22-0.259 0.263-0.565 0.474-0.827 0.572-0.542 0.203-1.056 0.084-1.275-0.293-0.201-0.345-0.204-0.423-0.204-4.005v-3.29h1.307l0.010 3.098c0.010 3.044 0.011 3.1 0.084 3.224 0.097 0.164 0.244 0.209 0.478 0.144 0.138-0.038 0.232-0.105 0.455-0.327l0.282-0.28v-5.859h1.308v3.797zM32.449 12.491c-0.115 0.257-0.372 0.508-0.583 0.57-0.549 0.162-0.99 0.030-1.499-0.449-0.158-0.149-0.305-0.269-0.327-0.269-0.027 0-0.041 0.116-0.041 0.345v0.345h-1.308v-10.248h1.308v1.672c0 0.919 0.012 1.672 0.027 1.672s0.153-0.122 0.307-0.27c0.354-0.341 0.649-0.491 1.024-0.519 0.669-0.051 1.068 0.294 1.25 1.080 0.057 0.245 0.062 0.525 0.062 2.798-0 2.768-0 2.78-0.221 3.273zM37.984 10.971c-0.012 0.285-0.046 0.612-0.077 0.727-0.182 0.674-0.666 1.152-1.366 1.348-0.942 0.264-1.98-0.168-2.394-0.997-0.232-0.465-0.241-0.558-0.241-2.831 0-1.853 0.007-2.081 0.066-2.334 0.168-0.715 0.584-1.178 1.289-1.435 0.204-0.074 0.417-0.113 0.63-0.117 0.761-0.016 1.515 0.393 1.832 1.059 0.213 0.449 0.24 0.642 0.261 1.908l0.019 1.136-2.789 0.019-0.010 0.763c-0.015 1.077 0.058 1.408 0.349 1.603 0.244 0.165 0.62 0.152 0.824-0.027 0.192-0.168 0.246-0.349 0.265-0.877l0.017-0.463h1.347l-0.022 0.518z" + } + }] +}; +exports.youtube2 = youtube2; +var twitch = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M1.5 0l-1.5 2.5v11.5h4v2h2l2-2h2.5l4.5-4.5v-9.5h-13.5zM13 8.5l-2.5 2.5h-2.5l-2 2v-2h-3v-9h10v6.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9.5 4h1.5v4h-1.5v-4z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6.5 4h1.5v4h-1.5v-4z" + } + }] +}; +exports.twitch = twitch; +var vimeo = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.994 4.281c-0.072 1.556-1.159 3.691-3.263 6.397-2.175 2.825-4.016 4.241-5.522 4.241-0.931 0-1.722-0.859-2.366-2.581-0.431-1.578-0.859-3.156-1.291-4.734-0.478-1.722-0.991-2.581-1.541-2.581-0.119 0-0.538 0.253-1.256 0.753l-0.753-0.969c0.791-0.694 1.569-1.388 2.334-2.081 1.053-0.909 1.844-1.387 2.372-1.438 1.244-0.119 2.013 0.731 2.3 2.553 0.309 1.966 0.525 3.188 0.647 3.666 0.359 1.631 0.753 2.447 1.184 2.447 0.334 0 0.838-0.528 1.509-1.588 0.669-1.056 1.028-1.862 1.078-2.416 0.097-0.912-0.262-1.372-1.078-1.372-0.384 0-0.778 0.088-1.184 0.263 0.787-2.575 2.287-3.825 4.506-3.753 1.641 0.044 2.416 1.109 2.322 3.194z" + } + }] +}; +exports.vimeo = vimeo; +var vimeo2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.5 0h-13c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM13.463 5.313c-0.050 1.125-0.838 2.666-2.359 4.622-1.572 2.044-2.903 3.066-3.991 3.066-0.675 0-1.244-0.622-1.709-1.866-0.313-1.141-0.622-2.281-0.934-3.422-0.344-1.244-0.716-1.866-1.112-1.866-0.087 0-0.391 0.181-0.906 0.544l-0.544-0.7c0.572-0.5 1.134-1.003 1.687-1.503 0.763-0.656 1.331-1.003 1.712-1.038 0.9-0.087 1.453 0.528 1.662 1.844 0.225 1.422 0.381 2.303 0.469 2.65 0.259 1.178 0.544 1.766 0.856 1.766 0.241 0 0.606-0.381 1.091-1.147s0.744-1.347 0.778-1.747c0.069-0.659-0.191-0.991-0.778-0.991-0.278 0-0.563 0.063-0.856 0.191 0.569-1.859 1.653-2.766 3.256-2.712 1.188 0.034 1.747 0.803 1.678 2.309z" + } + }] +}; +exports.vimeo2 = vimeo2; +var lanyrd = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.5 0h-13c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM12.85 12.012l-5.444 1.781c-1.244 0.406-1.369 0.341-1.931-1.4l-1.375-4.259c-0.328-1.009-1.328-3.728-1.497-4.25-0.313-0.969-0.313-1.022 1.516-1.616 1.431-0.469 1.491-0.453 2.009 1.163 0.419 1.3 0.688 2.35 1.119 3.678l1.172 3.625 3.744-1.225c0.738-0.244 0.984-0.231 1.194 0.678l0.15 0.688c0.175 0.797-0.228 1-0.656 1.137z" + } + }] +}; +exports.lanyrd = lanyrd; +var flickr = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 8.5c0-1.933 1.567-3.5 3.5-3.5s3.5 1.567 3.5 3.5c0 1.933-1.567 3.5-3.5 3.5s-3.5-1.567-3.5-3.5zM9 8.5c0-1.933 1.567-3.5 3.5-3.5s3.5 1.567 3.5 3.5c0 1.933-1.567 3.5-3.5 3.5s-3.5-1.567-3.5-3.5z" + } + }] +}; +exports.flickr = flickr; +var flickr2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12.5 6.5c-1.103 0-2 0.897-2 2s0.897 2 2 2c1.103 0 2-0.897 2-2s-0.897-2-2-2zM12.5 5v0c1.933 0 3.5 1.567 3.5 3.5s-1.567 3.5-3.5 3.5-3.5-1.567-3.5-3.5c0-1.933 1.567-3.5 3.5-3.5zM0 8.5c0-1.933 1.567-3.5 3.5-3.5s3.5 1.567 3.5 3.5c0 1.933-1.567 3.5-3.5 3.5s-3.5-1.567-3.5-3.5z" + } + }] +}; +exports.flickr2 = flickr2; +var flickr3 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.5 0h-13c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM4.5 10.5c-1.381 0-2.5-1.119-2.5-2.5s1.119-2.5 2.5-2.5 2.5 1.119 2.5 2.5-1.119 2.5-2.5 2.5zM11.5 10.5c-1.381 0-2.5-1.119-2.5-2.5s1.119-2.5 2.5-2.5c1.381 0 2.5 1.119 2.5 2.5s-1.119 2.5-2.5 2.5z" + } + }] +}; +exports.flickr3 = flickr3; +var flickr4 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.606-8 8.055s3.582 8.055 8 8.055 8-3.606 8-8.055-3.582-8.055-8-8.055zM4.5 10.5c-1.381 0-2.5-1.119-2.5-2.5s1.119-2.5 2.5-2.5 2.5 1.119 2.5 2.5c0 1.381-1.119 2.5-2.5 2.5zM11.5 10.5c-1.381 0-2.5-1.119-2.5-2.5s1.119-2.5 2.5-2.5 2.5 1.119 2.5 2.5c0 1.381-1.119 2.5-2.5 2.5z" + } + }] +}; +exports.flickr4 = flickr4; +var dribbble = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 16c-4.412 0-8-3.588-8-8s3.587-8 8-8c4.412 0 8 3.587 8 8s-3.588 8-8 8v0zM14.747 9.094c-0.234-0.075-2.116-0.634-4.256-0.291 0.894 2.456 1.256 4.456 1.328 4.872 1.531-1.037 2.625-2.678 2.928-4.581v0zM10.669 14.3c-0.103-0.6-0.497-2.688-1.456-5.181-0.016 0.006-0.031 0.009-0.044 0.016-3.856 1.344-5.241 4.016-5.362 4.266 1.159 0.903 2.616 1.444 4.194 1.444 0.947 0 1.85-0.194 2.669-0.544v0zM2.922 12.578c0.156-0.266 2.031-3.369 5.553-4.509 0.088-0.028 0.178-0.056 0.269-0.081-0.172-0.388-0.359-0.778-0.553-1.159-3.409 1.022-6.722 0.978-7.022 0.975-0.003 0.069-0.003 0.138-0.003 0.209 0 1.753 0.666 3.356 1.756 4.566v0zM1.313 6.609c0.306 0.003 3.122 0.016 6.319-0.831-1.131-2.013-2.353-3.706-2.534-3.953-1.913 0.903-3.344 2.666-3.784 4.784v0zM6.4 1.366c0.188 0.253 1.431 1.944 2.55 4 2.431-0.909 3.459-2.294 3.581-2.469-1.206-1.072-2.794-1.722-4.531-1.722-0.55 0.003-1.088 0.069-1.6 0.191v0zM13.291 3.691c-0.144 0.194-1.291 1.663-3.816 2.694 0.159 0.325 0.313 0.656 0.453 0.991 0.050 0.119 0.1 0.234 0.147 0.353 2.275-0.284 4.534 0.172 4.759 0.219-0.016-1.612-0.594-3.094-1.544-4.256v0z" + } + }] +}; +exports.dribbble = dribbble; +var behance = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4.641 3.206c0.472 0 0.897 0.041 1.284 0.125 0.388 0.081 0.716 0.219 0.994 0.406 0.275 0.188 0.487 0.438 0.644 0.75 0.15 0.309 0.225 0.697 0.225 1.156 0 0.497-0.112 0.909-0.338 1.241-0.228 0.331-0.559 0.6-1.003 0.813 0.606 0.175 1.053 0.481 1.353 0.916 0.3 0.438 0.444 0.963 0.444 1.581 0 0.5-0.097 0.928-0.287 1.291-0.194 0.366-0.456 0.662-0.778 0.891-0.325 0.231-0.7 0.4-1.119 0.509-0.416 0.109-0.844 0.166-1.287 0.166h-4.772v-9.844h4.641zM4.359 7.181c0.384 0 0.703-0.091 0.953-0.275 0.25-0.181 0.369-0.481 0.369-0.894 0-0.228-0.041-0.419-0.122-0.566-0.084-0.147-0.194-0.263-0.334-0.344-0.138-0.084-0.294-0.141-0.478-0.172-0.178-0.034-0.366-0.050-0.556-0.050h-2.025v2.3h2.194zM4.478 11.372c0.213 0 0.416-0.019 0.606-0.063 0.194-0.044 0.366-0.109 0.509-0.209 0.144-0.097 0.266-0.225 0.353-0.394 0.088-0.166 0.128-0.378 0.128-0.637 0-0.506-0.144-0.869-0.428-1.088-0.284-0.216-0.662-0.322-1.131-0.322h-2.35v2.709h2.313z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.331 11.338c0.294 0.287 0.716 0.431 1.266 0.431 0.394 0 0.738-0.1 1.022-0.3s0.456-0.412 0.522-0.631h1.725c-0.278 0.859-0.697 1.469-1.272 1.838-0.566 0.369-1.259 0.556-2.063 0.556-0.563 0-1.066-0.091-1.519-0.269-0.453-0.181-0.831-0.434-1.15-0.766-0.309-0.331-0.553-0.725-0.725-1.188-0.169-0.459-0.256-0.969-0.256-1.519 0-0.534 0.088-1.031 0.262-1.491 0.178-0.463 0.422-0.859 0.747-1.194s0.706-0.6 1.156-0.794c0.447-0.194 0.941-0.291 1.488-0.291 0.603 0 1.131 0.116 1.584 0.353 0.45 0.234 0.822 0.55 1.113 0.944s0.497 0.847 0.625 1.353c0.128 0.506 0.172 1.034 0.137 1.588h-5.147c0 0.559 0.188 1.094 0.484 1.378zM13.578 7.594c-0.231-0.256-0.628-0.397-1.106-0.397-0.313 0-0.572 0.053-0.778 0.159-0.203 0.106-0.369 0.237-0.497 0.394-0.125 0.156-0.213 0.325-0.262 0.503-0.050 0.172-0.081 0.331-0.091 0.469h3.188c-0.047-0.5-0.219-0.869-0.453-1.128z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M10.444 4h3.991v0.972h-3.991v-0.972z" + } + }] +}; +exports.behance = behance; +var behance2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6.316 7.009c0.203-0.147 0.3-0.391 0.3-0.728 0-0.188-0.031-0.341-0.097-0.459-0.069-0.119-0.156-0.213-0.272-0.278-0.112-0.069-0.241-0.116-0.388-0.141-0.144-0.028-0.297-0.041-0.453-0.041h-1.647v1.869h1.781c0.313 0.003 0.572-0.072 0.775-0.222z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6.594 8.697c-0.231-0.175-0.537-0.262-0.919-0.262h-1.916v2.203h1.878c0.175 0 0.338-0.016 0.494-0.050s0.297-0.088 0.416-0.169c0.119-0.078 0.216-0.184 0.287-0.319s0.106-0.309 0.106-0.519c0-0.412-0.116-0.706-0.347-0.884z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.5 0h-13c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM10.488 4.209h3.241v0.791h-3.241v-0.791zM8.463 10.725c-0.156 0.297-0.369 0.537-0.631 0.725-0.266 0.188-0.569 0.325-0.909 0.416-0.338 0.091-0.688 0.134-1.044 0.134h-3.878v-7.997h3.769c0.381 0 0.728 0.034 1.044 0.1 0.313 0.066 0.581 0.178 0.806 0.331 0.222 0.153 0.397 0.356 0.522 0.609 0.122 0.25 0.184 0.566 0.184 0.938 0 0.403-0.091 0.737-0.275 1.006s-0.453 0.487-0.816 0.659c0.494 0.141 0.856 0.391 1.097 0.744 0.244 0.356 0.363 0.784 0.363 1.284 0.003 0.409-0.075 0.759-0.231 1.050zM14.991 9.488h-4.178c0 0.456 0.156 0.891 0.394 1.125 0.238 0.231 0.581 0.35 1.028 0.35 0.322 0 0.597-0.081 0.831-0.244 0.231-0.162 0.372-0.334 0.425-0.512h1.4c-0.225 0.697-0.566 1.194-1.031 1.494-0.459 0.3-1.022 0.45-1.675 0.45-0.456 0-0.866-0.075-1.234-0.219-0.369-0.147-0.675-0.353-0.934-0.622-0.253-0.269-0.447-0.591-0.588-0.966-0.137-0.372-0.209-0.787-0.209-1.234 0-0.434 0.072-0.838 0.213-1.213 0.144-0.375 0.344-0.7 0.606-0.969 0.262-0.272 0.575-0.487 0.938-0.647 0.363-0.156 0.762-0.234 1.206-0.234 0.491 0 0.919 0.094 1.287 0.287 0.366 0.191 0.666 0.447 0.903 0.769s0.403 0.688 0.509 1.1c0.103 0.406 0.137 0.834 0.109 1.284z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12.134 7.247c-0.253 0-0.466 0.044-0.631 0.131s-0.3 0.194-0.403 0.319c-0.103 0.128-0.172 0.263-0.213 0.409-0.041 0.141-0.066 0.269-0.072 0.381h2.588c-0.037-0.406-0.178-0.706-0.366-0.916-0.194-0.213-0.512-0.325-0.903-0.325z" + } + }] +}; +exports.behance2 = behance2; +var deviantart = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12.953 2.909v-2.909h-2.909l-0.291 0.294-1.375 2.616-0.431 0.291h-4.9v3.994h2.694l0.241 0.291-2.934 5.606v2.909h2.909l0.291-0.294 1.375-2.616 0.431-0.291h4.9v-3.994h-2.694l-0.241-0.294z" + } + }] +}; +exports.deviantart = deviantart; +var fiveHundredPX = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M3.953 10.512c0.003 0.009 0.088 0.238 0.134 0.353 0.263 0.622 0.641 1.184 1.122 1.666s1.041 0.859 1.666 1.122c0.647 0.272 1.331 0.412 2.037 0.412s1.394-0.137 2.037-0.412c0.625-0.262 1.184-0.641 1.666-1.122s0.859-1.041 1.122-1.666c0.272-0.647 0.412-1.331 0.412-2.037s-0.137-1.394-0.412-2.037c-0.262-0.625-0.641-1.184-1.122-1.666s-1.041-0.859-1.666-1.122c-0.647-0.272-1.331-0.413-2.037-0.413-0.716 0-1.431 0.144-2.066 0.413-0.509 0.216-1.372 0.769-1.875 1.291l-0.003 0.003v-4.313h7.241c0.262-0.003 0.262-0.372 0.262-0.491 0-0.122 0-0.487-0.266-0.491h-7.828c-0.213 0-0.344 0.178-0.344 0.341v6.066c0 0.197 0.244 0.338 0.472 0.384 0.444 0.094 0.544-0.047 0.653-0.197l0.016-0.019c0.166-0.247 0.681-0.766 0.688-0.772 0.806-0.806 1.884-1.25 3.037-1.25 1.147 0 2.222 0.444 3.028 1.25 0.809 0.809 1.256 1.881 1.256 3.019 0 1.141-0.444 2.216-1.25 3.019-0.794 0.794-1.906 1.25-3.047 1.25-0.772 0-1.519-0.206-2.159-0.597l0.003-3.688c0-0.491 0.213-1.028 0.572-1.431 0.409-0.463 0.972-0.716 1.588-0.716 0.594 0 1.15 0.225 1.566 0.634 0.409 0.406 0.637 0.95 0.637 1.528 0 1.231-0.969 2.197-2.206 2.197-0.238 0-0.672-0.106-0.691-0.109-0.25-0.075-0.356 0.272-0.391 0.387-0.134 0.441 0.069 0.528 0.109 0.541 0.397 0.125 0.659 0.147 1.003 0.147 1.747 0 3.169-1.422 3.169-3.169 0-1.734-1.422-3.144-3.166-3.144-0.856 0-1.659 0.328-2.263 0.919-0.575 0.566-0.903 1.319-0.903 2.069v0.019c-0.003 0.094-0.003 2.306-0.006 3.031l-0.003-0.003c-0.328-0.363-0.653-0.919-0.869-1.488-0.084-0.222-0.275-0.184-0.534-0.103-0.125 0.034-0.469 0.141-0.391 0.394v0zM7.675 9.647c0 0.106 0.097 0.2 0.156 0.253l0.019 0.019c0.1 0.097 0.194 0.147 0.281 0.147 0.072 0 0.116-0.034 0.131-0.050 0.044-0.041 0.537-0.544 0.588-0.591l0.553 0.55c0.050 0.056 0.106 0.088 0.172 0.088 0.088 0 0.184-0.053 0.284-0.156 0.238-0.244 0.119-0.375 0.063-0.438l-0.559-0.559 0.584-0.588c0.128-0.137 0.016-0.284-0.097-0.397-0.162-0.162-0.322-0.206-0.422-0.112l-0.581 0.581-0.588-0.588c-0.031-0.031-0.072-0.047-0.113-0.047-0.078 0-0.172 0.053-0.275 0.156-0.181 0.181-0.219 0.306-0.125 0.406l0.588 0.584-0.584 0.584c-0.053 0.050-0.078 0.103-0.075 0.156zM8.953 1.716c-0.938 0-1.938 0.191-2.669 0.506-0.078 0.031-0.125 0.094-0.134 0.181-0.009 0.084 0.013 0.194 0.069 0.337 0.047 0.116 0.166 0.425 0.4 0.334 0.75-0.288 1.581-0.444 2.334-0.444 0.856 0 1.688 0.169 2.469 0.497 0.622 0.263 1.206 0.644 1.844 1.194 0.047 0.041 0.097 0.059 0.147 0.059 0.125 0 0.244-0.122 0.347-0.237 0.169-0.191 0.287-0.35 0.119-0.509-0.609-0.575-1.275-1.006-2.1-1.356-0.894-0.372-1.847-0.563-2.825-0.563zM14.006 13.3v0c-0.113-0.113-0.209-0.178-0.294-0.203s-0.162-0.006-0.222 0.053l-0.056 0.056c-0.581 0.581-1.259 1.037-2.012 1.356-0.781 0.331-1.609 0.497-2.463 0.497-0.856 0-1.684-0.169-2.463-0.497-0.753-0.319-1.431-0.775-2.013-1.356-0.606-0.606-1.063-1.284-1.356-2.012-0.288-0.713-0.381-1.247-0.413-1.422-0.003-0.016-0.006-0.028-0.006-0.037-0.041-0.206-0.231-0.222-0.503-0.178-0.112 0.019-0.459 0.072-0.428 0.319v0.006c0.091 0.578 0.253 1.144 0.481 1.681 0.366 0.866 0.891 1.644 1.559 2.313s1.447 1.191 2.313 1.559c0.897 0.378 1.85 0.572 2.831 0.572s1.934-0.194 2.831-0.572c0.866-0.366 1.644-0.891 2.313-1.559 0 0 0.037-0.037 0.059-0.059 0.069-0.084 0.134-0.225-0.159-0.516z" + } + }] +}; +exports.fiveHundredPX = fiveHundredPX; +var steam = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11 4.5c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5zM14.975 2.025c-1.367-1.367-3.583-1.367-4.95 0-0.556 0.556-0.886 1.252-0.989 1.975v0l-3.198 4.847c-0.43 0.022-0.856 0.132-1.249 0.328l-2.467-1.928c-0.571-0.446-1.396-0.345-1.842 0.226s-0.345 1.396 0.226 1.842l2.436 1.905c-0.265 1.043 0.010 2.196 0.827 3.012 1.233 1.233 3.232 1.233 4.465 0 0.757-0.757 1.049-1.804 0.876-2.784l3.891-3.484c0.723-0.104 1.419-0.434 1.975-0.989 1.367-1.367 1.367-3.583 0-4.95zM6 14.105c-1.162 0-2.105-0.942-2.105-2.105 0-0.011 0.001-0.022 0.001-0.033l1.046 0.817c0.24 0.188 0.525 0.278 0.807 0.278 0.39 0 0.776-0.173 1.035-0.504 0.446-0.571 0.345-1.396-0.226-1.842l-0.992-0.776c0.14-0.029 0.285-0.045 0.434-0.045 1.162 0 2.105 0.942 2.105 2.105s-0.942 2.105-2.105 2.105zM12.5 7c-1.381 0-2.5-1.119-2.5-2.5s1.119-2.5 2.5-2.5 2.5 1.119 2.5 2.5-1.119 2.5-2.5 2.5z" + } + }] +}; +exports.steam = steam; +var steam2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4.749 13.063c0.424 0 0.84-0.205 1.093-0.585 0.402-0.603 0.239-1.418-0.364-1.82l-1.032-0.688c0.177-0.048 0.362-0.074 0.554-0.074 1.162 0 2.105 0.942 2.105 2.105s-0.942 2.105-2.105 2.105c-1.131 0-2.054-0.893-2.102-2.012l1.124 0.749c0.224 0.149 0.477 0.221 0.727 0.221zM13.333 0c1.467 0 2.667 1.2 2.667 2.667v10.666c0 1.468-1.2 2.667-2.667 2.667h-10.666c-1.467 0-2.667-1.199-2.667-2.667v-3.172l1.896 1.264c-0.182 0.987 0.108 2.044 0.872 2.808 1.233 1.233 3.232 1.233 4.465 0 0.757-0.757 1.049-1.804 0.876-2.784l3.892-3.484c0.723-0.104 1.419-0.433 1.975-0.989 1.367-1.367 1.367-3.583 0-4.95s-3.583-1.367-4.95 0c-0.556 0.556-0.886 1.252-0.989 1.975v0l-3.198 4.847c-0.498 0.025-0.99 0.168-1.433 0.428l-3.404-2.269v-4.339c0-1.467 1.2-2.667 2.667-2.667h10.666zM14 4.5c0-1.381-1.119-2.5-2.5-2.5s-2.5 1.119-2.5 2.5 1.119 2.5 2.5 2.5 2.5-1.119 2.5-2.5zM10 4.5c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5-0.672 1.5-1.5 1.5-1.5-0.672-1.5-1.5z" + } + }] +}; +exports.steam2 = steam2; +var dropbox = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.5 0.5l-3.5 3 4.5 3 3.5-3z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 3.5l-3.5-3-4.5 3 3.5 3z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12.5 6.5l3.5 3-4.5 2.5-3.5-3z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 9l-4.5-2.5-3.5 3 4.5 2.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.377 13.212l-3.377-2.895-3.377 2.895-2.123-1.179v1.467l5.5 2.5 5.5-2.5v-1.467z" + } + }] +}; +exports.dropbox = dropbox; +var onedrive = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5.482 12.944c-0.942-0.235-1.466-0.984-1.468-2.095-0-0.355 0.025-0.525 0.114-0.754 0.217-0.56 0.793-0.982 1.55-1.138 0.377-0.077 0.493-0.16 0.493-0.353 0-0.060 0.045-0.24 0.1-0.399 0.249-0.724 0.71-1.327 1.202-1.573 0.515-0.258 0.776-0.316 1.399-0.313 0.886 0.005 1.327 0.197 1.945 0.846l0.34 0.357 0.304-0.105c1.473-0.51 2.942 0.358 3.061 1.809l0.032 0.397 0.29 0.104c0.829 0.297 1.218 0.92 1.148 1.837-0.046 0.599-0.326 1.078-0.77 1.315l-0.209 0.112-4.638 0.009c-3.564 0.007-4.697-0.006-4.893-0.055v0zM1.613 12.281c-0.565-0.142-1.164-0.67-1.445-1.273-0.159-0.342-0.168-0.393-0.168-0.998 0-0.576 0.014-0.668 0.14-0.954 0.267-0.603 0.78-1.038 1.422-1.21 0.136-0.036 0.263-0.094 0.283-0.128s0.043-0.221 0.050-0.415c0.045-1.206 0.794-2.269 1.839-2.61 0.565-0.184 1.306-0.202 1.92 0.058 0.195 0.082 0.173 0.1 0.585-0.471 0.244-0.338 0.705-0.695 1.108-0.909 0.435-0.231 0.887-0.337 1.428-0.336 1.512 0.004 2.815 1.003 3.297 2.529 0.154 0.487 0.146 0.624-0.035 0.628-0.079 0.002-0.306 0.048-0.505 0.102l-0.361 0.099-0.329-0.348c-0.928-0.98-2.441-1.192-3.728-0.522-0.514 0.268-0.927 0.652-1.239 1.153-0.222 0.357-0.506 1.024-0.506 1.189 0 0.117-0.090 0.176-0.474 0.309-1.189 0.412-1.883 1.364-1.882 2.582 0 0.443 0.108 0.986 0.258 1.296 0.057 0.117 0.088 0.228 0.070 0.247-0.046 0.049-1.525 0.032-1.73-0.019v0z" + } + }] +}; +exports.onedrive = onedrive; +var github = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0.198c-4.418 0-8 3.582-8 8 0 3.535 2.292 6.533 5.471 7.591 0.4 0.074 0.547-0.174 0.547-0.385 0-0.191-0.008-0.821-0.011-1.489-2.226 0.484-2.695-0.944-2.695-0.944-0.364-0.925-0.888-1.171-0.888-1.171-0.726-0.497 0.055-0.486 0.055-0.486 0.803 0.056 1.226 0.824 1.226 0.824 0.714 1.223 1.872 0.869 2.328 0.665 0.072-0.517 0.279-0.87 0.508-1.070-1.777-0.202-3.645-0.888-3.645-3.954 0-0.873 0.313-1.587 0.824-2.147-0.083-0.202-0.357-1.015 0.077-2.117 0 0 0.672-0.215 2.201 0.82 0.638-0.177 1.322-0.266 2.002-0.269 0.68 0.003 1.365 0.092 2.004 0.269 1.527-1.035 2.198-0.82 2.198-0.82 0.435 1.102 0.162 1.916 0.079 2.117 0.513 0.56 0.823 1.274 0.823 2.147 0 3.073-1.872 3.749-3.653 3.947 0.287 0.248 0.543 0.735 0.543 1.481 0 1.070-0.009 1.932-0.009 2.195 0 0.213 0.144 0.462 0.55 0.384 3.177-1.059 5.466-4.057 5.466-7.59 0-4.418-3.582-8-8-8z" + } + }] +}; +exports.github = github; +var npm = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 0v16h16v-16h-16zM13 13h-2v-8h-3v8h-5v-10h10v10z" + } + }] +}; +exports.npm = npm; +var basecamp = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 1.666c-2.919 0-5.169 2.444-6.444 4.838-0.719 1.347-1.222 2.822-1.453 4.331-0.025 0.172-0.050 0.344-0.069 0.519-0.009 0.094-0.019 0.188-0.025 0.281-0.009 0.119-0.003 0.156 0.059 0.256 0.187 0.303 0.409 0.584 0.659 0.838 0.512 0.525 1.134 0.928 1.794 1.241 1.503 0.709 3.2 0.966 4.85 1.022 1.703 0.056 3.453-0.084 5.081-0.616 1.391-0.453 2.731-1.244 3.503-2.522 0.084-0.137 0.025-0.341 0.009-0.5-0.019-0.191-0.044-0.378-0.075-0.566-0.056-0.369-0.131-0.731-0.222-1.094-0.181-0.738-0.428-1.463-0.728-2.159-1.088-2.525-3.1-5.219-5.963-5.775-0.322-0.063-0.65-0.094-0.978-0.094zM8.1 13.909c-1.784 0-3.728-0.159-5.334-1.019-0.625-0.334-1.262-0.819-1.563-1.484-0.087-0.194-0.056-0.269-0.016-0.497 0.028-0.147 0.041-0.291 0.106-0.428 0.091-0.191 0.184-0.378 0.281-0.566 0.328-0.634 0.681-1.262 1.091-1.853 0.203-0.291 0.419-0.578 0.669-0.828 0.175-0.175 0.388-0.362 0.634-0.422 0.756-0.181 1.334 0.694 1.794 1.134 0.222 0.213 0.519 0.453 0.85 0.412 0.228-0.028 0.431-0.206 0.594-0.353 0.553-0.497 0.997-1.112 1.456-1.691 0.228-0.284 0.453-0.572 0.7-0.844 0.166-0.184 0.347-0.394 0.569-0.513 0.397-0.216 0.903 0.228 1.178 0.456 0.469 0.391 0.884 0.847 1.281 1.309 0.378 0.441 0.744 0.888 1.066 1.372 0.497 0.75 0.928 1.55 1.322 2.359 0.084 0.175 0.113 0.294 0.144 0.488 0.019 0.106 0.059 0.228 0.044 0.338-0.022 0.153-0.128 0.319-0.206 0.444-0.188 0.297-0.441 0.553-0.719 0.769-1.166 0.903-2.744 1.203-4.178 1.338-0.588 0.056-1.175 0.078-1.762 0.078z" + } + }] +}; +exports.basecamp = basecamp; +var trello = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.5 0h-13c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM7 12c0 0.55-0.45 1-1 1h-2c-0.55 0-1-0.45-1-1v-8c0-0.55 0.45-1 1-1h2c0.55 0 1 0.45 1 1v8zM13 9c0 0.55-0.45 1-1 1h-2c-0.55 0-1-0.45-1-1v-5c0-0.55 0.45-1 1-1h2c0.55 0 1 0.45 1 1v5z" + } + }] +}; +exports.trello = trello; +var wordpress = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M2 8c0 2.313 1.38 4.312 3.382 5.259l-2.862-7.637c-0.333 0.727-0.52 1.531-0.52 2.378zM12.050 7.705c0-0.722-0.266-1.222-0.495-1.612-0.304-0.482-0.589-0.889-0.589-1.371 0-0.537 0.418-1.037 1.008-1.037 0.027 0 0.052 0.003 0.078 0.005-1.067-0.953-2.49-1.534-4.052-1.534-2.096 0-3.94 1.048-5.013 2.634 0.141 0.004 0.274 0.007 0.386 0.007 0.627 0 1.599-0.074 1.599-0.074 0.323-0.018 0.361 0.444 0.038 0.482 0 0-0.325 0.037-0.687 0.055l2.185 6.33 1.313-3.835-0.935-2.495c-0.323-0.019-0.629-0.055-0.629-0.055-0.323-0.019-0.285-0.5 0.038-0.482 0 0 0.991 0.074 1.58 0.074 0.627 0 1.599-0.074 1.599-0.074 0.323-0.018 0.362 0.444 0.038 0.482 0 0-0.326 0.037-0.687 0.055l2.168 6.282 0.599-1.947c0.259-0.809 0.457-1.389 0.457-1.889zM8.105 8.511l-1.8 5.095c0.538 0.154 1.106 0.238 1.695 0.238 0.699 0 1.369-0.117 1.992-0.331-0.016-0.025-0.031-0.052-0.043-0.081l-1.844-4.921zM13.265 5.196c0.026 0.186 0.040 0.386 0.040 0.601 0 0.593-0.114 1.259-0.456 2.093l-1.833 5.16c1.784-1.013 2.983-2.895 2.983-5.051 0-1.016-0.267-1.971-0.735-2.803zM8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM8 15c-3.866 0-7-3.134-7-7s3.134-7 7-7 7 3.134 7 7-3.134 7-7 7z" + } + }] +}; +exports.wordpress = wordpress; +var joomla = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4.156 4.323c0.513-0.513 1.344-0.513 1.856-0l0.122 0.123 1.58-1.581-0.123-0.123c-0.9-0.902-2.164-1.217-3.319-0.946-0.166-1.018-1.048-1.796-2.112-1.796-1.182 0-2.14 0.96-2.14 2.143 0 1.021 0.712 1.875 1.667 2.091-0.362 1.21-0.066 2.576 0.888 3.531l3.56 3.561 1.578-1.581-3.56-3.561c-0.511-0.511-0.512-1.346 0.003-1.861zM15.98 2.143c0-1.184-0.958-2.143-2.14-2.143-1.082 0-1.976 0.804-2.12 1.847-1.204-0.354-2.559-0.055-3.51 0.897l-3.56 3.561 1.58 1.581 3.559-3.56c0.515-0.515 1.344-0.514 1.854-0.003 0.512 0.513 0.512 1.346-0.001 1.859l-0.122 0.122 1.578 1.582 0.123-0.124c0.945-0.946 1.245-2.293 0.9-3.494 1.049-0.138 1.858-1.037 1.858-2.125zM14.16 11.735c0.283-1.163-0.031-2.443-0.939-3.352l-3.555-3.562-1.58 1.58 3.555 3.563c0.515 0.516 0.514 1.345 0.003 1.857-0.513 0.513-1.344 0.513-1.857-0l-0.121-0.122-1.578 1.582 0.121 0.121c0.961 0.962 2.338 1.257 3.553 0.883 0.197 0.979 1.061 1.716 2.098 1.716 1.181 0 2.14-0.959 2.14-2.143 0-1.081-0.8-1.976-1.84-2.122zM9.568 8.261l-3.555 3.562c-0.511 0.512-1.344 0.513-1.859-0.002-0.513-0.514-0.513-1.345-0.001-1.859l0.122-0.121-1.579-1.58-0.121 0.12c-0.918 0.919-1.228 2.216-0.929 3.39-0.944 0.223-1.646 1.072-1.646 2.086-0 1.184 0.958 2.143 2.14 2.143 1.017-0.001 1.869-0.71 2.087-1.662 1.167 0.29 2.453-0.020 3.365-0.934l3.555-3.562-1.578-1.582z" + } + }] +}; +exports.joomla = joomla; +var ello = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM12.885 9.212c-0.575 2.23-2.584 3.788-4.885 3.788s-4.31-1.558-4.885-3.788c-0.097-0.377 0.131-0.764 0.508-0.861 0.058-0.015 0.118-0.023 0.177-0.023 0.322 0 0.604 0.218 0.684 0.531 0.414 1.605 1.86 2.727 3.516 2.727s3.102-1.121 3.516-2.727c0.081-0.313 0.362-0.531 0.684-0.531 0.060 0 0.12 0.008 0.178 0.023 0.183 0.047 0.336 0.163 0.432 0.326s0.123 0.353 0.075 0.536z" + } + }] +}; +exports.ello = ello; +var blogger = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.966 6h-0.897c-0.549 0-1.031-0.465-1.069-1v0c0-2.854-2.301-5-5.175-5h-2.622c-2.872 0-5.201 2.313-5.203 5.167v5.669c0 2.854 2.331 5.165 5.203 5.165h5.6c2.874 0 5.197-2.311 5.197-5.165v-3.662c0-0.57-0.46-1.173-1.034-1.173zM5 4h3c0.55 0 1 0.45 1 1s-0.45 1-1 1h-3c-0.55 0-1-0.45-1-1s0.45-1 1-1zM11 12h-6c-0.55 0-1-0.45-1-1s0.45-1 1-1h6c0.55 0 1 0.45 1 1s-0.45 1-1 1z" + } + }] +}; +exports.blogger = blogger; +var blogger2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.5 0h-13c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM14 10.125c0 2.141-1.741 3.875-3.897 3.875h-4.2c-2.156 0-3.903-1.734-3.903-3.875v-4.25c0-2.141 1.747-3.875 3.903-3.875h1.966c2.156 0 3.881 1.609 3.881 3.75 0.028 0.4 0.391 0.75 0.8 0.75h0.672c0.431 0 0.775 0.453 0.775 0.881v2.744z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11 10c0 0.55-0.45 1-1 1h-4c-0.55 0-1-0.45-1-1v0c0-0.55 0.45-1 1-1h4c0.55 0 1 0.45 1 1v0z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9 6c0 0.55-0.45 1-1 1h-2c-0.55 0-1-0.45-1-1v0c0-0.55 0.45-1 1-1h2c0.55 0 1 0.45 1 1v0z" + } + }] +}; +exports.blogger2 = blogger2; +var tumblr = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9.001 7l-0 3.659c0 0.928-0.012 1.463 0.086 1.727 0.098 0.262 0.342 0.534 0.609 0.691 0.354 0.212 0.758 0.318 1.214 0.318 0.81 0 1.289-0.107 2.090-0.633v2.405c-0.683 0.321-1.279 0.509-1.833 0.639-0.555 0.129-1.154 0.194-1.798 0.194-0.732 0-1.163-0.092-1.725-0.276-0.562-0.185-1.042-0.45-1.438-0.79-0.398-0.343-0.672-0.706-0.826-1.091s-0.23-0.944-0.23-1.676v-5.611h-2.147v-2.266c0.628-0.204 1.331-0.497 1.778-0.877 0.449-0.382 0.809-0.839 1.080-1.374 0.272-0.534 0.459-1.214 0.561-2.039h2.579l-0 4h3.999v3h-3.999z" + } + }] +}; +exports.tumblr = tumblr; +var tumblr2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.5 0h-13c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM11.434 12.884c-0.472 0.222-0.9 0.378-1.281 0.469-0.381 0.088-0.797 0.134-1.241 0.134-0.506 0-0.803-0.063-1.191-0.191s-0.719-0.309-0.994-0.544c-0.275-0.238-0.463-0.488-0.569-0.753s-0.159-0.65-0.159-1.156v-3.872h-1.5v-1.563c0.434-0.141 0.938-0.344 1.244-0.606 0.309-0.263 0.559-0.578 0.744-0.947 0.188-0.369 0.316-0.837 0.388-1.406h1.569v2.55h2.556v1.972h-2.553v2.831c0 0.641-0.009 1.009 0.059 1.191s0.238 0.369 0.422 0.475c0.244 0.147 0.525 0.219 0.838 0.219 0.559 0 1.116-0.181 1.669-0.544v1.741z" + } + }] +}; +exports.tumblr2 = tumblr2; +var yahoo = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8.878 9.203v0c1.759-3.088 4.666-8.125 5.463-9.203-0.35 0.234-0.887 0.353-1.381 0.466l-0.747-0.466c-0.6 1.119-2.813 4.734-4.222 7.050-1.428-2.366-3.119-5.097-4.222-7.050-0.875 0.188-1.237 0.197-2.109 0v0 0c0 0 0 0 0 0v0c1.731 2.606 4.503 7.572 5.447 9.203v0l-0.128 6.797 1.013-0.466v-0.012l1.012 0.478-0.125-6.797z" + } + }] +}; +exports.yahoo = yahoo; +var yahoo2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8.019 1.087c-2.828 0-5.5-0.372-8.019-1.087 0 5.653 0 14.581 0 16 2.522-0.716 5.194-1.088 8.019-1.088 2.794 0 5.459 0.363 7.981 1.088 0-5.444 0-10.153 0-16-2.522 0.725-5.184 1.087-7.981 1.087zM12.45 2.453l-0.097 0.153c-0.091 0.144-0.172 0.266-0.284 0.438-0.15 0.225-0.431 0.672-0.769 1.247-0.094 0.159-0.209 0.35-0.328 0.556-0.228 0.384-0.484 0.819-0.688 1.162-0.084 0.147-0.169 0.297-0.256 0.447-0.225 0.391-0.456 0.794-0.678 1.181-0.228 0.403-0.453 0.8-0.678 1.194v0.397c0 0.55 0.012 1.15 0.031 1.684 0.009 0.244 0.019 0.678 0.031 1.137 0.012 0.547 0.025 1.113 0.041 1.4l0.003 0.088v0.009l-0.094-0.025c-0.037-0.009-0.072-0.019-0.109-0.028-0.113-0.025-0.234-0.044-0.353-0.056-0.072-0.006-0.147-0.009-0.222-0.009 0 0 0 0 0 0s0 0 0 0c-0.075 0-0.15 0.003-0.222 0.009-0.119 0.012-0.241 0.031-0.353 0.056-0.037 0.009-0.075 0.019-0.109 0.028l-0.094 0.025v-0.009l0.003-0.088c0.013-0.284 0.028-0.853 0.041-1.4 0.009-0.459 0.022-0.894 0.031-1.137 0.022-0.537 0.031-1.134 0.031-1.684v-0.397c-0.225-0.397-0.45-0.791-0.678-1.194-0.222-0.391-0.453-0.791-0.675-1.181-0.088-0.15-0.172-0.3-0.256-0.447-0.2-0.347-0.459-0.781-0.688-1.162-0.122-0.203-0.237-0.397-0.328-0.556-0.338-0.575-0.619-1.019-0.769-1.247-0.112-0.172-0.194-0.294-0.284-0.438l-0.097-0.153 0.175 0.050c0.222 0.063 0.45 0.094 0.694 0.094s0.478-0.031 0.697-0.094l0.053-0.016 0.028 0.047c0.431 0.778 1.591 2.684 2.284 3.825 0.237 0.394 0.428 0.703 0.522 0.862 0 0 0 0 0-0.003 0 0 0 0 0 0.003 0.094-0.156 0.284-0.469 0.522-0.862 0.694-1.138 1.853-3.044 2.284-3.825l0.028-0.047 0.053 0.016c0.219 0.063 0.453 0.094 0.697 0.094s0.472-0.031 0.694-0.094l0.166-0.050z" + } + }] +}; +exports.yahoo2 = yahoo2; +var tux = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8.87 11.514c-1.28 0.596-2.471 0.589-3.271 0.532-0.954-0.069-1.721-0.33-2.058-0.558-0.208-0.141-0.49-0.086-0.631 0.122s-0.086 0.49 0.122 0.631c0.542 0.367 1.501 0.64 2.503 0.712 0.17 0.012 0.356 0.020 0.557 0.020 0.872 0 1.979-0.083 3.163-0.634 0.228-0.106 0.326-0.376 0.22-0.604s-0.376-0.326-0.604-0.22zM13.921 10.841c0.044-3.948 0.449-11.409-7.109-10.806-7.463 0.601-5.484 8.484-5.595 11.124-0.099 1.397-0.562 3.104-1.217 4.841h2.017c0.207-0.736 0.36-1.464 0.425-2.159 0.122 0.085 0.252 0.167 0.391 0.245 0.226 0.133 0.42 0.31 0.626 0.497 0.48 0.438 1.025 0.934 2.089 0.996 0.071 0.004 0.143 0.006 0.214 0.006 1.077 0 1.813-0.471 2.404-0.85 0.283-0.181 0.528-0.338 0.759-0.413 0.655-0.205 1.227-0.536 1.655-0.957 0.067-0.066 0.129-0.133 0.187-0.202 0.238 0.873 0.564 1.856 0.926 2.836h4.307c-1.034-1.597-2.101-3.162-2.079-5.159zM1.939 8.693c0-0 0-0-0-0.001-0.074-1.288 0.542-2.372 1.377-2.421s1.571 0.957 1.645 2.245c0 0 0 0 0 0.001 0.004 0.069 0.006 0.138 0.006 0.206-0.264 0.066-0.503 0.163-0.717 0.275-0.001-0.010-0.001-0.019-0.002-0.029 0-0 0-0 0-0-0.071-0.731-0.462-1.284-0.873-1.234s-0.686 0.684-0.614 1.415c0 0 0 0 0 0 0.031 0.319 0.123 0.604 0.251 0.819-0.032 0.025-0.122 0.091-0.225 0.166-0.078 0.057-0.172 0.126-0.286 0.21-0.311-0.408-0.524-0.993-0.562-1.655zM10.395 11.878c-0.030 0.681-0.92 1.322-1.743 1.579l-0.005 0.002c-0.342 0.111-0.647 0.306-0.97 0.513-0.543 0.347-1.104 0.706-1.914 0.706-0.053 0-0.108-0.002-0.161-0.005-0.742-0.043-1.090-0.36-1.529-0.761-0.232-0.211-0.472-0.43-0.781-0.611l-0.007-0.004c-0.667-0.377-1.081-0.845-1.108-1.253-0.013-0.203 0.077-0.378 0.268-0.522 0.416-0.312 0.695-0.516 0.879-0.651 0.205-0.15 0.267-0.195 0.313-0.239 0.033-0.031 0.068-0.065 0.106-0.103 0.382-0.371 1.021-0.993 2.002-0.993 0.6 0 1.264 0.231 1.971 0.686 0.333 0.217 0.623 0.317 0.99 0.444 0.252 0.087 0.539 0.186 0.922 0.35l0.006 0.003c0.357 0.147 0.78 0.415 0.76 0.858zM10.198 10.278c-0.069-0.035-0.14-0.068-0.215-0.098-0.345-0.148-0.622-0.248-0.852-0.328 0.127-0.248 0.206-0.558 0.213-0.894 0-0 0-0 0-0 0.018-0.818-0.395-1.483-0.922-1.484s-0.968 0.661-0.986 1.479c0 0 0 0 0 0-0.001 0.027-0.001 0.053-0 0.080-0.324-0.149-0.643-0.258-0.956-0.324-0.001-0.031-0.003-0.061-0.004-0.092 0-0 0-0.001 0-0.001-0.030-1.491 0.884-2.725 2.043-2.756s2.122 1.152 2.153 2.642c0 0 0 0.001 0 0.001 0.014 0.674-0.167 1.295-0.475 1.776z" + } + }] +}; +exports.tux = tux; +var appleinc = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12.367 8.501c-0.020-2.026 1.652-2.998 1.727-3.046-0.94-1.375-2.404-1.564-2.926-1.585-1.246-0.126-2.431 0.734-3.064 0.734-0.631 0-1.607-0.715-2.64-0.696-1.358 0.020-2.61 0.79-3.31 2.006-1.411 2.448-0.361 6.076 1.014 8.061 0.672 0.972 1.473 2.064 2.525 2.025 1.013-0.040 1.396-0.656 2.621-0.656s1.569 0.656 2.641 0.635c1.090-0.020 1.781-0.991 2.448-1.966 0.772-1.128 1.089-2.219 1.108-2.275-0.024-0.011-2.126-0.816-2.147-3.236zM10.353 2.555c0.558-0.677 0.935-1.617 0.832-2.555-0.804 0.033-1.779 0.536-2.356 1.212-0.518 0.6-0.971 1.557-0.85 2.476 0.898 0.070 1.815-0.456 2.373-1.132z" + } + }] +}; +exports.appleinc = appleinc; +var finder = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8.894 12.16c-0-0.001-0-0.001-0-0.002 0 0.001 0 0.001 0 0.002z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8.916 12.727c-0-0.004-0-0.007-0.001-0.011 0 0.004 0 0.007 0.001 0.011z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8.903 12.442c-0-0.003-0-0.006-0-0.008 0 0.003 0 0.006 0 0.008z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15 0h-14c-0.55 0-1 0.45-1 1v14c0 0.55 0.45 1 1 1h7.716c0.001 0 0.001 0 0.002 0s0.001-0 0.002-0h6.28c0.55 0 1-0.45 1-1v-14c0-0.55-0.45-1-1-1zM3 3.5c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5v1c0 0.276-0.224 0.5-0.5 0.5s-0.5-0.224-0.5-0.5v-1zM15 15h-5.86c-0.105-0.658-0.17-1.336-0.209-1.994 0 0.002 0 0.004 0 0.005-0.308 0.034-0.618 0.051-0.931 0.051-2.088 0-4.1-0.76-5.664-2.141-0.233-0.206-0.255-0.561-0.050-0.794s0.561-0.255 0.794-0.050c1.358 1.199 3.105 1.859 4.919 1.859 0.298 0 0.595-0.018 0.888-0.053-0.034-1.847 0.107-3.311 0.11-3.334 0.014-0.141-0.032-0.28-0.127-0.385s-0.229-0.164-0.371-0.164h-1.487c0.022-0.541 0.079-1.466 0.234-2.503 0.295-1.981 0.812-3.528 1.502-4.497h6.251v14z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12.5 5c-0.276 0-0.5-0.224-0.5-0.5v-1c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5v1c0 0.276-0.224 0.5-0.5 0.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8.445 13.050c-0.057 0.003-0.114 0.005-0.171 0.007 0.057-0.002 0.114-0.004 0.171-0.007z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 13.063c0.073 0 0.146-0.001 0.22-0.003-0.073 0.002-0.146 0.003-0.22 0.003z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8.423 11.925c0.012-0.001 0.024-0.001 0.037-0.002-0.012 0.001-0.024 0.001-0.037 0.002z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8.204 11.934c0.017-0 0.034-0.001 0.050-0.002-0.017 0.001-0.034 0.001-0.050 0.002z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.713 10.128c-0.206-0.233-0.561-0.255-0.794-0.050-1.135 1.002-2.542 1.627-4.032 1.806 0.007 0.364 0.020 0.742 0.043 1.127 1.749-0.191 3.403-0.916 4.733-2.090 0.233-0.206 0.255-0.561 0.050-0.794z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8.93 13.012c-0.072 0.008-0.144 0.015-0.216 0.021 0.072-0.006 0.144-0.013 0.216-0.021z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8.68 13.035c-0.061 0.005-0.122 0.009-0.183 0.013 0.061-0.004 0.122-0.008 0.183-0.013z" + } + }] +}; +exports.finder = finder; +var android = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14 6c-0.55 0-1 0.45-1 1v4c0 0.55 0.45 1 1 1s1-0.45 1-1v-4c0-0.55-0.45-1-1-1zM2 6c-0.55 0-1 0.45-1 1v4c0 0.55 0.45 1 1 1s1-0.45 1-1v-4c0-0.55-0.45-1-1-1zM3.5 11.5c0 0.828 0.672 1.5 1.5 1.5v0 2c0 0.55 0.45 1 1 1s1-0.45 1-1v-2h2v2c0 0.55 0.45 1 1 1s1-0.45 1-1v-2c0.828 0 1.5-0.672 1.5-1.5v-5.5h-9v5.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12.472 5c-0.152-1.373-0.922-2.559-2.025-3.276l0.5-1.001c0.123-0.247 0.023-0.547-0.224-0.671s-0.547-0.023-0.671 0.224l-0.502 1.004-0.13-0.052c-0.446-0.148-0.924-0.229-1.42-0.229s-0.974 0.081-1.42 0.229l-0.13 0.052-0.502-1.004c-0.123-0.247-0.424-0.347-0.671-0.224s-0.347 0.424-0.224 0.671l0.5 1.001c-1.103 0.716-1.873 1.903-2.025 3.276v0.5h8.972v-0.5h-0.028zM6.5 4c-0.276 0-0.5-0.224-0.5-0.5s0.223-0.499 0.499-0.5c0 0 0.001 0 0.001 0s0.001-0 0.001-0c0.276 0.001 0.499 0.224 0.499 0.5s-0.224 0.5-0.5 0.5zM9.5 4c-0.276 0-0.5-0.224-0.5-0.5s0.223-0.499 0.499-0.5c0 0 0.001 0 0.001 0s0.001-0 0.002-0c0.276 0.001 0.499 0.224 0.499 0.5s-0.224 0.5-0.5 0.5z" + } + }] +}; +exports.android = android; +var windows = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6.441 7.999c-0.745-0.383-1.47-0.577-2.154-0.577-0.093 0-0.187 0.003-0.28 0.011-0.873 0.072-1.671 0.303-2.184 0.482-0.136 0.050-0.276 0.103-0.419 0.161l-1.403 4.866c0.964-0.357 1.817-0.53 2.598-0.53 1.263 0 2.18 0.472 2.937 0.958 0.359-1.217 1.219-4.158 1.476-5.036-0.187-0.114-0.376-0.228-0.571-0.333zM8.255 9.235l-1.413 4.909c0.419 0.24 1.83 1.001 2.91 1.001 0.872 0 1.848-0.223 2.982-0.684l1.349-4.718c-0.916 0.296-1.795 0.446-2.617 0.446-1.499 0-2.549-0.486-3.211-0.952zM4.575 5.762c1.205 0.012 2.096 0.472 2.835 0.945l1.449-4.958c-0.305-0.175-1.106-0.611-1.685-0.759-0.381-0.089-0.782-0.135-1.206-0.135-0.809 0.015-1.694 0.218-2.701 0.622l-1.382 4.853c1.013-0.382 1.885-0.568 2.689-0.568 0.001 0 0.002 0 0.002 0zM16 3.096c-0.919 0.357-1.816 0.539-2.672 0.539-1.433 0-2.489-0.497-3.173-0.974l-1.437 4.972c0.965 0.62 2.005 0.936 3.096 0.936 0.89 0 1.812-0.214 2.742-0.636l-0.003-0.035 0.058-0.014 1.39-4.788z" + } + }] +}; +exports.windows = windows; +var windows8 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0.005 8l-0.005-4.876 6-0.815v5.691zM7 2.164l7.998-1.164v7h-7.998zM15 9l-0.002 7-7.998-1.125v-5.875zM6 14.747l-5.995-0.822-0-4.926h5.995z" + } + }] +}; +exports.windows8 = windows8; +var soundcloud = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.937 8.034c-0.283 0-0.552 0.055-0.798 0.154-0.164-1.787-1.723-3.188-3.625-3.188-0.465 0-0.917 0.088-1.317 0.237-0.156 0.058-0.197 0.117-0.197 0.233v6.292c0 0.121 0.098 0.222 0.221 0.234 0.005 0.001 5.68 0.003 5.717 0.003 1.139 0 2.062-0.888 2.062-1.983s-0.924-1.983-2.063-1.983zM6.25 12h0.5l0.25-3.503-0.25-3.497h-0.5l-0.25 3.497zM4.75 12h-0.5l-0.25-2.543 0.25-2.457h0.5l0.25 2.5zM2.25 12h0.5l0.25-2-0.25-2h-0.5l-0.25 2zM0.25 11h0.5l0.25-1-0.25-1h-0.5l-0.25 1z" + } + }] +}; +exports.soundcloud = soundcloud; +var soundcloud2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.5 0h-13c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM2.75 11h-0.5l-0.25-1.5 0.25-1.5h0.5l0.25 1.5-0.25 1.5zM4.75 11h-0.5l-0.25-2 0.25-2h0.5l0.25 2-0.25 2zM6.75 11h-0.5l-0.25-3 0.25-3h0.5l0.25 3-0.25 3zM12.894 11c-0.031 0-4.706-0.003-4.709-0.003-0.1-0.009-0.181-0.097-0.184-0.2v-5.394c0-0.1 0.034-0.15 0.162-0.2 0.331-0.128 0.703-0.203 1.088-0.203 1.566 0 2.85 1.2 2.987 2.734 0.203-0.084 0.425-0.131 0.656-0.131 0.938 0 1.7 0.762 1.7 1.7s-0.762 1.697-1.7 1.697z" + } + }] +}; +exports.soundcloud2 = soundcloud2; +var skype = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6.65 0.584c-0.025-0.016-0.053-0.028-0.078-0.041-0.028 0.006-0.053 0.009-0.081 0.016l0.159 0.025z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0.575 6.578c-0.006 0.028-0.009 0.056-0.012 0.081 0.016 0.025 0.025 0.050 0.041 0.075l-0.028-0.156z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.419 9.416c0.006-0.028 0.009-0.056 0.016-0.084-0.016-0.025-0.025-0.050-0.041-0.075l0.025 0.159z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9.25 15.359c0.025 0.016 0.053 0.028 0.078 0.041 0.028-0.006 0.056-0.009 0.084-0.012l-0.162-0.028z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.434 9.331c-0.006 0.028-0.009 0.056-0.016 0.084l-0.028-0.162c0.016 0.028 0.028 0.053 0.044 0.078 0.081-0.45 0.125-0.909 0.125-1.369 0-1.019-0.2-2.009-0.594-2.941-0.381-0.9-0.925-1.709-1.619-2.403s-1.503-1.238-2.4-1.619c-0.931-0.394-1.922-0.594-2.941-0.594-0.481 0-0.963 0.044-1.431 0.134 0 0-0.003 0-0.003 0 0.025 0.012 0.053 0.025 0.078 0.041l-0.159-0.025c0.028-0.006 0.053-0.009 0.081-0.016-0.644-0.341-1.366-0.525-2.097-0.525-1.194 0-2.319 0.466-3.163 1.309s-1.309 1.969-1.309 3.163c0 0.759 0.197 1.509 0.563 2.169 0.006-0.028 0.009-0.056 0.012-0.081l0.028 0.159c-0.016-0.025-0.028-0.050-0.041-0.075-0.075 0.428-0.112 0.866-0.112 1.303 0 1.019 0.2 2.009 0.594 2.941 0.381 0.9 0.925 1.706 1.619 2.4s1.503 1.238 2.403 1.619c0.931 0.394 1.922 0.594 2.941 0.594 0.444 0 0.887-0.041 1.322-0.119-0.025-0.016-0.050-0.028-0.078-0.041l0.162 0.028c-0.028 0.006-0.056 0.009-0.084 0.012 0.669 0.378 1.428 0.581 2.2 0.581 1.194 0 2.319-0.466 3.162-1.309s1.309-1.969 1.309-3.162c-0.003-0.759-0.2-1.509-0.569-2.175zM8.034 12.591c-2.684 0-3.884-1.319-3.884-2.309 0-0.506 0.375-0.863 0.891-0.863 1.15 0 0.85 1.65 2.994 1.65 1.097 0 1.703-0.597 1.703-1.206 0-0.366-0.181-0.772-0.903-0.95l-2.388-0.597c-1.922-0.481-2.272-1.522-2.272-2.5 0-2.028 1.909-2.791 3.703-2.791 1.653 0 3.6 0.913 3.6 2.131 0 0.522-0.453 0.825-0.969 0.825-0.981 0-0.8-1.356-2.775-1.356-0.981 0-1.522 0.444-1.522 1.078s0.775 0.838 1.447 0.991l1.769 0.394c1.934 0.431 2.425 1.563 2.425 2.625 0 1.647-1.266 2.878-3.819 2.878z" + } + }] +}; +exports.skype = skype; +var reddit = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4 10c0-0.552 0.448-1 1-1s1 0.448 1 1c0 0.552-0.448 1-1 1s-1-0.448-1-1zM10 10c0-0.552 0.448-1 1-1s1 0.448 1 1c0 0.552-0.448 1-1 1s-1-0.448-1-1zM10.049 12.137c0.258-0.203 0.631-0.159 0.834 0.099s0.159 0.631-0.099 0.834c-0.717 0.565-1.81 0.93-2.783 0.93s-2.066-0.365-2.784-0.93c-0.258-0.203-0.302-0.576-0.099-0.834s0.576-0.302 0.834-0.099c0.413 0.325 1.23 0.675 2.049 0.675s1.636-0.35 2.049-0.675zM16 8c0-1.105-0.895-2-2-2-0.752 0-1.406 0.415-1.748 1.028-1.028-0.562-2.28-0.926-3.645-1.010l1.193-2.68 2.284 0.659c0.206 0.583 0.761 1.002 1.415 1.002 0.828 0 1.5-0.672 1.5-1.5s-0.672-1.5-1.5-1.5c-0.571 0-1.068 0.319-1.321 0.789l-2.545-0.735c-0.285-0.082-0.587 0.058-0.707 0.329l-1.621 3.641c-1.33 0.094-2.551 0.453-3.557 1.004-0.342-0.613-0.996-1.028-1.748-1.028-1.105 0-2 0.895-2 2 0 0.817 0.491 1.52 1.193 1.83-0.126 0.375-0.193 0.767-0.193 1.17 0 2.761 3.134 5 7 5s7-2.239 7-5c0-0.403-0.067-0.795-0.193-1.17 0.703-0.31 1.193-1.013 1.193-1.83zM13.5 2.938c0.311 0 0.563 0.252 0.563 0.563s-0.252 0.563-0.563 0.563-0.563-0.252-0.563-0.563 0.252-0.563 0.563-0.563zM1 8c0-0.551 0.449-1 1-1 0.399 0 0.743 0.234 0.904 0.573-0.523 0.396-0.956 0.854-1.276 1.355-0.368-0.148-0.628-0.508-0.628-0.928zM8 14.813c-3.21 0-5.813-1.707-5.813-3.813s2.602-3.813 5.813-3.813c3.21 0 5.813 1.707 5.813 3.813s-2.602 3.813-5.813 3.813zM14.372 8.928c-0.32-0.502-0.753-0.959-1.276-1.355 0.161-0.338 0.505-0.573 0.904-0.573 0.551 0 1 0.449 1 1 0 0.42-0.26 0.78-0.628 0.928z" + } + }] +}; +exports.reddit = reddit; +var hackernews = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 0v16h16v-16h-16zM8.5 9.125v3.375h-1v-3.375l-2.734-5.125h1.134l2.1 3.938 2.1-3.938h1.134l-2.734 5.125z" + } + }] +}; +exports.hackernews = hackernews; +var wikipedia = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.106 3.65c0 0.050-0.016 0.097-0.047 0.141-0.031 0.041-0.066 0.063-0.106 0.063-0.313 0.031-0.569 0.131-0.766 0.3-0.2 0.169-0.403 0.497-0.613 0.975l-3.225 7.272c-0.022 0.069-0.081 0.1-0.178 0.1-0.075 0-0.134-0.034-0.178-0.1l-1.809-3.781-2.081 3.781c-0.044 0.069-0.1 0.1-0.178 0.1-0.094 0-0.153-0.034-0.184-0.1l-3.166-7.269c-0.197-0.45-0.406-0.766-0.625-0.944s-0.525-0.291-0.916-0.331c-0.034 0-0.066-0.019-0.094-0.053-0.031-0.034-0.044-0.075-0.044-0.122 0-0.119 0.034-0.178 0.1-0.178 0.281 0 0.578 0.013 0.888 0.038 0.288 0.025 0.556 0.038 0.809 0.038 0.256 0 0.563-0.013 0.913-0.038 0.366-0.025 0.691-0.038 0.975-0.038 0.069 0 0.1 0.059 0.1 0.178s-0.022 0.175-0.063 0.175c-0.281 0.022-0.506 0.094-0.669 0.216s-0.244 0.281-0.244 0.481c0 0.1 0.034 0.228 0.1 0.378l2.616 5.912 1.487-2.806-1.384-2.903c-0.25-0.519-0.453-0.853-0.612-1.003s-0.403-0.241-0.728-0.275c-0.031 0-0.056-0.019-0.084-0.053s-0.041-0.075-0.041-0.122c0-0.119 0.028-0.178 0.088-0.178 0.281 0 0.541 0.013 0.778 0.038 0.228 0.025 0.469 0.038 0.728 0.038 0.253 0 0.519-0.013 0.803-0.038 0.291-0.025 0.578-0.038 0.859-0.038 0.069 0 0.1 0.059 0.1 0.178s-0.019 0.175-0.063 0.175c-0.566 0.038-0.847 0.2-0.847 0.481 0 0.125 0.066 0.322 0.197 0.588l0.916 1.859 0.912-1.7c0.125-0.241 0.191-0.444 0.191-0.606 0-0.388-0.281-0.594-0.847-0.619-0.050 0-0.075-0.059-0.075-0.175 0-0.044 0.012-0.081 0.037-0.119s0.050-0.056 0.075-0.056c0.203 0 0.45 0.013 0.747 0.038 0.281 0.025 0.516 0.038 0.697 0.038 0.131 0 0.322-0.013 0.575-0.031 0.319-0.028 0.588-0.044 0.803-0.044 0.050 0 0.075 0.050 0.075 0.15 0 0.134-0.047 0.203-0.137 0.203-0.328 0.034-0.594 0.125-0.794 0.272s-0.45 0.481-0.75 1.006l-1.222 2.237 1.644 3.35 2.428-5.647c0.084-0.206 0.125-0.397 0.125-0.569 0-0.412-0.281-0.631-0.847-0.659-0.050 0-0.075-0.059-0.075-0.175 0-0.119 0.037-0.178 0.113-0.178 0.206 0 0.45 0.013 0.734 0.038 0.262 0.025 0.481 0.038 0.656 0.038 0.188 0 0.4-0.013 0.644-0.038 0.253-0.025 0.481-0.038 0.684-0.038 0.063 0 0.094 0.050 0.094 0.15z" + } + }] +}; +exports.wikipedia = wikipedia; +var linkedin = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.5 0h-13c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM6 13h-2v-7h2v7zM5 5c-0.553 0-1-0.447-1-1s0.447-1 1-1c0.553 0 1 0.447 1 1s-0.447 1-1 1zM13 13h-2v-4c0-0.553-0.447-1-1-1s-1 0.447-1 1v4h-2v-7h2v1.241c0.412-0.566 1.044-1.241 1.75-1.241 1.244 0 2.25 1.119 2.25 2.5v4.5z" + } + }] +}; +exports.linkedin = linkedin; +var linkedin2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6 6h2.767v1.418h0.040c0.385-0.691 1.327-1.418 2.732-1.418 2.921 0 3.461 1.818 3.461 4.183v4.817h-2.885v-4.27c0-1.018-0.021-2.329-1.5-2.329-1.502 0-1.732 1.109-1.732 2.255v4.344h-2.883v-9z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M1 6h3v9h-3v-9z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4 3.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5z" + } + }] +}; +exports.linkedin2 = linkedin2; +var lastfm = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7.056 11.972l-0.588-1.594c0 0-0.953 1.063-2.381 1.063-1.266 0-2.163-1.1-2.163-2.859 0-2.253 1.137-3.059 2.253-3.059 1.612 0 2.125 1.044 2.566 2.381l0.588 1.831c0.588 1.778 1.688 3.206 4.856 3.206 2.272 0 3.813-0.697 3.813-2.528 0-1.484-0.844-2.253-2.419-2.622l-1.172-0.256c-0.806-0.184-1.044-0.513-1.044-1.063 0-0.622 0.494-0.991 1.3-0.991 0.881 0 1.356 0.331 1.428 1.119l1.831-0.219c-0.147-1.65-1.284-2.328-3.153-2.328-1.65 0-3.262 0.622-3.262 2.622 0 1.247 0.606 2.034 2.125 2.4l1.247 0.294c0.934 0.219 1.247 0.606 1.247 1.137 0 0.678-0.659 0.953-1.906 0.953-1.85 0-2.622-0.972-3.059-2.309l-0.606-1.831c-0.766-2.384-1.994-3.263-4.431-3.263-2.694 0-4.125 1.703-4.125 4.6 0 2.784 1.428 4.287 3.997 4.287 2.069 0 3.059-0.972 3.059-0.972v0z" + } + }] +}; +exports.lastfm = lastfm; +var lastfm2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.5 0h-13c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM11.666 11.887c-2.775 0-3.737-1.25-4.25-2.806l-0.513-1.603c-0.384-1.172-0.834-2.084-2.244-2.084-0.978 0-1.972 0.706-1.972 2.678 0 1.541 0.784 2.503 1.894 2.503 1.25 0 2.084-0.931 2.084-0.931l0.513 1.394c0 0-0.866 0.85-2.678 0.85-2.25 0-3.5-1.313-3.5-3.75 0-2.534 1.25-4.025 3.609-4.025 2.134 0 3.206 0.769 3.881 2.853l0.528 1.603c0.384 1.172 1.059 2.022 2.678 2.022 1.091 0 1.669-0.241 1.669-0.834 0-0.466-0.272-0.803-1.091-0.994l-1.091-0.256c-1.331-0.322-1.859-1.009-1.859-2.1 0-1.747 1.412-2.294 2.853-2.294 1.634 0 2.631 0.594 2.759 2.038l-1.603 0.194c-0.066-0.691-0.481-0.978-1.25-0.978-0.706 0-1.137 0.322-1.137 0.866 0 0.481 0.209 0.769 0.912 0.931l1.025 0.225c1.378 0.322 2.116 0.994 2.116 2.294 0 1.597-1.347 2.206-3.334 2.206z" + } + }] +}; +exports.lastfm2 = lastfm2; +var delicious = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 0v16h16v-16h-16zM8 15v-7h-7v-7h7v7h7v7h-7z" + } + }] +}; +exports.delicious = delicious; +var stumbleupon = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 5c-0.55 0-1 0.45-1 1v4c0 1.653-1.347 3-3 3s-3-1.347-3-3v-2h2v2c0 0.55 0.45 1 1 1s1-0.45 1-1v-4c0-1.653 1.347-3 3-3s3 1.347 3 2.781v0.969l-1.281 0.375-0.719-0.375v-0.969c0-0.331-0.45-0.781-1-0.781z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15 10c0 1.653-1.347 3-3 3s-3-1.347-3-3.219v-1.938l0.719 0.375 1.281-0.375v1.938c0 0.769 0.45 1.219 1 1.219s1-0.45 1-1v-2h2v2z" + } + }] +}; +exports.stumbleupon = stumbleupon; +var stumbleupon2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.313 0h-10.625c-1.478 0-2.688 1.209-2.688 2.688v10.625c0 1.478 1.209 2.688 2.688 2.688h10.625c1.478 0 2.688-1.209 2.688-2.688v-10.625c0-1.478-1.209-2.688-2.688-2.688zM8 5c-0.551 0-1 0.449-1 1v4c0 1.654-1.346 3-3 3s-3-1.346-3-3v-2h2v2c0 0.551 0.449 1 1 1s1-0.449 1-1v-4c0-1.654 1.346-3 3-3s3 1.346 3 2.781v0.969l-1.281 0.375-0.719-0.375v-0.969c0-0.333-0.449-0.781-1-0.781zM15 10c0 1.654-1.346 3-3 3s-3-1.346-3-3.219v-1.938l0.719 0.375 1.281-0.375v1.938c0 0.77 0.449 1.219 1 1.219s1-0.449 1-1v-2h2v2z" + } + }] +}; +exports.stumbleupon2 = stumbleupon2; +var stackoverflow = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16 10v6h-16v-6h2v4h12v-4zM3 11h10v2h-10zM3.237 8.835l0.433-1.953 9.763 2.164-0.433 1.953zM4.37 4.821l0.845-1.813 9.063 4.226-0.845 1.813zM15.496 5.648l-1.218 1.587-7.934-6.088 0.88-1.147h0.91z" + } + }] +}; +exports.stackoverflow = stackoverflow; +var pinterest = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 1.069c-3.828 0-6.931 3.103-6.931 6.931 0 2.938 1.828 5.444 4.406 6.453-0.059-0.547-0.116-1.391 0.025-1.988 0.125-0.541 0.813-3.444 0.813-3.444s-0.206-0.416-0.206-1.028c0-0.963 0.559-1.684 1.253-1.684 0.591 0 0.878 0.444 0.878 0.975 0 0.594-0.378 1.484-0.575 2.306-0.166 0.691 0.344 1.253 1.025 1.253 1.231 0 2.178-1.3 2.178-3.175 0-1.659-1.194-2.819-2.894-2.819-1.972 0-3.128 1.478-3.128 3.009 0 0.597 0.228 1.234 0.516 1.581 0.056 0.069 0.066 0.128 0.047 0.2-0.053 0.219-0.169 0.691-0.194 0.787-0.031 0.128-0.1 0.153-0.231 0.094-0.866-0.403-1.406-1.669-1.406-2.684 0-2.188 1.587-4.194 4.578-4.194 2.403 0 4.272 1.712 4.272 4.003 0 2.388-1.506 4.313-3.597 4.313-0.703 0-1.362-0.366-1.588-0.797 0 0-0.347 1.322-0.431 1.647-0.156 0.603-0.578 1.356-0.862 1.816 0.65 0.2 1.337 0.309 2.053 0.309 3.828 0 6.931-3.103 6.931-6.931 0-3.831-3.103-6.934-6.931-6.934z" + } + }] +}; +exports.pinterest = pinterest; +var pinterest2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.412 0-8 3.587-8 8s3.587 8 8 8 8-3.588 8-8-3.588-8-8-8zM8 14.931c-0.716 0-1.403-0.109-2.053-0.309 0.281-0.459 0.706-1.216 0.862-1.816 0.084-0.325 0.431-1.647 0.431-1.647 0.225 0.431 0.888 0.797 1.587 0.797 2.091 0 3.597-1.922 3.597-4.313 0-2.291-1.869-4.003-4.272-4.003-2.991 0-4.578 2.009-4.578 4.194 0 1.016 0.541 2.281 1.406 2.684 0.131 0.063 0.2 0.034 0.231-0.094 0.022-0.097 0.141-0.566 0.194-0.787 0.016-0.069 0.009-0.131-0.047-0.2-0.287-0.347-0.516-0.988-0.516-1.581 0-1.528 1.156-3.009 3.128-3.009 1.703 0 2.894 1.159 2.894 2.819 0 1.875-0.947 3.175-2.178 3.175-0.681 0-1.191-0.563-1.025-1.253 0.197-0.825 0.575-1.713 0.575-2.306 0-0.531-0.284-0.975-0.878-0.975-0.697 0-1.253 0.719-1.253 1.684 0 0.612 0.206 1.028 0.206 1.028s-0.688 2.903-0.813 3.444c-0.141 0.6-0.084 1.441-0.025 1.988-2.578-1.006-4.406-3.512-4.406-6.45 0-3.828 3.103-6.931 6.931-6.931s6.931 3.103 6.931 6.931c0 3.828-3.103 6.931-6.931 6.931z" + } + }] +}; +exports.pinterest2 = pinterest2; +var xing = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.5 0h-13c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM4.884 10.406h-1.728c-0.103 0-0.181-0.047-0.225-0.119-0.047-0.075-0.047-0.169 0-0.266l1.838-3.244c0.003-0.003 0.003-0.006 0-0.009l-1.169-2.025c-0.047-0.097-0.056-0.191-0.009-0.266 0.044-0.072 0.131-0.109 0.237-0.109h1.731c0.266 0 0.397 0.172 0.481 0.325 0 0 1.181 2.063 1.191 2.075-0.069 0.125-1.869 3.303-1.869 3.303-0.094 0.162-0.219 0.334-0.478 0.334zM13.069 2.378l-3.831 6.775c-0.003 0.003-0.003 0.009 0 0.012l2.441 4.456c0.047 0.097 0.050 0.194 0.003 0.269-0.044 0.072-0.125 0.109-0.231 0.109h-1.728c-0.266 0-0.397-0.175-0.484-0.328 0 0-2.453-4.5-2.459-4.512 0.122-0.216 3.85-6.828 3.85-6.828 0.094-0.166 0.206-0.328 0.463-0.328h1.753c0.103 0 0.188 0.041 0.231 0.109 0.044 0.072 0.044 0.169-0.006 0.266z" + } + }] +}; +exports.xing = xing; +var xing2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M2.431 3.159c-0.138 0-0.256 0.050-0.316 0.144-0.059 0.1-0.050 0.225 0.013 0.353l1.559 2.7c0.003 0.006 0.003 0.009 0 0.013l-2.45 4.331c-0.063 0.128-0.059 0.256 0 0.353 0.059 0.094 0.163 0.156 0.3 0.156h2.306c0.344 0 0.513-0.234 0.628-0.447 0 0 2.397-4.241 2.491-4.406-0.009-0.016-1.588-2.766-1.588-2.766-0.116-0.203-0.287-0.431-0.644-0.431h-2.3z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12.125 0c-0.344 0-0.494 0.216-0.619 0.441 0 0-4.972 8.816-5.134 9.106 0.009 0.016 3.278 6.016 3.278 6.016 0.116 0.203 0.291 0.441 0.644 0.441h2.306c0.137 0 0.247-0.053 0.306-0.147 0.063-0.1 0.059-0.228-0.006-0.356l-3.25-5.947c-0.003-0.006-0.003-0.009 0-0.016l5.109-9.034c0.063-0.128 0.066-0.256 0.006-0.356-0.059-0.094-0.169-0.147-0.306-0.147h-2.334z" + } + }] +}; +exports.xing2 = xing2; +var flattr = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5.743 0c-3.802 0-5.743 2.19-5.743 6.279v0 8.579l3.725-3.729v-4.358c0-1.694 0.449-2.772 1.955-3.014v0c0.526-0.103 1.621-0.067 2.317-0.067v0 2.587c0 0.024 0.003 0.066 0.009 0.087v0c0.029 0.105 0.124 0.181 0.236 0.182v0c0.063 0 0.123-0.033 0.184-0.093v0l6.455-6.453-9.139-0.001zM12.275 4.871v4.358c0 1.694-0.449 2.772-1.955 3.014v0c-0.526 0.103-1.621 0.067-2.317 0.067v0-2.587c0-0.023-0.003-0.066-0.009-0.087v0c-0.029-0.105-0.124-0.182-0.236-0.182v0c-0.064-0-0.123 0.033-0.184 0.093v0l-6.455 6.453 9.139 0.001c3.802 0 5.743-2.19 5.743-6.279v0-8.579l-3.725 3.729z" + } + }] +}; +exports.flattr = flattr; +var foursquare = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.306 1.408c-0.188-0.256-0.488-0.408-0.806-0.408h-9.5c-0.552 0-1 0.448-1 1v12c0 0.404 0.244 0.769 0.617 0.924 0.124 0.051 0.254 0.076 0.382 0.076 0.26 0 0.516-0.102 0.707-0.293l3.707-3.707h2.586c0.437 0 0.824-0.284 0.954-0.702l2.5-8c0.095-0.304 0.040-0.634-0.149-0.891zM10.515 5h-3.515c-0.552 0-1 0.448-1 1s0.448 1 1 1h2.89l-0.625 2h-2.265c-0.265 0-0.52 0.105-0.707 0.293l-2.293 2.293v-8.586h7.14l-0.625 2z" + } + }] +}; +exports.foursquare = foursquare; +var yelp = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9.514 10.21c-0.27 0.272-0.042 0.768-0.042 0.768l2.033 3.394c0 0 0.334 0.447 0.623 0.447 0.29 0 0.577-0.239 0.577-0.239l1.607-2.297c0 0 0.162-0.29 0.166-0.544 0.006-0.361-0.538-0.46-0.538-0.46l-3.805-1.222c-0 0-0.373-0.099-0.621 0.152zM9.321 8.5c0.195 0.33 0.732 0.234 0.732 0.234l3.796-1.109c0 0 0.517-0.21 0.591-0.491 0.072-0.281-0.085-0.619-0.085-0.619l-1.814-2.137c0 0-0.157-0.27-0.483-0.297-0.36-0.031-0.581 0.405-0.581 0.405l-2.145 3.375c0 0-0.19 0.336-0.010 0.64zM7.527 7.184c0.447-0.11 0.518-0.759 0.518-0.759l-0.030-5.404c0 0-0.067-0.667-0.367-0.847-0.47-0.285-0.609-0.136-0.744-0.116l-3.151 1.171c0 0-0.309 0.102-0.469 0.36-0.23 0.365 0.233 0.899 0.233 0.899l3.276 4.465c0 0 0.323 0.334 0.735 0.233zM6.749 9.371c0.011-0.417-0.5-0.667-0.5-0.667l-3.387-1.711c0 0-0.502-0.207-0.746-0.063-0.187 0.11-0.352 0.31-0.368 0.486l-0.221 2.716c0 0-0.033 0.471 0.089 0.685 0.173 0.304 0.741 0.092 0.741 0.092l3.955-0.874c0.154-0.103 0.423-0.113 0.438-0.664zM7.732 10.837c-0.339-0.174-0.746 0.187-0.746 0.187l-2.648 2.915c0 0-0.33 0.446-0.246 0.72 0.079 0.257 0.21 0.384 0.396 0.474l2.659 0.839c0 0 0.322 0.067 0.567-0.004 0.347-0.1 0.283-0.643 0.283-0.643l0.060-3.947c-0 0-0.014-0.38-0.324-0.541z" + } + }] +}; +exports.yelp = yelp; +var paypal = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.531 4.822c-0.747 3.316-3.053 5.066-6.688 5.066h-1.209l-0.841 5.338h-1.013l-0.053 0.344c-0.034 0.228 0.141 0.431 0.369 0.431h2.588c0.306 0 0.566-0.222 0.616-0.525l0.025-0.131 0.488-3.091 0.031-0.169c0.047-0.303 0.309-0.525 0.616-0.525h0.384c2.506 0 4.469-1.019 5.044-3.963 0.216-1.119 0.134-2.069-0.356-2.775z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12.984 1.206c-0.741-0.844-2.081-1.206-3.794-1.206h-4.972c-0.35 0-0.65 0.253-0.703 0.6l-2.072 13.131c-0.041 0.259 0.159 0.494 0.422 0.494h3.072l0.772-4.891-0.025 0.153c0.053-0.347 0.35-0.6 0.7-0.6h1.459c2.866 0 5.109-1.162 5.766-4.531 0.019-0.1 0.037-0.197 0.050-0.291 0.194-1.244 0-2.094-0.675-2.859z" + } + }] +}; +exports.paypal = paypal; +var chrome = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4.036 6.977l-2.29-3.966c1.466-1.835 3.722-3.012 6.254-3.012 2.929 0 5.489 1.574 6.883 3.922h-6.528c-0.117-0.010-0.236-0.016-0.356-0.016-1.904 0-3.509 1.307-3.964 3.071zM10.864 5.078h4.585c0.355 0.905 0.551 1.891 0.551 2.922 0 4.388-3.533 7.95-7.909 7.999l3.272-5.667c0.461-0.662 0.731-1.466 0.731-2.332 0-1.143-0.471-2.178-1.23-2.922zM5.094 8c0-1.603 1.304-2.906 2.906-2.906s2.906 1.304 2.906 2.906c0 1.602-1.304 2.906-2.906 2.906s-2.906-1.304-2.906-2.906zM9.097 11.944l-2.29 3.967c-3.852-0.576-6.806-3.899-6.806-7.911 0-1.425 0.373-2.763 1.026-3.922l3.266 5.657c0.654 1.392 2.070 2.359 3.707 2.359 0.38 0 0.747-0.052 1.097-0.149z" + } + }] +}; +exports.chrome = chrome; +var firefox = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.977 5.221l-0.185 1.189c0 0-0.265-2.201-0.59-3.024-0.498-1.261-0.719-1.251-0.72-1.249 0.333 0.847 0.273 1.302 0.273 1.302s-0.591-1.609-2.152-2.121c-1.729-0.567-2.665-0.412-2.773-0.383-0.016-0-0.032-0-0.047-0 0.013 0.001 0.025 0.002 0.038 0.003-0.001 0-0.001 0.001-0.001 0.001 0.007 0.009 1.911 0.333 2.249 0.797 0 0-0.809 0-1.614 0.232-0.036 0.010 2.961 0.374 3.574 3.37 0 0-0.329-0.686-0.735-0.802 0.267 0.813 0.199 2.356-0.056 3.123-0.033 0.099-0.066-0.426-0.568-0.652 0.161 1.151-0.010 2.976-0.808 3.479-0.062 0.039 0.5-1.802 0.113-1.090-2.23 3.419-4.866 1.578-6.051 0.767 0.607 0.132 1.76-0.021 2.271-0.4 0.001-0 0.001-0.001 0.002-0.001 0.554-0.379 0.882-0.656 1.177-0.59s0.491-0.23 0.262-0.493c-0.229-0.263-0.786-0.625-1.539-0.428-0.531 0.139-1.19 0.727-2.194 0.132-0.771-0.457-0.844-0.837-0.851-1.1 0.019-0.093 0.043-0.18 0.072-0.26 0.089-0.248 0.358-0.323 0.508-0.382 0.254 0.044 0.473 0.123 0.703 0.241 0.003-0.076 0.004-0.178-0-0.293 0.022-0.044 0.008-0.176-0.027-0.337-0.020-0.161-0.053-0.328-0.106-0.48 0-0 0-0 0-0s0.002-0.001 0.002-0.001c0.001-0.001 0.002-0.002 0.003-0.003s0-0.001 0.001-0.001c0.001-0.002 0.002-0.004 0.003-0.007 0.016-0.072 0.188-0.211 0.402-0.361 0.192-0.134 0.417-0.277 0.595-0.387 0.157-0.098 0.277-0.17 0.302-0.189 0.010-0.007 0.021-0.016 0.034-0.026 0.002-0.002 0.005-0.004 0.007-0.006s0.003-0.002 0.004-0.004c0.085-0.067 0.211-0.194 0.237-0.462 0-0.001 0-0.001 0-0.002 0.001-0.008 0.001-0.016 0.002-0.024 0-0.006 0.001-0.011 0.001-0.017 0-0.004 0-0.009 0.001-0.013 0-0.011 0.001-0.021 0.001-0.032 0-0.001 0-0.001 0-0.002 0-0.026-0-0.053-0.002-0.081-0.001-0.016-0.002-0.030-0.005-0.043-0-0.001-0-0.001-0-0.002s-0.001-0.003-0.001-0.004-0.001-0.005-0.002-0.007c-0-0-0-0-0-0.001-0.001-0.003-0.002-0.005-0.003-0.007-0-0-0-0-0-0-0.027-0.064-0.13-0.088-0.554-0.096-0-0-0.001-0-0.001-0v0c-0.173-0.003-0.399-0.003-0.695-0.002-0.52 0.002-0.807-0.508-0.898-0.705 0.126-0.695 0.489-1.19 1.085-1.525 0.011-0.006 0.009-0.012-0.004-0.015 0.117-0.071-1.41-0.002-2.112 0.891-0.623-0.155-1.166-0.144-1.635-0.035-0.090-0.003-0.202-0.014-0.335-0.041-0.311-0.282-0.757-0.803-0.781-1.425 0 0-0.001 0.001-0.004 0.003-0-0.006-0.001-0.012-0.001-0.018 0 0-0.949 0.729-0.807 2.717-0 0.032-0.001 0.062-0.002 0.092-0.257 0.348-0.384 0.641-0.394 0.706-0.228 0.463-0.458 1.16-0.646 2.218 0 0 0.131-0.417 0.395-0.889-0.194 0.594-0.346 1.518-0.257 2.904 0 0 0.024-0.307 0.107-0.75 0.065 0.86 0.352 1.921 1.076 3.169 1.39 2.396 3.526 3.605 5.887 3.791 0.419 0.035 0.845 0.035 1.272 0.003 0.039-0.003 0.079-0.006 0.118-0.009 0.484-0.034 0.971-0.107 1.457-0.224 6.643-1.606 5.921-9.628 5.921-9.628z" + } + }] +}; +exports.firefox = firefox; +var IE = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.472 9.825h3.688c0.028-0.256 0.040-0.517 0.040-0.784 0-1.253-0.336-2.429-0.924-3.442 0.607-1.614 0.586-2.984-0.227-3.803-0.773-0.77-2.848-0.645-5.194 0.394-0.174-0.013-0.349-0.020-0.526-0.020-3.22 0-5.921 2.216-6.667 5.201 1.010-1.293 2.072-2.231 3.492-2.913-0.129 0.121-0.882 0.87-1.009 0.996-3.743 3.742-4.923 8.63-3.653 9.9 0.965 0.965 2.715 0.802 4.725-0.182 0.934 0.476 1.992 0.744 3.113 0.744 3.018 0 5.575-1.942 6.501-4.648h-3.717c-0.511 0.943-1.512 1.586-2.66 1.586s-2.148-0.642-2.66-1.586c-0.227-0.426-0.358-0.915-0.358-1.432v-0.011h6.035zM5.442 8.013c0.085-1.517 1.347-2.728 2.887-2.728s2.802 1.21 2.887 2.728h-5.774zM14.015 2.559c0.524 0.529 0.511 1.503 0.063 2.719-0.768-1.17-1.883-2.093-3.2-2.619 1.408-0.604 2.553-0.684 3.137-0.1zM1.461 15.113c-0.668-0.669-0.467-2.072 0.394-3.763 0.536 1.504 1.581 2.767 2.927 3.581-1.491 0.677-2.712 0.792-3.321 0.182z" + } + }] +}; +exports.IE = IE; +var edge = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0.241 7.103c0.469-3.7 2.994-7.056 7.519-7.103 2.731 0.053 4.978 1.291 6.316 3.65 0.672 1.231 0.881 2.525 0.925 3.953v1.678h-10.041c0.047 4.141 6.094 4 8.697 2.175v3.372c-1.525 0.916-4.984 1.734-7.662 0.681-2.281-0.856-3.906-3.244-3.897-5.541-0.075-2.978 1.481-4.95 3.897-6.072-0.513 0.634-0.903 1.334-1.106 2.547h5.669c0 0 0.331-3.388-3.209-3.388-3.338 0.116-5.744 2.056-7.106 4.047v0z" + } + }] +}; +exports.edge = edge; +var safari = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.419 0-8 3.581-8 8s3.581 8 8 8 8-3.581 8-8-3.581-8-8-8zM14.975 7.388l-0.016-0.166c0.003 0.056 0.009 0.109 0.016 0.166zM13.881 4.2l-0.113-0.169c0.037 0.056 0.075 0.112 0.113 0.169zM13.447 3.603l-0.069-0.084c0.025 0.028 0.047 0.056 0.069 0.084zM12.478 2.619l-0.084-0.069c0.031 0.025 0.056 0.047 0.084 0.069zM11.969 2.231l-0.169-0.112c0.056 0.038 0.113 0.075 0.169 0.112zM8.778 1.044l-0.169-0.016c0.056 0.003 0.113 0.009 0.169 0.016zM7.388 1.025l-0.169 0.016c0.056-0.003 0.112-0.009 0.169-0.016zM4.2 2.119l-0.169 0.112c0.056-0.038 0.112-0.075 0.169-0.112zM3.603 2.553l-0.081 0.066c0.028-0.022 0.053-0.044 0.081-0.066zM2.619 3.522l-0.069 0.084c0.025-0.028 0.047-0.056 0.069-0.084zM2.231 4.031l-0.112 0.169c0.038-0.056 0.075-0.112 0.112-0.169zM1.044 7.222l-0.016 0.169c0.003-0.056 0.009-0.112 0.016-0.169zM1.025 8.613l0.016 0.169c-0.003-0.056-0.009-0.113-0.016-0.169zM2.119 11.797l0.112 0.169c-0.038-0.053-0.075-0.109-0.112-0.169zM2.25 11.994l1.247-0.834-0.138-0.209-1.247 0.834c-0.566-0.878-0.938-1.887-1.063-2.975l0.747-0.075-0.025-0.25-0.747 0.075c-0.012-0.144-0.019-0.291-0.022-0.438h1.5v-0.25h-1.5c0.003-0.147 0.009-0.291 0.022-0.438l0.747 0.072 0.025-0.25-0.747-0.072c0.125-1.088 0.5-2.097 1.066-2.975l1.247 0.834 0.138-0.209-1.25-0.828c0.084-0.119 0.169-0.237 0.259-0.35l0.578 0.475 0.159-0.194-0.578-0.475c0.094-0.112 0.194-0.219 0.294-0.325l1.059 1.059 0.178-0.178-1.059-1.059c0.106-0.1 0.212-0.2 0.322-0.294l0.475 0.581 0.194-0.159-0.475-0.578c0.116-0.091 0.231-0.178 0.35-0.263l0.834 1.247 0.209-0.138-0.834-1.247c0.878-0.566 1.888-0.938 2.975-1.063l0.075 0.747 0.25-0.025-0.075-0.747c0.144-0.012 0.291-0.019 0.438-0.022v1.5h0.25v-1.5c0.147 0.003 0.291 0.009 0.438 0.022l-0.072 0.747 0.25 0.025 0.072-0.747c1.088 0.125 2.097 0.5 2.975 1.066l-0.834 1.247 0.209 0.138 0.834-1.247c0.119 0.084 0.238 0.169 0.35 0.259l-0.475 0.578 0.194 0.159 0.475-0.578c0.113 0.094 0.219 0.194 0.325 0.294l-0.4 0.391-5.469 3.647-3.647 5.469-0.391 0.391c-0.1-0.106-0.2-0.213-0.294-0.322l0.578-0.475-0.159-0.194-0.578 0.475c-0.091-0.113-0.175-0.231-0.259-0.35zM2.619 12.478c-0.022-0.028-0.044-0.053-0.066-0.081l0.066 0.081zM3.522 13.381l0.081 0.066c-0.028-0.022-0.053-0.044-0.081-0.066zM4.031 13.766l0.169 0.113c-0.056-0.034-0.112-0.072-0.169-0.113zM7.222 14.956l0.169 0.016c-0.056-0.003-0.112-0.009-0.169-0.016zM8.613 14.975l0.166-0.016c-0.056 0.003-0.109 0.009-0.166 0.016zM11.8 13.881l0.169-0.113c-0.056 0.037-0.113 0.075-0.169 0.113zM12.397 13.447l0.084-0.069c-0.028 0.025-0.056 0.047-0.084 0.069zM12.944 12.956l0.012-0.012c-0.003 0.003-0.009 0.009-0.012 0.012zM13.381 12.478l0.069-0.084c-0.025 0.028-0.047 0.056-0.069 0.084zM13.491 12.344l-0.578-0.475-0.159 0.194 0.578 0.475c-0.094 0.113-0.194 0.219-0.294 0.325l-1.059-1.059-0.178 0.178 1.059 1.059c-0.106 0.1-0.213 0.2-0.322 0.294l-0.475-0.581-0.194 0.159 0.475 0.578c-0.116 0.091-0.231 0.178-0.35 0.262l-0.834-1.247-0.209 0.137 0.834 1.247c-0.878 0.566-1.887 0.938-2.975 1.063l-0.075-0.747-0.25 0.025 0.075 0.747c-0.144 0.012-0.291 0.019-0.438 0.022v-1.5h-0.25v1.5c-0.147-0.003-0.291-0.009-0.438-0.022l0.072-0.747-0.25-0.025-0.072 0.747c-1.088-0.125-2.097-0.5-2.975-1.066l0.834-1.247-0.209-0.137-0.828 1.247c-0.119-0.084-0.237-0.169-0.35-0.259l0.475-0.578-0.194-0.159-0.475 0.578c-0.112-0.094-0.219-0.194-0.325-0.294l0.394-0.391 5.469-3.647 3.647-5.469 0.391-0.391c0.1 0.106 0.2 0.212 0.294 0.322l-0.578 0.475 0.159 0.194 0.578-0.475c0.091 0.116 0.178 0.231 0.262 0.35l-1.247 0.834 0.137 0.209 1.247-0.834c0.566 0.878 0.938 1.888 1.063 2.975l-0.747 0.075 0.025 0.25 0.747-0.075c0.012 0.144 0.019 0.291 0.022 0.438h-1.5v0.25h1.5c-0.003 0.147-0.009 0.291-0.022 0.438l-0.747-0.072-0.025 0.25 0.747 0.072c-0.125 1.088-0.5 2.097-1.066 2.975l-1.247-0.834-0.137 0.209 1.247 0.834c-0.081 0.113-0.169 0.228-0.259 0.344zM14.975 8.609c-0.006 0.056-0.009 0.113-0.016 0.169l0.016-0.169zM13.881 11.8c-0.037 0.056-0.075 0.113-0.113 0.169l0.113-0.169z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6.758 1.111l0.293 1.471-0.245 0.049-0.293-1.471 0.245-0.049z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9.245 14.89l-0.293-1.471 0.245-0.049 0.293 1.471-0.245 0.049z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6.088 1.264l0.218 0.718-0.239 0.073-0.218-0.718 0.239-0.073z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9.913 14.733l-0.218-0.718 0.239-0.073 0.218 0.718-0.239 0.073z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5.438 1.486l0.574 1.386-0.231 0.096-0.574-1.386 0.231-0.096z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M10.564 14.515l-0.574-1.386 0.231-0.096 0.574 1.386-0.231 0.096z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4.588 1.885l0.22-0.118 0.354 0.661-0.22 0.118-0.354-0.661z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.408 14.114l-0.22 0.118-0.354-0.661 0.22-0.118 0.354 0.661z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M1.884 4.591l0.662 0.353-0.118 0.221-0.661-0.353 0.118-0.221z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.113 11.409l-0.662-0.353 0.118-0.22 0.662 0.353-0.118 0.22z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M2.872 6.010l-1.386-0.574 0.096-0.231 1.386 0.574-0.096 0.231z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.13 9.989l1.386 0.574-0.096 0.231-1.386-0.574 0.096-0.231z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M1.337 5.85l0.718 0.218-0.073 0.239-0.718-0.218 0.073-0.239z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.661 10.151l-0.718-0.218 0.073-0.239 0.718 0.218-0.073 0.239z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M1.157 6.512l1.471 0.293-0.049 0.245-1.471-0.293 0.049-0.245z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.84 9.488l-1.471-0.293 0.049-0.245 1.471 0.293-0.049 0.245z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M1.109 9.243l1.471-0.293 0.049 0.245-1.471 0.293-0.049-0.245z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.888 6.757l-1.471 0.293-0.049-0.245 1.471-0.293 0.049 0.245z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M1.265 9.914l0.718-0.218 0.073 0.239-0.718 0.218-0.073-0.239z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.734 6.089l-0.718 0.218-0.073-0.239 0.718-0.218 0.073 0.239z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M1.58 10.796l-0.096-0.231 1.386-0.574 0.096 0.231-1.386 0.574z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.419 5.207l0.096 0.231-1.386 0.574-0.096-0.231 1.386-0.574z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M1.888 11.41l-0.118-0.22 0.661-0.354 0.118 0.22-0.661 0.354z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.116 4.59l0.118 0.22-0.661 0.354-0.118-0.22 0.661-0.354z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4.811 14.232l-0.22-0.118 0.354-0.661 0.22 0.118-0.354 0.661z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.189 1.767l0.22 0.118-0.353 0.661-0.22-0.118 0.353-0.661z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5.207 14.419l0.574-1.386 0.231 0.096-0.574 1.386-0.231-0.096z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M10.795 1.58l-0.574 1.386-0.231-0.096 0.574-1.386 0.231 0.096z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6.088 14.735l-0.239-0.073 0.218-0.718 0.239 0.073-0.218 0.718z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9.912 1.264l0.239 0.073-0.218 0.718-0.239-0.073 0.218-0.718z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6.757 14.888l-0.245-0.049 0.293-1.471 0.245 0.049-0.293 1.471z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9.243 1.109l0.245 0.049-0.293 1.471-0.245-0.049 0.293-1.471z" + } + }] +}; +exports.safari = safari; +var opera = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16 8v0 0c0 2.369-1.031 4.5-2.669 5.963-2.053 1-3.966 0.3-4.597-0.137 2.016-0.441 3.537-2.878 3.537-5.825s-1.522-5.384-3.537-5.828c0.634-0.438 2.547-1.137 4.597-0.138 1.637 1.466 2.669 3.597 2.669 5.966v0 0z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5.366 3.491c-0.884 1.044-1.456 2.587-1.494 4.322 0 0.003 0 0.372 0 0.378 0.038 1.731 0.613 3.275 1.497 4.319 1.147 1.491 2.853 2.434 4.759 2.434 1.172 0 2.269-0.356 3.206-0.978-1.419 1.266-3.287 2.034-5.334 2.034-0.128 0-0.256-0.003-0.381-0.009-4.241-0.2-7.619-3.7-7.619-7.991 0-4.419 3.581-8 8-8 0.009 0 0.019 0 0.031 0 2.037 0.006 3.894 0.775 5.303 2.038-0.938-0.622-2.034-0.981-3.206-0.981-1.906 0-3.612 0.944-4.763 2.434z" + } + }] +}; +exports.opera = opera; +var filePdf = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.156 9.211c-0.213-0.21-0.686-0.321-1.406-0.331-0.487-0.005-1.073 0.038-1.69 0.124-0.276-0.159-0.561-0.333-0.784-0.542-0.601-0.561-1.103-1.34-1.415-2.197 0.020-0.080 0.038-0.15 0.054-0.222 0 0 0.339-1.923 0.249-2.573-0.012-0.089-0.020-0.115-0.044-0.184l-0.029-0.076c-0.092-0.212-0.273-0.437-0.556-0.425l-0.171-0.005c-0.316 0-0.573 0.161-0.64 0.403-0.205 0.757 0.007 1.889 0.39 3.355l-0.098 0.239c-0.275 0.67-0.619 1.345-0.923 1.94l-0.040 0.077c-0.32 0.626-0.61 1.157-0.873 1.607l-0.271 0.144c-0.020 0.010-0.485 0.257-0.594 0.323-0.926 0.553-1.539 1.18-1.641 1.678-0.032 0.159-0.008 0.362 0.156 0.456l0.263 0.132c0.114 0.057 0.234 0.086 0.357 0.086 0.659 0 1.425-0.821 2.48-2.662 1.218-0.396 2.604-0.726 3.819-0.908 0.926 0.521 2.065 0.883 2.783 0.883 0.128 0 0.238-0.012 0.327-0.036 0.138-0.037 0.254-0.115 0.325-0.222 0.139-0.21 0.168-0.499 0.13-0.795-0.011-0.088-0.081-0.196-0.157-0.271zM3.307 12.72c0.12-0.329 0.596-0.979 1.3-1.556 0.044-0.036 0.153-0.138 0.253-0.233-0.736 1.174-1.229 1.642-1.553 1.788zM7.476 3.12c0.212 0 0.333 0.534 0.343 1.035s-0.107 0.853-0.252 1.113c-0.12-0.385-0.179-0.992-0.179-1.389 0 0-0.009-0.759 0.088-0.759v0zM6.232 9.961c0.148-0.264 0.301-0.543 0.458-0.839 0.383-0.724 0.624-1.29 0.804-1.755 0.358 0.651 0.804 1.205 1.328 1.649 0.065 0.055 0.135 0.111 0.207 0.166-1.066 0.211-1.987 0.467-2.798 0.779v0zM12.952 9.901c-0.065 0.041-0.251 0.064-0.37 0.064-0.386 0-0.864-0.176-1.533-0.464 0.257-0.019 0.493-0.029 0.705-0.029 0.387 0 0.502-0.002 0.88 0.095s0.383 0.293 0.318 0.333v0z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.341 3.579c-0.347-0.473-0.831-1.027-1.362-1.558s-1.085-1.015-1.558-1.362c-0.806-0.591-1.197-0.659-1.421-0.659h-7.75c-0.689 0-1.25 0.561-1.25 1.25v13.5c0 0.689 0.561 1.25 1.25 1.25h11.5c0.689 0 1.25-0.561 1.25-1.25v-9.75c0-0.224-0.068-0.615-0.659-1.421v0zM12.271 2.729c0.48 0.48 0.856 0.912 1.134 1.271h-2.406v-2.405c0.359 0.278 0.792 0.654 1.271 1.134v0zM14 14.75c0 0.136-0.114 0.25-0.25 0.25h-11.5c-0.135 0-0.25-0.114-0.25-0.25v-13.5c0-0.135 0.115-0.25 0.25-0.25 0 0 7.749-0 7.75 0v3.5c0 0.276 0.224 0.5 0.5 0.5h3.5v9.75z" + } + }] +}; +exports.filePdf = filePdf; +var fileOpenoffice = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M10.785 7.37c-0.948-0.448-2.156-0.538-3.044 0.095 1.080-0.103 2.265 0.076 3.049 0.893 0.75-0.861 1.939-1.022 3.015-0.933-0.898-0.596-2.082-0.516-3.019-0.054v0zM10.401 9.465c-1.068-0.025-2.101 0.362-2.986 0.939-1.675-0.712-3.793-0.58-5.219 0.609 0.411-0.015 0.813-0.116 1.22-0.169 1.487-0.148 3.072 0.221 4.196 1.247 0.465-0.68 1.119-1.223 1.87-1.561 0.986-0.477 2.096-0.526 3.169-0.539-0.651-0.448-1.478-0.531-2.249-0.526z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.341 3.579c-0.347-0.473-0.831-1.027-1.362-1.558s-1.085-1.015-1.558-1.362c-0.806-0.591-1.197-0.659-1.421-0.659h-7.75c-0.689 0-1.25 0.561-1.25 1.25v13.5c0 0.689 0.561 1.25 1.25 1.25h11.5c0.689 0 1.25-0.561 1.25-1.25v-9.75c0-0.224-0.068-0.615-0.659-1.421v0zM12.271 2.729c0.48 0.48 0.856 0.912 1.134 1.271h-2.406v-2.405c0.359 0.278 0.792 0.654 1.271 1.134v0zM14 14.75c0 0.136-0.114 0.25-0.25 0.25h-11.5c-0.135 0-0.25-0.114-0.25-0.25v-13.5c0-0.135 0.115-0.25 0.25-0.25 0 0 7.749-0 7.75 0v3.5c0 0.276 0.224 0.5 0.5 0.5h3.5v9.75z" + } + }] +}; +exports.fileOpenoffice = fileOpenoffice; +var fileWord = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9.997 7.436h0.691l-0.797 3.534-1.036-4.969h-1.665l-1.205 4.969-0.903-4.969h-1.741l1.767 7.998h1.701l1.192-4.73 1.066 4.73h1.568l2.025-7.998h-2.663v1.435z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.341 3.579c-0.347-0.473-0.831-1.027-1.362-1.558s-1.085-1.015-1.558-1.362c-0.806-0.591-1.197-0.659-1.421-0.659h-7.75c-0.689 0-1.25 0.561-1.25 1.25v13.5c0 0.689 0.561 1.25 1.25 1.25h11.5c0.689 0 1.25-0.561 1.25-1.25v-9.75c0-0.224-0.068-0.615-0.659-1.421v0zM12.271 2.729c0.48 0.48 0.856 0.912 1.134 1.271h-2.406v-2.405c0.359 0.278 0.792 0.654 1.271 1.134v0zM14 14.75c0 0.136-0.114 0.25-0.25 0.25h-11.5c-0.135 0-0.25-0.114-0.25-0.25v-13.5c0-0.135 0.115-0.25 0.25-0.25 0 0 7.749-0 7.75 0v3.5c0 0.276 0.224 0.5 0.5 0.5h3.5v9.75z" + } + }] +}; +exports.fileWord = fileWord; +var fileExcel = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.61 6h-2.114l-1.496 2.204-1.496-2.204h-2.114l2.534 3.788-2.859 4.212h3.935v-1.431h-0.784l0.784-1.172 1.741 2.603h2.194l-2.859-4.212 2.534-3.788z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.341 3.579c-0.347-0.473-0.831-1.027-1.362-1.558s-1.085-1.015-1.558-1.362c-0.806-0.591-1.197-0.659-1.421-0.659h-7.75c-0.689 0-1.25 0.561-1.25 1.25v13.5c0 0.689 0.561 1.25 1.25 1.25h11.5c0.689 0 1.25-0.561 1.25-1.25v-9.75c0-0.224-0.068-0.615-0.659-1.421v0zM12.271 2.729c0.48 0.48 0.856 0.912 1.134 1.271h-2.406v-2.405c0.359 0.278 0.792 0.654 1.271 1.134v0zM14 14.75c0 0.136-0.114 0.25-0.25 0.25h-11.5c-0.135 0-0.25-0.114-0.25-0.25v-13.5c0-0.135 0.115-0.25 0.25-0.25 0 0 7.749-0 7.75 0v3.5c0 0.276 0.224 0.5 0.5 0.5h3.5v9.75z" + } + }] +}; +exports.fileExcel = fileExcel; +var libreoffice = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8.354 0.354c-0.194-0.194-0.579-0.354-0.854-0.354h-6c-0.275 0-0.5 0.225-0.5 0.5v15c0 0.275 0.225 0.5 0.5 0.5h12c0.275 0 0.5-0.225 0.5-0.5v-9c0-0.275-0.159-0.659-0.354-0.854l-5.293-5.293zM13 15h-11v-14h5.487c0.046 0.008 0.131 0.043 0.169 0.070l5.274 5.274c0.027 0.038 0.062 0.123 0.070 0.169v8.487zM13.5 0h-3c-0.275 0-0.341 0.159-0.146 0.354l3.293 3.293c0.194 0.194 0.354 0.129 0.354-0.146v-3c0-0.275-0.225-0.5-0.5-0.5z" + } + }] +}; +exports.libreoffice = libreoffice; +var htmlFive = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0.946 0l1.284 14.4 5.762 1.6 5.777-1.602 1.286-14.398h-14.108zM12.26 4.71h-6.758l0.161 1.809h6.437l-0.485 5.422-3.623 1.004-3.618-1.004-0.247-2.774h1.773l0.126 1.41 1.967 0.53 0.004-0.001 1.968-0.531 0.204-2.29h-6.121l-0.476-5.341h8.847l-0.158 1.766z" + } + }] +}; +exports.htmlFive = htmlFive; +var htmlFive2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0.946 0l1.284 14.4 5.762 1.6 5.777-1.602 1.286-14.398h-14.108zM12.668 13.482l-4.644 1.287v0.007l-0.012-0.004-0.012 0.004v-0.007l-4.644-1.287-1.098-12.304h11.508l-1.098 12.304zM10.168 8.284l-0.204 2.29-1.972 0.532-1.967-0.53-0.126-1.41h-1.773l0.247 2.774 3.626 1.003 3.615-1.003 0.485-5.422h-6.437l-0.161-1.809h6.758l0.158-1.766h-8.847l0.477 5.341z" + } + }] +}; +exports.htmlFive2 = htmlFive2; +var css3 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M2.381 0.758l-0.537 2.686h10.934l-0.342 1.735h-10.94l-0.53 2.686h10.933l-0.61 3.063-4.406 1.46-3.819-1.46 0.261-1.329h-2.686l-0.639 3.224 6.316 2.417 7.281-2.417 2.403-12.066z" + } + }] +}; +exports.css3 = css3; +var git = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.698 7.287l-6.986-6.986c-0.402-0.402-1.055-0.402-1.457 0l-1.623 1.623 1.221 1.221c0.196-0.094 0.415-0.146 0.647-0.146 0.828 0 1.5 0.672 1.5 1.5 0 0.232-0.053 0.451-0.146 0.647l2 2c0.196-0.094 0.415-0.146 0.647-0.146 0.828 0 1.5 0.672 1.5 1.5s-0.672 1.5-1.5 1.5-1.5-0.672-1.5-1.5c0-0.232 0.053-0.451 0.146-0.647l-2-2c-0.048 0.023-0.097 0.043-0.147 0.061v4.171c0.583 0.206 1 0.761 1 1.414 0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5c0-0.653 0.417-1.208 1-1.414v-4.171c-0.583-0.206-1-0.761-1-1.414 0-0.232 0.053-0.451 0.146-0.647l-1.221-1.221-4.623 4.623c-0.402 0.403-0.402 1.055 0 1.458l6.986 6.986c0.402 0.402 1.054 0.402 1.457 0l6.953-6.953c0.402-0.403 0.402-1.055-0-1.458z" + } + }] +}; +exports.git = git; +var codepen = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.777 5.751l-7-4.667c-0.168-0.112-0.387-0.112-0.555 0l-7 4.667c-0.139 0.093-0.223 0.249-0.223 0.416v4.667c0 0.167 0.084 0.323 0.223 0.416l7 4.667c0.084 0.056 0.181 0.084 0.277 0.084s0.193-0.028 0.277-0.084l7-4.667c0.139-0.093 0.223-0.249 0.223-0.416v-4.667c0-0.167-0.084-0.323-0.223-0.416zM7.5 10.232l-2.599-1.732 2.599-1.732 2.599 1.732-2.599 1.732zM8 5.899v-3.465l5.599 3.732-2.599 1.732-3-2zM7 5.899l-3 2-2.599-1.732 5.599-3.732v3.465zM3.099 8.5l-2.099 1.399v-2.798l2.099 1.399zM4 9.101l3 2v3.465l-5.599-3.732 2.599-1.732zM8 11.101l3-2 2.599 1.732-5.599 3.732v-3.465zM11.901 8.5l2.099-1.399v2.798l-2.099-1.399z" + } + }] +}; +exports.codepen = codepen; +var svg = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.5 6.5c-0.444 0-0.843 0.193-1.118 0.5h-2.968l2.099-2.099c0.411 0.023 0.83-0.123 1.144-0.437 0.586-0.586 0.586-1.536 0-2.121s-1.536-0.586-2.121 0c-0.314 0.314-0.46 0.733-0.437 1.144l-2.099 2.099v-2.968c0.307-0.275 0.5-0.674 0.5-1.118 0-0.828-0.672-1.5-1.5-1.5s-1.5 0.672-1.5 1.5c0 0.444 0.193 0.843 0.5 1.118v2.968l-2.099-2.099c0.023-0.411-0.123-0.83-0.437-1.144-0.586-0.586-1.536-0.586-2.121 0s-0.586 1.536 0 2.121c0.314 0.314 0.733 0.46 1.144 0.437l2.099 2.099h-2.968c-0.275-0.307-0.674-0.5-1.118-0.5-0.828 0-1.5 0.672-1.5 1.5s0.672 1.5 1.5 1.5c0.444 0 0.843-0.193 1.118-0.5h2.968l-2.099 2.099c-0.411-0.023-0.83 0.123-1.144 0.437-0.586 0.586-0.586 1.536 0 2.121s1.536 0.586 2.121 0c0.314-0.314 0.46-0.733 0.437-1.144l2.099-2.099v2.968c-0.307 0.275-0.5 0.674-0.5 1.118 0 0.828 0.672 1.5 1.5 1.5s1.5-0.672 1.5-1.5c0-0.444-0.193-0.843-0.5-1.118v-2.968l2.099 2.099c-0.023 0.411 0.123 0.83 0.437 1.144 0.586 0.586 1.536 0.586 2.121 0s0.586-1.536 0-2.121c-0.314-0.314-0.733-0.46-1.144-0.437l-2.099-2.099h2.968c0.275 0.307 0.674 0.5 1.118 0.5 0.828 0 1.5-0.672 1.5-1.5s-0.672-1.5-1.5-1.5z" + } + }] +}; +exports.svg = svg; +var IcoMoon = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4.055 8c0-1.022 0.829-1.851 1.851-1.851s1.851 0.829 1.851 1.851c0 1.022-0.829 1.851-1.851 1.851s-1.851-0.829-1.851-1.851zM8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8c4.418 0 8-3.582 8-8s-3.582-8-8-8zM5.928 14.989c-2.406-1.4-4.023-4.005-4.023-6.989s1.617-5.589 4.023-6.989c2.406 1.399 4.025 4.005 4.025 6.989s-1.618 5.589-4.025 6.989z" + } + }] +}; +exports.IcoMoon = IcoMoon; \ No newline at end of file diff --git a/dist/icomoon/infinite.js b/dist/icomoon/infinite.js new file mode 100644 index 000000000..cfcf94424 --- /dev/null +++ b/dist/icomoon/infinite.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.infinite = void 0; +var infinite = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12.25 11.75c-1.002 0-1.943-0.39-2.652-1.098l-1.598-1.598-1.598 1.598c-0.708 0.708-1.65 1.098-2.652 1.098s-1.944-0.39-2.652-1.098c-0.708-0.708-1.098-1.65-1.098-2.652s0.39-1.943 1.098-2.652c0.708-0.708 1.65-1.098 2.652-1.098s1.943 0.39 2.652 1.098l1.598 1.598 1.598-1.598c0.708-0.708 1.65-1.098 2.652-1.098s1.944 0.39 2.652 1.098c0.708 0.708 1.098 1.65 1.098 2.652s-0.39 1.943-1.098 2.652c-0.708 0.708-1.65 1.098-2.652 1.098zM10.652 9.598c0.427 0.427 0.994 0.662 1.598 0.662s1.171-0.235 1.598-0.662c0.427-0.427 0.662-0.994 0.662-1.598s-0.235-1.171-0.662-1.598c-0.427-0.427-0.994-0.662-1.598-0.662s-1.171 0.235-1.598 0.662l-1.598 1.598 1.598 1.598zM3.75 5.74c-0.604 0-1.171 0.235-1.598 0.662s-0.662 0.994-0.662 1.598c0 0.604 0.235 1.171 0.662 1.598s0.994 0.662 1.598 0.662c0.604 0 1.171-0.235 1.598-0.662l1.598-1.598-1.598-1.598c-0.427-0.427-0.994-0.662-1.598-0.662v0z" + } + }] +}; +exports.infinite = infinite; \ No newline at end of file diff --git a/dist/icomoon/info.js b/dist/icomoon/info.js new file mode 100644 index 000000000..7e509767d --- /dev/null +++ b/dist/icomoon/info.js @@ -0,0 +1,29 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.info = void 0; +var info = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7 4.75c0-0.412 0.338-0.75 0.75-0.75h0.5c0.412 0 0.75 0.338 0.75 0.75v0.5c0 0.412-0.338 0.75-0.75 0.75h-0.5c-0.412 0-0.75-0.338-0.75-0.75v-0.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M10 12h-4v-1h1v-3h-1v-1h3v4h1z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM8 14.5c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5 6.5 2.91 6.5 6.5-2.91 6.5-6.5 6.5z" + } + }] +}; +exports.info = info; \ No newline at end of file diff --git a/dist/icomoon/insertTemplate.js b/dist/icomoon/insertTemplate.js new file mode 100644 index 000000000..a131ad736 --- /dev/null +++ b/dist/icomoon/insertTemplate.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.insertTemplate = void 0; +var insertTemplate = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6 3h2v1h-2zM9 3h2v1h-2zM14 3v4h-3v-1h2v-2h-1v-1zM5 6h2v1h-2zM8 6h2v1h-2zM3 4v2h1v1h-2v-4h3v1zM6 9h2v1h-2zM9 9h2v1h-2zM14 9v4h-3v-1h2v-2h-1v-1zM5 12h2v1h-2zM8 12h2v1h-2zM3 10v2h1v1h-2v-4h3v1zM15 1h-14v14h14v-14zM16 0v0 16h-16v-16h16z" + } + }] +}; +exports.insertTemplate = insertTemplate; \ No newline at end of file diff --git a/dist/icomoon/instagram.js b/dist/icomoon/instagram.js new file mode 100644 index 000000000..f55b2a472 --- /dev/null +++ b/dist/icomoon/instagram.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.instagram = void 0; +var instagram = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.5 0h-13c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM11 2.5c0-0.275 0.225-0.5 0.5-0.5h2c0.275 0 0.5 0.225 0.5 0.5v2c0 0.275-0.225 0.5-0.5 0.5h-2c-0.275 0-0.5-0.225-0.5-0.5v-2zM8 5c1.656 0 3 1.344 3 3s-1.344 3-3 3c-1.656 0-3-1.344-3-3s1.344-3 3-3zM14 13.5v0c0 0.275-0.225 0.5-0.5 0.5h-11c-0.275 0-0.5-0.225-0.5-0.5v0-6.5h1.1c-0.066 0.322-0.1 0.656-0.1 1 0 2.762 2.237 5 5 5s5-2.238 5-5c0-0.344-0.034-0.678-0.1-1h1.1v6.5z" + } + }] +}; +exports.instagram = instagram; \ No newline at end of file diff --git a/dist/icomoon/italic.js b/dist/icomoon/italic.js new file mode 100644 index 000000000..bc7dcdc0c --- /dev/null +++ b/dist/icomoon/italic.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.italic = void 0; +var italic = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14 1v1h-2l-5 12h2v1h-7v-1h2l5-12h-2v-1z" + } + }] +}; +exports.italic = italic; \ No newline at end of file diff --git a/dist/icomoon/joomla.js b/dist/icomoon/joomla.js new file mode 100644 index 000000000..6e30ce23e --- /dev/null +++ b/dist/icomoon/joomla.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.joomla = void 0; +var joomla = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4.156 4.323c0.513-0.513 1.344-0.513 1.856-0l0.122 0.123 1.58-1.581-0.123-0.123c-0.9-0.902-2.164-1.217-3.319-0.946-0.166-1.018-1.048-1.796-2.112-1.796-1.182 0-2.14 0.96-2.14 2.143 0 1.021 0.712 1.875 1.667 2.091-0.362 1.21-0.066 2.576 0.888 3.531l3.56 3.561 1.578-1.581-3.56-3.561c-0.511-0.511-0.512-1.346 0.003-1.861zM15.98 2.143c0-1.184-0.958-2.143-2.14-2.143-1.082 0-1.976 0.804-2.12 1.847-1.204-0.354-2.559-0.055-3.51 0.897l-3.56 3.561 1.58 1.581 3.559-3.56c0.515-0.515 1.344-0.514 1.854-0.003 0.512 0.513 0.512 1.346-0.001 1.859l-0.122 0.122 1.578 1.582 0.123-0.124c0.945-0.946 1.245-2.293 0.9-3.494 1.049-0.138 1.858-1.037 1.858-2.125zM14.16 11.735c0.283-1.163-0.031-2.443-0.939-3.352l-3.555-3.562-1.58 1.58 3.555 3.563c0.515 0.516 0.514 1.345 0.003 1.857-0.513 0.513-1.344 0.513-1.857-0l-0.121-0.122-1.578 1.582 0.121 0.121c0.961 0.962 2.338 1.257 3.553 0.883 0.197 0.979 1.061 1.716 2.098 1.716 1.181 0 2.14-0.959 2.14-2.143 0-1.081-0.8-1.976-1.84-2.122zM9.568 8.261l-3.555 3.562c-0.511 0.512-1.344 0.513-1.859-0.002-0.513-0.514-0.513-1.345-0.001-1.859l0.122-0.121-1.579-1.58-0.121 0.12c-0.918 0.919-1.228 2.216-0.929 3.39-0.944 0.223-1.646 1.072-1.646 2.086-0 1.184 0.958 2.143 2.14 2.143 1.017-0.001 1.869-0.71 2.087-1.662 1.167 0.29 2.453-0.020 3.365-0.934l3.555-3.562-1.578-1.582z" + } + }] +}; +exports.joomla = joomla; \ No newline at end of file diff --git a/dist/icomoon/key.js b/dist/icomoon/key.js new file mode 100644 index 000000000..45dd483d5 --- /dev/null +++ b/dist/icomoon/key.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.key = void 0; +var key = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11 0c-2.761 0-5 2.239-5 5 0 0.313 0.029 0.619 0.084 0.916l-6.084 6.084v3c0 0.552 0.448 1 1 1h1v-1h2v-2h2v-2h2l1.298-1.298c0.531 0.192 1.105 0.298 1.702 0.298 2.761 0 5-2.239 5-5s-2.239-5-5-5zM12.498 5.002c-0.828 0-1.5-0.672-1.5-1.5s0.672-1.5 1.5-1.5 1.5 0.672 1.5 1.5-0.672 1.5-1.5 1.5z" + } + }] +}; +exports.key = key; \ No newline at end of file diff --git a/dist/icomoon/key2.js b/dist/icomoon/key2.js new file mode 100644 index 000000000..8d7646595 --- /dev/null +++ b/dist/icomoon/key2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.key2 = void 0; +var key2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.658 4.91l-1.58-1.58c-0.387-0.387-1.021-1.021-1.409-1.409l-1.58-1.58c-0.387-0.387-1.077-0.456-1.533-0.152l-4.319 2.88c-0.456 0.304-0.628 0.954-0.383 1.444l1.101 2.203c0.034 0.067 0.073 0.139 0.115 0.213l-5.571 5.571-0.5 3.5h3v-1h2v-2h2v-2h2v-1.112c0.1 0.060 0.196 0.113 0.284 0.157l2.203 1.101c0.49 0.245 1.14 0.072 1.444-0.383l2.88-4.319c0.304-0.456 0.236-1.146-0.152-1.533zM2.354 13.354l-0.707-0.707 4.868-4.868 0.707 0.707-4.868 4.868zM14.328 6.621l-0.707 0.707c-0.194 0.194-0.513 0.194-0.707 0l-4.243-4.243c-0.194-0.194-0.194-0.513 0-0.707l0.707-0.707c0.194-0.194 0.513-0.194 0.707 0l4.243 4.243c0.194 0.194 0.194 0.513 0 0.707z" + } + }] +}; +exports.key2 = key2; \ No newline at end of file diff --git a/dist/icomoon/keyboard.js b/dist/icomoon/keyboard.js new file mode 100644 index 000000000..95a81de59 --- /dev/null +++ b/dist/icomoon/keyboard.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.keyboard = void 0; +var keyboard = { + "viewBox": "0 0 18 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M17 2h-16c-0.55 0-1 0.45-1 1v10c0 0.55 0.45 1 1 1h16c0.55 0 1-0.45 1-1v-10c0-0.55-0.45-1-1-1zM10 4h2v2h-2v-2zM13 7v2h-2v-2h2zM7 4h2v2h-2v-2zM10 7v2h-2v-2h2zM4 4h2v2h-2v-2zM7 7v2h-2v-2h2zM2 4h1v2h-1v-2zM2 7h2v2h-2v-2zM3 12h-1v-2h1v2zM12 12h-8v-2h8v2zM16 12h-3v-2h3v2zM16 9h-2v-2h2v2zM16 6h-3v-2h3v2z" + } + }] +}; +exports.keyboard = keyboard; \ No newline at end of file diff --git a/dist/icomoon/lab.js b/dist/icomoon/lab.js new file mode 100644 index 000000000..f9da41042 --- /dev/null +++ b/dist/icomoon/lab.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.lab = void 0; +var lab = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.942 12.57l-4.942-8.235v-3.335h0.5c0.275 0 0.5-0.225 0.5-0.5s-0.225-0.5-0.5-0.5h-5c-0.275 0-0.5 0.225-0.5 0.5s0.225 0.5 0.5 0.5h0.5v3.335l-4.942 8.235c-1.132 1.886-0.258 3.43 1.942 3.43h10c2.2 0 3.074-1.543 1.942-3.43zM3.766 10l3.234-5.39v-3.61h2v3.61l3.234 5.39h-8.468z" + } + }] +}; +exports.lab = lab; \ No newline at end of file diff --git a/dist/icomoon/lanyrd.js b/dist/icomoon/lanyrd.js new file mode 100644 index 000000000..50651b330 --- /dev/null +++ b/dist/icomoon/lanyrd.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.lanyrd = void 0; +var lanyrd = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.5 0h-13c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM12.85 12.012l-5.444 1.781c-1.244 0.406-1.369 0.341-1.931-1.4l-1.375-4.259c-0.328-1.009-1.328-3.728-1.497-4.25-0.313-0.969-0.313-1.022 1.516-1.616 1.431-0.469 1.491-0.453 2.009 1.163 0.419 1.3 0.688 2.35 1.119 3.678l1.172 3.625 3.744-1.225c0.738-0.244 0.984-0.231 1.194 0.678l0.15 0.688c0.175 0.797-0.228 1-0.656 1.137z" + } + }] +}; +exports.lanyrd = lanyrd; \ No newline at end of file diff --git a/dist/icomoon/laptop.js b/dist/icomoon/laptop.js new file mode 100644 index 000000000..7dec37a86 --- /dev/null +++ b/dist/icomoon/laptop.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.laptop = void 0; +var laptop = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14 11v-8c0-0.55-0.45-1-1-1h-10c-0.55 0-1 0.45-1 1v8h-2v3h16v-3h-2zM10 13h-4v-1h4v1zM13 11h-10v-7.998c0.001-0.001 0.001-0.001 0.002-0.002h9.996c0.001 0.001 0.001 0.001 0.002 0.002v7.998z" + } + }] +}; +exports.laptop = laptop; \ No newline at end of file diff --git a/dist/icomoon/last.js b/dist/icomoon/last.js new file mode 100644 index 000000000..42289a938 --- /dev/null +++ b/dist/icomoon/last.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.last = void 0; +var last = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14 2v12h-2v-5.5l-5 5v-5l-5 5v-11l5 5v-5l5 5v-5.5z" + } + }] +}; +exports.last = last; \ No newline at end of file diff --git a/dist/icomoon/lastfm.js b/dist/icomoon/lastfm.js new file mode 100644 index 000000000..daa1764e3 --- /dev/null +++ b/dist/icomoon/lastfm.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.lastfm = void 0; +var lastfm = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7.056 11.972l-0.588-1.594c0 0-0.953 1.063-2.381 1.063-1.266 0-2.163-1.1-2.163-2.859 0-2.253 1.137-3.059 2.253-3.059 1.612 0 2.125 1.044 2.566 2.381l0.588 1.831c0.588 1.778 1.688 3.206 4.856 3.206 2.272 0 3.813-0.697 3.813-2.528 0-1.484-0.844-2.253-2.419-2.622l-1.172-0.256c-0.806-0.184-1.044-0.513-1.044-1.063 0-0.622 0.494-0.991 1.3-0.991 0.881 0 1.356 0.331 1.428 1.119l1.831-0.219c-0.147-1.65-1.284-2.328-3.153-2.328-1.65 0-3.262 0.622-3.262 2.622 0 1.247 0.606 2.034 2.125 2.4l1.247 0.294c0.934 0.219 1.247 0.606 1.247 1.137 0 0.678-0.659 0.953-1.906 0.953-1.85 0-2.622-0.972-3.059-2.309l-0.606-1.831c-0.766-2.384-1.994-3.263-4.431-3.263-2.694 0-4.125 1.703-4.125 4.6 0 2.784 1.428 4.287 3.997 4.287 2.069 0 3.059-0.972 3.059-0.972v0z" + } + }] +}; +exports.lastfm = lastfm; \ No newline at end of file diff --git a/dist/icomoon/lastfm2.js b/dist/icomoon/lastfm2.js new file mode 100644 index 000000000..55b074f8e --- /dev/null +++ b/dist/icomoon/lastfm2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.lastfm2 = void 0; +var lastfm2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.5 0h-13c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM11.666 11.887c-2.775 0-3.737-1.25-4.25-2.806l-0.513-1.603c-0.384-1.172-0.834-2.084-2.244-2.084-0.978 0-1.972 0.706-1.972 2.678 0 1.541 0.784 2.503 1.894 2.503 1.25 0 2.084-0.931 2.084-0.931l0.513 1.394c0 0-0.866 0.85-2.678 0.85-2.25 0-3.5-1.313-3.5-3.75 0-2.534 1.25-4.025 3.609-4.025 2.134 0 3.206 0.769 3.881 2.853l0.528 1.603c0.384 1.172 1.059 2.022 2.678 2.022 1.091 0 1.669-0.241 1.669-0.834 0-0.466-0.272-0.803-1.091-0.994l-1.091-0.256c-1.331-0.322-1.859-1.009-1.859-2.1 0-1.747 1.412-2.294 2.853-2.294 1.634 0 2.631 0.594 2.759 2.038l-1.603 0.194c-0.066-0.691-0.481-0.978-1.25-0.978-0.706 0-1.137 0.322-1.137 0.866 0 0.481 0.209 0.769 0.912 0.931l1.025 0.225c1.378 0.322 2.116 0.994 2.116 2.294 0 1.597-1.347 2.206-3.334 2.206z" + } + }] +}; +exports.lastfm2 = lastfm2; \ No newline at end of file diff --git a/dist/icomoon/leaf.js b/dist/icomoon/leaf.js new file mode 100644 index 000000000..3a0d30f45 --- /dev/null +++ b/dist/icomoon/leaf.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.leaf = void 0; +var leaf = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.802 2.102c-1.73-1.311-4.393-2.094-7.124-2.094-3.377 0-6.129 1.179-7.549 3.235-0.667 0.965-1.036 2.109-1.097 3.398-0.054 1.148 0.139 2.418 0.573 3.784 1.482-4.444 5.622-7.923 10.395-7.923 0 0-4.466 1.175-7.274 4.816-0.002 0.002-0.039 0.048-0.103 0.136-0.564 0.754-1.055 1.612-1.423 2.583-0.623 1.482-1.2 3.515-1.2 5.965h2c0 0-0.304-1.91 0.224-4.106 0.873 0.118 1.654 0.177 2.357 0.177 1.839 0 3.146-0.398 4.115-1.252 0.868-0.765 1.347-1.794 1.854-2.882 0.774-1.663 1.651-3.547 4.198-5.002 0.146-0.083 0.24-0.234 0.251-0.402s-0.063-0.329-0.197-0.431z" + } + }] +}; +exports.leaf = leaf; \ No newline at end of file diff --git a/dist/icomoon/library.js b/dist/icomoon/library.js new file mode 100644 index 000000000..a23353dad --- /dev/null +++ b/dist/icomoon/library.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.library = void 0; +var library = { + "viewBox": "0 0 17 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16 15v-1h-1v-6h1v-1h-3v1h1v6h-3v-6h1v-1h-3v1h1v6h-3v-6h1v-1h-3v1h1v6h-3v-6h1v-1h-3v1h1v6h-1v1h-1v1h17v-1h-1z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0h1l8 5v1h-17v-1l8-5z" + } + }] +}; +exports.library = library; \ No newline at end of file diff --git a/dist/icomoon/libreoffice.js b/dist/icomoon/libreoffice.js new file mode 100644 index 000000000..a5638f02c --- /dev/null +++ b/dist/icomoon/libreoffice.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.libreoffice = void 0; +var libreoffice = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8.354 0.354c-0.194-0.194-0.579-0.354-0.854-0.354h-6c-0.275 0-0.5 0.225-0.5 0.5v15c0 0.275 0.225 0.5 0.5 0.5h12c0.275 0 0.5-0.225 0.5-0.5v-9c0-0.275-0.159-0.659-0.354-0.854l-5.293-5.293zM13 15h-11v-14h5.487c0.046 0.008 0.131 0.043 0.169 0.070l5.274 5.274c0.027 0.038 0.062 0.123 0.070 0.169v8.487zM13.5 0h-3c-0.275 0-0.341 0.159-0.146 0.354l3.293 3.293c0.194 0.194 0.354 0.129 0.354-0.146v-3c0-0.275-0.225-0.5-0.5-0.5z" + } + }] +}; +exports.libreoffice = libreoffice; \ No newline at end of file diff --git a/dist/icomoon/lifebuoy.js b/dist/icomoon/lifebuoy.js new file mode 100644 index 000000000..7575d5c1c --- /dev/null +++ b/dist/icomoon/lifebuoy.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.lifebuoy = void 0; +var lifebuoy = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM5 8c0-1.657 1.343-3 3-3s3 1.343 3 3-1.343 3-3 3-3-1.343-3-3zM14.468 10.679v0l-2.772-1.148c0.196-0.472 0.304-0.989 0.304-1.531s-0.108-1.059-0.304-1.531l2.772-1.148c0.342 0.825 0.532 1.73 0.532 2.679s-0.189 1.854-0.532 2.679v0zM10.679 1.532v0 0l-1.148 2.772c-0.472-0.196-0.989-0.304-1.531-0.304s-1.059 0.108-1.531 0.304l-1.148-2.772c0.825-0.342 1.73-0.532 2.679-0.532s1.854 0.189 2.679 0.532zM1.532 5.321l2.772 1.148c-0.196 0.472-0.304 0.989-0.304 1.531s0.108 1.059 0.304 1.531l-2.772 1.148c-0.342-0.825-0.532-1.73-0.532-2.679s0.189-1.854 0.532-2.679zM5.321 14.468l1.148-2.772c0.472 0.196 0.989 0.304 1.531 0.304s1.059-0.108 1.531-0.304l1.148 2.772c-0.825 0.342-1.73 0.532-2.679 0.532s-1.854-0.189-2.679-0.532z" + } + }] +}; +exports.lifebuoy = lifebuoy; \ No newline at end of file diff --git a/dist/icomoon/ligature.js b/dist/icomoon/ligature.js new file mode 100644 index 000000000..c757cc773 --- /dev/null +++ b/dist/icomoon/ligature.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ligature = void 0; +var ligature = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12 13.622c0-0.001 0-0.001 0-0.002l-0.005-6.821-1.992 0.097h-3.936v-0.336c0-1.274 0.091-2.546 0.269-3.042 0.123-0.343 0.353-0.652 0.683-0.919 0.322-0.261 0.643-0.393 0.955-0.393 0.262 0 0.48 0.045 0.647 0.134 0.235 0.134 0.464 0.359 0.682 0.669 0.577 0.82 0.812 1.038 0.939 1.131 0.216 0.158 0.477 0.238 0.776 0.238 0.292 0 0.546-0.109 0.757-0.324 0.209-0.213 0.315-0.479 0.315-0.792 0-0.335-0.139-0.691-0.414-1.057-0.268-0.358-0.683-0.652-1.232-0.875-0.536-0.218-1.14-0.329-1.793-0.329-0.949 0-1.813 0.228-2.568 0.678-0.757 0.451-1.337 1.077-1.725 1.863-0.359 0.728-0.333 2.105-0.355 3.355h-1.965v1.116h1.962v5.073c0 1.12-0.342 1.422-0.472 1.583-0.179 0.222-0.509 0.455-0.944 0.455h-0.604v0.878h6.021v-0.878h-0.105c-1.424 0-1.828-0.154-1.828-1.888 0-0 0-0.001 0-0.001l-0.001-5.222h2.191c1.163 0 1.43 0.054 1.491 0.077 0.074 0.028 0.169 0.075 0.204 0.143 0.014 0.026 0.081 0.391 0.081 1.296v3.917c0 0.913-0.111 1.217-0.179 1.319-0.145 0.222-0.319 0.345-0.854 0.358v0.879h4.588v-0.873c-1.431 0-1.588-0.153-1.588-1.505z" + } + }] +}; +exports.ligature = ligature; \ No newline at end of file diff --git a/dist/icomoon/ligature2.js b/dist/icomoon/ligature2.js new file mode 100644 index 000000000..48ae5c8f9 --- /dev/null +++ b/dist/icomoon/ligature2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ligature2 = void 0; +var ligature2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.364 14.335c-0.183 0-1.307-0.206-1.375-0.458-0.161-0.619-0.183-1.284-0.183-2.040v-8.453c0-1.261 0.252-1.994 0.252-1.994-0.023-0.115-0.138-0.367-0.275-0.367h-0.069c-0.069 0-0.871 0.504-1.605 0.504-0.596-0-0.967-0.527-1.655-0.527-2.892 0-4.249 2.349-4.249 5.672v0.173c0 0.069-0.046 0.138-0.115 0.138h-0.94c-0.115 0-0.344 0.642-0.344 0.94 0 0.092 0.023 0.137 0.069 0.137h1.215c0.069 0 0.115 0.092 0.115 0.16 0 2.040-0.023 4.052-0.023 4.052 0 0.321-0.023 1.031-0.16 1.605-0.069 0.252-1.123 0.458-1.398 0.458-0.115 0-0.115 0.55 0 0.665 0.94-0.046 1.559-0.115 2.499-0.115 0.871 0 1.536 0.069 2.453 0.115 0.046-0.138 0.046-0.665-0.069-0.665-0.183 0-1.307-0.206-1.375-0.458-0.16-0.619-0.16-1.284-0.183-2.040v-3.639c0-0.069 0.069-0.138 0.138-0.138h2.361c0.16-0.321 0.275-0.711 0.275-0.917 0-0.138 0-0.16-0.115-0.16h-2.544c-0.046 0-0.115-0.069-0.115-0.115v-0.825c0-2.040 0.836-3.837 2.234-3.837 0.99 0 1.854 0.642 1.854 3.093 0 0 0 0 0 0 0.003 0.063 0.005 0.114 0.005 0.148v6.825c0 0.321-0.023 1.031-0.16 1.605-0.069 0.252-1.123 0.458-1.398 0.458-0.115 0-0.115 0.55 0 0.665 0.94-0.046 1.559-0.115 2.499-0.115 0.871 0 1.536 0.069 2.453 0.115 0.046-0.137 0.046-0.665-0.069-0.665z" + } + }] +}; +exports.ligature2 = ligature2; \ No newline at end of file diff --git a/dist/icomoon/link.js b/dist/icomoon/link.js new file mode 100644 index 000000000..84dc59f63 --- /dev/null +++ b/dist/icomoon/link.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.link = void 0; +var link = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6.879 9.934c-0.208 0-0.416-0.079-0.575-0.238-1.486-1.486-1.486-3.905 0-5.392l3-3c0.72-0.72 1.678-1.117 2.696-1.117s1.976 0.397 2.696 1.117c1.486 1.487 1.486 3.905 0 5.392l-1.371 1.371c-0.317 0.317-0.832 0.317-1.149 0s-0.317-0.832 0-1.149l1.371-1.371c0.853-0.853 0.853-2.241 0-3.094-0.413-0.413-0.963-0.641-1.547-0.641s-1.134 0.228-1.547 0.641l-3 3c-0.853 0.853-0.853 2.241 0 3.094 0.317 0.317 0.317 0.832 0 1.149-0.159 0.159-0.367 0.238-0.575 0.238z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4 15.813c-1.018 0-1.976-0.397-2.696-1.117-1.486-1.486-1.486-3.905 0-5.392l1.371-1.371c0.317-0.317 0.832-0.317 1.149 0s0.317 0.832 0 1.149l-1.371 1.371c-0.853 0.853-0.853 2.241 0 3.094 0.413 0.413 0.962 0.641 1.547 0.641s1.134-0.228 1.547-0.641l3-3c0.853-0.853 0.853-2.241 0-3.094-0.317-0.317-0.317-0.832 0-1.149s0.832-0.317 1.149 0c1.486 1.486 1.486 3.905 0 5.392l-3 3c-0.72 0.72-1.678 1.117-2.696 1.117z" + } + }] +}; +exports.link = link; \ No newline at end of file diff --git a/dist/icomoon/linkedin.js b/dist/icomoon/linkedin.js new file mode 100644 index 000000000..c6864162c --- /dev/null +++ b/dist/icomoon/linkedin.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.linkedin = void 0; +var linkedin = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.5 0h-13c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM6 13h-2v-7h2v7zM5 5c-0.553 0-1-0.447-1-1s0.447-1 1-1c0.553 0 1 0.447 1 1s-0.447 1-1 1zM13 13h-2v-4c0-0.553-0.447-1-1-1s-1 0.447-1 1v4h-2v-7h2v1.241c0.412-0.566 1.044-1.241 1.75-1.241 1.244 0 2.25 1.119 2.25 2.5v4.5z" + } + }] +}; +exports.linkedin = linkedin; \ No newline at end of file diff --git a/dist/icomoon/linkedin2.js b/dist/icomoon/linkedin2.js new file mode 100644 index 000000000..56fe1454a --- /dev/null +++ b/dist/icomoon/linkedin2.js @@ -0,0 +1,29 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.linkedin2 = void 0; +var linkedin2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6 6h2.767v1.418h0.040c0.385-0.691 1.327-1.418 2.732-1.418 2.921 0 3.461 1.818 3.461 4.183v4.817h-2.885v-4.27c0-1.018-0.021-2.329-1.5-2.329-1.502 0-1.732 1.109-1.732 2.255v4.344h-2.883v-9z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M1 6h3v9h-3v-9z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4 3.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5z" + } + }] +}; +exports.linkedin2 = linkedin2; \ No newline at end of file diff --git a/dist/icomoon/list.js b/dist/icomoon/list.js new file mode 100644 index 000000000..9604f1187 --- /dev/null +++ b/dist/icomoon/list.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.list = void 0; +var list = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 0h4v4h-4zM6 1h10v2h-10zM0 6h4v4h-4zM6 7h10v2h-10zM0 12h4v4h-4zM6 13h10v2h-10z" + } + }] +}; +exports.list = list; \ No newline at end of file diff --git a/dist/icomoon/list2.js b/dist/icomoon/list2.js new file mode 100644 index 000000000..63485000e --- /dev/null +++ b/dist/icomoon/list2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.list2 = void 0; +var list2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6 1h10v2h-10v-2zM6 7h10v2h-10v-2zM6 13h10v2h-10v-2zM0 2c0-1.105 0.895-2 2-2s2 0.895 2 2c0 1.105-0.895 2-2 2s-2-0.895-2-2zM0 8c0-1.105 0.895-2 2-2s2 0.895 2 2c0 1.105-0.895 2-2 2s-2-0.895-2-2zM0 14c0-1.105 0.895-2 2-2s2 0.895 2 2c0 1.105-0.895 2-2 2s-2-0.895-2-2z" + } + }] +}; +exports.list2 = list2; \ No newline at end of file diff --git a/dist/icomoon/listNumbered.js b/dist/icomoon/listNumbered.js new file mode 100644 index 000000000..ee1d9bdc4 --- /dev/null +++ b/dist/icomoon/listNumbered.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.listNumbered = void 0; +var listNumbered = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6 13h10v2h-10zM6 7h10v2h-10zM6 1h10v2h-10zM3 0v4h-1v-3h-1v-1zM2 8.219v0.781h2v1h-3v-2.281l2-0.938v-0.781h-2v-1h3v2.281zM4 11v5h-3v-1h2v-1h-2v-1h2v-1h-2v-1z" + } + }] +}; +exports.listNumbered = listNumbered; \ No newline at end of file diff --git a/dist/icomoon/location.js b/dist/icomoon/location.js new file mode 100644 index 000000000..c6506189d --- /dev/null +++ b/dist/icomoon/location.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.location = void 0; +var location = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-2.761 0-5 2.239-5 5 0 5 5 11 5 11s5-6 5-11c0-2.761-2.239-5-5-5zM8 8c-1.657 0-3-1.343-3-3s1.343-3 3-3 3 1.343 3 3-1.343 3-3 3z" + } + }] +}; +exports.location = location; \ No newline at end of file diff --git a/dist/icomoon/location2.js b/dist/icomoon/location2.js new file mode 100644 index 000000000..d9e13a393 --- /dev/null +++ b/dist/icomoon/location2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.location2 = void 0; +var location2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-2.761 0-5 2.239-5 5 0 5 5 11 5 11s5-6 5-11c0-2.761-2.239-5-5-5zM8 8.063c-1.691 0-3.063-1.371-3.063-3.063s1.371-3.063 3.063-3.063 3.063 1.371 3.063 3.063-1.371 3.063-3.063 3.063zM6.063 5c0-1.070 0.867-1.938 1.938-1.938s1.938 0.867 1.938 1.938c0 1.070-0.867 1.938-1.938 1.938s-1.938-0.867-1.938-1.938z" + } + }] +}; +exports.location2 = location2; \ No newline at end of file diff --git a/dist/icomoon/lock.js b/dist/icomoon/lock.js new file mode 100644 index 000000000..d85bfde57 --- /dev/null +++ b/dist/icomoon/lock.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.lock = void 0; +var lock = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9.25 7h-0.25v-3c0-1.654-1.346-3-3-3h-2c-1.654 0-3 1.346-3 3v3h-0.25c-0.412 0-0.75 0.338-0.75 0.75v7.5c0 0.412 0.338 0.75 0.75 0.75h8.5c0.412 0 0.75-0.338 0.75-0.75v-7.5c0-0.412-0.338-0.75-0.75-0.75zM3 4c0-0.551 0.449-1 1-1h2c0.551 0 1 0.449 1 1v3h-4v-3z" + } + }] +}; +exports.lock = lock; \ No newline at end of file diff --git a/dist/icomoon/loop.js b/dist/icomoon/loop.js new file mode 100644 index 000000000..6a88678ee --- /dev/null +++ b/dist/icomoon/loop.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.loop = void 0; +var loop = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M2 5h10v3l4-4-4-4v3h-12v6h2zM14 11h-10v-3l-4 4 4 4v-3h12v-6h-2z" + } + }] +}; +exports.loop = loop; \ No newline at end of file diff --git a/dist/icomoon/loop2.js b/dist/icomoon/loop2.js new file mode 100644 index 000000000..eee47d02a --- /dev/null +++ b/dist/icomoon/loop2.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.loop2 = void 0; +var loop2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.901 2.599c-1.463-1.597-3.565-2.599-5.901-2.599-4.418 0-8 3.582-8 8h1.5c0-3.59 2.91-6.5 6.5-6.5 1.922 0 3.649 0.835 4.839 2.161l-2.339 2.339h5.5v-5.5l-2.099 2.099z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.5 8c0 3.59-2.91 6.5-6.5 6.5-1.922 0-3.649-0.835-4.839-2.161l2.339-2.339h-5.5v5.5l2.099-2.099c1.463 1.597 3.565 2.599 5.901 2.599 4.418 0 8-3.582 8-8h-1.5z" + } + }] +}; +exports.loop2 = loop2; \ No newline at end of file diff --git a/dist/icomoon/ltr.js b/dist/icomoon/ltr.js new file mode 100644 index 000000000..222c74034 --- /dev/null +++ b/dist/icomoon/ltr.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ltr = void 0; +var ltr = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-2.209 0-4 1.791-4 4s1.791 4 4 4v8h2v-14h2v14h2v-14h2v-2h-8zM0 11l4-4-4-4z" + } + }] +}; +exports.ltr = ltr; \ No newline at end of file diff --git a/dist/icomoon/magicWand.js b/dist/icomoon/magicWand.js new file mode 100644 index 000000000..8cfa06b46 --- /dev/null +++ b/dist/icomoon/magicWand.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.magicWand = void 0; +var magicWand = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4 3l-2-2h-1v1l2 2zM5 0h1v2h-1zM9 5h2v1h-2zM10 2v-1h-1l-2 2 1 1zM0 5h2v1h-2zM5 9h1v2h-1zM1 9v1h1l2-2-1-1zM15.781 13.781l-9.939-9.939c-0.292-0.292-0.769-0.292-1.061 0l-0.939 0.939c-0.292 0.292-0.292 0.769 0 1.061l9.939 9.939c0.292 0.292 0.769 0.292 1.061 0l0.939-0.939c0.292-0.292 0.292-0.769 0-1.061zM7.5 8.5l-3-3 1-1 3 3-1 1z" + } + }] +}; +exports.magicWand = magicWand; \ No newline at end of file diff --git a/dist/icomoon/magnet.js b/dist/icomoon/magnet.js new file mode 100644 index 000000000..bc4f46bef --- /dev/null +++ b/dist/icomoon/magnet.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.magnet = void 0; +var magnet = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14 0h-4l1 9c0 1.657-1.343 3-3 3s-3-1.343-3-3l1-9h-4l-1 9c0 3.866 3.134 7 7 7s7-3.134 7-7l-1-9zM12.154 13.154c-1.11 1.11-2.585 1.721-4.154 1.721s-3.045-0.611-4.154-1.721c-1.096-1.096-1.705-2.548-1.72-4.095l0.564-5.075h1.736l-0.55 4.953v0.062c0 1.102 0.429 2.138 1.208 2.917s1.815 1.208 2.917 1.208 2.138-0.429 2.917-1.208c0.779-0.779 1.208-1.815 1.208-2.917v-0.062l-0.007-0.062-0.543-4.891h1.736l0.564 5.075c-0.015 1.547-0.625 2.999-1.72 4.095z" + } + }] +}; +exports.magnet = magnet; \ No newline at end of file diff --git a/dist/icomoon/mail.js b/dist/icomoon/mail.js new file mode 100644 index 000000000..237b03233 --- /dev/null +++ b/dist/icomoon/mail.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.mail = void 0; +var mail = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.333 0h-10.666c-1.467 0-2.667 1.2-2.667 2.667v10.666c0 1.467 1.2 2.667 2.667 2.667h10.666c1.468 0 2.667-1.2 2.667-2.667v-10.666c0-1.467-1.199-2.667-2.667-2.667zM4 4h8c0.143 0 0.281 0.031 0.409 0.088l-4.409 5.143-4.409-5.143c0.127-0.058 0.266-0.088 0.409-0.088zM3 11v-6c0-0.021 0.001-0.042 0.002-0.063l2.932 3.421-2.9 2.9c-0.023-0.083-0.034-0.17-0.034-0.258zM12 12h-8c-0.088 0-0.175-0.012-0.258-0.034l2.846-2.846 1.413 1.648 1.413-1.648 2.846 2.846c-0.083 0.023-0.17 0.034-0.258 0.034zM13 11c0 0.088-0.012 0.175-0.034 0.258l-2.9-2.9 2.932-3.421c0.001 0.021 0.002 0.042 0.002 0.063v6z" + } + }] +}; +exports.mail = mail; \ No newline at end of file diff --git a/dist/icomoon/mail2.js b/dist/icomoon/mail2.js new file mode 100644 index 000000000..e5400200d --- /dev/null +++ b/dist/icomoon/mail2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.mail2 = void 0; +var mail2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.333 0h-10.666c-1.467 0-2.667 1.2-2.667 2.667v10.666c0 1.468 1.2 2.667 2.667 2.667h10.666c1.467 0 2.667-1.199 2.667-2.667v-10.666c0-1.467-1.2-2.667-2.667-2.667zM13.333 2c0.125 0 0.243 0.036 0.344 0.099l-5.678 4.694-5.677-4.694c0.101-0.063 0.219-0.099 0.344-0.099h10.666zM2.667 14c-0.030 0-0.060-0.002-0.089-0.006l3.525-4.89-0.457-0.457-3.646 3.646v-9.549l6 7.256 6-7.256v9.549l-3.646-3.646-0.457 0.457 3.525 4.89c-0.029 0.004-0.059 0.006-0.088 0.006h-10.666z" + } + }] +}; +exports.mail2 = mail2; \ No newline at end of file diff --git a/dist/icomoon/mail3.js b/dist/icomoon/mail3.js new file mode 100644 index 000000000..7de65ee39 --- /dev/null +++ b/dist/icomoon/mail3.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.mail3 = void 0; +var mail3 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.333 0h-10.666c-1.467 0-2.667 1.2-2.667 2.667v10.666c0 1.468 1.2 2.667 2.667 2.667h10.666c1.467 0 2.667-1.199 2.667-2.667v-10.666c0-1.467-1.2-2.667-2.667-2.667zM2.854 13.854l-1.207-1.207 4-4 0.457 0.457-3.25 4.75zM2.396 3.104l0.457-0.457 5.146 4.146 5.146-4.146 0.457 0.457-5.604 6.604-5.604-6.604zM13.146 13.854l-3.25-4.75 0.457-0.457 4 4-1.207 1.207z" + } + }] +}; +exports.mail3 = mail3; \ No newline at end of file diff --git a/dist/icomoon/mail4.js b/dist/icomoon/mail4.js new file mode 100644 index 000000000..8d9531d49 --- /dev/null +++ b/dist/icomoon/mail4.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.mail4 = void 0; +var mail4 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM4 4h8c0.143 0 0.281 0.031 0.409 0.088l-4.409 5.143-4.409-5.143c0.127-0.058 0.266-0.088 0.409-0.088zM3 11v-6c0-0.021 0.001-0.042 0.002-0.063l2.932 3.421-2.9 2.9c-0.023-0.083-0.034-0.17-0.034-0.258zM12 12h-8c-0.088 0-0.175-0.012-0.258-0.034l2.846-2.846 1.413 1.648 1.413-1.648 2.846 2.846c-0.083 0.023-0.17 0.034-0.258 0.034zM13 11c0 0.088-0.012 0.175-0.034 0.258l-2.9-2.9 2.932-3.421c0.001 0.021 0.002 0.042 0.002 0.063v6z" + } + }] +}; +exports.mail4 = mail4; \ No newline at end of file diff --git a/dist/icomoon/makeGroup.js b/dist/icomoon/makeGroup.js new file mode 100644 index 000000000..1d8bdabd4 --- /dev/null +++ b/dist/icomoon/makeGroup.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.makeGroup = void 0; +var makeGroup = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5 2h-2c-0.55 0-1 0.45-1 1v2c0 0.55 0.45 1 1 1h2c0.55 0 1-0.45 1-1v-2c0-0.55-0.45-1-1-1z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11 6h2c0.55 0 1-0.45 1-1v-2c0-0.55-0.45-1-1-1h-2c-0.55 0-1 0.45-1 1v2c0 0.55 0.45 1 1 1zM11 3h2v2h-2v-2z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5 10h-2c-0.55 0-1 0.45-1 1v2c0 0.55 0.45 1 1 1h2c0.55 0 1-0.45 1-1v-2c0-0.55-0.45-1-1-1zM5 13h-2v-2h2v2z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13 10h-2c-0.55 0-1 0.45-1 1v2c0 0.55 0.45 1 1 1h2c0.55 0 1-0.45 1-1v-2c0-0.55-0.45-1-1-1z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14 8h-1c-1.336 0-2.591-0.52-3.536-1.464s-1.464-2.2-1.464-3.536v-1c0-1.1-0.9-2-2-2h-4c-1.1 0-2 0.9-2 2v4c0 1.1 0.9 2 2 2h1c1.336 0 2.591 0.52 3.536 1.464s1.464 2.2 1.464 3.536v1c0 1.1 0.9 2 2 2h4c1.1 0 2-0.9 2-2v-4c0-1.1-0.9-2-2-2zM15 14c0 0.265-0.105 0.515-0.295 0.705s-0.44 0.295-0.705 0.295h-4c-0.265 0-0.515-0.105-0.705-0.295s-0.295-0.44-0.295-0.705v-1c0-3.314-2.686-6-6-6h-1c-0.265 0-0.515-0.105-0.705-0.295s-0.295-0.441-0.295-0.705v-4c0-0.265 0.105-0.515 0.295-0.705s0.44-0.295 0.705-0.295h4c0.265 0 0.515 0.105 0.705 0.295s0.295 0.44 0.295 0.705v1c0 3.314 2.686 6 6 6h1c0.265 0 0.515 0.105 0.705 0.295s0.295 0.44 0.295 0.705v4z" + } + }] +}; +exports.makeGroup = makeGroup; \ No newline at end of file diff --git a/dist/icomoon/man.js b/dist/icomoon/man.js new file mode 100644 index 000000000..71ae5b1f4 --- /dev/null +++ b/dist/icomoon/man.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.man = void 0; +var man = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9 1.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9 4h-3c-0.552 0-1 0.448-1 1v5h1v6h1.25v-6h0.5v6h1.25v-6h1v-5c0-0.552-0.448-1-1-1z" + } + }] +}; +exports.man = man; \ No newline at end of file diff --git a/dist/icomoon/manWoman.js b/dist/icomoon/manWoman.js new file mode 100644 index 000000000..55120ef73 --- /dev/null +++ b/dist/icomoon/manWoman.js @@ -0,0 +1,35 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.manWoman = void 0; +var manWoman = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4 1.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13 1.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4 4h-3c-0.552 0-1 0.448-1 1v5h1v6h1.25v-6h0.5v6h1.25v-6h1v-5c0-0.552-0.448-1-1-1z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.234 8l0.766-0.555-2.083-3.221c-0.092-0.14-0.249-0.225-0.417-0.225h-4c-0.168 0-0.325 0.084-0.417 0.225l-2.083 3.221 0.766 0.555 1.729-2.244 0.601 1.402-2.095 3.841h1.917l0.333 5h1v-5h0.5v5h1l0.333-5h1.917l-2.095-3.842 0.601-1.402 1.729 2.244z" + } + }] +}; +exports.manWoman = manWoman; \ No newline at end of file diff --git a/dist/icomoon/map.js b/dist/icomoon/map.js new file mode 100644 index 000000000..98c830bee --- /dev/null +++ b/dist/icomoon/map.js @@ -0,0 +1,29 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.map = void 0; +var map = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 3l5-2v12l-5 2z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6 0.5l5 3v11.5l-5-2.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12 3.5l4-3v12l-4 3z" + } + }] +}; +exports.map = map; \ No newline at end of file diff --git a/dist/icomoon/map2.js b/dist/icomoon/map2.js new file mode 100644 index 000000000..5c0805723 --- /dev/null +++ b/dist/icomoon/map2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.map2 = void 0; +var map2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M10.5 3l-5-2-5.5 2v12l5.5-2 5 2 5.5-2v-12l-5.5 2zM6 2.277l4 1.6v9.846l-4-1.6v-9.846zM1 3.7l4-1.455v9.872l-4 1.454v-9.872zM15 12.3l-4 1.455v-9.872l4-1.455v9.872z" + } + }] +}; +exports.map2 = map2; \ No newline at end of file diff --git a/dist/icomoon/menu.js b/dist/icomoon/menu.js new file mode 100644 index 000000000..468cd4d59 --- /dev/null +++ b/dist/icomoon/menu.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.menu = void 0; +var menu = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M1 3h14v3h-14zM1 7h14v3h-14zM1 11h14v3h-14z" + } + }] +}; +exports.menu = menu; \ No newline at end of file diff --git a/dist/icomoon/menu2.js b/dist/icomoon/menu2.js new file mode 100644 index 000000000..d229bf41b --- /dev/null +++ b/dist/icomoon/menu2.js @@ -0,0 +1,29 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.menu2 = void 0; +var menu2 = { + "viewBox": "0 0 22 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 3h14v3h-14v-3zM0 7h14v3h-14v-3zM0 11h14v3h-14v-3z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.5 9l3 3 3-3z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M21.5 8l-3-3-3 3z" + } + }] +}; +exports.menu2 = menu2; \ No newline at end of file diff --git a/dist/icomoon/menu3.js b/dist/icomoon/menu3.js new file mode 100644 index 000000000..53a64ad3e --- /dev/null +++ b/dist/icomoon/menu3.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.menu3 = void 0; +var menu3 = { + "viewBox": "0 0 22 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 3h14v3h-14v-3zM0 7h14v3h-14v-3zM0 11h14v3h-14v-3z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.5 7l3 3 3-3z" + } + }] +}; +exports.menu3 = menu3; \ No newline at end of file diff --git a/dist/icomoon/menu4.js b/dist/icomoon/menu4.js new file mode 100644 index 000000000..b6a2d6b74 --- /dev/null +++ b/dist/icomoon/menu4.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.menu4 = void 0; +var menu4 = { + "viewBox": "0 0 22 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 3h14v3h-14v-3zM0 7h14v3h-14v-3zM0 11h14v3h-14v-3z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.5 10l3-3 3 3z" + } + }] +}; +exports.menu4 = menu4; \ No newline at end of file diff --git a/dist/icomoon/meter.js b/dist/icomoon/meter.js new file mode 100644 index 000000000..3c501bf40 --- /dev/null +++ b/dist/icomoon/meter.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.meter = void 0; +var meter = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 1c4.418 0 8 3.582 8 8 0 3.012-1.665 5.635-4.125 7h-7.75c-2.46-1.365-4.125-3.988-4.125-7 0-4.418 3.582-8 8-8zM12.53 13.53c1.21-1.21 1.876-2.819 1.876-4.53h-1.406v-1h1.329c-0.11-0.703-0.334-1.377-0.665-2h-1.664v-1h1.004c-0.147-0.184-0.306-0.361-0.475-0.53-0.722-0.722-1.587-1.251-2.53-1.559v1.089h-1v-1.329c-0.328-0.051-0.662-0.078-1-0.078s-0.672 0.026-1 0.078v1.329h-1v-1.089c-0.943 0.309-1.808 0.837-2.53 1.559-0.169 0.169-0.327 0.346-0.475 0.53h1.004v1h-1.664c-0.331 0.623-0.555 1.297-0.665 2h1.329v1h-1.406c0 1.711 0.666 3.32 1.876 4.53 0.167 0.167 0.343 0.324 0.524 0.47h3.006l0.571-8h0.857l0.571 8h3.006c0.182-0.146 0.357-0.303 0.524-0.47z" + } + }] +}; +exports.meter = meter; \ No newline at end of file diff --git a/dist/icomoon/meter2.js b/dist/icomoon/meter2.js new file mode 100644 index 000000000..2d76bdd2c --- /dev/null +++ b/dist/icomoon/meter2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.meter2 = void 0; +var meter2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM4.732 13.034c0.174-0.479 0.268-0.995 0.268-1.534 0-1.943-1.231-3.598-2.956-4.228 0.16-1.327 0.754-2.555 1.714-3.514 1.133-1.133 2.64-1.757 4.243-1.757s3.109 0.624 4.243 1.757c0.96 0.96 1.554 2.188 1.714 3.514-1.725 0.63-2.956 2.285-2.956 4.228 0 0.539 0.095 1.055 0.268 1.534-0.964 0.629-2.090 0.966-3.268 0.966s-2.304-0.338-3.268-0.966zM8.621 10.016c0.217 0.055 0.379 0.251 0.379 0.484v1c0 0.275-0.225 0.5-0.5 0.5h-1c-0.275 0-0.5-0.225-0.5-0.5v-1c0-0.233 0.162-0.43 0.379-0.484l0.371-7.016h0.5l0.371 7.016z" + } + }] +}; +exports.meter2 = meter2; \ No newline at end of file diff --git a/dist/icomoon/mic.js b/dist/icomoon/mic.js new file mode 100644 index 000000000..739cc7a0a --- /dev/null +++ b/dist/icomoon/mic.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.mic = void 0; +var mic = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7.5 11c1.381 0 2.5-1.119 2.5-2.5v-6c0-1.381-1.119-2.5-2.5-2.5s-2.5 1.119-2.5 2.5v6c0 1.381 1.119 2.5 2.5 2.5zM11 7v1.5c0 1.933-1.567 3.5-3.5 3.5s-3.5-1.567-3.5-3.5v-1.5h-1v1.5c0 2.316 1.75 4.223 4 4.472v2.028h-2v1h5v-1h-2v-2.028c2.25-0.249 4-2.156 4-4.472v-1.5h-1z" + } + }] +}; +exports.mic = mic; \ No newline at end of file diff --git a/dist/icomoon/minus.js b/dist/icomoon/minus.js new file mode 100644 index 000000000..84949b3fc --- /dev/null +++ b/dist/icomoon/minus.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.minus = void 0; +var minus = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 6.5v3c0 0.276 0.224 0.5 0.5 0.5h15c0.276 0 0.5-0.224 0.5-0.5v-3c0-0.276-0.224-0.5-0.5-0.5h-15c-0.276 0-0.5 0.224-0.5 0.5z" + } + }] +}; +exports.minus = minus; \ No newline at end of file diff --git a/dist/icomoon/mobile.js b/dist/icomoon/mobile.js new file mode 100644 index 000000000..0c1485bb2 --- /dev/null +++ b/dist/icomoon/mobile.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.mobile = void 0; +var mobile = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.5 0h-7c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h7c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM6 0.75h4v0.5h-4v-0.5zM8 15c-0.552 0-1-0.448-1-1s0.448-1 1-1 1 0.448 1 1-0.448 1-1 1zM12 12h-8v-10h8v10z" + } + }] +}; +exports.mobile = mobile; \ No newline at end of file diff --git a/dist/icomoon/mobile2.js b/dist/icomoon/mobile2.js new file mode 100644 index 000000000..cad8a818e --- /dev/null +++ b/dist/icomoon/mobile2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.mobile2 = void 0; +var mobile2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12 0h-9c-0.55 0-1 0.45-1 1v14c0 0.55 0.45 1 1 1h9c0.55 0 1-0.45 1-1v-14c0-0.55-0.45-1-1-1zM7.5 15.278c-0.43 0-0.778-0.348-0.778-0.778s0.348-0.778 0.778-0.778 0.778 0.348 0.778 0.778-0.348 0.778-0.778 0.778zM12 13h-9v-11h9v11z" + } + }] +}; +exports.mobile2 = mobile2; \ No newline at end of file diff --git a/dist/icomoon/moveDown.js b/dist/icomoon/moveDown.js new file mode 100644 index 000000000..3a5c512fd --- /dev/null +++ b/dist/icomoon/moveDown.js @@ -0,0 +1,71 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.moveDown = void 0; +var moveDown = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12 11v-6h-1v6h-2.5l3 3 3-3z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5 4v3h-3v-3h3zM6 3h-5v5h5v-5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M1 10h1.5v1h-1.5v-1z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M3 10h1.5v1h-1.5v-1z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5 10h1v1.5h-1v-1.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M1 13.5h1v1.5h-1v-1.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M2.5 14h1.5v1h-1.5v-1z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4.5 14h1.5v1h-1.5v-1z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M1 11.5h1v1.5h-1v-1.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5 12h1v1.5h-1v-1.5z" + } + }] +}; +exports.moveDown = moveDown; \ No newline at end of file diff --git a/dist/icomoon/moveUp.js b/dist/icomoon/moveUp.js new file mode 100644 index 000000000..a568d9069 --- /dev/null +++ b/dist/icomoon/moveUp.js @@ -0,0 +1,71 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.moveUp = void 0; +var moveUp = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11 8v6h1v-6h2.5l-3-3-3 3z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M1 3h1.5v1h-1.5v-1z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M3 3h1.5v1h-1.5v-1z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5 3h1v1.5h-1v-1.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M1 6.5h1v1.5h-1v-1.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M2.5 7h1.5v1h-1.5v-1z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4.5 7h1.5v1h-1.5v-1z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M1 4.5h1v1.5h-1v-1.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5 5h1v1.5h-1v-1.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5 11v3h-3v-3h3zM6 10h-5v5h5v-5z" + } + }] +}; +exports.moveUp = moveUp; \ No newline at end of file diff --git a/dist/icomoon/mug.js b/dist/icomoon/mug.js new file mode 100644 index 000000000..fb344e9cb --- /dev/null +++ b/dist/icomoon/mug.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.mug = void 0; +var mug = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15 5h-3v-1.5c0-1.381-2.686-2.5-6-2.5s-6 1.119-6 2.5v10c0 1.381 2.686 2.5 6 2.5s6-1.119 6-2.5v-1.5h3c0.552 0 1-0.448 1-1v-5c0-0.552-0.448-1-1-1zM2.751 4.037c-0.578-0.19-0.928-0.394-1.116-0.537 0.188-0.143 0.538-0.347 1.116-0.537 0.905-0.298 2.059-0.463 3.249-0.463s2.344 0.164 3.249 0.463c0.578 0.19 0.928 0.394 1.116 0.537-0.188 0.143-0.538 0.347-1.116 0.537-0.905 0.298-2.059 0.463-3.249 0.463s-2.344-0.164-3.249-0.463zM14 10h-2v-3h2v3z" + } + }] +}; +exports.mug = mug; \ No newline at end of file diff --git a/dist/icomoon/music.js b/dist/icomoon/music.js new file mode 100644 index 000000000..74154f73c --- /dev/null +++ b/dist/icomoon/music.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.music = void 0; +var music = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15 0h1v11.5c0 1.381-1.567 2.5-3.5 2.5s-3.5-1.119-3.5-2.5c0-1.381 1.567-2.5 3.5-2.5 0.979 0 1.865 0.287 2.5 0.751v-5.751l-8 1.778v7.722c0 1.381-1.567 2.5-3.5 2.5s-3.5-1.119-3.5-2.5c0-1.381 1.567-2.5 3.5-2.5 0.979 0 1.865 0.287 2.5 0.751v-9.751l9-2z" + } + }] +}; +exports.music = music; \ No newline at end of file diff --git a/dist/icomoon/neutral.js b/dist/icomoon/neutral.js new file mode 100644 index 000000000..7a8636d63 --- /dev/null +++ b/dist/icomoon/neutral.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.neutral = void 0; +var neutral = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5zM4 5c0 0.552 0.448 1 1 1s1-0.448 1-1-0.448-1-1-1-1 0.448-1 1zM10 5c0 0.552 0.448 1 1 1s1-0.448 1-1-0.448-1-1-1-1 0.448-1 1zM6 11h4v1h-4v-1z" + } + }] +}; +exports.neutral = neutral; \ No newline at end of file diff --git a/dist/icomoon/neutral2.js b/dist/icomoon/neutral2.js new file mode 100644 index 000000000..831093581 --- /dev/null +++ b/dist/icomoon/neutral2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.neutral2 = void 0; +var neutral2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8c4.418 0 8-3.582 8-8s-3.582-8-8-8zM10 12h-4v-1h4v1zM11 4c0.552 0 1 0.448 1 1s-0.448 1-1 1-1-0.448-1-1c0-0.552 0.448-1 1-1zM5 4c0.552 0 1 0.448 1 1s-0.448 1-1 1-1-0.448-1-1c0-0.552 0.448-1 1-1z" + } + }] +}; +exports.neutral2 = neutral2; \ No newline at end of file diff --git a/dist/icomoon/newTab.js b/dist/icomoon/newTab.js new file mode 100644 index 000000000..fb925b339 --- /dev/null +++ b/dist/icomoon/newTab.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.newTab = void 0; +var newTab = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M3 1v12h12v-12h-12zM14 12h-10v-10h10v10zM2 14v-10.5l-1-1v12.5h12.5l-1-1h-10.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5.5 4l2.5 2.5-3 3 1.5 1.5 3-3 2.5 2.5v-6.5z" + } + }] +}; +exports.newTab = newTab; \ No newline at end of file diff --git a/dist/icomoon/newspaper.js b/dist/icomoon/newspaper.js new file mode 100644 index 000000000..e6f1c0486 --- /dev/null +++ b/dist/icomoon/newspaper.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.newspaper = void 0; +var newspaper = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14 4v-2h-14v11c0 0.552 0.448 1 1 1h13.5c0.828 0 1.5-0.672 1.5-1.5v-8.5h-2zM13 13h-12v-10h12v10zM2 5h10v1h-10zM8 7h4v1h-4zM8 9h4v1h-4zM8 11h3v1h-3zM2 7h5v5h-5z" + } + }] +}; +exports.newspaper = newspaper; \ No newline at end of file diff --git a/dist/icomoon/next.js b/dist/icomoon/next.js new file mode 100644 index 000000000..3ed10da1a --- /dev/null +++ b/dist/icomoon/next.js @@ -0,0 +1,29 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.next = void 0; +var next = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c4.418 0 8 3.582 8 8s-3.582 8-8 8-8-3.582-8-8 3.582-8 8-8zM8 14.5c3.59 0 6.5-2.91 6.5-6.5s-2.91-6.5-6.5-6.5-6.5 2.91-6.5 6.5 2.91 6.5 6.5 6.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9 8l-4-3v6z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11 5h-2v6h2v-6z" + } + }] +}; +exports.next = next; \ No newline at end of file diff --git a/dist/icomoon/next2.js b/dist/icomoon/next2.js new file mode 100644 index 000000000..e3d6eb13d --- /dev/null +++ b/dist/icomoon/next2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.next2 = void 0; +var next2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12 2v12h-2v-5.5l-5 5v-11l5 5v-5.5z" + } + }] +}; +exports.next2 = next2; \ No newline at end of file diff --git a/dist/icomoon/notification.js b/dist/icomoon/notification.js new file mode 100644 index 000000000..26208a3ac --- /dev/null +++ b/dist/icomoon/notification.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.notification = void 0; +var notification = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 1.5c-1.736 0-3.369 0.676-4.596 1.904s-1.904 2.86-1.904 4.596c0 1.736 0.676 3.369 1.904 4.596s2.86 1.904 4.596 1.904c1.736 0 3.369-0.676 4.596-1.904s1.904-2.86 1.904-4.596c0-1.736-0.676-3.369-1.904-4.596s-2.86-1.904-4.596-1.904zM8 0v0c4.418 0 8 3.582 8 8s-3.582 8-8 8c-4.418 0-8-3.582-8-8s3.582-8 8-8zM7 11h2v2h-2zM7 3h2v6h-2z" + } + }] +}; +exports.notification = notification; \ No newline at end of file diff --git a/dist/icomoon/npm.js b/dist/icomoon/npm.js new file mode 100644 index 000000000..c88dce7fd --- /dev/null +++ b/dist/icomoon/npm.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.npm = void 0; +var npm = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 0v16h16v-16h-16zM13 13h-2v-8h-3v8h-5v-10h10v10z" + } + }] +}; +exports.npm = npm; \ No newline at end of file diff --git a/dist/icomoon/office.js b/dist/icomoon/office.js new file mode 100644 index 000000000..b0b7f76b7 --- /dev/null +++ b/dist/icomoon/office.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.office = void 0; +var office = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 16h8v-16h-8v16zM5 2h2v2h-2v-2zM5 6h2v2h-2v-2zM5 10h2v2h-2v-2zM1 2h2v2h-2v-2zM1 6h2v2h-2v-2zM1 10h2v2h-2v-2zM9 5h7v1h-7zM9 16h2v-4h3v4h2v-9h-7z" + } + }] +}; +exports.office = office; \ No newline at end of file diff --git a/dist/icomoon/omega.js b/dist/icomoon/omega.js new file mode 100644 index 000000000..27ff2db0e --- /dev/null +++ b/dist/icomoon/omega.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.omega = void 0; +var omega = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11 14h4l1-2v4h-6v-3.347c2.049-0.883 3.5-3.081 3.5-5.653 0-3.35-2.462-5.973-5.5-5.973s-5.5 2.622-5.5 5.973c0 2.572 1.451 4.77 3.5 5.653v3.347h-6v-4l1 2h4v-0.509c-2.932-1.038-5-3.553-5-6.491 0-3.866 3.582-7 8-7s8 3.134 8 7c0 2.938-2.068 5.452-5 6.491v0.509z" + } + }] +}; +exports.omega = omega; \ No newline at end of file diff --git a/dist/icomoon/onedrive.js b/dist/icomoon/onedrive.js new file mode 100644 index 000000000..91d4b3b0c --- /dev/null +++ b/dist/icomoon/onedrive.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.onedrive = void 0; +var onedrive = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5.482 12.944c-0.942-0.235-1.466-0.984-1.468-2.095-0-0.355 0.025-0.525 0.114-0.754 0.217-0.56 0.793-0.982 1.55-1.138 0.377-0.077 0.493-0.16 0.493-0.353 0-0.060 0.045-0.24 0.1-0.399 0.249-0.724 0.71-1.327 1.202-1.573 0.515-0.258 0.776-0.316 1.399-0.313 0.886 0.005 1.327 0.197 1.945 0.846l0.34 0.357 0.304-0.105c1.473-0.51 2.942 0.358 3.061 1.809l0.032 0.397 0.29 0.104c0.829 0.297 1.218 0.92 1.148 1.837-0.046 0.599-0.326 1.078-0.77 1.315l-0.209 0.112-4.638 0.009c-3.564 0.007-4.697-0.006-4.893-0.055v0zM1.613 12.281c-0.565-0.142-1.164-0.67-1.445-1.273-0.159-0.342-0.168-0.393-0.168-0.998 0-0.576 0.014-0.668 0.14-0.954 0.267-0.603 0.78-1.038 1.422-1.21 0.136-0.036 0.263-0.094 0.283-0.128s0.043-0.221 0.050-0.415c0.045-1.206 0.794-2.269 1.839-2.61 0.565-0.184 1.306-0.202 1.92 0.058 0.195 0.082 0.173 0.1 0.585-0.471 0.244-0.338 0.705-0.695 1.108-0.909 0.435-0.231 0.887-0.337 1.428-0.336 1.512 0.004 2.815 1.003 3.297 2.529 0.154 0.487 0.146 0.624-0.035 0.628-0.079 0.002-0.306 0.048-0.505 0.102l-0.361 0.099-0.329-0.348c-0.928-0.98-2.441-1.192-3.728-0.522-0.514 0.268-0.927 0.652-1.239 1.153-0.222 0.357-0.506 1.024-0.506 1.189 0 0.117-0.090 0.176-0.474 0.309-1.189 0.412-1.883 1.364-1.882 2.582 0 0.443 0.108 0.986 0.258 1.296 0.057 0.117 0.088 0.228 0.070 0.247-0.046 0.049-1.525 0.032-1.73-0.019v0z" + } + }] +}; +exports.onedrive = onedrive; \ No newline at end of file diff --git a/dist/icomoon/opera.js b/dist/icomoon/opera.js new file mode 100644 index 000000000..05d251dde --- /dev/null +++ b/dist/icomoon/opera.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.opera = void 0; +var opera = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16 8v0 0c0 2.369-1.031 4.5-2.669 5.963-2.053 1-3.966 0.3-4.597-0.137 2.016-0.441 3.537-2.878 3.537-5.825s-1.522-5.384-3.537-5.828c0.634-0.438 2.547-1.137 4.597-0.138 1.637 1.466 2.669 3.597 2.669 5.966v0 0z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5.366 3.491c-0.884 1.044-1.456 2.587-1.494 4.322 0 0.003 0 0.372 0 0.378 0.038 1.731 0.613 3.275 1.497 4.319 1.147 1.491 2.853 2.434 4.759 2.434 1.172 0 2.269-0.356 3.206-0.978-1.419 1.266-3.287 2.034-5.334 2.034-0.128 0-0.256-0.003-0.381-0.009-4.241-0.2-7.619-3.7-7.619-7.991 0-4.419 3.581-8 8-8 0.009 0 0.019 0 0.031 0 2.037 0.006 3.894 0.775 5.303 2.038-0.938-0.622-2.034-0.981-3.206-0.981-1.906 0-3.612 0.944-4.763 2.434z" + } + }] +}; +exports.opera = opera; \ No newline at end of file diff --git a/dist/icomoon/opt.js b/dist/icomoon/opt.js new file mode 100644 index 000000000..5b0a90e37 --- /dev/null +++ b/dist/icomoon/opt.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.opt = void 0; +var opt = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.5 13h-4c-0.198 0-0.377-0.116-0.457-0.297l-3.868-8.703h-4.675c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5h5c0.198 0 0.377 0.116 0.457 0.297l3.868 8.703h3.675c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.5 4h-5c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5h5c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5z" + } + }] +}; +exports.opt = opt; \ No newline at end of file diff --git a/dist/icomoon/pacman.js b/dist/icomoon/pacman.js new file mode 100644 index 000000000..42e886ee1 --- /dev/null +++ b/dist/icomoon/pacman.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pacman = void 0; +var pacman = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.074 2.794c-1.467-1.71-3.644-2.794-6.074-2.794-4.418 0-8 3.582-8 8s3.582 8 8 8c2.43 0 4.607-1.084 6.074-2.794l-5.074-5.206 5.074-5.206zM11 1.884c0.616 0 1.116 0.499 1.116 1.116s-0.499 1.116-1.116 1.116-1.116-0.499-1.116-1.116c0-0.616 0.499-1.116 1.116-1.116z" + } + }] +}; +exports.pacman = pacman; \ No newline at end of file diff --git a/dist/icomoon/pagebreak.js b/dist/icomoon/pagebreak.js new file mode 100644 index 000000000..d804fa566 --- /dev/null +++ b/dist/icomoon/pagebreak.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pagebreak = void 0; +var pagebreak = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4 6v-6h12v6h-1v-5h-10v5zM16 9v7h-12v-7h1v6h10v-6zM8 7h2v1h-2zM5 7h2v1h-2zM11 7h2v1h-2zM14 7h2v1h-2zM0 4.5l3 3-3 3z" + } + }] +}; +exports.pagebreak = pagebreak; \ No newline at end of file diff --git a/dist/icomoon/paintFormat.js b/dist/icomoon/paintFormat.js new file mode 100644 index 000000000..cd63cfe7c --- /dev/null +++ b/dist/icomoon/paintFormat.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.paintFormat = void 0; +var paintFormat = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16 9v-6h-3v-1c0-0.55-0.45-1-1-1h-11c-0.55 0-1 0.45-1 1v3c0 0.55 0.45 1 1 1h11c0.55 0 1-0.45 1-1v-1h2v4h-9v2h-0.5c-0.276 0-0.5 0.224-0.5 0.5v5c0 0.276 0.224 0.5 0.5 0.5h2c0.276 0 0.5-0.224 0.5-0.5v-5c0-0.276-0.224-0.5-0.5-0.5h-0.5v-1h9zM12 3h-11v-1h11v1z" + } + }] +}; +exports.paintFormat = paintFormat; \ No newline at end of file diff --git a/dist/icomoon/paragraphCenter.js b/dist/icomoon/paragraphCenter.js new file mode 100644 index 000000000..ca431839b --- /dev/null +++ b/dist/icomoon/paragraphCenter.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.paragraphCenter = void 0; +var paragraphCenter = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 1h16v2h-16zM3 4h10v2h-10zM3 10h10v2h-10zM0 7h16v2h-16zM0 13h16v2h-16z" + } + }] +}; +exports.paragraphCenter = paragraphCenter; \ No newline at end of file diff --git a/dist/icomoon/paragraphJustify.js b/dist/icomoon/paragraphJustify.js new file mode 100644 index 000000000..17d06f877 --- /dev/null +++ b/dist/icomoon/paragraphJustify.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.paragraphJustify = void 0; +var paragraphJustify = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 1h16v2h-16zM0 4h16v2h-16zM0 7h16v2h-16zM0 10h16v2h-16zM0 13h16v2h-16z" + } + }] +}; +exports.paragraphJustify = paragraphJustify; \ No newline at end of file diff --git a/dist/icomoon/paragraphLeft.js b/dist/icomoon/paragraphLeft.js new file mode 100644 index 000000000..8f9f83faa --- /dev/null +++ b/dist/icomoon/paragraphLeft.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.paragraphLeft = void 0; +var paragraphLeft = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 1h16v2h-16zM0 4h10v2h-10zM0 10h10v2h-10zM0 7h16v2h-16zM0 13h16v2h-16z" + } + }] +}; +exports.paragraphLeft = paragraphLeft; \ No newline at end of file diff --git a/dist/icomoon/paragraphRight.js b/dist/icomoon/paragraphRight.js new file mode 100644 index 000000000..395050e63 --- /dev/null +++ b/dist/icomoon/paragraphRight.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.paragraphRight = void 0; +var paragraphRight = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 1h16v2h-16zM6 4h10v2h-10zM6 10h10v2h-10zM0 7h16v2h-16zM0 13h16v2h-16z" + } + }] +}; +exports.paragraphRight = paragraphRight; \ No newline at end of file diff --git a/dist/icomoon/paste.js b/dist/icomoon/paste.js new file mode 100644 index 000000000..c1bdbb667 --- /dev/null +++ b/dist/icomoon/paste.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.paste = void 0; +var paste = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11 2h-2v-1c0-0.55-0.45-1-1-1h-2c-0.55 0-1 0.45-1 1v1h-2v2h8v-2zM8 2h-2v-0.998c0.001-0.001 0.001-0.001 0.002-0.002h1.996c0.001 0.001 0.001 0.001 0.002 0.002v0.998zM13 5v-2.5c0-0.275-0.225-0.5-0.5-0.5h-1v1h0.5v2h-3l-3 3v4h-4v-9h0.5v-1h-1c-0.275 0-0.5 0.225-0.5 0.5v10c0 0.275 0.225 0.5 0.5 0.5h4.5v3h10v-11h-3zM9 6.414v1.586h-1.586l1.586-1.586zM15 15h-8v-6h3v-3h5v9z" + } + }] +}; +exports.paste = paste; \ No newline at end of file diff --git a/dist/icomoon/pause.js b/dist/icomoon/pause.js new file mode 100644 index 000000000..a1904bc64 --- /dev/null +++ b/dist/icomoon/pause.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pause = void 0; +var pause = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM8 14.5c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5 6.5 2.91 6.5 6.5-2.91 6.5-6.5 6.5zM5 5h2v6h-2zM9 5h2v6h-2z" + } + }] +}; +exports.pause = pause; \ No newline at end of file diff --git a/dist/icomoon/pause2.js b/dist/icomoon/pause2.js new file mode 100644 index 000000000..c37e00ecd --- /dev/null +++ b/dist/icomoon/pause2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pause2 = void 0; +var pause2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M2 2h5v12h-5zM9 2h5v12h-5z" + } + }] +}; +exports.pause2 = pause2; \ No newline at end of file diff --git a/dist/icomoon/paypal.js b/dist/icomoon/paypal.js new file mode 100644 index 000000000..c63448e52 --- /dev/null +++ b/dist/icomoon/paypal.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.paypal = void 0; +var paypal = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.531 4.822c-0.747 3.316-3.053 5.066-6.688 5.066h-1.209l-0.841 5.338h-1.013l-0.053 0.344c-0.034 0.228 0.141 0.431 0.369 0.431h2.588c0.306 0 0.566-0.222 0.616-0.525l0.025-0.131 0.488-3.091 0.031-0.169c0.047-0.303 0.309-0.525 0.616-0.525h0.384c2.506 0 4.469-1.019 5.044-3.963 0.216-1.119 0.134-2.069-0.356-2.775z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12.984 1.206c-0.741-0.844-2.081-1.206-3.794-1.206h-4.972c-0.35 0-0.65 0.253-0.703 0.6l-2.072 13.131c-0.041 0.259 0.159 0.494 0.422 0.494h3.072l0.772-4.891-0.025 0.153c0.053-0.347 0.35-0.6 0.7-0.6h1.459c2.866 0 5.109-1.162 5.766-4.531 0.019-0.1 0.037-0.197 0.050-0.291 0.194-1.244 0-2.094-0.675-2.859z" + } + }] +}; +exports.paypal = paypal; \ No newline at end of file diff --git a/dist/icomoon/pen.js b/dist/icomoon/pen.js new file mode 100644 index 000000000..d430b60f5 --- /dev/null +++ b/dist/icomoon/pen.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pen = void 0; +var pen = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.909 4.561l-4.47-4.47c-0.146-0.146-0.338-0.113-0.427 0.073l-0.599 1.248 4.175 4.175 1.248-0.599c0.186-0.089 0.219-0.282 0.073-0.427z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9.615 2.115l-4.115 0.343c-0.273 0.034-0.501 0.092-0.58 0.449-0 0-0 0.001-0 0.001-1.116 5.36-4.92 10.591-4.92 10.591l0.896 0.896 4.25-4.25c-0.094-0.196-0.146-0.415-0.146-0.647 0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5-0.672 1.5-1.5 1.5c-0.232 0-0.451-0.053-0.647-0.146l-4.25 4.25 0.896 0.896c0 0 5.231-3.804 10.591-4.92 0-0 0.001-0 0.001-0 0.357-0.078 0.415-0.306 0.449-0.58l0.343-4.115-4.269-4.269z" + } + }] +}; +exports.pen = pen; \ No newline at end of file diff --git a/dist/icomoon/pencil.js b/dist/icomoon/pencil.js new file mode 100644 index 000000000..7d7a2ad90 --- /dev/null +++ b/dist/icomoon/pencil.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pencil = void 0; +var pencil = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.5 0c1.381 0 2.5 1.119 2.5 2.5 0 0.563-0.186 1.082-0.5 1.5l-1 1-3.5-3.5 1-1c0.418-0.314 0.937-0.5 1.5-0.5zM1 11.5l-1 4.5 4.5-1 9.25-9.25-3.5-3.5-9.25 9.25zM11.181 5.681l-7 7-0.862-0.862 7-7 0.862 0.862z" + } + }] +}; +exports.pencil = pencil; \ No newline at end of file diff --git a/dist/icomoon/pencil2.js b/dist/icomoon/pencil2.js new file mode 100644 index 000000000..9f27cd8c0 --- /dev/null +++ b/dist/icomoon/pencil2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pencil2 = void 0; +var pencil2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6 10l2-1 7-7-1-1-7 7-1 2zM4.52 13.548c-0.494-1.043-1.026-1.574-2.069-2.069l1.548-4.262 2-1.217 6-6h-3l-6 6-3 10 10-3 6-6v-3l-6 6-1.217 2z" + } + }] +}; +exports.pencil2 = pencil2; \ No newline at end of file diff --git a/dist/icomoon/phone.js b/dist/icomoon/phone.js new file mode 100644 index 000000000..1559dde93 --- /dev/null +++ b/dist/icomoon/phone.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.phone = void 0; +var phone = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11 10c-1 1-1 2-2 2s-2-1-3-2-2-2-2-3 1-1 2-2-2-4-3-4-3 3-3 3c0 2 2.055 6.055 4 8s6 4 8 4c0 0 3-2 3-3s-3-4-4-3z" + } + }] +}; +exports.phone = phone; \ No newline at end of file diff --git a/dist/icomoon/phoneHangUp.js b/dist/icomoon/phoneHangUp.js new file mode 100644 index 000000000..1fa2bc18a --- /dev/null +++ b/dist/icomoon/phoneHangUp.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.phoneHangUp = void 0; +var phoneHangUp = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.897 9c0.125 0.867 0.207 2.053-0.182 2.507-0.643 0.751-4.714 0.751-4.714-0.751 0-0.756 0.67-1.252 0.027-2.003-0.632-0.738-1.766-0.75-3.027-0.751s-2.394 0.012-3.027 0.751c-0.643 0.751 0.027 1.247 0.027 2.003 0 1.501-4.071 1.501-4.714 0.751-0.389-0.454-0.307-1.64-0.182-2.507 0.096-0.579 0.339-1.203 1.118-2 0-0 0-0 0-0 1.168-1.090 2.935-1.98 6.716-2v-0c0.021 0 0.042 0 0.063 0s0.041-0 0.063-0v0c3.781 0.019 5.548 0.91 6.716 2 0 0 0 0 0 0 0.778 0.797 1.022 1.421 1.118 2z" + } + }] +}; +exports.phoneHangUp = phoneHangUp; \ No newline at end of file diff --git a/dist/icomoon/pieChart.js b/dist/icomoon/pieChart.js new file mode 100644 index 000000000..4631c4311 --- /dev/null +++ b/dist/icomoon/pieChart.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pieChart = void 0; +var pieChart = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7 9v-7c-3.866 0-7 3.134-7 7s3.134 7 7 7 7-3.134 7-7c0-1.126-0.266-2.189-0.738-3.131l-6.262 3.131zM14.262 3.869c-1.149-2.294-3.521-3.869-6.262-3.869v7l6.262-3.131z" + } + }] +}; +exports.pieChart = pieChart; \ No newline at end of file diff --git a/dist/icomoon/pilcrow.js b/dist/icomoon/pilcrow.js new file mode 100644 index 000000000..50108f6c5 --- /dev/null +++ b/dist/icomoon/pilcrow.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pilcrow = void 0; +var pilcrow = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6 0h8v2h-2v14h-2v-14h-2v14h-2v-8c-2.209 0-4-1.791-4-4s1.791-4 4-4z" + } + }] +}; +exports.pilcrow = pilcrow; \ No newline at end of file diff --git a/dist/icomoon/pinterest.js b/dist/icomoon/pinterest.js new file mode 100644 index 000000000..4a5bdd35e --- /dev/null +++ b/dist/icomoon/pinterest.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pinterest = void 0; +var pinterest = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 1.069c-3.828 0-6.931 3.103-6.931 6.931 0 2.938 1.828 5.444 4.406 6.453-0.059-0.547-0.116-1.391 0.025-1.988 0.125-0.541 0.813-3.444 0.813-3.444s-0.206-0.416-0.206-1.028c0-0.963 0.559-1.684 1.253-1.684 0.591 0 0.878 0.444 0.878 0.975 0 0.594-0.378 1.484-0.575 2.306-0.166 0.691 0.344 1.253 1.025 1.253 1.231 0 2.178-1.3 2.178-3.175 0-1.659-1.194-2.819-2.894-2.819-1.972 0-3.128 1.478-3.128 3.009 0 0.597 0.228 1.234 0.516 1.581 0.056 0.069 0.066 0.128 0.047 0.2-0.053 0.219-0.169 0.691-0.194 0.787-0.031 0.128-0.1 0.153-0.231 0.094-0.866-0.403-1.406-1.669-1.406-2.684 0-2.188 1.587-4.194 4.578-4.194 2.403 0 4.272 1.712 4.272 4.003 0 2.388-1.506 4.313-3.597 4.313-0.703 0-1.362-0.366-1.588-0.797 0 0-0.347 1.322-0.431 1.647-0.156 0.603-0.578 1.356-0.862 1.816 0.65 0.2 1.337 0.309 2.053 0.309 3.828 0 6.931-3.103 6.931-6.931 0-3.831-3.103-6.934-6.931-6.934z" + } + }] +}; +exports.pinterest = pinterest; \ No newline at end of file diff --git a/dist/icomoon/pinterest2.js b/dist/icomoon/pinterest2.js new file mode 100644 index 000000000..74b8fc9aa --- /dev/null +++ b/dist/icomoon/pinterest2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pinterest2 = void 0; +var pinterest2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.412 0-8 3.587-8 8s3.587 8 8 8 8-3.588 8-8-3.588-8-8-8zM8 14.931c-0.716 0-1.403-0.109-2.053-0.309 0.281-0.459 0.706-1.216 0.862-1.816 0.084-0.325 0.431-1.647 0.431-1.647 0.225 0.431 0.888 0.797 1.587 0.797 2.091 0 3.597-1.922 3.597-4.313 0-2.291-1.869-4.003-4.272-4.003-2.991 0-4.578 2.009-4.578 4.194 0 1.016 0.541 2.281 1.406 2.684 0.131 0.063 0.2 0.034 0.231-0.094 0.022-0.097 0.141-0.566 0.194-0.787 0.016-0.069 0.009-0.131-0.047-0.2-0.287-0.347-0.516-0.988-0.516-1.581 0-1.528 1.156-3.009 3.128-3.009 1.703 0 2.894 1.159 2.894 2.819 0 1.875-0.947 3.175-2.178 3.175-0.681 0-1.191-0.563-1.025-1.253 0.197-0.825 0.575-1.713 0.575-2.306 0-0.531-0.284-0.975-0.878-0.975-0.697 0-1.253 0.719-1.253 1.684 0 0.612 0.206 1.028 0.206 1.028s-0.688 2.903-0.813 3.444c-0.141 0.6-0.084 1.441-0.025 1.988-2.578-1.006-4.406-3.512-4.406-6.45 0-3.828 3.103-6.931 6.931-6.931s6.931 3.103 6.931 6.931c0 3.828-3.103 6.931-6.931 6.931z" + } + }] +}; +exports.pinterest2 = pinterest2; \ No newline at end of file diff --git a/dist/icomoon/play.js b/dist/icomoon/play.js new file mode 100644 index 000000000..05656b1af --- /dev/null +++ b/dist/icomoon/play.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.play = void 0; +var play = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.331 2.502c-2.244-0.323-4.724-0.502-7.331-0.502s-5.087 0.179-7.331 0.502c-0.43 1.683-0.669 3.543-0.669 5.498s0.239 3.815 0.669 5.498c2.244 0.323 4.724 0.502 7.331 0.502s5.087-0.179 7.331-0.502c0.43-1.683 0.669-3.543 0.669-5.498s-0.239-3.815-0.669-5.498zM6 11v-6l5 3-5 3z" + } + }] +}; +exports.play = play; \ No newline at end of file diff --git a/dist/icomoon/play2.js b/dist/icomoon/play2.js new file mode 100644 index 000000000..c08767a83 --- /dev/null +++ b/dist/icomoon/play2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.play2 = void 0; +var play2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM8 14.5c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5 6.5 2.91 6.5 6.5-2.91 6.5-6.5 6.5zM6 4.5l6 3.5-6 3.5z" + } + }] +}; +exports.play2 = play2; \ No newline at end of file diff --git a/dist/icomoon/play3.js b/dist/icomoon/play3.js new file mode 100644 index 000000000..3398b340b --- /dev/null +++ b/dist/icomoon/play3.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.play3 = void 0; +var play3 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M3 2l10 6-10 6z" + } + }] +}; +exports.play3 = play3; \ No newline at end of file diff --git a/dist/icomoon/plus.js b/dist/icomoon/plus.js new file mode 100644 index 000000000..a97ed360c --- /dev/null +++ b/dist/icomoon/plus.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.plus = void 0; +var plus = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.5 6h-5.5v-5.5c0-0.276-0.224-0.5-0.5-0.5h-3c-0.276 0-0.5 0.224-0.5 0.5v5.5h-5.5c-0.276 0-0.5 0.224-0.5 0.5v3c0 0.276 0.224 0.5 0.5 0.5h5.5v5.5c0 0.276 0.224 0.5 0.5 0.5h3c0.276 0 0.5-0.224 0.5-0.5v-5.5h5.5c0.276 0 0.5-0.224 0.5-0.5v-3c0-0.276-0.224-0.5-0.5-0.5z" + } + }] +}; +exports.plus = plus; \ No newline at end of file diff --git a/dist/icomoon/podcast.js b/dist/icomoon/podcast.js new file mode 100644 index 000000000..f89eeba03 --- /dev/null +++ b/dist/icomoon/podcast.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.podcast = void 0; +var podcast = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16 8c0-4.418-3.582-8-8-8s-8 3.582-8 8c0 3.438 2.169 6.37 5.214 7.501l-0.214 0.499h6l-0.214-0.499c3.045-1.131 5.214-4.063 5.214-7.501zM7.606 9.919c-0.356-0.153-0.606-0.507-0.606-0.919 0-0.552 0.448-1 1-1s1 0.448 1 1c0 0.412-0.25 0.766-0.606 0.919l-0.394-0.919-0.394 0.919zM8.41 9.958c0.908-0.189 1.59-0.994 1.59-1.958 0-1.105-0.895-2-2-2s-2 0.895-2 2c0 0.964 0.682 1.768 1.59 1.957l-1.166 2.721c-1.425-0.612-2.424-2.028-2.424-3.677 0-2.209 1.791-4.188 4-4.188s4 1.978 4 4.188c0 1.649-0.999 3.066-2.424 3.677l-1.166-2.72zM10.757 15.433l-1.155-2.695c1.976-0.668 3.398-2.537 3.398-4.738 0-2.761-2.239-5-5-5s-5 2.239-5 5c0 2.201 1.422 4.070 3.398 4.738l-1.155 2.695c-2.494-1.070-4.24-3.547-4.24-6.433 0-3.865 3.133-7.185 6.997-7.185s6.997 3.32 6.997 7.185c0 2.886-1.747 5.363-4.24 6.433z" + } + }] +}; +exports.podcast = podcast; \ No newline at end of file diff --git a/dist/icomoon/pointDown.js b/dist/icomoon/pointDown.js new file mode 100644 index 000000000..d775f363e --- /dev/null +++ b/dist/icomoon/pointDown.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pointDown = void 0; +var pointDown = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15 6.5v2.5c0 0.827-0.673 1.5-1.5 1.5-0.267 0-0.518-0.070-0.736-0.193-0.267 0.417-0.734 0.693-1.264 0.693-0.384 0-0.734-0.145-1-0.383-0.266 0.238-0.616 0.383-1 0.383-0.175 0-0.344-0.030-0.5-0.086v3.586c0 0.827-0.673 1.5-1.5 1.5s-1.5-0.673-1.5-1.5v-6.167l-2.75 1.466c-0.227 0.131-0.486 0.201-0.75 0.201-0.827 0-1.5-0.673-1.5-1.5 0-0.412 0.164-0.796 0.461-1.082 0.004-0.004 0.008-0.007 0.012-0.011l3.737-3.407h-0.71c-0.276 0-0.5-0.224-0.5-0.5v-3c0-0.276 0.224-0.5 0.5-0.5h10c0.276 0 0.5 0.224 0.5 0.5v3c0 0.276-0.224 0.5-0.5 0.5h-0.691l1.138 2.276c0.035 0.069 0.053 0.146 0.053 0.224zM14 2.5c0-0.276-0.224-0.5-0.5-0.5s-0.5 0.224-0.5 0.5 0.224 0.5 0.5 0.5 0.5-0.224 0.5-0.5zM14 6.618l-1.309-2.618h-5.997l-4.544 4.143c-0.097 0.095-0.15 0.221-0.15 0.357 0 0.276 0.224 0.5 0.5 0.5 0.085 0 0.166-0.020 0.239-0.061 0.008-0.005 0.017-0.010 0.025-0.014l3.5-1.866c0.155-0.083 0.342-0.078 0.492 0.013s0.243 0.253 0.243 0.429v7c0 0.276 0.224 0.5 0.5 0.5s0.5-0.224 0.5-0.5v-5c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5c0 0.276 0.224 0.5 0.5 0.5s0.5-0.224 0.5-0.5c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5c0 0.276 0.224 0.5 0.5 0.5s0.5-0.224 0.5-0.5v-0.5c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5c0 0.276 0.224 0.5 0.5 0.5s0.5-0.224 0.5-0.5v-2.382z" + } + }] +}; +exports.pointDown = pointDown; \ No newline at end of file diff --git a/dist/icomoon/pointLeft.js b/dist/icomoon/pointLeft.js new file mode 100644 index 000000000..bb8943640 --- /dev/null +++ b/dist/icomoon/pointLeft.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pointLeft = void 0; +var pointLeft = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9.5 15h-2.5c-0.827 0-1.5-0.673-1.5-1.5 0-0.267 0.070-0.518 0.193-0.736-0.417-0.267-0.693-0.734-0.693-1.264 0-0.384 0.145-0.734 0.383-1-0.238-0.266-0.383-0.616-0.383-1 0-0.175 0.030-0.344 0.086-0.5h-3.586c-0.827 0-1.5-0.673-1.5-1.5s0.673-1.5 1.5-1.5h6.167l-1.466-2.75c-0.131-0.227-0.201-0.486-0.201-0.75 0-0.827 0.673-1.5 1.5-1.5 0.412 0 0.796 0.164 1.082 0.461 0.004 0.004 0.007 0.008 0.011 0.012l3.407 3.737v-0.71c0-0.276 0.224-0.5 0.5-0.5h3c0.276 0 0.5 0.224 0.5 0.5v10c0 0.276-0.224 0.5-0.5 0.5h-3c-0.276 0-0.5-0.224-0.5-0.5v-0.691l-2.276 1.138c-0.069 0.035-0.146 0.053-0.224 0.053zM13.5 14c0.276 0 0.5-0.224 0.5-0.5s-0.224-0.5-0.5-0.5-0.5 0.224-0.5 0.5 0.224 0.5 0.5 0.5zM9.382 14l2.618-1.309v-5.997l-4.143-4.544c-0.095-0.097-0.221-0.15-0.357-0.15-0.276 0-0.5 0.224-0.5 0.5 0 0.085 0.020 0.166 0.061 0.239 0.005 0.008 0.010 0.017 0.014 0.025l1.866 3.5c0.083 0.155 0.078 0.342-0.012 0.492s-0.253 0.243-0.429 0.243h-7c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5h5c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5h0.5c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5h2.382z" + } + }] +}; +exports.pointLeft = pointLeft; \ No newline at end of file diff --git a/dist/icomoon/pointRight.js b/dist/icomoon/pointRight.js new file mode 100644 index 000000000..26dbb6787 --- /dev/null +++ b/dist/icomoon/pointRight.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pointRight = void 0; +var pointRight = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6.5 15h2.5c0.827 0 1.5-0.673 1.5-1.5 0-0.267-0.070-0.518-0.193-0.736 0.417-0.267 0.693-0.734 0.693-1.264 0-0.384-0.145-0.734-0.383-1 0.238-0.266 0.383-0.616 0.383-1 0-0.175-0.030-0.344-0.086-0.5h3.586c0.827 0 1.5-0.673 1.5-1.5s-0.673-1.5-1.5-1.5h-6.167l1.466-2.75c0.131-0.227 0.201-0.486 0.201-0.75 0-0.827-0.673-1.5-1.5-1.5-0.412 0-0.796 0.164-1.082 0.461-0.004 0.004-0.007 0.008-0.011 0.012l-3.407 3.737v-0.71c0-0.276-0.224-0.5-0.5-0.5h-3c-0.276 0-0.5 0.224-0.5 0.5v10c0 0.276 0.224 0.5 0.5 0.5h3c0.276 0 0.5-0.224 0.5-0.5v-0.691l2.276 1.138c0.069 0.035 0.146 0.053 0.224 0.053zM2.5 14c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5 0.5 0.224 0.5 0.5-0.224 0.5-0.5 0.5zM6.618 14l-2.618-1.309v-5.997l4.143-4.544c0.095-0.097 0.221-0.15 0.357-0.15 0.276 0 0.5 0.224 0.5 0.5 0 0.085-0.020 0.166-0.061 0.239-0.005 0.008-0.010 0.017-0.014 0.025l-1.866 3.5c-0.083 0.155-0.078 0.342 0.013 0.492s0.253 0.243 0.429 0.243h7c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5h-5c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5h-0.5c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5h-2.382z" + } + }] +}; +exports.pointRight = pointRight; \ No newline at end of file diff --git a/dist/icomoon/pointUp.js b/dist/icomoon/pointUp.js new file mode 100644 index 000000000..9f0245392 --- /dev/null +++ b/dist/icomoon/pointUp.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pointUp = void 0; +var pointUp = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15 9.5v-2.5c0-0.827-0.673-1.5-1.5-1.5-0.267 0-0.518 0.070-0.736 0.193-0.267-0.417-0.734-0.693-1.264-0.693-0.384 0-0.734 0.145-1 0.383-0.266-0.238-0.616-0.383-1-0.383-0.175 0-0.344 0.030-0.5 0.086v-3.586c0-0.827-0.673-1.5-1.5-1.5s-1.5 0.673-1.5 1.5v6.167l-2.75-1.466c-0.227-0.131-0.486-0.201-0.75-0.201-0.827 0-1.5 0.673-1.5 1.5 0 0.412 0.164 0.796 0.461 1.082 0.004 0.004 0.008 0.007 0.012 0.011l3.737 3.407h-0.71c-0.276 0-0.5 0.224-0.5 0.5v3c0 0.276 0.224 0.5 0.5 0.5h10c0.276 0 0.5-0.224 0.5-0.5v-3c0-0.276-0.224-0.5-0.5-0.5h-0.691l1.138-2.276c0.035-0.069 0.053-0.146 0.053-0.224zM14 13.5c0 0.276-0.224 0.5-0.5 0.5s-0.5-0.224-0.5-0.5 0.224-0.5 0.5-0.5 0.5 0.224 0.5 0.5zM14 9.382l-1.309 2.618h-5.997l-4.544-4.143c-0.097-0.095-0.15-0.221-0.15-0.357 0-0.276 0.224-0.5 0.5-0.5 0.085 0 0.166 0.020 0.239 0.061 0.008 0.005 0.017 0.010 0.025 0.014l3.5 1.866c0.155 0.083 0.342 0.078 0.492-0.012s0.243-0.253 0.243-0.429v-7c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5v5c0 0.276 0.224 0.5 0.5 0.5s0.5-0.224 0.5-0.5c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5c0 0.276 0.224 0.5 0.5 0.5s0.5-0.224 0.5-0.5c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5v0.5c0 0.276 0.224 0.5 0.5 0.5s0.5-0.224 0.5-0.5c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5v2.382z" + } + }] +}; +exports.pointUp = pointUp; \ No newline at end of file diff --git a/dist/icomoon/power.js b/dist/icomoon/power.js new file mode 100644 index 000000000..9537c8928 --- /dev/null +++ b/dist/icomoon/power.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.power = void 0; +var power = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6 0l-6 8h6l-4 8 14-10h-8l6-6z" + } + }] +}; +exports.power = power; \ No newline at end of file diff --git a/dist/icomoon/powerCord.js b/dist/icomoon/powerCord.js new file mode 100644 index 000000000..cd92e49f7 --- /dev/null +++ b/dist/icomoon/powerCord.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.powerCord = void 0; +var powerCord = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16 4.414l-1.414-1.414-2.793 2.793-1.586-1.586 2.793-2.793-1.414-1.414-2.793 2.793-1.793-1.793-1.354 1.353 8 8 1.354-1.353-1.793-1.793 2.793-2.793z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12.407 10.528l-6.935-6.935c-1.497 1.795-3.196 4.57-2.022 6.957l-2.066 2.066c-0.486 0.486-0.486 1.282 0 1.768l0.232 0.232c0.486 0.486 1.282 0.486 1.768 0l2.066-2.066c2.387 1.174 5.161-0.524 6.957-2.022z" + } + }] +}; +exports.powerCord = powerCord; \ No newline at end of file diff --git a/dist/icomoon/previous.js b/dist/icomoon/previous.js new file mode 100644 index 000000000..f83654dda --- /dev/null +++ b/dist/icomoon/previous.js @@ -0,0 +1,29 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.previous = void 0; +var previous = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM8 14.5c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5 6.5 2.91 6.5 6.5-2.91 6.5-6.5 6.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7 8l4-3v6z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5 5h2v6h-2v-6z" + } + }] +}; +exports.previous = previous; \ No newline at end of file diff --git a/dist/icomoon/previous2.js b/dist/icomoon/previous2.js new file mode 100644 index 000000000..6202aec16 --- /dev/null +++ b/dist/icomoon/previous2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.previous2 = void 0; +var previous2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4 14v-12h2v5.5l5-5v11l-5-5v5.5z" + } + }] +}; +exports.previous2 = previous2; \ No newline at end of file diff --git a/dist/icomoon/priceTag.js b/dist/icomoon/priceTag.js new file mode 100644 index 000000000..f4726d71b --- /dev/null +++ b/dist/icomoon/priceTag.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.priceTag = void 0; +var priceTag = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.25 0h-6c-0.412 0-0.989 0.239-1.28 0.53l-7.439 7.439c-0.292 0.292-0.292 0.769 0 1.061l6.439 6.439c0.292 0.292 0.769 0.292 1.061 0l7.439-7.439c0.292-0.292 0.53-0.868 0.53-1.28v-6c0-0.412-0.338-0.75-0.75-0.75zM11.5 6c-0.828 0-1.5-0.672-1.5-1.5s0.672-1.5 1.5-1.5 1.5 0.672 1.5 1.5-0.672 1.5-1.5 1.5z" + } + }] +}; +exports.priceTag = priceTag; \ No newline at end of file diff --git a/dist/icomoon/priceTags.js b/dist/icomoon/priceTags.js new file mode 100644 index 000000000..4e363535b --- /dev/null +++ b/dist/icomoon/priceTags.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.priceTags = void 0; +var priceTags = { + "viewBox": "0 0 20 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M19.25 0h-6c-0.412 0-0.989 0.239-1.28 0.53l-7.439 7.439c-0.292 0.292-0.292 0.769 0 1.061l6.439 6.439c0.292 0.292 0.769 0.292 1.061 0l7.439-7.439c0.292-0.292 0.53-0.868 0.53-1.28v-6c0-0.412-0.337-0.75-0.75-0.75zM15.5 6c-0.828 0-1.5-0.672-1.5-1.5s0.672-1.5 1.5-1.5 1.5 0.672 1.5 1.5-0.672 1.5-1.5 1.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M2 8.5l8.5-8.5h-1.25c-0.412 0-0.989 0.239-1.28 0.53l-7.439 7.439c-0.292 0.292-0.292 0.769 0 1.061l6.439 6.439c0.292 0.292 0.769 0.292 1.061 0l0.47-0.47-6.5-6.5z" + } + }] +}; +exports.priceTags = priceTags; \ No newline at end of file diff --git a/dist/icomoon/printer.js b/dist/icomoon/printer.js new file mode 100644 index 000000000..54e4ef46a --- /dev/null +++ b/dist/icomoon/printer.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.printer = void 0; +var printer = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4 1h8v2h-8v-2z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15 4h-14c-0.55 0-1 0.45-1 1v5c0 0.55 0.45 1 1 1h3v4h8v-4h3c0.55 0 1-0.45 1-1v-5c0-0.55-0.45-1-1-1zM2 7c-0.552 0-1-0.448-1-1s0.448-1 1-1 1 0.448 1 1-0.448 1-1 1zM11 14h-6v-5h6v5z" + } + }] +}; +exports.printer = printer; \ No newline at end of file diff --git a/dist/icomoon/profile.js b/dist/icomoon/profile.js new file mode 100644 index 000000000..d0552f11d --- /dev/null +++ b/dist/icomoon/profile.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.profile = void 0; +var profile = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.5 0h-12c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h12c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM13 14h-11v-12h11v12zM4 9h7v1h-7zM4 11h7v1h-7zM5 4.5c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5zM7.5 6h-2c-0.825 0-1.5 0.45-1.5 1v1h5v-1c0-0.55-0.675-1-1.5-1z" + } + }] +}; +exports.profile = profile; \ No newline at end of file diff --git a/dist/icomoon/pushpin.js b/dist/icomoon/pushpin.js new file mode 100644 index 000000000..51a007f3d --- /dev/null +++ b/dist/icomoon/pushpin.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pushpin = void 0; +var pushpin = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8.5 0l-1.5 1.5 1.5 1.5-3.5 4h-3.5l2.75 2.75-4.25 5.635v0.615h0.615l5.635-4.25 2.75 2.75v-3.5l4-3.5 1.5 1.5 1.5-1.5-7.5-7.5zM7 8.5l-1-1 3.5-3.5 1 1-3.5 3.5z" + } + }] +}; +exports.pushpin = pushpin; \ No newline at end of file diff --git a/dist/icomoon/qrcode.js b/dist/icomoon/qrcode.js new file mode 100644 index 000000000..5944160e9 --- /dev/null +++ b/dist/icomoon/qrcode.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.qrcode = void 0; +var qrcode = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5 1h-4v4h4v-4zM6 0v0 6h-6v-6h6zM2 2h2v2h-2zM15 1h-4v4h4v-4zM16 0v0 6h-6v-6h6zM12 2h2v2h-2zM5 11h-4v4h4v-4zM6 10v0 6h-6v-6h6zM2 12h2v2h-2zM7 0h1v1h-1zM8 1h1v1h-1zM7 2h1v1h-1zM8 3h1v1h-1zM7 4h1v1h-1zM8 5h1v1h-1zM7 6h1v1h-1zM7 8h1v1h-1zM8 9h1v1h-1zM7 10h1v1h-1zM8 11h1v1h-1zM7 12h1v1h-1zM8 13h1v1h-1zM7 14h1v1h-1zM8 15h1v1h-1zM15 8h1v1h-1zM1 8h1v1h-1zM2 7h1v1h-1zM0 7h1v1h-1zM4 7h1v1h-1zM5 8h1v1h-1zM6 7h1v1h-1zM9 8h1v1h-1zM10 7h1v1h-1zM11 8h1v1h-1zM12 7h1v1h-1zM13 8h1v1h-1zM14 7h1v1h-1zM15 10h1v1h-1zM9 10h1v1h-1zM10 9h1v1h-1zM11 10h1v1h-1zM13 10h1v1h-1zM14 9h1v1h-1zM15 12h1v1h-1zM9 12h1v1h-1zM10 11h1v1h-1zM12 11h1v1h-1zM13 12h1v1h-1zM14 11h1v1h-1zM15 14h1v1h-1zM10 13h1v1h-1zM11 14h1v1h-1zM12 13h1v1h-1zM13 14h1v1h-1zM10 15h1v1h-1zM12 15h1v1h-1zM14 15h1v1h-1z" + } + }] +}; +exports.qrcode = qrcode; \ No newline at end of file diff --git a/dist/icomoon/question.js b/dist/icomoon/question.js new file mode 100644 index 000000000..f92bd44a8 --- /dev/null +++ b/dist/icomoon/question.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.question = void 0; +var question = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7 11h2v2h-2zM11 4c0.552 0 1 0.448 1 1v3l-3 2h-2v-1l3-2v-1h-5v-2h6zM8 1.5c-1.736 0-3.369 0.676-4.596 1.904s-1.904 2.86-1.904 4.596c0 1.736 0.676 3.369 1.904 4.596s2.86 1.904 4.596 1.904c1.736 0 3.369-0.676 4.596-1.904s1.904-2.86 1.904-4.596c0-1.736-0.676-3.369-1.904-4.596s-2.86-1.904-4.596-1.904zM8 0v0c4.418 0 8 3.582 8 8s-3.582 8-8 8c-4.418 0-8-3.582-8-8s3.582-8 8-8z" + } + }] +}; +exports.question = question; \ No newline at end of file diff --git a/dist/icomoon/quill.js b/dist/icomoon/quill.js new file mode 100644 index 000000000..ba6b710d3 --- /dev/null +++ b/dist/icomoon/quill.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.quill = void 0; +var quill = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 16c2-6 7.234-16 16-16-4.109 3.297-6 11-9 11s-3 0-3 0l-3 5h-1z" + } + }] +}; +exports.quill = quill; \ No newline at end of file diff --git a/dist/icomoon/quotesLeft.js b/dist/icomoon/quotesLeft.js new file mode 100644 index 000000000..d379c5fa8 --- /dev/null +++ b/dist/icomoon/quotesLeft.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.quotesLeft = void 0; +var quotesLeft = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M3.516 7c1.933 0 3.5 1.567 3.5 3.5s-1.567 3.5-3.5 3.5-3.5-1.567-3.5-3.5l-0.016-0.5c0-3.866 3.134-7 7-7v2c-1.336 0-2.591 0.52-3.536 1.464-0.182 0.182-0.348 0.375-0.497 0.578 0.179-0.028 0.362-0.043 0.548-0.043zM12.516 7c1.933 0 3.5 1.567 3.5 3.5s-1.567 3.5-3.5 3.5-3.5-1.567-3.5-3.5l-0.016-0.5c0-3.866 3.134-7 7-7v2c-1.336 0-2.591 0.52-3.536 1.464-0.182 0.182-0.348 0.375-0.497 0.578 0.179-0.028 0.362-0.043 0.549-0.043z" + } + }] +}; +exports.quotesLeft = quotesLeft; \ No newline at end of file diff --git a/dist/icomoon/quotesRight.js b/dist/icomoon/quotesRight.js new file mode 100644 index 000000000..3e898412c --- /dev/null +++ b/dist/icomoon/quotesRight.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.quotesRight = void 0; +var quotesRight = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12.5 10c-1.933 0-3.5-1.567-3.5-3.5s1.567-3.5 3.5-3.5 3.5 1.567 3.5 3.5l0.016 0.5c0 3.866-3.134 7-7 7v-2c1.336 0 2.591-0.52 3.536-1.464 0.182-0.182 0.348-0.375 0.497-0.578-0.179 0.028-0.362 0.043-0.549 0.043zM3.5 10c-1.933 0-3.5-1.567-3.5-3.5s1.567-3.5 3.5-3.5 3.5 1.567 3.5 3.5l0.016 0.5c0 3.866-3.134 7-7 7v-2c1.336 0 2.591-0.52 3.536-1.464 0.182-0.182 0.348-0.375 0.497-0.578-0.179 0.028-0.362 0.043-0.549 0.043z" + } + }] +}; +exports.quotesRight = quotesRight; \ No newline at end of file diff --git a/dist/icomoon/radioChecked.js b/dist/icomoon/radioChecked.js new file mode 100644 index 000000000..4d4082f10 --- /dev/null +++ b/dist/icomoon/radioChecked.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.radioChecked = void 0; +var radioChecked = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM8 14c-3.314 0-6-2.686-6-6s2.686-6 6-6c3.314 0 6 2.686 6 6s-2.686 6-6 6zM5 8c0-1.657 1.343-3 3-3s3 1.343 3 3c0 1.657-1.343 3-3 3s-3-1.343-3-3z" + } + }] +}; +exports.radioChecked = radioChecked; \ No newline at end of file diff --git a/dist/icomoon/radioChecked2.js b/dist/icomoon/radioChecked2.js new file mode 100644 index 000000000..a82f5b79c --- /dev/null +++ b/dist/icomoon/radioChecked2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.radioChecked2 = void 0; +var radioChecked2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM8 10c-1.105 0-2-0.895-2-2s0.895-2 2-2c1.105 0 2 0.895 2 2s-0.895 2-2 2z" + } + }] +}; +exports.radioChecked2 = radioChecked2; \ No newline at end of file diff --git a/dist/icomoon/radioUnchecked.js b/dist/icomoon/radioUnchecked.js new file mode 100644 index 000000000..4c0c1f4c5 --- /dev/null +++ b/dist/icomoon/radioUnchecked.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.radioUnchecked = void 0; +var radioUnchecked = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM8 14c-3.314 0-6-2.686-6-6s2.686-6 6-6c3.314 0 6 2.686 6 6s-2.686 6-6 6z" + } + }] +}; +exports.radioUnchecked = radioUnchecked; \ No newline at end of file diff --git a/dist/icomoon/reddit.js b/dist/icomoon/reddit.js new file mode 100644 index 000000000..a17cf1ada --- /dev/null +++ b/dist/icomoon/reddit.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.reddit = void 0; +var reddit = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4 10c0-0.552 0.448-1 1-1s1 0.448 1 1c0 0.552-0.448 1-1 1s-1-0.448-1-1zM10 10c0-0.552 0.448-1 1-1s1 0.448 1 1c0 0.552-0.448 1-1 1s-1-0.448-1-1zM10.049 12.137c0.258-0.203 0.631-0.159 0.834 0.099s0.159 0.631-0.099 0.834c-0.717 0.565-1.81 0.93-2.783 0.93s-2.066-0.365-2.784-0.93c-0.258-0.203-0.302-0.576-0.099-0.834s0.576-0.302 0.834-0.099c0.413 0.325 1.23 0.675 2.049 0.675s1.636-0.35 2.049-0.675zM16 8c0-1.105-0.895-2-2-2-0.752 0-1.406 0.415-1.748 1.028-1.028-0.562-2.28-0.926-3.645-1.010l1.193-2.68 2.284 0.659c0.206 0.583 0.761 1.002 1.415 1.002 0.828 0 1.5-0.672 1.5-1.5s-0.672-1.5-1.5-1.5c-0.571 0-1.068 0.319-1.321 0.789l-2.545-0.735c-0.285-0.082-0.587 0.058-0.707 0.329l-1.621 3.641c-1.33 0.094-2.551 0.453-3.557 1.004-0.342-0.613-0.996-1.028-1.748-1.028-1.105 0-2 0.895-2 2 0 0.817 0.491 1.52 1.193 1.83-0.126 0.375-0.193 0.767-0.193 1.17 0 2.761 3.134 5 7 5s7-2.239 7-5c0-0.403-0.067-0.795-0.193-1.17 0.703-0.31 1.193-1.013 1.193-1.83zM13.5 2.938c0.311 0 0.563 0.252 0.563 0.563s-0.252 0.563-0.563 0.563-0.563-0.252-0.563-0.563 0.252-0.563 0.563-0.563zM1 8c0-0.551 0.449-1 1-1 0.399 0 0.743 0.234 0.904 0.573-0.523 0.396-0.956 0.854-1.276 1.355-0.368-0.148-0.628-0.508-0.628-0.928zM8 14.813c-3.21 0-5.813-1.707-5.813-3.813s2.602-3.813 5.813-3.813c3.21 0 5.813 1.707 5.813 3.813s-2.602 3.813-5.813 3.813zM14.372 8.928c-0.32-0.502-0.753-0.959-1.276-1.355 0.161-0.338 0.505-0.573 0.904-0.573 0.551 0 1 0.449 1 1 0 0.42-0.26 0.78-0.628 0.928z" + } + }] +}; +exports.reddit = reddit; \ No newline at end of file diff --git a/dist/icomoon/redo.js b/dist/icomoon/redo.js new file mode 100644 index 000000000..e15ed554d --- /dev/null +++ b/dist/icomoon/redo.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.redo = void 0; +var redo = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 9c0 2.389 1.048 4.534 2.709 6l1.323-1.5c-1.246-1.099-2.031-2.708-2.031-4.5 0-3.314 2.686-6 6-6 1.657 0 3.157 0.672 4.243 1.757l-2.243 2.243h6v-6l-2.343 2.343c-1.448-1.448-3.448-2.343-5.657-2.343-4.418 0-8 3.582-8 8z" + } + }] +}; +exports.redo = redo; \ No newline at end of file diff --git a/dist/icomoon/redo2.js b/dist/icomoon/redo2.js new file mode 100644 index 000000000..73c011959 --- /dev/null +++ b/dist/icomoon/redo2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.redo2 = void 0; +var redo2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9 3.881v-3.881l6 6-6 6v-3.966c-6.98-0.164-6.681 4.747-4.904 7.966-4.386-4.741-3.455-12.337 4.904-12.119z" + } + }] +}; +exports.redo2 = redo2; \ No newline at end of file diff --git a/dist/icomoon/renren.js b/dist/icomoon/renren.js new file mode 100644 index 000000000..3cd72471a --- /dev/null +++ b/dist/icomoon/renren.js @@ -0,0 +1,29 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.renren = void 0; +var renren = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6.644 0.166c-3.769 0.634-6.644 3.913-6.644 7.862 0 1.963 0.713 3.759 1.887 5.15 2.791-1.35 4.744-4.406 4.756-7.966v-5.047z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9.356 0.166c3.769 0.634 6.644 3.913 6.644 7.862 0 1.963-0.713 3.759-1.887 5.15-2.791-1.35-4.744-4.406-4.756-7.966v-5.047z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7.972 10.041c-0.497 2.056-1.981 3.813-3.828 4.981 1.138 0.622 2.441 0.978 3.828 0.978s2.691-0.356 3.828-0.978c-1.847-1.169-3.331-2.925-3.828-4.981z" + } + }] +}; +exports.renren = renren; \ No newline at end of file diff --git a/dist/icomoon/reply.js b/dist/icomoon/reply.js new file mode 100644 index 000000000..e8ebc186e --- /dev/null +++ b/dist/icomoon/reply.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.reply = void 0; +var reply = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7 12.119v3.881l-6-6 6-6v3.966c6.98 0.164 6.681-4.747 4.904-7.966 4.386 4.741 3.455 12.337-4.904 12.119z" + } + }] +}; +exports.reply = reply; \ No newline at end of file diff --git a/dist/icomoon/road.js b/dist/icomoon/road.js new file mode 100644 index 000000000..415e2d0ab --- /dev/null +++ b/dist/icomoon/road.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.road = void 0; +var road = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11 16h5l-4-16h-3l0.5 4h-3l0.5-4h-3l-4 16h5l0.5-4h5l0.5 4zM5.75 10l0.5-4h3.5l0.5 4h-4.5z" + } + }] +}; +exports.road = road; \ No newline at end of file diff --git a/dist/icomoon/rocket.js b/dist/icomoon/rocket.js new file mode 100644 index 000000000..cceb34b8e --- /dev/null +++ b/dist/icomoon/rocket.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.rocket = void 0; +var rocket = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11 1l-5 5h-3l-3 4c0 0 3.178-0.885 5.032-0.47l-5.032 6.47 6.592-5.127c0.919 2.104-0.592 5.127-0.592 5.127l4-3v-3l5-5 1-5-5 1z" + } + }] +}; +exports.rocket = rocket; \ No newline at end of file diff --git a/dist/icomoon/rss.js b/dist/icomoon/rss.js new file mode 100644 index 000000000..5767f307a --- /dev/null +++ b/dist/icomoon/rss.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.rss = void 0; +var rss = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M2.13 11.733c-1.175 0-2.13 0.958-2.13 2.126 0 1.174 0.955 2.122 2.13 2.122 1.179 0 2.133-0.948 2.133-2.122-0-1.168-0.954-2.126-2.133-2.126zM0.002 5.436v3.067c1.997 0 3.874 0.781 5.288 2.196 1.412 1.411 2.192 3.297 2.192 5.302h3.080c-0-5.825-4.739-10.564-10.56-10.564zM0.006 0v3.068c7.122 0 12.918 5.802 12.918 12.932h3.076c0-8.82-7.176-16-15.994-16z" + } + }] +}; +exports.rss = rss; \ No newline at end of file diff --git a/dist/icomoon/rss2.js b/dist/icomoon/rss2.js new file mode 100644 index 000000000..79a4fbadb --- /dev/null +++ b/dist/icomoon/rss2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.rss2 = void 0; +var rss2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.5 0h-13c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM4.359 12.988c-0.75 0-1.359-0.603-1.359-1.353 0-0.744 0.609-1.356 1.359-1.356 0.753 0 1.359 0.613 1.359 1.356 0 0.75-0.609 1.353-1.359 1.353zM7.772 13c0-1.278-0.497-2.481-1.397-3.381-0.903-0.903-2.1-1.4-3.375-1.4v-1.956c3.713 0 6.738 3.022 6.738 6.737h-1.966zM11.244 13c0-4.547-3.697-8.25-8.241-8.25v-1.956c5.625 0 10.203 4.581 10.203 10.206h-1.963z" + } + }] +}; +exports.rss2 = rss2; \ No newline at end of file diff --git a/dist/icomoon/rtl.js b/dist/icomoon/rtl.js new file mode 100644 index 000000000..70dc26965 --- /dev/null +++ b/dist/icomoon/rtl.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.rtl = void 0; +var rtl = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4 0c-2.209 0-4 1.791-4 4s1.791 4 4 4v8h2v-14h2v14h2v-14h2v-2h-8zM16 3l-4 4 4 4z" + } + }] +}; +exports.rtl = rtl; \ No newline at end of file diff --git a/dist/icomoon/sad.js b/dist/icomoon/sad.js new file mode 100644 index 000000000..912f16d8e --- /dev/null +++ b/dist/icomoon/sad.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.sad = void 0; +var sad = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5zM4 5c0-0.552 0.448-1 1-1s1 0.448 1 1c0 0.552-0.448 1-1 1s-1-0.448-1-1zM10 5c0-0.552 0.448-1 1-1s1 0.448 1 1c0 0.552-0.448 1-1 1s-1-0.448-1-1zM4.998 12.199l-1.286-0.772c0.874-1.454 2.467-2.427 4.288-2.427s3.413 0.973 4.288 2.427l-1.286 0.772c-0.612-1.018-1.727-1.699-3.002-1.699s-2.389 0.681-3.002 1.699z" + } + }] +}; +exports.sad = sad; \ No newline at end of file diff --git a/dist/icomoon/sad2.js b/dist/icomoon/sad2.js new file mode 100644 index 000000000..31b3bd142 --- /dev/null +++ b/dist/icomoon/sad2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.sad2 = void 0; +var sad2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM11 4c0.552 0 1 0.448 1 1s-0.448 1-1 1-1-0.448-1-1 0.448-1 1-1zM5 4c0.552 0 1 0.448 1 1s-0.448 1-1 1-1-0.448-1-1 0.448-1 1-1zM11.002 12.199c-0.612-1.018-1.727-1.699-3.002-1.699s-2.389 0.681-3.002 1.699l-1.286-0.772c0.874-1.454 2.467-2.427 4.288-2.427s3.414 0.973 4.288 2.427l-1.286 0.772z" + } + }] +}; +exports.sad2 = sad2; \ No newline at end of file diff --git a/dist/icomoon/safari.js b/dist/icomoon/safari.js new file mode 100644 index 000000000..855772488 --- /dev/null +++ b/dist/icomoon/safari.js @@ -0,0 +1,209 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.safari = void 0; +var safari = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.419 0-8 3.581-8 8s3.581 8 8 8 8-3.581 8-8-3.581-8-8-8zM14.975 7.388l-0.016-0.166c0.003 0.056 0.009 0.109 0.016 0.166zM13.881 4.2l-0.113-0.169c0.037 0.056 0.075 0.112 0.113 0.169zM13.447 3.603l-0.069-0.084c0.025 0.028 0.047 0.056 0.069 0.084zM12.478 2.619l-0.084-0.069c0.031 0.025 0.056 0.047 0.084 0.069zM11.969 2.231l-0.169-0.112c0.056 0.038 0.113 0.075 0.169 0.112zM8.778 1.044l-0.169-0.016c0.056 0.003 0.113 0.009 0.169 0.016zM7.388 1.025l-0.169 0.016c0.056-0.003 0.112-0.009 0.169-0.016zM4.2 2.119l-0.169 0.112c0.056-0.038 0.112-0.075 0.169-0.112zM3.603 2.553l-0.081 0.066c0.028-0.022 0.053-0.044 0.081-0.066zM2.619 3.522l-0.069 0.084c0.025-0.028 0.047-0.056 0.069-0.084zM2.231 4.031l-0.112 0.169c0.038-0.056 0.075-0.112 0.112-0.169zM1.044 7.222l-0.016 0.169c0.003-0.056 0.009-0.112 0.016-0.169zM1.025 8.613l0.016 0.169c-0.003-0.056-0.009-0.113-0.016-0.169zM2.119 11.797l0.112 0.169c-0.038-0.053-0.075-0.109-0.112-0.169zM2.25 11.994l1.247-0.834-0.138-0.209-1.247 0.834c-0.566-0.878-0.938-1.887-1.063-2.975l0.747-0.075-0.025-0.25-0.747 0.075c-0.012-0.144-0.019-0.291-0.022-0.438h1.5v-0.25h-1.5c0.003-0.147 0.009-0.291 0.022-0.438l0.747 0.072 0.025-0.25-0.747-0.072c0.125-1.088 0.5-2.097 1.066-2.975l1.247 0.834 0.138-0.209-1.25-0.828c0.084-0.119 0.169-0.237 0.259-0.35l0.578 0.475 0.159-0.194-0.578-0.475c0.094-0.112 0.194-0.219 0.294-0.325l1.059 1.059 0.178-0.178-1.059-1.059c0.106-0.1 0.212-0.2 0.322-0.294l0.475 0.581 0.194-0.159-0.475-0.578c0.116-0.091 0.231-0.178 0.35-0.263l0.834 1.247 0.209-0.138-0.834-1.247c0.878-0.566 1.888-0.938 2.975-1.063l0.075 0.747 0.25-0.025-0.075-0.747c0.144-0.012 0.291-0.019 0.438-0.022v1.5h0.25v-1.5c0.147 0.003 0.291 0.009 0.438 0.022l-0.072 0.747 0.25 0.025 0.072-0.747c1.088 0.125 2.097 0.5 2.975 1.066l-0.834 1.247 0.209 0.138 0.834-1.247c0.119 0.084 0.238 0.169 0.35 0.259l-0.475 0.578 0.194 0.159 0.475-0.578c0.113 0.094 0.219 0.194 0.325 0.294l-0.4 0.391-5.469 3.647-3.647 5.469-0.391 0.391c-0.1-0.106-0.2-0.213-0.294-0.322l0.578-0.475-0.159-0.194-0.578 0.475c-0.091-0.113-0.175-0.231-0.259-0.35zM2.619 12.478c-0.022-0.028-0.044-0.053-0.066-0.081l0.066 0.081zM3.522 13.381l0.081 0.066c-0.028-0.022-0.053-0.044-0.081-0.066zM4.031 13.766l0.169 0.113c-0.056-0.034-0.112-0.072-0.169-0.113zM7.222 14.956l0.169 0.016c-0.056-0.003-0.112-0.009-0.169-0.016zM8.613 14.975l0.166-0.016c-0.056 0.003-0.109 0.009-0.166 0.016zM11.8 13.881l0.169-0.113c-0.056 0.037-0.113 0.075-0.169 0.113zM12.397 13.447l0.084-0.069c-0.028 0.025-0.056 0.047-0.084 0.069zM12.944 12.956l0.012-0.012c-0.003 0.003-0.009 0.009-0.012 0.012zM13.381 12.478l0.069-0.084c-0.025 0.028-0.047 0.056-0.069 0.084zM13.491 12.344l-0.578-0.475-0.159 0.194 0.578 0.475c-0.094 0.113-0.194 0.219-0.294 0.325l-1.059-1.059-0.178 0.178 1.059 1.059c-0.106 0.1-0.213 0.2-0.322 0.294l-0.475-0.581-0.194 0.159 0.475 0.578c-0.116 0.091-0.231 0.178-0.35 0.262l-0.834-1.247-0.209 0.137 0.834 1.247c-0.878 0.566-1.887 0.938-2.975 1.063l-0.075-0.747-0.25 0.025 0.075 0.747c-0.144 0.012-0.291 0.019-0.438 0.022v-1.5h-0.25v1.5c-0.147-0.003-0.291-0.009-0.438-0.022l0.072-0.747-0.25-0.025-0.072 0.747c-1.088-0.125-2.097-0.5-2.975-1.066l0.834-1.247-0.209-0.137-0.828 1.247c-0.119-0.084-0.237-0.169-0.35-0.259l0.475-0.578-0.194-0.159-0.475 0.578c-0.112-0.094-0.219-0.194-0.325-0.294l0.394-0.391 5.469-3.647 3.647-5.469 0.391-0.391c0.1 0.106 0.2 0.212 0.294 0.322l-0.578 0.475 0.159 0.194 0.578-0.475c0.091 0.116 0.178 0.231 0.262 0.35l-1.247 0.834 0.137 0.209 1.247-0.834c0.566 0.878 0.938 1.888 1.063 2.975l-0.747 0.075 0.025 0.25 0.747-0.075c0.012 0.144 0.019 0.291 0.022 0.438h-1.5v0.25h1.5c-0.003 0.147-0.009 0.291-0.022 0.438l-0.747-0.072-0.025 0.25 0.747 0.072c-0.125 1.088-0.5 2.097-1.066 2.975l-1.247-0.834-0.137 0.209 1.247 0.834c-0.081 0.113-0.169 0.228-0.259 0.344zM14.975 8.609c-0.006 0.056-0.009 0.113-0.016 0.169l0.016-0.169zM13.881 11.8c-0.037 0.056-0.075 0.113-0.113 0.169l0.113-0.169z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6.758 1.111l0.293 1.471-0.245 0.049-0.293-1.471 0.245-0.049z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9.245 14.89l-0.293-1.471 0.245-0.049 0.293 1.471-0.245 0.049z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6.088 1.264l0.218 0.718-0.239 0.073-0.218-0.718 0.239-0.073z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9.913 14.733l-0.218-0.718 0.239-0.073 0.218 0.718-0.239 0.073z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5.438 1.486l0.574 1.386-0.231 0.096-0.574-1.386 0.231-0.096z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M10.564 14.515l-0.574-1.386 0.231-0.096 0.574 1.386-0.231 0.096z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4.588 1.885l0.22-0.118 0.354 0.661-0.22 0.118-0.354-0.661z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.408 14.114l-0.22 0.118-0.354-0.661 0.22-0.118 0.354 0.661z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M1.884 4.591l0.662 0.353-0.118 0.221-0.661-0.353 0.118-0.221z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.113 11.409l-0.662-0.353 0.118-0.22 0.662 0.353-0.118 0.22z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M2.872 6.010l-1.386-0.574 0.096-0.231 1.386 0.574-0.096 0.231z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.13 9.989l1.386 0.574-0.096 0.231-1.386-0.574 0.096-0.231z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M1.337 5.85l0.718 0.218-0.073 0.239-0.718-0.218 0.073-0.239z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.661 10.151l-0.718-0.218 0.073-0.239 0.718 0.218-0.073 0.239z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M1.157 6.512l1.471 0.293-0.049 0.245-1.471-0.293 0.049-0.245z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.84 9.488l-1.471-0.293 0.049-0.245 1.471 0.293-0.049 0.245z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M1.109 9.243l1.471-0.293 0.049 0.245-1.471 0.293-0.049-0.245z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.888 6.757l-1.471 0.293-0.049-0.245 1.471-0.293 0.049 0.245z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M1.265 9.914l0.718-0.218 0.073 0.239-0.718 0.218-0.073-0.239z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.734 6.089l-0.718 0.218-0.073-0.239 0.718-0.218 0.073 0.239z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M1.58 10.796l-0.096-0.231 1.386-0.574 0.096 0.231-1.386 0.574z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.419 5.207l0.096 0.231-1.386 0.574-0.096-0.231 1.386-0.574z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M1.888 11.41l-0.118-0.22 0.661-0.354 0.118 0.22-0.661 0.354z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.116 4.59l0.118 0.22-0.661 0.354-0.118-0.22 0.661-0.354z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4.811 14.232l-0.22-0.118 0.354-0.661 0.22 0.118-0.354 0.661z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.189 1.767l0.22 0.118-0.353 0.661-0.22-0.118 0.353-0.661z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5.207 14.419l0.574-1.386 0.231 0.096-0.574 1.386-0.231-0.096z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M10.795 1.58l-0.574 1.386-0.231-0.096 0.574-1.386 0.231 0.096z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6.088 14.735l-0.239-0.073 0.218-0.718 0.239 0.073-0.218 0.718z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9.912 1.264l0.239 0.073-0.218 0.718-0.239-0.073 0.218-0.718z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6.757 14.888l-0.245-0.049 0.293-1.471 0.245 0.049-0.293 1.471z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9.243 1.109l0.245 0.049-0.293 1.471-0.245-0.049 0.293-1.471z" + } + }] +}; +exports.safari = safari; \ No newline at end of file diff --git a/dist/icomoon/scissors.js b/dist/icomoon/scissors.js new file mode 100644 index 000000000..258b1f47a --- /dev/null +++ b/dist/icomoon/scissors.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.scissors = void 0; +var scissors = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.279 10.62c-1.042-1.628-2.829-2.345-3.992-1.601-0.1 0.064-0.193 0.138-0.277 0.218l-1.241-1.942 2.867-4.5c0.235-0.433 0.321-0.949 0.207-1.468-0.109-0.496-0.383-0.913-0.752-1.207l-0.192-0.122-3.398 5.314-3.398-5.314-0.192 0.122c-0.369 0.294-0.643 0.711-0.752 1.207-0.114 0.519-0.027 1.035 0.207 1.468l2.867 4.5-1.241 1.942c-0.085-0.081-0.177-0.154-0.277-0.218-1.163-0.744-2.95-0.028-3.992 1.601s-0.944 3.551 0.219 4.296c1.163 0.744 2.95 0.028 3.992-1.601l2.567-4.029 2.567 4.029c1.042 1.628 2.829 2.345 3.992 1.601s1.261-2.667 0.219-4.296zM3.67 12.507c-0.469 0.733-1.071 1.089-1.478 1.179-0 0-0 0-0 0-0.133 0.029-0.317 0.047-0.443-0.033-0.139-0.089-0.231-0.324-0.247-0.629-0.025-0.494 0.151-1.076 0.483-1.594 0.469-0.733 1.071-1.089 1.478-1.179 0.133-0.029 0.317-0.047 0.443 0.033 0.139 0.089 0.231 0.324 0.247 0.629 0.025 0.495-0.151 1.076-0.483 1.594zM7.5 8c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5 0.5 0.224 0.5 0.5-0.224 0.5-0.5 0.5zM13.498 13.023c-0.016 0.305-0.108 0.54-0.247 0.629-0.125 0.080-0.31 0.062-0.443 0.033 0 0 0 0-0 0-0.407-0.089-1.009-0.446-1.478-1.179-0.332-0.519-0.508-1.1-0.483-1.594 0.016-0.305 0.108-0.54 0.247-0.629 0.125-0.080 0.31-0.062 0.443-0.033 0.407 0.089 1.009 0.446 1.478 1.179 0.332 0.519 0.508 1.1 0.483 1.594z" + } + }] +}; +exports.scissors = scissors; \ No newline at end of file diff --git a/dist/icomoon/search.js b/dist/icomoon/search.js new file mode 100644 index 000000000..fa98dd216 --- /dev/null +++ b/dist/icomoon/search.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.search = void 0; +var search = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.504 13.616l-3.79-3.223c-0.392-0.353-0.811-0.514-1.149-0.499 0.895-1.048 1.435-2.407 1.435-3.893 0-3.314-2.686-6-6-6s-6 2.686-6 6 2.686 6 6 6c1.486 0 2.845-0.54 3.893-1.435-0.016 0.338 0.146 0.757 0.499 1.149l3.223 3.79c0.552 0.613 1.453 0.665 2.003 0.115s0.498-1.452-0.115-2.003zM6 10c-2.209 0-4-1.791-4-4s1.791-4 4-4 4 1.791 4 4-1.791 4-4 4z" + } + }] +}; +exports.search = search; \ No newline at end of file diff --git a/dist/icomoon/section.js b/dist/icomoon/section.js new file mode 100644 index 000000000..2d7af0046 --- /dev/null +++ b/dist/icomoon/section.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.section = void 0; +var section = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7.749 16c-0.771 0-1.424-0.225-1.939-0.669-0.519-0.447-0.782-0.969-0.782-1.552 0-0.283 0.103-0.527 0.307-0.726 0.207-0.202 0.465-0.309 0.748-0.309 0.281 0 0.534 0.1 0.732 0.29 0.195 0.187 0.294 0.435 0.294 0.736 0 0.177-0.029 0.372-0.086 0.58-0.056 0.206-0.068 0.312-0.068 0.364 0 0.058 0.014 0.126 0.121 0.199 0.199 0.138 0.439 0.204 0.732 0.204 0.353 0 0.667-0.123 0.962-0.375 0.29-0.249 0.431-0.505 0.431-0.782 0-0.308-0.082-0.575-0.252-0.816-0.287-0.402-0.826-0.874-1.603-1.401-1.248-0.835-2.079-1.559-2.54-2.211-0.358-0.511-0.539-1.061-0.539-1.636 0-0.579 0.19-1.155 0.564-1.713 0.32-0.477 0.794-0.908 1.41-1.283-0.33-0.355-0.577-0.689-0.736-0.995-0.201-0.387-0.303-0.787-0.303-1.189 0-0.747 0.295-1.393 0.878-1.92s1.31-0.795 2.161-0.795c0.783 0 1.441 0.22 1.956 0.654 0.521 0.439 0.785 0.952 0.785 1.524 0 0.292-0.109 0.553-0.324 0.776l-0.004 0.004c-0.125 0.124-0.353 0.271-0.735 0.271-0.299 0-0.561-0.098-0.758-0.283-0.196-0.184-0.296-0.405-0.296-0.656 0-0.108 0.027-0.272 0.084-0.515 0.028-0.115 0.042-0.221 0.042-0.316 0-0.162-0.058-0.285-0.183-0.39-0.129-0.108-0.314-0.161-0.565-0.161-0.389 0-0.708 0.118-0.975 0.361s-0.399 0.533-0.399 0.883c0 0.315 0.071 0.574 0.212 0.771 0.267 0.374 0.731 0.778 1.378 1.201 1.315 0.853 2.233 1.636 2.727 2.325 0.365 0.518 0.549 1.068 0.549 1.637 0 0.572-0.186 1.148-0.552 1.714-0.316 0.487-0.793 0.926-1.42 1.308 0.347 0.367 0.591 0.688 0.743 0.977 0.189 0.359 0.284 0.751 0.284 1.165 0 0.776-0.296 1.435-0.879 1.96s-1.31 0.79-2.161 0.79zM6.975 5.568c-0.753 0.452-1.12 0.972-1.12 1.583 0 0.356 0.102 0.674 0.31 0.973 0.311 0.436 0.926 0.97 1.825 1.583 0.381 0.259 0.724 0.511 1.025 0.751 0.767-0.461 1.14-0.974 1.14-1.565 0-0.322-0.127-0.668-0.378-1.030-0.263-0.378-0.826-0.872-1.674-1.467-0.443-0.306-0.821-0.583-1.128-0.827z" + } + }] +}; +exports.section = section; \ No newline at end of file diff --git a/dist/icomoon/share.js b/dist/icomoon/share.js new file mode 100644 index 000000000..27dedd77b --- /dev/null +++ b/dist/icomoon/share.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.share = void 0; +var share = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4 10c0 0 0.919-3 6-3v3l6-4-6-4v3c-4 0-6 2.495-6 5zM11 12h-9v-6h1.967c0.158-0.186 0.327-0.365 0.508-0.534 0.687-0.644 1.509-1.135 2.439-1.466h-6.914v10h13v-4.197l-2 1.333v0.864z" + } + }] +}; +exports.share = share; \ No newline at end of file diff --git a/dist/icomoon/share2.js b/dist/icomoon/share2.js new file mode 100644 index 000000000..297cbc2a5 --- /dev/null +++ b/dist/icomoon/share2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.share2 = void 0; +var share2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.5 11c-0.706 0-1.342 0.293-1.797 0.763l-6.734-3.367c0.021-0.129 0.032-0.261 0.032-0.396s-0.011-0.267-0.032-0.396l6.734-3.367c0.455 0.47 1.091 0.763 1.797 0.763 1.381 0 2.5-1.119 2.5-2.5s-1.119-2.5-2.5-2.5-2.5 1.119-2.5 2.5c0 0.135 0.011 0.267 0.031 0.396l-6.734 3.367c-0.455-0.47-1.091-0.763-1.797-0.763-1.381 0-2.5 1.119-2.5 2.5s1.119 2.5 2.5 2.5c0.706 0 1.343-0.293 1.797-0.763l6.734 3.367c-0.021 0.129-0.031 0.261-0.031 0.396 0 1.381 1.119 2.5 2.5 2.5s2.5-1.119 2.5-2.5c0-1.381-1.119-2.5-2.5-2.5z" + } + }] +}; +exports.share2 = share2; \ No newline at end of file diff --git a/dist/icomoon/shield.js b/dist/icomoon/shield.js new file mode 100644 index 000000000..4b95ed50d --- /dev/null +++ b/dist/icomoon/shield.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.shield = void 0; +var shield = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15 0l-7 2-7-2c0 0-0.070 0.808 0 2l7 2.189 7-2.189c0.070-1.192 0-2 0-2zM1.128 3.049c0.375 3.917 1.773 10.504 6.872 12.951 5.099-2.448 6.497-9.034 6.872-12.951l-6.872 2.584-6.872-2.584z" + } + }] +}; +exports.shield = shield; \ No newline at end of file diff --git a/dist/icomoon/shift.js b/dist/icomoon/shift.js new file mode 100644 index 000000000..5ecd01797 --- /dev/null +++ b/dist/icomoon/shift.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.shift = void 0; +var shift = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M10.5 14h-5c-0.276 0-0.5-0.224-0.5-0.5v-5.5h-2c-0.202 0-0.385-0.122-0.462-0.309s-0.035-0.402 0.108-0.545l5-5c0.195-0.195 0.512-0.195 0.707 0l5 5c0.143 0.143 0.186 0.358 0.108 0.545s-0.26 0.309-0.462 0.309h-2v5.5c0 0.276-0.224 0.5-0.5 0.5zM6 13h4v-5.5c0-0.276 0.224-0.5 0.5-0.5h1.293l-3.793-3.793-3.793 3.793h1.293c0.276 0 0.5 0.224 0.5 0.5v5.5z" + } + }] +}; +exports.shift = shift; \ No newline at end of file diff --git a/dist/icomoon/shocked.js b/dist/icomoon/shocked.js new file mode 100644 index 000000000..9c8d6cea9 --- /dev/null +++ b/dist/icomoon/shocked.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.shocked = void 0; +var shocked = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5zM6 11c0-1.105 0.895-2 2-2s2 0.895 2 2c0 1.105-0.895 2-2 2s-2-0.895-2-2zM10 5.5c0-0.828 0.448-1.5 1-1.5s1 0.672 1 1.5c0 0.828-0.448 1.5-1 1.5s-1-0.672-1-1.5zM4 5.5c0-0.828 0.448-1.5 1-1.5s1 0.672 1 1.5c0 0.828-0.448 1.5-1 1.5s-1-0.672-1-1.5z" + } + }] +}; +exports.shocked = shocked; \ No newline at end of file diff --git a/dist/icomoon/shocked2.js b/dist/icomoon/shocked2.js new file mode 100644 index 000000000..c454bd727 --- /dev/null +++ b/dist/icomoon/shocked2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.shocked2 = void 0; +var shocked2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM5 7c-0.552 0-1-0.672-1-1.5s0.448-1.5 1-1.5 1 0.672 1 1.5-0.448 1.5-1 1.5zM8 13c-1.105 0-2-0.895-2-2s0.895-2 2-2c1.105 0 2 0.895 2 2s-0.895 2-2 2zM11 7c-0.552 0-1-0.672-1-1.5s0.448-1.5 1-1.5 1 0.672 1 1.5-0.448 1.5-1 1.5z" + } + }] +}; +exports.shocked2 = shocked2; \ No newline at end of file diff --git a/dist/icomoon/shrink.js b/dist/icomoon/shrink.js new file mode 100644 index 000000000..a87df44ee --- /dev/null +++ b/dist/icomoon/shrink.js @@ -0,0 +1,35 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.shrink = void 0; +var shrink = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9 7h6.5l-2.5-2.5 3-3-1.5-1.5-3 3-2.5-2.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9 9v6.5l2.5-2.5 3 3 1.5-1.5-3-3 2.5-2.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7 9h-6.5l2.5 2.5-3 3 1.5 1.5 3-3 2.5 2.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7 7v-6.5l-2.5 2.5-3-3-1.5 1.5 3 3-2.5 2.5z" + } + }] +}; +exports.shrink = shrink; \ No newline at end of file diff --git a/dist/icomoon/shrink2.js b/dist/icomoon/shrink2.js new file mode 100644 index 000000000..8211b0b42 --- /dev/null +++ b/dist/icomoon/shrink2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.shrink2 = void 0; +var shrink2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7 9v6.5l-2.5-2.5-3 3-1.5-1.5 3-3-2.5-2.5zM16 1.5l-3 3 2.5 2.5h-6.5v-6.5l2.5 2.5 3-3z" + } + }] +}; +exports.shrink2 = shrink2; \ No newline at end of file diff --git a/dist/icomoon/shuffle.js b/dist/icomoon/shuffle.js new file mode 100644 index 000000000..214b1410a --- /dev/null +++ b/dist/icomoon/shuffle.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.shuffle = void 0; +var shuffle = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12 11h-1.586l-2.5-2.5 2.5-2.5h1.586v2.5l3.5-3.5-3.5-3.5v2.5h-2c-0.265 0-0.52 0.105-0.707 0.293l-2.793 2.793-2.793-2.793c-0.188-0.188-0.442-0.293-0.707-0.293h-3v2h2.586l2.5 2.5-2.5 2.5h-2.586v2h3c0.265 0 0.52-0.105 0.707-0.293l2.793-2.793 2.793 2.793c0.188 0.188 0.442 0.293 0.707 0.293h2v2.5l3.5-3.5-3.5-3.5v2.5z" + } + }] +}; +exports.shuffle = shuffle; \ No newline at end of file diff --git a/dist/icomoon/sigma.js b/dist/icomoon/sigma.js new file mode 100644 index 000000000..5d7926918 --- /dev/null +++ b/dist/icomoon/sigma.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.sigma = void 0; +var sigma = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.713 11.48l0.694-1.48h0.594l-1 6h-15v-1.16l5.18-6.113-5.18-5.18v-3.547h15.313l0.688 4h-0.537l-0.293-0.607c-0.552-1.146-0.967-1.393-2.17-1.393h-10.344l5.517 5.516-4.647 5.483h8.474c1.813 0 2.291-0.65 2.713-1.52z" + } + }] +}; +exports.sigma = sigma; \ No newline at end of file diff --git a/dist/icomoon/sinaWeibo.js b/dist/icomoon/sinaWeibo.js new file mode 100644 index 000000000..593e73629 --- /dev/null +++ b/dist/icomoon/sinaWeibo.js @@ -0,0 +1,35 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.sinaWeibo = void 0; +var sinaWeibo = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6.722 14.031c-2.65 0.262-4.938-0.938-5.109-2.675-0.172-1.741 1.837-3.359 4.484-3.622 2.65-0.263 4.938 0.938 5.106 2.675 0.175 1.741-1.834 3.362-4.481 3.622zM12.019 8.259c-0.225-0.069-0.381-0.113-0.262-0.409 0.256-0.644 0.281-1.197 0.003-1.594-0.519-0.741-1.941-0.703-3.569-0.019 0 0-0.513 0.222-0.381-0.181 0.25-0.806 0.213-1.478-0.178-1.869-0.884-0.884-3.234 0.034-5.25 2.050-1.506 1.503-2.381 3.106-2.381 4.491 0 2.644 3.394 4.253 6.713 4.253 4.35 0 7.247-2.528 7.247-4.534 0-1.216-1.022-1.903-1.941-2.188z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.909 3.416c-1.050-1.166-2.6-1.609-4.031-1.306v0c-0.331 0.072-0.541 0.397-0.469 0.725 0.072 0.331 0.394 0.541 0.725 0.469 1.019-0.216 2.119 0.1 2.866 0.928s0.95 1.956 0.628 2.944v0c-0.103 0.322 0.072 0.666 0.394 0.772 0.322 0.103 0.666-0.072 0.772-0.394v-0.003c0.45-1.381 0.166-2.969-0.884-4.134z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.294 4.875c-0.512-0.569-1.269-0.784-1.963-0.634-0.284 0.059-0.466 0.344-0.406 0.628 0.063 0.284 0.344 0.466 0.625 0.403v0c0.341-0.072 0.709 0.034 0.959 0.309 0.25 0.278 0.319 0.656 0.209 0.987v0c-0.088 0.275 0.063 0.575 0.341 0.666 0.278 0.088 0.575-0.063 0.666-0.341 0.219-0.678 0.081-1.453-0.431-2.019z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6.869 10.884c-0.094 0.159-0.297 0.234-0.456 0.169-0.159-0.063-0.206-0.244-0.116-0.397 0.094-0.153 0.291-0.228 0.447-0.169 0.156 0.056 0.213 0.234 0.125 0.397zM6.022 11.966c-0.256 0.409-0.806 0.588-1.219 0.4-0.406-0.184-0.528-0.659-0.272-1.059 0.253-0.397 0.784-0.575 1.194-0.403 0.416 0.178 0.55 0.65 0.297 1.063zM6.984 9.072c-1.259-0.328-2.684 0.3-3.231 1.409-0.559 1.131-0.019 2.391 1.253 2.803 1.319 0.425 2.875-0.228 3.416-1.447 0.534-1.197-0.131-2.425-1.438-2.766z" + } + }] +}; +exports.sinaWeibo = sinaWeibo; \ No newline at end of file diff --git a/dist/icomoon/skype.js b/dist/icomoon/skype.js new file mode 100644 index 000000000..ae6a93ac3 --- /dev/null +++ b/dist/icomoon/skype.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.skype = void 0; +var skype = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6.65 0.584c-0.025-0.016-0.053-0.028-0.078-0.041-0.028 0.006-0.053 0.009-0.081 0.016l0.159 0.025z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0.575 6.578c-0.006 0.028-0.009 0.056-0.012 0.081 0.016 0.025 0.025 0.050 0.041 0.075l-0.028-0.156z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.419 9.416c0.006-0.028 0.009-0.056 0.016-0.084-0.016-0.025-0.025-0.050-0.041-0.075l0.025 0.159z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9.25 15.359c0.025 0.016 0.053 0.028 0.078 0.041 0.028-0.006 0.056-0.009 0.084-0.012l-0.162-0.028z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.434 9.331c-0.006 0.028-0.009 0.056-0.016 0.084l-0.028-0.162c0.016 0.028 0.028 0.053 0.044 0.078 0.081-0.45 0.125-0.909 0.125-1.369 0-1.019-0.2-2.009-0.594-2.941-0.381-0.9-0.925-1.709-1.619-2.403s-1.503-1.238-2.4-1.619c-0.931-0.394-1.922-0.594-2.941-0.594-0.481 0-0.963 0.044-1.431 0.134 0 0-0.003 0-0.003 0 0.025 0.012 0.053 0.025 0.078 0.041l-0.159-0.025c0.028-0.006 0.053-0.009 0.081-0.016-0.644-0.341-1.366-0.525-2.097-0.525-1.194 0-2.319 0.466-3.163 1.309s-1.309 1.969-1.309 3.163c0 0.759 0.197 1.509 0.563 2.169 0.006-0.028 0.009-0.056 0.012-0.081l0.028 0.159c-0.016-0.025-0.028-0.050-0.041-0.075-0.075 0.428-0.112 0.866-0.112 1.303 0 1.019 0.2 2.009 0.594 2.941 0.381 0.9 0.925 1.706 1.619 2.4s1.503 1.238 2.403 1.619c0.931 0.394 1.922 0.594 2.941 0.594 0.444 0 0.887-0.041 1.322-0.119-0.025-0.016-0.050-0.028-0.078-0.041l0.162 0.028c-0.028 0.006-0.056 0.009-0.084 0.012 0.669 0.378 1.428 0.581 2.2 0.581 1.194 0 2.319-0.466 3.162-1.309s1.309-1.969 1.309-3.162c-0.003-0.759-0.2-1.509-0.569-2.175zM8.034 12.591c-2.684 0-3.884-1.319-3.884-2.309 0-0.506 0.375-0.863 0.891-0.863 1.15 0 0.85 1.65 2.994 1.65 1.097 0 1.703-0.597 1.703-1.206 0-0.366-0.181-0.772-0.903-0.95l-2.388-0.597c-1.922-0.481-2.272-1.522-2.272-2.5 0-2.028 1.909-2.791 3.703-2.791 1.653 0 3.6 0.913 3.6 2.131 0 0.522-0.453 0.825-0.969 0.825-0.981 0-0.8-1.356-2.775-1.356-0.981 0-1.522 0.444-1.522 1.078s0.775 0.838 1.447 0.991l1.769 0.394c1.934 0.431 2.425 1.563 2.425 2.625 0 1.647-1.266 2.878-3.819 2.878z" + } + }] +}; +exports.skype = skype; \ No newline at end of file diff --git a/dist/icomoon/sleepy.js b/dist/icomoon/sleepy.js new file mode 100644 index 000000000..dfd5bf7af --- /dev/null +++ b/dist/icomoon/sleepy.js @@ -0,0 +1,35 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.sleepy = void 0; +var sleepy = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M10 10.5c0 1.381-0.895 2.5-2 2.5s-2-1.119-2-2.5c0-1.381 0.895-2.5 2-2.5s2 1.119 2 2.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6.5 5.313c-0.128 0-0.256-0.049-0.354-0.146-0.302-0.302-0.991-0.302-1.293 0-0.195 0.195-0.512 0.195-0.707 0s-0.195-0.512 0-0.707c0.696-0.696 2.011-0.696 2.707 0 0.195 0.195 0.195 0.512 0 0.707-0.098 0.098-0.226 0.146-0.354 0.146z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.5 5.313c-0.128 0-0.256-0.049-0.354-0.146-0.302-0.302-0.991-0.302-1.293 0-0.195 0.195-0.512 0.195-0.707 0s-0.195-0.512 0-0.707c0.696-0.696 2.011-0.696 2.707 0 0.195 0.195 0.195 0.512 0 0.707-0.098 0.098-0.226 0.146-0.354 0.146z" + } + }] +}; +exports.sleepy = sleepy; \ No newline at end of file diff --git a/dist/icomoon/sleepy2.js b/dist/icomoon/sleepy2.js new file mode 100644 index 000000000..6514eadb4 --- /dev/null +++ b/dist/icomoon/sleepy2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.sleepy2 = void 0; +var sleepy2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM4.854 5.166c-0.195 0.195-0.512 0.195-0.707 0s-0.195-0.512 0-0.707c0.696-0.696 2.011-0.696 2.707 0 0.195 0.195 0.195 0.512 0 0.707-0.098 0.098-0.226 0.146-0.354 0.146s-0.256-0.049-0.354-0.146c-0.302-0.302-0.991-0.302-1.293 0zM8 13c-1.105 0-2-1.119-2-2.5s0.895-2.5 2-2.5 2 1.119 2 2.5-0.895 2.5-2 2.5zM11.854 5.166c-0.098 0.098-0.226 0.146-0.354 0.146s-0.256-0.049-0.354-0.146c-0.302-0.302-0.991-0.302-1.293 0-0.195 0.195-0.512 0.195-0.707 0s-0.195-0.512 0-0.707c0.696-0.696 2.011-0.696 2.707 0 0.195 0.195 0.195 0.512 0 0.707z" + } + }] +}; +exports.sleepy2 = sleepy2; \ No newline at end of file diff --git a/dist/icomoon/smile.js b/dist/icomoon/smile.js new file mode 100644 index 000000000..52a6025dd --- /dev/null +++ b/dist/icomoon/smile.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.smile = void 0; +var smile = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5zM4 5c0-0.552 0.448-1 1-1s1 0.448 1 1c0 0.552-0.448 1-1 1s-1-0.448-1-1zM10 5c0-0.552 0.448-1 1-1s1 0.448 1 1c0 0.552-0.448 1-1 1s-1-0.448-1-1zM11.002 9.801l1.286 0.772c-0.874 1.454-2.467 2.427-4.288 2.427s-3.413-0.973-4.288-2.427l1.286-0.772c0.612 1.018 1.727 1.699 3.002 1.699s2.389-0.681 3.002-1.699z" + } + }] +}; +exports.smile = smile; \ No newline at end of file diff --git a/dist/icomoon/smile2.js b/dist/icomoon/smile2.js new file mode 100644 index 000000000..94e01b6f7 --- /dev/null +++ b/dist/icomoon/smile2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.smile2 = void 0; +var smile2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM11 4c0.552 0 1 0.448 1 1s-0.448 1-1 1-1-0.448-1-1 0.448-1 1-1zM5 4c0.552 0 1 0.448 1 1s-0.448 1-1 1-1-0.448-1-1 0.448-1 1-1zM8 13c-1.82 0-3.413-0.973-4.288-2.427l1.286-0.772c0.612 1.018 1.727 1.699 3.002 1.699s2.389-0.681 3.002-1.699l1.286 0.772c-0.874 1.454-2.467 2.427-4.288 2.427z" + } + }] +}; +exports.smile2 = smile2; \ No newline at end of file diff --git a/dist/icomoon/sortAlphaAsc.js b/dist/icomoon/sortAlphaAsc.js new file mode 100644 index 000000000..389b5b4f9 --- /dev/null +++ b/dist/icomoon/sortAlphaAsc.js @@ -0,0 +1,29 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.sortAlphaAsc = void 0; +var sortAlphaAsc = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5 12v-12h-2v12h-2.5l3.5 3.5 3.5-3.5h-2.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.5 16h-4c-0.184 0-0.354-0.101-0.441-0.264s-0.077-0.36 0.025-0.513l3.482-5.223h-3.066c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5h4c0.184 0 0.354 0.101 0.441 0.264s0.077 0.36-0.025 0.513l-3.482 5.223h3.066c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.947 6.276l-3-6c-0.085-0.169-0.258-0.276-0.447-0.276s-0.363 0.107-0.447 0.276l-3 6c-0.123 0.247-0.023 0.547 0.224 0.671 0.072 0.036 0.148 0.053 0.223 0.053 0.183 0 0.36-0.101 0.448-0.277l0.862-1.724h3.382l0.862 1.724c0.123 0.247 0.424 0.347 0.671 0.224s0.347-0.424 0.224-0.671zM11.309 4l1.191-2.382 1.191 2.382h-2.382z" + } + }] +}; +exports.sortAlphaAsc = sortAlphaAsc; \ No newline at end of file diff --git a/dist/icomoon/sortAlphaDesc.js b/dist/icomoon/sortAlphaDesc.js new file mode 100644 index 000000000..eba93ff89 --- /dev/null +++ b/dist/icomoon/sortAlphaDesc.js @@ -0,0 +1,29 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.sortAlphaDesc = void 0; +var sortAlphaDesc = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5 12v-12h-2v12h-2.5l3.5 3.5 3.5-3.5h-2.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.5 7h-4c-0.184 0-0.354-0.101-0.441-0.264s-0.077-0.36 0.025-0.513l3.482-5.223h-3.066c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5h4c0.184 0 0.354 0.102 0.441 0.264s0.077 0.36-0.025 0.513l-3.482 5.223h3.066c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.947 15.276l-3-6c-0.085-0.169-0.258-0.276-0.447-0.276s-0.363 0.107-0.447 0.276l-3 6c-0.123 0.247-0.023 0.547 0.224 0.671 0.072 0.036 0.148 0.053 0.223 0.053 0.183 0 0.36-0.101 0.448-0.277l0.862-1.724h3.382l0.862 1.724c0.123 0.247 0.424 0.347 0.671 0.224s0.347-0.424 0.224-0.671zM11.309 13l1.191-2.382 1.191 2.382h-2.382z" + } + }] +}; +exports.sortAlphaDesc = sortAlphaDesc; \ No newline at end of file diff --git a/dist/icomoon/sortAmountAsc.js b/dist/icomoon/sortAmountAsc.js new file mode 100644 index 000000000..78020d90b --- /dev/null +++ b/dist/icomoon/sortAmountAsc.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.sortAmountAsc = void 0; +var sortAmountAsc = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5 12v-12h-2v12h-2.5l3.5 3.5 3.5-3.5h-2.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7 9h9v2h-9v-2z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7 6h7v2h-7v-2z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7 3h5v2h-5v-2z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7 0h3v2h-3v-2z" + } + }] +}; +exports.sortAmountAsc = sortAmountAsc; \ No newline at end of file diff --git a/dist/icomoon/sortAmountDesc.js b/dist/icomoon/sortAmountDesc.js new file mode 100644 index 000000000..d5dc64501 --- /dev/null +++ b/dist/icomoon/sortAmountDesc.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.sortAmountDesc = void 0; +var sortAmountDesc = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5 12v-12h-2v12h-2.5l3.5 3.5 3.5-3.5h-2.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7 0h9v2h-9v-2z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7 3h7v2h-7v-2z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7 6h5v2h-5v-2z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7 9h3v2h-3v-2z" + } + }] +}; +exports.sortAmountDesc = sortAmountDesc; \ No newline at end of file diff --git a/dist/icomoon/sortNumbericDesc.js b/dist/icomoon/sortNumbericDesc.js new file mode 100644 index 000000000..77889d3ac --- /dev/null +++ b/dist/icomoon/sortNumbericDesc.js @@ -0,0 +1,29 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.sortNumbericDesc = void 0; +var sortNumbericDesc = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5 12v-12h-2v12h-2.5l3.5 3.5 3.5-3.5h-2.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.5 16c-0.276 0-0.5-0.224-0.5-0.5v-5.5h-0.5c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5h1c0.276 0 0.5 0.224 0.5 0.5v6c0 0.276-0.224 0.5-0.5 0.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.5 0h-3c-0.276 0-0.5 0.224-0.5 0.5v3c0 0.276 0.224 0.5 0.5 0.5h2.5v2h-2.5c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5h3c0.276 0 0.5-0.224 0.5-0.5v-6c0-0.276-0.224-0.5-0.5-0.5zM12 1h2v2h-2v-2z" + } + }] +}; +exports.sortNumbericDesc = sortNumbericDesc; \ No newline at end of file diff --git a/dist/icomoon/sortNumericAsc.js b/dist/icomoon/sortNumericAsc.js new file mode 100644 index 000000000..2d6c88771 --- /dev/null +++ b/dist/icomoon/sortNumericAsc.js @@ -0,0 +1,29 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.sortNumericAsc = void 0; +var sortNumericAsc = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5 12v-12h-2v12h-2.5l3.5 3.5 3.5-3.5h-2.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.5 7c-0.276 0-0.5-0.224-0.5-0.5v-5.5h-0.5c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5h1c0.276 0 0.5 0.224 0.5 0.5v6c0 0.276-0.224 0.5-0.5 0.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.5 9h-3c-0.276 0-0.5 0.224-0.5 0.5v3c0 0.276 0.224 0.5 0.5 0.5h2.5v2h-2.5c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5h3c0.276 0 0.5-0.224 0.5-0.5v-6c0-0.276-0.224-0.5-0.5-0.5zM12 10h2v2h-2v-2z" + } + }] +}; +exports.sortNumericAsc = sortNumericAsc; \ No newline at end of file diff --git a/dist/icomoon/soundcloud.js b/dist/icomoon/soundcloud.js new file mode 100644 index 000000000..1f4583c86 --- /dev/null +++ b/dist/icomoon/soundcloud.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.soundcloud = void 0; +var soundcloud = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.937 8.034c-0.283 0-0.552 0.055-0.798 0.154-0.164-1.787-1.723-3.188-3.625-3.188-0.465 0-0.917 0.088-1.317 0.237-0.156 0.058-0.197 0.117-0.197 0.233v6.292c0 0.121 0.098 0.222 0.221 0.234 0.005 0.001 5.68 0.003 5.717 0.003 1.139 0 2.062-0.888 2.062-1.983s-0.924-1.983-2.063-1.983zM6.25 12h0.5l0.25-3.503-0.25-3.497h-0.5l-0.25 3.497zM4.75 12h-0.5l-0.25-2.543 0.25-2.457h0.5l0.25 2.5zM2.25 12h0.5l0.25-2-0.25-2h-0.5l-0.25 2zM0.25 11h0.5l0.25-1-0.25-1h-0.5l-0.25 1z" + } + }] +}; +exports.soundcloud = soundcloud; \ No newline at end of file diff --git a/dist/icomoon/soundcloud2.js b/dist/icomoon/soundcloud2.js new file mode 100644 index 000000000..e66174191 --- /dev/null +++ b/dist/icomoon/soundcloud2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.soundcloud2 = void 0; +var soundcloud2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.5 0h-13c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM2.75 11h-0.5l-0.25-1.5 0.25-1.5h0.5l0.25 1.5-0.25 1.5zM4.75 11h-0.5l-0.25-2 0.25-2h0.5l0.25 2-0.25 2zM6.75 11h-0.5l-0.25-3 0.25-3h0.5l0.25 3-0.25 3zM12.894 11c-0.031 0-4.706-0.003-4.709-0.003-0.1-0.009-0.181-0.097-0.184-0.2v-5.394c0-0.1 0.034-0.15 0.162-0.2 0.331-0.128 0.703-0.203 1.088-0.203 1.566 0 2.85 1.2 2.987 2.734 0.203-0.084 0.425-0.131 0.656-0.131 0.938 0 1.7 0.762 1.7 1.7s-0.762 1.697-1.7 1.697z" + } + }] +}; +exports.soundcloud2 = soundcloud2; \ No newline at end of file diff --git a/dist/icomoon/spades.js b/dist/icomoon/spades.js new file mode 100644 index 000000000..d47790de4 --- /dev/null +++ b/dist/icomoon/spades.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.spades = void 0; +var spades = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12.775 5.44c-3.024-2.248-4.067-4.047-4.774-5.44v0c-0 0-0-0-0-0v0c-0.708 1.393-1.75 3.192-4.774 5.44-5.157 3.833-0.303 9.182 3.965 6.238-0.278 1.827-1.227 3.159-2.191 3.733v0.59h6v-0.59c-0.964-0.574-1.913-1.906-2.191-3.733 4.268 2.944 9.122-2.405 3.965-6.238z" + } + }] +}; +exports.spades = spades; \ No newline at end of file diff --git a/dist/icomoon/spellCheck.js b/dist/icomoon/spellCheck.js new file mode 100644 index 000000000..cd5e78868 --- /dev/null +++ b/dist/icomoon/spellCheck.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.spellCheck = void 0; +var spellCheck = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M2 4h2v3h1v-6c0-0.55-0.45-1-1-1h-2c-0.55 0-1 0.45-1 1v6h1v-3zM2 1h2v2h-2v-2zM15 1v-1h-3c-0.55 0-1 0.45-1 1v5c0 0.55 0.45 1 1 1h3v-1h-3v-5h3zM10 2.5v-1.5c0-0.55-0.45-1-1-1h-3v7h3c0.55 0 1-0.45 1-1v-1.5c0-0.55-0.137-1-0.688-1 0.55 0 0.688-0.45 0.688-1zM9 6h-2v-2h2v2zM9 3h-2v-2h2v2zM13 9l-6.5 7-3.5-4.5 1.281-1.094 2.219 2.313 5.5-4.719z" + } + }] +}; +exports.spellCheck = spellCheck; \ No newline at end of file diff --git a/dist/icomoon/sphere.js b/dist/icomoon/sphere.js new file mode 100644 index 000000000..8e2a4f64b --- /dev/null +++ b/dist/icomoon/sphere.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.sphere = void 0; +var sphere = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7.5 1c-4.142 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5c4.142 0 7.5-3.358 7.5-7.5s-3.358-7.5-7.5-7.5zM11.744 11c0.134-0.632 0.219-1.303 0.246-2h1.991c-0.052 0.691-0.213 1.361-0.479 2h-1.758zM3.256 6c-0.134 0.632-0.219 1.303-0.246 2h-1.991c0.052-0.691 0.213-1.361 0.479-2h1.758zM10.719 6c0.15 0.64 0.241 1.31 0.27 2h-2.989v-2h2.719zM8 5v-2.927c0.228 0.066 0.454 0.178 0.675 0.334 0.415 0.293 0.813 0.744 1.149 1.304 0.233 0.388 0.434 0.819 0.601 1.289h-2.426zM5.176 3.711c0.336-0.561 0.734-1.012 1.149-1.304 0.222-0.156 0.447-0.268 0.675-0.334v2.927h-2.426c0.168-0.47 0.369-0.901 0.601-1.289zM7 6v2h-2.989c0.029-0.69 0.12-1.36 0.27-2h2.719zM1.498 11c-0.266-0.639-0.427-1.309-0.479-2h1.991c0.028 0.697 0.112 1.368 0.246 2h-1.758zM4.011 9h2.989v2h-2.719c-0.15-0.64-0.241-1.31-0.27-2zM7 12v2.927c-0.228-0.066-0.454-0.178-0.675-0.334-0.415-0.293-0.813-0.744-1.149-1.304-0.233-0.388-0.434-0.819-0.602-1.289h2.426zM9.825 13.289c-0.336 0.561-0.734 1.012-1.149 1.304-0.222 0.156-0.447 0.268-0.675 0.334v-2.927h2.426c-0.168 0.47-0.369 0.901-0.602 1.289zM8 11v-2h2.989c-0.029 0.69-0.12 1.36-0.27 2h-2.719zM11.99 8c-0.028-0.697-0.112-1.368-0.246-2h1.758c0.267 0.639 0.427 1.309 0.479 2h-1.991zM12.979 5h-1.498c-0.291-0.918-0.693-1.723-1.177-2.366 0.665 0.318 1.267 0.744 1.792 1.27 0.336 0.336 0.631 0.702 0.883 1.096zM2.904 3.904c0.526-0.526 1.128-0.952 1.792-1.27-0.483 0.643-0.886 1.448-1.177 2.366h-1.498c0.252-0.394 0.547-0.761 0.883-1.096zM2.021 12h1.498c0.291 0.918 0.693 1.723 1.177 2.366-0.665-0.318-1.267-0.744-1.792-1.27-0.336-0.336-0.631-0.702-0.883-1.096zM12.096 13.096c-0.526 0.526-1.128 0.952-1.792 1.27 0.483-0.643 0.886-1.448 1.177-2.366h1.498c-0.252 0.394-0.547 0.761-0.883 1.096z" + } + }] +}; +exports.sphere = sphere; \ No newline at end of file diff --git a/dist/icomoon/spinner.js b/dist/icomoon/spinner.js new file mode 100644 index 000000000..fb7421df4 --- /dev/null +++ b/dist/icomoon/spinner.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.spinner = void 0; +var spinner = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6 2c0-1.105 0.895-2 2-2s2 0.895 2 2c0 1.105-0.895 2-2 2s-2-0.895-2-2zM10.243 3.757c0-1.105 0.895-2 2-2s2 0.895 2 2c0 1.105-0.895 2-2 2s-2-0.895-2-2zM13 8c0-0.552 0.448-1 1-1s1 0.448 1 1c0 0.552-0.448 1-1 1s-1-0.448-1-1zM11.243 12.243c0-0.552 0.448-1 1-1s1 0.448 1 1c0 0.552-0.448 1-1 1s-1-0.448-1-1zM7 14c0 0 0 0 0 0 0-0.552 0.448-1 1-1s1 0.448 1 1c0 0 0 0 0 0 0 0.552-0.448 1-1 1s-1-0.448-1-1zM2.757 12.243c0 0 0 0 0 0 0-0.552 0.448-1 1-1s1 0.448 1 1c0 0 0 0 0 0 0 0.552-0.448 1-1 1s-1-0.448-1-1zM2.257 3.757c0 0 0 0 0 0 0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5c0 0 0 0 0 0 0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5zM0.875 8c0-0.621 0.504-1.125 1.125-1.125s1.125 0.504 1.125 1.125c0 0.621-0.504 1.125-1.125 1.125s-1.125-0.504-1.125-1.125z" + } + }] +}; +exports.spinner = spinner; \ No newline at end of file diff --git a/dist/icomoon/spinner10.js b/dist/icomoon/spinner10.js new file mode 100644 index 000000000..5db097767 --- /dev/null +++ b/dist/icomoon/spinner10.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.spinner10 = void 0; +var spinner10 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0.001 8.025l-0 0c0 0 0 0.001 0 0.003 0.002 0.061 0.009 0.12 0.021 0.177 0.003 0.027 0.007 0.057 0.011 0.090 0.003 0.029 0.007 0.061 0.011 0.095 0.006 0.040 0.012 0.083 0.019 0.128 0.013 0.090 0.028 0.189 0.045 0.296 0.021 0.101 0.044 0.21 0.068 0.326 0.011 0.058 0.028 0.117 0.044 0.178s0.032 0.123 0.049 0.188c0.009 0.032 0.016 0.065 0.027 0.097s0.021 0.065 0.031 0.098 0.043 0.134 0.065 0.203c0.006 0.017 0.011 0.035 0.017 0.052s0.013 0.034 0.019 0.052 0.026 0.070 0.039 0.105c0.027 0.070 0.053 0.142 0.081 0.215 0.031 0.071 0.062 0.144 0.094 0.218 0.016 0.037 0.032 0.074 0.048 0.111s0.035 0.073 0.053 0.111 0.073 0.148 0.11 0.224c0.039 0.075 0.081 0.149 0.123 0.224 0.021 0.037 0.042 0.075 0.063 0.113s0.045 0.074 0.068 0.112 0.093 0.149 0.14 0.224c0.198 0.295 0.417 0.587 0.66 0.864 0.245 0.275 0.511 0.535 0.792 0.775 0.284 0.236 0.582 0.452 0.886 0.642 0.306 0.188 0.619 0.349 0.928 0.487 0.078 0.032 0.156 0.063 0.232 0.095 0.038 0.015 0.076 0.032 0.115 0.046s0.077 0.027 0.115 0.041 0.151 0.054 0.226 0.078c0.075 0.022 0.15 0.044 0.224 0.066 0.037 0.011 0.073 0.022 0.109 0.031s0.073 0.018 0.109 0.027 0.143 0.035 0.213 0.052c0.070 0.014 0.139 0.027 0.207 0.040 0.034 0.006 0.067 0.013 0.101 0.019 0.017 0.003 0.033 0.006 0.049 0.009s0.033 0.005 0.049 0.007c0.066 0.009 0.13 0.018 0.192 0.027 0.031 0.004 0.062 0.009 0.093 0.013s0.061 0.006 0.091 0.009 0.118 0.010 0.174 0.015c0.056 0.005 0.111 0.011 0.164 0.012 0.004 0 0.007 0 0.011 0 0.010 0.544 0.453 0.982 1 0.982 0.008 0 0.017-0 0.025-0.001v0c0 0 0.001-0 0.004-0 0.061-0.002 0.12-0.009 0.177-0.021 0.027-0.003 0.057-0.007 0.090-0.011 0.029-0.003 0.061-0.007 0.095-0.011 0.040-0.006 0.083-0.012 0.128-0.019 0.090-0.013 0.189-0.028 0.296-0.045 0.101-0.021 0.21-0.044 0.326-0.068 0.058-0.011 0.117-0.028 0.178-0.044s0.123-0.033 0.188-0.049c0.032-0.009 0.065-0.016 0.097-0.027s0.065-0.021 0.098-0.031 0.134-0.043 0.203-0.065c0.017-0.006 0.035-0.011 0.052-0.017s0.034-0.013 0.052-0.019 0.070-0.026 0.105-0.039c0.070-0.027 0.142-0.053 0.215-0.081 0.071-0.031 0.144-0.062 0.218-0.094 0.037-0.016 0.074-0.032 0.111-0.048s0.073-0.035 0.111-0.053 0.148-0.073 0.224-0.11c0.075-0.039 0.149-0.081 0.224-0.123 0.037-0.021 0.075-0.042 0.113-0.063s0.074-0.045 0.112-0.068 0.149-0.093 0.224-0.14c0.295-0.197 0.587-0.417 0.864-0.66 0.275-0.245 0.535-0.511 0.775-0.792 0.236-0.284 0.452-0.582 0.642-0.886 0.188-0.306 0.349-0.619 0.487-0.928 0.032-0.078 0.063-0.156 0.095-0.232 0.015-0.038 0.032-0.076 0.046-0.115s0.027-0.077 0.040-0.115 0.054-0.151 0.078-0.226c0.022-0.075 0.044-0.15 0.066-0.224 0.011-0.037 0.022-0.073 0.031-0.109s0.018-0.073 0.027-0.109 0.035-0.143 0.052-0.213c0.014-0.070 0.027-0.139 0.040-0.207 0.006-0.034 0.013-0.067 0.019-0.101 0.003-0.017 0.006-0.033 0.009-0.049s0.005-0.033 0.007-0.050c0.009-0.065 0.018-0.13 0.027-0.192 0.004-0.031 0.009-0.062 0.013-0.093s0.006-0.061 0.009-0.091 0.010-0.118 0.015-0.174c0.005-0.056 0.011-0.111 0.012-0.165 0-0.008 0.001-0.016 0.001-0.025 0.55-0.002 0.996-0.449 0.996-1 0-0.008-0-0.017-0.001-0.025h0c0 0-0-0.001-0-0.003-0.002-0.061-0.009-0.12-0.021-0.177-0.003-0.027-0.007-0.057-0.011-0.090-0.003-0.029-0.007-0.061-0.011-0.095-0.006-0.040-0.012-0.083-0.019-0.128-0.013-0.090-0.028-0.189-0.045-0.296-0.021-0.101-0.044-0.21-0.068-0.326-0.011-0.058-0.028-0.117-0.044-0.178s-0.032-0.123-0.049-0.188c-0.009-0.032-0.016-0.065-0.027-0.097s-0.021-0.065-0.031-0.098-0.043-0.134-0.065-0.203c-0.005-0.017-0.011-0.035-0.017-0.052s-0.013-0.034-0.019-0.052-0.026-0.070-0.039-0.105c-0.027-0.070-0.053-0.142-0.081-0.215-0.031-0.071-0.062-0.144-0.094-0.218-0.016-0.037-0.032-0.074-0.048-0.111s-0.035-0.073-0.053-0.111-0.073-0.148-0.11-0.224c-0.039-0.075-0.081-0.149-0.123-0.224-0.021-0.037-0.042-0.075-0.063-0.113s-0.045-0.074-0.068-0.112-0.093-0.149-0.14-0.224c-0.197-0.295-0.417-0.587-0.66-0.864-0.245-0.275-0.511-0.535-0.792-0.775-0.284-0.236-0.582-0.452-0.886-0.642-0.306-0.188-0.619-0.349-0.928-0.487-0.078-0.032-0.156-0.063-0.232-0.095-0.038-0.015-0.076-0.032-0.115-0.046s-0.077-0.027-0.115-0.040-0.151-0.054-0.226-0.078c-0.075-0.022-0.15-0.044-0.224-0.066-0.037-0.010-0.073-0.022-0.109-0.031s-0.073-0.018-0.109-0.027-0.143-0.035-0.213-0.052c-0.070-0.014-0.139-0.027-0.207-0.040-0.034-0.006-0.067-0.013-0.101-0.019-0.017-0.003-0.033-0.006-0.049-0.009s-0.033-0.005-0.049-0.007c-0.066-0.009-0.13-0.018-0.192-0.027-0.031-0.004-0.062-0.009-0.093-0.013s-0.061-0.006-0.091-0.009-0.118-0.010-0.174-0.015c-0.056-0.005-0.111-0.011-0.164-0.012-0.013-0-0.026-0.001-0.039-0.001-0.010-0.543-0.454-0.981-0.999-0.981-0.008 0-0.017 0-0.025 0.001l-0-0c0 0-0.001 0-0.003 0-0.061 0.002-0.12 0.009-0.177 0.021-0.027 0.003-0.057 0.007-0.090 0.011-0.029 0.003-0.061 0.007-0.095 0.011-0.040 0.006-0.083 0.012-0.128 0.019-0.090 0.013-0.189 0.028-0.296 0.045-0.101 0.021-0.21 0.044-0.326 0.068-0.058 0.011-0.117 0.028-0.178 0.044s-0.123 0.033-0.188 0.049c-0.032 0.009-0.065 0.016-0.097 0.027s-0.065 0.021-0.098 0.031-0.134 0.043-0.203 0.065c-0.017 0.006-0.035 0.011-0.052 0.017s-0.034 0.013-0.052 0.019-0.070 0.026-0.105 0.039c-0.070 0.027-0.142 0.053-0.215 0.081-0.071 0.031-0.144 0.062-0.218 0.094-0.037 0.016-0.074 0.032-0.111 0.048s-0.073 0.035-0.111 0.053-0.148 0.073-0.224 0.11c-0.075 0.039-0.149 0.081-0.224 0.123-0.037 0.021-0.075 0.042-0.113 0.063s-0.074 0.045-0.112 0.068-0.149 0.093-0.224 0.14c-0.295 0.198-0.587 0.417-0.864 0.66-0.275 0.245-0.535 0.511-0.775 0.792-0.236 0.284-0.452 0.582-0.642 0.886-0.188 0.306-0.349 0.619-0.487 0.928-0.032 0.078-0.063 0.156-0.095 0.232-0.015 0.038-0.032 0.076-0.046 0.115s-0.027 0.077-0.040 0.115-0.054 0.151-0.078 0.226c-0.022 0.075-0.044 0.15-0.066 0.224-0.011 0.037-0.022 0.073-0.032 0.109s-0.018 0.073-0.027 0.109-0.035 0.143-0.052 0.213c-0.014 0.070-0.027 0.139-0.040 0.207-0.006 0.034-0.013 0.067-0.019 0.101-0.003 0.017-0.006 0.033-0.009 0.049s-0.005 0.033-0.007 0.050c-0.009 0.065-0.018 0.13-0.027 0.192-0.004 0.031-0.009 0.062-0.013 0.093s-0.006 0.061-0.009 0.091-0.010 0.118-0.015 0.174c-0.005 0.056-0.011 0.111-0.012 0.165-0 0.009-0.001 0.017-0.001 0.025-0.537 0.017-0.967 0.458-0.967 0.999 0 0.008 0 0.017 0.001 0.025zM1.149 7.011c0.001-0.003 0.001-0.006 0.002-0.009 0.010-0.051 0.026-0.102 0.040-0.155s0.030-0.107 0.045-0.163c0.008-0.028 0.015-0.056 0.024-0.084s0.019-0.057 0.028-0.086 0.038-0.116 0.058-0.176c0.005-0.015 0.010-0.030 0.015-0.045s0.012-0.030 0.017-0.045 0.023-0.060 0.035-0.091 0.048-0.123 0.073-0.186c0.028-0.062 0.056-0.125 0.084-0.189 0.014-0.032 0.028-0.064 0.043-0.096s0.032-0.064 0.048-0.096 0.065-0.128 0.098-0.194c0.034-0.065 0.073-0.128 0.109-0.194 0.018-0.032 0.037-0.065 0.056-0.098s0.040-0.064 0.061-0.096c0.041-0.064 0.082-0.129 0.124-0.194 0.176-0.255 0.369-0.506 0.583-0.744 0.217-0.236 0.451-0.459 0.697-0.665 0.25-0.202 0.511-0.385 0.776-0.547 0.268-0.159 0.541-0.294 0.808-0.41 0.068-0.027 0.135-0.053 0.202-0.079 0.033-0.013 0.066-0.027 0.099-0.038s0.067-0.022 0.1-0.033 0.131-0.045 0.196-0.065c0.065-0.018 0.13-0.036 0.194-0.054 0.032-0.009 0.063-0.019 0.095-0.026s0.063-0.014 0.094-0.021 0.123-0.028 0.184-0.042c0.061-0.011 0.12-0.021 0.179-0.032 0.029-0.005 0.058-0.010 0.087-0.015 0.014-0.003 0.029-0.005 0.043-0.008s0.029-0.003 0.043-0.005c0.056-0.007 0.112-0.014 0.166-0.020 0.027-0.003 0.053-0.007 0.080-0.010s0.053-0.004 0.078-0.006 0.102-0.007 0.15-0.011c0.049-0.003 0.095-0.008 0.142-0.008 0.091-0.002 0.177-0.004 0.256-0.006 0.073 0.003 0.14 0.005 0.2 0.007 0.030 0.001 0.058 0.002 0.085 0.002 0.033 0.002 0.064 0.004 0.093 0.006 0.033 0.002 0.063 0.004 0.091 0.006 0.051 0.008 0.103 0.012 0.156 0.012 0.007 0 0.015-0 0.022-0.001 0.002 0 0.004 0 0.004 0v-0c0.487-0.012 0.887-0.372 0.962-0.84 0.008 0.002 0.017 0.004 0.025 0.006 0.051 0.010 0.102 0.026 0.155 0.040s0.107 0.030 0.163 0.045c0.028 0.008 0.056 0.015 0.084 0.024s0.057 0.019 0.086 0.028 0.116 0.038 0.176 0.058c0.015 0.005 0.030 0.010 0.045 0.015s0.030 0.012 0.045 0.017 0.060 0.023 0.091 0.035 0.123 0.048 0.186 0.073c0.062 0.028 0.125 0.056 0.189 0.084 0.032 0.014 0.064 0.028 0.096 0.043s0.064 0.032 0.096 0.048 0.128 0.065 0.194 0.098c0.065 0.034 0.129 0.073 0.194 0.109 0.032 0.018 0.065 0.037 0.098 0.056s0.064 0.040 0.096 0.061 0.129 0.082 0.194 0.124c0.255 0.176 0.506 0.369 0.744 0.583 0.236 0.217 0.459 0.451 0.665 0.697 0.202 0.25 0.385 0.511 0.547 0.776 0.159 0.268 0.294 0.541 0.41 0.808 0.027 0.068 0.053 0.135 0.079 0.202 0.013 0.033 0.027 0.066 0.038 0.099s0.022 0.067 0.033 0.1 0.045 0.131 0.065 0.196c0.018 0.065 0.036 0.13 0.054 0.194 0.009 0.032 0.019 0.063 0.026 0.095s0.014 0.063 0.021 0.094 0.028 0.123 0.042 0.184c0.011 0.061 0.021 0.12 0.032 0.179 0.005 0.029 0.010 0.058 0.015 0.087 0.003 0.014 0.005 0.029 0.008 0.043s0.003 0.029 0.005 0.043c0.007 0.056 0.014 0.112 0.020 0.166 0.003 0.027 0.007 0.053 0.010 0.080s0.004 0.053 0.006 0.078 0.007 0.102 0.011 0.15c0.003 0.049 0.008 0.095 0.008 0.142 0.002 0.091 0.004 0.177 0.006 0.256-0.003 0.073-0.005 0.14-0.007 0.2-0.001 0.030-0.002 0.058-0.002 0.085-0.002 0.033-0.004 0.064-0.006 0.093-0.002 0.033-0.004 0.063-0.006 0.091-0.008 0.051-0.012 0.103-0.012 0.156 0 0.007 0 0.015 0.001 0.022-0 0.002-0 0.004-0 0.004h0c0.012 0.481 0.363 0.877 0.823 0.959-0.001 0.005-0.002 0.009-0.003 0.014-0.010 0.051-0.025 0.102-0.040 0.155s-0.030 0.107-0.045 0.163c-0.008 0.028-0.015 0.056-0.024 0.084s-0.019 0.057-0.028 0.086-0.039 0.116-0.058 0.176c-0.005 0.015-0.010 0.030-0.015 0.045s-0.012 0.030-0.017 0.045-0.023 0.060-0.035 0.091-0.048 0.123-0.073 0.186c-0.028 0.062-0.056 0.125-0.084 0.189-0.014 0.032-0.028 0.064-0.043 0.096s-0.032 0.064-0.048 0.096-0.065 0.128-0.098 0.194c-0.034 0.065-0.073 0.129-0.109 0.194-0.018 0.032-0.037 0.065-0.056 0.098s-0.040 0.064-0.061 0.096-0.082 0.129-0.124 0.194c-0.176 0.255-0.369 0.506-0.583 0.744-0.217 0.236-0.451 0.459-0.697 0.665-0.25 0.202-0.511 0.385-0.776 0.547-0.268 0.159-0.541 0.294-0.808 0.41-0.068 0.027-0.135 0.053-0.202 0.079-0.033 0.013-0.066 0.027-0.099 0.038s-0.067 0.022-0.1 0.033-0.131 0.045-0.196 0.065c-0.065 0.018-0.13 0.036-0.194 0.054-0.032 0.009-0.063 0.019-0.095 0.026s-0.063 0.014-0.094 0.021-0.123 0.028-0.184 0.042c-0.061 0.011-0.12 0.021-0.179 0.032-0.029 0.005-0.058 0.010-0.087 0.015-0.014 0.003-0.028 0.005-0.043 0.008s-0.029 0.003-0.043 0.005c-0.056 0.007-0.112 0.014-0.166 0.020-0.027 0.003-0.053 0.007-0.080 0.010s-0.053 0.004-0.078 0.006-0.102 0.007-0.15 0.011c-0.049 0.003-0.095 0.008-0.142 0.008-0.091 0.002-0.177 0.004-0.256 0.006-0.073-0.003-0.14-0.005-0.2-0.007-0.030-0.001-0.058-0.002-0.085-0.002-0.033-0.002-0.064-0.004-0.093-0.006-0.033-0.002-0.063-0.004-0.091-0.006-0.051-0.008-0.103-0.012-0.156-0.012-0.007 0-0.015 0-0.022 0.001-0.002-0-0.003-0-0.003-0v0c-0.484 0.012-0.883 0.369-0.961 0.834-0.050-0.010-0.101-0.025-0.153-0.039s-0.107-0.030-0.163-0.045c-0.028-0.008-0.056-0.015-0.084-0.024s-0.057-0.019-0.086-0.028-0.116-0.039-0.176-0.058c-0.015-0.005-0.030-0.010-0.045-0.015s-0.030-0.012-0.045-0.017-0.060-0.023-0.091-0.035-0.123-0.048-0.186-0.073c-0.062-0.028-0.125-0.056-0.189-0.084-0.032-0.014-0.064-0.028-0.096-0.043s-0.064-0.032-0.096-0.048-0.128-0.065-0.194-0.098c-0.065-0.034-0.129-0.073-0.194-0.109-0.032-0.018-0.065-0.037-0.098-0.056s-0.064-0.040-0.096-0.061c-0.064-0.041-0.129-0.082-0.194-0.124-0.255-0.175-0.506-0.369-0.744-0.583-0.236-0.217-0.459-0.451-0.665-0.697-0.202-0.25-0.385-0.511-0.547-0.776-0.159-0.268-0.294-0.541-0.41-0.808-0.027-0.068-0.053-0.135-0.079-0.202-0.013-0.033-0.027-0.066-0.038-0.099s-0.022-0.067-0.033-0.1-0.045-0.131-0.065-0.196c-0.018-0.065-0.036-0.13-0.054-0.194-0.009-0.032-0.019-0.063-0.026-0.095s-0.014-0.063-0.021-0.094-0.028-0.123-0.042-0.184c-0.011-0.061-0.021-0.12-0.032-0.179-0.005-0.029-0.010-0.058-0.015-0.087-0.003-0.014-0.005-0.028-0.008-0.043s-0.003-0.029-0.005-0.043c-0.007-0.056-0.014-0.112-0.020-0.166-0.003-0.027-0.007-0.053-0.010-0.080s-0.004-0.053-0.006-0.078-0.007-0.101-0.011-0.15c-0.003-0.049-0.008-0.095-0.008-0.142-0.002-0.091-0.004-0.177-0.006-0.256 0.003-0.073 0.005-0.14 0.007-0.2 0.001-0.030 0.002-0.058 0.002-0.085 0.002-0.033 0.004-0.064 0.006-0.093 0.002-0.033 0.004-0.063 0.006-0.091 0.008-0.051 0.012-0.103 0.012-0.156 0-0.007-0-0.015-0.001-0.022 0-0.002 0-0.003 0-0.003h-0c-0.012-0.49-0.377-0.893-0.851-0.964z" + } + }] +}; +exports.spinner10 = spinner10; \ No newline at end of file diff --git a/dist/icomoon/spinner11.js b/dist/icomoon/spinner11.js new file mode 100644 index 000000000..dd2f21b9d --- /dev/null +++ b/dist/icomoon/spinner11.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.spinner11 = void 0; +var spinner11 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16 6h-6l2.243-2.243c-1.133-1.133-2.64-1.757-4.243-1.757s-3.109 0.624-4.243 1.757c-1.133 1.133-1.757 2.64-1.757 4.243s0.624 3.109 1.757 4.243c1.133 1.133 2.64 1.757 4.243 1.757s3.109-0.624 4.243-1.757c0.095-0.095 0.185-0.192 0.273-0.292l1.505 1.317c-1.466 1.674-3.62 2.732-6.020 2.732-4.418 0-8-3.582-8-8s3.582-8 8-8c2.209 0 4.209 0.896 5.656 2.344l2.343-2.344v6z" + } + }] +}; +exports.spinner11 = spinner11; \ No newline at end of file diff --git a/dist/icomoon/spinner2.js b/dist/icomoon/spinner2.js new file mode 100644 index 000000000..4d2c29ab9 --- /dev/null +++ b/dist/icomoon/spinner2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.spinner2 = void 0; +var spinner2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16 8c-0.020-1.045-0.247-2.086-0.665-3.038-0.417-0.953-1.023-1.817-1.766-2.53s-1.624-1.278-2.578-1.651c-0.953-0.374-1.978-0.552-2.991-0.531-1.013 0.020-2.021 0.24-2.943 0.646-0.923 0.405-1.758 0.992-2.449 1.712s-1.237 1.574-1.597 2.497c-0.361 0.923-0.533 1.914-0.512 2.895 0.020 0.981 0.234 1.955 0.627 2.847 0.392 0.892 0.961 1.7 1.658 2.368s1.523 1.195 2.416 1.543c0.892 0.348 1.851 0.514 2.799 0.493 0.949-0.020 1.89-0.227 2.751-0.608 0.862-0.379 1.642-0.929 2.287-1.604s1.154-1.472 1.488-2.335c0.204-0.523 0.342-1.069 0.415-1.622 0.019 0.001 0.039 0.002 0.059 0.002 0.552 0 1-0.448 1-1 0-0.028-0.001-0.056-0.004-0.083h0.004zM14.411 10.655c-0.367 0.831-0.898 1.584-1.55 2.206s-1.422 1.112-2.254 1.434c-0.832 0.323-1.723 0.476-2.608 0.454-0.884-0.020-1.759-0.215-2.56-0.57-0.801-0.354-1.526-0.867-2.125-1.495s-1.071-1.371-1.38-2.173c-0.31-0.801-0.457-1.66-0.435-2.512s0.208-1.694 0.551-2.464c0.342-0.77 0.836-1.468 1.441-2.044s1.321-1.029 2.092-1.326c0.771-0.298 1.596-0.438 2.416-0.416s1.629 0.202 2.368 0.532c0.74 0.329 1.41 0.805 1.963 1.387s0.988 1.27 1.272 2.011c0.285 0.74 0.418 1.532 0.397 2.32h0.004c-0.002 0.027-0.004 0.055-0.004 0.083 0 0.516 0.39 0.94 0.892 0.994-0.097 0.544-0.258 1.075-0.481 1.578z" + } + }] +}; +exports.spinner2 = spinner2; \ No newline at end of file diff --git a/dist/icomoon/spinner3.js b/dist/icomoon/spinner3.js new file mode 100644 index 000000000..b4458dd9b --- /dev/null +++ b/dist/icomoon/spinner3.js @@ -0,0 +1,83 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.spinner3 = void 0; +var spinner3 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 4.736c-0.515 0-0.933-0.418-0.933-0.933v-2.798c0-0.515 0.418-0.933 0.933-0.933s0.933 0.418 0.933 0.933v2.798c0 0.515-0.418 0.933-0.933 0.933z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 15.577c-0.322 0-0.583-0.261-0.583-0.583v-2.798c0-0.322 0.261-0.583 0.583-0.583s0.583 0.261 0.583 0.583v2.798c0 0.322-0.261 0.583-0.583 0.583z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5.902 5.24c-0.302 0-0.596-0.157-0.758-0.437l-1.399-2.423c-0.241-0.418-0.098-0.953 0.32-1.194s0.953-0.098 1.194 0.32l1.399 2.423c0.241 0.418 0.098 0.953-0.32 1.194-0.138 0.079-0.288 0.117-0.436 0.117z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.498 14.582c-0.181 0-0.358-0.094-0.455-0.262l-1.399-2.423c-0.145-0.251-0.059-0.572 0.192-0.717s0.572-0.059 0.717 0.192l1.399 2.423c0.145 0.251 0.059 0.572-0.192 0.717-0.083 0.048-0.173 0.070-0.262 0.070z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4.365 6.718c-0.138 0-0.279-0.035-0.407-0.109l-2.423-1.399c-0.39-0.225-0.524-0.724-0.299-1.115s0.724-0.524 1.115-0.299l2.423 1.399c0.39 0.225 0.524 0.724 0.299 1.115-0.151 0.262-0.425 0.408-0.707 0.408z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.057 11.964c-0.079 0-0.159-0.020-0.233-0.063l-2.423-1.399c-0.223-0.129-0.299-0.414-0.171-0.637s0.414-0.299 0.637-0.171l2.423 1.399c0.223 0.129 0.299 0.414 0.171 0.637-0.086 0.15-0.243 0.233-0.404 0.233z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M3.803 8.758h-2.798c-0.418 0-0.758-0.339-0.758-0.758s0.339-0.758 0.758-0.758h2.798c0.419 0 0.758 0.339 0.758 0.758s-0.339 0.758-0.758 0.758z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.995 8.466c-0 0 0 0 0 0h-2.798c-0.258-0-0.466-0.209-0.466-0.466s0.209-0.466 0.466-0.466c0 0 0 0 0 0h2.798c0.258 0 0.466 0.209 0.466 0.466s-0.209 0.466-0.466 0.466z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M1.943 12.197c-0.242 0-0.477-0.125-0.606-0.35-0.193-0.335-0.079-0.762 0.256-0.955l2.423-1.399c0.335-0.193 0.762-0.079 0.955 0.256s0.079 0.762-0.256 0.955l-2.423 1.399c-0.11 0.064-0.23 0.094-0.349 0.094z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.635 6.368c-0.161 0-0.318-0.084-0.404-0.233-0.129-0.223-0.052-0.508 0.171-0.637l2.423-1.399c0.223-0.129 0.508-0.052 0.637 0.171s0.052 0.508-0.171 0.637l-2.423 1.399c-0.073 0.042-0.154 0.063-0.233 0.063z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4.502 14.699c-0.109 0-0.219-0.028-0.32-0.086-0.307-0.177-0.412-0.569-0.235-0.876l1.399-2.423c0.177-0.307 0.569-0.412 0.876-0.235s0.412 0.569 0.235 0.876l-1.399 2.423c-0.119 0.206-0.334 0.321-0.556 0.321z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M10.098 4.832c-0.079 0-0.159-0.020-0.233-0.063-0.223-0.129-0.299-0.414-0.171-0.637l1.399-2.423c0.129-0.223 0.414-0.299 0.637-0.171s0.299 0.414 0.171 0.637l-1.399 2.423c-0.086 0.15-0.243 0.233-0.404 0.233z" + } + }] +}; +exports.spinner3 = spinner3; \ No newline at end of file diff --git a/dist/icomoon/spinner4.js b/dist/icomoon/spinner4.js new file mode 100644 index 000000000..596e14627 --- /dev/null +++ b/dist/icomoon/spinner4.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.spinner4 = void 0; +var spinner4 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M3 8c0-0.19 0.011-0.378 0.032-0.563l-2.89-0.939c-0.092 0.487-0.141 0.989-0.141 1.502 0 2.3 0.971 4.374 2.526 5.833l1.786-2.458c-0.814-0.889-1.312-2.074-1.312-3.375zM13 8c0 1.301-0.497 2.486-1.312 3.375l1.786 2.458c1.555-1.459 2.526-3.533 2.526-5.833 0-0.513-0.049-1.015-0.141-1.502l-2.89 0.939c0.021 0.185 0.032 0.373 0.032 0.563zM9 3.1c1.436 0.292 2.649 1.199 3.351 2.435l2.89-0.939c-1.144-2.428-3.473-4.188-6.241-4.534v3.038zM3.649 5.535c0.702-1.236 1.914-2.143 3.351-2.435v-3.038c-2.769 0.345-5.097 2.105-6.241 4.534l2.89 0.939zM10.071 12.552c-0.631 0.288-1.332 0.448-2.071 0.448s-1.44-0.16-2.071-0.448l-1.786 2.458c1.144 0.631 2.458 0.99 3.857 0.99s2.713-0.359 3.857-0.99l-1.786-2.458z" + } + }] +}; +exports.spinner4 = spinner4; \ No newline at end of file diff --git a/dist/icomoon/spinner5.js b/dist/icomoon/spinner5.js new file mode 100644 index 000000000..c1ef36551 --- /dev/null +++ b/dist/icomoon/spinner5.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.spinner5 = void 0; +var spinner5 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM8 4c2.209 0 4 1.791 4 4s-1.791 4-4 4-4-1.791-4-4 1.791-4 4-4zM12.773 12.773c-1.275 1.275-2.97 1.977-4.773 1.977s-3.498-0.702-4.773-1.977-1.977-2.97-1.977-4.773c0-1.803 0.702-3.498 1.977-4.773l1.061 1.061c0 0 0 0 0 0-2.047 2.047-2.047 5.378 0 7.425 0.992 0.992 2.31 1.538 3.712 1.538s2.721-0.546 3.712-1.538c2.047-2.047 2.047-5.378 0-7.425l1.061-1.061c1.275 1.275 1.977 2.97 1.977 4.773s-0.702 3.498-1.977 4.773z" + } + }] +}; +exports.spinner5 = spinner5; \ No newline at end of file diff --git a/dist/icomoon/spinner6.js b/dist/icomoon/spinner6.js new file mode 100644 index 000000000..dd362363c --- /dev/null +++ b/dist/icomoon/spinner6.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.spinner6 = void 0; +var spinner6 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6 2c0-1.105 0.895-2 2-2s2 0.895 2 2c0 1.105-0.895 2-2 2s-2-0.895-2-2zM12.359 8c0 0 0 0 0 0 0-0.906 0.735-1.641 1.641-1.641s1.641 0.735 1.641 1.641c0 0 0 0 0 0 0 0.906-0.735 1.641-1.641 1.641s-1.641-0.735-1.641-1.641zM10.757 12.243c0-0.821 0.665-1.486 1.486-1.486s1.486 0.665 1.486 1.486c0 0.821-0.665 1.486-1.486 1.486s-1.486-0.665-1.486-1.486zM6.654 14c0-0.743 0.603-1.346 1.346-1.346s1.346 0.603 1.346 1.346c0 0.743-0.603 1.346-1.346 1.346s-1.346-0.603-1.346-1.346zM2.538 12.243c0-0.673 0.546-1.219 1.219-1.219s1.219 0.546 1.219 1.219c0 0.673-0.546 1.219-1.219 1.219s-1.219-0.546-1.219-1.219zM0.896 8c0-0.61 0.494-1.104 1.104-1.104s1.104 0.494 1.104 1.104c0 0.61-0.494 1.104-1.104 1.104s-1.104-0.494-1.104-1.104zM2.757 3.757c0 0 0 0 0 0 0-0.552 0.448-1 1-1s1 0.448 1 1c0 0 0 0 0 0 0 0.552-0.448 1-1 1s-1-0.448-1-1zM14.054 3.757c0 1-0.811 1.811-1.812 1.811s-1.812-0.811-1.812-1.811c0-1.001 0.811-1.811 1.812-1.811s1.812 0.811 1.812 1.811z" + } + }] +}; +exports.spinner6 = spinner6; \ No newline at end of file diff --git a/dist/icomoon/spinner7.js b/dist/icomoon/spinner7.js new file mode 100644 index 000000000..261a148c0 --- /dev/null +++ b/dist/icomoon/spinner7.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.spinner7 = void 0; +var spinner7 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6.5 14.5c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5zM0 8c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5zM13 8c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5zM1.904 3.404c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5zM11.096 12.596c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5zM1.904 12.596c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5zM11.096 3.404c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5z" + } + }] +}; +exports.spinner7 = spinner7; \ No newline at end of file diff --git a/dist/icomoon/spinner8.js b/dist/icomoon/spinner8.js new file mode 100644 index 000000000..326bd7381 --- /dev/null +++ b/dist/icomoon/spinner8.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.spinner8 = void 0; +var spinner8 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 16c-2.137 0-4.146-0.832-5.657-2.343s-2.343-3.52-2.343-5.657c0-1.513 0.425-2.986 1.228-4.261 0.781-1.239 1.885-2.24 3.193-2.895l0.672 1.341c-1.063 0.533-1.961 1.347-2.596 2.354-0.652 1.034-0.997 2.231-0.997 3.461 0 3.584 2.916 6.5 6.5 6.5s6.5-2.916 6.5-6.5c0-1.23-0.345-2.426-0.997-3.461-0.635-1.008-1.533-1.822-2.596-2.354l0.672-1.341c1.308 0.655 2.412 1.656 3.193 2.895 0.803 1.274 1.228 2.748 1.228 4.261 0 2.137-0.832 4.146-2.343 5.657s-3.52 2.343-5.657 2.343z" + } + }] +}; +exports.spinner8 = spinner8; \ No newline at end of file diff --git a/dist/icomoon/spinner9.js b/dist/icomoon/spinner9.js new file mode 100644 index 000000000..86a6f2e09 --- /dev/null +++ b/dist/icomoon/spinner9.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.spinner9 = void 0; +var spinner9 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.355 0-7.898 3.481-7.998 7.812 0.092-3.779 2.966-6.812 6.498-6.812 3.59 0 6.5 3.134 6.5 7 0 0.828 0.672 1.5 1.5 1.5s1.5-0.672 1.5-1.5c0-4.418-3.582-8-8-8zM8 16c4.355 0 7.898-3.481 7.998-7.812-0.092 3.779-2.966 6.812-6.498 6.812-3.59 0-6.5-3.134-6.5-7 0-0.828-0.672-1.5-1.5-1.5s-1.5 0.672-1.5 1.5c0 4.418 3.582 8 8 8z" + } + }] +}; +exports.spinner9 = spinner9; \ No newline at end of file diff --git a/dist/icomoon/spoonKnife.js b/dist/icomoon/spoonKnife.js new file mode 100644 index 000000000..bf4c6e3c7 --- /dev/null +++ b/dist/icomoon/spoonKnife.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.spoonKnife = void 0; +var spoonKnife = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M3.5 0c-1.657 0-3 1.567-3 3.5 0 1.655 0.985 3.042 2.308 3.406l-0.497 8.096c-0.034 0.549 0.389 0.998 0.939 0.998h0.5c0.55 0 0.972-0.449 0.939-0.998l-0.497-8.096c1.323-0.365 2.308-1.751 2.308-3.406 0-1.933-1.343-3.5-3-3.5zM13.583 0l-0.833 5h-0.625l-0.417-5h-0.417l-0.417 5h-0.625l-0.833-5h-0.417v6.5c0 0.276 0.224 0.5 0.5 0.5h1.302l-0.491 8.002c-0.034 0.549 0.389 0.998 0.939 0.998h0.5c0.55 0 0.972-0.449 0.939-0.998l-0.491-8.002h1.302c0.276 0 0.5-0.224 0.5-0.5v-6.5h-0.417z" + } + }] +}; +exports.spoonKnife = spoonKnife; \ No newline at end of file diff --git a/dist/icomoon/spotify.js b/dist/icomoon/spotify.js new file mode 100644 index 000000000..4e0dac853 --- /dev/null +++ b/dist/icomoon/spotify.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.spotify = void 0; +var spotify = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.4 0-8 3.6-8 8s3.6 8 8 8 8-3.6 8-8-3.559-8-8-8zM11.681 11.559c-0.159 0.241-0.441 0.319-0.681 0.159-1.881-1.159-4.241-1.4-7.041-0.759-0.281 0.081-0.519-0.119-0.6-0.359-0.081-0.281 0.119-0.519 0.359-0.6 3.041-0.681 5.681-0.4 7.759 0.881 0.281 0.119 0.322 0.438 0.203 0.678zM12.641 9.359c-0.2 0.281-0.559 0.4-0.841 0.2-2.159-1.319-5.441-1.719-7.959-0.919-0.319 0.081-0.681-0.081-0.759-0.4-0.081-0.319 0.081-0.681 0.4-0.759 2.919-0.881 6.519-0.441 9 1.081 0.238 0.119 0.359 0.519 0.159 0.797zM12.719 7.119c-2.559-1.519-6.841-1.681-9.281-0.919-0.4 0.119-0.8-0.119-0.919-0.481-0.119-0.4 0.119-0.8 0.481-0.919 2.841-0.841 7.519-0.681 10.481 1.081 0.359 0.2 0.481 0.681 0.281 1.041-0.203 0.278-0.681 0.397-1.044 0.197z" + } + }] +}; +exports.spotify = spotify; \ No newline at end of file diff --git a/dist/icomoon/stack.js b/dist/icomoon/stack.js new file mode 100644 index 000000000..3c75a05c0 --- /dev/null +++ b/dist/icomoon/stack.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.stack = void 0; +var stack = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16 5l-8-4-8 4 8 4 8-4zM8 2.328l5.345 2.672-5.345 2.672-5.345-2.672 5.345-2.672zM14.398 7.199l1.602 0.801-8 4-8-4 1.602-0.801 6.398 3.199zM14.398 10.199l1.602 0.801-8 4-8-4 1.602-0.801 6.398 3.199z" + } + }] +}; +exports.stack = stack; \ No newline at end of file diff --git a/dist/icomoon/stackoverflow.js b/dist/icomoon/stackoverflow.js new file mode 100644 index 000000000..02d01333e --- /dev/null +++ b/dist/icomoon/stackoverflow.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.stackoverflow = void 0; +var stackoverflow = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16 10v6h-16v-6h2v4h12v-4zM3 11h10v2h-10zM3.237 8.835l0.433-1.953 9.763 2.164-0.433 1.953zM4.37 4.821l0.845-1.813 9.063 4.226-0.845 1.813zM15.496 5.648l-1.218 1.587-7.934-6.088 0.88-1.147h0.91z" + } + }] +}; +exports.stackoverflow = stackoverflow; \ No newline at end of file diff --git a/dist/icomoon/starEmpty.js b/dist/icomoon/starEmpty.js new file mode 100644 index 000000000..8913ead06 --- /dev/null +++ b/dist/icomoon/starEmpty.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.starEmpty = void 0; +var starEmpty = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16 6.204l-5.528-0.803-2.472-5.009-2.472 5.009-5.528 0.803 4 3.899-0.944 5.505 4.944-2.599 4.944 2.599-0.944-5.505 4-3.899zM8 11.773l-3.492 1.836 0.667-3.888-2.825-2.753 3.904-0.567 1.746-3.537 1.746 3.537 3.904 0.567-2.825 2.753 0.667 3.888-3.492-1.836z" + } + }] +}; +exports.starEmpty = starEmpty; \ No newline at end of file diff --git a/dist/icomoon/starFull.js b/dist/icomoon/starFull.js new file mode 100644 index 000000000..6569ff0e5 --- /dev/null +++ b/dist/icomoon/starFull.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.starFull = void 0; +var starFull = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16 6.204l-5.528-0.803-2.472-5.009-2.472 5.009-5.528 0.803 4 3.899-0.944 5.505 4.944-2.599 4.944 2.599-0.944-5.505 4-3.899z" + } + }] +}; +exports.starFull = starFull; \ No newline at end of file diff --git a/dist/icomoon/starHalf.js b/dist/icomoon/starHalf.js new file mode 100644 index 000000000..3f42295e6 --- /dev/null +++ b/dist/icomoon/starHalf.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.starHalf = void 0; +var starHalf = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16 6.204l-5.528-0.803-2.472-5.009-2.472 5.009-5.528 0.803 4 3.899-0.944 5.505 4.944-2.599 4.944 2.599-0.944-5.505 4-3.899zM8 11.773l-0.015 0.008 0.015-8.918 1.746 3.537 3.904 0.567-2.825 2.753 0.667 3.888-3.492-1.836z" + } + }] +}; +exports.starHalf = starHalf; \ No newline at end of file diff --git a/dist/icomoon/statsBars.js b/dist/icomoon/statsBars.js new file mode 100644 index 000000000..23aa43018 --- /dev/null +++ b/dist/icomoon/statsBars.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.statsBars = void 0; +var statsBars = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 13h16v2h-16zM2 9h2v3h-2zM5 5h2v7h-2zM8 8h2v4h-2zM11 2h2v10h-2z" + } + }] +}; +exports.statsBars = statsBars; \ No newline at end of file diff --git a/dist/icomoon/statsBars2.js b/dist/icomoon/statsBars2.js new file mode 100644 index 000000000..7ac5834fe --- /dev/null +++ b/dist/icomoon/statsBars2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.statsBars2 = void 0; +var statsBars2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4.5 6h-3c-0.275 0-0.5 0.225-0.5 0.5v9c0 0.275 0.225 0.5 0.5 0.5h3c0.275 0 0.5-0.225 0.5-0.5v-9c0-0.275-0.225-0.5-0.5-0.5zM4.5 15h-3v-4h3v4zM9.5 4h-3c-0.275 0-0.5 0.225-0.5 0.5v11c0 0.275 0.225 0.5 0.5 0.5h3c0.275 0 0.5-0.225 0.5-0.5v-11c0-0.275-0.225-0.5-0.5-0.5zM9.5 15h-3v-5h3v5zM14.5 2h-3c-0.275 0-0.5 0.225-0.5 0.5v13c0 0.275 0.225 0.5 0.5 0.5h3c0.275 0 0.5-0.225 0.5-0.5v-13c0-0.275-0.225-0.5-0.5-0.5zM14.5 15h-3v-6h3v6z" + } + }] +}; +exports.statsBars2 = statsBars2; \ No newline at end of file diff --git a/dist/icomoon/statsDots.js b/dist/icomoon/statsDots.js new file mode 100644 index 000000000..acdb0d030 --- /dev/null +++ b/dist/icomoon/statsDots.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.statsDots = void 0; +var statsDots = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M2 14h14v2h-16v-16h2zM4.5 13c-0.828 0-1.5-0.672-1.5-1.5s0.672-1.5 1.5-1.5c0.044 0 0.088 0.002 0.131 0.006l1.612-2.687c-0.154-0.235-0.243-0.517-0.243-0.819 0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5c0 0.302-0.090 0.583-0.243 0.819l1.612 2.687c0.043-0.004 0.087-0.006 0.131-0.006 0.033 0 0.066 0.001 0.099 0.004l2.662-4.658c-0.165-0.241-0.261-0.532-0.261-0.845 0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5c0 0.828-0.672 1.5-1.5 1.5-0.033 0-0.066-0.001-0.099-0.004l-2.662 4.658c0.165 0.241 0.261 0.532 0.261 0.845 0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5c0-0.302 0.090-0.583 0.243-0.819l-1.612-2.687c-0.043 0.004-0.087 0.006-0.131 0.006s-0.088-0.002-0.131-0.006l-1.612 2.687c0.154 0.235 0.243 0.517 0.243 0.819 0 0.828-0.672 1.5-1.5 1.5z" + } + }] +}; +exports.statsDots = statsDots; \ No newline at end of file diff --git a/dist/icomoon/steam.js b/dist/icomoon/steam.js new file mode 100644 index 000000000..26d3ed046 --- /dev/null +++ b/dist/icomoon/steam.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.steam = void 0; +var steam = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11 4.5c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5zM14.975 2.025c-1.367-1.367-3.583-1.367-4.95 0-0.556 0.556-0.886 1.252-0.989 1.975v0l-3.198 4.847c-0.43 0.022-0.856 0.132-1.249 0.328l-2.467-1.928c-0.571-0.446-1.396-0.345-1.842 0.226s-0.345 1.396 0.226 1.842l2.436 1.905c-0.265 1.043 0.010 2.196 0.827 3.012 1.233 1.233 3.232 1.233 4.465 0 0.757-0.757 1.049-1.804 0.876-2.784l3.891-3.484c0.723-0.104 1.419-0.434 1.975-0.989 1.367-1.367 1.367-3.583 0-4.95zM6 14.105c-1.162 0-2.105-0.942-2.105-2.105 0-0.011 0.001-0.022 0.001-0.033l1.046 0.817c0.24 0.188 0.525 0.278 0.807 0.278 0.39 0 0.776-0.173 1.035-0.504 0.446-0.571 0.345-1.396-0.226-1.842l-0.992-0.776c0.14-0.029 0.285-0.045 0.434-0.045 1.162 0 2.105 0.942 2.105 2.105s-0.942 2.105-2.105 2.105zM12.5 7c-1.381 0-2.5-1.119-2.5-2.5s1.119-2.5 2.5-2.5 2.5 1.119 2.5 2.5-1.119 2.5-2.5 2.5z" + } + }] +}; +exports.steam = steam; \ No newline at end of file diff --git a/dist/icomoon/steam2.js b/dist/icomoon/steam2.js new file mode 100644 index 000000000..4625c32be --- /dev/null +++ b/dist/icomoon/steam2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.steam2 = void 0; +var steam2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4.749 13.063c0.424 0 0.84-0.205 1.093-0.585 0.402-0.603 0.239-1.418-0.364-1.82l-1.032-0.688c0.177-0.048 0.362-0.074 0.554-0.074 1.162 0 2.105 0.942 2.105 2.105s-0.942 2.105-2.105 2.105c-1.131 0-2.054-0.893-2.102-2.012l1.124 0.749c0.224 0.149 0.477 0.221 0.727 0.221zM13.333 0c1.467 0 2.667 1.2 2.667 2.667v10.666c0 1.468-1.2 2.667-2.667 2.667h-10.666c-1.467 0-2.667-1.199-2.667-2.667v-3.172l1.896 1.264c-0.182 0.987 0.108 2.044 0.872 2.808 1.233 1.233 3.232 1.233 4.465 0 0.757-0.757 1.049-1.804 0.876-2.784l3.892-3.484c0.723-0.104 1.419-0.433 1.975-0.989 1.367-1.367 1.367-3.583 0-4.95s-3.583-1.367-4.95 0c-0.556 0.556-0.886 1.252-0.989 1.975v0l-3.198 4.847c-0.498 0.025-0.99 0.168-1.433 0.428l-3.404-2.269v-4.339c0-1.467 1.2-2.667 2.667-2.667h10.666zM14 4.5c0-1.381-1.119-2.5-2.5-2.5s-2.5 1.119-2.5 2.5 1.119 2.5 2.5 2.5 2.5-1.119 2.5-2.5zM10 4.5c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5-0.672 1.5-1.5 1.5-1.5-0.672-1.5-1.5z" + } + }] +}; +exports.steam2 = steam2; \ No newline at end of file diff --git a/dist/icomoon/stop.js b/dist/icomoon/stop.js new file mode 100644 index 000000000..316d2f2ba --- /dev/null +++ b/dist/icomoon/stop.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.stop = void 0; +var stop = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM8 14.5c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5 6.5 2.91 6.5 6.5-2.91 6.5-6.5 6.5zM5 5h6v6h-6z" + } + }] +}; +exports.stop = stop; \ No newline at end of file diff --git a/dist/icomoon/stop2.js b/dist/icomoon/stop2.js new file mode 100644 index 000000000..a2b4cee5a --- /dev/null +++ b/dist/icomoon/stop2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.stop2 = void 0; +var stop2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M2 2h12v12h-12z" + } + }] +}; +exports.stop2 = stop2; \ No newline at end of file diff --git a/dist/icomoon/stopwatch.js b/dist/icomoon/stopwatch.js new file mode 100644 index 000000000..1dc5b2fed --- /dev/null +++ b/dist/icomoon/stopwatch.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.stopwatch = void 0; +var stopwatch = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 3.019v-1.019h2v-1c0-0.552-0.448-1-1-1h-3c-0.552 0-1 0.448-1 1v1h2v1.019c-3.356 0.255-6 3.059-6 6.481 0 3.59 2.91 6.5 6.5 6.5s6.5-2.91 6.5-6.5c0-3.422-2.644-6.226-6-6.481zM11.036 13.036c-0.944 0.944-2.2 1.464-3.536 1.464s-2.591-0.52-3.536-1.464c-0.944-0.944-1.464-2.2-1.464-3.536s0.52-2.591 1.464-3.536c0.907-0.907 2.101-1.422 3.377-1.462l-0.339 4.907c-0.029 0.411 0.195 0.591 0.497 0.591s0.527-0.18 0.497-0.591l-0.339-4.907c1.276 0.040 2.47 0.555 3.377 1.462 0.944 0.944 1.464 2.2 1.464 3.536s-0.52 2.591-1.464 3.536z" + } + }] +}; +exports.stopwatch = stopwatch; \ No newline at end of file diff --git a/dist/icomoon/strikethrough.js b/dist/icomoon/strikethrough.js new file mode 100644 index 000000000..cb3c2c4eb --- /dev/null +++ b/dist/icomoon/strikethrough.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.strikethrough = void 0; +var strikethrough = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16 8v1h-3.664c0.43 0.602 0.664 1.292 0.664 2 0 1.107-0.573 2.172-1.572 2.921-0.927 0.696-2.145 1.079-3.428 1.079s-2.501-0.383-3.428-1.079c-0.999-0.749-1.572-1.814-1.572-2.921h2c0 1.084 1.374 2 3 2s3-0.916 3-2c0-1.084-1.374-2-3-2h-8v-1h4.68c-0.037-0.026-0.073-0.052-0.108-0.079-0.999-0.749-1.572-1.814-1.572-2.921s0.573-2.172 1.572-2.921c0.927-0.696 2.145-1.079 3.428-1.079s2.501 0.383 3.428 1.079c0.999 0.749 1.572 1.814 1.572 2.921h-2c0-1.084-1.374-2-3-2s-3 0.916-3 2c0 1.084 1.374 2 3 2 1.234 0 2.407 0.354 3.32 1h4.68z" + } + }] +}; +exports.strikethrough = strikethrough; \ No newline at end of file diff --git a/dist/icomoon/stumbleupon.js b/dist/icomoon/stumbleupon.js new file mode 100644 index 000000000..7fe161330 --- /dev/null +++ b/dist/icomoon/stumbleupon.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.stumbleupon = void 0; +var stumbleupon = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 5c-0.55 0-1 0.45-1 1v4c0 1.653-1.347 3-3 3s-3-1.347-3-3v-2h2v2c0 0.55 0.45 1 1 1s1-0.45 1-1v-4c0-1.653 1.347-3 3-3s3 1.347 3 2.781v0.969l-1.281 0.375-0.719-0.375v-0.969c0-0.331-0.45-0.781-1-0.781z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15 10c0 1.653-1.347 3-3 3s-3-1.347-3-3.219v-1.938l0.719 0.375 1.281-0.375v1.938c0 0.769 0.45 1.219 1 1.219s1-0.45 1-1v-2h2v2z" + } + }] +}; +exports.stumbleupon = stumbleupon; \ No newline at end of file diff --git a/dist/icomoon/stumbleupon2.js b/dist/icomoon/stumbleupon2.js new file mode 100644 index 000000000..d5e596481 --- /dev/null +++ b/dist/icomoon/stumbleupon2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.stumbleupon2 = void 0; +var stumbleupon2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.313 0h-10.625c-1.478 0-2.688 1.209-2.688 2.688v10.625c0 1.478 1.209 2.688 2.688 2.688h10.625c1.478 0 2.688-1.209 2.688-2.688v-10.625c0-1.478-1.209-2.688-2.688-2.688zM8 5c-0.551 0-1 0.449-1 1v4c0 1.654-1.346 3-3 3s-3-1.346-3-3v-2h2v2c0 0.551 0.449 1 1 1s1-0.449 1-1v-4c0-1.654 1.346-3 3-3s3 1.346 3 2.781v0.969l-1.281 0.375-0.719-0.375v-0.969c0-0.333-0.449-0.781-1-0.781zM15 10c0 1.654-1.346 3-3 3s-3-1.346-3-3.219v-1.938l0.719 0.375 1.281-0.375v1.938c0 0.77 0.449 1.219 1 1.219s1-0.449 1-1v-2h2v2z" + } + }] +}; +exports.stumbleupon2 = stumbleupon2; \ No newline at end of file diff --git a/dist/icomoon/subscript.js b/dist/icomoon/subscript.js new file mode 100644 index 000000000..5821f7c8c --- /dev/null +++ b/dist/icomoon/subscript.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.subscript = void 0; +var subscript = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12 14.219v0.781h2v1h-3v-2.281l2-0.938v-0.781h-2v-1h3v2.281zM10.563 4h-2.125l-2.938 2.938-2.938-2.938h-2.125l4 4-4 4h2.125l2.938-2.938 2.938 2.938h2.125l-4-4z" + } + }] +}; +exports.subscript = subscript; \ No newline at end of file diff --git a/dist/icomoon/subscript2.js b/dist/icomoon/subscript2.js new file mode 100644 index 000000000..fc0a64f37 --- /dev/null +++ b/dist/icomoon/subscript2.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.subscript2 = void 0; +var subscript2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M3.032 13l0.9-3h4.137l0.9 3h1.775l-3-10h-3.488l-3 10h1.776zM5.432 5h1.137l0.9 3h-2.937l0.9-3zM16 3l-2.5 4-2.5-4h5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.5 13h-1c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5h2c0.276 0 0.5-0.224 0.5-0.5s-0.224-0.5-0.5-0.5h-2c-0.827 0-1.5 0.673-1.5 1.5 0 0.384 0.145 0.734 0.383 1 0.275 0.307 0.674 0.5 1.117 0.5h1c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5h-2c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5h2c0.827 0 1.5-0.673 1.5-1.5 0-0.384-0.145-0.734-0.383-1-0.275-0.307-0.674-0.5-1.117-0.5z" + } + }] +}; +exports.subscript2 = subscript2; \ No newline at end of file diff --git a/dist/icomoon/sun.js b/dist/icomoon/sun.js new file mode 100644 index 000000000..4841bb25d --- /dev/null +++ b/dist/icomoon/sun.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.sun = void 0; +var sun = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 13c0.552 0 1 0.448 1 1v1c0 0.552-0.448 1-1 1s-1-0.448-1-1v-1c0-0.552 0.448-1 1-1zM8 3c-0.552 0-1-0.448-1-1v-1c0-0.552 0.448-1 1-1s1 0.448 1 1v1c0 0.552-0.448 1-1 1zM15 7c0.552 0 1 0.448 1 1s-0.448 1-1 1h-1c-0.552 0-1-0.448-1-1s0.448-1 1-1h1zM3 8c0 0.552-0.448 1-1 1h-1c-0.552 0-1-0.448-1-1s0.448-1 1-1h1c0.552 0 1 0.448 1 1zM12.95 11.536l0.707 0.707c0.39 0.39 0.39 1.024 0 1.414s-1.024 0.39-1.414 0l-0.707-0.707c-0.39-0.39-0.39-1.024 0-1.414s1.024-0.39 1.414 0zM3.050 4.464l-0.707-0.707c-0.391-0.391-0.391-1.024 0-1.414s1.024-0.391 1.414 0l0.707 0.707c0.391 0.391 0.391 1.024 0 1.414s-1.024 0.391-1.414 0zM12.95 4.464c-0.39 0.391-1.024 0.391-1.414 0s-0.39-1.024 0-1.414l0.707-0.707c0.39-0.391 1.024-0.391 1.414 0s0.39 1.024 0 1.414l-0.707 0.707zM3.050 11.536c0.39-0.39 1.024-0.39 1.414 0s0.391 1.024 0 1.414l-0.707 0.707c-0.391 0.39-1.024 0.39-1.414 0s-0.391-1.024 0-1.414l0.707-0.707z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 4c-2.209 0-4 1.791-4 4s1.791 4 4 4c2.209 0 4-1.791 4-4s-1.791-4-4-4zM8 10.5c-1.381 0-2.5-1.119-2.5-2.5s1.119-2.5 2.5-2.5 2.5 1.119 2.5 2.5-1.119 2.5-2.5 2.5z" + } + }] +}; +exports.sun = sun; \ No newline at end of file diff --git a/dist/icomoon/superscript.js b/dist/icomoon/superscript.js new file mode 100644 index 000000000..977d44768 --- /dev/null +++ b/dist/icomoon/superscript.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.superscript = void 0; +var superscript = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12 3.219v0.781h2v1h-3v-2.281l2-0.938v-0.781h-2v-1h3v2.281zM10.563 4h-2.125l-2.938 2.938-2.938-2.938h-2.125l4 4-4 4h2.125l2.938-2.938 2.938 2.938h2.125l-4-4z" + } + }] +}; +exports.superscript = superscript; \ No newline at end of file diff --git a/dist/icomoon/superscript2.js b/dist/icomoon/superscript2.js new file mode 100644 index 000000000..2a8edb6fc --- /dev/null +++ b/dist/icomoon/superscript2.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.superscript2 = void 0; +var superscript2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M3.032 13l0.9-3h4.137l0.9 3h1.775l-3-10h-3.488l-3 10h1.776zM5.432 5h1.137l0.9 3h-2.937l0.9-3zM11 13l2.5-4 2.5 4h-5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.5 2h-1c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5h2c0.276 0 0.5-0.224 0.5-0.5s-0.224-0.5-0.5-0.5h-2c-0.827 0-1.5 0.673-1.5 1.5 0 0.384 0.145 0.734 0.383 1 0.275 0.307 0.674 0.5 1.117 0.5h1c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5h-2c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5h2c0.827 0 1.5-0.673 1.5-1.5 0-0.384-0.145-0.734-0.383-1-0.275-0.307-0.674-0.5-1.117-0.5z" + } + }] +}; +exports.superscript2 = superscript2; \ No newline at end of file diff --git a/dist/icomoon/svg.js b/dist/icomoon/svg.js new file mode 100644 index 000000000..26610fc0b --- /dev/null +++ b/dist/icomoon/svg.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.svg = void 0; +var svg = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.5 6.5c-0.444 0-0.843 0.193-1.118 0.5h-2.968l2.099-2.099c0.411 0.023 0.83-0.123 1.144-0.437 0.586-0.586 0.586-1.536 0-2.121s-1.536-0.586-2.121 0c-0.314 0.314-0.46 0.733-0.437 1.144l-2.099 2.099v-2.968c0.307-0.275 0.5-0.674 0.5-1.118 0-0.828-0.672-1.5-1.5-1.5s-1.5 0.672-1.5 1.5c0 0.444 0.193 0.843 0.5 1.118v2.968l-2.099-2.099c0.023-0.411-0.123-0.83-0.437-1.144-0.586-0.586-1.536-0.586-2.121 0s-0.586 1.536 0 2.121c0.314 0.314 0.733 0.46 1.144 0.437l2.099 2.099h-2.968c-0.275-0.307-0.674-0.5-1.118-0.5-0.828 0-1.5 0.672-1.5 1.5s0.672 1.5 1.5 1.5c0.444 0 0.843-0.193 1.118-0.5h2.968l-2.099 2.099c-0.411-0.023-0.83 0.123-1.144 0.437-0.586 0.586-0.586 1.536 0 2.121s1.536 0.586 2.121 0c0.314-0.314 0.46-0.733 0.437-1.144l2.099-2.099v2.968c-0.307 0.275-0.5 0.674-0.5 1.118 0 0.828 0.672 1.5 1.5 1.5s1.5-0.672 1.5-1.5c0-0.444-0.193-0.843-0.5-1.118v-2.968l2.099 2.099c-0.023 0.411 0.123 0.83 0.437 1.144 0.586 0.586 1.536 0.586 2.121 0s0.586-1.536 0-2.121c-0.314-0.314-0.733-0.46-1.144-0.437l-2.099-2.099h2.968c0.275 0.307 0.674 0.5 1.118 0.5 0.828 0 1.5-0.672 1.5-1.5s-0.672-1.5-1.5-1.5z" + } + }] +}; +exports.svg = svg; \ No newline at end of file diff --git a/dist/icomoon/switchIcon.js b/dist/icomoon/switchIcon.js new file mode 100644 index 000000000..ea9767ef6 --- /dev/null +++ b/dist/icomoon/switchIcon.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.switchIcon = void 0; +var switchIcon = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M10 2.29v2.124c0.566 0.247 1.086 0.6 1.536 1.050 0.944 0.944 1.464 2.2 1.464 3.536s-0.52 2.591-1.464 3.536c-0.944 0.944-2.2 1.464-3.536 1.464s-2.591-0.52-3.536-1.464c-0.944-0.944-1.464-2.2-1.464-3.536s0.52-2.591 1.464-3.536c0.45-0.45 0.97-0.803 1.536-1.050v-2.124c-2.891 0.861-5 3.539-5 6.71 0 3.866 3.134 7 7 7s7-3.134 7-7c0-3.171-2.109-5.849-5-6.71zM7 0h2v8h-2z" + } + }] +}; +exports.switchIcon = switchIcon; \ No newline at end of file diff --git a/dist/icomoon/tab.js b/dist/icomoon/tab.js new file mode 100644 index 000000000..9f99c7881 --- /dev/null +++ b/dist/icomoon/tab.js @@ -0,0 +1,35 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.tab = void 0; +var tab = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15 0h1v8h-1v-8z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 8h1v8h-1v-8z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5 11h11v2h-11v2.5l-3.5-3.5 3.5-3.5v2.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11 5h-11v-2h11v-2.5l3.5 3.5-3.5 3.5z" + } + }] +}; +exports.tab = tab; \ No newline at end of file diff --git a/dist/icomoon/table.js b/dist/icomoon/table.js new file mode 100644 index 000000000..477a1e216 --- /dev/null +++ b/dist/icomoon/table.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.table = void 0; +var table = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 3v11h16v-11h-16zM6 10v-2h4v2h-4zM10 11v2h-4v-2h4zM10 5v2h-4v-2h4zM5 5v2h-4v-2h4zM1 8h4v2h-4v-2zM11 8h4v2h-4v-2zM11 7v-2h4v2h-4zM1 11h4v2h-4v-2zM11 13v-2h4v2h-4z" + } + }] +}; +exports.table = table; \ No newline at end of file diff --git a/dist/icomoon/table2.js b/dist/icomoon/table2.js new file mode 100644 index 000000000..e96491e10 --- /dev/null +++ b/dist/icomoon/table2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.table2 = void 0; +var table2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 1v14h16v-14h-16zM6 10v-3h4v3h-4zM10 11v3h-4v-3h4zM10 3v3h-4v-3h4zM5 3v3h-4v-3h4zM1 7h4v3h-4v-3zM11 7h4v3h-4v-3zM11 6v-3h4v3h-4zM1 11h4v3h-4v-3zM11 14v-3h4v3h-4z" + } + }] +}; +exports.table2 = table2; \ No newline at end of file diff --git a/dist/icomoon/tablet.js b/dist/icomoon/tablet.js new file mode 100644 index 000000000..9593662cb --- /dev/null +++ b/dist/icomoon/tablet.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.tablet = void 0; +var tablet = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12.5 0h-10c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h10c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM7.5 15.5c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5 0.5 0.224 0.5 0.5-0.224 0.5-0.5 0.5zM12 14h-9v-12h9v12z" + } + }] +}; +exports.tablet = tablet; \ No newline at end of file diff --git a/dist/icomoon/target.js b/dist/icomoon/target.js new file mode 100644 index 000000000..c8c413bc3 --- /dev/null +++ b/dist/icomoon/target.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.target = void 0; +var target = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16 7h-1.577c-0.432-2.785-2.638-4.991-5.423-5.423v-1.577h-2v1.577c-2.785 0.432-4.991 2.638-5.423 5.423h-1.577v2h1.577c0.432 2.785 2.638 4.991 5.423 5.423v1.577h2v-1.577c2.785-0.432 4.991-2.638 5.423-5.423h1.577v-2zM12.388 7h-1.559c-0.301-0.852-0.977-1.528-1.829-1.829v-1.559c1.68 0.383 3.005 1.708 3.388 3.388zM8 9c-0.552 0-1-0.448-1-1s0.448-1 1-1c0.552 0 1 0.448 1 1s-0.448 1-1 1zM7 3.612v1.559c-0.852 0.301-1.528 0.977-1.829 1.829h-1.559c0.383-1.68 1.708-3.005 3.388-3.388zM3.612 9h1.559c0.301 0.852 0.977 1.528 1.829 1.829v1.559c-1.68-0.383-3.005-1.708-3.388-3.388zM9 12.388v-1.559c0.852-0.301 1.528-0.977 1.829-1.829h1.559c-0.383 1.68-1.708 3.005-3.388 3.388z" + } + }] +}; +exports.target = target; \ No newline at end of file diff --git a/dist/icomoon/telegram.js b/dist/icomoon/telegram.js new file mode 100644 index 000000000..4716d0369 --- /dev/null +++ b/dist/icomoon/telegram.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.telegram = void 0; +var telegram = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.419 0-8 3.581-8 8s3.581 8 8 8 8-3.581 8-8-3.581-8-8-8zM11.931 5.484l-1.313 6.184c-0.091 0.441-0.356 0.544-0.725 0.341l-2-1.478-0.959 0.934c-0.112 0.109-0.2 0.2-0.4 0.2-0.259 0-0.216-0.097-0.303-0.344l-0.681-2.237-1.978-0.616c-0.428-0.131-0.431-0.425 0.097-0.634l7.706-2.975c0.35-0.159 0.691 0.084 0.556 0.625z" + } + }] +}; +exports.telegram = telegram; \ No newline at end of file diff --git a/dist/icomoon/terminal.js b/dist/icomoon/terminal.js new file mode 100644 index 000000000..d3b699e7a --- /dev/null +++ b/dist/icomoon/terminal.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.terminal = void 0; +var terminal = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 1v14h16v-14h-16zM15 14h-14v-12h14v12zM14 3h-12v10h12v-10zM7 8h-1v1h-1v1h-1v-1h1v-1h1v-1h-1v-1h-1v-1h1v1h1v1h1v1zM11 10h-3v-1h3v1z" + } + }] +}; +exports.terminal = terminal; \ No newline at end of file diff --git a/dist/icomoon/textColor.js b/dist/icomoon/textColor.js new file mode 100644 index 000000000..5c8264380 --- /dev/null +++ b/dist/icomoon/textColor.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.textColor = void 0; +var textColor = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5.032 13l0.9-3h4.137l0.9 3h1.775l-3-10h-3.488l-3 10h1.776zM7.432 5h1.137l0.9 3h-2.937l0.9-3z" + } + }] +}; +exports.textColor = textColor; \ No newline at end of file diff --git a/dist/icomoon/textHeight.js b/dist/icomoon/textHeight.js new file mode 100644 index 000000000..375e8069b --- /dev/null +++ b/dist/icomoon/textHeight.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.textHeight = void 0; +var textHeight = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14 12h2l-2.5 3-2.5-3h2v-8h-2l2.5-3 2.5 3h-2zM10 1v4l-1-2h-3v11h2v1h-6v-1h2v-11h-3l-1 2v-4z" + } + }] +}; +exports.textHeight = textHeight; \ No newline at end of file diff --git a/dist/icomoon/textWidth.js b/dist/icomoon/textWidth.js new file mode 100644 index 000000000..1f1ce88dc --- /dev/null +++ b/dist/icomoon/textWidth.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.textWidth = void 0; +var textWidth = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4 14v2l-3-2.5 3-2.5v2h8v-2l3 2.5-3 2.5v-2zM13 1v4l-1-2h-3v7h2v1h-6v-1h2v-7h-3l-1 2v-4z" + } + }] +}; +exports.textWidth = textWidth; \ No newline at end of file diff --git a/dist/icomoon/ticket.js b/dist/icomoon/ticket.js new file mode 100644 index 000000000..111f393a3 --- /dev/null +++ b/dist/icomoon/ticket.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ticket = void 0; +var ticket = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9 5l2 2-4 4-2-2zM15.649 4.649l-1.149-1.149-0.5 0.5c-0.256 0.256-0.61 0.414-1 0.414-0.781 0-1.414-0.633-1.414-1.414 0-0.391 0.158-0.744 0.415-1l0.5-0.5-1.149-1.149c-0.468-0.468-1.235-0.468-1.703 0l-9.297 9.297c-0.468 0.468-0.468 1.235 0 1.703l1.149 1.149 0.499-0.499c0.256-0.256 0.61-0.415 1.001-0.415 0.781 0 1.414 0.633 1.414 1.414 0 0.391-0.158 0.744-0.415 1l-0.5 0.5 1.149 1.149c0.468 0.468 1.234 0.468 1.703 0l9.297-9.297c0.468-0.468 0.468-1.235 0-1.703zM7 13l-4-4 6-6 4 4-6 6z" + } + }] +}; +exports.ticket = ticket; \ No newline at end of file diff --git a/dist/icomoon/tongue.js b/dist/icomoon/tongue.js new file mode 100644 index 000000000..5438ec6c8 --- /dev/null +++ b/dist/icomoon/tongue.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.tongue = void 0; +var tongue = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5zM4 5c0-0.552 0.448-1 1-1s1 0.448 1 1c0 0.552-0.448 1-1 1s-1-0.448-1-1zM10 5c0-0.552 0.448-1 1-1s1 0.448 1 1c0 0.552-0.448 1-1 1s-1-0.448-1-1zM12 9v1h-1v1.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5v-1.5h-4v-1h8z" + } + }] +}; +exports.tongue = tongue; \ No newline at end of file diff --git a/dist/icomoon/tongue2.js b/dist/icomoon/tongue2.js new file mode 100644 index 000000000..982c58d9a --- /dev/null +++ b/dist/icomoon/tongue2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.tongue2 = void 0; +var tongue2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM5 4c0.552 0 1 0.448 1 1s-0.448 1-1 1-1-0.448-1-1 0.448-1 1-1zM12 10h-1v1.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5v-1.5h-4v-1h8v1zM11 6c-0.552 0-1-0.448-1-1s0.448-1 1-1 1 0.448 1 1-0.448 1-1 1z" + } + }] +}; +exports.tongue2 = tongue2; \ No newline at end of file diff --git a/dist/icomoon/tree.js b/dist/icomoon/tree.js new file mode 100644 index 000000000..a283e3902 --- /dev/null +++ b/dist/icomoon/tree.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.tree = void 0; +var tree = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.25 12h-0.25v-3.25c0-0.965-0.785-1.75-1.75-1.75h-4.25v-2h0.25c0.412 0 0.75-0.338 0.75-0.75v-2.5c0-0.413-0.338-0.75-0.75-0.75h-2.5c-0.412 0-0.75 0.337-0.75 0.75v2.5c0 0.412 0.338 0.75 0.75 0.75h0.25v2h-4.25c-0.965 0-1.75 0.785-1.75 1.75v3.25h-0.25c-0.412 0-0.75 0.338-0.75 0.75v2.5c0 0.412 0.338 0.75 0.75 0.75h2.5c0.413 0 0.75-0.338 0.75-0.75v-2.5c0-0.412-0.337-0.75-0.75-0.75h-0.25v-3h4v3h-0.25c-0.412 0-0.75 0.338-0.75 0.75v2.5c0 0.412 0.338 0.75 0.75 0.75h2.5c0.412 0 0.75-0.338 0.75-0.75v-2.5c0-0.412-0.338-0.75-0.75-0.75h-0.25v-3h4v3h-0.25c-0.412 0-0.75 0.338-0.75 0.75v2.5c0 0.412 0.338 0.75 0.75 0.75h2.5c0.412 0 0.75-0.338 0.75-0.75v-2.5c0-0.412-0.338-0.75-0.75-0.75zM3 15h-2v-2h2v2zM9 15h-2v-2h2v2zM7 4v-2h2v2h-2zM15 15h-2v-2h2v2z" + } + }] +}; +exports.tree = tree; \ No newline at end of file diff --git a/dist/icomoon/trello.js b/dist/icomoon/trello.js new file mode 100644 index 000000000..24af9161f --- /dev/null +++ b/dist/icomoon/trello.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.trello = void 0; +var trello = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.5 0h-13c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM7 12c0 0.55-0.45 1-1 1h-2c-0.55 0-1-0.45-1-1v-8c0-0.55 0.45-1 1-1h2c0.55 0 1 0.45 1 1v8zM13 9c0 0.55-0.45 1-1 1h-2c-0.55 0-1-0.45-1-1v-5c0-0.55 0.45-1 1-1h2c0.55 0 1 0.45 1 1v5z" + } + }] +}; +exports.trello = trello; \ No newline at end of file diff --git a/dist/icomoon/trophy.js b/dist/icomoon/trophy.js new file mode 100644 index 000000000..1d3cb5e90 --- /dev/null +++ b/dist/icomoon/trophy.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.trophy = void 0; +var trophy = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13 3v-2h-10v2h-3v2c0 1.657 1.343 3 3 3 0.314 0 0.616-0.048 0.9-0.138 0.721 1.031 1.822 1.778 3.1 2.037v3.1h-1c-1.105 0-2 0.895-2 2h8c0-1.105-0.895-2-2-2h-1v-3.1c1.278-0.259 2.378-1.006 3.1-2.037 0.284 0.089 0.587 0.138 0.9 0.138 1.657 0 3-1.343 3-3v-2h-3zM3 6.813c-0.999 0-1.813-0.813-1.813-1.813v-1h1.813v1c0 0.628 0.116 1.229 0.327 1.782-0.106 0.019-0.216 0.030-0.327 0.030zM14.813 5c0 0.999-0.813 1.813-1.813 1.813-0.112 0-0.221-0.011-0.327-0.030 0.211-0.554 0.327-1.154 0.327-1.782v-1h1.813v1z" + } + }] +}; +exports.trophy = trophy; \ No newline at end of file diff --git a/dist/icomoon/truck.js b/dist/icomoon/truck.js new file mode 100644 index 000000000..41712d911 --- /dev/null +++ b/dist/icomoon/truck.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.truck = void 0; +var truck = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16 9l-2-4h-3v-2c0-0.55-0.45-1-1-1h-9c-0.55 0-1 0.45-1 1v8l1 1h1.268c-0.17 0.294-0.268 0.636-0.268 1 0 1.105 0.895 2 2 2s2-0.895 2-2c0-0.364-0.098-0.706-0.268-1h5.536c-0.17 0.294-0.268 0.636-0.268 1 0 1.105 0.895 2 2 2s2-0.895 2-2c0-0.364-0.098-0.706-0.268-1h1.268v-3zM11 9v-3h2.073l1.5 3h-3.573z" + } + }] +}; +exports.truck = truck; \ No newline at end of file diff --git a/dist/icomoon/tumblr.js b/dist/icomoon/tumblr.js new file mode 100644 index 000000000..13b3cfa54 --- /dev/null +++ b/dist/icomoon/tumblr.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.tumblr = void 0; +var tumblr = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9.001 7l-0 3.659c0 0.928-0.012 1.463 0.086 1.727 0.098 0.262 0.342 0.534 0.609 0.691 0.354 0.212 0.758 0.318 1.214 0.318 0.81 0 1.289-0.107 2.090-0.633v2.405c-0.683 0.321-1.279 0.509-1.833 0.639-0.555 0.129-1.154 0.194-1.798 0.194-0.732 0-1.163-0.092-1.725-0.276-0.562-0.185-1.042-0.45-1.438-0.79-0.398-0.343-0.672-0.706-0.826-1.091s-0.23-0.944-0.23-1.676v-5.611h-2.147v-2.266c0.628-0.204 1.331-0.497 1.778-0.877 0.449-0.382 0.809-0.839 1.080-1.374 0.272-0.534 0.459-1.214 0.561-2.039h2.579l-0 4h3.999v3h-3.999z" + } + }] +}; +exports.tumblr = tumblr; \ No newline at end of file diff --git a/dist/icomoon/tumblr2.js b/dist/icomoon/tumblr2.js new file mode 100644 index 000000000..90cb9a3f9 --- /dev/null +++ b/dist/icomoon/tumblr2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.tumblr2 = void 0; +var tumblr2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.5 0h-13c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM11.434 12.884c-0.472 0.222-0.9 0.378-1.281 0.469-0.381 0.088-0.797 0.134-1.241 0.134-0.506 0-0.803-0.063-1.191-0.191s-0.719-0.309-0.994-0.544c-0.275-0.238-0.463-0.488-0.569-0.753s-0.159-0.65-0.159-1.156v-3.872h-1.5v-1.563c0.434-0.141 0.938-0.344 1.244-0.606 0.309-0.263 0.559-0.578 0.744-0.947 0.188-0.369 0.316-0.837 0.388-1.406h1.569v2.55h2.556v1.972h-2.553v2.831c0 0.641-0.009 1.009 0.059 1.191s0.238 0.369 0.422 0.475c0.244 0.147 0.525 0.219 0.838 0.219 0.559 0 1.116-0.181 1.669-0.544v1.741z" + } + }] +}; +exports.tumblr2 = tumblr2; \ No newline at end of file diff --git a/dist/icomoon/tux.js b/dist/icomoon/tux.js new file mode 100644 index 000000000..b603d7413 --- /dev/null +++ b/dist/icomoon/tux.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.tux = void 0; +var tux = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8.87 11.514c-1.28 0.596-2.471 0.589-3.271 0.532-0.954-0.069-1.721-0.33-2.058-0.558-0.208-0.141-0.49-0.086-0.631 0.122s-0.086 0.49 0.122 0.631c0.542 0.367 1.501 0.64 2.503 0.712 0.17 0.012 0.356 0.020 0.557 0.020 0.872 0 1.979-0.083 3.163-0.634 0.228-0.106 0.326-0.376 0.22-0.604s-0.376-0.326-0.604-0.22zM13.921 10.841c0.044-3.948 0.449-11.409-7.109-10.806-7.463 0.601-5.484 8.484-5.595 11.124-0.099 1.397-0.562 3.104-1.217 4.841h2.017c0.207-0.736 0.36-1.464 0.425-2.159 0.122 0.085 0.252 0.167 0.391 0.245 0.226 0.133 0.42 0.31 0.626 0.497 0.48 0.438 1.025 0.934 2.089 0.996 0.071 0.004 0.143 0.006 0.214 0.006 1.077 0 1.813-0.471 2.404-0.85 0.283-0.181 0.528-0.338 0.759-0.413 0.655-0.205 1.227-0.536 1.655-0.957 0.067-0.066 0.129-0.133 0.187-0.202 0.238 0.873 0.564 1.856 0.926 2.836h4.307c-1.034-1.597-2.101-3.162-2.079-5.159zM1.939 8.693c0-0 0-0-0-0.001-0.074-1.288 0.542-2.372 1.377-2.421s1.571 0.957 1.645 2.245c0 0 0 0 0 0.001 0.004 0.069 0.006 0.138 0.006 0.206-0.264 0.066-0.503 0.163-0.717 0.275-0.001-0.010-0.001-0.019-0.002-0.029 0-0 0-0 0-0-0.071-0.731-0.462-1.284-0.873-1.234s-0.686 0.684-0.614 1.415c0 0 0 0 0 0 0.031 0.319 0.123 0.604 0.251 0.819-0.032 0.025-0.122 0.091-0.225 0.166-0.078 0.057-0.172 0.126-0.286 0.21-0.311-0.408-0.524-0.993-0.562-1.655zM10.395 11.878c-0.030 0.681-0.92 1.322-1.743 1.579l-0.005 0.002c-0.342 0.111-0.647 0.306-0.97 0.513-0.543 0.347-1.104 0.706-1.914 0.706-0.053 0-0.108-0.002-0.161-0.005-0.742-0.043-1.090-0.36-1.529-0.761-0.232-0.211-0.472-0.43-0.781-0.611l-0.007-0.004c-0.667-0.377-1.081-0.845-1.108-1.253-0.013-0.203 0.077-0.378 0.268-0.522 0.416-0.312 0.695-0.516 0.879-0.651 0.205-0.15 0.267-0.195 0.313-0.239 0.033-0.031 0.068-0.065 0.106-0.103 0.382-0.371 1.021-0.993 2.002-0.993 0.6 0 1.264 0.231 1.971 0.686 0.333 0.217 0.623 0.317 0.99 0.444 0.252 0.087 0.539 0.186 0.922 0.35l0.006 0.003c0.357 0.147 0.78 0.415 0.76 0.858zM10.198 10.278c-0.069-0.035-0.14-0.068-0.215-0.098-0.345-0.148-0.622-0.248-0.852-0.328 0.127-0.248 0.206-0.558 0.213-0.894 0-0 0-0 0-0 0.018-0.818-0.395-1.483-0.922-1.484s-0.968 0.661-0.986 1.479c0 0 0 0 0 0-0.001 0.027-0.001 0.053-0 0.080-0.324-0.149-0.643-0.258-0.956-0.324-0.001-0.031-0.003-0.061-0.004-0.092 0-0 0-0.001 0-0.001-0.030-1.491 0.884-2.725 2.043-2.756s2.122 1.152 2.153 2.642c0 0 0 0.001 0 0.001 0.014 0.674-0.167 1.295-0.475 1.776z" + } + }] +}; +exports.tux = tux; \ No newline at end of file diff --git a/dist/icomoon/tv.js b/dist/icomoon/tv.js new file mode 100644 index 000000000..469ec4184 --- /dev/null +++ b/dist/icomoon/tv.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.tv = void 0; +var tv = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.331 4.502c-1.388-0.199-2.865-0.344-4.407-0.425l2.576-2.576-1-1-3.509 3.509c-0.328-0.006-0.659-0.009-0.991-0.009v0l-4-4-1 1 3.034 3.034c-1.889 0.066-3.693 0.227-5.365 0.467-0.43 1.683-0.669 3.543-0.669 5.498s0.239 3.815 0.669 5.498c2.244 0.323 4.724 0.502 7.331 0.502s5.087-0.179 7.331-0.502c0.43-1.683 0.669-3.543 0.669-5.498s-0.239-3.815-0.669-5.498zM13.498 13.666c-1.683 0.215-3.543 0.334-5.498 0.334s-3.815-0.119-5.498-0.334c-0.323-1.122-0.502-2.362-0.502-3.666s0.179-2.543 0.502-3.666c1.683-0.215 3.543-0.334 5.498-0.334s3.815 0.119 5.498 0.334c0.323 1.122 0.502 2.362 0.502 3.666s-0.179 2.543-0.502 3.666z" + } + }] +}; +exports.tv = tv; \ No newline at end of file diff --git a/dist/icomoon/twitch.js b/dist/icomoon/twitch.js new file mode 100644 index 000000000..493c5ddf9 --- /dev/null +++ b/dist/icomoon/twitch.js @@ -0,0 +1,29 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.twitch = void 0; +var twitch = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M1.5 0l-1.5 2.5v11.5h4v2h2l2-2h2.5l4.5-4.5v-9.5h-13.5zM13 8.5l-2.5 2.5h-2.5l-2 2v-2h-3v-9h10v6.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9.5 4h1.5v4h-1.5v-4z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6.5 4h1.5v4h-1.5v-4z" + } + }] +}; +exports.twitch = twitch; \ No newline at end of file diff --git a/dist/icomoon/twitter.js b/dist/icomoon/twitter.js new file mode 100644 index 000000000..70f399f06 --- /dev/null +++ b/dist/icomoon/twitter.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.twitter = void 0; +var twitter = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16 3.538c-0.588 0.263-1.222 0.438-1.884 0.516 0.678-0.406 1.197-1.050 1.444-1.816-0.634 0.375-1.338 0.65-2.084 0.797-0.6-0.638-1.453-1.034-2.397-1.034-1.813 0-3.281 1.469-3.281 3.281 0 0.256 0.028 0.506 0.084 0.747-2.728-0.138-5.147-1.444-6.766-3.431-0.281 0.484-0.444 1.050-0.444 1.65 0 1.138 0.578 2.144 1.459 2.731-0.538-0.016-1.044-0.166-1.488-0.409 0 0.013 0 0.028 0 0.041 0 1.591 1.131 2.919 2.634 3.219-0.275 0.075-0.566 0.116-0.866 0.116-0.212 0-0.416-0.022-0.619-0.059 0.419 1.303 1.631 2.253 3.066 2.281-1.125 0.881-2.538 1.406-4.078 1.406-0.266 0-0.525-0.016-0.784-0.047 1.456 0.934 3.181 1.475 5.034 1.475 6.037 0 9.341-5.003 9.341-9.341 0-0.144-0.003-0.284-0.009-0.425 0.641-0.459 1.197-1.038 1.637-1.697z" + } + }] +}; +exports.twitter = twitter; \ No newline at end of file diff --git a/dist/icomoon/underline.js b/dist/icomoon/underline.js new file mode 100644 index 000000000..f24138d4e --- /dev/null +++ b/dist/icomoon/underline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.underline = void 0; +var underline = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11 1h2v6.5c0 2.485-2.239 4.5-5 4.5s-5-2.015-5-4.5v-6.5h2v6.5c0 0.628 0.285 1.23 0.802 1.695 0.577 0.519 1.357 0.805 2.198 0.805s1.621-0.286 2.198-0.805c0.517-0.466 0.802-1.068 0.802-1.695v-6.5zM3 13h10v2h-10z" + } + }] +}; +exports.underline = underline; \ No newline at end of file diff --git a/dist/icomoon/undo.js b/dist/icomoon/undo.js new file mode 100644 index 000000000..8b480f957 --- /dev/null +++ b/dist/icomoon/undo.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.undo = void 0; +var undo = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 1c-2.209 0-4.209 0.896-5.657 2.343l-2.343-2.343v6h6l-2.243-2.243c1.086-1.086 2.586-1.757 4.243-1.757 3.314 0 6 2.686 6 6 0 1.792-0.786 3.401-2.032 4.5l1.323 1.5c1.661-1.466 2.709-3.611 2.709-6 0-4.418-3.582-8-8-8z" + } + }] +}; +exports.undo = undo; \ No newline at end of file diff --git a/dist/icomoon/undo2.js b/dist/icomoon/undo2.js new file mode 100644 index 000000000..cccc192c2 --- /dev/null +++ b/dist/icomoon/undo2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.undo2 = void 0; +var undo2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.904 16c1.777-3.219 2.076-8.13-4.904-7.966v3.966l-6-6 6-6v3.881c8.359-0.218 9.29 7.378 4.904 12.119z" + } + }] +}; +exports.undo2 = undo2; \ No newline at end of file diff --git a/dist/icomoon/ungroup.js b/dist/icomoon/ungroup.js new file mode 100644 index 000000000..0d45f2c02 --- /dev/null +++ b/dist/icomoon/ungroup.js @@ -0,0 +1,125 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ungroup = void 0; +var ungroup = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6 7.25c0 0.412-0.338 0.75-0.75 0.75h-1.5c-0.413 0-0.75-0.338-0.75-0.75v-1.5c0-0.412 0.337-0.75 0.75-0.75h1.5c0.412 0 0.75 0.338 0.75 0.75v1.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11 7.25c0 0.412-0.338 0.75-0.75 0.75h-1.5c-0.412 0-0.75-0.338-0.75-0.75v-1.5c0-0.412 0.338-0.75 0.75-0.75h1.5c0.412 0 0.75 0.338 0.75 0.75v1.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6 12.25c0 0.412-0.338 0.75-0.75 0.75h-1.5c-0.413 0-0.75-0.338-0.75-0.75v-1.5c0-0.412 0.337-0.75 0.75-0.75h1.5c0.412 0 0.75 0.338 0.75 0.75v1.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11 12.25c0 0.412-0.338 0.75-0.75 0.75h-1.5c-0.412 0-0.75-0.338-0.75-0.75v-1.5c0-0.412 0.338-0.75 0.75-0.75h1.5c0.412 0 0.75 0.338 0.75 0.75v1.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.251 2.5l1.749-1.749v-0.751h-0.751l-1.749 1.749-1.749-1.749h-0.751v0.751l1.749 1.749-1.749 1.749v0.751h0.751l1.749-1.749 1.749 1.749h0.751v-0.751z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 12h1v2h-1v-2z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 9h1v2h-1v-2z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13 7h1v2h-1v-2z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13 13h1v2h-1v-2z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13 10h1v2h-1v-2z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 6h1v2h-1v-2z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 3h1v2h-1v-2z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 2h2v1h-2v-1z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5 2h2v1h-2v-1z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M2 2h2v1h-2v-1z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7 15h2v1h-2v-1z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M10 15h2v1h-2v-1z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M4 15h2v1h-2v-1z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M1 15h2v1h-2v-1z" + } + }] +}; +exports.ungroup = ungroup; \ No newline at end of file diff --git a/dist/icomoon/unlocked.js b/dist/icomoon/unlocked.js new file mode 100644 index 000000000..c08b82d2d --- /dev/null +++ b/dist/icomoon/unlocked.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.unlocked = void 0; +var unlocked = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12 1c1.654 0 3 1.346 3 3v3h-2v-3c0-0.551-0.449-1-1-1h-2c-0.551 0-1 0.449-1 1v3h0.25c0.412 0 0.75 0.338 0.75 0.75v7.5c0 0.412-0.338 0.75-0.75 0.75h-8.5c-0.412 0-0.75-0.338-0.75-0.75v-7.5c0-0.412 0.338-0.75 0.75-0.75h6.25v-3c0-1.654 1.346-3 3-3h2z" + } + }] +}; +exports.unlocked = unlocked; \ No newline at end of file diff --git a/dist/icomoon/upload.js b/dist/icomoon/upload.js new file mode 100644 index 000000000..31982869f --- /dev/null +++ b/dist/icomoon/upload.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.upload = void 0; +var upload = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7 9h2v-4h3l-4-4-4 4h3zM10 6.75v1.542l4.579 1.708-6.579 2.453-6.579-2.453 4.579-1.708v-1.542l-6 2.25v4l8 3 8-3v-4z" + } + }] +}; +exports.upload = upload; \ No newline at end of file diff --git a/dist/icomoon/upload2.js b/dist/icomoon/upload2.js new file mode 100644 index 000000000..33db4b190 --- /dev/null +++ b/dist/icomoon/upload2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.upload2 = void 0; +var upload2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0 14h16v1h-16zM16 12v1h-16v-1l2-4h4v2h4v-2h4zM3.5 5l4.5-4.5 4.5 4.5h-3.5v4h-2v-4z" + } + }] +}; +exports.upload2 = upload2; \ No newline at end of file diff --git a/dist/icomoon/upload3.js b/dist/icomoon/upload3.js new file mode 100644 index 000000000..12724442e --- /dev/null +++ b/dist/icomoon/upload3.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.upload3 = void 0; +var upload3 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7.5 11h-7.5v4h15v-4h-7.5zM14 13h-2v-1h2v1zM3.5 5l4-4 4 4h-2.5v5h-3v-5z" + } + }] +}; +exports.upload3 = upload3; \ No newline at end of file diff --git a/dist/icomoon/user.js b/dist/icomoon/user.js new file mode 100644 index 000000000..c9cdc0620 --- /dev/null +++ b/dist/icomoon/user.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.user = void 0; +var user = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9 11.041v-0.825c1.102-0.621 2-2.168 2-3.716 0-2.485 0-4.5-3-4.5s-3 2.015-3 4.5c0 1.548 0.898 3.095 2 3.716v0.825c-3.392 0.277-6 1.944-6 3.959h14c0-2.015-2.608-3.682-6-3.959z" + } + }] +}; +exports.user = user; \ No newline at end of file diff --git a/dist/icomoon/userCheck.js b/dist/icomoon/userCheck.js new file mode 100644 index 000000000..a7c27d97a --- /dev/null +++ b/dist/icomoon/userCheck.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.userCheck = void 0; +var userCheck = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15 9.5l-4.5 4.5-1.5-1.5-1 1 2.5 2.5 5.5-5.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M7 12h5v-1.799c-1.050-0.613-2.442-1.033-4-1.16v-0.825c1.102-0.621 2-2.168 2-3.716 0-2.485 0-4.5-3-4.5s-3 2.015-3 4.5c0 1.548 0.898 3.095 2 3.716v0.825c-3.392 0.277-6 1.944-6 3.959h7v-1z" + } + }] +}; +exports.userCheck = userCheck; \ No newline at end of file diff --git a/dist/icomoon/userMinus.js b/dist/icomoon/userMinus.js new file mode 100644 index 000000000..19d39334a --- /dev/null +++ b/dist/icomoon/userMinus.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.userMinus = void 0; +var userMinus = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6 11.5c0-2.363 1.498-4.383 3.594-5.159 0.254-0.571 0.406-1.206 0.406-1.841 0-2.485 0-4.5-3-4.5s-3 2.015-3 4.5c0 1.548 0.898 3.095 2 3.716v0.825c-3.392 0.277-6 1.944-6 3.959h6.208c-0.135-0.477-0.208-0.98-0.208-1.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.5 7c-2.485 0-4.5 2.015-4.5 4.5s2.015 4.5 4.5 4.5c2.485 0 4.5-2.015 4.5-4.5s-2.015-4.5-4.5-4.5zM14 12h-5v-1h5v1z" + } + }] +}; +exports.userMinus = userMinus; \ No newline at end of file diff --git a/dist/icomoon/userPlus.js b/dist/icomoon/userPlus.js new file mode 100644 index 000000000..96869cd25 --- /dev/null +++ b/dist/icomoon/userPlus.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.userPlus = void 0; +var userPlus = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6 11.5c0-2.363 1.498-4.383 3.594-5.159 0.254-0.571 0.406-1.206 0.406-1.841 0-2.485 0-4.5-3-4.5s-3 2.015-3 4.5c0 1.548 0.898 3.095 2 3.716v0.825c-3.392 0.277-6 1.944-6 3.959h6.208c-0.135-0.477-0.208-0.98-0.208-1.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.5 7c-2.485 0-4.5 2.015-4.5 4.5s2.015 4.5 4.5 4.5c2.485 0 4.5-2.015 4.5-4.5s-2.015-4.5-4.5-4.5zM14 12h-2v2h-1v-2h-2v-1h2v-2h1v2h2v1z" + } + }] +}; +exports.userPlus = userPlus; \ No newline at end of file diff --git a/dist/icomoon/userTie.js b/dist/icomoon/userTie.js new file mode 100644 index 000000000..f25997079 --- /dev/null +++ b/dist/icomoon/userTie.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.userTie = void 0; +var userTie = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5 3c0-1.657 1.343-3 3-3s3 1.343 3 3c0 1.657-1.343 3-3 3s-3-1.343-3-3zM12.001 7h-0.553l-3.111 6.316 1.163-5.816-1.5-1.5-1.5 1.5 1.163 5.816-3.111-6.316h-0.554c-1.999 0-1.999 1.344-1.999 3v5h12v-5c0-1.656 0-3-1.999-3z" + } + }] +}; +exports.userTie = userTie; \ No newline at end of file diff --git a/dist/icomoon/users.js b/dist/icomoon/users.js new file mode 100644 index 000000000..7d8d27909 --- /dev/null +++ b/dist/icomoon/users.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.users = void 0; +var users = { + "viewBox": "0 0 18 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12 12.041v-0.825c1.102-0.621 2-2.168 2-3.716 0-2.485 0-4.5-3-4.5s-3 2.015-3 4.5c0 1.548 0.898 3.095 2 3.716v0.825c-3.392 0.277-6 1.944-6 3.959h14c0-2.015-2.608-3.682-6-3.959z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5.112 12.427c0.864-0.565 1.939-0.994 3.122-1.256-0.235-0.278-0.449-0.588-0.633-0.922-0.475-0.863-0.726-1.813-0.726-2.748 0-1.344 0-2.614 0.478-3.653 0.464-1.008 1.299-1.633 2.488-1.867-0.264-1.195-0.968-1.98-2.841-1.98-3 0-3 2.015-3 4.5 0 1.548 0.898 3.095 2 3.716v0.825c-3.392 0.277-6 1.944-6 3.959h4.359c0.227-0.202 0.478-0.393 0.753-0.573z" + } + }] +}; +exports.users = users; \ No newline at end of file diff --git a/dist/icomoon/videoCamera.js b/dist/icomoon/videoCamera.js new file mode 100644 index 000000000..4ebdce3dd --- /dev/null +++ b/dist/icomoon/videoCamera.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.videoCamera = void 0; +var videoCamera = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6 4.5c0-1.381 1.119-2.5 2.5-2.5s2.5 1.119 2.5 2.5c0 1.381-1.119 2.5-2.5 2.5s-2.5-1.119-2.5-2.5zM0 4.5c0-1.381 1.119-2.5 2.5-2.5s2.5 1.119 2.5 2.5c0 1.381-1.119 2.5-2.5 2.5s-2.5-1.119-2.5-2.5zM12 9.5v-1.5c0-0.55-0.45-1-1-1h-10c-0.55 0-1 0.45-1 1v5c0 0.55 0.45 1 1 1h10c0.55 0 1-0.45 1-1v-1.5l4 2.5v-7l-4 2.5zM10 12h-8v-3h8v3z" + } + }] +}; +exports.videoCamera = videoCamera; \ No newline at end of file diff --git a/dist/icomoon/vimeo.js b/dist/icomoon/vimeo.js new file mode 100644 index 000000000..536f1c102 --- /dev/null +++ b/dist/icomoon/vimeo.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.vimeo = void 0; +var vimeo = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.994 4.281c-0.072 1.556-1.159 3.691-3.263 6.397-2.175 2.825-4.016 4.241-5.522 4.241-0.931 0-1.722-0.859-2.366-2.581-0.431-1.578-0.859-3.156-1.291-4.734-0.478-1.722-0.991-2.581-1.541-2.581-0.119 0-0.538 0.253-1.256 0.753l-0.753-0.969c0.791-0.694 1.569-1.388 2.334-2.081 1.053-0.909 1.844-1.387 2.372-1.438 1.244-0.119 2.013 0.731 2.3 2.553 0.309 1.966 0.525 3.188 0.647 3.666 0.359 1.631 0.753 2.447 1.184 2.447 0.334 0 0.838-0.528 1.509-1.588 0.669-1.056 1.028-1.862 1.078-2.416 0.097-0.912-0.262-1.372-1.078-1.372-0.384 0-0.778 0.088-1.184 0.263 0.787-2.575 2.287-3.825 4.506-3.753 1.641 0.044 2.416 1.109 2.322 3.194z" + } + }] +}; +exports.vimeo = vimeo; \ No newline at end of file diff --git a/dist/icomoon/vimeo2.js b/dist/icomoon/vimeo2.js new file mode 100644 index 000000000..99398d0d4 --- /dev/null +++ b/dist/icomoon/vimeo2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.vimeo2 = void 0; +var vimeo2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.5 0h-13c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM13.463 5.313c-0.050 1.125-0.838 2.666-2.359 4.622-1.572 2.044-2.903 3.066-3.991 3.066-0.675 0-1.244-0.622-1.709-1.866-0.313-1.141-0.622-2.281-0.934-3.422-0.344-1.244-0.716-1.866-1.112-1.866-0.087 0-0.391 0.181-0.906 0.544l-0.544-0.7c0.572-0.5 1.134-1.003 1.687-1.503 0.763-0.656 1.331-1.003 1.712-1.038 0.9-0.087 1.453 0.528 1.662 1.844 0.225 1.422 0.381 2.303 0.469 2.65 0.259 1.178 0.544 1.766 0.856 1.766 0.241 0 0.606-0.381 1.091-1.147s0.744-1.347 0.778-1.747c0.069-0.659-0.191-0.991-0.778-0.991-0.278 0-0.563 0.063-0.856 0.191 0.569-1.859 1.653-2.766 3.256-2.712 1.188 0.034 1.747 0.803 1.678 2.309z" + } + }] +}; +exports.vimeo2 = vimeo2; \ No newline at end of file diff --git a/dist/icomoon/vine.js b/dist/icomoon/vine.js new file mode 100644 index 000000000..89b2ee343 --- /dev/null +++ b/dist/icomoon/vine.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.vine = void 0; +var vine = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.012 7.953c-0.412 0.094-0.809 0.137-1.169 0.137-2.019 0-3.572-1.409-3.572-3.862 0-1.203 0.466-1.825 1.122-1.825 0.625 0 1.041 0.559 1.041 1.697 0 0.647-0.172 1.356-0.3 1.775 0 0 0.622 1.084 2.322 0.753 0.363-0.803 0.556-1.841 0.556-2.75 0-2.45-1.25-3.878-3.541-3.878-2.356 0-3.734 1.809-3.734 4.197 0 2.366 1.106 4.394 2.928 5.319-0.766 1.534-1.741 2.884-2.759 3.903-1.844-2.231-3.513-5.206-4.197-11.016h-2.722c1.259 9.675 5.006 12.756 6 13.347 0.559 0.337 1.044 0.322 1.556 0.031 0.806-0.456 3.222-2.875 4.563-5.703 0.563 0 1.238-0.066 1.909-0.219v-1.906z" + } + }] +}; +exports.vine = vine; \ No newline at end of file diff --git a/dist/icomoon/vk.js b/dist/icomoon/vk.js new file mode 100644 index 000000000..40bd01e31 --- /dev/null +++ b/dist/icomoon/vk.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.vk = void 0; +var vk = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.5 0h-13c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM12.959 11.2l-1.463 0.022c0 0-0.316 0.063-0.728-0.222-0.547-0.375-1.063-1.353-1.466-1.225-0.406 0.128-0.394 1.006-0.394 1.006s0.003 0.188-0.091 0.287c-0.1 0.109-0.3 0.131-0.3 0.131h-0.653c0 0-1.444 0.088-2.716-1.238-1.388-1.444-2.612-4.309-2.612-4.309s-0.072-0.188 0.006-0.278c0.087-0.103 0.322-0.109 0.322-0.109l1.566-0.009c0 0 0.147 0.025 0.253 0.103 0.088 0.063 0.134 0.184 0.134 0.184s0.253 0.641 0.588 1.219c0.653 1.128 0.959 1.375 1.181 1.256 0.322-0.175 0.225-1.597 0.225-1.597s0.006-0.516-0.162-0.744c-0.131-0.178-0.378-0.231-0.484-0.244-0.088-0.013 0.056-0.216 0.244-0.309 0.281-0.138 0.778-0.147 1.366-0.141 0.456 0.003 0.591 0.034 0.769 0.075 0.541 0.131 0.356 0.634 0.356 1.841 0 0.388-0.069 0.931 0.209 1.109 0.119 0.078 0.412 0.012 1.147-1.234 0.347-0.591 0.609-1.284 0.609-1.284s0.056-0.125 0.144-0.178c0.091-0.053 0.213-0.037 0.213-0.037l1.647-0.009c0 0 0.494-0.059 0.575 0.166 0.084 0.234-0.184 0.781-0.856 1.678-1.103 1.472-1.228 1.334-0.309 2.184 0.875 0.813 1.056 1.209 1.088 1.259 0.356 0.6-0.406 0.647-0.406 0.647z" + } + }] +}; +exports.vk = vk; \ No newline at end of file diff --git a/dist/icomoon/volumeDecrease.js b/dist/icomoon/volumeDecrease.js new file mode 100644 index 000000000..89054e6a5 --- /dev/null +++ b/dist/icomoon/volumeDecrease.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.volumeDecrease = void 0; +var volumeDecrease = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 7h8v2h-8v-2z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6.5 15c-0.13 0-0.258-0.051-0.354-0.146l-3.854-3.854h-1.793c-0.276 0-0.5-0.224-0.5-0.5v-5c0-0.276 0.224-0.5 0.5-0.5h1.793l3.854-3.854c0.143-0.143 0.358-0.186 0.545-0.108s0.309 0.26 0.309 0.462v13c0 0.202-0.122 0.385-0.309 0.462-0.062 0.026-0.127 0.038-0.191 0.038z" + } + }] +}; +exports.volumeDecrease = volumeDecrease; \ No newline at end of file diff --git a/dist/icomoon/volumeHigh.js b/dist/icomoon/volumeHigh.js new file mode 100644 index 000000000..99bd22a0a --- /dev/null +++ b/dist/icomoon/volumeHigh.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.volumeHigh = void 0; +var volumeHigh = { + "viewBox": "0 0 17 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.907 14.407c-0.192 0-0.384-0.073-0.53-0.22-0.293-0.293-0.293-0.768 0-1.061 1.369-1.369 2.123-3.19 2.123-5.127s-0.754-3.757-2.123-5.127c-0.293-0.293-0.293-0.768 0-1.061s0.768-0.293 1.061 0c1.653 1.653 2.563 3.85 2.563 6.187s-0.91 4.534-2.563 6.187c-0.146 0.146-0.338 0.22-0.53 0.22zM11.243 12.993c-0.192 0-0.384-0.073-0.53-0.22-0.293-0.293-0.293-0.768 0-1.061 2.047-2.047 2.047-5.378 0-7.425-0.293-0.293-0.293-0.768 0-1.061s0.768-0.293 1.061 0c1.275 1.275 1.977 2.97 1.977 4.773s-0.702 3.498-1.977 4.773c-0.146 0.146-0.338 0.22-0.53 0.22v0zM8.578 11.578c-0.192 0-0.384-0.073-0.53-0.22-0.293-0.293-0.293-0.768 0-1.061 1.267-1.267 1.267-3.329 0-4.596-0.293-0.293-0.293-0.768 0-1.061s0.768-0.293 1.061 0c1.852 1.852 1.852 4.865 0 6.718-0.146 0.146-0.338 0.22-0.53 0.22z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6.5 15c-0.13 0-0.258-0.051-0.354-0.146l-3.854-3.854h-1.793c-0.276 0-0.5-0.224-0.5-0.5v-5c0-0.276 0.224-0.5 0.5-0.5h1.793l3.854-3.854c0.143-0.143 0.358-0.186 0.545-0.108s0.309 0.26 0.309 0.462v13c0 0.202-0.122 0.385-0.309 0.462-0.062 0.026-0.127 0.038-0.191 0.038z" + } + }] +}; +exports.volumeHigh = volumeHigh; \ No newline at end of file diff --git a/dist/icomoon/volumeIncrease.js b/dist/icomoon/volumeIncrease.js new file mode 100644 index 000000000..13724b362 --- /dev/null +++ b/dist/icomoon/volumeIncrease.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.volumeIncrease = void 0; +var volumeIncrease = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M16 9h-3v3h-2v-3h-3v-2h3v-3h2v3h3v2z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6.5 15c-0.13 0-0.258-0.051-0.354-0.146l-3.854-3.854h-1.793c-0.276 0-0.5-0.224-0.5-0.5v-5c0-0.276 0.224-0.5 0.5-0.5h1.793l3.854-3.854c0.143-0.143 0.358-0.186 0.545-0.108s0.309 0.26 0.309 0.462v13c0 0.202-0.122 0.385-0.309 0.462-0.062 0.026-0.127 0.038-0.191 0.038z" + } + }] +}; +exports.volumeIncrease = volumeIncrease; \ No newline at end of file diff --git a/dist/icomoon/volumeLow.js b/dist/icomoon/volumeLow.js new file mode 100644 index 000000000..a6b036b11 --- /dev/null +++ b/dist/icomoon/volumeLow.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.volumeLow = void 0; +var volumeLow = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8.578 11.578c-0.192 0-0.384-0.073-0.53-0.22-0.293-0.293-0.293-0.768 0-1.061 1.267-1.267 1.267-3.329 0-4.596-0.293-0.293-0.293-0.768 0-1.061s0.768-0.293 1.061 0c1.852 1.852 1.852 4.865 0 6.718-0.146 0.146-0.338 0.22-0.53 0.22z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6.5 15c-0.13 0-0.258-0.051-0.354-0.146l-3.854-3.854h-1.793c-0.276 0-0.5-0.224-0.5-0.5v-5c0-0.276 0.224-0.5 0.5-0.5h1.793l3.854-3.854c0.143-0.143 0.358-0.186 0.545-0.108s0.309 0.26 0.309 0.462v13c0 0.202-0.122 0.385-0.309 0.462-0.062 0.026-0.127 0.038-0.191 0.038z" + } + }] +}; +exports.volumeLow = volumeLow; \ No newline at end of file diff --git a/dist/icomoon/volumeMedium.js b/dist/icomoon/volumeMedium.js new file mode 100644 index 000000000..1d0755f10 --- /dev/null +++ b/dist/icomoon/volumeMedium.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.volumeMedium = void 0; +var volumeMedium = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.243 12.993c-0.192 0-0.384-0.073-0.53-0.22-0.293-0.293-0.293-0.768 0-1.061 2.047-2.047 2.047-5.378 0-7.425-0.293-0.293-0.293-0.768 0-1.061s0.768-0.293 1.061 0c1.275 1.275 1.977 2.97 1.977 4.773s-0.702 3.498-1.977 4.773c-0.146 0.146-0.338 0.22-0.53 0.22v0zM8.578 11.578c-0.192 0-0.384-0.073-0.53-0.22-0.293-0.293-0.293-0.768 0-1.061 1.267-1.267 1.267-3.329 0-4.596-0.293-0.293-0.293-0.768 0-1.061s0.768-0.293 1.061 0c1.852 1.852 1.852 4.865 0 6.718-0.146 0.146-0.338 0.22-0.53 0.22z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6.5 15c-0.13 0-0.258-0.051-0.354-0.146l-3.854-3.854h-1.793c-0.276 0-0.5-0.224-0.5-0.5v-5c0-0.276 0.224-0.5 0.5-0.5h1.793l3.854-3.854c0.143-0.143 0.358-0.186 0.545-0.108s0.309 0.26 0.309 0.462v13c0 0.202-0.122 0.385-0.309 0.462-0.062 0.026-0.127 0.038-0.191 0.038z" + } + }] +}; +exports.volumeMedium = volumeMedium; \ No newline at end of file diff --git a/dist/icomoon/volumeMute.js b/dist/icomoon/volumeMute.js new file mode 100644 index 000000000..93095852f --- /dev/null +++ b/dist/icomoon/volumeMute.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.volumeMute = void 0; +var volumeMute = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6.5 15c-0.13 0-0.258-0.051-0.354-0.146l-3.854-3.854h-1.793c-0.276 0-0.5-0.224-0.5-0.5v-5c0-0.276 0.224-0.5 0.5-0.5h1.793l3.854-3.854c0.143-0.143 0.358-0.186 0.545-0.108s0.309 0.26 0.309 0.462v13c0 0.202-0.122 0.385-0.309 0.462-0.062 0.026-0.127 0.038-0.191 0.038z" + } + }] +}; +exports.volumeMute = volumeMute; \ No newline at end of file diff --git a/dist/icomoon/volumeMute2.js b/dist/icomoon/volumeMute2.js new file mode 100644 index 000000000..828ca7275 --- /dev/null +++ b/dist/icomoon/volumeMute2.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.volumeMute2 = void 0; +var volumeMute2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15 9.674v1.326h-1.326l-1.674-1.674-1.674 1.674h-1.326v-1.326l1.674-1.674-1.674-1.674v-1.326h1.326l1.674 1.674 1.674-1.674h1.326v1.326l-1.674 1.674 1.674 1.674z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6.5 15c-0.13 0-0.258-0.051-0.354-0.146l-3.854-3.854h-1.793c-0.276 0-0.5-0.224-0.5-0.5v-5c0-0.276 0.224-0.5 0.5-0.5h1.793l3.854-3.854c0.143-0.143 0.358-0.186 0.545-0.108s0.309 0.26 0.309 0.462v13c0 0.202-0.122 0.385-0.309 0.462-0.062 0.026-0.127 0.038-0.191 0.038z" + } + }] +}; +exports.volumeMute2 = volumeMute2; \ No newline at end of file diff --git a/dist/icomoon/warning.js b/dist/icomoon/warning.js new file mode 100644 index 000000000..7307fc19d --- /dev/null +++ b/dist/icomoon/warning.js @@ -0,0 +1,29 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.warning = void 0; +var warning = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 1.45l6.705 13.363h-13.409l6.705-13.363zM8 0c-0.345 0-0.69 0.233-0.951 0.698l-6.829 13.611c-0.523 0.93-0.078 1.691 0.989 1.691h13.583c1.067 0 1.512-0.761 0.989-1.691h0l-6.829-13.611c-0.262-0.465-0.606-0.698-0.951-0.698v0z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9 13c0 0.552-0.448 1-1 1s-1-0.448-1-1c0-0.552 0.448-1 1-1s1 0.448 1 1z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 11c-0.552 0-1-0.448-1-1v-3c0-0.552 0.448-1 1-1s1 0.448 1 1v3c0 0.552-0.448 1-1 1z" + } + }] +}; +exports.warning = warning; \ No newline at end of file diff --git a/dist/icomoon/whatsapp.js b/dist/icomoon/whatsapp.js new file mode 100644 index 000000000..5ee49cba0 --- /dev/null +++ b/dist/icomoon/whatsapp.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.whatsapp = void 0; +var whatsapp = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.641 2.325c-1.497-1.5-3.488-2.325-5.609-2.325-4.369 0-7.925 3.556-7.925 7.928 0 1.397 0.366 2.763 1.059 3.963l-1.125 4.109 4.203-1.103c1.159 0.631 2.463 0.966 3.787 0.966h0.003c0 0 0 0 0 0 4.369 0 7.928-3.556 7.928-7.928 0-2.119-0.825-4.109-2.322-5.609zM8.034 14.525v0c-1.184 0-2.344-0.319-3.356-0.919l-0.241-0.144-2.494 0.653 0.666-2.431-0.156-0.25c-0.663-1.047-1.009-2.259-1.009-3.506 0-3.634 2.956-6.591 6.594-6.591 1.759 0 3.416 0.688 4.659 1.931 1.244 1.247 1.928 2.9 1.928 4.662-0.003 3.637-2.959 6.594-6.591 6.594zM11.647 9.588c-0.197-0.1-1.172-0.578-1.353-0.644s-0.313-0.1-0.447 0.1c-0.131 0.197-0.512 0.644-0.628 0.778-0.116 0.131-0.231 0.15-0.428 0.050s-0.838-0.309-1.594-0.984c-0.588-0.525-0.987-1.175-1.103-1.372s-0.013-0.306 0.088-0.403c0.091-0.088 0.197-0.231 0.297-0.347s0.131-0.197 0.197-0.331c0.066-0.131 0.034-0.247-0.016-0.347s-0.447-1.075-0.609-1.472c-0.159-0.388-0.325-0.334-0.447-0.341-0.116-0.006-0.247-0.006-0.378-0.006s-0.347 0.050-0.528 0.247c-0.181 0.197-0.694 0.678-0.694 1.653s0.709 1.916 0.809 2.050c0.1 0.131 1.397 2.134 3.384 2.991 0.472 0.203 0.841 0.325 1.128 0.419 0.475 0.15 0.906 0.128 1.247 0.078 0.381-0.056 1.172-0.478 1.338-0.941s0.166-0.859 0.116-0.941c-0.047-0.088-0.178-0.137-0.378-0.238z" + } + }] +}; +exports.whatsapp = whatsapp; \ No newline at end of file diff --git a/dist/icomoon/wikipedia.js b/dist/icomoon/wikipedia.js new file mode 100644 index 000000000..e9db7e7ad --- /dev/null +++ b/dist/icomoon/wikipedia.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.wikipedia = void 0; +var wikipedia = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.106 3.65c0 0.050-0.016 0.097-0.047 0.141-0.031 0.041-0.066 0.063-0.106 0.063-0.313 0.031-0.569 0.131-0.766 0.3-0.2 0.169-0.403 0.497-0.613 0.975l-3.225 7.272c-0.022 0.069-0.081 0.1-0.178 0.1-0.075 0-0.134-0.034-0.178-0.1l-1.809-3.781-2.081 3.781c-0.044 0.069-0.1 0.1-0.178 0.1-0.094 0-0.153-0.034-0.184-0.1l-3.166-7.269c-0.197-0.45-0.406-0.766-0.625-0.944s-0.525-0.291-0.916-0.331c-0.034 0-0.066-0.019-0.094-0.053-0.031-0.034-0.044-0.075-0.044-0.122 0-0.119 0.034-0.178 0.1-0.178 0.281 0 0.578 0.013 0.888 0.038 0.288 0.025 0.556 0.038 0.809 0.038 0.256 0 0.563-0.013 0.913-0.038 0.366-0.025 0.691-0.038 0.975-0.038 0.069 0 0.1 0.059 0.1 0.178s-0.022 0.175-0.063 0.175c-0.281 0.022-0.506 0.094-0.669 0.216s-0.244 0.281-0.244 0.481c0 0.1 0.034 0.228 0.1 0.378l2.616 5.912 1.487-2.806-1.384-2.903c-0.25-0.519-0.453-0.853-0.612-1.003s-0.403-0.241-0.728-0.275c-0.031 0-0.056-0.019-0.084-0.053s-0.041-0.075-0.041-0.122c0-0.119 0.028-0.178 0.088-0.178 0.281 0 0.541 0.013 0.778 0.038 0.228 0.025 0.469 0.038 0.728 0.038 0.253 0 0.519-0.013 0.803-0.038 0.291-0.025 0.578-0.038 0.859-0.038 0.069 0 0.1 0.059 0.1 0.178s-0.019 0.175-0.063 0.175c-0.566 0.038-0.847 0.2-0.847 0.481 0 0.125 0.066 0.322 0.197 0.588l0.916 1.859 0.912-1.7c0.125-0.241 0.191-0.444 0.191-0.606 0-0.388-0.281-0.594-0.847-0.619-0.050 0-0.075-0.059-0.075-0.175 0-0.044 0.012-0.081 0.037-0.119s0.050-0.056 0.075-0.056c0.203 0 0.45 0.013 0.747 0.038 0.281 0.025 0.516 0.038 0.697 0.038 0.131 0 0.322-0.013 0.575-0.031 0.319-0.028 0.588-0.044 0.803-0.044 0.050 0 0.075 0.050 0.075 0.15 0 0.134-0.047 0.203-0.137 0.203-0.328 0.034-0.594 0.125-0.794 0.272s-0.45 0.481-0.75 1.006l-1.222 2.237 1.644 3.35 2.428-5.647c0.084-0.206 0.125-0.397 0.125-0.569 0-0.412-0.281-0.631-0.847-0.659-0.050 0-0.075-0.059-0.075-0.175 0-0.119 0.037-0.178 0.113-0.178 0.206 0 0.45 0.013 0.734 0.038 0.262 0.025 0.481 0.038 0.656 0.038 0.188 0 0.4-0.013 0.644-0.038 0.253-0.025 0.481-0.038 0.684-0.038 0.063 0 0.094 0.050 0.094 0.15z" + } + }] +}; +exports.wikipedia = wikipedia; \ No newline at end of file diff --git a/dist/icomoon/windows.js b/dist/icomoon/windows.js new file mode 100644 index 000000000..31e3e36b6 --- /dev/null +++ b/dist/icomoon/windows.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.windows = void 0; +var windows = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M6.441 7.999c-0.745-0.383-1.47-0.577-2.154-0.577-0.093 0-0.187 0.003-0.28 0.011-0.873 0.072-1.671 0.303-2.184 0.482-0.136 0.050-0.276 0.103-0.419 0.161l-1.403 4.866c0.964-0.357 1.817-0.53 2.598-0.53 1.263 0 2.18 0.472 2.937 0.958 0.359-1.217 1.219-4.158 1.476-5.036-0.187-0.114-0.376-0.228-0.571-0.333zM8.255 9.235l-1.413 4.909c0.419 0.24 1.83 1.001 2.91 1.001 0.872 0 1.848-0.223 2.982-0.684l1.349-4.718c-0.916 0.296-1.795 0.446-2.617 0.446-1.499 0-2.549-0.486-3.211-0.952zM4.575 5.762c1.205 0.012 2.096 0.472 2.835 0.945l1.449-4.958c-0.305-0.175-1.106-0.611-1.685-0.759-0.381-0.089-0.782-0.135-1.206-0.135-0.809 0.015-1.694 0.218-2.701 0.622l-1.382 4.853c1.013-0.382 1.885-0.568 2.689-0.568 0.001 0 0.002 0 0.002 0zM16 3.096c-0.919 0.357-1.816 0.539-2.672 0.539-1.433 0-2.489-0.497-3.173-0.974l-1.437 4.972c0.965 0.62 2.005 0.936 3.096 0.936 0.89 0 1.812-0.214 2.742-0.636l-0.003-0.035 0.058-0.014 1.39-4.788z" + } + }] +}; +exports.windows = windows; \ No newline at end of file diff --git a/dist/icomoon/windows8.js b/dist/icomoon/windows8.js new file mode 100644 index 000000000..a53d95733 --- /dev/null +++ b/dist/icomoon/windows8.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.windows8 = void 0; +var windows8 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M0.005 8l-0.005-4.876 6-0.815v5.691zM7 2.164l7.998-1.164v7h-7.998zM15 9l-0.002 7-7.998-1.125v-5.875zM6 14.747l-5.995-0.822-0-4.926h5.995z" + } + }] +}; +exports.windows8 = windows8; \ No newline at end of file diff --git a/dist/icomoon/wink.js b/dist/icomoon/wink.js new file mode 100644 index 000000000..1d03935b2 --- /dev/null +++ b/dist/icomoon/wink.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.wink = void 0; +var wink = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5zM8.48 11.11c2.191-0.433 3.892-1.43 4.507-2.759-0.338 2.624-2.524 4.649-5.17 4.649-1.863 0-3.498-1.004-4.42-2.515 1.1 0.86 3.040 1.028 5.083 0.625zM10 5.5c0-0.828 0.448-1.5 1-1.5s1 0.672 1 1.5c0 0.828-0.448 1.5-1 1.5s-1-0.672-1-1.5zM5.5 5.805c-0.653 0-1.208 0.245-1.414 0.586-0.055-0.092-0.086-0.503-0.086-0.605 0-0.485 0.672-0.879 1.5-0.879s1.5 0.394 1.5 0.879c0 0.103-0.030 0.514-0.086 0.605-0.206-0.341-0.761-0.586-1.414-0.586z" + } + }] +}; +exports.wink = wink; \ No newline at end of file diff --git a/dist/icomoon/wink2.js b/dist/icomoon/wink2.js new file mode 100644 index 000000000..1c8d3ab6e --- /dev/null +++ b/dist/icomoon/wink2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.wink2 = void 0; +var wink2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8c4.418 0 8-3.582 8-8s-3.582-8-8-8zM11 4c0.552 0 1 0.672 1 1.5s-0.448 1.5-1 1.5-1-0.672-1-1.5 0.448-1.5 1-1.5zM5.5 4.876c0.932 0 1.594 0.349 1.594 0.895 0 0.116 0.060 0.672-0.003 0.775-0.232-0.384-0.856-0.659-1.591-0.659s-1.359 0.275-1.591 0.659c-0.062-0.103-0.003-0.659-0.003-0.775 0-0.546 0.662-0.895 1.594-0.895zM7.818 13c-1.863 0-3.498-1.004-4.42-2.515 1.1 0.86 3.040 1.028 5.083 0.625 2.191-0.433 3.892-1.43 4.507-2.759-0.338 2.624-2.524 4.649-5.17 4.649z" + } + }] +}; +exports.wink2 = wink2; \ No newline at end of file diff --git a/dist/icomoon/woman.js b/dist/icomoon/woman.js new file mode 100644 index 000000000..f3b8400d2 --- /dev/null +++ b/dist/icomoon/woman.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.woman = void 0; +var woman = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9 1.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M11.234 8l0.766-0.555-2.083-3.221c-0.092-0.14-0.249-0.225-0.417-0.225h-4c-0.168 0-0.325 0.084-0.417 0.225l-2.083 3.221 0.766 0.555 1.729-2.244 0.601 1.402-2.095 3.841h1.917l0.333 5h1v-5h0.5v5h1l0.333-5h1.917l-2.095-3.842 0.601-1.402 1.729 2.244z" + } + }] +}; +exports.woman = woman; \ No newline at end of file diff --git a/dist/icomoon/wondering.js b/dist/icomoon/wondering.js new file mode 100644 index 000000000..803e404da --- /dev/null +++ b/dist/icomoon/wondering.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.wondering = void 0; +var wondering = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5zM11.652 9.4l0.351 1.2-6.828 2-0.351-1.2zM4 5c0-0.552 0.448-1 1-1s1 0.448 1 1c0 0.552-0.448 1-1 1s-1-0.448-1-1zM10 5c0-0.552 0.448-1 1-1s1 0.448 1 1c0 0.552-0.448 1-1 1s-1-0.448-1-1z" + } + }] +}; +exports.wondering = wondering; \ No newline at end of file diff --git a/dist/icomoon/wondering2.js b/dist/icomoon/wondering2.js new file mode 100644 index 000000000..b319a7988 --- /dev/null +++ b/dist/icomoon/wondering2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.wondering2 = void 0; +var wondering2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM11 4c0.552 0 1 0.448 1 1s-0.448 1-1 1-1-0.448-1-1 0.448-1 1-1zM4 5c0-0.552 0.448-1 1-1s1 0.448 1 1-0.448 1-1 1-1-0.448-1-1zM5.176 12.6l-0.351-1.2 6.828-2 0.351 1.2-6.828 2z" + } + }] +}; +exports.wondering2 = wondering2; \ No newline at end of file diff --git a/dist/icomoon/wordpress.js b/dist/icomoon/wordpress.js new file mode 100644 index 000000000..593468441 --- /dev/null +++ b/dist/icomoon/wordpress.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.wordpress = void 0; +var wordpress = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M2 8c0 2.313 1.38 4.312 3.382 5.259l-2.862-7.637c-0.333 0.727-0.52 1.531-0.52 2.378zM12.050 7.705c0-0.722-0.266-1.222-0.495-1.612-0.304-0.482-0.589-0.889-0.589-1.371 0-0.537 0.418-1.037 1.008-1.037 0.027 0 0.052 0.003 0.078 0.005-1.067-0.953-2.49-1.534-4.052-1.534-2.096 0-3.94 1.048-5.013 2.634 0.141 0.004 0.274 0.007 0.386 0.007 0.627 0 1.599-0.074 1.599-0.074 0.323-0.018 0.361 0.444 0.038 0.482 0 0-0.325 0.037-0.687 0.055l2.185 6.33 1.313-3.835-0.935-2.495c-0.323-0.019-0.629-0.055-0.629-0.055-0.323-0.019-0.285-0.5 0.038-0.482 0 0 0.991 0.074 1.58 0.074 0.627 0 1.599-0.074 1.599-0.074 0.323-0.018 0.362 0.444 0.038 0.482 0 0-0.326 0.037-0.687 0.055l2.168 6.282 0.599-1.947c0.259-0.809 0.457-1.389 0.457-1.889zM8.105 8.511l-1.8 5.095c0.538 0.154 1.106 0.238 1.695 0.238 0.699 0 1.369-0.117 1.992-0.331-0.016-0.025-0.031-0.052-0.043-0.081l-1.844-4.921zM13.265 5.196c0.026 0.186 0.040 0.386 0.040 0.601 0 0.593-0.114 1.259-0.456 2.093l-1.833 5.16c1.784-1.013 2.983-2.895 2.983-5.051 0-1.016-0.267-1.971-0.735-2.803zM8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM8 15c-3.866 0-7-3.134-7-7s3.134-7 7-7 7 3.134 7 7-3.134 7-7 7z" + } + }] +}; +exports.wordpress = wordpress; \ No newline at end of file diff --git a/dist/icomoon/wrench.js b/dist/icomoon/wrench.js new file mode 100644 index 000000000..445ffc735 --- /dev/null +++ b/dist/icomoon/wrench.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.wrench = void 0; +var wrench = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.671 12.779l-7.196-6.168c0.335-0.63 0.525-1.348 0.525-2.111 0-2.485-2.015-4.5-4.5-4.5-0.455 0-0.893 0.068-1.307 0.193l2.6 2.6c0.389 0.389 0.389 1.025 0 1.414l-1.586 1.586c-0.389 0.389-1.025 0.389-1.414 0l-2.6-2.6c-0.125 0.414-0.193 0.852-0.193 1.307 0 2.485 2.015 4.5 4.5 4.5 0.763 0 1.482-0.19 2.111-0.525l6.168 7.196c0.358 0.418 0.969 0.441 1.358 0.052l1.586-1.586c0.389-0.389 0.365-1-0.052-1.358z" + } + }] +}; +exports.wrench = wrench; \ No newline at end of file diff --git a/dist/icomoon/xing.js b/dist/icomoon/xing.js new file mode 100644 index 000000000..19d6ffc10 --- /dev/null +++ b/dist/icomoon/xing.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.xing = void 0; +var xing = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M14.5 0h-13c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM4.884 10.406h-1.728c-0.103 0-0.181-0.047-0.225-0.119-0.047-0.075-0.047-0.169 0-0.266l1.838-3.244c0.003-0.003 0.003-0.006 0-0.009l-1.169-2.025c-0.047-0.097-0.056-0.191-0.009-0.266 0.044-0.072 0.131-0.109 0.237-0.109h1.731c0.266 0 0.397 0.172 0.481 0.325 0 0 1.181 2.063 1.191 2.075-0.069 0.125-1.869 3.303-1.869 3.303-0.094 0.162-0.219 0.334-0.478 0.334zM13.069 2.378l-3.831 6.775c-0.003 0.003-0.003 0.009 0 0.012l2.441 4.456c0.047 0.097 0.050 0.194 0.003 0.269-0.044 0.072-0.125 0.109-0.231 0.109h-1.728c-0.266 0-0.397-0.175-0.484-0.328 0 0-2.453-4.5-2.459-4.512 0.122-0.216 3.85-6.828 3.85-6.828 0.094-0.166 0.206-0.328 0.463-0.328h1.753c0.103 0 0.188 0.041 0.231 0.109 0.044 0.072 0.044 0.169-0.006 0.266z" + } + }] +}; +exports.xing = xing; \ No newline at end of file diff --git a/dist/icomoon/xing2.js b/dist/icomoon/xing2.js new file mode 100644 index 000000000..2c61b6edc --- /dev/null +++ b/dist/icomoon/xing2.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.xing2 = void 0; +var xing2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M2.431 3.159c-0.138 0-0.256 0.050-0.316 0.144-0.059 0.1-0.050 0.225 0.013 0.353l1.559 2.7c0.003 0.006 0.003 0.009 0 0.013l-2.45 4.331c-0.063 0.128-0.059 0.256 0 0.353 0.059 0.094 0.163 0.156 0.3 0.156h2.306c0.344 0 0.513-0.234 0.628-0.447 0 0 2.397-4.241 2.491-4.406-0.009-0.016-1.588-2.766-1.588-2.766-0.116-0.203-0.287-0.431-0.644-0.431h-2.3z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M12.125 0c-0.344 0-0.494 0.216-0.619 0.441 0 0-4.972 8.816-5.134 9.106 0.009 0.016 3.278 6.016 3.278 6.016 0.116 0.203 0.291 0.441 0.644 0.441h2.306c0.137 0 0.247-0.053 0.306-0.147 0.063-0.1 0.059-0.228-0.006-0.356l-3.25-5.947c-0.003-0.006-0.003-0.009 0-0.016l5.109-9.034c0.063-0.128 0.066-0.256 0.006-0.356-0.059-0.094-0.169-0.147-0.306-0.147h-2.334z" + } + }] +}; +exports.xing2 = xing2; \ No newline at end of file diff --git a/dist/icomoon/yahoo.js b/dist/icomoon/yahoo.js new file mode 100644 index 000000000..1c598759b --- /dev/null +++ b/dist/icomoon/yahoo.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.yahoo = void 0; +var yahoo = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8.878 9.203v0c1.759-3.088 4.666-8.125 5.463-9.203-0.35 0.234-0.887 0.353-1.381 0.466l-0.747-0.466c-0.6 1.119-2.813 4.734-4.222 7.050-1.428-2.366-3.119-5.097-4.222-7.050-0.875 0.188-1.237 0.197-2.109 0v0 0c0 0 0 0 0 0v0c1.731 2.606 4.503 7.572 5.447 9.203v0l-0.128 6.797 1.013-0.466v-0.012l1.012 0.478-0.125-6.797z" + } + }] +}; +exports.yahoo = yahoo; \ No newline at end of file diff --git a/dist/icomoon/yahoo2.js b/dist/icomoon/yahoo2.js new file mode 100644 index 000000000..dde6ad84d --- /dev/null +++ b/dist/icomoon/yahoo2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.yahoo2 = void 0; +var yahoo2 = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M8.019 1.087c-2.828 0-5.5-0.372-8.019-1.087 0 5.653 0 14.581 0 16 2.522-0.716 5.194-1.088 8.019-1.088 2.794 0 5.459 0.363 7.981 1.088 0-5.444 0-10.153 0-16-2.522 0.725-5.184 1.087-7.981 1.087zM12.45 2.453l-0.097 0.153c-0.091 0.144-0.172 0.266-0.284 0.438-0.15 0.225-0.431 0.672-0.769 1.247-0.094 0.159-0.209 0.35-0.328 0.556-0.228 0.384-0.484 0.819-0.688 1.162-0.084 0.147-0.169 0.297-0.256 0.447-0.225 0.391-0.456 0.794-0.678 1.181-0.228 0.403-0.453 0.8-0.678 1.194v0.397c0 0.55 0.012 1.15 0.031 1.684 0.009 0.244 0.019 0.678 0.031 1.137 0.012 0.547 0.025 1.113 0.041 1.4l0.003 0.088v0.009l-0.094-0.025c-0.037-0.009-0.072-0.019-0.109-0.028-0.113-0.025-0.234-0.044-0.353-0.056-0.072-0.006-0.147-0.009-0.222-0.009 0 0 0 0 0 0s0 0 0 0c-0.075 0-0.15 0.003-0.222 0.009-0.119 0.012-0.241 0.031-0.353 0.056-0.037 0.009-0.075 0.019-0.109 0.028l-0.094 0.025v-0.009l0.003-0.088c0.013-0.284 0.028-0.853 0.041-1.4 0.009-0.459 0.022-0.894 0.031-1.137 0.022-0.537 0.031-1.134 0.031-1.684v-0.397c-0.225-0.397-0.45-0.791-0.678-1.194-0.222-0.391-0.453-0.791-0.675-1.181-0.088-0.15-0.172-0.3-0.256-0.447-0.2-0.347-0.459-0.781-0.688-1.162-0.122-0.203-0.237-0.397-0.328-0.556-0.338-0.575-0.619-1.019-0.769-1.247-0.112-0.172-0.194-0.294-0.284-0.438l-0.097-0.153 0.175 0.050c0.222 0.063 0.45 0.094 0.694 0.094s0.478-0.031 0.697-0.094l0.053-0.016 0.028 0.047c0.431 0.778 1.591 2.684 2.284 3.825 0.237 0.394 0.428 0.703 0.522 0.862 0 0 0 0 0-0.003 0 0 0 0 0 0.003 0.094-0.156 0.284-0.469 0.522-0.862 0.694-1.138 1.853-3.044 2.284-3.825l0.028-0.047 0.053 0.016c0.219 0.063 0.453 0.094 0.697 0.094s0.472-0.031 0.694-0.094l0.166-0.050z" + } + }] +}; +exports.yahoo2 = yahoo2; \ No newline at end of file diff --git a/dist/icomoon/yelp.js b/dist/icomoon/yelp.js new file mode 100644 index 000000000..b576b234c --- /dev/null +++ b/dist/icomoon/yelp.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.yelp = void 0; +var yelp = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9.514 10.21c-0.27 0.272-0.042 0.768-0.042 0.768l2.033 3.394c0 0 0.334 0.447 0.623 0.447 0.29 0 0.577-0.239 0.577-0.239l1.607-2.297c0 0 0.162-0.29 0.166-0.544 0.006-0.361-0.538-0.46-0.538-0.46l-3.805-1.222c-0 0-0.373-0.099-0.621 0.152zM9.321 8.5c0.195 0.33 0.732 0.234 0.732 0.234l3.796-1.109c0 0 0.517-0.21 0.591-0.491 0.072-0.281-0.085-0.619-0.085-0.619l-1.814-2.137c0 0-0.157-0.27-0.483-0.297-0.36-0.031-0.581 0.405-0.581 0.405l-2.145 3.375c0 0-0.19 0.336-0.010 0.64zM7.527 7.184c0.447-0.11 0.518-0.759 0.518-0.759l-0.030-5.404c0 0-0.067-0.667-0.367-0.847-0.47-0.285-0.609-0.136-0.744-0.116l-3.151 1.171c0 0-0.309 0.102-0.469 0.36-0.23 0.365 0.233 0.899 0.233 0.899l3.276 4.465c0 0 0.323 0.334 0.735 0.233zM6.749 9.371c0.011-0.417-0.5-0.667-0.5-0.667l-3.387-1.711c0 0-0.502-0.207-0.746-0.063-0.187 0.11-0.352 0.31-0.368 0.486l-0.221 2.716c0 0-0.033 0.471 0.089 0.685 0.173 0.304 0.741 0.092 0.741 0.092l3.955-0.874c0.154-0.103 0.423-0.113 0.438-0.664zM7.732 10.837c-0.339-0.174-0.746 0.187-0.746 0.187l-2.648 2.915c0 0-0.33 0.446-0.246 0.72 0.079 0.257 0.21 0.384 0.396 0.474l2.659 0.839c0 0 0.322 0.067 0.567-0.004 0.347-0.1 0.283-0.643 0.283-0.643l0.060-3.947c-0 0-0.014-0.38-0.324-0.541z" + } + }] +}; +exports.yelp = yelp; \ No newline at end of file diff --git a/dist/icomoon/youtube.js b/dist/icomoon/youtube.js new file mode 100644 index 000000000..f3f57123a --- /dev/null +++ b/dist/icomoon/youtube.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.youtube = void 0; +var youtube = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.841 4.8c0 0-0.156-1.103-0.637-1.587-0.609-0.637-1.291-0.641-1.603-0.678-2.237-0.163-5.597-0.163-5.597-0.163h-0.006c0 0-3.359 0-5.597 0.163-0.313 0.038-0.994 0.041-1.603 0.678-0.481 0.484-0.634 1.587-0.634 1.587s-0.159 1.294-0.159 2.591v1.213c0 1.294 0.159 2.591 0.159 2.591s0.156 1.103 0.634 1.588c0.609 0.637 1.409 0.616 1.766 0.684 1.281 0.122 5.441 0.159 5.441 0.159s3.363-0.006 5.6-0.166c0.313-0.037 0.994-0.041 1.603-0.678 0.481-0.484 0.637-1.588 0.637-1.588s0.159-1.294 0.159-2.591v-1.213c-0.003-1.294-0.162-2.591-0.162-2.591zM6.347 10.075v-4.497l4.322 2.256-4.322 2.241z" + } + }] +}; +exports.youtube = youtube; \ No newline at end of file diff --git a/dist/icomoon/youtube2.js b/dist/icomoon/youtube2.js new file mode 100644 index 000000000..634c00d2b --- /dev/null +++ b/dist/icomoon/youtube2.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.youtube2 = void 0; +var youtube2 = { + "viewBox": "0 0 40 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M5.375 2.647c0.003-0.014 0.005-0.023 0.006-0.028l0.016-0.118-0.74-0.004c-0.668-0.004-0.873 0-0.891 0.017-0.009 0.008-0.24 0.885-0.651 2.473-0.196 0.758-0.361 1.363-0.367 1.345s-0.24-0.883-0.522-1.922c-0.281-1.039-0.517-1.894-0.524-1.901-0.010-0.010-0.906-0.014-1.632-0.008-0.105 0.001-0.164-0.205 0.938 3.299 0.152 0.485 0.381 1.172 0.507 1.526 0.146 0.408 0.25 0.724 0.321 0.987 0.126 0.501 0.13 0.815 0.103 1.182-0.032 0.423-0.036 3.413-0.005 3.463 0.024 0.038 1.425 0.056 1.558 0.020 0.021-0.006 0.035-0.026 0.045-0.139 0.033-0.097 0.036-0.484 0.036-2.090v-2.051l0.090-0.283c0.059-0.185 0.206-0.672 0.328-1.082s0.269-0.9 0.327-1.090c0.529-1.724 1.033-3.419 1.047-3.516l0.011-0.079z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M13.221 5.135l-0 0.107-0.017 0-0.009 2.953-0.009 2.863-0.229 0.233c-0.257 0.261-0.462 0.361-0.648 0.314-0.203-0.051-0.197 0.028-0.214-3.356l-0.016-3.115h-1.474v0.107h-0.017v3.38c0 3.621-0 3.619 0.184 3.982 0.146 0.29 0.36 0.431 0.725 0.479h0c0.481 0.064 1-0.154 1.481-0.622l0.209-0.203v0.351c0 0.303 0.009 0.353 0.064 0.368 0.090 0.025 1.206 0.027 1.326 0.002l0.1-0.021v-0.104l0.017-0.003v-7.736l-1.472 0.020z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M9.483 6.661c-0.14-0.599-0.401-1.002-0.832-1.28-0.676-0.437-1.449-0.484-2.165-0.13-0.522 0.258-0.859 0.686-1.032 1.314-0.021 0.075-0.036 0.138-0.047 0.231-0.044 0.222-0.049 0.552-0.061 2.093-0.018 2.374 0.010 2.656 0.307 3.195 0.292 0.529 0.897 0.917 1.556 0.997 0.198 0.024 0.6-0.013 0.832-0.078 0.525-0.146 1.029-0.561 1.252-1.032 0.096-0.204 0.154-0.345 0.189-0.604 0.065-0.353 0.070-0.925 0.070-2.381-0-1.857-0.006-2.060-0.068-2.326zM7.802 11.5c-0.124 0.094-0.34 0.135-0.515 0.098-0.135-0.029-0.318-0.241-0.374-0.434-0.070-0.241-0.075-3.594-0.015-4.251 0.1-0.329 0.378-0.501 0.682-0.419 0.237 0.064 0.358 0.212 0.427 0.523 0.051 0.231 0.057 0.518 0.046 2.207-0.007 1.12-0.011 1.668-0.048 1.962-0.037 0.185-0.099 0.235-0.203 0.315z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M35.944 8.346h0.712l-0.011-0.645c-0.011-0.592-0.020-0.659-0.099-0.82-0.125-0.253-0.309-0.366-0.601-0.366-0.351 0-0.573 0.17-0.678 0.518-0.045 0.148-0.092 1.167-0.058 1.255 0.019 0.049 0.121 0.058 0.735 0.058z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M31.184 6.879c-0.095-0.191-0.272-0.286-0.477-0.278-0.16 0.006-0.337 0.073-0.508 0.203l-0.127 0.097v4.634l0.127 0.097c0.288 0.22 0.604 0.266 0.822 0.12 0.086-0.058 0.142-0.137 0.186-0.263 0.057-0.164 0.062-0.375 0.055-2.325-0.008-2.032-0.012-2.152-0.078-2.285z" + } + }, { + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M40.014 4.791c-0.142-1.701-0.255-2.253-0.605-2.962-0.465-0.939-1.136-1.434-2.092-1.543-0.739-0.084-3.521-0.203-6.094-0.26-4.456-0.099-11.782 0.092-12.718 0.331-0.432 0.111-0.757 0.299-1.094 0.634-0.591 0.588-0.944 1.432-1.085 2.6-0.323 2.666-0.33 5.886-0.019 8.649 0.134 1.188 0.41 1.96 0.928 2.596 0.323 0.397 0.881 0.734 1.379 0.835 0.35 0.071 2.1 0.169 4.65 0.26 0.38 0.014 1.385 0.037 2.235 0.052 1.77 0.031 5.025 0.013 6.886-0.039 1.252-0.035 3.534-0.128 3.961-0.161 0.12-0.009 0.398-0.027 0.618-0.039 0.739-0.042 1.209-0.196 1.65-0.543 0.571-0.449 1.013-1.278 1.2-2.251 0.177-0.92 0.295-2.559 0.319-4.42 0.020-1.555-0.007-2.393-0.119-3.741zM22.27 4.175l-0.828 0.010-0.036 8.83-0.718 0.009c-0.555 0.008-0.724-0.001-0.737-0.036-0.010-0.025-0.021-2.016-0.026-4.424l-0.009-4.379-1.617-0.020v-1.38l4.779 0.019 0.020 1.36-0.828 0.010zM27.347 9.236v3.797h-1.308v-0.4c0-0.301-0.011-0.4-0.047-0.4-0.026 0-0.144 0.099-0.263 0.22-0.259 0.263-0.565 0.474-0.827 0.572-0.542 0.203-1.056 0.084-1.275-0.293-0.201-0.345-0.204-0.423-0.204-4.005v-3.29h1.307l0.010 3.098c0.010 3.044 0.011 3.1 0.084 3.224 0.097 0.164 0.244 0.209 0.478 0.144 0.138-0.038 0.232-0.105 0.455-0.327l0.282-0.28v-5.859h1.308v3.797zM32.449 12.491c-0.115 0.257-0.372 0.508-0.583 0.57-0.549 0.162-0.99 0.030-1.499-0.449-0.158-0.149-0.305-0.269-0.327-0.269-0.027 0-0.041 0.116-0.041 0.345v0.345h-1.308v-10.248h1.308v1.672c0 0.919 0.012 1.672 0.027 1.672s0.153-0.122 0.307-0.27c0.354-0.341 0.649-0.491 1.024-0.519 0.669-0.051 1.068 0.294 1.25 1.080 0.057 0.245 0.062 0.525 0.062 2.798-0 2.768-0 2.78-0.221 3.273zM37.984 10.971c-0.012 0.285-0.046 0.612-0.077 0.727-0.182 0.674-0.666 1.152-1.366 1.348-0.942 0.264-1.98-0.168-2.394-0.997-0.232-0.465-0.241-0.558-0.241-2.831 0-1.853 0.007-2.081 0.066-2.334 0.168-0.715 0.584-1.178 1.289-1.435 0.204-0.074 0.417-0.113 0.63-0.117 0.761-0.016 1.515 0.393 1.832 1.059 0.213 0.449 0.24 0.642 0.261 1.908l0.019 1.136-2.789 0.019-0.010 0.763c-0.015 1.077 0.058 1.408 0.349 1.603 0.244 0.165 0.62 0.152 0.824-0.027 0.192-0.168 0.246-0.349 0.265-0.877l0.017-0.463h1.347l-0.022 0.518z" + } + }] +}; +exports.youtube2 = youtube2; \ No newline at end of file diff --git a/dist/icomoon/zoomIn.js b/dist/icomoon/zoomIn.js new file mode 100644 index 000000000..c36fbe2f4 --- /dev/null +++ b/dist/icomoon/zoomIn.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.zoomIn = void 0; +var zoomIn = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.504 13.616l-3.79-3.223c-0.392-0.353-0.811-0.514-1.149-0.499 0.895-1.048 1.435-2.407 1.435-3.893 0-3.314-2.686-6-6-6s-6 2.686-6 6 2.686 6 6 6c1.486 0 2.845-0.54 3.893-1.435-0.016 0.338 0.146 0.757 0.499 1.149l3.223 3.79c0.552 0.613 1.453 0.665 2.003 0.115s0.498-1.452-0.115-2.003zM6 10c-2.209 0-4-1.791-4-4s1.791-4 4-4 4 1.791 4 4-1.791 4-4 4zM7 3h-2v2h-2v2h2v2h2v-2h2v-2h-2z" + } + }] +}; +exports.zoomIn = zoomIn; \ No newline at end of file diff --git a/dist/icomoon/zoomOut.js b/dist/icomoon/zoomOut.js new file mode 100644 index 000000000..c360f282a --- /dev/null +++ b/dist/icomoon/zoomOut.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.zoomOut = void 0; +var zoomOut = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill": "#000000", + "d": "M15.504 13.616l-3.79-3.223c-0.392-0.353-0.811-0.514-1.149-0.499 0.895-1.048 1.435-2.407 1.435-3.893 0-3.314-2.686-6-6-6s-6 2.686-6 6 2.686 6 6 6c1.486 0 2.845-0.54 3.893-1.435-0.016 0.338 0.146 0.757 0.499 1.149l3.223 3.79c0.552 0.613 1.453 0.665 2.003 0.115s0.498-1.452-0.115-2.003zM6 10c-2.209 0-4-1.791-4-4s1.791-4 4-4 4 1.791 4 4-1.791 4-4 4zM3 5h6v2h-6z" + } + }] +}; +exports.zoomOut = zoomOut; \ No newline at end of file diff --git a/dist/iconic/alignBottom.js b/dist/iconic/alignBottom.js new file mode 100644 index 000000000..69a4f42f2 --- /dev/null +++ b/dist/iconic/alignBottom.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.alignBottom = void 0; +var alignBottom = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M.09 0c-.06 0-.09.04-.09.09v4.81c0 .05.04.09.09.09h1.81c.05 0 .09-.04.09-.09v-4.81c0-.06-.04-.09-.09-.09h-1.81zm6 0c-.05 0-.09.04-.09.09v4.81c0 .05.04.09.09.09h1.81c.05 0 .09-.04.09-.09v-4.81c0-.06-.04-.09-.09-.09h-1.81zm-3 2c-.06 0-.09.04-.09.09v2.81c0 .05.04.09.09.09h1.81c.05 0 .09-.04.09-.09v-2.81c0-.06-.04-.09-.09-.09h-1.81zm-3.09 4v1h8v-1h-8z" + } + }] +}; +exports.alignBottom = alignBottom; \ No newline at end of file diff --git a/dist/iconic/alignCenter.js b/dist/iconic/alignCenter.js new file mode 100644 index 000000000..de2455961 --- /dev/null +++ b/dist/iconic/alignCenter.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.alignCenter = void 0; +var alignCenter = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M.09 0c-.06 0-.09.04-.09.09v1.91h2v-1.91c0-.06-.04-.09-.09-.09h-1.81zm6 0c-.05 0-.09.04-.09.09v1.91h2v-1.91c0-.06-.04-.09-.09-.09h-1.81zm-3 1c-.06 0-.09.04-.09.09v.91h2v-.91c0-.05-.04-.09-.09-.09h-1.81zm-3.09 2v1h8v-1h-8zm0 2v1.91c0 .05.04.09.09.09h1.81c.05 0 .09-.04.09-.09v-1.91h-2zm3 0v.91c0 .05.04.09.09.09h1.81c.05 0 .09-.04.09-.09v-.91h-2zm3 0v1.91c0 .05.04.09.09.09h1.81c.05 0 .09-.04.09-.09v-1.91h-2z" + } + }] +}; +exports.alignCenter = alignCenter; \ No newline at end of file diff --git a/dist/iconic/alignTop.js b/dist/iconic/alignTop.js new file mode 100644 index 000000000..f7ab7b245 --- /dev/null +++ b/dist/iconic/alignTop.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.alignTop = void 0; +var alignTop = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v1h8v-1h-8zm.09 2c-.06 0-.09.04-.09.09v4.81c0 .05.04.09.09.09h1.81c.05 0 .09-.04.09-.09v-4.81c0-.06-.04-.09-.09-.09h-1.81zm3 0c-.06 0-.09.04-.09.09v2.81c0 .05.04.09.09.09h1.81c.05 0 .09-.04.09-.09v-2.81c0-.06-.04-.09-.09-.09h-1.81zm3 0c-.05 0-.09.04-.09.09v4.81c0 .05.04.09.09.09h1.81c.05 0 .09-.04.09-.09v-4.81c0-.06-.04-.09-.09-.09h-1.81z" + } + }] +}; +exports.alignTop = alignTop; \ No newline at end of file diff --git a/dist/iconic/alt.js b/dist/iconic/alt.js new file mode 100644 index 000000000..876f096b3 --- /dev/null +++ b/dist/iconic/alt.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.alt = void 0; +var alt = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v2c3.33 0 6 2.67 6 6h2c0-4.41-3.59-8-8-8zm0 3v2c1.67 0 3 1.33 3 3h2c0-2.75-2.25-5-5-5zm0 3v2h2c0-1.11-.9-2-2-2z" + } + }] +}; +exports.alt = alt; \ No newline at end of file diff --git a/dist/iconic/aperture.js b/dist/iconic/aperture.js new file mode 100644 index 000000000..ac11768e5 --- /dev/null +++ b/dist/iconic/aperture.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.aperture = void 0; +var aperture = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 0c-.69 0-1.34.19-1.91.5l3.22 2.34.75-2.25c-.6-.36-1.31-.59-2.06-.59zm-2.75 1.13c-.76.73-1.25 1.74-1.25 2.88 0 .25.02.48.06.72l3.09-2.22-1.91-1.38zm5.63.13l-1.22 3.75h2.19c.08-.32.16-.65.16-1 0-1.07-.44-2.03-1.13-2.75zm-4.72 3.22l-1.75 1.25c.55 1.13 1.6 1.99 2.88 2.22l-1.13-3.47zm1.56 1.53l.63 1.97c1.33-.12 2.46-.88 3.09-1.97h-3.72z" + } + }] +}; +exports.aperture = aperture; \ No newline at end of file diff --git a/dist/iconic/ascending.js b/dist/iconic/ascending.js new file mode 100644 index 000000000..6ba99d75b --- /dev/null +++ b/dist/iconic/ascending.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ascending = void 0; +var ascending = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M2 0v6h-2l2.5 2 2.5-2h-2v-6h-1zm2 0v1h2v-1h-2zm0 2v1h3v-1h-3zm0 2v1h4v-1h-4z" + } + }] +}; +exports.ascending = ascending; \ No newline at end of file diff --git a/dist/iconic/audio.js b/dist/iconic/audio.js new file mode 100644 index 000000000..d9f9de9cf --- /dev/null +++ b/dist/iconic/audio.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.audio = void 0; +var audio = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M1.16 0c-.72.72-1.16 1.71-1.16 2.81s.43 2.12 1.16 2.84l.72-.72c-.54-.54-.88-1.29-.88-2.13 0-.83.33-1.55.88-2.09l-.72-.72zm5.69 0l-.72.72c.54.54.88 1.26.88 2.09 0 .83-.33 1.58-.88 2.13l.72.72c.72-.72 1.16-1.74 1.16-2.84 0-1.1-.43-2.09-1.16-2.81zm-4.25 1.41c-.36.36-.59.86-.59 1.41 0 .55.23 1.08.59 1.44l.69-.72c-.18-.18-.28-.44-.28-.72 0-.28.1-.5.28-.69l-.69-.72zm2.81 0l-.69.72c.18.18.28.41.28.69 0 .28-.1.54-.28.72l.69.72c.36-.36.59-.89.59-1.44 0-.55-.23-1.05-.59-1.41z", + "transform": "translate(0 1)" + } + }] +}; +exports.audio = audio; \ No newline at end of file diff --git a/dist/iconic/badge.js b/dist/iconic/badge.js new file mode 100644 index 000000000..f8a965252 --- /dev/null +++ b/dist/iconic/badge.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.badge = void 0; +var badge = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M2 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-1 4.81v3.19l1-1 1 1v-3.19c-.31.11-.65.19-1 .19s-.69-.08-1-.19z", + "transform": "translate(2)" + } + }] +}; +exports.badge = badge; \ No newline at end of file diff --git a/dist/iconic/ban.js b/dist/iconic/ban.js new file mode 100644 index 000000000..788e98906 --- /dev/null +++ b/dist/iconic/ban.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ban = void 0; +var ban = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 0c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm0 1c.66 0 1.26.21 1.75.56l-4.19 4.19c-.35-.49-.56-1.09-.56-1.75 0-1.66 1.34-3 3-3zm2.44 1.25c.35.49.56 1.09.56 1.75 0 1.66-1.34 3-3 3-.66 0-1.26-.21-1.75-.56l4.19-4.19z" + } + }] +}; +exports.ban = ban; \ No newline at end of file diff --git a/dist/iconic/basket.js b/dist/iconic/basket.js new file mode 100644 index 000000000..14d0e9b07 --- /dev/null +++ b/dist/iconic/basket.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basket = void 0; +var basket = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3.97 0c-.13.01-.26.08-.34.19l-2.34 2.81h-1.28v1h1v3.66c0 .18.16.34.34.34h5.31c.18 0 .34-.16.34-.34v-3.66h1v-1h-1.28c-.27-.33-2.39-2.86-2.41-2.88-.11-.09-.22-.14-.34-.13zm.03 1.28l1.44 1.72h-2.88l1.44-1.72zm-1.5 3.72c.28 0 .5.22.5.5v1c0 .28-.22.5-.5.5s-.5-.22-.5-.5v-1c0-.28.22-.5.5-.5zm3 0c.28 0 .5.22.5.5v1c0 .28-.22.5-.5.5s-.5-.22-.5-.5v-1c0-.28.22-.5.5-.5z" + } + }] +}; +exports.basket = basket; \ No newline at end of file diff --git a/dist/iconic/beaker.js b/dist/iconic/beaker.js new file mode 100644 index 000000000..e5c52aa2d --- /dev/null +++ b/dist/iconic/beaker.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.beaker = void 0; +var beaker = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M1.34 0a.5.5 0 0 0 .16 1h.5v1.41c-.09.17-1.2 2.31-1.66 3.09-.16.26-.34.61-.34 1.06 0 .39.15.77.41 1.03s.64.41 1.03.41h5.13c.38 0 .74-.16 1-.41h.03c.26-.26.41-.64.41-1.03 0-.45-.19-.8-.34-1.06-.46-.78-1.57-2.92-1.66-3.09v-1.41h.5a.5.5 0 1 0 0-1h-5a.5.5 0 0 0-.09 0 .5.5 0 0 0-.06 0zm1.66 1h2v1.63l.06.09s.63 1.23 1.19 2.28h-4.5c.56-1.05 1.19-2.28 1.19-2.28l.06-.09v-1.63z" + } + }] +}; +exports.beaker = beaker; \ No newline at end of file diff --git a/dist/iconic/bell.js b/dist/iconic/bell.js new file mode 100644 index 000000000..47635456d --- /dev/null +++ b/dist/iconic/bell.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bell = void 0; +var bell = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 0c-1.1 0-2 .9-2 2 0 1.04-.52 1.98-1.34 2.66-.41.34-.66.82-.66 1.34h8c0-.52-.24-1-.66-1.34-.82-.68-1.34-1.62-1.34-2.66 0-1.1-.89-2-2-2zm-1 7c0 .55.45 1 1 1s1-.45 1-1h-2z" + } + }] +}; +exports.bell = bell; \ No newline at end of file diff --git a/dist/iconic/bluetooth.js b/dist/iconic/bluetooth.js new file mode 100644 index 000000000..2b5bf11a0 --- /dev/null +++ b/dist/iconic/bluetooth.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bluetooth = void 0; +var bluetooth = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M1.5 0v2.5l-.75-.75-.75.75 1.5 1.5-1.5 1.5.75.75.75-.75v2.5h.5l3.5-2.5-2.25-1.53 2.25-1.47-3.5-2.5h-.5zm1 1.5l1.5 1-1.5 1v-2zm0 3l1.5 1-1.5 1v-2z", + "transform": "translate(1)" + } + }] +}; +exports.bluetooth = bluetooth; \ No newline at end of file diff --git a/dist/iconic/bold.js b/dist/iconic/bold.js new file mode 100644 index 000000000..f106f091e --- /dev/null +++ b/dist/iconic/bold.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bold = void 0; +var bold = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v1c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1v1h5.5c1.38 0 2.5-1.12 2.5-2.5 0-1-.59-1.85-1.44-2.25.27-.34.44-.78.44-1.25 0-1.1-.89-2-2-2h-5zm3 1h1c.55 0 1 .45 1 1s-.45 1-1 1h-1v-2zm0 3h1.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5h-1.5v-3z" + } + }] +}; +exports.bold = bold; \ No newline at end of file diff --git a/dist/iconic/bolt.js b/dist/iconic/bolt.js new file mode 100644 index 000000000..66628221d --- /dev/null +++ b/dist/iconic/bolt.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bolt = void 0; +var bolt = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3 0l-3 5h2v3l3-5h-2v-3z", + "transform": "translate(1)" + } + }] +}; +exports.bolt = bolt; \ No newline at end of file diff --git a/dist/iconic/book.js b/dist/iconic/book.js new file mode 100644 index 000000000..0730b2f24 --- /dev/null +++ b/dist/iconic/book.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.book = void 0; +var book = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M1 0c-.07 0-.13.01-.19.03-.39.08-.7.39-.78.78-.03.06-.03.12-.03.19v5.5c0 .83.67 1.5 1.5 1.5h5.5v-1h-5.5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h5.5v-5.5c0-.28-.22-.5-.5-.5h-.5v3l-1-1-1 1v-3h-3z" + } + }] +}; +exports.book = book; \ No newline at end of file diff --git a/dist/iconic/bookmark.js b/dist/iconic/bookmark.js new file mode 100644 index 000000000..a8b2ad311 --- /dev/null +++ b/dist/iconic/bookmark.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bookmark = void 0; +var bookmark = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v8l2-2 2 2v-8h-4z", + "transform": "translate(2)" + } + }] +}; +exports.bookmark = bookmark; \ No newline at end of file diff --git a/dist/iconic/both.js b/dist/iconic/both.js new file mode 100644 index 000000000..73b9351a4 --- /dev/null +++ b/dist/iconic/both.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.both = void 0; +var both = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 0l1.66 1.66-4 4-1.66-1.66v4h4l-1.66-1.66 4-4 1.66 1.66v-4h-4z" + } + }] +}; +exports.both = both; \ No newline at end of file diff --git a/dist/iconic/bottom.js b/dist/iconic/bottom.js new file mode 100644 index 000000000..3bfbc7503 --- /dev/null +++ b/dist/iconic/bottom.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bottom = void 0; +var bottom = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M2 0v5h-2l2.53 3 2.47-3h-2v-5h-1z", + "transform": "translate(1)" + } + }] +}; +exports.bottom = bottom; \ No newline at end of file diff --git a/dist/iconic/box.js b/dist/iconic/box.js new file mode 100644 index 000000000..104c5eb5c --- /dev/null +++ b/dist/iconic/box.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.box = void 0; +var box = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v1h8v-1h-8zm0 2v5.91c0 .05.04.09.09.09h7.81c.05 0 .09-.04.09-.09v-5.91h-2.97v1.03h-2.03v-1.03h-3z" + } + }] +}; +exports.box = box; \ No newline at end of file diff --git a/dist/iconic/boxed.js b/dist/iconic/boxed.js new file mode 100644 index 000000000..293e91ad4 --- /dev/null +++ b/dist/iconic/boxed.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.boxed = void 0; +var boxed = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M.75 0c-.41 0-.75.34-.75.75v5.5c0 .41.34.75.75.75h4.5c.41 0 .75-.34.75-.75v-1.25h-1v1h-4v-5h2v-1h-2.25zm5.25 0v1c-2.05 0-3.7 1.54-3.94 3.53.21-.88.99-1.53 1.94-1.53h2v1l2-2-2-2z" + } + }] +}; +exports.boxed = boxed; \ No newline at end of file diff --git a/dist/iconic/briefcase.js b/dist/iconic/briefcase.js new file mode 100644 index 000000000..afa6f4da9 --- /dev/null +++ b/dist/iconic/briefcase.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.briefcase = void 0; +var briefcase = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3 0c-.55 0-1 .45-1 1v1h-1.91c-.06 0-.09.04-.09.09v2.41c0 .28.22.5.5.5h7c.28 0 .5-.22.5-.5v-2.41c0-.06-.04-.09-.09-.09h-1.91v-1c0-.55-.45-1-1-1h-2zm0 1h2v1h-2v-1zm-3 4.91v2c0 .05.04.09.09.09h7.81c.05 0 .09-.04.09-.09v-2c-.16.06-.32.09-.5.09h-7c-.18 0-.34-.04-.5-.09z" + } + }] +}; +exports.briefcase = briefcase; \ No newline at end of file diff --git a/dist/iconic/broken.js b/dist/iconic/broken.js new file mode 100644 index 000000000..34bce4cd1 --- /dev/null +++ b/dist/iconic/broken.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.broken = void 0; +var broken = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M2 0v1h-1v1h2v-2h-1zm3.88.03c-.18.01-.36.03-.53.09-.27.1-.53.25-.75.47l-.44.44a.5.5 0 1 0 .69.69l.44-.44c.11-.11.24-.17.38-.22.35-.12.78-.07 1.06.22.39.39.39 1.04 0 1.44l-1.5 1.5a.5.5 0 1 0 .69.69l1.5-1.5c.78-.78.78-2.04 0-2.81-.28-.28-.61-.45-.97-.53-.18-.04-.38-.04-.56-.03zm-3.59 2.91a.5.5 0 0 0-.19.16l-1.5 1.5c-.78.78-.78 2.04 0 2.81.56.56 1.36.72 2.06.47.27-.1.53-.25.75-.47l.44-.44a.5.5 0 1 0-.69-.69l-.44.44c-.11.11-.24.17-.38.22-.35.12-.78.07-1.06-.22-.39-.39-.39-1.04 0-1.44l1.5-1.5a.5.5 0 0 0-.44-.84.5.5 0 0 0-.06 0zm2.72 3.06v2h1v-1h1v-1h-2z" + } + }] +}; +exports.broken = broken; \ No newline at end of file diff --git a/dist/iconic/browser.js b/dist/iconic/browser.js new file mode 100644 index 000000000..640048e41 --- /dev/null +++ b/dist/iconic/browser.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.browser = void 0; +var browser = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M.34 0a.5.5 0 0 0-.34.5v7a.5.5 0 0 0 .5.5h7a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.5-.5h-7a.5.5 0 0 0-.09 0 .5.5 0 0 0-.06 0zm1.16 1c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5.22-.5.5-.5zm2 0h3c.28 0 .5.22.5.5s-.22.5-.5.5h-3c-.28 0-.5-.22-.5-.5s.22-.5.5-.5zm-2.5 2h6v4h-6v-4z" + } + }] +}; +exports.browser = browser; \ No newline at end of file diff --git a/dist/iconic/brush.js b/dist/iconic/brush.js new file mode 100644 index 000000000..6caa5f9c4 --- /dev/null +++ b/dist/iconic/brush.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.brush = void 0; +var brush = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M7.44.03c-.03 0-.04.02-.06.03l-3.75 2.66c-.04.03-.1.11-.13.16l-.13.25c.72.23 1.27.78 1.5 1.5l.25-.13c.05-.03.12-.08.16-.13l2.66-3.75c.03-.05.04-.09 0-.13l-.44-.44c-.02-.02-.04-.03-.06-.03zm-4.78 3.97c-.74 0-1.31.61-1.31 1.34 0 .99-.55 1.85-1.34 2.31.39.22.86.34 1.34.34 1.47 0 2.66-1.18 2.66-2.66 0-.74-.61-1.34-1.34-1.34z" + } + }] +}; +exports.brush = brush; \ No newline at end of file diff --git a/dist/iconic/bug.js b/dist/iconic/bug.js new file mode 100644 index 000000000..71f7339be --- /dev/null +++ b/dist/iconic/bug.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bug = void 0; +var bug = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3.5 0c-1.19 0-1.98 1.69-1.19 2.5-.09.07-.2.14-.28.22l-1.31-.66a.5.5 0 0 0-.34-.06.5.5 0 0 0-.09.94l1.16.56c-.09.16-.19.33-.25.5h-.69a.5.5 0 0 0-.09 0 .5.5 0 1 0 .09 1h.5c0 .23.02.45.06.66l-.78.41a.5.5 0 1 0 .44.88l.66-.34c.25.46.62.85 1.03 1.09.35-.19.59-.44.59-.72v-1.44a.5.5 0 0 0 0-.09v-.81a.5.5 0 0 0 0-.22c.05-.23.26-.41.5-.41.28 0 .5.22.5.5v.88a.5.5 0 0 0 0 .09v.06a.5.5 0 0 0 0 .09v1.34c0 .27.24.53.59.72.41-.25.79-.63 1.03-1.09l.66.34a.5.5 0 1 0 .44-.88l-.78-.41c.04-.21.06-.43.06-.66h.5a.5.5 0 1 0 0-1h-.69c-.06-.17-.16-.34-.25-.5l1.16-.56a.5.5 0 0 0-.31-.94.5.5 0 0 0-.13.06l-1.31.66c-.09-.08-.19-.15-.28-.22.78-.83 0-2.5-1.19-2.5z" + } + }] +}; +exports.bug = bug; \ No newline at end of file diff --git a/dist/iconic/bullhorn.js b/dist/iconic/bullhorn.js new file mode 100644 index 000000000..c016c5022 --- /dev/null +++ b/dist/iconic/bullhorn.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bullhorn = void 0; +var bullhorn = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M6 0v6c.03.01.07 0 .09 0h.81c.05 0 .09-.04.09-.09v-5.81c0-.06-.04-.09-.09-.09h-.91zm-1 .5l-2.91 1.47c-.05.02-.13.03-.19.03h-1.81c-.06 0-.09.04-.09.09v1.81c0 .06.04.09.09.09h.91l1.03 2.72c.11.25.44.36.69.25.25-.11.36-.44.25-.69l-.75-1.78c.03-.14.13-.22.28-.22v-.03l2.5 1.25v-5z" + } + }] +}; +exports.bullhorn = bullhorn; \ No newline at end of file diff --git a/dist/iconic/calculator.js b/dist/iconic/calculator.js new file mode 100644 index 000000000..a85525695 --- /dev/null +++ b/dist/iconic/calculator.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.calculator = void 0; +var calculator = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M.09 0c-.06 0-.09.04-.09.09v7.81c0 .05.04.09.09.09h6.81c.05 0 .09-.04.09-.09v-7.81c0-.06-.04-.09-.09-.09h-6.81zm.91 1h5v2h-5v-2zm0 3h1v1h-1v-1zm2 0h1v1h-1v-1zm2 0h1v3h-1v-3zm-4 2h1v1h-1v-1zm2 0h1v1h-1v-1z" + } + }] +}; +exports.calculator = calculator; \ No newline at end of file diff --git a/dist/iconic/calendar.js b/dist/iconic/calendar.js new file mode 100644 index 000000000..e73489f28 --- /dev/null +++ b/dist/iconic/calendar.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.calendar = void 0; +var calendar = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v2h7v-2h-7zm0 3v4.91c0 .05.04.09.09.09h6.81c.05 0 .09-.04.09-.09v-4.91h-7zm1 1h1v1h-1v-1zm2 0h1v1h-1v-1zm2 0h1v1h-1v-1zm-4 2h1v1h-1v-1zm2 0h1v1h-1v-1z" + } + }] +}; +exports.calendar = calendar; \ No newline at end of file diff --git a/dist/iconic/card.js b/dist/iconic/card.js new file mode 100644 index 000000000..cd05b8a9e --- /dev/null +++ b/dist/iconic/card.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.card = void 0; +var card = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M.25 0c-.14 0-.25.11-.25.25v.75h8v-.75c0-.14-.11-.25-.25-.25h-7.5zm-.25 2v3.75c0 .14.11.25.25.25h7.5c.14 0 .25-.11.25-.25v-3.75h-8zm1 2h1v1h-1v-1zm2 0h1v1h-1v-1z", + "transform": "translate(0 1)" + } + }] +}; +exports.card = card; \ No newline at end of file diff --git a/dist/iconic/cart.js b/dist/iconic/cart.js new file mode 100644 index 000000000..87271ccc3 --- /dev/null +++ b/dist/iconic/cart.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cart = void 0; +var cart = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M.34 0a.5.5 0 0 0 .16 1h1.5l.09.25.41 1.25.41 1.25c.04.13.21.25.34.25h3.5c.14 0 .3-.12.34-.25l.81-2.5c.04-.13-.02-.25-.16-.25h-4.44l-.38-.72a.5.5 0 0 0-.44-.28h-2a.5.5 0 0 0-.09 0 .5.5 0 0 0-.06 0zm3.16 5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm3 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z", + "transform": "translate(0 1)" + } + }] +}; +exports.cart = cart; \ No newline at end of file diff --git a/dist/iconic/center.js b/dist/iconic/center.js new file mode 100644 index 000000000..ebff2dc42 --- /dev/null +++ b/dist/iconic/center.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.center = void 0; +var center = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v1h8v-1h-8zm1 2v1h6v-1h-6zm-1 2v1h8v-1h-8zm1 2v1h6v-1h-6z" + } + }] +}; +exports.center = center; \ No newline at end of file diff --git a/dist/iconic/chart.js b/dist/iconic/chart.js new file mode 100644 index 000000000..99505e9dd --- /dev/null +++ b/dist/iconic/chart.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.chart = void 0; +var chart = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v7h8v-1h-7v-6h-1zm5 0v5h2v-5h-2zm-3 2v3h2v-3h-2z" + } + }] +}; +exports.chart = chart; \ No newline at end of file diff --git a/dist/iconic/chat.js b/dist/iconic/chat.js new file mode 100644 index 000000000..310b88cf3 --- /dev/null +++ b/dist/iconic/chat.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.chat = void 0; +var chat = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v5l1-1h1v-3h3v-1h-5zm3 2v4h4l1 1v-5h-5z" + } + }] +}; +exports.chat = chat; \ No newline at end of file diff --git a/dist/iconic/check.js b/dist/iconic/check.js new file mode 100644 index 000000000..71341c152 --- /dev/null +++ b/dist/iconic/check.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.check = void 0; +var check = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M6.41 0l-.69.72-2.78 2.78-.81-.78-.72-.72-1.41 1.41.72.72 1.5 1.5.69.72.72-.72 3.5-3.5.72-.72-1.44-1.41z", + "transform": "translate(0 1)" + } + }] +}; +exports.check = check; \ No newline at end of file diff --git a/dist/iconic/circle.js b/dist/iconic/circle.js new file mode 100644 index 000000000..0185d0460 --- /dev/null +++ b/dist/iconic/circle.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.circle = void 0; +var circle = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 0c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm-1 2l3 2-3 2v-4z" + } + }] +}; +exports.circle = circle; \ No newline at end of file diff --git a/dist/iconic/circleBottom.js b/dist/iconic/circleBottom.js new file mode 100644 index 000000000..89866d476 --- /dev/null +++ b/dist/iconic/circleBottom.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.circleBottom = void 0; +var circleBottom = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 0c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm-1 1h2v3h2l-3 3-3-3h2v-3z" + } + }] +}; +exports.circleBottom = circleBottom; \ No newline at end of file diff --git a/dist/iconic/circleLeft.js b/dist/iconic/circleLeft.js new file mode 100644 index 000000000..c6d405e95 --- /dev/null +++ b/dist/iconic/circleLeft.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.circleLeft = void 0; +var circleLeft = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 0c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 1v2h3v2h-3v2l-3-3 3-3z" + } + }] +}; +exports.circleLeft = circleLeft; \ No newline at end of file diff --git a/dist/iconic/circleRight.js b/dist/iconic/circleRight.js new file mode 100644 index 000000000..dc9499086 --- /dev/null +++ b/dist/iconic/circleRight.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.circleRight = void 0; +var circleRight = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 0c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 1l3 3-3 3v-2h-3v-2h3v-2z" + } + }] +}; +exports.circleRight = circleRight; \ No newline at end of file diff --git a/dist/iconic/circleTop.js b/dist/iconic/circleTop.js new file mode 100644 index 000000000..36a25df12 --- /dev/null +++ b/dist/iconic/circleTop.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.circleTop = void 0; +var circleTop = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 0c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 1l3 3h-2v3h-2v-3h-2l3-3z" + } + }] +}; +exports.circleTop = circleTop; \ No newline at end of file diff --git a/dist/iconic/circular.js b/dist/iconic/circular.js new file mode 100644 index 000000000..4d02144f2 --- /dev/null +++ b/dist/iconic/circular.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.circular = void 0; +var circular = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 0c-1.65 0-3 1.35-3 3h-1l1.5 2 1.5-2h-1c0-1.11.89-2 2-2v-1zm2.5 1l-1.5 2h1c0 1.11-.89 2-2 2v1c1.65 0 3-1.35 3-3h1l-1.5-2z", + "transform": "translate(0 1)" + } + }] +}; +exports.circular = circular; \ No newline at end of file diff --git a/dist/iconic/clipboard.js b/dist/iconic/clipboard.js new file mode 100644 index 000000000..2a95c4dca --- /dev/null +++ b/dist/iconic/clipboard.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.clipboard = void 0; +var clipboard = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3.5 0c-.28 0-.5.22-.5.5v.5h-.75c-.14 0-.25.11-.25.25v.75h3v-.75c0-.14-.11-.25-.25-.25h-.75v-.5c0-.28-.22-.5-.5-.5zm-3.25 1c-.14 0-.25.11-.25.25v6.5c0 .14.11.25.25.25h6.5c.14 0 .25-.11.25-.25v-6.5c0-.14-.11-.25-.25-.25h-.75v2h-5v-2h-.75z" + } + }] +}; +exports.clipboard = clipboard; \ No newline at end of file diff --git a/dist/iconic/clock.js b/dist/iconic/clock.js new file mode 100644 index 000000000..b1d9faad5 --- /dev/null +++ b/dist/iconic/clock.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.clock = void 0; +var clock = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 0c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm0 1c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm-.5 1v2.22l.16.13.5.5.34.38.72-.72-.38-.34-.34-.34v-1.81h-1z" + } + }] +}; +exports.clock = clock; \ No newline at end of file diff --git a/dist/iconic/closed.js b/dist/iconic/closed.js new file mode 100644 index 000000000..c27b481a5 --- /dev/null +++ b/dist/iconic/closed.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.closed = void 0; +var closed = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v1l4 2 4-2v-1h-8zm0 2v4h8v-4l-4 2-4-2z", + "transform": "translate(0 1)" + } + }] +}; +exports.closed = closed; \ No newline at end of file diff --git a/dist/iconic/cloud.js b/dist/iconic/cloud.js new file mode 100644 index 000000000..34d3c1827 --- /dev/null +++ b/dist/iconic/cloud.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cloud = void 0; +var cloud = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4.5 0c-1.21 0-2.27.86-2.5 2-1.1 0-2 .9-2 2s.9 2 2 2h4.5c.83 0 1.5-.67 1.5-1.5 0-.65-.42-1.29-1-1.5v-.5c0-1.38-1.12-2.5-2.5-2.5z", + "transform": "translate(0 1)" + } + }] +}; +exports.cloud = cloud; \ No newline at end of file diff --git a/dist/iconic/cloudy.js b/dist/iconic/cloudy.js new file mode 100644 index 000000000..42abd0775 --- /dev/null +++ b/dist/iconic/cloudy.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cloudy = void 0; +var cloudy = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M2.5 0c-1.38 0-2.5 1.12-2.5 2.5 0 .39.09.74.25 1.06.3-.21.64-.37 1-.47.55-1.25 1.82-2.09 3.25-2.09-.46-.6-1.18-1-2-1zm2 2c-1.21 0-2.27.86-2.5 2-1.1 0-2 .9-2 2s.9 2 2 2h4.5c.83 0 1.5-.67 1.5-1.5 0-.65-.42-1.29-1-1.5v-.5c0-1.38-1.12-2.5-2.5-2.5z" + } + }] +}; +exports.cloudy = cloudy; \ No newline at end of file diff --git a/dist/iconic/code.js b/dist/iconic/code.js new file mode 100644 index 000000000..2bb5d6756 --- /dev/null +++ b/dist/iconic/code.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.code = void 0; +var code = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M5 0l-3 6h1l3-6h-1zm-4 1l-1 2 1 2h1l-1-2 1-2h-1zm5 0l1 2-1 2h1l1-2-1-2h-1z", + "transform": "translate(0 1)" + } + }] +}; +exports.code = code; \ No newline at end of file diff --git a/dist/iconic/cog.js b/dist/iconic/cog.js new file mode 100644 index 000000000..6a1eb2950 --- /dev/null +++ b/dist/iconic/cog.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cog = void 0; +var cog = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3.5 0l-.5 1.19c-.1.03-.19.08-.28.13l-1.19-.5-.72.72.5 1.19c-.05.1-.09.18-.13.28l-1.19.5v1l1.19.5c.04.1.08.18.13.28l-.5 1.19.72.72 1.19-.5c.09.04.18.09.28.13l.5 1.19h1l.5-1.19c.09-.04.19-.08.28-.13l1.19.5.72-.72-.5-1.19c.04-.09.09-.19.13-.28l1.19-.5v-1l-1.19-.5c-.03-.09-.08-.19-.13-.28l.5-1.19-.72-.72-1.19.5c-.09-.04-.19-.09-.28-.13l-.5-1.19h-1zm.5 2.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5z" + } + }] +}; +exports.cog = cog; \ No newline at end of file diff --git a/dist/iconic/command.js b/dist/iconic/command.js new file mode 100644 index 000000000..27e0f9aa4 --- /dev/null +++ b/dist/iconic/command.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.command = void 0; +var command = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M1.5 0c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5h.5v1h-.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5v-.5h1v.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5-.67-1.5-1.5-1.5h-.5v-1h.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5v.5h-1v-.5c0-.83-.67-1.5-1.5-1.5zm0 1c.28 0 .5.22.5.5v.5h-.5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5zm4 0c.28 0 .5.22.5.5s-.22.5-.5.5h-.5v-.5c0-.28.22-.5.5-.5zm-2.5 2h1v1h-1v-1zm-1.5 2h.5v.5c0 .28-.22.5-.5.5s-.5-.22-.5-.5.22-.5.5-.5zm3.5 0h.5c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5v-.5z" + } + }] +}; +exports.command = command; \ No newline at end of file diff --git a/dist/iconic/compass.js b/dist/iconic/compass.js new file mode 100644 index 000000000..7ca21cd95 --- /dev/null +++ b/dist/iconic/compass.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.compass = void 0; +var compass = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 0c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm0 1c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm2 1l-3 1-1 3 3-1 1-3zm-2 1.5c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5.22-.5.5-.5z" + } + }] +}; +exports.compass = compass; \ No newline at end of file diff --git a/dist/iconic/contrast.js b/dist/iconic/contrast.js new file mode 100644 index 000000000..ed0755e44 --- /dev/null +++ b/dist/iconic/contrast.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.contrast = void 0; +var contrast = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 0c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm0 1c1.66 0 3 1.34 3 3s-1.34 3-3 3v-6z" + } + }] +}; +exports.contrast = contrast; \ No newline at end of file diff --git a/dist/iconic/copywriting.js b/dist/iconic/copywriting.js new file mode 100644 index 000000000..4faf70f4a --- /dev/null +++ b/dist/iconic/copywriting.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.copywriting = void 0; +var copywriting = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v1h8v-1h-8zm0 2v1h5v-1h-5zm0 3v1h8v-1h-8zm0 2v1h6v-1h-6zm7.5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z" + } + }] +}; +exports.copywriting = copywriting; \ No newline at end of file diff --git a/dist/iconic/crop.js b/dist/iconic/crop.js new file mode 100644 index 000000000..da1c7b8a4 --- /dev/null +++ b/dist/iconic/crop.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.crop = void 0; +var crop = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M1 0v1h-1v1h1v5h5v1h1v-1h1v-1h-1v-4.5l1-1-.5-.5-1 1h-4.5v-1h-1zm1 2h3.5l-3.5 3.5v-3.5zm4 .5v3.5h-3.5l3.5-3.5z" + } + }] +}; +exports.crop = crop; \ No newline at end of file diff --git a/dist/iconic/cross.js b/dist/iconic/cross.js new file mode 100644 index 000000000..20df4025c --- /dev/null +++ b/dist/iconic/cross.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cross = void 0; +var cross = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M2 0v2h-2v4h2v2h4v-2h2v-4h-2v-2h-4z" + } + }] +}; +exports.cross = cross; \ No newline at end of file diff --git a/dist/iconic/dashboard.js b/dist/iconic/dashboard.js new file mode 100644 index 000000000..27e67d0b2 --- /dev/null +++ b/dist/iconic/dashboard.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.dashboard = void 0; +var dashboard = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 0c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm0 1c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm0 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-1.66 1a.5.5 0 0 0-.19.84l.91.91c-.02.08-.06.16-.06.25 0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1c-.09 0-.17.04-.25.06l-.91-.91a.5.5 0 0 0-.44-.16.5.5 0 0 0-.06 0zm3.16 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z" + } + }] +}; +exports.dashboard = dashboard; \ No newline at end of file diff --git a/dist/iconic/deleteIconic.js b/dist/iconic/deleteIconic.js new file mode 100644 index 000000000..eaf093731 --- /dev/null +++ b/dist/iconic/deleteIconic.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.deleteIconic = void 0; +var deleteIconic = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M2 0l-2 3 2 3h6v-6h-6zm1.5.78l1.5 1.5 1.5-1.5.72.72-1.5 1.5 1.5 1.5-.72.72-1.5-1.5-1.5 1.5-.72-.72 1.5-1.5-1.5-1.5.72-.72z", + "transform": "translate(0 1)" + } + }] +}; +exports.deleteIconic = deleteIconic; \ No newline at end of file diff --git a/dist/iconic/descending.js b/dist/iconic/descending.js new file mode 100644 index 000000000..b1716e82d --- /dev/null +++ b/dist/iconic/descending.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.descending = void 0; +var descending = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M2 0v6h-2l2.5 2 2.5-2h-2v-6h-1zm2 0v1h4v-1h-4zm0 2v1h3v-1h-3zm0 2v1h2v-1h-2z" + } + }] +}; +exports.descending = descending; \ No newline at end of file diff --git a/dist/iconic/dial.js b/dist/iconic/dial.js new file mode 100644 index 000000000..41aa10d7f --- /dev/null +++ b/dist/iconic/dial.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.dial = void 0; +var dial = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 0c-2.2 0-4 1.8-4 4h1c0-1.66 1.34-3 3-3s3 1.34 3 3h1c0-2.2-1.8-4-4-4zm-.59 2.09c-.81.25-1.41 1.01-1.41 1.91 0 1.11.9 2 2 2 1.11 0 2-.89 2-2 0-.9-.59-1.65-1.41-1.91l-.59.88-.59-.88z", + "transform": "translate(0 1)" + } + }] +}; +exports.dial = dial; \ No newline at end of file diff --git a/dist/iconic/document.js b/dist/iconic/document.js new file mode 100644 index 000000000..c0e03b506 --- /dev/null +++ b/dist/iconic/document.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.document = void 0; +var document = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v8h7v-4h-4v-4h-3zm4 0v3h3l-3-3zm-3 2h1v1h-1v-1zm0 2h1v1h-1v-1zm0 2h4v1h-4v-1z" + } + }] +}; +exports.document = document; \ No newline at end of file diff --git a/dist/iconic/dollar.js b/dist/iconic/dollar.js new file mode 100644 index 000000000..04a478907 --- /dev/null +++ b/dist/iconic/dollar.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.dollar = void 0; +var dollar = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M2 0v1h-.75c-.68 0-1.25.57-1.25 1.25v.5c0 .68.44 1.24 1.09 1.41l2.56.66c.14.04.34.29.34.44v.5c0 .14-.11.25-.25.25h-2.5c-.12 0-.21-.04-.25-.06v-.94h-1v1c0 .34.2.63.44.78.23.16.52.22.81.22h.75v1h1v-1h.75c.69 0 1.25-.56 1.25-1.25v-.5c0-.68-.44-1.24-1.09-1.41l-2.56-.66c-.14-.04-.34-.29-.34-.44v-.5c0-.14.11-.25.25-.25h2.5c.11 0 .21.04.25.06v.94h1v-1c0-.34-.2-.63-.44-.78-.23-.16-.52-.22-.81-.22h-.75v-1h-1z", + "transform": "translate(1)" + } + }] +}; +exports.dollar = dollar; \ No newline at end of file diff --git a/dist/iconic/down.js b/dist/iconic/down.js new file mode 100644 index 000000000..506fa98f6 --- /dev/null +++ b/dist/iconic/down.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.down = void 0; +var down = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v2h8v-2h-8zm2 3l2 2 2-2h-4zm-2 4v1h8v-1h-8z" + } + }] +}; +exports.down = down; \ No newline at end of file diff --git a/dist/iconic/download.js b/dist/iconic/download.js new file mode 100644 index 000000000..434ea7b7f --- /dev/null +++ b/dist/iconic/download.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.download = void 0; +var download = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4.5 0c-1.21 0-2.27.86-2.5 2-1.1 0-2 .9-2 2 0 .37.11.71.28 1h2.72v-.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v.5h1.91c.06-.16.09-.32.09-.5 0-.65-.42-1.29-1-1.5v-.5c0-1.38-1.12-2.5-2.5-2.5zm-.16 4a.5.5 0 0 0-.34.5v1.5h-1.5l2 2 2-2h-1.5v-1.5a.5.5 0 0 0-.59-.5.5.5 0 0 0-.06 0z" + } + }] +}; +exports.download = download; \ No newline at end of file diff --git a/dist/iconic/drive.js b/dist/iconic/drive.js new file mode 100644 index 000000000..b041e4e80 --- /dev/null +++ b/dist/iconic/drive.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.drive = void 0; +var drive = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M.19 0c-.11 0-.19.08-.19.19v3.31c0 .28.22.5.5.5h6c.28 0 .5-.22.5-.5v-3.31c0-.11-.08-.19-.19-.19h-6.63zm-.19 4.91v2.91c0 .11.08.19.19.19h6.63c.11 0 .19-.08.19-.19v-2.91c-.16.06-.32.09-.5.09h-6c-.18 0-.34-.04-.5-.09zm5.5 1.09c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5.22-.5.5-.5z" + } + }] +}; +exports.drive = drive; \ No newline at end of file diff --git a/dist/iconic/droplet.js b/dist/iconic/droplet.js new file mode 100644 index 000000000..cdcf6e3c2 --- /dev/null +++ b/dist/iconic/droplet.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.droplet = void 0; +var droplet = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3 0l-.34.34c-.11.11-2.66 2.69-2.66 4.88 0 1.65 1.35 3 3 3s3-1.35 3-3c0-2.18-2.55-4.77-2.66-4.88l-.34-.34zm-1.5 4.72c.28 0 .5.22.5.5 0 .55.45 1 1 1 .28 0 .5.22.5.5s-.22.5-.5.5c-1.1 0-2-.9-2-2 0-.28.22-.5.5-.5z", + "transform": "translate(1)" + } + }] +}; +exports.droplet = droplet; \ No newline at end of file diff --git a/dist/iconic/eject.js b/dist/iconic/eject.js new file mode 100644 index 000000000..30930a264 --- /dev/null +++ b/dist/iconic/eject.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.eject = void 0; +var eject = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 0l-4 5h8l-4-5zm-4 6v2h8v-2h-8z" + } + }] +}; +exports.eject = eject; \ No newline at end of file diff --git a/dist/iconic/elevator.js b/dist/iconic/elevator.js new file mode 100644 index 000000000..1c41442da --- /dev/null +++ b/dist/iconic/elevator.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.elevator = void 0; +var elevator = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3 0l-3 3h6l-3-3zm-3 5l3 3 3-3h-6z", + "transform": "translate(1)" + } + }] +}; +exports.elevator = elevator; \ No newline at end of file diff --git a/dist/iconic/ellipses.js b/dist/iconic/ellipses.js new file mode 100644 index 000000000..c63d517a4 --- /dev/null +++ b/dist/iconic/ellipses.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ellipses = void 0; +var ellipses = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v2h2v-2h-2zm3 0v2h2v-2h-2zm3 0v2h2v-2h-2z", + "transform": "translate(0 3)" + } + }] +}; +exports.ellipses = ellipses; \ No newline at end of file diff --git a/dist/iconic/empty.js b/dist/iconic/empty.js new file mode 100644 index 000000000..c496f9329 --- /dev/null +++ b/dist/iconic/empty.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.empty = void 0; +var empty = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M.09 0c-.06 0-.09.04-.09.09v5.81c0 .05.04.09.09.09h6.81c.05 0 .09-.04.09-.09v-1.91h1v-2h-1v-1.91c0-.06-.04-.09-.09-.09h-6.81zm.91 1h5v4h-5v-4z", + "transform": "translate(0 1)" + } + }] +}; +exports.empty = empty; \ No newline at end of file diff --git a/dist/iconic/enter.js b/dist/iconic/enter.js new file mode 100644 index 000000000..20c7e86d6 --- /dev/null +++ b/dist/iconic/enter.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.enter = void 0; +var enter = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v4l1.5-1.5 1.5 1.5 1-1-1.5-1.5 1.5-1.5h-4zm5 4l-1 1 1.5 1.5-1.5 1.5h4v-4l-1.5 1.5-1.5-1.5z" + } + }] +}; +exports.enter = enter; \ No newline at end of file diff --git a/dist/iconic/euro.js b/dist/iconic/euro.js new file mode 100644 index 000000000..428291ffe --- /dev/null +++ b/dist/iconic/euro.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.euro = void 0; +var euro = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M6 0c-1.86 0-3.4 1.28-3.84 3h-1.91l-.25 1h2.01c0 .35.07.68.16 1h-1.97l-.19 1h2.56c.7 1.19 1.97 2 3.44 2 .73 0 1.41-.21 2-.56v-1.22c-.53.48-1.22.78-2 .78-.89 0-1.67-.39-2.22-1h2.22l.16-1h-2.97c-.11-.32-.19-.64-.19-1h3.34l.16-1h-3.31c.41-1.16 1.51-2 2.81-2 .66 0 1.26.21 1.75.56l.16-1.06c-.57-.31-1.21-.5-1.91-.5z", + "transform": "translate(-1)" + } + }] +}; +exports.euro = euro; \ No newline at end of file diff --git a/dist/iconic/excerpt.js b/dist/iconic/excerpt.js new file mode 100644 index 000000000..3a5928614 --- /dev/null +++ b/dist/iconic/excerpt.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.excerpt = void 0; +var excerpt = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v1h7v-1h-7zm0 2v1h5v-1h-5zm0 2v1h8v-1h-8zm0 2v1h1v-1h-1zm2 0v1h1v-1h-1zm2 0v1h1v-1h-1z" + } + }] +}; +exports.excerpt = excerpt; \ No newline at end of file diff --git a/dist/iconic/exit.js b/dist/iconic/exit.js new file mode 100644 index 000000000..d8a1a620e --- /dev/null +++ b/dist/iconic/exit.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.exit = void 0; +var exit = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M1 0l-1 1 1.5 1.5-1.5 1.5h4v-4l-1.5 1.5-1.5-1.5zm3 4v4l1.5-1.5 1.5 1.5 1-1-1.5-1.5 1.5-1.5h-4z" + } + }] +}; +exports.exit = exit; \ No newline at end of file diff --git a/dist/iconic/eye.js b/dist/iconic/eye.js new file mode 100644 index 000000000..792565cb9 --- /dev/null +++ b/dist/iconic/eye.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.eye = void 0; +var eye = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4.03 0c-2.53 0-4.03 3-4.03 3s1.5 3 4.03 3c2.47 0 3.97-3 3.97-3s-1.5-3-3.97-3zm-.03 1c1.11 0 2 .9 2 2 0 1.11-.89 2-2 2-1.1 0-2-.89-2-2 0-1.1.9-2 2-2zm0 1c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1c0-.1-.04-.19-.06-.28-.08.16-.24.28-.44.28-.28 0-.5-.22-.5-.5 0-.2.12-.36.28-.44-.09-.03-.18-.06-.28-.06z", + "transform": "translate(0 1)" + } + }] +}; +exports.eye = eye; \ No newline at end of file diff --git a/dist/iconic/eyedropper.js b/dist/iconic/eyedropper.js new file mode 100644 index 000000000..a3c858350 --- /dev/null +++ b/dist/iconic/eyedropper.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.eyedropper = void 0; +var eyedropper = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3.31 0a.5.5 0 0 0-.19.84l.63.63-3.59 3.66-.16.16v2.7199999999999998h2.69l.16-.16 3.66-3.66.63.66a.5.5 0 1 0 .72-.69l-.94-.94.66-.66c.59-.58.59-1.54 0-2.13-.57-.57-1.56-.57-2.13 0l-.66.66-.94-.94a.5.5 0 0 0-.47-.16.5.5 0 0 0-.06 0zm1.16 2.19l1.31 1.31-3.16 3.16-1.28-1.31 3.13-3.16z" + } + }] +}; +exports.eyedropper = eyedropper; \ No newline at end of file diff --git a/dist/iconic/file.js b/dist/iconic/file.js new file mode 100644 index 000000000..2ea7bc6cd --- /dev/null +++ b/dist/iconic/file.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.file = void 0; +var file = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v8h7v-4h-4v-4h-3zm4 0v3h3l-3-3z" + } + }] +}; +exports.file = file; \ No newline at end of file diff --git a/dist/iconic/fire.js b/dist/iconic/fire.js new file mode 100644 index 000000000..a6c3665ad --- /dev/null +++ b/dist/iconic/fire.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.fire = void 0; +var fire = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M2 0c1 2-2 3-2 5s2 3 2 3c-.98-1.98 2-3 2-5s-2-3-2-3zm3 3c1 2-2 3-2 5h3c.4 0 1-.5 1-2 0-2-2-3-2-3z" + } + }] +}; +exports.fire = fire; \ No newline at end of file diff --git a/dist/iconic/flag.js b/dist/iconic/flag.js new file mode 100644 index 000000000..2f1f08bcd --- /dev/null +++ b/dist/iconic/flag.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.flag = void 0; +var flag = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v8h1v-8h-1zm2 0v4h2v1h4l-2-1.97 2-2.03h-3v-1h-3z" + } + }] +}; +exports.flag = flag; \ No newline at end of file diff --git a/dist/iconic/flash.js b/dist/iconic/flash.js new file mode 100644 index 000000000..d468e56ff --- /dev/null +++ b/dist/iconic/flash.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.flash = void 0; +var flash = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M1.5 0l-1.5 3h2l-.66 2h-1.34l1 3 3-3h-1.5l1.5-3h-2l1-2h-1.5z", + "transform": "translate(2)" + } + }] +}; +exports.flash = flash; \ No newline at end of file diff --git a/dist/iconic/folder.js b/dist/iconic/folder.js new file mode 100644 index 000000000..0a8a909a4 --- /dev/null +++ b/dist/iconic/folder.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.folder = void 0; +var folder = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v2h8v-1h-5v-1h-3zm0 3v4.5c0 .28.22.5.5.5h7c.28 0 .5-.22.5-.5v-4.5h-8z" + } + }] +}; +exports.folder = folder; \ No newline at end of file diff --git a/dist/iconic/fork.js b/dist/iconic/fork.js new file mode 100644 index 000000000..1d29f2817 --- /dev/null +++ b/dist/iconic/fork.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.fork = void 0; +var fork = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M1.5 0c-.83 0-1.5.67-1.5 1.5 0 .66.41 1.2 1 1.41v2.19c-.59.2-1 .75-1 1.41 0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5c0-.6-.34-1.1-.84-1.34.09-.09.21-.16.34-.16h2c.82 0 1.5-.68 1.5-1.5v-.59c.59-.2 1-.75 1-1.41 0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5c0 .66.41 1.2 1 1.41v.59c0 .28-.22.5-.5.5h-2c-.17 0-.35.04-.5.09v-1.19c.59-.2 1-.75 1-1.41 0-.83-.67-1.5-1.5-1.5z" + } + }] +}; +exports.fork = fork; \ No newline at end of file diff --git a/dist/iconic/fourUp.js b/dist/iconic/fourUp.js new file mode 100644 index 000000000..8d11192e7 --- /dev/null +++ b/dist/iconic/fourUp.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.fourUp = void 0; +var fourUp = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v1h1v-1h-1zm2 0v1h1v-1h-1zm2 0v1h1v-1h-1zm2 0v1h1v-1h-1zm-6 2v1h1v-1h-1zm2 0v1h1v-1h-1zm2 0v1h1v-1h-1zm2 0v1h1v-1h-1zm-6 2v1h1v-1h-1zm2 0v1h1v-1h-1zm2 0v1h1v-1h-1zm2 0v1h1v-1h-1zm-6 2v1h1v-1h-1zm2 0v1h1v-1h-1zm2 0v1h1v-1h-1zm2 0v1h1v-1h-1z" + } + }] +}; +exports.fourUp = fourUp; \ No newline at end of file diff --git a/dist/iconic/full.js b/dist/iconic/full.js new file mode 100644 index 000000000..312e52414 --- /dev/null +++ b/dist/iconic/full.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.full = void 0; +var full = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M.09 0c-.06 0-.09.04-.09.09v5.81c0 .05.04.09.09.09h6.81c.05 0 .09-.04.09-.09v-1.91h1v-2h-1v-1.91c0-.06-.04-.09-.09-.09h-6.81z", + "transform": "translate(0 1)" + } + }] +}; +exports.full = full; \ No newline at end of file diff --git a/dist/iconic/glass.js b/dist/iconic/glass.js new file mode 100644 index 000000000..3e800171e --- /dev/null +++ b/dist/iconic/glass.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.glass = void 0; +var glass = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3.5 0c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5c.59 0 1.17-.14 1.66-.41a1 1 0 0 0 .13.13l1 1a1.02 1.02 0 1 0 1.44-1.44l-1-1a1 1 0 0 0-.16-.13c.27-.49.44-1.06.44-1.66 0-1.93-1.57-3.5-3.5-3.5zm0 1c1.39 0 2.5 1.11 2.5 2.5 0 .66-.24 1.27-.66 1.72-.01.01-.02.02-.03.03a1 1 0 0 0-.13.13c-.44.4-1.04.63-1.69.63-1.39 0-2.5-1.11-2.5-2.5s1.11-2.5 2.5-2.5z" + } + }] +}; +exports.glass = glass; \ No newline at end of file diff --git a/dist/iconic/globe.js b/dist/iconic/globe.js new file mode 100644 index 000000000..01cfec73a --- /dev/null +++ b/dist/iconic/globe.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.globe = void 0; +var globe = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 0c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 1c.33 0 .64.09.94.19-.21.2-.45.38-.41.56.04.18.69.13.69.5 0 .27-.42.35-.13.66.35.35-.64.98-.66 1.44-.03.83.84.97 1.53.97.42 0 .53.2.5.44-.54.77-1.46 1.25-2.47 1.25-.38 0-.73-.09-1.06-.22.22-.44-.28-1.31-.75-1.59-.23-.23-.72-.14-1-.25-.09-.27-.18-.54-.19-.84.03-.05.08-.09.16-.09.19 0 .45.38.59.34.18-.04-.74-1.31-.31-1.56.2-.12.6.39.47-.16-.12-.51.36-.28.66-.41.26-.11.45-.41.13-.59-.06-.03-.13-.1-.22-.19.45-.27.97-.44 1.53-.44zm2.31 1.09c.18.22.32.46.44.72 0 .01 0 .02 0 .03-.04.07-.11.11-.22.22-.28.28-.32-.21-.44-.31-.13-.12-.6.02-.66-.13-.07-.18.5-.42.88-.53z" + } + }] +}; +exports.globe = globe; \ No newline at end of file diff --git a/dist/iconic/graph.js b/dist/iconic/graph.js new file mode 100644 index 000000000..d9b57aa05 --- /dev/null +++ b/dist/iconic/graph.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.graph = void 0; +var graph = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M7.03 0l-3.03 3-1-1-3 3.03 1 1 2-2.03 1 1 4-4-.97-1zm-7.03 7v1h8v-1h-8z" + } + }] +}; +exports.graph = graph; \ No newline at end of file diff --git a/dist/iconic/header.js b/dist/iconic/header.js new file mode 100644 index 000000000..c5232b253 --- /dev/null +++ b/dist/iconic/header.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.header = void 0; +var header = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v1h.5c.28 0 .5.22.5.5v4c0 .28-.22.5-.5.5h-.5v1h3v-1h-.5c-.28 0-.5-.22-.5-.5v-1.5h3v1.5c0 .28-.22.5-.5.5h-.5v1h3v-1h-.5c-.28 0-.5-.22-.5-.5v-4c0-.28.22-.5.5-.5h.5v-1h-3v1h.5c.28 0 .5.22.5.5v1.5h-3v-1.5c0-.28.22-.5.5-.5h.5v-1h-3z" + } + }] +}; +exports.header = header; \ No newline at end of file diff --git a/dist/iconic/headphones.js b/dist/iconic/headphones.js new file mode 100644 index 000000000..a03f9ef43 --- /dev/null +++ b/dist/iconic/headphones.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.headphones = void 0; +var headphones = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 0c-1.65 0-3 1.35-3 3v1h-.5a.5.5 0 0 0-.5.5v2a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-3.5c0-1.11.89-2 2-2 1.11 0 2 .89 2 2v3.5a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-2a.5.5 0 0 0-.5-.5h-.5v-1c0-1.65-1.35-3-3-3z" + } + }] +}; +exports.headphones = headphones; \ No newline at end of file diff --git a/dist/iconic/heart.js b/dist/iconic/heart.js new file mode 100644 index 000000000..a25b897f9 --- /dev/null +++ b/dist/iconic/heart.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.heart = void 0; +var heart = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M2 0c-.55 0-1.04.23-1.41.59-.36.36-.59.85-.59 1.41 0 .55.23 1.04.59 1.41l3.41 3.41 3.41-3.41c.36-.36.59-.85.59-1.41 0-.55-.23-1.04-.59-1.41-.36-.36-.85-.59-1.41-.59-.55 0-1.04.23-1.41.59-.36.36-.59.85-.59 1.41 0-.55-.23-1.04-.59-1.41-.36-.36-.85-.59-1.41-.59z", + "transform": "translate(0 1)" + } + }] +}; +exports.heart = heart; \ No newline at end of file diff --git a/dist/iconic/height.js b/dist/iconic/height.js new file mode 100644 index 000000000..baaad084d --- /dev/null +++ b/dist/iconic/height.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.height = void 0; +var height = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M2.5 0l-2.5 3h2v2h-2l2.5 3 2.5-3h-2v-2h2l-2.5-3z", + "transform": "translate(1)" + } + }] +}; +exports.height = height; \ No newline at end of file diff --git a/dist/iconic/high.js b/dist/iconic/high.js new file mode 100644 index 000000000..be14baebc --- /dev/null +++ b/dist/iconic/high.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.high = void 0; +var high = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3.34 0l-1.34 2h-2v4h2l1.34 2h.66v-8h-.66zm1.66 1v1c.17 0 .34.02.5.06.86.22 1.5 1 1.5 1.94s-.63 1.72-1.5 1.94c-.16.04-.33.06-.5.06v1c.25 0 .48-.04.72-.09h.03c1.3-.33 2.25-1.51 2.25-2.91 0-1.4-.95-2.58-2.25-2.91-.23-.06-.49-.09-.75-.09zm0 2v2c.09 0 .18-.01.25-.03.43-.11.75-.51.75-.97 0-.46-.31-.86-.75-.97-.08-.02-.17-.03-.25-.03z" + } + }] +}; +exports.high = high; \ No newline at end of file diff --git a/dist/iconic/home.js b/dist/iconic/home.js new file mode 100644 index 000000000..5b251940a --- /dev/null +++ b/dist/iconic/home.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.home = void 0; +var home = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 0l-4 3h1v4h2v-2h2v2h2v-4.03l1 .03-4-3z" + } + }] +}; +exports.home = home; \ No newline at end of file diff --git a/dist/iconic/image.js b/dist/iconic/image.js new file mode 100644 index 000000000..4d1541c88 --- /dev/null +++ b/dist/iconic/image.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.image = void 0; +var image = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v8h8v-8h-8zm1 1h6v3l-1-1-1 1 2 2v1h-1l-4-4-1 1v-3z" + } + }] +}; +exports.image = image; \ No newline at end of file diff --git a/dist/iconic/inIconic.js b/dist/iconic/inIconic.js new file mode 100644 index 000000000..b1ad1548d --- /dev/null +++ b/dist/iconic/inIconic.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.inIconic = void 0; +var inIconic = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3.5 0c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5c.61 0 1.19-.16 1.69-.44a1 1 0 0 0 .09.13l1 1.03a1.02 1.02 0 1 0 1.44-1.44l-1.03-1a1 1 0 0 0-.13-.09c.27-.5.44-1.08.44-1.69 0-1.93-1.57-3.5-3.5-3.5zm0 1c1.39 0 2.5 1.11 2.5 2.5 0 .59-.2 1.14-.53 1.56-.01.01-.02.02-.03.03a1 1 0 0 0-.06.03 1 1 0 0 0-.25.28c-.44.37-1.01.59-1.63.59-1.39 0-2.5-1.11-2.5-2.5s1.11-2.5 2.5-2.5zm-.5 1v1h-1v1h1v1h1v-1h1v-1h-1v-1h-1z" + } + }] +}; +exports.inIconic = inIconic; \ No newline at end of file diff --git a/dist/iconic/inbox.js b/dist/iconic/inbox.js new file mode 100644 index 000000000..00c7cafb5 --- /dev/null +++ b/dist/iconic/inbox.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.inbox = void 0; +var inbox = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M.19 0c-.11 0-.19.08-.19.19v7.63c0 .11.08.19.19.19h7.63c.11 0 .19-.08.19-.19v-7.63c0-.11-.08-.19-.19-.19h-7.63zm.81 2h6v3h-1l-1 1h-2l-1-1h-1v-3z" + } + }] +}; +exports.inbox = inbox; \ No newline at end of file diff --git a/dist/iconic/index.js b/dist/iconic/index.js new file mode 100644 index 000000000..a1a8c78ca --- /dev/null +++ b/dist/iconic/index.js @@ -0,0 +1,2050 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.laptop = exports.key = exports.italic = exports.intact = exports.info = exports.infinity = exports.inbox = exports.inIconic = exports.image = exports.home = exports.high = exports.height = exports.heart = exports.headphones = exports.header = exports.graph = exports.globe = exports.glass = exports.full = exports.fourUp = exports.fork = exports.folder = exports.flash = exports.flag = exports.fire = exports.file = exports.eyedropper = exports.eye = exports.exit = exports.excerpt = exports.euro = exports.enter = exports.empty = exports.ellipses = exports.elevator = exports.eject = exports.droplet = exports.drive = exports.download = exports.down = exports.dollar = exports.document = exports.dial = exports.descending = exports.deleteIconic = exports.dashboard = exports.cross = exports.crop = exports.copywriting = exports.contrast = exports.compass = exports.command = exports.cog = exports.code = exports.cloudy = exports.cloud = exports.closed = exports.clock = exports.clipboard = exports.circular = exports.circleTop = exports.circleRight = exports.circleLeft = exports.circleBottom = exports.circle = exports.check = exports.chat = exports.chart = exports.center = exports.cart = exports.card = exports.calendar = exports.calculator = exports.bullhorn = exports.bug = exports.brush = exports.browser = exports.broken = exports.briefcase = exports.boxed = exports.box = exports.bottom = exports.both = exports.bookmark = exports.book = exports.bolt = exports.bold = exports.bluetooth = exports.bell = exports.beaker = exports.basket = exports.ban = exports.badge = exports.audio = exports.ascending = exports.aperture = exports.alt = exports.alignTop = exports.alignCenter = exports.alignBottom = void 0; +exports.yen = exports.x = exports.wrench = exports.wifi = exports.width = exports.warning = exports.video = exports.upload = exports.up = exports.unlocked = exports.undo = exports.underline = exports.twoUp = exports.trash = exports.transferUpload = exports.transferDownload = exports.transfer = exports.top = exports.timer = exports.threeUp = exports.thickTop = exports.thickRight = exports.thickLeft = exports.thickBottom = exports.text = exports.terminal = exports.task = exports.target = exports.tags = exports.tag = exports.tablet = exports.sun = exports.stop = exports.stepForward = exports.stepBackward = exports.star = exports.standby = exports.square = exports.spreadsheet = exports.spectrum = exports.slr = exports.skipForward = exports.skipBackward = exports.signpost = exports.signal = exports.shield = exports.share = exports.script = exports.rss = exports.right = exports.rich = exports.reload = exports.redo = exports.record = exports.random = exports.rain = exports.quoteSerifRight = exports.quoteSerifLeft = exports.quoteSansRight = exports.quoteSansLeft = exports.pulse = exports.project = exports.print = exports.pound = exports.plus = exports.play = exports.pin = exports.piece = exports.phone = exports.person = exports.people = exports.pencil = exports.pause = exports.paperclip = exports.out = exports.open = exports.off = exports.note = exports.move = exports.moon = exports.monitor = exports.minus = exports.microphone = exports.menu = exports.marker = exports.mark = exports.map = exports.low = exports.loop = exports.logout = exports.login = exports.locked = exports.location = exports.list = exports.link = exports.lightbulb = exports.left = exports.layers = void 0; +var login = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3 0v1h4v5h-4v1h5v-7h-5zm1 2v1h-4v1h4v1l2-1.5-2-1.5z" + } + }] +}; +exports.login = login; +var logout = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3 0v1h4v5h-4v1h5v-7h-5zm-1 2l-2 1.5 2 1.5v-1h4v-1h-4v-1z" + } + }] +}; +exports.logout = logout; +var redo = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3.5 0c-1.93 0-3.5 1.57-3.5 3.5 0-1.38 1.12-2.5 2.5-2.5s2.5 1.12 2.5 2.5v.5h-1l2 2 2-2h-1v-.5c0-1.93-1.57-3.5-3.5-3.5z", + "transform": "translate(0 1)" + } + }] +}; +exports.redo = redo; +var undo = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4.5 0c-1.93 0-3.5 1.57-3.5 3.5v.5h-1l2 2 2-2h-1v-.5c0-1.38 1.12-2.5 2.5-2.5s2.5 1.12 2.5 2.5c0-1.93-1.57-3.5-3.5-3.5z", + "transform": "translate(0 1)" + } + }] +}; +exports.undo = undo; +var center = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v1h8v-1h-8zm1 2v1h6v-1h-6zm-1 2v1h8v-1h-8zm1 2v1h6v-1h-6z" + } + }] +}; +exports.center = center; +var left = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v1h8v-1h-8zm0 2v1h6v-1h-6zm0 2v1h8v-1h-8zm0 2v1h6v-1h-6z" + } + }] +}; +exports.left = left; +var right = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v1h8v-1h-8zm2 2v1h6v-1h-6zm-2 2v1h8v-1h-8zm2 2v1h6v-1h-6z" + } + }] +}; +exports.right = right; +var aperture = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 0c-.69 0-1.34.19-1.91.5l3.22 2.34.75-2.25c-.6-.36-1.31-.59-2.06-.59zm-2.75 1.13c-.76.73-1.25 1.74-1.25 2.88 0 .25.02.48.06.72l3.09-2.22-1.91-1.38zm5.63.13l-1.22 3.75h2.19c.08-.32.16-.65.16-1 0-1.07-.44-2.03-1.13-2.75zm-4.72 3.22l-1.75 1.25c.55 1.13 1.6 1.99 2.88 2.22l-1.13-3.47zm1.56 1.53l.63 1.97c1.33-.12 2.46-.88 3.09-1.97h-3.72z" + } + }] +}; +exports.aperture = aperture; +var bottom = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M2 0v5h-2l2.53 3 2.47-3h-2v-5h-1z", + "transform": "translate(1)" + } + }] +}; +exports.bottom = bottom; +var circleBottom = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 0c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm-1 1h2v3h2l-3 3-3-3h2v-3z" + } + }] +}; +exports.circleBottom = circleBottom; +var circleLeft = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 0c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 1v2h3v2h-3v2l-3-3 3-3z" + } + }] +}; +exports.circleLeft = circleLeft; +var circleRight = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 0c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 1l3 3-3 3v-2h-3v-2h3v-2z" + } + }] +}; +exports.circleRight = circleRight; +var circleTop = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 0c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 1l3 3h-2v3h-2v-3h-2l3-3z" + } + }] +}; +exports.circleTop = circleTop; +var thickBottom = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M2 0v5h-2l3.03 3 2.97-3h-2v-5h-2z", + "transform": "translate(1)" + } + }] +}; +exports.thickBottom = thickBottom; +var thickLeft = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3 0l-3 3.03 3 2.97v-2h5v-2h-5v-2z", + "transform": "translate(0 1)" + } + }] +}; +exports.thickLeft = thickLeft; +var thickRight = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M5 0v2h-5v2h5v2l3-3.03-3-2.97z", + "transform": "translate(0 1)" + } + }] +}; +exports.thickRight = thickRight; +var thickTop = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M2.97 0l-2.97 3h2v5h2v-5h2l-3.03-3z", + "transform": "translate(1)" + } + }] +}; +exports.thickTop = thickTop; +var top = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M2.47 0l-2.47 3h2v5h1v-5h2l-2.53-3z", + "transform": "translate(1)" + } + }] +}; +exports.top = top; +var spectrum = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 0v8h1v-8h-1zm-2 1v6h1v-6h-1zm4 1v4h1v-4h-1zm-6 1v2h1v-2h-1z" + } + }] +}; +exports.spectrum = spectrum; +var audio = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M1.16 0c-.72.72-1.16 1.71-1.16 2.81s.43 2.12 1.16 2.84l.72-.72c-.54-.54-.88-1.29-.88-2.13 0-.83.33-1.55.88-2.09l-.72-.72zm5.69 0l-.72.72c.54.54.88 1.26.88 2.09 0 .83-.33 1.58-.88 2.13l.72.72c.72-.72 1.16-1.74 1.16-2.84 0-1.1-.43-2.09-1.16-2.81zm-4.25 1.41c-.36.36-.59.86-.59 1.41 0 .55.23 1.08.59 1.44l.69-.72c-.18-.18-.28-.44-.28-.72 0-.28.1-.5.28-.69l-.69-.72zm2.81 0l-.69.72c.18.18.28.41.28.69 0 .28-.1.54-.28.72l.69.72c.36-.36.59-.89.59-1.44 0-.55-.23-1.05-.59-1.41z", + "transform": "translate(0 1)" + } + }] +}; +exports.audio = audio; +var badge = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M2 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-1 4.81v3.19l1-1 1 1v-3.19c-.31.11-.65.19-1 .19s-.69-.08-1-.19z", + "transform": "translate(2)" + } + }] +}; +exports.badge = badge; +var ban = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 0c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm0 1c.66 0 1.26.21 1.75.56l-4.19 4.19c-.35-.49-.56-1.09-.56-1.75 0-1.66 1.34-3 3-3zm2.44 1.25c.35.49.56 1.09.56 1.75 0 1.66-1.34 3-3 3-.66 0-1.26-.21-1.75-.56l4.19-4.19z" + } + }] +}; +exports.ban = ban; +var chart = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v7h8v-1h-7v-6h-1zm5 0v5h2v-5h-2zm-3 2v3h2v-3h-2z" + } + }] +}; +exports.chart = chart; +var basket = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3.97 0c-.13.01-.26.08-.34.19l-2.34 2.81h-1.28v1h1v3.66c0 .18.16.34.34.34h5.31c.18 0 .34-.16.34-.34v-3.66h1v-1h-1.28c-.27-.33-2.39-2.86-2.41-2.88-.11-.09-.22-.14-.34-.13zm.03 1.28l1.44 1.72h-2.88l1.44-1.72zm-1.5 3.72c.28 0 .5.22.5.5v1c0 .28-.22.5-.5.5s-.5-.22-.5-.5v-1c0-.28.22-.5.5-.5zm3 0c.28 0 .5.22.5.5v1c0 .28-.22.5-.5.5s-.5-.22-.5-.5v-1c0-.28.22-.5.5-.5z" + } + }] +}; +exports.basket = basket; +var empty = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M.09 0c-.06 0-.09.04-.09.09v5.81c0 .05.04.09.09.09h6.81c.05 0 .09-.04.09-.09v-1.91h1v-2h-1v-1.91c0-.06-.04-.09-.09-.09h-6.81zm.91 1h5v4h-5v-4z", + "transform": "translate(0 1)" + } + }] +}; +exports.empty = empty; +var full = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M.09 0c-.06 0-.09.04-.09.09v5.81c0 .05.04.09.09.09h6.81c.05 0 .09-.04.09-.09v-1.91h1v-2h-1v-1.91c0-.06-.04-.09-.09-.09h-6.81z", + "transform": "translate(0 1)" + } + }] +}; +exports.full = full; +var beaker = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M1.34 0a.5.5 0 0 0 .16 1h.5v1.41c-.09.17-1.2 2.31-1.66 3.09-.16.26-.34.61-.34 1.06 0 .39.15.77.41 1.03s.64.41 1.03.41h5.13c.38 0 .74-.16 1-.41h.03c.26-.26.41-.64.41-1.03 0-.45-.19-.8-.34-1.06-.46-.78-1.57-2.92-1.66-3.09v-1.41h.5a.5.5 0 1 0 0-1h-5a.5.5 0 0 0-.09 0 .5.5 0 0 0-.06 0zm1.66 1h2v1.63l.06.09s.63 1.23 1.19 2.28h-4.5c.56-1.05 1.19-2.28 1.19-2.28l.06-.09v-1.63z" + } + }] +}; +exports.beaker = beaker; +var bell = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 0c-1.1 0-2 .9-2 2 0 1.04-.52 1.98-1.34 2.66-.41.34-.66.82-.66 1.34h8c0-.52-.24-1-.66-1.34-.82-.68-1.34-1.62-1.34-2.66 0-1.1-.89-2-2-2zm-1 7c0 .55.45 1 1 1s1-.45 1-1h-2z" + } + }] +}; +exports.bell = bell; +var bluetooth = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M1.5 0v2.5l-.75-.75-.75.75 1.5 1.5-1.5 1.5.75.75.75-.75v2.5h.5l3.5-2.5-2.25-1.53 2.25-1.47-3.5-2.5h-.5zm1 1.5l1.5 1-1.5 1v-2zm0 3l1.5 1-1.5 1v-2z", + "transform": "translate(1)" + } + }] +}; +exports.bluetooth = bluetooth; +var bold = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v1c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1v1h5.5c1.38 0 2.5-1.12 2.5-2.5 0-1-.59-1.85-1.44-2.25.27-.34.44-.78.44-1.25 0-1.1-.89-2-2-2h-5zm3 1h1c.55 0 1 .45 1 1s-.45 1-1 1h-1v-2zm0 3h1.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5h-1.5v-3z" + } + }] +}; +exports.bold = bold; +var bolt = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3 0l-3 5h2v3l3-5h-2v-3z", + "transform": "translate(1)" + } + }] +}; +exports.bolt = bolt; +var book = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M1 0c-.07 0-.13.01-.19.03-.39.08-.7.39-.78.78-.03.06-.03.12-.03.19v5.5c0 .83.67 1.5 1.5 1.5h5.5v-1h-5.5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h5.5v-5.5c0-.28-.22-.5-.5-.5h-.5v3l-1-1-1 1v-3h-3z" + } + }] +}; +exports.book = book; +var bookmark = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v8l2-2 2 2v-8h-4z", + "transform": "translate(2)" + } + }] +}; +exports.bookmark = bookmark; +var box = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v1h8v-1h-8zm0 2v5.91c0 .05.04.09.09.09h7.81c.05 0 .09-.04.09-.09v-5.91h-2.97v1.03h-2.03v-1.03h-3z" + } + }] +}; +exports.box = box; +var briefcase = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3 0c-.55 0-1 .45-1 1v1h-1.91c-.06 0-.09.04-.09.09v2.41c0 .28.22.5.5.5h7c.28 0 .5-.22.5-.5v-2.41c0-.06-.04-.09-.09-.09h-1.91v-1c0-.55-.45-1-1-1h-2zm0 1h2v1h-2v-1zm-3 4.91v2c0 .05.04.09.09.09h7.81c.05 0 .09-.04.09-.09v-2c-.16.06-.32.09-.5.09h-7c-.18 0-.34-.04-.5-.09z" + } + }] +}; +exports.briefcase = briefcase; +var pound = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3 0c-.62 0-1.16.26-1.5.69-.34.43-.5.99-.5 1.56 0 .69.16 1.25.25 1.75h-1.25v1h1.22c-.11.45-.37.96-1.06 1.66l-.16.13v1.22h6v-1h-4.91c.64-.73.98-1.4 1.13-2h1.78v-1h-1.72c-.08-.68-.28-1.24-.28-1.75 0-.39.11-.73.28-.94.17-.21.37-.31.72-.31.39 0 .61.11.75.25s.25.36.25.75h1c0-.58-.17-1.1-.53-1.47-.37-.37-.89-.53-1.47-.53z", + "transform": "translate(1)" + } + }] +}; +exports.pound = pound; +var browser = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M.34 0a.5.5 0 0 0-.34.5v7a.5.5 0 0 0 .5.5h7a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.5-.5h-7a.5.5 0 0 0-.09 0 .5.5 0 0 0-.06 0zm1.16 1c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5.22-.5.5-.5zm2 0h3c.28 0 .5.22.5.5s-.22.5-.5.5h-3c-.28 0-.5-.22-.5-.5s.22-.5.5-.5zm-2.5 2h6v4h-6v-4z" + } + }] +}; +exports.browser = browser; +var brush = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M7.44.03c-.03 0-.04.02-.06.03l-3.75 2.66c-.04.03-.1.11-.13.16l-.13.25c.72.23 1.27.78 1.5 1.5l.25-.13c.05-.03.12-.08.16-.13l2.66-3.75c.03-.05.04-.09 0-.13l-.44-.44c-.02-.02-.04-.03-.06-.03zm-4.78 3.97c-.74 0-1.31.61-1.31 1.34 0 .99-.55 1.85-1.34 2.31.39.22.86.34 1.34.34 1.47 0 2.66-1.18 2.66-2.66 0-.74-.61-1.34-1.34-1.34z" + } + }] +}; +exports.brush = brush; +var bug = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3.5 0c-1.19 0-1.98 1.69-1.19 2.5-.09.07-.2.14-.28.22l-1.31-.66a.5.5 0 0 0-.34-.06.5.5 0 0 0-.09.94l1.16.56c-.09.16-.19.33-.25.5h-.69a.5.5 0 0 0-.09 0 .5.5 0 1 0 .09 1h.5c0 .23.02.45.06.66l-.78.41a.5.5 0 1 0 .44.88l.66-.34c.25.46.62.85 1.03 1.09.35-.19.59-.44.59-.72v-1.44a.5.5 0 0 0 0-.09v-.81a.5.5 0 0 0 0-.22c.05-.23.26-.41.5-.41.28 0 .5.22.5.5v.88a.5.5 0 0 0 0 .09v.06a.5.5 0 0 0 0 .09v1.34c0 .27.24.53.59.72.41-.25.79-.63 1.03-1.09l.66.34a.5.5 0 1 0 .44-.88l-.78-.41c.04-.21.06-.43.06-.66h.5a.5.5 0 1 0 0-1h-.69c-.06-.17-.16-.34-.25-.5l1.16-.56a.5.5 0 0 0-.31-.94.5.5 0 0 0-.13.06l-1.31.66c-.09-.08-.19-.15-.28-.22.78-.83 0-2.5-1.19-2.5z" + } + }] +}; +exports.bug = bug; +var bullhorn = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M6 0v6c.03.01.07 0 .09 0h.81c.05 0 .09-.04.09-.09v-5.81c0-.06-.04-.09-.09-.09h-.91zm-1 .5l-2.91 1.47c-.05.02-.13.03-.19.03h-1.81c-.06 0-.09.04-.09.09v1.81c0 .06.04.09.09.09h.91l1.03 2.72c.11.25.44.36.69.25.25-.11.36-.44.25-.69l-.75-1.78c.03-.14.13-.22.28-.22v-.03l2.5 1.25v-5z" + } + }] +}; +exports.bullhorn = bullhorn; +var calculator = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M.09 0c-.06 0-.09.04-.09.09v7.81c0 .05.04.09.09.09h6.81c.05 0 .09-.04.09-.09v-7.81c0-.06-.04-.09-.09-.09h-6.81zm.91 1h5v2h-5v-2zm0 3h1v1h-1v-1zm2 0h1v1h-1v-1zm2 0h1v3h-1v-3zm-4 2h1v1h-1v-1zm2 0h1v1h-1v-1z" + } + }] +}; +exports.calculator = calculator; +var calendar = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v2h7v-2h-7zm0 3v4.91c0 .05.04.09.09.09h6.81c.05 0 .09-.04.09-.09v-4.91h-7zm1 1h1v1h-1v-1zm2 0h1v1h-1v-1zm2 0h1v1h-1v-1zm-4 2h1v1h-1v-1zm2 0h1v1h-1v-1z" + } + }] +}; +exports.calendar = calendar; +var slr = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4.09 0c-.05 0-.1.04-.13.09l-.94 1.81c-.02.05-.07.09-.13.09h-1.41c-.83 0-1.5.67-1.5 1.5v4.41c0 .05.04.09.09.09h7.81c.05 0 .09-.04.09-.09v-5.81c0-.06-.04-.09-.09-.09h-.81c-.05 0-.1-.04-.13-.09l-.94-1.81c-.03-.05-.07-.09-.13-.09h-1.81zm-2.59 3c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5.22-.5.5-.5zm3.5 0c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm0 1c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z" + } + }] +}; +exports.slr = slr; +var cart = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M.34 0a.5.5 0 0 0 .16 1h1.5l.09.25.41 1.25.41 1.25c.04.13.21.25.34.25h3.5c.14 0 .3-.12.34-.25l.81-2.5c.04-.13-.02-.25-.16-.25h-4.44l-.38-.72a.5.5 0 0 0-.44-.28h-2a.5.5 0 0 0-.09 0 .5.5 0 0 0-.06 0zm3.16 5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm3 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z", + "transform": "translate(0 1)" + } + }] +}; +exports.cart = cart; +var chat = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v5l1-1h1v-3h3v-1h-5zm3 2v4h4l1 1v-5h-5z" + } + }] +}; +exports.chat = chat; +var check = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M6.41 0l-.69.72-2.78 2.78-.81-.78-.72-.72-1.41 1.41.72.72 1.5 1.5.69.72.72-.72 3.5-3.5.72-.72-1.44-1.41z", + "transform": "translate(0 1)" + } + }] +}; +exports.check = check; +var x = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 0c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm-1.5 1.78l1.5 1.5 1.5-1.5.72.72-1.5 1.5 1.5 1.5-.72.72-1.5-1.5-1.5 1.5-.72-.72 1.5-1.5-1.5-1.5.72-.72z" + } + }] +}; +exports.x = x; +var clipboard = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3.5 0c-.28 0-.5.22-.5.5v.5h-.75c-.14 0-.25.11-.25.25v.75h3v-.75c0-.14-.11-.25-.25-.25h-.75v-.5c0-.28-.22-.5-.5-.5zm-3.25 1c-.14 0-.25.11-.25.25v6.5c0 .14.11.25.25.25h6.5c.14 0 .25-.11.25-.25v-6.5c0-.14-.11-.25-.25-.25h-.75v2h-5v-2h-.75z" + } + }] +}; +exports.clipboard = clipboard; +var clock = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 0c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm0 1c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm-.5 1v2.22l.16.13.5.5.34.38.72-.72-.38-.34-.34-.34v-1.81h-1z" + } + }] +}; +exports.clock = clock; +var download = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4.5 0c-1.21 0-2.27.86-2.5 2-1.1 0-2 .9-2 2 0 .37.11.71.28 1h2.72v-.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v.5h1.91c.06-.16.09-.32.09-.5 0-.65-.42-1.29-1-1.5v-.5c0-1.38-1.12-2.5-2.5-2.5zm-.16 4a.5.5 0 0 0-.34.5v1.5h-1.5l2 2 2-2h-1.5v-1.5a.5.5 0 0 0-.59-.5.5.5 0 0 0-.06 0z" + } + }] +}; +exports.download = download; +var upload = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4.5 0c-1.21 0-2.27.86-2.5 2-1.1 0-2 .9-2 2 0 .37.11.71.28 1h2.22l2-2 2 2h1.41c.06-.16.09-.32.09-.5 0-.65-.42-1.29-1-1.5v-.5c0-1.38-1.12-2.5-2.5-2.5zm0 4.5l-2.5 2.5h2v.5a.5.5 0 1 0 1 0v-.5h2l-2.5-2.5z" + } + }] +}; +exports.upload = upload; +var cloud = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4.5 0c-1.21 0-2.27.86-2.5 2-1.1 0-2 .9-2 2s.9 2 2 2h4.5c.83 0 1.5-.67 1.5-1.5 0-.65-.42-1.29-1-1.5v-.5c0-1.38-1.12-2.5-2.5-2.5z", + "transform": "translate(0 1)" + } + }] +}; +exports.cloud = cloud; +var cloudy = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M2.5 0c-1.38 0-2.5 1.12-2.5 2.5 0 .39.09.74.25 1.06.3-.21.64-.37 1-.47.55-1.25 1.82-2.09 3.25-2.09-.46-.6-1.18-1-2-1zm2 2c-1.21 0-2.27.86-2.5 2-1.1 0-2 .9-2 2s.9 2 2 2h4.5c.83 0 1.5-.67 1.5-1.5 0-.65-.42-1.29-1-1.5v-.5c0-1.38-1.12-2.5-2.5-2.5z" + } + }] +}; +exports.cloudy = cloudy; +var code = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M5 0l-3 6h1l3-6h-1zm-4 1l-1 2 1 2h1l-1-2 1-2h-1zm5 0l1 2-1 2h1l1-2-1-2h-1z", + "transform": "translate(0 1)" + } + }] +}; +exports.code = code; +var cog = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3.5 0l-.5 1.19c-.1.03-.19.08-.28.13l-1.19-.5-.72.72.5 1.19c-.05.1-.09.18-.13.28l-1.19.5v1l1.19.5c.04.1.08.18.13.28l-.5 1.19.72.72 1.19-.5c.09.04.18.09.28.13l.5 1.19h1l.5-1.19c.09-.04.19-.08.28-.13l1.19.5.72-.72-.5-1.19c.04-.09.09-.19.13-.28l1.19-.5v-1l-1.19-.5c-.03-.09-.08-.19-.13-.28l.5-1.19-.72-.72-1.19.5c-.09-.04-.19-.09-.28-.13l-.5-1.19h-1zm.5 2.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5z" + } + }] +}; +exports.cog = cog; +var down = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v2h8v-2h-8zm2 3l2 2 2-2h-4zm-2 4v1h8v-1h-8z" + } + }] +}; +exports.down = down; +var up = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v1h8v-1h-8zm4 3l-2 2h4l-2-2zm-4 3v2h8v-2h-8z" + } + }] +}; +exports.up = up; +var command = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M1.5 0c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5h.5v1h-.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5v-.5h1v.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5-.67-1.5-1.5-1.5h-.5v-1h.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5v.5h-1v-.5c0-.83-.67-1.5-1.5-1.5zm0 1c.28 0 .5.22.5.5v.5h-.5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5zm4 0c.28 0 .5.22.5.5s-.22.5-.5.5h-.5v-.5c0-.28.22-.5.5-.5zm-2.5 2h1v1h-1v-1zm-1.5 2h.5v.5c0 .28-.22.5-.5.5s-.5-.22-.5-.5.22-.5.5-.5zm3.5 0h.5c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5v-.5z" + } + }] +}; +exports.command = command; +var square = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M.09 0c-.06 0-.09.04-.09.09v5.81c0 .05.04.09.09.09h5.91l2 2v-7.91c0-.06-.04-.09-.09-.09h-7.81z" + } + }] +}; +exports.square = square; +var compass = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 0c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm0 1c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm2 1l-3 1-1 3 3-1 1-3zm-2 1.5c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5.22-.5.5-.5z" + } + }] +}; +exports.compass = compass; +var contrast = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 0c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm0 1c1.66 0 3 1.34 3 3s-1.34 3-3 3v-6z" + } + }] +}; +exports.contrast = contrast; +var copywriting = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v1h8v-1h-8zm0 2v1h5v-1h-5zm0 3v1h8v-1h-8zm0 2v1h6v-1h-6zm7.5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z" + } + }] +}; +exports.copywriting = copywriting; +var card = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M.25 0c-.14 0-.25.11-.25.25v.75h8v-.75c0-.14-.11-.25-.25-.25h-7.5zm-.25 2v3.75c0 .14.11.25.25.25h7.5c.14 0 .25-.11.25-.25v-3.75h-8zm1 2h1v1h-1v-1zm2 0h1v1h-1v-1z", + "transform": "translate(0 1)" + } + }] +}; +exports.card = card; +var crop = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M1 0v1h-1v1h1v5h5v1h1v-1h1v-1h-1v-4.5l1-1-.5-.5-1 1h-4.5v-1h-1zm1 2h3.5l-3.5 3.5v-3.5zm4 .5v3.5h-3.5l3.5-3.5z" + } + }] +}; +exports.crop = crop; +var dashboard = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 0c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm0 1c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm0 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-1.66 1a.5.5 0 0 0-.19.84l.91.91c-.02.08-.06.16-.06.25 0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1c-.09 0-.17.04-.25.06l-.91-.91a.5.5 0 0 0-.44-.16.5.5 0 0 0-.06 0zm3.16 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z" + } + }] +}; +exports.dashboard = dashboard; +var transferDownload = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3 0v3h-2l3 3 3-3h-2v-3h-2zm-3 7v1h8v-1h-8z" + } + }] +}; +exports.transferDownload = transferDownload; +var transferUpload = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v1h8v-1h-8zm4 2l-3 3h2v3h2v-3h2l-3-3z" + } + }] +}; +exports.transferUpload = transferUpload; +var deleteIconic = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M2 0l-2 3 2 3h6v-6h-6zm1.5.78l1.5 1.5 1.5-1.5.72.72-1.5 1.5 1.5 1.5-.72.72-1.5-1.5-1.5 1.5-.72-.72 1.5-1.5-1.5-1.5.72-.72z", + "transform": "translate(0 1)" + } + }] +}; +exports.deleteIconic = deleteIconic; +var dial = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 0c-2.2 0-4 1.8-4 4h1c0-1.66 1.34-3 3-3s3 1.34 3 3h1c0-2.2-1.8-4-4-4zm-.59 2.09c-.81.25-1.41 1.01-1.41 1.91 0 1.11.9 2 2 2 1.11 0 2-.89 2-2 0-.9-.59-1.65-1.41-1.91l-.59.88-.59-.88z", + "transform": "translate(0 1)" + } + }] +}; +exports.dial = dial; +var document = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v8h7v-4h-4v-4h-3zm4 0v3h3l-3-3zm-3 2h1v1h-1v-1zm0 2h1v1h-1v-1zm0 2h4v1h-4v-1z" + } + }] +}; +exports.document = document; +var dollar = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M2 0v1h-.75c-.68 0-1.25.57-1.25 1.25v.5c0 .68.44 1.24 1.09 1.41l2.56.66c.14.04.34.29.34.44v.5c0 .14-.11.25-.25.25h-2.5c-.12 0-.21-.04-.25-.06v-.94h-1v1c0 .34.2.63.44.78.23.16.52.22.81.22h.75v1h1v-1h.75c.69 0 1.25-.56 1.25-1.25v-.5c0-.68-.44-1.24-1.09-1.41l-2.56-.66c-.14-.04-.34-.29-.34-.44v-.5c0-.14.11-.25.25-.25h2.5c.11 0 .21.04.25.06v.94h1v-1c0-.34-.2-.63-.44-.78-.23-.16-.52-.22-.81-.22h-.75v-1h-1z", + "transform": "translate(1)" + } + }] +}; +exports.dollar = dollar; +var quoteSansLeft = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v6l3-3v-3h-3zm5 0v6l3-3v-3h-3z", + "transform": "translate(0 1)" + } + }] +}; +exports.quoteSansLeft = quoteSansLeft; +var quoteSansRight = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3 0l-3 3v3h3v-6zm5 0l-3 3v3h3v-6z", + "transform": "translate(0 1)" + } + }] +}; +exports.quoteSansRight = quoteSansRight; +var quoteSerifLeft = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3 0c-1.65 0-3 1.35-3 3v3h3v-3h-2c0-1.11.89-2 2-2v-1zm5 0c-1.65 0-3 1.35-3 3v3h3v-3h-2c0-1.11.89-2 2-2v-1z", + "transform": "translate(0 1)" + } + }] +}; +exports.quoteSerifLeft = quoteSerifLeft; +var quoteSerifRight = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v3h2c0 1.11-.89 2-2 2v1c1.65 0 3-1.35 3-3v-3h-3zm5 0v3h2c0 1.11-.89 2-2 2v1c1.65 0 3-1.35 3-3v-3h-3z", + "transform": "translate(0 1)" + } + }] +}; +exports.quoteSerifRight = quoteSerifRight; +var droplet = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3 0l-.34.34c-.11.11-2.66 2.69-2.66 4.88 0 1.65 1.35 3 3 3s3-1.35 3-3c0-2.18-2.55-4.77-2.66-4.88l-.34-.34zm-1.5 4.72c.28 0 .5.22.5.5 0 .55.45 1 1 1 .28 0 .5.22.5.5s-.22.5-.5.5c-1.1 0-2-.9-2-2 0-.28.22-.5.5-.5z", + "transform": "translate(1)" + } + }] +}; +exports.droplet = droplet; +var eject = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 0l-4 5h8l-4-5zm-4 6v2h8v-2h-8z" + } + }] +}; +exports.eject = eject; +var elevator = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3 0l-3 3h6l-3-3zm-3 5l3 3 3-3h-6z", + "transform": "translate(1)" + } + }] +}; +exports.elevator = elevator; +var ellipses = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v2h2v-2h-2zm3 0v2h2v-2h-2zm3 0v2h2v-2h-2z", + "transform": "translate(0 3)" + } + }] +}; +exports.ellipses = ellipses; +var closed = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v1l4 2 4-2v-1h-8zm0 2v4h8v-4l-4 2-4-2z", + "transform": "translate(0 1)" + } + }] +}; +exports.closed = closed; +var open = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 0l-4 2v6h8v-6l-4-2zm0 1.13l3 1.5v1.88l-3 1.5-3-1.5v-1.88l3-1.5zm-2 1.88v1l2 1 2-1v-1h-4z" + } + }] +}; +exports.open = open; +var euro = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M6 0c-1.86 0-3.4 1.28-3.84 3h-1.91l-.25 1h2.01c0 .35.07.68.16 1h-1.97l-.19 1h2.56c.7 1.19 1.97 2 3.44 2 .73 0 1.41-.21 2-.56v-1.22c-.53.48-1.22.78-2 .78-.89 0-1.67-.39-2.22-1h2.22l.16-1h-2.97c-.11-.32-.19-.64-.19-1h3.34l.16-1h-3.31c.41-1.16 1.51-2 2.81-2 .66 0 1.26.21 1.75.56l.16-1.06c-.57-.31-1.21-.5-1.91-.5z", + "transform": "translate(-1)" + } + }] +}; +exports.euro = euro; +var excerpt = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v1h7v-1h-7zm0 2v1h5v-1h-5zm0 2v1h8v-1h-8zm0 2v1h1v-1h-1zm2 0v1h1v-1h-1zm2 0v1h1v-1h-1z" + } + }] +}; +exports.excerpt = excerpt; +var link = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v8h8v-2h-1v1h-6v-6h1v-1h-2zm4 0l1.5 1.5-2.5 2.5 1 1 2.5-2.5 1.5 1.5v-4h-4z" + } + }] +}; +exports.link = link; +var eye = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4.03 0c-2.53 0-4.03 3-4.03 3s1.5 3 4.03 3c2.47 0 3.97-3 3.97-3s-1.5-3-3.97-3zm-.03 1c1.11 0 2 .9 2 2 0 1.11-.89 2-2 2-1.1 0-2-.89-2-2 0-1.1.9-2 2-2zm0 1c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1c0-.1-.04-.19-.06-.28-.08.16-.24.28-.44.28-.28 0-.5-.22-.5-.5 0-.2.12-.36.28-.44-.09-.03-.18-.06-.28-.06z", + "transform": "translate(0 1)" + } + }] +}; +exports.eye = eye; +var eyedropper = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3.31 0a.5.5 0 0 0-.19.84l.63.63-3.59 3.66-.16.16v2.7199999999999998h2.69l.16-.16 3.66-3.66.63.66a.5.5 0 1 0 .72-.69l-.94-.94.66-.66c.59-.58.59-1.54 0-2.13-.57-.57-1.56-.57-2.13 0l-.66.66-.94-.94a.5.5 0 0 0-.47-.16.5.5 0 0 0-.06 0zm1.16 2.19l1.31 1.31-3.16 3.16-1.28-1.31 3.13-3.16z" + } + }] +}; +exports.eyedropper = eyedropper; +var file = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v8h7v-4h-4v-4h-3zm4 0v3h3l-3-3z" + } + }] +}; +exports.file = file; +var fire = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M2 0c1 2-2 3-2 5s2 3 2 3c-.98-1.98 2-3 2-5s-2-3-2-3zm3 3c1 2-2 3-2 5h3c.4 0 1-.5 1-2 0-2-2-3-2-3z" + } + }] +}; +exports.fire = fire; +var flag = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v8h1v-8h-1zm2 0v4h2v1h4l-2-1.97 2-2.03h-3v-1h-3z" + } + }] +}; +exports.flag = flag; +var flash = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M1.5 0l-1.5 3h2l-.66 2h-1.34l1 3 3-3h-1.5l1.5-3h-2l1-2h-1.5z", + "transform": "translate(2)" + } + }] +}; +exports.flash = flash; +var folder = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v2h8v-1h-5v-1h-3zm0 3v4.5c0 .28.22.5.5.5h7c.28 0 .5-.22.5-.5v-4.5h-8z" + } + }] +}; +exports.folder = folder; +var fork = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M1.5 0c-.83 0-1.5.67-1.5 1.5 0 .66.41 1.2 1 1.41v2.19c-.59.2-1 .75-1 1.41 0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5c0-.6-.34-1.1-.84-1.34.09-.09.21-.16.34-.16h2c.82 0 1.5-.68 1.5-1.5v-.59c.59-.2 1-.75 1-1.41 0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5c0 .66.41 1.2 1 1.41v.59c0 .28-.22.5-.5.5h-2c-.17 0-.35.04-.5.09v-1.19c.59-.2 1-.75 1-1.41 0-.83-.67-1.5-1.5-1.5z" + } + }] +}; +exports.fork = fork; +var enter = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v4l1.5-1.5 1.5 1.5 1-1-1.5-1.5 1.5-1.5h-4zm5 4l-1 1 1.5 1.5-1.5 1.5h4v-4l-1.5 1.5-1.5-1.5z" + } + }] +}; +exports.enter = enter; +var exit = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M1 0l-1 1 1.5 1.5-1.5 1.5h4v-4l-1.5 1.5-1.5-1.5zm3 4v4l1.5-1.5 1.5 1.5 1-1-1.5-1.5 1.5-1.5h-4z" + } + }] +}; +exports.exit = exit; +var globe = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 0c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 1c.33 0 .64.09.94.19-.21.2-.45.38-.41.56.04.18.69.13.69.5 0 .27-.42.35-.13.66.35.35-.64.98-.66 1.44-.03.83.84.97 1.53.97.42 0 .53.2.5.44-.54.77-1.46 1.25-2.47 1.25-.38 0-.73-.09-1.06-.22.22-.44-.28-1.31-.75-1.59-.23-.23-.72-.14-1-.25-.09-.27-.18-.54-.19-.84.03-.05.08-.09.16-.09.19 0 .45.38.59.34.18-.04-.74-1.31-.31-1.56.2-.12.6.39.47-.16-.12-.51.36-.28.66-.41.26-.11.45-.41.13-.59-.06-.03-.13-.1-.22-.19.45-.27.97-.44 1.53-.44zm2.31 1.09c.18.22.32.46.44.72 0 .01 0 .02 0 .03-.04.07-.11.11-.22.22-.28.28-.32-.21-.44-.31-.13-.12-.6.02-.66-.13-.07-.18.5-.42.88-.53z" + } + }] +}; +exports.globe = globe; +var graph = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M7.03 0l-3.03 3-1-1-3 3.03 1 1 2-2.03 1 1 4-4-.97-1zm-7.03 7v1h8v-1h-8z" + } + }] +}; +exports.graph = graph; +var fourUp = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v1h1v-1h-1zm2 0v1h1v-1h-1zm2 0v1h1v-1h-1zm2 0v1h1v-1h-1zm-6 2v1h1v-1h-1zm2 0v1h1v-1h-1zm2 0v1h1v-1h-1zm2 0v1h1v-1h-1zm-6 2v1h1v-1h-1zm2 0v1h1v-1h-1zm2 0v1h1v-1h-1zm2 0v1h1v-1h-1zm-6 2v1h1v-1h-1zm2 0v1h1v-1h-1zm2 0v1h1v-1h-1zm2 0v1h1v-1h-1z" + } + }] +}; +exports.fourUp = fourUp; +var threeUp = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v2h2v-2h-2zm3 0v2h2v-2h-2zm3 0v2h2v-2h-2zm-6 3v2h2v-2h-2zm3 0v2h2v-2h-2zm3 0v2h2v-2h-2zm-6 3v2h2v-2h-2zm3 0v2h2v-2h-2zm3 0v2h2v-2h-2z" + } + }] +}; +exports.threeUp = threeUp; +var twoUp = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v3h3v-3h-3zm5 0v3h3v-3h-3zm-5 5v3h3v-3h-3zm5 0v3h3v-3h-3z" + } + }] +}; +exports.twoUp = twoUp; +var drive = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M.19 0c-.11 0-.19.08-.19.19v3.31c0 .28.22.5.5.5h6c.28 0 .5-.22.5-.5v-3.31c0-.11-.08-.19-.19-.19h-6.63zm-.19 4.91v2.91c0 .11.08.19.19.19h6.63c.11 0 .19-.08.19-.19v-2.91c-.16.06-.32.09-.5.09h-6c-.18 0-.34-.04-.5-.09zm5.5 1.09c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5.22-.5.5-.5z" + } + }] +}; +exports.drive = drive; +var header = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v1h.5c.28 0 .5.22.5.5v4c0 .28-.22.5-.5.5h-.5v1h3v-1h-.5c-.28 0-.5-.22-.5-.5v-1.5h3v1.5c0 .28-.22.5-.5.5h-.5v1h3v-1h-.5c-.28 0-.5-.22-.5-.5v-4c0-.28.22-.5.5-.5h.5v-1h-3v1h.5c.28 0 .5.22.5.5v1.5h-3v-1.5c0-.28.22-.5.5-.5h.5v-1h-3z" + } + }] +}; +exports.header = header; +var headphones = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 0c-1.65 0-3 1.35-3 3v1h-.5a.5.5 0 0 0-.5.5v2a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-3.5c0-1.11.89-2 2-2 1.11 0 2 .89 2 2v3.5a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-2a.5.5 0 0 0-.5-.5h-.5v-1c0-1.65-1.35-3-3-3z" + } + }] +}; +exports.headphones = headphones; +var heart = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M2 0c-.55 0-1.04.23-1.41.59-.36.36-.59.85-.59 1.41 0 .55.23 1.04.59 1.41l3.41 3.41 3.41-3.41c.36-.36.59-.85.59-1.41 0-.55-.23-1.04-.59-1.41-.36-.36-.85-.59-1.41-.59-.55 0-1.04.23-1.41.59-.36.36-.59.85-.59 1.41 0-.55-.23-1.04-.59-1.41-.36-.36-.85-.59-1.41-.59z", + "transform": "translate(0 1)" + } + }] +}; +exports.heart = heart; +var home = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 0l-4 3h1v4h2v-2h2v2h2v-4.03l1 .03-4-3z" + } + }] +}; +exports.home = home; +var image = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v8h8v-8h-8zm1 1h6v3l-1-1-1 1 2 2v1h-1l-4-4-1 1v-3z" + } + }] +}; +exports.image = image; +var inbox = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M.19 0c-.11 0-.19.08-.19.19v7.63c0 .11.08.19.19.19h7.63c.11 0 .19-.08.19-.19v-7.63c0-.11-.08-.19-.19-.19h-7.63zm.81 2h6v3h-1l-1 1h-2l-1-1h-1v-3z" + } + }] +}; +exports.inbox = inbox; +var infinity = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M2 0c-1.31 0-2 1.01-2 2s.69 2 2 2c.79 0 1.42-.56 2-1.22.58.66 1.19 1.22 2 1.22 1.31 0 2-1.01 2-2s-.69-2-2-2c-.81 0-1.42.56-2 1.22-.58-.66-1.21-1.22-2-1.22zm0 1c.42 0 .88.47 1.34 1-.46.53-.92 1-1.34 1-.74 0-1-.54-1-1 0-.46.26-1 1-1zm4 0c.74 0 1 .54 1 1 0 .46-.26 1-1 1-.43 0-.89-.47-1.34-1 .46-.53.91-1 1.34-1z", + "transform": "translate(0 2)" + } + }] +}; +exports.infinity = infinity; +var info = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3 0c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm-1.5 2.5c-.83 0-1.5.67-1.5 1.5h1c0-.28.22-.5.5-.5s.5.22.5.5-1 1.64-1 2.5c0 .86.67 1.5 1.5 1.5s1.5-.67 1.5-1.5h-1c0 .28-.22.5-.5.5s-.5-.22-.5-.5c0-.36 1-1.84 1-2.5 0-.81-.67-1.5-1.5-1.5z", + "transform": "translate(2)" + } + }] +}; +exports.info = info; +var italic = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M2 0v1h1.63l-.06.13-2 5-.34.88h-1.22v1h5v-1h-1.63l.06-.13 2-5 .34-.88h1.22v-1h-5z" + } + }] +}; +exports.italic = italic; +var key = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M5.5 0c-1.38 0-2.5 1.12-2.5 2.5 0 .16 0 .32.03.47l-3.03 3.03v2h3v-2h2v-1l.03-.03c.15.03.31.03.47.03 1.38 0 2.5-1.12 2.5-2.5s-1.12-2.5-2.5-2.5zm.5 1c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z" + } + }] +}; +exports.key = key; +var laptop = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M1.34 0a.5.5 0 0 0-.34.5v3.5h-1v1.5c0 .28.22.5.5.5h7.010000000000001c.28 0 .5-.22.5-.5v-1.5h-1v-3.5a.5.5 0 0 0-.5-.5h-5a.5.5 0 0 0-.09 0 .5.5 0 0 0-.06 0zm.66 1h4v3h-1v1h-2v-1h-1v-3z", + "transform": "translate(0 1)" + } + }] +}; +exports.laptop = laptop; +var layers = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v4h4v-4h-4zm5 2v3h-3v1h4v-4h-1zm2 2v3h-3v1h4v-4h-1z" + } + }] +}; +exports.layers = layers; +var lightbulb = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3.41 0a.5.5 0 0 0-.13.06l-3 1.5a.5.5 0 1 0 .44.88l3-1.5a.5.5 0 0 0-.31-.94zm1 1.5a.5.5 0 0 0-.13.06l-4 2a.5.5 0 1 0 .44.88l4-2a.5.5 0 0 0-.31-.94zm0 2a.5.5 0 0 0-.13.06l-3 1.5a.5.5 0 0 0 .22.94h2a.5.5 0 0 0 .16-1l1.06-.56a.5.5 0 0 0-.31-.94zm-2.56 3.5a.5.5 0 0 0 .16 1h1a.5.5 0 1 0 0-1h-1a.5.5 0 0 0-.09 0 .5.5 0 0 0-.06 0z", + "transform": "translate(1)" + } + }] +}; +exports.lightbulb = lightbulb; +var broken = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M2 0v1h-1v1h2v-2h-1zm3.88.03c-.18.01-.36.03-.53.09-.27.1-.53.25-.75.47l-.44.44a.5.5 0 1 0 .69.69l.44-.44c.11-.11.24-.17.38-.22.35-.12.78-.07 1.06.22.39.39.39 1.04 0 1.44l-1.5 1.5a.5.5 0 1 0 .69.69l1.5-1.5c.78-.78.78-2.04 0-2.81-.28-.28-.61-.45-.97-.53-.18-.04-.38-.04-.56-.03zm-3.59 2.91a.5.5 0 0 0-.19.16l-1.5 1.5c-.78.78-.78 2.04 0 2.81.56.56 1.36.72 2.06.47.27-.1.53-.25.75-.47l.44-.44a.5.5 0 1 0-.69-.69l-.44.44c-.11.11-.24.17-.38.22-.35.12-.78.07-1.06-.22-.39-.39-.39-1.04 0-1.44l1.5-1.5a.5.5 0 0 0-.44-.84.5.5 0 0 0-.06 0zm2.72 3.06v2h1v-1h1v-1h-2z" + } + }] +}; +exports.broken = broken; +var intact = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M5.88.03c-.18.01-.36.03-.53.09-.27.1-.53.25-.75.47a.5.5 0 1 0 .69.69c.11-.11.24-.17.38-.22.35-.12.78-.07 1.06.22.39.39.39 1.04 0 1.44l-1.5 1.5c-.44.44-.8.48-1.06.47-.26-.01-.41-.13-.41-.13a.5.5 0 1 0-.5.88s.34.22.84.25c.5.03 1.2-.16 1.81-.78l1.5-1.5c.78-.78.78-2.04 0-2.81-.28-.28-.61-.45-.97-.53-.18-.04-.38-.04-.56-.03zm-2 2.31c-.5-.02-1.19.15-1.78.75l-1.5 1.5c-.78.78-.78 2.04 0 2.81.56.56 1.36.72 2.06.47.27-.1.53-.25.75-.47a.5.5 0 1 0-.69-.69c-.11.11-.24.17-.38.22-.35.12-.78.07-1.06-.22-.39-.39-.39-1.04 0-1.44l1.5-1.5c.4-.4.75-.45 1.03-.44.28.01.47.09.47.09a.5.5 0 1 0 .44-.88s-.34-.2-.84-.22z" + } + }] +}; +exports.intact = intact; +var rich = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v3h3v-3h-3zm4 0v1h4v-1h-4zm0 2v1h3v-1h-3zm-4 2v3h3v-3h-3zm4 0v1h4v-1h-4zm0 2v1h3v-1h-3z" + } + }] +}; +exports.rich = rich; +var list = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M.5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm1.5 0v1h6v-1h-6zm-1.5 2c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm1.5 0v1h6v-1h-6zm-1.5 2c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm1.5 0v1h6v-1h-6zm-1.5 2c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm1.5 0v1h6v-1h-6z" + } + }] +}; +exports.list = list; +var location = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M8 0l-8 4 3 1 1 3 4-8z" + } + }] +}; +exports.location = location; +var locked = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3 0c-1.1 0-2 .9-2 2v1h-1v4h6v-4h-1v-1c0-1.1-.9-2-2-2zm0 1c.56 0 1 .44 1 1v1h-2v-1c0-.56.44-1 1-1z", + "transform": "translate(1)" + } + }] +}; +exports.locked = locked; +var unlocked = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3 0c-1.1 0-2 .9-2 2h1c0-.56.44-1 1-1s1 .44 1 1v2h-4v4h6v-4h-1v-2c0-1.1-.9-2-2-2z", + "transform": "translate(1)" + } + }] +}; +exports.unlocked = unlocked; +var circular = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 0c-1.65 0-3 1.35-3 3h-1l1.5 2 1.5-2h-1c0-1.11.89-2 2-2v-1zm2.5 1l-1.5 2h1c0 1.11-.89 2-2 2v1c1.65 0 3-1.35 3-3h1l-1.5-2z", + "transform": "translate(0 1)" + } + }] +}; +exports.circular = circular; +var loop = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M6 0v1h-5c-.55 0-1 .45-1 1v1h1v-1h5v1l2-1.5-2-1.5zm-4 4l-2 1.5 2 1.5v-1h5c.55 0 1-.45 1-1v-1h-1v1h-5v-1z" + } + }] +}; +exports.loop = loop; +var glass = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3.5 0c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5c.59 0 1.17-.14 1.66-.41a1 1 0 0 0 .13.13l1 1a1.02 1.02 0 1 0 1.44-1.44l-1-1a1 1 0 0 0-.16-.13c.27-.49.44-1.06.44-1.66 0-1.93-1.57-3.5-3.5-3.5zm0 1c1.39 0 2.5 1.11 2.5 2.5 0 .66-.24 1.27-.66 1.72-.01.01-.02.02-.03.03a1 1 0 0 0-.13.13c-.44.4-1.04.63-1.69.63-1.39 0-2.5-1.11-2.5-2.5s1.11-2.5 2.5-2.5z" + } + }] +}; +exports.glass = glass; +var marker = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3 0c-1.66 0-3 1.34-3 3 0 2 3 5 3 5s3-3 3-5c0-1.66-1.34-3-3-3zm0 1c1.11 0 2 .9 2 2 0 1.11-.89 2-2 2-1.1 0-2-.89-2-2 0-1.1.9-2 2-2z", + "transform": "translate(1)" + } + }] +}; +exports.marker = marker; +var map = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v8h8v-2.38a.5.5 0 0 0 0-.22v-5.41h-8zm1 1h6v4h-1.5a.5.5 0 0 0-.09 0 .5.5 0 1 0 .09 1h1.5v1h-6v-6zm2.5 1c-.83 0-1.5.67-1.5 1.5 0 1 1.5 2.5 1.5 2.5s1.5-1.5 1.5-2.5c0-.83-.67-1.5-1.5-1.5zm0 1c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5.22-.5.5-.5z" + } + }] +}; +exports.map = map; +var pause = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v6h2v-6h-2zm4 0v6h2v-6h-2z", + "transform": "translate(1 1)" + } + }] +}; +exports.pause = pause; +var play = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v6l6-3-6-3z", + "transform": "translate(1 1)" + } + }] +}; +exports.play = play; +var record = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3 0c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z", + "transform": "translate(1 1)" + } + }] +}; +exports.record = record; +var skipBackward = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 0l-4 3 4 3v-6zm0 3l4 3v-6l-4 3z", + "transform": "translate(0 1)" + } + }] +}; +exports.skipBackward = skipBackward; +var skipForward = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v6l4-3-4-3zm4 3v3l4-3-4-3v3z", + "transform": "translate(0 1)" + } + }] +}; +exports.skipForward = skipForward; +var stepBackward = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v6h2v-6h-2zm2 3l5 3v-6l-5 3z", + "transform": "translate(0 1)" + } + }] +}; +exports.stepBackward = stepBackward; +var stepForward = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v6l5-3-5-3zm5 3v3h2v-6h-2v3z", + "transform": "translate(0 1)" + } + }] +}; +exports.stepForward = stepForward; +var stop = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v6h6v-6h-6z", + "transform": "translate(1 1)" + } + }] +}; +exports.stop = stop; +var cross = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M2 0v2h-2v4h2v2h4v-2h2v-4h-2v-2h-4z" + } + }] +}; +exports.cross = cross; +var menu = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v1h8v-1h-8zm0 2.97v1h8v-1h-8zm0 3v1h8v-1h-8z", + "transform": "translate(0 1)" + } + }] +}; +exports.menu = menu; +var microphone = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M2.91-.03a1 1 0 0 0-.13.03 1 1 0 0 0-.78 1v2a1 1 0 1 0 2 0v-2a1 1 0 0 0-1.09-1.03zm-2.56 2.03a.5.5 0 0 0-.34.5v.5c0 1.48 1.09 2.69 2.5 2.94v1.06h-.5c-.55 0-1 .45-1 1h4.01c0-.55-.45-1-1-1h-.5v-1.06c1.41-.24 2.5-1.46 2.5-2.94v-.5a.5.5 0 1 0-1 0v.5c0 1.11-.89 2-2 2-1.11 0-2-.89-2-2v-.5a.5.5 0 0 0-.59-.5.5.5 0 0 0-.06 0z", + "transform": "translate(1)" + } + }] +}; +exports.microphone = microphone; +var minus = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v2h8v-2h-8z", + "transform": "translate(0 3)" + } + }] +}; +exports.minus = minus; +var monitor = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M.34 0a.5.5 0 0 0-.34.5v5a.5.5 0 0 0 .5.5h2.5v1h-1c-.55 0-1 .45-1 1h6c0-.55-.45-1-1-1h-1v-1h2.5a.5.5 0 0 0 .5-.5v-5a.5.5 0 0 0-.5-.5h-7a.5.5 0 0 0-.09 0 .5.5 0 0 0-.06 0zm.66 1h6v4h-6v-4z" + } + }] +}; +exports.monitor = monitor; +var moon = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M2.72 0c-1.58.53-2.72 2.02-2.72 3.78 0 2.21 1.79 4 4 4 1.76 0 3.25-1.14 3.78-2.72-.4.13-.83.22-1.28.22-2.21 0-4-1.79-4-4 0-.45.08-.88.22-1.28z" + } + }] +}; +exports.moon = moon; +var move = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3.5 0l-1.5 1.5h1v1.5h-1.5v-1l-1.5 1.5 1.5 1.5v-1h1.5v1.5h-1l1.5 1.5 1.5-1.5h-1v-1.5h1.5v1l1.5-1.5-1.5-1.5v1h-1.5v-1.5h1l-1.5-1.5z" + } + }] +}; +exports.move = move; +var note = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M8 0c-5 0-6 1-6 1v4.09c-.15-.05-.33-.09-.5-.09-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5v-3.97c.73-.23 1.99-.44 4-.5v2.06c-.15-.05-.33-.09-.5-.09-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5v-5.5z" + } + }] +}; +exports.note = note; +var paperclip = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M5 0c-.51 0-1.02.21-1.41.59l-2.78 2.72c-1.07 1.07-1.07 2.8 0 3.88 1.07 1.07 2.8 1.07 3.88 0l1.25-1.25-.69-.69-1.16 1.13-.09.13c-.69.69-1.81.69-2.5 0-.68-.68-.66-1.78 0-2.47l2.78-2.75c.39-.39 1.04-.39 1.44 0 .39.39.37 1.01 0 1.41l-2.5 2.47c-.1.1-.27.1-.38 0-.1-.1-.1-.27 0-.38l.06-.03.91-.94-.69-.69-.97.97c-.48.48-.48 1.27 0 1.75s1.27.49 1.75 0l2.5-2.44c.78-.78.78-2.04 0-2.81-.39-.39-.89-.59-1.41-.59z" + } + }] +}; +exports.paperclip = paperclip; +var pencil = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M6 0l-1 1 2 2 1-1-2-2zm-2 2l-4 4v2h2l4-4-2-2z" + } + }] +}; +exports.pencil = pencil; +var people = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M5.5 0c-.51 0-.95.35-1.22.88.45.54.72 1.28.72 2.13 0 .29-.03.55-.09.81.19.11.38.19.59.19.83 0 1.5-.9 1.5-2s-.67-2-1.5-2zm-3 1c-.83 0-1.5.9-1.5 2s.67 2 1.5 2 1.5-.9 1.5-2-.67-2-1.5-2zm4.75 3.16c-.43.51-1.02.82-1.69.84.27.38.44.84.44 1.34v.66h2v-1.66c0-.52-.31-.97-.75-1.19zm-6.5 1c-.44.22-.75.67-.75 1.19v1.66h5v-1.66c0-.52-.31-.97-.75-1.19-.45.53-1.06.84-1.75.84s-1.3-.32-1.75-.84z" + } + }] +}; +exports.people = people; +var person = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 0c-1.1 0-2 1.12-2 2.5s.9 2.5 2 2.5 2-1.12 2-2.5-.9-2.5-2-2.5zm-2.09 5c-1.06.05-1.91.92-1.91 2v1h8v-1c0-1.08-.84-1.95-1.91-2-.54.61-1.28 1-2.09 1-.81 0-1.55-.39-2.09-1z" + } + }] +}; +exports.person = person; +var phone = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M.19 0c-.11 0-.19.08-.19.19v7.63c0 .11.08.19.19.19h4.63c.11 0 .19-.08.19-.19v-7.63c0-.11-.08-.19-.19-.19h-4.63zm.81 1h3v5h-3v-5zm1.5 5.5c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5.22-.5.5-.5z", + "transform": "translate(1)" + } + }] +}; +exports.phone = phone; +var pin = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M1.34 0a.5.5 0 0 0 .16 1h.5v2h-1c-.55 0-1 .45-1 1h3v3l.44 1 .56-1v-3h3c0-.55-.45-1-1-1h-1v-2h.5a.5.5 0 1 0 0-1h-4a.5.5 0 0 0-.09 0 .5.5 0 0 0-.06 0z" + } + }] +}; +exports.pin = pin; +var circle = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 0c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm-1 2l3 2-3 2v-4z" + } + }] +}; +exports.circle = circle; +var plus = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3 0v3h-3v2h3v3h2v-3h3v-2h-3v-3h-2z" + } + }] +}; +exports.plus = plus; +var standby = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3 0v4h1v-4h-1zm-1.28 1.44l-.38.31c-.81.64-1.34 1.64-1.34 2.75 0 1.93 1.57 3.5 3.5 3.5s3.5-1.57 3.5-3.5c0-1.11-.53-2.11-1.34-2.75l-.38-.31-.63.78.38.31c.58.46.97 1.17.97 1.97 0 1.39-1.11 2.5-2.5 2.5s-2.5-1.11-2.5-2.5c0-.8.36-1.51.94-1.97l.41-.31-.63-.78z" + } + }] +}; +exports.standby = standby; +var print = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M2 0v2h4v-2h-4zm-1.91 3c-.06 0-.09.04-.09.09v2.81c0 .05.04.09.09.09h.91v-2h6v2h.91c.05 0 .09-.04.09-.09v-2.81c0-.06-.04-.09-.09-.09h-7.81zm1.91 2v3h4v-3h-4z" + } + }] +}; +exports.print = print; +var project = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v7h1v-7h-1zm7 0v7h1v-7h-1zm-5 1v1h2v-1h-2zm1 2v1h2v-1h-2zm1 2v1h2v-1h-2z" + } + }] +}; +exports.project = project; +var pulse = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3.25 0l-.47 1.53-.78 2.56-.03-.06-.09-.34h-1.88v1h1.1600000000000001l.38 1.16.47 1.47.47-1.5.78-2.5.78 2.5.41 1.34.53-1.28.59-1.47.13.28h2.31v-1h-1.69l-.38-.75-.5-.97-.41 1.03-.47 1.19-.84-2.66-.47-1.53z" + } + }] +}; +exports.pulse = pulse; +var piece = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3 0c-.28 0-.54.1-.72.28-.18.18-.28.44-.28.72 0 .28.18.48.28.72.03.06.03.16.03.28h-2.31v6h2.31c0-.12-.01-.22-.03-.28-.1-.24-.28-.44-.28-.72 0-.28.1-.54.28-.72.18-.18.44-.28.72-.28.28 0 .54.1.72.28.18.18.28.44.28.72 0 .28-.18.48-.28.72-.03.06-.03.16-.03.28h2.31v-2.31c.12 0 .22.01.28.03.24.1.44.28.72.28.28 0 .54-.1.72-.28.18-.18.28-.44.28-.72 0-.28-.1-.54-.28-.72-.18-.18-.44-.28-.72-.28-.28 0-.48.18-.72.28-.06.03-.16.03-.28.03v-2.31h-2.31c0-.12.01-.22.03-.28.1-.24.28-.44.28-.72 0-.28-.1-.54-.28-.72-.18-.18-.44-.28-.72-.28z" + } + }] +}; +exports.piece = piece; +var mark = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M2.47 0c-.85 0-1.48.26-1.88.66-.4.4-.54.9-.59 1.28l1 .13c.04-.25.12-.5.31-.69.19-.19.49-.38 1.16-.38.66 0 1.02.16 1.22.34.2.18.28.4.28.66 0 .83-.34 1.06-.84 1.5-.5.44-1.16 1.08-1.16 2.25v.25h1v-.25c0-.83.31-1.06.81-1.5.5-.44 1.19-1.08 1.19-2.25 0-.48-.17-1.02-.59-1.41-.43-.39-1.07-.59-1.91-.59zm-.5 7v1h1v-1h-1z", + "transform": "translate(2)" + } + }] +}; +exports.mark = mark; +var rain = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4.5 0c-1.21 0-2.27.86-2.5 2-1.1 0-2 .9-2 2 0 .53.2.99.53 1.34.26-.22.6-.34.97-.34.2 0 .39.05.56.13.17-.64.74-1.13 1.44-1.13.69 0 1.27.49 1.44 1.13.17-.07.36-.13.56-.13.63 0 1.15.39 1.38.94.64-.17 1.13-.75 1.13-1.44 0-.65-.42-1.29-1-1.5v-.5c0-1.38-1.12-2.5-2.5-2.5zm-1.16 5a.5.5 0 0 0-.34.5v2a.5.5 0 1 0 1 0v-2a.5.5 0 0 0-.59-.5.5.5 0 0 0-.06 0zm-2 1a.5.5 0 0 0-.34.5v1a.5.5 0 1 0 1 0v-1a.5.5 0 0 0-.59-.5.5.5 0 0 0-.06 0zm4 0a.5.5 0 0 0-.34.5v1a.5.5 0 1 0 1 0v-1a.5.5 0 0 0-.59-.5.5.5 0 0 0-.06 0z" + } + }] +}; +exports.rain = rain; +var random = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M6 0v1h-.5c-.35 0-.56.1-.78.38l-1.41 1.78-1.53-1.78c-.22-.26-.44-.38-.78-.38h-1v1h1c-.05 0 .01.04.03.03l1.63 1.91-1.66 2.06h-1v1h1c.35 0 .56-.1.78-.38l1.53-1.91 1.66 1.91c.22.26.44.38.78.38h.25v1l2-1.5-2-1.5v1h-.22c-.01-.01-.05-.04-.06-.03l-1.75-2.06 1.53-1.91h.5v1l2-1.5-2-1.5z" + } + }] +}; +exports.random = random; +var reload = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 0c-2.2 0-4 1.8-4 4s1.8 4 4 4c1.1 0 2.12-.43 2.84-1.16l-.72-.72c-.54.54-1.29.88-2.13.88-1.66 0-3-1.34-3-3s1.34-3 3-3c.83 0 1.55.36 2.09.91l-1.09 1.09h3v-3l-1.19 1.19c-.72-.72-1.71-1.19-2.81-1.19z" + } + }] +}; +exports.reload = reload; +var both = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 0l1.66 1.66-4 4-1.66-1.66v4h4l-1.66-1.66 4-4 1.66 1.66v-4h-4z" + } + }] +}; +exports.both = both; +var height = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M2.5 0l-2.5 3h2v2h-2l2.5 3 2.5-3h-2v-2h2l-2.5-3z", + "transform": "translate(1)" + } + }] +}; +exports.height = height; +var width = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3 0l-3 2.5 3 2.5v-2h2v2l3-2.5-3-2.5v2h-2v-2z", + "transform": "translate(0 1)" + } + }] +}; +exports.width = width; +var alt = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v2c3.33 0 6 2.67 6 6h2c0-4.41-3.59-8-8-8zm0 3v2c1.67 0 3 1.33 3 3h2c0-2.75-2.25-5-5-5zm0 3v2h2c0-1.11-.9-2-2-2z" + } + }] +}; +exports.alt = alt; +var rss = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M1 0v1c3.32 0 6 2.68 6 6h1c0-3.86-3.14-7-7-7zm0 2v1c2.21 0 4 1.79 4 4h1c0-2.76-2.24-5-5-5zm0 2v1c1.11 0 2 .89 2 2h1c0-1.65-1.35-3-3-3zm0 2c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z" + } + }] +}; +exports.rss = rss; +var script = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3 0c-.55 0-1 .45-1 1v5.5c0 .28-.22.5-.5.5s-.5-.22-.5-.5v-1.5h-1v2c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-3h-4v-2.5c0-.28.22-.5.5-.5s.5.22.5.5v1.5h4v-2c0-.55-.45-1-1-1h-4z" + } + }] +}; +exports.script = script; +var boxed = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M.75 0c-.41 0-.75.34-.75.75v5.5c0 .41.34.75.75.75h4.5c.41 0 .75-.34.75-.75v-1.25h-1v1h-4v-5h2v-1h-2.25zm5.25 0v1c-2.05 0-3.7 1.54-3.94 3.53.21-.88.99-1.53 1.94-1.53h2v1l2-2-2-2z" + } + }] +}; +exports.boxed = boxed; +var share = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M5 0v2c-4 0-5 2.05-5 5 .52-1.98 2-3 4-3h1v2l3-3.16-3-2.84z" + } + }] +}; +exports.share = share; +var shield = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 0l-.19.09-3.5 1.47-.31.13v.31c0 1.66.67 3.12 1.47 4.19.4.53.83.97 1.25 1.28.42.31.83.53 1.28.53.46 0 .86-.22 1.28-.53.42-.31.85-.75 1.25-1.28.8-1.07 1.47-2.53 1.47-4.19v-.31l-.31-.13-3.5-1.47-.19-.09zm0 1.09v5.91c-.04 0-.33-.07-.66-.31s-.71-.63-1.06-1.09c-.64-.85-1.14-2.03-1.22-3.28l2.94-1.22z" + } + }] +}; +exports.shield = shield; +var signal = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M6 0v8h1v-8h-1zm-2 1v7h1v-7h-1zm-2 2v5h1v-5h-1zm-2 2v3h1v-3h-1z" + } + }] +}; +exports.signal = signal; +var signpost = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3 0v1h-2l-1 1 1 1h2v5h1v-4h2l1-1-1-1h-2v-2h-1z" + } + }] +}; +exports.signpost = signpost; +var ascending = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M2 0v6h-2l2.5 2 2.5-2h-2v-6h-1zm2 0v1h2v-1h-2zm0 2v1h3v-1h-3zm0 2v1h4v-1h-4z" + } + }] +}; +exports.ascending = ascending; +var descending = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M2 0v6h-2l2.5 2 2.5-2h-2v-6h-1zm2 0v1h4v-1h-4zm0 2v1h3v-1h-3zm0 2v1h2v-1h-2z" + } + }] +}; +exports.descending = descending; +var spreadsheet = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M.75 0c-.41 0-.75.34-.75.75v5.5c0 .41.34.75.75.75h6.5c.41 0 .75-.34.75-.75v-5.5c0-.41-.34-.75-.75-.75h-6.5zm.25 1h1v1h-1v-1zm2 0h4v1h-4v-1zm-2 2h1v1h-1v-1zm2 0h4v1h-4v-1zm-2 2h1v1h-1v-1zm2 0h4v1h-4v-1z" + } + }] +}; +exports.spreadsheet = spreadsheet; +var star = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 0l-1 3h-3l2.5 2-1 3 2.5-2 2.5 2-1-3 2.5-2h-3l-1-3z" + } + }] +}; +exports.star = star; +var sun = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5 1.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-6 2.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z" + } + }] +}; +exports.sun = sun; +var tablet = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M.34 0c-.18 0-.34.16-.34.34v7.31c0 .18.16.34.34.34h6.31c.18 0 .34-.16.34-.34v-7.31c0-.18-.16-.34-.34-.34h-6.31zm.66 1h5v5h-5v-5zm2.5 5.5c.38 0 .63.42.44.75s-.68.33-.88 0c-.19-.33.05-.75.44-.75z" + } + }] +}; +exports.tablet = tablet; +var tag = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v3l5 5 3-3-5-5h-3zm2 1c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z" + } + }] +}; +exports.tag = tag; +var tags = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v2l3 3 1.5-1.5.5-.5-2-2-1-1h-2zm3.41 0l3 3-1.19 1.22.78.78 2-2-3-3h-1.59zm-1.91 1c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5.22-.5.5-.5z", + "transform": "translate(0 1)" + } + }] +}; +exports.tags = tags; +var target = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 0c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm0 1c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm0 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 1c.56 0 1 .44 1 1s-.44 1-1 1-1-.44-1-1 .44-1 1-1z" + } + }] +}; +exports.target = target; +var task = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v7h7v-3.59l-1 1v1.59h-5v-5h3.59l1-1h-5.59zm7 0l-3 3-1-1-1 1 2 2 4-4-1-1z" + } + }] +}; +exports.task = task; +var terminal = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M.09 0c-.06 0-.09.04-.09.09v7.81c0 .05.04.09.09.09h7.81c.05 0 .09-.04.09-.09v-7.81c0-.06-.04-.09-.09-.09h-7.81zm1.41.78l1.72 1.72-1.72 1.72-.72-.72 1-1-1-1 .72-.72zm2.5 2.22h3v1h-3v-1z" + } + }] +}; +exports.terminal = terminal; +var text = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v2h.5c0-.55.45-1 1-1h1.5v5.5c0 .28-.22.5-.5.5h-.5v1h4v-1h-.5c-.28 0-.5-.22-.5-.5v-5.5h1.5c.55 0 1 .45 1 1h.5v-2h-8z" + } + }] +}; +exports.text = text; +var timer = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M2 0v1h1v.03c-1.7.24-3 1.71-3 3.47 0 1.93 1.57 3.5 3.5 3.5s3.5-1.57 3.5-3.5c0-.45-.1-.87-.25-1.25l-.91.38c.11.29.16.57.16.88 0 1.39-1.11 2.5-2.5 2.5s-2.5-1.11-2.5-2.5 1.11-2.5 2.5-2.5c.3 0 .59.05.88.16l.34-.94c-.23-.08-.47-.12-.72-.16v-.06h1v-1h-3zm5 1.16s-3.65 2.81-3.84 3c-.19.2-.19.49 0 .69.19.2.49.2.69 0 .2-.2 3.16-3.69 3.16-3.69z" + } + }] +}; +exports.timer = timer; +var transfer = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M6 0v1h-6v1h6v1l2-1.5-2-1.5zm-4 4l-2 1.5 2 1.5v-1h6v-1h-6v-1z" + } + }] +}; +exports.transfer = transfer; +var trash = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3 0c-.55 0-1 .45-1 1h-1c-.55 0-1 .45-1 1h7c0-.55-.45-1-1-1h-1c0-.55-.45-1-1-1h-1zm-2 3v4.81c0 .11.08.19.19.19h4.63c.11 0 .19-.08.19-.19v-4.81h-1v3.5c0 .28-.22.5-.5.5s-.5-.22-.5-.5v-3.5h-1v3.5c0 .28-.22.5-.5.5s-.5-.22-.5-.5v-3.5h-1z" + } + }] +}; +exports.trash = trash; +var underline = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M1 0v4c0 1.1 1.12 2 2.5 2h.5c1.1 0 2-.9 2-2v-4h-1v4c0 .55-.45 1-1 1s-1-.45-1-1v-4h-2zm-1 7v1h7v-1h-7z" + } + }] +}; +exports.underline = underline; +var alignBottom = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M.09 0c-.06 0-.09.04-.09.09v4.81c0 .05.04.09.09.09h1.81c.05 0 .09-.04.09-.09v-4.81c0-.06-.04-.09-.09-.09h-1.81zm6 0c-.05 0-.09.04-.09.09v4.81c0 .05.04.09.09.09h1.81c.05 0 .09-.04.09-.09v-4.81c0-.06-.04-.09-.09-.09h-1.81zm-3 2c-.06 0-.09.04-.09.09v2.81c0 .05.04.09.09.09h1.81c.05 0 .09-.04.09-.09v-2.81c0-.06-.04-.09-.09-.09h-1.81zm-3.09 4v1h8v-1h-8z" + } + }] +}; +exports.alignBottom = alignBottom; +var alignCenter = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M.09 0c-.06 0-.09.04-.09.09v1.91h2v-1.91c0-.06-.04-.09-.09-.09h-1.81zm6 0c-.05 0-.09.04-.09.09v1.91h2v-1.91c0-.06-.04-.09-.09-.09h-1.81zm-3 1c-.06 0-.09.04-.09.09v.91h2v-.91c0-.05-.04-.09-.09-.09h-1.81zm-3.09 2v1h8v-1h-8zm0 2v1.91c0 .05.04.09.09.09h1.81c.05 0 .09-.04.09-.09v-1.91h-2zm3 0v.91c0 .05.04.09.09.09h1.81c.05 0 .09-.04.09-.09v-.91h-2zm3 0v1.91c0 .05.04.09.09.09h1.81c.05 0 .09-.04.09-.09v-1.91h-2z" + } + }] +}; +exports.alignCenter = alignCenter; +var alignTop = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v1h8v-1h-8zm.09 2c-.06 0-.09.04-.09.09v4.81c0 .05.04.09.09.09h1.81c.05 0 .09-.04.09-.09v-4.81c0-.06-.04-.09-.09-.09h-1.81zm3 0c-.06 0-.09.04-.09.09v2.81c0 .05.04.09.09.09h1.81c.05 0 .09-.04.09-.09v-2.81c0-.06-.04-.09-.09-.09h-1.81zm3 0c-.05 0-.09.04-.09.09v4.81c0 .05.04.09.09.09h1.81c.05 0 .09-.04.09-.09v-4.81c0-.06-.04-.09-.09-.09h-1.81z" + } + }] +}; +exports.alignTop = alignTop; +var video = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M.5 0c-.28 0-.5.23-.5.5v4c0 .28.23.5.5.5h5c.28 0 .5-.22.5-.5v-1.5l1 1h1v-3h-1l-1 1v-1.5c0-.28-.22-.5-.5-.5h-5z", + "transform": "translate(0 1)" + } + }] +}; +exports.video = video; +var high = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3.34 0l-1.34 2h-2v4h2l1.34 2h.66v-8h-.66zm1.66 1v1c.17 0 .34.02.5.06.86.22 1.5 1 1.5 1.94s-.63 1.72-1.5 1.94c-.16.04-.33.06-.5.06v1c.25 0 .48-.04.72-.09h.03c1.3-.33 2.25-1.51 2.25-2.91 0-1.4-.95-2.58-2.25-2.91-.23-.06-.49-.09-.75-.09zm0 2v2c.09 0 .18-.01.25-.03.43-.11.75-.51.75-.97 0-.46-.31-.86-.75-.97-.08-.02-.17-.03-.25-.03z" + } + }] +}; +exports.high = high; +var low = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3.34 0l-1.34 2h-2v4h2l1.34 2h.66v-8h-.66zm1.66 3v2c.09 0 .18-.01.25-.03.43-.11.75-.51.75-.97 0-.46-.31-.86-.75-.97-.08-.02-.17-.03-.25-.03z", + "transform": "translate(1)" + } + }] +}; +exports.low = low; +var off = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3.34 0l-1.34 2h-2v4h2l1.34 2h.66v-8h-.66z", + "transform": "translate(2)" + } + }] +}; +exports.off = off; +var warning = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3.09 0c-.06 0-.1.04-.13.09l-2.94 6.81c-.02.05-.03.13-.03.19v.81c0 .05.04.09.09.09h6.81c.05 0 .09-.04.09-.09v-.81c0-.05-.01-.14-.03-.19l-2.94-6.81c-.02-.05-.07-.09-.13-.09h-.81zm-.09 3h1v2h-1v-2zm0 3h1v1h-1v-1z" + } + }] +}; +exports.warning = warning; +var wifi = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3.75 0c-1.38 0-2.66.4-3.75 1.09l.53.81c.93-.59 2.03-.91 3.22-.91 1.2 0 2.32.31 3.25.91l.53-.81c-1.09-.7-2.4-1.09-3.78-1.09zm0 3c-.79 0-1.5.23-2.13.63l.53.84c.47-.3 1-.47 1.59-.47.59 0 1.16.17 1.63.47l.53-.84c-.62-.39-1.37-.63-2.16-.63zm0 3c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z" + } + }] +}; +exports.wifi = wifi; +var wrench = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M5.5 0c-1.38 0-2.5 1.12-2.5 2.5 0 .32.08.62.19.91l-2.91 2.88c-.39.39-.39 1.05 0 1.44.2.2.46.28.72.28.26 0 .52-.09.72-.28l2.88-2.91c.28.11.58.19.91.19 1.38 0 2.5-1.12 2.5-2.5 0-.16 0-.32-.03-.47l-.97.97h-2v-2l.97-.97c-.15-.03-.31-.03-.47-.03zm-4.5 6.5c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5.22-.5.5-.5z" + } + }] +}; +exports.wrench = wrench; +var yen = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0l2.25 3h-2.25v1h3v1h-3v1h3v2h1v-2h3v-1h-3v-1h3v-1h-2.25l2.25-3h-1l-2.31 3h-.38l-2.31-3h-1z" + } + }] +}; +exports.yen = yen; +var inIconic = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3.5 0c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5c.61 0 1.19-.16 1.69-.44a1 1 0 0 0 .09.13l1 1.03a1.02 1.02 0 1 0 1.44-1.44l-1.03-1a1 1 0 0 0-.13-.09c.27-.5.44-1.08.44-1.69 0-1.93-1.57-3.5-3.5-3.5zm0 1c1.39 0 2.5 1.11 2.5 2.5 0 .59-.2 1.14-.53 1.56-.01.01-.02.02-.03.03a1 1 0 0 0-.06.03 1 1 0 0 0-.25.28c-.44.37-1.01.59-1.63.59-1.39 0-2.5-1.11-2.5-2.5s1.11-2.5 2.5-2.5zm-.5 1v1h-1v1h1v1h1v-1h1v-1h-1v-1h-1z" + } + }] +}; +exports.inIconic = inIconic; +var out = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3.5 0c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5c.61 0 1.19-.16 1.69-.44a1 1 0 0 0 .09.13l1 1.03a1.02 1.02 0 1 0 1.44-1.44l-1.03-1a1 1 0 0 0-.13-.09c.27-.5.44-1.08.44-1.69 0-1.93-1.57-3.5-3.5-3.5zm0 1c1.39 0 2.5 1.11 2.5 2.5 0 .59-.2 1.14-.53 1.56-.01.01-.02.02-.03.03a1 1 0 0 0-.06.03 1 1 0 0 0-.25.28c-.44.37-1.01.59-1.63.59-1.39 0-2.5-1.11-2.5-2.5s1.11-2.5 2.5-2.5zm-1.5 2v1h3v-1h-3z" + } + }] +}; +exports.out = out; \ No newline at end of file diff --git a/dist/iconic/infinity.js b/dist/iconic/infinity.js new file mode 100644 index 000000000..4be14c624 --- /dev/null +++ b/dist/iconic/infinity.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.infinity = void 0; +var infinity = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M2 0c-1.31 0-2 1.01-2 2s.69 2 2 2c.79 0 1.42-.56 2-1.22.58.66 1.19 1.22 2 1.22 1.31 0 2-1.01 2-2s-.69-2-2-2c-.81 0-1.42.56-2 1.22-.58-.66-1.21-1.22-2-1.22zm0 1c.42 0 .88.47 1.34 1-.46.53-.92 1-1.34 1-.74 0-1-.54-1-1 0-.46.26-1 1-1zm4 0c.74 0 1 .54 1 1 0 .46-.26 1-1 1-.43 0-.89-.47-1.34-1 .46-.53.91-1 1.34-1z", + "transform": "translate(0 2)" + } + }] +}; +exports.infinity = infinity; \ No newline at end of file diff --git a/dist/iconic/info.js b/dist/iconic/info.js new file mode 100644 index 000000000..e279caee2 --- /dev/null +++ b/dist/iconic/info.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.info = void 0; +var info = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3 0c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm-1.5 2.5c-.83 0-1.5.67-1.5 1.5h1c0-.28.22-.5.5-.5s.5.22.5.5-1 1.64-1 2.5c0 .86.67 1.5 1.5 1.5s1.5-.67 1.5-1.5h-1c0 .28-.22.5-.5.5s-.5-.22-.5-.5c0-.36 1-1.84 1-2.5 0-.81-.67-1.5-1.5-1.5z", + "transform": "translate(2)" + } + }] +}; +exports.info = info; \ No newline at end of file diff --git a/dist/iconic/intact.js b/dist/iconic/intact.js new file mode 100644 index 000000000..295b8d40a --- /dev/null +++ b/dist/iconic/intact.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.intact = void 0; +var intact = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M5.88.03c-.18.01-.36.03-.53.09-.27.1-.53.25-.75.47a.5.5 0 1 0 .69.69c.11-.11.24-.17.38-.22.35-.12.78-.07 1.06.22.39.39.39 1.04 0 1.44l-1.5 1.5c-.44.44-.8.48-1.06.47-.26-.01-.41-.13-.41-.13a.5.5 0 1 0-.5.88s.34.22.84.25c.5.03 1.2-.16 1.81-.78l1.5-1.5c.78-.78.78-2.04 0-2.81-.28-.28-.61-.45-.97-.53-.18-.04-.38-.04-.56-.03zm-2 2.31c-.5-.02-1.19.15-1.78.75l-1.5 1.5c-.78.78-.78 2.04 0 2.81.56.56 1.36.72 2.06.47.27-.1.53-.25.75-.47a.5.5 0 1 0-.69-.69c-.11.11-.24.17-.38.22-.35.12-.78.07-1.06-.22-.39-.39-.39-1.04 0-1.44l1.5-1.5c.4-.4.75-.45 1.03-.44.28.01.47.09.47.09a.5.5 0 1 0 .44-.88s-.34-.2-.84-.22z" + } + }] +}; +exports.intact = intact; \ No newline at end of file diff --git a/dist/iconic/italic.js b/dist/iconic/italic.js new file mode 100644 index 000000000..37d973d63 --- /dev/null +++ b/dist/iconic/italic.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.italic = void 0; +var italic = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M2 0v1h1.63l-.06.13-2 5-.34.88h-1.22v1h5v-1h-1.63l.06-.13 2-5 .34-.88h1.22v-1h-5z" + } + }] +}; +exports.italic = italic; \ No newline at end of file diff --git a/dist/iconic/key.js b/dist/iconic/key.js new file mode 100644 index 000000000..93db8f608 --- /dev/null +++ b/dist/iconic/key.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.key = void 0; +var key = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M5.5 0c-1.38 0-2.5 1.12-2.5 2.5 0 .16 0 .32.03.47l-3.03 3.03v2h3v-2h2v-1l.03-.03c.15.03.31.03.47.03 1.38 0 2.5-1.12 2.5-2.5s-1.12-2.5-2.5-2.5zm.5 1c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z" + } + }] +}; +exports.key = key; \ No newline at end of file diff --git a/dist/iconic/laptop.js b/dist/iconic/laptop.js new file mode 100644 index 000000000..f22815737 --- /dev/null +++ b/dist/iconic/laptop.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.laptop = void 0; +var laptop = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M1.34 0a.5.5 0 0 0-.34.5v3.5h-1v1.5c0 .28.22.5.5.5h7.010000000000001c.28 0 .5-.22.5-.5v-1.5h-1v-3.5a.5.5 0 0 0-.5-.5h-5a.5.5 0 0 0-.09 0 .5.5 0 0 0-.06 0zm.66 1h4v3h-1v1h-2v-1h-1v-3z", + "transform": "translate(0 1)" + } + }] +}; +exports.laptop = laptop; \ No newline at end of file diff --git a/dist/iconic/layers.js b/dist/iconic/layers.js new file mode 100644 index 000000000..4dcaa100a --- /dev/null +++ b/dist/iconic/layers.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.layers = void 0; +var layers = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v4h4v-4h-4zm5 2v3h-3v1h4v-4h-1zm2 2v3h-3v1h4v-4h-1z" + } + }] +}; +exports.layers = layers; \ No newline at end of file diff --git a/dist/iconic/left.js b/dist/iconic/left.js new file mode 100644 index 000000000..3ec1ddf09 --- /dev/null +++ b/dist/iconic/left.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.left = void 0; +var left = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v1h8v-1h-8zm0 2v1h6v-1h-6zm0 2v1h8v-1h-8zm0 2v1h6v-1h-6z" + } + }] +}; +exports.left = left; \ No newline at end of file diff --git a/dist/iconic/lightbulb.js b/dist/iconic/lightbulb.js new file mode 100644 index 000000000..1d3f665fa --- /dev/null +++ b/dist/iconic/lightbulb.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.lightbulb = void 0; +var lightbulb = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3.41 0a.5.5 0 0 0-.13.06l-3 1.5a.5.5 0 1 0 .44.88l3-1.5a.5.5 0 0 0-.31-.94zm1 1.5a.5.5 0 0 0-.13.06l-4 2a.5.5 0 1 0 .44.88l4-2a.5.5 0 0 0-.31-.94zm0 2a.5.5 0 0 0-.13.06l-3 1.5a.5.5 0 0 0 .22.94h2a.5.5 0 0 0 .16-1l1.06-.56a.5.5 0 0 0-.31-.94zm-2.56 3.5a.5.5 0 0 0 .16 1h1a.5.5 0 1 0 0-1h-1a.5.5 0 0 0-.09 0 .5.5 0 0 0-.06 0z", + "transform": "translate(1)" + } + }] +}; +exports.lightbulb = lightbulb; \ No newline at end of file diff --git a/dist/iconic/link.js b/dist/iconic/link.js new file mode 100644 index 000000000..c31f25241 --- /dev/null +++ b/dist/iconic/link.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.link = void 0; +var link = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v8h8v-2h-1v1h-6v-6h1v-1h-2zm4 0l1.5 1.5-2.5 2.5 1 1 2.5-2.5 1.5 1.5v-4h-4z" + } + }] +}; +exports.link = link; \ No newline at end of file diff --git a/dist/iconic/list.js b/dist/iconic/list.js new file mode 100644 index 000000000..4cca6737d --- /dev/null +++ b/dist/iconic/list.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.list = void 0; +var list = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M.5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm1.5 0v1h6v-1h-6zm-1.5 2c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm1.5 0v1h6v-1h-6zm-1.5 2c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm1.5 0v1h6v-1h-6zm-1.5 2c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm1.5 0v1h6v-1h-6z" + } + }] +}; +exports.list = list; \ No newline at end of file diff --git a/dist/iconic/location.js b/dist/iconic/location.js new file mode 100644 index 000000000..04e1c4e98 --- /dev/null +++ b/dist/iconic/location.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.location = void 0; +var location = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M8 0l-8 4 3 1 1 3 4-8z" + } + }] +}; +exports.location = location; \ No newline at end of file diff --git a/dist/iconic/locked.js b/dist/iconic/locked.js new file mode 100644 index 000000000..70e2ae028 --- /dev/null +++ b/dist/iconic/locked.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.locked = void 0; +var locked = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3 0c-1.1 0-2 .9-2 2v1h-1v4h6v-4h-1v-1c0-1.1-.9-2-2-2zm0 1c.56 0 1 .44 1 1v1h-2v-1c0-.56.44-1 1-1z", + "transform": "translate(1)" + } + }] +}; +exports.locked = locked; \ No newline at end of file diff --git a/dist/iconic/login.js b/dist/iconic/login.js new file mode 100644 index 000000000..911b42273 --- /dev/null +++ b/dist/iconic/login.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.login = void 0; +var login = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3 0v1h4v5h-4v1h5v-7h-5zm1 2v1h-4v1h4v1l2-1.5-2-1.5z" + } + }] +}; +exports.login = login; \ No newline at end of file diff --git a/dist/iconic/logout.js b/dist/iconic/logout.js new file mode 100644 index 000000000..d609d3354 --- /dev/null +++ b/dist/iconic/logout.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.logout = void 0; +var logout = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3 0v1h4v5h-4v1h5v-7h-5zm-1 2l-2 1.5 2 1.5v-1h4v-1h-4v-1z" + } + }] +}; +exports.logout = logout; \ No newline at end of file diff --git a/dist/iconic/loop.js b/dist/iconic/loop.js new file mode 100644 index 000000000..130bea1f5 --- /dev/null +++ b/dist/iconic/loop.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.loop = void 0; +var loop = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M6 0v1h-5c-.55 0-1 .45-1 1v1h1v-1h5v1l2-1.5-2-1.5zm-4 4l-2 1.5 2 1.5v-1h5c.55 0 1-.45 1-1v-1h-1v1h-5v-1z" + } + }] +}; +exports.loop = loop; \ No newline at end of file diff --git a/dist/iconic/low.js b/dist/iconic/low.js new file mode 100644 index 000000000..ec3c7297d --- /dev/null +++ b/dist/iconic/low.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.low = void 0; +var low = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3.34 0l-1.34 2h-2v4h2l1.34 2h.66v-8h-.66zm1.66 3v2c.09 0 .18-.01.25-.03.43-.11.75-.51.75-.97 0-.46-.31-.86-.75-.97-.08-.02-.17-.03-.25-.03z", + "transform": "translate(1)" + } + }] +}; +exports.low = low; \ No newline at end of file diff --git a/dist/iconic/map.js b/dist/iconic/map.js new file mode 100644 index 000000000..c0c6223bd --- /dev/null +++ b/dist/iconic/map.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.map = void 0; +var map = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v8h8v-2.38a.5.5 0 0 0 0-.22v-5.41h-8zm1 1h6v4h-1.5a.5.5 0 0 0-.09 0 .5.5 0 1 0 .09 1h1.5v1h-6v-6zm2.5 1c-.83 0-1.5.67-1.5 1.5 0 1 1.5 2.5 1.5 2.5s1.5-1.5 1.5-2.5c0-.83-.67-1.5-1.5-1.5zm0 1c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5.22-.5.5-.5z" + } + }] +}; +exports.map = map; \ No newline at end of file diff --git a/dist/iconic/mark.js b/dist/iconic/mark.js new file mode 100644 index 000000000..1736732e4 --- /dev/null +++ b/dist/iconic/mark.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.mark = void 0; +var mark = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M2.47 0c-.85 0-1.48.26-1.88.66-.4.4-.54.9-.59 1.28l1 .13c.04-.25.12-.5.31-.69.19-.19.49-.38 1.16-.38.66 0 1.02.16 1.22.34.2.18.28.4.28.66 0 .83-.34 1.06-.84 1.5-.5.44-1.16 1.08-1.16 2.25v.25h1v-.25c0-.83.31-1.06.81-1.5.5-.44 1.19-1.08 1.19-2.25 0-.48-.17-1.02-.59-1.41-.43-.39-1.07-.59-1.91-.59zm-.5 7v1h1v-1h-1z", + "transform": "translate(2)" + } + }] +}; +exports.mark = mark; \ No newline at end of file diff --git a/dist/iconic/marker.js b/dist/iconic/marker.js new file mode 100644 index 000000000..d9c9513f0 --- /dev/null +++ b/dist/iconic/marker.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.marker = void 0; +var marker = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3 0c-1.66 0-3 1.34-3 3 0 2 3 5 3 5s3-3 3-5c0-1.66-1.34-3-3-3zm0 1c1.11 0 2 .9 2 2 0 1.11-.89 2-2 2-1.1 0-2-.89-2-2 0-1.1.9-2 2-2z", + "transform": "translate(1)" + } + }] +}; +exports.marker = marker; \ No newline at end of file diff --git a/dist/iconic/menu.js b/dist/iconic/menu.js new file mode 100644 index 000000000..265354bd3 --- /dev/null +++ b/dist/iconic/menu.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.menu = void 0; +var menu = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v1h8v-1h-8zm0 2.97v1h8v-1h-8zm0 3v1h8v-1h-8z", + "transform": "translate(0 1)" + } + }] +}; +exports.menu = menu; \ No newline at end of file diff --git a/dist/iconic/microphone.js b/dist/iconic/microphone.js new file mode 100644 index 000000000..30b3a047e --- /dev/null +++ b/dist/iconic/microphone.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.microphone = void 0; +var microphone = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M2.91-.03a1 1 0 0 0-.13.03 1 1 0 0 0-.78 1v2a1 1 0 1 0 2 0v-2a1 1 0 0 0-1.09-1.03zm-2.56 2.03a.5.5 0 0 0-.34.5v.5c0 1.48 1.09 2.69 2.5 2.94v1.06h-.5c-.55 0-1 .45-1 1h4.01c0-.55-.45-1-1-1h-.5v-1.06c1.41-.24 2.5-1.46 2.5-2.94v-.5a.5.5 0 1 0-1 0v.5c0 1.11-.89 2-2 2-1.11 0-2-.89-2-2v-.5a.5.5 0 0 0-.59-.5.5.5 0 0 0-.06 0z", + "transform": "translate(1)" + } + }] +}; +exports.microphone = microphone; \ No newline at end of file diff --git a/dist/iconic/minus.js b/dist/iconic/minus.js new file mode 100644 index 000000000..7f787cf62 --- /dev/null +++ b/dist/iconic/minus.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.minus = void 0; +var minus = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v2h8v-2h-8z", + "transform": "translate(0 3)" + } + }] +}; +exports.minus = minus; \ No newline at end of file diff --git a/dist/iconic/monitor.js b/dist/iconic/monitor.js new file mode 100644 index 000000000..dbea3d0c2 --- /dev/null +++ b/dist/iconic/monitor.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.monitor = void 0; +var monitor = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M.34 0a.5.5 0 0 0-.34.5v5a.5.5 0 0 0 .5.5h2.5v1h-1c-.55 0-1 .45-1 1h6c0-.55-.45-1-1-1h-1v-1h2.5a.5.5 0 0 0 .5-.5v-5a.5.5 0 0 0-.5-.5h-7a.5.5 0 0 0-.09 0 .5.5 0 0 0-.06 0zm.66 1h6v4h-6v-4z" + } + }] +}; +exports.monitor = monitor; \ No newline at end of file diff --git a/dist/iconic/moon.js b/dist/iconic/moon.js new file mode 100644 index 000000000..85d5cc767 --- /dev/null +++ b/dist/iconic/moon.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.moon = void 0; +var moon = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M2.72 0c-1.58.53-2.72 2.02-2.72 3.78 0 2.21 1.79 4 4 4 1.76 0 3.25-1.14 3.78-2.72-.4.13-.83.22-1.28.22-2.21 0-4-1.79-4-4 0-.45.08-.88.22-1.28z" + } + }] +}; +exports.moon = moon; \ No newline at end of file diff --git a/dist/iconic/move.js b/dist/iconic/move.js new file mode 100644 index 000000000..0282e55f6 --- /dev/null +++ b/dist/iconic/move.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.move = void 0; +var move = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3.5 0l-1.5 1.5h1v1.5h-1.5v-1l-1.5 1.5 1.5 1.5v-1h1.5v1.5h-1l1.5 1.5 1.5-1.5h-1v-1.5h1.5v1l1.5-1.5-1.5-1.5v1h-1.5v-1.5h1l-1.5-1.5z" + } + }] +}; +exports.move = move; \ No newline at end of file diff --git a/dist/iconic/note.js b/dist/iconic/note.js new file mode 100644 index 000000000..70266b09a --- /dev/null +++ b/dist/iconic/note.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.note = void 0; +var note = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M8 0c-5 0-6 1-6 1v4.09c-.15-.05-.33-.09-.5-.09-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5v-3.97c.73-.23 1.99-.44 4-.5v2.06c-.15-.05-.33-.09-.5-.09-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5v-5.5z" + } + }] +}; +exports.note = note; \ No newline at end of file diff --git a/dist/iconic/off.js b/dist/iconic/off.js new file mode 100644 index 000000000..33dc5d6e3 --- /dev/null +++ b/dist/iconic/off.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.off = void 0; +var off = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3.34 0l-1.34 2h-2v4h2l1.34 2h.66v-8h-.66z", + "transform": "translate(2)" + } + }] +}; +exports.off = off; \ No newline at end of file diff --git a/dist/iconic/open.js b/dist/iconic/open.js new file mode 100644 index 000000000..1f4ab2cc0 --- /dev/null +++ b/dist/iconic/open.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.open = void 0; +var open = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 0l-4 2v6h8v-6l-4-2zm0 1.13l3 1.5v1.88l-3 1.5-3-1.5v-1.88l3-1.5zm-2 1.88v1l2 1 2-1v-1h-4z" + } + }] +}; +exports.open = open; \ No newline at end of file diff --git a/dist/iconic/out.js b/dist/iconic/out.js new file mode 100644 index 000000000..7ec5bf68a --- /dev/null +++ b/dist/iconic/out.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.out = void 0; +var out = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3.5 0c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5c.61 0 1.19-.16 1.69-.44a1 1 0 0 0 .09.13l1 1.03a1.02 1.02 0 1 0 1.44-1.44l-1.03-1a1 1 0 0 0-.13-.09c.27-.5.44-1.08.44-1.69 0-1.93-1.57-3.5-3.5-3.5zm0 1c1.39 0 2.5 1.11 2.5 2.5 0 .59-.2 1.14-.53 1.56-.01.01-.02.02-.03.03a1 1 0 0 0-.06.03 1 1 0 0 0-.25.28c-.44.37-1.01.59-1.63.59-1.39 0-2.5-1.11-2.5-2.5s1.11-2.5 2.5-2.5zm-1.5 2v1h3v-1h-3z" + } + }] +}; +exports.out = out; \ No newline at end of file diff --git a/dist/iconic/paperclip.js b/dist/iconic/paperclip.js new file mode 100644 index 000000000..dd9466a46 --- /dev/null +++ b/dist/iconic/paperclip.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.paperclip = void 0; +var paperclip = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M5 0c-.51 0-1.02.21-1.41.59l-2.78 2.72c-1.07 1.07-1.07 2.8 0 3.88 1.07 1.07 2.8 1.07 3.88 0l1.25-1.25-.69-.69-1.16 1.13-.09.13c-.69.69-1.81.69-2.5 0-.68-.68-.66-1.78 0-2.47l2.78-2.75c.39-.39 1.04-.39 1.44 0 .39.39.37 1.01 0 1.41l-2.5 2.47c-.1.1-.27.1-.38 0-.1-.1-.1-.27 0-.38l.06-.03.91-.94-.69-.69-.97.97c-.48.48-.48 1.27 0 1.75s1.27.49 1.75 0l2.5-2.44c.78-.78.78-2.04 0-2.81-.39-.39-.89-.59-1.41-.59z" + } + }] +}; +exports.paperclip = paperclip; \ No newline at end of file diff --git a/dist/iconic/pause.js b/dist/iconic/pause.js new file mode 100644 index 000000000..c3b7d4714 --- /dev/null +++ b/dist/iconic/pause.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pause = void 0; +var pause = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v6h2v-6h-2zm4 0v6h2v-6h-2z", + "transform": "translate(1 1)" + } + }] +}; +exports.pause = pause; \ No newline at end of file diff --git a/dist/iconic/pencil.js b/dist/iconic/pencil.js new file mode 100644 index 000000000..5fb061b31 --- /dev/null +++ b/dist/iconic/pencil.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pencil = void 0; +var pencil = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M6 0l-1 1 2 2 1-1-2-2zm-2 2l-4 4v2h2l4-4-2-2z" + } + }] +}; +exports.pencil = pencil; \ No newline at end of file diff --git a/dist/iconic/people.js b/dist/iconic/people.js new file mode 100644 index 000000000..a3f6bc0e8 --- /dev/null +++ b/dist/iconic/people.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.people = void 0; +var people = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M5.5 0c-.51 0-.95.35-1.22.88.45.54.72 1.28.72 2.13 0 .29-.03.55-.09.81.19.11.38.19.59.19.83 0 1.5-.9 1.5-2s-.67-2-1.5-2zm-3 1c-.83 0-1.5.9-1.5 2s.67 2 1.5 2 1.5-.9 1.5-2-.67-2-1.5-2zm4.75 3.16c-.43.51-1.02.82-1.69.84.27.38.44.84.44 1.34v.66h2v-1.66c0-.52-.31-.97-.75-1.19zm-6.5 1c-.44.22-.75.67-.75 1.19v1.66h5v-1.66c0-.52-.31-.97-.75-1.19-.45.53-1.06.84-1.75.84s-1.3-.32-1.75-.84z" + } + }] +}; +exports.people = people; \ No newline at end of file diff --git a/dist/iconic/person.js b/dist/iconic/person.js new file mode 100644 index 000000000..bbe997aea --- /dev/null +++ b/dist/iconic/person.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.person = void 0; +var person = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 0c-1.1 0-2 1.12-2 2.5s.9 2.5 2 2.5 2-1.12 2-2.5-.9-2.5-2-2.5zm-2.09 5c-1.06.05-1.91.92-1.91 2v1h8v-1c0-1.08-.84-1.95-1.91-2-.54.61-1.28 1-2.09 1-.81 0-1.55-.39-2.09-1z" + } + }] +}; +exports.person = person; \ No newline at end of file diff --git a/dist/iconic/phone.js b/dist/iconic/phone.js new file mode 100644 index 000000000..cb09f56a2 --- /dev/null +++ b/dist/iconic/phone.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.phone = void 0; +var phone = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M.19 0c-.11 0-.19.08-.19.19v7.63c0 .11.08.19.19.19h4.63c.11 0 .19-.08.19-.19v-7.63c0-.11-.08-.19-.19-.19h-4.63zm.81 1h3v5h-3v-5zm1.5 5.5c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5.22-.5.5-.5z", + "transform": "translate(1)" + } + }] +}; +exports.phone = phone; \ No newline at end of file diff --git a/dist/iconic/piece.js b/dist/iconic/piece.js new file mode 100644 index 000000000..872d6a98b --- /dev/null +++ b/dist/iconic/piece.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.piece = void 0; +var piece = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3 0c-.28 0-.54.1-.72.28-.18.18-.28.44-.28.72 0 .28.18.48.28.72.03.06.03.16.03.28h-2.31v6h2.31c0-.12-.01-.22-.03-.28-.1-.24-.28-.44-.28-.72 0-.28.1-.54.28-.72.18-.18.44-.28.72-.28.28 0 .54.1.72.28.18.18.28.44.28.72 0 .28-.18.48-.28.72-.03.06-.03.16-.03.28h2.31v-2.31c.12 0 .22.01.28.03.24.1.44.28.72.28.28 0 .54-.1.72-.28.18-.18.28-.44.28-.72 0-.28-.1-.54-.28-.72-.18-.18-.44-.28-.72-.28-.28 0-.48.18-.72.28-.06.03-.16.03-.28.03v-2.31h-2.31c0-.12.01-.22.03-.28.1-.24.28-.44.28-.72 0-.28-.1-.54-.28-.72-.18-.18-.44-.28-.72-.28z" + } + }] +}; +exports.piece = piece; \ No newline at end of file diff --git a/dist/iconic/pin.js b/dist/iconic/pin.js new file mode 100644 index 000000000..cb511b510 --- /dev/null +++ b/dist/iconic/pin.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pin = void 0; +var pin = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M1.34 0a.5.5 0 0 0 .16 1h.5v2h-1c-.55 0-1 .45-1 1h3v3l.44 1 .56-1v-3h3c0-.55-.45-1-1-1h-1v-2h.5a.5.5 0 1 0 0-1h-4a.5.5 0 0 0-.09 0 .5.5 0 0 0-.06 0z" + } + }] +}; +exports.pin = pin; \ No newline at end of file diff --git a/dist/iconic/play.js b/dist/iconic/play.js new file mode 100644 index 000000000..39d333d75 --- /dev/null +++ b/dist/iconic/play.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.play = void 0; +var play = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v6l6-3-6-3z", + "transform": "translate(1 1)" + } + }] +}; +exports.play = play; \ No newline at end of file diff --git a/dist/iconic/plus.js b/dist/iconic/plus.js new file mode 100644 index 000000000..933b71c1e --- /dev/null +++ b/dist/iconic/plus.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.plus = void 0; +var plus = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3 0v3h-3v2h3v3h2v-3h3v-2h-3v-3h-2z" + } + }] +}; +exports.plus = plus; \ No newline at end of file diff --git a/dist/iconic/pound.js b/dist/iconic/pound.js new file mode 100644 index 000000000..196868fc9 --- /dev/null +++ b/dist/iconic/pound.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pound = void 0; +var pound = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3 0c-.62 0-1.16.26-1.5.69-.34.43-.5.99-.5 1.56 0 .69.16 1.25.25 1.75h-1.25v1h1.22c-.11.45-.37.96-1.06 1.66l-.16.13v1.22h6v-1h-4.91c.64-.73.98-1.4 1.13-2h1.78v-1h-1.72c-.08-.68-.28-1.24-.28-1.75 0-.39.11-.73.28-.94.17-.21.37-.31.72-.31.39 0 .61.11.75.25s.25.36.25.75h1c0-.58-.17-1.1-.53-1.47-.37-.37-.89-.53-1.47-.53z", + "transform": "translate(1)" + } + }] +}; +exports.pound = pound; \ No newline at end of file diff --git a/dist/iconic/print.js b/dist/iconic/print.js new file mode 100644 index 000000000..f940dc89c --- /dev/null +++ b/dist/iconic/print.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.print = void 0; +var print = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M2 0v2h4v-2h-4zm-1.91 3c-.06 0-.09.04-.09.09v2.81c0 .05.04.09.09.09h.91v-2h6v2h.91c.05 0 .09-.04.09-.09v-2.81c0-.06-.04-.09-.09-.09h-7.81zm1.91 2v3h4v-3h-4z" + } + }] +}; +exports.print = print; \ No newline at end of file diff --git a/dist/iconic/project.js b/dist/iconic/project.js new file mode 100644 index 000000000..755977b35 --- /dev/null +++ b/dist/iconic/project.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.project = void 0; +var project = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v7h1v-7h-1zm7 0v7h1v-7h-1zm-5 1v1h2v-1h-2zm1 2v1h2v-1h-2zm1 2v1h2v-1h-2z" + } + }] +}; +exports.project = project; \ No newline at end of file diff --git a/dist/iconic/pulse.js b/dist/iconic/pulse.js new file mode 100644 index 000000000..f4b93a7ea --- /dev/null +++ b/dist/iconic/pulse.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pulse = void 0; +var pulse = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3.25 0l-.47 1.53-.78 2.56-.03-.06-.09-.34h-1.88v1h1.1600000000000001l.38 1.16.47 1.47.47-1.5.78-2.5.78 2.5.41 1.34.53-1.28.59-1.47.13.28h2.31v-1h-1.69l-.38-.75-.5-.97-.41 1.03-.47 1.19-.84-2.66-.47-1.53z" + } + }] +}; +exports.pulse = pulse; \ No newline at end of file diff --git a/dist/iconic/quoteSansLeft.js b/dist/iconic/quoteSansLeft.js new file mode 100644 index 000000000..22b49329c --- /dev/null +++ b/dist/iconic/quoteSansLeft.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.quoteSansLeft = void 0; +var quoteSansLeft = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v6l3-3v-3h-3zm5 0v6l3-3v-3h-3z", + "transform": "translate(0 1)" + } + }] +}; +exports.quoteSansLeft = quoteSansLeft; \ No newline at end of file diff --git a/dist/iconic/quoteSansRight.js b/dist/iconic/quoteSansRight.js new file mode 100644 index 000000000..078a1ea82 --- /dev/null +++ b/dist/iconic/quoteSansRight.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.quoteSansRight = void 0; +var quoteSansRight = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3 0l-3 3v3h3v-6zm5 0l-3 3v3h3v-6z", + "transform": "translate(0 1)" + } + }] +}; +exports.quoteSansRight = quoteSansRight; \ No newline at end of file diff --git a/dist/iconic/quoteSerifLeft.js b/dist/iconic/quoteSerifLeft.js new file mode 100644 index 000000000..3dbe6f650 --- /dev/null +++ b/dist/iconic/quoteSerifLeft.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.quoteSerifLeft = void 0; +var quoteSerifLeft = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3 0c-1.65 0-3 1.35-3 3v3h3v-3h-2c0-1.11.89-2 2-2v-1zm5 0c-1.65 0-3 1.35-3 3v3h3v-3h-2c0-1.11.89-2 2-2v-1z", + "transform": "translate(0 1)" + } + }] +}; +exports.quoteSerifLeft = quoteSerifLeft; \ No newline at end of file diff --git a/dist/iconic/quoteSerifRight.js b/dist/iconic/quoteSerifRight.js new file mode 100644 index 000000000..5608dd5ac --- /dev/null +++ b/dist/iconic/quoteSerifRight.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.quoteSerifRight = void 0; +var quoteSerifRight = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v3h2c0 1.11-.89 2-2 2v1c1.65 0 3-1.35 3-3v-3h-3zm5 0v3h2c0 1.11-.89 2-2 2v1c1.65 0 3-1.35 3-3v-3h-3z", + "transform": "translate(0 1)" + } + }] +}; +exports.quoteSerifRight = quoteSerifRight; \ No newline at end of file diff --git a/dist/iconic/rain.js b/dist/iconic/rain.js new file mode 100644 index 000000000..c9601c371 --- /dev/null +++ b/dist/iconic/rain.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.rain = void 0; +var rain = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4.5 0c-1.21 0-2.27.86-2.5 2-1.1 0-2 .9-2 2 0 .53.2.99.53 1.34.26-.22.6-.34.97-.34.2 0 .39.05.56.13.17-.64.74-1.13 1.44-1.13.69 0 1.27.49 1.44 1.13.17-.07.36-.13.56-.13.63 0 1.15.39 1.38.94.64-.17 1.13-.75 1.13-1.44 0-.65-.42-1.29-1-1.5v-.5c0-1.38-1.12-2.5-2.5-2.5zm-1.16 5a.5.5 0 0 0-.34.5v2a.5.5 0 1 0 1 0v-2a.5.5 0 0 0-.59-.5.5.5 0 0 0-.06 0zm-2 1a.5.5 0 0 0-.34.5v1a.5.5 0 1 0 1 0v-1a.5.5 0 0 0-.59-.5.5.5 0 0 0-.06 0zm4 0a.5.5 0 0 0-.34.5v1a.5.5 0 1 0 1 0v-1a.5.5 0 0 0-.59-.5.5.5 0 0 0-.06 0z" + } + }] +}; +exports.rain = rain; \ No newline at end of file diff --git a/dist/iconic/random.js b/dist/iconic/random.js new file mode 100644 index 000000000..1b1f7f7e1 --- /dev/null +++ b/dist/iconic/random.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.random = void 0; +var random = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M6 0v1h-.5c-.35 0-.56.1-.78.38l-1.41 1.78-1.53-1.78c-.22-.26-.44-.38-.78-.38h-1v1h1c-.05 0 .01.04.03.03l1.63 1.91-1.66 2.06h-1v1h1c.35 0 .56-.1.78-.38l1.53-1.91 1.66 1.91c.22.26.44.38.78.38h.25v1l2-1.5-2-1.5v1h-.22c-.01-.01-.05-.04-.06-.03l-1.75-2.06 1.53-1.91h.5v1l2-1.5-2-1.5z" + } + }] +}; +exports.random = random; \ No newline at end of file diff --git a/dist/iconic/record.js b/dist/iconic/record.js new file mode 100644 index 000000000..6f66516d1 --- /dev/null +++ b/dist/iconic/record.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.record = void 0; +var record = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3 0c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z", + "transform": "translate(1 1)" + } + }] +}; +exports.record = record; \ No newline at end of file diff --git a/dist/iconic/redo.js b/dist/iconic/redo.js new file mode 100644 index 000000000..8df35c7e5 --- /dev/null +++ b/dist/iconic/redo.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.redo = void 0; +var redo = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3.5 0c-1.93 0-3.5 1.57-3.5 3.5 0-1.38 1.12-2.5 2.5-2.5s2.5 1.12 2.5 2.5v.5h-1l2 2 2-2h-1v-.5c0-1.93-1.57-3.5-3.5-3.5z", + "transform": "translate(0 1)" + } + }] +}; +exports.redo = redo; \ No newline at end of file diff --git a/dist/iconic/reload.js b/dist/iconic/reload.js new file mode 100644 index 000000000..d854315a1 --- /dev/null +++ b/dist/iconic/reload.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.reload = void 0; +var reload = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 0c-2.2 0-4 1.8-4 4s1.8 4 4 4c1.1 0 2.12-.43 2.84-1.16l-.72-.72c-.54.54-1.29.88-2.13.88-1.66 0-3-1.34-3-3s1.34-3 3-3c.83 0 1.55.36 2.09.91l-1.09 1.09h3v-3l-1.19 1.19c-.72-.72-1.71-1.19-2.81-1.19z" + } + }] +}; +exports.reload = reload; \ No newline at end of file diff --git a/dist/iconic/rich.js b/dist/iconic/rich.js new file mode 100644 index 000000000..adf399202 --- /dev/null +++ b/dist/iconic/rich.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.rich = void 0; +var rich = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v3h3v-3h-3zm4 0v1h4v-1h-4zm0 2v1h3v-1h-3zm-4 2v3h3v-3h-3zm4 0v1h4v-1h-4zm0 2v1h3v-1h-3z" + } + }] +}; +exports.rich = rich; \ No newline at end of file diff --git a/dist/iconic/right.js b/dist/iconic/right.js new file mode 100644 index 000000000..f3abe185a --- /dev/null +++ b/dist/iconic/right.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.right = void 0; +var right = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v1h8v-1h-8zm2 2v1h6v-1h-6zm-2 2v1h8v-1h-8zm2 2v1h6v-1h-6z" + } + }] +}; +exports.right = right; \ No newline at end of file diff --git a/dist/iconic/rss.js b/dist/iconic/rss.js new file mode 100644 index 000000000..ccf54b65a --- /dev/null +++ b/dist/iconic/rss.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.rss = void 0; +var rss = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M1 0v1c3.32 0 6 2.68 6 6h1c0-3.86-3.14-7-7-7zm0 2v1c2.21 0 4 1.79 4 4h1c0-2.76-2.24-5-5-5zm0 2v1c1.11 0 2 .89 2 2h1c0-1.65-1.35-3-3-3zm0 2c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z" + } + }] +}; +exports.rss = rss; \ No newline at end of file diff --git a/dist/iconic/script.js b/dist/iconic/script.js new file mode 100644 index 000000000..88ef2fb24 --- /dev/null +++ b/dist/iconic/script.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.script = void 0; +var script = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3 0c-.55 0-1 .45-1 1v5.5c0 .28-.22.5-.5.5s-.5-.22-.5-.5v-1.5h-1v2c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-3h-4v-2.5c0-.28.22-.5.5-.5s.5.22.5.5v1.5h4v-2c0-.55-.45-1-1-1h-4z" + } + }] +}; +exports.script = script; \ No newline at end of file diff --git a/dist/iconic/share.js b/dist/iconic/share.js new file mode 100644 index 000000000..26019cc74 --- /dev/null +++ b/dist/iconic/share.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.share = void 0; +var share = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M5 0v2c-4 0-5 2.05-5 5 .52-1.98 2-3 4-3h1v2l3-3.16-3-2.84z" + } + }] +}; +exports.share = share; \ No newline at end of file diff --git a/dist/iconic/shield.js b/dist/iconic/shield.js new file mode 100644 index 000000000..4fa16362e --- /dev/null +++ b/dist/iconic/shield.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.shield = void 0; +var shield = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 0l-.19.09-3.5 1.47-.31.13v.31c0 1.66.67 3.12 1.47 4.19.4.53.83.97 1.25 1.28.42.31.83.53 1.28.53.46 0 .86-.22 1.28-.53.42-.31.85-.75 1.25-1.28.8-1.07 1.47-2.53 1.47-4.19v-.31l-.31-.13-3.5-1.47-.19-.09zm0 1.09v5.91c-.04 0-.33-.07-.66-.31s-.71-.63-1.06-1.09c-.64-.85-1.14-2.03-1.22-3.28l2.94-1.22z" + } + }] +}; +exports.shield = shield; \ No newline at end of file diff --git a/dist/iconic/signal.js b/dist/iconic/signal.js new file mode 100644 index 000000000..f1b994685 --- /dev/null +++ b/dist/iconic/signal.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.signal = void 0; +var signal = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M6 0v8h1v-8h-1zm-2 1v7h1v-7h-1zm-2 2v5h1v-5h-1zm-2 2v3h1v-3h-1z" + } + }] +}; +exports.signal = signal; \ No newline at end of file diff --git a/dist/iconic/signpost.js b/dist/iconic/signpost.js new file mode 100644 index 000000000..b4023f87c --- /dev/null +++ b/dist/iconic/signpost.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.signpost = void 0; +var signpost = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3 0v1h-2l-1 1 1 1h2v5h1v-4h2l1-1-1-1h-2v-2h-1z" + } + }] +}; +exports.signpost = signpost; \ No newline at end of file diff --git a/dist/iconic/skipBackward.js b/dist/iconic/skipBackward.js new file mode 100644 index 000000000..09221bd75 --- /dev/null +++ b/dist/iconic/skipBackward.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.skipBackward = void 0; +var skipBackward = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 0l-4 3 4 3v-6zm0 3l4 3v-6l-4 3z", + "transform": "translate(0 1)" + } + }] +}; +exports.skipBackward = skipBackward; \ No newline at end of file diff --git a/dist/iconic/skipForward.js b/dist/iconic/skipForward.js new file mode 100644 index 000000000..edd0b768a --- /dev/null +++ b/dist/iconic/skipForward.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.skipForward = void 0; +var skipForward = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v6l4-3-4-3zm4 3v3l4-3-4-3v3z", + "transform": "translate(0 1)" + } + }] +}; +exports.skipForward = skipForward; \ No newline at end of file diff --git a/dist/iconic/slr.js b/dist/iconic/slr.js new file mode 100644 index 000000000..ceaa9611b --- /dev/null +++ b/dist/iconic/slr.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.slr = void 0; +var slr = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4.09 0c-.05 0-.1.04-.13.09l-.94 1.81c-.02.05-.07.09-.13.09h-1.41c-.83 0-1.5.67-1.5 1.5v4.41c0 .05.04.09.09.09h7.81c.05 0 .09-.04.09-.09v-5.81c0-.06-.04-.09-.09-.09h-.81c-.05 0-.1-.04-.13-.09l-.94-1.81c-.03-.05-.07-.09-.13-.09h-1.81zm-2.59 3c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5.22-.5.5-.5zm3.5 0c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm0 1c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z" + } + }] +}; +exports.slr = slr; \ No newline at end of file diff --git a/dist/iconic/spectrum.js b/dist/iconic/spectrum.js new file mode 100644 index 000000000..7bbdd64fb --- /dev/null +++ b/dist/iconic/spectrum.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.spectrum = void 0; +var spectrum = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 0v8h1v-8h-1zm-2 1v6h1v-6h-1zm4 1v4h1v-4h-1zm-6 1v2h1v-2h-1z" + } + }] +}; +exports.spectrum = spectrum; \ No newline at end of file diff --git a/dist/iconic/spreadsheet.js b/dist/iconic/spreadsheet.js new file mode 100644 index 000000000..45d2aaa99 --- /dev/null +++ b/dist/iconic/spreadsheet.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.spreadsheet = void 0; +var spreadsheet = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M.75 0c-.41 0-.75.34-.75.75v5.5c0 .41.34.75.75.75h6.5c.41 0 .75-.34.75-.75v-5.5c0-.41-.34-.75-.75-.75h-6.5zm.25 1h1v1h-1v-1zm2 0h4v1h-4v-1zm-2 2h1v1h-1v-1zm2 0h4v1h-4v-1zm-2 2h1v1h-1v-1zm2 0h4v1h-4v-1z" + } + }] +}; +exports.spreadsheet = spreadsheet; \ No newline at end of file diff --git a/dist/iconic/square.js b/dist/iconic/square.js new file mode 100644 index 000000000..028e0f9ab --- /dev/null +++ b/dist/iconic/square.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.square = void 0; +var square = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M.09 0c-.06 0-.09.04-.09.09v5.81c0 .05.04.09.09.09h5.91l2 2v-7.91c0-.06-.04-.09-.09-.09h-7.81z" + } + }] +}; +exports.square = square; \ No newline at end of file diff --git a/dist/iconic/standby.js b/dist/iconic/standby.js new file mode 100644 index 000000000..feb3b346c --- /dev/null +++ b/dist/iconic/standby.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.standby = void 0; +var standby = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3 0v4h1v-4h-1zm-1.28 1.44l-.38.31c-.81.64-1.34 1.64-1.34 2.75 0 1.93 1.57 3.5 3.5 3.5s3.5-1.57 3.5-3.5c0-1.11-.53-2.11-1.34-2.75l-.38-.31-.63.78.38.31c.58.46.97 1.17.97 1.97 0 1.39-1.11 2.5-2.5 2.5s-2.5-1.11-2.5-2.5c0-.8.36-1.51.94-1.97l.41-.31-.63-.78z" + } + }] +}; +exports.standby = standby; \ No newline at end of file diff --git a/dist/iconic/star.js b/dist/iconic/star.js new file mode 100644 index 000000000..a18d6d510 --- /dev/null +++ b/dist/iconic/star.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.star = void 0; +var star = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 0l-1 3h-3l2.5 2-1 3 2.5-2 2.5 2-1-3 2.5-2h-3l-1-3z" + } + }] +}; +exports.star = star; \ No newline at end of file diff --git a/dist/iconic/stepBackward.js b/dist/iconic/stepBackward.js new file mode 100644 index 000000000..20606d955 --- /dev/null +++ b/dist/iconic/stepBackward.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.stepBackward = void 0; +var stepBackward = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v6h2v-6h-2zm2 3l5 3v-6l-5 3z", + "transform": "translate(0 1)" + } + }] +}; +exports.stepBackward = stepBackward; \ No newline at end of file diff --git a/dist/iconic/stepForward.js b/dist/iconic/stepForward.js new file mode 100644 index 000000000..e3f8dcfb5 --- /dev/null +++ b/dist/iconic/stepForward.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.stepForward = void 0; +var stepForward = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v6l5-3-5-3zm5 3v3h2v-6h-2v3z", + "transform": "translate(0 1)" + } + }] +}; +exports.stepForward = stepForward; \ No newline at end of file diff --git a/dist/iconic/stop.js b/dist/iconic/stop.js new file mode 100644 index 000000000..45aa406be --- /dev/null +++ b/dist/iconic/stop.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.stop = void 0; +var stop = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v6h6v-6h-6z", + "transform": "translate(1 1)" + } + }] +}; +exports.stop = stop; \ No newline at end of file diff --git a/dist/iconic/sun.js b/dist/iconic/sun.js new file mode 100644 index 000000000..a9315f170 --- /dev/null +++ b/dist/iconic/sun.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.sun = void 0; +var sun = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5 1.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-6 2.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z" + } + }] +}; +exports.sun = sun; \ No newline at end of file diff --git a/dist/iconic/tablet.js b/dist/iconic/tablet.js new file mode 100644 index 000000000..06205cbc7 --- /dev/null +++ b/dist/iconic/tablet.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.tablet = void 0; +var tablet = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M.34 0c-.18 0-.34.16-.34.34v7.31c0 .18.16.34.34.34h6.31c.18 0 .34-.16.34-.34v-7.31c0-.18-.16-.34-.34-.34h-6.31zm.66 1h5v5h-5v-5zm2.5 5.5c.38 0 .63.42.44.75s-.68.33-.88 0c-.19-.33.05-.75.44-.75z" + } + }] +}; +exports.tablet = tablet; \ No newline at end of file diff --git a/dist/iconic/tag.js b/dist/iconic/tag.js new file mode 100644 index 000000000..207e30df2 --- /dev/null +++ b/dist/iconic/tag.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.tag = void 0; +var tag = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v3l5 5 3-3-5-5h-3zm2 1c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z" + } + }] +}; +exports.tag = tag; \ No newline at end of file diff --git a/dist/iconic/tags.js b/dist/iconic/tags.js new file mode 100644 index 000000000..fe60cb1eb --- /dev/null +++ b/dist/iconic/tags.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.tags = void 0; +var tags = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v2l3 3 1.5-1.5.5-.5-2-2-1-1h-2zm3.41 0l3 3-1.19 1.22.78.78 2-2-3-3h-1.59zm-1.91 1c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5.22-.5.5-.5z", + "transform": "translate(0 1)" + } + }] +}; +exports.tags = tags; \ No newline at end of file diff --git a/dist/iconic/target.js b/dist/iconic/target.js new file mode 100644 index 000000000..345918c0b --- /dev/null +++ b/dist/iconic/target.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.target = void 0; +var target = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 0c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm0 1c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm0 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 1c.56 0 1 .44 1 1s-.44 1-1 1-1-.44-1-1 .44-1 1-1z" + } + }] +}; +exports.target = target; \ No newline at end of file diff --git a/dist/iconic/task.js b/dist/iconic/task.js new file mode 100644 index 000000000..406bee45a --- /dev/null +++ b/dist/iconic/task.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.task = void 0; +var task = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v7h7v-3.59l-1 1v1.59h-5v-5h3.59l1-1h-5.59zm7 0l-3 3-1-1-1 1 2 2 4-4-1-1z" + } + }] +}; +exports.task = task; \ No newline at end of file diff --git a/dist/iconic/terminal.js b/dist/iconic/terminal.js new file mode 100644 index 000000000..3959dc385 --- /dev/null +++ b/dist/iconic/terminal.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.terminal = void 0; +var terminal = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M.09 0c-.06 0-.09.04-.09.09v7.81c0 .05.04.09.09.09h7.81c.05 0 .09-.04.09-.09v-7.81c0-.06-.04-.09-.09-.09h-7.81zm1.41.78l1.72 1.72-1.72 1.72-.72-.72 1-1-1-1 .72-.72zm2.5 2.22h3v1h-3v-1z" + } + }] +}; +exports.terminal = terminal; \ No newline at end of file diff --git a/dist/iconic/text.js b/dist/iconic/text.js new file mode 100644 index 000000000..6d53fe8b4 --- /dev/null +++ b/dist/iconic/text.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.text = void 0; +var text = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v2h.5c0-.55.45-1 1-1h1.5v5.5c0 .28-.22.5-.5.5h-.5v1h4v-1h-.5c-.28 0-.5-.22-.5-.5v-5.5h1.5c.55 0 1 .45 1 1h.5v-2h-8z" + } + }] +}; +exports.text = text; \ No newline at end of file diff --git a/dist/iconic/thickBottom.js b/dist/iconic/thickBottom.js new file mode 100644 index 000000000..a9b94faea --- /dev/null +++ b/dist/iconic/thickBottom.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.thickBottom = void 0; +var thickBottom = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M2 0v5h-2l3.03 3 2.97-3h-2v-5h-2z", + "transform": "translate(1)" + } + }] +}; +exports.thickBottom = thickBottom; \ No newline at end of file diff --git a/dist/iconic/thickLeft.js b/dist/iconic/thickLeft.js new file mode 100644 index 000000000..6f9e0ecf6 --- /dev/null +++ b/dist/iconic/thickLeft.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.thickLeft = void 0; +var thickLeft = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3 0l-3 3.03 3 2.97v-2h5v-2h-5v-2z", + "transform": "translate(0 1)" + } + }] +}; +exports.thickLeft = thickLeft; \ No newline at end of file diff --git a/dist/iconic/thickRight.js b/dist/iconic/thickRight.js new file mode 100644 index 000000000..514335f4a --- /dev/null +++ b/dist/iconic/thickRight.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.thickRight = void 0; +var thickRight = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M5 0v2h-5v2h5v2l3-3.03-3-2.97z", + "transform": "translate(0 1)" + } + }] +}; +exports.thickRight = thickRight; \ No newline at end of file diff --git a/dist/iconic/thickTop.js b/dist/iconic/thickTop.js new file mode 100644 index 000000000..801e289b0 --- /dev/null +++ b/dist/iconic/thickTop.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.thickTop = void 0; +var thickTop = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M2.97 0l-2.97 3h2v5h2v-5h2l-3.03-3z", + "transform": "translate(1)" + } + }] +}; +exports.thickTop = thickTop; \ No newline at end of file diff --git a/dist/iconic/threeUp.js b/dist/iconic/threeUp.js new file mode 100644 index 000000000..9c924069a --- /dev/null +++ b/dist/iconic/threeUp.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.threeUp = void 0; +var threeUp = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v2h2v-2h-2zm3 0v2h2v-2h-2zm3 0v2h2v-2h-2zm-6 3v2h2v-2h-2zm3 0v2h2v-2h-2zm3 0v2h2v-2h-2zm-6 3v2h2v-2h-2zm3 0v2h2v-2h-2zm3 0v2h2v-2h-2z" + } + }] +}; +exports.threeUp = threeUp; \ No newline at end of file diff --git a/dist/iconic/timer.js b/dist/iconic/timer.js new file mode 100644 index 000000000..a22071b8b --- /dev/null +++ b/dist/iconic/timer.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.timer = void 0; +var timer = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M2 0v1h1v.03c-1.7.24-3 1.71-3 3.47 0 1.93 1.57 3.5 3.5 3.5s3.5-1.57 3.5-3.5c0-.45-.1-.87-.25-1.25l-.91.38c.11.29.16.57.16.88 0 1.39-1.11 2.5-2.5 2.5s-2.5-1.11-2.5-2.5 1.11-2.5 2.5-2.5c.3 0 .59.05.88.16l.34-.94c-.23-.08-.47-.12-.72-.16v-.06h1v-1h-3zm5 1.16s-3.65 2.81-3.84 3c-.19.2-.19.49 0 .69.19.2.49.2.69 0 .2-.2 3.16-3.69 3.16-3.69z" + } + }] +}; +exports.timer = timer; \ No newline at end of file diff --git a/dist/iconic/top.js b/dist/iconic/top.js new file mode 100644 index 000000000..ba6c2c6b7 --- /dev/null +++ b/dist/iconic/top.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.top = void 0; +var top = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M2.47 0l-2.47 3h2v5h1v-5h2l-2.53-3z", + "transform": "translate(1)" + } + }] +}; +exports.top = top; \ No newline at end of file diff --git a/dist/iconic/transfer.js b/dist/iconic/transfer.js new file mode 100644 index 000000000..47ed85bd0 --- /dev/null +++ b/dist/iconic/transfer.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.transfer = void 0; +var transfer = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M6 0v1h-6v1h6v1l2-1.5-2-1.5zm-4 4l-2 1.5 2 1.5v-1h6v-1h-6v-1z" + } + }] +}; +exports.transfer = transfer; \ No newline at end of file diff --git a/dist/iconic/transferDownload.js b/dist/iconic/transferDownload.js new file mode 100644 index 000000000..476206722 --- /dev/null +++ b/dist/iconic/transferDownload.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.transferDownload = void 0; +var transferDownload = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3 0v3h-2l3 3 3-3h-2v-3h-2zm-3 7v1h8v-1h-8z" + } + }] +}; +exports.transferDownload = transferDownload; \ No newline at end of file diff --git a/dist/iconic/transferUpload.js b/dist/iconic/transferUpload.js new file mode 100644 index 000000000..d899b750c --- /dev/null +++ b/dist/iconic/transferUpload.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.transferUpload = void 0; +var transferUpload = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v1h8v-1h-8zm4 2l-3 3h2v3h2v-3h2l-3-3z" + } + }] +}; +exports.transferUpload = transferUpload; \ No newline at end of file diff --git a/dist/iconic/trash.js b/dist/iconic/trash.js new file mode 100644 index 000000000..41983f70b --- /dev/null +++ b/dist/iconic/trash.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.trash = void 0; +var trash = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3 0c-.55 0-1 .45-1 1h-1c-.55 0-1 .45-1 1h7c0-.55-.45-1-1-1h-1c0-.55-.45-1-1-1h-1zm-2 3v4.81c0 .11.08.19.19.19h4.63c.11 0 .19-.08.19-.19v-4.81h-1v3.5c0 .28-.22.5-.5.5s-.5-.22-.5-.5v-3.5h-1v3.5c0 .28-.22.5-.5.5s-.5-.22-.5-.5v-3.5h-1z" + } + }] +}; +exports.trash = trash; \ No newline at end of file diff --git a/dist/iconic/twoUp.js b/dist/iconic/twoUp.js new file mode 100644 index 000000000..e22645c85 --- /dev/null +++ b/dist/iconic/twoUp.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.twoUp = void 0; +var twoUp = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v3h3v-3h-3zm5 0v3h3v-3h-3zm-5 5v3h3v-3h-3zm5 0v3h3v-3h-3z" + } + }] +}; +exports.twoUp = twoUp; \ No newline at end of file diff --git a/dist/iconic/underline.js b/dist/iconic/underline.js new file mode 100644 index 000000000..9fbd62397 --- /dev/null +++ b/dist/iconic/underline.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.underline = void 0; +var underline = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M1 0v4c0 1.1 1.12 2 2.5 2h.5c1.1 0 2-.9 2-2v-4h-1v4c0 .55-.45 1-1 1s-1-.45-1-1v-4h-2zm-1 7v1h7v-1h-7z" + } + }] +}; +exports.underline = underline; \ No newline at end of file diff --git a/dist/iconic/undo.js b/dist/iconic/undo.js new file mode 100644 index 000000000..2192a7122 --- /dev/null +++ b/dist/iconic/undo.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.undo = void 0; +var undo = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4.5 0c-1.93 0-3.5 1.57-3.5 3.5v.5h-1l2 2 2-2h-1v-.5c0-1.38 1.12-2.5 2.5-2.5s2.5 1.12 2.5 2.5c0-1.93-1.57-3.5-3.5-3.5z", + "transform": "translate(0 1)" + } + }] +}; +exports.undo = undo; \ No newline at end of file diff --git a/dist/iconic/unlocked.js b/dist/iconic/unlocked.js new file mode 100644 index 000000000..1f3adb27d --- /dev/null +++ b/dist/iconic/unlocked.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.unlocked = void 0; +var unlocked = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3 0c-1.1 0-2 .9-2 2h1c0-.56.44-1 1-1s1 .44 1 1v2h-4v4h6v-4h-1v-2c0-1.1-.9-2-2-2z", + "transform": "translate(1)" + } + }] +}; +exports.unlocked = unlocked; \ No newline at end of file diff --git a/dist/iconic/up.js b/dist/iconic/up.js new file mode 100644 index 000000000..b711effec --- /dev/null +++ b/dist/iconic/up.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.up = void 0; +var up = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v1h8v-1h-8zm4 3l-2 2h4l-2-2zm-4 3v2h8v-2h-8z" + } + }] +}; +exports.up = up; \ No newline at end of file diff --git a/dist/iconic/upload.js b/dist/iconic/upload.js new file mode 100644 index 000000000..557f776dd --- /dev/null +++ b/dist/iconic/upload.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.upload = void 0; +var upload = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4.5 0c-1.21 0-2.27.86-2.5 2-1.1 0-2 .9-2 2 0 .37.11.71.28 1h2.22l2-2 2 2h1.41c.06-.16.09-.32.09-.5 0-.65-.42-1.29-1-1.5v-.5c0-1.38-1.12-2.5-2.5-2.5zm0 4.5l-2.5 2.5h2v.5a.5.5 0 1 0 1 0v-.5h2l-2.5-2.5z" + } + }] +}; +exports.upload = upload; \ No newline at end of file diff --git a/dist/iconic/video.js b/dist/iconic/video.js new file mode 100644 index 000000000..a839f3571 --- /dev/null +++ b/dist/iconic/video.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.video = void 0; +var video = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M.5 0c-.28 0-.5.23-.5.5v4c0 .28.23.5.5.5h5c.28 0 .5-.22.5-.5v-1.5l1 1h1v-3h-1l-1 1v-1.5c0-.28-.22-.5-.5-.5h-5z", + "transform": "translate(0 1)" + } + }] +}; +exports.video = video; \ No newline at end of file diff --git a/dist/iconic/warning.js b/dist/iconic/warning.js new file mode 100644 index 000000000..02d9a6f98 --- /dev/null +++ b/dist/iconic/warning.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.warning = void 0; +var warning = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3.09 0c-.06 0-.1.04-.13.09l-2.94 6.81c-.02.05-.03.13-.03.19v.81c0 .05.04.09.09.09h6.81c.05 0 .09-.04.09-.09v-.81c0-.05-.01-.14-.03-.19l-2.94-6.81c-.02-.05-.07-.09-.13-.09h-.81zm-.09 3h1v2h-1v-2zm0 3h1v1h-1v-1z" + } + }] +}; +exports.warning = warning; \ No newline at end of file diff --git a/dist/iconic/width.js b/dist/iconic/width.js new file mode 100644 index 000000000..396319f63 --- /dev/null +++ b/dist/iconic/width.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.width = void 0; +var width = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3 0l-3 2.5 3 2.5v-2h2v2l3-2.5-3-2.5v2h-2v-2z", + "transform": "translate(0 1)" + } + }] +}; +exports.width = width; \ No newline at end of file diff --git a/dist/iconic/wifi.js b/dist/iconic/wifi.js new file mode 100644 index 000000000..d866f0f6a --- /dev/null +++ b/dist/iconic/wifi.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.wifi = void 0; +var wifi = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M3.75 0c-1.38 0-2.66.4-3.75 1.09l.53.81c.93-.59 2.03-.91 3.22-.91 1.2 0 2.32.31 3.25.91l.53-.81c-1.09-.7-2.4-1.09-3.78-1.09zm0 3c-.79 0-1.5.23-2.13.63l.53.84c.47-.3 1-.47 1.59-.47.59 0 1.16.17 1.63.47l.53-.84c-.62-.39-1.37-.63-2.16-.63zm0 3c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z" + } + }] +}; +exports.wifi = wifi; \ No newline at end of file diff --git a/dist/iconic/wrench.js b/dist/iconic/wrench.js new file mode 100644 index 000000000..541c5a533 --- /dev/null +++ b/dist/iconic/wrench.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.wrench = void 0; +var wrench = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M5.5 0c-1.38 0-2.5 1.12-2.5 2.5 0 .32.08.62.19.91l-2.91 2.88c-.39.39-.39 1.05 0 1.44.2.2.46.28.72.28.26 0 .52-.09.72-.28l2.88-2.91c.28.11.58.19.91.19 1.38 0 2.5-1.12 2.5-2.5 0-.16 0-.32-.03-.47l-.97.97h-2v-2l.97-.97c-.15-.03-.31-.03-.47-.03zm-4.5 6.5c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5.22-.5.5-.5z" + } + }] +}; +exports.wrench = wrench; \ No newline at end of file diff --git a/dist/iconic/x.js b/dist/iconic/x.js new file mode 100644 index 000000000..2bac90257 --- /dev/null +++ b/dist/iconic/x.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.x = void 0; +var x = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 0c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm-1.5 1.78l1.5 1.5 1.5-1.5.72.72-1.5 1.5 1.5 1.5-.72.72-1.5-1.5-1.5 1.5-.72-.72 1.5-1.5-1.5-1.5.72-.72z" + } + }] +}; +exports.x = x; \ No newline at end of file diff --git a/dist/iconic/yen.js b/dist/iconic/yen.js new file mode 100644 index 000000000..b8807f167 --- /dev/null +++ b/dist/iconic/yen.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.yen = void 0; +var yen = { + "viewBox": "0 0 8 8", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0l2.25 3h-2.25v1h3v1h-3v1h3v2h1v-2h3v-1h-3v-1h3v-1h-2.25l2.25-3h-1l-2.31 3h-.38l-2.31-3h-1z" + } + }] +}; +exports.yen = yen; \ No newline at end of file diff --git a/dist/ikons/alarm.js b/dist/ikons/alarm.js new file mode 100644 index 000000000..25fad3b97 --- /dev/null +++ b/dist/ikons/alarm.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.alarm = void 0; +var alarm = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "ALARM_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "ALARM" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "ALARM" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M44,31h-9V18c0-1.657-1.343-3-3-3s-3,1.343-3,3v16c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3S45.657,31,44,31z\r\n\t\t\t\t M19.412,4.575C17.37,2.967,14.8,2,12,2C5.373,2,0,7.373,0,14c0,2.8,0.967,5.37,2.575,7.412\r\n\t\t\t\tC5.809,13.862,11.862,7.809,19.412,4.575z M52.251,2c-2.742,0-5.258,0.947-7.257,2.521c7.393,3.167,13.318,9.093,16.484,16.485\r\n\t\t\t\tc1.574-2,2.521-4.516,2.521-7.257C64,7.26,58.74,2,52.251,2z M32,5C15.984,5,3,17.984,3,34c0,7.691,3.015,14.664,7.902,19.855\r\n\t\t\t\tl-4.023,4.023C6.336,58.422,6,59.172,6,60c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879l4.327-4.327\r\n\t\t\t\tC20.144,61.066,25.842,63,32,63c6.17,0,11.878-1.941,16.579-5.227l4.356,4.357C53.473,62.668,54.215,63,55.034,63\r\n\t\t\t\tC56.672,63,58,61.672,58,60.034c0-0.819-0.332-1.562-0.869-2.099l-4.056-4.056C57.977,48.688,61,41.704,61,34\r\n\t\t\t\tC61,17.984,48.016,5,32,5z M32,57C19.297,57,9,46.703,9,34s10.297-23,23-23c12.702,0,23,10.297,23,23S44.703,57,32,57z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M44,31h-9V18c0-1.657-1.343-3-3-3s-3,1.343-3,3v16c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3S45.657,31,44,31z\r\n\t\t\t\t M19.412,4.575C17.37,2.967,14.8,2,12,2C5.373,2,0,7.373,0,14c0,2.8,0.967,5.37,2.575,7.412\r\n\t\t\t\tC5.809,13.862,11.862,7.809,19.412,4.575z M52.251,2c-2.742,0-5.258,0.947-7.257,2.521c7.393,3.167,13.318,9.093,16.484,16.485\r\n\t\t\t\tc1.574-2,2.521-4.516,2.521-7.257C64,7.26,58.74,2,52.251,2z M32,5C15.984,5,3,17.984,3,34c0,7.691,3.015,14.664,7.902,19.855\r\n\t\t\t\tl-4.023,4.023C6.336,58.422,6,59.172,6,60c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879l4.327-4.327\r\n\t\t\t\tC20.144,61.066,25.842,63,32,63c6.17,0,11.878-1.941,16.579-5.227l4.356,4.357C53.473,62.668,54.215,63,55.034,63\r\n\t\t\t\tC56.672,63,58,61.672,58,60.034c0-0.819-0.332-1.562-0.869-2.099l-4.056-4.056C57.977,48.688,61,41.704,61,34\r\n\t\t\t\tC61,17.984,48.016,5,32,5z M32,57C19.297,57,9,46.703,9,34s10.297-23,23-23c12.702,0,23,10.297,23,23S44.703,57,32,57z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.alarm = alarm; \ No newline at end of file diff --git a/dist/ikons/alt.js b/dist/ikons/alt.js new file mode 100644 index 000000000..a7c525b0b --- /dev/null +++ b/dist/ikons/alt.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.alt = void 0; +var alt = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "ALT" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M31,20h30c1.657,0,3-1.343,3-3s-1.343-3-3-3H31c-1.657,0-3,1.343-3,3\r\n\t\t\tS29.343,20,31,20z M61,44H32.651L14.535,15.395l-0.006,0.004C13.997,14.56,13.066,14,12,14H3c-1.657,0-3,1.343-3,3s1.343,3,3,3\r\n\t\t\th7.349l18.117,28.605l0.006-0.004C29.003,49.44,29.934,50,31,50h30c1.657,0,3-1.343,3-3C64,45.343,62.657,44,61,44z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M31,20h30c1.657,0,3-1.343,3-3s-1.343-3-3-3H31c-1.657,0-3,1.343-3,3\r\n\t\t\tS29.343,20,31,20z M61,44H32.651L14.535,15.395l-0.006,0.004C13.997,14.56,13.066,14,12,14H3c-1.657,0-3,1.343-3,3s1.343,3,3,3\r\n\t\t\th7.349l18.117,28.605l0.006-0.004C29.003,49.44,29.934,50,31,50h30c1.657,0,3-1.343,3-3C64,45.343,62.657,44,61,44z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.alt = alt; \ No newline at end of file diff --git a/dist/ikons/android.js b/dist/ikons/android.js new file mode 100644 index 000000000..29b78f58a --- /dev/null +++ b/dist/ikons/android.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.android = void 0; +var android = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "android_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "android" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "android" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M15.647,47.493c0,2.164,1.709,3.926,3.812,3.926h2.752c-0.092,0.327-0.144,0.673-0.144,1.031v7.848\r\n\t\t\t\tc0,2.052,1.618,3.718,3.612,3.718c1.995,0,3.613-1.666,3.613-3.718V52.45c0-0.358-0.053-0.704-0.144-1.031h6.708\r\n\t\t\t\tc-0.092,0.327-0.144,0.673-0.144,1.031v7.848c0,2.052,1.618,3.718,3.612,3.718s3.613-1.666,3.613-3.718V52.45\r\n\t\t\t\tc0-0.358-0.053-0.704-0.145-1.031h2.752c2.104,0,3.812-1.761,3.812-3.926v-27.26h-33.71V47.493z M9.626,20.233\r\n\t\t\t\tc-1.995,0-3.612,1.664-3.612,3.717v15.901c0,2.053,1.617,3.717,3.612,3.717c1.994,0,3.612-1.664,3.612-3.717v-15.9\r\n\t\t\t\tC13.238,21.897,11.62,20.233,9.626,20.233z M55.375,20.233c-1.995,0-3.611,1.664-3.611,3.717v15.901\r\n\t\t\t\tc0,2.053,1.616,3.717,3.611,3.717s3.611-1.664,3.611-3.717v-15.9C58.986,21.897,57.37,20.233,55.375,20.233z M40.789,5.355\r\n\t\t\t\tl0.678-1.047l0.668-1.032l1.502-2.318c0.184-0.285,0.108-0.669-0.166-0.859c-0.279-0.191-0.652-0.114-0.837,0.172l-1.608,2.485\r\n\t\t\t\tl-0.678,1.045L39.662,4.86c-2.176-0.868-4.602-1.355-7.162-1.355c-2.559,0-4.986,0.487-7.16,1.354L24.655,3.8l-0.676-1.045\r\n\t\t\t\tL22.367,0.27c-0.184-0.285-0.558-0.362-0.836-0.172c-0.275,0.19-0.351,0.574-0.166,0.859l1.5,2.318l0.669,1.032l0.678,1.047\r\n\t\t\t\tc-5.109,2.449-8.566,7.089-8.566,12.4h33.708C49.355,12.444,45.898,7.804,40.789,5.355z M25.278,12.799\r\n\t\t\t\tc-0.998,0-1.806-0.833-1.806-1.859s0.808-1.857,1.806-1.857c0.997,0,1.806,0.831,1.806,1.857S26.275,12.799,25.278,12.799z\r\n\t\t\t\t M39.725,12.799c-0.998,0-1.806-0.833-1.806-1.859s0.808-1.857,1.806-1.857s1.805,0.831,1.805,1.857S40.723,12.799,39.725,12.799\r\n\t\t\t\tz" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15.647,47.493c0,2.164,1.709,3.926,3.812,3.926h2.752c-0.092,0.327-0.144,0.673-0.144,1.031v7.848\r\n\t\t\t\tc0,2.052,1.618,3.718,3.612,3.718c1.995,0,3.613-1.666,3.613-3.718V52.45c0-0.358-0.053-0.704-0.144-1.031h6.708\r\n\t\t\t\tc-0.092,0.327-0.144,0.673-0.144,1.031v7.848c0,2.052,1.618,3.718,3.612,3.718s3.613-1.666,3.613-3.718V52.45\r\n\t\t\t\tc0-0.358-0.053-0.704-0.145-1.031h2.752c2.104,0,3.812-1.761,3.812-3.926v-27.26h-33.71V47.493z M9.626,20.233\r\n\t\t\t\tc-1.995,0-3.612,1.664-3.612,3.717v15.901c0,2.053,1.617,3.717,3.612,3.717c1.994,0,3.612-1.664,3.612-3.717v-15.9\r\n\t\t\t\tC13.238,21.897,11.62,20.233,9.626,20.233z M55.375,20.233c-1.995,0-3.611,1.664-3.611,3.717v15.901\r\n\t\t\t\tc0,2.053,1.616,3.717,3.611,3.717s3.611-1.664,3.611-3.717v-15.9C58.986,21.897,57.37,20.233,55.375,20.233z M40.789,5.355\r\n\t\t\t\tl0.678-1.047l0.668-1.032l1.502-2.318c0.184-0.285,0.108-0.669-0.166-0.859c-0.279-0.191-0.652-0.114-0.837,0.172l-1.608,2.485\r\n\t\t\t\tl-0.678,1.045L39.662,4.86c-2.176-0.868-4.602-1.355-7.162-1.355c-2.559,0-4.986,0.487-7.16,1.354L24.655,3.8l-0.676-1.045\r\n\t\t\t\tL22.367,0.27c-0.184-0.285-0.558-0.362-0.836-0.172c-0.275,0.19-0.351,0.574-0.166,0.859l1.5,2.318l0.669,1.032l0.678,1.047\r\n\t\t\t\tc-5.109,2.449-8.566,7.089-8.566,12.4h33.708C49.355,12.444,45.898,7.804,40.789,5.355z M25.278,12.799\r\n\t\t\t\tc-0.998,0-1.806-0.833-1.806-1.859s0.808-1.857,1.806-1.857c0.997,0,1.806,0.831,1.806,1.857S26.275,12.799,25.278,12.799z\r\n\t\t\t\t M39.725,12.799c-0.998,0-1.806-0.833-1.806-1.859s0.808-1.857,1.806-1.857s1.805,0.831,1.805,1.857S40.723,12.799,39.725,12.799\r\n\t\t\t\tz" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.android = android; \ No newline at end of file diff --git a/dist/ikons/apple.js b/dist/ikons/apple.js new file mode 100644 index 000000000..17a1fcf38 --- /dev/null +++ b/dist/ikons/apple.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.apple = void 0; +var apple = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "apple_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "apple" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "apple" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M42.111,10.214c2.4-2.709,4.021-6.473,3.58-10.221c-3.459,0.13-7.647,2.14-10.131,4.846\r\n\t\t\t\tc-2.225,2.401-4.17,6.226-3.65,9.906C35.77,15.025,39.708,12.918,42.111,10.214z M50.771,34.008\r\n\t\t\t\tc-0.086-8.109,7.104-11.997,7.427-12.193c-4.041-5.499-10.337-6.254-12.576-6.34c-5.354-0.506-10.451,2.935-13.169,2.935\r\n\t\t\t\tc-2.711,0-6.906-2.861-11.346-2.788c-5.84,0.081-11.222,3.161-14.228,8.028c-6.065,9.793-1.552,24.307,4.359,32.256\r\n\t\t\t\tc2.89,3.886,6.335,8.257,10.855,8.097c4.357-0.16,6.002-2.622,11.267-2.622c5.269,0,6.746,2.622,11.354,2.541\r\n\t\t\t\tc4.685-0.079,7.655-3.959,10.522-7.859c3.318-4.514,4.683-8.886,4.765-9.106C59.896,46.91,50.865,43.689,50.771,34.008z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M42.111,10.214c2.4-2.709,4.021-6.473,3.58-10.221c-3.459,0.13-7.647,2.14-10.131,4.846\r\n\t\t\t\tc-2.225,2.401-4.17,6.226-3.65,9.906C35.77,15.025,39.708,12.918,42.111,10.214z M50.771,34.008\r\n\t\t\t\tc-0.086-8.109,7.104-11.997,7.427-12.193c-4.041-5.499-10.337-6.254-12.576-6.34c-5.354-0.506-10.451,2.935-13.169,2.935\r\n\t\t\t\tc-2.711,0-6.906-2.861-11.346-2.788c-5.84,0.081-11.222,3.161-14.228,8.028c-6.065,9.793-1.552,24.307,4.359,32.256\r\n\t\t\t\tc2.89,3.886,6.335,8.257,10.855,8.097c4.357-0.16,6.002-2.622,11.267-2.622c5.269,0,6.746,2.622,11.354,2.541\r\n\t\t\t\tc4.685-0.079,7.655-3.959,10.522-7.859c3.318-4.514,4.683-8.886,4.765-9.106C59.896,46.91,50.865,43.689,50.771,34.008z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.apple = apple; \ No newline at end of file diff --git a/dist/ikons/appstore.js b/dist/ikons/appstore.js new file mode 100644 index 000000000..a43737094 --- /dev/null +++ b/dist/ikons/appstore.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.appstore = void 0; +var appstore = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "appstore_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "appstore" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "appstore" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M31.03,28.052L24.522,39.43h17.662c-1.283-2.539-2.981-6.173-5.262-11.376H31.03V28.052z M31.735,21.424\r\n\t\t\t\tc0.405-0.708,0.16-1.618-0.546-2.03l-3.854-2.214c-0.704-0.41-1.615-0.163-2.019,0.545l-5.908,10.328L12.899,39.43l-5.433,9.5\r\n\t\t\t\tc-0.409,0.709-0.16,1.618,0.546,2.023l3.853,2.224c0.705,0.408,1.615,0.161,2.023-0.545l7.55-13.202l4.879-8.532L31.735,21.424z\r\n\t\t\t\t M10.606,54.878l-3.853-2.219c-0.706-0.408-1.358-0.074-1.452,0.735l-0.666,5.824c-0.093,0.811,0.382,1.102,1.054,0.643\r\n\t\t\t\tl4.977-3.406C11.341,55.999,11.312,55.286,10.606,54.878z M16.322,28.052H1.35c-0.74,0-1.339,0.601-1.339,1.343v8.692\r\n\t\t\t\tc0,0.741,0.599,1.343,1.339,1.343h8.464L16.322,28.052z M62.65,28.052H49.643c1.53,2.879,2.948,5.589,3.948,7.505\r\n\t\t\t\tc0.692,1.325,1.239,2.373,1.433,2.723c0.203,0.373,0.347,0.757,0.444,1.15h7.183c0.74,0,1.34-0.602,1.34-1.343v-8.692\r\n\t\t\t\tC63.988,28.654,63.389,28.052,62.65,28.052z M52.677,39.575c-0.022-0.038-0.051-0.093-0.079-0.146\r\n\t\t\t\tc-0.357-0.664-1.255-2.394-2.433-4.639c-0.015-0.031-0.028-0.057-0.043-0.087c-0.09-0.173-0.181-0.347-0.274-0.524\r\n\t\t\t\tc-0.068-0.128-0.135-0.258-0.205-0.388c-0.057-0.112-0.117-0.224-0.175-0.339c-0.104-0.199-0.211-0.396-0.317-0.602\r\n\t\t\t\tc-0.033-0.063-0.065-0.127-0.1-0.19c-0.119-0.229-0.24-0.459-0.363-0.693c-0.035-0.066-0.07-0.132-0.106-0.201\r\n\t\t\t\tc-2.714-5.151-6.123-11.492-8.228-14.827c-3.683-5.844-8.599-15.583-9.971-14.89C28.46,3.011,34.41,15.374,36.38,20.02\r\n\t\t\t\tc1.97,4.644,9.656,22.447,11.197,23.224c1.543,0.773,2.14,0.344,3.169-0.084C51.773,42.729,53.619,41.3,52.677,39.575z\r\n\t\t\t\t M56.504,53.867c-0.577,0.555-1.951,1.763-0.289,4.107c1.657,2.349,5.362,2.453,5.85,4.012\r\n\t\t\t\tC62.064,61.986,63.229,50.061,56.504,53.867z M57.07,48.749l-1.834-3.536c-0.416-0.8-1.393-1.126-2.172-0.727l-2.213,1.145\r\n\t\t\t\tc-0.778,0.405-1.024,1.354-0.545,2.117l2.321,3.682c0.479,0.758,1.491,1.008,2.242,0.553l1.58-0.953\r\n\t\t\t\tC57.205,50.575,57.484,49.549,57.07,48.749z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M31.03,28.052L24.522,39.43h17.662c-1.283-2.539-2.981-6.173-5.262-11.376H31.03V28.052z M31.735,21.424\r\n\t\t\t\tc0.405-0.708,0.16-1.618-0.546-2.03l-3.854-2.214c-0.704-0.41-1.615-0.163-2.019,0.545l-5.908,10.328L12.899,39.43l-5.433,9.5\r\n\t\t\t\tc-0.409,0.709-0.16,1.618,0.546,2.023l3.853,2.224c0.705,0.408,1.615,0.161,2.023-0.545l7.55-13.202l4.879-8.532L31.735,21.424z\r\n\t\t\t\t M10.606,54.878l-3.853-2.219c-0.706-0.408-1.358-0.074-1.452,0.735l-0.666,5.824c-0.093,0.811,0.382,1.102,1.054,0.643\r\n\t\t\t\tl4.977-3.406C11.341,55.999,11.312,55.286,10.606,54.878z M16.322,28.052H1.35c-0.74,0-1.339,0.601-1.339,1.343v8.692\r\n\t\t\t\tc0,0.741,0.599,1.343,1.339,1.343h8.464L16.322,28.052z M62.65,28.052H49.643c1.53,2.879,2.948,5.589,3.948,7.505\r\n\t\t\t\tc0.692,1.325,1.239,2.373,1.433,2.723c0.203,0.373,0.347,0.757,0.444,1.15h7.183c0.74,0,1.34-0.602,1.34-1.343v-8.692\r\n\t\t\t\tC63.988,28.654,63.389,28.052,62.65,28.052z M52.677,39.575c-0.022-0.038-0.051-0.093-0.079-0.146\r\n\t\t\t\tc-0.357-0.664-1.255-2.394-2.433-4.639c-0.015-0.031-0.028-0.057-0.043-0.087c-0.09-0.173-0.181-0.347-0.274-0.524\r\n\t\t\t\tc-0.068-0.128-0.135-0.258-0.205-0.388c-0.057-0.112-0.117-0.224-0.175-0.339c-0.104-0.199-0.211-0.396-0.317-0.602\r\n\t\t\t\tc-0.033-0.063-0.065-0.127-0.1-0.19c-0.119-0.229-0.24-0.459-0.363-0.693c-0.035-0.066-0.07-0.132-0.106-0.201\r\n\t\t\t\tc-2.714-5.151-6.123-11.492-8.228-14.827c-3.683-5.844-8.599-15.583-9.971-14.89C28.46,3.011,34.41,15.374,36.38,20.02\r\n\t\t\t\tc1.97,4.644,9.656,22.447,11.197,23.224c1.543,0.773,2.14,0.344,3.169-0.084C51.773,42.729,53.619,41.3,52.677,39.575z\r\n\t\t\t\t M56.504,53.867c-0.577,0.555-1.951,1.763-0.289,4.107c1.657,2.349,5.362,2.453,5.85,4.012\r\n\t\t\t\tC62.064,61.986,63.229,50.061,56.504,53.867z M57.07,48.749l-1.834-3.536c-0.416-0.8-1.393-1.126-2.172-0.727l-2.213,1.145\r\n\t\t\t\tc-0.778,0.405-1.024,1.354-0.545,2.117l2.321,3.682c0.479,0.758,1.491,1.008,2.242,0.553l1.58-0.953\r\n\t\t\t\tC57.205,50.575,57.484,49.549,57.07,48.749z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.appstore = appstore; \ No newline at end of file diff --git a/dist/ikons/arrow_1.js b/dist/ikons/arrow_1.js new file mode 100644 index 000000000..c3ab60c9a --- /dev/null +++ b/dist/ikons/arrow_1.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrow_1 = void 0; +var arrow_1 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "ARROW_1_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "ARROW_1" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "ARROW_1" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M63.122,42.878l-6.998-7.001c-0.543-0.543-1.293-0.879-2.121-0.879c-1.657,0-2.999,1.343-2.999,3\r\n\t\t\t\tc0,0.829,0.336,1.579,0.879,2.122l1.879,1.879h-1.773v0.005h-3l0,0h-2.756L15.118,10.879C14.575,10.336,13.825,10,12.997,10\r\n\t\t\t\tH2.999C1.343,10,0,11.343,0,13.001c0,1.657,1.343,3,2.999,3h8.755l31.114,31.126c0.543,0.543,1.293,0.879,2.12,0.879h8.767\r\n\t\t\t\tl-1.873,1.874c-0.543,0.543-0.879,1.293-0.879,2.122c0,1.657,1.343,3,2.999,3c0.828,0,1.578-0.336,2.121-0.879l6.998-7.001\r\n\t\t\t\tC63.664,46.578,64,45.828,64,45C64,44.171,63.664,43.421,63.122,42.878z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M63.122,42.878l-6.998-7.001c-0.543-0.543-1.293-0.879-2.121-0.879c-1.657,0-2.999,1.343-2.999,3\r\n\t\t\t\tc0,0.829,0.336,1.579,0.879,2.122l1.879,1.879h-1.773v0.005h-3l0,0h-2.756L15.118,10.879C14.575,10.336,13.825,10,12.997,10\r\n\t\t\t\tH2.999C1.343,10,0,11.343,0,13.001c0,1.657,1.343,3,2.999,3h8.755l31.114,31.126c0.543,0.543,1.293,0.879,2.12,0.879h8.767\r\n\t\t\t\tl-1.873,1.874c-0.543,0.543-0.879,1.293-0.879,2.122c0,1.657,1.343,3,2.999,3c0.828,0,1.578-0.336,2.121-0.879l6.998-7.001\r\n\t\t\t\tC63.664,46.578,64,45.828,64,45C64,44.171,63.664,43.421,63.122,42.878z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.arrow_1 = arrow_1; \ No newline at end of file diff --git a/dist/ikons/arrow_2.js b/dist/ikons/arrow_2.js new file mode 100644 index 000000000..38bbcebd5 --- /dev/null +++ b/dist/ikons/arrow_2.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrow_2 = void 0; +var arrow_2 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "ARROW_2_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "ARROW_2" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "ARROW_2" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M63.137,17.884l-7-7c-0.543-0.543-1.293-0.879-2.121-0.879c-1.656,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121\r\n\t\t\t\tL53.768,17H45c-0.828,0-1.578,0.336-2.121,0.879L11.757,49H9l0,0H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h10\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L46.243,23H52v0.005h1.773l-1.879,1.879c-0.543,0.543-0.879,1.293-0.879,2.121\r\n\t\t\t\tc0,1.657,1.342,3,3,3c0.827,0,1.577-0.336,2.12-0.879l7-7c0.544-0.543,0.88-1.293,0.88-2.121S63.68,18.427,63.137,17.884z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M63.137,17.884l-7-7c-0.543-0.543-1.293-0.879-2.121-0.879c-1.656,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121\r\n\t\t\t\tL53.768,17H45c-0.828,0-1.578,0.336-2.121,0.879L11.757,49H9l0,0H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h10\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L46.243,23H52v0.005h1.773l-1.879,1.879c-0.543,0.543-0.879,1.293-0.879,2.121\r\n\t\t\t\tc0,1.657,1.342,3,3,3c0.827,0,1.577-0.336,2.12-0.879l7-7c0.544-0.543,0.88-1.293,0.88-2.121S63.68,18.427,63.137,17.884z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.arrow_2 = arrow_2; \ No newline at end of file diff --git a/dist/ikons/arrow_down.js b/dist/ikons/arrow_down.js new file mode 100644 index 000000000..901729af3 --- /dev/null +++ b/dist/ikons/arrow_down.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrow_down = void 0; +var arrow_down = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "ARROW__x2F__DOWN_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "ARROW__x2F__DOWN" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "ARROW__x2F__DOWN" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M53,23c0-1.657-1.343-3-3-3c-0.809,0-1.542,0.321-2.082,0.841l-0.001-0.001L31.993,36.764L16.275,21.046\r\n\t\t\t\tC15.725,20.406,14.91,20,14,20c-1.657,0-3,1.343-3,3c0,0.805,0.318,1.536,0.835,2.075l-0.008,0.008l18,18l0.001-0.001\r\n\t\t\t\tC30.374,43.648,31.139,44,31.987,44c0.002,0,0.004,0,0.007,0c0.002,0,0.004,0,0.007,0c0.849,0,1.612-0.352,2.159-0.918\r\n\t\t\t\tl0.001,0.001l18-18l-0.001-0.001C52.68,24.543,53,23.809,53,23z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M53,23c0-1.657-1.343-3-3-3c-0.809,0-1.542,0.321-2.082,0.841l-0.001-0.001L31.993,36.764L16.275,21.046\r\n\t\t\t\tC15.725,20.406,14.91,20,14,20c-1.657,0-3,1.343-3,3c0,0.805,0.318,1.536,0.835,2.075l-0.008,0.008l18,18l0.001-0.001\r\n\t\t\t\tC30.374,43.648,31.139,44,31.987,44c0.002,0,0.004,0,0.007,0c0.002,0,0.004,0,0.007,0c0.849,0,1.612-0.352,2.159-0.918\r\n\t\t\t\tl0.001,0.001l18-18l-0.001-0.001C52.68,24.543,53,23.809,53,23z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.arrow_down = arrow_down; \ No newline at end of file diff --git a/dist/ikons/arrow_left.js b/dist/ikons/arrow_left.js new file mode 100644 index 000000000..ed8817802 --- /dev/null +++ b/dist/ikons/arrow_left.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrow_left = void 0; +var arrow_left = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "ARROW__x2F__LEFT_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "ARROW__x2F__LEFT" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "ARROW__x2F__LEFT" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M43.16,47.917L27.236,31.994l15.718-15.718C43.594,15.725,44,14.91,44,14c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.807,0-1.536,0.318-2.075,0.835l-0.008-0.008l-18,18l0.001,0.001C20.352,30.374,20,31.139,20,31.987c0,0.002,0,0.004,0,0.007\r\n\t\t\t\tc0,0.002,0,0.004,0,0.007c0,0.849,0.352,1.613,0.918,2.159l-0.001,0.001l18,18l0.001-0.001C39.458,52.68,40.191,53,41,53\r\n\t\t\t\tc1.657,0,3-1.343,3-3C44,49.191,43.68,48.458,43.16,47.917L43.16,47.917z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M43.16,47.917L27.236,31.994l15.718-15.718C43.594,15.725,44,14.91,44,14c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.807,0-1.536,0.318-2.075,0.835l-0.008-0.008l-18,18l0.001,0.001C20.352,30.374,20,31.139,20,31.987c0,0.002,0,0.004,0,0.007\r\n\t\t\t\tc0,0.002,0,0.004,0,0.007c0,0.849,0.352,1.613,0.918,2.159l-0.001,0.001l18,18l0.001-0.001C39.458,52.68,40.191,53,41,53\r\n\t\t\t\tc1.657,0,3-1.343,3-3C44,49.191,43.68,48.458,43.16,47.917L43.16,47.917z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.arrow_left = arrow_left; \ No newline at end of file diff --git a/dist/ikons/arrow_right.js b/dist/ikons/arrow_right.js new file mode 100644 index 000000000..e5e53dfdc --- /dev/null +++ b/dist/ikons/arrow_right.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrow_right = void 0; +var arrow_right = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "ARROW__x2F__RIGHT_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "ARROW__x2F__RIGHT" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "ARROW__x2F__RIGHT" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M44,31.994c0-0.002,0-0.005,0-0.007c0-0.848-0.352-1.613-0.918-2.159l0.001-0.001l-18-18l-0.008,0.008\r\n\t\t\t\tC24.536,11.318,23.806,11,23,11c-1.657,0-3,1.343-3,3c0,0.91,0.406,1.725,1.046,2.275l15.718,15.718L20.84,47.917l0.001,0.001\r\n\t\t\t\tC20.321,48.458,20,49.191,20,50c0,1.657,1.343,3,3,3c0.809,0,1.542-0.32,2.082-0.841l0.001,0.001l18-18l-0.001-0.001\r\n\t\t\t\tC43.648,33.613,44,32.848,44,32C44,31.998,44,31.996,44,31.994z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M44,31.994c0-0.002,0-0.005,0-0.007c0-0.848-0.352-1.613-0.918-2.159l0.001-0.001l-18-18l-0.008,0.008\r\n\t\t\t\tC24.536,11.318,23.806,11,23,11c-1.657,0-3,1.343-3,3c0,0.91,0.406,1.725,1.046,2.275l15.718,15.718L20.84,47.917l0.001,0.001\r\n\t\t\t\tC20.321,48.458,20,49.191,20,50c0,1.657,1.343,3,3,3c0.809,0,1.542-0.32,2.082-0.841l0.001,0.001l18-18l-0.001-0.001\r\n\t\t\t\tC43.648,33.613,44,32.848,44,32C44,31.998,44,31.996,44,31.994z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.arrow_right = arrow_right; \ No newline at end of file diff --git a/dist/ikons/arrow_up.js b/dist/ikons/arrow_up.js new file mode 100644 index 000000000..1fa506136 --- /dev/null +++ b/dist/ikons/arrow_up.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrow_up = void 0; +var arrow_up = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "ARROW__x2F__UP_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "ARROW__x2F__UP" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "ARROW__x2F__UP" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M52.159,38.918L52.159,38.918L34.16,20.917l-0.001,0.001C33.613,20.352,32.848,20,32,20c-0.002,0-0.004,0-0.007,0\r\n\t\t\t\ts-0.004,0-0.007,0c-0.848,0-1.613,0.352-2.159,0.918l-0.001-0.001l-18,18l0.008,0.008C11.318,39.464,11,40.195,11,41\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.91,0,1.725-0.406,2.275-1.046l15.718-15.718L47.917,43.16l0.001-0.001C48.458,43.68,49.191,44,50,44\r\n\t\t\t\tc1.657,0,3-1.343,3-3C53,40.191,52.68,39.458,52.159,38.918z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M52.159,38.918L52.159,38.918L34.16,20.917l-0.001,0.001C33.613,20.352,32.848,20,32,20c-0.002,0-0.004,0-0.007,0\r\n\t\t\t\ts-0.004,0-0.007,0c-0.848,0-1.613,0.352-2.159,0.918l-0.001-0.001l-18,18l0.008,0.008C11.318,39.464,11,40.195,11,41\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.91,0,1.725-0.406,2.275-1.046l15.718-15.718L47.917,43.16l0.001-0.001C48.458,43.68,49.191,44,50,44\r\n\t\t\t\tc1.657,0,3-1.343,3-3C53,40.191,52.68,39.458,52.159,38.918z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.arrow_up = arrow_up; \ No newline at end of file diff --git a/dist/ikons/arrows.js b/dist/ikons/arrows.js new file mode 100644 index 000000000..8e1fb7fc1 --- /dev/null +++ b/dist/ikons/arrows.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows = void 0; +var arrows = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "ARROWS_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "ARROWS" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "ARROWS" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M64,32c0-0.885-0.383-1.681-0.993-2.23l0,0l-10-9l0,0C52.475,20.292,51.771,20,51,20c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.885,0.384,1.681,0.993,2.23l0,0L53.182,29H35V10.818l3.77,4.189l0,0C39.318,15.616,40.115,16,41,16c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.772-0.292-1.475-0.77-2.007l0,0l-9-10l0,0C33.682,0.384,32.885,0,32,0s-1.681,0.384-2.23,0.993l0,0l-9,10l0,0\r\n\t\t\t\tC20.292,11.525,20,12.228,20,13c0,1.657,1.343,3,3,3c0.885,0,1.68-0.384,2.23-0.993l0,0L29,10.818V29H10.818l4.189-3.77l0,0\r\n\t\t\t\tC15.617,24.681,16,23.885,16,23c0-1.657-1.343-3-3-3c-0.772,0-1.475,0.292-2.007,0.77l0,0l-10,9l0,0C0.384,30.319,0,31.115,0,32\r\n\t\t\t\ts0.384,1.68,0.993,2.23l0,0l10,9l0,0C11.525,43.709,12.228,44,13,44c1.657,0,3-1.343,3-3c0-0.885-0.384-1.68-0.993-2.23l0,0\r\n\t\t\t\tL10.818,35H29v18.182l-3.77-4.188l0,0C24.681,48.384,23.885,48,23,48c-1.657,0-3,1.343-3,3c0,0.771,0.292,1.475,0.77,2.007l0,0\r\n\t\t\t\tl9,10l0,0C30.319,63.617,31.115,64,32,64s1.682-0.383,2.23-0.993l0,0l9-10l0,0C43.708,52.475,44,51.771,44,51\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.885,0-1.682,0.384-2.23,0.993l0,0L35,53.182V35h18.182l-4.188,3.77l0,0C48.384,39.32,48,40.115,48,41\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.771,0,1.475-0.292,2.007-0.77l0,0l10-9l0,0C63.617,33.682,64,32.885,64,32z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M64,32c0-0.885-0.383-1.681-0.993-2.23l0,0l-10-9l0,0C52.475,20.292,51.771,20,51,20c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.885,0.384,1.681,0.993,2.23l0,0L53.182,29H35V10.818l3.77,4.189l0,0C39.318,15.616,40.115,16,41,16c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.772-0.292-1.475-0.77-2.007l0,0l-9-10l0,0C33.682,0.384,32.885,0,32,0s-1.681,0.384-2.23,0.993l0,0l-9,10l0,0\r\n\t\t\t\tC20.292,11.525,20,12.228,20,13c0,1.657,1.343,3,3,3c0.885,0,1.68-0.384,2.23-0.993l0,0L29,10.818V29H10.818l4.189-3.77l0,0\r\n\t\t\t\tC15.617,24.681,16,23.885,16,23c0-1.657-1.343-3-3-3c-0.772,0-1.475,0.292-2.007,0.77l0,0l-10,9l0,0C0.384,30.319,0,31.115,0,32\r\n\t\t\t\ts0.384,1.68,0.993,2.23l0,0l10,9l0,0C11.525,43.709,12.228,44,13,44c1.657,0,3-1.343,3-3c0-0.885-0.384-1.68-0.993-2.23l0,0\r\n\t\t\t\tL10.818,35H29v18.182l-3.77-4.188l0,0C24.681,48.384,23.885,48,23,48c-1.657,0-3,1.343-3,3c0,0.771,0.292,1.475,0.77,2.007l0,0\r\n\t\t\t\tl9,10l0,0C30.319,63.617,31.115,64,32,64s1.682-0.383,2.23-0.993l0,0l9-10l0,0C43.708,52.475,44,51.771,44,51\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.885,0-1.682,0.384-2.23,0.993l0,0L35,53.182V35h18.182l-4.188,3.77l0,0C48.384,39.32,48,40.115,48,41\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.771,0,1.475-0.292,2.007-0.77l0,0l10-9l0,0C63.617,33.682,64,32.885,64,32z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.arrows = arrows; \ No newline at end of file diff --git a/dist/ikons/arrows_horizontal.js b/dist/ikons/arrows_horizontal.js new file mode 100644 index 000000000..7bdcb3f77 --- /dev/null +++ b/dist/ikons/arrows_horizontal.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_horizontal = void 0; +var arrows_horizontal = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "ARROWS__x2F__HORIZONTAL_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "ARROWS__x2F__HORIZONTAL" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "ARROWS__x2F__HORIZONTAL" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M3,22h32l0,0h18.182l-4.188,3.77L49,25.779c-0.609,0.549-1,1.336-1,2.222c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.771,0,1.468-0.299,2-0.778l0.007,0.008l10-9L63,21.222c0.609-0.549,1-1.337,1-2.222s-0.391-1.673-1-2.222l0.007-0.008l-10-9\r\n\t\t\t\tL53,7.778C52.468,7.3,51.771,7,51,7c-1.657,0-3,1.343-3,3c0,0.885,0.391,1.673,1,2.222l-0.007,0.008L53.182,16H39l0,0H26l0,0\r\n\t\t\t\tH10.818l0,0H3c-1.657,0-3,1.343-3,3S1.343,22,3,22z M61,42h-7.818l0,0H38l0,0H25l0,0H10.818l4.189-3.77L15,38.223\r\n\t\t\t\tc0.61-0.55,1-1.337,1-2.223c0-1.657-1.343-3-3-3c-0.772,0-1.468,0.3-2,0.777l-0.007-0.008l-10,9L1,42.777\r\n\t\t\t\tC0.391,43.328,0,44.115,0,45s0.391,1.672,1,2.223L0.993,47.23l10,9L11,56.223C11.532,56.701,12.229,57,13,57c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.885-0.391-1.673-1-2.223l0.007-0.008L10.818,48H35l0,0h26c1.657,0,3-1.343,3-3S62.657,42,61,42z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M3,22h32l0,0h18.182l-4.188,3.77L49,25.779c-0.609,0.549-1,1.336-1,2.222c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.771,0,1.468-0.299,2-0.778l0.007,0.008l10-9L63,21.222c0.609-0.549,1-1.337,1-2.222s-0.391-1.673-1-2.222l0.007-0.008l-10-9\r\n\t\t\t\tL53,7.778C52.468,7.3,51.771,7,51,7c-1.657,0-3,1.343-3,3c0,0.885,0.391,1.673,1,2.222l-0.007,0.008L53.182,16H39l0,0H26l0,0\r\n\t\t\t\tH10.818l0,0H3c-1.657,0-3,1.343-3,3S1.343,22,3,22z M61,42h-7.818l0,0H38l0,0H25l0,0H10.818l4.189-3.77L15,38.223\r\n\t\t\t\tc0.61-0.55,1-1.337,1-2.223c0-1.657-1.343-3-3-3c-0.772,0-1.468,0.3-2,0.777l-0.007-0.008l-10,9L1,42.777\r\n\t\t\t\tC0.391,43.328,0,44.115,0,45s0.391,1.672,1,2.223L0.993,47.23l10,9L11,56.223C11.532,56.701,12.229,57,13,57c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.885-0.391-1.673-1-2.223l0.007-0.008L10.818,48H35l0,0h26c1.657,0,3-1.343,3-3S62.657,42,61,42z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.arrows_horizontal = arrows_horizontal; \ No newline at end of file diff --git a/dist/ikons/arrows_horizontal_2.js b/dist/ikons/arrows_horizontal_2.js new file mode 100644 index 000000000..4bdd3e537 --- /dev/null +++ b/dist/ikons/arrows_horizontal_2.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_horizontal_2 = void 0; +var arrows_horizontal_2 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "ARROWS_HORIZONTAL_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "ARROWS_HORIZONTAL" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "ARROWS_HORIZONTAL" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M64,32c0-0.885-0.384-1.681-0.993-2.23l0,0l-10-9l0,0C52.475,20.292,51.771,20,51,20c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.885,0.383,1.681,0.993,2.23l0,0L53.182,29H10.818l4.189-3.77l0,0C15.617,24.681,16,23.885,16,23c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.772,0-1.475,0.292-2.007,0.77l0,0l-10,9l0,0C0.384,30.319,0,31.115,0,32s0.383,1.68,0.993,2.23l0,0l10,9l0,0\r\n\t\t\t\tC11.525,43.709,12.228,44,13,44c1.657,0,3-1.343,3-3c0-0.885-0.383-1.68-0.993-2.23l0,0L10.818,35h42.364l-4.188,3.77l0,0\r\n\t\t\t\tC48.384,39.32,48,40.115,48,41c0,1.657,1.343,3,3,3c0.771,0,1.475-0.292,2.007-0.77l0,0l10-9l0,0C63.617,33.682,64,32.885,64,32z\r\n\t\t\t\t" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M64,32c0-0.885-0.384-1.681-0.993-2.23l0,0l-10-9l0,0C52.475,20.292,51.771,20,51,20c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.885,0.383,1.681,0.993,2.23l0,0L53.182,29H10.818l4.189-3.77l0,0C15.617,24.681,16,23.885,16,23c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.772,0-1.475,0.292-2.007,0.77l0,0l-10,9l0,0C0.384,30.319,0,31.115,0,32s0.383,1.68,0.993,2.23l0,0l10,9l0,0\r\n\t\t\t\tC11.525,43.709,12.228,44,13,44c1.657,0,3-1.343,3-3c0-0.885-0.383-1.68-0.993-2.23l0,0L10.818,35h42.364l-4.188,3.77l0,0\r\n\t\t\t\tC48.384,39.32,48,40.115,48,41c0,1.657,1.343,3,3,3c0.771,0,1.475-0.292,2.007-0.77l0,0l10-9l0,0C63.617,33.682,64,32.885,64,32z\r\n\t\t\t\t" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.arrows_horizontal_2 = arrows_horizontal_2; \ No newline at end of file diff --git a/dist/ikons/arrows_vertical.js b/dist/ikons/arrows_vertical.js new file mode 100644 index 000000000..a55cec10f --- /dev/null +++ b/dist/ikons/arrows_vertical.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_vertical = void 0; +var arrows_vertical = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "ARROWS__x2F__VERTICAL_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "ARROWS__x2F__VERTICAL" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "ARROWS__x2F__VERTICAL" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M57,51c0-1.657-1.343-3-3-3c-0.885,0-1.673,0.391-2.223,1l-0.008-0.007L48,53.182V29l0,0V3c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v7.818l0,0V26l0,0v13l0,0v14.182l-3.77-4.188L38.223,49c-0.55-0.609-1.338-1-2.223-1c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.771,0.3,1.468,0.777,2l-0.008,0.007l9,10L42.777,63c0.55,0.609,1.338,1,2.223,1s1.672-0.391,2.223-1l0.008,0.007l9-10\r\n\t\t\t\tL56.223,53C56.701,52.468,57,51.771,57,51z M30.23,10.993l-9-10L21.222,1C20.673,0.391,19.885,0,19,0s-1.673,0.391-2.222,1.001\r\n\t\t\t\tL16.77,0.993l-9,10L7.778,11C7.3,11.532,7,12.228,7,13c0,1.657,1.343,3,3,3c0.885,0,1.673-0.391,2.222-1l0.008,0.007L16,10.818\r\n\t\t\t\tV25l0,0v13l0,0v15.182l0,0V61c0,1.657,1.343,3,3,3s3-1.343,3-3V29l0,0V10.818l3.77,4.189L25.778,15c0.549,0.61,1.337,1,2.222,1\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.772-0.299-1.468-0.778-2L30.23,10.993z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M57,51c0-1.657-1.343-3-3-3c-0.885,0-1.673,0.391-2.223,1l-0.008-0.007L48,53.182V29l0,0V3c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v7.818l0,0V26l0,0v13l0,0v14.182l-3.77-4.188L38.223,49c-0.55-0.609-1.338-1-2.223-1c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.771,0.3,1.468,0.777,2l-0.008,0.007l9,10L42.777,63c0.55,0.609,1.338,1,2.223,1s1.672-0.391,2.223-1l0.008,0.007l9-10\r\n\t\t\t\tL56.223,53C56.701,52.468,57,51.771,57,51z M30.23,10.993l-9-10L21.222,1C20.673,0.391,19.885,0,19,0s-1.673,0.391-2.222,1.001\r\n\t\t\t\tL16.77,0.993l-9,10L7.778,11C7.3,11.532,7,12.228,7,13c0,1.657,1.343,3,3,3c0.885,0,1.673-0.391,2.222-1l0.008,0.007L16,10.818\r\n\t\t\t\tV25l0,0v13l0,0v15.182l0,0V61c0,1.657,1.343,3,3,3s3-1.343,3-3V29l0,0V10.818l3.77,4.189L25.778,15c0.549,0.61,1.337,1,2.222,1\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.772-0.299-1.468-0.778-2L30.23,10.993z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.arrows_vertical = arrows_vertical; \ No newline at end of file diff --git a/dist/ikons/arrows_vertical_2.js b/dist/ikons/arrows_vertical_2.js new file mode 100644 index 000000000..0b9ff2427 --- /dev/null +++ b/dist/ikons/arrows_vertical_2.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_vertical_2 = void 0; +var arrows_vertical_2 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "ARROWS_VERTICAL_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "ARROWS_VERTICAL" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "ARROWS_VERTICAL" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M41,48c-0.885,0-1.682,0.384-2.23,0.993l0,0L35,53.182V10.818l3.77,4.189l0,0C39.318,15.616,40.115,16,41,16\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.772-0.292-1.475-0.77-2.007l0,0l-9-10l0,0C33.682,0.384,32.885,0,32,0s-1.681,0.384-2.23,0.993l0,0\r\n\t\t\t\tl-9,10l0,0C20.292,11.525,20,12.228,20,13c0,1.657,1.343,3,3,3c0.885,0,1.681-0.384,2.23-0.993l0,0L29,10.818v42.364l-3.77-4.188\r\n\t\t\t\tl0,0C24.681,48.384,23.885,48,23,48c-1.657,0-3,1.343-3,3c0,0.771,0.292,1.475,0.77,2.007l0,0l9,10l0,0\r\n\t\t\t\tC30.319,63.617,31.115,64,32,64s1.682-0.383,2.23-0.993l0,0l9-10l0,0C43.708,52.475,44,51.771,44,51C44,49.343,42.657,48,41,48z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M41,48c-0.885,0-1.682,0.384-2.23,0.993l0,0L35,53.182V10.818l3.77,4.189l0,0C39.318,15.616,40.115,16,41,16\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.772-0.292-1.475-0.77-2.007l0,0l-9-10l0,0C33.682,0.384,32.885,0,32,0s-1.681,0.384-2.23,0.993l0,0\r\n\t\t\t\tl-9,10l0,0C20.292,11.525,20,12.228,20,13c0,1.657,1.343,3,3,3c0.885,0,1.681-0.384,2.23-0.993l0,0L29,10.818v42.364l-3.77-4.188\r\n\t\t\t\tl0,0C24.681,48.384,23.885,48,23,48c-1.657,0-3,1.343-3,3c0,0.771,0.292,1.475,0.77,2.007l0,0l9,10l0,0\r\n\t\t\t\tC30.319,63.617,31.115,64,32,64s1.682-0.383,2.23-0.993l0,0l9-10l0,0C43.708,52.475,44,51.771,44,51C44,49.343,42.657,48,41,48z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.arrows_vertical_2 = arrows_vertical_2; \ No newline at end of file diff --git a/dist/ikons/bar_chart_1.js b/dist/ikons/bar_chart_1.js new file mode 100644 index 000000000..b53d3377c --- /dev/null +++ b/dist/ikons/bar_chart_1.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bar_chart_1 = void 0; +var bar_chart_1 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "BAR_CHART_1" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M29,50h6c1.657,0,3-1.343,3-3V22c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3\r\n\t\t\tv25C26,48.657,27.343,50,29,50z M46,50h6c1.657,0,3-1.343,3-3V8c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v39\r\n\t\t\tC43,48.657,44.343,50,46,50z M12,50h6c1.657,0,3-1.343,3-3V36c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v11\r\n\t\t\tC9,48.657,10.343,50,12,50z M61.5,53h-59C1.119,53,0,54.12,0,55.5v1C0,57.881,1.119,59,2.5,59h59c1.381,0,2.5-1.119,2.5-2.5v-1\r\n\t\t\tC64,54.12,62.881,53,61.5,53z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M29,50h6c1.657,0,3-1.343,3-3V22c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3\r\n\t\t\tv25C26,48.657,27.343,50,29,50z M46,50h6c1.657,0,3-1.343,3-3V8c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v39\r\n\t\t\tC43,48.657,44.343,50,46,50z M12,50h6c1.657,0,3-1.343,3-3V36c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v11\r\n\t\t\tC9,48.657,10.343,50,12,50z M61.5,53h-59C1.119,53,0,54.12,0,55.5v1C0,57.881,1.119,59,2.5,59h59c1.381,0,2.5-1.119,2.5-2.5v-1\r\n\t\t\tC64,54.12,62.881,53,61.5,53z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.bar_chart_1 = bar_chart_1; \ No newline at end of file diff --git a/dist/ikons/bar_chart_2.js b/dist/ikons/bar_chart_2.js new file mode 100644 index 000000000..fc52981c0 --- /dev/null +++ b/dist/ikons/bar_chart_2.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bar_chart_2 = void 0; +var bar_chart_2 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "BAR_CHART_2" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M61.5,53h-59C1.119,53,0,54.12,0,55.5v1C0,57.881,1.119,59,2.5,59h59\r\n\t\t\tc1.381,0,2.5-1.119,2.5-2.5v-1C64,54.12,62.881,53,61.5,53z M46,50h6c1.657,0,3-1.343,3-3V20c0-1.657-1.343-3-3-3h-6\r\n\t\t\tc-1.657,0-3,1.343-3,3v27C43,48.657,44.343,50,46,50z M29,50h6c1.657,0,3-1.343,3-3V8c0-1.657-1.343-3-3-3h-6\r\n\t\t\tc-1.657,0-3,1.343-3,3v39C26,48.657,27.343,50,29,50z M12,50h6c1.657,0,3-1.343,3-3V35c0-1.656-1.343-3-3-3h-6\r\n\t\t\tc-1.657,0-3,1.344-3,3v12C9,48.657,10.343,50,12,50z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M61.5,53h-59C1.119,53,0,54.12,0,55.5v1C0,57.881,1.119,59,2.5,59h59\r\n\t\t\tc1.381,0,2.5-1.119,2.5-2.5v-1C64,54.12,62.881,53,61.5,53z M46,50h6c1.657,0,3-1.343,3-3V20c0-1.657-1.343-3-3-3h-6\r\n\t\t\tc-1.657,0-3,1.343-3,3v27C43,48.657,44.343,50,46,50z M29,50h6c1.657,0,3-1.343,3-3V8c0-1.657-1.343-3-3-3h-6\r\n\t\t\tc-1.657,0-3,1.343-3,3v39C26,48.657,27.343,50,29,50z M12,50h6c1.657,0,3-1.343,3-3V35c0-1.656-1.343-3-3-3h-6\r\n\t\t\tc-1.657,0-3,1.344-3,3v12C9,48.657,10.343,50,12,50z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.bar_chart_2 = bar_chart_2; \ No newline at end of file diff --git a/dist/ikons/bar_chart_3.js b/dist/ikons/bar_chart_3.js new file mode 100644 index 000000000..5bd39611a --- /dev/null +++ b/dist/ikons/bar_chart_3.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bar_chart_3 = void 0; +var bar_chart_3 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "BAR_CHART_3" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M29,50h6c1.657,0,3-1.343,3-3V22c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3\r\n\t\t\tv25C26,48.657,27.343,50,29,50z M46,50h6c1.657,0,3-1.343,3-3V36c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v11\r\n\t\t\tC43,48.657,44.343,50,46,50z M61.5,53h-59C1.119,53,0,54.12,0,55.5v1C0,57.881,1.119,59,2.5,59h59c1.381,0,2.5-1.119,2.5-2.5v-1\r\n\t\t\tC64,54.12,62.881,53,61.5,53z M12,50h6c1.657,0,3-1.343,3-3V8c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v39\r\n\t\t\tC9,48.657,10.343,50,12,50z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M29,50h6c1.657,0,3-1.343,3-3V22c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3\r\n\t\t\tv25C26,48.657,27.343,50,29,50z M46,50h6c1.657,0,3-1.343,3-3V36c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v11\r\n\t\t\tC43,48.657,44.343,50,46,50z M61.5,53h-59C1.119,53,0,54.12,0,55.5v1C0,57.881,1.119,59,2.5,59h59c1.381,0,2.5-1.119,2.5-2.5v-1\r\n\t\t\tC64,54.12,62.881,53,61.5,53z M12,50h6c1.657,0,3-1.343,3-3V8c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v39\r\n\t\t\tC9,48.657,10.343,50,12,50z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.bar_chart_3 = bar_chart_3; \ No newline at end of file diff --git a/dist/ikons/bar_graph.js b/dist/ikons/bar_graph.js new file mode 100644 index 000000000..5c3f780af --- /dev/null +++ b/dist/ikons/bar_graph.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bar_graph = void 0; +var bar_graph = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "BAR_GRAPH_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "BAR_GRAPH" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "BAR_GRAPH" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M48,50h6c1.657,0,3-1.343,3-3V26c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v21C45,48.657,46.343,50,48,50z M31,50h6\r\n\t\t\t\tc1.657,0,3-1.343,3-3V14c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v33C28,48.657,29.343,50,31,50z M61,53H6v-7l0,0V8\r\n\t\t\t\tc0-1.657-1.343-3-3-3S0,6.343,0,8v48c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,54.344,62.657,53,61,53z M14,50h6\r\n\t\t\t\tc1.657,0,3-1.343,3-3v-6c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v6C11,48.657,12.343,50,14,50z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M48,50h6c1.657,0,3-1.343,3-3V26c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v21C45,48.657,46.343,50,48,50z M31,50h6\r\n\t\t\t\tc1.657,0,3-1.343,3-3V14c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v33C28,48.657,29.343,50,31,50z M61,53H6v-7l0,0V8\r\n\t\t\t\tc0-1.657-1.343-3-3-3S0,6.343,0,8v48c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,54.344,62.657,53,61,53z M14,50h6\r\n\t\t\t\tc1.657,0,3-1.343,3-3v-6c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v6C11,48.657,12.343,50,14,50z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.bar_graph = bar_graph; \ No newline at end of file diff --git a/dist/ikons/basket.js b/dist/ikons/basket.js new file mode 100644 index 000000000..233e09ada --- /dev/null +++ b/dist/ikons/basket.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basket = void 0; +var basket = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "BASKET_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "BASKET" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "BASKET" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M64,27.987c0-0.006-0.001-0.012-0.001-0.019c-0.001-0.074-0.005-0.148-0.011-0.221c-0.004-0.042-0.008-0.084-0.014-0.125\r\n\t\t\t\tc-0.004-0.04-0.011-0.08-0.017-0.12c-0.22-1.342-1.327-2.386-2.703-2.502H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h2.658l6.432,25.729\r\n\t\t\t\tl0.009-0.002C12.424,58.029,13.595,59,15,59l0,0c0.005,0,0.01-0.001,0.016-0.001V59H49c1.404,0,2.576-0.971,2.9-2.275l0.01,0.002\r\n\t\t\t\tL58.342,31H61c1.657,0,3-1.343,3-3c0-0.002,0-0.003,0-0.005C64,27.992,64,27.99,64,27.987z M23,50c0,1.657-1.343,3-3,3\r\n\t\t\t\ts-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3\r\n\t\t\t\ts3,1.343,3,3V50z M47,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35.383,9.469L42.018,22\r\n\t\t\t\th6.789L40.686,6.662l-0.011,0.006C40.184,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3c0,0.534,0.15,1.028,0.396,1.462L35.383,9.469\r\n\t\t\t\tz M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3c-1.175,0-2.181,0.682-2.674,1.665L23.32,6.662\r\n\t\t\t\tL15.2,22h6.789L28.623,9.469z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M64,27.987c0-0.006-0.001-0.012-0.001-0.019c-0.001-0.074-0.005-0.148-0.011-0.221c-0.004-0.042-0.008-0.084-0.014-0.125\r\n\t\t\t\tc-0.004-0.04-0.011-0.08-0.017-0.12c-0.22-1.342-1.327-2.386-2.703-2.502H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h2.658l6.432,25.729\r\n\t\t\t\tl0.009-0.002C12.424,58.029,13.595,59,15,59l0,0c0.005,0,0.01-0.001,0.016-0.001V59H49c1.404,0,2.576-0.971,2.9-2.275l0.01,0.002\r\n\t\t\t\tL58.342,31H61c1.657,0,3-1.343,3-3c0-0.002,0-0.003,0-0.005C64,27.992,64,27.99,64,27.987z M23,50c0,1.657-1.343,3-3,3\r\n\t\t\t\ts-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3\r\n\t\t\t\ts3,1.343,3,3V50z M47,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35.383,9.469L42.018,22\r\n\t\t\t\th6.789L40.686,6.662l-0.011,0.006C40.184,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3c0,0.534,0.15,1.028,0.396,1.462L35.383,9.469\r\n\t\t\t\tz M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3c-1.175,0-2.181,0.682-2.674,1.665L23.32,6.662\r\n\t\t\t\tL15.2,22h6.789L28.623,9.469z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.basket = basket; \ No newline at end of file diff --git a/dist/ikons/basket_add.js b/dist/ikons/basket_add.js new file mode 100644 index 000000000..1c06712f1 --- /dev/null +++ b/dist/ikons/basket_add.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basket_add = void 0; +var basket_add = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "BASKET__x2F__ADD_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "BASKET__x2F__ADD" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "BASKET__x2F__ADD" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3c-1.175,0-2.181,0.682-2.674,1.665\r\n\t\t\t\tL23.32,6.662L15.2,22h6.789L28.623,9.469z M35.383,9.469l3.329,6.289c1.313-1.574,2.922-2.89,4.742-3.866l-2.769-5.23\r\n\t\t\t\tl-0.012,0.006C40.184,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3c0,0.534,0.15,1.028,0.396,1.462L35.383,9.469z M51,13\r\n\t\t\t\tc-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13s13-5.82,13-13C64,18.82,58.18,13,51,13z M57,29h-3v3c0,1.657-1.343,3-3,3\r\n\t\t\t\ts-3-1.343-3-3v-3h-3c-1.657,0-3-1.343-3-3s1.343-3,3-3h3v-3c0-1.657,1.343-3,3-3s3,1.343,3,3v3h3c1.657,0,3,1.343,3,3\r\n\t\t\t\tS58.657,29,57,29z M47,41.477V50c0,1.657-1.343,3-3,3s-3-1.343-3-3V38.479C37.346,35.547,35,31.05,35,26\r\n\t\t\t\tc0-0.338,0.029-0.668,0.051-1H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h2.658l6.432,25.729l0.009-0.002C12.424,58.029,13.595,59,15,59\r\n\t\t\t\tl0,0c0.005,0,0.01-0.001,0.016-0.001V59H49c1.404,0,2.576-0.971,2.9-2.275l0.01,0.002l3.863-15.453\r\n\t\t\t\tC54.266,41.746,52.663,42,51,42C49.616,42,48.281,41.807,47,41.477z M23,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34\r\n\t\t\t\tc0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3c-1.175,0-2.181,0.682-2.674,1.665\r\n\t\t\t\tL23.32,6.662L15.2,22h6.789L28.623,9.469z M35.383,9.469l3.329,6.289c1.313-1.574,2.922-2.89,4.742-3.866l-2.769-5.23\r\n\t\t\t\tl-0.012,0.006C40.184,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3c0,0.534,0.15,1.028,0.396,1.462L35.383,9.469z M51,13\r\n\t\t\t\tc-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13s13-5.82,13-13C64,18.82,58.18,13,51,13z M57,29h-3v3c0,1.657-1.343,3-3,3\r\n\t\t\t\ts-3-1.343-3-3v-3h-3c-1.657,0-3-1.343-3-3s1.343-3,3-3h3v-3c0-1.657,1.343-3,3-3s3,1.343,3,3v3h3c1.657,0,3,1.343,3,3\r\n\t\t\t\tS58.657,29,57,29z M47,41.477V50c0,1.657-1.343,3-3,3s-3-1.343-3-3V38.479C37.346,35.547,35,31.05,35,26\r\n\t\t\t\tc0-0.338,0.029-0.668,0.051-1H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h2.658l6.432,25.729l0.009-0.002C12.424,58.029,13.595,59,15,59\r\n\t\t\t\tl0,0c0.005,0,0.01-0.001,0.016-0.001V59H49c1.404,0,2.576-0.971,2.9-2.275l0.01,0.002l3.863-15.453\r\n\t\t\t\tC54.266,41.746,52.663,42,51,42C49.616,42,48.281,41.807,47,41.477z M23,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34\r\n\t\t\t\tc0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.basket_add = basket_add; \ No newline at end of file diff --git a/dist/ikons/basket_delete.js b/dist/ikons/basket_delete.js new file mode 100644 index 000000000..379cc723a --- /dev/null +++ b/dist/ikons/basket_delete.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basket_delete = void 0; +var basket_delete = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "BASKET__x2F__DELETE_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "BASKET__x2F__DELETE" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "BASKET__x2F__DELETE" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3c-1.175,0-2.181,0.682-2.674,1.665\r\n\t\t\t\tL23.32,6.662L15.2,22h6.789L28.623,9.469z M35.383,9.469l3.329,6.289c1.313-1.574,2.922-2.89,4.742-3.866l-2.769-5.23\r\n\t\t\t\tl-0.012,0.006C40.184,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3c0,0.534,0.15,1.028,0.396,1.462L35.383,9.469z M47,41.477V50\r\n\t\t\t\tc0,1.657-1.343,3-3,3s-3-1.343-3-3V38.479C37.346,35.547,35,31.05,35,26c0-0.338,0.029-0.668,0.05-1H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h2.658l6.432,25.729l0.009-0.002C12.424,58.029,13.595,59,15,59l0,0c0.005,0,0.01-0.001,0.016-0.001V59H49\r\n\t\t\t\tc1.404,0,2.576-0.971,2.9-2.275l0.01,0.002l3.863-15.453C54.266,41.746,52.663,42,51,42C49.616,42,48.281,41.807,47,41.477z\r\n\t\t\t\t M23,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34\r\n\t\t\t\tc0-1.657,1.343-3,3-3s3,1.343,3,3V50z M51,13c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13s13-5.82,13-13C64,18.82,58.18,13,51,13\r\n\t\t\t\tz M57.121,27.879C57.664,28.422,58,29.172,58,30c0,1.657-1.343,3-3,3c-0.828,0-1.578-0.336-2.121-0.879L51,30.243l-1.879,1.879\r\n\t\t\t\tC48.578,32.664,47.828,33,47,33c-1.657,0-3-1.343-3-3c0-0.829,0.336-1.578,0.879-2.121L46.757,26l-1.879-1.879\r\n\t\t\t\tC44.336,23.578,44,22.828,44,22c0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879L51,21.757l1.879-1.879\r\n\t\t\t\tC53.422,19.336,54.172,19,55,19c1.657,0,3,1.343,3,3c0,0.828-0.336,1.578-0.879,2.121L55.243,26L57.121,27.879z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3c-1.175,0-2.181,0.682-2.674,1.665\r\n\t\t\t\tL23.32,6.662L15.2,22h6.789L28.623,9.469z M35.383,9.469l3.329,6.289c1.313-1.574,2.922-2.89,4.742-3.866l-2.769-5.23\r\n\t\t\t\tl-0.012,0.006C40.184,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3c0,0.534,0.15,1.028,0.396,1.462L35.383,9.469z M47,41.477V50\r\n\t\t\t\tc0,1.657-1.343,3-3,3s-3-1.343-3-3V38.479C37.346,35.547,35,31.05,35,26c0-0.338,0.029-0.668,0.05-1H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h2.658l6.432,25.729l0.009-0.002C12.424,58.029,13.595,59,15,59l0,0c0.005,0,0.01-0.001,0.016-0.001V59H49\r\n\t\t\t\tc1.404,0,2.576-0.971,2.9-2.275l0.01,0.002l3.863-15.453C54.266,41.746,52.663,42,51,42C49.616,42,48.281,41.807,47,41.477z\r\n\t\t\t\t M23,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34\r\n\t\t\t\tc0-1.657,1.343-3,3-3s3,1.343,3,3V50z M51,13c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13s13-5.82,13-13C64,18.82,58.18,13,51,13\r\n\t\t\t\tz M57.121,27.879C57.664,28.422,58,29.172,58,30c0,1.657-1.343,3-3,3c-0.828,0-1.578-0.336-2.121-0.879L51,30.243l-1.879,1.879\r\n\t\t\t\tC48.578,32.664,47.828,33,47,33c-1.657,0-3-1.343-3-3c0-0.829,0.336-1.578,0.879-2.121L46.757,26l-1.879-1.879\r\n\t\t\t\tC44.336,23.578,44,22.828,44,22c0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879L51,21.757l1.879-1.879\r\n\t\t\t\tC53.422,19.336,54.172,19,55,19c1.657,0,3,1.343,3,3c0,0.828-0.336,1.578-0.879,2.121L55.243,26L57.121,27.879z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.basket_delete = basket_delete; \ No newline at end of file diff --git a/dist/ikons/basket_ok.js b/dist/ikons/basket_ok.js new file mode 100644 index 000000000..0f4890d98 --- /dev/null +++ b/dist/ikons/basket_ok.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basket_ok = void 0; +var basket_ok = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "BASKET__x2F__OK_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "BASKET__x2F__OK" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "BASKET__x2F__OK" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M35.383,9.469l3.329,6.289c1.313-1.574,2.922-2.89,4.742-3.866l-2.769-5.23l-0.012,0.006C40.184,5.683,39.176,5,38,5\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.534,0.15,1.028,0.396,1.462L35.383,9.469z M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-1.175,0-2.181,0.682-2.674,1.665L23.32,6.662L15.2,22h6.789L28.623,9.469z M47,41.477V50\r\n\t\t\t\tc0,1.657-1.343,3-3,3s-3-1.343-3-3V38.479C37.346,35.547,35,31.05,35,26c0-0.338,0.029-0.668,0.05-1H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h2.658l6.432,25.729l0.009-0.002C12.424,58.029,13.595,59,15,59l0,0c0.005,0,0.01-0.001,0.016-0.001V59H49\r\n\t\t\t\tc1.404,0,2.576-0.971,2.9-2.275l0.01,0.002l3.863-15.453C54.266,41.746,52.663,42,51,42C49.616,42,48.281,41.807,47,41.477z\r\n\t\t\t\t M23,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34\r\n\t\t\t\tc0-1.657,1.343-3,3-3s3,1.343,3,3V50z M51,13c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13s13-5.82,13-13C64,18.82,58.18,13,51,13\r\n\t\t\t\tz M59.121,25.122l-8,8C50.578,33.664,49.829,34,49,34c-0.828,0-1.578-0.336-2.121-0.879l-4-4C42.336,28.579,42,27.828,42,27\r\n\t\t\t\tc0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879L49,26.758l5.879-5.879C55.422,20.336,56.172,20,57,20c1.657,0,3,1.343,3,3\r\n\t\t\t\tC60,23.828,59.664,24.579,59.121,25.122z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M35.383,9.469l3.329,6.289c1.313-1.574,2.922-2.89,4.742-3.866l-2.769-5.23l-0.012,0.006C40.184,5.683,39.176,5,38,5\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.534,0.15,1.028,0.396,1.462L35.383,9.469z M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-1.175,0-2.181,0.682-2.674,1.665L23.32,6.662L15.2,22h6.789L28.623,9.469z M47,41.477V50\r\n\t\t\t\tc0,1.657-1.343,3-3,3s-3-1.343-3-3V38.479C37.346,35.547,35,31.05,35,26c0-0.338,0.029-0.668,0.05-1H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h2.658l6.432,25.729l0.009-0.002C12.424,58.029,13.595,59,15,59l0,0c0.005,0,0.01-0.001,0.016-0.001V59H49\r\n\t\t\t\tc1.404,0,2.576-0.971,2.9-2.275l0.01,0.002l3.863-15.453C54.266,41.746,52.663,42,51,42C49.616,42,48.281,41.807,47,41.477z\r\n\t\t\t\t M23,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34\r\n\t\t\t\tc0-1.657,1.343-3,3-3s3,1.343,3,3V50z M51,13c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13s13-5.82,13-13C64,18.82,58.18,13,51,13\r\n\t\t\t\tz M59.121,25.122l-8,8C50.578,33.664,49.829,34,49,34c-0.828,0-1.578-0.336-2.121-0.879l-4-4C42.336,28.579,42,27.828,42,27\r\n\t\t\t\tc0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879L49,26.758l5.879-5.879C55.422,20.336,56.172,20,57,20c1.657,0,3,1.343,3,3\r\n\t\t\t\tC60,23.828,59.664,24.579,59.121,25.122z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.basket_ok = basket_ok; \ No newline at end of file diff --git a/dist/ikons/basket_remove.js b/dist/ikons/basket_remove.js new file mode 100644 index 000000000..3882ca89d --- /dev/null +++ b/dist/ikons/basket_remove.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basket_remove = void 0; +var basket_remove = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "BASKET__x2F__REMOVE_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "BASKET__x2F__REMOVE" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "BASKET__x2F__REMOVE" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3c-1.175,0-2.181,0.682-2.673,1.665\r\n\t\t\t\tL23.32,6.662L15.2,22h6.789L28.623,9.469z M35.383,9.469l3.329,6.289c1.313-1.574,2.922-2.89,4.742-3.866l-2.769-5.23\r\n\t\t\t\tl-0.012,0.006C40.184,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3c0,0.534,0.15,1.028,0.396,1.462L35.383,9.469z M47,41.477V50\r\n\t\t\t\tc0,1.657-1.343,3-3,3s-3-1.343-3-3V38.479C37.346,35.547,35,31.05,35,26c0-0.338,0.029-0.668,0.05-1H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h2.658l6.432,25.729l0.009-0.002C12.424,58.029,13.595,59,15,59l0,0c0.005,0,0.01-0.001,0.016-0.001V59H49\r\n\t\t\t\tc1.404,0,2.576-0.971,2.9-2.275l0.01,0.002l3.863-15.453C54.266,41.746,52.663,42,51,42C49.616,42,48.281,41.807,47,41.477z\r\n\t\t\t\t M23,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34\r\n\t\t\t\tc0-1.657,1.343-3,3-3s3,1.343,3,3V50z M51,13c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13s13-5.82,13-13C64,18.82,58.18,13,51,13\r\n\t\t\t\tz M57,29H45c-1.657,0-3-1.343-3-3s1.343-3,3-3h12c1.657,0,3,1.343,3,3S58.657,29,57,29z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3c-1.175,0-2.181,0.682-2.673,1.665\r\n\t\t\t\tL23.32,6.662L15.2,22h6.789L28.623,9.469z M35.383,9.469l3.329,6.289c1.313-1.574,2.922-2.89,4.742-3.866l-2.769-5.23\r\n\t\t\t\tl-0.012,0.006C40.184,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3c0,0.534,0.15,1.028,0.396,1.462L35.383,9.469z M47,41.477V50\r\n\t\t\t\tc0,1.657-1.343,3-3,3s-3-1.343-3-3V38.479C37.346,35.547,35,31.05,35,26c0-0.338,0.029-0.668,0.05-1H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h2.658l6.432,25.729l0.009-0.002C12.424,58.029,13.595,59,15,59l0,0c0.005,0,0.01-0.001,0.016-0.001V59H49\r\n\t\t\t\tc1.404,0,2.576-0.971,2.9-2.275l0.01,0.002l3.863-15.453C54.266,41.746,52.663,42,51,42C49.616,42,48.281,41.807,47,41.477z\r\n\t\t\t\t M23,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34\r\n\t\t\t\tc0-1.657,1.343-3,3-3s3,1.343,3,3V50z M51,13c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13s13-5.82,13-13C64,18.82,58.18,13,51,13\r\n\t\t\t\tz M57,29H45c-1.657,0-3-1.343-3-3s1.343-3,3-3h12c1.657,0,3,1.343,3,3S58.657,29,57,29z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.basket_remove = basket_remove; \ No newline at end of file diff --git a/dist/ikons/battery_1_3.js b/dist/ikons/battery_1_3.js new file mode 100644 index 000000000..b4ed20862 --- /dev/null +++ b/dist/ikons/battery_1_3.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.battery_1_3 = void 0; +var battery_1_3 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "BATTERY__x2F__1_x2F_3_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "BATTERY__x2F__1_x2F_3" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "BATTERY__x2F__1_x2F_3" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,26H9v12h13V26z M61,26v-6c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v24c0,1.657,1.343,3,3,3h55\r\n\t\t\t\tc1.657,0,3-1.343,3-3v-6c1.657,0,3-1.343,3-3v-6C64,27.343,62.657,26,61,26z M55,41H6V23h49V41z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,26H9v12h13V26z M61,26v-6c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v24c0,1.657,1.343,3,3,3h55\r\n\t\t\t\tc1.657,0,3-1.343,3-3v-6c1.657,0,3-1.343,3-3v-6C64,27.343,62.657,26,61,26z M55,41H6V23h49V41z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.battery_1_3 = battery_1_3; \ No newline at end of file diff --git a/dist/ikons/battery_2_3.js b/dist/ikons/battery_2_3.js new file mode 100644 index 000000000..c984eb5b4 --- /dev/null +++ b/dist/ikons/battery_2_3.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.battery_2_3 = void 0; +var battery_2_3 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "BATTERY__x2F__2_x2F_3_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "BATTERY__x2F__2_x2F_3" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "BATTERY__x2F__2_x2F_3" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M37,26H9v12h28V26z M61,26v-6c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v24c0,1.657,1.343,3,3,3h55\r\n\t\t\t\tc1.657,0,3-1.343,3-3v-6c1.657,0,3-1.343,3-3v-6C64,27.343,62.657,26,61,26z M55,41H6V23h49V41z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M37,26H9v12h28V26z M61,26v-6c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v24c0,1.657,1.343,3,3,3h55\r\n\t\t\t\tc1.657,0,3-1.343,3-3v-6c1.657,0,3-1.343,3-3v-6C64,27.343,62.657,26,61,26z M55,41H6V23h49V41z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.battery_2_3 = battery_2_3; \ No newline at end of file diff --git a/dist/ikons/battery_empty.js b/dist/ikons/battery_empty.js new file mode 100644 index 000000000..52a016150 --- /dev/null +++ b/dist/ikons/battery_empty.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.battery_empty = void 0; +var battery_empty = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "BATTERY__x2F__EMPTY_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "BATTERY__x2F__EMPTY" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "BATTERY__x2F__EMPTY" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M61,26v-6c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v24c0,1.657,1.343,3,3,3h55c1.657,0,3-1.343,3-3v-6\r\n\t\t\t\tc1.657,0,3-1.343,3-3v-6C64,27.343,62.657,26,61,26z M55,41H6V23h49V41z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M61,26v-6c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v24c0,1.657,1.343,3,3,3h55c1.657,0,3-1.343,3-3v-6\r\n\t\t\t\tc1.657,0,3-1.343,3-3v-6C64,27.343,62.657,26,61,26z M55,41H6V23h49V41z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.battery_empty = battery_empty; \ No newline at end of file diff --git a/dist/ikons/battery_full.js b/dist/ikons/battery_full.js new file mode 100644 index 000000000..2eefa02f9 --- /dev/null +++ b/dist/ikons/battery_full.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.battery_full = void 0; +var battery_full = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "BATTERY_FULL_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "BATTERY_FULL" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "BATTERY_FULL" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M61,26v-6c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v24c0,1.657,1.343,3,3,3h55c1.657,0,3-1.343,3-3v-6\r\n\t\t\t\tc1.657,0,3-1.343,3-3v-6C64,27.343,62.657,26,61,26z M55,41H6V23h49V41z M52,26H9v12h43V26z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M61,26v-6c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v24c0,1.657,1.343,3,3,3h55c1.657,0,3-1.343,3-3v-6\r\n\t\t\t\tc1.657,0,3-1.343,3-3v-6C64,27.343,62.657,26,61,26z M55,41H6V23h49V41z M52,26H9v12h43V26z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.battery_full = battery_full; \ No newline at end of file diff --git a/dist/ikons/behance.js b/dist/ikons/behance.js new file mode 100644 index 000000000..5c3a3f27b --- /dev/null +++ b/dist/ikons/behance.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.behance = void 0; +var behance = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "behance_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "behance" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "behance" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M25.989,30.502c3.455-1.68,5.402-4.417,5.402-8.338c0-7.438-5.12-10.15-12.686-10.15H0.001v40.192h19.255\r\n\t\t\t\tc7.179,0,14.027-3.472,14.027-11.584C33.284,35.646,30.836,31.901,25.989,30.502z M7.991,18.774h8.18\r\n\t\t\t\tc3.115,0,6.01,0.786,6.01,4.591c0,3.352-2.283,4.749-5.343,4.749H7.991V18.774z M17.338,45.062H7.991V34.098h9.513\r\n\t\t\t\tc3.73,0,6.288,1.625,6.288,5.707C23.792,43.947,20.789,45.062,17.338,45.062z M57.973,15.993H42.027v4.072h15.943v-4.072H57.973z\r\n\t\t\t\t M50.05,22.502c-8.735,0-14.692,6.601-14.692,15.273c0,8.947,5.621,15.211,14.692,15.211c6.515,0,10.62-1.965,12.843-8.789\r\n\t\t\t\th-6.328c-0.502,1.793-3.064,2.806-6.238,2.806c-4.395,0-6.844-1.854-7.064-6.892h20.756\r\n\t\t\t\tC64.574,31.219,59.843,22.502,50.05,22.502z M43.262,34.198c0.109-2.234,1.557-5.709,6.563-5.709\r\n\t\t\t\tc3.839,0,5.567,1.684,6.293,5.709H43.262z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M25.989,30.502c3.455-1.68,5.402-4.417,5.402-8.338c0-7.438-5.12-10.15-12.686-10.15H0.001v40.192h19.255\r\n\t\t\t\tc7.179,0,14.027-3.472,14.027-11.584C33.284,35.646,30.836,31.901,25.989,30.502z M7.991,18.774h8.18\r\n\t\t\t\tc3.115,0,6.01,0.786,6.01,4.591c0,3.352-2.283,4.749-5.343,4.749H7.991V18.774z M17.338,45.062H7.991V34.098h9.513\r\n\t\t\t\tc3.73,0,6.288,1.625,6.288,5.707C23.792,43.947,20.789,45.062,17.338,45.062z M57.973,15.993H42.027v4.072h15.943v-4.072H57.973z\r\n\t\t\t\t M50.05,22.502c-8.735,0-14.692,6.601-14.692,15.273c0,8.947,5.621,15.211,14.692,15.211c6.515,0,10.62-1.965,12.843-8.789\r\n\t\t\t\th-6.328c-0.502,1.793-3.064,2.806-6.238,2.806c-4.395,0-6.844-1.854-7.064-6.892h20.756\r\n\t\t\t\tC64.574,31.219,59.843,22.502,50.05,22.502z M43.262,34.198c0.109-2.234,1.557-5.709,6.563-5.709\r\n\t\t\t\tc3.839,0,5.567,1.684,6.293,5.709H43.262z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.behance = behance; \ No newline at end of file diff --git a/dist/ikons/bell.js b/dist/ikons/bell.js new file mode 100644 index 000000000..c8a80c1a7 --- /dev/null +++ b/dist/ikons/bell.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bell = void 0; +var bell = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "BELL_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "BELL" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "BELL" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M52,45c-1.657,0-3-1.343-3-3V22c0-7.732-6.268-14-14-14c0-1.657-1.343-3-3-3s-3,1.343-3,3c-7.732,0-14,6.268-14,14v20\r\n\t\t\t\tc0,1.657-1.343,3-3,3s-3,1.343-3,3s1.343,3,3,3h40c1.657,0,3-1.343,3-3S53.657,45,52,45z M32,60c3.314,0,6-2.686,6-6H26\r\n\t\t\t\tC26,57.314,28.686,60,32,60z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M52,45c-1.657,0-3-1.343-3-3V22c0-7.732-6.268-14-14-14c0-1.657-1.343-3-3-3s-3,1.343-3,3c-7.732,0-14,6.268-14,14v20\r\n\t\t\t\tc0,1.657-1.343,3-3,3s-3,1.343-3,3s1.343,3,3,3h40c1.657,0,3-1.343,3-3S53.657,45,52,45z M32,60c3.314,0,6-2.686,6-6H26\r\n\t\t\t\tC26,57.314,28.686,60,32,60z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.bell = bell; \ No newline at end of file diff --git a/dist/ikons/bin.js b/dist/ikons/bin.js new file mode 100644 index 000000000..70a6ba4a3 --- /dev/null +++ b/dist/ikons/bin.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bin = void 0; +var bin = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "BIN_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "BIN" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "BIN" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M53,9H38V6c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v3H11c-1.657,0-3,1.343-3,3v3h48v-3C56,10.343,54.657,9,53,9z\r\n\t\t\t\t M11,58c0,1.657,1.343,3,3,3h36c1.657,0,3-1.343,3-3V18H11V58z M41,27c0-1.657,1.343-3,3-3s3,1.343,3,3v25c0,1.657-1.343,3-3,3\r\n\t\t\t\ts-3-1.343-3-3V27z M29,27c0-1.657,1.343-3,3-3s3,1.343,3,3v25c0,1.657-1.343,3-3,3s-3-1.343-3-3V27z M17,27c0-1.657,1.343-3,3-3\r\n\t\t\t\ts3,1.343,3,3v25c0,1.657-1.343,3-3,3s-3-1.343-3-3V27z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M53,9H38V6c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v3H11c-1.657,0-3,1.343-3,3v3h48v-3C56,10.343,54.657,9,53,9z\r\n\t\t\t\t M11,58c0,1.657,1.343,3,3,3h36c1.657,0,3-1.343,3-3V18H11V58z M41,27c0-1.657,1.343-3,3-3s3,1.343,3,3v25c0,1.657-1.343,3-3,3\r\n\t\t\t\ts-3-1.343-3-3V27z M29,27c0-1.657,1.343-3,3-3s3,1.343,3,3v25c0,1.657-1.343,3-3,3s-3-1.343-3-3V27z M17,27c0-1.657,1.343-3,3-3\r\n\t\t\t\ts3,1.343,3,3v25c0,1.657-1.343,3-3,3s-3-1.343-3-3V27z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.bin = bin; \ No newline at end of file diff --git a/dist/ikons/block.js b/dist/ikons/block.js new file mode 100644 index 000000000..7234d6640 --- /dev/null +++ b/dist/ikons/block.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.block = void 0; +var block = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "BLOCK_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "BLOCK" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "BLOCK" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tc0-6.098,2.115-11.694,5.63-16.128L48.128,52.37C43.693,55.886,38.098,58,32,58z M52.37,48.128L15.873,11.63\r\n\t\t\t\tC20.307,8.115,25.902,6,32,6c14.359,0,26,11.641,26,26C58,38.098,55.887,43.693,52.37,48.128z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tc0-6.098,2.115-11.694,5.63-16.128L48.128,52.37C43.693,55.886,38.098,58,32,58z M52.37,48.128L15.873,11.63\r\n\t\t\t\tC20.307,8.115,25.902,6,32,6c14.359,0,26,11.641,26,26C58,38.098,55.887,43.693,52.37,48.128z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.block = block; \ No newline at end of file diff --git a/dist/ikons/bluetooth.js b/dist/ikons/bluetooth.js new file mode 100644 index 000000000..9e2bc841a --- /dev/null +++ b/dist/ikons/bluetooth.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bluetooth = void 0; +var bluetooth = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "BLUETOOTH" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M37.243,32l11.879-11.879C49.664,19.578,50,18.829,50,18\r\n\t\t\tc0-0.829-0.336-1.578-0.879-2.121l-15-15C33.578,0.336,32.828,0,32,0c-1.657,0-3,1.343-3,3v20.758l-9.879-9.879\r\n\t\t\tC18.579,13.336,17.828,13,17,13c-1.657,0-3,1.343-3,3c0,0.829,0.336,1.578,0.879,2.121L28.758,32L14.879,45.879\r\n\t\t\tC14.336,46.422,14,47.172,14,48c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L29,40.243V61c0,1.657,1.343,3,3,3\r\n\t\t\tc0.828,0,1.578-0.336,2.121-0.879l15-15C49.664,47.579,50,46.829,50,46c0-0.828-0.336-1.578-0.879-2.121L37.243,32z M35,10.243\r\n\t\t\tL42.757,18L35,25.757V10.243z M35,53.757V38.243L42.757,46L35,53.757z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M37.243,32l11.879-11.879C49.664,19.578,50,18.829,50,18\r\n\t\t\tc0-0.829-0.336-1.578-0.879-2.121l-15-15C33.578,0.336,32.828,0,32,0c-1.657,0-3,1.343-3,3v20.758l-9.879-9.879\r\n\t\t\tC18.579,13.336,17.828,13,17,13c-1.657,0-3,1.343-3,3c0,0.829,0.336,1.578,0.879,2.121L28.758,32L14.879,45.879\r\n\t\t\tC14.336,46.422,14,47.172,14,48c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L29,40.243V61c0,1.657,1.343,3,3,3\r\n\t\t\tc0.828,0,1.578-0.336,2.121-0.879l15-15C49.664,47.579,50,46.829,50,46c0-0.828-0.336-1.578-0.879-2.121L37.243,32z M35,10.243\r\n\t\t\tL42.757,18L35,25.757V10.243z M35,53.757V38.243L42.757,46L35,53.757z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.bluetooth = bluetooth; \ No newline at end of file diff --git a/dist/ikons/book.js b/dist/ikons/book.js new file mode 100644 index 000000000..5e25f58dc --- /dev/null +++ b/dist/ikons/book.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.book = void 0; +var book = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "BOOK_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "BOOK" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "BOOK" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M10,18h8c1.657,0,3-1.343,3-3s-1.343-3-3-3h-8c-1.657,0-3,1.343-3,3S8.343,18,10,18z M10,35h8c1.657,0,3-1.343,3-3\r\n\t\t\t\ts-1.343-3-3-3h-8c-1.657,0-3,1.343-3,3S8.343,35,10,35z M54,3h-3v58h3c1.657,0,3-1.343,3-3V6C57,4.343,55.657,3,54,3z M13,6v3h5\r\n\t\t\t\tc3.314,0,6,2.686,6,6s-2.686,6-6,6h-5v5h5c3.314,0,6,2.686,6,6c0,3.314-2.686,6-6,6h-5v5h5c3.314,0,6,2.686,6,6s-2.686,6-6,6h-5\r\n\t\t\t\tv3c0,1.657,1.343,3,3,3h32V3H16C14.343,3,13,4.343,13,6z M21,49c0-1.657-1.343-3-3-3h-8c-1.657,0-3,1.343-3,3s1.343,3,3,3h8\r\n\t\t\t\tC19.657,52,21,50.657,21,49z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M10,18h8c1.657,0,3-1.343,3-3s-1.343-3-3-3h-8c-1.657,0-3,1.343-3,3S8.343,18,10,18z M10,35h8c1.657,0,3-1.343,3-3\r\n\t\t\t\ts-1.343-3-3-3h-8c-1.657,0-3,1.343-3,3S8.343,35,10,35z M54,3h-3v58h3c1.657,0,3-1.343,3-3V6C57,4.343,55.657,3,54,3z M13,6v3h5\r\n\t\t\t\tc3.314,0,6,2.686,6,6s-2.686,6-6,6h-5v5h5c3.314,0,6,2.686,6,6c0,3.314-2.686,6-6,6h-5v5h5c3.314,0,6,2.686,6,6s-2.686,6-6,6h-5\r\n\t\t\t\tv3c0,1.657,1.343,3,3,3h32V3H16C14.343,3,13,4.343,13,6z M21,49c0-1.657-1.343-3-3-3h-8c-1.657,0-3,1.343-3,3s1.343,3,3,3h8\r\n\t\t\t\tC19.657,52,21,50.657,21,49z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.book = book; \ No newline at end of file diff --git a/dist/ikons/book_1.js b/dist/ikons/book_1.js new file mode 100644 index 000000000..358514e4d --- /dev/null +++ b/dist/ikons/book_1.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.book_1 = void 0; +var book_1 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "BOOK_1_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "BOOK_1" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "BOOK_1" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M61,0c-0.406,0-0.794,0.082-1.146,0.228l0,0L59.848,0.23c-0.009,0.004-0.018,0.007-0.027,0.011L32,11.753L4.179,0.241\r\n\t\t\t\tC4.17,0.237,4.161,0.234,4.152,0.23L4.147,0.228l0,0C3.794,0.082,3.406,0,3,0C1.343,0,0,1.343,0,3v46\r\n\t\t\t\tc0,1.257,0.774,2.333,1.871,2.779l28.942,11.977C31.177,63.913,31.578,64,32,64s0.823-0.087,1.188-0.245l28.941-11.976\r\n\t\t\t\tC63.227,51.333,64,50.257,64,49V3C64,1.343,62.657,0,61,0z M29,56.512L6,46.995V7.488l23,9.517V56.512z M58,46.995l-23,9.517\r\n\t\t\t\tV17.005l23-9.517V46.995z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M61,0c-0.406,0-0.794,0.082-1.146,0.228l0,0L59.848,0.23c-0.009,0.004-0.018,0.007-0.027,0.011L32,11.753L4.179,0.241\r\n\t\t\t\tC4.17,0.237,4.161,0.234,4.152,0.23L4.147,0.228l0,0C3.794,0.082,3.406,0,3,0C1.343,0,0,1.343,0,3v46\r\n\t\t\t\tc0,1.257,0.774,2.333,1.871,2.779l28.942,11.977C31.177,63.913,31.578,64,32,64s0.823-0.087,1.188-0.245l28.941-11.976\r\n\t\t\t\tC63.227,51.333,64,50.257,64,49V3C64,1.343,62.657,0,61,0z M29,56.512L6,46.995V7.488l23,9.517V56.512z M58,46.995l-23,9.517\r\n\t\t\t\tV17.005l23-9.517V46.995z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.book_1 = book_1; \ No newline at end of file diff --git a/dist/ikons/book_2.js b/dist/ikons/book_2.js new file mode 100644 index 000000000..2624bf9ce --- /dev/null +++ b/dist/ikons/book_2.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.book_2 = void 0; +var book_2 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "BOOK_2_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "BOOK_2" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "BOOK_2" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M10.759,32.73L10.759,32.73l11,5l0,0C22.137,37.902,22.557,38,23,38c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-1.214-0.721-2.259-1.759-2.731l0,0l-11-5l0,0C12.863,27.097,12.443,27,12,27c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC9,31.214,9.721,32.259,10.759,32.73z M10.759,43.73L10.759,43.73l11,5l0,0C22.137,48.902,22.557,49,23,49c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-1.214-0.721-2.259-1.759-2.73l0,0l-11-5l0,0C12.863,38.098,12.443,38,12,38c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC9,42.214,9.721,43.259,10.759,43.73z M10.759,21.731L10.759,21.731l11,5l0,0C22.137,26.903,22.557,27,23,27c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-1.214-0.721-2.259-1.759-2.731l0,0l-11-5l0,0C12.863,16.097,12.443,16,12,16c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC9,20.214,9.721,21.259,10.759,21.731z M41,49c0.443,0,0.863-0.098,1.241-0.27l0,0l11-5l0,0C54.279,43.259,55,42.214,55,41\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.443,0-0.863,0.098-1.241,0.27l0,0l-11,5l0,0C38.721,43.741,38,44.786,38,46C38,47.657,39.343,49,41,49z\r\n\t\t\t\t M61,0c-0.406,0-0.794,0.082-1.146,0.228l0,0L59.848,0.23c-0.009,0.004-0.018,0.007-0.027,0.011L32,11.753L4.179,0.241\r\n\t\t\t\tC4.17,0.237,4.161,0.234,4.152,0.23L4.147,0.228l0,0C3.794,0.082,3.406,0,3,0C1.343,0,0,1.343,0,3v46\r\n\t\t\t\tc0,1.257,0.774,2.333,1.871,2.779l28.942,11.977C31.177,63.913,31.578,64,32,64s0.823-0.087,1.188-0.245l28.941-11.976\r\n\t\t\t\tC63.227,51.333,64,50.257,64,49V3C64,1.343,62.657,0,61,0z M29,56.512L6,46.995V7.488l23,9.517V56.512z M58,46.995l-23,9.517\r\n\t\t\t\tV17.005l23-9.517V46.995z M41,38c0.443,0,0.863-0.098,1.241-0.27l0,0l11-5C54.279,32.259,55,31.214,55,30c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.443,0-0.863,0.097-1.241,0.269l0,0l-11,5l0,0C38.721,32.741,38,33.786,38,35C38,36.657,39.343,38,41,38z M41,27\r\n\t\t\t\tc0.443,0,0.863-0.097,1.241-0.269l0,0l11-5l0,0C54.279,21.259,55,20.214,55,19c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.443,0-0.863,0.097-1.241,0.269l0,0l-11,5C38.721,21.741,38,22.786,38,24C38,25.657,39.343,27,41,27z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M10.759,32.73L10.759,32.73l11,5l0,0C22.137,37.902,22.557,38,23,38c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-1.214-0.721-2.259-1.759-2.731l0,0l-11-5l0,0C12.863,27.097,12.443,27,12,27c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC9,31.214,9.721,32.259,10.759,32.73z M10.759,43.73L10.759,43.73l11,5l0,0C22.137,48.902,22.557,49,23,49c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-1.214-0.721-2.259-1.759-2.73l0,0l-11-5l0,0C12.863,38.098,12.443,38,12,38c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC9,42.214,9.721,43.259,10.759,43.73z M10.759,21.731L10.759,21.731l11,5l0,0C22.137,26.903,22.557,27,23,27c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-1.214-0.721-2.259-1.759-2.731l0,0l-11-5l0,0C12.863,16.097,12.443,16,12,16c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC9,20.214,9.721,21.259,10.759,21.731z M41,49c0.443,0,0.863-0.098,1.241-0.27l0,0l11-5l0,0C54.279,43.259,55,42.214,55,41\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.443,0-0.863,0.098-1.241,0.27l0,0l-11,5l0,0C38.721,43.741,38,44.786,38,46C38,47.657,39.343,49,41,49z\r\n\t\t\t\t M61,0c-0.406,0-0.794,0.082-1.146,0.228l0,0L59.848,0.23c-0.009,0.004-0.018,0.007-0.027,0.011L32,11.753L4.179,0.241\r\n\t\t\t\tC4.17,0.237,4.161,0.234,4.152,0.23L4.147,0.228l0,0C3.794,0.082,3.406,0,3,0C1.343,0,0,1.343,0,3v46\r\n\t\t\t\tc0,1.257,0.774,2.333,1.871,2.779l28.942,11.977C31.177,63.913,31.578,64,32,64s0.823-0.087,1.188-0.245l28.941-11.976\r\n\t\t\t\tC63.227,51.333,64,50.257,64,49V3C64,1.343,62.657,0,61,0z M29,56.512L6,46.995V7.488l23,9.517V56.512z M58,46.995l-23,9.517\r\n\t\t\t\tV17.005l23-9.517V46.995z M41,38c0.443,0,0.863-0.098,1.241-0.27l0,0l11-5C54.279,32.259,55,31.214,55,30c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.443,0-0.863,0.097-1.241,0.269l0,0l-11,5l0,0C38.721,32.741,38,33.786,38,35C38,36.657,39.343,38,41,38z M41,27\r\n\t\t\t\tc0.443,0,0.863-0.097,1.241-0.269l0,0l11-5l0,0C54.279,21.259,55,20.214,55,19c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.443,0-0.863,0.097-1.241,0.269l0,0l-11,5C38.721,21.741,38,22.786,38,24C38,25.657,39.343,27,41,27z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.book_2 = book_2; \ No newline at end of file diff --git a/dist/ikons/bookmark.js b/dist/ikons/bookmark.js new file mode 100644 index 000000000..28f9b84c3 --- /dev/null +++ b/dist/ikons/bookmark.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bookmark = void 0; +var bookmark = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "BOOKMARK_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "BOOKMARK" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "BOOKMARK" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M41,5H23c-1.657,0-3,1.343-3,3v51l12-12l12,12V8C44,6.343,42.657,5,41,5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M41,5H23c-1.657,0-3,1.343-3,3v51l12-12l12,12V8C44,6.343,42.657,5,41,5z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.bookmark = bookmark; \ No newline at end of file diff --git a/dist/ikons/brightness_high.js b/dist/ikons/brightness_high.js new file mode 100644 index 000000000..ad6047baa --- /dev/null +++ b/dist/ikons/brightness_high.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.brightness_high = void 0; +var brightness_high = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "BRIGHTNESS__x2F__HIGH_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "BRIGHTNESS__x2F__HIGH" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "BRIGHTNESS__x2F__HIGH" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M14.879,19.121l0.009-0.009C15.427,19.659,16.17,20,17,20c1.657,0,3-1.343,3-3c0-0.83-0.341-1.573-0.887-2.113\r\n\t\t\t\tl0.009-0.009l-1.556-1.556l-5.445-5.445C11.578,7.336,10.828,7,10,7c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121\r\n\t\t\t\tL14.879,19.121z M47,20c0.83,0,1.573-0.342,2.113-0.888l0.009,0.009l1.555-1.556l5.444-5.444C56.664,11.578,57,10.828,57,10\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879l-5.443,5.445l-1.557,1.556l0.01,0.009C44.342,15.427,44,16.17,44,17\r\n\t\t\t\tC44,18.657,45.343,20,47,20z M32,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8C29,12.657,30.343,14,32,14z\r\n\t\t\t\t M14,32c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h8C12.657,35,14,33.657,14,32z M50.677,46.434l-1.555-1.556\r\n\t\t\t\tC48.578,44.336,47.828,44,47,44c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l1.557,1.556l5.443,5.444\r\n\t\t\t\tC52.422,56.664,53.172,57,54,57c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L50.677,46.434z M17,44\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879l-7,7C7.336,52.422,7,53.172,7,54c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879\r\n\t\t\t\tl5.445-5.444l1.556-1.556C19.664,48.579,20,47.828,20,47C20,45.343,18.657,44,17,44z M61,29h-8c-1.657,0-3,1.343-3,3s1.343,3,3,3\r\n\t\t\t\th8c1.657,0,3-1.343,3-3S62.657,29,61,29z M32,20c-6.627,0-12,5.373-12,12c0,1.021,0.141,2.007,0.381,2.953l1.183,2.958\r\n\t\t\t\tC23.627,41.544,27.524,44,32,44c6.627,0,12-5.372,12-12C44,25.373,38.627,20,32,20z M32,38c-3.314,0-6-2.686-6-6\r\n\t\t\t\tc0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6C38,35.314,35.314,38,32,38z M32,50c-1.657,0-3,1.343-3,3v8c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3v-8C35,51.343,33.657,50,32,50z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14.879,19.121l0.009-0.009C15.427,19.659,16.17,20,17,20c1.657,0,3-1.343,3-3c0-0.83-0.341-1.573-0.887-2.113\r\n\t\t\t\tl0.009-0.009l-1.556-1.556l-5.445-5.445C11.578,7.336,10.828,7,10,7c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121\r\n\t\t\t\tL14.879,19.121z M47,20c0.83,0,1.573-0.342,2.113-0.888l0.009,0.009l1.555-1.556l5.444-5.444C56.664,11.578,57,10.828,57,10\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879l-5.443,5.445l-1.557,1.556l0.01,0.009C44.342,15.427,44,16.17,44,17\r\n\t\t\t\tC44,18.657,45.343,20,47,20z M32,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8C29,12.657,30.343,14,32,14z\r\n\t\t\t\t M14,32c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h8C12.657,35,14,33.657,14,32z M50.677,46.434l-1.555-1.556\r\n\t\t\t\tC48.578,44.336,47.828,44,47,44c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l1.557,1.556l5.443,5.444\r\n\t\t\t\tC52.422,56.664,53.172,57,54,57c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L50.677,46.434z M17,44\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879l-7,7C7.336,52.422,7,53.172,7,54c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879\r\n\t\t\t\tl5.445-5.444l1.556-1.556C19.664,48.579,20,47.828,20,47C20,45.343,18.657,44,17,44z M61,29h-8c-1.657,0-3,1.343-3,3s1.343,3,3,3\r\n\t\t\t\th8c1.657,0,3-1.343,3-3S62.657,29,61,29z M32,20c-6.627,0-12,5.373-12,12c0,1.021,0.141,2.007,0.381,2.953l1.183,2.958\r\n\t\t\t\tC23.627,41.544,27.524,44,32,44c6.627,0,12-5.372,12-12C44,25.373,38.627,20,32,20z M32,38c-3.314,0-6-2.686-6-6\r\n\t\t\t\tc0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6C38,35.314,35.314,38,32,38z M32,50c-1.657,0-3,1.343-3,3v8c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3v-8C35,51.343,33.657,50,32,50z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.brightness_high = brightness_high; \ No newline at end of file diff --git a/dist/ikons/brightness_low.js b/dist/ikons/brightness_low.js new file mode 100644 index 000000000..e3735b3d5 --- /dev/null +++ b/dist/ikons/brightness_low.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.brightness_low = void 0; +var brightness_low = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "BRIGHTNESS__x2F__LOW_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "BRIGHTNESS__x2F__LOW" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "BRIGHTNESS__x2F__LOW" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12.879,17.122l2,2l0.009-0.009C15.427,19.659,16.17,20,17,20c1.657,0,3-1.343,3-3c0-0.83-0.341-1.573-0.888-2.113\r\n\t\t\t\tl0.009-0.009l-2-2l-0.009,0.009C16.573,12.341,15.83,12,15,12c-1.657,0-3,1.343-3,3c0,0.83,0.341,1.573,0.888,2.112\r\n\t\t\t\tL12.879,17.122z M47,20c0.83,0,1.573-0.342,2.113-0.888l0.009,0.009l2-2l-0.009-0.009C51.659,16.573,52,15.83,52,15\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.83,0-1.573,0.341-2.113,0.888l-0.009-0.009l-2,2l0.009,0.009C44.342,15.427,44,16.17,44,17\r\n\t\t\t\tC44,18.657,45.343,20,47,20z M14,32c0-1.657-1.343-3-3-3H9c-1.657,0-3,1.343-3,3s1.343,3,3,3h2C12.657,35,14,33.657,14,32z\r\n\t\t\t\t M32,14c1.657,0,3-1.343,3-3V9c0-1.657-1.343-3-3-3s-3,1.343-3,3v2C29,12.657,30.343,14,32,14z M32,20c-6.627,0-12,5.373-12,12\r\n\t\t\t\tc0,1.021,0.141,2.007,0.381,2.953l1.183,2.958C23.627,41.544,27.524,44,32,44c6.627,0,12-5.372,12-12C44,25.373,38.627,20,32,20z\r\n\t\t\t\t M32,38c-3.314,0-6-2.686-6-6c0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6C38,35.314,35.314,38,32,38z M49.121,44.879\r\n\t\t\t\tC48.578,44.336,47.828,44,47,44c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l2,2C47.422,51.664,48.172,52,49,52\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L49.121,44.879z M17,44c-0.828,0-1.578,0.336-2.121,0.879l-2,2\r\n\t\t\t\tC12.336,47.422,12,48.172,12,49c0,1.657,1.343,3,3,3c0.828,0,1.579-0.336,2.121-0.879l2-2C19.664,48.579,20,47.828,20,47\r\n\t\t\t\tC20,45.343,18.657,44,17,44z M55,29h-2c-1.657,0-3,1.343-3,3s1.343,3,3,3h2c1.657,0,3-1.343,3-3S56.657,29,55,29z M32,50\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v2c0,1.657,1.343,3,3,3s3-1.343,3-3v-2C35,51.343,33.657,50,32,50z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12.879,17.122l2,2l0.009-0.009C15.427,19.659,16.17,20,17,20c1.657,0,3-1.343,3-3c0-0.83-0.341-1.573-0.888-2.113\r\n\t\t\t\tl0.009-0.009l-2-2l-0.009,0.009C16.573,12.341,15.83,12,15,12c-1.657,0-3,1.343-3,3c0,0.83,0.341,1.573,0.888,2.112\r\n\t\t\t\tL12.879,17.122z M47,20c0.83,0,1.573-0.342,2.113-0.888l0.009,0.009l2-2l-0.009-0.009C51.659,16.573,52,15.83,52,15\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.83,0-1.573,0.341-2.113,0.888l-0.009-0.009l-2,2l0.009,0.009C44.342,15.427,44,16.17,44,17\r\n\t\t\t\tC44,18.657,45.343,20,47,20z M14,32c0-1.657-1.343-3-3-3H9c-1.657,0-3,1.343-3,3s1.343,3,3,3h2C12.657,35,14,33.657,14,32z\r\n\t\t\t\t M32,14c1.657,0,3-1.343,3-3V9c0-1.657-1.343-3-3-3s-3,1.343-3,3v2C29,12.657,30.343,14,32,14z M32,20c-6.627,0-12,5.373-12,12\r\n\t\t\t\tc0,1.021,0.141,2.007,0.381,2.953l1.183,2.958C23.627,41.544,27.524,44,32,44c6.627,0,12-5.372,12-12C44,25.373,38.627,20,32,20z\r\n\t\t\t\t M32,38c-3.314,0-6-2.686-6-6c0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6C38,35.314,35.314,38,32,38z M49.121,44.879\r\n\t\t\t\tC48.578,44.336,47.828,44,47,44c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l2,2C47.422,51.664,48.172,52,49,52\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L49.121,44.879z M17,44c-0.828,0-1.578,0.336-2.121,0.879l-2,2\r\n\t\t\t\tC12.336,47.422,12,48.172,12,49c0,1.657,1.343,3,3,3c0.828,0,1.579-0.336,2.121-0.879l2-2C19.664,48.579,20,47.828,20,47\r\n\t\t\t\tC20,45.343,18.657,44,17,44z M55,29h-2c-1.657,0-3,1.343-3,3s1.343,3,3,3h2c1.657,0,3-1.343,3-3S56.657,29,55,29z M32,50\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v2c0,1.657,1.343,3,3,3s3-1.343,3-3v-2C35,51.343,33.657,50,32,50z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.brightness_low = brightness_low; \ No newline at end of file diff --git a/dist/ikons/browser.js b/dist/ikons/browser.js new file mode 100644 index 000000000..3d9594b35 --- /dev/null +++ b/dist/ikons/browser.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.browser = void 0; +var browser = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "BROWSER_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "BROWSER" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "BROWSER" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3\r\n\t\t\t\tS13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M61,57H3V16h58V57z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3\r\n\t\t\t\tS13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M61,57H3V16h58V57z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.browser = browser; \ No newline at end of file diff --git a/dist/ikons/browser_add.js b/dist/ikons/browser_add.js new file mode 100644 index 000000000..608e38b99 --- /dev/null +++ b/dist/ikons/browser_add.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.browser_add = void 0; +var browser_add = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "BROWSER__x2F__ADD_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "BROWSER__x2F__ADD" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "BROWSER__x2F__ADD" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3\r\n\t\t\t\tS13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M61,57H3V16h58V57z M22,40h7v7\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3v-7h7c1.657,0,3-1.343,3-3s-1.343-3-3-3h-7v-7c0-1.657-1.343-3-3-3s-3,1.343-3,3v7h-7\r\n\t\t\t\tc-1.657,0-3,1.343-3,3S20.343,40,22,40z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3\r\n\t\t\t\tS13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M61,57H3V16h58V57z M22,40h7v7\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3v-7h7c1.657,0,3-1.343,3-3s-1.343-3-3-3h-7v-7c0-1.657-1.343-3-3-3s-3,1.343-3,3v7h-7\r\n\t\t\t\tc-1.657,0-3,1.343-3,3S20.343,40,22,40z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.browser_add = browser_add; \ No newline at end of file diff --git a/dist/ikons/browser_delete.js b/dist/ikons/browser_delete.js new file mode 100644 index 000000000..2a5fd4e04 --- /dev/null +++ b/dist/ikons/browser_delete.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.browser_delete = void 0; +var browser_delete = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "BROWSER__x2F__DELETE_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "BROWSER__x2F__DELETE" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "BROWSER__x2F__DELETE" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3\r\n\t\t\t\tS13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M61,57H3V16h58V57z M27.758,37l-4.95,4.95\r\n\t\t\t\tc-1.172,1.172-1.172,3.071,0,4.243s3.071,1.172,4.243,0l4.95-4.95l4.95,4.95c1.172,1.172,3.07,1.172,4.242,0\r\n\t\t\t\tc1.173-1.172,1.172-3.071,0-4.243L36.243,37l4.95-4.95c1.172-1.172,1.172-3.071,0-4.243c-1.172-1.172-3.071-1.172-4.243,0\r\n\t\t\t\tL32,32.758l-4.95-4.95c-1.171-1.171-3.071-1.172-4.243,0c-1.171,1.172-1.171,3.071,0,4.243L27.758,37z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3\r\n\t\t\t\tS13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M61,57H3V16h58V57z M27.758,37l-4.95,4.95\r\n\t\t\t\tc-1.172,1.172-1.172,3.071,0,4.243s3.071,1.172,4.243,0l4.95-4.95l4.95,4.95c1.172,1.172,3.07,1.172,4.242,0\r\n\t\t\t\tc1.173-1.172,1.172-3.071,0-4.243L36.243,37l4.95-4.95c1.172-1.172,1.172-3.071,0-4.243c-1.172-1.172-3.071-1.172-4.243,0\r\n\t\t\t\tL32,32.758l-4.95-4.95c-1.171-1.171-3.071-1.172-4.243,0c-1.171,1.172-1.171,3.071,0,4.243L27.758,37z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.browser_delete = browser_delete; \ No newline at end of file diff --git a/dist/ikons/browser_layout_1.js b/dist/ikons/browser_layout_1.js new file mode 100644 index 000000000..d313a63f5 --- /dev/null +++ b/dist/ikons/browser_layout_1.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.browser_layout_1 = void 0; +var browser_layout_1 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "BROWSER_LAYOUT_1_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "BROWSER_LAYOUT_1" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "BROWSER_LAYOUT_1" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3\r\n\t\t\t\tS13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M15,57H3V31h12V57z M61,57H18V31h43V57z\r\n\t\t\t\t M61,28H3V16h58V28z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3\r\n\t\t\t\tS13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M15,57H3V31h12V57z M61,57H18V31h43V57z\r\n\t\t\t\t M61,28H3V16h58V28z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.browser_layout_1 = browser_layout_1; \ No newline at end of file diff --git a/dist/ikons/browser_layout_2.js b/dist/ikons/browser_layout_2.js new file mode 100644 index 000000000..8bbca26c6 --- /dev/null +++ b/dist/ikons/browser_layout_2.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.browser_layout_2 = void 0; +var browser_layout_2 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "BROWSER_LAYOUT_2_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "BROWSER_LAYOUT_2" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "BROWSER_LAYOUT_2" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3\r\n\t\t\t\tS13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M46,57H3V31h43V57z M61,57H49V31h12V57z\r\n\t\t\t\t M61,28H3V16h58V28z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3\r\n\t\t\t\tS13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M46,57H3V31h43V57z M61,57H49V31h12V57z\r\n\t\t\t\t M61,28H3V16h58V28z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.browser_layout_2 = browser_layout_2; \ No newline at end of file diff --git a/dist/ikons/browser_layout_3.js b/dist/ikons/browser_layout_3.js new file mode 100644 index 000000000..116ecf45e --- /dev/null +++ b/dist/ikons/browser_layout_3.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.browser_layout_3 = void 0; +var browser_layout_3 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "BROWSER_LAYOUT_3_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "BROWSER_LAYOUT_3" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "BROWSER_LAYOUT_3" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3\r\n\t\t\t\tS13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M15,57H3V31h12V57z M46,57H18V31h28V57z\r\n\t\t\t\t M61,57H49V31h12V57z M61,28H3V16h58V28z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3\r\n\t\t\t\tS13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M15,57H3V31h12V57z M46,57H18V31h28V57z\r\n\t\t\t\t M61,57H49V31h12V57z M61,28H3V16h58V28z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.browser_layout_3 = browser_layout_3; \ No newline at end of file diff --git a/dist/ikons/browser_ok.js b/dist/ikons/browser_ok.js new file mode 100644 index 000000000..0cc94fa0a --- /dev/null +++ b/dist/ikons/browser_ok.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.browser_ok = void 0; +var browser_ok = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "BROWSER__x2F__OK_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "BROWSER__x2F__OK" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "BROWSER__x2F__OK" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M26.879,45.121C27.422,45.664,28.172,46,29,46s1.578-0.336,2.121-0.879l12-12C43.664,32.579,44,31.828,44,31\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L29,38.757l-3.879-3.878C24.579,34.336,23.828,34,23,34\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L26.879,45.121z M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7\r\n\t\t\t\tz M61,57H3V16h58V57z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M26.879,45.121C27.422,45.664,28.172,46,29,46s1.578-0.336,2.121-0.879l12-12C43.664,32.579,44,31.828,44,31\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L29,38.757l-3.879-3.878C24.579,34.336,23.828,34,23,34\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L26.879,45.121z M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7\r\n\t\t\t\tz M61,57H3V16h58V57z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.browser_ok = browser_ok; \ No newline at end of file diff --git a/dist/ikons/browser_remove.js b/dist/ikons/browser_remove.js new file mode 100644 index 000000000..05d291571 --- /dev/null +++ b/dist/ikons/browser_remove.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.browser_remove = void 0; +var browser_remove = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "BROWSER__x2F__REMOVE_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "BROWSER__x2F__REMOVE" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "BROWSER__x2F__REMOVE" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,40h4l0,0h16l0,0c1.657,0,3-1.343,3-3s-1.343-3-3-3h-7l0,0h-6l0,0h-7c-1.657,0-3,1.343-3,3S20.343,40,22,40z M61,4H3\r\n\t\t\t\tC1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3\r\n\t\t\t\ts-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S13.343,7,15,7z M6,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M61,57H3V16h58V57z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,40h4l0,0h16l0,0c1.657,0,3-1.343,3-3s-1.343-3-3-3h-7l0,0h-6l0,0h-7c-1.657,0-3,1.343-3,3S20.343,40,22,40z M61,4H3\r\n\t\t\t\tC1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3\r\n\t\t\t\ts-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S13.343,7,15,7z M6,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M61,57H3V16h58V57z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.browser_remove = browser_remove; \ No newline at end of file diff --git a/dist/ikons/bullseye.js b/dist/ikons/bullseye.js new file mode 100644 index 000000000..585767457 --- /dev/null +++ b/dist/ikons/bullseye.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bullseye = void 0; +var bullseye = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "BULLSEYE" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M32,26c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6c3.314,0,6-2.686,6-6\r\n\t\t\tC38,28.687,35.314,26,32,26z M32,13c-10.493,0-19,8.506-19,19c0,10.493,8.507,19,19,19c10.493,0,19-8.507,19-19\r\n\t\t\tC51,21.507,42.493,13,32,13z M32,45c-7.18,0-13-5.821-13-13c0-7.18,5.82-13,13-13c7.18,0,13,5.82,13,13C45,39.18,39.18,45,32,45z\r\n\t\t\t M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32c17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58\r\n\t\t\tC17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.36,46.36,58,32,58z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M32,26c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6c3.314,0,6-2.686,6-6\r\n\t\t\tC38,28.687,35.314,26,32,26z M32,13c-10.493,0-19,8.506-19,19c0,10.493,8.507,19,19,19c10.493,0,19-8.507,19-19\r\n\t\t\tC51,21.507,42.493,13,32,13z M32,45c-7.18,0-13-5.821-13-13c0-7.18,5.82-13,13-13c7.18,0,13,5.82,13,13C45,39.18,39.18,45,32,45z\r\n\t\t\t M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32c17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58\r\n\t\t\tC17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.36,46.36,58,32,58z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.bullseye = bullseye; \ No newline at end of file diff --git a/dist/ikons/calendar.js b/dist/ikons/calendar.js new file mode 100644 index 000000000..10625dd3d --- /dev/null +++ b/dist/ikons/calendar.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.calendar = void 0; +var calendar = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "CALENDAR_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CALENDAR" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CALENDAR" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M48,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8C45,12.657,46.343,14,48,14z M61,8h-6v3\r\n\t\t\t\tc0,3.866-3.134,7-7,7s-7-3.134-7-7V8H23v3c0,3.866-3.134,7-7,7s-7-3.134-7-7V8H3c-1.657,0-3,1.343-3,3v50c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3V11C64,9.343,62.657,8,61,8z M58,58H6V24h52V58z M16,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v8C13,12.657,14.343,14,16,14z M26.361,39.632c-0.373,0.347-0.785,0.663-1.235,0.949\r\n\t\t\t\tc-0.451,0.286-0.875,0.567-1.274,0.845c-0.78,0.538-1.521,1.066-2.223,1.586c-0.702,0.521-1.313,1.088-1.833,1.703\r\n\t\t\t\ts-0.932,1.312-1.235,2.094c-0.304,0.779-0.455,1.698-0.455,2.756H31.47v-3.172h-8.606c0.451-0.625,0.97-1.17,1.56-1.639\r\n\t\t\t\tc0.589-0.468,1.196-0.904,1.82-1.312c0.624-0.407,1.244-0.819,1.859-1.235c0.615-0.416,1.166-0.88,1.651-1.392\r\n\t\t\t\tc0.485-0.51,0.875-1.096,1.17-1.754c0.294-0.66,0.442-1.447,0.442-2.367c0-0.883-0.169-1.68-0.507-2.392\r\n\t\t\t\tc-0.338-0.71-0.793-1.308-1.365-1.794c-0.572-0.485-1.235-0.858-1.989-1.118C26.751,31.13,25.958,31,25.126,31\r\n\t\t\t\tc-1.092,0-2.058,0.187-2.899,0.559c-0.841,0.373-1.539,0.893-2.093,1.56c-0.555,0.667-0.971,1.447-1.248,2.34\r\n\t\t\t\tc-0.277,0.893-0.399,1.859-0.364,2.898h3.536c0-0.484,0.048-0.975,0.143-1.469c0.095-0.494,0.255-0.945,0.481-1.352\r\n\t\t\t\tc0.225-0.407,0.524-0.737,0.897-0.988s0.828-0.377,1.365-0.377c0.797,0,1.452,0.247,1.963,0.741\r\n\t\t\t\tc0.511,0.494,0.767,1.183,0.767,2.067c0,0.555-0.126,1.049-0.377,1.481C27.045,38.895,26.733,39.285,26.361,39.632z\r\n\t\t\t\t M41.467,45.807c-0.269,0.321-0.598,0.582-0.988,0.78c-0.39,0.199-0.828,0.299-1.312,0.299c-0.832,0-1.518-0.247-2.055-0.741\r\n\t\t\t\tc-0.536-0.494-0.85-1.156-0.936-1.988h-3.692c0.017,0.953,0.211,1.789,0.584,2.509c0.373,0.719,0.871,1.321,1.496,1.808\r\n\t\t\t\tc0.623,0.484,1.338,0.844,2.145,1.078s1.65,0.352,2.535,0.352c0.919,0.017,1.785-0.135,2.6-0.455\r\n\t\t\t\tc0.815-0.321,1.529-0.776,2.145-1.365s1.105-1.287,1.47-2.094c0.364-0.805,0.546-1.676,0.546-2.612\r\n\t\t\t\tc0-0.849-0.126-1.651-0.377-2.405c-0.252-0.754-0.615-1.408-1.092-1.963s-1.062-0.997-1.756-1.326\r\n\t\t\t\tc-0.692-0.328-1.49-0.494-2.391-0.494c-0.729,0-1.379,0.109-1.951,0.326c-0.571,0.217-1.108,0.575-1.611,1.078l-0.053-0.052\r\n\t\t\t\tl0.729-4.134h7.514v-3.042H34.85l-1.793,10.062h3.327c0.364-0.503,0.755-0.871,1.171-1.105c0.416-0.233,0.952-0.35,1.611-0.35\r\n\t\t\t\tc0.503,0,0.945,0.086,1.326,0.26c0.381,0.172,0.711,0.416,0.988,0.728c0.276,0.312,0.484,0.676,0.623,1.092\r\n\t\t\t\tc0.14,0.416,0.209,0.858,0.209,1.326c0,0.451-0.074,0.89-0.222,1.313C41.943,45.114,41.734,45.486,41.467,45.807z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M48,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8C45,12.657,46.343,14,48,14z M61,8h-6v3\r\n\t\t\t\tc0,3.866-3.134,7-7,7s-7-3.134-7-7V8H23v3c0,3.866-3.134,7-7,7s-7-3.134-7-7V8H3c-1.657,0-3,1.343-3,3v50c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3V11C64,9.343,62.657,8,61,8z M58,58H6V24h52V58z M16,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v8C13,12.657,14.343,14,16,14z M26.361,39.632c-0.373,0.347-0.785,0.663-1.235,0.949\r\n\t\t\t\tc-0.451,0.286-0.875,0.567-1.274,0.845c-0.78,0.538-1.521,1.066-2.223,1.586c-0.702,0.521-1.313,1.088-1.833,1.703\r\n\t\t\t\ts-0.932,1.312-1.235,2.094c-0.304,0.779-0.455,1.698-0.455,2.756H31.47v-3.172h-8.606c0.451-0.625,0.97-1.17,1.56-1.639\r\n\t\t\t\tc0.589-0.468,1.196-0.904,1.82-1.312c0.624-0.407,1.244-0.819,1.859-1.235c0.615-0.416,1.166-0.88,1.651-1.392\r\n\t\t\t\tc0.485-0.51,0.875-1.096,1.17-1.754c0.294-0.66,0.442-1.447,0.442-2.367c0-0.883-0.169-1.68-0.507-2.392\r\n\t\t\t\tc-0.338-0.71-0.793-1.308-1.365-1.794c-0.572-0.485-1.235-0.858-1.989-1.118C26.751,31.13,25.958,31,25.126,31\r\n\t\t\t\tc-1.092,0-2.058,0.187-2.899,0.559c-0.841,0.373-1.539,0.893-2.093,1.56c-0.555,0.667-0.971,1.447-1.248,2.34\r\n\t\t\t\tc-0.277,0.893-0.399,1.859-0.364,2.898h3.536c0-0.484,0.048-0.975,0.143-1.469c0.095-0.494,0.255-0.945,0.481-1.352\r\n\t\t\t\tc0.225-0.407,0.524-0.737,0.897-0.988s0.828-0.377,1.365-0.377c0.797,0,1.452,0.247,1.963,0.741\r\n\t\t\t\tc0.511,0.494,0.767,1.183,0.767,2.067c0,0.555-0.126,1.049-0.377,1.481C27.045,38.895,26.733,39.285,26.361,39.632z\r\n\t\t\t\t M41.467,45.807c-0.269,0.321-0.598,0.582-0.988,0.78c-0.39,0.199-0.828,0.299-1.312,0.299c-0.832,0-1.518-0.247-2.055-0.741\r\n\t\t\t\tc-0.536-0.494-0.85-1.156-0.936-1.988h-3.692c0.017,0.953,0.211,1.789,0.584,2.509c0.373,0.719,0.871,1.321,1.496,1.808\r\n\t\t\t\tc0.623,0.484,1.338,0.844,2.145,1.078s1.65,0.352,2.535,0.352c0.919,0.017,1.785-0.135,2.6-0.455\r\n\t\t\t\tc0.815-0.321,1.529-0.776,2.145-1.365s1.105-1.287,1.47-2.094c0.364-0.805,0.546-1.676,0.546-2.612\r\n\t\t\t\tc0-0.849-0.126-1.651-0.377-2.405c-0.252-0.754-0.615-1.408-1.092-1.963s-1.062-0.997-1.756-1.326\r\n\t\t\t\tc-0.692-0.328-1.49-0.494-2.391-0.494c-0.729,0-1.379,0.109-1.951,0.326c-0.571,0.217-1.108,0.575-1.611,1.078l-0.053-0.052\r\n\t\t\t\tl0.729-4.134h7.514v-3.042H34.85l-1.793,10.062h3.327c0.364-0.503,0.755-0.871,1.171-1.105c0.416-0.233,0.952-0.35,1.611-0.35\r\n\t\t\t\tc0.503,0,0.945,0.086,1.326,0.26c0.381,0.172,0.711,0.416,0.988,0.728c0.276,0.312,0.484,0.676,0.623,1.092\r\n\t\t\t\tc0.14,0.416,0.209,0.858,0.209,1.326c0,0.451-0.074,0.89-0.222,1.313C41.943,45.114,41.734,45.486,41.467,45.807z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.calendar = calendar; \ No newline at end of file diff --git a/dist/ikons/calendar_add.js b/dist/ikons/calendar_add.js new file mode 100644 index 000000000..f21549045 --- /dev/null +++ b/dist/ikons/calendar_add.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.calendar_add = void 0; +var calendar_add = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "CALENDAR__x2F__ADD_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CALENDAR__x2F__ADD" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CALENDAR__x2F__ADD" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M16,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8C13,12.657,14.343,14,16,14z M25.126,31\r\n\t\t\t\tc-0.001,0-0.002,0-0.003,0h0.007C25.128,31,25.127,31,25.126,31z M48,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3\r\n\t\t\t\tv8C45,12.657,46.343,14,48,14z M25,44h4v4c0,1.657,1.343,3,3,3s3-1.343,3-3v-4h4c1.657,0,3-1.343,3-3s-1.343-3-3-3h-4v-4\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v4h-4c-1.657,0-3,1.343-3,3S23.343,44,25,44z M61,8h-6v3c0,3.866-3.134,7-7,7s-7-3.134-7-7V8\r\n\t\t\t\tH23v3c0,3.866-3.134,7-7,7s-7-3.134-7-7V8H3c-1.657,0-3,1.343-3,3v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V11\r\n\t\t\t\tC64,9.343,62.657,8,61,8z M58,58H6V24h52V58z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M16,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8C13,12.657,14.343,14,16,14z M25.126,31\r\n\t\t\t\tc-0.001,0-0.002,0-0.003,0h0.007C25.128,31,25.127,31,25.126,31z M48,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3\r\n\t\t\t\tv8C45,12.657,46.343,14,48,14z M25,44h4v4c0,1.657,1.343,3,3,3s3-1.343,3-3v-4h4c1.657,0,3-1.343,3-3s-1.343-3-3-3h-4v-4\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v4h-4c-1.657,0-3,1.343-3,3S23.343,44,25,44z M61,8h-6v3c0,3.866-3.134,7-7,7s-7-3.134-7-7V8\r\n\t\t\t\tH23v3c0,3.866-3.134,7-7,7s-7-3.134-7-7V8H3c-1.657,0-3,1.343-3,3v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V11\r\n\t\t\t\tC64,9.343,62.657,8,61,8z M58,58H6V24h52V58z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.calendar_add = calendar_add; \ No newline at end of file diff --git a/dist/ikons/calendar_ok.js b/dist/ikons/calendar_ok.js new file mode 100644 index 000000000..b6fcb38ee --- /dev/null +++ b/dist/ikons/calendar_ok.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.calendar_ok = void 0; +var calendar_ok = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "CALENDAR__x2F__OK_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CALENDAR__x2F__OK" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CALENDAR__x2F__OK" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M48,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8C45,12.657,46.343,14,48,14z M61,8h-6v3\r\n\t\t\t\tc0,3.866-3.134,7-7,7s-7-3.134-7-7V8H23v3c0,3.866-3.134,7-7,7s-7-3.134-7-7V8H3c-1.657,0-3,1.343-3,3v50c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3V11C64,9.343,62.657,8,61,8z M58,58H6V24h52V58z M16,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v8C13,12.657,14.343,14,16,14z M26.879,50.121C27.422,50.664,28.172,51,29,51s1.578-0.336,2.121-0.879l14-14\r\n\t\t\t\tC45.664,35.579,46,34.828,46,34c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L29,43.757l-4.879-4.879\r\n\t\t\t\tC23.578,38.336,22.828,38,22,38c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L26.879,50.121z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M48,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8C45,12.657,46.343,14,48,14z M61,8h-6v3\r\n\t\t\t\tc0,3.866-3.134,7-7,7s-7-3.134-7-7V8H23v3c0,3.866-3.134,7-7,7s-7-3.134-7-7V8H3c-1.657,0-3,1.343-3,3v50c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3V11C64,9.343,62.657,8,61,8z M58,58H6V24h52V58z M16,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v8C13,12.657,14.343,14,16,14z M26.879,50.121C27.422,50.664,28.172,51,29,51s1.578-0.336,2.121-0.879l14-14\r\n\t\t\t\tC45.664,35.579,46,34.828,46,34c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L29,43.757l-4.879-4.879\r\n\t\t\t\tC23.578,38.336,22.828,38,22,38c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L26.879,50.121z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.calendar_ok = calendar_ok; \ No newline at end of file diff --git a/dist/ikons/camera.js b/dist/ikons/camera.js new file mode 100644 index 000000000..f1fb03709 --- /dev/null +++ b/dist/ikons/camera.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.camera = void 0; +var camera = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "CAMERA_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CAMERA" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CAMERA" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M32,22c-6.627,0-12,5.372-12,12c0,6.627,5.373,12,12,12s12-5.373,12-12S38.627,22,32,22z M61,12H48.243l-5.095-5.094\r\n\t\t\t\tl-0.002,0.003C42.602,6.35,41.843,6,41,6H23c-0.976,0-1.835,0.474-2.383,1.196L15.813,12H3c-1.657,0-3,1.343-3,3v40\r\n\t\t\t\tc0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V15C64,13.343,62.657,12,61,12z M32,52c-9.941,0-18-8.059-18-18\r\n\t\t\t\tc0-9.941,8.059-18,18-18c9.941,0,18,8.059,18,18C50,43.941,41.941,52,32,52z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M32,22c-6.627,0-12,5.372-12,12c0,6.627,5.373,12,12,12s12-5.373,12-12S38.627,22,32,22z M61,12H48.243l-5.095-5.094\r\n\t\t\t\tl-0.002,0.003C42.602,6.35,41.843,6,41,6H23c-0.976,0-1.835,0.474-2.383,1.196L15.813,12H3c-1.657,0-3,1.343-3,3v40\r\n\t\t\t\tc0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V15C64,13.343,62.657,12,61,12z M32,52c-9.941,0-18-8.059-18-18\r\n\t\t\t\tc0-9.941,8.059-18,18-18c9.941,0,18,8.059,18,18C50,43.941,41.941,52,32,52z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.camera = camera; \ No newline at end of file diff --git a/dist/ikons/cassette.js b/dist/ikons/cassette.js new file mode 100644 index 000000000..32055f284 --- /dev/null +++ b/dist/ikons/cassette.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cassette = void 0; +var cassette = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "CASSETTE" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M61,9H3c-1.657,0-3,1.343-3,3v40c0,1.657,1.343,3,3,3h8.369l4.846-12.114\r\n\t\t\tl0.004,0.002C16.661,41.783,17.737,41,19,41h26c1.263,0,2.339,0.782,2.781,1.887l0.004-0.002L52.631,55H61c1.657,0,3-1.343,3-3V12\r\n\t\t\tC64,10.343,62.657,9,61,9z M16,32c-2.209,0-4-1.791-4-4c0-2.209,1.791-4,4-4c2.209,0,4,1.791,4,4C20,30.209,18.209,32,16,32z\r\n\t\t\t M40,32H24v-8h16V32z M48,32c-2.209,0-4-1.791-4-4c0-2.209,1.791-4,4-4s4,1.791,4,4C52,30.209,50.209,32,48,32z M45.834,46.056\r\n\t\t\tC45.436,44.865,44.325,44,43,44H21c-1.296,0-2.391,0.827-2.81,1.978l-0.01-0.004L14.899,55h33.93l-2.983-8.949L45.834,46.056z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M61,9H3c-1.657,0-3,1.343-3,3v40c0,1.657,1.343,3,3,3h8.369l4.846-12.114\r\n\t\t\tl0.004,0.002C16.661,41.783,17.737,41,19,41h26c1.263,0,2.339,0.782,2.781,1.887l0.004-0.002L52.631,55H61c1.657,0,3-1.343,3-3V12\r\n\t\t\tC64,10.343,62.657,9,61,9z M16,32c-2.209,0-4-1.791-4-4c0-2.209,1.791-4,4-4c2.209,0,4,1.791,4,4C20,30.209,18.209,32,16,32z\r\n\t\t\t M40,32H24v-8h16V32z M48,32c-2.209,0-4-1.791-4-4c0-2.209,1.791-4,4-4s4,1.791,4,4C52,30.209,50.209,32,48,32z M45.834,46.056\r\n\t\t\tC45.436,44.865,44.325,44,43,44H21c-1.296,0-2.391,0.827-2.81,1.978l-0.01-0.004L14.899,55h33.93l-2.983-8.949L45.834,46.056z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.cassette = cassette; \ No newline at end of file diff --git a/dist/ikons/chart.js b/dist/ikons/chart.js new file mode 100644 index 000000000..b133d510b --- /dev/null +++ b/dist/ikons/chart.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.chart = void 0; +var chart = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "CHART_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CHART" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CHART" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58\r\n\t\t\t\tz M46,55h6c1.657,0,3-1.343,3-3V31c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v21C43,53.657,44.343,55,46,55z M29,55h6\r\n\t\t\t\tc1.657,0,3-1.343,3-3V19c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v33C26,53.657,27.343,55,29,55z M12,55h6\r\n\t\t\t\tc1.657,0,3-1.343,3-3v-6c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v6C9,53.657,10.343,55,12,55z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58\r\n\t\t\t\tz M46,55h6c1.657,0,3-1.343,3-3V31c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v21C43,53.657,44.343,55,46,55z M29,55h6\r\n\t\t\t\tc1.657,0,3-1.343,3-3V19c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v33C26,53.657,27.343,55,29,55z M12,55h6\r\n\t\t\t\tc1.657,0,3-1.343,3-3v-6c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v6C9,53.657,10.343,55,12,55z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.chart = chart; \ No newline at end of file diff --git a/dist/ikons/chart_1_2.js b/dist/ikons/chart_1_2.js new file mode 100644 index 000000000..158aac700 --- /dev/null +++ b/dist/ikons/chart_1_2.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.chart_1_2 = void 0; +var chart_1_2 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "CHART__x2F__1_x2F_2_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CHART__x2F__1_x2F_2" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CHART__x2F__1_x2F_2" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6V58z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6V58z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.chart_1_2 = chart_1_2; \ No newline at end of file diff --git a/dist/ikons/chart_1_4.js b/dist/ikons/chart_1_4.js new file mode 100644 index 000000000..05d84b4c4 --- /dev/null +++ b/dist/ikons/chart_1_4.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.chart_1_4 = void 0; +var chart_1_4 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "CHART__x2F__1_x2F_4_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CHART__x2F__1_x2F_4" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CHART__x2F__1_x2F_4" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6v26h26C58,46.359,46.359,58,32,58z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6v26h26C58,46.359,46.359,58,32,58z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.chart_1_4 = chart_1_4; \ No newline at end of file diff --git a/dist/ikons/chart_1_8.js b/dist/ikons/chart_1_8.js new file mode 100644 index 000000000..892f021f8 --- /dev/null +++ b/dist/ikons/chart_1_8.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.chart_1_8 = void 0; +var chart_1_8 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "CART__x2F__1_x2F_8_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CART__x2F__1_x2F_8" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CART__x2F__1_x2F_8" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6v26l18.385-18.385C55.09,18.32,58,24.82,58,32C58,46.359,46.359,58,32,58z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6v26l18.385-18.385C55.09,18.32,58,24.82,58,32C58,46.359,46.359,58,32,58z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.chart_1_8 = chart_1_8; \ No newline at end of file diff --git a/dist/ikons/chart_3_4.js b/dist/ikons/chart_3_4.js new file mode 100644 index 000000000..1e87acd2e --- /dev/null +++ b/dist/ikons/chart_3_4.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.chart_3_4 = void 0; +var chart_3_4 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "CHART__x2F__3_x2F_4_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CHART__x2F__3_x2F_4" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CHART__x2F__3_x2F_4" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,32H6C6,17.641,17.641,6,32,6V32z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,32H6C6,17.641,17.641,6,32,6V32z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.chart_3_4 = chart_3_4; \ No newline at end of file diff --git a/dist/ikons/chart_3_8.js b/dist/ikons/chart_3_8.js new file mode 100644 index 000000000..83bc97b0b --- /dev/null +++ b/dist/ikons/chart_3_8.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.chart_3_8 = void 0; +var chart_3_8 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "CHART__x2F__3_x2F_8_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CHART__x2F__3_x2F_8" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CHART__x2F__3_x2F_8" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6v26l18.385,18.385C45.68,55.09,39.18,58,32,58z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6v26l18.385,18.385C45.68,55.09,39.18,58,32,58z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.chart_3_8 = chart_3_8; \ No newline at end of file diff --git a/dist/ikons/chart_5_8.js b/dist/ikons/chart_5_8.js new file mode 100644 index 000000000..6887dc200 --- /dev/null +++ b/dist/ikons/chart_5_8.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.chart_5_8 = void 0; +var chart_5_8 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "CHART__x2F__5_x2F_8_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CHART__x2F__5_x2F_8" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CHART__x2F__5_x2F_8" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,32L13.615,50.385\r\n\t\t\t\tC8.91,45.68,6,39.18,6,32C6,17.641,17.641,6,32,6V32z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,32L13.615,50.385\r\n\t\t\t\tC8.91,45.68,6,39.18,6,32C6,17.641,17.641,6,32,6V32z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.chart_5_8 = chart_5_8; \ No newline at end of file diff --git a/dist/ikons/chart_7_8.js b/dist/ikons/chart_7_8.js new file mode 100644 index 000000000..9857f9660 --- /dev/null +++ b/dist/ikons/chart_7_8.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.chart_7_8 = void 0; +var chart_7_8 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "CHART__x2F__7_x2F_8_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CHART__x2F__7_x2F_8" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CHART__x2F__7_x2F_8" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,32L13.615,13.615\r\n\t\t\t\tC18.32,8.91,24.82,6,32,6V32z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,32L13.615,13.615\r\n\t\t\t\tC18.32,8.91,24.82,6,32,6V32z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.chart_7_8 = chart_7_8; \ No newline at end of file diff --git a/dist/ikons/circle.js b/dist/ikons/circle.js new file mode 100644 index 000000000..9c34157e7 --- /dev/null +++ b/dist/ikons/circle.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.circle = void 0; +var circle = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "CIRCLE_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CIRCLE" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CIRCLE" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.64,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.64,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.circle = circle; \ No newline at end of file diff --git a/dist/ikons/circle_delete.js b/dist/ikons/circle_delete.js new file mode 100644 index 000000000..0613c99c3 --- /dev/null +++ b/dist/ikons/circle_delete.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.circle_delete = void 0; +var circle_delete = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "CIRCLE__x2F__DELETE_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CIRCLE__x2F__DELETE" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CIRCLE__x2F__DELETE" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.64,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z M46,21c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L32,27.758l-8.879-8.879C22.579,18.336,21.828,18,21,18c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L27.757,32l-8.879,8.879C18.336,41.422,18,42.172,18,43c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.579-0.336,2.121-0.879L32,36.243l8.879,8.879C41.422,45.664,42.172,46,43,46c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L36.243,32l8.879-8.878C45.664,22.578,46,21.829,46,21z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.64,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z M46,21c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L32,27.758l-8.879-8.879C22.579,18.336,21.828,18,21,18c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L27.757,32l-8.879,8.879C18.336,41.422,18,42.172,18,43c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.579-0.336,2.121-0.879L32,36.243l8.879,8.879C41.422,45.664,42.172,46,43,46c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L36.243,32l8.879-8.878C45.664,22.578,46,21.829,46,21z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.circle_delete = circle_delete; \ No newline at end of file diff --git a/dist/ikons/circle_down.js b/dist/ikons/circle_down.js new file mode 100644 index 000000000..528c00f86 --- /dev/null +++ b/dist/ikons/circle_down.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.circle_down = void 0; +var circle_down = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "CIRCLE__x2F__DOWN_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CIRCLE__x2F__DOWN" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CIRCLE__x2F__DOWN" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M41,32c-0.885,0-1.673,0.391-2.223,1l-0.008-0.007L35,37.182V19c0-1.657-1.343-3-3-3s-3,1.343-3,3v18.182l-3.77-4.188\r\n\t\t\t\tL25.222,33c-0.549-0.61-1.337-1-2.222-1c-1.657,0-3,1.343-3,3c0,0.771,0.299,1.468,0.778,2l-0.008,0.008l9,10L29.778,47\r\n\t\t\t\tc0.549,0.609,1.336,1,2.222,1c0.885,0,1.673-0.391,2.223-1l0.008,0.007l9-10L43.223,37C43.7,36.468,44,35.771,44,35\r\n\t\t\t\tC44,33.343,42.657,32,41,32z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58\r\n\t\t\t\tC17.641,58,6,46.359,6,32C6,17.64,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M41,32c-0.885,0-1.673,0.391-2.223,1l-0.008-0.007L35,37.182V19c0-1.657-1.343-3-3-3s-3,1.343-3,3v18.182l-3.77-4.188\r\n\t\t\t\tL25.222,33c-0.549-0.61-1.337-1-2.222-1c-1.657,0-3,1.343-3,3c0,0.771,0.299,1.468,0.778,2l-0.008,0.008l9,10L29.778,47\r\n\t\t\t\tc0.549,0.609,1.336,1,2.222,1c0.885,0,1.673-0.391,2.223-1l0.008,0.007l9-10L43.223,37C43.7,36.468,44,35.771,44,35\r\n\t\t\t\tC44,33.343,42.657,32,41,32z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58\r\n\t\t\t\tC17.641,58,6,46.359,6,32C6,17.64,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.circle_down = circle_down; \ No newline at end of file diff --git a/dist/ikons/circle_fast_forward.js b/dist/ikons/circle_fast_forward.js new file mode 100644 index 000000000..31ac4b730 --- /dev/null +++ b/dist/ikons/circle_fast_forward.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.circle_fast_forward = void 0; +var circle_fast_forward = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "CIRCLE__x2F__FAST_FORWARD_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CIRCLE__x2F__FAST_FORWARD" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CIRCLE__x2F__FAST_FORWARD" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z M45.559,29.437l-9.699-6.789\r\n\t\t\t\tC35.35,22.243,34.703,22,34,22c-1.657,0-3,1.343-3,3c0,0.008,0.001,0.016,0.001,0.024h-0.005v4.018l-9.135-6.394\r\n\t\t\t\tC21.349,22.243,20.703,22,20,22c-1.657,0-3,1.343-3,3c0,0.008,0.001,0.016,0.001,0.024h-0.005v14h0.005\r\n\t\t\t\tC17.013,40.67,18.351,42,20,42c0.708,0,1.358-0.246,1.871-0.654l9.125-6.388v4.067h0.005C31.013,40.67,32.351,42,34,42\r\n\t\t\t\tc0.708,0,1.357-0.246,1.871-0.654l9.68-6.777C46.419,34.043,47,33.089,47,32C47,30.914,46.423,29.963,45.559,29.437z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z M45.559,29.437l-9.699-6.789\r\n\t\t\t\tC35.35,22.243,34.703,22,34,22c-1.657,0-3,1.343-3,3c0,0.008,0.001,0.016,0.001,0.024h-0.005v4.018l-9.135-6.394\r\n\t\t\t\tC21.349,22.243,20.703,22,20,22c-1.657,0-3,1.343-3,3c0,0.008,0.001,0.016,0.001,0.024h-0.005v14h0.005\r\n\t\t\t\tC17.013,40.67,18.351,42,20,42c0.708,0,1.358-0.246,1.871-0.654l9.125-6.388v4.067h0.005C31.013,40.67,32.351,42,34,42\r\n\t\t\t\tc0.708,0,1.357-0.246,1.871-0.654l9.68-6.777C46.419,34.043,47,33.089,47,32C47,30.914,46.423,29.963,45.559,29.437z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.circle_fast_forward = circle_fast_forward; \ No newline at end of file diff --git a/dist/ikons/circle_left.js b/dist/ikons/circle_left.js new file mode 100644 index 000000000..ed88066cc --- /dev/null +++ b/dist/ikons/circle_left.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.circle_left = void 0; +var circle_left = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "CIRCLE__x2F__LEFT_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CIRCLE__x2F__LEFT" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CIRCLE__x2F__LEFT" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M45,29H26.818l4.189-3.77L31,25.222c0.61-0.549,1-1.337,1-2.222c0-1.657-1.343-3-3-3c-0.772,0-1.468,0.3-2,0.778\r\n\t\t\t\tl-0.007-0.008l-10,9L17,29.778c-0.61,0.549-1,1.336-1,2.222s0.391,1.673,1,2.223l-0.007,0.008l10,9L27,43.223\r\n\t\t\t\tC27.532,43.701,28.228,44,29,44c1.657,0,3-1.343,3-3c0-0.885-0.391-1.673-1-2.223l0.007-0.008L26.818,35H45c1.657,0,3-1.343,3-3\r\n\t\t\t\tS46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.64,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M45,29H26.818l4.189-3.77L31,25.222c0.61-0.549,1-1.337,1-2.222c0-1.657-1.343-3-3-3c-0.772,0-1.468,0.3-2,0.778\r\n\t\t\t\tl-0.007-0.008l-10,9L17,29.778c-0.61,0.549-1,1.336-1,2.222s0.391,1.673,1,2.223l-0.007,0.008l10,9L27,43.223\r\n\t\t\t\tC27.532,43.701,28.228,44,29,44c1.657,0,3-1.343,3-3c0-0.885-0.391-1.673-1-2.223l0.007-0.008L26.818,35H45c1.657,0,3-1.343,3-3\r\n\t\t\t\tS46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.64,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.circle_left = circle_left; \ No newline at end of file diff --git a/dist/ikons/circle_minus.js b/dist/ikons/circle_minus.js new file mode 100644 index 000000000..ddae6753e --- /dev/null +++ b/dist/ikons/circle_minus.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.circle_minus = void 0; +var circle_minus = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "CIRCLE__x2F__MINUS_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CIRCLE__x2F__MINUS" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CIRCLE__x2F__MINUS" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M45,29H19c-1.657,0-3,1.343-3,3s1.343,3,3,3h26c1.657,0,3-1.343,3-3S46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32\r\n\t\t\t\ts14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.64,17.641,6,32,6\r\n\t\t\t\tc14.359,0,26,11.641,26,26C58,46.359,46.359,58,32,58z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M45,29H19c-1.657,0-3,1.343-3,3s1.343,3,3,3h26c1.657,0,3-1.343,3-3S46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32\r\n\t\t\t\ts14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.64,17.641,6,32,6\r\n\t\t\t\tc14.359,0,26,11.641,26,26C58,46.359,46.359,58,32,58z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.circle_minus = circle_minus; \ No newline at end of file diff --git a/dist/ikons/circle_ok.js b/dist/ikons/circle_ok.js new file mode 100644 index 000000000..ed982bcd6 --- /dev/null +++ b/dist/ikons/circle_ok.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.circle_ok = void 0; +var circle_ok = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "CIRCLE__x2F__OK_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CIRCLE__x2F__OK" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CIRCLE__x2F__OK" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M46,43.001L46,43.001C46,43,46,43,46,42.999V43.001z M46,20.999v0.002C46,21.001,46,21,46,20.999C46,21,46,21,46,20.999z\r\n\t\t\t\t M44,21c-0.828,0-1.578,0.336-2.121,0.879L28,35.758l-6.879-6.879C20.578,28.336,19.828,28,19,28c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121l9,9C26.422,42.664,27.172,43,28,43s1.578-0.336,2.121-0.879l16-16\r\n\t\t\t\tC46.664,25.579,47,24.828,47,24C47,22.343,45.657,21,44,21z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32\r\n\t\t\t\tS49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.64,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M46,43.001L46,43.001C46,43,46,43,46,42.999V43.001z M46,20.999v0.002C46,21.001,46,21,46,20.999C46,21,46,21,46,20.999z\r\n\t\t\t\t M44,21c-0.828,0-1.578,0.336-2.121,0.879L28,35.758l-6.879-6.879C20.578,28.336,19.828,28,19,28c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121l9,9C26.422,42.664,27.172,43,28,43s1.578-0.336,2.121-0.879l16-16\r\n\t\t\t\tC46.664,25.579,47,24.828,47,24C47,22.343,45.657,21,44,21z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32\r\n\t\t\t\tS49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.64,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.circle_ok = circle_ok; \ No newline at end of file diff --git a/dist/ikons/circle_pause.js b/dist/ikons/circle_pause.js new file mode 100644 index 000000000..6daba7605 --- /dev/null +++ b/dist/ikons/circle_pause.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.circle_pause = void 0; +var circle_pause = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "CIRCLE__x2F__PAUSE_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CIRCLE__x2F__PAUSE" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CIRCLE__x2F__PAUSE" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z M29,24c0-1.657-1.343-3-3-3s-3,1.343-3,3\r\n\t\t\t\tc0,0.002,0,0.005,0,0.007h-0.002v16H23C23.004,41.661,24.346,43,26,43c1.657,0,3-1.343,3-3c0-0.023-0.001-0.047-0.002-0.07V24.07\r\n\t\t\t\tC28.999,24.047,29,24.024,29,24z M41,24c0-1.657-1.343-3-3-3s-3,1.343-3,3c0,0.002,0,0.005,0,0.007h-0.002v16H35\r\n\t\t\t\tC35.004,41.661,36.346,43,38,43c1.657,0,3-1.343,3-3c0-0.023-0.001-0.047-0.002-0.07V24.07C40.999,24.047,41,24.024,41,24z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z M29,24c0-1.657-1.343-3-3-3s-3,1.343-3,3\r\n\t\t\t\tc0,0.002,0,0.005,0,0.007h-0.002v16H23C23.004,41.661,24.346,43,26,43c1.657,0,3-1.343,3-3c0-0.023-0.001-0.047-0.002-0.07V24.07\r\n\t\t\t\tC28.999,24.047,29,24.024,29,24z M41,24c0-1.657-1.343-3-3-3s-3,1.343-3,3c0,0.002,0,0.005,0,0.007h-0.002v16H35\r\n\t\t\t\tC35.004,41.661,36.346,43,38,43c1.657,0,3-1.343,3-3c0-0.023-0.001-0.047-0.002-0.07V24.07C40.999,24.047,41,24.024,41,24z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.circle_pause = circle_pause; \ No newline at end of file diff --git a/dist/ikons/circle_play.js b/dist/ikons/circle_play.js new file mode 100644 index 000000000..802c2fe70 --- /dev/null +++ b/dist/ikons/circle_play.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.circle_play = void 0; +var circle_play = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "CIRCLE__x2F__PLAY_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CIRCLE__x2F__PLAY" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CIRCLE__x2F__PLAY" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M41.492,29.398l-15.8-9.875C25.21,19.193,24.628,19,24,19c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.066,0,0.131-0.003,0.195-0.007c0.017-0.001,0.034-0.003,0.051-0.004c0.055-0.005,0.109-0.011,0.163-0.019\r\n\t\t\t\tc0.01,0,0.021-0.002,0.031-0.004c0.064-0.01,0.128-0.021,0.191-0.035c0.01-0.002,0.019-0.005,0.029-0.007\r\n\t\t\t\tc0.057-0.013,0.112-0.026,0.167-0.043c0.009-0.003,0.018-0.005,0.027-0.008c0.128-0.038,0.252-0.084,0.372-0.138\r\n\t\t\t\tc0.005-0.002,0.009-0.004,0.014-0.006c0.123-0.057,0.242-0.121,0.355-0.191l0.013,0.02l15.912-9.974\r\n\t\t\t\tC42.404,34.066,43,33.104,43,32C43,30.886,42.393,29.915,41.492,29.398z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32\r\n\t\t\t\ts32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tC58,46.359,46.359,58,32,58z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M41.492,29.398l-15.8-9.875C25.21,19.193,24.628,19,24,19c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.066,0,0.131-0.003,0.195-0.007c0.017-0.001,0.034-0.003,0.051-0.004c0.055-0.005,0.109-0.011,0.163-0.019\r\n\t\t\t\tc0.01,0,0.021-0.002,0.031-0.004c0.064-0.01,0.128-0.021,0.191-0.035c0.01-0.002,0.019-0.005,0.029-0.007\r\n\t\t\t\tc0.057-0.013,0.112-0.026,0.167-0.043c0.009-0.003,0.018-0.005,0.027-0.008c0.128-0.038,0.252-0.084,0.372-0.138\r\n\t\t\t\tc0.005-0.002,0.009-0.004,0.014-0.006c0.123-0.057,0.242-0.121,0.355-0.191l0.013,0.02l15.912-9.974\r\n\t\t\t\tC42.404,34.066,43,33.104,43,32C43,30.886,42.393,29.915,41.492,29.398z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32\r\n\t\t\t\ts32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tC58,46.359,46.359,58,32,58z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.circle_play = circle_play; \ No newline at end of file diff --git a/dist/ikons/circle_plus.js b/dist/ikons/circle_plus.js new file mode 100644 index 000000000..095736cbf --- /dev/null +++ b/dist/ikons/circle_plus.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.circle_plus = void 0; +var circle_plus = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "CIRCLE__x2F__PLUS_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CIRCLE__x2F__PLUS" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CIRCLE__x2F__PLUS" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M45,29H35V19c0-1.657-1.343-3-3-3s-3,1.343-3,3v10H19c-1.657,0-3,1.343-3,3s1.343,3,3,3h10v10c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3V35h10c1.657,0,3-1.343,3-3S46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32\r\n\t\t\t\tS49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.64,17.641,6,32,6c14.359,0,26,11.641,26,26C58,46.359,46.359,58,32,58z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M45,29H35V19c0-1.657-1.343-3-3-3s-3,1.343-3,3v10H19c-1.657,0-3,1.343-3,3s1.343,3,3,3h10v10c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3V35h10c1.657,0,3-1.343,3-3S46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32\r\n\t\t\t\tS49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.64,17.641,6,32,6c14.359,0,26,11.641,26,26C58,46.359,46.359,58,32,58z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.circle_plus = circle_plus; \ No newline at end of file diff --git a/dist/ikons/circle_rewind.js b/dist/ikons/circle_rewind.js new file mode 100644 index 000000000..a7c02c53d --- /dev/null +++ b/dist/ikons/circle_rewind.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.circle_rewind = void 0; +var circle_rewind = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "CIRCLE__x2F__REWIND_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CIRCLE__x2F__REWIND" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CIRCLE__x2F__REWIND" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M47,25c0-1.657-1.343-3-3-3c-0.703,0-1.35,0.242-1.861,0.648l-9.135,6.394v-4.018h-0.006C32.999,25.016,33,25.008,33,25\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.703,0-1.349,0.242-1.861,0.648l-9.699,6.789C17.577,29.963,17,30.914,17,32\r\n\t\t\t\tc0,1.089,0.581,2.043,1.449,2.568l9.68,6.777C28.642,41.754,29.292,42,30,42c1.649,0,2.986-1.33,2.999-2.977h0.005v-4.066\r\n\t\t\t\tl9.125,6.387C42.643,41.754,43.292,42,44,42c1.648,0,2.986-1.33,2.999-2.977h0.005v-14h-0.005C46.999,25.016,47,25.008,47,25z\r\n\t\t\t\t M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M47,25c0-1.657-1.343-3-3-3c-0.703,0-1.35,0.242-1.861,0.648l-9.135,6.394v-4.018h-0.006C32.999,25.016,33,25.008,33,25\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.703,0-1.349,0.242-1.861,0.648l-9.699,6.789C17.577,29.963,17,30.914,17,32\r\n\t\t\t\tc0,1.089,0.581,2.043,1.449,2.568l9.68,6.777C28.642,41.754,29.292,42,30,42c1.649,0,2.986-1.33,2.999-2.977h0.005v-4.066\r\n\t\t\t\tl9.125,6.387C42.643,41.754,43.292,42,44,42c1.648,0,2.986-1.33,2.999-2.977h0.005v-14h-0.005C46.999,25.016,47,25.008,47,25z\r\n\t\t\t\t M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.circle_rewind = circle_rewind; \ No newline at end of file diff --git a/dist/ikons/circle_right.js b/dist/ikons/circle_right.js new file mode 100644 index 000000000..c56910b7b --- /dev/null +++ b/dist/ikons/circle_right.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.circle_right = void 0; +var circle_right = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "CIRCLE__x2F__RIGHT_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CIRCLE__x2F__RIGHT" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CIRCLE__x2F__RIGHT" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M47,29.778l0.007-0.008l-10-9L37,20.778C36.468,20.3,35.771,20,35,20c-1.657,0-3,1.343-3,3c0,0.885,0.391,1.673,1,2.222\r\n\t\t\t\tl-0.007,0.008L37.182,29H19c-1.657,0-3,1.343-3,3s1.343,3,3,3h18.182l-4.188,3.77L33,38.777c-0.61,0.55-1,1.338-1,2.223\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.771,0,1.468-0.299,2-0.777l0.007,0.008l10-9L47,34.223c0.609-0.55,1-1.337,1-2.223\r\n\t\t\t\tS47.609,30.328,47,29.778z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58\r\n\t\t\t\tC17.641,58,6,46.359,6,32C6,17.64,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M47,29.778l0.007-0.008l-10-9L37,20.778C36.468,20.3,35.771,20,35,20c-1.657,0-3,1.343-3,3c0,0.885,0.391,1.673,1,2.222\r\n\t\t\t\tl-0.007,0.008L37.182,29H19c-1.657,0-3,1.343-3,3s1.343,3,3,3h18.182l-4.188,3.77L33,38.777c-0.61,0.55-1,1.338-1,2.223\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.771,0,1.468-0.299,2-0.777l0.007,0.008l10-9L47,34.223c0.609-0.55,1-1.337,1-2.223\r\n\t\t\t\tS47.609,30.328,47,29.778z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58\r\n\t\t\t\tC17.641,58,6,46.359,6,32C6,17.64,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.circle_right = circle_right; \ No newline at end of file diff --git a/dist/ikons/circle_skip_next.js b/dist/ikons/circle_skip_next.js new file mode 100644 index 000000000..38c4a4c4f --- /dev/null +++ b/dist/ikons/circle_skip_next.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.circle_skip_next = void 0; +var circle_skip_next = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "CIRCLE__x2F__SKIP_NEXT_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CIRCLE__x2F__SKIP_NEXT" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CIRCLE__x2F__SKIP_NEXT" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M39,22c-1.657,0-3,1.343-3,3v4.29l-9.235-6.717L26.76,22.58C26.264,22.219,25.66,22,25,22c-1.657,0-3,1.343-3,3v14\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.66,0,1.264-0.219,1.76-0.58l0.005,0.007L36,34.71V39c0,1.657,1.343,3,3,3s3-1.343,3-3V25\r\n\t\t\t\tC42,23.343,40.657,22,39,22z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58\r\n\t\t\t\tC17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M39,22c-1.657,0-3,1.343-3,3v4.29l-9.235-6.717L26.76,22.58C26.264,22.219,25.66,22,25,22c-1.657,0-3,1.343-3,3v14\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.66,0,1.264-0.219,1.76-0.58l0.005,0.007L36,34.71V39c0,1.657,1.343,3,3,3s3-1.343,3-3V25\r\n\t\t\t\tC42,23.343,40.657,22,39,22z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58\r\n\t\t\t\tC17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.circle_skip_next = circle_skip_next; \ No newline at end of file diff --git a/dist/ikons/circle_skip_previous.js b/dist/ikons/circle_skip_previous.js new file mode 100644 index 000000000..b431290b7 --- /dev/null +++ b/dist/ikons/circle_skip_previous.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.circle_skip_previous = void 0; +var circle_skip_previous = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "CIRCLE__x2F__SKIP_PREVIOUS_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CIRCLE__x2F__SKIP_PREVIOUS" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CIRCLE__x2F__SKIP_PREVIOUS" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M39,22c-0.66,0-1.266,0.219-1.76,0.58l-0.006-0.007L28,29.291V25c0-1.657-1.343-3-3-3s-3,1.343-3,3v14\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3v-4.29l9.234,6.717l0.006-0.007C37.736,41.781,38.34,42,39,42c1.657,0,3-1.343,3-3V25\r\n\t\t\t\tC42,23.343,40.657,22,39,22z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58\r\n\t\t\t\tC17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M39,22c-0.66,0-1.266,0.219-1.76,0.58l-0.006-0.007L28,29.291V25c0-1.657-1.343-3-3-3s-3,1.343-3,3v14\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3v-4.29l9.234,6.717l0.006-0.007C37.736,41.781,38.34,42,39,42c1.657,0,3-1.343,3-3V25\r\n\t\t\t\tC42,23.343,40.657,22,39,22z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58\r\n\t\t\t\tC17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.circle_skip_previous = circle_skip_previous; \ No newline at end of file diff --git a/dist/ikons/circle_stop.js b/dist/ikons/circle_stop.js new file mode 100644 index 000000000..599c64d1a --- /dev/null +++ b/dist/ikons/circle_stop.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.circle_stop = void 0; +var circle_stop = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "CIRCLE__x2F__STOP_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CIRCLE__x2F__STOP" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CIRCLE__x2F__STOP" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M40,21H24c-1.657,0-3,1.343-3,3v16c0,1.657,1.343,3,3,3h16c1.657,0,3-1.343,3-3V24C43,22.343,41.657,21,40,21z M32,0\r\n\t\t\t\tC14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6\r\n\t\t\t\tc14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M40,21H24c-1.657,0-3,1.343-3,3v16c0,1.657,1.343,3,3,3h16c1.657,0,3-1.343,3-3V24C43,22.343,41.657,21,40,21z M32,0\r\n\t\t\t\tC14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6\r\n\t\t\t\tc14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.circle_stop = circle_stop; \ No newline at end of file diff --git a/dist/ikons/circle_up.js b/dist/ikons/circle_up.js new file mode 100644 index 000000000..f91322c87 --- /dev/null +++ b/dist/ikons/circle_up.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.circle_up = void 0; +var circle_up = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "CIRCLE__x2F__UP_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CIRCLE__x2F__UP" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CIRCLE__x2F__UP" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M43.23,26.993l-9-10L34.223,17c-0.55-0.61-1.336-1-2.223-1c-0.885,0-1.672,0.391-2.222,1l-0.008-0.007l-9,10L20.778,27\r\n\t\t\t\tC20.3,27.532,20,28.229,20,29c0,1.657,1.343,3,3,3c0.885,0,1.673-0.391,2.222-1l0.008,0.007L29,26.818V45c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3V26.818l3.77,4.189L38.777,31c0.55,0.61,1.338,1,2.223,1c1.657,0,3-1.343,3-3c0-0.772-0.3-1.468-0.777-2\r\n\t\t\t\tL43.23,26.993z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.64,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M43.23,26.993l-9-10L34.223,17c-0.55-0.61-1.336-1-2.223-1c-0.885,0-1.672,0.391-2.222,1l-0.008-0.007l-9,10L20.778,27\r\n\t\t\t\tC20.3,27.532,20,28.229,20,29c0,1.657,1.343,3,3,3c0.885,0,1.673-0.391,2.222-1l0.008,0.007L29,26.818V45c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3V26.818l3.77,4.189L38.777,31c0.55,0.61,1.338,1,2.223,1c1.657,0,3-1.343,3-3c0-0.772-0.3-1.468-0.777-2\r\n\t\t\t\tL43.23,26.993z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.64,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.circle_up = circle_up; \ No newline at end of file diff --git a/dist/ikons/clip.js b/dist/ikons/clip.js new file mode 100644 index 000000000..e10cebfc9 --- /dev/null +++ b/dist/ikons/clip.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.clip = void 0; +var clip = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "CLIP" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M55.628,11.373c-7.029-7.029-18.426-7.029-25.456,0L6.837,34.707\r\n\t\t\tc-5.077,5.077-5.077,13.308,0,18.385c5.077,5.077,13.308,5.077,18.385,0l21.92-21.92c3.124-3.124,3.124-8.189,0-11.314\r\n\t\t\tc-3.124-3.124-8.19-3.124-11.314,0L17.444,38.243c-1.172,1.172-1.172,3.071,0,4.243c1.172,1.172,3.071,1.172,4.243,0\r\n\t\t\tl18.385-18.385c0.781-0.781,2.047-0.781,2.828,0c0.781,0.781,0.781,2.047,0,2.828l-21.92,21.92c-2.734,2.734-7.166,2.734-9.899,0\r\n\t\t\tc-2.734-2.734-2.734-7.166,0-9.9l23.334-23.334c4.686-4.686,12.284-4.686,16.971,0c4.686,4.686,4.686,12.284,0,16.971\r\n\t\t\tL31.586,52.385c-1.172,1.172-1.172,3.071,0,4.243c1.172,1.171,3.071,1.171,4.243,0l19.799-19.799\r\n\t\t\tC62.657,29.799,62.657,18.402,55.628,11.373z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M55.628,11.373c-7.029-7.029-18.426-7.029-25.456,0L6.837,34.707\r\n\t\t\tc-5.077,5.077-5.077,13.308,0,18.385c5.077,5.077,13.308,5.077,18.385,0l21.92-21.92c3.124-3.124,3.124-8.189,0-11.314\r\n\t\t\tc-3.124-3.124-8.19-3.124-11.314,0L17.444,38.243c-1.172,1.172-1.172,3.071,0,4.243c1.172,1.172,3.071,1.172,4.243,0\r\n\t\t\tl18.385-18.385c0.781-0.781,2.047-0.781,2.828,0c0.781,0.781,0.781,2.047,0,2.828l-21.92,21.92c-2.734,2.734-7.166,2.734-9.899,0\r\n\t\t\tc-2.734-2.734-2.734-7.166,0-9.9l23.334-23.334c4.686-4.686,12.284-4.686,16.971,0c4.686,4.686,4.686,12.284,0,16.971\r\n\t\t\tL31.586,52.385c-1.172,1.172-1.172,3.071,0,4.243c1.172,1.171,3.071,1.171,4.243,0l19.799-19.799\r\n\t\t\tC62.657,29.799,62.657,18.402,55.628,11.373z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.clip = clip; \ No newline at end of file diff --git a/dist/ikons/close.js b/dist/ikons/close.js new file mode 100644 index 000000000..548c16780 --- /dev/null +++ b/dist/ikons/close.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.close = void 0; +var close = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "CLOSE_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CLOSE" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CLOSE" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M36.243,32l11.879-11.879C48.664,19.579,49,18.828,49,18c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879\r\n\t\t\t\tL32,27.757L20.121,15.879C19.578,15.336,18.828,15,18,15c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L27.757,32\r\n\t\t\t\tL15.879,43.879C15.336,44.422,15,45.172,15,46c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L32,36.243l11.879,11.879\r\n\t\t\t\tC44.422,48.664,45.172,49,46,49c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L36.243,32z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M36.243,32l11.879-11.879C48.664,19.579,49,18.828,49,18c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879\r\n\t\t\t\tL32,27.757L20.121,15.879C19.578,15.336,18.828,15,18,15c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L27.757,32\r\n\t\t\t\tL15.879,43.879C15.336,44.422,15,45.172,15,46c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L32,36.243l11.879,11.879\r\n\t\t\t\tC44.422,48.664,45.172,49,46,49c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L36.243,32z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.close = close; \ No newline at end of file diff --git a/dist/ikons/cloud.js b/dist/ikons/cloud.js new file mode 100644 index 000000000..13884338b --- /dev/null +++ b/dist/ikons/cloud.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cloud = void 0; +var cloud = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "CLOUD_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CLOUD" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CLOUD" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M53.387,24.656C50.048,16.086,41.753,10,32,10s-18.048,6.086-21.387,14.655C4.47,26.532,0,32.243,0,39\r\n\t\t\t\tc0,8.284,6.716,15,15,15h34c8.284,0,15-6.716,15-15C64,32.243,59.529,26.532,53.387,24.656z M49,48H15c-4.97,0-9-4.029-9-9\r\n\t\t\t\tc0-2.68,1.178-5.08,3.037-6.728c0.192-0.17,0.392-0.331,0.597-0.485c0.013-0.01,0.027-0.02,0.04-0.03\r\n\t\t\t\tc0.194-0.144,0.395-0.278,0.601-0.406c0.032-0.02,0.064-0.039,0.096-0.058c0.192-0.116,0.388-0.225,0.588-0.326\r\n\t\t\t\tc0.055-0.028,0.111-0.054,0.167-0.08c0.184-0.089,0.371-0.172,0.561-0.248c0.083-0.033,0.168-0.062,0.252-0.092\r\n\t\t\t\tc0.171-0.062,0.343-0.123,0.519-0.175c0.116-0.034,0.236-0.062,0.354-0.091c0.152-0.038,0.303-0.079,0.457-0.109\r\n\t\t\t\tc0.162-0.032,0.328-0.053,0.493-0.075c0.119-0.016,0.236-0.039,0.356-0.05C14.408,30.017,14.702,30,15,30\r\n\t\t\t\tc0.094,0,0.185,0.011,0.278,0.014c0.091-0.513,0.206-1.017,0.342-1.512c0.033-0.121,0.078-0.237,0.114-0.357\r\n\t\t\t\tc0.112-0.375,0.227-0.749,0.364-1.112c0.041-0.11,0.092-0.215,0.135-0.324c0.148-0.37,0.3-0.737,0.473-1.093\r\n\t\t\t\tc0.042-0.086,0.09-0.168,0.133-0.253c0.188-0.372,0.384-0.741,0.598-1.097C20.406,19.318,25.808,16,32,16\r\n\t\t\t\tc6.191,0,11.596,3.318,14.562,8.266c0.213,0.357,0.41,0.725,0.599,1.097c0.043,0.085,0.091,0.167,0.133,0.253\r\n\t\t\t\tc0.173,0.356,0.325,0.724,0.474,1.093c0.043,0.109,0.094,0.214,0.135,0.324c0.137,0.363,0.252,0.737,0.363,1.112\r\n\t\t\t\tc0.036,0.12,0.082,0.236,0.114,0.357c0.136,0.495,0.251,0.999,0.343,1.512C48.814,30.011,48.906,30,49,30\r\n\t\t\t\tc0.298,0,0.592,0.016,0.882,0.045c0.12,0.012,0.237,0.034,0.356,0.05c0.164,0.023,0.33,0.043,0.492,0.075\r\n\t\t\t\tc0.156,0.03,0.307,0.07,0.457,0.109c0.119,0.029,0.238,0.057,0.354,0.091c0.176,0.052,0.349,0.113,0.519,0.175\r\n\t\t\t\tc0.084,0.031,0.17,0.059,0.252,0.092c0.191,0.076,0.377,0.16,0.562,0.248c0.056,0.026,0.112,0.053,0.167,0.08\r\n\t\t\t\tc0.201,0.101,0.396,0.21,0.588,0.326c0.032,0.019,0.064,0.039,0.096,0.058c0.207,0.128,0.406,0.263,0.602,0.406\r\n\t\t\t\tc0.013,0.01,0.027,0.02,0.04,0.03c0.206,0.154,0.405,0.315,0.597,0.485C56.822,33.921,58,36.32,58,39C58,43.971,53.971,48,49,48z\r\n\t\t\t\t" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M53.387,24.656C50.048,16.086,41.753,10,32,10s-18.048,6.086-21.387,14.655C4.47,26.532,0,32.243,0,39\r\n\t\t\t\tc0,8.284,6.716,15,15,15h34c8.284,0,15-6.716,15-15C64,32.243,59.529,26.532,53.387,24.656z M49,48H15c-4.97,0-9-4.029-9-9\r\n\t\t\t\tc0-2.68,1.178-5.08,3.037-6.728c0.192-0.17,0.392-0.331,0.597-0.485c0.013-0.01,0.027-0.02,0.04-0.03\r\n\t\t\t\tc0.194-0.144,0.395-0.278,0.601-0.406c0.032-0.02,0.064-0.039,0.096-0.058c0.192-0.116,0.388-0.225,0.588-0.326\r\n\t\t\t\tc0.055-0.028,0.111-0.054,0.167-0.08c0.184-0.089,0.371-0.172,0.561-0.248c0.083-0.033,0.168-0.062,0.252-0.092\r\n\t\t\t\tc0.171-0.062,0.343-0.123,0.519-0.175c0.116-0.034,0.236-0.062,0.354-0.091c0.152-0.038,0.303-0.079,0.457-0.109\r\n\t\t\t\tc0.162-0.032,0.328-0.053,0.493-0.075c0.119-0.016,0.236-0.039,0.356-0.05C14.408,30.017,14.702,30,15,30\r\n\t\t\t\tc0.094,0,0.185,0.011,0.278,0.014c0.091-0.513,0.206-1.017,0.342-1.512c0.033-0.121,0.078-0.237,0.114-0.357\r\n\t\t\t\tc0.112-0.375,0.227-0.749,0.364-1.112c0.041-0.11,0.092-0.215,0.135-0.324c0.148-0.37,0.3-0.737,0.473-1.093\r\n\t\t\t\tc0.042-0.086,0.09-0.168,0.133-0.253c0.188-0.372,0.384-0.741,0.598-1.097C20.406,19.318,25.808,16,32,16\r\n\t\t\t\tc6.191,0,11.596,3.318,14.562,8.266c0.213,0.357,0.41,0.725,0.599,1.097c0.043,0.085,0.091,0.167,0.133,0.253\r\n\t\t\t\tc0.173,0.356,0.325,0.724,0.474,1.093c0.043,0.109,0.094,0.214,0.135,0.324c0.137,0.363,0.252,0.737,0.363,1.112\r\n\t\t\t\tc0.036,0.12,0.082,0.236,0.114,0.357c0.136,0.495,0.251,0.999,0.343,1.512C48.814,30.011,48.906,30,49,30\r\n\t\t\t\tc0.298,0,0.592,0.016,0.882,0.045c0.12,0.012,0.237,0.034,0.356,0.05c0.164,0.023,0.33,0.043,0.492,0.075\r\n\t\t\t\tc0.156,0.03,0.307,0.07,0.457,0.109c0.119,0.029,0.238,0.057,0.354,0.091c0.176,0.052,0.349,0.113,0.519,0.175\r\n\t\t\t\tc0.084,0.031,0.17,0.059,0.252,0.092c0.191,0.076,0.377,0.16,0.562,0.248c0.056,0.026,0.112,0.053,0.167,0.08\r\n\t\t\t\tc0.201,0.101,0.396,0.21,0.588,0.326c0.032,0.019,0.064,0.039,0.096,0.058c0.207,0.128,0.406,0.263,0.602,0.406\r\n\t\t\t\tc0.013,0.01,0.027,0.02,0.04,0.03c0.206,0.154,0.405,0.315,0.597,0.485C56.822,33.921,58,36.32,58,39C58,43.971,53.971,48,49,48z\r\n\t\t\t\t" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.cloud = cloud; \ No newline at end of file diff --git a/dist/ikons/cloud_download.js b/dist/ikons/cloud_download.js new file mode 100644 index 000000000..a1c0c7ebb --- /dev/null +++ b/dist/ikons/cloud_download.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cloud_download = void 0; +var cloud_download = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "CLOUD__x2F__DOWNLOAD_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CLOUD__x2F__DOWNLOAD" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CLOUD__x2F__DOWNLOAD" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M41,44c-0.885,0-1.682,0.384-2.23,0.993l0,0L35,49.182V34c0-1.657-1.343-3-3-3s-3,1.343-3,3v15.182l-3.77-4.188l0,0\r\n\t\t\t\tC24.681,44.384,23.885,44,23,44c-1.657,0-3,1.343-3,3c0,0.096,0.005,0.191,0.014,0.286l0,0c0.062,0.659,0.337,1.256,0.756,1.721\r\n\t\t\t\tl0,0l9,10L29.778,59c0.549,0.609,1.337,1,2.222,1s1.673-0.391,2.223-1.001l0.008,0.007l9-10l0,0\r\n\t\t\t\tc0.418-0.465,0.693-1.061,0.756-1.719c0-0.002,0-0.004,0-0.006C43.995,47.189,44,47.096,44,47.001V47\r\n\t\t\t\tc0-0.104-0.005-0.206-0.016-0.307C43.831,45.182,42.553,44,41,44z M53.387,19.656C50.048,11.086,41.753,5,32,5\r\n\t\t\t\tc-9.752,0-18.048,6.086-21.387,14.655C4.47,21.532,0,27.243,0,34c0,8.284,6.716,15,15,15c1.657,0,3-1.343,3-3s-1.343-3-3-3\r\n\t\t\t\tc-4.97,0-9-4.029-9-9c0-2.68,1.178-5.08,3.037-6.728c0.192-0.17,0.392-0.331,0.597-0.485c0.013-0.01,0.027-0.02,0.04-0.03\r\n\t\t\t\tc0.194-0.144,0.395-0.278,0.601-0.406c0.032-0.02,0.064-0.039,0.096-0.058c0.192-0.116,0.388-0.225,0.588-0.326\r\n\t\t\t\tc0.055-0.028,0.111-0.054,0.167-0.08c0.184-0.089,0.371-0.172,0.561-0.248c0.083-0.033,0.168-0.062,0.252-0.092\r\n\t\t\t\tc0.171-0.062,0.343-0.123,0.519-0.175c0.116-0.034,0.236-0.062,0.354-0.091c0.152-0.038,0.303-0.079,0.457-0.109\r\n\t\t\t\tc0.162-0.032,0.328-0.053,0.493-0.075c0.119-0.016,0.236-0.039,0.356-0.05C14.408,25.017,14.702,25,15,25\r\n\t\t\t\tc0.094,0,0.185,0.011,0.278,0.014c0.091-0.513,0.206-1.017,0.342-1.512c0.033-0.121,0.078-0.237,0.114-0.357\r\n\t\t\t\tc0.112-0.375,0.227-0.749,0.364-1.112c0.041-0.11,0.092-0.215,0.135-0.324c0.148-0.37,0.3-0.737,0.473-1.093\r\n\t\t\t\tc0.042-0.086,0.09-0.168,0.133-0.253c0.188-0.372,0.384-0.741,0.598-1.097C20.406,14.318,25.808,11,32,11\r\n\t\t\t\tc6.191,0,11.596,3.318,14.562,8.266c0.213,0.357,0.41,0.725,0.599,1.097c0.043,0.085,0.091,0.167,0.133,0.253\r\n\t\t\t\tc0.173,0.356,0.325,0.724,0.474,1.093c0.043,0.109,0.094,0.214,0.135,0.324c0.137,0.363,0.252,0.737,0.363,1.112\r\n\t\t\t\tc0.036,0.12,0.082,0.236,0.114,0.357c0.136,0.495,0.251,0.999,0.343,1.512C48.814,25.011,48.906,25,49,25\r\n\t\t\t\tc0.298,0,0.592,0.016,0.882,0.045c0.12,0.012,0.237,0.034,0.356,0.05c0.164,0.023,0.33,0.043,0.492,0.075\r\n\t\t\t\tc0.156,0.03,0.307,0.07,0.457,0.109c0.119,0.029,0.238,0.057,0.354,0.091c0.176,0.052,0.349,0.113,0.519,0.175\r\n\t\t\t\tc0.084,0.031,0.17,0.059,0.252,0.092c0.191,0.076,0.377,0.16,0.562,0.248c0.056,0.026,0.112,0.053,0.167,0.08\r\n\t\t\t\tc0.201,0.101,0.396,0.21,0.589,0.326c0.032,0.019,0.063,0.039,0.097,0.058c0.205,0.128,0.405,0.263,0.601,0.406\r\n\t\t\t\tc0.013,0.01,0.026,0.02,0.04,0.03c0.206,0.154,0.406,0.315,0.597,0.485C56.822,28.921,58,31.32,58,34c0,4.971-4.029,9-9,9\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3c8.284,0,15-6.716,15-15C64,27.243,59.529,21.532,53.387,19.656z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M41,44c-0.885,0-1.682,0.384-2.23,0.993l0,0L35,49.182V34c0-1.657-1.343-3-3-3s-3,1.343-3,3v15.182l-3.77-4.188l0,0\r\n\t\t\t\tC24.681,44.384,23.885,44,23,44c-1.657,0-3,1.343-3,3c0,0.096,0.005,0.191,0.014,0.286l0,0c0.062,0.659,0.337,1.256,0.756,1.721\r\n\t\t\t\tl0,0l9,10L29.778,59c0.549,0.609,1.337,1,2.222,1s1.673-0.391,2.223-1.001l0.008,0.007l9-10l0,0\r\n\t\t\t\tc0.418-0.465,0.693-1.061,0.756-1.719c0-0.002,0-0.004,0-0.006C43.995,47.189,44,47.096,44,47.001V47\r\n\t\t\t\tc0-0.104-0.005-0.206-0.016-0.307C43.831,45.182,42.553,44,41,44z M53.387,19.656C50.048,11.086,41.753,5,32,5\r\n\t\t\t\tc-9.752,0-18.048,6.086-21.387,14.655C4.47,21.532,0,27.243,0,34c0,8.284,6.716,15,15,15c1.657,0,3-1.343,3-3s-1.343-3-3-3\r\n\t\t\t\tc-4.97,0-9-4.029-9-9c0-2.68,1.178-5.08,3.037-6.728c0.192-0.17,0.392-0.331,0.597-0.485c0.013-0.01,0.027-0.02,0.04-0.03\r\n\t\t\t\tc0.194-0.144,0.395-0.278,0.601-0.406c0.032-0.02,0.064-0.039,0.096-0.058c0.192-0.116,0.388-0.225,0.588-0.326\r\n\t\t\t\tc0.055-0.028,0.111-0.054,0.167-0.08c0.184-0.089,0.371-0.172,0.561-0.248c0.083-0.033,0.168-0.062,0.252-0.092\r\n\t\t\t\tc0.171-0.062,0.343-0.123,0.519-0.175c0.116-0.034,0.236-0.062,0.354-0.091c0.152-0.038,0.303-0.079,0.457-0.109\r\n\t\t\t\tc0.162-0.032,0.328-0.053,0.493-0.075c0.119-0.016,0.236-0.039,0.356-0.05C14.408,25.017,14.702,25,15,25\r\n\t\t\t\tc0.094,0,0.185,0.011,0.278,0.014c0.091-0.513,0.206-1.017,0.342-1.512c0.033-0.121,0.078-0.237,0.114-0.357\r\n\t\t\t\tc0.112-0.375,0.227-0.749,0.364-1.112c0.041-0.11,0.092-0.215,0.135-0.324c0.148-0.37,0.3-0.737,0.473-1.093\r\n\t\t\t\tc0.042-0.086,0.09-0.168,0.133-0.253c0.188-0.372,0.384-0.741,0.598-1.097C20.406,14.318,25.808,11,32,11\r\n\t\t\t\tc6.191,0,11.596,3.318,14.562,8.266c0.213,0.357,0.41,0.725,0.599,1.097c0.043,0.085,0.091,0.167,0.133,0.253\r\n\t\t\t\tc0.173,0.356,0.325,0.724,0.474,1.093c0.043,0.109,0.094,0.214,0.135,0.324c0.137,0.363,0.252,0.737,0.363,1.112\r\n\t\t\t\tc0.036,0.12,0.082,0.236,0.114,0.357c0.136,0.495,0.251,0.999,0.343,1.512C48.814,25.011,48.906,25,49,25\r\n\t\t\t\tc0.298,0,0.592,0.016,0.882,0.045c0.12,0.012,0.237,0.034,0.356,0.05c0.164,0.023,0.33,0.043,0.492,0.075\r\n\t\t\t\tc0.156,0.03,0.307,0.07,0.457,0.109c0.119,0.029,0.238,0.057,0.354,0.091c0.176,0.052,0.349,0.113,0.519,0.175\r\n\t\t\t\tc0.084,0.031,0.17,0.059,0.252,0.092c0.191,0.076,0.377,0.16,0.562,0.248c0.056,0.026,0.112,0.053,0.167,0.08\r\n\t\t\t\tc0.201,0.101,0.396,0.21,0.589,0.326c0.032,0.019,0.063,0.039,0.097,0.058c0.205,0.128,0.405,0.263,0.601,0.406\r\n\t\t\t\tc0.013,0.01,0.026,0.02,0.04,0.03c0.206,0.154,0.406,0.315,0.597,0.485C56.822,28.921,58,31.32,58,34c0,4.971-4.029,9-9,9\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3c8.284,0,15-6.716,15-15C64,27.243,59.529,21.532,53.387,19.656z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.cloud_download = cloud_download; \ No newline at end of file diff --git a/dist/ikons/cloud_fail.js b/dist/ikons/cloud_fail.js new file mode 100644 index 000000000..50e288400 --- /dev/null +++ b/dist/ikons/cloud_fail.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cloud_fail = void 0; +var cloud_fail = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "CLOUD__x2F__FAIL_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CLOUD__x2F__FAIL" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CLOUD__x2F__FAIL" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M43,39c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L32,42.758l-5.879-5.879C25.578,36.336,24.829,36,24,36\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.829,0.336,1.578,0.879,2.121L27.757,47l-5.879,5.879C21.336,53.422,21,54.172,21,55\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.878L32,51.243l5.879,5.879C38.422,57.664,39.172,58,40,58c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.829-0.336-1.579-0.879-2.121L36.243,47l5.879-5.879C42.664,40.579,43,39.829,43,39z M53.387,20.656\r\n\t\t\t\tC50.048,12.086,41.752,6,32,6s-18.048,6.086-21.387,14.655C4.47,22.532,0,28.243,0,35c0,8.284,6.716,15,15,15\r\n\t\t\t\tc1.657,0,3-1.343,3-3s-1.343-3-3-3c-4.971,0-9-4.029-9-9c0-2.68,1.178-5.08,3.037-6.728c0.192-0.17,0.392-0.331,0.597-0.485\r\n\t\t\t\tc0.013-0.01,0.027-0.02,0.04-0.03c0.194-0.144,0.395-0.278,0.6-0.406c0.032-0.02,0.064-0.039,0.096-0.058\r\n\t\t\t\tc0.192-0.116,0.388-0.225,0.589-0.326c0.055-0.028,0.111-0.054,0.167-0.08c0.184-0.089,0.371-0.172,0.561-0.248\r\n\t\t\t\tc0.083-0.033,0.168-0.062,0.252-0.092c0.171-0.062,0.343-0.123,0.519-0.175c0.116-0.034,0.236-0.062,0.354-0.091\r\n\t\t\t\tc0.152-0.038,0.303-0.079,0.457-0.109c0.162-0.032,0.328-0.053,0.493-0.075c0.119-0.016,0.236-0.039,0.356-0.05\r\n\t\t\t\tC14.408,26.017,14.702,26,15,26c0.094,0,0.185,0.011,0.278,0.014c0.091-0.513,0.206-1.017,0.342-1.512\r\n\t\t\t\tc0.033-0.121,0.078-0.237,0.114-0.357c0.112-0.375,0.227-0.749,0.364-1.112c0.041-0.11,0.092-0.215,0.135-0.324\r\n\t\t\t\tc0.148-0.37,0.3-0.737,0.473-1.093c0.042-0.086,0.09-0.168,0.133-0.253c0.188-0.372,0.384-0.741,0.599-1.097\r\n\t\t\t\tC20.406,15.318,25.808,12,32,12c6.191,0,11.594,3.318,14.562,8.266c0.213,0.357,0.41,0.725,0.599,1.097\r\n\t\t\t\tc0.043,0.085,0.091,0.167,0.133,0.253c0.173,0.356,0.325,0.724,0.474,1.093c0.043,0.109,0.094,0.214,0.135,0.324\r\n\t\t\t\tc0.137,0.363,0.252,0.737,0.363,1.112c0.036,0.12,0.082,0.236,0.114,0.357c0.136,0.495,0.251,0.999,0.343,1.512\r\n\t\t\t\tC48.814,26.011,48.906,26,49,26c0.298,0,0.592,0.016,0.882,0.045c0.12,0.012,0.237,0.034,0.356,0.05\r\n\t\t\t\tc0.164,0.023,0.33,0.043,0.492,0.075c0.156,0.03,0.307,0.07,0.457,0.109c0.119,0.029,0.238,0.057,0.354,0.091\r\n\t\t\t\tc0.176,0.052,0.349,0.113,0.519,0.175c0.084,0.031,0.17,0.059,0.252,0.092c0.191,0.076,0.377,0.16,0.562,0.248\r\n\t\t\t\tc0.056,0.026,0.112,0.053,0.167,0.08c0.201,0.101,0.396,0.21,0.588,0.326c0.032,0.019,0.064,0.039,0.096,0.058\r\n\t\t\t\tc0.207,0.128,0.406,0.263,0.602,0.406c0.013,0.01,0.027,0.02,0.04,0.03c0.206,0.154,0.405,0.315,0.597,0.485\r\n\t\t\t\tC56.822,29.921,58,32.32,58,35c0,4.971-4.029,9-9,9c-1.657,0-3,1.343-3,3s1.343,3,3,3c8.284,0,15-6.716,15-15\r\n\t\t\t\tC64,28.243,59.529,22.532,53.387,20.656z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M43,39c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L32,42.758l-5.879-5.879C25.578,36.336,24.829,36,24,36\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.829,0.336,1.578,0.879,2.121L27.757,47l-5.879,5.879C21.336,53.422,21,54.172,21,55\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.878L32,51.243l5.879,5.879C38.422,57.664,39.172,58,40,58c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.829-0.336-1.579-0.879-2.121L36.243,47l5.879-5.879C42.664,40.579,43,39.829,43,39z M53.387,20.656\r\n\t\t\t\tC50.048,12.086,41.752,6,32,6s-18.048,6.086-21.387,14.655C4.47,22.532,0,28.243,0,35c0,8.284,6.716,15,15,15\r\n\t\t\t\tc1.657,0,3-1.343,3-3s-1.343-3-3-3c-4.971,0-9-4.029-9-9c0-2.68,1.178-5.08,3.037-6.728c0.192-0.17,0.392-0.331,0.597-0.485\r\n\t\t\t\tc0.013-0.01,0.027-0.02,0.04-0.03c0.194-0.144,0.395-0.278,0.6-0.406c0.032-0.02,0.064-0.039,0.096-0.058\r\n\t\t\t\tc0.192-0.116,0.388-0.225,0.589-0.326c0.055-0.028,0.111-0.054,0.167-0.08c0.184-0.089,0.371-0.172,0.561-0.248\r\n\t\t\t\tc0.083-0.033,0.168-0.062,0.252-0.092c0.171-0.062,0.343-0.123,0.519-0.175c0.116-0.034,0.236-0.062,0.354-0.091\r\n\t\t\t\tc0.152-0.038,0.303-0.079,0.457-0.109c0.162-0.032,0.328-0.053,0.493-0.075c0.119-0.016,0.236-0.039,0.356-0.05\r\n\t\t\t\tC14.408,26.017,14.702,26,15,26c0.094,0,0.185,0.011,0.278,0.014c0.091-0.513,0.206-1.017,0.342-1.512\r\n\t\t\t\tc0.033-0.121,0.078-0.237,0.114-0.357c0.112-0.375,0.227-0.749,0.364-1.112c0.041-0.11,0.092-0.215,0.135-0.324\r\n\t\t\t\tc0.148-0.37,0.3-0.737,0.473-1.093c0.042-0.086,0.09-0.168,0.133-0.253c0.188-0.372,0.384-0.741,0.599-1.097\r\n\t\t\t\tC20.406,15.318,25.808,12,32,12c6.191,0,11.594,3.318,14.562,8.266c0.213,0.357,0.41,0.725,0.599,1.097\r\n\t\t\t\tc0.043,0.085,0.091,0.167,0.133,0.253c0.173,0.356,0.325,0.724,0.474,1.093c0.043,0.109,0.094,0.214,0.135,0.324\r\n\t\t\t\tc0.137,0.363,0.252,0.737,0.363,1.112c0.036,0.12,0.082,0.236,0.114,0.357c0.136,0.495,0.251,0.999,0.343,1.512\r\n\t\t\t\tC48.814,26.011,48.906,26,49,26c0.298,0,0.592,0.016,0.882,0.045c0.12,0.012,0.237,0.034,0.356,0.05\r\n\t\t\t\tc0.164,0.023,0.33,0.043,0.492,0.075c0.156,0.03,0.307,0.07,0.457,0.109c0.119,0.029,0.238,0.057,0.354,0.091\r\n\t\t\t\tc0.176,0.052,0.349,0.113,0.519,0.175c0.084,0.031,0.17,0.059,0.252,0.092c0.191,0.076,0.377,0.16,0.562,0.248\r\n\t\t\t\tc0.056,0.026,0.112,0.053,0.167,0.08c0.201,0.101,0.396,0.21,0.588,0.326c0.032,0.019,0.064,0.039,0.096,0.058\r\n\t\t\t\tc0.207,0.128,0.406,0.263,0.602,0.406c0.013,0.01,0.027,0.02,0.04,0.03c0.206,0.154,0.405,0.315,0.597,0.485\r\n\t\t\t\tC56.822,29.921,58,32.32,58,35c0,4.971-4.029,9-9,9c-1.657,0-3,1.343-3,3s1.343,3,3,3c8.284,0,15-6.716,15-15\r\n\t\t\t\tC64,28.243,59.529,22.532,53.387,20.656z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.cloud_fail = cloud_fail; \ No newline at end of file diff --git a/dist/ikons/cloud_ok.js b/dist/ikons/cloud_ok.js new file mode 100644 index 000000000..410456066 --- /dev/null +++ b/dist/ikons/cloud_ok.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cloud_ok = void 0; +var cloud_ok = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "CLOUD__x2F__OK_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CLOUD__x2F__OK" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CLOUD__x2F__OK" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M43,36c-1.039,0-1.954,0.527-2.493,1.33l-8.936,12.998l-5.45-5.45C25.578,44.336,24.828,44,24,44c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.829,0.336,1.579,0.879,2.121l8,8C30.422,57.664,31.172,58,32,58c1.039,0,1.954-0.527,2.493-1.33l10.969-15.954\r\n\t\t\t\tC45.801,40.23,46,39.639,46,39C46,37.343,44.657,36,43,36z M53.387,20.656C50.048,12.086,41.752,6,32,6\r\n\t\t\t\tc-9.753,0-18.048,6.086-21.387,14.655C4.47,22.532,0,28.243,0,35c0,8.284,6.716,15,15,15c1.657,0,3-1.343,3-3s-1.343-3-3-3\r\n\t\t\t\tc-4.971,0-9-4.029-9-9c0-2.68,1.178-5.08,3.037-6.728c0.192-0.17,0.392-0.331,0.597-0.485c0.013-0.01,0.027-0.02,0.04-0.03\r\n\t\t\t\tc0.194-0.144,0.395-0.278,0.601-0.406c0.032-0.02,0.064-0.039,0.096-0.058c0.192-0.116,0.388-0.225,0.588-0.326\r\n\t\t\t\tc0.055-0.028,0.111-0.054,0.167-0.08c0.184-0.089,0.371-0.172,0.561-0.248c0.083-0.033,0.168-0.062,0.252-0.092\r\n\t\t\t\tc0.171-0.062,0.343-0.123,0.519-0.175c0.116-0.034,0.236-0.062,0.354-0.091c0.152-0.038,0.303-0.079,0.457-0.109\r\n\t\t\t\tc0.162-0.032,0.328-0.053,0.493-0.075c0.119-0.016,0.236-0.039,0.356-0.05C14.408,26.017,14.702,26,15,26\r\n\t\t\t\tc0.094,0,0.185,0.011,0.278,0.014c0.091-0.513,0.206-1.017,0.342-1.512c0.033-0.121,0.078-0.237,0.114-0.357\r\n\t\t\t\tc0.112-0.375,0.227-0.749,0.364-1.112c0.041-0.11,0.092-0.215,0.135-0.324c0.148-0.37,0.3-0.737,0.473-1.093\r\n\t\t\t\tc0.041-0.086,0.09-0.168,0.133-0.253c0.188-0.372,0.384-0.741,0.598-1.097C20.406,15.318,25.808,12,32,12\r\n\t\t\t\tc6.191,0,11.594,3.318,14.562,8.266c0.213,0.357,0.41,0.725,0.599,1.097c0.043,0.085,0.091,0.167,0.133,0.253\r\n\t\t\t\tc0.172,0.356,0.325,0.724,0.474,1.093c0.043,0.109,0.094,0.214,0.135,0.324c0.137,0.363,0.252,0.737,0.363,1.112\r\n\t\t\t\tc0.036,0.12,0.082,0.236,0.114,0.357c0.136,0.495,0.251,0.999,0.343,1.512C48.814,26.011,48.906,26,49,26\r\n\t\t\t\tc0.298,0,0.592,0.016,0.882,0.045c0.12,0.012,0.237,0.034,0.356,0.05c0.164,0.023,0.33,0.043,0.492,0.075\r\n\t\t\t\tc0.156,0.03,0.307,0.07,0.457,0.109c0.119,0.029,0.238,0.057,0.354,0.091c0.176,0.052,0.349,0.113,0.519,0.175\r\n\t\t\t\tc0.084,0.031,0.17,0.059,0.252,0.092c0.191,0.076,0.377,0.16,0.562,0.248c0.056,0.026,0.112,0.053,0.167,0.08\r\n\t\t\t\tc0.2,0.101,0.396,0.21,0.588,0.326c0.032,0.019,0.064,0.039,0.096,0.058c0.207,0.128,0.406,0.263,0.602,0.406\r\n\t\t\t\tc0.013,0.01,0.027,0.02,0.04,0.03c0.206,0.154,0.405,0.315,0.597,0.485C56.822,29.921,58,32.32,58,35c0,4.971-4.029,9-9,9\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3c8.284,0,15-6.716,15-15C64,28.243,59.529,22.532,53.387,20.656z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M43,36c-1.039,0-1.954,0.527-2.493,1.33l-8.936,12.998l-5.45-5.45C25.578,44.336,24.828,44,24,44c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.829,0.336,1.579,0.879,2.121l8,8C30.422,57.664,31.172,58,32,58c1.039,0,1.954-0.527,2.493-1.33l10.969-15.954\r\n\t\t\t\tC45.801,40.23,46,39.639,46,39C46,37.343,44.657,36,43,36z M53.387,20.656C50.048,12.086,41.752,6,32,6\r\n\t\t\t\tc-9.753,0-18.048,6.086-21.387,14.655C4.47,22.532,0,28.243,0,35c0,8.284,6.716,15,15,15c1.657,0,3-1.343,3-3s-1.343-3-3-3\r\n\t\t\t\tc-4.971,0-9-4.029-9-9c0-2.68,1.178-5.08,3.037-6.728c0.192-0.17,0.392-0.331,0.597-0.485c0.013-0.01,0.027-0.02,0.04-0.03\r\n\t\t\t\tc0.194-0.144,0.395-0.278,0.601-0.406c0.032-0.02,0.064-0.039,0.096-0.058c0.192-0.116,0.388-0.225,0.588-0.326\r\n\t\t\t\tc0.055-0.028,0.111-0.054,0.167-0.08c0.184-0.089,0.371-0.172,0.561-0.248c0.083-0.033,0.168-0.062,0.252-0.092\r\n\t\t\t\tc0.171-0.062,0.343-0.123,0.519-0.175c0.116-0.034,0.236-0.062,0.354-0.091c0.152-0.038,0.303-0.079,0.457-0.109\r\n\t\t\t\tc0.162-0.032,0.328-0.053,0.493-0.075c0.119-0.016,0.236-0.039,0.356-0.05C14.408,26.017,14.702,26,15,26\r\n\t\t\t\tc0.094,0,0.185,0.011,0.278,0.014c0.091-0.513,0.206-1.017,0.342-1.512c0.033-0.121,0.078-0.237,0.114-0.357\r\n\t\t\t\tc0.112-0.375,0.227-0.749,0.364-1.112c0.041-0.11,0.092-0.215,0.135-0.324c0.148-0.37,0.3-0.737,0.473-1.093\r\n\t\t\t\tc0.041-0.086,0.09-0.168,0.133-0.253c0.188-0.372,0.384-0.741,0.598-1.097C20.406,15.318,25.808,12,32,12\r\n\t\t\t\tc6.191,0,11.594,3.318,14.562,8.266c0.213,0.357,0.41,0.725,0.599,1.097c0.043,0.085,0.091,0.167,0.133,0.253\r\n\t\t\t\tc0.172,0.356,0.325,0.724,0.474,1.093c0.043,0.109,0.094,0.214,0.135,0.324c0.137,0.363,0.252,0.737,0.363,1.112\r\n\t\t\t\tc0.036,0.12,0.082,0.236,0.114,0.357c0.136,0.495,0.251,0.999,0.343,1.512C48.814,26.011,48.906,26,49,26\r\n\t\t\t\tc0.298,0,0.592,0.016,0.882,0.045c0.12,0.012,0.237,0.034,0.356,0.05c0.164,0.023,0.33,0.043,0.492,0.075\r\n\t\t\t\tc0.156,0.03,0.307,0.07,0.457,0.109c0.119,0.029,0.238,0.057,0.354,0.091c0.176,0.052,0.349,0.113,0.519,0.175\r\n\t\t\t\tc0.084,0.031,0.17,0.059,0.252,0.092c0.191,0.076,0.377,0.16,0.562,0.248c0.056,0.026,0.112,0.053,0.167,0.08\r\n\t\t\t\tc0.2,0.101,0.396,0.21,0.588,0.326c0.032,0.019,0.064,0.039,0.096,0.058c0.207,0.128,0.406,0.263,0.602,0.406\r\n\t\t\t\tc0.013,0.01,0.027,0.02,0.04,0.03c0.206,0.154,0.405,0.315,0.597,0.485C56.822,29.921,58,32.32,58,35c0,4.971-4.029,9-9,9\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3c8.284,0,15-6.716,15-15C64,28.243,59.529,22.532,53.387,20.656z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.cloud_ok = cloud_ok; \ No newline at end of file diff --git a/dist/ikons/cloud_upload.js b/dist/ikons/cloud_upload.js new file mode 100644 index 000000000..43048b68e --- /dev/null +++ b/dist/ikons/cloud_upload.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cloud_upload = void 0; +var cloud_upload = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "CLOUD__x2F__UPLOAD_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CLOUD__x2F__UPLOAD" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CLOUD__x2F__UPLOAD" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M43.986,43.719c0-0.002,0-0.004,0-0.006c-0.063-0.658-0.338-1.255-0.756-1.719l0,0l-0.008-0.01\r\n\t\t\t\tc-0.002,0-0.002-0.002-0.004-0.002l-8.99-9.989L34.221,32c-0.549-0.61-1.336-1-2.222-1c-0.885,0-1.673,0.391-2.222,1\r\n\t\t\t\tl-0.008-0.007l-8.988,9.987c-0.002,0.002-0.004,0.004-0.006,0.006l-0.006,0.007l0,0C20.292,42.525,20,43.229,20,44\r\n\t\t\t\tc0,0.518,0.131,1.005,0.362,1.43C20.87,46.365,21.861,47,23,47c0.033,0,0.066-0.002,0.099-0.003\r\n\t\t\t\tc0.019-0.001,0.038-0.001,0.057-0.002c0.022-0.001,0.043-0.003,0.065-0.005c0.033-0.002,0.066-0.006,0.098-0.008\r\n\t\t\t\tc0.012-0.002,0.024-0.004,0.036-0.006c0.044-0.004,0.087-0.011,0.13-0.018c0.001,0,0.003,0,0.004-0.001\r\n\t\t\t\tc0.686-0.112,1.294-0.458,1.74-0.953l0,0L29,41.818V57c0,1.657,1.343,3,3,3s3-1.343,3-3V41.818l3.77,4.188l0,0\r\n\t\t\t\tc0.446,0.495,1.056,0.841,1.742,0.953c0.002,0,0.002,0,0.002,0c0.045,0.007,0.088,0.013,0.133,0.019\r\n\t\t\t\tc0.011,0,0.022,0.002,0.033,0.004c0.033,0.002,0.067,0.006,0.1,0.008c0.021,0.002,0.043,0.004,0.063,0.005s0.04,0.001,0.06,0.002\r\n\t\t\t\tC40.936,46.999,40.967,47,41,47c1.657,0,3-1.343,3-3c0-0.001,0-0.001,0-0.002C44,43.904,43.995,43.811,43.986,43.719z\r\n\t\t\t\t M53.387,19.656C50.048,11.086,41.753,5,32,5c-9.752,0-18.048,6.086-21.387,14.655C4.47,21.532,0,27.243,0,34\r\n\t\t\t\tc0,8.284,6.716,15,15,15c1.657,0,3-1.343,3-3s-1.343-3-3-3c-4.971,0-9-4.029-9-9c0-2.68,1.178-5.08,3.037-6.728\r\n\t\t\t\tc0.192-0.17,0.392-0.331,0.597-0.485c0.013-0.01,0.027-0.02,0.04-0.03c0.194-0.144,0.395-0.278,0.6-0.406\r\n\t\t\t\tc0.032-0.02,0.064-0.039,0.096-0.058c0.192-0.116,0.388-0.225,0.588-0.326c0.055-0.028,0.111-0.054,0.167-0.08\r\n\t\t\t\tc0.184-0.089,0.371-0.172,0.561-0.248c0.083-0.033,0.168-0.062,0.252-0.092c0.171-0.062,0.343-0.123,0.519-0.175\r\n\t\t\t\tc0.116-0.034,0.236-0.062,0.354-0.091c0.152-0.038,0.303-0.079,0.457-0.109c0.162-0.032,0.328-0.053,0.493-0.075\r\n\t\t\t\tc0.119-0.016,0.236-0.039,0.356-0.05C14.408,25.017,14.702,25,15,25c0.094,0,0.185,0.011,0.278,0.014\r\n\t\t\t\tc0.091-0.513,0.206-1.017,0.342-1.512c0.033-0.121,0.078-0.237,0.114-0.357c0.112-0.375,0.227-0.749,0.364-1.112\r\n\t\t\t\tc0.041-0.11,0.092-0.215,0.135-0.324c0.148-0.37,0.3-0.737,0.473-1.093c0.042-0.086,0.09-0.168,0.133-0.253\r\n\t\t\t\tc0.188-0.372,0.384-0.741,0.599-1.097C20.406,14.318,25.808,11,32,11c6.191,0,11.596,3.318,14.562,8.266\r\n\t\t\t\tc0.213,0.357,0.41,0.725,0.598,1.097c0.043,0.085,0.091,0.167,0.133,0.253c0.173,0.356,0.325,0.724,0.473,1.093\r\n\t\t\t\tc0.043,0.109,0.094,0.214,0.135,0.324c0.138,0.363,0.252,0.737,0.365,1.112c0.035,0.12,0.08,0.236,0.113,0.357\r\n\t\t\t\tc0.137,0.495,0.251,0.999,0.342,1.512C48.814,25.011,48.906,25,49,25c0.298,0,0.592,0.016,0.882,0.045\r\n\t\t\t\tc0.12,0.012,0.237,0.034,0.356,0.05c0.164,0.023,0.33,0.043,0.492,0.075c0.156,0.03,0.307,0.07,0.457,0.109\r\n\t\t\t\tc0.119,0.029,0.238,0.057,0.354,0.091c0.176,0.052,0.349,0.113,0.519,0.175c0.084,0.031,0.17,0.059,0.252,0.092\r\n\t\t\t\tc0.191,0.076,0.377,0.16,0.562,0.248c0.056,0.026,0.112,0.053,0.167,0.08c0.201,0.101,0.396,0.21,0.588,0.326\r\n\t\t\t\tc0.032,0.019,0.064,0.039,0.096,0.058c0.207,0.128,0.406,0.263,0.602,0.406c0.013,0.01,0.027,0.02,0.04,0.03\r\n\t\t\t\tc0.206,0.154,0.405,0.315,0.597,0.485C56.822,28.921,58,31.32,58,34c0,4.971-4.029,9-9,9c-1.657,0-3,1.343-3,3s1.343,3,3,3\r\n\t\t\t\tc8.284,0,15-6.716,15-15C64,27.243,59.529,21.532,53.387,19.656z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M43.986,43.719c0-0.002,0-0.004,0-0.006c-0.063-0.658-0.338-1.255-0.756-1.719l0,0l-0.008-0.01\r\n\t\t\t\tc-0.002,0-0.002-0.002-0.004-0.002l-8.99-9.989L34.221,32c-0.549-0.61-1.336-1-2.222-1c-0.885,0-1.673,0.391-2.222,1\r\n\t\t\t\tl-0.008-0.007l-8.988,9.987c-0.002,0.002-0.004,0.004-0.006,0.006l-0.006,0.007l0,0C20.292,42.525,20,43.229,20,44\r\n\t\t\t\tc0,0.518,0.131,1.005,0.362,1.43C20.87,46.365,21.861,47,23,47c0.033,0,0.066-0.002,0.099-0.003\r\n\t\t\t\tc0.019-0.001,0.038-0.001,0.057-0.002c0.022-0.001,0.043-0.003,0.065-0.005c0.033-0.002,0.066-0.006,0.098-0.008\r\n\t\t\t\tc0.012-0.002,0.024-0.004,0.036-0.006c0.044-0.004,0.087-0.011,0.13-0.018c0.001,0,0.003,0,0.004-0.001\r\n\t\t\t\tc0.686-0.112,1.294-0.458,1.74-0.953l0,0L29,41.818V57c0,1.657,1.343,3,3,3s3-1.343,3-3V41.818l3.77,4.188l0,0\r\n\t\t\t\tc0.446,0.495,1.056,0.841,1.742,0.953c0.002,0,0.002,0,0.002,0c0.045,0.007,0.088,0.013,0.133,0.019\r\n\t\t\t\tc0.011,0,0.022,0.002,0.033,0.004c0.033,0.002,0.067,0.006,0.1,0.008c0.021,0.002,0.043,0.004,0.063,0.005s0.04,0.001,0.06,0.002\r\n\t\t\t\tC40.936,46.999,40.967,47,41,47c1.657,0,3-1.343,3-3c0-0.001,0-0.001,0-0.002C44,43.904,43.995,43.811,43.986,43.719z\r\n\t\t\t\t M53.387,19.656C50.048,11.086,41.753,5,32,5c-9.752,0-18.048,6.086-21.387,14.655C4.47,21.532,0,27.243,0,34\r\n\t\t\t\tc0,8.284,6.716,15,15,15c1.657,0,3-1.343,3-3s-1.343-3-3-3c-4.971,0-9-4.029-9-9c0-2.68,1.178-5.08,3.037-6.728\r\n\t\t\t\tc0.192-0.17,0.392-0.331,0.597-0.485c0.013-0.01,0.027-0.02,0.04-0.03c0.194-0.144,0.395-0.278,0.6-0.406\r\n\t\t\t\tc0.032-0.02,0.064-0.039,0.096-0.058c0.192-0.116,0.388-0.225,0.588-0.326c0.055-0.028,0.111-0.054,0.167-0.08\r\n\t\t\t\tc0.184-0.089,0.371-0.172,0.561-0.248c0.083-0.033,0.168-0.062,0.252-0.092c0.171-0.062,0.343-0.123,0.519-0.175\r\n\t\t\t\tc0.116-0.034,0.236-0.062,0.354-0.091c0.152-0.038,0.303-0.079,0.457-0.109c0.162-0.032,0.328-0.053,0.493-0.075\r\n\t\t\t\tc0.119-0.016,0.236-0.039,0.356-0.05C14.408,25.017,14.702,25,15,25c0.094,0,0.185,0.011,0.278,0.014\r\n\t\t\t\tc0.091-0.513,0.206-1.017,0.342-1.512c0.033-0.121,0.078-0.237,0.114-0.357c0.112-0.375,0.227-0.749,0.364-1.112\r\n\t\t\t\tc0.041-0.11,0.092-0.215,0.135-0.324c0.148-0.37,0.3-0.737,0.473-1.093c0.042-0.086,0.09-0.168,0.133-0.253\r\n\t\t\t\tc0.188-0.372,0.384-0.741,0.599-1.097C20.406,14.318,25.808,11,32,11c6.191,0,11.596,3.318,14.562,8.266\r\n\t\t\t\tc0.213,0.357,0.41,0.725,0.598,1.097c0.043,0.085,0.091,0.167,0.133,0.253c0.173,0.356,0.325,0.724,0.473,1.093\r\n\t\t\t\tc0.043,0.109,0.094,0.214,0.135,0.324c0.138,0.363,0.252,0.737,0.365,1.112c0.035,0.12,0.08,0.236,0.113,0.357\r\n\t\t\t\tc0.137,0.495,0.251,0.999,0.342,1.512C48.814,25.011,48.906,25,49,25c0.298,0,0.592,0.016,0.882,0.045\r\n\t\t\t\tc0.12,0.012,0.237,0.034,0.356,0.05c0.164,0.023,0.33,0.043,0.492,0.075c0.156,0.03,0.307,0.07,0.457,0.109\r\n\t\t\t\tc0.119,0.029,0.238,0.057,0.354,0.091c0.176,0.052,0.349,0.113,0.519,0.175c0.084,0.031,0.17,0.059,0.252,0.092\r\n\t\t\t\tc0.191,0.076,0.377,0.16,0.562,0.248c0.056,0.026,0.112,0.053,0.167,0.08c0.201,0.101,0.396,0.21,0.588,0.326\r\n\t\t\t\tc0.032,0.019,0.064,0.039,0.096,0.058c0.207,0.128,0.406,0.263,0.602,0.406c0.013,0.01,0.027,0.02,0.04,0.03\r\n\t\t\t\tc0.206,0.154,0.405,0.315,0.597,0.485C56.822,28.921,58,31.32,58,34c0,4.971-4.029,9-9,9c-1.657,0-3,1.343-3,3s1.343,3,3,3\r\n\t\t\t\tc8.284,0,15-6.716,15-15C64,27.243,59.529,21.532,53.387,19.656z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.cloud_upload = cloud_upload; \ No newline at end of file diff --git a/dist/ikons/code.js b/dist/ikons/code.js new file mode 100644 index 000000000..8da2fc70c --- /dev/null +++ b/dist/ikons/code.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.code = void 0; +var code = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "CODE_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CODE" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CODE" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M15.031,17c-0.844,0-1.604,0.352-2.149,0.913l-0.003-0.003L1.053,29.735C0.413,30.285,0,31.091,0,32\r\n\t\t\t\tc0,0.844,0.351,1.604,0.912,2.148L0.91,34.152l12,12l0.003-0.004C13.453,46.674,14.187,47,15,47c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.812-0.326-1.547-0.851-2.087l0.003-0.003l-9.894-9.895l9.863-9.863l-0.003-0.003c0.561-0.545,0.913-1.305,0.913-2.149\r\n\t\t\t\tC18.031,18.343,16.688,17,15.031,17z M64.031,32c0-0.91-0.413-1.715-1.053-2.265L51.152,17.91l-0.002,0.003\r\n\t\t\t\tC50.604,17.352,49.844,17,49,17c-1.657,0-3,1.343-3,3c0,0.844,0.352,1.604,0.913,2.149l-0.003,0.003l9.863,9.863l-9.895,9.895\r\n\t\t\t\tl0.003,0.003c-0.524,0.54-0.851,1.274-0.851,2.087c0,1.657,1.343,3,3,3c0.812,0,1.547-0.326,2.088-0.852l0.003,0.004l12-12\r\n\t\t\t\tl-0.003-0.004C63.68,33.604,64.031,32.844,64.031,32z M40,8c-1.3,0-2.406,0.827-2.823,1.982L21.2,51.924\r\n\t\t\t\tC21.071,52.258,21,52.621,21,53c0,1.657,1.343,3,3,3c1.3,0,2.406-0.827,2.823-1.982L42.8,12.076C42.93,11.742,43,11.38,43,11\r\n\t\t\t\tC43,9.343,41.657,8,40,8z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15.031,17c-0.844,0-1.604,0.352-2.149,0.913l-0.003-0.003L1.053,29.735C0.413,30.285,0,31.091,0,32\r\n\t\t\t\tc0,0.844,0.351,1.604,0.912,2.148L0.91,34.152l12,12l0.003-0.004C13.453,46.674,14.187,47,15,47c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.812-0.326-1.547-0.851-2.087l0.003-0.003l-9.894-9.895l9.863-9.863l-0.003-0.003c0.561-0.545,0.913-1.305,0.913-2.149\r\n\t\t\t\tC18.031,18.343,16.688,17,15.031,17z M64.031,32c0-0.91-0.413-1.715-1.053-2.265L51.152,17.91l-0.002,0.003\r\n\t\t\t\tC50.604,17.352,49.844,17,49,17c-1.657,0-3,1.343-3,3c0,0.844,0.352,1.604,0.913,2.149l-0.003,0.003l9.863,9.863l-9.895,9.895\r\n\t\t\t\tl0.003,0.003c-0.524,0.54-0.851,1.274-0.851,2.087c0,1.657,1.343,3,3,3c0.812,0,1.547-0.326,2.088-0.852l0.003,0.004l12-12\r\n\t\t\t\tl-0.003-0.004C63.68,33.604,64.031,32.844,64.031,32z M40,8c-1.3,0-2.406,0.827-2.823,1.982L21.2,51.924\r\n\t\t\t\tC21.071,52.258,21,52.621,21,53c0,1.657,1.343,3,3,3c1.3,0,2.406-0.827,2.823-1.982L42.8,12.076C42.93,11.742,43,11.38,43,11\r\n\t\t\t\tC43,9.343,41.657,8,40,8z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.code = code; \ No newline at end of file diff --git a/dist/ikons/cog.js b/dist/ikons/cog.js new file mode 100644 index 000000000..e48fbf4ae --- /dev/null +++ b/dist/ikons/cog.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cog = void 0; +var cog = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "COG_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "COG" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "COG" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M32,20c-6.627,0-12,5.372-12,12c0,6.627,5.372,12,12,12s12-5.373,12-12S38.627,20,32,20z M32,38c-3.314,0-6-2.686-6-6\r\n\t\t\t\tc0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6C38,35.314,35.314,38,32,38z M55.518,25.462c-0.541-1.957-1.326-3.811-2.311-5.536\r\n\t\t\t\tc1.121-1.507,4.98-7.143,2.199-9.926l-1.428-1.507c-2.379-2.378-8.455,1.336-9.931,2.298c-1.745-0.989-3.62-1.774-5.6-2.31\r\n\t\t\t\tc-0.317-1.887-1.704-8.487-5.619-8.487h-1.567c-3.361,0-5.29,6.824-5.721,8.534c-1.952,0.545-3.801,1.334-5.522,2.32\r\n\t\t\t\tC18.661,9.839,12.841,5.816,10,8.656L8.493,9.924c-2.476,2.475,1.638,9.004,2.39,10.147c-0.952,1.698-1.715,3.517-2.241,5.435\r\n\t\t\t\tc-1.641,0.262-8.649,1.614-8.649,5.646v1.566c0,3.493,7.349,5.433,8.69,5.759c0.533,1.904,1.3,3.709,2.255,5.394\r\n\t\t\t\tc-0.791,1.239-4.745,7.739-2.292,10.194l1.427,1.188c3.229,3.229,9.974-2.075,9.974-2.075l-0.314-0.334\r\n\t\t\t\tc1.789,1.058,3.726,1.896,5.773,2.47c0.335,1.379,2.275,8.677,5.755,8.677h1.567c4.566,0,5.697-8.521,5.697-8.521l-0.418-0.013\r\n\t\t\t\tc2.069-0.529,4.031-1.325,5.851-2.345c1.426,0.949,7.401,4.688,9.786,2.304l1.587-1.588c3.183-3.183-1.997-9.696-2.142-9.877\r\n\t\t\t\tc0.984-1.722,1.773-3.571,2.316-5.525c1.78-0.452,8.483-2.374,8.483-5.707v-1.566C63.988,26.73,56.016,25.533,55.518,25.462z\r\n\t\t\t\t M32,50c-9.941,0-18-8.059-18-18c0-9.941,8.059-18,18-18c9.941,0,18,8.059,18,18C50,41.941,41.941,50,32,50z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M32,20c-6.627,0-12,5.372-12,12c0,6.627,5.372,12,12,12s12-5.373,12-12S38.627,20,32,20z M32,38c-3.314,0-6-2.686-6-6\r\n\t\t\t\tc0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6C38,35.314,35.314,38,32,38z M55.518,25.462c-0.541-1.957-1.326-3.811-2.311-5.536\r\n\t\t\t\tc1.121-1.507,4.98-7.143,2.199-9.926l-1.428-1.507c-2.379-2.378-8.455,1.336-9.931,2.298c-1.745-0.989-3.62-1.774-5.6-2.31\r\n\t\t\t\tc-0.317-1.887-1.704-8.487-5.619-8.487h-1.567c-3.361,0-5.29,6.824-5.721,8.534c-1.952,0.545-3.801,1.334-5.522,2.32\r\n\t\t\t\tC18.661,9.839,12.841,5.816,10,8.656L8.493,9.924c-2.476,2.475,1.638,9.004,2.39,10.147c-0.952,1.698-1.715,3.517-2.241,5.435\r\n\t\t\t\tc-1.641,0.262-8.649,1.614-8.649,5.646v1.566c0,3.493,7.349,5.433,8.69,5.759c0.533,1.904,1.3,3.709,2.255,5.394\r\n\t\t\t\tc-0.791,1.239-4.745,7.739-2.292,10.194l1.427,1.188c3.229,3.229,9.974-2.075,9.974-2.075l-0.314-0.334\r\n\t\t\t\tc1.789,1.058,3.726,1.896,5.773,2.47c0.335,1.379,2.275,8.677,5.755,8.677h1.567c4.566,0,5.697-8.521,5.697-8.521l-0.418-0.013\r\n\t\t\t\tc2.069-0.529,4.031-1.325,5.851-2.345c1.426,0.949,7.401,4.688,9.786,2.304l1.587-1.588c3.183-3.183-1.997-9.696-2.142-9.877\r\n\t\t\t\tc0.984-1.722,1.773-3.571,2.316-5.525c1.78-0.452,8.483-2.374,8.483-5.707v-1.566C63.988,26.73,56.016,25.533,55.518,25.462z\r\n\t\t\t\t M32,50c-9.941,0-18-8.059-18-18c0-9.941,8.059-18,18-18c9.941,0,18,8.059,18,18C50,41.941,41.941,50,32,50z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.cog = cog; \ No newline at end of file diff --git a/dist/ikons/columns.js b/dist/ikons/columns.js new file mode 100644 index 000000000..f481a1bd2 --- /dev/null +++ b/dist/ikons/columns.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.columns = void 0; +var columns = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "COLUMNS_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "COLUMNS" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "COLUMNS" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M61,6H3C1.343,6,0,7.343,0,9v46c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V9C64,7.343,62.657,6,61,6z M21,52H6V12h15\r\n\t\t\t\tV52z M40,52H24V12h16V52z M58,52H43V12h15V52z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M61,6H3C1.343,6,0,7.343,0,9v46c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V9C64,7.343,62.657,6,61,6z M21,52H6V12h15\r\n\t\t\t\tV52z M40,52H24V12h16V52z M58,52H43V12h15V52z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.columns = columns; \ No newline at end of file diff --git a/dist/ikons/command.js b/dist/ikons/command.js new file mode 100644 index 000000000..e9f4c6ea0 --- /dev/null +++ b/dist/ikons/command.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.command = void 0; +var command = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "COMMAND" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M51,39h-6V25h6c6.627,0,12-5.372,12-12c0-6.628-5.372-12-12-12\r\n\t\t\tc-6.628,0-12,5.373-12,12v6H25v-6c0-6.628-5.373-12-12-12C6.373,1,1,6.373,1,13c0,6.627,5.373,12,12,12h6v14h-6\r\n\t\t\tC6.373,39,1,44.373,1,51c0,6.628,5.373,12,12,12c6.627,0,12-5.372,12-12v-6h14v6c0,6.628,5.372,12,12,12c6.627,0,12-5.372,12-12\r\n\t\t\tC63,44.373,57.627,39,51,39z M45,13c0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6s-2.686,6-6,6h-6V13z M19,51c0,3.314-2.686,6-6,6\r\n\t\t\tc-3.314,0-6-2.686-6-6c0-3.314,2.686-6,6-6h6V51z M19,19h-6c-3.314,0-6-2.686-6-6s2.686-6,6-6c3.314,0,6,2.686,6,6V19z M39,39H25\r\n\t\t\tV25h14V39z M51,57c-3.314,0-6-2.686-6-6v-6h7v0.101c2.835,0.478,5,2.928,5,5.899C57,54.314,54.314,57,51,57z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M51,39h-6V25h6c6.627,0,12-5.372,12-12c0-6.628-5.372-12-12-12\r\n\t\t\tc-6.628,0-12,5.373-12,12v6H25v-6c0-6.628-5.373-12-12-12C6.373,1,1,6.373,1,13c0,6.627,5.373,12,12,12h6v14h-6\r\n\t\t\tC6.373,39,1,44.373,1,51c0,6.628,5.373,12,12,12c6.627,0,12-5.372,12-12v-6h14v6c0,6.628,5.372,12,12,12c6.627,0,12-5.372,12-12\r\n\t\t\tC63,44.373,57.627,39,51,39z M45,13c0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6s-2.686,6-6,6h-6V13z M19,51c0,3.314-2.686,6-6,6\r\n\t\t\tc-3.314,0-6-2.686-6-6c0-3.314,2.686-6,6-6h6V51z M19,19h-6c-3.314,0-6-2.686-6-6s2.686-6,6-6c3.314,0,6,2.686,6,6V19z M39,39H25\r\n\t\t\tV25h14V39z M51,57c-3.314,0-6-2.686-6-6v-6h7v0.101c2.835,0.478,5,2.928,5,5.899C57,54.314,54.314,57,51,57z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.command = command; \ No newline at end of file diff --git a/dist/ikons/compass.js b/dist/ikons/compass.js new file mode 100644 index 000000000..fc5d9edfe --- /dev/null +++ b/dist/ikons/compass.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.compass = void 0; +var compass = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "COMPASS_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "COMPASS" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "COMPASS" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M16,16l9,22l23,10l-9-23L16,16z M32,35c-1.657,0-3-1.343-3-3s1.343-3,3-3s3,1.343,3,3S33.657,35,32,35z M32,0\r\n\t\t\t\tC14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.64,17.641,6,32,6\r\n\t\t\t\tc14.359,0,26,11.641,26,26C58,46.359,46.359,58,32,58z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M16,16l9,22l23,10l-9-23L16,16z M32,35c-1.657,0-3-1.343-3-3s1.343-3,3-3s3,1.343,3,3S33.657,35,32,35z M32,0\r\n\t\t\t\tC14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.64,17.641,6,32,6\r\n\t\t\t\tc14.359,0,26,11.641,26,26C58,46.359,46.359,58,32,58z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.compass = compass; \ No newline at end of file diff --git a/dist/ikons/computer_add.js b/dist/ikons/computer_add.js new file mode 100644 index 000000000..9f9191e18 --- /dev/null +++ b/dist/ikons/computer_add.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.computer_add = void 0; +var computer_add = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "COMPUTER__x2F__ADD_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "COMPUTER__x2F__ADD" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "COMPUTER__x2F__ADD" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M26,28h3v3c0,1.657,1.343,3,3,3s3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3s-1.343-3-3-3h-3v-3c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3S24.343,28,26,28z M60,4H4C2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26\r\n\t\t\t\tv-1l-4-4v-5h19c1.657,0,3-1.343,3-3V7C63,5.343,61.657,4,60,4z M59,42H5V8h54V42z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M26,28h3v3c0,1.657,1.343,3,3,3s3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3s-1.343-3-3-3h-3v-3c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3S24.343,28,26,28z M60,4H4C2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26\r\n\t\t\t\tv-1l-4-4v-5h19c1.657,0,3-1.343,3-3V7C63,5.343,61.657,4,60,4z M59,42H5V8h54V42z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.computer_add = computer_add; \ No newline at end of file diff --git a/dist/ikons/computer_delete.js b/dist/ikons/computer_delete.js new file mode 100644 index 000000000..cecdc434b --- /dev/null +++ b/dist/ikons/computer_delete.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.computer_delete = void 0; +var computer_delete = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "COMPUTER__x2F__DELETE_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "COMPUTER__x2F__DELETE" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "COMPUTER__x2F__DELETE" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M60,4H4C2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC63,5.343,61.657,4,60,4z M59,42H5V8h54V42z M23,31c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L32,29.243l3.879,3.879\r\n\t\t\t\tC36.422,33.664,37.172,34,38,34c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L36.243,25l3.879-3.879\r\n\t\t\t\tC40.664,20.578,41,19.828,41,19c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L32,20.757l-3.879-3.879\r\n\t\t\t\tC27.578,16.336,26.828,16,26,16c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L27.757,25l-3.879,3.879\r\n\t\t\t\tC23.336,29.422,23,30.172,23,31z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M60,4H4C2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC63,5.343,61.657,4,60,4z M59,42H5V8h54V42z M23,31c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L32,29.243l3.879,3.879\r\n\t\t\t\tC36.422,33.664,37.172,34,38,34c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L36.243,25l3.879-3.879\r\n\t\t\t\tC40.664,20.578,41,19.828,41,19c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L32,20.757l-3.879-3.879\r\n\t\t\t\tC27.578,16.336,26.828,16,26,16c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L27.757,25l-3.879,3.879\r\n\t\t\t\tC23.336,29.422,23,30.172,23,31z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.computer_delete = computer_delete; \ No newline at end of file diff --git a/dist/ikons/computer_download.js b/dist/ikons/computer_download.js new file mode 100644 index 000000000..f5fe9a3cf --- /dev/null +++ b/dist/ikons/computer_download.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.computer_download = void 0; +var computer_download = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "COMPUTER__x2F__DOWNLOAD_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "COMPUTER__x2F__DOWNLOAD" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "COMPUTER__x2F__DOWNLOAD" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,19c0,0.828,0.336,1.578,0.879,2.121l7,7C30.422,28.664,31.172,29,32,29s1.578-0.336,2.121-0.879l7-7\r\n\t\t\t\tC41.664,20.579,42,19.828,42,19c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L35,18.758V5c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v13.757l-1.879-1.879C26.578,16.336,25.828,16,25,16C23.343,16,22,17.343,22,19z M60,6H38v4h21v34H5V10h21V6H4\r\n\t\t\t\tC2.343,6,1,7.343,1,9v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V9C63,7.343,61.657,6,60,6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,19c0,0.828,0.336,1.578,0.879,2.121l7,7C30.422,28.664,31.172,29,32,29s1.578-0.336,2.121-0.879l7-7\r\n\t\t\t\tC41.664,20.579,42,19.828,42,19c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L35,18.758V5c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v13.757l-1.879-1.879C26.578,16.336,25.828,16,25,16C23.343,16,22,17.343,22,19z M60,6H38v4h21v34H5V10h21V6H4\r\n\t\t\t\tC2.343,6,1,7.343,1,9v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V9C63,7.343,61.657,6,60,6z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.computer_download = computer_download; \ No newline at end of file diff --git a/dist/ikons/computer_ok.js b/dist/ikons/computer_ok.js new file mode 100644 index 000000000..7bfee9135 --- /dev/null +++ b/dist/ikons/computer_ok.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.computer_ok = void 0; +var computer_ok = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "COMPUTER__x2F__OK_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "COMPUTER__x2F__OK" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "COMPUTER__x2F__OK" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M27.879,31.121C28.422,31.664,29.172,32,30,32c0.829,0,1.578-0.336,2.121-0.879l8-8C40.664,22.578,41,21.829,41,21\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L30,24.757l-1.879-1.879C27.578,22.336,26.828,22,26,22\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L27.879,31.121z M60,4H4C2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5\r\n\t\t\t\tl-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V7C63,5.343,61.657,4,60,4z M59,42H5V8h54V42z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M27.879,31.121C28.422,31.664,29.172,32,30,32c0.829,0,1.578-0.336,2.121-0.879l8-8C40.664,22.578,41,21.829,41,21\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L30,24.757l-1.879-1.879C27.578,22.336,26.828,22,26,22\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L27.879,31.121z M60,4H4C2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5\r\n\t\t\t\tl-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V7C63,5.343,61.657,4,60,4z M59,42H5V8h54V42z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.computer_ok = computer_ok; \ No newline at end of file diff --git a/dist/ikons/computer_remove.js b/dist/ikons/computer_remove.js new file mode 100644 index 000000000..ddbbe7ab0 --- /dev/null +++ b/dist/ikons/computer_remove.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.computer_remove = void 0; +var computer_remove = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "COMPUTER__x2F__REMOVE_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "COMPUTER__x2F__REMOVE" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "COMPUTER__x2F__REMOVE" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M26,28h12c1.657,0,3-1.343,3-3s-1.343-3-3-3H26c-1.657,0-3,1.343-3,3S24.343,28,26,28z M60,4H4C2.343,4,1,5.343,1,7v40\r\n\t\t\t\tc0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V7C63,5.343,61.657,4,60,4z M59,42H5V8h54V42z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M26,28h12c1.657,0,3-1.343,3-3s-1.343-3-3-3H26c-1.657,0-3,1.343-3,3S24.343,28,26,28z M60,4H4C2.343,4,1,5.343,1,7v40\r\n\t\t\t\tc0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V7C63,5.343,61.657,4,60,4z M59,42H5V8h54V42z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.computer_remove = computer_remove; \ No newline at end of file diff --git a/dist/ikons/computer_upload.js b/dist/ikons/computer_upload.js new file mode 100644 index 000000000..da61031e3 --- /dev/null +++ b/dist/ikons/computer_upload.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.computer_upload = void 0; +var computer_upload = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "COMPUTER__x2F__UPLOAD_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "COMPUTER__x2F__UPLOAD" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "COMPUTER__x2F__UPLOAD" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M25,15c0.829,0,1.579-0.336,2.121-0.879L29,12.243V26c0,1.657,1.343,3,3,3s3-1.343,3-3V12.243l1.879,1.879\r\n\t\t\t\tC37.422,14.664,38.172,15,39,15c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121l-7-7C33.578,2.336,32.829,2,32,2\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879l-7,7C22.336,10.422,22,11.172,22,12C22,13.657,23.343,15,25,15z M60,6H41.484l4,4H59v34H5V10\r\n\t\t\t\th13.515l4-4H4C2.343,6,1,7.343,1,9v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V9\r\n\t\t\t\tC63,7.343,61.657,6,60,6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M25,15c0.829,0,1.579-0.336,2.121-0.879L29,12.243V26c0,1.657,1.343,3,3,3s3-1.343,3-3V12.243l1.879,1.879\r\n\t\t\t\tC37.422,14.664,38.172,15,39,15c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121l-7-7C33.578,2.336,32.829,2,32,2\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879l-7,7C22.336,10.422,22,11.172,22,12C22,13.657,23.343,15,25,15z M60,6H41.484l4,4H59v34H5V10\r\n\t\t\t\th13.515l4-4H4C2.343,6,1,7.343,1,9v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V9\r\n\t\t\t\tC63,7.343,61.657,6,60,6z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.computer_upload = computer_upload; \ No newline at end of file diff --git a/dist/ikons/copy_1.js b/dist/ikons/copy_1.js new file mode 100644 index 000000000..b830251ed --- /dev/null +++ b/dist/ikons/copy_1.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.copy_1 = void 0; +var copy_1 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "COPY_1_" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M38,58h-9v0H16v0H6V26h11v-6H3c-1.657,0-3,1.343-3,3v38c0,1.657,1.343,3,3,3h10\r\n\t\t\tv0h17v0h11c1.657,0,3-1.343,3-3V47h-6V58z M61,0H23c-1.657,0-3,1.343-3,3v38c0,1.657,1.343,3,3,3h38c1.657,0,3-1.343,3-3V3\r\n\t\t\tC64,1.343,62.657,0,61,0z M58,38h-9v0H36v0H26V6h32V38z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M38,58h-9v0H16v0H6V26h11v-6H3c-1.657,0-3,1.343-3,3v38c0,1.657,1.343,3,3,3h10\r\n\t\t\tv0h17v0h11c1.657,0,3-1.343,3-3V47h-6V58z M61,0H23c-1.657,0-3,1.343-3,3v38c0,1.657,1.343,3,3,3h38c1.657,0,3-1.343,3-3V3\r\n\t\t\tC64,1.343,62.657,0,61,0z M58,38h-9v0H36v0H26V6h32V38z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.copy_1 = copy_1; \ No newline at end of file diff --git a/dist/ikons/copy_2.js b/dist/ikons/copy_2.js new file mode 100644 index 000000000..aff26dee1 --- /dev/null +++ b/dist/ikons/copy_2.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.copy_2 = void 0; +var copy_2 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "COPY" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M41,20H3c-1.657,0-3,1.343-3,3v38c0,1.657,1.343,3,3,3h38c1.657,0,3-1.343,3-3\r\n\t\t\tV23C44,21.343,42.657,20,41,20z M38,58H6V26h9v0h13v0h10V58z M61,0H23c-1.657,0-3,1.343-3,3v14h6V6h9v0h13v0h10v32H47v6h14\r\n\t\t\tc1.657,0,3-1.343,3-3V3C64,1.344,62.657,0,61,0z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M41,20H3c-1.657,0-3,1.343-3,3v38c0,1.657,1.343,3,3,3h38c1.657,0,3-1.343,3-3\r\n\t\t\tV23C44,21.343,42.657,20,41,20z M38,58H6V26h9v0h13v0h10V58z M61,0H23c-1.657,0-3,1.343-3,3v14h6V6h9v0h13v0h10v32H47v6h14\r\n\t\t\tc1.657,0,3-1.343,3-3V3C64,1.344,62.657,0,61,0z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.copy_2 = copy_2; \ No newline at end of file diff --git a/dist/ikons/credit_card.js b/dist/ikons/credit_card.js new file mode 100644 index 000000000..5972fee74 --- /dev/null +++ b/dist/ikons/credit_card.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.credit_card = void 0; +var credit_card = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "CREDIT_CARD_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CREDIT_CARD" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "CREDIT_CARD" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M0,51c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V28H0V51z M6,39h30v3H6V39z M6,45h12v3H6V45z M61,10H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v9h64v-9C64,11.343,62.657,10,61,10z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M0,51c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V28H0V51z M6,39h30v3H6V39z M6,45h12v3H6V45z M61,10H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v9h64v-9C64,11.343,62.657,10,61,10z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.credit_card = credit_card; \ No newline at end of file diff --git a/dist/ikons/crop.js b/dist/ikons/crop.js new file mode 100644 index 000000000..78413e443 --- /dev/null +++ b/dist/ikons/crop.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.crop = void 0; +var crop = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "CROP" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M61,49h-6V13.243l8.121-8.121C63.664,4.579,64,3.828,64,3c0-1.657-1.343-3-3-3\r\n\t\t\tc-0.829,0-1.578,0.336-2.121,0.879L50.757,9H15V3c0-1.657-1.343-3-3-3S9,1.343,9,3v6H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3\r\n\t\t\th6v35.758l-0.121,0.121L9,51v1.5c0,1.381,1.119,2.5,2.5,2.5H13l0.121,0.121L13.243,55H49v6c0,1.657,1.343,3,3,3\r\n\t\t\tc1.657,0,3-1.343,3-3v-6h6c1.657,0,3-1.343,3-3C64,50.343,62.657,49,61,49z M15,15h29.757L15,44.757V15z M49,49H19.243L49,19.243\r\n\t\t\tV49z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M61,49h-6V13.243l8.121-8.121C63.664,4.579,64,3.828,64,3c0-1.657-1.343-3-3-3\r\n\t\t\tc-0.829,0-1.578,0.336-2.121,0.879L50.757,9H15V3c0-1.657-1.343-3-3-3S9,1.343,9,3v6H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3\r\n\t\t\th6v35.758l-0.121,0.121L9,51v1.5c0,1.381,1.119,2.5,2.5,2.5H13l0.121,0.121L13.243,55H49v6c0,1.657,1.343,3,3,3\r\n\t\t\tc1.657,0,3-1.343,3-3v-6h6c1.657,0,3-1.343,3-3C64,50.343,62.657,49,61,49z M15,15h29.757L15,44.757V15z M49,49H19.243L49,19.243\r\n\t\t\tV49z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.crop = crop; \ No newline at end of file diff --git a/dist/ikons/diskette.js b/dist/ikons/diskette.js new file mode 100644 index 000000000..c0d3eaf8c --- /dev/null +++ b/dist/ikons/diskette.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.diskette = void 0; +var diskette = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "DISKETTE" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M15,25.001c0,1.661,1.343,3.007,3,3.007h4V28h18v0.008h4\r\n\t\t\tc1.657,0,3-1.346,3-3.007V19h0V1H15v18h0V25.001z M32,5h9v19h-9V5z M63.121,10.879l-9-9C53.578,1.336,52.829,1,52,1h-2v15h0v9.001\r\n\t\t\tc0,3.272-2.61,5.92-5.856,5.999H17.856C14.611,30.922,12,28.273,12,25.001V16h0V1H3C1.343,1,0,2.343,0,4v56c0,1.657,1.343,3,3,3\r\n\t\t\th58c1.657,0,3-1.343,3-3V13C64,12.172,63.664,11.422,63.121,10.879z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M15,25.001c0,1.661,1.343,3.007,3,3.007h4V28h18v0.008h4\r\n\t\t\tc1.657,0,3-1.346,3-3.007V19h0V1H15v18h0V25.001z M32,5h9v19h-9V5z M63.121,10.879l-9-9C53.578,1.336,52.829,1,52,1h-2v15h0v9.001\r\n\t\t\tc0,3.272-2.61,5.92-5.856,5.999H17.856C14.611,30.922,12,28.273,12,25.001V16h0V1H3C1.343,1,0,2.343,0,4v56c0,1.657,1.343,3,3,3\r\n\t\t\th58c1.657,0,3-1.343,3-3V13C64,12.172,63.664,11.422,63.121,10.879z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.diskette = diskette; \ No newline at end of file diff --git a/dist/ikons/documentIcon.js b/dist/ikons/documentIcon.js new file mode 100644 index 000000000..9cfea9903 --- /dev/null +++ b/dist/ikons/documentIcon.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.documentIcon = void 0; +var documentIcon = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "DOCUMENT_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "DOCUMENT" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "DOCUMENT" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M35,23.008h19L32,2.964v17.037C32,21.662,33.343,23.008,35,23.008z M29,20.001V3H13c-1.657,0-3,1.343-3,3v52\r\n\t\t\t\tc0,1.657,1.343,3,3,3h38c1.657,0,3-1.343,3-3V26.014H35C31.686,26.014,29,23.322,29,20.001z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M35,23.008h19L32,2.964v17.037C32,21.662,33.343,23.008,35,23.008z M29,20.001V3H13c-1.657,0-3,1.343-3,3v52\r\n\t\t\t\tc0,1.657,1.343,3,3,3h38c1.657,0,3-1.343,3-3V26.014H35C31.686,26.014,29,23.322,29,20.001z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.documentIcon = documentIcon; \ No newline at end of file diff --git a/dist/ikons/document_add.js b/dist/ikons/document_add.js new file mode 100644 index 000000000..6b496950c --- /dev/null +++ b/dist/ikons/document_add.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.document_add = void 0; +var document_add = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "DOCUMENT__x2F__ADD_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "DOCUMENT__x2F__ADD" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "DOCUMENT__x2F__ADD" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M31,22.008h19L28,1.964v17.037C28,20.662,29.343,22.008,31,22.008z M56,51h-3v-3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3h-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h3v3c0,1.657,1.343,3,3,3s3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3S57.657,51,56,51z M38,54\r\n\t\t\t\tc0-3.314,2.686-6,6-6c0-3.314,2.686-6,6-6V25.014H31c-3.314,0-6-2.692-6-6.013V1.964h-9V2H9C7.343,2,6,3.343,6,5v52\r\n\t\t\t\tc0,1.657,1.343,3,3,3h35l0,0C40.686,60,38,57.314,38,54z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M31,22.008h19L28,1.964v17.037C28,20.662,29.343,22.008,31,22.008z M56,51h-3v-3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3h-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h3v3c0,1.657,1.343,3,3,3s3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3S57.657,51,56,51z M38,54\r\n\t\t\t\tc0-3.314,2.686-6,6-6c0-3.314,2.686-6,6-6V25.014H31c-3.314,0-6-2.692-6-6.013V1.964h-9V2H9C7.343,2,6,3.343,6,5v52\r\n\t\t\t\tc0,1.657,1.343,3,3,3h35l0,0C40.686,60,38,57.314,38,54z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.document_add = document_add; \ No newline at end of file diff --git a/dist/ikons/document_delete.js b/dist/ikons/document_delete.js new file mode 100644 index 000000000..af6a077d8 --- /dev/null +++ b/dist/ikons/document_delete.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.document_delete = void 0; +var document_delete = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "DOCUMENT__x2F__DELETE_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "DOCUMENT__x2F__DELETE" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "DOCUMENT__x2F__DELETE" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M30,22.008h19L27,1.964v17.037C27,20.662,28.343,22.008,30,22.008z M41.516,54l-1.758-1.757\r\n\t\t\t\tC38.672,51.157,38,49.657,38,48c0-3.314,2.686-6,6-6c1.657,0,3.152,0.675,4.238,1.762l0.005-0.005L49,44.516v-19.5H30\r\n\t\t\t\tc-3.314,0-6-2.692-6-6.013V2H8C6.343,2,5,3.343,5,5v52c0,1.657,1.343,3,3,3h28l0,0h2c0-1.657,0.672-3.156,1.758-4.242\r\n\t\t\t\tl-0.001-0.001L41.516,54z M54.243,54l3.879-3.878C58.664,49.578,59,48.828,59,48c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L50,49.758l-3.879-3.879C45.578,45.336,44.829,45,44,45c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L45.757,54l-3.879,3.879C41.336,58.422,41,59.172,41,60c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L50,58.243l3.879,3.879C54.422,62.664,55.172,63,56,63c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L54.243,54z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M30,22.008h19L27,1.964v17.037C27,20.662,28.343,22.008,30,22.008z M41.516,54l-1.758-1.757\r\n\t\t\t\tC38.672,51.157,38,49.657,38,48c0-3.314,2.686-6,6-6c1.657,0,3.152,0.675,4.238,1.762l0.005-0.005L49,44.516v-19.5H30\r\n\t\t\t\tc-3.314,0-6-2.692-6-6.013V2H8C6.343,2,5,3.343,5,5v52c0,1.657,1.343,3,3,3h28l0,0h2c0-1.657,0.672-3.156,1.758-4.242\r\n\t\t\t\tl-0.001-0.001L41.516,54z M54.243,54l3.879-3.878C58.664,49.578,59,48.828,59,48c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L50,49.758l-3.879-3.879C45.578,45.336,44.829,45,44,45c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L45.757,54l-3.879,3.879C41.336,58.422,41,59.172,41,60c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L50,58.243l3.879,3.879C54.422,62.664,55.172,63,56,63c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L54.243,54z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.document_delete = document_delete; \ No newline at end of file diff --git a/dist/ikons/document_download.js b/dist/ikons/document_download.js new file mode 100644 index 000000000..acd584705 --- /dev/null +++ b/dist/ikons/document_download.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.document_download = void 0; +var document_download = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "DOCUMENT__x2F__DOWNLOAD_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "DOCUMENT__x2F__DOWNLOAD" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "DOCUMENT__x2F__DOWNLOAD" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M30,21.008h19L27.039,1H27v17.001C27,19.662,28.343,21.008,30,21.008z M36,53c0-3.314,2.686-6,6-6\r\n\t\t\t\tc0.343,0,0.673,0.046,1,0.102V39c0-3.314,2.686-6,6-6l0,0v-8.986H30c-3.314,0-6-2.692-6-6.013V1H8C6.343,1,5,2.343,5,4v52\r\n\t\t\t\tc0,1.657,1.343,3,3,3h31.516l-1.758-1.757C36.672,56.157,36,54.657,36,53z M56,50c-0.828,0-1.578,0.336-2.121,0.879L52,52.757V39\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v13.757l-1.879-1.879C43.578,50.336,42.828,50,42,50c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121l7,7C47.422,62.664,48.172,63,49,63s1.578-0.336,2.121-0.879l7-7C58.664,54.579,59,53.829,59,53\r\n\t\t\t\tC59,51.343,57.657,50,56,50z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M30,21.008h19L27.039,1H27v17.001C27,19.662,28.343,21.008,30,21.008z M36,53c0-3.314,2.686-6,6-6\r\n\t\t\t\tc0.343,0,0.673,0.046,1,0.102V39c0-3.314,2.686-6,6-6l0,0v-8.986H30c-3.314,0-6-2.692-6-6.013V1H8C6.343,1,5,2.343,5,4v52\r\n\t\t\t\tc0,1.657,1.343,3,3,3h31.516l-1.758-1.757C36.672,56.157,36,54.657,36,53z M56,50c-0.828,0-1.578,0.336-2.121,0.879L52,52.757V39\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v13.757l-1.879-1.879C43.578,50.336,42.828,50,42,50c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121l7,7C47.422,62.664,48.172,63,49,63s1.578-0.336,2.121-0.879l7-7C58.664,54.579,59,53.829,59,53\r\n\t\t\t\tC59,51.343,57.657,50,56,50z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.document_download = document_download; \ No newline at end of file diff --git a/dist/ikons/document_ok.js b/dist/ikons/document_ok.js new file mode 100644 index 000000000..4738c36d6 --- /dev/null +++ b/dist/ikons/document_ok.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.document_ok = void 0; +var document_ok = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "DOCUMENT__x2F__OK_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "DOCUMENT__x2F__OK" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "DOCUMENT__x2F__OK" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M30,23.008h19L27,2.964v17.037C27,21.662,28.343,23.008,30,23.008z M56,48c-0.828,0-1.578,0.336-2.121,0.879L48,54.757\r\n\t\t\t\tl-1.879-1.879C45.578,52.336,44.828,52,44,52c-1.657,0-3,1.343-3,3c0,0.829,0.336,1.578,0.879,2.121l4,4\r\n\t\t\t\tC46.422,61.664,47.172,62,48,62s1.578-0.336,2.121-0.879l8-8C58.664,52.579,59,51.828,59,51C59,49.343,57.657,48,56,48z M38,55\r\n\t\t\t\tc0-3.314,2.686-6,6-6c1.533,0,2.909,0.6,3.967,1.547L49,49.516v-23.5H30c-3.314,0-6-2.692-6-6.013V3H8C6.343,3,5,4.343,5,6v52\r\n\t\t\t\tc0,1.657,1.343,3,3,3h23l0,0h10.516l-1.758-1.757C38.672,58.157,38,56.657,38,55z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M30,23.008h19L27,2.964v17.037C27,21.662,28.343,23.008,30,23.008z M56,48c-0.828,0-1.578,0.336-2.121,0.879L48,54.757\r\n\t\t\t\tl-1.879-1.879C45.578,52.336,44.828,52,44,52c-1.657,0-3,1.343-3,3c0,0.829,0.336,1.578,0.879,2.121l4,4\r\n\t\t\t\tC46.422,61.664,47.172,62,48,62s1.578-0.336,2.121-0.879l8-8C58.664,52.579,59,51.828,59,51C59,49.343,57.657,48,56,48z M38,55\r\n\t\t\t\tc0-3.314,2.686-6,6-6c1.533,0,2.909,0.6,3.967,1.547L49,49.516v-23.5H30c-3.314,0-6-2.692-6-6.013V3H8C6.343,3,5,4.343,5,6v52\r\n\t\t\t\tc0,1.657,1.343,3,3,3h23l0,0h10.516l-1.758-1.757C38.672,58.157,38,56.657,38,55z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.document_ok = document_ok; \ No newline at end of file diff --git a/dist/ikons/document_remove.js b/dist/ikons/document_remove.js new file mode 100644 index 000000000..6b4d28a68 --- /dev/null +++ b/dist/ikons/document_remove.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.document_remove = void 0; +var document_remove = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "DOCUMENT__x2F__REMOVE_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "DOCUMENT__x2F__REMOVE" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "DOCUMENT__x2F__REMOVE" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M31,23.008h19L28,2.964v17.037C28,21.662,29.343,23.008,31,23.008z M38,55c0-3.314,2.686-6,6-6h6V26.014H31\r\n\t\t\t\tc-3.314,0-6-2.692-6-6.013V2.964h-9V3H9C7.343,3,6,4.343,6,6v52c0,1.657,1.343,3,3,3h35l0,0C40.686,61,38,58.314,38,55z M56,52\r\n\t\t\t\tH44c-1.657,0-3,1.343-3,3s1.343,3,3,3h12c1.657,0,3-1.343,3-3S57.657,52,56,52z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M31,23.008h19L28,2.964v17.037C28,21.662,29.343,23.008,31,23.008z M38,55c0-3.314,2.686-6,6-6h6V26.014H31\r\n\t\t\t\tc-3.314,0-6-2.692-6-6.013V2.964h-9V3H9C7.343,3,6,4.343,6,6v52c0,1.657,1.343,3,3,3h35l0,0C40.686,61,38,58.314,38,55z M56,52\r\n\t\t\t\tH44c-1.657,0-3,1.343-3,3s1.343,3,3,3h12c1.657,0,3-1.343,3-3S57.657,52,56,52z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.document_remove = document_remove; \ No newline at end of file diff --git a/dist/ikons/document_upload.js b/dist/ikons/document_upload.js new file mode 100644 index 000000000..9e49d6bad --- /dev/null +++ b/dist/ikons/document_upload.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.document_upload = void 0; +var document_upload = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "DOCUMENT__x2F__UPLOAD_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "DOCUMENT__x2F__UPLOAD" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "DOCUMENT__x2F__UPLOAD" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M30,21.008h19L27.039,1H27v17.001C27,19.662,28.343,21.008,30,21.008z M36,46c0-1.657,0.672-3.157,1.757-4.243l7-7\r\n\t\t\t\tC45.843,33.672,47.343,33,49,33v-8.986H30c-3.314,0-6-2.692-6-6.013V1H8C6.343,1,5,2.343,5,4v52c0,1.657,1.343,3,3,3h35v-7.102\r\n\t\t\t\tC42.673,51.954,42.343,52,42,52C38.686,52,36,49.314,36,46z M58.121,43.879l-7-7C50.578,36.336,49.828,36,49,36\r\n\t\t\t\ts-1.578,0.336-2.121,0.879l-7,7C39.336,44.422,39,45.172,39,46c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L46,46.243\r\n\t\t\t\tV60c0,1.657,1.343,3,3,3s3-1.343,3-3V46.243l1.879,1.879C54.422,48.664,55.172,49,56,49c1.657,0,3-1.343,3-3\r\n\t\t\t\tC59,45.172,58.664,44.422,58.121,43.879z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M30,21.008h19L27.039,1H27v17.001C27,19.662,28.343,21.008,30,21.008z M36,46c0-1.657,0.672-3.157,1.757-4.243l7-7\r\n\t\t\t\tC45.843,33.672,47.343,33,49,33v-8.986H30c-3.314,0-6-2.692-6-6.013V1H8C6.343,1,5,2.343,5,4v52c0,1.657,1.343,3,3,3h35v-7.102\r\n\t\t\t\tC42.673,51.954,42.343,52,42,52C38.686,52,36,49.314,36,46z M58.121,43.879l-7-7C50.578,36.336,49.828,36,49,36\r\n\t\t\t\ts-1.578,0.336-2.121,0.879l-7,7C39.336,44.422,39,45.172,39,46c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L46,46.243\r\n\t\t\t\tV60c0,1.657,1.343,3,3,3s3-1.343,3-3V46.243l1.879,1.879C54.422,48.664,55.172,49,56,49c1.657,0,3-1.343,3-3\r\n\t\t\t\tC59,45.172,58.664,44.422,58.121,43.879z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.document_upload = document_upload; \ No newline at end of file diff --git a/dist/ikons/documents.js b/dist/ikons/documents.js new file mode 100644 index 000000000..c608b9655 --- /dev/null +++ b/dist/ikons/documents.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.documents = void 0; +var documents = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "DOCUMENTS_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "DOCUMENTS" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "DOCUMENTS" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M32,17.001V0H16c-1.657,0-3,1.343-3,3v52c0,1.657,1.343,3,3,3h38c1.657,0,3-1.343,3-3V23.015H38\r\n\t\t\t\tC34.686,23.015,32,20.322,32,17.001z M38,20.008h19L35-0.036v17.037C35,18.662,36.343,20.008,38,20.008z M10,55V6\r\n\t\t\t\tC8.343,6,7,7.343,7,9v49c0,3.314,2.686,6,6,6h35c1.657,0,3-1.343,3-3H16C12.686,61,10,58.314,10,55z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M32,17.001V0H16c-1.657,0-3,1.343-3,3v52c0,1.657,1.343,3,3,3h38c1.657,0,3-1.343,3-3V23.015H38\r\n\t\t\t\tC34.686,23.015,32,20.322,32,17.001z M38,20.008h19L35-0.036v17.037C35,18.662,36.343,20.008,38,20.008z M10,55V6\r\n\t\t\t\tC8.343,6,7,7.343,7,9v49c0,3.314,2.686,6,6,6h35c1.657,0,3-1.343,3-3H16C12.686,61,10,58.314,10,55z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.documents = documents; \ No newline at end of file diff --git a/dist/ikons/download.js b/dist/ikons/download.js new file mode 100644 index 000000000..48179c296 --- /dev/null +++ b/dist/ikons/download.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.download = void 0; +var download = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "DOWNLOAD_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "DOWNLOAD" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "DOWNLOAD" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M20.77,29.007l9,10l0,0C30.319,39.616,31.115,40,32,40s1.68-0.384,2.23-0.993l0,0l9-10l0,0\r\n\t\t\t\tC43.708,28.475,44,27.772,44,27c0-1.657-1.343-3-3-3c-0.885,0-1.682,0.383-2.23,0.993l0,0L35,29.182V11c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v18.182l-3.77-4.189l0,0C24.681,24.384,23.885,24,23,24c-1.657,0-3,1.343-3,3C20,27.772,20.292,28.475,20.77,29.007\r\n\t\t\t\tL20.77,29.007z M55,35c-1.657,0-3,1.343-3,3v12H12V38c0-1.657-1.343-3-3-3s-3,1.343-3,3v15c0,1.657,1.343,3,3,3h22.997\r\n\t\t\t\tc0.001,0,0.002,0,0.003,0s0.002,0,0.003,0H55c1.657,0,3-1.343,3-3V38C58,36.343,56.657,35,55,35z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20.77,29.007l9,10l0,0C30.319,39.616,31.115,40,32,40s1.68-0.384,2.23-0.993l0,0l9-10l0,0\r\n\t\t\t\tC43.708,28.475,44,27.772,44,27c0-1.657-1.343-3-3-3c-0.885,0-1.682,0.383-2.23,0.993l0,0L35,29.182V11c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v18.182l-3.77-4.189l0,0C24.681,24.384,23.885,24,23,24c-1.657,0-3,1.343-3,3C20,27.772,20.292,28.475,20.77,29.007\r\n\t\t\t\tL20.77,29.007z M55,35c-1.657,0-3,1.343-3,3v12H12V38c0-1.657-1.343-3-3-3s-3,1.343-3,3v15c0,1.657,1.343,3,3,3h22.997\r\n\t\t\t\tc0.001,0,0.002,0,0.003,0s0.002,0,0.003,0H55c1.657,0,3-1.343,3-3V38C58,36.343,56.657,35,55,35z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.download = download; \ No newline at end of file diff --git a/dist/ikons/dribbble.js b/dist/ikons/dribbble.js new file mode 100644 index 000000000..f47da1c2a --- /dev/null +++ b/dist/ikons/dribbble.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.dribbble = void 0; +var dribbble = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "dribbble_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "dribbble" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "dribbble" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M63.35,25.558c-0.42-2.056-1.049-4.081-1.865-6.015c-0.803-1.899-1.795-3.727-2.951-5.436\r\n\t\t\t\tc-1.145-1.694-2.459-3.287-3.905-4.733c-1.448-1.449-3.04-2.764-4.735-3.907c-1.709-1.158-3.539-2.149-5.436-2.953\r\n\t\t\t\tC42.523,1.7,40.5,1.068,38.443,0.651c-2.107-0.433-4.276-0.652-6.442-0.652c-2.169,0-4.338,0.22-6.446,0.652\r\n\t\t\t\tc-2.056,0.417-4.08,1.049-6.013,1.863c-1.896,0.804-3.727,1.795-5.437,2.953C12.411,6.61,10.818,7.924,9.37,9.373\r\n\t\t\t\tc-1.446,1.446-2.76,3.039-3.904,4.733c-1.156,1.709-2.149,3.537-2.951,5.436c-0.818,1.934-1.446,3.96-1.867,6.015\r\n\t\t\t\tc-0.431,2.103-0.65,4.273-0.65,6.44c0,2.172,0.219,4.342,0.65,6.448c0.421,2.056,1.049,4.08,1.867,6.013\r\n\t\t\t\tc0.802,1.896,1.795,3.729,2.951,5.438c1.144,1.694,2.458,3.285,3.904,4.733c1.447,1.446,3.04,2.759,4.734,3.904\r\n\t\t\t\tc1.711,1.155,3.541,2.149,5.437,2.95c1.933,0.82,3.957,1.445,6.013,1.867c2.109,0.435,4.277,0.651,6.446,0.651\r\n\t\t\t\tc2.167,0,4.335-0.217,6.441-0.651c2.058-0.422,4.082-1.047,6.015-1.867c1.896-0.801,3.728-1.795,5.437-2.95\r\n\t\t\t\tc1.693-1.146,3.287-2.458,4.734-3.904c1.446-1.448,2.762-3.039,3.905-4.733c1.155-1.709,2.149-3.541,2.95-5.438\r\n\t\t\t\tc0.817-1.933,1.447-3.957,1.867-6.013C63.781,36.339,64,34.17,64,31.997C64.001,29.831,63.783,27.661,63.35,25.558z M32.001,4.67\r\n\t\t\t\tc6.919,0,13.233,2.579,18.049,6.819c-0.067,0.106-3.96,6.03-14.276,9.896C31.104,12.802,25.971,5.982,25.56,5.441\r\n\t\t\t\tC27.626,4.941,29.78,4.67,32.001,4.67z M25.455,5.464c-0.001,0.003-0.005,0.005-0.005,0.005s-0.032,0.008-0.082,0.018\r\n\t\t\t\tC25.396,5.479,25.426,5.474,25.455,5.464z M20.34,7.282c0.363,0.488,5.417,7.34,10.148,15.747\r\n\t\t\t\tc-13.123,3.487-24.511,3.35-25.233,3.337C7.032,17.901,12.718,10.883,20.34,7.282z M11.673,50.264\r\n\t\t\t\tC7.321,45.421,4.672,39.02,4.672,31.997c0-0.291,0.013-0.576,0.023-0.862c0.481,0.01,13.986,0.316,28.057-3.894\r\n\t\t\t\tc0.784,1.532,1.532,3.09,2.219,4.645c-0.363,0.101-0.72,0.21-1.078,0.326c-14.75,4.767-22.23,18.038-22.23,18.038\r\n\t\t\t\tS11.671,50.258,11.673,50.264z M32.001,59.33c-6.338,0-12.157-2.176-16.793-5.795c-0.001,0.002-0.005,0.01-0.005,0.01\r\n\t\t\t\ts-0.252-0.188-0.612-0.479c0.199,0.164,0.413,0.31,0.617,0.469c0.1-0.217,5.39-11.471,21.442-17.062\r\n\t\t\t\tc0.06-0.022,0.121-0.041,0.182-0.058c3.846,9.993,5.434,18.362,5.838,20.751C39.393,58.559,35.785,59.33,32.001,59.33z\r\n\t\t\t\t M47.271,54.668c-0.277-1.65-1.733-9.671-5.319-19.521c8.823-1.412,16.468,1.008,17.032,1.192\r\n\t\t\t\tC57.768,43.955,53.408,50.523,47.271,54.668z M40.286,30.832c-0.192-0.468-0.388-0.938-0.589-1.411\r\n\t\t\t\tc-0.569-1.337-1.182-2.662-1.817-3.964c10.793-4.405,15.175-10.741,15.226-10.817c3.834,4.655,6.152,10.602,6.215,17.087\r\n\t\t\t\tC58.925,31.641,49.676,29.651,40.286,30.832z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M63.35,25.558c-0.42-2.056-1.049-4.081-1.865-6.015c-0.803-1.899-1.795-3.727-2.951-5.436\r\n\t\t\t\tc-1.145-1.694-2.459-3.287-3.905-4.733c-1.448-1.449-3.04-2.764-4.735-3.907c-1.709-1.158-3.539-2.149-5.436-2.953\r\n\t\t\t\tC42.523,1.7,40.5,1.068,38.443,0.651c-2.107-0.433-4.276-0.652-6.442-0.652c-2.169,0-4.338,0.22-6.446,0.652\r\n\t\t\t\tc-2.056,0.417-4.08,1.049-6.013,1.863c-1.896,0.804-3.727,1.795-5.437,2.953C12.411,6.61,10.818,7.924,9.37,9.373\r\n\t\t\t\tc-1.446,1.446-2.76,3.039-3.904,4.733c-1.156,1.709-2.149,3.537-2.951,5.436c-0.818,1.934-1.446,3.96-1.867,6.015\r\n\t\t\t\tc-0.431,2.103-0.65,4.273-0.65,6.44c0,2.172,0.219,4.342,0.65,6.448c0.421,2.056,1.049,4.08,1.867,6.013\r\n\t\t\t\tc0.802,1.896,1.795,3.729,2.951,5.438c1.144,1.694,2.458,3.285,3.904,4.733c1.447,1.446,3.04,2.759,4.734,3.904\r\n\t\t\t\tc1.711,1.155,3.541,2.149,5.437,2.95c1.933,0.82,3.957,1.445,6.013,1.867c2.109,0.435,4.277,0.651,6.446,0.651\r\n\t\t\t\tc2.167,0,4.335-0.217,6.441-0.651c2.058-0.422,4.082-1.047,6.015-1.867c1.896-0.801,3.728-1.795,5.437-2.95\r\n\t\t\t\tc1.693-1.146,3.287-2.458,4.734-3.904c1.446-1.448,2.762-3.039,3.905-4.733c1.155-1.709,2.149-3.541,2.95-5.438\r\n\t\t\t\tc0.817-1.933,1.447-3.957,1.867-6.013C63.781,36.339,64,34.17,64,31.997C64.001,29.831,63.783,27.661,63.35,25.558z M32.001,4.67\r\n\t\t\t\tc6.919,0,13.233,2.579,18.049,6.819c-0.067,0.106-3.96,6.03-14.276,9.896C31.104,12.802,25.971,5.982,25.56,5.441\r\n\t\t\t\tC27.626,4.941,29.78,4.67,32.001,4.67z M25.455,5.464c-0.001,0.003-0.005,0.005-0.005,0.005s-0.032,0.008-0.082,0.018\r\n\t\t\t\tC25.396,5.479,25.426,5.474,25.455,5.464z M20.34,7.282c0.363,0.488,5.417,7.34,10.148,15.747\r\n\t\t\t\tc-13.123,3.487-24.511,3.35-25.233,3.337C7.032,17.901,12.718,10.883,20.34,7.282z M11.673,50.264\r\n\t\t\t\tC7.321,45.421,4.672,39.02,4.672,31.997c0-0.291,0.013-0.576,0.023-0.862c0.481,0.01,13.986,0.316,28.057-3.894\r\n\t\t\t\tc0.784,1.532,1.532,3.09,2.219,4.645c-0.363,0.101-0.72,0.21-1.078,0.326c-14.75,4.767-22.23,18.038-22.23,18.038\r\n\t\t\t\tS11.671,50.258,11.673,50.264z M32.001,59.33c-6.338,0-12.157-2.176-16.793-5.795c-0.001,0.002-0.005,0.01-0.005,0.01\r\n\t\t\t\ts-0.252-0.188-0.612-0.479c0.199,0.164,0.413,0.31,0.617,0.469c0.1-0.217,5.39-11.471,21.442-17.062\r\n\t\t\t\tc0.06-0.022,0.121-0.041,0.182-0.058c3.846,9.993,5.434,18.362,5.838,20.751C39.393,58.559,35.785,59.33,32.001,59.33z\r\n\t\t\t\t M47.271,54.668c-0.277-1.65-1.733-9.671-5.319-19.521c8.823-1.412,16.468,1.008,17.032,1.192\r\n\t\t\t\tC57.768,43.955,53.408,50.523,47.271,54.668z M40.286,30.832c-0.192-0.468-0.388-0.938-0.589-1.411\r\n\t\t\t\tc-0.569-1.337-1.182-2.662-1.817-3.964c10.793-4.405,15.175-10.741,15.226-10.817c3.834,4.655,6.152,10.602,6.215,17.087\r\n\t\t\t\tC58.925,31.641,49.676,29.651,40.286,30.832z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.dribbble = dribbble; \ No newline at end of file diff --git a/dist/ikons/drop.js b/dist/ikons/drop.js new file mode 100644 index 000000000..90c062669 --- /dev/null +++ b/dist/ikons/drop.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.drop = void 0; +var drop = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "DROP" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M31.583,3.847c0,0-19.616,25.205-19.592,35.712\r\n\t\t\tc0.026,11.331,9.338,20.49,19.948,20.462c10.609-0.029,20.137-9.239,20.111-20.57C52.024,28.592,31.583,3.847,31.583,3.847z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M31.583,3.847c0,0-19.616,25.205-19.592,35.712\r\n\t\t\tc0.026,11.331,9.338,20.49,19.948,20.462c10.609-0.029,20.137-9.239,20.111-20.57C52.024,28.592,31.583,3.847,31.583,3.847z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.drop = drop; \ No newline at end of file diff --git a/dist/ikons/dropbox.js b/dist/ikons/dropbox.js new file mode 100644 index 000000000..d5928f9e1 --- /dev/null +++ b/dist/ikons/dropbox.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.dropbox = void 0; +var dropbox = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "dropbox_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "dropbox" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "dropbox" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M32.04,39.477L18.826,50.346l-5.654-3.662v4.105L32.04,62.003l18.864-11.215v-4.106l-5.652,3.662L32.04,39.477z\r\n\t\t\t\t M0.001,35.846l18.825,12.184L32,37.134L13.018,25.513L0.001,35.846z M32,37.134l13.174,10.896L64,35.846L50.982,25.513\r\n\t\t\t\tL32,37.134z M18.826,2.997L0.001,15.176l13.017,10.337L32,13.893L18.826,2.997z M63.999,15.176L45.174,2.997L32,13.893\r\n\t\t\t\tl18.982,11.619L63.999,15.176z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M32.04,39.477L18.826,50.346l-5.654-3.662v4.105L32.04,62.003l18.864-11.215v-4.106l-5.652,3.662L32.04,39.477z\r\n\t\t\t\t M0.001,35.846l18.825,12.184L32,37.134L13.018,25.513L0.001,35.846z M32,37.134l13.174,10.896L64,35.846L50.982,25.513\r\n\t\t\t\tL32,37.134z M18.826,2.997L0.001,15.176l13.017,10.337L32,13.893L18.826,2.997z M63.999,15.176L45.174,2.997L32,13.893\r\n\t\t\t\tl18.982,11.619L63.999,15.176z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.dropbox = dropbox; \ No newline at end of file diff --git a/dist/ikons/eject.js b/dist/ikons/eject.js new file mode 100644 index 000000000..72954c5af --- /dev/null +++ b/dist/ikons/eject.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.eject = void 0; +var eject = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "EJECT_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "EJECT" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "EJECT" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M42,42H22c-1.657,0-3,1.343-3,3s1.343,3,3,3h20c1.657,0,3-1.343,3-3S43.657,42,42,42z M22,39h20c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.584-0.167-1.129-0.456-1.59l0,0l-9.976-15.962c-0.004-0.005-0.006-0.01-0.01-0.016l-0.015-0.022l0,0\r\n\t\t\t\tC34.014,17.563,33.073,17,32,17s-2.013,0.563-2.544,1.41l0,0l-0.014,0.022c-0.003,0.005-0.007,0.01-0.01,0.016L19.456,34.41l0,0\r\n\t\t\t\tC19.168,34.871,19,35.416,19,36C19,37.657,20.343,39,22,39z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M42,42H22c-1.657,0-3,1.343-3,3s1.343,3,3,3h20c1.657,0,3-1.343,3-3S43.657,42,42,42z M22,39h20c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.584-0.167-1.129-0.456-1.59l0,0l-9.976-15.962c-0.004-0.005-0.006-0.01-0.01-0.016l-0.015-0.022l0,0\r\n\t\t\t\tC34.014,17.563,33.073,17,32,17s-2.013,0.563-2.544,1.41l0,0l-0.014,0.022c-0.003,0.005-0.007,0.01-0.01,0.016L19.456,34.41l0,0\r\n\t\t\t\tC19.168,34.871,19,35.416,19,36C19,37.657,20.343,39,22,39z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.eject = eject; \ No newline at end of file diff --git a/dist/ikons/equalizer.js b/dist/ikons/equalizer.js new file mode 100644 index 000000000..8c17ddb3a --- /dev/null +++ b/dist/ikons/equalizer.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.equalizer = void 0; +var equalizer = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "EQUALIZER_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "EQUALIZER" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "EQUALIZER" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M13,23H7c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h6c1.657,0,3-1.343,3-3V26C16,24.343,14.657,23,13,23z M13,3\r\n\t\t\t\tc0-1.657-1.343-3-3-3S7,1.343,7,3v17h6V3z M35,3c0-1.657-1.343-3-3-3s-3,1.343-3,3v25h6V3z M57,3c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v9h6V3z M7,61c0,1.657,1.343,3,3,3s3-1.343,3-3V44H7V61z M57,15h-6c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h6\r\n\t\t\t\tc1.657,0,3-1.343,3-3V18C60,16.343,58.657,15,57,15z M51,61c0,1.657,1.343,3,3,3s3-1.343,3-3V36h-6V61z M29,61\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3v-9h-6V61z M35,31h-6c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h6c1.657,0,3-1.343,3-3V34\r\n\t\t\t\tC38,32.343,36.657,31,35,31z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M13,23H7c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h6c1.657,0,3-1.343,3-3V26C16,24.343,14.657,23,13,23z M13,3\r\n\t\t\t\tc0-1.657-1.343-3-3-3S7,1.343,7,3v17h6V3z M35,3c0-1.657-1.343-3-3-3s-3,1.343-3,3v25h6V3z M57,3c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v9h6V3z M7,61c0,1.657,1.343,3,3,3s3-1.343,3-3V44H7V61z M57,15h-6c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h6\r\n\t\t\t\tc1.657,0,3-1.343,3-3V18C60,16.343,58.657,15,57,15z M51,61c0,1.657,1.343,3,3,3s3-1.343,3-3V36h-6V61z M29,61\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3v-9h-6V61z M35,31h-6c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h6c1.657,0,3-1.343,3-3V34\r\n\t\t\t\tC38,32.343,36.657,31,35,31z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.equalizer = equalizer; \ No newline at end of file diff --git a/dist/ikons/facebook_1.js b/dist/ikons/facebook_1.js new file mode 100644 index 000000000..13e4cc47f --- /dev/null +++ b/dist/ikons/facebook_1.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.facebook_1 = void 0; +var facebook_1 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "facebook_2_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "facebook_1_" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "facebook_1_" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M36.963,22.048c0.092-3.345-0.525-8.003,0.516-9.593c1.901-2.911,9.496-2.154,9.496-2.154s0-6.612,0-10.303\r\n\t\t\t\tc-11.982,0-15.904-0.501-20.016,3.675c-3.658,3.715-3.771,11.011-4.072,18.375h-5.872V32.12h5.938\r\n\t\t\t\tc-0.002,10.504,0.003,22.016,0,31.884c4.462,0,13.954,0,13.954,0v-32.01c0,0,5.173,0,8.042,0\r\n\t\t\t\tc0.626-3.385,1.236-6.036,2.088-9.947L36.963,22.048L36.963,22.048z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M36.963,22.048c0.092-3.345-0.525-8.003,0.516-9.593c1.901-2.911,9.496-2.154,9.496-2.154s0-6.612,0-10.303\r\n\t\t\t\tc-11.982,0-15.904-0.501-20.016,3.675c-3.658,3.715-3.771,11.011-4.072,18.375h-5.872V32.12h5.938\r\n\t\t\t\tc-0.002,10.504,0.003,22.016,0,31.884c4.462,0,13.954,0,13.954,0v-32.01c0,0,5.173,0,8.042,0\r\n\t\t\t\tc0.626-3.385,1.236-6.036,2.088-9.947L36.963,22.048L36.963,22.048z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.facebook_1 = facebook_1; \ No newline at end of file diff --git a/dist/ikons/facebook_2.js b/dist/ikons/facebook_2.js new file mode 100644 index 000000000..b02f028de --- /dev/null +++ b/dist/ikons/facebook_2.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.facebook_2 = void 0; +var facebook_2 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "facebook_3_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "facebook" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "facebook" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M59.059-0.006H4.942c-2.722,0-4.929,2.208-4.929,4.932v54.354c0,2.725,2.207,4.728,4.929,4.728h54.117\r\n\t\t\t\tc2.721,0,4.928-2.002,4.928-4.728V4.926C63.986,2.202,61.781-0.006,59.059-0.006z M33.615,21.199\r\n\t\t\t\tc-1.562-0.912-2.803-1.634-4.351-1.634c-1.523,0-2.836,0.383-3.497,1.024c-0.661,0.64-0.992,1.872-0.992,3.692v2.691h8.148\r\n\t\t\t\tl-1.768,7.494h-6.381v24.894H14.545V34.465H9.759v-7.494h4.787v-2.859c0-3.012,0.355-4.817,1.067-6.301\r\n\t\t\t\tc0.711-1.483,2.089-3.134,3.998-4.066c1.909-0.932,4.741-1.399,7.661-1.399c2.995,0,5.337,0.994,8.208,1.803L33.615,21.199z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M59.059-0.006H4.942c-2.722,0-4.929,2.208-4.929,4.932v54.354c0,2.725,2.207,4.728,4.929,4.728h54.117\r\n\t\t\t\tc2.721,0,4.928-2.002,4.928-4.728V4.926C63.986,2.202,61.781-0.006,59.059-0.006z M33.615,21.199\r\n\t\t\t\tc-1.562-0.912-2.803-1.634-4.351-1.634c-1.523,0-2.836,0.383-3.497,1.024c-0.661,0.64-0.992,1.872-0.992,3.692v2.691h8.148\r\n\t\t\t\tl-1.768,7.494h-6.381v24.894H14.545V34.465H9.759v-7.494h4.787v-2.859c0-3.012,0.355-4.817,1.067-6.301\r\n\t\t\t\tc0.711-1.483,2.089-3.134,3.998-4.066c1.909-0.932,4.741-1.399,7.661-1.399c2.995,0,5.337,0.994,8.208,1.803L33.615,21.199z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.facebook_2 = facebook_2; \ No newline at end of file diff --git a/dist/ikons/fast_forward.js b/dist/ikons/fast_forward.js new file mode 100644 index 000000000..8a0b28e9f --- /dev/null +++ b/dist/ikons/fast_forward.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.fast_forward = void 0; +var fast_forward = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "FAST_FORWARD_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "FAST_FORWARD" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "FAST_FORWARD" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M51,32c0-1.073-0.562-2.013-1.41-2.544l0,0l-0.021-0.014c-0.006-0.003-0.01-0.007-0.017-0.01L33.59,19.456l0,0\r\n\t\t\t\tC33.129,19.168,32.584,19,32,19c-1.657,0-3,1.343-3,3v4.587l-11.41-7.131l0,0C17.129,19.168,16.584,19,16,19\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3c0.584,0,1.129-0.167,1.59-0.456l0,0L29,37.413V42c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.584,0,1.129-0.167,1.59-0.456l0,0l15.962-9.976c0.005-0.004,0.011-0.008,0.017-0.01l0.021-0.015l0,0\r\n\t\t\t\tC50.438,34.014,51,33.073,51,32z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M51,32c0-1.073-0.562-2.013-1.41-2.544l0,0l-0.021-0.014c-0.006-0.003-0.01-0.007-0.017-0.01L33.59,19.456l0,0\r\n\t\t\t\tC33.129,19.168,32.584,19,32,19c-1.657,0-3,1.343-3,3v4.587l-11.41-7.131l0,0C17.129,19.168,16.584,19,16,19\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3c0.584,0,1.129-0.167,1.59-0.456l0,0L29,37.413V42c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.584,0,1.129-0.167,1.59-0.456l0,0l15.962-9.976c0.005-0.004,0.011-0.008,0.017-0.01l0.021-0.015l0,0\r\n\t\t\t\tC50.438,34.014,51,33.073,51,32z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.fast_forward = fast_forward; \ No newline at end of file diff --git a/dist/ikons/first_aid.js b/dist/ikons/first_aid.js new file mode 100644 index 000000000..225507595 --- /dev/null +++ b/dist/ikons/first_aid.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.first_aid = void 0; +var first_aid = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "FIRST_AID" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M61,18H47c0-8.284-6.716-15-15-15c-8.284,0-15,6.716-15,15H3\r\n\t\t\tc-1.657,0-3,1.343-3,3v37c0,1.657,1.343,3,3,3h5v0h3v0h42v0h3v0h5c1.657,0,3-1.343,3-3V21C64,19.343,62.657,18,61,18z M32,9\r\n\t\t\tc4.971,0,9,4.029,9,9H23C23,13.03,27.03,9,32,9z M43,42h-8v8c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3v-8h-8\r\n\t\t\tc-1.657,0-3-1.343-3-3c0-1.657,1.343-3,3-3h8v-8c0-1.657,1.343-3,3-3c1.657,0,3,1.343,3,3v8h8c1.657,0,3,1.343,3,3\r\n\t\t\tC46,40.657,44.657,42,43,42z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M61,18H47c0-8.284-6.716-15-15-15c-8.284,0-15,6.716-15,15H3\r\n\t\t\tc-1.657,0-3,1.343-3,3v37c0,1.657,1.343,3,3,3h5v0h3v0h42v0h3v0h5c1.657,0,3-1.343,3-3V21C64,19.343,62.657,18,61,18z M32,9\r\n\t\t\tc4.971,0,9,4.029,9,9H23C23,13.03,27.03,9,32,9z M43,42h-8v8c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3v-8h-8\r\n\t\t\tc-1.657,0-3-1.343-3-3c0-1.657,1.343-3,3-3h8v-8c0-1.657,1.343-3,3-3c1.657,0,3,1.343,3,3v8h8c1.657,0,3,1.343,3,3\r\n\t\t\tC46,40.657,44.657,42,43,42z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.first_aid = first_aid; \ No newline at end of file diff --git a/dist/ikons/folder.js b/dist/ikons/folder.js new file mode 100644 index 000000000..a65850465 --- /dev/null +++ b/dist/ikons/folder.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.folder = void 0; +var folder = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "FOLDER_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "FOLDER" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "FOLDER" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M0,54c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V22H0V54z M61,13H23.982L18,7H3c-1.657,0-3,1.343-3,3v9h64v-3\r\n\t\t\t\tC64,14.343,62.657,13,61,13z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M0,54c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V22H0V54z M61,13H23.982L18,7H3c-1.657,0-3,1.343-3,3v9h64v-3\r\n\t\t\t\tC64,14.343,62.657,13,61,13z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.folder = folder; \ No newline at end of file diff --git a/dist/ikons/folder_add.js b/dist/ikons/folder_add.js new file mode 100644 index 000000000..ef92b6a04 --- /dev/null +++ b/dist/ikons/folder_add.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.folder_add = void 0; +var folder_add = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "FOLDER__x2F__OK_2_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "FOLDER__x2F__OK_1_" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "FOLDER__x2F__OK_1_" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M60,49h-3v-3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3s1.343,3,3,3h3v3c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3S61.657,49,60,49z M0,51c0,1.657,1.343,3,3,3h39.367C42.145,53.372,42,52.705,42,52\r\n\t\t\t\tc0-3.314,2.686-6,6-6c0-3.314,2.686-6,6-6s6,2.686,6,6c1.544,0,2.938,0.6,4,1.557V19H0V51z M61,10H23.982L18,4H3\r\n\t\t\t\tC1.343,4,0,5.343,0,7v9h64v-3C64,11.343,62.657,10,61,10z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M60,49h-3v-3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3s1.343,3,3,3h3v3c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3S61.657,49,60,49z M0,51c0,1.657,1.343,3,3,3h39.367C42.145,53.372,42,52.705,42,52\r\n\t\t\t\tc0-3.314,2.686-6,6-6c0-3.314,2.686-6,6-6s6,2.686,6,6c1.544,0,2.938,0.6,4,1.557V19H0V51z M61,10H23.982L18,4H3\r\n\t\t\t\tC1.343,4,0,5.343,0,7v9h64v-3C64,11.343,62.657,10,61,10z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.folder_add = folder_add; \ No newline at end of file diff --git a/dist/ikons/folder_delete.js b/dist/ikons/folder_delete.js new file mode 100644 index 000000000..b51a7bde8 --- /dev/null +++ b/dist/ikons/folder_delete.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.folder_delete = void 0; +var folder_delete = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "FOLDER__x2F__DELETE_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "FOLDER__x2F__DELETE" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "FOLDER__x2F__DELETE" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M64,46c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L55,47.757l-3.879-3.879C50.578,43.336,49.828,43,49,43\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.829,0.336,1.578,0.879,2.121L50.757,52l-3.879,3.879C46.336,56.422,46,57.172,46,58\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L55,56.243l3.879,3.879C59.422,60.664,60.172,61,61,61c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L59.243,52l3.879-3.879C63.664,47.578,64,46.829,64,46z M0,51c0,1.657,1.343,3,3,3h41l0,0h0.557\r\n\t\t\t\tc0.07-0.078,0.127-0.168,0.2-0.243L46.516,52l-1.758-1.758C43.672,49.157,43,47.657,43,46c0-3.314,2.686-6,6-6\r\n\t\t\t\tc1.657,0,3.157,0.672,4.243,1.757L55,43.516l1.757-1.758C57.843,40.672,59.343,40,61,40c1.098,0,2.113,0.316,3,0.832V19H0V51z\r\n\t\t\t\t M61,10H23.982L18,4H3C1.343,4,0,5.343,0,7v9h64v-3C64,11.343,62.657,10,61,10z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M64,46c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L55,47.757l-3.879-3.879C50.578,43.336,49.828,43,49,43\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.829,0.336,1.578,0.879,2.121L50.757,52l-3.879,3.879C46.336,56.422,46,57.172,46,58\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L55,56.243l3.879,3.879C59.422,60.664,60.172,61,61,61c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L59.243,52l3.879-3.879C63.664,47.578,64,46.829,64,46z M0,51c0,1.657,1.343,3,3,3h41l0,0h0.557\r\n\t\t\t\tc0.07-0.078,0.127-0.168,0.2-0.243L46.516,52l-1.758-1.758C43.672,49.157,43,47.657,43,46c0-3.314,2.686-6,6-6\r\n\t\t\t\tc1.657,0,3.157,0.672,4.243,1.757L55,43.516l1.757-1.758C57.843,40.672,59.343,40,61,40c1.098,0,2.113,0.316,3,0.832V19H0V51z\r\n\t\t\t\t M61,10H23.982L18,4H3C1.343,4,0,5.343,0,7v9h64v-3C64,11.343,62.657,10,61,10z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.folder_delete = folder_delete; \ No newline at end of file diff --git a/dist/ikons/folder_ok.js b/dist/ikons/folder_ok.js new file mode 100644 index 000000000..a4681585f --- /dev/null +++ b/dist/ikons/folder_ok.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.folder_ok = void 0; +var folder_ok = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "FOLDER__x2F__OK_3_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "FOLDER__x2F__OK" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "FOLDER__x2F__OK" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M61,46c-0.828,0-1.578,0.336-2.121,0.879L53,52.758l-1.879-1.879C50.578,50.336,49.828,50,49,50c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121l4,4C51.422,59.664,52.172,60,53,60s1.578-0.336,2.121-0.879l8-8C63.664,50.579,64,49.828,64,49\r\n\t\t\t\tC64,47.343,62.657,46,61,46z M61,11H23.982L18,5H3C1.343,5,0,6.343,0,8v9h64v-3C64,12.343,62.657,11,61,11z M0,52\r\n\t\t\t\tc0,1.657,1.343,3,3,3h40.367l0,0C43.145,54.372,43,53.705,43,53c0-3.314,2.686-6,6-6c1.533,0,2.916,0.592,3.977,1.538\r\n\t\t\t\tl3.781-3.781C57.843,43.672,59.343,43,61,43c1.1,0,2.113,0.316,3,0.832V20H0V52z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M61,46c-0.828,0-1.578,0.336-2.121,0.879L53,52.758l-1.879-1.879C50.578,50.336,49.828,50,49,50c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121l4,4C51.422,59.664,52.172,60,53,60s1.578-0.336,2.121-0.879l8-8C63.664,50.579,64,49.828,64,49\r\n\t\t\t\tC64,47.343,62.657,46,61,46z M61,11H23.982L18,5H3C1.343,5,0,6.343,0,8v9h64v-3C64,12.343,62.657,11,61,11z M0,52\r\n\t\t\t\tc0,1.657,1.343,3,3,3h40.367l0,0C43.145,54.372,43,53.705,43,53c0-3.314,2.686-6,6-6c1.533,0,2.916,0.592,3.977,1.538\r\n\t\t\t\tl3.781-3.781C57.843,43.672,59.343,43,61,43c1.1,0,2.113,0.316,3,0.832V20H0V52z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.folder_ok = folder_ok; \ No newline at end of file diff --git a/dist/ikons/folder_remove.js b/dist/ikons/folder_remove.js new file mode 100644 index 000000000..547b82540 --- /dev/null +++ b/dist/ikons/folder_remove.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.folder_remove = void 0; +var folder_remove = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "FOLDER__x2F__REMOVE_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "FOLDER__x2F__REMOVE" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "FOLDER__x2F__REMOVE" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M0,54c0,1.657,1.343,3,3,3h39.367C42.145,56.372,42,55.705,42,55c0-3.314,2.686-6,6-6h12c1.544,0,2.938,0.6,4,1.557V22H0\r\n\t\t\t\tV54z M60,52H48c-1.657,0-3,1.343-3,3s1.343,3,3,3h12c1.657,0,3-1.343,3-3S61.657,52,60,52z M61,13H23.982L18,7H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v9h64v-3C64,14.343,62.657,13,61,13z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M0,54c0,1.657,1.343,3,3,3h39.367C42.145,56.372,42,55.705,42,55c0-3.314,2.686-6,6-6h12c1.544,0,2.938,0.6,4,1.557V22H0\r\n\t\t\t\tV54z M60,52H48c-1.657,0-3,1.343-3,3s1.343,3,3,3h12c1.657,0,3-1.343,3-3S61.657,52,60,52z M61,13H23.982L18,7H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v9h64v-3C64,14.343,62.657,13,61,13z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.folder_remove = folder_remove; \ No newline at end of file diff --git a/dist/ikons/followers.js b/dist/ikons/followers.js new file mode 100644 index 000000000..971f2dd1e --- /dev/null +++ b/dist/ikons/followers.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.followers = void 0; +var followers = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "FOLLOWERS_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "FOLLOWERS" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "FOLLOWERS" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M34,53c0-1.657,0.672-3.157,1.757-4.242l7-7l0.017,0.018c0.379-0.375,0.806-0.702,1.272-0.969\r\n\t\t\t\tc-3.979-1.701-5.021-2.293-5.021-2.293l-0.055-5.894c0,0,2.324-1.764,3.049-7.337c1.451,0.42,1.942-1.701,2.021-3.056\r\n\t\t\t\tc0.086-1.309,0.858-5.389-0.917-5.025c0.363-2.724,0.648-5.187,0.52-6.491c-0.444-4.576-3.608-9.355-11.595-9.704\r\n\t\t\t\tc-6.79,0.349-11.198,5.131-11.643,9.708c-0.128,1.304,0.133,3.764,0.496,6.493c-1.774-0.369-1.01,3.719-0.932,5.027\r\n\t\t\t\tc0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.352,3.046,7.352l-0.058,5.925c0,0-1.47,0.897-7.675,3.466\r\n\t\t\t\tc-6.205,2.574-4.259,0.533-9.314,3.047C0,49.062,0,59.993,0,59.993h0.002C0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h38.516\r\n\t\t\t\tl-5.758-5.758C34.672,56.157,34,54.657,34,53z M52.898,47h5.828c-0.789-0.725-1.662-1.391-2.713-1.913\r\n\t\t\t\tc-1.854-0.923-2.765-1.246-3.482-1.415C52.833,44.387,53,45.174,53,46C53,46.343,52.954,46.673,52.898,47z M47.243,56H61\r\n\t\t\t\tc1.657,0,3-1.343,3-3s-1.343-3-3-3H47.243l1.879-1.879C49.664,47.579,50,46.828,50,46c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879l-7,7C37.336,51.422,37,52.172,37,53c0,0.829,0.336,1.578,0.879,2.121l7,7\r\n\t\t\t\tC45.422,62.664,46.172,63,47,63c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L47.243,56z M64.001,59.993\r\n\t\t\t\tc0,0,0-0.679-0.124-1.759C63.02,58.707,62.049,59,61,59h-8.104C52.953,59.326,53,59.657,53,60c0,1.1-0.316,2.114-0.832,3H61\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.003-0.001-0.005-0.001-0.007H64.001z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M34,53c0-1.657,0.672-3.157,1.757-4.242l7-7l0.017,0.018c0.379-0.375,0.806-0.702,1.272-0.969\r\n\t\t\t\tc-3.979-1.701-5.021-2.293-5.021-2.293l-0.055-5.894c0,0,2.324-1.764,3.049-7.337c1.451,0.42,1.942-1.701,2.021-3.056\r\n\t\t\t\tc0.086-1.309,0.858-5.389-0.917-5.025c0.363-2.724,0.648-5.187,0.52-6.491c-0.444-4.576-3.608-9.355-11.595-9.704\r\n\t\t\t\tc-6.79,0.349-11.198,5.131-11.643,9.708c-0.128,1.304,0.133,3.764,0.496,6.493c-1.774-0.369-1.01,3.719-0.932,5.027\r\n\t\t\t\tc0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.352,3.046,7.352l-0.058,5.925c0,0-1.47,0.897-7.675,3.466\r\n\t\t\t\tc-6.205,2.574-4.259,0.533-9.314,3.047C0,49.062,0,59.993,0,59.993h0.002C0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h38.516\r\n\t\t\t\tl-5.758-5.758C34.672,56.157,34,54.657,34,53z M52.898,47h5.828c-0.789-0.725-1.662-1.391-2.713-1.913\r\n\t\t\t\tc-1.854-0.923-2.765-1.246-3.482-1.415C52.833,44.387,53,45.174,53,46C53,46.343,52.954,46.673,52.898,47z M47.243,56H61\r\n\t\t\t\tc1.657,0,3-1.343,3-3s-1.343-3-3-3H47.243l1.879-1.879C49.664,47.579,50,46.828,50,46c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879l-7,7C37.336,51.422,37,52.172,37,53c0,0.829,0.336,1.578,0.879,2.121l7,7\r\n\t\t\t\tC45.422,62.664,46.172,63,47,63c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L47.243,56z M64.001,59.993\r\n\t\t\t\tc0,0,0-0.679-0.124-1.759C63.02,58.707,62.049,59,61,59h-8.104C52.953,59.326,53,59.657,53,60c0,1.1-0.316,2.114-0.832,3H61\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.003-0.001-0.005-0.001-0.007H64.001z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.followers = followers; \ No newline at end of file diff --git a/dist/ikons/following.js b/dist/ikons/following.js new file mode 100644 index 000000000..07eb46d52 --- /dev/null +++ b/dist/ikons/following.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.following = void 0; +var following = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "FOLLOWING_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "FOLLOWING" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "FOLLOWING" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M64.001,59.993c0,0-0.007-0.552-0.092-1.417L59.484,63H61c1.657,0,3-1.343,3-3c0-0.003-0.001-0.005-0.001-0.007H64.001z\r\n\t\t\t\t M48.102,59H40c-3.314,0-6-2.686-6-6s2.686-6,6-6h8.102C48.046,46.673,48,46.343,48,46c0-1.186,0.355-2.282,0.947-3.212\r\n\t\t\t\tc-0.609-0.213-1.332-0.486-2.247-0.865c-6.205-2.569-7.675-3.409-7.675-3.409l-0.055-5.893c0,0,2.324-1.764,3.049-7.337\r\n\t\t\t\tc1.451,0.42,1.942-1.701,2.021-3.056c0.086-1.309,0.858-5.389-0.917-5.025c0.363-2.724,0.648-5.187,0.52-6.491\r\n\t\t\t\tc-0.443-4.576-3.608-9.355-11.595-9.704c-6.79,0.349-11.198,5.131-11.643,9.708c-0.128,1.304,0.133,3.764,0.496,6.493\r\n\t\t\t\tc-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.353,3.046,7.353l-0.058,5.924\r\n\t\t\t\tc0,0-1.47,0.896-7.675,3.466c-6.205,2.574-4.259,0.533-9.314,3.047C0,49.062,0,59.994,0,59.994h0.002C0.001,59.995,0,59.998,0,60\r\n\t\t\t\tc0,1.657,1.343,3,3,3h45.832C48.316,62.115,48,61.1,48,60C48,59.657,48.046,59.327,48.102,59z M64,53\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121l-7-7C55.578,43.336,54.828,43,54,43c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121\r\n\t\t\t\tL53.757,50H40c-1.657,0-3,1.343-3,3s1.343,3,3,3h13.757l-1.879,1.879C51.336,58.422,51,59.172,51,60c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l7-7C63.664,54.578,64,53.829,64,53z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M64.001,59.993c0,0-0.007-0.552-0.092-1.417L59.484,63H61c1.657,0,3-1.343,3-3c0-0.003-0.001-0.005-0.001-0.007H64.001z\r\n\t\t\t\t M48.102,59H40c-3.314,0-6-2.686-6-6s2.686-6,6-6h8.102C48.046,46.673,48,46.343,48,46c0-1.186,0.355-2.282,0.947-3.212\r\n\t\t\t\tc-0.609-0.213-1.332-0.486-2.247-0.865c-6.205-2.569-7.675-3.409-7.675-3.409l-0.055-5.893c0,0,2.324-1.764,3.049-7.337\r\n\t\t\t\tc1.451,0.42,1.942-1.701,2.021-3.056c0.086-1.309,0.858-5.389-0.917-5.025c0.363-2.724,0.648-5.187,0.52-6.491\r\n\t\t\t\tc-0.443-4.576-3.608-9.355-11.595-9.704c-6.79,0.349-11.198,5.131-11.643,9.708c-0.128,1.304,0.133,3.764,0.496,6.493\r\n\t\t\t\tc-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.353,3.046,7.353l-0.058,5.924\r\n\t\t\t\tc0,0-1.47,0.896-7.675,3.466c-6.205,2.574-4.259,0.533-9.314,3.047C0,49.062,0,59.994,0,59.994h0.002C0.001,59.995,0,59.998,0,60\r\n\t\t\t\tc0,1.657,1.343,3,3,3h45.832C48.316,62.115,48,61.1,48,60C48,59.657,48.046,59.327,48.102,59z M64,53\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121l-7-7C55.578,43.336,54.828,43,54,43c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121\r\n\t\t\t\tL53.757,50H40c-1.657,0-3,1.343-3,3s1.343,3,3,3h13.757l-1.879,1.879C51.336,58.422,51,59.172,51,60c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l7-7C63.664,54.578,64,53.829,64,53z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.following = following; \ No newline at end of file diff --git a/dist/ikons/font_size_down.js b/dist/ikons/font_size_down.js new file mode 100644 index 000000000..9b2f3eeeb --- /dev/null +++ b/dist/ikons/font_size_down.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.font_size_down = void 0; +var font_size_down = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "FONT_SIZE_DOWN" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M39.798,52.919l-17-44l-0.007,0.002C22.358,7.799,21.275,7,20,7\r\n\t\t\tc-1.275,0-2.358,0.799-2.792,1.921l-0.006-0.002l-17,44l0.007,0.003C0.078,53.257,0,53.619,0,54c0,1.657,1.343,3,3,3\r\n\t\t\tc1.275,0,2.358-0.799,2.792-1.921l0.007,0.002L9.694,45h20.613l3.895,10.081l0.006-0.002C34.642,56.201,35.725,57,37,57\r\n\t\t\tc1.657,0,3-1.343,3-3c0-0.382-0.078-0.743-0.208-1.079L39.798,52.919z M12.012,39L20,18.324L27.988,39H12.012z M61,29H43\r\n\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h18c1.657,0,3-1.343,3-3C64,30.343,62.657,29,61,29z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M39.798,52.919l-17-44l-0.007,0.002C22.358,7.799,21.275,7,20,7\r\n\t\t\tc-1.275,0-2.358,0.799-2.792,1.921l-0.006-0.002l-17,44l0.007,0.003C0.078,53.257,0,53.619,0,54c0,1.657,1.343,3,3,3\r\n\t\t\tc1.275,0,2.358-0.799,2.792-1.921l0.007,0.002L9.694,45h20.613l3.895,10.081l0.006-0.002C34.642,56.201,35.725,57,37,57\r\n\t\t\tc1.657,0,3-1.343,3-3c0-0.382-0.078-0.743-0.208-1.079L39.798,52.919z M12.012,39L20,18.324L27.988,39H12.012z M61,29H43\r\n\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h18c1.657,0,3-1.343,3-3C64,30.343,62.657,29,61,29z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.font_size_down = font_size_down; \ No newline at end of file diff --git a/dist/ikons/font_size_up.js b/dist/ikons/font_size_up.js new file mode 100644 index 000000000..f7a8b4909 --- /dev/null +++ b/dist/ikons/font_size_up.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.font_size_up = void 0; +var font_size_up = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "FONT_SIZE_UP" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M39.798,52.919l-17-44l-0.006,0.002C22.358,7.799,21.276,7,20,7\r\n\t\t\tc-1.275,0-2.358,0.799-2.792,1.921l-0.007-0.002l-17,44l0.007,0.003C0.078,53.257,0,53.619,0,54c0,1.657,1.343,3,3,3\r\n\t\t\tc1.275,0,2.358-0.799,2.792-1.921l0.007,0.002L9.693,45h20.613l3.895,10.081l0.007-0.002C34.642,56.201,35.725,57,37,57\r\n\t\t\tc1.657,0,3-1.343,3-3c0-0.382-0.078-0.743-0.208-1.079L39.798,52.919z M12.012,39L20,18.324L27.988,39H12.012z M61,29h-6v-6\r\n\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v6h-6c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h6v6c0,1.657,1.343,3,3,3s3-1.343,3-3v-6h6\r\n\t\t\tc1.657,0,3-1.343,3-3C64,30.343,62.657,29,61,29z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M39.798,52.919l-17-44l-0.006,0.002C22.358,7.799,21.276,7,20,7\r\n\t\t\tc-1.275,0-2.358,0.799-2.792,1.921l-0.007-0.002l-17,44l0.007,0.003C0.078,53.257,0,53.619,0,54c0,1.657,1.343,3,3,3\r\n\t\t\tc1.275,0,2.358-0.799,2.792-1.921l0.007,0.002L9.693,45h20.613l3.895,10.081l0.007-0.002C34.642,56.201,35.725,57,37,57\r\n\t\t\tc1.657,0,3-1.343,3-3c0-0.382-0.078-0.743-0.208-1.079L39.798,52.919z M12.012,39L20,18.324L27.988,39H12.012z M61,29h-6v-6\r\n\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v6h-6c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h6v6c0,1.657,1.343,3,3,3s3-1.343,3-3v-6h6\r\n\t\t\tc1.657,0,3-1.343,3-3C64,30.343,62.657,29,61,29z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.font_size_up = font_size_up; \ No newline at end of file diff --git a/dist/ikons/forrst.js b/dist/ikons/forrst.js new file mode 100644 index 000000000..db644dcbb --- /dev/null +++ b/dist/ikons/forrst.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.forrst = void 0; +var forrst = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "forrst_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "forrst" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "forrst" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M59.873,61.947L33.865,0.88c-0.229-0.538-0.747-0.883-1.321-0.883c-0.574,0-1.093,0.345-1.32,0.88L5.127,61.943\r\n\t\t\t\tc-0.194,0.457-0.15,0.98,0.116,1.396c0.267,0.412,0.719,0.663,1.205,0.663h22.123V50.667L20.714,48c-1.085,0-1.964-0.895-1.964-2\r\n\t\t\t\ts0.879-2,1.964-2l7.857,2.667V34c0-1.104,0.879-2,1.964-2h3.929c1.085,0,1.964,0.896,1.964,2v3l5.893-3\r\n\t\t\t\tc1.086,0,1.965,0.895,1.965,2c0,1.104-0.879,2-1.965,2l-5.893,3v7l9.821-6c1.085,0,1.964,0.895,1.964,2c0,1.104-0.879,2-1.964,2\r\n\t\t\t\tl-9.821,6v12.003h22.123c0.487,0,0.938-0.248,1.205-0.663C60.021,62.928,60.066,62.4,59.873,61.947z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M59.873,61.947L33.865,0.88c-0.229-0.538-0.747-0.883-1.321-0.883c-0.574,0-1.093,0.345-1.32,0.88L5.127,61.943\r\n\t\t\t\tc-0.194,0.457-0.15,0.98,0.116,1.396c0.267,0.412,0.719,0.663,1.205,0.663h22.123V50.667L20.714,48c-1.085,0-1.964-0.895-1.964-2\r\n\t\t\t\ts0.879-2,1.964-2l7.857,2.667V34c0-1.104,0.879-2,1.964-2h3.929c1.085,0,1.964,0.896,1.964,2v3l5.893-3\r\n\t\t\t\tc1.086,0,1.965,0.895,1.965,2c0,1.104-0.879,2-1.965,2l-5.893,3v7l9.821-6c1.085,0,1.964,0.895,1.964,2c0,1.104-0.879,2-1.964,2\r\n\t\t\t\tl-9.821,6v12.003h22.123c0.487,0,0.938-0.248,1.205-0.663C60.021,62.928,60.066,62.4,59.873,61.947z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.forrst = forrst; \ No newline at end of file diff --git a/dist/ikons/foursquare.js b/dist/ikons/foursquare.js new file mode 100644 index 000000000..533b5babe --- /dev/null +++ b/dist/ikons/foursquare.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.foursquare = void 0; +var foursquare = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "foursquare_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "foursquare" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "foursquare" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M41.523,27.182l-8.099-8.285c-2.222-2.189-5.667-2.189-7.89,0l-2.201,2.245c-2.46-1.881-5.468-3.047-8.815-3.047\r\n\t\t\t\tc-8.013,0-14.513,6.42-14.513,14.313c0,7.891,6.529,14.311,14.543,14.311c0.623,0,1.222-0.104,1.825-0.181l13.387,12.458\r\n\t\t\t\tl34.24-30.692V5.018L41.523,27.182z M14.725,43.102c-0.057,0-0.109,0.017-0.166,0.017c-5.998,0-10.877-4.806-10.877-10.71\r\n\t\t\t\tc0-5.907,4.879-10.712,10.877-10.712c2.338,0,4.494,0.748,6.27,1.991c2.776,1.942,4.604,5.119,4.604,8.722\r\n\t\t\t\tC25.434,38.257,20.642,43.014,14.725,43.102z M59.8,27.491L48.426,37.908L30.158,54.157l-9.723-8.753\r\n\t\t\t\tc2.691-1.211,4.978-3.209,6.487-5.69l3.794,3.925l13.511-13.911L59.8,13.77V27.491z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M41.523,27.182l-8.099-8.285c-2.222-2.189-5.667-2.189-7.89,0l-2.201,2.245c-2.46-1.881-5.468-3.047-8.815-3.047\r\n\t\t\t\tc-8.013,0-14.513,6.42-14.513,14.313c0,7.891,6.529,14.311,14.543,14.311c0.623,0,1.222-0.104,1.825-0.181l13.387,12.458\r\n\t\t\t\tl34.24-30.692V5.018L41.523,27.182z M14.725,43.102c-0.057,0-0.109,0.017-0.166,0.017c-5.998,0-10.877-4.806-10.877-10.71\r\n\t\t\t\tc0-5.907,4.879-10.712,10.877-10.712c2.338,0,4.494,0.748,6.27,1.991c2.776,1.942,4.604,5.119,4.604,8.722\r\n\t\t\t\tC25.434,38.257,20.642,43.014,14.725,43.102z M59.8,27.491L48.426,37.908L30.158,54.157l-9.723-8.753\r\n\t\t\t\tc2.691-1.211,4.978-3.209,6.487-5.69l3.794,3.925l13.511-13.911L59.8,13.77V27.491z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.foursquare = foursquare; \ No newline at end of file diff --git a/dist/ikons/frame.js b/dist/ikons/frame.js new file mode 100644 index 000000000..08312133c --- /dev/null +++ b/dist/ikons/frame.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.frame = void 0; +var frame = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "FRAME_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "FRAME" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "FRAME" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M62,14c0-1.304-0.837-2.403-2-2.816V7.816C61.163,7.403,62,6.305,62,5c0-1.657-1.343-3-3-3c-1.305,0-2.402,0.838-2.816,2\r\n\t\t\t\th-3.367C52.402,2.838,51.305,2,50,2s-2.402,0.838-2.816,2h-3.367C43.402,2.838,42.305,2,41,2s-2.402,0.838-2.816,2h-3.367\r\n\t\t\t\tC34.402,2.838,33.305,2,32,2c-1.304,0-2.403,0.838-2.816,2h-3.367C25.403,2.838,24.304,2,23,2s-2.403,0.838-2.816,2h-3.367\r\n\t\t\t\tC16.403,2.838,15.304,2,14,2s-2.403,0.838-2.816,2H7.816C7.403,2.838,6.304,2,5,2C3.343,2,2,3.343,2,5\r\n\t\t\t\tc0,1.304,0.837,2.403,2,2.816v3.367C2.837,11.597,2,12.696,2,14s0.837,2.403,2,2.816v3.367C2.837,20.597,2,21.696,2,23\r\n\t\t\t\ts0.837,2.403,2,2.816v3.367C2.837,29.597,2,30.696,2,32c0,1.305,0.837,2.402,2,2.816v3.367C2.837,38.598,2,39.695,2,41\r\n\t\t\t\ts0.837,2.402,2,2.816v3.367C2.837,47.598,2,48.695,2,50s0.837,2.402,2,2.816v3.367C2.837,56.598,2,57.695,2,59\r\n\t\t\t\tc0,1.657,1.343,3,3,3c1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2s2.403-0.837,2.816-2h3.367\r\n\t\t\t\tc0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.815-2h3.367\r\n\t\t\t\tc0.413,1.162,1.512,2,2.816,2c1.304,0,2.402-0.837,2.816-2h3.367c0.412,1.162,1.512,2,2.815,2s2.403-0.837,2.815-2h3.367\r\n\t\t\t\tc0.413,1.162,1.512,2,2.816,2c1.656,0,3-1.343,3-3c0-1.305-0.837-2.402-2-2.816v-3.367c1.162-0.412,2-1.512,2-2.815\r\n\t\t\t\ts-0.837-2.403-2-2.815v-3.367c1.162-0.414,2-1.512,2-2.816c0-1.304-0.837-2.402-2-2.816v-3.367c1.162-0.412,2-1.512,2-2.815\r\n\t\t\t\ts-0.837-2.403-2-2.816V25.82c1.162-0.413,2-1.512,2-2.816c0-1.304-0.837-2.403-2-2.816v-3.367C61.163,16.403,62,15.304,62,14z\r\n\t\t\t\t M54,54H10V10h44V54z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M62,14c0-1.304-0.837-2.403-2-2.816V7.816C61.163,7.403,62,6.305,62,5c0-1.657-1.343-3-3-3c-1.305,0-2.402,0.838-2.816,2\r\n\t\t\t\th-3.367C52.402,2.838,51.305,2,50,2s-2.402,0.838-2.816,2h-3.367C43.402,2.838,42.305,2,41,2s-2.402,0.838-2.816,2h-3.367\r\n\t\t\t\tC34.402,2.838,33.305,2,32,2c-1.304,0-2.403,0.838-2.816,2h-3.367C25.403,2.838,24.304,2,23,2s-2.403,0.838-2.816,2h-3.367\r\n\t\t\t\tC16.403,2.838,15.304,2,14,2s-2.403,0.838-2.816,2H7.816C7.403,2.838,6.304,2,5,2C3.343,2,2,3.343,2,5\r\n\t\t\t\tc0,1.304,0.837,2.403,2,2.816v3.367C2.837,11.597,2,12.696,2,14s0.837,2.403,2,2.816v3.367C2.837,20.597,2,21.696,2,23\r\n\t\t\t\ts0.837,2.403,2,2.816v3.367C2.837,29.597,2,30.696,2,32c0,1.305,0.837,2.402,2,2.816v3.367C2.837,38.598,2,39.695,2,41\r\n\t\t\t\ts0.837,2.402,2,2.816v3.367C2.837,47.598,2,48.695,2,50s0.837,2.402,2,2.816v3.367C2.837,56.598,2,57.695,2,59\r\n\t\t\t\tc0,1.657,1.343,3,3,3c1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2s2.403-0.837,2.816-2h3.367\r\n\t\t\t\tc0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.815-2h3.367\r\n\t\t\t\tc0.413,1.162,1.512,2,2.816,2c1.304,0,2.402-0.837,2.816-2h3.367c0.412,1.162,1.512,2,2.815,2s2.403-0.837,2.815-2h3.367\r\n\t\t\t\tc0.413,1.162,1.512,2,2.816,2c1.656,0,3-1.343,3-3c0-1.305-0.837-2.402-2-2.816v-3.367c1.162-0.412,2-1.512,2-2.815\r\n\t\t\t\ts-0.837-2.403-2-2.815v-3.367c1.162-0.414,2-1.512,2-2.816c0-1.304-0.837-2.402-2-2.816v-3.367c1.162-0.412,2-1.512,2-2.815\r\n\t\t\t\ts-0.837-2.403-2-2.816V25.82c1.162-0.413,2-1.512,2-2.816c0-1.304-0.837-2.403-2-2.816v-3.367C61.163,16.403,62,15.304,62,14z\r\n\t\t\t\t M54,54H10V10h44V54z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.frame = frame; \ No newline at end of file diff --git a/dist/ikons/globe.js b/dist/ikons/globe.js new file mode 100644 index 000000000..ff4afcd84 --- /dev/null +++ b/dist/ikons/globe.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.globe = void 0; +var globe = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "GLOBE_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "GLOBE" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "GLOBE" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M31.446,19.655c0.015,0.03,0.03,0.059,0.044,0.089c0.057-0.013,0.103-0.074,0.133-0.115c0.012-0.009,0.004,0,0.013-0.013\r\n\t\t\t\tc-0.023-0.013-0.047-0.026-0.07-0.038c-0.002-0.004-0.004-0.008-0.006-0.013c0.069-0.055,0.095-0.122,0.076-0.235\r\n\t\t\t\tc-0.03-0.002-0.059-0.004-0.089-0.006c-0.026,0.029-0.04,0.127-0.051,0.165c-0.058-0.027-0.089-0.049-0.108-0.114\r\n\t\t\t\tc-0.004-0.002-0.009-0.004-0.013-0.006c-0.078,0.099-0.18,0.095-0.076,0.267C31.324,19.671,31.398,19.659,31.446,19.655z\r\n\t\t\t\t M43.382,11.985c0.203,0.031,0.324,0.15,0.496,0.203c-0.004,0.021-0.009,0.042-0.013,0.064c-0.084,0.038-0.182,0.051-0.172,0.172\r\n\t\t\t\tc0.094,0.018,0.164,0.009,0.279,0.006c0.026,0.034,0.051,0.068,0.076,0.102c0.094,0.039,0.143-0.06,0.21-0.083\r\n\t\t\t\tc0.155,0.002,0.31,0.004,0.464,0.007c-0.006-0.127-0.177-0.162-0.254-0.223c-0.136-0.107-0.215-0.333-0.254-0.534\r\n\t\t\t\tc-0.085-0.43,0.254-0.283,0.292-0.597c-0.065-0.023-0.131-0.047-0.196-0.07c-0.172-0.022-0.357,0.059-0.478,0.089\r\n\t\t\t\tc-0.072,0.004-0.144,0.008-0.216,0.013c-0.088,0.044-0.135,0.159-0.235,0.203c-0.004,0.007-0.009,0.013-0.013,0.019\r\n\t\t\t\tc0.051,0.026,0.093,0.062,0.165,0.064c-0.037,0.109-0.134,0.278-0.241,0.311c-0.072,0.022-0.115-0.021-0.172-0.019\r\n\t\t\t\tc-0.049,0.061-0.104,0.114-0.07,0.229c0.02,0.025,0.038,0.051,0.057,0.076C43.251,12.115,43.275,11.969,43.382,11.985z\r\n\t\t\t\t M20.926,10.303c-0.046,0.008-0.091,0.016-0.137,0.024c-0.018,0.026-0.036,0.077-0.072,0.095\r\n\t\t\t\tc0.061,0.013,0.304-0.051,0.354-0.078C21.07,10.309,20.97,10.301,20.926,10.303z M31.37,7.524\r\n\t\t\t\tc0.061-0.032,0.123-0.064,0.184-0.095c0.036,0.055,0.072,0.11,0.108,0.165c-0.076,0.036-0.153,0.072-0.229,0.108\r\n\t\t\t\tc0.055,0.135,0.434,0.457,0.623,0.388c0.163-0.06,0.211-0.226,0.35-0.312c0.086,0.097,0.287,0.173,0.438,0.197v0.006\r\n\t\t\t\tc-0.178,0.189-0.512,0.185-0.769,0.299h-0.013c0.023,0.049,0.047,0.097,0.07,0.146c0.248-0.018,0.442-0.069,0.661-0.089\r\n\t\t\t\tc0.027,0.025,0.055,0.051,0.083,0.076c-0.103,0.131-0.323,0.152-0.559,0.146c-0.023,0.034-0.047,0.068-0.07,0.102\r\n\t\t\t\tc-0.004,0.004-0.008,0.008-0.013,0.013c0.102,0.062,0.562,0.443,0.718,0.4c0.032-0.019,0.063-0.038,0.095-0.057\r\n\t\t\t\tc-0.001-0.177,0.066-0.321,0.159-0.407c0.028-0.029,0.124-0.04,0.172-0.044c0.038-0.081,0.076-0.161,0.114-0.242\r\n\t\t\t\tc0.058-0.144,0.054-0.343,0.178-0.419c0.094-0.021,0.188-0.043,0.28-0.064c0.053-0.026,0.106-0.051,0.159-0.076\r\n\t\t\t\tc-0.049-0.083-0.189-0.174-0.28-0.21c-0.082-0.032-0.163-0.021-0.229-0.063c-0.057-0.074-0.113-0.148-0.172-0.222\r\n\t\t\t\tc-0.078,0-0.117,0.083-0.172,0.127C33.238,7.389,33.219,7.38,33.2,7.372c-0.034-0.072,0.005-0.174,0.006-0.28\r\n\t\t\t\tc-0.021-0.015-0.042-0.03-0.063-0.045h-0.172c-0.066-0.021-0.113-0.079-0.211-0.089C32.725,7,32.688,7.043,32.652,7.085\r\n\t\t\t\tc-0.041,0.109,0.107,0.294,0.127,0.4c-0.02,0.017-0.038,0.034-0.057,0.051c-0.109-0.025-0.307-0.287-0.351-0.381\r\n\t\t\t\tc-0.075-0.059-0.101-0.039-0.191,0c-0.015,0.076-0.03,0.153-0.044,0.229v0.013c-0.074-0.015-0.148-0.03-0.222-0.045\r\n\t\t\t\tc-0.036-0.055-0.041-0.146-0.038-0.242c-0.077-0.016-0.176,0.02-0.235,0.032c-0.047-0.004-0.093-0.008-0.14-0.013\r\n\t\t\t\tc-0.146,0.013-0.218,0.074-0.305,0.14C31.219,7.367,31.286,7.485,31.37,7.524z M34.414,7.117v0.006\r\n\t\t\t\tc-0.066,0.146-0.102,0.233-0.28,0.267v0.114c0.275,0.013,0.552,0.025,0.826,0.038c0.06-0.04,0.119-0.081,0.179-0.121\r\n\t\t\t\tc0.077-0.033,0.161-0.016,0.254-0.045c0.078-0.04,0.156-0.08,0.234-0.121c0.104-0.078,0.208-0.157,0.311-0.235\r\n\t\t\t\tc0.002-0.004,0.004-0.008,0.006-0.013c-0.022-0.038-0.047-0.076-0.069-0.114c-0.062-0.017-0.123-0.034-0.185-0.051\r\n\t\t\t\tc-0.119-0.023-0.25,0.029-0.375,0.026c-0.024-0.051-0.051-0.102-0.075-0.153c-0.03-0.011-0.06-0.021-0.089-0.032\r\n\t\t\t\tc-0.133,0.016-0.224,0.14-0.286,0.229h-0.108c-0.027-0.1-0.003-0.248,0.025-0.343c-0.137,0.061-0.143,0.232-0.268,0.292\r\n\t\t\t\tc-0.011,0.011-0.021,0.021-0.031,0.032c-0.168-0.256-0.328-0.017-0.496-0.134c-0.059-0.07-0.119-0.14-0.178-0.21\r\n\t\t\t\tc-0.082,0.106-0.162,0.212-0.242,0.318c-0.086,0.062-0.15,0.069-0.196,0.172c-0.004,0.004-0.009,0.008-0.013,0.013\r\n\t\t\t\tC33.594,7.203,34.035,7.121,34.414,7.117z M20.993,9.697c0.035,0.033,0.134,0.07,0.225,0.035c0.034-0.013,0.049-0.034,0.076-0.05\r\n\t\t\t\tc0.019-0.02,0.038-0.04,0.057-0.061C21.277,9.6,21.247,9.54,21.129,9.564C21.066,9.601,20.983,9.637,20.993,9.697z M21.388,8.988\r\n\t\t\t\tc-0.081,0.009-0.125-0.079-0.169-0.114c-0.024,0.041-0.114,0.079-0.126,0.107c0,0,0.086,0.119,0.094,0.127\r\n\t\t\t\tc0.011,0.01,0.028,0.019,0.044,0.023c0.039-0.003,0.22-0.108,0.242-0.129c0.013-0.013,0.03-0.035,0.009-0.052\r\n\t\t\t\tC21.451,8.925,21.406,8.976,21.388,8.988z M20.989,9.241c-0.031,0.049,0.059,0.128,0.12,0.118\r\n\t\t\t\tc0.061-0.054,0.045-0.074-0.037-0.096C21.044,9.256,21.017,9.248,20.989,9.241z M20.988,9.24L20.988,9.24\r\n\t\t\t\tc0.003-0.004-0.005-0.009-0.001-0.012C20.987,9.233,20.988,9.237,20.988,9.24z M30.588,18.905\r\n\t\t\t\tc0.119-0.015,0.252,0.008,0.413-0.006c0.016-0.051,0.02-0.072,0.064-0.095c-0.01-0.113-0.024-0.131,0.025-0.21\r\n\t\t\t\tc-0.011-0.004-0.021-0.008-0.032-0.013c-0.006,0.01-0.013,0.021-0.019,0.032c-0.055,0.015-0.11,0.03-0.165,0.044\r\n\t\t\t\tc-0.059,0.043-0.078,0.143-0.153,0.172c-0.076,0.008-0.153,0.017-0.229,0.025c-0.051,0.023-0.079,0.083-0.102,0.133\r\n\t\t\t\tc0.028,0.028,0.055,0.055,0.083,0.083C30.523,19.013,30.565,18.998,30.588,18.905z M10.002,26.709v0.006\r\n\t\t\t\tc0.013,0.019,0.025,0.038,0.038,0.057h0.027c-0.006-0.014-0.006-0.034-0.015-0.051C10.036,26.717,10.019,26.713,10.002,26.709z\r\n\t\t\t\t M42.956,34.189c-0.052-0.021-0.103-0.043-0.153-0.064c-0.119,0.085-0.214,0.171-0.388,0.21c-0.076,0.017-0.146-0.017-0.19-0.024\r\n\t\t\t\tc-0.086-0.018-0.14,0.054-0.197,0.069c-0.06-0.006-0.119-0.013-0.178-0.019h-0.014c-0.072,0.047-0.145,0.093-0.216,0.14\r\n\t\t\t\tc-0.099,0.036-0.13-0.06-0.242-0.038c-0.091,0.04-0.183,0.08-0.272,0.121h-0.179c-0.091-0.1-0.215-0.211-0.272-0.337\r\n\t\t\t\tc-0.055-0.015-0.129-0.003-0.191-0.013c-0.004-0.002-0.009-0.004-0.013-0.006v-0.014c0.069-0.033,0.208-0.09,0.261-0.146\r\n\t\t\t\tc-0.006-0.168-0.232-0.211-0.33-0.305c-0.018-0.016-0.033-0.139-0.089-0.19c-0.026-0.024-0.075-0.007-0.108-0.025\r\n\t\t\t\tc-0.088-0.098-0.178-0.194-0.267-0.292c-0.035-0.016-0.076-0.009-0.127-0.006c-0.039-0.055-0.074-0.139-0.133-0.172\r\n\t\t\t\tc-0.019,0.025-0.013,0.083-0.019,0.107c-0.005,0.002-0.009,0.004-0.014,0.008c-0.182-0.153-0.225-0.623-0.331-0.864\r\n\t\t\t\tc-0.049-0.112-0.295-0.163-0.362-0.254c-0.105-0.144-0.037-0.516-0.089-0.724c-0.032-0.135-0.153-0.35-0.254-0.426\r\n\t\t\t\tc-0.05-0.038-0.123-0.051-0.159-0.102c-0.045-0.062-0.051-0.162-0.076-0.242c0.023-0.021,0.047-0.042,0.07-0.064\r\n\t\t\t\tc-0.051-0.051-0.102-0.102-0.152-0.152c-0.14-0.209-0.24-0.462-0.369-0.667c-0.055-0.144-0.11-0.288-0.166-0.432\r\n\t\t\t\tc-0.094-0.171-0.256-0.287-0.299-0.521c0.033-0.045,0.039-0.066,0.096-0.089c0.08,0.245,0.223,0.49,0.4,0.642\r\n\t\t\t\tc0.019,0.021,0.047,0.019,0.075,0.013c0.08-0.159,0.058-0.398,0.185-0.508c-0.074-0.191-0.148-0.381-0.223-0.572\r\n\t\t\t\tc-0.121,0.015-0.164,0.113-0.337,0.019c-0.112,0.08-0.157,0.011-0.28,0.032c-0.041-0.043-0.076-0.051-0.095-0.121\r\n\t\t\t\tc-0.215-0.044-0.454,0.008-0.604,0.108c-0.039,0.032-0.08,0.063-0.12,0.095c-0.079,0.017-0.155-0.048-0.21-0.064\r\n\t\t\t\tc-0.061-0.006-0.123-0.013-0.184-0.019c-0.014-0.017-0.025-0.034-0.039-0.051c-0.147-0.032-0.297-0.064-0.444-0.095h-0.318\r\n\t\t\t\tc-0.058-0.026-0.045-0.125-0.108-0.146h-0.146c-0.077-0.012-0.25-0.041-0.324-0.07c-0.069-0.038-0.032-0.128-0.133-0.172\r\n\t\t\t\tc-0.258-0.113-0.681,0.039-0.782,0.21c-0.137,0.231,0.168,0.358-0.146,0.527c-0.038,0.02-0.089,0.07-0.146,0.064\r\n\t\t\t\tc-0.154-0.018-0.267-0.184-0.4-0.235c-0.133-0.05-0.434-0.054-0.541-0.114c-0.118-0.068-0.136-0.311-0.24-0.35\r\n\t\t\t\tc-0.058-0.021-0.105-0.003-0.152-0.025c-0.028-0.025-0.055-0.051-0.083-0.076c-0.066-0.013-0.131-0.025-0.197-0.038\r\n\t\t\t\tc-0.095,0.006-0.191,0.013-0.286,0.019c-0.129-0.055-0.258-0.11-0.388-0.165c-0.009-0.034-0.017-0.068-0.025-0.102\r\n\t\t\t\tc-0.061-0.005-0.069,0.013-0.121,0.025c-0.082-0.04-0.182-0.111-0.203-0.21c0.059-0.065,0.326-0.286,0.324-0.369\r\n\t\t\t\tc-0.011-0.042-0.021-0.085-0.032-0.127c-0.337-0.192,0.008-0.272,0.006-0.483c-0.064,0.038-0.127,0.076-0.191,0.115\r\n\t\t\t\tc-0.011-0.002-0.021-0.004-0.032-0.006c-0.018-0.04-0.036-0.072-0.038-0.127c-0.047-0.021-0.093-0.042-0.14-0.064\r\n\t\t\t\tc-0.03,0.004-0.059,0.009-0.089,0.013c-0.095,0.036-0.266,0.212-0.432,0.165c-0.024-0.007-0.062-0.069-0.14-0.096\r\n\t\t\t\tc-0.063,0.009-0.084,0.051-0.133,0.076c-0.076-0.012-0.113-0.06-0.178-0.083c-0.078,0.055-0.155,0.115-0.267,0.14\r\n\t\t\t\tc-0.173,0.039-0.303-0.115-0.502-0.063c-0.038,0.021-0.076,0.042-0.114,0.063c-0.073,0.026-0.104-0.027-0.159-0.019\r\n\t\t\t\tc-0.047,0.021-0.093,0.042-0.14,0.064c-0.145,0.03-0.312-0.005-0.432,0.044c-0.114,0.047-0.181,0.142-0.267,0.216\r\n\t\t\t\tc-0.046-0.004-0.065-0.015-0.089-0.038c-0.039,0.007-0.209,0.066-0.242,0.089c-0.08,0.057-0.073,0.137-0.191,0.172\r\n\t\t\t\tc-0.13,0.038-0.283-0.002-0.318-0.089c-0.007-0.002-0.345,0.103-0.477,0.064c-0.138-0.041-0.19-0.153-0.28-0.242\r\n\t\t\t\tc-0.032,0.015-0.064,0.03-0.095,0.045c-0.071,0.054-0.17,0.43-0.248,0.534c-0.114,0.152-0.324,0.164-0.483,0.273\r\n\t\t\t\tc-0.054,0.037-0.227,0.186-0.248,0.241c-0.022,0.058,0.009,0.132-0.019,0.191c-0.035,0.073-0.121,0.127-0.153,0.21\r\n\t\t\t\tc-0.075,0.199,0.155,0.303-0.006,0.54c-0.101,0.149-0.406,0.41-0.578,0.483c-0.089,0.038-0.211,0.03-0.305,0.076\r\n\t\t\t\tc-0.108,0.053-0.13,0.288-0.203,0.381c-0.059,0.074-0.188,0.088-0.242,0.165c-0.056,0.081-0.105,0.204-0.127,0.311\r\n\t\t\t\tc-0.002,0.044-0.004,0.089-0.006,0.134c-0.04,0.101-0.18,0.151-0.242,0.235c-0.063,0.146-0.127,0.292-0.191,0.438\r\n\t\t\t\tc-0.047,0.051-0.093,0.102-0.14,0.153c-0.056,0.084-0.082,0.256-0.064,0.388c0.015-0.017,0.03-0.034,0.044-0.051\r\n\t\t\t\tc0.199,0.016,0.209,0.339,0.114,0.477c0.233,0.184,0.095,0.554,0.025,0.788c-0.008,0.067-0.017,0.136-0.025,0.203\r\n\t\t\t\tc-0.037,0.135-0.145,0.317-0.273,0.362c-0.002,0.004-0.004,0.008-0.006,0.013c0.181,0.075,0.181,0.271,0.267,0.311\r\n\t\t\t\tc0.01,0.021,0.013,0.041,0.013,0.076c-0.019,0.004-0.038,0.008-0.057,0.013c-0.049,0.069-0.01,0.178-0.032,0.262\r\n\t\t\t\tc0.08,0.135,0.04,0.035,0.14,0.102c0.004,0.016,0.008,0.03,0.013,0.044c0.042,0.024,0.085,0.052,0.127,0.076\r\n\t\t\t\tc0.063-0.013,0.153-0.052,0.203,0.006c-0.039,0.048-0.093,0.079-0.076,0.165c0.026,0.018,0.08,0.021,0.102,0.044\r\n\t\t\t\tc0.015,0.021,0.01,0.028,0.006,0.058c0.034,0.022,0.057,0.033,0.121,0.031c0.011,0.033,0.011,0.061,0,0.096\r\n\t\t\t\tc0.065,0.068,0.166,0.135,0.267,0.164c0.006,0.032,0.013,0.063,0.019,0.096c0.033,0.061,0.118,0.08,0.14,0.158v0.096\r\n\t\t\t\tc0.014,0.018,0.035,0.021,0.063,0.025c0.002,0.008,0.004,0.017,0.006,0.024c-0.023,0.019-0.047,0.038-0.07,0.058h-0.013\r\n\t\t\t\tc0.028,0.094,0.156,0.186,0.261,0.203c0.018,0.033,0.013,0.047,0.006,0.094c0.142,0.043,0.215,0.149,0.324,0.223\r\n\t\t\t\tc0.08,0.042,0.161,0.085,0.242,0.127c0.17,0.12,0.278,0.261,0.477,0.361c0.062,0.033,0.311,0.192,0.388,0.173\r\n\t\t\t\tc0.102-0.054,0.203-0.106,0.305-0.159c0.106-0.029,0.212-0.059,0.318-0.089c0.092-0.027,0.292-0.048,0.407-0.025\r\n\t\t\t\tc0.05,0.011,0.145,0.062,0.21,0.038c0.011-0.013,0.021-0.025,0.032-0.038c0.041,0.005,0.246,0.134,0.286,0.165\r\n\t\t\t\tc0.206-0.093,0.411-0.186,0.616-0.279c0.087-0.008,0.174-0.018,0.261-0.025c0.052-0.039,0.054-0.107,0.127-0.133\r\n\t\t\t\tc0.214-0.02,0.428-0.038,0.642-0.057c0.032-0.013,0.039-0.043,0.083-0.058c0.077,0.015,0.286,0.147,0.331,0.203\r\n\t\t\t\tc0.015,0.024,0.03,0.051,0.044,0.075c0.023,0.002,0.047,0.005,0.07,0.007c0.006,0.008,0.013,0.017,0.019,0.024\r\n\t\t\t\tc-0.013,0.032-0.025,0.064-0.038,0.096c0.025,0.209,0.348,0.363,0.534,0.197c0.101,0.017,0.232,0.039,0.343-0.007\r\n\t\t\t\tc0.002-0.026-0.002-0.036-0.013-0.062c0.025-0.017,0.147,0.013,0.178,0.051c0.069,0.124-0.004,0.172,0.222,0.165\r\n\t\t\t\tc0.008,0.013,0.017,0.025,0.025,0.038c0.004,0.004,0.008,0.008,0.013,0.013c-0.019,0.016-0.038,0.03-0.057,0.044\r\n\t\t\t\tc0.021,0.08,0.085,0.147,0.102,0.242c-0.011,0.042-0.021,0.085-0.032,0.127c0.009,0.032,0.017,0.063,0.025,0.095\r\n\t\t\t\tc-0.024,0.1-0.086,0.2-0.153,0.262c-0.002,0.006-0.004,0.013-0.006,0.019c0.025,0.004,0.051,0.008,0.076,0.013\r\n\t\t\t\tc0.003,0.084-0.012,0.146-0.076,0.166c0.049,0.041,0.097,0.084,0.146,0.127v0.006c-0.038-0.004-0.076-0.01-0.114-0.014\r\n\t\t\t\tc-0.031,0.139-0.072,0.242-0.191,0.292c0.013,0.028,0.052,0.116,0.076,0.14c0.036,0.035,0.074,0.016,0.114,0.07\r\n\t\t\t\tc-0.021,0.016-0.042,0.03-0.063,0.045c-0.002,0.004-0.004,0.008-0.006,0.014c0.042,0.062,0.085,0.123,0.127,0.184\r\n\t\t\t\tc0.053,0.027,0.074,0.003,0.108,0.045c-0.011,0.016-0.021,0.03-0.032,0.044c0.089,0.058,0.143,0.122,0.203,0.21\r\n\t\t\t\tc0.112,0.104,0.224,0.208,0.337,0.311c0.032,0.039,0.115,0.205,0.133,0.248c0.029,0.068-0.018,0.162,0.038,0.262\r\n\t\t\t\tc0.045,0.064,0.089,0.127,0.133,0.191c0.013,0.061,0.025,0.123,0.038,0.184c0.057,0.134,0.17,0.186,0.14,0.388\r\n\t\t\t\tc-0.243,0.109,0.046,0.36,0.089,0.489c0.008,0.1,0.017,0.199,0.025,0.299c-0.019,0.11-0.066,0.285-0.146,0.337\r\n\t\t\t\tc-0.03,0.011-0.059,0.021-0.089,0.032c-0.017,0.04-0.034,0.081-0.051,0.121c-0.03,0.031-0.059,0.064-0.089,0.096\r\n\t\t\t\tc-0.094,0.223-0.042,0.57-0.222,0.705c0,0.202-0.037,0.471,0.013,0.648c0.038,0.135,0.15,0.217,0.216,0.324\r\n\t\t\t\tc0.108,0.215,0.216,0.432,0.324,0.647c0.075,0.146,0.371,0.403,0.203,0.571c0.03,0.141,0.059,0.281,0.089,0.42\r\n\t\t\t\tc0.023,0.055,0.047,0.109,0.07,0.165c0.02,0.081-0.031,0.143-0.025,0.202c0.008,0.08,0.071,0.147,0.089,0.211\r\n\t\t\t\tc0.014,0.047-0.021,0.072-0.019,0.102c0.034,0.104,0.068,0.208,0.102,0.311c0.116,0.131,0.233,0.264,0.349,0.395\r\n\t\t\t\tc0.12,0.189,0.16,0.434,0.273,0.635c0.1,0.178,0.271,0.36,0.203,0.654c-0.033,0.008-0.078,0-0.096,0.025\r\n\t\t\t\tc-0.025,0.031,0.123,0.229,0.159,0.285c-0.017,0.049-0.034,0.099-0.051,0.146c0.011,0.011,0.021,0.021,0.032,0.031\r\n\t\t\t\tc0.006,0.003,0.013,0.005,0.019,0.007c0.006-0.015,0.013-0.03,0.019-0.045c0.018-0.009,0.022-0.011,0.052-0.013\r\n\t\t\t\tc0.013,0.022,0.024,0.047,0.038,0.069c0.027-0.001,0.052-0.007,0.102-0.006c0.021,0.028,0.021,0.056,0.038,0.095\r\n\t\t\t\tc0.024,0.043,0.115,0.075,0.165,0.09c0.061-0.047,0.096-0.123,0.178-0.146c0.115-0.035,0.252,0.044,0.356-0.006\r\n\t\t\t\tc0.032-0.03,0.063-0.059,0.095-0.09c0.15-0.07,0.214,0,0.331,0c0.034-0.019,0.067-0.037,0.103-0.057\r\n\t\t\t\tc0.121-0.035,0.233,0.073,0.317,0.102c0.04-0.03,0.07-0.055,0.095-0.102c0.058,0.014,0.114,0.025,0.172,0.038\r\n\t\t\t\tc0.018-0.019,0.021-0.053,0.033-0.075c0.049-0.049,0.321-0.018,0.399-0.07c0.083-0.072,0.165-0.145,0.248-0.217\r\n\t\t\t\tc0.416-0.326,0.721-0.688,1.017-1.138c0.074-0.112,0.264-0.19,0.305-0.299c0.021-0.052-0.027-0.122-0.019-0.146\r\n\t\t\t\tc0.017-0.045,0.065-0.033,0.089-0.064c0.071-0.091,0.109-0.35,0.09-0.496c-0.039-0.016-0.078-0.04-0.096-0.076\r\n\t\t\t\tc-0.006-0.006-0.013-0.013-0.02-0.019c0.078-0.091,0.133-0.175,0.242-0.235c0.244-0.134,0.525-0.121,0.635-0.388\r\n\t\t\t\tc-0.008-0.062-0.051-0.036-0.063-0.07c0.002-0.006,0.005-0.013,0.007-0.019c0.012-0.032,0.024-0.064,0.037-0.096\r\n\t\t\t\tc0.03-0.123,0.023-0.264,0.02-0.388c-0.028,0.011-0.035,0.019-0.076,0.019c-0.039-0.123-0.087-0.273-0.044-0.375\r\n\t\t\t\tc-0.007-0.074-0.062-0.111-0.114-0.14v-0.202c0.119-0.088,0.237-0.175,0.355-0.262c0.146-0.122,0.233-0.305,0.4-0.406\r\n\t\t\t\tc0.203-0.123,0.451-0.162,0.643-0.293c0.137-0.094,0.224-0.268,0.33-0.394c0-0.028-0.008-0.039-0.019-0.07\r\n\t\t\t\tc0.036-0.047,0.068-0.081,0.095-0.14c-0.002-0.012-0.004-0.021-0.006-0.032c-0.023-0.011-0.047-0.021-0.07-0.032\r\n\t\t\t\tc-0.02-0.162,0.013-0.337-0.069-0.432c0.003-0.034,0.034-0.062,0.044-0.107c0.025-0.113-0.041-0.295-0.057-0.395\r\n\t\t\t\tc0.029-0.055,0.059-0.11,0.088-0.165c-0.064-0.14-0.182-0.157-0.266-0.267c-0.084-0.108-0.127-0.394-0.07-0.554\r\n\t\t\t\tc-0.019-0.028-0.043-0.032-0.064-0.057c0.029-0.062,0.083-0.148,0.089-0.216c-0.057-0.071-0.161-0.127-0.196-0.217\r\n\t\t\t\tc-0.037-0.095,0.061-0.406,0.102-0.451c0.023-0.025,0.068-0.021,0.089-0.051c0.047-0.067,0.006-0.104,0.024-0.164\r\n\t\t\t\tc0.043-0.138,0.173-0.144,0.185-0.369c0.097-0.053,0.187-0.051,0.19-0.203c0.086,0.017,0.125-0.021,0.191-0.051\r\n\t\t\t\tc0.024-0.035,0.026-0.054,0.006-0.095c0.209-0.235,0.416-0.47,0.623-0.704c0.229-0.186,0.516-0.326,0.744-0.509\r\n\t\t\t\tc0.086-0.104,0.17-0.208,0.254-0.312c0.168-0.215,0.42-0.422,0.527-0.686c0.011-0.049,0.021-0.098,0.032-0.146\r\n\t\t\t\tc0.073-0.118,0.147-0.236,0.222-0.355c-0.002-0.027-0.004-0.055-0.006-0.083c0.042-0.04,0.085-0.081,0.127-0.121\r\n\t\t\t\tc0.055-0.098,0.109-0.194,0.165-0.292c0.006-0.087,0.013-0.174,0.019-0.261c0.015-0.04,0.08-0.069,0.076-0.127\r\n\t\t\t\tc-0.002-0.045-0.037-0.108-0.019-0.172c0.017-0.04,0.034-0.081,0.051-0.121C42.96,34.201,42.958,34.195,42.956,34.189z\r\n\t\t\t\t M51.688,35.154c-0.031-0.184-0.127-0.277-0.279-0.375c0.018,0.078-0.004,0.113-0.025,0.191c-0.033,0.026-0.04,0.043-0.095,0.025\r\n\t\t\t\tc-0.004,0.015-0.009,0.029-0.013,0.044c0.015,0.017,0.029,0.034,0.043,0.051c-0.028,0.063-0.008,0.077,0.007,0.14v0.318\r\n\t\t\t\tc0.022,0.102,0.073,0.268,0.146,0.324c0.209,0.044,0.477-0.139,0.451-0.337c-0.011-0.089-0.093-0.163-0.127-0.235\r\n\t\t\t\tC51.76,35.227,51.768,35.186,51.688,35.154z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z\r\n\t\t\t\t M50.505,13.747c0.043,0.044,0.081,0.093,0.124,0.137c-0.003,0.02-0.006,0.039-0.008,0.059v0.006\r\n\t\t\t\tc0.027,0.007,0.053,0.01,0.08,0.013c0.048,0.049,0.092,0.103,0.139,0.153c-0.13,0.026-0.316,0.022-0.352-0.084\r\n\t\t\t\tC50.471,14.004,50.497,13.865,50.505,13.747z M48.568,14.508c0.037,0.017,0.076,0.034,0.113,0.051\r\n\t\t\t\tc0.07-0.025,0.141-0.051,0.211-0.076c-0.014-0.036-0.025-0.072-0.039-0.108c0.033-0.077,0.143-0.097,0.203-0.146\r\n\t\t\t\tc0.084-0.066,0.228-0.183,0.268-0.286c0.015-0.059,0.029-0.119,0.044-0.178c0.022-0.052,0.06-0.069,0.063-0.146\r\n\t\t\t\tc-0.099-0.13-0.201-0.041-0.254-0.292c0.002-0.127,0.004-0.254,0.006-0.381c-0.008-0.074-0.017-0.148-0.024-0.222\r\n\t\t\t\tc0.032-0.042,0.063-0.085,0.095-0.127c0.001-0.002-0.001-0.005,0-0.008c0.1,0.088,0.195,0.177,0.293,0.266\r\n\t\t\t\tc-0.012,0.031-0.036,0.06-0.038,0.092c-0.006,0.103,0.07,0.19,0.07,0.324c0.103-0.002,0.239,0.039,0.312,0.025\r\n\t\t\t\tc0.033-0.012,0.068-0.024,0.103-0.036c0.075,0.072,0.157,0.137,0.231,0.211c-0.214-0.04-0.47,0.008-0.5,0.206\r\n\t\t\t\tc0.057,0.099,0.113,0.168,0.108,0.318c-0.042,0.053-0.085,0.106-0.127,0.159c-0.034,0.021-0.067,0.042-0.103,0.064\r\n\t\t\t\tc-0.043,0.061-0.037,0.157-0.095,0.203c-0.14,0.113-0.327,0.134-0.407,0.311c-0.084,0.039-0.185,0.002-0.261-0.013\r\n\t\t\t\tc-0.053,0.002-0.106,0.004-0.159,0.006c-0.219-0.032-0.424-0.055-0.502-0.229C48.309,14.462,48.449,14.461,48.568,14.508z\r\n\t\t\t\t M14.404,12.899c-0.002,0.011-0.006,0.023,0.013,0.034c0.011,0.006,0.027,0.004,0.044,0.005c0.046,0.003,0.104,0.019,0.122,0.05\r\n\t\t\t\tc-0.03,0.071-0.177,0-0.221-0.006c0,0.003,0,0.006,0,0.008c-0.005,0-0.011,0-0.016,0c-0.003,0.077,0.276,0.05,0.304,0.123\r\n\t\t\t\tc-0.032,0.036-0.081,0.019-0.141,0.035c-0.004,0.062,0.16,0.026,0.146,0.083c0,0.002-0.001,0.003-0.001,0.005\r\n\t\t\t\tc-0.043,0.013-0.078-0.002-0.117,0.012c-0.004,0.003-0.007,0.006-0.01,0.009c0,0.003,0,0.006,0,0.008\r\n\t\t\t\tc0.031,0.019,0.072,0.042,0.132,0.023c0.017-0.006,0.036-0.014,0.054-0.012c0.006,0.002,0.012,0.003,0.017,0.005\r\n\t\t\t\tc0.003,0.02-0.019,0.062-0.05,0.071c-0.034,0.009-0.199-0.014-0.228-0.021c-0.059-0.015-0.101-0.05-0.147-0.078\r\n\t\t\t\tc-0.04-0.024-0.124-0.06-0.197-0.085C14.204,13.077,14.305,12.99,14.404,12.899z M13.524,13.715\r\n\t\t\t\tc0.019,0.012,0.039,0.022,0.052,0.039c-0.03-0.002-0.064,0.005-0.097,0.01C13.495,13.749,13.509,13.731,13.524,13.715z\r\n\t\t\t\t M7.943,27.904c0.017-0.004,0.034-0.008,0.051-0.013c-0.017,0.015-0.034,0.03-0.051,0.045\r\n\t\t\t\tC7.945,27.925,7.941,27.918,7.943,27.904z M7.499,23.367c-0.001,0.007,0,0.011-0.001,0.018c-0.002-0.002-0.002-0.004-0.004-0.006\r\n\t\t\t\tC7.496,23.376,7.497,23.372,7.499,23.367z M7.676,37.665c-0.049,0.065-0.234,0.104-0.337,0.051\r\n\t\t\t\tc-0.044,0.033-0.061,0.065-0.057,0.146c-0.015,0.014-0.03,0.025-0.044,0.039c-0.012-0.053-0.021-0.069-0.07-0.084\r\n\t\t\t\tc-0.033-0.006-0.066,0.023-0.095,0.039c-0.203,0.106-0.124,0.25-0.191,0.438c-0.026,0.005-0.052,0.01-0.079,0.016\r\n\t\t\t\tc-0.076-0.303-0.168-0.599-0.232-0.904c0.011,0,0.019,0.005,0.032,0.006c0.029,0.082,0.054,0.128,0.146,0.146\r\n\t\t\t\tc0.004-0.029,0.009-0.056,0.013-0.084h0.006c0.023,0.049,0.076,0.109,0.064,0.172c0.006,0.006,0.013,0.014,0.019,0.02\r\n\t\t\t\tc0.114,0.02,0.144-0.047,0.248-0.057c-0.01-0.111-0.095-0.121-0.133-0.203c0.039-0.059,0.138-0.1,0.21-0.121\r\n\t\t\t\tc-0.003-0.04-0.005-0.057,0.006-0.09c0.198-0.062,0.318-0.017,0.375,0.141c0.045,0.008,0.076-0.016,0.108-0.038\r\n\t\t\t\tc-0.001,0.05,0.005,0.067,0.038,0.083c0.002,0.004,0.004,0.01,0.006,0.014c-0.061-0.009-0.097-0.021-0.121,0.031\r\n\t\t\t\tC7.564,37.5,7.647,37.605,7.676,37.665z M32,58c-7.083,0-13.497-2.841-18.187-7.436c0.051-0.051,0.122-0.09,0.155-0.152\r\n\t\t\t\tc0.019-0.078,0.038-0.157,0.057-0.235v-0.013c0.049,0.021,0.108,0.044,0.172,0.02h0.006c0.013,0.191-0.204,0.291-0.248,0.482\r\n\t\t\t\tc0.103-0.092,0.237-0.221,0.299-0.35c0.051-0.121,0.102-0.241,0.153-0.361c0.174-0.277,0.481-0.299,0.394-0.852\r\n\t\t\t\tc-0.012-0.078-0.036-0.114-0.057-0.172c0.045-0.055,0.132-0.205,0.019-0.255v-0.038c0.146,0.014,0.159-0.072,0.235-0.14\r\n\t\t\t\tc0.08-0.069,0.491-0.363,0.585-0.381c0.051-0.011,0.091,0.021,0.127,0.032c0.03-0.036,0.059-0.072,0.089-0.108\r\n\t\t\t\tc0.086-0.051,0.144-0.034,0.165-0.153c0.094-0.012,0.207-0.008,0.28,0.006c0.161,0.031,0.334-0.013,0.483-0.024\r\n\t\t\t\tc-0.005-0.183,0.137-0.241,0.292-0.254c-0.009-0.052-0.017-0.103-0.025-0.153c0.017-0.123,0.117-0.202,0.172-0.292\r\n\t\t\t\tc0.034-0.069,0.068-0.14,0.102-0.21c0.032-0.046,0.105-0.072,0.121-0.133c-0.006-0.062-0.013-0.123-0.019-0.184\r\n\t\t\t\tc-0.03-0.17,0.065-0.289,0.184-0.332c0-0.047-0.035-0.138-0.019-0.222c0.021-0.106,0.097-0.243,0.076-0.368\r\n\t\t\t\tc-0.017-0.166-0.034-0.332-0.051-0.496c0.028-0.172,0.093-0.289,0.095-0.465c0.015,0.002,0.03,0.004,0.044,0.006\r\n\t\t\t\tc0.017,0.034,0.034,0.068,0.051,0.103h0.019c0.113-0.084,0.241-0.308,0.292-0.445c0.031-0.081,0.007-0.126,0.057-0.178\r\n\t\t\t\tc0.047-0.021,0.093-0.042,0.14-0.063c0.273-0.213,0.461-0.44,0.534-0.858c0.027-0.157-0.139-0.732-0.216-0.757\r\n\t\t\t\tc-0.161-0.049-0.338,0.009-0.458-0.069c-0.256-0.166-0.436-0.435-0.731-0.565c-0.171-0.076-0.287,0.017-0.451-0.014\r\n\t\t\t\tc-0.1-0.016-0.199-0.029-0.299-0.045c-0.086-0.023-0.18-0.133-0.286-0.121c-0.154,0.018-0.289,0.139-0.394,0.21\r\n\t\t\t\tc-0.049-0.2,0.024-0.122,0.044-0.241c0.013-0.078-0.114-0.195-0.184-0.203c-0.017,0.017-0.034,0.033-0.051,0.051h-0.025\r\n\t\t\t\tc-0.054-0.172-0.227-0.156-0.394-0.217c-0.065-0.022-0.106-0.067-0.159-0.102c-0.052,0.007-0.15,0.016-0.216,0.032\r\n\t\t\t\tc-0.072,0.028-0.08,0.13-0.121,0.19c-0.069,0.102-0.227,0.129-0.28,0.248c-0.004,0.002-0.008,0.004-0.013,0.006\r\n\t\t\t\tc0-0.069,0.012-0.1,0.032-0.146c-0.111,0.022-0.259,0.048-0.394,0.026c-0.032-0.076-0.064-0.153-0.095-0.229\r\n\t\t\t\tc-0.088,0.024-0.202,0.166-0.318,0.121c-0.006-0.004-0.013-0.008-0.019-0.013c0.085-0.065,0.102-0.2,0.159-0.293\r\n\t\t\t\tc0.065-0.104,0.205-0.137,0.28-0.229c0.067-0.082,0.092-0.211,0.197-0.254c0.034-0.054,0.016-0.107-0.006-0.165\r\n\t\t\t\tc-0.262-0.036-0.276-0.356-0.343-0.577c-0.021-0.068-0.016-0.144-0.076-0.173c-0.031-0.005-0.044,0.032-0.076,0.025\r\n\t\t\t\tc-0.015-0.003-0.319-0.315-0.4-0.356c-0.11-0.035-0.22-0.072-0.331-0.107c-0.09-0.035-0.342-0.112-0.489-0.051\r\n\t\t\t\tc-0.016,0.014-0.018,0.026-0.019,0.057c-0.095-0.021-0.191-0.042-0.286-0.064h-0.006c-0.015,0.016-0.03,0.03-0.044,0.045\r\n\t\t\t\tc-0.061-0.119-0.214-0.313-0.388-0.291c-0.011,0.021-0.021,0.041-0.032,0.062v0.013c-0.013-0.091-0.026-0.182-0.038-0.272\r\n\t\t\t\tc-0.074-0.125-0.313-0.283-0.47-0.318c-0.084-0.018-0.176,0.005-0.241,0.02c-0.066-0.004-0.131-0.009-0.197-0.014v-0.006\r\n\t\t\t\tc0.187-0.059,0.138-0.167,0.273-0.223c0.002-0.004,0.004-0.008,0.006-0.012c-0.051-0.035-0.122-0.046-0.178-0.084\r\n\t\t\t\tc-0.013-0.019-0.026-0.037-0.038-0.057c-0.045-0.029-0.132-0.021-0.172-0.045c-0.027,0.02-0.038,0.035-0.045,0.076\r\n\t\t\t\tc-0.004,0.002-0.008,0.004-0.013,0.006c-0.012-0.113-0.097-0.154-0.184-0.191v-0.039c0.059,0.002,0.119,0.004,0.178,0.006\r\n\t\t\t\tc0.011-0.006,0.021-0.014,0.032-0.02c0.004-0.009,0.008-0.018,0.013-0.025c-0.002-0.004-0.004-0.008-0.006-0.013\r\n\t\t\t\tc-0.129-0.028-0.42-0.039-0.54,0.019c-0.075,0.037-0.117,0.127-0.21,0.146c-0.261,0.059-0.335-0.148-0.496-0.159\r\n\t\t\t\tc-0.136-0.008-0.364,0.083-0.483,0.025c-0.058-0.029-0.044-0.058-0.07-0.121c-0.05-0.125-0.201-0.158-0.375-0.159\r\n\t\t\t\tc-0.033-0.051-0.073-0.137-0.089-0.197c-0.053-0.012-0.097,0.017-0.114,0.064c0.015,0.025,0.03,0.051,0.044,0.076\r\n\t\t\t\tc0.028-0.002,0.055-0.004,0.083-0.006c0.013,0.011,0.025,0.021,0.038,0.031c-0.016,0.063-0.425,0.178-0.515,0.211\r\n\t\t\t\tc0.006,0.004,0.013,0.008,0.019,0.012c-0.008,0.037-0.018,0.037-0.038,0.058c0.053,0.026,0.197,0.299,0.152,0.394\r\n\t\t\t\tc-0.025,0.045-0.094,0.072-0.152,0.084c-0.065-0.049-0.097-0.164-0.146-0.229c0.015-0.101,0.07-0.187,0.121-0.254\r\n\t\t\t\tc-0.012-0.103-0.056-0.167-0.089-0.254c0.041-0.062,0.144-0.086,0.241-0.089c0.011-0.014,0.021-0.025,0.032-0.038\r\n\t\t\t\tc-0.013-0.064-0.059-0.101-0.114-0.121c-0.156-0.06-0.195,0.139-0.273,0.185c-0.04,0.012-0.081,0.024-0.121,0.037\r\n\t\t\t\tc0.019-0.035,0.046-0.051,0.032-0.102c0.027,0.011,0.029,0.016,0.038,0.045h0.006c0.052-0.033,0.079-0.079,0.121-0.121\r\n\t\t\t\tc-0.08-0.166-0.161-0.342-0.337-0.413c-0.058-0.022-0.134,0.003-0.203-0.026c-0.026-0.01-0.121-0.049-0.159-0.037\r\n\t\t\t\tc-0.047,0.031-0.093,0.063-0.14,0.095c-0.03,0.018-0.063,0.012-0.102,0.026c-0.12,0.043-0.172,0.127-0.331,0.094\r\n\t\t\t\tc-0.05-0.062-0.09-0.027-0.135-0.021c-0.26-1.288-0.395-2.619-0.457-3.968c0.016-0.002,0.033-0.001,0.046-0.007\r\n\t\t\t\tc0.167-0.078,0.167-0.194,0.47-0.121c0.006,0.011,0.013,0.021,0.019,0.031v0.007c-0.047,0.013-0.093,0.024-0.14,0.038\r\n\t\t\t\tc0.108,0.084,0.261,0.035,0.419,0.082c0.114,0.035,0.208,0.115,0.337,0.146c0.067,0.018,0.202-0.02,0.261,0.02\r\n\t\t\t\tc0.043,0.024,0.066,0.123,0.07,0.184c0.099,0.061,0.295,0.061,0.388,0.127c-0.006,0.064-0.053,0.105-0.102,0.127\r\n\t\t\t\tC7.811,33.859,7.792,33.88,7.773,33.9v0.007c0.141,0.006,0.266-0.058,0.394-0.038c0.097,0.011,0.195,0.021,0.292,0.031\r\n\t\t\t\tc0.105-0.019,0.2-0.058,0.324-0.069c0.002-0.004,0.004-0.008,0.006-0.013c-0.124-0.092-0.202-0.151-0.432-0.146\r\n\t\t\t\tc-0.006-0.006-0.013-0.013-0.019-0.02c0.013-0.027,0.025-0.055,0.038-0.082c-0.079-0.081-0.36-0.09-0.483-0.141\r\n\t\t\t\tc-0.04-0.043-0.08-0.089-0.121-0.133c-0.131-0.09-0.318-0.074-0.477-0.146c-0.064-0.053-0.127-0.105-0.191-0.158H7.022\r\n\t\t\t\tc-0.163-0.037-0.338-0.074-0.559-0.07c-0.083,0.008-0.165,0.018-0.248,0.025c-0.059,0.014-0.109,0.043-0.163,0.068\r\n\t\t\t\tC6.038,32.677,6,32.344,6,32c0-0.404,0.042-0.798,0.06-1.198c0.069,0.073,0.127,0.176,0.179,0.209\r\n\t\t\t\tc0.057,0.035,0.12,0.025,0.133,0.102c-0.021,0.115-0.042,0.229-0.064,0.343c0.008,0.002,0.017,0.004,0.025,0.006\r\n\t\t\t\tc0.036,0.022,0.05-0.017,0.089-0.032c0.002,0.019,0.004,0.038,0.006,0.057c-0.025,0.035-0.04,0.043-0.083,0.063\r\n\t\t\t\tc0.038,0.07,0.076,0.14,0.115,0.21h0.06c0.006,0.032,0.013,0.064,0.019,0.095c0.019,0.013,0.038,0.025,0.057,0.038\r\n\t\t\t\tc0.051,0.105-0.017,0.164,0.133,0.172c0.035,0.058,0.068,0.193,0.108,0.242c0.047-0.022,0.112-0.023,0.178-0.032\r\n\t\t\t\tc-0.004,0.021-0.008,0.042-0.013,0.064h0.013c0.048-0.142,0.166-0.403,0.108-0.61c-0.023-0.081-0.082-0.166-0.108-0.261\r\n\t\t\t\tc-0.013-0.083-0.025-0.165-0.038-0.248c-0.062-0.179-0.316-0.446-0.267-0.699c0.032-0.1,0.064-0.199,0.095-0.299\r\n\t\t\t\tc0.053-0.085,0.131-0.155,0.165-0.26c0.15-0.028,0.305-0.087,0.369-0.197c0.047-0.082,0.048-0.15,0.127-0.197\r\n\t\t\t\tc0.074-0.044,0.216-0.039,0.28-0.076c0.064-0.08,0.127-0.161,0.191-0.242c0.07-0.011,0.14-0.021,0.21-0.032\r\n\t\t\t\tc0.025-0.021,0.051-0.042,0.076-0.063c0.002-0.004,0.004-0.009,0.006-0.013c-0.027-0.012-0.033-0.01-0.044-0.038\r\n\t\t\t\tc-0.025,0.019-0.067,0.035-0.095,0.051c-0.015-0.009-0.03-0.017-0.044-0.026c-0.019-0.013-0.023-0.028-0.032-0.051\r\n\t\t\t\tc0.025,0.019,0.035,0.04,0.07,0.051c0.054-0.032,0.047-0.06,0.089-0.083v-0.013c-0.03-0.031-0.081-0.057-0.14-0.057\r\n\t\t\t\tc-0.006-0.011-0.013-0.021-0.019-0.032c0.044,0.015,0.089,0.03,0.133,0.045c-0.006-0.011-0.013-0.021-0.019-0.032v-0.006\r\n\t\t\t\tc0.051,0.021,0.064,0.054,0.14,0.064c0.025-0.03,0.051-0.059,0.076-0.089c0.009-0.016,0.008-0.002,0.038,0\r\n\t\t\t\tc0.006-0.011,0.013-0.021,0.019-0.032c-0.001-0.047-0.012-0.063-0.038-0.083c-0.011-0.006-0.002-0.006-0.013,0\r\n\t\t\t\tc-0.028,0.017-0.029,0.052-0.044,0.081c0.002,0.005-0.004,0.01-0.001,0.014v-0.013c0-0.001,0-0.001,0.001-0.002\r\n\t\t\t\tc-0.01-0.027-0.001-0.054,0.005-0.087c-0.004-0.004-0.009-0.008-0.013-0.013c-0.06,0.01-0.113,0.02-0.191,0.019\r\n\t\t\t\tc0.008-0.038-0.02-0.071,0-0.108v-0.013c0.011,0.017-0.003,0.036,0.006,0.064c0.009,0.011,0.017,0.021,0.026,0.032\r\n\t\t\t\tc0.021-0.006,0.042-0.013,0.064-0.019c0-0.018-0.002-0.019-0.013-0.038c0.021,0.011,0.042,0.021,0.064,0.032\r\n\t\t\t\tc0.008-0.004,0.017-0.009,0.025-0.013c0.002-0.004,0.004-0.008,0.006-0.013c-0.011-0.015-0.021-0.029-0.032-0.044\r\n\t\t\t\tc0.034,0.019,0.057,0.04,0.089,0.025c0.004,0.015,0.008,0.03,0.013,0.045h0.019c-0.012-0.067-0.042-0.087-0.07-0.134h0.038\r\n\t\t\t\tc-0.004-0.026-0.004-0.02-0.017-0.036c0.004-0.008,0.008-0.015,0.011-0.023c-0.024-0.086-0.083-0.085-0.17-0.066\r\n\t\t\t\tc-0.004-0.07-0.06-0.101-0.121-0.114c-0.002-0.004-0.004-0.008-0.006-0.013c0.011-0.006,0.021-0.013,0.032-0.019\r\n\t\t\t\tc0.043,0.021,0.076,0.045,0.095,0.089c0.03,0.02,0.023,0.021,0.07,0.019c-0.002-0.021-0.004-0.042-0.006-0.064\r\n\t\t\t\tc-0.02-0.013-0.034-0.028-0.052-0.038H8.172c-0.021-0.017-0.042-0.034-0.064-0.051c0.018,0.026,0.045,0.037,0.069,0.051h0.02\r\n\t\t\t\tc-0.002-0.013-0.004-0.025-0.006-0.038c0.017,0.006,0.034,0.013,0.051,0.019h0.006c-0.002-0.043-0.004-0.052-0.038-0.064\r\n\t\t\t\tc0.009-0.004,0.017-0.009,0.026-0.013c-0.082-0.042-0.117-0.054-0.159-0.133c0.034,0.03,0.068,0.059,0.102,0.089\r\n\t\t\t\tc0.006,0.006,0.013,0.013,0.019,0.019c0.036-0.023,0.042-0.039,0.057-0.083c-0.034-0.047-0.238-0.13-0.311-0.159\r\n\t\t\t\tc-0.002-0.007,0.001-0.013,0-0.019c0.068-0.003,0.075,0.022,0.127,0.045c-0.002-0.013-0.004-0.025-0.006-0.038\r\n\t\t\t\tc0.042,0.042,0.099,0.078,0.153,0.108c-0.016-0.09-0.078-0.09-0.095-0.165h0.006c0.012,0.032,0.027,0.045,0.057,0.057\r\n\t\t\t\tc0.004,0.004,0.008,0.008,0.013,0.013h0.006c-0.015-0.036-0.03-0.072-0.044-0.108c-0.02-0.107,0.072-0.052-0.006-0.197\r\n\t\t\t\tc0.017,0.002,0.034,0.004,0.051,0.006c0.002-0.019,0.004-0.038,0.006-0.057c0.019,0.012,0.011,0.001,0.019,0.026h0.006\r\n\t\t\t\tc0.011-0.014,0.011-0.017,0.013-0.045c0.002,0.011,0.004,0.021,0.006,0.032c0.029-0.021,0.034-0.024,0.032-0.045\r\n\t\t\t\tc0.015-0.011,0.03-0.021,0.044-0.032c-0.006,0.017-0.013,0.034-0.019,0.051c0.013,0.006,0.025,0.013,0.038,0.019\r\n\t\t\t\tc-0.025,0.006-0.051,0.013-0.076,0.019c-0.011,0.017-0.021,0.034-0.032,0.051v0.006h0.051c-0.013,0.035-0.02,0.044-0.07,0.044\r\n\t\t\t\tc-0.004,0.006-0.009,0.013-0.013,0.019c0.016,0.017,0.027,0.021,0.057,0.025c0.002,0.004,0.004,0.008,0.006,0.013v0.026\r\n\t\t\t\tc-0.013-0.007-0.025-0.013-0.038-0.019c-0.004,0.002-0.009,0.004-0.013,0.006c-0.004,0.013-0.009,0.025-0.013,0.038v0.006\r\n\t\t\t\tc0.047-0.025,0.036-0.01,0.089,0.013c0.004,0.006,0.009,0.013,0.013,0.019c-0.03,0.011-0.059,0.021-0.089,0.032\r\n\t\t\t\tc-0.002,0.004-0.004,0.008-0.006,0.013c0.011,0.015,0.021,0.03,0.032,0.044c0.017,0.011,0.034,0.021,0.051,0.032\r\n\t\t\t\tc0.021-0.013,0.042-0.025,0.064-0.038c-0.001,0.055-0.005,0.033-0.025,0.07c0.015,0.008,0.03,0.017,0.044,0.025\r\n\t\t\t\tc-0.006,0.013-0.013,0.026-0.019,0.038v0.006H8.37c0.026-0.01,0.031-0.014,0.051,0c-0.039,0.071-0.09,0.135-0.114,0.229\r\n\t\t\t\tc0.004,0.013,0.008,0.025,0.013,0.038c0.008-0.002,0.017-0.004,0.025-0.006c0.017-0.038,0.034-0.076,0.051-0.114\r\n\t\t\t\tc0.02,0,0.017,0.006,0.032-0.006c0.023-0.055,0.047-0.11,0.07-0.165c0.033-0.056,0.086-0.075,0.102-0.14\r\n\t\t\t\tc-0.004-0.04-0.008-0.081-0.013-0.121c-0.078-0.033-0.136-0.206-0.152-0.292c0.024-0.023,0.034-0.046,0.064-0.064\r\n\t\t\t\tc0.002,0.002,0.004,0.004,0.006,0.006c-0.017,0.031-0.037,0.044-0.057,0.07c0.054,0.073,0.068,0.144,0.184,0.14\r\n\t\t\t\tc0.005,0.037-0.005,0.046-0.013,0.083v0.006c0.004,0.002,0.008,0.004,0.013,0.006c0.055-0.041,0.152-0.125,0.152-0.216\r\n\t\t\t\tc0.013,0.004,0.026,0.008,0.038,0.013c0.032-0.093,0.078-0.196,0.095-0.305c-0.053-0.007-0.063-0.019-0.089-0.051\r\n\t\t\t\tc-0.002-0.006-0.004-0.013-0.006-0.019c0.029-0.023,0.034-0.034,0.064-0.026c0.019-0.053,0.038-0.106,0.057-0.159\r\n\t\t\t\tc-0.015,0.047-0.03,0.093-0.045,0.14c0.19-0.133,0.413-0.223,0.744-0.222c0.008-0.043,0.017-0.085,0.025-0.127\r\n\t\t\t\tc0.002-0.002,0.036,0,0.064-0.013c0.003,0.022-0.008,0.053-0.006,0.095c0.004,0.002,0.008,0.004,0.013,0.007\r\n\t\t\t\tc0.058-0.002,0.108-0.049,0.121-0.089h0.006c0.013,0.016,0.014,0.037,0.013,0.07c0.072-0.017,0.144-0.034,0.216-0.051\r\n\t\t\t\tc0-0.035-0.012-0.048-0.019-0.067v0.016c-0.03,0.013-0.059,0.025-0.089,0.038c-0.017-0.006-0.034-0.013-0.051-0.019\r\n\t\t\t\tc-0.017-0.095-0.061-0.182-0.165-0.191c0.011-0.069,0.067-0.083,0.127-0.102c0.002-0.006,0.004-0.013,0.006-0.019\r\n\t\t\t\tc-0.052-0.015-0.053-0.008-0.083-0.057c0.045-0.073,0.096-0.241,0.184-0.267v-0.07c0.028-0.011,0.055-0.021,0.083-0.032\r\n\t\t\t\tc-0.002,0.011-0.004,0.021-0.006,0.032c0.013,0.006,0.025,0.013,0.038,0.019h0.006c0.028-0.036,0.033-0.028,0.025-0.076\r\n\t\t\t\tc0.011-0.009,0.021-0.017,0.032-0.025c-0.004,0.015-0.008,0.03-0.013,0.044c0.017,0.004,0.034,0.008,0.051,0.013\r\n\t\t\t\tc0.008-0.021,0.017-0.042,0.025-0.064c0.013,0.008,0.025,0.017,0.038,0.025c0.059-0.044,0.113-0.149,0.14-0.222h0.006\r\n\t\t\t\tc0.004,0.002,0.008,0.004,0.013,0.006c-0.008,0.021-0.017,0.042-0.025,0.064c0.002,0.004,0.004,0.008,0.006,0.013\r\n\t\t\t\tc0.027,0.008,0.055,0.017,0.083,0.025c-0.004-0.019-0.008-0.038-0.013-0.057c0.046,0.008,0.075-0.021,0.121-0.032\r\n\t\t\t\tc0.006,0.019,0.013,0.038,0.019,0.057c0.038-0.028,0.057-0.071,0.095-0.095c0.015,0.011,0.03,0.021,0.044,0.032\r\n\t\t\t\tc0.018-0.015,0.017-0.011,0.019-0.045c0.069,0.012,0.096-0.012,0.153-0.038c0.011-0.019,0.01-0.016,0.013-0.032h-0.051\r\n\t\t\t\tc0.011-0.015,0.021-0.03,0.032-0.045c-0.011-0.023-0.021-0.047-0.032-0.07c0.011,0.008,0.021,0.017,0.032,0.025\r\n\t\t\t\tc0.041-0.039,0.135-0.02,0.178,0.013c0.034-0.019,0.068-0.038,0.102-0.057c-0.006-0.013-0.013-0.026-0.019-0.038\r\n\t\t\t\tc0.023,0.013,0.047,0.025,0.07,0.038c0.139-0.017,0.194-0.143,0.343-0.146c0.013-0.023,0.025-0.047,0.038-0.07\r\n\t\t\t\tc-0.006-0.019-0.013-0.038-0.019-0.057c0.024,0.019,0.04,0.035,0.044,0.076c0.019-0.011,0.038-0.021,0.057-0.032h0.006\r\n\t\t\t\tc-0.025,0.065-0.104,0.124-0.172,0.146c-0.008,0.017-0.011,0.022-0.013,0.051c0.108-0.056,0.302-0.039,0.432-0.025\r\n\t\t\t\tc0.004,0.006,0.008,0.013,0.013,0.019c-0.092-0.002-0.148,0.034-0.229,0.051v0.044c-0.023-0.018-0.019-0.021-0.044-0.025\r\n\t\t\t\tc0.002-0.023,0.004-0.047,0.006-0.07c-0.083-0.003-0.358,0.164-0.413,0.222h-0.013c0.011,0.006,0.021,0.013,0.032,0.019v0.006\r\n\t\t\t\tc-0.027,0.003-0.018,0.002-0.038-0.013c-0.04,0.023-0.08,0.047-0.121,0.07c-0.002,0.004-0.004,0.008-0.006,0.013\r\n\t\t\t\tc0.006,0.004,0.013,0.008,0.019,0.013c0.03-0.019,0.059-0.038,0.089-0.057c-0.014,0.038-0.023,0.015-0.044,0.038\r\n\t\t\t\tc-0.076,0.082-0.026,0.172-0.006,0.26c0.015-0.005,0.009-0.003,0.025-0.019c0.019,0.032,0.038,0.064,0.057,0.095\r\n\t\t\t\tc0.048-0.01,0.046-0.012,0.076,0.019c0.009-0.023,0.017-0.047,0.026-0.07c0.035-0.016,0.053-0.017,0.108-0.013v-0.045\r\n\t\t\t\tc0.006,0.004,0.013,0.009,0.019,0.013c0.062-0.036,0.089-0.171,0.203-0.172c0.014-0.051-0.01-0.053-0.013-0.108h0.038\r\n\t\t\t\tc0.006,0.011,0.013,0.021,0.019,0.032h0.006c0.023-0.015,0.034-0.023,0.045-0.051c0.004-0.002,0.008-0.004,0.013-0.006\r\n\t\t\t\tc-0.002,0.015-0.004,0.03-0.006,0.045c0.036,0.004,0.072,0.008,0.108,0.013c0.016-0.034,0.031-0.025,0.038-0.07\r\n\t\t\t\tc0.011,0.006,0.021,0.013,0.032,0.019c0.004-0.015,0.008-0.03,0.013-0.044c0.006-0.002,0.013-0.004,0.019-0.006\r\n\t\t\t\tc0.032,0.009,0.026,0.014,0.045,0.032c0.124-0.045,0.262-0.143,0.407-0.146c-0.002-0.009-0.004-0.017-0.006-0.025\r\n\t\t\t\tc0.032,0.002,0.064,0.004,0.095,0.006c-0.004-0.006-0.008-0.013-0.013-0.019c0.006-0.004,0.013-0.009,0.019-0.013\r\n\t\t\t\tc0.024-0.013,0.02-0.005,0.044,0.013c0.021-0.009,0.042-0.017,0.063-0.025c-0.027-0.034-0.068-0.036-0.133-0.032\r\n\t\t\t\tc-0.004-0.006-0.008-0.013-0.013-0.019c0.013-0.007,0.025-0.013,0.038-0.019c0.006-0.008,0.013-0.017,0.019-0.025\r\n\t\t\t\tc-0.021-0.021-0.042-0.042-0.063-0.064c-0.075-0.027-0.112,0.044-0.133-0.064c-0.066,0.01-0.086,0.052-0.133,0.07\r\n\t\t\t\tc-0.032,0.012-0.073,0.004-0.095,0.013c0.006-0.013,0.013-0.025,0.019-0.038h-0.013c-0.002-0.004-0.004-0.008-0.006-0.013\r\n\t\t\t\tc-0.067-0.031-0.119,0.027-0.165,0.006c-0.019-0.013-0.038-0.025-0.057-0.038c-0.028,0.002-0.055,0.004-0.083,0.006\r\n\t\t\t\tc-0.028-0.013-0.04-0.048-0.083-0.057h-0.013v-0.006c0.025-0.009,0.051-0.017,0.076-0.025c0.004-0.002,0.009-0.004,0.013-0.006\r\n\t\t\t\tc-0.103-0.049-0.301-0.028-0.267-0.191c-0.021-0.028-0.018-0.025-0.044-0.019c-0.013-0.053-0.009-0.079,0.013-0.121\r\n\t\t\t\tc-0.03-0.032-0.094-0.029-0.159-0.025c0.088-0.089,0.103-0.048,0.133-0.178c0.021-0.021,0.042-0.042,0.064-0.064\r\n\t\t\t\tc-0.015-0.011-0.03-0.021-0.044-0.032c-0.019,0.008-0.038,0.017-0.057,0.025v-0.032c-0.055,0.025-0.11,0.051-0.165,0.076\r\n\t\t\t\tc-0.065-0.089-0.112-0.14-0.254-0.152v-0.007c0.049-0.015,0.115-0.056,0.191-0.038c0.034,0.015,0.068,0.03,0.102,0.045\r\n\t\t\t\tc0.079-0.006,0.346-0.155,0.375-0.216c-0.094-0.249-0.411-0.255-0.674-0.152c-0.282,0.11-0.595,0.189-0.82,0.356\r\n\t\t\t\tc-0.184,0.136-0.321,0.345-0.502,0.489c0.154-0.325,0.477-0.718,0.775-0.896c0.079-0.047,0.223-0.03,0.299-0.083\r\n\t\t\t\tc0.108-0.076,0.07-0.268,0.267-0.337c0.117-0.041,0.317-0.025,0.439-0.006c0.178,0.027,0.354-0.025,0.515-0.006\r\n\t\t\t\tc0.163,0.008,0.326,0.017,0.489,0.025c0.219-0.035,0.465-0.038,0.61-0.146c0.083-0.091,0.165-0.182,0.248-0.273\r\n\t\t\t\tc0.155-0.015,0.309-0.03,0.464-0.044c0.1-0.032,0.288-0.2,0.375-0.267v-0.013c-0.042-0.055-0.085-0.11-0.127-0.165\r\n\t\t\t\tc0.034-0.061,0.064-0.142,0.095-0.21c-0.007-0.1-0.158-0.181-0.248-0.197c-0.041-0.008-0.112,0.043-0.153,0.064\r\n\t\t\t\tc-0.013-0.019-0.025-0.038-0.038-0.057c0.008-0.044,0.031-0.064,0.051-0.095c-0.257-0.247-0.418,0.027-0.61,0.133\r\n\t\t\t\tc-0.089,0.05-0.218,0.06-0.305,0.095c0.012-0.069,0.034-0.173,0.083-0.21c0.053-0.004,0.106-0.008,0.159-0.013\r\n\t\t\t\tc0.109-0.031,0.157-0.136,0.28-0.165c0.122-0.029,0.24-0.033,0.292-0.127c-0.11-0.028-0.22-0.055-0.33-0.083\r\n\t\t\t\tc-0.106-0.044-0.191-0.133-0.324-0.153c-0.101-0.015-0.161,0.043-0.261,0.038c0.021-0.051,0.042-0.102,0.064-0.152\r\n\t\t\t\tc-0.007-0.092-0.237-0.273-0.311-0.299H12.48c-0.062-0.024-0.129-0.187-0.165-0.241c0.004-0.002,0.008-0.004,0.013-0.006\r\n\t\t\t\tc0.055-0.031,0.185,0.022,0.261,0c0.012-0.024,0.014-0.061,0.013-0.102c-0.084-0.062-0.178-0.095-0.242-0.178\r\n\t\t\t\tc0.027-0.025,0.057-0.044,0.102-0.051c-0.036-0.207-0.226-0.07-0.261-0.356c-0.028,0.002-0.055,0.004-0.083,0.006\r\n\t\t\t\tc-0.009-0.07,0.017-0.079,0.032-0.134c-0.122-0.141-0.365-0.561-0.508-0.629c-0.004-0.004-0.008-0.008-0.013-0.013\r\n\t\t\t\tc-0.021,0.042-0.042,0.085-0.064,0.127c-0.144,0.096-0.271,0.026-0.114,0.235c-0.096,0.122-0.182,0.158-0.184,0.388h-0.006\r\n\t\t\t\tc-0.051-0.051-0.057-0.152-0.153-0.159c-0.034,0.059-0.068,0.119-0.102,0.178c-0.077,0.058-0.266,0.055-0.349,0.095\r\n\t\t\t\tc-0.013-0.019-0.026-0.038-0.038-0.057c0.014-0.022,0.019-0.03,0.019-0.07c-0.149-0.221-0.275-0.116-0.483-0.044h-0.006\r\n\t\t\t\tc-0.044-0.056-0.038-0.084-0.026-0.178c0.036,0.002,0.072,0.004,0.108,0.006c0.112-0.165-0.211-0.619,0.013-0.724\r\n\t\t\t\tc0.011-0.023,0.014-0.056,0.013-0.095c-0.011-0.017-0.021-0.034-0.032-0.051c-0.039-0.011-0.088,0.06-0.178,0.038\r\n\t\t\t\tc-0.162-0.039-0.31-0.129-0.458-0.159c-0.052-0.065-0.056-0.061-0.013-0.14c-0.022-0.016-0.052-0.042-0.077-0.062\r\n\t\t\t\tc0.109-0.188,0.225-0.372,0.338-0.557c0.01,0.006,0.021,0.007,0.031,0.015c0.006,0.003,0.064-0.003,0.102,0.013\r\n\t\t\t\tc0.028,0.017,0.055,0.034,0.083,0.051c0.049,0.006,0.097,0.013,0.146,0.019c0.04,0.047,0.081,0.093,0.121,0.14\r\n\t\t\t\tc0.094,0.057,0.203,0.032,0.331,0.064c0.203,0.072,0.407,0.144,0.61,0.216c-0.067-0.217-0.212-0.375-0.381-0.489\r\n\t\t\t\tc-0.155-0.104-0.443-0.179-0.47-0.4c0.186,0,0.218,0.082,0.343,0.127c-0.009-0.049-0.017-0.097-0.026-0.146\r\n\t\t\t\tc0.188,0.145,0.277,0.375,0.604,0.349c0.069,0.109,0.145,0.196,0.273,0.248c-0.038-0.078-0.076-0.157-0.114-0.235\r\n\t\t\t\tc0.04,0.008,0.08,0.017,0.121,0.025h0.006c-0.006-0.184-0.176-0.25-0.153-0.432c0.084,0.057,0.177,0.169,0.216,0.267\r\n\t\t\t\tc0.008,0.006,0.017,0.013,0.025,0.019c0.037-0.334-0.178-0.289-0.292-0.477c0.006-0.013,0.013-0.026,0.019-0.038\r\n\t\t\t\tc0.025-0.006,0.051-0.013,0.076-0.019h0.013c-0.061-0.03-0.123-0.059-0.184-0.089c-0.069-0.041-0.11-0.13-0.191-0.153\r\n\t\t\t\tc-0.019,0.015-0.038,0.03-0.057,0.044c-0.008,0.008-0.017,0.017-0.025,0.026c-0.071-0.122-0.147-0.253-0.21-0.388\r\n\t\t\t\tc-0.053-0.009-0.106-0.017-0.159-0.025c-0.006-0.014-0.012-0.027-0.019-0.04c0.024-0.035,0.051-0.067,0.076-0.101\r\n\t\t\t\tc0.001,0.003,0.005,0.005,0.006,0.008c0.04-0.004,0.081-0.009,0.121-0.013c0.006-0.009,0.013-0.017,0.019-0.026\r\n\t\t\t\tc-0.022-0.025-0.045-0.05-0.067-0.075c0.044-0.062,0.092-0.121,0.137-0.183c0.134,0.06,0.208,0.164,0.343,0.226\r\n\t\t\t\tc0.072,0.033,0.155,0.015,0.21,0.051c-0.013,0.036-0.025,0.072-0.038,0.108c0.005,0.082,0.057,0.11,0.089,0.165\r\n\t\t\t\tc0.042-0.019,0.085-0.038,0.127-0.057c0.033,0.038,0.022,0.078,0.051,0.127c0.022,0.036,0.201,0.12,0.248,0.102h0.013\r\n\t\t\t\tc-0.015-0.064-0.03-0.127-0.045-0.191c0.011-0.076,0.021-0.153,0.032-0.229c0.004-0.002,0.008-0.004,0.013-0.006\r\n\t\t\t\tc0.036,0.05,0.089,0.124,0.159,0.14c0.035-0.09,0.113-0.136,0.222-0.152c-0.011-0.088-0.097-0.155-0.165-0.184\r\n\t\t\t\tc-0.002-0.004-0.004-0.009-0.006-0.013c0.15-0.095,0.182,0.061,0.324,0c0.025-0.019,0.058-0.097,0.089-0.127\r\n\t\t\t\tc0.002-0.006,0.004-0.013,0.006-0.019c-0.087-0.061-0.174-0.123-0.261-0.184c-0.092,0.084-0.164,0.079-0.299,0.051\r\n\t\t\t\tc0.013-0.043,0.025-0.085,0.038-0.127c-0.147-0.013-0.29,0.025-0.47,0.026v-0.095c0.061-0.015,0.123-0.03,0.184-0.044h0.013\r\n\t\t\t\tc-0.051-0.098-0.165-0.231-0.267-0.273c-0.037-0.015-0.062-0.003-0.087,0.008c0.618-0.794,1.268-1.56,1.972-2.276\r\n\t\t\t\tc0.027,0.005,0.054,0.009,0.08,0.014c0.042,0.011,0.084,0.021,0.127,0.032c0.022-0.003,0.044-0.006,0.065-0.009\r\n\t\t\t\tc0.003,0,0.005,0,0.008,0c0.003,0.007,0.006,0.014,0.01,0.022c0.02,0.004,0.051,0.001,0.079-0.002\r\n\t\t\t\tc0.003,0.003,0.005,0.006,0.008,0.008c-0.045,0.019-0.061,0.016-0.102,0.01c-0.025,0.007-0.079,0.031-0.085,0.046\r\n\t\t\t\tc-0.01,0.04,0.124,0.116,0.183,0.098c0.044-0.017,0.087-0.034,0.131-0.051c0.058-0.019,0.1-0.003,0.157-0.022\r\n\t\t\t\tc0.096-0.031,0.196-0.098,0.229-0.154c0.053-0.088-0.124-0.137-0.191-0.155c-0.063-0.017-0.099-0.061-0.143-0.099\r\n\t\t\t\tc-0.051-0.044-0.123-0.071-0.209-0.083c0.015-0.015,0.032-0.028,0.047-0.043c0.017,0.003,0.035,0.009,0.05,0.01\r\n\t\t\t\tc0.011-0.005,0.009-0.006,0.015-0.011c0.018-0.001,0.036-0.001,0.055-0.002c0.098,0.013,0.166,0.087,0.242,0.125\r\n\t\t\t\tc0.058,0.029,0.126,0.035,0.206,0.042c0.022,0.002,0.033,0.013,0.057,0.012c0.021-0.022,0.037-0.048,0.097-0.049\r\n\t\t\t\tc0.002,0.002,0.005,0.004,0.007,0.005c0.001,0.001,0.003,0.003,0.004,0.004c-0.009,0.006-0.019,0.012-0.028,0.019\r\n\t\t\t\tc0.003,0.004,0.006,0.009,0.01,0.013c0.082-0.002,0.101-0.036,0.149-0.053c0.04-0.014,0.063,0.003,0.095-0.008\r\n\t\t\t\tc-0.012,0.025-0.046,0.04-0.061,0.063c-0.015,0.023-0.012,0.045-0.025,0.07c-0.007,0.014-0.031,0.02-0.038,0.036\r\n\t\t\t\tc0.01,0.019,0.049,0.027,0.043,0.05c-0.003,0.006-0.051,0.024-0.06,0.026c0,0.019-0.02,0.038-0.005,0.057\r\n\t\t\t\tc0.01,0.008,0.024,0.008,0.042,0.007c0.003,0.002,0.006,0.003,0.009,0.005c-0.017,0.009-0.038,0.017-0.052,0.026\r\n\t\t\t\tc-0.001,0.018,0.024,0.052,0.013,0.071c-0.012,0.019-0.048,0.03-0.06,0.051c0,0.001,0,0.001,0,0.002\r\n\t\t\t\tc0.084-0.011,0.07-0.036,0.138-0.055c0.04,0.003,0.027,0.022,0.052,0.038c0.012,0.003,0.025,0.006,0.037,0.01\r\n\t\t\t\tc0.001,0.001,0.002,0.002,0.004,0.003c0,0.002,0,0.005,0,0.007c-0.016,0.04-0.137,0.028-0.188,0.046\r\n\t\t\t\tc-0.007,0.004-0.065,0.071-0.067,0.078c0.003,0.008,0.005,0.016,0.008,0.024c-0.011,0.012-0.022,0.025-0.032,0.038\r\n\t\t\t\tc-0.019,0.031-0.038,0.062-0.057,0.092c0.074-0.015,0.084-0.049,0.159-0.064c0.061,0.021,0.023,0.086-0.02,0.107\r\n\t\t\t\tc-0.029,0.014-0.071,0.006-0.102,0.011c-0.063,0.01-0.105,0.042-0.185,0.049c-0.054,0.004-0.117-0.01-0.169,0.006\r\n\t\t\t\tc-0.118,0.035-0.158,0.131-0.289,0.172c0.034,0.002,0.095,0.005,0.125,0.003c0.039-0.009,0.078-0.018,0.118-0.027\r\n\t\t\t\tc0.023,0.004,0.047,0.008,0.07,0.012c0.05,0.008,0.104,0.007,0.161,0.008c0.03-0.031,0.065-0.027,0.119-0.048\r\n\t\t\t\tc0.001-0.002,0.002-0.004,0.003-0.006c0-0.015-0.011-0.025-0.03-0.026c0,0,0-0.001-0.001-0.002\r\n\t\t\t\tc0.021-0.031,0.098-0.036,0.127-0.016c0.007,0.042-0.069,0.055-0.07,0.092c-0.002,0.059,0.172,0.07,0.202,0.108\r\n\t\t\t\tc-0.014,0.005-0.016,0.007-0.013,0.017c-0.062-0.014-0.133-0.027-0.211-0.024c-0.053,0.005-0.106,0.01-0.159,0.015\r\n\t\t\t\tc-0.058,0-0.109-0.014-0.16-0.022c-0.067-0.011-0.133-0.021-0.2-0.032c-0.003,0.001-0.007,0.001-0.01,0.002\r\n\t\t\t\tc-0.003,0.006-0.007,0.012-0.01,0.018c0,0.026,0.154,0.053,0.194,0.053c0.012,0.005,0.034,0.016,0.012,0.028\r\n\t\t\t\tc-0.041,0.017-0.145-0.037-0.22-0.018c-0.111,0.028-0.099,0.092-0.137,0.146c-0.027,0.036-0.054,0.071-0.081,0.107\r\n\t\t\t\tc-0.003,0.008,0.004,0.014,0.009,0.02c0.107,0.021,0.169-0.081,0.21-0.108c0.029-0.009,0.058-0.018,0.086-0.026\r\n\t\t\t\tc0.066-0.032,0.111-0.067,0.214-0.086c-0.003,0.016-0.019,0.023-0.018,0.04c0.034,0.031,0.073,0.012,0.142,0.008\r\n\t\t\t\tc0.019,0,0.038-0.001,0.058-0.001c0.029-0.02,0.092-0.051,0.055-0.082c0,0,0-0.001-0.001-0.002\r\n\t\t\t\tc0.073-0.008,0.116-0.013,0.164,0.002c0.001,0.002,0.001,0.004,0.002,0.006c-0.029,0.03-0.094,0.055-0.093,0.094\r\n\t\t\t\tc0.024,0.013,0.055,0.015,0.064,0.043c-0.107,0.003-0.221,0.01-0.318,0.003c-0.048-0.004-0.097-0.025-0.149-0.02\r\n\t\t\t\tc-0.05,0.005-0.095,0.041-0.126,0.057c-0.053,0.028-0.107,0.056-0.16,0.084c-0.031,0.011-0.061,0.023-0.092,0.034\r\n\t\t\t\tc-0.026,0.023-0.052,0.046-0.077,0.07c0.097,0.037,0.343-0.041,0.494-0.055c0.031-0.005,0.062-0.01,0.093-0.014\r\n\t\t\t\tc0.025,0.006,0.05,0.012,0.074,0.017c0.027-0.002,0.053-0.004,0.08-0.005c0.071,0.006,0.103,0.061,0.143,0.099\r\n\t\t\t\tc-0.048-0.007-0.096-0.013-0.143-0.019c-0.175-0.014-0.382-0.023-0.599,0.048c-0.044,0.013-0.088,0.026-0.132,0.039\r\n\t\t\t\tc0.033,0.026,0.093,0.01,0.126,0.031c0.015,0.022,0.03,0.043,0.045,0.065c0.009,0.006,0.187,0.026,0.212,0.028\r\n\t\t\t\tc0.027-0.007,0.031-0.019,0.051-0.03c0.071-0.01,0.102,0.049,0.058,0.079c-0.07,0.047-0.247,0.037-0.329,0.081\r\n\t\t\t\tc-0.002,0-0.003,0.001-0.005,0.001c0.03,0.018,0.163,0.033,0.21,0.036c-0.003,0.003-0.155,0.049-0.161,0.049\r\n\t\t\t\tc-0.041,0.003-0.061-0.021-0.109,0.004c-0.042,0.022-0.094,0.081-0.039,0.115c0.01,0.006,0.061,0.009,0.061,0.018\r\n\t\t\t\tc0.001,0.014-0.046,0.027-0.052,0.042c-0.006,0.028,0.035,0.04,0.072,0.026c0.049-0.018,0.116-0.057,0.149-0.083\r\n\t\t\t\tc0.068-0.052,0.139-0.105,0.219-0.153c0.026-0.012,0.052-0.023,0.078-0.035c0.04-0.037,0.08-0.074,0.119-0.111\r\n\t\t\t\tc0.043-0.03,0.109-0.051,0.168-0.075c0.037-0.015,0.07-0.028,0.113-0.042c0.041-0.009,0.082-0.018,0.123-0.027\r\n\t\t\t\tc0.021-0.007,0.051-0.021,0.08-0.02c0.023,0.007,0.047,0.013,0.07,0.02c-0.022,0.019-0.042,0.053-0.07,0.067\r\n\t\t\t\tc-0.075,0.036-0.22,0.019-0.315,0.037c-0.025,0.043-0.11,0.069-0.158,0.098c-0.009,0.008-0.002,0.019-0.007,0.028\r\n\t\t\t\tc-0.013,0.026-0.056,0.051-0.112,0.061c0.003,0.009,0.006,0.018,0.009,0.026c-0.158,0.057-0.262,0.142-0.375,0.215\r\n\t\t\t\tc-0.03,0.019-0.109,0.042-0.12,0.068c-0.012,0.015,0.009,0.03,0.021,0.039c0.065,0.049,0.103,0.014,0.195-0.009\r\n\t\t\t\tc-0.019,0.04-0.065,0.091-0.144,0.109c-0.001,0.005-0.002,0.009-0.003,0.014c0.052,0.027,0.141,0.031,0.175-0.022\r\n\t\t\t\tc0.113-0.018,0.086,0.118,0.06,0.151c0.003,0.005,0.006,0.006,0.012,0.013c0.055-0.019,0.148-0.049,0.186-0.075\r\n\t\t\t\tc0.004-0.001,0.008-0.002,0.012-0.002c0.002,0.001,0.004,0.001,0.006,0.002c0.001,0.002,0.001,0.004,0.002,0.006\r\n\t\t\t\tc-0.05,0.055-0.176,0.082-0.215,0.141c0.012,0.026,0.047,0.037,0.078,0.043c0.037-0.003,0.063-0.022,0.086-0.035\r\n\t\t\t\tc0.013,0.011,0.023,0.019,0.028,0.038l-0.049,0.069c-0.008,0.002-0.017,0.003-0.025,0.005c0.026,0.048,0.092,0.004,0.15,0.016\r\n\t\t\t\tc0.032,0.007,0.037,0.052,0.057,0.069c-0.179,0.032-0.096,0.172-0.138,0.254c-0.009,0.019-0.043,0.094-0.017,0.116\r\n\t\t\t\tc0.006,0.006,0.01,0.008,0.021,0.009c0.036,0,0.069-0.044,0.086-0.058c0.047-0.038,0.105-0.089,0.124-0.137\r\n\t\t\t\tc-0.001-0.015-0.003-0.029-0.004-0.044c0.001-0.019,0.025-0.055,0.047-0.067c0.006-0.002,0.011-0.003,0.017-0.005\r\n\t\t\t\tc0.034,0.014,0.057,0.047,0.075,0.077c0.002,0,0.004,0,0.006,0.001c0.011-0.016,0.023-0.032,0.034-0.048\r\n\t\t\t\tc-0.003-0.046-0.006-0.093-0.009-0.14c0.001-0.041,0.018-0.075,0.027-0.11c0.002-0.001,0.003-0.002,0.004-0.003\r\n\t\t\t\tc0.023,0.013,0.046,0.027,0.069,0.04c0.012,0.015-0.004,0.03-0.005,0.042c-0.002,0.033,0.023,0.085,0.059,0.092\r\n\t\t\t\tc0.037,0.007,0.092-0.018,0.131-0.027c0.005,0.037,0.052,0.138,0.083,0.157c0.029,0.009,0.057,0.019,0.086,0.029\r\n\t\t\t\tc0.033,0.016,0.053,0.039,0.077,0.065c0.001,0.003,0.002,0.005,0.003,0.008c-0.08,0.005-0.209-0.043-0.25-0.08\r\n\t\t\t\tc-0.027-0.024-0.028-0.082-0.07-0.091c-0.061-0.014-0.142,0.044-0.163,0.066c-0.002,0-0.003,0.001-0.005,0.001\r\n\t\t\t\tc0.02,0.01,0.078,0.031,0.064,0.059c-0.007,0.019-0.053,0.031-0.075,0.044c-0.062,0.036-0.11,0.071-0.19,0.104\r\n\t\t\t\tc-0.027,0.011-0.089,0.021-0.104,0.038c0.022,0.035,0.111,0.043,0.185,0.018c0.087-0.037,0.175-0.073,0.262-0.11\r\n\t\t\t\tc0.013-0.012,0.026-0.024,0.038-0.036c0.017,0.036,0.059,0.046,0.081,0.071c-0.024,0.009-0.063,0.011-0.098,0.022\r\n\t\t\t\tc-0.09,0.027-0.188,0.048-0.269,0.081c-0.035,0.015-0.092,0.041-0.134,0.034c0.005,0.043,0.049,0.052,0.057,0.092\r\n\t\t\t\tc0.009-0.001,0.019-0.001,0.028-0.002c0,0.002,0.001,0.003,0.001,0.005c-0.015,0.021-0.059,0.025-0.1,0.034\r\n\t\t\t\tc-0.001,0.003-0.002,0.006-0.002,0.009c0.071,0.035,0.051,0.061,0.071,0.126c0.078,0.018,0.126-0.035,0.181-0.058\r\n\t\t\t\tc0.036-0.015,0.083-0.023,0.132-0.032c-0.069,0.057-0.138,0.115-0.207,0.173c0.001,0.002,0.002,0.005,0.003,0.008\r\n\t\t\t\tc0.058,0.008,0.109-0.033,0.173-0.036c0.069-0.004,0.128,0.034,0.115,0.093c-0.012,0.053-0.138,0.066-0.08,0.133\r\n\t\t\t\tc0.048,0.01,0.079-0.016,0.127-0.014c0.002,0,0.003-0.001,0.005-0.001c-0.008,0.023-0.056,0.064-0.035,0.086\r\n\t\t\t\tc0,0.001,0.001,0.002,0.001,0.003c0.108-0.031,0.124-0.099,0.202-0.141c0.009,0.002,0.017,0.004,0.026,0.007\r\n\t\t\t\tc0.001,0.027-0.032,0.057-0.047,0.081c-0.042,0.065-0.084,0.13-0.126,0.195c-0.029,0.051,0.007,0.108,0.077,0.123\r\n\t\t\t\tc0.05,0,0.1,0,0.15,0c0.05,0.005,0.1,0.01,0.15,0.014c0.012,0.017,0.027,0.044,0.031,0.062c-0.019,0.015-0.049,0.031-0.085,0.039\r\n\t\t\t\tc0.002,0.01,0.001,0.012-0.009,0.02c0.009,0.017,0.026,0.022,0.046,0.028c0.037-0.01,0.093-0.026,0.121-0.041\r\n\t\t\t\tc0.002,0.004,0.004,0.008,0.007,0.012c-0.008,0.012-0.025,0.015-0.043,0.023c-0.061,0.029-0.098,0.044-0.103,0.095\r\n\t\t\t\tc0.112-0.018,0.147-0.073,0.235-0.096c0.023,0.072-0.093,0.095-0.116,0.152c0.011,0.023,0.039,0.022,0.053,0.041\r\n\t\t\t\tc-0.039,0.015-0.064,0.034-0.097,0.049c0.041,0.037,0.102,0.063,0.19,0.023c0.008-0.005,0.016-0.011,0.024-0.016\r\n\t\t\t\tc0.023-0.009,0.031,0.008,0.05,0c0.045-0.018,0.029-0.058,0.122-0.037c0,0.002,0.001,0.003,0.002,0.005\r\n\t\t\t\tc-0.013,0.033-0.073,0.046-0.136,0.061c0.058,0.029,0.233,0.015,0.271,0.055c0.036,0.037-0.063,0.081-0.014,0.117\r\n\t\t\t\tc0.006,0.002,0.012,0.001,0.023-0.001c0.028-0.024,0.047-0.046,0.101-0.061c0.008,0.002,0.015,0.004,0.023,0.006\r\n\t\t\t\tc0.006,0.033,0.035,0.061,0.034,0.088c-0.001,0.032-0.072,0.06-0.133,0.07c0.072,0.019,0.181,0.032,0.277,0\r\n\t\t\t\tc-0.001-0.01-0.006-0.026,0.007-0.035c0.001,0,0.002,0,0.003,0c0.025-0.008,0.049-0.015,0.074-0.023\r\n\t\t\t\tc0.018-0.009,0.018-0.024,0.048-0.029c0.001,0,0.002,0,0.003,0s0.002,0,0.002,0c0.001,0,0.002,0,0.003-0.001\r\n\t\t\t\tc0.001,0,0.002,0,0.003,0c0.032-0.001,0.061,0.018,0.104,0.004c0.031-0.018,0.062-0.035,0.094-0.053\r\n\t\t\t\tc0.044-0.016,0.092,0.019,0.092-0.034c0.064,0.001,0.128-0.025,0.114-0.063c-0.096-0.034-0.03-0.068,0.043-0.095\r\n\t\t\t\tc0.035,0.012,0.033,0.039,0.06,0.062c0.009,0.008,0.023,0.008,0.03,0.019c-0.036,0.036-0.115,0.1-0.125,0.14\r\n\t\t\t\tc0.023-0.018,0.04-0.047,0.076-0.059c0.023-0.008,0.049-0.002,0.073-0.012c0.024-0.019,0.048-0.037,0.072-0.055\r\n\t\t\t\tc0.008,0.022,0.018,0.041,0.034,0.055c0.013,0.012,0.052,0.019,0.053,0.04c0.001,0.034-0.057,0.046-0.088,0.07\r\n\t\t\t\tc-0.018,0.014-0.016,0.041-0.034,0.057c-0.035,0.025-0.07,0.05-0.105,0.075c0,0,0,0.001,0.001,0.002\r\n\t\t\t\tc0.032-0.001,0.055-0.016,0.087-0.017c0.02,0.011,0.033,0.028,0.047,0.046c0.002,0.001,0.004,0.002,0.006,0.002\r\n\t\t\t\tc0.075-0.019,0.046-0.092,0.085-0.126c0.041-0.013,0.102-0.007,0.101,0.026c-0.001,0.043-0.072,0.076-0.03,0.132\r\n\t\t\t\tc0.056,0.007,0.091-0.071,0.108-0.096c0.011-0.016,0.04-0.031,0.063-0.042c-0.021,0.042-0.041,0.083-0.062,0.125\r\n\t\t\t\tc0.006-0.001,0.012-0.002,0.017-0.003c0.053,0.045-0.139,0.11-0.08,0.183c0.052,0.007,0.11-0.041,0.178-0.037\r\n\t\t\t\tc0.043,0.002,0.057,0.042,0.094,0.052c0.006-0.001,0.012-0.002,0.017-0.003c0.057-0.029,0.042-0.124,0.109-0.141\r\n\t\t\t\tc0.08-0.02,0.159,0.014,0.22,0.018c0.039-0.001,0.078-0.003,0.117-0.004c0.03,0.001,0.076,0.02,0.11-0.001\r\n\t\t\t\tc0.013-0.009,0.015-0.023,0.02-0.035c0.036-0.085-0.093-0.067-0.067-0.122c-0.041,0.011-0.059,0.029-0.089,0.042\r\n\t\t\t\tc-0.065,0.028-0.129-0.005-0.144-0.044c0.136-0.026,0.396-0.115,0.395-0.18c-0.021,0.001-0.042,0.001-0.063,0.002\r\n\t\t\t\tc-0.034,0.009-0.058,0.035-0.104,0.036c-0.051,0.002-0.124-0.029-0.138-0.067c0.064-0.012,0.128-0.025,0.185-0.032\r\n\t\t\t\tc-0.019-0.013-0.058-0.022-0.087-0.023c-0.003-0.002-0.006-0.003-0.01-0.005c0.031-0.01,0.075-0.019,0.101-0.029\r\n\t\t\t\tc0.034-0.059-0.048-0.07,0.054-0.117c0-0.003,0-0.005,0-0.008c-0.048-0.03-0.174,0.004-0.201-0.043\r\n\t\t\t\tc-0.008-0.014,0.003-0.029,0.009-0.038c0.034-0.053,0.14-0.038,0.185-0.014c0.017-0.003,0.026-0.005,0.033-0.011\r\n\t\t\t\tc0.019-0.014,0.036-0.1,0.012-0.124c0.044-0.024,0.037-0.052,0.056-0.086c0.01-0.01,0.02-0.02,0.03-0.031\r\n\t\t\t\tc-0.041,0.006-0.092,0.025-0.124,0.016l-0.008-0.015c0.097-0.014,0.14-0.081,0.167-0.127c-0.03-0.052-0.1-0.085-0.104-0.156\r\n\t\t\t\tc-0.112-0.018-0.212-0.043-0.286-0.1c0.086-0.011,0.213,0.059,0.274,0.031c0.002-0.001,0.005-0.002,0.007-0.003\r\n\t\t\t\tc-0.001-0.003-0.002-0.005-0.003-0.008c-0.042-0.016-0.114-0.015-0.143-0.042c-0.025-0.024-0.027-0.071-0.049-0.092\r\n\t\t\t\tc0.047-0.029,0.093-0.059,0.14-0.088c0.046-0.019,0.099-0.029,0.134-0.05c-0.008-0.009-0.016-0.018-0.025-0.027\r\n\t\t\t\tc-0.005-0.014-0.011-0.028-0.016-0.042c-0.03-0.035-0.107-0.073-0.064-0.124c0-0.001-0.001-0.002-0.001-0.003\r\n\t\t\t\tc0.036,0.017,0.147,0.055,0.204,0.044c-0.001-0.003-0.002-0.005-0.003-0.008c0.006-0.008,0.012-0.008,0.012-0.019\r\n\t\t\t\tc-0.034-0.018-0.117-0.048-0.111-0.082c0.001-0.001,0.003-0.002,0.004-0.003c0.046,0.004,0.07,0.02,0.12,0.02\r\n\t\t\t\tc0.021-0.009,0.035-0.019,0.033-0.036c-0.026-0.023-0.065-0.029-0.091-0.051c0.001-0.002,0.002-0.005,0.003-0.007\r\n\t\t\t\tc0.035-0.01,0.079,0.009,0.106-0.015c0.019-0.013,0.014-0.041,0.035-0.055c0.018-0.012,0.068-0.012,0.091-0.021\r\n\t\t\t\tc0.015-0.022,0.003-0.047-0.001-0.075c-0.068,0.036-0.136,0.006-0.192,0.002c-0.019,0-0.038,0.001-0.058,0.001\r\n\t\t\t\tc-0.021-0.005-0.042-0.024-0.057-0.036c0,0,0-0.001,0-0.002c0.047,0,0.084,0.013,0.126,0.016\r\n\t\t\t\tc0.044-0.001,0.088-0.001,0.131-0.002c0.028-0.001,0.09-0.009,0.1-0.024c0.026-0.037-0.037-0.077-0.065-0.092\r\n\t\t\t\tc-0.023-0.013-0.046-0.027-0.069-0.04c-0.012-0.013-0.024-0.025-0.036-0.038c-0.018-0.01-0.063-0.003-0.087-0.007\r\n\t\t\t\tc-0.051-0.015-0.102-0.031-0.152-0.046c0.035-0.013,0.071-0.026,0.106-0.039c0.054-0.022,0.094-0.056,0.147-0.073\r\n\t\t\t\tc0.065-0.021,0.098,0.007,0.147-0.018c-0.003-0.033-0.056-0.036-0.075-0.06c0.04-0.014,0.032-0.041,0.033-0.07\r\n\t\t\t\tC18.58,15.989,18.564,16,18.55,15.989c-0.01-0.017-0.02-0.034-0.03-0.051c-0.015-0.01-0.031-0.019-0.047-0.029\r\n\t\t\t\tc-0.088-0.043-0.195,0.005-0.197-0.102c-0.016-0.007-0.033-0.014-0.049-0.021c0.207-0.079,0.173-0.008,0.319,0\r\n\t\t\t\tc0.03-0.008,0.081-0.026,0.102-0.043c0.038-0.03,0.094-0.146,0.023-0.187c-0.046-0.027-0.126-0.019-0.183-0.035l-0.005,0.001\r\n\t\t\t\tc0,0,0-0.001-0.001-0.002c0.156-0.015,0.143-0.03,0.163-0.114c0.004-0.003,0.009-0.005,0.013-0.007c0.003,0,0.005,0,0.008,0\r\n\t\t\t\tc0.029,0.023,0.044,0.049,0.091,0.053c0.011,0.002,0.008-0.002,0.02-0.004c0.001,0,0.002,0,0.003,0\r\n\t\t\t\tc-0.017-0.036-0.034-0.072-0.051-0.108c0.001-0.001,0.003-0.002,0.005-0.003c0.035,0.01,0.044,0.023,0.074,0.039\r\n\t\t\t\tc0.01,0.002,0.021,0.004,0.031,0.006c0.009,0.009,0.018,0.019,0.028,0.028c0.03,0.017,0.13,0.009,0.165-0.018\r\n\t\t\t\tc0.031-0.024,0.019-0.064,0.056-0.086c0.014-0.008,0.03-0.006,0.037,0.001c0.13-0.104-0.137-0.115-0.131-0.166\r\n\t\t\t\tc0.002-0.017,0.048-0.033,0.064-0.046c0.043-0.032,0.089-0.076,0.116-0.114c-0.009,0-0.018-0.001-0.027-0.001\r\n\t\t\t\tc-0.002-0.001-0.004-0.002-0.006-0.004c0.05-0.023,0.021-0.065,0.001-0.1c0.055,0.009,0.141,0.024,0.224-0.01\r\n\t\t\t\tc-0.032,0.049-0.038,0.104-0.065,0.156c-0.017,0.033-0.065,0.069-0.066,0.104c0.008,0.011,0.016,0.021,0.024,0.032\r\n\t\t\t\tc0.015,0.03-0.047,0.071-0.007,0.098c0.021,0.016,0.068,0.009,0.106,0.008c0.001,0,0.002,0,0.002,0\r\n\t\t\t\tc-0.004-0.037,0.007-0.078-0.028-0.11c0.083-0.005,0.124-0.07,0.134-0.107c0.002-0.001,0.003-0.002,0.004-0.003\r\n\t\t\t\tc0.022,0.02,0.027,0.067,0.068,0.07c0.003,0,0.007,0,0.01,0c0.055-0.028,0.102-0.093,0.119-0.136\r\n\t\t\t\tc-0.006-0.004-0.012-0.009-0.018-0.013c0.001,0,0.002,0,0.003,0c0.045,0.009,0.167,0.05,0.2-0.008\r\n\t\t\t\tc0.002-0.031,0.004-0.063,0.006-0.094c0.012-0.023,0.053-0.042,0.051-0.069c0.004-0.047-0.125-0.031-0.121-0.087\r\n\t\t\t\tc0.012-0.034,0.201-0.025,0.247-0.027c0.022,0.013,0.039,0.036,0.067,0.044c0.065-0.002,0.086-0.04,0.101-0.069\r\n\t\t\t\tc0.032-0.059,0.046-0.123,0.077-0.184c0.014-0.028,0.029-0.056,0.043-0.085c0.008-0.021-0.001-0.073-0.025-0.093\r\n\t\t\t\tc-0.006-0.002-0.003-0.002-0.013-0.001c0.018-0.037,0.066-0.059,0.078-0.1c-0.014-0.01-0.028-0.02-0.042-0.03\r\n\t\t\t\tc-0.026-0.028-0.037-0.094-0.024-0.122c0.013-0.028,0.059-0.047,0.07-0.077c0.014-0.038-0.033-0.077-0.004-0.117\r\n\t\t\t\tc0.02-0.027,0.112-0.04,0.135-0.086c0.002-0.016,0.004-0.032,0.005-0.048c0.016-0.031,0.132-0.113,0.06-0.153\r\n\t\t\t\tc-0.023-0.013-0.064-0.006-0.096-0.01c-0.002,0-0.003,0.001-0.005,0.001c0.016-0.009,0.034-0.011,0.039-0.024\r\n\t\t\t\tc0.017-0.065-0.146-0.086-0.173-0.118c0.009-0.012,0.018-0.025,0.027-0.037c0.001-0.001,0.003-0.002,0.004-0.003\r\n\t\t\t\tc0.031,0.059,0.15,0.093,0.239,0.092c0.045,0,0.091-0.01,0.128-0.003c0.046,0.009,0.076,0.04,0.128,0.044\r\n\t\t\t\tc0.046,0.004,0.173-0.02,0.191-0.045c-0.003-0.044-0.086-0.053-0.114-0.083c0.091,0.005,0.077-0.035,0.134,0.031\r\n\t\t\t\tc0.041,0.007,0.101-0.012,0.116-0.034c0.001-0.052-0.066-0.084-0.058-0.137c0.005-0.005,0.011-0.01,0.016-0.015\r\n\t\t\t\tc0.03,0.025,0.076,0.076,0.147,0.053c0.075-0.023,0.014-0.08,0.073-0.109c0.046-0.014,0.093-0.029,0.139-0.043\r\n\t\t\t\tc0.048-0.025,0.083-0.063,0.134-0.089c0.033-0.013,0.065-0.027,0.098-0.04c0.023-0.014,0.024-0.037,0.052-0.051\r\n\t\t\t\tc0.052-0.027,0.165-0.104,0.16-0.147c0.013,0,0.026-0.001,0.039-0.001c0.009-0.007,0.007-0.015,0.014-0.021\r\n\t\t\t\tc0.024-0.02,0.098-0.01,0.069-0.046c-0.007-0.009-0.015-0.014-0.02-0.028c0.02-0.022,0.045-0.041,0.1-0.051\r\n\t\t\t\tc-0.003-0.01-0.007-0.02-0.01-0.03c0.004-0.01,0.018-0.015,0.036-0.02c0.005-0.043-0.016-0.072-0.045-0.098\r\n\t\t\t\tc0.008-0.035,0.079-0.049,0.107-0.077c0-0.029-0.031-0.052-0.063-0.055c0.037-0.037,0.131-0.031,0.146-0.078\r\n\t\t\t\tc-0.024-0.02-0.058-0.024-0.069-0.057c0.023-0.025,0.075-0.06,0.135-0.054c0.001,0,0.002,0,0.003,0\r\n\t\t\t\tc-0.033-0.02-0.066-0.041-0.099-0.061c-0.089-0.081,0.158-0.142,0.204-0.197c-0.022,0.004-0.029,0-0.037-0.01\r\n\t\t\t\tc-0.002-0.001-0.004-0.002-0.006-0.002c0,0,0-0.001-0.001-0.002c0.032-0.002,0.069,0.005,0.1-0.008\r\n\t\t\t\tc0.004-0.004,0.008-0.007,0.012-0.011c-0.001-0.024-0.034-0.036-0.057-0.044c-0.007-0.043,0.064-0.091,0.107-0.117\r\n\t\t\t\tc0.015,0.003,0.03,0.006,0.045,0.009c-0.008-0.04-0.016-0.08-0.024-0.12c-0.038,0.015-0.036,0.038-0.061,0.057\r\n\t\t\t\tc-0.04,0.031-0.1,0.067-0.155,0.09c-0.046,0.018-0.166,0.053-0.22,0.054c-0.055,0.001-0.099-0.006-0.169,0.007\r\n\t\t\t\tc-0.086,0.017-0.192,0.071-0.27,0.055c-0.009-0.018-0.019-0.035-0.028-0.053c-0.001,0-0.002,0-0.003,0.001\r\n\t\t\t\tc-0.072,0.055-0.152,0.123-0.2,0.186c-0.031,0.04-0.06,0.078-0.102,0.114c-0.038,0.032-0.043,0.082-0.099,0.107\r\n\t\t\t\tc-0.053,0.023-0.122,0.012-0.178,0.027c-0.003,0-0.006-0.001-0.008-0.002c-0.047-0.023-0.103,0.025-0.159,0.03\r\n\t\t\t\tc-0.014-0.012-0.007-0.021,0.003-0.032c0.022-0.023,0.056-0.047,0.12-0.051c0.022-0.001,0.054-0.002,0.075-0.013\r\n\t\t\t\tc0.068-0.034,0.046-0.111,0.096-0.141c0.031-0.019,0.151-0.057,0.162-0.078c0.014-0.025-0.022-0.049-0.044-0.053\r\n\t\t\t\tc-0.04,0.008-0.037,0.022-0.06,0.033l-0.116,0.034c-0.082,0.034-0.185,0.115-0.294,0.118c-0.015-0.011-0.018-0.03-0.038-0.036\r\n\t\t\t\tc-0.051,0.004-0.131,0.08-0.148,0.105c-0.006,0.001-0.012,0.001-0.018,0.002c-0.003,0-0.005,0-0.008,0\r\n\t\t\t\tc-0.046-0.074,0.259-0.214,0.154-0.309c-0.031-0.028-0.086-0.028-0.126-0.046c0.103-0.026,0.206-0.053,0.309-0.079\r\n\t\t\t\tc0.011-0.005,0.016-0.012,0.017-0.022c0.05-0.019,0.101-0.031,0.138-0.055c0.04-0.026,0.15-0.164,0.158-0.201\r\n\t\t\t\tc0.003-0.016-0.028-0.058-0.042-0.07c-0.016-0.014-0.044-0.019-0.068-0.024c-0.11-0.022-0.111,0.021-0.198,0.048\r\n\t\t\t\tc-0.092,0.028-0.168-0.001-0.196,0.069c-0.047,0.001-0.074-0.025-0.115-0.028c-0.045-0.003-0.093,0.034-0.122,0.047\r\n\t\t\t\tc-0.001,0-0.002,0-0.003,0c0,0,0-0.001-0.001-0.002c0.016-0.039,0.101-0.058,0.108-0.097c0.007-0.042-0.147-0.072-0.199-0.067\r\n\t\t\t\tc-0.027,0.007-0.053,0.015-0.08,0.022c-0.065,0.001-0.133-0.039-0.158-0.08c0.031-0.004,0.053,0.006,0.077,0.01\r\n\t\t\t\tc0.032,0.005,0.153,0.002,0.167-0.005c0.121,0.041,0.265,0.068,0.372,0.122c0.097-0.022,0.152-0.08,0.272-0.089\r\n\t\t\t\tc0.1-0.007,0.172,0.031,0.261,0.04c0.04-0.01,0.035-0.031,0.071-0.042c0.056,0.011,0.104,0.041,0.15,0.063\r\n\t\t\t\tc0.024,0.008,0.048,0.017,0.071,0.025c0.016,0.019,0.031,0.037,0.047,0.056c0.021,0.005,0.032-0.001,0.046,0.011\r\n\t\t\t\tc0.015,0.022,0.03,0.044,0.045,0.066c0.042,0.038,0.131,0.059,0.2,0.07c0.101,0.016,0.192,0.009,0.27-0.045\r\n\t\t\t\tc0.017-0.012,0.034-0.02,0.038-0.036c0.013-0.051-0.114-0.086-0.107-0.166c0.001-0.001,0.003-0.002,0.004-0.003\r\n\t\t\t\tc0.014,0.037,0.178,0.137,0.22,0.148c0.022,0.005,0.059,0.007,0.087-0.007c0.02-0.01,0.031-0.026,0.039-0.041\r\n\t\t\t\tc0.037-0.061-0.073-0.08-0.109-0.114c0.003-0.006,0.006-0.013,0.01-0.019c-0.026,0-0.033-0.018-0.043-0.033\r\n\t\t\t\tc-0.013-0.002-0.028,0-0.049,0.004c-0.004-0.04,0.038-0.112-0.07-0.076c0.009-0.016,0.01-0.032,0.012-0.052\r\n\t\t\t\tc-0.015,0.002-0.03,0.005-0.045,0.007c-0.002,0-0.004,0-0.005-0.001c-0.033-0.116-0.015-0.165-0.164-0.203\r\n\t\t\t\tc-0.003,0-0.005,0-0.008,0c-0.019,0.045-0.027,0.105-0.038,0.15c-0.001,0.001-0.003,0.002-0.004,0.003\r\n\t\t\t\tc-0.006-0.003-0.013-0.007-0.019-0.01c-0.004-0.025,0.002-0.056-0.014-0.084c-0.022-0.037-0.043-0.094-0.038-0.131\r\n\t\t\t\tc-0.051,0.012-0.061,0.058-0.095,0.08c-0.009-0.002-0.019-0.003-0.028-0.005c0-0.058-0.017-0.052-0.091-0.052\r\n\t\t\t\tc-0.013-0.02-0.001-0.032-0.007-0.054c-0.005-0.001-0.01-0.003-0.014-0.004c-0.012,0.001-0.02,0.003-0.029,0.007\r\n\t\t\t\tc-0.007-0.003-0.006-0.001-0.01-0.008c-0.053,0.01-0.081,0.001-0.126,0.003c-0.151,0.005-0.169,0.037-0.238-0.051\r\n\t\t\t\tc-0.041-0.009-0.201-0.016-0.26-0.004c-0.013,0.035-0.019,0.069-0.038,0.102c-0.018,0.027-0.037,0.054-0.055,0.08\r\n\t\t\t\tc-0.003,0.002-0.006,0.005-0.008,0.007c-0.027-0.016-0.116-0.06-0.103-0.103c0.009-0.015,0.038-0.018,0.056-0.029\r\n\t\t\t\tc0.021-0.013,0.084-0.093,0.073-0.115c-0.015-0.03-0.082-0.03-0.118-0.039c-0.039-0.01-0.067-0.043-0.116-0.041\r\n\t\t\t\tc-0.046,0.002-0.061,0.033-0.074,0.049c-0.018,0.016-0.035,0.032-0.053,0.048c-0.021,0.029-0.031,0.063-0.043,0.095\r\n\t\t\t\tc-0.007,0.002-0.013,0.004-0.019,0.005c-0.015-0.051-0.072-0.083-0.151-0.068c0,0,0-0.001-0.001-0.001\r\n\t\t\t\tc0.024-0.031,0.103-0.012,0.139-0.034c0.06-0.036,0.077-0.119,0.142-0.155c0.004-0.005,0.009-0.01,0.013-0.016\r\n\t\t\t\tc-0.078-0.016-0.155-0.032-0.243-0.04c-0.032,0.023-0.05,0.013-0.09,0.032c-0.021,0.015-0.043,0.03-0.064,0.045\r\n\t\t\t\tc-0.072,0.047-0.113,0.067-0.106,0.143c-0.023-0.003-0.035-0.007-0.05-0.017c-0.124-0.083,0.099-0.103,0.101-0.159\r\n\t\t\t\tc0.001-0.031-0.064-0.029-0.086-0.038c-0.002,0-0.004,0-0.005-0.001c0,0,0-0.001-0.001-0.002c0.065-0.02,0.17-0.047,0.208-0.018\r\n\t\t\t\tc0.055-0.015,0.091-0.086,0.101-0.119c0.002-0.012,0.004-0.024,0.007-0.036c0.019-0.029,0.096-0.064,0.136-0.084\r\n\t\t\t\tc0.001-0.002,0.002-0.004,0.003-0.005c-0.051-0.005-0.107-0.018-0.136-0.046c0.06,0.007,0.119,0.006,0.189,0.005\r\n\t\t\t\tc-0.007-0.017-0.02-0.023-0.032-0.034c-0.018-0.066,0.148-0.105,0.248-0.112c0.019-0.003,0.038-0.006,0.058-0.01\r\n\t\t\t\tc0.014,0.001,0.034,0.006,0.062-0.003c0.018-0.006,0.028-0.016,0.039-0.024c0.005,0.031-0.025,0.045-0.053,0.063\r\n\t\t\t\tc-0.039,0.004-0.2-0.007-0.232,0.033c0,0.003,0,0.005,0,0.008c0.038,0.019,0.086,0.056,0.135,0.064\r\n\t\t\t\tc0.063,0.01,0.146-0.01,0.22-0.012c0.032,0,0.063,0,0.095,0c0.05-0.056,0.09-0.128,0.108-0.194\r\n\t\t\t\tc0.015-0.005,0.03-0.001,0.047-0.002c0.036-0.002,0.135-0.04,0.152-0.052c0.047-0.035-0.09-0.189-0.128-0.197\r\n\t\t\t\tc-0.032-0.007-0.07-0.002-0.107-0.004c-0.059-0.004-0.24-0.04-0.269,0.031c0.007,0.018,0.019,0.023,0.032,0.034\r\n\t\t\t\tc0.001,0.002,0.001,0.003,0.002,0.005C21.061,9.85,21.006,9.85,20.952,9.85c-0.002,0-0.003,0.001-0.005,0.001\r\n\t\t\t\tc-0.006-0.034,0.037-0.085,0.002-0.115c-0.013-0.007-0.061,0.002-0.077,0c-0.003-0.017,0.025-0.026,0.044-0.033\r\n\t\t\t\tc0.024-0.05-0.082-0.091-0.112-0.123c0,0,0-0.001-0.001-0.002c0.049,0.003,0.087,0.023,0.143,0.019\r\n\t\t\t\tc0.08-0.005,0.117-0.075,0.219-0.082c0.053-0.003,0.078,0.028,0.129,0.024c0.015-0.006,0.029-0.012,0.044-0.018\r\n\t\t\t\tc0.076-0.037,0.128-0.084,0.117-0.15c-0.006-0.035-0.112-0.077-0.174-0.057c-0.075,0.034-0.15,0.068-0.225,0.101\r\n\t\t\t\tc-0.023,0.015-0.039,0.033-0.066,0.048c0.001-0.026,0.017-0.077,0-0.103c-0.026-0.042-0.069-0.068-0.087-0.113\r\n\t\t\t\tc-0.144,0.026-0.093,0.074-0.143,0.127c-0.101,0.032-0.174-0.025-0.264-0.018c0.036-0.037,0.154-0.006,0.199-0.003\r\n\t\t\t\tc0.004-0.001,0.008-0.001,0.012-0.002c0.006-0.013,0.012-0.027,0.018-0.04c0.021-0.034,0.052-0.065,0.088-0.093\r\n\t\t\t\tc-0.001-0.001-0.003-0.003-0.004-0.004c-0.015-0.008-0.041-0.006-0.061-0.008c-0.037-0.005-0.076-0.012-0.118-0.013\r\n\t\t\t\tc-0.078,0-0.163,0.02-0.217-0.003c0.044-0.008,0.061-0.02,0.074-0.039c-0.012-0.023-0.076-0.028-0.104-0.037\r\n\t\t\t\tc-0.001-0.002-0.001-0.004-0.002-0.006c0.057-0.01,0.172,0.001,0.217,0.01c0.051,0.011,0.098,0.041,0.167,0.033\r\n\t\t\t\tc0.034-0.018,0.074-0.065,0.132-0.048c0.029,0.008,0.042,0.034,0.072,0.043c0.067-0.007,0.093-0.07,0.062-0.117\r\n\t\t\t\tc-0.04-0.061-0.125-0.079-0.182-0.12c-0.022-0.016-0.009-0.05-0.031-0.062c-0.042-0.024-0.124,0-0.196,0.004\r\n\t\t\t\tc-0.024-0.002-0.048-0.003-0.073-0.005c-0.041,0.002-0.072,0.028-0.098,0.039c-0.039,0.016-0.082,0.03-0.131,0.042\r\n\t\t\t\tc0-0.001-0.001-0.002-0.001-0.003c0.069-0.022,0.084-0.061,0.131-0.091c0.041-0.027,0.109-0.044,0.145-0.073\r\n\t\t\t\tc0.016-0.013,0.031-0.04,0.007-0.058c-0.01-0.007-0.041-0.008-0.068-0.013c0.057-0.028,0.115-0.055,0.172-0.083\r\n\t\t\t\tc0.024,0.008,0.048,0.016,0.072,0.024c0.029,0.02,0.058,0.041,0.086,0.062c0.003,0.001,0.006,0.001,0.008,0.002\r\n\t\t\t\tc0.003-0.003,0.005-0.005,0.008-0.008c-0.002-0.029-0.048-0.05-0.072-0.066c-0.018-0.012-0.036-0.025-0.053-0.037\r\n\t\t\t\tC24.16,6.946,27.965,6,32,6c4.818,0,9.316,1.335,13.186,3.62c-0.129,0.065-0.246,0.164-0.324,0.268\r\n\t\t\t\tc-0.047-0.001-0.131-0.022-0.152-0.019c-0.081,0.013-0.199,0.161-0.229,0.229c-0.014,0.013-0.025,0.025-0.039,0.038\r\n\t\t\t\tc0.039,0.028,0.076,0.062,0.103,0.102c-0.099,0.069-0.239,0.035-0.292,0.153c-0.004,0.004-0.008,0.008-0.014,0.013\r\n\t\t\t\tc0.033,0.03,0.064,0.059,0.096,0.089c-0.004,0.027-0.008,0.055-0.014,0.083c-0.383-0.001-0.321,0.111-0.547,0.216v0.006\r\n\t\t\t\tc0.209,0.251,0.238,0.04,0.521,0.089c0.13,0.023,0.227,0.096,0.344,0.121c0.108-0.061,0.16-0.161,0.248-0.241\r\n\t\t\t\tc-0.003-0.025-0.005-0.051-0.007-0.076c-0.034-0.021-0.067-0.042-0.103-0.064c-0.004-0.006-0.008-0.013-0.012-0.019\r\n\t\t\t\tc0.022-0.023,0.047-0.047,0.069-0.07c0.074,0.003,0.112,0.025,0.159,0.051c0.055-0.058,0.136-0.114,0.197-0.165v-0.013\r\n\t\t\t\tc-0.021-0.017-0.043-0.034-0.064-0.051c-0.014-0.017-0.002-0.045,0.006-0.076c0.016-0.013,0.03-0.026,0.044-0.038\r\n\t\t\t\tc0.107,0.001,0.271,0.047,0.356,0.006c0.035-0.028,0.072-0.055,0.107-0.083c0.021-0.023,0.043-0.047,0.063-0.07\r\n\t\t\t\tc-0.028-0.015-0.056-0.03-0.083-0.045c0.009-0.043,0.048-0.077,0.1-0.106c0.829,0.518,1.631,1.072,2.395,1.677\r\n\t\t\t\tc-0.006,0.025-0.012,0.05-0.016,0.075c-0.05,0.083-0.098,0.165-0.146,0.248c-0.135,0.174-0.528,0.182-0.465,0.489\r\n\t\t\t\tc0.054,0.004,0.107,0.008,0.16,0.013c0.135,0.378-0.104,0.29-0.146,0.515c0.07,0.108,0.28,0.064,0.369,0.153\r\n\t\t\t\tc0.029,0.036-0.002,0.112,0.013,0.165c0.035,0.124,0.136,0.168,0.286,0.146c-0.018,0.094-0.113,0.264-0.184,0.311\r\n\t\t\t\tc-0.016,0.013-0.038,0.014-0.07,0.013c-0.378-0.351-0.896-0.546-1.468-0.705c-0.123-0.034-0.46-0.13-0.636-0.089\r\n\t\t\t\tc-0.08,0.019-0.115,0.1-0.184,0.134c-0.002,0.004-0.004,0.008-0.006,0.013c0.061,0.078,0.123,0.157,0.184,0.235\r\n\t\t\t\tc-0.01,0.223-0.119,0.179-0.291,0.203c-0.021,0.033-0.037,0.114-0.052,0.146c-0.095,0.048-0.19-0.018-0.216-0.089\r\n\t\t\t\tc0.029-0.038,0.059-0.076,0.089-0.115c-0.178-0.082-0.286-0.093-0.45,0.032c-0.043,0.034-0.086,0.068-0.128,0.102\r\n\t\t\t\tc-0.1,0.03-0.176-0.034-0.235-0.051c-0.104-0.03-0.279-0.002-0.361,0.032c-0.092,0.037-0.088,0.172-0.172,0.222\r\n\t\t\t\tc-0.028-0.015-0.037-0.02-0.045-0.057c-0.182,0.003-0.223,0.07-0.375,0.019c0-0.05,0.008-0.062,0.025-0.089\r\n\t\t\t\tc0.038-0.006,0.076-0.013,0.114-0.019c0-0.097,0.017-0.161,0.026-0.235c-0.381-0.002-0.168,0.2-0.42,0.248\r\n\t\t\t\tc-0.006-0.002-0.012-0.004-0.019-0.006c-0.011-0.034-0.021-0.068-0.032-0.102c-0.133,0.055-0.267,0.11-0.399,0.165\r\n\t\t\t\tc-0.226,0.09-0.453,0.187-0.661,0.273c-0.051,0.015-0.102,0.03-0.153,0.045c-0.087,0.07-0.049,0.285-0.14,0.349\r\n\t\t\t\tc-0.057,0.011-0.115,0.021-0.172,0.032c-0.342,0.069-0.428-0.091-0.629-0.248c0.041-0.201,0.281-0.195,0.508-0.203\r\n\t\t\t\tc-0.055-0.114-0.169-0.349-0.305-0.375c-0.098,0.009-0.195,0.017-0.293,0.025c-0.082-0.018-0.133-0.053-0.215-0.032\r\n\t\t\t\tc-0.018,0.148,0.158,0.164,0.12,0.337c-0.051,0.081-0.102,0.161-0.151,0.241c-0.004,0.004-0.01,0.009-0.014,0.013\r\n\t\t\t\tc0.034,0.051,0.079,0.078,0.153,0.089c0.079,0.238,0.028,0.214-0.032,0.407c-0.006,0.036-0.013,0.072-0.02,0.108v0.013\r\n\t\t\t\tc-0.165-0.008-0.334-0.211-0.565-0.184c-0.124,0.261-0.491,0.237-0.661,0.445c0.006,0.173,0.26,0.294,0.141,0.47\r\n\t\t\t\tc-0.034-0.011-0.068-0.021-0.103-0.032c-0.071,0.008-0.14,0.046-0.235,0.019c-0.217-0.062-0.433-0.161-0.604-0.267\r\n\t\t\t\tc-0.104,0-0.1,0.078-0.152,0.127c0.002,0.063,0.125,0.201,0.19,0.229c0.058,0.024,0.138-0.001,0.19,0.006\r\n\t\t\t\tc0.15,0.265-0.1,0.247-0.26,0.21c-0.072-0.016-0.158,0.001-0.211-0.032c-0.029-0.021-0.053-0.077-0.064-0.114\r\n\t\t\t\tc-0.075-0.038-0.206-0.014-0.291-0.057c-0.043-0.022-0.209-0.444-0.217-0.527c0.123-0.036,0.164-0.19,0.07-0.292\r\n\t\t\t\tc-0.066-0.072-0.223-0.087-0.305-0.14c-0.137-0.088-0.245-0.222-0.362-0.33c0.222-0.112,0.253,0.089,0.343,0.14\r\n\t\t\t\tc0.07,0.011,0.141,0.021,0.211,0.032c0.5,0.15,1.305,0.524,1.83,0.127c0.111-0.084,0.24-0.161,0.235-0.343\r\n\t\t\t\tc-0.069-0.069-0.081-0.106-0.076-0.242c-0.091-0.072-0.211-0.158-0.331-0.197c-0.127-0.038-0.254-0.076-0.381-0.115\r\n\t\t\t\tc-0.121-0.102-0.242-0.203-0.361-0.305c-0.068-0.021-0.137-0.042-0.203-0.063c-0.108-0.038-0.217-0.076-0.324-0.114\r\n\t\t\t\tc-0.18-0.013-0.36-0.025-0.54-0.038c-0.03,0.023-0.06,0.047-0.089,0.07c-0.004-0.046-0.008-0.093-0.014-0.14\r\n\t\t\t\tc-0.183-0.035-0.345-0.068-0.35-0.28c-0.061,0.036-0.123,0.072-0.184,0.108c-0.047,0.019-0.104,0.021-0.141,0.044\r\n\t\t\t\tc-0.113-0.074-0.219-0.036-0.369-0.025c-0.065-0.103-0.205-0.127-0.279-0.222c0.236,0.002,0.468,0.029,0.591-0.095\r\n\t\t\t\tc-0.002-0.023-0.005-0.047-0.007-0.07c-0.027-0.017-0.055-0.034-0.082-0.051c-0.065-0.023-0.141,0.003-0.191-0.019\r\n\t\t\t\tc-0.105-0.045-0.177-0.123-0.299-0.159c-0.07,0.062-0.137,0.151-0.152,0.267c-0.039-0.008-0.08-0.017-0.121-0.025\r\n\t\t\t\tc0.041-0.129,0.059-0.18,0.127-0.279c-0.05-0.066-0.162-0.027-0.242-0.013c-0.045,0.144-0.116,0.243-0.248,0.305\r\n\t\t\t\tc-0.004-0.093-0.008-0.187-0.012-0.28c-0.14,0.095-0.322,0.263-0.389,0.426c-0.018-0.002-0.034-0.004-0.051-0.006\r\n\t\t\t\tc-0.001-0.246,0.115-0.269,0.216-0.4c-0.28-0.021-0.326,0.061-0.47,0.203c-0.031,0.023-0.079-0.012-0.121,0.013\r\n\t\t\t\tc-0.073,0.044-0.145,0.185-0.172,0.273c-0.188-0.096-0.28-0.273-0.381,0.083c-0.043-0.036-0.086-0.072-0.127-0.108\r\n\t\t\t\tc-0.006-0.002-0.014-0.004-0.02-0.006c-0.048,0.076-0.089,0.121-0.203,0.134c-0.027,0.103-0.078,0.174-0.152,0.229\r\n\t\t\t\tc0.014-0.069,0.026-0.136,0.051-0.191c-0.004-0.011-0.008-0.021-0.014-0.032c-0.006-0.004-0.013-0.008-0.019-0.013\r\n\t\t\t\tc-0.084,0.046-0.147,0.229-0.197,0.311c-0.135-0.012-0.165-0.08-0.299-0.032c-0.024-0.021-0.051-0.042-0.076-0.063\r\n\t\t\t\tc-0.061,0.246-0.091,0.112-0.216,0.203c-0.066,0.048-0.033,0.116-0.146,0.153c-0.019,0.021-0.037,0.042-0.057,0.063\r\n\t\t\t\tc0.026,0.021,0.051,0.042,0.076,0.064v0.006c-0.036,0.051-0.105,0.052-0.172,0.038c0.011,0.047,0.021,0.093,0.031,0.14\r\n\t\t\t\tc-0.019,0.028-0.037,0.055-0.057,0.083c-0.006,0.004-0.013,0.009-0.019,0.013c-0.046-0.028-0.063-0.041-0.089-0.089h-0.006\r\n\t\t\t\tc-0.065,0.006-0.07,0.078-0.133,0.102c-0.01,0.027,0.014,0.055,0.043,0.076v0.038c-0.054,0.016-0.076,0.025-0.102,0.07\r\n\t\t\t\tc-0.041-0.01-0.074-0.026-0.127-0.032c-0.044,0.035-0.058,0.078-0.121,0.095c0.011,0.038,0.019,0.052,0.057,0.064\r\n\t\t\t\tc-0.034,0.075-0.199,0.095-0.273,0.134c-0.006,0.004-0.013,0.008-0.019,0.013c0.021,0.036,0.042,0.072,0.064,0.108v0.006\r\n\t\t\t\tc-0.065,0.004-0.112,0.01-0.178,0.006c-0.021,0.034-0.042,0.068-0.063,0.102c0.042,0.051,0.093,0.07,0.127,0.134v0.006\r\n\t\t\t\tc-0.042,0.006-0.085,0.013-0.127,0.019c-0.006,0.042-0.013,0.085-0.019,0.127c-0.163-0.038-0.167,0.098-0.229,0.21\r\n\t\t\t\tc0.021,0.006,0.042,0.013,0.064,0.019c0.002,0.044,0.004,0.089,0.006,0.133c-0.05,0.003-0.081,0.005-0.121-0.006\r\n\t\t\t\tc-0.075,0.075-0.123,0.164-0.203,0.235c0.006,0.019,0.013,0.038,0.019,0.057v0.006c-0.063,0.046-0.087,0.015-0.159,0\r\n\t\t\t\tc-0.094,0.045-0.266,0.185-0.311,0.28c-0.006,0.034-0.013,0.068-0.019,0.102c-0.039,0.065-0.125,0.084-0.159,0.165\r\n\t\t\t\tc-0.006,0.004-0.013,0.009-0.019,0.013c-0.019-0.013-0.038-0.026-0.057-0.038c-0.08-0.054-0.225,0.137-0.222,0.242\r\n\t\t\t\tc-0.085-0.036-0.205-0.032-0.337-0.032l-0.032,0.032c0.017,0.072,0.086,0.103,0.159,0.114c-0.063,0.075-0.159,0.014-0.267,0.006\r\n\t\t\t\tc-0.021,0.084-0.011,0.111-0.089,0.14c-0.1-0.04-0.144,0.042-0.248,0.076c-0.002,0.017-0.004,0.034-0.006,0.051\r\n\t\t\t\tc0.025,0.034,0.072,0.048,0.108,0.07v0.025c-0.066,0.004-0.131,0.008-0.197,0.013c-0.025,0.075-0.001,0.151-0.038,0.21\r\n\t\t\t\tc0.034,0.046,0.043,0.085,0.102,0.108c0.002,0.004,0.004,0.008,0.006,0.013c-0.056,0.046-0.091,0.058-0.114,0.14\r\n\t\t\t\tc0.004,0.011,0.008,0.021,0.013,0.032c0.041,0.028,0.07,0.034,0.121,0.013c0.011,0.013,0.021,0.025,0.032,0.038\r\n\t\t\t\tc-0.041,0.034-0.089,0.076-0.127,0.114c0.053,0.078,0.112,0.033,0.222,0.045c-0.007,0.055-0.021,0.092-0.07,0.108\r\n\t\t\t\tc-0.008,0.011-0.017,0.021-0.025,0.032c0.015,0.013,0.03,0.025,0.044,0.038c0.06-0.001,0.086-0.014,0.127-0.032\r\n\t\t\t\tc-0.027,0.037-0.064,0.055-0.127,0.057c0.001,0.016-0.001,0.007,0.006,0.025c-0.032,0.014-0.05,0.004-0.083-0.013v0.038h-0.006\r\n\t\t\t\tc-0.004-0.017-0.008-0.034-0.013-0.051c-0.002-0.004-0.004-0.008-0.006-0.013c-0.025,0.03-0.051,0.059-0.076,0.089\r\n\t\t\t\tc0.008,0.03,0.017,0.059,0.025,0.089c0.011,0.006,0.021,0.013,0.032,0.019c0.002-0.011,0.004-0.021,0.006-0.032\r\n\t\t\t\tc0.006,0.011,0.013,0.021,0.019,0.032c0.051-0.002,0.06-0.014,0.095-0.026c-0.002-0.025-0.004-0.051-0.006-0.076\r\n\t\t\t\tc0.025,0.019,0.035,0.027,0.038,0.07h0.006c0.028-0.025,0.055-0.051,0.083-0.076c-0.018,0.039-0.04,0.052-0.064,0.083\r\n\t\t\t\tc0.032,0.02,0.042,0.024,0.089,0.019v0.007c-0.038,0.021-0.076,0.042-0.114,0.063c-0.009,0.028-0.004,0.013,0.006,0.045\r\n\t\t\t\tc0.046,0.033,0.031,0.018,0.102,0.013v0.006c-0.036,0.006-0.042,0.012-0.057,0.038c0.006,0.008,0.013,0.017,0.019,0.025\r\n\t\t\t\tc-0.036-0.022-0.065-0.056-0.089-0.019c-0.006,0.004-0.013,0.008-0.019,0.013c-0.002-0.019-0.004-0.038-0.006-0.057\r\n\t\t\t\tc-0.017-0.002-0.034-0.004-0.051-0.006c0.015,0.05-0.003,0.072-0.025,0.114c0.019,0.038,0.038,0.076,0.057,0.114\r\n\t\t\t\tc0.123,0.036,0.19,0.086,0.305,0.115c-0.013,0.013-0.026,0.025-0.038,0.038c0.013,0.008,0.025,0.017,0.038,0.025\r\n\t\t\t\tc0.011-0.013,0.021-0.025,0.032-0.038c0.03,0.015,0.042,0.019,0.051,0.057c0.07,0.017,0.282-0.01,0.349-0.044\r\n\t\t\t\tc0.108-0.107,0.244-0.176,0.356-0.28c0.039-0.036,0.039-0.072,0.095-0.095c0.038-0.02,0.087,0.023,0.14-0.013\r\n\t\t\t\tc0.062-0.046,0.08-0.127,0.083-0.222c0.015-0.011,0.03-0.021,0.044-0.032c0.012,0.047,0.011,0.056-0.013,0.089\r\n\t\t\t\tc0.053,0.074,0.056,0.142,0.165,0.095c0.004,0.002,0.008,0.004,0.013,0.006c0.006,0.051-0.02,0.065-0.032,0.114\r\n\t\t\t\tc0.052,0.027,0.057,0.174,0.057,0.248c0.019-0.002,0.038-0.004,0.057-0.007c0.002,0.017,0.004,0.034,0.006,0.051\r\n\t\t\t\tc0.048-0.012,0.047-0.013,0.089,0c0.008,0.048-0.026,0.118-0.044,0.165c0.047,0.06,0.08,0.086,0.076,0.203\r\n\t\t\t\tc0.017,0.002,0.034,0.004,0.051,0.006c0.049,0.164,0.149,0.23,0.242,0.324c-0.004,0.017-0.009,0.034-0.013,0.051\r\n\t\t\t\tc-0.019-0.002-0.038-0.004-0.057-0.006c0.002,0.017,0.004,0.034,0.006,0.051c-0.021,0.011-0.042,0.021-0.064,0.032\r\n\t\t\t\tc0.042,0.083,0.088,0.169,0.159,0.222c-0.016,0.061-0.039,0.075-0.051,0.134c0.151,0.032,0.257-0.029,0.381,0\r\n\t\t\t\tc0.011-0.013,0.021-0.025,0.032-0.038c0.037-0.032,0.005-0.05-0.019-0.089c0.023-0.06,0.036-0.108,0.095-0.133\r\n\t\t\t\tc0.019-0.011,0.012-0.005,0.038,0.006c0.004-0.017,0.009-0.034,0.013-0.051c0.11,0.001,0.175-0.008,0.253-0.025\r\n\t\t\t\tc0.021,0.015,0.043,0.03,0.064,0.045c0.004,0.004,0.008,0.008,0.014,0.013c0.059-0.108,0.119-0.216,0.178-0.324\r\n\t\t\t\tc0.002-0.04,0.004-0.08,0.006-0.121c0.011-0.057,0.039-0.09,0.057-0.133c0.016-0.027-0.011-0.058,0.006-0.102\r\n\t\t\t\tc-0.015-0.006-0.029-0.013-0.045-0.019V18.53h0.064c0.095-0.071-0.057-0.253-0.07-0.318c0.059-0.002,0.119-0.004,0.178-0.006\r\n\t\t\t\tc0.002-0.013,0.004-0.025,0.006-0.038c0.177,0.031,0.106-0.133,0.191-0.165v0.095c0.002,0.002,0.004,0.004,0.006,0.006\r\n\t\t\t\tc0.02-0.002,0.039-0.004,0.058-0.006c0.014-0.068,0.052-0.091,0.114-0.108c-0.004-0.021-0.008-0.042-0.014-0.064\r\n\t\t\t\tc0.027-0.002,0.055-0.004,0.083-0.006c-0.002-0.011-0.004-0.021-0.006-0.032c-0.002-0.004-0.004-0.008-0.006-0.013h-0.032v0.032\r\n\t\t\t\tc-0.102-0.041-0.174,0.062-0.279,0.045c-0.111-0.019-0.164-0.137-0.3-0.095H32.8c0.009-0.015,0.017-0.03,0.025-0.045\r\n\t\t\t\tc0.036-0.04,0.304,0.049,0.368,0.083c0.082,0.043,0.287-0.119,0.312-0.153h0.058c-0.002-0.095-0.049-0.099-0.07-0.178\r\n\t\t\t\tc-0.126-0.018-0.206-0.104-0.248-0.203c-0.025,0.002-0.051,0.004-0.076,0.006c-0.038-0.015-0.062-0.043-0.133-0.045\r\n\t\t\t\tc-0.002-0.004-0.004-0.008-0.006-0.013c0.046-0.039-0.053-0.296-0.025-0.4c0.023-0.006,0.047-0.013,0.07-0.019\r\n\t\t\t\tc0.055-0.173,0-0.204-0.02-0.356c0.038,0.013,0.076,0.025,0.114,0.038c0.021-0.028,0.042-0.055,0.063-0.083\r\n\t\t\t\tc0.017-0.027-0.004-0.073-0.012-0.115h0.127c0.079-0.112,0.116-0.111,0.221-0.191c0.051-0.038,0.051-0.096,0.115-0.127\r\n\t\t\t\tc0.022,0.015,0.047,0.03,0.069,0.044c0.099-0.068,0.199-0.136,0.299-0.203c0.071-0.087,0.077-0.196,0.185-0.248\r\n\t\t\t\tc0.004-0.006,0.008-0.013,0.013-0.019c-0.034-0.052-0.095-0.08-0.121-0.133c-0.006-0.006-0.013-0.013-0.019-0.019\r\n\t\t\t\tc0.053-0.023,0.127-0.081,0.151-0.133c0.023-0.036-0.022-0.072-0.044-0.102c0.077-0.104,0.108-0.037,0.184-0.095\r\n\t\t\t\tc0.092-0.069,0.095-0.193,0.211-0.248c0.051,0.034,0.102,0.068,0.152,0.102c0.022,0.014,0.223-0.034,0.305-0.032\r\n\t\t\t\tc0.078,0.06,0.117,0.113,0.262,0.115c0.011,0.019,0.021,0.038,0.031,0.057c0.015,0.037-0.006,0.12-0.019,0.159\r\n\t\t\t\tc0.017,0.019,0.034,0.038,0.052,0.057c0.013,0.018,0.008,0.038,0.006,0.076c-0.041-0.002-0.082-0.004-0.121-0.006\r\n\t\t\t\tc-0.098,0.028-0.543,0.488-0.61,0.585h-0.032c-0.013-0.019-0.025-0.038-0.037-0.057v-0.013c-0.091,0.094-0.017,0.207-0.16,0.28\r\n\t\t\t\tc-0.059-0.024-0.1-0.032-0.158-0.013c0.004,0.027,0.008,0.055,0.013,0.083c-0.073,0.067-0.121,0.102-0.153,0.216\r\n\t\t\t\tc0.026,0.023,0.063,0.043,0.09,0.064c0,0.094-0.021,0.143-0.032,0.216c0.034,0.053,0.067,0.106,0.102,0.159\r\n\t\t\t\tc-0.008,0.04-0.017,0.08-0.024,0.121c-0.035,0.188-0.012,0.31,0.127,0.381c0.058,0.03,0.07,0.065,0.146,0.038l-0.006,0.076\r\n\t\t\t\tc0.054-0.018,0.094-0.039,0.172-0.038c-0.011,0.023-0.021,0.047-0.032,0.07c0.021,0.042,0.039,0.071,0.084,0.089\r\n\t\t\t\tc0.066,0.051,0.192-0.016,0.234-0.038v0.026c0.064-0.014,0.081-0.027,0.133,0c0.043-0.058,0.077-0.069,0.153-0.095\r\n\t\t\t\tc0.004,0.008,0.008,0.017,0.013,0.025c0.051-0.028,0.141-0.037,0.165-0.095c0.027,0.019,0.056,0.038,0.083,0.057h0.006\r\n\t\t\t\tc0.018-0.083,0.1-0.04,0.152-0.083c0.027-0.017,0.04-0.057,0.045-0.095v0.057c0.036,0.013,0.072,0.025,0.107,0.038\r\n\t\t\t\tc0.026-0.027,0.035-0.043,0.084-0.051c0.021,0.013,0.041,0.025,0.063,0.038c0.06-0.057,0.198-0.098,0.3-0.108\r\n\t\t\t\tc0.008-0.015,0.016-0.03,0.024-0.045c0.028-0.003-0.011,0.079-0.019,0.114c0.147,0.215,0.344-0.041,0.488,0.229\r\n\t\t\t\tc-0.015,0.011-0.029,0.021-0.045,0.032c-0.094-0.003-0.141-0.044-0.222-0.07c-0.076,0.006-0.101,0.066-0.14,0.108\r\n\t\t\t\tc-0.054-0.012-0.054-0.037-0.103-0.025c-0.017,0.027-0.015,0.015-0.006,0.045c-0.031,0.029-0.052,0.003-0.076-0.025\r\n\t\t\t\tc-0.013,0.002-0.024,0.004-0.038,0.006c-0.004,0.015-0.008,0.03-0.013,0.045c0.032,0.038,0.067,0.051,0.063,0.108\r\n\t\t\t\tc-0.008-0.008-0.017-0.017-0.025-0.025c-0.018-0.007-0.057,0.067-0.107,0.064c-0.163-0.011-0.296-0.042-0.451-0.07\r\n\t\t\t\tc-0.078-0.014-0.166,0.024-0.203-0.006c-0.017,0.015-0.033,0.03-0.051,0.044c-0.049-0.011-0.098-0.021-0.146-0.032\r\n\t\t\t\tc-0.004,0.015-0.008,0.03-0.012,0.045c-0.045-0.007-0.062,0.006-0.103-0.006c-0.085,0.046-0.146,0.095-0.28,0.102\r\n\t\t\t\tc0.006,0.043,0.014,0.056-0.025,0.07c0.023,0.062,0.023,0.099,0.045,0.165c0.021,0,0.035-0.011,0.057-0.026\r\n\t\t\t\tc-0.002,0.057-0.004,0.115-0.006,0.172c0.057,0.016,0.08,0.031,0.121,0.051c0.025-0.023,0.051-0.047,0.076-0.07\r\n\t\t\t\tc0.013,0.009,0.024,0.017,0.037,0.025c-0.021,0.16-0.09,0.268-0.037,0.451c-0.041,0.106-0.223,0.17-0.324,0.076\r\n\t\t\t\tc-0.016-0.04-0.03-0.081-0.044-0.121c-0.048-0.034-0.093-0.068-0.14-0.102v-0.044c-0.113,0.004-0.154,0.056-0.268,0.057\r\n\t\t\t\tc-0.034,0.043-0.068,0.085-0.102,0.127c-0.002,0.044-0.004,0.089-0.006,0.133c-0.033,0.025-0.064,0.051-0.096,0.076\r\n\t\t\t\tc-0.068,0.143,0.034,0.501,0.064,0.578c-0.01,0.025,0,0,0.013,0.025c-0.011,0.002-0.021,0.004-0.032,0.006\r\n\t\t\t\tc0.012,0.035,0.018,0.047,0.014,0.089c-0.082,0.046-0.25,0.013-0.362,0.007c-0.017,0.05-0.021,0.111-0.025,0.165\r\n\t\t\t\tc-0.125,0.066-0.209,0.161-0.388,0.095c-0.01-0.053-0.025-0.086-0.051-0.121c0.005-0.087-0.213-0.034-0.28-0.013\r\n\t\t\t\tc-0.291,0.091-0.499,0.261-0.852,0.286c0.004,0.069,0.012,0.088,0.013,0.146c-0.08-0.028-0.139-0.055-0.21-0.083\r\n\t\t\t\tc-0.004-0.036-0.008-0.072-0.013-0.108c-0.081-0.042-0.175,0.016-0.222-0.121c-0.058-0.004-0.427,0.12-0.458,0.197h-0.07\r\n\t\t\t\tc-0.004-0.013-0.009-0.025-0.013-0.038h-0.006c-0.033,0.022-0.061,0.024-0.095,0.013c-0.004-0.006-0.008-0.013-0.013-0.019\r\n\t\t\t\tc0.045-0.038,0.069-0.048,0.102-0.102c-0.006-0.013-0.013-0.025-0.019-0.038c-0.049,0.004-0.097,0.009-0.146,0.013\r\n\t\t\t\tc-0.057-0.013-0.065-0.053-0.121-0.025c-0.014-0.043-0.014-0.04-0.064-0.038c0.059-0.095-0.063-0.185-0.133-0.21\r\n\t\t\t\tc0.013-0.092,0.038-0.176,0.089-0.229c-0.006-0.011-0.013-0.021-0.019-0.032c0.028-0.002,0.055-0.004,0.083-0.006\r\n\t\t\t\tc0.023-0.081,0.102-0.094,0.064-0.191c0.021-0.011,0.042-0.021,0.064-0.032c0.013,0.017,0.025,0.034,0.038,0.051\r\n\t\t\t\tc0.019-0.007,0.038-0.013,0.057-0.019c0.011-0.02,0.068-0.131,0.038-0.159c-0.051-0.002-0.102-0.004-0.153-0.006\r\n\t\t\t\tc-0.032-0.019-0.031-0.102-0.032-0.153c-0.068-0.033-0.163-0.022-0.254-0.019c-0.006,0.053-0.013,0.106-0.019,0.159\r\n\t\t\t\tc-0.013,0.014-0.02,0.015-0.044,0.019c-0.013-0.03-0.025-0.059-0.038-0.089c-0.049,0.026-0.056,0.1-0.095,0.121\r\n\t\t\t\tc-0.035,0.019-0.1-0.034-0.133-0.032c-0.071,0.107,0.012,0.181,0.019,0.286c-0.031,0.04-0.055,0.066-0.076,0.121\r\n\t\t\t\tc0.017,0.008,0.034,0.017,0.051,0.025c0.008-0.011,0.017-0.021,0.025-0.032c0.03,0.025,0.028,0.047,0.083,0.051\r\n\t\t\t\tc0.009,0.061-0.008,0.193,0.006,0.242c0.015,0.052,0.078,0.085,0.095,0.146c-0.028,0.028-0.059,0.044-0.108,0.051\r\n\t\t\t\tc0.012,0.043,0.042,0.03,0.095,0.025c-0.011,0.017-0.017,0.019-0.032,0.032c0.015,0.015,0.03,0.03,0.045,0.044\r\n\t\t\t\tc-0.011,0.008-0.021,0.017-0.032,0.025c0.002,0.011,0.004,0.021,0.006,0.032c0.023,0.011,0.047,0.021,0.07,0.032\r\n\t\t\t\tc-0.046,0.024-0.104,0.005-0.159,0c-0.019,0.061-0.035,0.076-0.006,0.133c-0.032-0.011-0.063-0.021-0.095-0.032\r\n\t\t\t\tc0.008,0.019,0.017,0.038,0.025,0.057c-0.006,0.008-0.013,0.017-0.019,0.025c-0.006,0.002-0.013,0.004-0.019,0.006\r\n\t\t\t\tc-0.006-0.004-0.013-0.008-0.019-0.013c-0.005-0.039-0.011-0.061-0.025-0.108c-0.107-0.001-0.208,0.008-0.28,0.038\r\n\t\t\t\tc-0.004,0.019-0.008,0.038-0.013,0.057c0.008,0.049,0.031,0.043,0.057,0.07c-0.002,0.006-0.004,0.013-0.006,0.019h-0.025\r\n\t\t\t\tc-0.023-0.022-0.063-0.046-0.076-0.076c-0.123-0.051-0.317,0.05-0.413,0.083c-0.013,0.055-0.013,0.076-0.013,0.146\r\n\t\t\t\tc0.027,0.002,0.055,0.004,0.083,0.006c-0.015,0.024-0.023,0.03-0.025,0.07c0.024,0.016,0.034,0.024,0.076,0.026\r\n\t\t\t\tc-0.013,0.071-0.047,0.063-0.076,0.108c-0.051,0.033-0.092-0.002-0.165-0.013c0.015-0.036,0.015-0.051,0.013-0.108\r\n\t\t\t\tc0.026,0.002,0.019,0.001,0.044-0.006c0.006-0.013,0.013-0.025,0.019-0.038c-0.018-0.035-0.039-0.055-0.07-0.076\r\n\t\t\t\tc-0.032,0.008-0.064,0.017-0.095,0.026c-0.038,0.095-0.076,0.191-0.114,0.286c-0.074,0.064-0.148,0.127-0.222,0.191\r\n\t\t\t\tc0.032,0.014,0.055,0.038,0.07,0.07c-0.053,0.064-0.14-0.005-0.216,0.025c-0.055,0.036-0.11,0.072-0.165,0.108\r\n\t\t\t\tc-0.036,0.002-0.072,0.004-0.108,0.007c-0.047,0.023-0.093,0.047-0.14,0.07c-0.038,0.119,0.011,0.258-0.089,0.324\r\n\t\t\t\tc-0.114,0.075-0.266,0.05-0.349,0.153c-0.002,0.013-0.004,0.025-0.006,0.038c0.021,0.006,0.042,0.013,0.064,0.019\r\n\t\t\t\tc-0.12,0.118-0.282-0.026-0.426,0.044c-0.023-0.044-0.033-0.075-0.025-0.14c-0.075,0.012-0.121,0.009-0.203,0\r\n\t\t\t\tc0.011,0.077,0.049,0.161,0.108,0.191c-0.002,0.083-0.013,0.145,0.025,0.197c-0.024,0.019-0.065,0.026-0.108,0.025V22.17\r\n\t\t\t\tc-0.055,0.027-0.204,0.061-0.273,0.057c-0.028-0.036-0.055-0.072-0.083-0.108c-0.045,0.004-0.089,0.008-0.133,0.013\r\n\t\t\t\tc-0.006,0.015-0.013,0.03-0.019,0.044c-0.024,0.015-0.108,0.007-0.108,0.007c-0.004-0.004-0.009-0.009-0.013-0.013\r\n\t\t\t\tc-0.076,0.006-0.132,0.063-0.222,0.063c-0.002,0.028-0.004,0.055-0.006,0.083c0.038-0.014,0.077-0.021,0.133-0.019\r\n\t\t\t\tc-0.015,0.03-0.018,0.038-0.057,0.045c-0.01,0.017,0.037,0.021,0.057,0.025c0.002,0.009,0.004,0.017,0.006,0.025v0.006\r\n\t\t\t\tc-0.038,0.006-0.076,0.013-0.114,0.019c0.018,0.035,0.065,0.028,0.089,0.057c0.002,0.011,0.004,0.021,0.006,0.032\r\n\t\t\t\tc0.154-0.013,0.334,0.029,0.445,0.127c0.028-0.009,0.055-0.017,0.083-0.025c0.011,0.006,0.021,0.013,0.032,0.019\r\n\t\t\t\tc-0.011,0.021-0.021,0.043-0.032,0.064c0.036,0.046,0.118,0.075,0.165,0.108c-0.011,0.023-0.021,0.046-0.032,0.07\r\n\t\t\t\tc0.04,0.049,0.08,0.097,0.121,0.146c0.135,0.068,0.112,0,0.184,0.153c-0.021,0.04-0.045,0.073-0.051,0.127\r\n\t\t\t\tc0.051,0.067,0.112,0.106,0.133,0.203c-0.034-0.042-0.068-0.085-0.102-0.127h-0.006c-0.04,0.073-0.053,0.198-0.051,0.305\r\n\t\t\t\tc0.011-0.008,0.021-0.017,0.032-0.025c0.008,0.01,0.017,0.021,0.025,0.032c-0.017,0.008-0.034,0.017-0.051,0.025\r\n\t\t\t\tc-0.034,0.153-0.066,0.309-0.121,0.426c-0.162,0.027-0.245-0.039-0.375-0.076c-0.077,0.095-0.35,0.058-0.515,0.032\r\n\t\t\t\tc-0.075-0.012-0.339-0.086-0.356-0.083c-0.076,0.017-0.158,0.089-0.267,0.07c-0.137-0.023-0.23-0.099-0.369-0.044\r\n\t\t\t\tc-0.013,0.034-0.025,0.068-0.038,0.102h-0.083c-0.104,0.004-0.159,0.031-0.197,0.102c0.002,0.023,0.004,0.047,0.006,0.07\r\n\t\t\t\tc0.094,0.019,0.139,0.07,0.165,0.153c0.008,0.014-0.059,0.211-0.076,0.241c0.095,0.198,0.023,0.738-0.14,0.826\r\n\t\t\t\tc0.005,0.08-0.01,0.143-0.038,0.203c0.015,0.029,0.018,0.027,0.051,0.038c0.039-0.018,0.066-0.029,0.083-0.07\r\n\t\t\t\tc0.006-0.004,0.013-0.009,0.019-0.013c0.009,0.017,0.017,0.034,0.025,0.051c-0.024,0.033-0.05,0.045-0.108,0.045v0.006\r\n\t\t\t\tc0.004,0.017,0.009,0.034,0.013,0.051c0.035,0.008,0.086-0.006,0.121-0.019c0.004,0.004,0.008,0.008,0.013,0.013\r\n\t\t\t\tc-0.011,0.052-0.024,0.115-0.032,0.165c-0.002,0.004-0.004,0.008-0.006,0.013c0.016,0.028,0.041,0.09,0.025,0.152\r\n\t\t\t\tc-0.012,0.047-0.061,0.108-0.044,0.159v0.013c0.057-0.028,0.12-0.061,0.216-0.038c0.03,0.007,0.054,0.035,0.102,0.026\r\n\t\t\t\tc0.044-0.021,0.089-0.042,0.133-0.064c0.148-0.039,0.293,0.081,0.286,0.191c0.017,0.006,0.034,0.013,0.051,0.019\r\n\t\t\t\tc0.017,0.104,0.101,0.213,0.229,0.178c0.011-0.013,0.01-0.013,0.013-0.038h0.006c0.002,0.011,0.004,0.021,0.006,0.032h0.006\r\n\t\t\t\tc0.028-0.117,0.068-0.096,0.178-0.133c0.032-0.028,0.064-0.055,0.095-0.083c0.167,0.002,0.335,0.004,0.502,0.006\r\n\t\t\t\tc0.033-0.011,0.061-0.035,0.114-0.044c0.013,0.011,0.025,0.021,0.038,0.032c0.076-0.056,0.065-0.091,0.114-0.178\r\n\t\t\t\tc0.05-0.088,0.175-0.085,0.292-0.108c0.01-0.028-0.012-0.031-0.006-0.064c0.026-0.154,0.176-0.261,0.299-0.324v-0.019\r\n\t\t\t\tc-0.032-0.017-0.064-0.034-0.095-0.051c-0.023-0.053-0.047-0.106-0.07-0.159c0.031-0.147,0.225-0.389,0.356-0.438\r\n\t\t\t\tc0.002-0.004,0.004-0.009,0.006-0.013c-0.016-0.018-0.023-0.016-0.032-0.044c0.086-0.149,0.264-0.073,0.394-0.159\r\n\t\t\t\tc0.011-0.019,0.021-0.038,0.032-0.057c0.074-0.067,0.212-0.068,0.273-0.146c0.075-0.198-0.151-0.33,0.102-0.508\r\n\t\t\t\tc0.16-0.113,0.187,0.005,0.33,0.006c0.036,0,0.081-0.033,0.133-0.013c0.074,0.029,0.117,0.137,0.242,0.115\r\n\t\t\t\tc0.24-0.044,0.308-0.187,0.47-0.292c0.047-0.013,0.093-0.026,0.14-0.038c0.025-0.028,0.051-0.055,0.076-0.083\r\n\t\t\t\tc0.129-0.101,0.256-0.104,0.426-0.019c0.221,0.111,0.209,0.479,0.419,0.61c0.184,0.115,0.33,0.293,0.502,0.381\r\n\t\t\t\tc0.155,0.08,0.306,0.025,0.343,0.229c0.03-0.008,0.059-0.017,0.089-0.025H32.2c0.013,0.015,0.025,0.03,0.038,0.044\r\n\t\t\t\tc-0.011,0.004-0.021,0.009-0.032,0.013c-0.004,0.008-0.009,0.017-0.013,0.025c0.038-0.011,0.076-0.021,0.114-0.032\r\n\t\t\t\tc0.021,0.019,0.042,0.038,0.064,0.057c0.009,0.041,0.003,0.066-0.013,0.095c0.045,0.027,0.089,0.055,0.133,0.083\r\n\t\t\t\tc0.022,0.012,0.038-0.004,0.069-0.019c0.034,0.01,0.182,0.419,0.172,0.451v0.013c-0.022-0.002-0.047-0.004-0.069-0.006\r\n\t\t\t\tc-0.011,0.011-0.021,0.021-0.032,0.032c0.02,0.067,0.004,0.11-0.064,0.14v0.076c0.014,0.009,0.025,0.017,0.039,0.025h0.082\r\n\t\t\t\tc0.039-0.064,0.067-0.14,0.146-0.165c0.016-0.034,0.005-0.062,0-0.108c0.045-0.043,0.062-0.067,0.159-0.064\r\n\t\t\t\tc0.011-0.013,0.021-0.026,0.032-0.038c-0.026-0.042-0.026-0.089-0.006-0.134c-0.062-0.034-0.123-0.068-0.185-0.102\r\n\t\t\t\tc0.002-0.111,0.086-0.282,0.197-0.267c-0.007,0.095,0.142,0.064,0.202,0.108c0.031,0.023,0.007,0.04,0.025,0.076\r\n\t\t\t\tc0.036,0.023,0.072,0.047,0.108,0.07c0.015-0.044,0.03-0.089,0.045-0.133c-0.196-0.193-0.437-0.359-0.744-0.438\r\n\t\t\t\tc-0.011-0.013-0.021-0.025-0.032-0.038c0.032-0.027,0.049-0.054,0.096-0.07c-0.002-0.011-0.004-0.021-0.006-0.032\r\n\t\t\t\tc-0.047-0.073-0.328,0.011-0.414-0.076c-0.08-0.081-0.209-0.198-0.254-0.305c-0.028-0.067-0.023-0.157-0.064-0.21\r\n\t\t\t\tc-0.031-0.04-0.088-0.05-0.133-0.076c-0.15-0.087-0.231-0.143-0.273-0.343c0.027-0.031,0.056-0.043,0.076-0.083\r\n\t\t\t\tc-0.031-0.037-0.057-0.035-0.057-0.108c-0.015-0.002-0.03-0.004-0.044-0.006c0.008-0.021,0.017-0.042,0.025-0.064\r\n\t\t\t\tc0.044-0.029,0.154-0.064,0.248-0.07c0.002-0.017,0.004-0.034,0.006-0.051c0.08,0.003,0.086,0.005,0.159,0\r\n\t\t\t\tc0.011,0.017,0.021,0.034,0.032,0.051c-0.019,0.025-0.035,0.035-0.076,0.038c0.021,0.098,0.071,0.175,0.102,0.254\r\n\t\t\t\tc0.033-0.017,0.055-0.041,0.083-0.064c0.017-0.047,0.034-0.093,0.051-0.14c0.256,0.103,0.086,0.31,0.343,0.388\r\n\t\t\t\tc-0.036,0.002-0.072,0.004-0.108,0.006v0.006c0.075,0.108,0.184,0.165,0.266,0.267c0.025,0.026,0.06-0.025,0.109-0.013\r\n\t\t\t\tc0.006,0.001,0.152,0.061,0.164,0.07c0.049,0.035,0.09,0.097,0.141,0.133c0.133,0.095,0.271,0.155,0.406,0.248\r\n\t\t\t\tc0.03,0.036,0.06,0.072,0.09,0.108c0.041,0.021,0.084,0.042,0.127,0.064c0.002,0.051,0.002,0.06-0.039,0.07\r\n\t\t\t\tc-0.006,0.043,0.017,0.226,0.014,0.235c-0.018,0.032-0.034,0.064-0.051,0.095c0.021,0.032,0.037,0.045,0.037,0.102\r\n\t\t\t\tc-0.01-0.002-0.021-0.004-0.031-0.006c0.027,0.077,0.145,0.098,0.191,0.159c0.006,0.03,0.013,0.059,0.019,0.089\r\n\t\t\t\tc0.04,0.101,0.153,0.191,0.28,0.172c0.008,0.008,0.017,0.017,0.024,0.025v0.013c-0.026,0.034-0.065,0.029-0.108,0.038v0.006\r\n\t\t\t\tc0.037,0.055,0.072,0.11,0.108,0.165c0.103-0.009,0.228-0.061,0.349-0.025c0.078,0.022,0.119,0.081,0.224,0.089v0.006\r\n\t\t\t\tc-0.101,0.134-0.204-0.021-0.324-0.038c-0.039-0.005-0.082,0.035-0.159,0.032c-0.021,0.038-0.041,0.076-0.063,0.114\r\n\t\t\t\tc0.038,0.047,0.075,0.093,0.114,0.14c0.014,0.044-0.017,0.099-0.014,0.146c0.02,0.017,0.038,0.034,0.057,0.051\r\n\t\t\t\tc0.02-0.015,0.039-0.03,0.058-0.044c0.045-0.022,0.097,0.086,0.108,0.14c0.004,0.002,0.009,0.004,0.013,0.007\r\n\t\t\t\tc0.011-0.019,0.021-0.038,0.032-0.057c0.056-0.027,0.09-0.001,0.14,0.025c-0.005-0.136-0.056-0.195-0.095-0.292v-0.032\r\n\t\t\t\tc0.033,0.011,0.068,0.021,0.102,0.032h0.014c-0.006,0.013-0.014,0.025-0.02,0.038c0.018,0.006,0.034,0.013,0.051,0.019\r\n\t\t\t\tc0.02-0.035,0.029-0.044,0.083-0.045c-0.022-0.029-0.028-0.02-0.024-0.064c-0.021,0.004-0.043,0.009-0.064,0.013\r\n\t\t\t\tc-0.021-0.048-0.025-0.074-0.057-0.108c0.047-0.015,0.093-0.03,0.14-0.044c0.05,0.006,0.106,0.078,0.121,0.121\r\n\t\t\t\tc0.006,0.004,0.013,0.008,0.019,0.013c0.014-0.011,0.025-0.021,0.039-0.032c-0.014-0.04-0.025-0.081-0.039-0.121\r\n\t\t\t\tc0.008-0.002,0.018-0.004,0.025-0.006c-0.005-0.06-0.342-0.233-0.419-0.248v-0.006c0.044-0.01,0.071-0.023,0.103-0.044\r\n\t\t\t\tc-0.014-0.03-0.026-0.059-0.039-0.089v-0.007c0.031-0.019,0.043-0.017,0.084-0.006c0.014,0.026,0.015,0.037,0.013,0.07h0.006\r\n\t\t\t\tc0.006-0.002,0.013-0.004,0.019-0.006c0.008-0.011,0.018-0.021,0.025-0.032c-0.079-0.096-0.169-0.193-0.223-0.311\r\n\t\t\t\tc0.003-0.047,0.016-0.064,0.039-0.089c-0.012-0.013-0.021-0.025-0.032-0.038c0.034-0.015,0.06-0.023,0.075-0.057\r\n\t\t\t\tc0.009,0.002,0.018,0.004,0.025,0.006c0.002,0.009,0.004,0.017,0.006,0.025c-0.011,0.007-0.021,0.013-0.031,0.019\r\n\t\t\t\tc0.039,0.08,0.139,0.069,0.146,0.184c0.032,0.004,0.063,0.008,0.095,0.013h0.014c-0.035-0.042-0.079-0.056-0.108-0.108v-0.006\r\n\t\t\t\tc0.076,0.003,0.119,0.051,0.146,0.102c0.016-0.002,0.031-0.004,0.045-0.006c0.002-0.006,0.004-0.013,0.006-0.019\r\n\t\t\t\tc-0.023-0.041-0.061-0.046-0.083-0.089c0.011-0.008,0.021-0.017,0.032-0.026c0.037,0.007,0.066,0.015,0.082,0.045\r\n\t\t\t\tc0.018,0.015,0.035,0.03,0.052,0.045c0.006-0.004,0.013-0.009,0.019-0.013v-0.006c-0.062-0.077-0.15-0.094-0.19-0.197v-0.006\r\n\t\t\t\tc0.134-0.026,0.108,0.02,0.21-0.07c0.039,0.003,0.033,0.001,0.044,0.032c0.079,0,0.103-0.025,0.153-0.051\r\n\t\t\t\tc0.043,0.102,0.271-0.012,0.285,0.121c0.008-0.009,0.018-0.017,0.025-0.025c0.034,0.021,0.105,0.031,0.146,0.044\r\n\t\t\t\tc0.002,0.004,0.004,0.008,0.006,0.013c-0.032,0.019-0.064,0.038-0.096,0.057c-0.008,0.032-0.017,0.064-0.024,0.095\r\n\t\t\t\tc0.065-0.021,0.091-0.085,0.14-0.121c0.061-0.028,0.123-0.055,0.184-0.083c0.016-0.03,0.03-0.059,0.045-0.089\r\n\t\t\t\tc0.037-0.022,0.1,0.002,0.152-0.019c0.137-0.054,0.112,0.009,0.273,0.013c0.025-0.03,0.045-0.056,0.062-0.095\r\n\t\t\t\tc-0.045-0.06-0.142-0.051-0.209-0.089c-0.088-0.049-0.179-0.313-0.268-0.299v-0.051c0.035-0.035,0.047-0.056,0.102-0.076\r\n\t\t\t\tc0.016-0.084,0.038-0.153,0.051-0.222c0.025-0.013,0.108-0.018,0.121-0.038c0.004-0.04,0.008-0.08,0.014-0.121\r\n\t\t\t\tc0.035-0.199,0.06-0.377,0.285-0.388c0.023-0.049,0.047-0.097,0.07-0.146c-0.015-0.031-0.033-0.038-0.051-0.064\r\n\t\t\t\tc-0.031-0.104,0.094-0.097,0.152-0.133c0.199-0.119,0.104-0.321,0.51-0.311c0.008-0.015,0.018-0.03,0.025-0.045\r\n\t\t\t\tc0.006-0.004,0.013-0.008,0.019-0.013c0.021,0.025,0.042,0.051,0.063,0.076v0.013c-0.022,0.021-0.047,0.042-0.069,0.064v0.013\r\n\t\t\t\tc0.097,0.133,0.265,0.085,0.458,0.089c0.013,0.025,0.025,0.051,0.038,0.076c-0.067,0.074-0.25,0.106-0.331,0.184\r\n\t\t\t\tc0.004,0.008,0.009,0.017,0.013,0.025c0.2,0.038,0.367,0.002,0.254,0.267V23.7c0.285,0.052,0.158-0.026,0.337-0.089\r\n\t\t\t\tc0.051-0.004,0.103-0.009,0.153-0.013c0.034-0.028,0.067-0.055,0.103-0.083c0.06-0.018,0.088,0.017,0.133,0.025\r\n\t\t\t\tc0.037-0.006,0.076-0.013,0.113-0.019c0.023-0.032,0.053-0.072,0.064-0.114c-0.064-0.008-0.127-0.017-0.191-0.025\r\n\t\t\t\tc-0.072,0.007-0.141,0.064-0.234,0.038c-0.024-0.123-0.199-0.258-0.338-0.299c-0.002-0.004-0.004-0.008-0.006-0.013\r\n\t\t\t\tc0.104-0.029,0.197-0.016,0.306-0.019c0.036-0.039,0.065-0.066,0.083-0.127c0.004-0.002,0.009-0.004,0.013-0.006\r\n\t\t\t\tc0.015,0.013,0.03,0.025,0.044,0.038c0.021,0.013,0.02,0.008,0.045,0c0.051-0.015,0.061-0.049,0.102-0.063\r\n\t\t\t\tc0.125-0.023,0.25-0.047,0.375-0.07c0.023-0.025,0.048-0.051,0.07-0.076c0.074-0.008,0.148-0.017,0.223-0.025\r\n\t\t\t\tc0.013-0.013,0.007-0.002,0.013-0.025c0.093-0.017,0.187-0.034,0.28-0.051c0.011,0.021,0.021,0.042,0.031,0.064\r\n\t\t\t\tc-0.099,0.079-0.25,0.146-0.412,0.152c-0.008,0.011-0.018,0.021-0.026,0.032c0.073,0.053,0.147,0.098,0.196,0.178\r\n\t\t\t\tc-0.033,0.026-0.076,0.034-0.139,0.032c-0.029,0.081-0.084,0.13-0.09,0.229c-0.049,0.026-0.154,0.037-0.21,0.051\r\n\t\t\t\tc0.044,0.059,0.104,0.147,0.159,0.197c0.043,0.008,0.057-0.002,0.089-0.019c0.041,0.027,0.058,0.069,0.095,0.095\r\n\t\t\t\tc0.045,0.013,0.09,0.025,0.133,0.038c0.105,0.049,0.192,0.14,0.281,0.21c0.047,0.038,0.115,0.138,0.178,0.133\r\n\t\t\t\tc-0.004,0.019-0.008,0.038-0.014,0.057c0.102,0.075,0.311,0.102,0.381,0.21c0.016,0.053,0.03,0.106,0.045,0.159\r\n\t\t\t\tc0.08,0.289-0.088,0.388-0.324,0.445c-0.131,0.031-0.221-0.051-0.336-0.032c-0.053,0.017-0.106,0.034-0.159,0.051\r\n\t\t\t\tc-0.099,0.022-0.277-0.021-0.382-0.038c-0.125-0.021-0.15-0.13-0.291-0.076c-0.078-0.037-0.078-0.076-0.121-0.146\r\n\t\t\t\tc-0.029-0.021-0.103,0.03-0.172,0.013c-0.084-0.021-0.076-0.089-0.121-0.146c-0.174,0.111-0.323-0.021-0.541,0.032\r\n\t\t\t\tc-0.195,0.047-0.34,0.172-0.514,0.229c0.002,0.017,0.004,0.034,0.006,0.051c-0.139,0.074-0.203,0.007-0.318-0.013\r\n\t\t\t\tc-0.02,0.006-0.038,0.013-0.057,0.019c-0.094-0.008-0.187-0.017-0.28-0.025c-0.013,0.025-0.025,0.051-0.038,0.076\r\n\t\t\t\tc0.029,0.031,0.068,0.042,0.083,0.089c0.053-0.002,0.106-0.004,0.159-0.006v0.006c-0.072,0.023-0.189,0.032-0.28,0.032\r\n\t\t\t\tc-0.017,0.023-0.026,0.025-0.026,0.051c0.026,0.006,0.051,0.013,0.076,0.019c0.006,0.004,0.014,0.009,0.02,0.013\r\n\t\t\t\tc-0.006,0.008-0.014,0.017-0.02,0.025c-0.113-0.018-0.214-0.013-0.337-0.006c0.011-0.013,0.021-0.025,0.032-0.038\r\n\t\t\t\tc-0.036-0.015-0.055-0.014-0.09-0.007c-0.002,0.004-0.004,0.009-0.006,0.013c0.014,0.006,0.026,0.013,0.039,0.019v0.019\r\n\t\t\t\tc-0.067,0.022-0.143,0.01-0.16-0.044c-0.09,0.011-0.202,0.041-0.254,0.095c-0.035,0.037,0.004,0.057-0.069,0.064\r\n\t\t\t\tc-0.011,0.071-0.028,0.13-0.032,0.191c0.087-0.013,0.174-0.025,0.262-0.038v0.006c-0.016,0.024-0.031,0.039-0.058,0.051\r\n\t\t\t\tc-0.015,0.017-0.03,0.034-0.045,0.051c0.035,0.006,0.049,0.02,0.063,0.045c0.015,0.023-0.006,0.02-0.013,0.064h0.058\r\n\t\t\t\tc0.006,0.008,0.013,0.017,0.019,0.025c-0.021,0.025-0.052,0.036-0.089,0.045c-0.008,0.025,0.01,0.054,0.038,0.076\r\n\t\t\t\tc0.034,0.045,0.026,0.031-0.019,0.063c-0.033-0.003-0.056-0.025-0.09-0.044c-0.011,0.023-0.021,0.047-0.031,0.07v0.045\r\n\t\t\t\tc0.104,0.013,0.133,0.046,0.221,0.07c0.004,0.06-0.021,0.124,0.007,0.165c0.034,0.021,0.067,0.042,0.103,0.064\r\n\t\t\t\tc0.002,0.008,0.004,0.017,0.006,0.025c-0.028,0.011-0.056,0.021-0.084,0.032c0.006,0.013,0.014,0.025,0.02,0.038\r\n\t\t\t\tc0.068,0.006,0.136,0.013,0.203,0.019c0.002,0.004,0.004,0.008,0.006,0.013c-0.018,0.019-0.023,0.019-0.032,0.051\r\n\t\t\t\tc0.007,0.015,0.013,0.03,0.019,0.045c0.004,0.002,0.01,0.004,0.014,0.006c0.021-0.021,0.042-0.042,0.064-0.063\r\n\t\t\t\tc0.084-0.003,0.086,0.023,0.146,0.051c0.028,0.014,0.049-0.015,0.076-0.038c0.024,0.059,0.051,0.119,0.075,0.178\r\n\t\t\t\tc0.1,0.031,0.23-0.025,0.3,0.019c0.013-0.002,0.026-0.004,0.038-0.006c0.015-0.072,0.029-0.144,0.044-0.216\r\n\t\t\t\tc0.142-0.018,0.288,0.018,0.388,0.083c0.073,0.048,0.107,0.143,0.203,0.172c0.136,0.041,0.301-0.026,0.381-0.045\r\n\t\t\t\tc0.042-0.082,0.104-0.102,0.159-0.165c0.138,0.001,0.177,0.055,0.286,0.07c0.037-0.038,0.085-0.067,0.121-0.114h0.025\r\n\t\t\t\tc0.012,0.017,0.024,0.034,0.037,0.051c0.002,0.013,0.004,0.025,0.006,0.038c-0.039,0.043-0.09,0.068-0.127,0.114\r\n\t\t\t\tc0.018,0.03,0.034,0.059,0.051,0.089c-0.011,0.057-0.037,0.107-0.063,0.153c0.087,0.115,0.021,0.195,0.076,0.33\r\n\t\t\t\tc-0.146,0.144-0.206,0.407-0.306,0.578c-0.008,0.042-0.017,0.085-0.024,0.127c-0.041,0.134-0.077,0.258-0.173,0.337\r\n\t\t\t\tc0.074,0.186,0.148,0.373,0.223,0.559c0.012,0.018,0.023,0.014,0.051,0.032c-0.023,0.137-0.084,0.285-0.095,0.407\r\n\t\t\t\tc0.036,0.002,0.071,0.004,0.108,0.006c0.047,0.059,0.093,0.119,0.14,0.178c0.104,0.17,0.188,0.32,0.299,0.477\r\n\t\t\t\tc0.084,0.118,0.206,0.226,0.165,0.413c0.085,0.117,0.223,0.149,0.324,0.248c0.066,0.119,0.131,0.237,0.197,0.356\r\n\t\t\t\tc0.065,0.127-0.002,0.313,0.051,0.457c0.051,0.072,0.102,0.144,0.152,0.216c0.069,0.096,0.225,0.114,0.299,0.203\r\n\t\t\t\tc0.089,0.182,0.178,0.364,0.267,0.546c0.034,0.026,0.067,0.051,0.103,0.076c0.086,0.071,0.194,0.232,0.234,0.344\r\n\t\t\t\tc0.012,0.067,0.021,0.135,0.032,0.202c-0.009,0.039-0.042,0.068-0.032,0.128c0.03,0.172,0.113,0.353,0.165,0.495v0.216\r\n\t\t\t\tc0.095,0.205,0.384,0.166,0.554,0.057c0.057-0.047,0.113-0.092,0.172-0.139c0.094-0.029,0.217,0.012,0.299-0.014\r\n\t\t\t\tc0.128-0.039,0.228-0.133,0.343-0.172c0.078-0.025,0.163,0.016,0.229-0.02c0.068-0.035,0.086-0.123,0.151-0.158\r\n\t\t\t\tc0.238-0.131,0.547-0.129,0.769-0.268c0.062-0.037,0.047-0.087,0.076-0.158c0.029-0.07,0.139-0.143,0.211-0.172\r\n\t\t\t\tc0.121-0.041,0.24-0.082,0.361-0.121c0.07,0.008,0.141,0.017,0.21,0.024c0.024-0.015,0.052-0.03,0.076-0.045\r\n\t\t\t\tc0.045-0.091,0.017-0.205,0.108-0.248c0.096-0.045,0.186,0.021,0.272-0.051c0.032-0.027,0.026-0.071,0.044-0.114\r\n\t\t\t\tc0.049-0.12,0.189-0.153,0.35-0.159c0.008-0.116-0.013-0.304,0.025-0.419c0.057-0.024,0.123,0.021,0.172-0.006\r\n\t\t\t\tc0.057-0.042,0.064-0.147,0.102-0.21c0.043-0.04,0.086-0.08,0.128-0.121c0.059-0.074,0.114-0.154,0.159-0.242\r\n\t\t\t\tc-0.012-0.066-0.116-0.088-0.159-0.127c-0.064-0.08-0.128-0.161-0.191-0.241c-0.048-0.033-0.104,0.008-0.165-0.006\r\n\t\t\t\tc-0.089-0.049-0.178-0.098-0.267-0.146c-0.071-0.049-0.183-0.161-0.21-0.248c-0.021-0.066,0.011-0.151-0.014-0.203\r\n\t\t\t\tc-0.015-0.018-0.023-0.019-0.057-0.019c0.044-0.068,0.068-0.116,0.057-0.229h-0.006c-0.045,0.057-0.089,0.115-0.133,0.172\r\n\t\t\t\tc-0.113,0.09-0.215,0.143-0.311,0.267c-0.023,0.045-0.047,0.089-0.07,0.134c-0.035,0.031-0.051,0.02-0.07,0.07\r\n\t\t\t\tc-0.041,0.011-0.062,0.014-0.095-0.006c-0.002,0.011-0.004,0.021-0.006,0.032c-0.074,0.026-0.394,0.021-0.478-0.019\r\n\t\t\t\tc-0.019,0.017-0.022,0.015-0.031,0.044c-0.073,0.007-0.131-0.005-0.203-0.006c0.013-0.058-0.016-0.063-0.064-0.076\r\n\t\t\t\tc-0.037-0.089,0.072-0.127,0.076-0.216c0.001-0.028-0.018-0.268-0.025-0.28c-0.018-0.025-0.035-0.018-0.051-0.057\r\n\t\t\t\tc-0.015-0.002-0.029-0.004-0.044-0.006c-0.083,0.059-0.118,0.288-0.069,0.407c0.006,0.07,0.01,0.094-0.051,0.089\r\n\t\t\t\tc-0.046-0.059-0.109-0.211-0.115-0.311c-0.033-0.027-0.035-0.039-0.076-0.032c-0.032-0.107-0.057-0.116-0.012-0.229\r\n\t\t\t\tc-0.014-0.021-0.026-0.042-0.039-0.064c0.021-0.031,0.039-0.029,0.045-0.076c-0.062-0.082-0.205-0.072-0.248-0.172\r\n\t\t\t\tc-0.035-0.028-0.025-0.027-0.006-0.064c-0.037-0.017-0.058-0.015-0.113-0.013c-0.07-0.185-0.159-0.356-0.211-0.553\r\n\t\t\t\tc-0.035,0.009-0.071,0.017-0.107,0.026c-0.013-0.006-0.025-0.013-0.038-0.019c0.021-0.026,0.042-0.051,0.063-0.076h0.044\r\n\t\t\t\tc-0.009-0.04-0.017-0.08-0.025-0.121c0.026-0.034,0.169-0.04,0.235-0.038c0.055-0.054,0.047-0.118,0.127-0.152h0.02\r\n\t\t\t\tc-0.002,0.041,0,0.074,0.019,0.095c0.038,0.072,0.165,0.061,0.241,0.032c0.043,0.069,0.144,0.143,0.172,0.21v0.102\r\n\t\t\t\tc0.031,0.082,0.137,0.259,0.191,0.337c0.064,0.091,0.221,0.082,0.312,0.146c0.047,0.057,0.093,0.115,0.14,0.172\r\n\t\t\t\tc0.105,0.063,0.211,0.06,0.337,0.102c0.07,0.023,0.11,0.086,0.197,0.095c0.042-0.036,0.187-0.121,0.196-0.172\r\n\t\t\t\tc0.099-0.035,0.203-0.075,0.324-0.044c0.051,0.012,0.039,0.034,0.09,0.038c0.015,0.043,0.01,0.1,0.031,0.159\r\n\t\t\t\tc0.026,0.069,0.096,0.113,0.096,0.21c0.067,0.011,0.135,0.056,0.184,0.076h0.254c0.025,0.023,0.051,0.047,0.076,0.07\r\n\t\t\t\tc0.143,0.002,0.284,0.004,0.426,0.007c0.075,0.02,0.118,0.067,0.217,0.083c0.131,0.021,0.254-0.027,0.355-0.044h0.286\r\n\t\t\t\tc0.057-0.021,0.1-0.057,0.19-0.07c0.08,0.167,0.549-0.018,0.687-0.025c0.073,0.053,0.075,0.102,0.069,0.223\r\n\t\t\t\tc0.047,0.011,0.094,0.021,0.141,0.032c0.023,0.068,0.047,0.136,0.07,0.203c0.05,0.067,0.113,0.032,0.19,0.076\r\n\t\t\t\tc0.03,0.042,0.06,0.085,0.089,0.127c0.104,0.123,0.381,0.229,0.598,0.153c0.002,0.052-0.021,0.064-0.051,0.095\r\n\t\t\t\tc-0.143,0.145-0.215,0.023-0.369,0.076h-0.014c0.049,0.113,0.434,0.501,0.572,0.508c0.04-0.015,0.081-0.03,0.121-0.044\r\n\t\t\t\tc0.145-0.047,0.383-0.127,0.254-0.299c0.008-0.03,0.018-0.059,0.025-0.089c0.031-0.019,0.082-0.021,0.14-0.019\r\n\t\t\t\tc-0.019,0.072-0.015,0.207,0.013,0.286c0.016,0.046,0.116,0.085,0.102,0.146c-0.014,0.062-0.094,0.113-0.102,0.191\r\n\t\t\t\tc0.027,0.146,0.055,0.292,0.083,0.438c0.034,0.205,0.068,0.411,0.103,0.616c0.07,0.251,0.209,0.444,0.305,0.655\r\n\t\t\t\tc0.064,0.143,0.116,0.299,0.165,0.457c0.021,0.078,0.042,0.156,0.063,0.234c0.039,0.055,0.076,0.11,0.114,0.165\r\n\t\t\t\tc0.074,0.163,0.148,0.326,0.222,0.489c0.033,0.111,0.064,0.225,0.096,0.337c0.059,0.063,0.119,0.127,0.178,0.19\r\n\t\t\t\tc0.09-0.002,0.219-0.063,0.248-0.127c0.025-0.054,0.004-0.105,0.038-0.146c0.083-0.028,0.165-0.056,0.248-0.083\r\n\t\t\t\tc-0.013-0.027-0.034-0.042-0.058-0.057c0.025-0.072,0.052-0.145,0.076-0.217c0.037-0.021,0.108-0.021,0.172-0.019\r\n\t\t\t\tc0.023-0.118-0.033-0.248-0.019-0.362c0.024-0.213,0.286-0.457,0.108-0.654c0.057-0.142-0.035-0.297,0-0.451\r\n\t\t\t\tc0.021-0.047,0.041-0.094,0.063-0.141c0.06-0.048,0.118-0.061,0.19-0.019c0.049-0.031,0.078-0.104,0.096-0.165\r\n\t\t\t\tc0.059-0.032,0.17-0.01,0.229-0.051c0.065-0.045,0.049-0.168,0.108-0.217c0.063-0.031,0.127-0.063,0.19-0.094\r\n\t\t\t\tc0.072-0.046,0.111-0.143,0.179-0.184c0.046-0.028,0.088-0.032,0.127-0.064c0.097-0.119,0.194-0.237,0.292-0.356\r\n\t\t\t\tc0.078-0.054,0.207-0.041,0.292-0.095c0.106-0.067,0.147-0.181,0.229-0.273c-0.014-0.045-0.025-0.089-0.039-0.134\r\n\t\t\t\tc0.072-0.072,0.18-0.083,0.268-0.14c0.032-0.034,0.064-0.068,0.096-0.102c0.028,0.022,0.049,0.059,0.057,0.102\r\n\t\t\t\tc0.013,0.004,0.025,0.008,0.037,0.013c0.018-0.03,0.035-0.059,0.052-0.089c0.002-0.004,0.004-0.008,0.006-0.013\r\n\t\t\t\tc0.034,0.02,0.042,0.065,0.051,0.108h0.089c-0.005-0.031-0.002-0.042,0.006-0.07c0.02,0.01,0.039,0.021,0.058,0.032\r\n\t\t\t\tc0.013-0.021,0.024-0.042,0.038-0.063c0.008-0.006,0.017-0.013,0.025-0.019c0.008,0.021,0.016,0.043,0.025,0.064h0.038\r\n\t\t\t\tc0.026-0.034,0.046-0.064,0.051-0.121c0.004-0.002,0.009-0.004,0.013-0.006c0.021,0.038,0.043,0.076,0.063,0.115h0.045\r\n\t\t\t\tc0.017-0.069,0.026-0.078,0.095-0.095c0.022-0.07-0.005-0.129-0.031-0.184c-0.002-0.034-0.004-0.067,0.013-0.083\r\n\t\t\t\tc0.004-0.004,0.009-0.009,0.013-0.013c0.032,0.042,0.064,0.085,0.096,0.127c0.069-0.001,0.1-0.022,0.146-0.044\r\n\t\t\t\tc0.175,0.137,0.122,0.639,0.362,0.705c0.021,0.006,0.054-0.002,0.076,0.006v0.083c0.053,0.035,0.082,0.001,0.127,0.025\r\n\t\t\t\tc0.067,0.037,0.106,0.146,0.133,0.229v0.006c-0.034,0.006-0.068,0.013-0.103,0.019c0.028,0.031,0.065,0.053,0.108,0.07\r\n\t\t\t\tc0.011-0.019,0.021-0.038,0.031-0.057c0.004-0.002,0.01-0.004,0.014-0.006c0.079,0.128,0.174,0.362,0.146,0.578\r\n\t\t\t\tc-0.018,0.129-0.099,0.221-0.103,0.361c0.015,0.012,0.03,0.021,0.044,0.033c0.047-0.039,0.073-0.066,0.152-0.076\r\n\t\t\t\tc-0.006,0.024-0.012,0.051-0.019,0.076c0.011,0.011,0.021,0.021,0.032,0.031h0.025c0.029-0.023,0.031-0.041,0.082-0.044v0.058\r\n\t\t\t\tc0.08,0.072,0.095-0.08,0.153-0.121c0.185-0.133,0.273-0.031,0.306-0.344H56.3c0.085,0.062,0.089,0.235,0.197,0.268\r\n\t\t\t\tc0.026,0.18,0.051,0.359,0.075,0.54c0.048,0.163,0.152,0.309,0.203,0.45c0.054,0.145,0.031,0.291,0.025,0.433\r\n\t\t\t\tc0.02,0.01,0.036,0.013,0.07,0.013c-0.033,0.078-0.145,0.34-0.114,0.413c0.017,0.013,0.034,0.025,0.052,0.038\r\n\t\t\t\tc-0.064,0.162-0.162,0.391-0.103,0.566c0.024-0.012,0.051-0.021,0.075-0.032c0.086,0.091,0.166,0.136,0.211,0.272\r\n\t\t\t\tc0.02,0.008,0.033,0.01,0.064,0c0.043,0.058,0.051,0.1,0.051,0.197c0.011,0.006,0.021,0.014,0.031,0.02\r\n\t\t\t\tc0.034,0.043,0.078,0.029,0.121,0.006c0.004,0.004,0.008,0.008,0.014,0.013c-0.019,0.14-0.008,0.3,0.043,0.445\r\n\t\t\t\tc0.025,0.047,0.052,0.093,0.076,0.14c0.01,0.069-0.023,0.131,0.014,0.191c0.039,0.033,0.08,0.068,0.121,0.102\r\n\t\t\t\tc0.016,0.021,0.021,0.057,0.031,0.088C55.357,48.795,44.764,58,32,58z M20.929,9.847c0.001,0,0.002,0,0.003,0\r\n\t\t\t\tc0.002,0.003,0.004,0.006,0.006,0.009c-0.001,0-0.002,0-0.003,0C20.933,9.853,20.931,9.85,20.929,9.847z M43.915,25.038\r\n\t\t\t\tc-0.028,0.012-0.031-0.019-0.069-0.013c-0.035,0.011-0.068,0.021-0.103,0.032c-0.005-0.002-0.009-0.004-0.013-0.006\r\n\t\t\t\tc-0.002-0.023-0.004-0.047-0.006-0.07c-0.014-0.004-0.026-0.008-0.039-0.013c-0.004,0.017-0.008,0.034-0.013,0.051\r\n\t\t\t\tc-0.048-0.011-0.054-0.013-0.108-0.006c-0.017-0.034-0.033-0.068-0.051-0.102c-0.066,0.075-0.078,0.271-0.043,0.369\r\n\t\t\t\tc0.038,0.021,0.133,0.008,0.215,0.006c-0.015,0.019-0.029,0.038-0.043,0.057c0.004,0.013,0.008,0.025,0.012,0.038\r\n\t\t\t\tc0.015,0.023,0.043,0.036,0.07,0.045v0.019c-0.045-0.004-0.088-0.008-0.133-0.013c-0.011,0.015-0.021,0.03-0.031,0.045v0.044\r\n\t\t\t\tc0.041-0.029,0.065-0.018,0.127-0.006c0.023,0.067,0.084,0.076,0.113,0.133c0.014,0.054-0.037,0.118-0.037,0.203\r\n\t\t\t\tc0,0.04-0.022,0.09-0.02,0.108c0.018,0.102,0.109,0.354,0.025,0.419c-0.062,0.047-0.192,0.025-0.281,0.045\r\n\t\t\t\tc-0.313,0.07-0.747,0.1-0.857-0.197c-0.119-0.032-0.251-0.062-0.35-0.095c-0.053-0.198,0.057-0.392,0.057-0.559\r\n\t\t\t\tc0.006-0.004,0.014-0.008,0.02-0.013c0.017,0.015,0.019,0.017,0.024,0.044c0.007,0.004,0.013,0.008,0.019,0.013\r\n\t\t\t\tc0.007-0.03,0.014-0.059,0.02-0.089c0.02-0.009,0.021-0.011,0.044-0.006c-0.012-0.168,0.011-0.45,0.28-0.337h0.006\r\n\t\t\t\tc-0.002-0.011-0.004-0.021-0.006-0.032c-0.057-0.128-0.189-0.036-0.242-0.108c-0.029-0.042-0.076-0.085-0.095-0.127\r\n\t\t\t\tc-0.023-0.049-0.009-0.096-0.038-0.133c-0.041-0.053-0.105-0.142-0.159-0.184c-0.019-0.006-0.038-0.013-0.058-0.019\r\n\t\t\t\tc-0.049-0.07-0.076-0.16-0.139-0.216c-0.016-0.004-0.031-0.009-0.045-0.013c-0.031-0.047,0.006-0.079-0.044-0.108\r\n\t\t\t\tc-0.057-0.081-0.018-0.217,0.019-0.311v-0.019H41.92c-0.011,0.038-0.021,0.076-0.031,0.114h-0.007\r\n\t\t\t\tc-0.001-0.113-0.014-0.227-0.114-0.286c-0.031-0.019-0.074-0.01-0.088-0.045v-0.032c0.004-0.075,0.082-0.081,0.113-0.127\r\n\t\t\t\tc0.062-0.092,0.092-0.195,0.121-0.286c0.004-0.006,0.008-0.013,0.013-0.019c0.105,0.051,0.2-0.03,0.28-0.076\r\n\t\t\t\tc0.016,0.008,0.029,0.017,0.044,0.025c0.017-0.02,0.021-0.029,0.019-0.07c0.103-0.023,0.135-0.121,0.217-0.153\r\n\t\t\t\tc0.039-0.002,0.08-0.004,0.121-0.006c0.129-0.041,0.242-0.21,0.412-0.197c0.097,0.007,0.138,0.073,0.211,0.089\r\n\t\t\t\tc0.076,0.017,0.097-0.038,0.133-0.051c0.057,0.013,0.113,0.025,0.172,0.038c0.015,0.025,0.029,0.051,0.045,0.076\r\n\t\t\t\tc-0.018,0.017-0.034,0.034-0.051,0.051c0.047,0.164,0.01,0.207-0.084,0.33c0.005,0.058,0.07,0.083,0.115,0.095\r\n\t\t\t\tc0.002,0.004,0.004,0.008,0.006,0.013c-0.139-0.013-0.275-0.025-0.414-0.038c-0.037,0.007-0.047,0.027-0.102,0.026\r\n\t\t\t\tc-0.013,0.034-0.025,0.068-0.037,0.102c-0.029,0.036-0.058,0.02-0.076,0.076c0.026,0.039,0.063,0.068,0.113,0.083\r\n\t\t\t\tc0.006,0.008,0.014,0.017,0.02,0.026c-0.062,0.044-0.215-0.025-0.338-0.019c-0.006,0.006-0.012,0.013-0.019,0.019v0.083\r\n\t\t\t\tc0.039,0.026,0.134,0.043,0.185,0.051c0.027,0.155,0.139,0.203,0.133,0.368h0.089c0.037,0.027,0.071,0.069,0.089,0.114\r\n\t\t\t\tc0.089,0.012,0.165-0.009,0.234,0.064c-0.033,0.064-0.069,0.143-0.094,0.203c0.022,0.038-0.002,0.077,0.019,0.121\r\n\t\t\t\tc0.013,0.006,0.026,0.013,0.038,0.019c-0.002,0.019-0.004,0.038-0.006,0.057c0.013,0.029,0.055,0.079,0.076,0.114v0.013\r\n\t\t\t\tc0.026-0.072,0.01-0.226,0.031-0.305c0.088-0.015,0.174-0.031,0.273-0.025c0.015,0.056,0.023,0.174,0.051,0.216\r\n\t\t\t\tc0.046,0.071,0.146,0.075,0.197,0.178c-0.016,0.031-0.026,0.037-0.057,0.051c-0.041-0.008-0.043-0.024-0.084-0.032\r\n\t\t\t\tC43.898,24.987,43.907,25.012,43.915,25.038z M35.799,24.777c-0.004,0.004-0.008,0.008-0.013,0.013\r\n\t\t\t\tc-0.024-0.022-0.041-0.037-0.083-0.045c0.004-0.011,0.009-0.021,0.013-0.032c0.017,0.008,0.034,0.017,0.052,0.025\r\n\t\t\t\tC35.788,24.751,35.789,24.757,35.799,24.777z M57.643,35.618c-0.367,0.016-0.324-0.226-0.388-0.502\r\n\t\t\t\tc-0.013,0.004-0.024,0.008-0.038,0.013c-0.056-0.044-0.033-0.145-0.051-0.222c-0.062,0.004-0.119,0.022-0.178,0.013\r\n\t\t\t\tc-0.153-0.249,0.123-0.633,0.191-0.826c-0.005-0.053-0.01-0.105-0.014-0.158c0.02-0.082,0.062-0.115,0.025-0.217\r\n\t\t\t\tc0.092-0.07,0.145-0.061,0.291-0.051c-0.006,0.076-0.012,0.152-0.019,0.229c0.058,0.002,0.08,0.024,0.121,0.033\r\n\t\t\t\tc0.078,0.014,0.106-0.055,0.19-0.007c0.039,0.04,0.076,0.08,0.115,0.121c0.002,0.001,0.004,0.001,0.006,0.002\r\n\t\t\t\tc-0.043,0.556-0.11,1.104-0.188,1.649C57.688,35.667,57.663,35.645,57.643,35.618z M8.363,28.628\r\n\t\t\t\tc-0.002-0.006-0.004-0.013-0.006-0.019v0.019H8.363z M8.35,28.59c-0.001-0.011-0.009-0.009-0.011-0.018\r\n\t\t\t\tc0.001,0.006,0.003,0.012,0.004,0.018H8.35z M42.555,41.414c-0.037-0.059-0.106-0.061-0.14-0.133\r\n\t\t\t\tc-0.067-0.055-0.062-0.042-0.127,0.013c0.009,0.101,0.008,0.235-0.07,0.299c-0.044,0.036-0.079,0.04-0.102,0.103\r\n\t\t\t\tc-0.039-0.014-0.048-0.034-0.063-0.07c-0.019-0.002-0.037-0.004-0.057-0.006c-0.003,0.068,0.016,0.109,0.038,0.165\r\n\t\t\t\tc-0.005,0.011-0.009,0.021-0.013,0.032c-0.024,0.016-0.041,0.024-0.084,0.024c-0.002,0.005-0.004,0.009-0.006,0.013\r\n\t\t\t\tc0.004,0.045,0.026,0.06,0.045,0.103c-0.022,0.024-0.047,0.051-0.069,0.076c-0.039-0.005-0.04-0.009-0.052-0.038H41.85\r\n\t\t\t\tc-0.031,0.027-0.062,0.055-0.095,0.083c0.009,0.034,0.022,0.045,0.038,0.069c-0.014,0.01-0.025,0.018-0.038,0.026\r\n\t\t\t\tc-0.024,0.011-0.026-0.009-0.063-0.019c-0.047,0.029-0.094,0.059-0.141,0.089c0.004,0.024,0.01,0.051,0.014,0.075\r\n\t\t\t\tc-0.071,0.018-0.121-0.053-0.211-0.012c-0.017,0.019-0.033,0.037-0.051,0.057c-0.039,0.02-0.074-0.014-0.107-0.014\r\n\t\t\t\tc-0.025,0.02-0.051,0.039-0.076,0.058c-0.044,0.002-0.09,0.004-0.133,0.006c0,0.213-0.084,0.245-0.141,0.381\r\n\t\t\t\tc-0.025,0.101,0.069,0.325,0.121,0.388c-0.015,0.032-0.029,0.064-0.044,0.096c0.032,0.039,0.063,0.076,0.095,0.115\r\n\t\t\t\tc0.03,0.114-0.166,0.512-0.216,0.559c-0.024,0.009-0.051,0.017-0.075,0.025c-0.045,0.031-0.103,0.232-0.09,0.311\r\n\t\t\t\tc0.053,0.097,0.106,0.195,0.159,0.292c-0.013,0.049-0.024,0.097-0.038,0.146c-0.031,0.145,0.061,0.157,0.083,0.229\r\n\t\t\t\tc0.017,0.051-0.006,0.092,0.019,0.127c0.084,0.119,0.263,0.084,0.344,0.21c0.137-0.008,0.17-0.09,0.285-0.121\r\n\t\t\t\tc0.07-0.009,0.141-0.018,0.211-0.025c0.132-0.082,0.205-0.498,0.261-0.674c0.149-0.486,0.302-0.971,0.451-1.455\r\n\t\t\t\tc0.028-0.096-0.011-0.189,0.019-0.3c0.026-0.093,0.125-0.146,0.146-0.254c-0.047-0.071-0.09-0.157-0.09-0.272\r\n\t\t\t\tc0.012-0.006,0.021-0.014,0.033-0.02c0.004-0.004,0.008-0.009,0.013-0.013c0.028,0.053,0.069,0.133,0.12,0.165\r\n\t\t\t\tc0.035-0.029,0.115-0.123,0.103-0.191c-0.026-0.053-0.055-0.105-0.083-0.158C42.622,41.831,42.634,41.518,42.555,41.414z\r\n\t\t\t\t M10.068,26.772c0.002,0.004,0.003,0.011,0.005,0.016v-0.016H10.068z M8.337,28.565c0,0.001-0.001,0.002-0.001,0.002\r\n\t\t\t\tc0.001,0.003,0.003,0.003,0.003,0.005C8.339,28.57,8.338,28.567,8.337,28.565z M8.356,28.609\r\n\t\t\t\tc-0.002-0.006-0.004-0.013-0.006-0.019v0.019H8.356z M14.998,24.644c-0.002-0.004-0.004-0.009-0.006-0.013\r\n\t\t\t\tc-0.021-0.006-0.042-0.013-0.064-0.019c-0.026,0.019-0.046,0.037-0.057,0.07c-0.004,0.002-0.009,0.004-0.013,0.006\r\n\t\t\t\tc-0.032-0.041-0.059-0.112-0.076-0.165v-0.007c0.122-0.058,0.118-0.025,0.216-0.114V24.37c-0.015-0.006-0.03-0.013-0.045-0.019\r\n\t\t\t\tc-0.042,0.02-0.082,0.042-0.14,0.045c-0.035-0.024-0.077-0.055-0.095-0.095c-0.006-0.006-0.013-0.013-0.019-0.019\r\n\t\t\t\tc0.049-0.04,0.097-0.081,0.146-0.121c0.013-0.015,0.026-0.03,0.038-0.045c-0.085-0.053-0.196-0.098-0.331-0.083\r\n\t\t\t\tc-0.013,0.023-0.025,0.047-0.038,0.07c-0.139,0.028-0.257-0.06-0.343-0.127v-0.019c0.036-0.036,0.072-0.072,0.108-0.108\r\n\t\t\t\tc-0.044-0.017-0.089-0.034-0.133-0.051c-0.111,0.022-0.1,0.134-0.21,0.159c-0.006-0.249,0.344-0.399,0.241-0.604\r\n\t\t\t\tc0.046-0.013,0.102-0.029,0.14-0.045c0.002-0.008,0.004-0.017,0.006-0.025c-0.004-0.011-0.009-0.021-0.013-0.032\r\n\t\t\t\tc-0.013-0.004-0.025-0.008-0.038-0.013c-0.078,0.021-0.157,0.042-0.235,0.064c-0.19,0.122-0.428,0.489-0.508,0.724\r\n\t\t\t\tc0.032,0.038,0.063,0.076,0.095,0.114c-0.085,0.09-0.178,0.003-0.235,0.165c-0.004,0.008-0.008,0.017-0.013,0.025\r\n\t\t\t\tc0.049,0.013,0.098,0.025,0.146,0.038c-0.09,0.09-0.264,0.111-0.324,0.229c-0.016,0.029,0.012,0.075,0.026,0.114\r\n\t\t\t\tc0.097-0.011,0.195-0.021,0.292-0.032c0.121,0.017,0.242,0.034,0.362,0.051c0.11,0.02,0.23-0.003,0.248-0.083\r\n\t\t\t\tc0.034-0.004,0.068-0.008,0.102-0.013v0.096c0.004,0.006,0.008,0.013,0.013,0.019c0.013-0.002,0.025-0.004,0.038-0.006\r\n\t\t\t\tc0.033-0.011,0.042-0.037,0.051-0.07c0.057,0.006,0.114,0.013,0.172,0.019v0.013c-0.121,0.055-0.153,0.168-0.305,0.21\r\n\t\t\t\tc-0.012,0.026-0.007,0.015,0,0.045c0.033,0.016,0.082,0.021,0.133,0.019c0.096-0.105,0.276-0.194,0.343-0.311\r\n\t\t\t\tc0.011,0.004,0.021,0.008,0.032,0.013c0.021,0.028,0.042,0.055,0.064,0.083c-0.002,0.068-0.031,0.109-0.064,0.146\r\n\t\t\t\tc0.002,0.017,0.004,0.034,0.006,0.051c0.017,0.002,0.034,0.004,0.051,0.006c0.025-0.021,0.051-0.042,0.076-0.063\r\n\t\t\t\tc0.004,0.036,0.008,0.072,0.013,0.108c0.053,0.015,0.106,0.03,0.159,0.045c0.031-0.093,0.108-0.194,0.095-0.299\r\n\t\t\t\tC14.985,24.767,14.974,24.733,14.998,24.644z M30.531,24.606c-0.011,0.008-0.021,0.017-0.032,0.025\r\n\t\t\t\tc0.014,0.032,0.014,0.022,0.057,0.019v0.006c-0.011,0.011-0.021,0.021-0.032,0.032c-0.002,0.004-0.004,0.008-0.006,0.013\r\n\t\t\t\tc0.021,0.009,0.042,0.017,0.063,0.026c-0.011,0.015-0.021,0.03-0.032,0.044c0.011,0.009,0.021,0.017,0.032,0.025\r\n\t\t\t\tc0.019,0.002,0.038,0.004,0.057,0.006v0.032c0.013,0.002,0.025,0.004,0.038,0.006c0.109-0.111,0.08-0.372,0.076-0.559\r\n\t\t\t\tc-0.008-0.006-0.017-0.013-0.025-0.019c-0.004,0.002-0.008,0.004-0.013,0.006c-0.004,0.03-0.008,0.059-0.013,0.089\r\n\t\t\t\tc-0.002,0.003-0.171,0.074-0.21,0.114c0.001,0.025,0.001,0.024,0.019,0.044c-0.009,0.007-0.017,0.013-0.026,0.019\r\n\t\t\t\tC30.493,24.58,30.509,24.579,30.531,24.606z M35.215,27.014c0.143-0.008,0.284-0.017,0.426-0.025\r\n\t\t\t\tc0.018-0.028,0.025-0.06,0.032-0.102c-0.045,0.028-0.097,0.035-0.146,0.064c-0.008-0.004-0.018-0.009-0.025-0.013\r\n\t\t\t\tc0.004-0.017,0.01-0.034,0.014-0.051c-0.002-0.002-0.004-0.004-0.007-0.006c-0.098,0.011-0.135,0.002-0.21-0.032\r\n\t\t\t\tc-0.07,0.006-0.14,0.013-0.21,0.019c-0.021-0.019-0.014-0.025-0.051-0.032c0.006-0.009,0.013-0.017,0.019-0.026\r\n\t\t\t\tc-0.004-0.006-0.008-0.013-0.013-0.019c-0.015,0.008-0.03,0.017-0.044,0.026c-0.034-0.012-0.057-0.014-0.076-0.038v-0.013\r\n\t\t\t\tc-0.011,0.013-0.01,0.012-0.013,0.038h-0.032c-0.006,0.032-0.013,0.063-0.02,0.095c0.088,0.039,0.261,0.031,0.356,0.07\r\n\t\t\t\tL35.215,27.014L35.215,27.014z M32.367,26.423c0.035-0.028,0.056-0.073,0.095-0.095c0.013-0.037-0.026-0.055-0.045-0.095\r\n\t\t\t\tc-0.036-0.095,0.072-0.224,0.103-0.292v-0.006c-0.059-0.014-0.121,0.013-0.172,0.025c-0.214,0.053-0.3,0.057-0.458-0.044\r\n\t\t\t\tc-0.091,0.081-0.209,0.007-0.254,0.152c0.043,0.085,0.104,0.06,0.191,0.102C32.004,26.254,32.172,26.367,32.367,26.423z\r\n\t\t\t\t M21.217,10.482c0.035-0.019,0.07-0.038,0.105-0.057c0.055-0.019,0.109-0.037,0.164-0.056c0.003-0.008,0.007-0.017,0.01-0.025\r\n\t\t\t\tc-0.104,0.008-0.218,0.043-0.302,0.036c-0.066,0.038-0.132,0.076-0.197,0.114c-0.025,0.014-0.069,0.026-0.071,0.048\r\n\t\t\t\tc0.004,0.002,0.008,0.004,0.013,0.006c0.045-0.002,0.096-0.023,0.138-0.036C21.123,10.502,21.17,10.492,21.217,10.482z\r\n\t\t\t\t M16.682,18.341c-0.01,0.031-0.094,0.043-0.109,0.087c0.001,0.002,0.001,0.003,0.002,0.005c0.076-0.011,0.12-0.032,0.157-0.06\r\n\t\t\t\tc0.001-0.015-0.005-0.022-0.016-0.032C16.705,18.339,16.7,18.338,16.682,18.341z M30.575,25.66\r\n\t\t\t\tc0.019-0.025,0.038-0.051,0.057-0.076c0.054-0.026,0.099,0,0.146,0.013c0.02-0.058,0.068-0.112,0.057-0.197\r\n\t\t\t\tc-0.006-0.047-0.013-0.093-0.019-0.14c0.006-0.036,0.036-0.069,0.044-0.095c0.031-0.095-0.097-0.241-0.153-0.26\r\n\t\t\t\tc-0.085,0.08-0.164,0.087-0.311,0.114c-0.004,0.004-0.008,0.008-0.013,0.013c0.017,0.081,0.077,0.106,0.095,0.197\r\n\t\t\t\tC30.517,25.416,30.356,25.615,30.575,25.66z M30.512,36.559c-0.028,0.032-0.044,0.092-0.089,0.108v0.058\r\n\t\t\t\tc0.013,0.004,0.025,0.008,0.038,0.012c0.082-0.01,0.066-0.094,0.127-0.127C30.57,36.578,30.553,36.568,30.512,36.559z\r\n\t\t\t\t M26.304,19.147c0.035-0.024,0.05-0.049,0.076-0.083c0.002-0.004,0.004-0.009,0.006-0.013c0.025,0.017,0.051,0.034,0.076,0.051\r\n\t\t\t\tc-0.033,0.09-0.136,0.211-0.089,0.305v0.013c0.082-0.047,0.165-0.094,0.235-0.152h0.025c0.006,0.028,0.013,0.055,0.019,0.083\r\n\t\t\t\tc-0.02,0.027-0.04,0.046-0.076,0.057c-0.009,0.057,0.008,0.105,0.051,0.127c0.034,0.062-0.106,0.181-0.121,0.28\r\n\t\t\t\tc0.051,0.013,0.102,0.025,0.153,0.038c0.024-0.018,0.033-0.026,0.038-0.064c0.038,0.011,0.076,0.021,0.114,0.032\r\n\t\t\t\tc0.138-0.008,0.086-0.079,0.267-0.032c-0.045,0.057-0.103,0.092-0.121,0.178c0.025,0.053,0.055,0.069,0.089,0.108\r\n\t\t\t\tc0.036-0.007,0.072-0.013,0.108-0.019h0.006c-0.005,0.156-0.076,0.23-0.013,0.356v0.006c-0.215,0.003-0.415,0.024-0.489,0.172\r\n\t\t\t\tv0.006h0.133v0.013c0.023,0.036,0.008,0.103,0.006,0.159c-0.078,0.113-0.267,0.119-0.299,0.178\r\n\t\t\t\tc-0.011,0.011-0.021,0.021-0.032,0.032c0.025,0.021,0.051,0.042,0.076,0.064c0.085,0.002,0.169,0.004,0.254,0.006\r\n\t\t\t\tc0.061,0.03,0.123,0.059,0.184,0.089h0.013c0.09-0.005,0.137-0.049,0.203-0.076c-0.029,0.06-0.086,0.099-0.089,0.172\r\n\t\t\t\tc-0.131,0.033-0.232-0.046-0.343,0.006c-0.036,0.041-0.02,0.083-0.095,0.07c-0.013,0.136-0.232,0.282-0.35,0.318\r\n\t\t\t\tc-0.002,0.004-0.004,0.009-0.006,0.013c0.032,0.009,0.064,0.017,0.095,0.026c0.015,0.015,0.03,0.03,0.045,0.045\r\n\t\t\t\tc0.052-0.069,0.127-0.122,0.216-0.153c0.045,0.021,0.07,0.005,0.095-0.013c0.108,0.059,0.203,0.111,0.21-0.089\r\n\t\t\t\tc0.2-0.024,0.253-0.004,0.439,0.013c-0.004-0.015-0.009-0.03-0.013-0.044c0.085-0.013,0.17-0.025,0.254-0.038\r\n\t\t\t\tc0.048-0.007,0.063,0.026,0.095,0.032c0.042-0.011,0.085-0.021,0.127-0.032c0.061,0.009,0.123,0.017,0.184,0.025\r\n\t\t\t\tc0.074-0.014,0.1-0.073,0.203-0.064c0.004-0.059,0.085-0.077,0.133-0.089V21.17h-0.013c-0.014-0.009-0.237-0.029-0.299-0.032\r\n\t\t\t\tV21.13c0.107-0.031,0.369-0.204,0.4-0.299c-0.006-0.055-0.013-0.11-0.019-0.165c-0.087-0.068-0.271-0.169-0.369-0.032\r\n\t\t\t\tc-0.034-0.007-0.068-0.013-0.102-0.019c0.135-0.201,0.055-0.175-0.076-0.318c-0.002-0.002,0.009-0.153-0.025-0.203\r\n\t\t\t\tc-0.049-0.064-0.097-0.127-0.146-0.191c-0.055-0.03-0.115-0.006-0.153-0.051c-0.069-0.084-0.056-0.196-0.095-0.299\r\n\t\t\t\tc-0.031-0.053-0.237-0.227-0.318-0.222c-0.131,0.007-0.14,0.075-0.305,0.006c-0.002-0.004-0.004-0.008-0.006-0.013\r\n\t\t\t\tc0.123,0.003,0.258-0.01,0.311-0.076c0.004-0.002,0.008-0.004,0.013-0.006c-0.034-0.019-0.068-0.038-0.102-0.057\r\n\t\t\t\tc-0.002-0.004-0.004-0.009-0.006-0.013c0.198-0.003,0.277-0.285,0.331-0.426c0.013-0.025,0.001-0.021-0.013-0.051\r\n\t\t\t\tc-0.1-0.073-0.46-0.024-0.623-0.025c-0.006-0.009-0.013-0.017-0.019-0.025c0.017-0.197,0.253-0.175,0.324-0.311\r\n\t\t\t\tc0.035-0.032,0.013-0.032-0.006-0.07c-0.129-0.052-0.288,0.077-0.407,0.045c-0.038-0.023-0.076-0.047-0.114-0.07\r\n\t\t\t\tc-0.019,0.025-0.038,0.051-0.057,0.076c0.019,0.03,0.038,0.059,0.057,0.089c-0.04,0.013-0.08,0.025-0.121,0.038\r\n\t\t\t\tc0.025,0.051,0.051,0.102,0.076,0.152c-0.05,0.002-0.083-0.003-0.127-0.019c-0.039,0.01-0.054,0.039-0.07,0.07\r\n\t\t\t\tc0.027,0.032,0.055,0.064,0.083,0.095c-0.019,0.03-0.061,0.028-0.076,0.051c0.009,0.04,0.017,0.08,0.026,0.121\r\n\t\t\t\tc0,0-0.102,0.182-0.114,0.203C26.262,19.126,26.283,19.136,26.304,19.147z M23.552,15.69c0.122,0.059,0.229,0.003,0.261-0.114\r\n\t\t\t\tc0.002-0.025,0.004-0.051,0.006-0.076c0.061-0.015,0.123-0.03,0.184-0.045c0.041-0.073,0.083-0.252,0.019-0.337\r\n\t\t\t\tc-0.041-0.048-0.155-0.016-0.222-0.038c-0.027-0.017-0.055-0.034-0.083-0.051c-0.016-0.036-0.003-0.092,0.013-0.134\r\n\t\t\t\tc-0.008-0.015-0.017-0.03-0.025-0.045c-0.139-0.061-0.251-0.035-0.311-0.172c-0.039-0.024-0.106-0.033-0.172-0.032v0.159\r\n\t\t\t\tc-0.129,0.091-0.311,0.046-0.483,0.025c0.022,0.049,0.05,0.087,0.044,0.146c-0.091-0.002-0.162-0.057-0.191-0.121\r\n\t\t\t\tc-0.062-0.048-0.149-0.012-0.216,0.038c0.011,0.034,0.021,0.068,0.032,0.102v0.007c-0.017,0.006-0.034,0.013-0.051,0.019\r\n\t\t\t\tc-0.074-0.049-0.145-0.122-0.178-0.21h-0.006c-0.017,0.011-0.034,0.021-0.051,0.032c-0.031,0.052-0.008,0.145-0.006,0.229\r\n\t\t\t\tc-0.045,0.048-0.112,0.04-0.172,0.076c-0.032,0.029-0.064,0.059-0.095,0.089c-0.034-0.049-0.068-0.097-0.102-0.146\r\n\t\t\t\tc-0.02-0.043,0.074-0.098,0.057-0.178c-0.035-0.162-0.262-0.199-0.413-0.241c-0.015,0.017-0.03,0.034-0.044,0.051\r\n\t\t\t\tc-0.004,0.004-0.008,0.008-0.013,0.013c0.042,0.031,0.085,0.071,0.102,0.127v0.006c-0.138,0.096-0.242-0.171-0.324,0.006\r\n\t\t\t\tc0.025,0.034,0.051,0.068,0.076,0.102c0.006,0.006,0.013,0.013,0.019,0.019c-0.08,0.017-0.198,0.021-0.261,0.051\r\n\t\t\t\tc-0.006,0.028-0.008,0.049,0.006,0.07c0.103,0.167,0.277-0.021,0.451,0.007c0.098,0.015,0.167,0.047,0.241,0.076\r\n\t\t\t\tc0.004,0.021,0.009,0.043,0.013,0.064c-0.006,0.019-0.013,0.038-0.019,0.057c-0.108,0.081-0.481,0.067-0.534,0.165\r\n\t\t\t\tc-0.002,0.006-0.004,0.013-0.006,0.019c0.008,0.013,0.017,0.025,0.025,0.038c0.081,0.034,0.262-0.022,0.349-0.038\r\n\t\t\t\tc0.073,0.086,0.103,0.124,0.254,0.14c-0.088,0.128-0.197,0.136-0.292,0.235c0.102,0.124,0.465,0.012,0.616,0.07\r\n\t\t\t\tc0.049,0.034,0.097,0.068,0.146,0.102c0.079,0.046,0.211,0.06,0.311,0.076c0.267,0.044,0.261-0.127,0.369-0.172\r\n\t\t\t\tc0.102-0.013,0.203-0.025,0.305-0.038C23.322,15.873,23.442,15.767,23.552,15.69z M25.078,20.894\r\n\t\t\t\tc-0.023,0.009-0.047,0.017-0.07,0.026c-0.007,0.033,0.006,0.053,0.013,0.089c0.036-0.004,0.072-0.008,0.108-0.013\r\n\t\t\t\tc0.017,0.048,0.015,0.085,0.013,0.146c0.12-0.007,0.193-0.047,0.273-0.07c0.034-0.002,0.068-0.004,0.102-0.006\r\n\t\t\t\tc0.076-0.055,0.153-0.11,0.229-0.165c0.074-0.007,0.148-0.013,0.222-0.019c0.008-0.013,0.017-0.025,0.025-0.038\r\n\t\t\t\tc0.049-0.002,0.097-0.004,0.146-0.006c0.016-0.107,0.079-0.154,0.102-0.229c0.037-0.123-0.067-0.364-0.121-0.439\r\n\t\t\t\tc0.126-0.037,0.169-0.056,0.229-0.159c-0.018-0.123-0.068-0.218-0.102-0.324c-0.094-0.067-0.283-0.037-0.4,0.013\r\n\t\t\t\tc-0.064-0.001-0.088-0.026-0.102-0.076c-0.149,0.013-0.194,0.075-0.229,0.203c-0.025,0.006-0.051,0.013-0.076,0.019\r\n\t\t\t\tc-0.006,0.009-0.013,0.017-0.019,0.025h0.184c-0.025,0.064-0.066,0.089-0.133,0.108c-0.001,0.021,0.008,0.04,0.019,0.063\r\n\t\t\t\tc-0.128-0.01-0.273-0.013-0.375-0.051c-0.045,0.036-0.065,0.068-0.083,0.134v0.038c0.057-0.015,0.088-0.022,0.127,0.013h0.013\r\n\t\t\t\tc-0.037,0.042-0.05,0.035-0.038,0.102c-0.03,0.006-0.059,0.013-0.089,0.019c0.008,0.009,0.017,0.017,0.025,0.025\r\n\t\t\t\tc-0.013,0.017-0.025,0.034-0.038,0.051c0.051,0.024,0.293,0.068,0.343,0.038c0.006,0.017,0.013,0.034,0.019,0.051\r\n\t\t\t\tc-0.083,0.035-0.129,0.014-0.165,0.095c-0.008,0.022-0.004,0.012,0.013,0.038c-0.013,0.019-0.025,0.038-0.038,0.057\r\n\t\t\t\tc-0.004,0.004-0.008,0.008-0.013,0.013c0.047-0.006,0.093-0.013,0.14-0.019c-0.018,0.068-0.092,0.065-0.159,0.076\r\n\t\t\t\tc-0.021,0.026-0.02,0.078-0.044,0.102c-0.032,0.024-0.13,0.015-0.184,0.013c-0.002,0.015-0.004,0.03-0.006,0.044\r\n\t\t\t\tc0.047,0.002,0.093,0.004,0.14,0.006L25.078,20.894L25.078,20.894z M26.336,19.465c-0.008,0.048-0.009,0.074,0,0.121\r\n\t\t\t\tc0.011,0.002,0.021,0.004,0.032,0.006c0.011-0.013,0.021-0.025,0.032-0.038c-0.004-0.034-0.009-0.068-0.013-0.102\r\n\t\t\t\tC26.37,19.456,26.353,19.46,26.336,19.465z M37.611,27.116c0.022-0.013,0.016-0.005,0.019-0.038\r\n\t\t\t\tc0.146-0.004,0.169-0.092,0.292-0.102c-0.015-0.019-0.029-0.038-0.045-0.057c0.053-0.068,0.135-0.101,0.191-0.165\r\n\t\t\t\tc-0.101,0.036-0.199,0.072-0.299,0.108c-0.06-0.006-0.119-0.013-0.179-0.019c0.011,0.023,0.013,0.039,0,0.064\r\n\t\t\t\tc-0.006,0.006-0.171,0.045-0.184,0.045c0.012,0.053,0.028,0.071,0.045,0.114C37.497,27.08,37.576,27.089,37.611,27.116z\r\n\t\t\t\t M8.363,28.654h0.006c-0.002-0.006-0.004-0.013-0.006-0.019V28.654z M14.54,13.788c0.035-0.025,0.102-0.125,0.045-0.175\r\n\t\t\t\tc-0.059,0.063-0.171,0.08-0.068,0.171C14.525,13.786,14.532,13.787,14.54,13.788z M8.375,28.698h0.006\r\n\t\t\t\tc-0.004-0.015-0.008-0.029-0.013-0.044C8.371,28.668,8.373,28.683,8.375,28.698z M8.433,28.838\r\n\t\t\t\tc0.006,0.004,0.013,0.008,0.019,0.013c-0.023-0.051-0.047-0.102-0.07-0.153C8.389,28.761,8.414,28.792,8.433,28.838z\r\n\t\t\t\t M21.4,11.563c-0.005,0-0.01,0.001-0.015,0.001c-0.058,0.053-0.117,0.105-0.175,0.158c-0.053,0.024-0.106,0.048-0.158,0.072\r\n\t\t\t\tc-0.038,0.029-0.035,0.1-0.05,0.136c-0.008,0.019-0.056,0.102-0.048,0.112c0.02,0.01,0.135-0.027,0.152-0.034\r\n\t\t\t\tc0.041-0.017,0.077-0.038,0.104-0.06c0.011-0.01,0.021-0.021,0.032-0.031c0.029-0.01,0.059-0.019,0.088-0.029\r\n\t\t\t\tc0.028-0.025,0.056-0.049,0.084-0.074c0.003-0.003,0.007-0.007,0.01-0.01c0.014,0.009,0.038,0.018,0.063,0.008\r\n\t\t\t\tc0.047-0.026,0.042-0.069,0.098-0.095C21.602,11.666,21.437,11.588,21.4,11.563z M21.72,10.584c0.002,0,0.003-0.001,0.005-0.001\r\n\t\t\t\tc-0.005-0.006-0.009-0.013-0.014-0.019c-0.016,0.002-0.032,0.005-0.048,0.007c-0.148-0.003-0.224-0.095-0.411-0.061\r\n\t\t\t\tc-0.054,0.025-0.235,0.062-0.254,0.094c-0.029,0.048,0.077,0.08,0.116,0.089c0.134,0.033,0.307,0.006,0.465,0.018\r\n\t\t\t\tc0.029,0.002,0.079,0.007,0.099,0.019c0.015,0.009,0.022,0.026,0.042,0.03c0.032,0.001,0.089-0.042,0.103-0.056\r\n\t\t\t\tc0.001-0.001,0.003-0.002,0.004-0.003c-0.082-0.021-0.2-0.02-0.258-0.064C21.619,10.62,21.669,10.602,21.72,10.584z\r\n\t\t\t\t M14.242,41.547c0.147,0.036,0.426-0.012,0.508-0.107c0.048-0.057,0.064-0.207,0.095-0.268c-0.057-0.054-0.445-0.061-0.591-0.057\r\n\t\t\t\tC14.175,41.239,14.197,41.443,14.242,41.547z M10.822,34.354c0.015,0.039,0.009,0.092,0.013,0.135\r\n\t\t\t\tc0.086,0.021,0.114-0.016,0.203-0.02c0.117-0.003,0.196,0.036,0.216-0.095c-0.077-0.062-0.285-0.049-0.4-0.051\r\n\t\t\t\tC10.843,34.333,10.833,34.343,10.822,34.354z M12.735,25.375c-0.017-0.011-0.034-0.021-0.051-0.032\r\n\t\t\t\tc-0.011-0.1,0.084-0.092,0.133-0.146c0.043-0.048,0.06-0.154,0.095-0.203c-0.04-0.027-0.081-0.055-0.121-0.083\r\n\t\t\t\tc-0.045,0.101-0.251,0.268-0.216,0.413c0.05,0.208,0.421,0.141,0.47-0.025C12.9,25.097,12.854,25.337,12.735,25.375z\r\n\t\t\t\t M10.93,37.912c-0.004,0.006-0.008,0.013-0.013,0.02c0.044,0.002,0.042,0.01,0.063,0.031c-0.012,0.031-0.012,0.051,0,0.083\r\n\t\t\t\tc-0.034,0.015-0.068,0.03-0.102,0.044c-0.004,0.006-0.009,0.014-0.013,0.02v0.007c0.085,0,0.174-0.005,0.242-0.013\r\n\t\t\t\tc0.02-0.082-0.008-0.158,0.032-0.217v-0.006h-0.038C11.059,37.904,10.99,37.913,10.93,37.912z M10.015,33.979\r\n\t\t\t\tc-0.092-0.017-0.212,0.006-0.261-0.082c-0.045,0.004-0.062,0.022-0.089,0.031c-0.04-0.004-0.081-0.008-0.121-0.013\r\n\t\t\t\tc-0.04,0.009-0.059,0.049-0.127,0.038c-0.109-0.018-0.194-0.057-0.324-0.057C9.066,33.9,9.038,33.904,9.01,33.909\r\n\t\t\t\tc-0.006,0.008-0.013,0.017-0.019,0.026v0.024c0.064,0.033,0.195,0.03,0.229,0.095c0.046,0.078-0.076,0.146,0.095,0.211\r\n\t\t\t\tc0.004,0.006,0.008,0.012,0.013,0.019c-0.128,0.082-0.41,0.036-0.572-0.013c-0.013,0.015-0.025,0.029-0.038,0.045\r\n\t\t\t\tc-0.002,0.004-0.004,0.008-0.006,0.013c0.034,0.065,0.099,0.077,0.152,0.121c0.05-0.013,0.053-0.048,0.102-0.058\r\n\t\t\t\tc0.076,0.012,0.153,0.021,0.229,0.032c0.078-0.006,0.157-0.013,0.235-0.019c0.048,0.048,0.109,0.15,0.178,0.172\r\n\t\t\t\tc0.044-0.114,0.093-0.196,0.203-0.248c0.021,0.023,0.042,0.047,0.064,0.07c0.075,0.033,0.112-0.061,0.178-0.076\r\n\t\t\t\tc0.044-0.012,0.074,0.012,0.095,0.019c0.129-0.06,0.183,0.046,0.248,0.083c0.039-0.029,0.062-0.074,0.089-0.113\r\n\t\t\t\tC10.38,34.159,10.076,34.16,10.015,33.979z M7.581,34.385c0.019,0.027,0.251,0.17,0.311,0.153\r\n\t\t\t\tc0.044-0.013,0.058-0.078,0.14-0.058c0.051,0.014,0.064,0.041,0.127,0.039c0.002-0.012,0.004-0.021,0.006-0.033\r\n\t\t\t\tc-0.073-0.109-0.33-0.157-0.515-0.152C7.628,34.352,7.604,34.368,7.581,34.385z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M31.446,19.655c0.015,0.03,0.03,0.059,0.044,0.089c0.057-0.013,0.103-0.074,0.133-0.115c0.012-0.009,0.004,0,0.013-0.013\r\n\t\t\t\tc-0.023-0.013-0.047-0.026-0.07-0.038c-0.002-0.004-0.004-0.008-0.006-0.013c0.069-0.055,0.095-0.122,0.076-0.235\r\n\t\t\t\tc-0.03-0.002-0.059-0.004-0.089-0.006c-0.026,0.029-0.04,0.127-0.051,0.165c-0.058-0.027-0.089-0.049-0.108-0.114\r\n\t\t\t\tc-0.004-0.002-0.009-0.004-0.013-0.006c-0.078,0.099-0.18,0.095-0.076,0.267C31.324,19.671,31.398,19.659,31.446,19.655z\r\n\t\t\t\t M43.382,11.985c0.203,0.031,0.324,0.15,0.496,0.203c-0.004,0.021-0.009,0.042-0.013,0.064c-0.084,0.038-0.182,0.051-0.172,0.172\r\n\t\t\t\tc0.094,0.018,0.164,0.009,0.279,0.006c0.026,0.034,0.051,0.068,0.076,0.102c0.094,0.039,0.143-0.06,0.21-0.083\r\n\t\t\t\tc0.155,0.002,0.31,0.004,0.464,0.007c-0.006-0.127-0.177-0.162-0.254-0.223c-0.136-0.107-0.215-0.333-0.254-0.534\r\n\t\t\t\tc-0.085-0.43,0.254-0.283,0.292-0.597c-0.065-0.023-0.131-0.047-0.196-0.07c-0.172-0.022-0.357,0.059-0.478,0.089\r\n\t\t\t\tc-0.072,0.004-0.144,0.008-0.216,0.013c-0.088,0.044-0.135,0.159-0.235,0.203c-0.004,0.007-0.009,0.013-0.013,0.019\r\n\t\t\t\tc0.051,0.026,0.093,0.062,0.165,0.064c-0.037,0.109-0.134,0.278-0.241,0.311c-0.072,0.022-0.115-0.021-0.172-0.019\r\n\t\t\t\tc-0.049,0.061-0.104,0.114-0.07,0.229c0.02,0.025,0.038,0.051,0.057,0.076C43.251,12.115,43.275,11.969,43.382,11.985z\r\n\t\t\t\t M20.926,10.303c-0.046,0.008-0.091,0.016-0.137,0.024c-0.018,0.026-0.036,0.077-0.072,0.095\r\n\t\t\t\tc0.061,0.013,0.304-0.051,0.354-0.078C21.07,10.309,20.97,10.301,20.926,10.303z M31.37,7.524\r\n\t\t\t\tc0.061-0.032,0.123-0.064,0.184-0.095c0.036,0.055,0.072,0.11,0.108,0.165c-0.076,0.036-0.153,0.072-0.229,0.108\r\n\t\t\t\tc0.055,0.135,0.434,0.457,0.623,0.388c0.163-0.06,0.211-0.226,0.35-0.312c0.086,0.097,0.287,0.173,0.438,0.197v0.006\r\n\t\t\t\tc-0.178,0.189-0.512,0.185-0.769,0.299h-0.013c0.023,0.049,0.047,0.097,0.07,0.146c0.248-0.018,0.442-0.069,0.661-0.089\r\n\t\t\t\tc0.027,0.025,0.055,0.051,0.083,0.076c-0.103,0.131-0.323,0.152-0.559,0.146c-0.023,0.034-0.047,0.068-0.07,0.102\r\n\t\t\t\tc-0.004,0.004-0.008,0.008-0.013,0.013c0.102,0.062,0.562,0.443,0.718,0.4c0.032-0.019,0.063-0.038,0.095-0.057\r\n\t\t\t\tc-0.001-0.177,0.066-0.321,0.159-0.407c0.028-0.029,0.124-0.04,0.172-0.044c0.038-0.081,0.076-0.161,0.114-0.242\r\n\t\t\t\tc0.058-0.144,0.054-0.343,0.178-0.419c0.094-0.021,0.188-0.043,0.28-0.064c0.053-0.026,0.106-0.051,0.159-0.076\r\n\t\t\t\tc-0.049-0.083-0.189-0.174-0.28-0.21c-0.082-0.032-0.163-0.021-0.229-0.063c-0.057-0.074-0.113-0.148-0.172-0.222\r\n\t\t\t\tc-0.078,0-0.117,0.083-0.172,0.127C33.238,7.389,33.219,7.38,33.2,7.372c-0.034-0.072,0.005-0.174,0.006-0.28\r\n\t\t\t\tc-0.021-0.015-0.042-0.03-0.063-0.045h-0.172c-0.066-0.021-0.113-0.079-0.211-0.089C32.725,7,32.688,7.043,32.652,7.085\r\n\t\t\t\tc-0.041,0.109,0.107,0.294,0.127,0.4c-0.02,0.017-0.038,0.034-0.057,0.051c-0.109-0.025-0.307-0.287-0.351-0.381\r\n\t\t\t\tc-0.075-0.059-0.101-0.039-0.191,0c-0.015,0.076-0.03,0.153-0.044,0.229v0.013c-0.074-0.015-0.148-0.03-0.222-0.045\r\n\t\t\t\tc-0.036-0.055-0.041-0.146-0.038-0.242c-0.077-0.016-0.176,0.02-0.235,0.032c-0.047-0.004-0.093-0.008-0.14-0.013\r\n\t\t\t\tc-0.146,0.013-0.218,0.074-0.305,0.14C31.219,7.367,31.286,7.485,31.37,7.524z M34.414,7.117v0.006\r\n\t\t\t\tc-0.066,0.146-0.102,0.233-0.28,0.267v0.114c0.275,0.013,0.552,0.025,0.826,0.038c0.06-0.04,0.119-0.081,0.179-0.121\r\n\t\t\t\tc0.077-0.033,0.161-0.016,0.254-0.045c0.078-0.04,0.156-0.08,0.234-0.121c0.104-0.078,0.208-0.157,0.311-0.235\r\n\t\t\t\tc0.002-0.004,0.004-0.008,0.006-0.013c-0.022-0.038-0.047-0.076-0.069-0.114c-0.062-0.017-0.123-0.034-0.185-0.051\r\n\t\t\t\tc-0.119-0.023-0.25,0.029-0.375,0.026c-0.024-0.051-0.051-0.102-0.075-0.153c-0.03-0.011-0.06-0.021-0.089-0.032\r\n\t\t\t\tc-0.133,0.016-0.224,0.14-0.286,0.229h-0.108c-0.027-0.1-0.003-0.248,0.025-0.343c-0.137,0.061-0.143,0.232-0.268,0.292\r\n\t\t\t\tc-0.011,0.011-0.021,0.021-0.031,0.032c-0.168-0.256-0.328-0.017-0.496-0.134c-0.059-0.07-0.119-0.14-0.178-0.21\r\n\t\t\t\tc-0.082,0.106-0.162,0.212-0.242,0.318c-0.086,0.062-0.15,0.069-0.196,0.172c-0.004,0.004-0.009,0.008-0.013,0.013\r\n\t\t\t\tC33.594,7.203,34.035,7.121,34.414,7.117z M20.993,9.697c0.035,0.033,0.134,0.07,0.225,0.035c0.034-0.013,0.049-0.034,0.076-0.05\r\n\t\t\t\tc0.019-0.02,0.038-0.04,0.057-0.061C21.277,9.6,21.247,9.54,21.129,9.564C21.066,9.601,20.983,9.637,20.993,9.697z M21.388,8.988\r\n\t\t\t\tc-0.081,0.009-0.125-0.079-0.169-0.114c-0.024,0.041-0.114,0.079-0.126,0.107c0,0,0.086,0.119,0.094,0.127\r\n\t\t\t\tc0.011,0.01,0.028,0.019,0.044,0.023c0.039-0.003,0.22-0.108,0.242-0.129c0.013-0.013,0.03-0.035,0.009-0.052\r\n\t\t\t\tC21.451,8.925,21.406,8.976,21.388,8.988z M20.989,9.241c-0.031,0.049,0.059,0.128,0.12,0.118\r\n\t\t\t\tc0.061-0.054,0.045-0.074-0.037-0.096C21.044,9.256,21.017,9.248,20.989,9.241z M20.988,9.24L20.988,9.24\r\n\t\t\t\tc0.003-0.004-0.005-0.009-0.001-0.012C20.987,9.233,20.988,9.237,20.988,9.24z M30.588,18.905\r\n\t\t\t\tc0.119-0.015,0.252,0.008,0.413-0.006c0.016-0.051,0.02-0.072,0.064-0.095c-0.01-0.113-0.024-0.131,0.025-0.21\r\n\t\t\t\tc-0.011-0.004-0.021-0.008-0.032-0.013c-0.006,0.01-0.013,0.021-0.019,0.032c-0.055,0.015-0.11,0.03-0.165,0.044\r\n\t\t\t\tc-0.059,0.043-0.078,0.143-0.153,0.172c-0.076,0.008-0.153,0.017-0.229,0.025c-0.051,0.023-0.079,0.083-0.102,0.133\r\n\t\t\t\tc0.028,0.028,0.055,0.055,0.083,0.083C30.523,19.013,30.565,18.998,30.588,18.905z M10.002,26.709v0.006\r\n\t\t\t\tc0.013,0.019,0.025,0.038,0.038,0.057h0.027c-0.006-0.014-0.006-0.034-0.015-0.051C10.036,26.717,10.019,26.713,10.002,26.709z\r\n\t\t\t\t M42.956,34.189c-0.052-0.021-0.103-0.043-0.153-0.064c-0.119,0.085-0.214,0.171-0.388,0.21c-0.076,0.017-0.146-0.017-0.19-0.024\r\n\t\t\t\tc-0.086-0.018-0.14,0.054-0.197,0.069c-0.06-0.006-0.119-0.013-0.178-0.019h-0.014c-0.072,0.047-0.145,0.093-0.216,0.14\r\n\t\t\t\tc-0.099,0.036-0.13-0.06-0.242-0.038c-0.091,0.04-0.183,0.08-0.272,0.121h-0.179c-0.091-0.1-0.215-0.211-0.272-0.337\r\n\t\t\t\tc-0.055-0.015-0.129-0.003-0.191-0.013c-0.004-0.002-0.009-0.004-0.013-0.006v-0.014c0.069-0.033,0.208-0.09,0.261-0.146\r\n\t\t\t\tc-0.006-0.168-0.232-0.211-0.33-0.305c-0.018-0.016-0.033-0.139-0.089-0.19c-0.026-0.024-0.075-0.007-0.108-0.025\r\n\t\t\t\tc-0.088-0.098-0.178-0.194-0.267-0.292c-0.035-0.016-0.076-0.009-0.127-0.006c-0.039-0.055-0.074-0.139-0.133-0.172\r\n\t\t\t\tc-0.019,0.025-0.013,0.083-0.019,0.107c-0.005,0.002-0.009,0.004-0.014,0.008c-0.182-0.153-0.225-0.623-0.331-0.864\r\n\t\t\t\tc-0.049-0.112-0.295-0.163-0.362-0.254c-0.105-0.144-0.037-0.516-0.089-0.724c-0.032-0.135-0.153-0.35-0.254-0.426\r\n\t\t\t\tc-0.05-0.038-0.123-0.051-0.159-0.102c-0.045-0.062-0.051-0.162-0.076-0.242c0.023-0.021,0.047-0.042,0.07-0.064\r\n\t\t\t\tc-0.051-0.051-0.102-0.102-0.152-0.152c-0.14-0.209-0.24-0.462-0.369-0.667c-0.055-0.144-0.11-0.288-0.166-0.432\r\n\t\t\t\tc-0.094-0.171-0.256-0.287-0.299-0.521c0.033-0.045,0.039-0.066,0.096-0.089c0.08,0.245,0.223,0.49,0.4,0.642\r\n\t\t\t\tc0.019,0.021,0.047,0.019,0.075,0.013c0.08-0.159,0.058-0.398,0.185-0.508c-0.074-0.191-0.148-0.381-0.223-0.572\r\n\t\t\t\tc-0.121,0.015-0.164,0.113-0.337,0.019c-0.112,0.08-0.157,0.011-0.28,0.032c-0.041-0.043-0.076-0.051-0.095-0.121\r\n\t\t\t\tc-0.215-0.044-0.454,0.008-0.604,0.108c-0.039,0.032-0.08,0.063-0.12,0.095c-0.079,0.017-0.155-0.048-0.21-0.064\r\n\t\t\t\tc-0.061-0.006-0.123-0.013-0.184-0.019c-0.014-0.017-0.025-0.034-0.039-0.051c-0.147-0.032-0.297-0.064-0.444-0.095h-0.318\r\n\t\t\t\tc-0.058-0.026-0.045-0.125-0.108-0.146h-0.146c-0.077-0.012-0.25-0.041-0.324-0.07c-0.069-0.038-0.032-0.128-0.133-0.172\r\n\t\t\t\tc-0.258-0.113-0.681,0.039-0.782,0.21c-0.137,0.231,0.168,0.358-0.146,0.527c-0.038,0.02-0.089,0.07-0.146,0.064\r\n\t\t\t\tc-0.154-0.018-0.267-0.184-0.4-0.235c-0.133-0.05-0.434-0.054-0.541-0.114c-0.118-0.068-0.136-0.311-0.24-0.35\r\n\t\t\t\tc-0.058-0.021-0.105-0.003-0.152-0.025c-0.028-0.025-0.055-0.051-0.083-0.076c-0.066-0.013-0.131-0.025-0.197-0.038\r\n\t\t\t\tc-0.095,0.006-0.191,0.013-0.286,0.019c-0.129-0.055-0.258-0.11-0.388-0.165c-0.009-0.034-0.017-0.068-0.025-0.102\r\n\t\t\t\tc-0.061-0.005-0.069,0.013-0.121,0.025c-0.082-0.04-0.182-0.111-0.203-0.21c0.059-0.065,0.326-0.286,0.324-0.369\r\n\t\t\t\tc-0.011-0.042-0.021-0.085-0.032-0.127c-0.337-0.192,0.008-0.272,0.006-0.483c-0.064,0.038-0.127,0.076-0.191,0.115\r\n\t\t\t\tc-0.011-0.002-0.021-0.004-0.032-0.006c-0.018-0.04-0.036-0.072-0.038-0.127c-0.047-0.021-0.093-0.042-0.14-0.064\r\n\t\t\t\tc-0.03,0.004-0.059,0.009-0.089,0.013c-0.095,0.036-0.266,0.212-0.432,0.165c-0.024-0.007-0.062-0.069-0.14-0.096\r\n\t\t\t\tc-0.063,0.009-0.084,0.051-0.133,0.076c-0.076-0.012-0.113-0.06-0.178-0.083c-0.078,0.055-0.155,0.115-0.267,0.14\r\n\t\t\t\tc-0.173,0.039-0.303-0.115-0.502-0.063c-0.038,0.021-0.076,0.042-0.114,0.063c-0.073,0.026-0.104-0.027-0.159-0.019\r\n\t\t\t\tc-0.047,0.021-0.093,0.042-0.14,0.064c-0.145,0.03-0.312-0.005-0.432,0.044c-0.114,0.047-0.181,0.142-0.267,0.216\r\n\t\t\t\tc-0.046-0.004-0.065-0.015-0.089-0.038c-0.039,0.007-0.209,0.066-0.242,0.089c-0.08,0.057-0.073,0.137-0.191,0.172\r\n\t\t\t\tc-0.13,0.038-0.283-0.002-0.318-0.089c-0.007-0.002-0.345,0.103-0.477,0.064c-0.138-0.041-0.19-0.153-0.28-0.242\r\n\t\t\t\tc-0.032,0.015-0.064,0.03-0.095,0.045c-0.071,0.054-0.17,0.43-0.248,0.534c-0.114,0.152-0.324,0.164-0.483,0.273\r\n\t\t\t\tc-0.054,0.037-0.227,0.186-0.248,0.241c-0.022,0.058,0.009,0.132-0.019,0.191c-0.035,0.073-0.121,0.127-0.153,0.21\r\n\t\t\t\tc-0.075,0.199,0.155,0.303-0.006,0.54c-0.101,0.149-0.406,0.41-0.578,0.483c-0.089,0.038-0.211,0.03-0.305,0.076\r\n\t\t\t\tc-0.108,0.053-0.13,0.288-0.203,0.381c-0.059,0.074-0.188,0.088-0.242,0.165c-0.056,0.081-0.105,0.204-0.127,0.311\r\n\t\t\t\tc-0.002,0.044-0.004,0.089-0.006,0.134c-0.04,0.101-0.18,0.151-0.242,0.235c-0.063,0.146-0.127,0.292-0.191,0.438\r\n\t\t\t\tc-0.047,0.051-0.093,0.102-0.14,0.153c-0.056,0.084-0.082,0.256-0.064,0.388c0.015-0.017,0.03-0.034,0.044-0.051\r\n\t\t\t\tc0.199,0.016,0.209,0.339,0.114,0.477c0.233,0.184,0.095,0.554,0.025,0.788c-0.008,0.067-0.017,0.136-0.025,0.203\r\n\t\t\t\tc-0.037,0.135-0.145,0.317-0.273,0.362c-0.002,0.004-0.004,0.008-0.006,0.013c0.181,0.075,0.181,0.271,0.267,0.311\r\n\t\t\t\tc0.01,0.021,0.013,0.041,0.013,0.076c-0.019,0.004-0.038,0.008-0.057,0.013c-0.049,0.069-0.01,0.178-0.032,0.262\r\n\t\t\t\tc0.08,0.135,0.04,0.035,0.14,0.102c0.004,0.016,0.008,0.03,0.013,0.044c0.042,0.024,0.085,0.052,0.127,0.076\r\n\t\t\t\tc0.063-0.013,0.153-0.052,0.203,0.006c-0.039,0.048-0.093,0.079-0.076,0.165c0.026,0.018,0.08,0.021,0.102,0.044\r\n\t\t\t\tc0.015,0.021,0.01,0.028,0.006,0.058c0.034,0.022,0.057,0.033,0.121,0.031c0.011,0.033,0.011,0.061,0,0.096\r\n\t\t\t\tc0.065,0.068,0.166,0.135,0.267,0.164c0.006,0.032,0.013,0.063,0.019,0.096c0.033,0.061,0.118,0.08,0.14,0.158v0.096\r\n\t\t\t\tc0.014,0.018,0.035,0.021,0.063,0.025c0.002,0.008,0.004,0.017,0.006,0.024c-0.023,0.019-0.047,0.038-0.07,0.058h-0.013\r\n\t\t\t\tc0.028,0.094,0.156,0.186,0.261,0.203c0.018,0.033,0.013,0.047,0.006,0.094c0.142,0.043,0.215,0.149,0.324,0.223\r\n\t\t\t\tc0.08,0.042,0.161,0.085,0.242,0.127c0.17,0.12,0.278,0.261,0.477,0.361c0.062,0.033,0.311,0.192,0.388,0.173\r\n\t\t\t\tc0.102-0.054,0.203-0.106,0.305-0.159c0.106-0.029,0.212-0.059,0.318-0.089c0.092-0.027,0.292-0.048,0.407-0.025\r\n\t\t\t\tc0.05,0.011,0.145,0.062,0.21,0.038c0.011-0.013,0.021-0.025,0.032-0.038c0.041,0.005,0.246,0.134,0.286,0.165\r\n\t\t\t\tc0.206-0.093,0.411-0.186,0.616-0.279c0.087-0.008,0.174-0.018,0.261-0.025c0.052-0.039,0.054-0.107,0.127-0.133\r\n\t\t\t\tc0.214-0.02,0.428-0.038,0.642-0.057c0.032-0.013,0.039-0.043,0.083-0.058c0.077,0.015,0.286,0.147,0.331,0.203\r\n\t\t\t\tc0.015,0.024,0.03,0.051,0.044,0.075c0.023,0.002,0.047,0.005,0.07,0.007c0.006,0.008,0.013,0.017,0.019,0.024\r\n\t\t\t\tc-0.013,0.032-0.025,0.064-0.038,0.096c0.025,0.209,0.348,0.363,0.534,0.197c0.101,0.017,0.232,0.039,0.343-0.007\r\n\t\t\t\tc0.002-0.026-0.002-0.036-0.013-0.062c0.025-0.017,0.147,0.013,0.178,0.051c0.069,0.124-0.004,0.172,0.222,0.165\r\n\t\t\t\tc0.008,0.013,0.017,0.025,0.025,0.038c0.004,0.004,0.008,0.008,0.013,0.013c-0.019,0.016-0.038,0.03-0.057,0.044\r\n\t\t\t\tc0.021,0.08,0.085,0.147,0.102,0.242c-0.011,0.042-0.021,0.085-0.032,0.127c0.009,0.032,0.017,0.063,0.025,0.095\r\n\t\t\t\tc-0.024,0.1-0.086,0.2-0.153,0.262c-0.002,0.006-0.004,0.013-0.006,0.019c0.025,0.004,0.051,0.008,0.076,0.013\r\n\t\t\t\tc0.003,0.084-0.012,0.146-0.076,0.166c0.049,0.041,0.097,0.084,0.146,0.127v0.006c-0.038-0.004-0.076-0.01-0.114-0.014\r\n\t\t\t\tc-0.031,0.139-0.072,0.242-0.191,0.292c0.013,0.028,0.052,0.116,0.076,0.14c0.036,0.035,0.074,0.016,0.114,0.07\r\n\t\t\t\tc-0.021,0.016-0.042,0.03-0.063,0.045c-0.002,0.004-0.004,0.008-0.006,0.014c0.042,0.062,0.085,0.123,0.127,0.184\r\n\t\t\t\tc0.053,0.027,0.074,0.003,0.108,0.045c-0.011,0.016-0.021,0.03-0.032,0.044c0.089,0.058,0.143,0.122,0.203,0.21\r\n\t\t\t\tc0.112,0.104,0.224,0.208,0.337,0.311c0.032,0.039,0.115,0.205,0.133,0.248c0.029,0.068-0.018,0.162,0.038,0.262\r\n\t\t\t\tc0.045,0.064,0.089,0.127,0.133,0.191c0.013,0.061,0.025,0.123,0.038,0.184c0.057,0.134,0.17,0.186,0.14,0.388\r\n\t\t\t\tc-0.243,0.109,0.046,0.36,0.089,0.489c0.008,0.1,0.017,0.199,0.025,0.299c-0.019,0.11-0.066,0.285-0.146,0.337\r\n\t\t\t\tc-0.03,0.011-0.059,0.021-0.089,0.032c-0.017,0.04-0.034,0.081-0.051,0.121c-0.03,0.031-0.059,0.064-0.089,0.096\r\n\t\t\t\tc-0.094,0.223-0.042,0.57-0.222,0.705c0,0.202-0.037,0.471,0.013,0.648c0.038,0.135,0.15,0.217,0.216,0.324\r\n\t\t\t\tc0.108,0.215,0.216,0.432,0.324,0.647c0.075,0.146,0.371,0.403,0.203,0.571c0.03,0.141,0.059,0.281,0.089,0.42\r\n\t\t\t\tc0.023,0.055,0.047,0.109,0.07,0.165c0.02,0.081-0.031,0.143-0.025,0.202c0.008,0.08,0.071,0.147,0.089,0.211\r\n\t\t\t\tc0.014,0.047-0.021,0.072-0.019,0.102c0.034,0.104,0.068,0.208,0.102,0.311c0.116,0.131,0.233,0.264,0.349,0.395\r\n\t\t\t\tc0.12,0.189,0.16,0.434,0.273,0.635c0.1,0.178,0.271,0.36,0.203,0.654c-0.033,0.008-0.078,0-0.096,0.025\r\n\t\t\t\tc-0.025,0.031,0.123,0.229,0.159,0.285c-0.017,0.049-0.034,0.099-0.051,0.146c0.011,0.011,0.021,0.021,0.032,0.031\r\n\t\t\t\tc0.006,0.003,0.013,0.005,0.019,0.007c0.006-0.015,0.013-0.03,0.019-0.045c0.018-0.009,0.022-0.011,0.052-0.013\r\n\t\t\t\tc0.013,0.022,0.024,0.047,0.038,0.069c0.027-0.001,0.052-0.007,0.102-0.006c0.021,0.028,0.021,0.056,0.038,0.095\r\n\t\t\t\tc0.024,0.043,0.115,0.075,0.165,0.09c0.061-0.047,0.096-0.123,0.178-0.146c0.115-0.035,0.252,0.044,0.356-0.006\r\n\t\t\t\tc0.032-0.03,0.063-0.059,0.095-0.09c0.15-0.07,0.214,0,0.331,0c0.034-0.019,0.067-0.037,0.103-0.057\r\n\t\t\t\tc0.121-0.035,0.233,0.073,0.317,0.102c0.04-0.03,0.07-0.055,0.095-0.102c0.058,0.014,0.114,0.025,0.172,0.038\r\n\t\t\t\tc0.018-0.019,0.021-0.053,0.033-0.075c0.049-0.049,0.321-0.018,0.399-0.07c0.083-0.072,0.165-0.145,0.248-0.217\r\n\t\t\t\tc0.416-0.326,0.721-0.688,1.017-1.138c0.074-0.112,0.264-0.19,0.305-0.299c0.021-0.052-0.027-0.122-0.019-0.146\r\n\t\t\t\tc0.017-0.045,0.065-0.033,0.089-0.064c0.071-0.091,0.109-0.35,0.09-0.496c-0.039-0.016-0.078-0.04-0.096-0.076\r\n\t\t\t\tc-0.006-0.006-0.013-0.013-0.02-0.019c0.078-0.091,0.133-0.175,0.242-0.235c0.244-0.134,0.525-0.121,0.635-0.388\r\n\t\t\t\tc-0.008-0.062-0.051-0.036-0.063-0.07c0.002-0.006,0.005-0.013,0.007-0.019c0.012-0.032,0.024-0.064,0.037-0.096\r\n\t\t\t\tc0.03-0.123,0.023-0.264,0.02-0.388c-0.028,0.011-0.035,0.019-0.076,0.019c-0.039-0.123-0.087-0.273-0.044-0.375\r\n\t\t\t\tc-0.007-0.074-0.062-0.111-0.114-0.14v-0.202c0.119-0.088,0.237-0.175,0.355-0.262c0.146-0.122,0.233-0.305,0.4-0.406\r\n\t\t\t\tc0.203-0.123,0.451-0.162,0.643-0.293c0.137-0.094,0.224-0.268,0.33-0.394c0-0.028-0.008-0.039-0.019-0.07\r\n\t\t\t\tc0.036-0.047,0.068-0.081,0.095-0.14c-0.002-0.012-0.004-0.021-0.006-0.032c-0.023-0.011-0.047-0.021-0.07-0.032\r\n\t\t\t\tc-0.02-0.162,0.013-0.337-0.069-0.432c0.003-0.034,0.034-0.062,0.044-0.107c0.025-0.113-0.041-0.295-0.057-0.395\r\n\t\t\t\tc0.029-0.055,0.059-0.11,0.088-0.165c-0.064-0.14-0.182-0.157-0.266-0.267c-0.084-0.108-0.127-0.394-0.07-0.554\r\n\t\t\t\tc-0.019-0.028-0.043-0.032-0.064-0.057c0.029-0.062,0.083-0.148,0.089-0.216c-0.057-0.071-0.161-0.127-0.196-0.217\r\n\t\t\t\tc-0.037-0.095,0.061-0.406,0.102-0.451c0.023-0.025,0.068-0.021,0.089-0.051c0.047-0.067,0.006-0.104,0.024-0.164\r\n\t\t\t\tc0.043-0.138,0.173-0.144,0.185-0.369c0.097-0.053,0.187-0.051,0.19-0.203c0.086,0.017,0.125-0.021,0.191-0.051\r\n\t\t\t\tc0.024-0.035,0.026-0.054,0.006-0.095c0.209-0.235,0.416-0.47,0.623-0.704c0.229-0.186,0.516-0.326,0.744-0.509\r\n\t\t\t\tc0.086-0.104,0.17-0.208,0.254-0.312c0.168-0.215,0.42-0.422,0.527-0.686c0.011-0.049,0.021-0.098,0.032-0.146\r\n\t\t\t\tc0.073-0.118,0.147-0.236,0.222-0.355c-0.002-0.027-0.004-0.055-0.006-0.083c0.042-0.04,0.085-0.081,0.127-0.121\r\n\t\t\t\tc0.055-0.098,0.109-0.194,0.165-0.292c0.006-0.087,0.013-0.174,0.019-0.261c0.015-0.04,0.08-0.069,0.076-0.127\r\n\t\t\t\tc-0.002-0.045-0.037-0.108-0.019-0.172c0.017-0.04,0.034-0.081,0.051-0.121C42.96,34.201,42.958,34.195,42.956,34.189z\r\n\t\t\t\t M51.688,35.154c-0.031-0.184-0.127-0.277-0.279-0.375c0.018,0.078-0.004,0.113-0.025,0.191c-0.033,0.026-0.04,0.043-0.095,0.025\r\n\t\t\t\tc-0.004,0.015-0.009,0.029-0.013,0.044c0.015,0.017,0.029,0.034,0.043,0.051c-0.028,0.063-0.008,0.077,0.007,0.14v0.318\r\n\t\t\t\tc0.022,0.102,0.073,0.268,0.146,0.324c0.209,0.044,0.477-0.139,0.451-0.337c-0.011-0.089-0.093-0.163-0.127-0.235\r\n\t\t\t\tC51.76,35.227,51.768,35.186,51.688,35.154z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z\r\n\t\t\t\t M50.505,13.747c0.043,0.044,0.081,0.093,0.124,0.137c-0.003,0.02-0.006,0.039-0.008,0.059v0.006\r\n\t\t\t\tc0.027,0.007,0.053,0.01,0.08,0.013c0.048,0.049,0.092,0.103,0.139,0.153c-0.13,0.026-0.316,0.022-0.352-0.084\r\n\t\t\t\tC50.471,14.004,50.497,13.865,50.505,13.747z M48.568,14.508c0.037,0.017,0.076,0.034,0.113,0.051\r\n\t\t\t\tc0.07-0.025,0.141-0.051,0.211-0.076c-0.014-0.036-0.025-0.072-0.039-0.108c0.033-0.077,0.143-0.097,0.203-0.146\r\n\t\t\t\tc0.084-0.066,0.228-0.183,0.268-0.286c0.015-0.059,0.029-0.119,0.044-0.178c0.022-0.052,0.06-0.069,0.063-0.146\r\n\t\t\t\tc-0.099-0.13-0.201-0.041-0.254-0.292c0.002-0.127,0.004-0.254,0.006-0.381c-0.008-0.074-0.017-0.148-0.024-0.222\r\n\t\t\t\tc0.032-0.042,0.063-0.085,0.095-0.127c0.001-0.002-0.001-0.005,0-0.008c0.1,0.088,0.195,0.177,0.293,0.266\r\n\t\t\t\tc-0.012,0.031-0.036,0.06-0.038,0.092c-0.006,0.103,0.07,0.19,0.07,0.324c0.103-0.002,0.239,0.039,0.312,0.025\r\n\t\t\t\tc0.033-0.012,0.068-0.024,0.103-0.036c0.075,0.072,0.157,0.137,0.231,0.211c-0.214-0.04-0.47,0.008-0.5,0.206\r\n\t\t\t\tc0.057,0.099,0.113,0.168,0.108,0.318c-0.042,0.053-0.085,0.106-0.127,0.159c-0.034,0.021-0.067,0.042-0.103,0.064\r\n\t\t\t\tc-0.043,0.061-0.037,0.157-0.095,0.203c-0.14,0.113-0.327,0.134-0.407,0.311c-0.084,0.039-0.185,0.002-0.261-0.013\r\n\t\t\t\tc-0.053,0.002-0.106,0.004-0.159,0.006c-0.219-0.032-0.424-0.055-0.502-0.229C48.309,14.462,48.449,14.461,48.568,14.508z\r\n\t\t\t\t M14.404,12.899c-0.002,0.011-0.006,0.023,0.013,0.034c0.011,0.006,0.027,0.004,0.044,0.005c0.046,0.003,0.104,0.019,0.122,0.05\r\n\t\t\t\tc-0.03,0.071-0.177,0-0.221-0.006c0,0.003,0,0.006,0,0.008c-0.005,0-0.011,0-0.016,0c-0.003,0.077,0.276,0.05,0.304,0.123\r\n\t\t\t\tc-0.032,0.036-0.081,0.019-0.141,0.035c-0.004,0.062,0.16,0.026,0.146,0.083c0,0.002-0.001,0.003-0.001,0.005\r\n\t\t\t\tc-0.043,0.013-0.078-0.002-0.117,0.012c-0.004,0.003-0.007,0.006-0.01,0.009c0,0.003,0,0.006,0,0.008\r\n\t\t\t\tc0.031,0.019,0.072,0.042,0.132,0.023c0.017-0.006,0.036-0.014,0.054-0.012c0.006,0.002,0.012,0.003,0.017,0.005\r\n\t\t\t\tc0.003,0.02-0.019,0.062-0.05,0.071c-0.034,0.009-0.199-0.014-0.228-0.021c-0.059-0.015-0.101-0.05-0.147-0.078\r\n\t\t\t\tc-0.04-0.024-0.124-0.06-0.197-0.085C14.204,13.077,14.305,12.99,14.404,12.899z M13.524,13.715\r\n\t\t\t\tc0.019,0.012,0.039,0.022,0.052,0.039c-0.03-0.002-0.064,0.005-0.097,0.01C13.495,13.749,13.509,13.731,13.524,13.715z\r\n\t\t\t\t M7.943,27.904c0.017-0.004,0.034-0.008,0.051-0.013c-0.017,0.015-0.034,0.03-0.051,0.045\r\n\t\t\t\tC7.945,27.925,7.941,27.918,7.943,27.904z M7.499,23.367c-0.001,0.007,0,0.011-0.001,0.018c-0.002-0.002-0.002-0.004-0.004-0.006\r\n\t\t\t\tC7.496,23.376,7.497,23.372,7.499,23.367z M7.676,37.665c-0.049,0.065-0.234,0.104-0.337,0.051\r\n\t\t\t\tc-0.044,0.033-0.061,0.065-0.057,0.146c-0.015,0.014-0.03,0.025-0.044,0.039c-0.012-0.053-0.021-0.069-0.07-0.084\r\n\t\t\t\tc-0.033-0.006-0.066,0.023-0.095,0.039c-0.203,0.106-0.124,0.25-0.191,0.438c-0.026,0.005-0.052,0.01-0.079,0.016\r\n\t\t\t\tc-0.076-0.303-0.168-0.599-0.232-0.904c0.011,0,0.019,0.005,0.032,0.006c0.029,0.082,0.054,0.128,0.146,0.146\r\n\t\t\t\tc0.004-0.029,0.009-0.056,0.013-0.084h0.006c0.023,0.049,0.076,0.109,0.064,0.172c0.006,0.006,0.013,0.014,0.019,0.02\r\n\t\t\t\tc0.114,0.02,0.144-0.047,0.248-0.057c-0.01-0.111-0.095-0.121-0.133-0.203c0.039-0.059,0.138-0.1,0.21-0.121\r\n\t\t\t\tc-0.003-0.04-0.005-0.057,0.006-0.09c0.198-0.062,0.318-0.017,0.375,0.141c0.045,0.008,0.076-0.016,0.108-0.038\r\n\t\t\t\tc-0.001,0.05,0.005,0.067,0.038,0.083c0.002,0.004,0.004,0.01,0.006,0.014c-0.061-0.009-0.097-0.021-0.121,0.031\r\n\t\t\t\tC7.564,37.5,7.647,37.605,7.676,37.665z M32,58c-7.083,0-13.497-2.841-18.187-7.436c0.051-0.051,0.122-0.09,0.155-0.152\r\n\t\t\t\tc0.019-0.078,0.038-0.157,0.057-0.235v-0.013c0.049,0.021,0.108,0.044,0.172,0.02h0.006c0.013,0.191-0.204,0.291-0.248,0.482\r\n\t\t\t\tc0.103-0.092,0.237-0.221,0.299-0.35c0.051-0.121,0.102-0.241,0.153-0.361c0.174-0.277,0.481-0.299,0.394-0.852\r\n\t\t\t\tc-0.012-0.078-0.036-0.114-0.057-0.172c0.045-0.055,0.132-0.205,0.019-0.255v-0.038c0.146,0.014,0.159-0.072,0.235-0.14\r\n\t\t\t\tc0.08-0.069,0.491-0.363,0.585-0.381c0.051-0.011,0.091,0.021,0.127,0.032c0.03-0.036,0.059-0.072,0.089-0.108\r\n\t\t\t\tc0.086-0.051,0.144-0.034,0.165-0.153c0.094-0.012,0.207-0.008,0.28,0.006c0.161,0.031,0.334-0.013,0.483-0.024\r\n\t\t\t\tc-0.005-0.183,0.137-0.241,0.292-0.254c-0.009-0.052-0.017-0.103-0.025-0.153c0.017-0.123,0.117-0.202,0.172-0.292\r\n\t\t\t\tc0.034-0.069,0.068-0.14,0.102-0.21c0.032-0.046,0.105-0.072,0.121-0.133c-0.006-0.062-0.013-0.123-0.019-0.184\r\n\t\t\t\tc-0.03-0.17,0.065-0.289,0.184-0.332c0-0.047-0.035-0.138-0.019-0.222c0.021-0.106,0.097-0.243,0.076-0.368\r\n\t\t\t\tc-0.017-0.166-0.034-0.332-0.051-0.496c0.028-0.172,0.093-0.289,0.095-0.465c0.015,0.002,0.03,0.004,0.044,0.006\r\n\t\t\t\tc0.017,0.034,0.034,0.068,0.051,0.103h0.019c0.113-0.084,0.241-0.308,0.292-0.445c0.031-0.081,0.007-0.126,0.057-0.178\r\n\t\t\t\tc0.047-0.021,0.093-0.042,0.14-0.063c0.273-0.213,0.461-0.44,0.534-0.858c0.027-0.157-0.139-0.732-0.216-0.757\r\n\t\t\t\tc-0.161-0.049-0.338,0.009-0.458-0.069c-0.256-0.166-0.436-0.435-0.731-0.565c-0.171-0.076-0.287,0.017-0.451-0.014\r\n\t\t\t\tc-0.1-0.016-0.199-0.029-0.299-0.045c-0.086-0.023-0.18-0.133-0.286-0.121c-0.154,0.018-0.289,0.139-0.394,0.21\r\n\t\t\t\tc-0.049-0.2,0.024-0.122,0.044-0.241c0.013-0.078-0.114-0.195-0.184-0.203c-0.017,0.017-0.034,0.033-0.051,0.051h-0.025\r\n\t\t\t\tc-0.054-0.172-0.227-0.156-0.394-0.217c-0.065-0.022-0.106-0.067-0.159-0.102c-0.052,0.007-0.15,0.016-0.216,0.032\r\n\t\t\t\tc-0.072,0.028-0.08,0.13-0.121,0.19c-0.069,0.102-0.227,0.129-0.28,0.248c-0.004,0.002-0.008,0.004-0.013,0.006\r\n\t\t\t\tc0-0.069,0.012-0.1,0.032-0.146c-0.111,0.022-0.259,0.048-0.394,0.026c-0.032-0.076-0.064-0.153-0.095-0.229\r\n\t\t\t\tc-0.088,0.024-0.202,0.166-0.318,0.121c-0.006-0.004-0.013-0.008-0.019-0.013c0.085-0.065,0.102-0.2,0.159-0.293\r\n\t\t\t\tc0.065-0.104,0.205-0.137,0.28-0.229c0.067-0.082,0.092-0.211,0.197-0.254c0.034-0.054,0.016-0.107-0.006-0.165\r\n\t\t\t\tc-0.262-0.036-0.276-0.356-0.343-0.577c-0.021-0.068-0.016-0.144-0.076-0.173c-0.031-0.005-0.044,0.032-0.076,0.025\r\n\t\t\t\tc-0.015-0.003-0.319-0.315-0.4-0.356c-0.11-0.035-0.22-0.072-0.331-0.107c-0.09-0.035-0.342-0.112-0.489-0.051\r\n\t\t\t\tc-0.016,0.014-0.018,0.026-0.019,0.057c-0.095-0.021-0.191-0.042-0.286-0.064h-0.006c-0.015,0.016-0.03,0.03-0.044,0.045\r\n\t\t\t\tc-0.061-0.119-0.214-0.313-0.388-0.291c-0.011,0.021-0.021,0.041-0.032,0.062v0.013c-0.013-0.091-0.026-0.182-0.038-0.272\r\n\t\t\t\tc-0.074-0.125-0.313-0.283-0.47-0.318c-0.084-0.018-0.176,0.005-0.241,0.02c-0.066-0.004-0.131-0.009-0.197-0.014v-0.006\r\n\t\t\t\tc0.187-0.059,0.138-0.167,0.273-0.223c0.002-0.004,0.004-0.008,0.006-0.012c-0.051-0.035-0.122-0.046-0.178-0.084\r\n\t\t\t\tc-0.013-0.019-0.026-0.037-0.038-0.057c-0.045-0.029-0.132-0.021-0.172-0.045c-0.027,0.02-0.038,0.035-0.045,0.076\r\n\t\t\t\tc-0.004,0.002-0.008,0.004-0.013,0.006c-0.012-0.113-0.097-0.154-0.184-0.191v-0.039c0.059,0.002,0.119,0.004,0.178,0.006\r\n\t\t\t\tc0.011-0.006,0.021-0.014,0.032-0.02c0.004-0.009,0.008-0.018,0.013-0.025c-0.002-0.004-0.004-0.008-0.006-0.013\r\n\t\t\t\tc-0.129-0.028-0.42-0.039-0.54,0.019c-0.075,0.037-0.117,0.127-0.21,0.146c-0.261,0.059-0.335-0.148-0.496-0.159\r\n\t\t\t\tc-0.136-0.008-0.364,0.083-0.483,0.025c-0.058-0.029-0.044-0.058-0.07-0.121c-0.05-0.125-0.201-0.158-0.375-0.159\r\n\t\t\t\tc-0.033-0.051-0.073-0.137-0.089-0.197c-0.053-0.012-0.097,0.017-0.114,0.064c0.015,0.025,0.03,0.051,0.044,0.076\r\n\t\t\t\tc0.028-0.002,0.055-0.004,0.083-0.006c0.013,0.011,0.025,0.021,0.038,0.031c-0.016,0.063-0.425,0.178-0.515,0.211\r\n\t\t\t\tc0.006,0.004,0.013,0.008,0.019,0.012c-0.008,0.037-0.018,0.037-0.038,0.058c0.053,0.026,0.197,0.299,0.152,0.394\r\n\t\t\t\tc-0.025,0.045-0.094,0.072-0.152,0.084c-0.065-0.049-0.097-0.164-0.146-0.229c0.015-0.101,0.07-0.187,0.121-0.254\r\n\t\t\t\tc-0.012-0.103-0.056-0.167-0.089-0.254c0.041-0.062,0.144-0.086,0.241-0.089c0.011-0.014,0.021-0.025,0.032-0.038\r\n\t\t\t\tc-0.013-0.064-0.059-0.101-0.114-0.121c-0.156-0.06-0.195,0.139-0.273,0.185c-0.04,0.012-0.081,0.024-0.121,0.037\r\n\t\t\t\tc0.019-0.035,0.046-0.051,0.032-0.102c0.027,0.011,0.029,0.016,0.038,0.045h0.006c0.052-0.033,0.079-0.079,0.121-0.121\r\n\t\t\t\tc-0.08-0.166-0.161-0.342-0.337-0.413c-0.058-0.022-0.134,0.003-0.203-0.026c-0.026-0.01-0.121-0.049-0.159-0.037\r\n\t\t\t\tc-0.047,0.031-0.093,0.063-0.14,0.095c-0.03,0.018-0.063,0.012-0.102,0.026c-0.12,0.043-0.172,0.127-0.331,0.094\r\n\t\t\t\tc-0.05-0.062-0.09-0.027-0.135-0.021c-0.26-1.288-0.395-2.619-0.457-3.968c0.016-0.002,0.033-0.001,0.046-0.007\r\n\t\t\t\tc0.167-0.078,0.167-0.194,0.47-0.121c0.006,0.011,0.013,0.021,0.019,0.031v0.007c-0.047,0.013-0.093,0.024-0.14,0.038\r\n\t\t\t\tc0.108,0.084,0.261,0.035,0.419,0.082c0.114,0.035,0.208,0.115,0.337,0.146c0.067,0.018,0.202-0.02,0.261,0.02\r\n\t\t\t\tc0.043,0.024,0.066,0.123,0.07,0.184c0.099,0.061,0.295,0.061,0.388,0.127c-0.006,0.064-0.053,0.105-0.102,0.127\r\n\t\t\t\tC7.811,33.859,7.792,33.88,7.773,33.9v0.007c0.141,0.006,0.266-0.058,0.394-0.038c0.097,0.011,0.195,0.021,0.292,0.031\r\n\t\t\t\tc0.105-0.019,0.2-0.058,0.324-0.069c0.002-0.004,0.004-0.008,0.006-0.013c-0.124-0.092-0.202-0.151-0.432-0.146\r\n\t\t\t\tc-0.006-0.006-0.013-0.013-0.019-0.02c0.013-0.027,0.025-0.055,0.038-0.082c-0.079-0.081-0.36-0.09-0.483-0.141\r\n\t\t\t\tc-0.04-0.043-0.08-0.089-0.121-0.133c-0.131-0.09-0.318-0.074-0.477-0.146c-0.064-0.053-0.127-0.105-0.191-0.158H7.022\r\n\t\t\t\tc-0.163-0.037-0.338-0.074-0.559-0.07c-0.083,0.008-0.165,0.018-0.248,0.025c-0.059,0.014-0.109,0.043-0.163,0.068\r\n\t\t\t\tC6.038,32.677,6,32.344,6,32c0-0.404,0.042-0.798,0.06-1.198c0.069,0.073,0.127,0.176,0.179,0.209\r\n\t\t\t\tc0.057,0.035,0.12,0.025,0.133,0.102c-0.021,0.115-0.042,0.229-0.064,0.343c0.008,0.002,0.017,0.004,0.025,0.006\r\n\t\t\t\tc0.036,0.022,0.05-0.017,0.089-0.032c0.002,0.019,0.004,0.038,0.006,0.057c-0.025,0.035-0.04,0.043-0.083,0.063\r\n\t\t\t\tc0.038,0.07,0.076,0.14,0.115,0.21h0.06c0.006,0.032,0.013,0.064,0.019,0.095c0.019,0.013,0.038,0.025,0.057,0.038\r\n\t\t\t\tc0.051,0.105-0.017,0.164,0.133,0.172c0.035,0.058,0.068,0.193,0.108,0.242c0.047-0.022,0.112-0.023,0.178-0.032\r\n\t\t\t\tc-0.004,0.021-0.008,0.042-0.013,0.064h0.013c0.048-0.142,0.166-0.403,0.108-0.61c-0.023-0.081-0.082-0.166-0.108-0.261\r\n\t\t\t\tc-0.013-0.083-0.025-0.165-0.038-0.248c-0.062-0.179-0.316-0.446-0.267-0.699c0.032-0.1,0.064-0.199,0.095-0.299\r\n\t\t\t\tc0.053-0.085,0.131-0.155,0.165-0.26c0.15-0.028,0.305-0.087,0.369-0.197c0.047-0.082,0.048-0.15,0.127-0.197\r\n\t\t\t\tc0.074-0.044,0.216-0.039,0.28-0.076c0.064-0.08,0.127-0.161,0.191-0.242c0.07-0.011,0.14-0.021,0.21-0.032\r\n\t\t\t\tc0.025-0.021,0.051-0.042,0.076-0.063c0.002-0.004,0.004-0.009,0.006-0.013c-0.027-0.012-0.033-0.01-0.044-0.038\r\n\t\t\t\tc-0.025,0.019-0.067,0.035-0.095,0.051c-0.015-0.009-0.03-0.017-0.044-0.026c-0.019-0.013-0.023-0.028-0.032-0.051\r\n\t\t\t\tc0.025,0.019,0.035,0.04,0.07,0.051c0.054-0.032,0.047-0.06,0.089-0.083v-0.013c-0.03-0.031-0.081-0.057-0.14-0.057\r\n\t\t\t\tc-0.006-0.011-0.013-0.021-0.019-0.032c0.044,0.015,0.089,0.03,0.133,0.045c-0.006-0.011-0.013-0.021-0.019-0.032v-0.006\r\n\t\t\t\tc0.051,0.021,0.064,0.054,0.14,0.064c0.025-0.03,0.051-0.059,0.076-0.089c0.009-0.016,0.008-0.002,0.038,0\r\n\t\t\t\tc0.006-0.011,0.013-0.021,0.019-0.032c-0.001-0.047-0.012-0.063-0.038-0.083c-0.011-0.006-0.002-0.006-0.013,0\r\n\t\t\t\tc-0.028,0.017-0.029,0.052-0.044,0.081c0.002,0.005-0.004,0.01-0.001,0.014v-0.013c0-0.001,0-0.001,0.001-0.002\r\n\t\t\t\tc-0.01-0.027-0.001-0.054,0.005-0.087c-0.004-0.004-0.009-0.008-0.013-0.013c-0.06,0.01-0.113,0.02-0.191,0.019\r\n\t\t\t\tc0.008-0.038-0.02-0.071,0-0.108v-0.013c0.011,0.017-0.003,0.036,0.006,0.064c0.009,0.011,0.017,0.021,0.026,0.032\r\n\t\t\t\tc0.021-0.006,0.042-0.013,0.064-0.019c0-0.018-0.002-0.019-0.013-0.038c0.021,0.011,0.042,0.021,0.064,0.032\r\n\t\t\t\tc0.008-0.004,0.017-0.009,0.025-0.013c0.002-0.004,0.004-0.008,0.006-0.013c-0.011-0.015-0.021-0.029-0.032-0.044\r\n\t\t\t\tc0.034,0.019,0.057,0.04,0.089,0.025c0.004,0.015,0.008,0.03,0.013,0.045h0.019c-0.012-0.067-0.042-0.087-0.07-0.134h0.038\r\n\t\t\t\tc-0.004-0.026-0.004-0.02-0.017-0.036c0.004-0.008,0.008-0.015,0.011-0.023c-0.024-0.086-0.083-0.085-0.17-0.066\r\n\t\t\t\tc-0.004-0.07-0.06-0.101-0.121-0.114c-0.002-0.004-0.004-0.008-0.006-0.013c0.011-0.006,0.021-0.013,0.032-0.019\r\n\t\t\t\tc0.043,0.021,0.076,0.045,0.095,0.089c0.03,0.02,0.023,0.021,0.07,0.019c-0.002-0.021-0.004-0.042-0.006-0.064\r\n\t\t\t\tc-0.02-0.013-0.034-0.028-0.052-0.038H8.172c-0.021-0.017-0.042-0.034-0.064-0.051c0.018,0.026,0.045,0.037,0.069,0.051h0.02\r\n\t\t\t\tc-0.002-0.013-0.004-0.025-0.006-0.038c0.017,0.006,0.034,0.013,0.051,0.019h0.006c-0.002-0.043-0.004-0.052-0.038-0.064\r\n\t\t\t\tc0.009-0.004,0.017-0.009,0.026-0.013c-0.082-0.042-0.117-0.054-0.159-0.133c0.034,0.03,0.068,0.059,0.102,0.089\r\n\t\t\t\tc0.006,0.006,0.013,0.013,0.019,0.019c0.036-0.023,0.042-0.039,0.057-0.083c-0.034-0.047-0.238-0.13-0.311-0.159\r\n\t\t\t\tc-0.002-0.007,0.001-0.013,0-0.019c0.068-0.003,0.075,0.022,0.127,0.045c-0.002-0.013-0.004-0.025-0.006-0.038\r\n\t\t\t\tc0.042,0.042,0.099,0.078,0.153,0.108c-0.016-0.09-0.078-0.09-0.095-0.165h0.006c0.012,0.032,0.027,0.045,0.057,0.057\r\n\t\t\t\tc0.004,0.004,0.008,0.008,0.013,0.013h0.006c-0.015-0.036-0.03-0.072-0.044-0.108c-0.02-0.107,0.072-0.052-0.006-0.197\r\n\t\t\t\tc0.017,0.002,0.034,0.004,0.051,0.006c0.002-0.019,0.004-0.038,0.006-0.057c0.019,0.012,0.011,0.001,0.019,0.026h0.006\r\n\t\t\t\tc0.011-0.014,0.011-0.017,0.013-0.045c0.002,0.011,0.004,0.021,0.006,0.032c0.029-0.021,0.034-0.024,0.032-0.045\r\n\t\t\t\tc0.015-0.011,0.03-0.021,0.044-0.032c-0.006,0.017-0.013,0.034-0.019,0.051c0.013,0.006,0.025,0.013,0.038,0.019\r\n\t\t\t\tc-0.025,0.006-0.051,0.013-0.076,0.019c-0.011,0.017-0.021,0.034-0.032,0.051v0.006h0.051c-0.013,0.035-0.02,0.044-0.07,0.044\r\n\t\t\t\tc-0.004,0.006-0.009,0.013-0.013,0.019c0.016,0.017,0.027,0.021,0.057,0.025c0.002,0.004,0.004,0.008,0.006,0.013v0.026\r\n\t\t\t\tc-0.013-0.007-0.025-0.013-0.038-0.019c-0.004,0.002-0.009,0.004-0.013,0.006c-0.004,0.013-0.009,0.025-0.013,0.038v0.006\r\n\t\t\t\tc0.047-0.025,0.036-0.01,0.089,0.013c0.004,0.006,0.009,0.013,0.013,0.019c-0.03,0.011-0.059,0.021-0.089,0.032\r\n\t\t\t\tc-0.002,0.004-0.004,0.008-0.006,0.013c0.011,0.015,0.021,0.03,0.032,0.044c0.017,0.011,0.034,0.021,0.051,0.032\r\n\t\t\t\tc0.021-0.013,0.042-0.025,0.064-0.038c-0.001,0.055-0.005,0.033-0.025,0.07c0.015,0.008,0.03,0.017,0.044,0.025\r\n\t\t\t\tc-0.006,0.013-0.013,0.026-0.019,0.038v0.006H8.37c0.026-0.01,0.031-0.014,0.051,0c-0.039,0.071-0.09,0.135-0.114,0.229\r\n\t\t\t\tc0.004,0.013,0.008,0.025,0.013,0.038c0.008-0.002,0.017-0.004,0.025-0.006c0.017-0.038,0.034-0.076,0.051-0.114\r\n\t\t\t\tc0.02,0,0.017,0.006,0.032-0.006c0.023-0.055,0.047-0.11,0.07-0.165c0.033-0.056,0.086-0.075,0.102-0.14\r\n\t\t\t\tc-0.004-0.04-0.008-0.081-0.013-0.121c-0.078-0.033-0.136-0.206-0.152-0.292c0.024-0.023,0.034-0.046,0.064-0.064\r\n\t\t\t\tc0.002,0.002,0.004,0.004,0.006,0.006c-0.017,0.031-0.037,0.044-0.057,0.07c0.054,0.073,0.068,0.144,0.184,0.14\r\n\t\t\t\tc0.005,0.037-0.005,0.046-0.013,0.083v0.006c0.004,0.002,0.008,0.004,0.013,0.006c0.055-0.041,0.152-0.125,0.152-0.216\r\n\t\t\t\tc0.013,0.004,0.026,0.008,0.038,0.013c0.032-0.093,0.078-0.196,0.095-0.305c-0.053-0.007-0.063-0.019-0.089-0.051\r\n\t\t\t\tc-0.002-0.006-0.004-0.013-0.006-0.019c0.029-0.023,0.034-0.034,0.064-0.026c0.019-0.053,0.038-0.106,0.057-0.159\r\n\t\t\t\tc-0.015,0.047-0.03,0.093-0.045,0.14c0.19-0.133,0.413-0.223,0.744-0.222c0.008-0.043,0.017-0.085,0.025-0.127\r\n\t\t\t\tc0.002-0.002,0.036,0,0.064-0.013c0.003,0.022-0.008,0.053-0.006,0.095c0.004,0.002,0.008,0.004,0.013,0.007\r\n\t\t\t\tc0.058-0.002,0.108-0.049,0.121-0.089h0.006c0.013,0.016,0.014,0.037,0.013,0.07c0.072-0.017,0.144-0.034,0.216-0.051\r\n\t\t\t\tc0-0.035-0.012-0.048-0.019-0.067v0.016c-0.03,0.013-0.059,0.025-0.089,0.038c-0.017-0.006-0.034-0.013-0.051-0.019\r\n\t\t\t\tc-0.017-0.095-0.061-0.182-0.165-0.191c0.011-0.069,0.067-0.083,0.127-0.102c0.002-0.006,0.004-0.013,0.006-0.019\r\n\t\t\t\tc-0.052-0.015-0.053-0.008-0.083-0.057c0.045-0.073,0.096-0.241,0.184-0.267v-0.07c0.028-0.011,0.055-0.021,0.083-0.032\r\n\t\t\t\tc-0.002,0.011-0.004,0.021-0.006,0.032c0.013,0.006,0.025,0.013,0.038,0.019h0.006c0.028-0.036,0.033-0.028,0.025-0.076\r\n\t\t\t\tc0.011-0.009,0.021-0.017,0.032-0.025c-0.004,0.015-0.008,0.03-0.013,0.044c0.017,0.004,0.034,0.008,0.051,0.013\r\n\t\t\t\tc0.008-0.021,0.017-0.042,0.025-0.064c0.013,0.008,0.025,0.017,0.038,0.025c0.059-0.044,0.113-0.149,0.14-0.222h0.006\r\n\t\t\t\tc0.004,0.002,0.008,0.004,0.013,0.006c-0.008,0.021-0.017,0.042-0.025,0.064c0.002,0.004,0.004,0.008,0.006,0.013\r\n\t\t\t\tc0.027,0.008,0.055,0.017,0.083,0.025c-0.004-0.019-0.008-0.038-0.013-0.057c0.046,0.008,0.075-0.021,0.121-0.032\r\n\t\t\t\tc0.006,0.019,0.013,0.038,0.019,0.057c0.038-0.028,0.057-0.071,0.095-0.095c0.015,0.011,0.03,0.021,0.044,0.032\r\n\t\t\t\tc0.018-0.015,0.017-0.011,0.019-0.045c0.069,0.012,0.096-0.012,0.153-0.038c0.011-0.019,0.01-0.016,0.013-0.032h-0.051\r\n\t\t\t\tc0.011-0.015,0.021-0.03,0.032-0.045c-0.011-0.023-0.021-0.047-0.032-0.07c0.011,0.008,0.021,0.017,0.032,0.025\r\n\t\t\t\tc0.041-0.039,0.135-0.02,0.178,0.013c0.034-0.019,0.068-0.038,0.102-0.057c-0.006-0.013-0.013-0.026-0.019-0.038\r\n\t\t\t\tc0.023,0.013,0.047,0.025,0.07,0.038c0.139-0.017,0.194-0.143,0.343-0.146c0.013-0.023,0.025-0.047,0.038-0.07\r\n\t\t\t\tc-0.006-0.019-0.013-0.038-0.019-0.057c0.024,0.019,0.04,0.035,0.044,0.076c0.019-0.011,0.038-0.021,0.057-0.032h0.006\r\n\t\t\t\tc-0.025,0.065-0.104,0.124-0.172,0.146c-0.008,0.017-0.011,0.022-0.013,0.051c0.108-0.056,0.302-0.039,0.432-0.025\r\n\t\t\t\tc0.004,0.006,0.008,0.013,0.013,0.019c-0.092-0.002-0.148,0.034-0.229,0.051v0.044c-0.023-0.018-0.019-0.021-0.044-0.025\r\n\t\t\t\tc0.002-0.023,0.004-0.047,0.006-0.07c-0.083-0.003-0.358,0.164-0.413,0.222h-0.013c0.011,0.006,0.021,0.013,0.032,0.019v0.006\r\n\t\t\t\tc-0.027,0.003-0.018,0.002-0.038-0.013c-0.04,0.023-0.08,0.047-0.121,0.07c-0.002,0.004-0.004,0.008-0.006,0.013\r\n\t\t\t\tc0.006,0.004,0.013,0.008,0.019,0.013c0.03-0.019,0.059-0.038,0.089-0.057c-0.014,0.038-0.023,0.015-0.044,0.038\r\n\t\t\t\tc-0.076,0.082-0.026,0.172-0.006,0.26c0.015-0.005,0.009-0.003,0.025-0.019c0.019,0.032,0.038,0.064,0.057,0.095\r\n\t\t\t\tc0.048-0.01,0.046-0.012,0.076,0.019c0.009-0.023,0.017-0.047,0.026-0.07c0.035-0.016,0.053-0.017,0.108-0.013v-0.045\r\n\t\t\t\tc0.006,0.004,0.013,0.009,0.019,0.013c0.062-0.036,0.089-0.171,0.203-0.172c0.014-0.051-0.01-0.053-0.013-0.108h0.038\r\n\t\t\t\tc0.006,0.011,0.013,0.021,0.019,0.032h0.006c0.023-0.015,0.034-0.023,0.045-0.051c0.004-0.002,0.008-0.004,0.013-0.006\r\n\t\t\t\tc-0.002,0.015-0.004,0.03-0.006,0.045c0.036,0.004,0.072,0.008,0.108,0.013c0.016-0.034,0.031-0.025,0.038-0.07\r\n\t\t\t\tc0.011,0.006,0.021,0.013,0.032,0.019c0.004-0.015,0.008-0.03,0.013-0.044c0.006-0.002,0.013-0.004,0.019-0.006\r\n\t\t\t\tc0.032,0.009,0.026,0.014,0.045,0.032c0.124-0.045,0.262-0.143,0.407-0.146c-0.002-0.009-0.004-0.017-0.006-0.025\r\n\t\t\t\tc0.032,0.002,0.064,0.004,0.095,0.006c-0.004-0.006-0.008-0.013-0.013-0.019c0.006-0.004,0.013-0.009,0.019-0.013\r\n\t\t\t\tc0.024-0.013,0.02-0.005,0.044,0.013c0.021-0.009,0.042-0.017,0.063-0.025c-0.027-0.034-0.068-0.036-0.133-0.032\r\n\t\t\t\tc-0.004-0.006-0.008-0.013-0.013-0.019c0.013-0.007,0.025-0.013,0.038-0.019c0.006-0.008,0.013-0.017,0.019-0.025\r\n\t\t\t\tc-0.021-0.021-0.042-0.042-0.063-0.064c-0.075-0.027-0.112,0.044-0.133-0.064c-0.066,0.01-0.086,0.052-0.133,0.07\r\n\t\t\t\tc-0.032,0.012-0.073,0.004-0.095,0.013c0.006-0.013,0.013-0.025,0.019-0.038h-0.013c-0.002-0.004-0.004-0.008-0.006-0.013\r\n\t\t\t\tc-0.067-0.031-0.119,0.027-0.165,0.006c-0.019-0.013-0.038-0.025-0.057-0.038c-0.028,0.002-0.055,0.004-0.083,0.006\r\n\t\t\t\tc-0.028-0.013-0.04-0.048-0.083-0.057h-0.013v-0.006c0.025-0.009,0.051-0.017,0.076-0.025c0.004-0.002,0.009-0.004,0.013-0.006\r\n\t\t\t\tc-0.103-0.049-0.301-0.028-0.267-0.191c-0.021-0.028-0.018-0.025-0.044-0.019c-0.013-0.053-0.009-0.079,0.013-0.121\r\n\t\t\t\tc-0.03-0.032-0.094-0.029-0.159-0.025c0.088-0.089,0.103-0.048,0.133-0.178c0.021-0.021,0.042-0.042,0.064-0.064\r\n\t\t\t\tc-0.015-0.011-0.03-0.021-0.044-0.032c-0.019,0.008-0.038,0.017-0.057,0.025v-0.032c-0.055,0.025-0.11,0.051-0.165,0.076\r\n\t\t\t\tc-0.065-0.089-0.112-0.14-0.254-0.152v-0.007c0.049-0.015,0.115-0.056,0.191-0.038c0.034,0.015,0.068,0.03,0.102,0.045\r\n\t\t\t\tc0.079-0.006,0.346-0.155,0.375-0.216c-0.094-0.249-0.411-0.255-0.674-0.152c-0.282,0.11-0.595,0.189-0.82,0.356\r\n\t\t\t\tc-0.184,0.136-0.321,0.345-0.502,0.489c0.154-0.325,0.477-0.718,0.775-0.896c0.079-0.047,0.223-0.03,0.299-0.083\r\n\t\t\t\tc0.108-0.076,0.07-0.268,0.267-0.337c0.117-0.041,0.317-0.025,0.439-0.006c0.178,0.027,0.354-0.025,0.515-0.006\r\n\t\t\t\tc0.163,0.008,0.326,0.017,0.489,0.025c0.219-0.035,0.465-0.038,0.61-0.146c0.083-0.091,0.165-0.182,0.248-0.273\r\n\t\t\t\tc0.155-0.015,0.309-0.03,0.464-0.044c0.1-0.032,0.288-0.2,0.375-0.267v-0.013c-0.042-0.055-0.085-0.11-0.127-0.165\r\n\t\t\t\tc0.034-0.061,0.064-0.142,0.095-0.21c-0.007-0.1-0.158-0.181-0.248-0.197c-0.041-0.008-0.112,0.043-0.153,0.064\r\n\t\t\t\tc-0.013-0.019-0.025-0.038-0.038-0.057c0.008-0.044,0.031-0.064,0.051-0.095c-0.257-0.247-0.418,0.027-0.61,0.133\r\n\t\t\t\tc-0.089,0.05-0.218,0.06-0.305,0.095c0.012-0.069,0.034-0.173,0.083-0.21c0.053-0.004,0.106-0.008,0.159-0.013\r\n\t\t\t\tc0.109-0.031,0.157-0.136,0.28-0.165c0.122-0.029,0.24-0.033,0.292-0.127c-0.11-0.028-0.22-0.055-0.33-0.083\r\n\t\t\t\tc-0.106-0.044-0.191-0.133-0.324-0.153c-0.101-0.015-0.161,0.043-0.261,0.038c0.021-0.051,0.042-0.102,0.064-0.152\r\n\t\t\t\tc-0.007-0.092-0.237-0.273-0.311-0.299H12.48c-0.062-0.024-0.129-0.187-0.165-0.241c0.004-0.002,0.008-0.004,0.013-0.006\r\n\t\t\t\tc0.055-0.031,0.185,0.022,0.261,0c0.012-0.024,0.014-0.061,0.013-0.102c-0.084-0.062-0.178-0.095-0.242-0.178\r\n\t\t\t\tc0.027-0.025,0.057-0.044,0.102-0.051c-0.036-0.207-0.226-0.07-0.261-0.356c-0.028,0.002-0.055,0.004-0.083,0.006\r\n\t\t\t\tc-0.009-0.07,0.017-0.079,0.032-0.134c-0.122-0.141-0.365-0.561-0.508-0.629c-0.004-0.004-0.008-0.008-0.013-0.013\r\n\t\t\t\tc-0.021,0.042-0.042,0.085-0.064,0.127c-0.144,0.096-0.271,0.026-0.114,0.235c-0.096,0.122-0.182,0.158-0.184,0.388h-0.006\r\n\t\t\t\tc-0.051-0.051-0.057-0.152-0.153-0.159c-0.034,0.059-0.068,0.119-0.102,0.178c-0.077,0.058-0.266,0.055-0.349,0.095\r\n\t\t\t\tc-0.013-0.019-0.026-0.038-0.038-0.057c0.014-0.022,0.019-0.03,0.019-0.07c-0.149-0.221-0.275-0.116-0.483-0.044h-0.006\r\n\t\t\t\tc-0.044-0.056-0.038-0.084-0.026-0.178c0.036,0.002,0.072,0.004,0.108,0.006c0.112-0.165-0.211-0.619,0.013-0.724\r\n\t\t\t\tc0.011-0.023,0.014-0.056,0.013-0.095c-0.011-0.017-0.021-0.034-0.032-0.051c-0.039-0.011-0.088,0.06-0.178,0.038\r\n\t\t\t\tc-0.162-0.039-0.31-0.129-0.458-0.159c-0.052-0.065-0.056-0.061-0.013-0.14c-0.022-0.016-0.052-0.042-0.077-0.062\r\n\t\t\t\tc0.109-0.188,0.225-0.372,0.338-0.557c0.01,0.006,0.021,0.007,0.031,0.015c0.006,0.003,0.064-0.003,0.102,0.013\r\n\t\t\t\tc0.028,0.017,0.055,0.034,0.083,0.051c0.049,0.006,0.097,0.013,0.146,0.019c0.04,0.047,0.081,0.093,0.121,0.14\r\n\t\t\t\tc0.094,0.057,0.203,0.032,0.331,0.064c0.203,0.072,0.407,0.144,0.61,0.216c-0.067-0.217-0.212-0.375-0.381-0.489\r\n\t\t\t\tc-0.155-0.104-0.443-0.179-0.47-0.4c0.186,0,0.218,0.082,0.343,0.127c-0.009-0.049-0.017-0.097-0.026-0.146\r\n\t\t\t\tc0.188,0.145,0.277,0.375,0.604,0.349c0.069,0.109,0.145,0.196,0.273,0.248c-0.038-0.078-0.076-0.157-0.114-0.235\r\n\t\t\t\tc0.04,0.008,0.08,0.017,0.121,0.025h0.006c-0.006-0.184-0.176-0.25-0.153-0.432c0.084,0.057,0.177,0.169,0.216,0.267\r\n\t\t\t\tc0.008,0.006,0.017,0.013,0.025,0.019c0.037-0.334-0.178-0.289-0.292-0.477c0.006-0.013,0.013-0.026,0.019-0.038\r\n\t\t\t\tc0.025-0.006,0.051-0.013,0.076-0.019h0.013c-0.061-0.03-0.123-0.059-0.184-0.089c-0.069-0.041-0.11-0.13-0.191-0.153\r\n\t\t\t\tc-0.019,0.015-0.038,0.03-0.057,0.044c-0.008,0.008-0.017,0.017-0.025,0.026c-0.071-0.122-0.147-0.253-0.21-0.388\r\n\t\t\t\tc-0.053-0.009-0.106-0.017-0.159-0.025c-0.006-0.014-0.012-0.027-0.019-0.04c0.024-0.035,0.051-0.067,0.076-0.101\r\n\t\t\t\tc0.001,0.003,0.005,0.005,0.006,0.008c0.04-0.004,0.081-0.009,0.121-0.013c0.006-0.009,0.013-0.017,0.019-0.026\r\n\t\t\t\tc-0.022-0.025-0.045-0.05-0.067-0.075c0.044-0.062,0.092-0.121,0.137-0.183c0.134,0.06,0.208,0.164,0.343,0.226\r\n\t\t\t\tc0.072,0.033,0.155,0.015,0.21,0.051c-0.013,0.036-0.025,0.072-0.038,0.108c0.005,0.082,0.057,0.11,0.089,0.165\r\n\t\t\t\tc0.042-0.019,0.085-0.038,0.127-0.057c0.033,0.038,0.022,0.078,0.051,0.127c0.022,0.036,0.201,0.12,0.248,0.102h0.013\r\n\t\t\t\tc-0.015-0.064-0.03-0.127-0.045-0.191c0.011-0.076,0.021-0.153,0.032-0.229c0.004-0.002,0.008-0.004,0.013-0.006\r\n\t\t\t\tc0.036,0.05,0.089,0.124,0.159,0.14c0.035-0.09,0.113-0.136,0.222-0.152c-0.011-0.088-0.097-0.155-0.165-0.184\r\n\t\t\t\tc-0.002-0.004-0.004-0.009-0.006-0.013c0.15-0.095,0.182,0.061,0.324,0c0.025-0.019,0.058-0.097,0.089-0.127\r\n\t\t\t\tc0.002-0.006,0.004-0.013,0.006-0.019c-0.087-0.061-0.174-0.123-0.261-0.184c-0.092,0.084-0.164,0.079-0.299,0.051\r\n\t\t\t\tc0.013-0.043,0.025-0.085,0.038-0.127c-0.147-0.013-0.29,0.025-0.47,0.026v-0.095c0.061-0.015,0.123-0.03,0.184-0.044h0.013\r\n\t\t\t\tc-0.051-0.098-0.165-0.231-0.267-0.273c-0.037-0.015-0.062-0.003-0.087,0.008c0.618-0.794,1.268-1.56,1.972-2.276\r\n\t\t\t\tc0.027,0.005,0.054,0.009,0.08,0.014c0.042,0.011,0.084,0.021,0.127,0.032c0.022-0.003,0.044-0.006,0.065-0.009\r\n\t\t\t\tc0.003,0,0.005,0,0.008,0c0.003,0.007,0.006,0.014,0.01,0.022c0.02,0.004,0.051,0.001,0.079-0.002\r\n\t\t\t\tc0.003,0.003,0.005,0.006,0.008,0.008c-0.045,0.019-0.061,0.016-0.102,0.01c-0.025,0.007-0.079,0.031-0.085,0.046\r\n\t\t\t\tc-0.01,0.04,0.124,0.116,0.183,0.098c0.044-0.017,0.087-0.034,0.131-0.051c0.058-0.019,0.1-0.003,0.157-0.022\r\n\t\t\t\tc0.096-0.031,0.196-0.098,0.229-0.154c0.053-0.088-0.124-0.137-0.191-0.155c-0.063-0.017-0.099-0.061-0.143-0.099\r\n\t\t\t\tc-0.051-0.044-0.123-0.071-0.209-0.083c0.015-0.015,0.032-0.028,0.047-0.043c0.017,0.003,0.035,0.009,0.05,0.01\r\n\t\t\t\tc0.011-0.005,0.009-0.006,0.015-0.011c0.018-0.001,0.036-0.001,0.055-0.002c0.098,0.013,0.166,0.087,0.242,0.125\r\n\t\t\t\tc0.058,0.029,0.126,0.035,0.206,0.042c0.022,0.002,0.033,0.013,0.057,0.012c0.021-0.022,0.037-0.048,0.097-0.049\r\n\t\t\t\tc0.002,0.002,0.005,0.004,0.007,0.005c0.001,0.001,0.003,0.003,0.004,0.004c-0.009,0.006-0.019,0.012-0.028,0.019\r\n\t\t\t\tc0.003,0.004,0.006,0.009,0.01,0.013c0.082-0.002,0.101-0.036,0.149-0.053c0.04-0.014,0.063,0.003,0.095-0.008\r\n\t\t\t\tc-0.012,0.025-0.046,0.04-0.061,0.063c-0.015,0.023-0.012,0.045-0.025,0.07c-0.007,0.014-0.031,0.02-0.038,0.036\r\n\t\t\t\tc0.01,0.019,0.049,0.027,0.043,0.05c-0.003,0.006-0.051,0.024-0.06,0.026c0,0.019-0.02,0.038-0.005,0.057\r\n\t\t\t\tc0.01,0.008,0.024,0.008,0.042,0.007c0.003,0.002,0.006,0.003,0.009,0.005c-0.017,0.009-0.038,0.017-0.052,0.026\r\n\t\t\t\tc-0.001,0.018,0.024,0.052,0.013,0.071c-0.012,0.019-0.048,0.03-0.06,0.051c0,0.001,0,0.001,0,0.002\r\n\t\t\t\tc0.084-0.011,0.07-0.036,0.138-0.055c0.04,0.003,0.027,0.022,0.052,0.038c0.012,0.003,0.025,0.006,0.037,0.01\r\n\t\t\t\tc0.001,0.001,0.002,0.002,0.004,0.003c0,0.002,0,0.005,0,0.007c-0.016,0.04-0.137,0.028-0.188,0.046\r\n\t\t\t\tc-0.007,0.004-0.065,0.071-0.067,0.078c0.003,0.008,0.005,0.016,0.008,0.024c-0.011,0.012-0.022,0.025-0.032,0.038\r\n\t\t\t\tc-0.019,0.031-0.038,0.062-0.057,0.092c0.074-0.015,0.084-0.049,0.159-0.064c0.061,0.021,0.023,0.086-0.02,0.107\r\n\t\t\t\tc-0.029,0.014-0.071,0.006-0.102,0.011c-0.063,0.01-0.105,0.042-0.185,0.049c-0.054,0.004-0.117-0.01-0.169,0.006\r\n\t\t\t\tc-0.118,0.035-0.158,0.131-0.289,0.172c0.034,0.002,0.095,0.005,0.125,0.003c0.039-0.009,0.078-0.018,0.118-0.027\r\n\t\t\t\tc0.023,0.004,0.047,0.008,0.07,0.012c0.05,0.008,0.104,0.007,0.161,0.008c0.03-0.031,0.065-0.027,0.119-0.048\r\n\t\t\t\tc0.001-0.002,0.002-0.004,0.003-0.006c0-0.015-0.011-0.025-0.03-0.026c0,0,0-0.001-0.001-0.002\r\n\t\t\t\tc0.021-0.031,0.098-0.036,0.127-0.016c0.007,0.042-0.069,0.055-0.07,0.092c-0.002,0.059,0.172,0.07,0.202,0.108\r\n\t\t\t\tc-0.014,0.005-0.016,0.007-0.013,0.017c-0.062-0.014-0.133-0.027-0.211-0.024c-0.053,0.005-0.106,0.01-0.159,0.015\r\n\t\t\t\tc-0.058,0-0.109-0.014-0.16-0.022c-0.067-0.011-0.133-0.021-0.2-0.032c-0.003,0.001-0.007,0.001-0.01,0.002\r\n\t\t\t\tc-0.003,0.006-0.007,0.012-0.01,0.018c0,0.026,0.154,0.053,0.194,0.053c0.012,0.005,0.034,0.016,0.012,0.028\r\n\t\t\t\tc-0.041,0.017-0.145-0.037-0.22-0.018c-0.111,0.028-0.099,0.092-0.137,0.146c-0.027,0.036-0.054,0.071-0.081,0.107\r\n\t\t\t\tc-0.003,0.008,0.004,0.014,0.009,0.02c0.107,0.021,0.169-0.081,0.21-0.108c0.029-0.009,0.058-0.018,0.086-0.026\r\n\t\t\t\tc0.066-0.032,0.111-0.067,0.214-0.086c-0.003,0.016-0.019,0.023-0.018,0.04c0.034,0.031,0.073,0.012,0.142,0.008\r\n\t\t\t\tc0.019,0,0.038-0.001,0.058-0.001c0.029-0.02,0.092-0.051,0.055-0.082c0,0,0-0.001-0.001-0.002\r\n\t\t\t\tc0.073-0.008,0.116-0.013,0.164,0.002c0.001,0.002,0.001,0.004,0.002,0.006c-0.029,0.03-0.094,0.055-0.093,0.094\r\n\t\t\t\tc0.024,0.013,0.055,0.015,0.064,0.043c-0.107,0.003-0.221,0.01-0.318,0.003c-0.048-0.004-0.097-0.025-0.149-0.02\r\n\t\t\t\tc-0.05,0.005-0.095,0.041-0.126,0.057c-0.053,0.028-0.107,0.056-0.16,0.084c-0.031,0.011-0.061,0.023-0.092,0.034\r\n\t\t\t\tc-0.026,0.023-0.052,0.046-0.077,0.07c0.097,0.037,0.343-0.041,0.494-0.055c0.031-0.005,0.062-0.01,0.093-0.014\r\n\t\t\t\tc0.025,0.006,0.05,0.012,0.074,0.017c0.027-0.002,0.053-0.004,0.08-0.005c0.071,0.006,0.103,0.061,0.143,0.099\r\n\t\t\t\tc-0.048-0.007-0.096-0.013-0.143-0.019c-0.175-0.014-0.382-0.023-0.599,0.048c-0.044,0.013-0.088,0.026-0.132,0.039\r\n\t\t\t\tc0.033,0.026,0.093,0.01,0.126,0.031c0.015,0.022,0.03,0.043,0.045,0.065c0.009,0.006,0.187,0.026,0.212,0.028\r\n\t\t\t\tc0.027-0.007,0.031-0.019,0.051-0.03c0.071-0.01,0.102,0.049,0.058,0.079c-0.07,0.047-0.247,0.037-0.329,0.081\r\n\t\t\t\tc-0.002,0-0.003,0.001-0.005,0.001c0.03,0.018,0.163,0.033,0.21,0.036c-0.003,0.003-0.155,0.049-0.161,0.049\r\n\t\t\t\tc-0.041,0.003-0.061-0.021-0.109,0.004c-0.042,0.022-0.094,0.081-0.039,0.115c0.01,0.006,0.061,0.009,0.061,0.018\r\n\t\t\t\tc0.001,0.014-0.046,0.027-0.052,0.042c-0.006,0.028,0.035,0.04,0.072,0.026c0.049-0.018,0.116-0.057,0.149-0.083\r\n\t\t\t\tc0.068-0.052,0.139-0.105,0.219-0.153c0.026-0.012,0.052-0.023,0.078-0.035c0.04-0.037,0.08-0.074,0.119-0.111\r\n\t\t\t\tc0.043-0.03,0.109-0.051,0.168-0.075c0.037-0.015,0.07-0.028,0.113-0.042c0.041-0.009,0.082-0.018,0.123-0.027\r\n\t\t\t\tc0.021-0.007,0.051-0.021,0.08-0.02c0.023,0.007,0.047,0.013,0.07,0.02c-0.022,0.019-0.042,0.053-0.07,0.067\r\n\t\t\t\tc-0.075,0.036-0.22,0.019-0.315,0.037c-0.025,0.043-0.11,0.069-0.158,0.098c-0.009,0.008-0.002,0.019-0.007,0.028\r\n\t\t\t\tc-0.013,0.026-0.056,0.051-0.112,0.061c0.003,0.009,0.006,0.018,0.009,0.026c-0.158,0.057-0.262,0.142-0.375,0.215\r\n\t\t\t\tc-0.03,0.019-0.109,0.042-0.12,0.068c-0.012,0.015,0.009,0.03,0.021,0.039c0.065,0.049,0.103,0.014,0.195-0.009\r\n\t\t\t\tc-0.019,0.04-0.065,0.091-0.144,0.109c-0.001,0.005-0.002,0.009-0.003,0.014c0.052,0.027,0.141,0.031,0.175-0.022\r\n\t\t\t\tc0.113-0.018,0.086,0.118,0.06,0.151c0.003,0.005,0.006,0.006,0.012,0.013c0.055-0.019,0.148-0.049,0.186-0.075\r\n\t\t\t\tc0.004-0.001,0.008-0.002,0.012-0.002c0.002,0.001,0.004,0.001,0.006,0.002c0.001,0.002,0.001,0.004,0.002,0.006\r\n\t\t\t\tc-0.05,0.055-0.176,0.082-0.215,0.141c0.012,0.026,0.047,0.037,0.078,0.043c0.037-0.003,0.063-0.022,0.086-0.035\r\n\t\t\t\tc0.013,0.011,0.023,0.019,0.028,0.038l-0.049,0.069c-0.008,0.002-0.017,0.003-0.025,0.005c0.026,0.048,0.092,0.004,0.15,0.016\r\n\t\t\t\tc0.032,0.007,0.037,0.052,0.057,0.069c-0.179,0.032-0.096,0.172-0.138,0.254c-0.009,0.019-0.043,0.094-0.017,0.116\r\n\t\t\t\tc0.006,0.006,0.01,0.008,0.021,0.009c0.036,0,0.069-0.044,0.086-0.058c0.047-0.038,0.105-0.089,0.124-0.137\r\n\t\t\t\tc-0.001-0.015-0.003-0.029-0.004-0.044c0.001-0.019,0.025-0.055,0.047-0.067c0.006-0.002,0.011-0.003,0.017-0.005\r\n\t\t\t\tc0.034,0.014,0.057,0.047,0.075,0.077c0.002,0,0.004,0,0.006,0.001c0.011-0.016,0.023-0.032,0.034-0.048\r\n\t\t\t\tc-0.003-0.046-0.006-0.093-0.009-0.14c0.001-0.041,0.018-0.075,0.027-0.11c0.002-0.001,0.003-0.002,0.004-0.003\r\n\t\t\t\tc0.023,0.013,0.046,0.027,0.069,0.04c0.012,0.015-0.004,0.03-0.005,0.042c-0.002,0.033,0.023,0.085,0.059,0.092\r\n\t\t\t\tc0.037,0.007,0.092-0.018,0.131-0.027c0.005,0.037,0.052,0.138,0.083,0.157c0.029,0.009,0.057,0.019,0.086,0.029\r\n\t\t\t\tc0.033,0.016,0.053,0.039,0.077,0.065c0.001,0.003,0.002,0.005,0.003,0.008c-0.08,0.005-0.209-0.043-0.25-0.08\r\n\t\t\t\tc-0.027-0.024-0.028-0.082-0.07-0.091c-0.061-0.014-0.142,0.044-0.163,0.066c-0.002,0-0.003,0.001-0.005,0.001\r\n\t\t\t\tc0.02,0.01,0.078,0.031,0.064,0.059c-0.007,0.019-0.053,0.031-0.075,0.044c-0.062,0.036-0.11,0.071-0.19,0.104\r\n\t\t\t\tc-0.027,0.011-0.089,0.021-0.104,0.038c0.022,0.035,0.111,0.043,0.185,0.018c0.087-0.037,0.175-0.073,0.262-0.11\r\n\t\t\t\tc0.013-0.012,0.026-0.024,0.038-0.036c0.017,0.036,0.059,0.046,0.081,0.071c-0.024,0.009-0.063,0.011-0.098,0.022\r\n\t\t\t\tc-0.09,0.027-0.188,0.048-0.269,0.081c-0.035,0.015-0.092,0.041-0.134,0.034c0.005,0.043,0.049,0.052,0.057,0.092\r\n\t\t\t\tc0.009-0.001,0.019-0.001,0.028-0.002c0,0.002,0.001,0.003,0.001,0.005c-0.015,0.021-0.059,0.025-0.1,0.034\r\n\t\t\t\tc-0.001,0.003-0.002,0.006-0.002,0.009c0.071,0.035,0.051,0.061,0.071,0.126c0.078,0.018,0.126-0.035,0.181-0.058\r\n\t\t\t\tc0.036-0.015,0.083-0.023,0.132-0.032c-0.069,0.057-0.138,0.115-0.207,0.173c0.001,0.002,0.002,0.005,0.003,0.008\r\n\t\t\t\tc0.058,0.008,0.109-0.033,0.173-0.036c0.069-0.004,0.128,0.034,0.115,0.093c-0.012,0.053-0.138,0.066-0.08,0.133\r\n\t\t\t\tc0.048,0.01,0.079-0.016,0.127-0.014c0.002,0,0.003-0.001,0.005-0.001c-0.008,0.023-0.056,0.064-0.035,0.086\r\n\t\t\t\tc0,0.001,0.001,0.002,0.001,0.003c0.108-0.031,0.124-0.099,0.202-0.141c0.009,0.002,0.017,0.004,0.026,0.007\r\n\t\t\t\tc0.001,0.027-0.032,0.057-0.047,0.081c-0.042,0.065-0.084,0.13-0.126,0.195c-0.029,0.051,0.007,0.108,0.077,0.123\r\n\t\t\t\tc0.05,0,0.1,0,0.15,0c0.05,0.005,0.1,0.01,0.15,0.014c0.012,0.017,0.027,0.044,0.031,0.062c-0.019,0.015-0.049,0.031-0.085,0.039\r\n\t\t\t\tc0.002,0.01,0.001,0.012-0.009,0.02c0.009,0.017,0.026,0.022,0.046,0.028c0.037-0.01,0.093-0.026,0.121-0.041\r\n\t\t\t\tc0.002,0.004,0.004,0.008,0.007,0.012c-0.008,0.012-0.025,0.015-0.043,0.023c-0.061,0.029-0.098,0.044-0.103,0.095\r\n\t\t\t\tc0.112-0.018,0.147-0.073,0.235-0.096c0.023,0.072-0.093,0.095-0.116,0.152c0.011,0.023,0.039,0.022,0.053,0.041\r\n\t\t\t\tc-0.039,0.015-0.064,0.034-0.097,0.049c0.041,0.037,0.102,0.063,0.19,0.023c0.008-0.005,0.016-0.011,0.024-0.016\r\n\t\t\t\tc0.023-0.009,0.031,0.008,0.05,0c0.045-0.018,0.029-0.058,0.122-0.037c0,0.002,0.001,0.003,0.002,0.005\r\n\t\t\t\tc-0.013,0.033-0.073,0.046-0.136,0.061c0.058,0.029,0.233,0.015,0.271,0.055c0.036,0.037-0.063,0.081-0.014,0.117\r\n\t\t\t\tc0.006,0.002,0.012,0.001,0.023-0.001c0.028-0.024,0.047-0.046,0.101-0.061c0.008,0.002,0.015,0.004,0.023,0.006\r\n\t\t\t\tc0.006,0.033,0.035,0.061,0.034,0.088c-0.001,0.032-0.072,0.06-0.133,0.07c0.072,0.019,0.181,0.032,0.277,0\r\n\t\t\t\tc-0.001-0.01-0.006-0.026,0.007-0.035c0.001,0,0.002,0,0.003,0c0.025-0.008,0.049-0.015,0.074-0.023\r\n\t\t\t\tc0.018-0.009,0.018-0.024,0.048-0.029c0.001,0,0.002,0,0.003,0s0.002,0,0.002,0c0.001,0,0.002,0,0.003-0.001\r\n\t\t\t\tc0.001,0,0.002,0,0.003,0c0.032-0.001,0.061,0.018,0.104,0.004c0.031-0.018,0.062-0.035,0.094-0.053\r\n\t\t\t\tc0.044-0.016,0.092,0.019,0.092-0.034c0.064,0.001,0.128-0.025,0.114-0.063c-0.096-0.034-0.03-0.068,0.043-0.095\r\n\t\t\t\tc0.035,0.012,0.033,0.039,0.06,0.062c0.009,0.008,0.023,0.008,0.03,0.019c-0.036,0.036-0.115,0.1-0.125,0.14\r\n\t\t\t\tc0.023-0.018,0.04-0.047,0.076-0.059c0.023-0.008,0.049-0.002,0.073-0.012c0.024-0.019,0.048-0.037,0.072-0.055\r\n\t\t\t\tc0.008,0.022,0.018,0.041,0.034,0.055c0.013,0.012,0.052,0.019,0.053,0.04c0.001,0.034-0.057,0.046-0.088,0.07\r\n\t\t\t\tc-0.018,0.014-0.016,0.041-0.034,0.057c-0.035,0.025-0.07,0.05-0.105,0.075c0,0,0,0.001,0.001,0.002\r\n\t\t\t\tc0.032-0.001,0.055-0.016,0.087-0.017c0.02,0.011,0.033,0.028,0.047,0.046c0.002,0.001,0.004,0.002,0.006,0.002\r\n\t\t\t\tc0.075-0.019,0.046-0.092,0.085-0.126c0.041-0.013,0.102-0.007,0.101,0.026c-0.001,0.043-0.072,0.076-0.03,0.132\r\n\t\t\t\tc0.056,0.007,0.091-0.071,0.108-0.096c0.011-0.016,0.04-0.031,0.063-0.042c-0.021,0.042-0.041,0.083-0.062,0.125\r\n\t\t\t\tc0.006-0.001,0.012-0.002,0.017-0.003c0.053,0.045-0.139,0.11-0.08,0.183c0.052,0.007,0.11-0.041,0.178-0.037\r\n\t\t\t\tc0.043,0.002,0.057,0.042,0.094,0.052c0.006-0.001,0.012-0.002,0.017-0.003c0.057-0.029,0.042-0.124,0.109-0.141\r\n\t\t\t\tc0.08-0.02,0.159,0.014,0.22,0.018c0.039-0.001,0.078-0.003,0.117-0.004c0.03,0.001,0.076,0.02,0.11-0.001\r\n\t\t\t\tc0.013-0.009,0.015-0.023,0.02-0.035c0.036-0.085-0.093-0.067-0.067-0.122c-0.041,0.011-0.059,0.029-0.089,0.042\r\n\t\t\t\tc-0.065,0.028-0.129-0.005-0.144-0.044c0.136-0.026,0.396-0.115,0.395-0.18c-0.021,0.001-0.042,0.001-0.063,0.002\r\n\t\t\t\tc-0.034,0.009-0.058,0.035-0.104,0.036c-0.051,0.002-0.124-0.029-0.138-0.067c0.064-0.012,0.128-0.025,0.185-0.032\r\n\t\t\t\tc-0.019-0.013-0.058-0.022-0.087-0.023c-0.003-0.002-0.006-0.003-0.01-0.005c0.031-0.01,0.075-0.019,0.101-0.029\r\n\t\t\t\tc0.034-0.059-0.048-0.07,0.054-0.117c0-0.003,0-0.005,0-0.008c-0.048-0.03-0.174,0.004-0.201-0.043\r\n\t\t\t\tc-0.008-0.014,0.003-0.029,0.009-0.038c0.034-0.053,0.14-0.038,0.185-0.014c0.017-0.003,0.026-0.005,0.033-0.011\r\n\t\t\t\tc0.019-0.014,0.036-0.1,0.012-0.124c0.044-0.024,0.037-0.052,0.056-0.086c0.01-0.01,0.02-0.02,0.03-0.031\r\n\t\t\t\tc-0.041,0.006-0.092,0.025-0.124,0.016l-0.008-0.015c0.097-0.014,0.14-0.081,0.167-0.127c-0.03-0.052-0.1-0.085-0.104-0.156\r\n\t\t\t\tc-0.112-0.018-0.212-0.043-0.286-0.1c0.086-0.011,0.213,0.059,0.274,0.031c0.002-0.001,0.005-0.002,0.007-0.003\r\n\t\t\t\tc-0.001-0.003-0.002-0.005-0.003-0.008c-0.042-0.016-0.114-0.015-0.143-0.042c-0.025-0.024-0.027-0.071-0.049-0.092\r\n\t\t\t\tc0.047-0.029,0.093-0.059,0.14-0.088c0.046-0.019,0.099-0.029,0.134-0.05c-0.008-0.009-0.016-0.018-0.025-0.027\r\n\t\t\t\tc-0.005-0.014-0.011-0.028-0.016-0.042c-0.03-0.035-0.107-0.073-0.064-0.124c0-0.001-0.001-0.002-0.001-0.003\r\n\t\t\t\tc0.036,0.017,0.147,0.055,0.204,0.044c-0.001-0.003-0.002-0.005-0.003-0.008c0.006-0.008,0.012-0.008,0.012-0.019\r\n\t\t\t\tc-0.034-0.018-0.117-0.048-0.111-0.082c0.001-0.001,0.003-0.002,0.004-0.003c0.046,0.004,0.07,0.02,0.12,0.02\r\n\t\t\t\tc0.021-0.009,0.035-0.019,0.033-0.036c-0.026-0.023-0.065-0.029-0.091-0.051c0.001-0.002,0.002-0.005,0.003-0.007\r\n\t\t\t\tc0.035-0.01,0.079,0.009,0.106-0.015c0.019-0.013,0.014-0.041,0.035-0.055c0.018-0.012,0.068-0.012,0.091-0.021\r\n\t\t\t\tc0.015-0.022,0.003-0.047-0.001-0.075c-0.068,0.036-0.136,0.006-0.192,0.002c-0.019,0-0.038,0.001-0.058,0.001\r\n\t\t\t\tc-0.021-0.005-0.042-0.024-0.057-0.036c0,0,0-0.001,0-0.002c0.047,0,0.084,0.013,0.126,0.016\r\n\t\t\t\tc0.044-0.001,0.088-0.001,0.131-0.002c0.028-0.001,0.09-0.009,0.1-0.024c0.026-0.037-0.037-0.077-0.065-0.092\r\n\t\t\t\tc-0.023-0.013-0.046-0.027-0.069-0.04c-0.012-0.013-0.024-0.025-0.036-0.038c-0.018-0.01-0.063-0.003-0.087-0.007\r\n\t\t\t\tc-0.051-0.015-0.102-0.031-0.152-0.046c0.035-0.013,0.071-0.026,0.106-0.039c0.054-0.022,0.094-0.056,0.147-0.073\r\n\t\t\t\tc0.065-0.021,0.098,0.007,0.147-0.018c-0.003-0.033-0.056-0.036-0.075-0.06c0.04-0.014,0.032-0.041,0.033-0.07\r\n\t\t\t\tC18.58,15.989,18.564,16,18.55,15.989c-0.01-0.017-0.02-0.034-0.03-0.051c-0.015-0.01-0.031-0.019-0.047-0.029\r\n\t\t\t\tc-0.088-0.043-0.195,0.005-0.197-0.102c-0.016-0.007-0.033-0.014-0.049-0.021c0.207-0.079,0.173-0.008,0.319,0\r\n\t\t\t\tc0.03-0.008,0.081-0.026,0.102-0.043c0.038-0.03,0.094-0.146,0.023-0.187c-0.046-0.027-0.126-0.019-0.183-0.035l-0.005,0.001\r\n\t\t\t\tc0,0,0-0.001-0.001-0.002c0.156-0.015,0.143-0.03,0.163-0.114c0.004-0.003,0.009-0.005,0.013-0.007c0.003,0,0.005,0,0.008,0\r\n\t\t\t\tc0.029,0.023,0.044,0.049,0.091,0.053c0.011,0.002,0.008-0.002,0.02-0.004c0.001,0,0.002,0,0.003,0\r\n\t\t\t\tc-0.017-0.036-0.034-0.072-0.051-0.108c0.001-0.001,0.003-0.002,0.005-0.003c0.035,0.01,0.044,0.023,0.074,0.039\r\n\t\t\t\tc0.01,0.002,0.021,0.004,0.031,0.006c0.009,0.009,0.018,0.019,0.028,0.028c0.03,0.017,0.13,0.009,0.165-0.018\r\n\t\t\t\tc0.031-0.024,0.019-0.064,0.056-0.086c0.014-0.008,0.03-0.006,0.037,0.001c0.13-0.104-0.137-0.115-0.131-0.166\r\n\t\t\t\tc0.002-0.017,0.048-0.033,0.064-0.046c0.043-0.032,0.089-0.076,0.116-0.114c-0.009,0-0.018-0.001-0.027-0.001\r\n\t\t\t\tc-0.002-0.001-0.004-0.002-0.006-0.004c0.05-0.023,0.021-0.065,0.001-0.1c0.055,0.009,0.141,0.024,0.224-0.01\r\n\t\t\t\tc-0.032,0.049-0.038,0.104-0.065,0.156c-0.017,0.033-0.065,0.069-0.066,0.104c0.008,0.011,0.016,0.021,0.024,0.032\r\n\t\t\t\tc0.015,0.03-0.047,0.071-0.007,0.098c0.021,0.016,0.068,0.009,0.106,0.008c0.001,0,0.002,0,0.002,0\r\n\t\t\t\tc-0.004-0.037,0.007-0.078-0.028-0.11c0.083-0.005,0.124-0.07,0.134-0.107c0.002-0.001,0.003-0.002,0.004-0.003\r\n\t\t\t\tc0.022,0.02,0.027,0.067,0.068,0.07c0.003,0,0.007,0,0.01,0c0.055-0.028,0.102-0.093,0.119-0.136\r\n\t\t\t\tc-0.006-0.004-0.012-0.009-0.018-0.013c0.001,0,0.002,0,0.003,0c0.045,0.009,0.167,0.05,0.2-0.008\r\n\t\t\t\tc0.002-0.031,0.004-0.063,0.006-0.094c0.012-0.023,0.053-0.042,0.051-0.069c0.004-0.047-0.125-0.031-0.121-0.087\r\n\t\t\t\tc0.012-0.034,0.201-0.025,0.247-0.027c0.022,0.013,0.039,0.036,0.067,0.044c0.065-0.002,0.086-0.04,0.101-0.069\r\n\t\t\t\tc0.032-0.059,0.046-0.123,0.077-0.184c0.014-0.028,0.029-0.056,0.043-0.085c0.008-0.021-0.001-0.073-0.025-0.093\r\n\t\t\t\tc-0.006-0.002-0.003-0.002-0.013-0.001c0.018-0.037,0.066-0.059,0.078-0.1c-0.014-0.01-0.028-0.02-0.042-0.03\r\n\t\t\t\tc-0.026-0.028-0.037-0.094-0.024-0.122c0.013-0.028,0.059-0.047,0.07-0.077c0.014-0.038-0.033-0.077-0.004-0.117\r\n\t\t\t\tc0.02-0.027,0.112-0.04,0.135-0.086c0.002-0.016,0.004-0.032,0.005-0.048c0.016-0.031,0.132-0.113,0.06-0.153\r\n\t\t\t\tc-0.023-0.013-0.064-0.006-0.096-0.01c-0.002,0-0.003,0.001-0.005,0.001c0.016-0.009,0.034-0.011,0.039-0.024\r\n\t\t\t\tc0.017-0.065-0.146-0.086-0.173-0.118c0.009-0.012,0.018-0.025,0.027-0.037c0.001-0.001,0.003-0.002,0.004-0.003\r\n\t\t\t\tc0.031,0.059,0.15,0.093,0.239,0.092c0.045,0,0.091-0.01,0.128-0.003c0.046,0.009,0.076,0.04,0.128,0.044\r\n\t\t\t\tc0.046,0.004,0.173-0.02,0.191-0.045c-0.003-0.044-0.086-0.053-0.114-0.083c0.091,0.005,0.077-0.035,0.134,0.031\r\n\t\t\t\tc0.041,0.007,0.101-0.012,0.116-0.034c0.001-0.052-0.066-0.084-0.058-0.137c0.005-0.005,0.011-0.01,0.016-0.015\r\n\t\t\t\tc0.03,0.025,0.076,0.076,0.147,0.053c0.075-0.023,0.014-0.08,0.073-0.109c0.046-0.014,0.093-0.029,0.139-0.043\r\n\t\t\t\tc0.048-0.025,0.083-0.063,0.134-0.089c0.033-0.013,0.065-0.027,0.098-0.04c0.023-0.014,0.024-0.037,0.052-0.051\r\n\t\t\t\tc0.052-0.027,0.165-0.104,0.16-0.147c0.013,0,0.026-0.001,0.039-0.001c0.009-0.007,0.007-0.015,0.014-0.021\r\n\t\t\t\tc0.024-0.02,0.098-0.01,0.069-0.046c-0.007-0.009-0.015-0.014-0.02-0.028c0.02-0.022,0.045-0.041,0.1-0.051\r\n\t\t\t\tc-0.003-0.01-0.007-0.02-0.01-0.03c0.004-0.01,0.018-0.015,0.036-0.02c0.005-0.043-0.016-0.072-0.045-0.098\r\n\t\t\t\tc0.008-0.035,0.079-0.049,0.107-0.077c0-0.029-0.031-0.052-0.063-0.055c0.037-0.037,0.131-0.031,0.146-0.078\r\n\t\t\t\tc-0.024-0.02-0.058-0.024-0.069-0.057c0.023-0.025,0.075-0.06,0.135-0.054c0.001,0,0.002,0,0.003,0\r\n\t\t\t\tc-0.033-0.02-0.066-0.041-0.099-0.061c-0.089-0.081,0.158-0.142,0.204-0.197c-0.022,0.004-0.029,0-0.037-0.01\r\n\t\t\t\tc-0.002-0.001-0.004-0.002-0.006-0.002c0,0,0-0.001-0.001-0.002c0.032-0.002,0.069,0.005,0.1-0.008\r\n\t\t\t\tc0.004-0.004,0.008-0.007,0.012-0.011c-0.001-0.024-0.034-0.036-0.057-0.044c-0.007-0.043,0.064-0.091,0.107-0.117\r\n\t\t\t\tc0.015,0.003,0.03,0.006,0.045,0.009c-0.008-0.04-0.016-0.08-0.024-0.12c-0.038,0.015-0.036,0.038-0.061,0.057\r\n\t\t\t\tc-0.04,0.031-0.1,0.067-0.155,0.09c-0.046,0.018-0.166,0.053-0.22,0.054c-0.055,0.001-0.099-0.006-0.169,0.007\r\n\t\t\t\tc-0.086,0.017-0.192,0.071-0.27,0.055c-0.009-0.018-0.019-0.035-0.028-0.053c-0.001,0-0.002,0-0.003,0.001\r\n\t\t\t\tc-0.072,0.055-0.152,0.123-0.2,0.186c-0.031,0.04-0.06,0.078-0.102,0.114c-0.038,0.032-0.043,0.082-0.099,0.107\r\n\t\t\t\tc-0.053,0.023-0.122,0.012-0.178,0.027c-0.003,0-0.006-0.001-0.008-0.002c-0.047-0.023-0.103,0.025-0.159,0.03\r\n\t\t\t\tc-0.014-0.012-0.007-0.021,0.003-0.032c0.022-0.023,0.056-0.047,0.12-0.051c0.022-0.001,0.054-0.002,0.075-0.013\r\n\t\t\t\tc0.068-0.034,0.046-0.111,0.096-0.141c0.031-0.019,0.151-0.057,0.162-0.078c0.014-0.025-0.022-0.049-0.044-0.053\r\n\t\t\t\tc-0.04,0.008-0.037,0.022-0.06,0.033l-0.116,0.034c-0.082,0.034-0.185,0.115-0.294,0.118c-0.015-0.011-0.018-0.03-0.038-0.036\r\n\t\t\t\tc-0.051,0.004-0.131,0.08-0.148,0.105c-0.006,0.001-0.012,0.001-0.018,0.002c-0.003,0-0.005,0-0.008,0\r\n\t\t\t\tc-0.046-0.074,0.259-0.214,0.154-0.309c-0.031-0.028-0.086-0.028-0.126-0.046c0.103-0.026,0.206-0.053,0.309-0.079\r\n\t\t\t\tc0.011-0.005,0.016-0.012,0.017-0.022c0.05-0.019,0.101-0.031,0.138-0.055c0.04-0.026,0.15-0.164,0.158-0.201\r\n\t\t\t\tc0.003-0.016-0.028-0.058-0.042-0.07c-0.016-0.014-0.044-0.019-0.068-0.024c-0.11-0.022-0.111,0.021-0.198,0.048\r\n\t\t\t\tc-0.092,0.028-0.168-0.001-0.196,0.069c-0.047,0.001-0.074-0.025-0.115-0.028c-0.045-0.003-0.093,0.034-0.122,0.047\r\n\t\t\t\tc-0.001,0-0.002,0-0.003,0c0,0,0-0.001-0.001-0.002c0.016-0.039,0.101-0.058,0.108-0.097c0.007-0.042-0.147-0.072-0.199-0.067\r\n\t\t\t\tc-0.027,0.007-0.053,0.015-0.08,0.022c-0.065,0.001-0.133-0.039-0.158-0.08c0.031-0.004,0.053,0.006,0.077,0.01\r\n\t\t\t\tc0.032,0.005,0.153,0.002,0.167-0.005c0.121,0.041,0.265,0.068,0.372,0.122c0.097-0.022,0.152-0.08,0.272-0.089\r\n\t\t\t\tc0.1-0.007,0.172,0.031,0.261,0.04c0.04-0.01,0.035-0.031,0.071-0.042c0.056,0.011,0.104,0.041,0.15,0.063\r\n\t\t\t\tc0.024,0.008,0.048,0.017,0.071,0.025c0.016,0.019,0.031,0.037,0.047,0.056c0.021,0.005,0.032-0.001,0.046,0.011\r\n\t\t\t\tc0.015,0.022,0.03,0.044,0.045,0.066c0.042,0.038,0.131,0.059,0.2,0.07c0.101,0.016,0.192,0.009,0.27-0.045\r\n\t\t\t\tc0.017-0.012,0.034-0.02,0.038-0.036c0.013-0.051-0.114-0.086-0.107-0.166c0.001-0.001,0.003-0.002,0.004-0.003\r\n\t\t\t\tc0.014,0.037,0.178,0.137,0.22,0.148c0.022,0.005,0.059,0.007,0.087-0.007c0.02-0.01,0.031-0.026,0.039-0.041\r\n\t\t\t\tc0.037-0.061-0.073-0.08-0.109-0.114c0.003-0.006,0.006-0.013,0.01-0.019c-0.026,0-0.033-0.018-0.043-0.033\r\n\t\t\t\tc-0.013-0.002-0.028,0-0.049,0.004c-0.004-0.04,0.038-0.112-0.07-0.076c0.009-0.016,0.01-0.032,0.012-0.052\r\n\t\t\t\tc-0.015,0.002-0.03,0.005-0.045,0.007c-0.002,0-0.004,0-0.005-0.001c-0.033-0.116-0.015-0.165-0.164-0.203\r\n\t\t\t\tc-0.003,0-0.005,0-0.008,0c-0.019,0.045-0.027,0.105-0.038,0.15c-0.001,0.001-0.003,0.002-0.004,0.003\r\n\t\t\t\tc-0.006-0.003-0.013-0.007-0.019-0.01c-0.004-0.025,0.002-0.056-0.014-0.084c-0.022-0.037-0.043-0.094-0.038-0.131\r\n\t\t\t\tc-0.051,0.012-0.061,0.058-0.095,0.08c-0.009-0.002-0.019-0.003-0.028-0.005c0-0.058-0.017-0.052-0.091-0.052\r\n\t\t\t\tc-0.013-0.02-0.001-0.032-0.007-0.054c-0.005-0.001-0.01-0.003-0.014-0.004c-0.012,0.001-0.02,0.003-0.029,0.007\r\n\t\t\t\tc-0.007-0.003-0.006-0.001-0.01-0.008c-0.053,0.01-0.081,0.001-0.126,0.003c-0.151,0.005-0.169,0.037-0.238-0.051\r\n\t\t\t\tc-0.041-0.009-0.201-0.016-0.26-0.004c-0.013,0.035-0.019,0.069-0.038,0.102c-0.018,0.027-0.037,0.054-0.055,0.08\r\n\t\t\t\tc-0.003,0.002-0.006,0.005-0.008,0.007c-0.027-0.016-0.116-0.06-0.103-0.103c0.009-0.015,0.038-0.018,0.056-0.029\r\n\t\t\t\tc0.021-0.013,0.084-0.093,0.073-0.115c-0.015-0.03-0.082-0.03-0.118-0.039c-0.039-0.01-0.067-0.043-0.116-0.041\r\n\t\t\t\tc-0.046,0.002-0.061,0.033-0.074,0.049c-0.018,0.016-0.035,0.032-0.053,0.048c-0.021,0.029-0.031,0.063-0.043,0.095\r\n\t\t\t\tc-0.007,0.002-0.013,0.004-0.019,0.005c-0.015-0.051-0.072-0.083-0.151-0.068c0,0,0-0.001-0.001-0.001\r\n\t\t\t\tc0.024-0.031,0.103-0.012,0.139-0.034c0.06-0.036,0.077-0.119,0.142-0.155c0.004-0.005,0.009-0.01,0.013-0.016\r\n\t\t\t\tc-0.078-0.016-0.155-0.032-0.243-0.04c-0.032,0.023-0.05,0.013-0.09,0.032c-0.021,0.015-0.043,0.03-0.064,0.045\r\n\t\t\t\tc-0.072,0.047-0.113,0.067-0.106,0.143c-0.023-0.003-0.035-0.007-0.05-0.017c-0.124-0.083,0.099-0.103,0.101-0.159\r\n\t\t\t\tc0.001-0.031-0.064-0.029-0.086-0.038c-0.002,0-0.004,0-0.005-0.001c0,0,0-0.001-0.001-0.002c0.065-0.02,0.17-0.047,0.208-0.018\r\n\t\t\t\tc0.055-0.015,0.091-0.086,0.101-0.119c0.002-0.012,0.004-0.024,0.007-0.036c0.019-0.029,0.096-0.064,0.136-0.084\r\n\t\t\t\tc0.001-0.002,0.002-0.004,0.003-0.005c-0.051-0.005-0.107-0.018-0.136-0.046c0.06,0.007,0.119,0.006,0.189,0.005\r\n\t\t\t\tc-0.007-0.017-0.02-0.023-0.032-0.034c-0.018-0.066,0.148-0.105,0.248-0.112c0.019-0.003,0.038-0.006,0.058-0.01\r\n\t\t\t\tc0.014,0.001,0.034,0.006,0.062-0.003c0.018-0.006,0.028-0.016,0.039-0.024c0.005,0.031-0.025,0.045-0.053,0.063\r\n\t\t\t\tc-0.039,0.004-0.2-0.007-0.232,0.033c0,0.003,0,0.005,0,0.008c0.038,0.019,0.086,0.056,0.135,0.064\r\n\t\t\t\tc0.063,0.01,0.146-0.01,0.22-0.012c0.032,0,0.063,0,0.095,0c0.05-0.056,0.09-0.128,0.108-0.194\r\n\t\t\t\tc0.015-0.005,0.03-0.001,0.047-0.002c0.036-0.002,0.135-0.04,0.152-0.052c0.047-0.035-0.09-0.189-0.128-0.197\r\n\t\t\t\tc-0.032-0.007-0.07-0.002-0.107-0.004c-0.059-0.004-0.24-0.04-0.269,0.031c0.007,0.018,0.019,0.023,0.032,0.034\r\n\t\t\t\tc0.001,0.002,0.001,0.003,0.002,0.005C21.061,9.85,21.006,9.85,20.952,9.85c-0.002,0-0.003,0.001-0.005,0.001\r\n\t\t\t\tc-0.006-0.034,0.037-0.085,0.002-0.115c-0.013-0.007-0.061,0.002-0.077,0c-0.003-0.017,0.025-0.026,0.044-0.033\r\n\t\t\t\tc0.024-0.05-0.082-0.091-0.112-0.123c0,0,0-0.001-0.001-0.002c0.049,0.003,0.087,0.023,0.143,0.019\r\n\t\t\t\tc0.08-0.005,0.117-0.075,0.219-0.082c0.053-0.003,0.078,0.028,0.129,0.024c0.015-0.006,0.029-0.012,0.044-0.018\r\n\t\t\t\tc0.076-0.037,0.128-0.084,0.117-0.15c-0.006-0.035-0.112-0.077-0.174-0.057c-0.075,0.034-0.15,0.068-0.225,0.101\r\n\t\t\t\tc-0.023,0.015-0.039,0.033-0.066,0.048c0.001-0.026,0.017-0.077,0-0.103c-0.026-0.042-0.069-0.068-0.087-0.113\r\n\t\t\t\tc-0.144,0.026-0.093,0.074-0.143,0.127c-0.101,0.032-0.174-0.025-0.264-0.018c0.036-0.037,0.154-0.006,0.199-0.003\r\n\t\t\t\tc0.004-0.001,0.008-0.001,0.012-0.002c0.006-0.013,0.012-0.027,0.018-0.04c0.021-0.034,0.052-0.065,0.088-0.093\r\n\t\t\t\tc-0.001-0.001-0.003-0.003-0.004-0.004c-0.015-0.008-0.041-0.006-0.061-0.008c-0.037-0.005-0.076-0.012-0.118-0.013\r\n\t\t\t\tc-0.078,0-0.163,0.02-0.217-0.003c0.044-0.008,0.061-0.02,0.074-0.039c-0.012-0.023-0.076-0.028-0.104-0.037\r\n\t\t\t\tc-0.001-0.002-0.001-0.004-0.002-0.006c0.057-0.01,0.172,0.001,0.217,0.01c0.051,0.011,0.098,0.041,0.167,0.033\r\n\t\t\t\tc0.034-0.018,0.074-0.065,0.132-0.048c0.029,0.008,0.042,0.034,0.072,0.043c0.067-0.007,0.093-0.07,0.062-0.117\r\n\t\t\t\tc-0.04-0.061-0.125-0.079-0.182-0.12c-0.022-0.016-0.009-0.05-0.031-0.062c-0.042-0.024-0.124,0-0.196,0.004\r\n\t\t\t\tc-0.024-0.002-0.048-0.003-0.073-0.005c-0.041,0.002-0.072,0.028-0.098,0.039c-0.039,0.016-0.082,0.03-0.131,0.042\r\n\t\t\t\tc0-0.001-0.001-0.002-0.001-0.003c0.069-0.022,0.084-0.061,0.131-0.091c0.041-0.027,0.109-0.044,0.145-0.073\r\n\t\t\t\tc0.016-0.013,0.031-0.04,0.007-0.058c-0.01-0.007-0.041-0.008-0.068-0.013c0.057-0.028,0.115-0.055,0.172-0.083\r\n\t\t\t\tc0.024,0.008,0.048,0.016,0.072,0.024c0.029,0.02,0.058,0.041,0.086,0.062c0.003,0.001,0.006,0.001,0.008,0.002\r\n\t\t\t\tc0.003-0.003,0.005-0.005,0.008-0.008c-0.002-0.029-0.048-0.05-0.072-0.066c-0.018-0.012-0.036-0.025-0.053-0.037\r\n\t\t\t\tC24.16,6.946,27.965,6,32,6c4.818,0,9.316,1.335,13.186,3.62c-0.129,0.065-0.246,0.164-0.324,0.268\r\n\t\t\t\tc-0.047-0.001-0.131-0.022-0.152-0.019c-0.081,0.013-0.199,0.161-0.229,0.229c-0.014,0.013-0.025,0.025-0.039,0.038\r\n\t\t\t\tc0.039,0.028,0.076,0.062,0.103,0.102c-0.099,0.069-0.239,0.035-0.292,0.153c-0.004,0.004-0.008,0.008-0.014,0.013\r\n\t\t\t\tc0.033,0.03,0.064,0.059,0.096,0.089c-0.004,0.027-0.008,0.055-0.014,0.083c-0.383-0.001-0.321,0.111-0.547,0.216v0.006\r\n\t\t\t\tc0.209,0.251,0.238,0.04,0.521,0.089c0.13,0.023,0.227,0.096,0.344,0.121c0.108-0.061,0.16-0.161,0.248-0.241\r\n\t\t\t\tc-0.003-0.025-0.005-0.051-0.007-0.076c-0.034-0.021-0.067-0.042-0.103-0.064c-0.004-0.006-0.008-0.013-0.012-0.019\r\n\t\t\t\tc0.022-0.023,0.047-0.047,0.069-0.07c0.074,0.003,0.112,0.025,0.159,0.051c0.055-0.058,0.136-0.114,0.197-0.165v-0.013\r\n\t\t\t\tc-0.021-0.017-0.043-0.034-0.064-0.051c-0.014-0.017-0.002-0.045,0.006-0.076c0.016-0.013,0.03-0.026,0.044-0.038\r\n\t\t\t\tc0.107,0.001,0.271,0.047,0.356,0.006c0.035-0.028,0.072-0.055,0.107-0.083c0.021-0.023,0.043-0.047,0.063-0.07\r\n\t\t\t\tc-0.028-0.015-0.056-0.03-0.083-0.045c0.009-0.043,0.048-0.077,0.1-0.106c0.829,0.518,1.631,1.072,2.395,1.677\r\n\t\t\t\tc-0.006,0.025-0.012,0.05-0.016,0.075c-0.05,0.083-0.098,0.165-0.146,0.248c-0.135,0.174-0.528,0.182-0.465,0.489\r\n\t\t\t\tc0.054,0.004,0.107,0.008,0.16,0.013c0.135,0.378-0.104,0.29-0.146,0.515c0.07,0.108,0.28,0.064,0.369,0.153\r\n\t\t\t\tc0.029,0.036-0.002,0.112,0.013,0.165c0.035,0.124,0.136,0.168,0.286,0.146c-0.018,0.094-0.113,0.264-0.184,0.311\r\n\t\t\t\tc-0.016,0.013-0.038,0.014-0.07,0.013c-0.378-0.351-0.896-0.546-1.468-0.705c-0.123-0.034-0.46-0.13-0.636-0.089\r\n\t\t\t\tc-0.08,0.019-0.115,0.1-0.184,0.134c-0.002,0.004-0.004,0.008-0.006,0.013c0.061,0.078,0.123,0.157,0.184,0.235\r\n\t\t\t\tc-0.01,0.223-0.119,0.179-0.291,0.203c-0.021,0.033-0.037,0.114-0.052,0.146c-0.095,0.048-0.19-0.018-0.216-0.089\r\n\t\t\t\tc0.029-0.038,0.059-0.076,0.089-0.115c-0.178-0.082-0.286-0.093-0.45,0.032c-0.043,0.034-0.086,0.068-0.128,0.102\r\n\t\t\t\tc-0.1,0.03-0.176-0.034-0.235-0.051c-0.104-0.03-0.279-0.002-0.361,0.032c-0.092,0.037-0.088,0.172-0.172,0.222\r\n\t\t\t\tc-0.028-0.015-0.037-0.02-0.045-0.057c-0.182,0.003-0.223,0.07-0.375,0.019c0-0.05,0.008-0.062,0.025-0.089\r\n\t\t\t\tc0.038-0.006,0.076-0.013,0.114-0.019c0-0.097,0.017-0.161,0.026-0.235c-0.381-0.002-0.168,0.2-0.42,0.248\r\n\t\t\t\tc-0.006-0.002-0.012-0.004-0.019-0.006c-0.011-0.034-0.021-0.068-0.032-0.102c-0.133,0.055-0.267,0.11-0.399,0.165\r\n\t\t\t\tc-0.226,0.09-0.453,0.187-0.661,0.273c-0.051,0.015-0.102,0.03-0.153,0.045c-0.087,0.07-0.049,0.285-0.14,0.349\r\n\t\t\t\tc-0.057,0.011-0.115,0.021-0.172,0.032c-0.342,0.069-0.428-0.091-0.629-0.248c0.041-0.201,0.281-0.195,0.508-0.203\r\n\t\t\t\tc-0.055-0.114-0.169-0.349-0.305-0.375c-0.098,0.009-0.195,0.017-0.293,0.025c-0.082-0.018-0.133-0.053-0.215-0.032\r\n\t\t\t\tc-0.018,0.148,0.158,0.164,0.12,0.337c-0.051,0.081-0.102,0.161-0.151,0.241c-0.004,0.004-0.01,0.009-0.014,0.013\r\n\t\t\t\tc0.034,0.051,0.079,0.078,0.153,0.089c0.079,0.238,0.028,0.214-0.032,0.407c-0.006,0.036-0.013,0.072-0.02,0.108v0.013\r\n\t\t\t\tc-0.165-0.008-0.334-0.211-0.565-0.184c-0.124,0.261-0.491,0.237-0.661,0.445c0.006,0.173,0.26,0.294,0.141,0.47\r\n\t\t\t\tc-0.034-0.011-0.068-0.021-0.103-0.032c-0.071,0.008-0.14,0.046-0.235,0.019c-0.217-0.062-0.433-0.161-0.604-0.267\r\n\t\t\t\tc-0.104,0-0.1,0.078-0.152,0.127c0.002,0.063,0.125,0.201,0.19,0.229c0.058,0.024,0.138-0.001,0.19,0.006\r\n\t\t\t\tc0.15,0.265-0.1,0.247-0.26,0.21c-0.072-0.016-0.158,0.001-0.211-0.032c-0.029-0.021-0.053-0.077-0.064-0.114\r\n\t\t\t\tc-0.075-0.038-0.206-0.014-0.291-0.057c-0.043-0.022-0.209-0.444-0.217-0.527c0.123-0.036,0.164-0.19,0.07-0.292\r\n\t\t\t\tc-0.066-0.072-0.223-0.087-0.305-0.14c-0.137-0.088-0.245-0.222-0.362-0.33c0.222-0.112,0.253,0.089,0.343,0.14\r\n\t\t\t\tc0.07,0.011,0.141,0.021,0.211,0.032c0.5,0.15,1.305,0.524,1.83,0.127c0.111-0.084,0.24-0.161,0.235-0.343\r\n\t\t\t\tc-0.069-0.069-0.081-0.106-0.076-0.242c-0.091-0.072-0.211-0.158-0.331-0.197c-0.127-0.038-0.254-0.076-0.381-0.115\r\n\t\t\t\tc-0.121-0.102-0.242-0.203-0.361-0.305c-0.068-0.021-0.137-0.042-0.203-0.063c-0.108-0.038-0.217-0.076-0.324-0.114\r\n\t\t\t\tc-0.18-0.013-0.36-0.025-0.54-0.038c-0.03,0.023-0.06,0.047-0.089,0.07c-0.004-0.046-0.008-0.093-0.014-0.14\r\n\t\t\t\tc-0.183-0.035-0.345-0.068-0.35-0.28c-0.061,0.036-0.123,0.072-0.184,0.108c-0.047,0.019-0.104,0.021-0.141,0.044\r\n\t\t\t\tc-0.113-0.074-0.219-0.036-0.369-0.025c-0.065-0.103-0.205-0.127-0.279-0.222c0.236,0.002,0.468,0.029,0.591-0.095\r\n\t\t\t\tc-0.002-0.023-0.005-0.047-0.007-0.07c-0.027-0.017-0.055-0.034-0.082-0.051c-0.065-0.023-0.141,0.003-0.191-0.019\r\n\t\t\t\tc-0.105-0.045-0.177-0.123-0.299-0.159c-0.07,0.062-0.137,0.151-0.152,0.267c-0.039-0.008-0.08-0.017-0.121-0.025\r\n\t\t\t\tc0.041-0.129,0.059-0.18,0.127-0.279c-0.05-0.066-0.162-0.027-0.242-0.013c-0.045,0.144-0.116,0.243-0.248,0.305\r\n\t\t\t\tc-0.004-0.093-0.008-0.187-0.012-0.28c-0.14,0.095-0.322,0.263-0.389,0.426c-0.018-0.002-0.034-0.004-0.051-0.006\r\n\t\t\t\tc-0.001-0.246,0.115-0.269,0.216-0.4c-0.28-0.021-0.326,0.061-0.47,0.203c-0.031,0.023-0.079-0.012-0.121,0.013\r\n\t\t\t\tc-0.073,0.044-0.145,0.185-0.172,0.273c-0.188-0.096-0.28-0.273-0.381,0.083c-0.043-0.036-0.086-0.072-0.127-0.108\r\n\t\t\t\tc-0.006-0.002-0.014-0.004-0.02-0.006c-0.048,0.076-0.089,0.121-0.203,0.134c-0.027,0.103-0.078,0.174-0.152,0.229\r\n\t\t\t\tc0.014-0.069,0.026-0.136,0.051-0.191c-0.004-0.011-0.008-0.021-0.014-0.032c-0.006-0.004-0.013-0.008-0.019-0.013\r\n\t\t\t\tc-0.084,0.046-0.147,0.229-0.197,0.311c-0.135-0.012-0.165-0.08-0.299-0.032c-0.024-0.021-0.051-0.042-0.076-0.063\r\n\t\t\t\tc-0.061,0.246-0.091,0.112-0.216,0.203c-0.066,0.048-0.033,0.116-0.146,0.153c-0.019,0.021-0.037,0.042-0.057,0.063\r\n\t\t\t\tc0.026,0.021,0.051,0.042,0.076,0.064v0.006c-0.036,0.051-0.105,0.052-0.172,0.038c0.011,0.047,0.021,0.093,0.031,0.14\r\n\t\t\t\tc-0.019,0.028-0.037,0.055-0.057,0.083c-0.006,0.004-0.013,0.009-0.019,0.013c-0.046-0.028-0.063-0.041-0.089-0.089h-0.006\r\n\t\t\t\tc-0.065,0.006-0.07,0.078-0.133,0.102c-0.01,0.027,0.014,0.055,0.043,0.076v0.038c-0.054,0.016-0.076,0.025-0.102,0.07\r\n\t\t\t\tc-0.041-0.01-0.074-0.026-0.127-0.032c-0.044,0.035-0.058,0.078-0.121,0.095c0.011,0.038,0.019,0.052,0.057,0.064\r\n\t\t\t\tc-0.034,0.075-0.199,0.095-0.273,0.134c-0.006,0.004-0.013,0.008-0.019,0.013c0.021,0.036,0.042,0.072,0.064,0.108v0.006\r\n\t\t\t\tc-0.065,0.004-0.112,0.01-0.178,0.006c-0.021,0.034-0.042,0.068-0.063,0.102c0.042,0.051,0.093,0.07,0.127,0.134v0.006\r\n\t\t\t\tc-0.042,0.006-0.085,0.013-0.127,0.019c-0.006,0.042-0.013,0.085-0.019,0.127c-0.163-0.038-0.167,0.098-0.229,0.21\r\n\t\t\t\tc0.021,0.006,0.042,0.013,0.064,0.019c0.002,0.044,0.004,0.089,0.006,0.133c-0.05,0.003-0.081,0.005-0.121-0.006\r\n\t\t\t\tc-0.075,0.075-0.123,0.164-0.203,0.235c0.006,0.019,0.013,0.038,0.019,0.057v0.006c-0.063,0.046-0.087,0.015-0.159,0\r\n\t\t\t\tc-0.094,0.045-0.266,0.185-0.311,0.28c-0.006,0.034-0.013,0.068-0.019,0.102c-0.039,0.065-0.125,0.084-0.159,0.165\r\n\t\t\t\tc-0.006,0.004-0.013,0.009-0.019,0.013c-0.019-0.013-0.038-0.026-0.057-0.038c-0.08-0.054-0.225,0.137-0.222,0.242\r\n\t\t\t\tc-0.085-0.036-0.205-0.032-0.337-0.032l-0.032,0.032c0.017,0.072,0.086,0.103,0.159,0.114c-0.063,0.075-0.159,0.014-0.267,0.006\r\n\t\t\t\tc-0.021,0.084-0.011,0.111-0.089,0.14c-0.1-0.04-0.144,0.042-0.248,0.076c-0.002,0.017-0.004,0.034-0.006,0.051\r\n\t\t\t\tc0.025,0.034,0.072,0.048,0.108,0.07v0.025c-0.066,0.004-0.131,0.008-0.197,0.013c-0.025,0.075-0.001,0.151-0.038,0.21\r\n\t\t\t\tc0.034,0.046,0.043,0.085,0.102,0.108c0.002,0.004,0.004,0.008,0.006,0.013c-0.056,0.046-0.091,0.058-0.114,0.14\r\n\t\t\t\tc0.004,0.011,0.008,0.021,0.013,0.032c0.041,0.028,0.07,0.034,0.121,0.013c0.011,0.013,0.021,0.025,0.032,0.038\r\n\t\t\t\tc-0.041,0.034-0.089,0.076-0.127,0.114c0.053,0.078,0.112,0.033,0.222,0.045c-0.007,0.055-0.021,0.092-0.07,0.108\r\n\t\t\t\tc-0.008,0.011-0.017,0.021-0.025,0.032c0.015,0.013,0.03,0.025,0.044,0.038c0.06-0.001,0.086-0.014,0.127-0.032\r\n\t\t\t\tc-0.027,0.037-0.064,0.055-0.127,0.057c0.001,0.016-0.001,0.007,0.006,0.025c-0.032,0.014-0.05,0.004-0.083-0.013v0.038h-0.006\r\n\t\t\t\tc-0.004-0.017-0.008-0.034-0.013-0.051c-0.002-0.004-0.004-0.008-0.006-0.013c-0.025,0.03-0.051,0.059-0.076,0.089\r\n\t\t\t\tc0.008,0.03,0.017,0.059,0.025,0.089c0.011,0.006,0.021,0.013,0.032,0.019c0.002-0.011,0.004-0.021,0.006-0.032\r\n\t\t\t\tc0.006,0.011,0.013,0.021,0.019,0.032c0.051-0.002,0.06-0.014,0.095-0.026c-0.002-0.025-0.004-0.051-0.006-0.076\r\n\t\t\t\tc0.025,0.019,0.035,0.027,0.038,0.07h0.006c0.028-0.025,0.055-0.051,0.083-0.076c-0.018,0.039-0.04,0.052-0.064,0.083\r\n\t\t\t\tc0.032,0.02,0.042,0.024,0.089,0.019v0.007c-0.038,0.021-0.076,0.042-0.114,0.063c-0.009,0.028-0.004,0.013,0.006,0.045\r\n\t\t\t\tc0.046,0.033,0.031,0.018,0.102,0.013v0.006c-0.036,0.006-0.042,0.012-0.057,0.038c0.006,0.008,0.013,0.017,0.019,0.025\r\n\t\t\t\tc-0.036-0.022-0.065-0.056-0.089-0.019c-0.006,0.004-0.013,0.008-0.019,0.013c-0.002-0.019-0.004-0.038-0.006-0.057\r\n\t\t\t\tc-0.017-0.002-0.034-0.004-0.051-0.006c0.015,0.05-0.003,0.072-0.025,0.114c0.019,0.038,0.038,0.076,0.057,0.114\r\n\t\t\t\tc0.123,0.036,0.19,0.086,0.305,0.115c-0.013,0.013-0.026,0.025-0.038,0.038c0.013,0.008,0.025,0.017,0.038,0.025\r\n\t\t\t\tc0.011-0.013,0.021-0.025,0.032-0.038c0.03,0.015,0.042,0.019,0.051,0.057c0.07,0.017,0.282-0.01,0.349-0.044\r\n\t\t\t\tc0.108-0.107,0.244-0.176,0.356-0.28c0.039-0.036,0.039-0.072,0.095-0.095c0.038-0.02,0.087,0.023,0.14-0.013\r\n\t\t\t\tc0.062-0.046,0.08-0.127,0.083-0.222c0.015-0.011,0.03-0.021,0.044-0.032c0.012,0.047,0.011,0.056-0.013,0.089\r\n\t\t\t\tc0.053,0.074,0.056,0.142,0.165,0.095c0.004,0.002,0.008,0.004,0.013,0.006c0.006,0.051-0.02,0.065-0.032,0.114\r\n\t\t\t\tc0.052,0.027,0.057,0.174,0.057,0.248c0.019-0.002,0.038-0.004,0.057-0.007c0.002,0.017,0.004,0.034,0.006,0.051\r\n\t\t\t\tc0.048-0.012,0.047-0.013,0.089,0c0.008,0.048-0.026,0.118-0.044,0.165c0.047,0.06,0.08,0.086,0.076,0.203\r\n\t\t\t\tc0.017,0.002,0.034,0.004,0.051,0.006c0.049,0.164,0.149,0.23,0.242,0.324c-0.004,0.017-0.009,0.034-0.013,0.051\r\n\t\t\t\tc-0.019-0.002-0.038-0.004-0.057-0.006c0.002,0.017,0.004,0.034,0.006,0.051c-0.021,0.011-0.042,0.021-0.064,0.032\r\n\t\t\t\tc0.042,0.083,0.088,0.169,0.159,0.222c-0.016,0.061-0.039,0.075-0.051,0.134c0.151,0.032,0.257-0.029,0.381,0\r\n\t\t\t\tc0.011-0.013,0.021-0.025,0.032-0.038c0.037-0.032,0.005-0.05-0.019-0.089c0.023-0.06,0.036-0.108,0.095-0.133\r\n\t\t\t\tc0.019-0.011,0.012-0.005,0.038,0.006c0.004-0.017,0.009-0.034,0.013-0.051c0.11,0.001,0.175-0.008,0.253-0.025\r\n\t\t\t\tc0.021,0.015,0.043,0.03,0.064,0.045c0.004,0.004,0.008,0.008,0.014,0.013c0.059-0.108,0.119-0.216,0.178-0.324\r\n\t\t\t\tc0.002-0.04,0.004-0.08,0.006-0.121c0.011-0.057,0.039-0.09,0.057-0.133c0.016-0.027-0.011-0.058,0.006-0.102\r\n\t\t\t\tc-0.015-0.006-0.029-0.013-0.045-0.019V18.53h0.064c0.095-0.071-0.057-0.253-0.07-0.318c0.059-0.002,0.119-0.004,0.178-0.006\r\n\t\t\t\tc0.002-0.013,0.004-0.025,0.006-0.038c0.177,0.031,0.106-0.133,0.191-0.165v0.095c0.002,0.002,0.004,0.004,0.006,0.006\r\n\t\t\t\tc0.02-0.002,0.039-0.004,0.058-0.006c0.014-0.068,0.052-0.091,0.114-0.108c-0.004-0.021-0.008-0.042-0.014-0.064\r\n\t\t\t\tc0.027-0.002,0.055-0.004,0.083-0.006c-0.002-0.011-0.004-0.021-0.006-0.032c-0.002-0.004-0.004-0.008-0.006-0.013h-0.032v0.032\r\n\t\t\t\tc-0.102-0.041-0.174,0.062-0.279,0.045c-0.111-0.019-0.164-0.137-0.3-0.095H32.8c0.009-0.015,0.017-0.03,0.025-0.045\r\n\t\t\t\tc0.036-0.04,0.304,0.049,0.368,0.083c0.082,0.043,0.287-0.119,0.312-0.153h0.058c-0.002-0.095-0.049-0.099-0.07-0.178\r\n\t\t\t\tc-0.126-0.018-0.206-0.104-0.248-0.203c-0.025,0.002-0.051,0.004-0.076,0.006c-0.038-0.015-0.062-0.043-0.133-0.045\r\n\t\t\t\tc-0.002-0.004-0.004-0.008-0.006-0.013c0.046-0.039-0.053-0.296-0.025-0.4c0.023-0.006,0.047-0.013,0.07-0.019\r\n\t\t\t\tc0.055-0.173,0-0.204-0.02-0.356c0.038,0.013,0.076,0.025,0.114,0.038c0.021-0.028,0.042-0.055,0.063-0.083\r\n\t\t\t\tc0.017-0.027-0.004-0.073-0.012-0.115h0.127c0.079-0.112,0.116-0.111,0.221-0.191c0.051-0.038,0.051-0.096,0.115-0.127\r\n\t\t\t\tc0.022,0.015,0.047,0.03,0.069,0.044c0.099-0.068,0.199-0.136,0.299-0.203c0.071-0.087,0.077-0.196,0.185-0.248\r\n\t\t\t\tc0.004-0.006,0.008-0.013,0.013-0.019c-0.034-0.052-0.095-0.08-0.121-0.133c-0.006-0.006-0.013-0.013-0.019-0.019\r\n\t\t\t\tc0.053-0.023,0.127-0.081,0.151-0.133c0.023-0.036-0.022-0.072-0.044-0.102c0.077-0.104,0.108-0.037,0.184-0.095\r\n\t\t\t\tc0.092-0.069,0.095-0.193,0.211-0.248c0.051,0.034,0.102,0.068,0.152,0.102c0.022,0.014,0.223-0.034,0.305-0.032\r\n\t\t\t\tc0.078,0.06,0.117,0.113,0.262,0.115c0.011,0.019,0.021,0.038,0.031,0.057c0.015,0.037-0.006,0.12-0.019,0.159\r\n\t\t\t\tc0.017,0.019,0.034,0.038,0.052,0.057c0.013,0.018,0.008,0.038,0.006,0.076c-0.041-0.002-0.082-0.004-0.121-0.006\r\n\t\t\t\tc-0.098,0.028-0.543,0.488-0.61,0.585h-0.032c-0.013-0.019-0.025-0.038-0.037-0.057v-0.013c-0.091,0.094-0.017,0.207-0.16,0.28\r\n\t\t\t\tc-0.059-0.024-0.1-0.032-0.158-0.013c0.004,0.027,0.008,0.055,0.013,0.083c-0.073,0.067-0.121,0.102-0.153,0.216\r\n\t\t\t\tc0.026,0.023,0.063,0.043,0.09,0.064c0,0.094-0.021,0.143-0.032,0.216c0.034,0.053,0.067,0.106,0.102,0.159\r\n\t\t\t\tc-0.008,0.04-0.017,0.08-0.024,0.121c-0.035,0.188-0.012,0.31,0.127,0.381c0.058,0.03,0.07,0.065,0.146,0.038l-0.006,0.076\r\n\t\t\t\tc0.054-0.018,0.094-0.039,0.172-0.038c-0.011,0.023-0.021,0.047-0.032,0.07c0.021,0.042,0.039,0.071,0.084,0.089\r\n\t\t\t\tc0.066,0.051,0.192-0.016,0.234-0.038v0.026c0.064-0.014,0.081-0.027,0.133,0c0.043-0.058,0.077-0.069,0.153-0.095\r\n\t\t\t\tc0.004,0.008,0.008,0.017,0.013,0.025c0.051-0.028,0.141-0.037,0.165-0.095c0.027,0.019,0.056,0.038,0.083,0.057h0.006\r\n\t\t\t\tc0.018-0.083,0.1-0.04,0.152-0.083c0.027-0.017,0.04-0.057,0.045-0.095v0.057c0.036,0.013,0.072,0.025,0.107,0.038\r\n\t\t\t\tc0.026-0.027,0.035-0.043,0.084-0.051c0.021,0.013,0.041,0.025,0.063,0.038c0.06-0.057,0.198-0.098,0.3-0.108\r\n\t\t\t\tc0.008-0.015,0.016-0.03,0.024-0.045c0.028-0.003-0.011,0.079-0.019,0.114c0.147,0.215,0.344-0.041,0.488,0.229\r\n\t\t\t\tc-0.015,0.011-0.029,0.021-0.045,0.032c-0.094-0.003-0.141-0.044-0.222-0.07c-0.076,0.006-0.101,0.066-0.14,0.108\r\n\t\t\t\tc-0.054-0.012-0.054-0.037-0.103-0.025c-0.017,0.027-0.015,0.015-0.006,0.045c-0.031,0.029-0.052,0.003-0.076-0.025\r\n\t\t\t\tc-0.013,0.002-0.024,0.004-0.038,0.006c-0.004,0.015-0.008,0.03-0.013,0.045c0.032,0.038,0.067,0.051,0.063,0.108\r\n\t\t\t\tc-0.008-0.008-0.017-0.017-0.025-0.025c-0.018-0.007-0.057,0.067-0.107,0.064c-0.163-0.011-0.296-0.042-0.451-0.07\r\n\t\t\t\tc-0.078-0.014-0.166,0.024-0.203-0.006c-0.017,0.015-0.033,0.03-0.051,0.044c-0.049-0.011-0.098-0.021-0.146-0.032\r\n\t\t\t\tc-0.004,0.015-0.008,0.03-0.012,0.045c-0.045-0.007-0.062,0.006-0.103-0.006c-0.085,0.046-0.146,0.095-0.28,0.102\r\n\t\t\t\tc0.006,0.043,0.014,0.056-0.025,0.07c0.023,0.062,0.023,0.099,0.045,0.165c0.021,0,0.035-0.011,0.057-0.026\r\n\t\t\t\tc-0.002,0.057-0.004,0.115-0.006,0.172c0.057,0.016,0.08,0.031,0.121,0.051c0.025-0.023,0.051-0.047,0.076-0.07\r\n\t\t\t\tc0.013,0.009,0.024,0.017,0.037,0.025c-0.021,0.16-0.09,0.268-0.037,0.451c-0.041,0.106-0.223,0.17-0.324,0.076\r\n\t\t\t\tc-0.016-0.04-0.03-0.081-0.044-0.121c-0.048-0.034-0.093-0.068-0.14-0.102v-0.044c-0.113,0.004-0.154,0.056-0.268,0.057\r\n\t\t\t\tc-0.034,0.043-0.068,0.085-0.102,0.127c-0.002,0.044-0.004,0.089-0.006,0.133c-0.033,0.025-0.064,0.051-0.096,0.076\r\n\t\t\t\tc-0.068,0.143,0.034,0.501,0.064,0.578c-0.01,0.025,0,0,0.013,0.025c-0.011,0.002-0.021,0.004-0.032,0.006\r\n\t\t\t\tc0.012,0.035,0.018,0.047,0.014,0.089c-0.082,0.046-0.25,0.013-0.362,0.007c-0.017,0.05-0.021,0.111-0.025,0.165\r\n\t\t\t\tc-0.125,0.066-0.209,0.161-0.388,0.095c-0.01-0.053-0.025-0.086-0.051-0.121c0.005-0.087-0.213-0.034-0.28-0.013\r\n\t\t\t\tc-0.291,0.091-0.499,0.261-0.852,0.286c0.004,0.069,0.012,0.088,0.013,0.146c-0.08-0.028-0.139-0.055-0.21-0.083\r\n\t\t\t\tc-0.004-0.036-0.008-0.072-0.013-0.108c-0.081-0.042-0.175,0.016-0.222-0.121c-0.058-0.004-0.427,0.12-0.458,0.197h-0.07\r\n\t\t\t\tc-0.004-0.013-0.009-0.025-0.013-0.038h-0.006c-0.033,0.022-0.061,0.024-0.095,0.013c-0.004-0.006-0.008-0.013-0.013-0.019\r\n\t\t\t\tc0.045-0.038,0.069-0.048,0.102-0.102c-0.006-0.013-0.013-0.025-0.019-0.038c-0.049,0.004-0.097,0.009-0.146,0.013\r\n\t\t\t\tc-0.057-0.013-0.065-0.053-0.121-0.025c-0.014-0.043-0.014-0.04-0.064-0.038c0.059-0.095-0.063-0.185-0.133-0.21\r\n\t\t\t\tc0.013-0.092,0.038-0.176,0.089-0.229c-0.006-0.011-0.013-0.021-0.019-0.032c0.028-0.002,0.055-0.004,0.083-0.006\r\n\t\t\t\tc0.023-0.081,0.102-0.094,0.064-0.191c0.021-0.011,0.042-0.021,0.064-0.032c0.013,0.017,0.025,0.034,0.038,0.051\r\n\t\t\t\tc0.019-0.007,0.038-0.013,0.057-0.019c0.011-0.02,0.068-0.131,0.038-0.159c-0.051-0.002-0.102-0.004-0.153-0.006\r\n\t\t\t\tc-0.032-0.019-0.031-0.102-0.032-0.153c-0.068-0.033-0.163-0.022-0.254-0.019c-0.006,0.053-0.013,0.106-0.019,0.159\r\n\t\t\t\tc-0.013,0.014-0.02,0.015-0.044,0.019c-0.013-0.03-0.025-0.059-0.038-0.089c-0.049,0.026-0.056,0.1-0.095,0.121\r\n\t\t\t\tc-0.035,0.019-0.1-0.034-0.133-0.032c-0.071,0.107,0.012,0.181,0.019,0.286c-0.031,0.04-0.055,0.066-0.076,0.121\r\n\t\t\t\tc0.017,0.008,0.034,0.017,0.051,0.025c0.008-0.011,0.017-0.021,0.025-0.032c0.03,0.025,0.028,0.047,0.083,0.051\r\n\t\t\t\tc0.009,0.061-0.008,0.193,0.006,0.242c0.015,0.052,0.078,0.085,0.095,0.146c-0.028,0.028-0.059,0.044-0.108,0.051\r\n\t\t\t\tc0.012,0.043,0.042,0.03,0.095,0.025c-0.011,0.017-0.017,0.019-0.032,0.032c0.015,0.015,0.03,0.03,0.045,0.044\r\n\t\t\t\tc-0.011,0.008-0.021,0.017-0.032,0.025c0.002,0.011,0.004,0.021,0.006,0.032c0.023,0.011,0.047,0.021,0.07,0.032\r\n\t\t\t\tc-0.046,0.024-0.104,0.005-0.159,0c-0.019,0.061-0.035,0.076-0.006,0.133c-0.032-0.011-0.063-0.021-0.095-0.032\r\n\t\t\t\tc0.008,0.019,0.017,0.038,0.025,0.057c-0.006,0.008-0.013,0.017-0.019,0.025c-0.006,0.002-0.013,0.004-0.019,0.006\r\n\t\t\t\tc-0.006-0.004-0.013-0.008-0.019-0.013c-0.005-0.039-0.011-0.061-0.025-0.108c-0.107-0.001-0.208,0.008-0.28,0.038\r\n\t\t\t\tc-0.004,0.019-0.008,0.038-0.013,0.057c0.008,0.049,0.031,0.043,0.057,0.07c-0.002,0.006-0.004,0.013-0.006,0.019h-0.025\r\n\t\t\t\tc-0.023-0.022-0.063-0.046-0.076-0.076c-0.123-0.051-0.317,0.05-0.413,0.083c-0.013,0.055-0.013,0.076-0.013,0.146\r\n\t\t\t\tc0.027,0.002,0.055,0.004,0.083,0.006c-0.015,0.024-0.023,0.03-0.025,0.07c0.024,0.016,0.034,0.024,0.076,0.026\r\n\t\t\t\tc-0.013,0.071-0.047,0.063-0.076,0.108c-0.051,0.033-0.092-0.002-0.165-0.013c0.015-0.036,0.015-0.051,0.013-0.108\r\n\t\t\t\tc0.026,0.002,0.019,0.001,0.044-0.006c0.006-0.013,0.013-0.025,0.019-0.038c-0.018-0.035-0.039-0.055-0.07-0.076\r\n\t\t\t\tc-0.032,0.008-0.064,0.017-0.095,0.026c-0.038,0.095-0.076,0.191-0.114,0.286c-0.074,0.064-0.148,0.127-0.222,0.191\r\n\t\t\t\tc0.032,0.014,0.055,0.038,0.07,0.07c-0.053,0.064-0.14-0.005-0.216,0.025c-0.055,0.036-0.11,0.072-0.165,0.108\r\n\t\t\t\tc-0.036,0.002-0.072,0.004-0.108,0.007c-0.047,0.023-0.093,0.047-0.14,0.07c-0.038,0.119,0.011,0.258-0.089,0.324\r\n\t\t\t\tc-0.114,0.075-0.266,0.05-0.349,0.153c-0.002,0.013-0.004,0.025-0.006,0.038c0.021,0.006,0.042,0.013,0.064,0.019\r\n\t\t\t\tc-0.12,0.118-0.282-0.026-0.426,0.044c-0.023-0.044-0.033-0.075-0.025-0.14c-0.075,0.012-0.121,0.009-0.203,0\r\n\t\t\t\tc0.011,0.077,0.049,0.161,0.108,0.191c-0.002,0.083-0.013,0.145,0.025,0.197c-0.024,0.019-0.065,0.026-0.108,0.025V22.17\r\n\t\t\t\tc-0.055,0.027-0.204,0.061-0.273,0.057c-0.028-0.036-0.055-0.072-0.083-0.108c-0.045,0.004-0.089,0.008-0.133,0.013\r\n\t\t\t\tc-0.006,0.015-0.013,0.03-0.019,0.044c-0.024,0.015-0.108,0.007-0.108,0.007c-0.004-0.004-0.009-0.009-0.013-0.013\r\n\t\t\t\tc-0.076,0.006-0.132,0.063-0.222,0.063c-0.002,0.028-0.004,0.055-0.006,0.083c0.038-0.014,0.077-0.021,0.133-0.019\r\n\t\t\t\tc-0.015,0.03-0.018,0.038-0.057,0.045c-0.01,0.017,0.037,0.021,0.057,0.025c0.002,0.009,0.004,0.017,0.006,0.025v0.006\r\n\t\t\t\tc-0.038,0.006-0.076,0.013-0.114,0.019c0.018,0.035,0.065,0.028,0.089,0.057c0.002,0.011,0.004,0.021,0.006,0.032\r\n\t\t\t\tc0.154-0.013,0.334,0.029,0.445,0.127c0.028-0.009,0.055-0.017,0.083-0.025c0.011,0.006,0.021,0.013,0.032,0.019\r\n\t\t\t\tc-0.011,0.021-0.021,0.043-0.032,0.064c0.036,0.046,0.118,0.075,0.165,0.108c-0.011,0.023-0.021,0.046-0.032,0.07\r\n\t\t\t\tc0.04,0.049,0.08,0.097,0.121,0.146c0.135,0.068,0.112,0,0.184,0.153c-0.021,0.04-0.045,0.073-0.051,0.127\r\n\t\t\t\tc0.051,0.067,0.112,0.106,0.133,0.203c-0.034-0.042-0.068-0.085-0.102-0.127h-0.006c-0.04,0.073-0.053,0.198-0.051,0.305\r\n\t\t\t\tc0.011-0.008,0.021-0.017,0.032-0.025c0.008,0.01,0.017,0.021,0.025,0.032c-0.017,0.008-0.034,0.017-0.051,0.025\r\n\t\t\t\tc-0.034,0.153-0.066,0.309-0.121,0.426c-0.162,0.027-0.245-0.039-0.375-0.076c-0.077,0.095-0.35,0.058-0.515,0.032\r\n\t\t\t\tc-0.075-0.012-0.339-0.086-0.356-0.083c-0.076,0.017-0.158,0.089-0.267,0.07c-0.137-0.023-0.23-0.099-0.369-0.044\r\n\t\t\t\tc-0.013,0.034-0.025,0.068-0.038,0.102h-0.083c-0.104,0.004-0.159,0.031-0.197,0.102c0.002,0.023,0.004,0.047,0.006,0.07\r\n\t\t\t\tc0.094,0.019,0.139,0.07,0.165,0.153c0.008,0.014-0.059,0.211-0.076,0.241c0.095,0.198,0.023,0.738-0.14,0.826\r\n\t\t\t\tc0.005,0.08-0.01,0.143-0.038,0.203c0.015,0.029,0.018,0.027,0.051,0.038c0.039-0.018,0.066-0.029,0.083-0.07\r\n\t\t\t\tc0.006-0.004,0.013-0.009,0.019-0.013c0.009,0.017,0.017,0.034,0.025,0.051c-0.024,0.033-0.05,0.045-0.108,0.045v0.006\r\n\t\t\t\tc0.004,0.017,0.009,0.034,0.013,0.051c0.035,0.008,0.086-0.006,0.121-0.019c0.004,0.004,0.008,0.008,0.013,0.013\r\n\t\t\t\tc-0.011,0.052-0.024,0.115-0.032,0.165c-0.002,0.004-0.004,0.008-0.006,0.013c0.016,0.028,0.041,0.09,0.025,0.152\r\n\t\t\t\tc-0.012,0.047-0.061,0.108-0.044,0.159v0.013c0.057-0.028,0.12-0.061,0.216-0.038c0.03,0.007,0.054,0.035,0.102,0.026\r\n\t\t\t\tc0.044-0.021,0.089-0.042,0.133-0.064c0.148-0.039,0.293,0.081,0.286,0.191c0.017,0.006,0.034,0.013,0.051,0.019\r\n\t\t\t\tc0.017,0.104,0.101,0.213,0.229,0.178c0.011-0.013,0.01-0.013,0.013-0.038h0.006c0.002,0.011,0.004,0.021,0.006,0.032h0.006\r\n\t\t\t\tc0.028-0.117,0.068-0.096,0.178-0.133c0.032-0.028,0.064-0.055,0.095-0.083c0.167,0.002,0.335,0.004,0.502,0.006\r\n\t\t\t\tc0.033-0.011,0.061-0.035,0.114-0.044c0.013,0.011,0.025,0.021,0.038,0.032c0.076-0.056,0.065-0.091,0.114-0.178\r\n\t\t\t\tc0.05-0.088,0.175-0.085,0.292-0.108c0.01-0.028-0.012-0.031-0.006-0.064c0.026-0.154,0.176-0.261,0.299-0.324v-0.019\r\n\t\t\t\tc-0.032-0.017-0.064-0.034-0.095-0.051c-0.023-0.053-0.047-0.106-0.07-0.159c0.031-0.147,0.225-0.389,0.356-0.438\r\n\t\t\t\tc0.002-0.004,0.004-0.009,0.006-0.013c-0.016-0.018-0.023-0.016-0.032-0.044c0.086-0.149,0.264-0.073,0.394-0.159\r\n\t\t\t\tc0.011-0.019,0.021-0.038,0.032-0.057c0.074-0.067,0.212-0.068,0.273-0.146c0.075-0.198-0.151-0.33,0.102-0.508\r\n\t\t\t\tc0.16-0.113,0.187,0.005,0.33,0.006c0.036,0,0.081-0.033,0.133-0.013c0.074,0.029,0.117,0.137,0.242,0.115\r\n\t\t\t\tc0.24-0.044,0.308-0.187,0.47-0.292c0.047-0.013,0.093-0.026,0.14-0.038c0.025-0.028,0.051-0.055,0.076-0.083\r\n\t\t\t\tc0.129-0.101,0.256-0.104,0.426-0.019c0.221,0.111,0.209,0.479,0.419,0.61c0.184,0.115,0.33,0.293,0.502,0.381\r\n\t\t\t\tc0.155,0.08,0.306,0.025,0.343,0.229c0.03-0.008,0.059-0.017,0.089-0.025H32.2c0.013,0.015,0.025,0.03,0.038,0.044\r\n\t\t\t\tc-0.011,0.004-0.021,0.009-0.032,0.013c-0.004,0.008-0.009,0.017-0.013,0.025c0.038-0.011,0.076-0.021,0.114-0.032\r\n\t\t\t\tc0.021,0.019,0.042,0.038,0.064,0.057c0.009,0.041,0.003,0.066-0.013,0.095c0.045,0.027,0.089,0.055,0.133,0.083\r\n\t\t\t\tc0.022,0.012,0.038-0.004,0.069-0.019c0.034,0.01,0.182,0.419,0.172,0.451v0.013c-0.022-0.002-0.047-0.004-0.069-0.006\r\n\t\t\t\tc-0.011,0.011-0.021,0.021-0.032,0.032c0.02,0.067,0.004,0.11-0.064,0.14v0.076c0.014,0.009,0.025,0.017,0.039,0.025h0.082\r\n\t\t\t\tc0.039-0.064,0.067-0.14,0.146-0.165c0.016-0.034,0.005-0.062,0-0.108c0.045-0.043,0.062-0.067,0.159-0.064\r\n\t\t\t\tc0.011-0.013,0.021-0.026,0.032-0.038c-0.026-0.042-0.026-0.089-0.006-0.134c-0.062-0.034-0.123-0.068-0.185-0.102\r\n\t\t\t\tc0.002-0.111,0.086-0.282,0.197-0.267c-0.007,0.095,0.142,0.064,0.202,0.108c0.031,0.023,0.007,0.04,0.025,0.076\r\n\t\t\t\tc0.036,0.023,0.072,0.047,0.108,0.07c0.015-0.044,0.03-0.089,0.045-0.133c-0.196-0.193-0.437-0.359-0.744-0.438\r\n\t\t\t\tc-0.011-0.013-0.021-0.025-0.032-0.038c0.032-0.027,0.049-0.054,0.096-0.07c-0.002-0.011-0.004-0.021-0.006-0.032\r\n\t\t\t\tc-0.047-0.073-0.328,0.011-0.414-0.076c-0.08-0.081-0.209-0.198-0.254-0.305c-0.028-0.067-0.023-0.157-0.064-0.21\r\n\t\t\t\tc-0.031-0.04-0.088-0.05-0.133-0.076c-0.15-0.087-0.231-0.143-0.273-0.343c0.027-0.031,0.056-0.043,0.076-0.083\r\n\t\t\t\tc-0.031-0.037-0.057-0.035-0.057-0.108c-0.015-0.002-0.03-0.004-0.044-0.006c0.008-0.021,0.017-0.042,0.025-0.064\r\n\t\t\t\tc0.044-0.029,0.154-0.064,0.248-0.07c0.002-0.017,0.004-0.034,0.006-0.051c0.08,0.003,0.086,0.005,0.159,0\r\n\t\t\t\tc0.011,0.017,0.021,0.034,0.032,0.051c-0.019,0.025-0.035,0.035-0.076,0.038c0.021,0.098,0.071,0.175,0.102,0.254\r\n\t\t\t\tc0.033-0.017,0.055-0.041,0.083-0.064c0.017-0.047,0.034-0.093,0.051-0.14c0.256,0.103,0.086,0.31,0.343,0.388\r\n\t\t\t\tc-0.036,0.002-0.072,0.004-0.108,0.006v0.006c0.075,0.108,0.184,0.165,0.266,0.267c0.025,0.026,0.06-0.025,0.109-0.013\r\n\t\t\t\tc0.006,0.001,0.152,0.061,0.164,0.07c0.049,0.035,0.09,0.097,0.141,0.133c0.133,0.095,0.271,0.155,0.406,0.248\r\n\t\t\t\tc0.03,0.036,0.06,0.072,0.09,0.108c0.041,0.021,0.084,0.042,0.127,0.064c0.002,0.051,0.002,0.06-0.039,0.07\r\n\t\t\t\tc-0.006,0.043,0.017,0.226,0.014,0.235c-0.018,0.032-0.034,0.064-0.051,0.095c0.021,0.032,0.037,0.045,0.037,0.102\r\n\t\t\t\tc-0.01-0.002-0.021-0.004-0.031-0.006c0.027,0.077,0.145,0.098,0.191,0.159c0.006,0.03,0.013,0.059,0.019,0.089\r\n\t\t\t\tc0.04,0.101,0.153,0.191,0.28,0.172c0.008,0.008,0.017,0.017,0.024,0.025v0.013c-0.026,0.034-0.065,0.029-0.108,0.038v0.006\r\n\t\t\t\tc0.037,0.055,0.072,0.11,0.108,0.165c0.103-0.009,0.228-0.061,0.349-0.025c0.078,0.022,0.119,0.081,0.224,0.089v0.006\r\n\t\t\t\tc-0.101,0.134-0.204-0.021-0.324-0.038c-0.039-0.005-0.082,0.035-0.159,0.032c-0.021,0.038-0.041,0.076-0.063,0.114\r\n\t\t\t\tc0.038,0.047,0.075,0.093,0.114,0.14c0.014,0.044-0.017,0.099-0.014,0.146c0.02,0.017,0.038,0.034,0.057,0.051\r\n\t\t\t\tc0.02-0.015,0.039-0.03,0.058-0.044c0.045-0.022,0.097,0.086,0.108,0.14c0.004,0.002,0.009,0.004,0.013,0.007\r\n\t\t\t\tc0.011-0.019,0.021-0.038,0.032-0.057c0.056-0.027,0.09-0.001,0.14,0.025c-0.005-0.136-0.056-0.195-0.095-0.292v-0.032\r\n\t\t\t\tc0.033,0.011,0.068,0.021,0.102,0.032h0.014c-0.006,0.013-0.014,0.025-0.02,0.038c0.018,0.006,0.034,0.013,0.051,0.019\r\n\t\t\t\tc0.02-0.035,0.029-0.044,0.083-0.045c-0.022-0.029-0.028-0.02-0.024-0.064c-0.021,0.004-0.043,0.009-0.064,0.013\r\n\t\t\t\tc-0.021-0.048-0.025-0.074-0.057-0.108c0.047-0.015,0.093-0.03,0.14-0.044c0.05,0.006,0.106,0.078,0.121,0.121\r\n\t\t\t\tc0.006,0.004,0.013,0.008,0.019,0.013c0.014-0.011,0.025-0.021,0.039-0.032c-0.014-0.04-0.025-0.081-0.039-0.121\r\n\t\t\t\tc0.008-0.002,0.018-0.004,0.025-0.006c-0.005-0.06-0.342-0.233-0.419-0.248v-0.006c0.044-0.01,0.071-0.023,0.103-0.044\r\n\t\t\t\tc-0.014-0.03-0.026-0.059-0.039-0.089v-0.007c0.031-0.019,0.043-0.017,0.084-0.006c0.014,0.026,0.015,0.037,0.013,0.07h0.006\r\n\t\t\t\tc0.006-0.002,0.013-0.004,0.019-0.006c0.008-0.011,0.018-0.021,0.025-0.032c-0.079-0.096-0.169-0.193-0.223-0.311\r\n\t\t\t\tc0.003-0.047,0.016-0.064,0.039-0.089c-0.012-0.013-0.021-0.025-0.032-0.038c0.034-0.015,0.06-0.023,0.075-0.057\r\n\t\t\t\tc0.009,0.002,0.018,0.004,0.025,0.006c0.002,0.009,0.004,0.017,0.006,0.025c-0.011,0.007-0.021,0.013-0.031,0.019\r\n\t\t\t\tc0.039,0.08,0.139,0.069,0.146,0.184c0.032,0.004,0.063,0.008,0.095,0.013h0.014c-0.035-0.042-0.079-0.056-0.108-0.108v-0.006\r\n\t\t\t\tc0.076,0.003,0.119,0.051,0.146,0.102c0.016-0.002,0.031-0.004,0.045-0.006c0.002-0.006,0.004-0.013,0.006-0.019\r\n\t\t\t\tc-0.023-0.041-0.061-0.046-0.083-0.089c0.011-0.008,0.021-0.017,0.032-0.026c0.037,0.007,0.066,0.015,0.082,0.045\r\n\t\t\t\tc0.018,0.015,0.035,0.03,0.052,0.045c0.006-0.004,0.013-0.009,0.019-0.013v-0.006c-0.062-0.077-0.15-0.094-0.19-0.197v-0.006\r\n\t\t\t\tc0.134-0.026,0.108,0.02,0.21-0.07c0.039,0.003,0.033,0.001,0.044,0.032c0.079,0,0.103-0.025,0.153-0.051\r\n\t\t\t\tc0.043,0.102,0.271-0.012,0.285,0.121c0.008-0.009,0.018-0.017,0.025-0.025c0.034,0.021,0.105,0.031,0.146,0.044\r\n\t\t\t\tc0.002,0.004,0.004,0.008,0.006,0.013c-0.032,0.019-0.064,0.038-0.096,0.057c-0.008,0.032-0.017,0.064-0.024,0.095\r\n\t\t\t\tc0.065-0.021,0.091-0.085,0.14-0.121c0.061-0.028,0.123-0.055,0.184-0.083c0.016-0.03,0.03-0.059,0.045-0.089\r\n\t\t\t\tc0.037-0.022,0.1,0.002,0.152-0.019c0.137-0.054,0.112,0.009,0.273,0.013c0.025-0.03,0.045-0.056,0.062-0.095\r\n\t\t\t\tc-0.045-0.06-0.142-0.051-0.209-0.089c-0.088-0.049-0.179-0.313-0.268-0.299v-0.051c0.035-0.035,0.047-0.056,0.102-0.076\r\n\t\t\t\tc0.016-0.084,0.038-0.153,0.051-0.222c0.025-0.013,0.108-0.018,0.121-0.038c0.004-0.04,0.008-0.08,0.014-0.121\r\n\t\t\t\tc0.035-0.199,0.06-0.377,0.285-0.388c0.023-0.049,0.047-0.097,0.07-0.146c-0.015-0.031-0.033-0.038-0.051-0.064\r\n\t\t\t\tc-0.031-0.104,0.094-0.097,0.152-0.133c0.199-0.119,0.104-0.321,0.51-0.311c0.008-0.015,0.018-0.03,0.025-0.045\r\n\t\t\t\tc0.006-0.004,0.013-0.008,0.019-0.013c0.021,0.025,0.042,0.051,0.063,0.076v0.013c-0.022,0.021-0.047,0.042-0.069,0.064v0.013\r\n\t\t\t\tc0.097,0.133,0.265,0.085,0.458,0.089c0.013,0.025,0.025,0.051,0.038,0.076c-0.067,0.074-0.25,0.106-0.331,0.184\r\n\t\t\t\tc0.004,0.008,0.009,0.017,0.013,0.025c0.2,0.038,0.367,0.002,0.254,0.267V23.7c0.285,0.052,0.158-0.026,0.337-0.089\r\n\t\t\t\tc0.051-0.004,0.103-0.009,0.153-0.013c0.034-0.028,0.067-0.055,0.103-0.083c0.06-0.018,0.088,0.017,0.133,0.025\r\n\t\t\t\tc0.037-0.006,0.076-0.013,0.113-0.019c0.023-0.032,0.053-0.072,0.064-0.114c-0.064-0.008-0.127-0.017-0.191-0.025\r\n\t\t\t\tc-0.072,0.007-0.141,0.064-0.234,0.038c-0.024-0.123-0.199-0.258-0.338-0.299c-0.002-0.004-0.004-0.008-0.006-0.013\r\n\t\t\t\tc0.104-0.029,0.197-0.016,0.306-0.019c0.036-0.039,0.065-0.066,0.083-0.127c0.004-0.002,0.009-0.004,0.013-0.006\r\n\t\t\t\tc0.015,0.013,0.03,0.025,0.044,0.038c0.021,0.013,0.02,0.008,0.045,0c0.051-0.015,0.061-0.049,0.102-0.063\r\n\t\t\t\tc0.125-0.023,0.25-0.047,0.375-0.07c0.023-0.025,0.048-0.051,0.07-0.076c0.074-0.008,0.148-0.017,0.223-0.025\r\n\t\t\t\tc0.013-0.013,0.007-0.002,0.013-0.025c0.093-0.017,0.187-0.034,0.28-0.051c0.011,0.021,0.021,0.042,0.031,0.064\r\n\t\t\t\tc-0.099,0.079-0.25,0.146-0.412,0.152c-0.008,0.011-0.018,0.021-0.026,0.032c0.073,0.053,0.147,0.098,0.196,0.178\r\n\t\t\t\tc-0.033,0.026-0.076,0.034-0.139,0.032c-0.029,0.081-0.084,0.13-0.09,0.229c-0.049,0.026-0.154,0.037-0.21,0.051\r\n\t\t\t\tc0.044,0.059,0.104,0.147,0.159,0.197c0.043,0.008,0.057-0.002,0.089-0.019c0.041,0.027,0.058,0.069,0.095,0.095\r\n\t\t\t\tc0.045,0.013,0.09,0.025,0.133,0.038c0.105,0.049,0.192,0.14,0.281,0.21c0.047,0.038,0.115,0.138,0.178,0.133\r\n\t\t\t\tc-0.004,0.019-0.008,0.038-0.014,0.057c0.102,0.075,0.311,0.102,0.381,0.21c0.016,0.053,0.03,0.106,0.045,0.159\r\n\t\t\t\tc0.08,0.289-0.088,0.388-0.324,0.445c-0.131,0.031-0.221-0.051-0.336-0.032c-0.053,0.017-0.106,0.034-0.159,0.051\r\n\t\t\t\tc-0.099,0.022-0.277-0.021-0.382-0.038c-0.125-0.021-0.15-0.13-0.291-0.076c-0.078-0.037-0.078-0.076-0.121-0.146\r\n\t\t\t\tc-0.029-0.021-0.103,0.03-0.172,0.013c-0.084-0.021-0.076-0.089-0.121-0.146c-0.174,0.111-0.323-0.021-0.541,0.032\r\n\t\t\t\tc-0.195,0.047-0.34,0.172-0.514,0.229c0.002,0.017,0.004,0.034,0.006,0.051c-0.139,0.074-0.203,0.007-0.318-0.013\r\n\t\t\t\tc-0.02,0.006-0.038,0.013-0.057,0.019c-0.094-0.008-0.187-0.017-0.28-0.025c-0.013,0.025-0.025,0.051-0.038,0.076\r\n\t\t\t\tc0.029,0.031,0.068,0.042,0.083,0.089c0.053-0.002,0.106-0.004,0.159-0.006v0.006c-0.072,0.023-0.189,0.032-0.28,0.032\r\n\t\t\t\tc-0.017,0.023-0.026,0.025-0.026,0.051c0.026,0.006,0.051,0.013,0.076,0.019c0.006,0.004,0.014,0.009,0.02,0.013\r\n\t\t\t\tc-0.006,0.008-0.014,0.017-0.02,0.025c-0.113-0.018-0.214-0.013-0.337-0.006c0.011-0.013,0.021-0.025,0.032-0.038\r\n\t\t\t\tc-0.036-0.015-0.055-0.014-0.09-0.007c-0.002,0.004-0.004,0.009-0.006,0.013c0.014,0.006,0.026,0.013,0.039,0.019v0.019\r\n\t\t\t\tc-0.067,0.022-0.143,0.01-0.16-0.044c-0.09,0.011-0.202,0.041-0.254,0.095c-0.035,0.037,0.004,0.057-0.069,0.064\r\n\t\t\t\tc-0.011,0.071-0.028,0.13-0.032,0.191c0.087-0.013,0.174-0.025,0.262-0.038v0.006c-0.016,0.024-0.031,0.039-0.058,0.051\r\n\t\t\t\tc-0.015,0.017-0.03,0.034-0.045,0.051c0.035,0.006,0.049,0.02,0.063,0.045c0.015,0.023-0.006,0.02-0.013,0.064h0.058\r\n\t\t\t\tc0.006,0.008,0.013,0.017,0.019,0.025c-0.021,0.025-0.052,0.036-0.089,0.045c-0.008,0.025,0.01,0.054,0.038,0.076\r\n\t\t\t\tc0.034,0.045,0.026,0.031-0.019,0.063c-0.033-0.003-0.056-0.025-0.09-0.044c-0.011,0.023-0.021,0.047-0.031,0.07v0.045\r\n\t\t\t\tc0.104,0.013,0.133,0.046,0.221,0.07c0.004,0.06-0.021,0.124,0.007,0.165c0.034,0.021,0.067,0.042,0.103,0.064\r\n\t\t\t\tc0.002,0.008,0.004,0.017,0.006,0.025c-0.028,0.011-0.056,0.021-0.084,0.032c0.006,0.013,0.014,0.025,0.02,0.038\r\n\t\t\t\tc0.068,0.006,0.136,0.013,0.203,0.019c0.002,0.004,0.004,0.008,0.006,0.013c-0.018,0.019-0.023,0.019-0.032,0.051\r\n\t\t\t\tc0.007,0.015,0.013,0.03,0.019,0.045c0.004,0.002,0.01,0.004,0.014,0.006c0.021-0.021,0.042-0.042,0.064-0.063\r\n\t\t\t\tc0.084-0.003,0.086,0.023,0.146,0.051c0.028,0.014,0.049-0.015,0.076-0.038c0.024,0.059,0.051,0.119,0.075,0.178\r\n\t\t\t\tc0.1,0.031,0.23-0.025,0.3,0.019c0.013-0.002,0.026-0.004,0.038-0.006c0.015-0.072,0.029-0.144,0.044-0.216\r\n\t\t\t\tc0.142-0.018,0.288,0.018,0.388,0.083c0.073,0.048,0.107,0.143,0.203,0.172c0.136,0.041,0.301-0.026,0.381-0.045\r\n\t\t\t\tc0.042-0.082,0.104-0.102,0.159-0.165c0.138,0.001,0.177,0.055,0.286,0.07c0.037-0.038,0.085-0.067,0.121-0.114h0.025\r\n\t\t\t\tc0.012,0.017,0.024,0.034,0.037,0.051c0.002,0.013,0.004,0.025,0.006,0.038c-0.039,0.043-0.09,0.068-0.127,0.114\r\n\t\t\t\tc0.018,0.03,0.034,0.059,0.051,0.089c-0.011,0.057-0.037,0.107-0.063,0.153c0.087,0.115,0.021,0.195,0.076,0.33\r\n\t\t\t\tc-0.146,0.144-0.206,0.407-0.306,0.578c-0.008,0.042-0.017,0.085-0.024,0.127c-0.041,0.134-0.077,0.258-0.173,0.337\r\n\t\t\t\tc0.074,0.186,0.148,0.373,0.223,0.559c0.012,0.018,0.023,0.014,0.051,0.032c-0.023,0.137-0.084,0.285-0.095,0.407\r\n\t\t\t\tc0.036,0.002,0.071,0.004,0.108,0.006c0.047,0.059,0.093,0.119,0.14,0.178c0.104,0.17,0.188,0.32,0.299,0.477\r\n\t\t\t\tc0.084,0.118,0.206,0.226,0.165,0.413c0.085,0.117,0.223,0.149,0.324,0.248c0.066,0.119,0.131,0.237,0.197,0.356\r\n\t\t\t\tc0.065,0.127-0.002,0.313,0.051,0.457c0.051,0.072,0.102,0.144,0.152,0.216c0.069,0.096,0.225,0.114,0.299,0.203\r\n\t\t\t\tc0.089,0.182,0.178,0.364,0.267,0.546c0.034,0.026,0.067,0.051,0.103,0.076c0.086,0.071,0.194,0.232,0.234,0.344\r\n\t\t\t\tc0.012,0.067,0.021,0.135,0.032,0.202c-0.009,0.039-0.042,0.068-0.032,0.128c0.03,0.172,0.113,0.353,0.165,0.495v0.216\r\n\t\t\t\tc0.095,0.205,0.384,0.166,0.554,0.057c0.057-0.047,0.113-0.092,0.172-0.139c0.094-0.029,0.217,0.012,0.299-0.014\r\n\t\t\t\tc0.128-0.039,0.228-0.133,0.343-0.172c0.078-0.025,0.163,0.016,0.229-0.02c0.068-0.035,0.086-0.123,0.151-0.158\r\n\t\t\t\tc0.238-0.131,0.547-0.129,0.769-0.268c0.062-0.037,0.047-0.087,0.076-0.158c0.029-0.07,0.139-0.143,0.211-0.172\r\n\t\t\t\tc0.121-0.041,0.24-0.082,0.361-0.121c0.07,0.008,0.141,0.017,0.21,0.024c0.024-0.015,0.052-0.03,0.076-0.045\r\n\t\t\t\tc0.045-0.091,0.017-0.205,0.108-0.248c0.096-0.045,0.186,0.021,0.272-0.051c0.032-0.027,0.026-0.071,0.044-0.114\r\n\t\t\t\tc0.049-0.12,0.189-0.153,0.35-0.159c0.008-0.116-0.013-0.304,0.025-0.419c0.057-0.024,0.123,0.021,0.172-0.006\r\n\t\t\t\tc0.057-0.042,0.064-0.147,0.102-0.21c0.043-0.04,0.086-0.08,0.128-0.121c0.059-0.074,0.114-0.154,0.159-0.242\r\n\t\t\t\tc-0.012-0.066-0.116-0.088-0.159-0.127c-0.064-0.08-0.128-0.161-0.191-0.241c-0.048-0.033-0.104,0.008-0.165-0.006\r\n\t\t\t\tc-0.089-0.049-0.178-0.098-0.267-0.146c-0.071-0.049-0.183-0.161-0.21-0.248c-0.021-0.066,0.011-0.151-0.014-0.203\r\n\t\t\t\tc-0.015-0.018-0.023-0.019-0.057-0.019c0.044-0.068,0.068-0.116,0.057-0.229h-0.006c-0.045,0.057-0.089,0.115-0.133,0.172\r\n\t\t\t\tc-0.113,0.09-0.215,0.143-0.311,0.267c-0.023,0.045-0.047,0.089-0.07,0.134c-0.035,0.031-0.051,0.02-0.07,0.07\r\n\t\t\t\tc-0.041,0.011-0.062,0.014-0.095-0.006c-0.002,0.011-0.004,0.021-0.006,0.032c-0.074,0.026-0.394,0.021-0.478-0.019\r\n\t\t\t\tc-0.019,0.017-0.022,0.015-0.031,0.044c-0.073,0.007-0.131-0.005-0.203-0.006c0.013-0.058-0.016-0.063-0.064-0.076\r\n\t\t\t\tc-0.037-0.089,0.072-0.127,0.076-0.216c0.001-0.028-0.018-0.268-0.025-0.28c-0.018-0.025-0.035-0.018-0.051-0.057\r\n\t\t\t\tc-0.015-0.002-0.029-0.004-0.044-0.006c-0.083,0.059-0.118,0.288-0.069,0.407c0.006,0.07,0.01,0.094-0.051,0.089\r\n\t\t\t\tc-0.046-0.059-0.109-0.211-0.115-0.311c-0.033-0.027-0.035-0.039-0.076-0.032c-0.032-0.107-0.057-0.116-0.012-0.229\r\n\t\t\t\tc-0.014-0.021-0.026-0.042-0.039-0.064c0.021-0.031,0.039-0.029,0.045-0.076c-0.062-0.082-0.205-0.072-0.248-0.172\r\n\t\t\t\tc-0.035-0.028-0.025-0.027-0.006-0.064c-0.037-0.017-0.058-0.015-0.113-0.013c-0.07-0.185-0.159-0.356-0.211-0.553\r\n\t\t\t\tc-0.035,0.009-0.071,0.017-0.107,0.026c-0.013-0.006-0.025-0.013-0.038-0.019c0.021-0.026,0.042-0.051,0.063-0.076h0.044\r\n\t\t\t\tc-0.009-0.04-0.017-0.08-0.025-0.121c0.026-0.034,0.169-0.04,0.235-0.038c0.055-0.054,0.047-0.118,0.127-0.152h0.02\r\n\t\t\t\tc-0.002,0.041,0,0.074,0.019,0.095c0.038,0.072,0.165,0.061,0.241,0.032c0.043,0.069,0.144,0.143,0.172,0.21v0.102\r\n\t\t\t\tc0.031,0.082,0.137,0.259,0.191,0.337c0.064,0.091,0.221,0.082,0.312,0.146c0.047,0.057,0.093,0.115,0.14,0.172\r\n\t\t\t\tc0.105,0.063,0.211,0.06,0.337,0.102c0.07,0.023,0.11,0.086,0.197,0.095c0.042-0.036,0.187-0.121,0.196-0.172\r\n\t\t\t\tc0.099-0.035,0.203-0.075,0.324-0.044c0.051,0.012,0.039,0.034,0.09,0.038c0.015,0.043,0.01,0.1,0.031,0.159\r\n\t\t\t\tc0.026,0.069,0.096,0.113,0.096,0.21c0.067,0.011,0.135,0.056,0.184,0.076h0.254c0.025,0.023,0.051,0.047,0.076,0.07\r\n\t\t\t\tc0.143,0.002,0.284,0.004,0.426,0.007c0.075,0.02,0.118,0.067,0.217,0.083c0.131,0.021,0.254-0.027,0.355-0.044h0.286\r\n\t\t\t\tc0.057-0.021,0.1-0.057,0.19-0.07c0.08,0.167,0.549-0.018,0.687-0.025c0.073,0.053,0.075,0.102,0.069,0.223\r\n\t\t\t\tc0.047,0.011,0.094,0.021,0.141,0.032c0.023,0.068,0.047,0.136,0.07,0.203c0.05,0.067,0.113,0.032,0.19,0.076\r\n\t\t\t\tc0.03,0.042,0.06,0.085,0.089,0.127c0.104,0.123,0.381,0.229,0.598,0.153c0.002,0.052-0.021,0.064-0.051,0.095\r\n\t\t\t\tc-0.143,0.145-0.215,0.023-0.369,0.076h-0.014c0.049,0.113,0.434,0.501,0.572,0.508c0.04-0.015,0.081-0.03,0.121-0.044\r\n\t\t\t\tc0.145-0.047,0.383-0.127,0.254-0.299c0.008-0.03,0.018-0.059,0.025-0.089c0.031-0.019,0.082-0.021,0.14-0.019\r\n\t\t\t\tc-0.019,0.072-0.015,0.207,0.013,0.286c0.016,0.046,0.116,0.085,0.102,0.146c-0.014,0.062-0.094,0.113-0.102,0.191\r\n\t\t\t\tc0.027,0.146,0.055,0.292,0.083,0.438c0.034,0.205,0.068,0.411,0.103,0.616c0.07,0.251,0.209,0.444,0.305,0.655\r\n\t\t\t\tc0.064,0.143,0.116,0.299,0.165,0.457c0.021,0.078,0.042,0.156,0.063,0.234c0.039,0.055,0.076,0.11,0.114,0.165\r\n\t\t\t\tc0.074,0.163,0.148,0.326,0.222,0.489c0.033,0.111,0.064,0.225,0.096,0.337c0.059,0.063,0.119,0.127,0.178,0.19\r\n\t\t\t\tc0.09-0.002,0.219-0.063,0.248-0.127c0.025-0.054,0.004-0.105,0.038-0.146c0.083-0.028,0.165-0.056,0.248-0.083\r\n\t\t\t\tc-0.013-0.027-0.034-0.042-0.058-0.057c0.025-0.072,0.052-0.145,0.076-0.217c0.037-0.021,0.108-0.021,0.172-0.019\r\n\t\t\t\tc0.023-0.118-0.033-0.248-0.019-0.362c0.024-0.213,0.286-0.457,0.108-0.654c0.057-0.142-0.035-0.297,0-0.451\r\n\t\t\t\tc0.021-0.047,0.041-0.094,0.063-0.141c0.06-0.048,0.118-0.061,0.19-0.019c0.049-0.031,0.078-0.104,0.096-0.165\r\n\t\t\t\tc0.059-0.032,0.17-0.01,0.229-0.051c0.065-0.045,0.049-0.168,0.108-0.217c0.063-0.031,0.127-0.063,0.19-0.094\r\n\t\t\t\tc0.072-0.046,0.111-0.143,0.179-0.184c0.046-0.028,0.088-0.032,0.127-0.064c0.097-0.119,0.194-0.237,0.292-0.356\r\n\t\t\t\tc0.078-0.054,0.207-0.041,0.292-0.095c0.106-0.067,0.147-0.181,0.229-0.273c-0.014-0.045-0.025-0.089-0.039-0.134\r\n\t\t\t\tc0.072-0.072,0.18-0.083,0.268-0.14c0.032-0.034,0.064-0.068,0.096-0.102c0.028,0.022,0.049,0.059,0.057,0.102\r\n\t\t\t\tc0.013,0.004,0.025,0.008,0.037,0.013c0.018-0.03,0.035-0.059,0.052-0.089c0.002-0.004,0.004-0.008,0.006-0.013\r\n\t\t\t\tc0.034,0.02,0.042,0.065,0.051,0.108h0.089c-0.005-0.031-0.002-0.042,0.006-0.07c0.02,0.01,0.039,0.021,0.058,0.032\r\n\t\t\t\tc0.013-0.021,0.024-0.042,0.038-0.063c0.008-0.006,0.017-0.013,0.025-0.019c0.008,0.021,0.016,0.043,0.025,0.064h0.038\r\n\t\t\t\tc0.026-0.034,0.046-0.064,0.051-0.121c0.004-0.002,0.009-0.004,0.013-0.006c0.021,0.038,0.043,0.076,0.063,0.115h0.045\r\n\t\t\t\tc0.017-0.069,0.026-0.078,0.095-0.095c0.022-0.07-0.005-0.129-0.031-0.184c-0.002-0.034-0.004-0.067,0.013-0.083\r\n\t\t\t\tc0.004-0.004,0.009-0.009,0.013-0.013c0.032,0.042,0.064,0.085,0.096,0.127c0.069-0.001,0.1-0.022,0.146-0.044\r\n\t\t\t\tc0.175,0.137,0.122,0.639,0.362,0.705c0.021,0.006,0.054-0.002,0.076,0.006v0.083c0.053,0.035,0.082,0.001,0.127,0.025\r\n\t\t\t\tc0.067,0.037,0.106,0.146,0.133,0.229v0.006c-0.034,0.006-0.068,0.013-0.103,0.019c0.028,0.031,0.065,0.053,0.108,0.07\r\n\t\t\t\tc0.011-0.019,0.021-0.038,0.031-0.057c0.004-0.002,0.01-0.004,0.014-0.006c0.079,0.128,0.174,0.362,0.146,0.578\r\n\t\t\t\tc-0.018,0.129-0.099,0.221-0.103,0.361c0.015,0.012,0.03,0.021,0.044,0.033c0.047-0.039,0.073-0.066,0.152-0.076\r\n\t\t\t\tc-0.006,0.024-0.012,0.051-0.019,0.076c0.011,0.011,0.021,0.021,0.032,0.031h0.025c0.029-0.023,0.031-0.041,0.082-0.044v0.058\r\n\t\t\t\tc0.08,0.072,0.095-0.08,0.153-0.121c0.185-0.133,0.273-0.031,0.306-0.344H56.3c0.085,0.062,0.089,0.235,0.197,0.268\r\n\t\t\t\tc0.026,0.18,0.051,0.359,0.075,0.54c0.048,0.163,0.152,0.309,0.203,0.45c0.054,0.145,0.031,0.291,0.025,0.433\r\n\t\t\t\tc0.02,0.01,0.036,0.013,0.07,0.013c-0.033,0.078-0.145,0.34-0.114,0.413c0.017,0.013,0.034,0.025,0.052,0.038\r\n\t\t\t\tc-0.064,0.162-0.162,0.391-0.103,0.566c0.024-0.012,0.051-0.021,0.075-0.032c0.086,0.091,0.166,0.136,0.211,0.272\r\n\t\t\t\tc0.02,0.008,0.033,0.01,0.064,0c0.043,0.058,0.051,0.1,0.051,0.197c0.011,0.006,0.021,0.014,0.031,0.02\r\n\t\t\t\tc0.034,0.043,0.078,0.029,0.121,0.006c0.004,0.004,0.008,0.008,0.014,0.013c-0.019,0.14-0.008,0.3,0.043,0.445\r\n\t\t\t\tc0.025,0.047,0.052,0.093,0.076,0.14c0.01,0.069-0.023,0.131,0.014,0.191c0.039,0.033,0.08,0.068,0.121,0.102\r\n\t\t\t\tc0.016,0.021,0.021,0.057,0.031,0.088C55.357,48.795,44.764,58,32,58z M20.929,9.847c0.001,0,0.002,0,0.003,0\r\n\t\t\t\tc0.002,0.003,0.004,0.006,0.006,0.009c-0.001,0-0.002,0-0.003,0C20.933,9.853,20.931,9.85,20.929,9.847z M43.915,25.038\r\n\t\t\t\tc-0.028,0.012-0.031-0.019-0.069-0.013c-0.035,0.011-0.068,0.021-0.103,0.032c-0.005-0.002-0.009-0.004-0.013-0.006\r\n\t\t\t\tc-0.002-0.023-0.004-0.047-0.006-0.07c-0.014-0.004-0.026-0.008-0.039-0.013c-0.004,0.017-0.008,0.034-0.013,0.051\r\n\t\t\t\tc-0.048-0.011-0.054-0.013-0.108-0.006c-0.017-0.034-0.033-0.068-0.051-0.102c-0.066,0.075-0.078,0.271-0.043,0.369\r\n\t\t\t\tc0.038,0.021,0.133,0.008,0.215,0.006c-0.015,0.019-0.029,0.038-0.043,0.057c0.004,0.013,0.008,0.025,0.012,0.038\r\n\t\t\t\tc0.015,0.023,0.043,0.036,0.07,0.045v0.019c-0.045-0.004-0.088-0.008-0.133-0.013c-0.011,0.015-0.021,0.03-0.031,0.045v0.044\r\n\t\t\t\tc0.041-0.029,0.065-0.018,0.127-0.006c0.023,0.067,0.084,0.076,0.113,0.133c0.014,0.054-0.037,0.118-0.037,0.203\r\n\t\t\t\tc0,0.04-0.022,0.09-0.02,0.108c0.018,0.102,0.109,0.354,0.025,0.419c-0.062,0.047-0.192,0.025-0.281,0.045\r\n\t\t\t\tc-0.313,0.07-0.747,0.1-0.857-0.197c-0.119-0.032-0.251-0.062-0.35-0.095c-0.053-0.198,0.057-0.392,0.057-0.559\r\n\t\t\t\tc0.006-0.004,0.014-0.008,0.02-0.013c0.017,0.015,0.019,0.017,0.024,0.044c0.007,0.004,0.013,0.008,0.019,0.013\r\n\t\t\t\tc0.007-0.03,0.014-0.059,0.02-0.089c0.02-0.009,0.021-0.011,0.044-0.006c-0.012-0.168,0.011-0.45,0.28-0.337h0.006\r\n\t\t\t\tc-0.002-0.011-0.004-0.021-0.006-0.032c-0.057-0.128-0.189-0.036-0.242-0.108c-0.029-0.042-0.076-0.085-0.095-0.127\r\n\t\t\t\tc-0.023-0.049-0.009-0.096-0.038-0.133c-0.041-0.053-0.105-0.142-0.159-0.184c-0.019-0.006-0.038-0.013-0.058-0.019\r\n\t\t\t\tc-0.049-0.07-0.076-0.16-0.139-0.216c-0.016-0.004-0.031-0.009-0.045-0.013c-0.031-0.047,0.006-0.079-0.044-0.108\r\n\t\t\t\tc-0.057-0.081-0.018-0.217,0.019-0.311v-0.019H41.92c-0.011,0.038-0.021,0.076-0.031,0.114h-0.007\r\n\t\t\t\tc-0.001-0.113-0.014-0.227-0.114-0.286c-0.031-0.019-0.074-0.01-0.088-0.045v-0.032c0.004-0.075,0.082-0.081,0.113-0.127\r\n\t\t\t\tc0.062-0.092,0.092-0.195,0.121-0.286c0.004-0.006,0.008-0.013,0.013-0.019c0.105,0.051,0.2-0.03,0.28-0.076\r\n\t\t\t\tc0.016,0.008,0.029,0.017,0.044,0.025c0.017-0.02,0.021-0.029,0.019-0.07c0.103-0.023,0.135-0.121,0.217-0.153\r\n\t\t\t\tc0.039-0.002,0.08-0.004,0.121-0.006c0.129-0.041,0.242-0.21,0.412-0.197c0.097,0.007,0.138,0.073,0.211,0.089\r\n\t\t\t\tc0.076,0.017,0.097-0.038,0.133-0.051c0.057,0.013,0.113,0.025,0.172,0.038c0.015,0.025,0.029,0.051,0.045,0.076\r\n\t\t\t\tc-0.018,0.017-0.034,0.034-0.051,0.051c0.047,0.164,0.01,0.207-0.084,0.33c0.005,0.058,0.07,0.083,0.115,0.095\r\n\t\t\t\tc0.002,0.004,0.004,0.008,0.006,0.013c-0.139-0.013-0.275-0.025-0.414-0.038c-0.037,0.007-0.047,0.027-0.102,0.026\r\n\t\t\t\tc-0.013,0.034-0.025,0.068-0.037,0.102c-0.029,0.036-0.058,0.02-0.076,0.076c0.026,0.039,0.063,0.068,0.113,0.083\r\n\t\t\t\tc0.006,0.008,0.014,0.017,0.02,0.026c-0.062,0.044-0.215-0.025-0.338-0.019c-0.006,0.006-0.012,0.013-0.019,0.019v0.083\r\n\t\t\t\tc0.039,0.026,0.134,0.043,0.185,0.051c0.027,0.155,0.139,0.203,0.133,0.368h0.089c0.037,0.027,0.071,0.069,0.089,0.114\r\n\t\t\t\tc0.089,0.012,0.165-0.009,0.234,0.064c-0.033,0.064-0.069,0.143-0.094,0.203c0.022,0.038-0.002,0.077,0.019,0.121\r\n\t\t\t\tc0.013,0.006,0.026,0.013,0.038,0.019c-0.002,0.019-0.004,0.038-0.006,0.057c0.013,0.029,0.055,0.079,0.076,0.114v0.013\r\n\t\t\t\tc0.026-0.072,0.01-0.226,0.031-0.305c0.088-0.015,0.174-0.031,0.273-0.025c0.015,0.056,0.023,0.174,0.051,0.216\r\n\t\t\t\tc0.046,0.071,0.146,0.075,0.197,0.178c-0.016,0.031-0.026,0.037-0.057,0.051c-0.041-0.008-0.043-0.024-0.084-0.032\r\n\t\t\t\tC43.898,24.987,43.907,25.012,43.915,25.038z M35.799,24.777c-0.004,0.004-0.008,0.008-0.013,0.013\r\n\t\t\t\tc-0.024-0.022-0.041-0.037-0.083-0.045c0.004-0.011,0.009-0.021,0.013-0.032c0.017,0.008,0.034,0.017,0.052,0.025\r\n\t\t\t\tC35.788,24.751,35.789,24.757,35.799,24.777z M57.643,35.618c-0.367,0.016-0.324-0.226-0.388-0.502\r\n\t\t\t\tc-0.013,0.004-0.024,0.008-0.038,0.013c-0.056-0.044-0.033-0.145-0.051-0.222c-0.062,0.004-0.119,0.022-0.178,0.013\r\n\t\t\t\tc-0.153-0.249,0.123-0.633,0.191-0.826c-0.005-0.053-0.01-0.105-0.014-0.158c0.02-0.082,0.062-0.115,0.025-0.217\r\n\t\t\t\tc0.092-0.07,0.145-0.061,0.291-0.051c-0.006,0.076-0.012,0.152-0.019,0.229c0.058,0.002,0.08,0.024,0.121,0.033\r\n\t\t\t\tc0.078,0.014,0.106-0.055,0.19-0.007c0.039,0.04,0.076,0.08,0.115,0.121c0.002,0.001,0.004,0.001,0.006,0.002\r\n\t\t\t\tc-0.043,0.556-0.11,1.104-0.188,1.649C57.688,35.667,57.663,35.645,57.643,35.618z M8.363,28.628\r\n\t\t\t\tc-0.002-0.006-0.004-0.013-0.006-0.019v0.019H8.363z M8.35,28.59c-0.001-0.011-0.009-0.009-0.011-0.018\r\n\t\t\t\tc0.001,0.006,0.003,0.012,0.004,0.018H8.35z M42.555,41.414c-0.037-0.059-0.106-0.061-0.14-0.133\r\n\t\t\t\tc-0.067-0.055-0.062-0.042-0.127,0.013c0.009,0.101,0.008,0.235-0.07,0.299c-0.044,0.036-0.079,0.04-0.102,0.103\r\n\t\t\t\tc-0.039-0.014-0.048-0.034-0.063-0.07c-0.019-0.002-0.037-0.004-0.057-0.006c-0.003,0.068,0.016,0.109,0.038,0.165\r\n\t\t\t\tc-0.005,0.011-0.009,0.021-0.013,0.032c-0.024,0.016-0.041,0.024-0.084,0.024c-0.002,0.005-0.004,0.009-0.006,0.013\r\n\t\t\t\tc0.004,0.045,0.026,0.06,0.045,0.103c-0.022,0.024-0.047,0.051-0.069,0.076c-0.039-0.005-0.04-0.009-0.052-0.038H41.85\r\n\t\t\t\tc-0.031,0.027-0.062,0.055-0.095,0.083c0.009,0.034,0.022,0.045,0.038,0.069c-0.014,0.01-0.025,0.018-0.038,0.026\r\n\t\t\t\tc-0.024,0.011-0.026-0.009-0.063-0.019c-0.047,0.029-0.094,0.059-0.141,0.089c0.004,0.024,0.01,0.051,0.014,0.075\r\n\t\t\t\tc-0.071,0.018-0.121-0.053-0.211-0.012c-0.017,0.019-0.033,0.037-0.051,0.057c-0.039,0.02-0.074-0.014-0.107-0.014\r\n\t\t\t\tc-0.025,0.02-0.051,0.039-0.076,0.058c-0.044,0.002-0.09,0.004-0.133,0.006c0,0.213-0.084,0.245-0.141,0.381\r\n\t\t\t\tc-0.025,0.101,0.069,0.325,0.121,0.388c-0.015,0.032-0.029,0.064-0.044,0.096c0.032,0.039,0.063,0.076,0.095,0.115\r\n\t\t\t\tc0.03,0.114-0.166,0.512-0.216,0.559c-0.024,0.009-0.051,0.017-0.075,0.025c-0.045,0.031-0.103,0.232-0.09,0.311\r\n\t\t\t\tc0.053,0.097,0.106,0.195,0.159,0.292c-0.013,0.049-0.024,0.097-0.038,0.146c-0.031,0.145,0.061,0.157,0.083,0.229\r\n\t\t\t\tc0.017,0.051-0.006,0.092,0.019,0.127c0.084,0.119,0.263,0.084,0.344,0.21c0.137-0.008,0.17-0.09,0.285-0.121\r\n\t\t\t\tc0.07-0.009,0.141-0.018,0.211-0.025c0.132-0.082,0.205-0.498,0.261-0.674c0.149-0.486,0.302-0.971,0.451-1.455\r\n\t\t\t\tc0.028-0.096-0.011-0.189,0.019-0.3c0.026-0.093,0.125-0.146,0.146-0.254c-0.047-0.071-0.09-0.157-0.09-0.272\r\n\t\t\t\tc0.012-0.006,0.021-0.014,0.033-0.02c0.004-0.004,0.008-0.009,0.013-0.013c0.028,0.053,0.069,0.133,0.12,0.165\r\n\t\t\t\tc0.035-0.029,0.115-0.123,0.103-0.191c-0.026-0.053-0.055-0.105-0.083-0.158C42.622,41.831,42.634,41.518,42.555,41.414z\r\n\t\t\t\t M10.068,26.772c0.002,0.004,0.003,0.011,0.005,0.016v-0.016H10.068z M8.337,28.565c0,0.001-0.001,0.002-0.001,0.002\r\n\t\t\t\tc0.001,0.003,0.003,0.003,0.003,0.005C8.339,28.57,8.338,28.567,8.337,28.565z M8.356,28.609\r\n\t\t\t\tc-0.002-0.006-0.004-0.013-0.006-0.019v0.019H8.356z M14.998,24.644c-0.002-0.004-0.004-0.009-0.006-0.013\r\n\t\t\t\tc-0.021-0.006-0.042-0.013-0.064-0.019c-0.026,0.019-0.046,0.037-0.057,0.07c-0.004,0.002-0.009,0.004-0.013,0.006\r\n\t\t\t\tc-0.032-0.041-0.059-0.112-0.076-0.165v-0.007c0.122-0.058,0.118-0.025,0.216-0.114V24.37c-0.015-0.006-0.03-0.013-0.045-0.019\r\n\t\t\t\tc-0.042,0.02-0.082,0.042-0.14,0.045c-0.035-0.024-0.077-0.055-0.095-0.095c-0.006-0.006-0.013-0.013-0.019-0.019\r\n\t\t\t\tc0.049-0.04,0.097-0.081,0.146-0.121c0.013-0.015,0.026-0.03,0.038-0.045c-0.085-0.053-0.196-0.098-0.331-0.083\r\n\t\t\t\tc-0.013,0.023-0.025,0.047-0.038,0.07c-0.139,0.028-0.257-0.06-0.343-0.127v-0.019c0.036-0.036,0.072-0.072,0.108-0.108\r\n\t\t\t\tc-0.044-0.017-0.089-0.034-0.133-0.051c-0.111,0.022-0.1,0.134-0.21,0.159c-0.006-0.249,0.344-0.399,0.241-0.604\r\n\t\t\t\tc0.046-0.013,0.102-0.029,0.14-0.045c0.002-0.008,0.004-0.017,0.006-0.025c-0.004-0.011-0.009-0.021-0.013-0.032\r\n\t\t\t\tc-0.013-0.004-0.025-0.008-0.038-0.013c-0.078,0.021-0.157,0.042-0.235,0.064c-0.19,0.122-0.428,0.489-0.508,0.724\r\n\t\t\t\tc0.032,0.038,0.063,0.076,0.095,0.114c-0.085,0.09-0.178,0.003-0.235,0.165c-0.004,0.008-0.008,0.017-0.013,0.025\r\n\t\t\t\tc0.049,0.013,0.098,0.025,0.146,0.038c-0.09,0.09-0.264,0.111-0.324,0.229c-0.016,0.029,0.012,0.075,0.026,0.114\r\n\t\t\t\tc0.097-0.011,0.195-0.021,0.292-0.032c0.121,0.017,0.242,0.034,0.362,0.051c0.11,0.02,0.23-0.003,0.248-0.083\r\n\t\t\t\tc0.034-0.004,0.068-0.008,0.102-0.013v0.096c0.004,0.006,0.008,0.013,0.013,0.019c0.013-0.002,0.025-0.004,0.038-0.006\r\n\t\t\t\tc0.033-0.011,0.042-0.037,0.051-0.07c0.057,0.006,0.114,0.013,0.172,0.019v0.013c-0.121,0.055-0.153,0.168-0.305,0.21\r\n\t\t\t\tc-0.012,0.026-0.007,0.015,0,0.045c0.033,0.016,0.082,0.021,0.133,0.019c0.096-0.105,0.276-0.194,0.343-0.311\r\n\t\t\t\tc0.011,0.004,0.021,0.008,0.032,0.013c0.021,0.028,0.042,0.055,0.064,0.083c-0.002,0.068-0.031,0.109-0.064,0.146\r\n\t\t\t\tc0.002,0.017,0.004,0.034,0.006,0.051c0.017,0.002,0.034,0.004,0.051,0.006c0.025-0.021,0.051-0.042,0.076-0.063\r\n\t\t\t\tc0.004,0.036,0.008,0.072,0.013,0.108c0.053,0.015,0.106,0.03,0.159,0.045c0.031-0.093,0.108-0.194,0.095-0.299\r\n\t\t\t\tC14.985,24.767,14.974,24.733,14.998,24.644z M30.531,24.606c-0.011,0.008-0.021,0.017-0.032,0.025\r\n\t\t\t\tc0.014,0.032,0.014,0.022,0.057,0.019v0.006c-0.011,0.011-0.021,0.021-0.032,0.032c-0.002,0.004-0.004,0.008-0.006,0.013\r\n\t\t\t\tc0.021,0.009,0.042,0.017,0.063,0.026c-0.011,0.015-0.021,0.03-0.032,0.044c0.011,0.009,0.021,0.017,0.032,0.025\r\n\t\t\t\tc0.019,0.002,0.038,0.004,0.057,0.006v0.032c0.013,0.002,0.025,0.004,0.038,0.006c0.109-0.111,0.08-0.372,0.076-0.559\r\n\t\t\t\tc-0.008-0.006-0.017-0.013-0.025-0.019c-0.004,0.002-0.008,0.004-0.013,0.006c-0.004,0.03-0.008,0.059-0.013,0.089\r\n\t\t\t\tc-0.002,0.003-0.171,0.074-0.21,0.114c0.001,0.025,0.001,0.024,0.019,0.044c-0.009,0.007-0.017,0.013-0.026,0.019\r\n\t\t\t\tC30.493,24.58,30.509,24.579,30.531,24.606z M35.215,27.014c0.143-0.008,0.284-0.017,0.426-0.025\r\n\t\t\t\tc0.018-0.028,0.025-0.06,0.032-0.102c-0.045,0.028-0.097,0.035-0.146,0.064c-0.008-0.004-0.018-0.009-0.025-0.013\r\n\t\t\t\tc0.004-0.017,0.01-0.034,0.014-0.051c-0.002-0.002-0.004-0.004-0.007-0.006c-0.098,0.011-0.135,0.002-0.21-0.032\r\n\t\t\t\tc-0.07,0.006-0.14,0.013-0.21,0.019c-0.021-0.019-0.014-0.025-0.051-0.032c0.006-0.009,0.013-0.017,0.019-0.026\r\n\t\t\t\tc-0.004-0.006-0.008-0.013-0.013-0.019c-0.015,0.008-0.03,0.017-0.044,0.026c-0.034-0.012-0.057-0.014-0.076-0.038v-0.013\r\n\t\t\t\tc-0.011,0.013-0.01,0.012-0.013,0.038h-0.032c-0.006,0.032-0.013,0.063-0.02,0.095c0.088,0.039,0.261,0.031,0.356,0.07\r\n\t\t\t\tL35.215,27.014L35.215,27.014z M32.367,26.423c0.035-0.028,0.056-0.073,0.095-0.095c0.013-0.037-0.026-0.055-0.045-0.095\r\n\t\t\t\tc-0.036-0.095,0.072-0.224,0.103-0.292v-0.006c-0.059-0.014-0.121,0.013-0.172,0.025c-0.214,0.053-0.3,0.057-0.458-0.044\r\n\t\t\t\tc-0.091,0.081-0.209,0.007-0.254,0.152c0.043,0.085,0.104,0.06,0.191,0.102C32.004,26.254,32.172,26.367,32.367,26.423z\r\n\t\t\t\t M21.217,10.482c0.035-0.019,0.07-0.038,0.105-0.057c0.055-0.019,0.109-0.037,0.164-0.056c0.003-0.008,0.007-0.017,0.01-0.025\r\n\t\t\t\tc-0.104,0.008-0.218,0.043-0.302,0.036c-0.066,0.038-0.132,0.076-0.197,0.114c-0.025,0.014-0.069,0.026-0.071,0.048\r\n\t\t\t\tc0.004,0.002,0.008,0.004,0.013,0.006c0.045-0.002,0.096-0.023,0.138-0.036C21.123,10.502,21.17,10.492,21.217,10.482z\r\n\t\t\t\t M16.682,18.341c-0.01,0.031-0.094,0.043-0.109,0.087c0.001,0.002,0.001,0.003,0.002,0.005c0.076-0.011,0.12-0.032,0.157-0.06\r\n\t\t\t\tc0.001-0.015-0.005-0.022-0.016-0.032C16.705,18.339,16.7,18.338,16.682,18.341z M30.575,25.66\r\n\t\t\t\tc0.019-0.025,0.038-0.051,0.057-0.076c0.054-0.026,0.099,0,0.146,0.013c0.02-0.058,0.068-0.112,0.057-0.197\r\n\t\t\t\tc-0.006-0.047-0.013-0.093-0.019-0.14c0.006-0.036,0.036-0.069,0.044-0.095c0.031-0.095-0.097-0.241-0.153-0.26\r\n\t\t\t\tc-0.085,0.08-0.164,0.087-0.311,0.114c-0.004,0.004-0.008,0.008-0.013,0.013c0.017,0.081,0.077,0.106,0.095,0.197\r\n\t\t\t\tC30.517,25.416,30.356,25.615,30.575,25.66z M30.512,36.559c-0.028,0.032-0.044,0.092-0.089,0.108v0.058\r\n\t\t\t\tc0.013,0.004,0.025,0.008,0.038,0.012c0.082-0.01,0.066-0.094,0.127-0.127C30.57,36.578,30.553,36.568,30.512,36.559z\r\n\t\t\t\t M26.304,19.147c0.035-0.024,0.05-0.049,0.076-0.083c0.002-0.004,0.004-0.009,0.006-0.013c0.025,0.017,0.051,0.034,0.076,0.051\r\n\t\t\t\tc-0.033,0.09-0.136,0.211-0.089,0.305v0.013c0.082-0.047,0.165-0.094,0.235-0.152h0.025c0.006,0.028,0.013,0.055,0.019,0.083\r\n\t\t\t\tc-0.02,0.027-0.04,0.046-0.076,0.057c-0.009,0.057,0.008,0.105,0.051,0.127c0.034,0.062-0.106,0.181-0.121,0.28\r\n\t\t\t\tc0.051,0.013,0.102,0.025,0.153,0.038c0.024-0.018,0.033-0.026,0.038-0.064c0.038,0.011,0.076,0.021,0.114,0.032\r\n\t\t\t\tc0.138-0.008,0.086-0.079,0.267-0.032c-0.045,0.057-0.103,0.092-0.121,0.178c0.025,0.053,0.055,0.069,0.089,0.108\r\n\t\t\t\tc0.036-0.007,0.072-0.013,0.108-0.019h0.006c-0.005,0.156-0.076,0.23-0.013,0.356v0.006c-0.215,0.003-0.415,0.024-0.489,0.172\r\n\t\t\t\tv0.006h0.133v0.013c0.023,0.036,0.008,0.103,0.006,0.159c-0.078,0.113-0.267,0.119-0.299,0.178\r\n\t\t\t\tc-0.011,0.011-0.021,0.021-0.032,0.032c0.025,0.021,0.051,0.042,0.076,0.064c0.085,0.002,0.169,0.004,0.254,0.006\r\n\t\t\t\tc0.061,0.03,0.123,0.059,0.184,0.089h0.013c0.09-0.005,0.137-0.049,0.203-0.076c-0.029,0.06-0.086,0.099-0.089,0.172\r\n\t\t\t\tc-0.131,0.033-0.232-0.046-0.343,0.006c-0.036,0.041-0.02,0.083-0.095,0.07c-0.013,0.136-0.232,0.282-0.35,0.318\r\n\t\t\t\tc-0.002,0.004-0.004,0.009-0.006,0.013c0.032,0.009,0.064,0.017,0.095,0.026c0.015,0.015,0.03,0.03,0.045,0.045\r\n\t\t\t\tc0.052-0.069,0.127-0.122,0.216-0.153c0.045,0.021,0.07,0.005,0.095-0.013c0.108,0.059,0.203,0.111,0.21-0.089\r\n\t\t\t\tc0.2-0.024,0.253-0.004,0.439,0.013c-0.004-0.015-0.009-0.03-0.013-0.044c0.085-0.013,0.17-0.025,0.254-0.038\r\n\t\t\t\tc0.048-0.007,0.063,0.026,0.095,0.032c0.042-0.011,0.085-0.021,0.127-0.032c0.061,0.009,0.123,0.017,0.184,0.025\r\n\t\t\t\tc0.074-0.014,0.1-0.073,0.203-0.064c0.004-0.059,0.085-0.077,0.133-0.089V21.17h-0.013c-0.014-0.009-0.237-0.029-0.299-0.032\r\n\t\t\t\tV21.13c0.107-0.031,0.369-0.204,0.4-0.299c-0.006-0.055-0.013-0.11-0.019-0.165c-0.087-0.068-0.271-0.169-0.369-0.032\r\n\t\t\t\tc-0.034-0.007-0.068-0.013-0.102-0.019c0.135-0.201,0.055-0.175-0.076-0.318c-0.002-0.002,0.009-0.153-0.025-0.203\r\n\t\t\t\tc-0.049-0.064-0.097-0.127-0.146-0.191c-0.055-0.03-0.115-0.006-0.153-0.051c-0.069-0.084-0.056-0.196-0.095-0.299\r\n\t\t\t\tc-0.031-0.053-0.237-0.227-0.318-0.222c-0.131,0.007-0.14,0.075-0.305,0.006c-0.002-0.004-0.004-0.008-0.006-0.013\r\n\t\t\t\tc0.123,0.003,0.258-0.01,0.311-0.076c0.004-0.002,0.008-0.004,0.013-0.006c-0.034-0.019-0.068-0.038-0.102-0.057\r\n\t\t\t\tc-0.002-0.004-0.004-0.009-0.006-0.013c0.198-0.003,0.277-0.285,0.331-0.426c0.013-0.025,0.001-0.021-0.013-0.051\r\n\t\t\t\tc-0.1-0.073-0.46-0.024-0.623-0.025c-0.006-0.009-0.013-0.017-0.019-0.025c0.017-0.197,0.253-0.175,0.324-0.311\r\n\t\t\t\tc0.035-0.032,0.013-0.032-0.006-0.07c-0.129-0.052-0.288,0.077-0.407,0.045c-0.038-0.023-0.076-0.047-0.114-0.07\r\n\t\t\t\tc-0.019,0.025-0.038,0.051-0.057,0.076c0.019,0.03,0.038,0.059,0.057,0.089c-0.04,0.013-0.08,0.025-0.121,0.038\r\n\t\t\t\tc0.025,0.051,0.051,0.102,0.076,0.152c-0.05,0.002-0.083-0.003-0.127-0.019c-0.039,0.01-0.054,0.039-0.07,0.07\r\n\t\t\t\tc0.027,0.032,0.055,0.064,0.083,0.095c-0.019,0.03-0.061,0.028-0.076,0.051c0.009,0.04,0.017,0.08,0.026,0.121\r\n\t\t\t\tc0,0-0.102,0.182-0.114,0.203C26.262,19.126,26.283,19.136,26.304,19.147z M23.552,15.69c0.122,0.059,0.229,0.003,0.261-0.114\r\n\t\t\t\tc0.002-0.025,0.004-0.051,0.006-0.076c0.061-0.015,0.123-0.03,0.184-0.045c0.041-0.073,0.083-0.252,0.019-0.337\r\n\t\t\t\tc-0.041-0.048-0.155-0.016-0.222-0.038c-0.027-0.017-0.055-0.034-0.083-0.051c-0.016-0.036-0.003-0.092,0.013-0.134\r\n\t\t\t\tc-0.008-0.015-0.017-0.03-0.025-0.045c-0.139-0.061-0.251-0.035-0.311-0.172c-0.039-0.024-0.106-0.033-0.172-0.032v0.159\r\n\t\t\t\tc-0.129,0.091-0.311,0.046-0.483,0.025c0.022,0.049,0.05,0.087,0.044,0.146c-0.091-0.002-0.162-0.057-0.191-0.121\r\n\t\t\t\tc-0.062-0.048-0.149-0.012-0.216,0.038c0.011,0.034,0.021,0.068,0.032,0.102v0.007c-0.017,0.006-0.034,0.013-0.051,0.019\r\n\t\t\t\tc-0.074-0.049-0.145-0.122-0.178-0.21h-0.006c-0.017,0.011-0.034,0.021-0.051,0.032c-0.031,0.052-0.008,0.145-0.006,0.229\r\n\t\t\t\tc-0.045,0.048-0.112,0.04-0.172,0.076c-0.032,0.029-0.064,0.059-0.095,0.089c-0.034-0.049-0.068-0.097-0.102-0.146\r\n\t\t\t\tc-0.02-0.043,0.074-0.098,0.057-0.178c-0.035-0.162-0.262-0.199-0.413-0.241c-0.015,0.017-0.03,0.034-0.044,0.051\r\n\t\t\t\tc-0.004,0.004-0.008,0.008-0.013,0.013c0.042,0.031,0.085,0.071,0.102,0.127v0.006c-0.138,0.096-0.242-0.171-0.324,0.006\r\n\t\t\t\tc0.025,0.034,0.051,0.068,0.076,0.102c0.006,0.006,0.013,0.013,0.019,0.019c-0.08,0.017-0.198,0.021-0.261,0.051\r\n\t\t\t\tc-0.006,0.028-0.008,0.049,0.006,0.07c0.103,0.167,0.277-0.021,0.451,0.007c0.098,0.015,0.167,0.047,0.241,0.076\r\n\t\t\t\tc0.004,0.021,0.009,0.043,0.013,0.064c-0.006,0.019-0.013,0.038-0.019,0.057c-0.108,0.081-0.481,0.067-0.534,0.165\r\n\t\t\t\tc-0.002,0.006-0.004,0.013-0.006,0.019c0.008,0.013,0.017,0.025,0.025,0.038c0.081,0.034,0.262-0.022,0.349-0.038\r\n\t\t\t\tc0.073,0.086,0.103,0.124,0.254,0.14c-0.088,0.128-0.197,0.136-0.292,0.235c0.102,0.124,0.465,0.012,0.616,0.07\r\n\t\t\t\tc0.049,0.034,0.097,0.068,0.146,0.102c0.079,0.046,0.211,0.06,0.311,0.076c0.267,0.044,0.261-0.127,0.369-0.172\r\n\t\t\t\tc0.102-0.013,0.203-0.025,0.305-0.038C23.322,15.873,23.442,15.767,23.552,15.69z M25.078,20.894\r\n\t\t\t\tc-0.023,0.009-0.047,0.017-0.07,0.026c-0.007,0.033,0.006,0.053,0.013,0.089c0.036-0.004,0.072-0.008,0.108-0.013\r\n\t\t\t\tc0.017,0.048,0.015,0.085,0.013,0.146c0.12-0.007,0.193-0.047,0.273-0.07c0.034-0.002,0.068-0.004,0.102-0.006\r\n\t\t\t\tc0.076-0.055,0.153-0.11,0.229-0.165c0.074-0.007,0.148-0.013,0.222-0.019c0.008-0.013,0.017-0.025,0.025-0.038\r\n\t\t\t\tc0.049-0.002,0.097-0.004,0.146-0.006c0.016-0.107,0.079-0.154,0.102-0.229c0.037-0.123-0.067-0.364-0.121-0.439\r\n\t\t\t\tc0.126-0.037,0.169-0.056,0.229-0.159c-0.018-0.123-0.068-0.218-0.102-0.324c-0.094-0.067-0.283-0.037-0.4,0.013\r\n\t\t\t\tc-0.064-0.001-0.088-0.026-0.102-0.076c-0.149,0.013-0.194,0.075-0.229,0.203c-0.025,0.006-0.051,0.013-0.076,0.019\r\n\t\t\t\tc-0.006,0.009-0.013,0.017-0.019,0.025h0.184c-0.025,0.064-0.066,0.089-0.133,0.108c-0.001,0.021,0.008,0.04,0.019,0.063\r\n\t\t\t\tc-0.128-0.01-0.273-0.013-0.375-0.051c-0.045,0.036-0.065,0.068-0.083,0.134v0.038c0.057-0.015,0.088-0.022,0.127,0.013h0.013\r\n\t\t\t\tc-0.037,0.042-0.05,0.035-0.038,0.102c-0.03,0.006-0.059,0.013-0.089,0.019c0.008,0.009,0.017,0.017,0.025,0.025\r\n\t\t\t\tc-0.013,0.017-0.025,0.034-0.038,0.051c0.051,0.024,0.293,0.068,0.343,0.038c0.006,0.017,0.013,0.034,0.019,0.051\r\n\t\t\t\tc-0.083,0.035-0.129,0.014-0.165,0.095c-0.008,0.022-0.004,0.012,0.013,0.038c-0.013,0.019-0.025,0.038-0.038,0.057\r\n\t\t\t\tc-0.004,0.004-0.008,0.008-0.013,0.013c0.047-0.006,0.093-0.013,0.14-0.019c-0.018,0.068-0.092,0.065-0.159,0.076\r\n\t\t\t\tc-0.021,0.026-0.02,0.078-0.044,0.102c-0.032,0.024-0.13,0.015-0.184,0.013c-0.002,0.015-0.004,0.03-0.006,0.044\r\n\t\t\t\tc0.047,0.002,0.093,0.004,0.14,0.006L25.078,20.894L25.078,20.894z M26.336,19.465c-0.008,0.048-0.009,0.074,0,0.121\r\n\t\t\t\tc0.011,0.002,0.021,0.004,0.032,0.006c0.011-0.013,0.021-0.025,0.032-0.038c-0.004-0.034-0.009-0.068-0.013-0.102\r\n\t\t\t\tC26.37,19.456,26.353,19.46,26.336,19.465z M37.611,27.116c0.022-0.013,0.016-0.005,0.019-0.038\r\n\t\t\t\tc0.146-0.004,0.169-0.092,0.292-0.102c-0.015-0.019-0.029-0.038-0.045-0.057c0.053-0.068,0.135-0.101,0.191-0.165\r\n\t\t\t\tc-0.101,0.036-0.199,0.072-0.299,0.108c-0.06-0.006-0.119-0.013-0.179-0.019c0.011,0.023,0.013,0.039,0,0.064\r\n\t\t\t\tc-0.006,0.006-0.171,0.045-0.184,0.045c0.012,0.053,0.028,0.071,0.045,0.114C37.497,27.08,37.576,27.089,37.611,27.116z\r\n\t\t\t\t M8.363,28.654h0.006c-0.002-0.006-0.004-0.013-0.006-0.019V28.654z M14.54,13.788c0.035-0.025,0.102-0.125,0.045-0.175\r\n\t\t\t\tc-0.059,0.063-0.171,0.08-0.068,0.171C14.525,13.786,14.532,13.787,14.54,13.788z M8.375,28.698h0.006\r\n\t\t\t\tc-0.004-0.015-0.008-0.029-0.013-0.044C8.371,28.668,8.373,28.683,8.375,28.698z M8.433,28.838\r\n\t\t\t\tc0.006,0.004,0.013,0.008,0.019,0.013c-0.023-0.051-0.047-0.102-0.07-0.153C8.389,28.761,8.414,28.792,8.433,28.838z\r\n\t\t\t\t M21.4,11.563c-0.005,0-0.01,0.001-0.015,0.001c-0.058,0.053-0.117,0.105-0.175,0.158c-0.053,0.024-0.106,0.048-0.158,0.072\r\n\t\t\t\tc-0.038,0.029-0.035,0.1-0.05,0.136c-0.008,0.019-0.056,0.102-0.048,0.112c0.02,0.01,0.135-0.027,0.152-0.034\r\n\t\t\t\tc0.041-0.017,0.077-0.038,0.104-0.06c0.011-0.01,0.021-0.021,0.032-0.031c0.029-0.01,0.059-0.019,0.088-0.029\r\n\t\t\t\tc0.028-0.025,0.056-0.049,0.084-0.074c0.003-0.003,0.007-0.007,0.01-0.01c0.014,0.009,0.038,0.018,0.063,0.008\r\n\t\t\t\tc0.047-0.026,0.042-0.069,0.098-0.095C21.602,11.666,21.437,11.588,21.4,11.563z M21.72,10.584c0.002,0,0.003-0.001,0.005-0.001\r\n\t\t\t\tc-0.005-0.006-0.009-0.013-0.014-0.019c-0.016,0.002-0.032,0.005-0.048,0.007c-0.148-0.003-0.224-0.095-0.411-0.061\r\n\t\t\t\tc-0.054,0.025-0.235,0.062-0.254,0.094c-0.029,0.048,0.077,0.08,0.116,0.089c0.134,0.033,0.307,0.006,0.465,0.018\r\n\t\t\t\tc0.029,0.002,0.079,0.007,0.099,0.019c0.015,0.009,0.022,0.026,0.042,0.03c0.032,0.001,0.089-0.042,0.103-0.056\r\n\t\t\t\tc0.001-0.001,0.003-0.002,0.004-0.003c-0.082-0.021-0.2-0.02-0.258-0.064C21.619,10.62,21.669,10.602,21.72,10.584z\r\n\t\t\t\t M14.242,41.547c0.147,0.036,0.426-0.012,0.508-0.107c0.048-0.057,0.064-0.207,0.095-0.268c-0.057-0.054-0.445-0.061-0.591-0.057\r\n\t\t\t\tC14.175,41.239,14.197,41.443,14.242,41.547z M10.822,34.354c0.015,0.039,0.009,0.092,0.013,0.135\r\n\t\t\t\tc0.086,0.021,0.114-0.016,0.203-0.02c0.117-0.003,0.196,0.036,0.216-0.095c-0.077-0.062-0.285-0.049-0.4-0.051\r\n\t\t\t\tC10.843,34.333,10.833,34.343,10.822,34.354z M12.735,25.375c-0.017-0.011-0.034-0.021-0.051-0.032\r\n\t\t\t\tc-0.011-0.1,0.084-0.092,0.133-0.146c0.043-0.048,0.06-0.154,0.095-0.203c-0.04-0.027-0.081-0.055-0.121-0.083\r\n\t\t\t\tc-0.045,0.101-0.251,0.268-0.216,0.413c0.05,0.208,0.421,0.141,0.47-0.025C12.9,25.097,12.854,25.337,12.735,25.375z\r\n\t\t\t\t M10.93,37.912c-0.004,0.006-0.008,0.013-0.013,0.02c0.044,0.002,0.042,0.01,0.063,0.031c-0.012,0.031-0.012,0.051,0,0.083\r\n\t\t\t\tc-0.034,0.015-0.068,0.03-0.102,0.044c-0.004,0.006-0.009,0.014-0.013,0.02v0.007c0.085,0,0.174-0.005,0.242-0.013\r\n\t\t\t\tc0.02-0.082-0.008-0.158,0.032-0.217v-0.006h-0.038C11.059,37.904,10.99,37.913,10.93,37.912z M10.015,33.979\r\n\t\t\t\tc-0.092-0.017-0.212,0.006-0.261-0.082c-0.045,0.004-0.062,0.022-0.089,0.031c-0.04-0.004-0.081-0.008-0.121-0.013\r\n\t\t\t\tc-0.04,0.009-0.059,0.049-0.127,0.038c-0.109-0.018-0.194-0.057-0.324-0.057C9.066,33.9,9.038,33.904,9.01,33.909\r\n\t\t\t\tc-0.006,0.008-0.013,0.017-0.019,0.026v0.024c0.064,0.033,0.195,0.03,0.229,0.095c0.046,0.078-0.076,0.146,0.095,0.211\r\n\t\t\t\tc0.004,0.006,0.008,0.012,0.013,0.019c-0.128,0.082-0.41,0.036-0.572-0.013c-0.013,0.015-0.025,0.029-0.038,0.045\r\n\t\t\t\tc-0.002,0.004-0.004,0.008-0.006,0.013c0.034,0.065,0.099,0.077,0.152,0.121c0.05-0.013,0.053-0.048,0.102-0.058\r\n\t\t\t\tc0.076,0.012,0.153,0.021,0.229,0.032c0.078-0.006,0.157-0.013,0.235-0.019c0.048,0.048,0.109,0.15,0.178,0.172\r\n\t\t\t\tc0.044-0.114,0.093-0.196,0.203-0.248c0.021,0.023,0.042,0.047,0.064,0.07c0.075,0.033,0.112-0.061,0.178-0.076\r\n\t\t\t\tc0.044-0.012,0.074,0.012,0.095,0.019c0.129-0.06,0.183,0.046,0.248,0.083c0.039-0.029,0.062-0.074,0.089-0.113\r\n\t\t\t\tC10.38,34.159,10.076,34.16,10.015,33.979z M7.581,34.385c0.019,0.027,0.251,0.17,0.311,0.153\r\n\t\t\t\tc0.044-0.013,0.058-0.078,0.14-0.058c0.051,0.014,0.064,0.041,0.127,0.039c0.002-0.012,0.004-0.021,0.006-0.033\r\n\t\t\t\tc-0.073-0.109-0.33-0.157-0.515-0.152C7.628,34.352,7.604,34.368,7.581,34.385z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.globe = globe; \ No newline at end of file diff --git a/dist/ikons/google_plus.js b/dist/ikons/google_plus.js new file mode 100644 index 000000000..46945a976 --- /dev/null +++ b/dist/ikons/google_plus.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.google_plus = void 0; +var google_plus = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "google_plus_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "google_plus" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "google_plus" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M35.471,4.995c0,0-12.66,0-16.879,0C11.023,4.995,3.9,10.999,3.9,17.522c0,6.666,5.158,12.23,12.857,12.23\r\n\t\t\t\tc0.535,0,1.055,0.083,1.565,0.046c-0.498,0.94-0.855,2.045-0.855,3.142c0,1.854,1.014,3.379,2.297,4.604\r\n\t\t\t\tc-0.969,0-1.904,0.04-2.926,0.04C7.465,37.584,0,43.452,0,49.533c0,5.986,8.158,10.472,17.533,10.472\r\n\t\t\t\tc10.686,0,16.463-6.688,16.463-12.678c0-4.8-1.318-7.675-5.777-10.772c-1.525-1.06-4.443-3.642-4.443-5.157\r\n\t\t\t\tc0-1.776,0.518-2.653,3.24-4.742c2.791-2.143,4.955-4.903,4.955-8.407c0-4.17-2.08-7.36-5.629-9.325h5.352L35.471,4.995z\r\n\t\t\t\t M29.574,46.295c0.133,0.557,0.207,1.128,0.207,1.711c0,4.838-3.176,8.128-12.283,8.128c-6.478,0-11.158-3.536-11.158-8.375\r\n\t\t\t\tc0-4.741,5.805-8.69,12.283-8.622c1.512,0.018,2.92,0.256,4.199,0.664C26.34,42.201,28.862,43.559,29.574,46.295z M19.201,28.248\r\n\t\t\t\tc-4.349-0.126-8.482-4.778-9.232-10.387c-0.752-5.609,2.164-9.9,6.512-9.773c4.349,0.127,8.67,4.629,9.422,10.236\r\n\t\t\t\tC26.652,23.934,23.547,28.377,19.201,28.248z M54,14.817v-9.76h-4v9.76H40v3.99h10v9.76h4v-9.76h10v-3.99H54L54,14.817z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M35.471,4.995c0,0-12.66,0-16.879,0C11.023,4.995,3.9,10.999,3.9,17.522c0,6.666,5.158,12.23,12.857,12.23\r\n\t\t\t\tc0.535,0,1.055,0.083,1.565,0.046c-0.498,0.94-0.855,2.045-0.855,3.142c0,1.854,1.014,3.379,2.297,4.604\r\n\t\t\t\tc-0.969,0-1.904,0.04-2.926,0.04C7.465,37.584,0,43.452,0,49.533c0,5.986,8.158,10.472,17.533,10.472\r\n\t\t\t\tc10.686,0,16.463-6.688,16.463-12.678c0-4.8-1.318-7.675-5.777-10.772c-1.525-1.06-4.443-3.642-4.443-5.157\r\n\t\t\t\tc0-1.776,0.518-2.653,3.24-4.742c2.791-2.143,4.955-4.903,4.955-8.407c0-4.17-2.08-7.36-5.629-9.325h5.352L35.471,4.995z\r\n\t\t\t\t M29.574,46.295c0.133,0.557,0.207,1.128,0.207,1.711c0,4.838-3.176,8.128-12.283,8.128c-6.478,0-11.158-3.536-11.158-8.375\r\n\t\t\t\tc0-4.741,5.805-8.69,12.283-8.622c1.512,0.018,2.92,0.256,4.199,0.664C26.34,42.201,28.862,43.559,29.574,46.295z M19.201,28.248\r\n\t\t\t\tc-4.349-0.126-8.482-4.778-9.232-10.387c-0.752-5.609,2.164-9.9,6.512-9.773c4.349,0.127,8.67,4.629,9.422,10.236\r\n\t\t\t\tC26.652,23.934,23.547,28.377,19.201,28.248z M54,14.817v-9.76h-4v9.76H40v3.99h10v9.76h4v-9.76h10v-3.99H54L54,14.817z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.google_plus = google_plus; \ No newline at end of file diff --git a/dist/ikons/graph_fall.js b/dist/ikons/graph_fall.js new file mode 100644 index 000000000..3b18648b8 --- /dev/null +++ b/dist/ikons/graph_fall.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.graph_fall = void 0; +var graph_fall = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "GRAPH_FALL" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M61,30c-1.657,0-3,1.343-3,3v4.757L43.086,22.843v0l-5.965-5.965\r\n\t\t\tC36.578,16.336,35.828,16,35,16s-1.578,0.336-2.121,0.879L19,30.758L5.121,16.879C4.578,16.336,3.828,16,3,16\r\n\t\t\tc-1.657,0-3,1.343-3,3c0,0.828,0.336,1.579,0.879,2.121l16,16C17.422,37.664,18.172,38,19,38c0.828,0,1.578-0.336,2.121-0.879\r\n\t\t\tL35,23.243l3.843,3.843l0.298,0.298l1.738,1.738L53.757,42H49c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3\r\n\t\t\tV33C64,31.343,62.657,30,61,30z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M61,30c-1.657,0-3,1.343-3,3v4.757L43.086,22.843v0l-5.965-5.965\r\n\t\t\tC36.578,16.336,35.828,16,35,16s-1.578,0.336-2.121,0.879L19,30.758L5.121,16.879C4.578,16.336,3.828,16,3,16\r\n\t\t\tc-1.657,0-3,1.343-3,3c0,0.828,0.336,1.579,0.879,2.121l16,16C17.422,37.664,18.172,38,19,38c0.828,0,1.578-0.336,2.121-0.879\r\n\t\t\tL35,23.243l3.843,3.843l0.298,0.298l1.738,1.738L53.757,42H49c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3\r\n\t\t\tV33C64,31.343,62.657,30,61,30z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.graph_fall = graph_fall; \ No newline at end of file diff --git a/dist/ikons/graph_rise.js b/dist/ikons/graph_rise.js new file mode 100644 index 000000000..612a9169e --- /dev/null +++ b/dist/ikons/graph_rise.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.graph_rise = void 0; +var graph_rise = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "GRAPH_RISE" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M61,16H49c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h4.757L40.879,34.879\r\n\t\t\tl-1.738,1.738l-0.298,0.298L35,40.758L21.121,26.879C20.578,26.336,19.829,26,19,26c-0.828,0-1.578,0.336-2.121,0.879l-16,16\r\n\t\t\tC0.336,43.422,0,44.172,0,45c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L19,33.243l13.879,13.879\r\n\t\t\tC33.422,47.664,34.172,48,35,48c0.828,0,1.578-0.336,2.121-0.879l5.964-5.965h0L58,26.243V31c0,1.657,1.343,3,3,3\r\n\t\t\tc1.657,0,3-1.343,3-3V19C64,17.343,62.657,16,61,16z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M61,16H49c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h4.757L40.879,34.879\r\n\t\t\tl-1.738,1.738l-0.298,0.298L35,40.758L21.121,26.879C20.578,26.336,19.829,26,19,26c-0.828,0-1.578,0.336-2.121,0.879l-16,16\r\n\t\t\tC0.336,43.422,0,44.172,0,45c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L19,33.243l13.879,13.879\r\n\t\t\tC33.422,47.664,34.172,48,35,48c0.828,0,1.578-0.336,2.121-0.879l5.964-5.965h0L58,26.243V31c0,1.657,1.343,3,3,3\r\n\t\t\tc1.657,0,3-1.343,3-3V19C64,17.343,62.657,16,61,16z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.graph_rise = graph_rise; \ No newline at end of file diff --git a/dist/ikons/grid_1.js b/dist/ikons/grid_1.js new file mode 100644 index 000000000..447c8ae8b --- /dev/null +++ b/dist/ikons/grid_1.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.grid_1 = void 0; +var grid_1 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "GRID_1_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "GRID_1" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "GRID_1" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M58,35H38c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V38C61,36.343,59.657,35,58,35z M55,55H41\r\n\t\t\t\tV41h14V55z M26,35H6c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V38C29,36.343,27.657,35,26,35z M23,55\r\n\t\t\t\tH9V41h14V55z M58,3H38c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V6C61,4.343,59.657,3,58,3z M55,23H41\r\n\t\t\t\tV9h14V23z M26,3H6C4.343,3,3,4.343,3,6v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V6C29,4.343,27.657,3,26,3z M23,23H9V9h14\r\n\t\t\t\tV23z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M58,35H38c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V38C61,36.343,59.657,35,58,35z M55,55H41\r\n\t\t\t\tV41h14V55z M26,35H6c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V38C29,36.343,27.657,35,26,35z M23,55\r\n\t\t\t\tH9V41h14V55z M58,3H38c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V6C61,4.343,59.657,3,58,3z M55,23H41\r\n\t\t\t\tV9h14V23z M26,3H6C4.343,3,3,4.343,3,6v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V6C29,4.343,27.657,3,26,3z M23,23H9V9h14\r\n\t\t\t\tV23z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.grid_1 = grid_1; \ No newline at end of file diff --git a/dist/ikons/grid_2.js b/dist/ikons/grid_2.js new file mode 100644 index 000000000..a25594eea --- /dev/null +++ b/dist/ikons/grid_2.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.grid_2 = void 0; +var grid_2 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "GRID_2_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "GRID_2" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "GRID_2" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M26,35H6c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V38C29,36.343,27.657,35,26,35z M26,3H6\r\n\t\t\t\tC4.343,3,3,4.343,3,6v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V6C29,4.343,27.657,3,26,3z M58,3H38c-1.657,0-3,1.343-3,3\r\n\t\t\t\tv20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V6C61,4.343,59.657,3,58,3z M58,35H38c-1.657,0-3,1.343-3,3v20\r\n\t\t\t\tc0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V38C61,36.343,59.657,35,58,35z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M26,35H6c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V38C29,36.343,27.657,35,26,35z M26,3H6\r\n\t\t\t\tC4.343,3,3,4.343,3,6v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V6C29,4.343,27.657,3,26,3z M58,3H38c-1.657,0-3,1.343-3,3\r\n\t\t\t\tv20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V6C61,4.343,59.657,3,58,3z M58,35H38c-1.657,0-3,1.343-3,3v20\r\n\t\t\t\tc0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V38C61,36.343,59.657,35,58,35z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.grid_2 = grid_2; \ No newline at end of file diff --git a/dist/ikons/hashtag.js b/dist/ikons/hashtag.js new file mode 100644 index 000000000..3d6160b36 --- /dev/null +++ b/dist/ikons/hashtag.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.hashtag = void 0; +var hashtag = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "HASHTAG_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "HASHTAG" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "HASHTAG" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M58,18h-8.689l2.613-11.325l0,0C51.973,6.458,52,6.232,52,6c0-1.657-1.343-3-3-3c-1.425,0-2.617,0.994-2.923,2.326l0,0\r\n\t\t\t\tL43.152,18H27.31l2.614-11.325l0,0C29.973,6.458,30,6.232,30,6c0-1.657-1.343-3-3-3c-1.425,0-2.617,0.994-2.923,2.326l0,0\r\n\t\t\t\tL21.152,18H12c-1.657,0-3,1.343-3,3s1.343,3,3,3h7.767l-3.692,16H6c-1.657,0-3,1.343-3,3s1.343,3,3,3h8.69l-2.613,11.325l0,0\r\n\t\t\t\tC12.027,57.542,12,57.768,12,58c0,1.657,1.343,3,3,3c1.425,0,2.617-0.994,2.923-2.326l0,0L20.848,46h15.841l-2.613,11.325l0,0\r\n\t\t\t\tC34.027,57.542,34,57.768,34,58c0,1.657,1.343,3,3,3c1.425,0,2.617-0.994,2.923-2.326l0,0L42.848,46H52c1.657,0,3-1.343,3-3\r\n\t\t\t\ts-1.343-3-3-3h-7.768l3.692-16H58c1.657,0,3-1.343,3-3S59.657,18,58,18z M38.075,40H22.233l3.692-16h15.843L38.075,40z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M58,18h-8.689l2.613-11.325l0,0C51.973,6.458,52,6.232,52,6c0-1.657-1.343-3-3-3c-1.425,0-2.617,0.994-2.923,2.326l0,0\r\n\t\t\t\tL43.152,18H27.31l2.614-11.325l0,0C29.973,6.458,30,6.232,30,6c0-1.657-1.343-3-3-3c-1.425,0-2.617,0.994-2.923,2.326l0,0\r\n\t\t\t\tL21.152,18H12c-1.657,0-3,1.343-3,3s1.343,3,3,3h7.767l-3.692,16H6c-1.657,0-3,1.343-3,3s1.343,3,3,3h8.69l-2.613,11.325l0,0\r\n\t\t\t\tC12.027,57.542,12,57.768,12,58c0,1.657,1.343,3,3,3c1.425,0,2.617-0.994,2.923-2.326l0,0L20.848,46h15.841l-2.613,11.325l0,0\r\n\t\t\t\tC34.027,57.542,34,57.768,34,58c0,1.657,1.343,3,3,3c1.425,0,2.617-0.994,2.923-2.326l0,0L42.848,46H52c1.657,0,3-1.343,3-3\r\n\t\t\t\ts-1.343-3-3-3h-7.768l3.692-16H58c1.657,0,3-1.343,3-3S59.657,18,58,18z M38.075,40H22.233l3.692-16h15.843L38.075,40z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.hashtag = hashtag; \ No newline at end of file diff --git a/dist/ikons/heart.js b/dist/ikons/heart.js new file mode 100644 index 000000000..a16251783 --- /dev/null +++ b/dist/ikons/heart.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.heart = void 0; +var heart = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "HEART_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "HEART" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "HEART" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M58.729,9.272C55.328,5.873,50.809,4,46,4s-8.662,1.727-12.061,5.126c-0.002,0.002-0.004,0.003-0.006,0.005l-0.002,0.001\r\n\t\t\t\tL32,11.565l-1.932-2.286c-0.002-0.002-0.004-0.004-0.006-0.006c0,0-0.001,0-0.001-0.001C26.661,5.873,22.808,4,18,4\r\n\t\t\t\tS8.672,5.873,5.272,9.272C1.872,12.672,0,17.192,0,22c0,4.806,1.87,9.323,5.266,12.723L29.16,58.816\r\n\t\t\t\tC29.911,59.574,30.933,60,32,60c1.066,0,2.089-0.426,2.84-1.184l23.893-24.092C62.129,31.325,64,26.806,64,22\r\n\t\t\t\tC64,17.192,62.128,12.672,58.729,9.272z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M58.729,9.272C55.328,5.873,50.809,4,46,4s-8.662,1.727-12.061,5.126c-0.002,0.002-0.004,0.003-0.006,0.005l-0.002,0.001\r\n\t\t\t\tL32,11.565l-1.932-2.286c-0.002-0.002-0.004-0.004-0.006-0.006c0,0-0.001,0-0.001-0.001C26.661,5.873,22.808,4,18,4\r\n\t\t\t\tS8.672,5.873,5.272,9.272C1.872,12.672,0,17.192,0,22c0,4.806,1.87,9.323,5.266,12.723L29.16,58.816\r\n\t\t\t\tC29.911,59.574,30.933,60,32,60c1.066,0,2.089-0.426,2.84-1.184l23.893-24.092C62.129,31.325,64,26.806,64,22\r\n\t\t\t\tC64,17.192,62.128,12.672,58.729,9.272z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.heart = heart; \ No newline at end of file diff --git a/dist/ikons/home.js b/dist/ikons/home.js new file mode 100644 index 000000000..e2edea6fd --- /dev/null +++ b/dist/ikons/home.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.home = void 0; +var home = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "HOME_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "HOME" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "HOME" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M6,39v21c0,1.657,1.343,3,3,3h28V39h12v24h6c1.657,0,3-1.343,3-3V39L32,13L6,39z M27,51H15V39h12V51z M63.189,31.96\r\n\t\t\t\tl0.006-0.007L52,20.757V12c0-1.657-1.343-3-3-3s-3,1.343-3,3v2.757L34.195,2.953l-0.002,0.002\r\n\t\t\t\tc-0.478-0.512-1.131-0.857-1.865-0.937c-0.003,0-0.006-0.001-0.009-0.001c-0.045-0.005-0.09-0.008-0.135-0.011\r\n\t\t\t\tc-0.008,0-0.017-0.001-0.025-0.002C32.107,2.002,32.054,2,32.001,2H32c-0.85,0-1.616,0.354-2.162,0.922L0.922,31.838\r\n\t\t\t\tC0.354,32.384,0,33.15,0,34c0,1.657,1.343,3,3,3c0.821,0,1.565-0.33,2.106-0.864l0.001,0.001L32,9.245v0.001l0.077,0.072V9.32\r\n\t\t\t\tl26.877,26.877l0.007-0.008C59.496,36.688,60.21,37,61,37c1.657,0,3-1.343,3-3C64,33.21,63.688,32.496,63.189,31.96z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M6,39v21c0,1.657,1.343,3,3,3h28V39h12v24h6c1.657,0,3-1.343,3-3V39L32,13L6,39z M27,51H15V39h12V51z M63.189,31.96\r\n\t\t\t\tl0.006-0.007L52,20.757V12c0-1.657-1.343-3-3-3s-3,1.343-3,3v2.757L34.195,2.953l-0.002,0.002\r\n\t\t\t\tc-0.478-0.512-1.131-0.857-1.865-0.937c-0.003,0-0.006-0.001-0.009-0.001c-0.045-0.005-0.09-0.008-0.135-0.011\r\n\t\t\t\tc-0.008,0-0.017-0.001-0.025-0.002C32.107,2.002,32.054,2,32.001,2H32c-0.85,0-1.616,0.354-2.162,0.922L0.922,31.838\r\n\t\t\t\tC0.354,32.384,0,33.15,0,34c0,1.657,1.343,3,3,3c0.821,0,1.565-0.33,2.106-0.864l0.001,0.001L32,9.245v0.001l0.077,0.072V9.32\r\n\t\t\t\tl26.877,26.877l0.007-0.008C59.496,36.688,60.21,37,61,37c1.657,0,3-1.343,3-3C64,33.21,63.688,32.496,63.189,31.96z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.home = home; \ No newline at end of file diff --git a/dist/ikons/imac.js b/dist/ikons/imac.js new file mode 100644 index 000000000..8daf141ba --- /dev/null +++ b/dist/ikons/imac.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.imac = void 0; +var imac = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "IMAC_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "IMAC" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "IMAC" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M60,4H4C2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC63,5.343,61.657,4,60,4z M59,42H5V8h54V42z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M60,4H4C2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC63,5.343,61.657,4,60,4z M59,42H5V8h54V42z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.imac = imac; \ No newline at end of file diff --git a/dist/ikons/image.js b/dist/ikons/image.js new file mode 100644 index 000000000..e04cce78e --- /dev/null +++ b/dist/ikons/image.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.image = void 0; +var image = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "IMAGE_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "IMAGE" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "IMAGE" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M40,15L40,15h9v9c0,1.657,1.343,3,3,3s3-1.343,3-3l0,0V13l0,0V9H40c-1.657,0-3,1.343-3,3S38.343,15,40,15z M40,55h15v-4\r\n\t\t\t\tl0,0V40l0,0c0-1.657-1.343-3-3-3s-3,1.343-3,3v9h-9l0,0c-1.657,0-3,1.343-3,3S38.343,55,40,55z M61,0H3C1.343,0,0,1.343,0,3v58\r\n\t\t\t\tc0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58z M24,55c1.657,0,3-1.343,3-3\r\n\t\t\t\ts-1.343-3-3-3l0,0h-9v-9l0,0c0-1.657-1.343-3-3-3s-3,1.343-3,3l0,0v11l0,0v4H24L24,55z M9,24c0,1.657,1.343,3,3,3s3-1.343,3-3\r\n\t\t\t\tl0,0v-9h9l0,0c1.657,0,3-1.343,3-3s-1.343-3-3-3l0,0H9v4l0,0V24L9,24z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M40,15L40,15h9v9c0,1.657,1.343,3,3,3s3-1.343,3-3l0,0V13l0,0V9H40c-1.657,0-3,1.343-3,3S38.343,15,40,15z M40,55h15v-4\r\n\t\t\t\tl0,0V40l0,0c0-1.657-1.343-3-3-3s-3,1.343-3,3v9h-9l0,0c-1.657,0-3,1.343-3,3S38.343,55,40,55z M61,0H3C1.343,0,0,1.343,0,3v58\r\n\t\t\t\tc0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58z M24,55c1.657,0,3-1.343,3-3\r\n\t\t\t\ts-1.343-3-3-3l0,0h-9v-9l0,0c0-1.657-1.343-3-3-3s-3,1.343-3,3l0,0v11l0,0v4H24L24,55z M9,24c0,1.657,1.343,3,3,3s3-1.343,3-3\r\n\t\t\t\tl0,0v-9h9l0,0c1.657,0,3-1.343,3-3s-1.343-3-3-3l0,0H9v4l0,0V24L9,24z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.image = image; \ No newline at end of file diff --git a/dist/ikons/inbox.js b/dist/ikons/inbox.js new file mode 100644 index 000000000..e06713757 --- /dev/null +++ b/dist/ikons/inbox.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.inbox = void 0; +var inbox = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "INBOX_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "INBOX" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "INBOX" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M63.796,31.935l0.007-0.003l-8-21l-0.007,0.003C55.366,9.806,54.279,9,53,9H11c-1.28,0-2.365,0.806-2.796,1.935\r\n\t\t\t\tl-0.007-0.003l-8,21l0.007,0.003C0.077,32.267,0,32.624,0,33v19c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V33\r\n\t\t\t\tC64,32.624,63.923,32.267,63.796,31.935z M47,30c-1.657,0-3,1.343-3,3v3H20v-3c0-1.657-1.343-3-3-3H7.353l5.714-15h37.865\r\n\t\t\t\tl5.715,15H47z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M63.796,31.935l0.007-0.003l-8-21l-0.007,0.003C55.366,9.806,54.279,9,53,9H11c-1.28,0-2.365,0.806-2.796,1.935\r\n\t\t\t\tl-0.007-0.003l-8,21l0.007,0.003C0.077,32.267,0,32.624,0,33v19c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V33\r\n\t\t\t\tC64,32.624,63.923,32.267,63.796,31.935z M47,30c-1.657,0-3,1.343-3,3v3H20v-3c0-1.657-1.343-3-3-3H7.353l5.714-15h37.865\r\n\t\t\t\tl5.715,15H47z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.inbox = inbox; \ No newline at end of file diff --git a/dist/ikons/inbox_in.js b/dist/ikons/inbox_in.js new file mode 100644 index 000000000..a1c7dc36a --- /dev/null +++ b/dist/ikons/inbox_in.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.inbox_in = void 0; +var inbox_in = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "INBOX__x2F__IN_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "INBOX__x2F__IN" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "INBOX__x2F__IN" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,27c0,0.828,0.336,1.578,0.879,2.121l7,7C30.422,36.664,31.172,37,32,37s1.578-0.336,2.121-0.879l7-7\r\n\t\t\t\tC41.664,28.579,42,27.828,42,27c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L35,26.758V8c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v18.757l-1.879-1.879C26.578,24.336,25.829,24,25,24C23.343,24,22,25.343,22,27z M63.8,36.924l-7.978-20.941\r\n\t\t\t\tC55.406,14.827,54.3,14,53,14H38v6h12.932l5.715,15H47c-1.657,0-3,1.343-3,3v3H20v-3c0-1.657-1.343-3-3-3H7.353l5.714-15H26v-6\r\n\t\t\t\tH11c-1.3,0-2.406,0.827-2.823,1.982L0.2,36.924C0.071,37.258,0,37.621,0,38v19c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V38\r\n\t\t\t\tC64,37.621,63.93,37.258,63.8,36.924z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,27c0,0.828,0.336,1.578,0.879,2.121l7,7C30.422,36.664,31.172,37,32,37s1.578-0.336,2.121-0.879l7-7\r\n\t\t\t\tC41.664,28.579,42,27.828,42,27c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L35,26.758V8c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v18.757l-1.879-1.879C26.578,24.336,25.829,24,25,24C23.343,24,22,25.343,22,27z M63.8,36.924l-7.978-20.941\r\n\t\t\t\tC55.406,14.827,54.3,14,53,14H38v6h12.932l5.715,15H47c-1.657,0-3,1.343-3,3v3H20v-3c0-1.657-1.343-3-3-3H7.353l5.714-15H26v-6\r\n\t\t\t\tH11c-1.3,0-2.406,0.827-2.823,1.982L0.2,36.924C0.071,37.258,0,37.621,0,38v19c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V38\r\n\t\t\t\tC64,37.621,63.93,37.258,63.8,36.924z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.inbox_in = inbox_in; \ No newline at end of file diff --git a/dist/ikons/inbox_out.js b/dist/ikons/inbox_out.js new file mode 100644 index 000000000..0f5939572 --- /dev/null +++ b/dist/ikons/inbox_out.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.inbox_out = void 0; +var inbox_out = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "INBOX__x2F__OUT_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "INBOX__x2F__OUT" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "INBOX__x2F__OUT" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M25,18c0.828,0,1.578-0.336,2.121-0.879L29,15.243V34c0,1.657,1.343,3,3,3s3-1.343,3-3V15.243l1.879,1.879\r\n\t\t\t\tC37.422,17.664,38.172,18,39,18c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121l-7-7C33.578,5.336,32.829,5,32,5\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879l-7,7C22.336,13.422,22,14.172,22,15C22,16.657,23.343,18,25,18z M63.8,36.924l-7.978-20.941\r\n\t\t\t\tC55.406,14.827,54.3,14,53,14h-8.102C44.954,14.327,45,14.658,45,15c0,2.09-1.07,3.926-2.691,5h8.623l5.715,15H47\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v3H20v-3c0-1.657-1.343-3-3-3H7.353l5.714-15h8.623C20.071,18.926,19,17.09,19,15\r\n\t\t\t\tc0-0.342,0.046-0.673,0.101-1H11l0,0c-1.3,0-2.406,0.827-2.823,1.982L0.2,36.924C0.071,37.258,0,37.621,0,38v19\r\n\t\t\t\tc0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V38C64,37.621,63.93,37.258,63.8,36.924z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M25,18c0.828,0,1.578-0.336,2.121-0.879L29,15.243V34c0,1.657,1.343,3,3,3s3-1.343,3-3V15.243l1.879,1.879\r\n\t\t\t\tC37.422,17.664,38.172,18,39,18c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121l-7-7C33.578,5.336,32.829,5,32,5\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879l-7,7C22.336,13.422,22,14.172,22,15C22,16.657,23.343,18,25,18z M63.8,36.924l-7.978-20.941\r\n\t\t\t\tC55.406,14.827,54.3,14,53,14h-8.102C44.954,14.327,45,14.658,45,15c0,2.09-1.07,3.926-2.691,5h8.623l5.715,15H47\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v3H20v-3c0-1.657-1.343-3-3-3H7.353l5.714-15h8.623C20.071,18.926,19,17.09,19,15\r\n\t\t\t\tc0-0.342,0.046-0.673,0.101-1H11l0,0c-1.3,0-2.406,0.827-2.823,1.982L0.2,36.924C0.071,37.258,0,37.621,0,38v19\r\n\t\t\t\tc0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V38C64,37.621,63.93,37.258,63.8,36.924z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.inbox_out = inbox_out; \ No newline at end of file diff --git a/dist/ikons/index.js b/dist/ikons/index.js new file mode 100644 index 000000000..c28ff3c23 --- /dev/null +++ b/dist/ikons/index.js @@ -0,0 +1 @@ +"use strict";Object.defineProperty(exports,"__esModule",{value:true});exports.crop=exports.credit_card=exports.copy_2=exports.copy_1=exports.computer_upload=exports.computer_remove=exports.computer_ok=exports.computer_download=exports.computer_delete=exports.computer_add=exports.compass=exports.command=exports.columns=exports.cog=exports.code=exports.cloud_upload=exports.cloud_ok=exports.cloud_fail=exports.cloud_download=exports.cloud=exports.close=exports.clip=exports.circle_up=exports.circle_stop=exports.circle_skip_previous=exports.circle_skip_next=exports.circle_right=exports.circle_rewind=exports.circle_plus=exports.circle_play=exports.circle_pause=exports.circle_ok=exports.circle_minus=exports.circle_left=exports.circle_fast_forward=exports.circle_down=exports.circle_delete=exports.circle=exports.chart_7_8=exports.chart_5_8=exports.chart_3_8=exports.chart_3_4=exports.chart_1_8=exports.chart_1_4=exports.chart_1_2=exports.chart=exports.cassette=exports.camera=exports.calendar_ok=exports.calendar_add=exports.calendar=exports.bullseye=exports.browser_remove=exports.browser_ok=exports.browser_layout_3=exports.browser_layout_2=exports.browser_layout_1=exports.browser_delete=exports.browser_add=exports.browser=exports.brightness_low=exports.brightness_high=exports.bookmark=exports.book_2=exports.book_1=exports.book=exports.bluetooth=exports.block=exports.bin=exports.bell=exports.behance=exports.battery_full=exports.battery_empty=exports.battery_2_3=exports.battery_1_3=exports.basket_remove=exports.basket_ok=exports.basket_delete=exports.basket_add=exports.basket=exports.bar_graph=exports.bar_chart_3=exports.bar_chart_2=exports.bar_chart_1=exports.arrows_vertical_2=exports.arrows_vertical=exports.arrows_horizontal_2=exports.arrows_horizontal=exports.arrows=exports.arrow_up=exports.arrow_right=exports.arrow_left=exports.arrow_down=exports.arrow_2=exports.arrow_1=exports.appstore=exports.apple=exports.android=exports.alt=exports.alarm=void 0;exports.play=exports.pinterest_2=exports.pinterest_1=exports.pin_zoom_out=exports.pin_zoom_in=exports.pin_2=exports.pin_1=exports.pill=exports.pie_chart=exports.picture=exports.pen_3=exports.pen_2=exports.pen_1=exports.paypal=exports.pause=exports.notepad_remove=exports.notepad_ok=exports.notepad_delete=exports.notepad_add=exports.notepad=exports.music=exports.moustache=exports.more_2=exports.more=exports.minus=exports.microsoft=exports.microphone_off=exports.microphone=exports.map_remove=exports.map_ok=exports.map_delete=exports.map_add=exports.map=exports.mail_outgoing=exports.mail_incoming=exports.mail=exports.magnifying_glass_remove=exports.magnifying_glass_add=exports.magnifying_glass=exports.macbook=exports.logout=exports.login=exports.lock=exports.location=exports.loading=exports.list_2=exports.list=exports.linkedin=exports.link=exports.line_graph_square=exports.line_graph=exports.layers=exports.iphone=exports.ipad=exports.instagram=exports.inbox_out=exports.inbox_in=exports.inbox=exports.image=exports.imac=exports.home=exports.heart=exports.hashtag=exports.grid_2=exports.grid_1=exports.graph_rise=exports.graph_fall=exports.google_plus=exports.globe=exports.frame=exports.foursquare=exports.forrst=exports.font_size_up=exports.font_size_down=exports.following=exports.followers=exports.folder_remove=exports.folder_ok=exports.folder_delete=exports.folder_add=exports.folder=exports.first_aid=exports.fast_forward=exports.facebook_2=exports.facebook_1=exports.equalizer=exports.eject=exports.dropbox=exports.drop=exports.dribbble=exports.download=exports.documents=exports.document_upload=exports.document_remove=exports.document_ok=exports.document_download=exports.document_delete=exports.document_add=exports.documentIcon=exports.diskette=void 0;exports.zoom_out=exports.zoom_in=exports.youtube=exports.windows=exports.wifi_3=exports.wifi_2=exports.wifi_1=exports.warning=exports.volume_up=exports.volume_off=exports.volume_mute=exports.volume_down=exports.volume_3=exports.volume_2=exports.volume_1=exports.voicemail=exports.vimeo=exports.view_off=exports.view=exports.users=exports.user_square=exports.user_remove=exports.user_ok=exports.user_delete=exports.user_circle=exports.user_add=exports.user=exports.upload=exports.unlock=exports.twitter=exports.tumblr=exports.timer=exports.time=exports.tick=exports.text_right=exports.text_left=exports.text_justify=exports.text_center=exports.terminal=exports.target=exports.tags=exports.tag=exports.suitcase=exports.stop=exports.star=exports.square_up=exports.square_right=exports.square_remove=exports.square_ok=exports.square_left=exports.square_down=exports.square_delete=exports.square_dashed=exports.square_add=exports.square=exports.spotify=exports.speech_bubbles=exports.speech_bubble_2=exports.speech_bubble_1=exports.speech_4=exports.speech_3=exports.speech_2=exports.speech_1=exports.slideshow=exports.skype=exports.skip_previous=exports.skip_next=exports.shuffle=exports.shopping_cart_remove=exports.shopping_cart_ok=exports.shopping_cart_delete=exports.shopping_cart_add=exports.shopping_cart=exports.shopping_bag=exports.shop=exports.share_2=exports.share=exports.screen_expand_3=exports.screen_expand_2=exports.screen_expand_1=exports.rss=exports.rewind=exports.resize_6=exports.resize_5=exports.resize_4=exports.resize_3=exports.resize_2=exports.resize_1=exports.repeat_2=exports.repeat_1=exports.repeat=exports.record=exports.progress=exports.printer=exports.presentation=exports.power=exports.polaroids=exports.polaroid=exports.plus=exports.plug=void 0;var alarm={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"ALARM_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ALARM"},"children":[{"name":"g","attribs":{"id":"ALARM"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M44,31h-9V18c0-1.657-1.343-3-3-3s-3,1.343-3,3v16c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3S45.657,31,44,31z\r\n\t\t\t\t M19.412,4.575C17.37,2.967,14.8,2,12,2C5.373,2,0,7.373,0,14c0,2.8,0.967,5.37,2.575,7.412\r\n\t\t\t\tC5.809,13.862,11.862,7.809,19.412,4.575z M52.251,2c-2.742,0-5.258,0.947-7.257,2.521c7.393,3.167,13.318,9.093,16.484,16.485\r\n\t\t\t\tc1.574-2,2.521-4.516,2.521-7.257C64,7.26,58.74,2,52.251,2z M32,5C15.984,5,3,17.984,3,34c0,7.691,3.015,14.664,7.902,19.855\r\n\t\t\t\tl-4.023,4.023C6.336,58.422,6,59.172,6,60c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879l4.327-4.327\r\n\t\t\t\tC20.144,61.066,25.842,63,32,63c6.17,0,11.878-1.941,16.579-5.227l4.356,4.357C53.473,62.668,54.215,63,55.034,63\r\n\t\t\t\tC56.672,63,58,61.672,58,60.034c0-0.819-0.332-1.562-0.869-2.099l-4.056-4.056C57.977,48.688,61,41.704,61,34\r\n\t\t\t\tC61,17.984,48.016,5,32,5z M32,57C19.297,57,9,46.703,9,34s10.297-23,23-23c12.702,0,23,10.297,23,23S44.703,57,32,57z"},"children":[{"name":"path","attribs":{"d":"M44,31h-9V18c0-1.657-1.343-3-3-3s-3,1.343-3,3v16c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3S45.657,31,44,31z\r\n\t\t\t\t M19.412,4.575C17.37,2.967,14.8,2,12,2C5.373,2,0,7.373,0,14c0,2.8,0.967,5.37,2.575,7.412\r\n\t\t\t\tC5.809,13.862,11.862,7.809,19.412,4.575z M52.251,2c-2.742,0-5.258,0.947-7.257,2.521c7.393,3.167,13.318,9.093,16.484,16.485\r\n\t\t\t\tc1.574-2,2.521-4.516,2.521-7.257C64,7.26,58.74,2,52.251,2z M32,5C15.984,5,3,17.984,3,34c0,7.691,3.015,14.664,7.902,19.855\r\n\t\t\t\tl-4.023,4.023C6.336,58.422,6,59.172,6,60c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879l4.327-4.327\r\n\t\t\t\tC20.144,61.066,25.842,63,32,63c6.17,0,11.878-1.941,16.579-5.227l4.356,4.357C53.473,62.668,54.215,63,55.034,63\r\n\t\t\t\tC56.672,63,58,61.672,58,60.034c0-0.819-0.332-1.562-0.869-2.099l-4.056-4.056C57.977,48.688,61,41.704,61,34\r\n\t\t\t\tC61,17.984,48.016,5,32,5z M32,57C19.297,57,9,46.703,9,34s10.297-23,23-23c12.702,0,23,10.297,23,23S44.703,57,32,57z"},"children":[]}]}]}]}]}]}]}]};exports.alarm=alarm;var alt={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"ALT"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31,20h30c1.657,0,3-1.343,3-3s-1.343-3-3-3H31c-1.657,0-3,1.343-3,3\r\n\t\t\tS29.343,20,31,20z M61,44H32.651L14.535,15.395l-0.006,0.004C13.997,14.56,13.066,14,12,14H3c-1.657,0-3,1.343-3,3s1.343,3,3,3\r\n\t\t\th7.349l18.117,28.605l0.006-0.004C29.003,49.44,29.934,50,31,50h30c1.657,0,3-1.343,3-3C64,45.343,62.657,44,61,44z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31,20h30c1.657,0,3-1.343,3-3s-1.343-3-3-3H31c-1.657,0-3,1.343-3,3\r\n\t\t\tS29.343,20,31,20z M61,44H32.651L14.535,15.395l-0.006,0.004C13.997,14.56,13.066,14,12,14H3c-1.657,0-3,1.343-3,3s1.343,3,3,3\r\n\t\t\th7.349l18.117,28.605l0.006-0.004C29.003,49.44,29.934,50,31,50h30c1.657,0,3-1.343,3-3C64,45.343,62.657,44,61,44z"},"children":[]}]}]}]}]}]};exports.alt=alt;var android={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"android_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"android"},"children":[{"name":"g","attribs":{"id":"android"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M15.647,47.493c0,2.164,1.709,3.926,3.812,3.926h2.752c-0.092,0.327-0.144,0.673-0.144,1.031v7.848\r\n\t\t\t\tc0,2.052,1.618,3.718,3.612,3.718c1.995,0,3.613-1.666,3.613-3.718V52.45c0-0.358-0.053-0.704-0.144-1.031h6.708\r\n\t\t\t\tc-0.092,0.327-0.144,0.673-0.144,1.031v7.848c0,2.052,1.618,3.718,3.612,3.718s3.613-1.666,3.613-3.718V52.45\r\n\t\t\t\tc0-0.358-0.053-0.704-0.145-1.031h2.752c2.104,0,3.812-1.761,3.812-3.926v-27.26h-33.71V47.493z M9.626,20.233\r\n\t\t\t\tc-1.995,0-3.612,1.664-3.612,3.717v15.901c0,2.053,1.617,3.717,3.612,3.717c1.994,0,3.612-1.664,3.612-3.717v-15.9\r\n\t\t\t\tC13.238,21.897,11.62,20.233,9.626,20.233z M55.375,20.233c-1.995,0-3.611,1.664-3.611,3.717v15.901\r\n\t\t\t\tc0,2.053,1.616,3.717,3.611,3.717s3.611-1.664,3.611-3.717v-15.9C58.986,21.897,57.37,20.233,55.375,20.233z M40.789,5.355\r\n\t\t\t\tl0.678-1.047l0.668-1.032l1.502-2.318c0.184-0.285,0.108-0.669-0.166-0.859c-0.279-0.191-0.652-0.114-0.837,0.172l-1.608,2.485\r\n\t\t\t\tl-0.678,1.045L39.662,4.86c-2.176-0.868-4.602-1.355-7.162-1.355c-2.559,0-4.986,0.487-7.16,1.354L24.655,3.8l-0.676-1.045\r\n\t\t\t\tL22.367,0.27c-0.184-0.285-0.558-0.362-0.836-0.172c-0.275,0.19-0.351,0.574-0.166,0.859l1.5,2.318l0.669,1.032l0.678,1.047\r\n\t\t\t\tc-5.109,2.449-8.566,7.089-8.566,12.4h33.708C49.355,12.444,45.898,7.804,40.789,5.355z M25.278,12.799\r\n\t\t\t\tc-0.998,0-1.806-0.833-1.806-1.859s0.808-1.857,1.806-1.857c0.997,0,1.806,0.831,1.806,1.857S26.275,12.799,25.278,12.799z\r\n\t\t\t\t M39.725,12.799c-0.998,0-1.806-0.833-1.806-1.859s0.808-1.857,1.806-1.857s1.805,0.831,1.805,1.857S40.723,12.799,39.725,12.799\r\n\t\t\t\tz"},"children":[{"name":"path","attribs":{"d":"M15.647,47.493c0,2.164,1.709,3.926,3.812,3.926h2.752c-0.092,0.327-0.144,0.673-0.144,1.031v7.848\r\n\t\t\t\tc0,2.052,1.618,3.718,3.612,3.718c1.995,0,3.613-1.666,3.613-3.718V52.45c0-0.358-0.053-0.704-0.144-1.031h6.708\r\n\t\t\t\tc-0.092,0.327-0.144,0.673-0.144,1.031v7.848c0,2.052,1.618,3.718,3.612,3.718s3.613-1.666,3.613-3.718V52.45\r\n\t\t\t\tc0-0.358-0.053-0.704-0.145-1.031h2.752c2.104,0,3.812-1.761,3.812-3.926v-27.26h-33.71V47.493z M9.626,20.233\r\n\t\t\t\tc-1.995,0-3.612,1.664-3.612,3.717v15.901c0,2.053,1.617,3.717,3.612,3.717c1.994,0,3.612-1.664,3.612-3.717v-15.9\r\n\t\t\t\tC13.238,21.897,11.62,20.233,9.626,20.233z M55.375,20.233c-1.995,0-3.611,1.664-3.611,3.717v15.901\r\n\t\t\t\tc0,2.053,1.616,3.717,3.611,3.717s3.611-1.664,3.611-3.717v-15.9C58.986,21.897,57.37,20.233,55.375,20.233z M40.789,5.355\r\n\t\t\t\tl0.678-1.047l0.668-1.032l1.502-2.318c0.184-0.285,0.108-0.669-0.166-0.859c-0.279-0.191-0.652-0.114-0.837,0.172l-1.608,2.485\r\n\t\t\t\tl-0.678,1.045L39.662,4.86c-2.176-0.868-4.602-1.355-7.162-1.355c-2.559,0-4.986,0.487-7.16,1.354L24.655,3.8l-0.676-1.045\r\n\t\t\t\tL22.367,0.27c-0.184-0.285-0.558-0.362-0.836-0.172c-0.275,0.19-0.351,0.574-0.166,0.859l1.5,2.318l0.669,1.032l0.678,1.047\r\n\t\t\t\tc-5.109,2.449-8.566,7.089-8.566,12.4h33.708C49.355,12.444,45.898,7.804,40.789,5.355z M25.278,12.799\r\n\t\t\t\tc-0.998,0-1.806-0.833-1.806-1.859s0.808-1.857,1.806-1.857c0.997,0,1.806,0.831,1.806,1.857S26.275,12.799,25.278,12.799z\r\n\t\t\t\t M39.725,12.799c-0.998,0-1.806-0.833-1.806-1.859s0.808-1.857,1.806-1.857s1.805,0.831,1.805,1.857S40.723,12.799,39.725,12.799\r\n\t\t\t\tz"},"children":[]}]}]}]}]}]}]}]};exports.android=android;var apple={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"apple_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"apple"},"children":[{"name":"g","attribs":{"id":"apple"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M42.111,10.214c2.4-2.709,4.021-6.473,3.58-10.221c-3.459,0.13-7.647,2.14-10.131,4.846\r\n\t\t\t\tc-2.225,2.401-4.17,6.226-3.65,9.906C35.77,15.025,39.708,12.918,42.111,10.214z M50.771,34.008\r\n\t\t\t\tc-0.086-8.109,7.104-11.997,7.427-12.193c-4.041-5.499-10.337-6.254-12.576-6.34c-5.354-0.506-10.451,2.935-13.169,2.935\r\n\t\t\t\tc-2.711,0-6.906-2.861-11.346-2.788c-5.84,0.081-11.222,3.161-14.228,8.028c-6.065,9.793-1.552,24.307,4.359,32.256\r\n\t\t\t\tc2.89,3.886,6.335,8.257,10.855,8.097c4.357-0.16,6.002-2.622,11.267-2.622c5.269,0,6.746,2.622,11.354,2.541\r\n\t\t\t\tc4.685-0.079,7.655-3.959,10.522-7.859c3.318-4.514,4.683-8.886,4.765-9.106C59.896,46.91,50.865,43.689,50.771,34.008z"},"children":[{"name":"path","attribs":{"d":"M42.111,10.214c2.4-2.709,4.021-6.473,3.58-10.221c-3.459,0.13-7.647,2.14-10.131,4.846\r\n\t\t\t\tc-2.225,2.401-4.17,6.226-3.65,9.906C35.77,15.025,39.708,12.918,42.111,10.214z M50.771,34.008\r\n\t\t\t\tc-0.086-8.109,7.104-11.997,7.427-12.193c-4.041-5.499-10.337-6.254-12.576-6.34c-5.354-0.506-10.451,2.935-13.169,2.935\r\n\t\t\t\tc-2.711,0-6.906-2.861-11.346-2.788c-5.84,0.081-11.222,3.161-14.228,8.028c-6.065,9.793-1.552,24.307,4.359,32.256\r\n\t\t\t\tc2.89,3.886,6.335,8.257,10.855,8.097c4.357-0.16,6.002-2.622,11.267-2.622c5.269,0,6.746,2.622,11.354,2.541\r\n\t\t\t\tc4.685-0.079,7.655-3.959,10.522-7.859c3.318-4.514,4.683-8.886,4.765-9.106C59.896,46.91,50.865,43.689,50.771,34.008z"},"children":[]}]}]}]}]}]}]}]};exports.apple=apple;var appstore={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"appstore_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"appstore"},"children":[{"name":"g","attribs":{"id":"appstore"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M31.03,28.052L24.522,39.43h17.662c-1.283-2.539-2.981-6.173-5.262-11.376H31.03V28.052z M31.735,21.424\r\n\t\t\t\tc0.405-0.708,0.16-1.618-0.546-2.03l-3.854-2.214c-0.704-0.41-1.615-0.163-2.019,0.545l-5.908,10.328L12.899,39.43l-5.433,9.5\r\n\t\t\t\tc-0.409,0.709-0.16,1.618,0.546,2.023l3.853,2.224c0.705,0.408,1.615,0.161,2.023-0.545l7.55-13.202l4.879-8.532L31.735,21.424z\r\n\t\t\t\t M10.606,54.878l-3.853-2.219c-0.706-0.408-1.358-0.074-1.452,0.735l-0.666,5.824c-0.093,0.811,0.382,1.102,1.054,0.643\r\n\t\t\t\tl4.977-3.406C11.341,55.999,11.312,55.286,10.606,54.878z M16.322,28.052H1.35c-0.74,0-1.339,0.601-1.339,1.343v8.692\r\n\t\t\t\tc0,0.741,0.599,1.343,1.339,1.343h8.464L16.322,28.052z M62.65,28.052H49.643c1.53,2.879,2.948,5.589,3.948,7.505\r\n\t\t\t\tc0.692,1.325,1.239,2.373,1.433,2.723c0.203,0.373,0.347,0.757,0.444,1.15h7.183c0.74,0,1.34-0.602,1.34-1.343v-8.692\r\n\t\t\t\tC63.988,28.654,63.389,28.052,62.65,28.052z M52.677,39.575c-0.022-0.038-0.051-0.093-0.079-0.146\r\n\t\t\t\tc-0.357-0.664-1.255-2.394-2.433-4.639c-0.015-0.031-0.028-0.057-0.043-0.087c-0.09-0.173-0.181-0.347-0.274-0.524\r\n\t\t\t\tc-0.068-0.128-0.135-0.258-0.205-0.388c-0.057-0.112-0.117-0.224-0.175-0.339c-0.104-0.199-0.211-0.396-0.317-0.602\r\n\t\t\t\tc-0.033-0.063-0.065-0.127-0.1-0.19c-0.119-0.229-0.24-0.459-0.363-0.693c-0.035-0.066-0.07-0.132-0.106-0.201\r\n\t\t\t\tc-2.714-5.151-6.123-11.492-8.228-14.827c-3.683-5.844-8.599-15.583-9.971-14.89C28.46,3.011,34.41,15.374,36.38,20.02\r\n\t\t\t\tc1.97,4.644,9.656,22.447,11.197,23.224c1.543,0.773,2.14,0.344,3.169-0.084C51.773,42.729,53.619,41.3,52.677,39.575z\r\n\t\t\t\t M56.504,53.867c-0.577,0.555-1.951,1.763-0.289,4.107c1.657,2.349,5.362,2.453,5.85,4.012\r\n\t\t\t\tC62.064,61.986,63.229,50.061,56.504,53.867z M57.07,48.749l-1.834-3.536c-0.416-0.8-1.393-1.126-2.172-0.727l-2.213,1.145\r\n\t\t\t\tc-0.778,0.405-1.024,1.354-0.545,2.117l2.321,3.682c0.479,0.758,1.491,1.008,2.242,0.553l1.58-0.953\r\n\t\t\t\tC57.205,50.575,57.484,49.549,57.07,48.749z"},"children":[{"name":"path","attribs":{"d":"M31.03,28.052L24.522,39.43h17.662c-1.283-2.539-2.981-6.173-5.262-11.376H31.03V28.052z M31.735,21.424\r\n\t\t\t\tc0.405-0.708,0.16-1.618-0.546-2.03l-3.854-2.214c-0.704-0.41-1.615-0.163-2.019,0.545l-5.908,10.328L12.899,39.43l-5.433,9.5\r\n\t\t\t\tc-0.409,0.709-0.16,1.618,0.546,2.023l3.853,2.224c0.705,0.408,1.615,0.161,2.023-0.545l7.55-13.202l4.879-8.532L31.735,21.424z\r\n\t\t\t\t M10.606,54.878l-3.853-2.219c-0.706-0.408-1.358-0.074-1.452,0.735l-0.666,5.824c-0.093,0.811,0.382,1.102,1.054,0.643\r\n\t\t\t\tl4.977-3.406C11.341,55.999,11.312,55.286,10.606,54.878z M16.322,28.052H1.35c-0.74,0-1.339,0.601-1.339,1.343v8.692\r\n\t\t\t\tc0,0.741,0.599,1.343,1.339,1.343h8.464L16.322,28.052z M62.65,28.052H49.643c1.53,2.879,2.948,5.589,3.948,7.505\r\n\t\t\t\tc0.692,1.325,1.239,2.373,1.433,2.723c0.203,0.373,0.347,0.757,0.444,1.15h7.183c0.74,0,1.34-0.602,1.34-1.343v-8.692\r\n\t\t\t\tC63.988,28.654,63.389,28.052,62.65,28.052z M52.677,39.575c-0.022-0.038-0.051-0.093-0.079-0.146\r\n\t\t\t\tc-0.357-0.664-1.255-2.394-2.433-4.639c-0.015-0.031-0.028-0.057-0.043-0.087c-0.09-0.173-0.181-0.347-0.274-0.524\r\n\t\t\t\tc-0.068-0.128-0.135-0.258-0.205-0.388c-0.057-0.112-0.117-0.224-0.175-0.339c-0.104-0.199-0.211-0.396-0.317-0.602\r\n\t\t\t\tc-0.033-0.063-0.065-0.127-0.1-0.19c-0.119-0.229-0.24-0.459-0.363-0.693c-0.035-0.066-0.07-0.132-0.106-0.201\r\n\t\t\t\tc-2.714-5.151-6.123-11.492-8.228-14.827c-3.683-5.844-8.599-15.583-9.971-14.89C28.46,3.011,34.41,15.374,36.38,20.02\r\n\t\t\t\tc1.97,4.644,9.656,22.447,11.197,23.224c1.543,0.773,2.14,0.344,3.169-0.084C51.773,42.729,53.619,41.3,52.677,39.575z\r\n\t\t\t\t M56.504,53.867c-0.577,0.555-1.951,1.763-0.289,4.107c1.657,2.349,5.362,2.453,5.85,4.012\r\n\t\t\t\tC62.064,61.986,63.229,50.061,56.504,53.867z M57.07,48.749l-1.834-3.536c-0.416-0.8-1.393-1.126-2.172-0.727l-2.213,1.145\r\n\t\t\t\tc-0.778,0.405-1.024,1.354-0.545,2.117l2.321,3.682c0.479,0.758,1.491,1.008,2.242,0.553l1.58-0.953\r\n\t\t\t\tC57.205,50.575,57.484,49.549,57.07,48.749z"},"children":[]}]}]}]}]}]}]}]};exports.appstore=appstore;var arrow_1={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"ARROW_1_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ARROW_1"},"children":[{"name":"g","attribs":{"id":"ARROW_1"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M63.122,42.878l-6.998-7.001c-0.543-0.543-1.293-0.879-2.121-0.879c-1.657,0-2.999,1.343-2.999,3\r\n\t\t\t\tc0,0.829,0.336,1.579,0.879,2.122l1.879,1.879h-1.773v0.005h-3l0,0h-2.756L15.118,10.879C14.575,10.336,13.825,10,12.997,10\r\n\t\t\t\tH2.999C1.343,10,0,11.343,0,13.001c0,1.657,1.343,3,2.999,3h8.755l31.114,31.126c0.543,0.543,1.293,0.879,2.12,0.879h8.767\r\n\t\t\t\tl-1.873,1.874c-0.543,0.543-0.879,1.293-0.879,2.122c0,1.657,1.343,3,2.999,3c0.828,0,1.578-0.336,2.121-0.879l6.998-7.001\r\n\t\t\t\tC63.664,46.578,64,45.828,64,45C64,44.171,63.664,43.421,63.122,42.878z"},"children":[{"name":"path","attribs":{"d":"M63.122,42.878l-6.998-7.001c-0.543-0.543-1.293-0.879-2.121-0.879c-1.657,0-2.999,1.343-2.999,3\r\n\t\t\t\tc0,0.829,0.336,1.579,0.879,2.122l1.879,1.879h-1.773v0.005h-3l0,0h-2.756L15.118,10.879C14.575,10.336,13.825,10,12.997,10\r\n\t\t\t\tH2.999C1.343,10,0,11.343,0,13.001c0,1.657,1.343,3,2.999,3h8.755l31.114,31.126c0.543,0.543,1.293,0.879,2.12,0.879h8.767\r\n\t\t\t\tl-1.873,1.874c-0.543,0.543-0.879,1.293-0.879,2.122c0,1.657,1.343,3,2.999,3c0.828,0,1.578-0.336,2.121-0.879l6.998-7.001\r\n\t\t\t\tC63.664,46.578,64,45.828,64,45C64,44.171,63.664,43.421,63.122,42.878z"},"children":[]}]}]}]}]}]}]}]};exports.arrow_1=arrow_1;var arrow_2={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"ARROW_2_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ARROW_2"},"children":[{"name":"g","attribs":{"id":"ARROW_2"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M63.137,17.884l-7-7c-0.543-0.543-1.293-0.879-2.121-0.879c-1.656,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121\r\n\t\t\t\tL53.768,17H45c-0.828,0-1.578,0.336-2.121,0.879L11.757,49H9l0,0H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h10\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L46.243,23H52v0.005h1.773l-1.879,1.879c-0.543,0.543-0.879,1.293-0.879,2.121\r\n\t\t\t\tc0,1.657,1.342,3,3,3c0.827,0,1.577-0.336,2.12-0.879l7-7c0.544-0.543,0.88-1.293,0.88-2.121S63.68,18.427,63.137,17.884z"},"children":[{"name":"path","attribs":{"d":"M63.137,17.884l-7-7c-0.543-0.543-1.293-0.879-2.121-0.879c-1.656,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121\r\n\t\t\t\tL53.768,17H45c-0.828,0-1.578,0.336-2.121,0.879L11.757,49H9l0,0H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h10\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L46.243,23H52v0.005h1.773l-1.879,1.879c-0.543,0.543-0.879,1.293-0.879,2.121\r\n\t\t\t\tc0,1.657,1.342,3,3,3c0.827,0,1.577-0.336,2.12-0.879l7-7c0.544-0.543,0.88-1.293,0.88-2.121S63.68,18.427,63.137,17.884z"},"children":[]}]}]}]}]}]}]}]};exports.arrow_2=arrow_2;var arrow_down={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"ARROW__x2F__DOWN_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ARROW__x2F__DOWN"},"children":[{"name":"g","attribs":{"id":"ARROW__x2F__DOWN"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M53,23c0-1.657-1.343-3-3-3c-0.809,0-1.542,0.321-2.082,0.841l-0.001-0.001L31.993,36.764L16.275,21.046\r\n\t\t\t\tC15.725,20.406,14.91,20,14,20c-1.657,0-3,1.343-3,3c0,0.805,0.318,1.536,0.835,2.075l-0.008,0.008l18,18l0.001-0.001\r\n\t\t\t\tC30.374,43.648,31.139,44,31.987,44c0.002,0,0.004,0,0.007,0c0.002,0,0.004,0,0.007,0c0.849,0,1.612-0.352,2.159-0.918\r\n\t\t\t\tl0.001,0.001l18-18l-0.001-0.001C52.68,24.543,53,23.809,53,23z"},"children":[{"name":"path","attribs":{"d":"M53,23c0-1.657-1.343-3-3-3c-0.809,0-1.542,0.321-2.082,0.841l-0.001-0.001L31.993,36.764L16.275,21.046\r\n\t\t\t\tC15.725,20.406,14.91,20,14,20c-1.657,0-3,1.343-3,3c0,0.805,0.318,1.536,0.835,2.075l-0.008,0.008l18,18l0.001-0.001\r\n\t\t\t\tC30.374,43.648,31.139,44,31.987,44c0.002,0,0.004,0,0.007,0c0.002,0,0.004,0,0.007,0c0.849,0,1.612-0.352,2.159-0.918\r\n\t\t\t\tl0.001,0.001l18-18l-0.001-0.001C52.68,24.543,53,23.809,53,23z"},"children":[]}]}]}]}]}]}]}]};exports.arrow_down=arrow_down;var arrow_left={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"ARROW__x2F__LEFT_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ARROW__x2F__LEFT"},"children":[{"name":"g","attribs":{"id":"ARROW__x2F__LEFT"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M43.16,47.917L27.236,31.994l15.718-15.718C43.594,15.725,44,14.91,44,14c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.807,0-1.536,0.318-2.075,0.835l-0.008-0.008l-18,18l0.001,0.001C20.352,30.374,20,31.139,20,31.987c0,0.002,0,0.004,0,0.007\r\n\t\t\t\tc0,0.002,0,0.004,0,0.007c0,0.849,0.352,1.613,0.918,2.159l-0.001,0.001l18,18l0.001-0.001C39.458,52.68,40.191,53,41,53\r\n\t\t\t\tc1.657,0,3-1.343,3-3C44,49.191,43.68,48.458,43.16,47.917L43.16,47.917z"},"children":[{"name":"path","attribs":{"d":"M43.16,47.917L27.236,31.994l15.718-15.718C43.594,15.725,44,14.91,44,14c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.807,0-1.536,0.318-2.075,0.835l-0.008-0.008l-18,18l0.001,0.001C20.352,30.374,20,31.139,20,31.987c0,0.002,0,0.004,0,0.007\r\n\t\t\t\tc0,0.002,0,0.004,0,0.007c0,0.849,0.352,1.613,0.918,2.159l-0.001,0.001l18,18l0.001-0.001C39.458,52.68,40.191,53,41,53\r\n\t\t\t\tc1.657,0,3-1.343,3-3C44,49.191,43.68,48.458,43.16,47.917L43.16,47.917z"},"children":[]}]}]}]}]}]}]}]};exports.arrow_left=arrow_left;var arrow_right={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"ARROW__x2F__RIGHT_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ARROW__x2F__RIGHT"},"children":[{"name":"g","attribs":{"id":"ARROW__x2F__RIGHT"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M44,31.994c0-0.002,0-0.005,0-0.007c0-0.848-0.352-1.613-0.918-2.159l0.001-0.001l-18-18l-0.008,0.008\r\n\t\t\t\tC24.536,11.318,23.806,11,23,11c-1.657,0-3,1.343-3,3c0,0.91,0.406,1.725,1.046,2.275l15.718,15.718L20.84,47.917l0.001,0.001\r\n\t\t\t\tC20.321,48.458,20,49.191,20,50c0,1.657,1.343,3,3,3c0.809,0,1.542-0.32,2.082-0.841l0.001,0.001l18-18l-0.001-0.001\r\n\t\t\t\tC43.648,33.613,44,32.848,44,32C44,31.998,44,31.996,44,31.994z"},"children":[{"name":"path","attribs":{"d":"M44,31.994c0-0.002,0-0.005,0-0.007c0-0.848-0.352-1.613-0.918-2.159l0.001-0.001l-18-18l-0.008,0.008\r\n\t\t\t\tC24.536,11.318,23.806,11,23,11c-1.657,0-3,1.343-3,3c0,0.91,0.406,1.725,1.046,2.275l15.718,15.718L20.84,47.917l0.001,0.001\r\n\t\t\t\tC20.321,48.458,20,49.191,20,50c0,1.657,1.343,3,3,3c0.809,0,1.542-0.32,2.082-0.841l0.001,0.001l18-18l-0.001-0.001\r\n\t\t\t\tC43.648,33.613,44,32.848,44,32C44,31.998,44,31.996,44,31.994z"},"children":[]}]}]}]}]}]}]}]};exports.arrow_right=arrow_right;var arrow_up={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"ARROW__x2F__UP_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ARROW__x2F__UP"},"children":[{"name":"g","attribs":{"id":"ARROW__x2F__UP"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M52.159,38.918L52.159,38.918L34.16,20.917l-0.001,0.001C33.613,20.352,32.848,20,32,20c-0.002,0-0.004,0-0.007,0\r\n\t\t\t\ts-0.004,0-0.007,0c-0.848,0-1.613,0.352-2.159,0.918l-0.001-0.001l-18,18l0.008,0.008C11.318,39.464,11,40.195,11,41\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.91,0,1.725-0.406,2.275-1.046l15.718-15.718L47.917,43.16l0.001-0.001C48.458,43.68,49.191,44,50,44\r\n\t\t\t\tc1.657,0,3-1.343,3-3C53,40.191,52.68,39.458,52.159,38.918z"},"children":[{"name":"path","attribs":{"d":"M52.159,38.918L52.159,38.918L34.16,20.917l-0.001,0.001C33.613,20.352,32.848,20,32,20c-0.002,0-0.004,0-0.007,0\r\n\t\t\t\ts-0.004,0-0.007,0c-0.848,0-1.613,0.352-2.159,0.918l-0.001-0.001l-18,18l0.008,0.008C11.318,39.464,11,40.195,11,41\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.91,0,1.725-0.406,2.275-1.046l15.718-15.718L47.917,43.16l0.001-0.001C48.458,43.68,49.191,44,50,44\r\n\t\t\t\tc1.657,0,3-1.343,3-3C53,40.191,52.68,39.458,52.159,38.918z"},"children":[]}]}]}]}]}]}]}]};exports.arrow_up=arrow_up;var arrows={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"ARROWS_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ARROWS"},"children":[{"name":"g","attribs":{"id":"ARROWS"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M64,32c0-0.885-0.383-1.681-0.993-2.23l0,0l-10-9l0,0C52.475,20.292,51.771,20,51,20c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.885,0.384,1.681,0.993,2.23l0,0L53.182,29H35V10.818l3.77,4.189l0,0C39.318,15.616,40.115,16,41,16c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.772-0.292-1.475-0.77-2.007l0,0l-9-10l0,0C33.682,0.384,32.885,0,32,0s-1.681,0.384-2.23,0.993l0,0l-9,10l0,0\r\n\t\t\t\tC20.292,11.525,20,12.228,20,13c0,1.657,1.343,3,3,3c0.885,0,1.68-0.384,2.23-0.993l0,0L29,10.818V29H10.818l4.189-3.77l0,0\r\n\t\t\t\tC15.617,24.681,16,23.885,16,23c0-1.657-1.343-3-3-3c-0.772,0-1.475,0.292-2.007,0.77l0,0l-10,9l0,0C0.384,30.319,0,31.115,0,32\r\n\t\t\t\ts0.384,1.68,0.993,2.23l0,0l10,9l0,0C11.525,43.709,12.228,44,13,44c1.657,0,3-1.343,3-3c0-0.885-0.384-1.68-0.993-2.23l0,0\r\n\t\t\t\tL10.818,35H29v18.182l-3.77-4.188l0,0C24.681,48.384,23.885,48,23,48c-1.657,0-3,1.343-3,3c0,0.771,0.292,1.475,0.77,2.007l0,0\r\n\t\t\t\tl9,10l0,0C30.319,63.617,31.115,64,32,64s1.682-0.383,2.23-0.993l0,0l9-10l0,0C43.708,52.475,44,51.771,44,51\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.885,0-1.682,0.384-2.23,0.993l0,0L35,53.182V35h18.182l-4.188,3.77l0,0C48.384,39.32,48,40.115,48,41\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.771,0,1.475-0.292,2.007-0.77l0,0l10-9l0,0C63.617,33.682,64,32.885,64,32z"},"children":[{"name":"path","attribs":{"d":"M64,32c0-0.885-0.383-1.681-0.993-2.23l0,0l-10-9l0,0C52.475,20.292,51.771,20,51,20c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.885,0.384,1.681,0.993,2.23l0,0L53.182,29H35V10.818l3.77,4.189l0,0C39.318,15.616,40.115,16,41,16c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.772-0.292-1.475-0.77-2.007l0,0l-9-10l0,0C33.682,0.384,32.885,0,32,0s-1.681,0.384-2.23,0.993l0,0l-9,10l0,0\r\n\t\t\t\tC20.292,11.525,20,12.228,20,13c0,1.657,1.343,3,3,3c0.885,0,1.68-0.384,2.23-0.993l0,0L29,10.818V29H10.818l4.189-3.77l0,0\r\n\t\t\t\tC15.617,24.681,16,23.885,16,23c0-1.657-1.343-3-3-3c-0.772,0-1.475,0.292-2.007,0.77l0,0l-10,9l0,0C0.384,30.319,0,31.115,0,32\r\n\t\t\t\ts0.384,1.68,0.993,2.23l0,0l10,9l0,0C11.525,43.709,12.228,44,13,44c1.657,0,3-1.343,3-3c0-0.885-0.384-1.68-0.993-2.23l0,0\r\n\t\t\t\tL10.818,35H29v18.182l-3.77-4.188l0,0C24.681,48.384,23.885,48,23,48c-1.657,0-3,1.343-3,3c0,0.771,0.292,1.475,0.77,2.007l0,0\r\n\t\t\t\tl9,10l0,0C30.319,63.617,31.115,64,32,64s1.682-0.383,2.23-0.993l0,0l9-10l0,0C43.708,52.475,44,51.771,44,51\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.885,0-1.682,0.384-2.23,0.993l0,0L35,53.182V35h18.182l-4.188,3.77l0,0C48.384,39.32,48,40.115,48,41\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.771,0,1.475-0.292,2.007-0.77l0,0l10-9l0,0C63.617,33.682,64,32.885,64,32z"},"children":[]}]}]}]}]}]}]}]};exports.arrows=arrows;var arrows_horizontal={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"ARROWS__x2F__HORIZONTAL_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ARROWS__x2F__HORIZONTAL"},"children":[{"name":"g","attribs":{"id":"ARROWS__x2F__HORIZONTAL"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M3,22h32l0,0h18.182l-4.188,3.77L49,25.779c-0.609,0.549-1,1.336-1,2.222c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.771,0,1.468-0.299,2-0.778l0.007,0.008l10-9L63,21.222c0.609-0.549,1-1.337,1-2.222s-0.391-1.673-1-2.222l0.007-0.008l-10-9\r\n\t\t\t\tL53,7.778C52.468,7.3,51.771,7,51,7c-1.657,0-3,1.343-3,3c0,0.885,0.391,1.673,1,2.222l-0.007,0.008L53.182,16H39l0,0H26l0,0\r\n\t\t\t\tH10.818l0,0H3c-1.657,0-3,1.343-3,3S1.343,22,3,22z M61,42h-7.818l0,0H38l0,0H25l0,0H10.818l4.189-3.77L15,38.223\r\n\t\t\t\tc0.61-0.55,1-1.337,1-2.223c0-1.657-1.343-3-3-3c-0.772,0-1.468,0.3-2,0.777l-0.007-0.008l-10,9L1,42.777\r\n\t\t\t\tC0.391,43.328,0,44.115,0,45s0.391,1.672,1,2.223L0.993,47.23l10,9L11,56.223C11.532,56.701,12.229,57,13,57c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.885-0.391-1.673-1-2.223l0.007-0.008L10.818,48H35l0,0h26c1.657,0,3-1.343,3-3S62.657,42,61,42z"},"children":[{"name":"path","attribs":{"d":"M3,22h32l0,0h18.182l-4.188,3.77L49,25.779c-0.609,0.549-1,1.336-1,2.222c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.771,0,1.468-0.299,2-0.778l0.007,0.008l10-9L63,21.222c0.609-0.549,1-1.337,1-2.222s-0.391-1.673-1-2.222l0.007-0.008l-10-9\r\n\t\t\t\tL53,7.778C52.468,7.3,51.771,7,51,7c-1.657,0-3,1.343-3,3c0,0.885,0.391,1.673,1,2.222l-0.007,0.008L53.182,16H39l0,0H26l0,0\r\n\t\t\t\tH10.818l0,0H3c-1.657,0-3,1.343-3,3S1.343,22,3,22z M61,42h-7.818l0,0H38l0,0H25l0,0H10.818l4.189-3.77L15,38.223\r\n\t\t\t\tc0.61-0.55,1-1.337,1-2.223c0-1.657-1.343-3-3-3c-0.772,0-1.468,0.3-2,0.777l-0.007-0.008l-10,9L1,42.777\r\n\t\t\t\tC0.391,43.328,0,44.115,0,45s0.391,1.672,1,2.223L0.993,47.23l10,9L11,56.223C11.532,56.701,12.229,57,13,57c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.885-0.391-1.673-1-2.223l0.007-0.008L10.818,48H35l0,0h26c1.657,0,3-1.343,3-3S62.657,42,61,42z"},"children":[]}]}]}]}]}]}]}]};exports.arrows_horizontal=arrows_horizontal;var arrows_horizontal_2={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"ARROWS_HORIZONTAL_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ARROWS_HORIZONTAL"},"children":[{"name":"g","attribs":{"id":"ARROWS_HORIZONTAL"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M64,32c0-0.885-0.384-1.681-0.993-2.23l0,0l-10-9l0,0C52.475,20.292,51.771,20,51,20c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.885,0.383,1.681,0.993,2.23l0,0L53.182,29H10.818l4.189-3.77l0,0C15.617,24.681,16,23.885,16,23c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.772,0-1.475,0.292-2.007,0.77l0,0l-10,9l0,0C0.384,30.319,0,31.115,0,32s0.383,1.68,0.993,2.23l0,0l10,9l0,0\r\n\t\t\t\tC11.525,43.709,12.228,44,13,44c1.657,0,3-1.343,3-3c0-0.885-0.383-1.68-0.993-2.23l0,0L10.818,35h42.364l-4.188,3.77l0,0\r\n\t\t\t\tC48.384,39.32,48,40.115,48,41c0,1.657,1.343,3,3,3c0.771,0,1.475-0.292,2.007-0.77l0,0l10-9l0,0C63.617,33.682,64,32.885,64,32z\r\n\t\t\t\t"},"children":[{"name":"path","attribs":{"d":"M64,32c0-0.885-0.384-1.681-0.993-2.23l0,0l-10-9l0,0C52.475,20.292,51.771,20,51,20c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.885,0.383,1.681,0.993,2.23l0,0L53.182,29H10.818l4.189-3.77l0,0C15.617,24.681,16,23.885,16,23c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.772,0-1.475,0.292-2.007,0.77l0,0l-10,9l0,0C0.384,30.319,0,31.115,0,32s0.383,1.68,0.993,2.23l0,0l10,9l0,0\r\n\t\t\t\tC11.525,43.709,12.228,44,13,44c1.657,0,3-1.343,3-3c0-0.885-0.383-1.68-0.993-2.23l0,0L10.818,35h42.364l-4.188,3.77l0,0\r\n\t\t\t\tC48.384,39.32,48,40.115,48,41c0,1.657,1.343,3,3,3c0.771,0,1.475-0.292,2.007-0.77l0,0l10-9l0,0C63.617,33.682,64,32.885,64,32z\r\n\t\t\t\t"},"children":[]}]}]}]}]}]}]}]};exports.arrows_horizontal_2=arrows_horizontal_2;var arrows_vertical={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"ARROWS__x2F__VERTICAL_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ARROWS__x2F__VERTICAL"},"children":[{"name":"g","attribs":{"id":"ARROWS__x2F__VERTICAL"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M57,51c0-1.657-1.343-3-3-3c-0.885,0-1.673,0.391-2.223,1l-0.008-0.007L48,53.182V29l0,0V3c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v7.818l0,0V26l0,0v13l0,0v14.182l-3.77-4.188L38.223,49c-0.55-0.609-1.338-1-2.223-1c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.771,0.3,1.468,0.777,2l-0.008,0.007l9,10L42.777,63c0.55,0.609,1.338,1,2.223,1s1.672-0.391,2.223-1l0.008,0.007l9-10\r\n\t\t\t\tL56.223,53C56.701,52.468,57,51.771,57,51z M30.23,10.993l-9-10L21.222,1C20.673,0.391,19.885,0,19,0s-1.673,0.391-2.222,1.001\r\n\t\t\t\tL16.77,0.993l-9,10L7.778,11C7.3,11.532,7,12.228,7,13c0,1.657,1.343,3,3,3c0.885,0,1.673-0.391,2.222-1l0.008,0.007L16,10.818\r\n\t\t\t\tV25l0,0v13l0,0v15.182l0,0V61c0,1.657,1.343,3,3,3s3-1.343,3-3V29l0,0V10.818l3.77,4.189L25.778,15c0.549,0.61,1.337,1,2.222,1\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.772-0.299-1.468-0.778-2L30.23,10.993z"},"children":[{"name":"path","attribs":{"d":"M57,51c0-1.657-1.343-3-3-3c-0.885,0-1.673,0.391-2.223,1l-0.008-0.007L48,53.182V29l0,0V3c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v7.818l0,0V26l0,0v13l0,0v14.182l-3.77-4.188L38.223,49c-0.55-0.609-1.338-1-2.223-1c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.771,0.3,1.468,0.777,2l-0.008,0.007l9,10L42.777,63c0.55,0.609,1.338,1,2.223,1s1.672-0.391,2.223-1l0.008,0.007l9-10\r\n\t\t\t\tL56.223,53C56.701,52.468,57,51.771,57,51z M30.23,10.993l-9-10L21.222,1C20.673,0.391,19.885,0,19,0s-1.673,0.391-2.222,1.001\r\n\t\t\t\tL16.77,0.993l-9,10L7.778,11C7.3,11.532,7,12.228,7,13c0,1.657,1.343,3,3,3c0.885,0,1.673-0.391,2.222-1l0.008,0.007L16,10.818\r\n\t\t\t\tV25l0,0v13l0,0v15.182l0,0V61c0,1.657,1.343,3,3,3s3-1.343,3-3V29l0,0V10.818l3.77,4.189L25.778,15c0.549,0.61,1.337,1,2.222,1\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.772-0.299-1.468-0.778-2L30.23,10.993z"},"children":[]}]}]}]}]}]}]}]};exports.arrows_vertical=arrows_vertical;var arrows_vertical_2={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"ARROWS_VERTICAL_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ARROWS_VERTICAL"},"children":[{"name":"g","attribs":{"id":"ARROWS_VERTICAL"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M41,48c-0.885,0-1.682,0.384-2.23,0.993l0,0L35,53.182V10.818l3.77,4.189l0,0C39.318,15.616,40.115,16,41,16\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.772-0.292-1.475-0.77-2.007l0,0l-9-10l0,0C33.682,0.384,32.885,0,32,0s-1.681,0.384-2.23,0.993l0,0\r\n\t\t\t\tl-9,10l0,0C20.292,11.525,20,12.228,20,13c0,1.657,1.343,3,3,3c0.885,0,1.681-0.384,2.23-0.993l0,0L29,10.818v42.364l-3.77-4.188\r\n\t\t\t\tl0,0C24.681,48.384,23.885,48,23,48c-1.657,0-3,1.343-3,3c0,0.771,0.292,1.475,0.77,2.007l0,0l9,10l0,0\r\n\t\t\t\tC30.319,63.617,31.115,64,32,64s1.682-0.383,2.23-0.993l0,0l9-10l0,0C43.708,52.475,44,51.771,44,51C44,49.343,42.657,48,41,48z"},"children":[{"name":"path","attribs":{"d":"M41,48c-0.885,0-1.682,0.384-2.23,0.993l0,0L35,53.182V10.818l3.77,4.189l0,0C39.318,15.616,40.115,16,41,16\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.772-0.292-1.475-0.77-2.007l0,0l-9-10l0,0C33.682,0.384,32.885,0,32,0s-1.681,0.384-2.23,0.993l0,0\r\n\t\t\t\tl-9,10l0,0C20.292,11.525,20,12.228,20,13c0,1.657,1.343,3,3,3c0.885,0,1.681-0.384,2.23-0.993l0,0L29,10.818v42.364l-3.77-4.188\r\n\t\t\t\tl0,0C24.681,48.384,23.885,48,23,48c-1.657,0-3,1.343-3,3c0,0.771,0.292,1.475,0.77,2.007l0,0l9,10l0,0\r\n\t\t\t\tC30.319,63.617,31.115,64,32,64s1.682-0.383,2.23-0.993l0,0l9-10l0,0C43.708,52.475,44,51.771,44,51C44,49.343,42.657,48,41,48z"},"children":[]}]}]}]}]}]}]}]};exports.arrows_vertical_2=arrows_vertical_2;var bar_chart_1={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"BAR_CHART_1"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M29,50h6c1.657,0,3-1.343,3-3V22c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3\r\n\t\t\tv25C26,48.657,27.343,50,29,50z M46,50h6c1.657,0,3-1.343,3-3V8c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v39\r\n\t\t\tC43,48.657,44.343,50,46,50z M12,50h6c1.657,0,3-1.343,3-3V36c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v11\r\n\t\t\tC9,48.657,10.343,50,12,50z M61.5,53h-59C1.119,53,0,54.12,0,55.5v1C0,57.881,1.119,59,2.5,59h59c1.381,0,2.5-1.119,2.5-2.5v-1\r\n\t\t\tC64,54.12,62.881,53,61.5,53z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M29,50h6c1.657,0,3-1.343,3-3V22c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3\r\n\t\t\tv25C26,48.657,27.343,50,29,50z M46,50h6c1.657,0,3-1.343,3-3V8c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v39\r\n\t\t\tC43,48.657,44.343,50,46,50z M12,50h6c1.657,0,3-1.343,3-3V36c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v11\r\n\t\t\tC9,48.657,10.343,50,12,50z M61.5,53h-59C1.119,53,0,54.12,0,55.5v1C0,57.881,1.119,59,2.5,59h59c1.381,0,2.5-1.119,2.5-2.5v-1\r\n\t\t\tC64,54.12,62.881,53,61.5,53z"},"children":[]}]}]}]}]}]};exports.bar_chart_1=bar_chart_1;var bar_chart_2={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"BAR_CHART_2"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61.5,53h-59C1.119,53,0,54.12,0,55.5v1C0,57.881,1.119,59,2.5,59h59\r\n\t\t\tc1.381,0,2.5-1.119,2.5-2.5v-1C64,54.12,62.881,53,61.5,53z M46,50h6c1.657,0,3-1.343,3-3V20c0-1.657-1.343-3-3-3h-6\r\n\t\t\tc-1.657,0-3,1.343-3,3v27C43,48.657,44.343,50,46,50z M29,50h6c1.657,0,3-1.343,3-3V8c0-1.657-1.343-3-3-3h-6\r\n\t\t\tc-1.657,0-3,1.343-3,3v39C26,48.657,27.343,50,29,50z M12,50h6c1.657,0,3-1.343,3-3V35c0-1.656-1.343-3-3-3h-6\r\n\t\t\tc-1.657,0-3,1.344-3,3v12C9,48.657,10.343,50,12,50z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61.5,53h-59C1.119,53,0,54.12,0,55.5v1C0,57.881,1.119,59,2.5,59h59\r\n\t\t\tc1.381,0,2.5-1.119,2.5-2.5v-1C64,54.12,62.881,53,61.5,53z M46,50h6c1.657,0,3-1.343,3-3V20c0-1.657-1.343-3-3-3h-6\r\n\t\t\tc-1.657,0-3,1.343-3,3v27C43,48.657,44.343,50,46,50z M29,50h6c1.657,0,3-1.343,3-3V8c0-1.657-1.343-3-3-3h-6\r\n\t\t\tc-1.657,0-3,1.343-3,3v39C26,48.657,27.343,50,29,50z M12,50h6c1.657,0,3-1.343,3-3V35c0-1.656-1.343-3-3-3h-6\r\n\t\t\tc-1.657,0-3,1.344-3,3v12C9,48.657,10.343,50,12,50z"},"children":[]}]}]}]}]}]};exports.bar_chart_2=bar_chart_2;var bar_chart_3={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"BAR_CHART_3"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M29,50h6c1.657,0,3-1.343,3-3V22c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3\r\n\t\t\tv25C26,48.657,27.343,50,29,50z M46,50h6c1.657,0,3-1.343,3-3V36c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v11\r\n\t\t\tC43,48.657,44.343,50,46,50z M61.5,53h-59C1.119,53,0,54.12,0,55.5v1C0,57.881,1.119,59,2.5,59h59c1.381,0,2.5-1.119,2.5-2.5v-1\r\n\t\t\tC64,54.12,62.881,53,61.5,53z M12,50h6c1.657,0,3-1.343,3-3V8c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v39\r\n\t\t\tC9,48.657,10.343,50,12,50z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M29,50h6c1.657,0,3-1.343,3-3V22c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3\r\n\t\t\tv25C26,48.657,27.343,50,29,50z M46,50h6c1.657,0,3-1.343,3-3V36c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v11\r\n\t\t\tC43,48.657,44.343,50,46,50z M61.5,53h-59C1.119,53,0,54.12,0,55.5v1C0,57.881,1.119,59,2.5,59h59c1.381,0,2.5-1.119,2.5-2.5v-1\r\n\t\t\tC64,54.12,62.881,53,61.5,53z M12,50h6c1.657,0,3-1.343,3-3V8c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v39\r\n\t\t\tC9,48.657,10.343,50,12,50z"},"children":[]}]}]}]}]}]};exports.bar_chart_3=bar_chart_3;var bar_graph={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"BAR_GRAPH_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BAR_GRAPH"},"children":[{"name":"g","attribs":{"id":"BAR_GRAPH"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M48,50h6c1.657,0,3-1.343,3-3V26c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v21C45,48.657,46.343,50,48,50z M31,50h6\r\n\t\t\t\tc1.657,0,3-1.343,3-3V14c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v33C28,48.657,29.343,50,31,50z M61,53H6v-7l0,0V8\r\n\t\t\t\tc0-1.657-1.343-3-3-3S0,6.343,0,8v48c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,54.344,62.657,53,61,53z M14,50h6\r\n\t\t\t\tc1.657,0,3-1.343,3-3v-6c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v6C11,48.657,12.343,50,14,50z"},"children":[{"name":"path","attribs":{"d":"M48,50h6c1.657,0,3-1.343,3-3V26c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v21C45,48.657,46.343,50,48,50z M31,50h6\r\n\t\t\t\tc1.657,0,3-1.343,3-3V14c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v33C28,48.657,29.343,50,31,50z M61,53H6v-7l0,0V8\r\n\t\t\t\tc0-1.657-1.343-3-3-3S0,6.343,0,8v48c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,54.344,62.657,53,61,53z M14,50h6\r\n\t\t\t\tc1.657,0,3-1.343,3-3v-6c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v6C11,48.657,12.343,50,14,50z"},"children":[]}]}]}]}]}]}]}]};exports.bar_graph=bar_graph;var basket={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"BASKET_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BASKET"},"children":[{"name":"g","attribs":{"id":"BASKET"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M64,27.987c0-0.006-0.001-0.012-0.001-0.019c-0.001-0.074-0.005-0.148-0.011-0.221c-0.004-0.042-0.008-0.084-0.014-0.125\r\n\t\t\t\tc-0.004-0.04-0.011-0.08-0.017-0.12c-0.22-1.342-1.327-2.386-2.703-2.502H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h2.658l6.432,25.729\r\n\t\t\t\tl0.009-0.002C12.424,58.029,13.595,59,15,59l0,0c0.005,0,0.01-0.001,0.016-0.001V59H49c1.404,0,2.576-0.971,2.9-2.275l0.01,0.002\r\n\t\t\t\tL58.342,31H61c1.657,0,3-1.343,3-3c0-0.002,0-0.003,0-0.005C64,27.992,64,27.99,64,27.987z M23,50c0,1.657-1.343,3-3,3\r\n\t\t\t\ts-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3\r\n\t\t\t\ts3,1.343,3,3V50z M47,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35.383,9.469L42.018,22\r\n\t\t\t\th6.789L40.686,6.662l-0.011,0.006C40.184,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3c0,0.534,0.15,1.028,0.396,1.462L35.383,9.469\r\n\t\t\t\tz M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3c-1.175,0-2.181,0.682-2.674,1.665L23.32,6.662\r\n\t\t\t\tL15.2,22h6.789L28.623,9.469z"},"children":[{"name":"path","attribs":{"d":"M64,27.987c0-0.006-0.001-0.012-0.001-0.019c-0.001-0.074-0.005-0.148-0.011-0.221c-0.004-0.042-0.008-0.084-0.014-0.125\r\n\t\t\t\tc-0.004-0.04-0.011-0.08-0.017-0.12c-0.22-1.342-1.327-2.386-2.703-2.502H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h2.658l6.432,25.729\r\n\t\t\t\tl0.009-0.002C12.424,58.029,13.595,59,15,59l0,0c0.005,0,0.01-0.001,0.016-0.001V59H49c1.404,0,2.576-0.971,2.9-2.275l0.01,0.002\r\n\t\t\t\tL58.342,31H61c1.657,0,3-1.343,3-3c0-0.002,0-0.003,0-0.005C64,27.992,64,27.99,64,27.987z M23,50c0,1.657-1.343,3-3,3\r\n\t\t\t\ts-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3\r\n\t\t\t\ts3,1.343,3,3V50z M47,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35.383,9.469L42.018,22\r\n\t\t\t\th6.789L40.686,6.662l-0.011,0.006C40.184,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3c0,0.534,0.15,1.028,0.396,1.462L35.383,9.469\r\n\t\t\t\tz M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3c-1.175,0-2.181,0.682-2.674,1.665L23.32,6.662\r\n\t\t\t\tL15.2,22h6.789L28.623,9.469z"},"children":[]}]}]}]}]}]}]}]};exports.basket=basket;var basket_add={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"BASKET__x2F__ADD_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BASKET__x2F__ADD"},"children":[{"name":"g","attribs":{"id":"BASKET__x2F__ADD"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3c-1.175,0-2.181,0.682-2.674,1.665\r\n\t\t\t\tL23.32,6.662L15.2,22h6.789L28.623,9.469z M35.383,9.469l3.329,6.289c1.313-1.574,2.922-2.89,4.742-3.866l-2.769-5.23\r\n\t\t\t\tl-0.012,0.006C40.184,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3c0,0.534,0.15,1.028,0.396,1.462L35.383,9.469z M51,13\r\n\t\t\t\tc-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13s13-5.82,13-13C64,18.82,58.18,13,51,13z M57,29h-3v3c0,1.657-1.343,3-3,3\r\n\t\t\t\ts-3-1.343-3-3v-3h-3c-1.657,0-3-1.343-3-3s1.343-3,3-3h3v-3c0-1.657,1.343-3,3-3s3,1.343,3,3v3h3c1.657,0,3,1.343,3,3\r\n\t\t\t\tS58.657,29,57,29z M47,41.477V50c0,1.657-1.343,3-3,3s-3-1.343-3-3V38.479C37.346,35.547,35,31.05,35,26\r\n\t\t\t\tc0-0.338,0.029-0.668,0.051-1H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h2.658l6.432,25.729l0.009-0.002C12.424,58.029,13.595,59,15,59\r\n\t\t\t\tl0,0c0.005,0,0.01-0.001,0.016-0.001V59H49c1.404,0,2.576-0.971,2.9-2.275l0.01,0.002l3.863-15.453\r\n\t\t\t\tC54.266,41.746,52.663,42,51,42C49.616,42,48.281,41.807,47,41.477z M23,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34\r\n\t\t\t\tc0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z"},"children":[{"name":"path","attribs":{"d":"M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3c-1.175,0-2.181,0.682-2.674,1.665\r\n\t\t\t\tL23.32,6.662L15.2,22h6.789L28.623,9.469z M35.383,9.469l3.329,6.289c1.313-1.574,2.922-2.89,4.742-3.866l-2.769-5.23\r\n\t\t\t\tl-0.012,0.006C40.184,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3c0,0.534,0.15,1.028,0.396,1.462L35.383,9.469z M51,13\r\n\t\t\t\tc-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13s13-5.82,13-13C64,18.82,58.18,13,51,13z M57,29h-3v3c0,1.657-1.343,3-3,3\r\n\t\t\t\ts-3-1.343-3-3v-3h-3c-1.657,0-3-1.343-3-3s1.343-3,3-3h3v-3c0-1.657,1.343-3,3-3s3,1.343,3,3v3h3c1.657,0,3,1.343,3,3\r\n\t\t\t\tS58.657,29,57,29z M47,41.477V50c0,1.657-1.343,3-3,3s-3-1.343-3-3V38.479C37.346,35.547,35,31.05,35,26\r\n\t\t\t\tc0-0.338,0.029-0.668,0.051-1H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h2.658l6.432,25.729l0.009-0.002C12.424,58.029,13.595,59,15,59\r\n\t\t\t\tl0,0c0.005,0,0.01-0.001,0.016-0.001V59H49c1.404,0,2.576-0.971,2.9-2.275l0.01,0.002l3.863-15.453\r\n\t\t\t\tC54.266,41.746,52.663,42,51,42C49.616,42,48.281,41.807,47,41.477z M23,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34\r\n\t\t\t\tc0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z"},"children":[]}]}]}]}]}]}]}]};exports.basket_add=basket_add;var basket_delete={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"BASKET__x2F__DELETE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BASKET__x2F__DELETE"},"children":[{"name":"g","attribs":{"id":"BASKET__x2F__DELETE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3c-1.175,0-2.181,0.682-2.674,1.665\r\n\t\t\t\tL23.32,6.662L15.2,22h6.789L28.623,9.469z M35.383,9.469l3.329,6.289c1.313-1.574,2.922-2.89,4.742-3.866l-2.769-5.23\r\n\t\t\t\tl-0.012,0.006C40.184,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3c0,0.534,0.15,1.028,0.396,1.462L35.383,9.469z M47,41.477V50\r\n\t\t\t\tc0,1.657-1.343,3-3,3s-3-1.343-3-3V38.479C37.346,35.547,35,31.05,35,26c0-0.338,0.029-0.668,0.05-1H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h2.658l6.432,25.729l0.009-0.002C12.424,58.029,13.595,59,15,59l0,0c0.005,0,0.01-0.001,0.016-0.001V59H49\r\n\t\t\t\tc1.404,0,2.576-0.971,2.9-2.275l0.01,0.002l3.863-15.453C54.266,41.746,52.663,42,51,42C49.616,42,48.281,41.807,47,41.477z\r\n\t\t\t\t M23,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34\r\n\t\t\t\tc0-1.657,1.343-3,3-3s3,1.343,3,3V50z M51,13c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13s13-5.82,13-13C64,18.82,58.18,13,51,13\r\n\t\t\t\tz M57.121,27.879C57.664,28.422,58,29.172,58,30c0,1.657-1.343,3-3,3c-0.828,0-1.578-0.336-2.121-0.879L51,30.243l-1.879,1.879\r\n\t\t\t\tC48.578,32.664,47.828,33,47,33c-1.657,0-3-1.343-3-3c0-0.829,0.336-1.578,0.879-2.121L46.757,26l-1.879-1.879\r\n\t\t\t\tC44.336,23.578,44,22.828,44,22c0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879L51,21.757l1.879-1.879\r\n\t\t\t\tC53.422,19.336,54.172,19,55,19c1.657,0,3,1.343,3,3c0,0.828-0.336,1.578-0.879,2.121L55.243,26L57.121,27.879z"},"children":[{"name":"path","attribs":{"d":"M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3c-1.175,0-2.181,0.682-2.674,1.665\r\n\t\t\t\tL23.32,6.662L15.2,22h6.789L28.623,9.469z M35.383,9.469l3.329,6.289c1.313-1.574,2.922-2.89,4.742-3.866l-2.769-5.23\r\n\t\t\t\tl-0.012,0.006C40.184,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3c0,0.534,0.15,1.028,0.396,1.462L35.383,9.469z M47,41.477V50\r\n\t\t\t\tc0,1.657-1.343,3-3,3s-3-1.343-3-3V38.479C37.346,35.547,35,31.05,35,26c0-0.338,0.029-0.668,0.05-1H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h2.658l6.432,25.729l0.009-0.002C12.424,58.029,13.595,59,15,59l0,0c0.005,0,0.01-0.001,0.016-0.001V59H49\r\n\t\t\t\tc1.404,0,2.576-0.971,2.9-2.275l0.01,0.002l3.863-15.453C54.266,41.746,52.663,42,51,42C49.616,42,48.281,41.807,47,41.477z\r\n\t\t\t\t M23,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34\r\n\t\t\t\tc0-1.657,1.343-3,3-3s3,1.343,3,3V50z M51,13c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13s13-5.82,13-13C64,18.82,58.18,13,51,13\r\n\t\t\t\tz M57.121,27.879C57.664,28.422,58,29.172,58,30c0,1.657-1.343,3-3,3c-0.828,0-1.578-0.336-2.121-0.879L51,30.243l-1.879,1.879\r\n\t\t\t\tC48.578,32.664,47.828,33,47,33c-1.657,0-3-1.343-3-3c0-0.829,0.336-1.578,0.879-2.121L46.757,26l-1.879-1.879\r\n\t\t\t\tC44.336,23.578,44,22.828,44,22c0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879L51,21.757l1.879-1.879\r\n\t\t\t\tC53.422,19.336,54.172,19,55,19c1.657,0,3,1.343,3,3c0,0.828-0.336,1.578-0.879,2.121L55.243,26L57.121,27.879z"},"children":[]}]}]}]}]}]}]}]};exports.basket_delete=basket_delete;var basket_ok={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"BASKET__x2F__OK_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BASKET__x2F__OK"},"children":[{"name":"g","attribs":{"id":"BASKET__x2F__OK"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M35.383,9.469l3.329,6.289c1.313-1.574,2.922-2.89,4.742-3.866l-2.769-5.23l-0.012,0.006C40.184,5.683,39.176,5,38,5\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.534,0.15,1.028,0.396,1.462L35.383,9.469z M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-1.175,0-2.181,0.682-2.674,1.665L23.32,6.662L15.2,22h6.789L28.623,9.469z M47,41.477V50\r\n\t\t\t\tc0,1.657-1.343,3-3,3s-3-1.343-3-3V38.479C37.346,35.547,35,31.05,35,26c0-0.338,0.029-0.668,0.05-1H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h2.658l6.432,25.729l0.009-0.002C12.424,58.029,13.595,59,15,59l0,0c0.005,0,0.01-0.001,0.016-0.001V59H49\r\n\t\t\t\tc1.404,0,2.576-0.971,2.9-2.275l0.01,0.002l3.863-15.453C54.266,41.746,52.663,42,51,42C49.616,42,48.281,41.807,47,41.477z\r\n\t\t\t\t M23,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34\r\n\t\t\t\tc0-1.657,1.343-3,3-3s3,1.343,3,3V50z M51,13c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13s13-5.82,13-13C64,18.82,58.18,13,51,13\r\n\t\t\t\tz M59.121,25.122l-8,8C50.578,33.664,49.829,34,49,34c-0.828,0-1.578-0.336-2.121-0.879l-4-4C42.336,28.579,42,27.828,42,27\r\n\t\t\t\tc0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879L49,26.758l5.879-5.879C55.422,20.336,56.172,20,57,20c1.657,0,3,1.343,3,3\r\n\t\t\t\tC60,23.828,59.664,24.579,59.121,25.122z"},"children":[{"name":"path","attribs":{"d":"M35.383,9.469l3.329,6.289c1.313-1.574,2.922-2.89,4.742-3.866l-2.769-5.23l-0.012,0.006C40.184,5.683,39.176,5,38,5\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.534,0.15,1.028,0.396,1.462L35.383,9.469z M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-1.175,0-2.181,0.682-2.674,1.665L23.32,6.662L15.2,22h6.789L28.623,9.469z M47,41.477V50\r\n\t\t\t\tc0,1.657-1.343,3-3,3s-3-1.343-3-3V38.479C37.346,35.547,35,31.05,35,26c0-0.338,0.029-0.668,0.05-1H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h2.658l6.432,25.729l0.009-0.002C12.424,58.029,13.595,59,15,59l0,0c0.005,0,0.01-0.001,0.016-0.001V59H49\r\n\t\t\t\tc1.404,0,2.576-0.971,2.9-2.275l0.01,0.002l3.863-15.453C54.266,41.746,52.663,42,51,42C49.616,42,48.281,41.807,47,41.477z\r\n\t\t\t\t M23,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34\r\n\t\t\t\tc0-1.657,1.343-3,3-3s3,1.343,3,3V50z M51,13c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13s13-5.82,13-13C64,18.82,58.18,13,51,13\r\n\t\t\t\tz M59.121,25.122l-8,8C50.578,33.664,49.829,34,49,34c-0.828,0-1.578-0.336-2.121-0.879l-4-4C42.336,28.579,42,27.828,42,27\r\n\t\t\t\tc0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879L49,26.758l5.879-5.879C55.422,20.336,56.172,20,57,20c1.657,0,3,1.343,3,3\r\n\t\t\t\tC60,23.828,59.664,24.579,59.121,25.122z"},"children":[]}]}]}]}]}]}]}]};exports.basket_ok=basket_ok;var basket_remove={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"BASKET__x2F__REMOVE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BASKET__x2F__REMOVE"},"children":[{"name":"g","attribs":{"id":"BASKET__x2F__REMOVE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3c-1.175,0-2.181,0.682-2.673,1.665\r\n\t\t\t\tL23.32,6.662L15.2,22h6.789L28.623,9.469z M35.383,9.469l3.329,6.289c1.313-1.574,2.922-2.89,4.742-3.866l-2.769-5.23\r\n\t\t\t\tl-0.012,0.006C40.184,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3c0,0.534,0.15,1.028,0.396,1.462L35.383,9.469z M47,41.477V50\r\n\t\t\t\tc0,1.657-1.343,3-3,3s-3-1.343-3-3V38.479C37.346,35.547,35,31.05,35,26c0-0.338,0.029-0.668,0.05-1H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h2.658l6.432,25.729l0.009-0.002C12.424,58.029,13.595,59,15,59l0,0c0.005,0,0.01-0.001,0.016-0.001V59H49\r\n\t\t\t\tc1.404,0,2.576-0.971,2.9-2.275l0.01,0.002l3.863-15.453C54.266,41.746,52.663,42,51,42C49.616,42,48.281,41.807,47,41.477z\r\n\t\t\t\t M23,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34\r\n\t\t\t\tc0-1.657,1.343-3,3-3s3,1.343,3,3V50z M51,13c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13s13-5.82,13-13C64,18.82,58.18,13,51,13\r\n\t\t\t\tz M57,29H45c-1.657,0-3-1.343-3-3s1.343-3,3-3h12c1.657,0,3,1.343,3,3S58.657,29,57,29z"},"children":[{"name":"path","attribs":{"d":"M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3c-1.175,0-2.181,0.682-2.673,1.665\r\n\t\t\t\tL23.32,6.662L15.2,22h6.789L28.623,9.469z M35.383,9.469l3.329,6.289c1.313-1.574,2.922-2.89,4.742-3.866l-2.769-5.23\r\n\t\t\t\tl-0.012,0.006C40.184,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3c0,0.534,0.15,1.028,0.396,1.462L35.383,9.469z M47,41.477V50\r\n\t\t\t\tc0,1.657-1.343,3-3,3s-3-1.343-3-3V38.479C37.346,35.547,35,31.05,35,26c0-0.338,0.029-0.668,0.05-1H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h2.658l6.432,25.729l0.009-0.002C12.424,58.029,13.595,59,15,59l0,0c0.005,0,0.01-0.001,0.016-0.001V59H49\r\n\t\t\t\tc1.404,0,2.576-0.971,2.9-2.275l0.01,0.002l3.863-15.453C54.266,41.746,52.663,42,51,42C49.616,42,48.281,41.807,47,41.477z\r\n\t\t\t\t M23,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34\r\n\t\t\t\tc0-1.657,1.343-3,3-3s3,1.343,3,3V50z M51,13c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13s13-5.82,13-13C64,18.82,58.18,13,51,13\r\n\t\t\t\tz M57,29H45c-1.657,0-3-1.343-3-3s1.343-3,3-3h12c1.657,0,3,1.343,3,3S58.657,29,57,29z"},"children":[]}]}]}]}]}]}]}]};exports.basket_remove=basket_remove;var battery_1_3={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"BATTERY__x2F__1_x2F_3_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BATTERY__x2F__1_x2F_3"},"children":[{"name":"g","attribs":{"id":"BATTERY__x2F__1_x2F_3"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M22,26H9v12h13V26z M61,26v-6c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v24c0,1.657,1.343,3,3,3h55\r\n\t\t\t\tc1.657,0,3-1.343,3-3v-6c1.657,0,3-1.343,3-3v-6C64,27.343,62.657,26,61,26z M55,41H6V23h49V41z"},"children":[{"name":"path","attribs":{"d":"M22,26H9v12h13V26z M61,26v-6c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v24c0,1.657,1.343,3,3,3h55\r\n\t\t\t\tc1.657,0,3-1.343,3-3v-6c1.657,0,3-1.343,3-3v-6C64,27.343,62.657,26,61,26z M55,41H6V23h49V41z"},"children":[]}]}]}]}]}]}]}]};exports.battery_1_3=battery_1_3;var battery_2_3={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"BATTERY__x2F__2_x2F_3_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BATTERY__x2F__2_x2F_3"},"children":[{"name":"g","attribs":{"id":"BATTERY__x2F__2_x2F_3"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M37,26H9v12h28V26z M61,26v-6c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v24c0,1.657,1.343,3,3,3h55\r\n\t\t\t\tc1.657,0,3-1.343,3-3v-6c1.657,0,3-1.343,3-3v-6C64,27.343,62.657,26,61,26z M55,41H6V23h49V41z"},"children":[{"name":"path","attribs":{"d":"M37,26H9v12h28V26z M61,26v-6c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v24c0,1.657,1.343,3,3,3h55\r\n\t\t\t\tc1.657,0,3-1.343,3-3v-6c1.657,0,3-1.343,3-3v-6C64,27.343,62.657,26,61,26z M55,41H6V23h49V41z"},"children":[]}]}]}]}]}]}]}]};exports.battery_2_3=battery_2_3;var battery_empty={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"BATTERY__x2F__EMPTY_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BATTERY__x2F__EMPTY"},"children":[{"name":"g","attribs":{"id":"BATTERY__x2F__EMPTY"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M61,26v-6c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v24c0,1.657,1.343,3,3,3h55c1.657,0,3-1.343,3-3v-6\r\n\t\t\t\tc1.657,0,3-1.343,3-3v-6C64,27.343,62.657,26,61,26z M55,41H6V23h49V41z"},"children":[{"name":"path","attribs":{"d":"M61,26v-6c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v24c0,1.657,1.343,3,3,3h55c1.657,0,3-1.343,3-3v-6\r\n\t\t\t\tc1.657,0,3-1.343,3-3v-6C64,27.343,62.657,26,61,26z M55,41H6V23h49V41z"},"children":[]}]}]}]}]}]}]}]};exports.battery_empty=battery_empty;var battery_full={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"BATTERY_FULL_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BATTERY_FULL"},"children":[{"name":"g","attribs":{"id":"BATTERY_FULL"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M61,26v-6c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v24c0,1.657,1.343,3,3,3h55c1.657,0,3-1.343,3-3v-6\r\n\t\t\t\tc1.657,0,3-1.343,3-3v-6C64,27.343,62.657,26,61,26z M55,41H6V23h49V41z M52,26H9v12h43V26z"},"children":[{"name":"path","attribs":{"d":"M61,26v-6c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v24c0,1.657,1.343,3,3,3h55c1.657,0,3-1.343,3-3v-6\r\n\t\t\t\tc1.657,0,3-1.343,3-3v-6C64,27.343,62.657,26,61,26z M55,41H6V23h49V41z M52,26H9v12h43V26z"},"children":[]}]}]}]}]}]}]}]};exports.battery_full=battery_full;var behance={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"behance_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"behance"},"children":[{"name":"g","attribs":{"id":"behance"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M25.989,30.502c3.455-1.68,5.402-4.417,5.402-8.338c0-7.438-5.12-10.15-12.686-10.15H0.001v40.192h19.255\r\n\t\t\t\tc7.179,0,14.027-3.472,14.027-11.584C33.284,35.646,30.836,31.901,25.989,30.502z M7.991,18.774h8.18\r\n\t\t\t\tc3.115,0,6.01,0.786,6.01,4.591c0,3.352-2.283,4.749-5.343,4.749H7.991V18.774z M17.338,45.062H7.991V34.098h9.513\r\n\t\t\t\tc3.73,0,6.288,1.625,6.288,5.707C23.792,43.947,20.789,45.062,17.338,45.062z M57.973,15.993H42.027v4.072h15.943v-4.072H57.973z\r\n\t\t\t\t M50.05,22.502c-8.735,0-14.692,6.601-14.692,15.273c0,8.947,5.621,15.211,14.692,15.211c6.515,0,10.62-1.965,12.843-8.789\r\n\t\t\t\th-6.328c-0.502,1.793-3.064,2.806-6.238,2.806c-4.395,0-6.844-1.854-7.064-6.892h20.756\r\n\t\t\t\tC64.574,31.219,59.843,22.502,50.05,22.502z M43.262,34.198c0.109-2.234,1.557-5.709,6.563-5.709\r\n\t\t\t\tc3.839,0,5.567,1.684,6.293,5.709H43.262z"},"children":[{"name":"path","attribs":{"d":"M25.989,30.502c3.455-1.68,5.402-4.417,5.402-8.338c0-7.438-5.12-10.15-12.686-10.15H0.001v40.192h19.255\r\n\t\t\t\tc7.179,0,14.027-3.472,14.027-11.584C33.284,35.646,30.836,31.901,25.989,30.502z M7.991,18.774h8.18\r\n\t\t\t\tc3.115,0,6.01,0.786,6.01,4.591c0,3.352-2.283,4.749-5.343,4.749H7.991V18.774z M17.338,45.062H7.991V34.098h9.513\r\n\t\t\t\tc3.73,0,6.288,1.625,6.288,5.707C23.792,43.947,20.789,45.062,17.338,45.062z M57.973,15.993H42.027v4.072h15.943v-4.072H57.973z\r\n\t\t\t\t M50.05,22.502c-8.735,0-14.692,6.601-14.692,15.273c0,8.947,5.621,15.211,14.692,15.211c6.515,0,10.62-1.965,12.843-8.789\r\n\t\t\t\th-6.328c-0.502,1.793-3.064,2.806-6.238,2.806c-4.395,0-6.844-1.854-7.064-6.892h20.756\r\n\t\t\t\tC64.574,31.219,59.843,22.502,50.05,22.502z M43.262,34.198c0.109-2.234,1.557-5.709,6.563-5.709\r\n\t\t\t\tc3.839,0,5.567,1.684,6.293,5.709H43.262z"},"children":[]}]}]}]}]}]}]}]};exports.behance=behance;var bell={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"BELL_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BELL"},"children":[{"name":"g","attribs":{"id":"BELL"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M52,45c-1.657,0-3-1.343-3-3V22c0-7.732-6.268-14-14-14c0-1.657-1.343-3-3-3s-3,1.343-3,3c-7.732,0-14,6.268-14,14v20\r\n\t\t\t\tc0,1.657-1.343,3-3,3s-3,1.343-3,3s1.343,3,3,3h40c1.657,0,3-1.343,3-3S53.657,45,52,45z M32,60c3.314,0,6-2.686,6-6H26\r\n\t\t\t\tC26,57.314,28.686,60,32,60z"},"children":[{"name":"path","attribs":{"d":"M52,45c-1.657,0-3-1.343-3-3V22c0-7.732-6.268-14-14-14c0-1.657-1.343-3-3-3s-3,1.343-3,3c-7.732,0-14,6.268-14,14v20\r\n\t\t\t\tc0,1.657-1.343,3-3,3s-3,1.343-3,3s1.343,3,3,3h40c1.657,0,3-1.343,3-3S53.657,45,52,45z M32,60c3.314,0,6-2.686,6-6H26\r\n\t\t\t\tC26,57.314,28.686,60,32,60z"},"children":[]}]}]}]}]}]}]}]};exports.bell=bell;var bin={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"BIN_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BIN"},"children":[{"name":"g","attribs":{"id":"BIN"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M53,9H38V6c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v3H11c-1.657,0-3,1.343-3,3v3h48v-3C56,10.343,54.657,9,53,9z\r\n\t\t\t\t M11,58c0,1.657,1.343,3,3,3h36c1.657,0,3-1.343,3-3V18H11V58z M41,27c0-1.657,1.343-3,3-3s3,1.343,3,3v25c0,1.657-1.343,3-3,3\r\n\t\t\t\ts-3-1.343-3-3V27z M29,27c0-1.657,1.343-3,3-3s3,1.343,3,3v25c0,1.657-1.343,3-3,3s-3-1.343-3-3V27z M17,27c0-1.657,1.343-3,3-3\r\n\t\t\t\ts3,1.343,3,3v25c0,1.657-1.343,3-3,3s-3-1.343-3-3V27z"},"children":[{"name":"path","attribs":{"d":"M53,9H38V6c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v3H11c-1.657,0-3,1.343-3,3v3h48v-3C56,10.343,54.657,9,53,9z\r\n\t\t\t\t M11,58c0,1.657,1.343,3,3,3h36c1.657,0,3-1.343,3-3V18H11V58z M41,27c0-1.657,1.343-3,3-3s3,1.343,3,3v25c0,1.657-1.343,3-3,3\r\n\t\t\t\ts-3-1.343-3-3V27z M29,27c0-1.657,1.343-3,3-3s3,1.343,3,3v25c0,1.657-1.343,3-3,3s-3-1.343-3-3V27z M17,27c0-1.657,1.343-3,3-3\r\n\t\t\t\ts3,1.343,3,3v25c0,1.657-1.343,3-3,3s-3-1.343-3-3V27z"},"children":[]}]}]}]}]}]}]}]};exports.bin=bin;var block={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"BLOCK_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BLOCK"},"children":[{"name":"g","attribs":{"id":"BLOCK"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tc0-6.098,2.115-11.694,5.63-16.128L48.128,52.37C43.693,55.886,38.098,58,32,58z M52.37,48.128L15.873,11.63\r\n\t\t\t\tC20.307,8.115,25.902,6,32,6c14.359,0,26,11.641,26,26C58,38.098,55.887,43.693,52.37,48.128z"},"children":[{"name":"path","attribs":{"d":"M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tc0-6.098,2.115-11.694,5.63-16.128L48.128,52.37C43.693,55.886,38.098,58,32,58z M52.37,48.128L15.873,11.63\r\n\t\t\t\tC20.307,8.115,25.902,6,32,6c14.359,0,26,11.641,26,26C58,38.098,55.887,43.693,52.37,48.128z"},"children":[]}]}]}]}]}]}]}]};exports.block=block;var bluetooth={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"BLUETOOTH"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M37.243,32l11.879-11.879C49.664,19.578,50,18.829,50,18\r\n\t\t\tc0-0.829-0.336-1.578-0.879-2.121l-15-15C33.578,0.336,32.828,0,32,0c-1.657,0-3,1.343-3,3v20.758l-9.879-9.879\r\n\t\t\tC18.579,13.336,17.828,13,17,13c-1.657,0-3,1.343-3,3c0,0.829,0.336,1.578,0.879,2.121L28.758,32L14.879,45.879\r\n\t\t\tC14.336,46.422,14,47.172,14,48c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L29,40.243V61c0,1.657,1.343,3,3,3\r\n\t\t\tc0.828,0,1.578-0.336,2.121-0.879l15-15C49.664,47.579,50,46.829,50,46c0-0.828-0.336-1.578-0.879-2.121L37.243,32z M35,10.243\r\n\t\t\tL42.757,18L35,25.757V10.243z M35,53.757V38.243L42.757,46L35,53.757z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M37.243,32l11.879-11.879C49.664,19.578,50,18.829,50,18\r\n\t\t\tc0-0.829-0.336-1.578-0.879-2.121l-15-15C33.578,0.336,32.828,0,32,0c-1.657,0-3,1.343-3,3v20.758l-9.879-9.879\r\n\t\t\tC18.579,13.336,17.828,13,17,13c-1.657,0-3,1.343-3,3c0,0.829,0.336,1.578,0.879,2.121L28.758,32L14.879,45.879\r\n\t\t\tC14.336,46.422,14,47.172,14,48c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L29,40.243V61c0,1.657,1.343,3,3,3\r\n\t\t\tc0.828,0,1.578-0.336,2.121-0.879l15-15C49.664,47.579,50,46.829,50,46c0-0.828-0.336-1.578-0.879-2.121L37.243,32z M35,10.243\r\n\t\t\tL42.757,18L35,25.757V10.243z M35,53.757V38.243L42.757,46L35,53.757z"},"children":[]}]}]}]}]}]};exports.bluetooth=bluetooth;var book={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"BOOK_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BOOK"},"children":[{"name":"g","attribs":{"id":"BOOK"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M10,18h8c1.657,0,3-1.343,3-3s-1.343-3-3-3h-8c-1.657,0-3,1.343-3,3S8.343,18,10,18z M10,35h8c1.657,0,3-1.343,3-3\r\n\t\t\t\ts-1.343-3-3-3h-8c-1.657,0-3,1.343-3,3S8.343,35,10,35z M54,3h-3v58h3c1.657,0,3-1.343,3-3V6C57,4.343,55.657,3,54,3z M13,6v3h5\r\n\t\t\t\tc3.314,0,6,2.686,6,6s-2.686,6-6,6h-5v5h5c3.314,0,6,2.686,6,6c0,3.314-2.686,6-6,6h-5v5h5c3.314,0,6,2.686,6,6s-2.686,6-6,6h-5\r\n\t\t\t\tv3c0,1.657,1.343,3,3,3h32V3H16C14.343,3,13,4.343,13,6z M21,49c0-1.657-1.343-3-3-3h-8c-1.657,0-3,1.343-3,3s1.343,3,3,3h8\r\n\t\t\t\tC19.657,52,21,50.657,21,49z"},"children":[{"name":"path","attribs":{"d":"M10,18h8c1.657,0,3-1.343,3-3s-1.343-3-3-3h-8c-1.657,0-3,1.343-3,3S8.343,18,10,18z M10,35h8c1.657,0,3-1.343,3-3\r\n\t\t\t\ts-1.343-3-3-3h-8c-1.657,0-3,1.343-3,3S8.343,35,10,35z M54,3h-3v58h3c1.657,0,3-1.343,3-3V6C57,4.343,55.657,3,54,3z M13,6v3h5\r\n\t\t\t\tc3.314,0,6,2.686,6,6s-2.686,6-6,6h-5v5h5c3.314,0,6,2.686,6,6c0,3.314-2.686,6-6,6h-5v5h5c3.314,0,6,2.686,6,6s-2.686,6-6,6h-5\r\n\t\t\t\tv3c0,1.657,1.343,3,3,3h32V3H16C14.343,3,13,4.343,13,6z M21,49c0-1.657-1.343-3-3-3h-8c-1.657,0-3,1.343-3,3s1.343,3,3,3h8\r\n\t\t\t\tC19.657,52,21,50.657,21,49z"},"children":[]}]}]}]}]}]}]}]};exports.book=book;var book_1={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"BOOK_1_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BOOK_1"},"children":[{"name":"g","attribs":{"id":"BOOK_1"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M61,0c-0.406,0-0.794,0.082-1.146,0.228l0,0L59.848,0.23c-0.009,0.004-0.018,0.007-0.027,0.011L32,11.753L4.179,0.241\r\n\t\t\t\tC4.17,0.237,4.161,0.234,4.152,0.23L4.147,0.228l0,0C3.794,0.082,3.406,0,3,0C1.343,0,0,1.343,0,3v46\r\n\t\t\t\tc0,1.257,0.774,2.333,1.871,2.779l28.942,11.977C31.177,63.913,31.578,64,32,64s0.823-0.087,1.188-0.245l28.941-11.976\r\n\t\t\t\tC63.227,51.333,64,50.257,64,49V3C64,1.343,62.657,0,61,0z M29,56.512L6,46.995V7.488l23,9.517V56.512z M58,46.995l-23,9.517\r\n\t\t\t\tV17.005l23-9.517V46.995z"},"children":[{"name":"path","attribs":{"d":"M61,0c-0.406,0-0.794,0.082-1.146,0.228l0,0L59.848,0.23c-0.009,0.004-0.018,0.007-0.027,0.011L32,11.753L4.179,0.241\r\n\t\t\t\tC4.17,0.237,4.161,0.234,4.152,0.23L4.147,0.228l0,0C3.794,0.082,3.406,0,3,0C1.343,0,0,1.343,0,3v46\r\n\t\t\t\tc0,1.257,0.774,2.333,1.871,2.779l28.942,11.977C31.177,63.913,31.578,64,32,64s0.823-0.087,1.188-0.245l28.941-11.976\r\n\t\t\t\tC63.227,51.333,64,50.257,64,49V3C64,1.343,62.657,0,61,0z M29,56.512L6,46.995V7.488l23,9.517V56.512z M58,46.995l-23,9.517\r\n\t\t\t\tV17.005l23-9.517V46.995z"},"children":[]}]}]}]}]}]}]}]};exports.book_1=book_1;var book_2={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"BOOK_2_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BOOK_2"},"children":[{"name":"g","attribs":{"id":"BOOK_2"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M10.759,32.73L10.759,32.73l11,5l0,0C22.137,37.902,22.557,38,23,38c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-1.214-0.721-2.259-1.759-2.731l0,0l-11-5l0,0C12.863,27.097,12.443,27,12,27c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC9,31.214,9.721,32.259,10.759,32.73z M10.759,43.73L10.759,43.73l11,5l0,0C22.137,48.902,22.557,49,23,49c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-1.214-0.721-2.259-1.759-2.73l0,0l-11-5l0,0C12.863,38.098,12.443,38,12,38c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC9,42.214,9.721,43.259,10.759,43.73z M10.759,21.731L10.759,21.731l11,5l0,0C22.137,26.903,22.557,27,23,27c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-1.214-0.721-2.259-1.759-2.731l0,0l-11-5l0,0C12.863,16.097,12.443,16,12,16c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC9,20.214,9.721,21.259,10.759,21.731z M41,49c0.443,0,0.863-0.098,1.241-0.27l0,0l11-5l0,0C54.279,43.259,55,42.214,55,41\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.443,0-0.863,0.098-1.241,0.27l0,0l-11,5l0,0C38.721,43.741,38,44.786,38,46C38,47.657,39.343,49,41,49z\r\n\t\t\t\t M61,0c-0.406,0-0.794,0.082-1.146,0.228l0,0L59.848,0.23c-0.009,0.004-0.018,0.007-0.027,0.011L32,11.753L4.179,0.241\r\n\t\t\t\tC4.17,0.237,4.161,0.234,4.152,0.23L4.147,0.228l0,0C3.794,0.082,3.406,0,3,0C1.343,0,0,1.343,0,3v46\r\n\t\t\t\tc0,1.257,0.774,2.333,1.871,2.779l28.942,11.977C31.177,63.913,31.578,64,32,64s0.823-0.087,1.188-0.245l28.941-11.976\r\n\t\t\t\tC63.227,51.333,64,50.257,64,49V3C64,1.343,62.657,0,61,0z M29,56.512L6,46.995V7.488l23,9.517V56.512z M58,46.995l-23,9.517\r\n\t\t\t\tV17.005l23-9.517V46.995z M41,38c0.443,0,0.863-0.098,1.241-0.27l0,0l11-5C54.279,32.259,55,31.214,55,30c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.443,0-0.863,0.097-1.241,0.269l0,0l-11,5l0,0C38.721,32.741,38,33.786,38,35C38,36.657,39.343,38,41,38z M41,27\r\n\t\t\t\tc0.443,0,0.863-0.097,1.241-0.269l0,0l11-5l0,0C54.279,21.259,55,20.214,55,19c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.443,0-0.863,0.097-1.241,0.269l0,0l-11,5C38.721,21.741,38,22.786,38,24C38,25.657,39.343,27,41,27z"},"children":[{"name":"path","attribs":{"d":"M10.759,32.73L10.759,32.73l11,5l0,0C22.137,37.902,22.557,38,23,38c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-1.214-0.721-2.259-1.759-2.731l0,0l-11-5l0,0C12.863,27.097,12.443,27,12,27c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC9,31.214,9.721,32.259,10.759,32.73z M10.759,43.73L10.759,43.73l11,5l0,0C22.137,48.902,22.557,49,23,49c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-1.214-0.721-2.259-1.759-2.73l0,0l-11-5l0,0C12.863,38.098,12.443,38,12,38c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC9,42.214,9.721,43.259,10.759,43.73z M10.759,21.731L10.759,21.731l11,5l0,0C22.137,26.903,22.557,27,23,27c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-1.214-0.721-2.259-1.759-2.731l0,0l-11-5l0,0C12.863,16.097,12.443,16,12,16c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC9,20.214,9.721,21.259,10.759,21.731z M41,49c0.443,0,0.863-0.098,1.241-0.27l0,0l11-5l0,0C54.279,43.259,55,42.214,55,41\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.443,0-0.863,0.098-1.241,0.27l0,0l-11,5l0,0C38.721,43.741,38,44.786,38,46C38,47.657,39.343,49,41,49z\r\n\t\t\t\t M61,0c-0.406,0-0.794,0.082-1.146,0.228l0,0L59.848,0.23c-0.009,0.004-0.018,0.007-0.027,0.011L32,11.753L4.179,0.241\r\n\t\t\t\tC4.17,0.237,4.161,0.234,4.152,0.23L4.147,0.228l0,0C3.794,0.082,3.406,0,3,0C1.343,0,0,1.343,0,3v46\r\n\t\t\t\tc0,1.257,0.774,2.333,1.871,2.779l28.942,11.977C31.177,63.913,31.578,64,32,64s0.823-0.087,1.188-0.245l28.941-11.976\r\n\t\t\t\tC63.227,51.333,64,50.257,64,49V3C64,1.343,62.657,0,61,0z M29,56.512L6,46.995V7.488l23,9.517V56.512z M58,46.995l-23,9.517\r\n\t\t\t\tV17.005l23-9.517V46.995z M41,38c0.443,0,0.863-0.098,1.241-0.27l0,0l11-5C54.279,32.259,55,31.214,55,30c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.443,0-0.863,0.097-1.241,0.269l0,0l-11,5l0,0C38.721,32.741,38,33.786,38,35C38,36.657,39.343,38,41,38z M41,27\r\n\t\t\t\tc0.443,0,0.863-0.097,1.241-0.269l0,0l11-5l0,0C54.279,21.259,55,20.214,55,19c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.443,0-0.863,0.097-1.241,0.269l0,0l-11,5C38.721,21.741,38,22.786,38,24C38,25.657,39.343,27,41,27z"},"children":[]}]}]}]}]}]}]}]};exports.book_2=book_2;var bookmark={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"BOOKMARK_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BOOKMARK"},"children":[{"name":"g","attribs":{"id":"BOOKMARK"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M41,5H23c-1.657,0-3,1.343-3,3v51l12-12l12,12V8C44,6.343,42.657,5,41,5z"},"children":[{"name":"path","attribs":{"d":"M41,5H23c-1.657,0-3,1.343-3,3v51l12-12l12,12V8C44,6.343,42.657,5,41,5z"},"children":[]}]}]}]}]}]}]}]};exports.bookmark=bookmark;var brightness_high={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"BRIGHTNESS__x2F__HIGH_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BRIGHTNESS__x2F__HIGH"},"children":[{"name":"g","attribs":{"id":"BRIGHTNESS__x2F__HIGH"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M14.879,19.121l0.009-0.009C15.427,19.659,16.17,20,17,20c1.657,0,3-1.343,3-3c0-0.83-0.341-1.573-0.887-2.113\r\n\t\t\t\tl0.009-0.009l-1.556-1.556l-5.445-5.445C11.578,7.336,10.828,7,10,7c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121\r\n\t\t\t\tL14.879,19.121z M47,20c0.83,0,1.573-0.342,2.113-0.888l0.009,0.009l1.555-1.556l5.444-5.444C56.664,11.578,57,10.828,57,10\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879l-5.443,5.445l-1.557,1.556l0.01,0.009C44.342,15.427,44,16.17,44,17\r\n\t\t\t\tC44,18.657,45.343,20,47,20z M32,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8C29,12.657,30.343,14,32,14z\r\n\t\t\t\t M14,32c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h8C12.657,35,14,33.657,14,32z M50.677,46.434l-1.555-1.556\r\n\t\t\t\tC48.578,44.336,47.828,44,47,44c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l1.557,1.556l5.443,5.444\r\n\t\t\t\tC52.422,56.664,53.172,57,54,57c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L50.677,46.434z M17,44\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879l-7,7C7.336,52.422,7,53.172,7,54c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879\r\n\t\t\t\tl5.445-5.444l1.556-1.556C19.664,48.579,20,47.828,20,47C20,45.343,18.657,44,17,44z M61,29h-8c-1.657,0-3,1.343-3,3s1.343,3,3,3\r\n\t\t\t\th8c1.657,0,3-1.343,3-3S62.657,29,61,29z M32,20c-6.627,0-12,5.373-12,12c0,1.021,0.141,2.007,0.381,2.953l1.183,2.958\r\n\t\t\t\tC23.627,41.544,27.524,44,32,44c6.627,0,12-5.372,12-12C44,25.373,38.627,20,32,20z M32,38c-3.314,0-6-2.686-6-6\r\n\t\t\t\tc0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6C38,35.314,35.314,38,32,38z M32,50c-1.657,0-3,1.343-3,3v8c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3v-8C35,51.343,33.657,50,32,50z"},"children":[{"name":"path","attribs":{"d":"M14.879,19.121l0.009-0.009C15.427,19.659,16.17,20,17,20c1.657,0,3-1.343,3-3c0-0.83-0.341-1.573-0.887-2.113\r\n\t\t\t\tl0.009-0.009l-1.556-1.556l-5.445-5.445C11.578,7.336,10.828,7,10,7c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121\r\n\t\t\t\tL14.879,19.121z M47,20c0.83,0,1.573-0.342,2.113-0.888l0.009,0.009l1.555-1.556l5.444-5.444C56.664,11.578,57,10.828,57,10\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879l-5.443,5.445l-1.557,1.556l0.01,0.009C44.342,15.427,44,16.17,44,17\r\n\t\t\t\tC44,18.657,45.343,20,47,20z M32,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8C29,12.657,30.343,14,32,14z\r\n\t\t\t\t M14,32c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h8C12.657,35,14,33.657,14,32z M50.677,46.434l-1.555-1.556\r\n\t\t\t\tC48.578,44.336,47.828,44,47,44c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l1.557,1.556l5.443,5.444\r\n\t\t\t\tC52.422,56.664,53.172,57,54,57c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L50.677,46.434z M17,44\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879l-7,7C7.336,52.422,7,53.172,7,54c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879\r\n\t\t\t\tl5.445-5.444l1.556-1.556C19.664,48.579,20,47.828,20,47C20,45.343,18.657,44,17,44z M61,29h-8c-1.657,0-3,1.343-3,3s1.343,3,3,3\r\n\t\t\t\th8c1.657,0,3-1.343,3-3S62.657,29,61,29z M32,20c-6.627,0-12,5.373-12,12c0,1.021,0.141,2.007,0.381,2.953l1.183,2.958\r\n\t\t\t\tC23.627,41.544,27.524,44,32,44c6.627,0,12-5.372,12-12C44,25.373,38.627,20,32,20z M32,38c-3.314,0-6-2.686-6-6\r\n\t\t\t\tc0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6C38,35.314,35.314,38,32,38z M32,50c-1.657,0-3,1.343-3,3v8c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3v-8C35,51.343,33.657,50,32,50z"},"children":[]}]}]}]}]}]}]}]};exports.brightness_high=brightness_high;var brightness_low={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"BRIGHTNESS__x2F__LOW_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BRIGHTNESS__x2F__LOW"},"children":[{"name":"g","attribs":{"id":"BRIGHTNESS__x2F__LOW"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M12.879,17.122l2,2l0.009-0.009C15.427,19.659,16.17,20,17,20c1.657,0,3-1.343,3-3c0-0.83-0.341-1.573-0.888-2.113\r\n\t\t\t\tl0.009-0.009l-2-2l-0.009,0.009C16.573,12.341,15.83,12,15,12c-1.657,0-3,1.343-3,3c0,0.83,0.341,1.573,0.888,2.112\r\n\t\t\t\tL12.879,17.122z M47,20c0.83,0,1.573-0.342,2.113-0.888l0.009,0.009l2-2l-0.009-0.009C51.659,16.573,52,15.83,52,15\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.83,0-1.573,0.341-2.113,0.888l-0.009-0.009l-2,2l0.009,0.009C44.342,15.427,44,16.17,44,17\r\n\t\t\t\tC44,18.657,45.343,20,47,20z M14,32c0-1.657-1.343-3-3-3H9c-1.657,0-3,1.343-3,3s1.343,3,3,3h2C12.657,35,14,33.657,14,32z\r\n\t\t\t\t M32,14c1.657,0,3-1.343,3-3V9c0-1.657-1.343-3-3-3s-3,1.343-3,3v2C29,12.657,30.343,14,32,14z M32,20c-6.627,0-12,5.373-12,12\r\n\t\t\t\tc0,1.021,0.141,2.007,0.381,2.953l1.183,2.958C23.627,41.544,27.524,44,32,44c6.627,0,12-5.372,12-12C44,25.373,38.627,20,32,20z\r\n\t\t\t\t M32,38c-3.314,0-6-2.686-6-6c0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6C38,35.314,35.314,38,32,38z M49.121,44.879\r\n\t\t\t\tC48.578,44.336,47.828,44,47,44c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l2,2C47.422,51.664,48.172,52,49,52\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L49.121,44.879z M17,44c-0.828,0-1.578,0.336-2.121,0.879l-2,2\r\n\t\t\t\tC12.336,47.422,12,48.172,12,49c0,1.657,1.343,3,3,3c0.828,0,1.579-0.336,2.121-0.879l2-2C19.664,48.579,20,47.828,20,47\r\n\t\t\t\tC20,45.343,18.657,44,17,44z M55,29h-2c-1.657,0-3,1.343-3,3s1.343,3,3,3h2c1.657,0,3-1.343,3-3S56.657,29,55,29z M32,50\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v2c0,1.657,1.343,3,3,3s3-1.343,3-3v-2C35,51.343,33.657,50,32,50z"},"children":[{"name":"path","attribs":{"d":"M12.879,17.122l2,2l0.009-0.009C15.427,19.659,16.17,20,17,20c1.657,0,3-1.343,3-3c0-0.83-0.341-1.573-0.888-2.113\r\n\t\t\t\tl0.009-0.009l-2-2l-0.009,0.009C16.573,12.341,15.83,12,15,12c-1.657,0-3,1.343-3,3c0,0.83,0.341,1.573,0.888,2.112\r\n\t\t\t\tL12.879,17.122z M47,20c0.83,0,1.573-0.342,2.113-0.888l0.009,0.009l2-2l-0.009-0.009C51.659,16.573,52,15.83,52,15\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.83,0-1.573,0.341-2.113,0.888l-0.009-0.009l-2,2l0.009,0.009C44.342,15.427,44,16.17,44,17\r\n\t\t\t\tC44,18.657,45.343,20,47,20z M14,32c0-1.657-1.343-3-3-3H9c-1.657,0-3,1.343-3,3s1.343,3,3,3h2C12.657,35,14,33.657,14,32z\r\n\t\t\t\t M32,14c1.657,0,3-1.343,3-3V9c0-1.657-1.343-3-3-3s-3,1.343-3,3v2C29,12.657,30.343,14,32,14z M32,20c-6.627,0-12,5.373-12,12\r\n\t\t\t\tc0,1.021,0.141,2.007,0.381,2.953l1.183,2.958C23.627,41.544,27.524,44,32,44c6.627,0,12-5.372,12-12C44,25.373,38.627,20,32,20z\r\n\t\t\t\t M32,38c-3.314,0-6-2.686-6-6c0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6C38,35.314,35.314,38,32,38z M49.121,44.879\r\n\t\t\t\tC48.578,44.336,47.828,44,47,44c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l2,2C47.422,51.664,48.172,52,49,52\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L49.121,44.879z M17,44c-0.828,0-1.578,0.336-2.121,0.879l-2,2\r\n\t\t\t\tC12.336,47.422,12,48.172,12,49c0,1.657,1.343,3,3,3c0.828,0,1.579-0.336,2.121-0.879l2-2C19.664,48.579,20,47.828,20,47\r\n\t\t\t\tC20,45.343,18.657,44,17,44z M55,29h-2c-1.657,0-3,1.343-3,3s1.343,3,3,3h2c1.657,0,3-1.343,3-3S56.657,29,55,29z M32,50\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v2c0,1.657,1.343,3,3,3s3-1.343,3-3v-2C35,51.343,33.657,50,32,50z"},"children":[]}]}]}]}]}]}]}]};exports.brightness_low=brightness_low;var browser={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"BROWSER_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BROWSER"},"children":[{"name":"g","attribs":{"id":"BROWSER"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3\r\n\t\t\t\tS13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M61,57H3V16h58V57z"},"children":[{"name":"path","attribs":{"d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3\r\n\t\t\t\tS13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M61,57H3V16h58V57z"},"children":[]}]}]}]}]}]}]}]};exports.browser=browser;var browser_add={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"BROWSER__x2F__ADD_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BROWSER__x2F__ADD"},"children":[{"name":"g","attribs":{"id":"BROWSER__x2F__ADD"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3\r\n\t\t\t\tS13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M61,57H3V16h58V57z M22,40h7v7\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3v-7h7c1.657,0,3-1.343,3-3s-1.343-3-3-3h-7v-7c0-1.657-1.343-3-3-3s-3,1.343-3,3v7h-7\r\n\t\t\t\tc-1.657,0-3,1.343-3,3S20.343,40,22,40z"},"children":[{"name":"path","attribs":{"d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3\r\n\t\t\t\tS13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M61,57H3V16h58V57z M22,40h7v7\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3v-7h7c1.657,0,3-1.343,3-3s-1.343-3-3-3h-7v-7c0-1.657-1.343-3-3-3s-3,1.343-3,3v7h-7\r\n\t\t\t\tc-1.657,0-3,1.343-3,3S20.343,40,22,40z"},"children":[]}]}]}]}]}]}]}]};exports.browser_add=browser_add;var browser_delete={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"BROWSER__x2F__DELETE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BROWSER__x2F__DELETE"},"children":[{"name":"g","attribs":{"id":"BROWSER__x2F__DELETE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3\r\n\t\t\t\tS13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M61,57H3V16h58V57z M27.758,37l-4.95,4.95\r\n\t\t\t\tc-1.172,1.172-1.172,3.071,0,4.243s3.071,1.172,4.243,0l4.95-4.95l4.95,4.95c1.172,1.172,3.07,1.172,4.242,0\r\n\t\t\t\tc1.173-1.172,1.172-3.071,0-4.243L36.243,37l4.95-4.95c1.172-1.172,1.172-3.071,0-4.243c-1.172-1.172-3.071-1.172-4.243,0\r\n\t\t\t\tL32,32.758l-4.95-4.95c-1.171-1.171-3.071-1.172-4.243,0c-1.171,1.172-1.171,3.071,0,4.243L27.758,37z"},"children":[{"name":"path","attribs":{"d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3\r\n\t\t\t\tS13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M61,57H3V16h58V57z M27.758,37l-4.95,4.95\r\n\t\t\t\tc-1.172,1.172-1.172,3.071,0,4.243s3.071,1.172,4.243,0l4.95-4.95l4.95,4.95c1.172,1.172,3.07,1.172,4.242,0\r\n\t\t\t\tc1.173-1.172,1.172-3.071,0-4.243L36.243,37l4.95-4.95c1.172-1.172,1.172-3.071,0-4.243c-1.172-1.172-3.071-1.172-4.243,0\r\n\t\t\t\tL32,32.758l-4.95-4.95c-1.171-1.171-3.071-1.172-4.243,0c-1.171,1.172-1.171,3.071,0,4.243L27.758,37z"},"children":[]}]}]}]}]}]}]}]};exports.browser_delete=browser_delete;var browser_layout_1={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"BROWSER_LAYOUT_1_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BROWSER_LAYOUT_1"},"children":[{"name":"g","attribs":{"id":"BROWSER_LAYOUT_1"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3\r\n\t\t\t\tS13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M15,57H3V31h12V57z M61,57H18V31h43V57z\r\n\t\t\t\t M61,28H3V16h58V28z"},"children":[{"name":"path","attribs":{"d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3\r\n\t\t\t\tS13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M15,57H3V31h12V57z M61,57H18V31h43V57z\r\n\t\t\t\t M61,28H3V16h58V28z"},"children":[]}]}]}]}]}]}]}]};exports.browser_layout_1=browser_layout_1;var browser_layout_2={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"BROWSER_LAYOUT_2_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BROWSER_LAYOUT_2"},"children":[{"name":"g","attribs":{"id":"BROWSER_LAYOUT_2"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3\r\n\t\t\t\tS13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M46,57H3V31h43V57z M61,57H49V31h12V57z\r\n\t\t\t\t M61,28H3V16h58V28z"},"children":[{"name":"path","attribs":{"d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3\r\n\t\t\t\tS13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M46,57H3V31h43V57z M61,57H49V31h12V57z\r\n\t\t\t\t M61,28H3V16h58V28z"},"children":[]}]}]}]}]}]}]}]};exports.browser_layout_2=browser_layout_2;var browser_layout_3={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"BROWSER_LAYOUT_3_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BROWSER_LAYOUT_3"},"children":[{"name":"g","attribs":{"id":"BROWSER_LAYOUT_3"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3\r\n\t\t\t\tS13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M15,57H3V31h12V57z M46,57H18V31h28V57z\r\n\t\t\t\t M61,57H49V31h12V57z M61,28H3V16h58V28z"},"children":[{"name":"path","attribs":{"d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3\r\n\t\t\t\tS13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M15,57H3V31h12V57z M46,57H18V31h28V57z\r\n\t\t\t\t M61,57H49V31h12V57z M61,28H3V16h58V28z"},"children":[]}]}]}]}]}]}]}]};exports.browser_layout_3=browser_layout_3;var browser_ok={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"BROWSER__x2F__OK_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BROWSER__x2F__OK"},"children":[{"name":"g","attribs":{"id":"BROWSER__x2F__OK"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M26.879,45.121C27.422,45.664,28.172,46,29,46s1.578-0.336,2.121-0.879l12-12C43.664,32.579,44,31.828,44,31\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L29,38.757l-3.879-3.878C24.579,34.336,23.828,34,23,34\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L26.879,45.121z M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7\r\n\t\t\t\tz M61,57H3V16h58V57z"},"children":[{"name":"path","attribs":{"d":"M26.879,45.121C27.422,45.664,28.172,46,29,46s1.578-0.336,2.121-0.879l12-12C43.664,32.579,44,31.828,44,31\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L29,38.757l-3.879-3.878C24.579,34.336,23.828,34,23,34\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L26.879,45.121z M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7\r\n\t\t\t\tz M61,57H3V16h58V57z"},"children":[]}]}]}]}]}]}]}]};exports.browser_ok=browser_ok;var browser_remove={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"BROWSER__x2F__REMOVE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BROWSER__x2F__REMOVE"},"children":[{"name":"g","attribs":{"id":"BROWSER__x2F__REMOVE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M22,40h4l0,0h16l0,0c1.657,0,3-1.343,3-3s-1.343-3-3-3h-7l0,0h-6l0,0h-7c-1.657,0-3,1.343-3,3S20.343,40,22,40z M61,4H3\r\n\t\t\t\tC1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3\r\n\t\t\t\ts-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S13.343,7,15,7z M6,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M61,57H3V16h58V57z"},"children":[{"name":"path","attribs":{"d":"M22,40h4l0,0h16l0,0c1.657,0,3-1.343,3-3s-1.343-3-3-3h-7l0,0h-6l0,0h-7c-1.657,0-3,1.343-3,3S20.343,40,22,40z M61,4H3\r\n\t\t\t\tC1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3\r\n\t\t\t\ts-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S13.343,7,15,7z M6,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M61,57H3V16h58V57z"},"children":[]}]}]}]}]}]}]}]};exports.browser_remove=browser_remove;var bullseye={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"BULLSEYE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,26c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6c3.314,0,6-2.686,6-6\r\n\t\t\tC38,28.687,35.314,26,32,26z M32,13c-10.493,0-19,8.506-19,19c0,10.493,8.507,19,19,19c10.493,0,19-8.507,19-19\r\n\t\t\tC51,21.507,42.493,13,32,13z M32,45c-7.18,0-13-5.821-13-13c0-7.18,5.82-13,13-13c7.18,0,13,5.82,13,13C45,39.18,39.18,45,32,45z\r\n\t\t\t M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32c17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58\r\n\t\t\tC17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.36,46.36,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,26c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6c3.314,0,6-2.686,6-6\r\n\t\t\tC38,28.687,35.314,26,32,26z M32,13c-10.493,0-19,8.506-19,19c0,10.493,8.507,19,19,19c10.493,0,19-8.507,19-19\r\n\t\t\tC51,21.507,42.493,13,32,13z M32,45c-7.18,0-13-5.821-13-13c0-7.18,5.82-13,13-13c7.18,0,13,5.82,13,13C45,39.18,39.18,45,32,45z\r\n\t\t\t M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32c17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58\r\n\t\t\tC17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.36,46.36,58,32,58z"},"children":[]}]}]}]}]}]};exports.bullseye=bullseye;var calendar={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CALENDAR_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CALENDAR"},"children":[{"name":"g","attribs":{"id":"CALENDAR"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M48,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8C45,12.657,46.343,14,48,14z M61,8h-6v3\r\n\t\t\t\tc0,3.866-3.134,7-7,7s-7-3.134-7-7V8H23v3c0,3.866-3.134,7-7,7s-7-3.134-7-7V8H3c-1.657,0-3,1.343-3,3v50c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3V11C64,9.343,62.657,8,61,8z M58,58H6V24h52V58z M16,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v8C13,12.657,14.343,14,16,14z M26.361,39.632c-0.373,0.347-0.785,0.663-1.235,0.949\r\n\t\t\t\tc-0.451,0.286-0.875,0.567-1.274,0.845c-0.78,0.538-1.521,1.066-2.223,1.586c-0.702,0.521-1.313,1.088-1.833,1.703\r\n\t\t\t\ts-0.932,1.312-1.235,2.094c-0.304,0.779-0.455,1.698-0.455,2.756H31.47v-3.172h-8.606c0.451-0.625,0.97-1.17,1.56-1.639\r\n\t\t\t\tc0.589-0.468,1.196-0.904,1.82-1.312c0.624-0.407,1.244-0.819,1.859-1.235c0.615-0.416,1.166-0.88,1.651-1.392\r\n\t\t\t\tc0.485-0.51,0.875-1.096,1.17-1.754c0.294-0.66,0.442-1.447,0.442-2.367c0-0.883-0.169-1.68-0.507-2.392\r\n\t\t\t\tc-0.338-0.71-0.793-1.308-1.365-1.794c-0.572-0.485-1.235-0.858-1.989-1.118C26.751,31.13,25.958,31,25.126,31\r\n\t\t\t\tc-1.092,0-2.058,0.187-2.899,0.559c-0.841,0.373-1.539,0.893-2.093,1.56c-0.555,0.667-0.971,1.447-1.248,2.34\r\n\t\t\t\tc-0.277,0.893-0.399,1.859-0.364,2.898h3.536c0-0.484,0.048-0.975,0.143-1.469c0.095-0.494,0.255-0.945,0.481-1.352\r\n\t\t\t\tc0.225-0.407,0.524-0.737,0.897-0.988s0.828-0.377,1.365-0.377c0.797,0,1.452,0.247,1.963,0.741\r\n\t\t\t\tc0.511,0.494,0.767,1.183,0.767,2.067c0,0.555-0.126,1.049-0.377,1.481C27.045,38.895,26.733,39.285,26.361,39.632z\r\n\t\t\t\t M41.467,45.807c-0.269,0.321-0.598,0.582-0.988,0.78c-0.39,0.199-0.828,0.299-1.312,0.299c-0.832,0-1.518-0.247-2.055-0.741\r\n\t\t\t\tc-0.536-0.494-0.85-1.156-0.936-1.988h-3.692c0.017,0.953,0.211,1.789,0.584,2.509c0.373,0.719,0.871,1.321,1.496,1.808\r\n\t\t\t\tc0.623,0.484,1.338,0.844,2.145,1.078s1.65,0.352,2.535,0.352c0.919,0.017,1.785-0.135,2.6-0.455\r\n\t\t\t\tc0.815-0.321,1.529-0.776,2.145-1.365s1.105-1.287,1.47-2.094c0.364-0.805,0.546-1.676,0.546-2.612\r\n\t\t\t\tc0-0.849-0.126-1.651-0.377-2.405c-0.252-0.754-0.615-1.408-1.092-1.963s-1.062-0.997-1.756-1.326\r\n\t\t\t\tc-0.692-0.328-1.49-0.494-2.391-0.494c-0.729,0-1.379,0.109-1.951,0.326c-0.571,0.217-1.108,0.575-1.611,1.078l-0.053-0.052\r\n\t\t\t\tl0.729-4.134h7.514v-3.042H34.85l-1.793,10.062h3.327c0.364-0.503,0.755-0.871,1.171-1.105c0.416-0.233,0.952-0.35,1.611-0.35\r\n\t\t\t\tc0.503,0,0.945,0.086,1.326,0.26c0.381,0.172,0.711,0.416,0.988,0.728c0.276,0.312,0.484,0.676,0.623,1.092\r\n\t\t\t\tc0.14,0.416,0.209,0.858,0.209,1.326c0,0.451-0.074,0.89-0.222,1.313C41.943,45.114,41.734,45.486,41.467,45.807z"},"children":[{"name":"path","attribs":{"d":"M48,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8C45,12.657,46.343,14,48,14z M61,8h-6v3\r\n\t\t\t\tc0,3.866-3.134,7-7,7s-7-3.134-7-7V8H23v3c0,3.866-3.134,7-7,7s-7-3.134-7-7V8H3c-1.657,0-3,1.343-3,3v50c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3V11C64,9.343,62.657,8,61,8z M58,58H6V24h52V58z M16,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v8C13,12.657,14.343,14,16,14z M26.361,39.632c-0.373,0.347-0.785,0.663-1.235,0.949\r\n\t\t\t\tc-0.451,0.286-0.875,0.567-1.274,0.845c-0.78,0.538-1.521,1.066-2.223,1.586c-0.702,0.521-1.313,1.088-1.833,1.703\r\n\t\t\t\ts-0.932,1.312-1.235,2.094c-0.304,0.779-0.455,1.698-0.455,2.756H31.47v-3.172h-8.606c0.451-0.625,0.97-1.17,1.56-1.639\r\n\t\t\t\tc0.589-0.468,1.196-0.904,1.82-1.312c0.624-0.407,1.244-0.819,1.859-1.235c0.615-0.416,1.166-0.88,1.651-1.392\r\n\t\t\t\tc0.485-0.51,0.875-1.096,1.17-1.754c0.294-0.66,0.442-1.447,0.442-2.367c0-0.883-0.169-1.68-0.507-2.392\r\n\t\t\t\tc-0.338-0.71-0.793-1.308-1.365-1.794c-0.572-0.485-1.235-0.858-1.989-1.118C26.751,31.13,25.958,31,25.126,31\r\n\t\t\t\tc-1.092,0-2.058,0.187-2.899,0.559c-0.841,0.373-1.539,0.893-2.093,1.56c-0.555,0.667-0.971,1.447-1.248,2.34\r\n\t\t\t\tc-0.277,0.893-0.399,1.859-0.364,2.898h3.536c0-0.484,0.048-0.975,0.143-1.469c0.095-0.494,0.255-0.945,0.481-1.352\r\n\t\t\t\tc0.225-0.407,0.524-0.737,0.897-0.988s0.828-0.377,1.365-0.377c0.797,0,1.452,0.247,1.963,0.741\r\n\t\t\t\tc0.511,0.494,0.767,1.183,0.767,2.067c0,0.555-0.126,1.049-0.377,1.481C27.045,38.895,26.733,39.285,26.361,39.632z\r\n\t\t\t\t M41.467,45.807c-0.269,0.321-0.598,0.582-0.988,0.78c-0.39,0.199-0.828,0.299-1.312,0.299c-0.832,0-1.518-0.247-2.055-0.741\r\n\t\t\t\tc-0.536-0.494-0.85-1.156-0.936-1.988h-3.692c0.017,0.953,0.211,1.789,0.584,2.509c0.373,0.719,0.871,1.321,1.496,1.808\r\n\t\t\t\tc0.623,0.484,1.338,0.844,2.145,1.078s1.65,0.352,2.535,0.352c0.919,0.017,1.785-0.135,2.6-0.455\r\n\t\t\t\tc0.815-0.321,1.529-0.776,2.145-1.365s1.105-1.287,1.47-2.094c0.364-0.805,0.546-1.676,0.546-2.612\r\n\t\t\t\tc0-0.849-0.126-1.651-0.377-2.405c-0.252-0.754-0.615-1.408-1.092-1.963s-1.062-0.997-1.756-1.326\r\n\t\t\t\tc-0.692-0.328-1.49-0.494-2.391-0.494c-0.729,0-1.379,0.109-1.951,0.326c-0.571,0.217-1.108,0.575-1.611,1.078l-0.053-0.052\r\n\t\t\t\tl0.729-4.134h7.514v-3.042H34.85l-1.793,10.062h3.327c0.364-0.503,0.755-0.871,1.171-1.105c0.416-0.233,0.952-0.35,1.611-0.35\r\n\t\t\t\tc0.503,0,0.945,0.086,1.326,0.26c0.381,0.172,0.711,0.416,0.988,0.728c0.276,0.312,0.484,0.676,0.623,1.092\r\n\t\t\t\tc0.14,0.416,0.209,0.858,0.209,1.326c0,0.451-0.074,0.89-0.222,1.313C41.943,45.114,41.734,45.486,41.467,45.807z"},"children":[]}]}]}]}]}]}]}]};exports.calendar=calendar;var calendar_add={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CALENDAR__x2F__ADD_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CALENDAR__x2F__ADD"},"children":[{"name":"g","attribs":{"id":"CALENDAR__x2F__ADD"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M16,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8C13,12.657,14.343,14,16,14z M25.126,31\r\n\t\t\t\tc-0.001,0-0.002,0-0.003,0h0.007C25.128,31,25.127,31,25.126,31z M48,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3\r\n\t\t\t\tv8C45,12.657,46.343,14,48,14z M25,44h4v4c0,1.657,1.343,3,3,3s3-1.343,3-3v-4h4c1.657,0,3-1.343,3-3s-1.343-3-3-3h-4v-4\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v4h-4c-1.657,0-3,1.343-3,3S23.343,44,25,44z M61,8h-6v3c0,3.866-3.134,7-7,7s-7-3.134-7-7V8\r\n\t\t\t\tH23v3c0,3.866-3.134,7-7,7s-7-3.134-7-7V8H3c-1.657,0-3,1.343-3,3v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V11\r\n\t\t\t\tC64,9.343,62.657,8,61,8z M58,58H6V24h52V58z"},"children":[{"name":"path","attribs":{"d":"M16,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8C13,12.657,14.343,14,16,14z M25.126,31\r\n\t\t\t\tc-0.001,0-0.002,0-0.003,0h0.007C25.128,31,25.127,31,25.126,31z M48,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3\r\n\t\t\t\tv8C45,12.657,46.343,14,48,14z M25,44h4v4c0,1.657,1.343,3,3,3s3-1.343,3-3v-4h4c1.657,0,3-1.343,3-3s-1.343-3-3-3h-4v-4\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v4h-4c-1.657,0-3,1.343-3,3S23.343,44,25,44z M61,8h-6v3c0,3.866-3.134,7-7,7s-7-3.134-7-7V8\r\n\t\t\t\tH23v3c0,3.866-3.134,7-7,7s-7-3.134-7-7V8H3c-1.657,0-3,1.343-3,3v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V11\r\n\t\t\t\tC64,9.343,62.657,8,61,8z M58,58H6V24h52V58z"},"children":[]}]}]}]}]}]}]}]};exports.calendar_add=calendar_add;var calendar_ok={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CALENDAR__x2F__OK_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CALENDAR__x2F__OK"},"children":[{"name":"g","attribs":{"id":"CALENDAR__x2F__OK"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M48,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8C45,12.657,46.343,14,48,14z M61,8h-6v3\r\n\t\t\t\tc0,3.866-3.134,7-7,7s-7-3.134-7-7V8H23v3c0,3.866-3.134,7-7,7s-7-3.134-7-7V8H3c-1.657,0-3,1.343-3,3v50c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3V11C64,9.343,62.657,8,61,8z M58,58H6V24h52V58z M16,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v8C13,12.657,14.343,14,16,14z M26.879,50.121C27.422,50.664,28.172,51,29,51s1.578-0.336,2.121-0.879l14-14\r\n\t\t\t\tC45.664,35.579,46,34.828,46,34c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L29,43.757l-4.879-4.879\r\n\t\t\t\tC23.578,38.336,22.828,38,22,38c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L26.879,50.121z"},"children":[{"name":"path","attribs":{"d":"M48,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8C45,12.657,46.343,14,48,14z M61,8h-6v3\r\n\t\t\t\tc0,3.866-3.134,7-7,7s-7-3.134-7-7V8H23v3c0,3.866-3.134,7-7,7s-7-3.134-7-7V8H3c-1.657,0-3,1.343-3,3v50c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3V11C64,9.343,62.657,8,61,8z M58,58H6V24h52V58z M16,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v8C13,12.657,14.343,14,16,14z M26.879,50.121C27.422,50.664,28.172,51,29,51s1.578-0.336,2.121-0.879l14-14\r\n\t\t\t\tC45.664,35.579,46,34.828,46,34c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L29,43.757l-4.879-4.879\r\n\t\t\t\tC23.578,38.336,22.828,38,22,38c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L26.879,50.121z"},"children":[]}]}]}]}]}]}]}]};exports.calendar_ok=calendar_ok;var camera={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CAMERA_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CAMERA"},"children":[{"name":"g","attribs":{"id":"CAMERA"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M32,22c-6.627,0-12,5.372-12,12c0,6.627,5.373,12,12,12s12-5.373,12-12S38.627,22,32,22z M61,12H48.243l-5.095-5.094\r\n\t\t\t\tl-0.002,0.003C42.602,6.35,41.843,6,41,6H23c-0.976,0-1.835,0.474-2.383,1.196L15.813,12H3c-1.657,0-3,1.343-3,3v40\r\n\t\t\t\tc0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V15C64,13.343,62.657,12,61,12z M32,52c-9.941,0-18-8.059-18-18\r\n\t\t\t\tc0-9.941,8.059-18,18-18c9.941,0,18,8.059,18,18C50,43.941,41.941,52,32,52z"},"children":[{"name":"path","attribs":{"d":"M32,22c-6.627,0-12,5.372-12,12c0,6.627,5.373,12,12,12s12-5.373,12-12S38.627,22,32,22z M61,12H48.243l-5.095-5.094\r\n\t\t\t\tl-0.002,0.003C42.602,6.35,41.843,6,41,6H23c-0.976,0-1.835,0.474-2.383,1.196L15.813,12H3c-1.657,0-3,1.343-3,3v40\r\n\t\t\t\tc0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V15C64,13.343,62.657,12,61,12z M32,52c-9.941,0-18-8.059-18-18\r\n\t\t\t\tc0-9.941,8.059-18,18-18c9.941,0,18,8.059,18,18C50,43.941,41.941,52,32,52z"},"children":[]}]}]}]}]}]}]}]};exports.camera=camera;var cassette={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CASSETTE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,9H3c-1.657,0-3,1.343-3,3v40c0,1.657,1.343,3,3,3h8.369l4.846-12.114\r\n\t\t\tl0.004,0.002C16.661,41.783,17.737,41,19,41h26c1.263,0,2.339,0.782,2.781,1.887l0.004-0.002L52.631,55H61c1.657,0,3-1.343,3-3V12\r\n\t\t\tC64,10.343,62.657,9,61,9z M16,32c-2.209,0-4-1.791-4-4c0-2.209,1.791-4,4-4c2.209,0,4,1.791,4,4C20,30.209,18.209,32,16,32z\r\n\t\t\t M40,32H24v-8h16V32z M48,32c-2.209,0-4-1.791-4-4c0-2.209,1.791-4,4-4s4,1.791,4,4C52,30.209,50.209,32,48,32z M45.834,46.056\r\n\t\t\tC45.436,44.865,44.325,44,43,44H21c-1.296,0-2.391,0.827-2.81,1.978l-0.01-0.004L14.899,55h33.93l-2.983-8.949L45.834,46.056z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,9H3c-1.657,0-3,1.343-3,3v40c0,1.657,1.343,3,3,3h8.369l4.846-12.114\r\n\t\t\tl0.004,0.002C16.661,41.783,17.737,41,19,41h26c1.263,0,2.339,0.782,2.781,1.887l0.004-0.002L52.631,55H61c1.657,0,3-1.343,3-3V12\r\n\t\t\tC64,10.343,62.657,9,61,9z M16,32c-2.209,0-4-1.791-4-4c0-2.209,1.791-4,4-4c2.209,0,4,1.791,4,4C20,30.209,18.209,32,16,32z\r\n\t\t\t M40,32H24v-8h16V32z M48,32c-2.209,0-4-1.791-4-4c0-2.209,1.791-4,4-4s4,1.791,4,4C52,30.209,50.209,32,48,32z M45.834,46.056\r\n\t\t\tC45.436,44.865,44.325,44,43,44H21c-1.296,0-2.391,0.827-2.81,1.978l-0.01-0.004L14.899,55h33.93l-2.983-8.949L45.834,46.056z"},"children":[]}]}]}]}]}]};exports.cassette=cassette;var chart={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CHART_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CHART"},"children":[{"name":"g","attribs":{"id":"CHART"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58\r\n\t\t\t\tz M46,55h6c1.657,0,3-1.343,3-3V31c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v21C43,53.657,44.343,55,46,55z M29,55h6\r\n\t\t\t\tc1.657,0,3-1.343,3-3V19c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v33C26,53.657,27.343,55,29,55z M12,55h6\r\n\t\t\t\tc1.657,0,3-1.343,3-3v-6c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v6C9,53.657,10.343,55,12,55z"},"children":[{"name":"path","attribs":{"d":"M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58\r\n\t\t\t\tz M46,55h6c1.657,0,3-1.343,3-3V31c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v21C43,53.657,44.343,55,46,55z M29,55h6\r\n\t\t\t\tc1.657,0,3-1.343,3-3V19c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v33C26,53.657,27.343,55,29,55z M12,55h6\r\n\t\t\t\tc1.657,0,3-1.343,3-3v-6c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v6C9,53.657,10.343,55,12,55z"},"children":[]}]}]}]}]}]}]}]};exports.chart=chart;var chart_1_2={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CHART__x2F__1_x2F_2_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CHART__x2F__1_x2F_2"},"children":[{"name":"g","attribs":{"id":"CHART__x2F__1_x2F_2"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6V58z"},"children":[{"name":"path","attribs":{"d":"M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6V58z"},"children":[]}]}]}]}]}]}]}]};exports.chart_1_2=chart_1_2;var chart_1_4={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CHART__x2F__1_x2F_4_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CHART__x2F__1_x2F_4"},"children":[{"name":"g","attribs":{"id":"CHART__x2F__1_x2F_4"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6v26h26C58,46.359,46.359,58,32,58z"},"children":[{"name":"path","attribs":{"d":"M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6v26h26C58,46.359,46.359,58,32,58z"},"children":[]}]}]}]}]}]}]}]};exports.chart_1_4=chart_1_4;var chart_1_8={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CART__x2F__1_x2F_8_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CART__x2F__1_x2F_8"},"children":[{"name":"g","attribs":{"id":"CART__x2F__1_x2F_8"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6v26l18.385-18.385C55.09,18.32,58,24.82,58,32C58,46.359,46.359,58,32,58z"},"children":[{"name":"path","attribs":{"d":"M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6v26l18.385-18.385C55.09,18.32,58,24.82,58,32C58,46.359,46.359,58,32,58z"},"children":[]}]}]}]}]}]}]}]};exports.chart_1_8=chart_1_8;var chart_3_4={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CHART__x2F__3_x2F_4_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CHART__x2F__3_x2F_4"},"children":[{"name":"g","attribs":{"id":"CHART__x2F__3_x2F_4"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,32H6C6,17.641,17.641,6,32,6V32z"},"children":[{"name":"path","attribs":{"d":"M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,32H6C6,17.641,17.641,6,32,6V32z"},"children":[]}]}]}]}]}]}]}]};exports.chart_3_4=chart_3_4;var chart_3_8={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CHART__x2F__3_x2F_8_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CHART__x2F__3_x2F_8"},"children":[{"name":"g","attribs":{"id":"CHART__x2F__3_x2F_8"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6v26l18.385,18.385C45.68,55.09,39.18,58,32,58z"},"children":[{"name":"path","attribs":{"d":"M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6v26l18.385,18.385C45.68,55.09,39.18,58,32,58z"},"children":[]}]}]}]}]}]}]}]};exports.chart_3_8=chart_3_8;var chart_5_8={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CHART__x2F__5_x2F_8_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CHART__x2F__5_x2F_8"},"children":[{"name":"g","attribs":{"id":"CHART__x2F__5_x2F_8"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,32L13.615,50.385\r\n\t\t\t\tC8.91,45.68,6,39.18,6,32C6,17.641,17.641,6,32,6V32z"},"children":[{"name":"path","attribs":{"d":"M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,32L13.615,50.385\r\n\t\t\t\tC8.91,45.68,6,39.18,6,32C6,17.641,17.641,6,32,6V32z"},"children":[]}]}]}]}]}]}]}]};exports.chart_5_8=chart_5_8;var chart_7_8={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CHART__x2F__7_x2F_8_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CHART__x2F__7_x2F_8"},"children":[{"name":"g","attribs":{"id":"CHART__x2F__7_x2F_8"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,32L13.615,13.615\r\n\t\t\t\tC18.32,8.91,24.82,6,32,6V32z"},"children":[{"name":"path","attribs":{"d":"M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,32L13.615,13.615\r\n\t\t\t\tC18.32,8.91,24.82,6,32,6V32z"},"children":[]}]}]}]}]}]}]}]};exports.chart_7_8=chart_7_8;var circle={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CIRCLE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE"},"children":[{"name":"g","attribs":{"id":"CIRCLE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.64,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z"},"children":[{"name":"path","attribs":{"d":"M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.64,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z"},"children":[]}]}]}]}]}]}]}]};exports.circle=circle;var circle_delete={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__DELETE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__DELETE"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__DELETE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.64,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z M46,21c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L32,27.758l-8.879-8.879C22.579,18.336,21.828,18,21,18c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L27.757,32l-8.879,8.879C18.336,41.422,18,42.172,18,43c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.579-0.336,2.121-0.879L32,36.243l8.879,8.879C41.422,45.664,42.172,46,43,46c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L36.243,32l8.879-8.878C45.664,22.578,46,21.829,46,21z"},"children":[{"name":"path","attribs":{"d":"M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.64,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z M46,21c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L32,27.758l-8.879-8.879C22.579,18.336,21.828,18,21,18c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L27.757,32l-8.879,8.879C18.336,41.422,18,42.172,18,43c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.579-0.336,2.121-0.879L32,36.243l8.879,8.879C41.422,45.664,42.172,46,43,46c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L36.243,32l8.879-8.878C45.664,22.578,46,21.829,46,21z"},"children":[]}]}]}]}]}]}]}]};exports.circle_delete=circle_delete;var circle_down={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__DOWN_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__DOWN"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__DOWN"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M41,32c-0.885,0-1.673,0.391-2.223,1l-0.008-0.007L35,37.182V19c0-1.657-1.343-3-3-3s-3,1.343-3,3v18.182l-3.77-4.188\r\n\t\t\t\tL25.222,33c-0.549-0.61-1.337-1-2.222-1c-1.657,0-3,1.343-3,3c0,0.771,0.299,1.468,0.778,2l-0.008,0.008l9,10L29.778,47\r\n\t\t\t\tc0.549,0.609,1.336,1,2.222,1c0.885,0,1.673-0.391,2.223-1l0.008,0.007l9-10L43.223,37C43.7,36.468,44,35.771,44,35\r\n\t\t\t\tC44,33.343,42.657,32,41,32z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58\r\n\t\t\t\tC17.641,58,6,46.359,6,32C6,17.64,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z"},"children":[{"name":"path","attribs":{"d":"M41,32c-0.885,0-1.673,0.391-2.223,1l-0.008-0.007L35,37.182V19c0-1.657-1.343-3-3-3s-3,1.343-3,3v18.182l-3.77-4.188\r\n\t\t\t\tL25.222,33c-0.549-0.61-1.337-1-2.222-1c-1.657,0-3,1.343-3,3c0,0.771,0.299,1.468,0.778,2l-0.008,0.008l9,10L29.778,47\r\n\t\t\t\tc0.549,0.609,1.336,1,2.222,1c0.885,0,1.673-0.391,2.223-1l0.008,0.007l9-10L43.223,37C43.7,36.468,44,35.771,44,35\r\n\t\t\t\tC44,33.343,42.657,32,41,32z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58\r\n\t\t\t\tC17.641,58,6,46.359,6,32C6,17.64,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z"},"children":[]}]}]}]}]}]}]}]};exports.circle_down=circle_down;var circle_fast_forward={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__FAST_FORWARD_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__FAST_FORWARD"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__FAST_FORWARD"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z M45.559,29.437l-9.699-6.789\r\n\t\t\t\tC35.35,22.243,34.703,22,34,22c-1.657,0-3,1.343-3,3c0,0.008,0.001,0.016,0.001,0.024h-0.005v4.018l-9.135-6.394\r\n\t\t\t\tC21.349,22.243,20.703,22,20,22c-1.657,0-3,1.343-3,3c0,0.008,0.001,0.016,0.001,0.024h-0.005v14h0.005\r\n\t\t\t\tC17.013,40.67,18.351,42,20,42c0.708,0,1.358-0.246,1.871-0.654l9.125-6.388v4.067h0.005C31.013,40.67,32.351,42,34,42\r\n\t\t\t\tc0.708,0,1.357-0.246,1.871-0.654l9.68-6.777C46.419,34.043,47,33.089,47,32C47,30.914,46.423,29.963,45.559,29.437z"},"children":[{"name":"path","attribs":{"d":"M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z M45.559,29.437l-9.699-6.789\r\n\t\t\t\tC35.35,22.243,34.703,22,34,22c-1.657,0-3,1.343-3,3c0,0.008,0.001,0.016,0.001,0.024h-0.005v4.018l-9.135-6.394\r\n\t\t\t\tC21.349,22.243,20.703,22,20,22c-1.657,0-3,1.343-3,3c0,0.008,0.001,0.016,0.001,0.024h-0.005v14h0.005\r\n\t\t\t\tC17.013,40.67,18.351,42,20,42c0.708,0,1.358-0.246,1.871-0.654l9.125-6.388v4.067h0.005C31.013,40.67,32.351,42,34,42\r\n\t\t\t\tc0.708,0,1.357-0.246,1.871-0.654l9.68-6.777C46.419,34.043,47,33.089,47,32C47,30.914,46.423,29.963,45.559,29.437z"},"children":[]}]}]}]}]}]}]}]};exports.circle_fast_forward=circle_fast_forward;var circle_left={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__LEFT_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__LEFT"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__LEFT"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M45,29H26.818l4.189-3.77L31,25.222c0.61-0.549,1-1.337,1-2.222c0-1.657-1.343-3-3-3c-0.772,0-1.468,0.3-2,0.778\r\n\t\t\t\tl-0.007-0.008l-10,9L17,29.778c-0.61,0.549-1,1.336-1,2.222s0.391,1.673,1,2.223l-0.007,0.008l10,9L27,43.223\r\n\t\t\t\tC27.532,43.701,28.228,44,29,44c1.657,0,3-1.343,3-3c0-0.885-0.391-1.673-1-2.223l0.007-0.008L26.818,35H45c1.657,0,3-1.343,3-3\r\n\t\t\t\tS46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.64,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z"},"children":[{"name":"path","attribs":{"d":"M45,29H26.818l4.189-3.77L31,25.222c0.61-0.549,1-1.337,1-2.222c0-1.657-1.343-3-3-3c-0.772,0-1.468,0.3-2,0.778\r\n\t\t\t\tl-0.007-0.008l-10,9L17,29.778c-0.61,0.549-1,1.336-1,2.222s0.391,1.673,1,2.223l-0.007,0.008l10,9L27,43.223\r\n\t\t\t\tC27.532,43.701,28.228,44,29,44c1.657,0,3-1.343,3-3c0-0.885-0.391-1.673-1-2.223l0.007-0.008L26.818,35H45c1.657,0,3-1.343,3-3\r\n\t\t\t\tS46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.64,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z"},"children":[]}]}]}]}]}]}]}]};exports.circle_left=circle_left;var circle_minus={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__MINUS_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__MINUS"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__MINUS"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M45,29H19c-1.657,0-3,1.343-3,3s1.343,3,3,3h26c1.657,0,3-1.343,3-3S46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32\r\n\t\t\t\ts14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.64,17.641,6,32,6\r\n\t\t\t\tc14.359,0,26,11.641,26,26C58,46.359,46.359,58,32,58z"},"children":[{"name":"path","attribs":{"d":"M45,29H19c-1.657,0-3,1.343-3,3s1.343,3,3,3h26c1.657,0,3-1.343,3-3S46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32\r\n\t\t\t\ts14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.64,17.641,6,32,6\r\n\t\t\t\tc14.359,0,26,11.641,26,26C58,46.359,46.359,58,32,58z"},"children":[]}]}]}]}]}]}]}]};exports.circle_minus=circle_minus;var circle_ok={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__OK_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__OK"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__OK"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M46,43.001L46,43.001C46,43,46,43,46,42.999V43.001z M46,20.999v0.002C46,21.001,46,21,46,20.999C46,21,46,21,46,20.999z\r\n\t\t\t\t M44,21c-0.828,0-1.578,0.336-2.121,0.879L28,35.758l-6.879-6.879C20.578,28.336,19.828,28,19,28c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121l9,9C26.422,42.664,27.172,43,28,43s1.578-0.336,2.121-0.879l16-16\r\n\t\t\t\tC46.664,25.579,47,24.828,47,24C47,22.343,45.657,21,44,21z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32\r\n\t\t\t\tS49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.64,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z"},"children":[{"name":"path","attribs":{"d":"M46,43.001L46,43.001C46,43,46,43,46,42.999V43.001z M46,20.999v0.002C46,21.001,46,21,46,20.999C46,21,46,21,46,20.999z\r\n\t\t\t\t M44,21c-0.828,0-1.578,0.336-2.121,0.879L28,35.758l-6.879-6.879C20.578,28.336,19.828,28,19,28c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121l9,9C26.422,42.664,27.172,43,28,43s1.578-0.336,2.121-0.879l16-16\r\n\t\t\t\tC46.664,25.579,47,24.828,47,24C47,22.343,45.657,21,44,21z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32\r\n\t\t\t\tS49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.64,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z"},"children":[]}]}]}]}]}]}]}]};exports.circle_ok=circle_ok;var circle_pause={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__PAUSE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__PAUSE"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__PAUSE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z M29,24c0-1.657-1.343-3-3-3s-3,1.343-3,3\r\n\t\t\t\tc0,0.002,0,0.005,0,0.007h-0.002v16H23C23.004,41.661,24.346,43,26,43c1.657,0,3-1.343,3-3c0-0.023-0.001-0.047-0.002-0.07V24.07\r\n\t\t\t\tC28.999,24.047,29,24.024,29,24z M41,24c0-1.657-1.343-3-3-3s-3,1.343-3,3c0,0.002,0,0.005,0,0.007h-0.002v16H35\r\n\t\t\t\tC35.004,41.661,36.346,43,38,43c1.657,0,3-1.343,3-3c0-0.023-0.001-0.047-0.002-0.07V24.07C40.999,24.047,41,24.024,41,24z"},"children":[{"name":"path","attribs":{"d":"M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z M29,24c0-1.657-1.343-3-3-3s-3,1.343-3,3\r\n\t\t\t\tc0,0.002,0,0.005,0,0.007h-0.002v16H23C23.004,41.661,24.346,43,26,43c1.657,0,3-1.343,3-3c0-0.023-0.001-0.047-0.002-0.07V24.07\r\n\t\t\t\tC28.999,24.047,29,24.024,29,24z M41,24c0-1.657-1.343-3-3-3s-3,1.343-3,3c0,0.002,0,0.005,0,0.007h-0.002v16H35\r\n\t\t\t\tC35.004,41.661,36.346,43,38,43c1.657,0,3-1.343,3-3c0-0.023-0.001-0.047-0.002-0.07V24.07C40.999,24.047,41,24.024,41,24z"},"children":[]}]}]}]}]}]}]}]};exports.circle_pause=circle_pause;var circle_play={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__PLAY_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__PLAY"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__PLAY"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M41.492,29.398l-15.8-9.875C25.21,19.193,24.628,19,24,19c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.066,0,0.131-0.003,0.195-0.007c0.017-0.001,0.034-0.003,0.051-0.004c0.055-0.005,0.109-0.011,0.163-0.019\r\n\t\t\t\tc0.01,0,0.021-0.002,0.031-0.004c0.064-0.01,0.128-0.021,0.191-0.035c0.01-0.002,0.019-0.005,0.029-0.007\r\n\t\t\t\tc0.057-0.013,0.112-0.026,0.167-0.043c0.009-0.003,0.018-0.005,0.027-0.008c0.128-0.038,0.252-0.084,0.372-0.138\r\n\t\t\t\tc0.005-0.002,0.009-0.004,0.014-0.006c0.123-0.057,0.242-0.121,0.355-0.191l0.013,0.02l15.912-9.974\r\n\t\t\t\tC42.404,34.066,43,33.104,43,32C43,30.886,42.393,29.915,41.492,29.398z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32\r\n\t\t\t\ts32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tC58,46.359,46.359,58,32,58z"},"children":[{"name":"path","attribs":{"d":"M41.492,29.398l-15.8-9.875C25.21,19.193,24.628,19,24,19c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.066,0,0.131-0.003,0.195-0.007c0.017-0.001,0.034-0.003,0.051-0.004c0.055-0.005,0.109-0.011,0.163-0.019\r\n\t\t\t\tc0.01,0,0.021-0.002,0.031-0.004c0.064-0.01,0.128-0.021,0.191-0.035c0.01-0.002,0.019-0.005,0.029-0.007\r\n\t\t\t\tc0.057-0.013,0.112-0.026,0.167-0.043c0.009-0.003,0.018-0.005,0.027-0.008c0.128-0.038,0.252-0.084,0.372-0.138\r\n\t\t\t\tc0.005-0.002,0.009-0.004,0.014-0.006c0.123-0.057,0.242-0.121,0.355-0.191l0.013,0.02l15.912-9.974\r\n\t\t\t\tC42.404,34.066,43,33.104,43,32C43,30.886,42.393,29.915,41.492,29.398z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32\r\n\t\t\t\ts32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tC58,46.359,46.359,58,32,58z"},"children":[]}]}]}]}]}]}]}]};exports.circle_play=circle_play;var circle_plus={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__PLUS_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__PLUS"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__PLUS"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M45,29H35V19c0-1.657-1.343-3-3-3s-3,1.343-3,3v10H19c-1.657,0-3,1.343-3,3s1.343,3,3,3h10v10c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3V35h10c1.657,0,3-1.343,3-3S46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32\r\n\t\t\t\tS49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.64,17.641,6,32,6c14.359,0,26,11.641,26,26C58,46.359,46.359,58,32,58z"},"children":[{"name":"path","attribs":{"d":"M45,29H35V19c0-1.657-1.343-3-3-3s-3,1.343-3,3v10H19c-1.657,0-3,1.343-3,3s1.343,3,3,3h10v10c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3V35h10c1.657,0,3-1.343,3-3S46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32\r\n\t\t\t\tS49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.64,17.641,6,32,6c14.359,0,26,11.641,26,26C58,46.359,46.359,58,32,58z"},"children":[]}]}]}]}]}]}]}]};exports.circle_plus=circle_plus;var circle_rewind={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__REWIND_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__REWIND"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__REWIND"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M47,25c0-1.657-1.343-3-3-3c-0.703,0-1.35,0.242-1.861,0.648l-9.135,6.394v-4.018h-0.006C32.999,25.016,33,25.008,33,25\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.703,0-1.349,0.242-1.861,0.648l-9.699,6.789C17.577,29.963,17,30.914,17,32\r\n\t\t\t\tc0,1.089,0.581,2.043,1.449,2.568l9.68,6.777C28.642,41.754,29.292,42,30,42c1.649,0,2.986-1.33,2.999-2.977h0.005v-4.066\r\n\t\t\t\tl9.125,6.387C42.643,41.754,43.292,42,44,42c1.648,0,2.986-1.33,2.999-2.977h0.005v-14h-0.005C46.999,25.016,47,25.008,47,25z\r\n\t\t\t\t M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z"},"children":[{"name":"path","attribs":{"d":"M47,25c0-1.657-1.343-3-3-3c-0.703,0-1.35,0.242-1.861,0.648l-9.135,6.394v-4.018h-0.006C32.999,25.016,33,25.008,33,25\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.703,0-1.349,0.242-1.861,0.648l-9.699,6.789C17.577,29.963,17,30.914,17,32\r\n\t\t\t\tc0,1.089,0.581,2.043,1.449,2.568l9.68,6.777C28.642,41.754,29.292,42,30,42c1.649,0,2.986-1.33,2.999-2.977h0.005v-4.066\r\n\t\t\t\tl9.125,6.387C42.643,41.754,43.292,42,44,42c1.648,0,2.986-1.33,2.999-2.977h0.005v-14h-0.005C46.999,25.016,47,25.008,47,25z\r\n\t\t\t\t M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z"},"children":[]}]}]}]}]}]}]}]};exports.circle_rewind=circle_rewind;var circle_right={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__RIGHT_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__RIGHT"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__RIGHT"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M47,29.778l0.007-0.008l-10-9L37,20.778C36.468,20.3,35.771,20,35,20c-1.657,0-3,1.343-3,3c0,0.885,0.391,1.673,1,2.222\r\n\t\t\t\tl-0.007,0.008L37.182,29H19c-1.657,0-3,1.343-3,3s1.343,3,3,3h18.182l-4.188,3.77L33,38.777c-0.61,0.55-1,1.338-1,2.223\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.771,0,1.468-0.299,2-0.777l0.007,0.008l10-9L47,34.223c0.609-0.55,1-1.337,1-2.223\r\n\t\t\t\tS47.609,30.328,47,29.778z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58\r\n\t\t\t\tC17.641,58,6,46.359,6,32C6,17.64,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z"},"children":[{"name":"path","attribs":{"d":"M47,29.778l0.007-0.008l-10-9L37,20.778C36.468,20.3,35.771,20,35,20c-1.657,0-3,1.343-3,3c0,0.885,0.391,1.673,1,2.222\r\n\t\t\t\tl-0.007,0.008L37.182,29H19c-1.657,0-3,1.343-3,3s1.343,3,3,3h18.182l-4.188,3.77L33,38.777c-0.61,0.55-1,1.338-1,2.223\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.771,0,1.468-0.299,2-0.777l0.007,0.008l10-9L47,34.223c0.609-0.55,1-1.337,1-2.223\r\n\t\t\t\tS47.609,30.328,47,29.778z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58\r\n\t\t\t\tC17.641,58,6,46.359,6,32C6,17.64,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z"},"children":[]}]}]}]}]}]}]}]};exports.circle_right=circle_right;var circle_skip_next={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__SKIP_NEXT_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__SKIP_NEXT"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__SKIP_NEXT"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M39,22c-1.657,0-3,1.343-3,3v4.29l-9.235-6.717L26.76,22.58C26.264,22.219,25.66,22,25,22c-1.657,0-3,1.343-3,3v14\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.66,0,1.264-0.219,1.76-0.58l0.005,0.007L36,34.71V39c0,1.657,1.343,3,3,3s3-1.343,3-3V25\r\n\t\t\t\tC42,23.343,40.657,22,39,22z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58\r\n\t\t\t\tC17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z"},"children":[{"name":"path","attribs":{"d":"M39,22c-1.657,0-3,1.343-3,3v4.29l-9.235-6.717L26.76,22.58C26.264,22.219,25.66,22,25,22c-1.657,0-3,1.343-3,3v14\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.66,0,1.264-0.219,1.76-0.58l0.005,0.007L36,34.71V39c0,1.657,1.343,3,3,3s3-1.343,3-3V25\r\n\t\t\t\tC42,23.343,40.657,22,39,22z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58\r\n\t\t\t\tC17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z"},"children":[]}]}]}]}]}]}]}]};exports.circle_skip_next=circle_skip_next;var circle_skip_previous={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__SKIP_PREVIOUS_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__SKIP_PREVIOUS"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__SKIP_PREVIOUS"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M39,22c-0.66,0-1.266,0.219-1.76,0.58l-0.006-0.007L28,29.291V25c0-1.657-1.343-3-3-3s-3,1.343-3,3v14\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3v-4.29l9.234,6.717l0.006-0.007C37.736,41.781,38.34,42,39,42c1.657,0,3-1.343,3-3V25\r\n\t\t\t\tC42,23.343,40.657,22,39,22z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58\r\n\t\t\t\tC17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z"},"children":[{"name":"path","attribs":{"d":"M39,22c-0.66,0-1.266,0.219-1.76,0.58l-0.006-0.007L28,29.291V25c0-1.657-1.343-3-3-3s-3,1.343-3,3v14\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3v-4.29l9.234,6.717l0.006-0.007C37.736,41.781,38.34,42,39,42c1.657,0,3-1.343,3-3V25\r\n\t\t\t\tC42,23.343,40.657,22,39,22z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58\r\n\t\t\t\tC17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z"},"children":[]}]}]}]}]}]}]}]};exports.circle_skip_previous=circle_skip_previous;var circle_stop={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__STOP_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__STOP"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__STOP"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M40,21H24c-1.657,0-3,1.343-3,3v16c0,1.657,1.343,3,3,3h16c1.657,0,3-1.343,3-3V24C43,22.343,41.657,21,40,21z M32,0\r\n\t\t\t\tC14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6\r\n\t\t\t\tc14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z"},"children":[{"name":"path","attribs":{"d":"M40,21H24c-1.657,0-3,1.343-3,3v16c0,1.657,1.343,3,3,3h16c1.657,0,3-1.343,3-3V24C43,22.343,41.657,21,40,21z M32,0\r\n\t\t\t\tC14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6\r\n\t\t\t\tc14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z"},"children":[]}]}]}]}]}]}]}]};exports.circle_stop=circle_stop;var circle_up={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__UP_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__UP"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__UP"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M43.23,26.993l-9-10L34.223,17c-0.55-0.61-1.336-1-2.223-1c-0.885,0-1.672,0.391-2.222,1l-0.008-0.007l-9,10L20.778,27\r\n\t\t\t\tC20.3,27.532,20,28.229,20,29c0,1.657,1.343,3,3,3c0.885,0,1.673-0.391,2.222-1l0.008,0.007L29,26.818V45c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3V26.818l3.77,4.189L38.777,31c0.55,0.61,1.338,1,2.223,1c1.657,0,3-1.343,3-3c0-0.772-0.3-1.468-0.777-2\r\n\t\t\t\tL43.23,26.993z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.64,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z"},"children":[{"name":"path","attribs":{"d":"M43.23,26.993l-9-10L34.223,17c-0.55-0.61-1.336-1-2.223-1c-0.885,0-1.672,0.391-2.222,1l-0.008-0.007l-9,10L20.778,27\r\n\t\t\t\tC20.3,27.532,20,28.229,20,29c0,1.657,1.343,3,3,3c0.885,0,1.673-0.391,2.222-1l0.008,0.007L29,26.818V45c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3V26.818l3.77,4.189L38.777,31c0.55,0.61,1.338,1,2.223,1c1.657,0,3-1.343,3-3c0-0.772-0.3-1.468-0.777-2\r\n\t\t\t\tL43.23,26.993z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.64,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z"},"children":[]}]}]}]}]}]}]}]};exports.circle_up=circle_up;var clip={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CLIP"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M55.628,11.373c-7.029-7.029-18.426-7.029-25.456,0L6.837,34.707\r\n\t\t\tc-5.077,5.077-5.077,13.308,0,18.385c5.077,5.077,13.308,5.077,18.385,0l21.92-21.92c3.124-3.124,3.124-8.189,0-11.314\r\n\t\t\tc-3.124-3.124-8.19-3.124-11.314,0L17.444,38.243c-1.172,1.172-1.172,3.071,0,4.243c1.172,1.172,3.071,1.172,4.243,0\r\n\t\t\tl18.385-18.385c0.781-0.781,2.047-0.781,2.828,0c0.781,0.781,0.781,2.047,0,2.828l-21.92,21.92c-2.734,2.734-7.166,2.734-9.899,0\r\n\t\t\tc-2.734-2.734-2.734-7.166,0-9.9l23.334-23.334c4.686-4.686,12.284-4.686,16.971,0c4.686,4.686,4.686,12.284,0,16.971\r\n\t\t\tL31.586,52.385c-1.172,1.172-1.172,3.071,0,4.243c1.172,1.171,3.071,1.171,4.243,0l19.799-19.799\r\n\t\t\tC62.657,29.799,62.657,18.402,55.628,11.373z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M55.628,11.373c-7.029-7.029-18.426-7.029-25.456,0L6.837,34.707\r\n\t\t\tc-5.077,5.077-5.077,13.308,0,18.385c5.077,5.077,13.308,5.077,18.385,0l21.92-21.92c3.124-3.124,3.124-8.189,0-11.314\r\n\t\t\tc-3.124-3.124-8.19-3.124-11.314,0L17.444,38.243c-1.172,1.172-1.172,3.071,0,4.243c1.172,1.172,3.071,1.172,4.243,0\r\n\t\t\tl18.385-18.385c0.781-0.781,2.047-0.781,2.828,0c0.781,0.781,0.781,2.047,0,2.828l-21.92,21.92c-2.734,2.734-7.166,2.734-9.899,0\r\n\t\t\tc-2.734-2.734-2.734-7.166,0-9.9l23.334-23.334c4.686-4.686,12.284-4.686,16.971,0c4.686,4.686,4.686,12.284,0,16.971\r\n\t\t\tL31.586,52.385c-1.172,1.172-1.172,3.071,0,4.243c1.172,1.171,3.071,1.171,4.243,0l19.799-19.799\r\n\t\t\tC62.657,29.799,62.657,18.402,55.628,11.373z"},"children":[]}]}]}]}]}]};exports.clip=clip;var close={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CLOSE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CLOSE"},"children":[{"name":"g","attribs":{"id":"CLOSE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M36.243,32l11.879-11.879C48.664,19.579,49,18.828,49,18c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879\r\n\t\t\t\tL32,27.757L20.121,15.879C19.578,15.336,18.828,15,18,15c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L27.757,32\r\n\t\t\t\tL15.879,43.879C15.336,44.422,15,45.172,15,46c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L32,36.243l11.879,11.879\r\n\t\t\t\tC44.422,48.664,45.172,49,46,49c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L36.243,32z"},"children":[{"name":"path","attribs":{"d":"M36.243,32l11.879-11.879C48.664,19.579,49,18.828,49,18c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879\r\n\t\t\t\tL32,27.757L20.121,15.879C19.578,15.336,18.828,15,18,15c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L27.757,32\r\n\t\t\t\tL15.879,43.879C15.336,44.422,15,45.172,15,46c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L32,36.243l11.879,11.879\r\n\t\t\t\tC44.422,48.664,45.172,49,46,49c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L36.243,32z"},"children":[]}]}]}]}]}]}]}]};exports.close=close;var cloud={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CLOUD_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CLOUD"},"children":[{"name":"g","attribs":{"id":"CLOUD"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M53.387,24.656C50.048,16.086,41.753,10,32,10s-18.048,6.086-21.387,14.655C4.47,26.532,0,32.243,0,39\r\n\t\t\t\tc0,8.284,6.716,15,15,15h34c8.284,0,15-6.716,15-15C64,32.243,59.529,26.532,53.387,24.656z M49,48H15c-4.97,0-9-4.029-9-9\r\n\t\t\t\tc0-2.68,1.178-5.08,3.037-6.728c0.192-0.17,0.392-0.331,0.597-0.485c0.013-0.01,0.027-0.02,0.04-0.03\r\n\t\t\t\tc0.194-0.144,0.395-0.278,0.601-0.406c0.032-0.02,0.064-0.039,0.096-0.058c0.192-0.116,0.388-0.225,0.588-0.326\r\n\t\t\t\tc0.055-0.028,0.111-0.054,0.167-0.08c0.184-0.089,0.371-0.172,0.561-0.248c0.083-0.033,0.168-0.062,0.252-0.092\r\n\t\t\t\tc0.171-0.062,0.343-0.123,0.519-0.175c0.116-0.034,0.236-0.062,0.354-0.091c0.152-0.038,0.303-0.079,0.457-0.109\r\n\t\t\t\tc0.162-0.032,0.328-0.053,0.493-0.075c0.119-0.016,0.236-0.039,0.356-0.05C14.408,30.017,14.702,30,15,30\r\n\t\t\t\tc0.094,0,0.185,0.011,0.278,0.014c0.091-0.513,0.206-1.017,0.342-1.512c0.033-0.121,0.078-0.237,0.114-0.357\r\n\t\t\t\tc0.112-0.375,0.227-0.749,0.364-1.112c0.041-0.11,0.092-0.215,0.135-0.324c0.148-0.37,0.3-0.737,0.473-1.093\r\n\t\t\t\tc0.042-0.086,0.09-0.168,0.133-0.253c0.188-0.372,0.384-0.741,0.598-1.097C20.406,19.318,25.808,16,32,16\r\n\t\t\t\tc6.191,0,11.596,3.318,14.562,8.266c0.213,0.357,0.41,0.725,0.599,1.097c0.043,0.085,0.091,0.167,0.133,0.253\r\n\t\t\t\tc0.173,0.356,0.325,0.724,0.474,1.093c0.043,0.109,0.094,0.214,0.135,0.324c0.137,0.363,0.252,0.737,0.363,1.112\r\n\t\t\t\tc0.036,0.12,0.082,0.236,0.114,0.357c0.136,0.495,0.251,0.999,0.343,1.512C48.814,30.011,48.906,30,49,30\r\n\t\t\t\tc0.298,0,0.592,0.016,0.882,0.045c0.12,0.012,0.237,0.034,0.356,0.05c0.164,0.023,0.33,0.043,0.492,0.075\r\n\t\t\t\tc0.156,0.03,0.307,0.07,0.457,0.109c0.119,0.029,0.238,0.057,0.354,0.091c0.176,0.052,0.349,0.113,0.519,0.175\r\n\t\t\t\tc0.084,0.031,0.17,0.059,0.252,0.092c0.191,0.076,0.377,0.16,0.562,0.248c0.056,0.026,0.112,0.053,0.167,0.08\r\n\t\t\t\tc0.201,0.101,0.396,0.21,0.588,0.326c0.032,0.019,0.064,0.039,0.096,0.058c0.207,0.128,0.406,0.263,0.602,0.406\r\n\t\t\t\tc0.013,0.01,0.027,0.02,0.04,0.03c0.206,0.154,0.405,0.315,0.597,0.485C56.822,33.921,58,36.32,58,39C58,43.971,53.971,48,49,48z\r\n\t\t\t\t"},"children":[{"name":"path","attribs":{"d":"M53.387,24.656C50.048,16.086,41.753,10,32,10s-18.048,6.086-21.387,14.655C4.47,26.532,0,32.243,0,39\r\n\t\t\t\tc0,8.284,6.716,15,15,15h34c8.284,0,15-6.716,15-15C64,32.243,59.529,26.532,53.387,24.656z M49,48H15c-4.97,0-9-4.029-9-9\r\n\t\t\t\tc0-2.68,1.178-5.08,3.037-6.728c0.192-0.17,0.392-0.331,0.597-0.485c0.013-0.01,0.027-0.02,0.04-0.03\r\n\t\t\t\tc0.194-0.144,0.395-0.278,0.601-0.406c0.032-0.02,0.064-0.039,0.096-0.058c0.192-0.116,0.388-0.225,0.588-0.326\r\n\t\t\t\tc0.055-0.028,0.111-0.054,0.167-0.08c0.184-0.089,0.371-0.172,0.561-0.248c0.083-0.033,0.168-0.062,0.252-0.092\r\n\t\t\t\tc0.171-0.062,0.343-0.123,0.519-0.175c0.116-0.034,0.236-0.062,0.354-0.091c0.152-0.038,0.303-0.079,0.457-0.109\r\n\t\t\t\tc0.162-0.032,0.328-0.053,0.493-0.075c0.119-0.016,0.236-0.039,0.356-0.05C14.408,30.017,14.702,30,15,30\r\n\t\t\t\tc0.094,0,0.185,0.011,0.278,0.014c0.091-0.513,0.206-1.017,0.342-1.512c0.033-0.121,0.078-0.237,0.114-0.357\r\n\t\t\t\tc0.112-0.375,0.227-0.749,0.364-1.112c0.041-0.11,0.092-0.215,0.135-0.324c0.148-0.37,0.3-0.737,0.473-1.093\r\n\t\t\t\tc0.042-0.086,0.09-0.168,0.133-0.253c0.188-0.372,0.384-0.741,0.598-1.097C20.406,19.318,25.808,16,32,16\r\n\t\t\t\tc6.191,0,11.596,3.318,14.562,8.266c0.213,0.357,0.41,0.725,0.599,1.097c0.043,0.085,0.091,0.167,0.133,0.253\r\n\t\t\t\tc0.173,0.356,0.325,0.724,0.474,1.093c0.043,0.109,0.094,0.214,0.135,0.324c0.137,0.363,0.252,0.737,0.363,1.112\r\n\t\t\t\tc0.036,0.12,0.082,0.236,0.114,0.357c0.136,0.495,0.251,0.999,0.343,1.512C48.814,30.011,48.906,30,49,30\r\n\t\t\t\tc0.298,0,0.592,0.016,0.882,0.045c0.12,0.012,0.237,0.034,0.356,0.05c0.164,0.023,0.33,0.043,0.492,0.075\r\n\t\t\t\tc0.156,0.03,0.307,0.07,0.457,0.109c0.119,0.029,0.238,0.057,0.354,0.091c0.176,0.052,0.349,0.113,0.519,0.175\r\n\t\t\t\tc0.084,0.031,0.17,0.059,0.252,0.092c0.191,0.076,0.377,0.16,0.562,0.248c0.056,0.026,0.112,0.053,0.167,0.08\r\n\t\t\t\tc0.201,0.101,0.396,0.21,0.588,0.326c0.032,0.019,0.064,0.039,0.096,0.058c0.207,0.128,0.406,0.263,0.602,0.406\r\n\t\t\t\tc0.013,0.01,0.027,0.02,0.04,0.03c0.206,0.154,0.405,0.315,0.597,0.485C56.822,33.921,58,36.32,58,39C58,43.971,53.971,48,49,48z\r\n\t\t\t\t"},"children":[]}]}]}]}]}]}]}]};exports.cloud=cloud;var cloud_download={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CLOUD__x2F__DOWNLOAD_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CLOUD__x2F__DOWNLOAD"},"children":[{"name":"g","attribs":{"id":"CLOUD__x2F__DOWNLOAD"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M41,44c-0.885,0-1.682,0.384-2.23,0.993l0,0L35,49.182V34c0-1.657-1.343-3-3-3s-3,1.343-3,3v15.182l-3.77-4.188l0,0\r\n\t\t\t\tC24.681,44.384,23.885,44,23,44c-1.657,0-3,1.343-3,3c0,0.096,0.005,0.191,0.014,0.286l0,0c0.062,0.659,0.337,1.256,0.756,1.721\r\n\t\t\t\tl0,0l9,10L29.778,59c0.549,0.609,1.337,1,2.222,1s1.673-0.391,2.223-1.001l0.008,0.007l9-10l0,0\r\n\t\t\t\tc0.418-0.465,0.693-1.061,0.756-1.719c0-0.002,0-0.004,0-0.006C43.995,47.189,44,47.096,44,47.001V47\r\n\t\t\t\tc0-0.104-0.005-0.206-0.016-0.307C43.831,45.182,42.553,44,41,44z M53.387,19.656C50.048,11.086,41.753,5,32,5\r\n\t\t\t\tc-9.752,0-18.048,6.086-21.387,14.655C4.47,21.532,0,27.243,0,34c0,8.284,6.716,15,15,15c1.657,0,3-1.343,3-3s-1.343-3-3-3\r\n\t\t\t\tc-4.97,0-9-4.029-9-9c0-2.68,1.178-5.08,3.037-6.728c0.192-0.17,0.392-0.331,0.597-0.485c0.013-0.01,0.027-0.02,0.04-0.03\r\n\t\t\t\tc0.194-0.144,0.395-0.278,0.601-0.406c0.032-0.02,0.064-0.039,0.096-0.058c0.192-0.116,0.388-0.225,0.588-0.326\r\n\t\t\t\tc0.055-0.028,0.111-0.054,0.167-0.08c0.184-0.089,0.371-0.172,0.561-0.248c0.083-0.033,0.168-0.062,0.252-0.092\r\n\t\t\t\tc0.171-0.062,0.343-0.123,0.519-0.175c0.116-0.034,0.236-0.062,0.354-0.091c0.152-0.038,0.303-0.079,0.457-0.109\r\n\t\t\t\tc0.162-0.032,0.328-0.053,0.493-0.075c0.119-0.016,0.236-0.039,0.356-0.05C14.408,25.017,14.702,25,15,25\r\n\t\t\t\tc0.094,0,0.185,0.011,0.278,0.014c0.091-0.513,0.206-1.017,0.342-1.512c0.033-0.121,0.078-0.237,0.114-0.357\r\n\t\t\t\tc0.112-0.375,0.227-0.749,0.364-1.112c0.041-0.11,0.092-0.215,0.135-0.324c0.148-0.37,0.3-0.737,0.473-1.093\r\n\t\t\t\tc0.042-0.086,0.09-0.168,0.133-0.253c0.188-0.372,0.384-0.741,0.598-1.097C20.406,14.318,25.808,11,32,11\r\n\t\t\t\tc6.191,0,11.596,3.318,14.562,8.266c0.213,0.357,0.41,0.725,0.599,1.097c0.043,0.085,0.091,0.167,0.133,0.253\r\n\t\t\t\tc0.173,0.356,0.325,0.724,0.474,1.093c0.043,0.109,0.094,0.214,0.135,0.324c0.137,0.363,0.252,0.737,0.363,1.112\r\n\t\t\t\tc0.036,0.12,0.082,0.236,0.114,0.357c0.136,0.495,0.251,0.999,0.343,1.512C48.814,25.011,48.906,25,49,25\r\n\t\t\t\tc0.298,0,0.592,0.016,0.882,0.045c0.12,0.012,0.237,0.034,0.356,0.05c0.164,0.023,0.33,0.043,0.492,0.075\r\n\t\t\t\tc0.156,0.03,0.307,0.07,0.457,0.109c0.119,0.029,0.238,0.057,0.354,0.091c0.176,0.052,0.349,0.113,0.519,0.175\r\n\t\t\t\tc0.084,0.031,0.17,0.059,0.252,0.092c0.191,0.076,0.377,0.16,0.562,0.248c0.056,0.026,0.112,0.053,0.167,0.08\r\n\t\t\t\tc0.201,0.101,0.396,0.21,0.589,0.326c0.032,0.019,0.063,0.039,0.097,0.058c0.205,0.128,0.405,0.263,0.601,0.406\r\n\t\t\t\tc0.013,0.01,0.026,0.02,0.04,0.03c0.206,0.154,0.406,0.315,0.597,0.485C56.822,28.921,58,31.32,58,34c0,4.971-4.029,9-9,9\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3c8.284,0,15-6.716,15-15C64,27.243,59.529,21.532,53.387,19.656z"},"children":[{"name":"path","attribs":{"d":"M41,44c-0.885,0-1.682,0.384-2.23,0.993l0,0L35,49.182V34c0-1.657-1.343-3-3-3s-3,1.343-3,3v15.182l-3.77-4.188l0,0\r\n\t\t\t\tC24.681,44.384,23.885,44,23,44c-1.657,0-3,1.343-3,3c0,0.096,0.005,0.191,0.014,0.286l0,0c0.062,0.659,0.337,1.256,0.756,1.721\r\n\t\t\t\tl0,0l9,10L29.778,59c0.549,0.609,1.337,1,2.222,1s1.673-0.391,2.223-1.001l0.008,0.007l9-10l0,0\r\n\t\t\t\tc0.418-0.465,0.693-1.061,0.756-1.719c0-0.002,0-0.004,0-0.006C43.995,47.189,44,47.096,44,47.001V47\r\n\t\t\t\tc0-0.104-0.005-0.206-0.016-0.307C43.831,45.182,42.553,44,41,44z M53.387,19.656C50.048,11.086,41.753,5,32,5\r\n\t\t\t\tc-9.752,0-18.048,6.086-21.387,14.655C4.47,21.532,0,27.243,0,34c0,8.284,6.716,15,15,15c1.657,0,3-1.343,3-3s-1.343-3-3-3\r\n\t\t\t\tc-4.97,0-9-4.029-9-9c0-2.68,1.178-5.08,3.037-6.728c0.192-0.17,0.392-0.331,0.597-0.485c0.013-0.01,0.027-0.02,0.04-0.03\r\n\t\t\t\tc0.194-0.144,0.395-0.278,0.601-0.406c0.032-0.02,0.064-0.039,0.096-0.058c0.192-0.116,0.388-0.225,0.588-0.326\r\n\t\t\t\tc0.055-0.028,0.111-0.054,0.167-0.08c0.184-0.089,0.371-0.172,0.561-0.248c0.083-0.033,0.168-0.062,0.252-0.092\r\n\t\t\t\tc0.171-0.062,0.343-0.123,0.519-0.175c0.116-0.034,0.236-0.062,0.354-0.091c0.152-0.038,0.303-0.079,0.457-0.109\r\n\t\t\t\tc0.162-0.032,0.328-0.053,0.493-0.075c0.119-0.016,0.236-0.039,0.356-0.05C14.408,25.017,14.702,25,15,25\r\n\t\t\t\tc0.094,0,0.185,0.011,0.278,0.014c0.091-0.513,0.206-1.017,0.342-1.512c0.033-0.121,0.078-0.237,0.114-0.357\r\n\t\t\t\tc0.112-0.375,0.227-0.749,0.364-1.112c0.041-0.11,0.092-0.215,0.135-0.324c0.148-0.37,0.3-0.737,0.473-1.093\r\n\t\t\t\tc0.042-0.086,0.09-0.168,0.133-0.253c0.188-0.372,0.384-0.741,0.598-1.097C20.406,14.318,25.808,11,32,11\r\n\t\t\t\tc6.191,0,11.596,3.318,14.562,8.266c0.213,0.357,0.41,0.725,0.599,1.097c0.043,0.085,0.091,0.167,0.133,0.253\r\n\t\t\t\tc0.173,0.356,0.325,0.724,0.474,1.093c0.043,0.109,0.094,0.214,0.135,0.324c0.137,0.363,0.252,0.737,0.363,1.112\r\n\t\t\t\tc0.036,0.12,0.082,0.236,0.114,0.357c0.136,0.495,0.251,0.999,0.343,1.512C48.814,25.011,48.906,25,49,25\r\n\t\t\t\tc0.298,0,0.592,0.016,0.882,0.045c0.12,0.012,0.237,0.034,0.356,0.05c0.164,0.023,0.33,0.043,0.492,0.075\r\n\t\t\t\tc0.156,0.03,0.307,0.07,0.457,0.109c0.119,0.029,0.238,0.057,0.354,0.091c0.176,0.052,0.349,0.113,0.519,0.175\r\n\t\t\t\tc0.084,0.031,0.17,0.059,0.252,0.092c0.191,0.076,0.377,0.16,0.562,0.248c0.056,0.026,0.112,0.053,0.167,0.08\r\n\t\t\t\tc0.201,0.101,0.396,0.21,0.589,0.326c0.032,0.019,0.063,0.039,0.097,0.058c0.205,0.128,0.405,0.263,0.601,0.406\r\n\t\t\t\tc0.013,0.01,0.026,0.02,0.04,0.03c0.206,0.154,0.406,0.315,0.597,0.485C56.822,28.921,58,31.32,58,34c0,4.971-4.029,9-9,9\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3c8.284,0,15-6.716,15-15C64,27.243,59.529,21.532,53.387,19.656z"},"children":[]}]}]}]}]}]}]}]};exports.cloud_download=cloud_download;var cloud_fail={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CLOUD__x2F__FAIL_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CLOUD__x2F__FAIL"},"children":[{"name":"g","attribs":{"id":"CLOUD__x2F__FAIL"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M43,39c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L32,42.758l-5.879-5.879C25.578,36.336,24.829,36,24,36\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.829,0.336,1.578,0.879,2.121L27.757,47l-5.879,5.879C21.336,53.422,21,54.172,21,55\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.878L32,51.243l5.879,5.879C38.422,57.664,39.172,58,40,58c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.829-0.336-1.579-0.879-2.121L36.243,47l5.879-5.879C42.664,40.579,43,39.829,43,39z M53.387,20.656\r\n\t\t\t\tC50.048,12.086,41.752,6,32,6s-18.048,6.086-21.387,14.655C4.47,22.532,0,28.243,0,35c0,8.284,6.716,15,15,15\r\n\t\t\t\tc1.657,0,3-1.343,3-3s-1.343-3-3-3c-4.971,0-9-4.029-9-9c0-2.68,1.178-5.08,3.037-6.728c0.192-0.17,0.392-0.331,0.597-0.485\r\n\t\t\t\tc0.013-0.01,0.027-0.02,0.04-0.03c0.194-0.144,0.395-0.278,0.6-0.406c0.032-0.02,0.064-0.039,0.096-0.058\r\n\t\t\t\tc0.192-0.116,0.388-0.225,0.589-0.326c0.055-0.028,0.111-0.054,0.167-0.08c0.184-0.089,0.371-0.172,0.561-0.248\r\n\t\t\t\tc0.083-0.033,0.168-0.062,0.252-0.092c0.171-0.062,0.343-0.123,0.519-0.175c0.116-0.034,0.236-0.062,0.354-0.091\r\n\t\t\t\tc0.152-0.038,0.303-0.079,0.457-0.109c0.162-0.032,0.328-0.053,0.493-0.075c0.119-0.016,0.236-0.039,0.356-0.05\r\n\t\t\t\tC14.408,26.017,14.702,26,15,26c0.094,0,0.185,0.011,0.278,0.014c0.091-0.513,0.206-1.017,0.342-1.512\r\n\t\t\t\tc0.033-0.121,0.078-0.237,0.114-0.357c0.112-0.375,0.227-0.749,0.364-1.112c0.041-0.11,0.092-0.215,0.135-0.324\r\n\t\t\t\tc0.148-0.37,0.3-0.737,0.473-1.093c0.042-0.086,0.09-0.168,0.133-0.253c0.188-0.372,0.384-0.741,0.599-1.097\r\n\t\t\t\tC20.406,15.318,25.808,12,32,12c6.191,0,11.594,3.318,14.562,8.266c0.213,0.357,0.41,0.725,0.599,1.097\r\n\t\t\t\tc0.043,0.085,0.091,0.167,0.133,0.253c0.173,0.356,0.325,0.724,0.474,1.093c0.043,0.109,0.094,0.214,0.135,0.324\r\n\t\t\t\tc0.137,0.363,0.252,0.737,0.363,1.112c0.036,0.12,0.082,0.236,0.114,0.357c0.136,0.495,0.251,0.999,0.343,1.512\r\n\t\t\t\tC48.814,26.011,48.906,26,49,26c0.298,0,0.592,0.016,0.882,0.045c0.12,0.012,0.237,0.034,0.356,0.05\r\n\t\t\t\tc0.164,0.023,0.33,0.043,0.492,0.075c0.156,0.03,0.307,0.07,0.457,0.109c0.119,0.029,0.238,0.057,0.354,0.091\r\n\t\t\t\tc0.176,0.052,0.349,0.113,0.519,0.175c0.084,0.031,0.17,0.059,0.252,0.092c0.191,0.076,0.377,0.16,0.562,0.248\r\n\t\t\t\tc0.056,0.026,0.112,0.053,0.167,0.08c0.201,0.101,0.396,0.21,0.588,0.326c0.032,0.019,0.064,0.039,0.096,0.058\r\n\t\t\t\tc0.207,0.128,0.406,0.263,0.602,0.406c0.013,0.01,0.027,0.02,0.04,0.03c0.206,0.154,0.405,0.315,0.597,0.485\r\n\t\t\t\tC56.822,29.921,58,32.32,58,35c0,4.971-4.029,9-9,9c-1.657,0-3,1.343-3,3s1.343,3,3,3c8.284,0,15-6.716,15-15\r\n\t\t\t\tC64,28.243,59.529,22.532,53.387,20.656z"},"children":[{"name":"path","attribs":{"d":"M43,39c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L32,42.758l-5.879-5.879C25.578,36.336,24.829,36,24,36\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.829,0.336,1.578,0.879,2.121L27.757,47l-5.879,5.879C21.336,53.422,21,54.172,21,55\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.878L32,51.243l5.879,5.879C38.422,57.664,39.172,58,40,58c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.829-0.336-1.579-0.879-2.121L36.243,47l5.879-5.879C42.664,40.579,43,39.829,43,39z M53.387,20.656\r\n\t\t\t\tC50.048,12.086,41.752,6,32,6s-18.048,6.086-21.387,14.655C4.47,22.532,0,28.243,0,35c0,8.284,6.716,15,15,15\r\n\t\t\t\tc1.657,0,3-1.343,3-3s-1.343-3-3-3c-4.971,0-9-4.029-9-9c0-2.68,1.178-5.08,3.037-6.728c0.192-0.17,0.392-0.331,0.597-0.485\r\n\t\t\t\tc0.013-0.01,0.027-0.02,0.04-0.03c0.194-0.144,0.395-0.278,0.6-0.406c0.032-0.02,0.064-0.039,0.096-0.058\r\n\t\t\t\tc0.192-0.116,0.388-0.225,0.589-0.326c0.055-0.028,0.111-0.054,0.167-0.08c0.184-0.089,0.371-0.172,0.561-0.248\r\n\t\t\t\tc0.083-0.033,0.168-0.062,0.252-0.092c0.171-0.062,0.343-0.123,0.519-0.175c0.116-0.034,0.236-0.062,0.354-0.091\r\n\t\t\t\tc0.152-0.038,0.303-0.079,0.457-0.109c0.162-0.032,0.328-0.053,0.493-0.075c0.119-0.016,0.236-0.039,0.356-0.05\r\n\t\t\t\tC14.408,26.017,14.702,26,15,26c0.094,0,0.185,0.011,0.278,0.014c0.091-0.513,0.206-1.017,0.342-1.512\r\n\t\t\t\tc0.033-0.121,0.078-0.237,0.114-0.357c0.112-0.375,0.227-0.749,0.364-1.112c0.041-0.11,0.092-0.215,0.135-0.324\r\n\t\t\t\tc0.148-0.37,0.3-0.737,0.473-1.093c0.042-0.086,0.09-0.168,0.133-0.253c0.188-0.372,0.384-0.741,0.599-1.097\r\n\t\t\t\tC20.406,15.318,25.808,12,32,12c6.191,0,11.594,3.318,14.562,8.266c0.213,0.357,0.41,0.725,0.599,1.097\r\n\t\t\t\tc0.043,0.085,0.091,0.167,0.133,0.253c0.173,0.356,0.325,0.724,0.474,1.093c0.043,0.109,0.094,0.214,0.135,0.324\r\n\t\t\t\tc0.137,0.363,0.252,0.737,0.363,1.112c0.036,0.12,0.082,0.236,0.114,0.357c0.136,0.495,0.251,0.999,0.343,1.512\r\n\t\t\t\tC48.814,26.011,48.906,26,49,26c0.298,0,0.592,0.016,0.882,0.045c0.12,0.012,0.237,0.034,0.356,0.05\r\n\t\t\t\tc0.164,0.023,0.33,0.043,0.492,0.075c0.156,0.03,0.307,0.07,0.457,0.109c0.119,0.029,0.238,0.057,0.354,0.091\r\n\t\t\t\tc0.176,0.052,0.349,0.113,0.519,0.175c0.084,0.031,0.17,0.059,0.252,0.092c0.191,0.076,0.377,0.16,0.562,0.248\r\n\t\t\t\tc0.056,0.026,0.112,0.053,0.167,0.08c0.201,0.101,0.396,0.21,0.588,0.326c0.032,0.019,0.064,0.039,0.096,0.058\r\n\t\t\t\tc0.207,0.128,0.406,0.263,0.602,0.406c0.013,0.01,0.027,0.02,0.04,0.03c0.206,0.154,0.405,0.315,0.597,0.485\r\n\t\t\t\tC56.822,29.921,58,32.32,58,35c0,4.971-4.029,9-9,9c-1.657,0-3,1.343-3,3s1.343,3,3,3c8.284,0,15-6.716,15-15\r\n\t\t\t\tC64,28.243,59.529,22.532,53.387,20.656z"},"children":[]}]}]}]}]}]}]}]};exports.cloud_fail=cloud_fail;var cloud_ok={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CLOUD__x2F__OK_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CLOUD__x2F__OK"},"children":[{"name":"g","attribs":{"id":"CLOUD__x2F__OK"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M43,36c-1.039,0-1.954,0.527-2.493,1.33l-8.936,12.998l-5.45-5.45C25.578,44.336,24.828,44,24,44c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.829,0.336,1.579,0.879,2.121l8,8C30.422,57.664,31.172,58,32,58c1.039,0,1.954-0.527,2.493-1.33l10.969-15.954\r\n\t\t\t\tC45.801,40.23,46,39.639,46,39C46,37.343,44.657,36,43,36z M53.387,20.656C50.048,12.086,41.752,6,32,6\r\n\t\t\t\tc-9.753,0-18.048,6.086-21.387,14.655C4.47,22.532,0,28.243,0,35c0,8.284,6.716,15,15,15c1.657,0,3-1.343,3-3s-1.343-3-3-3\r\n\t\t\t\tc-4.971,0-9-4.029-9-9c0-2.68,1.178-5.08,3.037-6.728c0.192-0.17,0.392-0.331,0.597-0.485c0.013-0.01,0.027-0.02,0.04-0.03\r\n\t\t\t\tc0.194-0.144,0.395-0.278,0.601-0.406c0.032-0.02,0.064-0.039,0.096-0.058c0.192-0.116,0.388-0.225,0.588-0.326\r\n\t\t\t\tc0.055-0.028,0.111-0.054,0.167-0.08c0.184-0.089,0.371-0.172,0.561-0.248c0.083-0.033,0.168-0.062,0.252-0.092\r\n\t\t\t\tc0.171-0.062,0.343-0.123,0.519-0.175c0.116-0.034,0.236-0.062,0.354-0.091c0.152-0.038,0.303-0.079,0.457-0.109\r\n\t\t\t\tc0.162-0.032,0.328-0.053,0.493-0.075c0.119-0.016,0.236-0.039,0.356-0.05C14.408,26.017,14.702,26,15,26\r\n\t\t\t\tc0.094,0,0.185,0.011,0.278,0.014c0.091-0.513,0.206-1.017,0.342-1.512c0.033-0.121,0.078-0.237,0.114-0.357\r\n\t\t\t\tc0.112-0.375,0.227-0.749,0.364-1.112c0.041-0.11,0.092-0.215,0.135-0.324c0.148-0.37,0.3-0.737,0.473-1.093\r\n\t\t\t\tc0.041-0.086,0.09-0.168,0.133-0.253c0.188-0.372,0.384-0.741,0.598-1.097C20.406,15.318,25.808,12,32,12\r\n\t\t\t\tc6.191,0,11.594,3.318,14.562,8.266c0.213,0.357,0.41,0.725,0.599,1.097c0.043,0.085,0.091,0.167,0.133,0.253\r\n\t\t\t\tc0.172,0.356,0.325,0.724,0.474,1.093c0.043,0.109,0.094,0.214,0.135,0.324c0.137,0.363,0.252,0.737,0.363,1.112\r\n\t\t\t\tc0.036,0.12,0.082,0.236,0.114,0.357c0.136,0.495,0.251,0.999,0.343,1.512C48.814,26.011,48.906,26,49,26\r\n\t\t\t\tc0.298,0,0.592,0.016,0.882,0.045c0.12,0.012,0.237,0.034,0.356,0.05c0.164,0.023,0.33,0.043,0.492,0.075\r\n\t\t\t\tc0.156,0.03,0.307,0.07,0.457,0.109c0.119,0.029,0.238,0.057,0.354,0.091c0.176,0.052,0.349,0.113,0.519,0.175\r\n\t\t\t\tc0.084,0.031,0.17,0.059,0.252,0.092c0.191,0.076,0.377,0.16,0.562,0.248c0.056,0.026,0.112,0.053,0.167,0.08\r\n\t\t\t\tc0.2,0.101,0.396,0.21,0.588,0.326c0.032,0.019,0.064,0.039,0.096,0.058c0.207,0.128,0.406,0.263,0.602,0.406\r\n\t\t\t\tc0.013,0.01,0.027,0.02,0.04,0.03c0.206,0.154,0.405,0.315,0.597,0.485C56.822,29.921,58,32.32,58,35c0,4.971-4.029,9-9,9\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3c8.284,0,15-6.716,15-15C64,28.243,59.529,22.532,53.387,20.656z"},"children":[{"name":"path","attribs":{"d":"M43,36c-1.039,0-1.954,0.527-2.493,1.33l-8.936,12.998l-5.45-5.45C25.578,44.336,24.828,44,24,44c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.829,0.336,1.579,0.879,2.121l8,8C30.422,57.664,31.172,58,32,58c1.039,0,1.954-0.527,2.493-1.33l10.969-15.954\r\n\t\t\t\tC45.801,40.23,46,39.639,46,39C46,37.343,44.657,36,43,36z M53.387,20.656C50.048,12.086,41.752,6,32,6\r\n\t\t\t\tc-9.753,0-18.048,6.086-21.387,14.655C4.47,22.532,0,28.243,0,35c0,8.284,6.716,15,15,15c1.657,0,3-1.343,3-3s-1.343-3-3-3\r\n\t\t\t\tc-4.971,0-9-4.029-9-9c0-2.68,1.178-5.08,3.037-6.728c0.192-0.17,0.392-0.331,0.597-0.485c0.013-0.01,0.027-0.02,0.04-0.03\r\n\t\t\t\tc0.194-0.144,0.395-0.278,0.601-0.406c0.032-0.02,0.064-0.039,0.096-0.058c0.192-0.116,0.388-0.225,0.588-0.326\r\n\t\t\t\tc0.055-0.028,0.111-0.054,0.167-0.08c0.184-0.089,0.371-0.172,0.561-0.248c0.083-0.033,0.168-0.062,0.252-0.092\r\n\t\t\t\tc0.171-0.062,0.343-0.123,0.519-0.175c0.116-0.034,0.236-0.062,0.354-0.091c0.152-0.038,0.303-0.079,0.457-0.109\r\n\t\t\t\tc0.162-0.032,0.328-0.053,0.493-0.075c0.119-0.016,0.236-0.039,0.356-0.05C14.408,26.017,14.702,26,15,26\r\n\t\t\t\tc0.094,0,0.185,0.011,0.278,0.014c0.091-0.513,0.206-1.017,0.342-1.512c0.033-0.121,0.078-0.237,0.114-0.357\r\n\t\t\t\tc0.112-0.375,0.227-0.749,0.364-1.112c0.041-0.11,0.092-0.215,0.135-0.324c0.148-0.37,0.3-0.737,0.473-1.093\r\n\t\t\t\tc0.041-0.086,0.09-0.168,0.133-0.253c0.188-0.372,0.384-0.741,0.598-1.097C20.406,15.318,25.808,12,32,12\r\n\t\t\t\tc6.191,0,11.594,3.318,14.562,8.266c0.213,0.357,0.41,0.725,0.599,1.097c0.043,0.085,0.091,0.167,0.133,0.253\r\n\t\t\t\tc0.172,0.356,0.325,0.724,0.474,1.093c0.043,0.109,0.094,0.214,0.135,0.324c0.137,0.363,0.252,0.737,0.363,1.112\r\n\t\t\t\tc0.036,0.12,0.082,0.236,0.114,0.357c0.136,0.495,0.251,0.999,0.343,1.512C48.814,26.011,48.906,26,49,26\r\n\t\t\t\tc0.298,0,0.592,0.016,0.882,0.045c0.12,0.012,0.237,0.034,0.356,0.05c0.164,0.023,0.33,0.043,0.492,0.075\r\n\t\t\t\tc0.156,0.03,0.307,0.07,0.457,0.109c0.119,0.029,0.238,0.057,0.354,0.091c0.176,0.052,0.349,0.113,0.519,0.175\r\n\t\t\t\tc0.084,0.031,0.17,0.059,0.252,0.092c0.191,0.076,0.377,0.16,0.562,0.248c0.056,0.026,0.112,0.053,0.167,0.08\r\n\t\t\t\tc0.2,0.101,0.396,0.21,0.588,0.326c0.032,0.019,0.064,0.039,0.096,0.058c0.207,0.128,0.406,0.263,0.602,0.406\r\n\t\t\t\tc0.013,0.01,0.027,0.02,0.04,0.03c0.206,0.154,0.405,0.315,0.597,0.485C56.822,29.921,58,32.32,58,35c0,4.971-4.029,9-9,9\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3c8.284,0,15-6.716,15-15C64,28.243,59.529,22.532,53.387,20.656z"},"children":[]}]}]}]}]}]}]}]};exports.cloud_ok=cloud_ok;var cloud_upload={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CLOUD__x2F__UPLOAD_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CLOUD__x2F__UPLOAD"},"children":[{"name":"g","attribs":{"id":"CLOUD__x2F__UPLOAD"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M43.986,43.719c0-0.002,0-0.004,0-0.006c-0.063-0.658-0.338-1.255-0.756-1.719l0,0l-0.008-0.01\r\n\t\t\t\tc-0.002,0-0.002-0.002-0.004-0.002l-8.99-9.989L34.221,32c-0.549-0.61-1.336-1-2.222-1c-0.885,0-1.673,0.391-2.222,1\r\n\t\t\t\tl-0.008-0.007l-8.988,9.987c-0.002,0.002-0.004,0.004-0.006,0.006l-0.006,0.007l0,0C20.292,42.525,20,43.229,20,44\r\n\t\t\t\tc0,0.518,0.131,1.005,0.362,1.43C20.87,46.365,21.861,47,23,47c0.033,0,0.066-0.002,0.099-0.003\r\n\t\t\t\tc0.019-0.001,0.038-0.001,0.057-0.002c0.022-0.001,0.043-0.003,0.065-0.005c0.033-0.002,0.066-0.006,0.098-0.008\r\n\t\t\t\tc0.012-0.002,0.024-0.004,0.036-0.006c0.044-0.004,0.087-0.011,0.13-0.018c0.001,0,0.003,0,0.004-0.001\r\n\t\t\t\tc0.686-0.112,1.294-0.458,1.74-0.953l0,0L29,41.818V57c0,1.657,1.343,3,3,3s3-1.343,3-3V41.818l3.77,4.188l0,0\r\n\t\t\t\tc0.446,0.495,1.056,0.841,1.742,0.953c0.002,0,0.002,0,0.002,0c0.045,0.007,0.088,0.013,0.133,0.019\r\n\t\t\t\tc0.011,0,0.022,0.002,0.033,0.004c0.033,0.002,0.067,0.006,0.1,0.008c0.021,0.002,0.043,0.004,0.063,0.005s0.04,0.001,0.06,0.002\r\n\t\t\t\tC40.936,46.999,40.967,47,41,47c1.657,0,3-1.343,3-3c0-0.001,0-0.001,0-0.002C44,43.904,43.995,43.811,43.986,43.719z\r\n\t\t\t\t M53.387,19.656C50.048,11.086,41.753,5,32,5c-9.752,0-18.048,6.086-21.387,14.655C4.47,21.532,0,27.243,0,34\r\n\t\t\t\tc0,8.284,6.716,15,15,15c1.657,0,3-1.343,3-3s-1.343-3-3-3c-4.971,0-9-4.029-9-9c0-2.68,1.178-5.08,3.037-6.728\r\n\t\t\t\tc0.192-0.17,0.392-0.331,0.597-0.485c0.013-0.01,0.027-0.02,0.04-0.03c0.194-0.144,0.395-0.278,0.6-0.406\r\n\t\t\t\tc0.032-0.02,0.064-0.039,0.096-0.058c0.192-0.116,0.388-0.225,0.588-0.326c0.055-0.028,0.111-0.054,0.167-0.08\r\n\t\t\t\tc0.184-0.089,0.371-0.172,0.561-0.248c0.083-0.033,0.168-0.062,0.252-0.092c0.171-0.062,0.343-0.123,0.519-0.175\r\n\t\t\t\tc0.116-0.034,0.236-0.062,0.354-0.091c0.152-0.038,0.303-0.079,0.457-0.109c0.162-0.032,0.328-0.053,0.493-0.075\r\n\t\t\t\tc0.119-0.016,0.236-0.039,0.356-0.05C14.408,25.017,14.702,25,15,25c0.094,0,0.185,0.011,0.278,0.014\r\n\t\t\t\tc0.091-0.513,0.206-1.017,0.342-1.512c0.033-0.121,0.078-0.237,0.114-0.357c0.112-0.375,0.227-0.749,0.364-1.112\r\n\t\t\t\tc0.041-0.11,0.092-0.215,0.135-0.324c0.148-0.37,0.3-0.737,0.473-1.093c0.042-0.086,0.09-0.168,0.133-0.253\r\n\t\t\t\tc0.188-0.372,0.384-0.741,0.599-1.097C20.406,14.318,25.808,11,32,11c6.191,0,11.596,3.318,14.562,8.266\r\n\t\t\t\tc0.213,0.357,0.41,0.725,0.598,1.097c0.043,0.085,0.091,0.167,0.133,0.253c0.173,0.356,0.325,0.724,0.473,1.093\r\n\t\t\t\tc0.043,0.109,0.094,0.214,0.135,0.324c0.138,0.363,0.252,0.737,0.365,1.112c0.035,0.12,0.08,0.236,0.113,0.357\r\n\t\t\t\tc0.137,0.495,0.251,0.999,0.342,1.512C48.814,25.011,48.906,25,49,25c0.298,0,0.592,0.016,0.882,0.045\r\n\t\t\t\tc0.12,0.012,0.237,0.034,0.356,0.05c0.164,0.023,0.33,0.043,0.492,0.075c0.156,0.03,0.307,0.07,0.457,0.109\r\n\t\t\t\tc0.119,0.029,0.238,0.057,0.354,0.091c0.176,0.052,0.349,0.113,0.519,0.175c0.084,0.031,0.17,0.059,0.252,0.092\r\n\t\t\t\tc0.191,0.076,0.377,0.16,0.562,0.248c0.056,0.026,0.112,0.053,0.167,0.08c0.201,0.101,0.396,0.21,0.588,0.326\r\n\t\t\t\tc0.032,0.019,0.064,0.039,0.096,0.058c0.207,0.128,0.406,0.263,0.602,0.406c0.013,0.01,0.027,0.02,0.04,0.03\r\n\t\t\t\tc0.206,0.154,0.405,0.315,0.597,0.485C56.822,28.921,58,31.32,58,34c0,4.971-4.029,9-9,9c-1.657,0-3,1.343-3,3s1.343,3,3,3\r\n\t\t\t\tc8.284,0,15-6.716,15-15C64,27.243,59.529,21.532,53.387,19.656z"},"children":[{"name":"path","attribs":{"d":"M43.986,43.719c0-0.002,0-0.004,0-0.006c-0.063-0.658-0.338-1.255-0.756-1.719l0,0l-0.008-0.01\r\n\t\t\t\tc-0.002,0-0.002-0.002-0.004-0.002l-8.99-9.989L34.221,32c-0.549-0.61-1.336-1-2.222-1c-0.885,0-1.673,0.391-2.222,1\r\n\t\t\t\tl-0.008-0.007l-8.988,9.987c-0.002,0.002-0.004,0.004-0.006,0.006l-0.006,0.007l0,0C20.292,42.525,20,43.229,20,44\r\n\t\t\t\tc0,0.518,0.131,1.005,0.362,1.43C20.87,46.365,21.861,47,23,47c0.033,0,0.066-0.002,0.099-0.003\r\n\t\t\t\tc0.019-0.001,0.038-0.001,0.057-0.002c0.022-0.001,0.043-0.003,0.065-0.005c0.033-0.002,0.066-0.006,0.098-0.008\r\n\t\t\t\tc0.012-0.002,0.024-0.004,0.036-0.006c0.044-0.004,0.087-0.011,0.13-0.018c0.001,0,0.003,0,0.004-0.001\r\n\t\t\t\tc0.686-0.112,1.294-0.458,1.74-0.953l0,0L29,41.818V57c0,1.657,1.343,3,3,3s3-1.343,3-3V41.818l3.77,4.188l0,0\r\n\t\t\t\tc0.446,0.495,1.056,0.841,1.742,0.953c0.002,0,0.002,0,0.002,0c0.045,0.007,0.088,0.013,0.133,0.019\r\n\t\t\t\tc0.011,0,0.022,0.002,0.033,0.004c0.033,0.002,0.067,0.006,0.1,0.008c0.021,0.002,0.043,0.004,0.063,0.005s0.04,0.001,0.06,0.002\r\n\t\t\t\tC40.936,46.999,40.967,47,41,47c1.657,0,3-1.343,3-3c0-0.001,0-0.001,0-0.002C44,43.904,43.995,43.811,43.986,43.719z\r\n\t\t\t\t M53.387,19.656C50.048,11.086,41.753,5,32,5c-9.752,0-18.048,6.086-21.387,14.655C4.47,21.532,0,27.243,0,34\r\n\t\t\t\tc0,8.284,6.716,15,15,15c1.657,0,3-1.343,3-3s-1.343-3-3-3c-4.971,0-9-4.029-9-9c0-2.68,1.178-5.08,3.037-6.728\r\n\t\t\t\tc0.192-0.17,0.392-0.331,0.597-0.485c0.013-0.01,0.027-0.02,0.04-0.03c0.194-0.144,0.395-0.278,0.6-0.406\r\n\t\t\t\tc0.032-0.02,0.064-0.039,0.096-0.058c0.192-0.116,0.388-0.225,0.588-0.326c0.055-0.028,0.111-0.054,0.167-0.08\r\n\t\t\t\tc0.184-0.089,0.371-0.172,0.561-0.248c0.083-0.033,0.168-0.062,0.252-0.092c0.171-0.062,0.343-0.123,0.519-0.175\r\n\t\t\t\tc0.116-0.034,0.236-0.062,0.354-0.091c0.152-0.038,0.303-0.079,0.457-0.109c0.162-0.032,0.328-0.053,0.493-0.075\r\n\t\t\t\tc0.119-0.016,0.236-0.039,0.356-0.05C14.408,25.017,14.702,25,15,25c0.094,0,0.185,0.011,0.278,0.014\r\n\t\t\t\tc0.091-0.513,0.206-1.017,0.342-1.512c0.033-0.121,0.078-0.237,0.114-0.357c0.112-0.375,0.227-0.749,0.364-1.112\r\n\t\t\t\tc0.041-0.11,0.092-0.215,0.135-0.324c0.148-0.37,0.3-0.737,0.473-1.093c0.042-0.086,0.09-0.168,0.133-0.253\r\n\t\t\t\tc0.188-0.372,0.384-0.741,0.599-1.097C20.406,14.318,25.808,11,32,11c6.191,0,11.596,3.318,14.562,8.266\r\n\t\t\t\tc0.213,0.357,0.41,0.725,0.598,1.097c0.043,0.085,0.091,0.167,0.133,0.253c0.173,0.356,0.325,0.724,0.473,1.093\r\n\t\t\t\tc0.043,0.109,0.094,0.214,0.135,0.324c0.138,0.363,0.252,0.737,0.365,1.112c0.035,0.12,0.08,0.236,0.113,0.357\r\n\t\t\t\tc0.137,0.495,0.251,0.999,0.342,1.512C48.814,25.011,48.906,25,49,25c0.298,0,0.592,0.016,0.882,0.045\r\n\t\t\t\tc0.12,0.012,0.237,0.034,0.356,0.05c0.164,0.023,0.33,0.043,0.492,0.075c0.156,0.03,0.307,0.07,0.457,0.109\r\n\t\t\t\tc0.119,0.029,0.238,0.057,0.354,0.091c0.176,0.052,0.349,0.113,0.519,0.175c0.084,0.031,0.17,0.059,0.252,0.092\r\n\t\t\t\tc0.191,0.076,0.377,0.16,0.562,0.248c0.056,0.026,0.112,0.053,0.167,0.08c0.201,0.101,0.396,0.21,0.588,0.326\r\n\t\t\t\tc0.032,0.019,0.064,0.039,0.096,0.058c0.207,0.128,0.406,0.263,0.602,0.406c0.013,0.01,0.027,0.02,0.04,0.03\r\n\t\t\t\tc0.206,0.154,0.405,0.315,0.597,0.485C56.822,28.921,58,31.32,58,34c0,4.971-4.029,9-9,9c-1.657,0-3,1.343-3,3s1.343,3,3,3\r\n\t\t\t\tc8.284,0,15-6.716,15-15C64,27.243,59.529,21.532,53.387,19.656z"},"children":[]}]}]}]}]}]}]}]};exports.cloud_upload=cloud_upload;var code={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CODE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CODE"},"children":[{"name":"g","attribs":{"id":"CODE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M15.031,17c-0.844,0-1.604,0.352-2.149,0.913l-0.003-0.003L1.053,29.735C0.413,30.285,0,31.091,0,32\r\n\t\t\t\tc0,0.844,0.351,1.604,0.912,2.148L0.91,34.152l12,12l0.003-0.004C13.453,46.674,14.187,47,15,47c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.812-0.326-1.547-0.851-2.087l0.003-0.003l-9.894-9.895l9.863-9.863l-0.003-0.003c0.561-0.545,0.913-1.305,0.913-2.149\r\n\t\t\t\tC18.031,18.343,16.688,17,15.031,17z M64.031,32c0-0.91-0.413-1.715-1.053-2.265L51.152,17.91l-0.002,0.003\r\n\t\t\t\tC50.604,17.352,49.844,17,49,17c-1.657,0-3,1.343-3,3c0,0.844,0.352,1.604,0.913,2.149l-0.003,0.003l9.863,9.863l-9.895,9.895\r\n\t\t\t\tl0.003,0.003c-0.524,0.54-0.851,1.274-0.851,2.087c0,1.657,1.343,3,3,3c0.812,0,1.547-0.326,2.088-0.852l0.003,0.004l12-12\r\n\t\t\t\tl-0.003-0.004C63.68,33.604,64.031,32.844,64.031,32z M40,8c-1.3,0-2.406,0.827-2.823,1.982L21.2,51.924\r\n\t\t\t\tC21.071,52.258,21,52.621,21,53c0,1.657,1.343,3,3,3c1.3,0,2.406-0.827,2.823-1.982L42.8,12.076C42.93,11.742,43,11.38,43,11\r\n\t\t\t\tC43,9.343,41.657,8,40,8z"},"children":[{"name":"path","attribs":{"d":"M15.031,17c-0.844,0-1.604,0.352-2.149,0.913l-0.003-0.003L1.053,29.735C0.413,30.285,0,31.091,0,32\r\n\t\t\t\tc0,0.844,0.351,1.604,0.912,2.148L0.91,34.152l12,12l0.003-0.004C13.453,46.674,14.187,47,15,47c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.812-0.326-1.547-0.851-2.087l0.003-0.003l-9.894-9.895l9.863-9.863l-0.003-0.003c0.561-0.545,0.913-1.305,0.913-2.149\r\n\t\t\t\tC18.031,18.343,16.688,17,15.031,17z M64.031,32c0-0.91-0.413-1.715-1.053-2.265L51.152,17.91l-0.002,0.003\r\n\t\t\t\tC50.604,17.352,49.844,17,49,17c-1.657,0-3,1.343-3,3c0,0.844,0.352,1.604,0.913,2.149l-0.003,0.003l9.863,9.863l-9.895,9.895\r\n\t\t\t\tl0.003,0.003c-0.524,0.54-0.851,1.274-0.851,2.087c0,1.657,1.343,3,3,3c0.812,0,1.547-0.326,2.088-0.852l0.003,0.004l12-12\r\n\t\t\t\tl-0.003-0.004C63.68,33.604,64.031,32.844,64.031,32z M40,8c-1.3,0-2.406,0.827-2.823,1.982L21.2,51.924\r\n\t\t\t\tC21.071,52.258,21,52.621,21,53c0,1.657,1.343,3,3,3c1.3,0,2.406-0.827,2.823-1.982L42.8,12.076C42.93,11.742,43,11.38,43,11\r\n\t\t\t\tC43,9.343,41.657,8,40,8z"},"children":[]}]}]}]}]}]}]}]};exports.code=code;var cog={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"COG_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"COG"},"children":[{"name":"g","attribs":{"id":"COG"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M32,20c-6.627,0-12,5.372-12,12c0,6.627,5.372,12,12,12s12-5.373,12-12S38.627,20,32,20z M32,38c-3.314,0-6-2.686-6-6\r\n\t\t\t\tc0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6C38,35.314,35.314,38,32,38z M55.518,25.462c-0.541-1.957-1.326-3.811-2.311-5.536\r\n\t\t\t\tc1.121-1.507,4.98-7.143,2.199-9.926l-1.428-1.507c-2.379-2.378-8.455,1.336-9.931,2.298c-1.745-0.989-3.62-1.774-5.6-2.31\r\n\t\t\t\tc-0.317-1.887-1.704-8.487-5.619-8.487h-1.567c-3.361,0-5.29,6.824-5.721,8.534c-1.952,0.545-3.801,1.334-5.522,2.32\r\n\t\t\t\tC18.661,9.839,12.841,5.816,10,8.656L8.493,9.924c-2.476,2.475,1.638,9.004,2.39,10.147c-0.952,1.698-1.715,3.517-2.241,5.435\r\n\t\t\t\tc-1.641,0.262-8.649,1.614-8.649,5.646v1.566c0,3.493,7.349,5.433,8.69,5.759c0.533,1.904,1.3,3.709,2.255,5.394\r\n\t\t\t\tc-0.791,1.239-4.745,7.739-2.292,10.194l1.427,1.188c3.229,3.229,9.974-2.075,9.974-2.075l-0.314-0.334\r\n\t\t\t\tc1.789,1.058,3.726,1.896,5.773,2.47c0.335,1.379,2.275,8.677,5.755,8.677h1.567c4.566,0,5.697-8.521,5.697-8.521l-0.418-0.013\r\n\t\t\t\tc2.069-0.529,4.031-1.325,5.851-2.345c1.426,0.949,7.401,4.688,9.786,2.304l1.587-1.588c3.183-3.183-1.997-9.696-2.142-9.877\r\n\t\t\t\tc0.984-1.722,1.773-3.571,2.316-5.525c1.78-0.452,8.483-2.374,8.483-5.707v-1.566C63.988,26.73,56.016,25.533,55.518,25.462z\r\n\t\t\t\t M32,50c-9.941,0-18-8.059-18-18c0-9.941,8.059-18,18-18c9.941,0,18,8.059,18,18C50,41.941,41.941,50,32,50z"},"children":[{"name":"path","attribs":{"d":"M32,20c-6.627,0-12,5.372-12,12c0,6.627,5.372,12,12,12s12-5.373,12-12S38.627,20,32,20z M32,38c-3.314,0-6-2.686-6-6\r\n\t\t\t\tc0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6C38,35.314,35.314,38,32,38z M55.518,25.462c-0.541-1.957-1.326-3.811-2.311-5.536\r\n\t\t\t\tc1.121-1.507,4.98-7.143,2.199-9.926l-1.428-1.507c-2.379-2.378-8.455,1.336-9.931,2.298c-1.745-0.989-3.62-1.774-5.6-2.31\r\n\t\t\t\tc-0.317-1.887-1.704-8.487-5.619-8.487h-1.567c-3.361,0-5.29,6.824-5.721,8.534c-1.952,0.545-3.801,1.334-5.522,2.32\r\n\t\t\t\tC18.661,9.839,12.841,5.816,10,8.656L8.493,9.924c-2.476,2.475,1.638,9.004,2.39,10.147c-0.952,1.698-1.715,3.517-2.241,5.435\r\n\t\t\t\tc-1.641,0.262-8.649,1.614-8.649,5.646v1.566c0,3.493,7.349,5.433,8.69,5.759c0.533,1.904,1.3,3.709,2.255,5.394\r\n\t\t\t\tc-0.791,1.239-4.745,7.739-2.292,10.194l1.427,1.188c3.229,3.229,9.974-2.075,9.974-2.075l-0.314-0.334\r\n\t\t\t\tc1.789,1.058,3.726,1.896,5.773,2.47c0.335,1.379,2.275,8.677,5.755,8.677h1.567c4.566,0,5.697-8.521,5.697-8.521l-0.418-0.013\r\n\t\t\t\tc2.069-0.529,4.031-1.325,5.851-2.345c1.426,0.949,7.401,4.688,9.786,2.304l1.587-1.588c3.183-3.183-1.997-9.696-2.142-9.877\r\n\t\t\t\tc0.984-1.722,1.773-3.571,2.316-5.525c1.78-0.452,8.483-2.374,8.483-5.707v-1.566C63.988,26.73,56.016,25.533,55.518,25.462z\r\n\t\t\t\t M32,50c-9.941,0-18-8.059-18-18c0-9.941,8.059-18,18-18c9.941,0,18,8.059,18,18C50,41.941,41.941,50,32,50z"},"children":[]}]}]}]}]}]}]}]};exports.cog=cog;var columns={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"COLUMNS_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"COLUMNS"},"children":[{"name":"g","attribs":{"id":"COLUMNS"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M61,6H3C1.343,6,0,7.343,0,9v46c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V9C64,7.343,62.657,6,61,6z M21,52H6V12h15\r\n\t\t\t\tV52z M40,52H24V12h16V52z M58,52H43V12h15V52z"},"children":[{"name":"path","attribs":{"d":"M61,6H3C1.343,6,0,7.343,0,9v46c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V9C64,7.343,62.657,6,61,6z M21,52H6V12h15\r\n\t\t\t\tV52z M40,52H24V12h16V52z M58,52H43V12h15V52z"},"children":[]}]}]}]}]}]}]}]};exports.columns=columns;var command={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"COMMAND"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M51,39h-6V25h6c6.627,0,12-5.372,12-12c0-6.628-5.372-12-12-12\r\n\t\t\tc-6.628,0-12,5.373-12,12v6H25v-6c0-6.628-5.373-12-12-12C6.373,1,1,6.373,1,13c0,6.627,5.373,12,12,12h6v14h-6\r\n\t\t\tC6.373,39,1,44.373,1,51c0,6.628,5.373,12,12,12c6.627,0,12-5.372,12-12v-6h14v6c0,6.628,5.372,12,12,12c6.627,0,12-5.372,12-12\r\n\t\t\tC63,44.373,57.627,39,51,39z M45,13c0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6s-2.686,6-6,6h-6V13z M19,51c0,3.314-2.686,6-6,6\r\n\t\t\tc-3.314,0-6-2.686-6-6c0-3.314,2.686-6,6-6h6V51z M19,19h-6c-3.314,0-6-2.686-6-6s2.686-6,6-6c3.314,0,6,2.686,6,6V19z M39,39H25\r\n\t\t\tV25h14V39z M51,57c-3.314,0-6-2.686-6-6v-6h7v0.101c2.835,0.478,5,2.928,5,5.899C57,54.314,54.314,57,51,57z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M51,39h-6V25h6c6.627,0,12-5.372,12-12c0-6.628-5.372-12-12-12\r\n\t\t\tc-6.628,0-12,5.373-12,12v6H25v-6c0-6.628-5.373-12-12-12C6.373,1,1,6.373,1,13c0,6.627,5.373,12,12,12h6v14h-6\r\n\t\t\tC6.373,39,1,44.373,1,51c0,6.628,5.373,12,12,12c6.627,0,12-5.372,12-12v-6h14v6c0,6.628,5.372,12,12,12c6.627,0,12-5.372,12-12\r\n\t\t\tC63,44.373,57.627,39,51,39z M45,13c0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6s-2.686,6-6,6h-6V13z M19,51c0,3.314-2.686,6-6,6\r\n\t\t\tc-3.314,0-6-2.686-6-6c0-3.314,2.686-6,6-6h6V51z M19,19h-6c-3.314,0-6-2.686-6-6s2.686-6,6-6c3.314,0,6,2.686,6,6V19z M39,39H25\r\n\t\t\tV25h14V39z M51,57c-3.314,0-6-2.686-6-6v-6h7v0.101c2.835,0.478,5,2.928,5,5.899C57,54.314,54.314,57,51,57z"},"children":[]}]}]}]}]}]};exports.command=command;var compass={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"COMPASS_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"COMPASS"},"children":[{"name":"g","attribs":{"id":"COMPASS"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M16,16l9,22l23,10l-9-23L16,16z M32,35c-1.657,0-3-1.343-3-3s1.343-3,3-3s3,1.343,3,3S33.657,35,32,35z M32,0\r\n\t\t\t\tC14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.64,17.641,6,32,6\r\n\t\t\t\tc14.359,0,26,11.641,26,26C58,46.359,46.359,58,32,58z"},"children":[{"name":"path","attribs":{"d":"M16,16l9,22l23,10l-9-23L16,16z M32,35c-1.657,0-3-1.343-3-3s1.343-3,3-3s3,1.343,3,3S33.657,35,32,35z M32,0\r\n\t\t\t\tC14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.64,17.641,6,32,6\r\n\t\t\t\tc14.359,0,26,11.641,26,26C58,46.359,46.359,58,32,58z"},"children":[]}]}]}]}]}]}]}]};exports.compass=compass;var computer_add={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__ADD_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__ADD"},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__ADD"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M26,28h3v3c0,1.657,1.343,3,3,3s3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3s-1.343-3-3-3h-3v-3c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3S24.343,28,26,28z M60,4H4C2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26\r\n\t\t\t\tv-1l-4-4v-5h19c1.657,0,3-1.343,3-3V7C63,5.343,61.657,4,60,4z M59,42H5V8h54V42z"},"children":[{"name":"path","attribs":{"d":"M26,28h3v3c0,1.657,1.343,3,3,3s3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3s-1.343-3-3-3h-3v-3c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3S24.343,28,26,28z M60,4H4C2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26\r\n\t\t\t\tv-1l-4-4v-5h19c1.657,0,3-1.343,3-3V7C63,5.343,61.657,4,60,4z M59,42H5V8h54V42z"},"children":[]}]}]}]}]}]}]}]};exports.computer_add=computer_add;var computer_delete={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__DELETE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__DELETE"},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__DELETE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M60,4H4C2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC63,5.343,61.657,4,60,4z M59,42H5V8h54V42z M23,31c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L32,29.243l3.879,3.879\r\n\t\t\t\tC36.422,33.664,37.172,34,38,34c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L36.243,25l3.879-3.879\r\n\t\t\t\tC40.664,20.578,41,19.828,41,19c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L32,20.757l-3.879-3.879\r\n\t\t\t\tC27.578,16.336,26.828,16,26,16c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L27.757,25l-3.879,3.879\r\n\t\t\t\tC23.336,29.422,23,30.172,23,31z"},"children":[{"name":"path","attribs":{"d":"M60,4H4C2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC63,5.343,61.657,4,60,4z M59,42H5V8h54V42z M23,31c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L32,29.243l3.879,3.879\r\n\t\t\t\tC36.422,33.664,37.172,34,38,34c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L36.243,25l3.879-3.879\r\n\t\t\t\tC40.664,20.578,41,19.828,41,19c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L32,20.757l-3.879-3.879\r\n\t\t\t\tC27.578,16.336,26.828,16,26,16c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L27.757,25l-3.879,3.879\r\n\t\t\t\tC23.336,29.422,23,30.172,23,31z"},"children":[]}]}]}]}]}]}]}]};exports.computer_delete=computer_delete;var computer_download={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__DOWNLOAD_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__DOWNLOAD"},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__DOWNLOAD"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M22,19c0,0.828,0.336,1.578,0.879,2.121l7,7C30.422,28.664,31.172,29,32,29s1.578-0.336,2.121-0.879l7-7\r\n\t\t\t\tC41.664,20.579,42,19.828,42,19c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L35,18.758V5c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v13.757l-1.879-1.879C26.578,16.336,25.828,16,25,16C23.343,16,22,17.343,22,19z M60,6H38v4h21v34H5V10h21V6H4\r\n\t\t\t\tC2.343,6,1,7.343,1,9v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V9C63,7.343,61.657,6,60,6z"},"children":[{"name":"path","attribs":{"d":"M22,19c0,0.828,0.336,1.578,0.879,2.121l7,7C30.422,28.664,31.172,29,32,29s1.578-0.336,2.121-0.879l7-7\r\n\t\t\t\tC41.664,20.579,42,19.828,42,19c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L35,18.758V5c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v13.757l-1.879-1.879C26.578,16.336,25.828,16,25,16C23.343,16,22,17.343,22,19z M60,6H38v4h21v34H5V10h21V6H4\r\n\t\t\t\tC2.343,6,1,7.343,1,9v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V9C63,7.343,61.657,6,60,6z"},"children":[]}]}]}]}]}]}]}]};exports.computer_download=computer_download;var computer_ok={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__OK_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__OK"},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__OK"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M27.879,31.121C28.422,31.664,29.172,32,30,32c0.829,0,1.578-0.336,2.121-0.879l8-8C40.664,22.578,41,21.829,41,21\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L30,24.757l-1.879-1.879C27.578,22.336,26.828,22,26,22\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L27.879,31.121z M60,4H4C2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5\r\n\t\t\t\tl-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V7C63,5.343,61.657,4,60,4z M59,42H5V8h54V42z"},"children":[{"name":"path","attribs":{"d":"M27.879,31.121C28.422,31.664,29.172,32,30,32c0.829,0,1.578-0.336,2.121-0.879l8-8C40.664,22.578,41,21.829,41,21\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L30,24.757l-1.879-1.879C27.578,22.336,26.828,22,26,22\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L27.879,31.121z M60,4H4C2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5\r\n\t\t\t\tl-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V7C63,5.343,61.657,4,60,4z M59,42H5V8h54V42z"},"children":[]}]}]}]}]}]}]}]};exports.computer_ok=computer_ok;var computer_remove={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__REMOVE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__REMOVE"},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__REMOVE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M26,28h12c1.657,0,3-1.343,3-3s-1.343-3-3-3H26c-1.657,0-3,1.343-3,3S24.343,28,26,28z M60,4H4C2.343,4,1,5.343,1,7v40\r\n\t\t\t\tc0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V7C63,5.343,61.657,4,60,4z M59,42H5V8h54V42z"},"children":[{"name":"path","attribs":{"d":"M26,28h12c1.657,0,3-1.343,3-3s-1.343-3-3-3H26c-1.657,0-3,1.343-3,3S24.343,28,26,28z M60,4H4C2.343,4,1,5.343,1,7v40\r\n\t\t\t\tc0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V7C63,5.343,61.657,4,60,4z M59,42H5V8h54V42z"},"children":[]}]}]}]}]}]}]}]};exports.computer_remove=computer_remove;var computer_upload={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__UPLOAD_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__UPLOAD"},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__UPLOAD"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M25,15c0.829,0,1.579-0.336,2.121-0.879L29,12.243V26c0,1.657,1.343,3,3,3s3-1.343,3-3V12.243l1.879,1.879\r\n\t\t\t\tC37.422,14.664,38.172,15,39,15c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121l-7-7C33.578,2.336,32.829,2,32,2\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879l-7,7C22.336,10.422,22,11.172,22,12C22,13.657,23.343,15,25,15z M60,6H41.484l4,4H59v34H5V10\r\n\t\t\t\th13.515l4-4H4C2.343,6,1,7.343,1,9v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V9\r\n\t\t\t\tC63,7.343,61.657,6,60,6z"},"children":[{"name":"path","attribs":{"d":"M25,15c0.829,0,1.579-0.336,2.121-0.879L29,12.243V26c0,1.657,1.343,3,3,3s3-1.343,3-3V12.243l1.879,1.879\r\n\t\t\t\tC37.422,14.664,38.172,15,39,15c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121l-7-7C33.578,2.336,32.829,2,32,2\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879l-7,7C22.336,10.422,22,11.172,22,12C22,13.657,23.343,15,25,15z M60,6H41.484l4,4H59v34H5V10\r\n\t\t\t\th13.515l4-4H4C2.343,6,1,7.343,1,9v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V9\r\n\t\t\t\tC63,7.343,61.657,6,60,6z"},"children":[]}]}]}]}]}]}]}]};exports.computer_upload=computer_upload;var copy_1={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"COPY_1_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M38,58h-9v0H16v0H6V26h11v-6H3c-1.657,0-3,1.343-3,3v38c0,1.657,1.343,3,3,3h10\r\n\t\t\tv0h17v0h11c1.657,0,3-1.343,3-3V47h-6V58z M61,0H23c-1.657,0-3,1.343-3,3v38c0,1.657,1.343,3,3,3h38c1.657,0,3-1.343,3-3V3\r\n\t\t\tC64,1.343,62.657,0,61,0z M58,38h-9v0H36v0H26V6h32V38z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M38,58h-9v0H16v0H6V26h11v-6H3c-1.657,0-3,1.343-3,3v38c0,1.657,1.343,3,3,3h10\r\n\t\t\tv0h17v0h11c1.657,0,3-1.343,3-3V47h-6V58z M61,0H23c-1.657,0-3,1.343-3,3v38c0,1.657,1.343,3,3,3h38c1.657,0,3-1.343,3-3V3\r\n\t\t\tC64,1.343,62.657,0,61,0z M58,38h-9v0H36v0H26V6h32V38z"},"children":[]}]}]}]}]}]};exports.copy_1=copy_1;var copy_2={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"COPY"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M41,20H3c-1.657,0-3,1.343-3,3v38c0,1.657,1.343,3,3,3h38c1.657,0,3-1.343,3-3\r\n\t\t\tV23C44,21.343,42.657,20,41,20z M38,58H6V26h9v0h13v0h10V58z M61,0H23c-1.657,0-3,1.343-3,3v14h6V6h9v0h13v0h10v32H47v6h14\r\n\t\t\tc1.657,0,3-1.343,3-3V3C64,1.344,62.657,0,61,0z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M41,20H3c-1.657,0-3,1.343-3,3v38c0,1.657,1.343,3,3,3h38c1.657,0,3-1.343,3-3\r\n\t\t\tV23C44,21.343,42.657,20,41,20z M38,58H6V26h9v0h13v0h10V58z M61,0H23c-1.657,0-3,1.343-3,3v14h6V6h9v0h13v0h10v32H47v6h14\r\n\t\t\tc1.657,0,3-1.343,3-3V3C64,1.344,62.657,0,61,0z"},"children":[]}]}]}]}]}]};exports.copy_2=copy_2;var credit_card={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CREDIT_CARD_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CREDIT_CARD"},"children":[{"name":"g","attribs":{"id":"CREDIT_CARD"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M0,51c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V28H0V51z M6,39h30v3H6V39z M6,45h12v3H6V45z M61,10H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v9h64v-9C64,11.343,62.657,10,61,10z"},"children":[{"name":"path","attribs":{"d":"M0,51c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V28H0V51z M6,39h30v3H6V39z M6,45h12v3H6V45z M61,10H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v9h64v-9C64,11.343,62.657,10,61,10z"},"children":[]}]}]}]}]}]}]}]};exports.credit_card=credit_card;var crop={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CROP"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,49h-6V13.243l8.121-8.121C63.664,4.579,64,3.828,64,3c0-1.657-1.343-3-3-3\r\n\t\t\tc-0.829,0-1.578,0.336-2.121,0.879L50.757,9H15V3c0-1.657-1.343-3-3-3S9,1.343,9,3v6H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3\r\n\t\t\th6v35.758l-0.121,0.121L9,51v1.5c0,1.381,1.119,2.5,2.5,2.5H13l0.121,0.121L13.243,55H49v6c0,1.657,1.343,3,3,3\r\n\t\t\tc1.657,0,3-1.343,3-3v-6h6c1.657,0,3-1.343,3-3C64,50.343,62.657,49,61,49z M15,15h29.757L15,44.757V15z M49,49H19.243L49,19.243\r\n\t\t\tV49z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,49h-6V13.243l8.121-8.121C63.664,4.579,64,3.828,64,3c0-1.657-1.343-3-3-3\r\n\t\t\tc-0.829,0-1.578,0.336-2.121,0.879L50.757,9H15V3c0-1.657-1.343-3-3-3S9,1.343,9,3v6H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3\r\n\t\t\th6v35.758l-0.121,0.121L9,51v1.5c0,1.381,1.119,2.5,2.5,2.5H13l0.121,0.121L13.243,55H49v6c0,1.657,1.343,3,3,3\r\n\t\t\tc1.657,0,3-1.343,3-3v-6h6c1.657,0,3-1.343,3-3C64,50.343,62.657,49,61,49z M15,15h29.757L15,44.757V15z M49,49H19.243L49,19.243\r\n\t\t\tV49z"},"children":[]}]}]}]}]}]};exports.crop=crop;var diskette={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"DISKETTE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M15,25.001c0,1.661,1.343,3.007,3,3.007h4V28h18v0.008h4\r\n\t\t\tc1.657,0,3-1.346,3-3.007V19h0V1H15v18h0V25.001z M32,5h9v19h-9V5z M63.121,10.879l-9-9C53.578,1.336,52.829,1,52,1h-2v15h0v9.001\r\n\t\t\tc0,3.272-2.61,5.92-5.856,5.999H17.856C14.611,30.922,12,28.273,12,25.001V16h0V1H3C1.343,1,0,2.343,0,4v56c0,1.657,1.343,3,3,3\r\n\t\t\th58c1.657,0,3-1.343,3-3V13C64,12.172,63.664,11.422,63.121,10.879z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M15,25.001c0,1.661,1.343,3.007,3,3.007h4V28h18v0.008h4\r\n\t\t\tc1.657,0,3-1.346,3-3.007V19h0V1H15v18h0V25.001z M32,5h9v19h-9V5z M63.121,10.879l-9-9C53.578,1.336,52.829,1,52,1h-2v15h0v9.001\r\n\t\t\tc0,3.272-2.61,5.92-5.856,5.999H17.856C14.611,30.922,12,28.273,12,25.001V16h0V1H3C1.343,1,0,2.343,0,4v56c0,1.657,1.343,3,3,3\r\n\t\t\th58c1.657,0,3-1.343,3-3V13C64,12.172,63.664,11.422,63.121,10.879z"},"children":[]}]}]}]}]}]};exports.diskette=diskette;var documentIcon={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"DOCUMENT_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"DOCUMENT"},"children":[{"name":"g","attribs":{"id":"DOCUMENT"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M35,23.008h19L32,2.964v17.037C32,21.662,33.343,23.008,35,23.008z M29,20.001V3H13c-1.657,0-3,1.343-3,3v52\r\n\t\t\t\tc0,1.657,1.343,3,3,3h38c1.657,0,3-1.343,3-3V26.014H35C31.686,26.014,29,23.322,29,20.001z"},"children":[{"name":"path","attribs":{"d":"M35,23.008h19L32,2.964v17.037C32,21.662,33.343,23.008,35,23.008z M29,20.001V3H13c-1.657,0-3,1.343-3,3v52\r\n\t\t\t\tc0,1.657,1.343,3,3,3h38c1.657,0,3-1.343,3-3V26.014H35C31.686,26.014,29,23.322,29,20.001z"},"children":[]}]}]}]}]}]}]}]};exports.documentIcon=documentIcon;var document_add={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__ADD_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__ADD"},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__ADD"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M31,22.008h19L28,1.964v17.037C28,20.662,29.343,22.008,31,22.008z M56,51h-3v-3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3h-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h3v3c0,1.657,1.343,3,3,3s3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3S57.657,51,56,51z M38,54\r\n\t\t\t\tc0-3.314,2.686-6,6-6c0-3.314,2.686-6,6-6V25.014H31c-3.314,0-6-2.692-6-6.013V1.964h-9V2H9C7.343,2,6,3.343,6,5v52\r\n\t\t\t\tc0,1.657,1.343,3,3,3h35l0,0C40.686,60,38,57.314,38,54z"},"children":[{"name":"path","attribs":{"d":"M31,22.008h19L28,1.964v17.037C28,20.662,29.343,22.008,31,22.008z M56,51h-3v-3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3h-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h3v3c0,1.657,1.343,3,3,3s3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3S57.657,51,56,51z M38,54\r\n\t\t\t\tc0-3.314,2.686-6,6-6c0-3.314,2.686-6,6-6V25.014H31c-3.314,0-6-2.692-6-6.013V1.964h-9V2H9C7.343,2,6,3.343,6,5v52\r\n\t\t\t\tc0,1.657,1.343,3,3,3h35l0,0C40.686,60,38,57.314,38,54z"},"children":[]}]}]}]}]}]}]}]};exports.document_add=document_add;var document_delete={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__DELETE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__DELETE"},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__DELETE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M30,22.008h19L27,1.964v17.037C27,20.662,28.343,22.008,30,22.008z M41.516,54l-1.758-1.757\r\n\t\t\t\tC38.672,51.157,38,49.657,38,48c0-3.314,2.686-6,6-6c1.657,0,3.152,0.675,4.238,1.762l0.005-0.005L49,44.516v-19.5H30\r\n\t\t\t\tc-3.314,0-6-2.692-6-6.013V2H8C6.343,2,5,3.343,5,5v52c0,1.657,1.343,3,3,3h28l0,0h2c0-1.657,0.672-3.156,1.758-4.242\r\n\t\t\t\tl-0.001-0.001L41.516,54z M54.243,54l3.879-3.878C58.664,49.578,59,48.828,59,48c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L50,49.758l-3.879-3.879C45.578,45.336,44.829,45,44,45c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L45.757,54l-3.879,3.879C41.336,58.422,41,59.172,41,60c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L50,58.243l3.879,3.879C54.422,62.664,55.172,63,56,63c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L54.243,54z"},"children":[{"name":"path","attribs":{"d":"M30,22.008h19L27,1.964v17.037C27,20.662,28.343,22.008,30,22.008z M41.516,54l-1.758-1.757\r\n\t\t\t\tC38.672,51.157,38,49.657,38,48c0-3.314,2.686-6,6-6c1.657,0,3.152,0.675,4.238,1.762l0.005-0.005L49,44.516v-19.5H30\r\n\t\t\t\tc-3.314,0-6-2.692-6-6.013V2H8C6.343,2,5,3.343,5,5v52c0,1.657,1.343,3,3,3h28l0,0h2c0-1.657,0.672-3.156,1.758-4.242\r\n\t\t\t\tl-0.001-0.001L41.516,54z M54.243,54l3.879-3.878C58.664,49.578,59,48.828,59,48c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L50,49.758l-3.879-3.879C45.578,45.336,44.829,45,44,45c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L45.757,54l-3.879,3.879C41.336,58.422,41,59.172,41,60c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L50,58.243l3.879,3.879C54.422,62.664,55.172,63,56,63c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L54.243,54z"},"children":[]}]}]}]}]}]}]}]};exports.document_delete=document_delete;var document_download={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__DOWNLOAD_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__DOWNLOAD"},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__DOWNLOAD"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M30,21.008h19L27.039,1H27v17.001C27,19.662,28.343,21.008,30,21.008z M36,53c0-3.314,2.686-6,6-6\r\n\t\t\t\tc0.343,0,0.673,0.046,1,0.102V39c0-3.314,2.686-6,6-6l0,0v-8.986H30c-3.314,0-6-2.692-6-6.013V1H8C6.343,1,5,2.343,5,4v52\r\n\t\t\t\tc0,1.657,1.343,3,3,3h31.516l-1.758-1.757C36.672,56.157,36,54.657,36,53z M56,50c-0.828,0-1.578,0.336-2.121,0.879L52,52.757V39\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v13.757l-1.879-1.879C43.578,50.336,42.828,50,42,50c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121l7,7C47.422,62.664,48.172,63,49,63s1.578-0.336,2.121-0.879l7-7C58.664,54.579,59,53.829,59,53\r\n\t\t\t\tC59,51.343,57.657,50,56,50z"},"children":[{"name":"path","attribs":{"d":"M30,21.008h19L27.039,1H27v17.001C27,19.662,28.343,21.008,30,21.008z M36,53c0-3.314,2.686-6,6-6\r\n\t\t\t\tc0.343,0,0.673,0.046,1,0.102V39c0-3.314,2.686-6,6-6l0,0v-8.986H30c-3.314,0-6-2.692-6-6.013V1H8C6.343,1,5,2.343,5,4v52\r\n\t\t\t\tc0,1.657,1.343,3,3,3h31.516l-1.758-1.757C36.672,56.157,36,54.657,36,53z M56,50c-0.828,0-1.578,0.336-2.121,0.879L52,52.757V39\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v13.757l-1.879-1.879C43.578,50.336,42.828,50,42,50c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121l7,7C47.422,62.664,48.172,63,49,63s1.578-0.336,2.121-0.879l7-7C58.664,54.579,59,53.829,59,53\r\n\t\t\t\tC59,51.343,57.657,50,56,50z"},"children":[]}]}]}]}]}]}]}]};exports.document_download=document_download;var document_ok={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__OK_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__OK"},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__OK"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M30,23.008h19L27,2.964v17.037C27,21.662,28.343,23.008,30,23.008z M56,48c-0.828,0-1.578,0.336-2.121,0.879L48,54.757\r\n\t\t\t\tl-1.879-1.879C45.578,52.336,44.828,52,44,52c-1.657,0-3,1.343-3,3c0,0.829,0.336,1.578,0.879,2.121l4,4\r\n\t\t\t\tC46.422,61.664,47.172,62,48,62s1.578-0.336,2.121-0.879l8-8C58.664,52.579,59,51.828,59,51C59,49.343,57.657,48,56,48z M38,55\r\n\t\t\t\tc0-3.314,2.686-6,6-6c1.533,0,2.909,0.6,3.967,1.547L49,49.516v-23.5H30c-3.314,0-6-2.692-6-6.013V3H8C6.343,3,5,4.343,5,6v52\r\n\t\t\t\tc0,1.657,1.343,3,3,3h23l0,0h10.516l-1.758-1.757C38.672,58.157,38,56.657,38,55z"},"children":[{"name":"path","attribs":{"d":"M30,23.008h19L27,2.964v17.037C27,21.662,28.343,23.008,30,23.008z M56,48c-0.828,0-1.578,0.336-2.121,0.879L48,54.757\r\n\t\t\t\tl-1.879-1.879C45.578,52.336,44.828,52,44,52c-1.657,0-3,1.343-3,3c0,0.829,0.336,1.578,0.879,2.121l4,4\r\n\t\t\t\tC46.422,61.664,47.172,62,48,62s1.578-0.336,2.121-0.879l8-8C58.664,52.579,59,51.828,59,51C59,49.343,57.657,48,56,48z M38,55\r\n\t\t\t\tc0-3.314,2.686-6,6-6c1.533,0,2.909,0.6,3.967,1.547L49,49.516v-23.5H30c-3.314,0-6-2.692-6-6.013V3H8C6.343,3,5,4.343,5,6v52\r\n\t\t\t\tc0,1.657,1.343,3,3,3h23l0,0h10.516l-1.758-1.757C38.672,58.157,38,56.657,38,55z"},"children":[]}]}]}]}]}]}]}]};exports.document_ok=document_ok;var document_remove={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__REMOVE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__REMOVE"},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__REMOVE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M31,23.008h19L28,2.964v17.037C28,21.662,29.343,23.008,31,23.008z M38,55c0-3.314,2.686-6,6-6h6V26.014H31\r\n\t\t\t\tc-3.314,0-6-2.692-6-6.013V2.964h-9V3H9C7.343,3,6,4.343,6,6v52c0,1.657,1.343,3,3,3h35l0,0C40.686,61,38,58.314,38,55z M56,52\r\n\t\t\t\tH44c-1.657,0-3,1.343-3,3s1.343,3,3,3h12c1.657,0,3-1.343,3-3S57.657,52,56,52z"},"children":[{"name":"path","attribs":{"d":"M31,23.008h19L28,2.964v17.037C28,21.662,29.343,23.008,31,23.008z M38,55c0-3.314,2.686-6,6-6h6V26.014H31\r\n\t\t\t\tc-3.314,0-6-2.692-6-6.013V2.964h-9V3H9C7.343,3,6,4.343,6,6v52c0,1.657,1.343,3,3,3h35l0,0C40.686,61,38,58.314,38,55z M56,52\r\n\t\t\t\tH44c-1.657,0-3,1.343-3,3s1.343,3,3,3h12c1.657,0,3-1.343,3-3S57.657,52,56,52z"},"children":[]}]}]}]}]}]}]}]};exports.document_remove=document_remove;var document_upload={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__UPLOAD_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__UPLOAD"},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__UPLOAD"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M30,21.008h19L27.039,1H27v17.001C27,19.662,28.343,21.008,30,21.008z M36,46c0-1.657,0.672-3.157,1.757-4.243l7-7\r\n\t\t\t\tC45.843,33.672,47.343,33,49,33v-8.986H30c-3.314,0-6-2.692-6-6.013V1H8C6.343,1,5,2.343,5,4v52c0,1.657,1.343,3,3,3h35v-7.102\r\n\t\t\t\tC42.673,51.954,42.343,52,42,52C38.686,52,36,49.314,36,46z M58.121,43.879l-7-7C50.578,36.336,49.828,36,49,36\r\n\t\t\t\ts-1.578,0.336-2.121,0.879l-7,7C39.336,44.422,39,45.172,39,46c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L46,46.243\r\n\t\t\t\tV60c0,1.657,1.343,3,3,3s3-1.343,3-3V46.243l1.879,1.879C54.422,48.664,55.172,49,56,49c1.657,0,3-1.343,3-3\r\n\t\t\t\tC59,45.172,58.664,44.422,58.121,43.879z"},"children":[{"name":"path","attribs":{"d":"M30,21.008h19L27.039,1H27v17.001C27,19.662,28.343,21.008,30,21.008z M36,46c0-1.657,0.672-3.157,1.757-4.243l7-7\r\n\t\t\t\tC45.843,33.672,47.343,33,49,33v-8.986H30c-3.314,0-6-2.692-6-6.013V1H8C6.343,1,5,2.343,5,4v52c0,1.657,1.343,3,3,3h35v-7.102\r\n\t\t\t\tC42.673,51.954,42.343,52,42,52C38.686,52,36,49.314,36,46z M58.121,43.879l-7-7C50.578,36.336,49.828,36,49,36\r\n\t\t\t\ts-1.578,0.336-2.121,0.879l-7,7C39.336,44.422,39,45.172,39,46c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L46,46.243\r\n\t\t\t\tV60c0,1.657,1.343,3,3,3s3-1.343,3-3V46.243l1.879,1.879C54.422,48.664,55.172,49,56,49c1.657,0,3-1.343,3-3\r\n\t\t\t\tC59,45.172,58.664,44.422,58.121,43.879z"},"children":[]}]}]}]}]}]}]}]};exports.document_upload=document_upload;var documents={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"DOCUMENTS_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"DOCUMENTS"},"children":[{"name":"g","attribs":{"id":"DOCUMENTS"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M32,17.001V0H16c-1.657,0-3,1.343-3,3v52c0,1.657,1.343,3,3,3h38c1.657,0,3-1.343,3-3V23.015H38\r\n\t\t\t\tC34.686,23.015,32,20.322,32,17.001z M38,20.008h19L35-0.036v17.037C35,18.662,36.343,20.008,38,20.008z M10,55V6\r\n\t\t\t\tC8.343,6,7,7.343,7,9v49c0,3.314,2.686,6,6,6h35c1.657,0,3-1.343,3-3H16C12.686,61,10,58.314,10,55z"},"children":[{"name":"path","attribs":{"d":"M32,17.001V0H16c-1.657,0-3,1.343-3,3v52c0,1.657,1.343,3,3,3h38c1.657,0,3-1.343,3-3V23.015H38\r\n\t\t\t\tC34.686,23.015,32,20.322,32,17.001z M38,20.008h19L35-0.036v17.037C35,18.662,36.343,20.008,38,20.008z M10,55V6\r\n\t\t\t\tC8.343,6,7,7.343,7,9v49c0,3.314,2.686,6,6,6h35c1.657,0,3-1.343,3-3H16C12.686,61,10,58.314,10,55z"},"children":[]}]}]}]}]}]}]}]};exports.documents=documents;var download={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"DOWNLOAD_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"DOWNLOAD"},"children":[{"name":"g","attribs":{"id":"DOWNLOAD"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M20.77,29.007l9,10l0,0C30.319,39.616,31.115,40,32,40s1.68-0.384,2.23-0.993l0,0l9-10l0,0\r\n\t\t\t\tC43.708,28.475,44,27.772,44,27c0-1.657-1.343-3-3-3c-0.885,0-1.682,0.383-2.23,0.993l0,0L35,29.182V11c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v18.182l-3.77-4.189l0,0C24.681,24.384,23.885,24,23,24c-1.657,0-3,1.343-3,3C20,27.772,20.292,28.475,20.77,29.007\r\n\t\t\t\tL20.77,29.007z M55,35c-1.657,0-3,1.343-3,3v12H12V38c0-1.657-1.343-3-3-3s-3,1.343-3,3v15c0,1.657,1.343,3,3,3h22.997\r\n\t\t\t\tc0.001,0,0.002,0,0.003,0s0.002,0,0.003,0H55c1.657,0,3-1.343,3-3V38C58,36.343,56.657,35,55,35z"},"children":[{"name":"path","attribs":{"d":"M20.77,29.007l9,10l0,0C30.319,39.616,31.115,40,32,40s1.68-0.384,2.23-0.993l0,0l9-10l0,0\r\n\t\t\t\tC43.708,28.475,44,27.772,44,27c0-1.657-1.343-3-3-3c-0.885,0-1.682,0.383-2.23,0.993l0,0L35,29.182V11c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v18.182l-3.77-4.189l0,0C24.681,24.384,23.885,24,23,24c-1.657,0-3,1.343-3,3C20,27.772,20.292,28.475,20.77,29.007\r\n\t\t\t\tL20.77,29.007z M55,35c-1.657,0-3,1.343-3,3v12H12V38c0-1.657-1.343-3-3-3s-3,1.343-3,3v15c0,1.657,1.343,3,3,3h22.997\r\n\t\t\t\tc0.001,0,0.002,0,0.003,0s0.002,0,0.003,0H55c1.657,0,3-1.343,3-3V38C58,36.343,56.657,35,55,35z"},"children":[]}]}]}]}]}]}]}]};exports.download=download;var dribbble={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"dribbble_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"dribbble"},"children":[{"name":"g","attribs":{"id":"dribbble"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M63.35,25.558c-0.42-2.056-1.049-4.081-1.865-6.015c-0.803-1.899-1.795-3.727-2.951-5.436\r\n\t\t\t\tc-1.145-1.694-2.459-3.287-3.905-4.733c-1.448-1.449-3.04-2.764-4.735-3.907c-1.709-1.158-3.539-2.149-5.436-2.953\r\n\t\t\t\tC42.523,1.7,40.5,1.068,38.443,0.651c-2.107-0.433-4.276-0.652-6.442-0.652c-2.169,0-4.338,0.22-6.446,0.652\r\n\t\t\t\tc-2.056,0.417-4.08,1.049-6.013,1.863c-1.896,0.804-3.727,1.795-5.437,2.953C12.411,6.61,10.818,7.924,9.37,9.373\r\n\t\t\t\tc-1.446,1.446-2.76,3.039-3.904,4.733c-1.156,1.709-2.149,3.537-2.951,5.436c-0.818,1.934-1.446,3.96-1.867,6.015\r\n\t\t\t\tc-0.431,2.103-0.65,4.273-0.65,6.44c0,2.172,0.219,4.342,0.65,6.448c0.421,2.056,1.049,4.08,1.867,6.013\r\n\t\t\t\tc0.802,1.896,1.795,3.729,2.951,5.438c1.144,1.694,2.458,3.285,3.904,4.733c1.447,1.446,3.04,2.759,4.734,3.904\r\n\t\t\t\tc1.711,1.155,3.541,2.149,5.437,2.95c1.933,0.82,3.957,1.445,6.013,1.867c2.109,0.435,4.277,0.651,6.446,0.651\r\n\t\t\t\tc2.167,0,4.335-0.217,6.441-0.651c2.058-0.422,4.082-1.047,6.015-1.867c1.896-0.801,3.728-1.795,5.437-2.95\r\n\t\t\t\tc1.693-1.146,3.287-2.458,4.734-3.904c1.446-1.448,2.762-3.039,3.905-4.733c1.155-1.709,2.149-3.541,2.95-5.438\r\n\t\t\t\tc0.817-1.933,1.447-3.957,1.867-6.013C63.781,36.339,64,34.17,64,31.997C64.001,29.831,63.783,27.661,63.35,25.558z M32.001,4.67\r\n\t\t\t\tc6.919,0,13.233,2.579,18.049,6.819c-0.067,0.106-3.96,6.03-14.276,9.896C31.104,12.802,25.971,5.982,25.56,5.441\r\n\t\t\t\tC27.626,4.941,29.78,4.67,32.001,4.67z M25.455,5.464c-0.001,0.003-0.005,0.005-0.005,0.005s-0.032,0.008-0.082,0.018\r\n\t\t\t\tC25.396,5.479,25.426,5.474,25.455,5.464z M20.34,7.282c0.363,0.488,5.417,7.34,10.148,15.747\r\n\t\t\t\tc-13.123,3.487-24.511,3.35-25.233,3.337C7.032,17.901,12.718,10.883,20.34,7.282z M11.673,50.264\r\n\t\t\t\tC7.321,45.421,4.672,39.02,4.672,31.997c0-0.291,0.013-0.576,0.023-0.862c0.481,0.01,13.986,0.316,28.057-3.894\r\n\t\t\t\tc0.784,1.532,1.532,3.09,2.219,4.645c-0.363,0.101-0.72,0.21-1.078,0.326c-14.75,4.767-22.23,18.038-22.23,18.038\r\n\t\t\t\tS11.671,50.258,11.673,50.264z M32.001,59.33c-6.338,0-12.157-2.176-16.793-5.795c-0.001,0.002-0.005,0.01-0.005,0.01\r\n\t\t\t\ts-0.252-0.188-0.612-0.479c0.199,0.164,0.413,0.31,0.617,0.469c0.1-0.217,5.39-11.471,21.442-17.062\r\n\t\t\t\tc0.06-0.022,0.121-0.041,0.182-0.058c3.846,9.993,5.434,18.362,5.838,20.751C39.393,58.559,35.785,59.33,32.001,59.33z\r\n\t\t\t\t M47.271,54.668c-0.277-1.65-1.733-9.671-5.319-19.521c8.823-1.412,16.468,1.008,17.032,1.192\r\n\t\t\t\tC57.768,43.955,53.408,50.523,47.271,54.668z M40.286,30.832c-0.192-0.468-0.388-0.938-0.589-1.411\r\n\t\t\t\tc-0.569-1.337-1.182-2.662-1.817-3.964c10.793-4.405,15.175-10.741,15.226-10.817c3.834,4.655,6.152,10.602,6.215,17.087\r\n\t\t\t\tC58.925,31.641,49.676,29.651,40.286,30.832z"},"children":[{"name":"path","attribs":{"d":"M63.35,25.558c-0.42-2.056-1.049-4.081-1.865-6.015c-0.803-1.899-1.795-3.727-2.951-5.436\r\n\t\t\t\tc-1.145-1.694-2.459-3.287-3.905-4.733c-1.448-1.449-3.04-2.764-4.735-3.907c-1.709-1.158-3.539-2.149-5.436-2.953\r\n\t\t\t\tC42.523,1.7,40.5,1.068,38.443,0.651c-2.107-0.433-4.276-0.652-6.442-0.652c-2.169,0-4.338,0.22-6.446,0.652\r\n\t\t\t\tc-2.056,0.417-4.08,1.049-6.013,1.863c-1.896,0.804-3.727,1.795-5.437,2.953C12.411,6.61,10.818,7.924,9.37,9.373\r\n\t\t\t\tc-1.446,1.446-2.76,3.039-3.904,4.733c-1.156,1.709-2.149,3.537-2.951,5.436c-0.818,1.934-1.446,3.96-1.867,6.015\r\n\t\t\t\tc-0.431,2.103-0.65,4.273-0.65,6.44c0,2.172,0.219,4.342,0.65,6.448c0.421,2.056,1.049,4.08,1.867,6.013\r\n\t\t\t\tc0.802,1.896,1.795,3.729,2.951,5.438c1.144,1.694,2.458,3.285,3.904,4.733c1.447,1.446,3.04,2.759,4.734,3.904\r\n\t\t\t\tc1.711,1.155,3.541,2.149,5.437,2.95c1.933,0.82,3.957,1.445,6.013,1.867c2.109,0.435,4.277,0.651,6.446,0.651\r\n\t\t\t\tc2.167,0,4.335-0.217,6.441-0.651c2.058-0.422,4.082-1.047,6.015-1.867c1.896-0.801,3.728-1.795,5.437-2.95\r\n\t\t\t\tc1.693-1.146,3.287-2.458,4.734-3.904c1.446-1.448,2.762-3.039,3.905-4.733c1.155-1.709,2.149-3.541,2.95-5.438\r\n\t\t\t\tc0.817-1.933,1.447-3.957,1.867-6.013C63.781,36.339,64,34.17,64,31.997C64.001,29.831,63.783,27.661,63.35,25.558z M32.001,4.67\r\n\t\t\t\tc6.919,0,13.233,2.579,18.049,6.819c-0.067,0.106-3.96,6.03-14.276,9.896C31.104,12.802,25.971,5.982,25.56,5.441\r\n\t\t\t\tC27.626,4.941,29.78,4.67,32.001,4.67z M25.455,5.464c-0.001,0.003-0.005,0.005-0.005,0.005s-0.032,0.008-0.082,0.018\r\n\t\t\t\tC25.396,5.479,25.426,5.474,25.455,5.464z M20.34,7.282c0.363,0.488,5.417,7.34,10.148,15.747\r\n\t\t\t\tc-13.123,3.487-24.511,3.35-25.233,3.337C7.032,17.901,12.718,10.883,20.34,7.282z M11.673,50.264\r\n\t\t\t\tC7.321,45.421,4.672,39.02,4.672,31.997c0-0.291,0.013-0.576,0.023-0.862c0.481,0.01,13.986,0.316,28.057-3.894\r\n\t\t\t\tc0.784,1.532,1.532,3.09,2.219,4.645c-0.363,0.101-0.72,0.21-1.078,0.326c-14.75,4.767-22.23,18.038-22.23,18.038\r\n\t\t\t\tS11.671,50.258,11.673,50.264z M32.001,59.33c-6.338,0-12.157-2.176-16.793-5.795c-0.001,0.002-0.005,0.01-0.005,0.01\r\n\t\t\t\ts-0.252-0.188-0.612-0.479c0.199,0.164,0.413,0.31,0.617,0.469c0.1-0.217,5.39-11.471,21.442-17.062\r\n\t\t\t\tc0.06-0.022,0.121-0.041,0.182-0.058c3.846,9.993,5.434,18.362,5.838,20.751C39.393,58.559,35.785,59.33,32.001,59.33z\r\n\t\t\t\t M47.271,54.668c-0.277-1.65-1.733-9.671-5.319-19.521c8.823-1.412,16.468,1.008,17.032,1.192\r\n\t\t\t\tC57.768,43.955,53.408,50.523,47.271,54.668z M40.286,30.832c-0.192-0.468-0.388-0.938-0.589-1.411\r\n\t\t\t\tc-0.569-1.337-1.182-2.662-1.817-3.964c10.793-4.405,15.175-10.741,15.226-10.817c3.834,4.655,6.152,10.602,6.215,17.087\r\n\t\t\t\tC58.925,31.641,49.676,29.651,40.286,30.832z"},"children":[]}]}]}]}]}]}]}]};exports.dribbble=dribbble;var drop={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"DROP"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31.583,3.847c0,0-19.616,25.205-19.592,35.712\r\n\t\t\tc0.026,11.331,9.338,20.49,19.948,20.462c10.609-0.029,20.137-9.239,20.111-20.57C52.024,28.592,31.583,3.847,31.583,3.847z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31.583,3.847c0,0-19.616,25.205-19.592,35.712\r\n\t\t\tc0.026,11.331,9.338,20.49,19.948,20.462c10.609-0.029,20.137-9.239,20.111-20.57C52.024,28.592,31.583,3.847,31.583,3.847z"},"children":[]}]}]}]}]}]};exports.drop=drop;var dropbox={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"dropbox_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"dropbox"},"children":[{"name":"g","attribs":{"id":"dropbox"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M32.04,39.477L18.826,50.346l-5.654-3.662v4.105L32.04,62.003l18.864-11.215v-4.106l-5.652,3.662L32.04,39.477z\r\n\t\t\t\t M0.001,35.846l18.825,12.184L32,37.134L13.018,25.513L0.001,35.846z M32,37.134l13.174,10.896L64,35.846L50.982,25.513\r\n\t\t\t\tL32,37.134z M18.826,2.997L0.001,15.176l13.017,10.337L32,13.893L18.826,2.997z M63.999,15.176L45.174,2.997L32,13.893\r\n\t\t\t\tl18.982,11.619L63.999,15.176z"},"children":[{"name":"path","attribs":{"d":"M32.04,39.477L18.826,50.346l-5.654-3.662v4.105L32.04,62.003l18.864-11.215v-4.106l-5.652,3.662L32.04,39.477z\r\n\t\t\t\t M0.001,35.846l18.825,12.184L32,37.134L13.018,25.513L0.001,35.846z M32,37.134l13.174,10.896L64,35.846L50.982,25.513\r\n\t\t\t\tL32,37.134z M18.826,2.997L0.001,15.176l13.017,10.337L32,13.893L18.826,2.997z M63.999,15.176L45.174,2.997L32,13.893\r\n\t\t\t\tl18.982,11.619L63.999,15.176z"},"children":[]}]}]}]}]}]}]}]};exports.dropbox=dropbox;var eject={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"EJECT_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"EJECT"},"children":[{"name":"g","attribs":{"id":"EJECT"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M42,42H22c-1.657,0-3,1.343-3,3s1.343,3,3,3h20c1.657,0,3-1.343,3-3S43.657,42,42,42z M22,39h20c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.584-0.167-1.129-0.456-1.59l0,0l-9.976-15.962c-0.004-0.005-0.006-0.01-0.01-0.016l-0.015-0.022l0,0\r\n\t\t\t\tC34.014,17.563,33.073,17,32,17s-2.013,0.563-2.544,1.41l0,0l-0.014,0.022c-0.003,0.005-0.007,0.01-0.01,0.016L19.456,34.41l0,0\r\n\t\t\t\tC19.168,34.871,19,35.416,19,36C19,37.657,20.343,39,22,39z"},"children":[{"name":"path","attribs":{"d":"M42,42H22c-1.657,0-3,1.343-3,3s1.343,3,3,3h20c1.657,0,3-1.343,3-3S43.657,42,42,42z M22,39h20c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.584-0.167-1.129-0.456-1.59l0,0l-9.976-15.962c-0.004-0.005-0.006-0.01-0.01-0.016l-0.015-0.022l0,0\r\n\t\t\t\tC34.014,17.563,33.073,17,32,17s-2.013,0.563-2.544,1.41l0,0l-0.014,0.022c-0.003,0.005-0.007,0.01-0.01,0.016L19.456,34.41l0,0\r\n\t\t\t\tC19.168,34.871,19,35.416,19,36C19,37.657,20.343,39,22,39z"},"children":[]}]}]}]}]}]}]}]};exports.eject=eject;var equalizer={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"EQUALIZER_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"EQUALIZER"},"children":[{"name":"g","attribs":{"id":"EQUALIZER"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M13,23H7c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h6c1.657,0,3-1.343,3-3V26C16,24.343,14.657,23,13,23z M13,3\r\n\t\t\t\tc0-1.657-1.343-3-3-3S7,1.343,7,3v17h6V3z M35,3c0-1.657-1.343-3-3-3s-3,1.343-3,3v25h6V3z M57,3c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v9h6V3z M7,61c0,1.657,1.343,3,3,3s3-1.343,3-3V44H7V61z M57,15h-6c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h6\r\n\t\t\t\tc1.657,0,3-1.343,3-3V18C60,16.343,58.657,15,57,15z M51,61c0,1.657,1.343,3,3,3s3-1.343,3-3V36h-6V61z M29,61\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3v-9h-6V61z M35,31h-6c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h6c1.657,0,3-1.343,3-3V34\r\n\t\t\t\tC38,32.343,36.657,31,35,31z"},"children":[{"name":"path","attribs":{"d":"M13,23H7c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h6c1.657,0,3-1.343,3-3V26C16,24.343,14.657,23,13,23z M13,3\r\n\t\t\t\tc0-1.657-1.343-3-3-3S7,1.343,7,3v17h6V3z M35,3c0-1.657-1.343-3-3-3s-3,1.343-3,3v25h6V3z M57,3c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v9h6V3z M7,61c0,1.657,1.343,3,3,3s3-1.343,3-3V44H7V61z M57,15h-6c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h6\r\n\t\t\t\tc1.657,0,3-1.343,3-3V18C60,16.343,58.657,15,57,15z M51,61c0,1.657,1.343,3,3,3s3-1.343,3-3V36h-6V61z M29,61\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3v-9h-6V61z M35,31h-6c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h6c1.657,0,3-1.343,3-3V34\r\n\t\t\t\tC38,32.343,36.657,31,35,31z"},"children":[]}]}]}]}]}]}]}]};exports.equalizer=equalizer;var facebook_1={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"facebook_2_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"facebook_1_"},"children":[{"name":"g","attribs":{"id":"facebook_1_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M36.963,22.048c0.092-3.345-0.525-8.003,0.516-9.593c1.901-2.911,9.496-2.154,9.496-2.154s0-6.612,0-10.303\r\n\t\t\t\tc-11.982,0-15.904-0.501-20.016,3.675c-3.658,3.715-3.771,11.011-4.072,18.375h-5.872V32.12h5.938\r\n\t\t\t\tc-0.002,10.504,0.003,22.016,0,31.884c4.462,0,13.954,0,13.954,0v-32.01c0,0,5.173,0,8.042,0\r\n\t\t\t\tc0.626-3.385,1.236-6.036,2.088-9.947L36.963,22.048L36.963,22.048z"},"children":[{"name":"path","attribs":{"d":"M36.963,22.048c0.092-3.345-0.525-8.003,0.516-9.593c1.901-2.911,9.496-2.154,9.496-2.154s0-6.612,0-10.303\r\n\t\t\t\tc-11.982,0-15.904-0.501-20.016,3.675c-3.658,3.715-3.771,11.011-4.072,18.375h-5.872V32.12h5.938\r\n\t\t\t\tc-0.002,10.504,0.003,22.016,0,31.884c4.462,0,13.954,0,13.954,0v-32.01c0,0,5.173,0,8.042,0\r\n\t\t\t\tc0.626-3.385,1.236-6.036,2.088-9.947L36.963,22.048L36.963,22.048z"},"children":[]}]}]}]}]}]}]}]};exports.facebook_1=facebook_1;var facebook_2={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"facebook_3_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"facebook"},"children":[{"name":"g","attribs":{"id":"facebook"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M59.059-0.006H4.942c-2.722,0-4.929,2.208-4.929,4.932v54.354c0,2.725,2.207,4.728,4.929,4.728h54.117\r\n\t\t\t\tc2.721,0,4.928-2.002,4.928-4.728V4.926C63.986,2.202,61.781-0.006,59.059-0.006z M33.615,21.199\r\n\t\t\t\tc-1.562-0.912-2.803-1.634-4.351-1.634c-1.523,0-2.836,0.383-3.497,1.024c-0.661,0.64-0.992,1.872-0.992,3.692v2.691h8.148\r\n\t\t\t\tl-1.768,7.494h-6.381v24.894H14.545V34.465H9.759v-7.494h4.787v-2.859c0-3.012,0.355-4.817,1.067-6.301\r\n\t\t\t\tc0.711-1.483,2.089-3.134,3.998-4.066c1.909-0.932,4.741-1.399,7.661-1.399c2.995,0,5.337,0.994,8.208,1.803L33.615,21.199z"},"children":[{"name":"path","attribs":{"d":"M59.059-0.006H4.942c-2.722,0-4.929,2.208-4.929,4.932v54.354c0,2.725,2.207,4.728,4.929,4.728h54.117\r\n\t\t\t\tc2.721,0,4.928-2.002,4.928-4.728V4.926C63.986,2.202,61.781-0.006,59.059-0.006z M33.615,21.199\r\n\t\t\t\tc-1.562-0.912-2.803-1.634-4.351-1.634c-1.523,0-2.836,0.383-3.497,1.024c-0.661,0.64-0.992,1.872-0.992,3.692v2.691h8.148\r\n\t\t\t\tl-1.768,7.494h-6.381v24.894H14.545V34.465H9.759v-7.494h4.787v-2.859c0-3.012,0.355-4.817,1.067-6.301\r\n\t\t\t\tc0.711-1.483,2.089-3.134,3.998-4.066c1.909-0.932,4.741-1.399,7.661-1.399c2.995,0,5.337,0.994,8.208,1.803L33.615,21.199z"},"children":[]}]}]}]}]}]}]}]};exports.facebook_2=facebook_2;var fast_forward={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"FAST_FORWARD_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"FAST_FORWARD"},"children":[{"name":"g","attribs":{"id":"FAST_FORWARD"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M51,32c0-1.073-0.562-2.013-1.41-2.544l0,0l-0.021-0.014c-0.006-0.003-0.01-0.007-0.017-0.01L33.59,19.456l0,0\r\n\t\t\t\tC33.129,19.168,32.584,19,32,19c-1.657,0-3,1.343-3,3v4.587l-11.41-7.131l0,0C17.129,19.168,16.584,19,16,19\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3c0.584,0,1.129-0.167,1.59-0.456l0,0L29,37.413V42c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.584,0,1.129-0.167,1.59-0.456l0,0l15.962-9.976c0.005-0.004,0.011-0.008,0.017-0.01l0.021-0.015l0,0\r\n\t\t\t\tC50.438,34.014,51,33.073,51,32z"},"children":[{"name":"path","attribs":{"d":"M51,32c0-1.073-0.562-2.013-1.41-2.544l0,0l-0.021-0.014c-0.006-0.003-0.01-0.007-0.017-0.01L33.59,19.456l0,0\r\n\t\t\t\tC33.129,19.168,32.584,19,32,19c-1.657,0-3,1.343-3,3v4.587l-11.41-7.131l0,0C17.129,19.168,16.584,19,16,19\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3c0.584,0,1.129-0.167,1.59-0.456l0,0L29,37.413V42c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.584,0,1.129-0.167,1.59-0.456l0,0l15.962-9.976c0.005-0.004,0.011-0.008,0.017-0.01l0.021-0.015l0,0\r\n\t\t\t\tC50.438,34.014,51,33.073,51,32z"},"children":[]}]}]}]}]}]}]}]};exports.fast_forward=fast_forward;var first_aid={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"FIRST_AID"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,18H47c0-8.284-6.716-15-15-15c-8.284,0-15,6.716-15,15H3\r\n\t\t\tc-1.657,0-3,1.343-3,3v37c0,1.657,1.343,3,3,3h5v0h3v0h42v0h3v0h5c1.657,0,3-1.343,3-3V21C64,19.343,62.657,18,61,18z M32,9\r\n\t\t\tc4.971,0,9,4.029,9,9H23C23,13.03,27.03,9,32,9z M43,42h-8v8c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3v-8h-8\r\n\t\t\tc-1.657,0-3-1.343-3-3c0-1.657,1.343-3,3-3h8v-8c0-1.657,1.343-3,3-3c1.657,0,3,1.343,3,3v8h8c1.657,0,3,1.343,3,3\r\n\t\t\tC46,40.657,44.657,42,43,42z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,18H47c0-8.284-6.716-15-15-15c-8.284,0-15,6.716-15,15H3\r\n\t\t\tc-1.657,0-3,1.343-3,3v37c0,1.657,1.343,3,3,3h5v0h3v0h42v0h3v0h5c1.657,0,3-1.343,3-3V21C64,19.343,62.657,18,61,18z M32,9\r\n\t\t\tc4.971,0,9,4.029,9,9H23C23,13.03,27.03,9,32,9z M43,42h-8v8c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3v-8h-8\r\n\t\t\tc-1.657,0-3-1.343-3-3c0-1.657,1.343-3,3-3h8v-8c0-1.657,1.343-3,3-3c1.657,0,3,1.343,3,3v8h8c1.657,0,3,1.343,3,3\r\n\t\t\tC46,40.657,44.657,42,43,42z"},"children":[]}]}]}]}]}]};exports.first_aid=first_aid;var folder={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"FOLDER_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"FOLDER"},"children":[{"name":"g","attribs":{"id":"FOLDER"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M0,54c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V22H0V54z M61,13H23.982L18,7H3c-1.657,0-3,1.343-3,3v9h64v-3\r\n\t\t\t\tC64,14.343,62.657,13,61,13z"},"children":[{"name":"path","attribs":{"d":"M0,54c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V22H0V54z M61,13H23.982L18,7H3c-1.657,0-3,1.343-3,3v9h64v-3\r\n\t\t\t\tC64,14.343,62.657,13,61,13z"},"children":[]}]}]}]}]}]}]}]};exports.folder=folder;var folder_add={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"FOLDER__x2F__OK_2_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"FOLDER__x2F__OK_1_"},"children":[{"name":"g","attribs":{"id":"FOLDER__x2F__OK_1_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M60,49h-3v-3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3s1.343,3,3,3h3v3c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3S61.657,49,60,49z M0,51c0,1.657,1.343,3,3,3h39.367C42.145,53.372,42,52.705,42,52\r\n\t\t\t\tc0-3.314,2.686-6,6-6c0-3.314,2.686-6,6-6s6,2.686,6,6c1.544,0,2.938,0.6,4,1.557V19H0V51z M61,10H23.982L18,4H3\r\n\t\t\t\tC1.343,4,0,5.343,0,7v9h64v-3C64,11.343,62.657,10,61,10z"},"children":[{"name":"path","attribs":{"d":"M60,49h-3v-3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3s1.343,3,3,3h3v3c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3S61.657,49,60,49z M0,51c0,1.657,1.343,3,3,3h39.367C42.145,53.372,42,52.705,42,52\r\n\t\t\t\tc0-3.314,2.686-6,6-6c0-3.314,2.686-6,6-6s6,2.686,6,6c1.544,0,2.938,0.6,4,1.557V19H0V51z M61,10H23.982L18,4H3\r\n\t\t\t\tC1.343,4,0,5.343,0,7v9h64v-3C64,11.343,62.657,10,61,10z"},"children":[]}]}]}]}]}]}]}]};exports.folder_add=folder_add;var folder_delete={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"FOLDER__x2F__DELETE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"FOLDER__x2F__DELETE"},"children":[{"name":"g","attribs":{"id":"FOLDER__x2F__DELETE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M64,46c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L55,47.757l-3.879-3.879C50.578,43.336,49.828,43,49,43\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.829,0.336,1.578,0.879,2.121L50.757,52l-3.879,3.879C46.336,56.422,46,57.172,46,58\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L55,56.243l3.879,3.879C59.422,60.664,60.172,61,61,61c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L59.243,52l3.879-3.879C63.664,47.578,64,46.829,64,46z M0,51c0,1.657,1.343,3,3,3h41l0,0h0.557\r\n\t\t\t\tc0.07-0.078,0.127-0.168,0.2-0.243L46.516,52l-1.758-1.758C43.672,49.157,43,47.657,43,46c0-3.314,2.686-6,6-6\r\n\t\t\t\tc1.657,0,3.157,0.672,4.243,1.757L55,43.516l1.757-1.758C57.843,40.672,59.343,40,61,40c1.098,0,2.113,0.316,3,0.832V19H0V51z\r\n\t\t\t\t M61,10H23.982L18,4H3C1.343,4,0,5.343,0,7v9h64v-3C64,11.343,62.657,10,61,10z"},"children":[{"name":"path","attribs":{"d":"M64,46c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L55,47.757l-3.879-3.879C50.578,43.336,49.828,43,49,43\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.829,0.336,1.578,0.879,2.121L50.757,52l-3.879,3.879C46.336,56.422,46,57.172,46,58\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L55,56.243l3.879,3.879C59.422,60.664,60.172,61,61,61c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L59.243,52l3.879-3.879C63.664,47.578,64,46.829,64,46z M0,51c0,1.657,1.343,3,3,3h41l0,0h0.557\r\n\t\t\t\tc0.07-0.078,0.127-0.168,0.2-0.243L46.516,52l-1.758-1.758C43.672,49.157,43,47.657,43,46c0-3.314,2.686-6,6-6\r\n\t\t\t\tc1.657,0,3.157,0.672,4.243,1.757L55,43.516l1.757-1.758C57.843,40.672,59.343,40,61,40c1.098,0,2.113,0.316,3,0.832V19H0V51z\r\n\t\t\t\t M61,10H23.982L18,4H3C1.343,4,0,5.343,0,7v9h64v-3C64,11.343,62.657,10,61,10z"},"children":[]}]}]}]}]}]}]}]};exports.folder_delete=folder_delete;var folder_ok={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"FOLDER__x2F__OK_3_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"FOLDER__x2F__OK"},"children":[{"name":"g","attribs":{"id":"FOLDER__x2F__OK"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M61,46c-0.828,0-1.578,0.336-2.121,0.879L53,52.758l-1.879-1.879C50.578,50.336,49.828,50,49,50c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121l4,4C51.422,59.664,52.172,60,53,60s1.578-0.336,2.121-0.879l8-8C63.664,50.579,64,49.828,64,49\r\n\t\t\t\tC64,47.343,62.657,46,61,46z M61,11H23.982L18,5H3C1.343,5,0,6.343,0,8v9h64v-3C64,12.343,62.657,11,61,11z M0,52\r\n\t\t\t\tc0,1.657,1.343,3,3,3h40.367l0,0C43.145,54.372,43,53.705,43,53c0-3.314,2.686-6,6-6c1.533,0,2.916,0.592,3.977,1.538\r\n\t\t\t\tl3.781-3.781C57.843,43.672,59.343,43,61,43c1.1,0,2.113,0.316,3,0.832V20H0V52z"},"children":[{"name":"path","attribs":{"d":"M61,46c-0.828,0-1.578,0.336-2.121,0.879L53,52.758l-1.879-1.879C50.578,50.336,49.828,50,49,50c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121l4,4C51.422,59.664,52.172,60,53,60s1.578-0.336,2.121-0.879l8-8C63.664,50.579,64,49.828,64,49\r\n\t\t\t\tC64,47.343,62.657,46,61,46z M61,11H23.982L18,5H3C1.343,5,0,6.343,0,8v9h64v-3C64,12.343,62.657,11,61,11z M0,52\r\n\t\t\t\tc0,1.657,1.343,3,3,3h40.367l0,0C43.145,54.372,43,53.705,43,53c0-3.314,2.686-6,6-6c1.533,0,2.916,0.592,3.977,1.538\r\n\t\t\t\tl3.781-3.781C57.843,43.672,59.343,43,61,43c1.1,0,2.113,0.316,3,0.832V20H0V52z"},"children":[]}]}]}]}]}]}]}]};exports.folder_ok=folder_ok;var folder_remove={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"FOLDER__x2F__REMOVE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"FOLDER__x2F__REMOVE"},"children":[{"name":"g","attribs":{"id":"FOLDER__x2F__REMOVE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M0,54c0,1.657,1.343,3,3,3h39.367C42.145,56.372,42,55.705,42,55c0-3.314,2.686-6,6-6h12c1.544,0,2.938,0.6,4,1.557V22H0\r\n\t\t\t\tV54z M60,52H48c-1.657,0-3,1.343-3,3s1.343,3,3,3h12c1.657,0,3-1.343,3-3S61.657,52,60,52z M61,13H23.982L18,7H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v9h64v-3C64,14.343,62.657,13,61,13z"},"children":[{"name":"path","attribs":{"d":"M0,54c0,1.657,1.343,3,3,3h39.367C42.145,56.372,42,55.705,42,55c0-3.314,2.686-6,6-6h12c1.544,0,2.938,0.6,4,1.557V22H0\r\n\t\t\t\tV54z M60,52H48c-1.657,0-3,1.343-3,3s1.343,3,3,3h12c1.657,0,3-1.343,3-3S61.657,52,60,52z M61,13H23.982L18,7H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v9h64v-3C64,14.343,62.657,13,61,13z"},"children":[]}]}]}]}]}]}]}]};exports.folder_remove=folder_remove;var followers={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"FOLLOWERS_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"FOLLOWERS"},"children":[{"name":"g","attribs":{"id":"FOLLOWERS"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M34,53c0-1.657,0.672-3.157,1.757-4.242l7-7l0.017,0.018c0.379-0.375,0.806-0.702,1.272-0.969\r\n\t\t\t\tc-3.979-1.701-5.021-2.293-5.021-2.293l-0.055-5.894c0,0,2.324-1.764,3.049-7.337c1.451,0.42,1.942-1.701,2.021-3.056\r\n\t\t\t\tc0.086-1.309,0.858-5.389-0.917-5.025c0.363-2.724,0.648-5.187,0.52-6.491c-0.444-4.576-3.608-9.355-11.595-9.704\r\n\t\t\t\tc-6.79,0.349-11.198,5.131-11.643,9.708c-0.128,1.304,0.133,3.764,0.496,6.493c-1.774-0.369-1.01,3.719-0.932,5.027\r\n\t\t\t\tc0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.352,3.046,7.352l-0.058,5.925c0,0-1.47,0.897-7.675,3.466\r\n\t\t\t\tc-6.205,2.574-4.259,0.533-9.314,3.047C0,49.062,0,59.993,0,59.993h0.002C0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h38.516\r\n\t\t\t\tl-5.758-5.758C34.672,56.157,34,54.657,34,53z M52.898,47h5.828c-0.789-0.725-1.662-1.391-2.713-1.913\r\n\t\t\t\tc-1.854-0.923-2.765-1.246-3.482-1.415C52.833,44.387,53,45.174,53,46C53,46.343,52.954,46.673,52.898,47z M47.243,56H61\r\n\t\t\t\tc1.657,0,3-1.343,3-3s-1.343-3-3-3H47.243l1.879-1.879C49.664,47.579,50,46.828,50,46c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879l-7,7C37.336,51.422,37,52.172,37,53c0,0.829,0.336,1.578,0.879,2.121l7,7\r\n\t\t\t\tC45.422,62.664,46.172,63,47,63c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L47.243,56z M64.001,59.993\r\n\t\t\t\tc0,0,0-0.679-0.124-1.759C63.02,58.707,62.049,59,61,59h-8.104C52.953,59.326,53,59.657,53,60c0,1.1-0.316,2.114-0.832,3H61\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.003-0.001-0.005-0.001-0.007H64.001z"},"children":[{"name":"path","attribs":{"d":"M34,53c0-1.657,0.672-3.157,1.757-4.242l7-7l0.017,0.018c0.379-0.375,0.806-0.702,1.272-0.969\r\n\t\t\t\tc-3.979-1.701-5.021-2.293-5.021-2.293l-0.055-5.894c0,0,2.324-1.764,3.049-7.337c1.451,0.42,1.942-1.701,2.021-3.056\r\n\t\t\t\tc0.086-1.309,0.858-5.389-0.917-5.025c0.363-2.724,0.648-5.187,0.52-6.491c-0.444-4.576-3.608-9.355-11.595-9.704\r\n\t\t\t\tc-6.79,0.349-11.198,5.131-11.643,9.708c-0.128,1.304,0.133,3.764,0.496,6.493c-1.774-0.369-1.01,3.719-0.932,5.027\r\n\t\t\t\tc0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.352,3.046,7.352l-0.058,5.925c0,0-1.47,0.897-7.675,3.466\r\n\t\t\t\tc-6.205,2.574-4.259,0.533-9.314,3.047C0,49.062,0,59.993,0,59.993h0.002C0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h38.516\r\n\t\t\t\tl-5.758-5.758C34.672,56.157,34,54.657,34,53z M52.898,47h5.828c-0.789-0.725-1.662-1.391-2.713-1.913\r\n\t\t\t\tc-1.854-0.923-2.765-1.246-3.482-1.415C52.833,44.387,53,45.174,53,46C53,46.343,52.954,46.673,52.898,47z M47.243,56H61\r\n\t\t\t\tc1.657,0,3-1.343,3-3s-1.343-3-3-3H47.243l1.879-1.879C49.664,47.579,50,46.828,50,46c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879l-7,7C37.336,51.422,37,52.172,37,53c0,0.829,0.336,1.578,0.879,2.121l7,7\r\n\t\t\t\tC45.422,62.664,46.172,63,47,63c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L47.243,56z M64.001,59.993\r\n\t\t\t\tc0,0,0-0.679-0.124-1.759C63.02,58.707,62.049,59,61,59h-8.104C52.953,59.326,53,59.657,53,60c0,1.1-0.316,2.114-0.832,3H61\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.003-0.001-0.005-0.001-0.007H64.001z"},"children":[]}]}]}]}]}]}]}]};exports.followers=followers;var following={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"FOLLOWING_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"FOLLOWING"},"children":[{"name":"g","attribs":{"id":"FOLLOWING"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M64.001,59.993c0,0-0.007-0.552-0.092-1.417L59.484,63H61c1.657,0,3-1.343,3-3c0-0.003-0.001-0.005-0.001-0.007H64.001z\r\n\t\t\t\t M48.102,59H40c-3.314,0-6-2.686-6-6s2.686-6,6-6h8.102C48.046,46.673,48,46.343,48,46c0-1.186,0.355-2.282,0.947-3.212\r\n\t\t\t\tc-0.609-0.213-1.332-0.486-2.247-0.865c-6.205-2.569-7.675-3.409-7.675-3.409l-0.055-5.893c0,0,2.324-1.764,3.049-7.337\r\n\t\t\t\tc1.451,0.42,1.942-1.701,2.021-3.056c0.086-1.309,0.858-5.389-0.917-5.025c0.363-2.724,0.648-5.187,0.52-6.491\r\n\t\t\t\tc-0.443-4.576-3.608-9.355-11.595-9.704c-6.79,0.349-11.198,5.131-11.643,9.708c-0.128,1.304,0.133,3.764,0.496,6.493\r\n\t\t\t\tc-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.353,3.046,7.353l-0.058,5.924\r\n\t\t\t\tc0,0-1.47,0.896-7.675,3.466c-6.205,2.574-4.259,0.533-9.314,3.047C0,49.062,0,59.994,0,59.994h0.002C0.001,59.995,0,59.998,0,60\r\n\t\t\t\tc0,1.657,1.343,3,3,3h45.832C48.316,62.115,48,61.1,48,60C48,59.657,48.046,59.327,48.102,59z M64,53\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121l-7-7C55.578,43.336,54.828,43,54,43c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121\r\n\t\t\t\tL53.757,50H40c-1.657,0-3,1.343-3,3s1.343,3,3,3h13.757l-1.879,1.879C51.336,58.422,51,59.172,51,60c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l7-7C63.664,54.578,64,53.829,64,53z"},"children":[{"name":"path","attribs":{"d":"M64.001,59.993c0,0-0.007-0.552-0.092-1.417L59.484,63H61c1.657,0,3-1.343,3-3c0-0.003-0.001-0.005-0.001-0.007H64.001z\r\n\t\t\t\t M48.102,59H40c-3.314,0-6-2.686-6-6s2.686-6,6-6h8.102C48.046,46.673,48,46.343,48,46c0-1.186,0.355-2.282,0.947-3.212\r\n\t\t\t\tc-0.609-0.213-1.332-0.486-2.247-0.865c-6.205-2.569-7.675-3.409-7.675-3.409l-0.055-5.893c0,0,2.324-1.764,3.049-7.337\r\n\t\t\t\tc1.451,0.42,1.942-1.701,2.021-3.056c0.086-1.309,0.858-5.389-0.917-5.025c0.363-2.724,0.648-5.187,0.52-6.491\r\n\t\t\t\tc-0.443-4.576-3.608-9.355-11.595-9.704c-6.79,0.349-11.198,5.131-11.643,9.708c-0.128,1.304,0.133,3.764,0.496,6.493\r\n\t\t\t\tc-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.353,3.046,7.353l-0.058,5.924\r\n\t\t\t\tc0,0-1.47,0.896-7.675,3.466c-6.205,2.574-4.259,0.533-9.314,3.047C0,49.062,0,59.994,0,59.994h0.002C0.001,59.995,0,59.998,0,60\r\n\t\t\t\tc0,1.657,1.343,3,3,3h45.832C48.316,62.115,48,61.1,48,60C48,59.657,48.046,59.327,48.102,59z M64,53\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121l-7-7C55.578,43.336,54.828,43,54,43c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121\r\n\t\t\t\tL53.757,50H40c-1.657,0-3,1.343-3,3s1.343,3,3,3h13.757l-1.879,1.879C51.336,58.422,51,59.172,51,60c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l7-7C63.664,54.578,64,53.829,64,53z"},"children":[]}]}]}]}]}]}]}]};exports.following=following;var font_size_down={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"FONT_SIZE_DOWN"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M39.798,52.919l-17-44l-0.007,0.002C22.358,7.799,21.275,7,20,7\r\n\t\t\tc-1.275,0-2.358,0.799-2.792,1.921l-0.006-0.002l-17,44l0.007,0.003C0.078,53.257,0,53.619,0,54c0,1.657,1.343,3,3,3\r\n\t\t\tc1.275,0,2.358-0.799,2.792-1.921l0.007,0.002L9.694,45h20.613l3.895,10.081l0.006-0.002C34.642,56.201,35.725,57,37,57\r\n\t\t\tc1.657,0,3-1.343,3-3c0-0.382-0.078-0.743-0.208-1.079L39.798,52.919z M12.012,39L20,18.324L27.988,39H12.012z M61,29H43\r\n\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h18c1.657,0,3-1.343,3-3C64,30.343,62.657,29,61,29z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M39.798,52.919l-17-44l-0.007,0.002C22.358,7.799,21.275,7,20,7\r\n\t\t\tc-1.275,0-2.358,0.799-2.792,1.921l-0.006-0.002l-17,44l0.007,0.003C0.078,53.257,0,53.619,0,54c0,1.657,1.343,3,3,3\r\n\t\t\tc1.275,0,2.358-0.799,2.792-1.921l0.007,0.002L9.694,45h20.613l3.895,10.081l0.006-0.002C34.642,56.201,35.725,57,37,57\r\n\t\t\tc1.657,0,3-1.343,3-3c0-0.382-0.078-0.743-0.208-1.079L39.798,52.919z M12.012,39L20,18.324L27.988,39H12.012z M61,29H43\r\n\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h18c1.657,0,3-1.343,3-3C64,30.343,62.657,29,61,29z"},"children":[]}]}]}]}]}]};exports.font_size_down=font_size_down;var font_size_up={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"FONT_SIZE_UP"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M39.798,52.919l-17-44l-0.006,0.002C22.358,7.799,21.276,7,20,7\r\n\t\t\tc-1.275,0-2.358,0.799-2.792,1.921l-0.007-0.002l-17,44l0.007,0.003C0.078,53.257,0,53.619,0,54c0,1.657,1.343,3,3,3\r\n\t\t\tc1.275,0,2.358-0.799,2.792-1.921l0.007,0.002L9.693,45h20.613l3.895,10.081l0.007-0.002C34.642,56.201,35.725,57,37,57\r\n\t\t\tc1.657,0,3-1.343,3-3c0-0.382-0.078-0.743-0.208-1.079L39.798,52.919z M12.012,39L20,18.324L27.988,39H12.012z M61,29h-6v-6\r\n\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v6h-6c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h6v6c0,1.657,1.343,3,3,3s3-1.343,3-3v-6h6\r\n\t\t\tc1.657,0,3-1.343,3-3C64,30.343,62.657,29,61,29z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M39.798,52.919l-17-44l-0.006,0.002C22.358,7.799,21.276,7,20,7\r\n\t\t\tc-1.275,0-2.358,0.799-2.792,1.921l-0.007-0.002l-17,44l0.007,0.003C0.078,53.257,0,53.619,0,54c0,1.657,1.343,3,3,3\r\n\t\t\tc1.275,0,2.358-0.799,2.792-1.921l0.007,0.002L9.693,45h20.613l3.895,10.081l0.007-0.002C34.642,56.201,35.725,57,37,57\r\n\t\t\tc1.657,0,3-1.343,3-3c0-0.382-0.078-0.743-0.208-1.079L39.798,52.919z M12.012,39L20,18.324L27.988,39H12.012z M61,29h-6v-6\r\n\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v6h-6c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h6v6c0,1.657,1.343,3,3,3s3-1.343,3-3v-6h6\r\n\t\t\tc1.657,0,3-1.343,3-3C64,30.343,62.657,29,61,29z"},"children":[]}]}]}]}]}]};exports.font_size_up=font_size_up;var forrst={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"forrst_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"forrst"},"children":[{"name":"g","attribs":{"id":"forrst"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M59.873,61.947L33.865,0.88c-0.229-0.538-0.747-0.883-1.321-0.883c-0.574,0-1.093,0.345-1.32,0.88L5.127,61.943\r\n\t\t\t\tc-0.194,0.457-0.15,0.98,0.116,1.396c0.267,0.412,0.719,0.663,1.205,0.663h22.123V50.667L20.714,48c-1.085,0-1.964-0.895-1.964-2\r\n\t\t\t\ts0.879-2,1.964-2l7.857,2.667V34c0-1.104,0.879-2,1.964-2h3.929c1.085,0,1.964,0.896,1.964,2v3l5.893-3\r\n\t\t\t\tc1.086,0,1.965,0.895,1.965,2c0,1.104-0.879,2-1.965,2l-5.893,3v7l9.821-6c1.085,0,1.964,0.895,1.964,2c0,1.104-0.879,2-1.964,2\r\n\t\t\t\tl-9.821,6v12.003h22.123c0.487,0,0.938-0.248,1.205-0.663C60.021,62.928,60.066,62.4,59.873,61.947z"},"children":[{"name":"path","attribs":{"d":"M59.873,61.947L33.865,0.88c-0.229-0.538-0.747-0.883-1.321-0.883c-0.574,0-1.093,0.345-1.32,0.88L5.127,61.943\r\n\t\t\t\tc-0.194,0.457-0.15,0.98,0.116,1.396c0.267,0.412,0.719,0.663,1.205,0.663h22.123V50.667L20.714,48c-1.085,0-1.964-0.895-1.964-2\r\n\t\t\t\ts0.879-2,1.964-2l7.857,2.667V34c0-1.104,0.879-2,1.964-2h3.929c1.085,0,1.964,0.896,1.964,2v3l5.893-3\r\n\t\t\t\tc1.086,0,1.965,0.895,1.965,2c0,1.104-0.879,2-1.965,2l-5.893,3v7l9.821-6c1.085,0,1.964,0.895,1.964,2c0,1.104-0.879,2-1.964,2\r\n\t\t\t\tl-9.821,6v12.003h22.123c0.487,0,0.938-0.248,1.205-0.663C60.021,62.928,60.066,62.4,59.873,61.947z"},"children":[]}]}]}]}]}]}]}]};exports.forrst=forrst;var foursquare={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"foursquare_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"foursquare"},"children":[{"name":"g","attribs":{"id":"foursquare"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M41.523,27.182l-8.099-8.285c-2.222-2.189-5.667-2.189-7.89,0l-2.201,2.245c-2.46-1.881-5.468-3.047-8.815-3.047\r\n\t\t\t\tc-8.013,0-14.513,6.42-14.513,14.313c0,7.891,6.529,14.311,14.543,14.311c0.623,0,1.222-0.104,1.825-0.181l13.387,12.458\r\n\t\t\t\tl34.24-30.692V5.018L41.523,27.182z M14.725,43.102c-0.057,0-0.109,0.017-0.166,0.017c-5.998,0-10.877-4.806-10.877-10.71\r\n\t\t\t\tc0-5.907,4.879-10.712,10.877-10.712c2.338,0,4.494,0.748,6.27,1.991c2.776,1.942,4.604,5.119,4.604,8.722\r\n\t\t\t\tC25.434,38.257,20.642,43.014,14.725,43.102z M59.8,27.491L48.426,37.908L30.158,54.157l-9.723-8.753\r\n\t\t\t\tc2.691-1.211,4.978-3.209,6.487-5.69l3.794,3.925l13.511-13.911L59.8,13.77V27.491z"},"children":[{"name":"path","attribs":{"d":"M41.523,27.182l-8.099-8.285c-2.222-2.189-5.667-2.189-7.89,0l-2.201,2.245c-2.46-1.881-5.468-3.047-8.815-3.047\r\n\t\t\t\tc-8.013,0-14.513,6.42-14.513,14.313c0,7.891,6.529,14.311,14.543,14.311c0.623,0,1.222-0.104,1.825-0.181l13.387,12.458\r\n\t\t\t\tl34.24-30.692V5.018L41.523,27.182z M14.725,43.102c-0.057,0-0.109,0.017-0.166,0.017c-5.998,0-10.877-4.806-10.877-10.71\r\n\t\t\t\tc0-5.907,4.879-10.712,10.877-10.712c2.338,0,4.494,0.748,6.27,1.991c2.776,1.942,4.604,5.119,4.604,8.722\r\n\t\t\t\tC25.434,38.257,20.642,43.014,14.725,43.102z M59.8,27.491L48.426,37.908L30.158,54.157l-9.723-8.753\r\n\t\t\t\tc2.691-1.211,4.978-3.209,6.487-5.69l3.794,3.925l13.511-13.911L59.8,13.77V27.491z"},"children":[]}]}]}]}]}]}]}]};exports.foursquare=foursquare;var frame={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"FRAME_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"FRAME"},"children":[{"name":"g","attribs":{"id":"FRAME"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M62,14c0-1.304-0.837-2.403-2-2.816V7.816C61.163,7.403,62,6.305,62,5c0-1.657-1.343-3-3-3c-1.305,0-2.402,0.838-2.816,2\r\n\t\t\t\th-3.367C52.402,2.838,51.305,2,50,2s-2.402,0.838-2.816,2h-3.367C43.402,2.838,42.305,2,41,2s-2.402,0.838-2.816,2h-3.367\r\n\t\t\t\tC34.402,2.838,33.305,2,32,2c-1.304,0-2.403,0.838-2.816,2h-3.367C25.403,2.838,24.304,2,23,2s-2.403,0.838-2.816,2h-3.367\r\n\t\t\t\tC16.403,2.838,15.304,2,14,2s-2.403,0.838-2.816,2H7.816C7.403,2.838,6.304,2,5,2C3.343,2,2,3.343,2,5\r\n\t\t\t\tc0,1.304,0.837,2.403,2,2.816v3.367C2.837,11.597,2,12.696,2,14s0.837,2.403,2,2.816v3.367C2.837,20.597,2,21.696,2,23\r\n\t\t\t\ts0.837,2.403,2,2.816v3.367C2.837,29.597,2,30.696,2,32c0,1.305,0.837,2.402,2,2.816v3.367C2.837,38.598,2,39.695,2,41\r\n\t\t\t\ts0.837,2.402,2,2.816v3.367C2.837,47.598,2,48.695,2,50s0.837,2.402,2,2.816v3.367C2.837,56.598,2,57.695,2,59\r\n\t\t\t\tc0,1.657,1.343,3,3,3c1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2s2.403-0.837,2.816-2h3.367\r\n\t\t\t\tc0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.815-2h3.367\r\n\t\t\t\tc0.413,1.162,1.512,2,2.816,2c1.304,0,2.402-0.837,2.816-2h3.367c0.412,1.162,1.512,2,2.815,2s2.403-0.837,2.815-2h3.367\r\n\t\t\t\tc0.413,1.162,1.512,2,2.816,2c1.656,0,3-1.343,3-3c0-1.305-0.837-2.402-2-2.816v-3.367c1.162-0.412,2-1.512,2-2.815\r\n\t\t\t\ts-0.837-2.403-2-2.815v-3.367c1.162-0.414,2-1.512,2-2.816c0-1.304-0.837-2.402-2-2.816v-3.367c1.162-0.412,2-1.512,2-2.815\r\n\t\t\t\ts-0.837-2.403-2-2.816V25.82c1.162-0.413,2-1.512,2-2.816c0-1.304-0.837-2.403-2-2.816v-3.367C61.163,16.403,62,15.304,62,14z\r\n\t\t\t\t M54,54H10V10h44V54z"},"children":[{"name":"path","attribs":{"d":"M62,14c0-1.304-0.837-2.403-2-2.816V7.816C61.163,7.403,62,6.305,62,5c0-1.657-1.343-3-3-3c-1.305,0-2.402,0.838-2.816,2\r\n\t\t\t\th-3.367C52.402,2.838,51.305,2,50,2s-2.402,0.838-2.816,2h-3.367C43.402,2.838,42.305,2,41,2s-2.402,0.838-2.816,2h-3.367\r\n\t\t\t\tC34.402,2.838,33.305,2,32,2c-1.304,0-2.403,0.838-2.816,2h-3.367C25.403,2.838,24.304,2,23,2s-2.403,0.838-2.816,2h-3.367\r\n\t\t\t\tC16.403,2.838,15.304,2,14,2s-2.403,0.838-2.816,2H7.816C7.403,2.838,6.304,2,5,2C3.343,2,2,3.343,2,5\r\n\t\t\t\tc0,1.304,0.837,2.403,2,2.816v3.367C2.837,11.597,2,12.696,2,14s0.837,2.403,2,2.816v3.367C2.837,20.597,2,21.696,2,23\r\n\t\t\t\ts0.837,2.403,2,2.816v3.367C2.837,29.597,2,30.696,2,32c0,1.305,0.837,2.402,2,2.816v3.367C2.837,38.598,2,39.695,2,41\r\n\t\t\t\ts0.837,2.402,2,2.816v3.367C2.837,47.598,2,48.695,2,50s0.837,2.402,2,2.816v3.367C2.837,56.598,2,57.695,2,59\r\n\t\t\t\tc0,1.657,1.343,3,3,3c1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2s2.403-0.837,2.816-2h3.367\r\n\t\t\t\tc0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.815-2h3.367\r\n\t\t\t\tc0.413,1.162,1.512,2,2.816,2c1.304,0,2.402-0.837,2.816-2h3.367c0.412,1.162,1.512,2,2.815,2s2.403-0.837,2.815-2h3.367\r\n\t\t\t\tc0.413,1.162,1.512,2,2.816,2c1.656,0,3-1.343,3-3c0-1.305-0.837-2.402-2-2.816v-3.367c1.162-0.412,2-1.512,2-2.815\r\n\t\t\t\ts-0.837-2.403-2-2.815v-3.367c1.162-0.414,2-1.512,2-2.816c0-1.304-0.837-2.402-2-2.816v-3.367c1.162-0.412,2-1.512,2-2.815\r\n\t\t\t\ts-0.837-2.403-2-2.816V25.82c1.162-0.413,2-1.512,2-2.816c0-1.304-0.837-2.403-2-2.816v-3.367C61.163,16.403,62,15.304,62,14z\r\n\t\t\t\t M54,54H10V10h44V54z"},"children":[]}]}]}]}]}]}]}]};exports.frame=frame;var globe={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"GLOBE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"GLOBE"},"children":[{"name":"g","attribs":{"id":"GLOBE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M31.446,19.655c0.015,0.03,0.03,0.059,0.044,0.089c0.057-0.013,0.103-0.074,0.133-0.115c0.012-0.009,0.004,0,0.013-0.013\r\n\t\t\t\tc-0.023-0.013-0.047-0.026-0.07-0.038c-0.002-0.004-0.004-0.008-0.006-0.013c0.069-0.055,0.095-0.122,0.076-0.235\r\n\t\t\t\tc-0.03-0.002-0.059-0.004-0.089-0.006c-0.026,0.029-0.04,0.127-0.051,0.165c-0.058-0.027-0.089-0.049-0.108-0.114\r\n\t\t\t\tc-0.004-0.002-0.009-0.004-0.013-0.006c-0.078,0.099-0.18,0.095-0.076,0.267C31.324,19.671,31.398,19.659,31.446,19.655z\r\n\t\t\t\t M43.382,11.985c0.203,0.031,0.324,0.15,0.496,0.203c-0.004,0.021-0.009,0.042-0.013,0.064c-0.084,0.038-0.182,0.051-0.172,0.172\r\n\t\t\t\tc0.094,0.018,0.164,0.009,0.279,0.006c0.026,0.034,0.051,0.068,0.076,0.102c0.094,0.039,0.143-0.06,0.21-0.083\r\n\t\t\t\tc0.155,0.002,0.31,0.004,0.464,0.007c-0.006-0.127-0.177-0.162-0.254-0.223c-0.136-0.107-0.215-0.333-0.254-0.534\r\n\t\t\t\tc-0.085-0.43,0.254-0.283,0.292-0.597c-0.065-0.023-0.131-0.047-0.196-0.07c-0.172-0.022-0.357,0.059-0.478,0.089\r\n\t\t\t\tc-0.072,0.004-0.144,0.008-0.216,0.013c-0.088,0.044-0.135,0.159-0.235,0.203c-0.004,0.007-0.009,0.013-0.013,0.019\r\n\t\t\t\tc0.051,0.026,0.093,0.062,0.165,0.064c-0.037,0.109-0.134,0.278-0.241,0.311c-0.072,0.022-0.115-0.021-0.172-0.019\r\n\t\t\t\tc-0.049,0.061-0.104,0.114-0.07,0.229c0.02,0.025,0.038,0.051,0.057,0.076C43.251,12.115,43.275,11.969,43.382,11.985z\r\n\t\t\t\t M20.926,10.303c-0.046,0.008-0.091,0.016-0.137,0.024c-0.018,0.026-0.036,0.077-0.072,0.095\r\n\t\t\t\tc0.061,0.013,0.304-0.051,0.354-0.078C21.07,10.309,20.97,10.301,20.926,10.303z M31.37,7.524\r\n\t\t\t\tc0.061-0.032,0.123-0.064,0.184-0.095c0.036,0.055,0.072,0.11,0.108,0.165c-0.076,0.036-0.153,0.072-0.229,0.108\r\n\t\t\t\tc0.055,0.135,0.434,0.457,0.623,0.388c0.163-0.06,0.211-0.226,0.35-0.312c0.086,0.097,0.287,0.173,0.438,0.197v0.006\r\n\t\t\t\tc-0.178,0.189-0.512,0.185-0.769,0.299h-0.013c0.023,0.049,0.047,0.097,0.07,0.146c0.248-0.018,0.442-0.069,0.661-0.089\r\n\t\t\t\tc0.027,0.025,0.055,0.051,0.083,0.076c-0.103,0.131-0.323,0.152-0.559,0.146c-0.023,0.034-0.047,0.068-0.07,0.102\r\n\t\t\t\tc-0.004,0.004-0.008,0.008-0.013,0.013c0.102,0.062,0.562,0.443,0.718,0.4c0.032-0.019,0.063-0.038,0.095-0.057\r\n\t\t\t\tc-0.001-0.177,0.066-0.321,0.159-0.407c0.028-0.029,0.124-0.04,0.172-0.044c0.038-0.081,0.076-0.161,0.114-0.242\r\n\t\t\t\tc0.058-0.144,0.054-0.343,0.178-0.419c0.094-0.021,0.188-0.043,0.28-0.064c0.053-0.026,0.106-0.051,0.159-0.076\r\n\t\t\t\tc-0.049-0.083-0.189-0.174-0.28-0.21c-0.082-0.032-0.163-0.021-0.229-0.063c-0.057-0.074-0.113-0.148-0.172-0.222\r\n\t\t\t\tc-0.078,0-0.117,0.083-0.172,0.127C33.238,7.389,33.219,7.38,33.2,7.372c-0.034-0.072,0.005-0.174,0.006-0.28\r\n\t\t\t\tc-0.021-0.015-0.042-0.03-0.063-0.045h-0.172c-0.066-0.021-0.113-0.079-0.211-0.089C32.725,7,32.688,7.043,32.652,7.085\r\n\t\t\t\tc-0.041,0.109,0.107,0.294,0.127,0.4c-0.02,0.017-0.038,0.034-0.057,0.051c-0.109-0.025-0.307-0.287-0.351-0.381\r\n\t\t\t\tc-0.075-0.059-0.101-0.039-0.191,0c-0.015,0.076-0.03,0.153-0.044,0.229v0.013c-0.074-0.015-0.148-0.03-0.222-0.045\r\n\t\t\t\tc-0.036-0.055-0.041-0.146-0.038-0.242c-0.077-0.016-0.176,0.02-0.235,0.032c-0.047-0.004-0.093-0.008-0.14-0.013\r\n\t\t\t\tc-0.146,0.013-0.218,0.074-0.305,0.14C31.219,7.367,31.286,7.485,31.37,7.524z M34.414,7.117v0.006\r\n\t\t\t\tc-0.066,0.146-0.102,0.233-0.28,0.267v0.114c0.275,0.013,0.552,0.025,0.826,0.038c0.06-0.04,0.119-0.081,0.179-0.121\r\n\t\t\t\tc0.077-0.033,0.161-0.016,0.254-0.045c0.078-0.04,0.156-0.08,0.234-0.121c0.104-0.078,0.208-0.157,0.311-0.235\r\n\t\t\t\tc0.002-0.004,0.004-0.008,0.006-0.013c-0.022-0.038-0.047-0.076-0.069-0.114c-0.062-0.017-0.123-0.034-0.185-0.051\r\n\t\t\t\tc-0.119-0.023-0.25,0.029-0.375,0.026c-0.024-0.051-0.051-0.102-0.075-0.153c-0.03-0.011-0.06-0.021-0.089-0.032\r\n\t\t\t\tc-0.133,0.016-0.224,0.14-0.286,0.229h-0.108c-0.027-0.1-0.003-0.248,0.025-0.343c-0.137,0.061-0.143,0.232-0.268,0.292\r\n\t\t\t\tc-0.011,0.011-0.021,0.021-0.031,0.032c-0.168-0.256-0.328-0.017-0.496-0.134c-0.059-0.07-0.119-0.14-0.178-0.21\r\n\t\t\t\tc-0.082,0.106-0.162,0.212-0.242,0.318c-0.086,0.062-0.15,0.069-0.196,0.172c-0.004,0.004-0.009,0.008-0.013,0.013\r\n\t\t\t\tC33.594,7.203,34.035,7.121,34.414,7.117z M20.993,9.697c0.035,0.033,0.134,0.07,0.225,0.035c0.034-0.013,0.049-0.034,0.076-0.05\r\n\t\t\t\tc0.019-0.02,0.038-0.04,0.057-0.061C21.277,9.6,21.247,9.54,21.129,9.564C21.066,9.601,20.983,9.637,20.993,9.697z M21.388,8.988\r\n\t\t\t\tc-0.081,0.009-0.125-0.079-0.169-0.114c-0.024,0.041-0.114,0.079-0.126,0.107c0,0,0.086,0.119,0.094,0.127\r\n\t\t\t\tc0.011,0.01,0.028,0.019,0.044,0.023c0.039-0.003,0.22-0.108,0.242-0.129c0.013-0.013,0.03-0.035,0.009-0.052\r\n\t\t\t\tC21.451,8.925,21.406,8.976,21.388,8.988z M20.989,9.241c-0.031,0.049,0.059,0.128,0.12,0.118\r\n\t\t\t\tc0.061-0.054,0.045-0.074-0.037-0.096C21.044,9.256,21.017,9.248,20.989,9.241z M20.988,9.24L20.988,9.24\r\n\t\t\t\tc0.003-0.004-0.005-0.009-0.001-0.012C20.987,9.233,20.988,9.237,20.988,9.24z M30.588,18.905\r\n\t\t\t\tc0.119-0.015,0.252,0.008,0.413-0.006c0.016-0.051,0.02-0.072,0.064-0.095c-0.01-0.113-0.024-0.131,0.025-0.21\r\n\t\t\t\tc-0.011-0.004-0.021-0.008-0.032-0.013c-0.006,0.01-0.013,0.021-0.019,0.032c-0.055,0.015-0.11,0.03-0.165,0.044\r\n\t\t\t\tc-0.059,0.043-0.078,0.143-0.153,0.172c-0.076,0.008-0.153,0.017-0.229,0.025c-0.051,0.023-0.079,0.083-0.102,0.133\r\n\t\t\t\tc0.028,0.028,0.055,0.055,0.083,0.083C30.523,19.013,30.565,18.998,30.588,18.905z M10.002,26.709v0.006\r\n\t\t\t\tc0.013,0.019,0.025,0.038,0.038,0.057h0.027c-0.006-0.014-0.006-0.034-0.015-0.051C10.036,26.717,10.019,26.713,10.002,26.709z\r\n\t\t\t\t M42.956,34.189c-0.052-0.021-0.103-0.043-0.153-0.064c-0.119,0.085-0.214,0.171-0.388,0.21c-0.076,0.017-0.146-0.017-0.19-0.024\r\n\t\t\t\tc-0.086-0.018-0.14,0.054-0.197,0.069c-0.06-0.006-0.119-0.013-0.178-0.019h-0.014c-0.072,0.047-0.145,0.093-0.216,0.14\r\n\t\t\t\tc-0.099,0.036-0.13-0.06-0.242-0.038c-0.091,0.04-0.183,0.08-0.272,0.121h-0.179c-0.091-0.1-0.215-0.211-0.272-0.337\r\n\t\t\t\tc-0.055-0.015-0.129-0.003-0.191-0.013c-0.004-0.002-0.009-0.004-0.013-0.006v-0.014c0.069-0.033,0.208-0.09,0.261-0.146\r\n\t\t\t\tc-0.006-0.168-0.232-0.211-0.33-0.305c-0.018-0.016-0.033-0.139-0.089-0.19c-0.026-0.024-0.075-0.007-0.108-0.025\r\n\t\t\t\tc-0.088-0.098-0.178-0.194-0.267-0.292c-0.035-0.016-0.076-0.009-0.127-0.006c-0.039-0.055-0.074-0.139-0.133-0.172\r\n\t\t\t\tc-0.019,0.025-0.013,0.083-0.019,0.107c-0.005,0.002-0.009,0.004-0.014,0.008c-0.182-0.153-0.225-0.623-0.331-0.864\r\n\t\t\t\tc-0.049-0.112-0.295-0.163-0.362-0.254c-0.105-0.144-0.037-0.516-0.089-0.724c-0.032-0.135-0.153-0.35-0.254-0.426\r\n\t\t\t\tc-0.05-0.038-0.123-0.051-0.159-0.102c-0.045-0.062-0.051-0.162-0.076-0.242c0.023-0.021,0.047-0.042,0.07-0.064\r\n\t\t\t\tc-0.051-0.051-0.102-0.102-0.152-0.152c-0.14-0.209-0.24-0.462-0.369-0.667c-0.055-0.144-0.11-0.288-0.166-0.432\r\n\t\t\t\tc-0.094-0.171-0.256-0.287-0.299-0.521c0.033-0.045,0.039-0.066,0.096-0.089c0.08,0.245,0.223,0.49,0.4,0.642\r\n\t\t\t\tc0.019,0.021,0.047,0.019,0.075,0.013c0.08-0.159,0.058-0.398,0.185-0.508c-0.074-0.191-0.148-0.381-0.223-0.572\r\n\t\t\t\tc-0.121,0.015-0.164,0.113-0.337,0.019c-0.112,0.08-0.157,0.011-0.28,0.032c-0.041-0.043-0.076-0.051-0.095-0.121\r\n\t\t\t\tc-0.215-0.044-0.454,0.008-0.604,0.108c-0.039,0.032-0.08,0.063-0.12,0.095c-0.079,0.017-0.155-0.048-0.21-0.064\r\n\t\t\t\tc-0.061-0.006-0.123-0.013-0.184-0.019c-0.014-0.017-0.025-0.034-0.039-0.051c-0.147-0.032-0.297-0.064-0.444-0.095h-0.318\r\n\t\t\t\tc-0.058-0.026-0.045-0.125-0.108-0.146h-0.146c-0.077-0.012-0.25-0.041-0.324-0.07c-0.069-0.038-0.032-0.128-0.133-0.172\r\n\t\t\t\tc-0.258-0.113-0.681,0.039-0.782,0.21c-0.137,0.231,0.168,0.358-0.146,0.527c-0.038,0.02-0.089,0.07-0.146,0.064\r\n\t\t\t\tc-0.154-0.018-0.267-0.184-0.4-0.235c-0.133-0.05-0.434-0.054-0.541-0.114c-0.118-0.068-0.136-0.311-0.24-0.35\r\n\t\t\t\tc-0.058-0.021-0.105-0.003-0.152-0.025c-0.028-0.025-0.055-0.051-0.083-0.076c-0.066-0.013-0.131-0.025-0.197-0.038\r\n\t\t\t\tc-0.095,0.006-0.191,0.013-0.286,0.019c-0.129-0.055-0.258-0.11-0.388-0.165c-0.009-0.034-0.017-0.068-0.025-0.102\r\n\t\t\t\tc-0.061-0.005-0.069,0.013-0.121,0.025c-0.082-0.04-0.182-0.111-0.203-0.21c0.059-0.065,0.326-0.286,0.324-0.369\r\n\t\t\t\tc-0.011-0.042-0.021-0.085-0.032-0.127c-0.337-0.192,0.008-0.272,0.006-0.483c-0.064,0.038-0.127,0.076-0.191,0.115\r\n\t\t\t\tc-0.011-0.002-0.021-0.004-0.032-0.006c-0.018-0.04-0.036-0.072-0.038-0.127c-0.047-0.021-0.093-0.042-0.14-0.064\r\n\t\t\t\tc-0.03,0.004-0.059,0.009-0.089,0.013c-0.095,0.036-0.266,0.212-0.432,0.165c-0.024-0.007-0.062-0.069-0.14-0.096\r\n\t\t\t\tc-0.063,0.009-0.084,0.051-0.133,0.076c-0.076-0.012-0.113-0.06-0.178-0.083c-0.078,0.055-0.155,0.115-0.267,0.14\r\n\t\t\t\tc-0.173,0.039-0.303-0.115-0.502-0.063c-0.038,0.021-0.076,0.042-0.114,0.063c-0.073,0.026-0.104-0.027-0.159-0.019\r\n\t\t\t\tc-0.047,0.021-0.093,0.042-0.14,0.064c-0.145,0.03-0.312-0.005-0.432,0.044c-0.114,0.047-0.181,0.142-0.267,0.216\r\n\t\t\t\tc-0.046-0.004-0.065-0.015-0.089-0.038c-0.039,0.007-0.209,0.066-0.242,0.089c-0.08,0.057-0.073,0.137-0.191,0.172\r\n\t\t\t\tc-0.13,0.038-0.283-0.002-0.318-0.089c-0.007-0.002-0.345,0.103-0.477,0.064c-0.138-0.041-0.19-0.153-0.28-0.242\r\n\t\t\t\tc-0.032,0.015-0.064,0.03-0.095,0.045c-0.071,0.054-0.17,0.43-0.248,0.534c-0.114,0.152-0.324,0.164-0.483,0.273\r\n\t\t\t\tc-0.054,0.037-0.227,0.186-0.248,0.241c-0.022,0.058,0.009,0.132-0.019,0.191c-0.035,0.073-0.121,0.127-0.153,0.21\r\n\t\t\t\tc-0.075,0.199,0.155,0.303-0.006,0.54c-0.101,0.149-0.406,0.41-0.578,0.483c-0.089,0.038-0.211,0.03-0.305,0.076\r\n\t\t\t\tc-0.108,0.053-0.13,0.288-0.203,0.381c-0.059,0.074-0.188,0.088-0.242,0.165c-0.056,0.081-0.105,0.204-0.127,0.311\r\n\t\t\t\tc-0.002,0.044-0.004,0.089-0.006,0.134c-0.04,0.101-0.18,0.151-0.242,0.235c-0.063,0.146-0.127,0.292-0.191,0.438\r\n\t\t\t\tc-0.047,0.051-0.093,0.102-0.14,0.153c-0.056,0.084-0.082,0.256-0.064,0.388c0.015-0.017,0.03-0.034,0.044-0.051\r\n\t\t\t\tc0.199,0.016,0.209,0.339,0.114,0.477c0.233,0.184,0.095,0.554,0.025,0.788c-0.008,0.067-0.017,0.136-0.025,0.203\r\n\t\t\t\tc-0.037,0.135-0.145,0.317-0.273,0.362c-0.002,0.004-0.004,0.008-0.006,0.013c0.181,0.075,0.181,0.271,0.267,0.311\r\n\t\t\t\tc0.01,0.021,0.013,0.041,0.013,0.076c-0.019,0.004-0.038,0.008-0.057,0.013c-0.049,0.069-0.01,0.178-0.032,0.262\r\n\t\t\t\tc0.08,0.135,0.04,0.035,0.14,0.102c0.004,0.016,0.008,0.03,0.013,0.044c0.042,0.024,0.085,0.052,0.127,0.076\r\n\t\t\t\tc0.063-0.013,0.153-0.052,0.203,0.006c-0.039,0.048-0.093,0.079-0.076,0.165c0.026,0.018,0.08,0.021,0.102,0.044\r\n\t\t\t\tc0.015,0.021,0.01,0.028,0.006,0.058c0.034,0.022,0.057,0.033,0.121,0.031c0.011,0.033,0.011,0.061,0,0.096\r\n\t\t\t\tc0.065,0.068,0.166,0.135,0.267,0.164c0.006,0.032,0.013,0.063,0.019,0.096c0.033,0.061,0.118,0.08,0.14,0.158v0.096\r\n\t\t\t\tc0.014,0.018,0.035,0.021,0.063,0.025c0.002,0.008,0.004,0.017,0.006,0.024c-0.023,0.019-0.047,0.038-0.07,0.058h-0.013\r\n\t\t\t\tc0.028,0.094,0.156,0.186,0.261,0.203c0.018,0.033,0.013,0.047,0.006,0.094c0.142,0.043,0.215,0.149,0.324,0.223\r\n\t\t\t\tc0.08,0.042,0.161,0.085,0.242,0.127c0.17,0.12,0.278,0.261,0.477,0.361c0.062,0.033,0.311,0.192,0.388,0.173\r\n\t\t\t\tc0.102-0.054,0.203-0.106,0.305-0.159c0.106-0.029,0.212-0.059,0.318-0.089c0.092-0.027,0.292-0.048,0.407-0.025\r\n\t\t\t\tc0.05,0.011,0.145,0.062,0.21,0.038c0.011-0.013,0.021-0.025,0.032-0.038c0.041,0.005,0.246,0.134,0.286,0.165\r\n\t\t\t\tc0.206-0.093,0.411-0.186,0.616-0.279c0.087-0.008,0.174-0.018,0.261-0.025c0.052-0.039,0.054-0.107,0.127-0.133\r\n\t\t\t\tc0.214-0.02,0.428-0.038,0.642-0.057c0.032-0.013,0.039-0.043,0.083-0.058c0.077,0.015,0.286,0.147,0.331,0.203\r\n\t\t\t\tc0.015,0.024,0.03,0.051,0.044,0.075c0.023,0.002,0.047,0.005,0.07,0.007c0.006,0.008,0.013,0.017,0.019,0.024\r\n\t\t\t\tc-0.013,0.032-0.025,0.064-0.038,0.096c0.025,0.209,0.348,0.363,0.534,0.197c0.101,0.017,0.232,0.039,0.343-0.007\r\n\t\t\t\tc0.002-0.026-0.002-0.036-0.013-0.062c0.025-0.017,0.147,0.013,0.178,0.051c0.069,0.124-0.004,0.172,0.222,0.165\r\n\t\t\t\tc0.008,0.013,0.017,0.025,0.025,0.038c0.004,0.004,0.008,0.008,0.013,0.013c-0.019,0.016-0.038,0.03-0.057,0.044\r\n\t\t\t\tc0.021,0.08,0.085,0.147,0.102,0.242c-0.011,0.042-0.021,0.085-0.032,0.127c0.009,0.032,0.017,0.063,0.025,0.095\r\n\t\t\t\tc-0.024,0.1-0.086,0.2-0.153,0.262c-0.002,0.006-0.004,0.013-0.006,0.019c0.025,0.004,0.051,0.008,0.076,0.013\r\n\t\t\t\tc0.003,0.084-0.012,0.146-0.076,0.166c0.049,0.041,0.097,0.084,0.146,0.127v0.006c-0.038-0.004-0.076-0.01-0.114-0.014\r\n\t\t\t\tc-0.031,0.139-0.072,0.242-0.191,0.292c0.013,0.028,0.052,0.116,0.076,0.14c0.036,0.035,0.074,0.016,0.114,0.07\r\n\t\t\t\tc-0.021,0.016-0.042,0.03-0.063,0.045c-0.002,0.004-0.004,0.008-0.006,0.014c0.042,0.062,0.085,0.123,0.127,0.184\r\n\t\t\t\tc0.053,0.027,0.074,0.003,0.108,0.045c-0.011,0.016-0.021,0.03-0.032,0.044c0.089,0.058,0.143,0.122,0.203,0.21\r\n\t\t\t\tc0.112,0.104,0.224,0.208,0.337,0.311c0.032,0.039,0.115,0.205,0.133,0.248c0.029,0.068-0.018,0.162,0.038,0.262\r\n\t\t\t\tc0.045,0.064,0.089,0.127,0.133,0.191c0.013,0.061,0.025,0.123,0.038,0.184c0.057,0.134,0.17,0.186,0.14,0.388\r\n\t\t\t\tc-0.243,0.109,0.046,0.36,0.089,0.489c0.008,0.1,0.017,0.199,0.025,0.299c-0.019,0.11-0.066,0.285-0.146,0.337\r\n\t\t\t\tc-0.03,0.011-0.059,0.021-0.089,0.032c-0.017,0.04-0.034,0.081-0.051,0.121c-0.03,0.031-0.059,0.064-0.089,0.096\r\n\t\t\t\tc-0.094,0.223-0.042,0.57-0.222,0.705c0,0.202-0.037,0.471,0.013,0.648c0.038,0.135,0.15,0.217,0.216,0.324\r\n\t\t\t\tc0.108,0.215,0.216,0.432,0.324,0.647c0.075,0.146,0.371,0.403,0.203,0.571c0.03,0.141,0.059,0.281,0.089,0.42\r\n\t\t\t\tc0.023,0.055,0.047,0.109,0.07,0.165c0.02,0.081-0.031,0.143-0.025,0.202c0.008,0.08,0.071,0.147,0.089,0.211\r\n\t\t\t\tc0.014,0.047-0.021,0.072-0.019,0.102c0.034,0.104,0.068,0.208,0.102,0.311c0.116,0.131,0.233,0.264,0.349,0.395\r\n\t\t\t\tc0.12,0.189,0.16,0.434,0.273,0.635c0.1,0.178,0.271,0.36,0.203,0.654c-0.033,0.008-0.078,0-0.096,0.025\r\n\t\t\t\tc-0.025,0.031,0.123,0.229,0.159,0.285c-0.017,0.049-0.034,0.099-0.051,0.146c0.011,0.011,0.021,0.021,0.032,0.031\r\n\t\t\t\tc0.006,0.003,0.013,0.005,0.019,0.007c0.006-0.015,0.013-0.03,0.019-0.045c0.018-0.009,0.022-0.011,0.052-0.013\r\n\t\t\t\tc0.013,0.022,0.024,0.047,0.038,0.069c0.027-0.001,0.052-0.007,0.102-0.006c0.021,0.028,0.021,0.056,0.038,0.095\r\n\t\t\t\tc0.024,0.043,0.115,0.075,0.165,0.09c0.061-0.047,0.096-0.123,0.178-0.146c0.115-0.035,0.252,0.044,0.356-0.006\r\n\t\t\t\tc0.032-0.03,0.063-0.059,0.095-0.09c0.15-0.07,0.214,0,0.331,0c0.034-0.019,0.067-0.037,0.103-0.057\r\n\t\t\t\tc0.121-0.035,0.233,0.073,0.317,0.102c0.04-0.03,0.07-0.055,0.095-0.102c0.058,0.014,0.114,0.025,0.172,0.038\r\n\t\t\t\tc0.018-0.019,0.021-0.053,0.033-0.075c0.049-0.049,0.321-0.018,0.399-0.07c0.083-0.072,0.165-0.145,0.248-0.217\r\n\t\t\t\tc0.416-0.326,0.721-0.688,1.017-1.138c0.074-0.112,0.264-0.19,0.305-0.299c0.021-0.052-0.027-0.122-0.019-0.146\r\n\t\t\t\tc0.017-0.045,0.065-0.033,0.089-0.064c0.071-0.091,0.109-0.35,0.09-0.496c-0.039-0.016-0.078-0.04-0.096-0.076\r\n\t\t\t\tc-0.006-0.006-0.013-0.013-0.02-0.019c0.078-0.091,0.133-0.175,0.242-0.235c0.244-0.134,0.525-0.121,0.635-0.388\r\n\t\t\t\tc-0.008-0.062-0.051-0.036-0.063-0.07c0.002-0.006,0.005-0.013,0.007-0.019c0.012-0.032,0.024-0.064,0.037-0.096\r\n\t\t\t\tc0.03-0.123,0.023-0.264,0.02-0.388c-0.028,0.011-0.035,0.019-0.076,0.019c-0.039-0.123-0.087-0.273-0.044-0.375\r\n\t\t\t\tc-0.007-0.074-0.062-0.111-0.114-0.14v-0.202c0.119-0.088,0.237-0.175,0.355-0.262c0.146-0.122,0.233-0.305,0.4-0.406\r\n\t\t\t\tc0.203-0.123,0.451-0.162,0.643-0.293c0.137-0.094,0.224-0.268,0.33-0.394c0-0.028-0.008-0.039-0.019-0.07\r\n\t\t\t\tc0.036-0.047,0.068-0.081,0.095-0.14c-0.002-0.012-0.004-0.021-0.006-0.032c-0.023-0.011-0.047-0.021-0.07-0.032\r\n\t\t\t\tc-0.02-0.162,0.013-0.337-0.069-0.432c0.003-0.034,0.034-0.062,0.044-0.107c0.025-0.113-0.041-0.295-0.057-0.395\r\n\t\t\t\tc0.029-0.055,0.059-0.11,0.088-0.165c-0.064-0.14-0.182-0.157-0.266-0.267c-0.084-0.108-0.127-0.394-0.07-0.554\r\n\t\t\t\tc-0.019-0.028-0.043-0.032-0.064-0.057c0.029-0.062,0.083-0.148,0.089-0.216c-0.057-0.071-0.161-0.127-0.196-0.217\r\n\t\t\t\tc-0.037-0.095,0.061-0.406,0.102-0.451c0.023-0.025,0.068-0.021,0.089-0.051c0.047-0.067,0.006-0.104,0.024-0.164\r\n\t\t\t\tc0.043-0.138,0.173-0.144,0.185-0.369c0.097-0.053,0.187-0.051,0.19-0.203c0.086,0.017,0.125-0.021,0.191-0.051\r\n\t\t\t\tc0.024-0.035,0.026-0.054,0.006-0.095c0.209-0.235,0.416-0.47,0.623-0.704c0.229-0.186,0.516-0.326,0.744-0.509\r\n\t\t\t\tc0.086-0.104,0.17-0.208,0.254-0.312c0.168-0.215,0.42-0.422,0.527-0.686c0.011-0.049,0.021-0.098,0.032-0.146\r\n\t\t\t\tc0.073-0.118,0.147-0.236,0.222-0.355c-0.002-0.027-0.004-0.055-0.006-0.083c0.042-0.04,0.085-0.081,0.127-0.121\r\n\t\t\t\tc0.055-0.098,0.109-0.194,0.165-0.292c0.006-0.087,0.013-0.174,0.019-0.261c0.015-0.04,0.08-0.069,0.076-0.127\r\n\t\t\t\tc-0.002-0.045-0.037-0.108-0.019-0.172c0.017-0.04,0.034-0.081,0.051-0.121C42.96,34.201,42.958,34.195,42.956,34.189z\r\n\t\t\t\t M51.688,35.154c-0.031-0.184-0.127-0.277-0.279-0.375c0.018,0.078-0.004,0.113-0.025,0.191c-0.033,0.026-0.04,0.043-0.095,0.025\r\n\t\t\t\tc-0.004,0.015-0.009,0.029-0.013,0.044c0.015,0.017,0.029,0.034,0.043,0.051c-0.028,0.063-0.008,0.077,0.007,0.14v0.318\r\n\t\t\t\tc0.022,0.102,0.073,0.268,0.146,0.324c0.209,0.044,0.477-0.139,0.451-0.337c-0.011-0.089-0.093-0.163-0.127-0.235\r\n\t\t\t\tC51.76,35.227,51.768,35.186,51.688,35.154z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z\r\n\t\t\t\t M50.505,13.747c0.043,0.044,0.081,0.093,0.124,0.137c-0.003,0.02-0.006,0.039-0.008,0.059v0.006\r\n\t\t\t\tc0.027,0.007,0.053,0.01,0.08,0.013c0.048,0.049,0.092,0.103,0.139,0.153c-0.13,0.026-0.316,0.022-0.352-0.084\r\n\t\t\t\tC50.471,14.004,50.497,13.865,50.505,13.747z M48.568,14.508c0.037,0.017,0.076,0.034,0.113,0.051\r\n\t\t\t\tc0.07-0.025,0.141-0.051,0.211-0.076c-0.014-0.036-0.025-0.072-0.039-0.108c0.033-0.077,0.143-0.097,0.203-0.146\r\n\t\t\t\tc0.084-0.066,0.228-0.183,0.268-0.286c0.015-0.059,0.029-0.119,0.044-0.178c0.022-0.052,0.06-0.069,0.063-0.146\r\n\t\t\t\tc-0.099-0.13-0.201-0.041-0.254-0.292c0.002-0.127,0.004-0.254,0.006-0.381c-0.008-0.074-0.017-0.148-0.024-0.222\r\n\t\t\t\tc0.032-0.042,0.063-0.085,0.095-0.127c0.001-0.002-0.001-0.005,0-0.008c0.1,0.088,0.195,0.177,0.293,0.266\r\n\t\t\t\tc-0.012,0.031-0.036,0.06-0.038,0.092c-0.006,0.103,0.07,0.19,0.07,0.324c0.103-0.002,0.239,0.039,0.312,0.025\r\n\t\t\t\tc0.033-0.012,0.068-0.024,0.103-0.036c0.075,0.072,0.157,0.137,0.231,0.211c-0.214-0.04-0.47,0.008-0.5,0.206\r\n\t\t\t\tc0.057,0.099,0.113,0.168,0.108,0.318c-0.042,0.053-0.085,0.106-0.127,0.159c-0.034,0.021-0.067,0.042-0.103,0.064\r\n\t\t\t\tc-0.043,0.061-0.037,0.157-0.095,0.203c-0.14,0.113-0.327,0.134-0.407,0.311c-0.084,0.039-0.185,0.002-0.261-0.013\r\n\t\t\t\tc-0.053,0.002-0.106,0.004-0.159,0.006c-0.219-0.032-0.424-0.055-0.502-0.229C48.309,14.462,48.449,14.461,48.568,14.508z\r\n\t\t\t\t M14.404,12.899c-0.002,0.011-0.006,0.023,0.013,0.034c0.011,0.006,0.027,0.004,0.044,0.005c0.046,0.003,0.104,0.019,0.122,0.05\r\n\t\t\t\tc-0.03,0.071-0.177,0-0.221-0.006c0,0.003,0,0.006,0,0.008c-0.005,0-0.011,0-0.016,0c-0.003,0.077,0.276,0.05,0.304,0.123\r\n\t\t\t\tc-0.032,0.036-0.081,0.019-0.141,0.035c-0.004,0.062,0.16,0.026,0.146,0.083c0,0.002-0.001,0.003-0.001,0.005\r\n\t\t\t\tc-0.043,0.013-0.078-0.002-0.117,0.012c-0.004,0.003-0.007,0.006-0.01,0.009c0,0.003,0,0.006,0,0.008\r\n\t\t\t\tc0.031,0.019,0.072,0.042,0.132,0.023c0.017-0.006,0.036-0.014,0.054-0.012c0.006,0.002,0.012,0.003,0.017,0.005\r\n\t\t\t\tc0.003,0.02-0.019,0.062-0.05,0.071c-0.034,0.009-0.199-0.014-0.228-0.021c-0.059-0.015-0.101-0.05-0.147-0.078\r\n\t\t\t\tc-0.04-0.024-0.124-0.06-0.197-0.085C14.204,13.077,14.305,12.99,14.404,12.899z M13.524,13.715\r\n\t\t\t\tc0.019,0.012,0.039,0.022,0.052,0.039c-0.03-0.002-0.064,0.005-0.097,0.01C13.495,13.749,13.509,13.731,13.524,13.715z\r\n\t\t\t\t M7.943,27.904c0.017-0.004,0.034-0.008,0.051-0.013c-0.017,0.015-0.034,0.03-0.051,0.045\r\n\t\t\t\tC7.945,27.925,7.941,27.918,7.943,27.904z M7.499,23.367c-0.001,0.007,0,0.011-0.001,0.018c-0.002-0.002-0.002-0.004-0.004-0.006\r\n\t\t\t\tC7.496,23.376,7.497,23.372,7.499,23.367z M7.676,37.665c-0.049,0.065-0.234,0.104-0.337,0.051\r\n\t\t\t\tc-0.044,0.033-0.061,0.065-0.057,0.146c-0.015,0.014-0.03,0.025-0.044,0.039c-0.012-0.053-0.021-0.069-0.07-0.084\r\n\t\t\t\tc-0.033-0.006-0.066,0.023-0.095,0.039c-0.203,0.106-0.124,0.25-0.191,0.438c-0.026,0.005-0.052,0.01-0.079,0.016\r\n\t\t\t\tc-0.076-0.303-0.168-0.599-0.232-0.904c0.011,0,0.019,0.005,0.032,0.006c0.029,0.082,0.054,0.128,0.146,0.146\r\n\t\t\t\tc0.004-0.029,0.009-0.056,0.013-0.084h0.006c0.023,0.049,0.076,0.109,0.064,0.172c0.006,0.006,0.013,0.014,0.019,0.02\r\n\t\t\t\tc0.114,0.02,0.144-0.047,0.248-0.057c-0.01-0.111-0.095-0.121-0.133-0.203c0.039-0.059,0.138-0.1,0.21-0.121\r\n\t\t\t\tc-0.003-0.04-0.005-0.057,0.006-0.09c0.198-0.062,0.318-0.017,0.375,0.141c0.045,0.008,0.076-0.016,0.108-0.038\r\n\t\t\t\tc-0.001,0.05,0.005,0.067,0.038,0.083c0.002,0.004,0.004,0.01,0.006,0.014c-0.061-0.009-0.097-0.021-0.121,0.031\r\n\t\t\t\tC7.564,37.5,7.647,37.605,7.676,37.665z M32,58c-7.083,0-13.497-2.841-18.187-7.436c0.051-0.051,0.122-0.09,0.155-0.152\r\n\t\t\t\tc0.019-0.078,0.038-0.157,0.057-0.235v-0.013c0.049,0.021,0.108,0.044,0.172,0.02h0.006c0.013,0.191-0.204,0.291-0.248,0.482\r\n\t\t\t\tc0.103-0.092,0.237-0.221,0.299-0.35c0.051-0.121,0.102-0.241,0.153-0.361c0.174-0.277,0.481-0.299,0.394-0.852\r\n\t\t\t\tc-0.012-0.078-0.036-0.114-0.057-0.172c0.045-0.055,0.132-0.205,0.019-0.255v-0.038c0.146,0.014,0.159-0.072,0.235-0.14\r\n\t\t\t\tc0.08-0.069,0.491-0.363,0.585-0.381c0.051-0.011,0.091,0.021,0.127,0.032c0.03-0.036,0.059-0.072,0.089-0.108\r\n\t\t\t\tc0.086-0.051,0.144-0.034,0.165-0.153c0.094-0.012,0.207-0.008,0.28,0.006c0.161,0.031,0.334-0.013,0.483-0.024\r\n\t\t\t\tc-0.005-0.183,0.137-0.241,0.292-0.254c-0.009-0.052-0.017-0.103-0.025-0.153c0.017-0.123,0.117-0.202,0.172-0.292\r\n\t\t\t\tc0.034-0.069,0.068-0.14,0.102-0.21c0.032-0.046,0.105-0.072,0.121-0.133c-0.006-0.062-0.013-0.123-0.019-0.184\r\n\t\t\t\tc-0.03-0.17,0.065-0.289,0.184-0.332c0-0.047-0.035-0.138-0.019-0.222c0.021-0.106,0.097-0.243,0.076-0.368\r\n\t\t\t\tc-0.017-0.166-0.034-0.332-0.051-0.496c0.028-0.172,0.093-0.289,0.095-0.465c0.015,0.002,0.03,0.004,0.044,0.006\r\n\t\t\t\tc0.017,0.034,0.034,0.068,0.051,0.103h0.019c0.113-0.084,0.241-0.308,0.292-0.445c0.031-0.081,0.007-0.126,0.057-0.178\r\n\t\t\t\tc0.047-0.021,0.093-0.042,0.14-0.063c0.273-0.213,0.461-0.44,0.534-0.858c0.027-0.157-0.139-0.732-0.216-0.757\r\n\t\t\t\tc-0.161-0.049-0.338,0.009-0.458-0.069c-0.256-0.166-0.436-0.435-0.731-0.565c-0.171-0.076-0.287,0.017-0.451-0.014\r\n\t\t\t\tc-0.1-0.016-0.199-0.029-0.299-0.045c-0.086-0.023-0.18-0.133-0.286-0.121c-0.154,0.018-0.289,0.139-0.394,0.21\r\n\t\t\t\tc-0.049-0.2,0.024-0.122,0.044-0.241c0.013-0.078-0.114-0.195-0.184-0.203c-0.017,0.017-0.034,0.033-0.051,0.051h-0.025\r\n\t\t\t\tc-0.054-0.172-0.227-0.156-0.394-0.217c-0.065-0.022-0.106-0.067-0.159-0.102c-0.052,0.007-0.15,0.016-0.216,0.032\r\n\t\t\t\tc-0.072,0.028-0.08,0.13-0.121,0.19c-0.069,0.102-0.227,0.129-0.28,0.248c-0.004,0.002-0.008,0.004-0.013,0.006\r\n\t\t\t\tc0-0.069,0.012-0.1,0.032-0.146c-0.111,0.022-0.259,0.048-0.394,0.026c-0.032-0.076-0.064-0.153-0.095-0.229\r\n\t\t\t\tc-0.088,0.024-0.202,0.166-0.318,0.121c-0.006-0.004-0.013-0.008-0.019-0.013c0.085-0.065,0.102-0.2,0.159-0.293\r\n\t\t\t\tc0.065-0.104,0.205-0.137,0.28-0.229c0.067-0.082,0.092-0.211,0.197-0.254c0.034-0.054,0.016-0.107-0.006-0.165\r\n\t\t\t\tc-0.262-0.036-0.276-0.356-0.343-0.577c-0.021-0.068-0.016-0.144-0.076-0.173c-0.031-0.005-0.044,0.032-0.076,0.025\r\n\t\t\t\tc-0.015-0.003-0.319-0.315-0.4-0.356c-0.11-0.035-0.22-0.072-0.331-0.107c-0.09-0.035-0.342-0.112-0.489-0.051\r\n\t\t\t\tc-0.016,0.014-0.018,0.026-0.019,0.057c-0.095-0.021-0.191-0.042-0.286-0.064h-0.006c-0.015,0.016-0.03,0.03-0.044,0.045\r\n\t\t\t\tc-0.061-0.119-0.214-0.313-0.388-0.291c-0.011,0.021-0.021,0.041-0.032,0.062v0.013c-0.013-0.091-0.026-0.182-0.038-0.272\r\n\t\t\t\tc-0.074-0.125-0.313-0.283-0.47-0.318c-0.084-0.018-0.176,0.005-0.241,0.02c-0.066-0.004-0.131-0.009-0.197-0.014v-0.006\r\n\t\t\t\tc0.187-0.059,0.138-0.167,0.273-0.223c0.002-0.004,0.004-0.008,0.006-0.012c-0.051-0.035-0.122-0.046-0.178-0.084\r\n\t\t\t\tc-0.013-0.019-0.026-0.037-0.038-0.057c-0.045-0.029-0.132-0.021-0.172-0.045c-0.027,0.02-0.038,0.035-0.045,0.076\r\n\t\t\t\tc-0.004,0.002-0.008,0.004-0.013,0.006c-0.012-0.113-0.097-0.154-0.184-0.191v-0.039c0.059,0.002,0.119,0.004,0.178,0.006\r\n\t\t\t\tc0.011-0.006,0.021-0.014,0.032-0.02c0.004-0.009,0.008-0.018,0.013-0.025c-0.002-0.004-0.004-0.008-0.006-0.013\r\n\t\t\t\tc-0.129-0.028-0.42-0.039-0.54,0.019c-0.075,0.037-0.117,0.127-0.21,0.146c-0.261,0.059-0.335-0.148-0.496-0.159\r\n\t\t\t\tc-0.136-0.008-0.364,0.083-0.483,0.025c-0.058-0.029-0.044-0.058-0.07-0.121c-0.05-0.125-0.201-0.158-0.375-0.159\r\n\t\t\t\tc-0.033-0.051-0.073-0.137-0.089-0.197c-0.053-0.012-0.097,0.017-0.114,0.064c0.015,0.025,0.03,0.051,0.044,0.076\r\n\t\t\t\tc0.028-0.002,0.055-0.004,0.083-0.006c0.013,0.011,0.025,0.021,0.038,0.031c-0.016,0.063-0.425,0.178-0.515,0.211\r\n\t\t\t\tc0.006,0.004,0.013,0.008,0.019,0.012c-0.008,0.037-0.018,0.037-0.038,0.058c0.053,0.026,0.197,0.299,0.152,0.394\r\n\t\t\t\tc-0.025,0.045-0.094,0.072-0.152,0.084c-0.065-0.049-0.097-0.164-0.146-0.229c0.015-0.101,0.07-0.187,0.121-0.254\r\n\t\t\t\tc-0.012-0.103-0.056-0.167-0.089-0.254c0.041-0.062,0.144-0.086,0.241-0.089c0.011-0.014,0.021-0.025,0.032-0.038\r\n\t\t\t\tc-0.013-0.064-0.059-0.101-0.114-0.121c-0.156-0.06-0.195,0.139-0.273,0.185c-0.04,0.012-0.081,0.024-0.121,0.037\r\n\t\t\t\tc0.019-0.035,0.046-0.051,0.032-0.102c0.027,0.011,0.029,0.016,0.038,0.045h0.006c0.052-0.033,0.079-0.079,0.121-0.121\r\n\t\t\t\tc-0.08-0.166-0.161-0.342-0.337-0.413c-0.058-0.022-0.134,0.003-0.203-0.026c-0.026-0.01-0.121-0.049-0.159-0.037\r\n\t\t\t\tc-0.047,0.031-0.093,0.063-0.14,0.095c-0.03,0.018-0.063,0.012-0.102,0.026c-0.12,0.043-0.172,0.127-0.331,0.094\r\n\t\t\t\tc-0.05-0.062-0.09-0.027-0.135-0.021c-0.26-1.288-0.395-2.619-0.457-3.968c0.016-0.002,0.033-0.001,0.046-0.007\r\n\t\t\t\tc0.167-0.078,0.167-0.194,0.47-0.121c0.006,0.011,0.013,0.021,0.019,0.031v0.007c-0.047,0.013-0.093,0.024-0.14,0.038\r\n\t\t\t\tc0.108,0.084,0.261,0.035,0.419,0.082c0.114,0.035,0.208,0.115,0.337,0.146c0.067,0.018,0.202-0.02,0.261,0.02\r\n\t\t\t\tc0.043,0.024,0.066,0.123,0.07,0.184c0.099,0.061,0.295,0.061,0.388,0.127c-0.006,0.064-0.053,0.105-0.102,0.127\r\n\t\t\t\tC7.811,33.859,7.792,33.88,7.773,33.9v0.007c0.141,0.006,0.266-0.058,0.394-0.038c0.097,0.011,0.195,0.021,0.292,0.031\r\n\t\t\t\tc0.105-0.019,0.2-0.058,0.324-0.069c0.002-0.004,0.004-0.008,0.006-0.013c-0.124-0.092-0.202-0.151-0.432-0.146\r\n\t\t\t\tc-0.006-0.006-0.013-0.013-0.019-0.02c0.013-0.027,0.025-0.055,0.038-0.082c-0.079-0.081-0.36-0.09-0.483-0.141\r\n\t\t\t\tc-0.04-0.043-0.08-0.089-0.121-0.133c-0.131-0.09-0.318-0.074-0.477-0.146c-0.064-0.053-0.127-0.105-0.191-0.158H7.022\r\n\t\t\t\tc-0.163-0.037-0.338-0.074-0.559-0.07c-0.083,0.008-0.165,0.018-0.248,0.025c-0.059,0.014-0.109,0.043-0.163,0.068\r\n\t\t\t\tC6.038,32.677,6,32.344,6,32c0-0.404,0.042-0.798,0.06-1.198c0.069,0.073,0.127,0.176,0.179,0.209\r\n\t\t\t\tc0.057,0.035,0.12,0.025,0.133,0.102c-0.021,0.115-0.042,0.229-0.064,0.343c0.008,0.002,0.017,0.004,0.025,0.006\r\n\t\t\t\tc0.036,0.022,0.05-0.017,0.089-0.032c0.002,0.019,0.004,0.038,0.006,0.057c-0.025,0.035-0.04,0.043-0.083,0.063\r\n\t\t\t\tc0.038,0.07,0.076,0.14,0.115,0.21h0.06c0.006,0.032,0.013,0.064,0.019,0.095c0.019,0.013,0.038,0.025,0.057,0.038\r\n\t\t\t\tc0.051,0.105-0.017,0.164,0.133,0.172c0.035,0.058,0.068,0.193,0.108,0.242c0.047-0.022,0.112-0.023,0.178-0.032\r\n\t\t\t\tc-0.004,0.021-0.008,0.042-0.013,0.064h0.013c0.048-0.142,0.166-0.403,0.108-0.61c-0.023-0.081-0.082-0.166-0.108-0.261\r\n\t\t\t\tc-0.013-0.083-0.025-0.165-0.038-0.248c-0.062-0.179-0.316-0.446-0.267-0.699c0.032-0.1,0.064-0.199,0.095-0.299\r\n\t\t\t\tc0.053-0.085,0.131-0.155,0.165-0.26c0.15-0.028,0.305-0.087,0.369-0.197c0.047-0.082,0.048-0.15,0.127-0.197\r\n\t\t\t\tc0.074-0.044,0.216-0.039,0.28-0.076c0.064-0.08,0.127-0.161,0.191-0.242c0.07-0.011,0.14-0.021,0.21-0.032\r\n\t\t\t\tc0.025-0.021,0.051-0.042,0.076-0.063c0.002-0.004,0.004-0.009,0.006-0.013c-0.027-0.012-0.033-0.01-0.044-0.038\r\n\t\t\t\tc-0.025,0.019-0.067,0.035-0.095,0.051c-0.015-0.009-0.03-0.017-0.044-0.026c-0.019-0.013-0.023-0.028-0.032-0.051\r\n\t\t\t\tc0.025,0.019,0.035,0.04,0.07,0.051c0.054-0.032,0.047-0.06,0.089-0.083v-0.013c-0.03-0.031-0.081-0.057-0.14-0.057\r\n\t\t\t\tc-0.006-0.011-0.013-0.021-0.019-0.032c0.044,0.015,0.089,0.03,0.133,0.045c-0.006-0.011-0.013-0.021-0.019-0.032v-0.006\r\n\t\t\t\tc0.051,0.021,0.064,0.054,0.14,0.064c0.025-0.03,0.051-0.059,0.076-0.089c0.009-0.016,0.008-0.002,0.038,0\r\n\t\t\t\tc0.006-0.011,0.013-0.021,0.019-0.032c-0.001-0.047-0.012-0.063-0.038-0.083c-0.011-0.006-0.002-0.006-0.013,0\r\n\t\t\t\tc-0.028,0.017-0.029,0.052-0.044,0.081c0.002,0.005-0.004,0.01-0.001,0.014v-0.013c0-0.001,0-0.001,0.001-0.002\r\n\t\t\t\tc-0.01-0.027-0.001-0.054,0.005-0.087c-0.004-0.004-0.009-0.008-0.013-0.013c-0.06,0.01-0.113,0.02-0.191,0.019\r\n\t\t\t\tc0.008-0.038-0.02-0.071,0-0.108v-0.013c0.011,0.017-0.003,0.036,0.006,0.064c0.009,0.011,0.017,0.021,0.026,0.032\r\n\t\t\t\tc0.021-0.006,0.042-0.013,0.064-0.019c0-0.018-0.002-0.019-0.013-0.038c0.021,0.011,0.042,0.021,0.064,0.032\r\n\t\t\t\tc0.008-0.004,0.017-0.009,0.025-0.013c0.002-0.004,0.004-0.008,0.006-0.013c-0.011-0.015-0.021-0.029-0.032-0.044\r\n\t\t\t\tc0.034,0.019,0.057,0.04,0.089,0.025c0.004,0.015,0.008,0.03,0.013,0.045h0.019c-0.012-0.067-0.042-0.087-0.07-0.134h0.038\r\n\t\t\t\tc-0.004-0.026-0.004-0.02-0.017-0.036c0.004-0.008,0.008-0.015,0.011-0.023c-0.024-0.086-0.083-0.085-0.17-0.066\r\n\t\t\t\tc-0.004-0.07-0.06-0.101-0.121-0.114c-0.002-0.004-0.004-0.008-0.006-0.013c0.011-0.006,0.021-0.013,0.032-0.019\r\n\t\t\t\tc0.043,0.021,0.076,0.045,0.095,0.089c0.03,0.02,0.023,0.021,0.07,0.019c-0.002-0.021-0.004-0.042-0.006-0.064\r\n\t\t\t\tc-0.02-0.013-0.034-0.028-0.052-0.038H8.172c-0.021-0.017-0.042-0.034-0.064-0.051c0.018,0.026,0.045,0.037,0.069,0.051h0.02\r\n\t\t\t\tc-0.002-0.013-0.004-0.025-0.006-0.038c0.017,0.006,0.034,0.013,0.051,0.019h0.006c-0.002-0.043-0.004-0.052-0.038-0.064\r\n\t\t\t\tc0.009-0.004,0.017-0.009,0.026-0.013c-0.082-0.042-0.117-0.054-0.159-0.133c0.034,0.03,0.068,0.059,0.102,0.089\r\n\t\t\t\tc0.006,0.006,0.013,0.013,0.019,0.019c0.036-0.023,0.042-0.039,0.057-0.083c-0.034-0.047-0.238-0.13-0.311-0.159\r\n\t\t\t\tc-0.002-0.007,0.001-0.013,0-0.019c0.068-0.003,0.075,0.022,0.127,0.045c-0.002-0.013-0.004-0.025-0.006-0.038\r\n\t\t\t\tc0.042,0.042,0.099,0.078,0.153,0.108c-0.016-0.09-0.078-0.09-0.095-0.165h0.006c0.012,0.032,0.027,0.045,0.057,0.057\r\n\t\t\t\tc0.004,0.004,0.008,0.008,0.013,0.013h0.006c-0.015-0.036-0.03-0.072-0.044-0.108c-0.02-0.107,0.072-0.052-0.006-0.197\r\n\t\t\t\tc0.017,0.002,0.034,0.004,0.051,0.006c0.002-0.019,0.004-0.038,0.006-0.057c0.019,0.012,0.011,0.001,0.019,0.026h0.006\r\n\t\t\t\tc0.011-0.014,0.011-0.017,0.013-0.045c0.002,0.011,0.004,0.021,0.006,0.032c0.029-0.021,0.034-0.024,0.032-0.045\r\n\t\t\t\tc0.015-0.011,0.03-0.021,0.044-0.032c-0.006,0.017-0.013,0.034-0.019,0.051c0.013,0.006,0.025,0.013,0.038,0.019\r\n\t\t\t\tc-0.025,0.006-0.051,0.013-0.076,0.019c-0.011,0.017-0.021,0.034-0.032,0.051v0.006h0.051c-0.013,0.035-0.02,0.044-0.07,0.044\r\n\t\t\t\tc-0.004,0.006-0.009,0.013-0.013,0.019c0.016,0.017,0.027,0.021,0.057,0.025c0.002,0.004,0.004,0.008,0.006,0.013v0.026\r\n\t\t\t\tc-0.013-0.007-0.025-0.013-0.038-0.019c-0.004,0.002-0.009,0.004-0.013,0.006c-0.004,0.013-0.009,0.025-0.013,0.038v0.006\r\n\t\t\t\tc0.047-0.025,0.036-0.01,0.089,0.013c0.004,0.006,0.009,0.013,0.013,0.019c-0.03,0.011-0.059,0.021-0.089,0.032\r\n\t\t\t\tc-0.002,0.004-0.004,0.008-0.006,0.013c0.011,0.015,0.021,0.03,0.032,0.044c0.017,0.011,0.034,0.021,0.051,0.032\r\n\t\t\t\tc0.021-0.013,0.042-0.025,0.064-0.038c-0.001,0.055-0.005,0.033-0.025,0.07c0.015,0.008,0.03,0.017,0.044,0.025\r\n\t\t\t\tc-0.006,0.013-0.013,0.026-0.019,0.038v0.006H8.37c0.026-0.01,0.031-0.014,0.051,0c-0.039,0.071-0.09,0.135-0.114,0.229\r\n\t\t\t\tc0.004,0.013,0.008,0.025,0.013,0.038c0.008-0.002,0.017-0.004,0.025-0.006c0.017-0.038,0.034-0.076,0.051-0.114\r\n\t\t\t\tc0.02,0,0.017,0.006,0.032-0.006c0.023-0.055,0.047-0.11,0.07-0.165c0.033-0.056,0.086-0.075,0.102-0.14\r\n\t\t\t\tc-0.004-0.04-0.008-0.081-0.013-0.121c-0.078-0.033-0.136-0.206-0.152-0.292c0.024-0.023,0.034-0.046,0.064-0.064\r\n\t\t\t\tc0.002,0.002,0.004,0.004,0.006,0.006c-0.017,0.031-0.037,0.044-0.057,0.07c0.054,0.073,0.068,0.144,0.184,0.14\r\n\t\t\t\tc0.005,0.037-0.005,0.046-0.013,0.083v0.006c0.004,0.002,0.008,0.004,0.013,0.006c0.055-0.041,0.152-0.125,0.152-0.216\r\n\t\t\t\tc0.013,0.004,0.026,0.008,0.038,0.013c0.032-0.093,0.078-0.196,0.095-0.305c-0.053-0.007-0.063-0.019-0.089-0.051\r\n\t\t\t\tc-0.002-0.006-0.004-0.013-0.006-0.019c0.029-0.023,0.034-0.034,0.064-0.026c0.019-0.053,0.038-0.106,0.057-0.159\r\n\t\t\t\tc-0.015,0.047-0.03,0.093-0.045,0.14c0.19-0.133,0.413-0.223,0.744-0.222c0.008-0.043,0.017-0.085,0.025-0.127\r\n\t\t\t\tc0.002-0.002,0.036,0,0.064-0.013c0.003,0.022-0.008,0.053-0.006,0.095c0.004,0.002,0.008,0.004,0.013,0.007\r\n\t\t\t\tc0.058-0.002,0.108-0.049,0.121-0.089h0.006c0.013,0.016,0.014,0.037,0.013,0.07c0.072-0.017,0.144-0.034,0.216-0.051\r\n\t\t\t\tc0-0.035-0.012-0.048-0.019-0.067v0.016c-0.03,0.013-0.059,0.025-0.089,0.038c-0.017-0.006-0.034-0.013-0.051-0.019\r\n\t\t\t\tc-0.017-0.095-0.061-0.182-0.165-0.191c0.011-0.069,0.067-0.083,0.127-0.102c0.002-0.006,0.004-0.013,0.006-0.019\r\n\t\t\t\tc-0.052-0.015-0.053-0.008-0.083-0.057c0.045-0.073,0.096-0.241,0.184-0.267v-0.07c0.028-0.011,0.055-0.021,0.083-0.032\r\n\t\t\t\tc-0.002,0.011-0.004,0.021-0.006,0.032c0.013,0.006,0.025,0.013,0.038,0.019h0.006c0.028-0.036,0.033-0.028,0.025-0.076\r\n\t\t\t\tc0.011-0.009,0.021-0.017,0.032-0.025c-0.004,0.015-0.008,0.03-0.013,0.044c0.017,0.004,0.034,0.008,0.051,0.013\r\n\t\t\t\tc0.008-0.021,0.017-0.042,0.025-0.064c0.013,0.008,0.025,0.017,0.038,0.025c0.059-0.044,0.113-0.149,0.14-0.222h0.006\r\n\t\t\t\tc0.004,0.002,0.008,0.004,0.013,0.006c-0.008,0.021-0.017,0.042-0.025,0.064c0.002,0.004,0.004,0.008,0.006,0.013\r\n\t\t\t\tc0.027,0.008,0.055,0.017,0.083,0.025c-0.004-0.019-0.008-0.038-0.013-0.057c0.046,0.008,0.075-0.021,0.121-0.032\r\n\t\t\t\tc0.006,0.019,0.013,0.038,0.019,0.057c0.038-0.028,0.057-0.071,0.095-0.095c0.015,0.011,0.03,0.021,0.044,0.032\r\n\t\t\t\tc0.018-0.015,0.017-0.011,0.019-0.045c0.069,0.012,0.096-0.012,0.153-0.038c0.011-0.019,0.01-0.016,0.013-0.032h-0.051\r\n\t\t\t\tc0.011-0.015,0.021-0.03,0.032-0.045c-0.011-0.023-0.021-0.047-0.032-0.07c0.011,0.008,0.021,0.017,0.032,0.025\r\n\t\t\t\tc0.041-0.039,0.135-0.02,0.178,0.013c0.034-0.019,0.068-0.038,0.102-0.057c-0.006-0.013-0.013-0.026-0.019-0.038\r\n\t\t\t\tc0.023,0.013,0.047,0.025,0.07,0.038c0.139-0.017,0.194-0.143,0.343-0.146c0.013-0.023,0.025-0.047,0.038-0.07\r\n\t\t\t\tc-0.006-0.019-0.013-0.038-0.019-0.057c0.024,0.019,0.04,0.035,0.044,0.076c0.019-0.011,0.038-0.021,0.057-0.032h0.006\r\n\t\t\t\tc-0.025,0.065-0.104,0.124-0.172,0.146c-0.008,0.017-0.011,0.022-0.013,0.051c0.108-0.056,0.302-0.039,0.432-0.025\r\n\t\t\t\tc0.004,0.006,0.008,0.013,0.013,0.019c-0.092-0.002-0.148,0.034-0.229,0.051v0.044c-0.023-0.018-0.019-0.021-0.044-0.025\r\n\t\t\t\tc0.002-0.023,0.004-0.047,0.006-0.07c-0.083-0.003-0.358,0.164-0.413,0.222h-0.013c0.011,0.006,0.021,0.013,0.032,0.019v0.006\r\n\t\t\t\tc-0.027,0.003-0.018,0.002-0.038-0.013c-0.04,0.023-0.08,0.047-0.121,0.07c-0.002,0.004-0.004,0.008-0.006,0.013\r\n\t\t\t\tc0.006,0.004,0.013,0.008,0.019,0.013c0.03-0.019,0.059-0.038,0.089-0.057c-0.014,0.038-0.023,0.015-0.044,0.038\r\n\t\t\t\tc-0.076,0.082-0.026,0.172-0.006,0.26c0.015-0.005,0.009-0.003,0.025-0.019c0.019,0.032,0.038,0.064,0.057,0.095\r\n\t\t\t\tc0.048-0.01,0.046-0.012,0.076,0.019c0.009-0.023,0.017-0.047,0.026-0.07c0.035-0.016,0.053-0.017,0.108-0.013v-0.045\r\n\t\t\t\tc0.006,0.004,0.013,0.009,0.019,0.013c0.062-0.036,0.089-0.171,0.203-0.172c0.014-0.051-0.01-0.053-0.013-0.108h0.038\r\n\t\t\t\tc0.006,0.011,0.013,0.021,0.019,0.032h0.006c0.023-0.015,0.034-0.023,0.045-0.051c0.004-0.002,0.008-0.004,0.013-0.006\r\n\t\t\t\tc-0.002,0.015-0.004,0.03-0.006,0.045c0.036,0.004,0.072,0.008,0.108,0.013c0.016-0.034,0.031-0.025,0.038-0.07\r\n\t\t\t\tc0.011,0.006,0.021,0.013,0.032,0.019c0.004-0.015,0.008-0.03,0.013-0.044c0.006-0.002,0.013-0.004,0.019-0.006\r\n\t\t\t\tc0.032,0.009,0.026,0.014,0.045,0.032c0.124-0.045,0.262-0.143,0.407-0.146c-0.002-0.009-0.004-0.017-0.006-0.025\r\n\t\t\t\tc0.032,0.002,0.064,0.004,0.095,0.006c-0.004-0.006-0.008-0.013-0.013-0.019c0.006-0.004,0.013-0.009,0.019-0.013\r\n\t\t\t\tc0.024-0.013,0.02-0.005,0.044,0.013c0.021-0.009,0.042-0.017,0.063-0.025c-0.027-0.034-0.068-0.036-0.133-0.032\r\n\t\t\t\tc-0.004-0.006-0.008-0.013-0.013-0.019c0.013-0.007,0.025-0.013,0.038-0.019c0.006-0.008,0.013-0.017,0.019-0.025\r\n\t\t\t\tc-0.021-0.021-0.042-0.042-0.063-0.064c-0.075-0.027-0.112,0.044-0.133-0.064c-0.066,0.01-0.086,0.052-0.133,0.07\r\n\t\t\t\tc-0.032,0.012-0.073,0.004-0.095,0.013c0.006-0.013,0.013-0.025,0.019-0.038h-0.013c-0.002-0.004-0.004-0.008-0.006-0.013\r\n\t\t\t\tc-0.067-0.031-0.119,0.027-0.165,0.006c-0.019-0.013-0.038-0.025-0.057-0.038c-0.028,0.002-0.055,0.004-0.083,0.006\r\n\t\t\t\tc-0.028-0.013-0.04-0.048-0.083-0.057h-0.013v-0.006c0.025-0.009,0.051-0.017,0.076-0.025c0.004-0.002,0.009-0.004,0.013-0.006\r\n\t\t\t\tc-0.103-0.049-0.301-0.028-0.267-0.191c-0.021-0.028-0.018-0.025-0.044-0.019c-0.013-0.053-0.009-0.079,0.013-0.121\r\n\t\t\t\tc-0.03-0.032-0.094-0.029-0.159-0.025c0.088-0.089,0.103-0.048,0.133-0.178c0.021-0.021,0.042-0.042,0.064-0.064\r\n\t\t\t\tc-0.015-0.011-0.03-0.021-0.044-0.032c-0.019,0.008-0.038,0.017-0.057,0.025v-0.032c-0.055,0.025-0.11,0.051-0.165,0.076\r\n\t\t\t\tc-0.065-0.089-0.112-0.14-0.254-0.152v-0.007c0.049-0.015,0.115-0.056,0.191-0.038c0.034,0.015,0.068,0.03,0.102,0.045\r\n\t\t\t\tc0.079-0.006,0.346-0.155,0.375-0.216c-0.094-0.249-0.411-0.255-0.674-0.152c-0.282,0.11-0.595,0.189-0.82,0.356\r\n\t\t\t\tc-0.184,0.136-0.321,0.345-0.502,0.489c0.154-0.325,0.477-0.718,0.775-0.896c0.079-0.047,0.223-0.03,0.299-0.083\r\n\t\t\t\tc0.108-0.076,0.07-0.268,0.267-0.337c0.117-0.041,0.317-0.025,0.439-0.006c0.178,0.027,0.354-0.025,0.515-0.006\r\n\t\t\t\tc0.163,0.008,0.326,0.017,0.489,0.025c0.219-0.035,0.465-0.038,0.61-0.146c0.083-0.091,0.165-0.182,0.248-0.273\r\n\t\t\t\tc0.155-0.015,0.309-0.03,0.464-0.044c0.1-0.032,0.288-0.2,0.375-0.267v-0.013c-0.042-0.055-0.085-0.11-0.127-0.165\r\n\t\t\t\tc0.034-0.061,0.064-0.142,0.095-0.21c-0.007-0.1-0.158-0.181-0.248-0.197c-0.041-0.008-0.112,0.043-0.153,0.064\r\n\t\t\t\tc-0.013-0.019-0.025-0.038-0.038-0.057c0.008-0.044,0.031-0.064,0.051-0.095c-0.257-0.247-0.418,0.027-0.61,0.133\r\n\t\t\t\tc-0.089,0.05-0.218,0.06-0.305,0.095c0.012-0.069,0.034-0.173,0.083-0.21c0.053-0.004,0.106-0.008,0.159-0.013\r\n\t\t\t\tc0.109-0.031,0.157-0.136,0.28-0.165c0.122-0.029,0.24-0.033,0.292-0.127c-0.11-0.028-0.22-0.055-0.33-0.083\r\n\t\t\t\tc-0.106-0.044-0.191-0.133-0.324-0.153c-0.101-0.015-0.161,0.043-0.261,0.038c0.021-0.051,0.042-0.102,0.064-0.152\r\n\t\t\t\tc-0.007-0.092-0.237-0.273-0.311-0.299H12.48c-0.062-0.024-0.129-0.187-0.165-0.241c0.004-0.002,0.008-0.004,0.013-0.006\r\n\t\t\t\tc0.055-0.031,0.185,0.022,0.261,0c0.012-0.024,0.014-0.061,0.013-0.102c-0.084-0.062-0.178-0.095-0.242-0.178\r\n\t\t\t\tc0.027-0.025,0.057-0.044,0.102-0.051c-0.036-0.207-0.226-0.07-0.261-0.356c-0.028,0.002-0.055,0.004-0.083,0.006\r\n\t\t\t\tc-0.009-0.07,0.017-0.079,0.032-0.134c-0.122-0.141-0.365-0.561-0.508-0.629c-0.004-0.004-0.008-0.008-0.013-0.013\r\n\t\t\t\tc-0.021,0.042-0.042,0.085-0.064,0.127c-0.144,0.096-0.271,0.026-0.114,0.235c-0.096,0.122-0.182,0.158-0.184,0.388h-0.006\r\n\t\t\t\tc-0.051-0.051-0.057-0.152-0.153-0.159c-0.034,0.059-0.068,0.119-0.102,0.178c-0.077,0.058-0.266,0.055-0.349,0.095\r\n\t\t\t\tc-0.013-0.019-0.026-0.038-0.038-0.057c0.014-0.022,0.019-0.03,0.019-0.07c-0.149-0.221-0.275-0.116-0.483-0.044h-0.006\r\n\t\t\t\tc-0.044-0.056-0.038-0.084-0.026-0.178c0.036,0.002,0.072,0.004,0.108,0.006c0.112-0.165-0.211-0.619,0.013-0.724\r\n\t\t\t\tc0.011-0.023,0.014-0.056,0.013-0.095c-0.011-0.017-0.021-0.034-0.032-0.051c-0.039-0.011-0.088,0.06-0.178,0.038\r\n\t\t\t\tc-0.162-0.039-0.31-0.129-0.458-0.159c-0.052-0.065-0.056-0.061-0.013-0.14c-0.022-0.016-0.052-0.042-0.077-0.062\r\n\t\t\t\tc0.109-0.188,0.225-0.372,0.338-0.557c0.01,0.006,0.021,0.007,0.031,0.015c0.006,0.003,0.064-0.003,0.102,0.013\r\n\t\t\t\tc0.028,0.017,0.055,0.034,0.083,0.051c0.049,0.006,0.097,0.013,0.146,0.019c0.04,0.047,0.081,0.093,0.121,0.14\r\n\t\t\t\tc0.094,0.057,0.203,0.032,0.331,0.064c0.203,0.072,0.407,0.144,0.61,0.216c-0.067-0.217-0.212-0.375-0.381-0.489\r\n\t\t\t\tc-0.155-0.104-0.443-0.179-0.47-0.4c0.186,0,0.218,0.082,0.343,0.127c-0.009-0.049-0.017-0.097-0.026-0.146\r\n\t\t\t\tc0.188,0.145,0.277,0.375,0.604,0.349c0.069,0.109,0.145,0.196,0.273,0.248c-0.038-0.078-0.076-0.157-0.114-0.235\r\n\t\t\t\tc0.04,0.008,0.08,0.017,0.121,0.025h0.006c-0.006-0.184-0.176-0.25-0.153-0.432c0.084,0.057,0.177,0.169,0.216,0.267\r\n\t\t\t\tc0.008,0.006,0.017,0.013,0.025,0.019c0.037-0.334-0.178-0.289-0.292-0.477c0.006-0.013,0.013-0.026,0.019-0.038\r\n\t\t\t\tc0.025-0.006,0.051-0.013,0.076-0.019h0.013c-0.061-0.03-0.123-0.059-0.184-0.089c-0.069-0.041-0.11-0.13-0.191-0.153\r\n\t\t\t\tc-0.019,0.015-0.038,0.03-0.057,0.044c-0.008,0.008-0.017,0.017-0.025,0.026c-0.071-0.122-0.147-0.253-0.21-0.388\r\n\t\t\t\tc-0.053-0.009-0.106-0.017-0.159-0.025c-0.006-0.014-0.012-0.027-0.019-0.04c0.024-0.035,0.051-0.067,0.076-0.101\r\n\t\t\t\tc0.001,0.003,0.005,0.005,0.006,0.008c0.04-0.004,0.081-0.009,0.121-0.013c0.006-0.009,0.013-0.017,0.019-0.026\r\n\t\t\t\tc-0.022-0.025-0.045-0.05-0.067-0.075c0.044-0.062,0.092-0.121,0.137-0.183c0.134,0.06,0.208,0.164,0.343,0.226\r\n\t\t\t\tc0.072,0.033,0.155,0.015,0.21,0.051c-0.013,0.036-0.025,0.072-0.038,0.108c0.005,0.082,0.057,0.11,0.089,0.165\r\n\t\t\t\tc0.042-0.019,0.085-0.038,0.127-0.057c0.033,0.038,0.022,0.078,0.051,0.127c0.022,0.036,0.201,0.12,0.248,0.102h0.013\r\n\t\t\t\tc-0.015-0.064-0.03-0.127-0.045-0.191c0.011-0.076,0.021-0.153,0.032-0.229c0.004-0.002,0.008-0.004,0.013-0.006\r\n\t\t\t\tc0.036,0.05,0.089,0.124,0.159,0.14c0.035-0.09,0.113-0.136,0.222-0.152c-0.011-0.088-0.097-0.155-0.165-0.184\r\n\t\t\t\tc-0.002-0.004-0.004-0.009-0.006-0.013c0.15-0.095,0.182,0.061,0.324,0c0.025-0.019,0.058-0.097,0.089-0.127\r\n\t\t\t\tc0.002-0.006,0.004-0.013,0.006-0.019c-0.087-0.061-0.174-0.123-0.261-0.184c-0.092,0.084-0.164,0.079-0.299,0.051\r\n\t\t\t\tc0.013-0.043,0.025-0.085,0.038-0.127c-0.147-0.013-0.29,0.025-0.47,0.026v-0.095c0.061-0.015,0.123-0.03,0.184-0.044h0.013\r\n\t\t\t\tc-0.051-0.098-0.165-0.231-0.267-0.273c-0.037-0.015-0.062-0.003-0.087,0.008c0.618-0.794,1.268-1.56,1.972-2.276\r\n\t\t\t\tc0.027,0.005,0.054,0.009,0.08,0.014c0.042,0.011,0.084,0.021,0.127,0.032c0.022-0.003,0.044-0.006,0.065-0.009\r\n\t\t\t\tc0.003,0,0.005,0,0.008,0c0.003,0.007,0.006,0.014,0.01,0.022c0.02,0.004,0.051,0.001,0.079-0.002\r\n\t\t\t\tc0.003,0.003,0.005,0.006,0.008,0.008c-0.045,0.019-0.061,0.016-0.102,0.01c-0.025,0.007-0.079,0.031-0.085,0.046\r\n\t\t\t\tc-0.01,0.04,0.124,0.116,0.183,0.098c0.044-0.017,0.087-0.034,0.131-0.051c0.058-0.019,0.1-0.003,0.157-0.022\r\n\t\t\t\tc0.096-0.031,0.196-0.098,0.229-0.154c0.053-0.088-0.124-0.137-0.191-0.155c-0.063-0.017-0.099-0.061-0.143-0.099\r\n\t\t\t\tc-0.051-0.044-0.123-0.071-0.209-0.083c0.015-0.015,0.032-0.028,0.047-0.043c0.017,0.003,0.035,0.009,0.05,0.01\r\n\t\t\t\tc0.011-0.005,0.009-0.006,0.015-0.011c0.018-0.001,0.036-0.001,0.055-0.002c0.098,0.013,0.166,0.087,0.242,0.125\r\n\t\t\t\tc0.058,0.029,0.126,0.035,0.206,0.042c0.022,0.002,0.033,0.013,0.057,0.012c0.021-0.022,0.037-0.048,0.097-0.049\r\n\t\t\t\tc0.002,0.002,0.005,0.004,0.007,0.005c0.001,0.001,0.003,0.003,0.004,0.004c-0.009,0.006-0.019,0.012-0.028,0.019\r\n\t\t\t\tc0.003,0.004,0.006,0.009,0.01,0.013c0.082-0.002,0.101-0.036,0.149-0.053c0.04-0.014,0.063,0.003,0.095-0.008\r\n\t\t\t\tc-0.012,0.025-0.046,0.04-0.061,0.063c-0.015,0.023-0.012,0.045-0.025,0.07c-0.007,0.014-0.031,0.02-0.038,0.036\r\n\t\t\t\tc0.01,0.019,0.049,0.027,0.043,0.05c-0.003,0.006-0.051,0.024-0.06,0.026c0,0.019-0.02,0.038-0.005,0.057\r\n\t\t\t\tc0.01,0.008,0.024,0.008,0.042,0.007c0.003,0.002,0.006,0.003,0.009,0.005c-0.017,0.009-0.038,0.017-0.052,0.026\r\n\t\t\t\tc-0.001,0.018,0.024,0.052,0.013,0.071c-0.012,0.019-0.048,0.03-0.06,0.051c0,0.001,0,0.001,0,0.002\r\n\t\t\t\tc0.084-0.011,0.07-0.036,0.138-0.055c0.04,0.003,0.027,0.022,0.052,0.038c0.012,0.003,0.025,0.006,0.037,0.01\r\n\t\t\t\tc0.001,0.001,0.002,0.002,0.004,0.003c0,0.002,0,0.005,0,0.007c-0.016,0.04-0.137,0.028-0.188,0.046\r\n\t\t\t\tc-0.007,0.004-0.065,0.071-0.067,0.078c0.003,0.008,0.005,0.016,0.008,0.024c-0.011,0.012-0.022,0.025-0.032,0.038\r\n\t\t\t\tc-0.019,0.031-0.038,0.062-0.057,0.092c0.074-0.015,0.084-0.049,0.159-0.064c0.061,0.021,0.023,0.086-0.02,0.107\r\n\t\t\t\tc-0.029,0.014-0.071,0.006-0.102,0.011c-0.063,0.01-0.105,0.042-0.185,0.049c-0.054,0.004-0.117-0.01-0.169,0.006\r\n\t\t\t\tc-0.118,0.035-0.158,0.131-0.289,0.172c0.034,0.002,0.095,0.005,0.125,0.003c0.039-0.009,0.078-0.018,0.118-0.027\r\n\t\t\t\tc0.023,0.004,0.047,0.008,0.07,0.012c0.05,0.008,0.104,0.007,0.161,0.008c0.03-0.031,0.065-0.027,0.119-0.048\r\n\t\t\t\tc0.001-0.002,0.002-0.004,0.003-0.006c0-0.015-0.011-0.025-0.03-0.026c0,0,0-0.001-0.001-0.002\r\n\t\t\t\tc0.021-0.031,0.098-0.036,0.127-0.016c0.007,0.042-0.069,0.055-0.07,0.092c-0.002,0.059,0.172,0.07,0.202,0.108\r\n\t\t\t\tc-0.014,0.005-0.016,0.007-0.013,0.017c-0.062-0.014-0.133-0.027-0.211-0.024c-0.053,0.005-0.106,0.01-0.159,0.015\r\n\t\t\t\tc-0.058,0-0.109-0.014-0.16-0.022c-0.067-0.011-0.133-0.021-0.2-0.032c-0.003,0.001-0.007,0.001-0.01,0.002\r\n\t\t\t\tc-0.003,0.006-0.007,0.012-0.01,0.018c0,0.026,0.154,0.053,0.194,0.053c0.012,0.005,0.034,0.016,0.012,0.028\r\n\t\t\t\tc-0.041,0.017-0.145-0.037-0.22-0.018c-0.111,0.028-0.099,0.092-0.137,0.146c-0.027,0.036-0.054,0.071-0.081,0.107\r\n\t\t\t\tc-0.003,0.008,0.004,0.014,0.009,0.02c0.107,0.021,0.169-0.081,0.21-0.108c0.029-0.009,0.058-0.018,0.086-0.026\r\n\t\t\t\tc0.066-0.032,0.111-0.067,0.214-0.086c-0.003,0.016-0.019,0.023-0.018,0.04c0.034,0.031,0.073,0.012,0.142,0.008\r\n\t\t\t\tc0.019,0,0.038-0.001,0.058-0.001c0.029-0.02,0.092-0.051,0.055-0.082c0,0,0-0.001-0.001-0.002\r\n\t\t\t\tc0.073-0.008,0.116-0.013,0.164,0.002c0.001,0.002,0.001,0.004,0.002,0.006c-0.029,0.03-0.094,0.055-0.093,0.094\r\n\t\t\t\tc0.024,0.013,0.055,0.015,0.064,0.043c-0.107,0.003-0.221,0.01-0.318,0.003c-0.048-0.004-0.097-0.025-0.149-0.02\r\n\t\t\t\tc-0.05,0.005-0.095,0.041-0.126,0.057c-0.053,0.028-0.107,0.056-0.16,0.084c-0.031,0.011-0.061,0.023-0.092,0.034\r\n\t\t\t\tc-0.026,0.023-0.052,0.046-0.077,0.07c0.097,0.037,0.343-0.041,0.494-0.055c0.031-0.005,0.062-0.01,0.093-0.014\r\n\t\t\t\tc0.025,0.006,0.05,0.012,0.074,0.017c0.027-0.002,0.053-0.004,0.08-0.005c0.071,0.006,0.103,0.061,0.143,0.099\r\n\t\t\t\tc-0.048-0.007-0.096-0.013-0.143-0.019c-0.175-0.014-0.382-0.023-0.599,0.048c-0.044,0.013-0.088,0.026-0.132,0.039\r\n\t\t\t\tc0.033,0.026,0.093,0.01,0.126,0.031c0.015,0.022,0.03,0.043,0.045,0.065c0.009,0.006,0.187,0.026,0.212,0.028\r\n\t\t\t\tc0.027-0.007,0.031-0.019,0.051-0.03c0.071-0.01,0.102,0.049,0.058,0.079c-0.07,0.047-0.247,0.037-0.329,0.081\r\n\t\t\t\tc-0.002,0-0.003,0.001-0.005,0.001c0.03,0.018,0.163,0.033,0.21,0.036c-0.003,0.003-0.155,0.049-0.161,0.049\r\n\t\t\t\tc-0.041,0.003-0.061-0.021-0.109,0.004c-0.042,0.022-0.094,0.081-0.039,0.115c0.01,0.006,0.061,0.009,0.061,0.018\r\n\t\t\t\tc0.001,0.014-0.046,0.027-0.052,0.042c-0.006,0.028,0.035,0.04,0.072,0.026c0.049-0.018,0.116-0.057,0.149-0.083\r\n\t\t\t\tc0.068-0.052,0.139-0.105,0.219-0.153c0.026-0.012,0.052-0.023,0.078-0.035c0.04-0.037,0.08-0.074,0.119-0.111\r\n\t\t\t\tc0.043-0.03,0.109-0.051,0.168-0.075c0.037-0.015,0.07-0.028,0.113-0.042c0.041-0.009,0.082-0.018,0.123-0.027\r\n\t\t\t\tc0.021-0.007,0.051-0.021,0.08-0.02c0.023,0.007,0.047,0.013,0.07,0.02c-0.022,0.019-0.042,0.053-0.07,0.067\r\n\t\t\t\tc-0.075,0.036-0.22,0.019-0.315,0.037c-0.025,0.043-0.11,0.069-0.158,0.098c-0.009,0.008-0.002,0.019-0.007,0.028\r\n\t\t\t\tc-0.013,0.026-0.056,0.051-0.112,0.061c0.003,0.009,0.006,0.018,0.009,0.026c-0.158,0.057-0.262,0.142-0.375,0.215\r\n\t\t\t\tc-0.03,0.019-0.109,0.042-0.12,0.068c-0.012,0.015,0.009,0.03,0.021,0.039c0.065,0.049,0.103,0.014,0.195-0.009\r\n\t\t\t\tc-0.019,0.04-0.065,0.091-0.144,0.109c-0.001,0.005-0.002,0.009-0.003,0.014c0.052,0.027,0.141,0.031,0.175-0.022\r\n\t\t\t\tc0.113-0.018,0.086,0.118,0.06,0.151c0.003,0.005,0.006,0.006,0.012,0.013c0.055-0.019,0.148-0.049,0.186-0.075\r\n\t\t\t\tc0.004-0.001,0.008-0.002,0.012-0.002c0.002,0.001,0.004,0.001,0.006,0.002c0.001,0.002,0.001,0.004,0.002,0.006\r\n\t\t\t\tc-0.05,0.055-0.176,0.082-0.215,0.141c0.012,0.026,0.047,0.037,0.078,0.043c0.037-0.003,0.063-0.022,0.086-0.035\r\n\t\t\t\tc0.013,0.011,0.023,0.019,0.028,0.038l-0.049,0.069c-0.008,0.002-0.017,0.003-0.025,0.005c0.026,0.048,0.092,0.004,0.15,0.016\r\n\t\t\t\tc0.032,0.007,0.037,0.052,0.057,0.069c-0.179,0.032-0.096,0.172-0.138,0.254c-0.009,0.019-0.043,0.094-0.017,0.116\r\n\t\t\t\tc0.006,0.006,0.01,0.008,0.021,0.009c0.036,0,0.069-0.044,0.086-0.058c0.047-0.038,0.105-0.089,0.124-0.137\r\n\t\t\t\tc-0.001-0.015-0.003-0.029-0.004-0.044c0.001-0.019,0.025-0.055,0.047-0.067c0.006-0.002,0.011-0.003,0.017-0.005\r\n\t\t\t\tc0.034,0.014,0.057,0.047,0.075,0.077c0.002,0,0.004,0,0.006,0.001c0.011-0.016,0.023-0.032,0.034-0.048\r\n\t\t\t\tc-0.003-0.046-0.006-0.093-0.009-0.14c0.001-0.041,0.018-0.075,0.027-0.11c0.002-0.001,0.003-0.002,0.004-0.003\r\n\t\t\t\tc0.023,0.013,0.046,0.027,0.069,0.04c0.012,0.015-0.004,0.03-0.005,0.042c-0.002,0.033,0.023,0.085,0.059,0.092\r\n\t\t\t\tc0.037,0.007,0.092-0.018,0.131-0.027c0.005,0.037,0.052,0.138,0.083,0.157c0.029,0.009,0.057,0.019,0.086,0.029\r\n\t\t\t\tc0.033,0.016,0.053,0.039,0.077,0.065c0.001,0.003,0.002,0.005,0.003,0.008c-0.08,0.005-0.209-0.043-0.25-0.08\r\n\t\t\t\tc-0.027-0.024-0.028-0.082-0.07-0.091c-0.061-0.014-0.142,0.044-0.163,0.066c-0.002,0-0.003,0.001-0.005,0.001\r\n\t\t\t\tc0.02,0.01,0.078,0.031,0.064,0.059c-0.007,0.019-0.053,0.031-0.075,0.044c-0.062,0.036-0.11,0.071-0.19,0.104\r\n\t\t\t\tc-0.027,0.011-0.089,0.021-0.104,0.038c0.022,0.035,0.111,0.043,0.185,0.018c0.087-0.037,0.175-0.073,0.262-0.11\r\n\t\t\t\tc0.013-0.012,0.026-0.024,0.038-0.036c0.017,0.036,0.059,0.046,0.081,0.071c-0.024,0.009-0.063,0.011-0.098,0.022\r\n\t\t\t\tc-0.09,0.027-0.188,0.048-0.269,0.081c-0.035,0.015-0.092,0.041-0.134,0.034c0.005,0.043,0.049,0.052,0.057,0.092\r\n\t\t\t\tc0.009-0.001,0.019-0.001,0.028-0.002c0,0.002,0.001,0.003,0.001,0.005c-0.015,0.021-0.059,0.025-0.1,0.034\r\n\t\t\t\tc-0.001,0.003-0.002,0.006-0.002,0.009c0.071,0.035,0.051,0.061,0.071,0.126c0.078,0.018,0.126-0.035,0.181-0.058\r\n\t\t\t\tc0.036-0.015,0.083-0.023,0.132-0.032c-0.069,0.057-0.138,0.115-0.207,0.173c0.001,0.002,0.002,0.005,0.003,0.008\r\n\t\t\t\tc0.058,0.008,0.109-0.033,0.173-0.036c0.069-0.004,0.128,0.034,0.115,0.093c-0.012,0.053-0.138,0.066-0.08,0.133\r\n\t\t\t\tc0.048,0.01,0.079-0.016,0.127-0.014c0.002,0,0.003-0.001,0.005-0.001c-0.008,0.023-0.056,0.064-0.035,0.086\r\n\t\t\t\tc0,0.001,0.001,0.002,0.001,0.003c0.108-0.031,0.124-0.099,0.202-0.141c0.009,0.002,0.017,0.004,0.026,0.007\r\n\t\t\t\tc0.001,0.027-0.032,0.057-0.047,0.081c-0.042,0.065-0.084,0.13-0.126,0.195c-0.029,0.051,0.007,0.108,0.077,0.123\r\n\t\t\t\tc0.05,0,0.1,0,0.15,0c0.05,0.005,0.1,0.01,0.15,0.014c0.012,0.017,0.027,0.044,0.031,0.062c-0.019,0.015-0.049,0.031-0.085,0.039\r\n\t\t\t\tc0.002,0.01,0.001,0.012-0.009,0.02c0.009,0.017,0.026,0.022,0.046,0.028c0.037-0.01,0.093-0.026,0.121-0.041\r\n\t\t\t\tc0.002,0.004,0.004,0.008,0.007,0.012c-0.008,0.012-0.025,0.015-0.043,0.023c-0.061,0.029-0.098,0.044-0.103,0.095\r\n\t\t\t\tc0.112-0.018,0.147-0.073,0.235-0.096c0.023,0.072-0.093,0.095-0.116,0.152c0.011,0.023,0.039,0.022,0.053,0.041\r\n\t\t\t\tc-0.039,0.015-0.064,0.034-0.097,0.049c0.041,0.037,0.102,0.063,0.19,0.023c0.008-0.005,0.016-0.011,0.024-0.016\r\n\t\t\t\tc0.023-0.009,0.031,0.008,0.05,0c0.045-0.018,0.029-0.058,0.122-0.037c0,0.002,0.001,0.003,0.002,0.005\r\n\t\t\t\tc-0.013,0.033-0.073,0.046-0.136,0.061c0.058,0.029,0.233,0.015,0.271,0.055c0.036,0.037-0.063,0.081-0.014,0.117\r\n\t\t\t\tc0.006,0.002,0.012,0.001,0.023-0.001c0.028-0.024,0.047-0.046,0.101-0.061c0.008,0.002,0.015,0.004,0.023,0.006\r\n\t\t\t\tc0.006,0.033,0.035,0.061,0.034,0.088c-0.001,0.032-0.072,0.06-0.133,0.07c0.072,0.019,0.181,0.032,0.277,0\r\n\t\t\t\tc-0.001-0.01-0.006-0.026,0.007-0.035c0.001,0,0.002,0,0.003,0c0.025-0.008,0.049-0.015,0.074-0.023\r\n\t\t\t\tc0.018-0.009,0.018-0.024,0.048-0.029c0.001,0,0.002,0,0.003,0s0.002,0,0.002,0c0.001,0,0.002,0,0.003-0.001\r\n\t\t\t\tc0.001,0,0.002,0,0.003,0c0.032-0.001,0.061,0.018,0.104,0.004c0.031-0.018,0.062-0.035,0.094-0.053\r\n\t\t\t\tc0.044-0.016,0.092,0.019,0.092-0.034c0.064,0.001,0.128-0.025,0.114-0.063c-0.096-0.034-0.03-0.068,0.043-0.095\r\n\t\t\t\tc0.035,0.012,0.033,0.039,0.06,0.062c0.009,0.008,0.023,0.008,0.03,0.019c-0.036,0.036-0.115,0.1-0.125,0.14\r\n\t\t\t\tc0.023-0.018,0.04-0.047,0.076-0.059c0.023-0.008,0.049-0.002,0.073-0.012c0.024-0.019,0.048-0.037,0.072-0.055\r\n\t\t\t\tc0.008,0.022,0.018,0.041,0.034,0.055c0.013,0.012,0.052,0.019,0.053,0.04c0.001,0.034-0.057,0.046-0.088,0.07\r\n\t\t\t\tc-0.018,0.014-0.016,0.041-0.034,0.057c-0.035,0.025-0.07,0.05-0.105,0.075c0,0,0,0.001,0.001,0.002\r\n\t\t\t\tc0.032-0.001,0.055-0.016,0.087-0.017c0.02,0.011,0.033,0.028,0.047,0.046c0.002,0.001,0.004,0.002,0.006,0.002\r\n\t\t\t\tc0.075-0.019,0.046-0.092,0.085-0.126c0.041-0.013,0.102-0.007,0.101,0.026c-0.001,0.043-0.072,0.076-0.03,0.132\r\n\t\t\t\tc0.056,0.007,0.091-0.071,0.108-0.096c0.011-0.016,0.04-0.031,0.063-0.042c-0.021,0.042-0.041,0.083-0.062,0.125\r\n\t\t\t\tc0.006-0.001,0.012-0.002,0.017-0.003c0.053,0.045-0.139,0.11-0.08,0.183c0.052,0.007,0.11-0.041,0.178-0.037\r\n\t\t\t\tc0.043,0.002,0.057,0.042,0.094,0.052c0.006-0.001,0.012-0.002,0.017-0.003c0.057-0.029,0.042-0.124,0.109-0.141\r\n\t\t\t\tc0.08-0.02,0.159,0.014,0.22,0.018c0.039-0.001,0.078-0.003,0.117-0.004c0.03,0.001,0.076,0.02,0.11-0.001\r\n\t\t\t\tc0.013-0.009,0.015-0.023,0.02-0.035c0.036-0.085-0.093-0.067-0.067-0.122c-0.041,0.011-0.059,0.029-0.089,0.042\r\n\t\t\t\tc-0.065,0.028-0.129-0.005-0.144-0.044c0.136-0.026,0.396-0.115,0.395-0.18c-0.021,0.001-0.042,0.001-0.063,0.002\r\n\t\t\t\tc-0.034,0.009-0.058,0.035-0.104,0.036c-0.051,0.002-0.124-0.029-0.138-0.067c0.064-0.012,0.128-0.025,0.185-0.032\r\n\t\t\t\tc-0.019-0.013-0.058-0.022-0.087-0.023c-0.003-0.002-0.006-0.003-0.01-0.005c0.031-0.01,0.075-0.019,0.101-0.029\r\n\t\t\t\tc0.034-0.059-0.048-0.07,0.054-0.117c0-0.003,0-0.005,0-0.008c-0.048-0.03-0.174,0.004-0.201-0.043\r\n\t\t\t\tc-0.008-0.014,0.003-0.029,0.009-0.038c0.034-0.053,0.14-0.038,0.185-0.014c0.017-0.003,0.026-0.005,0.033-0.011\r\n\t\t\t\tc0.019-0.014,0.036-0.1,0.012-0.124c0.044-0.024,0.037-0.052,0.056-0.086c0.01-0.01,0.02-0.02,0.03-0.031\r\n\t\t\t\tc-0.041,0.006-0.092,0.025-0.124,0.016l-0.008-0.015c0.097-0.014,0.14-0.081,0.167-0.127c-0.03-0.052-0.1-0.085-0.104-0.156\r\n\t\t\t\tc-0.112-0.018-0.212-0.043-0.286-0.1c0.086-0.011,0.213,0.059,0.274,0.031c0.002-0.001,0.005-0.002,0.007-0.003\r\n\t\t\t\tc-0.001-0.003-0.002-0.005-0.003-0.008c-0.042-0.016-0.114-0.015-0.143-0.042c-0.025-0.024-0.027-0.071-0.049-0.092\r\n\t\t\t\tc0.047-0.029,0.093-0.059,0.14-0.088c0.046-0.019,0.099-0.029,0.134-0.05c-0.008-0.009-0.016-0.018-0.025-0.027\r\n\t\t\t\tc-0.005-0.014-0.011-0.028-0.016-0.042c-0.03-0.035-0.107-0.073-0.064-0.124c0-0.001-0.001-0.002-0.001-0.003\r\n\t\t\t\tc0.036,0.017,0.147,0.055,0.204,0.044c-0.001-0.003-0.002-0.005-0.003-0.008c0.006-0.008,0.012-0.008,0.012-0.019\r\n\t\t\t\tc-0.034-0.018-0.117-0.048-0.111-0.082c0.001-0.001,0.003-0.002,0.004-0.003c0.046,0.004,0.07,0.02,0.12,0.02\r\n\t\t\t\tc0.021-0.009,0.035-0.019,0.033-0.036c-0.026-0.023-0.065-0.029-0.091-0.051c0.001-0.002,0.002-0.005,0.003-0.007\r\n\t\t\t\tc0.035-0.01,0.079,0.009,0.106-0.015c0.019-0.013,0.014-0.041,0.035-0.055c0.018-0.012,0.068-0.012,0.091-0.021\r\n\t\t\t\tc0.015-0.022,0.003-0.047-0.001-0.075c-0.068,0.036-0.136,0.006-0.192,0.002c-0.019,0-0.038,0.001-0.058,0.001\r\n\t\t\t\tc-0.021-0.005-0.042-0.024-0.057-0.036c0,0,0-0.001,0-0.002c0.047,0,0.084,0.013,0.126,0.016\r\n\t\t\t\tc0.044-0.001,0.088-0.001,0.131-0.002c0.028-0.001,0.09-0.009,0.1-0.024c0.026-0.037-0.037-0.077-0.065-0.092\r\n\t\t\t\tc-0.023-0.013-0.046-0.027-0.069-0.04c-0.012-0.013-0.024-0.025-0.036-0.038c-0.018-0.01-0.063-0.003-0.087-0.007\r\n\t\t\t\tc-0.051-0.015-0.102-0.031-0.152-0.046c0.035-0.013,0.071-0.026,0.106-0.039c0.054-0.022,0.094-0.056,0.147-0.073\r\n\t\t\t\tc0.065-0.021,0.098,0.007,0.147-0.018c-0.003-0.033-0.056-0.036-0.075-0.06c0.04-0.014,0.032-0.041,0.033-0.07\r\n\t\t\t\tC18.58,15.989,18.564,16,18.55,15.989c-0.01-0.017-0.02-0.034-0.03-0.051c-0.015-0.01-0.031-0.019-0.047-0.029\r\n\t\t\t\tc-0.088-0.043-0.195,0.005-0.197-0.102c-0.016-0.007-0.033-0.014-0.049-0.021c0.207-0.079,0.173-0.008,0.319,0\r\n\t\t\t\tc0.03-0.008,0.081-0.026,0.102-0.043c0.038-0.03,0.094-0.146,0.023-0.187c-0.046-0.027-0.126-0.019-0.183-0.035l-0.005,0.001\r\n\t\t\t\tc0,0,0-0.001-0.001-0.002c0.156-0.015,0.143-0.03,0.163-0.114c0.004-0.003,0.009-0.005,0.013-0.007c0.003,0,0.005,0,0.008,0\r\n\t\t\t\tc0.029,0.023,0.044,0.049,0.091,0.053c0.011,0.002,0.008-0.002,0.02-0.004c0.001,0,0.002,0,0.003,0\r\n\t\t\t\tc-0.017-0.036-0.034-0.072-0.051-0.108c0.001-0.001,0.003-0.002,0.005-0.003c0.035,0.01,0.044,0.023,0.074,0.039\r\n\t\t\t\tc0.01,0.002,0.021,0.004,0.031,0.006c0.009,0.009,0.018,0.019,0.028,0.028c0.03,0.017,0.13,0.009,0.165-0.018\r\n\t\t\t\tc0.031-0.024,0.019-0.064,0.056-0.086c0.014-0.008,0.03-0.006,0.037,0.001c0.13-0.104-0.137-0.115-0.131-0.166\r\n\t\t\t\tc0.002-0.017,0.048-0.033,0.064-0.046c0.043-0.032,0.089-0.076,0.116-0.114c-0.009,0-0.018-0.001-0.027-0.001\r\n\t\t\t\tc-0.002-0.001-0.004-0.002-0.006-0.004c0.05-0.023,0.021-0.065,0.001-0.1c0.055,0.009,0.141,0.024,0.224-0.01\r\n\t\t\t\tc-0.032,0.049-0.038,0.104-0.065,0.156c-0.017,0.033-0.065,0.069-0.066,0.104c0.008,0.011,0.016,0.021,0.024,0.032\r\n\t\t\t\tc0.015,0.03-0.047,0.071-0.007,0.098c0.021,0.016,0.068,0.009,0.106,0.008c0.001,0,0.002,0,0.002,0\r\n\t\t\t\tc-0.004-0.037,0.007-0.078-0.028-0.11c0.083-0.005,0.124-0.07,0.134-0.107c0.002-0.001,0.003-0.002,0.004-0.003\r\n\t\t\t\tc0.022,0.02,0.027,0.067,0.068,0.07c0.003,0,0.007,0,0.01,0c0.055-0.028,0.102-0.093,0.119-0.136\r\n\t\t\t\tc-0.006-0.004-0.012-0.009-0.018-0.013c0.001,0,0.002,0,0.003,0c0.045,0.009,0.167,0.05,0.2-0.008\r\n\t\t\t\tc0.002-0.031,0.004-0.063,0.006-0.094c0.012-0.023,0.053-0.042,0.051-0.069c0.004-0.047-0.125-0.031-0.121-0.087\r\n\t\t\t\tc0.012-0.034,0.201-0.025,0.247-0.027c0.022,0.013,0.039,0.036,0.067,0.044c0.065-0.002,0.086-0.04,0.101-0.069\r\n\t\t\t\tc0.032-0.059,0.046-0.123,0.077-0.184c0.014-0.028,0.029-0.056,0.043-0.085c0.008-0.021-0.001-0.073-0.025-0.093\r\n\t\t\t\tc-0.006-0.002-0.003-0.002-0.013-0.001c0.018-0.037,0.066-0.059,0.078-0.1c-0.014-0.01-0.028-0.02-0.042-0.03\r\n\t\t\t\tc-0.026-0.028-0.037-0.094-0.024-0.122c0.013-0.028,0.059-0.047,0.07-0.077c0.014-0.038-0.033-0.077-0.004-0.117\r\n\t\t\t\tc0.02-0.027,0.112-0.04,0.135-0.086c0.002-0.016,0.004-0.032,0.005-0.048c0.016-0.031,0.132-0.113,0.06-0.153\r\n\t\t\t\tc-0.023-0.013-0.064-0.006-0.096-0.01c-0.002,0-0.003,0.001-0.005,0.001c0.016-0.009,0.034-0.011,0.039-0.024\r\n\t\t\t\tc0.017-0.065-0.146-0.086-0.173-0.118c0.009-0.012,0.018-0.025,0.027-0.037c0.001-0.001,0.003-0.002,0.004-0.003\r\n\t\t\t\tc0.031,0.059,0.15,0.093,0.239,0.092c0.045,0,0.091-0.01,0.128-0.003c0.046,0.009,0.076,0.04,0.128,0.044\r\n\t\t\t\tc0.046,0.004,0.173-0.02,0.191-0.045c-0.003-0.044-0.086-0.053-0.114-0.083c0.091,0.005,0.077-0.035,0.134,0.031\r\n\t\t\t\tc0.041,0.007,0.101-0.012,0.116-0.034c0.001-0.052-0.066-0.084-0.058-0.137c0.005-0.005,0.011-0.01,0.016-0.015\r\n\t\t\t\tc0.03,0.025,0.076,0.076,0.147,0.053c0.075-0.023,0.014-0.08,0.073-0.109c0.046-0.014,0.093-0.029,0.139-0.043\r\n\t\t\t\tc0.048-0.025,0.083-0.063,0.134-0.089c0.033-0.013,0.065-0.027,0.098-0.04c0.023-0.014,0.024-0.037,0.052-0.051\r\n\t\t\t\tc0.052-0.027,0.165-0.104,0.16-0.147c0.013,0,0.026-0.001,0.039-0.001c0.009-0.007,0.007-0.015,0.014-0.021\r\n\t\t\t\tc0.024-0.02,0.098-0.01,0.069-0.046c-0.007-0.009-0.015-0.014-0.02-0.028c0.02-0.022,0.045-0.041,0.1-0.051\r\n\t\t\t\tc-0.003-0.01-0.007-0.02-0.01-0.03c0.004-0.01,0.018-0.015,0.036-0.02c0.005-0.043-0.016-0.072-0.045-0.098\r\n\t\t\t\tc0.008-0.035,0.079-0.049,0.107-0.077c0-0.029-0.031-0.052-0.063-0.055c0.037-0.037,0.131-0.031,0.146-0.078\r\n\t\t\t\tc-0.024-0.02-0.058-0.024-0.069-0.057c0.023-0.025,0.075-0.06,0.135-0.054c0.001,0,0.002,0,0.003,0\r\n\t\t\t\tc-0.033-0.02-0.066-0.041-0.099-0.061c-0.089-0.081,0.158-0.142,0.204-0.197c-0.022,0.004-0.029,0-0.037-0.01\r\n\t\t\t\tc-0.002-0.001-0.004-0.002-0.006-0.002c0,0,0-0.001-0.001-0.002c0.032-0.002,0.069,0.005,0.1-0.008\r\n\t\t\t\tc0.004-0.004,0.008-0.007,0.012-0.011c-0.001-0.024-0.034-0.036-0.057-0.044c-0.007-0.043,0.064-0.091,0.107-0.117\r\n\t\t\t\tc0.015,0.003,0.03,0.006,0.045,0.009c-0.008-0.04-0.016-0.08-0.024-0.12c-0.038,0.015-0.036,0.038-0.061,0.057\r\n\t\t\t\tc-0.04,0.031-0.1,0.067-0.155,0.09c-0.046,0.018-0.166,0.053-0.22,0.054c-0.055,0.001-0.099-0.006-0.169,0.007\r\n\t\t\t\tc-0.086,0.017-0.192,0.071-0.27,0.055c-0.009-0.018-0.019-0.035-0.028-0.053c-0.001,0-0.002,0-0.003,0.001\r\n\t\t\t\tc-0.072,0.055-0.152,0.123-0.2,0.186c-0.031,0.04-0.06,0.078-0.102,0.114c-0.038,0.032-0.043,0.082-0.099,0.107\r\n\t\t\t\tc-0.053,0.023-0.122,0.012-0.178,0.027c-0.003,0-0.006-0.001-0.008-0.002c-0.047-0.023-0.103,0.025-0.159,0.03\r\n\t\t\t\tc-0.014-0.012-0.007-0.021,0.003-0.032c0.022-0.023,0.056-0.047,0.12-0.051c0.022-0.001,0.054-0.002,0.075-0.013\r\n\t\t\t\tc0.068-0.034,0.046-0.111,0.096-0.141c0.031-0.019,0.151-0.057,0.162-0.078c0.014-0.025-0.022-0.049-0.044-0.053\r\n\t\t\t\tc-0.04,0.008-0.037,0.022-0.06,0.033l-0.116,0.034c-0.082,0.034-0.185,0.115-0.294,0.118c-0.015-0.011-0.018-0.03-0.038-0.036\r\n\t\t\t\tc-0.051,0.004-0.131,0.08-0.148,0.105c-0.006,0.001-0.012,0.001-0.018,0.002c-0.003,0-0.005,0-0.008,0\r\n\t\t\t\tc-0.046-0.074,0.259-0.214,0.154-0.309c-0.031-0.028-0.086-0.028-0.126-0.046c0.103-0.026,0.206-0.053,0.309-0.079\r\n\t\t\t\tc0.011-0.005,0.016-0.012,0.017-0.022c0.05-0.019,0.101-0.031,0.138-0.055c0.04-0.026,0.15-0.164,0.158-0.201\r\n\t\t\t\tc0.003-0.016-0.028-0.058-0.042-0.07c-0.016-0.014-0.044-0.019-0.068-0.024c-0.11-0.022-0.111,0.021-0.198,0.048\r\n\t\t\t\tc-0.092,0.028-0.168-0.001-0.196,0.069c-0.047,0.001-0.074-0.025-0.115-0.028c-0.045-0.003-0.093,0.034-0.122,0.047\r\n\t\t\t\tc-0.001,0-0.002,0-0.003,0c0,0,0-0.001-0.001-0.002c0.016-0.039,0.101-0.058,0.108-0.097c0.007-0.042-0.147-0.072-0.199-0.067\r\n\t\t\t\tc-0.027,0.007-0.053,0.015-0.08,0.022c-0.065,0.001-0.133-0.039-0.158-0.08c0.031-0.004,0.053,0.006,0.077,0.01\r\n\t\t\t\tc0.032,0.005,0.153,0.002,0.167-0.005c0.121,0.041,0.265,0.068,0.372,0.122c0.097-0.022,0.152-0.08,0.272-0.089\r\n\t\t\t\tc0.1-0.007,0.172,0.031,0.261,0.04c0.04-0.01,0.035-0.031,0.071-0.042c0.056,0.011,0.104,0.041,0.15,0.063\r\n\t\t\t\tc0.024,0.008,0.048,0.017,0.071,0.025c0.016,0.019,0.031,0.037,0.047,0.056c0.021,0.005,0.032-0.001,0.046,0.011\r\n\t\t\t\tc0.015,0.022,0.03,0.044,0.045,0.066c0.042,0.038,0.131,0.059,0.2,0.07c0.101,0.016,0.192,0.009,0.27-0.045\r\n\t\t\t\tc0.017-0.012,0.034-0.02,0.038-0.036c0.013-0.051-0.114-0.086-0.107-0.166c0.001-0.001,0.003-0.002,0.004-0.003\r\n\t\t\t\tc0.014,0.037,0.178,0.137,0.22,0.148c0.022,0.005,0.059,0.007,0.087-0.007c0.02-0.01,0.031-0.026,0.039-0.041\r\n\t\t\t\tc0.037-0.061-0.073-0.08-0.109-0.114c0.003-0.006,0.006-0.013,0.01-0.019c-0.026,0-0.033-0.018-0.043-0.033\r\n\t\t\t\tc-0.013-0.002-0.028,0-0.049,0.004c-0.004-0.04,0.038-0.112-0.07-0.076c0.009-0.016,0.01-0.032,0.012-0.052\r\n\t\t\t\tc-0.015,0.002-0.03,0.005-0.045,0.007c-0.002,0-0.004,0-0.005-0.001c-0.033-0.116-0.015-0.165-0.164-0.203\r\n\t\t\t\tc-0.003,0-0.005,0-0.008,0c-0.019,0.045-0.027,0.105-0.038,0.15c-0.001,0.001-0.003,0.002-0.004,0.003\r\n\t\t\t\tc-0.006-0.003-0.013-0.007-0.019-0.01c-0.004-0.025,0.002-0.056-0.014-0.084c-0.022-0.037-0.043-0.094-0.038-0.131\r\n\t\t\t\tc-0.051,0.012-0.061,0.058-0.095,0.08c-0.009-0.002-0.019-0.003-0.028-0.005c0-0.058-0.017-0.052-0.091-0.052\r\n\t\t\t\tc-0.013-0.02-0.001-0.032-0.007-0.054c-0.005-0.001-0.01-0.003-0.014-0.004c-0.012,0.001-0.02,0.003-0.029,0.007\r\n\t\t\t\tc-0.007-0.003-0.006-0.001-0.01-0.008c-0.053,0.01-0.081,0.001-0.126,0.003c-0.151,0.005-0.169,0.037-0.238-0.051\r\n\t\t\t\tc-0.041-0.009-0.201-0.016-0.26-0.004c-0.013,0.035-0.019,0.069-0.038,0.102c-0.018,0.027-0.037,0.054-0.055,0.08\r\n\t\t\t\tc-0.003,0.002-0.006,0.005-0.008,0.007c-0.027-0.016-0.116-0.06-0.103-0.103c0.009-0.015,0.038-0.018,0.056-0.029\r\n\t\t\t\tc0.021-0.013,0.084-0.093,0.073-0.115c-0.015-0.03-0.082-0.03-0.118-0.039c-0.039-0.01-0.067-0.043-0.116-0.041\r\n\t\t\t\tc-0.046,0.002-0.061,0.033-0.074,0.049c-0.018,0.016-0.035,0.032-0.053,0.048c-0.021,0.029-0.031,0.063-0.043,0.095\r\n\t\t\t\tc-0.007,0.002-0.013,0.004-0.019,0.005c-0.015-0.051-0.072-0.083-0.151-0.068c0,0,0-0.001-0.001-0.001\r\n\t\t\t\tc0.024-0.031,0.103-0.012,0.139-0.034c0.06-0.036,0.077-0.119,0.142-0.155c0.004-0.005,0.009-0.01,0.013-0.016\r\n\t\t\t\tc-0.078-0.016-0.155-0.032-0.243-0.04c-0.032,0.023-0.05,0.013-0.09,0.032c-0.021,0.015-0.043,0.03-0.064,0.045\r\n\t\t\t\tc-0.072,0.047-0.113,0.067-0.106,0.143c-0.023-0.003-0.035-0.007-0.05-0.017c-0.124-0.083,0.099-0.103,0.101-0.159\r\n\t\t\t\tc0.001-0.031-0.064-0.029-0.086-0.038c-0.002,0-0.004,0-0.005-0.001c0,0,0-0.001-0.001-0.002c0.065-0.02,0.17-0.047,0.208-0.018\r\n\t\t\t\tc0.055-0.015,0.091-0.086,0.101-0.119c0.002-0.012,0.004-0.024,0.007-0.036c0.019-0.029,0.096-0.064,0.136-0.084\r\n\t\t\t\tc0.001-0.002,0.002-0.004,0.003-0.005c-0.051-0.005-0.107-0.018-0.136-0.046c0.06,0.007,0.119,0.006,0.189,0.005\r\n\t\t\t\tc-0.007-0.017-0.02-0.023-0.032-0.034c-0.018-0.066,0.148-0.105,0.248-0.112c0.019-0.003,0.038-0.006,0.058-0.01\r\n\t\t\t\tc0.014,0.001,0.034,0.006,0.062-0.003c0.018-0.006,0.028-0.016,0.039-0.024c0.005,0.031-0.025,0.045-0.053,0.063\r\n\t\t\t\tc-0.039,0.004-0.2-0.007-0.232,0.033c0,0.003,0,0.005,0,0.008c0.038,0.019,0.086,0.056,0.135,0.064\r\n\t\t\t\tc0.063,0.01,0.146-0.01,0.22-0.012c0.032,0,0.063,0,0.095,0c0.05-0.056,0.09-0.128,0.108-0.194\r\n\t\t\t\tc0.015-0.005,0.03-0.001,0.047-0.002c0.036-0.002,0.135-0.04,0.152-0.052c0.047-0.035-0.09-0.189-0.128-0.197\r\n\t\t\t\tc-0.032-0.007-0.07-0.002-0.107-0.004c-0.059-0.004-0.24-0.04-0.269,0.031c0.007,0.018,0.019,0.023,0.032,0.034\r\n\t\t\t\tc0.001,0.002,0.001,0.003,0.002,0.005C21.061,9.85,21.006,9.85,20.952,9.85c-0.002,0-0.003,0.001-0.005,0.001\r\n\t\t\t\tc-0.006-0.034,0.037-0.085,0.002-0.115c-0.013-0.007-0.061,0.002-0.077,0c-0.003-0.017,0.025-0.026,0.044-0.033\r\n\t\t\t\tc0.024-0.05-0.082-0.091-0.112-0.123c0,0,0-0.001-0.001-0.002c0.049,0.003,0.087,0.023,0.143,0.019\r\n\t\t\t\tc0.08-0.005,0.117-0.075,0.219-0.082c0.053-0.003,0.078,0.028,0.129,0.024c0.015-0.006,0.029-0.012,0.044-0.018\r\n\t\t\t\tc0.076-0.037,0.128-0.084,0.117-0.15c-0.006-0.035-0.112-0.077-0.174-0.057c-0.075,0.034-0.15,0.068-0.225,0.101\r\n\t\t\t\tc-0.023,0.015-0.039,0.033-0.066,0.048c0.001-0.026,0.017-0.077,0-0.103c-0.026-0.042-0.069-0.068-0.087-0.113\r\n\t\t\t\tc-0.144,0.026-0.093,0.074-0.143,0.127c-0.101,0.032-0.174-0.025-0.264-0.018c0.036-0.037,0.154-0.006,0.199-0.003\r\n\t\t\t\tc0.004-0.001,0.008-0.001,0.012-0.002c0.006-0.013,0.012-0.027,0.018-0.04c0.021-0.034,0.052-0.065,0.088-0.093\r\n\t\t\t\tc-0.001-0.001-0.003-0.003-0.004-0.004c-0.015-0.008-0.041-0.006-0.061-0.008c-0.037-0.005-0.076-0.012-0.118-0.013\r\n\t\t\t\tc-0.078,0-0.163,0.02-0.217-0.003c0.044-0.008,0.061-0.02,0.074-0.039c-0.012-0.023-0.076-0.028-0.104-0.037\r\n\t\t\t\tc-0.001-0.002-0.001-0.004-0.002-0.006c0.057-0.01,0.172,0.001,0.217,0.01c0.051,0.011,0.098,0.041,0.167,0.033\r\n\t\t\t\tc0.034-0.018,0.074-0.065,0.132-0.048c0.029,0.008,0.042,0.034,0.072,0.043c0.067-0.007,0.093-0.07,0.062-0.117\r\n\t\t\t\tc-0.04-0.061-0.125-0.079-0.182-0.12c-0.022-0.016-0.009-0.05-0.031-0.062c-0.042-0.024-0.124,0-0.196,0.004\r\n\t\t\t\tc-0.024-0.002-0.048-0.003-0.073-0.005c-0.041,0.002-0.072,0.028-0.098,0.039c-0.039,0.016-0.082,0.03-0.131,0.042\r\n\t\t\t\tc0-0.001-0.001-0.002-0.001-0.003c0.069-0.022,0.084-0.061,0.131-0.091c0.041-0.027,0.109-0.044,0.145-0.073\r\n\t\t\t\tc0.016-0.013,0.031-0.04,0.007-0.058c-0.01-0.007-0.041-0.008-0.068-0.013c0.057-0.028,0.115-0.055,0.172-0.083\r\n\t\t\t\tc0.024,0.008,0.048,0.016,0.072,0.024c0.029,0.02,0.058,0.041,0.086,0.062c0.003,0.001,0.006,0.001,0.008,0.002\r\n\t\t\t\tc0.003-0.003,0.005-0.005,0.008-0.008c-0.002-0.029-0.048-0.05-0.072-0.066c-0.018-0.012-0.036-0.025-0.053-0.037\r\n\t\t\t\tC24.16,6.946,27.965,6,32,6c4.818,0,9.316,1.335,13.186,3.62c-0.129,0.065-0.246,0.164-0.324,0.268\r\n\t\t\t\tc-0.047-0.001-0.131-0.022-0.152-0.019c-0.081,0.013-0.199,0.161-0.229,0.229c-0.014,0.013-0.025,0.025-0.039,0.038\r\n\t\t\t\tc0.039,0.028,0.076,0.062,0.103,0.102c-0.099,0.069-0.239,0.035-0.292,0.153c-0.004,0.004-0.008,0.008-0.014,0.013\r\n\t\t\t\tc0.033,0.03,0.064,0.059,0.096,0.089c-0.004,0.027-0.008,0.055-0.014,0.083c-0.383-0.001-0.321,0.111-0.547,0.216v0.006\r\n\t\t\t\tc0.209,0.251,0.238,0.04,0.521,0.089c0.13,0.023,0.227,0.096,0.344,0.121c0.108-0.061,0.16-0.161,0.248-0.241\r\n\t\t\t\tc-0.003-0.025-0.005-0.051-0.007-0.076c-0.034-0.021-0.067-0.042-0.103-0.064c-0.004-0.006-0.008-0.013-0.012-0.019\r\n\t\t\t\tc0.022-0.023,0.047-0.047,0.069-0.07c0.074,0.003,0.112,0.025,0.159,0.051c0.055-0.058,0.136-0.114,0.197-0.165v-0.013\r\n\t\t\t\tc-0.021-0.017-0.043-0.034-0.064-0.051c-0.014-0.017-0.002-0.045,0.006-0.076c0.016-0.013,0.03-0.026,0.044-0.038\r\n\t\t\t\tc0.107,0.001,0.271,0.047,0.356,0.006c0.035-0.028,0.072-0.055,0.107-0.083c0.021-0.023,0.043-0.047,0.063-0.07\r\n\t\t\t\tc-0.028-0.015-0.056-0.03-0.083-0.045c0.009-0.043,0.048-0.077,0.1-0.106c0.829,0.518,1.631,1.072,2.395,1.677\r\n\t\t\t\tc-0.006,0.025-0.012,0.05-0.016,0.075c-0.05,0.083-0.098,0.165-0.146,0.248c-0.135,0.174-0.528,0.182-0.465,0.489\r\n\t\t\t\tc0.054,0.004,0.107,0.008,0.16,0.013c0.135,0.378-0.104,0.29-0.146,0.515c0.07,0.108,0.28,0.064,0.369,0.153\r\n\t\t\t\tc0.029,0.036-0.002,0.112,0.013,0.165c0.035,0.124,0.136,0.168,0.286,0.146c-0.018,0.094-0.113,0.264-0.184,0.311\r\n\t\t\t\tc-0.016,0.013-0.038,0.014-0.07,0.013c-0.378-0.351-0.896-0.546-1.468-0.705c-0.123-0.034-0.46-0.13-0.636-0.089\r\n\t\t\t\tc-0.08,0.019-0.115,0.1-0.184,0.134c-0.002,0.004-0.004,0.008-0.006,0.013c0.061,0.078,0.123,0.157,0.184,0.235\r\n\t\t\t\tc-0.01,0.223-0.119,0.179-0.291,0.203c-0.021,0.033-0.037,0.114-0.052,0.146c-0.095,0.048-0.19-0.018-0.216-0.089\r\n\t\t\t\tc0.029-0.038,0.059-0.076,0.089-0.115c-0.178-0.082-0.286-0.093-0.45,0.032c-0.043,0.034-0.086,0.068-0.128,0.102\r\n\t\t\t\tc-0.1,0.03-0.176-0.034-0.235-0.051c-0.104-0.03-0.279-0.002-0.361,0.032c-0.092,0.037-0.088,0.172-0.172,0.222\r\n\t\t\t\tc-0.028-0.015-0.037-0.02-0.045-0.057c-0.182,0.003-0.223,0.07-0.375,0.019c0-0.05,0.008-0.062,0.025-0.089\r\n\t\t\t\tc0.038-0.006,0.076-0.013,0.114-0.019c0-0.097,0.017-0.161,0.026-0.235c-0.381-0.002-0.168,0.2-0.42,0.248\r\n\t\t\t\tc-0.006-0.002-0.012-0.004-0.019-0.006c-0.011-0.034-0.021-0.068-0.032-0.102c-0.133,0.055-0.267,0.11-0.399,0.165\r\n\t\t\t\tc-0.226,0.09-0.453,0.187-0.661,0.273c-0.051,0.015-0.102,0.03-0.153,0.045c-0.087,0.07-0.049,0.285-0.14,0.349\r\n\t\t\t\tc-0.057,0.011-0.115,0.021-0.172,0.032c-0.342,0.069-0.428-0.091-0.629-0.248c0.041-0.201,0.281-0.195,0.508-0.203\r\n\t\t\t\tc-0.055-0.114-0.169-0.349-0.305-0.375c-0.098,0.009-0.195,0.017-0.293,0.025c-0.082-0.018-0.133-0.053-0.215-0.032\r\n\t\t\t\tc-0.018,0.148,0.158,0.164,0.12,0.337c-0.051,0.081-0.102,0.161-0.151,0.241c-0.004,0.004-0.01,0.009-0.014,0.013\r\n\t\t\t\tc0.034,0.051,0.079,0.078,0.153,0.089c0.079,0.238,0.028,0.214-0.032,0.407c-0.006,0.036-0.013,0.072-0.02,0.108v0.013\r\n\t\t\t\tc-0.165-0.008-0.334-0.211-0.565-0.184c-0.124,0.261-0.491,0.237-0.661,0.445c0.006,0.173,0.26,0.294,0.141,0.47\r\n\t\t\t\tc-0.034-0.011-0.068-0.021-0.103-0.032c-0.071,0.008-0.14,0.046-0.235,0.019c-0.217-0.062-0.433-0.161-0.604-0.267\r\n\t\t\t\tc-0.104,0-0.1,0.078-0.152,0.127c0.002,0.063,0.125,0.201,0.19,0.229c0.058,0.024,0.138-0.001,0.19,0.006\r\n\t\t\t\tc0.15,0.265-0.1,0.247-0.26,0.21c-0.072-0.016-0.158,0.001-0.211-0.032c-0.029-0.021-0.053-0.077-0.064-0.114\r\n\t\t\t\tc-0.075-0.038-0.206-0.014-0.291-0.057c-0.043-0.022-0.209-0.444-0.217-0.527c0.123-0.036,0.164-0.19,0.07-0.292\r\n\t\t\t\tc-0.066-0.072-0.223-0.087-0.305-0.14c-0.137-0.088-0.245-0.222-0.362-0.33c0.222-0.112,0.253,0.089,0.343,0.14\r\n\t\t\t\tc0.07,0.011,0.141,0.021,0.211,0.032c0.5,0.15,1.305,0.524,1.83,0.127c0.111-0.084,0.24-0.161,0.235-0.343\r\n\t\t\t\tc-0.069-0.069-0.081-0.106-0.076-0.242c-0.091-0.072-0.211-0.158-0.331-0.197c-0.127-0.038-0.254-0.076-0.381-0.115\r\n\t\t\t\tc-0.121-0.102-0.242-0.203-0.361-0.305c-0.068-0.021-0.137-0.042-0.203-0.063c-0.108-0.038-0.217-0.076-0.324-0.114\r\n\t\t\t\tc-0.18-0.013-0.36-0.025-0.54-0.038c-0.03,0.023-0.06,0.047-0.089,0.07c-0.004-0.046-0.008-0.093-0.014-0.14\r\n\t\t\t\tc-0.183-0.035-0.345-0.068-0.35-0.28c-0.061,0.036-0.123,0.072-0.184,0.108c-0.047,0.019-0.104,0.021-0.141,0.044\r\n\t\t\t\tc-0.113-0.074-0.219-0.036-0.369-0.025c-0.065-0.103-0.205-0.127-0.279-0.222c0.236,0.002,0.468,0.029,0.591-0.095\r\n\t\t\t\tc-0.002-0.023-0.005-0.047-0.007-0.07c-0.027-0.017-0.055-0.034-0.082-0.051c-0.065-0.023-0.141,0.003-0.191-0.019\r\n\t\t\t\tc-0.105-0.045-0.177-0.123-0.299-0.159c-0.07,0.062-0.137,0.151-0.152,0.267c-0.039-0.008-0.08-0.017-0.121-0.025\r\n\t\t\t\tc0.041-0.129,0.059-0.18,0.127-0.279c-0.05-0.066-0.162-0.027-0.242-0.013c-0.045,0.144-0.116,0.243-0.248,0.305\r\n\t\t\t\tc-0.004-0.093-0.008-0.187-0.012-0.28c-0.14,0.095-0.322,0.263-0.389,0.426c-0.018-0.002-0.034-0.004-0.051-0.006\r\n\t\t\t\tc-0.001-0.246,0.115-0.269,0.216-0.4c-0.28-0.021-0.326,0.061-0.47,0.203c-0.031,0.023-0.079-0.012-0.121,0.013\r\n\t\t\t\tc-0.073,0.044-0.145,0.185-0.172,0.273c-0.188-0.096-0.28-0.273-0.381,0.083c-0.043-0.036-0.086-0.072-0.127-0.108\r\n\t\t\t\tc-0.006-0.002-0.014-0.004-0.02-0.006c-0.048,0.076-0.089,0.121-0.203,0.134c-0.027,0.103-0.078,0.174-0.152,0.229\r\n\t\t\t\tc0.014-0.069,0.026-0.136,0.051-0.191c-0.004-0.011-0.008-0.021-0.014-0.032c-0.006-0.004-0.013-0.008-0.019-0.013\r\n\t\t\t\tc-0.084,0.046-0.147,0.229-0.197,0.311c-0.135-0.012-0.165-0.08-0.299-0.032c-0.024-0.021-0.051-0.042-0.076-0.063\r\n\t\t\t\tc-0.061,0.246-0.091,0.112-0.216,0.203c-0.066,0.048-0.033,0.116-0.146,0.153c-0.019,0.021-0.037,0.042-0.057,0.063\r\n\t\t\t\tc0.026,0.021,0.051,0.042,0.076,0.064v0.006c-0.036,0.051-0.105,0.052-0.172,0.038c0.011,0.047,0.021,0.093,0.031,0.14\r\n\t\t\t\tc-0.019,0.028-0.037,0.055-0.057,0.083c-0.006,0.004-0.013,0.009-0.019,0.013c-0.046-0.028-0.063-0.041-0.089-0.089h-0.006\r\n\t\t\t\tc-0.065,0.006-0.07,0.078-0.133,0.102c-0.01,0.027,0.014,0.055,0.043,0.076v0.038c-0.054,0.016-0.076,0.025-0.102,0.07\r\n\t\t\t\tc-0.041-0.01-0.074-0.026-0.127-0.032c-0.044,0.035-0.058,0.078-0.121,0.095c0.011,0.038,0.019,0.052,0.057,0.064\r\n\t\t\t\tc-0.034,0.075-0.199,0.095-0.273,0.134c-0.006,0.004-0.013,0.008-0.019,0.013c0.021,0.036,0.042,0.072,0.064,0.108v0.006\r\n\t\t\t\tc-0.065,0.004-0.112,0.01-0.178,0.006c-0.021,0.034-0.042,0.068-0.063,0.102c0.042,0.051,0.093,0.07,0.127,0.134v0.006\r\n\t\t\t\tc-0.042,0.006-0.085,0.013-0.127,0.019c-0.006,0.042-0.013,0.085-0.019,0.127c-0.163-0.038-0.167,0.098-0.229,0.21\r\n\t\t\t\tc0.021,0.006,0.042,0.013,0.064,0.019c0.002,0.044,0.004,0.089,0.006,0.133c-0.05,0.003-0.081,0.005-0.121-0.006\r\n\t\t\t\tc-0.075,0.075-0.123,0.164-0.203,0.235c0.006,0.019,0.013,0.038,0.019,0.057v0.006c-0.063,0.046-0.087,0.015-0.159,0\r\n\t\t\t\tc-0.094,0.045-0.266,0.185-0.311,0.28c-0.006,0.034-0.013,0.068-0.019,0.102c-0.039,0.065-0.125,0.084-0.159,0.165\r\n\t\t\t\tc-0.006,0.004-0.013,0.009-0.019,0.013c-0.019-0.013-0.038-0.026-0.057-0.038c-0.08-0.054-0.225,0.137-0.222,0.242\r\n\t\t\t\tc-0.085-0.036-0.205-0.032-0.337-0.032l-0.032,0.032c0.017,0.072,0.086,0.103,0.159,0.114c-0.063,0.075-0.159,0.014-0.267,0.006\r\n\t\t\t\tc-0.021,0.084-0.011,0.111-0.089,0.14c-0.1-0.04-0.144,0.042-0.248,0.076c-0.002,0.017-0.004,0.034-0.006,0.051\r\n\t\t\t\tc0.025,0.034,0.072,0.048,0.108,0.07v0.025c-0.066,0.004-0.131,0.008-0.197,0.013c-0.025,0.075-0.001,0.151-0.038,0.21\r\n\t\t\t\tc0.034,0.046,0.043,0.085,0.102,0.108c0.002,0.004,0.004,0.008,0.006,0.013c-0.056,0.046-0.091,0.058-0.114,0.14\r\n\t\t\t\tc0.004,0.011,0.008,0.021,0.013,0.032c0.041,0.028,0.07,0.034,0.121,0.013c0.011,0.013,0.021,0.025,0.032,0.038\r\n\t\t\t\tc-0.041,0.034-0.089,0.076-0.127,0.114c0.053,0.078,0.112,0.033,0.222,0.045c-0.007,0.055-0.021,0.092-0.07,0.108\r\n\t\t\t\tc-0.008,0.011-0.017,0.021-0.025,0.032c0.015,0.013,0.03,0.025,0.044,0.038c0.06-0.001,0.086-0.014,0.127-0.032\r\n\t\t\t\tc-0.027,0.037-0.064,0.055-0.127,0.057c0.001,0.016-0.001,0.007,0.006,0.025c-0.032,0.014-0.05,0.004-0.083-0.013v0.038h-0.006\r\n\t\t\t\tc-0.004-0.017-0.008-0.034-0.013-0.051c-0.002-0.004-0.004-0.008-0.006-0.013c-0.025,0.03-0.051,0.059-0.076,0.089\r\n\t\t\t\tc0.008,0.03,0.017,0.059,0.025,0.089c0.011,0.006,0.021,0.013,0.032,0.019c0.002-0.011,0.004-0.021,0.006-0.032\r\n\t\t\t\tc0.006,0.011,0.013,0.021,0.019,0.032c0.051-0.002,0.06-0.014,0.095-0.026c-0.002-0.025-0.004-0.051-0.006-0.076\r\n\t\t\t\tc0.025,0.019,0.035,0.027,0.038,0.07h0.006c0.028-0.025,0.055-0.051,0.083-0.076c-0.018,0.039-0.04,0.052-0.064,0.083\r\n\t\t\t\tc0.032,0.02,0.042,0.024,0.089,0.019v0.007c-0.038,0.021-0.076,0.042-0.114,0.063c-0.009,0.028-0.004,0.013,0.006,0.045\r\n\t\t\t\tc0.046,0.033,0.031,0.018,0.102,0.013v0.006c-0.036,0.006-0.042,0.012-0.057,0.038c0.006,0.008,0.013,0.017,0.019,0.025\r\n\t\t\t\tc-0.036-0.022-0.065-0.056-0.089-0.019c-0.006,0.004-0.013,0.008-0.019,0.013c-0.002-0.019-0.004-0.038-0.006-0.057\r\n\t\t\t\tc-0.017-0.002-0.034-0.004-0.051-0.006c0.015,0.05-0.003,0.072-0.025,0.114c0.019,0.038,0.038,0.076,0.057,0.114\r\n\t\t\t\tc0.123,0.036,0.19,0.086,0.305,0.115c-0.013,0.013-0.026,0.025-0.038,0.038c0.013,0.008,0.025,0.017,0.038,0.025\r\n\t\t\t\tc0.011-0.013,0.021-0.025,0.032-0.038c0.03,0.015,0.042,0.019,0.051,0.057c0.07,0.017,0.282-0.01,0.349-0.044\r\n\t\t\t\tc0.108-0.107,0.244-0.176,0.356-0.28c0.039-0.036,0.039-0.072,0.095-0.095c0.038-0.02,0.087,0.023,0.14-0.013\r\n\t\t\t\tc0.062-0.046,0.08-0.127,0.083-0.222c0.015-0.011,0.03-0.021,0.044-0.032c0.012,0.047,0.011,0.056-0.013,0.089\r\n\t\t\t\tc0.053,0.074,0.056,0.142,0.165,0.095c0.004,0.002,0.008,0.004,0.013,0.006c0.006,0.051-0.02,0.065-0.032,0.114\r\n\t\t\t\tc0.052,0.027,0.057,0.174,0.057,0.248c0.019-0.002,0.038-0.004,0.057-0.007c0.002,0.017,0.004,0.034,0.006,0.051\r\n\t\t\t\tc0.048-0.012,0.047-0.013,0.089,0c0.008,0.048-0.026,0.118-0.044,0.165c0.047,0.06,0.08,0.086,0.076,0.203\r\n\t\t\t\tc0.017,0.002,0.034,0.004,0.051,0.006c0.049,0.164,0.149,0.23,0.242,0.324c-0.004,0.017-0.009,0.034-0.013,0.051\r\n\t\t\t\tc-0.019-0.002-0.038-0.004-0.057-0.006c0.002,0.017,0.004,0.034,0.006,0.051c-0.021,0.011-0.042,0.021-0.064,0.032\r\n\t\t\t\tc0.042,0.083,0.088,0.169,0.159,0.222c-0.016,0.061-0.039,0.075-0.051,0.134c0.151,0.032,0.257-0.029,0.381,0\r\n\t\t\t\tc0.011-0.013,0.021-0.025,0.032-0.038c0.037-0.032,0.005-0.05-0.019-0.089c0.023-0.06,0.036-0.108,0.095-0.133\r\n\t\t\t\tc0.019-0.011,0.012-0.005,0.038,0.006c0.004-0.017,0.009-0.034,0.013-0.051c0.11,0.001,0.175-0.008,0.253-0.025\r\n\t\t\t\tc0.021,0.015,0.043,0.03,0.064,0.045c0.004,0.004,0.008,0.008,0.014,0.013c0.059-0.108,0.119-0.216,0.178-0.324\r\n\t\t\t\tc0.002-0.04,0.004-0.08,0.006-0.121c0.011-0.057,0.039-0.09,0.057-0.133c0.016-0.027-0.011-0.058,0.006-0.102\r\n\t\t\t\tc-0.015-0.006-0.029-0.013-0.045-0.019V18.53h0.064c0.095-0.071-0.057-0.253-0.07-0.318c0.059-0.002,0.119-0.004,0.178-0.006\r\n\t\t\t\tc0.002-0.013,0.004-0.025,0.006-0.038c0.177,0.031,0.106-0.133,0.191-0.165v0.095c0.002,0.002,0.004,0.004,0.006,0.006\r\n\t\t\t\tc0.02-0.002,0.039-0.004,0.058-0.006c0.014-0.068,0.052-0.091,0.114-0.108c-0.004-0.021-0.008-0.042-0.014-0.064\r\n\t\t\t\tc0.027-0.002,0.055-0.004,0.083-0.006c-0.002-0.011-0.004-0.021-0.006-0.032c-0.002-0.004-0.004-0.008-0.006-0.013h-0.032v0.032\r\n\t\t\t\tc-0.102-0.041-0.174,0.062-0.279,0.045c-0.111-0.019-0.164-0.137-0.3-0.095H32.8c0.009-0.015,0.017-0.03,0.025-0.045\r\n\t\t\t\tc0.036-0.04,0.304,0.049,0.368,0.083c0.082,0.043,0.287-0.119,0.312-0.153h0.058c-0.002-0.095-0.049-0.099-0.07-0.178\r\n\t\t\t\tc-0.126-0.018-0.206-0.104-0.248-0.203c-0.025,0.002-0.051,0.004-0.076,0.006c-0.038-0.015-0.062-0.043-0.133-0.045\r\n\t\t\t\tc-0.002-0.004-0.004-0.008-0.006-0.013c0.046-0.039-0.053-0.296-0.025-0.4c0.023-0.006,0.047-0.013,0.07-0.019\r\n\t\t\t\tc0.055-0.173,0-0.204-0.02-0.356c0.038,0.013,0.076,0.025,0.114,0.038c0.021-0.028,0.042-0.055,0.063-0.083\r\n\t\t\t\tc0.017-0.027-0.004-0.073-0.012-0.115h0.127c0.079-0.112,0.116-0.111,0.221-0.191c0.051-0.038,0.051-0.096,0.115-0.127\r\n\t\t\t\tc0.022,0.015,0.047,0.03,0.069,0.044c0.099-0.068,0.199-0.136,0.299-0.203c0.071-0.087,0.077-0.196,0.185-0.248\r\n\t\t\t\tc0.004-0.006,0.008-0.013,0.013-0.019c-0.034-0.052-0.095-0.08-0.121-0.133c-0.006-0.006-0.013-0.013-0.019-0.019\r\n\t\t\t\tc0.053-0.023,0.127-0.081,0.151-0.133c0.023-0.036-0.022-0.072-0.044-0.102c0.077-0.104,0.108-0.037,0.184-0.095\r\n\t\t\t\tc0.092-0.069,0.095-0.193,0.211-0.248c0.051,0.034,0.102,0.068,0.152,0.102c0.022,0.014,0.223-0.034,0.305-0.032\r\n\t\t\t\tc0.078,0.06,0.117,0.113,0.262,0.115c0.011,0.019,0.021,0.038,0.031,0.057c0.015,0.037-0.006,0.12-0.019,0.159\r\n\t\t\t\tc0.017,0.019,0.034,0.038,0.052,0.057c0.013,0.018,0.008,0.038,0.006,0.076c-0.041-0.002-0.082-0.004-0.121-0.006\r\n\t\t\t\tc-0.098,0.028-0.543,0.488-0.61,0.585h-0.032c-0.013-0.019-0.025-0.038-0.037-0.057v-0.013c-0.091,0.094-0.017,0.207-0.16,0.28\r\n\t\t\t\tc-0.059-0.024-0.1-0.032-0.158-0.013c0.004,0.027,0.008,0.055,0.013,0.083c-0.073,0.067-0.121,0.102-0.153,0.216\r\n\t\t\t\tc0.026,0.023,0.063,0.043,0.09,0.064c0,0.094-0.021,0.143-0.032,0.216c0.034,0.053,0.067,0.106,0.102,0.159\r\n\t\t\t\tc-0.008,0.04-0.017,0.08-0.024,0.121c-0.035,0.188-0.012,0.31,0.127,0.381c0.058,0.03,0.07,0.065,0.146,0.038l-0.006,0.076\r\n\t\t\t\tc0.054-0.018,0.094-0.039,0.172-0.038c-0.011,0.023-0.021,0.047-0.032,0.07c0.021,0.042,0.039,0.071,0.084,0.089\r\n\t\t\t\tc0.066,0.051,0.192-0.016,0.234-0.038v0.026c0.064-0.014,0.081-0.027,0.133,0c0.043-0.058,0.077-0.069,0.153-0.095\r\n\t\t\t\tc0.004,0.008,0.008,0.017,0.013,0.025c0.051-0.028,0.141-0.037,0.165-0.095c0.027,0.019,0.056,0.038,0.083,0.057h0.006\r\n\t\t\t\tc0.018-0.083,0.1-0.04,0.152-0.083c0.027-0.017,0.04-0.057,0.045-0.095v0.057c0.036,0.013,0.072,0.025,0.107,0.038\r\n\t\t\t\tc0.026-0.027,0.035-0.043,0.084-0.051c0.021,0.013,0.041,0.025,0.063,0.038c0.06-0.057,0.198-0.098,0.3-0.108\r\n\t\t\t\tc0.008-0.015,0.016-0.03,0.024-0.045c0.028-0.003-0.011,0.079-0.019,0.114c0.147,0.215,0.344-0.041,0.488,0.229\r\n\t\t\t\tc-0.015,0.011-0.029,0.021-0.045,0.032c-0.094-0.003-0.141-0.044-0.222-0.07c-0.076,0.006-0.101,0.066-0.14,0.108\r\n\t\t\t\tc-0.054-0.012-0.054-0.037-0.103-0.025c-0.017,0.027-0.015,0.015-0.006,0.045c-0.031,0.029-0.052,0.003-0.076-0.025\r\n\t\t\t\tc-0.013,0.002-0.024,0.004-0.038,0.006c-0.004,0.015-0.008,0.03-0.013,0.045c0.032,0.038,0.067,0.051,0.063,0.108\r\n\t\t\t\tc-0.008-0.008-0.017-0.017-0.025-0.025c-0.018-0.007-0.057,0.067-0.107,0.064c-0.163-0.011-0.296-0.042-0.451-0.07\r\n\t\t\t\tc-0.078-0.014-0.166,0.024-0.203-0.006c-0.017,0.015-0.033,0.03-0.051,0.044c-0.049-0.011-0.098-0.021-0.146-0.032\r\n\t\t\t\tc-0.004,0.015-0.008,0.03-0.012,0.045c-0.045-0.007-0.062,0.006-0.103-0.006c-0.085,0.046-0.146,0.095-0.28,0.102\r\n\t\t\t\tc0.006,0.043,0.014,0.056-0.025,0.07c0.023,0.062,0.023,0.099,0.045,0.165c0.021,0,0.035-0.011,0.057-0.026\r\n\t\t\t\tc-0.002,0.057-0.004,0.115-0.006,0.172c0.057,0.016,0.08,0.031,0.121,0.051c0.025-0.023,0.051-0.047,0.076-0.07\r\n\t\t\t\tc0.013,0.009,0.024,0.017,0.037,0.025c-0.021,0.16-0.09,0.268-0.037,0.451c-0.041,0.106-0.223,0.17-0.324,0.076\r\n\t\t\t\tc-0.016-0.04-0.03-0.081-0.044-0.121c-0.048-0.034-0.093-0.068-0.14-0.102v-0.044c-0.113,0.004-0.154,0.056-0.268,0.057\r\n\t\t\t\tc-0.034,0.043-0.068,0.085-0.102,0.127c-0.002,0.044-0.004,0.089-0.006,0.133c-0.033,0.025-0.064,0.051-0.096,0.076\r\n\t\t\t\tc-0.068,0.143,0.034,0.501,0.064,0.578c-0.01,0.025,0,0,0.013,0.025c-0.011,0.002-0.021,0.004-0.032,0.006\r\n\t\t\t\tc0.012,0.035,0.018,0.047,0.014,0.089c-0.082,0.046-0.25,0.013-0.362,0.007c-0.017,0.05-0.021,0.111-0.025,0.165\r\n\t\t\t\tc-0.125,0.066-0.209,0.161-0.388,0.095c-0.01-0.053-0.025-0.086-0.051-0.121c0.005-0.087-0.213-0.034-0.28-0.013\r\n\t\t\t\tc-0.291,0.091-0.499,0.261-0.852,0.286c0.004,0.069,0.012,0.088,0.013,0.146c-0.08-0.028-0.139-0.055-0.21-0.083\r\n\t\t\t\tc-0.004-0.036-0.008-0.072-0.013-0.108c-0.081-0.042-0.175,0.016-0.222-0.121c-0.058-0.004-0.427,0.12-0.458,0.197h-0.07\r\n\t\t\t\tc-0.004-0.013-0.009-0.025-0.013-0.038h-0.006c-0.033,0.022-0.061,0.024-0.095,0.013c-0.004-0.006-0.008-0.013-0.013-0.019\r\n\t\t\t\tc0.045-0.038,0.069-0.048,0.102-0.102c-0.006-0.013-0.013-0.025-0.019-0.038c-0.049,0.004-0.097,0.009-0.146,0.013\r\n\t\t\t\tc-0.057-0.013-0.065-0.053-0.121-0.025c-0.014-0.043-0.014-0.04-0.064-0.038c0.059-0.095-0.063-0.185-0.133-0.21\r\n\t\t\t\tc0.013-0.092,0.038-0.176,0.089-0.229c-0.006-0.011-0.013-0.021-0.019-0.032c0.028-0.002,0.055-0.004,0.083-0.006\r\n\t\t\t\tc0.023-0.081,0.102-0.094,0.064-0.191c0.021-0.011,0.042-0.021,0.064-0.032c0.013,0.017,0.025,0.034,0.038,0.051\r\n\t\t\t\tc0.019-0.007,0.038-0.013,0.057-0.019c0.011-0.02,0.068-0.131,0.038-0.159c-0.051-0.002-0.102-0.004-0.153-0.006\r\n\t\t\t\tc-0.032-0.019-0.031-0.102-0.032-0.153c-0.068-0.033-0.163-0.022-0.254-0.019c-0.006,0.053-0.013,0.106-0.019,0.159\r\n\t\t\t\tc-0.013,0.014-0.02,0.015-0.044,0.019c-0.013-0.03-0.025-0.059-0.038-0.089c-0.049,0.026-0.056,0.1-0.095,0.121\r\n\t\t\t\tc-0.035,0.019-0.1-0.034-0.133-0.032c-0.071,0.107,0.012,0.181,0.019,0.286c-0.031,0.04-0.055,0.066-0.076,0.121\r\n\t\t\t\tc0.017,0.008,0.034,0.017,0.051,0.025c0.008-0.011,0.017-0.021,0.025-0.032c0.03,0.025,0.028,0.047,0.083,0.051\r\n\t\t\t\tc0.009,0.061-0.008,0.193,0.006,0.242c0.015,0.052,0.078,0.085,0.095,0.146c-0.028,0.028-0.059,0.044-0.108,0.051\r\n\t\t\t\tc0.012,0.043,0.042,0.03,0.095,0.025c-0.011,0.017-0.017,0.019-0.032,0.032c0.015,0.015,0.03,0.03,0.045,0.044\r\n\t\t\t\tc-0.011,0.008-0.021,0.017-0.032,0.025c0.002,0.011,0.004,0.021,0.006,0.032c0.023,0.011,0.047,0.021,0.07,0.032\r\n\t\t\t\tc-0.046,0.024-0.104,0.005-0.159,0c-0.019,0.061-0.035,0.076-0.006,0.133c-0.032-0.011-0.063-0.021-0.095-0.032\r\n\t\t\t\tc0.008,0.019,0.017,0.038,0.025,0.057c-0.006,0.008-0.013,0.017-0.019,0.025c-0.006,0.002-0.013,0.004-0.019,0.006\r\n\t\t\t\tc-0.006-0.004-0.013-0.008-0.019-0.013c-0.005-0.039-0.011-0.061-0.025-0.108c-0.107-0.001-0.208,0.008-0.28,0.038\r\n\t\t\t\tc-0.004,0.019-0.008,0.038-0.013,0.057c0.008,0.049,0.031,0.043,0.057,0.07c-0.002,0.006-0.004,0.013-0.006,0.019h-0.025\r\n\t\t\t\tc-0.023-0.022-0.063-0.046-0.076-0.076c-0.123-0.051-0.317,0.05-0.413,0.083c-0.013,0.055-0.013,0.076-0.013,0.146\r\n\t\t\t\tc0.027,0.002,0.055,0.004,0.083,0.006c-0.015,0.024-0.023,0.03-0.025,0.07c0.024,0.016,0.034,0.024,0.076,0.026\r\n\t\t\t\tc-0.013,0.071-0.047,0.063-0.076,0.108c-0.051,0.033-0.092-0.002-0.165-0.013c0.015-0.036,0.015-0.051,0.013-0.108\r\n\t\t\t\tc0.026,0.002,0.019,0.001,0.044-0.006c0.006-0.013,0.013-0.025,0.019-0.038c-0.018-0.035-0.039-0.055-0.07-0.076\r\n\t\t\t\tc-0.032,0.008-0.064,0.017-0.095,0.026c-0.038,0.095-0.076,0.191-0.114,0.286c-0.074,0.064-0.148,0.127-0.222,0.191\r\n\t\t\t\tc0.032,0.014,0.055,0.038,0.07,0.07c-0.053,0.064-0.14-0.005-0.216,0.025c-0.055,0.036-0.11,0.072-0.165,0.108\r\n\t\t\t\tc-0.036,0.002-0.072,0.004-0.108,0.007c-0.047,0.023-0.093,0.047-0.14,0.07c-0.038,0.119,0.011,0.258-0.089,0.324\r\n\t\t\t\tc-0.114,0.075-0.266,0.05-0.349,0.153c-0.002,0.013-0.004,0.025-0.006,0.038c0.021,0.006,0.042,0.013,0.064,0.019\r\n\t\t\t\tc-0.12,0.118-0.282-0.026-0.426,0.044c-0.023-0.044-0.033-0.075-0.025-0.14c-0.075,0.012-0.121,0.009-0.203,0\r\n\t\t\t\tc0.011,0.077,0.049,0.161,0.108,0.191c-0.002,0.083-0.013,0.145,0.025,0.197c-0.024,0.019-0.065,0.026-0.108,0.025V22.17\r\n\t\t\t\tc-0.055,0.027-0.204,0.061-0.273,0.057c-0.028-0.036-0.055-0.072-0.083-0.108c-0.045,0.004-0.089,0.008-0.133,0.013\r\n\t\t\t\tc-0.006,0.015-0.013,0.03-0.019,0.044c-0.024,0.015-0.108,0.007-0.108,0.007c-0.004-0.004-0.009-0.009-0.013-0.013\r\n\t\t\t\tc-0.076,0.006-0.132,0.063-0.222,0.063c-0.002,0.028-0.004,0.055-0.006,0.083c0.038-0.014,0.077-0.021,0.133-0.019\r\n\t\t\t\tc-0.015,0.03-0.018,0.038-0.057,0.045c-0.01,0.017,0.037,0.021,0.057,0.025c0.002,0.009,0.004,0.017,0.006,0.025v0.006\r\n\t\t\t\tc-0.038,0.006-0.076,0.013-0.114,0.019c0.018,0.035,0.065,0.028,0.089,0.057c0.002,0.011,0.004,0.021,0.006,0.032\r\n\t\t\t\tc0.154-0.013,0.334,0.029,0.445,0.127c0.028-0.009,0.055-0.017,0.083-0.025c0.011,0.006,0.021,0.013,0.032,0.019\r\n\t\t\t\tc-0.011,0.021-0.021,0.043-0.032,0.064c0.036,0.046,0.118,0.075,0.165,0.108c-0.011,0.023-0.021,0.046-0.032,0.07\r\n\t\t\t\tc0.04,0.049,0.08,0.097,0.121,0.146c0.135,0.068,0.112,0,0.184,0.153c-0.021,0.04-0.045,0.073-0.051,0.127\r\n\t\t\t\tc0.051,0.067,0.112,0.106,0.133,0.203c-0.034-0.042-0.068-0.085-0.102-0.127h-0.006c-0.04,0.073-0.053,0.198-0.051,0.305\r\n\t\t\t\tc0.011-0.008,0.021-0.017,0.032-0.025c0.008,0.01,0.017,0.021,0.025,0.032c-0.017,0.008-0.034,0.017-0.051,0.025\r\n\t\t\t\tc-0.034,0.153-0.066,0.309-0.121,0.426c-0.162,0.027-0.245-0.039-0.375-0.076c-0.077,0.095-0.35,0.058-0.515,0.032\r\n\t\t\t\tc-0.075-0.012-0.339-0.086-0.356-0.083c-0.076,0.017-0.158,0.089-0.267,0.07c-0.137-0.023-0.23-0.099-0.369-0.044\r\n\t\t\t\tc-0.013,0.034-0.025,0.068-0.038,0.102h-0.083c-0.104,0.004-0.159,0.031-0.197,0.102c0.002,0.023,0.004,0.047,0.006,0.07\r\n\t\t\t\tc0.094,0.019,0.139,0.07,0.165,0.153c0.008,0.014-0.059,0.211-0.076,0.241c0.095,0.198,0.023,0.738-0.14,0.826\r\n\t\t\t\tc0.005,0.08-0.01,0.143-0.038,0.203c0.015,0.029,0.018,0.027,0.051,0.038c0.039-0.018,0.066-0.029,0.083-0.07\r\n\t\t\t\tc0.006-0.004,0.013-0.009,0.019-0.013c0.009,0.017,0.017,0.034,0.025,0.051c-0.024,0.033-0.05,0.045-0.108,0.045v0.006\r\n\t\t\t\tc0.004,0.017,0.009,0.034,0.013,0.051c0.035,0.008,0.086-0.006,0.121-0.019c0.004,0.004,0.008,0.008,0.013,0.013\r\n\t\t\t\tc-0.011,0.052-0.024,0.115-0.032,0.165c-0.002,0.004-0.004,0.008-0.006,0.013c0.016,0.028,0.041,0.09,0.025,0.152\r\n\t\t\t\tc-0.012,0.047-0.061,0.108-0.044,0.159v0.013c0.057-0.028,0.12-0.061,0.216-0.038c0.03,0.007,0.054,0.035,0.102,0.026\r\n\t\t\t\tc0.044-0.021,0.089-0.042,0.133-0.064c0.148-0.039,0.293,0.081,0.286,0.191c0.017,0.006,0.034,0.013,0.051,0.019\r\n\t\t\t\tc0.017,0.104,0.101,0.213,0.229,0.178c0.011-0.013,0.01-0.013,0.013-0.038h0.006c0.002,0.011,0.004,0.021,0.006,0.032h0.006\r\n\t\t\t\tc0.028-0.117,0.068-0.096,0.178-0.133c0.032-0.028,0.064-0.055,0.095-0.083c0.167,0.002,0.335,0.004,0.502,0.006\r\n\t\t\t\tc0.033-0.011,0.061-0.035,0.114-0.044c0.013,0.011,0.025,0.021,0.038,0.032c0.076-0.056,0.065-0.091,0.114-0.178\r\n\t\t\t\tc0.05-0.088,0.175-0.085,0.292-0.108c0.01-0.028-0.012-0.031-0.006-0.064c0.026-0.154,0.176-0.261,0.299-0.324v-0.019\r\n\t\t\t\tc-0.032-0.017-0.064-0.034-0.095-0.051c-0.023-0.053-0.047-0.106-0.07-0.159c0.031-0.147,0.225-0.389,0.356-0.438\r\n\t\t\t\tc0.002-0.004,0.004-0.009,0.006-0.013c-0.016-0.018-0.023-0.016-0.032-0.044c0.086-0.149,0.264-0.073,0.394-0.159\r\n\t\t\t\tc0.011-0.019,0.021-0.038,0.032-0.057c0.074-0.067,0.212-0.068,0.273-0.146c0.075-0.198-0.151-0.33,0.102-0.508\r\n\t\t\t\tc0.16-0.113,0.187,0.005,0.33,0.006c0.036,0,0.081-0.033,0.133-0.013c0.074,0.029,0.117,0.137,0.242,0.115\r\n\t\t\t\tc0.24-0.044,0.308-0.187,0.47-0.292c0.047-0.013,0.093-0.026,0.14-0.038c0.025-0.028,0.051-0.055,0.076-0.083\r\n\t\t\t\tc0.129-0.101,0.256-0.104,0.426-0.019c0.221,0.111,0.209,0.479,0.419,0.61c0.184,0.115,0.33,0.293,0.502,0.381\r\n\t\t\t\tc0.155,0.08,0.306,0.025,0.343,0.229c0.03-0.008,0.059-0.017,0.089-0.025H32.2c0.013,0.015,0.025,0.03,0.038,0.044\r\n\t\t\t\tc-0.011,0.004-0.021,0.009-0.032,0.013c-0.004,0.008-0.009,0.017-0.013,0.025c0.038-0.011,0.076-0.021,0.114-0.032\r\n\t\t\t\tc0.021,0.019,0.042,0.038,0.064,0.057c0.009,0.041,0.003,0.066-0.013,0.095c0.045,0.027,0.089,0.055,0.133,0.083\r\n\t\t\t\tc0.022,0.012,0.038-0.004,0.069-0.019c0.034,0.01,0.182,0.419,0.172,0.451v0.013c-0.022-0.002-0.047-0.004-0.069-0.006\r\n\t\t\t\tc-0.011,0.011-0.021,0.021-0.032,0.032c0.02,0.067,0.004,0.11-0.064,0.14v0.076c0.014,0.009,0.025,0.017,0.039,0.025h0.082\r\n\t\t\t\tc0.039-0.064,0.067-0.14,0.146-0.165c0.016-0.034,0.005-0.062,0-0.108c0.045-0.043,0.062-0.067,0.159-0.064\r\n\t\t\t\tc0.011-0.013,0.021-0.026,0.032-0.038c-0.026-0.042-0.026-0.089-0.006-0.134c-0.062-0.034-0.123-0.068-0.185-0.102\r\n\t\t\t\tc0.002-0.111,0.086-0.282,0.197-0.267c-0.007,0.095,0.142,0.064,0.202,0.108c0.031,0.023,0.007,0.04,0.025,0.076\r\n\t\t\t\tc0.036,0.023,0.072,0.047,0.108,0.07c0.015-0.044,0.03-0.089,0.045-0.133c-0.196-0.193-0.437-0.359-0.744-0.438\r\n\t\t\t\tc-0.011-0.013-0.021-0.025-0.032-0.038c0.032-0.027,0.049-0.054,0.096-0.07c-0.002-0.011-0.004-0.021-0.006-0.032\r\n\t\t\t\tc-0.047-0.073-0.328,0.011-0.414-0.076c-0.08-0.081-0.209-0.198-0.254-0.305c-0.028-0.067-0.023-0.157-0.064-0.21\r\n\t\t\t\tc-0.031-0.04-0.088-0.05-0.133-0.076c-0.15-0.087-0.231-0.143-0.273-0.343c0.027-0.031,0.056-0.043,0.076-0.083\r\n\t\t\t\tc-0.031-0.037-0.057-0.035-0.057-0.108c-0.015-0.002-0.03-0.004-0.044-0.006c0.008-0.021,0.017-0.042,0.025-0.064\r\n\t\t\t\tc0.044-0.029,0.154-0.064,0.248-0.07c0.002-0.017,0.004-0.034,0.006-0.051c0.08,0.003,0.086,0.005,0.159,0\r\n\t\t\t\tc0.011,0.017,0.021,0.034,0.032,0.051c-0.019,0.025-0.035,0.035-0.076,0.038c0.021,0.098,0.071,0.175,0.102,0.254\r\n\t\t\t\tc0.033-0.017,0.055-0.041,0.083-0.064c0.017-0.047,0.034-0.093,0.051-0.14c0.256,0.103,0.086,0.31,0.343,0.388\r\n\t\t\t\tc-0.036,0.002-0.072,0.004-0.108,0.006v0.006c0.075,0.108,0.184,0.165,0.266,0.267c0.025,0.026,0.06-0.025,0.109-0.013\r\n\t\t\t\tc0.006,0.001,0.152,0.061,0.164,0.07c0.049,0.035,0.09,0.097,0.141,0.133c0.133,0.095,0.271,0.155,0.406,0.248\r\n\t\t\t\tc0.03,0.036,0.06,0.072,0.09,0.108c0.041,0.021,0.084,0.042,0.127,0.064c0.002,0.051,0.002,0.06-0.039,0.07\r\n\t\t\t\tc-0.006,0.043,0.017,0.226,0.014,0.235c-0.018,0.032-0.034,0.064-0.051,0.095c0.021,0.032,0.037,0.045,0.037,0.102\r\n\t\t\t\tc-0.01-0.002-0.021-0.004-0.031-0.006c0.027,0.077,0.145,0.098,0.191,0.159c0.006,0.03,0.013,0.059,0.019,0.089\r\n\t\t\t\tc0.04,0.101,0.153,0.191,0.28,0.172c0.008,0.008,0.017,0.017,0.024,0.025v0.013c-0.026,0.034-0.065,0.029-0.108,0.038v0.006\r\n\t\t\t\tc0.037,0.055,0.072,0.11,0.108,0.165c0.103-0.009,0.228-0.061,0.349-0.025c0.078,0.022,0.119,0.081,0.224,0.089v0.006\r\n\t\t\t\tc-0.101,0.134-0.204-0.021-0.324-0.038c-0.039-0.005-0.082,0.035-0.159,0.032c-0.021,0.038-0.041,0.076-0.063,0.114\r\n\t\t\t\tc0.038,0.047,0.075,0.093,0.114,0.14c0.014,0.044-0.017,0.099-0.014,0.146c0.02,0.017,0.038,0.034,0.057,0.051\r\n\t\t\t\tc0.02-0.015,0.039-0.03,0.058-0.044c0.045-0.022,0.097,0.086,0.108,0.14c0.004,0.002,0.009,0.004,0.013,0.007\r\n\t\t\t\tc0.011-0.019,0.021-0.038,0.032-0.057c0.056-0.027,0.09-0.001,0.14,0.025c-0.005-0.136-0.056-0.195-0.095-0.292v-0.032\r\n\t\t\t\tc0.033,0.011,0.068,0.021,0.102,0.032h0.014c-0.006,0.013-0.014,0.025-0.02,0.038c0.018,0.006,0.034,0.013,0.051,0.019\r\n\t\t\t\tc0.02-0.035,0.029-0.044,0.083-0.045c-0.022-0.029-0.028-0.02-0.024-0.064c-0.021,0.004-0.043,0.009-0.064,0.013\r\n\t\t\t\tc-0.021-0.048-0.025-0.074-0.057-0.108c0.047-0.015,0.093-0.03,0.14-0.044c0.05,0.006,0.106,0.078,0.121,0.121\r\n\t\t\t\tc0.006,0.004,0.013,0.008,0.019,0.013c0.014-0.011,0.025-0.021,0.039-0.032c-0.014-0.04-0.025-0.081-0.039-0.121\r\n\t\t\t\tc0.008-0.002,0.018-0.004,0.025-0.006c-0.005-0.06-0.342-0.233-0.419-0.248v-0.006c0.044-0.01,0.071-0.023,0.103-0.044\r\n\t\t\t\tc-0.014-0.03-0.026-0.059-0.039-0.089v-0.007c0.031-0.019,0.043-0.017,0.084-0.006c0.014,0.026,0.015,0.037,0.013,0.07h0.006\r\n\t\t\t\tc0.006-0.002,0.013-0.004,0.019-0.006c0.008-0.011,0.018-0.021,0.025-0.032c-0.079-0.096-0.169-0.193-0.223-0.311\r\n\t\t\t\tc0.003-0.047,0.016-0.064,0.039-0.089c-0.012-0.013-0.021-0.025-0.032-0.038c0.034-0.015,0.06-0.023,0.075-0.057\r\n\t\t\t\tc0.009,0.002,0.018,0.004,0.025,0.006c0.002,0.009,0.004,0.017,0.006,0.025c-0.011,0.007-0.021,0.013-0.031,0.019\r\n\t\t\t\tc0.039,0.08,0.139,0.069,0.146,0.184c0.032,0.004,0.063,0.008,0.095,0.013h0.014c-0.035-0.042-0.079-0.056-0.108-0.108v-0.006\r\n\t\t\t\tc0.076,0.003,0.119,0.051,0.146,0.102c0.016-0.002,0.031-0.004,0.045-0.006c0.002-0.006,0.004-0.013,0.006-0.019\r\n\t\t\t\tc-0.023-0.041-0.061-0.046-0.083-0.089c0.011-0.008,0.021-0.017,0.032-0.026c0.037,0.007,0.066,0.015,0.082,0.045\r\n\t\t\t\tc0.018,0.015,0.035,0.03,0.052,0.045c0.006-0.004,0.013-0.009,0.019-0.013v-0.006c-0.062-0.077-0.15-0.094-0.19-0.197v-0.006\r\n\t\t\t\tc0.134-0.026,0.108,0.02,0.21-0.07c0.039,0.003,0.033,0.001,0.044,0.032c0.079,0,0.103-0.025,0.153-0.051\r\n\t\t\t\tc0.043,0.102,0.271-0.012,0.285,0.121c0.008-0.009,0.018-0.017,0.025-0.025c0.034,0.021,0.105,0.031,0.146,0.044\r\n\t\t\t\tc0.002,0.004,0.004,0.008,0.006,0.013c-0.032,0.019-0.064,0.038-0.096,0.057c-0.008,0.032-0.017,0.064-0.024,0.095\r\n\t\t\t\tc0.065-0.021,0.091-0.085,0.14-0.121c0.061-0.028,0.123-0.055,0.184-0.083c0.016-0.03,0.03-0.059,0.045-0.089\r\n\t\t\t\tc0.037-0.022,0.1,0.002,0.152-0.019c0.137-0.054,0.112,0.009,0.273,0.013c0.025-0.03,0.045-0.056,0.062-0.095\r\n\t\t\t\tc-0.045-0.06-0.142-0.051-0.209-0.089c-0.088-0.049-0.179-0.313-0.268-0.299v-0.051c0.035-0.035,0.047-0.056,0.102-0.076\r\n\t\t\t\tc0.016-0.084,0.038-0.153,0.051-0.222c0.025-0.013,0.108-0.018,0.121-0.038c0.004-0.04,0.008-0.08,0.014-0.121\r\n\t\t\t\tc0.035-0.199,0.06-0.377,0.285-0.388c0.023-0.049,0.047-0.097,0.07-0.146c-0.015-0.031-0.033-0.038-0.051-0.064\r\n\t\t\t\tc-0.031-0.104,0.094-0.097,0.152-0.133c0.199-0.119,0.104-0.321,0.51-0.311c0.008-0.015,0.018-0.03,0.025-0.045\r\n\t\t\t\tc0.006-0.004,0.013-0.008,0.019-0.013c0.021,0.025,0.042,0.051,0.063,0.076v0.013c-0.022,0.021-0.047,0.042-0.069,0.064v0.013\r\n\t\t\t\tc0.097,0.133,0.265,0.085,0.458,0.089c0.013,0.025,0.025,0.051,0.038,0.076c-0.067,0.074-0.25,0.106-0.331,0.184\r\n\t\t\t\tc0.004,0.008,0.009,0.017,0.013,0.025c0.2,0.038,0.367,0.002,0.254,0.267V23.7c0.285,0.052,0.158-0.026,0.337-0.089\r\n\t\t\t\tc0.051-0.004,0.103-0.009,0.153-0.013c0.034-0.028,0.067-0.055,0.103-0.083c0.06-0.018,0.088,0.017,0.133,0.025\r\n\t\t\t\tc0.037-0.006,0.076-0.013,0.113-0.019c0.023-0.032,0.053-0.072,0.064-0.114c-0.064-0.008-0.127-0.017-0.191-0.025\r\n\t\t\t\tc-0.072,0.007-0.141,0.064-0.234,0.038c-0.024-0.123-0.199-0.258-0.338-0.299c-0.002-0.004-0.004-0.008-0.006-0.013\r\n\t\t\t\tc0.104-0.029,0.197-0.016,0.306-0.019c0.036-0.039,0.065-0.066,0.083-0.127c0.004-0.002,0.009-0.004,0.013-0.006\r\n\t\t\t\tc0.015,0.013,0.03,0.025,0.044,0.038c0.021,0.013,0.02,0.008,0.045,0c0.051-0.015,0.061-0.049,0.102-0.063\r\n\t\t\t\tc0.125-0.023,0.25-0.047,0.375-0.07c0.023-0.025,0.048-0.051,0.07-0.076c0.074-0.008,0.148-0.017,0.223-0.025\r\n\t\t\t\tc0.013-0.013,0.007-0.002,0.013-0.025c0.093-0.017,0.187-0.034,0.28-0.051c0.011,0.021,0.021,0.042,0.031,0.064\r\n\t\t\t\tc-0.099,0.079-0.25,0.146-0.412,0.152c-0.008,0.011-0.018,0.021-0.026,0.032c0.073,0.053,0.147,0.098,0.196,0.178\r\n\t\t\t\tc-0.033,0.026-0.076,0.034-0.139,0.032c-0.029,0.081-0.084,0.13-0.09,0.229c-0.049,0.026-0.154,0.037-0.21,0.051\r\n\t\t\t\tc0.044,0.059,0.104,0.147,0.159,0.197c0.043,0.008,0.057-0.002,0.089-0.019c0.041,0.027,0.058,0.069,0.095,0.095\r\n\t\t\t\tc0.045,0.013,0.09,0.025,0.133,0.038c0.105,0.049,0.192,0.14,0.281,0.21c0.047,0.038,0.115,0.138,0.178,0.133\r\n\t\t\t\tc-0.004,0.019-0.008,0.038-0.014,0.057c0.102,0.075,0.311,0.102,0.381,0.21c0.016,0.053,0.03,0.106,0.045,0.159\r\n\t\t\t\tc0.08,0.289-0.088,0.388-0.324,0.445c-0.131,0.031-0.221-0.051-0.336-0.032c-0.053,0.017-0.106,0.034-0.159,0.051\r\n\t\t\t\tc-0.099,0.022-0.277-0.021-0.382-0.038c-0.125-0.021-0.15-0.13-0.291-0.076c-0.078-0.037-0.078-0.076-0.121-0.146\r\n\t\t\t\tc-0.029-0.021-0.103,0.03-0.172,0.013c-0.084-0.021-0.076-0.089-0.121-0.146c-0.174,0.111-0.323-0.021-0.541,0.032\r\n\t\t\t\tc-0.195,0.047-0.34,0.172-0.514,0.229c0.002,0.017,0.004,0.034,0.006,0.051c-0.139,0.074-0.203,0.007-0.318-0.013\r\n\t\t\t\tc-0.02,0.006-0.038,0.013-0.057,0.019c-0.094-0.008-0.187-0.017-0.28-0.025c-0.013,0.025-0.025,0.051-0.038,0.076\r\n\t\t\t\tc0.029,0.031,0.068,0.042,0.083,0.089c0.053-0.002,0.106-0.004,0.159-0.006v0.006c-0.072,0.023-0.189,0.032-0.28,0.032\r\n\t\t\t\tc-0.017,0.023-0.026,0.025-0.026,0.051c0.026,0.006,0.051,0.013,0.076,0.019c0.006,0.004,0.014,0.009,0.02,0.013\r\n\t\t\t\tc-0.006,0.008-0.014,0.017-0.02,0.025c-0.113-0.018-0.214-0.013-0.337-0.006c0.011-0.013,0.021-0.025,0.032-0.038\r\n\t\t\t\tc-0.036-0.015-0.055-0.014-0.09-0.007c-0.002,0.004-0.004,0.009-0.006,0.013c0.014,0.006,0.026,0.013,0.039,0.019v0.019\r\n\t\t\t\tc-0.067,0.022-0.143,0.01-0.16-0.044c-0.09,0.011-0.202,0.041-0.254,0.095c-0.035,0.037,0.004,0.057-0.069,0.064\r\n\t\t\t\tc-0.011,0.071-0.028,0.13-0.032,0.191c0.087-0.013,0.174-0.025,0.262-0.038v0.006c-0.016,0.024-0.031,0.039-0.058,0.051\r\n\t\t\t\tc-0.015,0.017-0.03,0.034-0.045,0.051c0.035,0.006,0.049,0.02,0.063,0.045c0.015,0.023-0.006,0.02-0.013,0.064h0.058\r\n\t\t\t\tc0.006,0.008,0.013,0.017,0.019,0.025c-0.021,0.025-0.052,0.036-0.089,0.045c-0.008,0.025,0.01,0.054,0.038,0.076\r\n\t\t\t\tc0.034,0.045,0.026,0.031-0.019,0.063c-0.033-0.003-0.056-0.025-0.09-0.044c-0.011,0.023-0.021,0.047-0.031,0.07v0.045\r\n\t\t\t\tc0.104,0.013,0.133,0.046,0.221,0.07c0.004,0.06-0.021,0.124,0.007,0.165c0.034,0.021,0.067,0.042,0.103,0.064\r\n\t\t\t\tc0.002,0.008,0.004,0.017,0.006,0.025c-0.028,0.011-0.056,0.021-0.084,0.032c0.006,0.013,0.014,0.025,0.02,0.038\r\n\t\t\t\tc0.068,0.006,0.136,0.013,0.203,0.019c0.002,0.004,0.004,0.008,0.006,0.013c-0.018,0.019-0.023,0.019-0.032,0.051\r\n\t\t\t\tc0.007,0.015,0.013,0.03,0.019,0.045c0.004,0.002,0.01,0.004,0.014,0.006c0.021-0.021,0.042-0.042,0.064-0.063\r\n\t\t\t\tc0.084-0.003,0.086,0.023,0.146,0.051c0.028,0.014,0.049-0.015,0.076-0.038c0.024,0.059,0.051,0.119,0.075,0.178\r\n\t\t\t\tc0.1,0.031,0.23-0.025,0.3,0.019c0.013-0.002,0.026-0.004,0.038-0.006c0.015-0.072,0.029-0.144,0.044-0.216\r\n\t\t\t\tc0.142-0.018,0.288,0.018,0.388,0.083c0.073,0.048,0.107,0.143,0.203,0.172c0.136,0.041,0.301-0.026,0.381-0.045\r\n\t\t\t\tc0.042-0.082,0.104-0.102,0.159-0.165c0.138,0.001,0.177,0.055,0.286,0.07c0.037-0.038,0.085-0.067,0.121-0.114h0.025\r\n\t\t\t\tc0.012,0.017,0.024,0.034,0.037,0.051c0.002,0.013,0.004,0.025,0.006,0.038c-0.039,0.043-0.09,0.068-0.127,0.114\r\n\t\t\t\tc0.018,0.03,0.034,0.059,0.051,0.089c-0.011,0.057-0.037,0.107-0.063,0.153c0.087,0.115,0.021,0.195,0.076,0.33\r\n\t\t\t\tc-0.146,0.144-0.206,0.407-0.306,0.578c-0.008,0.042-0.017,0.085-0.024,0.127c-0.041,0.134-0.077,0.258-0.173,0.337\r\n\t\t\t\tc0.074,0.186,0.148,0.373,0.223,0.559c0.012,0.018,0.023,0.014,0.051,0.032c-0.023,0.137-0.084,0.285-0.095,0.407\r\n\t\t\t\tc0.036,0.002,0.071,0.004,0.108,0.006c0.047,0.059,0.093,0.119,0.14,0.178c0.104,0.17,0.188,0.32,0.299,0.477\r\n\t\t\t\tc0.084,0.118,0.206,0.226,0.165,0.413c0.085,0.117,0.223,0.149,0.324,0.248c0.066,0.119,0.131,0.237,0.197,0.356\r\n\t\t\t\tc0.065,0.127-0.002,0.313,0.051,0.457c0.051,0.072,0.102,0.144,0.152,0.216c0.069,0.096,0.225,0.114,0.299,0.203\r\n\t\t\t\tc0.089,0.182,0.178,0.364,0.267,0.546c0.034,0.026,0.067,0.051,0.103,0.076c0.086,0.071,0.194,0.232,0.234,0.344\r\n\t\t\t\tc0.012,0.067,0.021,0.135,0.032,0.202c-0.009,0.039-0.042,0.068-0.032,0.128c0.03,0.172,0.113,0.353,0.165,0.495v0.216\r\n\t\t\t\tc0.095,0.205,0.384,0.166,0.554,0.057c0.057-0.047,0.113-0.092,0.172-0.139c0.094-0.029,0.217,0.012,0.299-0.014\r\n\t\t\t\tc0.128-0.039,0.228-0.133,0.343-0.172c0.078-0.025,0.163,0.016,0.229-0.02c0.068-0.035,0.086-0.123,0.151-0.158\r\n\t\t\t\tc0.238-0.131,0.547-0.129,0.769-0.268c0.062-0.037,0.047-0.087,0.076-0.158c0.029-0.07,0.139-0.143,0.211-0.172\r\n\t\t\t\tc0.121-0.041,0.24-0.082,0.361-0.121c0.07,0.008,0.141,0.017,0.21,0.024c0.024-0.015,0.052-0.03,0.076-0.045\r\n\t\t\t\tc0.045-0.091,0.017-0.205,0.108-0.248c0.096-0.045,0.186,0.021,0.272-0.051c0.032-0.027,0.026-0.071,0.044-0.114\r\n\t\t\t\tc0.049-0.12,0.189-0.153,0.35-0.159c0.008-0.116-0.013-0.304,0.025-0.419c0.057-0.024,0.123,0.021,0.172-0.006\r\n\t\t\t\tc0.057-0.042,0.064-0.147,0.102-0.21c0.043-0.04,0.086-0.08,0.128-0.121c0.059-0.074,0.114-0.154,0.159-0.242\r\n\t\t\t\tc-0.012-0.066-0.116-0.088-0.159-0.127c-0.064-0.08-0.128-0.161-0.191-0.241c-0.048-0.033-0.104,0.008-0.165-0.006\r\n\t\t\t\tc-0.089-0.049-0.178-0.098-0.267-0.146c-0.071-0.049-0.183-0.161-0.21-0.248c-0.021-0.066,0.011-0.151-0.014-0.203\r\n\t\t\t\tc-0.015-0.018-0.023-0.019-0.057-0.019c0.044-0.068,0.068-0.116,0.057-0.229h-0.006c-0.045,0.057-0.089,0.115-0.133,0.172\r\n\t\t\t\tc-0.113,0.09-0.215,0.143-0.311,0.267c-0.023,0.045-0.047,0.089-0.07,0.134c-0.035,0.031-0.051,0.02-0.07,0.07\r\n\t\t\t\tc-0.041,0.011-0.062,0.014-0.095-0.006c-0.002,0.011-0.004,0.021-0.006,0.032c-0.074,0.026-0.394,0.021-0.478-0.019\r\n\t\t\t\tc-0.019,0.017-0.022,0.015-0.031,0.044c-0.073,0.007-0.131-0.005-0.203-0.006c0.013-0.058-0.016-0.063-0.064-0.076\r\n\t\t\t\tc-0.037-0.089,0.072-0.127,0.076-0.216c0.001-0.028-0.018-0.268-0.025-0.28c-0.018-0.025-0.035-0.018-0.051-0.057\r\n\t\t\t\tc-0.015-0.002-0.029-0.004-0.044-0.006c-0.083,0.059-0.118,0.288-0.069,0.407c0.006,0.07,0.01,0.094-0.051,0.089\r\n\t\t\t\tc-0.046-0.059-0.109-0.211-0.115-0.311c-0.033-0.027-0.035-0.039-0.076-0.032c-0.032-0.107-0.057-0.116-0.012-0.229\r\n\t\t\t\tc-0.014-0.021-0.026-0.042-0.039-0.064c0.021-0.031,0.039-0.029,0.045-0.076c-0.062-0.082-0.205-0.072-0.248-0.172\r\n\t\t\t\tc-0.035-0.028-0.025-0.027-0.006-0.064c-0.037-0.017-0.058-0.015-0.113-0.013c-0.07-0.185-0.159-0.356-0.211-0.553\r\n\t\t\t\tc-0.035,0.009-0.071,0.017-0.107,0.026c-0.013-0.006-0.025-0.013-0.038-0.019c0.021-0.026,0.042-0.051,0.063-0.076h0.044\r\n\t\t\t\tc-0.009-0.04-0.017-0.08-0.025-0.121c0.026-0.034,0.169-0.04,0.235-0.038c0.055-0.054,0.047-0.118,0.127-0.152h0.02\r\n\t\t\t\tc-0.002,0.041,0,0.074,0.019,0.095c0.038,0.072,0.165,0.061,0.241,0.032c0.043,0.069,0.144,0.143,0.172,0.21v0.102\r\n\t\t\t\tc0.031,0.082,0.137,0.259,0.191,0.337c0.064,0.091,0.221,0.082,0.312,0.146c0.047,0.057,0.093,0.115,0.14,0.172\r\n\t\t\t\tc0.105,0.063,0.211,0.06,0.337,0.102c0.07,0.023,0.11,0.086,0.197,0.095c0.042-0.036,0.187-0.121,0.196-0.172\r\n\t\t\t\tc0.099-0.035,0.203-0.075,0.324-0.044c0.051,0.012,0.039,0.034,0.09,0.038c0.015,0.043,0.01,0.1,0.031,0.159\r\n\t\t\t\tc0.026,0.069,0.096,0.113,0.096,0.21c0.067,0.011,0.135,0.056,0.184,0.076h0.254c0.025,0.023,0.051,0.047,0.076,0.07\r\n\t\t\t\tc0.143,0.002,0.284,0.004,0.426,0.007c0.075,0.02,0.118,0.067,0.217,0.083c0.131,0.021,0.254-0.027,0.355-0.044h0.286\r\n\t\t\t\tc0.057-0.021,0.1-0.057,0.19-0.07c0.08,0.167,0.549-0.018,0.687-0.025c0.073,0.053,0.075,0.102,0.069,0.223\r\n\t\t\t\tc0.047,0.011,0.094,0.021,0.141,0.032c0.023,0.068,0.047,0.136,0.07,0.203c0.05,0.067,0.113,0.032,0.19,0.076\r\n\t\t\t\tc0.03,0.042,0.06,0.085,0.089,0.127c0.104,0.123,0.381,0.229,0.598,0.153c0.002,0.052-0.021,0.064-0.051,0.095\r\n\t\t\t\tc-0.143,0.145-0.215,0.023-0.369,0.076h-0.014c0.049,0.113,0.434,0.501,0.572,0.508c0.04-0.015,0.081-0.03,0.121-0.044\r\n\t\t\t\tc0.145-0.047,0.383-0.127,0.254-0.299c0.008-0.03,0.018-0.059,0.025-0.089c0.031-0.019,0.082-0.021,0.14-0.019\r\n\t\t\t\tc-0.019,0.072-0.015,0.207,0.013,0.286c0.016,0.046,0.116,0.085,0.102,0.146c-0.014,0.062-0.094,0.113-0.102,0.191\r\n\t\t\t\tc0.027,0.146,0.055,0.292,0.083,0.438c0.034,0.205,0.068,0.411,0.103,0.616c0.07,0.251,0.209,0.444,0.305,0.655\r\n\t\t\t\tc0.064,0.143,0.116,0.299,0.165,0.457c0.021,0.078,0.042,0.156,0.063,0.234c0.039,0.055,0.076,0.11,0.114,0.165\r\n\t\t\t\tc0.074,0.163,0.148,0.326,0.222,0.489c0.033,0.111,0.064,0.225,0.096,0.337c0.059,0.063,0.119,0.127,0.178,0.19\r\n\t\t\t\tc0.09-0.002,0.219-0.063,0.248-0.127c0.025-0.054,0.004-0.105,0.038-0.146c0.083-0.028,0.165-0.056,0.248-0.083\r\n\t\t\t\tc-0.013-0.027-0.034-0.042-0.058-0.057c0.025-0.072,0.052-0.145,0.076-0.217c0.037-0.021,0.108-0.021,0.172-0.019\r\n\t\t\t\tc0.023-0.118-0.033-0.248-0.019-0.362c0.024-0.213,0.286-0.457,0.108-0.654c0.057-0.142-0.035-0.297,0-0.451\r\n\t\t\t\tc0.021-0.047,0.041-0.094,0.063-0.141c0.06-0.048,0.118-0.061,0.19-0.019c0.049-0.031,0.078-0.104,0.096-0.165\r\n\t\t\t\tc0.059-0.032,0.17-0.01,0.229-0.051c0.065-0.045,0.049-0.168,0.108-0.217c0.063-0.031,0.127-0.063,0.19-0.094\r\n\t\t\t\tc0.072-0.046,0.111-0.143,0.179-0.184c0.046-0.028,0.088-0.032,0.127-0.064c0.097-0.119,0.194-0.237,0.292-0.356\r\n\t\t\t\tc0.078-0.054,0.207-0.041,0.292-0.095c0.106-0.067,0.147-0.181,0.229-0.273c-0.014-0.045-0.025-0.089-0.039-0.134\r\n\t\t\t\tc0.072-0.072,0.18-0.083,0.268-0.14c0.032-0.034,0.064-0.068,0.096-0.102c0.028,0.022,0.049,0.059,0.057,0.102\r\n\t\t\t\tc0.013,0.004,0.025,0.008,0.037,0.013c0.018-0.03,0.035-0.059,0.052-0.089c0.002-0.004,0.004-0.008,0.006-0.013\r\n\t\t\t\tc0.034,0.02,0.042,0.065,0.051,0.108h0.089c-0.005-0.031-0.002-0.042,0.006-0.07c0.02,0.01,0.039,0.021,0.058,0.032\r\n\t\t\t\tc0.013-0.021,0.024-0.042,0.038-0.063c0.008-0.006,0.017-0.013,0.025-0.019c0.008,0.021,0.016,0.043,0.025,0.064h0.038\r\n\t\t\t\tc0.026-0.034,0.046-0.064,0.051-0.121c0.004-0.002,0.009-0.004,0.013-0.006c0.021,0.038,0.043,0.076,0.063,0.115h0.045\r\n\t\t\t\tc0.017-0.069,0.026-0.078,0.095-0.095c0.022-0.07-0.005-0.129-0.031-0.184c-0.002-0.034-0.004-0.067,0.013-0.083\r\n\t\t\t\tc0.004-0.004,0.009-0.009,0.013-0.013c0.032,0.042,0.064,0.085,0.096,0.127c0.069-0.001,0.1-0.022,0.146-0.044\r\n\t\t\t\tc0.175,0.137,0.122,0.639,0.362,0.705c0.021,0.006,0.054-0.002,0.076,0.006v0.083c0.053,0.035,0.082,0.001,0.127,0.025\r\n\t\t\t\tc0.067,0.037,0.106,0.146,0.133,0.229v0.006c-0.034,0.006-0.068,0.013-0.103,0.019c0.028,0.031,0.065,0.053,0.108,0.07\r\n\t\t\t\tc0.011-0.019,0.021-0.038,0.031-0.057c0.004-0.002,0.01-0.004,0.014-0.006c0.079,0.128,0.174,0.362,0.146,0.578\r\n\t\t\t\tc-0.018,0.129-0.099,0.221-0.103,0.361c0.015,0.012,0.03,0.021,0.044,0.033c0.047-0.039,0.073-0.066,0.152-0.076\r\n\t\t\t\tc-0.006,0.024-0.012,0.051-0.019,0.076c0.011,0.011,0.021,0.021,0.032,0.031h0.025c0.029-0.023,0.031-0.041,0.082-0.044v0.058\r\n\t\t\t\tc0.08,0.072,0.095-0.08,0.153-0.121c0.185-0.133,0.273-0.031,0.306-0.344H56.3c0.085,0.062,0.089,0.235,0.197,0.268\r\n\t\t\t\tc0.026,0.18,0.051,0.359,0.075,0.54c0.048,0.163,0.152,0.309,0.203,0.45c0.054,0.145,0.031,0.291,0.025,0.433\r\n\t\t\t\tc0.02,0.01,0.036,0.013,0.07,0.013c-0.033,0.078-0.145,0.34-0.114,0.413c0.017,0.013,0.034,0.025,0.052,0.038\r\n\t\t\t\tc-0.064,0.162-0.162,0.391-0.103,0.566c0.024-0.012,0.051-0.021,0.075-0.032c0.086,0.091,0.166,0.136,0.211,0.272\r\n\t\t\t\tc0.02,0.008,0.033,0.01,0.064,0c0.043,0.058,0.051,0.1,0.051,0.197c0.011,0.006,0.021,0.014,0.031,0.02\r\n\t\t\t\tc0.034,0.043,0.078,0.029,0.121,0.006c0.004,0.004,0.008,0.008,0.014,0.013c-0.019,0.14-0.008,0.3,0.043,0.445\r\n\t\t\t\tc0.025,0.047,0.052,0.093,0.076,0.14c0.01,0.069-0.023,0.131,0.014,0.191c0.039,0.033,0.08,0.068,0.121,0.102\r\n\t\t\t\tc0.016,0.021,0.021,0.057,0.031,0.088C55.357,48.795,44.764,58,32,58z M20.929,9.847c0.001,0,0.002,0,0.003,0\r\n\t\t\t\tc0.002,0.003,0.004,0.006,0.006,0.009c-0.001,0-0.002,0-0.003,0C20.933,9.853,20.931,9.85,20.929,9.847z M43.915,25.038\r\n\t\t\t\tc-0.028,0.012-0.031-0.019-0.069-0.013c-0.035,0.011-0.068,0.021-0.103,0.032c-0.005-0.002-0.009-0.004-0.013-0.006\r\n\t\t\t\tc-0.002-0.023-0.004-0.047-0.006-0.07c-0.014-0.004-0.026-0.008-0.039-0.013c-0.004,0.017-0.008,0.034-0.013,0.051\r\n\t\t\t\tc-0.048-0.011-0.054-0.013-0.108-0.006c-0.017-0.034-0.033-0.068-0.051-0.102c-0.066,0.075-0.078,0.271-0.043,0.369\r\n\t\t\t\tc0.038,0.021,0.133,0.008,0.215,0.006c-0.015,0.019-0.029,0.038-0.043,0.057c0.004,0.013,0.008,0.025,0.012,0.038\r\n\t\t\t\tc0.015,0.023,0.043,0.036,0.07,0.045v0.019c-0.045-0.004-0.088-0.008-0.133-0.013c-0.011,0.015-0.021,0.03-0.031,0.045v0.044\r\n\t\t\t\tc0.041-0.029,0.065-0.018,0.127-0.006c0.023,0.067,0.084,0.076,0.113,0.133c0.014,0.054-0.037,0.118-0.037,0.203\r\n\t\t\t\tc0,0.04-0.022,0.09-0.02,0.108c0.018,0.102,0.109,0.354,0.025,0.419c-0.062,0.047-0.192,0.025-0.281,0.045\r\n\t\t\t\tc-0.313,0.07-0.747,0.1-0.857-0.197c-0.119-0.032-0.251-0.062-0.35-0.095c-0.053-0.198,0.057-0.392,0.057-0.559\r\n\t\t\t\tc0.006-0.004,0.014-0.008,0.02-0.013c0.017,0.015,0.019,0.017,0.024,0.044c0.007,0.004,0.013,0.008,0.019,0.013\r\n\t\t\t\tc0.007-0.03,0.014-0.059,0.02-0.089c0.02-0.009,0.021-0.011,0.044-0.006c-0.012-0.168,0.011-0.45,0.28-0.337h0.006\r\n\t\t\t\tc-0.002-0.011-0.004-0.021-0.006-0.032c-0.057-0.128-0.189-0.036-0.242-0.108c-0.029-0.042-0.076-0.085-0.095-0.127\r\n\t\t\t\tc-0.023-0.049-0.009-0.096-0.038-0.133c-0.041-0.053-0.105-0.142-0.159-0.184c-0.019-0.006-0.038-0.013-0.058-0.019\r\n\t\t\t\tc-0.049-0.07-0.076-0.16-0.139-0.216c-0.016-0.004-0.031-0.009-0.045-0.013c-0.031-0.047,0.006-0.079-0.044-0.108\r\n\t\t\t\tc-0.057-0.081-0.018-0.217,0.019-0.311v-0.019H41.92c-0.011,0.038-0.021,0.076-0.031,0.114h-0.007\r\n\t\t\t\tc-0.001-0.113-0.014-0.227-0.114-0.286c-0.031-0.019-0.074-0.01-0.088-0.045v-0.032c0.004-0.075,0.082-0.081,0.113-0.127\r\n\t\t\t\tc0.062-0.092,0.092-0.195,0.121-0.286c0.004-0.006,0.008-0.013,0.013-0.019c0.105,0.051,0.2-0.03,0.28-0.076\r\n\t\t\t\tc0.016,0.008,0.029,0.017,0.044,0.025c0.017-0.02,0.021-0.029,0.019-0.07c0.103-0.023,0.135-0.121,0.217-0.153\r\n\t\t\t\tc0.039-0.002,0.08-0.004,0.121-0.006c0.129-0.041,0.242-0.21,0.412-0.197c0.097,0.007,0.138,0.073,0.211,0.089\r\n\t\t\t\tc0.076,0.017,0.097-0.038,0.133-0.051c0.057,0.013,0.113,0.025,0.172,0.038c0.015,0.025,0.029,0.051,0.045,0.076\r\n\t\t\t\tc-0.018,0.017-0.034,0.034-0.051,0.051c0.047,0.164,0.01,0.207-0.084,0.33c0.005,0.058,0.07,0.083,0.115,0.095\r\n\t\t\t\tc0.002,0.004,0.004,0.008,0.006,0.013c-0.139-0.013-0.275-0.025-0.414-0.038c-0.037,0.007-0.047,0.027-0.102,0.026\r\n\t\t\t\tc-0.013,0.034-0.025,0.068-0.037,0.102c-0.029,0.036-0.058,0.02-0.076,0.076c0.026,0.039,0.063,0.068,0.113,0.083\r\n\t\t\t\tc0.006,0.008,0.014,0.017,0.02,0.026c-0.062,0.044-0.215-0.025-0.338-0.019c-0.006,0.006-0.012,0.013-0.019,0.019v0.083\r\n\t\t\t\tc0.039,0.026,0.134,0.043,0.185,0.051c0.027,0.155,0.139,0.203,0.133,0.368h0.089c0.037,0.027,0.071,0.069,0.089,0.114\r\n\t\t\t\tc0.089,0.012,0.165-0.009,0.234,0.064c-0.033,0.064-0.069,0.143-0.094,0.203c0.022,0.038-0.002,0.077,0.019,0.121\r\n\t\t\t\tc0.013,0.006,0.026,0.013,0.038,0.019c-0.002,0.019-0.004,0.038-0.006,0.057c0.013,0.029,0.055,0.079,0.076,0.114v0.013\r\n\t\t\t\tc0.026-0.072,0.01-0.226,0.031-0.305c0.088-0.015,0.174-0.031,0.273-0.025c0.015,0.056,0.023,0.174,0.051,0.216\r\n\t\t\t\tc0.046,0.071,0.146,0.075,0.197,0.178c-0.016,0.031-0.026,0.037-0.057,0.051c-0.041-0.008-0.043-0.024-0.084-0.032\r\n\t\t\t\tC43.898,24.987,43.907,25.012,43.915,25.038z M35.799,24.777c-0.004,0.004-0.008,0.008-0.013,0.013\r\n\t\t\t\tc-0.024-0.022-0.041-0.037-0.083-0.045c0.004-0.011,0.009-0.021,0.013-0.032c0.017,0.008,0.034,0.017,0.052,0.025\r\n\t\t\t\tC35.788,24.751,35.789,24.757,35.799,24.777z M57.643,35.618c-0.367,0.016-0.324-0.226-0.388-0.502\r\n\t\t\t\tc-0.013,0.004-0.024,0.008-0.038,0.013c-0.056-0.044-0.033-0.145-0.051-0.222c-0.062,0.004-0.119,0.022-0.178,0.013\r\n\t\t\t\tc-0.153-0.249,0.123-0.633,0.191-0.826c-0.005-0.053-0.01-0.105-0.014-0.158c0.02-0.082,0.062-0.115,0.025-0.217\r\n\t\t\t\tc0.092-0.07,0.145-0.061,0.291-0.051c-0.006,0.076-0.012,0.152-0.019,0.229c0.058,0.002,0.08,0.024,0.121,0.033\r\n\t\t\t\tc0.078,0.014,0.106-0.055,0.19-0.007c0.039,0.04,0.076,0.08,0.115,0.121c0.002,0.001,0.004,0.001,0.006,0.002\r\n\t\t\t\tc-0.043,0.556-0.11,1.104-0.188,1.649C57.688,35.667,57.663,35.645,57.643,35.618z M8.363,28.628\r\n\t\t\t\tc-0.002-0.006-0.004-0.013-0.006-0.019v0.019H8.363z M8.35,28.59c-0.001-0.011-0.009-0.009-0.011-0.018\r\n\t\t\t\tc0.001,0.006,0.003,0.012,0.004,0.018H8.35z M42.555,41.414c-0.037-0.059-0.106-0.061-0.14-0.133\r\n\t\t\t\tc-0.067-0.055-0.062-0.042-0.127,0.013c0.009,0.101,0.008,0.235-0.07,0.299c-0.044,0.036-0.079,0.04-0.102,0.103\r\n\t\t\t\tc-0.039-0.014-0.048-0.034-0.063-0.07c-0.019-0.002-0.037-0.004-0.057-0.006c-0.003,0.068,0.016,0.109,0.038,0.165\r\n\t\t\t\tc-0.005,0.011-0.009,0.021-0.013,0.032c-0.024,0.016-0.041,0.024-0.084,0.024c-0.002,0.005-0.004,0.009-0.006,0.013\r\n\t\t\t\tc0.004,0.045,0.026,0.06,0.045,0.103c-0.022,0.024-0.047,0.051-0.069,0.076c-0.039-0.005-0.04-0.009-0.052-0.038H41.85\r\n\t\t\t\tc-0.031,0.027-0.062,0.055-0.095,0.083c0.009,0.034,0.022,0.045,0.038,0.069c-0.014,0.01-0.025,0.018-0.038,0.026\r\n\t\t\t\tc-0.024,0.011-0.026-0.009-0.063-0.019c-0.047,0.029-0.094,0.059-0.141,0.089c0.004,0.024,0.01,0.051,0.014,0.075\r\n\t\t\t\tc-0.071,0.018-0.121-0.053-0.211-0.012c-0.017,0.019-0.033,0.037-0.051,0.057c-0.039,0.02-0.074-0.014-0.107-0.014\r\n\t\t\t\tc-0.025,0.02-0.051,0.039-0.076,0.058c-0.044,0.002-0.09,0.004-0.133,0.006c0,0.213-0.084,0.245-0.141,0.381\r\n\t\t\t\tc-0.025,0.101,0.069,0.325,0.121,0.388c-0.015,0.032-0.029,0.064-0.044,0.096c0.032,0.039,0.063,0.076,0.095,0.115\r\n\t\t\t\tc0.03,0.114-0.166,0.512-0.216,0.559c-0.024,0.009-0.051,0.017-0.075,0.025c-0.045,0.031-0.103,0.232-0.09,0.311\r\n\t\t\t\tc0.053,0.097,0.106,0.195,0.159,0.292c-0.013,0.049-0.024,0.097-0.038,0.146c-0.031,0.145,0.061,0.157,0.083,0.229\r\n\t\t\t\tc0.017,0.051-0.006,0.092,0.019,0.127c0.084,0.119,0.263,0.084,0.344,0.21c0.137-0.008,0.17-0.09,0.285-0.121\r\n\t\t\t\tc0.07-0.009,0.141-0.018,0.211-0.025c0.132-0.082,0.205-0.498,0.261-0.674c0.149-0.486,0.302-0.971,0.451-1.455\r\n\t\t\t\tc0.028-0.096-0.011-0.189,0.019-0.3c0.026-0.093,0.125-0.146,0.146-0.254c-0.047-0.071-0.09-0.157-0.09-0.272\r\n\t\t\t\tc0.012-0.006,0.021-0.014,0.033-0.02c0.004-0.004,0.008-0.009,0.013-0.013c0.028,0.053,0.069,0.133,0.12,0.165\r\n\t\t\t\tc0.035-0.029,0.115-0.123,0.103-0.191c-0.026-0.053-0.055-0.105-0.083-0.158C42.622,41.831,42.634,41.518,42.555,41.414z\r\n\t\t\t\t M10.068,26.772c0.002,0.004,0.003,0.011,0.005,0.016v-0.016H10.068z M8.337,28.565c0,0.001-0.001,0.002-0.001,0.002\r\n\t\t\t\tc0.001,0.003,0.003,0.003,0.003,0.005C8.339,28.57,8.338,28.567,8.337,28.565z M8.356,28.609\r\n\t\t\t\tc-0.002-0.006-0.004-0.013-0.006-0.019v0.019H8.356z M14.998,24.644c-0.002-0.004-0.004-0.009-0.006-0.013\r\n\t\t\t\tc-0.021-0.006-0.042-0.013-0.064-0.019c-0.026,0.019-0.046,0.037-0.057,0.07c-0.004,0.002-0.009,0.004-0.013,0.006\r\n\t\t\t\tc-0.032-0.041-0.059-0.112-0.076-0.165v-0.007c0.122-0.058,0.118-0.025,0.216-0.114V24.37c-0.015-0.006-0.03-0.013-0.045-0.019\r\n\t\t\t\tc-0.042,0.02-0.082,0.042-0.14,0.045c-0.035-0.024-0.077-0.055-0.095-0.095c-0.006-0.006-0.013-0.013-0.019-0.019\r\n\t\t\t\tc0.049-0.04,0.097-0.081,0.146-0.121c0.013-0.015,0.026-0.03,0.038-0.045c-0.085-0.053-0.196-0.098-0.331-0.083\r\n\t\t\t\tc-0.013,0.023-0.025,0.047-0.038,0.07c-0.139,0.028-0.257-0.06-0.343-0.127v-0.019c0.036-0.036,0.072-0.072,0.108-0.108\r\n\t\t\t\tc-0.044-0.017-0.089-0.034-0.133-0.051c-0.111,0.022-0.1,0.134-0.21,0.159c-0.006-0.249,0.344-0.399,0.241-0.604\r\n\t\t\t\tc0.046-0.013,0.102-0.029,0.14-0.045c0.002-0.008,0.004-0.017,0.006-0.025c-0.004-0.011-0.009-0.021-0.013-0.032\r\n\t\t\t\tc-0.013-0.004-0.025-0.008-0.038-0.013c-0.078,0.021-0.157,0.042-0.235,0.064c-0.19,0.122-0.428,0.489-0.508,0.724\r\n\t\t\t\tc0.032,0.038,0.063,0.076,0.095,0.114c-0.085,0.09-0.178,0.003-0.235,0.165c-0.004,0.008-0.008,0.017-0.013,0.025\r\n\t\t\t\tc0.049,0.013,0.098,0.025,0.146,0.038c-0.09,0.09-0.264,0.111-0.324,0.229c-0.016,0.029,0.012,0.075,0.026,0.114\r\n\t\t\t\tc0.097-0.011,0.195-0.021,0.292-0.032c0.121,0.017,0.242,0.034,0.362,0.051c0.11,0.02,0.23-0.003,0.248-0.083\r\n\t\t\t\tc0.034-0.004,0.068-0.008,0.102-0.013v0.096c0.004,0.006,0.008,0.013,0.013,0.019c0.013-0.002,0.025-0.004,0.038-0.006\r\n\t\t\t\tc0.033-0.011,0.042-0.037,0.051-0.07c0.057,0.006,0.114,0.013,0.172,0.019v0.013c-0.121,0.055-0.153,0.168-0.305,0.21\r\n\t\t\t\tc-0.012,0.026-0.007,0.015,0,0.045c0.033,0.016,0.082,0.021,0.133,0.019c0.096-0.105,0.276-0.194,0.343-0.311\r\n\t\t\t\tc0.011,0.004,0.021,0.008,0.032,0.013c0.021,0.028,0.042,0.055,0.064,0.083c-0.002,0.068-0.031,0.109-0.064,0.146\r\n\t\t\t\tc0.002,0.017,0.004,0.034,0.006,0.051c0.017,0.002,0.034,0.004,0.051,0.006c0.025-0.021,0.051-0.042,0.076-0.063\r\n\t\t\t\tc0.004,0.036,0.008,0.072,0.013,0.108c0.053,0.015,0.106,0.03,0.159,0.045c0.031-0.093,0.108-0.194,0.095-0.299\r\n\t\t\t\tC14.985,24.767,14.974,24.733,14.998,24.644z M30.531,24.606c-0.011,0.008-0.021,0.017-0.032,0.025\r\n\t\t\t\tc0.014,0.032,0.014,0.022,0.057,0.019v0.006c-0.011,0.011-0.021,0.021-0.032,0.032c-0.002,0.004-0.004,0.008-0.006,0.013\r\n\t\t\t\tc0.021,0.009,0.042,0.017,0.063,0.026c-0.011,0.015-0.021,0.03-0.032,0.044c0.011,0.009,0.021,0.017,0.032,0.025\r\n\t\t\t\tc0.019,0.002,0.038,0.004,0.057,0.006v0.032c0.013,0.002,0.025,0.004,0.038,0.006c0.109-0.111,0.08-0.372,0.076-0.559\r\n\t\t\t\tc-0.008-0.006-0.017-0.013-0.025-0.019c-0.004,0.002-0.008,0.004-0.013,0.006c-0.004,0.03-0.008,0.059-0.013,0.089\r\n\t\t\t\tc-0.002,0.003-0.171,0.074-0.21,0.114c0.001,0.025,0.001,0.024,0.019,0.044c-0.009,0.007-0.017,0.013-0.026,0.019\r\n\t\t\t\tC30.493,24.58,30.509,24.579,30.531,24.606z M35.215,27.014c0.143-0.008,0.284-0.017,0.426-0.025\r\n\t\t\t\tc0.018-0.028,0.025-0.06,0.032-0.102c-0.045,0.028-0.097,0.035-0.146,0.064c-0.008-0.004-0.018-0.009-0.025-0.013\r\n\t\t\t\tc0.004-0.017,0.01-0.034,0.014-0.051c-0.002-0.002-0.004-0.004-0.007-0.006c-0.098,0.011-0.135,0.002-0.21-0.032\r\n\t\t\t\tc-0.07,0.006-0.14,0.013-0.21,0.019c-0.021-0.019-0.014-0.025-0.051-0.032c0.006-0.009,0.013-0.017,0.019-0.026\r\n\t\t\t\tc-0.004-0.006-0.008-0.013-0.013-0.019c-0.015,0.008-0.03,0.017-0.044,0.026c-0.034-0.012-0.057-0.014-0.076-0.038v-0.013\r\n\t\t\t\tc-0.011,0.013-0.01,0.012-0.013,0.038h-0.032c-0.006,0.032-0.013,0.063-0.02,0.095c0.088,0.039,0.261,0.031,0.356,0.07\r\n\t\t\t\tL35.215,27.014L35.215,27.014z M32.367,26.423c0.035-0.028,0.056-0.073,0.095-0.095c0.013-0.037-0.026-0.055-0.045-0.095\r\n\t\t\t\tc-0.036-0.095,0.072-0.224,0.103-0.292v-0.006c-0.059-0.014-0.121,0.013-0.172,0.025c-0.214,0.053-0.3,0.057-0.458-0.044\r\n\t\t\t\tc-0.091,0.081-0.209,0.007-0.254,0.152c0.043,0.085,0.104,0.06,0.191,0.102C32.004,26.254,32.172,26.367,32.367,26.423z\r\n\t\t\t\t M21.217,10.482c0.035-0.019,0.07-0.038,0.105-0.057c0.055-0.019,0.109-0.037,0.164-0.056c0.003-0.008,0.007-0.017,0.01-0.025\r\n\t\t\t\tc-0.104,0.008-0.218,0.043-0.302,0.036c-0.066,0.038-0.132,0.076-0.197,0.114c-0.025,0.014-0.069,0.026-0.071,0.048\r\n\t\t\t\tc0.004,0.002,0.008,0.004,0.013,0.006c0.045-0.002,0.096-0.023,0.138-0.036C21.123,10.502,21.17,10.492,21.217,10.482z\r\n\t\t\t\t M16.682,18.341c-0.01,0.031-0.094,0.043-0.109,0.087c0.001,0.002,0.001,0.003,0.002,0.005c0.076-0.011,0.12-0.032,0.157-0.06\r\n\t\t\t\tc0.001-0.015-0.005-0.022-0.016-0.032C16.705,18.339,16.7,18.338,16.682,18.341z M30.575,25.66\r\n\t\t\t\tc0.019-0.025,0.038-0.051,0.057-0.076c0.054-0.026,0.099,0,0.146,0.013c0.02-0.058,0.068-0.112,0.057-0.197\r\n\t\t\t\tc-0.006-0.047-0.013-0.093-0.019-0.14c0.006-0.036,0.036-0.069,0.044-0.095c0.031-0.095-0.097-0.241-0.153-0.26\r\n\t\t\t\tc-0.085,0.08-0.164,0.087-0.311,0.114c-0.004,0.004-0.008,0.008-0.013,0.013c0.017,0.081,0.077,0.106,0.095,0.197\r\n\t\t\t\tC30.517,25.416,30.356,25.615,30.575,25.66z M30.512,36.559c-0.028,0.032-0.044,0.092-0.089,0.108v0.058\r\n\t\t\t\tc0.013,0.004,0.025,0.008,0.038,0.012c0.082-0.01,0.066-0.094,0.127-0.127C30.57,36.578,30.553,36.568,30.512,36.559z\r\n\t\t\t\t M26.304,19.147c0.035-0.024,0.05-0.049,0.076-0.083c0.002-0.004,0.004-0.009,0.006-0.013c0.025,0.017,0.051,0.034,0.076,0.051\r\n\t\t\t\tc-0.033,0.09-0.136,0.211-0.089,0.305v0.013c0.082-0.047,0.165-0.094,0.235-0.152h0.025c0.006,0.028,0.013,0.055,0.019,0.083\r\n\t\t\t\tc-0.02,0.027-0.04,0.046-0.076,0.057c-0.009,0.057,0.008,0.105,0.051,0.127c0.034,0.062-0.106,0.181-0.121,0.28\r\n\t\t\t\tc0.051,0.013,0.102,0.025,0.153,0.038c0.024-0.018,0.033-0.026,0.038-0.064c0.038,0.011,0.076,0.021,0.114,0.032\r\n\t\t\t\tc0.138-0.008,0.086-0.079,0.267-0.032c-0.045,0.057-0.103,0.092-0.121,0.178c0.025,0.053,0.055,0.069,0.089,0.108\r\n\t\t\t\tc0.036-0.007,0.072-0.013,0.108-0.019h0.006c-0.005,0.156-0.076,0.23-0.013,0.356v0.006c-0.215,0.003-0.415,0.024-0.489,0.172\r\n\t\t\t\tv0.006h0.133v0.013c0.023,0.036,0.008,0.103,0.006,0.159c-0.078,0.113-0.267,0.119-0.299,0.178\r\n\t\t\t\tc-0.011,0.011-0.021,0.021-0.032,0.032c0.025,0.021,0.051,0.042,0.076,0.064c0.085,0.002,0.169,0.004,0.254,0.006\r\n\t\t\t\tc0.061,0.03,0.123,0.059,0.184,0.089h0.013c0.09-0.005,0.137-0.049,0.203-0.076c-0.029,0.06-0.086,0.099-0.089,0.172\r\n\t\t\t\tc-0.131,0.033-0.232-0.046-0.343,0.006c-0.036,0.041-0.02,0.083-0.095,0.07c-0.013,0.136-0.232,0.282-0.35,0.318\r\n\t\t\t\tc-0.002,0.004-0.004,0.009-0.006,0.013c0.032,0.009,0.064,0.017,0.095,0.026c0.015,0.015,0.03,0.03,0.045,0.045\r\n\t\t\t\tc0.052-0.069,0.127-0.122,0.216-0.153c0.045,0.021,0.07,0.005,0.095-0.013c0.108,0.059,0.203,0.111,0.21-0.089\r\n\t\t\t\tc0.2-0.024,0.253-0.004,0.439,0.013c-0.004-0.015-0.009-0.03-0.013-0.044c0.085-0.013,0.17-0.025,0.254-0.038\r\n\t\t\t\tc0.048-0.007,0.063,0.026,0.095,0.032c0.042-0.011,0.085-0.021,0.127-0.032c0.061,0.009,0.123,0.017,0.184,0.025\r\n\t\t\t\tc0.074-0.014,0.1-0.073,0.203-0.064c0.004-0.059,0.085-0.077,0.133-0.089V21.17h-0.013c-0.014-0.009-0.237-0.029-0.299-0.032\r\n\t\t\t\tV21.13c0.107-0.031,0.369-0.204,0.4-0.299c-0.006-0.055-0.013-0.11-0.019-0.165c-0.087-0.068-0.271-0.169-0.369-0.032\r\n\t\t\t\tc-0.034-0.007-0.068-0.013-0.102-0.019c0.135-0.201,0.055-0.175-0.076-0.318c-0.002-0.002,0.009-0.153-0.025-0.203\r\n\t\t\t\tc-0.049-0.064-0.097-0.127-0.146-0.191c-0.055-0.03-0.115-0.006-0.153-0.051c-0.069-0.084-0.056-0.196-0.095-0.299\r\n\t\t\t\tc-0.031-0.053-0.237-0.227-0.318-0.222c-0.131,0.007-0.14,0.075-0.305,0.006c-0.002-0.004-0.004-0.008-0.006-0.013\r\n\t\t\t\tc0.123,0.003,0.258-0.01,0.311-0.076c0.004-0.002,0.008-0.004,0.013-0.006c-0.034-0.019-0.068-0.038-0.102-0.057\r\n\t\t\t\tc-0.002-0.004-0.004-0.009-0.006-0.013c0.198-0.003,0.277-0.285,0.331-0.426c0.013-0.025,0.001-0.021-0.013-0.051\r\n\t\t\t\tc-0.1-0.073-0.46-0.024-0.623-0.025c-0.006-0.009-0.013-0.017-0.019-0.025c0.017-0.197,0.253-0.175,0.324-0.311\r\n\t\t\t\tc0.035-0.032,0.013-0.032-0.006-0.07c-0.129-0.052-0.288,0.077-0.407,0.045c-0.038-0.023-0.076-0.047-0.114-0.07\r\n\t\t\t\tc-0.019,0.025-0.038,0.051-0.057,0.076c0.019,0.03,0.038,0.059,0.057,0.089c-0.04,0.013-0.08,0.025-0.121,0.038\r\n\t\t\t\tc0.025,0.051,0.051,0.102,0.076,0.152c-0.05,0.002-0.083-0.003-0.127-0.019c-0.039,0.01-0.054,0.039-0.07,0.07\r\n\t\t\t\tc0.027,0.032,0.055,0.064,0.083,0.095c-0.019,0.03-0.061,0.028-0.076,0.051c0.009,0.04,0.017,0.08,0.026,0.121\r\n\t\t\t\tc0,0-0.102,0.182-0.114,0.203C26.262,19.126,26.283,19.136,26.304,19.147z M23.552,15.69c0.122,0.059,0.229,0.003,0.261-0.114\r\n\t\t\t\tc0.002-0.025,0.004-0.051,0.006-0.076c0.061-0.015,0.123-0.03,0.184-0.045c0.041-0.073,0.083-0.252,0.019-0.337\r\n\t\t\t\tc-0.041-0.048-0.155-0.016-0.222-0.038c-0.027-0.017-0.055-0.034-0.083-0.051c-0.016-0.036-0.003-0.092,0.013-0.134\r\n\t\t\t\tc-0.008-0.015-0.017-0.03-0.025-0.045c-0.139-0.061-0.251-0.035-0.311-0.172c-0.039-0.024-0.106-0.033-0.172-0.032v0.159\r\n\t\t\t\tc-0.129,0.091-0.311,0.046-0.483,0.025c0.022,0.049,0.05,0.087,0.044,0.146c-0.091-0.002-0.162-0.057-0.191-0.121\r\n\t\t\t\tc-0.062-0.048-0.149-0.012-0.216,0.038c0.011,0.034,0.021,0.068,0.032,0.102v0.007c-0.017,0.006-0.034,0.013-0.051,0.019\r\n\t\t\t\tc-0.074-0.049-0.145-0.122-0.178-0.21h-0.006c-0.017,0.011-0.034,0.021-0.051,0.032c-0.031,0.052-0.008,0.145-0.006,0.229\r\n\t\t\t\tc-0.045,0.048-0.112,0.04-0.172,0.076c-0.032,0.029-0.064,0.059-0.095,0.089c-0.034-0.049-0.068-0.097-0.102-0.146\r\n\t\t\t\tc-0.02-0.043,0.074-0.098,0.057-0.178c-0.035-0.162-0.262-0.199-0.413-0.241c-0.015,0.017-0.03,0.034-0.044,0.051\r\n\t\t\t\tc-0.004,0.004-0.008,0.008-0.013,0.013c0.042,0.031,0.085,0.071,0.102,0.127v0.006c-0.138,0.096-0.242-0.171-0.324,0.006\r\n\t\t\t\tc0.025,0.034,0.051,0.068,0.076,0.102c0.006,0.006,0.013,0.013,0.019,0.019c-0.08,0.017-0.198,0.021-0.261,0.051\r\n\t\t\t\tc-0.006,0.028-0.008,0.049,0.006,0.07c0.103,0.167,0.277-0.021,0.451,0.007c0.098,0.015,0.167,0.047,0.241,0.076\r\n\t\t\t\tc0.004,0.021,0.009,0.043,0.013,0.064c-0.006,0.019-0.013,0.038-0.019,0.057c-0.108,0.081-0.481,0.067-0.534,0.165\r\n\t\t\t\tc-0.002,0.006-0.004,0.013-0.006,0.019c0.008,0.013,0.017,0.025,0.025,0.038c0.081,0.034,0.262-0.022,0.349-0.038\r\n\t\t\t\tc0.073,0.086,0.103,0.124,0.254,0.14c-0.088,0.128-0.197,0.136-0.292,0.235c0.102,0.124,0.465,0.012,0.616,0.07\r\n\t\t\t\tc0.049,0.034,0.097,0.068,0.146,0.102c0.079,0.046,0.211,0.06,0.311,0.076c0.267,0.044,0.261-0.127,0.369-0.172\r\n\t\t\t\tc0.102-0.013,0.203-0.025,0.305-0.038C23.322,15.873,23.442,15.767,23.552,15.69z M25.078,20.894\r\n\t\t\t\tc-0.023,0.009-0.047,0.017-0.07,0.026c-0.007,0.033,0.006,0.053,0.013,0.089c0.036-0.004,0.072-0.008,0.108-0.013\r\n\t\t\t\tc0.017,0.048,0.015,0.085,0.013,0.146c0.12-0.007,0.193-0.047,0.273-0.07c0.034-0.002,0.068-0.004,0.102-0.006\r\n\t\t\t\tc0.076-0.055,0.153-0.11,0.229-0.165c0.074-0.007,0.148-0.013,0.222-0.019c0.008-0.013,0.017-0.025,0.025-0.038\r\n\t\t\t\tc0.049-0.002,0.097-0.004,0.146-0.006c0.016-0.107,0.079-0.154,0.102-0.229c0.037-0.123-0.067-0.364-0.121-0.439\r\n\t\t\t\tc0.126-0.037,0.169-0.056,0.229-0.159c-0.018-0.123-0.068-0.218-0.102-0.324c-0.094-0.067-0.283-0.037-0.4,0.013\r\n\t\t\t\tc-0.064-0.001-0.088-0.026-0.102-0.076c-0.149,0.013-0.194,0.075-0.229,0.203c-0.025,0.006-0.051,0.013-0.076,0.019\r\n\t\t\t\tc-0.006,0.009-0.013,0.017-0.019,0.025h0.184c-0.025,0.064-0.066,0.089-0.133,0.108c-0.001,0.021,0.008,0.04,0.019,0.063\r\n\t\t\t\tc-0.128-0.01-0.273-0.013-0.375-0.051c-0.045,0.036-0.065,0.068-0.083,0.134v0.038c0.057-0.015,0.088-0.022,0.127,0.013h0.013\r\n\t\t\t\tc-0.037,0.042-0.05,0.035-0.038,0.102c-0.03,0.006-0.059,0.013-0.089,0.019c0.008,0.009,0.017,0.017,0.025,0.025\r\n\t\t\t\tc-0.013,0.017-0.025,0.034-0.038,0.051c0.051,0.024,0.293,0.068,0.343,0.038c0.006,0.017,0.013,0.034,0.019,0.051\r\n\t\t\t\tc-0.083,0.035-0.129,0.014-0.165,0.095c-0.008,0.022-0.004,0.012,0.013,0.038c-0.013,0.019-0.025,0.038-0.038,0.057\r\n\t\t\t\tc-0.004,0.004-0.008,0.008-0.013,0.013c0.047-0.006,0.093-0.013,0.14-0.019c-0.018,0.068-0.092,0.065-0.159,0.076\r\n\t\t\t\tc-0.021,0.026-0.02,0.078-0.044,0.102c-0.032,0.024-0.13,0.015-0.184,0.013c-0.002,0.015-0.004,0.03-0.006,0.044\r\n\t\t\t\tc0.047,0.002,0.093,0.004,0.14,0.006L25.078,20.894L25.078,20.894z M26.336,19.465c-0.008,0.048-0.009,0.074,0,0.121\r\n\t\t\t\tc0.011,0.002,0.021,0.004,0.032,0.006c0.011-0.013,0.021-0.025,0.032-0.038c-0.004-0.034-0.009-0.068-0.013-0.102\r\n\t\t\t\tC26.37,19.456,26.353,19.46,26.336,19.465z M37.611,27.116c0.022-0.013,0.016-0.005,0.019-0.038\r\n\t\t\t\tc0.146-0.004,0.169-0.092,0.292-0.102c-0.015-0.019-0.029-0.038-0.045-0.057c0.053-0.068,0.135-0.101,0.191-0.165\r\n\t\t\t\tc-0.101,0.036-0.199,0.072-0.299,0.108c-0.06-0.006-0.119-0.013-0.179-0.019c0.011,0.023,0.013,0.039,0,0.064\r\n\t\t\t\tc-0.006,0.006-0.171,0.045-0.184,0.045c0.012,0.053,0.028,0.071,0.045,0.114C37.497,27.08,37.576,27.089,37.611,27.116z\r\n\t\t\t\t M8.363,28.654h0.006c-0.002-0.006-0.004-0.013-0.006-0.019V28.654z M14.54,13.788c0.035-0.025,0.102-0.125,0.045-0.175\r\n\t\t\t\tc-0.059,0.063-0.171,0.08-0.068,0.171C14.525,13.786,14.532,13.787,14.54,13.788z M8.375,28.698h0.006\r\n\t\t\t\tc-0.004-0.015-0.008-0.029-0.013-0.044C8.371,28.668,8.373,28.683,8.375,28.698z M8.433,28.838\r\n\t\t\t\tc0.006,0.004,0.013,0.008,0.019,0.013c-0.023-0.051-0.047-0.102-0.07-0.153C8.389,28.761,8.414,28.792,8.433,28.838z\r\n\t\t\t\t M21.4,11.563c-0.005,0-0.01,0.001-0.015,0.001c-0.058,0.053-0.117,0.105-0.175,0.158c-0.053,0.024-0.106,0.048-0.158,0.072\r\n\t\t\t\tc-0.038,0.029-0.035,0.1-0.05,0.136c-0.008,0.019-0.056,0.102-0.048,0.112c0.02,0.01,0.135-0.027,0.152-0.034\r\n\t\t\t\tc0.041-0.017,0.077-0.038,0.104-0.06c0.011-0.01,0.021-0.021,0.032-0.031c0.029-0.01,0.059-0.019,0.088-0.029\r\n\t\t\t\tc0.028-0.025,0.056-0.049,0.084-0.074c0.003-0.003,0.007-0.007,0.01-0.01c0.014,0.009,0.038,0.018,0.063,0.008\r\n\t\t\t\tc0.047-0.026,0.042-0.069,0.098-0.095C21.602,11.666,21.437,11.588,21.4,11.563z M21.72,10.584c0.002,0,0.003-0.001,0.005-0.001\r\n\t\t\t\tc-0.005-0.006-0.009-0.013-0.014-0.019c-0.016,0.002-0.032,0.005-0.048,0.007c-0.148-0.003-0.224-0.095-0.411-0.061\r\n\t\t\t\tc-0.054,0.025-0.235,0.062-0.254,0.094c-0.029,0.048,0.077,0.08,0.116,0.089c0.134,0.033,0.307,0.006,0.465,0.018\r\n\t\t\t\tc0.029,0.002,0.079,0.007,0.099,0.019c0.015,0.009,0.022,0.026,0.042,0.03c0.032,0.001,0.089-0.042,0.103-0.056\r\n\t\t\t\tc0.001-0.001,0.003-0.002,0.004-0.003c-0.082-0.021-0.2-0.02-0.258-0.064C21.619,10.62,21.669,10.602,21.72,10.584z\r\n\t\t\t\t M14.242,41.547c0.147,0.036,0.426-0.012,0.508-0.107c0.048-0.057,0.064-0.207,0.095-0.268c-0.057-0.054-0.445-0.061-0.591-0.057\r\n\t\t\t\tC14.175,41.239,14.197,41.443,14.242,41.547z M10.822,34.354c0.015,0.039,0.009,0.092,0.013,0.135\r\n\t\t\t\tc0.086,0.021,0.114-0.016,0.203-0.02c0.117-0.003,0.196,0.036,0.216-0.095c-0.077-0.062-0.285-0.049-0.4-0.051\r\n\t\t\t\tC10.843,34.333,10.833,34.343,10.822,34.354z M12.735,25.375c-0.017-0.011-0.034-0.021-0.051-0.032\r\n\t\t\t\tc-0.011-0.1,0.084-0.092,0.133-0.146c0.043-0.048,0.06-0.154,0.095-0.203c-0.04-0.027-0.081-0.055-0.121-0.083\r\n\t\t\t\tc-0.045,0.101-0.251,0.268-0.216,0.413c0.05,0.208,0.421,0.141,0.47-0.025C12.9,25.097,12.854,25.337,12.735,25.375z\r\n\t\t\t\t M10.93,37.912c-0.004,0.006-0.008,0.013-0.013,0.02c0.044,0.002,0.042,0.01,0.063,0.031c-0.012,0.031-0.012,0.051,0,0.083\r\n\t\t\t\tc-0.034,0.015-0.068,0.03-0.102,0.044c-0.004,0.006-0.009,0.014-0.013,0.02v0.007c0.085,0,0.174-0.005,0.242-0.013\r\n\t\t\t\tc0.02-0.082-0.008-0.158,0.032-0.217v-0.006h-0.038C11.059,37.904,10.99,37.913,10.93,37.912z M10.015,33.979\r\n\t\t\t\tc-0.092-0.017-0.212,0.006-0.261-0.082c-0.045,0.004-0.062,0.022-0.089,0.031c-0.04-0.004-0.081-0.008-0.121-0.013\r\n\t\t\t\tc-0.04,0.009-0.059,0.049-0.127,0.038c-0.109-0.018-0.194-0.057-0.324-0.057C9.066,33.9,9.038,33.904,9.01,33.909\r\n\t\t\t\tc-0.006,0.008-0.013,0.017-0.019,0.026v0.024c0.064,0.033,0.195,0.03,0.229,0.095c0.046,0.078-0.076,0.146,0.095,0.211\r\n\t\t\t\tc0.004,0.006,0.008,0.012,0.013,0.019c-0.128,0.082-0.41,0.036-0.572-0.013c-0.013,0.015-0.025,0.029-0.038,0.045\r\n\t\t\t\tc-0.002,0.004-0.004,0.008-0.006,0.013c0.034,0.065,0.099,0.077,0.152,0.121c0.05-0.013,0.053-0.048,0.102-0.058\r\n\t\t\t\tc0.076,0.012,0.153,0.021,0.229,0.032c0.078-0.006,0.157-0.013,0.235-0.019c0.048,0.048,0.109,0.15,0.178,0.172\r\n\t\t\t\tc0.044-0.114,0.093-0.196,0.203-0.248c0.021,0.023,0.042,0.047,0.064,0.07c0.075,0.033,0.112-0.061,0.178-0.076\r\n\t\t\t\tc0.044-0.012,0.074,0.012,0.095,0.019c0.129-0.06,0.183,0.046,0.248,0.083c0.039-0.029,0.062-0.074,0.089-0.113\r\n\t\t\t\tC10.38,34.159,10.076,34.16,10.015,33.979z M7.581,34.385c0.019,0.027,0.251,0.17,0.311,0.153\r\n\t\t\t\tc0.044-0.013,0.058-0.078,0.14-0.058c0.051,0.014,0.064,0.041,0.127,0.039c0.002-0.012,0.004-0.021,0.006-0.033\r\n\t\t\t\tc-0.073-0.109-0.33-0.157-0.515-0.152C7.628,34.352,7.604,34.368,7.581,34.385z"},"children":[{"name":"path","attribs":{"d":"M31.446,19.655c0.015,0.03,0.03,0.059,0.044,0.089c0.057-0.013,0.103-0.074,0.133-0.115c0.012-0.009,0.004,0,0.013-0.013\r\n\t\t\t\tc-0.023-0.013-0.047-0.026-0.07-0.038c-0.002-0.004-0.004-0.008-0.006-0.013c0.069-0.055,0.095-0.122,0.076-0.235\r\n\t\t\t\tc-0.03-0.002-0.059-0.004-0.089-0.006c-0.026,0.029-0.04,0.127-0.051,0.165c-0.058-0.027-0.089-0.049-0.108-0.114\r\n\t\t\t\tc-0.004-0.002-0.009-0.004-0.013-0.006c-0.078,0.099-0.18,0.095-0.076,0.267C31.324,19.671,31.398,19.659,31.446,19.655z\r\n\t\t\t\t M43.382,11.985c0.203,0.031,0.324,0.15,0.496,0.203c-0.004,0.021-0.009,0.042-0.013,0.064c-0.084,0.038-0.182,0.051-0.172,0.172\r\n\t\t\t\tc0.094,0.018,0.164,0.009,0.279,0.006c0.026,0.034,0.051,0.068,0.076,0.102c0.094,0.039,0.143-0.06,0.21-0.083\r\n\t\t\t\tc0.155,0.002,0.31,0.004,0.464,0.007c-0.006-0.127-0.177-0.162-0.254-0.223c-0.136-0.107-0.215-0.333-0.254-0.534\r\n\t\t\t\tc-0.085-0.43,0.254-0.283,0.292-0.597c-0.065-0.023-0.131-0.047-0.196-0.07c-0.172-0.022-0.357,0.059-0.478,0.089\r\n\t\t\t\tc-0.072,0.004-0.144,0.008-0.216,0.013c-0.088,0.044-0.135,0.159-0.235,0.203c-0.004,0.007-0.009,0.013-0.013,0.019\r\n\t\t\t\tc0.051,0.026,0.093,0.062,0.165,0.064c-0.037,0.109-0.134,0.278-0.241,0.311c-0.072,0.022-0.115-0.021-0.172-0.019\r\n\t\t\t\tc-0.049,0.061-0.104,0.114-0.07,0.229c0.02,0.025,0.038,0.051,0.057,0.076C43.251,12.115,43.275,11.969,43.382,11.985z\r\n\t\t\t\t M20.926,10.303c-0.046,0.008-0.091,0.016-0.137,0.024c-0.018,0.026-0.036,0.077-0.072,0.095\r\n\t\t\t\tc0.061,0.013,0.304-0.051,0.354-0.078C21.07,10.309,20.97,10.301,20.926,10.303z M31.37,7.524\r\n\t\t\t\tc0.061-0.032,0.123-0.064,0.184-0.095c0.036,0.055,0.072,0.11,0.108,0.165c-0.076,0.036-0.153,0.072-0.229,0.108\r\n\t\t\t\tc0.055,0.135,0.434,0.457,0.623,0.388c0.163-0.06,0.211-0.226,0.35-0.312c0.086,0.097,0.287,0.173,0.438,0.197v0.006\r\n\t\t\t\tc-0.178,0.189-0.512,0.185-0.769,0.299h-0.013c0.023,0.049,0.047,0.097,0.07,0.146c0.248-0.018,0.442-0.069,0.661-0.089\r\n\t\t\t\tc0.027,0.025,0.055,0.051,0.083,0.076c-0.103,0.131-0.323,0.152-0.559,0.146c-0.023,0.034-0.047,0.068-0.07,0.102\r\n\t\t\t\tc-0.004,0.004-0.008,0.008-0.013,0.013c0.102,0.062,0.562,0.443,0.718,0.4c0.032-0.019,0.063-0.038,0.095-0.057\r\n\t\t\t\tc-0.001-0.177,0.066-0.321,0.159-0.407c0.028-0.029,0.124-0.04,0.172-0.044c0.038-0.081,0.076-0.161,0.114-0.242\r\n\t\t\t\tc0.058-0.144,0.054-0.343,0.178-0.419c0.094-0.021,0.188-0.043,0.28-0.064c0.053-0.026,0.106-0.051,0.159-0.076\r\n\t\t\t\tc-0.049-0.083-0.189-0.174-0.28-0.21c-0.082-0.032-0.163-0.021-0.229-0.063c-0.057-0.074-0.113-0.148-0.172-0.222\r\n\t\t\t\tc-0.078,0-0.117,0.083-0.172,0.127C33.238,7.389,33.219,7.38,33.2,7.372c-0.034-0.072,0.005-0.174,0.006-0.28\r\n\t\t\t\tc-0.021-0.015-0.042-0.03-0.063-0.045h-0.172c-0.066-0.021-0.113-0.079-0.211-0.089C32.725,7,32.688,7.043,32.652,7.085\r\n\t\t\t\tc-0.041,0.109,0.107,0.294,0.127,0.4c-0.02,0.017-0.038,0.034-0.057,0.051c-0.109-0.025-0.307-0.287-0.351-0.381\r\n\t\t\t\tc-0.075-0.059-0.101-0.039-0.191,0c-0.015,0.076-0.03,0.153-0.044,0.229v0.013c-0.074-0.015-0.148-0.03-0.222-0.045\r\n\t\t\t\tc-0.036-0.055-0.041-0.146-0.038-0.242c-0.077-0.016-0.176,0.02-0.235,0.032c-0.047-0.004-0.093-0.008-0.14-0.013\r\n\t\t\t\tc-0.146,0.013-0.218,0.074-0.305,0.14C31.219,7.367,31.286,7.485,31.37,7.524z M34.414,7.117v0.006\r\n\t\t\t\tc-0.066,0.146-0.102,0.233-0.28,0.267v0.114c0.275,0.013,0.552,0.025,0.826,0.038c0.06-0.04,0.119-0.081,0.179-0.121\r\n\t\t\t\tc0.077-0.033,0.161-0.016,0.254-0.045c0.078-0.04,0.156-0.08,0.234-0.121c0.104-0.078,0.208-0.157,0.311-0.235\r\n\t\t\t\tc0.002-0.004,0.004-0.008,0.006-0.013c-0.022-0.038-0.047-0.076-0.069-0.114c-0.062-0.017-0.123-0.034-0.185-0.051\r\n\t\t\t\tc-0.119-0.023-0.25,0.029-0.375,0.026c-0.024-0.051-0.051-0.102-0.075-0.153c-0.03-0.011-0.06-0.021-0.089-0.032\r\n\t\t\t\tc-0.133,0.016-0.224,0.14-0.286,0.229h-0.108c-0.027-0.1-0.003-0.248,0.025-0.343c-0.137,0.061-0.143,0.232-0.268,0.292\r\n\t\t\t\tc-0.011,0.011-0.021,0.021-0.031,0.032c-0.168-0.256-0.328-0.017-0.496-0.134c-0.059-0.07-0.119-0.14-0.178-0.21\r\n\t\t\t\tc-0.082,0.106-0.162,0.212-0.242,0.318c-0.086,0.062-0.15,0.069-0.196,0.172c-0.004,0.004-0.009,0.008-0.013,0.013\r\n\t\t\t\tC33.594,7.203,34.035,7.121,34.414,7.117z M20.993,9.697c0.035,0.033,0.134,0.07,0.225,0.035c0.034-0.013,0.049-0.034,0.076-0.05\r\n\t\t\t\tc0.019-0.02,0.038-0.04,0.057-0.061C21.277,9.6,21.247,9.54,21.129,9.564C21.066,9.601,20.983,9.637,20.993,9.697z M21.388,8.988\r\n\t\t\t\tc-0.081,0.009-0.125-0.079-0.169-0.114c-0.024,0.041-0.114,0.079-0.126,0.107c0,0,0.086,0.119,0.094,0.127\r\n\t\t\t\tc0.011,0.01,0.028,0.019,0.044,0.023c0.039-0.003,0.22-0.108,0.242-0.129c0.013-0.013,0.03-0.035,0.009-0.052\r\n\t\t\t\tC21.451,8.925,21.406,8.976,21.388,8.988z M20.989,9.241c-0.031,0.049,0.059,0.128,0.12,0.118\r\n\t\t\t\tc0.061-0.054,0.045-0.074-0.037-0.096C21.044,9.256,21.017,9.248,20.989,9.241z M20.988,9.24L20.988,9.24\r\n\t\t\t\tc0.003-0.004-0.005-0.009-0.001-0.012C20.987,9.233,20.988,9.237,20.988,9.24z M30.588,18.905\r\n\t\t\t\tc0.119-0.015,0.252,0.008,0.413-0.006c0.016-0.051,0.02-0.072,0.064-0.095c-0.01-0.113-0.024-0.131,0.025-0.21\r\n\t\t\t\tc-0.011-0.004-0.021-0.008-0.032-0.013c-0.006,0.01-0.013,0.021-0.019,0.032c-0.055,0.015-0.11,0.03-0.165,0.044\r\n\t\t\t\tc-0.059,0.043-0.078,0.143-0.153,0.172c-0.076,0.008-0.153,0.017-0.229,0.025c-0.051,0.023-0.079,0.083-0.102,0.133\r\n\t\t\t\tc0.028,0.028,0.055,0.055,0.083,0.083C30.523,19.013,30.565,18.998,30.588,18.905z M10.002,26.709v0.006\r\n\t\t\t\tc0.013,0.019,0.025,0.038,0.038,0.057h0.027c-0.006-0.014-0.006-0.034-0.015-0.051C10.036,26.717,10.019,26.713,10.002,26.709z\r\n\t\t\t\t M42.956,34.189c-0.052-0.021-0.103-0.043-0.153-0.064c-0.119,0.085-0.214,0.171-0.388,0.21c-0.076,0.017-0.146-0.017-0.19-0.024\r\n\t\t\t\tc-0.086-0.018-0.14,0.054-0.197,0.069c-0.06-0.006-0.119-0.013-0.178-0.019h-0.014c-0.072,0.047-0.145,0.093-0.216,0.14\r\n\t\t\t\tc-0.099,0.036-0.13-0.06-0.242-0.038c-0.091,0.04-0.183,0.08-0.272,0.121h-0.179c-0.091-0.1-0.215-0.211-0.272-0.337\r\n\t\t\t\tc-0.055-0.015-0.129-0.003-0.191-0.013c-0.004-0.002-0.009-0.004-0.013-0.006v-0.014c0.069-0.033,0.208-0.09,0.261-0.146\r\n\t\t\t\tc-0.006-0.168-0.232-0.211-0.33-0.305c-0.018-0.016-0.033-0.139-0.089-0.19c-0.026-0.024-0.075-0.007-0.108-0.025\r\n\t\t\t\tc-0.088-0.098-0.178-0.194-0.267-0.292c-0.035-0.016-0.076-0.009-0.127-0.006c-0.039-0.055-0.074-0.139-0.133-0.172\r\n\t\t\t\tc-0.019,0.025-0.013,0.083-0.019,0.107c-0.005,0.002-0.009,0.004-0.014,0.008c-0.182-0.153-0.225-0.623-0.331-0.864\r\n\t\t\t\tc-0.049-0.112-0.295-0.163-0.362-0.254c-0.105-0.144-0.037-0.516-0.089-0.724c-0.032-0.135-0.153-0.35-0.254-0.426\r\n\t\t\t\tc-0.05-0.038-0.123-0.051-0.159-0.102c-0.045-0.062-0.051-0.162-0.076-0.242c0.023-0.021,0.047-0.042,0.07-0.064\r\n\t\t\t\tc-0.051-0.051-0.102-0.102-0.152-0.152c-0.14-0.209-0.24-0.462-0.369-0.667c-0.055-0.144-0.11-0.288-0.166-0.432\r\n\t\t\t\tc-0.094-0.171-0.256-0.287-0.299-0.521c0.033-0.045,0.039-0.066,0.096-0.089c0.08,0.245,0.223,0.49,0.4,0.642\r\n\t\t\t\tc0.019,0.021,0.047,0.019,0.075,0.013c0.08-0.159,0.058-0.398,0.185-0.508c-0.074-0.191-0.148-0.381-0.223-0.572\r\n\t\t\t\tc-0.121,0.015-0.164,0.113-0.337,0.019c-0.112,0.08-0.157,0.011-0.28,0.032c-0.041-0.043-0.076-0.051-0.095-0.121\r\n\t\t\t\tc-0.215-0.044-0.454,0.008-0.604,0.108c-0.039,0.032-0.08,0.063-0.12,0.095c-0.079,0.017-0.155-0.048-0.21-0.064\r\n\t\t\t\tc-0.061-0.006-0.123-0.013-0.184-0.019c-0.014-0.017-0.025-0.034-0.039-0.051c-0.147-0.032-0.297-0.064-0.444-0.095h-0.318\r\n\t\t\t\tc-0.058-0.026-0.045-0.125-0.108-0.146h-0.146c-0.077-0.012-0.25-0.041-0.324-0.07c-0.069-0.038-0.032-0.128-0.133-0.172\r\n\t\t\t\tc-0.258-0.113-0.681,0.039-0.782,0.21c-0.137,0.231,0.168,0.358-0.146,0.527c-0.038,0.02-0.089,0.07-0.146,0.064\r\n\t\t\t\tc-0.154-0.018-0.267-0.184-0.4-0.235c-0.133-0.05-0.434-0.054-0.541-0.114c-0.118-0.068-0.136-0.311-0.24-0.35\r\n\t\t\t\tc-0.058-0.021-0.105-0.003-0.152-0.025c-0.028-0.025-0.055-0.051-0.083-0.076c-0.066-0.013-0.131-0.025-0.197-0.038\r\n\t\t\t\tc-0.095,0.006-0.191,0.013-0.286,0.019c-0.129-0.055-0.258-0.11-0.388-0.165c-0.009-0.034-0.017-0.068-0.025-0.102\r\n\t\t\t\tc-0.061-0.005-0.069,0.013-0.121,0.025c-0.082-0.04-0.182-0.111-0.203-0.21c0.059-0.065,0.326-0.286,0.324-0.369\r\n\t\t\t\tc-0.011-0.042-0.021-0.085-0.032-0.127c-0.337-0.192,0.008-0.272,0.006-0.483c-0.064,0.038-0.127,0.076-0.191,0.115\r\n\t\t\t\tc-0.011-0.002-0.021-0.004-0.032-0.006c-0.018-0.04-0.036-0.072-0.038-0.127c-0.047-0.021-0.093-0.042-0.14-0.064\r\n\t\t\t\tc-0.03,0.004-0.059,0.009-0.089,0.013c-0.095,0.036-0.266,0.212-0.432,0.165c-0.024-0.007-0.062-0.069-0.14-0.096\r\n\t\t\t\tc-0.063,0.009-0.084,0.051-0.133,0.076c-0.076-0.012-0.113-0.06-0.178-0.083c-0.078,0.055-0.155,0.115-0.267,0.14\r\n\t\t\t\tc-0.173,0.039-0.303-0.115-0.502-0.063c-0.038,0.021-0.076,0.042-0.114,0.063c-0.073,0.026-0.104-0.027-0.159-0.019\r\n\t\t\t\tc-0.047,0.021-0.093,0.042-0.14,0.064c-0.145,0.03-0.312-0.005-0.432,0.044c-0.114,0.047-0.181,0.142-0.267,0.216\r\n\t\t\t\tc-0.046-0.004-0.065-0.015-0.089-0.038c-0.039,0.007-0.209,0.066-0.242,0.089c-0.08,0.057-0.073,0.137-0.191,0.172\r\n\t\t\t\tc-0.13,0.038-0.283-0.002-0.318-0.089c-0.007-0.002-0.345,0.103-0.477,0.064c-0.138-0.041-0.19-0.153-0.28-0.242\r\n\t\t\t\tc-0.032,0.015-0.064,0.03-0.095,0.045c-0.071,0.054-0.17,0.43-0.248,0.534c-0.114,0.152-0.324,0.164-0.483,0.273\r\n\t\t\t\tc-0.054,0.037-0.227,0.186-0.248,0.241c-0.022,0.058,0.009,0.132-0.019,0.191c-0.035,0.073-0.121,0.127-0.153,0.21\r\n\t\t\t\tc-0.075,0.199,0.155,0.303-0.006,0.54c-0.101,0.149-0.406,0.41-0.578,0.483c-0.089,0.038-0.211,0.03-0.305,0.076\r\n\t\t\t\tc-0.108,0.053-0.13,0.288-0.203,0.381c-0.059,0.074-0.188,0.088-0.242,0.165c-0.056,0.081-0.105,0.204-0.127,0.311\r\n\t\t\t\tc-0.002,0.044-0.004,0.089-0.006,0.134c-0.04,0.101-0.18,0.151-0.242,0.235c-0.063,0.146-0.127,0.292-0.191,0.438\r\n\t\t\t\tc-0.047,0.051-0.093,0.102-0.14,0.153c-0.056,0.084-0.082,0.256-0.064,0.388c0.015-0.017,0.03-0.034,0.044-0.051\r\n\t\t\t\tc0.199,0.016,0.209,0.339,0.114,0.477c0.233,0.184,0.095,0.554,0.025,0.788c-0.008,0.067-0.017,0.136-0.025,0.203\r\n\t\t\t\tc-0.037,0.135-0.145,0.317-0.273,0.362c-0.002,0.004-0.004,0.008-0.006,0.013c0.181,0.075,0.181,0.271,0.267,0.311\r\n\t\t\t\tc0.01,0.021,0.013,0.041,0.013,0.076c-0.019,0.004-0.038,0.008-0.057,0.013c-0.049,0.069-0.01,0.178-0.032,0.262\r\n\t\t\t\tc0.08,0.135,0.04,0.035,0.14,0.102c0.004,0.016,0.008,0.03,0.013,0.044c0.042,0.024,0.085,0.052,0.127,0.076\r\n\t\t\t\tc0.063-0.013,0.153-0.052,0.203,0.006c-0.039,0.048-0.093,0.079-0.076,0.165c0.026,0.018,0.08,0.021,0.102,0.044\r\n\t\t\t\tc0.015,0.021,0.01,0.028,0.006,0.058c0.034,0.022,0.057,0.033,0.121,0.031c0.011,0.033,0.011,0.061,0,0.096\r\n\t\t\t\tc0.065,0.068,0.166,0.135,0.267,0.164c0.006,0.032,0.013,0.063,0.019,0.096c0.033,0.061,0.118,0.08,0.14,0.158v0.096\r\n\t\t\t\tc0.014,0.018,0.035,0.021,0.063,0.025c0.002,0.008,0.004,0.017,0.006,0.024c-0.023,0.019-0.047,0.038-0.07,0.058h-0.013\r\n\t\t\t\tc0.028,0.094,0.156,0.186,0.261,0.203c0.018,0.033,0.013,0.047,0.006,0.094c0.142,0.043,0.215,0.149,0.324,0.223\r\n\t\t\t\tc0.08,0.042,0.161,0.085,0.242,0.127c0.17,0.12,0.278,0.261,0.477,0.361c0.062,0.033,0.311,0.192,0.388,0.173\r\n\t\t\t\tc0.102-0.054,0.203-0.106,0.305-0.159c0.106-0.029,0.212-0.059,0.318-0.089c0.092-0.027,0.292-0.048,0.407-0.025\r\n\t\t\t\tc0.05,0.011,0.145,0.062,0.21,0.038c0.011-0.013,0.021-0.025,0.032-0.038c0.041,0.005,0.246,0.134,0.286,0.165\r\n\t\t\t\tc0.206-0.093,0.411-0.186,0.616-0.279c0.087-0.008,0.174-0.018,0.261-0.025c0.052-0.039,0.054-0.107,0.127-0.133\r\n\t\t\t\tc0.214-0.02,0.428-0.038,0.642-0.057c0.032-0.013,0.039-0.043,0.083-0.058c0.077,0.015,0.286,0.147,0.331,0.203\r\n\t\t\t\tc0.015,0.024,0.03,0.051,0.044,0.075c0.023,0.002,0.047,0.005,0.07,0.007c0.006,0.008,0.013,0.017,0.019,0.024\r\n\t\t\t\tc-0.013,0.032-0.025,0.064-0.038,0.096c0.025,0.209,0.348,0.363,0.534,0.197c0.101,0.017,0.232,0.039,0.343-0.007\r\n\t\t\t\tc0.002-0.026-0.002-0.036-0.013-0.062c0.025-0.017,0.147,0.013,0.178,0.051c0.069,0.124-0.004,0.172,0.222,0.165\r\n\t\t\t\tc0.008,0.013,0.017,0.025,0.025,0.038c0.004,0.004,0.008,0.008,0.013,0.013c-0.019,0.016-0.038,0.03-0.057,0.044\r\n\t\t\t\tc0.021,0.08,0.085,0.147,0.102,0.242c-0.011,0.042-0.021,0.085-0.032,0.127c0.009,0.032,0.017,0.063,0.025,0.095\r\n\t\t\t\tc-0.024,0.1-0.086,0.2-0.153,0.262c-0.002,0.006-0.004,0.013-0.006,0.019c0.025,0.004,0.051,0.008,0.076,0.013\r\n\t\t\t\tc0.003,0.084-0.012,0.146-0.076,0.166c0.049,0.041,0.097,0.084,0.146,0.127v0.006c-0.038-0.004-0.076-0.01-0.114-0.014\r\n\t\t\t\tc-0.031,0.139-0.072,0.242-0.191,0.292c0.013,0.028,0.052,0.116,0.076,0.14c0.036,0.035,0.074,0.016,0.114,0.07\r\n\t\t\t\tc-0.021,0.016-0.042,0.03-0.063,0.045c-0.002,0.004-0.004,0.008-0.006,0.014c0.042,0.062,0.085,0.123,0.127,0.184\r\n\t\t\t\tc0.053,0.027,0.074,0.003,0.108,0.045c-0.011,0.016-0.021,0.03-0.032,0.044c0.089,0.058,0.143,0.122,0.203,0.21\r\n\t\t\t\tc0.112,0.104,0.224,0.208,0.337,0.311c0.032,0.039,0.115,0.205,0.133,0.248c0.029,0.068-0.018,0.162,0.038,0.262\r\n\t\t\t\tc0.045,0.064,0.089,0.127,0.133,0.191c0.013,0.061,0.025,0.123,0.038,0.184c0.057,0.134,0.17,0.186,0.14,0.388\r\n\t\t\t\tc-0.243,0.109,0.046,0.36,0.089,0.489c0.008,0.1,0.017,0.199,0.025,0.299c-0.019,0.11-0.066,0.285-0.146,0.337\r\n\t\t\t\tc-0.03,0.011-0.059,0.021-0.089,0.032c-0.017,0.04-0.034,0.081-0.051,0.121c-0.03,0.031-0.059,0.064-0.089,0.096\r\n\t\t\t\tc-0.094,0.223-0.042,0.57-0.222,0.705c0,0.202-0.037,0.471,0.013,0.648c0.038,0.135,0.15,0.217,0.216,0.324\r\n\t\t\t\tc0.108,0.215,0.216,0.432,0.324,0.647c0.075,0.146,0.371,0.403,0.203,0.571c0.03,0.141,0.059,0.281,0.089,0.42\r\n\t\t\t\tc0.023,0.055,0.047,0.109,0.07,0.165c0.02,0.081-0.031,0.143-0.025,0.202c0.008,0.08,0.071,0.147,0.089,0.211\r\n\t\t\t\tc0.014,0.047-0.021,0.072-0.019,0.102c0.034,0.104,0.068,0.208,0.102,0.311c0.116,0.131,0.233,0.264,0.349,0.395\r\n\t\t\t\tc0.12,0.189,0.16,0.434,0.273,0.635c0.1,0.178,0.271,0.36,0.203,0.654c-0.033,0.008-0.078,0-0.096,0.025\r\n\t\t\t\tc-0.025,0.031,0.123,0.229,0.159,0.285c-0.017,0.049-0.034,0.099-0.051,0.146c0.011,0.011,0.021,0.021,0.032,0.031\r\n\t\t\t\tc0.006,0.003,0.013,0.005,0.019,0.007c0.006-0.015,0.013-0.03,0.019-0.045c0.018-0.009,0.022-0.011,0.052-0.013\r\n\t\t\t\tc0.013,0.022,0.024,0.047,0.038,0.069c0.027-0.001,0.052-0.007,0.102-0.006c0.021,0.028,0.021,0.056,0.038,0.095\r\n\t\t\t\tc0.024,0.043,0.115,0.075,0.165,0.09c0.061-0.047,0.096-0.123,0.178-0.146c0.115-0.035,0.252,0.044,0.356-0.006\r\n\t\t\t\tc0.032-0.03,0.063-0.059,0.095-0.09c0.15-0.07,0.214,0,0.331,0c0.034-0.019,0.067-0.037,0.103-0.057\r\n\t\t\t\tc0.121-0.035,0.233,0.073,0.317,0.102c0.04-0.03,0.07-0.055,0.095-0.102c0.058,0.014,0.114,0.025,0.172,0.038\r\n\t\t\t\tc0.018-0.019,0.021-0.053,0.033-0.075c0.049-0.049,0.321-0.018,0.399-0.07c0.083-0.072,0.165-0.145,0.248-0.217\r\n\t\t\t\tc0.416-0.326,0.721-0.688,1.017-1.138c0.074-0.112,0.264-0.19,0.305-0.299c0.021-0.052-0.027-0.122-0.019-0.146\r\n\t\t\t\tc0.017-0.045,0.065-0.033,0.089-0.064c0.071-0.091,0.109-0.35,0.09-0.496c-0.039-0.016-0.078-0.04-0.096-0.076\r\n\t\t\t\tc-0.006-0.006-0.013-0.013-0.02-0.019c0.078-0.091,0.133-0.175,0.242-0.235c0.244-0.134,0.525-0.121,0.635-0.388\r\n\t\t\t\tc-0.008-0.062-0.051-0.036-0.063-0.07c0.002-0.006,0.005-0.013,0.007-0.019c0.012-0.032,0.024-0.064,0.037-0.096\r\n\t\t\t\tc0.03-0.123,0.023-0.264,0.02-0.388c-0.028,0.011-0.035,0.019-0.076,0.019c-0.039-0.123-0.087-0.273-0.044-0.375\r\n\t\t\t\tc-0.007-0.074-0.062-0.111-0.114-0.14v-0.202c0.119-0.088,0.237-0.175,0.355-0.262c0.146-0.122,0.233-0.305,0.4-0.406\r\n\t\t\t\tc0.203-0.123,0.451-0.162,0.643-0.293c0.137-0.094,0.224-0.268,0.33-0.394c0-0.028-0.008-0.039-0.019-0.07\r\n\t\t\t\tc0.036-0.047,0.068-0.081,0.095-0.14c-0.002-0.012-0.004-0.021-0.006-0.032c-0.023-0.011-0.047-0.021-0.07-0.032\r\n\t\t\t\tc-0.02-0.162,0.013-0.337-0.069-0.432c0.003-0.034,0.034-0.062,0.044-0.107c0.025-0.113-0.041-0.295-0.057-0.395\r\n\t\t\t\tc0.029-0.055,0.059-0.11,0.088-0.165c-0.064-0.14-0.182-0.157-0.266-0.267c-0.084-0.108-0.127-0.394-0.07-0.554\r\n\t\t\t\tc-0.019-0.028-0.043-0.032-0.064-0.057c0.029-0.062,0.083-0.148,0.089-0.216c-0.057-0.071-0.161-0.127-0.196-0.217\r\n\t\t\t\tc-0.037-0.095,0.061-0.406,0.102-0.451c0.023-0.025,0.068-0.021,0.089-0.051c0.047-0.067,0.006-0.104,0.024-0.164\r\n\t\t\t\tc0.043-0.138,0.173-0.144,0.185-0.369c0.097-0.053,0.187-0.051,0.19-0.203c0.086,0.017,0.125-0.021,0.191-0.051\r\n\t\t\t\tc0.024-0.035,0.026-0.054,0.006-0.095c0.209-0.235,0.416-0.47,0.623-0.704c0.229-0.186,0.516-0.326,0.744-0.509\r\n\t\t\t\tc0.086-0.104,0.17-0.208,0.254-0.312c0.168-0.215,0.42-0.422,0.527-0.686c0.011-0.049,0.021-0.098,0.032-0.146\r\n\t\t\t\tc0.073-0.118,0.147-0.236,0.222-0.355c-0.002-0.027-0.004-0.055-0.006-0.083c0.042-0.04,0.085-0.081,0.127-0.121\r\n\t\t\t\tc0.055-0.098,0.109-0.194,0.165-0.292c0.006-0.087,0.013-0.174,0.019-0.261c0.015-0.04,0.08-0.069,0.076-0.127\r\n\t\t\t\tc-0.002-0.045-0.037-0.108-0.019-0.172c0.017-0.04,0.034-0.081,0.051-0.121C42.96,34.201,42.958,34.195,42.956,34.189z\r\n\t\t\t\t M51.688,35.154c-0.031-0.184-0.127-0.277-0.279-0.375c0.018,0.078-0.004,0.113-0.025,0.191c-0.033,0.026-0.04,0.043-0.095,0.025\r\n\t\t\t\tc-0.004,0.015-0.009,0.029-0.013,0.044c0.015,0.017,0.029,0.034,0.043,0.051c-0.028,0.063-0.008,0.077,0.007,0.14v0.318\r\n\t\t\t\tc0.022,0.102,0.073,0.268,0.146,0.324c0.209,0.044,0.477-0.139,0.451-0.337c-0.011-0.089-0.093-0.163-0.127-0.235\r\n\t\t\t\tC51.76,35.227,51.768,35.186,51.688,35.154z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z\r\n\t\t\t\t M50.505,13.747c0.043,0.044,0.081,0.093,0.124,0.137c-0.003,0.02-0.006,0.039-0.008,0.059v0.006\r\n\t\t\t\tc0.027,0.007,0.053,0.01,0.08,0.013c0.048,0.049,0.092,0.103,0.139,0.153c-0.13,0.026-0.316,0.022-0.352-0.084\r\n\t\t\t\tC50.471,14.004,50.497,13.865,50.505,13.747z M48.568,14.508c0.037,0.017,0.076,0.034,0.113,0.051\r\n\t\t\t\tc0.07-0.025,0.141-0.051,0.211-0.076c-0.014-0.036-0.025-0.072-0.039-0.108c0.033-0.077,0.143-0.097,0.203-0.146\r\n\t\t\t\tc0.084-0.066,0.228-0.183,0.268-0.286c0.015-0.059,0.029-0.119,0.044-0.178c0.022-0.052,0.06-0.069,0.063-0.146\r\n\t\t\t\tc-0.099-0.13-0.201-0.041-0.254-0.292c0.002-0.127,0.004-0.254,0.006-0.381c-0.008-0.074-0.017-0.148-0.024-0.222\r\n\t\t\t\tc0.032-0.042,0.063-0.085,0.095-0.127c0.001-0.002-0.001-0.005,0-0.008c0.1,0.088,0.195,0.177,0.293,0.266\r\n\t\t\t\tc-0.012,0.031-0.036,0.06-0.038,0.092c-0.006,0.103,0.07,0.19,0.07,0.324c0.103-0.002,0.239,0.039,0.312,0.025\r\n\t\t\t\tc0.033-0.012,0.068-0.024,0.103-0.036c0.075,0.072,0.157,0.137,0.231,0.211c-0.214-0.04-0.47,0.008-0.5,0.206\r\n\t\t\t\tc0.057,0.099,0.113,0.168,0.108,0.318c-0.042,0.053-0.085,0.106-0.127,0.159c-0.034,0.021-0.067,0.042-0.103,0.064\r\n\t\t\t\tc-0.043,0.061-0.037,0.157-0.095,0.203c-0.14,0.113-0.327,0.134-0.407,0.311c-0.084,0.039-0.185,0.002-0.261-0.013\r\n\t\t\t\tc-0.053,0.002-0.106,0.004-0.159,0.006c-0.219-0.032-0.424-0.055-0.502-0.229C48.309,14.462,48.449,14.461,48.568,14.508z\r\n\t\t\t\t M14.404,12.899c-0.002,0.011-0.006,0.023,0.013,0.034c0.011,0.006,0.027,0.004,0.044,0.005c0.046,0.003,0.104,0.019,0.122,0.05\r\n\t\t\t\tc-0.03,0.071-0.177,0-0.221-0.006c0,0.003,0,0.006,0,0.008c-0.005,0-0.011,0-0.016,0c-0.003,0.077,0.276,0.05,0.304,0.123\r\n\t\t\t\tc-0.032,0.036-0.081,0.019-0.141,0.035c-0.004,0.062,0.16,0.026,0.146,0.083c0,0.002-0.001,0.003-0.001,0.005\r\n\t\t\t\tc-0.043,0.013-0.078-0.002-0.117,0.012c-0.004,0.003-0.007,0.006-0.01,0.009c0,0.003,0,0.006,0,0.008\r\n\t\t\t\tc0.031,0.019,0.072,0.042,0.132,0.023c0.017-0.006,0.036-0.014,0.054-0.012c0.006,0.002,0.012,0.003,0.017,0.005\r\n\t\t\t\tc0.003,0.02-0.019,0.062-0.05,0.071c-0.034,0.009-0.199-0.014-0.228-0.021c-0.059-0.015-0.101-0.05-0.147-0.078\r\n\t\t\t\tc-0.04-0.024-0.124-0.06-0.197-0.085C14.204,13.077,14.305,12.99,14.404,12.899z M13.524,13.715\r\n\t\t\t\tc0.019,0.012,0.039,0.022,0.052,0.039c-0.03-0.002-0.064,0.005-0.097,0.01C13.495,13.749,13.509,13.731,13.524,13.715z\r\n\t\t\t\t M7.943,27.904c0.017-0.004,0.034-0.008,0.051-0.013c-0.017,0.015-0.034,0.03-0.051,0.045\r\n\t\t\t\tC7.945,27.925,7.941,27.918,7.943,27.904z M7.499,23.367c-0.001,0.007,0,0.011-0.001,0.018c-0.002-0.002-0.002-0.004-0.004-0.006\r\n\t\t\t\tC7.496,23.376,7.497,23.372,7.499,23.367z M7.676,37.665c-0.049,0.065-0.234,0.104-0.337,0.051\r\n\t\t\t\tc-0.044,0.033-0.061,0.065-0.057,0.146c-0.015,0.014-0.03,0.025-0.044,0.039c-0.012-0.053-0.021-0.069-0.07-0.084\r\n\t\t\t\tc-0.033-0.006-0.066,0.023-0.095,0.039c-0.203,0.106-0.124,0.25-0.191,0.438c-0.026,0.005-0.052,0.01-0.079,0.016\r\n\t\t\t\tc-0.076-0.303-0.168-0.599-0.232-0.904c0.011,0,0.019,0.005,0.032,0.006c0.029,0.082,0.054,0.128,0.146,0.146\r\n\t\t\t\tc0.004-0.029,0.009-0.056,0.013-0.084h0.006c0.023,0.049,0.076,0.109,0.064,0.172c0.006,0.006,0.013,0.014,0.019,0.02\r\n\t\t\t\tc0.114,0.02,0.144-0.047,0.248-0.057c-0.01-0.111-0.095-0.121-0.133-0.203c0.039-0.059,0.138-0.1,0.21-0.121\r\n\t\t\t\tc-0.003-0.04-0.005-0.057,0.006-0.09c0.198-0.062,0.318-0.017,0.375,0.141c0.045,0.008,0.076-0.016,0.108-0.038\r\n\t\t\t\tc-0.001,0.05,0.005,0.067,0.038,0.083c0.002,0.004,0.004,0.01,0.006,0.014c-0.061-0.009-0.097-0.021-0.121,0.031\r\n\t\t\t\tC7.564,37.5,7.647,37.605,7.676,37.665z M32,58c-7.083,0-13.497-2.841-18.187-7.436c0.051-0.051,0.122-0.09,0.155-0.152\r\n\t\t\t\tc0.019-0.078,0.038-0.157,0.057-0.235v-0.013c0.049,0.021,0.108,0.044,0.172,0.02h0.006c0.013,0.191-0.204,0.291-0.248,0.482\r\n\t\t\t\tc0.103-0.092,0.237-0.221,0.299-0.35c0.051-0.121,0.102-0.241,0.153-0.361c0.174-0.277,0.481-0.299,0.394-0.852\r\n\t\t\t\tc-0.012-0.078-0.036-0.114-0.057-0.172c0.045-0.055,0.132-0.205,0.019-0.255v-0.038c0.146,0.014,0.159-0.072,0.235-0.14\r\n\t\t\t\tc0.08-0.069,0.491-0.363,0.585-0.381c0.051-0.011,0.091,0.021,0.127,0.032c0.03-0.036,0.059-0.072,0.089-0.108\r\n\t\t\t\tc0.086-0.051,0.144-0.034,0.165-0.153c0.094-0.012,0.207-0.008,0.28,0.006c0.161,0.031,0.334-0.013,0.483-0.024\r\n\t\t\t\tc-0.005-0.183,0.137-0.241,0.292-0.254c-0.009-0.052-0.017-0.103-0.025-0.153c0.017-0.123,0.117-0.202,0.172-0.292\r\n\t\t\t\tc0.034-0.069,0.068-0.14,0.102-0.21c0.032-0.046,0.105-0.072,0.121-0.133c-0.006-0.062-0.013-0.123-0.019-0.184\r\n\t\t\t\tc-0.03-0.17,0.065-0.289,0.184-0.332c0-0.047-0.035-0.138-0.019-0.222c0.021-0.106,0.097-0.243,0.076-0.368\r\n\t\t\t\tc-0.017-0.166-0.034-0.332-0.051-0.496c0.028-0.172,0.093-0.289,0.095-0.465c0.015,0.002,0.03,0.004,0.044,0.006\r\n\t\t\t\tc0.017,0.034,0.034,0.068,0.051,0.103h0.019c0.113-0.084,0.241-0.308,0.292-0.445c0.031-0.081,0.007-0.126,0.057-0.178\r\n\t\t\t\tc0.047-0.021,0.093-0.042,0.14-0.063c0.273-0.213,0.461-0.44,0.534-0.858c0.027-0.157-0.139-0.732-0.216-0.757\r\n\t\t\t\tc-0.161-0.049-0.338,0.009-0.458-0.069c-0.256-0.166-0.436-0.435-0.731-0.565c-0.171-0.076-0.287,0.017-0.451-0.014\r\n\t\t\t\tc-0.1-0.016-0.199-0.029-0.299-0.045c-0.086-0.023-0.18-0.133-0.286-0.121c-0.154,0.018-0.289,0.139-0.394,0.21\r\n\t\t\t\tc-0.049-0.2,0.024-0.122,0.044-0.241c0.013-0.078-0.114-0.195-0.184-0.203c-0.017,0.017-0.034,0.033-0.051,0.051h-0.025\r\n\t\t\t\tc-0.054-0.172-0.227-0.156-0.394-0.217c-0.065-0.022-0.106-0.067-0.159-0.102c-0.052,0.007-0.15,0.016-0.216,0.032\r\n\t\t\t\tc-0.072,0.028-0.08,0.13-0.121,0.19c-0.069,0.102-0.227,0.129-0.28,0.248c-0.004,0.002-0.008,0.004-0.013,0.006\r\n\t\t\t\tc0-0.069,0.012-0.1,0.032-0.146c-0.111,0.022-0.259,0.048-0.394,0.026c-0.032-0.076-0.064-0.153-0.095-0.229\r\n\t\t\t\tc-0.088,0.024-0.202,0.166-0.318,0.121c-0.006-0.004-0.013-0.008-0.019-0.013c0.085-0.065,0.102-0.2,0.159-0.293\r\n\t\t\t\tc0.065-0.104,0.205-0.137,0.28-0.229c0.067-0.082,0.092-0.211,0.197-0.254c0.034-0.054,0.016-0.107-0.006-0.165\r\n\t\t\t\tc-0.262-0.036-0.276-0.356-0.343-0.577c-0.021-0.068-0.016-0.144-0.076-0.173c-0.031-0.005-0.044,0.032-0.076,0.025\r\n\t\t\t\tc-0.015-0.003-0.319-0.315-0.4-0.356c-0.11-0.035-0.22-0.072-0.331-0.107c-0.09-0.035-0.342-0.112-0.489-0.051\r\n\t\t\t\tc-0.016,0.014-0.018,0.026-0.019,0.057c-0.095-0.021-0.191-0.042-0.286-0.064h-0.006c-0.015,0.016-0.03,0.03-0.044,0.045\r\n\t\t\t\tc-0.061-0.119-0.214-0.313-0.388-0.291c-0.011,0.021-0.021,0.041-0.032,0.062v0.013c-0.013-0.091-0.026-0.182-0.038-0.272\r\n\t\t\t\tc-0.074-0.125-0.313-0.283-0.47-0.318c-0.084-0.018-0.176,0.005-0.241,0.02c-0.066-0.004-0.131-0.009-0.197-0.014v-0.006\r\n\t\t\t\tc0.187-0.059,0.138-0.167,0.273-0.223c0.002-0.004,0.004-0.008,0.006-0.012c-0.051-0.035-0.122-0.046-0.178-0.084\r\n\t\t\t\tc-0.013-0.019-0.026-0.037-0.038-0.057c-0.045-0.029-0.132-0.021-0.172-0.045c-0.027,0.02-0.038,0.035-0.045,0.076\r\n\t\t\t\tc-0.004,0.002-0.008,0.004-0.013,0.006c-0.012-0.113-0.097-0.154-0.184-0.191v-0.039c0.059,0.002,0.119,0.004,0.178,0.006\r\n\t\t\t\tc0.011-0.006,0.021-0.014,0.032-0.02c0.004-0.009,0.008-0.018,0.013-0.025c-0.002-0.004-0.004-0.008-0.006-0.013\r\n\t\t\t\tc-0.129-0.028-0.42-0.039-0.54,0.019c-0.075,0.037-0.117,0.127-0.21,0.146c-0.261,0.059-0.335-0.148-0.496-0.159\r\n\t\t\t\tc-0.136-0.008-0.364,0.083-0.483,0.025c-0.058-0.029-0.044-0.058-0.07-0.121c-0.05-0.125-0.201-0.158-0.375-0.159\r\n\t\t\t\tc-0.033-0.051-0.073-0.137-0.089-0.197c-0.053-0.012-0.097,0.017-0.114,0.064c0.015,0.025,0.03,0.051,0.044,0.076\r\n\t\t\t\tc0.028-0.002,0.055-0.004,0.083-0.006c0.013,0.011,0.025,0.021,0.038,0.031c-0.016,0.063-0.425,0.178-0.515,0.211\r\n\t\t\t\tc0.006,0.004,0.013,0.008,0.019,0.012c-0.008,0.037-0.018,0.037-0.038,0.058c0.053,0.026,0.197,0.299,0.152,0.394\r\n\t\t\t\tc-0.025,0.045-0.094,0.072-0.152,0.084c-0.065-0.049-0.097-0.164-0.146-0.229c0.015-0.101,0.07-0.187,0.121-0.254\r\n\t\t\t\tc-0.012-0.103-0.056-0.167-0.089-0.254c0.041-0.062,0.144-0.086,0.241-0.089c0.011-0.014,0.021-0.025,0.032-0.038\r\n\t\t\t\tc-0.013-0.064-0.059-0.101-0.114-0.121c-0.156-0.06-0.195,0.139-0.273,0.185c-0.04,0.012-0.081,0.024-0.121,0.037\r\n\t\t\t\tc0.019-0.035,0.046-0.051,0.032-0.102c0.027,0.011,0.029,0.016,0.038,0.045h0.006c0.052-0.033,0.079-0.079,0.121-0.121\r\n\t\t\t\tc-0.08-0.166-0.161-0.342-0.337-0.413c-0.058-0.022-0.134,0.003-0.203-0.026c-0.026-0.01-0.121-0.049-0.159-0.037\r\n\t\t\t\tc-0.047,0.031-0.093,0.063-0.14,0.095c-0.03,0.018-0.063,0.012-0.102,0.026c-0.12,0.043-0.172,0.127-0.331,0.094\r\n\t\t\t\tc-0.05-0.062-0.09-0.027-0.135-0.021c-0.26-1.288-0.395-2.619-0.457-3.968c0.016-0.002,0.033-0.001,0.046-0.007\r\n\t\t\t\tc0.167-0.078,0.167-0.194,0.47-0.121c0.006,0.011,0.013,0.021,0.019,0.031v0.007c-0.047,0.013-0.093,0.024-0.14,0.038\r\n\t\t\t\tc0.108,0.084,0.261,0.035,0.419,0.082c0.114,0.035,0.208,0.115,0.337,0.146c0.067,0.018,0.202-0.02,0.261,0.02\r\n\t\t\t\tc0.043,0.024,0.066,0.123,0.07,0.184c0.099,0.061,0.295,0.061,0.388,0.127c-0.006,0.064-0.053,0.105-0.102,0.127\r\n\t\t\t\tC7.811,33.859,7.792,33.88,7.773,33.9v0.007c0.141,0.006,0.266-0.058,0.394-0.038c0.097,0.011,0.195,0.021,0.292,0.031\r\n\t\t\t\tc0.105-0.019,0.2-0.058,0.324-0.069c0.002-0.004,0.004-0.008,0.006-0.013c-0.124-0.092-0.202-0.151-0.432-0.146\r\n\t\t\t\tc-0.006-0.006-0.013-0.013-0.019-0.02c0.013-0.027,0.025-0.055,0.038-0.082c-0.079-0.081-0.36-0.09-0.483-0.141\r\n\t\t\t\tc-0.04-0.043-0.08-0.089-0.121-0.133c-0.131-0.09-0.318-0.074-0.477-0.146c-0.064-0.053-0.127-0.105-0.191-0.158H7.022\r\n\t\t\t\tc-0.163-0.037-0.338-0.074-0.559-0.07c-0.083,0.008-0.165,0.018-0.248,0.025c-0.059,0.014-0.109,0.043-0.163,0.068\r\n\t\t\t\tC6.038,32.677,6,32.344,6,32c0-0.404,0.042-0.798,0.06-1.198c0.069,0.073,0.127,0.176,0.179,0.209\r\n\t\t\t\tc0.057,0.035,0.12,0.025,0.133,0.102c-0.021,0.115-0.042,0.229-0.064,0.343c0.008,0.002,0.017,0.004,0.025,0.006\r\n\t\t\t\tc0.036,0.022,0.05-0.017,0.089-0.032c0.002,0.019,0.004,0.038,0.006,0.057c-0.025,0.035-0.04,0.043-0.083,0.063\r\n\t\t\t\tc0.038,0.07,0.076,0.14,0.115,0.21h0.06c0.006,0.032,0.013,0.064,0.019,0.095c0.019,0.013,0.038,0.025,0.057,0.038\r\n\t\t\t\tc0.051,0.105-0.017,0.164,0.133,0.172c0.035,0.058,0.068,0.193,0.108,0.242c0.047-0.022,0.112-0.023,0.178-0.032\r\n\t\t\t\tc-0.004,0.021-0.008,0.042-0.013,0.064h0.013c0.048-0.142,0.166-0.403,0.108-0.61c-0.023-0.081-0.082-0.166-0.108-0.261\r\n\t\t\t\tc-0.013-0.083-0.025-0.165-0.038-0.248c-0.062-0.179-0.316-0.446-0.267-0.699c0.032-0.1,0.064-0.199,0.095-0.299\r\n\t\t\t\tc0.053-0.085,0.131-0.155,0.165-0.26c0.15-0.028,0.305-0.087,0.369-0.197c0.047-0.082,0.048-0.15,0.127-0.197\r\n\t\t\t\tc0.074-0.044,0.216-0.039,0.28-0.076c0.064-0.08,0.127-0.161,0.191-0.242c0.07-0.011,0.14-0.021,0.21-0.032\r\n\t\t\t\tc0.025-0.021,0.051-0.042,0.076-0.063c0.002-0.004,0.004-0.009,0.006-0.013c-0.027-0.012-0.033-0.01-0.044-0.038\r\n\t\t\t\tc-0.025,0.019-0.067,0.035-0.095,0.051c-0.015-0.009-0.03-0.017-0.044-0.026c-0.019-0.013-0.023-0.028-0.032-0.051\r\n\t\t\t\tc0.025,0.019,0.035,0.04,0.07,0.051c0.054-0.032,0.047-0.06,0.089-0.083v-0.013c-0.03-0.031-0.081-0.057-0.14-0.057\r\n\t\t\t\tc-0.006-0.011-0.013-0.021-0.019-0.032c0.044,0.015,0.089,0.03,0.133,0.045c-0.006-0.011-0.013-0.021-0.019-0.032v-0.006\r\n\t\t\t\tc0.051,0.021,0.064,0.054,0.14,0.064c0.025-0.03,0.051-0.059,0.076-0.089c0.009-0.016,0.008-0.002,0.038,0\r\n\t\t\t\tc0.006-0.011,0.013-0.021,0.019-0.032c-0.001-0.047-0.012-0.063-0.038-0.083c-0.011-0.006-0.002-0.006-0.013,0\r\n\t\t\t\tc-0.028,0.017-0.029,0.052-0.044,0.081c0.002,0.005-0.004,0.01-0.001,0.014v-0.013c0-0.001,0-0.001,0.001-0.002\r\n\t\t\t\tc-0.01-0.027-0.001-0.054,0.005-0.087c-0.004-0.004-0.009-0.008-0.013-0.013c-0.06,0.01-0.113,0.02-0.191,0.019\r\n\t\t\t\tc0.008-0.038-0.02-0.071,0-0.108v-0.013c0.011,0.017-0.003,0.036,0.006,0.064c0.009,0.011,0.017,0.021,0.026,0.032\r\n\t\t\t\tc0.021-0.006,0.042-0.013,0.064-0.019c0-0.018-0.002-0.019-0.013-0.038c0.021,0.011,0.042,0.021,0.064,0.032\r\n\t\t\t\tc0.008-0.004,0.017-0.009,0.025-0.013c0.002-0.004,0.004-0.008,0.006-0.013c-0.011-0.015-0.021-0.029-0.032-0.044\r\n\t\t\t\tc0.034,0.019,0.057,0.04,0.089,0.025c0.004,0.015,0.008,0.03,0.013,0.045h0.019c-0.012-0.067-0.042-0.087-0.07-0.134h0.038\r\n\t\t\t\tc-0.004-0.026-0.004-0.02-0.017-0.036c0.004-0.008,0.008-0.015,0.011-0.023c-0.024-0.086-0.083-0.085-0.17-0.066\r\n\t\t\t\tc-0.004-0.07-0.06-0.101-0.121-0.114c-0.002-0.004-0.004-0.008-0.006-0.013c0.011-0.006,0.021-0.013,0.032-0.019\r\n\t\t\t\tc0.043,0.021,0.076,0.045,0.095,0.089c0.03,0.02,0.023,0.021,0.07,0.019c-0.002-0.021-0.004-0.042-0.006-0.064\r\n\t\t\t\tc-0.02-0.013-0.034-0.028-0.052-0.038H8.172c-0.021-0.017-0.042-0.034-0.064-0.051c0.018,0.026,0.045,0.037,0.069,0.051h0.02\r\n\t\t\t\tc-0.002-0.013-0.004-0.025-0.006-0.038c0.017,0.006,0.034,0.013,0.051,0.019h0.006c-0.002-0.043-0.004-0.052-0.038-0.064\r\n\t\t\t\tc0.009-0.004,0.017-0.009,0.026-0.013c-0.082-0.042-0.117-0.054-0.159-0.133c0.034,0.03,0.068,0.059,0.102,0.089\r\n\t\t\t\tc0.006,0.006,0.013,0.013,0.019,0.019c0.036-0.023,0.042-0.039,0.057-0.083c-0.034-0.047-0.238-0.13-0.311-0.159\r\n\t\t\t\tc-0.002-0.007,0.001-0.013,0-0.019c0.068-0.003,0.075,0.022,0.127,0.045c-0.002-0.013-0.004-0.025-0.006-0.038\r\n\t\t\t\tc0.042,0.042,0.099,0.078,0.153,0.108c-0.016-0.09-0.078-0.09-0.095-0.165h0.006c0.012,0.032,0.027,0.045,0.057,0.057\r\n\t\t\t\tc0.004,0.004,0.008,0.008,0.013,0.013h0.006c-0.015-0.036-0.03-0.072-0.044-0.108c-0.02-0.107,0.072-0.052-0.006-0.197\r\n\t\t\t\tc0.017,0.002,0.034,0.004,0.051,0.006c0.002-0.019,0.004-0.038,0.006-0.057c0.019,0.012,0.011,0.001,0.019,0.026h0.006\r\n\t\t\t\tc0.011-0.014,0.011-0.017,0.013-0.045c0.002,0.011,0.004,0.021,0.006,0.032c0.029-0.021,0.034-0.024,0.032-0.045\r\n\t\t\t\tc0.015-0.011,0.03-0.021,0.044-0.032c-0.006,0.017-0.013,0.034-0.019,0.051c0.013,0.006,0.025,0.013,0.038,0.019\r\n\t\t\t\tc-0.025,0.006-0.051,0.013-0.076,0.019c-0.011,0.017-0.021,0.034-0.032,0.051v0.006h0.051c-0.013,0.035-0.02,0.044-0.07,0.044\r\n\t\t\t\tc-0.004,0.006-0.009,0.013-0.013,0.019c0.016,0.017,0.027,0.021,0.057,0.025c0.002,0.004,0.004,0.008,0.006,0.013v0.026\r\n\t\t\t\tc-0.013-0.007-0.025-0.013-0.038-0.019c-0.004,0.002-0.009,0.004-0.013,0.006c-0.004,0.013-0.009,0.025-0.013,0.038v0.006\r\n\t\t\t\tc0.047-0.025,0.036-0.01,0.089,0.013c0.004,0.006,0.009,0.013,0.013,0.019c-0.03,0.011-0.059,0.021-0.089,0.032\r\n\t\t\t\tc-0.002,0.004-0.004,0.008-0.006,0.013c0.011,0.015,0.021,0.03,0.032,0.044c0.017,0.011,0.034,0.021,0.051,0.032\r\n\t\t\t\tc0.021-0.013,0.042-0.025,0.064-0.038c-0.001,0.055-0.005,0.033-0.025,0.07c0.015,0.008,0.03,0.017,0.044,0.025\r\n\t\t\t\tc-0.006,0.013-0.013,0.026-0.019,0.038v0.006H8.37c0.026-0.01,0.031-0.014,0.051,0c-0.039,0.071-0.09,0.135-0.114,0.229\r\n\t\t\t\tc0.004,0.013,0.008,0.025,0.013,0.038c0.008-0.002,0.017-0.004,0.025-0.006c0.017-0.038,0.034-0.076,0.051-0.114\r\n\t\t\t\tc0.02,0,0.017,0.006,0.032-0.006c0.023-0.055,0.047-0.11,0.07-0.165c0.033-0.056,0.086-0.075,0.102-0.14\r\n\t\t\t\tc-0.004-0.04-0.008-0.081-0.013-0.121c-0.078-0.033-0.136-0.206-0.152-0.292c0.024-0.023,0.034-0.046,0.064-0.064\r\n\t\t\t\tc0.002,0.002,0.004,0.004,0.006,0.006c-0.017,0.031-0.037,0.044-0.057,0.07c0.054,0.073,0.068,0.144,0.184,0.14\r\n\t\t\t\tc0.005,0.037-0.005,0.046-0.013,0.083v0.006c0.004,0.002,0.008,0.004,0.013,0.006c0.055-0.041,0.152-0.125,0.152-0.216\r\n\t\t\t\tc0.013,0.004,0.026,0.008,0.038,0.013c0.032-0.093,0.078-0.196,0.095-0.305c-0.053-0.007-0.063-0.019-0.089-0.051\r\n\t\t\t\tc-0.002-0.006-0.004-0.013-0.006-0.019c0.029-0.023,0.034-0.034,0.064-0.026c0.019-0.053,0.038-0.106,0.057-0.159\r\n\t\t\t\tc-0.015,0.047-0.03,0.093-0.045,0.14c0.19-0.133,0.413-0.223,0.744-0.222c0.008-0.043,0.017-0.085,0.025-0.127\r\n\t\t\t\tc0.002-0.002,0.036,0,0.064-0.013c0.003,0.022-0.008,0.053-0.006,0.095c0.004,0.002,0.008,0.004,0.013,0.007\r\n\t\t\t\tc0.058-0.002,0.108-0.049,0.121-0.089h0.006c0.013,0.016,0.014,0.037,0.013,0.07c0.072-0.017,0.144-0.034,0.216-0.051\r\n\t\t\t\tc0-0.035-0.012-0.048-0.019-0.067v0.016c-0.03,0.013-0.059,0.025-0.089,0.038c-0.017-0.006-0.034-0.013-0.051-0.019\r\n\t\t\t\tc-0.017-0.095-0.061-0.182-0.165-0.191c0.011-0.069,0.067-0.083,0.127-0.102c0.002-0.006,0.004-0.013,0.006-0.019\r\n\t\t\t\tc-0.052-0.015-0.053-0.008-0.083-0.057c0.045-0.073,0.096-0.241,0.184-0.267v-0.07c0.028-0.011,0.055-0.021,0.083-0.032\r\n\t\t\t\tc-0.002,0.011-0.004,0.021-0.006,0.032c0.013,0.006,0.025,0.013,0.038,0.019h0.006c0.028-0.036,0.033-0.028,0.025-0.076\r\n\t\t\t\tc0.011-0.009,0.021-0.017,0.032-0.025c-0.004,0.015-0.008,0.03-0.013,0.044c0.017,0.004,0.034,0.008,0.051,0.013\r\n\t\t\t\tc0.008-0.021,0.017-0.042,0.025-0.064c0.013,0.008,0.025,0.017,0.038,0.025c0.059-0.044,0.113-0.149,0.14-0.222h0.006\r\n\t\t\t\tc0.004,0.002,0.008,0.004,0.013,0.006c-0.008,0.021-0.017,0.042-0.025,0.064c0.002,0.004,0.004,0.008,0.006,0.013\r\n\t\t\t\tc0.027,0.008,0.055,0.017,0.083,0.025c-0.004-0.019-0.008-0.038-0.013-0.057c0.046,0.008,0.075-0.021,0.121-0.032\r\n\t\t\t\tc0.006,0.019,0.013,0.038,0.019,0.057c0.038-0.028,0.057-0.071,0.095-0.095c0.015,0.011,0.03,0.021,0.044,0.032\r\n\t\t\t\tc0.018-0.015,0.017-0.011,0.019-0.045c0.069,0.012,0.096-0.012,0.153-0.038c0.011-0.019,0.01-0.016,0.013-0.032h-0.051\r\n\t\t\t\tc0.011-0.015,0.021-0.03,0.032-0.045c-0.011-0.023-0.021-0.047-0.032-0.07c0.011,0.008,0.021,0.017,0.032,0.025\r\n\t\t\t\tc0.041-0.039,0.135-0.02,0.178,0.013c0.034-0.019,0.068-0.038,0.102-0.057c-0.006-0.013-0.013-0.026-0.019-0.038\r\n\t\t\t\tc0.023,0.013,0.047,0.025,0.07,0.038c0.139-0.017,0.194-0.143,0.343-0.146c0.013-0.023,0.025-0.047,0.038-0.07\r\n\t\t\t\tc-0.006-0.019-0.013-0.038-0.019-0.057c0.024,0.019,0.04,0.035,0.044,0.076c0.019-0.011,0.038-0.021,0.057-0.032h0.006\r\n\t\t\t\tc-0.025,0.065-0.104,0.124-0.172,0.146c-0.008,0.017-0.011,0.022-0.013,0.051c0.108-0.056,0.302-0.039,0.432-0.025\r\n\t\t\t\tc0.004,0.006,0.008,0.013,0.013,0.019c-0.092-0.002-0.148,0.034-0.229,0.051v0.044c-0.023-0.018-0.019-0.021-0.044-0.025\r\n\t\t\t\tc0.002-0.023,0.004-0.047,0.006-0.07c-0.083-0.003-0.358,0.164-0.413,0.222h-0.013c0.011,0.006,0.021,0.013,0.032,0.019v0.006\r\n\t\t\t\tc-0.027,0.003-0.018,0.002-0.038-0.013c-0.04,0.023-0.08,0.047-0.121,0.07c-0.002,0.004-0.004,0.008-0.006,0.013\r\n\t\t\t\tc0.006,0.004,0.013,0.008,0.019,0.013c0.03-0.019,0.059-0.038,0.089-0.057c-0.014,0.038-0.023,0.015-0.044,0.038\r\n\t\t\t\tc-0.076,0.082-0.026,0.172-0.006,0.26c0.015-0.005,0.009-0.003,0.025-0.019c0.019,0.032,0.038,0.064,0.057,0.095\r\n\t\t\t\tc0.048-0.01,0.046-0.012,0.076,0.019c0.009-0.023,0.017-0.047,0.026-0.07c0.035-0.016,0.053-0.017,0.108-0.013v-0.045\r\n\t\t\t\tc0.006,0.004,0.013,0.009,0.019,0.013c0.062-0.036,0.089-0.171,0.203-0.172c0.014-0.051-0.01-0.053-0.013-0.108h0.038\r\n\t\t\t\tc0.006,0.011,0.013,0.021,0.019,0.032h0.006c0.023-0.015,0.034-0.023,0.045-0.051c0.004-0.002,0.008-0.004,0.013-0.006\r\n\t\t\t\tc-0.002,0.015-0.004,0.03-0.006,0.045c0.036,0.004,0.072,0.008,0.108,0.013c0.016-0.034,0.031-0.025,0.038-0.07\r\n\t\t\t\tc0.011,0.006,0.021,0.013,0.032,0.019c0.004-0.015,0.008-0.03,0.013-0.044c0.006-0.002,0.013-0.004,0.019-0.006\r\n\t\t\t\tc0.032,0.009,0.026,0.014,0.045,0.032c0.124-0.045,0.262-0.143,0.407-0.146c-0.002-0.009-0.004-0.017-0.006-0.025\r\n\t\t\t\tc0.032,0.002,0.064,0.004,0.095,0.006c-0.004-0.006-0.008-0.013-0.013-0.019c0.006-0.004,0.013-0.009,0.019-0.013\r\n\t\t\t\tc0.024-0.013,0.02-0.005,0.044,0.013c0.021-0.009,0.042-0.017,0.063-0.025c-0.027-0.034-0.068-0.036-0.133-0.032\r\n\t\t\t\tc-0.004-0.006-0.008-0.013-0.013-0.019c0.013-0.007,0.025-0.013,0.038-0.019c0.006-0.008,0.013-0.017,0.019-0.025\r\n\t\t\t\tc-0.021-0.021-0.042-0.042-0.063-0.064c-0.075-0.027-0.112,0.044-0.133-0.064c-0.066,0.01-0.086,0.052-0.133,0.07\r\n\t\t\t\tc-0.032,0.012-0.073,0.004-0.095,0.013c0.006-0.013,0.013-0.025,0.019-0.038h-0.013c-0.002-0.004-0.004-0.008-0.006-0.013\r\n\t\t\t\tc-0.067-0.031-0.119,0.027-0.165,0.006c-0.019-0.013-0.038-0.025-0.057-0.038c-0.028,0.002-0.055,0.004-0.083,0.006\r\n\t\t\t\tc-0.028-0.013-0.04-0.048-0.083-0.057h-0.013v-0.006c0.025-0.009,0.051-0.017,0.076-0.025c0.004-0.002,0.009-0.004,0.013-0.006\r\n\t\t\t\tc-0.103-0.049-0.301-0.028-0.267-0.191c-0.021-0.028-0.018-0.025-0.044-0.019c-0.013-0.053-0.009-0.079,0.013-0.121\r\n\t\t\t\tc-0.03-0.032-0.094-0.029-0.159-0.025c0.088-0.089,0.103-0.048,0.133-0.178c0.021-0.021,0.042-0.042,0.064-0.064\r\n\t\t\t\tc-0.015-0.011-0.03-0.021-0.044-0.032c-0.019,0.008-0.038,0.017-0.057,0.025v-0.032c-0.055,0.025-0.11,0.051-0.165,0.076\r\n\t\t\t\tc-0.065-0.089-0.112-0.14-0.254-0.152v-0.007c0.049-0.015,0.115-0.056,0.191-0.038c0.034,0.015,0.068,0.03,0.102,0.045\r\n\t\t\t\tc0.079-0.006,0.346-0.155,0.375-0.216c-0.094-0.249-0.411-0.255-0.674-0.152c-0.282,0.11-0.595,0.189-0.82,0.356\r\n\t\t\t\tc-0.184,0.136-0.321,0.345-0.502,0.489c0.154-0.325,0.477-0.718,0.775-0.896c0.079-0.047,0.223-0.03,0.299-0.083\r\n\t\t\t\tc0.108-0.076,0.07-0.268,0.267-0.337c0.117-0.041,0.317-0.025,0.439-0.006c0.178,0.027,0.354-0.025,0.515-0.006\r\n\t\t\t\tc0.163,0.008,0.326,0.017,0.489,0.025c0.219-0.035,0.465-0.038,0.61-0.146c0.083-0.091,0.165-0.182,0.248-0.273\r\n\t\t\t\tc0.155-0.015,0.309-0.03,0.464-0.044c0.1-0.032,0.288-0.2,0.375-0.267v-0.013c-0.042-0.055-0.085-0.11-0.127-0.165\r\n\t\t\t\tc0.034-0.061,0.064-0.142,0.095-0.21c-0.007-0.1-0.158-0.181-0.248-0.197c-0.041-0.008-0.112,0.043-0.153,0.064\r\n\t\t\t\tc-0.013-0.019-0.025-0.038-0.038-0.057c0.008-0.044,0.031-0.064,0.051-0.095c-0.257-0.247-0.418,0.027-0.61,0.133\r\n\t\t\t\tc-0.089,0.05-0.218,0.06-0.305,0.095c0.012-0.069,0.034-0.173,0.083-0.21c0.053-0.004,0.106-0.008,0.159-0.013\r\n\t\t\t\tc0.109-0.031,0.157-0.136,0.28-0.165c0.122-0.029,0.24-0.033,0.292-0.127c-0.11-0.028-0.22-0.055-0.33-0.083\r\n\t\t\t\tc-0.106-0.044-0.191-0.133-0.324-0.153c-0.101-0.015-0.161,0.043-0.261,0.038c0.021-0.051,0.042-0.102,0.064-0.152\r\n\t\t\t\tc-0.007-0.092-0.237-0.273-0.311-0.299H12.48c-0.062-0.024-0.129-0.187-0.165-0.241c0.004-0.002,0.008-0.004,0.013-0.006\r\n\t\t\t\tc0.055-0.031,0.185,0.022,0.261,0c0.012-0.024,0.014-0.061,0.013-0.102c-0.084-0.062-0.178-0.095-0.242-0.178\r\n\t\t\t\tc0.027-0.025,0.057-0.044,0.102-0.051c-0.036-0.207-0.226-0.07-0.261-0.356c-0.028,0.002-0.055,0.004-0.083,0.006\r\n\t\t\t\tc-0.009-0.07,0.017-0.079,0.032-0.134c-0.122-0.141-0.365-0.561-0.508-0.629c-0.004-0.004-0.008-0.008-0.013-0.013\r\n\t\t\t\tc-0.021,0.042-0.042,0.085-0.064,0.127c-0.144,0.096-0.271,0.026-0.114,0.235c-0.096,0.122-0.182,0.158-0.184,0.388h-0.006\r\n\t\t\t\tc-0.051-0.051-0.057-0.152-0.153-0.159c-0.034,0.059-0.068,0.119-0.102,0.178c-0.077,0.058-0.266,0.055-0.349,0.095\r\n\t\t\t\tc-0.013-0.019-0.026-0.038-0.038-0.057c0.014-0.022,0.019-0.03,0.019-0.07c-0.149-0.221-0.275-0.116-0.483-0.044h-0.006\r\n\t\t\t\tc-0.044-0.056-0.038-0.084-0.026-0.178c0.036,0.002,0.072,0.004,0.108,0.006c0.112-0.165-0.211-0.619,0.013-0.724\r\n\t\t\t\tc0.011-0.023,0.014-0.056,0.013-0.095c-0.011-0.017-0.021-0.034-0.032-0.051c-0.039-0.011-0.088,0.06-0.178,0.038\r\n\t\t\t\tc-0.162-0.039-0.31-0.129-0.458-0.159c-0.052-0.065-0.056-0.061-0.013-0.14c-0.022-0.016-0.052-0.042-0.077-0.062\r\n\t\t\t\tc0.109-0.188,0.225-0.372,0.338-0.557c0.01,0.006,0.021,0.007,0.031,0.015c0.006,0.003,0.064-0.003,0.102,0.013\r\n\t\t\t\tc0.028,0.017,0.055,0.034,0.083,0.051c0.049,0.006,0.097,0.013,0.146,0.019c0.04,0.047,0.081,0.093,0.121,0.14\r\n\t\t\t\tc0.094,0.057,0.203,0.032,0.331,0.064c0.203,0.072,0.407,0.144,0.61,0.216c-0.067-0.217-0.212-0.375-0.381-0.489\r\n\t\t\t\tc-0.155-0.104-0.443-0.179-0.47-0.4c0.186,0,0.218,0.082,0.343,0.127c-0.009-0.049-0.017-0.097-0.026-0.146\r\n\t\t\t\tc0.188,0.145,0.277,0.375,0.604,0.349c0.069,0.109,0.145,0.196,0.273,0.248c-0.038-0.078-0.076-0.157-0.114-0.235\r\n\t\t\t\tc0.04,0.008,0.08,0.017,0.121,0.025h0.006c-0.006-0.184-0.176-0.25-0.153-0.432c0.084,0.057,0.177,0.169,0.216,0.267\r\n\t\t\t\tc0.008,0.006,0.017,0.013,0.025,0.019c0.037-0.334-0.178-0.289-0.292-0.477c0.006-0.013,0.013-0.026,0.019-0.038\r\n\t\t\t\tc0.025-0.006,0.051-0.013,0.076-0.019h0.013c-0.061-0.03-0.123-0.059-0.184-0.089c-0.069-0.041-0.11-0.13-0.191-0.153\r\n\t\t\t\tc-0.019,0.015-0.038,0.03-0.057,0.044c-0.008,0.008-0.017,0.017-0.025,0.026c-0.071-0.122-0.147-0.253-0.21-0.388\r\n\t\t\t\tc-0.053-0.009-0.106-0.017-0.159-0.025c-0.006-0.014-0.012-0.027-0.019-0.04c0.024-0.035,0.051-0.067,0.076-0.101\r\n\t\t\t\tc0.001,0.003,0.005,0.005,0.006,0.008c0.04-0.004,0.081-0.009,0.121-0.013c0.006-0.009,0.013-0.017,0.019-0.026\r\n\t\t\t\tc-0.022-0.025-0.045-0.05-0.067-0.075c0.044-0.062,0.092-0.121,0.137-0.183c0.134,0.06,0.208,0.164,0.343,0.226\r\n\t\t\t\tc0.072,0.033,0.155,0.015,0.21,0.051c-0.013,0.036-0.025,0.072-0.038,0.108c0.005,0.082,0.057,0.11,0.089,0.165\r\n\t\t\t\tc0.042-0.019,0.085-0.038,0.127-0.057c0.033,0.038,0.022,0.078,0.051,0.127c0.022,0.036,0.201,0.12,0.248,0.102h0.013\r\n\t\t\t\tc-0.015-0.064-0.03-0.127-0.045-0.191c0.011-0.076,0.021-0.153,0.032-0.229c0.004-0.002,0.008-0.004,0.013-0.006\r\n\t\t\t\tc0.036,0.05,0.089,0.124,0.159,0.14c0.035-0.09,0.113-0.136,0.222-0.152c-0.011-0.088-0.097-0.155-0.165-0.184\r\n\t\t\t\tc-0.002-0.004-0.004-0.009-0.006-0.013c0.15-0.095,0.182,0.061,0.324,0c0.025-0.019,0.058-0.097,0.089-0.127\r\n\t\t\t\tc0.002-0.006,0.004-0.013,0.006-0.019c-0.087-0.061-0.174-0.123-0.261-0.184c-0.092,0.084-0.164,0.079-0.299,0.051\r\n\t\t\t\tc0.013-0.043,0.025-0.085,0.038-0.127c-0.147-0.013-0.29,0.025-0.47,0.026v-0.095c0.061-0.015,0.123-0.03,0.184-0.044h0.013\r\n\t\t\t\tc-0.051-0.098-0.165-0.231-0.267-0.273c-0.037-0.015-0.062-0.003-0.087,0.008c0.618-0.794,1.268-1.56,1.972-2.276\r\n\t\t\t\tc0.027,0.005,0.054,0.009,0.08,0.014c0.042,0.011,0.084,0.021,0.127,0.032c0.022-0.003,0.044-0.006,0.065-0.009\r\n\t\t\t\tc0.003,0,0.005,0,0.008,0c0.003,0.007,0.006,0.014,0.01,0.022c0.02,0.004,0.051,0.001,0.079-0.002\r\n\t\t\t\tc0.003,0.003,0.005,0.006,0.008,0.008c-0.045,0.019-0.061,0.016-0.102,0.01c-0.025,0.007-0.079,0.031-0.085,0.046\r\n\t\t\t\tc-0.01,0.04,0.124,0.116,0.183,0.098c0.044-0.017,0.087-0.034,0.131-0.051c0.058-0.019,0.1-0.003,0.157-0.022\r\n\t\t\t\tc0.096-0.031,0.196-0.098,0.229-0.154c0.053-0.088-0.124-0.137-0.191-0.155c-0.063-0.017-0.099-0.061-0.143-0.099\r\n\t\t\t\tc-0.051-0.044-0.123-0.071-0.209-0.083c0.015-0.015,0.032-0.028,0.047-0.043c0.017,0.003,0.035,0.009,0.05,0.01\r\n\t\t\t\tc0.011-0.005,0.009-0.006,0.015-0.011c0.018-0.001,0.036-0.001,0.055-0.002c0.098,0.013,0.166,0.087,0.242,0.125\r\n\t\t\t\tc0.058,0.029,0.126,0.035,0.206,0.042c0.022,0.002,0.033,0.013,0.057,0.012c0.021-0.022,0.037-0.048,0.097-0.049\r\n\t\t\t\tc0.002,0.002,0.005,0.004,0.007,0.005c0.001,0.001,0.003,0.003,0.004,0.004c-0.009,0.006-0.019,0.012-0.028,0.019\r\n\t\t\t\tc0.003,0.004,0.006,0.009,0.01,0.013c0.082-0.002,0.101-0.036,0.149-0.053c0.04-0.014,0.063,0.003,0.095-0.008\r\n\t\t\t\tc-0.012,0.025-0.046,0.04-0.061,0.063c-0.015,0.023-0.012,0.045-0.025,0.07c-0.007,0.014-0.031,0.02-0.038,0.036\r\n\t\t\t\tc0.01,0.019,0.049,0.027,0.043,0.05c-0.003,0.006-0.051,0.024-0.06,0.026c0,0.019-0.02,0.038-0.005,0.057\r\n\t\t\t\tc0.01,0.008,0.024,0.008,0.042,0.007c0.003,0.002,0.006,0.003,0.009,0.005c-0.017,0.009-0.038,0.017-0.052,0.026\r\n\t\t\t\tc-0.001,0.018,0.024,0.052,0.013,0.071c-0.012,0.019-0.048,0.03-0.06,0.051c0,0.001,0,0.001,0,0.002\r\n\t\t\t\tc0.084-0.011,0.07-0.036,0.138-0.055c0.04,0.003,0.027,0.022,0.052,0.038c0.012,0.003,0.025,0.006,0.037,0.01\r\n\t\t\t\tc0.001,0.001,0.002,0.002,0.004,0.003c0,0.002,0,0.005,0,0.007c-0.016,0.04-0.137,0.028-0.188,0.046\r\n\t\t\t\tc-0.007,0.004-0.065,0.071-0.067,0.078c0.003,0.008,0.005,0.016,0.008,0.024c-0.011,0.012-0.022,0.025-0.032,0.038\r\n\t\t\t\tc-0.019,0.031-0.038,0.062-0.057,0.092c0.074-0.015,0.084-0.049,0.159-0.064c0.061,0.021,0.023,0.086-0.02,0.107\r\n\t\t\t\tc-0.029,0.014-0.071,0.006-0.102,0.011c-0.063,0.01-0.105,0.042-0.185,0.049c-0.054,0.004-0.117-0.01-0.169,0.006\r\n\t\t\t\tc-0.118,0.035-0.158,0.131-0.289,0.172c0.034,0.002,0.095,0.005,0.125,0.003c0.039-0.009,0.078-0.018,0.118-0.027\r\n\t\t\t\tc0.023,0.004,0.047,0.008,0.07,0.012c0.05,0.008,0.104,0.007,0.161,0.008c0.03-0.031,0.065-0.027,0.119-0.048\r\n\t\t\t\tc0.001-0.002,0.002-0.004,0.003-0.006c0-0.015-0.011-0.025-0.03-0.026c0,0,0-0.001-0.001-0.002\r\n\t\t\t\tc0.021-0.031,0.098-0.036,0.127-0.016c0.007,0.042-0.069,0.055-0.07,0.092c-0.002,0.059,0.172,0.07,0.202,0.108\r\n\t\t\t\tc-0.014,0.005-0.016,0.007-0.013,0.017c-0.062-0.014-0.133-0.027-0.211-0.024c-0.053,0.005-0.106,0.01-0.159,0.015\r\n\t\t\t\tc-0.058,0-0.109-0.014-0.16-0.022c-0.067-0.011-0.133-0.021-0.2-0.032c-0.003,0.001-0.007,0.001-0.01,0.002\r\n\t\t\t\tc-0.003,0.006-0.007,0.012-0.01,0.018c0,0.026,0.154,0.053,0.194,0.053c0.012,0.005,0.034,0.016,0.012,0.028\r\n\t\t\t\tc-0.041,0.017-0.145-0.037-0.22-0.018c-0.111,0.028-0.099,0.092-0.137,0.146c-0.027,0.036-0.054,0.071-0.081,0.107\r\n\t\t\t\tc-0.003,0.008,0.004,0.014,0.009,0.02c0.107,0.021,0.169-0.081,0.21-0.108c0.029-0.009,0.058-0.018,0.086-0.026\r\n\t\t\t\tc0.066-0.032,0.111-0.067,0.214-0.086c-0.003,0.016-0.019,0.023-0.018,0.04c0.034,0.031,0.073,0.012,0.142,0.008\r\n\t\t\t\tc0.019,0,0.038-0.001,0.058-0.001c0.029-0.02,0.092-0.051,0.055-0.082c0,0,0-0.001-0.001-0.002\r\n\t\t\t\tc0.073-0.008,0.116-0.013,0.164,0.002c0.001,0.002,0.001,0.004,0.002,0.006c-0.029,0.03-0.094,0.055-0.093,0.094\r\n\t\t\t\tc0.024,0.013,0.055,0.015,0.064,0.043c-0.107,0.003-0.221,0.01-0.318,0.003c-0.048-0.004-0.097-0.025-0.149-0.02\r\n\t\t\t\tc-0.05,0.005-0.095,0.041-0.126,0.057c-0.053,0.028-0.107,0.056-0.16,0.084c-0.031,0.011-0.061,0.023-0.092,0.034\r\n\t\t\t\tc-0.026,0.023-0.052,0.046-0.077,0.07c0.097,0.037,0.343-0.041,0.494-0.055c0.031-0.005,0.062-0.01,0.093-0.014\r\n\t\t\t\tc0.025,0.006,0.05,0.012,0.074,0.017c0.027-0.002,0.053-0.004,0.08-0.005c0.071,0.006,0.103,0.061,0.143,0.099\r\n\t\t\t\tc-0.048-0.007-0.096-0.013-0.143-0.019c-0.175-0.014-0.382-0.023-0.599,0.048c-0.044,0.013-0.088,0.026-0.132,0.039\r\n\t\t\t\tc0.033,0.026,0.093,0.01,0.126,0.031c0.015,0.022,0.03,0.043,0.045,0.065c0.009,0.006,0.187,0.026,0.212,0.028\r\n\t\t\t\tc0.027-0.007,0.031-0.019,0.051-0.03c0.071-0.01,0.102,0.049,0.058,0.079c-0.07,0.047-0.247,0.037-0.329,0.081\r\n\t\t\t\tc-0.002,0-0.003,0.001-0.005,0.001c0.03,0.018,0.163,0.033,0.21,0.036c-0.003,0.003-0.155,0.049-0.161,0.049\r\n\t\t\t\tc-0.041,0.003-0.061-0.021-0.109,0.004c-0.042,0.022-0.094,0.081-0.039,0.115c0.01,0.006,0.061,0.009,0.061,0.018\r\n\t\t\t\tc0.001,0.014-0.046,0.027-0.052,0.042c-0.006,0.028,0.035,0.04,0.072,0.026c0.049-0.018,0.116-0.057,0.149-0.083\r\n\t\t\t\tc0.068-0.052,0.139-0.105,0.219-0.153c0.026-0.012,0.052-0.023,0.078-0.035c0.04-0.037,0.08-0.074,0.119-0.111\r\n\t\t\t\tc0.043-0.03,0.109-0.051,0.168-0.075c0.037-0.015,0.07-0.028,0.113-0.042c0.041-0.009,0.082-0.018,0.123-0.027\r\n\t\t\t\tc0.021-0.007,0.051-0.021,0.08-0.02c0.023,0.007,0.047,0.013,0.07,0.02c-0.022,0.019-0.042,0.053-0.07,0.067\r\n\t\t\t\tc-0.075,0.036-0.22,0.019-0.315,0.037c-0.025,0.043-0.11,0.069-0.158,0.098c-0.009,0.008-0.002,0.019-0.007,0.028\r\n\t\t\t\tc-0.013,0.026-0.056,0.051-0.112,0.061c0.003,0.009,0.006,0.018,0.009,0.026c-0.158,0.057-0.262,0.142-0.375,0.215\r\n\t\t\t\tc-0.03,0.019-0.109,0.042-0.12,0.068c-0.012,0.015,0.009,0.03,0.021,0.039c0.065,0.049,0.103,0.014,0.195-0.009\r\n\t\t\t\tc-0.019,0.04-0.065,0.091-0.144,0.109c-0.001,0.005-0.002,0.009-0.003,0.014c0.052,0.027,0.141,0.031,0.175-0.022\r\n\t\t\t\tc0.113-0.018,0.086,0.118,0.06,0.151c0.003,0.005,0.006,0.006,0.012,0.013c0.055-0.019,0.148-0.049,0.186-0.075\r\n\t\t\t\tc0.004-0.001,0.008-0.002,0.012-0.002c0.002,0.001,0.004,0.001,0.006,0.002c0.001,0.002,0.001,0.004,0.002,0.006\r\n\t\t\t\tc-0.05,0.055-0.176,0.082-0.215,0.141c0.012,0.026,0.047,0.037,0.078,0.043c0.037-0.003,0.063-0.022,0.086-0.035\r\n\t\t\t\tc0.013,0.011,0.023,0.019,0.028,0.038l-0.049,0.069c-0.008,0.002-0.017,0.003-0.025,0.005c0.026,0.048,0.092,0.004,0.15,0.016\r\n\t\t\t\tc0.032,0.007,0.037,0.052,0.057,0.069c-0.179,0.032-0.096,0.172-0.138,0.254c-0.009,0.019-0.043,0.094-0.017,0.116\r\n\t\t\t\tc0.006,0.006,0.01,0.008,0.021,0.009c0.036,0,0.069-0.044,0.086-0.058c0.047-0.038,0.105-0.089,0.124-0.137\r\n\t\t\t\tc-0.001-0.015-0.003-0.029-0.004-0.044c0.001-0.019,0.025-0.055,0.047-0.067c0.006-0.002,0.011-0.003,0.017-0.005\r\n\t\t\t\tc0.034,0.014,0.057,0.047,0.075,0.077c0.002,0,0.004,0,0.006,0.001c0.011-0.016,0.023-0.032,0.034-0.048\r\n\t\t\t\tc-0.003-0.046-0.006-0.093-0.009-0.14c0.001-0.041,0.018-0.075,0.027-0.11c0.002-0.001,0.003-0.002,0.004-0.003\r\n\t\t\t\tc0.023,0.013,0.046,0.027,0.069,0.04c0.012,0.015-0.004,0.03-0.005,0.042c-0.002,0.033,0.023,0.085,0.059,0.092\r\n\t\t\t\tc0.037,0.007,0.092-0.018,0.131-0.027c0.005,0.037,0.052,0.138,0.083,0.157c0.029,0.009,0.057,0.019,0.086,0.029\r\n\t\t\t\tc0.033,0.016,0.053,0.039,0.077,0.065c0.001,0.003,0.002,0.005,0.003,0.008c-0.08,0.005-0.209-0.043-0.25-0.08\r\n\t\t\t\tc-0.027-0.024-0.028-0.082-0.07-0.091c-0.061-0.014-0.142,0.044-0.163,0.066c-0.002,0-0.003,0.001-0.005,0.001\r\n\t\t\t\tc0.02,0.01,0.078,0.031,0.064,0.059c-0.007,0.019-0.053,0.031-0.075,0.044c-0.062,0.036-0.11,0.071-0.19,0.104\r\n\t\t\t\tc-0.027,0.011-0.089,0.021-0.104,0.038c0.022,0.035,0.111,0.043,0.185,0.018c0.087-0.037,0.175-0.073,0.262-0.11\r\n\t\t\t\tc0.013-0.012,0.026-0.024,0.038-0.036c0.017,0.036,0.059,0.046,0.081,0.071c-0.024,0.009-0.063,0.011-0.098,0.022\r\n\t\t\t\tc-0.09,0.027-0.188,0.048-0.269,0.081c-0.035,0.015-0.092,0.041-0.134,0.034c0.005,0.043,0.049,0.052,0.057,0.092\r\n\t\t\t\tc0.009-0.001,0.019-0.001,0.028-0.002c0,0.002,0.001,0.003,0.001,0.005c-0.015,0.021-0.059,0.025-0.1,0.034\r\n\t\t\t\tc-0.001,0.003-0.002,0.006-0.002,0.009c0.071,0.035,0.051,0.061,0.071,0.126c0.078,0.018,0.126-0.035,0.181-0.058\r\n\t\t\t\tc0.036-0.015,0.083-0.023,0.132-0.032c-0.069,0.057-0.138,0.115-0.207,0.173c0.001,0.002,0.002,0.005,0.003,0.008\r\n\t\t\t\tc0.058,0.008,0.109-0.033,0.173-0.036c0.069-0.004,0.128,0.034,0.115,0.093c-0.012,0.053-0.138,0.066-0.08,0.133\r\n\t\t\t\tc0.048,0.01,0.079-0.016,0.127-0.014c0.002,0,0.003-0.001,0.005-0.001c-0.008,0.023-0.056,0.064-0.035,0.086\r\n\t\t\t\tc0,0.001,0.001,0.002,0.001,0.003c0.108-0.031,0.124-0.099,0.202-0.141c0.009,0.002,0.017,0.004,0.026,0.007\r\n\t\t\t\tc0.001,0.027-0.032,0.057-0.047,0.081c-0.042,0.065-0.084,0.13-0.126,0.195c-0.029,0.051,0.007,0.108,0.077,0.123\r\n\t\t\t\tc0.05,0,0.1,0,0.15,0c0.05,0.005,0.1,0.01,0.15,0.014c0.012,0.017,0.027,0.044,0.031,0.062c-0.019,0.015-0.049,0.031-0.085,0.039\r\n\t\t\t\tc0.002,0.01,0.001,0.012-0.009,0.02c0.009,0.017,0.026,0.022,0.046,0.028c0.037-0.01,0.093-0.026,0.121-0.041\r\n\t\t\t\tc0.002,0.004,0.004,0.008,0.007,0.012c-0.008,0.012-0.025,0.015-0.043,0.023c-0.061,0.029-0.098,0.044-0.103,0.095\r\n\t\t\t\tc0.112-0.018,0.147-0.073,0.235-0.096c0.023,0.072-0.093,0.095-0.116,0.152c0.011,0.023,0.039,0.022,0.053,0.041\r\n\t\t\t\tc-0.039,0.015-0.064,0.034-0.097,0.049c0.041,0.037,0.102,0.063,0.19,0.023c0.008-0.005,0.016-0.011,0.024-0.016\r\n\t\t\t\tc0.023-0.009,0.031,0.008,0.05,0c0.045-0.018,0.029-0.058,0.122-0.037c0,0.002,0.001,0.003,0.002,0.005\r\n\t\t\t\tc-0.013,0.033-0.073,0.046-0.136,0.061c0.058,0.029,0.233,0.015,0.271,0.055c0.036,0.037-0.063,0.081-0.014,0.117\r\n\t\t\t\tc0.006,0.002,0.012,0.001,0.023-0.001c0.028-0.024,0.047-0.046,0.101-0.061c0.008,0.002,0.015,0.004,0.023,0.006\r\n\t\t\t\tc0.006,0.033,0.035,0.061,0.034,0.088c-0.001,0.032-0.072,0.06-0.133,0.07c0.072,0.019,0.181,0.032,0.277,0\r\n\t\t\t\tc-0.001-0.01-0.006-0.026,0.007-0.035c0.001,0,0.002,0,0.003,0c0.025-0.008,0.049-0.015,0.074-0.023\r\n\t\t\t\tc0.018-0.009,0.018-0.024,0.048-0.029c0.001,0,0.002,0,0.003,0s0.002,0,0.002,0c0.001,0,0.002,0,0.003-0.001\r\n\t\t\t\tc0.001,0,0.002,0,0.003,0c0.032-0.001,0.061,0.018,0.104,0.004c0.031-0.018,0.062-0.035,0.094-0.053\r\n\t\t\t\tc0.044-0.016,0.092,0.019,0.092-0.034c0.064,0.001,0.128-0.025,0.114-0.063c-0.096-0.034-0.03-0.068,0.043-0.095\r\n\t\t\t\tc0.035,0.012,0.033,0.039,0.06,0.062c0.009,0.008,0.023,0.008,0.03,0.019c-0.036,0.036-0.115,0.1-0.125,0.14\r\n\t\t\t\tc0.023-0.018,0.04-0.047,0.076-0.059c0.023-0.008,0.049-0.002,0.073-0.012c0.024-0.019,0.048-0.037,0.072-0.055\r\n\t\t\t\tc0.008,0.022,0.018,0.041,0.034,0.055c0.013,0.012,0.052,0.019,0.053,0.04c0.001,0.034-0.057,0.046-0.088,0.07\r\n\t\t\t\tc-0.018,0.014-0.016,0.041-0.034,0.057c-0.035,0.025-0.07,0.05-0.105,0.075c0,0,0,0.001,0.001,0.002\r\n\t\t\t\tc0.032-0.001,0.055-0.016,0.087-0.017c0.02,0.011,0.033,0.028,0.047,0.046c0.002,0.001,0.004,0.002,0.006,0.002\r\n\t\t\t\tc0.075-0.019,0.046-0.092,0.085-0.126c0.041-0.013,0.102-0.007,0.101,0.026c-0.001,0.043-0.072,0.076-0.03,0.132\r\n\t\t\t\tc0.056,0.007,0.091-0.071,0.108-0.096c0.011-0.016,0.04-0.031,0.063-0.042c-0.021,0.042-0.041,0.083-0.062,0.125\r\n\t\t\t\tc0.006-0.001,0.012-0.002,0.017-0.003c0.053,0.045-0.139,0.11-0.08,0.183c0.052,0.007,0.11-0.041,0.178-0.037\r\n\t\t\t\tc0.043,0.002,0.057,0.042,0.094,0.052c0.006-0.001,0.012-0.002,0.017-0.003c0.057-0.029,0.042-0.124,0.109-0.141\r\n\t\t\t\tc0.08-0.02,0.159,0.014,0.22,0.018c0.039-0.001,0.078-0.003,0.117-0.004c0.03,0.001,0.076,0.02,0.11-0.001\r\n\t\t\t\tc0.013-0.009,0.015-0.023,0.02-0.035c0.036-0.085-0.093-0.067-0.067-0.122c-0.041,0.011-0.059,0.029-0.089,0.042\r\n\t\t\t\tc-0.065,0.028-0.129-0.005-0.144-0.044c0.136-0.026,0.396-0.115,0.395-0.18c-0.021,0.001-0.042,0.001-0.063,0.002\r\n\t\t\t\tc-0.034,0.009-0.058,0.035-0.104,0.036c-0.051,0.002-0.124-0.029-0.138-0.067c0.064-0.012,0.128-0.025,0.185-0.032\r\n\t\t\t\tc-0.019-0.013-0.058-0.022-0.087-0.023c-0.003-0.002-0.006-0.003-0.01-0.005c0.031-0.01,0.075-0.019,0.101-0.029\r\n\t\t\t\tc0.034-0.059-0.048-0.07,0.054-0.117c0-0.003,0-0.005,0-0.008c-0.048-0.03-0.174,0.004-0.201-0.043\r\n\t\t\t\tc-0.008-0.014,0.003-0.029,0.009-0.038c0.034-0.053,0.14-0.038,0.185-0.014c0.017-0.003,0.026-0.005,0.033-0.011\r\n\t\t\t\tc0.019-0.014,0.036-0.1,0.012-0.124c0.044-0.024,0.037-0.052,0.056-0.086c0.01-0.01,0.02-0.02,0.03-0.031\r\n\t\t\t\tc-0.041,0.006-0.092,0.025-0.124,0.016l-0.008-0.015c0.097-0.014,0.14-0.081,0.167-0.127c-0.03-0.052-0.1-0.085-0.104-0.156\r\n\t\t\t\tc-0.112-0.018-0.212-0.043-0.286-0.1c0.086-0.011,0.213,0.059,0.274,0.031c0.002-0.001,0.005-0.002,0.007-0.003\r\n\t\t\t\tc-0.001-0.003-0.002-0.005-0.003-0.008c-0.042-0.016-0.114-0.015-0.143-0.042c-0.025-0.024-0.027-0.071-0.049-0.092\r\n\t\t\t\tc0.047-0.029,0.093-0.059,0.14-0.088c0.046-0.019,0.099-0.029,0.134-0.05c-0.008-0.009-0.016-0.018-0.025-0.027\r\n\t\t\t\tc-0.005-0.014-0.011-0.028-0.016-0.042c-0.03-0.035-0.107-0.073-0.064-0.124c0-0.001-0.001-0.002-0.001-0.003\r\n\t\t\t\tc0.036,0.017,0.147,0.055,0.204,0.044c-0.001-0.003-0.002-0.005-0.003-0.008c0.006-0.008,0.012-0.008,0.012-0.019\r\n\t\t\t\tc-0.034-0.018-0.117-0.048-0.111-0.082c0.001-0.001,0.003-0.002,0.004-0.003c0.046,0.004,0.07,0.02,0.12,0.02\r\n\t\t\t\tc0.021-0.009,0.035-0.019,0.033-0.036c-0.026-0.023-0.065-0.029-0.091-0.051c0.001-0.002,0.002-0.005,0.003-0.007\r\n\t\t\t\tc0.035-0.01,0.079,0.009,0.106-0.015c0.019-0.013,0.014-0.041,0.035-0.055c0.018-0.012,0.068-0.012,0.091-0.021\r\n\t\t\t\tc0.015-0.022,0.003-0.047-0.001-0.075c-0.068,0.036-0.136,0.006-0.192,0.002c-0.019,0-0.038,0.001-0.058,0.001\r\n\t\t\t\tc-0.021-0.005-0.042-0.024-0.057-0.036c0,0,0-0.001,0-0.002c0.047,0,0.084,0.013,0.126,0.016\r\n\t\t\t\tc0.044-0.001,0.088-0.001,0.131-0.002c0.028-0.001,0.09-0.009,0.1-0.024c0.026-0.037-0.037-0.077-0.065-0.092\r\n\t\t\t\tc-0.023-0.013-0.046-0.027-0.069-0.04c-0.012-0.013-0.024-0.025-0.036-0.038c-0.018-0.01-0.063-0.003-0.087-0.007\r\n\t\t\t\tc-0.051-0.015-0.102-0.031-0.152-0.046c0.035-0.013,0.071-0.026,0.106-0.039c0.054-0.022,0.094-0.056,0.147-0.073\r\n\t\t\t\tc0.065-0.021,0.098,0.007,0.147-0.018c-0.003-0.033-0.056-0.036-0.075-0.06c0.04-0.014,0.032-0.041,0.033-0.07\r\n\t\t\t\tC18.58,15.989,18.564,16,18.55,15.989c-0.01-0.017-0.02-0.034-0.03-0.051c-0.015-0.01-0.031-0.019-0.047-0.029\r\n\t\t\t\tc-0.088-0.043-0.195,0.005-0.197-0.102c-0.016-0.007-0.033-0.014-0.049-0.021c0.207-0.079,0.173-0.008,0.319,0\r\n\t\t\t\tc0.03-0.008,0.081-0.026,0.102-0.043c0.038-0.03,0.094-0.146,0.023-0.187c-0.046-0.027-0.126-0.019-0.183-0.035l-0.005,0.001\r\n\t\t\t\tc0,0,0-0.001-0.001-0.002c0.156-0.015,0.143-0.03,0.163-0.114c0.004-0.003,0.009-0.005,0.013-0.007c0.003,0,0.005,0,0.008,0\r\n\t\t\t\tc0.029,0.023,0.044,0.049,0.091,0.053c0.011,0.002,0.008-0.002,0.02-0.004c0.001,0,0.002,0,0.003,0\r\n\t\t\t\tc-0.017-0.036-0.034-0.072-0.051-0.108c0.001-0.001,0.003-0.002,0.005-0.003c0.035,0.01,0.044,0.023,0.074,0.039\r\n\t\t\t\tc0.01,0.002,0.021,0.004,0.031,0.006c0.009,0.009,0.018,0.019,0.028,0.028c0.03,0.017,0.13,0.009,0.165-0.018\r\n\t\t\t\tc0.031-0.024,0.019-0.064,0.056-0.086c0.014-0.008,0.03-0.006,0.037,0.001c0.13-0.104-0.137-0.115-0.131-0.166\r\n\t\t\t\tc0.002-0.017,0.048-0.033,0.064-0.046c0.043-0.032,0.089-0.076,0.116-0.114c-0.009,0-0.018-0.001-0.027-0.001\r\n\t\t\t\tc-0.002-0.001-0.004-0.002-0.006-0.004c0.05-0.023,0.021-0.065,0.001-0.1c0.055,0.009,0.141,0.024,0.224-0.01\r\n\t\t\t\tc-0.032,0.049-0.038,0.104-0.065,0.156c-0.017,0.033-0.065,0.069-0.066,0.104c0.008,0.011,0.016,0.021,0.024,0.032\r\n\t\t\t\tc0.015,0.03-0.047,0.071-0.007,0.098c0.021,0.016,0.068,0.009,0.106,0.008c0.001,0,0.002,0,0.002,0\r\n\t\t\t\tc-0.004-0.037,0.007-0.078-0.028-0.11c0.083-0.005,0.124-0.07,0.134-0.107c0.002-0.001,0.003-0.002,0.004-0.003\r\n\t\t\t\tc0.022,0.02,0.027,0.067,0.068,0.07c0.003,0,0.007,0,0.01,0c0.055-0.028,0.102-0.093,0.119-0.136\r\n\t\t\t\tc-0.006-0.004-0.012-0.009-0.018-0.013c0.001,0,0.002,0,0.003,0c0.045,0.009,0.167,0.05,0.2-0.008\r\n\t\t\t\tc0.002-0.031,0.004-0.063,0.006-0.094c0.012-0.023,0.053-0.042,0.051-0.069c0.004-0.047-0.125-0.031-0.121-0.087\r\n\t\t\t\tc0.012-0.034,0.201-0.025,0.247-0.027c0.022,0.013,0.039,0.036,0.067,0.044c0.065-0.002,0.086-0.04,0.101-0.069\r\n\t\t\t\tc0.032-0.059,0.046-0.123,0.077-0.184c0.014-0.028,0.029-0.056,0.043-0.085c0.008-0.021-0.001-0.073-0.025-0.093\r\n\t\t\t\tc-0.006-0.002-0.003-0.002-0.013-0.001c0.018-0.037,0.066-0.059,0.078-0.1c-0.014-0.01-0.028-0.02-0.042-0.03\r\n\t\t\t\tc-0.026-0.028-0.037-0.094-0.024-0.122c0.013-0.028,0.059-0.047,0.07-0.077c0.014-0.038-0.033-0.077-0.004-0.117\r\n\t\t\t\tc0.02-0.027,0.112-0.04,0.135-0.086c0.002-0.016,0.004-0.032,0.005-0.048c0.016-0.031,0.132-0.113,0.06-0.153\r\n\t\t\t\tc-0.023-0.013-0.064-0.006-0.096-0.01c-0.002,0-0.003,0.001-0.005,0.001c0.016-0.009,0.034-0.011,0.039-0.024\r\n\t\t\t\tc0.017-0.065-0.146-0.086-0.173-0.118c0.009-0.012,0.018-0.025,0.027-0.037c0.001-0.001,0.003-0.002,0.004-0.003\r\n\t\t\t\tc0.031,0.059,0.15,0.093,0.239,0.092c0.045,0,0.091-0.01,0.128-0.003c0.046,0.009,0.076,0.04,0.128,0.044\r\n\t\t\t\tc0.046,0.004,0.173-0.02,0.191-0.045c-0.003-0.044-0.086-0.053-0.114-0.083c0.091,0.005,0.077-0.035,0.134,0.031\r\n\t\t\t\tc0.041,0.007,0.101-0.012,0.116-0.034c0.001-0.052-0.066-0.084-0.058-0.137c0.005-0.005,0.011-0.01,0.016-0.015\r\n\t\t\t\tc0.03,0.025,0.076,0.076,0.147,0.053c0.075-0.023,0.014-0.08,0.073-0.109c0.046-0.014,0.093-0.029,0.139-0.043\r\n\t\t\t\tc0.048-0.025,0.083-0.063,0.134-0.089c0.033-0.013,0.065-0.027,0.098-0.04c0.023-0.014,0.024-0.037,0.052-0.051\r\n\t\t\t\tc0.052-0.027,0.165-0.104,0.16-0.147c0.013,0,0.026-0.001,0.039-0.001c0.009-0.007,0.007-0.015,0.014-0.021\r\n\t\t\t\tc0.024-0.02,0.098-0.01,0.069-0.046c-0.007-0.009-0.015-0.014-0.02-0.028c0.02-0.022,0.045-0.041,0.1-0.051\r\n\t\t\t\tc-0.003-0.01-0.007-0.02-0.01-0.03c0.004-0.01,0.018-0.015,0.036-0.02c0.005-0.043-0.016-0.072-0.045-0.098\r\n\t\t\t\tc0.008-0.035,0.079-0.049,0.107-0.077c0-0.029-0.031-0.052-0.063-0.055c0.037-0.037,0.131-0.031,0.146-0.078\r\n\t\t\t\tc-0.024-0.02-0.058-0.024-0.069-0.057c0.023-0.025,0.075-0.06,0.135-0.054c0.001,0,0.002,0,0.003,0\r\n\t\t\t\tc-0.033-0.02-0.066-0.041-0.099-0.061c-0.089-0.081,0.158-0.142,0.204-0.197c-0.022,0.004-0.029,0-0.037-0.01\r\n\t\t\t\tc-0.002-0.001-0.004-0.002-0.006-0.002c0,0,0-0.001-0.001-0.002c0.032-0.002,0.069,0.005,0.1-0.008\r\n\t\t\t\tc0.004-0.004,0.008-0.007,0.012-0.011c-0.001-0.024-0.034-0.036-0.057-0.044c-0.007-0.043,0.064-0.091,0.107-0.117\r\n\t\t\t\tc0.015,0.003,0.03,0.006,0.045,0.009c-0.008-0.04-0.016-0.08-0.024-0.12c-0.038,0.015-0.036,0.038-0.061,0.057\r\n\t\t\t\tc-0.04,0.031-0.1,0.067-0.155,0.09c-0.046,0.018-0.166,0.053-0.22,0.054c-0.055,0.001-0.099-0.006-0.169,0.007\r\n\t\t\t\tc-0.086,0.017-0.192,0.071-0.27,0.055c-0.009-0.018-0.019-0.035-0.028-0.053c-0.001,0-0.002,0-0.003,0.001\r\n\t\t\t\tc-0.072,0.055-0.152,0.123-0.2,0.186c-0.031,0.04-0.06,0.078-0.102,0.114c-0.038,0.032-0.043,0.082-0.099,0.107\r\n\t\t\t\tc-0.053,0.023-0.122,0.012-0.178,0.027c-0.003,0-0.006-0.001-0.008-0.002c-0.047-0.023-0.103,0.025-0.159,0.03\r\n\t\t\t\tc-0.014-0.012-0.007-0.021,0.003-0.032c0.022-0.023,0.056-0.047,0.12-0.051c0.022-0.001,0.054-0.002,0.075-0.013\r\n\t\t\t\tc0.068-0.034,0.046-0.111,0.096-0.141c0.031-0.019,0.151-0.057,0.162-0.078c0.014-0.025-0.022-0.049-0.044-0.053\r\n\t\t\t\tc-0.04,0.008-0.037,0.022-0.06,0.033l-0.116,0.034c-0.082,0.034-0.185,0.115-0.294,0.118c-0.015-0.011-0.018-0.03-0.038-0.036\r\n\t\t\t\tc-0.051,0.004-0.131,0.08-0.148,0.105c-0.006,0.001-0.012,0.001-0.018,0.002c-0.003,0-0.005,0-0.008,0\r\n\t\t\t\tc-0.046-0.074,0.259-0.214,0.154-0.309c-0.031-0.028-0.086-0.028-0.126-0.046c0.103-0.026,0.206-0.053,0.309-0.079\r\n\t\t\t\tc0.011-0.005,0.016-0.012,0.017-0.022c0.05-0.019,0.101-0.031,0.138-0.055c0.04-0.026,0.15-0.164,0.158-0.201\r\n\t\t\t\tc0.003-0.016-0.028-0.058-0.042-0.07c-0.016-0.014-0.044-0.019-0.068-0.024c-0.11-0.022-0.111,0.021-0.198,0.048\r\n\t\t\t\tc-0.092,0.028-0.168-0.001-0.196,0.069c-0.047,0.001-0.074-0.025-0.115-0.028c-0.045-0.003-0.093,0.034-0.122,0.047\r\n\t\t\t\tc-0.001,0-0.002,0-0.003,0c0,0,0-0.001-0.001-0.002c0.016-0.039,0.101-0.058,0.108-0.097c0.007-0.042-0.147-0.072-0.199-0.067\r\n\t\t\t\tc-0.027,0.007-0.053,0.015-0.08,0.022c-0.065,0.001-0.133-0.039-0.158-0.08c0.031-0.004,0.053,0.006,0.077,0.01\r\n\t\t\t\tc0.032,0.005,0.153,0.002,0.167-0.005c0.121,0.041,0.265,0.068,0.372,0.122c0.097-0.022,0.152-0.08,0.272-0.089\r\n\t\t\t\tc0.1-0.007,0.172,0.031,0.261,0.04c0.04-0.01,0.035-0.031,0.071-0.042c0.056,0.011,0.104,0.041,0.15,0.063\r\n\t\t\t\tc0.024,0.008,0.048,0.017,0.071,0.025c0.016,0.019,0.031,0.037,0.047,0.056c0.021,0.005,0.032-0.001,0.046,0.011\r\n\t\t\t\tc0.015,0.022,0.03,0.044,0.045,0.066c0.042,0.038,0.131,0.059,0.2,0.07c0.101,0.016,0.192,0.009,0.27-0.045\r\n\t\t\t\tc0.017-0.012,0.034-0.02,0.038-0.036c0.013-0.051-0.114-0.086-0.107-0.166c0.001-0.001,0.003-0.002,0.004-0.003\r\n\t\t\t\tc0.014,0.037,0.178,0.137,0.22,0.148c0.022,0.005,0.059,0.007,0.087-0.007c0.02-0.01,0.031-0.026,0.039-0.041\r\n\t\t\t\tc0.037-0.061-0.073-0.08-0.109-0.114c0.003-0.006,0.006-0.013,0.01-0.019c-0.026,0-0.033-0.018-0.043-0.033\r\n\t\t\t\tc-0.013-0.002-0.028,0-0.049,0.004c-0.004-0.04,0.038-0.112-0.07-0.076c0.009-0.016,0.01-0.032,0.012-0.052\r\n\t\t\t\tc-0.015,0.002-0.03,0.005-0.045,0.007c-0.002,0-0.004,0-0.005-0.001c-0.033-0.116-0.015-0.165-0.164-0.203\r\n\t\t\t\tc-0.003,0-0.005,0-0.008,0c-0.019,0.045-0.027,0.105-0.038,0.15c-0.001,0.001-0.003,0.002-0.004,0.003\r\n\t\t\t\tc-0.006-0.003-0.013-0.007-0.019-0.01c-0.004-0.025,0.002-0.056-0.014-0.084c-0.022-0.037-0.043-0.094-0.038-0.131\r\n\t\t\t\tc-0.051,0.012-0.061,0.058-0.095,0.08c-0.009-0.002-0.019-0.003-0.028-0.005c0-0.058-0.017-0.052-0.091-0.052\r\n\t\t\t\tc-0.013-0.02-0.001-0.032-0.007-0.054c-0.005-0.001-0.01-0.003-0.014-0.004c-0.012,0.001-0.02,0.003-0.029,0.007\r\n\t\t\t\tc-0.007-0.003-0.006-0.001-0.01-0.008c-0.053,0.01-0.081,0.001-0.126,0.003c-0.151,0.005-0.169,0.037-0.238-0.051\r\n\t\t\t\tc-0.041-0.009-0.201-0.016-0.26-0.004c-0.013,0.035-0.019,0.069-0.038,0.102c-0.018,0.027-0.037,0.054-0.055,0.08\r\n\t\t\t\tc-0.003,0.002-0.006,0.005-0.008,0.007c-0.027-0.016-0.116-0.06-0.103-0.103c0.009-0.015,0.038-0.018,0.056-0.029\r\n\t\t\t\tc0.021-0.013,0.084-0.093,0.073-0.115c-0.015-0.03-0.082-0.03-0.118-0.039c-0.039-0.01-0.067-0.043-0.116-0.041\r\n\t\t\t\tc-0.046,0.002-0.061,0.033-0.074,0.049c-0.018,0.016-0.035,0.032-0.053,0.048c-0.021,0.029-0.031,0.063-0.043,0.095\r\n\t\t\t\tc-0.007,0.002-0.013,0.004-0.019,0.005c-0.015-0.051-0.072-0.083-0.151-0.068c0,0,0-0.001-0.001-0.001\r\n\t\t\t\tc0.024-0.031,0.103-0.012,0.139-0.034c0.06-0.036,0.077-0.119,0.142-0.155c0.004-0.005,0.009-0.01,0.013-0.016\r\n\t\t\t\tc-0.078-0.016-0.155-0.032-0.243-0.04c-0.032,0.023-0.05,0.013-0.09,0.032c-0.021,0.015-0.043,0.03-0.064,0.045\r\n\t\t\t\tc-0.072,0.047-0.113,0.067-0.106,0.143c-0.023-0.003-0.035-0.007-0.05-0.017c-0.124-0.083,0.099-0.103,0.101-0.159\r\n\t\t\t\tc0.001-0.031-0.064-0.029-0.086-0.038c-0.002,0-0.004,0-0.005-0.001c0,0,0-0.001-0.001-0.002c0.065-0.02,0.17-0.047,0.208-0.018\r\n\t\t\t\tc0.055-0.015,0.091-0.086,0.101-0.119c0.002-0.012,0.004-0.024,0.007-0.036c0.019-0.029,0.096-0.064,0.136-0.084\r\n\t\t\t\tc0.001-0.002,0.002-0.004,0.003-0.005c-0.051-0.005-0.107-0.018-0.136-0.046c0.06,0.007,0.119,0.006,0.189,0.005\r\n\t\t\t\tc-0.007-0.017-0.02-0.023-0.032-0.034c-0.018-0.066,0.148-0.105,0.248-0.112c0.019-0.003,0.038-0.006,0.058-0.01\r\n\t\t\t\tc0.014,0.001,0.034,0.006,0.062-0.003c0.018-0.006,0.028-0.016,0.039-0.024c0.005,0.031-0.025,0.045-0.053,0.063\r\n\t\t\t\tc-0.039,0.004-0.2-0.007-0.232,0.033c0,0.003,0,0.005,0,0.008c0.038,0.019,0.086,0.056,0.135,0.064\r\n\t\t\t\tc0.063,0.01,0.146-0.01,0.22-0.012c0.032,0,0.063,0,0.095,0c0.05-0.056,0.09-0.128,0.108-0.194\r\n\t\t\t\tc0.015-0.005,0.03-0.001,0.047-0.002c0.036-0.002,0.135-0.04,0.152-0.052c0.047-0.035-0.09-0.189-0.128-0.197\r\n\t\t\t\tc-0.032-0.007-0.07-0.002-0.107-0.004c-0.059-0.004-0.24-0.04-0.269,0.031c0.007,0.018,0.019,0.023,0.032,0.034\r\n\t\t\t\tc0.001,0.002,0.001,0.003,0.002,0.005C21.061,9.85,21.006,9.85,20.952,9.85c-0.002,0-0.003,0.001-0.005,0.001\r\n\t\t\t\tc-0.006-0.034,0.037-0.085,0.002-0.115c-0.013-0.007-0.061,0.002-0.077,0c-0.003-0.017,0.025-0.026,0.044-0.033\r\n\t\t\t\tc0.024-0.05-0.082-0.091-0.112-0.123c0,0,0-0.001-0.001-0.002c0.049,0.003,0.087,0.023,0.143,0.019\r\n\t\t\t\tc0.08-0.005,0.117-0.075,0.219-0.082c0.053-0.003,0.078,0.028,0.129,0.024c0.015-0.006,0.029-0.012,0.044-0.018\r\n\t\t\t\tc0.076-0.037,0.128-0.084,0.117-0.15c-0.006-0.035-0.112-0.077-0.174-0.057c-0.075,0.034-0.15,0.068-0.225,0.101\r\n\t\t\t\tc-0.023,0.015-0.039,0.033-0.066,0.048c0.001-0.026,0.017-0.077,0-0.103c-0.026-0.042-0.069-0.068-0.087-0.113\r\n\t\t\t\tc-0.144,0.026-0.093,0.074-0.143,0.127c-0.101,0.032-0.174-0.025-0.264-0.018c0.036-0.037,0.154-0.006,0.199-0.003\r\n\t\t\t\tc0.004-0.001,0.008-0.001,0.012-0.002c0.006-0.013,0.012-0.027,0.018-0.04c0.021-0.034,0.052-0.065,0.088-0.093\r\n\t\t\t\tc-0.001-0.001-0.003-0.003-0.004-0.004c-0.015-0.008-0.041-0.006-0.061-0.008c-0.037-0.005-0.076-0.012-0.118-0.013\r\n\t\t\t\tc-0.078,0-0.163,0.02-0.217-0.003c0.044-0.008,0.061-0.02,0.074-0.039c-0.012-0.023-0.076-0.028-0.104-0.037\r\n\t\t\t\tc-0.001-0.002-0.001-0.004-0.002-0.006c0.057-0.01,0.172,0.001,0.217,0.01c0.051,0.011,0.098,0.041,0.167,0.033\r\n\t\t\t\tc0.034-0.018,0.074-0.065,0.132-0.048c0.029,0.008,0.042,0.034,0.072,0.043c0.067-0.007,0.093-0.07,0.062-0.117\r\n\t\t\t\tc-0.04-0.061-0.125-0.079-0.182-0.12c-0.022-0.016-0.009-0.05-0.031-0.062c-0.042-0.024-0.124,0-0.196,0.004\r\n\t\t\t\tc-0.024-0.002-0.048-0.003-0.073-0.005c-0.041,0.002-0.072,0.028-0.098,0.039c-0.039,0.016-0.082,0.03-0.131,0.042\r\n\t\t\t\tc0-0.001-0.001-0.002-0.001-0.003c0.069-0.022,0.084-0.061,0.131-0.091c0.041-0.027,0.109-0.044,0.145-0.073\r\n\t\t\t\tc0.016-0.013,0.031-0.04,0.007-0.058c-0.01-0.007-0.041-0.008-0.068-0.013c0.057-0.028,0.115-0.055,0.172-0.083\r\n\t\t\t\tc0.024,0.008,0.048,0.016,0.072,0.024c0.029,0.02,0.058,0.041,0.086,0.062c0.003,0.001,0.006,0.001,0.008,0.002\r\n\t\t\t\tc0.003-0.003,0.005-0.005,0.008-0.008c-0.002-0.029-0.048-0.05-0.072-0.066c-0.018-0.012-0.036-0.025-0.053-0.037\r\n\t\t\t\tC24.16,6.946,27.965,6,32,6c4.818,0,9.316,1.335,13.186,3.62c-0.129,0.065-0.246,0.164-0.324,0.268\r\n\t\t\t\tc-0.047-0.001-0.131-0.022-0.152-0.019c-0.081,0.013-0.199,0.161-0.229,0.229c-0.014,0.013-0.025,0.025-0.039,0.038\r\n\t\t\t\tc0.039,0.028,0.076,0.062,0.103,0.102c-0.099,0.069-0.239,0.035-0.292,0.153c-0.004,0.004-0.008,0.008-0.014,0.013\r\n\t\t\t\tc0.033,0.03,0.064,0.059,0.096,0.089c-0.004,0.027-0.008,0.055-0.014,0.083c-0.383-0.001-0.321,0.111-0.547,0.216v0.006\r\n\t\t\t\tc0.209,0.251,0.238,0.04,0.521,0.089c0.13,0.023,0.227,0.096,0.344,0.121c0.108-0.061,0.16-0.161,0.248-0.241\r\n\t\t\t\tc-0.003-0.025-0.005-0.051-0.007-0.076c-0.034-0.021-0.067-0.042-0.103-0.064c-0.004-0.006-0.008-0.013-0.012-0.019\r\n\t\t\t\tc0.022-0.023,0.047-0.047,0.069-0.07c0.074,0.003,0.112,0.025,0.159,0.051c0.055-0.058,0.136-0.114,0.197-0.165v-0.013\r\n\t\t\t\tc-0.021-0.017-0.043-0.034-0.064-0.051c-0.014-0.017-0.002-0.045,0.006-0.076c0.016-0.013,0.03-0.026,0.044-0.038\r\n\t\t\t\tc0.107,0.001,0.271,0.047,0.356,0.006c0.035-0.028,0.072-0.055,0.107-0.083c0.021-0.023,0.043-0.047,0.063-0.07\r\n\t\t\t\tc-0.028-0.015-0.056-0.03-0.083-0.045c0.009-0.043,0.048-0.077,0.1-0.106c0.829,0.518,1.631,1.072,2.395,1.677\r\n\t\t\t\tc-0.006,0.025-0.012,0.05-0.016,0.075c-0.05,0.083-0.098,0.165-0.146,0.248c-0.135,0.174-0.528,0.182-0.465,0.489\r\n\t\t\t\tc0.054,0.004,0.107,0.008,0.16,0.013c0.135,0.378-0.104,0.29-0.146,0.515c0.07,0.108,0.28,0.064,0.369,0.153\r\n\t\t\t\tc0.029,0.036-0.002,0.112,0.013,0.165c0.035,0.124,0.136,0.168,0.286,0.146c-0.018,0.094-0.113,0.264-0.184,0.311\r\n\t\t\t\tc-0.016,0.013-0.038,0.014-0.07,0.013c-0.378-0.351-0.896-0.546-1.468-0.705c-0.123-0.034-0.46-0.13-0.636-0.089\r\n\t\t\t\tc-0.08,0.019-0.115,0.1-0.184,0.134c-0.002,0.004-0.004,0.008-0.006,0.013c0.061,0.078,0.123,0.157,0.184,0.235\r\n\t\t\t\tc-0.01,0.223-0.119,0.179-0.291,0.203c-0.021,0.033-0.037,0.114-0.052,0.146c-0.095,0.048-0.19-0.018-0.216-0.089\r\n\t\t\t\tc0.029-0.038,0.059-0.076,0.089-0.115c-0.178-0.082-0.286-0.093-0.45,0.032c-0.043,0.034-0.086,0.068-0.128,0.102\r\n\t\t\t\tc-0.1,0.03-0.176-0.034-0.235-0.051c-0.104-0.03-0.279-0.002-0.361,0.032c-0.092,0.037-0.088,0.172-0.172,0.222\r\n\t\t\t\tc-0.028-0.015-0.037-0.02-0.045-0.057c-0.182,0.003-0.223,0.07-0.375,0.019c0-0.05,0.008-0.062,0.025-0.089\r\n\t\t\t\tc0.038-0.006,0.076-0.013,0.114-0.019c0-0.097,0.017-0.161,0.026-0.235c-0.381-0.002-0.168,0.2-0.42,0.248\r\n\t\t\t\tc-0.006-0.002-0.012-0.004-0.019-0.006c-0.011-0.034-0.021-0.068-0.032-0.102c-0.133,0.055-0.267,0.11-0.399,0.165\r\n\t\t\t\tc-0.226,0.09-0.453,0.187-0.661,0.273c-0.051,0.015-0.102,0.03-0.153,0.045c-0.087,0.07-0.049,0.285-0.14,0.349\r\n\t\t\t\tc-0.057,0.011-0.115,0.021-0.172,0.032c-0.342,0.069-0.428-0.091-0.629-0.248c0.041-0.201,0.281-0.195,0.508-0.203\r\n\t\t\t\tc-0.055-0.114-0.169-0.349-0.305-0.375c-0.098,0.009-0.195,0.017-0.293,0.025c-0.082-0.018-0.133-0.053-0.215-0.032\r\n\t\t\t\tc-0.018,0.148,0.158,0.164,0.12,0.337c-0.051,0.081-0.102,0.161-0.151,0.241c-0.004,0.004-0.01,0.009-0.014,0.013\r\n\t\t\t\tc0.034,0.051,0.079,0.078,0.153,0.089c0.079,0.238,0.028,0.214-0.032,0.407c-0.006,0.036-0.013,0.072-0.02,0.108v0.013\r\n\t\t\t\tc-0.165-0.008-0.334-0.211-0.565-0.184c-0.124,0.261-0.491,0.237-0.661,0.445c0.006,0.173,0.26,0.294,0.141,0.47\r\n\t\t\t\tc-0.034-0.011-0.068-0.021-0.103-0.032c-0.071,0.008-0.14,0.046-0.235,0.019c-0.217-0.062-0.433-0.161-0.604-0.267\r\n\t\t\t\tc-0.104,0-0.1,0.078-0.152,0.127c0.002,0.063,0.125,0.201,0.19,0.229c0.058,0.024,0.138-0.001,0.19,0.006\r\n\t\t\t\tc0.15,0.265-0.1,0.247-0.26,0.21c-0.072-0.016-0.158,0.001-0.211-0.032c-0.029-0.021-0.053-0.077-0.064-0.114\r\n\t\t\t\tc-0.075-0.038-0.206-0.014-0.291-0.057c-0.043-0.022-0.209-0.444-0.217-0.527c0.123-0.036,0.164-0.19,0.07-0.292\r\n\t\t\t\tc-0.066-0.072-0.223-0.087-0.305-0.14c-0.137-0.088-0.245-0.222-0.362-0.33c0.222-0.112,0.253,0.089,0.343,0.14\r\n\t\t\t\tc0.07,0.011,0.141,0.021,0.211,0.032c0.5,0.15,1.305,0.524,1.83,0.127c0.111-0.084,0.24-0.161,0.235-0.343\r\n\t\t\t\tc-0.069-0.069-0.081-0.106-0.076-0.242c-0.091-0.072-0.211-0.158-0.331-0.197c-0.127-0.038-0.254-0.076-0.381-0.115\r\n\t\t\t\tc-0.121-0.102-0.242-0.203-0.361-0.305c-0.068-0.021-0.137-0.042-0.203-0.063c-0.108-0.038-0.217-0.076-0.324-0.114\r\n\t\t\t\tc-0.18-0.013-0.36-0.025-0.54-0.038c-0.03,0.023-0.06,0.047-0.089,0.07c-0.004-0.046-0.008-0.093-0.014-0.14\r\n\t\t\t\tc-0.183-0.035-0.345-0.068-0.35-0.28c-0.061,0.036-0.123,0.072-0.184,0.108c-0.047,0.019-0.104,0.021-0.141,0.044\r\n\t\t\t\tc-0.113-0.074-0.219-0.036-0.369-0.025c-0.065-0.103-0.205-0.127-0.279-0.222c0.236,0.002,0.468,0.029,0.591-0.095\r\n\t\t\t\tc-0.002-0.023-0.005-0.047-0.007-0.07c-0.027-0.017-0.055-0.034-0.082-0.051c-0.065-0.023-0.141,0.003-0.191-0.019\r\n\t\t\t\tc-0.105-0.045-0.177-0.123-0.299-0.159c-0.07,0.062-0.137,0.151-0.152,0.267c-0.039-0.008-0.08-0.017-0.121-0.025\r\n\t\t\t\tc0.041-0.129,0.059-0.18,0.127-0.279c-0.05-0.066-0.162-0.027-0.242-0.013c-0.045,0.144-0.116,0.243-0.248,0.305\r\n\t\t\t\tc-0.004-0.093-0.008-0.187-0.012-0.28c-0.14,0.095-0.322,0.263-0.389,0.426c-0.018-0.002-0.034-0.004-0.051-0.006\r\n\t\t\t\tc-0.001-0.246,0.115-0.269,0.216-0.4c-0.28-0.021-0.326,0.061-0.47,0.203c-0.031,0.023-0.079-0.012-0.121,0.013\r\n\t\t\t\tc-0.073,0.044-0.145,0.185-0.172,0.273c-0.188-0.096-0.28-0.273-0.381,0.083c-0.043-0.036-0.086-0.072-0.127-0.108\r\n\t\t\t\tc-0.006-0.002-0.014-0.004-0.02-0.006c-0.048,0.076-0.089,0.121-0.203,0.134c-0.027,0.103-0.078,0.174-0.152,0.229\r\n\t\t\t\tc0.014-0.069,0.026-0.136,0.051-0.191c-0.004-0.011-0.008-0.021-0.014-0.032c-0.006-0.004-0.013-0.008-0.019-0.013\r\n\t\t\t\tc-0.084,0.046-0.147,0.229-0.197,0.311c-0.135-0.012-0.165-0.08-0.299-0.032c-0.024-0.021-0.051-0.042-0.076-0.063\r\n\t\t\t\tc-0.061,0.246-0.091,0.112-0.216,0.203c-0.066,0.048-0.033,0.116-0.146,0.153c-0.019,0.021-0.037,0.042-0.057,0.063\r\n\t\t\t\tc0.026,0.021,0.051,0.042,0.076,0.064v0.006c-0.036,0.051-0.105,0.052-0.172,0.038c0.011,0.047,0.021,0.093,0.031,0.14\r\n\t\t\t\tc-0.019,0.028-0.037,0.055-0.057,0.083c-0.006,0.004-0.013,0.009-0.019,0.013c-0.046-0.028-0.063-0.041-0.089-0.089h-0.006\r\n\t\t\t\tc-0.065,0.006-0.07,0.078-0.133,0.102c-0.01,0.027,0.014,0.055,0.043,0.076v0.038c-0.054,0.016-0.076,0.025-0.102,0.07\r\n\t\t\t\tc-0.041-0.01-0.074-0.026-0.127-0.032c-0.044,0.035-0.058,0.078-0.121,0.095c0.011,0.038,0.019,0.052,0.057,0.064\r\n\t\t\t\tc-0.034,0.075-0.199,0.095-0.273,0.134c-0.006,0.004-0.013,0.008-0.019,0.013c0.021,0.036,0.042,0.072,0.064,0.108v0.006\r\n\t\t\t\tc-0.065,0.004-0.112,0.01-0.178,0.006c-0.021,0.034-0.042,0.068-0.063,0.102c0.042,0.051,0.093,0.07,0.127,0.134v0.006\r\n\t\t\t\tc-0.042,0.006-0.085,0.013-0.127,0.019c-0.006,0.042-0.013,0.085-0.019,0.127c-0.163-0.038-0.167,0.098-0.229,0.21\r\n\t\t\t\tc0.021,0.006,0.042,0.013,0.064,0.019c0.002,0.044,0.004,0.089,0.006,0.133c-0.05,0.003-0.081,0.005-0.121-0.006\r\n\t\t\t\tc-0.075,0.075-0.123,0.164-0.203,0.235c0.006,0.019,0.013,0.038,0.019,0.057v0.006c-0.063,0.046-0.087,0.015-0.159,0\r\n\t\t\t\tc-0.094,0.045-0.266,0.185-0.311,0.28c-0.006,0.034-0.013,0.068-0.019,0.102c-0.039,0.065-0.125,0.084-0.159,0.165\r\n\t\t\t\tc-0.006,0.004-0.013,0.009-0.019,0.013c-0.019-0.013-0.038-0.026-0.057-0.038c-0.08-0.054-0.225,0.137-0.222,0.242\r\n\t\t\t\tc-0.085-0.036-0.205-0.032-0.337-0.032l-0.032,0.032c0.017,0.072,0.086,0.103,0.159,0.114c-0.063,0.075-0.159,0.014-0.267,0.006\r\n\t\t\t\tc-0.021,0.084-0.011,0.111-0.089,0.14c-0.1-0.04-0.144,0.042-0.248,0.076c-0.002,0.017-0.004,0.034-0.006,0.051\r\n\t\t\t\tc0.025,0.034,0.072,0.048,0.108,0.07v0.025c-0.066,0.004-0.131,0.008-0.197,0.013c-0.025,0.075-0.001,0.151-0.038,0.21\r\n\t\t\t\tc0.034,0.046,0.043,0.085,0.102,0.108c0.002,0.004,0.004,0.008,0.006,0.013c-0.056,0.046-0.091,0.058-0.114,0.14\r\n\t\t\t\tc0.004,0.011,0.008,0.021,0.013,0.032c0.041,0.028,0.07,0.034,0.121,0.013c0.011,0.013,0.021,0.025,0.032,0.038\r\n\t\t\t\tc-0.041,0.034-0.089,0.076-0.127,0.114c0.053,0.078,0.112,0.033,0.222,0.045c-0.007,0.055-0.021,0.092-0.07,0.108\r\n\t\t\t\tc-0.008,0.011-0.017,0.021-0.025,0.032c0.015,0.013,0.03,0.025,0.044,0.038c0.06-0.001,0.086-0.014,0.127-0.032\r\n\t\t\t\tc-0.027,0.037-0.064,0.055-0.127,0.057c0.001,0.016-0.001,0.007,0.006,0.025c-0.032,0.014-0.05,0.004-0.083-0.013v0.038h-0.006\r\n\t\t\t\tc-0.004-0.017-0.008-0.034-0.013-0.051c-0.002-0.004-0.004-0.008-0.006-0.013c-0.025,0.03-0.051,0.059-0.076,0.089\r\n\t\t\t\tc0.008,0.03,0.017,0.059,0.025,0.089c0.011,0.006,0.021,0.013,0.032,0.019c0.002-0.011,0.004-0.021,0.006-0.032\r\n\t\t\t\tc0.006,0.011,0.013,0.021,0.019,0.032c0.051-0.002,0.06-0.014,0.095-0.026c-0.002-0.025-0.004-0.051-0.006-0.076\r\n\t\t\t\tc0.025,0.019,0.035,0.027,0.038,0.07h0.006c0.028-0.025,0.055-0.051,0.083-0.076c-0.018,0.039-0.04,0.052-0.064,0.083\r\n\t\t\t\tc0.032,0.02,0.042,0.024,0.089,0.019v0.007c-0.038,0.021-0.076,0.042-0.114,0.063c-0.009,0.028-0.004,0.013,0.006,0.045\r\n\t\t\t\tc0.046,0.033,0.031,0.018,0.102,0.013v0.006c-0.036,0.006-0.042,0.012-0.057,0.038c0.006,0.008,0.013,0.017,0.019,0.025\r\n\t\t\t\tc-0.036-0.022-0.065-0.056-0.089-0.019c-0.006,0.004-0.013,0.008-0.019,0.013c-0.002-0.019-0.004-0.038-0.006-0.057\r\n\t\t\t\tc-0.017-0.002-0.034-0.004-0.051-0.006c0.015,0.05-0.003,0.072-0.025,0.114c0.019,0.038,0.038,0.076,0.057,0.114\r\n\t\t\t\tc0.123,0.036,0.19,0.086,0.305,0.115c-0.013,0.013-0.026,0.025-0.038,0.038c0.013,0.008,0.025,0.017,0.038,0.025\r\n\t\t\t\tc0.011-0.013,0.021-0.025,0.032-0.038c0.03,0.015,0.042,0.019,0.051,0.057c0.07,0.017,0.282-0.01,0.349-0.044\r\n\t\t\t\tc0.108-0.107,0.244-0.176,0.356-0.28c0.039-0.036,0.039-0.072,0.095-0.095c0.038-0.02,0.087,0.023,0.14-0.013\r\n\t\t\t\tc0.062-0.046,0.08-0.127,0.083-0.222c0.015-0.011,0.03-0.021,0.044-0.032c0.012,0.047,0.011,0.056-0.013,0.089\r\n\t\t\t\tc0.053,0.074,0.056,0.142,0.165,0.095c0.004,0.002,0.008,0.004,0.013,0.006c0.006,0.051-0.02,0.065-0.032,0.114\r\n\t\t\t\tc0.052,0.027,0.057,0.174,0.057,0.248c0.019-0.002,0.038-0.004,0.057-0.007c0.002,0.017,0.004,0.034,0.006,0.051\r\n\t\t\t\tc0.048-0.012,0.047-0.013,0.089,0c0.008,0.048-0.026,0.118-0.044,0.165c0.047,0.06,0.08,0.086,0.076,0.203\r\n\t\t\t\tc0.017,0.002,0.034,0.004,0.051,0.006c0.049,0.164,0.149,0.23,0.242,0.324c-0.004,0.017-0.009,0.034-0.013,0.051\r\n\t\t\t\tc-0.019-0.002-0.038-0.004-0.057-0.006c0.002,0.017,0.004,0.034,0.006,0.051c-0.021,0.011-0.042,0.021-0.064,0.032\r\n\t\t\t\tc0.042,0.083,0.088,0.169,0.159,0.222c-0.016,0.061-0.039,0.075-0.051,0.134c0.151,0.032,0.257-0.029,0.381,0\r\n\t\t\t\tc0.011-0.013,0.021-0.025,0.032-0.038c0.037-0.032,0.005-0.05-0.019-0.089c0.023-0.06,0.036-0.108,0.095-0.133\r\n\t\t\t\tc0.019-0.011,0.012-0.005,0.038,0.006c0.004-0.017,0.009-0.034,0.013-0.051c0.11,0.001,0.175-0.008,0.253-0.025\r\n\t\t\t\tc0.021,0.015,0.043,0.03,0.064,0.045c0.004,0.004,0.008,0.008,0.014,0.013c0.059-0.108,0.119-0.216,0.178-0.324\r\n\t\t\t\tc0.002-0.04,0.004-0.08,0.006-0.121c0.011-0.057,0.039-0.09,0.057-0.133c0.016-0.027-0.011-0.058,0.006-0.102\r\n\t\t\t\tc-0.015-0.006-0.029-0.013-0.045-0.019V18.53h0.064c0.095-0.071-0.057-0.253-0.07-0.318c0.059-0.002,0.119-0.004,0.178-0.006\r\n\t\t\t\tc0.002-0.013,0.004-0.025,0.006-0.038c0.177,0.031,0.106-0.133,0.191-0.165v0.095c0.002,0.002,0.004,0.004,0.006,0.006\r\n\t\t\t\tc0.02-0.002,0.039-0.004,0.058-0.006c0.014-0.068,0.052-0.091,0.114-0.108c-0.004-0.021-0.008-0.042-0.014-0.064\r\n\t\t\t\tc0.027-0.002,0.055-0.004,0.083-0.006c-0.002-0.011-0.004-0.021-0.006-0.032c-0.002-0.004-0.004-0.008-0.006-0.013h-0.032v0.032\r\n\t\t\t\tc-0.102-0.041-0.174,0.062-0.279,0.045c-0.111-0.019-0.164-0.137-0.3-0.095H32.8c0.009-0.015,0.017-0.03,0.025-0.045\r\n\t\t\t\tc0.036-0.04,0.304,0.049,0.368,0.083c0.082,0.043,0.287-0.119,0.312-0.153h0.058c-0.002-0.095-0.049-0.099-0.07-0.178\r\n\t\t\t\tc-0.126-0.018-0.206-0.104-0.248-0.203c-0.025,0.002-0.051,0.004-0.076,0.006c-0.038-0.015-0.062-0.043-0.133-0.045\r\n\t\t\t\tc-0.002-0.004-0.004-0.008-0.006-0.013c0.046-0.039-0.053-0.296-0.025-0.4c0.023-0.006,0.047-0.013,0.07-0.019\r\n\t\t\t\tc0.055-0.173,0-0.204-0.02-0.356c0.038,0.013,0.076,0.025,0.114,0.038c0.021-0.028,0.042-0.055,0.063-0.083\r\n\t\t\t\tc0.017-0.027-0.004-0.073-0.012-0.115h0.127c0.079-0.112,0.116-0.111,0.221-0.191c0.051-0.038,0.051-0.096,0.115-0.127\r\n\t\t\t\tc0.022,0.015,0.047,0.03,0.069,0.044c0.099-0.068,0.199-0.136,0.299-0.203c0.071-0.087,0.077-0.196,0.185-0.248\r\n\t\t\t\tc0.004-0.006,0.008-0.013,0.013-0.019c-0.034-0.052-0.095-0.08-0.121-0.133c-0.006-0.006-0.013-0.013-0.019-0.019\r\n\t\t\t\tc0.053-0.023,0.127-0.081,0.151-0.133c0.023-0.036-0.022-0.072-0.044-0.102c0.077-0.104,0.108-0.037,0.184-0.095\r\n\t\t\t\tc0.092-0.069,0.095-0.193,0.211-0.248c0.051,0.034,0.102,0.068,0.152,0.102c0.022,0.014,0.223-0.034,0.305-0.032\r\n\t\t\t\tc0.078,0.06,0.117,0.113,0.262,0.115c0.011,0.019,0.021,0.038,0.031,0.057c0.015,0.037-0.006,0.12-0.019,0.159\r\n\t\t\t\tc0.017,0.019,0.034,0.038,0.052,0.057c0.013,0.018,0.008,0.038,0.006,0.076c-0.041-0.002-0.082-0.004-0.121-0.006\r\n\t\t\t\tc-0.098,0.028-0.543,0.488-0.61,0.585h-0.032c-0.013-0.019-0.025-0.038-0.037-0.057v-0.013c-0.091,0.094-0.017,0.207-0.16,0.28\r\n\t\t\t\tc-0.059-0.024-0.1-0.032-0.158-0.013c0.004,0.027,0.008,0.055,0.013,0.083c-0.073,0.067-0.121,0.102-0.153,0.216\r\n\t\t\t\tc0.026,0.023,0.063,0.043,0.09,0.064c0,0.094-0.021,0.143-0.032,0.216c0.034,0.053,0.067,0.106,0.102,0.159\r\n\t\t\t\tc-0.008,0.04-0.017,0.08-0.024,0.121c-0.035,0.188-0.012,0.31,0.127,0.381c0.058,0.03,0.07,0.065,0.146,0.038l-0.006,0.076\r\n\t\t\t\tc0.054-0.018,0.094-0.039,0.172-0.038c-0.011,0.023-0.021,0.047-0.032,0.07c0.021,0.042,0.039,0.071,0.084,0.089\r\n\t\t\t\tc0.066,0.051,0.192-0.016,0.234-0.038v0.026c0.064-0.014,0.081-0.027,0.133,0c0.043-0.058,0.077-0.069,0.153-0.095\r\n\t\t\t\tc0.004,0.008,0.008,0.017,0.013,0.025c0.051-0.028,0.141-0.037,0.165-0.095c0.027,0.019,0.056,0.038,0.083,0.057h0.006\r\n\t\t\t\tc0.018-0.083,0.1-0.04,0.152-0.083c0.027-0.017,0.04-0.057,0.045-0.095v0.057c0.036,0.013,0.072,0.025,0.107,0.038\r\n\t\t\t\tc0.026-0.027,0.035-0.043,0.084-0.051c0.021,0.013,0.041,0.025,0.063,0.038c0.06-0.057,0.198-0.098,0.3-0.108\r\n\t\t\t\tc0.008-0.015,0.016-0.03,0.024-0.045c0.028-0.003-0.011,0.079-0.019,0.114c0.147,0.215,0.344-0.041,0.488,0.229\r\n\t\t\t\tc-0.015,0.011-0.029,0.021-0.045,0.032c-0.094-0.003-0.141-0.044-0.222-0.07c-0.076,0.006-0.101,0.066-0.14,0.108\r\n\t\t\t\tc-0.054-0.012-0.054-0.037-0.103-0.025c-0.017,0.027-0.015,0.015-0.006,0.045c-0.031,0.029-0.052,0.003-0.076-0.025\r\n\t\t\t\tc-0.013,0.002-0.024,0.004-0.038,0.006c-0.004,0.015-0.008,0.03-0.013,0.045c0.032,0.038,0.067,0.051,0.063,0.108\r\n\t\t\t\tc-0.008-0.008-0.017-0.017-0.025-0.025c-0.018-0.007-0.057,0.067-0.107,0.064c-0.163-0.011-0.296-0.042-0.451-0.07\r\n\t\t\t\tc-0.078-0.014-0.166,0.024-0.203-0.006c-0.017,0.015-0.033,0.03-0.051,0.044c-0.049-0.011-0.098-0.021-0.146-0.032\r\n\t\t\t\tc-0.004,0.015-0.008,0.03-0.012,0.045c-0.045-0.007-0.062,0.006-0.103-0.006c-0.085,0.046-0.146,0.095-0.28,0.102\r\n\t\t\t\tc0.006,0.043,0.014,0.056-0.025,0.07c0.023,0.062,0.023,0.099,0.045,0.165c0.021,0,0.035-0.011,0.057-0.026\r\n\t\t\t\tc-0.002,0.057-0.004,0.115-0.006,0.172c0.057,0.016,0.08,0.031,0.121,0.051c0.025-0.023,0.051-0.047,0.076-0.07\r\n\t\t\t\tc0.013,0.009,0.024,0.017,0.037,0.025c-0.021,0.16-0.09,0.268-0.037,0.451c-0.041,0.106-0.223,0.17-0.324,0.076\r\n\t\t\t\tc-0.016-0.04-0.03-0.081-0.044-0.121c-0.048-0.034-0.093-0.068-0.14-0.102v-0.044c-0.113,0.004-0.154,0.056-0.268,0.057\r\n\t\t\t\tc-0.034,0.043-0.068,0.085-0.102,0.127c-0.002,0.044-0.004,0.089-0.006,0.133c-0.033,0.025-0.064,0.051-0.096,0.076\r\n\t\t\t\tc-0.068,0.143,0.034,0.501,0.064,0.578c-0.01,0.025,0,0,0.013,0.025c-0.011,0.002-0.021,0.004-0.032,0.006\r\n\t\t\t\tc0.012,0.035,0.018,0.047,0.014,0.089c-0.082,0.046-0.25,0.013-0.362,0.007c-0.017,0.05-0.021,0.111-0.025,0.165\r\n\t\t\t\tc-0.125,0.066-0.209,0.161-0.388,0.095c-0.01-0.053-0.025-0.086-0.051-0.121c0.005-0.087-0.213-0.034-0.28-0.013\r\n\t\t\t\tc-0.291,0.091-0.499,0.261-0.852,0.286c0.004,0.069,0.012,0.088,0.013,0.146c-0.08-0.028-0.139-0.055-0.21-0.083\r\n\t\t\t\tc-0.004-0.036-0.008-0.072-0.013-0.108c-0.081-0.042-0.175,0.016-0.222-0.121c-0.058-0.004-0.427,0.12-0.458,0.197h-0.07\r\n\t\t\t\tc-0.004-0.013-0.009-0.025-0.013-0.038h-0.006c-0.033,0.022-0.061,0.024-0.095,0.013c-0.004-0.006-0.008-0.013-0.013-0.019\r\n\t\t\t\tc0.045-0.038,0.069-0.048,0.102-0.102c-0.006-0.013-0.013-0.025-0.019-0.038c-0.049,0.004-0.097,0.009-0.146,0.013\r\n\t\t\t\tc-0.057-0.013-0.065-0.053-0.121-0.025c-0.014-0.043-0.014-0.04-0.064-0.038c0.059-0.095-0.063-0.185-0.133-0.21\r\n\t\t\t\tc0.013-0.092,0.038-0.176,0.089-0.229c-0.006-0.011-0.013-0.021-0.019-0.032c0.028-0.002,0.055-0.004,0.083-0.006\r\n\t\t\t\tc0.023-0.081,0.102-0.094,0.064-0.191c0.021-0.011,0.042-0.021,0.064-0.032c0.013,0.017,0.025,0.034,0.038,0.051\r\n\t\t\t\tc0.019-0.007,0.038-0.013,0.057-0.019c0.011-0.02,0.068-0.131,0.038-0.159c-0.051-0.002-0.102-0.004-0.153-0.006\r\n\t\t\t\tc-0.032-0.019-0.031-0.102-0.032-0.153c-0.068-0.033-0.163-0.022-0.254-0.019c-0.006,0.053-0.013,0.106-0.019,0.159\r\n\t\t\t\tc-0.013,0.014-0.02,0.015-0.044,0.019c-0.013-0.03-0.025-0.059-0.038-0.089c-0.049,0.026-0.056,0.1-0.095,0.121\r\n\t\t\t\tc-0.035,0.019-0.1-0.034-0.133-0.032c-0.071,0.107,0.012,0.181,0.019,0.286c-0.031,0.04-0.055,0.066-0.076,0.121\r\n\t\t\t\tc0.017,0.008,0.034,0.017,0.051,0.025c0.008-0.011,0.017-0.021,0.025-0.032c0.03,0.025,0.028,0.047,0.083,0.051\r\n\t\t\t\tc0.009,0.061-0.008,0.193,0.006,0.242c0.015,0.052,0.078,0.085,0.095,0.146c-0.028,0.028-0.059,0.044-0.108,0.051\r\n\t\t\t\tc0.012,0.043,0.042,0.03,0.095,0.025c-0.011,0.017-0.017,0.019-0.032,0.032c0.015,0.015,0.03,0.03,0.045,0.044\r\n\t\t\t\tc-0.011,0.008-0.021,0.017-0.032,0.025c0.002,0.011,0.004,0.021,0.006,0.032c0.023,0.011,0.047,0.021,0.07,0.032\r\n\t\t\t\tc-0.046,0.024-0.104,0.005-0.159,0c-0.019,0.061-0.035,0.076-0.006,0.133c-0.032-0.011-0.063-0.021-0.095-0.032\r\n\t\t\t\tc0.008,0.019,0.017,0.038,0.025,0.057c-0.006,0.008-0.013,0.017-0.019,0.025c-0.006,0.002-0.013,0.004-0.019,0.006\r\n\t\t\t\tc-0.006-0.004-0.013-0.008-0.019-0.013c-0.005-0.039-0.011-0.061-0.025-0.108c-0.107-0.001-0.208,0.008-0.28,0.038\r\n\t\t\t\tc-0.004,0.019-0.008,0.038-0.013,0.057c0.008,0.049,0.031,0.043,0.057,0.07c-0.002,0.006-0.004,0.013-0.006,0.019h-0.025\r\n\t\t\t\tc-0.023-0.022-0.063-0.046-0.076-0.076c-0.123-0.051-0.317,0.05-0.413,0.083c-0.013,0.055-0.013,0.076-0.013,0.146\r\n\t\t\t\tc0.027,0.002,0.055,0.004,0.083,0.006c-0.015,0.024-0.023,0.03-0.025,0.07c0.024,0.016,0.034,0.024,0.076,0.026\r\n\t\t\t\tc-0.013,0.071-0.047,0.063-0.076,0.108c-0.051,0.033-0.092-0.002-0.165-0.013c0.015-0.036,0.015-0.051,0.013-0.108\r\n\t\t\t\tc0.026,0.002,0.019,0.001,0.044-0.006c0.006-0.013,0.013-0.025,0.019-0.038c-0.018-0.035-0.039-0.055-0.07-0.076\r\n\t\t\t\tc-0.032,0.008-0.064,0.017-0.095,0.026c-0.038,0.095-0.076,0.191-0.114,0.286c-0.074,0.064-0.148,0.127-0.222,0.191\r\n\t\t\t\tc0.032,0.014,0.055,0.038,0.07,0.07c-0.053,0.064-0.14-0.005-0.216,0.025c-0.055,0.036-0.11,0.072-0.165,0.108\r\n\t\t\t\tc-0.036,0.002-0.072,0.004-0.108,0.007c-0.047,0.023-0.093,0.047-0.14,0.07c-0.038,0.119,0.011,0.258-0.089,0.324\r\n\t\t\t\tc-0.114,0.075-0.266,0.05-0.349,0.153c-0.002,0.013-0.004,0.025-0.006,0.038c0.021,0.006,0.042,0.013,0.064,0.019\r\n\t\t\t\tc-0.12,0.118-0.282-0.026-0.426,0.044c-0.023-0.044-0.033-0.075-0.025-0.14c-0.075,0.012-0.121,0.009-0.203,0\r\n\t\t\t\tc0.011,0.077,0.049,0.161,0.108,0.191c-0.002,0.083-0.013,0.145,0.025,0.197c-0.024,0.019-0.065,0.026-0.108,0.025V22.17\r\n\t\t\t\tc-0.055,0.027-0.204,0.061-0.273,0.057c-0.028-0.036-0.055-0.072-0.083-0.108c-0.045,0.004-0.089,0.008-0.133,0.013\r\n\t\t\t\tc-0.006,0.015-0.013,0.03-0.019,0.044c-0.024,0.015-0.108,0.007-0.108,0.007c-0.004-0.004-0.009-0.009-0.013-0.013\r\n\t\t\t\tc-0.076,0.006-0.132,0.063-0.222,0.063c-0.002,0.028-0.004,0.055-0.006,0.083c0.038-0.014,0.077-0.021,0.133-0.019\r\n\t\t\t\tc-0.015,0.03-0.018,0.038-0.057,0.045c-0.01,0.017,0.037,0.021,0.057,0.025c0.002,0.009,0.004,0.017,0.006,0.025v0.006\r\n\t\t\t\tc-0.038,0.006-0.076,0.013-0.114,0.019c0.018,0.035,0.065,0.028,0.089,0.057c0.002,0.011,0.004,0.021,0.006,0.032\r\n\t\t\t\tc0.154-0.013,0.334,0.029,0.445,0.127c0.028-0.009,0.055-0.017,0.083-0.025c0.011,0.006,0.021,0.013,0.032,0.019\r\n\t\t\t\tc-0.011,0.021-0.021,0.043-0.032,0.064c0.036,0.046,0.118,0.075,0.165,0.108c-0.011,0.023-0.021,0.046-0.032,0.07\r\n\t\t\t\tc0.04,0.049,0.08,0.097,0.121,0.146c0.135,0.068,0.112,0,0.184,0.153c-0.021,0.04-0.045,0.073-0.051,0.127\r\n\t\t\t\tc0.051,0.067,0.112,0.106,0.133,0.203c-0.034-0.042-0.068-0.085-0.102-0.127h-0.006c-0.04,0.073-0.053,0.198-0.051,0.305\r\n\t\t\t\tc0.011-0.008,0.021-0.017,0.032-0.025c0.008,0.01,0.017,0.021,0.025,0.032c-0.017,0.008-0.034,0.017-0.051,0.025\r\n\t\t\t\tc-0.034,0.153-0.066,0.309-0.121,0.426c-0.162,0.027-0.245-0.039-0.375-0.076c-0.077,0.095-0.35,0.058-0.515,0.032\r\n\t\t\t\tc-0.075-0.012-0.339-0.086-0.356-0.083c-0.076,0.017-0.158,0.089-0.267,0.07c-0.137-0.023-0.23-0.099-0.369-0.044\r\n\t\t\t\tc-0.013,0.034-0.025,0.068-0.038,0.102h-0.083c-0.104,0.004-0.159,0.031-0.197,0.102c0.002,0.023,0.004,0.047,0.006,0.07\r\n\t\t\t\tc0.094,0.019,0.139,0.07,0.165,0.153c0.008,0.014-0.059,0.211-0.076,0.241c0.095,0.198,0.023,0.738-0.14,0.826\r\n\t\t\t\tc0.005,0.08-0.01,0.143-0.038,0.203c0.015,0.029,0.018,0.027,0.051,0.038c0.039-0.018,0.066-0.029,0.083-0.07\r\n\t\t\t\tc0.006-0.004,0.013-0.009,0.019-0.013c0.009,0.017,0.017,0.034,0.025,0.051c-0.024,0.033-0.05,0.045-0.108,0.045v0.006\r\n\t\t\t\tc0.004,0.017,0.009,0.034,0.013,0.051c0.035,0.008,0.086-0.006,0.121-0.019c0.004,0.004,0.008,0.008,0.013,0.013\r\n\t\t\t\tc-0.011,0.052-0.024,0.115-0.032,0.165c-0.002,0.004-0.004,0.008-0.006,0.013c0.016,0.028,0.041,0.09,0.025,0.152\r\n\t\t\t\tc-0.012,0.047-0.061,0.108-0.044,0.159v0.013c0.057-0.028,0.12-0.061,0.216-0.038c0.03,0.007,0.054,0.035,0.102,0.026\r\n\t\t\t\tc0.044-0.021,0.089-0.042,0.133-0.064c0.148-0.039,0.293,0.081,0.286,0.191c0.017,0.006,0.034,0.013,0.051,0.019\r\n\t\t\t\tc0.017,0.104,0.101,0.213,0.229,0.178c0.011-0.013,0.01-0.013,0.013-0.038h0.006c0.002,0.011,0.004,0.021,0.006,0.032h0.006\r\n\t\t\t\tc0.028-0.117,0.068-0.096,0.178-0.133c0.032-0.028,0.064-0.055,0.095-0.083c0.167,0.002,0.335,0.004,0.502,0.006\r\n\t\t\t\tc0.033-0.011,0.061-0.035,0.114-0.044c0.013,0.011,0.025,0.021,0.038,0.032c0.076-0.056,0.065-0.091,0.114-0.178\r\n\t\t\t\tc0.05-0.088,0.175-0.085,0.292-0.108c0.01-0.028-0.012-0.031-0.006-0.064c0.026-0.154,0.176-0.261,0.299-0.324v-0.019\r\n\t\t\t\tc-0.032-0.017-0.064-0.034-0.095-0.051c-0.023-0.053-0.047-0.106-0.07-0.159c0.031-0.147,0.225-0.389,0.356-0.438\r\n\t\t\t\tc0.002-0.004,0.004-0.009,0.006-0.013c-0.016-0.018-0.023-0.016-0.032-0.044c0.086-0.149,0.264-0.073,0.394-0.159\r\n\t\t\t\tc0.011-0.019,0.021-0.038,0.032-0.057c0.074-0.067,0.212-0.068,0.273-0.146c0.075-0.198-0.151-0.33,0.102-0.508\r\n\t\t\t\tc0.16-0.113,0.187,0.005,0.33,0.006c0.036,0,0.081-0.033,0.133-0.013c0.074,0.029,0.117,0.137,0.242,0.115\r\n\t\t\t\tc0.24-0.044,0.308-0.187,0.47-0.292c0.047-0.013,0.093-0.026,0.14-0.038c0.025-0.028,0.051-0.055,0.076-0.083\r\n\t\t\t\tc0.129-0.101,0.256-0.104,0.426-0.019c0.221,0.111,0.209,0.479,0.419,0.61c0.184,0.115,0.33,0.293,0.502,0.381\r\n\t\t\t\tc0.155,0.08,0.306,0.025,0.343,0.229c0.03-0.008,0.059-0.017,0.089-0.025H32.2c0.013,0.015,0.025,0.03,0.038,0.044\r\n\t\t\t\tc-0.011,0.004-0.021,0.009-0.032,0.013c-0.004,0.008-0.009,0.017-0.013,0.025c0.038-0.011,0.076-0.021,0.114-0.032\r\n\t\t\t\tc0.021,0.019,0.042,0.038,0.064,0.057c0.009,0.041,0.003,0.066-0.013,0.095c0.045,0.027,0.089,0.055,0.133,0.083\r\n\t\t\t\tc0.022,0.012,0.038-0.004,0.069-0.019c0.034,0.01,0.182,0.419,0.172,0.451v0.013c-0.022-0.002-0.047-0.004-0.069-0.006\r\n\t\t\t\tc-0.011,0.011-0.021,0.021-0.032,0.032c0.02,0.067,0.004,0.11-0.064,0.14v0.076c0.014,0.009,0.025,0.017,0.039,0.025h0.082\r\n\t\t\t\tc0.039-0.064,0.067-0.14,0.146-0.165c0.016-0.034,0.005-0.062,0-0.108c0.045-0.043,0.062-0.067,0.159-0.064\r\n\t\t\t\tc0.011-0.013,0.021-0.026,0.032-0.038c-0.026-0.042-0.026-0.089-0.006-0.134c-0.062-0.034-0.123-0.068-0.185-0.102\r\n\t\t\t\tc0.002-0.111,0.086-0.282,0.197-0.267c-0.007,0.095,0.142,0.064,0.202,0.108c0.031,0.023,0.007,0.04,0.025,0.076\r\n\t\t\t\tc0.036,0.023,0.072,0.047,0.108,0.07c0.015-0.044,0.03-0.089,0.045-0.133c-0.196-0.193-0.437-0.359-0.744-0.438\r\n\t\t\t\tc-0.011-0.013-0.021-0.025-0.032-0.038c0.032-0.027,0.049-0.054,0.096-0.07c-0.002-0.011-0.004-0.021-0.006-0.032\r\n\t\t\t\tc-0.047-0.073-0.328,0.011-0.414-0.076c-0.08-0.081-0.209-0.198-0.254-0.305c-0.028-0.067-0.023-0.157-0.064-0.21\r\n\t\t\t\tc-0.031-0.04-0.088-0.05-0.133-0.076c-0.15-0.087-0.231-0.143-0.273-0.343c0.027-0.031,0.056-0.043,0.076-0.083\r\n\t\t\t\tc-0.031-0.037-0.057-0.035-0.057-0.108c-0.015-0.002-0.03-0.004-0.044-0.006c0.008-0.021,0.017-0.042,0.025-0.064\r\n\t\t\t\tc0.044-0.029,0.154-0.064,0.248-0.07c0.002-0.017,0.004-0.034,0.006-0.051c0.08,0.003,0.086,0.005,0.159,0\r\n\t\t\t\tc0.011,0.017,0.021,0.034,0.032,0.051c-0.019,0.025-0.035,0.035-0.076,0.038c0.021,0.098,0.071,0.175,0.102,0.254\r\n\t\t\t\tc0.033-0.017,0.055-0.041,0.083-0.064c0.017-0.047,0.034-0.093,0.051-0.14c0.256,0.103,0.086,0.31,0.343,0.388\r\n\t\t\t\tc-0.036,0.002-0.072,0.004-0.108,0.006v0.006c0.075,0.108,0.184,0.165,0.266,0.267c0.025,0.026,0.06-0.025,0.109-0.013\r\n\t\t\t\tc0.006,0.001,0.152,0.061,0.164,0.07c0.049,0.035,0.09,0.097,0.141,0.133c0.133,0.095,0.271,0.155,0.406,0.248\r\n\t\t\t\tc0.03,0.036,0.06,0.072,0.09,0.108c0.041,0.021,0.084,0.042,0.127,0.064c0.002,0.051,0.002,0.06-0.039,0.07\r\n\t\t\t\tc-0.006,0.043,0.017,0.226,0.014,0.235c-0.018,0.032-0.034,0.064-0.051,0.095c0.021,0.032,0.037,0.045,0.037,0.102\r\n\t\t\t\tc-0.01-0.002-0.021-0.004-0.031-0.006c0.027,0.077,0.145,0.098,0.191,0.159c0.006,0.03,0.013,0.059,0.019,0.089\r\n\t\t\t\tc0.04,0.101,0.153,0.191,0.28,0.172c0.008,0.008,0.017,0.017,0.024,0.025v0.013c-0.026,0.034-0.065,0.029-0.108,0.038v0.006\r\n\t\t\t\tc0.037,0.055,0.072,0.11,0.108,0.165c0.103-0.009,0.228-0.061,0.349-0.025c0.078,0.022,0.119,0.081,0.224,0.089v0.006\r\n\t\t\t\tc-0.101,0.134-0.204-0.021-0.324-0.038c-0.039-0.005-0.082,0.035-0.159,0.032c-0.021,0.038-0.041,0.076-0.063,0.114\r\n\t\t\t\tc0.038,0.047,0.075,0.093,0.114,0.14c0.014,0.044-0.017,0.099-0.014,0.146c0.02,0.017,0.038,0.034,0.057,0.051\r\n\t\t\t\tc0.02-0.015,0.039-0.03,0.058-0.044c0.045-0.022,0.097,0.086,0.108,0.14c0.004,0.002,0.009,0.004,0.013,0.007\r\n\t\t\t\tc0.011-0.019,0.021-0.038,0.032-0.057c0.056-0.027,0.09-0.001,0.14,0.025c-0.005-0.136-0.056-0.195-0.095-0.292v-0.032\r\n\t\t\t\tc0.033,0.011,0.068,0.021,0.102,0.032h0.014c-0.006,0.013-0.014,0.025-0.02,0.038c0.018,0.006,0.034,0.013,0.051,0.019\r\n\t\t\t\tc0.02-0.035,0.029-0.044,0.083-0.045c-0.022-0.029-0.028-0.02-0.024-0.064c-0.021,0.004-0.043,0.009-0.064,0.013\r\n\t\t\t\tc-0.021-0.048-0.025-0.074-0.057-0.108c0.047-0.015,0.093-0.03,0.14-0.044c0.05,0.006,0.106,0.078,0.121,0.121\r\n\t\t\t\tc0.006,0.004,0.013,0.008,0.019,0.013c0.014-0.011,0.025-0.021,0.039-0.032c-0.014-0.04-0.025-0.081-0.039-0.121\r\n\t\t\t\tc0.008-0.002,0.018-0.004,0.025-0.006c-0.005-0.06-0.342-0.233-0.419-0.248v-0.006c0.044-0.01,0.071-0.023,0.103-0.044\r\n\t\t\t\tc-0.014-0.03-0.026-0.059-0.039-0.089v-0.007c0.031-0.019,0.043-0.017,0.084-0.006c0.014,0.026,0.015,0.037,0.013,0.07h0.006\r\n\t\t\t\tc0.006-0.002,0.013-0.004,0.019-0.006c0.008-0.011,0.018-0.021,0.025-0.032c-0.079-0.096-0.169-0.193-0.223-0.311\r\n\t\t\t\tc0.003-0.047,0.016-0.064,0.039-0.089c-0.012-0.013-0.021-0.025-0.032-0.038c0.034-0.015,0.06-0.023,0.075-0.057\r\n\t\t\t\tc0.009,0.002,0.018,0.004,0.025,0.006c0.002,0.009,0.004,0.017,0.006,0.025c-0.011,0.007-0.021,0.013-0.031,0.019\r\n\t\t\t\tc0.039,0.08,0.139,0.069,0.146,0.184c0.032,0.004,0.063,0.008,0.095,0.013h0.014c-0.035-0.042-0.079-0.056-0.108-0.108v-0.006\r\n\t\t\t\tc0.076,0.003,0.119,0.051,0.146,0.102c0.016-0.002,0.031-0.004,0.045-0.006c0.002-0.006,0.004-0.013,0.006-0.019\r\n\t\t\t\tc-0.023-0.041-0.061-0.046-0.083-0.089c0.011-0.008,0.021-0.017,0.032-0.026c0.037,0.007,0.066,0.015,0.082,0.045\r\n\t\t\t\tc0.018,0.015,0.035,0.03,0.052,0.045c0.006-0.004,0.013-0.009,0.019-0.013v-0.006c-0.062-0.077-0.15-0.094-0.19-0.197v-0.006\r\n\t\t\t\tc0.134-0.026,0.108,0.02,0.21-0.07c0.039,0.003,0.033,0.001,0.044,0.032c0.079,0,0.103-0.025,0.153-0.051\r\n\t\t\t\tc0.043,0.102,0.271-0.012,0.285,0.121c0.008-0.009,0.018-0.017,0.025-0.025c0.034,0.021,0.105,0.031,0.146,0.044\r\n\t\t\t\tc0.002,0.004,0.004,0.008,0.006,0.013c-0.032,0.019-0.064,0.038-0.096,0.057c-0.008,0.032-0.017,0.064-0.024,0.095\r\n\t\t\t\tc0.065-0.021,0.091-0.085,0.14-0.121c0.061-0.028,0.123-0.055,0.184-0.083c0.016-0.03,0.03-0.059,0.045-0.089\r\n\t\t\t\tc0.037-0.022,0.1,0.002,0.152-0.019c0.137-0.054,0.112,0.009,0.273,0.013c0.025-0.03,0.045-0.056,0.062-0.095\r\n\t\t\t\tc-0.045-0.06-0.142-0.051-0.209-0.089c-0.088-0.049-0.179-0.313-0.268-0.299v-0.051c0.035-0.035,0.047-0.056,0.102-0.076\r\n\t\t\t\tc0.016-0.084,0.038-0.153,0.051-0.222c0.025-0.013,0.108-0.018,0.121-0.038c0.004-0.04,0.008-0.08,0.014-0.121\r\n\t\t\t\tc0.035-0.199,0.06-0.377,0.285-0.388c0.023-0.049,0.047-0.097,0.07-0.146c-0.015-0.031-0.033-0.038-0.051-0.064\r\n\t\t\t\tc-0.031-0.104,0.094-0.097,0.152-0.133c0.199-0.119,0.104-0.321,0.51-0.311c0.008-0.015,0.018-0.03,0.025-0.045\r\n\t\t\t\tc0.006-0.004,0.013-0.008,0.019-0.013c0.021,0.025,0.042,0.051,0.063,0.076v0.013c-0.022,0.021-0.047,0.042-0.069,0.064v0.013\r\n\t\t\t\tc0.097,0.133,0.265,0.085,0.458,0.089c0.013,0.025,0.025,0.051,0.038,0.076c-0.067,0.074-0.25,0.106-0.331,0.184\r\n\t\t\t\tc0.004,0.008,0.009,0.017,0.013,0.025c0.2,0.038,0.367,0.002,0.254,0.267V23.7c0.285,0.052,0.158-0.026,0.337-0.089\r\n\t\t\t\tc0.051-0.004,0.103-0.009,0.153-0.013c0.034-0.028,0.067-0.055,0.103-0.083c0.06-0.018,0.088,0.017,0.133,0.025\r\n\t\t\t\tc0.037-0.006,0.076-0.013,0.113-0.019c0.023-0.032,0.053-0.072,0.064-0.114c-0.064-0.008-0.127-0.017-0.191-0.025\r\n\t\t\t\tc-0.072,0.007-0.141,0.064-0.234,0.038c-0.024-0.123-0.199-0.258-0.338-0.299c-0.002-0.004-0.004-0.008-0.006-0.013\r\n\t\t\t\tc0.104-0.029,0.197-0.016,0.306-0.019c0.036-0.039,0.065-0.066,0.083-0.127c0.004-0.002,0.009-0.004,0.013-0.006\r\n\t\t\t\tc0.015,0.013,0.03,0.025,0.044,0.038c0.021,0.013,0.02,0.008,0.045,0c0.051-0.015,0.061-0.049,0.102-0.063\r\n\t\t\t\tc0.125-0.023,0.25-0.047,0.375-0.07c0.023-0.025,0.048-0.051,0.07-0.076c0.074-0.008,0.148-0.017,0.223-0.025\r\n\t\t\t\tc0.013-0.013,0.007-0.002,0.013-0.025c0.093-0.017,0.187-0.034,0.28-0.051c0.011,0.021,0.021,0.042,0.031,0.064\r\n\t\t\t\tc-0.099,0.079-0.25,0.146-0.412,0.152c-0.008,0.011-0.018,0.021-0.026,0.032c0.073,0.053,0.147,0.098,0.196,0.178\r\n\t\t\t\tc-0.033,0.026-0.076,0.034-0.139,0.032c-0.029,0.081-0.084,0.13-0.09,0.229c-0.049,0.026-0.154,0.037-0.21,0.051\r\n\t\t\t\tc0.044,0.059,0.104,0.147,0.159,0.197c0.043,0.008,0.057-0.002,0.089-0.019c0.041,0.027,0.058,0.069,0.095,0.095\r\n\t\t\t\tc0.045,0.013,0.09,0.025,0.133,0.038c0.105,0.049,0.192,0.14,0.281,0.21c0.047,0.038,0.115,0.138,0.178,0.133\r\n\t\t\t\tc-0.004,0.019-0.008,0.038-0.014,0.057c0.102,0.075,0.311,0.102,0.381,0.21c0.016,0.053,0.03,0.106,0.045,0.159\r\n\t\t\t\tc0.08,0.289-0.088,0.388-0.324,0.445c-0.131,0.031-0.221-0.051-0.336-0.032c-0.053,0.017-0.106,0.034-0.159,0.051\r\n\t\t\t\tc-0.099,0.022-0.277-0.021-0.382-0.038c-0.125-0.021-0.15-0.13-0.291-0.076c-0.078-0.037-0.078-0.076-0.121-0.146\r\n\t\t\t\tc-0.029-0.021-0.103,0.03-0.172,0.013c-0.084-0.021-0.076-0.089-0.121-0.146c-0.174,0.111-0.323-0.021-0.541,0.032\r\n\t\t\t\tc-0.195,0.047-0.34,0.172-0.514,0.229c0.002,0.017,0.004,0.034,0.006,0.051c-0.139,0.074-0.203,0.007-0.318-0.013\r\n\t\t\t\tc-0.02,0.006-0.038,0.013-0.057,0.019c-0.094-0.008-0.187-0.017-0.28-0.025c-0.013,0.025-0.025,0.051-0.038,0.076\r\n\t\t\t\tc0.029,0.031,0.068,0.042,0.083,0.089c0.053-0.002,0.106-0.004,0.159-0.006v0.006c-0.072,0.023-0.189,0.032-0.28,0.032\r\n\t\t\t\tc-0.017,0.023-0.026,0.025-0.026,0.051c0.026,0.006,0.051,0.013,0.076,0.019c0.006,0.004,0.014,0.009,0.02,0.013\r\n\t\t\t\tc-0.006,0.008-0.014,0.017-0.02,0.025c-0.113-0.018-0.214-0.013-0.337-0.006c0.011-0.013,0.021-0.025,0.032-0.038\r\n\t\t\t\tc-0.036-0.015-0.055-0.014-0.09-0.007c-0.002,0.004-0.004,0.009-0.006,0.013c0.014,0.006,0.026,0.013,0.039,0.019v0.019\r\n\t\t\t\tc-0.067,0.022-0.143,0.01-0.16-0.044c-0.09,0.011-0.202,0.041-0.254,0.095c-0.035,0.037,0.004,0.057-0.069,0.064\r\n\t\t\t\tc-0.011,0.071-0.028,0.13-0.032,0.191c0.087-0.013,0.174-0.025,0.262-0.038v0.006c-0.016,0.024-0.031,0.039-0.058,0.051\r\n\t\t\t\tc-0.015,0.017-0.03,0.034-0.045,0.051c0.035,0.006,0.049,0.02,0.063,0.045c0.015,0.023-0.006,0.02-0.013,0.064h0.058\r\n\t\t\t\tc0.006,0.008,0.013,0.017,0.019,0.025c-0.021,0.025-0.052,0.036-0.089,0.045c-0.008,0.025,0.01,0.054,0.038,0.076\r\n\t\t\t\tc0.034,0.045,0.026,0.031-0.019,0.063c-0.033-0.003-0.056-0.025-0.09-0.044c-0.011,0.023-0.021,0.047-0.031,0.07v0.045\r\n\t\t\t\tc0.104,0.013,0.133,0.046,0.221,0.07c0.004,0.06-0.021,0.124,0.007,0.165c0.034,0.021,0.067,0.042,0.103,0.064\r\n\t\t\t\tc0.002,0.008,0.004,0.017,0.006,0.025c-0.028,0.011-0.056,0.021-0.084,0.032c0.006,0.013,0.014,0.025,0.02,0.038\r\n\t\t\t\tc0.068,0.006,0.136,0.013,0.203,0.019c0.002,0.004,0.004,0.008,0.006,0.013c-0.018,0.019-0.023,0.019-0.032,0.051\r\n\t\t\t\tc0.007,0.015,0.013,0.03,0.019,0.045c0.004,0.002,0.01,0.004,0.014,0.006c0.021-0.021,0.042-0.042,0.064-0.063\r\n\t\t\t\tc0.084-0.003,0.086,0.023,0.146,0.051c0.028,0.014,0.049-0.015,0.076-0.038c0.024,0.059,0.051,0.119,0.075,0.178\r\n\t\t\t\tc0.1,0.031,0.23-0.025,0.3,0.019c0.013-0.002,0.026-0.004,0.038-0.006c0.015-0.072,0.029-0.144,0.044-0.216\r\n\t\t\t\tc0.142-0.018,0.288,0.018,0.388,0.083c0.073,0.048,0.107,0.143,0.203,0.172c0.136,0.041,0.301-0.026,0.381-0.045\r\n\t\t\t\tc0.042-0.082,0.104-0.102,0.159-0.165c0.138,0.001,0.177,0.055,0.286,0.07c0.037-0.038,0.085-0.067,0.121-0.114h0.025\r\n\t\t\t\tc0.012,0.017,0.024,0.034,0.037,0.051c0.002,0.013,0.004,0.025,0.006,0.038c-0.039,0.043-0.09,0.068-0.127,0.114\r\n\t\t\t\tc0.018,0.03,0.034,0.059,0.051,0.089c-0.011,0.057-0.037,0.107-0.063,0.153c0.087,0.115,0.021,0.195,0.076,0.33\r\n\t\t\t\tc-0.146,0.144-0.206,0.407-0.306,0.578c-0.008,0.042-0.017,0.085-0.024,0.127c-0.041,0.134-0.077,0.258-0.173,0.337\r\n\t\t\t\tc0.074,0.186,0.148,0.373,0.223,0.559c0.012,0.018,0.023,0.014,0.051,0.032c-0.023,0.137-0.084,0.285-0.095,0.407\r\n\t\t\t\tc0.036,0.002,0.071,0.004,0.108,0.006c0.047,0.059,0.093,0.119,0.14,0.178c0.104,0.17,0.188,0.32,0.299,0.477\r\n\t\t\t\tc0.084,0.118,0.206,0.226,0.165,0.413c0.085,0.117,0.223,0.149,0.324,0.248c0.066,0.119,0.131,0.237,0.197,0.356\r\n\t\t\t\tc0.065,0.127-0.002,0.313,0.051,0.457c0.051,0.072,0.102,0.144,0.152,0.216c0.069,0.096,0.225,0.114,0.299,0.203\r\n\t\t\t\tc0.089,0.182,0.178,0.364,0.267,0.546c0.034,0.026,0.067,0.051,0.103,0.076c0.086,0.071,0.194,0.232,0.234,0.344\r\n\t\t\t\tc0.012,0.067,0.021,0.135,0.032,0.202c-0.009,0.039-0.042,0.068-0.032,0.128c0.03,0.172,0.113,0.353,0.165,0.495v0.216\r\n\t\t\t\tc0.095,0.205,0.384,0.166,0.554,0.057c0.057-0.047,0.113-0.092,0.172-0.139c0.094-0.029,0.217,0.012,0.299-0.014\r\n\t\t\t\tc0.128-0.039,0.228-0.133,0.343-0.172c0.078-0.025,0.163,0.016,0.229-0.02c0.068-0.035,0.086-0.123,0.151-0.158\r\n\t\t\t\tc0.238-0.131,0.547-0.129,0.769-0.268c0.062-0.037,0.047-0.087,0.076-0.158c0.029-0.07,0.139-0.143,0.211-0.172\r\n\t\t\t\tc0.121-0.041,0.24-0.082,0.361-0.121c0.07,0.008,0.141,0.017,0.21,0.024c0.024-0.015,0.052-0.03,0.076-0.045\r\n\t\t\t\tc0.045-0.091,0.017-0.205,0.108-0.248c0.096-0.045,0.186,0.021,0.272-0.051c0.032-0.027,0.026-0.071,0.044-0.114\r\n\t\t\t\tc0.049-0.12,0.189-0.153,0.35-0.159c0.008-0.116-0.013-0.304,0.025-0.419c0.057-0.024,0.123,0.021,0.172-0.006\r\n\t\t\t\tc0.057-0.042,0.064-0.147,0.102-0.21c0.043-0.04,0.086-0.08,0.128-0.121c0.059-0.074,0.114-0.154,0.159-0.242\r\n\t\t\t\tc-0.012-0.066-0.116-0.088-0.159-0.127c-0.064-0.08-0.128-0.161-0.191-0.241c-0.048-0.033-0.104,0.008-0.165-0.006\r\n\t\t\t\tc-0.089-0.049-0.178-0.098-0.267-0.146c-0.071-0.049-0.183-0.161-0.21-0.248c-0.021-0.066,0.011-0.151-0.014-0.203\r\n\t\t\t\tc-0.015-0.018-0.023-0.019-0.057-0.019c0.044-0.068,0.068-0.116,0.057-0.229h-0.006c-0.045,0.057-0.089,0.115-0.133,0.172\r\n\t\t\t\tc-0.113,0.09-0.215,0.143-0.311,0.267c-0.023,0.045-0.047,0.089-0.07,0.134c-0.035,0.031-0.051,0.02-0.07,0.07\r\n\t\t\t\tc-0.041,0.011-0.062,0.014-0.095-0.006c-0.002,0.011-0.004,0.021-0.006,0.032c-0.074,0.026-0.394,0.021-0.478-0.019\r\n\t\t\t\tc-0.019,0.017-0.022,0.015-0.031,0.044c-0.073,0.007-0.131-0.005-0.203-0.006c0.013-0.058-0.016-0.063-0.064-0.076\r\n\t\t\t\tc-0.037-0.089,0.072-0.127,0.076-0.216c0.001-0.028-0.018-0.268-0.025-0.28c-0.018-0.025-0.035-0.018-0.051-0.057\r\n\t\t\t\tc-0.015-0.002-0.029-0.004-0.044-0.006c-0.083,0.059-0.118,0.288-0.069,0.407c0.006,0.07,0.01,0.094-0.051,0.089\r\n\t\t\t\tc-0.046-0.059-0.109-0.211-0.115-0.311c-0.033-0.027-0.035-0.039-0.076-0.032c-0.032-0.107-0.057-0.116-0.012-0.229\r\n\t\t\t\tc-0.014-0.021-0.026-0.042-0.039-0.064c0.021-0.031,0.039-0.029,0.045-0.076c-0.062-0.082-0.205-0.072-0.248-0.172\r\n\t\t\t\tc-0.035-0.028-0.025-0.027-0.006-0.064c-0.037-0.017-0.058-0.015-0.113-0.013c-0.07-0.185-0.159-0.356-0.211-0.553\r\n\t\t\t\tc-0.035,0.009-0.071,0.017-0.107,0.026c-0.013-0.006-0.025-0.013-0.038-0.019c0.021-0.026,0.042-0.051,0.063-0.076h0.044\r\n\t\t\t\tc-0.009-0.04-0.017-0.08-0.025-0.121c0.026-0.034,0.169-0.04,0.235-0.038c0.055-0.054,0.047-0.118,0.127-0.152h0.02\r\n\t\t\t\tc-0.002,0.041,0,0.074,0.019,0.095c0.038,0.072,0.165,0.061,0.241,0.032c0.043,0.069,0.144,0.143,0.172,0.21v0.102\r\n\t\t\t\tc0.031,0.082,0.137,0.259,0.191,0.337c0.064,0.091,0.221,0.082,0.312,0.146c0.047,0.057,0.093,0.115,0.14,0.172\r\n\t\t\t\tc0.105,0.063,0.211,0.06,0.337,0.102c0.07,0.023,0.11,0.086,0.197,0.095c0.042-0.036,0.187-0.121,0.196-0.172\r\n\t\t\t\tc0.099-0.035,0.203-0.075,0.324-0.044c0.051,0.012,0.039,0.034,0.09,0.038c0.015,0.043,0.01,0.1,0.031,0.159\r\n\t\t\t\tc0.026,0.069,0.096,0.113,0.096,0.21c0.067,0.011,0.135,0.056,0.184,0.076h0.254c0.025,0.023,0.051,0.047,0.076,0.07\r\n\t\t\t\tc0.143,0.002,0.284,0.004,0.426,0.007c0.075,0.02,0.118,0.067,0.217,0.083c0.131,0.021,0.254-0.027,0.355-0.044h0.286\r\n\t\t\t\tc0.057-0.021,0.1-0.057,0.19-0.07c0.08,0.167,0.549-0.018,0.687-0.025c0.073,0.053,0.075,0.102,0.069,0.223\r\n\t\t\t\tc0.047,0.011,0.094,0.021,0.141,0.032c0.023,0.068,0.047,0.136,0.07,0.203c0.05,0.067,0.113,0.032,0.19,0.076\r\n\t\t\t\tc0.03,0.042,0.06,0.085,0.089,0.127c0.104,0.123,0.381,0.229,0.598,0.153c0.002,0.052-0.021,0.064-0.051,0.095\r\n\t\t\t\tc-0.143,0.145-0.215,0.023-0.369,0.076h-0.014c0.049,0.113,0.434,0.501,0.572,0.508c0.04-0.015,0.081-0.03,0.121-0.044\r\n\t\t\t\tc0.145-0.047,0.383-0.127,0.254-0.299c0.008-0.03,0.018-0.059,0.025-0.089c0.031-0.019,0.082-0.021,0.14-0.019\r\n\t\t\t\tc-0.019,0.072-0.015,0.207,0.013,0.286c0.016,0.046,0.116,0.085,0.102,0.146c-0.014,0.062-0.094,0.113-0.102,0.191\r\n\t\t\t\tc0.027,0.146,0.055,0.292,0.083,0.438c0.034,0.205,0.068,0.411,0.103,0.616c0.07,0.251,0.209,0.444,0.305,0.655\r\n\t\t\t\tc0.064,0.143,0.116,0.299,0.165,0.457c0.021,0.078,0.042,0.156,0.063,0.234c0.039,0.055,0.076,0.11,0.114,0.165\r\n\t\t\t\tc0.074,0.163,0.148,0.326,0.222,0.489c0.033,0.111,0.064,0.225,0.096,0.337c0.059,0.063,0.119,0.127,0.178,0.19\r\n\t\t\t\tc0.09-0.002,0.219-0.063,0.248-0.127c0.025-0.054,0.004-0.105,0.038-0.146c0.083-0.028,0.165-0.056,0.248-0.083\r\n\t\t\t\tc-0.013-0.027-0.034-0.042-0.058-0.057c0.025-0.072,0.052-0.145,0.076-0.217c0.037-0.021,0.108-0.021,0.172-0.019\r\n\t\t\t\tc0.023-0.118-0.033-0.248-0.019-0.362c0.024-0.213,0.286-0.457,0.108-0.654c0.057-0.142-0.035-0.297,0-0.451\r\n\t\t\t\tc0.021-0.047,0.041-0.094,0.063-0.141c0.06-0.048,0.118-0.061,0.19-0.019c0.049-0.031,0.078-0.104,0.096-0.165\r\n\t\t\t\tc0.059-0.032,0.17-0.01,0.229-0.051c0.065-0.045,0.049-0.168,0.108-0.217c0.063-0.031,0.127-0.063,0.19-0.094\r\n\t\t\t\tc0.072-0.046,0.111-0.143,0.179-0.184c0.046-0.028,0.088-0.032,0.127-0.064c0.097-0.119,0.194-0.237,0.292-0.356\r\n\t\t\t\tc0.078-0.054,0.207-0.041,0.292-0.095c0.106-0.067,0.147-0.181,0.229-0.273c-0.014-0.045-0.025-0.089-0.039-0.134\r\n\t\t\t\tc0.072-0.072,0.18-0.083,0.268-0.14c0.032-0.034,0.064-0.068,0.096-0.102c0.028,0.022,0.049,0.059,0.057,0.102\r\n\t\t\t\tc0.013,0.004,0.025,0.008,0.037,0.013c0.018-0.03,0.035-0.059,0.052-0.089c0.002-0.004,0.004-0.008,0.006-0.013\r\n\t\t\t\tc0.034,0.02,0.042,0.065,0.051,0.108h0.089c-0.005-0.031-0.002-0.042,0.006-0.07c0.02,0.01,0.039,0.021,0.058,0.032\r\n\t\t\t\tc0.013-0.021,0.024-0.042,0.038-0.063c0.008-0.006,0.017-0.013,0.025-0.019c0.008,0.021,0.016,0.043,0.025,0.064h0.038\r\n\t\t\t\tc0.026-0.034,0.046-0.064,0.051-0.121c0.004-0.002,0.009-0.004,0.013-0.006c0.021,0.038,0.043,0.076,0.063,0.115h0.045\r\n\t\t\t\tc0.017-0.069,0.026-0.078,0.095-0.095c0.022-0.07-0.005-0.129-0.031-0.184c-0.002-0.034-0.004-0.067,0.013-0.083\r\n\t\t\t\tc0.004-0.004,0.009-0.009,0.013-0.013c0.032,0.042,0.064,0.085,0.096,0.127c0.069-0.001,0.1-0.022,0.146-0.044\r\n\t\t\t\tc0.175,0.137,0.122,0.639,0.362,0.705c0.021,0.006,0.054-0.002,0.076,0.006v0.083c0.053,0.035,0.082,0.001,0.127,0.025\r\n\t\t\t\tc0.067,0.037,0.106,0.146,0.133,0.229v0.006c-0.034,0.006-0.068,0.013-0.103,0.019c0.028,0.031,0.065,0.053,0.108,0.07\r\n\t\t\t\tc0.011-0.019,0.021-0.038,0.031-0.057c0.004-0.002,0.01-0.004,0.014-0.006c0.079,0.128,0.174,0.362,0.146,0.578\r\n\t\t\t\tc-0.018,0.129-0.099,0.221-0.103,0.361c0.015,0.012,0.03,0.021,0.044,0.033c0.047-0.039,0.073-0.066,0.152-0.076\r\n\t\t\t\tc-0.006,0.024-0.012,0.051-0.019,0.076c0.011,0.011,0.021,0.021,0.032,0.031h0.025c0.029-0.023,0.031-0.041,0.082-0.044v0.058\r\n\t\t\t\tc0.08,0.072,0.095-0.08,0.153-0.121c0.185-0.133,0.273-0.031,0.306-0.344H56.3c0.085,0.062,0.089,0.235,0.197,0.268\r\n\t\t\t\tc0.026,0.18,0.051,0.359,0.075,0.54c0.048,0.163,0.152,0.309,0.203,0.45c0.054,0.145,0.031,0.291,0.025,0.433\r\n\t\t\t\tc0.02,0.01,0.036,0.013,0.07,0.013c-0.033,0.078-0.145,0.34-0.114,0.413c0.017,0.013,0.034,0.025,0.052,0.038\r\n\t\t\t\tc-0.064,0.162-0.162,0.391-0.103,0.566c0.024-0.012,0.051-0.021,0.075-0.032c0.086,0.091,0.166,0.136,0.211,0.272\r\n\t\t\t\tc0.02,0.008,0.033,0.01,0.064,0c0.043,0.058,0.051,0.1,0.051,0.197c0.011,0.006,0.021,0.014,0.031,0.02\r\n\t\t\t\tc0.034,0.043,0.078,0.029,0.121,0.006c0.004,0.004,0.008,0.008,0.014,0.013c-0.019,0.14-0.008,0.3,0.043,0.445\r\n\t\t\t\tc0.025,0.047,0.052,0.093,0.076,0.14c0.01,0.069-0.023,0.131,0.014,0.191c0.039,0.033,0.08,0.068,0.121,0.102\r\n\t\t\t\tc0.016,0.021,0.021,0.057,0.031,0.088C55.357,48.795,44.764,58,32,58z M20.929,9.847c0.001,0,0.002,0,0.003,0\r\n\t\t\t\tc0.002,0.003,0.004,0.006,0.006,0.009c-0.001,0-0.002,0-0.003,0C20.933,9.853,20.931,9.85,20.929,9.847z M43.915,25.038\r\n\t\t\t\tc-0.028,0.012-0.031-0.019-0.069-0.013c-0.035,0.011-0.068,0.021-0.103,0.032c-0.005-0.002-0.009-0.004-0.013-0.006\r\n\t\t\t\tc-0.002-0.023-0.004-0.047-0.006-0.07c-0.014-0.004-0.026-0.008-0.039-0.013c-0.004,0.017-0.008,0.034-0.013,0.051\r\n\t\t\t\tc-0.048-0.011-0.054-0.013-0.108-0.006c-0.017-0.034-0.033-0.068-0.051-0.102c-0.066,0.075-0.078,0.271-0.043,0.369\r\n\t\t\t\tc0.038,0.021,0.133,0.008,0.215,0.006c-0.015,0.019-0.029,0.038-0.043,0.057c0.004,0.013,0.008,0.025,0.012,0.038\r\n\t\t\t\tc0.015,0.023,0.043,0.036,0.07,0.045v0.019c-0.045-0.004-0.088-0.008-0.133-0.013c-0.011,0.015-0.021,0.03-0.031,0.045v0.044\r\n\t\t\t\tc0.041-0.029,0.065-0.018,0.127-0.006c0.023,0.067,0.084,0.076,0.113,0.133c0.014,0.054-0.037,0.118-0.037,0.203\r\n\t\t\t\tc0,0.04-0.022,0.09-0.02,0.108c0.018,0.102,0.109,0.354,0.025,0.419c-0.062,0.047-0.192,0.025-0.281,0.045\r\n\t\t\t\tc-0.313,0.07-0.747,0.1-0.857-0.197c-0.119-0.032-0.251-0.062-0.35-0.095c-0.053-0.198,0.057-0.392,0.057-0.559\r\n\t\t\t\tc0.006-0.004,0.014-0.008,0.02-0.013c0.017,0.015,0.019,0.017,0.024,0.044c0.007,0.004,0.013,0.008,0.019,0.013\r\n\t\t\t\tc0.007-0.03,0.014-0.059,0.02-0.089c0.02-0.009,0.021-0.011,0.044-0.006c-0.012-0.168,0.011-0.45,0.28-0.337h0.006\r\n\t\t\t\tc-0.002-0.011-0.004-0.021-0.006-0.032c-0.057-0.128-0.189-0.036-0.242-0.108c-0.029-0.042-0.076-0.085-0.095-0.127\r\n\t\t\t\tc-0.023-0.049-0.009-0.096-0.038-0.133c-0.041-0.053-0.105-0.142-0.159-0.184c-0.019-0.006-0.038-0.013-0.058-0.019\r\n\t\t\t\tc-0.049-0.07-0.076-0.16-0.139-0.216c-0.016-0.004-0.031-0.009-0.045-0.013c-0.031-0.047,0.006-0.079-0.044-0.108\r\n\t\t\t\tc-0.057-0.081-0.018-0.217,0.019-0.311v-0.019H41.92c-0.011,0.038-0.021,0.076-0.031,0.114h-0.007\r\n\t\t\t\tc-0.001-0.113-0.014-0.227-0.114-0.286c-0.031-0.019-0.074-0.01-0.088-0.045v-0.032c0.004-0.075,0.082-0.081,0.113-0.127\r\n\t\t\t\tc0.062-0.092,0.092-0.195,0.121-0.286c0.004-0.006,0.008-0.013,0.013-0.019c0.105,0.051,0.2-0.03,0.28-0.076\r\n\t\t\t\tc0.016,0.008,0.029,0.017,0.044,0.025c0.017-0.02,0.021-0.029,0.019-0.07c0.103-0.023,0.135-0.121,0.217-0.153\r\n\t\t\t\tc0.039-0.002,0.08-0.004,0.121-0.006c0.129-0.041,0.242-0.21,0.412-0.197c0.097,0.007,0.138,0.073,0.211,0.089\r\n\t\t\t\tc0.076,0.017,0.097-0.038,0.133-0.051c0.057,0.013,0.113,0.025,0.172,0.038c0.015,0.025,0.029,0.051,0.045,0.076\r\n\t\t\t\tc-0.018,0.017-0.034,0.034-0.051,0.051c0.047,0.164,0.01,0.207-0.084,0.33c0.005,0.058,0.07,0.083,0.115,0.095\r\n\t\t\t\tc0.002,0.004,0.004,0.008,0.006,0.013c-0.139-0.013-0.275-0.025-0.414-0.038c-0.037,0.007-0.047,0.027-0.102,0.026\r\n\t\t\t\tc-0.013,0.034-0.025,0.068-0.037,0.102c-0.029,0.036-0.058,0.02-0.076,0.076c0.026,0.039,0.063,0.068,0.113,0.083\r\n\t\t\t\tc0.006,0.008,0.014,0.017,0.02,0.026c-0.062,0.044-0.215-0.025-0.338-0.019c-0.006,0.006-0.012,0.013-0.019,0.019v0.083\r\n\t\t\t\tc0.039,0.026,0.134,0.043,0.185,0.051c0.027,0.155,0.139,0.203,0.133,0.368h0.089c0.037,0.027,0.071,0.069,0.089,0.114\r\n\t\t\t\tc0.089,0.012,0.165-0.009,0.234,0.064c-0.033,0.064-0.069,0.143-0.094,0.203c0.022,0.038-0.002,0.077,0.019,0.121\r\n\t\t\t\tc0.013,0.006,0.026,0.013,0.038,0.019c-0.002,0.019-0.004,0.038-0.006,0.057c0.013,0.029,0.055,0.079,0.076,0.114v0.013\r\n\t\t\t\tc0.026-0.072,0.01-0.226,0.031-0.305c0.088-0.015,0.174-0.031,0.273-0.025c0.015,0.056,0.023,0.174,0.051,0.216\r\n\t\t\t\tc0.046,0.071,0.146,0.075,0.197,0.178c-0.016,0.031-0.026,0.037-0.057,0.051c-0.041-0.008-0.043-0.024-0.084-0.032\r\n\t\t\t\tC43.898,24.987,43.907,25.012,43.915,25.038z M35.799,24.777c-0.004,0.004-0.008,0.008-0.013,0.013\r\n\t\t\t\tc-0.024-0.022-0.041-0.037-0.083-0.045c0.004-0.011,0.009-0.021,0.013-0.032c0.017,0.008,0.034,0.017,0.052,0.025\r\n\t\t\t\tC35.788,24.751,35.789,24.757,35.799,24.777z M57.643,35.618c-0.367,0.016-0.324-0.226-0.388-0.502\r\n\t\t\t\tc-0.013,0.004-0.024,0.008-0.038,0.013c-0.056-0.044-0.033-0.145-0.051-0.222c-0.062,0.004-0.119,0.022-0.178,0.013\r\n\t\t\t\tc-0.153-0.249,0.123-0.633,0.191-0.826c-0.005-0.053-0.01-0.105-0.014-0.158c0.02-0.082,0.062-0.115,0.025-0.217\r\n\t\t\t\tc0.092-0.07,0.145-0.061,0.291-0.051c-0.006,0.076-0.012,0.152-0.019,0.229c0.058,0.002,0.08,0.024,0.121,0.033\r\n\t\t\t\tc0.078,0.014,0.106-0.055,0.19-0.007c0.039,0.04,0.076,0.08,0.115,0.121c0.002,0.001,0.004,0.001,0.006,0.002\r\n\t\t\t\tc-0.043,0.556-0.11,1.104-0.188,1.649C57.688,35.667,57.663,35.645,57.643,35.618z M8.363,28.628\r\n\t\t\t\tc-0.002-0.006-0.004-0.013-0.006-0.019v0.019H8.363z M8.35,28.59c-0.001-0.011-0.009-0.009-0.011-0.018\r\n\t\t\t\tc0.001,0.006,0.003,0.012,0.004,0.018H8.35z M42.555,41.414c-0.037-0.059-0.106-0.061-0.14-0.133\r\n\t\t\t\tc-0.067-0.055-0.062-0.042-0.127,0.013c0.009,0.101,0.008,0.235-0.07,0.299c-0.044,0.036-0.079,0.04-0.102,0.103\r\n\t\t\t\tc-0.039-0.014-0.048-0.034-0.063-0.07c-0.019-0.002-0.037-0.004-0.057-0.006c-0.003,0.068,0.016,0.109,0.038,0.165\r\n\t\t\t\tc-0.005,0.011-0.009,0.021-0.013,0.032c-0.024,0.016-0.041,0.024-0.084,0.024c-0.002,0.005-0.004,0.009-0.006,0.013\r\n\t\t\t\tc0.004,0.045,0.026,0.06,0.045,0.103c-0.022,0.024-0.047,0.051-0.069,0.076c-0.039-0.005-0.04-0.009-0.052-0.038H41.85\r\n\t\t\t\tc-0.031,0.027-0.062,0.055-0.095,0.083c0.009,0.034,0.022,0.045,0.038,0.069c-0.014,0.01-0.025,0.018-0.038,0.026\r\n\t\t\t\tc-0.024,0.011-0.026-0.009-0.063-0.019c-0.047,0.029-0.094,0.059-0.141,0.089c0.004,0.024,0.01,0.051,0.014,0.075\r\n\t\t\t\tc-0.071,0.018-0.121-0.053-0.211-0.012c-0.017,0.019-0.033,0.037-0.051,0.057c-0.039,0.02-0.074-0.014-0.107-0.014\r\n\t\t\t\tc-0.025,0.02-0.051,0.039-0.076,0.058c-0.044,0.002-0.09,0.004-0.133,0.006c0,0.213-0.084,0.245-0.141,0.381\r\n\t\t\t\tc-0.025,0.101,0.069,0.325,0.121,0.388c-0.015,0.032-0.029,0.064-0.044,0.096c0.032,0.039,0.063,0.076,0.095,0.115\r\n\t\t\t\tc0.03,0.114-0.166,0.512-0.216,0.559c-0.024,0.009-0.051,0.017-0.075,0.025c-0.045,0.031-0.103,0.232-0.09,0.311\r\n\t\t\t\tc0.053,0.097,0.106,0.195,0.159,0.292c-0.013,0.049-0.024,0.097-0.038,0.146c-0.031,0.145,0.061,0.157,0.083,0.229\r\n\t\t\t\tc0.017,0.051-0.006,0.092,0.019,0.127c0.084,0.119,0.263,0.084,0.344,0.21c0.137-0.008,0.17-0.09,0.285-0.121\r\n\t\t\t\tc0.07-0.009,0.141-0.018,0.211-0.025c0.132-0.082,0.205-0.498,0.261-0.674c0.149-0.486,0.302-0.971,0.451-1.455\r\n\t\t\t\tc0.028-0.096-0.011-0.189,0.019-0.3c0.026-0.093,0.125-0.146,0.146-0.254c-0.047-0.071-0.09-0.157-0.09-0.272\r\n\t\t\t\tc0.012-0.006,0.021-0.014,0.033-0.02c0.004-0.004,0.008-0.009,0.013-0.013c0.028,0.053,0.069,0.133,0.12,0.165\r\n\t\t\t\tc0.035-0.029,0.115-0.123,0.103-0.191c-0.026-0.053-0.055-0.105-0.083-0.158C42.622,41.831,42.634,41.518,42.555,41.414z\r\n\t\t\t\t M10.068,26.772c0.002,0.004,0.003,0.011,0.005,0.016v-0.016H10.068z M8.337,28.565c0,0.001-0.001,0.002-0.001,0.002\r\n\t\t\t\tc0.001,0.003,0.003,0.003,0.003,0.005C8.339,28.57,8.338,28.567,8.337,28.565z M8.356,28.609\r\n\t\t\t\tc-0.002-0.006-0.004-0.013-0.006-0.019v0.019H8.356z M14.998,24.644c-0.002-0.004-0.004-0.009-0.006-0.013\r\n\t\t\t\tc-0.021-0.006-0.042-0.013-0.064-0.019c-0.026,0.019-0.046,0.037-0.057,0.07c-0.004,0.002-0.009,0.004-0.013,0.006\r\n\t\t\t\tc-0.032-0.041-0.059-0.112-0.076-0.165v-0.007c0.122-0.058,0.118-0.025,0.216-0.114V24.37c-0.015-0.006-0.03-0.013-0.045-0.019\r\n\t\t\t\tc-0.042,0.02-0.082,0.042-0.14,0.045c-0.035-0.024-0.077-0.055-0.095-0.095c-0.006-0.006-0.013-0.013-0.019-0.019\r\n\t\t\t\tc0.049-0.04,0.097-0.081,0.146-0.121c0.013-0.015,0.026-0.03,0.038-0.045c-0.085-0.053-0.196-0.098-0.331-0.083\r\n\t\t\t\tc-0.013,0.023-0.025,0.047-0.038,0.07c-0.139,0.028-0.257-0.06-0.343-0.127v-0.019c0.036-0.036,0.072-0.072,0.108-0.108\r\n\t\t\t\tc-0.044-0.017-0.089-0.034-0.133-0.051c-0.111,0.022-0.1,0.134-0.21,0.159c-0.006-0.249,0.344-0.399,0.241-0.604\r\n\t\t\t\tc0.046-0.013,0.102-0.029,0.14-0.045c0.002-0.008,0.004-0.017,0.006-0.025c-0.004-0.011-0.009-0.021-0.013-0.032\r\n\t\t\t\tc-0.013-0.004-0.025-0.008-0.038-0.013c-0.078,0.021-0.157,0.042-0.235,0.064c-0.19,0.122-0.428,0.489-0.508,0.724\r\n\t\t\t\tc0.032,0.038,0.063,0.076,0.095,0.114c-0.085,0.09-0.178,0.003-0.235,0.165c-0.004,0.008-0.008,0.017-0.013,0.025\r\n\t\t\t\tc0.049,0.013,0.098,0.025,0.146,0.038c-0.09,0.09-0.264,0.111-0.324,0.229c-0.016,0.029,0.012,0.075,0.026,0.114\r\n\t\t\t\tc0.097-0.011,0.195-0.021,0.292-0.032c0.121,0.017,0.242,0.034,0.362,0.051c0.11,0.02,0.23-0.003,0.248-0.083\r\n\t\t\t\tc0.034-0.004,0.068-0.008,0.102-0.013v0.096c0.004,0.006,0.008,0.013,0.013,0.019c0.013-0.002,0.025-0.004,0.038-0.006\r\n\t\t\t\tc0.033-0.011,0.042-0.037,0.051-0.07c0.057,0.006,0.114,0.013,0.172,0.019v0.013c-0.121,0.055-0.153,0.168-0.305,0.21\r\n\t\t\t\tc-0.012,0.026-0.007,0.015,0,0.045c0.033,0.016,0.082,0.021,0.133,0.019c0.096-0.105,0.276-0.194,0.343-0.311\r\n\t\t\t\tc0.011,0.004,0.021,0.008,0.032,0.013c0.021,0.028,0.042,0.055,0.064,0.083c-0.002,0.068-0.031,0.109-0.064,0.146\r\n\t\t\t\tc0.002,0.017,0.004,0.034,0.006,0.051c0.017,0.002,0.034,0.004,0.051,0.006c0.025-0.021,0.051-0.042,0.076-0.063\r\n\t\t\t\tc0.004,0.036,0.008,0.072,0.013,0.108c0.053,0.015,0.106,0.03,0.159,0.045c0.031-0.093,0.108-0.194,0.095-0.299\r\n\t\t\t\tC14.985,24.767,14.974,24.733,14.998,24.644z M30.531,24.606c-0.011,0.008-0.021,0.017-0.032,0.025\r\n\t\t\t\tc0.014,0.032,0.014,0.022,0.057,0.019v0.006c-0.011,0.011-0.021,0.021-0.032,0.032c-0.002,0.004-0.004,0.008-0.006,0.013\r\n\t\t\t\tc0.021,0.009,0.042,0.017,0.063,0.026c-0.011,0.015-0.021,0.03-0.032,0.044c0.011,0.009,0.021,0.017,0.032,0.025\r\n\t\t\t\tc0.019,0.002,0.038,0.004,0.057,0.006v0.032c0.013,0.002,0.025,0.004,0.038,0.006c0.109-0.111,0.08-0.372,0.076-0.559\r\n\t\t\t\tc-0.008-0.006-0.017-0.013-0.025-0.019c-0.004,0.002-0.008,0.004-0.013,0.006c-0.004,0.03-0.008,0.059-0.013,0.089\r\n\t\t\t\tc-0.002,0.003-0.171,0.074-0.21,0.114c0.001,0.025,0.001,0.024,0.019,0.044c-0.009,0.007-0.017,0.013-0.026,0.019\r\n\t\t\t\tC30.493,24.58,30.509,24.579,30.531,24.606z M35.215,27.014c0.143-0.008,0.284-0.017,0.426-0.025\r\n\t\t\t\tc0.018-0.028,0.025-0.06,0.032-0.102c-0.045,0.028-0.097,0.035-0.146,0.064c-0.008-0.004-0.018-0.009-0.025-0.013\r\n\t\t\t\tc0.004-0.017,0.01-0.034,0.014-0.051c-0.002-0.002-0.004-0.004-0.007-0.006c-0.098,0.011-0.135,0.002-0.21-0.032\r\n\t\t\t\tc-0.07,0.006-0.14,0.013-0.21,0.019c-0.021-0.019-0.014-0.025-0.051-0.032c0.006-0.009,0.013-0.017,0.019-0.026\r\n\t\t\t\tc-0.004-0.006-0.008-0.013-0.013-0.019c-0.015,0.008-0.03,0.017-0.044,0.026c-0.034-0.012-0.057-0.014-0.076-0.038v-0.013\r\n\t\t\t\tc-0.011,0.013-0.01,0.012-0.013,0.038h-0.032c-0.006,0.032-0.013,0.063-0.02,0.095c0.088,0.039,0.261,0.031,0.356,0.07\r\n\t\t\t\tL35.215,27.014L35.215,27.014z M32.367,26.423c0.035-0.028,0.056-0.073,0.095-0.095c0.013-0.037-0.026-0.055-0.045-0.095\r\n\t\t\t\tc-0.036-0.095,0.072-0.224,0.103-0.292v-0.006c-0.059-0.014-0.121,0.013-0.172,0.025c-0.214,0.053-0.3,0.057-0.458-0.044\r\n\t\t\t\tc-0.091,0.081-0.209,0.007-0.254,0.152c0.043,0.085,0.104,0.06,0.191,0.102C32.004,26.254,32.172,26.367,32.367,26.423z\r\n\t\t\t\t M21.217,10.482c0.035-0.019,0.07-0.038,0.105-0.057c0.055-0.019,0.109-0.037,0.164-0.056c0.003-0.008,0.007-0.017,0.01-0.025\r\n\t\t\t\tc-0.104,0.008-0.218,0.043-0.302,0.036c-0.066,0.038-0.132,0.076-0.197,0.114c-0.025,0.014-0.069,0.026-0.071,0.048\r\n\t\t\t\tc0.004,0.002,0.008,0.004,0.013,0.006c0.045-0.002,0.096-0.023,0.138-0.036C21.123,10.502,21.17,10.492,21.217,10.482z\r\n\t\t\t\t M16.682,18.341c-0.01,0.031-0.094,0.043-0.109,0.087c0.001,0.002,0.001,0.003,0.002,0.005c0.076-0.011,0.12-0.032,0.157-0.06\r\n\t\t\t\tc0.001-0.015-0.005-0.022-0.016-0.032C16.705,18.339,16.7,18.338,16.682,18.341z M30.575,25.66\r\n\t\t\t\tc0.019-0.025,0.038-0.051,0.057-0.076c0.054-0.026,0.099,0,0.146,0.013c0.02-0.058,0.068-0.112,0.057-0.197\r\n\t\t\t\tc-0.006-0.047-0.013-0.093-0.019-0.14c0.006-0.036,0.036-0.069,0.044-0.095c0.031-0.095-0.097-0.241-0.153-0.26\r\n\t\t\t\tc-0.085,0.08-0.164,0.087-0.311,0.114c-0.004,0.004-0.008,0.008-0.013,0.013c0.017,0.081,0.077,0.106,0.095,0.197\r\n\t\t\t\tC30.517,25.416,30.356,25.615,30.575,25.66z M30.512,36.559c-0.028,0.032-0.044,0.092-0.089,0.108v0.058\r\n\t\t\t\tc0.013,0.004,0.025,0.008,0.038,0.012c0.082-0.01,0.066-0.094,0.127-0.127C30.57,36.578,30.553,36.568,30.512,36.559z\r\n\t\t\t\t M26.304,19.147c0.035-0.024,0.05-0.049,0.076-0.083c0.002-0.004,0.004-0.009,0.006-0.013c0.025,0.017,0.051,0.034,0.076,0.051\r\n\t\t\t\tc-0.033,0.09-0.136,0.211-0.089,0.305v0.013c0.082-0.047,0.165-0.094,0.235-0.152h0.025c0.006,0.028,0.013,0.055,0.019,0.083\r\n\t\t\t\tc-0.02,0.027-0.04,0.046-0.076,0.057c-0.009,0.057,0.008,0.105,0.051,0.127c0.034,0.062-0.106,0.181-0.121,0.28\r\n\t\t\t\tc0.051,0.013,0.102,0.025,0.153,0.038c0.024-0.018,0.033-0.026,0.038-0.064c0.038,0.011,0.076,0.021,0.114,0.032\r\n\t\t\t\tc0.138-0.008,0.086-0.079,0.267-0.032c-0.045,0.057-0.103,0.092-0.121,0.178c0.025,0.053,0.055,0.069,0.089,0.108\r\n\t\t\t\tc0.036-0.007,0.072-0.013,0.108-0.019h0.006c-0.005,0.156-0.076,0.23-0.013,0.356v0.006c-0.215,0.003-0.415,0.024-0.489,0.172\r\n\t\t\t\tv0.006h0.133v0.013c0.023,0.036,0.008,0.103,0.006,0.159c-0.078,0.113-0.267,0.119-0.299,0.178\r\n\t\t\t\tc-0.011,0.011-0.021,0.021-0.032,0.032c0.025,0.021,0.051,0.042,0.076,0.064c0.085,0.002,0.169,0.004,0.254,0.006\r\n\t\t\t\tc0.061,0.03,0.123,0.059,0.184,0.089h0.013c0.09-0.005,0.137-0.049,0.203-0.076c-0.029,0.06-0.086,0.099-0.089,0.172\r\n\t\t\t\tc-0.131,0.033-0.232-0.046-0.343,0.006c-0.036,0.041-0.02,0.083-0.095,0.07c-0.013,0.136-0.232,0.282-0.35,0.318\r\n\t\t\t\tc-0.002,0.004-0.004,0.009-0.006,0.013c0.032,0.009,0.064,0.017,0.095,0.026c0.015,0.015,0.03,0.03,0.045,0.045\r\n\t\t\t\tc0.052-0.069,0.127-0.122,0.216-0.153c0.045,0.021,0.07,0.005,0.095-0.013c0.108,0.059,0.203,0.111,0.21-0.089\r\n\t\t\t\tc0.2-0.024,0.253-0.004,0.439,0.013c-0.004-0.015-0.009-0.03-0.013-0.044c0.085-0.013,0.17-0.025,0.254-0.038\r\n\t\t\t\tc0.048-0.007,0.063,0.026,0.095,0.032c0.042-0.011,0.085-0.021,0.127-0.032c0.061,0.009,0.123,0.017,0.184,0.025\r\n\t\t\t\tc0.074-0.014,0.1-0.073,0.203-0.064c0.004-0.059,0.085-0.077,0.133-0.089V21.17h-0.013c-0.014-0.009-0.237-0.029-0.299-0.032\r\n\t\t\t\tV21.13c0.107-0.031,0.369-0.204,0.4-0.299c-0.006-0.055-0.013-0.11-0.019-0.165c-0.087-0.068-0.271-0.169-0.369-0.032\r\n\t\t\t\tc-0.034-0.007-0.068-0.013-0.102-0.019c0.135-0.201,0.055-0.175-0.076-0.318c-0.002-0.002,0.009-0.153-0.025-0.203\r\n\t\t\t\tc-0.049-0.064-0.097-0.127-0.146-0.191c-0.055-0.03-0.115-0.006-0.153-0.051c-0.069-0.084-0.056-0.196-0.095-0.299\r\n\t\t\t\tc-0.031-0.053-0.237-0.227-0.318-0.222c-0.131,0.007-0.14,0.075-0.305,0.006c-0.002-0.004-0.004-0.008-0.006-0.013\r\n\t\t\t\tc0.123,0.003,0.258-0.01,0.311-0.076c0.004-0.002,0.008-0.004,0.013-0.006c-0.034-0.019-0.068-0.038-0.102-0.057\r\n\t\t\t\tc-0.002-0.004-0.004-0.009-0.006-0.013c0.198-0.003,0.277-0.285,0.331-0.426c0.013-0.025,0.001-0.021-0.013-0.051\r\n\t\t\t\tc-0.1-0.073-0.46-0.024-0.623-0.025c-0.006-0.009-0.013-0.017-0.019-0.025c0.017-0.197,0.253-0.175,0.324-0.311\r\n\t\t\t\tc0.035-0.032,0.013-0.032-0.006-0.07c-0.129-0.052-0.288,0.077-0.407,0.045c-0.038-0.023-0.076-0.047-0.114-0.07\r\n\t\t\t\tc-0.019,0.025-0.038,0.051-0.057,0.076c0.019,0.03,0.038,0.059,0.057,0.089c-0.04,0.013-0.08,0.025-0.121,0.038\r\n\t\t\t\tc0.025,0.051,0.051,0.102,0.076,0.152c-0.05,0.002-0.083-0.003-0.127-0.019c-0.039,0.01-0.054,0.039-0.07,0.07\r\n\t\t\t\tc0.027,0.032,0.055,0.064,0.083,0.095c-0.019,0.03-0.061,0.028-0.076,0.051c0.009,0.04,0.017,0.08,0.026,0.121\r\n\t\t\t\tc0,0-0.102,0.182-0.114,0.203C26.262,19.126,26.283,19.136,26.304,19.147z M23.552,15.69c0.122,0.059,0.229,0.003,0.261-0.114\r\n\t\t\t\tc0.002-0.025,0.004-0.051,0.006-0.076c0.061-0.015,0.123-0.03,0.184-0.045c0.041-0.073,0.083-0.252,0.019-0.337\r\n\t\t\t\tc-0.041-0.048-0.155-0.016-0.222-0.038c-0.027-0.017-0.055-0.034-0.083-0.051c-0.016-0.036-0.003-0.092,0.013-0.134\r\n\t\t\t\tc-0.008-0.015-0.017-0.03-0.025-0.045c-0.139-0.061-0.251-0.035-0.311-0.172c-0.039-0.024-0.106-0.033-0.172-0.032v0.159\r\n\t\t\t\tc-0.129,0.091-0.311,0.046-0.483,0.025c0.022,0.049,0.05,0.087,0.044,0.146c-0.091-0.002-0.162-0.057-0.191-0.121\r\n\t\t\t\tc-0.062-0.048-0.149-0.012-0.216,0.038c0.011,0.034,0.021,0.068,0.032,0.102v0.007c-0.017,0.006-0.034,0.013-0.051,0.019\r\n\t\t\t\tc-0.074-0.049-0.145-0.122-0.178-0.21h-0.006c-0.017,0.011-0.034,0.021-0.051,0.032c-0.031,0.052-0.008,0.145-0.006,0.229\r\n\t\t\t\tc-0.045,0.048-0.112,0.04-0.172,0.076c-0.032,0.029-0.064,0.059-0.095,0.089c-0.034-0.049-0.068-0.097-0.102-0.146\r\n\t\t\t\tc-0.02-0.043,0.074-0.098,0.057-0.178c-0.035-0.162-0.262-0.199-0.413-0.241c-0.015,0.017-0.03,0.034-0.044,0.051\r\n\t\t\t\tc-0.004,0.004-0.008,0.008-0.013,0.013c0.042,0.031,0.085,0.071,0.102,0.127v0.006c-0.138,0.096-0.242-0.171-0.324,0.006\r\n\t\t\t\tc0.025,0.034,0.051,0.068,0.076,0.102c0.006,0.006,0.013,0.013,0.019,0.019c-0.08,0.017-0.198,0.021-0.261,0.051\r\n\t\t\t\tc-0.006,0.028-0.008,0.049,0.006,0.07c0.103,0.167,0.277-0.021,0.451,0.007c0.098,0.015,0.167,0.047,0.241,0.076\r\n\t\t\t\tc0.004,0.021,0.009,0.043,0.013,0.064c-0.006,0.019-0.013,0.038-0.019,0.057c-0.108,0.081-0.481,0.067-0.534,0.165\r\n\t\t\t\tc-0.002,0.006-0.004,0.013-0.006,0.019c0.008,0.013,0.017,0.025,0.025,0.038c0.081,0.034,0.262-0.022,0.349-0.038\r\n\t\t\t\tc0.073,0.086,0.103,0.124,0.254,0.14c-0.088,0.128-0.197,0.136-0.292,0.235c0.102,0.124,0.465,0.012,0.616,0.07\r\n\t\t\t\tc0.049,0.034,0.097,0.068,0.146,0.102c0.079,0.046,0.211,0.06,0.311,0.076c0.267,0.044,0.261-0.127,0.369-0.172\r\n\t\t\t\tc0.102-0.013,0.203-0.025,0.305-0.038C23.322,15.873,23.442,15.767,23.552,15.69z M25.078,20.894\r\n\t\t\t\tc-0.023,0.009-0.047,0.017-0.07,0.026c-0.007,0.033,0.006,0.053,0.013,0.089c0.036-0.004,0.072-0.008,0.108-0.013\r\n\t\t\t\tc0.017,0.048,0.015,0.085,0.013,0.146c0.12-0.007,0.193-0.047,0.273-0.07c0.034-0.002,0.068-0.004,0.102-0.006\r\n\t\t\t\tc0.076-0.055,0.153-0.11,0.229-0.165c0.074-0.007,0.148-0.013,0.222-0.019c0.008-0.013,0.017-0.025,0.025-0.038\r\n\t\t\t\tc0.049-0.002,0.097-0.004,0.146-0.006c0.016-0.107,0.079-0.154,0.102-0.229c0.037-0.123-0.067-0.364-0.121-0.439\r\n\t\t\t\tc0.126-0.037,0.169-0.056,0.229-0.159c-0.018-0.123-0.068-0.218-0.102-0.324c-0.094-0.067-0.283-0.037-0.4,0.013\r\n\t\t\t\tc-0.064-0.001-0.088-0.026-0.102-0.076c-0.149,0.013-0.194,0.075-0.229,0.203c-0.025,0.006-0.051,0.013-0.076,0.019\r\n\t\t\t\tc-0.006,0.009-0.013,0.017-0.019,0.025h0.184c-0.025,0.064-0.066,0.089-0.133,0.108c-0.001,0.021,0.008,0.04,0.019,0.063\r\n\t\t\t\tc-0.128-0.01-0.273-0.013-0.375-0.051c-0.045,0.036-0.065,0.068-0.083,0.134v0.038c0.057-0.015,0.088-0.022,0.127,0.013h0.013\r\n\t\t\t\tc-0.037,0.042-0.05,0.035-0.038,0.102c-0.03,0.006-0.059,0.013-0.089,0.019c0.008,0.009,0.017,0.017,0.025,0.025\r\n\t\t\t\tc-0.013,0.017-0.025,0.034-0.038,0.051c0.051,0.024,0.293,0.068,0.343,0.038c0.006,0.017,0.013,0.034,0.019,0.051\r\n\t\t\t\tc-0.083,0.035-0.129,0.014-0.165,0.095c-0.008,0.022-0.004,0.012,0.013,0.038c-0.013,0.019-0.025,0.038-0.038,0.057\r\n\t\t\t\tc-0.004,0.004-0.008,0.008-0.013,0.013c0.047-0.006,0.093-0.013,0.14-0.019c-0.018,0.068-0.092,0.065-0.159,0.076\r\n\t\t\t\tc-0.021,0.026-0.02,0.078-0.044,0.102c-0.032,0.024-0.13,0.015-0.184,0.013c-0.002,0.015-0.004,0.03-0.006,0.044\r\n\t\t\t\tc0.047,0.002,0.093,0.004,0.14,0.006L25.078,20.894L25.078,20.894z M26.336,19.465c-0.008,0.048-0.009,0.074,0,0.121\r\n\t\t\t\tc0.011,0.002,0.021,0.004,0.032,0.006c0.011-0.013,0.021-0.025,0.032-0.038c-0.004-0.034-0.009-0.068-0.013-0.102\r\n\t\t\t\tC26.37,19.456,26.353,19.46,26.336,19.465z M37.611,27.116c0.022-0.013,0.016-0.005,0.019-0.038\r\n\t\t\t\tc0.146-0.004,0.169-0.092,0.292-0.102c-0.015-0.019-0.029-0.038-0.045-0.057c0.053-0.068,0.135-0.101,0.191-0.165\r\n\t\t\t\tc-0.101,0.036-0.199,0.072-0.299,0.108c-0.06-0.006-0.119-0.013-0.179-0.019c0.011,0.023,0.013,0.039,0,0.064\r\n\t\t\t\tc-0.006,0.006-0.171,0.045-0.184,0.045c0.012,0.053,0.028,0.071,0.045,0.114C37.497,27.08,37.576,27.089,37.611,27.116z\r\n\t\t\t\t M8.363,28.654h0.006c-0.002-0.006-0.004-0.013-0.006-0.019V28.654z M14.54,13.788c0.035-0.025,0.102-0.125,0.045-0.175\r\n\t\t\t\tc-0.059,0.063-0.171,0.08-0.068,0.171C14.525,13.786,14.532,13.787,14.54,13.788z M8.375,28.698h0.006\r\n\t\t\t\tc-0.004-0.015-0.008-0.029-0.013-0.044C8.371,28.668,8.373,28.683,8.375,28.698z M8.433,28.838\r\n\t\t\t\tc0.006,0.004,0.013,0.008,0.019,0.013c-0.023-0.051-0.047-0.102-0.07-0.153C8.389,28.761,8.414,28.792,8.433,28.838z\r\n\t\t\t\t M21.4,11.563c-0.005,0-0.01,0.001-0.015,0.001c-0.058,0.053-0.117,0.105-0.175,0.158c-0.053,0.024-0.106,0.048-0.158,0.072\r\n\t\t\t\tc-0.038,0.029-0.035,0.1-0.05,0.136c-0.008,0.019-0.056,0.102-0.048,0.112c0.02,0.01,0.135-0.027,0.152-0.034\r\n\t\t\t\tc0.041-0.017,0.077-0.038,0.104-0.06c0.011-0.01,0.021-0.021,0.032-0.031c0.029-0.01,0.059-0.019,0.088-0.029\r\n\t\t\t\tc0.028-0.025,0.056-0.049,0.084-0.074c0.003-0.003,0.007-0.007,0.01-0.01c0.014,0.009,0.038,0.018,0.063,0.008\r\n\t\t\t\tc0.047-0.026,0.042-0.069,0.098-0.095C21.602,11.666,21.437,11.588,21.4,11.563z M21.72,10.584c0.002,0,0.003-0.001,0.005-0.001\r\n\t\t\t\tc-0.005-0.006-0.009-0.013-0.014-0.019c-0.016,0.002-0.032,0.005-0.048,0.007c-0.148-0.003-0.224-0.095-0.411-0.061\r\n\t\t\t\tc-0.054,0.025-0.235,0.062-0.254,0.094c-0.029,0.048,0.077,0.08,0.116,0.089c0.134,0.033,0.307,0.006,0.465,0.018\r\n\t\t\t\tc0.029,0.002,0.079,0.007,0.099,0.019c0.015,0.009,0.022,0.026,0.042,0.03c0.032,0.001,0.089-0.042,0.103-0.056\r\n\t\t\t\tc0.001-0.001,0.003-0.002,0.004-0.003c-0.082-0.021-0.2-0.02-0.258-0.064C21.619,10.62,21.669,10.602,21.72,10.584z\r\n\t\t\t\t M14.242,41.547c0.147,0.036,0.426-0.012,0.508-0.107c0.048-0.057,0.064-0.207,0.095-0.268c-0.057-0.054-0.445-0.061-0.591-0.057\r\n\t\t\t\tC14.175,41.239,14.197,41.443,14.242,41.547z M10.822,34.354c0.015,0.039,0.009,0.092,0.013,0.135\r\n\t\t\t\tc0.086,0.021,0.114-0.016,0.203-0.02c0.117-0.003,0.196,0.036,0.216-0.095c-0.077-0.062-0.285-0.049-0.4-0.051\r\n\t\t\t\tC10.843,34.333,10.833,34.343,10.822,34.354z M12.735,25.375c-0.017-0.011-0.034-0.021-0.051-0.032\r\n\t\t\t\tc-0.011-0.1,0.084-0.092,0.133-0.146c0.043-0.048,0.06-0.154,0.095-0.203c-0.04-0.027-0.081-0.055-0.121-0.083\r\n\t\t\t\tc-0.045,0.101-0.251,0.268-0.216,0.413c0.05,0.208,0.421,0.141,0.47-0.025C12.9,25.097,12.854,25.337,12.735,25.375z\r\n\t\t\t\t M10.93,37.912c-0.004,0.006-0.008,0.013-0.013,0.02c0.044,0.002,0.042,0.01,0.063,0.031c-0.012,0.031-0.012,0.051,0,0.083\r\n\t\t\t\tc-0.034,0.015-0.068,0.03-0.102,0.044c-0.004,0.006-0.009,0.014-0.013,0.02v0.007c0.085,0,0.174-0.005,0.242-0.013\r\n\t\t\t\tc0.02-0.082-0.008-0.158,0.032-0.217v-0.006h-0.038C11.059,37.904,10.99,37.913,10.93,37.912z M10.015,33.979\r\n\t\t\t\tc-0.092-0.017-0.212,0.006-0.261-0.082c-0.045,0.004-0.062,0.022-0.089,0.031c-0.04-0.004-0.081-0.008-0.121-0.013\r\n\t\t\t\tc-0.04,0.009-0.059,0.049-0.127,0.038c-0.109-0.018-0.194-0.057-0.324-0.057C9.066,33.9,9.038,33.904,9.01,33.909\r\n\t\t\t\tc-0.006,0.008-0.013,0.017-0.019,0.026v0.024c0.064,0.033,0.195,0.03,0.229,0.095c0.046,0.078-0.076,0.146,0.095,0.211\r\n\t\t\t\tc0.004,0.006,0.008,0.012,0.013,0.019c-0.128,0.082-0.41,0.036-0.572-0.013c-0.013,0.015-0.025,0.029-0.038,0.045\r\n\t\t\t\tc-0.002,0.004-0.004,0.008-0.006,0.013c0.034,0.065,0.099,0.077,0.152,0.121c0.05-0.013,0.053-0.048,0.102-0.058\r\n\t\t\t\tc0.076,0.012,0.153,0.021,0.229,0.032c0.078-0.006,0.157-0.013,0.235-0.019c0.048,0.048,0.109,0.15,0.178,0.172\r\n\t\t\t\tc0.044-0.114,0.093-0.196,0.203-0.248c0.021,0.023,0.042,0.047,0.064,0.07c0.075,0.033,0.112-0.061,0.178-0.076\r\n\t\t\t\tc0.044-0.012,0.074,0.012,0.095,0.019c0.129-0.06,0.183,0.046,0.248,0.083c0.039-0.029,0.062-0.074,0.089-0.113\r\n\t\t\t\tC10.38,34.159,10.076,34.16,10.015,33.979z M7.581,34.385c0.019,0.027,0.251,0.17,0.311,0.153\r\n\t\t\t\tc0.044-0.013,0.058-0.078,0.14-0.058c0.051,0.014,0.064,0.041,0.127,0.039c0.002-0.012,0.004-0.021,0.006-0.033\r\n\t\t\t\tc-0.073-0.109-0.33-0.157-0.515-0.152C7.628,34.352,7.604,34.368,7.581,34.385z"},"children":[]}]}]}]}]}]}]}]};exports.globe=globe;var google_plus={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"google_plus_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"google_plus"},"children":[{"name":"g","attribs":{"id":"google_plus"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M35.471,4.995c0,0-12.66,0-16.879,0C11.023,4.995,3.9,10.999,3.9,17.522c0,6.666,5.158,12.23,12.857,12.23\r\n\t\t\t\tc0.535,0,1.055,0.083,1.565,0.046c-0.498,0.94-0.855,2.045-0.855,3.142c0,1.854,1.014,3.379,2.297,4.604\r\n\t\t\t\tc-0.969,0-1.904,0.04-2.926,0.04C7.465,37.584,0,43.452,0,49.533c0,5.986,8.158,10.472,17.533,10.472\r\n\t\t\t\tc10.686,0,16.463-6.688,16.463-12.678c0-4.8-1.318-7.675-5.777-10.772c-1.525-1.06-4.443-3.642-4.443-5.157\r\n\t\t\t\tc0-1.776,0.518-2.653,3.24-4.742c2.791-2.143,4.955-4.903,4.955-8.407c0-4.17-2.08-7.36-5.629-9.325h5.352L35.471,4.995z\r\n\t\t\t\t M29.574,46.295c0.133,0.557,0.207,1.128,0.207,1.711c0,4.838-3.176,8.128-12.283,8.128c-6.478,0-11.158-3.536-11.158-8.375\r\n\t\t\t\tc0-4.741,5.805-8.69,12.283-8.622c1.512,0.018,2.92,0.256,4.199,0.664C26.34,42.201,28.862,43.559,29.574,46.295z M19.201,28.248\r\n\t\t\t\tc-4.349-0.126-8.482-4.778-9.232-10.387c-0.752-5.609,2.164-9.9,6.512-9.773c4.349,0.127,8.67,4.629,9.422,10.236\r\n\t\t\t\tC26.652,23.934,23.547,28.377,19.201,28.248z M54,14.817v-9.76h-4v9.76H40v3.99h10v9.76h4v-9.76h10v-3.99H54L54,14.817z"},"children":[{"name":"path","attribs":{"d":"M35.471,4.995c0,0-12.66,0-16.879,0C11.023,4.995,3.9,10.999,3.9,17.522c0,6.666,5.158,12.23,12.857,12.23\r\n\t\t\t\tc0.535,0,1.055,0.083,1.565,0.046c-0.498,0.94-0.855,2.045-0.855,3.142c0,1.854,1.014,3.379,2.297,4.604\r\n\t\t\t\tc-0.969,0-1.904,0.04-2.926,0.04C7.465,37.584,0,43.452,0,49.533c0,5.986,8.158,10.472,17.533,10.472\r\n\t\t\t\tc10.686,0,16.463-6.688,16.463-12.678c0-4.8-1.318-7.675-5.777-10.772c-1.525-1.06-4.443-3.642-4.443-5.157\r\n\t\t\t\tc0-1.776,0.518-2.653,3.24-4.742c2.791-2.143,4.955-4.903,4.955-8.407c0-4.17-2.08-7.36-5.629-9.325h5.352L35.471,4.995z\r\n\t\t\t\t M29.574,46.295c0.133,0.557,0.207,1.128,0.207,1.711c0,4.838-3.176,8.128-12.283,8.128c-6.478,0-11.158-3.536-11.158-8.375\r\n\t\t\t\tc0-4.741,5.805-8.69,12.283-8.622c1.512,0.018,2.92,0.256,4.199,0.664C26.34,42.201,28.862,43.559,29.574,46.295z M19.201,28.248\r\n\t\t\t\tc-4.349-0.126-8.482-4.778-9.232-10.387c-0.752-5.609,2.164-9.9,6.512-9.773c4.349,0.127,8.67,4.629,9.422,10.236\r\n\t\t\t\tC26.652,23.934,23.547,28.377,19.201,28.248z M54,14.817v-9.76h-4v9.76H40v3.99h10v9.76h4v-9.76h10v-3.99H54L54,14.817z"},"children":[]}]}]}]}]}]}]}]};exports.google_plus=google_plus;var graph_fall={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"GRAPH_FALL"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,30c-1.657,0-3,1.343-3,3v4.757L43.086,22.843v0l-5.965-5.965\r\n\t\t\tC36.578,16.336,35.828,16,35,16s-1.578,0.336-2.121,0.879L19,30.758L5.121,16.879C4.578,16.336,3.828,16,3,16\r\n\t\t\tc-1.657,0-3,1.343-3,3c0,0.828,0.336,1.579,0.879,2.121l16,16C17.422,37.664,18.172,38,19,38c0.828,0,1.578-0.336,2.121-0.879\r\n\t\t\tL35,23.243l3.843,3.843l0.298,0.298l1.738,1.738L53.757,42H49c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3\r\n\t\t\tV33C64,31.343,62.657,30,61,30z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,30c-1.657,0-3,1.343-3,3v4.757L43.086,22.843v0l-5.965-5.965\r\n\t\t\tC36.578,16.336,35.828,16,35,16s-1.578,0.336-2.121,0.879L19,30.758L5.121,16.879C4.578,16.336,3.828,16,3,16\r\n\t\t\tc-1.657,0-3,1.343-3,3c0,0.828,0.336,1.579,0.879,2.121l16,16C17.422,37.664,18.172,38,19,38c0.828,0,1.578-0.336,2.121-0.879\r\n\t\t\tL35,23.243l3.843,3.843l0.298,0.298l1.738,1.738L53.757,42H49c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3\r\n\t\t\tV33C64,31.343,62.657,30,61,30z"},"children":[]}]}]}]}]}]};exports.graph_fall=graph_fall;var graph_rise={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"GRAPH_RISE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,16H49c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h4.757L40.879,34.879\r\n\t\t\tl-1.738,1.738l-0.298,0.298L35,40.758L21.121,26.879C20.578,26.336,19.829,26,19,26c-0.828,0-1.578,0.336-2.121,0.879l-16,16\r\n\t\t\tC0.336,43.422,0,44.172,0,45c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L19,33.243l13.879,13.879\r\n\t\t\tC33.422,47.664,34.172,48,35,48c0.828,0,1.578-0.336,2.121-0.879l5.964-5.965h0L58,26.243V31c0,1.657,1.343,3,3,3\r\n\t\t\tc1.657,0,3-1.343,3-3V19C64,17.343,62.657,16,61,16z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,16H49c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h4.757L40.879,34.879\r\n\t\t\tl-1.738,1.738l-0.298,0.298L35,40.758L21.121,26.879C20.578,26.336,19.829,26,19,26c-0.828,0-1.578,0.336-2.121,0.879l-16,16\r\n\t\t\tC0.336,43.422,0,44.172,0,45c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L19,33.243l13.879,13.879\r\n\t\t\tC33.422,47.664,34.172,48,35,48c0.828,0,1.578-0.336,2.121-0.879l5.964-5.965h0L58,26.243V31c0,1.657,1.343,3,3,3\r\n\t\t\tc1.657,0,3-1.343,3-3V19C64,17.343,62.657,16,61,16z"},"children":[]}]}]}]}]}]};exports.graph_rise=graph_rise;var grid_1={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"GRID_1_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"GRID_1"},"children":[{"name":"g","attribs":{"id":"GRID_1"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M58,35H38c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V38C61,36.343,59.657,35,58,35z M55,55H41\r\n\t\t\t\tV41h14V55z M26,35H6c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V38C29,36.343,27.657,35,26,35z M23,55\r\n\t\t\t\tH9V41h14V55z M58,3H38c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V6C61,4.343,59.657,3,58,3z M55,23H41\r\n\t\t\t\tV9h14V23z M26,3H6C4.343,3,3,4.343,3,6v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V6C29,4.343,27.657,3,26,3z M23,23H9V9h14\r\n\t\t\t\tV23z"},"children":[{"name":"path","attribs":{"d":"M58,35H38c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V38C61,36.343,59.657,35,58,35z M55,55H41\r\n\t\t\t\tV41h14V55z M26,35H6c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V38C29,36.343,27.657,35,26,35z M23,55\r\n\t\t\t\tH9V41h14V55z M58,3H38c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V6C61,4.343,59.657,3,58,3z M55,23H41\r\n\t\t\t\tV9h14V23z M26,3H6C4.343,3,3,4.343,3,6v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V6C29,4.343,27.657,3,26,3z M23,23H9V9h14\r\n\t\t\t\tV23z"},"children":[]}]}]}]}]}]}]}]};exports.grid_1=grid_1;var grid_2={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"GRID_2_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"GRID_2"},"children":[{"name":"g","attribs":{"id":"GRID_2"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M26,35H6c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V38C29,36.343,27.657,35,26,35z M26,3H6\r\n\t\t\t\tC4.343,3,3,4.343,3,6v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V6C29,4.343,27.657,3,26,3z M58,3H38c-1.657,0-3,1.343-3,3\r\n\t\t\t\tv20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V6C61,4.343,59.657,3,58,3z M58,35H38c-1.657,0-3,1.343-3,3v20\r\n\t\t\t\tc0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V38C61,36.343,59.657,35,58,35z"},"children":[{"name":"path","attribs":{"d":"M26,35H6c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V38C29,36.343,27.657,35,26,35z M26,3H6\r\n\t\t\t\tC4.343,3,3,4.343,3,6v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V6C29,4.343,27.657,3,26,3z M58,3H38c-1.657,0-3,1.343-3,3\r\n\t\t\t\tv20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V6C61,4.343,59.657,3,58,3z M58,35H38c-1.657,0-3,1.343-3,3v20\r\n\t\t\t\tc0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V38C61,36.343,59.657,35,58,35z"},"children":[]}]}]}]}]}]}]}]};exports.grid_2=grid_2;var hashtag={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"HASHTAG_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"HASHTAG"},"children":[{"name":"g","attribs":{"id":"HASHTAG"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M58,18h-8.689l2.613-11.325l0,0C51.973,6.458,52,6.232,52,6c0-1.657-1.343-3-3-3c-1.425,0-2.617,0.994-2.923,2.326l0,0\r\n\t\t\t\tL43.152,18H27.31l2.614-11.325l0,0C29.973,6.458,30,6.232,30,6c0-1.657-1.343-3-3-3c-1.425,0-2.617,0.994-2.923,2.326l0,0\r\n\t\t\t\tL21.152,18H12c-1.657,0-3,1.343-3,3s1.343,3,3,3h7.767l-3.692,16H6c-1.657,0-3,1.343-3,3s1.343,3,3,3h8.69l-2.613,11.325l0,0\r\n\t\t\t\tC12.027,57.542,12,57.768,12,58c0,1.657,1.343,3,3,3c1.425,0,2.617-0.994,2.923-2.326l0,0L20.848,46h15.841l-2.613,11.325l0,0\r\n\t\t\t\tC34.027,57.542,34,57.768,34,58c0,1.657,1.343,3,3,3c1.425,0,2.617-0.994,2.923-2.326l0,0L42.848,46H52c1.657,0,3-1.343,3-3\r\n\t\t\t\ts-1.343-3-3-3h-7.768l3.692-16H58c1.657,0,3-1.343,3-3S59.657,18,58,18z M38.075,40H22.233l3.692-16h15.843L38.075,40z"},"children":[{"name":"path","attribs":{"d":"M58,18h-8.689l2.613-11.325l0,0C51.973,6.458,52,6.232,52,6c0-1.657-1.343-3-3-3c-1.425,0-2.617,0.994-2.923,2.326l0,0\r\n\t\t\t\tL43.152,18H27.31l2.614-11.325l0,0C29.973,6.458,30,6.232,30,6c0-1.657-1.343-3-3-3c-1.425,0-2.617,0.994-2.923,2.326l0,0\r\n\t\t\t\tL21.152,18H12c-1.657,0-3,1.343-3,3s1.343,3,3,3h7.767l-3.692,16H6c-1.657,0-3,1.343-3,3s1.343,3,3,3h8.69l-2.613,11.325l0,0\r\n\t\t\t\tC12.027,57.542,12,57.768,12,58c0,1.657,1.343,3,3,3c1.425,0,2.617-0.994,2.923-2.326l0,0L20.848,46h15.841l-2.613,11.325l0,0\r\n\t\t\t\tC34.027,57.542,34,57.768,34,58c0,1.657,1.343,3,3,3c1.425,0,2.617-0.994,2.923-2.326l0,0L42.848,46H52c1.657,0,3-1.343,3-3\r\n\t\t\t\ts-1.343-3-3-3h-7.768l3.692-16H58c1.657,0,3-1.343,3-3S59.657,18,58,18z M38.075,40H22.233l3.692-16h15.843L38.075,40z"},"children":[]}]}]}]}]}]}]}]};exports.hashtag=hashtag;var heart={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"HEART_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"HEART"},"children":[{"name":"g","attribs":{"id":"HEART"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M58.729,9.272C55.328,5.873,50.809,4,46,4s-8.662,1.727-12.061,5.126c-0.002,0.002-0.004,0.003-0.006,0.005l-0.002,0.001\r\n\t\t\t\tL32,11.565l-1.932-2.286c-0.002-0.002-0.004-0.004-0.006-0.006c0,0-0.001,0-0.001-0.001C26.661,5.873,22.808,4,18,4\r\n\t\t\t\tS8.672,5.873,5.272,9.272C1.872,12.672,0,17.192,0,22c0,4.806,1.87,9.323,5.266,12.723L29.16,58.816\r\n\t\t\t\tC29.911,59.574,30.933,60,32,60c1.066,0,2.089-0.426,2.84-1.184l23.893-24.092C62.129,31.325,64,26.806,64,22\r\n\t\t\t\tC64,17.192,62.128,12.672,58.729,9.272z"},"children":[{"name":"path","attribs":{"d":"M58.729,9.272C55.328,5.873,50.809,4,46,4s-8.662,1.727-12.061,5.126c-0.002,0.002-0.004,0.003-0.006,0.005l-0.002,0.001\r\n\t\t\t\tL32,11.565l-1.932-2.286c-0.002-0.002-0.004-0.004-0.006-0.006c0,0-0.001,0-0.001-0.001C26.661,5.873,22.808,4,18,4\r\n\t\t\t\tS8.672,5.873,5.272,9.272C1.872,12.672,0,17.192,0,22c0,4.806,1.87,9.323,5.266,12.723L29.16,58.816\r\n\t\t\t\tC29.911,59.574,30.933,60,32,60c1.066,0,2.089-0.426,2.84-1.184l23.893-24.092C62.129,31.325,64,26.806,64,22\r\n\t\t\t\tC64,17.192,62.128,12.672,58.729,9.272z"},"children":[]}]}]}]}]}]}]}]};exports.heart=heart;var home={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"HOME_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"HOME"},"children":[{"name":"g","attribs":{"id":"HOME"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M6,39v21c0,1.657,1.343,3,3,3h28V39h12v24h6c1.657,0,3-1.343,3-3V39L32,13L6,39z M27,51H15V39h12V51z M63.189,31.96\r\n\t\t\t\tl0.006-0.007L52,20.757V12c0-1.657-1.343-3-3-3s-3,1.343-3,3v2.757L34.195,2.953l-0.002,0.002\r\n\t\t\t\tc-0.478-0.512-1.131-0.857-1.865-0.937c-0.003,0-0.006-0.001-0.009-0.001c-0.045-0.005-0.09-0.008-0.135-0.011\r\n\t\t\t\tc-0.008,0-0.017-0.001-0.025-0.002C32.107,2.002,32.054,2,32.001,2H32c-0.85,0-1.616,0.354-2.162,0.922L0.922,31.838\r\n\t\t\t\tC0.354,32.384,0,33.15,0,34c0,1.657,1.343,3,3,3c0.821,0,1.565-0.33,2.106-0.864l0.001,0.001L32,9.245v0.001l0.077,0.072V9.32\r\n\t\t\t\tl26.877,26.877l0.007-0.008C59.496,36.688,60.21,37,61,37c1.657,0,3-1.343,3-3C64,33.21,63.688,32.496,63.189,31.96z"},"children":[{"name":"path","attribs":{"d":"M6,39v21c0,1.657,1.343,3,3,3h28V39h12v24h6c1.657,0,3-1.343,3-3V39L32,13L6,39z M27,51H15V39h12V51z M63.189,31.96\r\n\t\t\t\tl0.006-0.007L52,20.757V12c0-1.657-1.343-3-3-3s-3,1.343-3,3v2.757L34.195,2.953l-0.002,0.002\r\n\t\t\t\tc-0.478-0.512-1.131-0.857-1.865-0.937c-0.003,0-0.006-0.001-0.009-0.001c-0.045-0.005-0.09-0.008-0.135-0.011\r\n\t\t\t\tc-0.008,0-0.017-0.001-0.025-0.002C32.107,2.002,32.054,2,32.001,2H32c-0.85,0-1.616,0.354-2.162,0.922L0.922,31.838\r\n\t\t\t\tC0.354,32.384,0,33.15,0,34c0,1.657,1.343,3,3,3c0.821,0,1.565-0.33,2.106-0.864l0.001,0.001L32,9.245v0.001l0.077,0.072V9.32\r\n\t\t\t\tl26.877,26.877l0.007-0.008C59.496,36.688,60.21,37,61,37c1.657,0,3-1.343,3-3C64,33.21,63.688,32.496,63.189,31.96z"},"children":[]}]}]}]}]}]}]}]};exports.home=home;var imac={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"IMAC_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"IMAC"},"children":[{"name":"g","attribs":{"id":"IMAC"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M60,4H4C2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC63,5.343,61.657,4,60,4z M59,42H5V8h54V42z"},"children":[{"name":"path","attribs":{"d":"M60,4H4C2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC63,5.343,61.657,4,60,4z M59,42H5V8h54V42z"},"children":[]}]}]}]}]}]}]}]};exports.imac=imac;var image={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"IMAGE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"IMAGE"},"children":[{"name":"g","attribs":{"id":"IMAGE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M40,15L40,15h9v9c0,1.657,1.343,3,3,3s3-1.343,3-3l0,0V13l0,0V9H40c-1.657,0-3,1.343-3,3S38.343,15,40,15z M40,55h15v-4\r\n\t\t\t\tl0,0V40l0,0c0-1.657-1.343-3-3-3s-3,1.343-3,3v9h-9l0,0c-1.657,0-3,1.343-3,3S38.343,55,40,55z M61,0H3C1.343,0,0,1.343,0,3v58\r\n\t\t\t\tc0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58z M24,55c1.657,0,3-1.343,3-3\r\n\t\t\t\ts-1.343-3-3-3l0,0h-9v-9l0,0c0-1.657-1.343-3-3-3s-3,1.343-3,3l0,0v11l0,0v4H24L24,55z M9,24c0,1.657,1.343,3,3,3s3-1.343,3-3\r\n\t\t\t\tl0,0v-9h9l0,0c1.657,0,3-1.343,3-3s-1.343-3-3-3l0,0H9v4l0,0V24L9,24z"},"children":[{"name":"path","attribs":{"d":"M40,15L40,15h9v9c0,1.657,1.343,3,3,3s3-1.343,3-3l0,0V13l0,0V9H40c-1.657,0-3,1.343-3,3S38.343,15,40,15z M40,55h15v-4\r\n\t\t\t\tl0,0V40l0,0c0-1.657-1.343-3-3-3s-3,1.343-3,3v9h-9l0,0c-1.657,0-3,1.343-3,3S38.343,55,40,55z M61,0H3C1.343,0,0,1.343,0,3v58\r\n\t\t\t\tc0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58z M24,55c1.657,0,3-1.343,3-3\r\n\t\t\t\ts-1.343-3-3-3l0,0h-9v-9l0,0c0-1.657-1.343-3-3-3s-3,1.343-3,3l0,0v11l0,0v4H24L24,55z M9,24c0,1.657,1.343,3,3,3s3-1.343,3-3\r\n\t\t\t\tl0,0v-9h9l0,0c1.657,0,3-1.343,3-3s-1.343-3-3-3l0,0H9v4l0,0V24L9,24z"},"children":[]}]}]}]}]}]}]}]};exports.image=image;var inbox={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"INBOX_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"INBOX"},"children":[{"name":"g","attribs":{"id":"INBOX"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M63.796,31.935l0.007-0.003l-8-21l-0.007,0.003C55.366,9.806,54.279,9,53,9H11c-1.28,0-2.365,0.806-2.796,1.935\r\n\t\t\t\tl-0.007-0.003l-8,21l0.007,0.003C0.077,32.267,0,32.624,0,33v19c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V33\r\n\t\t\t\tC64,32.624,63.923,32.267,63.796,31.935z M47,30c-1.657,0-3,1.343-3,3v3H20v-3c0-1.657-1.343-3-3-3H7.353l5.714-15h37.865\r\n\t\t\t\tl5.715,15H47z"},"children":[{"name":"path","attribs":{"d":"M63.796,31.935l0.007-0.003l-8-21l-0.007,0.003C55.366,9.806,54.279,9,53,9H11c-1.28,0-2.365,0.806-2.796,1.935\r\n\t\t\t\tl-0.007-0.003l-8,21l0.007,0.003C0.077,32.267,0,32.624,0,33v19c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V33\r\n\t\t\t\tC64,32.624,63.923,32.267,63.796,31.935z M47,30c-1.657,0-3,1.343-3,3v3H20v-3c0-1.657-1.343-3-3-3H7.353l5.714-15h37.865\r\n\t\t\t\tl5.715,15H47z"},"children":[]}]}]}]}]}]}]}]};exports.inbox=inbox;var inbox_in={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"INBOX__x2F__IN_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"INBOX__x2F__IN"},"children":[{"name":"g","attribs":{"id":"INBOX__x2F__IN"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M22,27c0,0.828,0.336,1.578,0.879,2.121l7,7C30.422,36.664,31.172,37,32,37s1.578-0.336,2.121-0.879l7-7\r\n\t\t\t\tC41.664,28.579,42,27.828,42,27c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L35,26.758V8c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v18.757l-1.879-1.879C26.578,24.336,25.829,24,25,24C23.343,24,22,25.343,22,27z M63.8,36.924l-7.978-20.941\r\n\t\t\t\tC55.406,14.827,54.3,14,53,14H38v6h12.932l5.715,15H47c-1.657,0-3,1.343-3,3v3H20v-3c0-1.657-1.343-3-3-3H7.353l5.714-15H26v-6\r\n\t\t\t\tH11c-1.3,0-2.406,0.827-2.823,1.982L0.2,36.924C0.071,37.258,0,37.621,0,38v19c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V38\r\n\t\t\t\tC64,37.621,63.93,37.258,63.8,36.924z"},"children":[{"name":"path","attribs":{"d":"M22,27c0,0.828,0.336,1.578,0.879,2.121l7,7C30.422,36.664,31.172,37,32,37s1.578-0.336,2.121-0.879l7-7\r\n\t\t\t\tC41.664,28.579,42,27.828,42,27c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L35,26.758V8c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v18.757l-1.879-1.879C26.578,24.336,25.829,24,25,24C23.343,24,22,25.343,22,27z M63.8,36.924l-7.978-20.941\r\n\t\t\t\tC55.406,14.827,54.3,14,53,14H38v6h12.932l5.715,15H47c-1.657,0-3,1.343-3,3v3H20v-3c0-1.657-1.343-3-3-3H7.353l5.714-15H26v-6\r\n\t\t\t\tH11c-1.3,0-2.406,0.827-2.823,1.982L0.2,36.924C0.071,37.258,0,37.621,0,38v19c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V38\r\n\t\t\t\tC64,37.621,63.93,37.258,63.8,36.924z"},"children":[]}]}]}]}]}]}]}]};exports.inbox_in=inbox_in;var inbox_out={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"INBOX__x2F__OUT_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"INBOX__x2F__OUT"},"children":[{"name":"g","attribs":{"id":"INBOX__x2F__OUT"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M25,18c0.828,0,1.578-0.336,2.121-0.879L29,15.243V34c0,1.657,1.343,3,3,3s3-1.343,3-3V15.243l1.879,1.879\r\n\t\t\t\tC37.422,17.664,38.172,18,39,18c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121l-7-7C33.578,5.336,32.829,5,32,5\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879l-7,7C22.336,13.422,22,14.172,22,15C22,16.657,23.343,18,25,18z M63.8,36.924l-7.978-20.941\r\n\t\t\t\tC55.406,14.827,54.3,14,53,14h-8.102C44.954,14.327,45,14.658,45,15c0,2.09-1.07,3.926-2.691,5h8.623l5.715,15H47\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v3H20v-3c0-1.657-1.343-3-3-3H7.353l5.714-15h8.623C20.071,18.926,19,17.09,19,15\r\n\t\t\t\tc0-0.342,0.046-0.673,0.101-1H11l0,0c-1.3,0-2.406,0.827-2.823,1.982L0.2,36.924C0.071,37.258,0,37.621,0,38v19\r\n\t\t\t\tc0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V38C64,37.621,63.93,37.258,63.8,36.924z"},"children":[{"name":"path","attribs":{"d":"M25,18c0.828,0,1.578-0.336,2.121-0.879L29,15.243V34c0,1.657,1.343,3,3,3s3-1.343,3-3V15.243l1.879,1.879\r\n\t\t\t\tC37.422,17.664,38.172,18,39,18c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121l-7-7C33.578,5.336,32.829,5,32,5\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879l-7,7C22.336,13.422,22,14.172,22,15C22,16.657,23.343,18,25,18z M63.8,36.924l-7.978-20.941\r\n\t\t\t\tC55.406,14.827,54.3,14,53,14h-8.102C44.954,14.327,45,14.658,45,15c0,2.09-1.07,3.926-2.691,5h8.623l5.715,15H47\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v3H20v-3c0-1.657-1.343-3-3-3H7.353l5.714-15h8.623C20.071,18.926,19,17.09,19,15\r\n\t\t\t\tc0-0.342,0.046-0.673,0.101-1H11l0,0c-1.3,0-2.406,0.827-2.823,1.982L0.2,36.924C0.071,37.258,0,37.621,0,38v19\r\n\t\t\t\tc0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V38C64,37.621,63.93,37.258,63.8,36.924z"},"children":[]}]}]}]}]}]}]}]};exports.inbox_out=inbox_out;var instagram={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"instagram_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"instagram"},"children":[{"name":"g","attribs":{"id":"instagram"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M56,0H8C3.582,0,0,3.582,0,8v48c0,4.418,3.582,8,8,8h48c4.418,0,8-3.582,8-8V8C64,3.582,60.418,0,56,0z M19.673,30.673\r\n\t\t\t\tc0.013-0.127,0.04-0.249,0.057-0.374c0.042-0.31,0.088-0.618,0.153-0.92c0.029-0.136,0.069-0.267,0.103-0.401\r\n\t\t\t\tc0.072-0.286,0.147-0.571,0.238-0.849c0.044-0.132,0.095-0.259,0.142-0.389c0.1-0.272,0.204-0.541,0.322-0.804\r\n\t\t\t\tc0.02-0.045,0.034-0.092,0.055-0.137h0.011c1.968-4.247,6.257-7.2,11.246-7.2c4.988,0,9.277,2.953,11.246,7.2h0.011\r\n\t\t\t\tc0.021,0.045,0.035,0.092,0.056,0.137c0.117,0.263,0.222,0.532,0.321,0.804c0.048,0.13,0.099,0.257,0.142,0.389\r\n\t\t\t\tc0.092,0.278,0.166,0.562,0.238,0.849c0.034,0.134,0.074,0.265,0.104,0.401c0.064,0.302,0.109,0.61,0.152,0.92\r\n\t\t\t\tc0.018,0.125,0.043,0.247,0.058,0.374C44.373,31.109,44.4,31.551,44.4,32c0,6.85-5.553,12.4-12.4,12.4\r\n\t\t\t\tc-6.848,0-12.4-5.553-12.4-12.4C19.6,31.551,19.627,31.109,19.673,30.673z M56.8,53.6c0,1.768-1.433,3.2-3.2,3.2H10.4\r\n\t\t\t\tc-1.767,0-3.2-1.433-3.2-3.2V26.8h5.899C12.644,28.456,12.4,30.2,12.4,32c0,10.825,8.775,19.6,19.6,19.6S51.6,42.825,51.6,32\r\n\t\t\t\tc0-1.8-0.244-3.544-0.699-5.2H56.8V53.6z M56.8,16.8c0,1.767-1.433,3.2-3.2,3.2H47.2c-1.767,0-3.2-1.433-3.2-3.2v-6.4\r\n\t\t\t\tc0-1.767,1.434-3.2,3.2-3.2H53.6c1.768,0,3.2,1.432,3.2,3.2V16.8z"},"children":[{"name":"path","attribs":{"d":"M56,0H8C3.582,0,0,3.582,0,8v48c0,4.418,3.582,8,8,8h48c4.418,0,8-3.582,8-8V8C64,3.582,60.418,0,56,0z M19.673,30.673\r\n\t\t\t\tc0.013-0.127,0.04-0.249,0.057-0.374c0.042-0.31,0.088-0.618,0.153-0.92c0.029-0.136,0.069-0.267,0.103-0.401\r\n\t\t\t\tc0.072-0.286,0.147-0.571,0.238-0.849c0.044-0.132,0.095-0.259,0.142-0.389c0.1-0.272,0.204-0.541,0.322-0.804\r\n\t\t\t\tc0.02-0.045,0.034-0.092,0.055-0.137h0.011c1.968-4.247,6.257-7.2,11.246-7.2c4.988,0,9.277,2.953,11.246,7.2h0.011\r\n\t\t\t\tc0.021,0.045,0.035,0.092,0.056,0.137c0.117,0.263,0.222,0.532,0.321,0.804c0.048,0.13,0.099,0.257,0.142,0.389\r\n\t\t\t\tc0.092,0.278,0.166,0.562,0.238,0.849c0.034,0.134,0.074,0.265,0.104,0.401c0.064,0.302,0.109,0.61,0.152,0.92\r\n\t\t\t\tc0.018,0.125,0.043,0.247,0.058,0.374C44.373,31.109,44.4,31.551,44.4,32c0,6.85-5.553,12.4-12.4,12.4\r\n\t\t\t\tc-6.848,0-12.4-5.553-12.4-12.4C19.6,31.551,19.627,31.109,19.673,30.673z M56.8,53.6c0,1.768-1.433,3.2-3.2,3.2H10.4\r\n\t\t\t\tc-1.767,0-3.2-1.433-3.2-3.2V26.8h5.899C12.644,28.456,12.4,30.2,12.4,32c0,10.825,8.775,19.6,19.6,19.6S51.6,42.825,51.6,32\r\n\t\t\t\tc0-1.8-0.244-3.544-0.699-5.2H56.8V53.6z M56.8,16.8c0,1.767-1.433,3.2-3.2,3.2H47.2c-1.767,0-3.2-1.433-3.2-3.2v-6.4\r\n\t\t\t\tc0-1.767,1.434-3.2,3.2-3.2H53.6c1.768,0,3.2,1.432,3.2,3.2V16.8z"},"children":[]}]}]}]}]}]}]}]};exports.instagram=instagram;var ipad={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"IPAD_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"IPAD"},"children":[{"name":"g","attribs":{"id":"IPAD"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M54,3H10C8.343,3,7,4.343,7,6v52c0,1.657,1.343,3,3,3h44c1.657,0,3-1.343,3-3V6C57,4.343,55.657,3,54,3z M32,59\r\n\t\t\t\tc-1.105,0-2-0.896-2-2s0.895-2,2-2c1.105,0,2,0.896,2,2S33.105,59,32,59z M51,53H13V9h38V53z"},"children":[{"name":"path","attribs":{"d":"M54,3H10C8.343,3,7,4.343,7,6v52c0,1.657,1.343,3,3,3h44c1.657,0,3-1.343,3-3V6C57,4.343,55.657,3,54,3z M32,59\r\n\t\t\t\tc-1.105,0-2-0.896-2-2s0.895-2,2-2c1.105,0,2,0.896,2,2S33.105,59,32,59z M51,53H13V9h38V53z"},"children":[]}]}]}]}]}]}]}]};exports.ipad=ipad;var iphone={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"IPHONE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"IPHONE"},"children":[{"name":"g","attribs":{"id":"IPHONE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M46,3H18c-1.657,0-3,1.343-3,3v52c0,1.657,1.343,3,3,3h28c1.657,0,3-1.343,3-3V6C49,4.343,47.657,3,46,3z M32,58\r\n\t\t\t\tc-1.105,0-2-0.895-2-2s0.895-2,2-2c1.105,0,2,0.895,2,2S33.105,58,32,58z M46,51H18V9h28V51z"},"children":[{"name":"path","attribs":{"d":"M46,3H18c-1.657,0-3,1.343-3,3v52c0,1.657,1.343,3,3,3h28c1.657,0,3-1.343,3-3V6C49,4.343,47.657,3,46,3z M32,58\r\n\t\t\t\tc-1.105,0-2-0.895-2-2s0.895-2,2-2c1.105,0,2,0.895,2,2S33.105,58,32,58z M46,51H18V9h28V51z"},"children":[]}]}]}]}]}]}]}]};exports.iphone=iphone;var layers={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"LAYERS"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,42c-0.406,0-0.793,0.083-1.147,0.229l0-0.001l-0.013,0.005\r\n\t\t\tc-0.004,0.002-0.009,0.003-0.013,0.005L32,53.753L4.174,42.239c-0.004-0.002-0.009-0.004-0.013-0.005l-0.013-0.005l-0.001,0.001\r\n\t\t\tC3.793,42.083,3.406,42,3,42c-1.657,0-3,1.343-3,3c0,1.25,0.766,2.32,1.853,2.771l0,0.001l28.974,11.989\r\n\t\t\tc0.004,0.002,0.009,0.004,0.013,0.005l0.013,0.005l0.001-0.001C31.207,59.917,31.594,60,32,60c0.406,0,0.793-0.083,1.147-0.229\r\n\t\t\tl0.001,0.001l0.013-0.005c0.004-0.002,0.009-0.004,0.013-0.005l28.973-11.989l0-0.001C63.234,47.32,64,46.25,64,45\r\n\t\t\tC64,43.343,62.657,42,61,42z M1.854,21.771l0,0.001l28.974,11.989c0.004,0.002,0.009,0.003,0.013,0.005l0.013,0.005l0.001-0.001\r\n\t\t\tC31.207,33.917,31.594,34,32,34c0.406,0,0.793-0.083,1.147-0.229l0.001,0.001l0.013-0.005c0.004-0.002,0.009-0.004,0.013-0.005\r\n\t\t\tl28.973-11.989l0-0.001C63.234,21.32,64,20.25,64,19c0-1.25-0.766-2.32-1.853-2.771l0-0.001L33.174,4.239\r\n\t\t\tc-0.004-0.002-0.009-0.004-0.013-0.005l-0.013-0.005l-0.001,0.001C32.793,4.083,32.406,4,32,4c-0.406,0-0.793,0.083-1.146,0.229\r\n\t\t\tl-0.001-0.001L30.84,4.233c-0.004,0.002-0.009,0.004-0.013,0.005L1.853,16.228l0,0.001C0.766,16.68,0,17.75,0,19\r\n\t\t\tC0,20.25,0.766,21.32,1.854,21.771z M61,29c-0.406,0-0.793,0.083-1.147,0.229l0-0.001l-0.013,0.006\r\n\t\t\tc-0.004,0.002-0.009,0.004-0.013,0.005L32,40.753L4.174,29.239c-0.004-0.002-0.009-0.004-0.013-0.005l-0.013-0.006l-0.001,0.001\r\n\t\t\tC3.793,29.083,3.406,29,3,29c-1.657,0-3,1.343-3,3c0,1.251,0.766,2.32,1.853,2.771l0,0.001l28.974,11.989\r\n\t\t\tc0.004,0.002,0.009,0.003,0.013,0.005l0.013,0.005l0.001-0.001C31.207,46.917,31.594,47,32,47c0.406,0,0.793-0.083,1.147-0.229\r\n\t\t\tl0.001,0.001l0.013-0.005c0.004-0.002,0.009-0.004,0.013-0.005l28.973-11.989l0-0.001C63.234,34.32,64,33.251,64,32\r\n\t\t\tC64,30.343,62.657,29,61,29z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,42c-0.406,0-0.793,0.083-1.147,0.229l0-0.001l-0.013,0.005\r\n\t\t\tc-0.004,0.002-0.009,0.003-0.013,0.005L32,53.753L4.174,42.239c-0.004-0.002-0.009-0.004-0.013-0.005l-0.013-0.005l-0.001,0.001\r\n\t\t\tC3.793,42.083,3.406,42,3,42c-1.657,0-3,1.343-3,3c0,1.25,0.766,2.32,1.853,2.771l0,0.001l28.974,11.989\r\n\t\t\tc0.004,0.002,0.009,0.004,0.013,0.005l0.013,0.005l0.001-0.001C31.207,59.917,31.594,60,32,60c0.406,0,0.793-0.083,1.147-0.229\r\n\t\t\tl0.001,0.001l0.013-0.005c0.004-0.002,0.009-0.004,0.013-0.005l28.973-11.989l0-0.001C63.234,47.32,64,46.25,64,45\r\n\t\t\tC64,43.343,62.657,42,61,42z M1.854,21.771l0,0.001l28.974,11.989c0.004,0.002,0.009,0.003,0.013,0.005l0.013,0.005l0.001-0.001\r\n\t\t\tC31.207,33.917,31.594,34,32,34c0.406,0,0.793-0.083,1.147-0.229l0.001,0.001l0.013-0.005c0.004-0.002,0.009-0.004,0.013-0.005\r\n\t\t\tl28.973-11.989l0-0.001C63.234,21.32,64,20.25,64,19c0-1.25-0.766-2.32-1.853-2.771l0-0.001L33.174,4.239\r\n\t\t\tc-0.004-0.002-0.009-0.004-0.013-0.005l-0.013-0.005l-0.001,0.001C32.793,4.083,32.406,4,32,4c-0.406,0-0.793,0.083-1.146,0.229\r\n\t\t\tl-0.001-0.001L30.84,4.233c-0.004,0.002-0.009,0.004-0.013,0.005L1.853,16.228l0,0.001C0.766,16.68,0,17.75,0,19\r\n\t\t\tC0,20.25,0.766,21.32,1.854,21.771z M61,29c-0.406,0-0.793,0.083-1.147,0.229l0-0.001l-0.013,0.006\r\n\t\t\tc-0.004,0.002-0.009,0.004-0.013,0.005L32,40.753L4.174,29.239c-0.004-0.002-0.009-0.004-0.013-0.005l-0.013-0.006l-0.001,0.001\r\n\t\t\tC3.793,29.083,3.406,29,3,29c-1.657,0-3,1.343-3,3c0,1.251,0.766,2.32,1.853,2.771l0,0.001l28.974,11.989\r\n\t\t\tc0.004,0.002,0.009,0.003,0.013,0.005l0.013,0.005l0.001-0.001C31.207,46.917,31.594,47,32,47c0.406,0,0.793-0.083,1.147-0.229\r\n\t\t\tl0.001,0.001l0.013-0.005c0.004-0.002,0.009-0.004,0.013-0.005l28.973-11.989l0-0.001C63.234,34.32,64,33.251,64,32\r\n\t\t\tC64,30.343,62.657,29,61,29z"},"children":[]}]}]}]}]}]};exports.layers=layers;var line_graph={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"LINE_GRAPH_2_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"LINE_GRAPH_1_"},"children":[{"name":"g","attribs":{"id":"LINE_GRAPH_1_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M61,53H6V40.716l13.9-8.177l13.42,8.947c0.002,0,0.003,0.002,0.005,0.003l0.011,0.007l0.001-0.001\r\n\t\t\t\tC33.812,41.812,34.384,42,35,42c0.635,0,1.221-0.2,1.706-0.536l0.002,0.002l25.969-17.979c0,0,0.001,0,0.001-0.001l0.03-0.021\r\n\t\t\t\tl-0.002-0.003C63.486,22.923,64,22.022,64,21c0-1.657-1.343-3-3-3c-0.635,0-1.221,0.2-1.706,0.536l-0.002-0.003l-24.324,16.84\r\n\t\t\t\tl-13.289-8.859c-0.001-0.001-0.003-0.002-0.005-0.003l-0.011-0.007l-0.001,0.001C21.187,26.187,20.616,26,20,26\r\n\t\t\t\tc-0.555,0-1.069,0.161-1.515,0.424l-0.006-0.01L6,33.755V8c0-1.657-1.343-3-3-3S0,6.343,0,8v48c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3S62.657,53,61,53z"},"children":[{"name":"path","attribs":{"d":"M61,53H6V40.716l13.9-8.177l13.42,8.947c0.002,0,0.003,0.002,0.005,0.003l0.011,0.007l0.001-0.001\r\n\t\t\t\tC33.812,41.812,34.384,42,35,42c0.635,0,1.221-0.2,1.706-0.536l0.002,0.002l25.969-17.979c0,0,0.001,0,0.001-0.001l0.03-0.021\r\n\t\t\t\tl-0.002-0.003C63.486,22.923,64,22.022,64,21c0-1.657-1.343-3-3-3c-0.635,0-1.221,0.2-1.706,0.536l-0.002-0.003l-24.324,16.84\r\n\t\t\t\tl-13.289-8.859c-0.001-0.001-0.003-0.002-0.005-0.003l-0.011-0.007l-0.001,0.001C21.187,26.187,20.616,26,20,26\r\n\t\t\t\tc-0.555,0-1.069,0.161-1.515,0.424l-0.006-0.01L6,33.755V8c0-1.657-1.343-3-3-3S0,6.343,0,8v48c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3S62.657,53,61,53z"},"children":[]}]}]}]}]}]}]}]};exports.line_graph=line_graph;var line_graph_square={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"LINE_GRAPH_3_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"LINE_GRAPH"},"children":[{"name":"g","attribs":{"id":"LINE_GRAPH"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M12,38.035c0.628,0,1.212-0.194,1.694-0.524l6.271-3.919l13.312,8.875c0.488,0.344,1.082,0.545,1.724,0.545\r\n\t\t\t\tc0.656,0,1.263-0.211,1.757-0.568h0.001l17-12l-0.001-0.001C54.51,29.897,55,29.012,55,28.011c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.662,0-1.273,0.215-1.77,0.578L34.953,36.373l-13.261-8.841l-0.012,0.017c-0.479-0.325-1.058-0.514-1.68-0.514\r\n\t\t\t\tc-0.575,0-1.113,0.162-1.569,0.443l-0.002-0.002l-8,5l0.001,0.002C9.573,33.006,9,33.953,9,35.035\r\n\t\t\t\tC9,36.691,10.343,38.035,12,38.035z M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z M58,58H6V6h52V58z"},"children":[{"name":"path","attribs":{"d":"M12,38.035c0.628,0,1.212-0.194,1.694-0.524l6.271-3.919l13.312,8.875c0.488,0.344,1.082,0.545,1.724,0.545\r\n\t\t\t\tc0.656,0,1.263-0.211,1.757-0.568h0.001l17-12l-0.001-0.001C54.51,29.897,55,29.012,55,28.011c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.662,0-1.273,0.215-1.77,0.578L34.953,36.373l-13.261-8.841l-0.012,0.017c-0.479-0.325-1.058-0.514-1.68-0.514\r\n\t\t\t\tc-0.575,0-1.113,0.162-1.569,0.443l-0.002-0.002l-8,5l0.001,0.002C9.573,33.006,9,33.953,9,35.035\r\n\t\t\t\tC9,36.691,10.343,38.035,12,38.035z M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z M58,58H6V6h52V58z"},"children":[]}]}]}]}]}]}]}]};exports.line_graph_square=line_graph_square;var link={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"LINK_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"LINK"},"children":[{"name":"g","attribs":{"id":"LINK"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M26.461,45.766c-0.056,0.062-0.096,0.131-0.155,0.19l-8.349,8.37c-2.306,2.311-6.043,2.311-8.349,0\r\n\t\t\t\tc-2.305-2.311-2.305-6.059,0-8.37l8.349-8.37c0.018-0.018,0.041-0.029,0.059-0.049l7.187-7.187\r\n\t\t\t\tc-3.943-1.062-8.326-0.052-11.421,3.05L5.433,41.77c-4.611,4.623-4.611,12.119,0,16.74c4.611,4.623,12.087,4.623,16.697,0\r\n\t\t\t\tl8.349-8.369c3.091-3.101,4.1-7.49,3.044-11.44L26.461,45.766z M58.48,5.401c-4.61-4.623-12.086-4.623-16.696,0l-8.349,8.37\r\n\t\t\t\tc-3.083,3.09-4.094,7.462-3.055,11.403l7.221-7.221l0.006,0.006c0.002-0.001,0.002-0.002,0.002-0.002l8.35-8.37\r\n\t\t\t\tc2.305-2.311,6.043-2.311,8.35,0c2.305,2.311,2.305,6.059,0,8.37l-8.35,8.37c-0.098,0.098-0.211,0.167-0.312,0.256l-6.971,6.97\r\n\t\t\t\tc3.953,1.078,8.354,0.071,11.457-3.041l8.35-8.37C63.091,17.518,63.091,10.023,58.48,5.401z M42,19\r\n\t\t\t\tc-0.868,0-1.645,0.374-2.191,0.964L19.964,39.809C19.375,40.355,19,41.132,19,42c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.836,0,1.591-0.344,2.135-0.896l0.009,0.01l20-20l-0.01-0.009C44.669,23.563,45,22.82,45,22C45,20.343,43.657,19,42,19z"},"children":[{"name":"path","attribs":{"d":"M26.461,45.766c-0.056,0.062-0.096,0.131-0.155,0.19l-8.349,8.37c-2.306,2.311-6.043,2.311-8.349,0\r\n\t\t\t\tc-2.305-2.311-2.305-6.059,0-8.37l8.349-8.37c0.018-0.018,0.041-0.029,0.059-0.049l7.187-7.187\r\n\t\t\t\tc-3.943-1.062-8.326-0.052-11.421,3.05L5.433,41.77c-4.611,4.623-4.611,12.119,0,16.74c4.611,4.623,12.087,4.623,16.697,0\r\n\t\t\t\tl8.349-8.369c3.091-3.101,4.1-7.49,3.044-11.44L26.461,45.766z M58.48,5.401c-4.61-4.623-12.086-4.623-16.696,0l-8.349,8.37\r\n\t\t\t\tc-3.083,3.09-4.094,7.462-3.055,11.403l7.221-7.221l0.006,0.006c0.002-0.001,0.002-0.002,0.002-0.002l8.35-8.37\r\n\t\t\t\tc2.305-2.311,6.043-2.311,8.35,0c2.305,2.311,2.305,6.059,0,8.37l-8.35,8.37c-0.098,0.098-0.211,0.167-0.312,0.256l-6.971,6.97\r\n\t\t\t\tc3.953,1.078,8.354,0.071,11.457-3.041l8.35-8.37C63.091,17.518,63.091,10.023,58.48,5.401z M42,19\r\n\t\t\t\tc-0.868,0-1.645,0.374-2.191,0.964L19.964,39.809C19.375,40.355,19,41.132,19,42c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.836,0,1.591-0.344,2.135-0.896l0.009,0.01l20-20l-0.01-0.009C44.669,23.563,45,22.82,45,22C45,20.343,43.657,19,42,19z"},"children":[]}]}]}]}]}]}]}]};exports.link=link;var linkedin={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"linkedin_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"linkedin"},"children":[{"name":"g","attribs":{"id":"linkedin"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M0.798,62.986h14.315V22.368H0.798V62.986z M48.434,21.087c-5.925,0-9.192,1.972-12.953,6.749v-5.469H21.189v40.619\r\n\t\t\t\tH35.48V40.914c0-4.658,2.24-9.214,7.596-9.214s6.673,4.555,6.673,9.103v22.184H64v-23.09C64,23.854,54.361,21.087,48.434,21.087z\r\n\t\t\t\t M7.982,2.013C3.572,2.013,0,5.222,0,9.183c0,3.958,3.572,7.162,7.982,7.162c4.406,0,7.978-3.205,7.978-7.162\r\n\t\t\t\tC15.96,5.222,12.388,2.013,7.982,2.013z"},"children":[{"name":"path","attribs":{"d":"M0.798,62.986h14.315V22.368H0.798V62.986z M48.434,21.087c-5.925,0-9.192,1.972-12.953,6.749v-5.469H21.189v40.619\r\n\t\t\t\tH35.48V40.914c0-4.658,2.24-9.214,7.596-9.214s6.673,4.555,6.673,9.103v22.184H64v-23.09C64,23.854,54.361,21.087,48.434,21.087z\r\n\t\t\t\t M7.982,2.013C3.572,2.013,0,5.222,0,9.183c0,3.958,3.572,7.162,7.982,7.162c4.406,0,7.978-3.205,7.978-7.162\r\n\t\t\t\tC15.96,5.222,12.388,2.013,7.982,2.013z"},"children":[]}]}]}]}]}]}]}]};exports.linkedin=linkedin;var list={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"LIST_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"LIST"},"children":[{"name":"g","attribs":{"id":"LIST"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M3,19h58c1.657,0,3-1.343,3-3s-1.343-3-3-3H3c-1.657,0-3,1.343-3,3S1.343,19,3,19z M61,29H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h58c1.657,0,3-1.343,3-3S62.657,29,61,29z M61,45H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h58c1.657,0,3-1.343,3-3\r\n\t\t\t\tS62.657,45,61,45z"},"children":[{"name":"path","attribs":{"d":"M3,19h58c1.657,0,3-1.343,3-3s-1.343-3-3-3H3c-1.657,0-3,1.343-3,3S1.343,19,3,19z M61,29H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h58c1.657,0,3-1.343,3-3S62.657,29,61,29z M61,45H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h58c1.657,0,3-1.343,3-3\r\n\t\t\t\tS62.657,45,61,45z"},"children":[]}]}]}]}]}]}]}]};exports.list=list;var list_2={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"LIST_2_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"LIST_2"},"children":[{"name":"g","attribs":{"id":"LIST_2"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M9,45H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h6l0,0c1.657,0,3-1.343,3-3S10.657,45,9,45z M61,29H21c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3l0,0h40c1.657,0,3-1.343,3-3S62.657,29,61,29z M9,29H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h6l0,0c1.657,0,3-1.343,3-3\r\n\t\t\t\tS10.657,29,9,29z M21,19h40c1.657,0,3-1.343,3-3s-1.343-3-3-3H21.001H21c-1.657,0-3,1.343-3,3S19.343,19,21,19z M9,13L9,13H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h6c1.657,0,3-1.343,3-3S10.657,13,9,13z M61,45H21c-1.657,0-3,1.343-3,3s1.343,3,3,3l0,0h40\r\n\t\t\t\tc1.657,0,3-1.343,3-3S62.657,45,61,45z"},"children":[{"name":"path","attribs":{"d":"M9,45H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h6l0,0c1.657,0,3-1.343,3-3S10.657,45,9,45z M61,29H21c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3l0,0h40c1.657,0,3-1.343,3-3S62.657,29,61,29z M9,29H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h6l0,0c1.657,0,3-1.343,3-3\r\n\t\t\t\tS10.657,29,9,29z M21,19h40c1.657,0,3-1.343,3-3s-1.343-3-3-3H21.001H21c-1.657,0-3,1.343-3,3S19.343,19,21,19z M9,13L9,13H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h6c1.657,0,3-1.343,3-3S10.657,13,9,13z M61,45H21c-1.657,0-3,1.343-3,3s1.343,3,3,3l0,0h40\r\n\t\t\t\tc1.657,0,3-1.343,3-3S62.657,45,61,45z"},"children":[]}]}]}]}]}]}]}]};exports.list_2=list_2;var loading={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"LOADING"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M17,44c-0.828,0-1.578,0.336-2.121,0.879l-6,6C8.336,51.422,8,52.172,8,53\r\n\t\t\tc0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879l6-6C19.664,48.578,20,47.828,20,47C20,45.343,18.657,44,17,44z M14,32\r\n\t\t\tc0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h8C12.657,35,14,33.657,14,32z M13.121,8.879\r\n\t\t\tC12.578,8.336,11.828,8,11,8c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l6,6C15.422,19.664,16.172,20,17,20\r\n\t\t\tc1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L13.121,8.879z M47,20c0.828,0,1.578-0.336,2.121-0.879l6-6\r\n\t\t\tC55.664,12.578,56,11.828,56,11c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879l-6,6C44.336,15.422,44,16.172,44,17\r\n\t\t\tC44,18.657,45.343,20,47,20z M49.121,44.879C48.579,44.336,47.828,44,47,44c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121\r\n\t\t\tl6,6C51.422,55.664,52.172,56,53,56c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L49.121,44.879z M32,50\r\n\t\t\tc-1.657,0-3,1.343-3,3v8c0,1.657,1.343,3,3,3s3-1.343,3-3v-8C35,51.343,33.657,50,32,50z M61,29h-8c-1.657,0-3,1.343-3,3\r\n\t\t\tc0,1.657,1.343,3,3,3h8c1.657,0,3-1.343,3-3C64,30.343,62.657,29,61,29z M32,0c-1.657,0-3,1.343-3,3v8c0,1.657,1.343,3,3,3\r\n\t\t\ts3-1.343,3-3V3C35,1.343,33.657,0,32,0z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M17,44c-0.828,0-1.578,0.336-2.121,0.879l-6,6C8.336,51.422,8,52.172,8,53\r\n\t\t\tc0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879l6-6C19.664,48.578,20,47.828,20,47C20,45.343,18.657,44,17,44z M14,32\r\n\t\t\tc0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h8C12.657,35,14,33.657,14,32z M13.121,8.879\r\n\t\t\tC12.578,8.336,11.828,8,11,8c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l6,6C15.422,19.664,16.172,20,17,20\r\n\t\t\tc1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L13.121,8.879z M47,20c0.828,0,1.578-0.336,2.121-0.879l6-6\r\n\t\t\tC55.664,12.578,56,11.828,56,11c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879l-6,6C44.336,15.422,44,16.172,44,17\r\n\t\t\tC44,18.657,45.343,20,47,20z M49.121,44.879C48.579,44.336,47.828,44,47,44c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121\r\n\t\t\tl6,6C51.422,55.664,52.172,56,53,56c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L49.121,44.879z M32,50\r\n\t\t\tc-1.657,0-3,1.343-3,3v8c0,1.657,1.343,3,3,3s3-1.343,3-3v-8C35,51.343,33.657,50,32,50z M61,29h-8c-1.657,0-3,1.343-3,3\r\n\t\t\tc0,1.657,1.343,3,3,3h8c1.657,0,3-1.343,3-3C64,30.343,62.657,29,61,29z M32,0c-1.657,0-3,1.343-3,3v8c0,1.657,1.343,3,3,3\r\n\t\t\ts3-1.343,3-3V3C35,1.343,33.657,0,32,0z"},"children":[]}]}]}]}]}]};exports.loading=loading;var location={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"LOCATION"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M64,3c0-1.657-1.343-3-3-3c-0.375,0-0.73,0.077-1.061,0.202l-0.003-0.007l-58,22\r\n\t\t\tl0.003,0.008C0.808,22.632,0,23.718,0,25c0,1.414,0.981,2.592,2.298,2.909l-0.002,0.007l27.218,6.57l6.57,27.218l0.007-0.002\r\n\t\t\tC36.409,63.019,37.586,64,39,64c1.282,0,2.368-0.808,2.797-1.939l0.008,0.003l22-58l-0.019-0.007C63.913,3.726,64,3.376,64,3z\r\n\t\t\t M39.638,50.859l-4.722-19.562l-0.007,0.002c-0.263-1.09-1.119-1.941-2.207-2.205l0.002-0.01l-19.562-4.722L55.831,8.169\r\n\t\t\tL39.638,50.859z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M64,3c0-1.657-1.343-3-3-3c-0.375,0-0.73,0.077-1.061,0.202l-0.003-0.007l-58,22\r\n\t\t\tl0.003,0.008C0.808,22.632,0,23.718,0,25c0,1.414,0.981,2.592,2.298,2.909l-0.002,0.007l27.218,6.57l6.57,27.218l0.007-0.002\r\n\t\t\tC36.409,63.019,37.586,64,39,64c1.282,0,2.368-0.808,2.797-1.939l0.008,0.003l22-58l-0.019-0.007C63.913,3.726,64,3.376,64,3z\r\n\t\t\t M39.638,50.859l-4.722-19.562l-0.007,0.002c-0.263-1.09-1.119-1.941-2.207-2.205l0.002-0.01l-19.562-4.722L55.831,8.169\r\n\t\t\tL39.638,50.859z"},"children":[]}]}]}]}]}]};exports.location=location;var lock={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"LOCK_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"LOCK"},"children":[{"name":"g","attribs":{"id":"LOCK"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M55,32h-5V18c0-9.941-8.059-18-18-18c-9.941,0-18,8.059-18,18v14H9c-1.657,0-3,1.343-3,3v26c0,1.657,1.343,3,3,3h46\r\n\t\t\t\tc1.657,0,3-1.343,3-3V35C58,33.343,56.657,32,55,32z M35,49.168V55c0,1.657-1.343,3-3,3s-3-1.343-3-3v-5.832\r\n\t\t\t\tc-1.786-1.039-3-2.953-3-5.168c0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6C38,46.215,36.786,48.129,35,49.168z M44,32H20V18\r\n\t\t\t\tc0-6.627,5.373-12,12-12s12,5.373,12,12V32z"},"children":[{"name":"path","attribs":{"d":"M55,32h-5V18c0-9.941-8.059-18-18-18c-9.941,0-18,8.059-18,18v14H9c-1.657,0-3,1.343-3,3v26c0,1.657,1.343,3,3,3h46\r\n\t\t\t\tc1.657,0,3-1.343,3-3V35C58,33.343,56.657,32,55,32z M35,49.168V55c0,1.657-1.343,3-3,3s-3-1.343-3-3v-5.832\r\n\t\t\t\tc-1.786-1.039-3-2.953-3-5.168c0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6C38,46.215,36.786,48.129,35,49.168z M44,32H20V18\r\n\t\t\t\tc0-6.627,5.373-12,12-12s12,5.373,12,12V32z"},"children":[]}]}]}]}]}]}]}]};exports.lock=lock;var login={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"LOGIN_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"LOGIN"},"children":[{"name":"g","attribs":{"id":"LOGIN"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M39.007,34.23C39.617,33.682,40,32.885,40,32s-0.384-1.681-0.993-2.23l0,0l-10-9l0,0C28.475,20.292,27.772,20,27,20\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.885,0.383,1.681,0.993,2.23l0,0L29.182,29H11c-1.657,0-3,1.343-3,3s1.343,3,3,3h18.182l-4.189,3.77\r\n\t\t\t\tl0,0C24.384,39.32,24,40.115,24,41c0,1.657,1.343,3,3,3c0.772,0,1.475-0.292,2.007-0.77l0,0L39.007,34.23L39.007,34.23z\r\n\t\t\t\t M56,31.932V8.935c0-1.657-1.343-3-3-3H38c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12v40H38c-1.657,0-3,1.342-3,3\r\n\t\t\t\tc0,1.656,1.343,3,3,3h15c1.657,0,3-1.344,3-3V31.937c0-0.001,0-0.002,0-0.003C56,31.934,56,31.933,56,31.932z"},"children":[{"name":"path","attribs":{"d":"M39.007,34.23C39.617,33.682,40,32.885,40,32s-0.384-1.681-0.993-2.23l0,0l-10-9l0,0C28.475,20.292,27.772,20,27,20\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.885,0.383,1.681,0.993,2.23l0,0L29.182,29H11c-1.657,0-3,1.343-3,3s1.343,3,3,3h18.182l-4.189,3.77\r\n\t\t\t\tl0,0C24.384,39.32,24,40.115,24,41c0,1.657,1.343,3,3,3c0.772,0,1.475-0.292,2.007-0.77l0,0L39.007,34.23L39.007,34.23z\r\n\t\t\t\t M56,31.932V8.935c0-1.657-1.343-3-3-3H38c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12v40H38c-1.657,0-3,1.342-3,3\r\n\t\t\t\tc0,1.656,1.343,3,3,3h15c1.657,0,3-1.344,3-3V31.937c0-0.001,0-0.002,0-0.003C56,31.934,56,31.933,56,31.932z"},"children":[]}]}]}]}]}]}]}]};exports.login=login;var logout={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"LOGOUT_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"LOGOUT"},"children":[{"name":"g","attribs":{"id":"LOGOUT"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M56,32c0-0.885-0.383-1.681-0.993-2.23l0,0l-10-9l0,0C44.475,20.292,43.771,20,43,20c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.885,0.384,1.681,0.993,2.23l0,0L45.182,29H27l0,0c-1.657,0-3,1.343-3,3s1.343,3,3,3l0,0h18.182l-4.188,3.77l0,0\r\n\t\t\t\tC40.384,39.32,40,40.115,40,41c0,1.657,1.343,3,3,3c0.771,0,1.475-0.292,2.007-0.77l0,0l10-9l0,0C55.617,33.682,56,32.885,56,32z\r\n\t\t\t\t M26,52H14V12h12c1.657,0,3-1.343,3-3s-1.343-3-3-3H11C9.343,6,8,7.343,8,9v46c0,1.657,1.343,3,3,3h15c1.657,0,3-1.343,3-3\r\n\t\t\t\tS27.657,52,26,52z"},"children":[{"name":"path","attribs":{"d":"M56,32c0-0.885-0.383-1.681-0.993-2.23l0,0l-10-9l0,0C44.475,20.292,43.771,20,43,20c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.885,0.384,1.681,0.993,2.23l0,0L45.182,29H27l0,0c-1.657,0-3,1.343-3,3s1.343,3,3,3l0,0h18.182l-4.188,3.77l0,0\r\n\t\t\t\tC40.384,39.32,40,40.115,40,41c0,1.657,1.343,3,3,3c0.771,0,1.475-0.292,2.007-0.77l0,0l10-9l0,0C55.617,33.682,56,32.885,56,32z\r\n\t\t\t\t M26,52H14V12h12c1.657,0,3-1.343,3-3s-1.343-3-3-3H11C9.343,6,8,7.343,8,9v46c0,1.657,1.343,3,3,3h15c1.657,0,3-1.343,3-3\r\n\t\t\t\tS27.657,52,26,52z"},"children":[]}]}]}]}]}]}]}]};exports.logout=logout;var macbook={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"MACBOOK_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MACBOOK"},"children":[{"name":"g","attribs":{"id":"MACBOOK"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M58,44V15c0-1.657-1.343-3-3-3H9c-1.657,0-3,1.343-3,3v29H0v5c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3v-5H58z M39,49\r\n\t\t\t\tH25v-2h14V49z M54,42H10V16h44V42z"},"children":[{"name":"path","attribs":{"d":"M58,44V15c0-1.657-1.343-3-3-3H9c-1.657,0-3,1.343-3,3v29H0v5c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3v-5H58z M39,49\r\n\t\t\t\tH25v-2h14V49z M54,42H10V16h44V42z"},"children":[]}]}]}]}]}]}]}]};exports.macbook=macbook;var magnifying_glass={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"MAGNIFYING_GLASS_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MAGNIFYING_GLASS"},"children":[{"name":"g","attribs":{"id":"MAGNIFYING_GLASS"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M62.243,53.758L44.658,36.173C46.768,32.602,48,28.449,48,24C48,10.745,37.255,0,24,0S0,10.745,0,24s10.745,24,24,24\r\n\t\t\t\tc4.449,0,8.602-1.232,12.173-3.342l17.584,17.584C54.843,63.329,56.343,64,58,64c3.314,0,6-2.686,6-6\r\n\t\t\t\tC64,56.343,63.328,54.843,62.243,53.758z M24,42c-9.941,0-18-8.059-18-18c0-9.941,8.059-18,18-18c9.941,0,18,8.059,18,18\r\n\t\t\t\tC42,33.941,33.941,42,24,42z"},"children":[{"name":"path","attribs":{"d":"M62.243,53.758L44.658,36.173C46.768,32.602,48,28.449,48,24C48,10.745,37.255,0,24,0S0,10.745,0,24s10.745,24,24,24\r\n\t\t\t\tc4.449,0,8.602-1.232,12.173-3.342l17.584,17.584C54.843,63.329,56.343,64,58,64c3.314,0,6-2.686,6-6\r\n\t\t\t\tC64,56.343,63.328,54.843,62.243,53.758z M24,42c-9.941,0-18-8.059-18-18c0-9.941,8.059-18,18-18c9.941,0,18,8.059,18,18\r\n\t\t\t\tC42,33.941,33.941,42,24,42z"},"children":[]}]}]}]}]}]}]}]};exports.magnifying_glass=magnifying_glass;var magnifying_glass_add={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"MAGNIFYING_GLASS__x2F__ADD_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MAGNIFYING_GLASS__x2F__ADD"},"children":[{"name":"g","attribs":{"id":"MAGNIFYING_GLASS__x2F__ADD"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M62.243,53.758L44.658,36.173C46.768,32.602,48,28.449,48,24C48,10.745,37.255,0,24,0S0,10.745,0,24s10.745,24,24,24\r\n\t\t\t\tc4.449,0,8.602-1.232,12.173-3.342l17.585,17.584C54.843,63.329,56.343,64,58,64c3.314,0,6-2.686,6-6\r\n\t\t\t\tC64,56.343,63.328,54.843,62.243,53.758z M24,42c-9.941,0-18-8.059-18-18c0-9.941,8.059-18,18-18c9.941,0,18,8.059,18,18\r\n\t\t\t\tC42,33.941,33.941,42,24,42z M34,21h-7v-7c0-1.657-1.343-3-3-3s-3,1.343-3,3v7h-7c-1.657,0-3,1.343-3,3s1.343,3,3,3h7v7\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3v-7h7c1.657,0,3-1.343,3-3C37,22.344,35.657,21,34,21z"},"children":[{"name":"path","attribs":{"d":"M62.243,53.758L44.658,36.173C46.768,32.602,48,28.449,48,24C48,10.745,37.255,0,24,0S0,10.745,0,24s10.745,24,24,24\r\n\t\t\t\tc4.449,0,8.602-1.232,12.173-3.342l17.585,17.584C54.843,63.329,56.343,64,58,64c3.314,0,6-2.686,6-6\r\n\t\t\t\tC64,56.343,63.328,54.843,62.243,53.758z M24,42c-9.941,0-18-8.059-18-18c0-9.941,8.059-18,18-18c9.941,0,18,8.059,18,18\r\n\t\t\t\tC42,33.941,33.941,42,24,42z M34,21h-7v-7c0-1.657-1.343-3-3-3s-3,1.343-3,3v7h-7c-1.657,0-3,1.343-3,3s1.343,3,3,3h7v7\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3v-7h7c1.657,0,3-1.343,3-3C37,22.344,35.657,21,34,21z"},"children":[]}]}]}]}]}]}]}]};exports.magnifying_glass_add=magnifying_glass_add;var magnifying_glass_remove={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"MAGNIFYING_GLASS__x2F__REMOVE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MAGNIFYING_GLASS__x2F__REMOVE"},"children":[{"name":"g","attribs":{"id":"MAGNIFYING_GLASS__x2F__REMOVE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M62.243,53.758L44.658,36.173C46.768,32.602,48,28.449,48,24C48,10.745,37.255,0,24,0S0,10.745,0,24s10.745,24,24,24\r\n\t\t\t\tc4.449,0,8.602-1.232,12.173-3.342l17.585,17.584C54.843,63.329,56.343,64,58,64c3.314,0,6-2.686,6-6\r\n\t\t\t\tC64,56.343,63.328,54.843,62.243,53.758z M24,42c-9.941,0-18-8.059-18-18c0-9.941,8.059-18,18-18c9.941,0,18,8.059,18,18\r\n\t\t\t\tC42,33.941,33.941,42,24,42z M34,21H14c-1.657,0-3,1.343-3,3s1.343,3,3,3h20c1.657,0,3-1.343,3-3C37,22.344,35.657,21,34,21z"},"children":[{"name":"path","attribs":{"d":"M62.243,53.758L44.658,36.173C46.768,32.602,48,28.449,48,24C48,10.745,37.255,0,24,0S0,10.745,0,24s10.745,24,24,24\r\n\t\t\t\tc4.449,0,8.602-1.232,12.173-3.342l17.585,17.584C54.843,63.329,56.343,64,58,64c3.314,0,6-2.686,6-6\r\n\t\t\t\tC64,56.343,63.328,54.843,62.243,53.758z M24,42c-9.941,0-18-8.059-18-18c0-9.941,8.059-18,18-18c9.941,0,18,8.059,18,18\r\n\t\t\t\tC42,33.941,33.941,42,24,42z M34,21H14c-1.657,0-3,1.343-3,3s1.343,3,3,3h20c1.657,0,3-1.343,3-3C37,22.344,35.657,21,34,21z"},"children":[]}]}]}]}]}]}]}]};exports.magnifying_glass_remove=magnifying_glass_remove;var mail={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"MAIL_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MAIL"},"children":[{"name":"g","attribs":{"id":"MAIL"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M63.002,10.78C62.471,10.3,61.773,10,61,10H3c-0.773,0-1.47,0.3-2.002,0.78L32,35L63.002,10.78z M0.894,10.866\r\n\t\t\t\tC0.343,11.41,0,12.165,0,13v38c0,0.789,0.311,1.501,0.809,2.037l19.569-23.296L0.894,10.866z M32,41l-8.136-7.881L0.943,53.175\r\n\t\t\t\tC1.481,53.684,2.202,54,3,54h58c0.798,0,1.52-0.316,2.057-0.825l-22.92-20.056L32,41z M63.105,10.866L43.622,29.741\r\n\t\t\t\tl19.569,23.296C63.689,52.502,64,51.789,64,51V13C64,12.165,63.657,11.41,63.105,10.866z"},"children":[{"name":"path","attribs":{"d":"M63.002,10.78C62.471,10.3,61.773,10,61,10H3c-0.773,0-1.47,0.3-2.002,0.78L32,35L63.002,10.78z M0.894,10.866\r\n\t\t\t\tC0.343,11.41,0,12.165,0,13v38c0,0.789,0.311,1.501,0.809,2.037l19.569-23.296L0.894,10.866z M32,41l-8.136-7.881L0.943,53.175\r\n\t\t\t\tC1.481,53.684,2.202,54,3,54h58c0.798,0,1.52-0.316,2.057-0.825l-22.92-20.056L32,41z M63.105,10.866L43.622,29.741\r\n\t\t\t\tl19.569,23.296C63.689,52.502,64,51.789,64,51V13C64,12.165,63.657,11.41,63.105,10.866z"},"children":[]}]}]}]}]}]}]}]};exports.mail=mail;var mail_incoming={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"MAIL__x2F__INCOMING_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MAIL__x2F__INCOMING"},"children":[{"name":"g","attribs":{"id":"MAIL__x2F__INCOMING"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M29.879,29.122C30.422,29.664,31.172,30,32,30c0.829,0,1.578-0.336,2.121-0.879l7-7C41.664,21.579,42,20.829,42,20\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L35,19.757V6c0-1.657-1.343-3-3-3s-3,1.343-3,3v13.757l-1.879-1.879\r\n\t\t\t\tC26.578,17.336,25.828,17,25,17c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L29.879,29.122z M63.002,17.78\r\n\t\t\t\tC62.471,17.3,61.773,17,61,17H44.168C44.684,17.886,45,18.902,45,20c0,1.657-0.672,3.157-1.757,4.243l-7,7\r\n\t\t\t\tC35.157,32.328,33.657,33,32,33s-3.157-0.672-4.243-1.757l-7-7C19.672,23.157,19,21.657,19,20c0-1.098,0.317-2.114,0.832-3H3\r\n\t\t\t\tc-0.773,0-1.47,0.3-2.002,0.78L32,42L63.002,17.78z M63.105,17.866L43.622,36.741l19.569,23.296C63.689,59.502,64,58.789,64,58\r\n\t\t\t\tV20C64,19.165,63.657,18.41,63.105,17.866z M0.894,17.866C0.343,18.41,0,19.165,0,20v38c0,0.789,0.311,1.501,0.809,2.037\r\n\t\t\t\tl19.569-23.296L0.894,17.866z M32,48l-8.136-7.881L0.943,60.175C1.481,60.684,2.202,61,3,61h58c0.798,0,1.52-0.316,2.057-0.825\r\n\t\t\t\tl-22.92-20.056L32,48z"},"children":[{"name":"path","attribs":{"d":"M29.879,29.122C30.422,29.664,31.172,30,32,30c0.829,0,1.578-0.336,2.121-0.879l7-7C41.664,21.579,42,20.829,42,20\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L35,19.757V6c0-1.657-1.343-3-3-3s-3,1.343-3,3v13.757l-1.879-1.879\r\n\t\t\t\tC26.578,17.336,25.828,17,25,17c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L29.879,29.122z M63.002,17.78\r\n\t\t\t\tC62.471,17.3,61.773,17,61,17H44.168C44.684,17.886,45,18.902,45,20c0,1.657-0.672,3.157-1.757,4.243l-7,7\r\n\t\t\t\tC35.157,32.328,33.657,33,32,33s-3.157-0.672-4.243-1.757l-7-7C19.672,23.157,19,21.657,19,20c0-1.098,0.317-2.114,0.832-3H3\r\n\t\t\t\tc-0.773,0-1.47,0.3-2.002,0.78L32,42L63.002,17.78z M63.105,17.866L43.622,36.741l19.569,23.296C63.689,59.502,64,58.789,64,58\r\n\t\t\t\tV20C64,19.165,63.657,18.41,63.105,17.866z M0.894,17.866C0.343,18.41,0,19.165,0,20v38c0,0.789,0.311,1.501,0.809,2.037\r\n\t\t\t\tl19.569-23.296L0.894,17.866z M32,48l-8.136-7.881L0.943,60.175C1.481,60.684,2.202,61,3,61h58c0.798,0,1.52-0.316,2.057-0.825\r\n\t\t\t\tl-22.92-20.056L32,48z"},"children":[]}]}]}]}]}]}]}]};exports.mail_incoming=mail_incoming;var mail_outgoing={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"MAIL__x2F__OUTGOING_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MAIL__x2F__OUTGOING"},"children":[{"name":"g","attribs":{"id":"MAIL__x2F__OUTGOING"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M0.894,17.866C0.343,18.41,0,19.165,0,20v38c0,0.789,0.311,1.501,0.809,2.037l19.569-23.296L0.894,17.866z M25,16\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L29,13.243V27c0,1.657,1.343,3,3,3s3-1.343,3-3V13.243l1.879,1.879\r\n\t\t\t\tC37.422,15.664,38.172,16,39,16c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121l-7-7C33.578,3.336,32.828,3,32,3\r\n\t\t\t\ts-1.578,0.336-2.121,0.879l-7,7C22.336,11.422,22,12.172,22,13C22,14.657,23.343,16,25,16z M63.002,17.78\r\n\t\t\t\tC62.471,17.3,61.773,17,61,17H43.443c-1.098,1.219-2.674,2-4.443,2c-0.344,0-0.673-0.053-1-0.11V27c0,3.314-2.686,6-6,6\r\n\t\t\t\tc-3.314,0-6-2.686-6-6v-8.11C25.673,18.947,25.344,19,25,19c-1.77,0-3.345-0.781-4.443-2H3c-0.773,0-1.47,0.3-2.002,0.78L32,42\r\n\t\t\t\tL63.002,17.78z M63.105,17.866L43.622,36.741l19.569,23.296C63.689,59.502,64,58.789,64,58V20\r\n\t\t\t\tC64,19.165,63.657,18.41,63.105,17.866z M32,48l-8.136-7.881L0.943,60.175C1.481,60.684,2.202,61,3,61h58\r\n\t\t\t\tc0.798,0,1.52-0.316,2.057-0.825l-22.92-20.056L32,48z"},"children":[{"name":"path","attribs":{"d":"M0.894,17.866C0.343,18.41,0,19.165,0,20v38c0,0.789,0.311,1.501,0.809,2.037l19.569-23.296L0.894,17.866z M25,16\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L29,13.243V27c0,1.657,1.343,3,3,3s3-1.343,3-3V13.243l1.879,1.879\r\n\t\t\t\tC37.422,15.664,38.172,16,39,16c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121l-7-7C33.578,3.336,32.828,3,32,3\r\n\t\t\t\ts-1.578,0.336-2.121,0.879l-7,7C22.336,11.422,22,12.172,22,13C22,14.657,23.343,16,25,16z M63.002,17.78\r\n\t\t\t\tC62.471,17.3,61.773,17,61,17H43.443c-1.098,1.219-2.674,2-4.443,2c-0.344,0-0.673-0.053-1-0.11V27c0,3.314-2.686,6-6,6\r\n\t\t\t\tc-3.314,0-6-2.686-6-6v-8.11C25.673,18.947,25.344,19,25,19c-1.77,0-3.345-0.781-4.443-2H3c-0.773,0-1.47,0.3-2.002,0.78L32,42\r\n\t\t\t\tL63.002,17.78z M63.105,17.866L43.622,36.741l19.569,23.296C63.689,59.502,64,58.789,64,58V20\r\n\t\t\t\tC64,19.165,63.657,18.41,63.105,17.866z M32,48l-8.136-7.881L0.943,60.175C1.481,60.684,2.202,61,3,61h58\r\n\t\t\t\tc0.798,0,1.52-0.316,2.057-0.825l-22.92-20.056L32,48z"},"children":[]}]}]}]}]}]}]}]};exports.mail_outgoing=mail_outgoing;var map={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"MAP_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MAP"},"children":[{"name":"g","attribs":{"id":"MAP"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M60.866,15.668L60.866,15.668l-0.024-0.02c-0.072-0.058-0.145-0.117-0.224-0.168L44.867,3.667l-0.001,0.001\r\n\t\t\t\tC44.352,3.256,43.709,3,43,3c-0.495,0-0.956,0.131-1.367,0.344L41.63,3.339L21.251,14.455L6.867,3.667L6.866,3.668\r\n\t\t\t\tC6.352,3.256,5.709,3,5,3C3.343,3,2,4.343,2,6v40c0,1.057,0.548,1.98,1.372,2.514l15.815,11.861C19.692,60.762,20.315,61,21,61\r\n\t\t\t\tc0.528,0,1.018-0.148,1.449-0.389l0.003,0.007l20.272-11.058l14.543,10.905l0.012-0.016C57.766,60.795,58.357,61,59,61\r\n\t\t\t\tc1.657,0,3-1.343,3-3V18C62,17.052,61.552,16.218,60.866,15.668z M18,51.986l-10-7.5V12.017l10,7.5V51.986z M40,44.212l-16,8.728\r\n\t\t\t\tV19.79l16-8.727V44.212z M56,52.018l-10-7.5v-32.5l10,7.5V52.018z"},"children":[{"name":"path","attribs":{"d":"M60.866,15.668L60.866,15.668l-0.024-0.02c-0.072-0.058-0.145-0.117-0.224-0.168L44.867,3.667l-0.001,0.001\r\n\t\t\t\tC44.352,3.256,43.709,3,43,3c-0.495,0-0.956,0.131-1.367,0.344L41.63,3.339L21.251,14.455L6.867,3.667L6.866,3.668\r\n\t\t\t\tC6.352,3.256,5.709,3,5,3C3.343,3,2,4.343,2,6v40c0,1.057,0.548,1.98,1.372,2.514l15.815,11.861C19.692,60.762,20.315,61,21,61\r\n\t\t\t\tc0.528,0,1.018-0.148,1.449-0.389l0.003,0.007l20.272-11.058l14.543,10.905l0.012-0.016C57.766,60.795,58.357,61,59,61\r\n\t\t\t\tc1.657,0,3-1.343,3-3V18C62,17.052,61.552,16.218,60.866,15.668z M18,51.986l-10-7.5V12.017l10,7.5V51.986z M40,44.212l-16,8.728\r\n\t\t\t\tV19.79l16-8.727V44.212z M56,52.018l-10-7.5v-32.5l10,7.5V52.018z"},"children":[]}]}]}]}]}]}]}]};exports.map=map;var map_add={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"MAP__x2F__ADD_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MAP__x2F__ADD"},"children":[{"name":"g","attribs":{"id":"MAP__x2F__ADD"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M50,35c-7.18,0-13,5.82-13,13s5.82,13,13,13s13-5.82,13-13S57.18,35,50,35z M56,51h-3v3c0,1.657-1.343,3-3,3\r\n\t\t\t\ts-3-1.343-3-3v-3h-3c-1.657,0-3-1.343-3-3s1.343-3,3-3h3v-3c0-1.657,1.343-3,3-3s3,1.343,3,3v3h3c1.657,0,3,1.343,3,3\r\n\t\t\t\tS57.657,51,56,51z M34.055,46.909L23,52.939V19.79l16-8.727V36.4c1.693-1.605,3.732-2.846,6-3.592V12.017l10,7.5v13.292\r\n\t\t\t\tc2.268,0.746,4.307,1.986,6,3.592V18c0-0.948-0.448-1.782-1.134-2.332l0.001-0.001l-0.025-0.019\r\n\t\t\t\tc-0.072-0.058-0.145-0.117-0.224-0.168L43.867,3.667l-0.001,0.001C43.352,3.256,42.709,3,42,3c-0.495,0-0.956,0.131-1.367,0.344\r\n\t\t\t\tL40.63,3.339L20.251,14.455L5.867,3.667L5.866,3.668C5.352,3.256,4.709,3,4,3C2.343,3,1,4.343,1,6v40\r\n\t\t\t\tc0,1.057,0.548,1.98,1.372,2.514l15.815,11.861C18.692,60.762,19.315,61,20,61c0.528,0,1.018-0.148,1.449-0.389l0.003,0.007\r\n\t\t\t\tl13.457-7.341C34.331,51.623,34,49.852,34,48C34,47.632,34.031,47.271,34.055,46.909z M17,51.986l-10-7.5V12.017l10,7.5V51.986z"},"children":[{"name":"path","attribs":{"d":"M50,35c-7.18,0-13,5.82-13,13s5.82,13,13,13s13-5.82,13-13S57.18,35,50,35z M56,51h-3v3c0,1.657-1.343,3-3,3\r\n\t\t\t\ts-3-1.343-3-3v-3h-3c-1.657,0-3-1.343-3-3s1.343-3,3-3h3v-3c0-1.657,1.343-3,3-3s3,1.343,3,3v3h3c1.657,0,3,1.343,3,3\r\n\t\t\t\tS57.657,51,56,51z M34.055,46.909L23,52.939V19.79l16-8.727V36.4c1.693-1.605,3.732-2.846,6-3.592V12.017l10,7.5v13.292\r\n\t\t\t\tc2.268,0.746,4.307,1.986,6,3.592V18c0-0.948-0.448-1.782-1.134-2.332l0.001-0.001l-0.025-0.019\r\n\t\t\t\tc-0.072-0.058-0.145-0.117-0.224-0.168L43.867,3.667l-0.001,0.001C43.352,3.256,42.709,3,42,3c-0.495,0-0.956,0.131-1.367,0.344\r\n\t\t\t\tL40.63,3.339L20.251,14.455L5.867,3.667L5.866,3.668C5.352,3.256,4.709,3,4,3C2.343,3,1,4.343,1,6v40\r\n\t\t\t\tc0,1.057,0.548,1.98,1.372,2.514l15.815,11.861C18.692,60.762,19.315,61,20,61c0.528,0,1.018-0.148,1.449-0.389l0.003,0.007\r\n\t\t\t\tl13.457-7.341C34.331,51.623,34,49.852,34,48C34,47.632,34.031,47.271,34.055,46.909z M17,51.986l-10-7.5V12.017l10,7.5V51.986z"},"children":[]}]}]}]}]}]}]}]};exports.map_add=map_add;var map_delete={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"MAP__x2F__DELETE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MAP__x2F__DELETE"},"children":[{"name":"g","attribs":{"id":"MAP__x2F__DELETE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M34.055,46.909L23,52.939V19.79l16-8.727V36.4c1.693-1.605,3.732-2.846,6-3.592V12.017l10,7.5v13.292\r\n\t\t\t\tc2.268,0.746,4.307,1.986,6,3.592V18c0-0.948-0.448-1.782-1.134-2.332l0.001-0.001l-0.025-0.019\r\n\t\t\t\tc-0.074-0.058-0.145-0.117-0.224-0.168L43.867,3.667l-0.001,0.001C43.352,3.256,42.709,3,42,3c-0.495,0-0.956,0.131-1.367,0.344\r\n\t\t\t\tL40.63,3.339L20.251,14.455L5.867,3.667L5.866,3.668C5.352,3.256,4.709,3,4,3C2.343,3,1,4.343,1,6v40\r\n\t\t\t\tc0,1.057,0.548,1.98,1.372,2.514l15.815,11.861C18.692,60.762,19.315,61,20,61c0.529,0,1.018-0.148,1.449-0.389l0.003,0.007\r\n\t\t\t\tl13.457-7.341C34.331,51.623,34,49.852,34,48C34,47.632,34.031,47.271,34.055,46.909z M17,51.986l-10-7.5V12.017l10,7.5V51.986z\r\n\t\t\t\t M50,35c-7.18,0-13,5.82-13,13s5.82,13,13,13s13-5.82,13-13S57.18,35,50,35z M56.121,49.879C56.664,50.422,57,51.172,57,52\r\n\t\t\t\tc0,1.657-1.343,3-3,3c-0.828,0-1.578-0.336-2.121-0.879L50,52.243l-1.879,1.879C47.578,54.664,46.828,55,46,55\r\n\t\t\t\tc-1.657,0-3-1.343-3-3c0-0.829,0.336-1.578,0.879-2.121L45.757,48l-1.879-1.879C43.336,45.578,43,44.829,43,44\r\n\t\t\t\tc0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879L50,43.757l1.879-1.879C52.422,41.336,53.172,41,54,41c1.657,0,3,1.343,3,3\r\n\t\t\t\tc0,0.828-0.336,1.578-0.879,2.121L54.243,48L56.121,49.879z"},"children":[{"name":"path","attribs":{"d":"M34.055,46.909L23,52.939V19.79l16-8.727V36.4c1.693-1.605,3.732-2.846,6-3.592V12.017l10,7.5v13.292\r\n\t\t\t\tc2.268,0.746,4.307,1.986,6,3.592V18c0-0.948-0.448-1.782-1.134-2.332l0.001-0.001l-0.025-0.019\r\n\t\t\t\tc-0.074-0.058-0.145-0.117-0.224-0.168L43.867,3.667l-0.001,0.001C43.352,3.256,42.709,3,42,3c-0.495,0-0.956,0.131-1.367,0.344\r\n\t\t\t\tL40.63,3.339L20.251,14.455L5.867,3.667L5.866,3.668C5.352,3.256,4.709,3,4,3C2.343,3,1,4.343,1,6v40\r\n\t\t\t\tc0,1.057,0.548,1.98,1.372,2.514l15.815,11.861C18.692,60.762,19.315,61,20,61c0.529,0,1.018-0.148,1.449-0.389l0.003,0.007\r\n\t\t\t\tl13.457-7.341C34.331,51.623,34,49.852,34,48C34,47.632,34.031,47.271,34.055,46.909z M17,51.986l-10-7.5V12.017l10,7.5V51.986z\r\n\t\t\t\t M50,35c-7.18,0-13,5.82-13,13s5.82,13,13,13s13-5.82,13-13S57.18,35,50,35z M56.121,49.879C56.664,50.422,57,51.172,57,52\r\n\t\t\t\tc0,1.657-1.343,3-3,3c-0.828,0-1.578-0.336-2.121-0.879L50,52.243l-1.879,1.879C47.578,54.664,46.828,55,46,55\r\n\t\t\t\tc-1.657,0-3-1.343-3-3c0-0.829,0.336-1.578,0.879-2.121L45.757,48l-1.879-1.879C43.336,45.578,43,44.829,43,44\r\n\t\t\t\tc0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879L50,43.757l1.879-1.879C52.422,41.336,53.172,41,54,41c1.657,0,3,1.343,3,3\r\n\t\t\t\tc0,0.828-0.336,1.578-0.879,2.121L54.243,48L56.121,49.879z"},"children":[]}]}]}]}]}]}]}]};exports.map_delete=map_delete;var map_ok={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"MAP__x2F__OK_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MAP__x2F__OK"},"children":[{"name":"g","attribs":{"id":"MAP__x2F__OK"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M50,35c-7.18,0-13,5.82-13,13s5.82,13,13,13s13-5.82,13-13S57.18,35,50,35z M58.121,47.121l-8,8\r\n\t\t\t\tC49.578,55.664,48.828,56,48,56s-1.578-0.336-2.121-0.879l-4-4C41.336,50.578,41,49.828,41,49c0-1.657,1.343-3,3-3\r\n\t\t\t\tc0.828,0,1.578,0.336,2.121,0.879L48,48.757l5.879-5.879C54.422,42.336,55.172,42,56,42c1.657,0,3,1.343,3,3\r\n\t\t\t\tC59,45.829,58.664,46.578,58.121,47.121z M34.055,46.909L23,52.939V19.79l16-8.727V36.4c1.693-1.605,3.732-2.846,6-3.592V12.017\r\n\t\t\t\tl10,7.5v13.292c2.268,0.746,4.307,1.986,6,3.592V18c0-0.948-0.448-1.782-1.134-2.332l0.001-0.001l-0.025-0.019\r\n\t\t\t\tc-0.074-0.058-0.145-0.117-0.224-0.168L43.867,3.667l-0.001,0.001C43.352,3.256,42.709,3,42,3c-0.495,0-0.955,0.131-1.367,0.344\r\n\t\t\t\tL40.63,3.339L20.251,14.455L5.867,3.667L5.866,3.668C5.352,3.256,4.709,3,4,3C2.343,3,1,4.343,1,6v40\r\n\t\t\t\tc0,1.057,0.548,1.98,1.372,2.514l15.815,11.861C18.692,60.762,19.315,61,20,61c0.528,0,1.018-0.148,1.449-0.389l0.004,0.007\r\n\t\t\t\tl13.457-7.341C34.331,51.623,34,49.852,34,48C34,47.632,34.031,47.271,34.055,46.909z M17,51.986l-10-7.5V12.017l10,7.5V51.986z"},"children":[{"name":"path","attribs":{"d":"M50,35c-7.18,0-13,5.82-13,13s5.82,13,13,13s13-5.82,13-13S57.18,35,50,35z M58.121,47.121l-8,8\r\n\t\t\t\tC49.578,55.664,48.828,56,48,56s-1.578-0.336-2.121-0.879l-4-4C41.336,50.578,41,49.828,41,49c0-1.657,1.343-3,3-3\r\n\t\t\t\tc0.828,0,1.578,0.336,2.121,0.879L48,48.757l5.879-5.879C54.422,42.336,55.172,42,56,42c1.657,0,3,1.343,3,3\r\n\t\t\t\tC59,45.829,58.664,46.578,58.121,47.121z M34.055,46.909L23,52.939V19.79l16-8.727V36.4c1.693-1.605,3.732-2.846,6-3.592V12.017\r\n\t\t\t\tl10,7.5v13.292c2.268,0.746,4.307,1.986,6,3.592V18c0-0.948-0.448-1.782-1.134-2.332l0.001-0.001l-0.025-0.019\r\n\t\t\t\tc-0.074-0.058-0.145-0.117-0.224-0.168L43.867,3.667l-0.001,0.001C43.352,3.256,42.709,3,42,3c-0.495,0-0.955,0.131-1.367,0.344\r\n\t\t\t\tL40.63,3.339L20.251,14.455L5.867,3.667L5.866,3.668C5.352,3.256,4.709,3,4,3C2.343,3,1,4.343,1,6v40\r\n\t\t\t\tc0,1.057,0.548,1.98,1.372,2.514l15.815,11.861C18.692,60.762,19.315,61,20,61c0.528,0,1.018-0.148,1.449-0.389l0.004,0.007\r\n\t\t\t\tl13.457-7.341C34.331,51.623,34,49.852,34,48C34,47.632,34.031,47.271,34.055,46.909z M17,51.986l-10-7.5V12.017l10,7.5V51.986z"},"children":[]}]}]}]}]}]}]}]};exports.map_ok=map_ok;var map_remove={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"MAP__x2F__REMOVE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MAP__x2F__REMOVE"},"children":[{"name":"g","attribs":{"id":"MAP__x2F__REMOVE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M50,35c-7.18,0-13,5.82-13,13s5.82,13,13,13s13-5.82,13-13S57.18,35,50,35z M56,51H44c-1.657,0-3-1.343-3-3s1.343-3,3-3\r\n\t\t\t\th12c1.657,0,3,1.343,3,3S57.657,51,56,51z M34.055,46.909L23,52.939V19.79l16-8.727V36.4c1.693-1.605,3.732-2.846,6-3.592V12.017\r\n\t\t\t\tl10,7.5v13.292c2.268,0.746,4.307,1.986,6,3.592V18c0-0.948-0.448-1.782-1.134-2.332l0.001-0.001l-0.025-0.019\r\n\t\t\t\tc-0.074-0.058-0.145-0.117-0.224-0.168L43.867,3.667l-0.001,0.001C43.352,3.256,42.709,3,42,3c-0.495,0-0.956,0.131-1.367,0.344\r\n\t\t\t\tL40.63,3.339L20.251,14.455L5.867,3.667L5.866,3.668C5.352,3.256,4.709,3,4,3C2.343,3,1,4.343,1,6v40\r\n\t\t\t\tc0,1.057,0.548,1.98,1.372,2.514l15.815,11.861C18.692,60.762,19.315,61,20,61c0.528,0,1.018-0.148,1.449-0.389l0.003,0.007\r\n\t\t\t\tl13.457-7.341C34.331,51.623,34,49.852,34,48C34,47.632,34.031,47.271,34.055,46.909z M17,51.986l-10-7.5V12.017l10,7.5V51.986z"},"children":[{"name":"path","attribs":{"d":"M50,35c-7.18,0-13,5.82-13,13s5.82,13,13,13s13-5.82,13-13S57.18,35,50,35z M56,51H44c-1.657,0-3-1.343-3-3s1.343-3,3-3\r\n\t\t\t\th12c1.657,0,3,1.343,3,3S57.657,51,56,51z M34.055,46.909L23,52.939V19.79l16-8.727V36.4c1.693-1.605,3.732-2.846,6-3.592V12.017\r\n\t\t\t\tl10,7.5v13.292c2.268,0.746,4.307,1.986,6,3.592V18c0-0.948-0.448-1.782-1.134-2.332l0.001-0.001l-0.025-0.019\r\n\t\t\t\tc-0.074-0.058-0.145-0.117-0.224-0.168L43.867,3.667l-0.001,0.001C43.352,3.256,42.709,3,42,3c-0.495,0-0.956,0.131-1.367,0.344\r\n\t\t\t\tL40.63,3.339L20.251,14.455L5.867,3.667L5.866,3.668C5.352,3.256,4.709,3,4,3C2.343,3,1,4.343,1,6v40\r\n\t\t\t\tc0,1.057,0.548,1.98,1.372,2.514l15.815,11.861C18.692,60.762,19.315,61,20,61c0.528,0,1.018-0.148,1.449-0.389l0.003,0.007\r\n\t\t\t\tl13.457-7.341C34.331,51.623,34,49.852,34,48C34,47.632,34.031,47.271,34.055,46.909z M17,51.986l-10-7.5V12.017l10,7.5V51.986z"},"children":[]}]}]}]}]}]}]}]};exports.map_remove=map_remove;var microphone={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"MICROPHONE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MICROPHONE"},"children":[{"name":"g","attribs":{"id":"MICROPHONE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M32,40c6.627,0,12-5.373,12-12V12c0-6.627-5.373-12-12-12S20,5.373,20,12v16C20,34.628,25.373,40,32,40z M54,29.023\r\n\t\t\t\tc0-0.005,0-0.01-0.001-0.015C53.999,29.005,54,29.003,54,29c0-1.657-1.343-3-3-3s-3,1.343-3,3l0,0\r\n\t\t\t\tc-0.004,8.835-7.165,15.996-16,16c-8.835-0.004-15.996-7.165-16-16l0,0c0-1.657-1.343-3-3-3s-3,1.343-3,3\r\n\t\t\t\tc0,0.003,0.001,0.005,0.001,0.008C10,29.013,10,29.018,10,29.023c0,11.125,8.274,20.295,19,21.752V58H19c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h26c1.657,0,3-1.343,3-3s-1.343-3-3-3H35v-7.225C45.727,49.318,54,40.148,54,29.023z"},"children":[{"name":"path","attribs":{"d":"M32,40c6.627,0,12-5.373,12-12V12c0-6.627-5.373-12-12-12S20,5.373,20,12v16C20,34.628,25.373,40,32,40z M54,29.023\r\n\t\t\t\tc0-0.005,0-0.01-0.001-0.015C53.999,29.005,54,29.003,54,29c0-1.657-1.343-3-3-3s-3,1.343-3,3l0,0\r\n\t\t\t\tc-0.004,8.835-7.165,15.996-16,16c-8.835-0.004-15.996-7.165-16-16l0,0c0-1.657-1.343-3-3-3s-3,1.343-3,3\r\n\t\t\t\tc0,0.003,0.001,0.005,0.001,0.008C10,29.013,10,29.018,10,29.023c0,11.125,8.274,20.295,19,21.752V58H19c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h26c1.657,0,3-1.343,3-3s-1.343-3-3-3H35v-7.225C45.727,49.318,54,40.148,54,29.023z"},"children":[]}]}]}]}]}]}]}]};exports.microphone=microphone;var microphone_off={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"MICROPHONE__x2F__OFF_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MICROPHONE__x2F__OFF"},"children":[{"name":"g","attribs":{"id":"MICROPHONE__x2F__OFF"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M12.631,39.404l5.051-3.301C16.617,33.961,16.002,31.555,16,29l0,0c0-1.657-1.343-3-3-3s-3,1.343-3,3\r\n\t\t\t\tc0,0.003,0.001,0.005,0.001,0.008C10,29.013,10,29.018,10,29.023C10,32.785,10.964,36.312,12.631,39.404z M44,18.895V12\r\n\t\t\t\tc0-6.627-5.373-12-12-12S20,5.373,20,12v16c0,2.047,0.515,3.973,1.419,5.659L44,18.895z M59.5,15.1c0-0.829-0.672-1.5-1.5-1.5\r\n\t\t\t\tc-0.303,0-0.585,0.091-0.82,0.246v-0.001l-0.018,0.011l0,0L5.079,47.945l0,0C4.67,48.214,4.4,48.675,4.4,49.2\r\n\t\t\t\tc0,0.829,0.672,1.5,1.5,1.5c0.303,0,0.585-0.091,0.821-0.246v0.001l0.017-0.012l0,0L58.82,16.355v-0.001\r\n\t\t\t\tC59.23,16.087,59.5,15.625,59.5,15.1z M43.859,29.739l-15.025,9.825C29.844,39.841,30.902,40,32,40\r\n\t\t\t\tC38.035,40,43.016,35.54,43.859,29.739z M51,26c-1.657,0-3,1.343-3,3l0,0c-0.004,8.092-6.018,14.759-13.816,15.829\r\n\t\t\t\tc-0.24,0.034-0.48,0.062-0.723,0.086c-0.441,0.04-0.885,0.074-1.336,0.078v0.002c-0.04,0-0.078,0.005-0.118,0.005\r\n\t\t\t\tc-2.959,0-5.72-0.816-8.098-2.216l-5.431,3.551c2.987,2.326,6.586,3.906,10.521,4.44V58H19c-1.657,0-3,1.343-3,3s1.343,3,3,3h26\r\n\t\t\t\tc1.657,0,3-1.343,3-3s-1.343-3-3-3H35v-7.225c10.727-1.457,19-10.627,19-21.752c0-0.005,0-0.01-0.001-0.015\r\n\t\t\t\tC53.999,29.005,54,29.003,54,29C54,27.343,52.657,26,51,26z"},"children":[{"name":"path","attribs":{"d":"M12.631,39.404l5.051-3.301C16.617,33.961,16.002,31.555,16,29l0,0c0-1.657-1.343-3-3-3s-3,1.343-3,3\r\n\t\t\t\tc0,0.003,0.001,0.005,0.001,0.008C10,29.013,10,29.018,10,29.023C10,32.785,10.964,36.312,12.631,39.404z M44,18.895V12\r\n\t\t\t\tc0-6.627-5.373-12-12-12S20,5.373,20,12v16c0,2.047,0.515,3.973,1.419,5.659L44,18.895z M59.5,15.1c0-0.829-0.672-1.5-1.5-1.5\r\n\t\t\t\tc-0.303,0-0.585,0.091-0.82,0.246v-0.001l-0.018,0.011l0,0L5.079,47.945l0,0C4.67,48.214,4.4,48.675,4.4,49.2\r\n\t\t\t\tc0,0.829,0.672,1.5,1.5,1.5c0.303,0,0.585-0.091,0.821-0.246v0.001l0.017-0.012l0,0L58.82,16.355v-0.001\r\n\t\t\t\tC59.23,16.087,59.5,15.625,59.5,15.1z M43.859,29.739l-15.025,9.825C29.844,39.841,30.902,40,32,40\r\n\t\t\t\tC38.035,40,43.016,35.54,43.859,29.739z M51,26c-1.657,0-3,1.343-3,3l0,0c-0.004,8.092-6.018,14.759-13.816,15.829\r\n\t\t\t\tc-0.24,0.034-0.48,0.062-0.723,0.086c-0.441,0.04-0.885,0.074-1.336,0.078v0.002c-0.04,0-0.078,0.005-0.118,0.005\r\n\t\t\t\tc-2.959,0-5.72-0.816-8.098-2.216l-5.431,3.551c2.987,2.326,6.586,3.906,10.521,4.44V58H19c-1.657,0-3,1.343-3,3s1.343,3,3,3h26\r\n\t\t\t\tc1.657,0,3-1.343,3-3s-1.343-3-3-3H35v-7.225c10.727-1.457,19-10.627,19-21.752c0-0.005,0-0.01-0.001-0.015\r\n\t\t\t\tC53.999,29.005,54,29.003,54,29C54,27.343,52.657,26,51,26z"},"children":[]}]}]}]}]}]}]}]};exports.microphone_off=microphone_off;var microsoft={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"microsoft_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"microsoft"},"children":[{"name":"g","attribs":{"id":"microsoft"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M26.307,31.796c-2.208-1.219-5.281-2.486-8.648-2.486c-0.383,0-0.764,0.014-1.149,0.049\r\n\t\t\t\tc-3.377,0.302-6.453,1.232-8.613,2.052c-0.638,0.248-1.297,0.518-1.971,0.814L0.002,54.346c4.476-1.945,8.093-2.721,11.133-2.721\r\n\t\t\t\tc5.01,0,8.484,2.084,11.763,4.436c1.217-4.441,5.348-19.635,6.133-22.527C28.143,32.939,27.25,32.344,26.307,31.796z\r\n\t\t\t\t M18.765,23.98c4.802,0.054,8.205,2.119,11.372,4.382c1.213-4.427,4.814-17.723,6.03-22.209V6.136c0,0-4.244-2.737-7.197-3.548\r\n\t\t\t\tc-1.409-0.359-3.003-0.585-4.766-0.585h-0.069c-3.001,0.062-6.598,0.844-11.02,2.788L7.28,26.86\r\n\t\t\t\tc4.543-1.995,8.228-2.88,11.324-2.88H18.765z M52.561,13.559c-6.488,0-10.767-2.974-12.658-4.559l-5.985,22.306\r\n\t\t\t\tc0.017,0.019,0.043,0.035,0.063,0.048c3.291,2.371,7.572,4.287,12.732,4.287c3.412,0,7.204-0.836,11.348-2.94v-0.03\r\n\t\t\t\tc0.01,0,0.021-0.008,0.037-0.014l5.901-21.899C59.641,12.807,55.824,13.559,52.561,13.559z M32.568,36.329l-5.904,22.085\r\n\t\t\t\tc-0.009-0.005,6.904,4.584,12.089,4.584c3.281,0,7.205-0.865,12.114-3.047l5.691-21.43c-4.318,1.666-8.039,2.291-11.185,2.291\r\n\t\t\t\tC38.529,40.812,34.367,37.874,32.568,36.329z"},"children":[{"name":"path","attribs":{"d":"M26.307,31.796c-2.208-1.219-5.281-2.486-8.648-2.486c-0.383,0-0.764,0.014-1.149,0.049\r\n\t\t\t\tc-3.377,0.302-6.453,1.232-8.613,2.052c-0.638,0.248-1.297,0.518-1.971,0.814L0.002,54.346c4.476-1.945,8.093-2.721,11.133-2.721\r\n\t\t\t\tc5.01,0,8.484,2.084,11.763,4.436c1.217-4.441,5.348-19.635,6.133-22.527C28.143,32.939,27.25,32.344,26.307,31.796z\r\n\t\t\t\t M18.765,23.98c4.802,0.054,8.205,2.119,11.372,4.382c1.213-4.427,4.814-17.723,6.03-22.209V6.136c0,0-4.244-2.737-7.197-3.548\r\n\t\t\t\tc-1.409-0.359-3.003-0.585-4.766-0.585h-0.069c-3.001,0.062-6.598,0.844-11.02,2.788L7.28,26.86\r\n\t\t\t\tc4.543-1.995,8.228-2.88,11.324-2.88H18.765z M52.561,13.559c-6.488,0-10.767-2.974-12.658-4.559l-5.985,22.306\r\n\t\t\t\tc0.017,0.019,0.043,0.035,0.063,0.048c3.291,2.371,7.572,4.287,12.732,4.287c3.412,0,7.204-0.836,11.348-2.94v-0.03\r\n\t\t\t\tc0.01,0,0.021-0.008,0.037-0.014l5.901-21.899C59.641,12.807,55.824,13.559,52.561,13.559z M32.568,36.329l-5.904,22.085\r\n\t\t\t\tc-0.009-0.005,6.904,4.584,12.089,4.584c3.281,0,7.205-0.865,12.114-3.047l5.691-21.43c-4.318,1.666-8.039,2.291-11.185,2.291\r\n\t\t\t\tC38.529,40.812,34.367,37.874,32.568,36.329z"},"children":[]}]}]}]}]}]}]}]};exports.microsoft=microsoft;var minus={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"MINUS_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MINUS"},"children":[{"name":"g","attribs":{"id":"MINUS"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M52,29H12c-1.657,0-3,1.343-3,3s1.343,3,3,3h40c1.657,0,3-1.343,3-3S53.657,29,52,29z"},"children":[{"name":"path","attribs":{"d":"M52,29H12c-1.657,0-3,1.343-3,3s1.343,3,3,3h40c1.657,0,3-1.343,3-3S53.657,29,52,29z"},"children":[]}]}]}]}]}]}]}]};exports.minus=minus;var more={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"MORE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MORE"},"children":[{"name":"g","attribs":{"id":"MORE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M13.001,26C9.687,26,7,28.687,7,32.002c0,3.314,2.687,6.001,6.001,6.001s6.001-2.687,6.001-6.001\r\n\t\t\t\tC19.001,28.687,16.315,26,13.001,26z M51.001,26C47.688,26,45,28.687,45,32.002c0,3.314,2.688,6.001,6.001,6.001\r\n\t\t\t\ts6.001-2.687,6.001-6.001C57.001,28.687,54.314,26,51.001,26z M32.001,26C28.687,26,26,28.687,26,32.002\r\n\t\t\t\tc0,3.314,2.686,6.001,6.001,6.001c3.315,0,6.001-2.687,6.001-6.001C38.001,28.687,35.314,26,32.001,26z"},"children":[{"name":"path","attribs":{"d":"M13.001,26C9.687,26,7,28.687,7,32.002c0,3.314,2.687,6.001,6.001,6.001s6.001-2.687,6.001-6.001\r\n\t\t\t\tC19.001,28.687,16.315,26,13.001,26z M51.001,26C47.688,26,45,28.687,45,32.002c0,3.314,2.688,6.001,6.001,6.001\r\n\t\t\t\ts6.001-2.687,6.001-6.001C57.001,28.687,54.314,26,51.001,26z M32.001,26C28.687,26,26,28.687,26,32.002\r\n\t\t\t\tc0,3.314,2.686,6.001,6.001,6.001c3.315,0,6.001-2.687,6.001-6.001C38.001,28.687,35.314,26,32.001,26z"},"children":[]}]}]}]}]}]}]}]};exports.more=more;var more_2={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"MORE_2_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MORE_2"},"children":[{"name":"g","attribs":{"id":"MORE_2"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M31.998,26c-3.314,0-6.001,2.687-6.001,6.001c0,3.313,2.687,6.001,6.001,6.001c3.314,0,6.002-2.688,6.002-6.001\r\n\t\t\t\tC38,28.687,35.312,26,31.998,26z M31.998,19.001C35.312,19.001,38,16.314,38,13c0-3.313-2.688-6-6.002-6\r\n\t\t\t\tc-3.314,0-6.001,2.686-6.001,6.001C25.997,16.315,28.684,19.001,31.998,19.001z M31.998,45c-3.314,0-6.001,2.688-6.001,6.001\r\n\t\t\t\ts2.687,6.001,6.001,6.001c3.314,0,6.002-2.688,6.002-6.001S35.312,45,31.998,45z"},"children":[{"name":"path","attribs":{"d":"M31.998,26c-3.314,0-6.001,2.687-6.001,6.001c0,3.313,2.687,6.001,6.001,6.001c3.314,0,6.002-2.688,6.002-6.001\r\n\t\t\t\tC38,28.687,35.312,26,31.998,26z M31.998,19.001C35.312,19.001,38,16.314,38,13c0-3.313-2.688-6-6.002-6\r\n\t\t\t\tc-3.314,0-6.001,2.686-6.001,6.001C25.997,16.315,28.684,19.001,31.998,19.001z M31.998,45c-3.314,0-6.001,2.688-6.001,6.001\r\n\t\t\t\ts2.687,6.001,6.001,6.001c3.314,0,6.002-2.688,6.002-6.001S35.312,45,31.998,45z"},"children":[]}]}]}]}]}]}]}]};exports.more_2=more_2;var moustache={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"MOUSTACHE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MOUSTACHE"},"children":[{"name":"g","attribs":{"id":"MOUSTACHE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M63.827,26.719c-1.134-0.288-2.876,4.125-6.966,4.125c-5.254,0-7.725-8.839-15.935-8.839\r\n\t\t\t\tc-6.513,0-8.497,5.067-8.928,5.067s-2.415-5.067-8.927-5.067c-8.208,0-10.681,8.839-15.935,8.839c-4.09,0-5.83-4.413-6.964-4.125\r\n\t\t\t\tc-1.06,0.269,1.955,15.277,16.323,15.277c9.322,0,14.802-7.238,15.503-7.238c0.702,0,6.183,7.238,15.504,7.238\r\n\t\t\t\tC61.872,41.996,64.887,26.988,63.827,26.719z"},"children":[{"name":"path","attribs":{"d":"M63.827,26.719c-1.134-0.288-2.876,4.125-6.966,4.125c-5.254,0-7.725-8.839-15.935-8.839\r\n\t\t\t\tc-6.513,0-8.497,5.067-8.928,5.067s-2.415-5.067-8.927-5.067c-8.208,0-10.681,8.839-15.935,8.839c-4.09,0-5.83-4.413-6.964-4.125\r\n\t\t\t\tc-1.06,0.269,1.955,15.277,16.323,15.277c9.322,0,14.802-7.238,15.503-7.238c0.702,0,6.183,7.238,15.504,7.238\r\n\t\t\t\tC61.872,41.996,64.887,26.988,63.827,26.719z"},"children":[]}]}]}]}]}]}]}]};exports.moustache=moustache;var music={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"MUSIC_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MUSIC"},"children":[{"name":"g","attribs":{"id":"MUSIC"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M60,0L20,9c0,0-3,0.681-3,3v40.66C15.499,52.241,13.802,52,12,52c-6.075,0-11,2.686-11,6s4.925,6,11,6s11-2.686,11-6\r\n\t\t\t\tV26.123l34-7.415V43.66C55.499,43.241,53.802,43,52,43c-6.075,0-11,2.686-11,6s4.925,6,11,6s11-2.686,11-6V3\r\n\t\t\t\tC63,1.343,61.657,0,60,0z"},"children":[{"name":"path","attribs":{"d":"M60,0L20,9c0,0-3,0.681-3,3v40.66C15.499,52.241,13.802,52,12,52c-6.075,0-11,2.686-11,6s4.925,6,11,6s11-2.686,11-6\r\n\t\t\t\tV26.123l34-7.415V43.66C55.499,43.241,53.802,43,52,43c-6.075,0-11,2.686-11,6s4.925,6,11,6s11-2.686,11-6V3\r\n\t\t\t\tC63,1.343,61.657,0,60,0z"},"children":[]}]}]}]}]}]}]}]};exports.music=music;var notepad={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"NOTEPAD_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"NOTEPAD"},"children":[{"name":"g","attribs":{"id":"NOTEPAD"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M32,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C29,10.657,30.343,12,32,12z M47,12\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C44,10.657,45.343,12,47,12z M17,12c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v6C14,10.657,15.343,12,17,12z M58,6h-5v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3\r\n\t\t\t\tc0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6H6C4.343,6,3,7.343,3,9v52\r\n\t\t\t\tc0,1.657,1.343,3,3,3h52c1.657,0,3-1.343,3-3V9C61,7.343,59.657,6,58,6z M50.5,54h-37c-1.381,0-2.5-1.119-2.5-2.5\r\n\t\t\t\ts1.119-2.5,2.5-2.5h37c1.381,0,2.5,1.119,2.5,2.5S51.881,54,50.5,54z M50,42H14c-1.657,0-3-1.343-3-3s1.343-3,3-3h36\r\n\t\t\t\tc1.657,0,3,1.343,3,3S51.657,42,50,42z M50,29H14c-1.657,0-3-1.343-3-3s1.343-3,3-3h36c1.657,0,3,1.343,3,3S51.657,29,50,29z"},"children":[{"name":"path","attribs":{"d":"M32,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C29,10.657,30.343,12,32,12z M47,12\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C44,10.657,45.343,12,47,12z M17,12c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v6C14,10.657,15.343,12,17,12z M58,6h-5v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3\r\n\t\t\t\tc0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6H6C4.343,6,3,7.343,3,9v52\r\n\t\t\t\tc0,1.657,1.343,3,3,3h52c1.657,0,3-1.343,3-3V9C61,7.343,59.657,6,58,6z M50.5,54h-37c-1.381,0-2.5-1.119-2.5-2.5\r\n\t\t\t\ts1.119-2.5,2.5-2.5h37c1.381,0,2.5,1.119,2.5,2.5S51.881,54,50.5,54z M50,42H14c-1.657,0-3-1.343-3-3s1.343-3,3-3h36\r\n\t\t\t\tc1.657,0,3,1.343,3,3S51.657,42,50,42z M50,29H14c-1.657,0-3-1.343-3-3s1.343-3,3-3h36c1.657,0,3,1.343,3,3S51.657,29,50,29z"},"children":[]}]}]}]}]}]}]}]};exports.notepad=notepad;var notepad_add={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"NOTEPAD__x2F__ADD_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"NOTEPAD__x2F__ADD"},"children":[{"name":"g","attribs":{"id":"NOTEPAD__x2F__ADD"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M46,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C43,10.657,44.343,12,46,12z M31,12\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C28,10.657,29.343,12,31,12z M60,52h-3v-3c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3s1.343,3,3,3h3v3c0,1.657,1.343,3,3,3s3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3\r\n\t\t\t\tS61.657,52,60,52z M42,55c0-3.314,2.686-6,6-6c0-3.314,2.686-6,6-6s6,2.686,6,6V9c0-1.657-1.343-3-3-3h-5v3c0,3.314-2.686,6-6,6\r\n\t\t\t\ts-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6H5\r\n\t\t\t\tC3.343,6,2,7.343,2,9v52c0,1.657,1.343,3,3,3h43v-3C44.686,61,42,58.314,42,55z M13,23h36c1.657,0,3,1.343,3,3s-1.343,3-3,3H13\r\n\t\t\t\tc-1.657,0-3-1.343-3-3S11.343,23,13,23z M31.5,54h-19c-1.381,0-2.5-1.119-2.5-2.5s1.119-2.5,2.5-2.5h19\r\n\t\t\t\tc1.381,0,2.5,1.119,2.5,2.5S32.881,54,31.5,54z M39,42H13c-1.657,0-3-1.343-3-3s1.343-3,3-3h26c1.657,0,3,1.343,3,3\r\n\t\t\t\tS40.657,42,39,42z M16,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C13,10.657,14.343,12,16,12z"},"children":[{"name":"path","attribs":{"d":"M46,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C43,10.657,44.343,12,46,12z M31,12\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C28,10.657,29.343,12,31,12z M60,52h-3v-3c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3s1.343,3,3,3h3v3c0,1.657,1.343,3,3,3s3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3\r\n\t\t\t\tS61.657,52,60,52z M42,55c0-3.314,2.686-6,6-6c0-3.314,2.686-6,6-6s6,2.686,6,6V9c0-1.657-1.343-3-3-3h-5v3c0,3.314-2.686,6-6,6\r\n\t\t\t\ts-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6H5\r\n\t\t\t\tC3.343,6,2,7.343,2,9v52c0,1.657,1.343,3,3,3h43v-3C44.686,61,42,58.314,42,55z M13,23h36c1.657,0,3,1.343,3,3s-1.343,3-3,3H13\r\n\t\t\t\tc-1.657,0-3-1.343-3-3S11.343,23,13,23z M31.5,54h-19c-1.381,0-2.5-1.119-2.5-2.5s1.119-2.5,2.5-2.5h19\r\n\t\t\t\tc1.381,0,2.5,1.119,2.5,2.5S32.881,54,31.5,54z M39,42H13c-1.657,0-3-1.343-3-3s1.343-3,3-3h26c1.657,0,3,1.343,3,3\r\n\t\t\t\tS40.657,42,39,42z M16,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C13,10.657,14.343,12,16,12z"},"children":[]}]}]}]}]}]}]}]};exports.notepad_add=notepad_add;var notepad_delete={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"NOTEPAD__x2F__DELETE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"NOTEPAD__x2F__DELETE"},"children":[{"name":"g","attribs":{"id":"NOTEPAD__x2F__DELETE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M46,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C43,10.657,44.343,12,46,12z M31,12\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C28,10.657,29.343,12,31,12z M58.243,55l3.879-3.879\r\n\t\t\t\tC62.664,50.579,63,49.828,63,49c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L54,50.757l-3.879-3.879\r\n\t\t\t\tC49.578,46.336,48.828,46,48,46c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L49.757,55l-3.879,3.879\r\n\t\t\t\tC45.336,59.422,45,60.172,45,61c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L54,59.243l3.879,3.879\r\n\t\t\t\tC58.422,63.664,59.172,64,60,64c1.657,0,3-1.343,3-3c0-0.829-0.336-1.578-0.879-2.121L58.243,55z M16,12c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v6C13,10.657,14.343,12,16,12z M43.757,56.758L45.516,55l-1.758-1.757\r\n\t\t\t\tC42.672,52.157,42,50.657,42,49c0-3.314,2.686-6,6-6c1.657,0,3.157,0.672,4.243,1.757L54,46.516l1.757-1.759l0.015,0.017\r\n\t\t\t\tC56.854,43.682,58.341,43,60,43V9c0-1.657-1.343-3-3-3h-5v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6\r\n\t\t\t\tc-3.314,0-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6H5C3.343,6,2,7.343,2,9v52c0,1.657,1.343,3,3,3h37.832\r\n\t\t\t\tC42.316,63.114,42,62.1,42,61c0-1.659,0.682-3.146,1.773-4.227L43.757,56.758z M31.5,54h-19c-1.381,0-2.5-1.119-2.5-2.5\r\n\t\t\t\ts1.119-2.5,2.5-2.5h19c1.381,0,2.5,1.119,2.5,2.5S32.881,54,31.5,54z M37,42H13c-1.657,0-3-1.343-3-3s1.343-3,3-3h24\r\n\t\t\t\tc1.657,0,3,1.343,3,3S38.657,42,37,42z M13,29c-1.657,0-3-1.343-3-3s1.343-3,3-3h36c1.657,0,3,1.343,3,3s-1.343,3-3,3H13z"},"children":[{"name":"path","attribs":{"d":"M46,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C43,10.657,44.343,12,46,12z M31,12\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C28,10.657,29.343,12,31,12z M58.243,55l3.879-3.879\r\n\t\t\t\tC62.664,50.579,63,49.828,63,49c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L54,50.757l-3.879-3.879\r\n\t\t\t\tC49.578,46.336,48.828,46,48,46c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L49.757,55l-3.879,3.879\r\n\t\t\t\tC45.336,59.422,45,60.172,45,61c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L54,59.243l3.879,3.879\r\n\t\t\t\tC58.422,63.664,59.172,64,60,64c1.657,0,3-1.343,3-3c0-0.829-0.336-1.578-0.879-2.121L58.243,55z M16,12c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v6C13,10.657,14.343,12,16,12z M43.757,56.758L45.516,55l-1.758-1.757\r\n\t\t\t\tC42.672,52.157,42,50.657,42,49c0-3.314,2.686-6,6-6c1.657,0,3.157,0.672,4.243,1.757L54,46.516l1.757-1.759l0.015,0.017\r\n\t\t\t\tC56.854,43.682,58.341,43,60,43V9c0-1.657-1.343-3-3-3h-5v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6\r\n\t\t\t\tc-3.314,0-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6H5C3.343,6,2,7.343,2,9v52c0,1.657,1.343,3,3,3h37.832\r\n\t\t\t\tC42.316,63.114,42,62.1,42,61c0-1.659,0.682-3.146,1.773-4.227L43.757,56.758z M31.5,54h-19c-1.381,0-2.5-1.119-2.5-2.5\r\n\t\t\t\ts1.119-2.5,2.5-2.5h19c1.381,0,2.5,1.119,2.5,2.5S32.881,54,31.5,54z M37,42H13c-1.657,0-3-1.343-3-3s1.343-3,3-3h24\r\n\t\t\t\tc1.657,0,3,1.343,3,3S38.657,42,37,42z M13,29c-1.657,0-3-1.343-3-3s1.343-3,3-3h36c1.657,0,3,1.343,3,3s-1.343,3-3,3H13z"},"children":[]}]}]}]}]}]}]}]};exports.notepad_delete=notepad_delete;var notepad_ok={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"NOTEPAD__x2F__OK_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"NOTEPAD__x2F__OK"},"children":[{"name":"g","attribs":{"id":"NOTEPAD__x2F__OK"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M31,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C28,10.657,29.343,12,31,12z M46,12\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C43,10.657,44.343,12,46,12z M16,12c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v6C13,10.657,14.343,12,16,12z M60,50c-0.828,0-1.578,0.336-2.121,0.879L52,56.758\r\n\t\t\t\tl-1.879-1.879C49.578,54.336,48.829,54,48,54c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l4,4\r\n\t\t\t\tC50.422,63.664,51.172,64,52,64s1.578-0.336,2.121-0.879l8-8C62.664,54.578,63,53.828,63,53C63,51.343,61.657,50,60,50z\r\n\t\t\t\t M43.775,61.225C42.684,60.146,42,58.659,42,57c0-3.314,2.686-6,6-6c1.535,0,2.908,0.602,3.961,1.555l3.797-3.798\r\n\t\t\t\tC56.843,47.672,58.343,47,60,47V9c0-1.657-1.343-3-3-3h-5v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6\r\n\t\t\t\tc-3.314,0-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6H5C3.343,6,2,7.343,2,9v52c0,1.657,1.343,3,3,3h41.516\r\n\t\t\t\tl-2.758-2.757L43.775,61.225z M13,23h36c1.657,0,3,1.343,3,3s-1.343,3-3,3H13c-1.657,0-3-1.343-3-3S11.343,23,13,23z M13,36h36\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3H13c-1.657,0-3-1.343-3-3S11.343,36,13,36z M31.5,54h-19c-1.381,0-2.5-1.119-2.5-2.5\r\n\t\t\t\ts1.119-2.5,2.5-2.5h19c1.381,0,2.5,1.119,2.5,2.5S32.881,54,31.5,54z"},"children":[{"name":"path","attribs":{"d":"M31,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C28,10.657,29.343,12,31,12z M46,12\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C43,10.657,44.343,12,46,12z M16,12c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v6C13,10.657,14.343,12,16,12z M60,50c-0.828,0-1.578,0.336-2.121,0.879L52,56.758\r\n\t\t\t\tl-1.879-1.879C49.578,54.336,48.829,54,48,54c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l4,4\r\n\t\t\t\tC50.422,63.664,51.172,64,52,64s1.578-0.336,2.121-0.879l8-8C62.664,54.578,63,53.828,63,53C63,51.343,61.657,50,60,50z\r\n\t\t\t\t M43.775,61.225C42.684,60.146,42,58.659,42,57c0-3.314,2.686-6,6-6c1.535,0,2.908,0.602,3.961,1.555l3.797-3.798\r\n\t\t\t\tC56.843,47.672,58.343,47,60,47V9c0-1.657-1.343-3-3-3h-5v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6\r\n\t\t\t\tc-3.314,0-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6H5C3.343,6,2,7.343,2,9v52c0,1.657,1.343,3,3,3h41.516\r\n\t\t\t\tl-2.758-2.757L43.775,61.225z M13,23h36c1.657,0,3,1.343,3,3s-1.343,3-3,3H13c-1.657,0-3-1.343-3-3S11.343,23,13,23z M13,36h36\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3H13c-1.657,0-3-1.343-3-3S11.343,36,13,36z M31.5,54h-19c-1.381,0-2.5-1.119-2.5-2.5\r\n\t\t\t\ts1.119-2.5,2.5-2.5h19c1.381,0,2.5,1.119,2.5,2.5S32.881,54,31.5,54z"},"children":[]}]}]}]}]}]}]}]};exports.notepad_ok=notepad_ok;var notepad_remove={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"NOTEPAD__x2F__REMOVE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"NOTEPAD__x2F__REMOVE"},"children":[{"name":"g","attribs":{"id":"NOTEPAD__x2F__REMOVE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M46,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C43,10.657,44.343,12,46,12z M31,12\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C28,10.657,29.343,12,31,12z M42,55c0-3.314,2.686-6,6-6h12V9\r\n\t\t\t\tc0-1.657-1.343-3-3-3h-5v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6V6h-3v3\r\n\t\t\t\tc0,3.314-2.686,6-6,6s-6-2.686-6-6V6H5C3.343,6,2,7.343,2,9v52c0,1.657,1.343,3,3,3h52c1.657,0,3-1.343,3-3H48\r\n\t\t\t\tC44.686,61,42,58.314,42,55z M13,23h36c1.657,0,3,1.343,3,3s-1.343,3-3,3H13c-1.657,0-3-1.343-3-3S11.343,23,13,23z M13,36h36\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3H13c-1.657,0-3-1.343-3-3S11.343,36,13,36z M31.5,54h-19c-1.381,0-2.5-1.119-2.5-2.5\r\n\t\t\t\ts1.119-2.5,2.5-2.5h19c1.381,0,2.5,1.119,2.5,2.5S32.881,54,31.5,54z M16,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v6C13,10.657,14.343,12,16,12z M60,52H48c-1.657,0-3,1.343-3,3s1.343,3,3,3h12c1.657,0,3-1.343,3-3S61.657,52,60,52\r\n\t\t\t\tz"},"children":[{"name":"path","attribs":{"d":"M46,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C43,10.657,44.343,12,46,12z M31,12\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C28,10.657,29.343,12,31,12z M42,55c0-3.314,2.686-6,6-6h12V9\r\n\t\t\t\tc0-1.657-1.343-3-3-3h-5v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6V6h-3v3\r\n\t\t\t\tc0,3.314-2.686,6-6,6s-6-2.686-6-6V6H5C3.343,6,2,7.343,2,9v52c0,1.657,1.343,3,3,3h52c1.657,0,3-1.343,3-3H48\r\n\t\t\t\tC44.686,61,42,58.314,42,55z M13,23h36c1.657,0,3,1.343,3,3s-1.343,3-3,3H13c-1.657,0-3-1.343-3-3S11.343,23,13,23z M13,36h36\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3H13c-1.657,0-3-1.343-3-3S11.343,36,13,36z M31.5,54h-19c-1.381,0-2.5-1.119-2.5-2.5\r\n\t\t\t\ts1.119-2.5,2.5-2.5h19c1.381,0,2.5,1.119,2.5,2.5S32.881,54,31.5,54z M16,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v6C13,10.657,14.343,12,16,12z M60,52H48c-1.657,0-3,1.343-3,3s1.343,3,3,3h12c1.657,0,3-1.343,3-3S61.657,52,60,52\r\n\t\t\t\tz"},"children":[]}]}]}]}]}]}]}]};exports.notepad_remove=notepad_remove;var pause={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"PAUSE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PAUSE"},"children":[{"name":"g","attribs":{"id":"PAUSE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M26,19c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3s3-1.343,3-3V22C29,20.343,27.657,19,26,19z M38,19\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3s3-1.343,3-3V22C41,20.343,39.657,19,38,19z"},"children":[{"name":"path","attribs":{"d":"M26,19c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3s3-1.343,3-3V22C29,20.343,27.657,19,26,19z M38,19\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3s3-1.343,3-3V22C41,20.343,39.657,19,38,19z"},"children":[]}]}]}]}]}]}]}]};exports.pause=pause;var paypal={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"paypal_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"paypal"},"children":[{"name":"g","attribs":{"id":"paypal"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M34.878,24.706c0.474-0.299,0.925-0.635,1.335-1.018c1.145-1.061,2.006-2.423,2.369-3.916\r\n\t\t\t\tc0.633-2.24-0.102-4.184-1.617-5.26c-0.797-0.566-1.808-0.901-2.955-0.901h-6.65l-0.214,0.901L24.45,25.935h6.372\r\n\t\t\t\tC32.234,25.935,33.643,25.473,34.878,24.706z M30.925,18.05h3.087c0.159,0,0.254,0.026,0.301,0.043\r\n\t\t\t\tc0.011,0.067,0.019,0.22-0.057,0.48l-0.023,0.082l-0.018,0.082c-0.346,1.418-1.994,2.76-3.394,2.76h-0.712L30.925,18.05z\r\n\t\t\t\t M60.611,16.282c-1.295-1.592-2.928-2.913-4.782-3.928c-0.61-2.671-1.804-4.704-2.976-6.148C49.714,2.346,44.585,0.033,39.117,0\r\n\t\t\t\tH12.265l-0.787,3.458L1.224,48.52L0,53.9v0.031h10.042l-1.058,4.661L7.752,64h22.802l0.774-3.477l2.55-11.44h6.089\r\n\t\t\t\tc11.803,0,21.03-7.176,23.508-18.278c0.367-1.649,0.521-3.163,0.525-4.557v-0.456C63.904,21.396,62.234,18.281,60.611,16.282z\r\n\t\t\t\t M5.606,49.491L15.861,4.43H39c4.283,0,9.005,1.916,11.316,5.974c0.795,1.398,1.306,3.051,1.412,4.969\r\n\t\t\t\tc0.076,1.334-0.043,2.801-0.399,4.398c-0.812,3.64-2.499,6.678-4.796,9.048c-3.51,3.625-8.463,5.652-13.979,5.732\r\n\t\t\t\tc-0.117,0.004-0.229,0.014-0.344,0.014H22.51L19.186,49.49L5.606,49.491L5.606,49.491z M59.087,29.848\r\n\t\t\t\tc-2.077,9.316-9.837,14.796-19.12,14.796h-9.699L26.943,59.57H13.366l1.283-5.639h8.147l0.777-3.484l2.547-11.441h6.09\r\n\t\t\t\tc11.802,0,21.026-7.176,23.505-18.275c0.209-0.941,0.348-1.837,0.434-2.696C58.802,20.547,60.295,24.44,59.087,29.848z"},"children":[{"name":"path","attribs":{"d":"M34.878,24.706c0.474-0.299,0.925-0.635,1.335-1.018c1.145-1.061,2.006-2.423,2.369-3.916\r\n\t\t\t\tc0.633-2.24-0.102-4.184-1.617-5.26c-0.797-0.566-1.808-0.901-2.955-0.901h-6.65l-0.214,0.901L24.45,25.935h6.372\r\n\t\t\t\tC32.234,25.935,33.643,25.473,34.878,24.706z M30.925,18.05h3.087c0.159,0,0.254,0.026,0.301,0.043\r\n\t\t\t\tc0.011,0.067,0.019,0.22-0.057,0.48l-0.023,0.082l-0.018,0.082c-0.346,1.418-1.994,2.76-3.394,2.76h-0.712L30.925,18.05z\r\n\t\t\t\t M60.611,16.282c-1.295-1.592-2.928-2.913-4.782-3.928c-0.61-2.671-1.804-4.704-2.976-6.148C49.714,2.346,44.585,0.033,39.117,0\r\n\t\t\t\tH12.265l-0.787,3.458L1.224,48.52L0,53.9v0.031h10.042l-1.058,4.661L7.752,64h22.802l0.774-3.477l2.55-11.44h6.089\r\n\t\t\t\tc11.803,0,21.03-7.176,23.508-18.278c0.367-1.649,0.521-3.163,0.525-4.557v-0.456C63.904,21.396,62.234,18.281,60.611,16.282z\r\n\t\t\t\t M5.606,49.491L15.861,4.43H39c4.283,0,9.005,1.916,11.316,5.974c0.795,1.398,1.306,3.051,1.412,4.969\r\n\t\t\t\tc0.076,1.334-0.043,2.801-0.399,4.398c-0.812,3.64-2.499,6.678-4.796,9.048c-3.51,3.625-8.463,5.652-13.979,5.732\r\n\t\t\t\tc-0.117,0.004-0.229,0.014-0.344,0.014H22.51L19.186,49.49L5.606,49.491L5.606,49.491z M59.087,29.848\r\n\t\t\t\tc-2.077,9.316-9.837,14.796-19.12,14.796h-9.699L26.943,59.57H13.366l1.283-5.639h8.147l0.777-3.484l2.547-11.441h6.09\r\n\t\t\t\tc11.802,0,21.026-7.176,23.505-18.275c0.209-0.941,0.348-1.837,0.434-2.696C58.802,20.547,60.295,24.44,59.087,29.848z"},"children":[]}]}]}]}]}]}]}]};exports.paypal=paypal;var pen_1={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"PEN_1_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PEN_1"},"children":[{"name":"g","attribs":{"id":"PEN_1"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M12.938,42.498l8.446,8.429l25.339-25.288l-8.447-8.429L12.938,42.498z M7.998,55.84l11.258-2.806l-8.447-8.431\r\n\t\t\t\tL7.998,55.84z M55.167,12.996l-4.224-4.215c-1.166-1.164-3.057-1.164-4.223,0l-6.334,6.322l8.446,8.429l6.334-6.322\r\n\t\t\t\tC56.333,16.046,56.333,14.159,55.167,12.996z"},"children":[{"name":"path","attribs":{"d":"M12.938,42.498l8.446,8.429l25.339-25.288l-8.447-8.429L12.938,42.498z M7.998,55.84l11.258-2.806l-8.447-8.431\r\n\t\t\t\tL7.998,55.84z M55.167,12.996l-4.224-4.215c-1.166-1.164-3.057-1.164-4.223,0l-6.334,6.322l8.446,8.429l6.334-6.322\r\n\t\t\t\tC56.333,16.046,56.333,14.159,55.167,12.996z"},"children":[]}]}]}]}]}]}]}]};exports.pen_1=pen_1;var pen_2={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"PEN_2_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PEN_2"},"children":[{"name":"g","attribs":{"id":"PEN_2"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M46.721,19.639l-8.445-8.429L12.938,36.498l8.446,8.429L46.721,19.639z M55.167,11.21c1.166-1.164,1.166-3.051,0-4.214\r\n\t\t\t\tl-4.224-4.215c-1.166-1.164-3.057-1.164-4.223,0l-6.334,6.322l8.446,8.429L55.167,11.21z M61,56H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h58c1.657,0,3-1.343,3-3S62.657,56,61,56z M10.809,38.604L7.998,49.84l11.258-2.806L10.809,38.604z"},"children":[{"name":"path","attribs":{"d":"M46.721,19.639l-8.445-8.429L12.938,36.498l8.446,8.429L46.721,19.639z M55.167,11.21c1.166-1.164,1.166-3.051,0-4.214\r\n\t\t\t\tl-4.224-4.215c-1.166-1.164-3.057-1.164-4.223,0l-6.334,6.322l8.446,8.429L55.167,11.21z M61,56H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h58c1.657,0,3-1.343,3-3S62.657,56,61,56z M10.809,38.604L7.998,49.84l11.258-2.806L10.809,38.604z"},"children":[]}]}]}]}]}]}]}]};exports.pen_2=pen_2;var pen_3={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"PEN_3_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PEN_3"},"children":[{"name":"g","attribs":{"id":"PEN_3"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M61.167,6.995L56.943,2.78c-1.166-1.164-3.057-1.164-4.223,0l-6.334,6.322l8.446,8.429l6.334-6.322\r\n\t\t\t\tC62.334,10.046,62.334,8.159,61.167,6.995z M53,57H7V11h33.357l6-6H4C2.343,5,1,6.343,1,8v52c0,1.657,1.343,3,3,3h52\r\n\t\t\t\tc1.657,0,3-1.343,3-3V17.813l-6,6V57z M52.721,19.639l-8.445-8.429L18.938,36.498l8.446,8.429L52.721,19.639z M13.998,49.84\r\n\t\t\t\tl11.258-2.806l-8.447-8.431L13.998,49.84z"},"children":[{"name":"path","attribs":{"d":"M61.167,6.995L56.943,2.78c-1.166-1.164-3.057-1.164-4.223,0l-6.334,6.322l8.446,8.429l6.334-6.322\r\n\t\t\t\tC62.334,10.046,62.334,8.159,61.167,6.995z M53,57H7V11h33.357l6-6H4C2.343,5,1,6.343,1,8v52c0,1.657,1.343,3,3,3h52\r\n\t\t\t\tc1.657,0,3-1.343,3-3V17.813l-6,6V57z M52.721,19.639l-8.445-8.429L18.938,36.498l8.446,8.429L52.721,19.639z M13.998,49.84\r\n\t\t\t\tl11.258-2.806l-8.447-8.431L13.998,49.84z"},"children":[]}]}]}]}]}]}]}]};exports.pen_3=pen_3;var picture={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"PICTURE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PICTURE"},"children":[{"name":"g","attribs":{"id":"PICTURE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M22,28c3.314,0,6-2.686,6-6s-2.686-6-6-6s-6,2.686-6,6S18.686,28,22,28z M62,14c0-1.304-0.837-2.403-2-2.816V7.816\r\n\t\t\t\tC61.163,7.403,62,6.305,62,5c0-1.657-1.343-3-3-3c-1.305,0-2.402,0.838-2.816,2h-3.367C52.402,2.838,51.305,2,50,2\r\n\t\t\t\ts-2.402,0.838-2.816,2h-3.367C43.402,2.838,42.305,2,41,2s-2.402,0.838-2.816,2h-3.367C34.402,2.838,33.305,2,32,2\r\n\t\t\t\tc-1.304,0-2.403,0.838-2.816,2h-3.367C25.403,2.838,24.304,2,23,2s-2.403,0.838-2.816,2h-3.367C16.403,2.838,15.304,2,14,2\r\n\t\t\t\ts-2.403,0.838-2.816,2H7.816C7.403,2.838,6.304,2,5,2C3.343,2,2,3.343,2,5c0,1.304,0.837,2.403,2,2.816v3.367\r\n\t\t\t\tC2.838,11.597,2,12.696,2,14s0.837,2.403,2,2.816v3.367C2.838,20.597,2,21.696,2,23s0.837,2.403,2,2.816v3.367\r\n\t\t\t\tC2.838,29.597,2,30.696,2,32c0,1.305,0.837,2.402,2,2.816v3.367C2.838,38.598,2,39.695,2,41s0.837,2.402,2,2.816v3.367\r\n\t\t\t\tC2.838,47.598,2,48.695,2,50s0.837,2.402,2,2.816v3.367C2.838,56.598,2,57.695,2,59c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2s2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2\r\n\t\t\t\tc1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.815-2h3.367c0.413,1.162,1.512,2,2.816,2\r\n\t\t\t\tc1.304,0,2.402-0.837,2.816-2h3.367c0.412,1.162,1.512,2,2.815,2s2.403-0.837,2.815-2h3.367c0.413,1.162,1.512,2,2.816,2\r\n\t\t\t\tc1.656,0,3-1.343,3-3c0-1.305-0.837-2.402-2-2.816v-3.367c1.163-0.412,2-1.512,2-2.815s-0.837-2.403-2-2.815v-3.367\r\n\t\t\t\tc1.163-0.414,2-1.512,2-2.816c0-1.304-0.837-2.402-2-2.816v-3.367c1.163-0.412,2-1.512,2-2.815s-0.837-2.403-2-2.816V25.82\r\n\t\t\t\tc1.163-0.413,2-1.512,2-2.816c0-1.304-0.837-2.403-2-2.816v-3.367C61.163,16.403,62,15.304,62,14z M54,54H10V10h44V54z M51,39\r\n\t\t\t\tl-9-14L28,42l-3-3L13,51h38V39z"},"children":[{"name":"path","attribs":{"d":"M22,28c3.314,0,6-2.686,6-6s-2.686-6-6-6s-6,2.686-6,6S18.686,28,22,28z M62,14c0-1.304-0.837-2.403-2-2.816V7.816\r\n\t\t\t\tC61.163,7.403,62,6.305,62,5c0-1.657-1.343-3-3-3c-1.305,0-2.402,0.838-2.816,2h-3.367C52.402,2.838,51.305,2,50,2\r\n\t\t\t\ts-2.402,0.838-2.816,2h-3.367C43.402,2.838,42.305,2,41,2s-2.402,0.838-2.816,2h-3.367C34.402,2.838,33.305,2,32,2\r\n\t\t\t\tc-1.304,0-2.403,0.838-2.816,2h-3.367C25.403,2.838,24.304,2,23,2s-2.403,0.838-2.816,2h-3.367C16.403,2.838,15.304,2,14,2\r\n\t\t\t\ts-2.403,0.838-2.816,2H7.816C7.403,2.838,6.304,2,5,2C3.343,2,2,3.343,2,5c0,1.304,0.837,2.403,2,2.816v3.367\r\n\t\t\t\tC2.838,11.597,2,12.696,2,14s0.837,2.403,2,2.816v3.367C2.838,20.597,2,21.696,2,23s0.837,2.403,2,2.816v3.367\r\n\t\t\t\tC2.838,29.597,2,30.696,2,32c0,1.305,0.837,2.402,2,2.816v3.367C2.838,38.598,2,39.695,2,41s0.837,2.402,2,2.816v3.367\r\n\t\t\t\tC2.838,47.598,2,48.695,2,50s0.837,2.402,2,2.816v3.367C2.838,56.598,2,57.695,2,59c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2s2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2\r\n\t\t\t\tc1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.815-2h3.367c0.413,1.162,1.512,2,2.816,2\r\n\t\t\t\tc1.304,0,2.402-0.837,2.816-2h3.367c0.412,1.162,1.512,2,2.815,2s2.403-0.837,2.815-2h3.367c0.413,1.162,1.512,2,2.816,2\r\n\t\t\t\tc1.656,0,3-1.343,3-3c0-1.305-0.837-2.402-2-2.816v-3.367c1.163-0.412,2-1.512,2-2.815s-0.837-2.403-2-2.815v-3.367\r\n\t\t\t\tc1.163-0.414,2-1.512,2-2.816c0-1.304-0.837-2.402-2-2.816v-3.367c1.163-0.412,2-1.512,2-2.815s-0.837-2.403-2-2.816V25.82\r\n\t\t\t\tc1.163-0.413,2-1.512,2-2.816c0-1.304-0.837-2.403-2-2.816v-3.367C61.163,16.403,62,15.304,62,14z M54,54H10V10h44V54z M51,39\r\n\t\t\t\tl-9-14L28,42l-3-3L13,51h38V39z"},"children":[]}]}]}]}]}]}]}]};exports.picture=picture;var pie_chart={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"PIE_CHART_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PIE_CHART"},"children":[{"name":"g","attribs":{"id":"PIE_CHART"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M35,0v29h29C64,12.984,51.016,0,35,0z M29,6C12.984,6,0,18.984,0,35c0,16.018,12.984,29,29,29c16.016,0,29-12.984,29-29\r\n\t\t\t\tH29V6z"},"children":[{"name":"path","attribs":{"d":"M35,0v29h29C64,12.984,51.016,0,35,0z M29,6C12.984,6,0,18.984,0,35c0,16.018,12.984,29,29,29c16.016,0,29-12.984,29-29\r\n\t\t\t\tH29V6z"},"children":[]}]}]}]}]}]}]}]};exports.pie_chart=pie_chart;var pill={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"PILL"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M54.981,9.726l-0.707-0.707c-6.834-6.834-17.914-6.834-24.749,0L9.019,29.525\r\n\t\t\tc-6.834,6.834-6.834,17.914,0,24.748l0.707,0.707c6.834,6.834,17.914,6.834,24.749,0l20.506-20.506\r\n\t\t\tC61.815,27.641,61.815,16.56,54.981,9.726z M30.232,50.738c-4.491,4.491-11.772,4.491-16.263,0l-0.707-0.707\r\n\t\t\tc-4.491-4.491-4.491-11.772,0-16.263l10.253-10.253l16.971,16.97L30.232,50.738z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M54.981,9.726l-0.707-0.707c-6.834-6.834-17.914-6.834-24.749,0L9.019,29.525\r\n\t\t\tc-6.834,6.834-6.834,17.914,0,24.748l0.707,0.707c6.834,6.834,17.914,6.834,24.749,0l20.506-20.506\r\n\t\t\tC61.815,27.641,61.815,16.56,54.981,9.726z M30.232,50.738c-4.491,4.491-11.772,4.491-16.263,0l-0.707-0.707\r\n\t\t\tc-4.491-4.491-4.491-11.772,0-16.263l10.253-10.253l16.971,16.97L30.232,50.738z"},"children":[]}]}]}]}]}]};exports.pill=pill;var pin_1={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"PIN_1_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PIN_1"},"children":[{"name":"g","attribs":{"id":"PIN_1"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M32,0C18.746,0,8,10.747,8,24c0,13.254,24,40,24,40s24-26.746,24-40C56,10.747,45.254,0,32,0z M32,40\r\n\t\t\t\tc-8.836,0-16-7.164-16-16S23.164,8,32,8s16,7.164,16,16S40.836,40,32,40z"},"children":[{"name":"path","attribs":{"d":"M32,0C18.746,0,8,10.747,8,24c0,13.254,24,40,24,40s24-26.746,24-40C56,10.747,45.254,0,32,0z M32,40\r\n\t\t\t\tc-8.836,0-16-7.164-16-16S23.164,8,32,8s16,7.164,16,16S40.836,40,32,40z"},"children":[]}]}]}]}]}]}]}]};exports.pin_1=pin_1;var pin_2={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"PIN_2_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PIN_2"},"children":[{"name":"g","attribs":{"id":"PIN_2"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M32,16c-4.418,0-8,3.582-8,8s3.582,8,8,8s8-3.582,8-8S36.418,16,32,16z M32,0C18.746,0,8,10.747,8,24\r\n\t\t\t\tc0,13.254,24,40,24,40s24-26.746,24-40C56,10.747,45.254,0,32,0z M32,40c-8.836,0-16-7.164-16-16S23.164,8,32,8s16,7.164,16,16\r\n\t\t\t\tS40.836,40,32,40z"},"children":[{"name":"path","attribs":{"d":"M32,16c-4.418,0-8,3.582-8,8s3.582,8,8,8s8-3.582,8-8S36.418,16,32,16z M32,0C18.746,0,8,10.747,8,24\r\n\t\t\t\tc0,13.254,24,40,24,40s24-26.746,24-40C56,10.747,45.254,0,32,0z M32,40c-8.836,0-16-7.164-16-16S23.164,8,32,8s16,7.164,16,16\r\n\t\t\t\tS40.836,40,32,40z"},"children":[]}]}]}]}]}]}]}]};exports.pin_2=pin_2;var pin_zoom_in={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"PIN__x2F__ZOOM_IN_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PIN__x2F__ZOOM_IN"},"children":[{"name":"g","attribs":{"id":"PIN__x2F__ZOOM_IN"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M40,21h-5v-5c0-1.657-1.343-3-3-3s-3,1.343-3,3v5h-5c-1.657,0-3,1.343-3,3s1.343,3,3,3h5v5c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3v-5h5c1.657,0,3-1.343,3-3S41.657,21,40,21z M32,0C18.746,0,8,10.747,8,24c0,13.254,24,40,24,40s24-26.746,24-40\r\n\t\t\t\tC56,10.747,45.254,0,32,0z M32,40c-8.836,0-16-7.164-16-16S23.164,8,32,8s16,7.164,16,16S40.836,40,32,40z"},"children":[{"name":"path","attribs":{"d":"M40,21h-5v-5c0-1.657-1.343-3-3-3s-3,1.343-3,3v5h-5c-1.657,0-3,1.343-3,3s1.343,3,3,3h5v5c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3v-5h5c1.657,0,3-1.343,3-3S41.657,21,40,21z M32,0C18.746,0,8,10.747,8,24c0,13.254,24,40,24,40s24-26.746,24-40\r\n\t\t\t\tC56,10.747,45.254,0,32,0z M32,40c-8.836,0-16-7.164-16-16S23.164,8,32,8s16,7.164,16,16S40.836,40,32,40z"},"children":[]}]}]}]}]}]}]}]};exports.pin_zoom_in=pin_zoom_in;var pin_zoom_out={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"PIN__x2F__ZOOM_OUT_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PIN__x2F__ZOOM_OUT"},"children":[{"name":"g","attribs":{"id":"PIN__x2F__ZOOM_OUT"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M40,21H24c-1.657,0-3,1.343-3,3s1.343,3,3,3h16c1.657,0,3-1.343,3-3S41.657,21,40,21z M32,0C18.746,0,8,10.747,8,24\r\n\t\t\t\tc0,13.254,24,40,24,40s24-26.746,24-40C56,10.747,45.254,0,32,0z M32,40c-8.836,0-16-7.164-16-16S23.164,8,32,8s16,7.164,16,16\r\n\t\t\t\tS40.836,40,32,40z"},"children":[{"name":"path","attribs":{"d":"M40,21H24c-1.657,0-3,1.343-3,3s1.343,3,3,3h16c1.657,0,3-1.343,3-3S41.657,21,40,21z M32,0C18.746,0,8,10.747,8,24\r\n\t\t\t\tc0,13.254,24,40,24,40s24-26.746,24-40C56,10.747,45.254,0,32,0z M32,40c-8.836,0-16-7.164-16-16S23.164,8,32,8s16,7.164,16,16\r\n\t\t\t\tS40.836,40,32,40z"},"children":[]}]}]}]}]}]}]}]};exports.pin_zoom_out=pin_zoom_out;var pinterest_1={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"pinterest_2_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"pinterest_1_"},"children":[{"name":"g","attribs":{"id":"pinterest_1_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M55.988,15.676c-0.967-3.324-2.491-5.987-4.586-8.274c-2.033-2.223-4.437-4.016-7.449-5.364\r\n\t\t\t\tC41.1,0.762,37.307-0.183,33.139,0.014c-1.428,0.067-2.742,0.144-4.013,0.329c-3.83,0.557-6.978,1.715-9.768,3.364\r\n\t\t\t\tc-3.63,2.146-6.612,5.15-8.647,8.906c-0.981,1.809-1.867,4.037-2.343,6.452c-0.493,2.498-0.494,5.513,0,8.096\r\n\t\t\t\tc0.812,4.253,2.794,7.532,6.055,9.336c0.436,0.241,1.082,0.617,1.595,0.606c1.241-0.024,1.27-1.492,1.545-2.555\r\n\t\t\t\tc0.228-0.882,0.761-2.096,0.299-2.91c-0.326-0.574-0.815-0.99-1.146-1.493c-1.046-1.586-1.695-3.622-1.695-6.249\r\n\t\t\t\tc0-3.408,0.833-6.145,2.093-8.526c2.406-4.545,6.493-7.838,12.285-8.831c3.188-0.546,6.777-0.264,9.371,0.582\r\n\t\t\t\tc2.613,0.853,4.763,2.371,6.279,4.276c1.594,2.002,2.598,4.583,2.816,7.793c0.117,1.739-0.006,3.502-0.174,5.035\r\n\t\t\t\tc-0.524,4.757-1.906,8.754-4.187,11.715c-1.426,1.852-3.56,3.813-6.629,3.922c-1.737,0.061-2.998-0.365-4.062-1.139\r\n\t\t\t\tc-1.027-0.748-1.779-1.744-2.12-3.188c-0.369-1.574,0.078-3.072,0.473-4.53c0.798-2.94,1.675-5.229,2.342-8.274\r\n\t\t\t\tc0.297-1.352,0.568-3.19,0.2-4.731c-0.347-1.445-1.087-2.467-2.168-3.112c-1.049-0.626-2.777-0.872-4.336-0.33\r\n\t\t\t\tc-2.453,0.855-4.045,3.201-4.735,5.845c-0.391,1.496-0.531,3.119-0.349,4.858c0.158,1.514,0.518,2.809,1.071,4.251\r\n\t\t\t\tc0.076,0.197-0.143,0.768-0.225,1.114c-1.222,5.192-2.377,10.25-3.588,15.408c-0.636,2.708-1.321,5.419-1.47,8.679\r\n\t\t\t\tc-0.131,2.86-0.371,5.803-0.019,8.35c0.065,0.469,0.094,0.791,0.424,0.86c0.433,0.089,0.127,0.755,1.564-0.911\r\n\t\t\t\tc2.163-2.506,3.811-5.6,5.109-8.805c0.783-1.934,1.256-4.068,1.794-6.173c0.546-2.134,1.072-4.318,1.595-6.401\r\n\t\t\t\tc0.804,1.414,1.939,2.35,3.29,3.112c1.362,0.769,2.979,1.306,4.959,1.442c2.037,0.142,3.94-0.223,5.606-0.709\r\n\t\t\t\tc1.682-0.49,3.162-1.226,4.387-2.024c5.046-3.29,8.408-9.072,9.594-16.142c0.316-1.889,0.77-3.777,0.77-5.921\r\n\t\t\t\tC56.982,19.258,56.492,17.406,55.988,15.676z"},"children":[{"name":"path","attribs":{"d":"M55.988,15.676c-0.967-3.324-2.491-5.987-4.586-8.274c-2.033-2.223-4.437-4.016-7.449-5.364\r\n\t\t\t\tC41.1,0.762,37.307-0.183,33.139,0.014c-1.428,0.067-2.742,0.144-4.013,0.329c-3.83,0.557-6.978,1.715-9.768,3.364\r\n\t\t\t\tc-3.63,2.146-6.612,5.15-8.647,8.906c-0.981,1.809-1.867,4.037-2.343,6.452c-0.493,2.498-0.494,5.513,0,8.096\r\n\t\t\t\tc0.812,4.253,2.794,7.532,6.055,9.336c0.436,0.241,1.082,0.617,1.595,0.606c1.241-0.024,1.27-1.492,1.545-2.555\r\n\t\t\t\tc0.228-0.882,0.761-2.096,0.299-2.91c-0.326-0.574-0.815-0.99-1.146-1.493c-1.046-1.586-1.695-3.622-1.695-6.249\r\n\t\t\t\tc0-3.408,0.833-6.145,2.093-8.526c2.406-4.545,6.493-7.838,12.285-8.831c3.188-0.546,6.777-0.264,9.371,0.582\r\n\t\t\t\tc2.613,0.853,4.763,2.371,6.279,4.276c1.594,2.002,2.598,4.583,2.816,7.793c0.117,1.739-0.006,3.502-0.174,5.035\r\n\t\t\t\tc-0.524,4.757-1.906,8.754-4.187,11.715c-1.426,1.852-3.56,3.813-6.629,3.922c-1.737,0.061-2.998-0.365-4.062-1.139\r\n\t\t\t\tc-1.027-0.748-1.779-1.744-2.12-3.188c-0.369-1.574,0.078-3.072,0.473-4.53c0.798-2.94,1.675-5.229,2.342-8.274\r\n\t\t\t\tc0.297-1.352,0.568-3.19,0.2-4.731c-0.347-1.445-1.087-2.467-2.168-3.112c-1.049-0.626-2.777-0.872-4.336-0.33\r\n\t\t\t\tc-2.453,0.855-4.045,3.201-4.735,5.845c-0.391,1.496-0.531,3.119-0.349,4.858c0.158,1.514,0.518,2.809,1.071,4.251\r\n\t\t\t\tc0.076,0.197-0.143,0.768-0.225,1.114c-1.222,5.192-2.377,10.25-3.588,15.408c-0.636,2.708-1.321,5.419-1.47,8.679\r\n\t\t\t\tc-0.131,2.86-0.371,5.803-0.019,8.35c0.065,0.469,0.094,0.791,0.424,0.86c0.433,0.089,0.127,0.755,1.564-0.911\r\n\t\t\t\tc2.163-2.506,3.811-5.6,5.109-8.805c0.783-1.934,1.256-4.068,1.794-6.173c0.546-2.134,1.072-4.318,1.595-6.401\r\n\t\t\t\tc0.804,1.414,1.939,2.35,3.29,3.112c1.362,0.769,2.979,1.306,4.959,1.442c2.037,0.142,3.94-0.223,5.606-0.709\r\n\t\t\t\tc1.682-0.49,3.162-1.226,4.387-2.024c5.046-3.29,8.408-9.072,9.594-16.142c0.316-1.889,0.77-3.777,0.77-5.921\r\n\t\t\t\tC56.982,19.258,56.492,17.406,55.988,15.676z"},"children":[]}]}]}]}]}]}]}]};exports.pinterest_1=pinterest_1;var pinterest_2={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"pinterest_3_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"pinterest"},"children":[{"name":"g","attribs":{"id":"pinterest"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M32,0C14.328,0,0,14.328,0,32c0,13.172,7.961,24.484,19.33,29.396c-0.082-2.23-0.002-4.892,0.562-7.303\r\n\t\t\t\tc0.621-2.604,4.137-17.5,4.137-17.5s-1.027-2.053-1.027-5.084c0-4.754,2.762-8.312,6.193-8.312c2.922,0,4.334,2.199,4.334,4.826\r\n\t\t\t\tc0,2.936-1.873,7.326-2.84,11.393c-0.801,3.406,1.715,6.188,5.075,6.188c6.079,0,10.176-7.815,10.176-17.079\r\n\t\t\t\tc0-7.035-4.734-12.307-13.359-12.307c-9.738,0-15.815,7.265-15.815,15.383c0,2.797,0.828,4.773,2.123,6.299\r\n\t\t\t\tc0.594,0.701,0.674,0.983,0.457,1.793c-0.156,0.588-0.502,2.01-0.65,2.578c-0.213,0.812-0.875,1.098-1.609,0.799\r\n\t\t\t\tc-4.484-1.828-6.578-6.742-6.578-12.266c0-9.125,7.695-20.064,22.953-20.064c12.266,0,20.334,8.875,20.334,18.395\r\n\t\t\t\tc0,12.605-7.006,22.013-17.328,22.013c-3.469,0-6.732-1.875-7.844-4c0,0-1.871,7.393-2.262,8.826\r\n\t\t\t\tc-0.674,2.439-1.973,4.877-3.176,6.797C25.982,63.57,28.94,64,32,64c17.672,0,32-14.328,32-32S49.672,0,32,0z"},"children":[{"name":"path","attribs":{"d":"M32,0C14.328,0,0,14.328,0,32c0,13.172,7.961,24.484,19.33,29.396c-0.082-2.23-0.002-4.892,0.562-7.303\r\n\t\t\t\tc0.621-2.604,4.137-17.5,4.137-17.5s-1.027-2.053-1.027-5.084c0-4.754,2.762-8.312,6.193-8.312c2.922,0,4.334,2.199,4.334,4.826\r\n\t\t\t\tc0,2.936-1.873,7.326-2.84,11.393c-0.801,3.406,1.715,6.188,5.075,6.188c6.079,0,10.176-7.815,10.176-17.079\r\n\t\t\t\tc0-7.035-4.734-12.307-13.359-12.307c-9.738,0-15.815,7.265-15.815,15.383c0,2.797,0.828,4.773,2.123,6.299\r\n\t\t\t\tc0.594,0.701,0.674,0.983,0.457,1.793c-0.156,0.588-0.502,2.01-0.65,2.578c-0.213,0.812-0.875,1.098-1.609,0.799\r\n\t\t\t\tc-4.484-1.828-6.578-6.742-6.578-12.266c0-9.125,7.695-20.064,22.953-20.064c12.266,0,20.334,8.875,20.334,18.395\r\n\t\t\t\tc0,12.605-7.006,22.013-17.328,22.013c-3.469,0-6.732-1.875-7.844-4c0,0-1.871,7.393-2.262,8.826\r\n\t\t\t\tc-0.674,2.439-1.973,4.877-3.176,6.797C25.982,63.57,28.94,64,32,64c17.672,0,32-14.328,32-32S49.672,0,32,0z"},"children":[]}]}]}]}]}]}]}]};exports.pinterest_2=pinterest_2;var play={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"PLAY_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PLAY"},"children":[{"name":"g","attribs":{"id":"PLAY"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M46,32c0-1.099-0.592-2.06-1.475-2.583l0,0L22.561,16.438c-0.008-0.005-0.016-0.009-0.024-0.014l-0.011-0.007l0,0\r\n\t\t\t\tC22.079,16.153,21.557,16,21,16c-1.657,0-3,1.343-3,3v26c0,1.657,1.343,3,3,3c0.557,0,1.079-0.152,1.526-0.417l0,0l0.011-0.007\r\n\t\t\t\tc0.008-0.006,0.016-0.01,0.024-0.014l21.964-12.979l0,0C45.408,34.061,46,33.1,46,32z"},"children":[{"name":"path","attribs":{"d":"M46,32c0-1.099-0.592-2.06-1.475-2.583l0,0L22.561,16.438c-0.008-0.005-0.016-0.009-0.024-0.014l-0.011-0.007l0,0\r\n\t\t\t\tC22.079,16.153,21.557,16,21,16c-1.657,0-3,1.343-3,3v26c0,1.657,1.343,3,3,3c0.557,0,1.079-0.152,1.526-0.417l0,0l0.011-0.007\r\n\t\t\t\tc0.008-0.006,0.016-0.01,0.024-0.014l21.964-12.979l0,0C45.408,34.061,46,33.1,46,32z"},"children":[]}]}]}]}]}]}]}]};exports.play=play;var plug={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"PLUG"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M54.836,21.812c-1.164-1.164-3.052-1.164-4.216,0l-7.026,7.026l-8.432-8.432\r\n\t\t\tl7.026-7.026c1.164-1.164,1.164-3.052,0-4.216C41.024,8,39.137,8,37.973,9.164l-7.026,7.026l-4.216-4.216l-5.972,5.972\r\n\t\t\tc-6.193,6.193-6.719,15.885-1.617,22.696L9.164,50.62C8,51.784,8,53.672,9.164,54.836c1.164,1.164,3.052,1.164,4.216,0\r\n\t\t\tl9.977-9.977c6.811,5.102,16.503,4.576,22.696-1.617l5.972-5.973l-4.216-4.216l7.026-7.026C56,24.863,56,22.976,54.836,21.812z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M54.836,21.812c-1.164-1.164-3.052-1.164-4.216,0l-7.026,7.026l-8.432-8.432\r\n\t\t\tl7.026-7.026c1.164-1.164,1.164-3.052,0-4.216C41.024,8,39.137,8,37.973,9.164l-7.026,7.026l-4.216-4.216l-5.972,5.972\r\n\t\t\tc-6.193,6.193-6.719,15.885-1.617,22.696L9.164,50.62C8,51.784,8,53.672,9.164,54.836c1.164,1.164,3.052,1.164,4.216,0\r\n\t\t\tl9.977-9.977c6.811,5.102,16.503,4.576,22.696-1.617l5.972-5.973l-4.216-4.216l7.026-7.026C56,24.863,56,22.976,54.836,21.812z"},"children":[]}]}]}]}]}]};exports.plug=plug;var plus={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"PLUS_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PLUS"},"children":[{"name":"g","attribs":{"id":"PLUS"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M52,29H35V12c0-1.657-1.343-3-3-3s-3,1.343-3,3v17H12c-1.657,0-3,1.343-3,3s1.343,3,3,3h17v17c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3V35h17c1.657,0,3-1.343,3-3S53.657,29,52,29z"},"children":[{"name":"path","attribs":{"d":"M52,29H35V12c0-1.657-1.343-3-3-3s-3,1.343-3,3v17H12c-1.657,0-3,1.343-3,3s1.343,3,3,3h17v17c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3V35h17c1.657,0,3-1.343,3-3S53.657,29,52,29z"},"children":[]}]}]}]}]}]}]}]};exports.plus=plus;var polaroid={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"POLAROID_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"POLAROID"},"children":[{"name":"g","attribs":{"id":"POLAROID"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M53,6H11C9.343,6,8,7.343,8,9v46c0,1.657,1.343,3,3,3h42c1.657,0,3-1.343,3-3V9C56,7.343,54.657,6,53,6z M50,43H14V12h36\r\n\t\t\t\tV43z"},"children":[{"name":"path","attribs":{"d":"M53,6H11C9.343,6,8,7.343,8,9v46c0,1.657,1.343,3,3,3h42c1.657,0,3-1.343,3-3V9C56,7.343,54.657,6,53,6z M50,43H14V12h36\r\n\t\t\t\tV43z"},"children":[]}]}]}]}]}]}]}]};exports.polaroid=polaroid;var polaroids={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"POLAROIDS_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"POLAROIDS"},"children":[{"name":"g","attribs":{"id":"POLAROIDS"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M45,12H3c-1.657,0-3,1.343-3,3v46c0,1.657,1.343,3,3,3h42c1.657,0,3-1.343,3-3V15C48,13.343,46.657,12,45,12z M42,49H6\r\n\t\t\t\tV18h36V49z M61,0H19c-1.657,0-3,1.343-3,3v6h6V6h36v31h-7v15h10c1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z"},"children":[{"name":"path","attribs":{"d":"M45,12H3c-1.657,0-3,1.343-3,3v46c0,1.657,1.343,3,3,3h42c1.657,0,3-1.343,3-3V15C48,13.343,46.657,12,45,12z M42,49H6\r\n\t\t\t\tV18h36V49z M61,0H19c-1.657,0-3,1.343-3,3v6h6V6h36v31h-7v15h10c1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z"},"children":[]}]}]}]}]}]}]}]};exports.polaroids=polaroids;var power={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"POWER_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"POWER"},"children":[{"name":"g","attribs":{"id":"POWER"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M31,33c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3.186l0,0V30C28,31.657,29.343,33,31,33z M42,8.162\r\n\t\t\t\tv0.009C41.688,8.061,41.352,8,41,8c-1.657,0-3,1.343-3,3c0,1.306,0.835,2.417,2,2.829v0.003C48.229,17.335,54,25.492,54,35\r\n\t\t\t\tc0,12.703-10.297,23-23,23S8,47.703,8,35c0-9.508,5.771-17.666,14-21.168v-0.003c1.165-0.412,2-1.523,2-2.829\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.351,0-0.687,0.061-1,0.171V8.162C9.439,12.495,2,22.878,2,35c0,16.016,12.984,29,29,29\r\n\t\t\t\tc16.016,0,29-12.984,29-29C60,22.878,52.561,12.495,42,8.162z"},"children":[{"name":"path","attribs":{"d":"M31,33c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3.186l0,0V30C28,31.657,29.343,33,31,33z M42,8.162\r\n\t\t\t\tv0.009C41.688,8.061,41.352,8,41,8c-1.657,0-3,1.343-3,3c0,1.306,0.835,2.417,2,2.829v0.003C48.229,17.335,54,25.492,54,35\r\n\t\t\t\tc0,12.703-10.297,23-23,23S8,47.703,8,35c0-9.508,5.771-17.666,14-21.168v-0.003c1.165-0.412,2-1.523,2-2.829\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.351,0-0.687,0.061-1,0.171V8.162C9.439,12.495,2,22.878,2,35c0,16.016,12.984,29,29,29\r\n\t\t\t\tc16.016,0,29-12.984,29-29C60,22.878,52.561,12.495,42,8.162z"},"children":[]}]}]}]}]}]}]}]};exports.power=power;var presentation={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"PRESENTATION"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,6H35V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v3H3C1.343,6,0,7.343,0,9\r\n\t\t\tc0,1.657,1.343,3,3,3h3v34c0,1.657,1.343,3,3,3h15.757l-9.879,9.879C14.336,59.422,14,60.172,14,61c0,1.657,1.343,3,3,3\r\n\t\t\tc0.828,0,1.579-0.336,2.121-0.879L29,53.243V61c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-7.757l9.879,9.879\r\n\t\t\tC45.422,63.664,46.172,64,47,64c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L39.243,49H55c1.657,0,3-1.343,3-3V12h3\r\n\t\t\tc1.657,0,3-1.343,3-3C64,7.343,62.657,6,61,6z M52,43H12V12h40V43z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,6H35V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v3H3C1.343,6,0,7.343,0,9\r\n\t\t\tc0,1.657,1.343,3,3,3h3v34c0,1.657,1.343,3,3,3h15.757l-9.879,9.879C14.336,59.422,14,60.172,14,61c0,1.657,1.343,3,3,3\r\n\t\t\tc0.828,0,1.579-0.336,2.121-0.879L29,53.243V61c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-7.757l9.879,9.879\r\n\t\t\tC45.422,63.664,46.172,64,47,64c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L39.243,49H55c1.657,0,3-1.343,3-3V12h3\r\n\t\t\tc1.657,0,3-1.343,3-3C64,7.343,62.657,6,61,6z M52,43H12V12h40V43z"},"children":[]}]}]}]}]}]};exports.presentation=presentation;var printer={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"PRINTER_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PRINTER"},"children":[{"name":"g","attribs":{"id":"PRINTER"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M61,15H3c-1.657,0-3,1.343-3,3v28c0,1.657,1.343,3,3,3h10V34h38v15h10c1.657,0,3-1.343,3-3V18C64,16.343,62.657,15,61,15\r\n\t\t\t\tz M9,27c-1.657,0-3-1.343-3-3s1.343-3,3-3s3,1.343,3,3S10.657,27,9,27z M48,2.969h-0.003c0-0.001,0-0.002,0-0.003\r\n\t\t\t\tC47.99,2.351,47.8,1.782,47.477,1.309c-0.004-0.007-0.012-0.013-0.017-0.02c-0.104-0.15-0.22-0.291-0.351-0.419l0,0\r\n\t\t\t\tc-0.002-0.002-0.004-0.004-0.008-0.006c-0.166-0.165-0.358-0.302-0.561-0.425c-0.002-0.001-0.005-0.002-0.007-0.004\r\n\t\t\t\tc0,0-0.001,0-0.001-0.001c-0.285-0.171-0.594-0.305-0.93-0.373l0,0c-0.139-0.028-0.283-0.034-0.427-0.043\r\n\t\t\t\tC45.117,0.014,45.061,0,45,0H19c-1.243,0-2.309,0.756-2.764,1.832C16.084,2.191,16,2.586,16,3v9h32V2.969z M16,61\r\n\t\t\t\tc0,1.657,1.343,3,3,3h26c1.657,0,3-1.343,3-3V37H16V61z M22,43h20v3H22V43z M22,49h20v3H22V49z M22,55h20v3H22V55z"},"children":[{"name":"path","attribs":{"d":"M61,15H3c-1.657,0-3,1.343-3,3v28c0,1.657,1.343,3,3,3h10V34h38v15h10c1.657,0,3-1.343,3-3V18C64,16.343,62.657,15,61,15\r\n\t\t\t\tz M9,27c-1.657,0-3-1.343-3-3s1.343-3,3-3s3,1.343,3,3S10.657,27,9,27z M48,2.969h-0.003c0-0.001,0-0.002,0-0.003\r\n\t\t\t\tC47.99,2.351,47.8,1.782,47.477,1.309c-0.004-0.007-0.012-0.013-0.017-0.02c-0.104-0.15-0.22-0.291-0.351-0.419l0,0\r\n\t\t\t\tc-0.002-0.002-0.004-0.004-0.008-0.006c-0.166-0.165-0.358-0.302-0.561-0.425c-0.002-0.001-0.005-0.002-0.007-0.004\r\n\t\t\t\tc0,0-0.001,0-0.001-0.001c-0.285-0.171-0.594-0.305-0.93-0.373l0,0c-0.139-0.028-0.283-0.034-0.427-0.043\r\n\t\t\t\tC45.117,0.014,45.061,0,45,0H19c-1.243,0-2.309,0.756-2.764,1.832C16.084,2.191,16,2.586,16,3v9h32V2.969z M16,61\r\n\t\t\t\tc0,1.657,1.343,3,3,3h26c1.657,0,3-1.343,3-3V37H16V61z M22,43h20v3H22V43z M22,49h20v3H22V49z M22,55h20v3H22V55z"},"children":[]}]}]}]}]}]}]}]};exports.printer=printer;var progress={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"PROGRESS_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PROGRESS"},"children":[{"name":"g","attribs":{"id":"PROGRESS"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M26,29c-1.657,0-3,1.343-3,3v16c0,1.657,1.343,3,3,3s3-1.343,3-3V32C29,30.343,27.657,29,26,29z M14,37\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v8c0,1.657,1.343,3,3,3s3-1.343,3-3v-8C17,38.343,15.657,37,14,37z M50,13c-1.657,0-3,1.343-3,3v32\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3V16C53,14.343,51.657,13,50,13z M38,21c-1.657,0-3,1.343-3,3v24c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3V24C41,22.343,39.657,21,38,21z"},"children":[{"name":"path","attribs":{"d":"M26,29c-1.657,0-3,1.343-3,3v16c0,1.657,1.343,3,3,3s3-1.343,3-3V32C29,30.343,27.657,29,26,29z M14,37\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v8c0,1.657,1.343,3,3,3s3-1.343,3-3v-8C17,38.343,15.657,37,14,37z M50,13c-1.657,0-3,1.343-3,3v32\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3V16C53,14.343,51.657,13,50,13z M38,21c-1.657,0-3,1.343-3,3v24c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3V24C41,22.343,39.657,21,38,21z"},"children":[]}]}]}]}]}]}]}]};exports.progress=progress;var record={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"RECORD_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"RECORD"},"children":[{"name":"g","attribs":{"id":"RECORD"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"cx":"32","cy":"32","r":"14"},"children":[{"name":"circle","attribs":{"cx":"32","cy":"32","r":"14"},"children":[]}]}]}]}]}]}]}]};exports.record=record;var repeat={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"REPEAT"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,22c-1.657,0-3,1.343-3,3v7c0,6.627-5.373,12-12,12H26v0.003h-2.987v-0.005\r\n\t\t\tH21.24l1.878-1.879c0.543-0.543,0.878-1.293,0.878-2.122c0-1.657-1.343-3-2.999-3c-0.828,0-1.578,0.336-2.121,0.879l-6.998,7.001\r\n\t\t\tC11.336,45.42,11,46.17,11,46.999c0,0.829,0.336,1.578,0.878,2.122l6.998,7.001C19.42,56.664,20.169,57,20.998,57\r\n\t\t\tc1.657,0,2.999-1.343,2.999-3c0-0.829-0.336-1.578-0.878-2.122l-1.873-1.874H27V50h19c9.941,0,18-8.059,18-18v-7\r\n\t\t\tC64,23.343,62.657,22,61,22z M38,20v-0.004h2.987v0.005h1.773l-1.878,1.879c-0.543,0.543-0.879,1.293-0.879,2.122\r\n\t\t\tc0,1.657,1.343,3,2.999,3c0.828,0,1.578-0.336,2.121-0.879l6.998-7.001C52.664,18.58,53,17.83,53,17.001\r\n\t\t\tc0-0.829-0.336-1.579-0.878-2.122l-6.998-7.001C44.581,7.336,43.831,7,43.003,7c-1.657,0-2.999,1.344-2.999,3.001\r\n\t\t\tc0,0.828,0.336,1.579,0.879,2.122l1.873,1.874H37V14H18C8.059,14,0,22.059,0,32v7c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-7\r\n\t\t\tc0-6.627,5.373-12,12-12H38z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,22c-1.657,0-3,1.343-3,3v7c0,6.627-5.373,12-12,12H26v0.003h-2.987v-0.005\r\n\t\t\tH21.24l1.878-1.879c0.543-0.543,0.878-1.293,0.878-2.122c0-1.657-1.343-3-2.999-3c-0.828,0-1.578,0.336-2.121,0.879l-6.998,7.001\r\n\t\t\tC11.336,45.42,11,46.17,11,46.999c0,0.829,0.336,1.578,0.878,2.122l6.998,7.001C19.42,56.664,20.169,57,20.998,57\r\n\t\t\tc1.657,0,2.999-1.343,2.999-3c0-0.829-0.336-1.578-0.878-2.122l-1.873-1.874H27V50h19c9.941,0,18-8.059,18-18v-7\r\n\t\t\tC64,23.343,62.657,22,61,22z M38,20v-0.004h2.987v0.005h1.773l-1.878,1.879c-0.543,0.543-0.879,1.293-0.879,2.122\r\n\t\t\tc0,1.657,1.343,3,2.999,3c0.828,0,1.578-0.336,2.121-0.879l6.998-7.001C52.664,18.58,53,17.83,53,17.001\r\n\t\t\tc0-0.829-0.336-1.579-0.878-2.122l-6.998-7.001C44.581,7.336,43.831,7,43.003,7c-1.657,0-2.999,1.344-2.999,3.001\r\n\t\t\tc0,0.828,0.336,1.579,0.879,2.122l1.873,1.874H37V14H18C8.059,14,0,22.059,0,32v7c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-7\r\n\t\t\tc0-6.627,5.373-12,12-12H38z"},"children":[]}]}]}]}]}]};exports.repeat=repeat;var repeat_1={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"REPEAT_1_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"REPEAT_1"},"children":[{"name":"g","attribs":{"id":"REPEAT_1"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M45,20c0,1.657,1.343,3,3,3h13c1.657,0,3-1.343,3-3V8c0-1.657-1.343-3-3-3s-3,1.343-3,3v5.39C52.199,5.288,42.725,0,32,0\r\n\t\t\t\tC14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32c0-1.657-1.343-3-3-3s-3,1.343-3,3c0,14.359-11.641,26-26,26\r\n\t\t\t\tC17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6c8.77,0,16.512,4.348,21.218,11H48C46.343,17,45,18.343,45,20z"},"children":[{"name":"path","attribs":{"d":"M45,20c0,1.657,1.343,3,3,3h13c1.657,0,3-1.343,3-3V8c0-1.657-1.343-3-3-3s-3,1.343-3,3v5.39C52.199,5.288,42.725,0,32,0\r\n\t\t\t\tC14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32c0-1.657-1.343-3-3-3s-3,1.343-3,3c0,14.359-11.641,26-26,26\r\n\t\t\t\tC17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6c8.77,0,16.512,4.348,21.218,11H48C46.343,17,45,18.343,45,20z"},"children":[]}]}]}]}]}]}]}]};exports.repeat_1=repeat_1;var repeat_2={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"REPEAT_2_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"REPEAT_2"},"children":[{"name":"g","attribs":{"id":"REPEAT_2"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M61,29c-1.657,0-3,1.343-3,3c0,14.359-11.641,26-26,26c-8.768,0-16.506-4.348-21.207-11H16c1.657,0,3-1.343,3-3\r\n\t\t\t\ts-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3s3-1.343,3-3v-5.454C11.789,58.68,21.254,64,32,64\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,30.343,62.657,29,61,29z M61,5c-1.657,0-3,1.343-3,3v5.412C52.204,5.299,42.732,0,32,0\r\n\t\t\t\tC14.327,0,0,14.327,0,32c0,1.657,1.343,3,3,3s3-1.343,3-3C6,17.641,17.641,6,32,6c8.76,0,16.469,4.355,21.167,11H48\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h13c1.657,0,3-1.343,3-3V8C64,6.343,62.657,5,61,5z"},"children":[{"name":"path","attribs":{"d":"M61,29c-1.657,0-3,1.343-3,3c0,14.359-11.641,26-26,26c-8.768,0-16.506-4.348-21.207-11H16c1.657,0,3-1.343,3-3\r\n\t\t\t\ts-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3s3-1.343,3-3v-5.454C11.789,58.68,21.254,64,32,64\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,30.343,62.657,29,61,29z M61,5c-1.657,0-3,1.343-3,3v5.412C52.204,5.299,42.732,0,32,0\r\n\t\t\t\tC14.327,0,0,14.327,0,32c0,1.657,1.343,3,3,3s3-1.343,3-3C6,17.641,17.641,6,32,6c8.76,0,16.469,4.355,21.167,11H48\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h13c1.657,0,3-1.343,3-3V8C64,6.343,62.657,5,61,5z"},"children":[]}]}]}]}]}]}]}]};exports.repeat_2=repeat_2;var resize_1={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"RESIZE_1_3_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"RESIZE_1_2_"},"children":[{"name":"g","attribs":{"id":"RESIZE_1_2_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M28.157,23.914L13.243,9H18c1.657,0,3-1.343,3-3s-1.343-3-3-3H6C4.343,3,3,4.343,3,6v12c0,1.657,1.343,3,3,3s3-1.343,3-3\r\n\t\t\t\tv-4.757l14.914,14.914l0.003-0.003C24.457,28.676,25.19,29,26,29c1.657,0,3-1.343,3-3c0-0.81-0.324-1.543-0.847-2.083\r\n\t\t\t\tL28.157,23.914z M26,35c-0.81,0-1.543,0.325-2.082,0.848l-0.003-0.004L9,50.757V46c0-1.657-1.343-3-3-3s-3,1.343-3,3v12\r\n\t\t\t\tc0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3s-1.343-3-3-3h-4.757l14.914-14.914l-0.003-0.003C28.676,39.543,29,38.811,29,38\r\n\t\t\t\tC29,36.343,27.657,35,26,35z M58,43c-1.657,0-3,1.343-3,3v4.757L40.086,35.843l-0.003,0.003C39.543,35.325,38.811,35,38,35\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.811,0.324,1.543,0.848,2.083l-0.004,0.003L50.757,55H46c-1.657,0-3,1.343-3,3s1.343,3,3,3h12\r\n\t\t\t\tc1.657,0,3-1.343,3-3V46C61,44.343,59.657,43,58,43z M58,3H46c-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757L35.843,23.914l0.003,0.003\r\n\t\t\t\tC35.325,24.457,35,25.19,35,26c0,1.657,1.343,3,3,3c0.811,0,1.543-0.325,2.083-0.847l0.003,0.003L55,13.243V18\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3V6C61,4.343,59.657,3,58,3z"},"children":[{"name":"path","attribs":{"d":"M28.157,23.914L13.243,9H18c1.657,0,3-1.343,3-3s-1.343-3-3-3H6C4.343,3,3,4.343,3,6v12c0,1.657,1.343,3,3,3s3-1.343,3-3\r\n\t\t\t\tv-4.757l14.914,14.914l0.003-0.003C24.457,28.676,25.19,29,26,29c1.657,0,3-1.343,3-3c0-0.81-0.324-1.543-0.847-2.083\r\n\t\t\t\tL28.157,23.914z M26,35c-0.81,0-1.543,0.325-2.082,0.848l-0.003-0.004L9,50.757V46c0-1.657-1.343-3-3-3s-3,1.343-3,3v12\r\n\t\t\t\tc0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3s-1.343-3-3-3h-4.757l14.914-14.914l-0.003-0.003C28.676,39.543,29,38.811,29,38\r\n\t\t\t\tC29,36.343,27.657,35,26,35z M58,43c-1.657,0-3,1.343-3,3v4.757L40.086,35.843l-0.003,0.003C39.543,35.325,38.811,35,38,35\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.811,0.324,1.543,0.848,2.083l-0.004,0.003L50.757,55H46c-1.657,0-3,1.343-3,3s1.343,3,3,3h12\r\n\t\t\t\tc1.657,0,3-1.343,3-3V46C61,44.343,59.657,43,58,43z M58,3H46c-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757L35.843,23.914l0.003,0.003\r\n\t\t\t\tC35.325,24.457,35,25.19,35,26c0,1.657,1.343,3,3,3c0.811,0,1.543-0.325,2.083-0.847l0.003,0.003L55,13.243V18\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3V6C61,4.343,59.657,3,58,3z"},"children":[]}]}]}]}]}]}]}]};exports.resize_1=resize_1;var resize_2={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"RESIZE_2_3_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"RESIZE_2_2_"},"children":[{"name":"g","attribs":{"id":"RESIZE_2_2_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M26,35H14c-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757L3.843,55.914l0.003,0.003C3.325,56.457,3,57.189,3,58\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.81,0,1.543-0.325,2.082-0.848l0.003,0.004L23,45.243V50c0,1.657,1.343,3,3,3s3-1.343,3-3V38\r\n\t\t\t\tC29,36.343,27.657,35,26,35z M38,29h12c1.657,0,3-1.343,3-3s-1.343-3-3-3h-4.757L60.157,8.086l-0.003-0.003\r\n\t\t\t\tC60.676,7.543,61,6.81,61,6c0-1.657-1.343-3-3-3c-0.811,0-1.543,0.325-2.083,0.847l-0.003-0.003L41,18.758V14\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v12C35,27.657,36.343,29,38,29z M60.157,55.914L45.243,41H50c1.657,0,3-1.343,3-3s-1.343-3-3-3\r\n\t\t\t\tH38c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3s3-1.343,3-3v-4.757l14.914,14.914l0.003-0.003C56.457,60.676,57.189,61,58,61\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.811-0.325-1.543-0.848-2.083L60.157,55.914z M26,11c-1.657,0-3,1.343-3,3v4.757L8.086,3.843\r\n\t\t\t\tL8.083,3.847C7.543,3.325,6.81,3,6,3C4.343,3,3,4.343,3,6c0,0.81,0.325,1.543,0.847,2.082L3.843,8.086L18.757,23H14\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h12c1.657,0,3-1.343,3-3V14C29,12.343,27.657,11,26,11z"},"children":[{"name":"path","attribs":{"d":"M26,35H14c-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757L3.843,55.914l0.003,0.003C3.325,56.457,3,57.189,3,58\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.81,0,1.543-0.325,2.082-0.848l0.003,0.004L23,45.243V50c0,1.657,1.343,3,3,3s3-1.343,3-3V38\r\n\t\t\t\tC29,36.343,27.657,35,26,35z M38,29h12c1.657,0,3-1.343,3-3s-1.343-3-3-3h-4.757L60.157,8.086l-0.003-0.003\r\n\t\t\t\tC60.676,7.543,61,6.81,61,6c0-1.657-1.343-3-3-3c-0.811,0-1.543,0.325-2.083,0.847l-0.003-0.003L41,18.758V14\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v12C35,27.657,36.343,29,38,29z M60.157,55.914L45.243,41H50c1.657,0,3-1.343,3-3s-1.343-3-3-3\r\n\t\t\t\tH38c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3s3-1.343,3-3v-4.757l14.914,14.914l0.003-0.003C56.457,60.676,57.189,61,58,61\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.811-0.325-1.543-0.848-2.083L60.157,55.914z M26,11c-1.657,0-3,1.343-3,3v4.757L8.086,3.843\r\n\t\t\t\tL8.083,3.847C7.543,3.325,6.81,3,6,3C4.343,3,3,4.343,3,6c0,0.81,0.325,1.543,0.847,2.082L3.843,8.086L18.757,23H14\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h12c1.657,0,3-1.343,3-3V14C29,12.343,27.657,11,26,11z"},"children":[]}]}]}]}]}]}]}]};exports.resize_2=resize_2;var resize_3={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"RESIZE_1_4_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"RESIZE_1_1_"},"children":[{"name":"g","attribs":{"id":"RESIZE_1_1_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M26,35c-0.828,0-1.579,0.336-2.121,0.879L9,50.758V46c0-1.657-1.343-3-3-3s-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12\r\n\t\t\t\tc1.657,0,3-1.343,3-3s-1.343-3-3-3h-4.757l14.879-14.879C28.664,39.579,29,38.828,29,38C29,36.343,27.657,35,26,35z M58,3H46\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757L35.879,23.879C35.336,24.422,35,25.172,35,26c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L55,13.243V18c0,1.657,1.343,3,3,3s3-1.343,3-3V6C61,4.343,59.657,3,58,3z"},"children":[{"name":"path","attribs":{"d":"M26,35c-0.828,0-1.579,0.336-2.121,0.879L9,50.758V46c0-1.657-1.343-3-3-3s-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12\r\n\t\t\t\tc1.657,0,3-1.343,3-3s-1.343-3-3-3h-4.757l14.879-14.879C28.664,39.579,29,38.828,29,38C29,36.343,27.657,35,26,35z M58,3H46\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757L35.879,23.879C35.336,24.422,35,25.172,35,26c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L55,13.243V18c0,1.657,1.343,3,3,3s3-1.343,3-3V6C61,4.343,59.657,3,58,3z"},"children":[]}]}]}]}]}]}]}]};exports.resize_3=resize_3;var resize_4={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"RESIZE_2_4_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"RESIZE_2_1_"},"children":[{"name":"g","attribs":{"id":"RESIZE_2_1_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M61,6c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L41,18.757V14c0-1.657-1.343-3-3-3s-3,1.343-3,3v12\r\n\t\t\t\tc0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3s-1.343-3-3-3h-4.757L60.121,8.121C60.664,7.579,61,6.828,61,6z M26,35H14\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757L3.879,55.879C3.336,56.422,3,57.172,3,58c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L23,45.243V50c0,1.657,1.343,3,3,3s3-1.343,3-3V38C29,36.343,27.657,35,26,35z"},"children":[{"name":"path","attribs":{"d":"M61,6c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L41,18.757V14c0-1.657-1.343-3-3-3s-3,1.343-3,3v12\r\n\t\t\t\tc0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3s-1.343-3-3-3h-4.757L60.121,8.121C60.664,7.579,61,6.828,61,6z M26,35H14\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757L3.879,55.879C3.336,56.422,3,57.172,3,58c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L23,45.243V50c0,1.657,1.343,3,3,3s3-1.343,3-3V38C29,36.343,27.657,35,26,35z"},"children":[]}]}]}]}]}]}]}]};exports.resize_4=resize_4;var resize_5={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"RESIZE_1_5_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"RESIZE_1"},"children":[{"name":"g","attribs":{"id":"RESIZE_1"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M18,43c-0.828,0-1.578,0.336-2.121,0.879L6,53.757V49c0-1.657-1.343-3-3-3s-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12\r\n\t\t\t\tc1.657,0,3-1.343,3-3s-1.343-3-3-3h-4.757l9.879-9.879C20.664,47.578,21,46.829,21,46C21,44.343,19.657,43,18,43z M61,0H49\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757l-9.879,9.879C43.336,16.422,43,17.172,43,18c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L58,10.243V15c0,1.657,1.343,3,3,3s3-1.343,3-3V3C64,1.343,62.657,0,61,0z M32,23\r\n\t\t\t\tc-4.971,0-9,4.029-9,9c0,4.971,4.029,9,9,9c4.971,0,9-4.029,9-9C41,27.029,36.971,23,32,23z"},"children":[{"name":"path","attribs":{"d":"M18,43c-0.828,0-1.578,0.336-2.121,0.879L6,53.757V49c0-1.657-1.343-3-3-3s-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12\r\n\t\t\t\tc1.657,0,3-1.343,3-3s-1.343-3-3-3h-4.757l9.879-9.879C20.664,47.578,21,46.829,21,46C21,44.343,19.657,43,18,43z M61,0H49\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757l-9.879,9.879C43.336,16.422,43,17.172,43,18c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L58,10.243V15c0,1.657,1.343,3,3,3s3-1.343,3-3V3C64,1.343,62.657,0,61,0z M32,23\r\n\t\t\t\tc-4.971,0-9,4.029-9,9c0,4.971,4.029,9,9,9c4.971,0,9-4.029,9-9C41,27.029,36.971,23,32,23z"},"children":[]}]}]}]}]}]}]}]};exports.resize_5=resize_5;var resize_6={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"RESIZE_2_5_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"RESIZE_2"},"children":[{"name":"g","attribs":{"id":"RESIZE_2"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M18,43H6c-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757l-9.879,9.879C0.336,59.422,0,60.172,0,61c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L15,53.243V58c0,1.657,1.343,3,3,3s3-1.343,3-3V46C21,44.343,19.657,43,18,43z M32,23\r\n\t\t\t\tc-4.971,0-9,4.029-9,9c0,4.971,4.029,9,9,9c4.971,0,9-4.029,9-9C41,27.029,36.971,23,32,23z M64,3c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L49,10.757V6c0-1.657-1.343-3-3-3s-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3\r\n\t\t\t\ts-1.343-3-3-3h-4.757l9.879-9.879C63.664,4.578,64,3.829,64,3z"},"children":[{"name":"path","attribs":{"d":"M18,43H6c-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757l-9.879,9.879C0.336,59.422,0,60.172,0,61c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L15,53.243V58c0,1.657,1.343,3,3,3s3-1.343,3-3V46C21,44.343,19.657,43,18,43z M32,23\r\n\t\t\t\tc-4.971,0-9,4.029-9,9c0,4.971,4.029,9,9,9c4.971,0,9-4.029,9-9C41,27.029,36.971,23,32,23z M64,3c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L49,10.757V6c0-1.657-1.343-3-3-3s-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3\r\n\t\t\t\ts-1.343-3-3-3h-4.757l9.879-9.879C63.664,4.578,64,3.829,64,3z"},"children":[]}]}]}]}]}]}]}]};exports.resize_6=resize_6;var rewind={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"REWIND_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"REWIND"},"children":[{"name":"g","attribs":{"id":"REWIND"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M48,19c-0.584,0-1.129,0.168-1.59,0.456l0,0L35,26.587V22c0-1.657-1.343-3-3-3c-0.584,0-1.129,0.168-1.59,0.456l0,0\r\n\t\t\t\tl-15.962,9.976c-0.005,0.003-0.011,0.007-0.016,0.01l-0.023,0.014l0,0C13.564,29.987,13,30.927,13,32s0.564,2.014,1.41,2.544l0,0\r\n\t\t\t\tl0.023,0.015c0.005,0.002,0.01,0.006,0.016,0.01l15.962,9.976l0,0C30.871,44.833,31.416,45,32,45c1.657,0,3-1.343,3-3v-4.587\r\n\t\t\t\tl11.41,7.131l0,0C46.871,44.833,47.416,45,48,45c1.657,0,3-1.343,3-3V22C51,20.343,49.657,19,48,19z"},"children":[{"name":"path","attribs":{"d":"M48,19c-0.584,0-1.129,0.168-1.59,0.456l0,0L35,26.587V22c0-1.657-1.343-3-3-3c-0.584,0-1.129,0.168-1.59,0.456l0,0\r\n\t\t\t\tl-15.962,9.976c-0.005,0.003-0.011,0.007-0.016,0.01l-0.023,0.014l0,0C13.564,29.987,13,30.927,13,32s0.564,2.014,1.41,2.544l0,0\r\n\t\t\t\tl0.023,0.015c0.005,0.002,0.01,0.006,0.016,0.01l15.962,9.976l0,0C30.871,44.833,31.416,45,32,45c1.657,0,3-1.343,3-3v-4.587\r\n\t\t\t\tl11.41,7.131l0,0C46.871,44.833,47.416,45,48,45c1.657,0,3-1.343,3-3V22C51,20.343,49.657,19,48,19z"},"children":[]}]}]}]}]}]}]}]};exports.rewind=rewind;var rss={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"RSS_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"RSS"},"children":[{"name":"g","attribs":{"id":"RSS"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M8,48c-4.418,0-8,3.582-8,8s3.582,8,8,8s8-3.582,8-8S12.418,48,8,48z M0,23v11c16.569,0,30,13.432,30,30h11\r\n\t\t\t\tC41,41.355,22.644,23,0,23z M0,0v11c29.271,0,53,23.729,53,53h11C64,28.654,35.346,0,0,0z"},"children":[{"name":"path","attribs":{"d":"M8,48c-4.418,0-8,3.582-8,8s3.582,8,8,8s8-3.582,8-8S12.418,48,8,48z M0,23v11c16.569,0,30,13.432,30,30h11\r\n\t\t\t\tC41,41.355,22.644,23,0,23z M0,0v11c29.271,0,53,23.729,53,53h11C64,28.654,35.346,0,0,0z"},"children":[]}]}]}]}]}]}]}]};exports.rss=rss;var screen_expand_1={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"SCREEN_EXPAND_1_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SCREEN_EXPAND_1"},"children":[{"name":"g","attribs":{"id":"SCREEN_EXPAND_1"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M15,58H6v-9c0-1.657-1.343-3-3-3s-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3S16.657,58,15,58z M9,55h46\r\n\t\t\t\tV9H9V55z M15,15h34v34H15V15z M61,0H49l0,0c-1.657,0-3,1.343-3,3s1.343,3,3,3l0,0h9v9c0,1.657,1.343,3,3,3s3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z"},"children":[{"name":"path","attribs":{"d":"M15,58H6v-9c0-1.657-1.343-3-3-3s-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3S16.657,58,15,58z M9,55h46\r\n\t\t\t\tV9H9V55z M15,15h34v34H15V15z M61,0H49l0,0c-1.657,0-3,1.343-3,3s1.343,3,3,3l0,0h9v9c0,1.657,1.343,3,3,3s3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z"},"children":[]}]}]}]}]}]}]}]};exports.screen_expand_1=screen_expand_1;var screen_expand_2={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"SCREEN_EXPAND_2_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SCREEN_EXPAND_2"},"children":[{"name":"g","attribs":{"id":"SCREEN_EXPAND_2"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M15,6c1.657,0,3-1.343,3-3s-1.343-3-3-3l0,0H3C1.343,0,0,1.343,0,3v12l0,0c0,1.657,1.343,3,3,3s3-1.343,3-3V6H15L15,6z\r\n\t\t\t\t M64,49c0-1.657-1.343-3-3-3s-3,1.343-3,3l0,0v9h-9c-1.657,0-3,1.343-3,3s1.343,3,3,3h12c1.657,0,3-1.343,3-3V49L64,49z M55,9H9\r\n\t\t\t\tv46h46V9z M49,49H15V15h34V49z"},"children":[{"name":"path","attribs":{"d":"M15,6c1.657,0,3-1.343,3-3s-1.343-3-3-3l0,0H3C1.343,0,0,1.343,0,3v12l0,0c0,1.657,1.343,3,3,3s3-1.343,3-3V6H15L15,6z\r\n\t\t\t\t M64,49c0-1.657-1.343-3-3-3s-3,1.343-3,3l0,0v9h-9c-1.657,0-3,1.343-3,3s1.343,3,3,3h12c1.657,0,3-1.343,3-3V49L64,49z M55,9H9\r\n\t\t\t\tv46h46V9z M49,49H15V15h34V49z"},"children":[]}]}]}]}]}]}]}]};exports.screen_expand_2=screen_expand_2;var screen_expand_3={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"SCREEN_EXPAND_3_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SCREEN_EXPAND_3"},"children":[{"name":"g","attribs":{"id":"SCREEN_EXPAND_3"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M3,18c1.657,0,3-1.343,3-3V6h9l0,0c1.657,0,3-1.343,3-3s-1.343-3-3-3H3C1.343,0,0,1.343,0,3v12l0,0\r\n\t\t\t\tC0,16.657,1.343,18,3,18z M9,55h46V9H9V55z M15,15h34v34H15V15z M61,46c-1.657,0-3,1.343-3,3l0,0v9h-9c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h12c1.657,0,3-1.343,3-3V49C64,47.343,62.657,46,61,46z M15,58H6v-9c0-1.657-1.343-3-3-3s-3,1.343-3,3l0,0v12\r\n\t\t\t\tc0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3S16.657,58,15,58z M61,0H49l0,0c-1.657,0-3,1.343-3,3s1.343,3,3,3l0,0h9v9l0,0\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3V3C64,1.343,62.657,0,61,0z"},"children":[{"name":"path","attribs":{"d":"M3,18c1.657,0,3-1.343,3-3V6h9l0,0c1.657,0,3-1.343,3-3s-1.343-3-3-3H3C1.343,0,0,1.343,0,3v12l0,0\r\n\t\t\t\tC0,16.657,1.343,18,3,18z M9,55h46V9H9V55z M15,15h34v34H15V15z M61,46c-1.657,0-3,1.343-3,3l0,0v9h-9c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h12c1.657,0,3-1.343,3-3V49C64,47.343,62.657,46,61,46z M15,58H6v-9c0-1.657-1.343-3-3-3s-3,1.343-3,3l0,0v12\r\n\t\t\t\tc0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3S16.657,58,15,58z M61,0H49l0,0c-1.657,0-3,1.343-3,3s1.343,3,3,3l0,0h9v9l0,0\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3V3C64,1.343,62.657,0,61,0z"},"children":[]}]}]}]}]}]}]}]};exports.screen_expand_3=screen_expand_3;var share={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"SHARE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SHARE"},"children":[{"name":"g","attribs":{"id":"SHARE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M52,26.168V52H12V12h25.832C37.316,11.114,37,10.098,37,9c0-1.099,0.316-2.114,0.832-3H9C7.343,6,6,7.343,6,9v46\r\n\t\t\t\tc0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V26.168C57.113,26.683,56.1,27,55,27C53.902,27,52.887,26.683,52,26.168z M55,6H43\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757L32.843,26.914l0.003,0.003C32.325,27.457,32,28.19,32,29c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.811,0,1.543-0.325,2.082-0.847l0.003,0.003L52,16.243V21c0,1.657,1.343,3,2.999,3H55c1.657,0,3-1.343,3-3V9\r\n\t\t\t\tC58,7.343,56.657,6,55,6z"},"children":[{"name":"path","attribs":{"d":"M52,26.168V52H12V12h25.832C37.316,11.114,37,10.098,37,9c0-1.099,0.316-2.114,0.832-3H9C7.343,6,6,7.343,6,9v46\r\n\t\t\t\tc0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V26.168C57.113,26.683,56.1,27,55,27C53.902,27,52.887,26.683,52,26.168z M55,6H43\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757L32.843,26.914l0.003,0.003C32.325,27.457,32,28.19,32,29c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.811,0,1.543-0.325,2.082-0.847l0.003,0.003L52,16.243V21c0,1.657,1.343,3,2.999,3H55c1.657,0,3-1.343,3-3V9\r\n\t\t\t\tC58,7.343,56.657,6,55,6z"},"children":[]}]}]}]}]}]}]}]};exports.share=share;var share_2={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"SHARE_2_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SHARE_2"},"children":[{"name":"g","attribs":{"id":"SHARE_2"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M23,16c0.885,0,1.673-0.39,2.222-1l0.008,0.007L29,10.818V29c0,1.657,1.343,3,3,3s3-1.343,3-3V10.818l3.77,4.189\r\n\t\t\t\tL38.777,15c0.55,0.61,1.338,1,2.223,1c1.657,0,3-1.343,3-3c0-0.772-0.299-1.468-0.777-2l0.008-0.007l-9-10L34.223,1\r\n\t\t\t\tC33.673,0.391,32.885,0,32,0s-1.673,0.39-2.222,1L29.77,0.993l-9,10L20.778,11C20.3,11.532,20,12.228,20,13\r\n\t\t\t\tC20,14.657,21.343,16,23,16z M51,20H38v6h10v32H16V26h9v-6H13c-1.657,0-3,1.343-3,3v38c0,1.657,1.343,3,3,3h38\r\n\t\t\t\tc1.657,0,3-1.343,3-3V23C54,21.343,52.657,20,51,20z"},"children":[{"name":"path","attribs":{"d":"M23,16c0.885,0,1.673-0.39,2.222-1l0.008,0.007L29,10.818V29c0,1.657,1.343,3,3,3s3-1.343,3-3V10.818l3.77,4.189\r\n\t\t\t\tL38.777,15c0.55,0.61,1.338,1,2.223,1c1.657,0,3-1.343,3-3c0-0.772-0.299-1.468-0.777-2l0.008-0.007l-9-10L34.223,1\r\n\t\t\t\tC33.673,0.391,32.885,0,32,0s-1.673,0.39-2.222,1L29.77,0.993l-9,10L20.778,11C20.3,11.532,20,12.228,20,13\r\n\t\t\t\tC20,14.657,21.343,16,23,16z M51,20H38v6h10v32H16V26h9v-6H13c-1.657,0-3,1.343-3,3v38c0,1.657,1.343,3,3,3h38\r\n\t\t\t\tc1.657,0,3-1.343,3-3V23C54,21.343,52.657,20,51,20z"},"children":[]}]}]}]}]}]}]}]};exports.share_2=share_2;var shop={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"SHOP_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SHOP"},"children":[{"name":"g","attribs":{"id":"SHOP"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M10,9h44c1.657,0,3-1.343,3-3s-1.343-3-3-3H10C8.343,3,7,4.343,7,6S8.343,9,10,9z M58.375,12H5.625L0,27\r\n\t\t\t\tc0,4.418,3.582,8,8,8s8-3.582,8-8c0,4.418,3.582,8,8,8s8-3.582,8-8c0,4.418,3.582,8,8,8s8-3.582,8-8c0,4.418,3.582,8,8,8\r\n\t\t\t\ts8-3.582,8-8L58.375,12z M55,37.952V37.95c-0.287-0.026-0.57-0.069-0.85-0.117c-0.061-0.01-0.123-0.015-0.183-0.026\r\n\t\t\t\tc-0.13-0.023-0.256-0.061-0.384-0.09C53.042,37.593,52.51,37.439,52,37.24V52H12V37.239c-0.51,0.2-1.042,0.354-1.586,0.478\r\n\t\t\t\tc-0.128,0.029-0.253,0.065-0.382,0.09c-0.06,0.012-0.122,0.017-0.183,0.027C9.569,37.88,9.287,37.924,9,37.95v0.002\r\n\t\t\t\tC8.671,37.982,8.338,38,8,38c-0.684,0-1.351-0.07-2-0.189V58c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V37.811\r\n\t\t\t\tC57.352,37.93,56.684,38,56,38C55.663,38,55.329,37.982,55,37.952z"},"children":[{"name":"path","attribs":{"d":"M10,9h44c1.657,0,3-1.343,3-3s-1.343-3-3-3H10C8.343,3,7,4.343,7,6S8.343,9,10,9z M58.375,12H5.625L0,27\r\n\t\t\t\tc0,4.418,3.582,8,8,8s8-3.582,8-8c0,4.418,3.582,8,8,8s8-3.582,8-8c0,4.418,3.582,8,8,8s8-3.582,8-8c0,4.418,3.582,8,8,8\r\n\t\t\t\ts8-3.582,8-8L58.375,12z M55,37.952V37.95c-0.287-0.026-0.57-0.069-0.85-0.117c-0.061-0.01-0.123-0.015-0.183-0.026\r\n\t\t\t\tc-0.13-0.023-0.256-0.061-0.384-0.09C53.042,37.593,52.51,37.439,52,37.24V52H12V37.239c-0.51,0.2-1.042,0.354-1.586,0.478\r\n\t\t\t\tc-0.128,0.029-0.253,0.065-0.382,0.09c-0.06,0.012-0.122,0.017-0.183,0.027C9.569,37.88,9.287,37.924,9,37.95v0.002\r\n\t\t\t\tC8.671,37.982,8.338,38,8,38c-0.684,0-1.351-0.07-2-0.189V58c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V37.811\r\n\t\t\t\tC57.352,37.93,56.684,38,56,38C55.663,38,55.329,37.982,55,37.952z"},"children":[]}]}]}]}]}]}]}]};exports.shop=shop;var shopping_bag={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"SHOPPING_BAG_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SHOPPING_BAG"},"children":[{"name":"g","attribs":{"id":"SHOPPING_BAG"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M6,61c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3v-3H6V61z M55,15h-8c0-8.284-6.716-15-15-15S17,6.716,17,15H9\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v37h52V18C58,16.343,56.657,15,55,15z M23,15c0-4.971,4.029-9,9-9c4.971,0,9,4.03,9,9H23z"},"children":[{"name":"path","attribs":{"d":"M6,61c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3v-3H6V61z M55,15h-8c0-8.284-6.716-15-15-15S17,6.716,17,15H9\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v37h52V18C58,16.343,56.657,15,55,15z M23,15c0-4.971,4.029-9,9-9c4.971,0,9,4.03,9,9H23z"},"children":[]}]}]}]}]}]}]}]};exports.shopping_bag=shopping_bag;var shopping_cart={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"SHOPPING_CART_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SHOPPING_CART"},"children":[{"name":"g","attribs":{"id":"SHOPPING_CART"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M52.2,39.993c1.132-0.074,2.092-0.776,2.536-1.763l0,0l9-20l-0.006-0.002C63.9,17.853,64,17.439,64,17\r\n\t\t\t\tc0-1.657-1.343-3-3-3H16.578l-1.747-4.991L14.82,9.013C14.411,7.844,13.309,7,12,7H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h6.872\r\n\t\t\t\tl11.55,33H16c-3.314,0-6,2.686-6,6s2.686,6,6,6s6-2.686,6-6h28c0,3.314,2.686,6,6,6s6-2.686,6-6s-2.686-6-6-6H27.778\r\n\t\t\t\tl-1.497-4.279L52.2,39.993L52.2,39.993z M24.224,35.846L18.679,20h37.68l-6.356,14.127L24.224,35.846z"},"children":[{"name":"path","attribs":{"d":"M52.2,39.993c1.132-0.074,2.092-0.776,2.536-1.763l0,0l9-20l-0.006-0.002C63.9,17.853,64,17.439,64,17\r\n\t\t\t\tc0-1.657-1.343-3-3-3H16.578l-1.747-4.991L14.82,9.013C14.411,7.844,13.309,7,12,7H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h6.872\r\n\t\t\t\tl11.55,33H16c-3.314,0-6,2.686-6,6s2.686,6,6,6s6-2.686,6-6h28c0,3.314,2.686,6,6,6s6-2.686,6-6s-2.686-6-6-6H27.778\r\n\t\t\t\tl-1.497-4.279L52.2,39.993L52.2,39.993z M24.224,35.846L18.679,20h37.68l-6.356,14.127L24.224,35.846z"},"children":[]}]}]}]}]}]}]}]};exports.shopping_cart=shopping_cart;var shopping_cart_add={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"Background_xA0_Image_1_","display":"none"},"children":[{"name":"image","attribs":{"display":"inline","overflow":"visible","width":"64","height":"64","id":"Background_xA0_Image"},"children":[{"name":"image","attribs":{"display":"inline","overflow":"visible","width":"64","height":"64","id":"Background_xA0_Image"},"children":[]}]}]},{"name":"g","attribs":{"id":"paypal_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"paypal","display":"inline"},"children":[{"name":"g","attribs":{"id":"paypal","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M34.878,24.706c0.474-0.299,0.925-0.635,1.335-1.018\r\n\t\t\t\tc1.145-1.061,2.006-2.423,2.369-3.916c0.633-2.24-0.102-4.184-1.617-5.26c-0.797-0.566-1.808-0.901-2.955-0.901h-6.65\r\n\t\t\t\tl-0.214,0.901L24.45,25.935h6.372C32.234,25.935,33.643,25.473,34.878,24.706z M30.925,18.05h3.086\r\n\t\t\t\tc0.16,0,0.255,0.026,0.302,0.043c0.01,0.067,0.018,0.22-0.057,0.48l-0.023,0.082l-0.018,0.082\r\n\t\t\t\tc-0.346,1.418-1.994,2.76-3.394,2.76h-0.712L30.925,18.05z M60.612,16.282c-1.296-1.592-2.929-2.913-4.783-3.928\r\n\t\t\t\tc-0.61-2.671-1.803-4.704-2.976-6.148C49.714,2.346,44.585,0.033,39.117,0H12.265l-0.787,3.458L1.224,48.519L0,53.901v0.031\r\n\t\t\t\th10.042l-1.058,4.661L7.752,64h22.802l0.774-3.476l2.55-11.441h6.089c11.803,0,21.03-7.176,23.507-18.278\r\n\t\t\t\tc0.368-1.649,0.522-3.163,0.526-4.557v-0.456C63.904,21.396,62.235,18.281,60.612,16.282z M5.606,49.491L15.861,4.43H39\r\n\t\t\t\tc4.283,0,9.005,1.916,11.316,5.974c0.796,1.398,1.306,3.051,1.413,4.969c0.075,1.334-0.044,2.801-0.4,4.398\r\n\t\t\t\tc-0.812,3.64-2.499,6.678-4.796,9.048c-3.51,3.625-8.462,5.651-13.979,5.732c-0.116,0.003-0.228,0.013-0.343,0.013h-9.701\r\n\t\t\t\tl-3.324,14.926H5.606z M59.087,29.848c-2.077,9.316-9.837,14.796-19.12,14.796h-9.699L26.943,59.57H13.366l1.283-5.638h8.147\r\n\t\t\t\tl0.777-3.485l2.547-11.441h6.09c11.801,0,21.027-7.176,23.505-18.275c0.209-0.941,0.348-1.837,0.434-2.696\r\n\t\t\t\tC58.802,20.547,60.295,24.44,59.087,29.848z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M34.878,24.706c0.474-0.299,0.925-0.635,1.335-1.018\r\n\t\t\t\tc1.145-1.061,2.006-2.423,2.369-3.916c0.633-2.24-0.102-4.184-1.617-5.26c-0.797-0.566-1.808-0.901-2.955-0.901h-6.65\r\n\t\t\t\tl-0.214,0.901L24.45,25.935h6.372C32.234,25.935,33.643,25.473,34.878,24.706z M30.925,18.05h3.086\r\n\t\t\t\tc0.16,0,0.255,0.026,0.302,0.043c0.01,0.067,0.018,0.22-0.057,0.48l-0.023,0.082l-0.018,0.082\r\n\t\t\t\tc-0.346,1.418-1.994,2.76-3.394,2.76h-0.712L30.925,18.05z M60.612,16.282c-1.296-1.592-2.929-2.913-4.783-3.928\r\n\t\t\t\tc-0.61-2.671-1.803-4.704-2.976-6.148C49.714,2.346,44.585,0.033,39.117,0H12.265l-0.787,3.458L1.224,48.519L0,53.901v0.031\r\n\t\t\t\th10.042l-1.058,4.661L7.752,64h22.802l0.774-3.476l2.55-11.441h6.089c11.803,0,21.03-7.176,23.507-18.278\r\n\t\t\t\tc0.368-1.649,0.522-3.163,0.526-4.557v-0.456C63.904,21.396,62.235,18.281,60.612,16.282z M5.606,49.491L15.861,4.43H39\r\n\t\t\t\tc4.283,0,9.005,1.916,11.316,5.974c0.796,1.398,1.306,3.051,1.413,4.969c0.075,1.334-0.044,2.801-0.4,4.398\r\n\t\t\t\tc-0.812,3.64-2.499,6.678-4.796,9.048c-3.51,3.625-8.462,5.651-13.979,5.732c-0.116,0.003-0.228,0.013-0.343,0.013h-9.701\r\n\t\t\t\tl-3.324,14.926H5.606z M59.087,29.848c-2.077,9.316-9.837,14.796-19.12,14.796h-9.699L26.943,59.57H13.366l1.283-5.638h8.147\r\n\t\t\t\tl0.777-3.485l2.547-11.441h6.09c11.801,0,21.027-7.176,23.505-18.275c0.209-0.941,0.348-1.837,0.434-2.696\r\n\t\t\t\tC58.802,20.547,60.295,24.44,59.087,29.848z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"linkedin_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"linkedin","display":"inline"},"children":[{"name":"g","attribs":{"id":"linkedin","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M0.798,62.987h14.315V22.368H0.798V62.987z M48.433,21.087\r\n\t\t\t\tc-5.924,0-9.192,1.972-12.952,6.749v-5.469H21.189v40.619h14.291V40.914c0-4.658,2.24-9.214,7.596-9.214\r\n\t\t\t\tc5.356,0,6.673,4.555,6.673,9.103v22.184H64V39.896C64,23.854,54.362,21.087,48.433,21.087z M7.982,2.013\r\n\t\t\t\tC3.572,2.013,0,5.222,0,9.183c0,3.958,3.572,7.162,7.982,7.162c4.406,0,7.978-3.205,7.978-7.162\r\n\t\t\t\tC15.96,5.222,12.388,2.013,7.982,2.013z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M0.798,62.987h14.315V22.368H0.798V62.987z M48.433,21.087\r\n\t\t\t\tc-5.924,0-9.192,1.972-12.952,6.749v-5.469H21.189v40.619h14.291V40.914c0-4.658,2.24-9.214,7.596-9.214\r\n\t\t\t\tc5.356,0,6.673,4.555,6.673,9.103v22.184H64V39.896C64,23.854,54.362,21.087,48.433,21.087z M7.982,2.013\r\n\t\t\t\tC3.572,2.013,0,5.222,0,9.183c0,3.958,3.572,7.162,7.982,7.162c4.406,0,7.978-3.205,7.978-7.162\r\n\t\t\t\tC15.96,5.222,12.388,2.013,7.982,2.013z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"spotify_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"spotify","display":"inline"},"children":[{"name":"g","attribs":{"id":"spotify","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26.671,55.675c-4.217,0-7.496,1.355-10.156,4.239\r\n\t\t\t\tc4.795,2.869,9.491,4.079,15.486,4.079c3.087,0,4.405-0.132,7.23-0.948C36.949,58.528,32.591,55.675,26.671,55.675z\r\n\t\t\t\t M32.001,0.008c-17.67,0-31.993,14.323-31.993,31.993c0,8.223,3.103,15.72,8.202,21.387c4.778-4.399,11.291-7.104,18.462-7.104\r\n\t\t\t\tc9.749,0,18.284,4.995,22.892,12.458c8.691-5.72,14.43-15.56,14.43-26.742C63.992,14.331,49.669,0.008,32.001,0.008z\r\n\t\t\t\t M46.704,44.438c-1.112,0.906-2.201,0.064-2.201,0.064c-10.883-8.335-27.994-3.798-27.994-3.754l-0.256,0.072\r\n\t\t\t\tc-1.149,0-1.937-1.215-1.937-2.362c0,0-0.069-1.32,1.788-1.936c0.713-0.131,18.112-3.927,30.538,4.408\r\n\t\t\t\tc0.923,0.726,0.953,1.59,0.953,1.59C47.594,43.668,47.336,43.923,46.704,44.438z M49.37,35.657c-0.48,0-0.927-0.137-1.308-0.37\r\n\t\t\t\th-0.001c-13.9-8.339-29.991-4.409-32.002-3.857l-1.028,0.202c-1.388,0-2.403-1.126-2.403-2.515c0-1.163,0.824-2.138,1.91-2.426\r\n\t\t\t\tc1.087-0.24,19.256-6.003,35.915,3.523h0.008c0.912,0.428,1.419,1.6,1.419,2.593C51.88,34.196,50.758,35.657,49.37,35.657z\r\n\t\t\t\t M53.583,26.042c0,0-0.853-0.014-1.71-0.531c-15.635-9.777-37.295-4.184-37.513-4.126l-0.008-0.005\r\n\t\t\t\tc-0.244,0.064-0.511,0.101-0.774,0.101c-1.655,0-2.962-1.341-2.962-2.996c0-1.434,0.727-2.631,2.358-2.926\r\n\t\t\t\tc1.087-0.259,24.236-6.181,42.041,4.852c0.934,0.507,1.566,1.497,1.566,2.635C56.581,24.7,55.237,26.042,53.583,26.042z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26.671,55.675c-4.217,0-7.496,1.355-10.156,4.239\r\n\t\t\t\tc4.795,2.869,9.491,4.079,15.486,4.079c3.087,0,4.405-0.132,7.23-0.948C36.949,58.528,32.591,55.675,26.671,55.675z\r\n\t\t\t\t M32.001,0.008c-17.67,0-31.993,14.323-31.993,31.993c0,8.223,3.103,15.72,8.202,21.387c4.778-4.399,11.291-7.104,18.462-7.104\r\n\t\t\t\tc9.749,0,18.284,4.995,22.892,12.458c8.691-5.72,14.43-15.56,14.43-26.742C63.992,14.331,49.669,0.008,32.001,0.008z\r\n\t\t\t\t M46.704,44.438c-1.112,0.906-2.201,0.064-2.201,0.064c-10.883-8.335-27.994-3.798-27.994-3.754l-0.256,0.072\r\n\t\t\t\tc-1.149,0-1.937-1.215-1.937-2.362c0,0-0.069-1.32,1.788-1.936c0.713-0.131,18.112-3.927,30.538,4.408\r\n\t\t\t\tc0.923,0.726,0.953,1.59,0.953,1.59C47.594,43.668,47.336,43.923,46.704,44.438z M49.37,35.657c-0.48,0-0.927-0.137-1.308-0.37\r\n\t\t\t\th-0.001c-13.9-8.339-29.991-4.409-32.002-3.857l-1.028,0.202c-1.388,0-2.403-1.126-2.403-2.515c0-1.163,0.824-2.138,1.91-2.426\r\n\t\t\t\tc1.087-0.24,19.256-6.003,35.915,3.523h0.008c0.912,0.428,1.419,1.6,1.419,2.593C51.88,34.196,50.758,35.657,49.37,35.657z\r\n\t\t\t\t M53.583,26.042c0,0-0.853-0.014-1.71-0.531c-15.635-9.777-37.295-4.184-37.513-4.126l-0.008-0.005\r\n\t\t\t\tc-0.244,0.064-0.511,0.101-0.774,0.101c-1.655,0-2.962-1.341-2.962-2.996c0-1.434,0.727-2.631,2.358-2.926\r\n\t\t\t\tc1.087-0.259,24.236-6.181,42.041,4.852c0.934,0.507,1.566,1.497,1.566,2.635C56.581,24.7,55.237,26.042,53.583,26.042z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"youtube_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"youtube","display":"inline"},"children":[{"name":"g","attribs":{"id":"youtube","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M54.15,10.031l-20.9-0.019l-21.718,0.019c-5.433,0-11.534,3.626-11.534,8.944\r\n\t\t\t\tv26.474c0,5.316,6.101,8.559,11.534,8.559H54.15c5.432,0,9.835-3.242,9.835-8.559V18.976\r\n\t\t\t\tC63.985,13.657,59.582,10.031,54.15,10.031z M27.856,42.205L27.73,22.044l14.03,10.168L27.856,42.205z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M54.15,10.031l-20.9-0.019l-21.718,0.019c-5.433,0-11.534,3.626-11.534,8.944\r\n\t\t\t\tv26.474c0,5.316,6.101,8.559,11.534,8.559H54.15c5.432,0,9.835-3.242,9.835-8.559V18.976\r\n\t\t\t\tC63.985,13.657,59.582,10.031,54.15,10.031z M27.856,42.205L27.73,22.044l14.03,10.168L27.856,42.205z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"vimeo_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"vimeo","display":"inline"},"children":[{"name":"g","attribs":{"id":"vimeo","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M36.348,18.728c2.748-0.624,7.538-1.522,8.529,1.306\r\n\t\t\t\tc1.246,8.476-4.612,15.408-9.84,19.602C24.919,34.128,32.524,8.81,21.915,4.633c-5.448-2.145-10.31,2.79-14.434,6.255\r\n\t\t\t\tC4.788,13.151-0.013,16.758,0,19.531v0.073c0.023,0.633,0.301,1.221,0.921,1.738c2.13,3.51,3.998-2.43,7.872-1.306\r\n\t\t\t\tc8.471,6.948,5.793,37.749,18.37,39.856c4.882,0.818,11.08-3.648,14.433-6.534c4.625-3.981,9.924-10.722,13.777-16.335\r\n\t\t\t\tc0,0,9.677-12.741,8.529-23.521C61.789-4.107,36.207,5.801,36.348,18.728z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M36.348,18.728c2.748-0.624,7.538-1.522,8.529,1.306\r\n\t\t\t\tc1.246,8.476-4.612,15.408-9.84,19.602C24.919,34.128,32.524,8.81,21.915,4.633c-5.448-2.145-10.31,2.79-14.434,6.255\r\n\t\t\t\tC4.788,13.151-0.013,16.758,0,19.531v0.073c0.023,0.633,0.301,1.221,0.921,1.738c2.13,3.51,3.998-2.43,7.872-1.306\r\n\t\t\t\tc8.471,6.948,5.793,37.749,18.37,39.856c4.882,0.818,11.08-3.648,14.433-6.534c4.625-3.981,9.924-10.722,13.777-16.335\r\n\t\t\t\tc0,0,9.677-12.741,8.529-23.521C61.789-4.107,36.207,5.801,36.348,18.728z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"google_plus_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"google_plus","display":"inline"},"children":[{"name":"g","attribs":{"id":"google_plus","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M35.471,4.995c0,0-12.66,0-16.879,0C11.023,4.995,3.9,10.999,3.9,17.522\r\n\t\t\t\tc0,6.666,5.158,12.23,12.857,12.23c0.535,0,1.055,0.083,1.565,0.046c-0.498,0.94-0.855,2.045-0.855,3.142\r\n\t\t\t\tc0,1.853,1.014,3.378,2.297,4.604c-0.969,0-1.904,0.04-2.926,0.04C7.465,37.584,0,43.452,0,49.533\r\n\t\t\t\tc0,5.987,8.158,10.472,17.533,10.472c10.686,0,16.463-6.689,16.463-12.678c0-4.799-1.318-7.675-5.777-10.773\r\n\t\t\t\tc-1.525-1.059-4.443-3.641-4.443-5.156c0-1.776,0.518-2.653,3.24-4.742c2.791-2.143,4.955-4.903,4.955-8.407\r\n\t\t\t\tc0-4.17-2.08-7.36-5.629-9.325h5.352L35.471,4.995z M29.574,46.295c0.133,0.556,0.207,1.128,0.207,1.711\r\n\t\t\t\tc0,4.838-3.176,8.128-12.283,8.128c-6.478,0-11.158-3.537-11.158-8.375c0-4.742,5.805-8.69,12.283-8.622\r\n\t\t\t\tc1.512,0.017,2.92,0.255,4.199,0.664C26.34,42.201,28.862,43.558,29.574,46.295z M19.201,28.248\r\n\t\t\t\tc-4.349-0.126-8.482-4.778-9.232-10.387c-0.752-5.609,2.164-9.9,6.512-9.773c4.349,0.127,8.67,4.629,9.422,10.236\r\n\t\t\t\tC26.652,23.934,23.547,28.377,19.201,28.248z M54,14.817v-9.76h-4v9.76H40v3.99h10v9.76h4v-9.76h10v-3.99H54z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M35.471,4.995c0,0-12.66,0-16.879,0C11.023,4.995,3.9,10.999,3.9,17.522\r\n\t\t\t\tc0,6.666,5.158,12.23,12.857,12.23c0.535,0,1.055,0.083,1.565,0.046c-0.498,0.94-0.855,2.045-0.855,3.142\r\n\t\t\t\tc0,1.853,1.014,3.378,2.297,4.604c-0.969,0-1.904,0.04-2.926,0.04C7.465,37.584,0,43.452,0,49.533\r\n\t\t\t\tc0,5.987,8.158,10.472,17.533,10.472c10.686,0,16.463-6.689,16.463-12.678c0-4.799-1.318-7.675-5.777-10.773\r\n\t\t\t\tc-1.525-1.059-4.443-3.641-4.443-5.156c0-1.776,0.518-2.653,3.24-4.742c2.791-2.143,4.955-4.903,4.955-8.407\r\n\t\t\t\tc0-4.17-2.08-7.36-5.629-9.325h5.352L35.471,4.995z M29.574,46.295c0.133,0.556,0.207,1.128,0.207,1.711\r\n\t\t\t\tc0,4.838-3.176,8.128-12.283,8.128c-6.478,0-11.158-3.537-11.158-8.375c0-4.742,5.805-8.69,12.283-8.622\r\n\t\t\t\tc1.512,0.017,2.92,0.255,4.199,0.664C26.34,42.201,28.862,43.558,29.574,46.295z M19.201,28.248\r\n\t\t\t\tc-4.349-0.126-8.482-4.778-9.232-10.387c-0.752-5.609,2.164-9.9,6.512-9.773c4.349,0.127,8.67,4.629,9.422,10.236\r\n\t\t\t\tC26.652,23.934,23.547,28.377,19.201,28.248z M54,14.817v-9.76h-4v9.76H40v3.99h10v9.76h4v-9.76h10v-3.99H54z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"skype_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"skype","display":"inline"},"children":[{"name":"g","attribs":{"id":"skype","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M59.539,36.935C59.825,35.33,60,33.687,60,32C60,16.536,47.464,4,32,4\r\n\t\t\t\tc-1.687,0-3.33,0.175-4.934,0.461C24.191,1.704,20.298,0,16,0C7.164,0,0,7.164,0,16c0,4.298,1.703,8.191,4.461,11.066\r\n\t\t\t\tC4.175,28.67,4,30.313,4,32c0,15.464,12.536,28,28,28c1.687,0,3.33-0.175,4.935-0.461C39.809,62.297,43.702,64,48,64\r\n\t\t\t\tc8.837,0,16-7.163,16-16C64,43.703,62.297,39.809,59.539,36.935z M44.331,43.208c-1.105,1.506-2.74,2.7-4.857,3.548\r\n\t\t\t\tc-2.095,0.838-4.608,1.265-7.468,1.265c-3.433,0-6.312-0.582-8.558-1.73c-1.606-0.834-2.93-1.963-3.936-3.363\r\n\t\t\t\tc-1.014-1.408-1.529-2.807-1.529-4.158c0-0.842,0.335-1.573,0.995-2.171c0.655-0.594,1.494-0.894,2.495-0.894\r\n\t\t\t\tc0.822,0,1.531,0.236,2.106,0.703c0.55,0.451,1.022,1.115,1.401,1.973c0.425,0.936,0.885,1.724,1.372,2.342\r\n\t\t\t\tc0.471,0.6,1.144,1.101,2.006,1.494c0.866,0.395,2.035,0.596,3.472,0.596c1.975,0,3.596-0.407,4.814-1.208\r\n\t\t\t\tc1.191-0.781,1.768-1.721,1.768-2.871c0-0.908-0.302-1.621-0.922-2.183c-0.652-0.586-1.509-1.039-2.55-1.355\r\n\t\t\t\tc-1.087-0.324-2.562-0.679-4.386-1.047c-2.48-0.509-4.587-1.118-6.264-1.802c-1.715-0.703-3.096-1.677-4.106-2.894\r\n\t\t\t\tc-1.026-1.238-1.546-2.787-1.546-4.613c0-1.738,0.546-3.306,1.623-4.656c1.069-1.343,2.63-2.388,4.64-3.101\r\n\t\t\t\tc1.984-0.707,4.343-1.065,7.013-1.065c2.134,0,4.01,0.24,5.577,0.707c1.577,0.471,2.904,1.109,3.948,1.895\r\n\t\t\t\tc1.051,0.791,1.833,1.635,2.324,2.515c0.494,0.886,0.747,1.77,0.747,2.624c0,0.823-0.33,1.571-0.981,2.223\r\n\t\t\t\tc-0.655,0.655-1.481,0.987-2.454,0.987c-0.885,0-1.578-0.209-2.059-0.616c-0.448-0.383-0.912-0.977-1.426-1.83\r\n\t\t\t\tc-0.596-1.09-1.318-1.949-2.145-2.556c-0.804-0.59-2.147-0.886-3.991-0.886c-1.713,0-3.107,0.33-4.141,0.985\r\n\t\t\t\tc-0.998,0.628-1.483,1.349-1.483,2.205c0,0.525,0.157,0.963,0.479,1.339c0.339,0.403,0.819,0.749,1.424,1.043\r\n\t\t\t\tc0.627,0.304,1.276,0.546,1.923,0.717c0.664,0.179,1.779,0.441,3.308,0.781c1.935,0.401,3.712,0.848,5.284,1.333\r\n\t\t\t\tc1.593,0.491,2.967,1.093,4.09,1.798c1.144,0.717,2.05,1.637,2.694,2.738c0.646,1.105,0.972,2.469,0.972,4.053\r\n\t\t\t\tC46.003,39.968,45.439,41.698,44.331,43.208z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M59.539,36.935C59.825,35.33,60,33.687,60,32C60,16.536,47.464,4,32,4\r\n\t\t\t\tc-1.687,0-3.33,0.175-4.934,0.461C24.191,1.704,20.298,0,16,0C7.164,0,0,7.164,0,16c0,4.298,1.703,8.191,4.461,11.066\r\n\t\t\t\tC4.175,28.67,4,30.313,4,32c0,15.464,12.536,28,28,28c1.687,0,3.33-0.175,4.935-0.461C39.809,62.297,43.702,64,48,64\r\n\t\t\t\tc8.837,0,16-7.163,16-16C64,43.703,62.297,39.809,59.539,36.935z M44.331,43.208c-1.105,1.506-2.74,2.7-4.857,3.548\r\n\t\t\t\tc-2.095,0.838-4.608,1.265-7.468,1.265c-3.433,0-6.312-0.582-8.558-1.73c-1.606-0.834-2.93-1.963-3.936-3.363\r\n\t\t\t\tc-1.014-1.408-1.529-2.807-1.529-4.158c0-0.842,0.335-1.573,0.995-2.171c0.655-0.594,1.494-0.894,2.495-0.894\r\n\t\t\t\tc0.822,0,1.531,0.236,2.106,0.703c0.55,0.451,1.022,1.115,1.401,1.973c0.425,0.936,0.885,1.724,1.372,2.342\r\n\t\t\t\tc0.471,0.6,1.144,1.101,2.006,1.494c0.866,0.395,2.035,0.596,3.472,0.596c1.975,0,3.596-0.407,4.814-1.208\r\n\t\t\t\tc1.191-0.781,1.768-1.721,1.768-2.871c0-0.908-0.302-1.621-0.922-2.183c-0.652-0.586-1.509-1.039-2.55-1.355\r\n\t\t\t\tc-1.087-0.324-2.562-0.679-4.386-1.047c-2.48-0.509-4.587-1.118-6.264-1.802c-1.715-0.703-3.096-1.677-4.106-2.894\r\n\t\t\t\tc-1.026-1.238-1.546-2.787-1.546-4.613c0-1.738,0.546-3.306,1.623-4.656c1.069-1.343,2.63-2.388,4.64-3.101\r\n\t\t\t\tc1.984-0.707,4.343-1.065,7.013-1.065c2.134,0,4.01,0.24,5.577,0.707c1.577,0.471,2.904,1.109,3.948,1.895\r\n\t\t\t\tc1.051,0.791,1.833,1.635,2.324,2.515c0.494,0.886,0.747,1.77,0.747,2.624c0,0.823-0.33,1.571-0.981,2.223\r\n\t\t\t\tc-0.655,0.655-1.481,0.987-2.454,0.987c-0.885,0-1.578-0.209-2.059-0.616c-0.448-0.383-0.912-0.977-1.426-1.83\r\n\t\t\t\tc-0.596-1.09-1.318-1.949-2.145-2.556c-0.804-0.59-2.147-0.886-3.991-0.886c-1.713,0-3.107,0.33-4.141,0.985\r\n\t\t\t\tc-0.998,0.628-1.483,1.349-1.483,2.205c0,0.525,0.157,0.963,0.479,1.339c0.339,0.403,0.819,0.749,1.424,1.043\r\n\t\t\t\tc0.627,0.304,1.276,0.546,1.923,0.717c0.664,0.179,1.779,0.441,3.308,0.781c1.935,0.401,3.712,0.848,5.284,1.333\r\n\t\t\t\tc1.593,0.491,2.967,1.093,4.09,1.798c1.144,0.717,2.05,1.637,2.694,2.738c0.646,1.105,0.972,2.469,0.972,4.053\r\n\t\t\t\tC46.003,39.968,45.439,41.698,44.331,43.208z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"foursquare_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"foursquare","display":"inline"},"children":[{"name":"g","attribs":{"id":"foursquare","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M41.524,27.182l-8.099-8.285c-2.222-2.189-5.667-2.189-7.89,0l-2.201,2.245\r\n\t\t\t\tc-2.46-1.881-5.468-3.047-8.815-3.047c-8.013,0-14.513,6.42-14.513,14.313c0,7.891,6.529,14.311,14.543,14.311\r\n\t\t\t\tc0.623,0,1.222-0.105,1.825-0.181l13.387,12.458l34.24-30.692V5.018L41.524,27.182z M14.725,43.102\r\n\t\t\t\tc-0.057,0-0.109,0.016-0.166,0.016c-5.998,0-10.877-4.805-10.877-10.71c0-5.907,4.879-10.712,10.877-10.712\r\n\t\t\t\tc2.338,0,4.494,0.748,6.27,1.991c2.776,1.942,4.604,5.119,4.604,8.722C25.434,38.257,20.642,43.013,14.725,43.102z M59.8,27.491\r\n\t\t\t\tL48.426,37.908L30.158,54.157l-9.723-8.753c2.691-1.21,4.978-3.209,6.487-5.69l3.794,3.924l13.511-13.91L59.8,13.77V27.491z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M41.524,27.182l-8.099-8.285c-2.222-2.189-5.667-2.189-7.89,0l-2.201,2.245\r\n\t\t\t\tc-2.46-1.881-5.468-3.047-8.815-3.047c-8.013,0-14.513,6.42-14.513,14.313c0,7.891,6.529,14.311,14.543,14.311\r\n\t\t\t\tc0.623,0,1.222-0.105,1.825-0.181l13.387,12.458l34.24-30.692V5.018L41.524,27.182z M14.725,43.102\r\n\t\t\t\tc-0.057,0-0.109,0.016-0.166,0.016c-5.998,0-10.877-4.805-10.877-10.71c0-5.907,4.879-10.712,10.877-10.712\r\n\t\t\t\tc2.338,0,4.494,0.748,6.27,1.991c2.776,1.942,4.604,5.119,4.604,8.722C25.434,38.257,20.642,43.013,14.725,43.102z M59.8,27.491\r\n\t\t\t\tL48.426,37.908L30.158,54.157l-9.723-8.753c2.691-1.21,4.978-3.209,6.487-5.69l3.794,3.924l13.511-13.91L59.8,13.77V27.491z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"dropbox_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"dropbox","display":"inline"},"children":[{"name":"g","attribs":{"id":"dropbox","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32.04,39.477L18.826,50.345l-5.654-3.662v4.106L32.04,62.003l18.865-11.215\r\n\t\t\t\tv-4.106l-5.653,3.662L32.04,39.477z M0.001,35.846L18.826,48.03L32,37.134L13.018,25.513L0.001,35.846z M32,37.134L45.174,48.03\r\n\t\t\t\tl18.826-12.184L50.982,25.513L32,37.134z M18.826,2.997L0.001,15.176l13.017,10.337L32,13.893L18.826,2.997z M63.999,15.176\r\n\t\t\t\tL45.174,2.997L32,13.893l18.982,11.619L63.999,15.176z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32.04,39.477L18.826,50.345l-5.654-3.662v4.106L32.04,62.003l18.865-11.215\r\n\t\t\t\tv-4.106l-5.653,3.662L32.04,39.477z M0.001,35.846L18.826,48.03L32,37.134L13.018,25.513L0.001,35.846z M32,37.134L45.174,48.03\r\n\t\t\t\tl18.826-12.184L50.982,25.513L32,37.134z M18.826,2.997L0.001,15.176l13.017,10.337L32,13.893L18.826,2.997z M63.999,15.176\r\n\t\t\t\tL45.174,2.997L32,13.893l18.982,11.619L63.999,15.176z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"tumblr_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"tumblr","display":"inline"},"children":[{"name":"g","attribs":{"id":"tumblr","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M42.41,53.584c-1.816,0-3.423-0.428-4.834-1.275\r\n\t\t\t\tc-1.063-0.629-2.039-1.718-2.428-2.767c-0.391-1.049-0.343-3.19-0.343-6.905V26.215h14.728V14.788H34.806V-0.028h-9.062\r\n\t\t\t\tc-0.405,3.308-1.15,6.026-2.231,8.16c-1.08,2.142-2.508,3.973-4.3,5.502c-1.78,1.525-4.681,2.699-7.184,3.513v9.068h8.654v22.455\r\n\t\t\t\tc0,2.933,0.305,5.167,0.915,6.708c0.614,1.537,1.706,2.997,3.291,4.368c1.577,1.36,3.487,2.42,5.725,3.162\r\n\t\t\t\tc2.237,0.734,3.955,1.101,6.869,1.101c2.565,0,4.95-0.258,7.16-0.779c2.207-0.52,4.673-1.428,7.394-2.711v-10.1\r\n\t\t\t\tC48.844,52.527,45.637,53.584,42.41,53.584z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M42.41,53.584c-1.816,0-3.423-0.428-4.834-1.275\r\n\t\t\t\tc-1.063-0.629-2.039-1.718-2.428-2.767c-0.391-1.049-0.343-3.19-0.343-6.905V26.215h14.728V14.788H34.806V-0.028h-9.062\r\n\t\t\t\tc-0.405,3.308-1.15,6.026-2.231,8.16c-1.08,2.142-2.508,3.973-4.3,5.502c-1.78,1.525-4.681,2.699-7.184,3.513v9.068h8.654v22.455\r\n\t\t\t\tc0,2.933,0.305,5.167,0.915,6.708c0.614,1.537,1.706,2.997,3.291,4.368c1.577,1.36,3.487,2.42,5.725,3.162\r\n\t\t\t\tc2.237,0.734,3.955,1.101,6.869,1.101c2.565,0,4.95-0.258,7.16-0.779c2.207-0.52,4.673-1.428,7.394-2.711v-10.1\r\n\t\t\t\tC48.844,52.527,45.637,53.584,42.41,53.584z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"instagram_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"instagram","display":"inline"},"children":[{"name":"g","attribs":{"id":"instagram","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M56,0H8C3.582,0,0,3.582,0,8v48c0,4.418,3.582,8,8,8h48c4.418,0,8-3.582,8-8V8\r\n\t\t\t\tC64,3.582,60.418,0,56,0z M19.673,30.673c0.013-0.127,0.04-0.249,0.057-0.374c0.042-0.31,0.088-0.618,0.153-0.92\r\n\t\t\t\tc0.029-0.136,0.069-0.267,0.103-0.401c0.072-0.286,0.147-0.571,0.238-0.849c0.044-0.132,0.095-0.259,0.142-0.389\r\n\t\t\t\tc0.1-0.272,0.204-0.541,0.322-0.804c0.02-0.045,0.034-0.092,0.055-0.137h0.011c1.968-4.247,6.257-7.2,11.246-7.2\r\n\t\t\t\tc4.989,0,9.278,2.953,11.246,7.2h0.011c0.021,0.045,0.035,0.092,0.055,0.137c0.118,0.263,0.222,0.532,0.322,0.804\r\n\t\t\t\tc0.048,0.13,0.099,0.257,0.142,0.389c0.091,0.278,0.166,0.562,0.238,0.849c0.034,0.134,0.074,0.265,0.103,0.401\r\n\t\t\t\tc0.065,0.302,0.11,0.61,0.153,0.92c0.017,0.125,0.043,0.247,0.057,0.374C44.373,31.109,44.4,31.551,44.4,32\r\n\t\t\t\tc0,6.849-5.552,12.4-12.4,12.4c-6.848,0-12.4-5.552-12.4-12.4C19.6,31.551,19.627,31.109,19.673,30.673z M56.8,53.6\r\n\t\t\t\tc0,1.767-1.433,3.2-3.2,3.2H10.4c-1.767,0-3.2-1.433-3.2-3.2V26.8h5.899C12.644,28.456,12.4,30.2,12.4,32\r\n\t\t\t\tc0,10.825,8.775,19.6,19.6,19.6c10.825,0,19.6-8.775,19.6-19.6c0-1.8-0.244-3.544-0.699-5.2H56.8V53.6z M56.8,16.8\r\n\t\t\t\tc0,1.767-1.433,3.2-3.2,3.2h-6.4c-1.767,0-3.2-1.433-3.2-3.2v-6.4c0-1.767,1.433-3.2,3.2-3.2h6.4c1.767,0,3.2,1.432,3.2,3.2V16.8\r\n\t\t\t\tz"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M56,0H8C3.582,0,0,3.582,0,8v48c0,4.418,3.582,8,8,8h48c4.418,0,8-3.582,8-8V8\r\n\t\t\t\tC64,3.582,60.418,0,56,0z M19.673,30.673c0.013-0.127,0.04-0.249,0.057-0.374c0.042-0.31,0.088-0.618,0.153-0.92\r\n\t\t\t\tc0.029-0.136,0.069-0.267,0.103-0.401c0.072-0.286,0.147-0.571,0.238-0.849c0.044-0.132,0.095-0.259,0.142-0.389\r\n\t\t\t\tc0.1-0.272,0.204-0.541,0.322-0.804c0.02-0.045,0.034-0.092,0.055-0.137h0.011c1.968-4.247,6.257-7.2,11.246-7.2\r\n\t\t\t\tc4.989,0,9.278,2.953,11.246,7.2h0.011c0.021,0.045,0.035,0.092,0.055,0.137c0.118,0.263,0.222,0.532,0.322,0.804\r\n\t\t\t\tc0.048,0.13,0.099,0.257,0.142,0.389c0.091,0.278,0.166,0.562,0.238,0.849c0.034,0.134,0.074,0.265,0.103,0.401\r\n\t\t\t\tc0.065,0.302,0.11,0.61,0.153,0.92c0.017,0.125,0.043,0.247,0.057,0.374C44.373,31.109,44.4,31.551,44.4,32\r\n\t\t\t\tc0,6.849-5.552,12.4-12.4,12.4c-6.848,0-12.4-5.552-12.4-12.4C19.6,31.551,19.627,31.109,19.673,30.673z M56.8,53.6\r\n\t\t\t\tc0,1.767-1.433,3.2-3.2,3.2H10.4c-1.767,0-3.2-1.433-3.2-3.2V26.8h5.899C12.644,28.456,12.4,30.2,12.4,32\r\n\t\t\t\tc0,10.825,8.775,19.6,19.6,19.6c10.825,0,19.6-8.775,19.6-19.6c0-1.8-0.244-3.544-0.699-5.2H56.8V53.6z M56.8,16.8\r\n\t\t\t\tc0,1.767-1.433,3.2-3.2,3.2h-6.4c-1.767,0-3.2-1.433-3.2-3.2v-6.4c0-1.767,1.433-3.2,3.2-3.2h6.4c1.767,0,3.2,1.432,3.2,3.2V16.8\r\n\t\t\t\tz"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"twitter_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"twitter","display":"inline"},"children":[{"name":"g","attribs":{"id":"twitter","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M56.569,14.179v-0.032c0.557-0.218,0.997-0.68,1.441-1.022\r\n\t\t\t\tc2-1.541,3.301-3.57,4.26-6.164c-0.544,0.298-1.089,0.596-1.634,0.894c-1.68,0.853-4.532,2.079-6.727,2.267\r\n\t\t\t\tc-2.586-2.356-5.292-4.209-10.378-4.12c-0.534,0.064-1.068,0.128-1.602,0.192c-1.037,0.227-2.024,0.508-2.915,0.894\r\n\t\t\t\tc-3.724,1.616-6.263,4.631-7.431,8.814c-0.465,1.664-0.654,4.445-0.064,6.164c-2.101-0.003-4.135-0.334-5.894-0.767\r\n\t\t\t\tC18.69,19.594,14.372,17.29,9.578,13.54C8.17,12.439,6.789,11.191,5.67,9.804C5.309,9.357,4.74,8.965,4.485,8.43\r\n\t\t\t\tC4.463,8.42,4.442,8.409,4.421,8.398c-0.557,1.032-1.08,2.15-1.409,3.417c-1.3,4.994,0.755,9.188,2.947,11.912\r\n\t\t\t\tc0.664,0.826,1.741,1.338,2.402,2.108h0.064c-0.497,0.184-1.361-0.071-1.794-0.16c-1.024-0.211-1.897-0.405-2.755-0.766\r\n\t\t\t\tc-0.448-0.213-0.897-0.426-1.345-0.639c-0.021,5.517,2.766,9.103,6.182,11.241c1.114,0.697,2.672,1.635,4.292,1.724\r\n\t\t\t\tc-0.867,0.732-4.575,0.396-5.862,0.255c1.609,4.142,4.081,6.9,8.328,8.399c1.096,0.387,2.433,0.729,3.908,0.703\r\n\t\t\t\tc-0.783,0.93-2.454,1.687-3.556,2.331c-2.272,1.329-4.91,2.191-7.88,2.842c-1.191,0.261-2.457,0.207-3.748,0.415\r\n\t\t\t\tc-1.427,0.23-2.92-0.122-4.196-0.16c0.384,0.234,0.769,0.469,1.153,0.703c1.171,0.713,2.394,1.338,3.716,1.916\r\n\t\t\t\tc2.379,1.04,4.914,1.826,7.72,2.523c5.658,1.405,13.64,0.773,18.579-0.766c13.754-4.286,22.443-14.292,25.722-29.03\r\n\t\t\t\tc0.564-2.535,0.646-5.414,0.609-8.431c0.683-0.543,1.367-1.086,2.05-1.629c1.693-1.356,3.28-3.246,4.452-5.11v-0.032\r\n\t\t\t\tC61.768,12.864,59.418,14.149,56.569,14.179z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M56.569,14.179v-0.032c0.557-0.218,0.997-0.68,1.441-1.022\r\n\t\t\t\tc2-1.541,3.301-3.57,4.26-6.164c-0.544,0.298-1.089,0.596-1.634,0.894c-1.68,0.853-4.532,2.079-6.727,2.267\r\n\t\t\t\tc-2.586-2.356-5.292-4.209-10.378-4.12c-0.534,0.064-1.068,0.128-1.602,0.192c-1.037,0.227-2.024,0.508-2.915,0.894\r\n\t\t\t\tc-3.724,1.616-6.263,4.631-7.431,8.814c-0.465,1.664-0.654,4.445-0.064,6.164c-2.101-0.003-4.135-0.334-5.894-0.767\r\n\t\t\t\tC18.69,19.594,14.372,17.29,9.578,13.54C8.17,12.439,6.789,11.191,5.67,9.804C5.309,9.357,4.74,8.965,4.485,8.43\r\n\t\t\t\tC4.463,8.42,4.442,8.409,4.421,8.398c-0.557,1.032-1.08,2.15-1.409,3.417c-1.3,4.994,0.755,9.188,2.947,11.912\r\n\t\t\t\tc0.664,0.826,1.741,1.338,2.402,2.108h0.064c-0.497,0.184-1.361-0.071-1.794-0.16c-1.024-0.211-1.897-0.405-2.755-0.766\r\n\t\t\t\tc-0.448-0.213-0.897-0.426-1.345-0.639c-0.021,5.517,2.766,9.103,6.182,11.241c1.114,0.697,2.672,1.635,4.292,1.724\r\n\t\t\t\tc-0.867,0.732-4.575,0.396-5.862,0.255c1.609,4.142,4.081,6.9,8.328,8.399c1.096,0.387,2.433,0.729,3.908,0.703\r\n\t\t\t\tc-0.783,0.93-2.454,1.687-3.556,2.331c-2.272,1.329-4.91,2.191-7.88,2.842c-1.191,0.261-2.457,0.207-3.748,0.415\r\n\t\t\t\tc-1.427,0.23-2.92-0.122-4.196-0.16c0.384,0.234,0.769,0.469,1.153,0.703c1.171,0.713,2.394,1.338,3.716,1.916\r\n\t\t\t\tc2.379,1.04,4.914,1.826,7.72,2.523c5.658,1.405,13.64,0.773,18.579-0.766c13.754-4.286,22.443-14.292,25.722-29.03\r\n\t\t\t\tc0.564-2.535,0.646-5.414,0.609-8.431c0.683-0.543,1.367-1.086,2.05-1.629c1.693-1.356,3.28-3.246,4.452-5.11v-0.032\r\n\t\t\t\tC61.768,12.864,59.418,14.149,56.569,14.179z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"facebook_3_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"facebook","display":"inline"},"children":[{"name":"g","attribs":{"id":"facebook","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M59.058-0.006H4.942c-2.722,0-4.929,2.208-4.929,4.932V59.28\r\n\t\t\t\tc0,2.724,2.207,4.727,4.929,4.727h54.116c2.722,0,4.929-2.002,4.929-4.727V4.926C63.987,2.202,61.781-0.006,59.058-0.006z\r\n\t\t\t\t M33.615,21.199c-1.562-0.912-2.803-1.634-4.351-1.634c-1.523,0-2.836,0.383-3.497,1.024c-0.661,0.64-0.992,1.872-0.992,3.692\r\n\t\t\t\tv2.691h8.148l-1.768,7.494h-6.381v24.894H14.545V34.465H9.759v-7.494h4.787v-2.859c0-3.012,0.355-4.817,1.067-6.301\r\n\t\t\t\tc0.711-1.483,2.089-3.134,3.998-4.066c1.909-0.932,4.741-1.399,7.661-1.399c2.995,0,5.338,0.994,8.208,1.803L33.615,21.199z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M59.058-0.006H4.942c-2.722,0-4.929,2.208-4.929,4.932V59.28\r\n\t\t\t\tc0,2.724,2.207,4.727,4.929,4.727h54.116c2.722,0,4.929-2.002,4.929-4.727V4.926C63.987,2.202,61.781-0.006,59.058-0.006z\r\n\t\t\t\t M33.615,21.199c-1.562-0.912-2.803-1.634-4.351-1.634c-1.523,0-2.836,0.383-3.497,1.024c-0.661,0.64-0.992,1.872-0.992,3.692\r\n\t\t\t\tv2.691h8.148l-1.768,7.494h-6.381v24.894H14.545V34.465H9.759v-7.494h4.787v-2.859c0-3.012,0.355-4.817,1.067-6.301\r\n\t\t\t\tc0.711-1.483,2.089-3.134,3.998-4.066c1.909-0.932,4.741-1.399,7.661-1.399c2.995,0,5.338,0.994,8.208,1.803L33.615,21.199z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"facebook_2_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"facebook_1_","display":"inline"},"children":[{"name":"g","attribs":{"id":"facebook_1_","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M36.963,22.048c0.092-3.345-0.525-8.003,0.515-9.593\r\n\t\t\t\tc1.902-2.911,9.496-2.154,9.496-2.154s0-6.612,0-10.303c-11.982,0-15.903-0.501-20.015,3.675\r\n\t\t\t\tc-3.658,3.715-3.771,11.011-4.072,18.375h-5.872V32.12h5.938c-0.002,10.504,0.003,22.016,0,31.884c4.462,0,13.954,0,13.954,0\r\n\t\t\t\tv-32.01c0,0,5.173,0,8.042,0c0.626-3.385,1.236-6.036,2.088-9.947H36.963z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M36.963,22.048c0.092-3.345-0.525-8.003,0.515-9.593\r\n\t\t\t\tc1.902-2.911,9.496-2.154,9.496-2.154s0-6.612,0-10.303c-11.982,0-15.903-0.501-20.015,3.675\r\n\t\t\t\tc-3.658,3.715-3.771,11.011-4.072,18.375h-5.872V32.12h5.938c-0.002,10.504,0.003,22.016,0,31.884c4.462,0,13.954,0,13.954,0\r\n\t\t\t\tv-32.01c0,0,5.173,0,8.042,0c0.626-3.385,1.236-6.036,2.088-9.947H36.963z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"pinterest_3_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"pinterest","display":"inline"},"children":[{"name":"g","attribs":{"id":"pinterest","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.328,0,0,14.328,0,32c0,13.172,7.961,24.484,19.33,29.396\r\n\t\t\t\tc-0.082-2.23-0.002-4.891,0.562-7.302c0.621-2.604,4.137-17.5,4.137-17.5s-1.027-2.053-1.027-5.084\r\n\t\t\t\tc0-4.754,2.762-8.312,6.193-8.312c2.922,0,4.334,2.199,4.334,4.826c0,2.936-1.873,7.326-2.84,11.393\r\n\t\t\t\tc-0.801,3.406,1.715,6.188,5.074,6.188c6.08,0,10.176-7.815,10.176-17.078c0-7.035-4.734-12.307-13.359-12.307\r\n\t\t\t\tc-9.738,0-15.815,7.265-15.815,15.383c0,2.797,0.828,4.773,2.123,6.299c0.594,0.701,0.674,0.984,0.457,1.793\r\n\t\t\t\tc-0.156,0.588-0.502,2.01-0.65,2.578c-0.213,0.813-0.875,1.098-1.609,0.799c-4.484-1.828-6.578-6.742-6.578-12.266\r\n\t\t\t\tc0-9.125,7.695-20.064,22.953-20.064c12.266,0,20.334,8.875,20.334,18.395c0,12.605-7.006,22.014-17.328,22.014\r\n\t\t\t\tc-3.469,0-6.732-1.875-7.844-4c0,0-1.871,7.392-2.262,8.826c-0.674,2.439-1.973,4.877-3.176,6.797C25.982,63.571,28.94,64,32,64\r\n\t\t\t\tc17.672,0,32-14.328,32-32C64,14.328,49.672,0,32,0z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.328,0,0,14.328,0,32c0,13.172,7.961,24.484,19.33,29.396\r\n\t\t\t\tc-0.082-2.23-0.002-4.891,0.562-7.302c0.621-2.604,4.137-17.5,4.137-17.5s-1.027-2.053-1.027-5.084\r\n\t\t\t\tc0-4.754,2.762-8.312,6.193-8.312c2.922,0,4.334,2.199,4.334,4.826c0,2.936-1.873,7.326-2.84,11.393\r\n\t\t\t\tc-0.801,3.406,1.715,6.188,5.074,6.188c6.08,0,10.176-7.815,10.176-17.078c0-7.035-4.734-12.307-13.359-12.307\r\n\t\t\t\tc-9.738,0-15.815,7.265-15.815,15.383c0,2.797,0.828,4.773,2.123,6.299c0.594,0.701,0.674,0.984,0.457,1.793\r\n\t\t\t\tc-0.156,0.588-0.502,2.01-0.65,2.578c-0.213,0.813-0.875,1.098-1.609,0.799c-4.484-1.828-6.578-6.742-6.578-12.266\r\n\t\t\t\tc0-9.125,7.695-20.064,22.953-20.064c12.266,0,20.334,8.875,20.334,18.395c0,12.605-7.006,22.014-17.328,22.014\r\n\t\t\t\tc-3.469,0-6.732-1.875-7.844-4c0,0-1.871,7.392-2.262,8.826c-0.674,2.439-1.973,4.877-3.176,6.797C25.982,63.571,28.94,64,32,64\r\n\t\t\t\tc17.672,0,32-14.328,32-32C64,14.328,49.672,0,32,0z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"pinterest_2_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"pinterest_1_","display":"inline"},"children":[{"name":"g","attribs":{"id":"pinterest_1_","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M55.989,15.676c-0.967-3.324-2.492-5.987-4.586-8.274\r\n\t\t\t\tc-2.034-2.223-4.437-4.016-7.45-5.364c-2.854-1.276-6.646-2.221-10.815-2.024c-1.427,0.067-2.741,0.144-4.012,0.329\r\n\t\t\t\tc-3.83,0.557-6.978,1.715-9.768,3.364c-3.63,2.146-6.612,5.15-8.647,8.906c-0.981,1.809-1.867,4.037-2.343,6.452\r\n\t\t\t\tc-0.493,2.498-0.494,5.513,0,8.096c0.812,4.253,2.794,7.533,6.055,9.336c0.436,0.241,1.082,0.617,1.595,0.607\r\n\t\t\t\tc1.241-0.025,1.27-1.492,1.545-2.555c0.228-0.882,0.761-2.096,0.299-2.91c-0.326-0.574-0.815-0.99-1.146-1.493\r\n\t\t\t\tc-1.046-1.586-1.695-3.622-1.695-6.249c0-3.408,0.833-6.145,2.093-8.526c2.406-4.545,6.493-7.838,12.285-8.831\r\n\t\t\t\tc3.188-0.546,6.777-0.264,9.37,0.582c2.614,0.853,4.763,2.371,6.28,4.276c1.593,2.002,2.598,4.583,2.816,7.793\r\n\t\t\t\tc0.118,1.739-0.006,3.502-0.174,5.035c-0.524,4.757-1.906,8.754-4.186,11.715c-1.426,1.852-3.56,3.814-6.629,3.922\r\n\t\t\t\tc-1.738,0.061-2.998-0.365-4.062-1.139c-1.027-0.748-1.779-1.743-2.119-3.187c-0.369-1.574,0.078-3.072,0.473-4.53\r\n\t\t\t\tc0.798-2.94,1.675-5.229,2.342-8.274c0.297-1.352,0.568-3.19,0.2-4.731c-0.346-1.445-1.087-2.467-2.168-3.112\r\n\t\t\t\tc-1.049-0.626-2.777-0.872-4.336-0.33c-2.453,0.855-4.045,3.201-4.735,5.845c-0.391,1.496-0.531,3.119-0.349,4.858\r\n\t\t\t\tc0.158,1.514,0.518,2.809,1.071,4.251c0.076,0.197-0.143,0.768-0.225,1.114c-1.222,5.192-2.377,10.25-3.588,15.408\r\n\t\t\t\tc-0.636,2.708-1.321,5.419-1.47,8.679c-0.131,2.86-0.371,5.802-0.019,8.349c0.065,0.469,0.094,0.792,0.424,0.861\r\n\t\t\t\tc0.433,0.089,0.127,0.755,1.564-0.911c2.163-2.506,3.811-5.6,5.109-8.805c0.783-1.933,1.256-4.069,1.794-6.173\r\n\t\t\t\tc0.546-2.134,1.072-4.318,1.595-6.401c0.804,1.414,1.939,2.349,3.29,3.112c1.362,0.769,2.98,1.306,4.959,1.442\r\n\t\t\t\tc2.037,0.142,3.94-0.222,5.607-0.709c1.681-0.49,3.162-1.225,4.386-2.024c5.046-3.29,8.409-9.072,9.594-16.142\r\n\t\t\t\tc0.317-1.889,0.77-3.777,0.77-5.921C56.982,19.258,56.492,17.406,55.989,15.676z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M55.989,15.676c-0.967-3.324-2.492-5.987-4.586-8.274\r\n\t\t\t\tc-2.034-2.223-4.437-4.016-7.45-5.364c-2.854-1.276-6.646-2.221-10.815-2.024c-1.427,0.067-2.741,0.144-4.012,0.329\r\n\t\t\t\tc-3.83,0.557-6.978,1.715-9.768,3.364c-3.63,2.146-6.612,5.15-8.647,8.906c-0.981,1.809-1.867,4.037-2.343,6.452\r\n\t\t\t\tc-0.493,2.498-0.494,5.513,0,8.096c0.812,4.253,2.794,7.533,6.055,9.336c0.436,0.241,1.082,0.617,1.595,0.607\r\n\t\t\t\tc1.241-0.025,1.27-1.492,1.545-2.555c0.228-0.882,0.761-2.096,0.299-2.91c-0.326-0.574-0.815-0.99-1.146-1.493\r\n\t\t\t\tc-1.046-1.586-1.695-3.622-1.695-6.249c0-3.408,0.833-6.145,2.093-8.526c2.406-4.545,6.493-7.838,12.285-8.831\r\n\t\t\t\tc3.188-0.546,6.777-0.264,9.37,0.582c2.614,0.853,4.763,2.371,6.28,4.276c1.593,2.002,2.598,4.583,2.816,7.793\r\n\t\t\t\tc0.118,1.739-0.006,3.502-0.174,5.035c-0.524,4.757-1.906,8.754-4.186,11.715c-1.426,1.852-3.56,3.814-6.629,3.922\r\n\t\t\t\tc-1.738,0.061-2.998-0.365-4.062-1.139c-1.027-0.748-1.779-1.743-2.119-3.187c-0.369-1.574,0.078-3.072,0.473-4.53\r\n\t\t\t\tc0.798-2.94,1.675-5.229,2.342-8.274c0.297-1.352,0.568-3.19,0.2-4.731c-0.346-1.445-1.087-2.467-2.168-3.112\r\n\t\t\t\tc-1.049-0.626-2.777-0.872-4.336-0.33c-2.453,0.855-4.045,3.201-4.735,5.845c-0.391,1.496-0.531,3.119-0.349,4.858\r\n\t\t\t\tc0.158,1.514,0.518,2.809,1.071,4.251c0.076,0.197-0.143,0.768-0.225,1.114c-1.222,5.192-2.377,10.25-3.588,15.408\r\n\t\t\t\tc-0.636,2.708-1.321,5.419-1.47,8.679c-0.131,2.86-0.371,5.802-0.019,8.349c0.065,0.469,0.094,0.792,0.424,0.861\r\n\t\t\t\tc0.433,0.089,0.127,0.755,1.564-0.911c2.163-2.506,3.811-5.6,5.109-8.805c0.783-1.933,1.256-4.069,1.794-6.173\r\n\t\t\t\tc0.546-2.134,1.072-4.318,1.595-6.401c0.804,1.414,1.939,2.349,3.29,3.112c1.362,0.769,2.98,1.306,4.959,1.442\r\n\t\t\t\tc2.037,0.142,3.94-0.222,5.607-0.709c1.681-0.49,3.162-1.225,4.386-2.024c5.046-3.29,8.409-9.072,9.594-16.142\r\n\t\t\t\tc0.317-1.889,0.77-3.777,0.77-5.921C56.982,19.258,56.492,17.406,55.989,15.676z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"forrst_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"forrst","display":"inline"},"children":[{"name":"g","attribs":{"id":"forrst","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M59.873,61.947L33.865,0.88c-0.228-0.538-0.747-0.883-1.321-0.883\r\n\t\t\t\ts-1.093,0.345-1.32,0.88L5.127,61.944c-0.194,0.457-0.15,0.98,0.116,1.396c0.267,0.412,0.719,0.663,1.205,0.663h22.123V50.667\r\n\t\t\t\tL20.714,48c-1.085,0-1.964-0.895-1.964-2c0-1.105,0.879-2,1.964-2l7.857,2.667V34c0-1.104,0.879-2,1.964-2h3.929\r\n\t\t\t\tc1.085,0,1.964,0.896,1.964,2v3l5.893-3c1.085,0,1.964,0.895,1.964,2c0,1.104-0.879,2-1.964,2l-5.893,3v7l9.821-6\r\n\t\t\t\tc1.085,0,1.964,0.895,1.964,2c0,1.104-0.879,2-1.964,2l-9.821,6v12.003h22.123c0.487,0,0.938-0.248,1.205-0.663\r\n\t\t\t\tC60.022,62.928,60.066,62.401,59.873,61.947z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M59.873,61.947L33.865,0.88c-0.228-0.538-0.747-0.883-1.321-0.883\r\n\t\t\t\ts-1.093,0.345-1.32,0.88L5.127,61.944c-0.194,0.457-0.15,0.98,0.116,1.396c0.267,0.412,0.719,0.663,1.205,0.663h22.123V50.667\r\n\t\t\t\tL20.714,48c-1.085,0-1.964-0.895-1.964-2c0-1.105,0.879-2,1.964-2l7.857,2.667V34c0-1.104,0.879-2,1.964-2h3.929\r\n\t\t\t\tc1.085,0,1.964,0.896,1.964,2v3l5.893-3c1.085,0,1.964,0.895,1.964,2c0,1.104-0.879,2-1.964,2l-5.893,3v7l9.821-6\r\n\t\t\t\tc1.085,0,1.964,0.895,1.964,2c0,1.104-0.879,2-1.964,2l-9.821,6v12.003h22.123c0.487,0,0.938-0.248,1.205-0.663\r\n\t\t\t\tC60.022,62.928,60.066,62.401,59.873,61.947z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"dribbble_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"dribbble","display":"inline"},"children":[{"name":"g","attribs":{"id":"dribbble","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M63.35,25.558c-0.42-2.056-1.049-4.081-1.866-6.015\r\n\t\t\t\tc-0.802-1.899-1.795-3.727-2.951-5.436c-1.144-1.694-2.459-3.287-3.905-4.733c-1.448-1.449-3.04-2.764-4.735-3.907\r\n\t\t\t\tc-1.709-1.158-3.54-2.149-5.436-2.953c-1.933-0.814-3.957-1.446-6.014-1.863c-2.107-0.433-4.276-0.652-6.442-0.652\r\n\t\t\t\tc-2.169,0-4.338,0.22-6.446,0.652c-2.056,0.417-4.08,1.049-6.013,1.863c-1.896,0.804-3.727,1.795-5.437,2.953\r\n\t\t\t\tC12.411,6.61,10.818,7.924,9.37,9.373c-1.446,1.446-2.76,3.039-3.904,4.733c-1.156,1.709-2.149,3.537-2.951,5.436\r\n\t\t\t\tc-0.818,1.934-1.446,3.96-1.867,6.015c-0.431,2.103-0.65,4.273-0.65,6.44c0,2.172,0.219,4.342,0.65,6.448\r\n\t\t\t\tc0.421,2.056,1.049,4.081,1.867,6.013c0.802,1.896,1.795,3.73,2.951,5.439c1.144,1.694,2.458,3.284,3.904,4.733\r\n\t\t\t\tc1.447,1.446,3.04,2.759,4.734,3.904c1.711,1.155,3.541,2.149,5.437,2.951c1.933,0.819,3.957,1.444,6.013,1.866\r\n\t\t\t\tc2.109,0.435,4.277,0.652,6.446,0.652c2.167,0,4.335-0.217,6.442-0.652c2.057-0.422,4.081-1.047,6.014-1.866\r\n\t\t\t\tc1.896-0.802,3.727-1.795,5.436-2.951c1.694-1.146,3.287-2.458,4.735-3.904c1.446-1.449,2.761-3.039,3.905-4.733\r\n\t\t\t\tc1.155-1.709,2.149-3.542,2.951-5.439c0.817-1.932,1.446-3.957,1.866-6.013c0.432-2.106,0.651-4.275,0.651-6.448\r\n\t\t\t\tC64.001,29.831,63.783,27.661,63.35,25.558z M32.001,4.67c6.919,0,13.234,2.579,18.049,6.819\r\n\t\t\t\tc-0.067,0.106-3.96,6.03-14.276,9.897C31.104,12.802,25.971,5.982,25.56,5.441C27.626,4.941,29.78,4.67,32.001,4.67z\r\n\t\t\t\t M25.455,5.464c-0.001,0.003-0.005,0.005-0.005,0.005s-0.032,0.008-0.082,0.018C25.396,5.479,25.426,5.474,25.455,5.464z\r\n\t\t\t\t M20.34,7.282c0.363,0.488,5.417,7.34,10.148,15.747c-13.123,3.487-24.511,3.35-25.233,3.337\r\n\t\t\t\tC7.032,17.901,12.718,10.883,20.34,7.282z M11.673,50.263c-4.352-4.842-7.001-11.244-7.001-18.266\r\n\t\t\t\tc0-0.291,0.013-0.576,0.023-0.862c0.481,0.01,13.986,0.316,28.057-3.894c0.784,1.532,1.532,3.09,2.218,4.645\r\n\t\t\t\tc-0.362,0.101-0.719,0.21-1.077,0.326C19.143,36.979,11.662,50.25,11.662,50.25S11.671,50.258,11.673,50.263z M32.001,59.33\r\n\t\t\t\tc-6.338,0-12.157-2.175-16.793-5.795c-0.001,0.002-0.005,0.01-0.005,0.01s-0.252-0.187-0.612-0.478\r\n\t\t\t\tc0.199,0.164,0.413,0.309,0.617,0.468c0.1-0.216,5.39-11.47,21.443-17.062c0.059-0.023,0.12-0.041,0.181-0.058\r\n\t\t\t\tc3.846,9.993,5.434,18.362,5.838,20.751C39.392,58.559,35.785,59.33,32.001,59.33z M47.272,54.668\r\n\t\t\t\tc-0.278-1.651-1.734-9.671-5.32-19.522c8.823-1.411,16.468,1.009,17.032,1.193C57.767,43.955,53.408,50.523,47.272,54.668z\r\n\t\t\t\t M40.286,30.832c-0.192-0.468-0.387-0.938-0.589-1.411c-0.569-1.337-1.181-2.662-1.817-3.964\r\n\t\t\t\tc10.793-4.405,15.174-10.741,15.226-10.817c3.833,4.655,6.152,10.602,6.215,17.087C58.925,31.641,49.676,29.651,40.286,30.832z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M63.35,25.558c-0.42-2.056-1.049-4.081-1.866-6.015\r\n\t\t\t\tc-0.802-1.899-1.795-3.727-2.951-5.436c-1.144-1.694-2.459-3.287-3.905-4.733c-1.448-1.449-3.04-2.764-4.735-3.907\r\n\t\t\t\tc-1.709-1.158-3.54-2.149-5.436-2.953c-1.933-0.814-3.957-1.446-6.014-1.863c-2.107-0.433-4.276-0.652-6.442-0.652\r\n\t\t\t\tc-2.169,0-4.338,0.22-6.446,0.652c-2.056,0.417-4.08,1.049-6.013,1.863c-1.896,0.804-3.727,1.795-5.437,2.953\r\n\t\t\t\tC12.411,6.61,10.818,7.924,9.37,9.373c-1.446,1.446-2.76,3.039-3.904,4.733c-1.156,1.709-2.149,3.537-2.951,5.436\r\n\t\t\t\tc-0.818,1.934-1.446,3.96-1.867,6.015c-0.431,2.103-0.65,4.273-0.65,6.44c0,2.172,0.219,4.342,0.65,6.448\r\n\t\t\t\tc0.421,2.056,1.049,4.081,1.867,6.013c0.802,1.896,1.795,3.73,2.951,5.439c1.144,1.694,2.458,3.284,3.904,4.733\r\n\t\t\t\tc1.447,1.446,3.04,2.759,4.734,3.904c1.711,1.155,3.541,2.149,5.437,2.951c1.933,0.819,3.957,1.444,6.013,1.866\r\n\t\t\t\tc2.109,0.435,4.277,0.652,6.446,0.652c2.167,0,4.335-0.217,6.442-0.652c2.057-0.422,4.081-1.047,6.014-1.866\r\n\t\t\t\tc1.896-0.802,3.727-1.795,5.436-2.951c1.694-1.146,3.287-2.458,4.735-3.904c1.446-1.449,2.761-3.039,3.905-4.733\r\n\t\t\t\tc1.155-1.709,2.149-3.542,2.951-5.439c0.817-1.932,1.446-3.957,1.866-6.013c0.432-2.106,0.651-4.275,0.651-6.448\r\n\t\t\t\tC64.001,29.831,63.783,27.661,63.35,25.558z M32.001,4.67c6.919,0,13.234,2.579,18.049,6.819\r\n\t\t\t\tc-0.067,0.106-3.96,6.03-14.276,9.897C31.104,12.802,25.971,5.982,25.56,5.441C27.626,4.941,29.78,4.67,32.001,4.67z\r\n\t\t\t\t M25.455,5.464c-0.001,0.003-0.005,0.005-0.005,0.005s-0.032,0.008-0.082,0.018C25.396,5.479,25.426,5.474,25.455,5.464z\r\n\t\t\t\t M20.34,7.282c0.363,0.488,5.417,7.34,10.148,15.747c-13.123,3.487-24.511,3.35-25.233,3.337\r\n\t\t\t\tC7.032,17.901,12.718,10.883,20.34,7.282z M11.673,50.263c-4.352-4.842-7.001-11.244-7.001-18.266\r\n\t\t\t\tc0-0.291,0.013-0.576,0.023-0.862c0.481,0.01,13.986,0.316,28.057-3.894c0.784,1.532,1.532,3.09,2.218,4.645\r\n\t\t\t\tc-0.362,0.101-0.719,0.21-1.077,0.326C19.143,36.979,11.662,50.25,11.662,50.25S11.671,50.258,11.673,50.263z M32.001,59.33\r\n\t\t\t\tc-6.338,0-12.157-2.175-16.793-5.795c-0.001,0.002-0.005,0.01-0.005,0.01s-0.252-0.187-0.612-0.478\r\n\t\t\t\tc0.199,0.164,0.413,0.309,0.617,0.468c0.1-0.216,5.39-11.47,21.443-17.062c0.059-0.023,0.12-0.041,0.181-0.058\r\n\t\t\t\tc3.846,9.993,5.434,18.362,5.838,20.751C39.392,58.559,35.785,59.33,32.001,59.33z M47.272,54.668\r\n\t\t\t\tc-0.278-1.651-1.734-9.671-5.32-19.522c8.823-1.411,16.468,1.009,17.032,1.193C57.767,43.955,53.408,50.523,47.272,54.668z\r\n\t\t\t\t M40.286,30.832c-0.192-0.468-0.387-0.938-0.589-1.411c-0.569-1.337-1.181-2.662-1.817-3.964\r\n\t\t\t\tc10.793-4.405,15.174-10.741,15.226-10.817c3.833,4.655,6.152,10.602,6.215,17.087C58.925,31.641,49.676,29.651,40.286,30.832z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"behance_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"behance","display":"inline"},"children":[{"name":"g","attribs":{"id":"behance","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M25.989,30.502c3.455-1.68,5.402-4.417,5.402-8.338\r\n\t\t\t\tc0-7.438-5.12-10.15-12.686-10.15H0.001v40.192h19.255c7.179,0,14.027-3.472,14.027-11.584\r\n\t\t\t\tC33.284,35.646,30.836,31.901,25.989,30.502z M7.991,18.774h8.18c3.115,0,6.01,0.786,6.01,4.591c0,3.352-2.283,4.749-5.343,4.749\r\n\t\t\t\tH7.991V18.774z M17.338,45.063H7.991V34.098h9.513c3.73,0,6.288,1.625,6.288,5.707C23.792,43.947,20.789,45.063,17.338,45.063z\r\n\t\t\t\t M57.972,15.993H42.028v4.072h15.943V15.993z M50.05,22.502c-8.735,0-14.692,6.601-14.692,15.273\r\n\t\t\t\tc0,8.947,5.621,15.212,14.692,15.212c6.514,0,10.62-1.965,12.842-8.79h-6.328c-0.501,1.793-3.064,2.806-6.238,2.806\r\n\t\t\t\tc-4.395,0-6.843-1.855-7.064-6.891h20.756C64.574,31.219,59.843,22.502,50.05,22.502z M43.262,34.198\r\n\t\t\t\tc0.109-2.234,1.556-5.709,6.563-5.709c3.839,0,5.568,1.684,6.293,5.709H43.262z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M25.989,30.502c3.455-1.68,5.402-4.417,5.402-8.338\r\n\t\t\t\tc0-7.438-5.12-10.15-12.686-10.15H0.001v40.192h19.255c7.179,0,14.027-3.472,14.027-11.584\r\n\t\t\t\tC33.284,35.646,30.836,31.901,25.989,30.502z M7.991,18.774h8.18c3.115,0,6.01,0.786,6.01,4.591c0,3.352-2.283,4.749-5.343,4.749\r\n\t\t\t\tH7.991V18.774z M17.338,45.063H7.991V34.098h9.513c3.73,0,6.288,1.625,6.288,5.707C23.792,43.947,20.789,45.063,17.338,45.063z\r\n\t\t\t\t M57.972,15.993H42.028v4.072h15.943V15.993z M50.05,22.502c-8.735,0-14.692,6.601-14.692,15.273\r\n\t\t\t\tc0,8.947,5.621,15.212,14.692,15.212c6.514,0,10.62-1.965,12.842-8.79h-6.328c-0.501,1.793-3.064,2.806-6.238,2.806\r\n\t\t\t\tc-4.395,0-6.843-1.855-7.064-6.891h20.756C64.574,31.219,59.843,22.502,50.05,22.502z M43.262,34.198\r\n\t\t\t\tc0.109-2.234,1.556-5.709,6.563-5.709c3.839,0,5.568,1.684,6.293,5.709H43.262z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"windows_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"windows","display":"inline"},"children":[{"name":"g","attribs":{"id":"windows","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M0.015,30.236h25.809V5.541L0.015,9.28V30.236z M29.353,5.029v25.207h34.632\r\n\t\t\t\tV0.015L29.353,5.029z M0.015,54.721l25.809,3.738V33.765H0.015V54.721z M29.353,58.97l34.632,5.015v-30.22H29.353V58.97z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M0.015,30.236h25.809V5.541L0.015,9.28V30.236z M29.353,5.029v25.207h34.632\r\n\t\t\t\tV0.015L29.353,5.029z M0.015,54.721l25.809,3.738V33.765H0.015V54.721z M29.353,58.97l34.632,5.015v-30.22H29.353V58.97z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"microsoft_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"microsoft","display":"inline"},"children":[{"name":"g","attribs":{"id":"microsoft","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26.307,31.796c-2.208-1.219-5.281-2.486-8.648-2.486\r\n\t\t\t\tc-0.383,0-0.764,0.014-1.149,0.049c-3.377,0.302-6.453,1.232-8.613,2.052c-0.638,0.248-1.297,0.518-1.971,0.814l-5.924,22.12\r\n\t\t\t\tc4.476-1.944,8.093-2.72,11.133-2.72c5.01,0,8.484,2.084,11.763,4.435c1.217-4.441,5.348-19.634,6.133-22.527\r\n\t\t\t\tC28.143,32.94,27.25,32.344,26.307,31.796z M18.765,23.98c4.802,0.054,8.205,2.119,11.372,4.382\r\n\t\t\t\tc1.213-4.427,4.814-17.723,6.03-22.209V6.136c0,0-4.244-2.737-7.197-3.548c-1.409-0.359-3.003-0.585-4.766-0.585h-0.069\r\n\t\t\t\tc-3.001,0.062-6.598,0.844-11.02,2.788L7.28,26.86c4.543-1.995,8.228-2.88,11.324-2.88H18.765z M52.56,13.559\r\n\t\t\t\tc-6.488,0-10.766-2.974-12.658-4.559l-5.985,22.306c0.016,0.019,0.043,0.035,0.063,0.048c3.292,2.37,7.573,4.287,12.733,4.287\r\n\t\t\t\tc3.412,0,7.204-0.836,11.348-2.941v-0.03c0.009,0,0.021-0.008,0.036-0.014l5.902-21.899\r\n\t\t\t\tC59.641,12.807,55.824,13.559,52.56,13.559z M32.569,36.329l-5.905,22.085c-0.009-0.005,6.904,4.584,12.089,4.584\r\n\t\t\t\tc3.281,0,7.205-0.865,12.114-3.047l5.691-21.43c-4.318,1.666-8.039,2.292-11.184,2.292\r\n\t\t\t\tC38.529,40.813,34.367,37.874,32.569,36.329z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26.307,31.796c-2.208-1.219-5.281-2.486-8.648-2.486\r\n\t\t\t\tc-0.383,0-0.764,0.014-1.149,0.049c-3.377,0.302-6.453,1.232-8.613,2.052c-0.638,0.248-1.297,0.518-1.971,0.814l-5.924,22.12\r\n\t\t\t\tc4.476-1.944,8.093-2.72,11.133-2.72c5.01,0,8.484,2.084,11.763,4.435c1.217-4.441,5.348-19.634,6.133-22.527\r\n\t\t\t\tC28.143,32.94,27.25,32.344,26.307,31.796z M18.765,23.98c4.802,0.054,8.205,2.119,11.372,4.382\r\n\t\t\t\tc1.213-4.427,4.814-17.723,6.03-22.209V6.136c0,0-4.244-2.737-7.197-3.548c-1.409-0.359-3.003-0.585-4.766-0.585h-0.069\r\n\t\t\t\tc-3.001,0.062-6.598,0.844-11.02,2.788L7.28,26.86c4.543-1.995,8.228-2.88,11.324-2.88H18.765z M52.56,13.559\r\n\t\t\t\tc-6.488,0-10.766-2.974-12.658-4.559l-5.985,22.306c0.016,0.019,0.043,0.035,0.063,0.048c3.292,2.37,7.573,4.287,12.733,4.287\r\n\t\t\t\tc3.412,0,7.204-0.836,11.348-2.941v-0.03c0.009,0,0.021-0.008,0.036-0.014l5.902-21.899\r\n\t\t\t\tC59.641,12.807,55.824,13.559,52.56,13.559z M32.569,36.329l-5.905,22.085c-0.009-0.005,6.904,4.584,12.089,4.584\r\n\t\t\t\tc3.281,0,7.205-0.865,12.114-3.047l5.691-21.43c-4.318,1.666-8.039,2.292-11.184,2.292\r\n\t\t\t\tC38.529,40.813,34.367,37.874,32.569,36.329z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"appstore_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"appstore","display":"inline"},"children":[{"name":"g","attribs":{"id":"appstore","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31.03,28.052L24.522,39.43h17.661c-1.283-2.54-2.981-6.173-5.261-11.377H31.03\r\n\t\t\t\tz M31.735,21.424c0.405-0.708,0.16-1.618-0.546-2.03l-3.854-2.214c-0.704-0.41-1.615-0.163-2.019,0.545l-5.908,10.328\r\n\t\t\t\tL12.899,39.43l-5.433,9.5c-0.409,0.708-0.16,1.618,0.546,2.023l3.853,2.224c0.705,0.408,1.615,0.161,2.023-0.545l7.55-13.202\r\n\t\t\t\tl4.879-8.532L31.735,21.424z M10.606,54.878l-3.853-2.219c-0.706-0.408-1.358-0.074-1.452,0.736l-0.666,5.824\r\n\t\t\t\tc-0.093,0.81,0.382,1.101,1.054,0.642l4.977-3.406C11.341,55.999,11.312,55.286,10.606,54.878z M16.322,28.052H1.35\r\n\t\t\t\tc-0.74,0-1.339,0.601-1.339,1.343v8.692c0,0.741,0.599,1.342,1.339,1.342h8.464L16.322,28.052z M62.65,28.052H49.643\r\n\t\t\t\tc1.53,2.879,2.948,5.589,3.948,7.505c0.692,1.325,1.239,2.372,1.433,2.723c0.202,0.372,0.346,0.756,0.444,1.149h7.183\r\n\t\t\t\tc0.739,0,1.339-0.601,1.339-1.342v-8.692C63.989,28.654,63.389,28.052,62.65,28.052z M52.677,39.575\r\n\t\t\t\tc-0.022-0.038-0.051-0.092-0.079-0.145c-0.358-0.665-1.255-2.394-2.433-4.639c-0.014-0.031-0.029-0.056-0.043-0.087\r\n\t\t\t\tc-0.09-0.173-0.181-0.346-0.275-0.525c-0.067-0.127-0.134-0.257-0.204-0.387c-0.057-0.112-0.117-0.224-0.175-0.339\r\n\t\t\t\tc-0.105-0.199-0.211-0.397-0.317-0.601c-0.034-0.064-0.066-0.127-0.1-0.191c-0.119-0.229-0.241-0.459-0.364-0.693\r\n\t\t\t\tc-0.035-0.066-0.07-0.132-0.106-0.201c-2.714-5.151-6.123-11.492-8.227-14.827c-3.683-5.844-8.599-15.583-9.971-14.89\r\n\t\t\t\tc-1.923,0.961,4.027,13.324,5.997,17.97c1.97,4.644,9.656,22.447,11.197,23.224c1.543,0.774,2.14,0.344,3.169-0.084\r\n\t\t\t\tC51.774,42.729,53.619,41.3,52.677,39.575z M56.504,53.867c-0.577,0.555-1.951,1.763-0.289,4.107\r\n\t\t\t\tc1.657,2.349,5.362,2.454,5.85,4.013C62.065,61.986,63.229,50.061,56.504,53.867z M57.071,48.749l-1.835-3.536\r\n\t\t\t\tc-0.416-0.8-1.392-1.126-2.171-0.726l-2.213,1.144c-0.779,0.405-1.025,1.353-0.546,2.117l2.322,3.681\r\n\t\t\t\tc0.48,0.759,1.491,1.009,2.242,0.553l1.58-0.953C57.205,50.575,57.484,49.549,57.071,48.749z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31.03,28.052L24.522,39.43h17.661c-1.283-2.54-2.981-6.173-5.261-11.377H31.03\r\n\t\t\t\tz M31.735,21.424c0.405-0.708,0.16-1.618-0.546-2.03l-3.854-2.214c-0.704-0.41-1.615-0.163-2.019,0.545l-5.908,10.328\r\n\t\t\t\tL12.899,39.43l-5.433,9.5c-0.409,0.708-0.16,1.618,0.546,2.023l3.853,2.224c0.705,0.408,1.615,0.161,2.023-0.545l7.55-13.202\r\n\t\t\t\tl4.879-8.532L31.735,21.424z M10.606,54.878l-3.853-2.219c-0.706-0.408-1.358-0.074-1.452,0.736l-0.666,5.824\r\n\t\t\t\tc-0.093,0.81,0.382,1.101,1.054,0.642l4.977-3.406C11.341,55.999,11.312,55.286,10.606,54.878z M16.322,28.052H1.35\r\n\t\t\t\tc-0.74,0-1.339,0.601-1.339,1.343v8.692c0,0.741,0.599,1.342,1.339,1.342h8.464L16.322,28.052z M62.65,28.052H49.643\r\n\t\t\t\tc1.53,2.879,2.948,5.589,3.948,7.505c0.692,1.325,1.239,2.372,1.433,2.723c0.202,0.372,0.346,0.756,0.444,1.149h7.183\r\n\t\t\t\tc0.739,0,1.339-0.601,1.339-1.342v-8.692C63.989,28.654,63.389,28.052,62.65,28.052z M52.677,39.575\r\n\t\t\t\tc-0.022-0.038-0.051-0.092-0.079-0.145c-0.358-0.665-1.255-2.394-2.433-4.639c-0.014-0.031-0.029-0.056-0.043-0.087\r\n\t\t\t\tc-0.09-0.173-0.181-0.346-0.275-0.525c-0.067-0.127-0.134-0.257-0.204-0.387c-0.057-0.112-0.117-0.224-0.175-0.339\r\n\t\t\t\tc-0.105-0.199-0.211-0.397-0.317-0.601c-0.034-0.064-0.066-0.127-0.1-0.191c-0.119-0.229-0.241-0.459-0.364-0.693\r\n\t\t\t\tc-0.035-0.066-0.07-0.132-0.106-0.201c-2.714-5.151-6.123-11.492-8.227-14.827c-3.683-5.844-8.599-15.583-9.971-14.89\r\n\t\t\t\tc-1.923,0.961,4.027,13.324,5.997,17.97c1.97,4.644,9.656,22.447,11.197,23.224c1.543,0.774,2.14,0.344,3.169-0.084\r\n\t\t\t\tC51.774,42.729,53.619,41.3,52.677,39.575z M56.504,53.867c-0.577,0.555-1.951,1.763-0.289,4.107\r\n\t\t\t\tc1.657,2.349,5.362,2.454,5.85,4.013C62.065,61.986,63.229,50.061,56.504,53.867z M57.071,48.749l-1.835-3.536\r\n\t\t\t\tc-0.416-0.8-1.392-1.126-2.171-0.726l-2.213,1.144c-0.779,0.405-1.025,1.353-0.546,2.117l2.322,3.681\r\n\t\t\t\tc0.48,0.759,1.491,1.009,2.242,0.553l1.58-0.953C57.205,50.575,57.484,49.549,57.071,48.749z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"apple_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"apple","display":"inline"},"children":[{"name":"g","attribs":{"id":"apple","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M42.112,10.214c2.399-2.709,4.021-6.473,3.579-10.221\r\n\t\t\t\tc-3.459,0.13-7.647,2.14-10.131,4.846c-2.224,2.401-4.17,6.226-3.65,9.906C35.77,15.025,39.708,12.918,42.112,10.214z\r\n\t\t\t\t M50.772,34.008c-0.087-8.109,7.104-11.997,7.426-12.193c-4.041-5.499-10.336-6.254-12.576-6.34\r\n\t\t\t\tc-5.355-0.506-10.451,2.935-13.169,2.935c-2.711,0-6.906-2.861-11.346-2.788c-5.84,0.081-11.222,3.161-14.228,8.028\r\n\t\t\t\tc-6.065,9.794-1.552,24.307,4.359,32.256c2.89,3.886,6.335,8.257,10.855,8.097c4.357-0.16,6.002-2.622,11.267-2.622\r\n\t\t\t\tc5.268,0,6.746,2.622,11.354,2.541c4.685-0.079,7.655-3.959,10.522-7.86c3.318-4.513,4.683-8.885,4.765-9.106\r\n\t\t\t\tC59.896,46.91,50.865,43.69,50.772,34.008z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M42.112,10.214c2.399-2.709,4.021-6.473,3.579-10.221\r\n\t\t\t\tc-3.459,0.13-7.647,2.14-10.131,4.846c-2.224,2.401-4.17,6.226-3.65,9.906C35.77,15.025,39.708,12.918,42.112,10.214z\r\n\t\t\t\t M50.772,34.008c-0.087-8.109,7.104-11.997,7.426-12.193c-4.041-5.499-10.336-6.254-12.576-6.34\r\n\t\t\t\tc-5.355-0.506-10.451,2.935-13.169,2.935c-2.711,0-6.906-2.861-11.346-2.788c-5.84,0.081-11.222,3.161-14.228,8.028\r\n\t\t\t\tc-6.065,9.794-1.552,24.307,4.359,32.256c2.89,3.886,6.335,8.257,10.855,8.097c4.357-0.16,6.002-2.622,11.267-2.622\r\n\t\t\t\tc5.268,0,6.746,2.622,11.354,2.541c4.685-0.079,7.655-3.959,10.522-7.86c3.318-4.513,4.683-8.885,4.765-9.106\r\n\t\t\t\tC59.896,46.91,50.865,43.69,50.772,34.008z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"android_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"android","display":"inline"},"children":[{"name":"g","attribs":{"id":"android","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M15.647,47.493c0,2.164,1.709,3.926,3.812,3.926h2.752\r\n\t\t\t\tc-0.092,0.327-0.144,0.673-0.144,1.031v7.848c0,2.052,1.618,3.717,3.612,3.717c1.995,0,3.613-1.665,3.613-3.717V52.45\r\n\t\t\t\tc0-0.358-0.053-0.704-0.144-1.031h6.708c-0.092,0.327-0.144,0.673-0.144,1.031v7.848c0,2.052,1.618,3.717,3.612,3.717\r\n\t\t\t\tc1.995,0,3.613-1.665,3.613-3.717V52.45c0-0.358-0.052-0.704-0.144-1.031h2.752c2.103,0,3.812-1.761,3.812-3.926v-27.26H15.647\r\n\t\t\t\tV47.493z M9.626,20.233c-1.995,0-3.612,1.664-3.612,3.717v15.902c0,2.052,1.617,3.717,3.612,3.717\r\n\t\t\t\tc1.994,0,3.612-1.665,3.612-3.717V23.951C13.238,21.897,11.62,20.233,9.626,20.233z M55.375,20.233\r\n\t\t\t\tc-1.995,0-3.612,1.664-3.612,3.717v15.902c0,2.052,1.617,3.717,3.612,3.717c1.995,0,3.611-1.665,3.611-3.717V23.951\r\n\t\t\t\tC58.986,21.897,57.37,20.233,55.375,20.233z M40.789,5.355l0.678-1.047l0.668-1.032l1.501-2.318\r\n\t\t\t\tc0.184-0.285,0.109-0.669-0.166-0.859c-0.278-0.191-0.651-0.114-0.836,0.172l-1.609,2.485l-0.677,1.045L39.662,4.86\r\n\t\t\t\tC37.487,3.992,35.06,3.505,32.5,3.505c-2.559,0-4.986,0.487-7.16,1.354l-0.685-1.059l-0.676-1.045l-1.612-2.485\r\n\t\t\t\tc-0.184-0.285-0.558-0.362-0.836-0.172c-0.275,0.19-0.351,0.574-0.166,0.859l1.5,2.318l0.669,1.032l0.678,1.047\r\n\t\t\t\tc-5.109,2.449-8.566,7.089-8.566,12.4h33.708C49.355,12.444,45.898,7.804,40.789,5.355z M25.278,12.799\r\n\t\t\t\tc-0.998,0-1.806-0.833-1.806-1.859c0-1.026,0.808-1.857,1.806-1.857c0.997,0,1.806,0.831,1.806,1.857\r\n\t\t\t\tC27.084,11.966,26.275,12.799,25.278,12.799z M39.724,12.799c-0.997,0-1.805-0.833-1.805-1.859c0-1.026,0.808-1.857,1.805-1.857\r\n\t\t\t\tc0.998,0,1.806,0.831,1.806,1.857C41.529,11.966,40.722,12.799,39.724,12.799z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M15.647,47.493c0,2.164,1.709,3.926,3.812,3.926h2.752\r\n\t\t\t\tc-0.092,0.327-0.144,0.673-0.144,1.031v7.848c0,2.052,1.618,3.717,3.612,3.717c1.995,0,3.613-1.665,3.613-3.717V52.45\r\n\t\t\t\tc0-0.358-0.053-0.704-0.144-1.031h6.708c-0.092,0.327-0.144,0.673-0.144,1.031v7.848c0,2.052,1.618,3.717,3.612,3.717\r\n\t\t\t\tc1.995,0,3.613-1.665,3.613-3.717V52.45c0-0.358-0.052-0.704-0.144-1.031h2.752c2.103,0,3.812-1.761,3.812-3.926v-27.26H15.647\r\n\t\t\t\tV47.493z M9.626,20.233c-1.995,0-3.612,1.664-3.612,3.717v15.902c0,2.052,1.617,3.717,3.612,3.717\r\n\t\t\t\tc1.994,0,3.612-1.665,3.612-3.717V23.951C13.238,21.897,11.62,20.233,9.626,20.233z M55.375,20.233\r\n\t\t\t\tc-1.995,0-3.612,1.664-3.612,3.717v15.902c0,2.052,1.617,3.717,3.612,3.717c1.995,0,3.611-1.665,3.611-3.717V23.951\r\n\t\t\t\tC58.986,21.897,57.37,20.233,55.375,20.233z M40.789,5.355l0.678-1.047l0.668-1.032l1.501-2.318\r\n\t\t\t\tc0.184-0.285,0.109-0.669-0.166-0.859c-0.278-0.191-0.651-0.114-0.836,0.172l-1.609,2.485l-0.677,1.045L39.662,4.86\r\n\t\t\t\tC37.487,3.992,35.06,3.505,32.5,3.505c-2.559,0-4.986,0.487-7.16,1.354l-0.685-1.059l-0.676-1.045l-1.612-2.485\r\n\t\t\t\tc-0.184-0.285-0.558-0.362-0.836-0.172c-0.275,0.19-0.351,0.574-0.166,0.859l1.5,2.318l0.669,1.032l0.678,1.047\r\n\t\t\t\tc-5.109,2.449-8.566,7.089-8.566,12.4h33.708C49.355,12.444,45.898,7.804,40.789,5.355z M25.278,12.799\r\n\t\t\t\tc-0.998,0-1.806-0.833-1.806-1.859c0-1.026,0.808-1.857,1.806-1.857c0.997,0,1.806,0.831,1.806,1.857\r\n\t\t\t\tC27.084,11.966,26.275,12.799,25.278,12.799z M39.724,12.799c-0.997,0-1.805-0.833-1.805-1.859c0-1.026,0.808-1.857,1.805-1.857\r\n\t\t\t\tc0.998,0,1.806,0.831,1.806,1.857C41.529,11.966,40.722,12.799,39.724,12.799z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"RSS_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"RSS","display":"inline"},"children":[{"name":"g","attribs":{"id":"RSS","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M8,48c-4.418,0-8,3.582-8,8c0,4.418,3.582,8,8,8c4.418,0,8-3.582,8-8\r\n\t\t\t\tC16,51.582,12.418,48,8,48z M0,23v11c16.569,0,30,13.431,30,30h11C41,41.356,22.644,23,0,23z M0,0v11c29.271,0,53,23.729,53,53\r\n\t\t\t\th11C64,28.654,35.346,0,0,0z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M8,48c-4.418,0-8,3.582-8,8c0,4.418,3.582,8,8,8c4.418,0,8-3.582,8-8\r\n\t\t\t\tC16,51.582,12.418,48,8,48z M0,23v11c16.569,0,30,13.431,30,30h11C41,41.356,22.644,23,0,23z M0,0v11c29.271,0,53,23.729,53,53\r\n\t\t\t\th11C64,28.654,35.346,0,0,0z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"HASHTAG_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"HASHTAG","display":"inline"},"children":[{"name":"g","attribs":{"id":"HASHTAG","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M58,18h-8.69l2.614-11.325h0C51.973,6.458,52,6.232,52,6c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.425,0-2.617,0.994-2.923,2.326l0,0L43.152,18H27.31l2.614-11.325h0C29.973,6.458,30,6.232,30,6c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.425,0-2.617,0.994-2.923,2.326l0,0L21.152,18H12c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h7.767l-3.692,16H6\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h8.69l-2.613,11.325h0C12.027,57.542,12,57.768,12,58c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.425,0,2.617-0.994,2.923-2.326l0,0L20.848,46H36.69l-2.614,11.325h0C34.027,57.542,34,57.768,34,58c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.425,0,2.617-0.994,2.923-2.326l0,0L42.848,46H52c1.657,0,3-1.343,3-3s-1.343-3-3-3h-7.767l3.692-16H58c1.657,0,3-1.343,3-3\r\n\t\t\t\tC61,19.343,59.657,18,58,18z M38.075,40H22.233l3.692-16h15.842L38.075,40z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M58,18h-8.69l2.614-11.325h0C51.973,6.458,52,6.232,52,6c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.425,0-2.617,0.994-2.923,2.326l0,0L43.152,18H27.31l2.614-11.325h0C29.973,6.458,30,6.232,30,6c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.425,0-2.617,0.994-2.923,2.326l0,0L21.152,18H12c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h7.767l-3.692,16H6\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h8.69l-2.613,11.325h0C12.027,57.542,12,57.768,12,58c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.425,0,2.617-0.994,2.923-2.326l0,0L20.848,46H36.69l-2.614,11.325h0C34.027,57.542,34,57.768,34,58c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.425,0,2.617-0.994,2.923-2.326l0,0L42.848,46H52c1.657,0,3-1.343,3-3s-1.343-3-3-3h-7.767l3.692-16H58c1.657,0,3-1.343,3-3\r\n\t\t\t\tC61,19.343,59.657,18,58,18z M38.075,40H22.233l3.692-16h15.842L38.075,40z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"COLUMNS_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"COLUMNS","display":"inline"},"children":[{"name":"g","attribs":{"id":"COLUMNS","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,6H3C1.343,6,0,7.343,0,9v46c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V9\r\n\t\t\t\tC64,7.343,62.657,6,61,6z M21,52H6V12h15V52z M40,52H24V12h16V52z M58,52H43V12h15V52z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,6H3C1.343,6,0,7.343,0,9v46c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V9\r\n\t\t\t\tC64,7.343,62.657,6,61,6z M21,52H6V12h15V52z M40,52H24V12h16V52z M58,52H43V12h15V52z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"PEN_3_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PEN_3","display":"inline"},"children":[{"name":"g","attribs":{"id":"PEN_3","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61.167,6.995l-4.223-4.215c-1.166-1.164-3.057-1.164-4.223,0l-6.334,6.322\r\n\t\t\t\tl8.446,8.429l6.334-6.322C62.334,10.046,62.334,8.159,61.167,6.995z M53,57H7V11h33.357l6-6H4C2.343,5,1,6.343,1,8v52\r\n\t\t\t\tc0,1.657,1.343,3,3,3h52c1.657,0,3-1.343,3-3V17.813l-6,6V57z M52.721,19.639l-8.446-8.429L18.938,36.498l8.446,8.429\r\n\t\t\t\tL52.721,19.639z M13.998,49.84l11.258-2.806l-8.447-8.431L13.998,49.84z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61.167,6.995l-4.223-4.215c-1.166-1.164-3.057-1.164-4.223,0l-6.334,6.322\r\n\t\t\t\tl8.446,8.429l6.334-6.322C62.334,10.046,62.334,8.159,61.167,6.995z M53,57H7V11h33.357l6-6H4C2.343,5,1,6.343,1,8v52\r\n\t\t\t\tc0,1.657,1.343,3,3,3h52c1.657,0,3-1.343,3-3V17.813l-6,6V57z M52.721,19.639l-8.446-8.429L18.938,36.498l8.446,8.429\r\n\t\t\t\tL52.721,19.639z M13.998,49.84l11.258-2.806l-8.447-8.431L13.998,49.84z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"PEN_2_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PEN_2","display":"inline"},"children":[{"name":"g","attribs":{"id":"PEN_2","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46.721,19.639l-8.446-8.429L12.938,36.498l8.446,8.429L46.721,19.639z\r\n\t\t\t\t M55.167,11.21c1.166-1.164,1.166-3.051,0-4.214l-4.223-4.215c-1.166-1.164-3.057-1.164-4.223,0l-6.334,6.322l8.446,8.429\r\n\t\t\t\tL55.167,11.21z M61,56H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,57.343,62.657,56,61,56z\r\n\t\t\t\t M10.809,38.604L7.998,49.84l11.258-2.806L10.809,38.604z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46.721,19.639l-8.446-8.429L12.938,36.498l8.446,8.429L46.721,19.639z\r\n\t\t\t\t M55.167,11.21c1.166-1.164,1.166-3.051,0-4.214l-4.223-4.215c-1.166-1.164-3.057-1.164-4.223,0l-6.334,6.322l8.446,8.429\r\n\t\t\t\tL55.167,11.21z M61,56H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,57.343,62.657,56,61,56z\r\n\t\t\t\t M10.809,38.604L7.998,49.84l11.258-2.806L10.809,38.604z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"PEN_1_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PEN_1","display":"inline"},"children":[{"name":"g","attribs":{"id":"PEN_1","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M12.938,42.498l8.446,8.429l25.338-25.288l-8.446-8.429L12.938,42.498z\r\n\t\t\t\t M7.998,55.84l11.258-2.806l-8.447-8.431L7.998,55.84z M55.167,12.996l-4.223-4.215c-1.166-1.164-3.057-1.164-4.223,0\r\n\t\t\t\tl-6.334,6.322l8.446,8.429l6.334-6.322C56.333,16.046,56.333,14.159,55.167,12.996z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M12.938,42.498l8.446,8.429l25.338-25.288l-8.446-8.429L12.938,42.498z\r\n\t\t\t\t M7.998,55.84l11.258-2.806l-8.447-8.431L7.998,55.84z M55.167,12.996l-4.223-4.215c-1.166-1.164-3.057-1.164-4.223,0\r\n\t\t\t\tl-6.334,6.322l8.446,8.429l6.334-6.322C56.333,16.046,56.333,14.159,55.167,12.996z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"RESIZE_2_5_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"RESIZE_2","display":"inline"},"children":[{"name":"g","attribs":{"id":"RESIZE_2","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M18,43H6c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h4.757l-9.879,9.879\r\n\t\t\t\tC0.336,59.422,0,60.172,0,61c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L15,53.243V58c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.657,0,3-1.343,3-3V46C21,44.343,19.657,43,18,43z M32,23c-4.971,0-9,4.029-9,9c0,4.971,4.029,9,9,9c4.971,0,9-4.029,9-9\r\n\t\t\t\tC41,27.029,36.971,23,32,23z M64,3c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L49,10.757V6c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-4.757l9.879-9.879\r\n\t\t\t\tC63.664,4.578,64,3.829,64,3z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M18,43H6c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h4.757l-9.879,9.879\r\n\t\t\t\tC0.336,59.422,0,60.172,0,61c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L15,53.243V58c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.657,0,3-1.343,3-3V46C21,44.343,19.657,43,18,43z M32,23c-4.971,0-9,4.029-9,9c0,4.971,4.029,9,9,9c4.971,0,9-4.029,9-9\r\n\t\t\t\tC41,27.029,36.971,23,32,23z M64,3c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L49,10.757V6c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-4.757l9.879-9.879\r\n\t\t\t\tC63.664,4.578,64,3.829,64,3z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"RESIZE_1_5_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"RESIZE_1","display":"inline"},"children":[{"name":"g","attribs":{"id":"RESIZE_1","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M18,43c-0.828,0-1.578,0.336-2.121,0.879L6,53.757V49c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-4.757l9.879-9.879\r\n\t\t\t\tC20.664,47.578,21,46.829,21,46C21,44.343,19.657,43,18,43z M61,0H49c-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757l-9.879,9.879\r\n\t\t\t\tC43.336,16.422,43,17.172,43,18c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L58,10.243V15c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M32,23c-4.971,0-9,4.029-9,9c0,4.971,4.029,9,9,9c4.971,0,9-4.029,9-9\r\n\t\t\t\tC41,27.029,36.971,23,32,23z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M18,43c-0.828,0-1.578,0.336-2.121,0.879L6,53.757V49c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-4.757l9.879-9.879\r\n\t\t\t\tC20.664,47.578,21,46.829,21,46C21,44.343,19.657,43,18,43z M61,0H49c-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757l-9.879,9.879\r\n\t\t\t\tC43.336,16.422,43,17.172,43,18c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L58,10.243V15c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M32,23c-4.971,0-9,4.029-9,9c0,4.971,4.029,9,9,9c4.971,0,9-4.029,9-9\r\n\t\t\t\tC41,27.029,36.971,23,32,23z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"RESIZE_2_4_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"RESIZE_2_1_","display":"inline"},"children":[{"name":"g","attribs":{"id":"RESIZE_2_1_","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,6c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L41,18.757V14\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-4.757\r\n\t\t\t\tL60.121,8.121C60.664,7.579,61,6.828,61,6z M26,35H14c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h4.757L3.879,55.879\r\n\t\t\t\tC3.336,56.422,3,57.172,3,58c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L23,45.243V50c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.657,0,3-1.343,3-3V38C29,36.343,27.657,35,26,35z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,6c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L41,18.757V14\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-4.757\r\n\t\t\t\tL60.121,8.121C60.664,7.579,61,6.828,61,6z M26,35H14c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h4.757L3.879,55.879\r\n\t\t\t\tC3.336,56.422,3,57.172,3,58c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L23,45.243V50c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.657,0,3-1.343,3-3V38C29,36.343,27.657,35,26,35z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"RESIZE_1_4_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"RESIZE_1_1_","display":"inline"},"children":[{"name":"g","attribs":{"id":"RESIZE_1_1_","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26,35c-0.828,0-1.579,0.336-2.121,0.879L9,50.758V46c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-4.757l14.879-14.879\r\n\t\t\t\tC28.664,39.579,29,38.828,29,38C29,36.343,27.657,35,26,35z M58,3H46c-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757L35.879,23.879\r\n\t\t\t\tC35.336,24.422,35,25.172,35,26c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L55,13.243V18c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.657,0,3-1.343,3-3V6C61,4.343,59.657,3,58,3z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26,35c-0.828,0-1.579,0.336-2.121,0.879L9,50.758V46c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-4.757l14.879-14.879\r\n\t\t\t\tC28.664,39.579,29,38.828,29,38C29,36.343,27.657,35,26,35z M58,3H46c-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757L35.879,23.879\r\n\t\t\t\tC35.336,24.422,35,25.172,35,26c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L55,13.243V18c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.657,0,3-1.343,3-3V6C61,4.343,59.657,3,58,3z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"COG_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"COG","display":"inline"},"children":[{"name":"g","attribs":{"id":"COG","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,20c-6.627,0-12,5.372-12,12c0,6.627,5.372,12,12,12s12-5.373,12-12\r\n\t\t\t\tC44,25.373,38.627,20,32,20z M32,38c-3.314,0-6-2.686-6-6c0-3.314,2.686-6,6-6s6,2.686,6,6C38,35.314,35.314,38,32,38z\r\n\t\t\t\t M55.517,25.462c-0.54-1.957-1.326-3.811-2.31-5.536c1.121-1.507,4.981-7.143,2.199-9.926l-1.428-1.507\r\n\t\t\t\tc-2.379-2.378-8.455,1.336-9.93,2.298c-1.745-0.989-3.62-1.774-5.6-2.31c-0.317-1.887-1.704-8.487-5.619-8.487h-1.567\r\n\t\t\t\tc-3.361,0-5.29,6.824-5.721,8.534c-1.952,0.545-3.801,1.334-5.522,2.32C18.661,9.839,12.841,5.816,10,8.656L8.493,9.924\r\n\t\t\t\tc-2.476,2.475,1.638,9.004,2.39,10.147c-0.952,1.698-1.715,3.517-2.241,5.435c-1.641,0.262-8.649,1.614-8.649,5.646v1.566\r\n\t\t\t\tc0,3.493,7.349,5.433,8.69,5.759c0.533,1.904,1.3,3.708,2.255,5.393c-0.791,1.24-4.745,7.74-2.292,10.194l1.427,1.188\r\n\t\t\t\tc3.229,3.229,9.974-2.075,9.974-2.075l-0.314-0.334c1.789,1.058,3.726,1.895,5.773,2.47c0.335,1.378,2.275,8.676,5.755,8.676\r\n\t\t\t\th1.567c4.566,0,5.698-8.52,5.698-8.52l-0.419-0.013c2.07-0.529,4.032-1.325,5.851-2.345c1.426,0.95,7.401,4.689,9.786,2.304\r\n\t\t\t\tl1.587-1.588c3.183-3.183-1.997-9.696-2.142-9.877c0.985-1.722,1.774-3.571,2.317-5.525c1.78-0.452,8.483-2.374,8.483-5.707\r\n\t\t\t\tv-1.566C63.989,26.73,56.015,25.533,55.517,25.462z M32,50c-9.941,0-18-8.059-18-18s8.059-18,18-18s18,8.059,18,18\r\n\t\t\t\tS41.941,50,32,50z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,20c-6.627,0-12,5.372-12,12c0,6.627,5.372,12,12,12s12-5.373,12-12\r\n\t\t\t\tC44,25.373,38.627,20,32,20z M32,38c-3.314,0-6-2.686-6-6c0-3.314,2.686-6,6-6s6,2.686,6,6C38,35.314,35.314,38,32,38z\r\n\t\t\t\t M55.517,25.462c-0.54-1.957-1.326-3.811-2.31-5.536c1.121-1.507,4.981-7.143,2.199-9.926l-1.428-1.507\r\n\t\t\t\tc-2.379-2.378-8.455,1.336-9.93,2.298c-1.745-0.989-3.62-1.774-5.6-2.31c-0.317-1.887-1.704-8.487-5.619-8.487h-1.567\r\n\t\t\t\tc-3.361,0-5.29,6.824-5.721,8.534c-1.952,0.545-3.801,1.334-5.522,2.32C18.661,9.839,12.841,5.816,10,8.656L8.493,9.924\r\n\t\t\t\tc-2.476,2.475,1.638,9.004,2.39,10.147c-0.952,1.698-1.715,3.517-2.241,5.435c-1.641,0.262-8.649,1.614-8.649,5.646v1.566\r\n\t\t\t\tc0,3.493,7.349,5.433,8.69,5.759c0.533,1.904,1.3,3.708,2.255,5.393c-0.791,1.24-4.745,7.74-2.292,10.194l1.427,1.188\r\n\t\t\t\tc3.229,3.229,9.974-2.075,9.974-2.075l-0.314-0.334c1.789,1.058,3.726,1.895,5.773,2.47c0.335,1.378,2.275,8.676,5.755,8.676\r\n\t\t\t\th1.567c4.566,0,5.698-8.52,5.698-8.52l-0.419-0.013c2.07-0.529,4.032-1.325,5.851-2.345c1.426,0.95,7.401,4.689,9.786,2.304\r\n\t\t\t\tl1.587-1.588c3.183-3.183-1.997-9.696-2.142-9.877c0.985-1.722,1.774-3.571,2.317-5.525c1.78-0.452,8.483-2.374,8.483-5.707\r\n\t\t\t\tv-1.566C63.989,26.73,56.015,25.533,55.517,25.462z M32,50c-9.941,0-18-8.059-18-18s8.059-18,18-18s18,8.059,18,18\r\n\t\t\t\tS41.941,50,32,50z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"WARNING_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"WARNING","display":"inline"},"children":[{"name":"g","attribs":{"id":"WARNING","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M63.563,53.463l0.017-0.011l-29-47l-0.017,0.01C34.039,5.59,33.092,5,32,5\r\n\t\t\t\tc-1.052,0-1.973,0.543-2.509,1.362l-0.017-0.01l-29,47l0.017,0.01C0.183,53.834,0,54.395,0,55c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.009,0,0.018-0.003,0.027-0.003v0.03h58v-0.03C62.671,57.982,64,56.648,64,55C64,54.435,63.835,53.914,63.563,53.463z M32,52\r\n\t\t\t\tc-2.209,0-4-1.791-4-4c0-2.209,1.791-4,4-4s4,1.791,4,4C36,50.209,34.209,52,32,52z M36,37c0,2.209-1.791,4-4,4s-4-1.791-4-4V22\r\n\t\t\t\tc0-2.209,1.791-4,4-4s4,1.791,4,4V37z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M63.563,53.463l0.017-0.011l-29-47l-0.017,0.01C34.039,5.59,33.092,5,32,5\r\n\t\t\t\tc-1.052,0-1.973,0.543-2.509,1.362l-0.017-0.01l-29,47l0.017,0.01C0.183,53.834,0,54.395,0,55c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.009,0,0.018-0.003,0.027-0.003v0.03h58v-0.03C62.671,57.982,64,56.648,64,55C64,54.435,63.835,53.914,63.563,53.463z M32,52\r\n\t\t\t\tc-2.209,0-4-1.791-4-4c0-2.209,1.791-4,4-4s4,1.791,4,4C36,50.209,34.209,52,32,52z M36,37c0,2.209-1.791,4-4,4s-4-1.791-4-4V22\r\n\t\t\t\tc0-2.209,1.791-4,4-4s4,1.791,4,4V37z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"REPEAT_2_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"REPEAT_2","display":"inline"},"children":[{"name":"g","attribs":{"id":"REPEAT_2","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,29c-1.657,0-3,1.343-3,3c0,14.359-11.641,26-26,26\r\n\t\t\t\tc-8.768,0-16.506-4.347-21.207-11H16c1.657,0,3-1.343,3-3s-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.657,0,3-1.343,3-3v-5.454C11.789,58.679,21.254,64,32,64c17.673,0,32-14.327,32-32C64,30.343,62.657,29,61,29z M61,5\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v5.412C52.204,5.299,42.733,0,32,0C14.327,0,0,14.327,0,32c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3\r\n\t\t\t\tC6,17.641,17.641,6,32,6c8.76,0,16.469,4.355,21.167,11H48c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h13c1.657,0,3-1.343,3-3V8\r\n\t\t\t\tC64,6.343,62.657,5,61,5z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,29c-1.657,0-3,1.343-3,3c0,14.359-11.641,26-26,26\r\n\t\t\t\tc-8.768,0-16.506-4.347-21.207-11H16c1.657,0,3-1.343,3-3s-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.657,0,3-1.343,3-3v-5.454C11.789,58.679,21.254,64,32,64c17.673,0,32-14.327,32-32C64,30.343,62.657,29,61,29z M61,5\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v5.412C52.204,5.299,42.733,0,32,0C14.327,0,0,14.327,0,32c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3\r\n\t\t\t\tC6,17.641,17.641,6,32,6c8.76,0,16.469,4.355,21.167,11H48c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h13c1.657,0,3-1.343,3-3V8\r\n\t\t\t\tC64,6.343,62.657,5,61,5z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"REPEAT_1_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"REPEAT_1","display":"inline"},"children":[{"name":"g","attribs":{"id":"REPEAT_1","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M45,20c0,1.657,1.343,3,3,3h13c1.657,0,3-1.343,3-3V8c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v5.39C52.199,5.288,42.725,0,32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3c0,14.359-11.641,26-26,26C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6c8.769,0,16.512,4.348,21.218,11H48C46.343,17,45,18.343,45,20z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M45,20c0,1.657,1.343,3,3,3h13c1.657,0,3-1.343,3-3V8c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v5.39C52.199,5.288,42.725,0,32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3c0,14.359-11.641,26-26,26C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6c8.769,0,16.512,4.348,21.218,11H48C46.343,17,45,18.343,45,20z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"ARROW_2_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ARROW_2","display":"inline"},"children":[{"name":"g","attribs":{"id":"ARROW_2","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M63.137,17.884l-7-7c-0.543-0.543-1.293-0.879-2.121-0.879\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L53.768,17H45c-0.828,0-1.578,0.336-2.121,0.879L11.757,49H9v0H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h10c0.828,0,1.578-0.336,2.121-0.879L46.243,23H52v0.005h1.773l-1.879,1.879\r\n\t\t\t\tc-0.543,0.543-0.879,1.293-0.879,2.121c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879l7-7\r\n\t\t\t\tc0.543-0.543,0.879-1.293,0.879-2.121C64.016,19.177,63.68,18.427,63.137,17.884z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M63.137,17.884l-7-7c-0.543-0.543-1.293-0.879-2.121-0.879\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L53.768,17H45c-0.828,0-1.578,0.336-2.121,0.879L11.757,49H9v0H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h10c0.828,0,1.578-0.336,2.121-0.879L46.243,23H52v0.005h1.773l-1.879,1.879\r\n\t\t\t\tc-0.543,0.543-0.879,1.293-0.879,2.121c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879l7-7\r\n\t\t\t\tc0.543-0.543,0.879-1.293,0.879-2.121C64.016,19.177,63.68,18.427,63.137,17.884z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"ARROW_1_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ARROW_1","display":"inline"},"children":[{"name":"g","attribs":{"id":"ARROW_1","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M63.122,42.878l-6.998-7.001c-0.543-0.543-1.293-0.879-2.121-0.879\r\n\t\t\t\tc-1.657,0-2.999,1.343-2.999,3c0,0.829,0.336,1.579,0.879,2.122l1.878,1.879h-1.773v0.005h-2.999v0h-2.757L15.118,10.879\r\n\t\t\t\tC14.575,10.336,13.825,10,12.997,10H2.999C1.343,10,0,11.343,0,13.001c0,1.657,1.343,3,2.999,3h8.755l31.114,31.126\r\n\t\t\t\tc0.543,0.543,1.293,0.879,2.121,0.879h8.766l-1.873,1.874c-0.543,0.543-0.879,1.293-0.879,2.122c0,1.657,1.343,3,2.999,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l6.998-7.001C63.664,46.578,64,45.828,64,45C64,44.171,63.664,43.421,63.122,42.878z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M63.122,42.878l-6.998-7.001c-0.543-0.543-1.293-0.879-2.121-0.879\r\n\t\t\t\tc-1.657,0-2.999,1.343-2.999,3c0,0.829,0.336,1.579,0.879,2.122l1.878,1.879h-1.773v0.005h-2.999v0h-2.757L15.118,10.879\r\n\t\t\t\tC14.575,10.336,13.825,10,12.997,10H2.999C1.343,10,0,11.343,0,13.001c0,1.657,1.343,3,2.999,3h8.755l31.114,31.126\r\n\t\t\t\tc0.543,0.543,1.293,0.879,2.121,0.879h8.766l-1.873,1.874c-0.543,0.543-0.879,1.293-0.879,2.122c0,1.657,1.343,3,2.999,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l6.998-7.001C63.664,46.578,64,45.828,64,45C64,44.171,63.664,43.421,63.122,42.878z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SHUFFLE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SHUFFLE","display":"inline"},"children":[{"name":"g","attribs":{"id":"SHUFFLE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M3,19h8.757l10.879,10.879l4.243-4.243L15.121,13.879\r\n\t\t\t\tC14.578,13.336,13.828,13,13,13H3c-1.657,0-3,1.343-3,3S1.343,19,3,19z M52,19v0.005h1.773l-1.879,1.879\r\n\t\t\t\tc-0.543,0.543-0.879,1.293-0.879,2.121c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879l7-7\r\n\t\t\t\tc0.543-0.543,0.879-1.293,0.879-2.121c0-0.828-0.336-1.578-0.879-2.121l-7-7c-0.543-0.543-1.293-0.879-2.121-0.879\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L53.768,13H45c-0.828,0-1.578,0.336-2.121,0.879L11.757,45H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h10c0.828,0,1.578-0.336,2.121-0.879L46.243,19H52z M56.137,38.874\r\n\t\t\t\tc-0.543-0.543-1.293-0.879-2.121-0.879c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l1.879,1.879H52V45h-5.757\r\n\t\t\t\tL35.364,34.121l-4.243,4.242l11.757,11.758C43.422,50.664,44.172,51,45,51h8.768l-1.873,1.874\r\n\t\t\t\tc-0.543,0.543-0.879,1.293-0.879,2.121c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879l7-7\r\n\t\t\t\tc0.543-0.543,0.879-1.293,0.879-2.121s-0.336-1.578-0.879-2.121L56.137,38.874z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M3,19h8.757l10.879,10.879l4.243-4.243L15.121,13.879\r\n\t\t\t\tC14.578,13.336,13.828,13,13,13H3c-1.657,0-3,1.343-3,3S1.343,19,3,19z M52,19v0.005h1.773l-1.879,1.879\r\n\t\t\t\tc-0.543,0.543-0.879,1.293-0.879,2.121c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879l7-7\r\n\t\t\t\tc0.543-0.543,0.879-1.293,0.879-2.121c0-0.828-0.336-1.578-0.879-2.121l-7-7c-0.543-0.543-1.293-0.879-2.121-0.879\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L53.768,13H45c-0.828,0-1.578,0.336-2.121,0.879L11.757,45H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h10c0.828,0,1.578-0.336,2.121-0.879L46.243,19H52z M56.137,38.874\r\n\t\t\t\tc-0.543-0.543-1.293-0.879-2.121-0.879c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l1.879,1.879H52V45h-5.757\r\n\t\t\t\tL35.364,34.121l-4.243,4.242l11.757,11.758C43.422,50.664,44.172,51,45,51h8.768l-1.873,1.874\r\n\t\t\t\tc-0.543,0.543-0.879,1.293-0.879,2.121c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879l7-7\r\n\t\t\t\tc0.543-0.543,0.879-1.293,0.879-2.121s-0.336-1.578-0.879-2.121L56.137,38.874z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"RESIZE_2_3_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"RESIZE_2_2_","display":"inline"},"children":[{"name":"g","attribs":{"id":"RESIZE_2_2_","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26,35H14c-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757L3.843,55.914l0.003,0.003\r\n\t\t\t\tC3.325,56.457,3,57.19,3,58c0,1.657,1.343,3,3,3c0.81,0,1.543-0.325,2.082-0.847l0.003,0.003L23,45.243V50c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3V38C29,36.343,27.657,35,26,35z M38,29h12c1.657,0,3-1.343,3-3s-1.343-3-3-3h-4.757L60.157,8.086l-0.003-0.003\r\n\t\t\t\tC60.676,7.543,61,6.81,61,6c0-1.657-1.343-3-3-3c-0.81,0-1.543,0.325-2.083,0.847l-0.003-0.003L41,18.758V14c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v12C35,27.657,36.343,29,38,29z M60.157,55.914L45.243,41H50c1.657,0,3-1.343,3-3s-1.343-3-3-3H38\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3s3-1.343,3-3v-4.757l14.914,14.914l0.003-0.003C56.457,60.676,57.19,61,58,61\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.81-0.325-1.543-0.847-2.083L60.157,55.914z M26,11c-1.657,0-3,1.343-3,3v4.757L8.086,3.843L8.083,3.847\r\n\t\t\t\tC7.543,3.325,6.81,3,6,3C4.343,3,3,4.343,3,6c0,0.81,0.325,1.543,0.847,2.082L3.843,8.086L18.757,23H14c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h12c1.657,0,3-1.343,3-3V14C29,12.343,27.657,11,26,11z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26,35H14c-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757L3.843,55.914l0.003,0.003\r\n\t\t\t\tC3.325,56.457,3,57.19,3,58c0,1.657,1.343,3,3,3c0.81,0,1.543-0.325,2.082-0.847l0.003,0.003L23,45.243V50c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3V38C29,36.343,27.657,35,26,35z M38,29h12c1.657,0,3-1.343,3-3s-1.343-3-3-3h-4.757L60.157,8.086l-0.003-0.003\r\n\t\t\t\tC60.676,7.543,61,6.81,61,6c0-1.657-1.343-3-3-3c-0.81,0-1.543,0.325-2.083,0.847l-0.003-0.003L41,18.758V14c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v12C35,27.657,36.343,29,38,29z M60.157,55.914L45.243,41H50c1.657,0,3-1.343,3-3s-1.343-3-3-3H38\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3s3-1.343,3-3v-4.757l14.914,14.914l0.003-0.003C56.457,60.676,57.19,61,58,61\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.81-0.325-1.543-0.847-2.083L60.157,55.914z M26,11c-1.657,0-3,1.343-3,3v4.757L8.086,3.843L8.083,3.847\r\n\t\t\t\tC7.543,3.325,6.81,3,6,3C4.343,3,3,4.343,3,6c0,0.81,0.325,1.543,0.847,2.082L3.843,8.086L18.757,23H14c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h12c1.657,0,3-1.343,3-3V14C29,12.343,27.657,11,26,11z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"RESIZE_1_3_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"RESIZE_1_2_","display":"inline"},"children":[{"name":"g","attribs":{"id":"RESIZE_1_2_","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M28.157,23.914L13.243,9H18c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H6\r\n\t\t\t\tC4.343,3,3,4.343,3,6v12c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-4.757l14.914,14.914l0.003-0.003\r\n\t\t\t\tC24.457,28.676,25.19,29,26,29c1.657,0,3-1.343,3-3c0-0.81-0.324-1.543-0.847-2.083L28.157,23.914z M26,35\r\n\t\t\t\tc-0.81,0-1.543,0.325-2.082,0.847l-0.003-0.003L9,50.757V46c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-4.757l14.914-14.914l-0.003-0.003C28.676,39.543,29,38.81,29,38\r\n\t\t\t\tC29,36.343,27.657,35,26,35z M58,43c-1.657,0-3,1.343-3,3v4.757L40.086,35.843l-0.003,0.003C39.543,35.325,38.81,35,38,35\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.81,0.324,1.543,0.847,2.083l-0.003,0.003L50.757,55H46c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12\r\n\t\t\t\tc1.657,0,3-1.343,3-3V46C61,44.343,59.657,43,58,43z M58,3H46c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h4.757L35.843,23.914\r\n\t\t\t\tl0.003,0.003C35.325,24.457,35,25.19,35,26c0,1.657,1.343,3,3,3c0.81,0,1.543-0.325,2.083-0.847l0.003,0.003L55,13.243V18\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3V6C61,4.343,59.657,3,58,3z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M28.157,23.914L13.243,9H18c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H6\r\n\t\t\t\tC4.343,3,3,4.343,3,6v12c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-4.757l14.914,14.914l0.003-0.003\r\n\t\t\t\tC24.457,28.676,25.19,29,26,29c1.657,0,3-1.343,3-3c0-0.81-0.324-1.543-0.847-2.083L28.157,23.914z M26,35\r\n\t\t\t\tc-0.81,0-1.543,0.325-2.082,0.847l-0.003-0.003L9,50.757V46c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-4.757l14.914-14.914l-0.003-0.003C28.676,39.543,29,38.81,29,38\r\n\t\t\t\tC29,36.343,27.657,35,26,35z M58,43c-1.657,0-3,1.343-3,3v4.757L40.086,35.843l-0.003,0.003C39.543,35.325,38.81,35,38,35\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.81,0.324,1.543,0.847,2.083l-0.003,0.003L50.757,55H46c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12\r\n\t\t\t\tc1.657,0,3-1.343,3-3V46C61,44.343,59.657,43,58,43z M58,3H46c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h4.757L35.843,23.914\r\n\t\t\t\tl0.003,0.003C35.325,24.457,35,25.19,35,26c0,1.657,1.343,3,3,3c0.81,0,1.543-0.325,2.083-0.847l0.003,0.003L55,13.243V18\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3V6C61,4.343,59.657,3,58,3z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"ARROWS_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ARROWS","display":"inline"},"children":[{"name":"g","attribs":{"id":"ARROWS","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M64,32c0-0.885-0.383-1.681-0.993-2.23l0,0l-10-9l0,0\r\n\t\t\t\tC52.475,20.292,51.772,20,51,20c-1.657,0-3,1.343-3,3c0,0.885,0.384,1.681,0.993,2.23l0,0L53.182,29H35V10.818l3.77,4.189l0,0\r\n\t\t\t\tC39.319,15.616,40.115,16,41,16c1.657,0,3-1.343,3-3c0-0.772-0.292-1.475-0.77-2.007l0,0l-9-10l0,0C33.681,0.384,32.885,0,32,0\r\n\t\t\t\tc-0.885,0-1.681,0.384-2.23,0.993l0,0l-9,10l0,0C20.292,11.525,20,12.228,20,13c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.885,0,1.68-0.384,2.23-0.993l0,0L29,10.818V29H10.818l4.189-3.77l0,0C15.617,24.681,16,23.885,16,23c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.772,0-1.475,0.292-2.007,0.77l0,0l-10,9l0,0C0.384,30.319,0,31.115,0,32c0,0.885,0.384,1.68,0.993,2.23l0,0l10,9l0,0\r\n\t\t\t\tC11.525,43.709,12.228,44,13,44c1.657,0,3-1.343,3-3c0-0.885-0.384-1.68-0.993-2.23l0,0L10.818,35H29v18.182l-3.77-4.189l0,0\r\n\t\t\t\tC24.681,48.384,23.885,48,23,48c-1.657,0-3,1.343-3,3c0,0.772,0.292,1.475,0.77,2.007l0,0l9,10l0,0\r\n\t\t\t\tC30.319,63.617,31.115,64,32,64c0.885,0,1.681-0.383,2.23-0.993l0,0l9-10l0,0C43.708,52.475,44,51.772,44,51c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.885,0-1.681,0.384-2.23,0.993l0,0L35,53.182V35h18.182l-4.189,3.77l0,0C48.384,39.32,48,40.115,48,41c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.772,0,1.475-0.292,2.007-0.77l0,0l10-9l0,0C63.617,33.681,64,32.885,64,32z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M64,32c0-0.885-0.383-1.681-0.993-2.23l0,0l-10-9l0,0\r\n\t\t\t\tC52.475,20.292,51.772,20,51,20c-1.657,0-3,1.343-3,3c0,0.885,0.384,1.681,0.993,2.23l0,0L53.182,29H35V10.818l3.77,4.189l0,0\r\n\t\t\t\tC39.319,15.616,40.115,16,41,16c1.657,0,3-1.343,3-3c0-0.772-0.292-1.475-0.77-2.007l0,0l-9-10l0,0C33.681,0.384,32.885,0,32,0\r\n\t\t\t\tc-0.885,0-1.681,0.384-2.23,0.993l0,0l-9,10l0,0C20.292,11.525,20,12.228,20,13c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.885,0,1.68-0.384,2.23-0.993l0,0L29,10.818V29H10.818l4.189-3.77l0,0C15.617,24.681,16,23.885,16,23c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.772,0-1.475,0.292-2.007,0.77l0,0l-10,9l0,0C0.384,30.319,0,31.115,0,32c0,0.885,0.384,1.68,0.993,2.23l0,0l10,9l0,0\r\n\t\t\t\tC11.525,43.709,12.228,44,13,44c1.657,0,3-1.343,3-3c0-0.885-0.384-1.68-0.993-2.23l0,0L10.818,35H29v18.182l-3.77-4.189l0,0\r\n\t\t\t\tC24.681,48.384,23.885,48,23,48c-1.657,0-3,1.343-3,3c0,0.772,0.292,1.475,0.77,2.007l0,0l9,10l0,0\r\n\t\t\t\tC30.319,63.617,31.115,64,32,64c0.885,0,1.681-0.383,2.23-0.993l0,0l9-10l0,0C43.708,52.475,44,51.772,44,51c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.885,0-1.681,0.384-2.23,0.993l0,0L35,53.182V35h18.182l-4.189,3.77l0,0C48.384,39.32,48,40.115,48,41c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.772,0,1.475-0.292,2.007-0.77l0,0l10-9l0,0C63.617,33.681,64,32.885,64,32z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"ARROWS_HORIZONTAL_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ARROWS_HORIZONTAL","display":"inline"},"children":[{"name":"g","attribs":{"id":"ARROWS_HORIZONTAL","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M64,32c0-0.885-0.384-1.681-0.993-2.23l0,0l-10-9l0,0\r\n\t\t\t\tC52.475,20.292,51.772,20,51,20c-1.657,0-3,1.343-3,3c0,0.885,0.383,1.681,0.993,2.23l0,0L53.182,29H10.818l4.189-3.77l0,0\r\n\t\t\t\tC15.617,24.681,16,23.885,16,23c0-1.657-1.343-3-3-3c-0.772,0-1.475,0.292-2.007,0.77l0,0l-10,9l0,0C0.384,30.319,0,31.115,0,32\r\n\t\t\t\tc0,0.885,0.383,1.68,0.993,2.23l0,0l10,9l0,0C11.525,43.709,12.228,44,13,44c1.657,0,3-1.343,3-3c0-0.885-0.383-1.68-0.993-2.23\r\n\t\t\t\tl0,0L10.818,35h42.364l-4.189,3.77l0,0C48.384,39.32,48,40.115,48,41c0,1.657,1.343,3,3,3c0.772,0,1.475-0.292,2.007-0.77l0,0\r\n\t\t\t\tl10-9l0,0C63.617,33.681,64,32.885,64,32z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M64,32c0-0.885-0.384-1.681-0.993-2.23l0,0l-10-9l0,0\r\n\t\t\t\tC52.475,20.292,51.772,20,51,20c-1.657,0-3,1.343-3,3c0,0.885,0.383,1.681,0.993,2.23l0,0L53.182,29H10.818l4.189-3.77l0,0\r\n\t\t\t\tC15.617,24.681,16,23.885,16,23c0-1.657-1.343-3-3-3c-0.772,0-1.475,0.292-2.007,0.77l0,0l-10,9l0,0C0.384,30.319,0,31.115,0,32\r\n\t\t\t\tc0,0.885,0.383,1.68,0.993,2.23l0,0l10,9l0,0C11.525,43.709,12.228,44,13,44c1.657,0,3-1.343,3-3c0-0.885-0.383-1.68-0.993-2.23\r\n\t\t\t\tl0,0L10.818,35h42.364l-4.189,3.77l0,0C48.384,39.32,48,40.115,48,41c0,1.657,1.343,3,3,3c0.772,0,1.475-0.292,2.007-0.77l0,0\r\n\t\t\t\tl10-9l0,0C63.617,33.681,64,32.885,64,32z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"ARROWS_VERTICAL_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ARROWS_VERTICAL","display":"inline"},"children":[{"name":"g","attribs":{"id":"ARROWS_VERTICAL","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M41,48c-0.885,0-1.681,0.384-2.23,0.993l0,0L35,53.182V10.818l3.77,4.189l0,0\r\n\t\t\t\tC39.319,15.616,40.115,16,41,16c1.657,0,3-1.343,3-3c0-0.772-0.292-1.475-0.77-2.007l0,0l-9-10l0,0C33.681,0.384,32.885,0,32,0\r\n\t\t\t\tc-0.885,0-1.681,0.384-2.23,0.993l0,0l-9,10l0,0C20.292,11.525,20,12.228,20,13c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.885,0,1.681-0.384,2.23-0.993l0,0L29,10.818v42.364l-3.77-4.189l0,0C24.681,48.384,23.885,48,23,48c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.772,0.292,1.475,0.77,2.007l0,0l9,10l0,0C30.319,63.617,31.115,64,32,64c0.885,0,1.681-0.383,2.23-0.993l0,0l9-10l0,0\r\n\t\t\t\tC43.708,52.475,44,51.772,44,51C44,49.343,42.657,48,41,48z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M41,48c-0.885,0-1.681,0.384-2.23,0.993l0,0L35,53.182V10.818l3.77,4.189l0,0\r\n\t\t\t\tC39.319,15.616,40.115,16,41,16c1.657,0,3-1.343,3-3c0-0.772-0.292-1.475-0.77-2.007l0,0l-9-10l0,0C33.681,0.384,32.885,0,32,0\r\n\t\t\t\tc-0.885,0-1.681,0.384-2.23,0.993l0,0l-9,10l0,0C20.292,11.525,20,12.228,20,13c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.885,0,1.681-0.384,2.23-0.993l0,0L29,10.818v42.364l-3.77-4.189l0,0C24.681,48.384,23.885,48,23,48c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.772,0.292,1.475,0.77,2.007l0,0l9,10l0,0C30.319,63.617,31.115,64,32,64c0.885,0,1.681-0.383,2.23-0.993l0,0l9-10l0,0\r\n\t\t\t\tC43.708,52.475,44,51.772,44,51C44,49.343,42.657,48,41,48z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"ARROWS__x2F__VERTICAL_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ARROWS__x2F__VERTICAL","display":"inline"},"children":[{"name":"g","attribs":{"id":"ARROWS__x2F__VERTICAL","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M57,51c0-1.657-1.343-3-3-3c-0.885,0-1.673,0.391-2.222,1l-0.008-0.007\r\n\t\t\t\tL48,53.182V29c0,0,0,0,0,0V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v7.818l0,0V26h0v13h0v14.182l-3.77-4.189L38.222,49\r\n\t\t\t\tc-0.549-0.61-1.337-1-2.222-1c-1.657,0-3,1.343-3,3c0,0.772,0.3,1.468,0.778,2l-0.008,0.007l9,10L42.778,63\r\n\t\t\t\tc0.549,0.61,1.337,1,2.222,1c0.885,0,1.672-0.391,2.222-1l0.008,0.007l9-10L56.222,53C56.701,52.468,57,51.772,57,51z\r\n\t\t\t\t M30.23,10.993l-9-10l-0.008,0.007C20.673,0.391,19.885,0,19,0c-0.885,0-1.673,0.391-2.222,1.001L16.77,0.993l-9,10l0.008,0.007\r\n\t\t\t\tC7.3,11.532,7,12.228,7,13c0,1.657,1.343,3,3,3c0.885,0,1.673-0.391,2.222-1l0.008,0.007L16,10.818V25h0v13h0v15.182h0V61\r\n\t\t\t\tc0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V29c0,0,0,0,0,0V10.818l3.77,4.189L25.778,15c0.549,0.61,1.337,1,2.222,1\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.772-0.299-1.468-0.778-2L30.23,10.993z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M57,51c0-1.657-1.343-3-3-3c-0.885,0-1.673,0.391-2.222,1l-0.008-0.007\r\n\t\t\t\tL48,53.182V29c0,0,0,0,0,0V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v7.818l0,0V26h0v13h0v14.182l-3.77-4.189L38.222,49\r\n\t\t\t\tc-0.549-0.61-1.337-1-2.222-1c-1.657,0-3,1.343-3,3c0,0.772,0.3,1.468,0.778,2l-0.008,0.007l9,10L42.778,63\r\n\t\t\t\tc0.549,0.61,1.337,1,2.222,1c0.885,0,1.672-0.391,2.222-1l0.008,0.007l9-10L56.222,53C56.701,52.468,57,51.772,57,51z\r\n\t\t\t\t M30.23,10.993l-9-10l-0.008,0.007C20.673,0.391,19.885,0,19,0c-0.885,0-1.673,0.391-2.222,1.001L16.77,0.993l-9,10l0.008,0.007\r\n\t\t\t\tC7.3,11.532,7,12.228,7,13c0,1.657,1.343,3,3,3c0.885,0,1.673-0.391,2.222-1l0.008,0.007L16,10.818V25h0v13h0v15.182h0V61\r\n\t\t\t\tc0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V29c0,0,0,0,0,0V10.818l3.77,4.189L25.778,15c0.549,0.61,1.337,1,2.222,1\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.772-0.299-1.468-0.778-2L30.23,10.993z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"ARROWS__x2F__HORIZONTAL_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ARROWS__x2F__HORIZONTAL","display":"inline"},"children":[{"name":"g","attribs":{"id":"ARROWS__x2F__HORIZONTAL","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M3,22h32c0,0,0,0,0,0h18.182l-4.189,3.77L49,25.779\r\n\t\t\t\tc-0.61,0.549-1,1.336-1,2.222c0,1.657,1.343,3,3,3c0.772,0,1.468-0.299,2-0.778l0.007,0.008l10-9L63,21.222\r\n\t\t\t\tc0.61-0.549,1-1.337,1-2.222c0-0.885-0.391-1.673-1-2.222l0.007-0.008l-10-9L53,7.778C52.468,7.3,51.772,7,51,7\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.885,0.391,1.673,1,2.222l-0.007,0.008L53.182,16H39v0H26v0H10.818l0,0H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC0,20.657,1.343,22,3,22z M61,42h-7.818l0,0H38v0H25v0H10.818l4.189-3.77L15,38.222c0.61-0.549,1-1.336,1-2.222\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.772,0-1.468,0.3-2,0.778l-0.007-0.008l-10,9L1,42.778C0.391,43.328,0,44.115,0,45\r\n\t\t\t\tc0,0.885,0.391,1.672,1,2.222L0.993,47.23l10,9L11,56.222C11.532,56.701,12.229,57,13,57c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.885-0.391-1.673-1-2.222l0.007-0.008L10.818,48H35c0,0,0,0,0,0h26c1.657,0,3-1.343,3-3C64,43.343,62.657,42,61,42z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M3,22h32c0,0,0,0,0,0h18.182l-4.189,3.77L49,25.779\r\n\t\t\t\tc-0.61,0.549-1,1.336-1,2.222c0,1.657,1.343,3,3,3c0.772,0,1.468-0.299,2-0.778l0.007,0.008l10-9L63,21.222\r\n\t\t\t\tc0.61-0.549,1-1.337,1-2.222c0-0.885-0.391-1.673-1-2.222l0.007-0.008l-10-9L53,7.778C52.468,7.3,51.772,7,51,7\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.885,0.391,1.673,1,2.222l-0.007,0.008L53.182,16H39v0H26v0H10.818l0,0H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC0,20.657,1.343,22,3,22z M61,42h-7.818l0,0H38v0H25v0H10.818l4.189-3.77L15,38.222c0.61-0.549,1-1.336,1-2.222\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.772,0-1.468,0.3-2,0.778l-0.007-0.008l-10,9L1,42.778C0.391,43.328,0,44.115,0,45\r\n\t\t\t\tc0,0.885,0.391,1.672,1,2.222L0.993,47.23l10,9L11,56.222C11.532,56.701,12.229,57,13,57c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.885-0.391-1.673-1-2.222l0.007-0.008L10.818,48H35c0,0,0,0,0,0h26c1.657,0,3-1.343,3-3C64,43.343,62.657,42,61,42z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SHARE_2_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SHARE_2","display":"inline"},"children":[{"name":"g","attribs":{"id":"SHARE_2","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M23,16c0.885,0,1.673-0.39,2.222-1l0.008,0.007L29,10.818V29\r\n\t\t\t\tc0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V10.818l3.77,4.189L38.778,15c0.549,0.61,1.337,1,2.222,1c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.772-0.299-1.468-0.778-2l0.008-0.007l-9-10L34.222,1C33.673,0.391,32.885,0,32,0c-0.885,0-1.673,0.39-2.222,1L29.77,0.993\r\n\t\t\t\tl-9,10L20.778,11C20.3,11.532,20,12.228,20,13C20,14.657,21.343,16,23,16z M51,20H38v6h10v32H16V26h9v-6H13c-1.657,0-3,1.343-3,3\r\n\t\t\t\tv38c0,1.657,1.343,3,3,3h38c1.657,0,3-1.343,3-3V23C54,21.343,52.657,20,51,20z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M23,16c0.885,0,1.673-0.39,2.222-1l0.008,0.007L29,10.818V29\r\n\t\t\t\tc0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V10.818l3.77,4.189L38.778,15c0.549,0.61,1.337,1,2.222,1c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.772-0.299-1.468-0.778-2l0.008-0.007l-9-10L34.222,1C33.673,0.391,32.885,0,32,0c-0.885,0-1.673,0.39-2.222,1L29.77,0.993\r\n\t\t\t\tl-9,10L20.778,11C20.3,11.532,20,12.228,20,13C20,14.657,21.343,16,23,16z M51,20H38v6h10v32H16V26h9v-6H13c-1.657,0-3,1.343-3,3\r\n\t\t\t\tv38c0,1.657,1.343,3,3,3h38c1.657,0,3-1.343,3-3V23C54,21.343,52.657,20,51,20z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SHARE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SHARE","display":"inline"},"children":[{"name":"g","attribs":{"id":"SHARE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M52,26.168V52H12V12h25.832C37.317,11.114,37,10.098,37,9\r\n\t\t\t\tc0-1.099,0.317-2.114,0.832-3H9C7.343,6,6,7.343,6,9v46c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V26.168\r\n\t\t\t\tC57.114,26.683,56.099,27,55,27C53.902,27,52.886,26.683,52,26.168z M55,6H43c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h4.757\r\n\t\t\t\tL32.843,26.914l0.003,0.003C32.325,27.457,32,28.19,32,29c0,1.657,1.343,3,3,3c0.81,0,1.543-0.325,2.082-0.847l0.003,0.003\r\n\t\t\t\tL52,16.243V21c0,1.657,1.343,3,2.999,3h0.001C56.657,24,58,22.657,58,21V9C58,7.343,56.657,6,55,6z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M52,26.168V52H12V12h25.832C37.317,11.114,37,10.098,37,9\r\n\t\t\t\tc0-1.099,0.317-2.114,0.832-3H9C7.343,6,6,7.343,6,9v46c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V26.168\r\n\t\t\t\tC57.114,26.683,56.099,27,55,27C53.902,27,52.886,26.683,52,26.168z M55,6H43c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h4.757\r\n\t\t\t\tL32.843,26.914l0.003,0.003C32.325,27.457,32,28.19,32,29c0,1.657,1.343,3,3,3c0.81,0,1.543-0.325,2.082-0.847l0.003,0.003\r\n\t\t\t\tL52,16.243V21c0,1.657,1.343,3,2.999,3h0.001C56.657,24,58,22.657,58,21V9C58,7.343,56.657,6,55,6z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SCREEN_EXPAND_3_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SCREEN_EXPAND_3","display":"inline"},"children":[{"name":"g","attribs":{"id":"SCREEN_EXPAND_3","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M3,18c1.657,0,3-1.343,3-3V6h9v0c1.657,0,3-1.343,3-3s-1.343-3-3-3H3\r\n\t\t\t\tC1.343,0,0,1.343,0,3v12c0,0,0,0,0,0C0,16.657,1.343,18,3,18z M9,55h46V9H9V55z M15,15h34v34H15V15z M61,46c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0,0,0,0,0v9h-9c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3V49C64,47.343,62.657,46,61,46z M15,58H6v-9\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3l0,0v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3C18,59.343,16.657,58,15,58z M61,0H49\r\n\t\t\t\tc0,0,0,0,0,0c-1.657,0-3,1.343-3,3s1.343,3,3,3v0h9v9c0,0,0,0,0,0c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M3,18c1.657,0,3-1.343,3-3V6h9v0c1.657,0,3-1.343,3-3s-1.343-3-3-3H3\r\n\t\t\t\tC1.343,0,0,1.343,0,3v12c0,0,0,0,0,0C0,16.657,1.343,18,3,18z M9,55h46V9H9V55z M15,15h34v34H15V15z M61,46c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0,0,0,0,0v9h-9c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3V49C64,47.343,62.657,46,61,46z M15,58H6v-9\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3l0,0v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3C18,59.343,16.657,58,15,58z M61,0H49\r\n\t\t\t\tc0,0,0,0,0,0c-1.657,0-3,1.343-3,3s1.343,3,3,3v0h9v9c0,0,0,0,0,0c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SCREEN_EXPAND_2_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SCREEN_EXPAND_2","display":"inline"},"children":[{"name":"g","attribs":{"id":"SCREEN_EXPAND_2","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M15,6c1.657,0,3-1.343,3-3s-1.343-3-3-3c0,0,0,0,0,0H3C1.343,0,0,1.343,0,3v12\r\n\t\t\t\tc0,0,0,0,0,0c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V6L15,6L15,6z M64,49c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0,0,0,0,0v9h-9c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3L64,49L64,49z M55,9H9v46h46V9z M49,49H15V15\r\n\t\t\t\th34V49z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M15,6c1.657,0,3-1.343,3-3s-1.343-3-3-3c0,0,0,0,0,0H3C1.343,0,0,1.343,0,3v12\r\n\t\t\t\tc0,0,0,0,0,0c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V6L15,6L15,6z M64,49c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0,0,0,0,0v9h-9c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3L64,49L64,49z M55,9H9v46h46V9z M49,49H15V15\r\n\t\t\t\th34V49z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SCREEN_EXPAND_1_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SCREEN_EXPAND_1","display":"inline"},"children":[{"name":"g","attribs":{"id":"SCREEN_EXPAND_1","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M15,58H6v-9c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3\r\n\t\t\t\th12c1.657,0,3-1.343,3-3C18,59.343,16.657,58,15,58z M9,55h46V9H9V55z M15,15h34v34H15V15z M61,0H49c0,0,0,0,0,0\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3v0h9v9c0,1.657,1.343,3,3,3s3-1.343,3-3V3C64,1.343,62.657,0,61,0z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M15,58H6v-9c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3\r\n\t\t\t\th12c1.657,0,3-1.343,3-3C18,59.343,16.657,58,15,58z M9,55h46V9H9V55z M15,15h34v34H15V15z M61,0H49c0,0,0,0,0,0\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3v0h9v9c0,1.657,1.343,3,3,3s3-1.343,3-3V3C64,1.343,62.657,0,61,0z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"IMAGE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"IMAGE","display":"inline"},"children":[{"name":"g","attribs":{"id":"IMAGE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M40,15L40,15l9,0v9c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3c0,0,0,0,0,0V13h0\r\n\t\t\t\tV9H40c-1.657,0-3,1.343-3,3S38.343,15,40,15z M40,55h15v-4h0V40c0,0,0,0,0,0c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v9h-9v0\r\n\t\t\t\tc-1.657,0-3,1.343-3,3C37,53.657,38.343,55,40,55z M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z M58,58H6V6h52V58z M24,55c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3v0h-9v-9h0c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3c0,0,0,0,0,0v11h0v4H24C24,55,24,55,24,55z M9,24c0,1.657,1.343,3,3,3s3-1.343,3-3h0v-9h9v0c1.657,0,3-1.343,3-3\r\n\t\t\t\ts-1.343-3-3-3c0,0,0,0,0,0H9v4h0L9,24C9,24,9,24,9,24z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M40,15L40,15l9,0v9c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3c0,0,0,0,0,0V13h0\r\n\t\t\t\tV9H40c-1.657,0-3,1.343-3,3S38.343,15,40,15z M40,55h15v-4h0V40c0,0,0,0,0,0c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v9h-9v0\r\n\t\t\t\tc-1.657,0-3,1.343-3,3C37,53.657,38.343,55,40,55z M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z M58,58H6V6h52V58z M24,55c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3v0h-9v-9h0c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3c0,0,0,0,0,0v11h0v4H24C24,55,24,55,24,55z M9,24c0,1.657,1.343,3,3,3s3-1.343,3-3h0v-9h9v0c1.657,0,3-1.343,3-3\r\n\t\t\t\ts-1.343-3-3-3c0,0,0,0,0,0H9v4h0L9,24C9,24,9,24,9,24z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SQUARE__x2F__DELETE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SQUARE__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{"id":"SQUARE__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M18,43c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L32,36.243\r\n\t\t\t\tl8.879,8.879C41.422,45.664,42.172,46,43,46c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L36.243,32l8.879-8.878\r\n\t\t\t\tC45.664,22.579,46,21.829,46,21c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L32,27.758l-8.879-8.879\r\n\t\t\t\tC22.579,18.336,21.828,18,21,18c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L27.757,32l-8.879,8.879\r\n\t\t\t\tC18.336,41.422,18,42.172,18,43z M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z M58,58H6V6h52V58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M18,43c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L32,36.243\r\n\t\t\t\tl8.879,8.879C41.422,45.664,42.172,46,43,46c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L36.243,32l8.879-8.878\r\n\t\t\t\tC45.664,22.579,46,21.829,46,21c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L32,27.758l-8.879-8.879\r\n\t\t\t\tC22.579,18.336,21.828,18,21,18c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L27.757,32l-8.879,8.879\r\n\t\t\t\tC18.336,41.422,18,42.172,18,43z M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z M58,58H6V6h52V58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SQUARE__x2F__OK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SQUARE__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{"id":"SQUARE__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46,20.999v0.002C46,21.001,46,21.001,46,20.999C46,21,46,21,46,20.999z\r\n\t\t\t\t M46,43.001C46,43.001,46,43,46,43.001C46,43,46,43,46,42.999V43.001z M25.879,42.121C26.422,42.664,27.172,43,28,43\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l16-16C46.664,25.579,47,24.828,47,24c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879\r\n\t\t\t\tL28,35.757l-6.879-6.879C20.578,28.336,19.828,28,19,28c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L25.879,42.121z\r\n\t\t\t\t M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46,20.999v0.002C46,21.001,46,21.001,46,20.999C46,21,46,21,46,20.999z\r\n\t\t\t\t M46,43.001C46,43.001,46,43,46,43.001C46,43,46,43,46,42.999V43.001z M25.879,42.121C26.422,42.664,27.172,43,28,43\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l16-16C46.664,25.579,47,24.828,47,24c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879\r\n\t\t\t\tL28,35.757l-6.879-6.879C20.578,28.336,19.828,28,19,28c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L25.879,42.121z\r\n\t\t\t\t M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SQUARE__x2F__REMOVE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SQUARE__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{"id":"SQUARE__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z M58,58H6V6h52V58z M19,35h26c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H19c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC16,33.657,17.343,35,19,35z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z M58,58H6V6h52V58z M19,35h26c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H19c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC16,33.657,17.343,35,19,35z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SQUARE__x2F__ADD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SQUARE__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{"id":"SQUARE__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M19,35h10v10c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V35h10\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H35V19c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v10H19c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC16,33.657,17.343,35,19,35z M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z M58,58H6V6h52V58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M19,35h10v10c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V35h10\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H35V19c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v10H19c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC16,33.657,17.343,35,19,35z M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z M58,58H6V6h52V58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"GRID_2_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"GRID_2","display":"inline"},"children":[{"name":"g","attribs":{"id":"GRID_2","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26,35H6c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3\r\n\t\t\t\tV38C29,36.343,27.657,35,26,35z M26,3H6C4.343,3,3,4.343,3,6v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V6\r\n\t\t\t\tC29,4.343,27.657,3,26,3z M58,3H38c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V6\r\n\t\t\t\tC61,4.343,59.657,3,58,3z M58,35H38c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V38\r\n\t\t\t\tC61,36.343,59.657,35,58,35z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26,35H6c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3\r\n\t\t\t\tV38C29,36.343,27.657,35,26,35z M26,3H6C4.343,3,3,4.343,3,6v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V6\r\n\t\t\t\tC29,4.343,27.657,3,26,3z M58,3H38c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V6\r\n\t\t\t\tC61,4.343,59.657,3,58,3z M58,35H38c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V38\r\n\t\t\t\tC61,36.343,59.657,35,58,35z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"GRID_1_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"GRID_1","display":"inline"},"children":[{"name":"g","attribs":{"id":"GRID_1","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M58,35H38c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3\r\n\t\t\t\tV38C61,36.343,59.657,35,58,35z M55,55H41V41h14V55z M26,35H6c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20\r\n\t\t\t\tc1.657,0,3-1.343,3-3V38C29,36.343,27.657,35,26,35z M23,55H9V41h14V55z M58,3H38c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3\r\n\t\t\t\th20c1.657,0,3-1.343,3-3V6C61,4.343,59.657,3,58,3z M55,23H41V9h14V23z M26,3H6C4.343,3,3,4.343,3,6v20c0,1.657,1.343,3,3,3h20\r\n\t\t\t\tc1.657,0,3-1.343,3-3V6C29,4.343,27.657,3,26,3z M23,23H9V9h14V23z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M58,35H38c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3\r\n\t\t\t\tV38C61,36.343,59.657,35,58,35z M55,55H41V41h14V55z M26,35H6c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20\r\n\t\t\t\tc1.657,0,3-1.343,3-3V38C29,36.343,27.657,35,26,35z M23,55H9V41h14V55z M58,3H38c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3\r\n\t\t\t\th20c1.657,0,3-1.343,3-3V6C61,4.343,59.657,3,58,3z M55,23H41V9h14V23z M26,3H6C4.343,3,3,4.343,3,6v20c0,1.657,1.343,3,3,3h20\r\n\t\t\t\tc1.657,0,3-1.343,3-3V6C29,4.343,27.657,3,26,3z M23,23H9V9h14V23z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"UNLOCK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"UNLOCK","display":"inline"},"children":[{"name":"g","attribs":{"id":"UNLOCK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M55,32H20V18c0-6.627,5.373-12,12-12c6.627,0,12,5.373,12,12\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3c0-9.941-8.059-18-18-18c-9.941,0-18,8.059-18,18v14H9c-1.657,0-3,1.343-3,3v26\r\n\t\t\t\tc0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V35C58,33.343,56.657,32,55,32z M35,49.168V55c0,1.657-1.343,3-3,3\r\n\t\t\t\tc-1.657,0-3-1.343-3-3v-5.832c-1.786-1.039-3-2.953-3-5.168c0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6\r\n\t\t\t\tC38,46.215,36.786,48.129,35,49.168z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M55,32H20V18c0-6.627,5.373-12,12-12c6.627,0,12,5.373,12,12\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3c0-9.941-8.059-18-18-18c-9.941,0-18,8.059-18,18v14H9c-1.657,0-3,1.343-3,3v26\r\n\t\t\t\tc0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V35C58,33.343,56.657,32,55,32z M35,49.168V55c0,1.657-1.343,3-3,3\r\n\t\t\t\tc-1.657,0-3-1.343-3-3v-5.832c-1.786-1.039-3-2.953-3-5.168c0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6\r\n\t\t\t\tC38,46.215,36.786,48.129,35,49.168z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"LOCK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"LOCK","display":"inline"},"children":[{"name":"g","attribs":{"id":"LOCK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M55,32h-5V18c0-9.941-8.059-18-18-18c-9.941,0-18,8.059-18,18v14H9\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v26c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V35C58,33.343,56.657,32,55,32z M35,49.168V55\r\n\t\t\t\tc0,1.657-1.343,3-3,3s-3-1.343-3-3v-5.832c-1.786-1.039-3-2.953-3-5.168c0-3.314,2.686-6,6-6s6,2.686,6,6\r\n\t\t\t\tC38,46.215,36.786,48.129,35,49.168z M44,32H20V18c0-6.627,5.373-12,12-12c6.627,0,12,5.373,12,12V32z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M55,32h-5V18c0-9.941-8.059-18-18-18c-9.941,0-18,8.059-18,18v14H9\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v26c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V35C58,33.343,56.657,32,55,32z M35,49.168V55\r\n\t\t\t\tc0,1.657-1.343,3-3,3s-3-1.343-3-3v-5.832c-1.786-1.039-3-2.953-3-5.168c0-3.314,2.686-6,6-6s6,2.686,6,6\r\n\t\t\t\tC38,46.215,36.786,48.129,35,49.168z M44,32H20V18c0-6.627,5.373-12,12-12c6.627,0,12,5.373,12,12V32z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"INBOX__x2F__OUT_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"INBOX__x2F__OUT","display":"inline"},"children":[{"name":"g","attribs":{"id":"INBOX__x2F__OUT","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M25,18c0.828,0,1.578-0.336,2.121-0.879L29,15.243V34c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.657,0,3-1.343,3-3V15.243l1.879,1.879C37.422,17.664,38.172,18,39,18c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121\r\n\t\t\t\tl-7-7C33.578,5.336,32.829,5,32,5c-0.828,0-1.578,0.336-2.121,0.879l-7,7C22.336,13.422,22,14.172,22,15\r\n\t\t\t\tC22,16.657,23.343,18,25,18z M63.8,36.924l-7.978-20.941C55.406,14.827,54.3,14,53,14h-8.101C44.954,14.327,45,14.658,45,15\r\n\t\t\t\tc0,2.09-1.071,3.926-2.691,5h8.623l5.714,15H47c-1.657,0-3,1.343-3,3v3H20v-3c0-1.657-1.343-3-3-3H7.353l5.714-15h8.623\r\n\t\t\t\tC20.071,18.926,19,17.09,19,15c0-0.342,0.046-0.673,0.101-1H11c0,0,0,0,0,0c-1.3,0-2.406,0.827-2.823,1.982L0.2,36.924\r\n\t\t\t\tC0.071,37.258,0,37.621,0,38v19c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V38C64,37.621,63.929,37.258,63.8,36.924z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M25,18c0.828,0,1.578-0.336,2.121-0.879L29,15.243V34c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.657,0,3-1.343,3-3V15.243l1.879,1.879C37.422,17.664,38.172,18,39,18c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121\r\n\t\t\t\tl-7-7C33.578,5.336,32.829,5,32,5c-0.828,0-1.578,0.336-2.121,0.879l-7,7C22.336,13.422,22,14.172,22,15\r\n\t\t\t\tC22,16.657,23.343,18,25,18z M63.8,36.924l-7.978-20.941C55.406,14.827,54.3,14,53,14h-8.101C44.954,14.327,45,14.658,45,15\r\n\t\t\t\tc0,2.09-1.071,3.926-2.691,5h8.623l5.714,15H47c-1.657,0-3,1.343-3,3v3H20v-3c0-1.657-1.343-3-3-3H7.353l5.714-15h8.623\r\n\t\t\t\tC20.071,18.926,19,17.09,19,15c0-0.342,0.046-0.673,0.101-1H11c0,0,0,0,0,0c-1.3,0-2.406,0.827-2.823,1.982L0.2,36.924\r\n\t\t\t\tC0.071,37.258,0,37.621,0,38v19c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V38C64,37.621,63.929,37.258,63.8,36.924z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"INBOX__x2F__IN_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"INBOX__x2F__IN","display":"inline"},"children":[{"name":"g","attribs":{"id":"INBOX__x2F__IN","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M22,27c0,0.828,0.336,1.578,0.879,2.121l7,7C30.422,36.664,31.172,37,32,37\r\n\t\t\t\ts1.578-0.336,2.121-0.879l7-7C41.664,28.579,42,27.828,42,27c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L35,26.758V8\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v18.757l-1.879-1.879C26.578,24.336,25.829,24,25,24C23.343,24,22,25.343,22,27z M63.8,36.924\r\n\t\t\t\tl-7.978-20.941C55.406,14.827,54.3,14,53,14H38v6h12.932l5.714,15H47c-1.657,0-3,1.343-3,3v3H20v-3c0-1.657-1.343-3-3-3H7.353\r\n\t\t\t\tl5.714-15H26v-6H11c-1.3,0-2.406,0.827-2.823,1.982L0.2,36.924C0.071,37.258,0,37.621,0,38v19c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3V38C64,37.621,63.929,37.258,63.8,36.924z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M22,27c0,0.828,0.336,1.578,0.879,2.121l7,7C30.422,36.664,31.172,37,32,37\r\n\t\t\t\ts1.578-0.336,2.121-0.879l7-7C41.664,28.579,42,27.828,42,27c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L35,26.758V8\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v18.757l-1.879-1.879C26.578,24.336,25.829,24,25,24C23.343,24,22,25.343,22,27z M63.8,36.924\r\n\t\t\t\tl-7.978-20.941C55.406,14.827,54.3,14,53,14H38v6h12.932l5.714,15H47c-1.657,0-3,1.343-3,3v3H20v-3c0-1.657-1.343-3-3-3H7.353\r\n\t\t\t\tl5.714-15H26v-6H11c-1.3,0-2.406,0.827-2.823,1.982L0.2,36.924C0.071,37.258,0,37.621,0,38v19c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3V38C64,37.621,63.929,37.258,63.8,36.924z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"INBOX_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"INBOX","display":"inline"},"children":[{"name":"g","attribs":{"id":"INBOX","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M63.796,31.935l0.007-0.003l-8-21l-0.007,0.003C55.366,9.806,54.28,9,53,9H11\r\n\t\t\t\tc-1.28,0-2.365,0.806-2.796,1.935l-0.007-0.003l-8,21l0.007,0.003C0.077,32.267,0,32.624,0,33v19c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3V33C64,32.624,63.923,32.267,63.796,31.935z M47,30c-1.657,0-3,1.343-3,3v3H20v-3c0-1.657-1.343-3-3-3H7.353\r\n\t\t\t\tl5.714-15h37.865l5.714,15H47z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M63.796,31.935l0.007-0.003l-8-21l-0.007,0.003C55.366,9.806,54.28,9,53,9H11\r\n\t\t\t\tc-1.28,0-2.365,0.806-2.796,1.935l-0.007-0.003l-8,21l0.007,0.003C0.077,32.267,0,32.624,0,33v19c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3V33C64,32.624,63.923,32.267,63.796,31.935z M47,30c-1.657,0-3,1.343-3,3v3H20v-3c0-1.657-1.343-3-3-3H7.353\r\n\t\t\t\tl5.714-15h37.865l5.714,15H47z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SLIDESHOW_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SLIDESHOW","display":"inline"},"children":[{"name":"g","attribs":{"id":"SLIDESHOW","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M12,18c-1.657,0-3,1.343-3,3v22c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V21\r\n\t\t\t\tC15,19.343,13.657,18,12,18z M3,12c-1.657,0-3,1.343-3,3v34c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V15C6,13.343,4.657,12,3,12z\r\n\t\t\t\t M52,18c-1.657,0-3,1.343-3,3v22c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V21C55,19.343,53.657,18,52,18z M61,12\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v34c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V15C64,13.343,62.657,12,61,12z M43,18H21\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v22c0,1.657,1.343,3,3,3h22c1.657,0,3-1.343,3-3V21C46,19.343,44.657,18,43,18z M40,40H24V24h16V40z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M12,18c-1.657,0-3,1.343-3,3v22c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V21\r\n\t\t\t\tC15,19.343,13.657,18,12,18z M3,12c-1.657,0-3,1.343-3,3v34c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V15C6,13.343,4.657,12,3,12z\r\n\t\t\t\t M52,18c-1.657,0-3,1.343-3,3v22c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V21C55,19.343,53.657,18,52,18z M61,12\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v34c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V15C64,13.343,62.657,12,61,12z M43,18H21\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v22c0,1.657,1.343,3,3,3h22c1.657,0,3-1.343,3-3V21C46,19.343,44.657,18,43,18z M40,40H24V24h16V40z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"VOICEMAIL_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"VOICEMAIL","display":"inline"},"children":[{"name":"g","attribs":{"id":"VOICEMAIL","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M50,18c-7.732,0-14,6.268-14,14c0,2.977,0.936,5.731,2.52,8H25.48\r\n\t\t\t\tc1.584-2.269,2.52-5.023,2.52-8c0-7.732-6.268-14-14-14S0,24.268,0,32s6.268,14,14,14h36c7.732,0,14-6.268,14-14S57.732,18,50,18\r\n\t\t\t\tz M14,40c-4.418,0-8-3.582-8-8s3.582-8,8-8s8,3.582,8,8S18.418,40,14,40z M50,40c-4.418,0-8-3.582-8-8s3.582-8,8-8s8,3.582,8,8\r\n\t\t\t\tS54.418,40,50,40z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M50,18c-7.732,0-14,6.268-14,14c0,2.977,0.936,5.731,2.52,8H25.48\r\n\t\t\t\tc1.584-2.269,2.52-5.023,2.52-8c0-7.732-6.268-14-14-14S0,24.268,0,32s6.268,14,14,14h36c7.732,0,14-6.268,14-14S57.732,18,50,18\r\n\t\t\t\tz M14,40c-4.418,0-8-3.582-8-8s3.582-8,8-8s8,3.582,8,8S18.418,40,14,40z M50,40c-4.418,0-8-3.582-8-8s3.582-8,8-8s8,3.582,8,8\r\n\t\t\t\tS54.418,40,50,40z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CREDIT_CARD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CREDIT_CARD","display":"inline"},"children":[{"name":"g","attribs":{"id":"CREDIT_CARD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M0,51c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V28H0V51z M6,39h30v3H6V39z\r\n\t\t\t\t M6,45h12v3H6V45z M61,10H3c-1.657,0-3,1.343-3,3v9h64v-9C64,11.343,62.657,10,61,10z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M0,51c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V28H0V51z M6,39h30v3H6V39z\r\n\t\t\t\t M6,45h12v3H6V45z M61,10H3c-1.657,0-3,1.343-3,3v9h64v-9C64,11.343,62.657,10,61,10z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"HOME_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"HOME","display":"inline"},"children":[{"name":"g","attribs":{"id":"HOME","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M6,39v21c0,1.657,1.343,3,3,3h28V39h12v24h6c1.657,0,3-1.343,3-3V39L32,13L6,39\r\n\t\t\t\tz M27,51H15V39h12V51z M63.189,31.96l0.007-0.007L52,20.757V12c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v2.757L34.196,2.953\r\n\t\t\t\tl-0.002,0.002c-0.478-0.512-1.132-0.857-1.866-0.937c-0.003,0-0.006-0.001-0.009-0.001c-0.045-0.005-0.09-0.008-0.135-0.011\r\n\t\t\t\tc-0.008,0-0.017-0.001-0.025-0.002C32.107,2.002,32.054,2,32.001,2C32.001,2,32,2,32,2c-0.85,0-1.616,0.354-2.162,0.922\r\n\t\t\t\tL0.922,31.838C0.354,32.384,0,33.15,0,34c0,1.657,1.343,3,3,3c0.821,0,1.565-0.33,2.106-0.864l0.001,0.001L32,9.245v0.001\r\n\t\t\t\tl0.077,0.072l0,0.002l26.877,26.877l0.007-0.007C59.496,36.688,60.21,37,61,37c1.657,0,3-1.343,3-3\r\n\t\t\t\tC64,33.21,63.688,32.496,63.189,31.96z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M6,39v21c0,1.657,1.343,3,3,3h28V39h12v24h6c1.657,0,3-1.343,3-3V39L32,13L6,39\r\n\t\t\t\tz M27,51H15V39h12V51z M63.189,31.96l0.007-0.007L52,20.757V12c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v2.757L34.196,2.953\r\n\t\t\t\tl-0.002,0.002c-0.478-0.512-1.132-0.857-1.866-0.937c-0.003,0-0.006-0.001-0.009-0.001c-0.045-0.005-0.09-0.008-0.135-0.011\r\n\t\t\t\tc-0.008,0-0.017-0.001-0.025-0.002C32.107,2.002,32.054,2,32.001,2C32.001,2,32,2,32,2c-0.85,0-1.616,0.354-2.162,0.922\r\n\t\t\t\tL0.922,31.838C0.354,32.384,0,33.15,0,34c0,1.657,1.343,3,3,3c0.821,0,1.565-0.33,2.106-0.864l0.001,0.001L32,9.245v0.001\r\n\t\t\t\tl0.077,0.072l0,0.002l26.877,26.877l0.007-0.007C59.496,36.688,60.21,37,61,37c1.657,0,3-1.343,3-3\r\n\t\t\t\tC64,33.21,63.688,32.496,63.189,31.96z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SUITCASE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SUITCASE","display":"inline"},"children":[{"name":"g","attribs":{"id":"SUITCASE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M0,21v37c0,1.657,1.343,3,3,3h5V18H3C1.343,18,0,19.343,0,21z M32,3\r\n\t\t\t\tc-8.284,0-15,6.716-15,15h-6v43h42V18h-6C47,9.716,40.284,3,32,3z M23,18c0-4.971,4.029-9,9-9c4.971,0,9,4.029,9,9H23z M61,18h-5\r\n\t\t\t\tv43h5c1.657,0,3-1.343,3-3V21C64,19.343,62.657,18,61,18z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M0,21v37c0,1.657,1.343,3,3,3h5V18H3C1.343,18,0,19.343,0,21z M32,3\r\n\t\t\t\tc-8.284,0-15,6.716-15,15h-6v43h42V18h-6C47,9.716,40.284,3,32,3z M23,18c0-4.971,4.029-9,9-9c4.971,0,9,4.029,9,9H23z M61,18h-5\r\n\t\t\t\tv43h5c1.657,0,3-1.343,3-3V21C64,19.343,62.657,18,61,18z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"TAGS_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"TAGS","display":"inline"},"children":[{"name":"g","attribs":{"id":"TAGS","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M56.113,26.872l-5.133-4.91c-0.005,0.009-0.011,0.019-0.016,0.028L34.126,5.884\r\n\t\t\t\tC33.582,5.338,32.831,5,32,5c-0.003,0-0.005,0.001-0.008,0.001V4.993H13V5c-1.657,0-3,1.343-3,3h22l24.081,23.155L56.3,30.9\r\n\t\t\t\tl0.002,0.001C56.731,30.383,57,29.726,57,29C57,28.168,56.66,27.415,56.113,26.872z M54.997,35.951\r\n\t\t\t\tc-0.001-0.087-0.004-0.174-0.013-0.259c-0.002-0.016-0.005-0.031-0.007-0.046c-0.01-0.085-0.022-0.17-0.039-0.253\r\n\t\t\t\tc0-0.002-0.001-0.003-0.001-0.004c-0.123-0.594-0.422-1.123-0.84-1.531L31.126,11.884C30.582,11.338,29.831,11,29,11\r\n\t\t\t\tc-0.003,0-0.005,0.001-0.008,0.001v-0.008H10V11c-1.657,0-3,1.343-3,3H6.993v19.049h0.013c0.015,0.878,0.409,1.657,1.023,2.196\r\n\t\t\t\tl-0.011,0.012l25,23l0.005-0.005c0.395,0.347,0.88,0.593,1.418,0.694c0.022,0.004,0.046,0.007,0.068,0.01\r\n\t\t\t\tc0.067,0.011,0.134,0.022,0.202,0.029C34.806,58.995,34.902,59,35,59c0.916,0,1.734-0.411,2.284-1.058l0.001,0.001l17-20\r\n\t\t\t\tl-0.001-0.001C54.73,37.418,55,36.741,55,36C55,35.984,54.998,35.968,54.997,35.951z M15,23c-2.209,0-4-1.791-4-4\r\n\t\t\t\tc0-2.209,1.791-4,4-4c2.209,0,4,1.791,4,4C19,21.209,17.209,23,15,23z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M56.113,26.872l-5.133-4.91c-0.005,0.009-0.011,0.019-0.016,0.028L34.126,5.884\r\n\t\t\t\tC33.582,5.338,32.831,5,32,5c-0.003,0-0.005,0.001-0.008,0.001V4.993H13V5c-1.657,0-3,1.343-3,3h22l24.081,23.155L56.3,30.9\r\n\t\t\t\tl0.002,0.001C56.731,30.383,57,29.726,57,29C57,28.168,56.66,27.415,56.113,26.872z M54.997,35.951\r\n\t\t\t\tc-0.001-0.087-0.004-0.174-0.013-0.259c-0.002-0.016-0.005-0.031-0.007-0.046c-0.01-0.085-0.022-0.17-0.039-0.253\r\n\t\t\t\tc0-0.002-0.001-0.003-0.001-0.004c-0.123-0.594-0.422-1.123-0.84-1.531L31.126,11.884C30.582,11.338,29.831,11,29,11\r\n\t\t\t\tc-0.003,0-0.005,0.001-0.008,0.001v-0.008H10V11c-1.657,0-3,1.343-3,3H6.993v19.049h0.013c0.015,0.878,0.409,1.657,1.023,2.196\r\n\t\t\t\tl-0.011,0.012l25,23l0.005-0.005c0.395,0.347,0.88,0.593,1.418,0.694c0.022,0.004,0.046,0.007,0.068,0.01\r\n\t\t\t\tc0.067,0.011,0.134,0.022,0.202,0.029C34.806,58.995,34.902,59,35,59c0.916,0,1.734-0.411,2.284-1.058l0.001,0.001l17-20\r\n\t\t\t\tl-0.001-0.001C54.73,37.418,55,36.741,55,36C55,35.984,54.998,35.968,54.997,35.951z M15,23c-2.209,0-4-1.791-4-4\r\n\t\t\t\tc0-2.209,1.791-4,4-4c2.209,0,4,1.791,4,4C19,21.209,17.209,23,15,23z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"TAG_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"TAG","display":"inline"},"children":[{"name":"g","attribs":{"id":"TAG","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M56,33c0-0.017-0.002-0.033-0.003-0.049c-0.001-0.087-0.004-0.174-0.013-0.258\r\n\t\t\t\tc-0.001-0.016-0.005-0.031-0.007-0.046c-0.01-0.085-0.022-0.17-0.039-0.253c0-0.002-0.001-0.003-0.001-0.005\r\n\t\t\t\tc-0.123-0.594-0.422-1.123-0.84-1.531L32.126,8.884C31.582,8.338,30.831,8,30,8c-0.003,0-0.005,0.001-0.008,0.001V7.993H11V8\r\n\t\t\t\tc-1.657,0-3,1.343-3,3H7.993v19.049h0.013c0.015,0.878,0.409,1.657,1.023,2.196l-0.011,0.012l25,23l0.005-0.005\r\n\t\t\t\tc0.395,0.347,0.88,0.592,1.418,0.694c0.022,0.004,0.046,0.007,0.068,0.01c0.067,0.011,0.134,0.022,0.202,0.029\r\n\t\t\t\tC35.806,55.995,35.902,56,36,56c0.916,0,1.734-0.411,2.284-1.058l0.001,0.001l17-20l-0.001-0.001C55.73,34.418,56,33.741,56,33z\r\n\t\t\t\t M16,20c-2.209,0-4-1.791-4-4c0-2.209,1.791-4,4-4s4,1.791,4,4C20,18.209,18.209,20,16,20z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M56,33c0-0.017-0.002-0.033-0.003-0.049c-0.001-0.087-0.004-0.174-0.013-0.258\r\n\t\t\t\tc-0.001-0.016-0.005-0.031-0.007-0.046c-0.01-0.085-0.022-0.17-0.039-0.253c0-0.002-0.001-0.003-0.001-0.005\r\n\t\t\t\tc-0.123-0.594-0.422-1.123-0.84-1.531L32.126,8.884C31.582,8.338,30.831,8,30,8c-0.003,0-0.005,0.001-0.008,0.001V7.993H11V8\r\n\t\t\t\tc-1.657,0-3,1.343-3,3H7.993v19.049h0.013c0.015,0.878,0.409,1.657,1.023,2.196l-0.011,0.012l25,23l0.005-0.005\r\n\t\t\t\tc0.395,0.347,0.88,0.592,1.418,0.694c0.022,0.004,0.046,0.007,0.068,0.01c0.067,0.011,0.134,0.022,0.202,0.029\r\n\t\t\t\tC35.806,55.995,35.902,56,36,56c0.916,0,1.734-0.411,2.284-1.058l0.001,0.001l17-20l-0.001-0.001C55.73,34.418,56,33.741,56,33z\r\n\t\t\t\t M16,20c-2.209,0-4-1.791-4-4c0-2.209,1.791-4,4-4s4,1.791,4,4C20,18.209,18.209,20,16,20z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BASKET__x2F__DELETE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BASKET__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{"id":"BASKET__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.175,0-2.181,0.682-2.674,1.665L23.32,6.662L15.2,22h6.789L28.623,9.469z M35.383,9.469l3.329,6.289\r\n\t\t\t\tc1.313-1.574,2.922-2.89,4.742-3.866l-2.769-5.23l-0.011,0.006C40.183,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.534,0.151,1.028,0.396,1.462L35.383,9.469z M47,41.476V50c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V38.479\r\n\t\t\t\tC37.345,35.547,35,31.05,35,26c0-0.338,0.03-0.668,0.05-1H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h2.658l6.432,25.728l0.009-0.002\r\n\t\t\t\tC12.424,58.03,13.595,59,15,59h0c0.005,0,0.01-0.001,0.016-0.001V59H49c1.405,0,2.576-0.97,2.901-2.275l0.009,0.002l3.863-15.453\r\n\t\t\t\tC54.266,41.746,52.663,42,51,42C49.616,42,48.281,41.806,47,41.476z M23,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34\r\n\t\t\t\tc0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V34c0-1.657,1.343-3,3-3\r\n\t\t\t\tc1.657,0,3,1.343,3,3V50z M51,13c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13s13-5.82,13-13C64,18.82,58.18,13,51,13z\r\n\t\t\t\t M57.121,27.879C57.664,28.422,58,29.172,58,30c0,1.657-1.343,3-3,3c-0.828,0-1.578-0.336-2.121-0.879L51,30.243l-1.879,1.879\r\n\t\t\t\tC48.578,32.664,47.828,33,47,33c-1.657,0-3-1.343-3-3c0-0.829,0.336-1.578,0.879-2.121L46.757,26l-1.879-1.879\r\n\t\t\t\tC44.336,23.578,44,22.828,44,22c0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879L51,21.757l1.879-1.879\r\n\t\t\t\tC53.422,19.336,54.172,19,55,19c1.657,0,3,1.343,3,3c0,0.828-0.336,1.578-0.879,2.121L55.243,26L57.121,27.879z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.175,0-2.181,0.682-2.674,1.665L23.32,6.662L15.2,22h6.789L28.623,9.469z M35.383,9.469l3.329,6.289\r\n\t\t\t\tc1.313-1.574,2.922-2.89,4.742-3.866l-2.769-5.23l-0.011,0.006C40.183,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.534,0.151,1.028,0.396,1.462L35.383,9.469z M47,41.476V50c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V38.479\r\n\t\t\t\tC37.345,35.547,35,31.05,35,26c0-0.338,0.03-0.668,0.05-1H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h2.658l6.432,25.728l0.009-0.002\r\n\t\t\t\tC12.424,58.03,13.595,59,15,59h0c0.005,0,0.01-0.001,0.016-0.001V59H49c1.405,0,2.576-0.97,2.901-2.275l0.009,0.002l3.863-15.453\r\n\t\t\t\tC54.266,41.746,52.663,42,51,42C49.616,42,48.281,41.806,47,41.476z M23,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34\r\n\t\t\t\tc0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V34c0-1.657,1.343-3,3-3\r\n\t\t\t\tc1.657,0,3,1.343,3,3V50z M51,13c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13s13-5.82,13-13C64,18.82,58.18,13,51,13z\r\n\t\t\t\t M57.121,27.879C57.664,28.422,58,29.172,58,30c0,1.657-1.343,3-3,3c-0.828,0-1.578-0.336-2.121-0.879L51,30.243l-1.879,1.879\r\n\t\t\t\tC48.578,32.664,47.828,33,47,33c-1.657,0-3-1.343-3-3c0-0.829,0.336-1.578,0.879-2.121L46.757,26l-1.879-1.879\r\n\t\t\t\tC44.336,23.578,44,22.828,44,22c0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879L51,21.757l1.879-1.879\r\n\t\t\t\tC53.422,19.336,54.172,19,55,19c1.657,0,3,1.343,3,3c0,0.828-0.336,1.578-0.879,2.121L55.243,26L57.121,27.879z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BASKET__x2F__OK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BASKET__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{"id":"BASKET__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M35.383,9.469l3.329,6.289c1.313-1.574,2.922-2.89,4.742-3.866l-2.769-5.23\r\n\t\t\t\tl-0.011,0.006C40.183,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3c0,0.534,0.151,1.028,0.396,1.462L35.383,9.469z M28.623,9.469\r\n\t\t\t\tL28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3c-1.175,0-2.181,0.682-2.674,1.665L23.32,6.662L15.2,22h6.789\r\n\t\t\t\tL28.623,9.469z M47,41.476V50c0,1.657-1.343,3-3,3s-3-1.343-3-3V38.479C37.346,35.547,35,31.05,35,26c0-0.338,0.03-0.668,0.05-1\r\n\t\t\t\tH3c-1.657,0-3,1.343-3,3s1.343,3,3,3h2.658l6.432,25.728l0.009-0.002C12.424,58.03,13.595,59,15,59h0\r\n\t\t\t\tc0.005,0,0.01-0.001,0.016-0.001V59H49c1.405,0,2.576-0.97,2.901-2.275l0.009,0.002l3.863-15.453C54.266,41.746,52.663,42,51,42\r\n\t\t\t\tC49.616,42,48.281,41.806,47,41.476z M23,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50\r\n\t\t\t\tc0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V34c0-1.657,1.343-3,3-3c1.657,0,3,1.343,3,3V50z M51,13c-7.18,0-13,5.82-13,13\r\n\t\t\t\tc0,7.18,5.82,13,13,13c7.18,0,13-5.82,13-13C64,18.82,58.18,13,51,13z M59.121,25.122l-8,8C50.578,33.664,49.829,34,49,34\r\n\t\t\t\tc-0.828,0-1.578-0.336-2.121-0.879l-4-4C42.336,28.579,42,27.828,42,27c0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879\r\n\t\t\t\tL49,26.758l5.879-5.879C55.422,20.336,56.172,20,57,20c1.657,0,3,1.343,3,3C60,23.828,59.664,24.579,59.121,25.122z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M35.383,9.469l3.329,6.289c1.313-1.574,2.922-2.89,4.742-3.866l-2.769-5.23\r\n\t\t\t\tl-0.011,0.006C40.183,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3c0,0.534,0.151,1.028,0.396,1.462L35.383,9.469z M28.623,9.469\r\n\t\t\t\tL28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3c-1.175,0-2.181,0.682-2.674,1.665L23.32,6.662L15.2,22h6.789\r\n\t\t\t\tL28.623,9.469z M47,41.476V50c0,1.657-1.343,3-3,3s-3-1.343-3-3V38.479C37.346,35.547,35,31.05,35,26c0-0.338,0.03-0.668,0.05-1\r\n\t\t\t\tH3c-1.657,0-3,1.343-3,3s1.343,3,3,3h2.658l6.432,25.728l0.009-0.002C12.424,58.03,13.595,59,15,59h0\r\n\t\t\t\tc0.005,0,0.01-0.001,0.016-0.001V59H49c1.405,0,2.576-0.97,2.901-2.275l0.009,0.002l3.863-15.453C54.266,41.746,52.663,42,51,42\r\n\t\t\t\tC49.616,42,48.281,41.806,47,41.476z M23,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50\r\n\t\t\t\tc0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V34c0-1.657,1.343-3,3-3c1.657,0,3,1.343,3,3V50z M51,13c-7.18,0-13,5.82-13,13\r\n\t\t\t\tc0,7.18,5.82,13,13,13c7.18,0,13-5.82,13-13C64,18.82,58.18,13,51,13z M59.121,25.122l-8,8C50.578,33.664,49.829,34,49,34\r\n\t\t\t\tc-0.828,0-1.578-0.336-2.121-0.879l-4-4C42.336,28.579,42,27.828,42,27c0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879\r\n\t\t\t\tL49,26.758l5.879-5.879C55.422,20.336,56.172,20,57,20c1.657,0,3,1.343,3,3C60,23.828,59.664,24.579,59.121,25.122z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BASKET__x2F__REMOVE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BASKET__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{"id":"BASKET__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.175,0-2.181,0.682-2.673,1.665L23.32,6.662L15.2,22h6.789L28.623,9.469z M35.383,9.469l3.329,6.289\r\n\t\t\t\tc1.313-1.574,2.922-2.89,4.742-3.866l-2.769-5.23l-0.011,0.006C40.183,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.534,0.151,1.028,0.396,1.462L35.383,9.469z M47,41.476V50c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V38.479\r\n\t\t\t\tC37.345,35.547,35,31.05,35,26c0-0.338,0.03-0.668,0.05-1H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h2.658l6.432,25.728l0.009-0.002\r\n\t\t\t\tC12.424,58.03,13.595,59,15,59h0c0.005,0,0.01-0.001,0.016-0.001V59H49c1.405,0,2.576-0.97,2.901-2.275l0.009,0.002l3.863-15.453\r\n\t\t\t\tC54.266,41.746,52.663,42,51,42C49.616,42,48.281,41.806,47,41.476z M23,50c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V34\r\n\t\t\t\tc0-1.657,1.343-3,3-3c1.657,0,3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z\r\n\t\t\t\t M51,13c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13s13-5.82,13-13C64,18.82,58.18,13,51,13z M57,29H45c-1.657,0-3-1.343-3-3\r\n\t\t\t\ts1.343-3,3-3h12c1.657,0,3,1.343,3,3S58.657,29,57,29z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.175,0-2.181,0.682-2.673,1.665L23.32,6.662L15.2,22h6.789L28.623,9.469z M35.383,9.469l3.329,6.289\r\n\t\t\t\tc1.313-1.574,2.922-2.89,4.742-3.866l-2.769-5.23l-0.011,0.006C40.183,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.534,0.151,1.028,0.396,1.462L35.383,9.469z M47,41.476V50c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V38.479\r\n\t\t\t\tC37.345,35.547,35,31.05,35,26c0-0.338,0.03-0.668,0.05-1H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h2.658l6.432,25.728l0.009-0.002\r\n\t\t\t\tC12.424,58.03,13.595,59,15,59h0c0.005,0,0.01-0.001,0.016-0.001V59H49c1.405,0,2.576-0.97,2.901-2.275l0.009,0.002l3.863-15.453\r\n\t\t\t\tC54.266,41.746,52.663,42,51,42C49.616,42,48.281,41.806,47,41.476z M23,50c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V34\r\n\t\t\t\tc0-1.657,1.343-3,3-3c1.657,0,3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z\r\n\t\t\t\t M51,13c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13s13-5.82,13-13C64,18.82,58.18,13,51,13z M57,29H45c-1.657,0-3-1.343-3-3\r\n\t\t\t\ts1.343-3,3-3h12c1.657,0,3,1.343,3,3S58.657,29,57,29z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BASKET__x2F__ADD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BASKET__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{"id":"BASKET__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.175,0-2.181,0.682-2.674,1.665L23.32,6.662L15.2,22h6.789L28.623,9.469z M35.383,9.469l3.329,6.289\r\n\t\t\t\tc1.313-1.574,2.922-2.89,4.742-3.866l-2.769-5.23l-0.011,0.006C40.183,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.534,0.151,1.028,0.396,1.462L35.383,9.469z M51,13c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13c7.18,0,13-5.82,13-13\r\n\t\t\t\tC64,18.82,58.18,13,51,13z M57,29h-3v3c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3v-3h-3c-1.657,0-3-1.343-3-3s1.343-3,3-3h3v-3\r\n\t\t\t\tc0-1.657,1.343-3,3-3c1.657,0,3,1.343,3,3v3h3c1.657,0,3,1.343,3,3S58.657,29,57,29z M47,41.476V50c0,1.657-1.343,3-3,3\r\n\t\t\t\tc-1.657,0-3-1.343-3-3V38.479C37.345,35.547,35,31.05,35,26c0-0.338,0.03-0.668,0.051-1H3c-1.657,0-3,1.343-3,3s1.343,3,3,3\r\n\t\t\t\th2.658l6.432,25.728l0.009-0.002C12.424,58.03,13.595,59,15,59h0c0.005,0,0.01-0.001,0.016-0.001V59H49\r\n\t\t\t\tc1.405,0,2.576-0.97,2.901-2.275l0.009,0.002l3.863-15.453C54.266,41.746,52.663,42,51,42C49.616,42,48.281,41.806,47,41.476z\r\n\t\t\t\t M23,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34\r\n\t\t\t\tc0-1.657,1.343-3,3-3s3,1.343,3,3V50z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.175,0-2.181,0.682-2.674,1.665L23.32,6.662L15.2,22h6.789L28.623,9.469z M35.383,9.469l3.329,6.289\r\n\t\t\t\tc1.313-1.574,2.922-2.89,4.742-3.866l-2.769-5.23l-0.011,0.006C40.183,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.534,0.151,1.028,0.396,1.462L35.383,9.469z M51,13c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13c7.18,0,13-5.82,13-13\r\n\t\t\t\tC64,18.82,58.18,13,51,13z M57,29h-3v3c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3v-3h-3c-1.657,0-3-1.343-3-3s1.343-3,3-3h3v-3\r\n\t\t\t\tc0-1.657,1.343-3,3-3c1.657,0,3,1.343,3,3v3h3c1.657,0,3,1.343,3,3S58.657,29,57,29z M47,41.476V50c0,1.657-1.343,3-3,3\r\n\t\t\t\tc-1.657,0-3-1.343-3-3V38.479C37.345,35.547,35,31.05,35,26c0-0.338,0.03-0.668,0.051-1H3c-1.657,0-3,1.343-3,3s1.343,3,3,3\r\n\t\t\t\th2.658l6.432,25.728l0.009-0.002C12.424,58.03,13.595,59,15,59h0c0.005,0,0.01-0.001,0.016-0.001V59H49\r\n\t\t\t\tc1.405,0,2.576-0.97,2.901-2.275l0.009,0.002l3.863-15.453C54.266,41.746,52.663,42,51,42C49.616,42,48.281,41.806,47,41.476z\r\n\t\t\t\t M23,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34\r\n\t\t\t\tc0-1.657,1.343-3,3-3s3,1.343,3,3V50z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BASKET_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BASKET","display":"inline"},"children":[{"name":"g","attribs":{"id":"BASKET","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M64,27.987c0-0.006-0.001-0.012-0.001-0.019\r\n\t\t\t\tc-0.001-0.074-0.005-0.148-0.011-0.221c-0.003-0.042-0.008-0.084-0.013-0.125c-0.005-0.04-0.011-0.08-0.017-0.12\r\n\t\t\t\tc-0.219-1.342-1.327-2.386-2.703-2.502H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h2.658l6.432,25.728l0.009-0.002\r\n\t\t\t\tC12.424,58.03,13.595,59,15,59h0c0.005,0,0.01-0.001,0.016-0.001V59H49c1.405,0,2.576-0.97,2.901-2.275l0.009,0.002L58.342,31H61\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.002,0-0.003,0-0.005C64,27.992,64,27.99,64,27.987z M23,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34\r\n\t\t\t\tc0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V34c0-1.657,1.343-3,3-3\r\n\t\t\t\tc1.657,0,3,1.343,3,3V50z M47,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35.383,9.469\r\n\t\t\t\tL42.017,22h6.789l-8.12-15.338l-0.011,0.006C40.183,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3c0,0.534,0.151,1.028,0.396,1.462\r\n\t\t\t\tL35.383,9.469z M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3c-1.175,0-2.181,0.682-2.674,1.665\r\n\t\t\t\tL23.32,6.662L15.2,22h6.789L28.623,9.469z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M64,27.987c0-0.006-0.001-0.012-0.001-0.019\r\n\t\t\t\tc-0.001-0.074-0.005-0.148-0.011-0.221c-0.003-0.042-0.008-0.084-0.013-0.125c-0.005-0.04-0.011-0.08-0.017-0.12\r\n\t\t\t\tc-0.219-1.342-1.327-2.386-2.703-2.502H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h2.658l6.432,25.728l0.009-0.002\r\n\t\t\t\tC12.424,58.03,13.595,59,15,59h0c0.005,0,0.01-0.001,0.016-0.001V59H49c1.405,0,2.576-0.97,2.901-2.275l0.009,0.002L58.342,31H61\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.002,0-0.003,0-0.005C64,27.992,64,27.99,64,27.987z M23,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34\r\n\t\t\t\tc0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V34c0-1.657,1.343-3,3-3\r\n\t\t\t\tc1.657,0,3,1.343,3,3V50z M47,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35.383,9.469\r\n\t\t\t\tL42.017,22h6.789l-8.12-15.338l-0.011,0.006C40.183,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3c0,0.534,0.151,1.028,0.396,1.462\r\n\t\t\t\tL35.383,9.469z M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3c-1.175,0-2.181,0.682-2.674,1.665\r\n\t\t\t\tL23.32,6.662L15.2,22h6.789L28.623,9.469z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SHOPPING_BAG_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SHOPPING_BAG","display":"inline"},"children":[{"name":"g","attribs":{"id":"SHOPPING_BAG","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M6,61c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3v-3H6V61z M55,15h-8\r\n\t\t\t\tc0-8.284-6.716-15-15-15c-8.284,0-15,6.716-15,15H9c-1.657,0-3,1.343-3,3v37h52V18C58,16.343,56.657,15,55,15z M23,15\r\n\t\t\t\tc0-4.971,4.029-9,9-9s9,4.03,9,9H23z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M6,61c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3v-3H6V61z M55,15h-8\r\n\t\t\t\tc0-8.284-6.716-15-15-15c-8.284,0-15,6.716-15,15H9c-1.657,0-3,1.343-3,3v37h52V18C58,16.343,56.657,15,55,15z M23,15\r\n\t\t\t\tc0-4.971,4.029-9,9-9s9,4.03,9,9H23z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SHOP_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SHOP","display":"inline"},"children":[{"name":"g","attribs":{"id":"SHOP","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M10,9h44c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H10C8.343,3,7,4.343,7,6\r\n\t\t\t\tC7,7.657,8.343,9,10,9z M58.375,12H5.625L0,27c0,4.418,3.582,8,8,8c4.418,0,8-3.582,8-8c0,4.418,3.582,8,8,8c4.418,0,8-3.582,8-8\r\n\t\t\t\tc0,4.418,3.582,8,8,8c4.418,0,8-3.582,8-8c0,4.418,3.582,8,8,8c4.418,0,8-3.582,8-8L58.375,12z M55,37.952V37.95\r\n\t\t\t\tc-0.287-0.026-0.57-0.069-0.85-0.117c-0.06-0.01-0.122-0.015-0.182-0.026c-0.13-0.024-0.256-0.061-0.384-0.09\r\n\t\t\t\tc-0.542-0.124-1.074-0.278-1.584-0.477V52H12V37.239c-0.51,0.2-1.042,0.354-1.586,0.478c-0.128,0.029-0.253,0.065-0.382,0.09\r\n\t\t\t\tc-0.06,0.011-0.122,0.016-0.183,0.027C9.569,37.88,9.287,37.924,9,37.95v0.002C8.671,37.982,8.338,38,8,38\r\n\t\t\t\tc-0.684,0-1.351-0.071-2-0.19V58c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V37.81C57.351,37.929,56.684,38,56,38\r\n\t\t\t\tC55.663,38,55.329,37.982,55,37.952z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M10,9h44c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H10C8.343,3,7,4.343,7,6\r\n\t\t\t\tC7,7.657,8.343,9,10,9z M58.375,12H5.625L0,27c0,4.418,3.582,8,8,8c4.418,0,8-3.582,8-8c0,4.418,3.582,8,8,8c4.418,0,8-3.582,8-8\r\n\t\t\t\tc0,4.418,3.582,8,8,8c4.418,0,8-3.582,8-8c0,4.418,3.582,8,8,8c4.418,0,8-3.582,8-8L58.375,12z M55,37.952V37.95\r\n\t\t\t\tc-0.287-0.026-0.57-0.069-0.85-0.117c-0.06-0.01-0.122-0.015-0.182-0.026c-0.13-0.024-0.256-0.061-0.384-0.09\r\n\t\t\t\tc-0.542-0.124-1.074-0.278-1.584-0.477V52H12V37.239c-0.51,0.2-1.042,0.354-1.586,0.478c-0.128,0.029-0.253,0.065-0.382,0.09\r\n\t\t\t\tc-0.06,0.011-0.122,0.016-0.183,0.027C9.569,37.88,9.287,37.924,9,37.95v0.002C8.671,37.982,8.338,38,8,38\r\n\t\t\t\tc-0.684,0-1.351-0.071-2-0.19V58c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V37.81C57.351,37.929,56.684,38,56,38\r\n\t\t\t\tC55.663,38,55.329,37.982,55,37.952z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SHOPPING_CART__x2F__DELETE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SHOPPING_CART__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{"id":"SHOPPING_CART__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M56,49H27.779l-1.498-4.279L52.2,42.993v-0.001\r\n\t\t\t\tc1.132-0.074,2.092-0.776,2.536-1.762h0l4.83-10.733c-2.245,1.427-4.866,2.303-7.685,2.457l-1.877,4.171l-25.779,1.719L18.679,23\r\n\t\t\t\th17.495C35.423,21.146,35,19.124,35,17H16.578l-1.747-4.991l-0.011,0.004C14.411,10.844,13.309,10,12,10H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,1.657,1.343,3,3,3h6.872l11.55,33H16c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6s6-2.686,6-6h28c0,3.314,2.686,6,6,6\r\n\t\t\t\tc3.314,0,6-2.686,6-6C62,51.686,59.314,49,56,49z M51,30c7.18,0,13-5.82,13-13c0-7.18-5.82-13-13-13c-7.18,0-13,5.82-13,13\r\n\t\t\t\tC38,24.18,43.82,30,51,30z M44.879,15.121C44.336,14.578,44,13.828,44,13c0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879\r\n\t\t\t\tL51,12.757l1.879-1.879C53.422,10.336,54.172,10,55,10c1.657,0,3,1.343,3,3c0,0.828-0.336,1.578-0.879,2.121L55.243,17\r\n\t\t\t\tl1.879,1.879C57.664,19.422,58,20.172,58,21c0,1.657-1.343,3-3,3c-0.828,0-1.578-0.336-2.121-0.879L51,21.243l-1.879,1.879\r\n\t\t\t\tC48.579,23.664,47.828,24,47,24c-1.657,0-3-1.343-3-3c0-0.828,0.336-1.578,0.879-2.121L46.757,17L44.879,15.121z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M56,49H27.779l-1.498-4.279L52.2,42.993v-0.001\r\n\t\t\t\tc1.132-0.074,2.092-0.776,2.536-1.762h0l4.83-10.733c-2.245,1.427-4.866,2.303-7.685,2.457l-1.877,4.171l-25.779,1.719L18.679,23\r\n\t\t\t\th17.495C35.423,21.146,35,19.124,35,17H16.578l-1.747-4.991l-0.011,0.004C14.411,10.844,13.309,10,12,10H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,1.657,1.343,3,3,3h6.872l11.55,33H16c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6s6-2.686,6-6h28c0,3.314,2.686,6,6,6\r\n\t\t\t\tc3.314,0,6-2.686,6-6C62,51.686,59.314,49,56,49z M51,30c7.18,0,13-5.82,13-13c0-7.18-5.82-13-13-13c-7.18,0-13,5.82-13,13\r\n\t\t\t\tC38,24.18,43.82,30,51,30z M44.879,15.121C44.336,14.578,44,13.828,44,13c0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879\r\n\t\t\t\tL51,12.757l1.879-1.879C53.422,10.336,54.172,10,55,10c1.657,0,3,1.343,3,3c0,0.828-0.336,1.578-0.879,2.121L55.243,17\r\n\t\t\t\tl1.879,1.879C57.664,19.422,58,20.172,58,21c0,1.657-1.343,3-3,3c-0.828,0-1.578-0.336-2.121-0.879L51,21.243l-1.879,1.879\r\n\t\t\t\tC48.579,23.664,47.828,24,47,24c-1.657,0-3-1.343-3-3c0-0.828,0.336-1.578,0.879-2.121L46.757,17L44.879,15.121z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SHOPPING_CART__x2F__OK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SHOPPING_CART__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{"id":"SHOPPING_CART__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M51,30c7.18,0,13-5.82,13-13c0-7.18-5.82-13-13-13c-7.18,0-13,5.82-13,13\r\n\t\t\t\tC38,24.18,43.82,30,51,30z M45,15c0.828,0,1.578,0.336,2.121,0.879L49,17.757l5.879-5.879C55.422,11.336,56.172,11,57,11\r\n\t\t\t\tc1.657,0,3,1.343,3,3c0,0.828-0.336,1.578-0.879,2.121l-8,8C50.578,24.664,49.828,25,49,25s-1.578-0.336-2.121-0.879l-4-4\r\n\t\t\t\tC42.336,19.578,42,18.828,42,18C42,16.343,43.343,15,45,15z M56,49H27.778l-1.497-4.279L52.2,42.993v-0.001\r\n\t\t\t\tc1.132-0.074,2.092-0.776,2.536-1.762h0l4.83-10.733c-2.245,1.427-4.866,2.303-7.685,2.457l-1.877,4.171l-25.779,1.719L18.679,23\r\n\t\t\t\th17.495C35.423,21.146,35,19.124,35,17H16.578l-1.747-4.991l-0.011,0.004C14.411,10.844,13.309,10,12,10H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,1.657,1.343,3,3,3h6.872l11.55,33H16c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6s6-2.686,6-6h28c0,3.314,2.686,6,6,6\r\n\t\t\t\ts6-2.686,6-6C62,51.686,59.314,49,56,49z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M51,30c7.18,0,13-5.82,13-13c0-7.18-5.82-13-13-13c-7.18,0-13,5.82-13,13\r\n\t\t\t\tC38,24.18,43.82,30,51,30z M45,15c0.828,0,1.578,0.336,2.121,0.879L49,17.757l5.879-5.879C55.422,11.336,56.172,11,57,11\r\n\t\t\t\tc1.657,0,3,1.343,3,3c0,0.828-0.336,1.578-0.879,2.121l-8,8C50.578,24.664,49.828,25,49,25s-1.578-0.336-2.121-0.879l-4-4\r\n\t\t\t\tC42.336,19.578,42,18.828,42,18C42,16.343,43.343,15,45,15z M56,49H27.778l-1.497-4.279L52.2,42.993v-0.001\r\n\t\t\t\tc1.132-0.074,2.092-0.776,2.536-1.762h0l4.83-10.733c-2.245,1.427-4.866,2.303-7.685,2.457l-1.877,4.171l-25.779,1.719L18.679,23\r\n\t\t\t\th17.495C35.423,21.146,35,19.124,35,17H16.578l-1.747-4.991l-0.011,0.004C14.411,10.844,13.309,10,12,10H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,1.657,1.343,3,3,3h6.872l11.55,33H16c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6s6-2.686,6-6h28c0,3.314,2.686,6,6,6\r\n\t\t\t\ts6-2.686,6-6C62,51.686,59.314,49,56,49z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SHOPPING_CART__x2F__REMOVE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SHOPPING_CART__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{"id":"SHOPPING_CART__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M51,30c7.18,0,13-5.82,13-13c0-7.18-5.82-13-13-13S38,9.82,38,17\r\n\t\t\t\tC38,24.18,43.82,30,51,30z M45,14h12c1.657,0,3,1.343,3,3s-1.343,3-3,3H45c-1.657,0-3-1.343-3-3S43.343,14,45,14z M56,49H27.778\r\n\t\t\t\tl-1.497-4.279L52.2,42.993v-0.001c1.132-0.074,2.092-0.776,2.536-1.762h0l4.83-10.733c-2.245,1.427-4.866,2.303-7.685,2.457\r\n\t\t\t\tl-1.877,4.171l-25.779,1.719L18.678,23h17.495C35.423,21.146,35,19.124,35,17H16.578l-1.747-4.991l-0.011,0.004\r\n\t\t\t\tC14.411,10.844,13.309,10,12,10H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h6.872l11.55,33H16c-3.314,0-6,2.686-6,6\r\n\t\t\t\tc0,3.314,2.686,6,6,6s6-2.686,6-6h28c0,3.314,2.686,6,6,6c3.314,0,6-2.686,6-6C62,51.686,59.314,49,56,49z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M51,30c7.18,0,13-5.82,13-13c0-7.18-5.82-13-13-13S38,9.82,38,17\r\n\t\t\t\tC38,24.18,43.82,30,51,30z M45,14h12c1.657,0,3,1.343,3,3s-1.343,3-3,3H45c-1.657,0-3-1.343-3-3S43.343,14,45,14z M56,49H27.778\r\n\t\t\t\tl-1.497-4.279L52.2,42.993v-0.001c1.132-0.074,2.092-0.776,2.536-1.762h0l4.83-10.733c-2.245,1.427-4.866,2.303-7.685,2.457\r\n\t\t\t\tl-1.877,4.171l-25.779,1.719L18.678,23h17.495C35.423,21.146,35,19.124,35,17H16.578l-1.747-4.991l-0.011,0.004\r\n\t\t\t\tC14.411,10.844,13.309,10,12,10H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h6.872l11.55,33H16c-3.314,0-6,2.686-6,6\r\n\t\t\t\tc0,3.314,2.686,6,6,6s6-2.686,6-6h28c0,3.314,2.686,6,6,6c3.314,0,6-2.686,6-6C62,51.686,59.314,49,56,49z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SHOPPING_CART__x2F__ADD_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SHOPPING_CART__x2F__ADD"},"children":[{"name":"g","attribs":{"id":"SHOPPING_CART__x2F__ADD"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M51,30c7.18,0,13-5.82,13-13c0-7.18-5.82-13-13-13c-7.18,0-13,5.82-13,13\r\n\t\t\t\tC38,24.18,43.82,30,51,30z M45,14h3v-3c0-1.657,1.343-3,3-3c1.657,0,3,1.343,3,3v3h3c1.657,0,3,1.343,3,3s-1.343,3-3,3h-3v3\r\n\t\t\t\tc0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3v-3h-3c-1.657,0-3-1.343-3-3S43.343,14,45,14z M56,49H27.779l-1.498-4.279L52.2,42.993\r\n\t\t\t\tv-0.001c1.132-0.074,2.092-0.776,2.536-1.762h0l4.83-10.733c-2.245,1.427-4.866,2.303-7.685,2.457l-1.877,4.171l-25.779,1.719\r\n\t\t\t\tL18.678,23h17.496C35.423,21.146,35,19.124,35,17H16.578l-1.747-4.991l-0.011,0.004C14.411,10.844,13.309,10,12,10H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h6.872l11.55,33H16c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6s6-2.686,6-6h28\r\n\t\t\t\tc0,3.314,2.686,6,6,6s6-2.686,6-6C62,51.686,59.314,49,56,49z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M51,30c7.18,0,13-5.82,13-13c0-7.18-5.82-13-13-13c-7.18,0-13,5.82-13,13\r\n\t\t\t\tC38,24.18,43.82,30,51,30z M45,14h3v-3c0-1.657,1.343-3,3-3c1.657,0,3,1.343,3,3v3h3c1.657,0,3,1.343,3,3s-1.343,3-3,3h-3v3\r\n\t\t\t\tc0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3v-3h-3c-1.657,0-3-1.343-3-3S43.343,14,45,14z M56,49H27.779l-1.498-4.279L52.2,42.993\r\n\t\t\t\tv-0.001c1.132-0.074,2.092-0.776,2.536-1.762h0l4.83-10.733c-2.245,1.427-4.866,2.303-7.685,2.457l-1.877,4.171l-25.779,1.719\r\n\t\t\t\tL18.678,23h17.496C35.423,21.146,35,19.124,35,17H16.578l-1.747-4.991l-0.011,0.004C14.411,10.844,13.309,10,12,10H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h6.872l11.55,33H16c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6s6-2.686,6-6h28\r\n\t\t\t\tc0,3.314,2.686,6,6,6s6-2.686,6-6C62,51.686,59.314,49,56,49z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SHOPPING_CART_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SHOPPING_CART","display":"inline"},"children":[{"name":"g","attribs":{"id":"SHOPPING_CART","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M52.2,39.993c1.132-0.074,2.092-0.776,2.536-1.762h0l9-20l-0.005-0.002\r\n\t\t\t\tC63.901,17.853,64,17.439,64,17c0-1.657-1.343-3-3-3H16.578l-1.747-4.991L14.82,9.013C14.411,7.844,13.309,7,12,7H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h6.872l11.55,33H16c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6s6-2.686,6-6h28\r\n\t\t\t\tc0,3.314,2.686,6,6,6s6-2.686,6-6c0-3.314-2.686-6-6-6H27.778l-1.497-4.279L52.2,39.993L52.2,39.993z M24.224,35.845L18.679,20\r\n\t\t\t\tH56.36l-6.357,14.127L24.224,35.845z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M52.2,39.993c1.132-0.074,2.092-0.776,2.536-1.762h0l9-20l-0.005-0.002\r\n\t\t\t\tC63.901,17.853,64,17.439,64,17c0-1.657-1.343-3-3-3H16.578l-1.747-4.991L14.82,9.013C14.411,7.844,13.309,7,12,7H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h6.872l11.55,33H16c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6s6-2.686,6-6h28\r\n\t\t\t\tc0,3.314,2.686,6,6,6s6-2.686,6-6c0-3.314-2.686-6-6-6H27.778l-1.497-4.279L52.2,39.993L52.2,39.993z M24.224,35.845L18.679,20\r\n\t\t\t\tH56.36l-6.357,14.127L24.224,35.845z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CAMERA_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CAMERA","display":"inline"},"children":[{"name":"g","attribs":{"id":"CAMERA","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,22c-6.627,0-12,5.372-12,12c0,6.627,5.373,12,12,12c6.627,0,12-5.373,12-12\r\n\t\t\t\tC44,27.373,38.627,22,32,22z M61,12H48.243l-5.094-5.094l-0.003,0.003C42.602,6.35,41.843,6,41,6H23\r\n\t\t\t\tc-0.976,0-1.835,0.474-2.383,1.196L15.813,12H3c-1.657,0-3,1.343-3,3v40c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V15\r\n\t\t\t\tC64,13.343,62.657,12,61,12z M32,52c-9.941,0-18-8.059-18-18c0-9.941,8.059-18,18-18c9.941,0,18,8.059,18,18\r\n\t\t\t\tC50,43.941,41.941,52,32,52z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,22c-6.627,0-12,5.372-12,12c0,6.627,5.373,12,12,12c6.627,0,12-5.373,12-12\r\n\t\t\t\tC44,27.373,38.627,22,32,22z M61,12H48.243l-5.094-5.094l-0.003,0.003C42.602,6.35,41.843,6,41,6H23\r\n\t\t\t\tc-0.976,0-1.835,0.474-2.383,1.196L15.813,12H3c-1.657,0-3,1.343-3,3v40c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V15\r\n\t\t\t\tC64,13.343,62.657,12,61,12z M32,52c-9.941,0-18-8.059-18-18c0-9.941,8.059-18,18-18c9.941,0,18,8.059,18,18\r\n\t\t\t\tC50,43.941,41.941,52,32,52z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MUSIC_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MUSIC","display":"inline"},"children":[{"name":"g","attribs":{"id":"MUSIC","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M60,0L20,9c0,0-3,0.681-3,3v40.66C15.499,52.241,13.802,52,12,52\r\n\t\t\t\tc-6.075,0-11,2.686-11,6c0,3.314,4.925,6,11,6c6.075,0,11-2.686,11-6V26.123l34-7.415V43.66C55.499,43.241,53.802,43,52,43\r\n\t\t\t\tc-6.075,0-11,2.686-11,6c0,3.314,4.925,6,11,6c6.075,0,11-2.686,11-6V3C63,1.343,61.657,0,60,0z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M60,0L20,9c0,0-3,0.681-3,3v40.66C15.499,52.241,13.802,52,12,52\r\n\t\t\t\tc-6.075,0-11,2.686-11,6c0,3.314,4.925,6,11,6c6.075,0,11-2.686,11-6V26.123l34-7.415V43.66C55.499,43.241,53.802,43,52,43\r\n\t\t\t\tc-6.075,0-11,2.686-11,6c0,3.314,4.925,6,11,6c6.075,0,11-2.686,11-6V3C63,1.343,61.657,0,60,0z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"PROGRESS_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PROGRESS","display":"inline"},"children":[{"name":"g","attribs":{"id":"PROGRESS","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26,29c-1.657,0-3,1.343-3,3v16c0,1.657,1.343,3,3,3s3-1.343,3-3V32\r\n\t\t\t\tC29,30.343,27.657,29,26,29z M14,37c-1.657,0-3,1.343-3,3v8c0,1.657,1.343,3,3,3s3-1.343,3-3v-8C17,38.343,15.657,37,14,37z\r\n\t\t\t\t M50,13c-1.657,0-3,1.343-3,3v32c0,1.657,1.343,3,3,3s3-1.343,3-3V16C53,14.343,51.657,13,50,13z M38,21c-1.657,0-3,1.343-3,3v24\r\n\t\t\t\tc0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V24C41,22.343,39.657,21,38,21z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26,29c-1.657,0-3,1.343-3,3v16c0,1.657,1.343,3,3,3s3-1.343,3-3V32\r\n\t\t\t\tC29,30.343,27.657,29,26,29z M14,37c-1.657,0-3,1.343-3,3v8c0,1.657,1.343,3,3,3s3-1.343,3-3v-8C17,38.343,15.657,37,14,37z\r\n\t\t\t\t M50,13c-1.657,0-3,1.343-3,3v32c0,1.657,1.343,3,3,3s3-1.343,3-3V16C53,14.343,51.657,13,50,13z M38,21c-1.657,0-3,1.343-3,3v24\r\n\t\t\t\tc0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V24C41,22.343,39.657,21,38,21z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CODE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CODE","display":"inline"},"children":[{"name":"g","attribs":{"id":"CODE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M15.031,17c-0.844,0-1.604,0.352-2.149,0.913l-0.003-0.003L1.053,29.735\r\n\t\t\t\tC0.413,30.285,0,31.091,0,32c0,0.844,0.351,1.604,0.912,2.149L0.91,34.152l12,12l0.003-0.003C13.453,46.674,14.187,47,15,47\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.812-0.326-1.547-0.851-2.087l0.003-0.003l-9.894-9.895l9.863-9.863l-0.003-0.003\r\n\t\t\t\tc0.561-0.545,0.913-1.305,0.913-2.149C18.031,18.343,16.688,17,15.031,17z M64.031,32c0-0.91-0.413-1.715-1.053-2.265\r\n\t\t\t\tL51.153,17.91l-0.003,0.003C50.604,17.352,49.844,17,49,17c-1.657,0-3,1.343-3,3c0,0.844,0.351,1.604,0.913,2.149l-0.003,0.003\r\n\t\t\t\tl9.863,9.863l-9.894,9.895l0.003,0.003c-0.525,0.54-0.851,1.275-0.851,2.087c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.813,0,1.547-0.326,2.088-0.851l0.003,0.003l12-12l-0.003-0.003C63.68,33.604,64.031,32.844,64.031,32z M40,8\r\n\t\t\t\tc-1.3,0-2.406,0.827-2.823,1.982L21.2,51.924C21.071,52.258,21,52.621,21,53c0,1.657,1.343,3,3,3c1.3,0,2.406-0.827,2.823-1.983\r\n\t\t\t\tL42.8,12.076C42.929,11.742,43,11.38,43,11C43,9.343,41.657,8,40,8z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M15.031,17c-0.844,0-1.604,0.352-2.149,0.913l-0.003-0.003L1.053,29.735\r\n\t\t\t\tC0.413,30.285,0,31.091,0,32c0,0.844,0.351,1.604,0.912,2.149L0.91,34.152l12,12l0.003-0.003C13.453,46.674,14.187,47,15,47\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.812-0.326-1.547-0.851-2.087l0.003-0.003l-9.894-9.895l9.863-9.863l-0.003-0.003\r\n\t\t\t\tc0.561-0.545,0.913-1.305,0.913-2.149C18.031,18.343,16.688,17,15.031,17z M64.031,32c0-0.91-0.413-1.715-1.053-2.265\r\n\t\t\t\tL51.153,17.91l-0.003,0.003C50.604,17.352,49.844,17,49,17c-1.657,0-3,1.343-3,3c0,0.844,0.351,1.604,0.913,2.149l-0.003,0.003\r\n\t\t\t\tl9.863,9.863l-9.894,9.895l0.003,0.003c-0.525,0.54-0.851,1.275-0.851,2.087c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.813,0,1.547-0.326,2.088-0.851l0.003,0.003l12-12l-0.003-0.003C63.68,33.604,64.031,32.844,64.031,32z M40,8\r\n\t\t\t\tc-1.3,0-2.406,0.827-2.823,1.982L21.2,51.924C21.071,52.258,21,52.621,21,53c0,1.657,1.343,3,3,3c1.3,0,2.406-0.827,2.823-1.983\r\n\t\t\t\tL42.8,12.076C42.929,11.742,43,11.38,43,11C43,9.343,41.657,8,40,8z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"LINK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"LINK","display":"inline"},"children":[{"name":"g","attribs":{"id":"LINK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26.461,45.766c-0.056,0.061-0.096,0.131-0.155,0.19l-8.349,8.37\r\n\t\t\t\tc-2.306,2.311-6.043,2.311-8.349,0c-2.305-2.311-2.305-6.059,0-8.37l8.349-8.37c0.018-0.018,0.041-0.03,0.059-0.049l7.187-7.187\r\n\t\t\t\tc-3.943-1.062-8.326-0.052-11.421,3.05l-8.349,8.37c-4.611,4.623-4.611,12.118,0,16.74c4.611,4.623,12.087,4.623,16.697,0\r\n\t\t\t\tl8.349-8.37c3.092-3.1,4.1-7.489,3.045-11.44L26.461,45.766z M58.481,5.401c-4.611-4.623-12.086-4.623-16.697,0l-8.349,8.37\r\n\t\t\t\tc-3.082,3.09-4.093,7.462-3.054,11.403l7.221-7.221l0.006,0.006c0.001-0.001,0.001-0.002,0.002-0.002l8.349-8.37\r\n\t\t\t\tc2.305-2.311,6.043-2.311,8.349,0c2.305,2.311,2.305,6.059,0,8.37l-8.349,8.37c-0.097,0.098-0.211,0.167-0.313,0.256l-6.97,6.97\r\n\t\t\t\tc3.953,1.078,8.353,0.071,11.457-3.041l8.349-8.37C63.091,17.518,63.091,10.023,58.481,5.401z M42,19\r\n\t\t\t\tc-0.868,0-1.644,0.374-2.192,0.964L19.964,39.808C19.375,40.356,19,41.132,19,42c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.836,0,1.591-0.344,2.135-0.896l0.009,0.009l20-20l-0.009-0.009C44.669,23.563,45,22.82,45,22C45,20.343,43.657,19,42,19z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26.461,45.766c-0.056,0.061-0.096,0.131-0.155,0.19l-8.349,8.37\r\n\t\t\t\tc-2.306,2.311-6.043,2.311-8.349,0c-2.305-2.311-2.305-6.059,0-8.37l8.349-8.37c0.018-0.018,0.041-0.03,0.059-0.049l7.187-7.187\r\n\t\t\t\tc-3.943-1.062-8.326-0.052-11.421,3.05l-8.349,8.37c-4.611,4.623-4.611,12.118,0,16.74c4.611,4.623,12.087,4.623,16.697,0\r\n\t\t\t\tl8.349-8.37c3.092-3.1,4.1-7.489,3.045-11.44L26.461,45.766z M58.481,5.401c-4.611-4.623-12.086-4.623-16.697,0l-8.349,8.37\r\n\t\t\t\tc-3.082,3.09-4.093,7.462-3.054,11.403l7.221-7.221l0.006,0.006c0.001-0.001,0.001-0.002,0.002-0.002l8.349-8.37\r\n\t\t\t\tc2.305-2.311,6.043-2.311,8.349,0c2.305,2.311,2.305,6.059,0,8.37l-8.349,8.37c-0.097,0.098-0.211,0.167-0.313,0.256l-6.97,6.97\r\n\t\t\t\tc3.953,1.078,8.353,0.071,11.457-3.041l8.349-8.37C63.091,17.518,63.091,10.023,58.481,5.401z M42,19\r\n\t\t\t\tc-0.868,0-1.644,0.374-2.192,0.964L19.964,39.808C19.375,40.356,19,41.132,19,42c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.836,0,1.591-0.344,2.135-0.896l0.009,0.009l20-20l-0.009-0.009C44.669,23.563,45,22.82,45,22C45,20.343,43.657,19,42,19z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BIN_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BIN","display":"inline"},"children":[{"name":"g","attribs":{"id":"BIN","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M53,9H38V6c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v3H11\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v3h48v-3C56,10.343,54.657,9,53,9z M11,58c0,1.657,1.343,3,3,3h36c1.657,0,3-1.343,3-3V18H11V58z M41,27\r\n\t\t\t\tc0-1.657,1.343-3,3-3c1.657,0,3,1.343,3,3v25c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V27z M29,27c0-1.657,1.343-3,3-3\r\n\t\t\t\tc1.657,0,3,1.343,3,3v25c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V27z M17,27c0-1.657,1.343-3,3-3c1.657,0,3,1.343,3,3v25\r\n\t\t\t\tc0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V27z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M53,9H38V6c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v3H11\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v3h48v-3C56,10.343,54.657,9,53,9z M11,58c0,1.657,1.343,3,3,3h36c1.657,0,3-1.343,3-3V18H11V58z M41,27\r\n\t\t\t\tc0-1.657,1.343-3,3-3c1.657,0,3,1.343,3,3v25c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V27z M29,27c0-1.657,1.343-3,3-3\r\n\t\t\t\tc1.657,0,3,1.343,3,3v25c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V27z M17,27c0-1.657,1.343-3,3-3c1.657,0,3,1.343,3,3v25\r\n\t\t\t\tc0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V27z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"EQUALIZER_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"EQUALIZER","display":"inline"},"children":[{"name":"g","attribs":{"id":"EQUALIZER","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M13,23H7c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h6c1.657,0,3-1.343,3-3\r\n\t\t\t\tV26C16,24.343,14.657,23,13,23z M13,3c0-1.657-1.343-3-3-3C8.343,0,7,1.343,7,3v17h6V3z M35,3c0-1.657-1.343-3-3-3s-3,1.343-3,3\r\n\t\t\t\tv25h6V3z M57,3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v9h6V3z M7,61c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V44H7V61z M57,15\r\n\t\t\t\th-6c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h6c1.657,0,3-1.343,3-3V18C60,16.343,58.657,15,57,15z M51,61\r\n\t\t\t\tc0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V36h-6V61z M29,61c0,1.657,1.343,3,3,3s3-1.343,3-3v-9h-6V61z M35,31h-6\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h6c1.657,0,3-1.343,3-3V34C38,32.343,36.657,31,35,31z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M13,23H7c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h6c1.657,0,3-1.343,3-3\r\n\t\t\t\tV26C16,24.343,14.657,23,13,23z M13,3c0-1.657-1.343-3-3-3C8.343,0,7,1.343,7,3v17h6V3z M35,3c0-1.657-1.343-3-3-3s-3,1.343-3,3\r\n\t\t\t\tv25h6V3z M57,3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v9h6V3z M7,61c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V44H7V61z M57,15\r\n\t\t\t\th-6c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h6c1.657,0,3-1.343,3-3V18C60,16.343,58.657,15,57,15z M51,61\r\n\t\t\t\tc0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V36h-6V61z M29,61c0,1.657,1.343,3,3,3s3-1.343,3-3v-9h-6V61z M35,31h-6\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h6c1.657,0,3-1.343,3-3V34C38,32.343,36.657,31,35,31z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MORE_2_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MORE_2","display":"inline"},"children":[{"name":"g","attribs":{"id":"MORE_2","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31.998,26c-3.314,0-6.001,2.687-6.001,6.001c0,3.314,2.687,6.001,6.001,6.001\r\n\t\t\t\tc3.315,0,6.002-2.687,6.002-6.001C38,28.687,35.313,26,31.998,26z M31.998,19.001c3.315,0,6.002-2.687,6.002-6.001\r\n\t\t\t\tC38,9.687,35.313,7,31.998,7c-3.314,0-6.001,2.686-6.001,6.001C25.997,16.315,28.684,19.001,31.998,19.001z M31.998,45\r\n\t\t\t\tc-3.314,0-6.001,2.687-6.001,6.001c0,3.314,2.687,6.001,6.001,6.001c3.315,0,6.002-2.687,6.002-6.001\r\n\t\t\t\tC38,47.687,35.313,45,31.998,45z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31.998,26c-3.314,0-6.001,2.687-6.001,6.001c0,3.314,2.687,6.001,6.001,6.001\r\n\t\t\t\tc3.315,0,6.002-2.687,6.002-6.001C38,28.687,35.313,26,31.998,26z M31.998,19.001c3.315,0,6.002-2.687,6.002-6.001\r\n\t\t\t\tC38,9.687,35.313,7,31.998,7c-3.314,0-6.001,2.686-6.001,6.001C25.997,16.315,28.684,19.001,31.998,19.001z M31.998,45\r\n\t\t\t\tc-3.314,0-6.001,2.687-6.001,6.001c0,3.314,2.687,6.001,6.001,6.001c3.315,0,6.002-2.687,6.002-6.001\r\n\t\t\t\tC38,47.687,35.313,45,31.998,45z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"TEXT__x2F__RIGHT_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"TEXT__x2F__RIGHT","display":"inline"},"children":[{"name":"g","attribs":{"id":"TEXT__x2F__RIGHT","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,53H21c-1.657,0-3,1.343-3,3s1.343,3,3,3h40c1.657,0,3-1.343,3-3\r\n\t\t\t\tS62.657,53,61,53z M3,11h58c1.657,0,3-1.343,3-3s-1.343-3-3-3H3C1.343,5,0,6.343,0,8S1.343,11,3,11z M61,37H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,38.343,62.657,37,61,37z M61,21H15c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h5.999c0,0,0,0,0.001,0h40c1.657,0,3-1.343,3-3C64,22.343,62.657,21,61,21z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,53H21c-1.657,0-3,1.343-3,3s1.343,3,3,3h40c1.657,0,3-1.343,3-3\r\n\t\t\t\tS62.657,53,61,53z M3,11h58c1.657,0,3-1.343,3-3s-1.343-3-3-3H3C1.343,5,0,6.343,0,8S1.343,11,3,11z M61,37H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,38.343,62.657,37,61,37z M61,21H15c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h5.999c0,0,0,0,0.001,0h40c1.657,0,3-1.343,3-3C64,22.343,62.657,21,61,21z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"TEXT__x2F__CENTER_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"TEXT__x2F__CENTER","display":"inline"},"children":[{"name":"g","attribs":{"id":"TEXT__x2F__CENTER","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M3,11h58c1.657,0,3-1.343,3-3s-1.343-3-3-3H3C1.343,5,0,6.343,0,8\r\n\t\t\t\tS1.343,11,3,11z M15,21c-1.657,0-3,1.343-3,3s1.343,3,3,3h5.999c0,0,0,0,0.001,0h22c0,0,0,0,0.001,0H49c1.657,0,3-1.343,3-3\r\n\t\t\t\ts-1.343-3-3-3H15z M61,37H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,38.343,62.657,37,61,37z M43,53\r\n\t\t\t\tH21c-1.657,0-3,1.343-3,3s1.343,3,3,3h22c1.657,0,3-1.343,3-3S44.657,53,43,53z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M3,11h58c1.657,0,3-1.343,3-3s-1.343-3-3-3H3C1.343,5,0,6.343,0,8\r\n\t\t\t\tS1.343,11,3,11z M15,21c-1.657,0-3,1.343-3,3s1.343,3,3,3h5.999c0,0,0,0,0.001,0h22c0,0,0,0,0.001,0H49c1.657,0,3-1.343,3-3\r\n\t\t\t\ts-1.343-3-3-3H15z M61,37H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,38.343,62.657,37,61,37z M43,53\r\n\t\t\t\tH21c-1.657,0-3,1.343-3,3s1.343,3,3,3h22c1.657,0,3-1.343,3-3S44.657,53,43,53z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"TEXT__x2F__LEFT_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"TEXT__x2F__LEFT","display":"inline"},"children":[{"name":"g","attribs":{"id":"TEXT__x2F__LEFT","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M3,27h40c0,0,0,0,0.001,0H49c1.657,0,3-1.343,3-3s-1.343-3-3-3H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3C0,25.657,1.343,27,3,27z M3,11h58c1.657,0,3-1.343,3-3s-1.343-3-3-3H3C1.343,5,0,6.343,0,8S1.343,11,3,11z\r\n\t\t\t\t M61,37H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,38.343,62.657,37,61,37z M43,53H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h40c1.657,0,3-1.343,3-3S44.657,53,43,53z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M3,27h40c0,0,0,0,0.001,0H49c1.657,0,3-1.343,3-3s-1.343-3-3-3H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3C0,25.657,1.343,27,3,27z M3,11h58c1.657,0,3-1.343,3-3s-1.343-3-3-3H3C1.343,5,0,6.343,0,8S1.343,11,3,11z\r\n\t\t\t\t M61,37H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,38.343,62.657,37,61,37z M43,53H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h40c1.657,0,3-1.343,3-3S44.657,53,43,53z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"TEXT__x2F__JUSTIFY_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"TEXT__x2F__JUSTIFY","display":"inline"},"children":[{"name":"g","attribs":{"id":"TEXT__x2F__JUSTIFY","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M3,11h58c1.657,0,3-1.343,3-3s-1.343-3-3-3H3C1.343,5,0,6.343,0,8\r\n\t\t\t\tS1.343,11,3,11z M61,53H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h58c1.657,0,3-1.343,3-3S62.657,53,61,53z M61,21H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,22.343,62.657,21,61,21z M61,37H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,38.343,62.657,37,61,37z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M3,11h58c1.657,0,3-1.343,3-3s-1.343-3-3-3H3C1.343,5,0,6.343,0,8\r\n\t\t\t\tS1.343,11,3,11z M61,53H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h58c1.657,0,3-1.343,3-3S62.657,53,61,53z M61,21H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,22.343,62.657,21,61,21z M61,37H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,38.343,62.657,37,61,37z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BATTERY_FULL_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BATTERY_FULL","display":"inline"},"children":[{"name":"g","attribs":{"id":"BATTERY_FULL","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,26v-6c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v24c0,1.657,1.343,3,3,3\r\n\t\t\t\th55c1.657,0,3-1.343,3-3v-6c1.657,0,3-1.343,3-3v-6C64,27.343,62.657,26,61,26z M55,41H6V23h49V41z M52,26H9v12h43V26z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,26v-6c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v24c0,1.657,1.343,3,3,3\r\n\t\t\t\th55c1.657,0,3-1.343,3-3v-6c1.657,0,3-1.343,3-3v-6C64,27.343,62.657,26,61,26z M55,41H6V23h49V41z M52,26H9v12h43V26z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BATTERY__x2F__2_x2F_3_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BATTERY__x2F__2_x2F_3","display":"inline"},"children":[{"name":"g","attribs":{"id":"BATTERY__x2F__2_x2F_3","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M37,26H9v12h28V26z M61,26v-6c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v24\r\n\t\t\t\tc0,1.657,1.343,3,3,3h55c1.657,0,3-1.343,3-3v-6c1.657,0,3-1.343,3-3v-6C64,27.343,62.657,26,61,26z M55,41H6V23h49V41z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M37,26H9v12h28V26z M61,26v-6c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v24\r\n\t\t\t\tc0,1.657,1.343,3,3,3h55c1.657,0,3-1.343,3-3v-6c1.657,0,3-1.343,3-3v-6C64,27.343,62.657,26,61,26z M55,41H6V23h49V41z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BATTERY__x2F__1_x2F_3_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BATTERY__x2F__1_x2F_3","display":"inline"},"children":[{"name":"g","attribs":{"id":"BATTERY__x2F__1_x2F_3","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M22,26H9v12h13V26z M61,26v-6c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v24\r\n\t\t\t\tc0,1.657,1.343,3,3,3h55c1.657,0,3-1.343,3-3v-6c1.657,0,3-1.343,3-3v-6C64,27.343,62.657,26,61,26z M55,41H6V23h49V41z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M22,26H9v12h13V26z M61,26v-6c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v24\r\n\t\t\t\tc0,1.657,1.343,3,3,3h55c1.657,0,3-1.343,3-3v-6c1.657,0,3-1.343,3-3v-6C64,27.343,62.657,26,61,26z M55,41H6V23h49V41z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BATTERY__x2F__EMPTY_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BATTERY__x2F__EMPTY","display":"inline"},"children":[{"name":"g","attribs":{"id":"BATTERY__x2F__EMPTY","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,26v-6c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v24c0,1.657,1.343,3,3,3\r\n\t\t\t\th55c1.657,0,3-1.343,3-3v-6c1.657,0,3-1.343,3-3v-6C64,27.343,62.657,26,61,26z M55,41H6V23h49V41z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,26v-6c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v24c0,1.657,1.343,3,3,3\r\n\t\t\t\th55c1.657,0,3-1.343,3-3v-6c1.657,0,3-1.343,3-3v-6C64,27.343,62.657,26,61,26z M55,41H6V23h49V41z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"STAR_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"STAR","display":"inline"},"children":[{"name":"g","attribs":{"id":"STAR","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M64,26c0-1.657-1.343-3-3-3H41.047L34.869,4.12C34.492,2.893,33.351,2,32,2\r\n\t\t\t\tc-1.35,0-2.492,0.892-2.868,2.12L22.953,23H3c-1.657,0-3,1.343-3,3c0,1,0.49,1.885,1.242,2.43l0,0l16.118,11.66l-6.209,18.971\r\n\t\t\t\tC11.053,59.357,11,59.672,11,60c0,1.657,1.343,3,3,3c0.657,0,1.263-0.213,1.758-0.571l0.001,0.001L32,50.681l16.242,11.749\r\n\t\t\t\tl0.001-0.001C48.737,62.788,49.343,63,50,63c1.657,0,3-1.343,3-3c0-0.328-0.053-0.643-0.151-0.938L46.641,40.09l16.118-11.66l0,0\r\n\t\t\t\tC63.51,27.885,64,27,64,26z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M64,26c0-1.657-1.343-3-3-3H41.047L34.869,4.12C34.492,2.893,33.351,2,32,2\r\n\t\t\t\tc-1.35,0-2.492,0.892-2.868,2.12L22.953,23H3c-1.657,0-3,1.343-3,3c0,1,0.49,1.885,1.242,2.43l0,0l16.118,11.66l-6.209,18.971\r\n\t\t\t\tC11.053,59.357,11,59.672,11,60c0,1.657,1.343,3,3,3c0.657,0,1.263-0.213,1.758-0.571l0.001,0.001L32,50.681l16.242,11.749\r\n\t\t\t\tl0.001-0.001C48.737,62.788,49.343,63,50,63c1.657,0,3-1.343,3-3c0-0.328-0.053-0.643-0.151-0.938L46.641,40.09l16.118-11.66l0,0\r\n\t\t\t\tC63.51,27.885,64,27,64,26z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SPEECH_4_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SPEECH_4","display":"inline"},"children":[{"name":"g","attribs":{"id":"SPEECH_4","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M51.841,47.327L45.515,41H19c-3.314,0-6-2.686-6-6V14H4c-1.657,0-3,1.343-3,3\r\n\t\t\t\tv34c0,1.656,1.341,2.998,2.996,3H7.5v0H8v6c0,0.207,0.021,0.409,0.061,0.605c0.028,0.136,0.076,0.264,0.122,0.393\r\n\t\t\t\tc0.02,0.056,0.03,0.116,0.053,0.17c0.048,0.115,0.115,0.219,0.177,0.326c0.035,0.06,0.061,0.126,0.1,0.184\r\n\t\t\t\tc0.098,0.145,0.212,0.278,0.333,0.404c0.012,0.012,0.021,0.028,0.033,0.04c0.534,0.535,1.271,0.865,2.084,0.875\r\n\t\t\t\tC10.976,62.996,10.987,63,11,63c0.828,0,1.578-0.336,2.121-0.879L21.243,54H22v0h3v0h6.9v0H53v0c1.657,0,3-1.343,3-3v-2\r\n\t\t\t\tc-1.614,0-3.072-0.645-4.151-1.681L51.841,47.327z M61,2H19c-1.657,0-3,1.343-3,3v30c0,1.657,1.343,3,3,3h27.757l7.121,7.121\r\n\t\t\t\tC54.422,45.664,55.172,46,56,46c0.013,0,0.025-0.004,0.037-0.004c0.813-0.01,1.55-0.34,2.084-0.875\r\n\t\t\t\tc0.012-0.012,0.021-0.028,0.033-0.04c0.121-0.126,0.235-0.259,0.333-0.404c0.039-0.057,0.065-0.123,0.1-0.184\r\n\t\t\t\tc0.062-0.107,0.128-0.211,0.177-0.326c0.023-0.054,0.033-0.114,0.053-0.17c0.046-0.129,0.094-0.257,0.122-0.393\r\n\t\t\t\tC58.979,43.409,59,43.207,59,43v-5h2c1.657,0,3-1.343,3-3V5C64,3.343,62.657,2,61,2z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M51.841,47.327L45.515,41H19c-3.314,0-6-2.686-6-6V14H4c-1.657,0-3,1.343-3,3\r\n\t\t\t\tv34c0,1.656,1.341,2.998,2.996,3H7.5v0H8v6c0,0.207,0.021,0.409,0.061,0.605c0.028,0.136,0.076,0.264,0.122,0.393\r\n\t\t\t\tc0.02,0.056,0.03,0.116,0.053,0.17c0.048,0.115,0.115,0.219,0.177,0.326c0.035,0.06,0.061,0.126,0.1,0.184\r\n\t\t\t\tc0.098,0.145,0.212,0.278,0.333,0.404c0.012,0.012,0.021,0.028,0.033,0.04c0.534,0.535,1.271,0.865,2.084,0.875\r\n\t\t\t\tC10.976,62.996,10.987,63,11,63c0.828,0,1.578-0.336,2.121-0.879L21.243,54H22v0h3v0h6.9v0H53v0c1.657,0,3-1.343,3-3v-2\r\n\t\t\t\tc-1.614,0-3.072-0.645-4.151-1.681L51.841,47.327z M61,2H19c-1.657,0-3,1.343-3,3v30c0,1.657,1.343,3,3,3h27.757l7.121,7.121\r\n\t\t\t\tC54.422,45.664,55.172,46,56,46c0.013,0,0.025-0.004,0.037-0.004c0.813-0.01,1.55-0.34,2.084-0.875\r\n\t\t\t\tc0.012-0.012,0.021-0.028,0.033-0.04c0.121-0.126,0.235-0.259,0.333-0.404c0.039-0.057,0.065-0.123,0.1-0.184\r\n\t\t\t\tc0.062-0.107,0.128-0.211,0.177-0.326c0.023-0.054,0.033-0.114,0.053-0.17c0.046-0.129,0.094-0.257,0.122-0.393\r\n\t\t\t\tC58.979,43.409,59,43.207,59,43v-5h2c1.657,0,3-1.343,3-3V5C64,3.343,62.657,2,61,2z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SPEECH_3_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SPEECH_3","display":"inline"},"children":[{"name":"g","attribs":{"id":"SPEECH_3","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,3H3C1.343,3,0,4.343,0,6v43c0,1.657,1.343,2.999,2.999,3H7v6\r\n\t\t\t\tc0,0.207,0.021,0.409,0.061,0.604c0.028,0.136,0.076,0.264,0.122,0.393c0.02,0.056,0.03,0.116,0.053,0.17\r\n\t\t\t\tc0.049,0.115,0.115,0.219,0.177,0.326c0.035,0.06,0.061,0.126,0.1,0.184c0.098,0.145,0.212,0.278,0.333,0.404\r\n\t\t\t\tc0.012,0.012,0.021,0.028,0.033,0.04c0.535,0.534,1.271,0.865,2.084,0.875C9.976,60.997,9.987,61,10,61\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L20.243,52H61c1.657,0,3-1.343,3-3V6C64,4.343,62.657,3,61,3z M17,34c-3.314,0-6-2.686-6-6\r\n\t\t\t\tc0-3.314,2.686-6,6-6s6,2.686,6,6C23,31.314,20.314,34,17,34z M32,34c-3.314,0-6-2.686-6-6c0-3.314,2.686-6,6-6s6,2.686,6,6\r\n\t\t\t\tC38,31.314,35.314,34,32,34z M47,34c-3.314,0-6-2.686-6-6c0-3.314,2.686-6,6-6s6,2.686,6,6C53,31.314,50.314,34,47,34z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,3H3C1.343,3,0,4.343,0,6v43c0,1.657,1.343,2.999,2.999,3H7v6\r\n\t\t\t\tc0,0.207,0.021,0.409,0.061,0.604c0.028,0.136,0.076,0.264,0.122,0.393c0.02,0.056,0.03,0.116,0.053,0.17\r\n\t\t\t\tc0.049,0.115,0.115,0.219,0.177,0.326c0.035,0.06,0.061,0.126,0.1,0.184c0.098,0.145,0.212,0.278,0.333,0.404\r\n\t\t\t\tc0.012,0.012,0.021,0.028,0.033,0.04c0.535,0.534,1.271,0.865,2.084,0.875C9.976,60.997,9.987,61,10,61\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L20.243,52H61c1.657,0,3-1.343,3-3V6C64,4.343,62.657,3,61,3z M17,34c-3.314,0-6-2.686-6-6\r\n\t\t\t\tc0-3.314,2.686-6,6-6s6,2.686,6,6C23,31.314,20.314,34,17,34z M32,34c-3.314,0-6-2.686-6-6c0-3.314,2.686-6,6-6s6,2.686,6,6\r\n\t\t\t\tC38,31.314,35.314,34,32,34z M47,34c-3.314,0-6-2.686-6-6c0-3.314,2.686-6,6-6s6,2.686,6,6C53,31.314,50.314,34,47,34z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SPEECH_2_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SPEECH_2","display":"inline"},"children":[{"name":"g","attribs":{"id":"SPEECH_2","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,3H3C1.343,3,0,4.343,0,6v43c0,1.657,1.343,3,2.999,3H7v6\r\n\t\t\t\tc0,0.207,0.021,0.409,0.061,0.604c0.028,0.136,0.076,0.264,0.122,0.393c0.02,0.056,0.03,0.116,0.053,0.17\r\n\t\t\t\tc0.049,0.115,0.115,0.219,0.177,0.326c0.035,0.06,0.061,0.126,0.1,0.184c0.098,0.145,0.212,0.278,0.333,0.404\r\n\t\t\t\tc0.012,0.012,0.021,0.028,0.033,0.04c0.535,0.534,1.271,0.865,2.084,0.875C9.976,60.997,9.987,61,10,61\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L20.243,52H61c1.657,0,3-1.343,3-3V6C64,4.343,62.657,3,61,3z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,3H3C1.343,3,0,4.343,0,6v43c0,1.657,1.343,3,2.999,3H7v6\r\n\t\t\t\tc0,0.207,0.021,0.409,0.061,0.604c0.028,0.136,0.076,0.264,0.122,0.393c0.02,0.056,0.03,0.116,0.053,0.17\r\n\t\t\t\tc0.049,0.115,0.115,0.219,0.177,0.326c0.035,0.06,0.061,0.126,0.1,0.184c0.098,0.145,0.212,0.278,0.333,0.404\r\n\t\t\t\tc0.012,0.012,0.021,0.028,0.033,0.04c0.535,0.534,1.271,0.865,2.084,0.875C9.976,60.997,9.987,61,10,61\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L20.243,52H61c1.657,0,3-1.343,3-3V6C64,4.343,62.657,3,61,3z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SPEECH_1_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SPEECH_1","display":"inline"},"children":[{"name":"g","attribs":{"id":"SPEECH_1","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,3H3C1.343,3,0,4.343,0,6v43c0,1.657,1.343,3,3,3h4v6\r\n\t\t\t\tc0,0.207,0.021,0.409,0.061,0.604c0.028,0.136,0.076,0.264,0.122,0.393c0.02,0.056,0.03,0.116,0.053,0.17\r\n\t\t\t\tc0.048,0.115,0.115,0.219,0.177,0.326c0.035,0.06,0.061,0.126,0.1,0.184c0.098,0.145,0.212,0.278,0.333,0.404\r\n\t\t\t\tc0.012,0.012,0.021,0.028,0.033,0.04c0.534,0.534,1.271,0.865,2.084,0.875C9.976,60.997,9.987,61,10,61\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L20.243,52H61c1.657,0,3-1.343,3-3V6C64,4.343,62.657,3,61,3z M58,46H17.757L13,50.757V46H6V9\r\n\t\t\t\th52V46z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,3H3C1.343,3,0,4.343,0,6v43c0,1.657,1.343,3,3,3h4v6\r\n\t\t\t\tc0,0.207,0.021,0.409,0.061,0.604c0.028,0.136,0.076,0.264,0.122,0.393c0.02,0.056,0.03,0.116,0.053,0.17\r\n\t\t\t\tc0.048,0.115,0.115,0.219,0.177,0.326c0.035,0.06,0.061,0.126,0.1,0.184c0.098,0.145,0.212,0.278,0.333,0.404\r\n\t\t\t\tc0.012,0.012,0.021,0.028,0.033,0.04c0.534,0.534,1.271,0.865,2.084,0.875C9.976,60.997,9.987,61,10,61\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L20.243,52H61c1.657,0,3-1.343,3-3V6C64,4.343,62.657,3,61,3z M58,46H17.757L13,50.757V46H6V9\r\n\t\t\t\th52V46z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SPEECH_BUBBLES_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SPEECH_BUBBLES","display":"inline"},"children":[{"name":"g","attribs":{"id":"SPEECH_BUBBLES","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46.568,34.581c0,0.005,0,0.01,0,0.015c-1.301,0.2-2.629,0.53-3.984,0.477\r\n\t\t\t\tc-12.036-0.75-19.873-8.212-20.379-17.122c-0.068-2.09,0.307-4.107,1.045-5.986C9.787,14.332-0.04,23.094-0.04,33.571\r\n\t\t\t\tc0,6.961,4.177,13.176,11.123,17.257c1.573,0.924,1.752,7.862-7.097,12.05c0,0,12.529,1.976,20.473-8.067\r\n\t\t\t\tc1.964,0.282,3.996,0.883,6.075,0.883c14.557,0,24.238-7.163,26.777-16.896c-2.531-0.059-6.918-0.737-10.39-4.308L46.568,34.581z\r\n\t\t\t\t M56.72,27.814c4.55-2.673,7.286-6.744,7.286-11.304c0-8.052-8.85-14.579-20.028-14.579c-11.178,0-17.992,6.527-17.992,14.579\r\n\t\t\t\tc0,8.052,6.813,14.492,17.992,14.492c1.362,0,2.693-0.394,3.979-0.579c5.204,6.578,13.411,5.284,13.411,5.284\r\n\t\t\t\tC55.573,32.964,55.69,28.419,56.72,27.814z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46.568,34.581c0,0.005,0,0.01,0,0.015c-1.301,0.2-2.629,0.53-3.984,0.477\r\n\t\t\t\tc-12.036-0.75-19.873-8.212-20.379-17.122c-0.068-2.09,0.307-4.107,1.045-5.986C9.787,14.332-0.04,23.094-0.04,33.571\r\n\t\t\t\tc0,6.961,4.177,13.176,11.123,17.257c1.573,0.924,1.752,7.862-7.097,12.05c0,0,12.529,1.976,20.473-8.067\r\n\t\t\t\tc1.964,0.282,3.996,0.883,6.075,0.883c14.557,0,24.238-7.163,26.777-16.896c-2.531-0.059-6.918-0.737-10.39-4.308L46.568,34.581z\r\n\t\t\t\t M56.72,27.814c4.55-2.673,7.286-6.744,7.286-11.304c0-8.052-8.85-14.579-20.028-14.579c-11.178,0-17.992,6.527-17.992,14.579\r\n\t\t\t\tc0,8.052,6.813,14.492,17.992,14.492c1.362,0,2.693-0.394,3.979-0.579c5.204,6.578,13.411,5.284,13.411,5.284\r\n\t\t\t\tC55.573,32.964,55.69,28.419,56.72,27.814z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SPEECH_BUBBLE_2_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SPEECH_BUBBLE_2","display":"inline"},"children":[{"name":"g","attribs":{"id":"SPEECH_BUBBLE_2","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M33.697,3.963c-18.83,0-33.738,10.996-33.738,24.56\r\n\t\t\t\tc0,7.681,4.609,14.539,12.274,19.043c1.736,1.02,1.934,8.675-7.831,13.297c0,0,13.825,2.18,22.591-8.902\r\n\t\t\t\tc2.167,0.311,4.409,0.975,6.704,0.975c18.83,0,30.307-10.848,30.307-24.412C64.004,14.959,52.527,3.963,33.697,3.963z M17,35\r\n\t\t\t\tc-3.314,0-6-2.686-6-6c0-3.314,2.686-6,6-6s6,2.686,6,6C23,32.314,20.314,35,17,35z M32,35c-3.314,0-6-2.686-6-6\r\n\t\t\t\tc0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6C38,32.314,35.314,35,32,35z M47,35c-3.314,0-6-2.686-6-6c0-3.314,2.686-6,6-6\r\n\t\t\t\tc3.314,0,6,2.686,6,6C53,32.314,50.314,35,47,35z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M33.697,3.963c-18.83,0-33.738,10.996-33.738,24.56\r\n\t\t\t\tc0,7.681,4.609,14.539,12.274,19.043c1.736,1.02,1.934,8.675-7.831,13.297c0,0,13.825,2.18,22.591-8.902\r\n\t\t\t\tc2.167,0.311,4.409,0.975,6.704,0.975c18.83,0,30.307-10.848,30.307-24.412C64.004,14.959,52.527,3.963,33.697,3.963z M17,35\r\n\t\t\t\tc-3.314,0-6-2.686-6-6c0-3.314,2.686-6,6-6s6,2.686,6,6C23,32.314,20.314,35,17,35z M32,35c-3.314,0-6-2.686-6-6\r\n\t\t\t\tc0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6C38,32.314,35.314,35,32,35z M47,35c-3.314,0-6-2.686-6-6c0-3.314,2.686-6,6-6\r\n\t\t\t\tc3.314,0,6,2.686,6,6C53,32.314,50.314,35,47,35z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SPEECH_BUBBLE_1_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SPEECH_BUBBLE_1","display":"inline"},"children":[{"name":"g","attribs":{"id":"SPEECH_BUBBLE_1","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M33.697,3.963c-18.83,0-33.738,10.996-33.738,24.56\r\n\t\t\t\tc0,7.681,4.609,14.539,12.274,19.043c1.736,1.02,1.934,8.675-7.831,13.297c0,0,13.825,2.18,22.591-8.902\r\n\t\t\t\tc2.167,0.311,4.409,0.975,6.704,0.975c18.83,0,30.307-10.848,30.307-24.412C64.004,14.959,52.527,3.963,33.697,3.963z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M33.697,3.963c-18.83,0-33.738,10.996-33.738,24.56\r\n\t\t\t\tc0,7.681,4.609,14.539,12.274,19.043c1.736,1.02,1.934,8.675-7.831,13.297c0,0,13.825,2.18,22.591-8.902\r\n\t\t\t\tc2.167,0.311,4.409,0.975,6.704,0.975c18.83,0,30.307-10.848,30.307-24.412C64.004,14.959,52.527,3.963,33.697,3.963z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"WIFI_3_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"WIFI_3","display":"inline"},"children":[{"name":"g","attribs":{"id":"WIFI_3","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,49c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6c3.314,0,6-2.686,6-6\r\n\t\t\t\tC38,51.686,35.314,49,32,49z M32,34c-5.343,0-10.062,2.629-12.968,6.654l3.302,4.256C24.519,41.938,28.029,40,32,40\r\n\t\t\t\tc3.971,0,7.482,1.937,9.666,4.91l3.302-4.256C42.062,36.629,37.343,34,32,34z M32,4C19.747,4,8.622,8.8,0.378,16.61l3.696,4.764\r\n\t\t\t\tC11.283,14.34,21.132,10,32,10c10.868,0,20.717,4.34,27.926,11.374l3.696-4.764C55.378,8.8,44.253,4,32,4z M9.637,28.544\r\n\t\t\t\tl3.739,4.819C17.954,28.242,24.59,25,32,25c7.41,0,14.046,3.242,18.624,8.364l3.739-4.819C48.721,22.666,40.791,19,32,19\r\n\t\t\t\tC23.209,19,15.279,22.666,9.637,28.544z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,49c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6c3.314,0,6-2.686,6-6\r\n\t\t\t\tC38,51.686,35.314,49,32,49z M32,34c-5.343,0-10.062,2.629-12.968,6.654l3.302,4.256C24.519,41.938,28.029,40,32,40\r\n\t\t\t\tc3.971,0,7.482,1.937,9.666,4.91l3.302-4.256C42.062,36.629,37.343,34,32,34z M32,4C19.747,4,8.622,8.8,0.378,16.61l3.696,4.764\r\n\t\t\t\tC11.283,14.34,21.132,10,32,10c10.868,0,20.717,4.34,27.926,11.374l3.696-4.764C55.378,8.8,44.253,4,32,4z M9.637,28.544\r\n\t\t\t\tl3.739,4.819C17.954,28.242,24.59,25,32,25c7.41,0,14.046,3.242,18.624,8.364l3.739-4.819C48.721,22.666,40.791,19,32,19\r\n\t\t\t\tC23.209,19,15.279,22.666,9.637,28.544z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"WIFI_2_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"WIFI_2","display":"inline"},"children":[{"name":"g","attribs":{"id":"WIFI_2","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,41c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6s6-2.686,6-6\r\n\t\t\t\tC38,43.686,35.314,41,32,41z M32,26c-5.343,0-10.062,2.629-12.968,6.654l3.302,4.256C24.519,33.938,28.029,32,32,32\r\n\t\t\t\tc3.971,0,7.482,1.937,9.666,4.91l3.302-4.256C42.062,28.629,37.343,26,32,26z M32,11c-8.791,0-16.721,3.665-22.363,9.544\r\n\t\t\t\tl3.739,4.819C17.954,20.242,24.59,17,32,17c7.41,0,14.046,3.242,18.624,8.364l3.739-4.819C48.721,14.666,40.791,11,32,11z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,41c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6s6-2.686,6-6\r\n\t\t\t\tC38,43.686,35.314,41,32,41z M32,26c-5.343,0-10.062,2.629-12.968,6.654l3.302,4.256C24.519,33.938,28.029,32,32,32\r\n\t\t\t\tc3.971,0,7.482,1.937,9.666,4.91l3.302-4.256C42.062,28.629,37.343,26,32,26z M32,11c-8.791,0-16.721,3.665-22.363,9.544\r\n\t\t\t\tl3.739,4.819C17.954,20.242,24.59,17,32,17c7.41,0,14.046,3.242,18.624,8.364l3.739-4.819C48.721,14.666,40.791,11,32,11z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"WIFI_1_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"WIFI_1","display":"inline"},"children":[{"name":"g","attribs":{"id":"WIFI_1","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,34c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6s6-2.686,6-6\r\n\t\t\t\tC38,36.686,35.314,34,32,34z M32,19c-5.343,0-10.062,2.629-12.968,6.654l3.302,4.256C24.519,26.938,28.029,25,32,25\r\n\t\t\t\ts7.482,1.937,9.666,4.91l3.302-4.256C42.062,21.629,37.343,19,32,19z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,34c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6s6-2.686,6-6\r\n\t\t\t\tC38,36.686,35.314,34,32,34z M32,19c-5.343,0-10.062,2.629-12.968,6.654l3.302,4.256C24.519,26.938,28.029,25,32,25\r\n\t\t\t\ts7.482,1.937,9.666,4.91l3.302-4.256C42.062,21.629,37.343,19,32,19z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"VIEW__x2F__OFF_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"VIEW__x2F__OFF","display":"inline"},"children":[{"name":"g","attribs":{"id":"VIEW__x2F__OFF","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26.044,31.304l7.604-5.069C33.124,26.085,32.572,26,32,26\r\n\t\t\t\tC28.922,26,26.389,28.319,26.044,31.304z M58.32,16.755C58.729,16.487,59,16.025,59,15.5c0-0.828-0.672-1.5-1.5-1.5\r\n\t\t\t\tc-0.303,0-0.585,0.091-0.82,0.245l0-0.001l-0.018,0.012L4.679,48.245l0,0C4.271,48.513,4,48.975,4,49.5C4,50.328,4.672,51,5.5,51\r\n\t\t\t\tc0.303,0,0.585-0.091,0.82-0.245l0,0.001l0.018-0.012L58.32,16.755L58.32,16.755z M9.455,42.364L10,42l10.409-6.939\r\n\t\t\t\tC20.151,34.082,20,33.06,20,32c0-6.628,5.373-12,12-12c2.742,0,5.262,0.93,7.283,2.478L46,18l0.552-0.345\r\n\t\t\t\tc-2.648-1.317-5.415-2.367-8.308-2.996c-3.881-0.844-7.786-0.879-11.687-0.165c-3.549,0.649-6.969,2-10.17,3.674\r\n\t\t\t\tc-5.011,2.62-9.586,6.231-13.574,10.28c-0.738,0.749-1.472,1.514-2.143,2.328c-0.893,1.083-0.893,2.366,0,3.45\r\n\t\t\t\tc2.042,2.476,4.47,4.679,6.94,6.692C8.214,41.41,8.831,41.891,9.455,42.364z M63.997,32.379\r\n\t\t\t\tc-0.001-0.028-0.004-0.054-0.006-0.081c-0.001-0.014-0.003-0.028-0.004-0.041c-0.001-0.02-0.005-0.039-0.008-0.058\r\n\t\t\t\tc-0.002-0.023-0.005-0.046-0.009-0.068c-0.001-0.003-0.001-0.006-0.001-0.009c-0.079-0.506-0.312-0.981-0.669-1.346\r\n\t\t\t\tc-2.042-2.476-4.471-4.68-6.94-6.692c-0.677-0.552-1.367-1.092-2.069-1.618l-10.576,6.958C43.898,30.255,44,31.115,44,32\r\n\t\t\t\tc0,6.627-5.373,12-12,12c-2.615,0-5.026-0.845-6.997-2.265L17,47l-0.09,0.09c2.8,1.44,5.739,2.581,8.818,3.25\r\n\t\t\t\tc3.881,0.844,7.787,0.88,11.688,0.166c3.548-0.65,6.968-2,10.171-3.673c5.01-2.621,9.586-6.232,13.574-10.28\r\n\t\t\t\tc0.738-0.75,1.471-1.514,2.143-2.329c0.357-0.366,0.59-0.84,0.669-1.347c0-0.003,0.001-0.006,0.001-0.008\r\n\t\t\t\tc0.004-0.023,0.006-0.045,0.009-0.068c0.003-0.019,0.006-0.039,0.008-0.058c0.001-0.014,0.003-0.027,0.004-0.041\r\n\t\t\t\tc0.002-0.026,0.004-0.052,0.006-0.08c0.002-0.041,0.003-0.081,0.003-0.122C64.001,32.459,63.998,32.419,63.997,32.379z\r\n\t\t\t\t M37.861,33.276l-7.01,4.612C31.223,37.96,31.607,38,32,38C34.876,38,37.276,35.976,37.861,33.276z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26.044,31.304l7.604-5.069C33.124,26.085,32.572,26,32,26\r\n\t\t\t\tC28.922,26,26.389,28.319,26.044,31.304z M58.32,16.755C58.729,16.487,59,16.025,59,15.5c0-0.828-0.672-1.5-1.5-1.5\r\n\t\t\t\tc-0.303,0-0.585,0.091-0.82,0.245l0-0.001l-0.018,0.012L4.679,48.245l0,0C4.271,48.513,4,48.975,4,49.5C4,50.328,4.672,51,5.5,51\r\n\t\t\t\tc0.303,0,0.585-0.091,0.82-0.245l0,0.001l0.018-0.012L58.32,16.755L58.32,16.755z M9.455,42.364L10,42l10.409-6.939\r\n\t\t\t\tC20.151,34.082,20,33.06,20,32c0-6.628,5.373-12,12-12c2.742,0,5.262,0.93,7.283,2.478L46,18l0.552-0.345\r\n\t\t\t\tc-2.648-1.317-5.415-2.367-8.308-2.996c-3.881-0.844-7.786-0.879-11.687-0.165c-3.549,0.649-6.969,2-10.17,3.674\r\n\t\t\t\tc-5.011,2.62-9.586,6.231-13.574,10.28c-0.738,0.749-1.472,1.514-2.143,2.328c-0.893,1.083-0.893,2.366,0,3.45\r\n\t\t\t\tc2.042,2.476,4.47,4.679,6.94,6.692C8.214,41.41,8.831,41.891,9.455,42.364z M63.997,32.379\r\n\t\t\t\tc-0.001-0.028-0.004-0.054-0.006-0.081c-0.001-0.014-0.003-0.028-0.004-0.041c-0.001-0.02-0.005-0.039-0.008-0.058\r\n\t\t\t\tc-0.002-0.023-0.005-0.046-0.009-0.068c-0.001-0.003-0.001-0.006-0.001-0.009c-0.079-0.506-0.312-0.981-0.669-1.346\r\n\t\t\t\tc-2.042-2.476-4.471-4.68-6.94-6.692c-0.677-0.552-1.367-1.092-2.069-1.618l-10.576,6.958C43.898,30.255,44,31.115,44,32\r\n\t\t\t\tc0,6.627-5.373,12-12,12c-2.615,0-5.026-0.845-6.997-2.265L17,47l-0.09,0.09c2.8,1.44,5.739,2.581,8.818,3.25\r\n\t\t\t\tc3.881,0.844,7.787,0.88,11.688,0.166c3.548-0.65,6.968-2,10.171-3.673c5.01-2.621,9.586-6.232,13.574-10.28\r\n\t\t\t\tc0.738-0.75,1.471-1.514,2.143-2.329c0.357-0.366,0.59-0.84,0.669-1.347c0-0.003,0.001-0.006,0.001-0.008\r\n\t\t\t\tc0.004-0.023,0.006-0.045,0.009-0.068c0.003-0.019,0.006-0.039,0.008-0.058c0.001-0.014,0.003-0.027,0.004-0.041\r\n\t\t\t\tc0.002-0.026,0.004-0.052,0.006-0.08c0.002-0.041,0.003-0.081,0.003-0.122C64.001,32.459,63.998,32.419,63.997,32.379z\r\n\t\t\t\t M37.861,33.276l-7.01,4.612C31.223,37.96,31.607,38,32,38C34.876,38,37.276,35.976,37.861,33.276z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"VIEW_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"VIEW","display":"inline"},"children":[{"name":"g","attribs":{"id":"VIEW","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,26c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6s6-2.686,6-6\r\n\t\t\t\tC38,28.686,35.314,26,32,26z M63.997,32.379c-0.001-0.028-0.004-0.054-0.006-0.081c-0.001-0.014-0.002-0.028-0.004-0.041\r\n\t\t\t\tc-0.001-0.02-0.005-0.039-0.008-0.058c-0.003-0.023-0.005-0.046-0.009-0.068c-0.001-0.003-0.001-0.006-0.001-0.009\r\n\t\t\t\tc-0.079-0.506-0.312-0.981-0.669-1.346c-2.042-2.476-4.471-4.68-6.94-6.692c-5.319-4.337-11.403-7.964-18.117-9.425\r\n\t\t\t\tc-3.881-0.844-7.786-0.879-11.688-0.165c-3.549,0.649-6.969,2-10.17,3.674c-5.011,2.62-9.587,6.231-13.574,10.28\r\n\t\t\t\tc-0.738,0.749-1.472,1.514-2.143,2.328c-0.893,1.083-0.893,2.366,0,3.45c2.042,2.476,4.47,4.679,6.94,6.692\r\n\t\t\t\tc5.32,4.337,11.403,7.963,18.118,9.424c3.881,0.844,7.787,0.88,11.688,0.166c3.548-0.65,6.968-2,10.171-3.673\r\n\t\t\t\tc5.01-2.621,9.586-6.232,13.574-10.28c0.738-0.75,1.471-1.514,2.143-2.329c0.357-0.366,0.59-0.84,0.669-1.347\r\n\t\t\t\tc0-0.003,0.001-0.006,0.001-0.008c0.004-0.023,0.006-0.045,0.009-0.068c0.003-0.019,0.006-0.039,0.008-0.058\r\n\t\t\t\tc0.001-0.014,0.002-0.027,0.004-0.041c0.002-0.026,0.004-0.052,0.006-0.08c0.002-0.041,0.003-0.081,0.003-0.122\r\n\t\t\t\tC64.001,32.459,63.998,32.419,63.997,32.379z M32,44c-6.627,0-12-5.372-12-12c0-6.628,5.372-12,12-12s12,5.373,12,12\r\n\t\t\t\tC44,38.628,38.627,44,32,44z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,26c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6s6-2.686,6-6\r\n\t\t\t\tC38,28.686,35.314,26,32,26z M63.997,32.379c-0.001-0.028-0.004-0.054-0.006-0.081c-0.001-0.014-0.002-0.028-0.004-0.041\r\n\t\t\t\tc-0.001-0.02-0.005-0.039-0.008-0.058c-0.003-0.023-0.005-0.046-0.009-0.068c-0.001-0.003-0.001-0.006-0.001-0.009\r\n\t\t\t\tc-0.079-0.506-0.312-0.981-0.669-1.346c-2.042-2.476-4.471-4.68-6.94-6.692c-5.319-4.337-11.403-7.964-18.117-9.425\r\n\t\t\t\tc-3.881-0.844-7.786-0.879-11.688-0.165c-3.549,0.649-6.969,2-10.17,3.674c-5.011,2.62-9.587,6.231-13.574,10.28\r\n\t\t\t\tc-0.738,0.749-1.472,1.514-2.143,2.328c-0.893,1.083-0.893,2.366,0,3.45c2.042,2.476,4.47,4.679,6.94,6.692\r\n\t\t\t\tc5.32,4.337,11.403,7.963,18.118,9.424c3.881,0.844,7.787,0.88,11.688,0.166c3.548-0.65,6.968-2,10.171-3.673\r\n\t\t\t\tc5.01-2.621,9.586-6.232,13.574-10.28c0.738-0.75,1.471-1.514,2.143-2.329c0.357-0.366,0.59-0.84,0.669-1.347\r\n\t\t\t\tc0-0.003,0.001-0.006,0.001-0.008c0.004-0.023,0.006-0.045,0.009-0.068c0.003-0.019,0.006-0.039,0.008-0.058\r\n\t\t\t\tc0.001-0.014,0.002-0.027,0.004-0.041c0.002-0.026,0.004-0.052,0.006-0.08c0.002-0.041,0.003-0.081,0.003-0.122\r\n\t\t\t\tC64.001,32.459,63.998,32.419,63.997,32.379z M32,44c-6.627,0-12-5.372-12-12c0-6.628,5.372-12,12-12s12,5.373,12,12\r\n\t\t\t\tC44,38.628,38.627,44,32,44z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"VOLUME_3_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"VOLUME_3","display":"inline"},"children":[{"name":"g","attribs":{"id":"VOLUME_3","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M25,15c-0.721,0-1.374,0.265-1.891,0.689L23.1,15.678l-10.162,8.315H2.992\r\n\t\t\t\tv0.008C1.339,24.006,0,25.346,0,27v10c0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007C23.736,47.781,24.34,48,25,48\r\n\t\t\t\tc1.657,0,3-1.343,3-3V18C28,16.343,26.657,15,25,15z M36.903,17.926l-2.847,2.847C36.519,23.852,38,27.75,38,32\r\n\t\t\t\tc0,4.25-1.481,8.148-3.944,11.227l2.847,2.847C40.083,42.26,42,37.355,42,32C42,26.645,40.083,21.74,36.903,17.926z\r\n\t\t\t\t M44.701,10.128l-2.848,2.848C46.292,18.07,49,24.712,49,32c0,7.288-2.708,13.93-7.147,19.024l2.848,2.848\r\n\t\t\t\tC49.861,48.049,53,40.393,53,32C53,23.607,49.861,15.951,44.701,10.128z M52.493,2.336l-2.831,2.831\r\n\t\t\t\tC56.086,12.263,60,21.674,60,32c0,10.326-3.914,19.737-10.338,26.833l2.831,2.831C59.639,53.842,64,43.431,64,32\r\n\t\t\t\tC64,20.569,59.639,10.159,52.493,2.336z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M25,15c-0.721,0-1.374,0.265-1.891,0.689L23.1,15.678l-10.162,8.315H2.992\r\n\t\t\t\tv0.008C1.339,24.006,0,25.346,0,27v10c0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007C23.736,47.781,24.34,48,25,48\r\n\t\t\t\tc1.657,0,3-1.343,3-3V18C28,16.343,26.657,15,25,15z M36.903,17.926l-2.847,2.847C36.519,23.852,38,27.75,38,32\r\n\t\t\t\tc0,4.25-1.481,8.148-3.944,11.227l2.847,2.847C40.083,42.26,42,37.355,42,32C42,26.645,40.083,21.74,36.903,17.926z\r\n\t\t\t\t M44.701,10.128l-2.848,2.848C46.292,18.07,49,24.712,49,32c0,7.288-2.708,13.93-7.147,19.024l2.848,2.848\r\n\t\t\t\tC49.861,48.049,53,40.393,53,32C53,23.607,49.861,15.951,44.701,10.128z M52.493,2.336l-2.831,2.831\r\n\t\t\t\tC56.086,12.263,60,21.674,60,32c0,10.326-3.914,19.737-10.338,26.833l2.831,2.831C59.639,53.842,64,43.431,64,32\r\n\t\t\t\tC64,20.569,59.639,10.159,52.493,2.336z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"VOLUME_2_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"VOLUME_2","display":"inline"},"children":[{"name":"g","attribs":{"id":"VOLUME_2","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M50.701,10.128l-2.848,2.848C52.292,18.07,55,24.712,55,32\r\n\t\t\t\tc0,7.288-2.708,13.93-7.147,19.024l2.848,2.848C55.861,48.049,59,40.393,59,32C59,23.607,55.861,15.951,50.701,10.128z M31,15\r\n\t\t\t\tc-0.721,0-1.374,0.265-1.891,0.689L29.1,15.678l-10.162,8.315H8.992v0.008C7.339,24.006,6,25.346,6,27v10c0,1.657,1.343,3,3,3\r\n\t\t\t\th10.024l10.211,7.426l0.005-0.007C29.736,47.781,30.34,48,31,48c1.657,0,3-1.343,3-3V18C34,16.343,32.657,15,31,15z\r\n\t\t\t\t M42.903,17.926l-2.847,2.847C42.519,23.852,44,27.75,44,32c0,4.25-1.481,8.148-3.944,11.227l2.847,2.847\r\n\t\t\t\tC46.083,42.26,48,37.355,48,32C48,26.645,46.083,21.74,42.903,17.926z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M50.701,10.128l-2.848,2.848C52.292,18.07,55,24.712,55,32\r\n\t\t\t\tc0,7.288-2.708,13.93-7.147,19.024l2.848,2.848C55.861,48.049,59,40.393,59,32C59,23.607,55.861,15.951,50.701,10.128z M31,15\r\n\t\t\t\tc-0.721,0-1.374,0.265-1.891,0.689L29.1,15.678l-10.162,8.315H8.992v0.008C7.339,24.006,6,25.346,6,27v10c0,1.657,1.343,3,3,3\r\n\t\t\t\th10.024l10.211,7.426l0.005-0.007C29.736,47.781,30.34,48,31,48c1.657,0,3-1.343,3-3V18C34,16.343,32.657,15,31,15z\r\n\t\t\t\t M42.903,17.926l-2.847,2.847C42.519,23.852,44,27.75,44,32c0,4.25-1.481,8.148-3.944,11.227l2.847,2.847\r\n\t\t\t\tC46.083,42.26,48,37.355,48,32C48,26.645,46.083,21.74,42.903,17.926z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"VOLUME_1_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"VOLUME_1","display":"inline"},"children":[{"name":"g","attribs":{"id":"VOLUME_1","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M36,16c-0.721,0-1.374,0.265-1.891,0.689L34.1,16.678l-10.162,8.315h-9.946\r\n\t\t\t\tv0.008C12.339,25.006,11,26.346,11,28v10c0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007C34.736,48.781,35.34,49,36,49\r\n\t\t\t\tc1.657,0,3-1.343,3-3V19C39,17.343,37.657,16,36,16z M47.903,18.926l-2.847,2.847C47.519,24.852,49,28.75,49,33\r\n\t\t\t\tc0,4.25-1.481,8.148-3.944,11.227l2.847,2.847C51.083,43.26,53,38.355,53,33C53,27.645,51.083,22.74,47.903,18.926z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M36,16c-0.721,0-1.374,0.265-1.891,0.689L34.1,16.678l-10.162,8.315h-9.946\r\n\t\t\t\tv0.008C12.339,25.006,11,26.346,11,28v10c0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007C34.736,48.781,35.34,49,36,49\r\n\t\t\t\tc1.657,0,3-1.343,3-3V19C39,17.343,37.657,16,36,16z M47.903,18.926l-2.847,2.847C47.519,24.852,49,28.75,49,33\r\n\t\t\t\tc0,4.25-1.481,8.148-3.944,11.227l2.847,2.847C51.083,43.26,53,38.355,53,33C53,27.645,51.083,22.74,47.903,18.926z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"VOLUME__x2F__MUTE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"VOLUME__x2F__MUTE","display":"inline"},"children":[{"name":"g","attribs":{"id":"VOLUME__x2F__MUTE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31,16c-0.721,0-1.374,0.265-1.891,0.689L29.1,16.678l-10.162,8.315H8.992\r\n\t\t\t\tv0.008C7.339,25.006,6,26.346,6,28v10c0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007C29.736,48.781,30.34,49,31,49\r\n\t\t\t\tc1.657,0,3-1.343,3-3V19C34,17.343,32.657,16,31,16z M53.243,33l3.879-3.879C57.664,28.579,58,27.829,58,27c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L49,28.758l-3.879-3.879C44.578,24.336,43.828,24,43,24c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L44.757,33l-3.879,3.879C40.336,37.422,40,38.172,40,39c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L49,37.243l3.879,3.879C53.422,41.664,54.172,42,55,42c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L53.243,33z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31,16c-0.721,0-1.374,0.265-1.891,0.689L29.1,16.678l-10.162,8.315H8.992\r\n\t\t\t\tv0.008C7.339,25.006,6,26.346,6,28v10c0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007C29.736,48.781,30.34,49,31,49\r\n\t\t\t\tc1.657,0,3-1.343,3-3V19C34,17.343,32.657,16,31,16z M53.243,33l3.879-3.879C57.664,28.579,58,27.829,58,27c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L49,28.758l-3.879-3.879C44.578,24.336,43.828,24,43,24c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L44.757,33l-3.879,3.879C40.336,37.422,40,38.172,40,39c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L49,37.243l3.879,3.879C53.422,41.664,54.172,42,55,42c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L53.243,33z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"VOLUME__x2F__DOWN_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"VOLUME__x2F__DOWN","display":"inline"},"children":[{"name":"g","attribs":{"id":"VOLUME__x2F__DOWN","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M55,30H43c-1.657,0-3,1.343-3,3s1.343,3,3,3h12c1.657,0,3-1.343,3-3\r\n\t\t\t\tS56.657,30,55,30z M31,16c-0.721,0-1.374,0.265-1.891,0.689L29.1,16.678l-10.162,8.315H8.992v0.008C7.339,25.006,6,26.346,6,28\r\n\t\t\t\tv10c0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007C29.736,48.781,30.34,49,31,49c1.657,0,3-1.343,3-3V19\r\n\t\t\t\tC34,17.343,32.657,16,31,16z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M55,30H43c-1.657,0-3,1.343-3,3s1.343,3,3,3h12c1.657,0,3-1.343,3-3\r\n\t\t\t\tS56.657,30,55,30z M31,16c-0.721,0-1.374,0.265-1.891,0.689L29.1,16.678l-10.162,8.315H8.992v0.008C7.339,25.006,6,26.346,6,28\r\n\t\t\t\tv10c0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007C29.736,48.781,30.34,49,31,49c1.657,0,3-1.343,3-3V19\r\n\t\t\t\tC34,17.343,32.657,16,31,16z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"VOLUME__x2F__UP_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"VOLUME__x2F__UP","display":"inline"},"children":[{"name":"g","attribs":{"id":"VOLUME__x2F__UP","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31,16c-0.721,0-1.374,0.265-1.891,0.689L29.1,16.678l-10.162,8.315H8.992\r\n\t\t\t\tv0.008C7.339,25.006,6,26.346,6,28v10c0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007C29.736,48.781,30.34,49,31,49\r\n\t\t\t\tc1.657,0,3-1.343,3-3V19C34,17.343,32.657,16,31,16z M55,30h-3v-3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h3v3c0,1.657,1.343,3,3,3s3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3S56.657,30,55,30z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31,16c-0.721,0-1.374,0.265-1.891,0.689L29.1,16.678l-10.162,8.315H8.992\r\n\t\t\t\tv0.008C7.339,25.006,6,26.346,6,28v10c0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007C29.736,48.781,30.34,49,31,49\r\n\t\t\t\tc1.657,0,3-1.343,3-3V19C34,17.343,32.657,16,31,16z M55,30h-3v-3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h3v3c0,1.657,1.343,3,3,3s3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3S56.657,30,55,30z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"VOLUME__x2F__OFF_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"VOLUME__x2F__OFF","display":"inline"},"children":[{"name":"g","attribs":{"id":"VOLUME__x2F__OFF","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M42,16c-0.721,0-1.374,0.265-1.891,0.689L40.1,16.678l-10.162,8.315h-9.946\r\n\t\t\t\tv0.008C18.339,25.006,17,26.346,17,28v9.627l27.972-18.9C44.832,17.2,43.563,16,42,16z M30.024,41l10.211,7.426l0.005-0.007\r\n\t\t\t\tC40.736,48.781,41.34,49,42,49c1.657,0,3-1.343,3-3V29.57L28.083,41H30.024z M51,18.6c-0.312,0-0.601,0.095-0.841,0.258\r\n\t\t\t\tL13.064,43.955c-0.4,0.269-0.664,0.727-0.664,1.245c0,0.828,0.672,1.5,1.5,1.5c0.312,0,0.601-0.095,0.841-0.258l37.095-25.097\r\n\t\t\t\tc0.4-0.269,0.664-0.727,0.664-1.245C52.5,19.272,51.828,18.6,51,18.6z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M42,16c-0.721,0-1.374,0.265-1.891,0.689L40.1,16.678l-10.162,8.315h-9.946\r\n\t\t\t\tv0.008C18.339,25.006,17,26.346,17,28v9.627l27.972-18.9C44.832,17.2,43.563,16,42,16z M30.024,41l10.211,7.426l0.005-0.007\r\n\t\t\t\tC40.736,48.781,41.34,49,42,49c1.657,0,3-1.343,3-3V29.57L28.083,41H30.024z M51,18.6c-0.312,0-0.601,0.095-0.841,0.258\r\n\t\t\t\tL13.064,43.955c-0.4,0.269-0.664,0.727-0.664,1.245c0,0.828,0.672,1.5,1.5,1.5c0.312,0,0.601-0.095,0.841-0.258l37.095-25.097\r\n\t\t\t\tc0.4-0.269,0.664-0.727,0.664-1.245C52.5,19.272,51.828,18.6,51,18.6z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"PRINTER_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PRINTER","display":"inline"},"children":[{"name":"g","attribs":{"id":"PRINTER","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,15H3c-1.657,0-3,1.343-3,3v28c0,1.657,1.343,3,3,3h10V34h38v15h10\r\n\t\t\t\tc1.657,0,3-1.343,3-3V18C64,16.343,62.657,15,61,15z M9,27c-1.657,0-3-1.343-3-3c0-1.657,1.343-3,3-3s3,1.343,3,3\r\n\t\t\t\tC12,25.657,10.657,27,9,27z M48,2.969h-0.003c0-0.001,0-0.002,0-0.003c-0.007-0.615-0.197-1.184-0.52-1.657\r\n\t\t\t\tc-0.005-0.007-0.012-0.013-0.017-0.02c-0.104-0.15-0.22-0.291-0.35-0.419c0,0,0,0,0,0c-0.002-0.002-0.005-0.004-0.008-0.006\r\n\t\t\t\tc-0.167-0.165-0.359-0.302-0.561-0.425c-0.002-0.001-0.005-0.002-0.007-0.004c0,0-0.001,0-0.001-0.001\r\n\t\t\t\tc-0.285-0.171-0.594-0.305-0.93-0.373c0,0,0,0,0,0c-0.138-0.028-0.282-0.034-0.426-0.043C45.117,0.014,45.06,0,45,0H19\r\n\t\t\t\tc-1.243,0-2.309,0.756-2.764,1.832C16.084,2.191,16,2.586,16,3v9h32V2.969z M16,61c0,1.657,1.343,3,3,3h26c1.657,0,3-1.343,3-3\r\n\t\t\t\tV37H16V61z M22,43h20v3H22V43z M22,49h20v3H22V49z M22,55h20v3H22V55z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,15H3c-1.657,0-3,1.343-3,3v28c0,1.657,1.343,3,3,3h10V34h38v15h10\r\n\t\t\t\tc1.657,0,3-1.343,3-3V18C64,16.343,62.657,15,61,15z M9,27c-1.657,0-3-1.343-3-3c0-1.657,1.343-3,3-3s3,1.343,3,3\r\n\t\t\t\tC12,25.657,10.657,27,9,27z M48,2.969h-0.003c0-0.001,0-0.002,0-0.003c-0.007-0.615-0.197-1.184-0.52-1.657\r\n\t\t\t\tc-0.005-0.007-0.012-0.013-0.017-0.02c-0.104-0.15-0.22-0.291-0.35-0.419c0,0,0,0,0,0c-0.002-0.002-0.005-0.004-0.008-0.006\r\n\t\t\t\tc-0.167-0.165-0.359-0.302-0.561-0.425c-0.002-0.001-0.005-0.002-0.007-0.004c0,0-0.001,0-0.001-0.001\r\n\t\t\t\tc-0.285-0.171-0.594-0.305-0.93-0.373c0,0,0,0,0,0c-0.138-0.028-0.282-0.034-0.426-0.043C45.117,0.014,45.06,0,45,0H19\r\n\t\t\t\tc-1.243,0-2.309,0.756-2.764,1.832C16.084,2.191,16,2.586,16,3v9h32V2.969z M16,61c0,1.657,1.343,3,3,3h26c1.657,0,3-1.343,3-3\r\n\t\t\t\tV37H16V61z M22,43h20v3H22V43z M22,49h20v3H22V49z M22,55h20v3H22V55z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MAIL__x2F__OUTGOING_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MAIL__x2F__OUTGOING","display":"inline"},"children":[{"name":"g","attribs":{"id":"MAIL__x2F__OUTGOING","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M0.894,17.866C0.343,18.41,0,19.165,0,20v38c0,0.789,0.311,1.501,0.809,2.037\r\n\t\t\t\tl19.569-23.296L0.894,17.866z M25,16c0.828,0,1.578-0.336,2.121-0.879L29,13.243V27c0,1.657,1.343,3,3,3s3-1.343,3-3V13.243\r\n\t\t\t\tl1.879,1.879C37.422,15.664,38.172,16,39,16c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121l-7-7\r\n\t\t\t\tC33.578,3.336,32.828,3,32,3c-0.828,0-1.578,0.336-2.121,0.879l-7,7C22.336,11.422,22,12.172,22,13C22,14.657,23.343,16,25,16z\r\n\t\t\t\t M63.002,17.78C62.47,17.3,61.773,17,61,17H43.443c-1.098,1.219-2.673,2-4.443,2c-0.344,0-0.673-0.053-1-0.11V27\r\n\t\t\t\tc0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6v-8.11C25.673,18.947,25.344,19,25,19c-1.77,0-3.345-0.781-4.443-2H3\r\n\t\t\t\tc-0.773,0-1.47,0.3-2.002,0.78L32,42L63.002,17.78z M63.106,17.866L43.622,36.741l19.569,23.296C63.689,59.502,64,58.789,64,58\r\n\t\t\t\tV20C64,19.165,63.657,18.41,63.106,17.866z M32,48l-8.136-7.881L0.943,60.175C1.481,60.683,2.202,61,3,61h58\r\n\t\t\t\tc0.798,0,1.519-0.317,2.057-0.825L40.136,40.119L32,48z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M0.894,17.866C0.343,18.41,0,19.165,0,20v38c0,0.789,0.311,1.501,0.809,2.037\r\n\t\t\t\tl19.569-23.296L0.894,17.866z M25,16c0.828,0,1.578-0.336,2.121-0.879L29,13.243V27c0,1.657,1.343,3,3,3s3-1.343,3-3V13.243\r\n\t\t\t\tl1.879,1.879C37.422,15.664,38.172,16,39,16c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121l-7-7\r\n\t\t\t\tC33.578,3.336,32.828,3,32,3c-0.828,0-1.578,0.336-2.121,0.879l-7,7C22.336,11.422,22,12.172,22,13C22,14.657,23.343,16,25,16z\r\n\t\t\t\t M63.002,17.78C62.47,17.3,61.773,17,61,17H43.443c-1.098,1.219-2.673,2-4.443,2c-0.344,0-0.673-0.053-1-0.11V27\r\n\t\t\t\tc0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6v-8.11C25.673,18.947,25.344,19,25,19c-1.77,0-3.345-0.781-4.443-2H3\r\n\t\t\t\tc-0.773,0-1.47,0.3-2.002,0.78L32,42L63.002,17.78z M63.106,17.866L43.622,36.741l19.569,23.296C63.689,59.502,64,58.789,64,58\r\n\t\t\t\tV20C64,19.165,63.657,18.41,63.106,17.866z M32,48l-8.136-7.881L0.943,60.175C1.481,60.683,2.202,61,3,61h58\r\n\t\t\t\tc0.798,0,1.519-0.317,2.057-0.825L40.136,40.119L32,48z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MAIL__x2F__INCOMING_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MAIL__x2F__INCOMING","display":"inline"},"children":[{"name":"g","attribs":{"id":"MAIL__x2F__INCOMING","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M29.879,29.122C30.422,29.664,31.172,30,32,30c0.829,0,1.578-0.336,2.121-0.879\r\n\t\t\t\tl7-7C41.664,21.579,42,20.829,42,20c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L35,19.757V6c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v13.757l-1.879-1.879C26.578,17.336,25.828,17,25,17c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121\r\n\t\t\t\tL29.879,29.122z M63.002,17.78C62.47,17.3,61.773,17,61,17H44.168C44.683,17.886,45,18.902,45,20\r\n\t\t\t\tc0,1.657-0.672,3.157-1.757,4.243l-7,7C35.157,32.328,33.657,33,32,33c-1.657,0-3.157-0.672-4.243-1.757l-7-7\r\n\t\t\t\tC19.672,23.157,19,21.657,19,20c0-1.098,0.317-2.114,0.832-3H3c-0.773,0-1.47,0.3-2.002,0.78L32,42L63.002,17.78z M63.106,17.866\r\n\t\t\t\tL43.622,36.741l19.569,23.296C63.689,59.502,64,58.789,64,58V20C64,19.165,63.657,18.41,63.106,17.866z M0.894,17.866\r\n\t\t\t\tC0.343,18.41,0,19.165,0,20v38c0,0.789,0.311,1.501,0.809,2.037l19.569-23.296L0.894,17.866z M32,48l-8.136-7.881L0.943,60.175\r\n\t\t\t\tC1.481,60.683,2.202,61,3,61h58c0.798,0,1.519-0.317,2.057-0.825L40.136,40.119L32,48z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M29.879,29.122C30.422,29.664,31.172,30,32,30c0.829,0,1.578-0.336,2.121-0.879\r\n\t\t\t\tl7-7C41.664,21.579,42,20.829,42,20c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L35,19.757V6c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v13.757l-1.879-1.879C26.578,17.336,25.828,17,25,17c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121\r\n\t\t\t\tL29.879,29.122z M63.002,17.78C62.47,17.3,61.773,17,61,17H44.168C44.683,17.886,45,18.902,45,20\r\n\t\t\t\tc0,1.657-0.672,3.157-1.757,4.243l-7,7C35.157,32.328,33.657,33,32,33c-1.657,0-3.157-0.672-4.243-1.757l-7-7\r\n\t\t\t\tC19.672,23.157,19,21.657,19,20c0-1.098,0.317-2.114,0.832-3H3c-0.773,0-1.47,0.3-2.002,0.78L32,42L63.002,17.78z M63.106,17.866\r\n\t\t\t\tL43.622,36.741l19.569,23.296C63.689,59.502,64,58.789,64,58V20C64,19.165,63.657,18.41,63.106,17.866z M0.894,17.866\r\n\t\t\t\tC0.343,18.41,0,19.165,0,20v38c0,0.789,0.311,1.501,0.809,2.037l19.569-23.296L0.894,17.866z M32,48l-8.136-7.881L0.943,60.175\r\n\t\t\t\tC1.481,60.683,2.202,61,3,61h58c0.798,0,1.519-0.317,2.057-0.825L40.136,40.119L32,48z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MAIL_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MAIL","display":"inline"},"children":[{"name":"g","attribs":{"id":"MAIL","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M63.002,10.78C62.47,10.3,61.773,10,61,10H3c-0.773,0-1.47,0.3-2.002,0.78\r\n\t\t\t\tL32,35L63.002,10.78z M0.894,10.866C0.343,11.41,0,12.165,0,13v38c0,0.789,0.311,1.501,0.809,2.037l19.569-23.296L0.894,10.866z\r\n\t\t\t\t M32,41l-8.136-7.881L0.943,53.175C1.481,53.683,2.202,54,3,54h58c0.798,0,1.519-0.317,2.057-0.825L40.136,33.119L32,41z\r\n\t\t\t\t M63.106,10.866L43.622,29.741l19.569,23.296C63.689,52.502,64,51.789,64,51V13C64,12.165,63.657,11.41,63.106,10.866z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M63.002,10.78C62.47,10.3,61.773,10,61,10H3c-0.773,0-1.47,0.3-2.002,0.78\r\n\t\t\t\tL32,35L63.002,10.78z M0.894,10.866C0.343,11.41,0,12.165,0,13v38c0,0.789,0.311,1.501,0.809,2.037l19.569-23.296L0.894,10.866z\r\n\t\t\t\t M32,41l-8.136-7.881L0.943,53.175C1.481,53.683,2.202,54,3,54h58c0.798,0,1.519-0.317,2.057-0.825L40.136,33.119L32,41z\r\n\t\t\t\t M63.106,10.866L43.622,29.741l19.569,23.296C63.689,52.502,64,51.789,64,51V13C64,12.165,63.657,11.41,63.106,10.866z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BROWSER__x2F__DELETE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BROWSER__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{"id":"BROWSER__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3\r\n\t\t\t\ts-1.343,3-3,3c-1.657,0-3-1.343-3-3S13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3c-1.657,0-3-1.343-3-3S4.343,7,6,7z\r\n\t\t\t\t M61,57H3V16h58V57z M27.758,37l-4.95,4.95c-1.172,1.172-1.172,3.071,0,4.243c1.172,1.172,3.071,1.172,4.243,0l4.95-4.95\r\n\t\t\t\tl4.95,4.95c1.172,1.172,3.071,1.172,4.243,0c1.172-1.172,1.171-3.071,0-4.243L36.243,37l4.95-4.95\r\n\t\t\t\tc1.172-1.172,1.172-3.071,0-4.243c-1.172-1.172-3.071-1.172-4.243,0L32,32.758l-4.95-4.95c-1.171-1.171-3.071-1.172-4.243,0\r\n\t\t\t\tc-1.171,1.172-1.171,3.071,0,4.243L27.758,37z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3\r\n\t\t\t\ts-1.343,3-3,3c-1.657,0-3-1.343-3-3S13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3c-1.657,0-3-1.343-3-3S4.343,7,6,7z\r\n\t\t\t\t M61,57H3V16h58V57z M27.758,37l-4.95,4.95c-1.172,1.172-1.172,3.071,0,4.243c1.172,1.172,3.071,1.172,4.243,0l4.95-4.95\r\n\t\t\t\tl4.95,4.95c1.172,1.172,3.071,1.172,4.243,0c1.172-1.172,1.171-3.071,0-4.243L36.243,37l4.95-4.95\r\n\t\t\t\tc1.172-1.172,1.172-3.071,0-4.243c-1.172-1.172-3.071-1.172-4.243,0L32,32.758l-4.95-4.95c-1.171-1.171-3.071-1.172-4.243,0\r\n\t\t\t\tc-1.171,1.172-1.171,3.071,0,4.243L27.758,37z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BROWSER__x2F__OK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BROWSER__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{"id":"BROWSER__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26.879,45.121C27.422,45.664,28.172,46,29,46s1.578-0.336,2.121-0.879l12-12\r\n\t\t\t\tC43.664,32.579,44,31.828,44,31c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L29,38.757l-3.879-3.878\r\n\t\t\t\tC24.579,34.336,23.828,34,23,34c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L26.879,45.121z M61,4H3\r\n\t\t\t\tC1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3\r\n\t\t\t\ts-1.343,3-3,3c-1.657,0-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S13.343,7,15,7z M6,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M61,57H3V16h58V57z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26.879,45.121C27.422,45.664,28.172,46,29,46s1.578-0.336,2.121-0.879l12-12\r\n\t\t\t\tC43.664,32.579,44,31.828,44,31c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L29,38.757l-3.879-3.878\r\n\t\t\t\tC24.579,34.336,23.828,34,23,34c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L26.879,45.121z M61,4H3\r\n\t\t\t\tC1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3\r\n\t\t\t\ts-1.343,3-3,3c-1.657,0-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S13.343,7,15,7z M6,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M61,57H3V16h58V57z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BROWSER__x2F__REMOVE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BROWSER__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{"id":"BROWSER__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M22,40h4v0h16v0c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-7v0h-6v0h-7\r\n\t\t\t\tc-1.657,0-3,1.343-3,3C19,38.657,20.343,40,22,40z M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3s-1.343,3-3,3c-1.657,0-3-1.343-3-3S22.343,7,24,7z M15,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7\r\n\t\t\t\tz M61,57H3V16h58V57z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M22,40h4v0h16v0c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-7v0h-6v0h-7\r\n\t\t\t\tc-1.657,0-3,1.343-3,3C19,38.657,20.343,40,22,40z M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3s-1.343,3-3,3c-1.657,0-3-1.343-3-3S22.343,7,24,7z M15,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7\r\n\t\t\t\tz M61,57H3V16h58V57z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BROWSER__x2F__ADD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BROWSER__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{"id":"BROWSER__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3s-1.343,3-3,3c-1.657,0-3-1.343-3-3S22.343,7,24,7z M15,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3c-1.657,0-3-1.343-3-3\r\n\t\t\t\tS4.343,7,6,7z M61,57H3V16h58V57z M22,40h7v7c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-7h7c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-1.657-1.343-3-3-3h-7v-7c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v7h-7c-1.657,0-3,1.343-3,3C19,38.657,20.343,40,22,40z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3s-1.343,3-3,3c-1.657,0-3-1.343-3-3S22.343,7,24,7z M15,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3c-1.657,0-3-1.343-3-3\r\n\t\t\t\tS4.343,7,6,7z M61,57H3V16h58V57z M22,40h7v7c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-7h7c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-1.657-1.343-3-3-3h-7v-7c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v7h-7c-1.657,0-3,1.343-3,3C19,38.657,20.343,40,22,40z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BROWSER_LAYOUT_3_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BROWSER_LAYOUT_3","display":"inline"},"children":[{"name":"g","attribs":{"id":"BROWSER_LAYOUT_3","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3s-1.343,3-3,3c-1.657,0-3-1.343-3-3S22.343,7,24,7z M15,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7\r\n\t\t\t\tz M15,57H3V31h12V57z M46,57H18V31h28V57z M61,57H49V31h12V57z M61,28H3V16h58V28z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3s-1.343,3-3,3c-1.657,0-3-1.343-3-3S22.343,7,24,7z M15,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7\r\n\t\t\t\tz M15,57H3V31h12V57z M46,57H18V31h28V57z M61,57H49V31h12V57z M61,28H3V16h58V28z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BROWSER_LAYOUT_2_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BROWSER_LAYOUT_2","display":"inline"},"children":[{"name":"g","attribs":{"id":"BROWSER_LAYOUT_2","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3\r\n\t\t\t\ts-1.343,3-3,3c-1.657,0-3-1.343-3-3S13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M46,57H3\r\n\t\t\t\tV31h43V57z M61,57H49V31h12V57z M61,28H3V16h58V28z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3\r\n\t\t\t\ts-1.343,3-3,3c-1.657,0-3-1.343-3-3S13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M46,57H3\r\n\t\t\t\tV31h43V57z M61,57H49V31h12V57z M61,28H3V16h58V28z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BROWSER_LAYOUT_1_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BROWSER_LAYOUT_1","display":"inline"},"children":[{"name":"g","attribs":{"id":"BROWSER_LAYOUT_1","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3s-1.343,3-3,3c-1.657,0-3-1.343-3-3S22.343,7,24,7z M15,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3c-1.657,0-3-1.343-3-3S13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3\r\n\t\t\t\tc-1.657,0-3-1.343-3-3S4.343,7,6,7z M15,57H3V31h12V57z M61,57H18V31h43V57z M61,28H3V16h58V28z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3s-1.343,3-3,3c-1.657,0-3-1.343-3-3S22.343,7,24,7z M15,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3c-1.657,0-3-1.343-3-3S13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3\r\n\t\t\t\tc-1.657,0-3-1.343-3-3S4.343,7,6,7z M15,57H3V31h12V57z M61,57H18V31h43V57z M61,28H3V16h58V28z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BROWSER_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BROWSER","display":"inline"},"children":[{"name":"g","attribs":{"id":"BROWSER","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3c0,1.657-1.343,3-3,3s-3-1.343-3-3C21,8.343,22.343,7,24,7z M15,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3C12,8.343,13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3\r\n\t\t\t\tc0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3C3,8.343,4.343,7,6,7z M61,57H3V16h58V57z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3c0,1.657-1.343,3-3,3s-3-1.343-3-3C21,8.343,22.343,7,24,7z M15,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3C12,8.343,13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3\r\n\t\t\t\tc0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3C3,8.343,4.343,7,6,7z M61,57H3V16h58V57z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MOUSTACHE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MOUSTACHE","display":"inline"},"children":[{"name":"g","attribs":{"id":"MOUSTACHE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M63.827,26.719c-1.134-0.288-2.876,4.125-6.966,4.125\r\n\t\t\t\tc-5.253,0-7.725-8.839-15.934-8.839c-6.513,0-8.497,5.067-8.928,5.067c-0.431,0-2.415-5.067-8.927-5.067\r\n\t\t\t\tc-8.208,0-10.681,8.839-15.935,8.839c-4.09,0-5.83-4.413-6.964-4.125c-1.06,0.269,1.955,15.277,16.323,15.277\r\n\t\t\t\tc9.322,0,14.802-7.238,15.503-7.238c0.702,0,6.182,7.238,15.504,7.238C61.872,41.996,64.887,26.988,63.827,26.719z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M63.827,26.719c-1.134-0.288-2.876,4.125-6.966,4.125\r\n\t\t\t\tc-5.253,0-7.725-8.839-15.934-8.839c-6.513,0-8.497,5.067-8.928,5.067c-0.431,0-2.415-5.067-8.927-5.067\r\n\t\t\t\tc-8.208,0-10.681,8.839-15.935,8.839c-4.09,0-5.83-4.413-6.964-4.125c-1.06,0.269,1.955,15.277,16.323,15.277\r\n\t\t\t\tc9.322,0,14.802-7.238,15.503-7.238c0.702,0,6.182,7.238,15.504,7.238C61.872,41.996,64.887,26.988,63.827,26.719z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"LIST_2_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"LIST_2","display":"inline"},"children":[{"name":"g","attribs":{"id":"LIST_2","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M9,45H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h6l0,0c1.657,0,3-1.343,3-3\r\n\t\t\t\tC12,46.343,10.657,45,9,45z M61,29H21c-1.657,0-3,1.343-3,3s1.343,3,3,3c0,0,0,0,0,0h40c1.657,0,3-1.343,3-3\r\n\t\t\t\tC64,30.343,62.657,29,61,29z M9,29H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h6c0,0,0,0,0,0c1.657,0,3-1.343,3-3\r\n\t\t\t\tS10.657,29,9,29z M21,19h40c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H21.001c0,0-0.001,0-0.001,0c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC18,17.657,19.343,19,21,19z M9,13C9,13,8.999,13,8.999,13H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h6c1.657,0,3-1.343,3-3\r\n\t\t\t\tC12,14.343,10.657,13,9,13z M61,45H21c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3l0,0h40c1.657,0,3-1.343,3-3\r\n\t\t\t\tC64,46.343,62.657,45,61,45z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M9,45H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h6l0,0c1.657,0,3-1.343,3-3\r\n\t\t\t\tC12,46.343,10.657,45,9,45z M61,29H21c-1.657,0-3,1.343-3,3s1.343,3,3,3c0,0,0,0,0,0h40c1.657,0,3-1.343,3-3\r\n\t\t\t\tC64,30.343,62.657,29,61,29z M9,29H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h6c0,0,0,0,0,0c1.657,0,3-1.343,3-3\r\n\t\t\t\tS10.657,29,9,29z M21,19h40c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H21.001c0,0-0.001,0-0.001,0c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC18,17.657,19.343,19,21,19z M9,13C9,13,8.999,13,8.999,13H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h6c1.657,0,3-1.343,3-3\r\n\t\t\t\tC12,14.343,10.657,13,9,13z M61,45H21c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3l0,0h40c1.657,0,3-1.343,3-3\r\n\t\t\t\tC64,46.343,62.657,45,61,45z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"LIST_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"LIST","display":"inline"},"children":[{"name":"g","attribs":{"id":"LIST","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M3,19h58c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC0,17.657,1.343,19,3,19z M61,29H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,30.343,62.657,29,61,29z\r\n\t\t\t\t M61,45H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,46.343,62.657,45,61,45z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M3,19h58c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC0,17.657,1.343,19,3,19z M61,29H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,30.343,62.657,29,61,29z\r\n\t\t\t\t M61,45H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,46.343,62.657,45,61,45z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MORE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MORE","display":"inline"},"children":[{"name":"g","attribs":{"id":"MORE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M13.001,26C9.687,26,7,28.687,7,32.002c0,3.315,2.687,6.001,6.001,6.001\r\n\t\t\t\tc3.314,0,6.001-2.687,6.001-6.001C19.001,28.687,16.315,26,13.001,26z M51.001,26C47.687,26,45,28.687,45,32.002\r\n\t\t\t\tc0,3.315,2.687,6.001,6.001,6.001c3.314,0,6.001-2.687,6.001-6.001C57.001,28.687,54.315,26,51.001,26z M32.001,26\r\n\t\t\t\tC28.687,26,26,28.687,26,32.002c0,3.315,2.686,6.001,6.001,6.001s6.001-2.687,6.001-6.001C38.001,28.687,35.315,26,32.001,26z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M13.001,26C9.687,26,7,28.687,7,32.002c0,3.315,2.687,6.001,6.001,6.001\r\n\t\t\t\tc3.314,0,6.001-2.687,6.001-6.001C19.001,28.687,16.315,26,13.001,26z M51.001,26C47.687,26,45,28.687,45,32.002\r\n\t\t\t\tc0,3.315,2.687,6.001,6.001,6.001c3.314,0,6.001-2.687,6.001-6.001C57.001,28.687,54.315,26,51.001,26z M32.001,26\r\n\t\t\t\tC28.687,26,26,28.687,26,32.002c0,3.315,2.686,6.001,6.001,6.001s6.001-2.687,6.001-6.001C38.001,28.687,35.315,26,32.001,26z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"ARROW__x2F__RIGHT_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ARROW__x2F__RIGHT","display":"inline"},"children":[{"name":"g","attribs":{"id":"ARROW__x2F__RIGHT","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M44,31.994c0-0.002,0-0.005,0-0.007c0-0.848-0.352-1.613-0.918-2.159\r\n\t\t\t\tl0.001-0.001l-18-18l-0.008,0.008C24.536,11.318,23.806,11,23,11c-1.657,0-3,1.343-3,3c0,0.91,0.406,1.725,1.046,2.275\r\n\t\t\t\tl15.718,15.718L20.84,47.917l0.001,0.001C20.321,48.458,20,49.191,20,50c0,1.657,1.343,3,3,3c0.809,0,1.542-0.321,2.082-0.841\r\n\t\t\t\tl0.001,0.001l18-18l-0.001-0.001C43.648,33.613,44,32.848,44,32C44,31.998,44,31.996,44,31.994z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M44,31.994c0-0.002,0-0.005,0-0.007c0-0.848-0.352-1.613-0.918-2.159\r\n\t\t\t\tl0.001-0.001l-18-18l-0.008,0.008C24.536,11.318,23.806,11,23,11c-1.657,0-3,1.343-3,3c0,0.91,0.406,1.725,1.046,2.275\r\n\t\t\t\tl15.718,15.718L20.84,47.917l0.001,0.001C20.321,48.458,20,49.191,20,50c0,1.657,1.343,3,3,3c0.809,0,1.542-0.321,2.082-0.841\r\n\t\t\t\tl0.001,0.001l18-18l-0.001-0.001C43.648,33.613,44,32.848,44,32C44,31.998,44,31.996,44,31.994z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"ARROW__x2F__LEFT_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ARROW__x2F__LEFT","display":"inline"},"children":[{"name":"g","attribs":{"id":"ARROW__x2F__LEFT","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M43.16,47.917L27.236,31.994l15.718-15.718C43.594,15.725,44,14.91,44,14\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.806,0-1.536,0.318-2.075,0.835l-0.008-0.008l-18,18l0.001,0.001C20.352,30.374,20,31.139,20,31.987\r\n\t\t\t\tc0,0.002,0,0.004,0,0.007c0,0.002,0,0.004,0,0.007c0,0.848,0.352,1.613,0.918,2.159l-0.001,0.001l18,18l0.001-0.001\r\n\t\t\t\tC39.458,52.679,40.191,53,41,53c1.657,0,3-1.343,3-3C44,49.191,43.679,48.458,43.16,47.917L43.16,47.917z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M43.16,47.917L27.236,31.994l15.718-15.718C43.594,15.725,44,14.91,44,14\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.806,0-1.536,0.318-2.075,0.835l-0.008-0.008l-18,18l0.001,0.001C20.352,30.374,20,31.139,20,31.987\r\n\t\t\t\tc0,0.002,0,0.004,0,0.007c0,0.002,0,0.004,0,0.007c0,0.848,0.352,1.613,0.918,2.159l-0.001,0.001l18,18l0.001-0.001\r\n\t\t\t\tC39.458,52.679,40.191,53,41,53c1.657,0,3-1.343,3-3C44,49.191,43.679,48.458,43.16,47.917L43.16,47.917z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"ARROW__x2F__UP_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ARROW__x2F__UP","display":"inline"},"children":[{"name":"g","attribs":{"id":"ARROW__x2F__UP","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M52.159,38.918L52.159,38.918L34.16,20.917l-0.001,0.001\r\n\t\t\t\tC33.613,20.352,32.848,20,32,20c-0.002,0-0.004,0-0.007,0s-0.004,0-0.007,0c-0.848,0-1.613,0.352-2.159,0.918l-0.001-0.001\r\n\t\t\t\tl-18,18l0.008,0.008C11.318,39.464,11,40.195,11,41c0,1.657,1.343,3,3,3c0.91,0,1.725-0.406,2.275-1.046l15.718-15.718\r\n\t\t\t\tL47.917,43.16l0.001-0.001C48.458,43.679,49.191,44,50,44c1.657,0,3-1.343,3-3C53,40.191,52.679,39.458,52.159,38.918z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M52.159,38.918L52.159,38.918L34.16,20.917l-0.001,0.001\r\n\t\t\t\tC33.613,20.352,32.848,20,32,20c-0.002,0-0.004,0-0.007,0s-0.004,0-0.007,0c-0.848,0-1.613,0.352-2.159,0.918l-0.001-0.001\r\n\t\t\t\tl-18,18l0.008,0.008C11.318,39.464,11,40.195,11,41c0,1.657,1.343,3,3,3c0.91,0,1.725-0.406,2.275-1.046l15.718-15.718\r\n\t\t\t\tL47.917,43.16l0.001-0.001C48.458,43.679,49.191,44,50,44c1.657,0,3-1.343,3-3C53,40.191,52.679,39.458,52.159,38.918z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"ARROW__x2F__DOWN_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ARROW__x2F__DOWN","display":"inline"},"children":[{"name":"g","attribs":{"id":"ARROW__x2F__DOWN","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M53,23c0-1.657-1.343-3-3-3c-0.809,0-1.542,0.321-2.082,0.841l-0.001-0.001\r\n\t\t\t\tL31.993,36.764L16.275,21.046C15.725,20.406,14.91,20,14,20c-1.657,0-3,1.343-3,3c0,0.805,0.318,1.536,0.835,2.075l-0.008,0.008\r\n\t\t\t\tl18,18l0.001-0.001C30.374,43.648,31.139,44,31.987,44c0.002,0,0.004,0,0.007,0c0.002,0,0.004,0,0.007,0\r\n\t\t\t\tc0.848,0,1.613-0.352,2.159-0.918l0.001,0.001l18-18l-0.001-0.001C52.679,24.543,53,23.809,53,23z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M53,23c0-1.657-1.343-3-3-3c-0.809,0-1.542,0.321-2.082,0.841l-0.001-0.001\r\n\t\t\t\tL31.993,36.764L16.275,21.046C15.725,20.406,14.91,20,14,20c-1.657,0-3,1.343-3,3c0,0.805,0.318,1.536,0.835,2.075l-0.008,0.008\r\n\t\t\t\tl18,18l0.001-0.001C30.374,43.648,31.139,44,31.987,44c0.002,0,0.004,0,0.007,0c0.002,0,0.004,0,0.007,0\r\n\t\t\t\tc0.848,0,1.613-0.352,2.159-0.918l0.001,0.001l18-18l-0.001-0.001C52.679,24.543,53,23.809,53,23z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CLOSE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CLOSE","display":"inline"},"children":[{"name":"g","attribs":{"id":"CLOSE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M36.243,32l11.879-11.879C48.664,19.579,49,18.828,49,18c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L32,27.757L20.121,15.879C19.578,15.336,18.828,15,18,15c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L27.757,32L15.879,43.879C15.336,44.422,15,45.172,15,46c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L32,36.243l11.879,11.879C44.422,48.664,45.172,49,46,49c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L36.243,32z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M36.243,32l11.879-11.879C48.664,19.579,49,18.828,49,18c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L32,27.757L20.121,15.879C19.578,15.336,18.828,15,18,15c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L27.757,32L15.879,43.879C15.336,44.422,15,45.172,15,46c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L32,36.243l11.879,11.879C44.422,48.664,45.172,49,46,49c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L36.243,32z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"TICK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"TICK","display":"inline"},"children":[{"name":"g","attribs":{"id":"TICK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M50,18c-0.828,0-1.578,0.336-2.121,0.879L27,39.757L16.121,28.879\r\n\t\t\t\tC15.578,28.336,14.828,28,14,28c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l13,13C25.422,46.664,26.172,47,27,47\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l23-23C52.664,22.579,53,21.828,53,21C53,19.343,51.657,18,50,18z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M50,18c-0.828,0-1.578,0.336-2.121,0.879L27,39.757L16.121,28.879\r\n\t\t\t\tC15.578,28.336,14.828,28,14,28c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l13,13C25.422,46.664,26.172,47,27,47\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l23-23C52.664,22.579,53,21.828,53,21C53,19.343,51.657,18,50,18z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MINUS_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MINUS","display":"inline"},"children":[{"name":"g","attribs":{"id":"MINUS","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M52,29H12c-1.657,0-3,1.343-3,3s1.343,3,3,3h40c1.657,0,3-1.343,3-3\r\n\t\t\t\tS53.657,29,52,29z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M52,29H12c-1.657,0-3,1.343-3,3s1.343,3,3,3h40c1.657,0,3-1.343,3-3\r\n\t\t\t\tS53.657,29,52,29z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"PLUS_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PLUS","display":"inline"},"children":[{"name":"g","attribs":{"id":"PLUS","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M52,29H35V12c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v17H12\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h17v17c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V35h17c1.657,0,3-1.343,3-3S53.657,29,52,29z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M52,29H35V12c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v17H12\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h17v17c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V35h17c1.657,0,3-1.343,3-3S53.657,29,52,29z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BOOKMARK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BOOKMARK","display":"inline"},"children":[{"name":"g","attribs":{"id":"BOOKMARK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M41,5H23c-1.657,0-3,1.343-3,3v51l12-12l12,12V8C44,6.343,42.657,5,41,5z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M41,5H23c-1.657,0-3,1.343-3,3v51l12-12l12,12V8C44,6.343,42.657,5,41,5z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BOOK_2_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BOOK_2","display":"inline"},"children":[{"name":"g","attribs":{"id":"BOOK_2","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M10.759,32.731L10.759,32.731l11,5l0,0C22.137,37.903,22.557,38,23,38\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-1.214-0.721-2.259-1.759-2.731l0,0l-11-5v0C12.863,27.097,12.443,27,12,27c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC9,31.214,9.721,32.259,10.759,32.731z M10.759,43.731L10.759,43.731l11,5l0,0C22.137,48.903,22.557,49,23,49\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-1.214-0.721-2.259-1.759-2.731l0,0l-11-5v0C12.863,38.097,12.443,38,12,38c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC9,42.214,9.721,43.259,10.759,43.731z M10.759,21.731L10.759,21.731l11,5l0,0C22.137,26.903,22.557,27,23,27\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-1.214-0.721-2.259-1.759-2.731h0l-11-5v0C12.863,16.097,12.443,16,12,16c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC9,20.214,9.721,21.259,10.759,21.731z M41,49c0.443,0,0.863-0.097,1.241-0.269l0,0l11-5v0C54.279,43.259,55,42.214,55,41\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.443,0-0.863,0.097-1.241,0.269l0,0l-11,5v0C38.721,43.741,38,44.786,38,46C38,47.657,39.343,49,41,49z\r\n\t\t\t\t M61,0c-0.406,0-0.794,0.082-1.147,0.228l0,0L59.848,0.23c-0.009,0.004-0.018,0.007-0.027,0.011L32,11.753L4.179,0.241\r\n\t\t\t\tC4.17,0.237,4.161,0.234,4.152,0.23L4.147,0.228l0,0C3.794,0.082,3.406,0,3,0C1.343,0,0,1.343,0,3v46\r\n\t\t\t\tc0,1.257,0.774,2.333,1.871,2.78l28.942,11.976C31.177,63.913,31.578,64,32,64c0.422,0,0.823-0.087,1.187-0.245L62.129,51.78\r\n\t\t\t\tC63.226,51.333,64,50.257,64,49V3C64,1.343,62.657,0,61,0z M29,56.512L6,46.995V7.488l23,9.517V56.512z M58,46.995l-23,9.517\r\n\t\t\t\tV17.005l23-9.517V46.995z M41,38c0.443,0,0.863-0.097,1.241-0.269l0,0l11-5C54.279,32.259,55,31.214,55,30c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.443,0-0.863,0.097-1.241,0.269l0,0l-11,5v0C38.721,32.741,38,33.786,38,35C38,36.657,39.343,38,41,38z M41,27\r\n\t\t\t\tc0.443,0,0.863-0.097,1.241-0.269l0,0l11-5v0C54.279,21.259,55,20.214,55,19c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.443,0-0.863,0.097-1.241,0.269l0,0l-11,5C38.721,21.741,38,22.786,38,24C38,25.657,39.343,27,41,27z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M10.759,32.731L10.759,32.731l11,5l0,0C22.137,37.903,22.557,38,23,38\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-1.214-0.721-2.259-1.759-2.731l0,0l-11-5v0C12.863,27.097,12.443,27,12,27c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC9,31.214,9.721,32.259,10.759,32.731z M10.759,43.731L10.759,43.731l11,5l0,0C22.137,48.903,22.557,49,23,49\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-1.214-0.721-2.259-1.759-2.731l0,0l-11-5v0C12.863,38.097,12.443,38,12,38c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC9,42.214,9.721,43.259,10.759,43.731z M10.759,21.731L10.759,21.731l11,5l0,0C22.137,26.903,22.557,27,23,27\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-1.214-0.721-2.259-1.759-2.731h0l-11-5v0C12.863,16.097,12.443,16,12,16c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC9,20.214,9.721,21.259,10.759,21.731z M41,49c0.443,0,0.863-0.097,1.241-0.269l0,0l11-5v0C54.279,43.259,55,42.214,55,41\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.443,0-0.863,0.097-1.241,0.269l0,0l-11,5v0C38.721,43.741,38,44.786,38,46C38,47.657,39.343,49,41,49z\r\n\t\t\t\t M61,0c-0.406,0-0.794,0.082-1.147,0.228l0,0L59.848,0.23c-0.009,0.004-0.018,0.007-0.027,0.011L32,11.753L4.179,0.241\r\n\t\t\t\tC4.17,0.237,4.161,0.234,4.152,0.23L4.147,0.228l0,0C3.794,0.082,3.406,0,3,0C1.343,0,0,1.343,0,3v46\r\n\t\t\t\tc0,1.257,0.774,2.333,1.871,2.78l28.942,11.976C31.177,63.913,31.578,64,32,64c0.422,0,0.823-0.087,1.187-0.245L62.129,51.78\r\n\t\t\t\tC63.226,51.333,64,50.257,64,49V3C64,1.343,62.657,0,61,0z M29,56.512L6,46.995V7.488l23,9.517V56.512z M58,46.995l-23,9.517\r\n\t\t\t\tV17.005l23-9.517V46.995z M41,38c0.443,0,0.863-0.097,1.241-0.269l0,0l11-5C54.279,32.259,55,31.214,55,30c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.443,0-0.863,0.097-1.241,0.269l0,0l-11,5v0C38.721,32.741,38,33.786,38,35C38,36.657,39.343,38,41,38z M41,27\r\n\t\t\t\tc0.443,0,0.863-0.097,1.241-0.269l0,0l11-5v0C54.279,21.259,55,20.214,55,19c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.443,0-0.863,0.097-1.241,0.269l0,0l-11,5C38.721,21.741,38,22.786,38,24C38,25.657,39.343,27,41,27z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BOOK_1_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BOOK_1","display":"inline"},"children":[{"name":"g","attribs":{"id":"BOOK_1","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,0c-0.406,0-0.794,0.082-1.147,0.228l0,0L59.848,0.23\r\n\t\t\t\tc-0.009,0.004-0.018,0.007-0.027,0.011L32,11.753L4.179,0.241C4.17,0.237,4.161,0.234,4.152,0.23L4.147,0.228v0\r\n\t\t\t\tC3.794,0.082,3.406,0,3,0C1.343,0,0,1.343,0,3v46c0,1.257,0.774,2.333,1.871,2.78l28.942,11.976C31.177,63.913,31.578,64,32,64\r\n\t\t\t\tc0.422,0,0.823-0.087,1.187-0.245L62.129,51.78C63.226,51.333,64,50.257,64,49V3C64,1.343,62.657,0,61,0z M29,56.512L6,46.995\r\n\t\t\t\tV7.488l23,9.517V56.512z M58,46.995l-23,9.517V17.005l23-9.517V46.995z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,0c-0.406,0-0.794,0.082-1.147,0.228l0,0L59.848,0.23\r\n\t\t\t\tc-0.009,0.004-0.018,0.007-0.027,0.011L32,11.753L4.179,0.241C4.17,0.237,4.161,0.234,4.152,0.23L4.147,0.228v0\r\n\t\t\t\tC3.794,0.082,3.406,0,3,0C1.343,0,0,1.343,0,3v46c0,1.257,0.774,2.333,1.871,2.78l28.942,11.976C31.177,63.913,31.578,64,32,64\r\n\t\t\t\tc0.422,0,0.823-0.087,1.187-0.245L62.129,51.78C63.226,51.333,64,50.257,64,49V3C64,1.343,62.657,0,61,0z M29,56.512L6,46.995\r\n\t\t\t\tV7.488l23,9.517V56.512z M58,46.995l-23,9.517V17.005l23-9.517V46.995z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BOOK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BOOK","display":"inline"},"children":[{"name":"g","attribs":{"id":"BOOK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M10,18h8c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-8c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC7,16.657,8.343,18,10,18z M10,35h8c1.657,0,3-1.343,3-3s-1.343-3-3-3h-8c-1.657,0-3,1.343-3,3S8.343,35,10,35z M54,3h-3v58h3\r\n\t\t\t\tc1.657,0,3-1.343,3-3V6C57,4.343,55.657,3,54,3z M13,6v3h5c3.314,0,6,2.686,6,6c0,3.314-2.686,6-6,6h-5v5h5c3.314,0,6,2.686,6,6\r\n\t\t\t\tc0,3.314-2.686,6-6,6h-5v5h5c3.314,0,6,2.686,6,6s-2.686,6-6,6h-5v3c0,1.657,1.343,3,3,3h32V3H16C14.343,3,13,4.343,13,6z M21,49\r\n\t\t\t\tc0-1.657-1.343-3-3-3h-8c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h8C19.657,52,21,50.657,21,49z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M10,18h8c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-8c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC7,16.657,8.343,18,10,18z M10,35h8c1.657,0,3-1.343,3-3s-1.343-3-3-3h-8c-1.657,0-3,1.343-3,3S8.343,35,10,35z M54,3h-3v58h3\r\n\t\t\t\tc1.657,0,3-1.343,3-3V6C57,4.343,55.657,3,54,3z M13,6v3h5c3.314,0,6,2.686,6,6c0,3.314-2.686,6-6,6h-5v5h5c3.314,0,6,2.686,6,6\r\n\t\t\t\tc0,3.314-2.686,6-6,6h-5v5h5c3.314,0,6,2.686,6,6s-2.686,6-6,6h-5v3c0,1.657,1.343,3,3,3h32V3H16C14.343,3,13,4.343,13,6z M21,49\r\n\t\t\t\tc0-1.657-1.343-3-3-3h-8c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h8C19.657,52,21,50.657,21,49z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"DOCUMENT__x2F__UPLOAD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__UPLOAD","display":"inline"},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__UPLOAD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M30,21.008h19L27.039,1H27v17.001C27,19.662,28.343,21.008,30,21.008z M36,46\r\n\t\t\t\tc0-1.657,0.672-3.157,1.757-4.243l7-7C45.843,33.672,47.343,33,49,33v-8.986H30c-3.314,0-6-2.692-6-6.013V1H8\r\n\t\t\t\tC6.343,1,5,2.343,5,4v52c0,1.657,1.343,3,3,3h35v-7.101C42.673,51.954,42.343,52,42,52C38.686,52,36,49.314,36,46z\r\n\t\t\t\t M58.121,43.879l-7-7C50.578,36.336,49.828,36,49,36c-0.828,0-1.578,0.336-2.121,0.879l-7,7C39.336,44.422,39,45.172,39,46\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L46,46.243V60c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V46.243l1.879,1.879\r\n\t\t\t\tC54.422,48.664,55.172,49,56,49c1.657,0,3-1.343,3-3C59,45.172,58.664,44.422,58.121,43.879z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M30,21.008h19L27.039,1H27v17.001C27,19.662,28.343,21.008,30,21.008z M36,46\r\n\t\t\t\tc0-1.657,0.672-3.157,1.757-4.243l7-7C45.843,33.672,47.343,33,49,33v-8.986H30c-3.314,0-6-2.692-6-6.013V1H8\r\n\t\t\t\tC6.343,1,5,2.343,5,4v52c0,1.657,1.343,3,3,3h35v-7.101C42.673,51.954,42.343,52,42,52C38.686,52,36,49.314,36,46z\r\n\t\t\t\t M58.121,43.879l-7-7C50.578,36.336,49.828,36,49,36c-0.828,0-1.578,0.336-2.121,0.879l-7,7C39.336,44.422,39,45.172,39,46\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L46,46.243V60c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V46.243l1.879,1.879\r\n\t\t\t\tC54.422,48.664,55.172,49,56,49c1.657,0,3-1.343,3-3C59,45.172,58.664,44.422,58.121,43.879z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"DOCUMENT__x2F__DOWNLOAD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__DOWNLOAD","display":"inline"},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__DOWNLOAD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M30,21.008h19L27.039,1H27v17.001C27,19.662,28.343,21.008,30,21.008z M36,53\r\n\t\t\t\tc0-3.314,2.686-6,6-6c0.343,0,0.673,0.046,1,0.101V39c0-3.314,2.686-6,6-6c0,0,0,0,0,0v-8.986H30c-3.314,0-6-2.692-6-6.013V1H8\r\n\t\t\t\tC6.343,1,5,2.343,5,4v52c0,1.657,1.343,3,3,3h31.515l-1.757-1.757C36.672,56.157,36,54.657,36,53z M56,50\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L52,52.757V39c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v13.757l-1.879-1.879\r\n\t\t\t\tC43.578,50.336,42.828,50,42,50c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l7,7C47.422,62.664,48.172,63,49,63\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l7-7C58.664,54.579,59,53.829,59,53C59,51.343,57.657,50,56,50z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M30,21.008h19L27.039,1H27v17.001C27,19.662,28.343,21.008,30,21.008z M36,53\r\n\t\t\t\tc0-3.314,2.686-6,6-6c0.343,0,0.673,0.046,1,0.101V39c0-3.314,2.686-6,6-6c0,0,0,0,0,0v-8.986H30c-3.314,0-6-2.692-6-6.013V1H8\r\n\t\t\t\tC6.343,1,5,2.343,5,4v52c0,1.657,1.343,3,3,3h31.515l-1.757-1.757C36.672,56.157,36,54.657,36,53z M56,50\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L52,52.757V39c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v13.757l-1.879-1.879\r\n\t\t\t\tC43.578,50.336,42.828,50,42,50c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l7,7C47.422,62.664,48.172,63,49,63\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l7-7C58.664,54.579,59,53.829,59,53C59,51.343,57.657,50,56,50z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"DOCUMENT__x2F__DELETE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M30,22.008h19L27,1.964v17.037C27,20.662,28.343,22.008,30,22.008z M41.515,54\r\n\t\t\t\tl-1.757-1.757C38.672,51.157,38,49.657,38,48c0-3.314,2.686-6,6-6c1.657,0,3.153,0.675,4.238,1.762l0.005-0.005L49,44.515v-19.5\r\n\t\t\t\tH30c-3.314,0-6-2.692-6-6.013V2H8C6.343,2,5,3.343,5,5v52c0,1.657,1.343,3,3,3h28v0h2c0-1.657,0.672-3.156,1.758-4.242\r\n\t\t\t\tl-0.001-0.001L41.515,54z M54.243,54l3.879-3.878C58.664,49.578,59,48.828,59,48c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L50,49.758l-3.879-3.879C45.578,45.336,44.829,45,44,45c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L45.757,54l-3.879,3.879C41.336,58.422,41,59.172,41,60c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L50,58.243l3.879,3.879C54.422,62.664,55.172,63,56,63c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L54.243,54z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M30,22.008h19L27,1.964v17.037C27,20.662,28.343,22.008,30,22.008z M41.515,54\r\n\t\t\t\tl-1.757-1.757C38.672,51.157,38,49.657,38,48c0-3.314,2.686-6,6-6c1.657,0,3.153,0.675,4.238,1.762l0.005-0.005L49,44.515v-19.5\r\n\t\t\t\tH30c-3.314,0-6-2.692-6-6.013V2H8C6.343,2,5,3.343,5,5v52c0,1.657,1.343,3,3,3h28v0h2c0-1.657,0.672-3.156,1.758-4.242\r\n\t\t\t\tl-0.001-0.001L41.515,54z M54.243,54l3.879-3.878C58.664,49.578,59,48.828,59,48c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L50,49.758l-3.879-3.879C45.578,45.336,44.829,45,44,45c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L45.757,54l-3.879,3.879C41.336,58.422,41,59.172,41,60c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L50,58.243l3.879,3.879C54.422,62.664,55.172,63,56,63c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L54.243,54z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"DOCUMENT__x2F__OK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M30,23.008h19L27,2.964v17.037C27,21.662,28.343,23.008,30,23.008z M56,48\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L48,54.757l-1.879-1.879C45.578,52.336,44.828,52,44,52c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.829,0.336,1.578,0.879,2.121l4,4C46.422,61.664,47.172,62,48,62s1.578-0.336,2.121-0.879l8-8C58.664,52.579,59,51.828,59,51\r\n\t\t\t\tC59,49.343,57.657,48,56,48z M38,55c0-3.314,2.686-6,6-6c1.533,0,2.909,0.599,3.967,1.547L49,49.515v-23.5H30\r\n\t\t\t\tc-3.314,0-6-2.692-6-6.013V3H8C6.343,3,5,4.343,5,6v52c0,1.657,1.343,3,3,3h23v0h10.515l-1.757-1.757\r\n\t\t\t\tC38.672,58.157,38,56.657,38,55z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M30,23.008h19L27,2.964v17.037C27,21.662,28.343,23.008,30,23.008z M56,48\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L48,54.757l-1.879-1.879C45.578,52.336,44.828,52,44,52c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.829,0.336,1.578,0.879,2.121l4,4C46.422,61.664,47.172,62,48,62s1.578-0.336,2.121-0.879l8-8C58.664,52.579,59,51.828,59,51\r\n\t\t\t\tC59,49.343,57.657,48,56,48z M38,55c0-3.314,2.686-6,6-6c1.533,0,2.909,0.599,3.967,1.547L49,49.515v-23.5H30\r\n\t\t\t\tc-3.314,0-6-2.692-6-6.013V3H8C6.343,3,5,4.343,5,6v52c0,1.657,1.343,3,3,3h23v0h10.515l-1.757-1.757\r\n\t\t\t\tC38.672,58.157,38,56.657,38,55z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"DOCUMENT__x2F__REMOVE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31,23.008h19L28,2.964v17.037C28,21.662,29.343,23.008,31,23.008z M38,55\r\n\t\t\t\tc0-3.314,2.686-6,6-6h6V26.014H31c-3.314,0-6-2.692-6-6.013V2.964h-9V3H9C7.343,3,6,4.343,6,6v52c0,1.657,1.343,3,3,3h35\r\n\t\t\t\tc0,0,0,0,0,0C40.686,61,38,58.314,38,55z M56,52H44c-1.657,0-3,1.343-3,3s1.343,3,3,3h12c1.657,0,3-1.343,3-3S57.657,52,56,52z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31,23.008h19L28,2.964v17.037C28,21.662,29.343,23.008,31,23.008z M38,55\r\n\t\t\t\tc0-3.314,2.686-6,6-6h6V26.014H31c-3.314,0-6-2.692-6-6.013V2.964h-9V3H9C7.343,3,6,4.343,6,6v52c0,1.657,1.343,3,3,3h35\r\n\t\t\t\tc0,0,0,0,0,0C40.686,61,38,58.314,38,55z M56,52H44c-1.657,0-3,1.343-3,3s1.343,3,3,3h12c1.657,0,3-1.343,3-3S57.657,52,56,52z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"DOCUMENT__x2F__ADD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31,22.008h19L28,1.964v17.037C28,20.662,29.343,22.008,31,22.008z M56,51h-3\r\n\t\t\t\tv-3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3s1.343,3,3,3h3v3c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.657,0,3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3S57.657,51,56,51z M38,54c0-3.314,2.686-6,6-6c0-3.314,2.686-6,6-6V25.014H31\r\n\t\t\t\tc-3.314,0-6-2.692-6-6.013V1.964h-9V2H9C7.343,2,6,3.343,6,5v52c0,1.657,1.343,3,3,3h35c0,0,0,0,0,0C40.686,60,38,57.314,38,54z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31,22.008h19L28,1.964v17.037C28,20.662,29.343,22.008,31,22.008z M56,51h-3\r\n\t\t\t\tv-3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3s1.343,3,3,3h3v3c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.657,0,3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3S57.657,51,56,51z M38,54c0-3.314,2.686-6,6-6c0-3.314,2.686-6,6-6V25.014H31\r\n\t\t\t\tc-3.314,0-6-2.692-6-6.013V1.964h-9V2H9C7.343,2,6,3.343,6,5v52c0,1.657,1.343,3,3,3h35c0,0,0,0,0,0C40.686,60,38,57.314,38,54z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"DOCUMENTS_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"DOCUMENTS","display":"inline"},"children":[{"name":"g","attribs":{"id":"DOCUMENTS","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,17.001V0H16c-1.657,0-3,1.343-3,3v52c0,1.657,1.343,3,3,3h38\r\n\t\t\t\tc1.657,0,3-1.343,3-3V23.015H38C34.686,23.015,32,20.322,32,17.001z M38,20.008h19L35-0.036v17.037\r\n\t\t\t\tC35,18.662,36.343,20.008,38,20.008z M10,55V6C8.343,6,7,7.343,7,9v49c0,3.314,2.686,6,6,6h35c1.657,0,3-1.343,3-3H16\r\n\t\t\t\tC12.686,61,10,58.314,10,55z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,17.001V0H16c-1.657,0-3,1.343-3,3v52c0,1.657,1.343,3,3,3h38\r\n\t\t\t\tc1.657,0,3-1.343,3-3V23.015H38C34.686,23.015,32,20.322,32,17.001z M38,20.008h19L35-0.036v17.037\r\n\t\t\t\tC35,18.662,36.343,20.008,38,20.008z M10,55V6C8.343,6,7,7.343,7,9v49c0,3.314,2.686,6,6,6h35c1.657,0,3-1.343,3-3H16\r\n\t\t\t\tC12.686,61,10,58.314,10,55z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"DOCUMENT_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"DOCUMENT","display":"inline"},"children":[{"name":"g","attribs":{"id":"DOCUMENT","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M35,23.008h19L32,2.964v17.037C32,21.662,33.343,23.008,35,23.008z M29,20.001\r\n\t\t\t\tV3H13c-1.657,0-3,1.343-3,3v52c0,1.657,1.343,3,3,3h38c1.657,0,3-1.343,3-3V26.014H35C31.686,26.014,29,23.322,29,20.001z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M35,23.008h19L32,2.964v17.037C32,21.662,33.343,23.008,35,23.008z M29,20.001\r\n\t\t\t\tV3H13c-1.657,0-3,1.343-3,3v52c0,1.657,1.343,3,3,3h38c1.657,0,3-1.343,3-3V26.014H35C31.686,26.014,29,23.322,29,20.001z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"FOLDER__x2F__DELETE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"FOLDER__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{"id":"FOLDER__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M64,46c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L55,47.757\r\n\t\t\t\tl-3.879-3.879C50.578,43.336,49.828,43,49,43c-1.657,0-3,1.343-3,3c0,0.829,0.336,1.578,0.879,2.121L50.757,52l-3.879,3.879\r\n\t\t\t\tC46.336,56.422,46,57.172,46,58c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L55,56.243l3.879,3.879\r\n\t\t\t\tC59.422,60.664,60.172,61,61,61c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L59.243,52l3.879-3.879\r\n\t\t\t\tC63.664,47.578,64,46.829,64,46z M0,51c0,1.657,1.343,3,3,3h41v0h0.557c0.07-0.078,0.126-0.168,0.2-0.243L46.515,52l-1.757-1.758\r\n\t\t\t\tC43.672,49.157,43,47.657,43,46c0-3.314,2.686-6,6-6c1.657,0,3.157,0.672,4.243,1.757L55,43.515l1.757-1.757\r\n\t\t\t\tC57.843,40.672,59.343,40,61,40c1.098,0,2.114,0.317,3,0.832V19H0V51z M61,10H23.982L18,4H3C1.343,4,0,5.343,0,7v9h64v-3\r\n\t\t\t\tC64,11.343,62.657,10,61,10z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M64,46c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L55,47.757\r\n\t\t\t\tl-3.879-3.879C50.578,43.336,49.828,43,49,43c-1.657,0-3,1.343-3,3c0,0.829,0.336,1.578,0.879,2.121L50.757,52l-3.879,3.879\r\n\t\t\t\tC46.336,56.422,46,57.172,46,58c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L55,56.243l3.879,3.879\r\n\t\t\t\tC59.422,60.664,60.172,61,61,61c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L59.243,52l3.879-3.879\r\n\t\t\t\tC63.664,47.578,64,46.829,64,46z M0,51c0,1.657,1.343,3,3,3h41v0h0.557c0.07-0.078,0.126-0.168,0.2-0.243L46.515,52l-1.757-1.758\r\n\t\t\t\tC43.672,49.157,43,47.657,43,46c0-3.314,2.686-6,6-6c1.657,0,3.157,0.672,4.243,1.757L55,43.515l1.757-1.757\r\n\t\t\t\tC57.843,40.672,59.343,40,61,40c1.098,0,2.114,0.317,3,0.832V19H0V51z M61,10H23.982L18,4H3C1.343,4,0,5.343,0,7v9h64v-3\r\n\t\t\t\tC64,11.343,62.657,10,61,10z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"FOLDER__x2F__OK_3_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"FOLDER__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{"id":"FOLDER__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,46c-0.828,0-1.578,0.336-2.121,0.879L53,52.758l-1.879-1.879\r\n\t\t\t\tC50.578,50.336,49.828,50,49,50c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l4,4C51.422,59.664,52.172,60,53,60\r\n\t\t\t\ts1.578-0.336,2.121-0.879l8-8C63.664,50.579,64,49.828,64,49C64,47.343,62.657,46,61,46z M61,11H23.982L18,5H3\r\n\t\t\t\tC1.343,5,0,6.343,0,8v9h64v-3C64,12.343,62.657,11,61,11z M0,52c0,1.657,1.343,3,3,3h40.367c0,0,0,0,0,0\r\n\t\t\t\tC43.144,54.372,43,53.705,43,53c0-3.314,2.686-6,6-6c1.533,0,2.916,0.592,3.977,1.538l3.781-3.781C57.843,43.672,59.343,43,61,43\r\n\t\t\t\tc1.099,0,2.114,0.317,3,0.832V20H0V52z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,46c-0.828,0-1.578,0.336-2.121,0.879L53,52.758l-1.879-1.879\r\n\t\t\t\tC50.578,50.336,49.828,50,49,50c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l4,4C51.422,59.664,52.172,60,53,60\r\n\t\t\t\ts1.578-0.336,2.121-0.879l8-8C63.664,50.579,64,49.828,64,49C64,47.343,62.657,46,61,46z M61,11H23.982L18,5H3\r\n\t\t\t\tC1.343,5,0,6.343,0,8v9h64v-3C64,12.343,62.657,11,61,11z M0,52c0,1.657,1.343,3,3,3h40.367c0,0,0,0,0,0\r\n\t\t\t\tC43.144,54.372,43,53.705,43,53c0-3.314,2.686-6,6-6c1.533,0,2.916,0.592,3.977,1.538l3.781-3.781C57.843,43.672,59.343,43,61,43\r\n\t\t\t\tc1.099,0,2.114,0.317,3,0.832V20H0V52z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"FOLDER__x2F__REMOVE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"FOLDER__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{"id":"FOLDER__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M0,54c0,1.657,1.343,3,3,3h39.367C42.144,56.372,42,55.705,42,55\r\n\t\t\t\tc0-3.314,2.686-6,6-6h12c1.544,0,2.937,0.599,4,1.557V22H0V54z M60,52H48c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12\r\n\t\t\t\tc1.657,0,3-1.343,3-3C63,53.343,61.657,52,60,52z M61,13H23.982L18,7H3c-1.657,0-3,1.343-3,3v9h64v-3C64,14.343,62.657,13,61,13z\r\n\t\t\t\t"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M0,54c0,1.657,1.343,3,3,3h39.367C42.144,56.372,42,55.705,42,55\r\n\t\t\t\tc0-3.314,2.686-6,6-6h12c1.544,0,2.937,0.599,4,1.557V22H0V54z M60,52H48c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12\r\n\t\t\t\tc1.657,0,3-1.343,3-3C63,53.343,61.657,52,60,52z M61,13H23.982L18,7H3c-1.657,0-3,1.343-3,3v9h64v-3C64,14.343,62.657,13,61,13z\r\n\t\t\t\t"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"FOLDER__x2F__OK_2_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"FOLDER__x2F__OK_1_","display":"inline"},"children":[{"name":"g","attribs":{"id":"FOLDER__x2F__OK_1_","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M60,49h-3v-3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v3h-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h3v3c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3\r\n\t\t\t\tC63,50.343,61.657,49,60,49z M0,51c0,1.657,1.343,3,3,3h39.367C42.144,53.372,42,52.705,42,52c0-3.314,2.686-6,6-6\r\n\t\t\t\tc0-3.314,2.686-6,6-6s6,2.686,6,6c1.544,0,2.937,0.599,4,1.557V19H0V51z M61,10H23.982L18,4H3C1.343,4,0,5.343,0,7v9h64v-3\r\n\t\t\t\tC64,11.343,62.657,10,61,10z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M60,49h-3v-3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v3h-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h3v3c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3\r\n\t\t\t\tC63,50.343,61.657,49,60,49z M0,51c0,1.657,1.343,3,3,3h39.367C42.144,53.372,42,52.705,42,52c0-3.314,2.686-6,6-6\r\n\t\t\t\tc0-3.314,2.686-6,6-6s6,2.686,6,6c1.544,0,2.937,0.599,4,1.557V19H0V51z M61,10H23.982L18,4H3C1.343,4,0,5.343,0,7v9h64v-3\r\n\t\t\t\tC64,11.343,62.657,10,61,10z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"FOLDER_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"FOLDER","display":"inline"},"children":[{"name":"g","attribs":{"id":"FOLDER","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M0,54c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V22H0V54z M61,13H23.982L18,7\r\n\t\t\t\tH3c-1.657,0-3,1.343-3,3v9h64v-3C64,14.343,62.657,13,61,13z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M0,54c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V22H0V54z M61,13H23.982L18,7\r\n\t\t\t\tH3c-1.657,0-3,1.343-3,3v9h64v-3C64,14.343,62.657,13,61,13z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CIRCLE__x2F__SKIP_NEXT_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__SKIP_NEXT","display":"inline"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__SKIP_NEXT","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M39,22c-1.657,0-3,1.343-3,3v4.29l-9.235-6.717L26.76,22.58\r\n\t\t\t\tC26.264,22.219,25.66,22,25,22c-1.657,0-3,1.343-3,3v14c0,1.657,1.343,3,3,3c0.66,0,1.264-0.219,1.76-0.58l0.005,0.007L36,34.71\r\n\t\t\t\tV39c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V25C42,23.343,40.657,22,39,22z M32,0C14.327,0,0,14.327,0,32\r\n\t\t\t\tc0,17.673,14.327,32,32,32s32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6\r\n\t\t\t\tc14.359,0,26,11.64,26,26C58,46.36,46.36,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M39,22c-1.657,0-3,1.343-3,3v4.29l-9.235-6.717L26.76,22.58\r\n\t\t\t\tC26.264,22.219,25.66,22,25,22c-1.657,0-3,1.343-3,3v14c0,1.657,1.343,3,3,3c0.66,0,1.264-0.219,1.76-0.58l0.005,0.007L36,34.71\r\n\t\t\t\tV39c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V25C42,23.343,40.657,22,39,22z M32,0C14.327,0,0,14.327,0,32\r\n\t\t\t\tc0,17.673,14.327,32,32,32s32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6\r\n\t\t\t\tc14.359,0,26,11.64,26,26C58,46.36,46.36,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CIRCLE__x2F__SKIP_PREVIOUS_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__SKIP_PREVIOUS","display":"inline"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__SKIP_PREVIOUS","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M39,22c-0.66,0-1.265,0.219-1.76,0.58l-0.005-0.007L28,29.291V25\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v14c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-4.29l9.235,6.717l0.005-0.007\r\n\t\t\t\tC37.736,41.781,38.34,42,39,42c1.657,0,3-1.343,3-3V25C42,23.343,40.657,22,39,22z M32,0C14.327,0,0,14.327,0,32\r\n\t\t\t\tc0,17.673,14.327,32,32,32c17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6s26,11.64,26,26C58,46.36,46.359,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M39,22c-0.66,0-1.265,0.219-1.76,0.58l-0.005-0.007L28,29.291V25\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v14c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-4.29l9.235,6.717l0.005-0.007\r\n\t\t\t\tC37.736,41.781,38.34,42,39,42c1.657,0,3-1.343,3-3V25C42,23.343,40.657,22,39,22z M32,0C14.327,0,0,14.327,0,32\r\n\t\t\t\tc0,17.673,14.327,32,32,32c17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6s26,11.64,26,26C58,46.36,46.359,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CIRCLE__x2F__FAST_FORWARD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__FAST_FORWARD","display":"inline"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__FAST_FORWARD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32s32-14.327,32-32\r\n\t\t\t\tC64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tC58,46.36,46.359,58,32,58z M45.559,29.437l-9.699-6.789C35.349,22.243,34.703,22,34,22c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.008,0.001,0.016,0.001,0.024h-0.005v4.018l-9.135-6.394C21.349,22.243,20.703,22,20,22c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.008,0.001,0.016,0.001,0.024h-0.005v14h0.005C17.013,40.67,18.351,42,20,42c0.708,0,1.358-0.246,1.871-0.655l9.125-6.387\r\n\t\t\t\tv4.067h0.005C31.013,40.67,32.351,42,34,42c0.708,0,1.358-0.246,1.871-0.655l9.68-6.776C46.419,34.043,47,33.089,47,32\r\n\t\t\t\tC47,30.914,46.423,29.963,45.559,29.437z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32s32-14.327,32-32\r\n\t\t\t\tC64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tC58,46.36,46.359,58,32,58z M45.559,29.437l-9.699-6.789C35.349,22.243,34.703,22,34,22c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.008,0.001,0.016,0.001,0.024h-0.005v4.018l-9.135-6.394C21.349,22.243,20.703,22,20,22c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.008,0.001,0.016,0.001,0.024h-0.005v14h0.005C17.013,40.67,18.351,42,20,42c0.708,0,1.358-0.246,1.871-0.655l9.125-6.387\r\n\t\t\t\tv4.067h0.005C31.013,40.67,32.351,42,34,42c0.708,0,1.358-0.246,1.871-0.655l9.68-6.776C46.419,34.043,47,33.089,47,32\r\n\t\t\t\tC47,30.914,46.423,29.963,45.559,29.437z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CIRCLE__x2F__REWIND_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__REWIND","display":"inline"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__REWIND","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M47,25c0-1.657-1.343-3-3-3c-0.703,0-1.349,0.242-1.861,0.648l-9.135,6.394\r\n\t\t\t\tv-4.018h-0.006C32.999,25.016,33,25.008,33,25c0-1.657-1.343-3-3-3c-0.703,0-1.349,0.242-1.861,0.648l-9.699,6.789\r\n\t\t\t\tC17.577,29.963,17,30.914,17,32c0,1.089,0.581,2.043,1.449,2.569l9.68,6.776C28.642,41.754,29.292,42,30,42\r\n\t\t\t\tc1.649,0,2.987-1.33,2.999-2.976h0.005v-4.067l9.125,6.387C42.642,41.754,43.292,42,44,42c1.649,0,2.987-1.33,2.999-2.976h0.005\r\n\t\t\t\tv-14h-0.005C46.999,25.016,47,25.008,47,25z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32c17.673,0,32-14.327,32-32\r\n\t\t\t\tC64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tC58,46.36,46.359,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M47,25c0-1.657-1.343-3-3-3c-0.703,0-1.349,0.242-1.861,0.648l-9.135,6.394\r\n\t\t\t\tv-4.018h-0.006C32.999,25.016,33,25.008,33,25c0-1.657-1.343-3-3-3c-0.703,0-1.349,0.242-1.861,0.648l-9.699,6.789\r\n\t\t\t\tC17.577,29.963,17,30.914,17,32c0,1.089,0.581,2.043,1.449,2.569l9.68,6.776C28.642,41.754,29.292,42,30,42\r\n\t\t\t\tc1.649,0,2.987-1.33,2.999-2.976h0.005v-4.067l9.125,6.387C42.642,41.754,43.292,42,44,42c1.649,0,2.987-1.33,2.999-2.976h0.005\r\n\t\t\t\tv-14h-0.005C46.999,25.016,47,25.008,47,25z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32c17.673,0,32-14.327,32-32\r\n\t\t\t\tC64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tC58,46.36,46.359,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CIRCLE__x2F__PAUSE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__PAUSE","display":"inline"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__PAUSE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32s32-14.327,32-32\r\n\t\t\t\tC64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6s26,11.64,26,26C58,46.36,46.359,58,32,58z\r\n\t\t\t\t M29,24c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3c0,0.002,0,0.005,0,0.007h-0.002v16H23C23.004,41.661,24.346,43,26,43\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.023-0.001-0.047-0.002-0.07V24.07C28.999,24.047,29,24.024,29,24z M41,24c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.002,0,0.005,0,0.007h-0.002v16H35C35.004,41.661,36.346,43,38,43c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.023-0.001-0.047-0.002-0.07V24.07C40.999,24.047,41,24.024,41,24z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32s32-14.327,32-32\r\n\t\t\t\tC64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6s26,11.64,26,26C58,46.36,46.359,58,32,58z\r\n\t\t\t\t M29,24c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3c0,0.002,0,0.005,0,0.007h-0.002v16H23C23.004,41.661,24.346,43,26,43\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.023-0.001-0.047-0.002-0.07V24.07C28.999,24.047,29,24.024,29,24z M41,24c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.002,0,0.005,0,0.007h-0.002v16H35C35.004,41.661,36.346,43,38,43c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.023-0.001-0.047-0.002-0.07V24.07C40.999,24.047,41,24.024,41,24z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CIRCLE__x2F__STOP_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__STOP","display":"inline"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__STOP","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M40,21H24c-1.657,0-3,1.343-3,3v16c0,1.657,1.343,3,3,3h16c1.657,0,3-1.343,3-3\r\n\t\t\t\tV24C43,22.343,41.657,21,40,21z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32c17.673,0,32-14.327,32-32\r\n\t\t\t\tC64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tC58,46.36,46.359,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M40,21H24c-1.657,0-3,1.343-3,3v16c0,1.657,1.343,3,3,3h16c1.657,0,3-1.343,3-3\r\n\t\t\t\tV24C43,22.343,41.657,21,40,21z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32c17.673,0,32-14.327,32-32\r\n\t\t\t\tC64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tC58,46.36,46.359,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CIRCLE__x2F__PLAY_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__PLAY","display":"inline"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__PLAY","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M41.492,29.398l-15.8-9.875C25.21,19.193,24.628,19,24,19c-1.657,0-3,1.343-3,3\r\n\t\t\t\tv20c0,1.657,1.343,3,3,3c0.066,0,0.131-0.003,0.195-0.007c0.017-0.001,0.034-0.003,0.051-0.004\r\n\t\t\t\tc0.055-0.005,0.109-0.01,0.163-0.018c0.01-0.001,0.021-0.002,0.031-0.004c0.064-0.01,0.128-0.021,0.191-0.035\r\n\t\t\t\tc0.01-0.002,0.019-0.005,0.029-0.007c0.057-0.013,0.112-0.027,0.167-0.043c0.009-0.003,0.018-0.005,0.027-0.008\r\n\t\t\t\tc0.128-0.038,0.252-0.084,0.372-0.138c0.005-0.002,0.009-0.004,0.014-0.006c0.123-0.056,0.242-0.12,0.355-0.191l0.013,0.02\r\n\t\t\t\tl15.911-9.974C42.405,34.066,43,33.103,43,32C43,30.886,42.393,29.915,41.492,29.398z M32,0C14.327,0,0,14.327,0,32\r\n\t\t\t\tc0,17.673,14.327,32,32,32s32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6\r\n\t\t\t\tc14.359,0,26,11.64,26,26C58,46.36,46.359,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M41.492,29.398l-15.8-9.875C25.21,19.193,24.628,19,24,19c-1.657,0-3,1.343-3,3\r\n\t\t\t\tv20c0,1.657,1.343,3,3,3c0.066,0,0.131-0.003,0.195-0.007c0.017-0.001,0.034-0.003,0.051-0.004\r\n\t\t\t\tc0.055-0.005,0.109-0.01,0.163-0.018c0.01-0.001,0.021-0.002,0.031-0.004c0.064-0.01,0.128-0.021,0.191-0.035\r\n\t\t\t\tc0.01-0.002,0.019-0.005,0.029-0.007c0.057-0.013,0.112-0.027,0.167-0.043c0.009-0.003,0.018-0.005,0.027-0.008\r\n\t\t\t\tc0.128-0.038,0.252-0.084,0.372-0.138c0.005-0.002,0.009-0.004,0.014-0.006c0.123-0.056,0.242-0.12,0.355-0.191l0.013,0.02\r\n\t\t\t\tl15.911-9.974C42.405,34.066,43,33.103,43,32C43,30.886,42.393,29.915,41.492,29.398z M32,0C14.327,0,0,14.327,0,32\r\n\t\t\t\tc0,17.673,14.327,32,32,32s32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6\r\n\t\t\t\tc14.359,0,26,11.64,26,26C58,46.36,46.359,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CIRCLE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE","display":"inline"},"children":[{"name":"g","attribs":{"id":"CIRCLE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32S17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tS46.359,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32S17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tS46.359,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SQUARE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SQUARE","display":"inline"},"children":[{"name":"g","attribs":{"id":"SQUARE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z M58,58H6V6h52V58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z M58,58H6V6h52V58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"COMPUTER__x2F__UPLOAD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__UPLOAD","display":"inline"},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__UPLOAD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M25,15c0.829,0,1.579-0.336,2.121-0.879L29,12.243V26c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3V12.243l1.879,1.879C37.422,14.664,38.172,15,39,15c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121l-7-7\r\n\t\t\t\tC33.578,2.336,32.829,2,32,2c-0.828,0-1.578,0.336-2.121,0.879l-7,7C22.336,10.422,22,11.172,22,12C22,13.657,23.343,15,25,15z\r\n\t\t\t\t M60,6H41.485l4,4H59v34H5V10h13.515l4-4H4C2.343,6,1,7.343,1,9v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19\r\n\t\t\t\tc1.657,0,3-1.343,3-3V9C63,7.343,61.657,6,60,6z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M25,15c0.829,0,1.579-0.336,2.121-0.879L29,12.243V26c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3V12.243l1.879,1.879C37.422,14.664,38.172,15,39,15c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121l-7-7\r\n\t\t\t\tC33.578,2.336,32.829,2,32,2c-0.828,0-1.578,0.336-2.121,0.879l-7,7C22.336,10.422,22,11.172,22,12C22,13.657,23.343,15,25,15z\r\n\t\t\t\t M60,6H41.485l4,4H59v34H5V10h13.515l4-4H4C2.343,6,1,7.343,1,9v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19\r\n\t\t\t\tc1.657,0,3-1.343,3-3V9C63,7.343,61.657,6,60,6z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"COMPUTER__x2F__DOWNLOAD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__DOWNLOAD","display":"inline"},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__DOWNLOAD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M22,19c0,0.828,0.336,1.578,0.879,2.121l7,7C30.422,28.664,31.172,29,32,29\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l7-7C41.664,20.579,42,19.828,42,19c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879\r\n\t\t\t\tL35,18.758V5c0-1.657-1.343-3-3-3s-3,1.343-3,3v13.757l-1.879-1.879C26.578,16.336,25.828,16,25,16C23.343,16,22,17.343,22,19z\r\n\t\t\t\t M60,6H38v4h21v34H5V10h21V6H4C2.343,6,1,7.343,1,9v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V9\r\n\t\t\t\tC63,7.343,61.657,6,60,6z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M22,19c0,0.828,0.336,1.578,0.879,2.121l7,7C30.422,28.664,31.172,29,32,29\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l7-7C41.664,20.579,42,19.828,42,19c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879\r\n\t\t\t\tL35,18.758V5c0-1.657-1.343-3-3-3s-3,1.343-3,3v13.757l-1.879-1.879C26.578,16.336,25.828,16,25,16C23.343,16,22,17.343,22,19z\r\n\t\t\t\t M60,6H38v4h21v34H5V10h21V6H4C2.343,6,1,7.343,1,9v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V9\r\n\t\t\t\tC63,7.343,61.657,6,60,6z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"COMPUTER__x2F__DELETE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M60,4H4C2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5\r\n\t\t\t\th19c1.657,0,3-1.343,3-3V7C63,5.343,61.657,4,60,4z M59,42H5V8h54V42z M23,31c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L32,29.243l3.879,3.879C36.422,33.664,37.172,34,38,34c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L36.243,25l3.879-3.879C40.664,20.578,41,19.828,41,19c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L32,20.757l-3.879-3.879C27.578,16.336,26.828,16,26,16c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L27.757,25l-3.879,3.879C23.336,29.422,23,30.172,23,31z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M60,4H4C2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5\r\n\t\t\t\th19c1.657,0,3-1.343,3-3V7C63,5.343,61.657,4,60,4z M59,42H5V8h54V42z M23,31c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L32,29.243l3.879,3.879C36.422,33.664,37.172,34,38,34c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L36.243,25l3.879-3.879C40.664,20.578,41,19.828,41,19c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L32,20.757l-3.879-3.879C27.578,16.336,26.828,16,26,16c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L27.757,25l-3.879,3.879C23.336,29.422,23,30.172,23,31z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"COMPUTER__x2F__OK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M27.879,31.121C28.422,31.664,29.172,32,30,32c0.829,0,1.578-0.336,2.121-0.879\r\n\t\t\t\tl8-8C40.664,22.578,41,21.829,41,21c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L30,24.757l-1.879-1.879\r\n\t\t\t\tC27.578,22.336,26.828,22,26,22c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L27.879,31.121z M60,4H4\r\n\t\t\t\tC2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V7C63,5.343,61.657,4,60,4z\r\n\t\t\t\t M59,42H5V8h54V42z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M27.879,31.121C28.422,31.664,29.172,32,30,32c0.829,0,1.578-0.336,2.121-0.879\r\n\t\t\t\tl8-8C40.664,22.578,41,21.829,41,21c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L30,24.757l-1.879-1.879\r\n\t\t\t\tC27.578,22.336,26.828,22,26,22c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L27.879,31.121z M60,4H4\r\n\t\t\t\tC2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V7C63,5.343,61.657,4,60,4z\r\n\t\t\t\t M59,42H5V8h54V42z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"COMPUTER__x2F__REMOVE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26,28h12c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H26c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC23,26.657,24.343,28,26,28z M60,4H4C2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19\r\n\t\t\t\tc1.657,0,3-1.343,3-3V7C63,5.343,61.657,4,60,4z M59,42H5V8h54V42z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26,28h12c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H26c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC23,26.657,24.343,28,26,28z M60,4H4C2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19\r\n\t\t\t\tc1.657,0,3-1.343,3-3V7C63,5.343,61.657,4,60,4z M59,42H5V8h54V42z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"COMPUTER__x2F__ADD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26,28h3v3c0,1.657,1.343,3,3,3s3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-1.657-1.343-3-3-3h-3v-3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3C23,26.657,24.343,28,26,28z M60,4H4\r\n\t\t\t\tC2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V7C63,5.343,61.657,4,60,4z\r\n\t\t\t\t M59,42H5V8h54V42z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26,28h3v3c0,1.657,1.343,3,3,3s3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-1.657-1.343-3-3-3h-3v-3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3C23,26.657,24.343,28,26,28z M60,4H4\r\n\t\t\t\tC2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V7C63,5.343,61.657,4,60,4z\r\n\t\t\t\t M59,42H5V8h54V42z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"IMAC_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"IMAC","display":"inline"},"children":[{"name":"g","attribs":{"id":"IMAC","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M60,4H4C2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5\r\n\t\t\t\th19c1.657,0,3-1.343,3-3V7C63,5.343,61.657,4,60,4z M59,42H5V8h54V42z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M60,4H4C2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5\r\n\t\t\t\th19c1.657,0,3-1.343,3-3V7C63,5.343,61.657,4,60,4z M59,42H5V8h54V42z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MACBOOK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MACBOOK","display":"inline"},"children":[{"name":"g","attribs":{"id":"MACBOOK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M58,44V15c0-1.657-1.343-3-3-3H9c-1.657,0-3,1.343-3,3v29H0v5\r\n\t\t\t\tc0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3v-5H58z M39,49H25v-2h14V49z M54,42H10V16h44V42z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M58,44V15c0-1.657-1.343-3-3-3H9c-1.657,0-3,1.343-3,3v29H0v5\r\n\t\t\t\tc0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3v-5H58z M39,49H25v-2h14V49z M54,42H10V16h44V42z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"IPAD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"IPAD","display":"inline"},"children":[{"name":"g","attribs":{"id":"IPAD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M54,3H10C8.343,3,7,4.343,7,6v52c0,1.657,1.343,3,3,3h44c1.657,0,3-1.343,3-3V6\r\n\t\t\t\tC57,4.343,55.657,3,54,3z M32,59c-1.105,0-2-0.896-2-2s0.895-2,2-2s2,0.896,2,2S33.105,59,32,59z M51,53H13V9h38V53z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M54,3H10C8.343,3,7,4.343,7,6v52c0,1.657,1.343,3,3,3h44c1.657,0,3-1.343,3-3V6\r\n\t\t\t\tC57,4.343,55.657,3,54,3z M32,59c-1.105,0-2-0.896-2-2s0.895-2,2-2s2,0.896,2,2S33.105,59,32,59z M51,53H13V9h38V53z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"IPHONE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"IPHONE","display":"inline"},"children":[{"name":"g","attribs":{"id":"IPHONE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46,3H18c-1.657,0-3,1.343-3,3v52c0,1.657,1.343,3,3,3h28c1.657,0,3-1.343,3-3\r\n\t\t\t\tV6C49,4.343,47.657,3,46,3z M32,58c-1.105,0-2-0.895-2-2c0-1.105,0.895-2,2-2s2,0.895,2,2C34,57.105,33.105,58,32,58z M46,51H18\r\n\t\t\t\tV9h28V51z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46,3H18c-1.657,0-3,1.343-3,3v52c0,1.657,1.343,3,3,3h28c1.657,0,3-1.343,3-3\r\n\t\t\t\tV6C49,4.343,47.657,3,46,3z M32,58c-1.105,0-2-0.895-2-2c0-1.105,0.895-2,2-2s2,0.895,2,2C34,57.105,33.105,58,32,58z M46,51H18\r\n\t\t\t\tV9h28V51z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"LOGOUT_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"LOGOUT","display":"inline"},"children":[{"name":"g","attribs":{"id":"LOGOUT","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M56,32c0-0.885-0.383-1.681-0.993-2.23l0,0l-10-9l0,0\r\n\t\t\t\tC44.475,20.292,43.772,20,43,20c-1.657,0-3,1.343-3,3c0,0.885,0.384,1.681,0.993,2.23l0,0L45.182,29H27c0,0,0,0,0,0\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3c0,0,0,0,0,0h18.182l-4.189,3.77l0,0C40.384,39.32,40,40.115,40,41\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.772,0,1.475-0.292,2.007-0.77l0,0l10-9l0,0C55.617,33.681,56,32.885,56,32z M26,52H14V12h12\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H11C9.343,6,8,7.343,8,9v46c0,1.657,1.343,3,3,3h15c1.657,0,3-1.343,3-3\r\n\t\t\t\tC29,53.343,27.657,52,26,52z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M56,32c0-0.885-0.383-1.681-0.993-2.23l0,0l-10-9l0,0\r\n\t\t\t\tC44.475,20.292,43.772,20,43,20c-1.657,0-3,1.343-3,3c0,0.885,0.384,1.681,0.993,2.23l0,0L45.182,29H27c0,0,0,0,0,0\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3c0,0,0,0,0,0h18.182l-4.189,3.77l0,0C40.384,39.32,40,40.115,40,41\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.772,0,1.475-0.292,2.007-0.77l0,0l10-9l0,0C55.617,33.681,56,32.885,56,32z M26,52H14V12h12\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H11C9.343,6,8,7.343,8,9v46c0,1.657,1.343,3,3,3h15c1.657,0,3-1.343,3-3\r\n\t\t\t\tC29,53.343,27.657,52,26,52z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"LOGIN_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"LOGIN","display":"inline"},"children":[{"name":"g","attribs":{"id":"LOGIN","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M39.007,34.23C39.617,33.681,40,32.885,40,32c0-0.885-0.384-1.681-0.993-2.23\r\n\t\t\t\tl0,0l-10-9l0,0C28.475,20.292,27.772,20,27,20c-1.657,0-3,1.343-3,3c0,0.885,0.383,1.681,0.993,2.23l0,0L29.182,29H11\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h18.182l-4.189,3.77l0,0C24.384,39.32,24,40.115,24,41c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.772,0,1.475-0.292,2.007-0.77l0,0L39.007,34.23L39.007,34.23z M56,31.932V8.935c0-1.657-1.343-3-3-3H38c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,1.657,1.343,3,3,3h12v40H38c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h15c1.657,0,3-1.343,3-3V31.937c0-0.001,0-0.002,0-0.003\r\n\t\t\t\tC56,31.934,56,31.933,56,31.932z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M39.007,34.23C39.617,33.681,40,32.885,40,32c0-0.885-0.384-1.681-0.993-2.23\r\n\t\t\t\tl0,0l-10-9l0,0C28.475,20.292,27.772,20,27,20c-1.657,0-3,1.343-3,3c0,0.885,0.383,1.681,0.993,2.23l0,0L29.182,29H11\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h18.182l-4.189,3.77l0,0C24.384,39.32,24,40.115,24,41c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.772,0,1.475-0.292,2.007-0.77l0,0L39.007,34.23L39.007,34.23z M56,31.932V8.935c0-1.657-1.343-3-3-3H38c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,1.657,1.343,3,3,3h12v40H38c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h15c1.657,0,3-1.343,3-3V31.937c0-0.001,0-0.002,0-0.003\r\n\t\t\t\tC56,31.934,56,31.933,56,31.932z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"UPLOAD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"UPLOAD","display":"inline"},"children":[{"name":"g","attribs":{"id":"UPLOAD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M23,24c0.885,0,1.681-0.384,2.23-0.993l0,0L29,18.818V37c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3c0,0,0,0,0,0V18.818l3.77,4.189l0,0C39.319,23.617,40.115,24,41,24c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.772-0.292-1.475-0.77-2.007l0,0l-9-10l0,0C33.681,8.384,32.885,8,32,8c-0.885,0-1.681,0.384-2.23,0.993l0,0l-9,10l0,0\r\n\t\t\t\tC20.292,19.525,20,20.228,20,21C20,22.657,21.343,24,23,24z M55,35c-1.657,0-3,1.343-3,3v12H12V38c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v15c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V38C58,36.343,56.657,35,55,35z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M23,24c0.885,0,1.681-0.384,2.23-0.993l0,0L29,18.818V37c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3c0,0,0,0,0,0V18.818l3.77,4.189l0,0C39.319,23.617,40.115,24,41,24c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.772-0.292-1.475-0.77-2.007l0,0l-9-10l0,0C33.681,8.384,32.885,8,32,8c-0.885,0-1.681,0.384-2.23,0.993l0,0l-9,10l0,0\r\n\t\t\t\tC20.292,19.525,20,20.228,20,21C20,22.657,21.343,24,23,24z M55,35c-1.657,0-3,1.343-3,3v12H12V38c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v15c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V38C58,36.343,56.657,35,55,35z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"DOWNLOAD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"DOWNLOAD","display":"inline"},"children":[{"name":"g","attribs":{"id":"DOWNLOAD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M20.77,29.007l9,10l0,0C30.319,39.616,31.115,40,32,40\r\n\t\t\t\tc0.885,0,1.68-0.384,2.23-0.993l0,0l9-10l0,0C43.708,28.475,44,27.772,44,27c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.885,0-1.681,0.383-2.23,0.993l0,0L35,29.182V11c0-1.657-1.343-3-3-3s-3,1.343-3,3v18.182l-3.77-4.189l0,0\r\n\t\t\t\tC24.681,24.384,23.885,24,23,24c-1.657,0-3,1.343-3,3C20,27.772,20.292,28.475,20.77,29.007L20.77,29.007z M55,35\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v12H12V38c0-1.657-1.343-3-3-3s-3,1.343-3,3v15c0,1.657,1.343,3,3,3h22.997c0.001,0,0.002,0,0.003,0\r\n\t\t\t\tc0.001,0,0.002,0,0.003,0H55c1.657,0,3-1.343,3-3V38C58,36.343,56.657,35,55,35z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M20.77,29.007l9,10l0,0C30.319,39.616,31.115,40,32,40\r\n\t\t\t\tc0.885,0,1.68-0.384,2.23-0.993l0,0l9-10l0,0C43.708,28.475,44,27.772,44,27c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.885,0-1.681,0.383-2.23,0.993l0,0L35,29.182V11c0-1.657-1.343-3-3-3s-3,1.343-3,3v18.182l-3.77-4.189l0,0\r\n\t\t\t\tC24.681,24.384,23.885,24,23,24c-1.657,0-3,1.343-3,3C20,27.772,20.292,28.475,20.77,29.007L20.77,29.007z M55,35\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v12H12V38c0-1.657-1.343-3-3-3s-3,1.343-3,3v15c0,1.657,1.343,3,3,3h22.997c0.001,0,0.002,0,0.003,0\r\n\t\t\t\tc0.001,0,0.002,0,0.003,0H55c1.657,0,3-1.343,3-3V38C58,36.343,56.657,35,55,35z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CALENDAR_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CALENDAR","display":"inline"},"children":[{"name":"g","attribs":{"id":"CALENDAR","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M48,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8\r\n\t\t\t\tC45,12.657,46.343,14,48,14z M61,8h-6v3c0,3.866-3.134,7-7,7s-7-3.134-7-7V8H23v3c0,3.866-3.134,7-7,7c-3.866,0-7-3.134-7-7V8H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V11C64,9.343,62.657,8,61,8z M58,58H6V24h52V58z M16,14\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8C13,12.657,14.343,14,16,14z M26.361,39.632\r\n\t\t\t\tc-0.373,0.347-0.785,0.663-1.235,0.949c-0.451,0.286-0.875,0.568-1.274,0.845c-0.78,0.538-1.521,1.066-2.223,1.586\r\n\t\t\t\tc-0.702,0.52-1.313,1.088-1.833,1.703c-0.52,0.615-0.932,1.313-1.235,2.093c-0.304,0.78-0.455,1.699-0.455,2.756H31.47v-3.172\r\n\t\t\t\th-8.606c0.451-0.624,0.97-1.17,1.56-1.638c0.589-0.468,1.196-0.905,1.82-1.313c0.624-0.407,1.244-0.819,1.859-1.235\r\n\t\t\t\tc0.615-0.416,1.166-0.88,1.651-1.391c0.485-0.511,0.875-1.096,1.17-1.755c0.294-0.659,0.442-1.447,0.442-2.366\r\n\t\t\t\tc0-0.884-0.169-1.681-0.507-2.392c-0.338-0.71-0.793-1.308-1.365-1.794c-0.572-0.485-1.235-0.858-1.989-1.118\r\n\t\t\t\tC26.751,31.13,25.958,31,25.126,31c-1.092,0-2.058,0.187-2.899,0.559c-0.841,0.373-1.539,0.893-2.093,1.56\r\n\t\t\t\tc-0.555,0.667-0.971,1.447-1.248,2.34c-0.277,0.893-0.399,1.859-0.364,2.899h3.536c0-0.485,0.048-0.975,0.143-1.469\r\n\t\t\t\tc0.095-0.494,0.255-0.945,0.481-1.352c0.225-0.407,0.524-0.737,0.897-0.988c0.373-0.251,0.828-0.377,1.365-0.377\r\n\t\t\t\tc0.797,0,1.452,0.247,1.963,0.741c0.511,0.494,0.767,1.183,0.767,2.067c0,0.555-0.126,1.049-0.377,1.482\r\n\t\t\t\tC27.045,38.895,26.733,39.285,26.361,39.632z M41.467,45.807c-0.269,0.321-0.598,0.581-0.988,0.78\r\n\t\t\t\tc-0.39,0.199-0.828,0.299-1.313,0.299c-0.832,0-1.517-0.247-2.054-0.741c-0.537-0.494-0.85-1.157-0.936-1.989h-3.692\r\n\t\t\t\tc0.017,0.953,0.212,1.79,0.585,2.509c0.373,0.719,0.871,1.322,1.495,1.807c0.624,0.485,1.339,0.845,2.145,1.079\r\n\t\t\t\tc0.806,0.234,1.651,0.351,2.535,0.351c0.919,0.017,1.785-0.134,2.6-0.455c0.815-0.321,1.529-0.776,2.145-1.365\r\n\t\t\t\tc0.615-0.589,1.105-1.287,1.469-2.093c0.364-0.806,0.546-1.677,0.546-2.613c0-0.849-0.126-1.651-0.377-2.405\r\n\t\t\t\tc-0.252-0.754-0.616-1.408-1.092-1.963c-0.477-0.555-1.062-0.997-1.755-1.326c-0.693-0.329-1.491-0.494-2.392-0.494\r\n\t\t\t\tc-0.728,0-1.378,0.109-1.95,0.325c-0.572,0.217-1.109,0.576-1.612,1.079l-0.052-0.052l0.728-4.134h7.514v-3.042H34.85\r\n\t\t\t\tl-1.794,10.062h3.328c0.364-0.503,0.754-0.871,1.17-1.105c0.416-0.234,0.953-0.351,1.612-0.351c0.503,0,0.945,0.087,1.326,0.26\r\n\t\t\t\tc0.381,0.173,0.711,0.416,0.988,0.728c0.277,0.312,0.485,0.676,0.624,1.092c0.139,0.416,0.208,0.858,0.208,1.326\r\n\t\t\t\tc0,0.451-0.074,0.889-0.221,1.313C41.943,45.114,41.735,45.486,41.467,45.807z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M48,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8\r\n\t\t\t\tC45,12.657,46.343,14,48,14z M61,8h-6v3c0,3.866-3.134,7-7,7s-7-3.134-7-7V8H23v3c0,3.866-3.134,7-7,7c-3.866,0-7-3.134-7-7V8H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V11C64,9.343,62.657,8,61,8z M58,58H6V24h52V58z M16,14\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8C13,12.657,14.343,14,16,14z M26.361,39.632\r\n\t\t\t\tc-0.373,0.347-0.785,0.663-1.235,0.949c-0.451,0.286-0.875,0.568-1.274,0.845c-0.78,0.538-1.521,1.066-2.223,1.586\r\n\t\t\t\tc-0.702,0.52-1.313,1.088-1.833,1.703c-0.52,0.615-0.932,1.313-1.235,2.093c-0.304,0.78-0.455,1.699-0.455,2.756H31.47v-3.172\r\n\t\t\t\th-8.606c0.451-0.624,0.97-1.17,1.56-1.638c0.589-0.468,1.196-0.905,1.82-1.313c0.624-0.407,1.244-0.819,1.859-1.235\r\n\t\t\t\tc0.615-0.416,1.166-0.88,1.651-1.391c0.485-0.511,0.875-1.096,1.17-1.755c0.294-0.659,0.442-1.447,0.442-2.366\r\n\t\t\t\tc0-0.884-0.169-1.681-0.507-2.392c-0.338-0.71-0.793-1.308-1.365-1.794c-0.572-0.485-1.235-0.858-1.989-1.118\r\n\t\t\t\tC26.751,31.13,25.958,31,25.126,31c-1.092,0-2.058,0.187-2.899,0.559c-0.841,0.373-1.539,0.893-2.093,1.56\r\n\t\t\t\tc-0.555,0.667-0.971,1.447-1.248,2.34c-0.277,0.893-0.399,1.859-0.364,2.899h3.536c0-0.485,0.048-0.975,0.143-1.469\r\n\t\t\t\tc0.095-0.494,0.255-0.945,0.481-1.352c0.225-0.407,0.524-0.737,0.897-0.988c0.373-0.251,0.828-0.377,1.365-0.377\r\n\t\t\t\tc0.797,0,1.452,0.247,1.963,0.741c0.511,0.494,0.767,1.183,0.767,2.067c0,0.555-0.126,1.049-0.377,1.482\r\n\t\t\t\tC27.045,38.895,26.733,39.285,26.361,39.632z M41.467,45.807c-0.269,0.321-0.598,0.581-0.988,0.78\r\n\t\t\t\tc-0.39,0.199-0.828,0.299-1.313,0.299c-0.832,0-1.517-0.247-2.054-0.741c-0.537-0.494-0.85-1.157-0.936-1.989h-3.692\r\n\t\t\t\tc0.017,0.953,0.212,1.79,0.585,2.509c0.373,0.719,0.871,1.322,1.495,1.807c0.624,0.485,1.339,0.845,2.145,1.079\r\n\t\t\t\tc0.806,0.234,1.651,0.351,2.535,0.351c0.919,0.017,1.785-0.134,2.6-0.455c0.815-0.321,1.529-0.776,2.145-1.365\r\n\t\t\t\tc0.615-0.589,1.105-1.287,1.469-2.093c0.364-0.806,0.546-1.677,0.546-2.613c0-0.849-0.126-1.651-0.377-2.405\r\n\t\t\t\tc-0.252-0.754-0.616-1.408-1.092-1.963c-0.477-0.555-1.062-0.997-1.755-1.326c-0.693-0.329-1.491-0.494-2.392-0.494\r\n\t\t\t\tc-0.728,0-1.378,0.109-1.95,0.325c-0.572,0.217-1.109,0.576-1.612,1.079l-0.052-0.052l0.728-4.134h7.514v-3.042H34.85\r\n\t\t\t\tl-1.794,10.062h3.328c0.364-0.503,0.754-0.871,1.17-1.105c0.416-0.234,0.953-0.351,1.612-0.351c0.503,0,0.945,0.087,1.326,0.26\r\n\t\t\t\tc0.381,0.173,0.711,0.416,0.988,0.728c0.277,0.312,0.485,0.676,0.624,1.092c0.139,0.416,0.208,0.858,0.208,1.326\r\n\t\t\t\tc0,0.451-0.074,0.889-0.221,1.313C41.943,45.114,41.735,45.486,41.467,45.807z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CALENDAR__x2F__ADD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CALENDAR__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{"id":"CALENDAR__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M16,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8\r\n\t\t\t\tC13,12.657,14.343,14,16,14z M25.126,31c-0.001,0-0.002,0-0.003,0h0.007C25.128,31,25.127,31,25.126,31z M48,14\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8C45,12.657,46.343,14,48,14z M25,44h4v4c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3v-4h4c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-4v-4c0-1.657-1.343-3-3-3s-3,1.343-3,3v4h-4c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC22,42.657,23.343,44,25,44z M61,8h-6v3c0,3.866-3.134,7-7,7s-7-3.134-7-7V8H23v3c0,3.866-3.134,7-7,7c-3.866,0-7-3.134-7-7V8H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V11C64,9.343,62.657,8,61,8z M58,58H6V24h52V58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M16,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8\r\n\t\t\t\tC13,12.657,14.343,14,16,14z M25.126,31c-0.001,0-0.002,0-0.003,0h0.007C25.128,31,25.127,31,25.126,31z M48,14\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8C45,12.657,46.343,14,48,14z M25,44h4v4c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3v-4h4c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-4v-4c0-1.657-1.343-3-3-3s-3,1.343-3,3v4h-4c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC22,42.657,23.343,44,25,44z M61,8h-6v3c0,3.866-3.134,7-7,7s-7-3.134-7-7V8H23v3c0,3.866-3.134,7-7,7c-3.866,0-7-3.134-7-7V8H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V11C64,9.343,62.657,8,61,8z M58,58H6V24h52V58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CALENDAR__x2F__OK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CALENDAR__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{"id":"CALENDAR__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M48,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v8\r\n\t\t\t\tC45,12.657,46.343,14,48,14z M61,8h-6v3c0,3.866-3.134,7-7,7s-7-3.134-7-7V8H23v3c0,3.866-3.134,7-7,7c-3.866,0-7-3.134-7-7V8H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V11C64,9.343,62.657,8,61,8z M58,58H6V24h52V58z M16,14\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v8C13,12.657,14.343,14,16,14z M26.879,50.121\r\n\t\t\t\tC27.422,50.664,28.172,51,29,51c0.828,0,1.578-0.336,2.121-0.879l14-14C45.664,35.579,46,34.828,46,34c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L29,43.757l-4.879-4.879C23.578,38.336,22.828,38,22,38c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L26.879,50.121z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M48,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v8\r\n\t\t\t\tC45,12.657,46.343,14,48,14z M61,8h-6v3c0,3.866-3.134,7-7,7s-7-3.134-7-7V8H23v3c0,3.866-3.134,7-7,7c-3.866,0-7-3.134-7-7V8H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V11C64,9.343,62.657,8,61,8z M58,58H6V24h52V58z M16,14\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v8C13,12.657,14.343,14,16,14z M26.879,50.121\r\n\t\t\t\tC27.422,50.664,28.172,51,29,51c0.828,0,1.578-0.336,2.121-0.879l14-14C45.664,35.579,46,34.828,46,34c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L29,43.757l-4.879-4.879C23.578,38.336,22.828,38,22,38c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L26.879,50.121z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"NOTEPAD__x2F__REMOVE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"NOTEPAD__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{"id":"NOTEPAD__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC43,10.657,44.343,12,46,12z M31,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC28,10.657,29.343,12,31,12z M42,55c0-3.314,2.686-6,6-6h12V9c0-1.657-1.343-3-3-3h-5v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3\r\n\t\t\t\tc0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6H5C3.343,6,2,7.343,2,9v52\r\n\t\t\t\tc0,1.657,1.343,3,3,3h52c1.657,0,3-1.343,3-3H48C44.686,61,42,58.314,42,55z M13,23h36c1.657,0,3,1.343,3,3c0,1.657-1.343,3-3,3\r\n\t\t\t\tH13c-1.657,0-3-1.343-3-3C10,24.343,11.343,23,13,23z M13,36h36c1.657,0,3,1.343,3,3s-1.343,3-3,3H13c-1.657,0-3-1.343-3-3\r\n\t\t\t\tS11.343,36,13,36z M31.5,54h-19c-1.381,0-2.5-1.119-2.5-2.5c0-1.381,1.119-2.5,2.5-2.5h19c1.381,0,2.5,1.119,2.5,2.5\r\n\t\t\t\tC34,52.881,32.881,54,31.5,54z M16,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C13,10.657,14.343,12,16,12z\r\n\t\t\t\t M60,52H48c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3C63,53.343,61.657,52,60,52z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC43,10.657,44.343,12,46,12z M31,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC28,10.657,29.343,12,31,12z M42,55c0-3.314,2.686-6,6-6h12V9c0-1.657-1.343-3-3-3h-5v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3\r\n\t\t\t\tc0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6H5C3.343,6,2,7.343,2,9v52\r\n\t\t\t\tc0,1.657,1.343,3,3,3h52c1.657,0,3-1.343,3-3H48C44.686,61,42,58.314,42,55z M13,23h36c1.657,0,3,1.343,3,3c0,1.657-1.343,3-3,3\r\n\t\t\t\tH13c-1.657,0-3-1.343-3-3C10,24.343,11.343,23,13,23z M13,36h36c1.657,0,3,1.343,3,3s-1.343,3-3,3H13c-1.657,0-3-1.343-3-3\r\n\t\t\t\tS11.343,36,13,36z M31.5,54h-19c-1.381,0-2.5-1.119-2.5-2.5c0-1.381,1.119-2.5,2.5-2.5h19c1.381,0,2.5,1.119,2.5,2.5\r\n\t\t\t\tC34,52.881,32.881,54,31.5,54z M16,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C13,10.657,14.343,12,16,12z\r\n\t\t\t\t M60,52H48c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3C63,53.343,61.657,52,60,52z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"NOTEPAD__x2F__ADD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"NOTEPAD__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{"id":"NOTEPAD__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC43,10.657,44.343,12,46,12z M31,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C28,10.657,29.343,12,31,12z\r\n\t\t\t\t M60,52h-3v-3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h3v3c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3C63,53.343,61.657,52,60,52z M42,55c0-3.314,2.686-6,6-6c0-3.314,2.686-6,6-6s6,2.686,6,6\r\n\t\t\t\tV9c0-1.657-1.343-3-3-3h-5v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3\r\n\t\t\t\tc0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6V6H5C3.343,6,2,7.343,2,9v52c0,1.657,1.343,3,3,3h43v-3C44.686,61,42,58.314,42,55z\r\n\t\t\t\t M13,23h36c1.657,0,3,1.343,3,3c0,1.657-1.343,3-3,3H13c-1.657,0-3-1.343-3-3C10,24.343,11.343,23,13,23z M31.5,54h-19\r\n\t\t\t\tc-1.381,0-2.5-1.119-2.5-2.5c0-1.381,1.119-2.5,2.5-2.5h19c1.381,0,2.5,1.119,2.5,2.5C34,52.881,32.881,54,31.5,54z M39,42H13\r\n\t\t\t\tc-1.657,0-3-1.343-3-3s1.343-3,3-3h26c1.657,0,3,1.343,3,3S40.657,42,39,42z M16,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v6C13,10.657,14.343,12,16,12z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC43,10.657,44.343,12,46,12z M31,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C28,10.657,29.343,12,31,12z\r\n\t\t\t\t M60,52h-3v-3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h3v3c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3C63,53.343,61.657,52,60,52z M42,55c0-3.314,2.686-6,6-6c0-3.314,2.686-6,6-6s6,2.686,6,6\r\n\t\t\t\tV9c0-1.657-1.343-3-3-3h-5v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3\r\n\t\t\t\tc0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6V6H5C3.343,6,2,7.343,2,9v52c0,1.657,1.343,3,3,3h43v-3C44.686,61,42,58.314,42,55z\r\n\t\t\t\t M13,23h36c1.657,0,3,1.343,3,3c0,1.657-1.343,3-3,3H13c-1.657,0-3-1.343-3-3C10,24.343,11.343,23,13,23z M31.5,54h-19\r\n\t\t\t\tc-1.381,0-2.5-1.119-2.5-2.5c0-1.381,1.119-2.5,2.5-2.5h19c1.381,0,2.5,1.119,2.5,2.5C34,52.881,32.881,54,31.5,54z M39,42H13\r\n\t\t\t\tc-1.657,0-3-1.343-3-3s1.343-3,3-3h26c1.657,0,3,1.343,3,3S40.657,42,39,42z M16,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v6C13,10.657,14.343,12,16,12z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"NOTEPAD__x2F__DELETE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"NOTEPAD__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{"id":"NOTEPAD__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6\r\n\t\t\t\tC43,10.657,44.343,12,46,12z M31,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC28,10.657,29.343,12,31,12z M58.243,55l3.879-3.879C62.664,50.579,63,49.828,63,49c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L54,50.757l-3.879-3.879C49.578,46.336,48.828,46,48,46c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L49.757,55l-3.879,3.879C45.336,59.422,45,60.172,45,61c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L54,59.243l3.879,3.879C58.422,63.664,59.172,64,60,64c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.829-0.336-1.578-0.879-2.121L58.243,55z M16,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC13,10.657,14.343,12,16,12z M43.757,56.758L45.515,55l-1.757-1.757C42.672,52.157,42,50.657,42,49c0-3.314,2.686-6,6-6\r\n\t\t\t\tc1.657,0,3.157,0.672,4.243,1.757L54,46.515l1.757-1.758l0.015,0.016C56.854,43.682,58.341,43,60,43V9c0-1.657-1.343-3-3-3h-5v3\r\n\t\t\t\tc0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6\r\n\t\t\t\tH5C3.343,6,2,7.343,2,9v52c0,1.657,1.343,3,3,3h37.832C42.317,63.114,42,62.099,42,61c0-1.659,0.682-3.146,1.773-4.227\r\n\t\t\t\tL43.757,56.758z M31.5,54h-19c-1.381,0-2.5-1.119-2.5-2.5c0-1.381,1.119-2.5,2.5-2.5h19c1.381,0,2.5,1.119,2.5,2.5\r\n\t\t\t\tC34,52.881,32.881,54,31.5,54z M37,42H13c-1.657,0-3-1.343-3-3c0-1.657,1.343-3,3-3h24c1.657,0,3,1.343,3,3\r\n\t\t\t\tC40,40.657,38.657,42,37,42z M13,29c-1.657,0-3-1.343-3-3s1.343-3,3-3h36c1.657,0,3,1.343,3,3s-1.343,3-3,3H13z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6\r\n\t\t\t\tC43,10.657,44.343,12,46,12z M31,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC28,10.657,29.343,12,31,12z M58.243,55l3.879-3.879C62.664,50.579,63,49.828,63,49c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L54,50.757l-3.879-3.879C49.578,46.336,48.828,46,48,46c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L49.757,55l-3.879,3.879C45.336,59.422,45,60.172,45,61c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L54,59.243l3.879,3.879C58.422,63.664,59.172,64,60,64c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.829-0.336-1.578-0.879-2.121L58.243,55z M16,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC13,10.657,14.343,12,16,12z M43.757,56.758L45.515,55l-1.757-1.757C42.672,52.157,42,50.657,42,49c0-3.314,2.686-6,6-6\r\n\t\t\t\tc1.657,0,3.157,0.672,4.243,1.757L54,46.515l1.757-1.758l0.015,0.016C56.854,43.682,58.341,43,60,43V9c0-1.657-1.343-3-3-3h-5v3\r\n\t\t\t\tc0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6\r\n\t\t\t\tH5C3.343,6,2,7.343,2,9v52c0,1.657,1.343,3,3,3h37.832C42.317,63.114,42,62.099,42,61c0-1.659,0.682-3.146,1.773-4.227\r\n\t\t\t\tL43.757,56.758z M31.5,54h-19c-1.381,0-2.5-1.119-2.5-2.5c0-1.381,1.119-2.5,2.5-2.5h19c1.381,0,2.5,1.119,2.5,2.5\r\n\t\t\t\tC34,52.881,32.881,54,31.5,54z M37,42H13c-1.657,0-3-1.343-3-3c0-1.657,1.343-3,3-3h24c1.657,0,3,1.343,3,3\r\n\t\t\t\tC40,40.657,38.657,42,37,42z M13,29c-1.657,0-3-1.343-3-3s1.343-3,3-3h36c1.657,0,3,1.343,3,3s-1.343,3-3,3H13z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"NOTEPAD__x2F__OK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"NOTEPAD__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{"id":"NOTEPAD__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC28,10.657,29.343,12,31,12z M46,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C43,10.657,44.343,12,46,12z\r\n\t\t\t\t M16,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6C13,10.657,14.343,12,16,12z M60,50\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L52,56.758l-1.879-1.879C49.578,54.336,48.829,54,48,54c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121l4,4C50.422,63.664,51.172,64,52,64s1.578-0.336,2.121-0.879l8-8C62.664,54.578,63,53.828,63,53\r\n\t\t\t\tC63,51.343,61.657,50,60,50z M43.775,61.225C42.683,60.147,42,58.659,42,57c0-3.314,2.686-6,6-6c1.535,0,2.908,0.602,3.961,1.554\r\n\t\t\t\tl3.797-3.797C56.843,47.672,58.343,47,60,47V9c0-1.657-1.343-3-3-3h-5v3c0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6V6h-3v3\r\n\t\t\t\tc0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6H5C3.343,6,2,7.343,2,9v52c0,1.657,1.343,3,3,3\r\n\t\t\t\th41.515l-2.757-2.757L43.775,61.225z M13,23h36c1.657,0,3,1.343,3,3c0,1.657-1.343,3-3,3H13c-1.657,0-3-1.343-3-3\r\n\t\t\t\tC10,24.343,11.343,23,13,23z M13,36h36c1.657,0,3,1.343,3,3s-1.343,3-3,3H13c-1.657,0-3-1.343-3-3S11.343,36,13,36z M31.5,54h-19\r\n\t\t\t\tc-1.381,0-2.5-1.119-2.5-2.5c0-1.381,1.119-2.5,2.5-2.5h19c1.381,0,2.5,1.119,2.5,2.5C34,52.881,32.881,54,31.5,54z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC28,10.657,29.343,12,31,12z M46,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C43,10.657,44.343,12,46,12z\r\n\t\t\t\t M16,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6C13,10.657,14.343,12,16,12z M60,50\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L52,56.758l-1.879-1.879C49.578,54.336,48.829,54,48,54c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121l4,4C50.422,63.664,51.172,64,52,64s1.578-0.336,2.121-0.879l8-8C62.664,54.578,63,53.828,63,53\r\n\t\t\t\tC63,51.343,61.657,50,60,50z M43.775,61.225C42.683,60.147,42,58.659,42,57c0-3.314,2.686-6,6-6c1.535,0,2.908,0.602,3.961,1.554\r\n\t\t\t\tl3.797-3.797C56.843,47.672,58.343,47,60,47V9c0-1.657-1.343-3-3-3h-5v3c0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6V6h-3v3\r\n\t\t\t\tc0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6H5C3.343,6,2,7.343,2,9v52c0,1.657,1.343,3,3,3\r\n\t\t\t\th41.515l-2.757-2.757L43.775,61.225z M13,23h36c1.657,0,3,1.343,3,3c0,1.657-1.343,3-3,3H13c-1.657,0-3-1.343-3-3\r\n\t\t\t\tC10,24.343,11.343,23,13,23z M13,36h36c1.657,0,3,1.343,3,3s-1.343,3-3,3H13c-1.657,0-3-1.343-3-3S11.343,36,13,36z M31.5,54h-19\r\n\t\t\t\tc-1.381,0-2.5-1.119-2.5-2.5c0-1.381,1.119-2.5,2.5-2.5h19c1.381,0,2.5,1.119,2.5,2.5C34,52.881,32.881,54,31.5,54z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"NOTEPAD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"NOTEPAD","display":"inline"},"children":[{"name":"g","attribs":{"id":"NOTEPAD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC29,10.657,30.343,12,32,12z M47,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC44,10.657,45.343,12,47,12z M17,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C14,10.657,15.343,12,17,12z M58,6\r\n\t\t\t\th-5v3c0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6\r\n\t\t\t\ts-6-2.686-6-6V6H6C4.343,6,3,7.343,3,9v52c0,1.657,1.343,3,3,3h52c1.657,0,3-1.343,3-3V9C61,7.343,59.657,6,58,6z M50.5,54h-37\r\n\t\t\t\tc-1.381,0-2.5-1.119-2.5-2.5c0-1.381,1.119-2.5,2.5-2.5h37c1.381,0,2.5,1.119,2.5,2.5C53,52.881,51.881,54,50.5,54z M50,42H14\r\n\t\t\t\tc-1.657,0-3-1.343-3-3s1.343-3,3-3h36c1.657,0,3,1.343,3,3S51.657,42,50,42z M50,29H14c-1.657,0-3-1.343-3-3c0-1.657,1.343-3,3-3\r\n\t\t\t\th36c1.657,0,3,1.343,3,3C53,27.657,51.657,29,50,29z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC29,10.657,30.343,12,32,12z M47,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC44,10.657,45.343,12,47,12z M17,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C14,10.657,15.343,12,17,12z M58,6\r\n\t\t\t\th-5v3c0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6\r\n\t\t\t\ts-6-2.686-6-6V6H6C4.343,6,3,7.343,3,9v52c0,1.657,1.343,3,3,3h52c1.657,0,3-1.343,3-3V9C61,7.343,59.657,6,58,6z M50.5,54h-37\r\n\t\t\t\tc-1.381,0-2.5-1.119-2.5-2.5c0-1.381,1.119-2.5,2.5-2.5h37c1.381,0,2.5,1.119,2.5,2.5C53,52.881,51.881,54,50.5,54z M50,42H14\r\n\t\t\t\tc-1.657,0-3-1.343-3-3s1.343-3,3-3h36c1.657,0,3,1.343,3,3S51.657,42,50,42z M50,29H14c-1.657,0-3-1.343-3-3c0-1.657,1.343-3,3-3\r\n\t\t\t\th36c1.657,0,3,1.343,3,3C53,27.657,51.657,29,50,29z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MICROPHONE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MICROPHONE","display":"inline"},"children":[{"name":"g","attribs":{"id":"MICROPHONE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,40c6.627,0,12-5.373,12-12V12c0-6.627-5.373-12-12-12\r\n\t\t\t\tc-6.627,0-12,5.373-12,12v16C20,34.628,25.373,40,32,40z M54,29.023c0-0.005,0-0.01-0.001-0.015C53.999,29.005,54,29.003,54,29\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3h0c-0.004,8.835-7.165,15.996-16,16c-8.835-0.004-15.996-7.165-16-16h0c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.003,0.001,0.005,0.001,0.008C10,29.013,10,29.018,10,29.023c0,11.125,8.274,20.296,19,21.752V58H19\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h26c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H35v-7.225\r\n\t\t\t\tC45.726,49.319,54,40.148,54,29.023z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,40c6.627,0,12-5.373,12-12V12c0-6.627-5.373-12-12-12\r\n\t\t\t\tc-6.627,0-12,5.373-12,12v16C20,34.628,25.373,40,32,40z M54,29.023c0-0.005,0-0.01-0.001-0.015C53.999,29.005,54,29.003,54,29\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3h0c-0.004,8.835-7.165,15.996-16,16c-8.835-0.004-15.996-7.165-16-16h0c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.003,0.001,0.005,0.001,0.008C10,29.013,10,29.018,10,29.023c0,11.125,8.274,20.296,19,21.752V58H19\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h26c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H35v-7.225\r\n\t\t\t\tC45.726,49.319,54,40.148,54,29.023z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MICROPHONE__x2F__OFF_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MICROPHONE__x2F__OFF","display":"inline"},"children":[{"name":"g","attribs":{"id":"MICROPHONE__x2F__OFF","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M12.631,39.405l5.051-3.302C16.617,33.961,16.002,31.555,16,29h0\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3c0,0.003,0.001,0.005,0.001,0.008C10,29.013,10,29.018,10,29.023\r\n\t\t\t\tC10,32.785,10.964,36.313,12.631,39.405z M44,18.895V12c0-6.627-5.373-12-12-12c-6.627,0-12,5.373-12,12v16\r\n\t\t\t\tc0,2.047,0.515,3.973,1.419,5.659L44,18.895z M59.5,15.1c0-0.829-0.672-1.5-1.5-1.5c-0.303,0-0.585,0.091-0.821,0.246l0-0.001\r\n\t\t\t\tl-0.017,0.011c0,0,0,0,0,0L5.079,47.945l0,0.001C4.67,48.214,4.4,48.675,4.4,49.2c0,0.829,0.672,1.5,1.5,1.5\r\n\t\t\t\tc0.303,0,0.585-0.091,0.821-0.246l0,0.001l0.017-0.011c0,0,0,0,0,0l52.083-34.089l0-0.001C59.23,16.087,59.5,15.625,59.5,15.1z\r\n\t\t\t\t M43.86,29.739l-15.026,9.825C29.844,39.841,30.902,40,32,40C38.035,40,43.015,35.54,43.86,29.739z M51,26c-1.657,0-3,1.343-3,3\r\n\t\t\t\th0c-0.004,8.092-6.017,14.759-13.816,15.829c-0.24,0.034-0.481,0.062-0.723,0.086c-0.441,0.04-0.885,0.074-1.336,0.078l0,0.002\r\n\t\t\t\tc-0.04,0-0.078,0.005-0.118,0.005c-2.959,0-5.72-0.817-8.098-2.216l-5.431,3.551c2.987,2.326,6.586,3.906,10.521,4.441V58H19\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h26c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H35v-7.225\r\n\t\t\t\tc10.726-1.456,19-10.627,19-21.752c0-0.005,0-0.01-0.001-0.015C53.999,29.005,54,29.003,54,29C54,27.343,52.657,26,51,26z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M12.631,39.405l5.051-3.302C16.617,33.961,16.002,31.555,16,29h0\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3c0,0.003,0.001,0.005,0.001,0.008C10,29.013,10,29.018,10,29.023\r\n\t\t\t\tC10,32.785,10.964,36.313,12.631,39.405z M44,18.895V12c0-6.627-5.373-12-12-12c-6.627,0-12,5.373-12,12v16\r\n\t\t\t\tc0,2.047,0.515,3.973,1.419,5.659L44,18.895z M59.5,15.1c0-0.829-0.672-1.5-1.5-1.5c-0.303,0-0.585,0.091-0.821,0.246l0-0.001\r\n\t\t\t\tl-0.017,0.011c0,0,0,0,0,0L5.079,47.945l0,0.001C4.67,48.214,4.4,48.675,4.4,49.2c0,0.829,0.672,1.5,1.5,1.5\r\n\t\t\t\tc0.303,0,0.585-0.091,0.821-0.246l0,0.001l0.017-0.011c0,0,0,0,0,0l52.083-34.089l0-0.001C59.23,16.087,59.5,15.625,59.5,15.1z\r\n\t\t\t\t M43.86,29.739l-15.026,9.825C29.844,39.841,30.902,40,32,40C38.035,40,43.015,35.54,43.86,29.739z M51,26c-1.657,0-3,1.343-3,3\r\n\t\t\t\th0c-0.004,8.092-6.017,14.759-13.816,15.829c-0.24,0.034-0.481,0.062-0.723,0.086c-0.441,0.04-0.885,0.074-1.336,0.078l0,0.002\r\n\t\t\t\tc-0.04,0-0.078,0.005-0.118,0.005c-2.959,0-5.72-0.817-8.098-2.216l-5.431,3.551c2.987,2.326,6.586,3.906,10.521,4.441V58H19\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h26c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H35v-7.225\r\n\t\t\t\tc10.726-1.456,19-10.627,19-21.752c0-0.005,0-0.01-0.001-0.015C53.999,29.005,54,29.003,54,29C54,27.343,52.657,26,51,26z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BELL_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BELL","display":"inline"},"children":[{"name":"g","attribs":{"id":"BELL","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M52,45c-1.657,0-3-1.343-3-3V22c0-7.732-6.268-14-14-14c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3c-7.732,0-14,6.268-14,14v20c0,1.657-1.343,3-3,3s-3,1.343-3,3c0,1.657,1.343,3,3,3h40c1.657,0,3-1.343,3-3\r\n\t\t\t\tC55,46.343,53.657,45,52,45z M32,60c3.314,0,6-2.686,6-6H26C26,57.314,28.686,60,32,60z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M52,45c-1.657,0-3-1.343-3-3V22c0-7.732-6.268-14-14-14c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3c-7.732,0-14,6.268-14,14v20c0,1.657-1.343,3-3,3s-3,1.343-3,3c0,1.657,1.343,3,3,3h40c1.657,0,3-1.343,3-3\r\n\t\t\t\tC55,46.343,53.657,45,52,45z M32,60c3.314,0,6-2.686,6-6H26C26,57.314,28.686,60,32,60z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"EJECT_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"EJECT","display":"inline"},"children":[{"name":"g","attribs":{"id":"EJECT","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M42,42H22c-1.657,0-3,1.343-3,3s1.343,3,3,3h20c1.657,0,3-1.343,3-3\r\n\t\t\t\tS43.657,42,42,42z M22,39h20c1.657,0,3-1.343,3-3c0-0.584-0.167-1.129-0.456-1.59l0,0l-9.976-15.962\r\n\t\t\t\tc-0.003-0.005-0.006-0.01-0.01-0.016l-0.014-0.022l0,0C34.013,17.563,33.073,17,32,17c-1.073,0-2.013,0.563-2.544,1.41l0,0\r\n\t\t\t\tl-0.014,0.022c-0.003,0.005-0.007,0.01-0.01,0.016L19.456,34.41l0,0C19.168,34.871,19,35.416,19,36C19,37.657,20.343,39,22,39z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M42,42H22c-1.657,0-3,1.343-3,3s1.343,3,3,3h20c1.657,0,3-1.343,3-3\r\n\t\t\t\tS43.657,42,42,42z M22,39h20c1.657,0,3-1.343,3-3c0-0.584-0.167-1.129-0.456-1.59l0,0l-9.976-15.962\r\n\t\t\t\tc-0.003-0.005-0.006-0.01-0.01-0.016l-0.014-0.022l0,0C34.013,17.563,33.073,17,32,17c-1.073,0-2.013,0.563-2.544,1.41l0,0\r\n\t\t\t\tl-0.014,0.022c-0.003,0.005-0.007,0.01-0.01,0.016L19.456,34.41l0,0C19.168,34.871,19,35.416,19,36C19,37.657,20.343,39,22,39z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SKIP__x2F__NEXT_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SKIP__x2F__NEXT","display":"inline"},"children":[{"name":"g","attribs":{"id":"SKIP__x2F__NEXT","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M41,19c-1.657,0-3,1.343-3,3v5.837l-13.41-8.381l0,0\r\n\t\t\t\tC24.129,19.168,23.584,19,23,19c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3c0.584,0,1.129-0.167,1.59-0.456l0,0L38,36.163V42\r\n\t\t\t\tc0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V22C44,20.343,42.657,19,41,19z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M41,19c-1.657,0-3,1.343-3,3v5.837l-13.41-8.381l0,0\r\n\t\t\t\tC24.129,19.168,23.584,19,23,19c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3c0.584,0,1.129-0.167,1.59-0.456l0,0L38,36.163V42\r\n\t\t\t\tc0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V22C44,20.343,42.657,19,41,19z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SKIP__x2F__PREVIOUS_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SKIP__x2F__PREVIOUS","display":"inline"},"children":[{"name":"g","attribs":{"id":"SKIP__x2F__PREVIOUS","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M41,19c-0.584,0-1.129,0.168-1.59,0.456l0,0L26,27.837V22c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v20c0,1.657,1.343,3,3,3s3-1.343,3-3v-5.837l13.41,8.381l0,0C39.871,44.833,40.416,45,41,45c1.657,0,3-1.343,3-3V22\r\n\t\t\t\tC44,20.343,42.657,19,41,19z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M41,19c-0.584,0-1.129,0.168-1.59,0.456l0,0L26,27.837V22c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v20c0,1.657,1.343,3,3,3s3-1.343,3-3v-5.837l13.41,8.381l0,0C39.871,44.833,40.416,45,41,45c1.657,0,3-1.343,3-3V22\r\n\t\t\t\tC44,20.343,42.657,19,41,19z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"FAST_FORWARD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"FAST_FORWARD","display":"inline"},"children":[{"name":"g","attribs":{"id":"FAST_FORWARD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M51,32c0-1.073-0.563-2.013-1.41-2.544l0,0l-0.022-0.014\r\n\t\t\t\tc-0.005-0.003-0.01-0.007-0.016-0.01L33.59,19.456l0,0C33.129,19.168,32.584,19,32,19c-1.657,0-3,1.343-3,3v4.587l-11.41-7.131\r\n\t\t\t\tl0,0C17.129,19.168,16.584,19,16,19c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3c0.584,0,1.129-0.167,1.59-0.456l0,0L29,37.413\r\n\t\t\t\tV42c0,1.657,1.343,3,3,3c0.584,0,1.129-0.167,1.59-0.456l0,0l15.962-9.976c0.005-0.003,0.01-0.007,0.016-0.01l0.022-0.014l0,0\r\n\t\t\t\tC50.437,34.013,51,33.073,51,32z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M51,32c0-1.073-0.563-2.013-1.41-2.544l0,0l-0.022-0.014\r\n\t\t\t\tc-0.005-0.003-0.01-0.007-0.016-0.01L33.59,19.456l0,0C33.129,19.168,32.584,19,32,19c-1.657,0-3,1.343-3,3v4.587l-11.41-7.131\r\n\t\t\t\tl0,0C17.129,19.168,16.584,19,16,19c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3c0.584,0,1.129-0.167,1.59-0.456l0,0L29,37.413\r\n\t\t\t\tV42c0,1.657,1.343,3,3,3c0.584,0,1.129-0.167,1.59-0.456l0,0l15.962-9.976c0.005-0.003,0.01-0.007,0.016-0.01l0.022-0.014l0,0\r\n\t\t\t\tC50.437,34.013,51,33.073,51,32z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"REWIND_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"REWIND","display":"inline"},"children":[{"name":"g","attribs":{"id":"REWIND","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M48,19c-0.584,0-1.129,0.168-1.59,0.456l0,0L35,26.587V22c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.584,0-1.129,0.168-1.59,0.456l0,0l-15.962,9.976c-0.005,0.003-0.011,0.007-0.016,0.01l-0.023,0.014l0,0\r\n\t\t\t\tC13.564,29.987,13,30.927,13,32c0,1.073,0.564,2.013,1.41,2.544l0,0l0.023,0.014c0.005,0.003,0.01,0.007,0.016,0.01l15.962,9.976\r\n\t\t\t\tl0,0C30.871,44.833,31.416,45,32,45c1.657,0,3-1.343,3-3v-4.587l11.41,7.131l0,0C46.871,44.833,47.416,45,48,45\r\n\t\t\t\tc1.657,0,3-1.343,3-3V22C51,20.343,49.657,19,48,19z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M48,19c-0.584,0-1.129,0.168-1.59,0.456l0,0L35,26.587V22c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.584,0-1.129,0.168-1.59,0.456l0,0l-15.962,9.976c-0.005,0.003-0.011,0.007-0.016,0.01l-0.023,0.014l0,0\r\n\t\t\t\tC13.564,29.987,13,30.927,13,32c0,1.073,0.564,2.013,1.41,2.544l0,0l0.023,0.014c0.005,0.003,0.01,0.007,0.016,0.01l15.962,9.976\r\n\t\t\t\tl0,0C30.871,44.833,31.416,45,32,45c1.657,0,3-1.343,3-3v-4.587l11.41,7.131l0,0C46.871,44.833,47.416,45,48,45\r\n\t\t\t\tc1.657,0,3-1.343,3-3V22C51,20.343,49.657,19,48,19z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"PAUSE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PAUSE","display":"inline"},"children":[{"name":"g","attribs":{"id":"PAUSE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26,19c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V22\r\n\t\t\t\tC29,20.343,27.657,19,26,19z M38,19c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3s3-1.343,3-3V22C41,20.343,39.657,19,38,19z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26,19c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V22\r\n\t\t\t\tC29,20.343,27.657,19,26,19z M38,19c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3s3-1.343,3-3V22C41,20.343,39.657,19,38,19z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"STOP_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"STOP","display":"inline"},"children":[{"name":"g","attribs":{"id":"STOP","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M43,18H21c-1.657,0-3,1.343-3,3v22c0,1.657,1.343,3,3,3h22c1.657,0,3-1.343,3-3\r\n\t\t\t\tV21C46,19.343,44.657,18,43,18z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M43,18H21c-1.657,0-3,1.343-3,3v22c0,1.657,1.343,3,3,3h22c1.657,0,3-1.343,3-3\r\n\t\t\t\tV21C46,19.343,44.657,18,43,18z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"RECORD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"RECORD","display":"inline"},"children":[{"name":"g","attribs":{"id":"RECORD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","cx":"32","cy":"32","r":"14"},"children":[{"name":"circle","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","cx":"32","cy":"32","r":"14"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"PLAY_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PLAY","display":"inline"},"children":[{"name":"g","attribs":{"id":"PLAY","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46,32c0-1.099-0.592-2.06-1.474-2.583l0,0L22.561,16.438\r\n\t\t\t\tc-0.008-0.005-0.016-0.009-0.024-0.014l-0.011-0.007l0,0C22.079,16.153,21.557,16,21,16c-1.657,0-3,1.343-3,3v26\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.557,0,1.079-0.153,1.526-0.417l0,0l0.011-0.007c0.008-0.005,0.016-0.009,0.024-0.014l21.965-12.979l0,0\r\n\t\t\t\tC45.408,34.06,46,33.1,46,32z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46,32c0-1.099-0.592-2.06-1.474-2.583l0,0L22.561,16.438\r\n\t\t\t\tc-0.008-0.005-0.016-0.009-0.024-0.014l-0.011-0.007l0,0C22.079,16.153,21.557,16,21,16c-1.657,0-3,1.343-3,3v26\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.557,0,1.079-0.153,1.526-0.417l0,0l0.011-0.007c0.008-0.005,0.016-0.009,0.024-0.014l21.965-12.979l0,0\r\n\t\t\t\tC45.408,34.06,46,33.1,46,32z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CHART_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CHART","display":"inline"},"children":[{"name":"g","attribs":{"id":"CHART","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z M58,58H6V6h52V58z M46,55h6c1.657,0,3-1.343,3-3V31c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v21\r\n\t\t\t\tC43,53.657,44.343,55,46,55z M29,55h6c1.657,0,3-1.343,3-3V19c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v33\r\n\t\t\t\tC26,53.657,27.343,55,29,55z M12,55h6c1.657,0,3-1.343,3-3v-6c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC9,53.657,10.343,55,12,55z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z M58,58H6V6h52V58z M46,55h6c1.657,0,3-1.343,3-3V31c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v21\r\n\t\t\t\tC43,53.657,44.343,55,46,55z M29,55h6c1.657,0,3-1.343,3-3V19c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v33\r\n\t\t\t\tC26,53.657,27.343,55,29,55z M12,55h6c1.657,0,3-1.343,3-3v-6c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC9,53.657,10.343,55,12,55z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"LINE_GRAPH_3_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"LINE_GRAPH","display":"inline"},"children":[{"name":"g","attribs":{"id":"LINE_GRAPH","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M12,38.035c0.628,0,1.212-0.194,1.694-0.524l6.271-3.919l13.313,8.875\r\n\t\t\t\tc0.488,0.343,1.081,0.545,1.723,0.545c0.656,0,1.263-0.211,1.757-0.569l0.001,0.001l17-12l-0.001-0.001\r\n\t\t\t\tC54.51,29.897,55,29.012,55,28.011c0-1.657-1.343-3-3-3c-0.662,0-1.274,0.215-1.77,0.578L34.953,36.373l-13.261-8.841\r\n\t\t\t\tl-0.012,0.017c-0.479-0.325-1.058-0.514-1.68-0.514c-0.575,0-1.113,0.162-1.569,0.443l-0.002-0.002l-8,5l0.001,0.002\r\n\t\t\t\tC9.573,33.006,9,33.953,9,35.035C9,36.692,10.343,38.035,12,38.035z M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M12,38.035c0.628,0,1.212-0.194,1.694-0.524l6.271-3.919l13.313,8.875\r\n\t\t\t\tc0.488,0.343,1.081,0.545,1.723,0.545c0.656,0,1.263-0.211,1.757-0.569l0.001,0.001l17-12l-0.001-0.001\r\n\t\t\t\tC54.51,29.897,55,29.012,55,28.011c0-1.657-1.343-3-3-3c-0.662,0-1.274,0.215-1.77,0.578L34.953,36.373l-13.261-8.841\r\n\t\t\t\tl-0.012,0.017c-0.479-0.325-1.058-0.514-1.68-0.514c-0.575,0-1.113,0.162-1.569,0.443l-0.002-0.002l-8,5l0.001,0.002\r\n\t\t\t\tC9.573,33.006,9,33.953,9,35.035C9,36.692,10.343,38.035,12,38.035z M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BAR_GRAPH_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BAR_GRAPH","display":"inline"},"children":[{"name":"g","attribs":{"id":"BAR_GRAPH","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M48,50h6c1.657,0,3-1.343,3-3V26c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3\r\n\t\t\t\tv21C45,48.657,46.343,50,48,50z M31,50h6c1.657,0,3-1.343,3-3V14c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v33\r\n\t\t\t\tC28,48.657,29.343,50,31,50z M61,53H6v-7h0V8c0-1.657-1.343-3-3-3C1.343,5,0,6.343,0,8v48c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3C64,54.344,62.657,53,61,53z M14,50h6c1.657,0,3-1.343,3-3v-6c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3\r\n\t\t\t\tv6C11,48.657,12.343,50,14,50z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M48,50h6c1.657,0,3-1.343,3-3V26c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3\r\n\t\t\t\tv21C45,48.657,46.343,50,48,50z M31,50h6c1.657,0,3-1.343,3-3V14c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v33\r\n\t\t\t\tC28,48.657,29.343,50,31,50z M61,53H6v-7h0V8c0-1.657-1.343-3-3-3C1.343,5,0,6.343,0,8v48c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3C64,54.344,62.657,53,61,53z M14,50h6c1.657,0,3-1.343,3-3v-6c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3\r\n\t\t\t\tv6C11,48.657,12.343,50,14,50z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"LINE_GRAPH_2_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"LINE_GRAPH_1_","display":"inline"},"children":[{"name":"g","attribs":{"id":"LINE_GRAPH_1_","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,53H6V40.716l13.9-8.177l13.42,8.947c0.002,0.001,0.003,0.002,0.005,0.003\r\n\t\t\t\tl0.011,0.007l0.001-0.001C33.813,41.813,34.384,42,35,42c0.635,0,1.221-0.2,1.706-0.536l0.002,0.002l25.969-17.979\r\n\t\t\t\tc0,0,0.001,0,0.001-0.001l0.03-0.021l-0.002-0.003C63.487,22.923,64,22.022,64,21c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.635,0-1.221,0.2-1.706,0.536l-0.002-0.003l-24.324,16.84l-13.289-8.859c-0.001-0.001-0.003-0.002-0.005-0.003l-0.011-0.007\r\n\t\t\t\tl-0.001,0.001C21.187,26.187,20.616,26,20,26c-0.555,0-1.069,0.161-1.515,0.424l-0.006-0.01L6,33.755V8c0-1.657-1.343-3-3-3\r\n\t\t\t\tS0,6.343,0,8v48c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,54.343,62.657,53,61,53z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,53H6V40.716l13.9-8.177l13.42,8.947c0.002,0.001,0.003,0.002,0.005,0.003\r\n\t\t\t\tl0.011,0.007l0.001-0.001C33.813,41.813,34.384,42,35,42c0.635,0,1.221-0.2,1.706-0.536l0.002,0.002l25.969-17.979\r\n\t\t\t\tc0,0,0.001,0,0.001-0.001l0.03-0.021l-0.002-0.003C63.487,22.923,64,22.022,64,21c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.635,0-1.221,0.2-1.706,0.536l-0.002-0.003l-24.324,16.84l-13.289-8.859c-0.001-0.001-0.003-0.002-0.005-0.003l-0.011-0.007\r\n\t\t\t\tl-0.001,0.001C21.187,26.187,20.616,26,20,26c-0.555,0-1.069,0.161-1.515,0.424l-0.006-0.01L6,33.755V8c0-1.657-1.343-3-3-3\r\n\t\t\t\tS0,6.343,0,8v48c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,54.343,62.657,53,61,53z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CHART__x2F__7_x2F_8_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CHART__x2F__7_x2F_8","display":"inline"},"children":[{"name":"g","attribs":{"id":"CHART__x2F__7_x2F_8","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,32L13.615,13.615C18.32,8.91,24.82,6,32,6V32z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,32L13.615,13.615C18.32,8.91,24.82,6,32,6V32z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CHART__x2F__3_x2F_4_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CHART__x2F__3_x2F_4","display":"inline"},"children":[{"name":"g","attribs":{"id":"CHART__x2F__3_x2F_4","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,32H6C6,17.641,17.641,6,32,6V32z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,32H6C6,17.641,17.641,6,32,6V32z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CHART__x2F__5_x2F_8_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CHART__x2F__5_x2F_8","display":"inline"},"children":[{"name":"g","attribs":{"id":"CHART__x2F__5_x2F_8","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32s32-14.327,32-32\r\n\t\t\t\tC64,14.327,49.673,0,32,0z M32,32L13.615,50.385C8.91,45.68,6,39.18,6,32C6,17.641,17.641,6,32,6V32z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32s32-14.327,32-32\r\n\t\t\t\tC64,14.327,49.673,0,32,0z M32,32L13.615,50.385C8.91,45.68,6,39.18,6,32C6,17.641,17.641,6,32,6V32z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CHART__x2F__1_x2F_2_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CHART__x2F__1_x2F_2","display":"inline"},"children":[{"name":"g","attribs":{"id":"CHART__x2F__1_x2F_2","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6V58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6V58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CHART__x2F__3_x2F_8_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CHART__x2F__3_x2F_8","display":"inline"},"children":[{"name":"g","attribs":{"id":"CHART__x2F__3_x2F_8","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6v26l18.385,18.385\r\n\t\t\t\tC45.68,55.09,39.18,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6v26l18.385,18.385\r\n\t\t\t\tC45.68,55.09,39.18,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CHART__x2F__1_x2F_4_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CHART__x2F__1_x2F_4","display":"inline"},"children":[{"name":"g","attribs":{"id":"CHART__x2F__1_x2F_4","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6v26h26\r\n\t\t\t\tC58,46.359,46.359,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6v26h26\r\n\t\t\t\tC58,46.359,46.359,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CART__x2F__1_x2F_8_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CART__x2F__1_x2F_8","display":"inline"},"children":[{"name":"g","attribs":{"id":"CART__x2F__1_x2F_8","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6v26l18.385-18.385\r\n\t\t\t\tC55.09,18.32,58,24.82,58,32C58,46.359,46.359,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6v26l18.385-18.385\r\n\t\t\t\tC55.09,18.32,58,24.82,58,32C58,46.359,46.359,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"PIE_CHART_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PIE_CHART","display":"inline"},"children":[{"name":"g","attribs":{"id":"PIE_CHART","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M35,0v29h29C64,12.984,51.016,0,35,0z M29,6C12.984,6,0,18.984,0,35\r\n\t\t\t\tc0,16.017,12.984,29,29,29c16.016,0,29-12.984,29-29H29V6z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M35,0v29h29C64,12.984,51.016,0,35,0z M29,6C12.984,6,0,18.984,0,35\r\n\t\t\t\tc0,16.017,12.984,29,29,29c16.016,0,29-12.984,29-29H29V6z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"POWER_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"POWER","display":"inline"},"children":[{"name":"g","attribs":{"id":"POWER","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31,33c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v3.186\r\n\t\t\t\tc0,0,0,0,0,0V30C28,31.657,29.343,33,31,33z M42,8.162v0.009C41.687,8.061,41.351,8,41,8c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,1.306,0.835,2.417,2,2.829v0.003C48.229,17.335,54,25.492,54,35c0,12.703-10.297,23-23,23S8,47.703,8,35\r\n\t\t\t\tc0-9.508,5.771-17.666,14-21.168v-0.003c1.165-0.412,2-1.523,2-2.829c0-1.657-1.343-3-3-3c-0.351,0-0.687,0.061-1,0.171V8.162\r\n\t\t\t\tC9.439,12.495,2,22.878,2,35c0,16.016,12.984,29,29,29c16.016,0,29-12.984,29-29C60,22.878,52.561,12.495,42,8.162z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31,33c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v3.186\r\n\t\t\t\tc0,0,0,0,0,0V30C28,31.657,29.343,33,31,33z M42,8.162v0.009C41.687,8.061,41.351,8,41,8c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,1.306,0.835,2.417,2,2.829v0.003C48.229,17.335,54,25.492,54,35c0,12.703-10.297,23-23,23S8,47.703,8,35\r\n\t\t\t\tc0-9.508,5.771-17.666,14-21.168v-0.003c1.165-0.412,2-1.523,2-2.829c0-1.657-1.343-3-3-3c-0.351,0-0.687,0.061-1,0.171V8.162\r\n\t\t\t\tC9.439,12.495,2,22.878,2,35c0,16.016,12.984,29,29,29c16.016,0,29-12.984,29-29C60,22.878,52.561,12.495,42,8.162z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"ALARM_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ALARM","display":"inline"},"children":[{"name":"g","attribs":{"id":"ALARM","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M44,31h-9V18c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v16c0,1.657,1.343,3,3,3\r\n\t\t\t\th12c1.657,0,3-1.343,3-3C47,32.343,45.657,31,44,31z M19.412,4.575C17.37,2.967,14.8,2,12,2C5.373,2,0,7.373,0,14\r\n\t\t\t\tc0,2.8,0.967,5.37,2.575,7.412C5.809,13.862,11.862,7.809,19.412,4.575z M52.251,2c-2.742,0-5.258,0.947-7.257,2.521\r\n\t\t\t\tc7.392,3.167,13.318,9.093,16.485,16.485C63.053,19.006,64,16.49,64,13.749C64,7.26,58.74,2,52.251,2z M32,5\r\n\t\t\t\tC15.984,5,3,17.984,3,34c0,7.692,3.015,14.664,7.902,19.855l-4.023,4.024C6.336,58.422,6,59.172,6,60c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l4.327-4.327C20.144,61.067,25.842,63,32,63c6.17,0,11.878-1.941,16.579-5.226l4.357,4.357\r\n\t\t\t\tC53.473,62.668,54.215,63,55.034,63C56.672,63,58,61.672,58,60.034c0-0.819-0.332-1.561-0.869-2.098l-4.056-4.056\r\n\t\t\t\tC57.976,48.687,61,41.704,61,34C61,17.984,48.016,5,32,5z M32,57C19.297,57,9,46.703,9,34s10.297-23,23-23\r\n\t\t\t\tc12.702,0,23,10.297,23,23S44.703,57,32,57z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M44,31h-9V18c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v16c0,1.657,1.343,3,3,3\r\n\t\t\t\th12c1.657,0,3-1.343,3-3C47,32.343,45.657,31,44,31z M19.412,4.575C17.37,2.967,14.8,2,12,2C5.373,2,0,7.373,0,14\r\n\t\t\t\tc0,2.8,0.967,5.37,2.575,7.412C5.809,13.862,11.862,7.809,19.412,4.575z M52.251,2c-2.742,0-5.258,0.947-7.257,2.521\r\n\t\t\t\tc7.392,3.167,13.318,9.093,16.485,16.485C63.053,19.006,64,16.49,64,13.749C64,7.26,58.74,2,52.251,2z M32,5\r\n\t\t\t\tC15.984,5,3,17.984,3,34c0,7.692,3.015,14.664,7.902,19.855l-4.023,4.024C6.336,58.422,6,59.172,6,60c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l4.327-4.327C20.144,61.067,25.842,63,32,63c6.17,0,11.878-1.941,16.579-5.226l4.357,4.357\r\n\t\t\t\tC53.473,62.668,54.215,63,55.034,63C56.672,63,58,61.672,58,60.034c0-0.819-0.332-1.561-0.869-2.098l-4.056-4.056\r\n\t\t\t\tC57.976,48.687,61,41.704,61,34C61,17.984,48.016,5,32,5z M32,57C19.297,57,9,46.703,9,34s10.297-23,23-23\r\n\t\t\t\tc12.702,0,23,10.297,23,23S44.703,57,32,57z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"TIME_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"TIME","display":"inline"},"children":[{"name":"g","attribs":{"id":"TIME","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M45,29H35V14c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v18c0,1.657,1.343,3,3,3\r\n\t\t\t\th13c1.657,0,3-1.343,3-3C48,30.343,46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32s32-14.327,32-32\r\n\t\t\t\tC64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tC58,46.36,46.359,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M45,29H35V14c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v18c0,1.657,1.343,3,3,3\r\n\t\t\t\th13c1.657,0,3-1.343,3-3C48,30.343,46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32s32-14.327,32-32\r\n\t\t\t\tC64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tC58,46.36,46.359,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"USER_3_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"USER","display":"inline"},"children":[{"name":"g","attribs":{"id":"USER","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M51.253,49.43c-3.766-1.826-2.382-0.399-7.309-2.427\r\n\t\t\t\tc-5.042-2.073-6.236-2.749-6.236-2.749L37.664,39.5c0,0,1.888-1.422,2.477-5.917c1.178,0.338,1.578-1.372,1.641-2.464\r\n\t\t\t\tc0.07-1.055,0.697-4.346-0.745-4.052c0.295-2.197,0.527-4.183,0.421-5.235c-0.36-3.691-2.931-7.544-9.42-7.826\r\n\t\t\t\tc-5.517,0.282-9.098,4.138-9.46,7.829c-0.104,1.052,0.108,3.036,0.403,5.236c-1.441-0.297-0.821,2.999-0.758,4.054\r\n\t\t\t\tc0.07,1.092,0.46,2.808,1.641,2.469c0.587,4.495,2.475,5.929,2.475,5.929L26.293,44.3c0,0-1.195,0.723-6.236,2.795\r\n\t\t\t\tc-4.927,2.028-3.544,0.512-7.31,2.334C8.568,44.816,6,38.715,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.641,26,26\r\n\t\t\t\tC58,38.716,55.432,44.816,51.253,49.43z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M51.253,49.43c-3.766-1.826-2.382-0.399-7.309-2.427\r\n\t\t\t\tc-5.042-2.073-6.236-2.749-6.236-2.749L37.664,39.5c0,0,1.888-1.422,2.477-5.917c1.178,0.338,1.578-1.372,1.641-2.464\r\n\t\t\t\tc0.07-1.055,0.697-4.346-0.745-4.052c0.295-2.197,0.527-4.183,0.421-5.235c-0.36-3.691-2.931-7.544-9.42-7.826\r\n\t\t\t\tc-5.517,0.282-9.098,4.138-9.46,7.829c-0.104,1.052,0.108,3.036,0.403,5.236c-1.441-0.297-0.821,2.999-0.758,4.054\r\n\t\t\t\tc0.07,1.092,0.46,2.808,1.641,2.469c0.587,4.495,2.475,5.929,2.475,5.929L26.293,44.3c0,0-1.195,0.723-6.236,2.795\r\n\t\t\t\tc-4.927,2.028-3.544,0.512-7.31,2.334C8.568,44.816,6,38.715,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.641,26,26\r\n\t\t\t\tC58,38.716,55.432,44.816,51.253,49.43z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"USERS_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"USERS","display":"inline"},"children":[{"name":"g","attribs":{"id":"USERS","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M40.837,41.984c-3.685-1.828-2.266-0.429-6.79-2.299\r\n\t\t\t\tc-4.524-1.867-5.595-2.477-5.595-2.477l-0.04-4.282c0,0,1.694-1.282,2.223-5.332c1.057,0.305,1.416-1.236,1.473-2.22\r\n\t\t\t\tc0.063-0.951,0.626-3.916-0.669-3.651c0.265-1.979,0.472-3.769,0.378-4.716c-0.323-3.325-2.63-6.798-8.453-7.051\r\n\t\t\t\tc-4.95,0.254-8.164,3.728-8.488,7.054c-0.093,0.947,0.097,2.735,0.361,4.718c-1.293-0.268-0.737,2.702-0.68,3.652\r\n\t\t\t\tc0.062,0.984,0.412,2.53,1.473,2.225c0.526,4.05,2.221,5.342,2.221,5.342l-0.042,4.304c0,0-1.072,0.652-5.596,2.519\r\n\t\t\t\tc-4.524,1.87-3.105,0.387-6.79,2.214c-5.824,2.889-5.824,10.832-5.824,10.832h0.002C0.001,52.817,0,52.818,0,52.82\r\n\t\t\t\tC0,54.024,0.979,55,2.187,55h42.285c1.208,0,2.187-0.976,2.187-2.18c0-0.002,0-0.003,0-0.005h0.001\r\n\t\t\t\tC46.66,52.815,46.66,44.872,40.837,41.984z M63.901,53.012c0,0,0-7.226-5.298-9.854c-3.353-1.663-2.062-0.391-6.178-2.092\r\n\t\t\t\tc-4.116-1.699-5.09-2.254-5.09-2.254l-0.036-3.896c0,0,1.541-1.166,2.022-4.85c0.962,0.277,1.288-1.124,1.34-2.02\r\n\t\t\t\tc0.057-0.865,0.569-3.562-0.608-3.322c0.241-1.801,0.43-3.429,0.344-4.291c-0.294-3.025-2.393-6.184-7.69-6.415\r\n\t\t\t\tc-4.504,0.231-7.427,3.392-7.722,6.417c-0.085,0.862,0.088,2.489,0.329,4.293c-1.177-0.244-0.67,2.458-0.618,3.323\r\n\t\t\t\tc0.057,0.896,0.375,2.302,1.34,2.024c0.479,3.685,2.02,4.86,2.02,4.86l-0.039,3.902c1.401,0.331,1.588,0.064,4.411,1.464\r\n\t\t\t\tc6.603,3.275,6.603,12.282,6.603,12.282h-0.002c0,0.002,0.001,0.004,0.001,0.006c0,1.181-0.832,2.165-1.943,2.41H61.91\r\n\t\t\t\tc1.099,0,1.99-0.888,1.99-1.983c0-0.002,0-0.003,0-0.005H63.901z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M40.837,41.984c-3.685-1.828-2.266-0.429-6.79-2.299\r\n\t\t\t\tc-4.524-1.867-5.595-2.477-5.595-2.477l-0.04-4.282c0,0,1.694-1.282,2.223-5.332c1.057,0.305,1.416-1.236,1.473-2.22\r\n\t\t\t\tc0.063-0.951,0.626-3.916-0.669-3.651c0.265-1.979,0.472-3.769,0.378-4.716c-0.323-3.325-2.63-6.798-8.453-7.051\r\n\t\t\t\tc-4.95,0.254-8.164,3.728-8.488,7.054c-0.093,0.947,0.097,2.735,0.361,4.718c-1.293-0.268-0.737,2.702-0.68,3.652\r\n\t\t\t\tc0.062,0.984,0.412,2.53,1.473,2.225c0.526,4.05,2.221,5.342,2.221,5.342l-0.042,4.304c0,0-1.072,0.652-5.596,2.519\r\n\t\t\t\tc-4.524,1.87-3.105,0.387-6.79,2.214c-5.824,2.889-5.824,10.832-5.824,10.832h0.002C0.001,52.817,0,52.818,0,52.82\r\n\t\t\t\tC0,54.024,0.979,55,2.187,55h42.285c1.208,0,2.187-0.976,2.187-2.18c0-0.002,0-0.003,0-0.005h0.001\r\n\t\t\t\tC46.66,52.815,46.66,44.872,40.837,41.984z M63.901,53.012c0,0,0-7.226-5.298-9.854c-3.353-1.663-2.062-0.391-6.178-2.092\r\n\t\t\t\tc-4.116-1.699-5.09-2.254-5.09-2.254l-0.036-3.896c0,0,1.541-1.166,2.022-4.85c0.962,0.277,1.288-1.124,1.34-2.02\r\n\t\t\t\tc0.057-0.865,0.569-3.562-0.608-3.322c0.241-1.801,0.43-3.429,0.344-4.291c-0.294-3.025-2.393-6.184-7.69-6.415\r\n\t\t\t\tc-4.504,0.231-7.427,3.392-7.722,6.417c-0.085,0.862,0.088,2.489,0.329,4.293c-1.177-0.244-0.67,2.458-0.618,3.323\r\n\t\t\t\tc0.057,0.896,0.375,2.302,1.34,2.024c0.479,3.685,2.02,4.86,2.02,4.86l-0.039,3.902c1.401,0.331,1.588,0.064,4.411,1.464\r\n\t\t\t\tc6.603,3.275,6.603,12.282,6.603,12.282h-0.002c0,0.002,0.001,0.004,0.001,0.006c0,1.181-0.832,2.165-1.943,2.41H61.91\r\n\t\t\t\tc1.099,0,1.99-0.888,1.99-1.983c0-0.002,0-0.003,0-0.005H63.901z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"FOLLOWING_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"FOLLOWING","display":"inline"},"children":[{"name":"g","attribs":{"id":"FOLLOWING","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M64.001,59.993c0,0-0.007-0.552-0.092-1.417L59.485,63H61c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.003-0.001-0.005-0.001-0.007H64.001z M48.101,59H40c-3.314,0-6-2.686-6-6c0-3.314,2.686-6,6-6h8.101\r\n\t\t\t\tC48.046,46.673,48,46.343,48,46c0-1.185,0.355-2.282,0.947-3.212c-0.609-0.213-1.332-0.486-2.247-0.865\r\n\t\t\t\tc-6.205-2.57-7.675-3.409-7.675-3.409l-0.054-5.893c0,0,2.324-1.764,3.049-7.337c1.45,0.42,1.942-1.701,2.02-3.056\r\n\t\t\t\tc0.086-1.309,0.858-5.389-0.917-5.025c0.363-2.724,0.648-5.187,0.519-6.491c-0.443-4.576-3.608-9.355-11.594-9.704\r\n\t\t\t\tc-6.79,0.349-11.198,5.131-11.643,9.708c-0.128,1.304,0.133,3.764,0.496,6.493c-1.774-0.369-1.01,3.719-0.932,5.027\r\n\t\t\t\tc0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.352,3.046,7.352l-0.058,5.924c0,0-1.47,0.897-7.675,3.466\r\n\t\t\t\tc-6.205,2.574-4.259,0.533-9.314,3.047c-7.988,3.976-7.988,14.907-7.988,14.907h0.002C0.001,59.995,0,59.998,0,60\r\n\t\t\t\tc0,1.657,1.343,3,3,3h45.832C48.317,62.115,48,61.099,48,60C48,59.657,48.046,59.327,48.101,59z M64,53\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121l-7-7C55.578,43.336,54.828,43,54,43c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121\r\n\t\t\t\tL53.757,50H40c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h13.757l-1.879,1.879C51.336,58.422,51,59.172,51,60c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l7-7C63.664,54.578,64,53.829,64,53z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M64.001,59.993c0,0-0.007-0.552-0.092-1.417L59.485,63H61c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.003-0.001-0.005-0.001-0.007H64.001z M48.101,59H40c-3.314,0-6-2.686-6-6c0-3.314,2.686-6,6-6h8.101\r\n\t\t\t\tC48.046,46.673,48,46.343,48,46c0-1.185,0.355-2.282,0.947-3.212c-0.609-0.213-1.332-0.486-2.247-0.865\r\n\t\t\t\tc-6.205-2.57-7.675-3.409-7.675-3.409l-0.054-5.893c0,0,2.324-1.764,3.049-7.337c1.45,0.42,1.942-1.701,2.02-3.056\r\n\t\t\t\tc0.086-1.309,0.858-5.389-0.917-5.025c0.363-2.724,0.648-5.187,0.519-6.491c-0.443-4.576-3.608-9.355-11.594-9.704\r\n\t\t\t\tc-6.79,0.349-11.198,5.131-11.643,9.708c-0.128,1.304,0.133,3.764,0.496,6.493c-1.774-0.369-1.01,3.719-0.932,5.027\r\n\t\t\t\tc0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.352,3.046,7.352l-0.058,5.924c0,0-1.47,0.897-7.675,3.466\r\n\t\t\t\tc-6.205,2.574-4.259,0.533-9.314,3.047c-7.988,3.976-7.988,14.907-7.988,14.907h0.002C0.001,59.995,0,59.998,0,60\r\n\t\t\t\tc0,1.657,1.343,3,3,3h45.832C48.317,62.115,48,61.099,48,60C48,59.657,48.046,59.327,48.101,59z M64,53\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121l-7-7C55.578,43.336,54.828,43,54,43c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121\r\n\t\t\t\tL53.757,50H40c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h13.757l-1.879,1.879C51.336,58.422,51,59.172,51,60c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l7-7C63.664,54.578,64,53.829,64,53z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"FOLLOWERS_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"FOLLOWERS","display":"inline"},"children":[{"name":"g","attribs":{"id":"FOLLOWERS","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M34,53c0-1.657,0.672-3.157,1.757-4.242l7-7l0.017,0.017\r\n\t\t\t\tc0.379-0.375,0.805-0.702,1.272-0.968c-3.979-1.701-5.021-2.294-5.021-2.294l-0.054-5.893c0,0,2.324-1.764,3.049-7.337\r\n\t\t\t\tc1.45,0.42,1.942-1.701,2.02-3.056c0.086-1.309,0.858-5.389-0.917-5.025c0.363-2.724,0.648-5.187,0.519-6.491\r\n\t\t\t\tc-0.444-4.576-3.608-9.355-11.594-9.704c-6.79,0.349-11.198,5.131-11.643,9.708c-0.128,1.304,0.133,3.764,0.496,6.493\r\n\t\t\t\tc-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.352,3.046,7.352l-0.058,5.924\r\n\t\t\t\tc0,0-1.47,0.897-7.675,3.466c-6.205,2.574-4.259,0.533-9.314,3.047c-7.988,3.976-7.988,14.907-7.988,14.907h0.002\r\n\t\t\t\tC0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h38.515l-5.757-5.758C34.672,56.157,34,54.657,34,53z M52.899,47h5.827\r\n\t\t\t\tc-0.788-0.724-1.662-1.391-2.712-1.913c-1.855-0.923-2.765-1.246-3.483-1.415C52.833,44.387,53,45.174,53,46\r\n\t\t\t\tC53,46.343,52.954,46.673,52.899,47z M47.243,56H61c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H47.243l1.879-1.879\r\n\t\t\t\tC49.664,47.579,50,46.828,50,46c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879l-7,7C37.336,51.422,37,52.172,37,53\r\n\t\t\t\tc0,0.829,0.336,1.578,0.879,2.121l7,7C45.422,62.664,46.172,63,47,63c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121\r\n\t\t\t\tL47.243,56z M64.001,59.993c0,0,0-0.679-0.124-1.759C63.02,58.707,62.049,59,61,59h-8.103C52.953,59.326,53,59.657,53,60\r\n\t\t\t\tc0,1.099-0.317,2.114-0.832,3H61c1.657,0,3-1.343,3-3c0-0.003-0.001-0.005-0.001-0.007H64.001z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M34,53c0-1.657,0.672-3.157,1.757-4.242l7-7l0.017,0.017\r\n\t\t\t\tc0.379-0.375,0.805-0.702,1.272-0.968c-3.979-1.701-5.021-2.294-5.021-2.294l-0.054-5.893c0,0,2.324-1.764,3.049-7.337\r\n\t\t\t\tc1.45,0.42,1.942-1.701,2.02-3.056c0.086-1.309,0.858-5.389-0.917-5.025c0.363-2.724,0.648-5.187,0.519-6.491\r\n\t\t\t\tc-0.444-4.576-3.608-9.355-11.594-9.704c-6.79,0.349-11.198,5.131-11.643,9.708c-0.128,1.304,0.133,3.764,0.496,6.493\r\n\t\t\t\tc-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.352,3.046,7.352l-0.058,5.924\r\n\t\t\t\tc0,0-1.47,0.897-7.675,3.466c-6.205,2.574-4.259,0.533-9.314,3.047c-7.988,3.976-7.988,14.907-7.988,14.907h0.002\r\n\t\t\t\tC0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h38.515l-5.757-5.758C34.672,56.157,34,54.657,34,53z M52.899,47h5.827\r\n\t\t\t\tc-0.788-0.724-1.662-1.391-2.712-1.913c-1.855-0.923-2.765-1.246-3.483-1.415C52.833,44.387,53,45.174,53,46\r\n\t\t\t\tC53,46.343,52.954,46.673,52.899,47z M47.243,56H61c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H47.243l1.879-1.879\r\n\t\t\t\tC49.664,47.579,50,46.828,50,46c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879l-7,7C37.336,51.422,37,52.172,37,53\r\n\t\t\t\tc0,0.829,0.336,1.578,0.879,2.121l7,7C45.422,62.664,46.172,63,47,63c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121\r\n\t\t\t\tL47.243,56z M64.001,59.993c0,0,0-0.679-0.124-1.759C63.02,58.707,62.049,59,61,59h-8.103C52.953,59.326,53,59.657,53,60\r\n\t\t\t\tc0,1.099-0.317,2.114-0.832,3H61c1.657,0,3-1.343,3-3c0-0.003-0.001-0.005-0.001-0.007H64.001z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"USER__x2F__DELETE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"USER__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{"id":"USER__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46.515,54l-1.757-1.757l0.015-0.016C43.682,51.147,43,49.659,43,48\r\n\t\t\t\tc0-2.776,1.894-5.088,4.454-5.774c-0.243-0.096-0.481-0.191-0.754-0.304c-6.205-2.57-7.675-3.409-7.675-3.409l-0.055-5.893\r\n\t\t\t\tc0,0,2.324-1.764,3.049-7.337c1.45,0.42,1.942-1.701,2.02-3.056c0.086-1.309,0.858-5.389-0.917-5.025\r\n\t\t\t\tc0.363-2.724,0.648-5.187,0.519-6.491c-0.444-4.576-3.608-9.355-11.594-9.704c-6.79,0.349-11.198,5.131-11.643,9.707\r\n\t\t\t\tc-0.128,1.304,0.133,3.765,0.496,6.494c-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062\r\n\t\t\t\tc0.722,5.574,3.046,7.351,3.046,7.351l-0.058,5.924c0,0-1.47,0.897-7.675,3.466c-6.205,2.574-4.259,0.533-9.314,3.047\r\n\t\t\t\tc-7.988,3.976-7.988,14.907-7.988,14.907h0.002C0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h40.832\r\n\t\t\t\tC43.317,62.115,43,61.099,43,60c0-1.657,0.672-3.157,1.757-4.243L46.515,54z M59.243,54l3.879-3.878\r\n\t\t\t\tC63.664,49.578,64,48.828,64,48c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L55,49.758l-3.879-3.879\r\n\t\t\t\tC50.578,45.336,49.828,45,49,45c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L50.757,54l-3.879,3.879\r\n\t\t\t\tC46.336,58.422,46,59.172,46,60c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L55,58.243l3.879,3.879\r\n\t\t\t\tC59.422,62.664,60.172,63,61,63c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L59.243,54z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46.515,54l-1.757-1.757l0.015-0.016C43.682,51.147,43,49.659,43,48\r\n\t\t\t\tc0-2.776,1.894-5.088,4.454-5.774c-0.243-0.096-0.481-0.191-0.754-0.304c-6.205-2.57-7.675-3.409-7.675-3.409l-0.055-5.893\r\n\t\t\t\tc0,0,2.324-1.764,3.049-7.337c1.45,0.42,1.942-1.701,2.02-3.056c0.086-1.309,0.858-5.389-0.917-5.025\r\n\t\t\t\tc0.363-2.724,0.648-5.187,0.519-6.491c-0.444-4.576-3.608-9.355-11.594-9.704c-6.79,0.349-11.198,5.131-11.643,9.707\r\n\t\t\t\tc-0.128,1.304,0.133,3.765,0.496,6.494c-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062\r\n\t\t\t\tc0.722,5.574,3.046,7.351,3.046,7.351l-0.058,5.924c0,0-1.47,0.897-7.675,3.466c-6.205,2.574-4.259,0.533-9.314,3.047\r\n\t\t\t\tc-7.988,3.976-7.988,14.907-7.988,14.907h0.002C0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h40.832\r\n\t\t\t\tC43.317,62.115,43,61.099,43,60c0-1.657,0.672-3.157,1.757-4.243L46.515,54z M59.243,54l3.879-3.878\r\n\t\t\t\tC63.664,49.578,64,48.828,64,48c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L55,49.758l-3.879-3.879\r\n\t\t\t\tC50.578,45.336,49.828,45,49,45c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L50.757,54l-3.879,3.879\r\n\t\t\t\tC46.336,58.422,46,59.172,46,60c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L55,58.243l3.879,3.879\r\n\t\t\t\tC59.422,62.664,60.172,63,61,63c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L59.243,54z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"USER__x2F__OK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"USER__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{"id":"USER__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M44.757,58.243C43.672,57.157,43,55.657,43,54c0-3.314,2.686-6,6-6\r\n\t\t\t\tc1.533,0,2.916,0.592,3.977,1.538l3.781-3.781c0.046-0.046,0.103-0.08,0.15-0.124c-0.298-0.183-0.57-0.386-0.894-0.547\r\n\t\t\t\tc-5.055-2.515-3.108-0.591-9.314-3.164c-6.205-2.57-7.675-3.409-7.675-3.409l-0.055-5.893c0,0,2.324-1.764,3.049-7.337\r\n\t\t\t\tc1.45,0.42,1.941-1.701,2.02-3.056c0.086-1.309,0.858-5.389-0.917-5.025c0.363-2.724,0.648-5.187,0.519-6.491\r\n\t\t\t\tc-0.443-4.576-3.607-9.355-11.594-9.704c-6.79,0.349-11.198,5.131-11.643,9.707c-0.128,1.304,0.133,3.765,0.496,6.494\r\n\t\t\t\tc-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.351,3.046,7.351l-0.058,5.924\r\n\t\t\t\tc0,0-1.47,0.897-7.675,3.466c-6.205,2.574-4.259,0.533-9.314,3.047c-7.988,3.976-7.988,14.907-7.988,14.907h0.002\r\n\t\t\t\tC0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h46.691c-0.335-0.222-0.65-0.474-0.933-0.757L44.757,58.243z M64.001,59.993\r\n\t\t\t\tc0,0-0.008-1.709-0.498-4.011l-6.261,6.261c-0.284,0.283-0.598,0.535-0.933,0.757H61c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.003-0.001-0.005-0.001-0.007H64.001z M64,50c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L53,53.757l-1.879-1.879\r\n\t\t\t\tC50.578,51.336,49.828,51,49,51c-1.657,0-3,1.343-3,3c0,0.829,0.336,1.578,0.879,2.121l4,4C51.422,60.664,52.172,61,53,61\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l8-8C63.664,51.579,64,50.828,64,50z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M44.757,58.243C43.672,57.157,43,55.657,43,54c0-3.314,2.686-6,6-6\r\n\t\t\t\tc1.533,0,2.916,0.592,3.977,1.538l3.781-3.781c0.046-0.046,0.103-0.08,0.15-0.124c-0.298-0.183-0.57-0.386-0.894-0.547\r\n\t\t\t\tc-5.055-2.515-3.108-0.591-9.314-3.164c-6.205-2.57-7.675-3.409-7.675-3.409l-0.055-5.893c0,0,2.324-1.764,3.049-7.337\r\n\t\t\t\tc1.45,0.42,1.941-1.701,2.02-3.056c0.086-1.309,0.858-5.389-0.917-5.025c0.363-2.724,0.648-5.187,0.519-6.491\r\n\t\t\t\tc-0.443-4.576-3.607-9.355-11.594-9.704c-6.79,0.349-11.198,5.131-11.643,9.707c-0.128,1.304,0.133,3.765,0.496,6.494\r\n\t\t\t\tc-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.351,3.046,7.351l-0.058,5.924\r\n\t\t\t\tc0,0-1.47,0.897-7.675,3.466c-6.205,2.574-4.259,0.533-9.314,3.047c-7.988,3.976-7.988,14.907-7.988,14.907h0.002\r\n\t\t\t\tC0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h46.691c-0.335-0.222-0.65-0.474-0.933-0.757L44.757,58.243z M64.001,59.993\r\n\t\t\t\tc0,0-0.008-1.709-0.498-4.011l-6.261,6.261c-0.284,0.283-0.598,0.535-0.933,0.757H61c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.003-0.001-0.005-0.001-0.007H64.001z M64,50c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L53,53.757l-1.879-1.879\r\n\t\t\t\tC50.578,51.336,49.828,51,49,51c-1.657,0-3,1.343-3,3c0,0.829,0.336,1.578,0.879,2.121l4,4C51.422,60.664,52.172,61,53,61\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l8-8C63.664,51.579,64,50.828,64,50z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"USER__x2F__REMOVE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"USER__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{"id":"USER__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M45,54c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H48\r\n\t\t\t\tC46.343,51,45,52.343,45,54z M64.001,59.993c0,0-0.005-0.571-0.096-1.472C62.854,59.43,61.5,60,60,60H48c-3.314,0-6-2.686-6-6\r\n\t\t\t\tc0-3.314,2.686-6,6-6h11.763c-0.998-1.141-2.225-2.155-3.749-2.913c-5.055-2.515-3.108-0.591-9.314-3.164\r\n\t\t\t\tc-6.205-2.57-7.675-3.409-7.675-3.409l-0.054-5.893c0,0,2.324-1.764,3.049-7.337c1.45,0.42,1.942-1.701,2.02-3.056\r\n\t\t\t\tc0.086-1.309,0.858-5.389-0.917-5.025c0.363-2.724,0.648-5.187,0.519-6.491c-0.443-4.576-3.608-9.355-11.594-9.704\r\n\t\t\t\tc-6.79,0.349-11.198,5.131-11.643,9.707c-0.128,1.304,0.133,3.765,0.496,6.494c-1.774-0.369-1.01,3.719-0.932,5.027\r\n\t\t\t\tc0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.351,3.046,7.351l-0.058,5.924c0,0-1.47,0.897-7.675,3.466\r\n\t\t\t\tc-6.205,2.574-4.259,0.533-9.314,3.047c-7.988,3.976-7.988,14.907-7.988,14.907h0.002C0.001,59.995,0,59.998,0,60\r\n\t\t\t\tc0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3c0-0.003-0.001-0.005-0.001-0.007H64.001z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M45,54c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H48\r\n\t\t\t\tC46.343,51,45,52.343,45,54z M64.001,59.993c0,0-0.005-0.571-0.096-1.472C62.854,59.43,61.5,60,60,60H48c-3.314,0-6-2.686-6-6\r\n\t\t\t\tc0-3.314,2.686-6,6-6h11.763c-0.998-1.141-2.225-2.155-3.749-2.913c-5.055-2.515-3.108-0.591-9.314-3.164\r\n\t\t\t\tc-6.205-2.57-7.675-3.409-7.675-3.409l-0.054-5.893c0,0,2.324-1.764,3.049-7.337c1.45,0.42,1.942-1.701,2.02-3.056\r\n\t\t\t\tc0.086-1.309,0.858-5.389-0.917-5.025c0.363-2.724,0.648-5.187,0.519-6.491c-0.443-4.576-3.608-9.355-11.594-9.704\r\n\t\t\t\tc-6.79,0.349-11.198,5.131-11.643,9.707c-0.128,1.304,0.133,3.765,0.496,6.494c-1.774-0.369-1.01,3.719-0.932,5.027\r\n\t\t\t\tc0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.351,3.046,7.351l-0.058,5.924c0,0-1.47,0.897-7.675,3.466\r\n\t\t\t\tc-6.205,2.574-4.259,0.533-9.314,3.047c-7.988,3.976-7.988,14.907-7.988,14.907h0.002C0.001,59.995,0,59.998,0,60\r\n\t\t\t\tc0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3c0-0.003-0.001-0.005-0.001-0.007H64.001z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"USER__x2F__ADD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"USER__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{"id":"USER__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M64.001,59.993c0,0-0.005-0.567-0.098-1.47C62.852,59.431,61.499,60,60,60\r\n\t\t\t\tc0,1.098-0.317,2.114-0.832,3H61c1.657,0,3-1.343,3-3c0-0.003-0.001-0.005-0.001-0.007H64.001z M42,54c0-3.314,2.686-6,6-6\r\n\t\t\t\tc0-1.952,0.946-3.668,2.389-4.764c-0.797-0.208-1.898-0.571-3.689-1.314c-6.205-2.57-7.675-3.409-7.675-3.409l-0.054-5.893\r\n\t\t\t\tc0,0,2.324-1.764,3.049-7.337c1.45,0.42,1.942-1.701,2.02-3.056c0.086-1.309,0.858-5.389-0.917-5.025\r\n\t\t\t\tc0.363-2.724,0.648-5.187,0.519-6.491c-0.444-4.576-3.608-9.355-11.594-9.704c-6.79,0.349-11.198,5.131-11.643,9.707\r\n\t\t\t\tc-0.128,1.304,0.133,3.765,0.496,6.494c-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062\r\n\t\t\t\tc0.722,5.574,3.046,7.351,3.046,7.351l-0.058,5.924c0,0-1.47,0.897-7.675,3.466c-6.205,2.574-4.259,0.533-9.314,3.047\r\n\t\t\t\tc-7.988,3.976-7.988,14.907-7.988,14.907h0.002C0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h45.832\r\n\t\t\t\tC48.317,62.115,48,61.099,48,60C44.686,60,42,57.314,42,54z M63,54c0-1.657-1.343-3-3-3h-3v-3c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h3v3c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-3h3\r\n\t\t\t\tC61.657,57,63,55.657,63,54z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M64.001,59.993c0,0-0.005-0.567-0.098-1.47C62.852,59.431,61.499,60,60,60\r\n\t\t\t\tc0,1.098-0.317,2.114-0.832,3H61c1.657,0,3-1.343,3-3c0-0.003-0.001-0.005-0.001-0.007H64.001z M42,54c0-3.314,2.686-6,6-6\r\n\t\t\t\tc0-1.952,0.946-3.668,2.389-4.764c-0.797-0.208-1.898-0.571-3.689-1.314c-6.205-2.57-7.675-3.409-7.675-3.409l-0.054-5.893\r\n\t\t\t\tc0,0,2.324-1.764,3.049-7.337c1.45,0.42,1.942-1.701,2.02-3.056c0.086-1.309,0.858-5.389-0.917-5.025\r\n\t\t\t\tc0.363-2.724,0.648-5.187,0.519-6.491c-0.444-4.576-3.608-9.355-11.594-9.704c-6.79,0.349-11.198,5.131-11.643,9.707\r\n\t\t\t\tc-0.128,1.304,0.133,3.765,0.496,6.494c-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062\r\n\t\t\t\tc0.722,5.574,3.046,7.351,3.046,7.351l-0.058,5.924c0,0-1.47,0.897-7.675,3.466c-6.205,2.574-4.259,0.533-9.314,3.047\r\n\t\t\t\tc-7.988,3.976-7.988,14.907-7.988,14.907h0.002C0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h45.832\r\n\t\t\t\tC48.317,62.115,48,61.099,48,60C44.686,60,42,57.314,42,54z M63,54c0-1.657-1.343-3-3-3h-3v-3c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h3v3c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-3h3\r\n\t\t\t\tC61.657,57,63,55.657,63,54z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"USER_2_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"USER_1_","display":"inline"},"children":[{"name":"g","attribs":{"id":"USER_1_","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M64.001,59.993c0,0,0-10.932-7.987-14.906\r\n\t\t\t\tc-5.055-2.515-3.108-0.591-9.314-3.164c-6.205-2.57-7.675-3.409-7.675-3.409l-0.054-5.893c0,0,2.324-1.764,3.049-7.337\r\n\t\t\t\tc1.45,0.42,1.942-1.701,2.02-3.056c0.086-1.309,0.858-5.389-0.917-5.025c0.363-2.724,0.648-5.187,0.519-6.491\r\n\t\t\t\tc-0.444-4.576-3.608-9.355-11.594-9.704c-6.79,0.349-11.198,5.131-11.643,9.707c-0.128,1.304,0.133,3.765,0.496,6.494\r\n\t\t\t\tc-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.351,3.046,7.351l-0.058,5.924\r\n\t\t\t\tc0,0-1.47,0.897-7.675,3.466c-6.205,2.574-4.259,0.533-9.314,3.047c-7.988,3.976-7.988,14.907-7.988,14.907h0.002\r\n\t\t\t\tC0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3c0-0.003-0.001-0.005-0.001-0.007H64.001z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M64.001,59.993c0,0,0-10.932-7.987-14.906\r\n\t\t\t\tc-5.055-2.515-3.108-0.591-9.314-3.164c-6.205-2.57-7.675-3.409-7.675-3.409l-0.054-5.893c0,0,2.324-1.764,3.049-7.337\r\n\t\t\t\tc1.45,0.42,1.942-1.701,2.02-3.056c0.086-1.309,0.858-5.389-0.917-5.025c0.363-2.724,0.648-5.187,0.519-6.491\r\n\t\t\t\tc-0.444-4.576-3.608-9.355-11.594-9.704c-6.79,0.349-11.198,5.131-11.643,9.707c-0.128,1.304,0.133,3.765,0.496,6.494\r\n\t\t\t\tc-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.351,3.046,7.351l-0.058,5.924\r\n\t\t\t\tc0,0-1.47,0.897-7.675,3.466c-6.205,2.574-4.259,0.533-9.314,3.047c-7.988,3.976-7.988,14.907-7.988,14.907h0.002\r\n\t\t\t\tC0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3c0-0.003-0.001-0.005-0.001-0.007H64.001z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"HEART_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"HEART","display":"inline"},"children":[{"name":"g","attribs":{"id":"HEART","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M58.728,9.272C55.328,5.873,50.808,4,46,4c-4.808,0-8.662,1.727-12.061,5.126\r\n\t\t\t\tc-0.002,0.002-0.004,0.003-0.006,0.005c0,0-0.001,0.001-0.001,0.001L32,11.565l-1.932-2.286\r\n\t\t\t\tc-0.002-0.002-0.004-0.004-0.006-0.006c0,0-0.001,0-0.001-0.001C26.661,5.873,22.808,4,18,4C13.192,4,8.672,5.873,5.272,9.272\r\n\t\t\t\tC1.872,12.672,0,17.192,0,22c0,4.806,1.87,9.323,5.266,12.723L29.16,58.817C29.911,59.574,30.933,60,32,60\r\n\t\t\t\tc1.066,0,2.089-0.426,2.84-1.183l23.892-24.093C62.129,31.325,64,26.806,64,22C64,17.192,62.128,12.672,58.728,9.272z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M58.728,9.272C55.328,5.873,50.808,4,46,4c-4.808,0-8.662,1.727-12.061,5.126\r\n\t\t\t\tc-0.002,0.002-0.004,0.003-0.006,0.005c0,0-0.001,0.001-0.001,0.001L32,11.565l-1.932-2.286\r\n\t\t\t\tc-0.002-0.002-0.004-0.004-0.006-0.006c0,0-0.001,0-0.001-0.001C26.661,5.873,22.808,4,18,4C13.192,4,8.672,5.873,5.272,9.272\r\n\t\t\t\tC1.872,12.672,0,17.192,0,22c0,4.806,1.87,9.323,5.266,12.723L29.16,58.817C29.911,59.574,30.933,60,32,60\r\n\t\t\t\tc1.066,0,2.089-0.426,2.84-1.183l23.892-24.093C62.129,31.325,64,26.806,64,22C64,17.192,62.128,12.672,58.728,9.272z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MAP__x2F__DELETE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MAP__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{"id":"MAP__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M34.055,46.909L23,52.939V19.79l16-8.727v25.338\r\n\t\t\t\tc1.693-1.606,3.732-2.847,6-3.593V12.017l10,7.5v13.291c2.268,0.746,4.307,1.987,6,3.593V18c0-0.948-0.448-1.782-1.134-2.332\r\n\t\t\t\tl0.001-0.001l-0.025-0.019c-0.074-0.058-0.145-0.117-0.224-0.168L43.867,3.667l-0.001,0.001C43.352,3.256,42.709,3,42,3\r\n\t\t\t\tc-0.495,0-0.956,0.131-1.367,0.344L40.63,3.339L20.251,14.455L5.867,3.667L5.866,3.668C5.352,3.256,4.709,3,4,3\r\n\t\t\t\tC2.343,3,1,4.343,1,6v40c0,1.056,0.548,1.98,1.372,2.514l15.815,11.861C18.692,60.762,19.315,61,20,61\r\n\t\t\t\tc0.529,0,1.018-0.148,1.449-0.388l0.003,0.006l13.457-7.34C34.331,51.623,34,49.852,34,48C34,47.632,34.031,47.271,34.055,46.909\r\n\t\t\t\tz M17,51.986l-10-7.5V12.017l10,7.5V51.986z M50,35c-7.18,0-13,5.82-13,13s5.82,13,13,13c7.18,0,13-5.82,13-13S57.18,35,50,35z\r\n\t\t\t\t M56.121,49.879C56.664,50.422,57,51.172,57,52c0,1.657-1.343,3-3,3c-0.828,0-1.578-0.336-2.121-0.879L50,52.243l-1.879,1.879\r\n\t\t\t\tC47.578,54.664,46.828,55,46,55c-1.657,0-3-1.343-3-3c0-0.829,0.336-1.578,0.879-2.121L45.757,48l-1.879-1.879\r\n\t\t\t\tC43.336,45.578,43,44.829,43,44c0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879L50,43.757l1.879-1.879\r\n\t\t\t\tC52.422,41.336,53.172,41,54,41c1.657,0,3,1.343,3,3c0,0.828-0.336,1.578-0.879,2.121L54.243,48L56.121,49.879z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M34.055,46.909L23,52.939V19.79l16-8.727v25.338\r\n\t\t\t\tc1.693-1.606,3.732-2.847,6-3.593V12.017l10,7.5v13.291c2.268,0.746,4.307,1.987,6,3.593V18c0-0.948-0.448-1.782-1.134-2.332\r\n\t\t\t\tl0.001-0.001l-0.025-0.019c-0.074-0.058-0.145-0.117-0.224-0.168L43.867,3.667l-0.001,0.001C43.352,3.256,42.709,3,42,3\r\n\t\t\t\tc-0.495,0-0.956,0.131-1.367,0.344L40.63,3.339L20.251,14.455L5.867,3.667L5.866,3.668C5.352,3.256,4.709,3,4,3\r\n\t\t\t\tC2.343,3,1,4.343,1,6v40c0,1.056,0.548,1.98,1.372,2.514l15.815,11.861C18.692,60.762,19.315,61,20,61\r\n\t\t\t\tc0.529,0,1.018-0.148,1.449-0.388l0.003,0.006l13.457-7.34C34.331,51.623,34,49.852,34,48C34,47.632,34.031,47.271,34.055,46.909\r\n\t\t\t\tz M17,51.986l-10-7.5V12.017l10,7.5V51.986z M50,35c-7.18,0-13,5.82-13,13s5.82,13,13,13c7.18,0,13-5.82,13-13S57.18,35,50,35z\r\n\t\t\t\t M56.121,49.879C56.664,50.422,57,51.172,57,52c0,1.657-1.343,3-3,3c-0.828,0-1.578-0.336-2.121-0.879L50,52.243l-1.879,1.879\r\n\t\t\t\tC47.578,54.664,46.828,55,46,55c-1.657,0-3-1.343-3-3c0-0.829,0.336-1.578,0.879-2.121L45.757,48l-1.879-1.879\r\n\t\t\t\tC43.336,45.578,43,44.829,43,44c0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879L50,43.757l1.879-1.879\r\n\t\t\t\tC52.422,41.336,53.172,41,54,41c1.657,0,3,1.343,3,3c0,0.828-0.336,1.578-0.879,2.121L54.243,48L56.121,49.879z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MAP__x2F__OK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MAP__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{"id":"MAP__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M50,35c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13c7.18,0,13-5.82,13-13\r\n\t\t\t\tC63,40.82,57.18,35,50,35z M58.121,47.121l-8,8C49.578,55.664,48.828,56,48,56c-0.828,0-1.578-0.336-2.121-0.879l-4-4\r\n\t\t\t\tC41.336,50.578,41,49.828,41,49c0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879L48,48.757l5.879-5.879\r\n\t\t\t\tC54.422,42.336,55.172,42,56,42c1.657,0,3,1.343,3,3C59,45.829,58.664,46.578,58.121,47.121z M34.055,46.909L23,52.939V19.79\r\n\t\t\t\tl16-8.727v25.338c1.693-1.606,3.732-2.847,6-3.593V12.017l10,7.5v13.291c2.268,0.746,4.307,1.987,6,3.593V18\r\n\t\t\t\tc0-0.948-0.448-1.782-1.134-2.332l0.001-0.001l-0.025-0.019c-0.074-0.058-0.145-0.117-0.224-0.168L43.867,3.667l-0.001,0.001\r\n\t\t\t\tC43.352,3.256,42.709,3,42,3c-0.495,0-0.955,0.131-1.367,0.344L40.63,3.339L20.251,14.455L5.867,3.667L5.866,3.668\r\n\t\t\t\tC5.352,3.256,4.709,3,4,3C2.343,3,1,4.343,1,6v40c0,1.056,0.548,1.98,1.372,2.514l15.815,11.861C18.692,60.762,19.315,61,20,61\r\n\t\t\t\tc0.528,0,1.018-0.148,1.449-0.388l0.004,0.006l13.457-7.34C34.331,51.623,34,49.852,34,48C34,47.632,34.031,47.271,34.055,46.909\r\n\t\t\t\tz M17,51.986l-10-7.5V12.017l10,7.5V51.986z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M50,35c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13c7.18,0,13-5.82,13-13\r\n\t\t\t\tC63,40.82,57.18,35,50,35z M58.121,47.121l-8,8C49.578,55.664,48.828,56,48,56c-0.828,0-1.578-0.336-2.121-0.879l-4-4\r\n\t\t\t\tC41.336,50.578,41,49.828,41,49c0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879L48,48.757l5.879-5.879\r\n\t\t\t\tC54.422,42.336,55.172,42,56,42c1.657,0,3,1.343,3,3C59,45.829,58.664,46.578,58.121,47.121z M34.055,46.909L23,52.939V19.79\r\n\t\t\t\tl16-8.727v25.338c1.693-1.606,3.732-2.847,6-3.593V12.017l10,7.5v13.291c2.268,0.746,4.307,1.987,6,3.593V18\r\n\t\t\t\tc0-0.948-0.448-1.782-1.134-2.332l0.001-0.001l-0.025-0.019c-0.074-0.058-0.145-0.117-0.224-0.168L43.867,3.667l-0.001,0.001\r\n\t\t\t\tC43.352,3.256,42.709,3,42,3c-0.495,0-0.955,0.131-1.367,0.344L40.63,3.339L20.251,14.455L5.867,3.667L5.866,3.668\r\n\t\t\t\tC5.352,3.256,4.709,3,4,3C2.343,3,1,4.343,1,6v40c0,1.056,0.548,1.98,1.372,2.514l15.815,11.861C18.692,60.762,19.315,61,20,61\r\n\t\t\t\tc0.528,0,1.018-0.148,1.449-0.388l0.004,0.006l13.457-7.34C34.331,51.623,34,49.852,34,48C34,47.632,34.031,47.271,34.055,46.909\r\n\t\t\t\tz M17,51.986l-10-7.5V12.017l10,7.5V51.986z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MAP__x2F__REMOVE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MAP__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{"id":"MAP__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M50,35c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13c7.18,0,13-5.82,13-13\r\n\t\t\t\tC63,40.82,57.18,35,50,35z M56,51H44c-1.657,0-3-1.343-3-3c0-1.657,1.343-3,3-3h12c1.657,0,3,1.343,3,3\r\n\t\t\t\tC59,49.657,57.657,51,56,51z M34.055,46.909L23,52.939V19.79l16-8.727v25.338c1.693-1.606,3.732-2.847,6-3.593V12.017l10,7.5\r\n\t\t\t\tv13.291c2.268,0.746,4.307,1.987,6,3.593V18c0-0.948-0.448-1.782-1.134-2.332l0.001-0.001l-0.025-0.019\r\n\t\t\t\tc-0.074-0.058-0.145-0.117-0.224-0.168L43.867,3.667l-0.001,0.001C43.352,3.256,42.709,3,42,3c-0.495,0-0.956,0.131-1.367,0.344\r\n\t\t\t\tL40.63,3.339L20.251,14.455L5.867,3.667L5.866,3.668C5.352,3.256,4.709,3,4,3C2.343,3,1,4.343,1,6v40\r\n\t\t\t\tc0,1.056,0.548,1.98,1.372,2.514l15.815,11.861C18.692,60.762,19.315,61,20,61c0.528,0,1.018-0.148,1.449-0.388l0.003,0.006\r\n\t\t\t\tl13.457-7.34C34.331,51.623,34,49.852,34,48C34,47.632,34.031,47.271,34.055,46.909z M17,51.986l-10-7.5V12.017l10,7.5V51.986z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M50,35c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13c7.18,0,13-5.82,13-13\r\n\t\t\t\tC63,40.82,57.18,35,50,35z M56,51H44c-1.657,0-3-1.343-3-3c0-1.657,1.343-3,3-3h12c1.657,0,3,1.343,3,3\r\n\t\t\t\tC59,49.657,57.657,51,56,51z M34.055,46.909L23,52.939V19.79l16-8.727v25.338c1.693-1.606,3.732-2.847,6-3.593V12.017l10,7.5\r\n\t\t\t\tv13.291c2.268,0.746,4.307,1.987,6,3.593V18c0-0.948-0.448-1.782-1.134-2.332l0.001-0.001l-0.025-0.019\r\n\t\t\t\tc-0.074-0.058-0.145-0.117-0.224-0.168L43.867,3.667l-0.001,0.001C43.352,3.256,42.709,3,42,3c-0.495,0-0.956,0.131-1.367,0.344\r\n\t\t\t\tL40.63,3.339L20.251,14.455L5.867,3.667L5.866,3.668C5.352,3.256,4.709,3,4,3C2.343,3,1,4.343,1,6v40\r\n\t\t\t\tc0,1.056,0.548,1.98,1.372,2.514l15.815,11.861C18.692,60.762,19.315,61,20,61c0.528,0,1.018-0.148,1.449-0.388l0.003,0.006\r\n\t\t\t\tl13.457-7.34C34.331,51.623,34,49.852,34,48C34,47.632,34.031,47.271,34.055,46.909z M17,51.986l-10-7.5V12.017l10,7.5V51.986z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MAP__x2F__ADD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MAP__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{"id":"MAP__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M50,35c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13c7.18,0,13-5.82,13-13\r\n\t\t\t\tC63,40.82,57.18,35,50,35z M56,51h-3v3c0,1.657-1.343,3-3,3s-3-1.343-3-3v-3h-3c-1.657,0-3-1.343-3-3c0-1.657,1.343-3,3-3h3v-3\r\n\t\t\t\tc0-1.657,1.343-3,3-3s3,1.343,3,3v3h3c1.657,0,3,1.343,3,3C59,49.657,57.657,51,56,51z M34.055,46.909L23,52.939V19.79l16-8.727\r\n\t\t\t\tv25.338c1.693-1.606,3.732-2.847,6-3.593V12.017l10,7.5v13.291c2.268,0.746,4.307,1.987,6,3.593V18\r\n\t\t\t\tc0-0.948-0.448-1.782-1.134-2.332l0.001-0.001l-0.025-0.019c-0.073-0.058-0.145-0.117-0.224-0.168L43.867,3.667l-0.001,0.001\r\n\t\t\t\tC43.352,3.256,42.709,3,42,3c-0.495,0-0.956,0.131-1.367,0.344L40.63,3.339L20.251,14.455L5.867,3.667L5.866,3.668\r\n\t\t\t\tC5.352,3.256,4.709,3,4,3C2.343,3,1,4.343,1,6v40c0,1.056,0.548,1.98,1.372,2.514l15.815,11.861C18.692,60.762,19.315,61,20,61\r\n\t\t\t\tc0.528,0,1.018-0.148,1.449-0.388l0.003,0.006l13.457-7.34C34.331,51.623,34,49.852,34,48C34,47.632,34.031,47.271,34.055,46.909\r\n\t\t\t\tz M17,51.986l-10-7.5V12.017l10,7.5V51.986z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M50,35c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13c7.18,0,13-5.82,13-13\r\n\t\t\t\tC63,40.82,57.18,35,50,35z M56,51h-3v3c0,1.657-1.343,3-3,3s-3-1.343-3-3v-3h-3c-1.657,0-3-1.343-3-3c0-1.657,1.343-3,3-3h3v-3\r\n\t\t\t\tc0-1.657,1.343-3,3-3s3,1.343,3,3v3h3c1.657,0,3,1.343,3,3C59,49.657,57.657,51,56,51z M34.055,46.909L23,52.939V19.79l16-8.727\r\n\t\t\t\tv25.338c1.693-1.606,3.732-2.847,6-3.593V12.017l10,7.5v13.291c2.268,0.746,4.307,1.987,6,3.593V18\r\n\t\t\t\tc0-0.948-0.448-1.782-1.134-2.332l0.001-0.001l-0.025-0.019c-0.073-0.058-0.145-0.117-0.224-0.168L43.867,3.667l-0.001,0.001\r\n\t\t\t\tC43.352,3.256,42.709,3,42,3c-0.495,0-0.956,0.131-1.367,0.344L40.63,3.339L20.251,14.455L5.867,3.667L5.866,3.668\r\n\t\t\t\tC5.352,3.256,4.709,3,4,3C2.343,3,1,4.343,1,6v40c0,1.056,0.548,1.98,1.372,2.514l15.815,11.861C18.692,60.762,19.315,61,20,61\r\n\t\t\t\tc0.528,0,1.018-0.148,1.449-0.388l0.003,0.006l13.457-7.34C34.331,51.623,34,49.852,34,48C34,47.632,34.031,47.271,34.055,46.909\r\n\t\t\t\tz M17,51.986l-10-7.5V12.017l10,7.5V51.986z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MAP_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MAP","display":"inline"},"children":[{"name":"g","attribs":{"id":"MAP","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M60.866,15.668l0.001-0.001l-0.025-0.019c-0.073-0.058-0.145-0.117-0.224-0.168\r\n\t\t\t\tL44.867,3.667l-0.001,0.001C44.352,3.256,43.709,3,43,3c-0.495,0-0.956,0.131-1.367,0.344L41.63,3.339L21.251,14.455L6.867,3.667\r\n\t\t\t\tL6.866,3.668C6.352,3.256,5.709,3,5,3C3.343,3,2,4.343,2,6v40c0,1.056,0.548,1.98,1.372,2.514l15.815,11.861\r\n\t\t\t\tC19.692,60.762,20.315,61,21,61c0.528,0,1.018-0.148,1.449-0.388l0.003,0.006L42.725,49.56l14.542,10.906l0.012-0.016\r\n\t\t\t\tC57.766,60.795,58.358,61,59,61c1.657,0,3-1.343,3-3V18C62,17.052,61.552,16.218,60.866,15.668z M18,51.986l-10-7.5V12.017\r\n\t\t\t\tl10,7.5V51.986z M40,44.212l-16,8.727V19.79l16-8.727V44.212z M56,52.017l-10-7.5v-32.5l10,7.5V52.017z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M60.866,15.668l0.001-0.001l-0.025-0.019c-0.073-0.058-0.145-0.117-0.224-0.168\r\n\t\t\t\tL44.867,3.667l-0.001,0.001C44.352,3.256,43.709,3,43,3c-0.495,0-0.956,0.131-1.367,0.344L41.63,3.339L21.251,14.455L6.867,3.667\r\n\t\t\t\tL6.866,3.668C6.352,3.256,5.709,3,5,3C3.343,3,2,4.343,2,6v40c0,1.056,0.548,1.98,1.372,2.514l15.815,11.861\r\n\t\t\t\tC19.692,60.762,20.315,61,21,61c0.528,0,1.018-0.148,1.449-0.388l0.003,0.006L42.725,49.56l14.542,10.906l0.012-0.016\r\n\t\t\t\tC57.766,60.795,58.358,61,59,61c1.657,0,3-1.343,3-3V18C62,17.052,61.552,16.218,60.866,15.668z M18,51.986l-10-7.5V12.017\r\n\t\t\t\tl10,7.5V51.986z M40,44.212l-16,8.727V19.79l16-8.727V44.212z M56,52.017l-10-7.5v-32.5l10,7.5V52.017z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BRIGHTNESS__x2F__HIGH_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BRIGHTNESS__x2F__HIGH","display":"inline"},"children":[{"name":"g","attribs":{"id":"BRIGHTNESS__x2F__HIGH","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M14.879,19.121l0.009-0.009C15.427,19.659,16.17,20,17,20c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.83-0.341-1.573-0.887-2.113l0.009-0.009l-1.556-1.556l-5.445-5.445C11.578,7.336,10.828,7,10,7c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L14.879,19.121z M47,20c0.83,0,1.573-0.342,2.113-0.888l0.009,0.009l1.555-1.556l5.444-5.444\r\n\t\t\t\tC56.664,11.578,57,10.828,57,10c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879l-5.444,5.445l-1.556,1.556l0.009,0.009\r\n\t\t\t\tC44.342,15.427,44,16.17,44,17C44,18.657,45.343,20,47,20z M32,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8\r\n\t\t\t\tC29,12.657,30.343,14,32,14z M14,32c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h8\r\n\t\t\t\tC12.657,35,14,33.657,14,32z M50.677,46.434l-1.555-1.556C48.578,44.336,47.828,44,47,44c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121l1.556,1.556l5.444,5.444C52.422,56.664,53.172,57,54,57c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L50.677,46.434z M17,44c-0.828,0-1.578,0.336-2.121,0.879l-7,7C7.336,52.422,7,53.172,7,54\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879l5.445-5.444l1.556-1.556C19.664,48.579,20,47.828,20,47\r\n\t\t\t\tC20,45.343,18.657,44,17,44z M61,29h-8c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h8c1.657,0,3-1.343,3-3\r\n\t\t\t\tC64,30.343,62.657,29,61,29z M32,20c-6.627,0-12,5.373-12,12c0,1.021,0.141,2.007,0.381,2.953l1.183,2.958\r\n\t\t\t\tC23.627,41.544,27.524,44,32,44c6.627,0,12-5.372,12-12C44,25.373,38.627,20,32,20z M32,38c-3.314,0-6-2.686-6-6\r\n\t\t\t\tc0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6C38,35.314,35.314,38,32,38z M32,50c-1.657,0-3,1.343-3,3v8c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3v-8C35,51.343,33.657,50,32,50z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M14.879,19.121l0.009-0.009C15.427,19.659,16.17,20,17,20c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.83-0.341-1.573-0.887-2.113l0.009-0.009l-1.556-1.556l-5.445-5.445C11.578,7.336,10.828,7,10,7c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L14.879,19.121z M47,20c0.83,0,1.573-0.342,2.113-0.888l0.009,0.009l1.555-1.556l5.444-5.444\r\n\t\t\t\tC56.664,11.578,57,10.828,57,10c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879l-5.444,5.445l-1.556,1.556l0.009,0.009\r\n\t\t\t\tC44.342,15.427,44,16.17,44,17C44,18.657,45.343,20,47,20z M32,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8\r\n\t\t\t\tC29,12.657,30.343,14,32,14z M14,32c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h8\r\n\t\t\t\tC12.657,35,14,33.657,14,32z M50.677,46.434l-1.555-1.556C48.578,44.336,47.828,44,47,44c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121l1.556,1.556l5.444,5.444C52.422,56.664,53.172,57,54,57c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L50.677,46.434z M17,44c-0.828,0-1.578,0.336-2.121,0.879l-7,7C7.336,52.422,7,53.172,7,54\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879l5.445-5.444l1.556-1.556C19.664,48.579,20,47.828,20,47\r\n\t\t\t\tC20,45.343,18.657,44,17,44z M61,29h-8c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h8c1.657,0,3-1.343,3-3\r\n\t\t\t\tC64,30.343,62.657,29,61,29z M32,20c-6.627,0-12,5.373-12,12c0,1.021,0.141,2.007,0.381,2.953l1.183,2.958\r\n\t\t\t\tC23.627,41.544,27.524,44,32,44c6.627,0,12-5.372,12-12C44,25.373,38.627,20,32,20z M32,38c-3.314,0-6-2.686-6-6\r\n\t\t\t\tc0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6C38,35.314,35.314,38,32,38z M32,50c-1.657,0-3,1.343-3,3v8c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3v-8C35,51.343,33.657,50,32,50z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BRIGHTNESS__x2F__LOW_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BRIGHTNESS__x2F__LOW","display":"inline"},"children":[{"name":"g","attribs":{"id":"BRIGHTNESS__x2F__LOW","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M12.879,17.122l2,2l0.009-0.009C15.427,19.659,16.17,20,17,20\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.83-0.341-1.573-0.888-2.113l0.009-0.009l-2-2l-0.009,0.009C16.573,12.341,15.83,12,15,12\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.83,0.341,1.573,0.888,2.112L12.879,17.122z M47,20c0.83,0,1.573-0.342,2.113-0.888l0.009,0.009l2-2\r\n\t\t\t\tl-0.009-0.009C51.659,16.573,52,15.83,52,15c0-1.657-1.343-3-3-3c-0.83,0-1.573,0.341-2.113,0.888l-0.009-0.009l-2,2l0.009,0.009\r\n\t\t\t\tC44.342,15.427,44,16.17,44,17C44,18.657,45.343,20,47,20z M14,32c0-1.657-1.343-3-3-3H9c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,1.657,1.343,3,3,3h2C12.657,35,14,33.657,14,32z M32,14c1.657,0,3-1.343,3-3V9c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v2\r\n\t\t\t\tC29,12.657,30.343,14,32,14z M32,20c-6.627,0-12,5.373-12,12c0,1.021,0.141,2.007,0.381,2.953l1.183,2.958\r\n\t\t\t\tC23.627,41.544,27.524,44,32,44c6.627,0,12-5.372,12-12C44,25.373,38.627,20,32,20z M32,38c-3.314,0-6-2.686-6-6\r\n\t\t\t\tc0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6C38,35.314,35.314,38,32,38z M49.121,44.879C48.578,44.336,47.828,44,47,44\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l2,2C47.422,51.664,48.172,52,49,52c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L49.121,44.879z M17,44c-0.828,0-1.578,0.336-2.121,0.879l-2,2C12.336,47.422,12,48.172,12,49\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.828,0,1.579-0.336,2.121-0.879l2-2C19.664,48.579,20,47.828,20,47C20,45.343,18.657,44,17,44z M55,29h-2\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h2c1.657,0,3-1.343,3-3C58,30.343,56.657,29,55,29z M32,50c-1.657,0-3,1.343-3,3v2\r\n\t\t\t\tc0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-2C35,51.343,33.657,50,32,50z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M12.879,17.122l2,2l0.009-0.009C15.427,19.659,16.17,20,17,20\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.83-0.341-1.573-0.888-2.113l0.009-0.009l-2-2l-0.009,0.009C16.573,12.341,15.83,12,15,12\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.83,0.341,1.573,0.888,2.112L12.879,17.122z M47,20c0.83,0,1.573-0.342,2.113-0.888l0.009,0.009l2-2\r\n\t\t\t\tl-0.009-0.009C51.659,16.573,52,15.83,52,15c0-1.657-1.343-3-3-3c-0.83,0-1.573,0.341-2.113,0.888l-0.009-0.009l-2,2l0.009,0.009\r\n\t\t\t\tC44.342,15.427,44,16.17,44,17C44,18.657,45.343,20,47,20z M14,32c0-1.657-1.343-3-3-3H9c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,1.657,1.343,3,3,3h2C12.657,35,14,33.657,14,32z M32,14c1.657,0,3-1.343,3-3V9c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v2\r\n\t\t\t\tC29,12.657,30.343,14,32,14z M32,20c-6.627,0-12,5.373-12,12c0,1.021,0.141,2.007,0.381,2.953l1.183,2.958\r\n\t\t\t\tC23.627,41.544,27.524,44,32,44c6.627,0,12-5.372,12-12C44,25.373,38.627,20,32,20z M32,38c-3.314,0-6-2.686-6-6\r\n\t\t\t\tc0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6C38,35.314,35.314,38,32,38z M49.121,44.879C48.578,44.336,47.828,44,47,44\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l2,2C47.422,51.664,48.172,52,49,52c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L49.121,44.879z M17,44c-0.828,0-1.578,0.336-2.121,0.879l-2,2C12.336,47.422,12,48.172,12,49\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.828,0,1.579-0.336,2.121-0.879l2-2C19.664,48.579,20,47.828,20,47C20,45.343,18.657,44,17,44z M55,29h-2\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h2c1.657,0,3-1.343,3-3C58,30.343,56.657,29,55,29z M32,50c-1.657,0-3,1.343-3,3v2\r\n\t\t\t\tc0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-2C35,51.343,33.657,50,32,50z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"POLAROIDS_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"POLAROIDS","display":"inline"},"children":[{"name":"g","attribs":{"id":"POLAROIDS","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M45,12H3c-1.657,0-3,1.343-3,3v46c0,1.657,1.343,3,3,3h42c1.657,0,3-1.343,3-3\r\n\t\t\t\tV15C48,13.343,46.657,12,45,12z M42,49H6V18h36V49z M61,0H19c-1.657,0-3,1.343-3,3v6h6V6h36v31h-7v15h10c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M45,12H3c-1.657,0-3,1.343-3,3v46c0,1.657,1.343,3,3,3h42c1.657,0,3-1.343,3-3\r\n\t\t\t\tV15C48,13.343,46.657,12,45,12z M42,49H6V18h36V49z M61,0H19c-1.657,0-3,1.343-3,3v6h6V6h36v31h-7v15h10c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"POLAROID_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"POLAROID","display":"inline"},"children":[{"name":"g","attribs":{"id":"POLAROID","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M53,6H11C9.343,6,8,7.343,8,9v46c0,1.657,1.343,3,3,3h42c1.657,0,3-1.343,3-3V9\r\n\t\t\t\tC56,7.343,54.657,6,53,6z M50,43H14V12h36V43z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M53,6H11C9.343,6,8,7.343,8,9v46c0,1.657,1.343,3,3,3h42c1.657,0,3-1.343,3-3V9\r\n\t\t\t\tC56,7.343,54.657,6,53,6z M50,43H14V12h36V43z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"PICTURE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PICTURE","display":"inline"},"children":[{"name":"g","attribs":{"id":"PICTURE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M22,28c3.314,0,6-2.686,6-6c0-3.314-2.686-6-6-6s-6,2.686-6,6\r\n\t\t\t\tC16,25.314,18.686,28,22,28z M62,14c0-1.304-0.837-2.403-2-2.816V7.816C61.163,7.403,62,6.305,62,5c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.304,0-2.403,0.838-2.816,2h-3.367C52.403,2.838,51.304,2,50,2c-1.304,0-2.403,0.838-2.816,2h-3.367\r\n\t\t\t\tC43.403,2.838,42.304,2,41,2c-1.304,0-2.403,0.838-2.816,2h-3.367C34.403,2.838,33.304,2,32,2c-1.304,0-2.403,0.838-2.816,2\r\n\t\t\t\th-3.367C25.403,2.838,24.304,2,23,2c-1.304,0-2.403,0.838-2.816,2h-3.367C16.403,2.838,15.304,2,14,2\r\n\t\t\t\tc-1.304,0-2.403,0.838-2.816,2H7.816C7.403,2.838,6.304,2,5,2C3.343,2,2,3.343,2,5c0,1.304,0.837,2.403,2,2.816v3.367\r\n\t\t\t\tC2.838,11.597,2,12.696,2,14c0,1.304,0.837,2.403,2,2.816v3.367C2.838,20.597,2,21.696,2,23c0,1.304,0.837,2.403,2,2.816v3.367\r\n\t\t\t\tC2.838,29.597,2,30.696,2,32c0,1.304,0.837,2.403,2,2.816v3.367C2.838,38.597,2,39.696,2,41s0.837,2.403,2,2.816v3.367\r\n\t\t\t\tC2.838,47.597,2,48.696,2,50c0,1.304,0.837,2.403,2,2.816v3.367C2.838,56.597,2,57.696,2,59c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2\r\n\t\t\t\tc1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2\r\n\t\t\t\tc1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-1.304-0.837-2.403-2-2.816v-3.367c1.163-0.413,2-1.512,2-2.816c0-1.304-0.837-2.403-2-2.816v-3.367\r\n\t\t\t\tc1.163-0.413,2-1.512,2-2.816s-0.837-2.403-2-2.816v-3.367c1.163-0.413,2-1.512,2-2.816c0-1.304-0.837-2.403-2-2.816v-3.367\r\n\t\t\t\tc1.163-0.413,2-1.512,2-2.816c0-1.304-0.837-2.403-2-2.816v-3.367C61.163,16.403,62,15.304,62,14z M54,54H10V10h44V54z M51,39\r\n\t\t\t\tl-9-14L28,42l-3-3L13,51h38V39z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M22,28c3.314,0,6-2.686,6-6c0-3.314-2.686-6-6-6s-6,2.686-6,6\r\n\t\t\t\tC16,25.314,18.686,28,22,28z M62,14c0-1.304-0.837-2.403-2-2.816V7.816C61.163,7.403,62,6.305,62,5c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.304,0-2.403,0.838-2.816,2h-3.367C52.403,2.838,51.304,2,50,2c-1.304,0-2.403,0.838-2.816,2h-3.367\r\n\t\t\t\tC43.403,2.838,42.304,2,41,2c-1.304,0-2.403,0.838-2.816,2h-3.367C34.403,2.838,33.304,2,32,2c-1.304,0-2.403,0.838-2.816,2\r\n\t\t\t\th-3.367C25.403,2.838,24.304,2,23,2c-1.304,0-2.403,0.838-2.816,2h-3.367C16.403,2.838,15.304,2,14,2\r\n\t\t\t\tc-1.304,0-2.403,0.838-2.816,2H7.816C7.403,2.838,6.304,2,5,2C3.343,2,2,3.343,2,5c0,1.304,0.837,2.403,2,2.816v3.367\r\n\t\t\t\tC2.838,11.597,2,12.696,2,14c0,1.304,0.837,2.403,2,2.816v3.367C2.838,20.597,2,21.696,2,23c0,1.304,0.837,2.403,2,2.816v3.367\r\n\t\t\t\tC2.838,29.597,2,30.696,2,32c0,1.304,0.837,2.403,2,2.816v3.367C2.838,38.597,2,39.696,2,41s0.837,2.403,2,2.816v3.367\r\n\t\t\t\tC2.838,47.597,2,48.696,2,50c0,1.304,0.837,2.403,2,2.816v3.367C2.838,56.597,2,57.696,2,59c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2\r\n\t\t\t\tc1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2\r\n\t\t\t\tc1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-1.304-0.837-2.403-2-2.816v-3.367c1.163-0.413,2-1.512,2-2.816c0-1.304-0.837-2.403-2-2.816v-3.367\r\n\t\t\t\tc1.163-0.413,2-1.512,2-2.816s-0.837-2.403-2-2.816v-3.367c1.163-0.413,2-1.512,2-2.816c0-1.304-0.837-2.403-2-2.816v-3.367\r\n\t\t\t\tc1.163-0.413,2-1.512,2-2.816c0-1.304-0.837-2.403-2-2.816v-3.367C61.163,16.403,62,15.304,62,14z M54,54H10V10h44V54z M51,39\r\n\t\t\t\tl-9-14L28,42l-3-3L13,51h38V39z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"FRAME_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"FRAME","display":"inline"},"children":[{"name":"g","attribs":{"id":"FRAME","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M62,14c0-1.304-0.837-2.403-2-2.816V7.816C61.163,7.403,62,6.305,62,5\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-1.304,0-2.403,0.838-2.816,2h-3.367C52.403,2.838,51.304,2,50,2c-1.304,0-2.403,0.838-2.816,2h-3.367\r\n\t\t\t\tC43.403,2.838,42.304,2,41,2c-1.304,0-2.403,0.838-2.816,2h-3.367C34.403,2.838,33.304,2,32,2c-1.304,0-2.403,0.838-2.816,2\r\n\t\t\t\th-3.367C25.403,2.838,24.304,2,23,2s-2.403,0.838-2.816,2h-3.367C16.403,2.838,15.304,2,14,2s-2.403,0.838-2.816,2H7.816\r\n\t\t\t\tC7.403,2.838,6.304,2,5,2C3.343,2,2,3.343,2,5c0,1.304,0.837,2.403,2,2.816v3.367C2.837,11.597,2,12.696,2,14\r\n\t\t\t\tc0,1.304,0.837,2.403,2,2.816v3.367C2.837,20.597,2,21.696,2,23c0,1.304,0.837,2.403,2,2.816v3.367C2.837,29.597,2,30.696,2,32\r\n\t\t\t\tc0,1.304,0.837,2.403,2,2.816v3.367C2.837,38.597,2,39.696,2,41s0.837,2.403,2,2.816v3.367C2.837,47.597,2,48.696,2,50\r\n\t\t\t\tc0,1.304,0.837,2.403,2,2.816v3.367C2.837,56.597,2,57.696,2,59c0,1.657,1.343,3,3,3c1.304,0,2.403-0.837,2.816-2h3.367\r\n\t\t\t\tc0.413,1.162,1.512,2,2.816,2s2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2s2.403-0.837,2.816-2h3.367\r\n\t\t\t\tc0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.816-2h3.367\r\n\t\t\t\tc0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-1.304-0.837-2.403-2-2.816v-3.367c1.162-0.413,2-1.512,2-2.816c0-1.304-0.837-2.403-2-2.816v-3.367\r\n\t\t\t\tc1.162-0.413,2-1.512,2-2.816s-0.837-2.403-2-2.816v-3.367c1.162-0.413,2-1.512,2-2.816c0-1.304-0.837-2.403-2-2.816v-3.367\r\n\t\t\t\tc1.162-0.413,2-1.512,2-2.816c0-1.304-0.837-2.403-2-2.816v-3.367C61.163,16.403,62,15.304,62,14z M54,54H10V10h44V54z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M62,14c0-1.304-0.837-2.403-2-2.816V7.816C61.163,7.403,62,6.305,62,5\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-1.304,0-2.403,0.838-2.816,2h-3.367C52.403,2.838,51.304,2,50,2c-1.304,0-2.403,0.838-2.816,2h-3.367\r\n\t\t\t\tC43.403,2.838,42.304,2,41,2c-1.304,0-2.403,0.838-2.816,2h-3.367C34.403,2.838,33.304,2,32,2c-1.304,0-2.403,0.838-2.816,2\r\n\t\t\t\th-3.367C25.403,2.838,24.304,2,23,2s-2.403,0.838-2.816,2h-3.367C16.403,2.838,15.304,2,14,2s-2.403,0.838-2.816,2H7.816\r\n\t\t\t\tC7.403,2.838,6.304,2,5,2C3.343,2,2,3.343,2,5c0,1.304,0.837,2.403,2,2.816v3.367C2.837,11.597,2,12.696,2,14\r\n\t\t\t\tc0,1.304,0.837,2.403,2,2.816v3.367C2.837,20.597,2,21.696,2,23c0,1.304,0.837,2.403,2,2.816v3.367C2.837,29.597,2,30.696,2,32\r\n\t\t\t\tc0,1.304,0.837,2.403,2,2.816v3.367C2.837,38.597,2,39.696,2,41s0.837,2.403,2,2.816v3.367C2.837,47.597,2,48.696,2,50\r\n\t\t\t\tc0,1.304,0.837,2.403,2,2.816v3.367C2.837,56.597,2,57.696,2,59c0,1.657,1.343,3,3,3c1.304,0,2.403-0.837,2.816-2h3.367\r\n\t\t\t\tc0.413,1.162,1.512,2,2.816,2s2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2s2.403-0.837,2.816-2h3.367\r\n\t\t\t\tc0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.816-2h3.367\r\n\t\t\t\tc0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-1.304-0.837-2.403-2-2.816v-3.367c1.162-0.413,2-1.512,2-2.816c0-1.304-0.837-2.403-2-2.816v-3.367\r\n\t\t\t\tc1.162-0.413,2-1.512,2-2.816s-0.837-2.403-2-2.816v-3.367c1.162-0.413,2-1.512,2-2.816c0-1.304-0.837-2.403-2-2.816v-3.367\r\n\t\t\t\tc1.162-0.413,2-1.512,2-2.816c0-1.304-0.837-2.403-2-2.816v-3.367C61.163,16.403,62,15.304,62,14z M54,54H10V10h44V54z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MAGNIFYING_GLASS__x2F__REMOVE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MAGNIFYING_GLASS__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{"id":"MAGNIFYING_GLASS__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M62.243,53.758L44.658,36.173C46.768,32.601,48,28.449,48,24\r\n\t\t\t\tC48,10.745,37.255,0,24,0S0,10.745,0,24s10.745,24,24,24c4.449,0,8.601-1.232,12.173-3.342l17.585,17.584\r\n\t\t\t\tC54.843,63.329,56.343,64,58,64c3.314,0,6-2.686,6-6C64,56.343,63.328,54.843,62.243,53.758z M24,42c-9.941,0-18-8.059-18-18\r\n\t\t\t\tc0-9.941,8.059-18,18-18s18,8.059,18,18C42,33.941,33.941,42,24,42z M34,21H14c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h20\r\n\t\t\t\tc1.657,0,3-1.343,3-3C37,22.344,35.657,21,34,21z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M62.243,53.758L44.658,36.173C46.768,32.601,48,28.449,48,24\r\n\t\t\t\tC48,10.745,37.255,0,24,0S0,10.745,0,24s10.745,24,24,24c4.449,0,8.601-1.232,12.173-3.342l17.585,17.584\r\n\t\t\t\tC54.843,63.329,56.343,64,58,64c3.314,0,6-2.686,6-6C64,56.343,63.328,54.843,62.243,53.758z M24,42c-9.941,0-18-8.059-18-18\r\n\t\t\t\tc0-9.941,8.059-18,18-18s18,8.059,18,18C42,33.941,33.941,42,24,42z M34,21H14c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h20\r\n\t\t\t\tc1.657,0,3-1.343,3-3C37,22.344,35.657,21,34,21z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MAGNIFYING_GLASS__x2F__ADD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MAGNIFYING_GLASS__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{"id":"MAGNIFYING_GLASS__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M62.243,53.758L44.658,36.173C46.768,32.601,48,28.449,48,24\r\n\t\t\t\tC48,10.745,37.255,0,24,0C10.745,0,0,10.745,0,24s10.745,24,24,24c4.449,0,8.601-1.232,12.173-3.342l17.585,17.584\r\n\t\t\t\tC54.843,63.329,56.343,64,58,64c3.314,0,6-2.686,6-6C64,56.343,63.328,54.843,62.243,53.758z M24,42c-9.941,0-18-8.059-18-18\r\n\t\t\t\tc0-9.941,8.059-18,18-18c9.941,0,18,8.059,18,18C42,33.941,33.941,42,24,42z M34,21h-7v-7c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v7h-7c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h7v7c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-7h7\r\n\t\t\t\tc1.657,0,3-1.343,3-3C37,22.344,35.657,21,34,21z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M62.243,53.758L44.658,36.173C46.768,32.601,48,28.449,48,24\r\n\t\t\t\tC48,10.745,37.255,0,24,0C10.745,0,0,10.745,0,24s10.745,24,24,24c4.449,0,8.601-1.232,12.173-3.342l17.585,17.584\r\n\t\t\t\tC54.843,63.329,56.343,64,58,64c3.314,0,6-2.686,6-6C64,56.343,63.328,54.843,62.243,53.758z M24,42c-9.941,0-18-8.059-18-18\r\n\t\t\t\tc0-9.941,8.059-18,18-18c9.941,0,18,8.059,18,18C42,33.941,33.941,42,24,42z M34,21h-7v-7c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v7h-7c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h7v7c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-7h7\r\n\t\t\t\tc1.657,0,3-1.343,3-3C37,22.344,35.657,21,34,21z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MAGNIFYING_GLASS_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MAGNIFYING_GLASS","display":"inline"},"children":[{"name":"g","attribs":{"id":"MAGNIFYING_GLASS","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M62.243,53.758L44.658,36.173C46.768,32.601,48,28.449,48,24\r\n\t\t\t\tC48,10.745,37.255,0,24,0C10.745,0,0,10.745,0,24s10.745,24,24,24c4.449,0,8.601-1.232,12.173-3.342l17.584,17.584\r\n\t\t\t\tC54.843,63.329,56.343,64,58,64c3.314,0,6-2.686,6-6C64,56.343,63.328,54.843,62.243,53.758z M24,42c-9.941,0-18-8.059-18-18\r\n\t\t\t\tc0-9.941,8.059-18,18-18s18,8.059,18,18C42,33.941,33.941,42,24,42z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M62.243,53.758L44.658,36.173C46.768,32.601,48,28.449,48,24\r\n\t\t\t\tC48,10.745,37.255,0,24,0C10.745,0,0,10.745,0,24s10.745,24,24,24c4.449,0,8.601-1.232,12.173-3.342l17.584,17.584\r\n\t\t\t\tC54.843,63.329,56.343,64,58,64c3.314,0,6-2.686,6-6C64,56.343,63.328,54.843,62.243,53.758z M24,42c-9.941,0-18-8.059-18-18\r\n\t\t\t\tc0-9.941,8.059-18,18-18s18,8.059,18,18C42,33.941,33.941,42,24,42z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CIRCLE__x2F__RIGHT_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__RIGHT","display":"inline"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__RIGHT","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M47,29.778l0.007-0.008l-10-9L37,20.778C36.468,20.3,35.772,20,35,20\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.885,0.391,1.673,1,2.222l-0.007,0.008L37.182,29H19c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h18.182\r\n\t\t\t\tl-4.189,3.77L33,38.778c-0.61,0.549-1,1.337-1,2.222c0,1.657,1.343,3,3,3c0.772,0,1.468-0.299,2-0.778l0.007,0.008l10-9\r\n\t\t\t\tL47,34.222c0.61-0.549,1-1.336,1-2.222S47.609,30.328,47,29.778z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32S17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tS46.359,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M47,29.778l0.007-0.008l-10-9L37,20.778C36.468,20.3,35.772,20,35,20\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.885,0.391,1.673,1,2.222l-0.007,0.008L37.182,29H19c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h18.182\r\n\t\t\t\tl-4.189,3.77L33,38.778c-0.61,0.549-1,1.337-1,2.222c0,1.657,1.343,3,3,3c0.772,0,1.468-0.299,2-0.778l0.007,0.008l10-9\r\n\t\t\t\tL47,34.222c0.61-0.549,1-1.336,1-2.222S47.609,30.328,47,29.778z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32S17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tS46.359,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CIRCLE__x2F__LEFT_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__LEFT","display":"inline"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__LEFT","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M45,29H26.818l4.189-3.77L31,25.222c0.61-0.549,1-1.337,1-2.222\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.772,0-1.468,0.3-2,0.778l-0.007-0.008l-10,9L17,29.778c-0.61,0.549-1,1.336-1,2.222s0.391,1.673,1,2.222\r\n\t\t\t\tl-0.007,0.008l10,9L27,43.222C27.532,43.701,28.228,44,29,44c1.657,0,3-1.343,3-3c0-0.885-0.391-1.673-1-2.222l0.007-0.008\r\n\t\t\t\tL26.818,35H45c1.657,0,3-1.343,3-3C48,30.343,46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32S17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tS46.36,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M45,29H26.818l4.189-3.77L31,25.222c0.61-0.549,1-1.337,1-2.222\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.772,0-1.468,0.3-2,0.778l-0.007-0.008l-10,9L17,29.778c-0.61,0.549-1,1.336-1,2.222s0.391,1.673,1,2.222\r\n\t\t\t\tl-0.007,0.008l10,9L27,43.222C27.532,43.701,28.228,44,29,44c1.657,0,3-1.343,3-3c0-0.885-0.391-1.673-1-2.222l0.007-0.008\r\n\t\t\t\tL26.818,35H45c1.657,0,3-1.343,3-3C48,30.343,46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32S17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tS46.36,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CIRCLE__x2F__UP_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__UP","display":"inline"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__UP","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M43.23,26.993l-9-10l-0.008,0.007c-0.549-0.61-1.336-1-2.222-1\r\n\t\t\t\tc-0.885,0-1.672,0.391-2.222,1l-0.008-0.007l-9,10l0.008,0.007C20.3,27.532,20,28.229,20,29c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.885,0,1.673-0.391,2.222-1l0.008,0.007L29,26.818V45c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V26.818l3.77,4.189L38.778,31\r\n\t\t\t\tc0.549,0.61,1.337,1,2.222,1c1.657,0,3-1.343,3-3c0-0.772-0.3-1.468-0.778-2L43.23,26.993z M32,0C14.327,0,0,14.327,0,32\r\n\t\t\t\tc0,17.673,14.327,32,32,32c17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32S17.641,6,32,6\r\n\t\t\t\tc14.36,0,26,11.64,26,26S46.36,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M43.23,26.993l-9-10l-0.008,0.007c-0.549-0.61-1.336-1-2.222-1\r\n\t\t\t\tc-0.885,0-1.672,0.391-2.222,1l-0.008-0.007l-9,10l0.008,0.007C20.3,27.532,20,28.229,20,29c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.885,0,1.673-0.391,2.222-1l0.008,0.007L29,26.818V45c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V26.818l3.77,4.189L38.778,31\r\n\t\t\t\tc0.549,0.61,1.337,1,2.222,1c1.657,0,3-1.343,3-3c0-0.772-0.3-1.468-0.778-2L43.23,26.993z M32,0C14.327,0,0,14.327,0,32\r\n\t\t\t\tc0,17.673,14.327,32,32,32c17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32S17.641,6,32,6\r\n\t\t\t\tc14.36,0,26,11.64,26,26S46.36,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CIRCLE__x2F__DOWN_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__DOWN","display":"inline"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__DOWN","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M41,32c-0.885,0-1.673,0.391-2.222,1l-0.008-0.007L35,37.182V19\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v18.182l-3.77-4.189l-0.008,0.007c-0.549-0.61-1.337-1-2.222-1c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.772,0.299,1.468,0.778,2l-0.008,0.008l9,10L29.778,47c0.549,0.61,1.336,1,2.222,1c0.885,0,1.673-0.391,2.222-1l0.008,0.007\r\n\t\t\t\tl9-10L43.222,37C43.7,36.468,44,35.772,44,35C44,33.343,42.657,32,41,32z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\ts32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32S17.641,6,32,6s26,11.64,26,26S46.359,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M41,32c-0.885,0-1.673,0.391-2.222,1l-0.008-0.007L35,37.182V19\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v18.182l-3.77-4.189l-0.008,0.007c-0.549-0.61-1.337-1-2.222-1c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.772,0.299,1.468,0.778,2l-0.008,0.008l9,10L29.778,47c0.549,0.61,1.336,1,2.222,1c0.885,0,1.673-0.391,2.222-1l0.008,0.007\r\n\t\t\t\tl9-10L43.222,37C43.7,36.468,44,35.772,44,35C44,33.343,42.657,32,41,32z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\ts32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32S17.641,6,32,6s26,11.64,26,26S46.359,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BLOCK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BLOCK","display":"inline"},"children":[{"name":"g","attribs":{"id":"BLOCK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32c0-6.098,2.115-11.694,5.63-16.128\r\n\t\t\t\tL48.128,52.37C43.694,55.886,38.098,58,32,58z M52.37,48.128L15.873,11.63C20.307,8.115,25.902,6,32,6c14.359,0,26,11.641,26,26\r\n\t\t\t\tC58,38.098,55.886,43.694,52.37,48.128z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32c0-6.098,2.115-11.694,5.63-16.128\r\n\t\t\t\tL48.128,52.37C43.694,55.886,38.098,58,32,58z M52.37,48.128L15.873,11.63C20.307,8.115,25.902,6,32,6c14.359,0,26,11.641,26,26\r\n\t\t\t\tC58,38.098,55.886,43.694,52.37,48.128z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CIRCLE__x2F__DELETE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32S17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tS46.359,58,32,58z M46,21c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L32,27.758l-8.879-8.879\r\n\t\t\t\tC22.579,18.336,21.828,18,21,18c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L27.757,32l-8.879,8.879\r\n\t\t\t\tC18.336,41.422,18,42.172,18,43c0,1.657,1.343,3,3,3c0.828,0,1.579-0.336,2.121-0.879L32,36.243l8.879,8.879\r\n\t\t\t\tC41.422,45.664,42.172,46,43,46c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L36.243,32l8.879-8.878\r\n\t\t\t\tC45.664,22.578,46,21.829,46,21z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32S17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tS46.359,58,32,58z M46,21c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L32,27.758l-8.879-8.879\r\n\t\t\t\tC22.579,18.336,21.828,18,21,18c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L27.757,32l-8.879,8.879\r\n\t\t\t\tC18.336,41.422,18,42.172,18,43c0,1.657,1.343,3,3,3c0.828,0,1.579-0.336,2.121-0.879L32,36.243l8.879,8.879\r\n\t\t\t\tC41.422,45.664,42.172,46,43,46c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L36.243,32l8.879-8.878\r\n\t\t\t\tC45.664,22.578,46,21.829,46,21z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CIRCLE__x2F__OK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46,43.001C46,43.001,46,43.001,46,43.001C46,43,46,43,46,42.999V43.001z\r\n\t\t\t\t M46,20.999v0.002C46,21.001,46,21,46,20.999C46,21,46,21,46,20.999z M44,21c-0.828,0-1.578,0.336-2.121,0.879L28,35.758\r\n\t\t\t\tl-6.879-6.879C20.578,28.336,19.828,28,19,28c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l9,9\r\n\t\t\t\tC26.422,42.664,27.172,43,28,43c0.828,0,1.578-0.336,2.121-0.879l16-16C46.664,25.579,47,24.828,47,24C47,22.343,45.657,21,44,21\r\n\t\t\t\tz M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32s32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58\r\n\t\t\t\tC17.641,58,6,46.36,6,32S17.641,6,32,6c14.359,0,26,11.64,26,26S46.359,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46,43.001C46,43.001,46,43.001,46,43.001C46,43,46,43,46,42.999V43.001z\r\n\t\t\t\t M46,20.999v0.002C46,21.001,46,21,46,20.999C46,21,46,21,46,20.999z M44,21c-0.828,0-1.578,0.336-2.121,0.879L28,35.758\r\n\t\t\t\tl-6.879-6.879C20.578,28.336,19.828,28,19,28c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l9,9\r\n\t\t\t\tC26.422,42.664,27.172,43,28,43c0.828,0,1.578-0.336,2.121-0.879l16-16C46.664,25.579,47,24.828,47,24C47,22.343,45.657,21,44,21\r\n\t\t\t\tz M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32s32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58\r\n\t\t\t\tC17.641,58,6,46.36,6,32S17.641,6,32,6c14.359,0,26,11.64,26,26S46.359,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CIRCLE__x2F__MINUS_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__MINUS","display":"inline"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__MINUS","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M45,29H19c-1.657,0-3,1.343-3,3s1.343,3,3,3h26c1.657,0,3-1.343,3-3\r\n\t\t\t\tS46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32c17.673,0,32-14.327,32-32S49.673,0,32,0z M32,58\r\n\t\t\t\tC17.641,58,6,46.36,6,32S17.641,6,32,6c14.359,0,26,11.641,26,26S46.359,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M45,29H19c-1.657,0-3,1.343-3,3s1.343,3,3,3h26c1.657,0,3-1.343,3-3\r\n\t\t\t\tS46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32c17.673,0,32-14.327,32-32S49.673,0,32,0z M32,58\r\n\t\t\t\tC17.641,58,6,46.36,6,32S17.641,6,32,6c14.359,0,26,11.641,26,26S46.359,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CIRCLE__x2F__PLUS_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__PLUS","display":"inline"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__PLUS","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M45,29H35V19c0-1.657-1.343-3-3-3s-3,1.343-3,3v10H19c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h10v10c0,1.657,1.343,3,3,3s3-1.343,3-3V35h10c1.657,0,3-1.343,3-3S46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32\r\n\t\t\t\ts14.327,32,32,32c17.673,0,32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32S17.641,6,32,6\r\n\t\t\t\tc14.359,0,26,11.641,26,26S46.359,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M45,29H35V19c0-1.657-1.343-3-3-3s-3,1.343-3,3v10H19c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h10v10c0,1.657,1.343,3,3,3s3-1.343,3-3V35h10c1.657,0,3-1.343,3-3S46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32\r\n\t\t\t\ts14.327,32,32,32c17.673,0,32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32S17.641,6,32,6\r\n\t\t\t\tc14.359,0,26,11.641,26,26S46.359,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"GLOBE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"GLOBE","display":"inline"},"children":[{"name":"g","attribs":{"id":"GLOBE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31.446,19.655c0.015,0.03,0.03,0.059,0.044,0.089\r\n\t\t\t\tc0.057-0.013,0.103-0.074,0.133-0.115c0.012-0.009,0.004,0,0.013-0.013c-0.023-0.013-0.047-0.026-0.07-0.038\r\n\t\t\t\tc-0.002-0.004-0.004-0.008-0.006-0.013c0.069-0.055,0.095-0.122,0.076-0.235c-0.03-0.002-0.059-0.004-0.089-0.006\r\n\t\t\t\tc-0.026,0.029-0.04,0.127-0.051,0.165c-0.058-0.027-0.089-0.049-0.108-0.114c-0.004-0.002-0.009-0.004-0.013-0.006\r\n\t\t\t\tc-0.078,0.099-0.18,0.095-0.076,0.267C31.324,19.671,31.398,19.659,31.446,19.655z M43.382,11.985\r\n\t\t\t\tc0.203,0.031,0.324,0.15,0.496,0.203c-0.004,0.021-0.009,0.042-0.013,0.064c-0.084,0.038-0.182,0.051-0.172,0.172\r\n\t\t\t\tc0.094,0.018,0.165,0.009,0.28,0.006c0.026,0.034,0.051,0.068,0.076,0.102c0.094,0.039,0.143-0.06,0.21-0.083\r\n\t\t\t\tc0.155,0.002,0.309,0.004,0.464,0.007c-0.006-0.127-0.177-0.162-0.254-0.223c-0.136-0.107-0.215-0.333-0.254-0.534\r\n\t\t\t\tc-0.085-0.43,0.254-0.283,0.292-0.597c-0.066-0.023-0.131-0.047-0.197-0.07c-0.172-0.022-0.357,0.059-0.477,0.089\r\n\t\t\t\tc-0.072,0.004-0.144,0.008-0.216,0.013c-0.088,0.044-0.135,0.159-0.235,0.203c-0.004,0.007-0.009,0.013-0.013,0.019\r\n\t\t\t\tc0.051,0.026,0.093,0.062,0.165,0.064c-0.037,0.109-0.134,0.278-0.241,0.311c-0.072,0.022-0.115-0.021-0.172-0.019\r\n\t\t\t\tc-0.049,0.061-0.104,0.114-0.07,0.229c0.019,0.025,0.038,0.051,0.057,0.076C43.251,12.115,43.276,11.969,43.382,11.985z\r\n\t\t\t\t M20.926,10.303c-0.046,0.008-0.091,0.016-0.137,0.024c-0.018,0.026-0.036,0.077-0.072,0.095\r\n\t\t\t\tc0.061,0.013,0.304-0.051,0.354-0.078C21.07,10.309,20.97,10.301,20.926,10.303z M31.37,7.524\r\n\t\t\t\tc0.061-0.032,0.123-0.064,0.184-0.095c0.036,0.055,0.072,0.11,0.108,0.165c-0.076,0.036-0.153,0.072-0.229,0.108\r\n\t\t\t\tc0.055,0.135,0.434,0.457,0.623,0.388c0.163-0.06,0.211-0.226,0.35-0.312c0.086,0.097,0.288,0.173,0.438,0.197v0.006\r\n\t\t\t\tc-0.178,0.189-0.512,0.185-0.769,0.299h-0.013c0.023,0.049,0.047,0.097,0.07,0.146c0.248-0.018,0.442-0.069,0.661-0.089\r\n\t\t\t\tc0.027,0.025,0.055,0.051,0.083,0.076c-0.102,0.131-0.323,0.152-0.559,0.146c-0.023,0.034-0.047,0.068-0.07,0.102\r\n\t\t\t\tc-0.004,0.004-0.008,0.008-0.013,0.013c0.102,0.062,0.562,0.443,0.718,0.4c0.032-0.019,0.063-0.038,0.095-0.057\r\n\t\t\t\tc-0.001-0.177,0.066-0.321,0.159-0.407c0.028-0.029,0.124-0.04,0.172-0.044c0.038-0.081,0.076-0.161,0.114-0.242\r\n\t\t\t\tc0.058-0.144,0.054-0.343,0.178-0.419c0.093-0.021,0.187-0.043,0.28-0.064c0.053-0.026,0.106-0.051,0.159-0.076\r\n\t\t\t\tc-0.048-0.083-0.189-0.174-0.28-0.21c-0.082-0.032-0.163-0.021-0.229-0.063c-0.057-0.074-0.114-0.148-0.172-0.222\r\n\t\t\t\tc-0.078,0-0.117,0.083-0.172,0.127C33.238,7.389,33.219,7.38,33.2,7.372c-0.034-0.072,0.005-0.174,0.006-0.28\r\n\t\t\t\tc-0.021-0.015-0.042-0.03-0.064-0.045h-0.172c-0.066-0.021-0.112-0.079-0.21-0.089c-0.036,0.042-0.072,0.085-0.108,0.127\r\n\t\t\t\tc-0.04,0.109,0.108,0.294,0.127,0.4c-0.019,0.017-0.038,0.034-0.057,0.051c-0.108-0.025-0.306-0.287-0.35-0.381\r\n\t\t\t\tc-0.075-0.059-0.101-0.039-0.191,0c-0.015,0.076-0.03,0.153-0.044,0.229v0.013c-0.074-0.015-0.148-0.03-0.222-0.045\r\n\t\t\t\tc-0.036-0.055-0.041-0.146-0.038-0.242c-0.077-0.016-0.176,0.02-0.235,0.032c-0.047-0.004-0.093-0.008-0.14-0.013\r\n\t\t\t\tc-0.146,0.013-0.218,0.074-0.305,0.14C31.219,7.367,31.286,7.485,31.37,7.524z M34.414,7.117v0.006\r\n\t\t\t\tc-0.066,0.146-0.101,0.233-0.28,0.267v0.114c0.275,0.013,0.551,0.025,0.826,0.038c0.059-0.04,0.119-0.081,0.178-0.121\r\n\t\t\t\tc0.078-0.033,0.162-0.016,0.254-0.045c0.078-0.04,0.157-0.08,0.235-0.121c0.104-0.078,0.208-0.157,0.311-0.235\r\n\t\t\t\tc0.002-0.004,0.004-0.008,0.006-0.013c-0.023-0.038-0.047-0.076-0.07-0.114c-0.061-0.017-0.123-0.034-0.184-0.051\r\n\t\t\t\tc-0.119-0.023-0.251,0.029-0.375,0.026c-0.025-0.051-0.051-0.102-0.076-0.153c-0.03-0.011-0.059-0.021-0.089-0.032\r\n\t\t\t\tc-0.132,0.016-0.223,0.14-0.286,0.229h-0.108c-0.028-0.1-0.003-0.248,0.025-0.343c-0.136,0.061-0.143,0.232-0.267,0.292\r\n\t\t\t\tc-0.011,0.011-0.021,0.021-0.032,0.032c-0.167-0.256-0.328-0.017-0.496-0.134c-0.059-0.07-0.119-0.14-0.178-0.21\r\n\t\t\t\tc-0.081,0.106-0.161,0.212-0.241,0.318c-0.087,0.062-0.151,0.069-0.197,0.172c-0.004,0.004-0.008,0.008-0.013,0.013\r\n\t\t\t\tC33.594,7.203,34.035,7.121,34.414,7.117z M20.993,9.697c0.035,0.033,0.134,0.07,0.225,0.035c0.034-0.013,0.049-0.034,0.076-0.05\r\n\t\t\t\tc0.019-0.02,0.038-0.04,0.057-0.061c-0.074-0.021-0.104-0.081-0.222-0.057C21.066,9.601,20.983,9.637,20.993,9.697z\r\n\t\t\t\t M21.388,8.988c-0.081,0.009-0.125-0.079-0.169-0.114c-0.024,0.041-0.114,0.079-0.126,0.107c0,0,0.086,0.119,0.094,0.127\r\n\t\t\t\tc0.011,0.01,0.028,0.019,0.044,0.023c0.039-0.003,0.22-0.108,0.242-0.129c0.013-0.013,0.03-0.035,0.009-0.052\r\n\t\t\t\tC21.451,8.925,21.406,8.976,21.388,8.988z M20.989,9.241c-0.031,0.049,0.059,0.128,0.12,0.118\r\n\t\t\t\tc0.061-0.054,0.045-0.074-0.037-0.096C21.044,9.256,21.017,9.248,20.989,9.241z M20.988,9.24c0,0,0.001,0,0.001,0\r\n\t\t\t\tc0.002-0.004-0.006-0.009-0.002-0.012C20.987,9.233,20.988,9.237,20.988,9.24z M30.588,18.905\r\n\t\t\t\tc0.119-0.015,0.252,0.008,0.413-0.006c0.016-0.051,0.02-0.072,0.064-0.095c-0.01-0.113-0.024-0.131,0.025-0.21\r\n\t\t\t\tc-0.011-0.004-0.021-0.008-0.032-0.013c-0.006,0.01-0.013,0.021-0.019,0.032c-0.055,0.015-0.11,0.03-0.165,0.044\r\n\t\t\t\tc-0.059,0.043-0.078,0.143-0.153,0.172c-0.076,0.008-0.153,0.017-0.229,0.025c-0.051,0.023-0.079,0.083-0.102,0.133\r\n\t\t\t\tc0.028,0.028,0.055,0.055,0.083,0.083C30.523,19.013,30.565,18.998,30.588,18.905z M10.002,26.709v0.006\r\n\t\t\t\tc0.013,0.019,0.025,0.038,0.038,0.057h0.027c-0.006-0.014-0.006-0.034-0.015-0.051C10.036,26.717,10.019,26.713,10.002,26.709z\r\n\t\t\t\t M42.956,34.189c-0.051-0.021-0.102-0.042-0.153-0.064c-0.12,0.085-0.214,0.171-0.388,0.21c-0.076,0.017-0.145-0.016-0.191-0.025\r\n\t\t\t\tc-0.086-0.017-0.139,0.054-0.197,0.07c-0.059-0.006-0.119-0.013-0.178-0.019h-0.013c-0.072,0.047-0.144,0.093-0.216,0.14\r\n\t\t\t\tc-0.099,0.036-0.13-0.059-0.242-0.038c-0.091,0.04-0.182,0.08-0.273,0.121h-0.178c-0.091-0.099-0.215-0.211-0.273-0.337\r\n\t\t\t\tc-0.054-0.014-0.128-0.003-0.191-0.013c-0.004-0.002-0.009-0.004-0.013-0.006v-0.013c0.069-0.033,0.208-0.09,0.261-0.146\r\n\t\t\t\tc-0.006-0.169-0.233-0.211-0.33-0.305c-0.017-0.016-0.033-0.139-0.089-0.191c-0.026-0.024-0.075-0.007-0.108-0.025\r\n\t\t\t\tc-0.089-0.098-0.178-0.195-0.267-0.292c-0.035-0.016-0.076-0.009-0.127-0.006c-0.039-0.054-0.074-0.138-0.133-0.172\r\n\t\t\t\tc-0.019,0.025-0.013,0.083-0.019,0.108c-0.004,0.002-0.008,0.004-0.013,0.007c-0.182-0.153-0.224-0.622-0.331-0.864\r\n\t\t\t\tc-0.049-0.112-0.295-0.163-0.362-0.254c-0.106-0.144-0.038-0.516-0.089-0.724c-0.033-0.135-0.153-0.35-0.254-0.426\r\n\t\t\t\tc-0.05-0.038-0.123-0.051-0.159-0.102c-0.045-0.062-0.051-0.162-0.076-0.242c0.023-0.021,0.047-0.042,0.07-0.064\r\n\t\t\t\tc-0.051-0.051-0.102-0.102-0.153-0.152c-0.139-0.209-0.24-0.462-0.369-0.667c-0.055-0.144-0.11-0.288-0.165-0.432\r\n\t\t\t\tc-0.095-0.171-0.257-0.287-0.299-0.521c0.033-0.045,0.038-0.066,0.095-0.089c0.08,0.245,0.223,0.49,0.4,0.642\r\n\t\t\t\tc0.019,0.021,0.047,0.019,0.076,0.013c0.08-0.159,0.057-0.398,0.184-0.508c-0.074-0.191-0.148-0.381-0.222-0.572\r\n\t\t\t\tc-0.122,0.015-0.164,0.113-0.337,0.019c-0.112,0.08-0.158,0.011-0.28,0.032c-0.042-0.043-0.076-0.051-0.095-0.121\r\n\t\t\t\tc-0.215-0.044-0.454,0.008-0.604,0.108c-0.04,0.032-0.081,0.063-0.121,0.095c-0.079,0.017-0.155-0.048-0.21-0.064\r\n\t\t\t\tc-0.061-0.006-0.123-0.013-0.184-0.019c-0.013-0.017-0.025-0.034-0.038-0.051c-0.148-0.032-0.297-0.064-0.445-0.095h-0.318\r\n\t\t\t\tc-0.058-0.026-0.045-0.125-0.108-0.146h-0.146c-0.077-0.012-0.25-0.041-0.324-0.07c-0.07-0.038-0.033-0.128-0.133-0.172\r\n\t\t\t\tc-0.258-0.113-0.681,0.039-0.782,0.21c-0.137,0.231,0.167,0.358-0.146,0.527c-0.038,0.02-0.088,0.07-0.146,0.064\r\n\t\t\t\tc-0.153-0.018-0.266-0.184-0.4-0.235c-0.132-0.05-0.433-0.054-0.54-0.114c-0.119-0.068-0.137-0.311-0.241-0.35\r\n\t\t\t\tc-0.058-0.021-0.105-0.003-0.152-0.025c-0.028-0.025-0.055-0.051-0.083-0.076c-0.066-0.013-0.131-0.025-0.197-0.038\r\n\t\t\t\tc-0.095,0.006-0.191,0.013-0.286,0.019c-0.129-0.055-0.258-0.11-0.388-0.165c-0.009-0.034-0.017-0.068-0.025-0.102\r\n\t\t\t\tc-0.061-0.005-0.069,0.013-0.121,0.025c-0.082-0.04-0.182-0.111-0.203-0.21c0.059-0.065,0.326-0.286,0.324-0.369\r\n\t\t\t\tc-0.011-0.042-0.021-0.085-0.032-0.127c-0.337-0.192,0.008-0.272,0.006-0.483c-0.064,0.038-0.127,0.076-0.191,0.115\r\n\t\t\t\tc-0.011-0.002-0.021-0.004-0.032-0.006c-0.018-0.04-0.036-0.072-0.038-0.127c-0.047-0.021-0.093-0.042-0.14-0.064\r\n\t\t\t\tc-0.03,0.004-0.059,0.009-0.089,0.013c-0.095,0.036-0.266,0.212-0.432,0.165c-0.024-0.007-0.062-0.069-0.14-0.096\r\n\t\t\t\tc-0.063,0.009-0.084,0.051-0.133,0.076c-0.076-0.012-0.113-0.06-0.178-0.083c-0.078,0.055-0.155,0.115-0.267,0.14\r\n\t\t\t\tc-0.173,0.039-0.303-0.115-0.502-0.063c-0.038,0.021-0.076,0.042-0.114,0.063c-0.073,0.026-0.104-0.027-0.159-0.019\r\n\t\t\t\tc-0.047,0.021-0.093,0.042-0.14,0.064c-0.145,0.03-0.312-0.005-0.432,0.044c-0.114,0.047-0.181,0.142-0.267,0.216\r\n\t\t\t\tc-0.046-0.004-0.065-0.015-0.089-0.038c-0.039,0.007-0.209,0.066-0.242,0.089c-0.08,0.057-0.073,0.137-0.191,0.172\r\n\t\t\t\tc-0.13,0.038-0.283-0.002-0.318-0.089c-0.007-0.002-0.345,0.103-0.477,0.064c-0.138-0.041-0.19-0.153-0.28-0.242\r\n\t\t\t\tc-0.032,0.015-0.064,0.03-0.095,0.045c-0.071,0.054-0.17,0.43-0.248,0.534c-0.114,0.152-0.324,0.164-0.483,0.273\r\n\t\t\t\tc-0.054,0.037-0.227,0.186-0.248,0.241c-0.022,0.058,0.009,0.132-0.019,0.191c-0.035,0.073-0.121,0.127-0.153,0.21\r\n\t\t\t\tc-0.075,0.199,0.155,0.303-0.006,0.54c-0.101,0.149-0.406,0.41-0.578,0.483c-0.089,0.038-0.211,0.03-0.305,0.076\r\n\t\t\t\tc-0.108,0.053-0.13,0.288-0.203,0.381c-0.059,0.074-0.188,0.088-0.242,0.165c-0.056,0.081-0.105,0.204-0.127,0.311\r\n\t\t\t\tc-0.002,0.044-0.004,0.089-0.006,0.134c-0.04,0.101-0.18,0.151-0.242,0.235c-0.063,0.146-0.127,0.292-0.191,0.438\r\n\t\t\t\tc-0.047,0.051-0.093,0.102-0.14,0.153c-0.056,0.084-0.082,0.256-0.064,0.388c0.015-0.017,0.03-0.034,0.044-0.051\r\n\t\t\t\tc0.199,0.016,0.209,0.339,0.114,0.477c0.233,0.184,0.095,0.554,0.025,0.788c-0.008,0.068-0.017,0.136-0.025,0.203\r\n\t\t\t\tc-0.037,0.135-0.145,0.317-0.273,0.362c-0.002,0.004-0.004,0.008-0.006,0.013c0.181,0.076,0.181,0.271,0.267,0.311\r\n\t\t\t\tc0.01,0.02,0.013,0.041,0.013,0.076c-0.019,0.004-0.038,0.008-0.057,0.013c-0.049,0.069-0.01,0.177-0.032,0.261\r\n\t\t\t\tc0.08,0.135,0.04,0.036,0.14,0.102c0.004,0.015,0.008,0.03,0.013,0.044c0.042,0.025,0.085,0.051,0.127,0.076\r\n\t\t\t\tc0.063-0.012,0.153-0.052,0.203,0.006c-0.039,0.048-0.093,0.079-0.076,0.165c0.026,0.017,0.08,0.022,0.102,0.044\r\n\t\t\t\tc0.015,0.02,0.01,0.028,0.006,0.057c0.034,0.023,0.057,0.034,0.121,0.032c0.011,0.033,0.011,0.06,0,0.095\r\n\t\t\t\tc0.065,0.069,0.166,0.135,0.267,0.165c0.006,0.032,0.013,0.063,0.019,0.095c0.033,0.061,0.118,0.081,0.14,0.159v0.095\r\n\t\t\t\tc0.014,0.018,0.035,0.022,0.063,0.025c0.002,0.008,0.004,0.017,0.006,0.025c-0.023,0.019-0.047,0.038-0.07,0.057h-0.013\r\n\t\t\t\tc0.028,0.094,0.156,0.186,0.261,0.203c0.018,0.034,0.013,0.047,0.006,0.095c0.142,0.043,0.215,0.149,0.324,0.222\r\n\t\t\t\tc0.08,0.042,0.161,0.085,0.242,0.127c0.17,0.12,0.278,0.261,0.477,0.362c0.062,0.032,0.311,0.192,0.388,0.172\r\n\t\t\t\tc0.102-0.053,0.203-0.106,0.305-0.159c0.106-0.029,0.212-0.059,0.318-0.089c0.092-0.027,0.292-0.048,0.407-0.025\r\n\t\t\t\tc0.05,0.01,0.145,0.061,0.21,0.038c0.011-0.013,0.021-0.025,0.032-0.038c0.041,0.005,0.246,0.134,0.286,0.165\r\n\t\t\t\tc0.206-0.093,0.411-0.186,0.616-0.28c0.087-0.008,0.174-0.017,0.261-0.025c0.052-0.039,0.054-0.108,0.127-0.133\r\n\t\t\t\tc0.214-0.019,0.428-0.038,0.642-0.057c0.032-0.012,0.039-0.042,0.083-0.057c0.077,0.015,0.286,0.147,0.331,0.203\r\n\t\t\t\tc0.015,0.025,0.03,0.051,0.044,0.076c0.023,0.002,0.047,0.004,0.07,0.006c0.006,0.008,0.013,0.017,0.019,0.025\r\n\t\t\t\tc-0.013,0.032-0.025,0.064-0.038,0.095c0.025,0.209,0.348,0.363,0.534,0.197c0.101,0.017,0.232,0.039,0.343-0.006\r\n\t\t\t\tc0.002-0.027-0.002-0.037-0.013-0.063c0.025-0.016,0.147,0.013,0.178,0.051c0.069,0.124-0.004,0.172,0.222,0.165\r\n\t\t\t\tc0.008,0.013,0.017,0.026,0.025,0.038c0.004,0.004,0.008,0.008,0.013,0.013c-0.019,0.015-0.038,0.03-0.057,0.044\r\n\t\t\t\tc0.021,0.08,0.085,0.147,0.102,0.242c-0.011,0.042-0.021,0.085-0.032,0.127c0.009,0.032,0.017,0.064,0.025,0.095\r\n\t\t\t\tc-0.024,0.1-0.086,0.2-0.153,0.261c-0.002,0.006-0.004,0.013-0.006,0.019c0.025,0.004,0.051,0.008,0.076,0.013\r\n\t\t\t\tc0.003,0.084-0.012,0.146-0.076,0.165c0.049,0.042,0.097,0.085,0.146,0.127v0.006c-0.038-0.004-0.076-0.009-0.114-0.013\r\n\t\t\t\tc-0.031,0.138-0.072,0.242-0.191,0.292c0.013,0.028,0.052,0.116,0.076,0.14c0.036,0.035,0.074,0.015,0.114,0.07\r\n\t\t\t\tc-0.021,0.015-0.042,0.03-0.063,0.045c-0.002,0.004-0.004,0.008-0.006,0.013c0.042,0.062,0.085,0.123,0.127,0.184\r\n\t\t\t\tc0.053,0.027,0.074,0.003,0.108,0.045c-0.011,0.015-0.021,0.03-0.032,0.044c0.089,0.058,0.143,0.122,0.203,0.21\r\n\t\t\t\tc0.112,0.104,0.224,0.208,0.337,0.311c0.032,0.039,0.115,0.204,0.133,0.248c0.029,0.068-0.018,0.161,0.038,0.261\r\n\t\t\t\tc0.045,0.064,0.089,0.127,0.133,0.191c0.013,0.061,0.025,0.123,0.038,0.184c0.057,0.134,0.17,0.186,0.14,0.388\r\n\t\t\t\tc-0.243,0.109,0.046,0.36,0.089,0.489c0.008,0.1,0.017,0.199,0.025,0.299c-0.019,0.11-0.066,0.285-0.146,0.337\r\n\t\t\t\tc-0.03,0.01-0.059,0.021-0.089,0.032c-0.017,0.04-0.034,0.081-0.051,0.121c-0.03,0.032-0.059,0.064-0.089,0.096\r\n\t\t\t\tc-0.094,0.222-0.042,0.57-0.222,0.705c0,0.202-0.037,0.471,0.013,0.648c0.038,0.135,0.15,0.217,0.216,0.324\r\n\t\t\t\tc0.108,0.216,0.216,0.432,0.324,0.648c0.075,0.146,0.371,0.404,0.203,0.572c0.03,0.14,0.059,0.28,0.089,0.419\r\n\t\t\t\tc0.023,0.055,0.047,0.11,0.07,0.165c0.02,0.082-0.031,0.143-0.025,0.203c0.008,0.08,0.071,0.147,0.089,0.21\r\n\t\t\t\tc0.014,0.047-0.021,0.073-0.019,0.102c0.034,0.104,0.068,0.208,0.102,0.311c0.117,0.131,0.233,0.263,0.349,0.394\r\n\t\t\t\tc0.12,0.189,0.16,0.433,0.273,0.635c0.1,0.178,0.271,0.36,0.203,0.654c-0.033,0.008-0.077,0-0.095,0.025\r\n\t\t\t\tc-0.025,0.032,0.123,0.23,0.159,0.286c-0.017,0.049-0.034,0.098-0.051,0.146c0.011,0.011,0.021,0.021,0.032,0.032\r\n\t\t\t\tc0.006,0.002,0.013,0.004,0.019,0.006c0.006-0.015,0.013-0.03,0.019-0.045c0.017-0.008,0.022-0.011,0.051-0.013\r\n\t\t\t\tc0.013,0.023,0.025,0.047,0.038,0.07c0.027-0.001,0.052-0.007,0.102-0.006c0.021,0.029,0.022,0.055,0.038,0.095\r\n\t\t\t\tc0.024,0.042,0.115,0.075,0.165,0.089c0.06-0.046,0.096-0.122,0.178-0.146c0.115-0.035,0.251,0.044,0.356-0.006\r\n\t\t\t\tc0.032-0.03,0.063-0.059,0.095-0.089c0.15-0.071,0.214,0,0.331,0c0.034-0.019,0.068-0.038,0.102-0.057\r\n\t\t\t\tc0.122-0.035,0.234,0.073,0.318,0.102c0.04-0.031,0.07-0.055,0.095-0.102c0.057,0.013,0.114,0.025,0.172,0.038\r\n\t\t\t\tc0.017-0.018,0.02-0.053,0.032-0.076c0.05-0.048,0.322-0.017,0.4-0.07c0.083-0.072,0.165-0.144,0.248-0.216\r\n\t\t\t\tc0.416-0.327,0.721-0.688,1.017-1.138c0.074-0.113,0.264-0.191,0.305-0.299c0.02-0.052-0.028-0.122-0.019-0.146\r\n\t\t\t\tc0.016-0.044,0.065-0.032,0.089-0.064c0.071-0.091,0.109-0.35,0.089-0.496c-0.038-0.015-0.078-0.04-0.095-0.076\r\n\t\t\t\tc-0.006-0.006-0.013-0.013-0.019-0.019c0.078-0.091,0.132-0.175,0.242-0.235c0.244-0.134,0.525-0.121,0.635-0.388\r\n\t\t\t\tc-0.009-0.061-0.052-0.036-0.064-0.07c0.002-0.006,0.004-0.013,0.006-0.019c0.013-0.032,0.025-0.064,0.038-0.095\r\n\t\t\t\tc0.03-0.123,0.023-0.264,0.019-0.388c-0.028,0.01-0.035,0.018-0.076,0.019c-0.039-0.124-0.087-0.274-0.044-0.375\r\n\t\t\t\tc-0.006-0.075-0.062-0.112-0.114-0.14v-0.203c0.119-0.087,0.237-0.174,0.356-0.261c0.145-0.122,0.233-0.305,0.4-0.407\r\n\t\t\t\tc0.203-0.123,0.451-0.162,0.642-0.292c0.137-0.094,0.224-0.268,0.331-0.394c0-0.028-0.009-0.039-0.019-0.07\r\n\t\t\t\tc0.036-0.047,0.068-0.081,0.095-0.14c-0.002-0.011-0.004-0.021-0.006-0.032c-0.023-0.011-0.047-0.021-0.07-0.032\r\n\t\t\t\tc-0.02-0.163,0.012-0.337-0.07-0.432c0.003-0.034,0.034-0.063,0.044-0.108c0.026-0.113-0.041-0.294-0.057-0.394\r\n\t\t\t\tc0.03-0.055,0.059-0.11,0.089-0.165c-0.065-0.14-0.183-0.157-0.267-0.267c-0.083-0.108-0.127-0.393-0.07-0.553\r\n\t\t\t\tc-0.018-0.028-0.043-0.033-0.064-0.057c0.029-0.062,0.083-0.148,0.089-0.216c-0.057-0.071-0.161-0.126-0.197-0.216\r\n\t\t\t\tc-0.037-0.095,0.061-0.407,0.102-0.451c0.024-0.026,0.068-0.021,0.089-0.051c0.047-0.068,0.006-0.104,0.025-0.165\r\n\t\t\t\tc0.042-0.137,0.172-0.143,0.184-0.368c0.096-0.053,0.187-0.052,0.191-0.203c0.085,0.016,0.124-0.022,0.191-0.051\r\n\t\t\t\tc0.024-0.036,0.026-0.054,0.006-0.095c0.208-0.235,0.415-0.47,0.623-0.705c0.229-0.185,0.515-0.325,0.744-0.508\r\n\t\t\t\tc0.085-0.104,0.169-0.208,0.254-0.311c0.168-0.215,0.419-0.422,0.527-0.686c0.011-0.049,0.021-0.098,0.032-0.146\r\n\t\t\t\tc0.074-0.119,0.148-0.237,0.222-0.356c-0.002-0.028-0.004-0.055-0.006-0.083c0.042-0.04,0.085-0.081,0.127-0.121\r\n\t\t\t\tc0.055-0.098,0.11-0.195,0.165-0.292c0.006-0.087,0.013-0.174,0.019-0.261c0.014-0.04,0.079-0.07,0.076-0.127\r\n\t\t\t\tc-0.002-0.045-0.037-0.108-0.019-0.172c0.017-0.04,0.034-0.081,0.051-0.121C42.96,34.201,42.958,34.195,42.956,34.189z\r\n\t\t\t\t M51.688,35.155c-0.032-0.185-0.128-0.278-0.28-0.375c0.018,0.077-0.003,0.113-0.025,0.191c-0.034,0.026-0.04,0.042-0.095,0.025\r\n\t\t\t\tc-0.004,0.015-0.008,0.03-0.013,0.044c0.015,0.017,0.03,0.034,0.044,0.051c-0.029,0.063-0.008,0.077,0.006,0.14v0.318\r\n\t\t\t\tc0.023,0.101,0.073,0.267,0.146,0.324c0.208,0.044,0.476-0.139,0.451-0.337c-0.011-0.089-0.093-0.163-0.127-0.235\r\n\t\t\t\tC51.76,35.226,51.767,35.185,51.688,35.155z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32c17.673,0,32-14.327,32-32\r\n\t\t\t\tC64,14.327,49.673,0,32,0z M50.505,13.747c0.043,0.044,0.081,0.093,0.124,0.137c-0.003,0.02-0.006,0.039-0.008,0.059v0.006\r\n\t\t\t\tc0.027,0.007,0.053,0.01,0.08,0.013c0.048,0.049,0.092,0.103,0.139,0.153c-0.13,0.026-0.317,0.022-0.352-0.084\r\n\t\t\t\tC50.47,14.004,50.497,13.865,50.505,13.747z M48.568,14.508c0.038,0.017,0.076,0.034,0.114,0.051\r\n\t\t\t\tc0.07-0.025,0.14-0.051,0.21-0.076c-0.013-0.036-0.025-0.072-0.038-0.108c0.033-0.077,0.142-0.097,0.203-0.146\r\n\t\t\t\tc0.083-0.066,0.227-0.183,0.267-0.286c0.015-0.059,0.03-0.119,0.044-0.178c0.022-0.052,0.06-0.069,0.064-0.146\r\n\t\t\t\tc-0.099-0.13-0.202-0.041-0.254-0.292c0.002-0.127,0.004-0.254,0.006-0.381c-0.008-0.074-0.017-0.148-0.025-0.222\r\n\t\t\t\tc0.032-0.042,0.064-0.085,0.095-0.127c0.001-0.002-0.001-0.005,0-0.008c0.099,0.088,0.195,0.177,0.293,0.266\r\n\t\t\t\tc-0.012,0.031-0.036,0.06-0.038,0.092c-0.006,0.103,0.07,0.19,0.07,0.324c0.102-0.002,0.239,0.039,0.311,0.025\r\n\t\t\t\tc0.034-0.012,0.069-0.024,0.103-0.036c0.075,0.072,0.157,0.137,0.232,0.211c-0.214-0.04-0.47,0.008-0.5,0.206\r\n\t\t\t\tc0.056,0.099,0.113,0.168,0.108,0.318c-0.042,0.053-0.085,0.106-0.127,0.159c-0.034,0.021-0.068,0.042-0.102,0.064\r\n\t\t\t\tc-0.044,0.061-0.038,0.157-0.095,0.203c-0.14,0.113-0.327,0.134-0.407,0.311c-0.085,0.039-0.185,0.002-0.261-0.013\r\n\t\t\t\tc-0.053,0.002-0.106,0.004-0.159,0.006c-0.219-0.032-0.424-0.055-0.502-0.229C48.308,14.462,48.449,14.461,48.568,14.508z\r\n\t\t\t\t M14.404,12.899c-0.002,0.011-0.006,0.023,0.013,0.034c0.011,0.006,0.027,0.004,0.044,0.005c0.046,0.003,0.104,0.019,0.122,0.05\r\n\t\t\t\tc-0.03,0.071-0.177,0-0.221-0.006c0,0.003,0,0.006,0,0.008c-0.005,0-0.011,0-0.016,0c-0.003,0.077,0.276,0.05,0.304,0.123\r\n\t\t\t\tc-0.032,0.036-0.081,0.019-0.141,0.035c-0.004,0.062,0.16,0.026,0.146,0.083c0,0.002-0.001,0.003-0.001,0.005\r\n\t\t\t\tc-0.043,0.013-0.078-0.002-0.117,0.012c-0.004,0.003-0.007,0.006-0.01,0.009c0,0.003,0,0.006,0,0.008\r\n\t\t\t\tc0.031,0.019,0.072,0.042,0.132,0.023c0.017-0.006,0.036-0.014,0.054-0.012c0.006,0.002,0.012,0.003,0.017,0.005\r\n\t\t\t\tc0.003,0.02-0.019,0.063-0.05,0.071c-0.034,0.009-0.199-0.014-0.228-0.021c-0.059-0.015-0.101-0.05-0.147-0.078\r\n\t\t\t\tc-0.04-0.024-0.124-0.06-0.197-0.085C14.204,13.077,14.305,12.99,14.404,12.899z M13.524,13.715\r\n\t\t\t\tc0.019,0.012,0.039,0.022,0.052,0.039c-0.03-0.002-0.064,0.005-0.097,0.01C13.495,13.749,13.509,13.731,13.524,13.715z\r\n\t\t\t\t M7.943,27.904c0.017-0.004,0.034-0.008,0.051-0.013c-0.017,0.015-0.034,0.03-0.051,0.045\r\n\t\t\t\tC7.945,27.925,7.941,27.918,7.943,27.904z M7.499,23.367c-0.001,0.007,0,0.011-0.001,0.018c-0.002-0.002-0.002-0.004-0.004-0.006\r\n\t\t\t\tC7.496,23.376,7.497,23.372,7.499,23.367z M7.676,37.665c-0.049,0.065-0.234,0.104-0.337,0.051\r\n\t\t\t\tc-0.044,0.033-0.061,0.065-0.057,0.146c-0.015,0.013-0.03,0.025-0.044,0.038c-0.012-0.052-0.021-0.069-0.07-0.083\r\n\t\t\t\tc-0.033-0.007-0.066,0.023-0.095,0.038c-0.203,0.107-0.124,0.25-0.191,0.438c-0.026,0.005-0.052,0.01-0.079,0.015\r\n\t\t\t\tc-0.076-0.302-0.168-0.598-0.232-0.904c0.011,0.001,0.019,0.005,0.032,0.006c0.029,0.082,0.054,0.128,0.146,0.146\r\n\t\t\t\tc0.004-0.028,0.009-0.055,0.013-0.083h0.006c0.023,0.048,0.076,0.109,0.064,0.172c0.006,0.006,0.013,0.013,0.019,0.019\r\n\t\t\t\tc0.114,0.02,0.144-0.047,0.248-0.057c-0.01-0.111-0.095-0.121-0.133-0.203c0.039-0.058,0.138-0.099,0.21-0.121\r\n\t\t\t\tc-0.003-0.04-0.005-0.057,0.006-0.089c0.198-0.063,0.318-0.017,0.375,0.14c0.045,0.008,0.076-0.016,0.108-0.038\r\n\t\t\t\tc-0.001,0.049,0.005,0.067,0.038,0.083c0.002,0.004,0.004,0.009,0.006,0.013c-0.061-0.008-0.097-0.021-0.121,0.032\r\n\t\t\t\tC7.564,37.5,7.647,37.606,7.676,37.665z M32,58c-7.083,0-13.497-2.841-18.187-7.435c0.051-0.052,0.122-0.09,0.155-0.153\r\n\t\t\t\tc0.019-0.078,0.038-0.157,0.057-0.235v-0.013c0.049,0.022,0.108,0.044,0.172,0.019h0.006c0.013,0.192-0.204,0.292-0.248,0.483\r\n\t\t\t\tc0.103-0.092,0.237-0.221,0.299-0.349c0.051-0.121,0.102-0.242,0.153-0.362c0.174-0.277,0.481-0.299,0.394-0.852\r\n\t\t\t\tc-0.012-0.077-0.036-0.114-0.057-0.172c0.045-0.054,0.132-0.205,0.019-0.254v-0.038c0.146,0.013,0.159-0.073,0.235-0.14\r\n\t\t\t\tc0.08-0.07,0.491-0.363,0.585-0.381c0.051-0.01,0.091,0.021,0.127,0.032c0.03-0.036,0.059-0.072,0.089-0.108\r\n\t\t\t\tc0.086-0.051,0.144-0.034,0.165-0.153c0.094-0.012,0.207-0.008,0.28,0.006c0.161,0.031,0.334-0.013,0.483-0.025\r\n\t\t\t\tc-0.005-0.182,0.137-0.241,0.292-0.254c-0.009-0.051-0.017-0.102-0.025-0.153c0.017-0.123,0.117-0.202,0.172-0.292\r\n\t\t\t\tc0.034-0.07,0.068-0.14,0.102-0.21c0.032-0.046,0.105-0.072,0.121-0.133c-0.006-0.062-0.013-0.123-0.019-0.184\r\n\t\t\t\tc-0.03-0.169,0.065-0.288,0.184-0.331c0-0.048-0.035-0.138-0.019-0.222c0.021-0.107,0.097-0.243,0.076-0.369\r\n\t\t\t\tc-0.017-0.165-0.034-0.331-0.051-0.496c0.028-0.172,0.093-0.289,0.095-0.464c0.015,0.002,0.03,0.004,0.044,0.006\r\n\t\t\t\tc0.017,0.034,0.034,0.068,0.051,0.102h0.019c0.113-0.084,0.241-0.308,0.292-0.445c0.031-0.081,0.007-0.126,0.057-0.178\r\n\t\t\t\tc0.047-0.021,0.093-0.042,0.14-0.064c0.273-0.213,0.461-0.44,0.534-0.858c0.027-0.157-0.139-0.732-0.216-0.756\r\n\t\t\t\tc-0.161-0.05-0.338,0.008-0.458-0.07c-0.256-0.166-0.436-0.435-0.731-0.566c-0.171-0.076-0.287,0.017-0.451-0.013\r\n\t\t\t\tc-0.1-0.015-0.199-0.03-0.299-0.045c-0.086-0.023-0.18-0.133-0.286-0.121c-0.154,0.018-0.289,0.139-0.394,0.21\r\n\t\t\t\tc-0.049-0.2,0.024-0.122,0.044-0.242c0.013-0.077-0.114-0.195-0.184-0.203c-0.017,0.017-0.034,0.034-0.051,0.051h-0.025\r\n\t\t\t\tc-0.054-0.172-0.227-0.156-0.394-0.216c-0.065-0.023-0.106-0.068-0.159-0.102c-0.052,0.007-0.15,0.015-0.216,0.032\r\n\t\t\t\tc-0.072,0.028-0.08,0.13-0.121,0.191c-0.069,0.101-0.227,0.129-0.28,0.248c-0.004,0.002-0.008,0.004-0.013,0.006\r\n\t\t\t\tc0-0.07,0.012-0.1,0.032-0.146c-0.111,0.023-0.259,0.048-0.394,0.026c-0.032-0.076-0.064-0.153-0.095-0.229\r\n\t\t\t\tc-0.088,0.024-0.202,0.166-0.318,0.121c-0.006-0.004-0.013-0.008-0.019-0.013c0.085-0.065,0.102-0.2,0.159-0.292\r\n\t\t\t\tc0.065-0.105,0.205-0.137,0.28-0.229c0.067-0.082,0.092-0.211,0.197-0.254c0.034-0.054,0.016-0.107-0.006-0.165\r\n\t\t\t\tc-0.262-0.036-0.276-0.356-0.343-0.578c-0.021-0.068-0.016-0.143-0.076-0.172c-0.031-0.005-0.044,0.032-0.076,0.025\r\n\t\t\t\tc-0.015-0.003-0.319-0.315-0.4-0.356c-0.11-0.036-0.22-0.072-0.331-0.108c-0.09-0.035-0.342-0.112-0.489-0.051\r\n\t\t\t\tc-0.016,0.014-0.018,0.027-0.019,0.057c-0.095-0.021-0.191-0.042-0.286-0.064h-0.006c-0.015,0.015-0.03,0.03-0.044,0.045\r\n\t\t\t\tc-0.061-0.12-0.214-0.314-0.388-0.292c-0.011,0.021-0.021,0.042-0.032,0.063v0.013c-0.013-0.091-0.026-0.182-0.038-0.273\r\n\t\t\t\tc-0.074-0.125-0.313-0.283-0.47-0.318c-0.084-0.018-0.176,0.005-0.241,0.019c-0.066-0.004-0.131-0.008-0.197-0.013v-0.006\r\n\t\t\t\tc0.187-0.058,0.138-0.167,0.273-0.222c0.002-0.004,0.004-0.008,0.006-0.013c-0.051-0.035-0.122-0.045-0.178-0.083\r\n\t\t\t\tc-0.013-0.019-0.026-0.038-0.038-0.057c-0.045-0.029-0.132-0.021-0.172-0.045c-0.027,0.019-0.038,0.036-0.045,0.076\r\n\t\t\t\tc-0.004,0.002-0.008,0.004-0.013,0.006c-0.012-0.113-0.097-0.154-0.184-0.191V37.97c0.059,0.002,0.119,0.004,0.178,0.006\r\n\t\t\t\tc0.011-0.006,0.021-0.013,0.032-0.019c0.004-0.009,0.008-0.017,0.013-0.025c-0.002-0.004-0.004-0.008-0.006-0.013\r\n\t\t\t\tc-0.129-0.028-0.42-0.039-0.54,0.019c-0.075,0.037-0.117,0.126-0.21,0.146c-0.261,0.058-0.335-0.149-0.496-0.159\r\n\t\t\t\tc-0.136-0.008-0.364,0.083-0.483,0.025c-0.058-0.029-0.044-0.057-0.07-0.121c-0.05-0.125-0.201-0.158-0.375-0.159\r\n\t\t\t\tc-0.033-0.051-0.073-0.137-0.089-0.197c-0.053-0.012-0.097,0.016-0.114,0.064c0.015,0.025,0.03,0.051,0.044,0.076\r\n\t\t\t\tc0.028-0.002,0.055-0.004,0.083-0.006c0.013,0.011,0.025,0.021,0.038,0.032c-0.016,0.063-0.425,0.178-0.515,0.21\r\n\t\t\t\tc0.006,0.004,0.013,0.008,0.019,0.013c-0.008,0.036-0.018,0.036-0.038,0.057c0.053,0.026,0.197,0.299,0.152,0.394\r\n\t\t\t\tc-0.025,0.044-0.094,0.072-0.152,0.083c-0.065-0.049-0.097-0.164-0.146-0.229c0.015-0.1,0.07-0.186,0.121-0.254\r\n\t\t\t\tc-0.012-0.102-0.056-0.167-0.089-0.254c0.041-0.061,0.144-0.086,0.241-0.089c0.011-0.013,0.021-0.025,0.032-0.038\r\n\t\t\t\tc-0.013-0.064-0.059-0.101-0.114-0.121c-0.156-0.06-0.195,0.139-0.273,0.184c-0.04,0.013-0.081,0.025-0.121,0.038\r\n\t\t\t\tc0.019-0.036,0.046-0.051,0.032-0.102c0.027,0.011,0.029,0.016,0.038,0.045h0.006c0.052-0.033,0.079-0.079,0.121-0.121\r\n\t\t\t\tc-0.08-0.166-0.161-0.342-0.337-0.413c-0.058-0.023-0.134,0.003-0.203-0.026c-0.026-0.01-0.121-0.049-0.159-0.038\r\n\t\t\t\tc-0.047,0.032-0.093,0.064-0.14,0.095c-0.03,0.018-0.063,0.012-0.102,0.026c-0.12,0.043-0.172,0.128-0.331,0.095\r\n\t\t\t\tc-0.05-0.063-0.09-0.028-0.135-0.022c-0.26-1.288-0.395-2.619-0.457-3.968c0.016-0.002,0.033-0.001,0.046-0.007\r\n\t\t\t\tc0.167-0.078,0.167-0.194,0.47-0.121c0.006,0.011,0.013,0.021,0.019,0.032v0.006c-0.047,0.013-0.093,0.025-0.14,0.038\r\n\t\t\t\tc0.108,0.084,0.261,0.035,0.419,0.083c0.114,0.034,0.208,0.114,0.337,0.146c0.067,0.017,0.202-0.02,0.261,0.019\r\n\t\t\t\tc0.043,0.025,0.066,0.123,0.07,0.184c0.099,0.06,0.295,0.06,0.388,0.127c-0.006,0.065-0.053,0.106-0.102,0.127\r\n\t\t\t\tc-0.019,0.021-0.038,0.042-0.057,0.063v0.006c0.141,0.006,0.266-0.057,0.394-0.038c0.097,0.011,0.195,0.021,0.292,0.032\r\n\t\t\t\tc0.105-0.019,0.2-0.058,0.324-0.07c0.002-0.004,0.004-0.008,0.006-0.013c-0.124-0.092-0.202-0.151-0.432-0.146\r\n\t\t\t\tc-0.006-0.006-0.013-0.013-0.019-0.019c0.013-0.028,0.025-0.055,0.038-0.083c-0.079-0.081-0.36-0.089-0.483-0.14\r\n\t\t\t\tc-0.04-0.044-0.08-0.089-0.121-0.133c-0.131-0.09-0.318-0.074-0.477-0.146c-0.064-0.053-0.127-0.106-0.191-0.159H7.022\r\n\t\t\t\tc-0.163-0.037-0.338-0.074-0.559-0.07c-0.083,0.008-0.165,0.017-0.248,0.025c-0.059,0.014-0.109,0.043-0.163,0.068\r\n\t\t\t\tC6.038,32.677,6,32.344,6,32c0-0.404,0.042-0.798,0.06-1.198c0.069,0.073,0.127,0.176,0.179,0.209\r\n\t\t\t\tc0.057,0.035,0.12,0.025,0.133,0.102c-0.021,0.115-0.042,0.229-0.064,0.343c0.008,0.002,0.017,0.004,0.025,0.006\r\n\t\t\t\tc0.036,0.022,0.05-0.017,0.089-0.032c0.002,0.019,0.004,0.038,0.006,0.057c-0.025,0.035-0.04,0.043-0.083,0.063\r\n\t\t\t\tc0.038,0.07,0.076,0.14,0.115,0.21H6.52c0.006,0.032,0.013,0.064,0.019,0.095c0.019,0.013,0.038,0.025,0.057,0.038\r\n\t\t\t\tc0.051,0.105-0.017,0.164,0.133,0.172c0.035,0.058,0.068,0.193,0.108,0.242c0.047-0.022,0.112-0.023,0.178-0.032\r\n\t\t\t\tc-0.004,0.021-0.008,0.042-0.013,0.064h0.013c0.048-0.142,0.166-0.403,0.108-0.61c-0.023-0.081-0.082-0.166-0.108-0.261\r\n\t\t\t\tc-0.013-0.083-0.025-0.165-0.038-0.248c-0.062-0.179-0.316-0.446-0.267-0.699c0.032-0.1,0.064-0.199,0.095-0.299\r\n\t\t\t\tc0.053-0.085,0.131-0.155,0.165-0.26c0.15-0.028,0.305-0.087,0.369-0.197c0.047-0.082,0.048-0.15,0.127-0.197\r\n\t\t\t\tc0.074-0.044,0.216-0.039,0.28-0.076c0.064-0.08,0.127-0.161,0.191-0.242c0.07-0.011,0.14-0.021,0.21-0.032\r\n\t\t\t\tc0.025-0.021,0.051-0.042,0.076-0.063c0.002-0.004,0.004-0.009,0.006-0.013c-0.027-0.012-0.033-0.01-0.044-0.038\r\n\t\t\t\tc-0.025,0.019-0.067,0.035-0.095,0.051c-0.015-0.009-0.03-0.017-0.044-0.026c-0.019-0.013-0.023-0.028-0.032-0.051\r\n\t\t\t\tc0.025,0.019,0.035,0.04,0.07,0.051c0.054-0.032,0.047-0.06,0.089-0.083v-0.013c-0.03-0.031-0.081-0.057-0.14-0.057\r\n\t\t\t\tc-0.006-0.011-0.013-0.021-0.019-0.032c0.044,0.015,0.089,0.03,0.133,0.045c-0.006-0.011-0.013-0.021-0.019-0.032v-0.006\r\n\t\t\t\tc0.051,0.021,0.064,0.054,0.14,0.064c0.025-0.03,0.051-0.059,0.076-0.089c0.009-0.016,0.008-0.002,0.038,0\r\n\t\t\t\tc0.006-0.011,0.013-0.021,0.019-0.032c-0.001-0.047-0.012-0.063-0.038-0.083c-0.011-0.006-0.002-0.006-0.013,0\r\n\t\t\t\tc-0.028,0.017-0.029,0.052-0.044,0.081c0.002,0.005-0.004,0.01-0.001,0.014v-0.013c0-0.001,0-0.001,0.001-0.002\r\n\t\t\t\tc-0.01-0.027-0.001-0.054,0.005-0.087c-0.004-0.004-0.009-0.008-0.013-0.013c-0.06,0.01-0.113,0.02-0.191,0.019\r\n\t\t\t\tc0.008-0.038-0.02-0.071,0-0.108v-0.013c0.011,0.017-0.003,0.036,0.006,0.064c0.009,0.011,0.017,0.021,0.026,0.032\r\n\t\t\t\tc0.021-0.006,0.042-0.013,0.064-0.019c0-0.018-0.002-0.019-0.013-0.038c0.021,0.011,0.042,0.021,0.064,0.032\r\n\t\t\t\tc0.008-0.004,0.017-0.009,0.025-0.013c0.002-0.004,0.004-0.008,0.006-0.013c-0.011-0.015-0.021-0.029-0.032-0.044\r\n\t\t\t\tc0.034,0.019,0.057,0.04,0.089,0.025c0.004,0.015,0.008,0.03,0.013,0.045h0.019c-0.012-0.067-0.042-0.087-0.07-0.134h0.038\r\n\t\t\t\tC8.338,28.6,8.338,28.606,8.325,28.59c0.004-0.008,0.008-0.015,0.011-0.023c-0.024-0.086-0.083-0.085-0.17-0.066\r\n\t\t\t\tc-0.004-0.07-0.06-0.101-0.121-0.114c-0.002-0.004-0.004-0.008-0.006-0.013c0.011-0.006,0.021-0.013,0.032-0.019\r\n\t\t\t\tc0.043,0.021,0.076,0.045,0.095,0.089c0.03,0.02,0.023,0.021,0.07,0.019c-0.002-0.021-0.004-0.042-0.006-0.064\r\n\t\t\t\tc-0.02-0.013-0.034-0.028-0.052-0.038H8.172c-0.021-0.017-0.042-0.034-0.064-0.051c0.018,0.026,0.045,0.037,0.069,0.051h0.02\r\n\t\t\t\tc-0.002-0.013-0.004-0.025-0.006-0.038c0.017,0.006,0.034,0.013,0.051,0.019h0.006c-0.002-0.043-0.004-0.052-0.038-0.064\r\n\t\t\t\tc0.009-0.004,0.017-0.009,0.026-0.013c-0.082-0.042-0.117-0.054-0.159-0.133c0.034,0.03,0.068,0.059,0.102,0.089\r\n\t\t\t\tc0.006,0.006,0.013,0.013,0.019,0.019c0.036-0.023,0.042-0.039,0.057-0.083c-0.034-0.047-0.238-0.13-0.311-0.159\r\n\t\t\t\tc-0.002-0.007,0.001-0.013,0-0.019c0.068-0.003,0.075,0.022,0.127,0.045c-0.002-0.013-0.004-0.025-0.006-0.038\r\n\t\t\t\tc0.042,0.042,0.099,0.078,0.153,0.108c-0.016-0.09-0.078-0.09-0.095-0.165h0.006c0.012,0.032,0.027,0.045,0.057,0.057\r\n\t\t\t\tc0.004,0.004,0.008,0.008,0.013,0.013h0.006c-0.015-0.036-0.03-0.072-0.044-0.108c-0.02-0.107,0.072-0.052-0.006-0.197\r\n\t\t\t\tc0.017,0.002,0.034,0.004,0.051,0.006c0.002-0.019,0.004-0.038,0.006-0.057c0.019,0.012,0.011,0.001,0.019,0.026h0.006\r\n\t\t\t\tc0.011-0.014,0.011-0.017,0.013-0.045c0.002,0.011,0.004,0.021,0.006,0.032c0.029-0.02,0.034-0.024,0.032-0.045\r\n\t\t\t\tc0.015-0.011,0.03-0.021,0.044-0.032c-0.006,0.017-0.013,0.034-0.019,0.051c0.013,0.006,0.025,0.013,0.038,0.019\r\n\t\t\t\tc-0.025,0.006-0.051,0.013-0.076,0.019c-0.011,0.017-0.021,0.034-0.032,0.051v0.006h0.051c-0.013,0.035-0.02,0.044-0.07,0.044\r\n\t\t\t\tc-0.004,0.006-0.009,0.013-0.013,0.019c0.016,0.017,0.027,0.021,0.057,0.025c0.002,0.004,0.004,0.008,0.006,0.013v0.026\r\n\t\t\t\tc-0.013-0.007-0.025-0.013-0.038-0.019c-0.004,0.002-0.009,0.004-0.013,0.006c-0.004,0.013-0.009,0.025-0.013,0.038v0.006\r\n\t\t\t\tc0.047-0.025,0.036-0.01,0.089,0.013c0.004,0.006,0.009,0.013,0.013,0.019c-0.03,0.011-0.059,0.021-0.089,0.032\r\n\t\t\t\tc-0.002,0.004-0.004,0.008-0.006,0.013c0.011,0.015,0.021,0.03,0.032,0.044c0.017,0.011,0.034,0.021,0.051,0.032\r\n\t\t\t\tc0.021-0.013,0.042-0.025,0.064-0.038c-0.001,0.055-0.005,0.033-0.025,0.07c0.015,0.008,0.03,0.017,0.044,0.025\r\n\t\t\t\tc-0.006,0.013-0.013,0.026-0.019,0.038v0.006h0.006c0.026-0.01,0.031-0.014,0.051,0c-0.039,0.071-0.09,0.135-0.114,0.229\r\n\t\t\t\tc0.004,0.013,0.008,0.025,0.013,0.038c0.008-0.002,0.017-0.004,0.025-0.006c0.017-0.038,0.034-0.076,0.051-0.114\r\n\t\t\t\tc0.02,0,0.017,0.006,0.032-0.006c0.023-0.055,0.047-0.11,0.07-0.165c0.033-0.056,0.086-0.075,0.102-0.14\r\n\t\t\t\tc-0.004-0.04-0.008-0.081-0.013-0.121c-0.078-0.033-0.136-0.206-0.152-0.292c0.024-0.023,0.034-0.046,0.064-0.064\r\n\t\t\t\tc0.002,0.002,0.004,0.004,0.006,0.006c-0.017,0.031-0.037,0.044-0.057,0.07c0.054,0.073,0.068,0.144,0.184,0.14\r\n\t\t\t\tc0.005,0.037-0.005,0.046-0.013,0.083v0.006c0.004,0.002,0.008,0.004,0.013,0.006c0.055-0.041,0.152-0.125,0.152-0.216\r\n\t\t\t\tc0.013,0.004,0.026,0.008,0.038,0.013c0.032-0.093,0.078-0.196,0.095-0.305c-0.053-0.007-0.063-0.019-0.089-0.051\r\n\t\t\t\tc-0.002-0.006-0.004-0.013-0.006-0.019c0.029-0.023,0.034-0.034,0.064-0.026c0.019-0.053,0.038-0.106,0.057-0.159\r\n\t\t\t\tc-0.015,0.047-0.03,0.093-0.045,0.14c0.19-0.133,0.413-0.223,0.744-0.222c0.008-0.043,0.017-0.085,0.025-0.127\r\n\t\t\t\tc0.002-0.002,0.036,0,0.064-0.013c0.003,0.022-0.008,0.053-0.006,0.095c0.004,0.002,0.008,0.004,0.013,0.007\r\n\t\t\t\tc0.058-0.002,0.108-0.049,0.121-0.089h0.006c0.013,0.016,0.014,0.037,0.013,0.07c0.072-0.017,0.144-0.034,0.216-0.051\r\n\t\t\t\tc0-0.035-0.012-0.048-0.019-0.067v0.016c-0.03,0.013-0.059,0.025-0.089,0.038c-0.017-0.006-0.034-0.013-0.051-0.019\r\n\t\t\t\tc-0.017-0.095-0.061-0.182-0.165-0.191c0.011-0.069,0.067-0.083,0.127-0.102c0.002-0.006,0.004-0.013,0.006-0.019\r\n\t\t\t\tc-0.052-0.015-0.053-0.008-0.083-0.057c0.045-0.073,0.096-0.241,0.184-0.267v-0.07c0.028-0.011,0.055-0.021,0.083-0.032\r\n\t\t\t\tc-0.002,0.011-0.004,0.021-0.006,0.032c0.013,0.006,0.025,0.013,0.038,0.019h0.006c0.028-0.036,0.033-0.028,0.025-0.076\r\n\t\t\t\tc0.011-0.009,0.021-0.017,0.032-0.025c-0.004,0.015-0.008,0.03-0.013,0.044c0.017,0.004,0.034,0.008,0.051,0.013\r\n\t\t\t\tc0.008-0.021,0.017-0.042,0.025-0.064c0.013,0.008,0.025,0.017,0.038,0.025c0.059-0.044,0.113-0.149,0.14-0.222h0.006\r\n\t\t\t\tc0.004,0.002,0.008,0.004,0.013,0.006c-0.008,0.021-0.017,0.042-0.025,0.064c0.002,0.004,0.004,0.008,0.006,0.013\r\n\t\t\t\tc0.027,0.008,0.055,0.017,0.083,0.025c-0.004-0.019-0.008-0.038-0.013-0.057c0.046,0.008,0.075-0.021,0.121-0.032\r\n\t\t\t\tc0.006,0.019,0.013,0.038,0.019,0.057c0.038-0.028,0.057-0.071,0.095-0.095c0.015,0.011,0.03,0.021,0.044,0.032\r\n\t\t\t\tc0.018-0.015,0.017-0.011,0.019-0.045c0.069,0.012,0.096-0.012,0.153-0.038c0.011-0.019,0.01-0.016,0.013-0.032h-0.051\r\n\t\t\t\tc0.011-0.015,0.021-0.03,0.032-0.045c-0.011-0.023-0.021-0.047-0.032-0.07c0.011,0.008,0.021,0.017,0.032,0.025\r\n\t\t\t\tc0.041-0.039,0.135-0.02,0.178,0.013c0.034-0.019,0.068-0.038,0.102-0.057c-0.006-0.013-0.013-0.026-0.019-0.038\r\n\t\t\t\tc0.023,0.013,0.047,0.025,0.07,0.038c0.139-0.017,0.194-0.143,0.343-0.146c0.013-0.023,0.025-0.047,0.038-0.07\r\n\t\t\t\tc-0.006-0.019-0.013-0.038-0.019-0.057c0.024,0.019,0.04,0.035,0.044,0.076c0.019-0.011,0.038-0.021,0.057-0.032h0.006\r\n\t\t\t\tc-0.025,0.065-0.104,0.124-0.172,0.146c-0.008,0.017-0.011,0.022-0.013,0.051c0.108-0.056,0.302-0.039,0.432-0.025\r\n\t\t\t\tc0.004,0.006,0.008,0.013,0.013,0.019c-0.092-0.002-0.148,0.034-0.229,0.051v0.044c-0.023-0.018-0.019-0.021-0.044-0.025\r\n\t\t\t\tc0.002-0.023,0.004-0.047,0.006-0.07c-0.083-0.003-0.358,0.164-0.413,0.222h-0.013c0.011,0.006,0.021,0.013,0.032,0.019v0.006\r\n\t\t\t\tc-0.027,0.003-0.018,0.002-0.038-0.013c-0.04,0.023-0.08,0.047-0.121,0.07c-0.002,0.004-0.004,0.008-0.006,0.013\r\n\t\t\t\tc0.006,0.004,0.013,0.008,0.019,0.013c0.03-0.019,0.059-0.038,0.089-0.057c-0.014,0.038-0.023,0.015-0.044,0.038\r\n\t\t\t\tc-0.076,0.082-0.026,0.172-0.006,0.26c0.015-0.005,0.009-0.003,0.025-0.019c0.019,0.032,0.038,0.064,0.057,0.095\r\n\t\t\t\tc0.048-0.01,0.046-0.012,0.076,0.019c0.009-0.023,0.017-0.047,0.026-0.07c0.035-0.016,0.053-0.017,0.108-0.013v-0.045\r\n\t\t\t\tc0.006,0.004,0.013,0.009,0.019,0.013c0.062-0.036,0.089-0.171,0.203-0.172c0.014-0.051-0.01-0.053-0.013-0.108h0.038\r\n\t\t\t\tc0.006,0.011,0.013,0.021,0.019,0.032h0.006c0.023-0.015,0.034-0.023,0.045-0.051c0.004-0.002,0.008-0.004,0.013-0.006\r\n\t\t\t\tc-0.002,0.015-0.004,0.03-0.006,0.045c0.036,0.004,0.072,0.008,0.108,0.013c0.016-0.034,0.031-0.025,0.038-0.07\r\n\t\t\t\tc0.011,0.006,0.021,0.013,0.032,0.019c0.004-0.015,0.008-0.03,0.013-0.044c0.006-0.002,0.013-0.004,0.019-0.006\r\n\t\t\t\tc0.032,0.009,0.026,0.014,0.045,0.032c0.124-0.045,0.262-0.143,0.407-0.146c-0.002-0.009-0.004-0.017-0.006-0.025\r\n\t\t\t\tc0.032,0.002,0.064,0.004,0.095,0.006c-0.004-0.006-0.008-0.013-0.013-0.019c0.006-0.004,0.013-0.009,0.019-0.013\r\n\t\t\t\tc0.024-0.013,0.02-0.005,0.044,0.013c0.021-0.009,0.042-0.017,0.063-0.025c-0.027-0.034-0.068-0.036-0.133-0.032\r\n\t\t\t\tc-0.004-0.006-0.008-0.013-0.013-0.019c0.013-0.007,0.025-0.013,0.038-0.019c0.006-0.008,0.013-0.017,0.019-0.025\r\n\t\t\t\tc-0.021-0.021-0.042-0.042-0.063-0.064c-0.075-0.027-0.112,0.044-0.133-0.064c-0.066,0.01-0.086,0.052-0.133,0.07\r\n\t\t\t\tc-0.032,0.012-0.073,0.004-0.095,0.013c0.006-0.013,0.013-0.025,0.019-0.038h-0.013c-0.002-0.004-0.004-0.008-0.006-0.013\r\n\t\t\t\tc-0.067-0.031-0.119,0.027-0.165,0.006c-0.019-0.013-0.038-0.025-0.057-0.038c-0.028,0.002-0.055,0.004-0.083,0.006\r\n\t\t\t\tc-0.028-0.013-0.04-0.048-0.083-0.057h-0.013v-0.006c0.025-0.009,0.051-0.017,0.076-0.025c0.004-0.002,0.009-0.004,0.013-0.006\r\n\t\t\t\tc-0.103-0.049-0.301-0.028-0.267-0.191c-0.021-0.028-0.018-0.025-0.044-0.019c-0.013-0.053-0.009-0.079,0.013-0.121\r\n\t\t\t\tc-0.03-0.032-0.094-0.029-0.159-0.025c0.088-0.089,0.103-0.048,0.133-0.178c0.021-0.021,0.042-0.042,0.064-0.064\r\n\t\t\t\tc-0.015-0.011-0.03-0.021-0.044-0.032c-0.019,0.008-0.038,0.017-0.057,0.025v-0.032c-0.055,0.025-0.11,0.051-0.165,0.076\r\n\t\t\t\tc-0.065-0.089-0.112-0.14-0.254-0.152v-0.007c0.049-0.015,0.115-0.056,0.191-0.038c0.034,0.015,0.068,0.03,0.102,0.045\r\n\t\t\t\tc0.079-0.006,0.346-0.155,0.375-0.216c-0.094-0.249-0.411-0.255-0.674-0.152c-0.282,0.11-0.595,0.189-0.82,0.356\r\n\t\t\t\tc-0.184,0.136-0.321,0.345-0.502,0.489c0.154-0.325,0.477-0.718,0.775-0.896c0.079-0.047,0.223-0.03,0.299-0.083\r\n\t\t\t\tc0.108-0.076,0.07-0.268,0.267-0.337c0.117-0.041,0.317-0.025,0.439-0.006c0.178,0.027,0.354-0.025,0.515-0.006\r\n\t\t\t\tc0.163,0.008,0.326,0.017,0.489,0.025c0.219-0.035,0.465-0.038,0.61-0.146c0.083-0.091,0.165-0.182,0.248-0.273\r\n\t\t\t\tc0.155-0.015,0.309-0.03,0.464-0.044c0.1-0.032,0.288-0.2,0.375-0.267v-0.013c-0.042-0.055-0.085-0.11-0.127-0.165\r\n\t\t\t\tc0.034-0.061,0.064-0.142,0.095-0.21c-0.007-0.1-0.158-0.181-0.248-0.197c-0.041-0.008-0.112,0.043-0.153,0.064\r\n\t\t\t\tc-0.013-0.019-0.025-0.038-0.038-0.057c0.008-0.044,0.031-0.064,0.051-0.095c-0.257-0.247-0.418,0.027-0.61,0.133\r\n\t\t\t\tc-0.089,0.05-0.218,0.06-0.305,0.095c0.012-0.069,0.034-0.173,0.083-0.21c0.053-0.004,0.106-0.008,0.159-0.013\r\n\t\t\t\tc0.109-0.031,0.157-0.136,0.28-0.165c0.122-0.029,0.24-0.033,0.292-0.127c-0.11-0.028-0.22-0.055-0.33-0.083\r\n\t\t\t\tc-0.106-0.044-0.191-0.133-0.324-0.153c-0.101-0.015-0.161,0.043-0.261,0.038c0.021-0.051,0.042-0.102,0.064-0.152\r\n\t\t\t\tc-0.007-0.092-0.237-0.273-0.311-0.299h-0.095c-0.062-0.024-0.129-0.187-0.165-0.241c0.004-0.002,0.008-0.004,0.013-0.006\r\n\t\t\t\tc0.055-0.031,0.185,0.022,0.261,0c0.012-0.024,0.014-0.061,0.013-0.102c-0.084-0.062-0.178-0.095-0.242-0.178\r\n\t\t\t\tc0.027-0.025,0.057-0.044,0.102-0.051c-0.036-0.207-0.226-0.07-0.261-0.356c-0.028,0.002-0.055,0.004-0.083,0.006\r\n\t\t\t\tc-0.009-0.07,0.017-0.079,0.032-0.134c-0.122-0.141-0.365-0.561-0.508-0.629c-0.004-0.004-0.008-0.008-0.013-0.013\r\n\t\t\t\tc-0.021,0.042-0.042,0.085-0.064,0.127c-0.144,0.096-0.271,0.026-0.114,0.235c-0.096,0.122-0.182,0.158-0.184,0.388h-0.006\r\n\t\t\t\tc-0.051-0.051-0.057-0.152-0.153-0.159c-0.034,0.059-0.068,0.119-0.102,0.178c-0.077,0.058-0.266,0.055-0.349,0.095\r\n\t\t\t\tc-0.013-0.019-0.026-0.038-0.038-0.057c0.014-0.022,0.019-0.03,0.019-0.07c-0.149-0.221-0.275-0.116-0.483-0.044h-0.006\r\n\t\t\t\tc-0.044-0.056-0.038-0.084-0.026-0.178c0.036,0.002,0.072,0.004,0.108,0.006c0.112-0.165-0.211-0.619,0.013-0.724\r\n\t\t\t\tc0.011-0.023,0.014-0.056,0.013-0.095c-0.011-0.017-0.021-0.034-0.032-0.051c-0.039-0.011-0.088,0.06-0.178,0.038\r\n\t\t\t\tc-0.162-0.039-0.31-0.129-0.458-0.159c-0.052-0.065-0.056-0.061-0.013-0.14c-0.022-0.016-0.052-0.042-0.077-0.062\r\n\t\t\t\tc0.109-0.188,0.225-0.372,0.338-0.557c0.01,0.006,0.021,0.007,0.031,0.015c0.006,0.003,0.064-0.003,0.102,0.013\r\n\t\t\t\tc0.028,0.017,0.055,0.034,0.083,0.051c0.049,0.006,0.097,0.013,0.146,0.019c0.04,0.047,0.081,0.093,0.121,0.14\r\n\t\t\t\tc0.094,0.057,0.203,0.032,0.331,0.064c0.203,0.072,0.407,0.144,0.61,0.216c-0.067-0.217-0.212-0.375-0.381-0.489\r\n\t\t\t\tc-0.155-0.104-0.443-0.179-0.47-0.4c0.186,0,0.218,0.082,0.343,0.127c-0.009-0.049-0.017-0.097-0.026-0.146\r\n\t\t\t\tc0.188,0.145,0.277,0.375,0.604,0.349c0.069,0.109,0.145,0.196,0.273,0.248c-0.038-0.078-0.076-0.157-0.114-0.235\r\n\t\t\t\tc0.04,0.008,0.08,0.017,0.121,0.025h0.006c-0.006-0.184-0.176-0.25-0.153-0.432c0.084,0.057,0.177,0.169,0.216,0.267\r\n\t\t\t\tc0.008,0.006,0.017,0.013,0.025,0.019c0.037-0.334-0.178-0.289-0.292-0.477c0.006-0.013,0.013-0.026,0.019-0.038\r\n\t\t\t\tc0.025-0.006,0.051-0.013,0.076-0.019h0.013c-0.061-0.03-0.123-0.059-0.184-0.089c-0.069-0.041-0.11-0.13-0.191-0.153\r\n\t\t\t\tc-0.019,0.015-0.038,0.03-0.057,0.044c-0.008,0.008-0.017,0.017-0.025,0.026c-0.071-0.122-0.147-0.253-0.21-0.388\r\n\t\t\t\tc-0.053-0.009-0.106-0.017-0.159-0.025c-0.006-0.014-0.012-0.027-0.019-0.04c0.024-0.035,0.051-0.067,0.076-0.101\r\n\t\t\t\tc0.001,0.003,0.005,0.005,0.006,0.008c0.04-0.004,0.081-0.009,0.121-0.013c0.006-0.009,0.013-0.017,0.019-0.026\r\n\t\t\t\tc-0.022-0.025-0.045-0.05-0.067-0.075c0.044-0.062,0.092-0.121,0.137-0.183c0.134,0.06,0.208,0.164,0.343,0.226\r\n\t\t\t\tc0.072,0.033,0.155,0.015,0.21,0.051c-0.013,0.036-0.025,0.072-0.038,0.108c0.005,0.082,0.057,0.11,0.089,0.165\r\n\t\t\t\tc0.042-0.019,0.085-0.038,0.127-0.057c0.033,0.038,0.022,0.078,0.051,0.127c0.022,0.036,0.201,0.12,0.248,0.102h0.013\r\n\t\t\t\tc-0.015-0.064-0.03-0.127-0.045-0.191c0.011-0.076,0.021-0.153,0.032-0.229c0.004-0.002,0.008-0.004,0.013-0.006\r\n\t\t\t\tc0.036,0.05,0.089,0.124,0.159,0.14c0.035-0.09,0.113-0.136,0.222-0.152c-0.011-0.088-0.097-0.155-0.165-0.184\r\n\t\t\t\tc-0.002-0.004-0.004-0.009-0.006-0.013c0.15-0.095,0.182,0.061,0.324,0c0.025-0.019,0.058-0.097,0.089-0.127\r\n\t\t\t\tc0.002-0.006,0.004-0.013,0.006-0.019c-0.087-0.061-0.174-0.123-0.261-0.184c-0.092,0.084-0.164,0.079-0.299,0.051\r\n\t\t\t\tc0.013-0.043,0.025-0.085,0.038-0.127c-0.147-0.013-0.29,0.025-0.47,0.026v-0.095c0.061-0.015,0.123-0.03,0.184-0.044h0.013\r\n\t\t\t\tc-0.051-0.098-0.165-0.231-0.267-0.273c-0.037-0.015-0.062-0.003-0.087,0.008c0.618-0.794,1.268-1.56,1.972-2.276\r\n\t\t\t\tc0.027,0.005,0.054,0.009,0.08,0.014c0.042,0.011,0.084,0.021,0.127,0.032c0.022-0.003,0.044-0.006,0.065-0.009\r\n\t\t\t\tc0.003,0,0.005,0,0.008,0c0.003,0.007,0.006,0.014,0.01,0.022c0.02,0.004,0.051,0.001,0.079-0.002\r\n\t\t\t\tc0.003,0.003,0.005,0.006,0.008,0.008c-0.045,0.019-0.061,0.016-0.102,0.01c-0.025,0.007-0.079,0.031-0.085,0.046\r\n\t\t\t\tc-0.01,0.04,0.124,0.116,0.183,0.098c0.044-0.017,0.087-0.034,0.131-0.051c0.058-0.019,0.1-0.003,0.157-0.022\r\n\t\t\t\tc0.096-0.031,0.196-0.098,0.229-0.154c0.053-0.088-0.124-0.137-0.191-0.155c-0.063-0.017-0.099-0.061-0.143-0.099\r\n\t\t\t\tc-0.051-0.044-0.123-0.071-0.209-0.083c0.015-0.015,0.032-0.028,0.047-0.043c0.017,0.003,0.035,0.009,0.05,0.01\r\n\t\t\t\tc0.011-0.005,0.009-0.006,0.015-0.011c0.018-0.001,0.036-0.001,0.055-0.002c0.098,0.013,0.166,0.087,0.242,0.125\r\n\t\t\t\tc0.058,0.029,0.126,0.035,0.206,0.042c0.022,0.002,0.033,0.013,0.057,0.012c0.021-0.022,0.037-0.048,0.097-0.049\r\n\t\t\t\tc0.002,0.002,0.005,0.004,0.007,0.005c0.001,0.001,0.003,0.003,0.004,0.004c-0.009,0.006-0.019,0.012-0.028,0.019\r\n\t\t\t\tc0.003,0.004,0.006,0.009,0.01,0.013c0.082-0.002,0.101-0.036,0.149-0.053c0.04-0.014,0.063,0.003,0.095-0.008\r\n\t\t\t\tc-0.012,0.025-0.046,0.04-0.061,0.063c-0.015,0.023-0.012,0.045-0.025,0.07c-0.007,0.014-0.031,0.02-0.038,0.036\r\n\t\t\t\tc0.01,0.019,0.049,0.027,0.043,0.05c-0.003,0.006-0.051,0.024-0.06,0.026c0,0.019-0.02,0.038-0.005,0.057\r\n\t\t\t\tc0.01,0.008,0.024,0.008,0.042,0.007c0.003,0.002,0.006,0.003,0.009,0.005c-0.017,0.009-0.038,0.017-0.052,0.026\r\n\t\t\t\tc-0.001,0.018,0.024,0.052,0.013,0.071c-0.012,0.019-0.048,0.03-0.06,0.051c0,0.001,0,0.001,0,0.002\r\n\t\t\t\tc0.084-0.011,0.07-0.036,0.138-0.055c0.04,0.003,0.027,0.022,0.052,0.038c0.012,0.003,0.025,0.006,0.037,0.01\r\n\t\t\t\tc0.001,0.001,0.002,0.002,0.004,0.003c0,0.002,0,0.005,0,0.007c-0.016,0.04-0.137,0.028-0.188,0.046\r\n\t\t\t\tc-0.007,0.004-0.065,0.071-0.067,0.078c0.003,0.008,0.005,0.016,0.008,0.024c-0.011,0.012-0.022,0.025-0.032,0.038\r\n\t\t\t\tc-0.019,0.031-0.038,0.062-0.057,0.092c0.074-0.015,0.084-0.049,0.159-0.064c0.061,0.021,0.023,0.086-0.02,0.107\r\n\t\t\t\tc-0.029,0.014-0.071,0.006-0.102,0.011c-0.063,0.01-0.105,0.042-0.185,0.049c-0.054,0.004-0.117-0.01-0.169,0.006\r\n\t\t\t\tc-0.118,0.035-0.158,0.131-0.289,0.172c0.034,0.002,0.095,0.005,0.125,0.003c0.039-0.009,0.078-0.018,0.118-0.027\r\n\t\t\t\tc0.023,0.004,0.047,0.008,0.07,0.012c0.05,0.008,0.104,0.007,0.161,0.008c0.03-0.031,0.065-0.027,0.119-0.048\r\n\t\t\t\tc0.001-0.002,0.002-0.004,0.003-0.006c0-0.015-0.011-0.025-0.03-0.026c0,0,0-0.001-0.001-0.002\r\n\t\t\t\tc0.021-0.031,0.098-0.036,0.127-0.016c0.007,0.042-0.069,0.055-0.07,0.092c-0.002,0.059,0.172,0.07,0.202,0.108\r\n\t\t\t\tc-0.014,0.005-0.016,0.007-0.013,0.017c-0.062-0.014-0.133-0.027-0.211-0.024c-0.053,0.005-0.106,0.01-0.159,0.015\r\n\t\t\t\tc-0.058,0-0.109-0.014-0.16-0.022c-0.067-0.011-0.133-0.021-0.2-0.032c-0.003,0.001-0.007,0.001-0.01,0.002\r\n\t\t\t\tc-0.003,0.006-0.007,0.012-0.01,0.018c0,0.026,0.154,0.053,0.194,0.053c0.012,0.005,0.034,0.016,0.012,0.028\r\n\t\t\t\tc-0.041,0.017-0.145-0.037-0.22-0.018c-0.111,0.028-0.099,0.092-0.137,0.146c-0.027,0.036-0.054,0.071-0.081,0.107\r\n\t\t\t\tc-0.003,0.008,0.004,0.014,0.009,0.02c0.107,0.021,0.169-0.081,0.21-0.108c0.029-0.009,0.058-0.018,0.086-0.026\r\n\t\t\t\tc0.066-0.032,0.111-0.067,0.214-0.086c-0.003,0.016-0.019,0.023-0.018,0.04c0.034,0.031,0.073,0.012,0.142,0.008\r\n\t\t\t\tc0.019,0,0.038-0.001,0.058-0.001c0.029-0.02,0.092-0.051,0.055-0.082c0,0,0-0.001-0.001-0.002\r\n\t\t\t\tc0.073-0.008,0.116-0.013,0.164,0.002c0.001,0.002,0.001,0.004,0.002,0.006c-0.029,0.03-0.094,0.055-0.093,0.094\r\n\t\t\t\tc0.024,0.013,0.055,0.015,0.064,0.043c-0.107,0.003-0.221,0.01-0.318,0.003c-0.048-0.004-0.097-0.025-0.149-0.02\r\n\t\t\t\tc-0.05,0.005-0.095,0.041-0.126,0.057c-0.053,0.028-0.107,0.056-0.16,0.084c-0.031,0.011-0.061,0.023-0.092,0.034\r\n\t\t\t\tc-0.026,0.023-0.052,0.046-0.077,0.07c0.097,0.037,0.343-0.041,0.494-0.055c0.031-0.005,0.062-0.01,0.093-0.014\r\n\t\t\t\tc0.025,0.006,0.05,0.012,0.074,0.017c0.027-0.002,0.053-0.004,0.08-0.005c0.071,0.006,0.103,0.061,0.143,0.099\r\n\t\t\t\tc-0.048-0.007-0.096-0.013-0.143-0.019c-0.175-0.014-0.382-0.023-0.599,0.048c-0.044,0.013-0.088,0.026-0.132,0.039\r\n\t\t\t\tc0.033,0.026,0.093,0.01,0.126,0.031c0.015,0.022,0.03,0.043,0.045,0.065c0.009,0.006,0.187,0.026,0.212,0.028\r\n\t\t\t\tc0.027-0.007,0.031-0.019,0.051-0.03c0.071-0.01,0.102,0.049,0.058,0.079c-0.07,0.047-0.247,0.037-0.329,0.081\r\n\t\t\t\tc-0.002,0-0.003,0.001-0.005,0.001c0.03,0.018,0.163,0.033,0.21,0.036c-0.003,0.003-0.155,0.049-0.161,0.049\r\n\t\t\t\tc-0.041,0.003-0.061-0.021-0.109,0.004c-0.042,0.022-0.094,0.081-0.039,0.115c0.01,0.006,0.061,0.009,0.061,0.018\r\n\t\t\t\tc0.001,0.014-0.046,0.027-0.052,0.042c-0.006,0.028,0.035,0.04,0.072,0.026c0.049-0.018,0.116-0.057,0.149-0.083\r\n\t\t\t\tc0.068-0.052,0.139-0.105,0.219-0.153c0.026-0.012,0.052-0.023,0.078-0.035c0.04-0.037,0.08-0.074,0.119-0.111\r\n\t\t\t\tc0.043-0.03,0.109-0.051,0.168-0.075c0.037-0.015,0.07-0.028,0.113-0.042c0.041-0.009,0.082-0.018,0.123-0.027\r\n\t\t\t\tc0.021-0.007,0.051-0.021,0.08-0.02c0.023,0.007,0.047,0.013,0.07,0.02c-0.022,0.019-0.042,0.053-0.07,0.067\r\n\t\t\t\tc-0.075,0.036-0.22,0.019-0.315,0.037c-0.025,0.043-0.11,0.069-0.158,0.098c-0.009,0.008-0.002,0.019-0.007,0.028\r\n\t\t\t\tc-0.013,0.026-0.056,0.051-0.112,0.061c0.003,0.009,0.006,0.018,0.009,0.026c-0.158,0.057-0.262,0.142-0.375,0.215\r\n\t\t\t\tc-0.03,0.019-0.109,0.042-0.12,0.068c-0.012,0.015,0.009,0.03,0.021,0.039c0.065,0.049,0.103,0.014,0.195-0.009\r\n\t\t\t\tc-0.019,0.04-0.065,0.091-0.144,0.109c-0.001,0.005-0.002,0.009-0.003,0.014c0.052,0.027,0.141,0.031,0.175-0.022\r\n\t\t\t\tc0.113-0.018,0.086,0.118,0.06,0.151c0.003,0.005,0.006,0.006,0.012,0.013c0.055-0.019,0.148-0.049,0.186-0.075\r\n\t\t\t\tc0.004-0.001,0.008-0.002,0.012-0.002c0.002,0.001,0.004,0.001,0.006,0.002c0.001,0.002,0.001,0.004,0.002,0.006\r\n\t\t\t\tc-0.05,0.055-0.176,0.082-0.215,0.141c0.012,0.026,0.047,0.037,0.078,0.043c0.037-0.003,0.063-0.022,0.086-0.035\r\n\t\t\t\tc0.013,0.011,0.023,0.019,0.028,0.038l-0.049,0.069c-0.008,0.002-0.017,0.003-0.025,0.005c0.026,0.048,0.092,0.004,0.15,0.016\r\n\t\t\t\tc0.032,0.007,0.037,0.052,0.057,0.069c-0.179,0.032-0.096,0.172-0.138,0.254c-0.009,0.019-0.043,0.094-0.017,0.116\r\n\t\t\t\tc0.006,0.006,0.01,0.008,0.021,0.009c0.036,0,0.069-0.044,0.086-0.058c0.047-0.038,0.105-0.089,0.124-0.137\r\n\t\t\t\tc-0.001-0.015-0.003-0.029-0.004-0.044c0.001-0.019,0.025-0.055,0.047-0.067c0.006-0.002,0.011-0.003,0.017-0.005\r\n\t\t\t\tc0.034,0.014,0.057,0.047,0.075,0.077c0.002,0,0.004,0,0.006,0.001c0.011-0.016,0.023-0.032,0.034-0.048\r\n\t\t\t\tc-0.003-0.046-0.006-0.093-0.009-0.14c0.001-0.041,0.018-0.075,0.027-0.11c0.002-0.001,0.003-0.002,0.004-0.003\r\n\t\t\t\tc0.023,0.013,0.046,0.027,0.069,0.04c0.012,0.015-0.004,0.03-0.005,0.042c-0.002,0.033,0.023,0.085,0.059,0.092\r\n\t\t\t\tc0.037,0.007,0.092-0.018,0.131-0.027c0.005,0.037,0.052,0.138,0.083,0.157c0.029,0.009,0.057,0.019,0.086,0.029\r\n\t\t\t\tc0.033,0.016,0.053,0.039,0.077,0.065c0.001,0.003,0.002,0.005,0.003,0.008c-0.08,0.005-0.209-0.043-0.25-0.08\r\n\t\t\t\tc-0.027-0.024-0.028-0.082-0.07-0.091c-0.061-0.014-0.142,0.044-0.163,0.066c-0.002,0-0.003,0.001-0.005,0.001\r\n\t\t\t\tc0.02,0.01,0.078,0.031,0.064,0.059c-0.007,0.019-0.053,0.031-0.075,0.044c-0.062,0.036-0.11,0.071-0.19,0.104\r\n\t\t\t\tc-0.027,0.011-0.089,0.021-0.104,0.038c0.022,0.035,0.111,0.043,0.185,0.018c0.087-0.037,0.175-0.073,0.262-0.11\r\n\t\t\t\tc0.013-0.012,0.026-0.024,0.038-0.036c0.017,0.036,0.059,0.046,0.081,0.071c-0.024,0.009-0.063,0.011-0.098,0.022\r\n\t\t\t\tc-0.09,0.027-0.188,0.048-0.269,0.081c-0.035,0.015-0.092,0.041-0.134,0.034c0.005,0.043,0.049,0.052,0.057,0.092\r\n\t\t\t\tc0.009-0.001,0.019-0.001,0.028-0.002c0,0.002,0.001,0.003,0.001,0.005c-0.015,0.021-0.059,0.025-0.1,0.034\r\n\t\t\t\tc-0.001,0.003-0.002,0.006-0.002,0.009c0.071,0.035,0.051,0.061,0.071,0.126c0.078,0.018,0.126-0.035,0.181-0.058\r\n\t\t\t\tc0.036-0.015,0.083-0.023,0.132-0.032c-0.069,0.057-0.138,0.115-0.207,0.173c0.001,0.002,0.002,0.005,0.003,0.008\r\n\t\t\t\tc0.058,0.008,0.109-0.033,0.173-0.036c0.069-0.004,0.128,0.034,0.115,0.093c-0.012,0.053-0.138,0.066-0.08,0.133\r\n\t\t\t\tc0.048,0.01,0.079-0.016,0.127-0.014c0.002,0,0.003-0.001,0.005-0.001c-0.008,0.023-0.056,0.064-0.035,0.086\r\n\t\t\t\tc0,0.001,0.001,0.002,0.001,0.003c0.108-0.031,0.124-0.099,0.202-0.141c0.009,0.002,0.017,0.004,0.026,0.007\r\n\t\t\t\tc0.001,0.027-0.032,0.057-0.047,0.081c-0.042,0.065-0.084,0.13-0.126,0.195c-0.029,0.051,0.007,0.108,0.077,0.123\r\n\t\t\t\tc0.05,0,0.1,0,0.15,0c0.05,0.005,0.1,0.01,0.15,0.014c0.012,0.017,0.027,0.044,0.031,0.062c-0.019,0.015-0.049,0.031-0.085,0.039\r\n\t\t\t\tc0.002,0.01,0.001,0.012-0.009,0.02c0.009,0.017,0.026,0.022,0.046,0.028c0.037-0.01,0.093-0.026,0.121-0.041\r\n\t\t\t\tc0.002,0.004,0.004,0.008,0.007,0.012c-0.008,0.012-0.025,0.015-0.043,0.023c-0.061,0.029-0.098,0.044-0.103,0.095\r\n\t\t\t\tc0.112-0.018,0.147-0.073,0.235-0.096c0.023,0.072-0.093,0.095-0.116,0.152c0.011,0.023,0.039,0.022,0.053,0.041\r\n\t\t\t\tc-0.039,0.015-0.064,0.034-0.097,0.049c0.041,0.037,0.102,0.063,0.19,0.023c0.008-0.005,0.016-0.011,0.024-0.016\r\n\t\t\t\tc0.023-0.009,0.031,0.008,0.05,0c0.045-0.018,0.029-0.058,0.122-0.037c0,0.002,0.001,0.003,0.002,0.005\r\n\t\t\t\tc-0.013,0.033-0.073,0.046-0.136,0.061c0.058,0.029,0.233,0.015,0.271,0.055c0.036,0.037-0.063,0.081-0.014,0.117\r\n\t\t\t\tc0.006,0.002,0.012,0.001,0.023-0.001c0.028-0.024,0.047-0.046,0.101-0.061c0.008,0.002,0.015,0.004,0.023,0.006\r\n\t\t\t\tc0.006,0.033,0.035,0.061,0.034,0.088c-0.001,0.032-0.072,0.06-0.133,0.07c0.072,0.019,0.181,0.032,0.277,0\r\n\t\t\t\tc-0.001-0.01-0.006-0.026,0.007-0.035c0.001,0,0.002,0,0.003,0c0.025-0.008,0.049-0.015,0.074-0.023\r\n\t\t\t\tc0.018-0.009,0.018-0.024,0.048-0.029c0.001,0,0.002,0,0.003,0c0.001,0,0.002,0,0.002,0c0.001,0,0.002,0,0.003-0.001\r\n\t\t\t\tc0.001,0,0.002,0,0.003,0c0.032-0.001,0.061,0.018,0.104,0.004c0.031-0.018,0.062-0.035,0.094-0.053\r\n\t\t\t\tc0.044-0.016,0.092,0.019,0.092-0.034c0.064,0.001,0.128-0.025,0.114-0.063c-0.096-0.034-0.03-0.068,0.043-0.095\r\n\t\t\t\tc0.035,0.012,0.033,0.039,0.06,0.062c0.009,0.008,0.023,0.008,0.03,0.019c-0.036,0.036-0.115,0.1-0.125,0.14\r\n\t\t\t\tc0.023-0.018,0.04-0.047,0.076-0.059c0.023-0.008,0.049-0.002,0.073-0.012c0.024-0.019,0.048-0.037,0.072-0.055\r\n\t\t\t\tc0.008,0.022,0.018,0.041,0.034,0.055c0.013,0.012,0.052,0.019,0.053,0.04c0.001,0.034-0.057,0.046-0.088,0.07\r\n\t\t\t\tc-0.018,0.014-0.016,0.041-0.034,0.057c-0.035,0.025-0.07,0.05-0.105,0.075c0,0,0,0.001,0.001,0.002\r\n\t\t\t\tc0.032-0.001,0.055-0.016,0.087-0.017c0.02,0.011,0.033,0.028,0.047,0.046c0.002,0.001,0.004,0.002,0.006,0.002\r\n\t\t\t\tc0.075-0.019,0.046-0.092,0.085-0.126c0.041-0.013,0.102-0.007,0.101,0.026c-0.001,0.043-0.072,0.076-0.03,0.132\r\n\t\t\t\tc0.056,0.007,0.091-0.071,0.108-0.096c0.011-0.016,0.04-0.031,0.063-0.042c-0.021,0.042-0.041,0.083-0.062,0.125\r\n\t\t\t\tc0.006-0.001,0.012-0.002,0.017-0.003c0.053,0.045-0.139,0.11-0.08,0.183c0.052,0.007,0.11-0.041,0.178-0.037\r\n\t\t\t\tc0.043,0.002,0.057,0.042,0.094,0.052c0.006-0.001,0.012-0.002,0.017-0.003c0.057-0.029,0.042-0.124,0.109-0.141\r\n\t\t\t\tc0.08-0.02,0.159,0.014,0.22,0.018c0.039-0.001,0.078-0.003,0.117-0.004c0.03,0.001,0.076,0.02,0.11-0.001\r\n\t\t\t\tc0.013-0.009,0.015-0.023,0.02-0.035c0.036-0.085-0.093-0.067-0.067-0.122c-0.041,0.011-0.059,0.029-0.089,0.042\r\n\t\t\t\tc-0.065,0.028-0.129-0.005-0.144-0.044c0.136-0.026,0.396-0.115,0.395-0.18c-0.021,0.001-0.042,0.001-0.063,0.002\r\n\t\t\t\tc-0.034,0.009-0.058,0.035-0.104,0.036c-0.051,0.002-0.124-0.029-0.138-0.067c0.064-0.012,0.128-0.025,0.185-0.032\r\n\t\t\t\tc-0.019-0.013-0.058-0.022-0.087-0.023c-0.003-0.002-0.006-0.003-0.01-0.005c0.031-0.01,0.075-0.019,0.101-0.029\r\n\t\t\t\tc0.034-0.059-0.048-0.07,0.054-0.117c0-0.003,0-0.005,0-0.008c-0.048-0.03-0.174,0.004-0.201-0.043\r\n\t\t\t\tc-0.008-0.014,0.003-0.029,0.009-0.038c0.034-0.053,0.14-0.038,0.185-0.014c0.017-0.003,0.026-0.005,0.033-0.011\r\n\t\t\t\tc0.019-0.014,0.036-0.1,0.012-0.124c0.044-0.024,0.037-0.052,0.056-0.086c0.01-0.01,0.02-0.02,0.03-0.031\r\n\t\t\t\tc-0.041,0.006-0.092,0.025-0.124,0.016l-0.008-0.015c0.097-0.014,0.14-0.081,0.167-0.127c-0.03-0.052-0.1-0.085-0.104-0.156\r\n\t\t\t\tc-0.112-0.018-0.212-0.043-0.286-0.1c0.086-0.011,0.213,0.059,0.274,0.031c0.002-0.001,0.005-0.002,0.007-0.003\r\n\t\t\t\tc-0.001-0.003-0.002-0.005-0.003-0.008c-0.042-0.016-0.114-0.015-0.143-0.042c-0.025-0.024-0.027-0.071-0.049-0.092\r\n\t\t\t\tc0.047-0.029,0.093-0.059,0.14-0.088c0.046-0.019,0.099-0.029,0.134-0.05c-0.008-0.009-0.016-0.018-0.025-0.027\r\n\t\t\t\tc-0.005-0.014-0.011-0.028-0.016-0.042c-0.03-0.035-0.107-0.073-0.064-0.124c0-0.001-0.001-0.002-0.001-0.003\r\n\t\t\t\tc0.036,0.017,0.147,0.055,0.204,0.044c-0.001-0.003-0.002-0.005-0.003-0.008c0.006-0.008,0.012-0.008,0.012-0.019\r\n\t\t\t\tc-0.034-0.018-0.117-0.048-0.111-0.082c0.001-0.001,0.003-0.002,0.004-0.003c0.046,0.004,0.07,0.02,0.12,0.02\r\n\t\t\t\tc0.021-0.009,0.035-0.019,0.033-0.036c-0.026-0.023-0.065-0.029-0.091-0.051c0.001-0.002,0.002-0.005,0.003-0.007\r\n\t\t\t\tc0.035-0.01,0.079,0.009,0.106-0.015c0.019-0.013,0.014-0.041,0.035-0.055c0.018-0.012,0.068-0.012,0.091-0.021\r\n\t\t\t\tc0.015-0.022,0.003-0.047-0.001-0.075c-0.068,0.036-0.136,0.006-0.192,0.002c-0.019,0-0.038,0.001-0.058,0.001\r\n\t\t\t\tc-0.021-0.005-0.042-0.024-0.057-0.036c0,0,0-0.001,0-0.002c0.047,0,0.084,0.013,0.126,0.016\r\n\t\t\t\tc0.044-0.001,0.088-0.001,0.131-0.002c0.028-0.001,0.09-0.009,0.1-0.024c0.026-0.037-0.037-0.077-0.065-0.092\r\n\t\t\t\tc-0.023-0.013-0.046-0.027-0.069-0.04c-0.012-0.013-0.024-0.025-0.036-0.038c-0.018-0.01-0.063-0.003-0.087-0.007\r\n\t\t\t\tc-0.051-0.015-0.102-0.031-0.152-0.046c0.035-0.013,0.071-0.026,0.106-0.039c0.054-0.022,0.094-0.056,0.147-0.073\r\n\t\t\t\tc0.065-0.021,0.098,0.007,0.147-0.018c-0.003-0.033-0.056-0.036-0.075-0.06c0.04-0.014,0.032-0.041,0.033-0.07\r\n\t\t\t\tc-0.008-0.018-0.024-0.007-0.038-0.018c-0.01-0.017-0.02-0.034-0.03-0.051c-0.015-0.01-0.031-0.019-0.047-0.029\r\n\t\t\t\tc-0.088-0.043-0.195,0.005-0.197-0.102c-0.016-0.007-0.033-0.014-0.049-0.021c0.207-0.079,0.173-0.008,0.319,0\r\n\t\t\t\tc0.03-0.008,0.081-0.026,0.102-0.043c0.038-0.03,0.094-0.146,0.023-0.187c-0.046-0.027-0.126-0.019-0.183-0.035l-0.005,0.001\r\n\t\t\t\tc0,0,0-0.001-0.001-0.002c0.156-0.015,0.143-0.03,0.163-0.114c0.004-0.003,0.009-0.005,0.013-0.007c0.003,0,0.005,0,0.008,0\r\n\t\t\t\tc0.029,0.023,0.044,0.049,0.091,0.053c0.011,0.002,0.008-0.002,0.02-0.004c0.001,0,0.002,0,0.003,0\r\n\t\t\t\tc-0.017-0.036-0.034-0.072-0.051-0.108c0.001-0.001,0.003-0.002,0.005-0.003c0.035,0.01,0.044,0.023,0.074,0.039\r\n\t\t\t\tc0.01,0.002,0.021,0.004,0.031,0.006c0.009,0.009,0.018,0.019,0.028,0.028c0.03,0.017,0.13,0.009,0.165-0.018\r\n\t\t\t\tc0.031-0.024,0.019-0.064,0.056-0.086c0.014-0.008,0.03-0.006,0.037,0.001c0.13-0.104-0.137-0.115-0.131-0.166\r\n\t\t\t\tc0.002-0.017,0.048-0.033,0.064-0.046c0.043-0.032,0.089-0.076,0.116-0.114c-0.009,0-0.018-0.001-0.027-0.001\r\n\t\t\t\tc-0.002-0.001-0.004-0.002-0.006-0.004c0.05-0.023,0.021-0.065,0.001-0.1c0.055,0.009,0.141,0.024,0.224-0.01\r\n\t\t\t\tc-0.032,0.049-0.038,0.104-0.065,0.156c-0.017,0.033-0.065,0.069-0.066,0.104c0.008,0.011,0.016,0.021,0.024,0.032\r\n\t\t\t\tc0.015,0.03-0.047,0.071-0.007,0.098c0.021,0.016,0.068,0.009,0.106,0.008c0.001,0,0.002,0,0.002,0\r\n\t\t\t\tc-0.004-0.037,0.007-0.078-0.028-0.11c0.083-0.005,0.124-0.07,0.134-0.107c0.002-0.001,0.003-0.002,0.004-0.003\r\n\t\t\t\tc0.022,0.02,0.027,0.067,0.068,0.07c0.003,0,0.007,0,0.01,0c0.055-0.028,0.102-0.093,0.119-0.136\r\n\t\t\t\tc-0.006-0.004-0.012-0.009-0.018-0.013c0.001,0,0.002,0,0.003,0c0.045,0.009,0.167,0.05,0.2-0.008\r\n\t\t\t\tc0.002-0.031,0.004-0.063,0.006-0.094c0.012-0.023,0.053-0.042,0.051-0.069c0.004-0.047-0.125-0.031-0.121-0.087\r\n\t\t\t\tc0.012-0.034,0.201-0.025,0.247-0.027c0.022,0.013,0.039,0.036,0.067,0.044c0.065-0.002,0.086-0.04,0.101-0.069\r\n\t\t\t\tc0.032-0.059,0.046-0.123,0.077-0.184c0.014-0.028,0.029-0.056,0.043-0.085c0.008-0.022-0.001-0.073-0.025-0.093\r\n\t\t\t\tc-0.006-0.002-0.003-0.002-0.013-0.001c0.018-0.037,0.066-0.059,0.078-0.1c-0.014-0.01-0.028-0.02-0.042-0.03\r\n\t\t\t\tc-0.026-0.028-0.037-0.094-0.024-0.122c0.013-0.028,0.059-0.047,0.07-0.077c0.014-0.038-0.033-0.077-0.004-0.117\r\n\t\t\t\tc0.02-0.027,0.112-0.04,0.135-0.086c0.002-0.016,0.004-0.032,0.005-0.048c0.016-0.031,0.132-0.113,0.06-0.153\r\n\t\t\t\tc-0.023-0.013-0.064-0.006-0.096-0.01c-0.002,0-0.003,0.001-0.005,0.001c0.016-0.009,0.034-0.011,0.039-0.024\r\n\t\t\t\tc0.017-0.065-0.146-0.086-0.173-0.118c0.009-0.012,0.018-0.025,0.027-0.037c0.001-0.001,0.003-0.002,0.004-0.003\r\n\t\t\t\tc0.031,0.059,0.15,0.093,0.239,0.092c0.045,0,0.091-0.01,0.128-0.003c0.046,0.009,0.076,0.04,0.128,0.044\r\n\t\t\t\tc0.046,0.004,0.173-0.02,0.191-0.045c-0.003-0.044-0.086-0.053-0.114-0.083c0.091,0.005,0.077-0.035,0.134,0.031\r\n\t\t\t\tc0.041,0.007,0.101-0.012,0.116-0.034c0.001-0.052-0.066-0.084-0.058-0.137c0.005-0.005,0.011-0.01,0.016-0.015\r\n\t\t\t\tc0.03,0.025,0.076,0.076,0.147,0.053c0.075-0.023,0.014-0.08,0.073-0.109c0.046-0.014,0.093-0.029,0.139-0.043\r\n\t\t\t\tc0.048-0.025,0.083-0.063,0.134-0.089c0.033-0.013,0.065-0.027,0.098-0.04c0.023-0.014,0.024-0.037,0.052-0.051\r\n\t\t\t\tc0.052-0.027,0.165-0.104,0.16-0.147c0.013,0,0.026-0.001,0.039-0.001c0.009-0.007,0.007-0.015,0.014-0.021\r\n\t\t\t\tc0.024-0.02,0.098-0.01,0.069-0.046c-0.007-0.009-0.015-0.014-0.02-0.028c0.02-0.022,0.045-0.041,0.1-0.051\r\n\t\t\t\tc-0.003-0.01-0.007-0.02-0.01-0.03c0.004-0.01,0.018-0.015,0.036-0.02c0.005-0.043-0.016-0.072-0.045-0.098\r\n\t\t\t\tc0.008-0.035,0.079-0.049,0.107-0.077c0-0.029-0.031-0.052-0.063-0.055c0.037-0.037,0.131-0.031,0.146-0.078\r\n\t\t\t\tc-0.024-0.02-0.058-0.024-0.069-0.057c0.023-0.025,0.075-0.06,0.135-0.054c0.001,0,0.002,0,0.003,0\r\n\t\t\t\tc-0.033-0.02-0.066-0.041-0.099-0.061c-0.089-0.081,0.158-0.142,0.204-0.197c-0.022,0.004-0.029,0-0.037-0.01\r\n\t\t\t\tc-0.002-0.001-0.004-0.002-0.006-0.002c0,0,0-0.001-0.001-0.002c0.032-0.002,0.069,0.005,0.1-0.008\r\n\t\t\t\tc0.004-0.004,0.008-0.007,0.012-0.011c-0.001-0.024-0.034-0.036-0.057-0.044c-0.007-0.043,0.064-0.091,0.107-0.117\r\n\t\t\t\tc0.015,0.003,0.03,0.006,0.045,0.009c-0.008-0.04-0.016-0.08-0.024-0.12c-0.038,0.015-0.036,0.038-0.061,0.057\r\n\t\t\t\tc-0.04,0.031-0.1,0.067-0.155,0.09c-0.046,0.018-0.166,0.053-0.22,0.054c-0.055,0.001-0.099-0.006-0.169,0.007\r\n\t\t\t\tc-0.086,0.017-0.192,0.071-0.27,0.055c-0.009-0.018-0.019-0.035-0.028-0.053c-0.001,0-0.002,0-0.003,0.001\r\n\t\t\t\tc-0.072,0.055-0.152,0.123-0.2,0.186c-0.031,0.04-0.06,0.078-0.102,0.114c-0.038,0.032-0.043,0.082-0.099,0.107\r\n\t\t\t\tc-0.053,0.023-0.122,0.012-0.178,0.027c-0.003,0-0.006-0.001-0.008-0.002c-0.047-0.023-0.103,0.025-0.159,0.03\r\n\t\t\t\tc-0.014-0.012-0.007-0.021,0.003-0.032c0.022-0.023,0.056-0.047,0.12-0.051c0.022-0.001,0.054-0.002,0.075-0.013\r\n\t\t\t\tc0.068-0.034,0.046-0.111,0.096-0.141c0.031-0.019,0.151-0.057,0.162-0.078c0.014-0.025-0.022-0.049-0.044-0.053\r\n\t\t\t\tc-0.04,0.008-0.037,0.022-0.06,0.033l-0.116,0.034c-0.082,0.034-0.185,0.115-0.294,0.118c-0.015-0.011-0.018-0.03-0.038-0.036\r\n\t\t\t\tc-0.051,0.004-0.131,0.08-0.148,0.105c-0.006,0.001-0.012,0.001-0.018,0.002c-0.003,0-0.005,0-0.008,0\r\n\t\t\t\tc-0.046-0.074,0.259-0.214,0.154-0.309c-0.031-0.028-0.086-0.028-0.126-0.046c0.103-0.026,0.206-0.053,0.309-0.079\r\n\t\t\t\tc0.011-0.005,0.016-0.012,0.017-0.022c0.05-0.019,0.101-0.031,0.138-0.055c0.04-0.026,0.15-0.164,0.158-0.201\r\n\t\t\t\tc0.003-0.016-0.028-0.058-0.042-0.07c-0.016-0.014-0.044-0.019-0.068-0.024c-0.11-0.022-0.111,0.021-0.198,0.048\r\n\t\t\t\tc-0.092,0.028-0.168-0.001-0.196,0.069c-0.047,0.001-0.074-0.025-0.115-0.028c-0.045-0.003-0.093,0.034-0.122,0.047\r\n\t\t\t\tc-0.001,0-0.002,0-0.003,0c0,0,0-0.001-0.001-0.002c0.016-0.039,0.101-0.058,0.108-0.097c0.007-0.042-0.147-0.072-0.199-0.067\r\n\t\t\t\tc-0.027,0.007-0.053,0.015-0.08,0.022c-0.065,0.001-0.133-0.039-0.158-0.08c0.031-0.004,0.053,0.006,0.077,0.01\r\n\t\t\t\tc0.032,0.005,0.153,0.002,0.167-0.005c0.121,0.041,0.265,0.068,0.372,0.122c0.097-0.022,0.152-0.08,0.272-0.089\r\n\t\t\t\tc0.1-0.007,0.172,0.031,0.261,0.04c0.04-0.01,0.035-0.031,0.071-0.042c0.056,0.011,0.104,0.041,0.15,0.063\r\n\t\t\t\tc0.024,0.008,0.048,0.017,0.071,0.025c0.016,0.019,0.031,0.037,0.047,0.056c0.021,0.005,0.032-0.001,0.046,0.011\r\n\t\t\t\tc0.015,0.022,0.03,0.044,0.045,0.066c0.042,0.038,0.131,0.059,0.2,0.07c0.101,0.016,0.192,0.009,0.27-0.045\r\n\t\t\t\tc0.017-0.012,0.034-0.02,0.038-0.036c0.013-0.051-0.114-0.086-0.107-0.166c0.001-0.001,0.003-0.002,0.004-0.003\r\n\t\t\t\tc0.014,0.037,0.178,0.137,0.22,0.148c0.022,0.005,0.059,0.007,0.087-0.007c0.02-0.01,0.031-0.026,0.039-0.041\r\n\t\t\t\tc0.037-0.061-0.073-0.08-0.109-0.114c0.003-0.006,0.006-0.013,0.01-0.019c-0.026,0-0.033-0.018-0.043-0.033\r\n\t\t\t\tc-0.013-0.002-0.028,0-0.049,0.004c-0.004-0.04,0.038-0.112-0.07-0.076c0.009-0.016,0.01-0.032,0.012-0.052\r\n\t\t\t\tc-0.015,0.002-0.03,0.005-0.045,0.007c-0.002,0-0.004,0-0.005-0.001c-0.033-0.116-0.015-0.165-0.164-0.203\r\n\t\t\t\tc-0.003,0-0.005,0-0.008,0c-0.019,0.045-0.027,0.105-0.038,0.15c-0.001,0.001-0.003,0.002-0.004,0.003\r\n\t\t\t\tc-0.006-0.003-0.013-0.007-0.019-0.01c-0.004-0.025,0.002-0.056-0.014-0.084c-0.022-0.037-0.043-0.094-0.038-0.131\r\n\t\t\t\tc-0.051,0.012-0.061,0.058-0.095,0.08c-0.009-0.002-0.019-0.003-0.028-0.005c0-0.058-0.017-0.052-0.091-0.052\r\n\t\t\t\tc-0.013-0.02-0.001-0.032-0.007-0.054c-0.005-0.001-0.01-0.003-0.014-0.004c-0.012,0.001-0.02,0.003-0.029,0.007\r\n\t\t\t\tc-0.007-0.003-0.006-0.001-0.01-0.008c-0.053,0.01-0.081,0.001-0.126,0.003c-0.151,0.005-0.169,0.037-0.238-0.051\r\n\t\t\t\tc-0.041-0.009-0.201-0.016-0.26-0.004c-0.013,0.035-0.019,0.069-0.038,0.102c-0.018,0.027-0.037,0.054-0.055,0.08\r\n\t\t\t\tc-0.003,0.002-0.006,0.005-0.008,0.007c-0.027-0.016-0.116-0.06-0.103-0.103c0.009-0.015,0.038-0.018,0.056-0.029\r\n\t\t\t\tc0.021-0.013,0.084-0.093,0.073-0.115c-0.015-0.03-0.082-0.03-0.118-0.039c-0.039-0.01-0.067-0.043-0.116-0.041\r\n\t\t\t\tc-0.046,0.002-0.061,0.033-0.074,0.049c-0.018,0.016-0.035,0.032-0.053,0.048c-0.021,0.029-0.031,0.063-0.043,0.095\r\n\t\t\t\tc-0.007,0.002-0.013,0.004-0.019,0.005c-0.015-0.051-0.072-0.083-0.151-0.068c0,0,0-0.001-0.001-0.001\r\n\t\t\t\tc0.024-0.031,0.103-0.012,0.139-0.034c0.06-0.036,0.077-0.119,0.142-0.155c0.004-0.005,0.009-0.01,0.013-0.016\r\n\t\t\t\tc-0.078-0.016-0.155-0.032-0.243-0.04c-0.032,0.023-0.05,0.013-0.09,0.032c-0.021,0.015-0.043,0.03-0.064,0.045\r\n\t\t\t\tc-0.072,0.047-0.113,0.067-0.106,0.143c-0.023-0.003-0.035-0.007-0.05-0.017c-0.124-0.083,0.099-0.103,0.101-0.159\r\n\t\t\t\tc0.001-0.031-0.064-0.029-0.086-0.038c-0.002,0-0.004,0-0.005-0.001c0,0,0-0.001-0.001-0.002c0.065-0.02,0.17-0.047,0.208-0.018\r\n\t\t\t\tc0.055-0.015,0.091-0.086,0.101-0.119c0.002-0.012,0.004-0.024,0.007-0.036c0.019-0.029,0.096-0.064,0.136-0.084\r\n\t\t\t\tc0.001-0.002,0.002-0.004,0.003-0.005c-0.051-0.005-0.107-0.018-0.136-0.046c0.06,0.007,0.119,0.006,0.189,0.005\r\n\t\t\t\tc-0.007-0.017-0.02-0.023-0.032-0.034c-0.018-0.066,0.148-0.105,0.248-0.112c0.019-0.003,0.038-0.006,0.058-0.01\r\n\t\t\t\tc0.014,0.001,0.034,0.006,0.062-0.003c0.018-0.006,0.028-0.016,0.039-0.024c0.005,0.031-0.025,0.045-0.053,0.063\r\n\t\t\t\tc-0.039,0.004-0.2-0.007-0.232,0.033c0,0.003,0,0.005,0,0.008c0.038,0.019,0.086,0.056,0.135,0.064\r\n\t\t\t\tc0.063,0.01,0.146-0.01,0.22-0.012c0.032,0,0.063,0,0.095,0c0.05-0.056,0.09-0.128,0.108-0.194\r\n\t\t\t\tc0.015-0.005,0.03-0.001,0.047-0.002c0.036-0.002,0.135-0.04,0.152-0.052c0.047-0.035-0.09-0.189-0.128-0.197\r\n\t\t\t\tc-0.032-0.007-0.07-0.002-0.107-0.004c-0.059-0.004-0.24-0.04-0.269,0.031c0.007,0.018,0.019,0.023,0.032,0.034\r\n\t\t\t\tc0.001,0.002,0.001,0.003,0.002,0.005c-0.054,0.001-0.109,0.001-0.163,0.001c-0.002,0-0.003,0.001-0.005,0.001\r\n\t\t\t\tc-0.006-0.034,0.037-0.085,0.002-0.115c-0.013-0.007-0.061,0.002-0.077,0c-0.003-0.017,0.025-0.026,0.044-0.033\r\n\t\t\t\tc0.024-0.05-0.082-0.091-0.112-0.123c0,0,0-0.001-0.001-0.002c0.049,0.003,0.087,0.023,0.143,0.019\r\n\t\t\t\tc0.08-0.005,0.117-0.075,0.219-0.082c0.053-0.003,0.078,0.028,0.129,0.024c0.015-0.006,0.029-0.012,0.044-0.018\r\n\t\t\t\tc0.076-0.037,0.128-0.084,0.117-0.15c-0.006-0.035-0.112-0.077-0.174-0.057c-0.075,0.034-0.15,0.068-0.225,0.101\r\n\t\t\t\tc-0.023,0.015-0.039,0.033-0.066,0.048c0.001-0.026,0.017-0.077,0-0.103c-0.026-0.042-0.069-0.068-0.087-0.113\r\n\t\t\t\tc-0.144,0.026-0.093,0.074-0.143,0.127c-0.101,0.032-0.174-0.025-0.264-0.018c0.036-0.037,0.154-0.006,0.199-0.003\r\n\t\t\t\tc0.004-0.001,0.008-0.001,0.012-0.002c0.006-0.013,0.012-0.027,0.018-0.04c0.021-0.034,0.052-0.065,0.088-0.093\r\n\t\t\t\tc-0.001-0.001-0.003-0.003-0.004-0.004c-0.015-0.008-0.041-0.006-0.061-0.008c-0.037-0.005-0.076-0.012-0.118-0.013\r\n\t\t\t\tc-0.078,0-0.163,0.02-0.217-0.003c0.044-0.008,0.061-0.02,0.074-0.039c-0.012-0.023-0.076-0.028-0.104-0.037\r\n\t\t\t\tc-0.001-0.002-0.001-0.004-0.002-0.006c0.057-0.01,0.172,0.001,0.217,0.01c0.051,0.011,0.098,0.041,0.167,0.033\r\n\t\t\t\tc0.034-0.018,0.074-0.065,0.132-0.048c0.029,0.008,0.042,0.034,0.072,0.043c0.067-0.007,0.093-0.07,0.062-0.117\r\n\t\t\t\tc-0.04-0.061-0.125-0.079-0.182-0.12c-0.022-0.016-0.009-0.05-0.031-0.062c-0.042-0.024-0.124,0-0.196,0.004\r\n\t\t\t\tc-0.024-0.002-0.048-0.003-0.073-0.005c-0.041,0.002-0.072,0.028-0.098,0.039c-0.039,0.016-0.082,0.03-0.131,0.042\r\n\t\t\t\tc0-0.001-0.001-0.002-0.001-0.003c0.069-0.022,0.084-0.061,0.131-0.091c0.041-0.027,0.109-0.044,0.145-0.073\r\n\t\t\t\tc0.016-0.013,0.031-0.04,0.007-0.058c-0.01-0.007-0.041-0.008-0.068-0.013c0.057-0.028,0.115-0.055,0.172-0.083\r\n\t\t\t\tc0.024,0.008,0.048,0.016,0.072,0.024c0.029,0.02,0.058,0.041,0.086,0.062c0.003,0.001,0.006,0.001,0.008,0.002\r\n\t\t\t\tc0.003-0.003,0.005-0.005,0.008-0.008c-0.002-0.029-0.048-0.05-0.072-0.066c-0.018-0.012-0.036-0.025-0.053-0.037\r\n\t\t\t\tC24.16,6.946,27.965,6,32,6c4.819,0,9.317,1.335,13.186,3.62c-0.129,0.065-0.246,0.164-0.324,0.268\r\n\t\t\t\tc-0.048-0.001-0.132-0.022-0.153-0.019c-0.081,0.013-0.199,0.161-0.229,0.229c-0.013,0.013-0.025,0.025-0.038,0.038\r\n\t\t\t\tc0.039,0.028,0.075,0.062,0.102,0.102c-0.098,0.069-0.24,0.035-0.292,0.153c-0.004,0.004-0.008,0.008-0.013,0.013\r\n\t\t\t\tc0.032,0.03,0.064,0.059,0.095,0.089c-0.004,0.027-0.008,0.055-0.013,0.083c-0.383-0.001-0.322,0.111-0.547,0.216v0.006\r\n\t\t\t\tc0.208,0.251,0.238,0.04,0.521,0.089c0.13,0.023,0.226,0.096,0.343,0.121c0.109-0.061,0.161-0.161,0.248-0.241\r\n\t\t\t\tc-0.002-0.025-0.004-0.051-0.006-0.076c-0.034-0.021-0.068-0.042-0.102-0.064c-0.004-0.006-0.008-0.013-0.013-0.019\r\n\t\t\t\tc0.023-0.023,0.047-0.047,0.07-0.07c0.074,0.003,0.112,0.025,0.159,0.051c0.055-0.058,0.136-0.114,0.197-0.165v-0.013\r\n\t\t\t\tc-0.021-0.017-0.042-0.034-0.064-0.051c-0.013-0.017-0.002-0.045,0.006-0.076c0.015-0.013,0.03-0.026,0.044-0.038\r\n\t\t\t\tc0.107,0.001,0.27,0.047,0.356,0.006c0.036-0.028,0.072-0.055,0.108-0.083c0.021-0.023,0.042-0.047,0.063-0.07\r\n\t\t\t\tc-0.028-0.015-0.055-0.03-0.083-0.045c0.009-0.043,0.048-0.077,0.099-0.106c0.83,0.518,1.632,1.072,2.395,1.677\r\n\t\t\t\tc-0.005,0.025-0.011,0.05-0.016,0.075c-0.049,0.083-0.097,0.165-0.146,0.248c-0.135,0.174-0.528,0.182-0.464,0.489\r\n\t\t\t\tc0.053,0.004,0.106,0.008,0.159,0.013c0.135,0.378-0.104,0.29-0.146,0.515c0.07,0.108,0.28,0.064,0.369,0.153\r\n\t\t\t\tc0.03,0.036-0.002,0.112,0.013,0.165c0.035,0.124,0.135,0.168,0.286,0.146c-0.018,0.094-0.114,0.264-0.184,0.311\r\n\t\t\t\tc-0.016,0.013-0.038,0.014-0.07,0.013c-0.378-0.351-0.896-0.546-1.468-0.705c-0.123-0.034-0.46-0.13-0.635-0.089\r\n\t\t\t\tc-0.081,0.019-0.116,0.1-0.184,0.134c-0.002,0.004-0.004,0.008-0.006,0.013c0.061,0.078,0.123,0.157,0.184,0.235\r\n\t\t\t\tc-0.01,0.223-0.12,0.179-0.292,0.203c-0.021,0.033-0.037,0.114-0.051,0.146c-0.095,0.048-0.191-0.018-0.216-0.089\r\n\t\t\t\tc0.03-0.038,0.059-0.076,0.089-0.115c-0.178-0.082-0.286-0.093-0.451,0.032c-0.042,0.034-0.085,0.068-0.127,0.102\r\n\t\t\t\tc-0.1,0.03-0.176-0.034-0.235-0.051c-0.105-0.03-0.28-0.002-0.362,0.032c-0.091,0.037-0.088,0.172-0.172,0.222\r\n\t\t\t\tc-0.028-0.015-0.037-0.02-0.044-0.057c-0.182,0.003-0.224,0.07-0.375,0.019c0-0.05,0.007-0.062,0.025-0.089\r\n\t\t\t\tc0.038-0.006,0.076-0.013,0.114-0.019c0-0.097,0.017-0.161,0.026-0.235c-0.381-0.002-0.167,0.2-0.419,0.248\r\n\t\t\t\tc-0.006-0.002-0.013-0.004-0.019-0.006c-0.011-0.034-0.021-0.068-0.032-0.102c-0.133,0.055-0.267,0.11-0.4,0.165\r\n\t\t\t\tc-0.226,0.09-0.453,0.187-0.661,0.273c-0.051,0.015-0.102,0.03-0.153,0.045c-0.087,0.07-0.049,0.285-0.14,0.349\r\n\t\t\t\tc-0.057,0.011-0.115,0.021-0.172,0.032c-0.341,0.069-0.427-0.091-0.629-0.248c0.041-0.201,0.281-0.195,0.508-0.203\r\n\t\t\t\tc-0.055-0.114-0.169-0.349-0.305-0.375c-0.097,0.009-0.195,0.017-0.292,0.025c-0.082-0.018-0.133-0.053-0.216-0.032\r\n\t\t\t\tc-0.017,0.148,0.159,0.164,0.121,0.337c-0.051,0.081-0.102,0.161-0.152,0.241c-0.004,0.004-0.009,0.009-0.013,0.013\r\n\t\t\t\tc0.034,0.051,0.079,0.078,0.153,0.089c0.079,0.238,0.029,0.214-0.032,0.407c-0.006,0.036-0.013,0.072-0.019,0.108v0.013\r\n\t\t\t\tc-0.166-0.008-0.335-0.211-0.566-0.184c-0.124,0.261-0.492,0.237-0.661,0.445c0.005,0.173,0.26,0.294,0.14,0.47\r\n\t\t\t\tc-0.034-0.011-0.068-0.021-0.102-0.032c-0.071,0.008-0.14,0.046-0.235,0.019c-0.217-0.062-0.433-0.161-0.604-0.267\r\n\t\t\t\tc-0.103,0-0.1,0.078-0.153,0.127c0.003,0.063,0.126,0.201,0.191,0.229c0.057,0.024,0.137-0.001,0.191,0.006\r\n\t\t\t\tc0.15,0.265-0.1,0.247-0.261,0.21c-0.072-0.016-0.157,0.001-0.21-0.032c-0.029-0.021-0.053-0.077-0.064-0.114\r\n\t\t\t\tc-0.076-0.038-0.207-0.014-0.292-0.057c-0.043-0.022-0.208-0.444-0.216-0.527c0.122-0.036,0.163-0.19,0.07-0.292\r\n\t\t\t\tc-0.066-0.072-0.223-0.087-0.305-0.14c-0.136-0.088-0.245-0.222-0.362-0.33c0.221-0.112,0.253,0.089,0.343,0.14\r\n\t\t\t\tc0.07,0.011,0.14,0.021,0.21,0.032c0.5,0.15,1.305,0.524,1.831,0.127c0.111-0.084,0.24-0.161,0.235-0.343\r\n\t\t\t\tc-0.069-0.069-0.081-0.106-0.076-0.242c-0.091-0.072-0.211-0.158-0.331-0.197c-0.127-0.038-0.254-0.076-0.381-0.115\r\n\t\t\t\tc-0.121-0.102-0.242-0.203-0.362-0.305c-0.068-0.021-0.136-0.042-0.203-0.063c-0.108-0.038-0.216-0.076-0.324-0.114\r\n\t\t\t\tc-0.18-0.013-0.36-0.025-0.54-0.038c-0.03,0.023-0.059,0.047-0.089,0.07c-0.004-0.046-0.008-0.093-0.013-0.14\r\n\t\t\t\tc-0.183-0.035-0.345-0.068-0.35-0.28c-0.061,0.036-0.123,0.072-0.184,0.108c-0.046,0.019-0.103,0.021-0.14,0.044\r\n\t\t\t\tc-0.114-0.074-0.219-0.036-0.369-0.025c-0.066-0.103-0.205-0.127-0.28-0.222c0.237,0.002,0.468,0.029,0.591-0.095\r\n\t\t\t\tc-0.002-0.023-0.004-0.047-0.006-0.07c-0.028-0.017-0.055-0.034-0.083-0.051c-0.065-0.023-0.14,0.003-0.191-0.019\r\n\t\t\t\tc-0.106-0.045-0.177-0.123-0.299-0.159c-0.07,0.062-0.137,0.151-0.152,0.267c-0.04-0.008-0.081-0.017-0.121-0.025\r\n\t\t\t\tc0.041-0.129,0.058-0.18,0.127-0.279c-0.05-0.066-0.162-0.027-0.242-0.013c-0.045,0.144-0.117,0.243-0.248,0.305\r\n\t\t\t\tc-0.004-0.093-0.008-0.187-0.013-0.28c-0.139,0.095-0.322,0.263-0.388,0.426c-0.017-0.002-0.034-0.004-0.051-0.006\r\n\t\t\t\tc-0.001-0.246,0.115-0.269,0.216-0.4c-0.281-0.021-0.326,0.061-0.47,0.203c-0.031,0.023-0.079-0.012-0.121,0.013\r\n\t\t\t\tc-0.073,0.044-0.144,0.185-0.172,0.273c-0.187-0.096-0.28-0.273-0.381,0.083c-0.042-0.036-0.085-0.072-0.127-0.108\r\n\t\t\t\tc-0.006-0.002-0.013-0.004-0.019-0.006c-0.048,0.076-0.089,0.121-0.203,0.134c-0.027,0.103-0.078,0.174-0.153,0.229\r\n\t\t\t\tc0.014-0.069,0.027-0.136,0.051-0.191c-0.004-0.011-0.008-0.021-0.013-0.032c-0.006-0.004-0.013-0.008-0.019-0.013\r\n\t\t\t\tc-0.084,0.046-0.148,0.229-0.197,0.311c-0.135-0.012-0.165-0.08-0.299-0.032c-0.025-0.021-0.051-0.042-0.076-0.063\r\n\t\t\t\tc-0.061,0.246-0.091,0.112-0.216,0.203c-0.066,0.048-0.033,0.116-0.146,0.153c-0.019,0.021-0.038,0.042-0.057,0.063\r\n\t\t\t\tc0.026,0.021,0.051,0.042,0.076,0.064v0.006c-0.036,0.051-0.106,0.052-0.172,0.038c0.011,0.047,0.021,0.093,0.032,0.14\r\n\t\t\t\tc-0.019,0.028-0.038,0.055-0.057,0.083c-0.006,0.004-0.013,0.009-0.019,0.013c-0.046-0.028-0.064-0.041-0.089-0.089h-0.006\r\n\t\t\t\tc-0.065,0.006-0.07,0.078-0.133,0.102c-0.009,0.027,0.014,0.055,0.044,0.076v0.038c-0.054,0.016-0.077,0.025-0.102,0.07\r\n\t\t\t\tc-0.041-0.01-0.074-0.026-0.127-0.032c-0.044,0.035-0.058,0.078-0.121,0.095c0.011,0.038,0.019,0.052,0.057,0.064\r\n\t\t\t\tc-0.034,0.075-0.199,0.095-0.273,0.134c-0.006,0.004-0.013,0.008-0.019,0.013c0.021,0.036,0.042,0.072,0.064,0.108v0.006\r\n\t\t\t\tc-0.065,0.004-0.112,0.01-0.178,0.006c-0.021,0.034-0.042,0.068-0.063,0.102c0.042,0.051,0.093,0.07,0.127,0.134v0.006\r\n\t\t\t\tc-0.042,0.006-0.085,0.013-0.127,0.019c-0.006,0.042-0.013,0.085-0.019,0.127c-0.163-0.038-0.167,0.098-0.229,0.21\r\n\t\t\t\tc0.021,0.006,0.042,0.013,0.064,0.019c0.002,0.044,0.004,0.089,0.006,0.133c-0.05,0.003-0.081,0.005-0.121-0.006\r\n\t\t\t\tc-0.075,0.075-0.123,0.164-0.203,0.235c0.006,0.019,0.013,0.038,0.019,0.057v0.006c-0.063,0.046-0.087,0.015-0.159,0\r\n\t\t\t\tc-0.094,0.045-0.266,0.185-0.311,0.28c-0.006,0.034-0.013,0.068-0.019,0.102c-0.039,0.065-0.125,0.084-0.159,0.165\r\n\t\t\t\tc-0.006,0.004-0.013,0.009-0.019,0.013c-0.019-0.013-0.038-0.026-0.057-0.038c-0.08-0.054-0.225,0.137-0.222,0.242\r\n\t\t\t\tc-0.085-0.036-0.205-0.032-0.337-0.032l-0.032,0.032c0.017,0.072,0.086,0.103,0.159,0.114c-0.063,0.075-0.159,0.014-0.267,0.006\r\n\t\t\t\tc-0.021,0.084-0.011,0.111-0.089,0.14c-0.1-0.04-0.144,0.042-0.248,0.076c-0.002,0.017-0.004,0.034-0.006,0.051\r\n\t\t\t\tc0.025,0.034,0.072,0.048,0.108,0.07v0.025c-0.066,0.004-0.131,0.008-0.197,0.013c-0.025,0.075-0.001,0.151-0.038,0.21\r\n\t\t\t\tc0.034,0.046,0.043,0.085,0.102,0.108c0.002,0.004,0.004,0.008,0.006,0.013c-0.056,0.046-0.091,0.058-0.114,0.14\r\n\t\t\t\tc0.004,0.011,0.008,0.021,0.013,0.032c0.041,0.028,0.07,0.034,0.121,0.013c0.011,0.013,0.021,0.025,0.032,0.038\r\n\t\t\t\tc-0.041,0.034-0.089,0.076-0.127,0.114c0.053,0.078,0.112,0.033,0.222,0.045c-0.007,0.055-0.021,0.092-0.07,0.108\r\n\t\t\t\tc-0.008,0.011-0.017,0.021-0.025,0.032c0.015,0.013,0.03,0.025,0.044,0.038c0.06-0.001,0.086-0.014,0.127-0.032\r\n\t\t\t\tc-0.027,0.037-0.064,0.055-0.127,0.057c0.001,0.016-0.001,0.007,0.006,0.025c-0.032,0.014-0.05,0.004-0.083-0.013v0.038h-0.006\r\n\t\t\t\tc-0.004-0.017-0.008-0.034-0.013-0.051c-0.002-0.004-0.004-0.008-0.006-0.013c-0.025,0.03-0.051,0.059-0.076,0.089\r\n\t\t\t\tc0.008,0.03,0.017,0.059,0.025,0.089c0.011,0.006,0.021,0.013,0.032,0.019c0.002-0.011,0.004-0.021,0.006-0.032\r\n\t\t\t\tc0.006,0.011,0.013,0.021,0.019,0.032c0.051-0.002,0.06-0.014,0.095-0.026c-0.002-0.025-0.004-0.051-0.006-0.076\r\n\t\t\t\tc0.025,0.019,0.035,0.027,0.038,0.07h0.006c0.028-0.025,0.055-0.051,0.083-0.076c-0.018,0.039-0.04,0.052-0.064,0.083\r\n\t\t\t\tc0.032,0.02,0.042,0.024,0.089,0.019v0.007c-0.038,0.021-0.076,0.042-0.114,0.063c-0.009,0.028-0.004,0.013,0.006,0.045\r\n\t\t\t\tc0.046,0.033,0.031,0.018,0.102,0.013v0.006c-0.036,0.006-0.042,0.012-0.057,0.038c0.006,0.008,0.013,0.017,0.019,0.025\r\n\t\t\t\tc-0.036-0.022-0.065-0.056-0.089-0.019c-0.006,0.004-0.013,0.008-0.019,0.013c-0.002-0.019-0.004-0.038-0.006-0.057\r\n\t\t\t\tc-0.017-0.002-0.034-0.004-0.051-0.006c0.015,0.05-0.003,0.072-0.025,0.114c0.019,0.038,0.038,0.076,0.057,0.114\r\n\t\t\t\tc0.123,0.036,0.19,0.086,0.305,0.115c-0.013,0.013-0.026,0.025-0.038,0.038c0.013,0.008,0.025,0.017,0.038,0.025\r\n\t\t\t\tc0.011-0.013,0.021-0.025,0.032-0.038c0.03,0.015,0.042,0.019,0.051,0.057c0.07,0.017,0.282-0.01,0.349-0.044\r\n\t\t\t\tc0.108-0.107,0.244-0.176,0.356-0.28c0.039-0.036,0.039-0.072,0.095-0.095c0.038-0.02,0.087,0.023,0.14-0.013\r\n\t\t\t\tc0.062-0.046,0.08-0.127,0.083-0.222c0.015-0.011,0.03-0.021,0.044-0.032c0.012,0.047,0.011,0.056-0.013,0.089\r\n\t\t\t\tc0.053,0.074,0.056,0.142,0.165,0.095c0.004,0.002,0.008,0.004,0.013,0.006c0.006,0.051-0.02,0.065-0.032,0.114\r\n\t\t\t\tc0.052,0.027,0.057,0.174,0.057,0.248c0.019-0.002,0.038-0.004,0.057-0.007c0.002,0.017,0.004,0.034,0.006,0.051\r\n\t\t\t\tc0.048-0.012,0.047-0.013,0.089,0c0.008,0.048-0.026,0.118-0.044,0.165c0.047,0.06,0.08,0.086,0.076,0.203\r\n\t\t\t\tc0.017,0.002,0.034,0.004,0.051,0.006c0.049,0.164,0.149,0.23,0.242,0.324c-0.004,0.017-0.009,0.034-0.013,0.051\r\n\t\t\t\tc-0.019-0.002-0.038-0.004-0.057-0.006c0.002,0.017,0.004,0.034,0.006,0.051c-0.021,0.011-0.042,0.021-0.064,0.032\r\n\t\t\t\tc0.042,0.083,0.088,0.169,0.159,0.222c-0.016,0.061-0.039,0.075-0.051,0.134c0.151,0.032,0.257-0.029,0.381,0\r\n\t\t\t\tc0.011-0.013,0.021-0.025,0.032-0.038c0.037-0.032,0.005-0.05-0.019-0.089c0.023-0.06,0.036-0.108,0.095-0.133\r\n\t\t\t\tc0.019-0.011,0.012-0.005,0.038,0.006c0.004-0.017,0.009-0.034,0.013-0.051c0.11,0.001,0.175-0.008,0.254-0.025\r\n\t\t\t\tc0.021,0.015,0.042,0.03,0.064,0.045c0.004,0.004,0.008,0.008,0.013,0.013c0.059-0.108,0.119-0.216,0.178-0.324\r\n\t\t\t\tc0.002-0.04,0.004-0.08,0.006-0.121c0.011-0.057,0.039-0.09,0.057-0.133c0.016-0.027-0.011-0.058,0.006-0.102\r\n\t\t\t\tc-0.015-0.006-0.03-0.013-0.045-0.019V18.53h0.064c0.095-0.071-0.057-0.253-0.07-0.318c0.059-0.002,0.119-0.004,0.178-0.006\r\n\t\t\t\tc0.002-0.013,0.004-0.025,0.006-0.038c0.176,0.031,0.106-0.133,0.191-0.165v0.095c0.002,0.002,0.004,0.004,0.006,0.006\r\n\t\t\t\tc0.019-0.002,0.038-0.004,0.057-0.006c0.014-0.068,0.052-0.091,0.114-0.108c-0.004-0.021-0.008-0.042-0.013-0.064\r\n\t\t\t\tc0.027-0.002,0.055-0.004,0.083-0.006c-0.002-0.011-0.004-0.021-0.006-0.032c-0.002-0.004-0.004-0.008-0.006-0.013h-0.032v0.032\r\n\t\t\t\tc-0.102-0.041-0.174,0.062-0.28,0.045c-0.111-0.019-0.163-0.137-0.299-0.095H32.8c0.009-0.015,0.017-0.03,0.025-0.045\r\n\t\t\t\tc0.037-0.04,0.304,0.049,0.369,0.083c0.082,0.043,0.287-0.119,0.311-0.153h0.057c-0.002-0.095-0.048-0.099-0.07-0.178\r\n\t\t\t\tc-0.126-0.018-0.206-0.104-0.248-0.203c-0.025,0.002-0.051,0.004-0.076,0.006c-0.038-0.015-0.062-0.043-0.133-0.045\r\n\t\t\t\tc-0.002-0.004-0.004-0.008-0.006-0.013c0.046-0.039-0.052-0.296-0.025-0.4c0.023-0.006,0.047-0.013,0.07-0.019\r\n\t\t\t\tc0.055-0.173,0-0.204-0.019-0.356c0.038,0.013,0.076,0.025,0.114,0.038c0.021-0.028,0.042-0.055,0.064-0.083\r\n\t\t\t\tc0.016-0.027-0.004-0.073-0.013-0.115h0.127c0.08-0.112,0.117-0.111,0.222-0.191c0.05-0.038,0.05-0.096,0.114-0.127\r\n\t\t\t\tc0.023,0.015,0.047,0.03,0.07,0.044c0.099-0.068,0.199-0.136,0.299-0.203c0.071-0.087,0.077-0.196,0.184-0.248\r\n\t\t\t\tc0.004-0.006,0.008-0.013,0.013-0.019c-0.034-0.052-0.095-0.08-0.121-0.133c-0.006-0.006-0.013-0.013-0.019-0.019\r\n\t\t\t\tc0.053-0.023,0.128-0.081,0.152-0.133c0.023-0.036-0.022-0.072-0.044-0.102c0.077-0.104,0.108-0.037,0.184-0.095\r\n\t\t\t\tc0.091-0.069,0.094-0.193,0.21-0.248c0.051,0.034,0.102,0.068,0.153,0.102c0.022,0.014,0.223-0.034,0.305-0.032\r\n\t\t\t\tc0.078,0.06,0.117,0.113,0.261,0.115c0.011,0.019,0.021,0.038,0.032,0.057c0.014,0.037-0.006,0.12-0.019,0.159\r\n\t\t\t\tc0.017,0.019,0.034,0.038,0.051,0.057c0.013,0.018,0.009,0.038,0.006,0.076c-0.04-0.002-0.081-0.004-0.121-0.006\r\n\t\t\t\tc-0.098,0.028-0.543,0.488-0.61,0.585h-0.032c-0.013-0.019-0.025-0.038-0.038-0.057v-0.013c-0.09,0.094-0.016,0.207-0.159,0.28\r\n\t\t\t\tc-0.059-0.024-0.1-0.032-0.159-0.013c0.004,0.027,0.008,0.055,0.013,0.083c-0.073,0.067-0.121,0.102-0.153,0.216\r\n\t\t\t\tc0.026,0.023,0.063,0.043,0.089,0.064c0,0.094-0.02,0.143-0.032,0.216c0.034,0.053,0.068,0.106,0.102,0.159\r\n\t\t\t\tc-0.008,0.04-0.017,0.08-0.025,0.121c-0.035,0.188-0.011,0.31,0.127,0.381c0.058,0.03,0.07,0.065,0.146,0.038l-0.006,0.076\r\n\t\t\t\tc0.053-0.018,0.094-0.039,0.172-0.038c-0.011,0.023-0.021,0.047-0.032,0.07c0.02,0.042,0.039,0.071,0.083,0.089\r\n\t\t\t\tc0.067,0.051,0.193-0.016,0.235-0.038v0.026c0.065-0.014,0.081-0.027,0.133,0c0.043-0.058,0.077-0.069,0.153-0.095\r\n\t\t\t\tc0.004,0.008,0.008,0.017,0.013,0.025c0.051-0.028,0.141-0.037,0.165-0.095c0.027,0.019,0.055,0.038,0.083,0.057h0.006\r\n\t\t\t\tc0.017-0.083,0.1-0.04,0.152-0.083c0.028-0.017,0.04-0.057,0.045-0.095v0.057c0.036,0.013,0.072,0.025,0.108,0.038\r\n\t\t\t\tc0.026-0.027,0.034-0.043,0.083-0.051c0.021,0.013,0.042,0.025,0.064,0.038c0.059-0.057,0.198-0.098,0.299-0.108\r\n\t\t\t\tc0.008-0.015,0.017-0.03,0.025-0.045c0.029-0.003-0.01,0.079-0.019,0.114c0.148,0.215,0.345-0.041,0.489,0.229\r\n\t\t\t\tc-0.015,0.011-0.03,0.021-0.045,0.032c-0.094-0.003-0.14-0.044-0.222-0.07c-0.076,0.006-0.1,0.066-0.14,0.108\r\n\t\t\t\tc-0.053-0.012-0.053-0.037-0.102-0.025c-0.016,0.027-0.014,0.015-0.006,0.045c-0.031,0.029-0.052,0.003-0.076-0.025\r\n\t\t\t\tc-0.013,0.002-0.025,0.004-0.038,0.006c-0.004,0.015-0.008,0.03-0.013,0.045c0.032,0.038,0.067,0.051,0.064,0.108\r\n\t\t\t\tc-0.008-0.008-0.017-0.017-0.025-0.025c-0.018-0.007-0.058,0.067-0.108,0.064c-0.163-0.011-0.296-0.042-0.451-0.07\r\n\t\t\t\tc-0.078-0.014-0.166,0.024-0.203-0.006c-0.017,0.015-0.034,0.03-0.051,0.044c-0.049-0.011-0.098-0.021-0.146-0.032\r\n\t\t\t\tc-0.004,0.015-0.008,0.03-0.013,0.045c-0.044-0.007-0.062,0.006-0.102-0.006c-0.085,0.046-0.145,0.095-0.28,0.102\r\n\t\t\t\tc0.006,0.043,0.013,0.056-0.025,0.07c0.023,0.062,0.023,0.099,0.044,0.165c0.022,0,0.035-0.011,0.057-0.026\r\n\t\t\t\tc-0.002,0.057-0.004,0.115-0.006,0.172c0.057,0.016,0.08,0.031,0.121,0.051c0.025-0.023,0.051-0.047,0.076-0.07\r\n\t\t\t\tc0.013,0.009,0.025,0.017,0.038,0.025c-0.021,0.16-0.09,0.268-0.038,0.451c-0.041,0.106-0.222,0.17-0.324,0.076\r\n\t\t\t\tc-0.015-0.04-0.03-0.081-0.044-0.121c-0.047-0.034-0.093-0.068-0.14-0.102v-0.044c-0.113,0.004-0.154,0.056-0.267,0.057\r\n\t\t\t\tc-0.034,0.043-0.068,0.085-0.102,0.127c-0.002,0.044-0.004,0.089-0.006,0.133c-0.032,0.025-0.064,0.051-0.095,0.076\r\n\t\t\t\tc-0.068,0.143,0.034,0.501,0.064,0.578c-0.009,0.025,0,0,0.013,0.025c-0.011,0.002-0.021,0.004-0.032,0.006\r\n\t\t\t\tc0.011,0.035,0.018,0.047,0.013,0.089c-0.081,0.046-0.249,0.013-0.362,0.007c-0.016,0.05-0.021,0.111-0.025,0.165\r\n\t\t\t\tc-0.125,0.066-0.209,0.161-0.388,0.095c-0.009-0.053-0.026-0.086-0.051-0.121c0.005-0.087-0.213-0.034-0.28-0.013\r\n\t\t\t\tc-0.291,0.091-0.499,0.261-0.852,0.286c0.004,0.069,0.012,0.088,0.013,0.146c-0.08-0.028-0.139-0.055-0.21-0.083\r\n\t\t\t\tc-0.004-0.036-0.008-0.072-0.013-0.108c-0.081-0.042-0.175,0.016-0.222-0.121c-0.058-0.004-0.427,0.12-0.458,0.197h-0.07\r\n\t\t\t\tc-0.004-0.013-0.009-0.025-0.013-0.038h-0.006c-0.033,0.022-0.061,0.024-0.095,0.013c-0.004-0.006-0.008-0.013-0.013-0.019\r\n\t\t\t\tc0.045-0.038,0.069-0.048,0.102-0.102c-0.006-0.013-0.013-0.025-0.019-0.038c-0.049,0.004-0.097,0.009-0.146,0.013\r\n\t\t\t\tc-0.057-0.013-0.065-0.053-0.121-0.025c-0.014-0.043-0.014-0.04-0.064-0.038c0.059-0.095-0.063-0.185-0.133-0.21\r\n\t\t\t\tc0.013-0.092,0.038-0.176,0.089-0.229c-0.006-0.011-0.013-0.021-0.019-0.032c0.028-0.002,0.055-0.004,0.083-0.006\r\n\t\t\t\tc0.023-0.081,0.102-0.094,0.064-0.191c0.021-0.011,0.042-0.021,0.064-0.032c0.013,0.017,0.025,0.034,0.038,0.051\r\n\t\t\t\tc0.019-0.007,0.038-0.013,0.057-0.019c0.011-0.02,0.068-0.131,0.038-0.159c-0.051-0.002-0.102-0.004-0.153-0.006\r\n\t\t\t\tc-0.032-0.019-0.031-0.102-0.032-0.153c-0.068-0.033-0.163-0.022-0.254-0.019c-0.006,0.053-0.013,0.106-0.019,0.159\r\n\t\t\t\tc-0.013,0.014-0.02,0.015-0.044,0.019c-0.013-0.03-0.025-0.059-0.038-0.089c-0.049,0.026-0.056,0.1-0.095,0.121\r\n\t\t\t\tc-0.035,0.019-0.1-0.034-0.133-0.032c-0.071,0.107,0.012,0.181,0.019,0.286c-0.031,0.04-0.055,0.066-0.076,0.121\r\n\t\t\t\tc0.017,0.008,0.034,0.017,0.051,0.025c0.008-0.011,0.017-0.021,0.025-0.032c0.03,0.025,0.028,0.047,0.083,0.051\r\n\t\t\t\tc0.009,0.061-0.008,0.193,0.006,0.242c0.015,0.052,0.078,0.085,0.095,0.146c-0.028,0.028-0.059,0.044-0.108,0.051\r\n\t\t\t\tc0.012,0.043,0.042,0.03,0.095,0.025c-0.011,0.017-0.017,0.019-0.032,0.032c0.015,0.015,0.03,0.03,0.045,0.044\r\n\t\t\t\tc-0.011,0.008-0.021,0.017-0.032,0.025c0.002,0.011,0.004,0.021,0.006,0.032c0.023,0.011,0.047,0.021,0.07,0.032\r\n\t\t\t\tc-0.046,0.024-0.104,0.005-0.159,0c-0.019,0.061-0.035,0.076-0.006,0.133c-0.032-0.011-0.063-0.021-0.095-0.032\r\n\t\t\t\tc0.008,0.019,0.017,0.038,0.025,0.057c-0.006,0.008-0.013,0.017-0.019,0.025c-0.006,0.002-0.013,0.004-0.019,0.006\r\n\t\t\t\tc-0.006-0.004-0.013-0.008-0.019-0.013c-0.005-0.039-0.011-0.061-0.025-0.108c-0.107-0.001-0.208,0.008-0.28,0.038\r\n\t\t\t\tc-0.004,0.019-0.008,0.038-0.013,0.057c0.008,0.049,0.031,0.043,0.057,0.07c-0.002,0.006-0.004,0.013-0.006,0.019h-0.025\r\n\t\t\t\tc-0.023-0.022-0.063-0.046-0.076-0.076c-0.123-0.051-0.317,0.05-0.413,0.083c-0.013,0.055-0.013,0.076-0.013,0.146\r\n\t\t\t\tc0.027,0.002,0.055,0.004,0.083,0.006c-0.015,0.024-0.023,0.03-0.025,0.07c0.024,0.016,0.034,0.024,0.076,0.026\r\n\t\t\t\tc-0.013,0.071-0.047,0.063-0.076,0.108c-0.051,0.033-0.092-0.002-0.165-0.013c0.015-0.036,0.015-0.051,0.013-0.108\r\n\t\t\t\tc0.026,0.002,0.019,0.001,0.044-0.006c0.006-0.013,0.013-0.025,0.019-0.038c-0.018-0.035-0.039-0.055-0.07-0.076\r\n\t\t\t\tc-0.032,0.008-0.064,0.017-0.095,0.026c-0.038,0.095-0.076,0.191-0.114,0.286c-0.074,0.064-0.148,0.127-0.222,0.191\r\n\t\t\t\tc0.032,0.014,0.055,0.038,0.07,0.07c-0.053,0.064-0.14-0.005-0.216,0.025c-0.055,0.036-0.11,0.072-0.165,0.108\r\n\t\t\t\tc-0.036,0.002-0.072,0.004-0.108,0.007c-0.047,0.023-0.093,0.047-0.14,0.07c-0.038,0.119,0.011,0.258-0.089,0.324\r\n\t\t\t\tc-0.114,0.075-0.266,0.05-0.349,0.153c-0.002,0.013-0.004,0.025-0.006,0.038c0.021,0.006,0.042,0.013,0.064,0.019\r\n\t\t\t\tc-0.12,0.118-0.282-0.026-0.426,0.044c-0.023-0.044-0.033-0.075-0.025-0.14c-0.075,0.012-0.121,0.009-0.203,0\r\n\t\t\t\tc0.011,0.077,0.049,0.161,0.108,0.191c-0.002,0.083-0.013,0.145,0.025,0.197c-0.024,0.019-0.065,0.026-0.108,0.025v-0.044\r\n\t\t\t\tc-0.055,0.027-0.204,0.061-0.273,0.057c-0.028-0.036-0.055-0.072-0.083-0.108c-0.045,0.004-0.089,0.008-0.133,0.013\r\n\t\t\t\tc-0.006,0.015-0.013,0.03-0.019,0.044c-0.024,0.015-0.108,0.007-0.108,0.007c-0.004-0.004-0.009-0.009-0.013-0.013\r\n\t\t\t\tc-0.076,0.006-0.132,0.063-0.222,0.063c-0.002,0.028-0.004,0.055-0.006,0.083c0.038-0.014,0.077-0.021,0.133-0.019\r\n\t\t\t\tc-0.015,0.03-0.018,0.038-0.057,0.045c-0.01,0.017,0.037,0.021,0.057,0.025c0.002,0.009,0.004,0.017,0.006,0.025v0.006\r\n\t\t\t\tc-0.038,0.006-0.076,0.013-0.114,0.019c0.018,0.035,0.065,0.028,0.089,0.057c0.002,0.011,0.004,0.021,0.006,0.032\r\n\t\t\t\tc0.154-0.013,0.334,0.029,0.445,0.127c0.028-0.009,0.055-0.017,0.083-0.025c0.011,0.006,0.021,0.013,0.032,0.019\r\n\t\t\t\tc-0.011,0.021-0.021,0.043-0.032,0.064c0.036,0.046,0.118,0.075,0.165,0.108c-0.011,0.023-0.021,0.046-0.032,0.07\r\n\t\t\t\tc0.04,0.049,0.08,0.097,0.121,0.146c0.135,0.068,0.112,0,0.184,0.153c-0.021,0.04-0.045,0.073-0.051,0.127\r\n\t\t\t\tc0.051,0.067,0.112,0.106,0.133,0.203c-0.034-0.042-0.068-0.085-0.102-0.127h-0.006c-0.04,0.073-0.053,0.198-0.051,0.305\r\n\t\t\t\tc0.011-0.008,0.021-0.017,0.032-0.025c0.008,0.01,0.017,0.021,0.025,0.032c-0.017,0.008-0.034,0.017-0.051,0.025\r\n\t\t\t\tc-0.034,0.153-0.066,0.309-0.121,0.426c-0.162,0.027-0.245-0.039-0.375-0.076c-0.077,0.095-0.35,0.058-0.515,0.032\r\n\t\t\t\tc-0.075-0.012-0.339-0.086-0.356-0.083c-0.076,0.017-0.158,0.089-0.267,0.07c-0.137-0.023-0.23-0.099-0.369-0.044\r\n\t\t\t\tc-0.013,0.034-0.025,0.068-0.038,0.102h-0.083c-0.104,0.004-0.159,0.031-0.197,0.102c0.002,0.023,0.004,0.047,0.006,0.07\r\n\t\t\t\tc0.094,0.019,0.139,0.07,0.165,0.153c0.008,0.014-0.059,0.211-0.076,0.241c0.095,0.198,0.023,0.738-0.14,0.826\r\n\t\t\t\tc0.005,0.08-0.01,0.143-0.038,0.203c0.015,0.029,0.018,0.027,0.051,0.038c0.039-0.018,0.066-0.029,0.083-0.07\r\n\t\t\t\tc0.006-0.004,0.013-0.009,0.019-0.013c0.009,0.017,0.017,0.034,0.025,0.051c-0.024,0.033-0.05,0.045-0.108,0.045v0.006\r\n\t\t\t\tc0.004,0.017,0.009,0.034,0.013,0.051c0.035,0.008,0.086-0.006,0.121-0.019c0.004,0.004,0.008,0.008,0.013,0.013\r\n\t\t\t\tc-0.011,0.052-0.024,0.115-0.032,0.165c-0.002,0.004-0.004,0.008-0.006,0.013c0.016,0.028,0.041,0.09,0.025,0.152\r\n\t\t\t\tc-0.012,0.047-0.061,0.108-0.044,0.159v0.013c0.057-0.028,0.12-0.061,0.216-0.038c0.03,0.007,0.054,0.035,0.102,0.026\r\n\t\t\t\tc0.044-0.021,0.089-0.042,0.133-0.064c0.148-0.039,0.293,0.081,0.286,0.191c0.017,0.006,0.034,0.013,0.051,0.019\r\n\t\t\t\tc0.017,0.104,0.101,0.213,0.229,0.178c0.011-0.013,0.01-0.013,0.013-0.038h0.006c0.002,0.011,0.004,0.021,0.006,0.032h0.006\r\n\t\t\t\tc0.028-0.117,0.068-0.096,0.178-0.133c0.032-0.028,0.064-0.055,0.095-0.083c0.167,0.002,0.335,0.004,0.502,0.006\r\n\t\t\t\tc0.033-0.011,0.061-0.035,0.114-0.044c0.013,0.011,0.025,0.021,0.038,0.032c0.076-0.056,0.065-0.091,0.114-0.178\r\n\t\t\t\tc0.05-0.088,0.175-0.085,0.292-0.108c0.01-0.028-0.012-0.031-0.006-0.064c0.026-0.154,0.176-0.261,0.299-0.324v-0.019\r\n\t\t\t\tc-0.032-0.017-0.064-0.034-0.095-0.051c-0.023-0.053-0.047-0.106-0.07-0.159c0.031-0.147,0.225-0.389,0.356-0.438\r\n\t\t\t\tc0.002-0.004,0.004-0.009,0.006-0.013c-0.016-0.018-0.023-0.016-0.032-0.044c0.086-0.149,0.264-0.073,0.394-0.159\r\n\t\t\t\tc0.011-0.019,0.021-0.038,0.032-0.057c0.074-0.067,0.212-0.068,0.273-0.146c0.075-0.198-0.151-0.33,0.102-0.508\r\n\t\t\t\tc0.16-0.113,0.187,0.005,0.33,0.006c0.036,0,0.081-0.033,0.133-0.013c0.074,0.029,0.117,0.137,0.242,0.115\r\n\t\t\t\tc0.24-0.044,0.308-0.187,0.47-0.292c0.047-0.013,0.093-0.026,0.14-0.038c0.025-0.028,0.051-0.055,0.076-0.083\r\n\t\t\t\tc0.129-0.101,0.256-0.104,0.426-0.019c0.221,0.111,0.209,0.479,0.419,0.61c0.184,0.115,0.33,0.293,0.502,0.381\r\n\t\t\t\tc0.155,0.08,0.306,0.025,0.343,0.229c0.03-0.008,0.059-0.017,0.089-0.025h0.006c0.013,0.015,0.025,0.03,0.038,0.044\r\n\t\t\t\tc-0.011,0.004-0.021,0.009-0.032,0.013c-0.004,0.008-0.009,0.017-0.013,0.025c0.038-0.011,0.076-0.021,0.114-0.032\r\n\t\t\t\tc0.021,0.019,0.042,0.038,0.064,0.057c0.009,0.041,0.003,0.066-0.013,0.095c0.045,0.027,0.089,0.055,0.133,0.083\r\n\t\t\t\tc0.023,0.012,0.039-0.004,0.07-0.019c0.034,0.01,0.181,0.419,0.172,0.451v0.013c-0.023-0.002-0.047-0.004-0.07-0.006\r\n\t\t\t\tc-0.011,0.011-0.021,0.021-0.032,0.032c0.02,0.067,0.004,0.11-0.064,0.14v0.076c0.013,0.009,0.025,0.017,0.038,0.025h0.083\r\n\t\t\t\tc0.039-0.064,0.067-0.14,0.146-0.165c0.016-0.034,0.005-0.062,0-0.108c0.045-0.043,0.063-0.067,0.159-0.064\r\n\t\t\t\tc0.011-0.013,0.021-0.026,0.032-0.038c-0.026-0.042-0.026-0.089-0.006-0.134c-0.061-0.034-0.123-0.068-0.184-0.102\r\n\t\t\t\tc0.002-0.111,0.086-0.282,0.197-0.267c-0.006,0.095,0.142,0.064,0.203,0.108c0.03,0.023,0.006,0.04,0.025,0.076\r\n\t\t\t\tc0.036,0.023,0.072,0.047,0.108,0.07c0.015-0.044,0.03-0.089,0.045-0.133c-0.196-0.193-0.436-0.359-0.744-0.438\r\n\t\t\t\tc-0.011-0.013-0.021-0.025-0.032-0.038c0.032-0.027,0.049-0.054,0.095-0.07c-0.002-0.011-0.004-0.021-0.006-0.032\r\n\t\t\t\tc-0.047-0.073-0.327,0.011-0.413-0.076c-0.08-0.081-0.209-0.198-0.254-0.305c-0.028-0.067-0.023-0.157-0.064-0.21\r\n\t\t\t\tc-0.031-0.04-0.088-0.05-0.133-0.076c-0.15-0.087-0.231-0.143-0.273-0.343c0.027-0.031,0.056-0.043,0.076-0.083\r\n\t\t\t\tc-0.031-0.037-0.057-0.035-0.057-0.108c-0.015-0.002-0.03-0.004-0.044-0.006c0.008-0.021,0.017-0.042,0.025-0.064\r\n\t\t\t\tc0.044-0.029,0.154-0.064,0.248-0.07c0.002-0.017,0.004-0.034,0.006-0.051c0.08,0.003,0.086,0.005,0.159,0\r\n\t\t\t\tc0.011,0.017,0.021,0.034,0.032,0.051c-0.019,0.025-0.035,0.035-0.076,0.038c0.021,0.098,0.071,0.175,0.102,0.254\r\n\t\t\t\tc0.033-0.017,0.055-0.041,0.083-0.064c0.017-0.047,0.034-0.093,0.051-0.14c0.256,0.103,0.086,0.31,0.343,0.388\r\n\t\t\t\tc-0.036,0.002-0.072,0.004-0.108,0.006v0.006c0.075,0.108,0.185,0.165,0.267,0.267c0.025,0.026,0.059-0.025,0.108-0.013\r\n\t\t\t\tc0.006,0.001,0.153,0.061,0.165,0.07c0.049,0.035,0.089,0.097,0.14,0.133c0.133,0.095,0.272,0.155,0.407,0.248\r\n\t\t\t\tc0.03,0.036,0.059,0.072,0.089,0.108c0.042,0.021,0.085,0.042,0.127,0.064c0.003,0.051,0.002,0.06-0.038,0.07\r\n\t\t\t\tc-0.006,0.043,0.016,0.226,0.013,0.235c-0.017,0.032-0.034,0.064-0.051,0.095c0.022,0.032,0.038,0.045,0.038,0.102\r\n\t\t\t\tc-0.011-0.002-0.021-0.004-0.032-0.006c0.027,0.077,0.144,0.098,0.191,0.159c0.006,0.03,0.013,0.059,0.019,0.089\r\n\t\t\t\tc0.04,0.101,0.153,0.191,0.28,0.172c0.008,0.008,0.017,0.017,0.025,0.025v0.013c-0.027,0.034-0.065,0.029-0.108,0.038v0.006\r\n\t\t\t\tc0.036,0.055,0.072,0.11,0.108,0.165c0.103-0.009,0.227-0.061,0.349-0.025c0.077,0.022,0.119,0.081,0.223,0.089v0.006\r\n\t\t\t\tc-0.101,0.134-0.204-0.021-0.324-0.038c-0.039-0.005-0.082,0.035-0.159,0.032c-0.021,0.038-0.042,0.076-0.064,0.114\r\n\t\t\t\tc0.038,0.047,0.076,0.093,0.114,0.14c0.014,0.044-0.016,0.099-0.013,0.146c0.019,0.017,0.038,0.034,0.057,0.051\r\n\t\t\t\tc0.019-0.015,0.038-0.03,0.057-0.044c0.045-0.022,0.097,0.086,0.108,0.14c0.004,0.002,0.009,0.004,0.013,0.007\r\n\t\t\t\tc0.011-0.019,0.021-0.038,0.032-0.057c0.056-0.027,0.09-0.001,0.14,0.025c-0.005-0.136-0.055-0.195-0.095-0.292v-0.032\r\n\t\t\t\tc0.034,0.011,0.068,0.021,0.102,0.032h0.013c-0.006,0.013-0.013,0.025-0.019,0.038c0.017,0.006,0.034,0.013,0.051,0.019\r\n\t\t\t\tc0.019-0.035,0.029-0.044,0.083-0.045c-0.023-0.029-0.028-0.02-0.025-0.064c-0.021,0.004-0.042,0.009-0.064,0.013\r\n\t\t\t\tc-0.022-0.048-0.026-0.074-0.057-0.108c0.047-0.015,0.093-0.03,0.14-0.044c0.05,0.006,0.107,0.078,0.121,0.121\r\n\t\t\t\tc0.006,0.004,0.013,0.008,0.019,0.013c0.013-0.011,0.025-0.021,0.038-0.032c-0.013-0.04-0.025-0.081-0.038-0.121\r\n\t\t\t\tc0.008-0.002,0.017-0.004,0.025-0.006c-0.005-0.06-0.342-0.233-0.419-0.248v-0.006c0.044-0.01,0.071-0.023,0.102-0.044\r\n\t\t\t\tc-0.013-0.03-0.026-0.059-0.038-0.089v-0.007c0.03-0.019,0.042-0.017,0.083-0.006c0.014,0.026,0.015,0.037,0.013,0.07h0.006\r\n\t\t\t\tc0.006-0.002,0.013-0.004,0.019-0.006c0.008-0.011,0.017-0.021,0.025-0.032c-0.079-0.096-0.169-0.193-0.222-0.311\r\n\t\t\t\tc0.002-0.047,0.015-0.064,0.038-0.089c-0.011-0.013-0.021-0.025-0.032-0.038c0.035-0.015,0.06-0.023,0.076-0.057\r\n\t\t\t\tc0.008,0.002,0.017,0.004,0.025,0.006c0.002,0.009,0.004,0.017,0.006,0.025c-0.011,0.007-0.021,0.013-0.032,0.019\r\n\t\t\t\tc0.04,0.08,0.139,0.069,0.146,0.184c0.032,0.004,0.064,0.008,0.095,0.013h0.013c-0.035-0.042-0.079-0.056-0.108-0.108v-0.006\r\n\t\t\t\tc0.076,0.003,0.119,0.051,0.146,0.102c0.015-0.002,0.03-0.004,0.044-0.006c0.002-0.006,0.004-0.013,0.006-0.019\r\n\t\t\t\tc-0.024-0.041-0.06-0.046-0.083-0.089c0.011-0.008,0.021-0.017,0.032-0.026c0.037,0.007,0.067,0.015,0.083,0.045\r\n\t\t\t\tc0.017,0.015,0.034,0.03,0.051,0.045c0.006-0.004,0.013-0.009,0.019-0.013v-0.006c-0.062-0.077-0.15-0.094-0.191-0.197v-0.006\r\n\t\t\t\tc0.134-0.026,0.108,0.02,0.21-0.07c0.039,0.003,0.034,0.001,0.044,0.032c0.079,0,0.103-0.025,0.153-0.051\r\n\t\t\t\tc0.043,0.102,0.272-0.012,0.286,0.121c0.008-0.009,0.017-0.017,0.025-0.025c0.034,0.021,0.105,0.031,0.146,0.044\r\n\t\t\t\tc0.002,0.004,0.004,0.008,0.006,0.013c-0.032,0.019-0.064,0.038-0.095,0.057c-0.008,0.032-0.017,0.064-0.025,0.095\r\n\t\t\t\tc0.066-0.021,0.091-0.085,0.14-0.121c0.061-0.028,0.123-0.055,0.184-0.083c0.015-0.03,0.03-0.059,0.044-0.089\r\n\t\t\t\tc0.038-0.022,0.1,0.002,0.153-0.019c0.136-0.054,0.112,0.009,0.273,0.013c0.026-0.03,0.045-0.056,0.063-0.095\r\n\t\t\t\tc-0.045-0.06-0.142-0.051-0.21-0.089c-0.087-0.049-0.178-0.313-0.267-0.299v-0.051c0.036-0.035,0.047-0.056,0.102-0.076\r\n\t\t\t\tc0.016-0.084,0.038-0.153,0.051-0.222c0.025-0.013,0.108-0.018,0.121-0.038c0.004-0.04,0.008-0.08,0.013-0.121\r\n\t\t\t\tc0.036-0.199,0.06-0.377,0.286-0.388c0.023-0.049,0.047-0.097,0.07-0.146c-0.015-0.031-0.034-0.038-0.051-0.064\r\n\t\t\t\tc-0.032-0.104,0.093-0.097,0.153-0.133c0.199-0.119,0.104-0.321,0.509-0.311c0.008-0.015,0.017-0.03,0.025-0.045\r\n\t\t\t\tc0.006-0.004,0.013-0.008,0.019-0.013c0.021,0.025,0.042,0.051,0.064,0.076v0.013c-0.023,0.021-0.047,0.042-0.07,0.064v0.013\r\n\t\t\t\tc0.097,0.133,0.265,0.085,0.458,0.089c0.013,0.025,0.026,0.051,0.038,0.076c-0.067,0.074-0.25,0.106-0.331,0.184\r\n\t\t\t\tc0.004,0.008,0.009,0.017,0.013,0.025c0.2,0.038,0.367,0.002,0.254,0.267v0.019c0.285,0.052,0.158-0.026,0.337-0.089\r\n\t\t\t\tc0.051-0.004,0.102-0.009,0.153-0.013c0.034-0.028,0.068-0.055,0.102-0.083c0.06-0.018,0.089,0.017,0.133,0.025\r\n\t\t\t\tc0.038-0.006,0.076-0.013,0.114-0.019c0.023-0.032,0.052-0.072,0.064-0.114c-0.064-0.008-0.127-0.017-0.191-0.025\r\n\t\t\t\tc-0.072,0.007-0.141,0.064-0.235,0.038c-0.024-0.123-0.199-0.258-0.337-0.299c-0.002-0.004-0.004-0.008-0.006-0.013\r\n\t\t\t\tc0.103-0.029,0.197-0.016,0.305-0.019c0.037-0.039,0.065-0.066,0.083-0.127c0.004-0.002,0.009-0.004,0.013-0.006\r\n\t\t\t\tc0.015,0.013,0.03,0.025,0.044,0.038c0.022,0.013,0.019,0.008,0.045,0c0.05-0.015,0.061-0.049,0.102-0.063\r\n\t\t\t\tc0.125-0.023,0.25-0.047,0.375-0.07c0.023-0.025,0.047-0.051,0.07-0.076c0.074-0.008,0.148-0.017,0.222-0.025\r\n\t\t\t\tc0.013-0.013,0.007-0.002,0.013-0.025c0.093-0.017,0.186-0.034,0.28-0.051c0.011,0.021,0.021,0.042,0.032,0.064\r\n\t\t\t\tc-0.099,0.079-0.25,0.146-0.413,0.152c-0.008,0.011-0.017,0.021-0.026,0.032c0.074,0.053,0.148,0.098,0.197,0.178\r\n\t\t\t\tc-0.034,0.026-0.077,0.034-0.14,0.032c-0.028,0.081-0.083,0.13-0.089,0.229c-0.049,0.026-0.154,0.037-0.21,0.051\r\n\t\t\t\tc0.044,0.059,0.104,0.147,0.159,0.197c0.043,0.008,0.057-0.002,0.089-0.019c0.041,0.027,0.058,0.069,0.095,0.095\r\n\t\t\t\tc0.044,0.013,0.089,0.025,0.133,0.038c0.105,0.049,0.192,0.14,0.28,0.21c0.047,0.038,0.116,0.138,0.178,0.133\r\n\t\t\t\tc-0.004,0.019-0.008,0.038-0.013,0.057c0.102,0.075,0.311,0.102,0.381,0.21c0.015,0.053,0.03,0.106,0.045,0.159\r\n\t\t\t\tc0.079,0.289-0.089,0.388-0.324,0.445c-0.131,0.031-0.222-0.051-0.337-0.032c-0.053,0.017-0.106,0.034-0.159,0.051\r\n\t\t\t\tc-0.098,0.022-0.277-0.021-0.381-0.038c-0.126-0.021-0.151-0.13-0.292-0.076c-0.078-0.037-0.078-0.076-0.121-0.146\r\n\t\t\t\tc-0.029-0.021-0.102,0.03-0.172,0.013c-0.083-0.021-0.076-0.089-0.121-0.146c-0.173,0.111-0.323-0.021-0.54,0.032\r\n\t\t\t\tc-0.196,0.047-0.34,0.172-0.515,0.229c0.002,0.017,0.004,0.034,0.006,0.051c-0.138,0.074-0.202,0.007-0.318-0.013\r\n\t\t\t\tc-0.019,0.006-0.038,0.013-0.057,0.019c-0.093-0.008-0.186-0.017-0.28-0.025c-0.013,0.025-0.025,0.051-0.038,0.076\r\n\t\t\t\tc0.029,0.031,0.069,0.042,0.083,0.089c0.053-0.002,0.106-0.004,0.159-0.006v0.006c-0.072,0.023-0.189,0.032-0.28,0.032\r\n\t\t\t\tc-0.017,0.023-0.026,0.025-0.026,0.051c0.026,0.006,0.051,0.013,0.076,0.019c0.006,0.004,0.013,0.009,0.019,0.013\r\n\t\t\t\tc-0.006,0.008-0.013,0.017-0.019,0.025c-0.114-0.018-0.214-0.013-0.337-0.006c0.011-0.013,0.021-0.025,0.032-0.038\r\n\t\t\t\tc-0.036-0.015-0.055-0.014-0.089-0.007c-0.002,0.004-0.004,0.009-0.006,0.013c0.013,0.006,0.026,0.013,0.038,0.019v0.019\r\n\t\t\t\tc-0.067,0.022-0.142,0.01-0.159-0.044c-0.091,0.011-0.203,0.041-0.254,0.095c-0.035,0.037,0.004,0.057-0.07,0.064\r\n\t\t\t\tc-0.01,0.071-0.028,0.13-0.032,0.191c0.087-0.013,0.174-0.025,0.261-0.038v0.006c-0.015,0.024-0.03,0.039-0.057,0.051\r\n\t\t\t\tc-0.015,0.017-0.03,0.034-0.045,0.051c0.035,0.006,0.049,0.02,0.064,0.045c0.014,0.023-0.007,0.02-0.013,0.064h0.057\r\n\t\t\t\tc0.006,0.008,0.013,0.017,0.019,0.025c-0.021,0.025-0.052,0.036-0.089,0.045c-0.007,0.025,0.01,0.054,0.038,0.076\r\n\t\t\t\tc0.034,0.045,0.026,0.031-0.019,0.063c-0.032-0.003-0.055-0.025-0.089-0.044c-0.011,0.023-0.021,0.047-0.032,0.07v0.045\r\n\t\t\t\tc0.105,0.013,0.133,0.046,0.222,0.07c0.003,0.06-0.021,0.124,0.006,0.165c0.034,0.021,0.068,0.042,0.102,0.064\r\n\t\t\t\tc0.002,0.008,0.004,0.017,0.006,0.025c-0.028,0.011-0.055,0.021-0.083,0.032c0.006,0.013,0.013,0.025,0.019,0.038\r\n\t\t\t\tc0.068,0.006,0.136,0.013,0.203,0.019c0.002,0.004,0.004,0.008,0.006,0.013c-0.017,0.019-0.024,0.019-0.032,0.051\r\n\t\t\t\tc0.006,0.015,0.013,0.03,0.019,0.045c0.004,0.002,0.009,0.004,0.013,0.006c0.021-0.021,0.042-0.042,0.064-0.063\r\n\t\t\t\tc0.085-0.003,0.086,0.023,0.146,0.051c0.029,0.014,0.049-0.015,0.076-0.038c0.025,0.059,0.051,0.119,0.076,0.178\r\n\t\t\t\tc0.099,0.031,0.23-0.025,0.299,0.019c0.013-0.002,0.026-0.004,0.038-0.006c0.015-0.072,0.03-0.144,0.044-0.216\r\n\t\t\t\tc0.142-0.018,0.288,0.018,0.388,0.083c0.073,0.048,0.108,0.143,0.203,0.172c0.136,0.041,0.301-0.026,0.381-0.045\r\n\t\t\t\tc0.042-0.082,0.104-0.102,0.159-0.165c0.138,0.001,0.177,0.055,0.286,0.07c0.037-0.038,0.085-0.067,0.121-0.114h0.025\r\n\t\t\t\tc0.013,0.017,0.025,0.034,0.038,0.051c0.002,0.013,0.004,0.025,0.006,0.038c-0.039,0.043-0.09,0.068-0.127,0.114\r\n\t\t\t\tc0.017,0.03,0.034,0.059,0.051,0.089c-0.011,0.057-0.038,0.107-0.064,0.153c0.087,0.115,0.021,0.195,0.076,0.33\r\n\t\t\t\tc-0.146,0.144-0.206,0.407-0.305,0.578c-0.008,0.042-0.017,0.085-0.025,0.127c-0.041,0.134-0.077,0.258-0.172,0.337\r\n\t\t\t\tc0.074,0.186,0.148,0.373,0.222,0.559c0.012,0.018,0.023,0.014,0.051,0.032c-0.023,0.137-0.084,0.285-0.095,0.407\r\n\t\t\t\tc0.036,0.002,0.072,0.004,0.108,0.006c0.047,0.059,0.093,0.119,0.14,0.178c0.104,0.17,0.188,0.32,0.299,0.477\r\n\t\t\t\tc0.084,0.118,0.206,0.226,0.165,0.413c0.085,0.117,0.223,0.149,0.324,0.248c0.066,0.119,0.131,0.237,0.197,0.356\r\n\t\t\t\tc0.066,0.127-0.002,0.313,0.051,0.457c0.051,0.072,0.102,0.144,0.152,0.216c0.07,0.096,0.225,0.114,0.299,0.203\r\n\t\t\t\tc0.089,0.182,0.178,0.364,0.267,0.546c0.034,0.026,0.068,0.051,0.102,0.076c0.086,0.071,0.195,0.232,0.235,0.343\r\n\t\t\t\tc0.011,0.068,0.021,0.136,0.032,0.203c-0.008,0.039-0.042,0.068-0.032,0.127c0.03,0.172,0.113,0.353,0.165,0.496v0.216\r\n\t\t\t\tc0.095,0.205,0.383,0.166,0.553,0.057c0.057-0.047,0.114-0.093,0.172-0.14c0.094-0.028,0.217,0.012,0.299-0.013\r\n\t\t\t\tc0.128-0.039,0.228-0.133,0.343-0.172c0.078-0.026,0.163,0.016,0.229-0.019c0.069-0.036,0.087-0.124,0.152-0.159\r\n\t\t\t\tc0.238-0.13,0.547-0.129,0.769-0.267c0.062-0.038,0.046-0.087,0.076-0.159c0.029-0.07,0.139-0.142,0.21-0.172\r\n\t\t\t\tc0.121-0.04,0.241-0.081,0.362-0.121c0.07,0.008,0.14,0.017,0.21,0.025c0.025-0.015,0.051-0.03,0.076-0.045\r\n\t\t\t\tc0.045-0.091,0.016-0.205,0.108-0.248c0.096-0.045,0.186,0.021,0.273-0.051c0.032-0.027,0.027-0.071,0.044-0.114\r\n\t\t\t\tc0.048-0.12,0.19-0.153,0.349-0.159c0.009-0.116-0.012-0.304,0.026-0.419c0.056-0.024,0.123,0.021,0.172-0.006\r\n\t\t\t\tc0.057-0.042,0.064-0.147,0.102-0.21c0.042-0.04,0.085-0.08,0.127-0.121c0.059-0.074,0.114-0.154,0.159-0.242\r\n\t\t\t\tc-0.012-0.066-0.116-0.088-0.159-0.127c-0.064-0.08-0.127-0.161-0.191-0.241c-0.048-0.033-0.104,0.008-0.165-0.006\r\n\t\t\t\tc-0.089-0.049-0.178-0.098-0.267-0.146c-0.071-0.049-0.182-0.161-0.21-0.248c-0.021-0.066,0.011-0.151-0.013-0.203\r\n\t\t\t\tc-0.015-0.018-0.024-0.019-0.057-0.019c0.044-0.068,0.068-0.116,0.057-0.229h-0.006c-0.045,0.057-0.089,0.115-0.133,0.172\r\n\t\t\t\tc-0.113,0.09-0.215,0.143-0.311,0.267c-0.023,0.045-0.047,0.089-0.07,0.134c-0.035,0.031-0.051,0.02-0.07,0.07\r\n\t\t\t\tc-0.042,0.011-0.063,0.014-0.095-0.006c-0.002,0.011-0.004,0.021-0.006,0.032c-0.074,0.026-0.394,0.021-0.477-0.019\r\n\t\t\t\tc-0.019,0.017-0.023,0.015-0.032,0.044c-0.073,0.007-0.13-0.005-0.203-0.006c0.013-0.058-0.015-0.063-0.064-0.076\r\n\t\t\t\tc-0.037-0.089,0.072-0.127,0.076-0.216c0.001-0.028-0.017-0.268-0.025-0.28c-0.018-0.025-0.035-0.018-0.051-0.057\r\n\t\t\t\tc-0.015-0.002-0.03-0.004-0.044-0.006c-0.083,0.059-0.119,0.288-0.07,0.407c0.007,0.07,0.01,0.094-0.051,0.089\r\n\t\t\t\tc-0.045-0.059-0.108-0.211-0.114-0.311c-0.034-0.027-0.036-0.039-0.076-0.032c-0.033-0.107-0.058-0.116-0.013-0.229\r\n\t\t\t\tc-0.013-0.021-0.026-0.042-0.038-0.064c0.02-0.031,0.039-0.029,0.045-0.076c-0.062-0.082-0.205-0.072-0.248-0.172\r\n\t\t\t\tc-0.036-0.028-0.026-0.027-0.006-0.064c-0.037-0.017-0.058-0.015-0.114-0.013c-0.07-0.185-0.159-0.356-0.21-0.553\r\n\t\t\t\tc-0.036,0.009-0.072,0.017-0.108,0.026c-0.013-0.006-0.026-0.013-0.038-0.019c0.021-0.026,0.042-0.051,0.063-0.076h0.044\r\n\t\t\t\tc-0.008-0.04-0.017-0.08-0.025-0.121c0.026-0.034,0.169-0.04,0.235-0.038c0.055-0.054,0.047-0.118,0.127-0.152h0.019\r\n\t\t\t\tc-0.001,0.041,0.001,0.074,0.019,0.095c0.038,0.072,0.165,0.061,0.242,0.032c0.043,0.069,0.143,0.143,0.172,0.21v0.102\r\n\t\t\t\tc0.031,0.082,0.136,0.259,0.191,0.337c0.064,0.091,0.221,0.082,0.311,0.146c0.047,0.057,0.093,0.115,0.14,0.172\r\n\t\t\t\tc0.106,0.063,0.211,0.06,0.337,0.102c0.07,0.023,0.11,0.086,0.197,0.095c0.042-0.036,0.186-0.121,0.197-0.172\r\n\t\t\t\tc0.098-0.035,0.203-0.075,0.324-0.044c0.05,0.012,0.038,0.034,0.089,0.038c0.015,0.043,0.01,0.1,0.032,0.159\r\n\t\t\t\tc0.026,0.069,0.095,0.113,0.095,0.21c0.068,0.011,0.135,0.056,0.184,0.076h0.254c0.025,0.023,0.051,0.047,0.076,0.07\r\n\t\t\t\tc0.142,0.002,0.284,0.004,0.426,0.007c0.075,0.02,0.118,0.067,0.216,0.083c0.131,0.021,0.254-0.027,0.356-0.044h0.286\r\n\t\t\t\tc0.057-0.021,0.1-0.057,0.191-0.07c0.08,0.167,0.549-0.018,0.686-0.025c0.074,0.053,0.075,0.102,0.07,0.223\r\n\t\t\t\tc0.047,0.011,0.093,0.021,0.14,0.032c0.023,0.068,0.047,0.136,0.07,0.203c0.05,0.067,0.114,0.032,0.191,0.076\r\n\t\t\t\tc0.03,0.042,0.059,0.085,0.089,0.127c0.103,0.123,0.38,0.229,0.597,0.153c0.003,0.052-0.02,0.064-0.051,0.095\r\n\t\t\t\tc-0.142,0.145-0.214,0.023-0.369,0.076h-0.013c0.049,0.113,0.433,0.501,0.572,0.508c0.04-0.015,0.081-0.03,0.121-0.044\r\n\t\t\t\tc0.145-0.047,0.383-0.127,0.254-0.299c0.008-0.03,0.017-0.059,0.025-0.089c0.032-0.019,0.083-0.021,0.14-0.019\r\n\t\t\t\tc-0.019,0.072-0.014,0.207,0.013,0.286c0.016,0.046,0.116,0.085,0.102,0.146c-0.015,0.062-0.095,0.113-0.102,0.191\r\n\t\t\t\tc0.027,0.146,0.055,0.292,0.083,0.438c0.034,0.205,0.068,0.411,0.102,0.616c0.07,0.251,0.21,0.444,0.305,0.655\r\n\t\t\t\tc0.065,0.143,0.116,0.299,0.165,0.457c0.021,0.079,0.042,0.157,0.064,0.235c0.038,0.055,0.076,0.11,0.114,0.165\r\n\t\t\t\tc0.074,0.163,0.148,0.326,0.222,0.489c0.032,0.112,0.064,0.225,0.095,0.337c0.059,0.064,0.119,0.127,0.178,0.191\r\n\t\t\t\tc0.09-0.003,0.218-0.064,0.248-0.127c0.026-0.054,0.004-0.106,0.038-0.146c0.083-0.028,0.165-0.055,0.248-0.083\r\n\t\t\t\tc-0.013-0.027-0.034-0.042-0.057-0.057c0.025-0.072,0.051-0.144,0.076-0.216c0.037-0.022,0.108-0.021,0.172-0.019\r\n\t\t\t\tc0.023-0.118-0.033-0.248-0.019-0.362c0.025-0.213,0.286-0.458,0.108-0.655c0.057-0.141-0.035-0.296,0-0.451\r\n\t\t\t\tc0.021-0.047,0.042-0.093,0.064-0.14c0.06-0.048,0.118-0.061,0.191-0.019c0.048-0.031,0.078-0.105,0.095-0.165\r\n\t\t\t\tc0.058-0.032,0.17-0.01,0.229-0.051c0.065-0.045,0.048-0.168,0.108-0.216c0.063-0.032,0.127-0.064,0.191-0.095\r\n\t\t\t\tc0.072-0.046,0.111-0.143,0.178-0.184c0.046-0.028,0.088-0.032,0.127-0.064c0.097-0.119,0.195-0.237,0.292-0.356\r\n\t\t\t\tc0.078-0.054,0.207-0.041,0.292-0.095c0.106-0.067,0.148-0.181,0.229-0.273c-0.013-0.045-0.025-0.089-0.038-0.134\r\n\t\t\t\tc0.071-0.072,0.179-0.083,0.267-0.14c0.032-0.034,0.064-0.068,0.095-0.102c0.029,0.022,0.05,0.059,0.057,0.102\r\n\t\t\t\tc0.013,0.004,0.025,0.008,0.038,0.013c0.017-0.03,0.034-0.059,0.051-0.089c0.002-0.004,0.004-0.008,0.006-0.013\r\n\t\t\t\tc0.034,0.02,0.042,0.065,0.051,0.108h0.089c-0.005-0.031-0.002-0.042,0.006-0.07c0.019,0.01,0.038,0.021,0.057,0.032\r\n\t\t\t\tc0.013-0.021,0.025-0.042,0.038-0.063c0.008-0.006,0.017-0.013,0.025-0.019c0.009,0.021,0.017,0.043,0.026,0.064h0.038\r\n\t\t\t\tc0.026-0.034,0.046-0.064,0.051-0.121c0.004-0.002,0.008-0.004,0.013-0.006c0.021,0.038,0.042,0.076,0.063,0.115h0.045\r\n\t\t\t\tc0.016-0.069,0.027-0.078,0.095-0.095c0.022-0.07-0.005-0.129-0.032-0.184c-0.002-0.034-0.003-0.067,0.013-0.083\r\n\t\t\t\tc0.004-0.004,0.009-0.009,0.013-0.013c0.032,0.042,0.064,0.085,0.095,0.127c0.07-0.001,0.1-0.022,0.146-0.044\r\n\t\t\t\tc0.175,0.137,0.122,0.639,0.362,0.705c0.022,0.006,0.054-0.002,0.076,0.006v0.083c0.053,0.035,0.082,0.001,0.127,0.025\r\n\t\t\t\tc0.068,0.037,0.107,0.146,0.133,0.229v0.006c-0.034,0.006-0.068,0.013-0.102,0.019c0.028,0.031,0.065,0.053,0.108,0.07\r\n\t\t\t\tc0.011-0.019,0.021-0.038,0.032-0.057c0.004-0.002,0.009-0.004,0.013-0.006c0.079,0.128,0.174,0.362,0.146,0.578\r\n\t\t\t\tc-0.017,0.129-0.098,0.22-0.102,0.362c0.015,0.011,0.03,0.021,0.044,0.032c0.047-0.038,0.073-0.066,0.153-0.076\r\n\t\t\t\tc-0.006,0.025-0.013,0.051-0.019,0.076c0.011,0.011,0.021,0.021,0.032,0.032h0.025c0.029-0.023,0.031-0.041,0.083-0.044v0.057\r\n\t\t\t\tc0.08,0.073,0.094-0.079,0.153-0.121c0.184-0.132,0.273-0.031,0.305-0.343h0.025c0.085,0.062,0.089,0.235,0.197,0.267\r\n\t\t\t\tc0.026,0.18,0.051,0.36,0.076,0.54c0.047,0.164,0.151,0.309,0.203,0.451c0.053,0.144,0.03,0.29,0.025,0.432\r\n\t\t\t\tc0.019,0.01,0.036,0.013,0.07,0.013c-0.033,0.078-0.145,0.34-0.114,0.413c0.017,0.013,0.034,0.025,0.051,0.038\r\n\t\t\t\tc-0.064,0.162-0.161,0.391-0.102,0.566c0.025-0.011,0.051-0.021,0.076-0.032c0.085,0.091,0.166,0.136,0.21,0.273\r\n\t\t\t\tc0.02,0.008,0.034,0.009,0.064,0c0.043,0.057,0.051,0.099,0.051,0.197c0.011,0.006,0.021,0.013,0.032,0.019\r\n\t\t\t\tc0.034,0.043,0.078,0.03,0.121,0.006c0.004,0.004,0.008,0.008,0.013,0.013c-0.018,0.139-0.008,0.3,0.044,0.445\r\n\t\t\t\tc0.025,0.047,0.051,0.093,0.076,0.14c0.009,0.069-0.024,0.13,0.013,0.191c0.04,0.034,0.08,0.068,0.121,0.102\r\n\t\t\t\tc0.016,0.022,0.022,0.056,0.031,0.088C55.358,48.795,44.764,58,32,58z M20.929,9.847c0.001,0,0.002,0,0.003,0\r\n\t\t\t\tc0.002,0.003,0.004,0.006,0.006,0.009c-0.001,0-0.002,0-0.003,0C20.933,9.853,20.931,9.85,20.929,9.847z M43.915,25.038\r\n\t\t\t\tc-0.028,0.012-0.031-0.019-0.07-0.013c-0.034,0.011-0.068,0.021-0.102,0.032c-0.004-0.002-0.008-0.004-0.013-0.006\r\n\t\t\t\tc-0.002-0.023-0.004-0.047-0.006-0.07c-0.013-0.004-0.026-0.008-0.038-0.013c-0.004,0.017-0.008,0.034-0.013,0.051\r\n\t\t\t\tc-0.048-0.011-0.054-0.013-0.108-0.006c-0.017-0.034-0.034-0.068-0.051-0.102c-0.067,0.075-0.078,0.271-0.044,0.369\r\n\t\t\t\tc0.039,0.021,0.133,0.008,0.216,0.006c-0.015,0.019-0.03,0.038-0.044,0.057c0.004,0.013,0.008,0.025,0.013,0.038\r\n\t\t\t\tc0.014,0.023,0.042,0.036,0.07,0.045v0.019c-0.045-0.004-0.089-0.008-0.133-0.013c-0.011,0.015-0.021,0.03-0.032,0.045v0.044\r\n\t\t\t\tc0.042-0.029,0.066-0.018,0.127-0.006c0.024,0.067,0.085,0.076,0.114,0.133c0.014,0.054-0.038,0.118-0.038,0.203\r\n\t\t\t\tc0,0.04-0.022,0.09-0.019,0.108c0.018,0.102,0.109,0.354,0.025,0.419c-0.061,0.047-0.192,0.025-0.28,0.045\r\n\t\t\t\tc-0.314,0.07-0.748,0.1-0.858-0.197c-0.119-0.032-0.251-0.062-0.35-0.095c-0.052-0.198,0.057-0.392,0.057-0.559\r\n\t\t\t\tc0.006-0.004,0.013-0.008,0.019-0.013c0.017,0.015,0.019,0.017,0.025,0.044c0.006,0.004,0.013,0.008,0.019,0.013\r\n\t\t\t\tc0.006-0.03,0.013-0.059,0.019-0.089c0.02-0.009,0.021-0.011,0.044-0.006c-0.012-0.168,0.011-0.45,0.28-0.337h0.006\r\n\t\t\t\tc-0.002-0.011-0.004-0.021-0.006-0.032c-0.056-0.128-0.19-0.036-0.242-0.108c-0.03-0.042-0.076-0.085-0.095-0.127\r\n\t\t\t\tc-0.023-0.049-0.009-0.096-0.038-0.133c-0.041-0.053-0.106-0.142-0.159-0.184c-0.019-0.006-0.038-0.013-0.057-0.019\r\n\t\t\t\tc-0.05-0.07-0.077-0.16-0.14-0.216c-0.015-0.004-0.03-0.009-0.044-0.013c-0.031-0.047,0.006-0.079-0.044-0.108\r\n\t\t\t\tc-0.057-0.081-0.018-0.217,0.019-0.311v-0.019H41.92c-0.011,0.038-0.021,0.076-0.032,0.114h-0.006\r\n\t\t\t\tc-0.001-0.113-0.014-0.227-0.114-0.286c-0.032-0.019-0.075-0.01-0.089-0.045v-0.032c0.004-0.075,0.083-0.081,0.114-0.127\r\n\t\t\t\tc0.062-0.092,0.092-0.195,0.121-0.286c0.004-0.006,0.008-0.013,0.013-0.019c0.105,0.051,0.2-0.03,0.28-0.076\r\n\t\t\t\tc0.015,0.008,0.03,0.017,0.044,0.025c0.016-0.02,0.02-0.029,0.019-0.07c0.102-0.023,0.134-0.121,0.216-0.153\r\n\t\t\t\tc0.04-0.002,0.081-0.004,0.121-0.006c0.13-0.041,0.242-0.21,0.413-0.197c0.096,0.007,0.137,0.073,0.21,0.089\r\n\t\t\t\tc0.077,0.017,0.097-0.038,0.133-0.051c0.057,0.013,0.114,0.025,0.172,0.038c0.015,0.025,0.03,0.051,0.045,0.076\r\n\t\t\t\tc-0.017,0.017-0.034,0.034-0.051,0.051c0.047,0.164,0.01,0.207-0.083,0.33c0.004,0.058,0.07,0.083,0.114,0.095\r\n\t\t\t\tc0.002,0.004,0.004,0.008,0.006,0.013c-0.138-0.013-0.275-0.025-0.413-0.038c-0.038,0.007-0.047,0.027-0.102,0.026\r\n\t\t\t\tc-0.013,0.034-0.025,0.068-0.038,0.102c-0.029,0.036-0.057,0.02-0.076,0.076c0.027,0.039,0.064,0.068,0.114,0.083\r\n\t\t\t\tc0.006,0.008,0.013,0.017,0.019,0.026c-0.061,0.044-0.214-0.025-0.337-0.019c-0.006,0.006-0.013,0.013-0.019,0.019v0.083\r\n\t\t\t\tc0.039,0.026,0.133,0.043,0.184,0.051c0.028,0.155,0.139,0.203,0.133,0.368h0.089c0.037,0.027,0.071,0.069,0.089,0.114\r\n\t\t\t\tc0.089,0.012,0.165-0.009,0.235,0.064c-0.034,0.064-0.07,0.143-0.095,0.203c0.023,0.038-0.002,0.077,0.019,0.121\r\n\t\t\t\tc0.013,0.006,0.026,0.013,0.038,0.019c-0.002,0.019-0.004,0.038-0.006,0.057c0.013,0.029,0.055,0.079,0.076,0.114v0.013\r\n\t\t\t\tc0.027-0.072,0.011-0.226,0.032-0.305c0.087-0.015,0.173-0.031,0.273-0.025c0.015,0.056,0.023,0.174,0.051,0.216\r\n\t\t\t\tc0.046,0.071,0.146,0.075,0.197,0.178c-0.015,0.031-0.026,0.037-0.057,0.051c-0.041-0.008-0.042-0.024-0.083-0.032\r\n\t\t\t\tC43.898,24.987,43.907,25.012,43.915,25.038z M35.799,24.777c-0.004,0.004-0.008,0.008-0.013,0.013\r\n\t\t\t\tc-0.025-0.022-0.041-0.037-0.083-0.045c0.004-0.011,0.009-0.021,0.013-0.032c0.017,0.008,0.034,0.017,0.051,0.025\r\n\t\t\t\tC35.788,24.751,35.789,24.757,35.799,24.777z M57.643,35.618c-0.368,0.016-0.324-0.225-0.388-0.502\r\n\t\t\t\tc-0.013,0.004-0.025,0.008-0.038,0.013c-0.056-0.044-0.033-0.145-0.051-0.222c-0.063,0.004-0.119,0.023-0.178,0.013\r\n\t\t\t\tc-0.153-0.249,0.124-0.633,0.191-0.826c-0.004-0.053-0.009-0.106-0.013-0.159c0.02-0.082,0.062-0.114,0.025-0.216\r\n\t\t\t\tc0.092-0.071,0.145-0.061,0.292-0.051c-0.006,0.076-0.013,0.152-0.019,0.229c0.058,0.001,0.08,0.024,0.121,0.032\r\n\t\t\t\tc0.078,0.014,0.107-0.054,0.191-0.006c0.038,0.04,0.076,0.08,0.115,0.121c0.002,0.001,0.004,0.001,0.006,0.002\r\n\t\t\t\tc-0.043,0.556-0.111,1.104-0.189,1.65C57.688,35.667,57.663,35.644,57.643,35.618z M8.363,28.628\r\n\t\t\t\tc-0.002-0.006-0.004-0.013-0.006-0.019v0.019H8.363z M8.35,28.59c-0.001-0.011-0.009-0.009-0.011-0.018\r\n\t\t\t\tc0.001,0.006,0.003,0.012,0.004,0.018H8.35z M42.555,41.414c-0.037-0.058-0.107-0.06-0.14-0.133\r\n\t\t\t\tc-0.068-0.054-0.061-0.042-0.127,0.013c0.009,0.1,0.008,0.236-0.07,0.299c-0.044,0.036-0.08,0.04-0.102,0.102\r\n\t\t\t\tc-0.039-0.014-0.048-0.034-0.063-0.07c-0.019-0.002-0.038-0.004-0.057-0.006c-0.003,0.068,0.015,0.109,0.038,0.165\r\n\t\t\t\tc-0.004,0.011-0.008,0.021-0.013,0.032c-0.024,0.016-0.04,0.025-0.083,0.025c-0.002,0.004-0.004,0.009-0.006,0.013\r\n\t\t\t\tc0.003,0.044,0.026,0.059,0.045,0.102c-0.023,0.025-0.047,0.051-0.07,0.076c-0.039-0.004-0.04-0.009-0.051-0.038H41.85\r\n\t\t\t\tc-0.032,0.028-0.063,0.055-0.095,0.083c0.008,0.034,0.022,0.045,0.038,0.07c-0.013,0.009-0.025,0.017-0.038,0.026\r\n\t\t\t\tc-0.024,0.01-0.027-0.009-0.064-0.019c-0.047,0.029-0.093,0.059-0.14,0.089c0.004,0.025,0.009,0.051,0.013,0.076\r\n\t\t\t\tc-0.071,0.017-0.121-0.054-0.21-0.013c-0.017,0.019-0.034,0.038-0.051,0.057c-0.04,0.02-0.074-0.013-0.108-0.013\r\n\t\t\t\tc-0.025,0.019-0.051,0.038-0.076,0.057c-0.044,0.002-0.089,0.004-0.133,0.006c0,0.213-0.083,0.245-0.14,0.381\r\n\t\t\t\tc-0.025,0.1,0.069,0.325,0.121,0.388c-0.015,0.032-0.03,0.064-0.044,0.096c0.032,0.038,0.064,0.076,0.095,0.114\r\n\t\t\t\tc0.03,0.115-0.166,0.512-0.216,0.559c-0.025,0.009-0.051,0.017-0.076,0.025c-0.045,0.032-0.102,0.233-0.089,0.311\r\n\t\t\t\tc0.053,0.097,0.106,0.195,0.159,0.292c-0.013,0.049-0.025,0.097-0.038,0.146c-0.031,0.144,0.06,0.157,0.083,0.229\r\n\t\t\t\tc0.016,0.051-0.006,0.092,0.019,0.127c0.083,0.119,0.262,0.084,0.343,0.21c0.137-0.008,0.17-0.09,0.286-0.121\r\n\t\t\t\tc0.07-0.009,0.14-0.017,0.21-0.026c0.132-0.081,0.205-0.497,0.261-0.674c0.15-0.485,0.301-0.97,0.451-1.455\r\n\t\t\t\tc0.028-0.095-0.011-0.189,0.019-0.299c0.026-0.093,0.124-0.146,0.146-0.254c-0.047-0.072-0.09-0.157-0.089-0.273\r\n\t\t\t\tc0.011-0.006,0.021-0.013,0.032-0.019c0.004-0.004,0.008-0.009,0.013-0.013c0.029,0.053,0.07,0.133,0.121,0.165\r\n\t\t\t\tc0.035-0.029,0.114-0.123,0.102-0.191c-0.027-0.053-0.055-0.106-0.083-0.159C42.622,41.831,42.634,41.517,42.555,41.414z\r\n\t\t\t\t M10.068,26.772c0.002,0.004,0.003,0.011,0.005,0.016v-0.016H10.068z M8.337,28.565c0,0.001-0.001,0.002-0.001,0.002\r\n\t\t\t\tc0.001,0.003,0.003,0.003,0.003,0.005C8.339,28.57,8.338,28.567,8.337,28.565z M8.356,28.609\r\n\t\t\t\tc-0.002-0.006-0.004-0.013-0.006-0.019v0.019H8.356z M14.998,24.644c-0.002-0.004-0.004-0.009-0.006-0.013\r\n\t\t\t\tc-0.021-0.006-0.042-0.013-0.064-0.019c-0.026,0.019-0.046,0.037-0.057,0.07c-0.004,0.002-0.009,0.004-0.013,0.006\r\n\t\t\t\tc-0.032-0.041-0.059-0.112-0.076-0.165v-0.007c0.122-0.058,0.118-0.025,0.216-0.114V24.37c-0.015-0.006-0.03-0.013-0.045-0.019\r\n\t\t\t\tc-0.042,0.02-0.082,0.042-0.14,0.045c-0.035-0.024-0.077-0.055-0.095-0.095c-0.006-0.006-0.013-0.013-0.019-0.019\r\n\t\t\t\tc0.049-0.04,0.097-0.081,0.146-0.121c0.013-0.015,0.026-0.03,0.038-0.045c-0.085-0.053-0.196-0.098-0.331-0.083\r\n\t\t\t\tc-0.013,0.023-0.025,0.047-0.038,0.07c-0.139,0.028-0.257-0.06-0.343-0.127v-0.019c0.036-0.036,0.072-0.072,0.108-0.108\r\n\t\t\t\tc-0.044-0.017-0.089-0.034-0.133-0.051c-0.111,0.022-0.1,0.134-0.21,0.159c-0.006-0.249,0.344-0.399,0.241-0.604\r\n\t\t\t\tc0.046-0.013,0.102-0.029,0.14-0.045c0.002-0.008,0.004-0.017,0.006-0.025c-0.004-0.011-0.009-0.021-0.013-0.032\r\n\t\t\t\tc-0.013-0.004-0.025-0.008-0.038-0.013c-0.078,0.021-0.157,0.042-0.235,0.064c-0.19,0.122-0.428,0.489-0.508,0.724\r\n\t\t\t\tc0.032,0.038,0.063,0.076,0.095,0.114c-0.085,0.09-0.178,0.003-0.235,0.165c-0.004,0.008-0.008,0.017-0.013,0.025\r\n\t\t\t\tc0.049,0.013,0.098,0.025,0.146,0.038c-0.09,0.09-0.264,0.111-0.324,0.229c-0.016,0.029,0.012,0.075,0.026,0.114\r\n\t\t\t\tc0.097-0.011,0.195-0.021,0.292-0.032c0.121,0.017,0.242,0.034,0.362,0.051c0.11,0.02,0.23-0.003,0.248-0.083\r\n\t\t\t\tc0.034-0.004,0.068-0.008,0.102-0.013v0.096c0.004,0.006,0.008,0.013,0.013,0.019c0.013-0.002,0.025-0.004,0.038-0.006\r\n\t\t\t\tc0.033-0.011,0.042-0.037,0.051-0.07c0.057,0.006,0.114,0.013,0.172,0.019v0.013c-0.121,0.055-0.153,0.168-0.305,0.21\r\n\t\t\t\tc-0.012,0.026-0.007,0.015,0,0.045c0.033,0.016,0.082,0.021,0.133,0.019c0.096-0.105,0.276-0.194,0.343-0.311\r\n\t\t\t\tc0.011,0.004,0.021,0.008,0.032,0.013c0.021,0.028,0.042,0.055,0.064,0.083c-0.002,0.068-0.031,0.109-0.064,0.146\r\n\t\t\t\tc0.002,0.017,0.004,0.034,0.006,0.051c0.017,0.002,0.034,0.004,0.051,0.006c0.025-0.021,0.051-0.042,0.076-0.063\r\n\t\t\t\tc0.004,0.036,0.008,0.072,0.013,0.108c0.053,0.015,0.106,0.03,0.159,0.045c0.031-0.093,0.108-0.194,0.095-0.299\r\n\t\t\t\tC14.985,24.767,14.974,24.733,14.998,24.644z M30.531,24.606c-0.011,0.008-0.021,0.017-0.032,0.025\r\n\t\t\t\tc0.014,0.032,0.014,0.022,0.057,0.019v0.006c-0.011,0.011-0.021,0.021-0.032,0.032c-0.002,0.004-0.004,0.008-0.006,0.013\r\n\t\t\t\tc0.021,0.009,0.042,0.017,0.063,0.026c-0.011,0.015-0.021,0.03-0.032,0.044c0.011,0.009,0.021,0.017,0.032,0.025\r\n\t\t\t\tc0.019,0.002,0.038,0.004,0.057,0.006v0.032c0.013,0.002,0.025,0.004,0.038,0.006c0.109-0.111,0.08-0.372,0.076-0.559\r\n\t\t\t\tc-0.008-0.006-0.017-0.013-0.025-0.019c-0.004,0.002-0.008,0.004-0.013,0.006c-0.004,0.03-0.008,0.059-0.013,0.089\r\n\t\t\t\tc-0.002,0.003-0.171,0.074-0.21,0.114c0.001,0.025,0.001,0.024,0.019,0.044c-0.009,0.007-0.017,0.013-0.026,0.019\r\n\t\t\t\tC30.493,24.58,30.509,24.579,30.531,24.606z M35.215,27.014c0.142-0.008,0.284-0.017,0.426-0.025\r\n\t\t\t\tc0.017-0.028,0.025-0.06,0.032-0.102c-0.045,0.028-0.097,0.035-0.146,0.064c-0.008-0.004-0.017-0.009-0.025-0.013\r\n\t\t\t\tc0.004-0.017,0.009-0.034,0.013-0.051c-0.002-0.002-0.004-0.004-0.006-0.006c-0.098,0.011-0.135,0.002-0.21-0.032\r\n\t\t\t\tc-0.07,0.006-0.14,0.013-0.21,0.019c-0.02-0.019-0.014-0.025-0.051-0.032c0.006-0.009,0.013-0.017,0.019-0.026\r\n\t\t\t\tc-0.004-0.006-0.008-0.013-0.013-0.019c-0.015,0.008-0.03,0.017-0.044,0.026c-0.034-0.012-0.056-0.014-0.076-0.038v-0.013\r\n\t\t\t\tc-0.011,0.013-0.01,0.012-0.013,0.038h-0.032c-0.006,0.032-0.013,0.063-0.019,0.095c0.087,0.039,0.26,0.031,0.356,0.07V27.014z\r\n\t\t\t\t M32.367,26.423c0.035-0.028,0.056-0.073,0.095-0.095c0.013-0.037-0.026-0.055-0.045-0.095c-0.036-0.095,0.072-0.224,0.102-0.292\r\n\t\t\t\tv-0.006c-0.058-0.014-0.12,0.013-0.172,0.025c-0.214,0.053-0.3,0.057-0.458-0.044c-0.091,0.081-0.209,0.007-0.254,0.152\r\n\t\t\t\tc0.043,0.085,0.104,0.06,0.191,0.102C32.004,26.254,32.172,26.367,32.367,26.423z M21.217,10.482\r\n\t\t\t\tc0.035-0.019,0.07-0.038,0.105-0.057c0.055-0.019,0.109-0.037,0.164-0.056c0.003-0.008,0.007-0.017,0.01-0.025\r\n\t\t\t\tc-0.104,0.008-0.218,0.043-0.302,0.036c-0.066,0.038-0.132,0.076-0.197,0.114c-0.025,0.014-0.069,0.026-0.071,0.048\r\n\t\t\t\tc0.004,0.002,0.008,0.004,0.013,0.006c0.045-0.002,0.096-0.023,0.138-0.036C21.123,10.502,21.17,10.492,21.217,10.482z\r\n\t\t\t\t M16.682,18.341c-0.01,0.031-0.094,0.043-0.109,0.087c0.001,0.002,0.001,0.003,0.002,0.005c0.076-0.011,0.12-0.032,0.157-0.06\r\n\t\t\t\tc0.001-0.015-0.005-0.022-0.016-0.032C16.705,18.339,16.7,18.338,16.682,18.341z M30.575,25.66\r\n\t\t\t\tc0.019-0.025,0.038-0.051,0.057-0.076c0.054-0.026,0.099,0,0.146,0.013c0.02-0.058,0.068-0.112,0.057-0.197\r\n\t\t\t\tc-0.006-0.047-0.013-0.093-0.019-0.14c0.006-0.036,0.036-0.069,0.044-0.095c0.031-0.095-0.097-0.241-0.153-0.26\r\n\t\t\t\tc-0.085,0.08-0.164,0.087-0.311,0.114c-0.004,0.004-0.008,0.008-0.013,0.013c0.017,0.081,0.077,0.106,0.095,0.197\r\n\t\t\t\tC30.517,25.416,30.356,25.615,30.575,25.66z M30.512,36.559c-0.028,0.032-0.044,0.092-0.089,0.108v0.057\r\n\t\t\t\tc0.013,0.004,0.025,0.008,0.038,0.013c0.082-0.01,0.066-0.094,0.127-0.127C30.57,36.578,30.553,36.568,30.512,36.559z\r\n\t\t\t\t M26.304,19.147c0.035-0.024,0.05-0.049,0.076-0.083c0.002-0.004,0.004-0.009,0.006-0.013c0.025,0.017,0.051,0.034,0.076,0.051\r\n\t\t\t\tc-0.033,0.09-0.136,0.211-0.089,0.305v0.013c0.082-0.047,0.165-0.094,0.235-0.152h0.025c0.006,0.028,0.013,0.055,0.019,0.083\r\n\t\t\t\tc-0.02,0.027-0.04,0.046-0.076,0.057c-0.009,0.057,0.008,0.105,0.051,0.127c0.034,0.062-0.106,0.181-0.121,0.28\r\n\t\t\t\tc0.051,0.013,0.102,0.025,0.153,0.038c0.024-0.018,0.033-0.026,0.038-0.064c0.038,0.011,0.076,0.021,0.114,0.032\r\n\t\t\t\tc0.138-0.008,0.086-0.079,0.267-0.032c-0.045,0.057-0.103,0.092-0.121,0.178c0.025,0.053,0.055,0.069,0.089,0.108\r\n\t\t\t\tc0.036-0.007,0.072-0.013,0.108-0.019h0.006c-0.005,0.156-0.076,0.23-0.013,0.356v0.006c-0.215,0.003-0.415,0.024-0.489,0.172\r\n\t\t\t\tv0.006h0.133v0.013c0.023,0.036,0.008,0.103,0.006,0.159c-0.078,0.113-0.267,0.119-0.299,0.178\r\n\t\t\t\tc-0.011,0.011-0.021,0.021-0.032,0.032c0.025,0.021,0.051,0.042,0.076,0.064c0.085,0.002,0.169,0.004,0.254,0.006\r\n\t\t\t\tc0.061,0.03,0.123,0.059,0.184,0.089h0.013c0.09-0.005,0.137-0.049,0.203-0.076c-0.029,0.06-0.086,0.099-0.089,0.172\r\n\t\t\t\tc-0.131,0.033-0.232-0.046-0.343,0.006c-0.036,0.041-0.02,0.083-0.095,0.07c-0.013,0.136-0.232,0.282-0.35,0.318\r\n\t\t\t\tc-0.002,0.004-0.004,0.009-0.006,0.013c0.032,0.009,0.064,0.017,0.095,0.026c0.015,0.015,0.03,0.03,0.045,0.045\r\n\t\t\t\tc0.052-0.069,0.127-0.122,0.216-0.153c0.045,0.021,0.07,0.005,0.095-0.013c0.108,0.059,0.203,0.111,0.21-0.089\r\n\t\t\t\tc0.2-0.024,0.253-0.004,0.439,0.013c-0.004-0.015-0.009-0.03-0.013-0.044c0.085-0.013,0.17-0.025,0.254-0.038\r\n\t\t\t\tc0.048-0.007,0.063,0.026,0.095,0.032c0.042-0.011,0.085-0.021,0.127-0.032c0.061,0.009,0.123,0.017,0.184,0.025\r\n\t\t\t\tc0.074-0.014,0.1-0.073,0.203-0.064c0.004-0.059,0.085-0.077,0.133-0.089v-0.089h-0.013c-0.014-0.009-0.237-0.029-0.299-0.032\r\n\t\t\t\tV21.13c0.107-0.031,0.369-0.204,0.4-0.299c-0.006-0.055-0.013-0.11-0.019-0.165c-0.087-0.068-0.271-0.169-0.369-0.032\r\n\t\t\t\tc-0.034-0.007-0.068-0.013-0.102-0.019c0.135-0.201,0.055-0.175-0.076-0.318c-0.002-0.002,0.009-0.153-0.025-0.203\r\n\t\t\t\tc-0.049-0.064-0.097-0.127-0.146-0.191c-0.055-0.03-0.115-0.006-0.153-0.051c-0.069-0.084-0.056-0.196-0.095-0.299\r\n\t\t\t\tc-0.031-0.053-0.237-0.227-0.318-0.222c-0.131,0.007-0.14,0.075-0.305,0.006c-0.002-0.004-0.004-0.008-0.006-0.013\r\n\t\t\t\tc0.123,0.003,0.258-0.01,0.311-0.076c0.004-0.002,0.008-0.004,0.013-0.006c-0.034-0.019-0.068-0.038-0.102-0.057\r\n\t\t\t\tc-0.002-0.004-0.004-0.009-0.006-0.013c0.198-0.003,0.277-0.285,0.331-0.426c0.013-0.025,0.001-0.021-0.013-0.051\r\n\t\t\t\tc-0.1-0.073-0.46-0.024-0.623-0.025c-0.006-0.009-0.013-0.017-0.019-0.025c0.017-0.197,0.253-0.175,0.324-0.311\r\n\t\t\t\tc0.035-0.032,0.013-0.032-0.006-0.07c-0.129-0.052-0.288,0.077-0.407,0.045c-0.038-0.023-0.076-0.047-0.114-0.07\r\n\t\t\t\tc-0.019,0.025-0.038,0.051-0.057,0.076c0.019,0.03,0.038,0.059,0.057,0.089c-0.04,0.013-0.08,0.025-0.121,0.038\r\n\t\t\t\tc0.025,0.051,0.051,0.102,0.076,0.152c-0.05,0.002-0.083-0.003-0.127-0.019c-0.039,0.01-0.054,0.039-0.07,0.07\r\n\t\t\t\tc0.027,0.032,0.055,0.064,0.083,0.095c-0.019,0.03-0.061,0.028-0.076,0.051c0.009,0.04,0.017,0.08,0.026,0.121\r\n\t\t\t\tc0,0-0.102,0.182-0.114,0.203C26.262,19.126,26.283,19.136,26.304,19.147z M23.552,15.69c0.122,0.059,0.229,0.003,0.261-0.114\r\n\t\t\t\tc0.002-0.025,0.004-0.051,0.006-0.076c0.061-0.015,0.123-0.03,0.184-0.045c0.041-0.073,0.083-0.252,0.019-0.337\r\n\t\t\t\tc-0.041-0.048-0.155-0.016-0.222-0.038c-0.027-0.017-0.055-0.034-0.083-0.051c-0.016-0.036-0.003-0.092,0.013-0.134\r\n\t\t\t\tc-0.008-0.015-0.017-0.03-0.025-0.045c-0.139-0.061-0.251-0.035-0.311-0.172c-0.039-0.024-0.106-0.033-0.172-0.032v0.159\r\n\t\t\t\tc-0.129,0.091-0.311,0.046-0.483,0.025c0.022,0.049,0.05,0.087,0.044,0.146c-0.091-0.002-0.162-0.057-0.191-0.121\r\n\t\t\t\tc-0.062-0.048-0.149-0.012-0.216,0.038c0.011,0.034,0.021,0.068,0.032,0.102v0.007c-0.017,0.006-0.034,0.013-0.051,0.019\r\n\t\t\t\tc-0.074-0.049-0.145-0.122-0.178-0.21h-0.006c-0.017,0.011-0.034,0.021-0.051,0.032c-0.031,0.052-0.008,0.145-0.006,0.229\r\n\t\t\t\tc-0.045,0.048-0.112,0.04-0.172,0.076c-0.032,0.029-0.064,0.059-0.095,0.089c-0.034-0.049-0.068-0.097-0.102-0.146\r\n\t\t\t\tc-0.02-0.043,0.074-0.098,0.057-0.178c-0.035-0.162-0.262-0.199-0.413-0.241c-0.015,0.017-0.03,0.034-0.044,0.051\r\n\t\t\t\tc-0.004,0.004-0.008,0.008-0.013,0.013c0.042,0.031,0.085,0.071,0.102,0.127v0.006c-0.138,0.096-0.242-0.171-0.324,0.006\r\n\t\t\t\tc0.025,0.034,0.051,0.068,0.076,0.102c0.006,0.006,0.013,0.013,0.019,0.019c-0.08,0.017-0.198,0.021-0.261,0.051\r\n\t\t\t\tc-0.006,0.028-0.008,0.049,0.006,0.07c0.103,0.167,0.277-0.021,0.451,0.007c0.098,0.015,0.167,0.047,0.241,0.076\r\n\t\t\t\tc0.004,0.021,0.009,0.043,0.013,0.064c-0.006,0.019-0.013,0.038-0.019,0.057c-0.108,0.081-0.481,0.067-0.534,0.165\r\n\t\t\t\tc-0.002,0.006-0.004,0.013-0.006,0.019c0.008,0.013,0.017,0.025,0.025,0.038c0.081,0.034,0.262-0.022,0.349-0.038\r\n\t\t\t\tc0.073,0.086,0.103,0.124,0.254,0.14c-0.088,0.128-0.197,0.136-0.292,0.235c0.102,0.124,0.465,0.012,0.616,0.07\r\n\t\t\t\tc0.049,0.034,0.097,0.068,0.146,0.102c0.079,0.046,0.211,0.06,0.311,0.076c0.267,0.044,0.261-0.127,0.369-0.172\r\n\t\t\t\tc0.102-0.013,0.203-0.025,0.305-0.038C23.322,15.873,23.442,15.767,23.552,15.69z M25.078,20.894\r\n\t\t\t\tc-0.023,0.009-0.047,0.017-0.07,0.026c-0.007,0.033,0.006,0.053,0.013,0.089c0.036-0.004,0.072-0.008,0.108-0.013\r\n\t\t\t\tc0.017,0.048,0.015,0.085,0.013,0.146c0.12-0.007,0.193-0.047,0.273-0.07c0.034-0.002,0.068-0.004,0.102-0.006\r\n\t\t\t\tc0.076-0.055,0.153-0.11,0.229-0.165c0.074-0.007,0.148-0.013,0.222-0.019c0.008-0.013,0.017-0.025,0.025-0.038\r\n\t\t\t\tc0.049-0.002,0.097-0.004,0.146-0.006c0.016-0.107,0.079-0.154,0.102-0.229c0.037-0.123-0.067-0.364-0.121-0.439\r\n\t\t\t\tc0.126-0.037,0.169-0.056,0.229-0.159c-0.018-0.123-0.068-0.218-0.102-0.324c-0.094-0.067-0.283-0.037-0.4,0.013\r\n\t\t\t\tc-0.064-0.001-0.088-0.026-0.102-0.076c-0.149,0.013-0.194,0.075-0.229,0.203c-0.025,0.006-0.051,0.013-0.076,0.019\r\n\t\t\t\tc-0.006,0.009-0.013,0.017-0.019,0.025h0.184c-0.025,0.064-0.066,0.089-0.133,0.108c-0.001,0.021,0.008,0.04,0.019,0.063\r\n\t\t\t\tc-0.128-0.01-0.273-0.013-0.375-0.051c-0.045,0.036-0.065,0.068-0.083,0.134v0.038c0.057-0.015,0.088-0.022,0.127,0.013h0.013\r\n\t\t\t\tc-0.037,0.042-0.05,0.035-0.038,0.102c-0.03,0.006-0.059,0.013-0.089,0.019c0.008,0.009,0.017,0.017,0.025,0.025\r\n\t\t\t\tc-0.013,0.017-0.025,0.034-0.038,0.051c0.051,0.024,0.293,0.068,0.343,0.038c0.006,0.017,0.013,0.034,0.019,0.051\r\n\t\t\t\tc-0.083,0.035-0.129,0.014-0.165,0.095c-0.008,0.022-0.004,0.012,0.013,0.038c-0.013,0.019-0.025,0.038-0.038,0.057\r\n\t\t\t\tc-0.004,0.004-0.008,0.008-0.013,0.013c0.047-0.006,0.093-0.013,0.14-0.019c-0.018,0.068-0.092,0.065-0.159,0.076\r\n\t\t\t\tc-0.021,0.026-0.02,0.078-0.044,0.102c-0.032,0.024-0.13,0.015-0.184,0.013c-0.002,0.015-0.004,0.03-0.006,0.044\r\n\t\t\t\tc0.047,0.002,0.093,0.004,0.14,0.006V20.894z M26.336,19.465c-0.008,0.048-0.009,0.074,0,0.121\r\n\t\t\t\tc0.011,0.002,0.021,0.004,0.032,0.006c0.011-0.013,0.021-0.025,0.032-0.038c-0.004-0.034-0.009-0.068-0.013-0.102\r\n\t\t\t\tC26.37,19.456,26.353,19.46,26.336,19.465z M37.611,27.116c0.023-0.013,0.016-0.005,0.019-0.038\r\n\t\t\t\tc0.145-0.004,0.169-0.092,0.292-0.102c-0.015-0.019-0.03-0.038-0.045-0.057c0.053-0.068,0.135-0.101,0.191-0.165\r\n\t\t\t\tc-0.1,0.036-0.199,0.072-0.299,0.108c-0.059-0.006-0.119-0.013-0.178-0.019c0.011,0.023,0.012,0.039,0,0.064\r\n\t\t\t\tc-0.006,0.006-0.171,0.045-0.184,0.045c0.012,0.053,0.028,0.071,0.045,0.114C37.497,27.08,37.576,27.089,37.611,27.116z\r\n\t\t\t\t M8.363,28.654h0.006c-0.002-0.006-0.004-0.013-0.006-0.019V28.654z M14.54,13.788c0.035-0.025,0.102-0.125,0.045-0.175\r\n\t\t\t\tc-0.059,0.063-0.171,0.08-0.068,0.171C14.525,13.786,14.532,13.787,14.54,13.788z M8.375,28.698h0.006\r\n\t\t\t\tc-0.004-0.015-0.008-0.029-0.013-0.044C8.371,28.668,8.373,28.683,8.375,28.698z M8.433,28.838\r\n\t\t\t\tc0.006,0.004,0.013,0.008,0.019,0.013c-0.023-0.051-0.047-0.102-0.07-0.153C8.389,28.761,8.414,28.792,8.433,28.838z\r\n\t\t\t\t M21.4,11.563c-0.005,0-0.01,0.001-0.015,0.001c-0.058,0.053-0.117,0.105-0.175,0.158c-0.053,0.024-0.106,0.048-0.158,0.072\r\n\t\t\t\tc-0.038,0.029-0.035,0.1-0.05,0.136c-0.008,0.019-0.056,0.102-0.048,0.112c0.02,0.01,0.135-0.027,0.152-0.034\r\n\t\t\t\tc0.041-0.017,0.077-0.038,0.104-0.06c0.011-0.01,0.021-0.021,0.032-0.031c0.029-0.01,0.059-0.019,0.088-0.029\r\n\t\t\t\tc0.028-0.025,0.056-0.049,0.084-0.074c0.003-0.003,0.007-0.007,0.01-0.01c0.014,0.009,0.038,0.018,0.063,0.008\r\n\t\t\t\tc0.047-0.026,0.042-0.069,0.098-0.095C21.602,11.666,21.437,11.588,21.4,11.563z M21.72,10.584c0.002,0,0.003-0.001,0.005-0.001\r\n\t\t\t\tc-0.005-0.006-0.009-0.013-0.014-0.019c-0.016,0.002-0.032,0.005-0.048,0.007c-0.148-0.003-0.224-0.095-0.411-0.061\r\n\t\t\t\tc-0.054,0.025-0.235,0.062-0.254,0.094c-0.029,0.048,0.077,0.08,0.116,0.089c0.134,0.033,0.307,0.006,0.465,0.018\r\n\t\t\t\tc0.029,0.002,0.079,0.007,0.099,0.019c0.015,0.009,0.022,0.026,0.042,0.03c0.032,0.001,0.089-0.042,0.103-0.056\r\n\t\t\t\tc0.001-0.001,0.003-0.002,0.004-0.003c-0.082-0.021-0.2-0.02-0.258-0.064C21.619,10.62,21.669,10.602,21.72,10.584z\r\n\t\t\t\t M14.242,41.547c0.147,0.036,0.426-0.012,0.508-0.108c0.048-0.056,0.064-0.206,0.095-0.267c-0.057-0.054-0.445-0.06-0.591-0.057\r\n\t\t\t\tC14.175,41.239,14.197,41.443,14.242,41.547z M10.822,34.354c0.015,0.038,0.009,0.091,0.013,0.134\r\n\t\t\t\tc0.086,0.022,0.114-0.016,0.203-0.019c0.117-0.003,0.196,0.036,0.216-0.095c-0.077-0.061-0.285-0.049-0.4-0.051\r\n\t\t\t\tC10.843,34.333,10.833,34.343,10.822,34.354z M12.735,25.375c-0.017-0.011-0.034-0.021-0.051-0.032\r\n\t\t\t\tc-0.011-0.1,0.084-0.092,0.133-0.146c0.043-0.048,0.06-0.154,0.095-0.203c-0.04-0.027-0.081-0.055-0.121-0.083\r\n\t\t\t\tc-0.045,0.101-0.251,0.268-0.216,0.413c0.05,0.208,0.421,0.141,0.47-0.025C12.9,25.097,12.854,25.337,12.735,25.375z\r\n\t\t\t\t M10.93,37.912c-0.004,0.006-0.008,0.013-0.013,0.019c0.044,0.003,0.042,0.01,0.063,0.032c-0.012,0.031-0.012,0.05,0,0.083\r\n\t\t\t\tc-0.034,0.015-0.068,0.03-0.102,0.044c-0.004,0.006-0.009,0.013-0.013,0.019v0.007c0.085,0,0.174-0.005,0.242-0.013\r\n\t\t\t\tc0.02-0.081-0.008-0.157,0.032-0.216v-0.006h-0.038C11.059,37.905,10.99,37.913,10.93,37.912z M10.015,33.979\r\n\t\t\t\tc-0.092-0.017-0.212,0.006-0.261-0.083c-0.045,0.004-0.062,0.023-0.089,0.032c-0.04-0.004-0.081-0.008-0.121-0.013\r\n\t\t\t\tc-0.04,0.009-0.059,0.049-0.127,0.038c-0.109-0.017-0.194-0.056-0.324-0.057c-0.027,0.004-0.055,0.008-0.083,0.013\r\n\t\t\t\tc-0.006,0.008-0.013,0.017-0.019,0.026v0.025c0.064,0.033,0.195,0.03,0.229,0.095c0.046,0.078-0.076,0.145,0.095,0.21\r\n\t\t\t\tc0.004,0.006,0.008,0.013,0.013,0.019c-0.128,0.082-0.41,0.037-0.572-0.013c-0.013,0.015-0.025,0.03-0.038,0.045\r\n\t\t\t\tc-0.002,0.004-0.004,0.008-0.006,0.013c0.034,0.065,0.099,0.077,0.152,0.121c0.05-0.012,0.053-0.047,0.102-0.057\r\n\t\t\t\tc0.076,0.011,0.153,0.021,0.229,0.032c0.078-0.006,0.157-0.013,0.235-0.019c0.048,0.048,0.109,0.151,0.178,0.172\r\n\t\t\t\tc0.044-0.114,0.093-0.196,0.203-0.248c0.021,0.023,0.042,0.047,0.064,0.07c0.075,0.033,0.112-0.06,0.178-0.076\r\n\t\t\t\tc0.044-0.011,0.074,0.012,0.095,0.019c0.129-0.06,0.183,0.045,0.248,0.083c0.039-0.029,0.062-0.074,0.089-0.114\r\n\t\t\t\tC10.38,34.159,10.076,34.16,10.015,33.979z M7.581,34.385c0.019,0.027,0.251,0.169,0.311,0.153\r\n\t\t\t\tc0.044-0.012,0.058-0.078,0.14-0.057c0.051,0.013,0.064,0.04,0.127,0.038c0.002-0.011,0.004-0.021,0.006-0.032\r\n\t\t\t\tc-0.073-0.11-0.33-0.158-0.515-0.153C7.628,34.352,7.604,34.368,7.581,34.385z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31.446,19.655c0.015,0.03,0.03,0.059,0.044,0.089\r\n\t\t\t\tc0.057-0.013,0.103-0.074,0.133-0.115c0.012-0.009,0.004,0,0.013-0.013c-0.023-0.013-0.047-0.026-0.07-0.038\r\n\t\t\t\tc-0.002-0.004-0.004-0.008-0.006-0.013c0.069-0.055,0.095-0.122,0.076-0.235c-0.03-0.002-0.059-0.004-0.089-0.006\r\n\t\t\t\tc-0.026,0.029-0.04,0.127-0.051,0.165c-0.058-0.027-0.089-0.049-0.108-0.114c-0.004-0.002-0.009-0.004-0.013-0.006\r\n\t\t\t\tc-0.078,0.099-0.18,0.095-0.076,0.267C31.324,19.671,31.398,19.659,31.446,19.655z M43.382,11.985\r\n\t\t\t\tc0.203,0.031,0.324,0.15,0.496,0.203c-0.004,0.021-0.009,0.042-0.013,0.064c-0.084,0.038-0.182,0.051-0.172,0.172\r\n\t\t\t\tc0.094,0.018,0.165,0.009,0.28,0.006c0.026,0.034,0.051,0.068,0.076,0.102c0.094,0.039,0.143-0.06,0.21-0.083\r\n\t\t\t\tc0.155,0.002,0.309,0.004,0.464,0.007c-0.006-0.127-0.177-0.162-0.254-0.223c-0.136-0.107-0.215-0.333-0.254-0.534\r\n\t\t\t\tc-0.085-0.43,0.254-0.283,0.292-0.597c-0.066-0.023-0.131-0.047-0.197-0.07c-0.172-0.022-0.357,0.059-0.477,0.089\r\n\t\t\t\tc-0.072,0.004-0.144,0.008-0.216,0.013c-0.088,0.044-0.135,0.159-0.235,0.203c-0.004,0.007-0.009,0.013-0.013,0.019\r\n\t\t\t\tc0.051,0.026,0.093,0.062,0.165,0.064c-0.037,0.109-0.134,0.278-0.241,0.311c-0.072,0.022-0.115-0.021-0.172-0.019\r\n\t\t\t\tc-0.049,0.061-0.104,0.114-0.07,0.229c0.019,0.025,0.038,0.051,0.057,0.076C43.251,12.115,43.276,11.969,43.382,11.985z\r\n\t\t\t\t M20.926,10.303c-0.046,0.008-0.091,0.016-0.137,0.024c-0.018,0.026-0.036,0.077-0.072,0.095\r\n\t\t\t\tc0.061,0.013,0.304-0.051,0.354-0.078C21.07,10.309,20.97,10.301,20.926,10.303z M31.37,7.524\r\n\t\t\t\tc0.061-0.032,0.123-0.064,0.184-0.095c0.036,0.055,0.072,0.11,0.108,0.165c-0.076,0.036-0.153,0.072-0.229,0.108\r\n\t\t\t\tc0.055,0.135,0.434,0.457,0.623,0.388c0.163-0.06,0.211-0.226,0.35-0.312c0.086,0.097,0.288,0.173,0.438,0.197v0.006\r\n\t\t\t\tc-0.178,0.189-0.512,0.185-0.769,0.299h-0.013c0.023,0.049,0.047,0.097,0.07,0.146c0.248-0.018,0.442-0.069,0.661-0.089\r\n\t\t\t\tc0.027,0.025,0.055,0.051,0.083,0.076c-0.102,0.131-0.323,0.152-0.559,0.146c-0.023,0.034-0.047,0.068-0.07,0.102\r\n\t\t\t\tc-0.004,0.004-0.008,0.008-0.013,0.013c0.102,0.062,0.562,0.443,0.718,0.4c0.032-0.019,0.063-0.038,0.095-0.057\r\n\t\t\t\tc-0.001-0.177,0.066-0.321,0.159-0.407c0.028-0.029,0.124-0.04,0.172-0.044c0.038-0.081,0.076-0.161,0.114-0.242\r\n\t\t\t\tc0.058-0.144,0.054-0.343,0.178-0.419c0.093-0.021,0.187-0.043,0.28-0.064c0.053-0.026,0.106-0.051,0.159-0.076\r\n\t\t\t\tc-0.048-0.083-0.189-0.174-0.28-0.21c-0.082-0.032-0.163-0.021-0.229-0.063c-0.057-0.074-0.114-0.148-0.172-0.222\r\n\t\t\t\tc-0.078,0-0.117,0.083-0.172,0.127C33.238,7.389,33.219,7.38,33.2,7.372c-0.034-0.072,0.005-0.174,0.006-0.28\r\n\t\t\t\tc-0.021-0.015-0.042-0.03-0.064-0.045h-0.172c-0.066-0.021-0.112-0.079-0.21-0.089c-0.036,0.042-0.072,0.085-0.108,0.127\r\n\t\t\t\tc-0.04,0.109,0.108,0.294,0.127,0.4c-0.019,0.017-0.038,0.034-0.057,0.051c-0.108-0.025-0.306-0.287-0.35-0.381\r\n\t\t\t\tc-0.075-0.059-0.101-0.039-0.191,0c-0.015,0.076-0.03,0.153-0.044,0.229v0.013c-0.074-0.015-0.148-0.03-0.222-0.045\r\n\t\t\t\tc-0.036-0.055-0.041-0.146-0.038-0.242c-0.077-0.016-0.176,0.02-0.235,0.032c-0.047-0.004-0.093-0.008-0.14-0.013\r\n\t\t\t\tc-0.146,0.013-0.218,0.074-0.305,0.14C31.219,7.367,31.286,7.485,31.37,7.524z M34.414,7.117v0.006\r\n\t\t\t\tc-0.066,0.146-0.101,0.233-0.28,0.267v0.114c0.275,0.013,0.551,0.025,0.826,0.038c0.059-0.04,0.119-0.081,0.178-0.121\r\n\t\t\t\tc0.078-0.033,0.162-0.016,0.254-0.045c0.078-0.04,0.157-0.08,0.235-0.121c0.104-0.078,0.208-0.157,0.311-0.235\r\n\t\t\t\tc0.002-0.004,0.004-0.008,0.006-0.013c-0.023-0.038-0.047-0.076-0.07-0.114c-0.061-0.017-0.123-0.034-0.184-0.051\r\n\t\t\t\tc-0.119-0.023-0.251,0.029-0.375,0.026c-0.025-0.051-0.051-0.102-0.076-0.153c-0.03-0.011-0.059-0.021-0.089-0.032\r\n\t\t\t\tc-0.132,0.016-0.223,0.14-0.286,0.229h-0.108c-0.028-0.1-0.003-0.248,0.025-0.343c-0.136,0.061-0.143,0.232-0.267,0.292\r\n\t\t\t\tc-0.011,0.011-0.021,0.021-0.032,0.032c-0.167-0.256-0.328-0.017-0.496-0.134c-0.059-0.07-0.119-0.14-0.178-0.21\r\n\t\t\t\tc-0.081,0.106-0.161,0.212-0.241,0.318c-0.087,0.062-0.151,0.069-0.197,0.172c-0.004,0.004-0.008,0.008-0.013,0.013\r\n\t\t\t\tC33.594,7.203,34.035,7.121,34.414,7.117z M20.993,9.697c0.035,0.033,0.134,0.07,0.225,0.035c0.034-0.013,0.049-0.034,0.076-0.05\r\n\t\t\t\tc0.019-0.02,0.038-0.04,0.057-0.061c-0.074-0.021-0.104-0.081-0.222-0.057C21.066,9.601,20.983,9.637,20.993,9.697z\r\n\t\t\t\t M21.388,8.988c-0.081,0.009-0.125-0.079-0.169-0.114c-0.024,0.041-0.114,0.079-0.126,0.107c0,0,0.086,0.119,0.094,0.127\r\n\t\t\t\tc0.011,0.01,0.028,0.019,0.044,0.023c0.039-0.003,0.22-0.108,0.242-0.129c0.013-0.013,0.03-0.035,0.009-0.052\r\n\t\t\t\tC21.451,8.925,21.406,8.976,21.388,8.988z M20.989,9.241c-0.031,0.049,0.059,0.128,0.12,0.118\r\n\t\t\t\tc0.061-0.054,0.045-0.074-0.037-0.096C21.044,9.256,21.017,9.248,20.989,9.241z M20.988,9.24c0,0,0.001,0,0.001,0\r\n\t\t\t\tc0.002-0.004-0.006-0.009-0.002-0.012C20.987,9.233,20.988,9.237,20.988,9.24z M30.588,18.905\r\n\t\t\t\tc0.119-0.015,0.252,0.008,0.413-0.006c0.016-0.051,0.02-0.072,0.064-0.095c-0.01-0.113-0.024-0.131,0.025-0.21\r\n\t\t\t\tc-0.011-0.004-0.021-0.008-0.032-0.013c-0.006,0.01-0.013,0.021-0.019,0.032c-0.055,0.015-0.11,0.03-0.165,0.044\r\n\t\t\t\tc-0.059,0.043-0.078,0.143-0.153,0.172c-0.076,0.008-0.153,0.017-0.229,0.025c-0.051,0.023-0.079,0.083-0.102,0.133\r\n\t\t\t\tc0.028,0.028,0.055,0.055,0.083,0.083C30.523,19.013,30.565,18.998,30.588,18.905z M10.002,26.709v0.006\r\n\t\t\t\tc0.013,0.019,0.025,0.038,0.038,0.057h0.027c-0.006-0.014-0.006-0.034-0.015-0.051C10.036,26.717,10.019,26.713,10.002,26.709z\r\n\t\t\t\t M42.956,34.189c-0.051-0.021-0.102-0.042-0.153-0.064c-0.12,0.085-0.214,0.171-0.388,0.21c-0.076,0.017-0.145-0.016-0.191-0.025\r\n\t\t\t\tc-0.086-0.017-0.139,0.054-0.197,0.07c-0.059-0.006-0.119-0.013-0.178-0.019h-0.013c-0.072,0.047-0.144,0.093-0.216,0.14\r\n\t\t\t\tc-0.099,0.036-0.13-0.059-0.242-0.038c-0.091,0.04-0.182,0.08-0.273,0.121h-0.178c-0.091-0.099-0.215-0.211-0.273-0.337\r\n\t\t\t\tc-0.054-0.014-0.128-0.003-0.191-0.013c-0.004-0.002-0.009-0.004-0.013-0.006v-0.013c0.069-0.033,0.208-0.09,0.261-0.146\r\n\t\t\t\tc-0.006-0.169-0.233-0.211-0.33-0.305c-0.017-0.016-0.033-0.139-0.089-0.191c-0.026-0.024-0.075-0.007-0.108-0.025\r\n\t\t\t\tc-0.089-0.098-0.178-0.195-0.267-0.292c-0.035-0.016-0.076-0.009-0.127-0.006c-0.039-0.054-0.074-0.138-0.133-0.172\r\n\t\t\t\tc-0.019,0.025-0.013,0.083-0.019,0.108c-0.004,0.002-0.008,0.004-0.013,0.007c-0.182-0.153-0.224-0.622-0.331-0.864\r\n\t\t\t\tc-0.049-0.112-0.295-0.163-0.362-0.254c-0.106-0.144-0.038-0.516-0.089-0.724c-0.033-0.135-0.153-0.35-0.254-0.426\r\n\t\t\t\tc-0.05-0.038-0.123-0.051-0.159-0.102c-0.045-0.062-0.051-0.162-0.076-0.242c0.023-0.021,0.047-0.042,0.07-0.064\r\n\t\t\t\tc-0.051-0.051-0.102-0.102-0.153-0.152c-0.139-0.209-0.24-0.462-0.369-0.667c-0.055-0.144-0.11-0.288-0.165-0.432\r\n\t\t\t\tc-0.095-0.171-0.257-0.287-0.299-0.521c0.033-0.045,0.038-0.066,0.095-0.089c0.08,0.245,0.223,0.49,0.4,0.642\r\n\t\t\t\tc0.019,0.021,0.047,0.019,0.076,0.013c0.08-0.159,0.057-0.398,0.184-0.508c-0.074-0.191-0.148-0.381-0.222-0.572\r\n\t\t\t\tc-0.122,0.015-0.164,0.113-0.337,0.019c-0.112,0.08-0.158,0.011-0.28,0.032c-0.042-0.043-0.076-0.051-0.095-0.121\r\n\t\t\t\tc-0.215-0.044-0.454,0.008-0.604,0.108c-0.04,0.032-0.081,0.063-0.121,0.095c-0.079,0.017-0.155-0.048-0.21-0.064\r\n\t\t\t\tc-0.061-0.006-0.123-0.013-0.184-0.019c-0.013-0.017-0.025-0.034-0.038-0.051c-0.148-0.032-0.297-0.064-0.445-0.095h-0.318\r\n\t\t\t\tc-0.058-0.026-0.045-0.125-0.108-0.146h-0.146c-0.077-0.012-0.25-0.041-0.324-0.07c-0.07-0.038-0.033-0.128-0.133-0.172\r\n\t\t\t\tc-0.258-0.113-0.681,0.039-0.782,0.21c-0.137,0.231,0.167,0.358-0.146,0.527c-0.038,0.02-0.088,0.07-0.146,0.064\r\n\t\t\t\tc-0.153-0.018-0.266-0.184-0.4-0.235c-0.132-0.05-0.433-0.054-0.54-0.114c-0.119-0.068-0.137-0.311-0.241-0.35\r\n\t\t\t\tc-0.058-0.021-0.105-0.003-0.152-0.025c-0.028-0.025-0.055-0.051-0.083-0.076c-0.066-0.013-0.131-0.025-0.197-0.038\r\n\t\t\t\tc-0.095,0.006-0.191,0.013-0.286,0.019c-0.129-0.055-0.258-0.11-0.388-0.165c-0.009-0.034-0.017-0.068-0.025-0.102\r\n\t\t\t\tc-0.061-0.005-0.069,0.013-0.121,0.025c-0.082-0.04-0.182-0.111-0.203-0.21c0.059-0.065,0.326-0.286,0.324-0.369\r\n\t\t\t\tc-0.011-0.042-0.021-0.085-0.032-0.127c-0.337-0.192,0.008-0.272,0.006-0.483c-0.064,0.038-0.127,0.076-0.191,0.115\r\n\t\t\t\tc-0.011-0.002-0.021-0.004-0.032-0.006c-0.018-0.04-0.036-0.072-0.038-0.127c-0.047-0.021-0.093-0.042-0.14-0.064\r\n\t\t\t\tc-0.03,0.004-0.059,0.009-0.089,0.013c-0.095,0.036-0.266,0.212-0.432,0.165c-0.024-0.007-0.062-0.069-0.14-0.096\r\n\t\t\t\tc-0.063,0.009-0.084,0.051-0.133,0.076c-0.076-0.012-0.113-0.06-0.178-0.083c-0.078,0.055-0.155,0.115-0.267,0.14\r\n\t\t\t\tc-0.173,0.039-0.303-0.115-0.502-0.063c-0.038,0.021-0.076,0.042-0.114,0.063c-0.073,0.026-0.104-0.027-0.159-0.019\r\n\t\t\t\tc-0.047,0.021-0.093,0.042-0.14,0.064c-0.145,0.03-0.312-0.005-0.432,0.044c-0.114,0.047-0.181,0.142-0.267,0.216\r\n\t\t\t\tc-0.046-0.004-0.065-0.015-0.089-0.038c-0.039,0.007-0.209,0.066-0.242,0.089c-0.08,0.057-0.073,0.137-0.191,0.172\r\n\t\t\t\tc-0.13,0.038-0.283-0.002-0.318-0.089c-0.007-0.002-0.345,0.103-0.477,0.064c-0.138-0.041-0.19-0.153-0.28-0.242\r\n\t\t\t\tc-0.032,0.015-0.064,0.03-0.095,0.045c-0.071,0.054-0.17,0.43-0.248,0.534c-0.114,0.152-0.324,0.164-0.483,0.273\r\n\t\t\t\tc-0.054,0.037-0.227,0.186-0.248,0.241c-0.022,0.058,0.009,0.132-0.019,0.191c-0.035,0.073-0.121,0.127-0.153,0.21\r\n\t\t\t\tc-0.075,0.199,0.155,0.303-0.006,0.54c-0.101,0.149-0.406,0.41-0.578,0.483c-0.089,0.038-0.211,0.03-0.305,0.076\r\n\t\t\t\tc-0.108,0.053-0.13,0.288-0.203,0.381c-0.059,0.074-0.188,0.088-0.242,0.165c-0.056,0.081-0.105,0.204-0.127,0.311\r\n\t\t\t\tc-0.002,0.044-0.004,0.089-0.006,0.134c-0.04,0.101-0.18,0.151-0.242,0.235c-0.063,0.146-0.127,0.292-0.191,0.438\r\n\t\t\t\tc-0.047,0.051-0.093,0.102-0.14,0.153c-0.056,0.084-0.082,0.256-0.064,0.388c0.015-0.017,0.03-0.034,0.044-0.051\r\n\t\t\t\tc0.199,0.016,0.209,0.339,0.114,0.477c0.233,0.184,0.095,0.554,0.025,0.788c-0.008,0.068-0.017,0.136-0.025,0.203\r\n\t\t\t\tc-0.037,0.135-0.145,0.317-0.273,0.362c-0.002,0.004-0.004,0.008-0.006,0.013c0.181,0.076,0.181,0.271,0.267,0.311\r\n\t\t\t\tc0.01,0.02,0.013,0.041,0.013,0.076c-0.019,0.004-0.038,0.008-0.057,0.013c-0.049,0.069-0.01,0.177-0.032,0.261\r\n\t\t\t\tc0.08,0.135,0.04,0.036,0.14,0.102c0.004,0.015,0.008,0.03,0.013,0.044c0.042,0.025,0.085,0.051,0.127,0.076\r\n\t\t\t\tc0.063-0.012,0.153-0.052,0.203,0.006c-0.039,0.048-0.093,0.079-0.076,0.165c0.026,0.017,0.08,0.022,0.102,0.044\r\n\t\t\t\tc0.015,0.02,0.01,0.028,0.006,0.057c0.034,0.023,0.057,0.034,0.121,0.032c0.011,0.033,0.011,0.06,0,0.095\r\n\t\t\t\tc0.065,0.069,0.166,0.135,0.267,0.165c0.006,0.032,0.013,0.063,0.019,0.095c0.033,0.061,0.118,0.081,0.14,0.159v0.095\r\n\t\t\t\tc0.014,0.018,0.035,0.022,0.063,0.025c0.002,0.008,0.004,0.017,0.006,0.025c-0.023,0.019-0.047,0.038-0.07,0.057h-0.013\r\n\t\t\t\tc0.028,0.094,0.156,0.186,0.261,0.203c0.018,0.034,0.013,0.047,0.006,0.095c0.142,0.043,0.215,0.149,0.324,0.222\r\n\t\t\t\tc0.08,0.042,0.161,0.085,0.242,0.127c0.17,0.12,0.278,0.261,0.477,0.362c0.062,0.032,0.311,0.192,0.388,0.172\r\n\t\t\t\tc0.102-0.053,0.203-0.106,0.305-0.159c0.106-0.029,0.212-0.059,0.318-0.089c0.092-0.027,0.292-0.048,0.407-0.025\r\n\t\t\t\tc0.05,0.01,0.145,0.061,0.21,0.038c0.011-0.013,0.021-0.025,0.032-0.038c0.041,0.005,0.246,0.134,0.286,0.165\r\n\t\t\t\tc0.206-0.093,0.411-0.186,0.616-0.28c0.087-0.008,0.174-0.017,0.261-0.025c0.052-0.039,0.054-0.108,0.127-0.133\r\n\t\t\t\tc0.214-0.019,0.428-0.038,0.642-0.057c0.032-0.012,0.039-0.042,0.083-0.057c0.077,0.015,0.286,0.147,0.331,0.203\r\n\t\t\t\tc0.015,0.025,0.03,0.051,0.044,0.076c0.023,0.002,0.047,0.004,0.07,0.006c0.006,0.008,0.013,0.017,0.019,0.025\r\n\t\t\t\tc-0.013,0.032-0.025,0.064-0.038,0.095c0.025,0.209,0.348,0.363,0.534,0.197c0.101,0.017,0.232,0.039,0.343-0.006\r\n\t\t\t\tc0.002-0.027-0.002-0.037-0.013-0.063c0.025-0.016,0.147,0.013,0.178,0.051c0.069,0.124-0.004,0.172,0.222,0.165\r\n\t\t\t\tc0.008,0.013,0.017,0.026,0.025,0.038c0.004,0.004,0.008,0.008,0.013,0.013c-0.019,0.015-0.038,0.03-0.057,0.044\r\n\t\t\t\tc0.021,0.08,0.085,0.147,0.102,0.242c-0.011,0.042-0.021,0.085-0.032,0.127c0.009,0.032,0.017,0.064,0.025,0.095\r\n\t\t\t\tc-0.024,0.1-0.086,0.2-0.153,0.261c-0.002,0.006-0.004,0.013-0.006,0.019c0.025,0.004,0.051,0.008,0.076,0.013\r\n\t\t\t\tc0.003,0.084-0.012,0.146-0.076,0.165c0.049,0.042,0.097,0.085,0.146,0.127v0.006c-0.038-0.004-0.076-0.009-0.114-0.013\r\n\t\t\t\tc-0.031,0.138-0.072,0.242-0.191,0.292c0.013,0.028,0.052,0.116,0.076,0.14c0.036,0.035,0.074,0.015,0.114,0.07\r\n\t\t\t\tc-0.021,0.015-0.042,0.03-0.063,0.045c-0.002,0.004-0.004,0.008-0.006,0.013c0.042,0.062,0.085,0.123,0.127,0.184\r\n\t\t\t\tc0.053,0.027,0.074,0.003,0.108,0.045c-0.011,0.015-0.021,0.03-0.032,0.044c0.089,0.058,0.143,0.122,0.203,0.21\r\n\t\t\t\tc0.112,0.104,0.224,0.208,0.337,0.311c0.032,0.039,0.115,0.204,0.133,0.248c0.029,0.068-0.018,0.161,0.038,0.261\r\n\t\t\t\tc0.045,0.064,0.089,0.127,0.133,0.191c0.013,0.061,0.025,0.123,0.038,0.184c0.057,0.134,0.17,0.186,0.14,0.388\r\n\t\t\t\tc-0.243,0.109,0.046,0.36,0.089,0.489c0.008,0.1,0.017,0.199,0.025,0.299c-0.019,0.11-0.066,0.285-0.146,0.337\r\n\t\t\t\tc-0.03,0.01-0.059,0.021-0.089,0.032c-0.017,0.04-0.034,0.081-0.051,0.121c-0.03,0.032-0.059,0.064-0.089,0.096\r\n\t\t\t\tc-0.094,0.222-0.042,0.57-0.222,0.705c0,0.202-0.037,0.471,0.013,0.648c0.038,0.135,0.15,0.217,0.216,0.324\r\n\t\t\t\tc0.108,0.216,0.216,0.432,0.324,0.648c0.075,0.146,0.371,0.404,0.203,0.572c0.03,0.14,0.059,0.28,0.089,0.419\r\n\t\t\t\tc0.023,0.055,0.047,0.11,0.07,0.165c0.02,0.082-0.031,0.143-0.025,0.203c0.008,0.08,0.071,0.147,0.089,0.21\r\n\t\t\t\tc0.014,0.047-0.021,0.073-0.019,0.102c0.034,0.104,0.068,0.208,0.102,0.311c0.117,0.131,0.233,0.263,0.349,0.394\r\n\t\t\t\tc0.12,0.189,0.16,0.433,0.273,0.635c0.1,0.178,0.271,0.36,0.203,0.654c-0.033,0.008-0.077,0-0.095,0.025\r\n\t\t\t\tc-0.025,0.032,0.123,0.23,0.159,0.286c-0.017,0.049-0.034,0.098-0.051,0.146c0.011,0.011,0.021,0.021,0.032,0.032\r\n\t\t\t\tc0.006,0.002,0.013,0.004,0.019,0.006c0.006-0.015,0.013-0.03,0.019-0.045c0.017-0.008,0.022-0.011,0.051-0.013\r\n\t\t\t\tc0.013,0.023,0.025,0.047,0.038,0.07c0.027-0.001,0.052-0.007,0.102-0.006c0.021,0.029,0.022,0.055,0.038,0.095\r\n\t\t\t\tc0.024,0.042,0.115,0.075,0.165,0.089c0.06-0.046,0.096-0.122,0.178-0.146c0.115-0.035,0.251,0.044,0.356-0.006\r\n\t\t\t\tc0.032-0.03,0.063-0.059,0.095-0.089c0.15-0.071,0.214,0,0.331,0c0.034-0.019,0.068-0.038,0.102-0.057\r\n\t\t\t\tc0.122-0.035,0.234,0.073,0.318,0.102c0.04-0.031,0.07-0.055,0.095-0.102c0.057,0.013,0.114,0.025,0.172,0.038\r\n\t\t\t\tc0.017-0.018,0.02-0.053,0.032-0.076c0.05-0.048,0.322-0.017,0.4-0.07c0.083-0.072,0.165-0.144,0.248-0.216\r\n\t\t\t\tc0.416-0.327,0.721-0.688,1.017-1.138c0.074-0.113,0.264-0.191,0.305-0.299c0.02-0.052-0.028-0.122-0.019-0.146\r\n\t\t\t\tc0.016-0.044,0.065-0.032,0.089-0.064c0.071-0.091,0.109-0.35,0.089-0.496c-0.038-0.015-0.078-0.04-0.095-0.076\r\n\t\t\t\tc-0.006-0.006-0.013-0.013-0.019-0.019c0.078-0.091,0.132-0.175,0.242-0.235c0.244-0.134,0.525-0.121,0.635-0.388\r\n\t\t\t\tc-0.009-0.061-0.052-0.036-0.064-0.07c0.002-0.006,0.004-0.013,0.006-0.019c0.013-0.032,0.025-0.064,0.038-0.095\r\n\t\t\t\tc0.03-0.123,0.023-0.264,0.019-0.388c-0.028,0.01-0.035,0.018-0.076,0.019c-0.039-0.124-0.087-0.274-0.044-0.375\r\n\t\t\t\tc-0.006-0.075-0.062-0.112-0.114-0.14v-0.203c0.119-0.087,0.237-0.174,0.356-0.261c0.145-0.122,0.233-0.305,0.4-0.407\r\n\t\t\t\tc0.203-0.123,0.451-0.162,0.642-0.292c0.137-0.094,0.224-0.268,0.331-0.394c0-0.028-0.009-0.039-0.019-0.07\r\n\t\t\t\tc0.036-0.047,0.068-0.081,0.095-0.14c-0.002-0.011-0.004-0.021-0.006-0.032c-0.023-0.011-0.047-0.021-0.07-0.032\r\n\t\t\t\tc-0.02-0.163,0.012-0.337-0.07-0.432c0.003-0.034,0.034-0.063,0.044-0.108c0.026-0.113-0.041-0.294-0.057-0.394\r\n\t\t\t\tc0.03-0.055,0.059-0.11,0.089-0.165c-0.065-0.14-0.183-0.157-0.267-0.267c-0.083-0.108-0.127-0.393-0.07-0.553\r\n\t\t\t\tc-0.018-0.028-0.043-0.033-0.064-0.057c0.029-0.062,0.083-0.148,0.089-0.216c-0.057-0.071-0.161-0.126-0.197-0.216\r\n\t\t\t\tc-0.037-0.095,0.061-0.407,0.102-0.451c0.024-0.026,0.068-0.021,0.089-0.051c0.047-0.068,0.006-0.104,0.025-0.165\r\n\t\t\t\tc0.042-0.137,0.172-0.143,0.184-0.368c0.096-0.053,0.187-0.052,0.191-0.203c0.085,0.016,0.124-0.022,0.191-0.051\r\n\t\t\t\tc0.024-0.036,0.026-0.054,0.006-0.095c0.208-0.235,0.415-0.47,0.623-0.705c0.229-0.185,0.515-0.325,0.744-0.508\r\n\t\t\t\tc0.085-0.104,0.169-0.208,0.254-0.311c0.168-0.215,0.419-0.422,0.527-0.686c0.011-0.049,0.021-0.098,0.032-0.146\r\n\t\t\t\tc0.074-0.119,0.148-0.237,0.222-0.356c-0.002-0.028-0.004-0.055-0.006-0.083c0.042-0.04,0.085-0.081,0.127-0.121\r\n\t\t\t\tc0.055-0.098,0.11-0.195,0.165-0.292c0.006-0.087,0.013-0.174,0.019-0.261c0.014-0.04,0.079-0.07,0.076-0.127\r\n\t\t\t\tc-0.002-0.045-0.037-0.108-0.019-0.172c0.017-0.04,0.034-0.081,0.051-0.121C42.96,34.201,42.958,34.195,42.956,34.189z\r\n\t\t\t\t M51.688,35.155c-0.032-0.185-0.128-0.278-0.28-0.375c0.018,0.077-0.003,0.113-0.025,0.191c-0.034,0.026-0.04,0.042-0.095,0.025\r\n\t\t\t\tc-0.004,0.015-0.008,0.03-0.013,0.044c0.015,0.017,0.03,0.034,0.044,0.051c-0.029,0.063-0.008,0.077,0.006,0.14v0.318\r\n\t\t\t\tc0.023,0.101,0.073,0.267,0.146,0.324c0.208,0.044,0.476-0.139,0.451-0.337c-0.011-0.089-0.093-0.163-0.127-0.235\r\n\t\t\t\tC51.76,35.226,51.767,35.185,51.688,35.155z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32c17.673,0,32-14.327,32-32\r\n\t\t\t\tC64,14.327,49.673,0,32,0z M50.505,13.747c0.043,0.044,0.081,0.093,0.124,0.137c-0.003,0.02-0.006,0.039-0.008,0.059v0.006\r\n\t\t\t\tc0.027,0.007,0.053,0.01,0.08,0.013c0.048,0.049,0.092,0.103,0.139,0.153c-0.13,0.026-0.317,0.022-0.352-0.084\r\n\t\t\t\tC50.47,14.004,50.497,13.865,50.505,13.747z M48.568,14.508c0.038,0.017,0.076,0.034,0.114,0.051\r\n\t\t\t\tc0.07-0.025,0.14-0.051,0.21-0.076c-0.013-0.036-0.025-0.072-0.038-0.108c0.033-0.077,0.142-0.097,0.203-0.146\r\n\t\t\t\tc0.083-0.066,0.227-0.183,0.267-0.286c0.015-0.059,0.03-0.119,0.044-0.178c0.022-0.052,0.06-0.069,0.064-0.146\r\n\t\t\t\tc-0.099-0.13-0.202-0.041-0.254-0.292c0.002-0.127,0.004-0.254,0.006-0.381c-0.008-0.074-0.017-0.148-0.025-0.222\r\n\t\t\t\tc0.032-0.042,0.064-0.085,0.095-0.127c0.001-0.002-0.001-0.005,0-0.008c0.099,0.088,0.195,0.177,0.293,0.266\r\n\t\t\t\tc-0.012,0.031-0.036,0.06-0.038,0.092c-0.006,0.103,0.07,0.19,0.07,0.324c0.102-0.002,0.239,0.039,0.311,0.025\r\n\t\t\t\tc0.034-0.012,0.069-0.024,0.103-0.036c0.075,0.072,0.157,0.137,0.232,0.211c-0.214-0.04-0.47,0.008-0.5,0.206\r\n\t\t\t\tc0.056,0.099,0.113,0.168,0.108,0.318c-0.042,0.053-0.085,0.106-0.127,0.159c-0.034,0.021-0.068,0.042-0.102,0.064\r\n\t\t\t\tc-0.044,0.061-0.038,0.157-0.095,0.203c-0.14,0.113-0.327,0.134-0.407,0.311c-0.085,0.039-0.185,0.002-0.261-0.013\r\n\t\t\t\tc-0.053,0.002-0.106,0.004-0.159,0.006c-0.219-0.032-0.424-0.055-0.502-0.229C48.308,14.462,48.449,14.461,48.568,14.508z\r\n\t\t\t\t M14.404,12.899c-0.002,0.011-0.006,0.023,0.013,0.034c0.011,0.006,0.027,0.004,0.044,0.005c0.046,0.003,0.104,0.019,0.122,0.05\r\n\t\t\t\tc-0.03,0.071-0.177,0-0.221-0.006c0,0.003,0,0.006,0,0.008c-0.005,0-0.011,0-0.016,0c-0.003,0.077,0.276,0.05,0.304,0.123\r\n\t\t\t\tc-0.032,0.036-0.081,0.019-0.141,0.035c-0.004,0.062,0.16,0.026,0.146,0.083c0,0.002-0.001,0.003-0.001,0.005\r\n\t\t\t\tc-0.043,0.013-0.078-0.002-0.117,0.012c-0.004,0.003-0.007,0.006-0.01,0.009c0,0.003,0,0.006,0,0.008\r\n\t\t\t\tc0.031,0.019,0.072,0.042,0.132,0.023c0.017-0.006,0.036-0.014,0.054-0.012c0.006,0.002,0.012,0.003,0.017,0.005\r\n\t\t\t\tc0.003,0.02-0.019,0.063-0.05,0.071c-0.034,0.009-0.199-0.014-0.228-0.021c-0.059-0.015-0.101-0.05-0.147-0.078\r\n\t\t\t\tc-0.04-0.024-0.124-0.06-0.197-0.085C14.204,13.077,14.305,12.99,14.404,12.899z M13.524,13.715\r\n\t\t\t\tc0.019,0.012,0.039,0.022,0.052,0.039c-0.03-0.002-0.064,0.005-0.097,0.01C13.495,13.749,13.509,13.731,13.524,13.715z\r\n\t\t\t\t M7.943,27.904c0.017-0.004,0.034-0.008,0.051-0.013c-0.017,0.015-0.034,0.03-0.051,0.045\r\n\t\t\t\tC7.945,27.925,7.941,27.918,7.943,27.904z M7.499,23.367c-0.001,0.007,0,0.011-0.001,0.018c-0.002-0.002-0.002-0.004-0.004-0.006\r\n\t\t\t\tC7.496,23.376,7.497,23.372,7.499,23.367z M7.676,37.665c-0.049,0.065-0.234,0.104-0.337,0.051\r\n\t\t\t\tc-0.044,0.033-0.061,0.065-0.057,0.146c-0.015,0.013-0.03,0.025-0.044,0.038c-0.012-0.052-0.021-0.069-0.07-0.083\r\n\t\t\t\tc-0.033-0.007-0.066,0.023-0.095,0.038c-0.203,0.107-0.124,0.25-0.191,0.438c-0.026,0.005-0.052,0.01-0.079,0.015\r\n\t\t\t\tc-0.076-0.302-0.168-0.598-0.232-0.904c0.011,0.001,0.019,0.005,0.032,0.006c0.029,0.082,0.054,0.128,0.146,0.146\r\n\t\t\t\tc0.004-0.028,0.009-0.055,0.013-0.083h0.006c0.023,0.048,0.076,0.109,0.064,0.172c0.006,0.006,0.013,0.013,0.019,0.019\r\n\t\t\t\tc0.114,0.02,0.144-0.047,0.248-0.057c-0.01-0.111-0.095-0.121-0.133-0.203c0.039-0.058,0.138-0.099,0.21-0.121\r\n\t\t\t\tc-0.003-0.04-0.005-0.057,0.006-0.089c0.198-0.063,0.318-0.017,0.375,0.14c0.045,0.008,0.076-0.016,0.108-0.038\r\n\t\t\t\tc-0.001,0.049,0.005,0.067,0.038,0.083c0.002,0.004,0.004,0.009,0.006,0.013c-0.061-0.008-0.097-0.021-0.121,0.032\r\n\t\t\t\tC7.564,37.5,7.647,37.606,7.676,37.665z M32,58c-7.083,0-13.497-2.841-18.187-7.435c0.051-0.052,0.122-0.09,0.155-0.153\r\n\t\t\t\tc0.019-0.078,0.038-0.157,0.057-0.235v-0.013c0.049,0.022,0.108,0.044,0.172,0.019h0.006c0.013,0.192-0.204,0.292-0.248,0.483\r\n\t\t\t\tc0.103-0.092,0.237-0.221,0.299-0.349c0.051-0.121,0.102-0.242,0.153-0.362c0.174-0.277,0.481-0.299,0.394-0.852\r\n\t\t\t\tc-0.012-0.077-0.036-0.114-0.057-0.172c0.045-0.054,0.132-0.205,0.019-0.254v-0.038c0.146,0.013,0.159-0.073,0.235-0.14\r\n\t\t\t\tc0.08-0.07,0.491-0.363,0.585-0.381c0.051-0.01,0.091,0.021,0.127,0.032c0.03-0.036,0.059-0.072,0.089-0.108\r\n\t\t\t\tc0.086-0.051,0.144-0.034,0.165-0.153c0.094-0.012,0.207-0.008,0.28,0.006c0.161,0.031,0.334-0.013,0.483-0.025\r\n\t\t\t\tc-0.005-0.182,0.137-0.241,0.292-0.254c-0.009-0.051-0.017-0.102-0.025-0.153c0.017-0.123,0.117-0.202,0.172-0.292\r\n\t\t\t\tc0.034-0.07,0.068-0.14,0.102-0.21c0.032-0.046,0.105-0.072,0.121-0.133c-0.006-0.062-0.013-0.123-0.019-0.184\r\n\t\t\t\tc-0.03-0.169,0.065-0.288,0.184-0.331c0-0.048-0.035-0.138-0.019-0.222c0.021-0.107,0.097-0.243,0.076-0.369\r\n\t\t\t\tc-0.017-0.165-0.034-0.331-0.051-0.496c0.028-0.172,0.093-0.289,0.095-0.464c0.015,0.002,0.03,0.004,0.044,0.006\r\n\t\t\t\tc0.017,0.034,0.034,0.068,0.051,0.102h0.019c0.113-0.084,0.241-0.308,0.292-0.445c0.031-0.081,0.007-0.126,0.057-0.178\r\n\t\t\t\tc0.047-0.021,0.093-0.042,0.14-0.064c0.273-0.213,0.461-0.44,0.534-0.858c0.027-0.157-0.139-0.732-0.216-0.756\r\n\t\t\t\tc-0.161-0.05-0.338,0.008-0.458-0.07c-0.256-0.166-0.436-0.435-0.731-0.566c-0.171-0.076-0.287,0.017-0.451-0.013\r\n\t\t\t\tc-0.1-0.015-0.199-0.03-0.299-0.045c-0.086-0.023-0.18-0.133-0.286-0.121c-0.154,0.018-0.289,0.139-0.394,0.21\r\n\t\t\t\tc-0.049-0.2,0.024-0.122,0.044-0.242c0.013-0.077-0.114-0.195-0.184-0.203c-0.017,0.017-0.034,0.034-0.051,0.051h-0.025\r\n\t\t\t\tc-0.054-0.172-0.227-0.156-0.394-0.216c-0.065-0.023-0.106-0.068-0.159-0.102c-0.052,0.007-0.15,0.015-0.216,0.032\r\n\t\t\t\tc-0.072,0.028-0.08,0.13-0.121,0.191c-0.069,0.101-0.227,0.129-0.28,0.248c-0.004,0.002-0.008,0.004-0.013,0.006\r\n\t\t\t\tc0-0.07,0.012-0.1,0.032-0.146c-0.111,0.023-0.259,0.048-0.394,0.026c-0.032-0.076-0.064-0.153-0.095-0.229\r\n\t\t\t\tc-0.088,0.024-0.202,0.166-0.318,0.121c-0.006-0.004-0.013-0.008-0.019-0.013c0.085-0.065,0.102-0.2,0.159-0.292\r\n\t\t\t\tc0.065-0.105,0.205-0.137,0.28-0.229c0.067-0.082,0.092-0.211,0.197-0.254c0.034-0.054,0.016-0.107-0.006-0.165\r\n\t\t\t\tc-0.262-0.036-0.276-0.356-0.343-0.578c-0.021-0.068-0.016-0.143-0.076-0.172c-0.031-0.005-0.044,0.032-0.076,0.025\r\n\t\t\t\tc-0.015-0.003-0.319-0.315-0.4-0.356c-0.11-0.036-0.22-0.072-0.331-0.108c-0.09-0.035-0.342-0.112-0.489-0.051\r\n\t\t\t\tc-0.016,0.014-0.018,0.027-0.019,0.057c-0.095-0.021-0.191-0.042-0.286-0.064h-0.006c-0.015,0.015-0.03,0.03-0.044,0.045\r\n\t\t\t\tc-0.061-0.12-0.214-0.314-0.388-0.292c-0.011,0.021-0.021,0.042-0.032,0.063v0.013c-0.013-0.091-0.026-0.182-0.038-0.273\r\n\t\t\t\tc-0.074-0.125-0.313-0.283-0.47-0.318c-0.084-0.018-0.176,0.005-0.241,0.019c-0.066-0.004-0.131-0.008-0.197-0.013v-0.006\r\n\t\t\t\tc0.187-0.058,0.138-0.167,0.273-0.222c0.002-0.004,0.004-0.008,0.006-0.013c-0.051-0.035-0.122-0.045-0.178-0.083\r\n\t\t\t\tc-0.013-0.019-0.026-0.038-0.038-0.057c-0.045-0.029-0.132-0.021-0.172-0.045c-0.027,0.019-0.038,0.036-0.045,0.076\r\n\t\t\t\tc-0.004,0.002-0.008,0.004-0.013,0.006c-0.012-0.113-0.097-0.154-0.184-0.191V37.97c0.059,0.002,0.119,0.004,0.178,0.006\r\n\t\t\t\tc0.011-0.006,0.021-0.013,0.032-0.019c0.004-0.009,0.008-0.017,0.013-0.025c-0.002-0.004-0.004-0.008-0.006-0.013\r\n\t\t\t\tc-0.129-0.028-0.42-0.039-0.54,0.019c-0.075,0.037-0.117,0.126-0.21,0.146c-0.261,0.058-0.335-0.149-0.496-0.159\r\n\t\t\t\tc-0.136-0.008-0.364,0.083-0.483,0.025c-0.058-0.029-0.044-0.057-0.07-0.121c-0.05-0.125-0.201-0.158-0.375-0.159\r\n\t\t\t\tc-0.033-0.051-0.073-0.137-0.089-0.197c-0.053-0.012-0.097,0.016-0.114,0.064c0.015,0.025,0.03,0.051,0.044,0.076\r\n\t\t\t\tc0.028-0.002,0.055-0.004,0.083-0.006c0.013,0.011,0.025,0.021,0.038,0.032c-0.016,0.063-0.425,0.178-0.515,0.21\r\n\t\t\t\tc0.006,0.004,0.013,0.008,0.019,0.013c-0.008,0.036-0.018,0.036-0.038,0.057c0.053,0.026,0.197,0.299,0.152,0.394\r\n\t\t\t\tc-0.025,0.044-0.094,0.072-0.152,0.083c-0.065-0.049-0.097-0.164-0.146-0.229c0.015-0.1,0.07-0.186,0.121-0.254\r\n\t\t\t\tc-0.012-0.102-0.056-0.167-0.089-0.254c0.041-0.061,0.144-0.086,0.241-0.089c0.011-0.013,0.021-0.025,0.032-0.038\r\n\t\t\t\tc-0.013-0.064-0.059-0.101-0.114-0.121c-0.156-0.06-0.195,0.139-0.273,0.184c-0.04,0.013-0.081,0.025-0.121,0.038\r\n\t\t\t\tc0.019-0.036,0.046-0.051,0.032-0.102c0.027,0.011,0.029,0.016,0.038,0.045h0.006c0.052-0.033,0.079-0.079,0.121-0.121\r\n\t\t\t\tc-0.08-0.166-0.161-0.342-0.337-0.413c-0.058-0.023-0.134,0.003-0.203-0.026c-0.026-0.01-0.121-0.049-0.159-0.038\r\n\t\t\t\tc-0.047,0.032-0.093,0.064-0.14,0.095c-0.03,0.018-0.063,0.012-0.102,0.026c-0.12,0.043-0.172,0.128-0.331,0.095\r\n\t\t\t\tc-0.05-0.063-0.09-0.028-0.135-0.022c-0.26-1.288-0.395-2.619-0.457-3.968c0.016-0.002,0.033-0.001,0.046-0.007\r\n\t\t\t\tc0.167-0.078,0.167-0.194,0.47-0.121c0.006,0.011,0.013,0.021,0.019,0.032v0.006c-0.047,0.013-0.093,0.025-0.14,0.038\r\n\t\t\t\tc0.108,0.084,0.261,0.035,0.419,0.083c0.114,0.034,0.208,0.114,0.337,0.146c0.067,0.017,0.202-0.02,0.261,0.019\r\n\t\t\t\tc0.043,0.025,0.066,0.123,0.07,0.184c0.099,0.06,0.295,0.06,0.388,0.127c-0.006,0.065-0.053,0.106-0.102,0.127\r\n\t\t\t\tc-0.019,0.021-0.038,0.042-0.057,0.063v0.006c0.141,0.006,0.266-0.057,0.394-0.038c0.097,0.011,0.195,0.021,0.292,0.032\r\n\t\t\t\tc0.105-0.019,0.2-0.058,0.324-0.07c0.002-0.004,0.004-0.008,0.006-0.013c-0.124-0.092-0.202-0.151-0.432-0.146\r\n\t\t\t\tc-0.006-0.006-0.013-0.013-0.019-0.019c0.013-0.028,0.025-0.055,0.038-0.083c-0.079-0.081-0.36-0.089-0.483-0.14\r\n\t\t\t\tc-0.04-0.044-0.08-0.089-0.121-0.133c-0.131-0.09-0.318-0.074-0.477-0.146c-0.064-0.053-0.127-0.106-0.191-0.159H7.022\r\n\t\t\t\tc-0.163-0.037-0.338-0.074-0.559-0.07c-0.083,0.008-0.165,0.017-0.248,0.025c-0.059,0.014-0.109,0.043-0.163,0.068\r\n\t\t\t\tC6.038,32.677,6,32.344,6,32c0-0.404,0.042-0.798,0.06-1.198c0.069,0.073,0.127,0.176,0.179,0.209\r\n\t\t\t\tc0.057,0.035,0.12,0.025,0.133,0.102c-0.021,0.115-0.042,0.229-0.064,0.343c0.008,0.002,0.017,0.004,0.025,0.006\r\n\t\t\t\tc0.036,0.022,0.05-0.017,0.089-0.032c0.002,0.019,0.004,0.038,0.006,0.057c-0.025,0.035-0.04,0.043-0.083,0.063\r\n\t\t\t\tc0.038,0.07,0.076,0.14,0.115,0.21H6.52c0.006,0.032,0.013,0.064,0.019,0.095c0.019,0.013,0.038,0.025,0.057,0.038\r\n\t\t\t\tc0.051,0.105-0.017,0.164,0.133,0.172c0.035,0.058,0.068,0.193,0.108,0.242c0.047-0.022,0.112-0.023,0.178-0.032\r\n\t\t\t\tc-0.004,0.021-0.008,0.042-0.013,0.064h0.013c0.048-0.142,0.166-0.403,0.108-0.61c-0.023-0.081-0.082-0.166-0.108-0.261\r\n\t\t\t\tc-0.013-0.083-0.025-0.165-0.038-0.248c-0.062-0.179-0.316-0.446-0.267-0.699c0.032-0.1,0.064-0.199,0.095-0.299\r\n\t\t\t\tc0.053-0.085,0.131-0.155,0.165-0.26c0.15-0.028,0.305-0.087,0.369-0.197c0.047-0.082,0.048-0.15,0.127-0.197\r\n\t\t\t\tc0.074-0.044,0.216-0.039,0.28-0.076c0.064-0.08,0.127-0.161,0.191-0.242c0.07-0.011,0.14-0.021,0.21-0.032\r\n\t\t\t\tc0.025-0.021,0.051-0.042,0.076-0.063c0.002-0.004,0.004-0.009,0.006-0.013c-0.027-0.012-0.033-0.01-0.044-0.038\r\n\t\t\t\tc-0.025,0.019-0.067,0.035-0.095,0.051c-0.015-0.009-0.03-0.017-0.044-0.026c-0.019-0.013-0.023-0.028-0.032-0.051\r\n\t\t\t\tc0.025,0.019,0.035,0.04,0.07,0.051c0.054-0.032,0.047-0.06,0.089-0.083v-0.013c-0.03-0.031-0.081-0.057-0.14-0.057\r\n\t\t\t\tc-0.006-0.011-0.013-0.021-0.019-0.032c0.044,0.015,0.089,0.03,0.133,0.045c-0.006-0.011-0.013-0.021-0.019-0.032v-0.006\r\n\t\t\t\tc0.051,0.021,0.064,0.054,0.14,0.064c0.025-0.03,0.051-0.059,0.076-0.089c0.009-0.016,0.008-0.002,0.038,0\r\n\t\t\t\tc0.006-0.011,0.013-0.021,0.019-0.032c-0.001-0.047-0.012-0.063-0.038-0.083c-0.011-0.006-0.002-0.006-0.013,0\r\n\t\t\t\tc-0.028,0.017-0.029,0.052-0.044,0.081c0.002,0.005-0.004,0.01-0.001,0.014v-0.013c0-0.001,0-0.001,0.001-0.002\r\n\t\t\t\tc-0.01-0.027-0.001-0.054,0.005-0.087c-0.004-0.004-0.009-0.008-0.013-0.013c-0.06,0.01-0.113,0.02-0.191,0.019\r\n\t\t\t\tc0.008-0.038-0.02-0.071,0-0.108v-0.013c0.011,0.017-0.003,0.036,0.006,0.064c0.009,0.011,0.017,0.021,0.026,0.032\r\n\t\t\t\tc0.021-0.006,0.042-0.013,0.064-0.019c0-0.018-0.002-0.019-0.013-0.038c0.021,0.011,0.042,0.021,0.064,0.032\r\n\t\t\t\tc0.008-0.004,0.017-0.009,0.025-0.013c0.002-0.004,0.004-0.008,0.006-0.013c-0.011-0.015-0.021-0.029-0.032-0.044\r\n\t\t\t\tc0.034,0.019,0.057,0.04,0.089,0.025c0.004,0.015,0.008,0.03,0.013,0.045h0.019c-0.012-0.067-0.042-0.087-0.07-0.134h0.038\r\n\t\t\t\tC8.338,28.6,8.338,28.606,8.325,28.59c0.004-0.008,0.008-0.015,0.011-0.023c-0.024-0.086-0.083-0.085-0.17-0.066\r\n\t\t\t\tc-0.004-0.07-0.06-0.101-0.121-0.114c-0.002-0.004-0.004-0.008-0.006-0.013c0.011-0.006,0.021-0.013,0.032-0.019\r\n\t\t\t\tc0.043,0.021,0.076,0.045,0.095,0.089c0.03,0.02,0.023,0.021,0.07,0.019c-0.002-0.021-0.004-0.042-0.006-0.064\r\n\t\t\t\tc-0.02-0.013-0.034-0.028-0.052-0.038H8.172c-0.021-0.017-0.042-0.034-0.064-0.051c0.018,0.026,0.045,0.037,0.069,0.051h0.02\r\n\t\t\t\tc-0.002-0.013-0.004-0.025-0.006-0.038c0.017,0.006,0.034,0.013,0.051,0.019h0.006c-0.002-0.043-0.004-0.052-0.038-0.064\r\n\t\t\t\tc0.009-0.004,0.017-0.009,0.026-0.013c-0.082-0.042-0.117-0.054-0.159-0.133c0.034,0.03,0.068,0.059,0.102,0.089\r\n\t\t\t\tc0.006,0.006,0.013,0.013,0.019,0.019c0.036-0.023,0.042-0.039,0.057-0.083c-0.034-0.047-0.238-0.13-0.311-0.159\r\n\t\t\t\tc-0.002-0.007,0.001-0.013,0-0.019c0.068-0.003,0.075,0.022,0.127,0.045c-0.002-0.013-0.004-0.025-0.006-0.038\r\n\t\t\t\tc0.042,0.042,0.099,0.078,0.153,0.108c-0.016-0.09-0.078-0.09-0.095-0.165h0.006c0.012,0.032,0.027,0.045,0.057,0.057\r\n\t\t\t\tc0.004,0.004,0.008,0.008,0.013,0.013h0.006c-0.015-0.036-0.03-0.072-0.044-0.108c-0.02-0.107,0.072-0.052-0.006-0.197\r\n\t\t\t\tc0.017,0.002,0.034,0.004,0.051,0.006c0.002-0.019,0.004-0.038,0.006-0.057c0.019,0.012,0.011,0.001,0.019,0.026h0.006\r\n\t\t\t\tc0.011-0.014,0.011-0.017,0.013-0.045c0.002,0.011,0.004,0.021,0.006,0.032c0.029-0.02,0.034-0.024,0.032-0.045\r\n\t\t\t\tc0.015-0.011,0.03-0.021,0.044-0.032c-0.006,0.017-0.013,0.034-0.019,0.051c0.013,0.006,0.025,0.013,0.038,0.019\r\n\t\t\t\tc-0.025,0.006-0.051,0.013-0.076,0.019c-0.011,0.017-0.021,0.034-0.032,0.051v0.006h0.051c-0.013,0.035-0.02,0.044-0.07,0.044\r\n\t\t\t\tc-0.004,0.006-0.009,0.013-0.013,0.019c0.016,0.017,0.027,0.021,0.057,0.025c0.002,0.004,0.004,0.008,0.006,0.013v0.026\r\n\t\t\t\tc-0.013-0.007-0.025-0.013-0.038-0.019c-0.004,0.002-0.009,0.004-0.013,0.006c-0.004,0.013-0.009,0.025-0.013,0.038v0.006\r\n\t\t\t\tc0.047-0.025,0.036-0.01,0.089,0.013c0.004,0.006,0.009,0.013,0.013,0.019c-0.03,0.011-0.059,0.021-0.089,0.032\r\n\t\t\t\tc-0.002,0.004-0.004,0.008-0.006,0.013c0.011,0.015,0.021,0.03,0.032,0.044c0.017,0.011,0.034,0.021,0.051,0.032\r\n\t\t\t\tc0.021-0.013,0.042-0.025,0.064-0.038c-0.001,0.055-0.005,0.033-0.025,0.07c0.015,0.008,0.03,0.017,0.044,0.025\r\n\t\t\t\tc-0.006,0.013-0.013,0.026-0.019,0.038v0.006h0.006c0.026-0.01,0.031-0.014,0.051,0c-0.039,0.071-0.09,0.135-0.114,0.229\r\n\t\t\t\tc0.004,0.013,0.008,0.025,0.013,0.038c0.008-0.002,0.017-0.004,0.025-0.006c0.017-0.038,0.034-0.076,0.051-0.114\r\n\t\t\t\tc0.02,0,0.017,0.006,0.032-0.006c0.023-0.055,0.047-0.11,0.07-0.165c0.033-0.056,0.086-0.075,0.102-0.14\r\n\t\t\t\tc-0.004-0.04-0.008-0.081-0.013-0.121c-0.078-0.033-0.136-0.206-0.152-0.292c0.024-0.023,0.034-0.046,0.064-0.064\r\n\t\t\t\tc0.002,0.002,0.004,0.004,0.006,0.006c-0.017,0.031-0.037,0.044-0.057,0.07c0.054,0.073,0.068,0.144,0.184,0.14\r\n\t\t\t\tc0.005,0.037-0.005,0.046-0.013,0.083v0.006c0.004,0.002,0.008,0.004,0.013,0.006c0.055-0.041,0.152-0.125,0.152-0.216\r\n\t\t\t\tc0.013,0.004,0.026,0.008,0.038,0.013c0.032-0.093,0.078-0.196,0.095-0.305c-0.053-0.007-0.063-0.019-0.089-0.051\r\n\t\t\t\tc-0.002-0.006-0.004-0.013-0.006-0.019c0.029-0.023,0.034-0.034,0.064-0.026c0.019-0.053,0.038-0.106,0.057-0.159\r\n\t\t\t\tc-0.015,0.047-0.03,0.093-0.045,0.14c0.19-0.133,0.413-0.223,0.744-0.222c0.008-0.043,0.017-0.085,0.025-0.127\r\n\t\t\t\tc0.002-0.002,0.036,0,0.064-0.013c0.003,0.022-0.008,0.053-0.006,0.095c0.004,0.002,0.008,0.004,0.013,0.007\r\n\t\t\t\tc0.058-0.002,0.108-0.049,0.121-0.089h0.006c0.013,0.016,0.014,0.037,0.013,0.07c0.072-0.017,0.144-0.034,0.216-0.051\r\n\t\t\t\tc0-0.035-0.012-0.048-0.019-0.067v0.016c-0.03,0.013-0.059,0.025-0.089,0.038c-0.017-0.006-0.034-0.013-0.051-0.019\r\n\t\t\t\tc-0.017-0.095-0.061-0.182-0.165-0.191c0.011-0.069,0.067-0.083,0.127-0.102c0.002-0.006,0.004-0.013,0.006-0.019\r\n\t\t\t\tc-0.052-0.015-0.053-0.008-0.083-0.057c0.045-0.073,0.096-0.241,0.184-0.267v-0.07c0.028-0.011,0.055-0.021,0.083-0.032\r\n\t\t\t\tc-0.002,0.011-0.004,0.021-0.006,0.032c0.013,0.006,0.025,0.013,0.038,0.019h0.006c0.028-0.036,0.033-0.028,0.025-0.076\r\n\t\t\t\tc0.011-0.009,0.021-0.017,0.032-0.025c-0.004,0.015-0.008,0.03-0.013,0.044c0.017,0.004,0.034,0.008,0.051,0.013\r\n\t\t\t\tc0.008-0.021,0.017-0.042,0.025-0.064c0.013,0.008,0.025,0.017,0.038,0.025c0.059-0.044,0.113-0.149,0.14-0.222h0.006\r\n\t\t\t\tc0.004,0.002,0.008,0.004,0.013,0.006c-0.008,0.021-0.017,0.042-0.025,0.064c0.002,0.004,0.004,0.008,0.006,0.013\r\n\t\t\t\tc0.027,0.008,0.055,0.017,0.083,0.025c-0.004-0.019-0.008-0.038-0.013-0.057c0.046,0.008,0.075-0.021,0.121-0.032\r\n\t\t\t\tc0.006,0.019,0.013,0.038,0.019,0.057c0.038-0.028,0.057-0.071,0.095-0.095c0.015,0.011,0.03,0.021,0.044,0.032\r\n\t\t\t\tc0.018-0.015,0.017-0.011,0.019-0.045c0.069,0.012,0.096-0.012,0.153-0.038c0.011-0.019,0.01-0.016,0.013-0.032h-0.051\r\n\t\t\t\tc0.011-0.015,0.021-0.03,0.032-0.045c-0.011-0.023-0.021-0.047-0.032-0.07c0.011,0.008,0.021,0.017,0.032,0.025\r\n\t\t\t\tc0.041-0.039,0.135-0.02,0.178,0.013c0.034-0.019,0.068-0.038,0.102-0.057c-0.006-0.013-0.013-0.026-0.019-0.038\r\n\t\t\t\tc0.023,0.013,0.047,0.025,0.07,0.038c0.139-0.017,0.194-0.143,0.343-0.146c0.013-0.023,0.025-0.047,0.038-0.07\r\n\t\t\t\tc-0.006-0.019-0.013-0.038-0.019-0.057c0.024,0.019,0.04,0.035,0.044,0.076c0.019-0.011,0.038-0.021,0.057-0.032h0.006\r\n\t\t\t\tc-0.025,0.065-0.104,0.124-0.172,0.146c-0.008,0.017-0.011,0.022-0.013,0.051c0.108-0.056,0.302-0.039,0.432-0.025\r\n\t\t\t\tc0.004,0.006,0.008,0.013,0.013,0.019c-0.092-0.002-0.148,0.034-0.229,0.051v0.044c-0.023-0.018-0.019-0.021-0.044-0.025\r\n\t\t\t\tc0.002-0.023,0.004-0.047,0.006-0.07c-0.083-0.003-0.358,0.164-0.413,0.222h-0.013c0.011,0.006,0.021,0.013,0.032,0.019v0.006\r\n\t\t\t\tc-0.027,0.003-0.018,0.002-0.038-0.013c-0.04,0.023-0.08,0.047-0.121,0.07c-0.002,0.004-0.004,0.008-0.006,0.013\r\n\t\t\t\tc0.006,0.004,0.013,0.008,0.019,0.013c0.03-0.019,0.059-0.038,0.089-0.057c-0.014,0.038-0.023,0.015-0.044,0.038\r\n\t\t\t\tc-0.076,0.082-0.026,0.172-0.006,0.26c0.015-0.005,0.009-0.003,0.025-0.019c0.019,0.032,0.038,0.064,0.057,0.095\r\n\t\t\t\tc0.048-0.01,0.046-0.012,0.076,0.019c0.009-0.023,0.017-0.047,0.026-0.07c0.035-0.016,0.053-0.017,0.108-0.013v-0.045\r\n\t\t\t\tc0.006,0.004,0.013,0.009,0.019,0.013c0.062-0.036,0.089-0.171,0.203-0.172c0.014-0.051-0.01-0.053-0.013-0.108h0.038\r\n\t\t\t\tc0.006,0.011,0.013,0.021,0.019,0.032h0.006c0.023-0.015,0.034-0.023,0.045-0.051c0.004-0.002,0.008-0.004,0.013-0.006\r\n\t\t\t\tc-0.002,0.015-0.004,0.03-0.006,0.045c0.036,0.004,0.072,0.008,0.108,0.013c0.016-0.034,0.031-0.025,0.038-0.07\r\n\t\t\t\tc0.011,0.006,0.021,0.013,0.032,0.019c0.004-0.015,0.008-0.03,0.013-0.044c0.006-0.002,0.013-0.004,0.019-0.006\r\n\t\t\t\tc0.032,0.009,0.026,0.014,0.045,0.032c0.124-0.045,0.262-0.143,0.407-0.146c-0.002-0.009-0.004-0.017-0.006-0.025\r\n\t\t\t\tc0.032,0.002,0.064,0.004,0.095,0.006c-0.004-0.006-0.008-0.013-0.013-0.019c0.006-0.004,0.013-0.009,0.019-0.013\r\n\t\t\t\tc0.024-0.013,0.02-0.005,0.044,0.013c0.021-0.009,0.042-0.017,0.063-0.025c-0.027-0.034-0.068-0.036-0.133-0.032\r\n\t\t\t\tc-0.004-0.006-0.008-0.013-0.013-0.019c0.013-0.007,0.025-0.013,0.038-0.019c0.006-0.008,0.013-0.017,0.019-0.025\r\n\t\t\t\tc-0.021-0.021-0.042-0.042-0.063-0.064c-0.075-0.027-0.112,0.044-0.133-0.064c-0.066,0.01-0.086,0.052-0.133,0.07\r\n\t\t\t\tc-0.032,0.012-0.073,0.004-0.095,0.013c0.006-0.013,0.013-0.025,0.019-0.038h-0.013c-0.002-0.004-0.004-0.008-0.006-0.013\r\n\t\t\t\tc-0.067-0.031-0.119,0.027-0.165,0.006c-0.019-0.013-0.038-0.025-0.057-0.038c-0.028,0.002-0.055,0.004-0.083,0.006\r\n\t\t\t\tc-0.028-0.013-0.04-0.048-0.083-0.057h-0.013v-0.006c0.025-0.009,0.051-0.017,0.076-0.025c0.004-0.002,0.009-0.004,0.013-0.006\r\n\t\t\t\tc-0.103-0.049-0.301-0.028-0.267-0.191c-0.021-0.028-0.018-0.025-0.044-0.019c-0.013-0.053-0.009-0.079,0.013-0.121\r\n\t\t\t\tc-0.03-0.032-0.094-0.029-0.159-0.025c0.088-0.089,0.103-0.048,0.133-0.178c0.021-0.021,0.042-0.042,0.064-0.064\r\n\t\t\t\tc-0.015-0.011-0.03-0.021-0.044-0.032c-0.019,0.008-0.038,0.017-0.057,0.025v-0.032c-0.055,0.025-0.11,0.051-0.165,0.076\r\n\t\t\t\tc-0.065-0.089-0.112-0.14-0.254-0.152v-0.007c0.049-0.015,0.115-0.056,0.191-0.038c0.034,0.015,0.068,0.03,0.102,0.045\r\n\t\t\t\tc0.079-0.006,0.346-0.155,0.375-0.216c-0.094-0.249-0.411-0.255-0.674-0.152c-0.282,0.11-0.595,0.189-0.82,0.356\r\n\t\t\t\tc-0.184,0.136-0.321,0.345-0.502,0.489c0.154-0.325,0.477-0.718,0.775-0.896c0.079-0.047,0.223-0.03,0.299-0.083\r\n\t\t\t\tc0.108-0.076,0.07-0.268,0.267-0.337c0.117-0.041,0.317-0.025,0.439-0.006c0.178,0.027,0.354-0.025,0.515-0.006\r\n\t\t\t\tc0.163,0.008,0.326,0.017,0.489,0.025c0.219-0.035,0.465-0.038,0.61-0.146c0.083-0.091,0.165-0.182,0.248-0.273\r\n\t\t\t\tc0.155-0.015,0.309-0.03,0.464-0.044c0.1-0.032,0.288-0.2,0.375-0.267v-0.013c-0.042-0.055-0.085-0.11-0.127-0.165\r\n\t\t\t\tc0.034-0.061,0.064-0.142,0.095-0.21c-0.007-0.1-0.158-0.181-0.248-0.197c-0.041-0.008-0.112,0.043-0.153,0.064\r\n\t\t\t\tc-0.013-0.019-0.025-0.038-0.038-0.057c0.008-0.044,0.031-0.064,0.051-0.095c-0.257-0.247-0.418,0.027-0.61,0.133\r\n\t\t\t\tc-0.089,0.05-0.218,0.06-0.305,0.095c0.012-0.069,0.034-0.173,0.083-0.21c0.053-0.004,0.106-0.008,0.159-0.013\r\n\t\t\t\tc0.109-0.031,0.157-0.136,0.28-0.165c0.122-0.029,0.24-0.033,0.292-0.127c-0.11-0.028-0.22-0.055-0.33-0.083\r\n\t\t\t\tc-0.106-0.044-0.191-0.133-0.324-0.153c-0.101-0.015-0.161,0.043-0.261,0.038c0.021-0.051,0.042-0.102,0.064-0.152\r\n\t\t\t\tc-0.007-0.092-0.237-0.273-0.311-0.299h-0.095c-0.062-0.024-0.129-0.187-0.165-0.241c0.004-0.002,0.008-0.004,0.013-0.006\r\n\t\t\t\tc0.055-0.031,0.185,0.022,0.261,0c0.012-0.024,0.014-0.061,0.013-0.102c-0.084-0.062-0.178-0.095-0.242-0.178\r\n\t\t\t\tc0.027-0.025,0.057-0.044,0.102-0.051c-0.036-0.207-0.226-0.07-0.261-0.356c-0.028,0.002-0.055,0.004-0.083,0.006\r\n\t\t\t\tc-0.009-0.07,0.017-0.079,0.032-0.134c-0.122-0.141-0.365-0.561-0.508-0.629c-0.004-0.004-0.008-0.008-0.013-0.013\r\n\t\t\t\tc-0.021,0.042-0.042,0.085-0.064,0.127c-0.144,0.096-0.271,0.026-0.114,0.235c-0.096,0.122-0.182,0.158-0.184,0.388h-0.006\r\n\t\t\t\tc-0.051-0.051-0.057-0.152-0.153-0.159c-0.034,0.059-0.068,0.119-0.102,0.178c-0.077,0.058-0.266,0.055-0.349,0.095\r\n\t\t\t\tc-0.013-0.019-0.026-0.038-0.038-0.057c0.014-0.022,0.019-0.03,0.019-0.07c-0.149-0.221-0.275-0.116-0.483-0.044h-0.006\r\n\t\t\t\tc-0.044-0.056-0.038-0.084-0.026-0.178c0.036,0.002,0.072,0.004,0.108,0.006c0.112-0.165-0.211-0.619,0.013-0.724\r\n\t\t\t\tc0.011-0.023,0.014-0.056,0.013-0.095c-0.011-0.017-0.021-0.034-0.032-0.051c-0.039-0.011-0.088,0.06-0.178,0.038\r\n\t\t\t\tc-0.162-0.039-0.31-0.129-0.458-0.159c-0.052-0.065-0.056-0.061-0.013-0.14c-0.022-0.016-0.052-0.042-0.077-0.062\r\n\t\t\t\tc0.109-0.188,0.225-0.372,0.338-0.557c0.01,0.006,0.021,0.007,0.031,0.015c0.006,0.003,0.064-0.003,0.102,0.013\r\n\t\t\t\tc0.028,0.017,0.055,0.034,0.083,0.051c0.049,0.006,0.097,0.013,0.146,0.019c0.04,0.047,0.081,0.093,0.121,0.14\r\n\t\t\t\tc0.094,0.057,0.203,0.032,0.331,0.064c0.203,0.072,0.407,0.144,0.61,0.216c-0.067-0.217-0.212-0.375-0.381-0.489\r\n\t\t\t\tc-0.155-0.104-0.443-0.179-0.47-0.4c0.186,0,0.218,0.082,0.343,0.127c-0.009-0.049-0.017-0.097-0.026-0.146\r\n\t\t\t\tc0.188,0.145,0.277,0.375,0.604,0.349c0.069,0.109,0.145,0.196,0.273,0.248c-0.038-0.078-0.076-0.157-0.114-0.235\r\n\t\t\t\tc0.04,0.008,0.08,0.017,0.121,0.025h0.006c-0.006-0.184-0.176-0.25-0.153-0.432c0.084,0.057,0.177,0.169,0.216,0.267\r\n\t\t\t\tc0.008,0.006,0.017,0.013,0.025,0.019c0.037-0.334-0.178-0.289-0.292-0.477c0.006-0.013,0.013-0.026,0.019-0.038\r\n\t\t\t\tc0.025-0.006,0.051-0.013,0.076-0.019h0.013c-0.061-0.03-0.123-0.059-0.184-0.089c-0.069-0.041-0.11-0.13-0.191-0.153\r\n\t\t\t\tc-0.019,0.015-0.038,0.03-0.057,0.044c-0.008,0.008-0.017,0.017-0.025,0.026c-0.071-0.122-0.147-0.253-0.21-0.388\r\n\t\t\t\tc-0.053-0.009-0.106-0.017-0.159-0.025c-0.006-0.014-0.012-0.027-0.019-0.04c0.024-0.035,0.051-0.067,0.076-0.101\r\n\t\t\t\tc0.001,0.003,0.005,0.005,0.006,0.008c0.04-0.004,0.081-0.009,0.121-0.013c0.006-0.009,0.013-0.017,0.019-0.026\r\n\t\t\t\tc-0.022-0.025-0.045-0.05-0.067-0.075c0.044-0.062,0.092-0.121,0.137-0.183c0.134,0.06,0.208,0.164,0.343,0.226\r\n\t\t\t\tc0.072,0.033,0.155,0.015,0.21,0.051c-0.013,0.036-0.025,0.072-0.038,0.108c0.005,0.082,0.057,0.11,0.089,0.165\r\n\t\t\t\tc0.042-0.019,0.085-0.038,0.127-0.057c0.033,0.038,0.022,0.078,0.051,0.127c0.022,0.036,0.201,0.12,0.248,0.102h0.013\r\n\t\t\t\tc-0.015-0.064-0.03-0.127-0.045-0.191c0.011-0.076,0.021-0.153,0.032-0.229c0.004-0.002,0.008-0.004,0.013-0.006\r\n\t\t\t\tc0.036,0.05,0.089,0.124,0.159,0.14c0.035-0.09,0.113-0.136,0.222-0.152c-0.011-0.088-0.097-0.155-0.165-0.184\r\n\t\t\t\tc-0.002-0.004-0.004-0.009-0.006-0.013c0.15-0.095,0.182,0.061,0.324,0c0.025-0.019,0.058-0.097,0.089-0.127\r\n\t\t\t\tc0.002-0.006,0.004-0.013,0.006-0.019c-0.087-0.061-0.174-0.123-0.261-0.184c-0.092,0.084-0.164,0.079-0.299,0.051\r\n\t\t\t\tc0.013-0.043,0.025-0.085,0.038-0.127c-0.147-0.013-0.29,0.025-0.47,0.026v-0.095c0.061-0.015,0.123-0.03,0.184-0.044h0.013\r\n\t\t\t\tc-0.051-0.098-0.165-0.231-0.267-0.273c-0.037-0.015-0.062-0.003-0.087,0.008c0.618-0.794,1.268-1.56,1.972-2.276\r\n\t\t\t\tc0.027,0.005,0.054,0.009,0.08,0.014c0.042,0.011,0.084,0.021,0.127,0.032c0.022-0.003,0.044-0.006,0.065-0.009\r\n\t\t\t\tc0.003,0,0.005,0,0.008,0c0.003,0.007,0.006,0.014,0.01,0.022c0.02,0.004,0.051,0.001,0.079-0.002\r\n\t\t\t\tc0.003,0.003,0.005,0.006,0.008,0.008c-0.045,0.019-0.061,0.016-0.102,0.01c-0.025,0.007-0.079,0.031-0.085,0.046\r\n\t\t\t\tc-0.01,0.04,0.124,0.116,0.183,0.098c0.044-0.017,0.087-0.034,0.131-0.051c0.058-0.019,0.1-0.003,0.157-0.022\r\n\t\t\t\tc0.096-0.031,0.196-0.098,0.229-0.154c0.053-0.088-0.124-0.137-0.191-0.155c-0.063-0.017-0.099-0.061-0.143-0.099\r\n\t\t\t\tc-0.051-0.044-0.123-0.071-0.209-0.083c0.015-0.015,0.032-0.028,0.047-0.043c0.017,0.003,0.035,0.009,0.05,0.01\r\n\t\t\t\tc0.011-0.005,0.009-0.006,0.015-0.011c0.018-0.001,0.036-0.001,0.055-0.002c0.098,0.013,0.166,0.087,0.242,0.125\r\n\t\t\t\tc0.058,0.029,0.126,0.035,0.206,0.042c0.022,0.002,0.033,0.013,0.057,0.012c0.021-0.022,0.037-0.048,0.097-0.049\r\n\t\t\t\tc0.002,0.002,0.005,0.004,0.007,0.005c0.001,0.001,0.003,0.003,0.004,0.004c-0.009,0.006-0.019,0.012-0.028,0.019\r\n\t\t\t\tc0.003,0.004,0.006,0.009,0.01,0.013c0.082-0.002,0.101-0.036,0.149-0.053c0.04-0.014,0.063,0.003,0.095-0.008\r\n\t\t\t\tc-0.012,0.025-0.046,0.04-0.061,0.063c-0.015,0.023-0.012,0.045-0.025,0.07c-0.007,0.014-0.031,0.02-0.038,0.036\r\n\t\t\t\tc0.01,0.019,0.049,0.027,0.043,0.05c-0.003,0.006-0.051,0.024-0.06,0.026c0,0.019-0.02,0.038-0.005,0.057\r\n\t\t\t\tc0.01,0.008,0.024,0.008,0.042,0.007c0.003,0.002,0.006,0.003,0.009,0.005c-0.017,0.009-0.038,0.017-0.052,0.026\r\n\t\t\t\tc-0.001,0.018,0.024,0.052,0.013,0.071c-0.012,0.019-0.048,0.03-0.06,0.051c0,0.001,0,0.001,0,0.002\r\n\t\t\t\tc0.084-0.011,0.07-0.036,0.138-0.055c0.04,0.003,0.027,0.022,0.052,0.038c0.012,0.003,0.025,0.006,0.037,0.01\r\n\t\t\t\tc0.001,0.001,0.002,0.002,0.004,0.003c0,0.002,0,0.005,0,0.007c-0.016,0.04-0.137,0.028-0.188,0.046\r\n\t\t\t\tc-0.007,0.004-0.065,0.071-0.067,0.078c0.003,0.008,0.005,0.016,0.008,0.024c-0.011,0.012-0.022,0.025-0.032,0.038\r\n\t\t\t\tc-0.019,0.031-0.038,0.062-0.057,0.092c0.074-0.015,0.084-0.049,0.159-0.064c0.061,0.021,0.023,0.086-0.02,0.107\r\n\t\t\t\tc-0.029,0.014-0.071,0.006-0.102,0.011c-0.063,0.01-0.105,0.042-0.185,0.049c-0.054,0.004-0.117-0.01-0.169,0.006\r\n\t\t\t\tc-0.118,0.035-0.158,0.131-0.289,0.172c0.034,0.002,0.095,0.005,0.125,0.003c0.039-0.009,0.078-0.018,0.118-0.027\r\n\t\t\t\tc0.023,0.004,0.047,0.008,0.07,0.012c0.05,0.008,0.104,0.007,0.161,0.008c0.03-0.031,0.065-0.027,0.119-0.048\r\n\t\t\t\tc0.001-0.002,0.002-0.004,0.003-0.006c0-0.015-0.011-0.025-0.03-0.026c0,0,0-0.001-0.001-0.002\r\n\t\t\t\tc0.021-0.031,0.098-0.036,0.127-0.016c0.007,0.042-0.069,0.055-0.07,0.092c-0.002,0.059,0.172,0.07,0.202,0.108\r\n\t\t\t\tc-0.014,0.005-0.016,0.007-0.013,0.017c-0.062-0.014-0.133-0.027-0.211-0.024c-0.053,0.005-0.106,0.01-0.159,0.015\r\n\t\t\t\tc-0.058,0-0.109-0.014-0.16-0.022c-0.067-0.011-0.133-0.021-0.2-0.032c-0.003,0.001-0.007,0.001-0.01,0.002\r\n\t\t\t\tc-0.003,0.006-0.007,0.012-0.01,0.018c0,0.026,0.154,0.053,0.194,0.053c0.012,0.005,0.034,0.016,0.012,0.028\r\n\t\t\t\tc-0.041,0.017-0.145-0.037-0.22-0.018c-0.111,0.028-0.099,0.092-0.137,0.146c-0.027,0.036-0.054,0.071-0.081,0.107\r\n\t\t\t\tc-0.003,0.008,0.004,0.014,0.009,0.02c0.107,0.021,0.169-0.081,0.21-0.108c0.029-0.009,0.058-0.018,0.086-0.026\r\n\t\t\t\tc0.066-0.032,0.111-0.067,0.214-0.086c-0.003,0.016-0.019,0.023-0.018,0.04c0.034,0.031,0.073,0.012,0.142,0.008\r\n\t\t\t\tc0.019,0,0.038-0.001,0.058-0.001c0.029-0.02,0.092-0.051,0.055-0.082c0,0,0-0.001-0.001-0.002\r\n\t\t\t\tc0.073-0.008,0.116-0.013,0.164,0.002c0.001,0.002,0.001,0.004,0.002,0.006c-0.029,0.03-0.094,0.055-0.093,0.094\r\n\t\t\t\tc0.024,0.013,0.055,0.015,0.064,0.043c-0.107,0.003-0.221,0.01-0.318,0.003c-0.048-0.004-0.097-0.025-0.149-0.02\r\n\t\t\t\tc-0.05,0.005-0.095,0.041-0.126,0.057c-0.053,0.028-0.107,0.056-0.16,0.084c-0.031,0.011-0.061,0.023-0.092,0.034\r\n\t\t\t\tc-0.026,0.023-0.052,0.046-0.077,0.07c0.097,0.037,0.343-0.041,0.494-0.055c0.031-0.005,0.062-0.01,0.093-0.014\r\n\t\t\t\tc0.025,0.006,0.05,0.012,0.074,0.017c0.027-0.002,0.053-0.004,0.08-0.005c0.071,0.006,0.103,0.061,0.143,0.099\r\n\t\t\t\tc-0.048-0.007-0.096-0.013-0.143-0.019c-0.175-0.014-0.382-0.023-0.599,0.048c-0.044,0.013-0.088,0.026-0.132,0.039\r\n\t\t\t\tc0.033,0.026,0.093,0.01,0.126,0.031c0.015,0.022,0.03,0.043,0.045,0.065c0.009,0.006,0.187,0.026,0.212,0.028\r\n\t\t\t\tc0.027-0.007,0.031-0.019,0.051-0.03c0.071-0.01,0.102,0.049,0.058,0.079c-0.07,0.047-0.247,0.037-0.329,0.081\r\n\t\t\t\tc-0.002,0-0.003,0.001-0.005,0.001c0.03,0.018,0.163,0.033,0.21,0.036c-0.003,0.003-0.155,0.049-0.161,0.049\r\n\t\t\t\tc-0.041,0.003-0.061-0.021-0.109,0.004c-0.042,0.022-0.094,0.081-0.039,0.115c0.01,0.006,0.061,0.009,0.061,0.018\r\n\t\t\t\tc0.001,0.014-0.046,0.027-0.052,0.042c-0.006,0.028,0.035,0.04,0.072,0.026c0.049-0.018,0.116-0.057,0.149-0.083\r\n\t\t\t\tc0.068-0.052,0.139-0.105,0.219-0.153c0.026-0.012,0.052-0.023,0.078-0.035c0.04-0.037,0.08-0.074,0.119-0.111\r\n\t\t\t\tc0.043-0.03,0.109-0.051,0.168-0.075c0.037-0.015,0.07-0.028,0.113-0.042c0.041-0.009,0.082-0.018,0.123-0.027\r\n\t\t\t\tc0.021-0.007,0.051-0.021,0.08-0.02c0.023,0.007,0.047,0.013,0.07,0.02c-0.022,0.019-0.042,0.053-0.07,0.067\r\n\t\t\t\tc-0.075,0.036-0.22,0.019-0.315,0.037c-0.025,0.043-0.11,0.069-0.158,0.098c-0.009,0.008-0.002,0.019-0.007,0.028\r\n\t\t\t\tc-0.013,0.026-0.056,0.051-0.112,0.061c0.003,0.009,0.006,0.018,0.009,0.026c-0.158,0.057-0.262,0.142-0.375,0.215\r\n\t\t\t\tc-0.03,0.019-0.109,0.042-0.12,0.068c-0.012,0.015,0.009,0.03,0.021,0.039c0.065,0.049,0.103,0.014,0.195-0.009\r\n\t\t\t\tc-0.019,0.04-0.065,0.091-0.144,0.109c-0.001,0.005-0.002,0.009-0.003,0.014c0.052,0.027,0.141,0.031,0.175-0.022\r\n\t\t\t\tc0.113-0.018,0.086,0.118,0.06,0.151c0.003,0.005,0.006,0.006,0.012,0.013c0.055-0.019,0.148-0.049,0.186-0.075\r\n\t\t\t\tc0.004-0.001,0.008-0.002,0.012-0.002c0.002,0.001,0.004,0.001,0.006,0.002c0.001,0.002,0.001,0.004,0.002,0.006\r\n\t\t\t\tc-0.05,0.055-0.176,0.082-0.215,0.141c0.012,0.026,0.047,0.037,0.078,0.043c0.037-0.003,0.063-0.022,0.086-0.035\r\n\t\t\t\tc0.013,0.011,0.023,0.019,0.028,0.038l-0.049,0.069c-0.008,0.002-0.017,0.003-0.025,0.005c0.026,0.048,0.092,0.004,0.15,0.016\r\n\t\t\t\tc0.032,0.007,0.037,0.052,0.057,0.069c-0.179,0.032-0.096,0.172-0.138,0.254c-0.009,0.019-0.043,0.094-0.017,0.116\r\n\t\t\t\tc0.006,0.006,0.01,0.008,0.021,0.009c0.036,0,0.069-0.044,0.086-0.058c0.047-0.038,0.105-0.089,0.124-0.137\r\n\t\t\t\tc-0.001-0.015-0.003-0.029-0.004-0.044c0.001-0.019,0.025-0.055,0.047-0.067c0.006-0.002,0.011-0.003,0.017-0.005\r\n\t\t\t\tc0.034,0.014,0.057,0.047,0.075,0.077c0.002,0,0.004,0,0.006,0.001c0.011-0.016,0.023-0.032,0.034-0.048\r\n\t\t\t\tc-0.003-0.046-0.006-0.093-0.009-0.14c0.001-0.041,0.018-0.075,0.027-0.11c0.002-0.001,0.003-0.002,0.004-0.003\r\n\t\t\t\tc0.023,0.013,0.046,0.027,0.069,0.04c0.012,0.015-0.004,0.03-0.005,0.042c-0.002,0.033,0.023,0.085,0.059,0.092\r\n\t\t\t\tc0.037,0.007,0.092-0.018,0.131-0.027c0.005,0.037,0.052,0.138,0.083,0.157c0.029,0.009,0.057,0.019,0.086,0.029\r\n\t\t\t\tc0.033,0.016,0.053,0.039,0.077,0.065c0.001,0.003,0.002,0.005,0.003,0.008c-0.08,0.005-0.209-0.043-0.25-0.08\r\n\t\t\t\tc-0.027-0.024-0.028-0.082-0.07-0.091c-0.061-0.014-0.142,0.044-0.163,0.066c-0.002,0-0.003,0.001-0.005,0.001\r\n\t\t\t\tc0.02,0.01,0.078,0.031,0.064,0.059c-0.007,0.019-0.053,0.031-0.075,0.044c-0.062,0.036-0.11,0.071-0.19,0.104\r\n\t\t\t\tc-0.027,0.011-0.089,0.021-0.104,0.038c0.022,0.035,0.111,0.043,0.185,0.018c0.087-0.037,0.175-0.073,0.262-0.11\r\n\t\t\t\tc0.013-0.012,0.026-0.024,0.038-0.036c0.017,0.036,0.059,0.046,0.081,0.071c-0.024,0.009-0.063,0.011-0.098,0.022\r\n\t\t\t\tc-0.09,0.027-0.188,0.048-0.269,0.081c-0.035,0.015-0.092,0.041-0.134,0.034c0.005,0.043,0.049,0.052,0.057,0.092\r\n\t\t\t\tc0.009-0.001,0.019-0.001,0.028-0.002c0,0.002,0.001,0.003,0.001,0.005c-0.015,0.021-0.059,0.025-0.1,0.034\r\n\t\t\t\tc-0.001,0.003-0.002,0.006-0.002,0.009c0.071,0.035,0.051,0.061,0.071,0.126c0.078,0.018,0.126-0.035,0.181-0.058\r\n\t\t\t\tc0.036-0.015,0.083-0.023,0.132-0.032c-0.069,0.057-0.138,0.115-0.207,0.173c0.001,0.002,0.002,0.005,0.003,0.008\r\n\t\t\t\tc0.058,0.008,0.109-0.033,0.173-0.036c0.069-0.004,0.128,0.034,0.115,0.093c-0.012,0.053-0.138,0.066-0.08,0.133\r\n\t\t\t\tc0.048,0.01,0.079-0.016,0.127-0.014c0.002,0,0.003-0.001,0.005-0.001c-0.008,0.023-0.056,0.064-0.035,0.086\r\n\t\t\t\tc0,0.001,0.001,0.002,0.001,0.003c0.108-0.031,0.124-0.099,0.202-0.141c0.009,0.002,0.017,0.004,0.026,0.007\r\n\t\t\t\tc0.001,0.027-0.032,0.057-0.047,0.081c-0.042,0.065-0.084,0.13-0.126,0.195c-0.029,0.051,0.007,0.108,0.077,0.123\r\n\t\t\t\tc0.05,0,0.1,0,0.15,0c0.05,0.005,0.1,0.01,0.15,0.014c0.012,0.017,0.027,0.044,0.031,0.062c-0.019,0.015-0.049,0.031-0.085,0.039\r\n\t\t\t\tc0.002,0.01,0.001,0.012-0.009,0.02c0.009,0.017,0.026,0.022,0.046,0.028c0.037-0.01,0.093-0.026,0.121-0.041\r\n\t\t\t\tc0.002,0.004,0.004,0.008,0.007,0.012c-0.008,0.012-0.025,0.015-0.043,0.023c-0.061,0.029-0.098,0.044-0.103,0.095\r\n\t\t\t\tc0.112-0.018,0.147-0.073,0.235-0.096c0.023,0.072-0.093,0.095-0.116,0.152c0.011,0.023,0.039,0.022,0.053,0.041\r\n\t\t\t\tc-0.039,0.015-0.064,0.034-0.097,0.049c0.041,0.037,0.102,0.063,0.19,0.023c0.008-0.005,0.016-0.011,0.024-0.016\r\n\t\t\t\tc0.023-0.009,0.031,0.008,0.05,0c0.045-0.018,0.029-0.058,0.122-0.037c0,0.002,0.001,0.003,0.002,0.005\r\n\t\t\t\tc-0.013,0.033-0.073,0.046-0.136,0.061c0.058,0.029,0.233,0.015,0.271,0.055c0.036,0.037-0.063,0.081-0.014,0.117\r\n\t\t\t\tc0.006,0.002,0.012,0.001,0.023-0.001c0.028-0.024,0.047-0.046,0.101-0.061c0.008,0.002,0.015,0.004,0.023,0.006\r\n\t\t\t\tc0.006,0.033,0.035,0.061,0.034,0.088c-0.001,0.032-0.072,0.06-0.133,0.07c0.072,0.019,0.181,0.032,0.277,0\r\n\t\t\t\tc-0.001-0.01-0.006-0.026,0.007-0.035c0.001,0,0.002,0,0.003,0c0.025-0.008,0.049-0.015,0.074-0.023\r\n\t\t\t\tc0.018-0.009,0.018-0.024,0.048-0.029c0.001,0,0.002,0,0.003,0c0.001,0,0.002,0,0.002,0c0.001,0,0.002,0,0.003-0.001\r\n\t\t\t\tc0.001,0,0.002,0,0.003,0c0.032-0.001,0.061,0.018,0.104,0.004c0.031-0.018,0.062-0.035,0.094-0.053\r\n\t\t\t\tc0.044-0.016,0.092,0.019,0.092-0.034c0.064,0.001,0.128-0.025,0.114-0.063c-0.096-0.034-0.03-0.068,0.043-0.095\r\n\t\t\t\tc0.035,0.012,0.033,0.039,0.06,0.062c0.009,0.008,0.023,0.008,0.03,0.019c-0.036,0.036-0.115,0.1-0.125,0.14\r\n\t\t\t\tc0.023-0.018,0.04-0.047,0.076-0.059c0.023-0.008,0.049-0.002,0.073-0.012c0.024-0.019,0.048-0.037,0.072-0.055\r\n\t\t\t\tc0.008,0.022,0.018,0.041,0.034,0.055c0.013,0.012,0.052,0.019,0.053,0.04c0.001,0.034-0.057,0.046-0.088,0.07\r\n\t\t\t\tc-0.018,0.014-0.016,0.041-0.034,0.057c-0.035,0.025-0.07,0.05-0.105,0.075c0,0,0,0.001,0.001,0.002\r\n\t\t\t\tc0.032-0.001,0.055-0.016,0.087-0.017c0.02,0.011,0.033,0.028,0.047,0.046c0.002,0.001,0.004,0.002,0.006,0.002\r\n\t\t\t\tc0.075-0.019,0.046-0.092,0.085-0.126c0.041-0.013,0.102-0.007,0.101,0.026c-0.001,0.043-0.072,0.076-0.03,0.132\r\n\t\t\t\tc0.056,0.007,0.091-0.071,0.108-0.096c0.011-0.016,0.04-0.031,0.063-0.042c-0.021,0.042-0.041,0.083-0.062,0.125\r\n\t\t\t\tc0.006-0.001,0.012-0.002,0.017-0.003c0.053,0.045-0.139,0.11-0.08,0.183c0.052,0.007,0.11-0.041,0.178-0.037\r\n\t\t\t\tc0.043,0.002,0.057,0.042,0.094,0.052c0.006-0.001,0.012-0.002,0.017-0.003c0.057-0.029,0.042-0.124,0.109-0.141\r\n\t\t\t\tc0.08-0.02,0.159,0.014,0.22,0.018c0.039-0.001,0.078-0.003,0.117-0.004c0.03,0.001,0.076,0.02,0.11-0.001\r\n\t\t\t\tc0.013-0.009,0.015-0.023,0.02-0.035c0.036-0.085-0.093-0.067-0.067-0.122c-0.041,0.011-0.059,0.029-0.089,0.042\r\n\t\t\t\tc-0.065,0.028-0.129-0.005-0.144-0.044c0.136-0.026,0.396-0.115,0.395-0.18c-0.021,0.001-0.042,0.001-0.063,0.002\r\n\t\t\t\tc-0.034,0.009-0.058,0.035-0.104,0.036c-0.051,0.002-0.124-0.029-0.138-0.067c0.064-0.012,0.128-0.025,0.185-0.032\r\n\t\t\t\tc-0.019-0.013-0.058-0.022-0.087-0.023c-0.003-0.002-0.006-0.003-0.01-0.005c0.031-0.01,0.075-0.019,0.101-0.029\r\n\t\t\t\tc0.034-0.059-0.048-0.07,0.054-0.117c0-0.003,0-0.005,0-0.008c-0.048-0.03-0.174,0.004-0.201-0.043\r\n\t\t\t\tc-0.008-0.014,0.003-0.029,0.009-0.038c0.034-0.053,0.14-0.038,0.185-0.014c0.017-0.003,0.026-0.005,0.033-0.011\r\n\t\t\t\tc0.019-0.014,0.036-0.1,0.012-0.124c0.044-0.024,0.037-0.052,0.056-0.086c0.01-0.01,0.02-0.02,0.03-0.031\r\n\t\t\t\tc-0.041,0.006-0.092,0.025-0.124,0.016l-0.008-0.015c0.097-0.014,0.14-0.081,0.167-0.127c-0.03-0.052-0.1-0.085-0.104-0.156\r\n\t\t\t\tc-0.112-0.018-0.212-0.043-0.286-0.1c0.086-0.011,0.213,0.059,0.274,0.031c0.002-0.001,0.005-0.002,0.007-0.003\r\n\t\t\t\tc-0.001-0.003-0.002-0.005-0.003-0.008c-0.042-0.016-0.114-0.015-0.143-0.042c-0.025-0.024-0.027-0.071-0.049-0.092\r\n\t\t\t\tc0.047-0.029,0.093-0.059,0.14-0.088c0.046-0.019,0.099-0.029,0.134-0.05c-0.008-0.009-0.016-0.018-0.025-0.027\r\n\t\t\t\tc-0.005-0.014-0.011-0.028-0.016-0.042c-0.03-0.035-0.107-0.073-0.064-0.124c0-0.001-0.001-0.002-0.001-0.003\r\n\t\t\t\tc0.036,0.017,0.147,0.055,0.204,0.044c-0.001-0.003-0.002-0.005-0.003-0.008c0.006-0.008,0.012-0.008,0.012-0.019\r\n\t\t\t\tc-0.034-0.018-0.117-0.048-0.111-0.082c0.001-0.001,0.003-0.002,0.004-0.003c0.046,0.004,0.07,0.02,0.12,0.02\r\n\t\t\t\tc0.021-0.009,0.035-0.019,0.033-0.036c-0.026-0.023-0.065-0.029-0.091-0.051c0.001-0.002,0.002-0.005,0.003-0.007\r\n\t\t\t\tc0.035-0.01,0.079,0.009,0.106-0.015c0.019-0.013,0.014-0.041,0.035-0.055c0.018-0.012,0.068-0.012,0.091-0.021\r\n\t\t\t\tc0.015-0.022,0.003-0.047-0.001-0.075c-0.068,0.036-0.136,0.006-0.192,0.002c-0.019,0-0.038,0.001-0.058,0.001\r\n\t\t\t\tc-0.021-0.005-0.042-0.024-0.057-0.036c0,0,0-0.001,0-0.002c0.047,0,0.084,0.013,0.126,0.016\r\n\t\t\t\tc0.044-0.001,0.088-0.001,0.131-0.002c0.028-0.001,0.09-0.009,0.1-0.024c0.026-0.037-0.037-0.077-0.065-0.092\r\n\t\t\t\tc-0.023-0.013-0.046-0.027-0.069-0.04c-0.012-0.013-0.024-0.025-0.036-0.038c-0.018-0.01-0.063-0.003-0.087-0.007\r\n\t\t\t\tc-0.051-0.015-0.102-0.031-0.152-0.046c0.035-0.013,0.071-0.026,0.106-0.039c0.054-0.022,0.094-0.056,0.147-0.073\r\n\t\t\t\tc0.065-0.021,0.098,0.007,0.147-0.018c-0.003-0.033-0.056-0.036-0.075-0.06c0.04-0.014,0.032-0.041,0.033-0.07\r\n\t\t\t\tc-0.008-0.018-0.024-0.007-0.038-0.018c-0.01-0.017-0.02-0.034-0.03-0.051c-0.015-0.01-0.031-0.019-0.047-0.029\r\n\t\t\t\tc-0.088-0.043-0.195,0.005-0.197-0.102c-0.016-0.007-0.033-0.014-0.049-0.021c0.207-0.079,0.173-0.008,0.319,0\r\n\t\t\t\tc0.03-0.008,0.081-0.026,0.102-0.043c0.038-0.03,0.094-0.146,0.023-0.187c-0.046-0.027-0.126-0.019-0.183-0.035l-0.005,0.001\r\n\t\t\t\tc0,0,0-0.001-0.001-0.002c0.156-0.015,0.143-0.03,0.163-0.114c0.004-0.003,0.009-0.005,0.013-0.007c0.003,0,0.005,0,0.008,0\r\n\t\t\t\tc0.029,0.023,0.044,0.049,0.091,0.053c0.011,0.002,0.008-0.002,0.02-0.004c0.001,0,0.002,0,0.003,0\r\n\t\t\t\tc-0.017-0.036-0.034-0.072-0.051-0.108c0.001-0.001,0.003-0.002,0.005-0.003c0.035,0.01,0.044,0.023,0.074,0.039\r\n\t\t\t\tc0.01,0.002,0.021,0.004,0.031,0.006c0.009,0.009,0.018,0.019,0.028,0.028c0.03,0.017,0.13,0.009,0.165-0.018\r\n\t\t\t\tc0.031-0.024,0.019-0.064,0.056-0.086c0.014-0.008,0.03-0.006,0.037,0.001c0.13-0.104-0.137-0.115-0.131-0.166\r\n\t\t\t\tc0.002-0.017,0.048-0.033,0.064-0.046c0.043-0.032,0.089-0.076,0.116-0.114c-0.009,0-0.018-0.001-0.027-0.001\r\n\t\t\t\tc-0.002-0.001-0.004-0.002-0.006-0.004c0.05-0.023,0.021-0.065,0.001-0.1c0.055,0.009,0.141,0.024,0.224-0.01\r\n\t\t\t\tc-0.032,0.049-0.038,0.104-0.065,0.156c-0.017,0.033-0.065,0.069-0.066,0.104c0.008,0.011,0.016,0.021,0.024,0.032\r\n\t\t\t\tc0.015,0.03-0.047,0.071-0.007,0.098c0.021,0.016,0.068,0.009,0.106,0.008c0.001,0,0.002,0,0.002,0\r\n\t\t\t\tc-0.004-0.037,0.007-0.078-0.028-0.11c0.083-0.005,0.124-0.07,0.134-0.107c0.002-0.001,0.003-0.002,0.004-0.003\r\n\t\t\t\tc0.022,0.02,0.027,0.067,0.068,0.07c0.003,0,0.007,0,0.01,0c0.055-0.028,0.102-0.093,0.119-0.136\r\n\t\t\t\tc-0.006-0.004-0.012-0.009-0.018-0.013c0.001,0,0.002,0,0.003,0c0.045,0.009,0.167,0.05,0.2-0.008\r\n\t\t\t\tc0.002-0.031,0.004-0.063,0.006-0.094c0.012-0.023,0.053-0.042,0.051-0.069c0.004-0.047-0.125-0.031-0.121-0.087\r\n\t\t\t\tc0.012-0.034,0.201-0.025,0.247-0.027c0.022,0.013,0.039,0.036,0.067,0.044c0.065-0.002,0.086-0.04,0.101-0.069\r\n\t\t\t\tc0.032-0.059,0.046-0.123,0.077-0.184c0.014-0.028,0.029-0.056,0.043-0.085c0.008-0.022-0.001-0.073-0.025-0.093\r\n\t\t\t\tc-0.006-0.002-0.003-0.002-0.013-0.001c0.018-0.037,0.066-0.059,0.078-0.1c-0.014-0.01-0.028-0.02-0.042-0.03\r\n\t\t\t\tc-0.026-0.028-0.037-0.094-0.024-0.122c0.013-0.028,0.059-0.047,0.07-0.077c0.014-0.038-0.033-0.077-0.004-0.117\r\n\t\t\t\tc0.02-0.027,0.112-0.04,0.135-0.086c0.002-0.016,0.004-0.032,0.005-0.048c0.016-0.031,0.132-0.113,0.06-0.153\r\n\t\t\t\tc-0.023-0.013-0.064-0.006-0.096-0.01c-0.002,0-0.003,0.001-0.005,0.001c0.016-0.009,0.034-0.011,0.039-0.024\r\n\t\t\t\tc0.017-0.065-0.146-0.086-0.173-0.118c0.009-0.012,0.018-0.025,0.027-0.037c0.001-0.001,0.003-0.002,0.004-0.003\r\n\t\t\t\tc0.031,0.059,0.15,0.093,0.239,0.092c0.045,0,0.091-0.01,0.128-0.003c0.046,0.009,0.076,0.04,0.128,0.044\r\n\t\t\t\tc0.046,0.004,0.173-0.02,0.191-0.045c-0.003-0.044-0.086-0.053-0.114-0.083c0.091,0.005,0.077-0.035,0.134,0.031\r\n\t\t\t\tc0.041,0.007,0.101-0.012,0.116-0.034c0.001-0.052-0.066-0.084-0.058-0.137c0.005-0.005,0.011-0.01,0.016-0.015\r\n\t\t\t\tc0.03,0.025,0.076,0.076,0.147,0.053c0.075-0.023,0.014-0.08,0.073-0.109c0.046-0.014,0.093-0.029,0.139-0.043\r\n\t\t\t\tc0.048-0.025,0.083-0.063,0.134-0.089c0.033-0.013,0.065-0.027,0.098-0.04c0.023-0.014,0.024-0.037,0.052-0.051\r\n\t\t\t\tc0.052-0.027,0.165-0.104,0.16-0.147c0.013,0,0.026-0.001,0.039-0.001c0.009-0.007,0.007-0.015,0.014-0.021\r\n\t\t\t\tc0.024-0.02,0.098-0.01,0.069-0.046c-0.007-0.009-0.015-0.014-0.02-0.028c0.02-0.022,0.045-0.041,0.1-0.051\r\n\t\t\t\tc-0.003-0.01-0.007-0.02-0.01-0.03c0.004-0.01,0.018-0.015,0.036-0.02c0.005-0.043-0.016-0.072-0.045-0.098\r\n\t\t\t\tc0.008-0.035,0.079-0.049,0.107-0.077c0-0.029-0.031-0.052-0.063-0.055c0.037-0.037,0.131-0.031,0.146-0.078\r\n\t\t\t\tc-0.024-0.02-0.058-0.024-0.069-0.057c0.023-0.025,0.075-0.06,0.135-0.054c0.001,0,0.002,0,0.003,0\r\n\t\t\t\tc-0.033-0.02-0.066-0.041-0.099-0.061c-0.089-0.081,0.158-0.142,0.204-0.197c-0.022,0.004-0.029,0-0.037-0.01\r\n\t\t\t\tc-0.002-0.001-0.004-0.002-0.006-0.002c0,0,0-0.001-0.001-0.002c0.032-0.002,0.069,0.005,0.1-0.008\r\n\t\t\t\tc0.004-0.004,0.008-0.007,0.012-0.011c-0.001-0.024-0.034-0.036-0.057-0.044c-0.007-0.043,0.064-0.091,0.107-0.117\r\n\t\t\t\tc0.015,0.003,0.03,0.006,0.045,0.009c-0.008-0.04-0.016-0.08-0.024-0.12c-0.038,0.015-0.036,0.038-0.061,0.057\r\n\t\t\t\tc-0.04,0.031-0.1,0.067-0.155,0.09c-0.046,0.018-0.166,0.053-0.22,0.054c-0.055,0.001-0.099-0.006-0.169,0.007\r\n\t\t\t\tc-0.086,0.017-0.192,0.071-0.27,0.055c-0.009-0.018-0.019-0.035-0.028-0.053c-0.001,0-0.002,0-0.003,0.001\r\n\t\t\t\tc-0.072,0.055-0.152,0.123-0.2,0.186c-0.031,0.04-0.06,0.078-0.102,0.114c-0.038,0.032-0.043,0.082-0.099,0.107\r\n\t\t\t\tc-0.053,0.023-0.122,0.012-0.178,0.027c-0.003,0-0.006-0.001-0.008-0.002c-0.047-0.023-0.103,0.025-0.159,0.03\r\n\t\t\t\tc-0.014-0.012-0.007-0.021,0.003-0.032c0.022-0.023,0.056-0.047,0.12-0.051c0.022-0.001,0.054-0.002,0.075-0.013\r\n\t\t\t\tc0.068-0.034,0.046-0.111,0.096-0.141c0.031-0.019,0.151-0.057,0.162-0.078c0.014-0.025-0.022-0.049-0.044-0.053\r\n\t\t\t\tc-0.04,0.008-0.037,0.022-0.06,0.033l-0.116,0.034c-0.082,0.034-0.185,0.115-0.294,0.118c-0.015-0.011-0.018-0.03-0.038-0.036\r\n\t\t\t\tc-0.051,0.004-0.131,0.08-0.148,0.105c-0.006,0.001-0.012,0.001-0.018,0.002c-0.003,0-0.005,0-0.008,0\r\n\t\t\t\tc-0.046-0.074,0.259-0.214,0.154-0.309c-0.031-0.028-0.086-0.028-0.126-0.046c0.103-0.026,0.206-0.053,0.309-0.079\r\n\t\t\t\tc0.011-0.005,0.016-0.012,0.017-0.022c0.05-0.019,0.101-0.031,0.138-0.055c0.04-0.026,0.15-0.164,0.158-0.201\r\n\t\t\t\tc0.003-0.016-0.028-0.058-0.042-0.07c-0.016-0.014-0.044-0.019-0.068-0.024c-0.11-0.022-0.111,0.021-0.198,0.048\r\n\t\t\t\tc-0.092,0.028-0.168-0.001-0.196,0.069c-0.047,0.001-0.074-0.025-0.115-0.028c-0.045-0.003-0.093,0.034-0.122,0.047\r\n\t\t\t\tc-0.001,0-0.002,0-0.003,0c0,0,0-0.001-0.001-0.002c0.016-0.039,0.101-0.058,0.108-0.097c0.007-0.042-0.147-0.072-0.199-0.067\r\n\t\t\t\tc-0.027,0.007-0.053,0.015-0.08,0.022c-0.065,0.001-0.133-0.039-0.158-0.08c0.031-0.004,0.053,0.006,0.077,0.01\r\n\t\t\t\tc0.032,0.005,0.153,0.002,0.167-0.005c0.121,0.041,0.265,0.068,0.372,0.122c0.097-0.022,0.152-0.08,0.272-0.089\r\n\t\t\t\tc0.1-0.007,0.172,0.031,0.261,0.04c0.04-0.01,0.035-0.031,0.071-0.042c0.056,0.011,0.104,0.041,0.15,0.063\r\n\t\t\t\tc0.024,0.008,0.048,0.017,0.071,0.025c0.016,0.019,0.031,0.037,0.047,0.056c0.021,0.005,0.032-0.001,0.046,0.011\r\n\t\t\t\tc0.015,0.022,0.03,0.044,0.045,0.066c0.042,0.038,0.131,0.059,0.2,0.07c0.101,0.016,0.192,0.009,0.27-0.045\r\n\t\t\t\tc0.017-0.012,0.034-0.02,0.038-0.036c0.013-0.051-0.114-0.086-0.107-0.166c0.001-0.001,0.003-0.002,0.004-0.003\r\n\t\t\t\tc0.014,0.037,0.178,0.137,0.22,0.148c0.022,0.005,0.059,0.007,0.087-0.007c0.02-0.01,0.031-0.026,0.039-0.041\r\n\t\t\t\tc0.037-0.061-0.073-0.08-0.109-0.114c0.003-0.006,0.006-0.013,0.01-0.019c-0.026,0-0.033-0.018-0.043-0.033\r\n\t\t\t\tc-0.013-0.002-0.028,0-0.049,0.004c-0.004-0.04,0.038-0.112-0.07-0.076c0.009-0.016,0.01-0.032,0.012-0.052\r\n\t\t\t\tc-0.015,0.002-0.03,0.005-0.045,0.007c-0.002,0-0.004,0-0.005-0.001c-0.033-0.116-0.015-0.165-0.164-0.203\r\n\t\t\t\tc-0.003,0-0.005,0-0.008,0c-0.019,0.045-0.027,0.105-0.038,0.15c-0.001,0.001-0.003,0.002-0.004,0.003\r\n\t\t\t\tc-0.006-0.003-0.013-0.007-0.019-0.01c-0.004-0.025,0.002-0.056-0.014-0.084c-0.022-0.037-0.043-0.094-0.038-0.131\r\n\t\t\t\tc-0.051,0.012-0.061,0.058-0.095,0.08c-0.009-0.002-0.019-0.003-0.028-0.005c0-0.058-0.017-0.052-0.091-0.052\r\n\t\t\t\tc-0.013-0.02-0.001-0.032-0.007-0.054c-0.005-0.001-0.01-0.003-0.014-0.004c-0.012,0.001-0.02,0.003-0.029,0.007\r\n\t\t\t\tc-0.007-0.003-0.006-0.001-0.01-0.008c-0.053,0.01-0.081,0.001-0.126,0.003c-0.151,0.005-0.169,0.037-0.238-0.051\r\n\t\t\t\tc-0.041-0.009-0.201-0.016-0.26-0.004c-0.013,0.035-0.019,0.069-0.038,0.102c-0.018,0.027-0.037,0.054-0.055,0.08\r\n\t\t\t\tc-0.003,0.002-0.006,0.005-0.008,0.007c-0.027-0.016-0.116-0.06-0.103-0.103c0.009-0.015,0.038-0.018,0.056-0.029\r\n\t\t\t\tc0.021-0.013,0.084-0.093,0.073-0.115c-0.015-0.03-0.082-0.03-0.118-0.039c-0.039-0.01-0.067-0.043-0.116-0.041\r\n\t\t\t\tc-0.046,0.002-0.061,0.033-0.074,0.049c-0.018,0.016-0.035,0.032-0.053,0.048c-0.021,0.029-0.031,0.063-0.043,0.095\r\n\t\t\t\tc-0.007,0.002-0.013,0.004-0.019,0.005c-0.015-0.051-0.072-0.083-0.151-0.068c0,0,0-0.001-0.001-0.001\r\n\t\t\t\tc0.024-0.031,0.103-0.012,0.139-0.034c0.06-0.036,0.077-0.119,0.142-0.155c0.004-0.005,0.009-0.01,0.013-0.016\r\n\t\t\t\tc-0.078-0.016-0.155-0.032-0.243-0.04c-0.032,0.023-0.05,0.013-0.09,0.032c-0.021,0.015-0.043,0.03-0.064,0.045\r\n\t\t\t\tc-0.072,0.047-0.113,0.067-0.106,0.143c-0.023-0.003-0.035-0.007-0.05-0.017c-0.124-0.083,0.099-0.103,0.101-0.159\r\n\t\t\t\tc0.001-0.031-0.064-0.029-0.086-0.038c-0.002,0-0.004,0-0.005-0.001c0,0,0-0.001-0.001-0.002c0.065-0.02,0.17-0.047,0.208-0.018\r\n\t\t\t\tc0.055-0.015,0.091-0.086,0.101-0.119c0.002-0.012,0.004-0.024,0.007-0.036c0.019-0.029,0.096-0.064,0.136-0.084\r\n\t\t\t\tc0.001-0.002,0.002-0.004,0.003-0.005c-0.051-0.005-0.107-0.018-0.136-0.046c0.06,0.007,0.119,0.006,0.189,0.005\r\n\t\t\t\tc-0.007-0.017-0.02-0.023-0.032-0.034c-0.018-0.066,0.148-0.105,0.248-0.112c0.019-0.003,0.038-0.006,0.058-0.01\r\n\t\t\t\tc0.014,0.001,0.034,0.006,0.062-0.003c0.018-0.006,0.028-0.016,0.039-0.024c0.005,0.031-0.025,0.045-0.053,0.063\r\n\t\t\t\tc-0.039,0.004-0.2-0.007-0.232,0.033c0,0.003,0,0.005,0,0.008c0.038,0.019,0.086,0.056,0.135,0.064\r\n\t\t\t\tc0.063,0.01,0.146-0.01,0.22-0.012c0.032,0,0.063,0,0.095,0c0.05-0.056,0.09-0.128,0.108-0.194\r\n\t\t\t\tc0.015-0.005,0.03-0.001,0.047-0.002c0.036-0.002,0.135-0.04,0.152-0.052c0.047-0.035-0.09-0.189-0.128-0.197\r\n\t\t\t\tc-0.032-0.007-0.07-0.002-0.107-0.004c-0.059-0.004-0.24-0.04-0.269,0.031c0.007,0.018,0.019,0.023,0.032,0.034\r\n\t\t\t\tc0.001,0.002,0.001,0.003,0.002,0.005c-0.054,0.001-0.109,0.001-0.163,0.001c-0.002,0-0.003,0.001-0.005,0.001\r\n\t\t\t\tc-0.006-0.034,0.037-0.085,0.002-0.115c-0.013-0.007-0.061,0.002-0.077,0c-0.003-0.017,0.025-0.026,0.044-0.033\r\n\t\t\t\tc0.024-0.05-0.082-0.091-0.112-0.123c0,0,0-0.001-0.001-0.002c0.049,0.003,0.087,0.023,0.143,0.019\r\n\t\t\t\tc0.08-0.005,0.117-0.075,0.219-0.082c0.053-0.003,0.078,0.028,0.129,0.024c0.015-0.006,0.029-0.012,0.044-0.018\r\n\t\t\t\tc0.076-0.037,0.128-0.084,0.117-0.15c-0.006-0.035-0.112-0.077-0.174-0.057c-0.075,0.034-0.15,0.068-0.225,0.101\r\n\t\t\t\tc-0.023,0.015-0.039,0.033-0.066,0.048c0.001-0.026,0.017-0.077,0-0.103c-0.026-0.042-0.069-0.068-0.087-0.113\r\n\t\t\t\tc-0.144,0.026-0.093,0.074-0.143,0.127c-0.101,0.032-0.174-0.025-0.264-0.018c0.036-0.037,0.154-0.006,0.199-0.003\r\n\t\t\t\tc0.004-0.001,0.008-0.001,0.012-0.002c0.006-0.013,0.012-0.027,0.018-0.04c0.021-0.034,0.052-0.065,0.088-0.093\r\n\t\t\t\tc-0.001-0.001-0.003-0.003-0.004-0.004c-0.015-0.008-0.041-0.006-0.061-0.008c-0.037-0.005-0.076-0.012-0.118-0.013\r\n\t\t\t\tc-0.078,0-0.163,0.02-0.217-0.003c0.044-0.008,0.061-0.02,0.074-0.039c-0.012-0.023-0.076-0.028-0.104-0.037\r\n\t\t\t\tc-0.001-0.002-0.001-0.004-0.002-0.006c0.057-0.01,0.172,0.001,0.217,0.01c0.051,0.011,0.098,0.041,0.167,0.033\r\n\t\t\t\tc0.034-0.018,0.074-0.065,0.132-0.048c0.029,0.008,0.042,0.034,0.072,0.043c0.067-0.007,0.093-0.07,0.062-0.117\r\n\t\t\t\tc-0.04-0.061-0.125-0.079-0.182-0.12c-0.022-0.016-0.009-0.05-0.031-0.062c-0.042-0.024-0.124,0-0.196,0.004\r\n\t\t\t\tc-0.024-0.002-0.048-0.003-0.073-0.005c-0.041,0.002-0.072,0.028-0.098,0.039c-0.039,0.016-0.082,0.03-0.131,0.042\r\n\t\t\t\tc0-0.001-0.001-0.002-0.001-0.003c0.069-0.022,0.084-0.061,0.131-0.091c0.041-0.027,0.109-0.044,0.145-0.073\r\n\t\t\t\tc0.016-0.013,0.031-0.04,0.007-0.058c-0.01-0.007-0.041-0.008-0.068-0.013c0.057-0.028,0.115-0.055,0.172-0.083\r\n\t\t\t\tc0.024,0.008,0.048,0.016,0.072,0.024c0.029,0.02,0.058,0.041,0.086,0.062c0.003,0.001,0.006,0.001,0.008,0.002\r\n\t\t\t\tc0.003-0.003,0.005-0.005,0.008-0.008c-0.002-0.029-0.048-0.05-0.072-0.066c-0.018-0.012-0.036-0.025-0.053-0.037\r\n\t\t\t\tC24.16,6.946,27.965,6,32,6c4.819,0,9.317,1.335,13.186,3.62c-0.129,0.065-0.246,0.164-0.324,0.268\r\n\t\t\t\tc-0.048-0.001-0.132-0.022-0.153-0.019c-0.081,0.013-0.199,0.161-0.229,0.229c-0.013,0.013-0.025,0.025-0.038,0.038\r\n\t\t\t\tc0.039,0.028,0.075,0.062,0.102,0.102c-0.098,0.069-0.24,0.035-0.292,0.153c-0.004,0.004-0.008,0.008-0.013,0.013\r\n\t\t\t\tc0.032,0.03,0.064,0.059,0.095,0.089c-0.004,0.027-0.008,0.055-0.013,0.083c-0.383-0.001-0.322,0.111-0.547,0.216v0.006\r\n\t\t\t\tc0.208,0.251,0.238,0.04,0.521,0.089c0.13,0.023,0.226,0.096,0.343,0.121c0.109-0.061,0.161-0.161,0.248-0.241\r\n\t\t\t\tc-0.002-0.025-0.004-0.051-0.006-0.076c-0.034-0.021-0.068-0.042-0.102-0.064c-0.004-0.006-0.008-0.013-0.013-0.019\r\n\t\t\t\tc0.023-0.023,0.047-0.047,0.07-0.07c0.074,0.003,0.112,0.025,0.159,0.051c0.055-0.058,0.136-0.114,0.197-0.165v-0.013\r\n\t\t\t\tc-0.021-0.017-0.042-0.034-0.064-0.051c-0.013-0.017-0.002-0.045,0.006-0.076c0.015-0.013,0.03-0.026,0.044-0.038\r\n\t\t\t\tc0.107,0.001,0.27,0.047,0.356,0.006c0.036-0.028,0.072-0.055,0.108-0.083c0.021-0.023,0.042-0.047,0.063-0.07\r\n\t\t\t\tc-0.028-0.015-0.055-0.03-0.083-0.045c0.009-0.043,0.048-0.077,0.099-0.106c0.83,0.518,1.632,1.072,2.395,1.677\r\n\t\t\t\tc-0.005,0.025-0.011,0.05-0.016,0.075c-0.049,0.083-0.097,0.165-0.146,0.248c-0.135,0.174-0.528,0.182-0.464,0.489\r\n\t\t\t\tc0.053,0.004,0.106,0.008,0.159,0.013c0.135,0.378-0.104,0.29-0.146,0.515c0.07,0.108,0.28,0.064,0.369,0.153\r\n\t\t\t\tc0.03,0.036-0.002,0.112,0.013,0.165c0.035,0.124,0.135,0.168,0.286,0.146c-0.018,0.094-0.114,0.264-0.184,0.311\r\n\t\t\t\tc-0.016,0.013-0.038,0.014-0.07,0.013c-0.378-0.351-0.896-0.546-1.468-0.705c-0.123-0.034-0.46-0.13-0.635-0.089\r\n\t\t\t\tc-0.081,0.019-0.116,0.1-0.184,0.134c-0.002,0.004-0.004,0.008-0.006,0.013c0.061,0.078,0.123,0.157,0.184,0.235\r\n\t\t\t\tc-0.01,0.223-0.12,0.179-0.292,0.203c-0.021,0.033-0.037,0.114-0.051,0.146c-0.095,0.048-0.191-0.018-0.216-0.089\r\n\t\t\t\tc0.03-0.038,0.059-0.076,0.089-0.115c-0.178-0.082-0.286-0.093-0.451,0.032c-0.042,0.034-0.085,0.068-0.127,0.102\r\n\t\t\t\tc-0.1,0.03-0.176-0.034-0.235-0.051c-0.105-0.03-0.28-0.002-0.362,0.032c-0.091,0.037-0.088,0.172-0.172,0.222\r\n\t\t\t\tc-0.028-0.015-0.037-0.02-0.044-0.057c-0.182,0.003-0.224,0.07-0.375,0.019c0-0.05,0.007-0.062,0.025-0.089\r\n\t\t\t\tc0.038-0.006,0.076-0.013,0.114-0.019c0-0.097,0.017-0.161,0.026-0.235c-0.381-0.002-0.167,0.2-0.419,0.248\r\n\t\t\t\tc-0.006-0.002-0.013-0.004-0.019-0.006c-0.011-0.034-0.021-0.068-0.032-0.102c-0.133,0.055-0.267,0.11-0.4,0.165\r\n\t\t\t\tc-0.226,0.09-0.453,0.187-0.661,0.273c-0.051,0.015-0.102,0.03-0.153,0.045c-0.087,0.07-0.049,0.285-0.14,0.349\r\n\t\t\t\tc-0.057,0.011-0.115,0.021-0.172,0.032c-0.341,0.069-0.427-0.091-0.629-0.248c0.041-0.201,0.281-0.195,0.508-0.203\r\n\t\t\t\tc-0.055-0.114-0.169-0.349-0.305-0.375c-0.097,0.009-0.195,0.017-0.292,0.025c-0.082-0.018-0.133-0.053-0.216-0.032\r\n\t\t\t\tc-0.017,0.148,0.159,0.164,0.121,0.337c-0.051,0.081-0.102,0.161-0.152,0.241c-0.004,0.004-0.009,0.009-0.013,0.013\r\n\t\t\t\tc0.034,0.051,0.079,0.078,0.153,0.089c0.079,0.238,0.029,0.214-0.032,0.407c-0.006,0.036-0.013,0.072-0.019,0.108v0.013\r\n\t\t\t\tc-0.166-0.008-0.335-0.211-0.566-0.184c-0.124,0.261-0.492,0.237-0.661,0.445c0.005,0.173,0.26,0.294,0.14,0.47\r\n\t\t\t\tc-0.034-0.011-0.068-0.021-0.102-0.032c-0.071,0.008-0.14,0.046-0.235,0.019c-0.217-0.062-0.433-0.161-0.604-0.267\r\n\t\t\t\tc-0.103,0-0.1,0.078-0.153,0.127c0.003,0.063,0.126,0.201,0.191,0.229c0.057,0.024,0.137-0.001,0.191,0.006\r\n\t\t\t\tc0.15,0.265-0.1,0.247-0.261,0.21c-0.072-0.016-0.157,0.001-0.21-0.032c-0.029-0.021-0.053-0.077-0.064-0.114\r\n\t\t\t\tc-0.076-0.038-0.207-0.014-0.292-0.057c-0.043-0.022-0.208-0.444-0.216-0.527c0.122-0.036,0.163-0.19,0.07-0.292\r\n\t\t\t\tc-0.066-0.072-0.223-0.087-0.305-0.14c-0.136-0.088-0.245-0.222-0.362-0.33c0.221-0.112,0.253,0.089,0.343,0.14\r\n\t\t\t\tc0.07,0.011,0.14,0.021,0.21,0.032c0.5,0.15,1.305,0.524,1.831,0.127c0.111-0.084,0.24-0.161,0.235-0.343\r\n\t\t\t\tc-0.069-0.069-0.081-0.106-0.076-0.242c-0.091-0.072-0.211-0.158-0.331-0.197c-0.127-0.038-0.254-0.076-0.381-0.115\r\n\t\t\t\tc-0.121-0.102-0.242-0.203-0.362-0.305c-0.068-0.021-0.136-0.042-0.203-0.063c-0.108-0.038-0.216-0.076-0.324-0.114\r\n\t\t\t\tc-0.18-0.013-0.36-0.025-0.54-0.038c-0.03,0.023-0.059,0.047-0.089,0.07c-0.004-0.046-0.008-0.093-0.013-0.14\r\n\t\t\t\tc-0.183-0.035-0.345-0.068-0.35-0.28c-0.061,0.036-0.123,0.072-0.184,0.108c-0.046,0.019-0.103,0.021-0.14,0.044\r\n\t\t\t\tc-0.114-0.074-0.219-0.036-0.369-0.025c-0.066-0.103-0.205-0.127-0.28-0.222c0.237,0.002,0.468,0.029,0.591-0.095\r\n\t\t\t\tc-0.002-0.023-0.004-0.047-0.006-0.07c-0.028-0.017-0.055-0.034-0.083-0.051c-0.065-0.023-0.14,0.003-0.191-0.019\r\n\t\t\t\tc-0.106-0.045-0.177-0.123-0.299-0.159c-0.07,0.062-0.137,0.151-0.152,0.267c-0.04-0.008-0.081-0.017-0.121-0.025\r\n\t\t\t\tc0.041-0.129,0.058-0.18,0.127-0.279c-0.05-0.066-0.162-0.027-0.242-0.013c-0.045,0.144-0.117,0.243-0.248,0.305\r\n\t\t\t\tc-0.004-0.093-0.008-0.187-0.013-0.28c-0.139,0.095-0.322,0.263-0.388,0.426c-0.017-0.002-0.034-0.004-0.051-0.006\r\n\t\t\t\tc-0.001-0.246,0.115-0.269,0.216-0.4c-0.281-0.021-0.326,0.061-0.47,0.203c-0.031,0.023-0.079-0.012-0.121,0.013\r\n\t\t\t\tc-0.073,0.044-0.144,0.185-0.172,0.273c-0.187-0.096-0.28-0.273-0.381,0.083c-0.042-0.036-0.085-0.072-0.127-0.108\r\n\t\t\t\tc-0.006-0.002-0.013-0.004-0.019-0.006c-0.048,0.076-0.089,0.121-0.203,0.134c-0.027,0.103-0.078,0.174-0.153,0.229\r\n\t\t\t\tc0.014-0.069,0.027-0.136,0.051-0.191c-0.004-0.011-0.008-0.021-0.013-0.032c-0.006-0.004-0.013-0.008-0.019-0.013\r\n\t\t\t\tc-0.084,0.046-0.148,0.229-0.197,0.311c-0.135-0.012-0.165-0.08-0.299-0.032c-0.025-0.021-0.051-0.042-0.076-0.063\r\n\t\t\t\tc-0.061,0.246-0.091,0.112-0.216,0.203c-0.066,0.048-0.033,0.116-0.146,0.153c-0.019,0.021-0.038,0.042-0.057,0.063\r\n\t\t\t\tc0.026,0.021,0.051,0.042,0.076,0.064v0.006c-0.036,0.051-0.106,0.052-0.172,0.038c0.011,0.047,0.021,0.093,0.032,0.14\r\n\t\t\t\tc-0.019,0.028-0.038,0.055-0.057,0.083c-0.006,0.004-0.013,0.009-0.019,0.013c-0.046-0.028-0.064-0.041-0.089-0.089h-0.006\r\n\t\t\t\tc-0.065,0.006-0.07,0.078-0.133,0.102c-0.009,0.027,0.014,0.055,0.044,0.076v0.038c-0.054,0.016-0.077,0.025-0.102,0.07\r\n\t\t\t\tc-0.041-0.01-0.074-0.026-0.127-0.032c-0.044,0.035-0.058,0.078-0.121,0.095c0.011,0.038,0.019,0.052,0.057,0.064\r\n\t\t\t\tc-0.034,0.075-0.199,0.095-0.273,0.134c-0.006,0.004-0.013,0.008-0.019,0.013c0.021,0.036,0.042,0.072,0.064,0.108v0.006\r\n\t\t\t\tc-0.065,0.004-0.112,0.01-0.178,0.006c-0.021,0.034-0.042,0.068-0.063,0.102c0.042,0.051,0.093,0.07,0.127,0.134v0.006\r\n\t\t\t\tc-0.042,0.006-0.085,0.013-0.127,0.019c-0.006,0.042-0.013,0.085-0.019,0.127c-0.163-0.038-0.167,0.098-0.229,0.21\r\n\t\t\t\tc0.021,0.006,0.042,0.013,0.064,0.019c0.002,0.044,0.004,0.089,0.006,0.133c-0.05,0.003-0.081,0.005-0.121-0.006\r\n\t\t\t\tc-0.075,0.075-0.123,0.164-0.203,0.235c0.006,0.019,0.013,0.038,0.019,0.057v0.006c-0.063,0.046-0.087,0.015-0.159,0\r\n\t\t\t\tc-0.094,0.045-0.266,0.185-0.311,0.28c-0.006,0.034-0.013,0.068-0.019,0.102c-0.039,0.065-0.125,0.084-0.159,0.165\r\n\t\t\t\tc-0.006,0.004-0.013,0.009-0.019,0.013c-0.019-0.013-0.038-0.026-0.057-0.038c-0.08-0.054-0.225,0.137-0.222,0.242\r\n\t\t\t\tc-0.085-0.036-0.205-0.032-0.337-0.032l-0.032,0.032c0.017,0.072,0.086,0.103,0.159,0.114c-0.063,0.075-0.159,0.014-0.267,0.006\r\n\t\t\t\tc-0.021,0.084-0.011,0.111-0.089,0.14c-0.1-0.04-0.144,0.042-0.248,0.076c-0.002,0.017-0.004,0.034-0.006,0.051\r\n\t\t\t\tc0.025,0.034,0.072,0.048,0.108,0.07v0.025c-0.066,0.004-0.131,0.008-0.197,0.013c-0.025,0.075-0.001,0.151-0.038,0.21\r\n\t\t\t\tc0.034,0.046,0.043,0.085,0.102,0.108c0.002,0.004,0.004,0.008,0.006,0.013c-0.056,0.046-0.091,0.058-0.114,0.14\r\n\t\t\t\tc0.004,0.011,0.008,0.021,0.013,0.032c0.041,0.028,0.07,0.034,0.121,0.013c0.011,0.013,0.021,0.025,0.032,0.038\r\n\t\t\t\tc-0.041,0.034-0.089,0.076-0.127,0.114c0.053,0.078,0.112,0.033,0.222,0.045c-0.007,0.055-0.021,0.092-0.07,0.108\r\n\t\t\t\tc-0.008,0.011-0.017,0.021-0.025,0.032c0.015,0.013,0.03,0.025,0.044,0.038c0.06-0.001,0.086-0.014,0.127-0.032\r\n\t\t\t\tc-0.027,0.037-0.064,0.055-0.127,0.057c0.001,0.016-0.001,0.007,0.006,0.025c-0.032,0.014-0.05,0.004-0.083-0.013v0.038h-0.006\r\n\t\t\t\tc-0.004-0.017-0.008-0.034-0.013-0.051c-0.002-0.004-0.004-0.008-0.006-0.013c-0.025,0.03-0.051,0.059-0.076,0.089\r\n\t\t\t\tc0.008,0.03,0.017,0.059,0.025,0.089c0.011,0.006,0.021,0.013,0.032,0.019c0.002-0.011,0.004-0.021,0.006-0.032\r\n\t\t\t\tc0.006,0.011,0.013,0.021,0.019,0.032c0.051-0.002,0.06-0.014,0.095-0.026c-0.002-0.025-0.004-0.051-0.006-0.076\r\n\t\t\t\tc0.025,0.019,0.035,0.027,0.038,0.07h0.006c0.028-0.025,0.055-0.051,0.083-0.076c-0.018,0.039-0.04,0.052-0.064,0.083\r\n\t\t\t\tc0.032,0.02,0.042,0.024,0.089,0.019v0.007c-0.038,0.021-0.076,0.042-0.114,0.063c-0.009,0.028-0.004,0.013,0.006,0.045\r\n\t\t\t\tc0.046,0.033,0.031,0.018,0.102,0.013v0.006c-0.036,0.006-0.042,0.012-0.057,0.038c0.006,0.008,0.013,0.017,0.019,0.025\r\n\t\t\t\tc-0.036-0.022-0.065-0.056-0.089-0.019c-0.006,0.004-0.013,0.008-0.019,0.013c-0.002-0.019-0.004-0.038-0.006-0.057\r\n\t\t\t\tc-0.017-0.002-0.034-0.004-0.051-0.006c0.015,0.05-0.003,0.072-0.025,0.114c0.019,0.038,0.038,0.076,0.057,0.114\r\n\t\t\t\tc0.123,0.036,0.19,0.086,0.305,0.115c-0.013,0.013-0.026,0.025-0.038,0.038c0.013,0.008,0.025,0.017,0.038,0.025\r\n\t\t\t\tc0.011-0.013,0.021-0.025,0.032-0.038c0.03,0.015,0.042,0.019,0.051,0.057c0.07,0.017,0.282-0.01,0.349-0.044\r\n\t\t\t\tc0.108-0.107,0.244-0.176,0.356-0.28c0.039-0.036,0.039-0.072,0.095-0.095c0.038-0.02,0.087,0.023,0.14-0.013\r\n\t\t\t\tc0.062-0.046,0.08-0.127,0.083-0.222c0.015-0.011,0.03-0.021,0.044-0.032c0.012,0.047,0.011,0.056-0.013,0.089\r\n\t\t\t\tc0.053,0.074,0.056,0.142,0.165,0.095c0.004,0.002,0.008,0.004,0.013,0.006c0.006,0.051-0.02,0.065-0.032,0.114\r\n\t\t\t\tc0.052,0.027,0.057,0.174,0.057,0.248c0.019-0.002,0.038-0.004,0.057-0.007c0.002,0.017,0.004,0.034,0.006,0.051\r\n\t\t\t\tc0.048-0.012,0.047-0.013,0.089,0c0.008,0.048-0.026,0.118-0.044,0.165c0.047,0.06,0.08,0.086,0.076,0.203\r\n\t\t\t\tc0.017,0.002,0.034,0.004,0.051,0.006c0.049,0.164,0.149,0.23,0.242,0.324c-0.004,0.017-0.009,0.034-0.013,0.051\r\n\t\t\t\tc-0.019-0.002-0.038-0.004-0.057-0.006c0.002,0.017,0.004,0.034,0.006,0.051c-0.021,0.011-0.042,0.021-0.064,0.032\r\n\t\t\t\tc0.042,0.083,0.088,0.169,0.159,0.222c-0.016,0.061-0.039,0.075-0.051,0.134c0.151,0.032,0.257-0.029,0.381,0\r\n\t\t\t\tc0.011-0.013,0.021-0.025,0.032-0.038c0.037-0.032,0.005-0.05-0.019-0.089c0.023-0.06,0.036-0.108,0.095-0.133\r\n\t\t\t\tc0.019-0.011,0.012-0.005,0.038,0.006c0.004-0.017,0.009-0.034,0.013-0.051c0.11,0.001,0.175-0.008,0.254-0.025\r\n\t\t\t\tc0.021,0.015,0.042,0.03,0.064,0.045c0.004,0.004,0.008,0.008,0.013,0.013c0.059-0.108,0.119-0.216,0.178-0.324\r\n\t\t\t\tc0.002-0.04,0.004-0.08,0.006-0.121c0.011-0.057,0.039-0.09,0.057-0.133c0.016-0.027-0.011-0.058,0.006-0.102\r\n\t\t\t\tc-0.015-0.006-0.03-0.013-0.045-0.019V18.53h0.064c0.095-0.071-0.057-0.253-0.07-0.318c0.059-0.002,0.119-0.004,0.178-0.006\r\n\t\t\t\tc0.002-0.013,0.004-0.025,0.006-0.038c0.176,0.031,0.106-0.133,0.191-0.165v0.095c0.002,0.002,0.004,0.004,0.006,0.006\r\n\t\t\t\tc0.019-0.002,0.038-0.004,0.057-0.006c0.014-0.068,0.052-0.091,0.114-0.108c-0.004-0.021-0.008-0.042-0.013-0.064\r\n\t\t\t\tc0.027-0.002,0.055-0.004,0.083-0.006c-0.002-0.011-0.004-0.021-0.006-0.032c-0.002-0.004-0.004-0.008-0.006-0.013h-0.032v0.032\r\n\t\t\t\tc-0.102-0.041-0.174,0.062-0.28,0.045c-0.111-0.019-0.163-0.137-0.299-0.095H32.8c0.009-0.015,0.017-0.03,0.025-0.045\r\n\t\t\t\tc0.037-0.04,0.304,0.049,0.369,0.083c0.082,0.043,0.287-0.119,0.311-0.153h0.057c-0.002-0.095-0.048-0.099-0.07-0.178\r\n\t\t\t\tc-0.126-0.018-0.206-0.104-0.248-0.203c-0.025,0.002-0.051,0.004-0.076,0.006c-0.038-0.015-0.062-0.043-0.133-0.045\r\n\t\t\t\tc-0.002-0.004-0.004-0.008-0.006-0.013c0.046-0.039-0.052-0.296-0.025-0.4c0.023-0.006,0.047-0.013,0.07-0.019\r\n\t\t\t\tc0.055-0.173,0-0.204-0.019-0.356c0.038,0.013,0.076,0.025,0.114,0.038c0.021-0.028,0.042-0.055,0.064-0.083\r\n\t\t\t\tc0.016-0.027-0.004-0.073-0.013-0.115h0.127c0.08-0.112,0.117-0.111,0.222-0.191c0.05-0.038,0.05-0.096,0.114-0.127\r\n\t\t\t\tc0.023,0.015,0.047,0.03,0.07,0.044c0.099-0.068,0.199-0.136,0.299-0.203c0.071-0.087,0.077-0.196,0.184-0.248\r\n\t\t\t\tc0.004-0.006,0.008-0.013,0.013-0.019c-0.034-0.052-0.095-0.08-0.121-0.133c-0.006-0.006-0.013-0.013-0.019-0.019\r\n\t\t\t\tc0.053-0.023,0.128-0.081,0.152-0.133c0.023-0.036-0.022-0.072-0.044-0.102c0.077-0.104,0.108-0.037,0.184-0.095\r\n\t\t\t\tc0.091-0.069,0.094-0.193,0.21-0.248c0.051,0.034,0.102,0.068,0.153,0.102c0.022,0.014,0.223-0.034,0.305-0.032\r\n\t\t\t\tc0.078,0.06,0.117,0.113,0.261,0.115c0.011,0.019,0.021,0.038,0.032,0.057c0.014,0.037-0.006,0.12-0.019,0.159\r\n\t\t\t\tc0.017,0.019,0.034,0.038,0.051,0.057c0.013,0.018,0.009,0.038,0.006,0.076c-0.04-0.002-0.081-0.004-0.121-0.006\r\n\t\t\t\tc-0.098,0.028-0.543,0.488-0.61,0.585h-0.032c-0.013-0.019-0.025-0.038-0.038-0.057v-0.013c-0.09,0.094-0.016,0.207-0.159,0.28\r\n\t\t\t\tc-0.059-0.024-0.1-0.032-0.159-0.013c0.004,0.027,0.008,0.055,0.013,0.083c-0.073,0.067-0.121,0.102-0.153,0.216\r\n\t\t\t\tc0.026,0.023,0.063,0.043,0.089,0.064c0,0.094-0.02,0.143-0.032,0.216c0.034,0.053,0.068,0.106,0.102,0.159\r\n\t\t\t\tc-0.008,0.04-0.017,0.08-0.025,0.121c-0.035,0.188-0.011,0.31,0.127,0.381c0.058,0.03,0.07,0.065,0.146,0.038l-0.006,0.076\r\n\t\t\t\tc0.053-0.018,0.094-0.039,0.172-0.038c-0.011,0.023-0.021,0.047-0.032,0.07c0.02,0.042,0.039,0.071,0.083,0.089\r\n\t\t\t\tc0.067,0.051,0.193-0.016,0.235-0.038v0.026c0.065-0.014,0.081-0.027,0.133,0c0.043-0.058,0.077-0.069,0.153-0.095\r\n\t\t\t\tc0.004,0.008,0.008,0.017,0.013,0.025c0.051-0.028,0.141-0.037,0.165-0.095c0.027,0.019,0.055,0.038,0.083,0.057h0.006\r\n\t\t\t\tc0.017-0.083,0.1-0.04,0.152-0.083c0.028-0.017,0.04-0.057,0.045-0.095v0.057c0.036,0.013,0.072,0.025,0.108,0.038\r\n\t\t\t\tc0.026-0.027,0.034-0.043,0.083-0.051c0.021,0.013,0.042,0.025,0.064,0.038c0.059-0.057,0.198-0.098,0.299-0.108\r\n\t\t\t\tc0.008-0.015,0.017-0.03,0.025-0.045c0.029-0.003-0.01,0.079-0.019,0.114c0.148,0.215,0.345-0.041,0.489,0.229\r\n\t\t\t\tc-0.015,0.011-0.03,0.021-0.045,0.032c-0.094-0.003-0.14-0.044-0.222-0.07c-0.076,0.006-0.1,0.066-0.14,0.108\r\n\t\t\t\tc-0.053-0.012-0.053-0.037-0.102-0.025c-0.016,0.027-0.014,0.015-0.006,0.045c-0.031,0.029-0.052,0.003-0.076-0.025\r\n\t\t\t\tc-0.013,0.002-0.025,0.004-0.038,0.006c-0.004,0.015-0.008,0.03-0.013,0.045c0.032,0.038,0.067,0.051,0.064,0.108\r\n\t\t\t\tc-0.008-0.008-0.017-0.017-0.025-0.025c-0.018-0.007-0.058,0.067-0.108,0.064c-0.163-0.011-0.296-0.042-0.451-0.07\r\n\t\t\t\tc-0.078-0.014-0.166,0.024-0.203-0.006c-0.017,0.015-0.034,0.03-0.051,0.044c-0.049-0.011-0.098-0.021-0.146-0.032\r\n\t\t\t\tc-0.004,0.015-0.008,0.03-0.013,0.045c-0.044-0.007-0.062,0.006-0.102-0.006c-0.085,0.046-0.145,0.095-0.28,0.102\r\n\t\t\t\tc0.006,0.043,0.013,0.056-0.025,0.07c0.023,0.062,0.023,0.099,0.044,0.165c0.022,0,0.035-0.011,0.057-0.026\r\n\t\t\t\tc-0.002,0.057-0.004,0.115-0.006,0.172c0.057,0.016,0.08,0.031,0.121,0.051c0.025-0.023,0.051-0.047,0.076-0.07\r\n\t\t\t\tc0.013,0.009,0.025,0.017,0.038,0.025c-0.021,0.16-0.09,0.268-0.038,0.451c-0.041,0.106-0.222,0.17-0.324,0.076\r\n\t\t\t\tc-0.015-0.04-0.03-0.081-0.044-0.121c-0.047-0.034-0.093-0.068-0.14-0.102v-0.044c-0.113,0.004-0.154,0.056-0.267,0.057\r\n\t\t\t\tc-0.034,0.043-0.068,0.085-0.102,0.127c-0.002,0.044-0.004,0.089-0.006,0.133c-0.032,0.025-0.064,0.051-0.095,0.076\r\n\t\t\t\tc-0.068,0.143,0.034,0.501,0.064,0.578c-0.009,0.025,0,0,0.013,0.025c-0.011,0.002-0.021,0.004-0.032,0.006\r\n\t\t\t\tc0.011,0.035,0.018,0.047,0.013,0.089c-0.081,0.046-0.249,0.013-0.362,0.007c-0.016,0.05-0.021,0.111-0.025,0.165\r\n\t\t\t\tc-0.125,0.066-0.209,0.161-0.388,0.095c-0.009-0.053-0.026-0.086-0.051-0.121c0.005-0.087-0.213-0.034-0.28-0.013\r\n\t\t\t\tc-0.291,0.091-0.499,0.261-0.852,0.286c0.004,0.069,0.012,0.088,0.013,0.146c-0.08-0.028-0.139-0.055-0.21-0.083\r\n\t\t\t\tc-0.004-0.036-0.008-0.072-0.013-0.108c-0.081-0.042-0.175,0.016-0.222-0.121c-0.058-0.004-0.427,0.12-0.458,0.197h-0.07\r\n\t\t\t\tc-0.004-0.013-0.009-0.025-0.013-0.038h-0.006c-0.033,0.022-0.061,0.024-0.095,0.013c-0.004-0.006-0.008-0.013-0.013-0.019\r\n\t\t\t\tc0.045-0.038,0.069-0.048,0.102-0.102c-0.006-0.013-0.013-0.025-0.019-0.038c-0.049,0.004-0.097,0.009-0.146,0.013\r\n\t\t\t\tc-0.057-0.013-0.065-0.053-0.121-0.025c-0.014-0.043-0.014-0.04-0.064-0.038c0.059-0.095-0.063-0.185-0.133-0.21\r\n\t\t\t\tc0.013-0.092,0.038-0.176,0.089-0.229c-0.006-0.011-0.013-0.021-0.019-0.032c0.028-0.002,0.055-0.004,0.083-0.006\r\n\t\t\t\tc0.023-0.081,0.102-0.094,0.064-0.191c0.021-0.011,0.042-0.021,0.064-0.032c0.013,0.017,0.025,0.034,0.038,0.051\r\n\t\t\t\tc0.019-0.007,0.038-0.013,0.057-0.019c0.011-0.02,0.068-0.131,0.038-0.159c-0.051-0.002-0.102-0.004-0.153-0.006\r\n\t\t\t\tc-0.032-0.019-0.031-0.102-0.032-0.153c-0.068-0.033-0.163-0.022-0.254-0.019c-0.006,0.053-0.013,0.106-0.019,0.159\r\n\t\t\t\tc-0.013,0.014-0.02,0.015-0.044,0.019c-0.013-0.03-0.025-0.059-0.038-0.089c-0.049,0.026-0.056,0.1-0.095,0.121\r\n\t\t\t\tc-0.035,0.019-0.1-0.034-0.133-0.032c-0.071,0.107,0.012,0.181,0.019,0.286c-0.031,0.04-0.055,0.066-0.076,0.121\r\n\t\t\t\tc0.017,0.008,0.034,0.017,0.051,0.025c0.008-0.011,0.017-0.021,0.025-0.032c0.03,0.025,0.028,0.047,0.083,0.051\r\n\t\t\t\tc0.009,0.061-0.008,0.193,0.006,0.242c0.015,0.052,0.078,0.085,0.095,0.146c-0.028,0.028-0.059,0.044-0.108,0.051\r\n\t\t\t\tc0.012,0.043,0.042,0.03,0.095,0.025c-0.011,0.017-0.017,0.019-0.032,0.032c0.015,0.015,0.03,0.03,0.045,0.044\r\n\t\t\t\tc-0.011,0.008-0.021,0.017-0.032,0.025c0.002,0.011,0.004,0.021,0.006,0.032c0.023,0.011,0.047,0.021,0.07,0.032\r\n\t\t\t\tc-0.046,0.024-0.104,0.005-0.159,0c-0.019,0.061-0.035,0.076-0.006,0.133c-0.032-0.011-0.063-0.021-0.095-0.032\r\n\t\t\t\tc0.008,0.019,0.017,0.038,0.025,0.057c-0.006,0.008-0.013,0.017-0.019,0.025c-0.006,0.002-0.013,0.004-0.019,0.006\r\n\t\t\t\tc-0.006-0.004-0.013-0.008-0.019-0.013c-0.005-0.039-0.011-0.061-0.025-0.108c-0.107-0.001-0.208,0.008-0.28,0.038\r\n\t\t\t\tc-0.004,0.019-0.008,0.038-0.013,0.057c0.008,0.049,0.031,0.043,0.057,0.07c-0.002,0.006-0.004,0.013-0.006,0.019h-0.025\r\n\t\t\t\tc-0.023-0.022-0.063-0.046-0.076-0.076c-0.123-0.051-0.317,0.05-0.413,0.083c-0.013,0.055-0.013,0.076-0.013,0.146\r\n\t\t\t\tc0.027,0.002,0.055,0.004,0.083,0.006c-0.015,0.024-0.023,0.03-0.025,0.07c0.024,0.016,0.034,0.024,0.076,0.026\r\n\t\t\t\tc-0.013,0.071-0.047,0.063-0.076,0.108c-0.051,0.033-0.092-0.002-0.165-0.013c0.015-0.036,0.015-0.051,0.013-0.108\r\n\t\t\t\tc0.026,0.002,0.019,0.001,0.044-0.006c0.006-0.013,0.013-0.025,0.019-0.038c-0.018-0.035-0.039-0.055-0.07-0.076\r\n\t\t\t\tc-0.032,0.008-0.064,0.017-0.095,0.026c-0.038,0.095-0.076,0.191-0.114,0.286c-0.074,0.064-0.148,0.127-0.222,0.191\r\n\t\t\t\tc0.032,0.014,0.055,0.038,0.07,0.07c-0.053,0.064-0.14-0.005-0.216,0.025c-0.055,0.036-0.11,0.072-0.165,0.108\r\n\t\t\t\tc-0.036,0.002-0.072,0.004-0.108,0.007c-0.047,0.023-0.093,0.047-0.14,0.07c-0.038,0.119,0.011,0.258-0.089,0.324\r\n\t\t\t\tc-0.114,0.075-0.266,0.05-0.349,0.153c-0.002,0.013-0.004,0.025-0.006,0.038c0.021,0.006,0.042,0.013,0.064,0.019\r\n\t\t\t\tc-0.12,0.118-0.282-0.026-0.426,0.044c-0.023-0.044-0.033-0.075-0.025-0.14c-0.075,0.012-0.121,0.009-0.203,0\r\n\t\t\t\tc0.011,0.077,0.049,0.161,0.108,0.191c-0.002,0.083-0.013,0.145,0.025,0.197c-0.024,0.019-0.065,0.026-0.108,0.025v-0.044\r\n\t\t\t\tc-0.055,0.027-0.204,0.061-0.273,0.057c-0.028-0.036-0.055-0.072-0.083-0.108c-0.045,0.004-0.089,0.008-0.133,0.013\r\n\t\t\t\tc-0.006,0.015-0.013,0.03-0.019,0.044c-0.024,0.015-0.108,0.007-0.108,0.007c-0.004-0.004-0.009-0.009-0.013-0.013\r\n\t\t\t\tc-0.076,0.006-0.132,0.063-0.222,0.063c-0.002,0.028-0.004,0.055-0.006,0.083c0.038-0.014,0.077-0.021,0.133-0.019\r\n\t\t\t\tc-0.015,0.03-0.018,0.038-0.057,0.045c-0.01,0.017,0.037,0.021,0.057,0.025c0.002,0.009,0.004,0.017,0.006,0.025v0.006\r\n\t\t\t\tc-0.038,0.006-0.076,0.013-0.114,0.019c0.018,0.035,0.065,0.028,0.089,0.057c0.002,0.011,0.004,0.021,0.006,0.032\r\n\t\t\t\tc0.154-0.013,0.334,0.029,0.445,0.127c0.028-0.009,0.055-0.017,0.083-0.025c0.011,0.006,0.021,0.013,0.032,0.019\r\n\t\t\t\tc-0.011,0.021-0.021,0.043-0.032,0.064c0.036,0.046,0.118,0.075,0.165,0.108c-0.011,0.023-0.021,0.046-0.032,0.07\r\n\t\t\t\tc0.04,0.049,0.08,0.097,0.121,0.146c0.135,0.068,0.112,0,0.184,0.153c-0.021,0.04-0.045,0.073-0.051,0.127\r\n\t\t\t\tc0.051,0.067,0.112,0.106,0.133,0.203c-0.034-0.042-0.068-0.085-0.102-0.127h-0.006c-0.04,0.073-0.053,0.198-0.051,0.305\r\n\t\t\t\tc0.011-0.008,0.021-0.017,0.032-0.025c0.008,0.01,0.017,0.021,0.025,0.032c-0.017,0.008-0.034,0.017-0.051,0.025\r\n\t\t\t\tc-0.034,0.153-0.066,0.309-0.121,0.426c-0.162,0.027-0.245-0.039-0.375-0.076c-0.077,0.095-0.35,0.058-0.515,0.032\r\n\t\t\t\tc-0.075-0.012-0.339-0.086-0.356-0.083c-0.076,0.017-0.158,0.089-0.267,0.07c-0.137-0.023-0.23-0.099-0.369-0.044\r\n\t\t\t\tc-0.013,0.034-0.025,0.068-0.038,0.102h-0.083c-0.104,0.004-0.159,0.031-0.197,0.102c0.002,0.023,0.004,0.047,0.006,0.07\r\n\t\t\t\tc0.094,0.019,0.139,0.07,0.165,0.153c0.008,0.014-0.059,0.211-0.076,0.241c0.095,0.198,0.023,0.738-0.14,0.826\r\n\t\t\t\tc0.005,0.08-0.01,0.143-0.038,0.203c0.015,0.029,0.018,0.027,0.051,0.038c0.039-0.018,0.066-0.029,0.083-0.07\r\n\t\t\t\tc0.006-0.004,0.013-0.009,0.019-0.013c0.009,0.017,0.017,0.034,0.025,0.051c-0.024,0.033-0.05,0.045-0.108,0.045v0.006\r\n\t\t\t\tc0.004,0.017,0.009,0.034,0.013,0.051c0.035,0.008,0.086-0.006,0.121-0.019c0.004,0.004,0.008,0.008,0.013,0.013\r\n\t\t\t\tc-0.011,0.052-0.024,0.115-0.032,0.165c-0.002,0.004-0.004,0.008-0.006,0.013c0.016,0.028,0.041,0.09,0.025,0.152\r\n\t\t\t\tc-0.012,0.047-0.061,0.108-0.044,0.159v0.013c0.057-0.028,0.12-0.061,0.216-0.038c0.03,0.007,0.054,0.035,0.102,0.026\r\n\t\t\t\tc0.044-0.021,0.089-0.042,0.133-0.064c0.148-0.039,0.293,0.081,0.286,0.191c0.017,0.006,0.034,0.013,0.051,0.019\r\n\t\t\t\tc0.017,0.104,0.101,0.213,0.229,0.178c0.011-0.013,0.01-0.013,0.013-0.038h0.006c0.002,0.011,0.004,0.021,0.006,0.032h0.006\r\n\t\t\t\tc0.028-0.117,0.068-0.096,0.178-0.133c0.032-0.028,0.064-0.055,0.095-0.083c0.167,0.002,0.335,0.004,0.502,0.006\r\n\t\t\t\tc0.033-0.011,0.061-0.035,0.114-0.044c0.013,0.011,0.025,0.021,0.038,0.032c0.076-0.056,0.065-0.091,0.114-0.178\r\n\t\t\t\tc0.05-0.088,0.175-0.085,0.292-0.108c0.01-0.028-0.012-0.031-0.006-0.064c0.026-0.154,0.176-0.261,0.299-0.324v-0.019\r\n\t\t\t\tc-0.032-0.017-0.064-0.034-0.095-0.051c-0.023-0.053-0.047-0.106-0.07-0.159c0.031-0.147,0.225-0.389,0.356-0.438\r\n\t\t\t\tc0.002-0.004,0.004-0.009,0.006-0.013c-0.016-0.018-0.023-0.016-0.032-0.044c0.086-0.149,0.264-0.073,0.394-0.159\r\n\t\t\t\tc0.011-0.019,0.021-0.038,0.032-0.057c0.074-0.067,0.212-0.068,0.273-0.146c0.075-0.198-0.151-0.33,0.102-0.508\r\n\t\t\t\tc0.16-0.113,0.187,0.005,0.33,0.006c0.036,0,0.081-0.033,0.133-0.013c0.074,0.029,0.117,0.137,0.242,0.115\r\n\t\t\t\tc0.24-0.044,0.308-0.187,0.47-0.292c0.047-0.013,0.093-0.026,0.14-0.038c0.025-0.028,0.051-0.055,0.076-0.083\r\n\t\t\t\tc0.129-0.101,0.256-0.104,0.426-0.019c0.221,0.111,0.209,0.479,0.419,0.61c0.184,0.115,0.33,0.293,0.502,0.381\r\n\t\t\t\tc0.155,0.08,0.306,0.025,0.343,0.229c0.03-0.008,0.059-0.017,0.089-0.025h0.006c0.013,0.015,0.025,0.03,0.038,0.044\r\n\t\t\t\tc-0.011,0.004-0.021,0.009-0.032,0.013c-0.004,0.008-0.009,0.017-0.013,0.025c0.038-0.011,0.076-0.021,0.114-0.032\r\n\t\t\t\tc0.021,0.019,0.042,0.038,0.064,0.057c0.009,0.041,0.003,0.066-0.013,0.095c0.045,0.027,0.089,0.055,0.133,0.083\r\n\t\t\t\tc0.023,0.012,0.039-0.004,0.07-0.019c0.034,0.01,0.181,0.419,0.172,0.451v0.013c-0.023-0.002-0.047-0.004-0.07-0.006\r\n\t\t\t\tc-0.011,0.011-0.021,0.021-0.032,0.032c0.02,0.067,0.004,0.11-0.064,0.14v0.076c0.013,0.009,0.025,0.017,0.038,0.025h0.083\r\n\t\t\t\tc0.039-0.064,0.067-0.14,0.146-0.165c0.016-0.034,0.005-0.062,0-0.108c0.045-0.043,0.063-0.067,0.159-0.064\r\n\t\t\t\tc0.011-0.013,0.021-0.026,0.032-0.038c-0.026-0.042-0.026-0.089-0.006-0.134c-0.061-0.034-0.123-0.068-0.184-0.102\r\n\t\t\t\tc0.002-0.111,0.086-0.282,0.197-0.267c-0.006,0.095,0.142,0.064,0.203,0.108c0.03,0.023,0.006,0.04,0.025,0.076\r\n\t\t\t\tc0.036,0.023,0.072,0.047,0.108,0.07c0.015-0.044,0.03-0.089,0.045-0.133c-0.196-0.193-0.436-0.359-0.744-0.438\r\n\t\t\t\tc-0.011-0.013-0.021-0.025-0.032-0.038c0.032-0.027,0.049-0.054,0.095-0.07c-0.002-0.011-0.004-0.021-0.006-0.032\r\n\t\t\t\tc-0.047-0.073-0.327,0.011-0.413-0.076c-0.08-0.081-0.209-0.198-0.254-0.305c-0.028-0.067-0.023-0.157-0.064-0.21\r\n\t\t\t\tc-0.031-0.04-0.088-0.05-0.133-0.076c-0.15-0.087-0.231-0.143-0.273-0.343c0.027-0.031,0.056-0.043,0.076-0.083\r\n\t\t\t\tc-0.031-0.037-0.057-0.035-0.057-0.108c-0.015-0.002-0.03-0.004-0.044-0.006c0.008-0.021,0.017-0.042,0.025-0.064\r\n\t\t\t\tc0.044-0.029,0.154-0.064,0.248-0.07c0.002-0.017,0.004-0.034,0.006-0.051c0.08,0.003,0.086,0.005,0.159,0\r\n\t\t\t\tc0.011,0.017,0.021,0.034,0.032,0.051c-0.019,0.025-0.035,0.035-0.076,0.038c0.021,0.098,0.071,0.175,0.102,0.254\r\n\t\t\t\tc0.033-0.017,0.055-0.041,0.083-0.064c0.017-0.047,0.034-0.093,0.051-0.14c0.256,0.103,0.086,0.31,0.343,0.388\r\n\t\t\t\tc-0.036,0.002-0.072,0.004-0.108,0.006v0.006c0.075,0.108,0.185,0.165,0.267,0.267c0.025,0.026,0.059-0.025,0.108-0.013\r\n\t\t\t\tc0.006,0.001,0.153,0.061,0.165,0.07c0.049,0.035,0.089,0.097,0.14,0.133c0.133,0.095,0.272,0.155,0.407,0.248\r\n\t\t\t\tc0.03,0.036,0.059,0.072,0.089,0.108c0.042,0.021,0.085,0.042,0.127,0.064c0.003,0.051,0.002,0.06-0.038,0.07\r\n\t\t\t\tc-0.006,0.043,0.016,0.226,0.013,0.235c-0.017,0.032-0.034,0.064-0.051,0.095c0.022,0.032,0.038,0.045,0.038,0.102\r\n\t\t\t\tc-0.011-0.002-0.021-0.004-0.032-0.006c0.027,0.077,0.144,0.098,0.191,0.159c0.006,0.03,0.013,0.059,0.019,0.089\r\n\t\t\t\tc0.04,0.101,0.153,0.191,0.28,0.172c0.008,0.008,0.017,0.017,0.025,0.025v0.013c-0.027,0.034-0.065,0.029-0.108,0.038v0.006\r\n\t\t\t\tc0.036,0.055,0.072,0.11,0.108,0.165c0.103-0.009,0.227-0.061,0.349-0.025c0.077,0.022,0.119,0.081,0.223,0.089v0.006\r\n\t\t\t\tc-0.101,0.134-0.204-0.021-0.324-0.038c-0.039-0.005-0.082,0.035-0.159,0.032c-0.021,0.038-0.042,0.076-0.064,0.114\r\n\t\t\t\tc0.038,0.047,0.076,0.093,0.114,0.14c0.014,0.044-0.016,0.099-0.013,0.146c0.019,0.017,0.038,0.034,0.057,0.051\r\n\t\t\t\tc0.019-0.015,0.038-0.03,0.057-0.044c0.045-0.022,0.097,0.086,0.108,0.14c0.004,0.002,0.009,0.004,0.013,0.007\r\n\t\t\t\tc0.011-0.019,0.021-0.038,0.032-0.057c0.056-0.027,0.09-0.001,0.14,0.025c-0.005-0.136-0.055-0.195-0.095-0.292v-0.032\r\n\t\t\t\tc0.034,0.011,0.068,0.021,0.102,0.032h0.013c-0.006,0.013-0.013,0.025-0.019,0.038c0.017,0.006,0.034,0.013,0.051,0.019\r\n\t\t\t\tc0.019-0.035,0.029-0.044,0.083-0.045c-0.023-0.029-0.028-0.02-0.025-0.064c-0.021,0.004-0.042,0.009-0.064,0.013\r\n\t\t\t\tc-0.022-0.048-0.026-0.074-0.057-0.108c0.047-0.015,0.093-0.03,0.14-0.044c0.05,0.006,0.107,0.078,0.121,0.121\r\n\t\t\t\tc0.006,0.004,0.013,0.008,0.019,0.013c0.013-0.011,0.025-0.021,0.038-0.032c-0.013-0.04-0.025-0.081-0.038-0.121\r\n\t\t\t\tc0.008-0.002,0.017-0.004,0.025-0.006c-0.005-0.06-0.342-0.233-0.419-0.248v-0.006c0.044-0.01,0.071-0.023,0.102-0.044\r\n\t\t\t\tc-0.013-0.03-0.026-0.059-0.038-0.089v-0.007c0.03-0.019,0.042-0.017,0.083-0.006c0.014,0.026,0.015,0.037,0.013,0.07h0.006\r\n\t\t\t\tc0.006-0.002,0.013-0.004,0.019-0.006c0.008-0.011,0.017-0.021,0.025-0.032c-0.079-0.096-0.169-0.193-0.222-0.311\r\n\t\t\t\tc0.002-0.047,0.015-0.064,0.038-0.089c-0.011-0.013-0.021-0.025-0.032-0.038c0.035-0.015,0.06-0.023,0.076-0.057\r\n\t\t\t\tc0.008,0.002,0.017,0.004,0.025,0.006c0.002,0.009,0.004,0.017,0.006,0.025c-0.011,0.007-0.021,0.013-0.032,0.019\r\n\t\t\t\tc0.04,0.08,0.139,0.069,0.146,0.184c0.032,0.004,0.064,0.008,0.095,0.013h0.013c-0.035-0.042-0.079-0.056-0.108-0.108v-0.006\r\n\t\t\t\tc0.076,0.003,0.119,0.051,0.146,0.102c0.015-0.002,0.03-0.004,0.044-0.006c0.002-0.006,0.004-0.013,0.006-0.019\r\n\t\t\t\tc-0.024-0.041-0.06-0.046-0.083-0.089c0.011-0.008,0.021-0.017,0.032-0.026c0.037,0.007,0.067,0.015,0.083,0.045\r\n\t\t\t\tc0.017,0.015,0.034,0.03,0.051,0.045c0.006-0.004,0.013-0.009,0.019-0.013v-0.006c-0.062-0.077-0.15-0.094-0.191-0.197v-0.006\r\n\t\t\t\tc0.134-0.026,0.108,0.02,0.21-0.07c0.039,0.003,0.034,0.001,0.044,0.032c0.079,0,0.103-0.025,0.153-0.051\r\n\t\t\t\tc0.043,0.102,0.272-0.012,0.286,0.121c0.008-0.009,0.017-0.017,0.025-0.025c0.034,0.021,0.105,0.031,0.146,0.044\r\n\t\t\t\tc0.002,0.004,0.004,0.008,0.006,0.013c-0.032,0.019-0.064,0.038-0.095,0.057c-0.008,0.032-0.017,0.064-0.025,0.095\r\n\t\t\t\tc0.066-0.021,0.091-0.085,0.14-0.121c0.061-0.028,0.123-0.055,0.184-0.083c0.015-0.03,0.03-0.059,0.044-0.089\r\n\t\t\t\tc0.038-0.022,0.1,0.002,0.153-0.019c0.136-0.054,0.112,0.009,0.273,0.013c0.026-0.03,0.045-0.056,0.063-0.095\r\n\t\t\t\tc-0.045-0.06-0.142-0.051-0.21-0.089c-0.087-0.049-0.178-0.313-0.267-0.299v-0.051c0.036-0.035,0.047-0.056,0.102-0.076\r\n\t\t\t\tc0.016-0.084,0.038-0.153,0.051-0.222c0.025-0.013,0.108-0.018,0.121-0.038c0.004-0.04,0.008-0.08,0.013-0.121\r\n\t\t\t\tc0.036-0.199,0.06-0.377,0.286-0.388c0.023-0.049,0.047-0.097,0.07-0.146c-0.015-0.031-0.034-0.038-0.051-0.064\r\n\t\t\t\tc-0.032-0.104,0.093-0.097,0.153-0.133c0.199-0.119,0.104-0.321,0.509-0.311c0.008-0.015,0.017-0.03,0.025-0.045\r\n\t\t\t\tc0.006-0.004,0.013-0.008,0.019-0.013c0.021,0.025,0.042,0.051,0.064,0.076v0.013c-0.023,0.021-0.047,0.042-0.07,0.064v0.013\r\n\t\t\t\tc0.097,0.133,0.265,0.085,0.458,0.089c0.013,0.025,0.026,0.051,0.038,0.076c-0.067,0.074-0.25,0.106-0.331,0.184\r\n\t\t\t\tc0.004,0.008,0.009,0.017,0.013,0.025c0.2,0.038,0.367,0.002,0.254,0.267v0.019c0.285,0.052,0.158-0.026,0.337-0.089\r\n\t\t\t\tc0.051-0.004,0.102-0.009,0.153-0.013c0.034-0.028,0.068-0.055,0.102-0.083c0.06-0.018,0.089,0.017,0.133,0.025\r\n\t\t\t\tc0.038-0.006,0.076-0.013,0.114-0.019c0.023-0.032,0.052-0.072,0.064-0.114c-0.064-0.008-0.127-0.017-0.191-0.025\r\n\t\t\t\tc-0.072,0.007-0.141,0.064-0.235,0.038c-0.024-0.123-0.199-0.258-0.337-0.299c-0.002-0.004-0.004-0.008-0.006-0.013\r\n\t\t\t\tc0.103-0.029,0.197-0.016,0.305-0.019c0.037-0.039,0.065-0.066,0.083-0.127c0.004-0.002,0.009-0.004,0.013-0.006\r\n\t\t\t\tc0.015,0.013,0.03,0.025,0.044,0.038c0.022,0.013,0.019,0.008,0.045,0c0.05-0.015,0.061-0.049,0.102-0.063\r\n\t\t\t\tc0.125-0.023,0.25-0.047,0.375-0.07c0.023-0.025,0.047-0.051,0.07-0.076c0.074-0.008,0.148-0.017,0.222-0.025\r\n\t\t\t\tc0.013-0.013,0.007-0.002,0.013-0.025c0.093-0.017,0.186-0.034,0.28-0.051c0.011,0.021,0.021,0.042,0.032,0.064\r\n\t\t\t\tc-0.099,0.079-0.25,0.146-0.413,0.152c-0.008,0.011-0.017,0.021-0.026,0.032c0.074,0.053,0.148,0.098,0.197,0.178\r\n\t\t\t\tc-0.034,0.026-0.077,0.034-0.14,0.032c-0.028,0.081-0.083,0.13-0.089,0.229c-0.049,0.026-0.154,0.037-0.21,0.051\r\n\t\t\t\tc0.044,0.059,0.104,0.147,0.159,0.197c0.043,0.008,0.057-0.002,0.089-0.019c0.041,0.027,0.058,0.069,0.095,0.095\r\n\t\t\t\tc0.044,0.013,0.089,0.025,0.133,0.038c0.105,0.049,0.192,0.14,0.28,0.21c0.047,0.038,0.116,0.138,0.178,0.133\r\n\t\t\t\tc-0.004,0.019-0.008,0.038-0.013,0.057c0.102,0.075,0.311,0.102,0.381,0.21c0.015,0.053,0.03,0.106,0.045,0.159\r\n\t\t\t\tc0.079,0.289-0.089,0.388-0.324,0.445c-0.131,0.031-0.222-0.051-0.337-0.032c-0.053,0.017-0.106,0.034-0.159,0.051\r\n\t\t\t\tc-0.098,0.022-0.277-0.021-0.381-0.038c-0.126-0.021-0.151-0.13-0.292-0.076c-0.078-0.037-0.078-0.076-0.121-0.146\r\n\t\t\t\tc-0.029-0.021-0.102,0.03-0.172,0.013c-0.083-0.021-0.076-0.089-0.121-0.146c-0.173,0.111-0.323-0.021-0.54,0.032\r\n\t\t\t\tc-0.196,0.047-0.34,0.172-0.515,0.229c0.002,0.017,0.004,0.034,0.006,0.051c-0.138,0.074-0.202,0.007-0.318-0.013\r\n\t\t\t\tc-0.019,0.006-0.038,0.013-0.057,0.019c-0.093-0.008-0.186-0.017-0.28-0.025c-0.013,0.025-0.025,0.051-0.038,0.076\r\n\t\t\t\tc0.029,0.031,0.069,0.042,0.083,0.089c0.053-0.002,0.106-0.004,0.159-0.006v0.006c-0.072,0.023-0.189,0.032-0.28,0.032\r\n\t\t\t\tc-0.017,0.023-0.026,0.025-0.026,0.051c0.026,0.006,0.051,0.013,0.076,0.019c0.006,0.004,0.013,0.009,0.019,0.013\r\n\t\t\t\tc-0.006,0.008-0.013,0.017-0.019,0.025c-0.114-0.018-0.214-0.013-0.337-0.006c0.011-0.013,0.021-0.025,0.032-0.038\r\n\t\t\t\tc-0.036-0.015-0.055-0.014-0.089-0.007c-0.002,0.004-0.004,0.009-0.006,0.013c0.013,0.006,0.026,0.013,0.038,0.019v0.019\r\n\t\t\t\tc-0.067,0.022-0.142,0.01-0.159-0.044c-0.091,0.011-0.203,0.041-0.254,0.095c-0.035,0.037,0.004,0.057-0.07,0.064\r\n\t\t\t\tc-0.01,0.071-0.028,0.13-0.032,0.191c0.087-0.013,0.174-0.025,0.261-0.038v0.006c-0.015,0.024-0.03,0.039-0.057,0.051\r\n\t\t\t\tc-0.015,0.017-0.03,0.034-0.045,0.051c0.035,0.006,0.049,0.02,0.064,0.045c0.014,0.023-0.007,0.02-0.013,0.064h0.057\r\n\t\t\t\tc0.006,0.008,0.013,0.017,0.019,0.025c-0.021,0.025-0.052,0.036-0.089,0.045c-0.007,0.025,0.01,0.054,0.038,0.076\r\n\t\t\t\tc0.034,0.045,0.026,0.031-0.019,0.063c-0.032-0.003-0.055-0.025-0.089-0.044c-0.011,0.023-0.021,0.047-0.032,0.07v0.045\r\n\t\t\t\tc0.105,0.013,0.133,0.046,0.222,0.07c0.003,0.06-0.021,0.124,0.006,0.165c0.034,0.021,0.068,0.042,0.102,0.064\r\n\t\t\t\tc0.002,0.008,0.004,0.017,0.006,0.025c-0.028,0.011-0.055,0.021-0.083,0.032c0.006,0.013,0.013,0.025,0.019,0.038\r\n\t\t\t\tc0.068,0.006,0.136,0.013,0.203,0.019c0.002,0.004,0.004,0.008,0.006,0.013c-0.017,0.019-0.024,0.019-0.032,0.051\r\n\t\t\t\tc0.006,0.015,0.013,0.03,0.019,0.045c0.004,0.002,0.009,0.004,0.013,0.006c0.021-0.021,0.042-0.042,0.064-0.063\r\n\t\t\t\tc0.085-0.003,0.086,0.023,0.146,0.051c0.029,0.014,0.049-0.015,0.076-0.038c0.025,0.059,0.051,0.119,0.076,0.178\r\n\t\t\t\tc0.099,0.031,0.23-0.025,0.299,0.019c0.013-0.002,0.026-0.004,0.038-0.006c0.015-0.072,0.03-0.144,0.044-0.216\r\n\t\t\t\tc0.142-0.018,0.288,0.018,0.388,0.083c0.073,0.048,0.108,0.143,0.203,0.172c0.136,0.041,0.301-0.026,0.381-0.045\r\n\t\t\t\tc0.042-0.082,0.104-0.102,0.159-0.165c0.138,0.001,0.177,0.055,0.286,0.07c0.037-0.038,0.085-0.067,0.121-0.114h0.025\r\n\t\t\t\tc0.013,0.017,0.025,0.034,0.038,0.051c0.002,0.013,0.004,0.025,0.006,0.038c-0.039,0.043-0.09,0.068-0.127,0.114\r\n\t\t\t\tc0.017,0.03,0.034,0.059,0.051,0.089c-0.011,0.057-0.038,0.107-0.064,0.153c0.087,0.115,0.021,0.195,0.076,0.33\r\n\t\t\t\tc-0.146,0.144-0.206,0.407-0.305,0.578c-0.008,0.042-0.017,0.085-0.025,0.127c-0.041,0.134-0.077,0.258-0.172,0.337\r\n\t\t\t\tc0.074,0.186,0.148,0.373,0.222,0.559c0.012,0.018,0.023,0.014,0.051,0.032c-0.023,0.137-0.084,0.285-0.095,0.407\r\n\t\t\t\tc0.036,0.002,0.072,0.004,0.108,0.006c0.047,0.059,0.093,0.119,0.14,0.178c0.104,0.17,0.188,0.32,0.299,0.477\r\n\t\t\t\tc0.084,0.118,0.206,0.226,0.165,0.413c0.085,0.117,0.223,0.149,0.324,0.248c0.066,0.119,0.131,0.237,0.197,0.356\r\n\t\t\t\tc0.066,0.127-0.002,0.313,0.051,0.457c0.051,0.072,0.102,0.144,0.152,0.216c0.07,0.096,0.225,0.114,0.299,0.203\r\n\t\t\t\tc0.089,0.182,0.178,0.364,0.267,0.546c0.034,0.026,0.068,0.051,0.102,0.076c0.086,0.071,0.195,0.232,0.235,0.343\r\n\t\t\t\tc0.011,0.068,0.021,0.136,0.032,0.203c-0.008,0.039-0.042,0.068-0.032,0.127c0.03,0.172,0.113,0.353,0.165,0.496v0.216\r\n\t\t\t\tc0.095,0.205,0.383,0.166,0.553,0.057c0.057-0.047,0.114-0.093,0.172-0.14c0.094-0.028,0.217,0.012,0.299-0.013\r\n\t\t\t\tc0.128-0.039,0.228-0.133,0.343-0.172c0.078-0.026,0.163,0.016,0.229-0.019c0.069-0.036,0.087-0.124,0.152-0.159\r\n\t\t\t\tc0.238-0.13,0.547-0.129,0.769-0.267c0.062-0.038,0.046-0.087,0.076-0.159c0.029-0.07,0.139-0.142,0.21-0.172\r\n\t\t\t\tc0.121-0.04,0.241-0.081,0.362-0.121c0.07,0.008,0.14,0.017,0.21,0.025c0.025-0.015,0.051-0.03,0.076-0.045\r\n\t\t\t\tc0.045-0.091,0.016-0.205,0.108-0.248c0.096-0.045,0.186,0.021,0.273-0.051c0.032-0.027,0.027-0.071,0.044-0.114\r\n\t\t\t\tc0.048-0.12,0.19-0.153,0.349-0.159c0.009-0.116-0.012-0.304,0.026-0.419c0.056-0.024,0.123,0.021,0.172-0.006\r\n\t\t\t\tc0.057-0.042,0.064-0.147,0.102-0.21c0.042-0.04,0.085-0.08,0.127-0.121c0.059-0.074,0.114-0.154,0.159-0.242\r\n\t\t\t\tc-0.012-0.066-0.116-0.088-0.159-0.127c-0.064-0.08-0.127-0.161-0.191-0.241c-0.048-0.033-0.104,0.008-0.165-0.006\r\n\t\t\t\tc-0.089-0.049-0.178-0.098-0.267-0.146c-0.071-0.049-0.182-0.161-0.21-0.248c-0.021-0.066,0.011-0.151-0.013-0.203\r\n\t\t\t\tc-0.015-0.018-0.024-0.019-0.057-0.019c0.044-0.068,0.068-0.116,0.057-0.229h-0.006c-0.045,0.057-0.089,0.115-0.133,0.172\r\n\t\t\t\tc-0.113,0.09-0.215,0.143-0.311,0.267c-0.023,0.045-0.047,0.089-0.07,0.134c-0.035,0.031-0.051,0.02-0.07,0.07\r\n\t\t\t\tc-0.042,0.011-0.063,0.014-0.095-0.006c-0.002,0.011-0.004,0.021-0.006,0.032c-0.074,0.026-0.394,0.021-0.477-0.019\r\n\t\t\t\tc-0.019,0.017-0.023,0.015-0.032,0.044c-0.073,0.007-0.13-0.005-0.203-0.006c0.013-0.058-0.015-0.063-0.064-0.076\r\n\t\t\t\tc-0.037-0.089,0.072-0.127,0.076-0.216c0.001-0.028-0.017-0.268-0.025-0.28c-0.018-0.025-0.035-0.018-0.051-0.057\r\n\t\t\t\tc-0.015-0.002-0.03-0.004-0.044-0.006c-0.083,0.059-0.119,0.288-0.07,0.407c0.007,0.07,0.01,0.094-0.051,0.089\r\n\t\t\t\tc-0.045-0.059-0.108-0.211-0.114-0.311c-0.034-0.027-0.036-0.039-0.076-0.032c-0.033-0.107-0.058-0.116-0.013-0.229\r\n\t\t\t\tc-0.013-0.021-0.026-0.042-0.038-0.064c0.02-0.031,0.039-0.029,0.045-0.076c-0.062-0.082-0.205-0.072-0.248-0.172\r\n\t\t\t\tc-0.036-0.028-0.026-0.027-0.006-0.064c-0.037-0.017-0.058-0.015-0.114-0.013c-0.07-0.185-0.159-0.356-0.21-0.553\r\n\t\t\t\tc-0.036,0.009-0.072,0.017-0.108,0.026c-0.013-0.006-0.026-0.013-0.038-0.019c0.021-0.026,0.042-0.051,0.063-0.076h0.044\r\n\t\t\t\tc-0.008-0.04-0.017-0.08-0.025-0.121c0.026-0.034,0.169-0.04,0.235-0.038c0.055-0.054,0.047-0.118,0.127-0.152h0.019\r\n\t\t\t\tc-0.001,0.041,0.001,0.074,0.019,0.095c0.038,0.072,0.165,0.061,0.242,0.032c0.043,0.069,0.143,0.143,0.172,0.21v0.102\r\n\t\t\t\tc0.031,0.082,0.136,0.259,0.191,0.337c0.064,0.091,0.221,0.082,0.311,0.146c0.047,0.057,0.093,0.115,0.14,0.172\r\n\t\t\t\tc0.106,0.063,0.211,0.06,0.337,0.102c0.07,0.023,0.11,0.086,0.197,0.095c0.042-0.036,0.186-0.121,0.197-0.172\r\n\t\t\t\tc0.098-0.035,0.203-0.075,0.324-0.044c0.05,0.012,0.038,0.034,0.089,0.038c0.015,0.043,0.01,0.1,0.032,0.159\r\n\t\t\t\tc0.026,0.069,0.095,0.113,0.095,0.21c0.068,0.011,0.135,0.056,0.184,0.076h0.254c0.025,0.023,0.051,0.047,0.076,0.07\r\n\t\t\t\tc0.142,0.002,0.284,0.004,0.426,0.007c0.075,0.02,0.118,0.067,0.216,0.083c0.131,0.021,0.254-0.027,0.356-0.044h0.286\r\n\t\t\t\tc0.057-0.021,0.1-0.057,0.191-0.07c0.08,0.167,0.549-0.018,0.686-0.025c0.074,0.053,0.075,0.102,0.07,0.223\r\n\t\t\t\tc0.047,0.011,0.093,0.021,0.14,0.032c0.023,0.068,0.047,0.136,0.07,0.203c0.05,0.067,0.114,0.032,0.191,0.076\r\n\t\t\t\tc0.03,0.042,0.059,0.085,0.089,0.127c0.103,0.123,0.38,0.229,0.597,0.153c0.003,0.052-0.02,0.064-0.051,0.095\r\n\t\t\t\tc-0.142,0.145-0.214,0.023-0.369,0.076h-0.013c0.049,0.113,0.433,0.501,0.572,0.508c0.04-0.015,0.081-0.03,0.121-0.044\r\n\t\t\t\tc0.145-0.047,0.383-0.127,0.254-0.299c0.008-0.03,0.017-0.059,0.025-0.089c0.032-0.019,0.083-0.021,0.14-0.019\r\n\t\t\t\tc-0.019,0.072-0.014,0.207,0.013,0.286c0.016,0.046,0.116,0.085,0.102,0.146c-0.015,0.062-0.095,0.113-0.102,0.191\r\n\t\t\t\tc0.027,0.146,0.055,0.292,0.083,0.438c0.034,0.205,0.068,0.411,0.102,0.616c0.07,0.251,0.21,0.444,0.305,0.655\r\n\t\t\t\tc0.065,0.143,0.116,0.299,0.165,0.457c0.021,0.079,0.042,0.157,0.064,0.235c0.038,0.055,0.076,0.11,0.114,0.165\r\n\t\t\t\tc0.074,0.163,0.148,0.326,0.222,0.489c0.032,0.112,0.064,0.225,0.095,0.337c0.059,0.064,0.119,0.127,0.178,0.191\r\n\t\t\t\tc0.09-0.003,0.218-0.064,0.248-0.127c0.026-0.054,0.004-0.106,0.038-0.146c0.083-0.028,0.165-0.055,0.248-0.083\r\n\t\t\t\tc-0.013-0.027-0.034-0.042-0.057-0.057c0.025-0.072,0.051-0.144,0.076-0.216c0.037-0.022,0.108-0.021,0.172-0.019\r\n\t\t\t\tc0.023-0.118-0.033-0.248-0.019-0.362c0.025-0.213,0.286-0.458,0.108-0.655c0.057-0.141-0.035-0.296,0-0.451\r\n\t\t\t\tc0.021-0.047,0.042-0.093,0.064-0.14c0.06-0.048,0.118-0.061,0.191-0.019c0.048-0.031,0.078-0.105,0.095-0.165\r\n\t\t\t\tc0.058-0.032,0.17-0.01,0.229-0.051c0.065-0.045,0.048-0.168,0.108-0.216c0.063-0.032,0.127-0.064,0.191-0.095\r\n\t\t\t\tc0.072-0.046,0.111-0.143,0.178-0.184c0.046-0.028,0.088-0.032,0.127-0.064c0.097-0.119,0.195-0.237,0.292-0.356\r\n\t\t\t\tc0.078-0.054,0.207-0.041,0.292-0.095c0.106-0.067,0.148-0.181,0.229-0.273c-0.013-0.045-0.025-0.089-0.038-0.134\r\n\t\t\t\tc0.071-0.072,0.179-0.083,0.267-0.14c0.032-0.034,0.064-0.068,0.095-0.102c0.029,0.022,0.05,0.059,0.057,0.102\r\n\t\t\t\tc0.013,0.004,0.025,0.008,0.038,0.013c0.017-0.03,0.034-0.059,0.051-0.089c0.002-0.004,0.004-0.008,0.006-0.013\r\n\t\t\t\tc0.034,0.02,0.042,0.065,0.051,0.108h0.089c-0.005-0.031-0.002-0.042,0.006-0.07c0.019,0.01,0.038,0.021,0.057,0.032\r\n\t\t\t\tc0.013-0.021,0.025-0.042,0.038-0.063c0.008-0.006,0.017-0.013,0.025-0.019c0.009,0.021,0.017,0.043,0.026,0.064h0.038\r\n\t\t\t\tc0.026-0.034,0.046-0.064,0.051-0.121c0.004-0.002,0.008-0.004,0.013-0.006c0.021,0.038,0.042,0.076,0.063,0.115h0.045\r\n\t\t\t\tc0.016-0.069,0.027-0.078,0.095-0.095c0.022-0.07-0.005-0.129-0.032-0.184c-0.002-0.034-0.003-0.067,0.013-0.083\r\n\t\t\t\tc0.004-0.004,0.009-0.009,0.013-0.013c0.032,0.042,0.064,0.085,0.095,0.127c0.07-0.001,0.1-0.022,0.146-0.044\r\n\t\t\t\tc0.175,0.137,0.122,0.639,0.362,0.705c0.022,0.006,0.054-0.002,0.076,0.006v0.083c0.053,0.035,0.082,0.001,0.127,0.025\r\n\t\t\t\tc0.068,0.037,0.107,0.146,0.133,0.229v0.006c-0.034,0.006-0.068,0.013-0.102,0.019c0.028,0.031,0.065,0.053,0.108,0.07\r\n\t\t\t\tc0.011-0.019,0.021-0.038,0.032-0.057c0.004-0.002,0.009-0.004,0.013-0.006c0.079,0.128,0.174,0.362,0.146,0.578\r\n\t\t\t\tc-0.017,0.129-0.098,0.22-0.102,0.362c0.015,0.011,0.03,0.021,0.044,0.032c0.047-0.038,0.073-0.066,0.153-0.076\r\n\t\t\t\tc-0.006,0.025-0.013,0.051-0.019,0.076c0.011,0.011,0.021,0.021,0.032,0.032h0.025c0.029-0.023,0.031-0.041,0.083-0.044v0.057\r\n\t\t\t\tc0.08,0.073,0.094-0.079,0.153-0.121c0.184-0.132,0.273-0.031,0.305-0.343h0.025c0.085,0.062,0.089,0.235,0.197,0.267\r\n\t\t\t\tc0.026,0.18,0.051,0.36,0.076,0.54c0.047,0.164,0.151,0.309,0.203,0.451c0.053,0.144,0.03,0.29,0.025,0.432\r\n\t\t\t\tc0.019,0.01,0.036,0.013,0.07,0.013c-0.033,0.078-0.145,0.34-0.114,0.413c0.017,0.013,0.034,0.025,0.051,0.038\r\n\t\t\t\tc-0.064,0.162-0.161,0.391-0.102,0.566c0.025-0.011,0.051-0.021,0.076-0.032c0.085,0.091,0.166,0.136,0.21,0.273\r\n\t\t\t\tc0.02,0.008,0.034,0.009,0.064,0c0.043,0.057,0.051,0.099,0.051,0.197c0.011,0.006,0.021,0.013,0.032,0.019\r\n\t\t\t\tc0.034,0.043,0.078,0.03,0.121,0.006c0.004,0.004,0.008,0.008,0.013,0.013c-0.018,0.139-0.008,0.3,0.044,0.445\r\n\t\t\t\tc0.025,0.047,0.051,0.093,0.076,0.14c0.009,0.069-0.024,0.13,0.013,0.191c0.04,0.034,0.08,0.068,0.121,0.102\r\n\t\t\t\tc0.016,0.022,0.022,0.056,0.031,0.088C55.358,48.795,44.764,58,32,58z M20.929,9.847c0.001,0,0.002,0,0.003,0\r\n\t\t\t\tc0.002,0.003,0.004,0.006,0.006,0.009c-0.001,0-0.002,0-0.003,0C20.933,9.853,20.931,9.85,20.929,9.847z M43.915,25.038\r\n\t\t\t\tc-0.028,0.012-0.031-0.019-0.07-0.013c-0.034,0.011-0.068,0.021-0.102,0.032c-0.004-0.002-0.008-0.004-0.013-0.006\r\n\t\t\t\tc-0.002-0.023-0.004-0.047-0.006-0.07c-0.013-0.004-0.026-0.008-0.038-0.013c-0.004,0.017-0.008,0.034-0.013,0.051\r\n\t\t\t\tc-0.048-0.011-0.054-0.013-0.108-0.006c-0.017-0.034-0.034-0.068-0.051-0.102c-0.067,0.075-0.078,0.271-0.044,0.369\r\n\t\t\t\tc0.039,0.021,0.133,0.008,0.216,0.006c-0.015,0.019-0.03,0.038-0.044,0.057c0.004,0.013,0.008,0.025,0.013,0.038\r\n\t\t\t\tc0.014,0.023,0.042,0.036,0.07,0.045v0.019c-0.045-0.004-0.089-0.008-0.133-0.013c-0.011,0.015-0.021,0.03-0.032,0.045v0.044\r\n\t\t\t\tc0.042-0.029,0.066-0.018,0.127-0.006c0.024,0.067,0.085,0.076,0.114,0.133c0.014,0.054-0.038,0.118-0.038,0.203\r\n\t\t\t\tc0,0.04-0.022,0.09-0.019,0.108c0.018,0.102,0.109,0.354,0.025,0.419c-0.061,0.047-0.192,0.025-0.28,0.045\r\n\t\t\t\tc-0.314,0.07-0.748,0.1-0.858-0.197c-0.119-0.032-0.251-0.062-0.35-0.095c-0.052-0.198,0.057-0.392,0.057-0.559\r\n\t\t\t\tc0.006-0.004,0.013-0.008,0.019-0.013c0.017,0.015,0.019,0.017,0.025,0.044c0.006,0.004,0.013,0.008,0.019,0.013\r\n\t\t\t\tc0.006-0.03,0.013-0.059,0.019-0.089c0.02-0.009,0.021-0.011,0.044-0.006c-0.012-0.168,0.011-0.45,0.28-0.337h0.006\r\n\t\t\t\tc-0.002-0.011-0.004-0.021-0.006-0.032c-0.056-0.128-0.19-0.036-0.242-0.108c-0.03-0.042-0.076-0.085-0.095-0.127\r\n\t\t\t\tc-0.023-0.049-0.009-0.096-0.038-0.133c-0.041-0.053-0.106-0.142-0.159-0.184c-0.019-0.006-0.038-0.013-0.057-0.019\r\n\t\t\t\tc-0.05-0.07-0.077-0.16-0.14-0.216c-0.015-0.004-0.03-0.009-0.044-0.013c-0.031-0.047,0.006-0.079-0.044-0.108\r\n\t\t\t\tc-0.057-0.081-0.018-0.217,0.019-0.311v-0.019H41.92c-0.011,0.038-0.021,0.076-0.032,0.114h-0.006\r\n\t\t\t\tc-0.001-0.113-0.014-0.227-0.114-0.286c-0.032-0.019-0.075-0.01-0.089-0.045v-0.032c0.004-0.075,0.083-0.081,0.114-0.127\r\n\t\t\t\tc0.062-0.092,0.092-0.195,0.121-0.286c0.004-0.006,0.008-0.013,0.013-0.019c0.105,0.051,0.2-0.03,0.28-0.076\r\n\t\t\t\tc0.015,0.008,0.03,0.017,0.044,0.025c0.016-0.02,0.02-0.029,0.019-0.07c0.102-0.023,0.134-0.121,0.216-0.153\r\n\t\t\t\tc0.04-0.002,0.081-0.004,0.121-0.006c0.13-0.041,0.242-0.21,0.413-0.197c0.096,0.007,0.137,0.073,0.21,0.089\r\n\t\t\t\tc0.077,0.017,0.097-0.038,0.133-0.051c0.057,0.013,0.114,0.025,0.172,0.038c0.015,0.025,0.03,0.051,0.045,0.076\r\n\t\t\t\tc-0.017,0.017-0.034,0.034-0.051,0.051c0.047,0.164,0.01,0.207-0.083,0.33c0.004,0.058,0.07,0.083,0.114,0.095\r\n\t\t\t\tc0.002,0.004,0.004,0.008,0.006,0.013c-0.138-0.013-0.275-0.025-0.413-0.038c-0.038,0.007-0.047,0.027-0.102,0.026\r\n\t\t\t\tc-0.013,0.034-0.025,0.068-0.038,0.102c-0.029,0.036-0.057,0.02-0.076,0.076c0.027,0.039,0.064,0.068,0.114,0.083\r\n\t\t\t\tc0.006,0.008,0.013,0.017,0.019,0.026c-0.061,0.044-0.214-0.025-0.337-0.019c-0.006,0.006-0.013,0.013-0.019,0.019v0.083\r\n\t\t\t\tc0.039,0.026,0.133,0.043,0.184,0.051c0.028,0.155,0.139,0.203,0.133,0.368h0.089c0.037,0.027,0.071,0.069,0.089,0.114\r\n\t\t\t\tc0.089,0.012,0.165-0.009,0.235,0.064c-0.034,0.064-0.07,0.143-0.095,0.203c0.023,0.038-0.002,0.077,0.019,0.121\r\n\t\t\t\tc0.013,0.006,0.026,0.013,0.038,0.019c-0.002,0.019-0.004,0.038-0.006,0.057c0.013,0.029,0.055,0.079,0.076,0.114v0.013\r\n\t\t\t\tc0.027-0.072,0.011-0.226,0.032-0.305c0.087-0.015,0.173-0.031,0.273-0.025c0.015,0.056,0.023,0.174,0.051,0.216\r\n\t\t\t\tc0.046,0.071,0.146,0.075,0.197,0.178c-0.015,0.031-0.026,0.037-0.057,0.051c-0.041-0.008-0.042-0.024-0.083-0.032\r\n\t\t\t\tC43.898,24.987,43.907,25.012,43.915,25.038z M35.799,24.777c-0.004,0.004-0.008,0.008-0.013,0.013\r\n\t\t\t\tc-0.025-0.022-0.041-0.037-0.083-0.045c0.004-0.011,0.009-0.021,0.013-0.032c0.017,0.008,0.034,0.017,0.051,0.025\r\n\t\t\t\tC35.788,24.751,35.789,24.757,35.799,24.777z M57.643,35.618c-0.368,0.016-0.324-0.225-0.388-0.502\r\n\t\t\t\tc-0.013,0.004-0.025,0.008-0.038,0.013c-0.056-0.044-0.033-0.145-0.051-0.222c-0.063,0.004-0.119,0.023-0.178,0.013\r\n\t\t\t\tc-0.153-0.249,0.124-0.633,0.191-0.826c-0.004-0.053-0.009-0.106-0.013-0.159c0.02-0.082,0.062-0.114,0.025-0.216\r\n\t\t\t\tc0.092-0.071,0.145-0.061,0.292-0.051c-0.006,0.076-0.013,0.152-0.019,0.229c0.058,0.001,0.08,0.024,0.121,0.032\r\n\t\t\t\tc0.078,0.014,0.107-0.054,0.191-0.006c0.038,0.04,0.076,0.08,0.115,0.121c0.002,0.001,0.004,0.001,0.006,0.002\r\n\t\t\t\tc-0.043,0.556-0.111,1.104-0.189,1.65C57.688,35.667,57.663,35.644,57.643,35.618z M8.363,28.628\r\n\t\t\t\tc-0.002-0.006-0.004-0.013-0.006-0.019v0.019H8.363z M8.35,28.59c-0.001-0.011-0.009-0.009-0.011-0.018\r\n\t\t\t\tc0.001,0.006,0.003,0.012,0.004,0.018H8.35z M42.555,41.414c-0.037-0.058-0.107-0.06-0.14-0.133\r\n\t\t\t\tc-0.068-0.054-0.061-0.042-0.127,0.013c0.009,0.1,0.008,0.236-0.07,0.299c-0.044,0.036-0.08,0.04-0.102,0.102\r\n\t\t\t\tc-0.039-0.014-0.048-0.034-0.063-0.07c-0.019-0.002-0.038-0.004-0.057-0.006c-0.003,0.068,0.015,0.109,0.038,0.165\r\n\t\t\t\tc-0.004,0.011-0.008,0.021-0.013,0.032c-0.024,0.016-0.04,0.025-0.083,0.025c-0.002,0.004-0.004,0.009-0.006,0.013\r\n\t\t\t\tc0.003,0.044,0.026,0.059,0.045,0.102c-0.023,0.025-0.047,0.051-0.07,0.076c-0.039-0.004-0.04-0.009-0.051-0.038H41.85\r\n\t\t\t\tc-0.032,0.028-0.063,0.055-0.095,0.083c0.008,0.034,0.022,0.045,0.038,0.07c-0.013,0.009-0.025,0.017-0.038,0.026\r\n\t\t\t\tc-0.024,0.01-0.027-0.009-0.064-0.019c-0.047,0.029-0.093,0.059-0.14,0.089c0.004,0.025,0.009,0.051,0.013,0.076\r\n\t\t\t\tc-0.071,0.017-0.121-0.054-0.21-0.013c-0.017,0.019-0.034,0.038-0.051,0.057c-0.04,0.02-0.074-0.013-0.108-0.013\r\n\t\t\t\tc-0.025,0.019-0.051,0.038-0.076,0.057c-0.044,0.002-0.089,0.004-0.133,0.006c0,0.213-0.083,0.245-0.14,0.381\r\n\t\t\t\tc-0.025,0.1,0.069,0.325,0.121,0.388c-0.015,0.032-0.03,0.064-0.044,0.096c0.032,0.038,0.064,0.076,0.095,0.114\r\n\t\t\t\tc0.03,0.115-0.166,0.512-0.216,0.559c-0.025,0.009-0.051,0.017-0.076,0.025c-0.045,0.032-0.102,0.233-0.089,0.311\r\n\t\t\t\tc0.053,0.097,0.106,0.195,0.159,0.292c-0.013,0.049-0.025,0.097-0.038,0.146c-0.031,0.144,0.06,0.157,0.083,0.229\r\n\t\t\t\tc0.016,0.051-0.006,0.092,0.019,0.127c0.083,0.119,0.262,0.084,0.343,0.21c0.137-0.008,0.17-0.09,0.286-0.121\r\n\t\t\t\tc0.07-0.009,0.14-0.017,0.21-0.026c0.132-0.081,0.205-0.497,0.261-0.674c0.15-0.485,0.301-0.97,0.451-1.455\r\n\t\t\t\tc0.028-0.095-0.011-0.189,0.019-0.299c0.026-0.093,0.124-0.146,0.146-0.254c-0.047-0.072-0.09-0.157-0.089-0.273\r\n\t\t\t\tc0.011-0.006,0.021-0.013,0.032-0.019c0.004-0.004,0.008-0.009,0.013-0.013c0.029,0.053,0.07,0.133,0.121,0.165\r\n\t\t\t\tc0.035-0.029,0.114-0.123,0.102-0.191c-0.027-0.053-0.055-0.106-0.083-0.159C42.622,41.831,42.634,41.517,42.555,41.414z\r\n\t\t\t\t M10.068,26.772c0.002,0.004,0.003,0.011,0.005,0.016v-0.016H10.068z M8.337,28.565c0,0.001-0.001,0.002-0.001,0.002\r\n\t\t\t\tc0.001,0.003,0.003,0.003,0.003,0.005C8.339,28.57,8.338,28.567,8.337,28.565z M8.356,28.609\r\n\t\t\t\tc-0.002-0.006-0.004-0.013-0.006-0.019v0.019H8.356z M14.998,24.644c-0.002-0.004-0.004-0.009-0.006-0.013\r\n\t\t\t\tc-0.021-0.006-0.042-0.013-0.064-0.019c-0.026,0.019-0.046,0.037-0.057,0.07c-0.004,0.002-0.009,0.004-0.013,0.006\r\n\t\t\t\tc-0.032-0.041-0.059-0.112-0.076-0.165v-0.007c0.122-0.058,0.118-0.025,0.216-0.114V24.37c-0.015-0.006-0.03-0.013-0.045-0.019\r\n\t\t\t\tc-0.042,0.02-0.082,0.042-0.14,0.045c-0.035-0.024-0.077-0.055-0.095-0.095c-0.006-0.006-0.013-0.013-0.019-0.019\r\n\t\t\t\tc0.049-0.04,0.097-0.081,0.146-0.121c0.013-0.015,0.026-0.03,0.038-0.045c-0.085-0.053-0.196-0.098-0.331-0.083\r\n\t\t\t\tc-0.013,0.023-0.025,0.047-0.038,0.07c-0.139,0.028-0.257-0.06-0.343-0.127v-0.019c0.036-0.036,0.072-0.072,0.108-0.108\r\n\t\t\t\tc-0.044-0.017-0.089-0.034-0.133-0.051c-0.111,0.022-0.1,0.134-0.21,0.159c-0.006-0.249,0.344-0.399,0.241-0.604\r\n\t\t\t\tc0.046-0.013,0.102-0.029,0.14-0.045c0.002-0.008,0.004-0.017,0.006-0.025c-0.004-0.011-0.009-0.021-0.013-0.032\r\n\t\t\t\tc-0.013-0.004-0.025-0.008-0.038-0.013c-0.078,0.021-0.157,0.042-0.235,0.064c-0.19,0.122-0.428,0.489-0.508,0.724\r\n\t\t\t\tc0.032,0.038,0.063,0.076,0.095,0.114c-0.085,0.09-0.178,0.003-0.235,0.165c-0.004,0.008-0.008,0.017-0.013,0.025\r\n\t\t\t\tc0.049,0.013,0.098,0.025,0.146,0.038c-0.09,0.09-0.264,0.111-0.324,0.229c-0.016,0.029,0.012,0.075,0.026,0.114\r\n\t\t\t\tc0.097-0.011,0.195-0.021,0.292-0.032c0.121,0.017,0.242,0.034,0.362,0.051c0.11,0.02,0.23-0.003,0.248-0.083\r\n\t\t\t\tc0.034-0.004,0.068-0.008,0.102-0.013v0.096c0.004,0.006,0.008,0.013,0.013,0.019c0.013-0.002,0.025-0.004,0.038-0.006\r\n\t\t\t\tc0.033-0.011,0.042-0.037,0.051-0.07c0.057,0.006,0.114,0.013,0.172,0.019v0.013c-0.121,0.055-0.153,0.168-0.305,0.21\r\n\t\t\t\tc-0.012,0.026-0.007,0.015,0,0.045c0.033,0.016,0.082,0.021,0.133,0.019c0.096-0.105,0.276-0.194,0.343-0.311\r\n\t\t\t\tc0.011,0.004,0.021,0.008,0.032,0.013c0.021,0.028,0.042,0.055,0.064,0.083c-0.002,0.068-0.031,0.109-0.064,0.146\r\n\t\t\t\tc0.002,0.017,0.004,0.034,0.006,0.051c0.017,0.002,0.034,0.004,0.051,0.006c0.025-0.021,0.051-0.042,0.076-0.063\r\n\t\t\t\tc0.004,0.036,0.008,0.072,0.013,0.108c0.053,0.015,0.106,0.03,0.159,0.045c0.031-0.093,0.108-0.194,0.095-0.299\r\n\t\t\t\tC14.985,24.767,14.974,24.733,14.998,24.644z M30.531,24.606c-0.011,0.008-0.021,0.017-0.032,0.025\r\n\t\t\t\tc0.014,0.032,0.014,0.022,0.057,0.019v0.006c-0.011,0.011-0.021,0.021-0.032,0.032c-0.002,0.004-0.004,0.008-0.006,0.013\r\n\t\t\t\tc0.021,0.009,0.042,0.017,0.063,0.026c-0.011,0.015-0.021,0.03-0.032,0.044c0.011,0.009,0.021,0.017,0.032,0.025\r\n\t\t\t\tc0.019,0.002,0.038,0.004,0.057,0.006v0.032c0.013,0.002,0.025,0.004,0.038,0.006c0.109-0.111,0.08-0.372,0.076-0.559\r\n\t\t\t\tc-0.008-0.006-0.017-0.013-0.025-0.019c-0.004,0.002-0.008,0.004-0.013,0.006c-0.004,0.03-0.008,0.059-0.013,0.089\r\n\t\t\t\tc-0.002,0.003-0.171,0.074-0.21,0.114c0.001,0.025,0.001,0.024,0.019,0.044c-0.009,0.007-0.017,0.013-0.026,0.019\r\n\t\t\t\tC30.493,24.58,30.509,24.579,30.531,24.606z M35.215,27.014c0.142-0.008,0.284-0.017,0.426-0.025\r\n\t\t\t\tc0.017-0.028,0.025-0.06,0.032-0.102c-0.045,0.028-0.097,0.035-0.146,0.064c-0.008-0.004-0.017-0.009-0.025-0.013\r\n\t\t\t\tc0.004-0.017,0.009-0.034,0.013-0.051c-0.002-0.002-0.004-0.004-0.006-0.006c-0.098,0.011-0.135,0.002-0.21-0.032\r\n\t\t\t\tc-0.07,0.006-0.14,0.013-0.21,0.019c-0.02-0.019-0.014-0.025-0.051-0.032c0.006-0.009,0.013-0.017,0.019-0.026\r\n\t\t\t\tc-0.004-0.006-0.008-0.013-0.013-0.019c-0.015,0.008-0.03,0.017-0.044,0.026c-0.034-0.012-0.056-0.014-0.076-0.038v-0.013\r\n\t\t\t\tc-0.011,0.013-0.01,0.012-0.013,0.038h-0.032c-0.006,0.032-0.013,0.063-0.019,0.095c0.087,0.039,0.26,0.031,0.356,0.07V27.014z\r\n\t\t\t\t M32.367,26.423c0.035-0.028,0.056-0.073,0.095-0.095c0.013-0.037-0.026-0.055-0.045-0.095c-0.036-0.095,0.072-0.224,0.102-0.292\r\n\t\t\t\tv-0.006c-0.058-0.014-0.12,0.013-0.172,0.025c-0.214,0.053-0.3,0.057-0.458-0.044c-0.091,0.081-0.209,0.007-0.254,0.152\r\n\t\t\t\tc0.043,0.085,0.104,0.06,0.191,0.102C32.004,26.254,32.172,26.367,32.367,26.423z M21.217,10.482\r\n\t\t\t\tc0.035-0.019,0.07-0.038,0.105-0.057c0.055-0.019,0.109-0.037,0.164-0.056c0.003-0.008,0.007-0.017,0.01-0.025\r\n\t\t\t\tc-0.104,0.008-0.218,0.043-0.302,0.036c-0.066,0.038-0.132,0.076-0.197,0.114c-0.025,0.014-0.069,0.026-0.071,0.048\r\n\t\t\t\tc0.004,0.002,0.008,0.004,0.013,0.006c0.045-0.002,0.096-0.023,0.138-0.036C21.123,10.502,21.17,10.492,21.217,10.482z\r\n\t\t\t\t M16.682,18.341c-0.01,0.031-0.094,0.043-0.109,0.087c0.001,0.002,0.001,0.003,0.002,0.005c0.076-0.011,0.12-0.032,0.157-0.06\r\n\t\t\t\tc0.001-0.015-0.005-0.022-0.016-0.032C16.705,18.339,16.7,18.338,16.682,18.341z M30.575,25.66\r\n\t\t\t\tc0.019-0.025,0.038-0.051,0.057-0.076c0.054-0.026,0.099,0,0.146,0.013c0.02-0.058,0.068-0.112,0.057-0.197\r\n\t\t\t\tc-0.006-0.047-0.013-0.093-0.019-0.14c0.006-0.036,0.036-0.069,0.044-0.095c0.031-0.095-0.097-0.241-0.153-0.26\r\n\t\t\t\tc-0.085,0.08-0.164,0.087-0.311,0.114c-0.004,0.004-0.008,0.008-0.013,0.013c0.017,0.081,0.077,0.106,0.095,0.197\r\n\t\t\t\tC30.517,25.416,30.356,25.615,30.575,25.66z M30.512,36.559c-0.028,0.032-0.044,0.092-0.089,0.108v0.057\r\n\t\t\t\tc0.013,0.004,0.025,0.008,0.038,0.013c0.082-0.01,0.066-0.094,0.127-0.127C30.57,36.578,30.553,36.568,30.512,36.559z\r\n\t\t\t\t M26.304,19.147c0.035-0.024,0.05-0.049,0.076-0.083c0.002-0.004,0.004-0.009,0.006-0.013c0.025,0.017,0.051,0.034,0.076,0.051\r\n\t\t\t\tc-0.033,0.09-0.136,0.211-0.089,0.305v0.013c0.082-0.047,0.165-0.094,0.235-0.152h0.025c0.006,0.028,0.013,0.055,0.019,0.083\r\n\t\t\t\tc-0.02,0.027-0.04,0.046-0.076,0.057c-0.009,0.057,0.008,0.105,0.051,0.127c0.034,0.062-0.106,0.181-0.121,0.28\r\n\t\t\t\tc0.051,0.013,0.102,0.025,0.153,0.038c0.024-0.018,0.033-0.026,0.038-0.064c0.038,0.011,0.076,0.021,0.114,0.032\r\n\t\t\t\tc0.138-0.008,0.086-0.079,0.267-0.032c-0.045,0.057-0.103,0.092-0.121,0.178c0.025,0.053,0.055,0.069,0.089,0.108\r\n\t\t\t\tc0.036-0.007,0.072-0.013,0.108-0.019h0.006c-0.005,0.156-0.076,0.23-0.013,0.356v0.006c-0.215,0.003-0.415,0.024-0.489,0.172\r\n\t\t\t\tv0.006h0.133v0.013c0.023,0.036,0.008,0.103,0.006,0.159c-0.078,0.113-0.267,0.119-0.299,0.178\r\n\t\t\t\tc-0.011,0.011-0.021,0.021-0.032,0.032c0.025,0.021,0.051,0.042,0.076,0.064c0.085,0.002,0.169,0.004,0.254,0.006\r\n\t\t\t\tc0.061,0.03,0.123,0.059,0.184,0.089h0.013c0.09-0.005,0.137-0.049,0.203-0.076c-0.029,0.06-0.086,0.099-0.089,0.172\r\n\t\t\t\tc-0.131,0.033-0.232-0.046-0.343,0.006c-0.036,0.041-0.02,0.083-0.095,0.07c-0.013,0.136-0.232,0.282-0.35,0.318\r\n\t\t\t\tc-0.002,0.004-0.004,0.009-0.006,0.013c0.032,0.009,0.064,0.017,0.095,0.026c0.015,0.015,0.03,0.03,0.045,0.045\r\n\t\t\t\tc0.052-0.069,0.127-0.122,0.216-0.153c0.045,0.021,0.07,0.005,0.095-0.013c0.108,0.059,0.203,0.111,0.21-0.089\r\n\t\t\t\tc0.2-0.024,0.253-0.004,0.439,0.013c-0.004-0.015-0.009-0.03-0.013-0.044c0.085-0.013,0.17-0.025,0.254-0.038\r\n\t\t\t\tc0.048-0.007,0.063,0.026,0.095,0.032c0.042-0.011,0.085-0.021,0.127-0.032c0.061,0.009,0.123,0.017,0.184,0.025\r\n\t\t\t\tc0.074-0.014,0.1-0.073,0.203-0.064c0.004-0.059,0.085-0.077,0.133-0.089v-0.089h-0.013c-0.014-0.009-0.237-0.029-0.299-0.032\r\n\t\t\t\tV21.13c0.107-0.031,0.369-0.204,0.4-0.299c-0.006-0.055-0.013-0.11-0.019-0.165c-0.087-0.068-0.271-0.169-0.369-0.032\r\n\t\t\t\tc-0.034-0.007-0.068-0.013-0.102-0.019c0.135-0.201,0.055-0.175-0.076-0.318c-0.002-0.002,0.009-0.153-0.025-0.203\r\n\t\t\t\tc-0.049-0.064-0.097-0.127-0.146-0.191c-0.055-0.03-0.115-0.006-0.153-0.051c-0.069-0.084-0.056-0.196-0.095-0.299\r\n\t\t\t\tc-0.031-0.053-0.237-0.227-0.318-0.222c-0.131,0.007-0.14,0.075-0.305,0.006c-0.002-0.004-0.004-0.008-0.006-0.013\r\n\t\t\t\tc0.123,0.003,0.258-0.01,0.311-0.076c0.004-0.002,0.008-0.004,0.013-0.006c-0.034-0.019-0.068-0.038-0.102-0.057\r\n\t\t\t\tc-0.002-0.004-0.004-0.009-0.006-0.013c0.198-0.003,0.277-0.285,0.331-0.426c0.013-0.025,0.001-0.021-0.013-0.051\r\n\t\t\t\tc-0.1-0.073-0.46-0.024-0.623-0.025c-0.006-0.009-0.013-0.017-0.019-0.025c0.017-0.197,0.253-0.175,0.324-0.311\r\n\t\t\t\tc0.035-0.032,0.013-0.032-0.006-0.07c-0.129-0.052-0.288,0.077-0.407,0.045c-0.038-0.023-0.076-0.047-0.114-0.07\r\n\t\t\t\tc-0.019,0.025-0.038,0.051-0.057,0.076c0.019,0.03,0.038,0.059,0.057,0.089c-0.04,0.013-0.08,0.025-0.121,0.038\r\n\t\t\t\tc0.025,0.051,0.051,0.102,0.076,0.152c-0.05,0.002-0.083-0.003-0.127-0.019c-0.039,0.01-0.054,0.039-0.07,0.07\r\n\t\t\t\tc0.027,0.032,0.055,0.064,0.083,0.095c-0.019,0.03-0.061,0.028-0.076,0.051c0.009,0.04,0.017,0.08,0.026,0.121\r\n\t\t\t\tc0,0-0.102,0.182-0.114,0.203C26.262,19.126,26.283,19.136,26.304,19.147z M23.552,15.69c0.122,0.059,0.229,0.003,0.261-0.114\r\n\t\t\t\tc0.002-0.025,0.004-0.051,0.006-0.076c0.061-0.015,0.123-0.03,0.184-0.045c0.041-0.073,0.083-0.252,0.019-0.337\r\n\t\t\t\tc-0.041-0.048-0.155-0.016-0.222-0.038c-0.027-0.017-0.055-0.034-0.083-0.051c-0.016-0.036-0.003-0.092,0.013-0.134\r\n\t\t\t\tc-0.008-0.015-0.017-0.03-0.025-0.045c-0.139-0.061-0.251-0.035-0.311-0.172c-0.039-0.024-0.106-0.033-0.172-0.032v0.159\r\n\t\t\t\tc-0.129,0.091-0.311,0.046-0.483,0.025c0.022,0.049,0.05,0.087,0.044,0.146c-0.091-0.002-0.162-0.057-0.191-0.121\r\n\t\t\t\tc-0.062-0.048-0.149-0.012-0.216,0.038c0.011,0.034,0.021,0.068,0.032,0.102v0.007c-0.017,0.006-0.034,0.013-0.051,0.019\r\n\t\t\t\tc-0.074-0.049-0.145-0.122-0.178-0.21h-0.006c-0.017,0.011-0.034,0.021-0.051,0.032c-0.031,0.052-0.008,0.145-0.006,0.229\r\n\t\t\t\tc-0.045,0.048-0.112,0.04-0.172,0.076c-0.032,0.029-0.064,0.059-0.095,0.089c-0.034-0.049-0.068-0.097-0.102-0.146\r\n\t\t\t\tc-0.02-0.043,0.074-0.098,0.057-0.178c-0.035-0.162-0.262-0.199-0.413-0.241c-0.015,0.017-0.03,0.034-0.044,0.051\r\n\t\t\t\tc-0.004,0.004-0.008,0.008-0.013,0.013c0.042,0.031,0.085,0.071,0.102,0.127v0.006c-0.138,0.096-0.242-0.171-0.324,0.006\r\n\t\t\t\tc0.025,0.034,0.051,0.068,0.076,0.102c0.006,0.006,0.013,0.013,0.019,0.019c-0.08,0.017-0.198,0.021-0.261,0.051\r\n\t\t\t\tc-0.006,0.028-0.008,0.049,0.006,0.07c0.103,0.167,0.277-0.021,0.451,0.007c0.098,0.015,0.167,0.047,0.241,0.076\r\n\t\t\t\tc0.004,0.021,0.009,0.043,0.013,0.064c-0.006,0.019-0.013,0.038-0.019,0.057c-0.108,0.081-0.481,0.067-0.534,0.165\r\n\t\t\t\tc-0.002,0.006-0.004,0.013-0.006,0.019c0.008,0.013,0.017,0.025,0.025,0.038c0.081,0.034,0.262-0.022,0.349-0.038\r\n\t\t\t\tc0.073,0.086,0.103,0.124,0.254,0.14c-0.088,0.128-0.197,0.136-0.292,0.235c0.102,0.124,0.465,0.012,0.616,0.07\r\n\t\t\t\tc0.049,0.034,0.097,0.068,0.146,0.102c0.079,0.046,0.211,0.06,0.311,0.076c0.267,0.044,0.261-0.127,0.369-0.172\r\n\t\t\t\tc0.102-0.013,0.203-0.025,0.305-0.038C23.322,15.873,23.442,15.767,23.552,15.69z M25.078,20.894\r\n\t\t\t\tc-0.023,0.009-0.047,0.017-0.07,0.026c-0.007,0.033,0.006,0.053,0.013,0.089c0.036-0.004,0.072-0.008,0.108-0.013\r\n\t\t\t\tc0.017,0.048,0.015,0.085,0.013,0.146c0.12-0.007,0.193-0.047,0.273-0.07c0.034-0.002,0.068-0.004,0.102-0.006\r\n\t\t\t\tc0.076-0.055,0.153-0.11,0.229-0.165c0.074-0.007,0.148-0.013,0.222-0.019c0.008-0.013,0.017-0.025,0.025-0.038\r\n\t\t\t\tc0.049-0.002,0.097-0.004,0.146-0.006c0.016-0.107,0.079-0.154,0.102-0.229c0.037-0.123-0.067-0.364-0.121-0.439\r\n\t\t\t\tc0.126-0.037,0.169-0.056,0.229-0.159c-0.018-0.123-0.068-0.218-0.102-0.324c-0.094-0.067-0.283-0.037-0.4,0.013\r\n\t\t\t\tc-0.064-0.001-0.088-0.026-0.102-0.076c-0.149,0.013-0.194,0.075-0.229,0.203c-0.025,0.006-0.051,0.013-0.076,0.019\r\n\t\t\t\tc-0.006,0.009-0.013,0.017-0.019,0.025h0.184c-0.025,0.064-0.066,0.089-0.133,0.108c-0.001,0.021,0.008,0.04,0.019,0.063\r\n\t\t\t\tc-0.128-0.01-0.273-0.013-0.375-0.051c-0.045,0.036-0.065,0.068-0.083,0.134v0.038c0.057-0.015,0.088-0.022,0.127,0.013h0.013\r\n\t\t\t\tc-0.037,0.042-0.05,0.035-0.038,0.102c-0.03,0.006-0.059,0.013-0.089,0.019c0.008,0.009,0.017,0.017,0.025,0.025\r\n\t\t\t\tc-0.013,0.017-0.025,0.034-0.038,0.051c0.051,0.024,0.293,0.068,0.343,0.038c0.006,0.017,0.013,0.034,0.019,0.051\r\n\t\t\t\tc-0.083,0.035-0.129,0.014-0.165,0.095c-0.008,0.022-0.004,0.012,0.013,0.038c-0.013,0.019-0.025,0.038-0.038,0.057\r\n\t\t\t\tc-0.004,0.004-0.008,0.008-0.013,0.013c0.047-0.006,0.093-0.013,0.14-0.019c-0.018,0.068-0.092,0.065-0.159,0.076\r\n\t\t\t\tc-0.021,0.026-0.02,0.078-0.044,0.102c-0.032,0.024-0.13,0.015-0.184,0.013c-0.002,0.015-0.004,0.03-0.006,0.044\r\n\t\t\t\tc0.047,0.002,0.093,0.004,0.14,0.006V20.894z M26.336,19.465c-0.008,0.048-0.009,0.074,0,0.121\r\n\t\t\t\tc0.011,0.002,0.021,0.004,0.032,0.006c0.011-0.013,0.021-0.025,0.032-0.038c-0.004-0.034-0.009-0.068-0.013-0.102\r\n\t\t\t\tC26.37,19.456,26.353,19.46,26.336,19.465z M37.611,27.116c0.023-0.013,0.016-0.005,0.019-0.038\r\n\t\t\t\tc0.145-0.004,0.169-0.092,0.292-0.102c-0.015-0.019-0.03-0.038-0.045-0.057c0.053-0.068,0.135-0.101,0.191-0.165\r\n\t\t\t\tc-0.1,0.036-0.199,0.072-0.299,0.108c-0.059-0.006-0.119-0.013-0.178-0.019c0.011,0.023,0.012,0.039,0,0.064\r\n\t\t\t\tc-0.006,0.006-0.171,0.045-0.184,0.045c0.012,0.053,0.028,0.071,0.045,0.114C37.497,27.08,37.576,27.089,37.611,27.116z\r\n\t\t\t\t M8.363,28.654h0.006c-0.002-0.006-0.004-0.013-0.006-0.019V28.654z M14.54,13.788c0.035-0.025,0.102-0.125,0.045-0.175\r\n\t\t\t\tc-0.059,0.063-0.171,0.08-0.068,0.171C14.525,13.786,14.532,13.787,14.54,13.788z M8.375,28.698h0.006\r\n\t\t\t\tc-0.004-0.015-0.008-0.029-0.013-0.044C8.371,28.668,8.373,28.683,8.375,28.698z M8.433,28.838\r\n\t\t\t\tc0.006,0.004,0.013,0.008,0.019,0.013c-0.023-0.051-0.047-0.102-0.07-0.153C8.389,28.761,8.414,28.792,8.433,28.838z\r\n\t\t\t\t M21.4,11.563c-0.005,0-0.01,0.001-0.015,0.001c-0.058,0.053-0.117,0.105-0.175,0.158c-0.053,0.024-0.106,0.048-0.158,0.072\r\n\t\t\t\tc-0.038,0.029-0.035,0.1-0.05,0.136c-0.008,0.019-0.056,0.102-0.048,0.112c0.02,0.01,0.135-0.027,0.152-0.034\r\n\t\t\t\tc0.041-0.017,0.077-0.038,0.104-0.06c0.011-0.01,0.021-0.021,0.032-0.031c0.029-0.01,0.059-0.019,0.088-0.029\r\n\t\t\t\tc0.028-0.025,0.056-0.049,0.084-0.074c0.003-0.003,0.007-0.007,0.01-0.01c0.014,0.009,0.038,0.018,0.063,0.008\r\n\t\t\t\tc0.047-0.026,0.042-0.069,0.098-0.095C21.602,11.666,21.437,11.588,21.4,11.563z M21.72,10.584c0.002,0,0.003-0.001,0.005-0.001\r\n\t\t\t\tc-0.005-0.006-0.009-0.013-0.014-0.019c-0.016,0.002-0.032,0.005-0.048,0.007c-0.148-0.003-0.224-0.095-0.411-0.061\r\n\t\t\t\tc-0.054,0.025-0.235,0.062-0.254,0.094c-0.029,0.048,0.077,0.08,0.116,0.089c0.134,0.033,0.307,0.006,0.465,0.018\r\n\t\t\t\tc0.029,0.002,0.079,0.007,0.099,0.019c0.015,0.009,0.022,0.026,0.042,0.03c0.032,0.001,0.089-0.042,0.103-0.056\r\n\t\t\t\tc0.001-0.001,0.003-0.002,0.004-0.003c-0.082-0.021-0.2-0.02-0.258-0.064C21.619,10.62,21.669,10.602,21.72,10.584z\r\n\t\t\t\t M14.242,41.547c0.147,0.036,0.426-0.012,0.508-0.108c0.048-0.056,0.064-0.206,0.095-0.267c-0.057-0.054-0.445-0.06-0.591-0.057\r\n\t\t\t\tC14.175,41.239,14.197,41.443,14.242,41.547z M10.822,34.354c0.015,0.038,0.009,0.091,0.013,0.134\r\n\t\t\t\tc0.086,0.022,0.114-0.016,0.203-0.019c0.117-0.003,0.196,0.036,0.216-0.095c-0.077-0.061-0.285-0.049-0.4-0.051\r\n\t\t\t\tC10.843,34.333,10.833,34.343,10.822,34.354z M12.735,25.375c-0.017-0.011-0.034-0.021-0.051-0.032\r\n\t\t\t\tc-0.011-0.1,0.084-0.092,0.133-0.146c0.043-0.048,0.06-0.154,0.095-0.203c-0.04-0.027-0.081-0.055-0.121-0.083\r\n\t\t\t\tc-0.045,0.101-0.251,0.268-0.216,0.413c0.05,0.208,0.421,0.141,0.47-0.025C12.9,25.097,12.854,25.337,12.735,25.375z\r\n\t\t\t\t M10.93,37.912c-0.004,0.006-0.008,0.013-0.013,0.019c0.044,0.003,0.042,0.01,0.063,0.032c-0.012,0.031-0.012,0.05,0,0.083\r\n\t\t\t\tc-0.034,0.015-0.068,0.03-0.102,0.044c-0.004,0.006-0.009,0.013-0.013,0.019v0.007c0.085,0,0.174-0.005,0.242-0.013\r\n\t\t\t\tc0.02-0.081-0.008-0.157,0.032-0.216v-0.006h-0.038C11.059,37.905,10.99,37.913,10.93,37.912z M10.015,33.979\r\n\t\t\t\tc-0.092-0.017-0.212,0.006-0.261-0.083c-0.045,0.004-0.062,0.023-0.089,0.032c-0.04-0.004-0.081-0.008-0.121-0.013\r\n\t\t\t\tc-0.04,0.009-0.059,0.049-0.127,0.038c-0.109-0.017-0.194-0.056-0.324-0.057c-0.027,0.004-0.055,0.008-0.083,0.013\r\n\t\t\t\tc-0.006,0.008-0.013,0.017-0.019,0.026v0.025c0.064,0.033,0.195,0.03,0.229,0.095c0.046,0.078-0.076,0.145,0.095,0.21\r\n\t\t\t\tc0.004,0.006,0.008,0.013,0.013,0.019c-0.128,0.082-0.41,0.037-0.572-0.013c-0.013,0.015-0.025,0.03-0.038,0.045\r\n\t\t\t\tc-0.002,0.004-0.004,0.008-0.006,0.013c0.034,0.065,0.099,0.077,0.152,0.121c0.05-0.012,0.053-0.047,0.102-0.057\r\n\t\t\t\tc0.076,0.011,0.153,0.021,0.229,0.032c0.078-0.006,0.157-0.013,0.235-0.019c0.048,0.048,0.109,0.151,0.178,0.172\r\n\t\t\t\tc0.044-0.114,0.093-0.196,0.203-0.248c0.021,0.023,0.042,0.047,0.064,0.07c0.075,0.033,0.112-0.06,0.178-0.076\r\n\t\t\t\tc0.044-0.011,0.074,0.012,0.095,0.019c0.129-0.06,0.183,0.045,0.248,0.083c0.039-0.029,0.062-0.074,0.089-0.114\r\n\t\t\t\tC10.38,34.159,10.076,34.16,10.015,33.979z M7.581,34.385c0.019,0.027,0.251,0.169,0.311,0.153\r\n\t\t\t\tc0.044-0.012,0.058-0.078,0.14-0.057c0.051,0.013,0.064,0.04,0.127,0.038c0.002-0.011,0.004-0.021,0.006-0.032\r\n\t\t\t\tc-0.073-0.11-0.33-0.158-0.515-0.153C7.628,34.352,7.604,34.368,7.581,34.385z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"COMPASS_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"COMPASS","display":"inline"},"children":[{"name":"g","attribs":{"id":"COMPASS","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M16,16l9,22l23,10l-9-23L16,16z M32,35c-1.657,0-3-1.343-3-3\r\n\t\t\t\tc0-1.657,1.343-3,3-3c1.657,0,3,1.343,3,3C35,33.657,33.657,35,32,35z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32S17.641,6,32,6c14.359,0,26,11.641,26,26\r\n\t\t\t\tS46.359,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M16,16l9,22l23,10l-9-23L16,16z M32,35c-1.657,0-3-1.343-3-3\r\n\t\t\t\tc0-1.657,1.343-3,3-3c1.657,0,3,1.343,3,3C35,33.657,33.657,35,32,35z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32S17.641,6,32,6c14.359,0,26,11.641,26,26\r\n\t\t\t\tS46.359,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"TARGET_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"TARGET","display":"inline"},"children":[{"name":"g","attribs":{"id":"TARGET","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,29c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3s3-1.343,3-3\r\n\t\t\t\tC35,30.343,33.657,29,32,29z M61,29h-3.186C56.438,17.042,46.956,7.569,35,6.191V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3.186\r\n\t\t\t\tC17.042,7.562,7.568,17.044,6.191,29H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h3.186C7.562,46.958,17.044,56.432,29,57.809V61\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3v-3.191C46.956,56.432,56.438,46.958,57.814,35H61c1.657,0,3-1.343,3-3\r\n\t\t\t\tC64,30.343,62.657,29,61,29z M46,35h5.751C50.448,43.638,43.634,50.453,35,51.757V46c0-1.657-1.343-3-3-3s-3,1.343-3,3v5.756\r\n\t\t\t\tC20.366,50.453,13.552,43.638,12.249,35H18c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-5.756\r\n\t\t\t\tC13.547,20.366,20.362,13.552,29,12.249V18c0,1.657,1.343,3,3,3s3-1.343,3-3v-5.756C43.634,13.547,50.448,20.362,51.751,29H46\r\n\t\t\t\tc-1.657,0-3,1.343-3,3C43,33.657,44.343,35,46,35z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,29c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3s3-1.343,3-3\r\n\t\t\t\tC35,30.343,33.657,29,32,29z M61,29h-3.186C56.438,17.042,46.956,7.569,35,6.191V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3.186\r\n\t\t\t\tC17.042,7.562,7.568,17.044,6.191,29H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h3.186C7.562,46.958,17.044,56.432,29,57.809V61\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3v-3.191C46.956,56.432,56.438,46.958,57.814,35H61c1.657,0,3-1.343,3-3\r\n\t\t\t\tC64,30.343,62.657,29,61,29z M46,35h5.751C50.448,43.638,43.634,50.453,35,51.757V46c0-1.657-1.343-3-3-3s-3,1.343-3,3v5.756\r\n\t\t\t\tC20.366,50.453,13.552,43.638,12.249,35H18c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-5.756\r\n\t\t\t\tC13.547,20.366,20.362,13.552,29,12.249V18c0,1.657,1.343,3,3,3s3-1.343,3-3v-5.756C43.634,13.547,50.448,20.362,51.751,29H46\r\n\t\t\t\tc-1.657,0-3,1.343-3,3C43,33.657,44.343,35,46,35z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"PIN__x2F__ZOOM_OUT_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PIN__x2F__ZOOM_OUT","display":"inline"},"children":[{"name":"g","attribs":{"id":"PIN__x2F__ZOOM_OUT","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M40,21H24c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h16c1.657,0,3-1.343,3-3\r\n\t\t\t\tC43,22.343,41.657,21,40,21z M32,0C18.746,0,8,10.747,8,24c0,13.254,24,40,24,40s24-26.746,24-40C56,10.747,45.254,0,32,0z\r\n\t\t\t\t M32,40c-8.836,0-16-7.164-16-16c0-8.836,7.164-16,16-16c8.836,0,16,7.164,16,16C48,32.836,40.836,40,32,40z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M40,21H24c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h16c1.657,0,3-1.343,3-3\r\n\t\t\t\tC43,22.343,41.657,21,40,21z M32,0C18.746,0,8,10.747,8,24c0,13.254,24,40,24,40s24-26.746,24-40C56,10.747,45.254,0,32,0z\r\n\t\t\t\t M32,40c-8.836,0-16-7.164-16-16c0-8.836,7.164-16,16-16c8.836,0,16,7.164,16,16C48,32.836,40.836,40,32,40z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"PIN__x2F__ZOOM_IN_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PIN__x2F__ZOOM_IN","display":"inline"},"children":[{"name":"g","attribs":{"id":"PIN__x2F__ZOOM_IN","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M40,21h-5v-5c0-1.657-1.343-3-3-3s-3,1.343-3,3v5h-5c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,1.657,1.343,3,3,3h5v5c0,1.657,1.343,3,3,3s3-1.343,3-3v-5h5c1.657,0,3-1.343,3-3C43,22.343,41.657,21,40,21z M32,0\r\n\t\t\t\tC18.746,0,8,10.747,8,24c0,13.254,24,40,24,40s24-26.746,24-40C56,10.747,45.254,0,32,0z M32,40c-8.836,0-16-7.164-16-16\r\n\t\t\t\tc0-8.836,7.164-16,16-16c8.836,0,16,7.164,16,16C48,32.836,40.836,40,32,40z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M40,21h-5v-5c0-1.657-1.343-3-3-3s-3,1.343-3,3v5h-5c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,1.657,1.343,3,3,3h5v5c0,1.657,1.343,3,3,3s3-1.343,3-3v-5h5c1.657,0,3-1.343,3-3C43,22.343,41.657,21,40,21z M32,0\r\n\t\t\t\tC18.746,0,8,10.747,8,24c0,13.254,24,40,24,40s24-26.746,24-40C56,10.747,45.254,0,32,0z M32,40c-8.836,0-16-7.164-16-16\r\n\t\t\t\tc0-8.836,7.164-16,16-16c8.836,0,16,7.164,16,16C48,32.836,40.836,40,32,40z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"PIN_2_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PIN_2","display":"inline"},"children":[{"name":"g","attribs":{"id":"PIN_2","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,16c-4.418,0-8,3.582-8,8c0,4.418,3.582,8,8,8c4.418,0,8-3.582,8-8\r\n\t\t\t\tC40,19.582,36.418,16,32,16z M32,0C18.746,0,8,10.747,8,24c0,13.254,24,40,24,40s24-26.746,24-40C56,10.747,45.254,0,32,0z\r\n\t\t\t\t M32,40c-8.836,0-16-7.164-16-16c0-8.836,7.164-16,16-16c8.836,0,16,7.164,16,16C48,32.836,40.836,40,32,40z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,16c-4.418,0-8,3.582-8,8c0,4.418,3.582,8,8,8c4.418,0,8-3.582,8-8\r\n\t\t\t\tC40,19.582,36.418,16,32,16z M32,0C18.746,0,8,10.747,8,24c0,13.254,24,40,24,40s24-26.746,24-40C56,10.747,45.254,0,32,0z\r\n\t\t\t\t M32,40c-8.836,0-16-7.164-16-16c0-8.836,7.164-16,16-16c8.836,0,16,7.164,16,16C48,32.836,40.836,40,32,40z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"PIN_1_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PIN_1","display":"inline"},"children":[{"name":"g","attribs":{"id":"PIN_1","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C18.746,0,8,10.747,8,24c0,13.254,24,40,24,40s24-26.746,24-40\r\n\t\t\t\tC56,10.747,45.254,0,32,0z M32,40c-8.836,0-16-7.164-16-16c0-8.836,7.164-16,16-16c8.836,0,16,7.164,16,16\r\n\t\t\t\tC48,32.836,40.836,40,32,40z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C18.746,0,8,10.747,8,24c0,13.254,24,40,24,40s24-26.746,24-40\r\n\t\t\t\tC56,10.747,45.254,0,32,0z M32,40c-8.836,0-16-7.164-16-16c0-8.836,7.164-16,16-16c8.836,0,16,7.164,16,16\r\n\t\t\t\tC48,32.836,40.836,40,32,40z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CLOUD__x2F__UPLOAD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CLOUD__x2F__UPLOAD","display":"inline"},"children":[{"name":"g","attribs":{"id":"CLOUD__x2F__UPLOAD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M43.986,43.719c0-0.002,0-0.004,0-0.006c-0.063-0.658-0.338-1.255-0.756-1.719\r\n\t\t\t\tl0,0l-0.008-0.009c-0.001-0.001-0.002-0.002-0.003-0.003l-8.99-9.989l-0.008,0.007c-0.549-0.61-1.336-1-2.222-1\r\n\t\t\t\tc-0.885,0-1.673,0.391-2.222,1l-0.008-0.007l-8.988,9.987c-0.002,0.002-0.004,0.005-0.006,0.007l-0.006,0.006l0,0\r\n\t\t\t\tC20.292,42.525,20,43.228,20,44c0,0.518,0.131,1.005,0.362,1.43C20.87,46.365,21.861,47,23,47c0.033,0,0.066-0.002,0.099-0.003\r\n\t\t\t\tc0.019-0.001,0.038-0.001,0.057-0.002c0.022-0.001,0.043-0.003,0.065-0.005c0.033-0.002,0.066-0.005,0.098-0.008\r\n\t\t\t\tc0.012-0.001,0.024-0.003,0.036-0.005c0.044-0.005,0.087-0.011,0.13-0.018c0.001,0,0.003,0,0.004-0.001\r\n\t\t\t\tc0.686-0.113,1.294-0.458,1.74-0.953l0,0L29,41.818V57c0,1.657,1.343,3,3,3s3-1.343,3-3V41.818l3.77,4.189l0,0\r\n\t\t\t\tc0.446,0.495,1.055,0.841,1.742,0.953c0.001,0,0.001,0,0.002,0c0.044,0.007,0.088,0.013,0.132,0.018\r\n\t\t\t\tc0.011,0.001,0.023,0.003,0.034,0.004c0.033,0.003,0.067,0.006,0.1,0.008c0.021,0.002,0.042,0.004,0.063,0.005\r\n\t\t\t\tc0.02,0.001,0.04,0.001,0.06,0.002C40.935,46.999,40.967,47,41,47c1.657,0,3-1.343,3-3c0-0.001,0-0.001,0-0.002\r\n\t\t\t\tC44,43.904,43.995,43.811,43.986,43.719z M53.387,19.656C50.048,11.086,41.753,5,32,5c-9.752,0-18.048,6.086-21.387,14.655\r\n\t\t\t\tC4.47,21.532,0,27.243,0,34c0,8.284,6.716,15,15,15c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3c-4.971,0-9-4.029-9-9\r\n\t\t\t\tc0-2.68,1.178-5.08,3.037-6.728c0.192-0.17,0.392-0.331,0.597-0.485c0.013-0.01,0.027-0.02,0.04-0.03\r\n\t\t\t\tc0.194-0.144,0.395-0.278,0.6-0.406c0.032-0.02,0.064-0.039,0.096-0.058c0.192-0.116,0.388-0.225,0.588-0.326\r\n\t\t\t\tc0.055-0.028,0.111-0.054,0.167-0.08c0.184-0.089,0.371-0.172,0.561-0.248c0.083-0.033,0.168-0.062,0.252-0.092\r\n\t\t\t\tc0.171-0.062,0.343-0.123,0.519-0.175c0.116-0.034,0.236-0.062,0.354-0.091c0.152-0.038,0.303-0.079,0.457-0.109\r\n\t\t\t\tc0.162-0.032,0.328-0.053,0.493-0.075c0.119-0.016,0.236-0.039,0.356-0.05C14.408,25.017,14.702,25,15,25\r\n\t\t\t\tc0.094,0,0.185,0.011,0.278,0.014c0.091-0.513,0.206-1.017,0.342-1.512c0.033-0.121,0.078-0.237,0.114-0.357\r\n\t\t\t\tc0.112-0.375,0.227-0.749,0.364-1.112c0.041-0.11,0.092-0.215,0.135-0.324c0.148-0.37,0.3-0.737,0.473-1.093\r\n\t\t\t\tc0.042-0.086,0.09-0.168,0.133-0.253c0.188-0.372,0.384-0.741,0.599-1.097C20.406,14.318,25.808,11,32,11\r\n\t\t\t\tc6.192,0,11.595,3.318,14.562,8.266c0.214,0.357,0.41,0.725,0.598,1.097c0.043,0.085,0.091,0.167,0.133,0.253\r\n\t\t\t\tc0.173,0.356,0.325,0.724,0.473,1.093c0.043,0.109,0.094,0.214,0.135,0.324c0.137,0.363,0.252,0.737,0.364,1.112\r\n\t\t\t\tc0.036,0.12,0.081,0.236,0.114,0.357c0.136,0.495,0.251,0.999,0.342,1.512C48.815,25.011,48.906,25,49,25\r\n\t\t\t\tc0.298,0,0.592,0.016,0.882,0.045c0.12,0.012,0.237,0.034,0.356,0.05c0.165,0.023,0.331,0.043,0.493,0.075\r\n\t\t\t\tc0.155,0.03,0.306,0.07,0.457,0.109c0.118,0.029,0.238,0.057,0.354,0.091c0.176,0.052,0.348,0.113,0.519,0.175\r\n\t\t\t\tc0.084,0.031,0.169,0.059,0.252,0.092c0.191,0.076,0.377,0.16,0.561,0.248c0.056,0.026,0.112,0.053,0.167,0.08\r\n\t\t\t\tc0.201,0.101,0.397,0.21,0.588,0.326c0.032,0.019,0.064,0.039,0.096,0.058c0.206,0.128,0.406,0.263,0.601,0.406\r\n\t\t\t\tc0.013,0.01,0.027,0.02,0.04,0.03c0.206,0.154,0.405,0.315,0.597,0.485C56.822,28.921,58,31.32,58,34c0,4.971-4.029,9-9,9\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3c8.284,0,15-6.716,15-15C64,27.243,59.53,21.532,53.387,19.656z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M43.986,43.719c0-0.002,0-0.004,0-0.006c-0.063-0.658-0.338-1.255-0.756-1.719\r\n\t\t\t\tl0,0l-0.008-0.009c-0.001-0.001-0.002-0.002-0.003-0.003l-8.99-9.989l-0.008,0.007c-0.549-0.61-1.336-1-2.222-1\r\n\t\t\t\tc-0.885,0-1.673,0.391-2.222,1l-0.008-0.007l-8.988,9.987c-0.002,0.002-0.004,0.005-0.006,0.007l-0.006,0.006l0,0\r\n\t\t\t\tC20.292,42.525,20,43.228,20,44c0,0.518,0.131,1.005,0.362,1.43C20.87,46.365,21.861,47,23,47c0.033,0,0.066-0.002,0.099-0.003\r\n\t\t\t\tc0.019-0.001,0.038-0.001,0.057-0.002c0.022-0.001,0.043-0.003,0.065-0.005c0.033-0.002,0.066-0.005,0.098-0.008\r\n\t\t\t\tc0.012-0.001,0.024-0.003,0.036-0.005c0.044-0.005,0.087-0.011,0.13-0.018c0.001,0,0.003,0,0.004-0.001\r\n\t\t\t\tc0.686-0.113,1.294-0.458,1.74-0.953l0,0L29,41.818V57c0,1.657,1.343,3,3,3s3-1.343,3-3V41.818l3.77,4.189l0,0\r\n\t\t\t\tc0.446,0.495,1.055,0.841,1.742,0.953c0.001,0,0.001,0,0.002,0c0.044,0.007,0.088,0.013,0.132,0.018\r\n\t\t\t\tc0.011,0.001,0.023,0.003,0.034,0.004c0.033,0.003,0.067,0.006,0.1,0.008c0.021,0.002,0.042,0.004,0.063,0.005\r\n\t\t\t\tc0.02,0.001,0.04,0.001,0.06,0.002C40.935,46.999,40.967,47,41,47c1.657,0,3-1.343,3-3c0-0.001,0-0.001,0-0.002\r\n\t\t\t\tC44,43.904,43.995,43.811,43.986,43.719z M53.387,19.656C50.048,11.086,41.753,5,32,5c-9.752,0-18.048,6.086-21.387,14.655\r\n\t\t\t\tC4.47,21.532,0,27.243,0,34c0,8.284,6.716,15,15,15c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3c-4.971,0-9-4.029-9-9\r\n\t\t\t\tc0-2.68,1.178-5.08,3.037-6.728c0.192-0.17,0.392-0.331,0.597-0.485c0.013-0.01,0.027-0.02,0.04-0.03\r\n\t\t\t\tc0.194-0.144,0.395-0.278,0.6-0.406c0.032-0.02,0.064-0.039,0.096-0.058c0.192-0.116,0.388-0.225,0.588-0.326\r\n\t\t\t\tc0.055-0.028,0.111-0.054,0.167-0.08c0.184-0.089,0.371-0.172,0.561-0.248c0.083-0.033,0.168-0.062,0.252-0.092\r\n\t\t\t\tc0.171-0.062,0.343-0.123,0.519-0.175c0.116-0.034,0.236-0.062,0.354-0.091c0.152-0.038,0.303-0.079,0.457-0.109\r\n\t\t\t\tc0.162-0.032,0.328-0.053,0.493-0.075c0.119-0.016,0.236-0.039,0.356-0.05C14.408,25.017,14.702,25,15,25\r\n\t\t\t\tc0.094,0,0.185,0.011,0.278,0.014c0.091-0.513,0.206-1.017,0.342-1.512c0.033-0.121,0.078-0.237,0.114-0.357\r\n\t\t\t\tc0.112-0.375,0.227-0.749,0.364-1.112c0.041-0.11,0.092-0.215,0.135-0.324c0.148-0.37,0.3-0.737,0.473-1.093\r\n\t\t\t\tc0.042-0.086,0.09-0.168,0.133-0.253c0.188-0.372,0.384-0.741,0.599-1.097C20.406,14.318,25.808,11,32,11\r\n\t\t\t\tc6.192,0,11.595,3.318,14.562,8.266c0.214,0.357,0.41,0.725,0.598,1.097c0.043,0.085,0.091,0.167,0.133,0.253\r\n\t\t\t\tc0.173,0.356,0.325,0.724,0.473,1.093c0.043,0.109,0.094,0.214,0.135,0.324c0.137,0.363,0.252,0.737,0.364,1.112\r\n\t\t\t\tc0.036,0.12,0.081,0.236,0.114,0.357c0.136,0.495,0.251,0.999,0.342,1.512C48.815,25.011,48.906,25,49,25\r\n\t\t\t\tc0.298,0,0.592,0.016,0.882,0.045c0.12,0.012,0.237,0.034,0.356,0.05c0.165,0.023,0.331,0.043,0.493,0.075\r\n\t\t\t\tc0.155,0.03,0.306,0.07,0.457,0.109c0.118,0.029,0.238,0.057,0.354,0.091c0.176,0.052,0.348,0.113,0.519,0.175\r\n\t\t\t\tc0.084,0.031,0.169,0.059,0.252,0.092c0.191,0.076,0.377,0.16,0.561,0.248c0.056,0.026,0.112,0.053,0.167,0.08\r\n\t\t\t\tc0.201,0.101,0.397,0.21,0.588,0.326c0.032,0.019,0.064,0.039,0.096,0.058c0.206,0.128,0.406,0.263,0.601,0.406\r\n\t\t\t\tc0.013,0.01,0.027,0.02,0.04,0.03c0.206,0.154,0.405,0.315,0.597,0.485C56.822,28.921,58,31.32,58,34c0,4.971-4.029,9-9,9\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3c8.284,0,15-6.716,15-15C64,27.243,59.53,21.532,53.387,19.656z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CLOUD__x2F__DOWNLOAD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CLOUD__x2F__DOWNLOAD","display":"inline"},"children":[{"name":"g","attribs":{"id":"CLOUD__x2F__DOWNLOAD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M41,44c-0.885,0-1.681,0.384-2.23,0.993h0L35,49.182V34c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v15.182l-3.77-4.189l0,0C24.681,44.384,23.885,44,23,44c-1.657,0-3,1.343-3,3c0,0.096,0.005,0.192,0.014,0.286\r\n\t\t\t\tc0,0,0,0,0,0c0.062,0.659,0.337,1.256,0.756,1.721l0,0l9,10L29.778,59C30.327,59.609,31.115,60,32,60s1.673-0.391,2.222-1.001\r\n\t\t\t\tl0.008,0.007l9-10l0,0c0.419-0.465,0.694-1.061,0.756-1.719c0-0.002,0-0.004,0-0.006C43.995,47.189,44,47.096,44,47.001V47\r\n\t\t\t\tc0-0.104-0.005-0.206-0.015-0.307C43.831,45.181,42.553,44,41,44z M53.387,19.656C50.048,11.086,41.753,5,32,5\r\n\t\t\t\tc-9.752,0-18.048,6.086-21.387,14.655C4.47,21.532,0,27.243,0,34c0,8.284,6.716,15,15,15c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-4.97,0-9-4.029-9-9c0-2.68,1.178-5.08,3.037-6.728c0.192-0.17,0.392-0.331,0.597-0.485\r\n\t\t\t\tc0.013-0.01,0.027-0.02,0.04-0.03c0.194-0.144,0.395-0.278,0.601-0.406c0.032-0.02,0.064-0.039,0.096-0.058\r\n\t\t\t\tc0.192-0.116,0.388-0.225,0.588-0.326c0.055-0.028,0.111-0.054,0.167-0.08c0.184-0.089,0.371-0.172,0.561-0.248\r\n\t\t\t\tc0.083-0.033,0.168-0.062,0.252-0.092c0.171-0.062,0.343-0.123,0.519-0.175c0.116-0.034,0.236-0.062,0.354-0.091\r\n\t\t\t\tc0.152-0.038,0.303-0.079,0.457-0.109c0.162-0.032,0.328-0.053,0.493-0.075c0.119-0.016,0.236-0.039,0.356-0.05\r\n\t\t\t\tC14.408,25.017,14.702,25,15,25c0.094,0,0.185,0.011,0.278,0.014c0.091-0.513,0.206-1.017,0.342-1.512\r\n\t\t\t\tc0.033-0.121,0.078-0.237,0.114-0.357c0.112-0.375,0.227-0.749,0.364-1.112c0.041-0.11,0.092-0.215,0.135-0.324\r\n\t\t\t\tc0.148-0.37,0.3-0.737,0.473-1.093c0.042-0.086,0.09-0.168,0.133-0.253c0.188-0.372,0.384-0.741,0.598-1.097\r\n\t\t\t\tC20.406,14.318,25.808,11,32,11s11.595,3.318,14.562,8.266c0.214,0.357,0.41,0.725,0.599,1.097\r\n\t\t\t\tc0.043,0.085,0.091,0.167,0.133,0.253c0.173,0.356,0.325,0.724,0.473,1.093c0.043,0.109,0.094,0.214,0.135,0.324\r\n\t\t\t\tc0.137,0.363,0.252,0.737,0.364,1.112c0.036,0.12,0.081,0.236,0.114,0.357c0.136,0.495,0.251,0.999,0.342,1.512\r\n\t\t\t\tC48.815,25.011,48.906,25,49,25c0.298,0,0.592,0.016,0.882,0.045c0.12,0.012,0.237,0.034,0.356,0.05\r\n\t\t\t\tc0.165,0.023,0.331,0.043,0.493,0.075c0.155,0.03,0.306,0.07,0.457,0.109c0.118,0.029,0.238,0.057,0.354,0.091\r\n\t\t\t\tc0.176,0.052,0.348,0.113,0.519,0.175c0.084,0.031,0.169,0.059,0.252,0.092c0.191,0.076,0.377,0.16,0.561,0.248\r\n\t\t\t\tc0.056,0.026,0.112,0.053,0.167,0.08c0.201,0.101,0.397,0.21,0.589,0.326c0.032,0.019,0.064,0.039,0.096,0.058\r\n\t\t\t\tc0.206,0.128,0.406,0.263,0.601,0.406c0.013,0.01,0.027,0.02,0.04,0.03c0.206,0.154,0.406,0.315,0.597,0.485\r\n\t\t\t\tC56.822,28.921,58,31.32,58,34c0,4.971-4.03,9-9,9c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3c8.284,0,15-6.716,15-15\r\n\t\t\t\tC64,27.243,59.53,21.532,53.387,19.656z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M41,44c-0.885,0-1.681,0.384-2.23,0.993h0L35,49.182V34c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v15.182l-3.77-4.189l0,0C24.681,44.384,23.885,44,23,44c-1.657,0-3,1.343-3,3c0,0.096,0.005,0.192,0.014,0.286\r\n\t\t\t\tc0,0,0,0,0,0c0.062,0.659,0.337,1.256,0.756,1.721l0,0l9,10L29.778,59C30.327,59.609,31.115,60,32,60s1.673-0.391,2.222-1.001\r\n\t\t\t\tl0.008,0.007l9-10l0,0c0.419-0.465,0.694-1.061,0.756-1.719c0-0.002,0-0.004,0-0.006C43.995,47.189,44,47.096,44,47.001V47\r\n\t\t\t\tc0-0.104-0.005-0.206-0.015-0.307C43.831,45.181,42.553,44,41,44z M53.387,19.656C50.048,11.086,41.753,5,32,5\r\n\t\t\t\tc-9.752,0-18.048,6.086-21.387,14.655C4.47,21.532,0,27.243,0,34c0,8.284,6.716,15,15,15c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-4.97,0-9-4.029-9-9c0-2.68,1.178-5.08,3.037-6.728c0.192-0.17,0.392-0.331,0.597-0.485\r\n\t\t\t\tc0.013-0.01,0.027-0.02,0.04-0.03c0.194-0.144,0.395-0.278,0.601-0.406c0.032-0.02,0.064-0.039,0.096-0.058\r\n\t\t\t\tc0.192-0.116,0.388-0.225,0.588-0.326c0.055-0.028,0.111-0.054,0.167-0.08c0.184-0.089,0.371-0.172,0.561-0.248\r\n\t\t\t\tc0.083-0.033,0.168-0.062,0.252-0.092c0.171-0.062,0.343-0.123,0.519-0.175c0.116-0.034,0.236-0.062,0.354-0.091\r\n\t\t\t\tc0.152-0.038,0.303-0.079,0.457-0.109c0.162-0.032,0.328-0.053,0.493-0.075c0.119-0.016,0.236-0.039,0.356-0.05\r\n\t\t\t\tC14.408,25.017,14.702,25,15,25c0.094,0,0.185,0.011,0.278,0.014c0.091-0.513,0.206-1.017,0.342-1.512\r\n\t\t\t\tc0.033-0.121,0.078-0.237,0.114-0.357c0.112-0.375,0.227-0.749,0.364-1.112c0.041-0.11,0.092-0.215,0.135-0.324\r\n\t\t\t\tc0.148-0.37,0.3-0.737,0.473-1.093c0.042-0.086,0.09-0.168,0.133-0.253c0.188-0.372,0.384-0.741,0.598-1.097\r\n\t\t\t\tC20.406,14.318,25.808,11,32,11s11.595,3.318,14.562,8.266c0.214,0.357,0.41,0.725,0.599,1.097\r\n\t\t\t\tc0.043,0.085,0.091,0.167,0.133,0.253c0.173,0.356,0.325,0.724,0.473,1.093c0.043,0.109,0.094,0.214,0.135,0.324\r\n\t\t\t\tc0.137,0.363,0.252,0.737,0.364,1.112c0.036,0.12,0.081,0.236,0.114,0.357c0.136,0.495,0.251,0.999,0.342,1.512\r\n\t\t\t\tC48.815,25.011,48.906,25,49,25c0.298,0,0.592,0.016,0.882,0.045c0.12,0.012,0.237,0.034,0.356,0.05\r\n\t\t\t\tc0.165,0.023,0.331,0.043,0.493,0.075c0.155,0.03,0.306,0.07,0.457,0.109c0.118,0.029,0.238,0.057,0.354,0.091\r\n\t\t\t\tc0.176,0.052,0.348,0.113,0.519,0.175c0.084,0.031,0.169,0.059,0.252,0.092c0.191,0.076,0.377,0.16,0.561,0.248\r\n\t\t\t\tc0.056,0.026,0.112,0.053,0.167,0.08c0.201,0.101,0.397,0.21,0.589,0.326c0.032,0.019,0.064,0.039,0.096,0.058\r\n\t\t\t\tc0.206,0.128,0.406,0.263,0.601,0.406c0.013,0.01,0.027,0.02,0.04,0.03c0.206,0.154,0.406,0.315,0.597,0.485\r\n\t\t\t\tC56.822,28.921,58,31.32,58,34c0,4.971-4.03,9-9,9c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3c8.284,0,15-6.716,15-15\r\n\t\t\t\tC64,27.243,59.53,21.532,53.387,19.656z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CLOUD__x2F__FAIL_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CLOUD__x2F__FAIL","display":"inline"},"children":[{"name":"g","attribs":{"id":"CLOUD__x2F__FAIL","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M43,39c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L32,42.758\r\n\t\t\t\tl-5.879-5.879C25.578,36.336,24.829,36,24,36c-1.657,0-3,1.343-3,3c0,0.829,0.336,1.578,0.879,2.121L27.757,47l-5.879,5.879\r\n\t\t\t\tC21.336,53.422,21,54.172,21,55c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.878L32,51.243l5.879,5.879\r\n\t\t\t\tC38.422,57.664,39.172,58,40,58c1.657,0,3-1.343,3-3c0-0.829-0.336-1.579-0.879-2.121L36.243,47l5.879-5.879\r\n\t\t\t\tC42.664,40.579,43,39.829,43,39z M53.387,20.656C50.048,12.086,41.752,6,32,6c-9.752,0-18.048,6.086-21.387,14.655\r\n\t\t\t\tC4.47,22.532,0,28.243,0,35c0,8.284,6.716,15,15,15c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3c-4.971,0-9-4.029-9-9\r\n\t\t\t\tc0-2.68,1.178-5.08,3.037-6.728c0.192-0.17,0.392-0.331,0.597-0.485c0.013-0.01,0.027-0.02,0.04-0.03\r\n\t\t\t\tc0.194-0.144,0.395-0.278,0.6-0.406c0.032-0.02,0.064-0.039,0.096-0.058c0.192-0.116,0.388-0.225,0.589-0.326\r\n\t\t\t\tc0.055-0.028,0.111-0.054,0.167-0.08c0.184-0.089,0.371-0.172,0.561-0.248c0.083-0.033,0.168-0.062,0.252-0.092\r\n\t\t\t\tc0.171-0.062,0.343-0.123,0.519-0.175c0.116-0.034,0.236-0.062,0.354-0.091c0.152-0.038,0.303-0.079,0.457-0.109\r\n\t\t\t\tc0.162-0.032,0.328-0.053,0.493-0.075c0.119-0.016,0.236-0.039,0.356-0.05C14.408,26.017,14.702,26,15,26\r\n\t\t\t\tc0.094,0,0.185,0.011,0.278,0.014c0.091-0.513,0.206-1.017,0.342-1.512c0.033-0.121,0.078-0.237,0.114-0.357\r\n\t\t\t\tc0.112-0.375,0.227-0.749,0.364-1.112c0.041-0.11,0.092-0.215,0.135-0.324c0.148-0.37,0.3-0.737,0.473-1.093\r\n\t\t\t\tc0.042-0.086,0.09-0.168,0.133-0.253c0.188-0.372,0.384-0.741,0.599-1.097C20.406,15.318,25.808,12,32,12\r\n\t\t\t\tc6.192,0,11.594,3.318,14.562,8.266c0.214,0.357,0.41,0.725,0.599,1.097c0.043,0.085,0.091,0.167,0.133,0.253\r\n\t\t\t\tc0.173,0.356,0.325,0.724,0.473,1.093c0.043,0.109,0.094,0.214,0.135,0.324c0.137,0.363,0.252,0.737,0.364,1.112\r\n\t\t\t\tc0.036,0.12,0.081,0.236,0.114,0.357c0.136,0.495,0.251,0.999,0.342,1.512C48.815,26.011,48.906,26,49,26\r\n\t\t\t\tc0.298,0,0.592,0.016,0.882,0.045c0.12,0.012,0.237,0.034,0.356,0.05c0.165,0.023,0.331,0.043,0.493,0.075\r\n\t\t\t\tc0.155,0.03,0.306,0.07,0.457,0.109c0.118,0.029,0.238,0.057,0.354,0.091c0.176,0.052,0.348,0.113,0.519,0.175\r\n\t\t\t\tc0.084,0.031,0.169,0.059,0.252,0.092c0.191,0.076,0.377,0.16,0.561,0.248c0.056,0.026,0.112,0.053,0.167,0.08\r\n\t\t\t\tc0.201,0.101,0.397,0.21,0.588,0.326c0.032,0.019,0.064,0.039,0.096,0.058c0.206,0.128,0.406,0.263,0.601,0.406\r\n\t\t\t\tc0.013,0.01,0.027,0.02,0.04,0.03c0.206,0.154,0.406,0.315,0.597,0.485C56.822,29.921,58,32.32,58,35c0,4.971-4.029,9-9,9\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3c8.284,0,15-6.716,15-15C64,28.243,59.53,22.532,53.387,20.656z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M43,39c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L32,42.758\r\n\t\t\t\tl-5.879-5.879C25.578,36.336,24.829,36,24,36c-1.657,0-3,1.343-3,3c0,0.829,0.336,1.578,0.879,2.121L27.757,47l-5.879,5.879\r\n\t\t\t\tC21.336,53.422,21,54.172,21,55c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.878L32,51.243l5.879,5.879\r\n\t\t\t\tC38.422,57.664,39.172,58,40,58c1.657,0,3-1.343,3-3c0-0.829-0.336-1.579-0.879-2.121L36.243,47l5.879-5.879\r\n\t\t\t\tC42.664,40.579,43,39.829,43,39z M53.387,20.656C50.048,12.086,41.752,6,32,6c-9.752,0-18.048,6.086-21.387,14.655\r\n\t\t\t\tC4.47,22.532,0,28.243,0,35c0,8.284,6.716,15,15,15c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3c-4.971,0-9-4.029-9-9\r\n\t\t\t\tc0-2.68,1.178-5.08,3.037-6.728c0.192-0.17,0.392-0.331,0.597-0.485c0.013-0.01,0.027-0.02,0.04-0.03\r\n\t\t\t\tc0.194-0.144,0.395-0.278,0.6-0.406c0.032-0.02,0.064-0.039,0.096-0.058c0.192-0.116,0.388-0.225,0.589-0.326\r\n\t\t\t\tc0.055-0.028,0.111-0.054,0.167-0.08c0.184-0.089,0.371-0.172,0.561-0.248c0.083-0.033,0.168-0.062,0.252-0.092\r\n\t\t\t\tc0.171-0.062,0.343-0.123,0.519-0.175c0.116-0.034,0.236-0.062,0.354-0.091c0.152-0.038,0.303-0.079,0.457-0.109\r\n\t\t\t\tc0.162-0.032,0.328-0.053,0.493-0.075c0.119-0.016,0.236-0.039,0.356-0.05C14.408,26.017,14.702,26,15,26\r\n\t\t\t\tc0.094,0,0.185,0.011,0.278,0.014c0.091-0.513,0.206-1.017,0.342-1.512c0.033-0.121,0.078-0.237,0.114-0.357\r\n\t\t\t\tc0.112-0.375,0.227-0.749,0.364-1.112c0.041-0.11,0.092-0.215,0.135-0.324c0.148-0.37,0.3-0.737,0.473-1.093\r\n\t\t\t\tc0.042-0.086,0.09-0.168,0.133-0.253c0.188-0.372,0.384-0.741,0.599-1.097C20.406,15.318,25.808,12,32,12\r\n\t\t\t\tc6.192,0,11.594,3.318,14.562,8.266c0.214,0.357,0.41,0.725,0.599,1.097c0.043,0.085,0.091,0.167,0.133,0.253\r\n\t\t\t\tc0.173,0.356,0.325,0.724,0.473,1.093c0.043,0.109,0.094,0.214,0.135,0.324c0.137,0.363,0.252,0.737,0.364,1.112\r\n\t\t\t\tc0.036,0.12,0.081,0.236,0.114,0.357c0.136,0.495,0.251,0.999,0.342,1.512C48.815,26.011,48.906,26,49,26\r\n\t\t\t\tc0.298,0,0.592,0.016,0.882,0.045c0.12,0.012,0.237,0.034,0.356,0.05c0.165,0.023,0.331,0.043,0.493,0.075\r\n\t\t\t\tc0.155,0.03,0.306,0.07,0.457,0.109c0.118,0.029,0.238,0.057,0.354,0.091c0.176,0.052,0.348,0.113,0.519,0.175\r\n\t\t\t\tc0.084,0.031,0.169,0.059,0.252,0.092c0.191,0.076,0.377,0.16,0.561,0.248c0.056,0.026,0.112,0.053,0.167,0.08\r\n\t\t\t\tc0.201,0.101,0.397,0.21,0.588,0.326c0.032,0.019,0.064,0.039,0.096,0.058c0.206,0.128,0.406,0.263,0.601,0.406\r\n\t\t\t\tc0.013,0.01,0.027,0.02,0.04,0.03c0.206,0.154,0.406,0.315,0.597,0.485C56.822,29.921,58,32.32,58,35c0,4.971-4.029,9-9,9\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3c8.284,0,15-6.716,15-15C64,28.243,59.53,22.532,53.387,20.656z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CLOUD__x2F__OK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CLOUD__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{"id":"CLOUD__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M43,36c-1.039,0-1.954,0.528-2.493,1.33l-8.936,12.998l-5.45-5.45\r\n\t\t\t\tC25.578,44.336,24.828,44,24,44c-1.657,0-3,1.343-3,3c0,0.829,0.336,1.579,0.879,2.121l8,8C30.422,57.664,31.172,58,32,58\r\n\t\t\t\tc1.039,0,1.954-0.528,2.493-1.33l10.969-15.954C45.801,40.23,46,39.638,46,39C46,37.343,44.657,36,43,36z M53.387,20.656\r\n\t\t\t\tC50.048,12.086,41.752,6,32,6c-9.753,0-18.048,6.086-21.387,14.655C4.47,22.532,0,28.243,0,35c0,8.284,6.716,15,15,15\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3c-4.971,0-9-4.029-9-9c0-2.68,1.178-5.08,3.037-6.728\r\n\t\t\t\tc0.192-0.17,0.392-0.331,0.597-0.485c0.013-0.01,0.027-0.02,0.04-0.03c0.194-0.144,0.395-0.278,0.601-0.406\r\n\t\t\t\tc0.032-0.02,0.064-0.039,0.096-0.058c0.192-0.116,0.388-0.225,0.588-0.326c0.055-0.028,0.111-0.054,0.167-0.08\r\n\t\t\t\tc0.184-0.089,0.371-0.172,0.561-0.248c0.083-0.033,0.168-0.062,0.252-0.092c0.171-0.062,0.343-0.123,0.519-0.175\r\n\t\t\t\tc0.116-0.034,0.236-0.062,0.354-0.091c0.152-0.038,0.303-0.079,0.457-0.109c0.162-0.032,0.328-0.053,0.493-0.075\r\n\t\t\t\tc0.119-0.016,0.236-0.039,0.356-0.05C14.408,26.017,14.702,26,15,26c0.094,0,0.185,0.011,0.278,0.014\r\n\t\t\t\tc0.091-0.513,0.206-1.017,0.342-1.512c0.033-0.121,0.078-0.237,0.114-0.357c0.112-0.375,0.227-0.749,0.364-1.112\r\n\t\t\t\tc0.041-0.11,0.092-0.215,0.135-0.324c0.148-0.37,0.3-0.737,0.473-1.093c0.041-0.086,0.09-0.168,0.133-0.253\r\n\t\t\t\tc0.188-0.372,0.384-0.741,0.598-1.097C20.406,15.318,25.808,12,32,12c6.192,0,11.594,3.318,14.562,8.266\r\n\t\t\t\tc0.214,0.357,0.41,0.725,0.599,1.097c0.043,0.085,0.091,0.167,0.133,0.253c0.172,0.356,0.325,0.724,0.473,1.093\r\n\t\t\t\tc0.043,0.109,0.094,0.214,0.135,0.324c0.137,0.363,0.252,0.737,0.364,1.112c0.036,0.12,0.081,0.236,0.114,0.357\r\n\t\t\t\tc0.136,0.495,0.251,0.999,0.342,1.512C48.815,26.011,48.906,26,49,26c0.298,0,0.592,0.016,0.882,0.045\r\n\t\t\t\tc0.12,0.012,0.237,0.034,0.356,0.05c0.165,0.023,0.331,0.043,0.493,0.075c0.155,0.03,0.306,0.07,0.457,0.109\r\n\t\t\t\tc0.118,0.029,0.238,0.057,0.354,0.091c0.176,0.052,0.348,0.113,0.519,0.175c0.084,0.031,0.169,0.059,0.252,0.092\r\n\t\t\t\tc0.191,0.076,0.377,0.16,0.561,0.248c0.056,0.026,0.112,0.053,0.167,0.08c0.2,0.101,0.397,0.21,0.588,0.326\r\n\t\t\t\tc0.032,0.019,0.064,0.039,0.096,0.058c0.206,0.128,0.406,0.263,0.601,0.406c0.013,0.01,0.027,0.02,0.04,0.03\r\n\t\t\t\tc0.206,0.154,0.405,0.315,0.597,0.485C56.822,29.921,58,32.32,58,35c0,4.971-4.029,9-9,9c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,1.657,1.343,3,3,3c8.284,0,15-6.716,15-15C64,28.243,59.53,22.532,53.387,20.656z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M43,36c-1.039,0-1.954,0.528-2.493,1.33l-8.936,12.998l-5.45-5.45\r\n\t\t\t\tC25.578,44.336,24.828,44,24,44c-1.657,0-3,1.343-3,3c0,0.829,0.336,1.579,0.879,2.121l8,8C30.422,57.664,31.172,58,32,58\r\n\t\t\t\tc1.039,0,1.954-0.528,2.493-1.33l10.969-15.954C45.801,40.23,46,39.638,46,39C46,37.343,44.657,36,43,36z M53.387,20.656\r\n\t\t\t\tC50.048,12.086,41.752,6,32,6c-9.753,0-18.048,6.086-21.387,14.655C4.47,22.532,0,28.243,0,35c0,8.284,6.716,15,15,15\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3c-4.971,0-9-4.029-9-9c0-2.68,1.178-5.08,3.037-6.728\r\n\t\t\t\tc0.192-0.17,0.392-0.331,0.597-0.485c0.013-0.01,0.027-0.02,0.04-0.03c0.194-0.144,0.395-0.278,0.601-0.406\r\n\t\t\t\tc0.032-0.02,0.064-0.039,0.096-0.058c0.192-0.116,0.388-0.225,0.588-0.326c0.055-0.028,0.111-0.054,0.167-0.08\r\n\t\t\t\tc0.184-0.089,0.371-0.172,0.561-0.248c0.083-0.033,0.168-0.062,0.252-0.092c0.171-0.062,0.343-0.123,0.519-0.175\r\n\t\t\t\tc0.116-0.034,0.236-0.062,0.354-0.091c0.152-0.038,0.303-0.079,0.457-0.109c0.162-0.032,0.328-0.053,0.493-0.075\r\n\t\t\t\tc0.119-0.016,0.236-0.039,0.356-0.05C14.408,26.017,14.702,26,15,26c0.094,0,0.185,0.011,0.278,0.014\r\n\t\t\t\tc0.091-0.513,0.206-1.017,0.342-1.512c0.033-0.121,0.078-0.237,0.114-0.357c0.112-0.375,0.227-0.749,0.364-1.112\r\n\t\t\t\tc0.041-0.11,0.092-0.215,0.135-0.324c0.148-0.37,0.3-0.737,0.473-1.093c0.041-0.086,0.09-0.168,0.133-0.253\r\n\t\t\t\tc0.188-0.372,0.384-0.741,0.598-1.097C20.406,15.318,25.808,12,32,12c6.192,0,11.594,3.318,14.562,8.266\r\n\t\t\t\tc0.214,0.357,0.41,0.725,0.599,1.097c0.043,0.085,0.091,0.167,0.133,0.253c0.172,0.356,0.325,0.724,0.473,1.093\r\n\t\t\t\tc0.043,0.109,0.094,0.214,0.135,0.324c0.137,0.363,0.252,0.737,0.364,1.112c0.036,0.12,0.081,0.236,0.114,0.357\r\n\t\t\t\tc0.136,0.495,0.251,0.999,0.342,1.512C48.815,26.011,48.906,26,49,26c0.298,0,0.592,0.016,0.882,0.045\r\n\t\t\t\tc0.12,0.012,0.237,0.034,0.356,0.05c0.165,0.023,0.331,0.043,0.493,0.075c0.155,0.03,0.306,0.07,0.457,0.109\r\n\t\t\t\tc0.118,0.029,0.238,0.057,0.354,0.091c0.176,0.052,0.348,0.113,0.519,0.175c0.084,0.031,0.169,0.059,0.252,0.092\r\n\t\t\t\tc0.191,0.076,0.377,0.16,0.561,0.248c0.056,0.026,0.112,0.053,0.167,0.08c0.2,0.101,0.397,0.21,0.588,0.326\r\n\t\t\t\tc0.032,0.019,0.064,0.039,0.096,0.058c0.206,0.128,0.406,0.263,0.601,0.406c0.013,0.01,0.027,0.02,0.04,0.03\r\n\t\t\t\tc0.206,0.154,0.405,0.315,0.597,0.485C56.822,29.921,58,32.32,58,35c0,4.971-4.029,9-9,9c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,1.657,1.343,3,3,3c8.284,0,15-6.716,15-15C64,28.243,59.53,22.532,53.387,20.656z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CLOUD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CLOUD","display":"inline"},"children":[{"name":"g","attribs":{"id":"CLOUD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M53.387,24.656C50.048,16.086,41.753,10,32,10s-18.048,6.086-21.387,14.655\r\n\t\t\t\tC4.47,26.532,0,32.243,0,39c0,8.284,6.716,15,15,15h34c8.284,0,15-6.716,15-15C64,32.243,59.53,26.532,53.387,24.656z M49,48H15\r\n\t\t\t\tc-4.97,0-9-4.029-9-9c0-2.68,1.178-5.08,3.037-6.728c0.192-0.17,0.392-0.331,0.597-0.485c0.013-0.01,0.027-0.02,0.04-0.03\r\n\t\t\t\tc0.194-0.144,0.395-0.278,0.601-0.406c0.032-0.02,0.064-0.039,0.096-0.058c0.192-0.116,0.388-0.225,0.588-0.326\r\n\t\t\t\tc0.055-0.028,0.111-0.054,0.167-0.08c0.184-0.089,0.371-0.172,0.561-0.248c0.083-0.033,0.168-0.062,0.252-0.092\r\n\t\t\t\tc0.171-0.062,0.343-0.123,0.519-0.175c0.116-0.034,0.236-0.062,0.354-0.091c0.152-0.038,0.303-0.079,0.457-0.109\r\n\t\t\t\tc0.162-0.032,0.328-0.053,0.493-0.075c0.119-0.016,0.236-0.039,0.356-0.05C14.408,30.017,14.702,30,15,30\r\n\t\t\t\tc0.094,0,0.185,0.011,0.278,0.014c0.091-0.513,0.206-1.017,0.342-1.512c0.033-0.121,0.078-0.237,0.114-0.357\r\n\t\t\t\tc0.112-0.375,0.227-0.749,0.364-1.112c0.041-0.11,0.092-0.215,0.135-0.324c0.148-0.37,0.3-0.737,0.473-1.093\r\n\t\t\t\tc0.042-0.086,0.09-0.168,0.133-0.253c0.188-0.372,0.384-0.741,0.598-1.097C20.406,19.318,25.808,16,32,16\r\n\t\t\t\ts11.595,3.318,14.562,8.266c0.214,0.357,0.41,0.725,0.599,1.097c0.043,0.085,0.091,0.167,0.133,0.253\r\n\t\t\t\tc0.173,0.356,0.325,0.724,0.473,1.093c0.043,0.109,0.094,0.214,0.135,0.324c0.137,0.363,0.252,0.737,0.364,1.112\r\n\t\t\t\tc0.036,0.12,0.081,0.236,0.114,0.357c0.136,0.495,0.251,0.999,0.342,1.512C48.815,30.011,48.906,30,49,30\r\n\t\t\t\tc0.298,0,0.592,0.016,0.882,0.045c0.12,0.012,0.237,0.034,0.356,0.05c0.165,0.023,0.331,0.043,0.493,0.075\r\n\t\t\t\tc0.155,0.03,0.306,0.07,0.457,0.109c0.118,0.029,0.238,0.057,0.354,0.091c0.176,0.052,0.348,0.113,0.519,0.175\r\n\t\t\t\tc0.084,0.031,0.169,0.059,0.252,0.092c0.191,0.076,0.377,0.16,0.561,0.248c0.056,0.026,0.112,0.053,0.167,0.08\r\n\t\t\t\tc0.201,0.101,0.397,0.21,0.588,0.326c0.032,0.019,0.064,0.039,0.096,0.058c0.206,0.128,0.406,0.263,0.601,0.406\r\n\t\t\t\tc0.013,0.01,0.027,0.02,0.04,0.03c0.206,0.154,0.406,0.315,0.597,0.485C56.822,33.921,58,36.32,58,39C58,43.971,53.971,48,49,48z\r\n\t\t\t\t"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M53.387,24.656C50.048,16.086,41.753,10,32,10s-18.048,6.086-21.387,14.655\r\n\t\t\t\tC4.47,26.532,0,32.243,0,39c0,8.284,6.716,15,15,15h34c8.284,0,15-6.716,15-15C64,32.243,59.53,26.532,53.387,24.656z M49,48H15\r\n\t\t\t\tc-4.97,0-9-4.029-9-9c0-2.68,1.178-5.08,3.037-6.728c0.192-0.17,0.392-0.331,0.597-0.485c0.013-0.01,0.027-0.02,0.04-0.03\r\n\t\t\t\tc0.194-0.144,0.395-0.278,0.601-0.406c0.032-0.02,0.064-0.039,0.096-0.058c0.192-0.116,0.388-0.225,0.588-0.326\r\n\t\t\t\tc0.055-0.028,0.111-0.054,0.167-0.08c0.184-0.089,0.371-0.172,0.561-0.248c0.083-0.033,0.168-0.062,0.252-0.092\r\n\t\t\t\tc0.171-0.062,0.343-0.123,0.519-0.175c0.116-0.034,0.236-0.062,0.354-0.091c0.152-0.038,0.303-0.079,0.457-0.109\r\n\t\t\t\tc0.162-0.032,0.328-0.053,0.493-0.075c0.119-0.016,0.236-0.039,0.356-0.05C14.408,30.017,14.702,30,15,30\r\n\t\t\t\tc0.094,0,0.185,0.011,0.278,0.014c0.091-0.513,0.206-1.017,0.342-1.512c0.033-0.121,0.078-0.237,0.114-0.357\r\n\t\t\t\tc0.112-0.375,0.227-0.749,0.364-1.112c0.041-0.11,0.092-0.215,0.135-0.324c0.148-0.37,0.3-0.737,0.473-1.093\r\n\t\t\t\tc0.042-0.086,0.09-0.168,0.133-0.253c0.188-0.372,0.384-0.741,0.598-1.097C20.406,19.318,25.808,16,32,16\r\n\t\t\t\ts11.595,3.318,14.562,8.266c0.214,0.357,0.41,0.725,0.599,1.097c0.043,0.085,0.091,0.167,0.133,0.253\r\n\t\t\t\tc0.173,0.356,0.325,0.724,0.473,1.093c0.043,0.109,0.094,0.214,0.135,0.324c0.137,0.363,0.252,0.737,0.364,1.112\r\n\t\t\t\tc0.036,0.12,0.081,0.236,0.114,0.357c0.136,0.495,0.251,0.999,0.342,1.512C48.815,30.011,48.906,30,49,30\r\n\t\t\t\tc0.298,0,0.592,0.016,0.882,0.045c0.12,0.012,0.237,0.034,0.356,0.05c0.165,0.023,0.331,0.043,0.493,0.075\r\n\t\t\t\tc0.155,0.03,0.306,0.07,0.457,0.109c0.118,0.029,0.238,0.057,0.354,0.091c0.176,0.052,0.348,0.113,0.519,0.175\r\n\t\t\t\tc0.084,0.031,0.169,0.059,0.252,0.092c0.191,0.076,0.377,0.16,0.561,0.248c0.056,0.026,0.112,0.053,0.167,0.08\r\n\t\t\t\tc0.201,0.101,0.397,0.21,0.588,0.326c0.032,0.019,0.064,0.039,0.096,0.058c0.206,0.128,0.406,0.263,0.601,0.406\r\n\t\t\t\tc0.013,0.01,0.027,0.02,0.04,0.03c0.206,0.154,0.406,0.315,0.597,0.485C56.822,33.921,58,36.32,58,39C58,43.971,53.971,48,49,48z\r\n\t\t\t\t"},"children":[]}]}]}]}]}]}]}]};exports.shopping_cart_add=shopping_cart_add;var shopping_cart_delete={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"SHOPPING_CART__x2F__DELETE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SHOPPING_CART__x2F__DELETE"},"children":[{"name":"g","attribs":{"id":"SHOPPING_CART__x2F__DELETE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M56,49H27.779l-1.498-4.279L52.2,42.993v-0.001c1.132-0.074,2.092-0.776,2.536-1.762l0,0l4.83-10.733\r\n\t\t\t\tc-2.246,1.427-4.866,2.303-7.686,2.457l-1.877,4.171l-25.779,1.719L18.679,23h17.495C35.423,21.146,35,19.124,35,17H16.578\r\n\t\t\t\tl-1.747-4.991l-0.011,0.004C14.411,10.844,13.309,10,12,10H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h6.872l11.55,33H16\r\n\t\t\t\tc-3.314,0-6,2.686-6,6s2.686,6,6,6s6-2.686,6-6h28c0,3.314,2.686,6,6,6s6-2.686,6-6S59.314,49,56,49z M51,30\r\n\t\t\t\tc7.18,0,13-5.82,13-13S58.18,4,51,4S38,9.82,38,17S43.82,30,51,30z M44.879,15.121C44.336,14.578,44,13.828,44,13\r\n\t\t\t\tc0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879L51,12.757l1.879-1.879C53.422,10.336,54.172,10,55,10c1.657,0,3,1.343,3,3\r\n\t\t\t\tc0,0.828-0.336,1.578-0.879,2.121L55.243,17l1.879,1.879C57.664,19.422,58,20.172,58,21c0,1.657-1.343,3-3,3\r\n\t\t\t\tc-0.828,0-1.578-0.336-2.121-0.879L51,21.243l-1.879,1.879C48.579,23.664,47.828,24,47,24c-1.657,0-3-1.343-3-3\r\n\t\t\t\tc0-0.828,0.336-1.578,0.879-2.121L46.757,17L44.879,15.121z"},"children":[{"name":"path","attribs":{"d":"M56,49H27.779l-1.498-4.279L52.2,42.993v-0.001c1.132-0.074,2.092-0.776,2.536-1.762l0,0l4.83-10.733\r\n\t\t\t\tc-2.246,1.427-4.866,2.303-7.686,2.457l-1.877,4.171l-25.779,1.719L18.679,23h17.495C35.423,21.146,35,19.124,35,17H16.578\r\n\t\t\t\tl-1.747-4.991l-0.011,0.004C14.411,10.844,13.309,10,12,10H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h6.872l11.55,33H16\r\n\t\t\t\tc-3.314,0-6,2.686-6,6s2.686,6,6,6s6-2.686,6-6h28c0,3.314,2.686,6,6,6s6-2.686,6-6S59.314,49,56,49z M51,30\r\n\t\t\t\tc7.18,0,13-5.82,13-13S58.18,4,51,4S38,9.82,38,17S43.82,30,51,30z M44.879,15.121C44.336,14.578,44,13.828,44,13\r\n\t\t\t\tc0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879L51,12.757l1.879-1.879C53.422,10.336,54.172,10,55,10c1.657,0,3,1.343,3,3\r\n\t\t\t\tc0,0.828-0.336,1.578-0.879,2.121L55.243,17l1.879,1.879C57.664,19.422,58,20.172,58,21c0,1.657-1.343,3-3,3\r\n\t\t\t\tc-0.828,0-1.578-0.336-2.121-0.879L51,21.243l-1.879,1.879C48.579,23.664,47.828,24,47,24c-1.657,0-3-1.343-3-3\r\n\t\t\t\tc0-0.828,0.336-1.578,0.879-2.121L46.757,17L44.879,15.121z"},"children":[]}]}]}]}]}]}]}]};exports.shopping_cart_delete=shopping_cart_delete;var shopping_cart_ok={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"SHOPPING_CART__x2F__OK_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SHOPPING_CART__x2F__OK"},"children":[{"name":"g","attribs":{"id":"SHOPPING_CART__x2F__OK"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M51,30c7.18,0,13-5.82,13-13S58.18,4,51,4S38,9.82,38,17S43.82,30,51,30z M45,15c0.828,0,1.578,0.336,2.121,0.879\r\n\t\t\t\tL49,17.757l5.879-5.879C55.422,11.336,56.172,11,57,11c1.657,0,3,1.343,3,3c0,0.828-0.336,1.578-0.879,2.121l-8,8\r\n\t\t\t\tC50.578,24.664,49.828,25,49,25s-1.578-0.336-2.121-0.879l-4-4C42.336,19.578,42,18.828,42,18C42,16.343,43.343,15,45,15z M56,49\r\n\t\t\t\tH27.778l-1.497-4.279L52.2,42.993v-0.001c1.132-0.074,2.092-0.776,2.536-1.762l0,0l4.83-10.733\r\n\t\t\t\tc-2.246,1.427-4.866,2.303-7.686,2.457l-1.877,4.171l-25.779,1.719L18.679,23h17.495C35.423,21.146,35,19.124,35,17H16.578\r\n\t\t\t\tl-1.747-4.991l-0.011,0.004C14.411,10.844,13.309,10,12,10H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h6.872l11.55,33H16\r\n\t\t\t\tc-3.314,0-6,2.686-6,6s2.686,6,6,6s6-2.686,6-6h28c0,3.314,2.686,6,6,6s6-2.686,6-6S59.314,49,56,49z"},"children":[{"name":"path","attribs":{"d":"M51,30c7.18,0,13-5.82,13-13S58.18,4,51,4S38,9.82,38,17S43.82,30,51,30z M45,15c0.828,0,1.578,0.336,2.121,0.879\r\n\t\t\t\tL49,17.757l5.879-5.879C55.422,11.336,56.172,11,57,11c1.657,0,3,1.343,3,3c0,0.828-0.336,1.578-0.879,2.121l-8,8\r\n\t\t\t\tC50.578,24.664,49.828,25,49,25s-1.578-0.336-2.121-0.879l-4-4C42.336,19.578,42,18.828,42,18C42,16.343,43.343,15,45,15z M56,49\r\n\t\t\t\tH27.778l-1.497-4.279L52.2,42.993v-0.001c1.132-0.074,2.092-0.776,2.536-1.762l0,0l4.83-10.733\r\n\t\t\t\tc-2.246,1.427-4.866,2.303-7.686,2.457l-1.877,4.171l-25.779,1.719L18.679,23h17.495C35.423,21.146,35,19.124,35,17H16.578\r\n\t\t\t\tl-1.747-4.991l-0.011,0.004C14.411,10.844,13.309,10,12,10H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h6.872l11.55,33H16\r\n\t\t\t\tc-3.314,0-6,2.686-6,6s2.686,6,6,6s6-2.686,6-6h28c0,3.314,2.686,6,6,6s6-2.686,6-6S59.314,49,56,49z"},"children":[]}]}]}]}]}]}]}]};exports.shopping_cart_ok=shopping_cart_ok;var shopping_cart_remove={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"SHOPPING_CART__x2F__REMOVE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SHOPPING_CART__x2F__REMOVE"},"children":[{"name":"g","attribs":{"id":"SHOPPING_CART__x2F__REMOVE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M51,30c7.18,0,13-5.82,13-13S58.18,4,51,4S38,9.82,38,17S43.82,30,51,30z M45,14h12c1.657,0,3,1.343,3,3s-1.343,3-3,3H45\r\n\t\t\t\tc-1.657,0-3-1.343-3-3S43.343,14,45,14z M56,49H27.778l-1.497-4.279L52.2,42.993v-0.001c1.132-0.074,2.092-0.776,2.536-1.762l0,0\r\n\t\t\t\tl4.83-10.733c-2.246,1.427-4.866,2.303-7.686,2.457l-1.877,4.171l-25.779,1.719L18.678,23h17.495C35.423,21.146,35,19.124,35,17\r\n\t\t\t\tH16.578l-1.747-4.991l-0.011,0.004C14.411,10.844,13.309,10,12,10H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h6.872l11.55,33H16\r\n\t\t\t\tc-3.314,0-6,2.686-6,6s2.686,6,6,6s6-2.686,6-6h28c0,3.314,2.686,6,6,6s6-2.686,6-6S59.314,49,56,49z"},"children":[{"name":"path","attribs":{"d":"M51,30c7.18,0,13-5.82,13-13S58.18,4,51,4S38,9.82,38,17S43.82,30,51,30z M45,14h12c1.657,0,3,1.343,3,3s-1.343,3-3,3H45\r\n\t\t\t\tc-1.657,0-3-1.343-3-3S43.343,14,45,14z M56,49H27.778l-1.497-4.279L52.2,42.993v-0.001c1.132-0.074,2.092-0.776,2.536-1.762l0,0\r\n\t\t\t\tl4.83-10.733c-2.246,1.427-4.866,2.303-7.686,2.457l-1.877,4.171l-25.779,1.719L18.678,23h17.495C35.423,21.146,35,19.124,35,17\r\n\t\t\t\tH16.578l-1.747-4.991l-0.011,0.004C14.411,10.844,13.309,10,12,10H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h6.872l11.55,33H16\r\n\t\t\t\tc-3.314,0-6,2.686-6,6s2.686,6,6,6s6-2.686,6-6h28c0,3.314,2.686,6,6,6s6-2.686,6-6S59.314,49,56,49z"},"children":[]}]}]}]}]}]}]}]};exports.shopping_cart_remove=shopping_cart_remove;var shuffle={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"SHUFFLE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SHUFFLE"},"children":[{"name":"g","attribs":{"id":"SHUFFLE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M3,19h8.757l10.879,10.879l4.243-4.243L15.121,13.879C14.578,13.336,13.828,13,13,13H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\tS1.343,19,3,19z M52,19v0.005h1.773l-1.879,1.879c-0.543,0.543-0.879,1.293-0.879,2.121c0,1.657,1.342,3,3,3\r\n\t\t\t\tc0.827,0,1.577-0.336,2.12-0.879l7-7c0.544-0.543,0.88-1.293,0.88-2.121s-0.336-1.578-0.88-2.121l-7-7\r\n\t\t\t\tc-0.543-0.543-1.293-0.879-2.12-0.879c-1.658,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L53.768,13H45\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L11.757,45H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h10c0.828,0,1.578-0.336,2.121-0.879L46.243,19\r\n\t\t\t\tH52z M56.137,38.874c-0.543-0.543-1.293-0.879-2.121-0.879c-1.656,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l1.879,1.879H52\r\n\t\t\t\tV45h-5.757l-10.88-10.879l-4.242,4.242l11.757,11.758C43.422,50.664,44.172,51,45,51h8.768l-1.873,1.874\r\n\t\t\t\tc-0.543,0.543-0.879,1.293-0.879,2.121c0,1.657,1.344,3,3,3c0.828,0,1.578-0.336,2.121-0.879l7-7\r\n\t\t\t\tc0.543-0.543,0.879-1.293,0.879-2.121s-0.336-1.578-0.879-2.121L56.137,38.874z"},"children":[{"name":"path","attribs":{"d":"M3,19h8.757l10.879,10.879l4.243-4.243L15.121,13.879C14.578,13.336,13.828,13,13,13H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\tS1.343,19,3,19z M52,19v0.005h1.773l-1.879,1.879c-0.543,0.543-0.879,1.293-0.879,2.121c0,1.657,1.342,3,3,3\r\n\t\t\t\tc0.827,0,1.577-0.336,2.12-0.879l7-7c0.544-0.543,0.88-1.293,0.88-2.121s-0.336-1.578-0.88-2.121l-7-7\r\n\t\t\t\tc-0.543-0.543-1.293-0.879-2.12-0.879c-1.658,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L53.768,13H45\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L11.757,45H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h10c0.828,0,1.578-0.336,2.121-0.879L46.243,19\r\n\t\t\t\tH52z M56.137,38.874c-0.543-0.543-1.293-0.879-2.121-0.879c-1.656,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l1.879,1.879H52\r\n\t\t\t\tV45h-5.757l-10.88-10.879l-4.242,4.242l11.757,11.758C43.422,50.664,44.172,51,45,51h8.768l-1.873,1.874\r\n\t\t\t\tc-0.543,0.543-0.879,1.293-0.879,2.121c0,1.657,1.344,3,3,3c0.828,0,1.578-0.336,2.121-0.879l7-7\r\n\t\t\t\tc0.543-0.543,0.879-1.293,0.879-2.121s-0.336-1.578-0.879-2.121L56.137,38.874z"},"children":[]}]}]}]}]}]}]}]};exports.shuffle=shuffle;var skip_next={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"SKIP__x2F__NEXT_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SKIP__x2F__NEXT"},"children":[{"name":"g","attribs":{"id":"SKIP__x2F__NEXT"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M41,19c-1.657,0-3,1.343-3,3v5.837l-13.41-8.381l0,0C24.129,19.168,23.584,19,23,19c-1.657,0-3,1.343-3,3v20\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.584,0,1.129-0.167,1.59-0.456l0,0L38,36.163V42c0,1.657,1.343,3,3,3s3-1.343,3-3V22\r\n\t\t\t\tC44,20.343,42.657,19,41,19z"},"children":[{"name":"path","attribs":{"d":"M41,19c-1.657,0-3,1.343-3,3v5.837l-13.41-8.381l0,0C24.129,19.168,23.584,19,23,19c-1.657,0-3,1.343-3,3v20\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.584,0,1.129-0.167,1.59-0.456l0,0L38,36.163V42c0,1.657,1.343,3,3,3s3-1.343,3-3V22\r\n\t\t\t\tC44,20.343,42.657,19,41,19z"},"children":[]}]}]}]}]}]}]}]};exports.skip_next=skip_next;var skip_previous={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"SKIP__x2F__PREVIOUS_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SKIP__x2F__PREVIOUS"},"children":[{"name":"g","attribs":{"id":"SKIP__x2F__PREVIOUS"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M41,19c-0.584,0-1.129,0.168-1.59,0.456l0,0L26,27.837V22c0-1.657-1.343-3-3-3s-3,1.343-3,3v20c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3v-5.837l13.41,8.381l0,0C39.871,44.833,40.416,45,41,45c1.657,0,3-1.343,3-3V22C44,20.343,42.657,19,41,19z"},"children":[{"name":"path","attribs":{"d":"M41,19c-0.584,0-1.129,0.168-1.59,0.456l0,0L26,27.837V22c0-1.657-1.343-3-3-3s-3,1.343-3,3v20c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3v-5.837l13.41,8.381l0,0C39.871,44.833,40.416,45,41,45c1.657,0,3-1.343,3-3V22C44,20.343,42.657,19,41,19z"},"children":[]}]}]}]}]}]}]}]};exports.skip_previous=skip_previous;var skype={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"skype_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"skype"},"children":[{"name":"g","attribs":{"id":"skype"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M59.539,36.936C59.825,35.33,60,33.688,60,32C60,16.536,47.464,4,32,4c-1.687,0-3.33,0.175-4.934,0.461\r\n\t\t\t\tC24.191,1.704,20.298,0,16,0C7.164,0,0,7.164,0,16c0,4.298,1.703,8.191,4.461,11.066C4.175,28.67,4,30.313,4,32\r\n\t\t\t\tc0,15.464,12.536,28,28,28c1.688,0,3.33-0.175,4.936-0.461C39.809,62.297,43.702,64,48,64c8.837,0,16-7.163,16-16\r\n\t\t\t\tC64,43.703,62.297,39.809,59.539,36.936z M44.331,43.208c-1.104,1.506-2.74,2.7-4.856,3.548\r\n\t\t\t\tc-2.096,0.838-4.608,1.266-7.469,1.266c-3.433,0-6.312-0.582-8.558-1.73c-1.606-0.834-2.93-1.963-3.936-3.363\r\n\t\t\t\tc-1.014-1.408-1.529-2.807-1.529-4.158c0-0.842,0.335-1.572,0.995-2.17c0.655-0.595,1.494-0.895,2.495-0.895\r\n\t\t\t\tc0.822,0,1.531,0.236,2.106,0.703c0.55,0.451,1.022,1.115,1.401,1.973c0.425,0.936,0.885,1.725,1.372,2.342\r\n\t\t\t\tc0.471,0.601,1.144,1.102,2.006,1.494c0.866,0.395,2.035,0.596,3.472,0.596c1.975,0,3.596-0.406,4.814-1.207\r\n\t\t\t\tc1.19-0.781,1.768-1.722,1.768-2.871c0-0.908-0.303-1.621-0.922-2.184c-0.652-0.586-1.51-1.039-2.551-1.355\r\n\t\t\t\tc-1.086-0.323-2.562-0.678-4.385-1.047c-2.48-0.508-4.587-1.117-6.264-1.801c-1.715-0.703-3.096-1.677-4.106-2.894\r\n\t\t\t\tc-1.026-1.238-1.546-2.787-1.546-4.613c0-1.738,0.546-3.306,1.623-4.656c1.069-1.343,2.63-2.388,4.64-3.101\r\n\t\t\t\tc1.984-0.707,4.343-1.065,7.013-1.065c2.134,0,4.01,0.24,5.577,0.707c1.577,0.471,2.903,1.109,3.948,1.895\r\n\t\t\t\tc1.051,0.791,1.832,1.635,2.324,2.515c0.493,0.886,0.746,1.77,0.746,2.624c0,0.823-0.33,1.571-0.98,2.223\r\n\t\t\t\tc-0.655,0.655-1.481,0.987-2.454,0.987c-0.886,0-1.578-0.209-2.06-0.616c-0.447-0.383-0.912-0.977-1.426-1.83\r\n\t\t\t\tc-0.596-1.09-1.318-1.949-2.145-2.556c-0.805-0.59-2.147-0.886-3.991-0.886c-1.713,0-3.107,0.33-4.141,0.985\r\n\t\t\t\tc-0.998,0.628-1.483,1.349-1.483,2.205c0,0.525,0.157,0.963,0.479,1.339c0.339,0.403,0.819,0.749,1.424,1.043\r\n\t\t\t\tc0.627,0.304,1.276,0.546,1.923,0.717c0.664,0.179,1.779,0.441,3.308,0.781c1.935,0.401,3.712,0.848,5.284,1.333\r\n\t\t\t\tc1.593,0.491,2.967,1.093,4.09,1.798c1.145,0.717,2.051,1.637,2.694,2.737c0.646,1.105,0.972,2.47,0.972,4.054\r\n\t\t\t\tC46.003,39.968,45.439,41.698,44.331,43.208z"},"children":[{"name":"path","attribs":{"d":"M59.539,36.936C59.825,35.33,60,33.688,60,32C60,16.536,47.464,4,32,4c-1.687,0-3.33,0.175-4.934,0.461\r\n\t\t\t\tC24.191,1.704,20.298,0,16,0C7.164,0,0,7.164,0,16c0,4.298,1.703,8.191,4.461,11.066C4.175,28.67,4,30.313,4,32\r\n\t\t\t\tc0,15.464,12.536,28,28,28c1.688,0,3.33-0.175,4.936-0.461C39.809,62.297,43.702,64,48,64c8.837,0,16-7.163,16-16\r\n\t\t\t\tC64,43.703,62.297,39.809,59.539,36.936z M44.331,43.208c-1.104,1.506-2.74,2.7-4.856,3.548\r\n\t\t\t\tc-2.096,0.838-4.608,1.266-7.469,1.266c-3.433,0-6.312-0.582-8.558-1.73c-1.606-0.834-2.93-1.963-3.936-3.363\r\n\t\t\t\tc-1.014-1.408-1.529-2.807-1.529-4.158c0-0.842,0.335-1.572,0.995-2.17c0.655-0.595,1.494-0.895,2.495-0.895\r\n\t\t\t\tc0.822,0,1.531,0.236,2.106,0.703c0.55,0.451,1.022,1.115,1.401,1.973c0.425,0.936,0.885,1.725,1.372,2.342\r\n\t\t\t\tc0.471,0.601,1.144,1.102,2.006,1.494c0.866,0.395,2.035,0.596,3.472,0.596c1.975,0,3.596-0.406,4.814-1.207\r\n\t\t\t\tc1.19-0.781,1.768-1.722,1.768-2.871c0-0.908-0.303-1.621-0.922-2.184c-0.652-0.586-1.51-1.039-2.551-1.355\r\n\t\t\t\tc-1.086-0.323-2.562-0.678-4.385-1.047c-2.48-0.508-4.587-1.117-6.264-1.801c-1.715-0.703-3.096-1.677-4.106-2.894\r\n\t\t\t\tc-1.026-1.238-1.546-2.787-1.546-4.613c0-1.738,0.546-3.306,1.623-4.656c1.069-1.343,2.63-2.388,4.64-3.101\r\n\t\t\t\tc1.984-0.707,4.343-1.065,7.013-1.065c2.134,0,4.01,0.24,5.577,0.707c1.577,0.471,2.903,1.109,3.948,1.895\r\n\t\t\t\tc1.051,0.791,1.832,1.635,2.324,2.515c0.493,0.886,0.746,1.77,0.746,2.624c0,0.823-0.33,1.571-0.98,2.223\r\n\t\t\t\tc-0.655,0.655-1.481,0.987-2.454,0.987c-0.886,0-1.578-0.209-2.06-0.616c-0.447-0.383-0.912-0.977-1.426-1.83\r\n\t\t\t\tc-0.596-1.09-1.318-1.949-2.145-2.556c-0.805-0.59-2.147-0.886-3.991-0.886c-1.713,0-3.107,0.33-4.141,0.985\r\n\t\t\t\tc-0.998,0.628-1.483,1.349-1.483,2.205c0,0.525,0.157,0.963,0.479,1.339c0.339,0.403,0.819,0.749,1.424,1.043\r\n\t\t\t\tc0.627,0.304,1.276,0.546,1.923,0.717c0.664,0.179,1.779,0.441,3.308,0.781c1.935,0.401,3.712,0.848,5.284,1.333\r\n\t\t\t\tc1.593,0.491,2.967,1.093,4.09,1.798c1.145,0.717,2.051,1.637,2.694,2.737c0.646,1.105,0.972,2.47,0.972,4.054\r\n\t\t\t\tC46.003,39.968,45.439,41.698,44.331,43.208z"},"children":[]}]}]}]}]}]}]}]};exports.skype=skype;var slideshow={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"SLIDESHOW_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SLIDESHOW"},"children":[{"name":"g","attribs":{"id":"SLIDESHOW"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M12,18c-1.657,0-3,1.343-3,3v22c0,1.657,1.343,3,3,3s3-1.343,3-3V21C15,19.343,13.657,18,12,18z M3,12\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v34c0,1.657,1.343,3,3,3s3-1.343,3-3V15C6,13.343,4.657,12,3,12z M52,18c-1.657,0-3,1.343-3,3v22\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3V21C55,19.343,53.657,18,52,18z M61,12c-1.657,0-3,1.343-3,3v34c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3V15C64,13.343,62.657,12,61,12z M43,18H21c-1.657,0-3,1.343-3,3v22c0,1.657,1.343,3,3,3h22c1.657,0,3-1.343,3-3V21\r\n\t\t\t\tC46,19.343,44.657,18,43,18z M40,40H24V24h16V40z"},"children":[{"name":"path","attribs":{"d":"M12,18c-1.657,0-3,1.343-3,3v22c0,1.657,1.343,3,3,3s3-1.343,3-3V21C15,19.343,13.657,18,12,18z M3,12\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v34c0,1.657,1.343,3,3,3s3-1.343,3-3V15C6,13.343,4.657,12,3,12z M52,18c-1.657,0-3,1.343-3,3v22\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3V21C55,19.343,53.657,18,52,18z M61,12c-1.657,0-3,1.343-3,3v34c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3V15C64,13.343,62.657,12,61,12z M43,18H21c-1.657,0-3,1.343-3,3v22c0,1.657,1.343,3,3,3h22c1.657,0,3-1.343,3-3V21\r\n\t\t\t\tC46,19.343,44.657,18,43,18z M40,40H24V24h16V40z"},"children":[]}]}]}]}]}]}]}]};exports.slideshow=slideshow;var speech_1={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"SPEECH_1_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SPEECH_1"},"children":[{"name":"g","attribs":{"id":"SPEECH_1"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M61,3H3C1.343,3,0,4.343,0,6v43c0,1.657,1.343,3,3,3h4v6c0,0.207,0.021,0.409,0.061,0.604\r\n\t\t\t\tc0.028,0.137,0.076,0.265,0.122,0.394c0.02,0.056,0.03,0.116,0.053,0.17c0.048,0.115,0.115,0.219,0.177,0.326\r\n\t\t\t\tc0.035,0.06,0.061,0.126,0.1,0.184c0.098,0.146,0.212,0.278,0.333,0.404c0.012,0.012,0.021,0.028,0.033,0.04\r\n\t\t\t\tc0.534,0.533,1.271,0.865,2.084,0.875C9.976,60.997,9.987,61,10,61c0.828,0,1.578-0.336,2.121-0.879L20.243,52H61\r\n\t\t\t\tc1.657,0,3-1.343,3-3V6C64,4.343,62.657,3,61,3z M58,46H17.757L13,50.757V46H6V9h52V46z"},"children":[{"name":"path","attribs":{"d":"M61,3H3C1.343,3,0,4.343,0,6v43c0,1.657,1.343,3,3,3h4v6c0,0.207,0.021,0.409,0.061,0.604\r\n\t\t\t\tc0.028,0.137,0.076,0.265,0.122,0.394c0.02,0.056,0.03,0.116,0.053,0.17c0.048,0.115,0.115,0.219,0.177,0.326\r\n\t\t\t\tc0.035,0.06,0.061,0.126,0.1,0.184c0.098,0.146,0.212,0.278,0.333,0.404c0.012,0.012,0.021,0.028,0.033,0.04\r\n\t\t\t\tc0.534,0.533,1.271,0.865,2.084,0.875C9.976,60.997,9.987,61,10,61c0.828,0,1.578-0.336,2.121-0.879L20.243,52H61\r\n\t\t\t\tc1.657,0,3-1.343,3-3V6C64,4.343,62.657,3,61,3z M58,46H17.757L13,50.757V46H6V9h52V46z"},"children":[]}]}]}]}]}]}]}]};exports.speech_1=speech_1;var speech_2={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"SPEECH_2_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SPEECH_2"},"children":[{"name":"g","attribs":{"id":"SPEECH_2"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M61,3H3C1.343,3,0,4.343,0,6v43c0,1.657,1.343,3,2.999,3H7v6c0,0.207,0.021,0.409,0.061,0.604\r\n\t\t\t\tc0.028,0.137,0.076,0.265,0.122,0.394c0.02,0.056,0.03,0.116,0.053,0.17c0.049,0.115,0.115,0.219,0.177,0.326\r\n\t\t\t\tc0.035,0.06,0.061,0.126,0.1,0.184c0.098,0.146,0.212,0.278,0.333,0.404c0.012,0.012,0.021,0.028,0.033,0.04\r\n\t\t\t\tc0.535,0.533,1.271,0.865,2.084,0.875C9.976,60.997,9.987,61,10,61c0.828,0,1.578-0.336,2.121-0.879L20.243,52H61\r\n\t\t\t\tc1.657,0,3-1.343,3-3V6C64,4.343,62.657,3,61,3z"},"children":[{"name":"path","attribs":{"d":"M61,3H3C1.343,3,0,4.343,0,6v43c0,1.657,1.343,3,2.999,3H7v6c0,0.207,0.021,0.409,0.061,0.604\r\n\t\t\t\tc0.028,0.137,0.076,0.265,0.122,0.394c0.02,0.056,0.03,0.116,0.053,0.17c0.049,0.115,0.115,0.219,0.177,0.326\r\n\t\t\t\tc0.035,0.06,0.061,0.126,0.1,0.184c0.098,0.146,0.212,0.278,0.333,0.404c0.012,0.012,0.021,0.028,0.033,0.04\r\n\t\t\t\tc0.535,0.533,1.271,0.865,2.084,0.875C9.976,60.997,9.987,61,10,61c0.828,0,1.578-0.336,2.121-0.879L20.243,52H61\r\n\t\t\t\tc1.657,0,3-1.343,3-3V6C64,4.343,62.657,3,61,3z"},"children":[]}]}]}]}]}]}]}]};exports.speech_2=speech_2;var speech_3={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"SPEECH_3_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SPEECH_3"},"children":[{"name":"g","attribs":{"id":"SPEECH_3"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M61,3H3C1.343,3,0,4.343,0,6v43c0,1.657,1.343,2.999,2.999,3H7v6c0,0.207,0.021,0.409,0.061,0.604\r\n\t\t\t\tc0.028,0.137,0.076,0.265,0.122,0.394c0.02,0.056,0.03,0.116,0.053,0.17c0.049,0.115,0.115,0.219,0.177,0.326\r\n\t\t\t\tc0.035,0.06,0.061,0.126,0.1,0.184c0.098,0.146,0.212,0.278,0.333,0.404c0.012,0.012,0.021,0.028,0.033,0.04\r\n\t\t\t\tc0.535,0.533,1.271,0.865,2.084,0.875C9.976,60.997,9.987,61,10,61c0.828,0,1.578-0.336,2.121-0.879L20.243,52H61\r\n\t\t\t\tc1.657,0,3-1.343,3-3V6C64,4.343,62.657,3,61,3z M17,34c-3.314,0-6-2.686-6-6s2.686-6,6-6s6,2.686,6,6S20.314,34,17,34z M32,34\r\n\t\t\t\tc-3.314,0-6-2.686-6-6s2.686-6,6-6c3.314,0,6,2.686,6,6S35.314,34,32,34z M47,34c-3.314,0-6-2.686-6-6s2.686-6,6-6s6,2.686,6,6\r\n\t\t\t\tS50.314,34,47,34z"},"children":[{"name":"path","attribs":{"d":"M61,3H3C1.343,3,0,4.343,0,6v43c0,1.657,1.343,2.999,2.999,3H7v6c0,0.207,0.021,0.409,0.061,0.604\r\n\t\t\t\tc0.028,0.137,0.076,0.265,0.122,0.394c0.02,0.056,0.03,0.116,0.053,0.17c0.049,0.115,0.115,0.219,0.177,0.326\r\n\t\t\t\tc0.035,0.06,0.061,0.126,0.1,0.184c0.098,0.146,0.212,0.278,0.333,0.404c0.012,0.012,0.021,0.028,0.033,0.04\r\n\t\t\t\tc0.535,0.533,1.271,0.865,2.084,0.875C9.976,60.997,9.987,61,10,61c0.828,0,1.578-0.336,2.121-0.879L20.243,52H61\r\n\t\t\t\tc1.657,0,3-1.343,3-3V6C64,4.343,62.657,3,61,3z M17,34c-3.314,0-6-2.686-6-6s2.686-6,6-6s6,2.686,6,6S20.314,34,17,34z M32,34\r\n\t\t\t\tc-3.314,0-6-2.686-6-6s2.686-6,6-6c3.314,0,6,2.686,6,6S35.314,34,32,34z M47,34c-3.314,0-6-2.686-6-6s2.686-6,6-6s6,2.686,6,6\r\n\t\t\t\tS50.314,34,47,34z"},"children":[]}]}]}]}]}]}]}]};exports.speech_3=speech_3;var speech_4={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"SPEECH_4_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SPEECH_4"},"children":[{"name":"g","attribs":{"id":"SPEECH_4"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M51.841,47.327L45.516,41H19c-3.314,0-6-2.686-6-6V14H4c-1.657,0-3,1.343-3,3v34c0,1.656,1.341,2.998,2.996,3H7.5l0,0H8\r\n\t\t\t\tv6c0,0.207,0.021,0.409,0.061,0.605c0.028,0.136,0.076,0.264,0.122,0.393c0.02,0.057,0.03,0.116,0.053,0.17\r\n\t\t\t\tc0.048,0.115,0.115,0.219,0.177,0.326c0.035,0.061,0.061,0.126,0.1,0.184c0.098,0.146,0.212,0.278,0.333,0.404\r\n\t\t\t\tc0.012,0.012,0.021,0.027,0.033,0.04c0.534,0.535,1.271,0.864,2.084,0.875C10.976,62.996,10.987,63,11,63\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L21.243,54H22l0,0h3l0,0h6.9l0,0H53l0,0c1.657,0,3-1.343,3-3v-2\r\n\t\t\t\tc-1.613,0-3.072-0.645-4.15-1.682L51.841,47.327z M61,2H19c-1.657,0-3,1.343-3,3v30c0,1.657,1.343,3,3,3h27.757l7.121,7.121\r\n\t\t\t\tC54.422,45.664,55.172,46,56,46c0.014,0,0.025-0.004,0.037-0.004c0.812-0.01,1.55-0.34,2.084-0.875\r\n\t\t\t\tc0.012-0.012,0.021-0.028,0.033-0.04c0.121-0.126,0.234-0.259,0.332-0.404c0.039-0.057,0.065-0.122,0.101-0.184\r\n\t\t\t\tc0.062-0.107,0.128-0.211,0.177-0.326c0.023-0.054,0.033-0.114,0.053-0.17c0.047-0.129,0.095-0.257,0.123-0.394\r\n\t\t\t\tC58.979,43.409,59,43.207,59,43v-5h2c1.657,0,3-1.343,3-3V5C64,3.343,62.657,2,61,2z"},"children":[{"name":"path","attribs":{"d":"M51.841,47.327L45.516,41H19c-3.314,0-6-2.686-6-6V14H4c-1.657,0-3,1.343-3,3v34c0,1.656,1.341,2.998,2.996,3H7.5l0,0H8\r\n\t\t\t\tv6c0,0.207,0.021,0.409,0.061,0.605c0.028,0.136,0.076,0.264,0.122,0.393c0.02,0.057,0.03,0.116,0.053,0.17\r\n\t\t\t\tc0.048,0.115,0.115,0.219,0.177,0.326c0.035,0.061,0.061,0.126,0.1,0.184c0.098,0.146,0.212,0.278,0.333,0.404\r\n\t\t\t\tc0.012,0.012,0.021,0.027,0.033,0.04c0.534,0.535,1.271,0.864,2.084,0.875C10.976,62.996,10.987,63,11,63\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L21.243,54H22l0,0h3l0,0h6.9l0,0H53l0,0c1.657,0,3-1.343,3-3v-2\r\n\t\t\t\tc-1.613,0-3.072-0.645-4.15-1.682L51.841,47.327z M61,2H19c-1.657,0-3,1.343-3,3v30c0,1.657,1.343,3,3,3h27.757l7.121,7.121\r\n\t\t\t\tC54.422,45.664,55.172,46,56,46c0.014,0,0.025-0.004,0.037-0.004c0.812-0.01,1.55-0.34,2.084-0.875\r\n\t\t\t\tc0.012-0.012,0.021-0.028,0.033-0.04c0.121-0.126,0.234-0.259,0.332-0.404c0.039-0.057,0.065-0.122,0.101-0.184\r\n\t\t\t\tc0.062-0.107,0.128-0.211,0.177-0.326c0.023-0.054,0.033-0.114,0.053-0.17c0.047-0.129,0.095-0.257,0.123-0.394\r\n\t\t\t\tC58.979,43.409,59,43.207,59,43v-5h2c1.657,0,3-1.343,3-3V5C64,3.343,62.657,2,61,2z"},"children":[]}]}]}]}]}]}]}]};exports.speech_4=speech_4;var speech_bubble_1={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"SPEECH_BUBBLE_1_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SPEECH_BUBBLE_1"},"children":[{"name":"g","attribs":{"id":"SPEECH_BUBBLE_1"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M33.697,3.963c-18.83,0-33.738,10.996-33.738,24.56c0,7.681,4.609,14.54,12.274,19.043\r\n\t\t\t\tc1.736,1.02,1.934,8.675-7.831,13.297c0,0,13.825,2.18,22.591-8.902c2.167,0.311,4.409,0.975,6.704,0.975\r\n\t\t\t\tc18.83,0,30.307-10.848,30.307-24.412C64.004,14.959,52.527,3.963,33.697,3.963z"},"children":[{"name":"path","attribs":{"d":"M33.697,3.963c-18.83,0-33.738,10.996-33.738,24.56c0,7.681,4.609,14.54,12.274,19.043\r\n\t\t\t\tc1.736,1.02,1.934,8.675-7.831,13.297c0,0,13.825,2.18,22.591-8.902c2.167,0.311,4.409,0.975,6.704,0.975\r\n\t\t\t\tc18.83,0,30.307-10.848,30.307-24.412C64.004,14.959,52.527,3.963,33.697,3.963z"},"children":[]}]}]}]}]}]}]}]};exports.speech_bubble_1=speech_bubble_1;var speech_bubble_2={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"SPEECH_BUBBLE_2_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SPEECH_BUBBLE_2"},"children":[{"name":"g","attribs":{"id":"SPEECH_BUBBLE_2"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M33.697,3.963c-18.83,0-33.738,10.996-33.738,24.56c0,7.681,4.609,14.54,12.274,19.043\r\n\t\t\t\tc1.736,1.02,1.934,8.675-7.831,13.297c0,0,13.825,2.18,22.591-8.902c2.167,0.311,4.409,0.975,6.704,0.975\r\n\t\t\t\tc18.83,0,30.307-10.848,30.307-24.412C64.004,14.959,52.527,3.963,33.697,3.963z M17,35c-3.314,0-6-2.686-6-6s2.686-6,6-6\r\n\t\t\t\ts6,2.686,6,6S20.314,35,17,35z M32,35c-3.314,0-6-2.686-6-6s2.686-6,6-6c3.314,0,6,2.686,6,6S35.314,35,32,35z M47,35\r\n\t\t\t\tc-3.314,0-6-2.686-6-6s2.686-6,6-6s6,2.686,6,6S50.314,35,47,35z"},"children":[{"name":"path","attribs":{"d":"M33.697,3.963c-18.83,0-33.738,10.996-33.738,24.56c0,7.681,4.609,14.54,12.274,19.043\r\n\t\t\t\tc1.736,1.02,1.934,8.675-7.831,13.297c0,0,13.825,2.18,22.591-8.902c2.167,0.311,4.409,0.975,6.704,0.975\r\n\t\t\t\tc18.83,0,30.307-10.848,30.307-24.412C64.004,14.959,52.527,3.963,33.697,3.963z M17,35c-3.314,0-6-2.686-6-6s2.686-6,6-6\r\n\t\t\t\ts6,2.686,6,6S20.314,35,17,35z M32,35c-3.314,0-6-2.686-6-6s2.686-6,6-6c3.314,0,6,2.686,6,6S35.314,35,32,35z M47,35\r\n\t\t\t\tc-3.314,0-6-2.686-6-6s2.686-6,6-6s6,2.686,6,6S50.314,35,47,35z"},"children":[]}]}]}]}]}]}]}]};exports.speech_bubble_2=speech_bubble_2;var speech_bubbles={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"SPEECH_BUBBLES_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SPEECH_BUBBLES"},"children":[{"name":"g","attribs":{"id":"SPEECH_BUBBLES"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M46.568,34.581c0,0.005,0,0.01,0,0.015c-1.301,0.2-2.629,0.53-3.984,0.478c-12.036-0.75-19.873-8.212-20.379-17.122\r\n\t\t\t\tc-0.068-2.09,0.307-4.107,1.045-5.986C9.787,14.332-0.04,23.094-0.04,33.57c0,6.962,4.177,13.177,11.123,17.258\r\n\t\t\t\tc1.573,0.924,1.752,7.861-7.097,12.05c0,0,12.529,1.976,20.473-8.067c1.964,0.282,3.996,0.883,6.075,0.883\r\n\t\t\t\tc14.557,0,24.237-7.162,26.776-16.896c-2.531-0.059-6.918-0.737-10.39-4.308L46.568,34.581z M56.721,27.814\r\n\t\t\t\tc4.549-2.673,7.285-6.744,7.285-11.304c0-8.052-8.85-14.579-20.027-14.579c-11.179,0-17.993,6.527-17.993,14.579\r\n\t\t\t\tc0,8.052,6.813,14.492,17.993,14.492c1.361,0,2.692-0.394,3.979-0.579c5.204,6.578,13.411,5.284,13.411,5.284\r\n\t\t\t\tC55.573,32.964,55.689,28.419,56.721,27.814z"},"children":[{"name":"path","attribs":{"d":"M46.568,34.581c0,0.005,0,0.01,0,0.015c-1.301,0.2-2.629,0.53-3.984,0.478c-12.036-0.75-19.873-8.212-20.379-17.122\r\n\t\t\t\tc-0.068-2.09,0.307-4.107,1.045-5.986C9.787,14.332-0.04,23.094-0.04,33.57c0,6.962,4.177,13.177,11.123,17.258\r\n\t\t\t\tc1.573,0.924,1.752,7.861-7.097,12.05c0,0,12.529,1.976,20.473-8.067c1.964,0.282,3.996,0.883,6.075,0.883\r\n\t\t\t\tc14.557,0,24.237-7.162,26.776-16.896c-2.531-0.059-6.918-0.737-10.39-4.308L46.568,34.581z M56.721,27.814\r\n\t\t\t\tc4.549-2.673,7.285-6.744,7.285-11.304c0-8.052-8.85-14.579-20.027-14.579c-11.179,0-17.993,6.527-17.993,14.579\r\n\t\t\t\tc0,8.052,6.813,14.492,17.993,14.492c1.361,0,2.692-0.394,3.979-0.579c5.204,6.578,13.411,5.284,13.411,5.284\r\n\t\t\t\tC55.573,32.964,55.689,28.419,56.721,27.814z"},"children":[]}]}]}]}]}]}]}]};exports.speech_bubbles=speech_bubbles;var spotify={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"spotify_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"spotify"},"children":[{"name":"g","attribs":{"id":"spotify"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M26.671,55.675c-4.217,0-7.496,1.354-10.156,4.239c4.795,2.869,9.491,4.079,15.486,4.079\r\n\t\t\t\tc3.087,0,4.405-0.132,7.229-0.948C36.949,58.527,32.591,55.675,26.671,55.675z M32.001,0.008\r\n\t\t\t\tc-17.67,0-31.993,14.323-31.993,31.993c0,8.224,3.103,15.72,8.202,21.388c4.778-4.399,11.291-7.104,18.462-7.104\r\n\t\t\t\tc9.749,0,18.284,4.995,22.893,12.458c8.69-5.721,14.43-15.561,14.43-26.742C63.992,14.331,49.669,0.008,32.001,0.008z\r\n\t\t\t\t M46.704,44.438c-1.112,0.906-2.201,0.064-2.201,0.064c-10.883-8.335-27.994-3.798-27.994-3.754l-0.256,0.072\r\n\t\t\t\tc-1.149,0-1.937-1.215-1.937-2.362c0,0-0.069-1.319,1.788-1.937c0.713-0.131,18.112-3.926,30.539,4.408\r\n\t\t\t\tc0.922,0.727,0.953,1.59,0.953,1.59C47.594,43.668,47.336,43.923,46.704,44.438z M49.37,35.657c-0.479,0-0.927-0.138-1.308-0.37\r\n\t\t\t\th-0.002c-13.899-8.339-29.991-4.409-32.001-3.857l-1.028,0.202c-1.388,0-2.403-1.126-2.403-2.515c0-1.163,0.824-2.138,1.91-2.426\r\n\t\t\t\tc1.087-0.24,19.256-6.003,35.915,3.523h0.008c0.912,0.428,1.419,1.6,1.419,2.593C51.88,34.195,50.758,35.657,49.37,35.657z\r\n\t\t\t\t M53.583,26.042c0,0-0.853-0.014-1.71-0.531c-15.635-9.777-37.295-4.184-37.513-4.126l-0.008-0.005\r\n\t\t\t\tc-0.244,0.064-0.511,0.101-0.774,0.101c-1.655,0-2.962-1.341-2.962-2.996c0-1.434,0.727-2.631,2.358-2.926\r\n\t\t\t\tc1.087-0.259,24.236-6.181,42.042,4.852c0.934,0.507,1.565,1.497,1.565,2.635C56.581,24.7,55.236,26.042,53.583,26.042z"},"children":[{"name":"path","attribs":{"d":"M26.671,55.675c-4.217,0-7.496,1.354-10.156,4.239c4.795,2.869,9.491,4.079,15.486,4.079\r\n\t\t\t\tc3.087,0,4.405-0.132,7.229-0.948C36.949,58.527,32.591,55.675,26.671,55.675z M32.001,0.008\r\n\t\t\t\tc-17.67,0-31.993,14.323-31.993,31.993c0,8.224,3.103,15.72,8.202,21.388c4.778-4.399,11.291-7.104,18.462-7.104\r\n\t\t\t\tc9.749,0,18.284,4.995,22.893,12.458c8.69-5.721,14.43-15.561,14.43-26.742C63.992,14.331,49.669,0.008,32.001,0.008z\r\n\t\t\t\t M46.704,44.438c-1.112,0.906-2.201,0.064-2.201,0.064c-10.883-8.335-27.994-3.798-27.994-3.754l-0.256,0.072\r\n\t\t\t\tc-1.149,0-1.937-1.215-1.937-2.362c0,0-0.069-1.319,1.788-1.937c0.713-0.131,18.112-3.926,30.539,4.408\r\n\t\t\t\tc0.922,0.727,0.953,1.59,0.953,1.59C47.594,43.668,47.336,43.923,46.704,44.438z M49.37,35.657c-0.479,0-0.927-0.138-1.308-0.37\r\n\t\t\t\th-0.002c-13.899-8.339-29.991-4.409-32.001-3.857l-1.028,0.202c-1.388,0-2.403-1.126-2.403-2.515c0-1.163,0.824-2.138,1.91-2.426\r\n\t\t\t\tc1.087-0.24,19.256-6.003,35.915,3.523h0.008c0.912,0.428,1.419,1.6,1.419,2.593C51.88,34.195,50.758,35.657,49.37,35.657z\r\n\t\t\t\t M53.583,26.042c0,0-0.853-0.014-1.71-0.531c-15.635-9.777-37.295-4.184-37.513-4.126l-0.008-0.005\r\n\t\t\t\tc-0.244,0.064-0.511,0.101-0.774,0.101c-1.655,0-2.962-1.341-2.962-2.996c0-1.434,0.727-2.631,2.358-2.926\r\n\t\t\t\tc1.087-0.259,24.236-6.181,42.042,4.852c0.934,0.507,1.565,1.497,1.565,2.635C56.581,24.7,55.236,26.042,53.583,26.042z"},"children":[]}]}]}]}]}]}]}]};exports.spotify=spotify;var square={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"SQUARE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SQUARE"},"children":[{"name":"g","attribs":{"id":"SQUARE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58\r\n\t\t\t\tz"},"children":[{"name":"path","attribs":{"d":"M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58\r\n\t\t\t\tz"},"children":[]}]}]}]}]}]}]}]};exports.square=square;var square_add={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"SQUARE__x2F__ADD_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SQUARE__x2F__ADD"},"children":[{"name":"g","attribs":{"id":"SQUARE__x2F__ADD"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M19,35h10v10c0,1.657,1.343,3,3,3s3-1.343,3-3V35h10c1.657,0,3-1.343,3-3s-1.343-3-3-3H35V19c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v10H19c-1.657,0-3,1.343-3,3S17.343,35,19,35z M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58z"},"children":[{"name":"path","attribs":{"d":"M19,35h10v10c0,1.657,1.343,3,3,3s3-1.343,3-3V35h10c1.657,0,3-1.343,3-3s-1.343-3-3-3H35V19c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v10H19c-1.657,0-3,1.343-3,3S17.343,35,19,35z M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58z"},"children":[]}]}]}]}]}]}]}]};exports.square_add=square_add;var square_dashed={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"SQUARE__x2F__DASHED"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M37,58H27c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h10c1.657,0,3-1.343,3-3\r\n\t\t\tC40,59.343,38.657,58,37,58z M61,0H49c0,0,0,0,0,0c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3v0h9V15c0,0,0,0,0,0.001\r\n\t\t\tc0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V3C64,1.344,62.657,0,61,0z M15,58H6v-9c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3l0,0\r\n\t\t\tv12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3C18,59.343,16.657,58,15,58z M3,40c1.657,0,3-1.343,3-3V27c0-1.657-1.343-3-3-3\r\n\t\t\tc-1.657,0-3,1.343-3,3v10C0,38.657,1.343,40,3,40z M15,0H3C1.343,0,0,1.344,0,3v12c0,0,0,0,0,0c0,1.657,1.343,3,3,3\r\n\t\t\tc1.657,0,3-1.343,3-3V6h9v0c1.657,0,3-1.343,3-3C18,1.344,16.657,0,15,0z M64,37V27c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v10\r\n\t\t\tc0,1.657,1.343,3,3,3C62.657,40,64,38.657,64,37z M37,0H27c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h10c1.657,0,3-1.343,3-3\r\n\t\t\tC40,1.344,38.657,0,37,0z M61,46c-1.657,0-3,1.343-3,3c0,0,0,0,0,0v9h-9c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12\r\n\t\t\tc1.657,0,3-1.343,3-3V49C64,47.343,62.657,46,61,46z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M37,58H27c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h10c1.657,0,3-1.343,3-3\r\n\t\t\tC40,59.343,38.657,58,37,58z M61,0H49c0,0,0,0,0,0c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3v0h9V15c0,0,0,0,0,0.001\r\n\t\t\tc0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V3C64,1.344,62.657,0,61,0z M15,58H6v-9c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3l0,0\r\n\t\t\tv12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3C18,59.343,16.657,58,15,58z M3,40c1.657,0,3-1.343,3-3V27c0-1.657-1.343-3-3-3\r\n\t\t\tc-1.657,0-3,1.343-3,3v10C0,38.657,1.343,40,3,40z M15,0H3C1.343,0,0,1.344,0,3v12c0,0,0,0,0,0c0,1.657,1.343,3,3,3\r\n\t\t\tc1.657,0,3-1.343,3-3V6h9v0c1.657,0,3-1.343,3-3C18,1.344,16.657,0,15,0z M64,37V27c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v10\r\n\t\t\tc0,1.657,1.343,3,3,3C62.657,40,64,38.657,64,37z M37,0H27c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h10c1.657,0,3-1.343,3-3\r\n\t\t\tC40,1.344,38.657,0,37,0z M61,46c-1.657,0-3,1.343-3,3c0,0,0,0,0,0v9h-9c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12\r\n\t\t\tc1.657,0,3-1.343,3-3V49C64,47.343,62.657,46,61,46z"},"children":[]}]}]}]}]}]};exports.square_dashed=square_dashed;var square_delete={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"SQUARE__x2F__DELETE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SQUARE__x2F__DELETE"},"children":[{"name":"g","attribs":{"id":"SQUARE__x2F__DELETE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M18,43c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L32,36.243l8.879,8.879C41.422,45.664,42.172,46,43,46\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L36.243,32l8.879-8.878C45.664,22.579,46,21.829,46,21c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L32,27.758l-8.879-8.879C22.579,18.336,21.828,18,21,18c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L27.757,32l-8.879,8.879C18.336,41.422,18,42.172,18,43z M61,0H3C1.343,0,0,1.343,0,3v58\r\n\t\t\t\tc0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58z"},"children":[{"name":"path","attribs":{"d":"M18,43c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L32,36.243l8.879,8.879C41.422,45.664,42.172,46,43,46\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L36.243,32l8.879-8.878C45.664,22.579,46,21.829,46,21c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L32,27.758l-8.879-8.879C22.579,18.336,21.828,18,21,18c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L27.757,32l-8.879,8.879C18.336,41.422,18,42.172,18,43z M61,0H3C1.343,0,0,1.343,0,3v58\r\n\t\t\t\tc0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58z"},"children":[]}]}]}]}]}]}]}]};exports.square_delete=square_delete;var square_down={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"SQUARE__x2F__DOWN"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M15,0H3C1.343,0,0,1.344,0,3v12c0,0,0,0,0,0c0,1.657,1.343,3,3,3\r\n\t\t\tc1.657,0,3-1.343,3-3V6h9v0c1.657,0,3-1.343,3-3C18,1.344,16.657,0,15,0z M15,58H6v-9c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3\r\n\t\t\tl0,0v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3C18,59.343,16.657,58,15,58z M27,6h10c1.657,0,3-1.343,3-3\r\n\t\t\tc0-1.657-1.343-3-3-3H27c-1.657,0-3,1.343-3,3C24,4.657,25.343,6,27,6z M37,58H27c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h10\r\n\t\t\tc1.657,0,3-1.343,3-3C40,59.343,38.657,58,37,58z M3,40c1.657,0,3-1.343,3-3V27c0-1.657-1.343-3-3-3s-3,1.343-3,3v10\r\n\t\t\tC0,38.657,1.343,40,3,40z M41,32c-0.885,0-1.673,0.391-2.222,1l-0.008-0.007L35,37.182V19c0-1.657-1.343-3-3-3\r\n\t\t\tc-1.657,0-3,1.343-3,3v18.182l-3.77-4.189l-0.008,0.007c-0.549-0.61-1.337-1-2.222-1c-1.657,0-3,1.343-3,3\r\n\t\t\tc0,0.772,0.3,1.468,0.778,2l-0.008,0.007l9,10L29.778,47c0.549,0.61,1.336,1,2.222,1s1.673-0.391,2.222-1l0.008,0.007l9-10\r\n\t\t\tL43.222,37C43.701,36.468,44,35.772,44,35C44,33.344,42.657,32,41,32z M61,0H49c0,0,0,0,0,0c-1.657,0-3,1.343-3,3\r\n\t\t\tc0,1.657,1.343,3,3,3v0h9V15c0,0,0,0,0,0.001c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V3C64,1.344,62.657,0,61,0z M61,40\r\n\t\t\tc1.657,0,3-1.343,3-3V27c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v10C58,38.657,59.343,40,61,40z M61,46c-1.657,0-3,1.343-3,3\r\n\t\t\tc0,0,0,0,0,0v9h-9c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3V49C64,47.343,62.657,46,61,46z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M15,0H3C1.343,0,0,1.344,0,3v12c0,0,0,0,0,0c0,1.657,1.343,3,3,3\r\n\t\t\tc1.657,0,3-1.343,3-3V6h9v0c1.657,0,3-1.343,3-3C18,1.344,16.657,0,15,0z M15,58H6v-9c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3\r\n\t\t\tl0,0v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3C18,59.343,16.657,58,15,58z M27,6h10c1.657,0,3-1.343,3-3\r\n\t\t\tc0-1.657-1.343-3-3-3H27c-1.657,0-3,1.343-3,3C24,4.657,25.343,6,27,6z M37,58H27c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h10\r\n\t\t\tc1.657,0,3-1.343,3-3C40,59.343,38.657,58,37,58z M3,40c1.657,0,3-1.343,3-3V27c0-1.657-1.343-3-3-3s-3,1.343-3,3v10\r\n\t\t\tC0,38.657,1.343,40,3,40z M41,32c-0.885,0-1.673,0.391-2.222,1l-0.008-0.007L35,37.182V19c0-1.657-1.343-3-3-3\r\n\t\t\tc-1.657,0-3,1.343-3,3v18.182l-3.77-4.189l-0.008,0.007c-0.549-0.61-1.337-1-2.222-1c-1.657,0-3,1.343-3,3\r\n\t\t\tc0,0.772,0.3,1.468,0.778,2l-0.008,0.007l9,10L29.778,47c0.549,0.61,1.336,1,2.222,1s1.673-0.391,2.222-1l0.008,0.007l9-10\r\n\t\t\tL43.222,37C43.701,36.468,44,35.772,44,35C44,33.344,42.657,32,41,32z M61,0H49c0,0,0,0,0,0c-1.657,0-3,1.343-3,3\r\n\t\t\tc0,1.657,1.343,3,3,3v0h9V15c0,0,0,0,0,0.001c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V3C64,1.344,62.657,0,61,0z M61,40\r\n\t\t\tc1.657,0,3-1.343,3-3V27c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v10C58,38.657,59.343,40,61,40z M61,46c-1.657,0-3,1.343-3,3\r\n\t\t\tc0,0,0,0,0,0v9h-9c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3V49C64,47.343,62.657,46,61,46z"},"children":[]}]}]}]}]}]};exports.square_down=square_down;var square_left={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"SQUARE__x2F__LEFT"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M3,40c1.657,0,3-1.343,3-3V27c0-1.657-1.343-3-3-3s-3,1.343-3,3v10\r\n\t\t\tC0,38.657,1.343,40,3,40z M27,6h10c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H27c-1.657,0-3,1.343-3,3C24,4.657,25.343,6,27,6z\r\n\t\t\t M3,18c1.657,0,3-1.343,3-3V6h9v0c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H3C1.343,0,0,1.344,0,3v12c0,0,0,0,0,0\r\n\t\t\tC0,16.657,1.343,18,3,18z M15,58H6v-9c0-1.657-1.343-3-3-3s-3,1.343-3,3l0,0v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3\r\n\t\t\tC18,59.343,16.657,58,15,58z M61,46c-1.657,0-3,1.343-3,3c0,0,0,0,0,0v9h-9c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12\r\n\t\t\tc1.657,0,3-1.343,3-3V49C64,47.343,62.657,46,61,46z M61,0H49c0,0,0,0,0,0c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3v0h9V15\r\n\t\t\tc0,0,0,0,0,0.001c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V3C64,1.344,62.657,0,61,0z M37,58H27c-1.657,0-3,1.343-3,3\r\n\t\t\tc0,1.657,1.343,3,3,3h10c1.657,0,3-1.343,3-3C40,59.343,38.657,58,37,58z M64,37V27c0-1.657-1.343-3-3-3s-3,1.343-3,3v10\r\n\t\t\tc0,1.657,1.343,3,3,3S64,38.657,64,37z M48,32c0-1.657-1.343-3-3-3H26.818l4.189-3.77L31,25.222c0.61-0.549,1-1.337,1-2.222\r\n\t\t\tc0-1.657-1.343-3-3-3c-0.772,0-1.468,0.3-2,0.778l-0.007-0.008l-10,9L17,29.779c-0.61,0.549-1,1.337-1,2.222\r\n\t\t\tc0,0.885,0.391,1.673,1,2.222l-0.007,0.008l10,9L27,43.222C27.532,43.701,28.229,44,29,44c1.657,0,3-1.343,3-3\r\n\t\t\tc0-0.885-0.391-1.673-1-2.222l0.007-0.008L26.818,35H45C46.657,35,48,33.657,48,32z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M3,40c1.657,0,3-1.343,3-3V27c0-1.657-1.343-3-3-3s-3,1.343-3,3v10\r\n\t\t\tC0,38.657,1.343,40,3,40z M27,6h10c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H27c-1.657,0-3,1.343-3,3C24,4.657,25.343,6,27,6z\r\n\t\t\t M3,18c1.657,0,3-1.343,3-3V6h9v0c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H3C1.343,0,0,1.344,0,3v12c0,0,0,0,0,0\r\n\t\t\tC0,16.657,1.343,18,3,18z M15,58H6v-9c0-1.657-1.343-3-3-3s-3,1.343-3,3l0,0v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3\r\n\t\t\tC18,59.343,16.657,58,15,58z M61,46c-1.657,0-3,1.343-3,3c0,0,0,0,0,0v9h-9c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12\r\n\t\t\tc1.657,0,3-1.343,3-3V49C64,47.343,62.657,46,61,46z M61,0H49c0,0,0,0,0,0c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3v0h9V15\r\n\t\t\tc0,0,0,0,0,0.001c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V3C64,1.344,62.657,0,61,0z M37,58H27c-1.657,0-3,1.343-3,3\r\n\t\t\tc0,1.657,1.343,3,3,3h10c1.657,0,3-1.343,3-3C40,59.343,38.657,58,37,58z M64,37V27c0-1.657-1.343-3-3-3s-3,1.343-3,3v10\r\n\t\t\tc0,1.657,1.343,3,3,3S64,38.657,64,37z M48,32c0-1.657-1.343-3-3-3H26.818l4.189-3.77L31,25.222c0.61-0.549,1-1.337,1-2.222\r\n\t\t\tc0-1.657-1.343-3-3-3c-0.772,0-1.468,0.3-2,0.778l-0.007-0.008l-10,9L17,29.779c-0.61,0.549-1,1.337-1,2.222\r\n\t\t\tc0,0.885,0.391,1.673,1,2.222l-0.007,0.008l10,9L27,43.222C27.532,43.701,28.229,44,29,44c1.657,0,3-1.343,3-3\r\n\t\t\tc0-0.885-0.391-1.673-1-2.222l0.007-0.008L26.818,35H45C46.657,35,48,33.657,48,32z"},"children":[]}]}]}]}]}]};exports.square_left=square_left;var square_ok={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"SQUARE__x2F__OK_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SQUARE__x2F__OK"},"children":[{"name":"g","attribs":{"id":"SQUARE__x2F__OK"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M46,20.999v0.002C46,21.001,46,21.001,46,20.999C46,21,46,21,46,20.999z M46,43.001C46,43.001,46,43,46,43.001\r\n\t\t\t\tC46,43,46,43,46,42.999V43.001z M25.879,42.121C26.422,42.664,27.172,43,28,43s1.578-0.336,2.121-0.879l16-16\r\n\t\t\t\tC46.664,25.579,47,24.828,47,24c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L28,35.757l-6.879-6.879\r\n\t\t\t\tC20.578,28.336,19.828,28,19,28c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L25.879,42.121z M61,0H3\r\n\t\t\t\tC1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58z"},"children":[{"name":"path","attribs":{"d":"M46,20.999v0.002C46,21.001,46,21.001,46,20.999C46,21,46,21,46,20.999z M46,43.001C46,43.001,46,43,46,43.001\r\n\t\t\t\tC46,43,46,43,46,42.999V43.001z M25.879,42.121C26.422,42.664,27.172,43,28,43s1.578-0.336,2.121-0.879l16-16\r\n\t\t\t\tC46.664,25.579,47,24.828,47,24c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L28,35.757l-6.879-6.879\r\n\t\t\t\tC20.578,28.336,19.828,28,19,28c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L25.879,42.121z M61,0H3\r\n\t\t\t\tC1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58z"},"children":[]}]}]}]}]}]}]}]};exports.square_ok=square_ok;var square_remove={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"SQUARE__x2F__REMOVE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SQUARE__x2F__REMOVE"},"children":[{"name":"g","attribs":{"id":"SQUARE__x2F__REMOVE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58\r\n\t\t\t\tz M19,35h26c1.657,0,3-1.343,3-3s-1.343-3-3-3H19c-1.657,0-3,1.343-3,3S17.343,35,19,35z"},"children":[{"name":"path","attribs":{"d":"M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58\r\n\t\t\t\tz M19,35h26c1.657,0,3-1.343,3-3s-1.343-3-3-3H19c-1.657,0-3,1.343-3,3S17.343,35,19,35z"},"children":[]}]}]}]}]}]}]}]};exports.square_remove=square_remove;var square_right={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"SQUARE__x2F__RIGHT"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M3,40c1.657,0,3-1.343,3-3V27c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v10\r\n\t\t\tC0,38.657,1.343,40,3,40z M15,58H6v-9c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3l0,0v12c0,1.657,1.343,3,3,3h12\r\n\t\t\tc1.657,0,3-1.343,3-3C18,59.343,16.657,58,15,58z M3,18c1.657,0,3-1.343,3-3V6h9v0c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H3\r\n\t\t\tC1.343,0,0,1.344,0,3v12c0,0,0,0,0,0C0,16.657,1.343,18,3,18z M27,6h10c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H27\r\n\t\t\tc-1.657,0-3,1.343-3,3C24,4.657,25.343,6,27,6z M32.993,38.771l0.007,0.008c-0.61,0.549-1,1.337-1,2.222c0,1.657,1.343,3,3,3\r\n\t\t\tc0.772,0,1.468-0.299,2-0.778l0.007,0.008l10-9L47,34.222c0.61-0.549,1-1.337,1-2.222c0-0.885-0.391-1.672-1-2.222l0.007-0.008\r\n\t\t\tl-10-9L37,20.779C36.468,20.3,35.772,20,35,20c-1.657,0-3,1.343-3,3c0,0.885,0.391,1.673,1,2.222l-0.007,0.008L37.182,29H19\r\n\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h18.182L32.993,38.771z M64,37V27c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v10\r\n\t\t\tc0,1.657,1.343,3,3,3C62.657,40,64,38.657,64,37z M61,0H49c0,0,0,0,0,0c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3v0h9V15\r\n\t\t\tc0,0,0,0,0,0.001c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V3C64,1.344,62.657,0,61,0z M37,58H27c-1.657,0-3,1.343-3,3\r\n\t\t\tc0,1.657,1.343,3,3,3h10c1.657,0,3-1.343,3-3C40,59.343,38.657,58,37,58z M61,46c-1.657,0-3,1.343-3,3c0,0,0,0,0,0v9h-9\r\n\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3V49C64,47.343,62.657,46,61,46z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M3,40c1.657,0,3-1.343,3-3V27c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v10\r\n\t\t\tC0,38.657,1.343,40,3,40z M15,58H6v-9c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3l0,0v12c0,1.657,1.343,3,3,3h12\r\n\t\t\tc1.657,0,3-1.343,3-3C18,59.343,16.657,58,15,58z M3,18c1.657,0,3-1.343,3-3V6h9v0c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H3\r\n\t\t\tC1.343,0,0,1.344,0,3v12c0,0,0,0,0,0C0,16.657,1.343,18,3,18z M27,6h10c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H27\r\n\t\t\tc-1.657,0-3,1.343-3,3C24,4.657,25.343,6,27,6z M32.993,38.771l0.007,0.008c-0.61,0.549-1,1.337-1,2.222c0,1.657,1.343,3,3,3\r\n\t\t\tc0.772,0,1.468-0.299,2-0.778l0.007,0.008l10-9L47,34.222c0.61-0.549,1-1.337,1-2.222c0-0.885-0.391-1.672-1-2.222l0.007-0.008\r\n\t\t\tl-10-9L37,20.779C36.468,20.3,35.772,20,35,20c-1.657,0-3,1.343-3,3c0,0.885,0.391,1.673,1,2.222l-0.007,0.008L37.182,29H19\r\n\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h18.182L32.993,38.771z M64,37V27c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v10\r\n\t\t\tc0,1.657,1.343,3,3,3C62.657,40,64,38.657,64,37z M61,0H49c0,0,0,0,0,0c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3v0h9V15\r\n\t\t\tc0,0,0,0,0,0.001c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V3C64,1.344,62.657,0,61,0z M37,58H27c-1.657,0-3,1.343-3,3\r\n\t\t\tc0,1.657,1.343,3,3,3h10c1.657,0,3-1.343,3-3C40,59.343,38.657,58,37,58z M61,46c-1.657,0-3,1.343-3,3c0,0,0,0,0,0v9h-9\r\n\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3V49C64,47.343,62.657,46,61,46z"},"children":[]}]}]}]}]}]};exports.square_right=square_right;var square_up={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"SQUARE__x2F__UP"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M15,0H3C1.343,0,0,1.344,0,3v12c0,0,0,0,0,0c0,1.657,1.343,3,3,3\r\n\t\t\tc1.657,0,3-1.343,3-3V6h9v0c1.657,0,3-1.343,3-3C18,1.344,16.657,0,15,0z M3,40c1.657,0,3-1.343,3-3V27c0-1.657-1.343-3-3-3\r\n\t\t\tc-1.657,0-3,1.343-3,3v10C0,38.657,1.343,40,3,40z M15,58H6v-9c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3l0,0v12\r\n\t\t\tc0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3C18,59.343,16.657,58,15,58z M27,6h10c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H27\r\n\t\t\tc-1.657,0-3,1.343-3,3C24,4.657,25.343,6,27,6z M37,58H27c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h10c1.657,0,3-1.343,3-3\r\n\t\t\tC40,59.343,38.657,58,37,58z M61,24c-1.657,0-3,1.343-3,3v10c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V27\r\n\t\t\tC64,25.343,62.657,24,61,24z M61,0H49c0,0,0,0,0,0c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3v0h9V15c0,0,0,0,0,0.001\r\n\t\t\tc0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V3C64,1.344,62.657,0,61,0z M43.23,26.994l-9-10l-0.008,0.007\r\n\t\t\tc-0.549-0.61-1.336-1-2.222-1c-0.885,0-1.672,0.391-2.222,1l-0.008-0.007l-9,10l0.008,0.007C20.3,27.532,20,28.229,20,29\r\n\t\t\tc0,1.657,1.343,3,3,3c0.885,0,1.673-0.391,2.222-1l0.008,0.007L29,26.818V45c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V26.818\r\n\t\t\tl3.77,4.189L38.778,31c0.549,0.61,1.337,1,2.222,1c1.657,0,3-1.343,3-3c0-0.772-0.3-1.468-0.778-2L43.23,26.994z M61,46\r\n\t\t\tc-1.657,0-3,1.343-3,3c0,0,0,0,0,0v9h-9c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3V49\r\n\t\t\tC64,47.343,62.657,46,61,46z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M15,0H3C1.343,0,0,1.344,0,3v12c0,0,0,0,0,0c0,1.657,1.343,3,3,3\r\n\t\t\tc1.657,0,3-1.343,3-3V6h9v0c1.657,0,3-1.343,3-3C18,1.344,16.657,0,15,0z M3,40c1.657,0,3-1.343,3-3V27c0-1.657-1.343-3-3-3\r\n\t\t\tc-1.657,0-3,1.343-3,3v10C0,38.657,1.343,40,3,40z M15,58H6v-9c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3l0,0v12\r\n\t\t\tc0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3C18,59.343,16.657,58,15,58z M27,6h10c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H27\r\n\t\t\tc-1.657,0-3,1.343-3,3C24,4.657,25.343,6,27,6z M37,58H27c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h10c1.657,0,3-1.343,3-3\r\n\t\t\tC40,59.343,38.657,58,37,58z M61,24c-1.657,0-3,1.343-3,3v10c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V27\r\n\t\t\tC64,25.343,62.657,24,61,24z M61,0H49c0,0,0,0,0,0c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3v0h9V15c0,0,0,0,0,0.001\r\n\t\t\tc0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V3C64,1.344,62.657,0,61,0z M43.23,26.994l-9-10l-0.008,0.007\r\n\t\t\tc-0.549-0.61-1.336-1-2.222-1c-0.885,0-1.672,0.391-2.222,1l-0.008-0.007l-9,10l0.008,0.007C20.3,27.532,20,28.229,20,29\r\n\t\t\tc0,1.657,1.343,3,3,3c0.885,0,1.673-0.391,2.222-1l0.008,0.007L29,26.818V45c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V26.818\r\n\t\t\tl3.77,4.189L38.778,31c0.549,0.61,1.337,1,2.222,1c1.657,0,3-1.343,3-3c0-0.772-0.3-1.468-0.778-2L43.23,26.994z M61,46\r\n\t\t\tc-1.657,0-3,1.343-3,3c0,0,0,0,0,0v9h-9c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3V49\r\n\t\t\tC64,47.343,62.657,46,61,46z"},"children":[]}]}]}]}]}]};exports.square_up=square_up;var star={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"STAR_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"STAR"},"children":[{"name":"g","attribs":{"id":"STAR"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M64,26c0-1.657-1.343-3-3-3H41.047L34.869,4.12C34.492,2.893,33.352,2,32,2c-1.35,0-2.492,0.892-2.868,2.12L22.953,23H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1,0.49,1.885,1.242,2.43l0,0L17.36,40.09l-6.209,18.971C11.053,59.357,11,59.672,11,60\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.657,0,1.263-0.213,1.758-0.57h0.001L32,50.682L48.242,62.43h0.001C48.736,62.788,49.343,63,50,63\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.328-0.053-0.643-0.15-0.938L46.641,40.09l16.118-11.66l0,0C63.51,27.885,64,27,64,26z"},"children":[{"name":"path","attribs":{"d":"M64,26c0-1.657-1.343-3-3-3H41.047L34.869,4.12C34.492,2.893,33.352,2,32,2c-1.35,0-2.492,0.892-2.868,2.12L22.953,23H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1,0.49,1.885,1.242,2.43l0,0L17.36,40.09l-6.209,18.971C11.053,59.357,11,59.672,11,60\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.657,0,1.263-0.213,1.758-0.57h0.001L32,50.682L48.242,62.43h0.001C48.736,62.788,49.343,63,50,63\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.328-0.053-0.643-0.15-0.938L46.641,40.09l16.118-11.66l0,0C63.51,27.885,64,27,64,26z"},"children":[]}]}]}]}]}]}]}]};exports.star=star;var stop={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"STOP_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"STOP"},"children":[{"name":"g","attribs":{"id":"STOP"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M43,18H21c-1.657,0-3,1.343-3,3v22c0,1.657,1.343,3,3,3h22c1.657,0,3-1.343,3-3V21C46,19.343,44.657,18,43,18z"},"children":[{"name":"path","attribs":{"d":"M43,18H21c-1.657,0-3,1.343-3,3v22c0,1.657,1.343,3,3,3h22c1.657,0,3-1.343,3-3V21C46,19.343,44.657,18,43,18z"},"children":[]}]}]}]}]}]}]}]};exports.stop=stop;var suitcase={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"SUITCASE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SUITCASE"},"children":[{"name":"g","attribs":{"id":"SUITCASE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M0,21v37c0,1.657,1.343,3,3,3h5V18H3C1.343,18,0,19.343,0,21z M32,3c-8.284,0-15,6.716-15,15h-6v43h42V18h-6\r\n\t\t\t\tC47,9.716,40.284,3,32,3z M23,18c0-4.971,4.029-9,9-9c4.971,0,9,4.029,9,9H23z M61,18h-5v43h5c1.657,0,3-1.343,3-3V21\r\n\t\t\t\tC64,19.343,62.657,18,61,18z"},"children":[{"name":"path","attribs":{"d":"M0,21v37c0,1.657,1.343,3,3,3h5V18H3C1.343,18,0,19.343,0,21z M32,3c-8.284,0-15,6.716-15,15h-6v43h42V18h-6\r\n\t\t\t\tC47,9.716,40.284,3,32,3z M23,18c0-4.971,4.029-9,9-9c4.971,0,9,4.029,9,9H23z M61,18h-5v43h5c1.657,0,3-1.343,3-3V21\r\n\t\t\t\tC64,19.343,62.657,18,61,18z"},"children":[]}]}]}]}]}]}]}]};exports.suitcase=suitcase;var tag={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"TAG_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"TAG"},"children":[{"name":"g","attribs":{"id":"TAG"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M56,33c0-0.018-0.002-0.033-0.003-0.049c-0.001-0.087-0.004-0.174-0.013-0.258c-0.002-0.017-0.006-0.031-0.008-0.047\r\n\t\t\t\tc-0.01-0.084-0.021-0.169-0.039-0.252c0-0.002,0-0.003,0-0.005c-0.123-0.594-0.422-1.123-0.84-1.531L32.126,8.884\r\n\t\t\t\tC31.582,8.338,30.831,8,30,8c-0.003,0-0.005,0.001-0.008,0.001V7.993H11V8c-1.657,0-3,1.343-3,3H7.993v19.049h0.013\r\n\t\t\t\tc0.015,0.878,0.409,1.657,1.023,2.196l-0.011,0.012l25,23l0.006-0.005c0.395,0.348,0.879,0.592,1.418,0.693\r\n\t\t\t\tc0.021,0.005,0.045,0.008,0.067,0.011c0.067,0.011,0.134,0.022,0.202,0.028C35.807,55.995,35.902,56,36,56\r\n\t\t\t\tc0.916,0,1.734-0.411,2.284-1.059l0.001,0.002l17-20l-0.001-0.002C55.73,34.418,56,33.741,56,33z M16,20c-2.209,0-4-1.791-4-4\r\n\t\t\t\ts1.791-4,4-4s4,1.791,4,4S18.209,20,16,20z"},"children":[{"name":"path","attribs":{"d":"M56,33c0-0.018-0.002-0.033-0.003-0.049c-0.001-0.087-0.004-0.174-0.013-0.258c-0.002-0.017-0.006-0.031-0.008-0.047\r\n\t\t\t\tc-0.01-0.084-0.021-0.169-0.039-0.252c0-0.002,0-0.003,0-0.005c-0.123-0.594-0.422-1.123-0.84-1.531L32.126,8.884\r\n\t\t\t\tC31.582,8.338,30.831,8,30,8c-0.003,0-0.005,0.001-0.008,0.001V7.993H11V8c-1.657,0-3,1.343-3,3H7.993v19.049h0.013\r\n\t\t\t\tc0.015,0.878,0.409,1.657,1.023,2.196l-0.011,0.012l25,23l0.006-0.005c0.395,0.348,0.879,0.592,1.418,0.693\r\n\t\t\t\tc0.021,0.005,0.045,0.008,0.067,0.011c0.067,0.011,0.134,0.022,0.202,0.028C35.807,55.995,35.902,56,36,56\r\n\t\t\t\tc0.916,0,1.734-0.411,2.284-1.059l0.001,0.002l17-20l-0.001-0.002C55.73,34.418,56,33.741,56,33z M16,20c-2.209,0-4-1.791-4-4\r\n\t\t\t\ts1.791-4,4-4s4,1.791,4,4S18.209,20,16,20z"},"children":[]}]}]}]}]}]}]}]};exports.tag=tag;var tags={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"TAGS_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"TAGS"},"children":[{"name":"g","attribs":{"id":"TAGS"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M56.113,26.872l-5.133-4.91c-0.006,0.009-0.012,0.019-0.017,0.028L34.126,5.884C33.582,5.338,32.831,5,32,5\r\n\t\t\t\tc-0.003,0-0.005,0.001-0.008,0.001V4.993H13V5c-1.657,0-3,1.343-3,3h22l24.081,23.155L56.3,30.9l0.002,0.001\r\n\t\t\t\tC56.73,30.383,57,29.726,57,29C57,28.168,56.66,27.415,56.113,26.872z M54.997,35.951c-0.001-0.087-0.004-0.174-0.013-0.26\r\n\t\t\t\tc-0.002-0.016-0.006-0.03-0.008-0.045c-0.01-0.086-0.021-0.17-0.039-0.254c0-0.002,0-0.002,0-0.004\r\n\t\t\t\tc-0.123-0.594-0.422-1.123-0.84-1.531L31.126,11.884C30.582,11.338,29.831,11,29,11c-0.003,0-0.005,0.001-0.008,0.001v-0.008H10\r\n\t\t\t\tV11c-1.657,0-3,1.343-3,3H6.993v19.049h0.013c0.015,0.878,0.409,1.657,1.023,2.196l-0.011,0.012l25,23l0.006-0.005\r\n\t\t\t\tc0.395,0.348,0.879,0.594,1.418,0.693c0.021,0.005,0.045,0.008,0.067,0.011c0.067,0.011,0.134,0.022,0.202,0.028\r\n\t\t\t\tC34.807,58.995,34.902,59,35,59c0.916,0,1.734-0.411,2.284-1.059l0.001,0.002l17-20l-0.001-0.002C54.73,37.418,55,36.741,55,36\r\n\t\t\t\tC55,35.984,54.998,35.968,54.997,35.951z M15,23c-2.209,0-4-1.791-4-4s1.791-4,4-4s4,1.791,4,4S17.209,23,15,23z"},"children":[{"name":"path","attribs":{"d":"M56.113,26.872l-5.133-4.91c-0.006,0.009-0.012,0.019-0.017,0.028L34.126,5.884C33.582,5.338,32.831,5,32,5\r\n\t\t\t\tc-0.003,0-0.005,0.001-0.008,0.001V4.993H13V5c-1.657,0-3,1.343-3,3h22l24.081,23.155L56.3,30.9l0.002,0.001\r\n\t\t\t\tC56.73,30.383,57,29.726,57,29C57,28.168,56.66,27.415,56.113,26.872z M54.997,35.951c-0.001-0.087-0.004-0.174-0.013-0.26\r\n\t\t\t\tc-0.002-0.016-0.006-0.03-0.008-0.045c-0.01-0.086-0.021-0.17-0.039-0.254c0-0.002,0-0.002,0-0.004\r\n\t\t\t\tc-0.123-0.594-0.422-1.123-0.84-1.531L31.126,11.884C30.582,11.338,29.831,11,29,11c-0.003,0-0.005,0.001-0.008,0.001v-0.008H10\r\n\t\t\t\tV11c-1.657,0-3,1.343-3,3H6.993v19.049h0.013c0.015,0.878,0.409,1.657,1.023,2.196l-0.011,0.012l25,23l0.006-0.005\r\n\t\t\t\tc0.395,0.348,0.879,0.594,1.418,0.693c0.021,0.005,0.045,0.008,0.067,0.011c0.067,0.011,0.134,0.022,0.202,0.028\r\n\t\t\t\tC34.807,58.995,34.902,59,35,59c0.916,0,1.734-0.411,2.284-1.059l0.001,0.002l17-20l-0.001-0.002C54.73,37.418,55,36.741,55,36\r\n\t\t\t\tC55,35.984,54.998,35.968,54.997,35.951z M15,23c-2.209,0-4-1.791-4-4s1.791-4,4-4s4,1.791,4,4S17.209,23,15,23z"},"children":[]}]}]}]}]}]}]}]};exports.tags=tags;var target={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"TARGET_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"TARGET"},"children":[{"name":"g","attribs":{"id":"TARGET"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M32,29c-1.657,0-3,1.343-3,3s1.343,3,3,3s3-1.343,3-3S33.657,29,32,29z M61,29h-3.186\r\n\t\t\t\tC56.438,17.042,46.956,7.569,35,6.191V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3.186C17.042,7.562,7.568,17.044,6.191,29H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h3.186C7.562,46.958,17.044,56.432,29,57.809V61c0,1.657,1.343,3,3,3s3-1.343,3-3v-3.191\r\n\t\t\t\tC46.956,56.432,56.438,46.958,57.814,35H61c1.657,0,3-1.343,3-3S62.657,29,61,29z M46,35h5.751\r\n\t\t\t\tC50.448,43.639,43.634,50.453,35,51.757V46c0-1.657-1.343-3-3-3s-3,1.343-3,3v5.756C20.366,50.453,13.552,43.639,12.249,35H18\r\n\t\t\t\tc1.657,0,3-1.343,3-3s-1.343-3-3-3h-5.756C13.547,20.366,20.362,13.552,29,12.249V18c0,1.657,1.343,3,3,3s3-1.343,3-3v-5.756\r\n\t\t\t\tC43.634,13.547,50.448,20.362,51.751,29H46c-1.657,0-3,1.343-3,3S44.343,35,46,35z"},"children":[{"name":"path","attribs":{"d":"M32,29c-1.657,0-3,1.343-3,3s1.343,3,3,3s3-1.343,3-3S33.657,29,32,29z M61,29h-3.186\r\n\t\t\t\tC56.438,17.042,46.956,7.569,35,6.191V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3.186C17.042,7.562,7.568,17.044,6.191,29H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h3.186C7.562,46.958,17.044,56.432,29,57.809V61c0,1.657,1.343,3,3,3s3-1.343,3-3v-3.191\r\n\t\t\t\tC46.956,56.432,56.438,46.958,57.814,35H61c1.657,0,3-1.343,3-3S62.657,29,61,29z M46,35h5.751\r\n\t\t\t\tC50.448,43.639,43.634,50.453,35,51.757V46c0-1.657-1.343-3-3-3s-3,1.343-3,3v5.756C20.366,50.453,13.552,43.639,12.249,35H18\r\n\t\t\t\tc1.657,0,3-1.343,3-3s-1.343-3-3-3h-5.756C13.547,20.366,20.362,13.552,29,12.249V18c0,1.657,1.343,3,3,3s3-1.343,3-3v-5.756\r\n\t\t\t\tC43.634,13.547,50.448,20.362,51.751,29H46c-1.657,0-3,1.343-3,3S44.343,35,46,35z"},"children":[]}]}]}]}]}]}]}]};exports.target=target;var terminal={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"TERMINAL"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M30,32c0-0.002,0-0.005,0-0.007c0-0.002,0-0.005,0-0.007\r\n\t\t\tc0-0.848-0.352-1.613-0.918-2.159l0.001-0.001l-18-18l-0.008,0.008C10.536,11.318,9.806,11,9,11c-1.657,0-3,1.343-3,3\r\n\t\t\tc0,0.91,0.406,1.725,1.046,2.275l15.718,15.718L6.84,47.917l0.001,0.001C6.321,48.458,6,49.191,6,50c0,1.657,1.343,3,3,3\r\n\t\t\tc0.809,0,1.543-0.321,2.082-0.841l0.001,0.001l18-18l-0.001-0.001C29.648,33.613,30,32.848,30,32z M55.5,47h-23\r\n\t\t\tc-1.381,0-2.5,1.119-2.5,2.5v1c0,1.381,1.119,2.5,2.5,2.5h23c1.381,0,2.5-1.119,2.5-2.5v-1C58,48.119,56.881,47,55.5,47z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M30,32c0-0.002,0-0.005,0-0.007c0-0.002,0-0.005,0-0.007\r\n\t\t\tc0-0.848-0.352-1.613-0.918-2.159l0.001-0.001l-18-18l-0.008,0.008C10.536,11.318,9.806,11,9,11c-1.657,0-3,1.343-3,3\r\n\t\t\tc0,0.91,0.406,1.725,1.046,2.275l15.718,15.718L6.84,47.917l0.001,0.001C6.321,48.458,6,49.191,6,50c0,1.657,1.343,3,3,3\r\n\t\t\tc0.809,0,1.543-0.321,2.082-0.841l0.001,0.001l18-18l-0.001-0.001C29.648,33.613,30,32.848,30,32z M55.5,47h-23\r\n\t\t\tc-1.381,0-2.5,1.119-2.5,2.5v1c0,1.381,1.119,2.5,2.5,2.5h23c1.381,0,2.5-1.119,2.5-2.5v-1C58,48.119,56.881,47,55.5,47z"},"children":[]}]}]}]}]}]};exports.terminal=terminal;var text_center={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"TEXT__x2F__CENTER_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"TEXT__x2F__CENTER"},"children":[{"name":"g","attribs":{"id":"TEXT__x2F__CENTER"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M3,11h58c1.657,0,3-1.343,3-3s-1.343-3-3-3H3C1.343,5,0,6.343,0,8S1.343,11,3,11z M15,21c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h5.999c0,0,0,0,0.001,0h22c0,0,0,0,0.001,0H49c1.657,0,3-1.343,3-3s-1.343-3-3-3H15z M61,37H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h58c1.657,0,3-1.343,3-3S62.657,37,61,37z M43,53H21c-1.657,0-3,1.343-3,3s1.343,3,3,3h22c1.657,0,3-1.343,3-3\r\n\t\t\t\tS44.657,53,43,53z"},"children":[{"name":"path","attribs":{"d":"M3,11h58c1.657,0,3-1.343,3-3s-1.343-3-3-3H3C1.343,5,0,6.343,0,8S1.343,11,3,11z M15,21c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h5.999c0,0,0,0,0.001,0h22c0,0,0,0,0.001,0H49c1.657,0,3-1.343,3-3s-1.343-3-3-3H15z M61,37H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h58c1.657,0,3-1.343,3-3S62.657,37,61,37z M43,53H21c-1.657,0-3,1.343-3,3s1.343,3,3,3h22c1.657,0,3-1.343,3-3\r\n\t\t\t\tS44.657,53,43,53z"},"children":[]}]}]}]}]}]}]}]};exports.text_center=text_center;var text_justify={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"TEXT__x2F__JUSTIFY_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"TEXT__x2F__JUSTIFY"},"children":[{"name":"g","attribs":{"id":"TEXT__x2F__JUSTIFY"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M3,11h58c1.657,0,3-1.343,3-3s-1.343-3-3-3H3C1.343,5,0,6.343,0,8S1.343,11,3,11z M61,53H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h58c1.657,0,3-1.343,3-3S62.657,53,61,53z M61,21H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h58c1.657,0,3-1.343,3-3\r\n\t\t\t\tS62.657,21,61,21z M61,37H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h58c1.657,0,3-1.343,3-3S62.657,37,61,37z"},"children":[{"name":"path","attribs":{"d":"M3,11h58c1.657,0,3-1.343,3-3s-1.343-3-3-3H3C1.343,5,0,6.343,0,8S1.343,11,3,11z M61,53H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h58c1.657,0,3-1.343,3-3S62.657,53,61,53z M61,21H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h58c1.657,0,3-1.343,3-3\r\n\t\t\t\tS62.657,21,61,21z M61,37H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h58c1.657,0,3-1.343,3-3S62.657,37,61,37z"},"children":[]}]}]}]}]}]}]}]};exports.text_justify=text_justify;var text_left={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"TEXT__x2F__LEFT_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"TEXT__x2F__LEFT"},"children":[{"name":"g","attribs":{"id":"TEXT__x2F__LEFT"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M3,27h40c0,0,0,0,0.001,0H49c1.657,0,3-1.343,3-3s-1.343-3-3-3H3c-1.657,0-3,1.343-3,3S1.343,27,3,27z M3,11h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3s-1.343-3-3-3H3C1.343,5,0,6.343,0,8S1.343,11,3,11z M61,37H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3S62.657,37,61,37z M43,53H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h40c1.657,0,3-1.343,3-3S44.657,53,43,53z"},"children":[{"name":"path","attribs":{"d":"M3,27h40c0,0,0,0,0.001,0H49c1.657,0,3-1.343,3-3s-1.343-3-3-3H3c-1.657,0-3,1.343-3,3S1.343,27,3,27z M3,11h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3s-1.343-3-3-3H3C1.343,5,0,6.343,0,8S1.343,11,3,11z M61,37H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3S62.657,37,61,37z M43,53H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h40c1.657,0,3-1.343,3-3S44.657,53,43,53z"},"children":[]}]}]}]}]}]}]}]};exports.text_left=text_left;var text_right={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"TEXT__x2F__RIGHT_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"TEXT__x2F__RIGHT"},"children":[{"name":"g","attribs":{"id":"TEXT__x2F__RIGHT"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M61,53H21c-1.657,0-3,1.343-3,3s1.343,3,3,3h40c1.657,0,3-1.343,3-3S62.657,53,61,53z M3,11h58c1.657,0,3-1.343,3-3\r\n\t\t\t\ts-1.343-3-3-3H3C1.343,5,0,6.343,0,8S1.343,11,3,11z M61,37H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h58c1.657,0,3-1.343,3-3\r\n\t\t\t\tS62.657,37,61,37z M61,21H15c-1.657,0-3,1.343-3,3s1.343,3,3,3h5.999c0,0,0,0,0.001,0h40c1.657,0,3-1.343,3-3S62.657,21,61,21z"},"children":[{"name":"path","attribs":{"d":"M61,53H21c-1.657,0-3,1.343-3,3s1.343,3,3,3h40c1.657,0,3-1.343,3-3S62.657,53,61,53z M3,11h58c1.657,0,3-1.343,3-3\r\n\t\t\t\ts-1.343-3-3-3H3C1.343,5,0,6.343,0,8S1.343,11,3,11z M61,37H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h58c1.657,0,3-1.343,3-3\r\n\t\t\t\tS62.657,37,61,37z M61,21H15c-1.657,0-3,1.343-3,3s1.343,3,3,3h5.999c0,0,0,0,0.001,0h40c1.657,0,3-1.343,3-3S62.657,21,61,21z"},"children":[]}]}]}]}]}]}]}]};exports.text_right=text_right;var tick={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"TICK_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"TICK"},"children":[{"name":"g","attribs":{"id":"TICK"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M50,18c-0.828,0-1.578,0.336-2.121,0.879L27,39.757L16.121,28.879C15.578,28.336,14.828,28,14,28c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121l13,13C25.422,46.664,26.172,47,27,47s1.578-0.336,2.121-0.879l23-23\r\n\t\t\t\tC52.664,22.579,53,21.828,53,21C53,19.343,51.657,18,50,18z"},"children":[{"name":"path","attribs":{"d":"M50,18c-0.828,0-1.578,0.336-2.121,0.879L27,39.757L16.121,28.879C15.578,28.336,14.828,28,14,28c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121l13,13C25.422,46.664,26.172,47,27,47s1.578-0.336,2.121-0.879l23-23\r\n\t\t\t\tC52.664,22.579,53,21.828,53,21C53,19.343,51.657,18,50,18z"},"children":[]}]}]}]}]}]}]}]};exports.tick=tick;var time={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"TIME_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"TIME"},"children":[{"name":"g","attribs":{"id":"TIME"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M45,29H35V14c0-1.657-1.343-3-3-3s-3,1.343-3,3v18c0,1.657,1.343,3,3,3h13c1.657,0,3-1.343,3-3S46.657,29,45,29z M32,0\r\n\t\t\t\tC14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6\r\n\t\t\t\tc14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z"},"children":[{"name":"path","attribs":{"d":"M45,29H35V14c0-1.657-1.343-3-3-3s-3,1.343-3,3v18c0,1.657,1.343,3,3,3h13c1.657,0,3-1.343,3-3S46.657,29,45,29z M32,0\r\n\t\t\t\tC14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6\r\n\t\t\t\tc14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z"},"children":[]}]}]}]}]}]}]}]};exports.time=time;var timer={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"TIMER"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32.129,16l-5.534,21.23c0,0-2.594,8.77,5.391,8.77c0,0,8.015-0.125,5.479-8.685\r\n\t\t\tL32.129,16z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32\r\n\t\t\tC6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.36,46.36,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32.129,16l-5.534,21.23c0,0-2.594,8.77,5.391,8.77c0,0,8.015-0.125,5.479-8.685\r\n\t\t\tL32.129,16z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32\r\n\t\t\tC6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.36,46.36,58,32,58z"},"children":[]}]}]}]}]}]};exports.timer=timer;var tumblr={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"tumblr_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"tumblr"},"children":[{"name":"g","attribs":{"id":"tumblr"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M42.41,53.584c-1.816,0-3.424-0.428-4.834-1.275c-1.062-0.629-2.039-1.718-2.428-2.767\r\n\t\t\t\tc-0.392-1.049-0.344-3.19-0.344-6.905V26.215h14.729V14.788H34.807V-0.028h-9.062c-0.405,3.308-1.15,6.026-2.231,8.16\r\n\t\t\t\tc-1.08,2.142-2.508,3.973-4.3,5.502c-1.78,1.525-4.681,2.699-7.184,3.513v9.068h8.654V48.67c0,2.934,0.305,5.167,0.915,6.708\r\n\t\t\t\tc0.614,1.537,1.706,2.997,3.291,4.368c1.577,1.359,3.487,2.42,5.725,3.162c2.238,0.734,3.955,1.101,6.869,1.101\r\n\t\t\t\tc2.565,0,4.951-0.258,7.16-0.778c2.207-0.521,4.674-1.429,7.395-2.711V50.419C48.844,52.527,45.637,53.584,42.41,53.584z"},"children":[{"name":"path","attribs":{"d":"M42.41,53.584c-1.816,0-3.424-0.428-4.834-1.275c-1.062-0.629-2.039-1.718-2.428-2.767\r\n\t\t\t\tc-0.392-1.049-0.344-3.19-0.344-6.905V26.215h14.729V14.788H34.807V-0.028h-9.062c-0.405,3.308-1.15,6.026-2.231,8.16\r\n\t\t\t\tc-1.08,2.142-2.508,3.973-4.3,5.502c-1.78,1.525-4.681,2.699-7.184,3.513v9.068h8.654V48.67c0,2.934,0.305,5.167,0.915,6.708\r\n\t\t\t\tc0.614,1.537,1.706,2.997,3.291,4.368c1.577,1.359,3.487,2.42,5.725,3.162c2.238,0.734,3.955,1.101,6.869,1.101\r\n\t\t\t\tc2.565,0,4.951-0.258,7.16-0.778c2.207-0.521,4.674-1.429,7.395-2.711V50.419C48.844,52.527,45.637,53.584,42.41,53.584z"},"children":[]}]}]}]}]}]}]}]};exports.tumblr=tumblr;var twitter={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"twitter_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"twitter"},"children":[{"name":"g","attribs":{"id":"twitter"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M56.568,14.179v-0.032c0.558-0.218,0.998-0.68,1.441-1.022c2-1.541,3.301-3.57,4.26-6.164\r\n\t\t\t\tc-0.543,0.298-1.088,0.596-1.633,0.894c-1.681,0.853-4.533,2.079-6.728,2.267c-2.586-2.356-5.292-4.209-10.378-4.12\r\n\t\t\t\tc-0.534,0.064-1.068,0.128-1.602,0.192c-1.037,0.227-2.025,0.508-2.916,0.894c-3.724,1.616-6.263,4.631-7.431,8.814\r\n\t\t\t\tc-0.465,1.664-0.654,4.445-0.064,6.164c-2.101-0.003-4.135-0.334-5.894-0.767C18.69,19.594,14.372,17.29,9.578,13.54\r\n\t\t\t\tC8.17,12.439,6.789,11.191,5.67,9.804C5.309,9.357,4.74,8.965,4.485,8.43C4.463,8.42,4.442,8.409,4.421,8.398\r\n\t\t\t\tc-0.557,1.032-1.08,2.15-1.409,3.417c-1.3,4.994,0.755,9.188,2.947,11.912c0.664,0.826,1.741,1.338,2.402,2.108h0.064\r\n\t\t\t\tc-0.497,0.184-1.361-0.071-1.794-0.16c-1.024-0.211-1.897-0.405-2.755-0.766c-0.448-0.213-0.897-0.426-1.345-0.639\r\n\t\t\t\tc-0.021,5.517,2.766,9.103,6.182,11.241c1.114,0.697,2.672,1.636,4.292,1.724c-0.867,0.732-4.575,0.396-5.862,0.256\r\n\t\t\t\tc1.609,4.142,4.081,6.9,8.328,8.398c1.096,0.387,2.433,0.729,3.908,0.703c-0.783,0.93-2.454,1.688-3.556,2.331\r\n\t\t\t\tc-2.272,1.329-4.91,2.191-7.88,2.843c-1.191,0.26-2.457,0.207-3.748,0.414c-1.427,0.23-2.92-0.121-4.196-0.16\r\n\t\t\t\tc0.384,0.234,0.769,0.47,1.153,0.703c1.171,0.713,2.394,1.338,3.716,1.916c2.379,1.041,4.914,1.826,7.72,2.523\r\n\t\t\t\tc5.658,1.404,13.64,0.773,18.579-0.766c13.754-4.287,22.442-14.293,25.722-29.03c0.564-2.535,0.646-5.414,0.609-8.431\r\n\t\t\t\tc0.684-0.543,1.367-1.086,2.05-1.629c1.693-1.356,3.28-3.246,4.452-5.11v-0.032C61.768,12.864,59.418,14.149,56.568,14.179z"},"children":[{"name":"path","attribs":{"d":"M56.568,14.179v-0.032c0.558-0.218,0.998-0.68,1.441-1.022c2-1.541,3.301-3.57,4.26-6.164\r\n\t\t\t\tc-0.543,0.298-1.088,0.596-1.633,0.894c-1.681,0.853-4.533,2.079-6.728,2.267c-2.586-2.356-5.292-4.209-10.378-4.12\r\n\t\t\t\tc-0.534,0.064-1.068,0.128-1.602,0.192c-1.037,0.227-2.025,0.508-2.916,0.894c-3.724,1.616-6.263,4.631-7.431,8.814\r\n\t\t\t\tc-0.465,1.664-0.654,4.445-0.064,6.164c-2.101-0.003-4.135-0.334-5.894-0.767C18.69,19.594,14.372,17.29,9.578,13.54\r\n\t\t\t\tC8.17,12.439,6.789,11.191,5.67,9.804C5.309,9.357,4.74,8.965,4.485,8.43C4.463,8.42,4.442,8.409,4.421,8.398\r\n\t\t\t\tc-0.557,1.032-1.08,2.15-1.409,3.417c-1.3,4.994,0.755,9.188,2.947,11.912c0.664,0.826,1.741,1.338,2.402,2.108h0.064\r\n\t\t\t\tc-0.497,0.184-1.361-0.071-1.794-0.16c-1.024-0.211-1.897-0.405-2.755-0.766c-0.448-0.213-0.897-0.426-1.345-0.639\r\n\t\t\t\tc-0.021,5.517,2.766,9.103,6.182,11.241c1.114,0.697,2.672,1.636,4.292,1.724c-0.867,0.732-4.575,0.396-5.862,0.256\r\n\t\t\t\tc1.609,4.142,4.081,6.9,8.328,8.398c1.096,0.387,2.433,0.729,3.908,0.703c-0.783,0.93-2.454,1.688-3.556,2.331\r\n\t\t\t\tc-2.272,1.329-4.91,2.191-7.88,2.843c-1.191,0.26-2.457,0.207-3.748,0.414c-1.427,0.23-2.92-0.121-4.196-0.16\r\n\t\t\t\tc0.384,0.234,0.769,0.47,1.153,0.703c1.171,0.713,2.394,1.338,3.716,1.916c2.379,1.041,4.914,1.826,7.72,2.523\r\n\t\t\t\tc5.658,1.404,13.64,0.773,18.579-0.766c13.754-4.287,22.442-14.293,25.722-29.03c0.564-2.535,0.646-5.414,0.609-8.431\r\n\t\t\t\tc0.684-0.543,1.367-1.086,2.05-1.629c1.693-1.356,3.28-3.246,4.452-5.11v-0.032C61.768,12.864,59.418,14.149,56.568,14.179z"},"children":[]}]}]}]}]}]}]}]};exports.twitter=twitter;var unlock={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"UNLOCK_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"UNLOCK"},"children":[{"name":"g","attribs":{"id":"UNLOCK"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M55,32H20V18c0-6.627,5.373-12,12-12s12,5.373,12,12c0,1.657,1.343,3,3,3s3-1.343,3-3c0-9.941-8.059-18-18-18\r\n\t\t\t\tc-9.941,0-18,8.059-18,18v14H9c-1.657,0-3,1.343-3,3v26c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V35\r\n\t\t\t\tC58,33.343,56.657,32,55,32z M35,49.168V55c0,1.657-1.343,3-3,3s-3-1.343-3-3v-5.832c-1.786-1.039-3-2.953-3-5.168\r\n\t\t\t\tc0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6C38,46.215,36.786,48.129,35,49.168z"},"children":[{"name":"path","attribs":{"d":"M55,32H20V18c0-6.627,5.373-12,12-12s12,5.373,12,12c0,1.657,1.343,3,3,3s3-1.343,3-3c0-9.941-8.059-18-18-18\r\n\t\t\t\tc-9.941,0-18,8.059-18,18v14H9c-1.657,0-3,1.343-3,3v26c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V35\r\n\t\t\t\tC58,33.343,56.657,32,55,32z M35,49.168V55c0,1.657-1.343,3-3,3s-3-1.343-3-3v-5.832c-1.786-1.039-3-2.953-3-5.168\r\n\t\t\t\tc0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6C38,46.215,36.786,48.129,35,49.168z"},"children":[]}]}]}]}]}]}]}]};exports.unlock=unlock;var upload={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"UPLOAD_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"UPLOAD"},"children":[{"name":"g","attribs":{"id":"UPLOAD"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M23,24c0.885,0,1.681-0.384,2.23-0.993l0,0L29,18.818V37c0,1.657,1.343,3,3,3s3-1.343,3-3l0,0V18.818l3.77,4.189l0,0\r\n\t\t\t\tC39.318,23.617,40.115,24,41,24c1.657,0,3-1.343,3-3c0-0.772-0.292-1.475-0.77-2.007l0,0l-9-10l0,0C33.682,8.384,32.885,8,32,8\r\n\t\t\t\ts-1.681,0.384-2.23,0.993l0,0l-9,10l0,0C20.292,19.525,20,20.228,20,21C20,22.657,21.343,24,23,24z M55,35c-1.657,0-3,1.343-3,3\r\n\t\t\t\tv12H12V38c0-1.657-1.343-3-3-3s-3,1.343-3,3v15c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V38C58,36.343,56.657,35,55,35z"},"children":[{"name":"path","attribs":{"d":"M23,24c0.885,0,1.681-0.384,2.23-0.993l0,0L29,18.818V37c0,1.657,1.343,3,3,3s3-1.343,3-3l0,0V18.818l3.77,4.189l0,0\r\n\t\t\t\tC39.318,23.617,40.115,24,41,24c1.657,0,3-1.343,3-3c0-0.772-0.292-1.475-0.77-2.007l0,0l-9-10l0,0C33.682,8.384,32.885,8,32,8\r\n\t\t\t\ts-1.681,0.384-2.23,0.993l0,0l-9,10l0,0C20.292,19.525,20,20.228,20,21C20,22.657,21.343,24,23,24z M55,35c-1.657,0-3,1.343-3,3\r\n\t\t\t\tv12H12V38c0-1.657-1.343-3-3-3s-3,1.343-3,3v15c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V38C58,36.343,56.657,35,55,35z"},"children":[]}]}]}]}]}]}]}]};exports.upload=upload;var user={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"USER_2_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"USER_1_"},"children":[{"name":"g","attribs":{"id":"USER_1_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M64.001,59.993c0,0,0-10.933-7.987-14.906c-5.055-2.515-3.107-0.591-9.313-3.164c-6.205-2.569-7.675-3.409-7.675-3.409\r\n\t\t\t\tl-0.055-5.893c0,0,2.324-1.764,3.049-7.337c1.451,0.42,1.942-1.701,2.021-3.056c0.086-1.309,0.858-5.389-0.917-5.025\r\n\t\t\t\tc0.363-2.724,0.648-5.187,0.52-6.491c-0.444-4.576-3.608-9.355-11.595-9.704c-6.79,0.349-11.198,5.131-11.643,9.707\r\n\t\t\t\tc-0.128,1.304,0.133,3.765,0.496,6.494c-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062\r\n\t\t\t\tc0.722,5.574,3.046,7.351,3.046,7.351l-0.058,5.925c0,0-1.47,0.897-7.675,3.466c-6.205,2.574-4.259,0.533-9.314,3.047\r\n\t\t\t\tC0,49.062,0,59.993,0,59.993h0.002C0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.003-0.001-0.005-0.001-0.007H64.001z"},"children":[{"name":"path","attribs":{"d":"M64.001,59.993c0,0,0-10.933-7.987-14.906c-5.055-2.515-3.107-0.591-9.313-3.164c-6.205-2.569-7.675-3.409-7.675-3.409\r\n\t\t\t\tl-0.055-5.893c0,0,2.324-1.764,3.049-7.337c1.451,0.42,1.942-1.701,2.021-3.056c0.086-1.309,0.858-5.389-0.917-5.025\r\n\t\t\t\tc0.363-2.724,0.648-5.187,0.52-6.491c-0.444-4.576-3.608-9.355-11.595-9.704c-6.79,0.349-11.198,5.131-11.643,9.707\r\n\t\t\t\tc-0.128,1.304,0.133,3.765,0.496,6.494c-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062\r\n\t\t\t\tc0.722,5.574,3.046,7.351,3.046,7.351l-0.058,5.925c0,0-1.47,0.897-7.675,3.466c-6.205,2.574-4.259,0.533-9.314,3.047\r\n\t\t\t\tC0,49.062,0,59.993,0,59.993h0.002C0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.003-0.001-0.005-0.001-0.007H64.001z"},"children":[]}]}]}]}]}]}]}]};exports.user=user;var user_add={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"USER__x2F__ADD_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"USER__x2F__ADD"},"children":[{"name":"g","attribs":{"id":"USER__x2F__ADD"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M64.001,59.993c0,0-0.005-0.567-0.099-1.47C62.852,59.432,61.499,60,60,60c0,1.098-0.316,2.114-0.832,3H61\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.003-0.001-0.005-0.001-0.007H64.001z M42,54c0-3.314,2.686-6,6-6c0-1.952,0.945-3.668,2.389-4.764\r\n\t\t\t\tc-0.797-0.209-1.897-0.571-3.688-1.314c-6.205-2.57-7.675-3.408-7.675-3.408l-0.055-5.894c0,0,2.324-1.764,3.049-7.337\r\n\t\t\t\tc1.451,0.42,1.942-1.701,2.021-3.056c0.086-1.309,0.858-5.389-0.917-5.025c0.363-2.724,0.648-5.187,0.52-6.491\r\n\t\t\t\tc-0.444-4.576-3.608-9.355-11.595-9.704c-6.79,0.349-11.198,5.131-11.643,9.707c-0.128,1.304,0.133,3.765,0.496,6.494\r\n\t\t\t\tc-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.352,3.046,7.352l-0.058,5.924\r\n\t\t\t\tc0,0-1.47,0.896-7.675,3.466c-6.205,2.573-4.259,0.532-9.314,3.047C0,49.061,0,59.992,0,59.992h0.002C0.001,59.995,0,59.998,0,60\r\n\t\t\t\tc0,1.657,1.343,3,3,3h45.832C48.316,62.115,48,61.1,48,60C44.686,60,42,57.314,42,54z M63,54c0-1.657-1.343-3-3-3h-3v-3\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3s1.343,3,3,3h3v3c0,1.657,1.343,3,3,3s3-1.343,3-3v-3h3\r\n\t\t\t\tC61.657,57,63,55.657,63,54z"},"children":[{"name":"path","attribs":{"d":"M64.001,59.993c0,0-0.005-0.567-0.099-1.47C62.852,59.432,61.499,60,60,60c0,1.098-0.316,2.114-0.832,3H61\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.003-0.001-0.005-0.001-0.007H64.001z M42,54c0-3.314,2.686-6,6-6c0-1.952,0.945-3.668,2.389-4.764\r\n\t\t\t\tc-0.797-0.209-1.897-0.571-3.688-1.314c-6.205-2.57-7.675-3.408-7.675-3.408l-0.055-5.894c0,0,2.324-1.764,3.049-7.337\r\n\t\t\t\tc1.451,0.42,1.942-1.701,2.021-3.056c0.086-1.309,0.858-5.389-0.917-5.025c0.363-2.724,0.648-5.187,0.52-6.491\r\n\t\t\t\tc-0.444-4.576-3.608-9.355-11.595-9.704c-6.79,0.349-11.198,5.131-11.643,9.707c-0.128,1.304,0.133,3.765,0.496,6.494\r\n\t\t\t\tc-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.352,3.046,7.352l-0.058,5.924\r\n\t\t\t\tc0,0-1.47,0.896-7.675,3.466c-6.205,2.573-4.259,0.532-9.314,3.047C0,49.061,0,59.992,0,59.992h0.002C0.001,59.995,0,59.998,0,60\r\n\t\t\t\tc0,1.657,1.343,3,3,3h45.832C48.316,62.115,48,61.1,48,60C44.686,60,42,57.314,42,54z M63,54c0-1.657-1.343-3-3-3h-3v-3\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3s1.343,3,3,3h3v3c0,1.657,1.343,3,3,3s3-1.343,3-3v-3h3\r\n\t\t\t\tC61.657,57,63,55.657,63,54z"},"children":[]}]}]}]}]}]}]}]};exports.user_add=user_add;var user_circle={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"USER_3_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"USER"},"children":[{"name":"g","attribs":{"id":"USER"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M51.253,49.43\r\n\t\t\t\tc-3.767-1.826-2.382-0.398-7.31-2.427c-5.041-2.073-6.235-2.749-6.235-2.749L37.664,39.5c0,0,1.888-1.422,2.477-5.917\r\n\t\t\t\tc1.178,0.338,1.578-1.372,1.642-2.464c0.069-1.055,0.696-4.346-0.745-4.052c0.295-2.197,0.527-4.183,0.421-5.235\r\n\t\t\t\tc-0.36-3.691-2.931-7.544-9.42-7.826c-5.517,0.282-9.098,4.138-9.46,7.829c-0.104,1.052,0.108,3.036,0.403,5.236\r\n\t\t\t\tc-1.441-0.297-0.821,2.999-0.758,4.054c0.07,1.092,0.46,2.809,1.641,2.469c0.587,4.495,2.475,5.93,2.475,5.93L26.293,44.3\r\n\t\t\t\tc0,0-1.195,0.724-6.236,2.796c-4.927,2.027-3.544,0.512-7.31,2.334C8.568,44.816,6,38.715,6,32C6,17.641,17.641,6,32,6\r\n\t\t\t\tc14.359,0,26,11.641,26,26C58,38.716,55.432,44.816,51.253,49.43z"},"children":[{"name":"path","attribs":{"d":"M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M51.253,49.43\r\n\t\t\t\tc-3.767-1.826-2.382-0.398-7.31-2.427c-5.041-2.073-6.235-2.749-6.235-2.749L37.664,39.5c0,0,1.888-1.422,2.477-5.917\r\n\t\t\t\tc1.178,0.338,1.578-1.372,1.642-2.464c0.069-1.055,0.696-4.346-0.745-4.052c0.295-2.197,0.527-4.183,0.421-5.235\r\n\t\t\t\tc-0.36-3.691-2.931-7.544-9.42-7.826c-5.517,0.282-9.098,4.138-9.46,7.829c-0.104,1.052,0.108,3.036,0.403,5.236\r\n\t\t\t\tc-1.441-0.297-0.821,2.999-0.758,4.054c0.07,1.092,0.46,2.809,1.641,2.469c0.587,4.495,2.475,5.93,2.475,5.93L26.293,44.3\r\n\t\t\t\tc0,0-1.195,0.724-6.236,2.796c-4.927,2.027-3.544,0.512-7.31,2.334C8.568,44.816,6,38.715,6,32C6,17.641,17.641,6,32,6\r\n\t\t\t\tc14.359,0,26,11.641,26,26C58,38.716,55.432,44.816,51.253,49.43z"},"children":[]}]}]}]}]}]}]}]};exports.user_circle=user_circle;var user_delete={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"USER__x2F__DELETE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"USER__x2F__DELETE"},"children":[{"name":"g","attribs":{"id":"USER__x2F__DELETE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M46.516,54l-1.758-1.757l0.016-0.017C43.682,51.146,43,49.659,43,48c0-2.775,1.895-5.088,4.454-5.773\r\n\t\t\t\tc-0.243-0.097-0.481-0.191-0.754-0.305c-6.205-2.57-7.675-3.408-7.675-3.408l-0.055-5.894c0,0,2.323-1.764,3.049-7.337\r\n\t\t\t\tc1.449,0.42,1.941-1.701,2.02-3.056c0.086-1.309,0.857-5.389-0.917-5.025c0.362-2.724,0.647-5.187,0.519-6.491\r\n\t\t\t\tc-0.443-4.576-3.607-9.355-11.594-9.704c-6.79,0.349-11.198,5.131-11.643,9.707c-0.128,1.304,0.133,3.765,0.496,6.494\r\n\t\t\t\tc-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.352,3.046,7.352l-0.058,5.924\r\n\t\t\t\tc0,0-1.47,0.896-7.675,3.466c-6.205,2.573-4.259,0.532-9.314,3.047c-7.988,3.976-7.988,14.907-7.988,14.907h0.002\r\n\t\t\t\tC0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h40.832C43.316,62.115,43,61.1,43,60c0-1.657,0.672-3.157,1.757-4.243L46.516,54\r\n\t\t\t\tz M59.243,54l3.879-3.878C63.664,49.578,64,48.828,64,48c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L55,49.758\r\n\t\t\t\tl-3.879-3.879C50.578,45.336,49.828,45,49,45c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L50.757,54l-3.879,3.879\r\n\t\t\t\tC46.336,58.422,46,59.172,46,60c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L55,58.243l3.879,3.879\r\n\t\t\t\tC59.422,62.664,60.172,63,61,63c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L59.243,54z"},"children":[{"name":"path","attribs":{"d":"M46.516,54l-1.758-1.757l0.016-0.017C43.682,51.146,43,49.659,43,48c0-2.775,1.895-5.088,4.454-5.773\r\n\t\t\t\tc-0.243-0.097-0.481-0.191-0.754-0.305c-6.205-2.57-7.675-3.408-7.675-3.408l-0.055-5.894c0,0,2.323-1.764,3.049-7.337\r\n\t\t\t\tc1.449,0.42,1.941-1.701,2.02-3.056c0.086-1.309,0.857-5.389-0.917-5.025c0.362-2.724,0.647-5.187,0.519-6.491\r\n\t\t\t\tc-0.443-4.576-3.607-9.355-11.594-9.704c-6.79,0.349-11.198,5.131-11.643,9.707c-0.128,1.304,0.133,3.765,0.496,6.494\r\n\t\t\t\tc-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.352,3.046,7.352l-0.058,5.924\r\n\t\t\t\tc0,0-1.47,0.896-7.675,3.466c-6.205,2.573-4.259,0.532-9.314,3.047c-7.988,3.976-7.988,14.907-7.988,14.907h0.002\r\n\t\t\t\tC0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h40.832C43.316,62.115,43,61.1,43,60c0-1.657,0.672-3.157,1.757-4.243L46.516,54\r\n\t\t\t\tz M59.243,54l3.879-3.878C63.664,49.578,64,48.828,64,48c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L55,49.758\r\n\t\t\t\tl-3.879-3.879C50.578,45.336,49.828,45,49,45c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L50.757,54l-3.879,3.879\r\n\t\t\t\tC46.336,58.422,46,59.172,46,60c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L55,58.243l3.879,3.879\r\n\t\t\t\tC59.422,62.664,60.172,63,61,63c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L59.243,54z"},"children":[]}]}]}]}]}]}]}]};exports.user_delete=user_delete;var user_ok={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"USER__x2F__OK_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"USER__x2F__OK"},"children":[{"name":"g","attribs":{"id":"USER__x2F__OK"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M44.757,58.243C43.672,57.157,43,55.657,43,54c0-3.314,2.686-6,6-6c1.533,0,2.916,0.592,3.977,1.538l3.781-3.781\r\n\t\t\t\tc0.047-0.046,0.104-0.08,0.15-0.124c-0.299-0.183-0.57-0.386-0.895-0.547c-5.055-2.516-3.107-0.591-9.313-3.164\r\n\t\t\t\tc-6.205-2.57-7.675-3.408-7.675-3.408l-0.055-5.894c0,0,2.323-1.764,3.049-7.337c1.449,0.42,1.94-1.701,2.02-3.056\r\n\t\t\t\tc0.086-1.309,0.857-5.389-0.917-5.025c0.362-2.724,0.647-5.187,0.519-6.491c-0.442-4.576-3.606-9.355-11.594-9.704\r\n\t\t\t\tc-6.79,0.349-11.198,5.131-11.643,9.707c-0.128,1.304,0.133,3.765,0.496,6.494c-1.774-0.369-1.01,3.719-0.932,5.027\r\n\t\t\t\tc0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.352,3.046,7.352l-0.058,5.924c0,0-1.47,0.896-7.675,3.466\r\n\t\t\t\tc-6.205,2.573-4.259,0.532-9.314,3.047c-7.988,3.976-7.988,14.907-7.988,14.907h0.002C0.001,59.995,0,59.998,0,60\r\n\t\t\t\tc0,1.657,1.343,3,3,3h46.691c-0.336-0.223-0.65-0.475-0.934-0.757L44.757,58.243z M64.001,59.993c0,0-0.008-1.709-0.498-4.011\r\n\t\t\t\tl-6.261,6.261c-0.284,0.282-0.598,0.534-0.934,0.757H61c1.657,0,3-1.343,3-3c0-0.003-0.001-0.005-0.001-0.007H64.001z M64,50\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L53,53.757l-1.879-1.879C50.578,51.336,49.828,51,49,51\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.829,0.336,1.578,0.879,2.121l4,4C51.422,60.664,52.172,61,53,61s1.578-0.336,2.121-0.879l8-8\r\n\t\t\t\tC63.664,51.579,64,50.828,64,50z"},"children":[{"name":"path","attribs":{"d":"M44.757,58.243C43.672,57.157,43,55.657,43,54c0-3.314,2.686-6,6-6c1.533,0,2.916,0.592,3.977,1.538l3.781-3.781\r\n\t\t\t\tc0.047-0.046,0.104-0.08,0.15-0.124c-0.299-0.183-0.57-0.386-0.895-0.547c-5.055-2.516-3.107-0.591-9.313-3.164\r\n\t\t\t\tc-6.205-2.57-7.675-3.408-7.675-3.408l-0.055-5.894c0,0,2.323-1.764,3.049-7.337c1.449,0.42,1.94-1.701,2.02-3.056\r\n\t\t\t\tc0.086-1.309,0.857-5.389-0.917-5.025c0.362-2.724,0.647-5.187,0.519-6.491c-0.442-4.576-3.606-9.355-11.594-9.704\r\n\t\t\t\tc-6.79,0.349-11.198,5.131-11.643,9.707c-0.128,1.304,0.133,3.765,0.496,6.494c-1.774-0.369-1.01,3.719-0.932,5.027\r\n\t\t\t\tc0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.352,3.046,7.352l-0.058,5.924c0,0-1.47,0.896-7.675,3.466\r\n\t\t\t\tc-6.205,2.573-4.259,0.532-9.314,3.047c-7.988,3.976-7.988,14.907-7.988,14.907h0.002C0.001,59.995,0,59.998,0,60\r\n\t\t\t\tc0,1.657,1.343,3,3,3h46.691c-0.336-0.223-0.65-0.475-0.934-0.757L44.757,58.243z M64.001,59.993c0,0-0.008-1.709-0.498-4.011\r\n\t\t\t\tl-6.261,6.261c-0.284,0.282-0.598,0.534-0.934,0.757H61c1.657,0,3-1.343,3-3c0-0.003-0.001-0.005-0.001-0.007H64.001z M64,50\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L53,53.757l-1.879-1.879C50.578,51.336,49.828,51,49,51\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.829,0.336,1.578,0.879,2.121l4,4C51.422,60.664,52.172,61,53,61s1.578-0.336,2.121-0.879l8-8\r\n\t\t\t\tC63.664,51.579,64,50.828,64,50z"},"children":[]}]}]}]}]}]}]}]};exports.user_ok=user_ok;var user_remove={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"USER__x2F__REMOVE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"USER__x2F__REMOVE"},"children":[{"name":"g","attribs":{"id":"USER__x2F__REMOVE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M45,54c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3s-1.343-3-3-3H48C46.343,51,45,52.343,45,54z M64.001,59.993\r\n\t\t\t\tc0,0-0.005-0.571-0.097-1.472C62.854,59.43,61.5,60,60,60H48c-3.314,0-6-2.686-6-6s2.686-6,6-6h11.764\r\n\t\t\t\tc-0.998-1.141-2.226-2.154-3.75-2.913c-5.055-2.515-3.107-0.591-9.313-3.164c-6.205-2.569-7.675-3.409-7.675-3.409l-0.055-5.893\r\n\t\t\t\tc0,0,2.324-1.764,3.049-7.337c1.451,0.42,1.942-1.701,2.021-3.056c0.086-1.309,0.858-5.389-0.917-5.025\r\n\t\t\t\tc0.363-2.724,0.648-5.187,0.52-6.491c-0.443-4.576-3.608-9.355-11.595-9.704c-6.79,0.349-11.198,5.131-11.643,9.707\r\n\t\t\t\tc-0.128,1.304,0.133,3.765,0.496,6.494c-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062\r\n\t\t\t\tc0.722,5.574,3.046,7.351,3.046,7.351l-0.058,5.925c0,0-1.47,0.897-7.675,3.466c-6.205,2.574-4.259,0.533-9.314,3.047\r\n\t\t\t\tC0,49.062,0,59.993,0,59.993h0.002C0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.003-0.001-0.005-0.001-0.007H64.001z"},"children":[{"name":"path","attribs":{"d":"M45,54c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3s-1.343-3-3-3H48C46.343,51,45,52.343,45,54z M64.001,59.993\r\n\t\t\t\tc0,0-0.005-0.571-0.097-1.472C62.854,59.43,61.5,60,60,60H48c-3.314,0-6-2.686-6-6s2.686-6,6-6h11.764\r\n\t\t\t\tc-0.998-1.141-2.226-2.154-3.75-2.913c-5.055-2.515-3.107-0.591-9.313-3.164c-6.205-2.569-7.675-3.409-7.675-3.409l-0.055-5.893\r\n\t\t\t\tc0,0,2.324-1.764,3.049-7.337c1.451,0.42,1.942-1.701,2.021-3.056c0.086-1.309,0.858-5.389-0.917-5.025\r\n\t\t\t\tc0.363-2.724,0.648-5.187,0.52-6.491c-0.443-4.576-3.608-9.355-11.595-9.704c-6.79,0.349-11.198,5.131-11.643,9.707\r\n\t\t\t\tc-0.128,1.304,0.133,3.765,0.496,6.494c-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062\r\n\t\t\t\tc0.722,5.574,3.046,7.351,3.046,7.351l-0.058,5.925c0,0-1.47,0.897-7.675,3.466c-6.205,2.574-4.259,0.533-9.314,3.047\r\n\t\t\t\tC0,49.062,0,59.993,0,59.993h0.002C0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.003-0.001-0.005-0.001-0.007H64.001z"},"children":[]}]}]}]}]}]}]}]};exports.user_remove=user_remove;var user_square={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"USER"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3\r\n\t\t\tC64,1.343,62.657,0,61,0z M58,56.843c-0.888-2.64-2.564-5.557-5.739-7.157c-4.265-2.15-2.623-0.505-7.858-2.705\r\n\t\t\tc-5.235-2.197-6.475-2.915-6.475-2.915l-0.046-5.039c0,0,1.961-1.508,2.573-6.273c1.224,0.359,1.638-1.454,1.704-2.612\r\n\t\t\tc0.073-1.119,0.724-4.607-0.774-4.296c0.306-2.329,0.547-4.434,0.438-5.549c-0.374-3.912-3.044-7.998-9.782-8.296\r\n\t\t\tc-5.729,0.299-9.448,4.386-9.823,8.299c-0.108,1.115,0.112,3.218,0.418,5.551c-1.497-0.315-0.852,3.179-0.787,4.297\r\n\t\t\tc0.072,1.158,0.477,2.977,1.705,2.618c0.609,4.765,2.57,6.285,2.57,6.285l-0.049,5.065c0,0-1.24,0.767-6.476,2.963\r\n\t\t\tc-5.235,2.201-3.594,0.455-7.858,2.605C8.565,51.285,6.888,54.203,6,56.843V6h52V56.843z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3\r\n\t\t\tC64,1.343,62.657,0,61,0z M58,56.843c-0.888-2.64-2.564-5.557-5.739-7.157c-4.265-2.15-2.623-0.505-7.858-2.705\r\n\t\t\tc-5.235-2.197-6.475-2.915-6.475-2.915l-0.046-5.039c0,0,1.961-1.508,2.573-6.273c1.224,0.359,1.638-1.454,1.704-2.612\r\n\t\t\tc0.073-1.119,0.724-4.607-0.774-4.296c0.306-2.329,0.547-4.434,0.438-5.549c-0.374-3.912-3.044-7.998-9.782-8.296\r\n\t\t\tc-5.729,0.299-9.448,4.386-9.823,8.299c-0.108,1.115,0.112,3.218,0.418,5.551c-1.497-0.315-0.852,3.179-0.787,4.297\r\n\t\t\tc0.072,1.158,0.477,2.977,1.705,2.618c0.609,4.765,2.57,6.285,2.57,6.285l-0.049,5.065c0,0-1.24,0.767-6.476,2.963\r\n\t\t\tc-5.235,2.201-3.594,0.455-7.858,2.605C8.565,51.285,6.888,54.203,6,56.843V6h52V56.843z"},"children":[]}]}]}]}]}]};exports.user_square=user_square;var users={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"USERS_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"USERS"},"children":[{"name":"g","attribs":{"id":"USERS"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M40.837,41.984c-3.685-1.828-2.267-0.43-6.79-2.299c-4.524-1.867-5.595-2.478-5.595-2.478l-0.04-4.282\r\n\t\t\t\tc0,0,1.694-1.282,2.223-5.332c1.057,0.305,1.416-1.236,1.473-2.22c0.063-0.951,0.626-3.916-0.669-3.651\r\n\t\t\t\tc0.265-1.979,0.472-3.769,0.378-4.716c-0.323-3.325-2.63-6.798-8.453-7.051c-4.95,0.254-8.164,3.728-8.488,7.054\r\n\t\t\t\tc-0.093,0.947,0.097,2.735,0.361,4.718c-1.293-0.268-0.737,2.702-0.68,3.652c0.062,0.984,0.412,2.53,1.473,2.225\r\n\t\t\t\tc0.526,4.05,2.221,5.342,2.221,5.342l-0.042,4.304c0,0-1.072,0.651-5.596,2.519c-4.524,1.871-3.105,0.388-6.79,2.215\r\n\t\t\t\tc-5.824,2.889-5.824,10.832-5.824,10.832h0.002c0,0-0.001,0.002-0.001,0.004C0,54.023,0.979,55,2.187,55h42.286\r\n\t\t\t\tc1.207,0,2.187-0.977,2.187-2.18c0-0.002,0-0.004,0-0.006h0.001C46.66,52.814,46.66,44.872,40.837,41.984z M63.9,53.012\r\n\t\t\t\tc0,0,0-7.226-5.297-9.854c-3.354-1.663-2.062-0.391-6.179-2.092c-4.116-1.699-5.09-2.254-5.09-2.254l-0.036-3.896\r\n\t\t\t\tc0,0,1.541-1.166,2.021-4.85c0.963,0.277,1.289-1.124,1.341-2.02c0.057-0.865,0.569-3.562-0.608-3.322\r\n\t\t\t\tc0.241-1.801,0.43-3.429,0.344-4.291c-0.293-3.025-2.393-6.184-7.689-6.415c-4.504,0.231-7.428,3.392-7.723,6.417\r\n\t\t\t\tc-0.084,0.862,0.089,2.489,0.33,4.293c-1.178-0.244-0.67,2.458-0.619,3.323c0.058,0.896,0.375,2.302,1.341,2.024\r\n\t\t\t\tc0.479,3.685,2.021,4.86,2.021,4.86l-0.039,3.901c1.4,0.331,1.588,0.063,4.41,1.464c6.604,3.275,6.604,12.282,6.604,12.282\r\n\t\t\t\th-0.002c0,0.002,0,0.004,0,0.006c0,1.181-0.831,2.165-1.942,2.41H61.91c1.099,0,1.99-0.888,1.99-1.983\r\n\t\t\t\tC63.9,53.014,63.9,53.014,63.9,53.012L63.9,53.012L63.9,53.012z"},"children":[{"name":"path","attribs":{"d":"M40.837,41.984c-3.685-1.828-2.267-0.43-6.79-2.299c-4.524-1.867-5.595-2.478-5.595-2.478l-0.04-4.282\r\n\t\t\t\tc0,0,1.694-1.282,2.223-5.332c1.057,0.305,1.416-1.236,1.473-2.22c0.063-0.951,0.626-3.916-0.669-3.651\r\n\t\t\t\tc0.265-1.979,0.472-3.769,0.378-4.716c-0.323-3.325-2.63-6.798-8.453-7.051c-4.95,0.254-8.164,3.728-8.488,7.054\r\n\t\t\t\tc-0.093,0.947,0.097,2.735,0.361,4.718c-1.293-0.268-0.737,2.702-0.68,3.652c0.062,0.984,0.412,2.53,1.473,2.225\r\n\t\t\t\tc0.526,4.05,2.221,5.342,2.221,5.342l-0.042,4.304c0,0-1.072,0.651-5.596,2.519c-4.524,1.871-3.105,0.388-6.79,2.215\r\n\t\t\t\tc-5.824,2.889-5.824,10.832-5.824,10.832h0.002c0,0-0.001,0.002-0.001,0.004C0,54.023,0.979,55,2.187,55h42.286\r\n\t\t\t\tc1.207,0,2.187-0.977,2.187-2.18c0-0.002,0-0.004,0-0.006h0.001C46.66,52.814,46.66,44.872,40.837,41.984z M63.9,53.012\r\n\t\t\t\tc0,0,0-7.226-5.297-9.854c-3.354-1.663-2.062-0.391-6.179-2.092c-4.116-1.699-5.09-2.254-5.09-2.254l-0.036-3.896\r\n\t\t\t\tc0,0,1.541-1.166,2.021-4.85c0.963,0.277,1.289-1.124,1.341-2.02c0.057-0.865,0.569-3.562-0.608-3.322\r\n\t\t\t\tc0.241-1.801,0.43-3.429,0.344-4.291c-0.293-3.025-2.393-6.184-7.689-6.415c-4.504,0.231-7.428,3.392-7.723,6.417\r\n\t\t\t\tc-0.084,0.862,0.089,2.489,0.33,4.293c-1.178-0.244-0.67,2.458-0.619,3.323c0.058,0.896,0.375,2.302,1.341,2.024\r\n\t\t\t\tc0.479,3.685,2.021,4.86,2.021,4.86l-0.039,3.901c1.4,0.331,1.588,0.063,4.41,1.464c6.604,3.275,6.604,12.282,6.604,12.282\r\n\t\t\t\th-0.002c0,0.002,0,0.004,0,0.006c0,1.181-0.831,2.165-1.942,2.41H61.91c1.099,0,1.99-0.888,1.99-1.983\r\n\t\t\t\tC63.9,53.014,63.9,53.014,63.9,53.012L63.9,53.012L63.9,53.012z"},"children":[]}]}]}]}]}]}]}]};exports.users=users;var view={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"VIEW_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"VIEW"},"children":[{"name":"g","attribs":{"id":"VIEW"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M32,26c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6c3.314,0,6-2.686,6-6C38,28.686,35.314,26,32,26z M63.997,32.379\r\n\t\t\t\tc-0.001-0.028-0.004-0.054-0.006-0.081c-0.001-0.014-0.003-0.028-0.005-0.041c0-0.02-0.004-0.039-0.008-0.058\r\n\t\t\t\tc-0.002-0.023-0.004-0.046-0.008-0.068c-0.002-0.003-0.002-0.006-0.002-0.009c-0.078-0.506-0.312-0.981-0.669-1.346\r\n\t\t\t\tc-2.042-2.476-4.471-4.68-6.94-6.692c-5.318-4.337-11.402-7.964-18.116-9.425c-3.882-0.844-7.786-0.879-11.688-0.165\r\n\t\t\t\tc-3.549,0.649-6.969,2-10.17,3.674c-5.011,2.62-9.587,6.231-13.574,10.28c-0.738,0.749-1.472,1.514-2.143,2.328\r\n\t\t\t\tc-0.893,1.083-0.893,2.367,0,3.451c2.042,2.476,4.47,4.678,6.94,6.691c5.32,4.337,11.403,7.963,18.118,9.424\r\n\t\t\t\tc3.881,0.844,7.788,0.881,11.688,0.166c3.548-0.65,6.968-2,10.171-3.673c5.011-2.621,9.586-6.231,13.574-10.28\r\n\t\t\t\tc0.737-0.75,1.471-1.514,2.143-2.328c0.357-0.367,0.591-0.84,0.669-1.348c0-0.003,0.002-0.006,0.002-0.008\r\n\t\t\t\tc0.004-0.023,0.006-0.045,0.008-0.068c0.004-0.019,0.006-0.039,0.008-0.058c0.002-0.015,0.003-0.027,0.005-0.041\r\n\t\t\t\tc0.002-0.026,0.004-0.052,0.006-0.08c0.002-0.041,0.003-0.081,0.003-0.122C64.001,32.459,63.998,32.419,63.997,32.379z M32,44\r\n\t\t\t\tc-6.627,0-12-5.372-12-12s5.372-12,12-12s12,5.373,12,12C44,38.628,38.627,44,32,44z"},"children":[{"name":"path","attribs":{"d":"M32,26c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6c3.314,0,6-2.686,6-6C38,28.686,35.314,26,32,26z M63.997,32.379\r\n\t\t\t\tc-0.001-0.028-0.004-0.054-0.006-0.081c-0.001-0.014-0.003-0.028-0.005-0.041c0-0.02-0.004-0.039-0.008-0.058\r\n\t\t\t\tc-0.002-0.023-0.004-0.046-0.008-0.068c-0.002-0.003-0.002-0.006-0.002-0.009c-0.078-0.506-0.312-0.981-0.669-1.346\r\n\t\t\t\tc-2.042-2.476-4.471-4.68-6.94-6.692c-5.318-4.337-11.402-7.964-18.116-9.425c-3.882-0.844-7.786-0.879-11.688-0.165\r\n\t\t\t\tc-3.549,0.649-6.969,2-10.17,3.674c-5.011,2.62-9.587,6.231-13.574,10.28c-0.738,0.749-1.472,1.514-2.143,2.328\r\n\t\t\t\tc-0.893,1.083-0.893,2.367,0,3.451c2.042,2.476,4.47,4.678,6.94,6.691c5.32,4.337,11.403,7.963,18.118,9.424\r\n\t\t\t\tc3.881,0.844,7.788,0.881,11.688,0.166c3.548-0.65,6.968-2,10.171-3.673c5.011-2.621,9.586-6.231,13.574-10.28\r\n\t\t\t\tc0.737-0.75,1.471-1.514,2.143-2.328c0.357-0.367,0.591-0.84,0.669-1.348c0-0.003,0.002-0.006,0.002-0.008\r\n\t\t\t\tc0.004-0.023,0.006-0.045,0.008-0.068c0.004-0.019,0.006-0.039,0.008-0.058c0.002-0.015,0.003-0.027,0.005-0.041\r\n\t\t\t\tc0.002-0.026,0.004-0.052,0.006-0.08c0.002-0.041,0.003-0.081,0.003-0.122C64.001,32.459,63.998,32.419,63.997,32.379z M32,44\r\n\t\t\t\tc-6.627,0-12-5.372-12-12s5.372-12,12-12s12,5.373,12,12C44,38.628,38.627,44,32,44z"},"children":[]}]}]}]}]}]}]}]};exports.view=view;var view_off={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"VIEW__x2F__OFF_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"VIEW__x2F__OFF"},"children":[{"name":"g","attribs":{"id":"VIEW__x2F__OFF"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M26.044,31.304l7.604-5.069C33.124,26.085,32.572,26,32,26C28.922,26,26.389,28.319,26.044,31.304z M58.32,16.755\r\n\t\t\t\tC58.729,16.487,59,16.025,59,15.5c0-0.828-0.672-1.5-1.5-1.5c-0.303,0-0.585,0.091-0.82,0.245v-0.001l-0.018,0.012L4.679,48.245\r\n\t\t\t\tl0,0C4.271,48.514,4,48.975,4,49.5C4,50.328,4.672,51,5.5,51c0.303,0,0.585-0.091,0.82-0.245v0.001l0.018-0.012L58.32,16.755\r\n\t\t\t\tL58.32,16.755z M9.455,42.364L10,42l10.409-6.939C20.151,34.082,20,33.061,20,32c0-6.628,5.373-12,12-12\r\n\t\t\t\tc2.742,0,5.262,0.93,7.283,2.478L46,18l0.552-0.345c-2.647-1.317-5.415-2.367-8.308-2.996c-3.881-0.844-7.786-0.879-11.687-0.165\r\n\t\t\t\tc-3.549,0.649-6.969,2-10.17,3.674c-5.011,2.62-9.586,6.231-13.574,10.28c-0.738,0.749-1.472,1.514-2.143,2.328\r\n\t\t\t\tc-0.893,1.083-0.893,2.367,0,3.451c2.042,2.476,4.47,4.678,6.94,6.691C8.214,41.41,8.831,41.891,9.455,42.364z M63.997,32.379\r\n\t\t\t\tc-0.001-0.028-0.004-0.054-0.006-0.081c-0.001-0.014-0.003-0.028-0.005-0.041c0-0.02-0.004-0.039-0.008-0.058\r\n\t\t\t\tc-0.002-0.023-0.004-0.046-0.008-0.068c-0.002-0.003-0.002-0.006-0.002-0.009c-0.078-0.506-0.312-0.981-0.669-1.346\r\n\t\t\t\tc-2.042-2.476-4.471-4.68-6.94-6.692c-0.676-0.552-1.366-1.092-2.068-1.618l-10.576,6.958C43.898,30.255,44,31.115,44,32\r\n\t\t\t\tc0,6.627-5.373,12-12,12c-2.615,0-5.026-0.846-6.997-2.266L17,47l-0.09,0.09c2.8,1.439,5.739,2.581,8.818,3.25\r\n\t\t\t\tc3.881,0.844,7.788,0.881,11.688,0.166c3.548-0.65,6.968-2,10.171-3.673c5.011-2.621,9.586-6.231,13.574-10.28\r\n\t\t\t\tc0.737-0.75,1.471-1.514,2.144-2.328c0.356-0.367,0.59-0.841,0.668-1.348c0-0.003,0.002-0.006,0.002-0.008\r\n\t\t\t\tc0.004-0.023,0.006-0.045,0.008-0.068c0.004-0.019,0.006-0.039,0.009-0.058c0.001-0.015,0.003-0.027,0.004-0.041\r\n\t\t\t\tc0.002-0.026,0.004-0.052,0.006-0.08c0.002-0.041,0.003-0.081,0.003-0.122C64.001,32.459,63.998,32.419,63.997,32.379z\r\n\t\t\t\t M37.861,33.275l-7.01,4.613C31.223,37.96,31.607,38,32,38C34.876,38,37.275,35.977,37.861,33.275z"},"children":[{"name":"path","attribs":{"d":"M26.044,31.304l7.604-5.069C33.124,26.085,32.572,26,32,26C28.922,26,26.389,28.319,26.044,31.304z M58.32,16.755\r\n\t\t\t\tC58.729,16.487,59,16.025,59,15.5c0-0.828-0.672-1.5-1.5-1.5c-0.303,0-0.585,0.091-0.82,0.245v-0.001l-0.018,0.012L4.679,48.245\r\n\t\t\t\tl0,0C4.271,48.514,4,48.975,4,49.5C4,50.328,4.672,51,5.5,51c0.303,0,0.585-0.091,0.82-0.245v0.001l0.018-0.012L58.32,16.755\r\n\t\t\t\tL58.32,16.755z M9.455,42.364L10,42l10.409-6.939C20.151,34.082,20,33.061,20,32c0-6.628,5.373-12,12-12\r\n\t\t\t\tc2.742,0,5.262,0.93,7.283,2.478L46,18l0.552-0.345c-2.647-1.317-5.415-2.367-8.308-2.996c-3.881-0.844-7.786-0.879-11.687-0.165\r\n\t\t\t\tc-3.549,0.649-6.969,2-10.17,3.674c-5.011,2.62-9.586,6.231-13.574,10.28c-0.738,0.749-1.472,1.514-2.143,2.328\r\n\t\t\t\tc-0.893,1.083-0.893,2.367,0,3.451c2.042,2.476,4.47,4.678,6.94,6.691C8.214,41.41,8.831,41.891,9.455,42.364z M63.997,32.379\r\n\t\t\t\tc-0.001-0.028-0.004-0.054-0.006-0.081c-0.001-0.014-0.003-0.028-0.005-0.041c0-0.02-0.004-0.039-0.008-0.058\r\n\t\t\t\tc-0.002-0.023-0.004-0.046-0.008-0.068c-0.002-0.003-0.002-0.006-0.002-0.009c-0.078-0.506-0.312-0.981-0.669-1.346\r\n\t\t\t\tc-2.042-2.476-4.471-4.68-6.94-6.692c-0.676-0.552-1.366-1.092-2.068-1.618l-10.576,6.958C43.898,30.255,44,31.115,44,32\r\n\t\t\t\tc0,6.627-5.373,12-12,12c-2.615,0-5.026-0.846-6.997-2.266L17,47l-0.09,0.09c2.8,1.439,5.739,2.581,8.818,3.25\r\n\t\t\t\tc3.881,0.844,7.788,0.881,11.688,0.166c3.548-0.65,6.968-2,10.171-3.673c5.011-2.621,9.586-6.231,13.574-10.28\r\n\t\t\t\tc0.737-0.75,1.471-1.514,2.144-2.328c0.356-0.367,0.59-0.841,0.668-1.348c0-0.003,0.002-0.006,0.002-0.008\r\n\t\t\t\tc0.004-0.023,0.006-0.045,0.008-0.068c0.004-0.019,0.006-0.039,0.009-0.058c0.001-0.015,0.003-0.027,0.004-0.041\r\n\t\t\t\tc0.002-0.026,0.004-0.052,0.006-0.08c0.002-0.041,0.003-0.081,0.003-0.122C64.001,32.459,63.998,32.419,63.997,32.379z\r\n\t\t\t\t M37.861,33.275l-7.01,4.613C31.223,37.96,31.607,38,32,38C34.876,38,37.275,35.977,37.861,33.275z"},"children":[]}]}]}]}]}]}]}]};exports.view_off=view_off;var vimeo={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"vimeo_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"vimeo"},"children":[{"name":"g","attribs":{"id":"vimeo"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M36.348,18.728c2.748-0.624,7.539-1.522,8.529,1.306c1.246,8.476-4.611,15.407-9.84,19.602\r\n\t\t\t\tC24.919,34.128,32.523,8.81,21.915,4.633c-5.448-2.145-10.31,2.79-14.434,6.255C4.788,13.151-0.013,16.758,0,19.531v0.073\r\n\t\t\t\tc0.023,0.633,0.301,1.221,0.921,1.738c2.13,3.51,3.998-2.43,7.872-1.306c8.471,6.948,5.793,37.749,18.37,39.856\r\n\t\t\t\tc4.882,0.817,11.08-3.648,14.433-6.535c4.625-3.98,9.924-10.722,13.777-16.334c0,0,9.677-12.741,8.529-23.521\r\n\t\t\t\tC61.789-4.107,36.207,5.801,36.348,18.728z"},"children":[{"name":"path","attribs":{"d":"M36.348,18.728c2.748-0.624,7.539-1.522,8.529,1.306c1.246,8.476-4.611,15.407-9.84,19.602\r\n\t\t\t\tC24.919,34.128,32.523,8.81,21.915,4.633c-5.448-2.145-10.31,2.79-14.434,6.255C4.788,13.151-0.013,16.758,0,19.531v0.073\r\n\t\t\t\tc0.023,0.633,0.301,1.221,0.921,1.738c2.13,3.51,3.998-2.43,7.872-1.306c8.471,6.948,5.793,37.749,18.37,39.856\r\n\t\t\t\tc4.882,0.817,11.08-3.648,14.433-6.535c4.625-3.98,9.924-10.722,13.777-16.334c0,0,9.677-12.741,8.529-23.521\r\n\t\t\t\tC61.789-4.107,36.207,5.801,36.348,18.728z"},"children":[]}]}]}]}]}]}]}]};exports.vimeo=vimeo;var voicemail={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"VOICEMAIL_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"VOICEMAIL"},"children":[{"name":"g","attribs":{"id":"VOICEMAIL"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M50,18c-7.732,0-14,6.268-14,14c0,2.977,0.936,5.73,2.52,8H25.48c1.584-2.27,2.52-5.023,2.52-8c0-7.732-6.268-14-14-14\r\n\t\t\t\tS0,24.268,0,32c0,7.732,6.268,14,14,14h36c7.732,0,14-6.268,14-14C64,24.268,57.732,18,50,18z M14,40c-4.418,0-8-3.582-8-8\r\n\t\t\t\ts3.582-8,8-8s8,3.582,8,8S18.418,40,14,40z M50,40c-4.418,0-8-3.582-8-8s3.582-8,8-8s8,3.582,8,8S54.418,40,50,40z"},"children":[{"name":"path","attribs":{"d":"M50,18c-7.732,0-14,6.268-14,14c0,2.977,0.936,5.73,2.52,8H25.48c1.584-2.27,2.52-5.023,2.52-8c0-7.732-6.268-14-14-14\r\n\t\t\t\tS0,24.268,0,32c0,7.732,6.268,14,14,14h36c7.732,0,14-6.268,14-14C64,24.268,57.732,18,50,18z M14,40c-4.418,0-8-3.582-8-8\r\n\t\t\t\ts3.582-8,8-8s8,3.582,8,8S18.418,40,14,40z M50,40c-4.418,0-8-3.582-8-8s3.582-8,8-8s8,3.582,8,8S54.418,40,50,40z"},"children":[]}]}]}]}]}]}]}]};exports.voicemail=voicemail;var volume_1={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"VOLUME_1_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"VOLUME_1"},"children":[{"name":"g","attribs":{"id":"VOLUME_1"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M36,16c-0.721,0-1.374,0.265-1.891,0.689l-0.01-0.011l-10.162,8.315h-9.946v0.008C12.339,25.006,11,26.346,11,28v10\r\n\t\t\t\tc0,1.657,1.343,3,3,3h10.024l10.21,7.426l0.006-0.007C34.736,48.781,35.34,49,36,49c1.657,0,3-1.343,3-3V19\r\n\t\t\t\tC39,17.343,37.657,16,36,16z M47.902,18.926l-2.846,2.847C47.52,24.852,49,28.75,49,33s-1.48,8.148-3.943,11.227l2.846,2.848\r\n\t\t\t\tC51.083,43.26,53,38.355,53,33C53,27.645,51.083,22.74,47.902,18.926z"},"children":[{"name":"path","attribs":{"d":"M36,16c-0.721,0-1.374,0.265-1.891,0.689l-0.01-0.011l-10.162,8.315h-9.946v0.008C12.339,25.006,11,26.346,11,28v10\r\n\t\t\t\tc0,1.657,1.343,3,3,3h10.024l10.21,7.426l0.006-0.007C34.736,48.781,35.34,49,36,49c1.657,0,3-1.343,3-3V19\r\n\t\t\t\tC39,17.343,37.657,16,36,16z M47.902,18.926l-2.846,2.847C47.52,24.852,49,28.75,49,33s-1.48,8.148-3.943,11.227l2.846,2.848\r\n\t\t\t\tC51.083,43.26,53,38.355,53,33C53,27.645,51.083,22.74,47.902,18.926z"},"children":[]}]}]}]}]}]}]}]};exports.volume_1=volume_1;var volume_2={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"VOLUME_2_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"VOLUME_2"},"children":[{"name":"g","attribs":{"id":"VOLUME_2"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M50.701,10.128l-2.848,2.848C52.292,18.07,55,24.712,55,32s-2.708,13.93-7.146,19.023l2.848,2.849\r\n\t\t\t\tC55.861,48.049,59,40.393,59,32C59,23.607,55.861,15.951,50.701,10.128z M31,15c-0.721,0-1.374,0.265-1.891,0.689L29.1,15.678\r\n\t\t\t\tl-10.162,8.315H8.992v0.008C7.339,24.006,6,25.346,6,27v10c0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007\r\n\t\t\t\tC29.736,47.781,30.34,48,31,48c1.657,0,3-1.343,3-3V18C34,16.343,32.657,15,31,15z M42.902,17.926l-2.846,2.847\r\n\t\t\t\tC42.52,23.852,44,27.75,44,32s-1.48,8.148-3.943,11.227l2.846,2.848C46.083,42.26,48,37.355,48,32\r\n\t\t\t\tC48,26.645,46.083,21.74,42.902,17.926z"},"children":[{"name":"path","attribs":{"d":"M50.701,10.128l-2.848,2.848C52.292,18.07,55,24.712,55,32s-2.708,13.93-7.146,19.023l2.848,2.849\r\n\t\t\t\tC55.861,48.049,59,40.393,59,32C59,23.607,55.861,15.951,50.701,10.128z M31,15c-0.721,0-1.374,0.265-1.891,0.689L29.1,15.678\r\n\t\t\t\tl-10.162,8.315H8.992v0.008C7.339,24.006,6,25.346,6,27v10c0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007\r\n\t\t\t\tC29.736,47.781,30.34,48,31,48c1.657,0,3-1.343,3-3V18C34,16.343,32.657,15,31,15z M42.902,17.926l-2.846,2.847\r\n\t\t\t\tC42.52,23.852,44,27.75,44,32s-1.48,8.148-3.943,11.227l2.846,2.848C46.083,42.26,48,37.355,48,32\r\n\t\t\t\tC48,26.645,46.083,21.74,42.902,17.926z"},"children":[]}]}]}]}]}]}]}]};exports.volume_2=volume_2;var volume_3={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"VOLUME_3_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"VOLUME_3"},"children":[{"name":"g","attribs":{"id":"VOLUME_3"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M25,15c-0.721,0-1.374,0.265-1.891,0.689L23.1,15.678l-10.162,8.315H2.992v0.008C1.339,24.006,0,25.346,0,27v10\r\n\t\t\t\tc0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007C23.736,47.781,24.34,48,25,48c1.657,0,3-1.343,3-3V18\r\n\t\t\t\tC28,16.343,26.657,15,25,15z M36.902,17.926l-2.846,2.847C36.52,23.852,38,27.75,38,32s-1.48,8.148-3.943,11.227l2.846,2.848\r\n\t\t\t\tC40.083,42.26,42,37.355,42,32C42,26.645,40.083,21.74,36.902,17.926z M44.701,10.128l-2.848,2.848C46.292,18.07,49,24.712,49,32\r\n\t\t\t\ts-2.708,13.93-7.146,19.023l2.848,2.849C49.861,48.049,53,40.393,53,32C53,23.607,49.861,15.951,44.701,10.128z M52.493,2.336\r\n\t\t\t\tl-2.831,2.831C56.086,12.263,60,21.674,60,32s-3.914,19.736-10.338,26.833l2.831,2.831C59.639,53.842,64,43.432,64,32\r\n\t\t\t\tC64,20.569,59.639,10.159,52.493,2.336z"},"children":[{"name":"path","attribs":{"d":"M25,15c-0.721,0-1.374,0.265-1.891,0.689L23.1,15.678l-10.162,8.315H2.992v0.008C1.339,24.006,0,25.346,0,27v10\r\n\t\t\t\tc0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007C23.736,47.781,24.34,48,25,48c1.657,0,3-1.343,3-3V18\r\n\t\t\t\tC28,16.343,26.657,15,25,15z M36.902,17.926l-2.846,2.847C36.52,23.852,38,27.75,38,32s-1.48,8.148-3.943,11.227l2.846,2.848\r\n\t\t\t\tC40.083,42.26,42,37.355,42,32C42,26.645,40.083,21.74,36.902,17.926z M44.701,10.128l-2.848,2.848C46.292,18.07,49,24.712,49,32\r\n\t\t\t\ts-2.708,13.93-7.146,19.023l2.848,2.849C49.861,48.049,53,40.393,53,32C53,23.607,49.861,15.951,44.701,10.128z M52.493,2.336\r\n\t\t\t\tl-2.831,2.831C56.086,12.263,60,21.674,60,32s-3.914,19.736-10.338,26.833l2.831,2.831C59.639,53.842,64,43.432,64,32\r\n\t\t\t\tC64,20.569,59.639,10.159,52.493,2.336z"},"children":[]}]}]}]}]}]}]}]};exports.volume_3=volume_3;var volume_down={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"VOLUME__x2F__DOWN_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"VOLUME__x2F__DOWN"},"children":[{"name":"g","attribs":{"id":"VOLUME__x2F__DOWN"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M55,30H43c-1.657,0-3,1.343-3,3s1.343,3,3,3h12c1.657,0,3-1.343,3-3S56.657,30,55,30z M31,16\r\n\t\t\t\tc-0.721,0-1.374,0.265-1.891,0.689L29.1,16.678l-10.162,8.315H8.992v0.008C7.339,25.006,6,26.346,6,28v10c0,1.657,1.343,3,3,3\r\n\t\t\t\th10.024l10.211,7.426l0.005-0.007C29.736,48.781,30.34,49,31,49c1.657,0,3-1.343,3-3V19C34,17.343,32.657,16,31,16z"},"children":[{"name":"path","attribs":{"d":"M55,30H43c-1.657,0-3,1.343-3,3s1.343,3,3,3h12c1.657,0,3-1.343,3-3S56.657,30,55,30z M31,16\r\n\t\t\t\tc-0.721,0-1.374,0.265-1.891,0.689L29.1,16.678l-10.162,8.315H8.992v0.008C7.339,25.006,6,26.346,6,28v10c0,1.657,1.343,3,3,3\r\n\t\t\t\th10.024l10.211,7.426l0.005-0.007C29.736,48.781,30.34,49,31,49c1.657,0,3-1.343,3-3V19C34,17.343,32.657,16,31,16z"},"children":[]}]}]}]}]}]}]}]};exports.volume_down=volume_down;var volume_mute={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"VOLUME__x2F__MUTE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"VOLUME__x2F__MUTE"},"children":[{"name":"g","attribs":{"id":"VOLUME__x2F__MUTE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M31,16c-0.721,0-1.374,0.265-1.891,0.689L29.1,16.678l-10.162,8.315H8.992v0.008C7.339,25.006,6,26.346,6,28v10\r\n\t\t\t\tc0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007C29.736,48.781,30.34,49,31,49c1.657,0,3-1.343,3-3V19\r\n\t\t\t\tC34,17.343,32.657,16,31,16z M53.243,33l3.879-3.879C57.664,28.579,58,27.829,58,27c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L49,28.758l-3.879-3.879C44.578,24.336,43.828,24,43,24c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L44.757,33l-3.879,3.879C40.336,37.422,40,38.172,40,39c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L49,37.243l3.879,3.879C53.422,41.664,54.172,42,55,42c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L53.243,33z"},"children":[{"name":"path","attribs":{"d":"M31,16c-0.721,0-1.374,0.265-1.891,0.689L29.1,16.678l-10.162,8.315H8.992v0.008C7.339,25.006,6,26.346,6,28v10\r\n\t\t\t\tc0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007C29.736,48.781,30.34,49,31,49c1.657,0,3-1.343,3-3V19\r\n\t\t\t\tC34,17.343,32.657,16,31,16z M53.243,33l3.879-3.879C57.664,28.579,58,27.829,58,27c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L49,28.758l-3.879-3.879C44.578,24.336,43.828,24,43,24c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L44.757,33l-3.879,3.879C40.336,37.422,40,38.172,40,39c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L49,37.243l3.879,3.879C53.422,41.664,54.172,42,55,42c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L53.243,33z"},"children":[]}]}]}]}]}]}]}]};exports.volume_mute=volume_mute;var volume_off={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"VOLUME__x2F__OFF_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"VOLUME__x2F__OFF"},"children":[{"name":"g","attribs":{"id":"VOLUME__x2F__OFF"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M42,16c-0.721,0-1.374,0.265-1.891,0.689l-0.01-0.011l-10.162,8.315h-9.946v0.008C18.339,25.006,17,26.346,17,28v9.627\r\n\t\t\t\tl27.973-18.9C44.832,17.2,43.562,16,42,16z M30.024,41l10.21,7.426l0.006-0.007C40.736,48.781,41.34,49,42,49\r\n\t\t\t\tc1.657,0,3-1.343,3-3V29.57L28.083,41H30.024z M51,18.6c-0.312,0-0.602,0.095-0.841,0.258L13.064,43.955\r\n\t\t\t\tc-0.4,0.27-0.664,0.727-0.664,1.245c0,0.827,0.672,1.5,1.5,1.5c0.312,0,0.601-0.095,0.841-0.259l37.095-25.096\r\n\t\t\t\tc0.4-0.269,0.664-0.727,0.664-1.245C52.5,19.272,51.828,18.6,51,18.6z"},"children":[{"name":"path","attribs":{"d":"M42,16c-0.721,0-1.374,0.265-1.891,0.689l-0.01-0.011l-10.162,8.315h-9.946v0.008C18.339,25.006,17,26.346,17,28v9.627\r\n\t\t\t\tl27.973-18.9C44.832,17.2,43.562,16,42,16z M30.024,41l10.21,7.426l0.006-0.007C40.736,48.781,41.34,49,42,49\r\n\t\t\t\tc1.657,0,3-1.343,3-3V29.57L28.083,41H30.024z M51,18.6c-0.312,0-0.602,0.095-0.841,0.258L13.064,43.955\r\n\t\t\t\tc-0.4,0.27-0.664,0.727-0.664,1.245c0,0.827,0.672,1.5,1.5,1.5c0.312,0,0.601-0.095,0.841-0.259l37.095-25.096\r\n\t\t\t\tc0.4-0.269,0.664-0.727,0.664-1.245C52.5,19.272,51.828,18.6,51,18.6z"},"children":[]}]}]}]}]}]}]}]};exports.volume_off=volume_off;var volume_up={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"VOLUME__x2F__UP_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"VOLUME__x2F__UP"},"children":[{"name":"g","attribs":{"id":"VOLUME__x2F__UP"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M31,16c-0.721,0-1.374,0.265-1.891,0.689L29.1,16.678l-10.162,8.315H8.992v0.008C7.339,25.006,6,26.346,6,28v10\r\n\t\t\t\tc0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007C29.736,48.781,30.34,49,31,49c1.657,0,3-1.343,3-3V19\r\n\t\t\t\tC34,17.343,32.657,16,31,16z M55,30h-3v-3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3s1.343,3,3,3h3v3\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3S56.657,30,55,30z"},"children":[{"name":"path","attribs":{"d":"M31,16c-0.721,0-1.374,0.265-1.891,0.689L29.1,16.678l-10.162,8.315H8.992v0.008C7.339,25.006,6,26.346,6,28v10\r\n\t\t\t\tc0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007C29.736,48.781,30.34,49,31,49c1.657,0,3-1.343,3-3V19\r\n\t\t\t\tC34,17.343,32.657,16,31,16z M55,30h-3v-3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3s1.343,3,3,3h3v3\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3S56.657,30,55,30z"},"children":[]}]}]}]}]}]}]}]};exports.volume_up=volume_up;var warning={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"WARNING_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"WARNING"},"children":[{"name":"g","attribs":{"id":"WARNING"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M63.562,53.463l0.018-0.011l-29-47l-0.018,0.01C34.039,5.59,33.092,5,32,5c-1.052,0-1.973,0.543-2.509,1.362l-0.017-0.01\r\n\t\t\t\tl-29,47l0.017,0.01C0.183,53.834,0,54.395,0,55c0,1.657,1.343,3,3,3c0.009,0,0.018-0.003,0.027-0.003v0.03h58v-0.03\r\n\t\t\t\tC62.671,57.982,64,56.648,64,55C64,54.436,63.835,53.914,63.562,53.463z M32,52c-2.209,0-4-1.791-4-4s1.791-4,4-4s4,1.791,4,4\r\n\t\t\t\tS34.209,52,32,52z M36,37c0,2.209-1.791,4-4,4s-4-1.791-4-4V22c0-2.209,1.791-4,4-4s4,1.791,4,4V37z"},"children":[{"name":"path","attribs":{"d":"M63.562,53.463l0.018-0.011l-29-47l-0.018,0.01C34.039,5.59,33.092,5,32,5c-1.052,0-1.973,0.543-2.509,1.362l-0.017-0.01\r\n\t\t\t\tl-29,47l0.017,0.01C0.183,53.834,0,54.395,0,55c0,1.657,1.343,3,3,3c0.009,0,0.018-0.003,0.027-0.003v0.03h58v-0.03\r\n\t\t\t\tC62.671,57.982,64,56.648,64,55C64,54.436,63.835,53.914,63.562,53.463z M32,52c-2.209,0-4-1.791-4-4s1.791-4,4-4s4,1.791,4,4\r\n\t\t\t\tS34.209,52,32,52z M36,37c0,2.209-1.791,4-4,4s-4-1.791-4-4V22c0-2.209,1.791-4,4-4s4,1.791,4,4V37z"},"children":[]}]}]}]}]}]}]}]};exports.warning=warning;var wifi_1={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"WIFI_1_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"WIFI_1"},"children":[{"name":"g","attribs":{"id":"WIFI_1"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M32,34c-3.314,0-6,2.686-6,6s2.686,6,6,6c3.314,0,6-2.686,6-6S35.314,34,32,34z M32,19\r\n\t\t\t\tc-5.343,0-10.062,2.629-12.968,6.654l3.302,4.256C24.519,26.938,28.029,25,32,25c3.971,0,7.482,1.937,9.666,4.91l3.302-4.256\r\n\t\t\t\tC42.062,21.629,37.343,19,32,19z"},"children":[{"name":"path","attribs":{"d":"M32,34c-3.314,0-6,2.686-6,6s2.686,6,6,6c3.314,0,6-2.686,6-6S35.314,34,32,34z M32,19\r\n\t\t\t\tc-5.343,0-10.062,2.629-12.968,6.654l3.302,4.256C24.519,26.938,28.029,25,32,25c3.971,0,7.482,1.937,9.666,4.91l3.302-4.256\r\n\t\t\t\tC42.062,21.629,37.343,19,32,19z"},"children":[]}]}]}]}]}]}]}]};exports.wifi_1=wifi_1;var wifi_2={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"WIFI_2_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"WIFI_2"},"children":[{"name":"g","attribs":{"id":"WIFI_2"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M32,41c-3.314,0-6,2.686-6,6s2.686,6,6,6c3.314,0,6-2.686,6-6S35.314,41,32,41z M32,26\r\n\t\t\t\tc-5.343,0-10.062,2.629-12.968,6.654l3.302,4.256C24.519,33.938,28.029,32,32,32c3.971,0,7.482,1.938,9.666,4.91l3.302-4.256\r\n\t\t\t\tC42.062,28.629,37.343,26,32,26z M32,11c-8.791,0-16.721,3.665-22.363,9.544l3.739,4.819C17.954,20.242,24.59,17,32,17\r\n\t\t\t\ts14.046,3.242,18.624,8.364l3.739-4.819C48.721,14.666,40.791,11,32,11z"},"children":[{"name":"path","attribs":{"d":"M32,41c-3.314,0-6,2.686-6,6s2.686,6,6,6c3.314,0,6-2.686,6-6S35.314,41,32,41z M32,26\r\n\t\t\t\tc-5.343,0-10.062,2.629-12.968,6.654l3.302,4.256C24.519,33.938,28.029,32,32,32c3.971,0,7.482,1.938,9.666,4.91l3.302-4.256\r\n\t\t\t\tC42.062,28.629,37.343,26,32,26z M32,11c-8.791,0-16.721,3.665-22.363,9.544l3.739,4.819C17.954,20.242,24.59,17,32,17\r\n\t\t\t\ts14.046,3.242,18.624,8.364l3.739-4.819C48.721,14.666,40.791,11,32,11z"},"children":[]}]}]}]}]}]}]}]};exports.wifi_2=wifi_2;var wifi_3={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"WIFI_3_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"WIFI_3"},"children":[{"name":"g","attribs":{"id":"WIFI_3"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M32,49c-3.314,0-6,2.686-6,6s2.686,6,6,6c3.314,0,6-2.686,6-6S35.314,49,32,49z M32,34\r\n\t\t\t\tc-5.343,0-10.062,2.629-12.968,6.654l3.302,4.256C24.519,41.938,28.029,40,32,40c3.971,0,7.482,1.938,9.666,4.91l3.302-4.256\r\n\t\t\t\tC42.062,36.629,37.343,34,32,34z M32,4C19.747,4,8.622,8.8,0.378,16.61l3.696,4.764C11.283,14.34,21.132,10,32,10\r\n\t\t\t\ts20.717,4.34,27.926,11.374l3.696-4.764C55.378,8.8,44.253,4,32,4z M9.637,28.544l3.739,4.819C17.954,28.242,24.59,25,32,25\r\n\t\t\t\ts14.046,3.242,18.624,8.364l3.739-4.819C48.721,22.666,40.791,19,32,19S15.279,22.666,9.637,28.544z"},"children":[{"name":"path","attribs":{"d":"M32,49c-3.314,0-6,2.686-6,6s2.686,6,6,6c3.314,0,6-2.686,6-6S35.314,49,32,49z M32,34\r\n\t\t\t\tc-5.343,0-10.062,2.629-12.968,6.654l3.302,4.256C24.519,41.938,28.029,40,32,40c3.971,0,7.482,1.938,9.666,4.91l3.302-4.256\r\n\t\t\t\tC42.062,36.629,37.343,34,32,34z M32,4C19.747,4,8.622,8.8,0.378,16.61l3.696,4.764C11.283,14.34,21.132,10,32,10\r\n\t\t\t\ts20.717,4.34,27.926,11.374l3.696-4.764C55.378,8.8,44.253,4,32,4z M9.637,28.544l3.739,4.819C17.954,28.242,24.59,25,32,25\r\n\t\t\t\ts14.046,3.242,18.624,8.364l3.739-4.819C48.721,22.666,40.791,19,32,19S15.279,22.666,9.637,28.544z"},"children":[]}]}]}]}]}]}]}]};exports.wifi_3=wifi_3;var windows={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"windows_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"windows"},"children":[{"name":"g","attribs":{"id":"windows"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M0.015,30.236h25.809V5.541L0.015,9.28V30.236z M29.353,5.029v25.207h34.631V0.015L29.353,5.029z M0.015,54.721\r\n\t\t\t\tl25.809,3.738V33.766H0.015V54.721z M29.353,58.971l34.631,5.014V33.766H29.353V58.971z"},"children":[{"name":"path","attribs":{"d":"M0.015,30.236h25.809V5.541L0.015,9.28V30.236z M29.353,5.029v25.207h34.631V0.015L29.353,5.029z M0.015,54.721\r\n\t\t\t\tl25.809,3.738V33.766H0.015V54.721z M29.353,58.971l34.631,5.014V33.766H29.353V58.971z"},"children":[]}]}]}]}]}]}]}]};exports.windows=windows;var youtube={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"youtube_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"youtube"},"children":[{"name":"g","attribs":{"id":"youtube"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M54.15,10.031l-20.9-0.019l-21.718,0.019c-5.433,0-11.534,3.626-11.534,8.944v26.474c0,5.316,6.101,8.559,11.534,8.559\r\n\t\t\t\tH54.15c5.432,0,9.834-3.242,9.834-8.559V18.976C63.984,13.657,59.582,10.031,54.15,10.031z M27.856,42.205L27.73,22.044\r\n\t\t\t\tl14.03,10.168L27.856,42.205z"},"children":[{"name":"path","attribs":{"d":"M54.15,10.031l-20.9-0.019l-21.718,0.019c-5.433,0-11.534,3.626-11.534,8.944v26.474c0,5.316,6.101,8.559,11.534,8.559\r\n\t\t\t\tH54.15c5.432,0,9.834-3.242,9.834-8.559V18.976C63.984,13.657,59.582,10.031,54.15,10.031z M27.856,42.205L27.73,22.044\r\n\t\t\t\tl14.03,10.168L27.856,42.205z"},"children":[]}]}]}]}]}]}]}]};exports.youtube=youtube;var zoom_in={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"ZOOM_IN"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M45,29H35V19c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v10H19\r\n\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h10v10c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V35h10c1.657,0,3-1.343,3-3\r\n\t\t\tC48,30.344,46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32c0.003,0,0.005,0,0.008,0H61\r\n\t\t\tc1.657,0,3-1.343,3-3V32.002c0-0.001,0-0.001,0-0.002C64,14.327,49.673,0,32,0z M58,32.001C58,46.359,46.361,57.998,32.004,58H32\r\n\t\t\tv0C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6S58,17.641,58,32.001L58,32.001z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M45,29H35V19c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v10H19\r\n\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h10v10c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V35h10c1.657,0,3-1.343,3-3\r\n\t\t\tC48,30.344,46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32c0.003,0,0.005,0,0.008,0H61\r\n\t\t\tc1.657,0,3-1.343,3-3V32.002c0-0.001,0-0.001,0-0.002C64,14.327,49.673,0,32,0z M58,32.001C58,46.359,46.361,57.998,32.004,58H32\r\n\t\t\tv0C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6S58,17.641,58,32.001L58,32.001z"},"children":[]}]}]}]}]}]};exports.zoom_in=zoom_in;var zoom_out={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"ZOOM_OUT"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M45,29H35v0h-6v0H19c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h5v0h19v0h2\r\n\t\t\tc1.657,0,3-1.343,3-3C48,30.344,46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32c0.003,0,0.005,0,0.007,0\r\n\t\t\tH61c1.657,0,3-1.343,3-3V32.002c0-0.001,0-0.001,0-0.002C64,14.327,49.673,0,32,0z M58,32.001C58,46.359,46.361,57.998,32.004,58\r\n\t\t\tH32v0C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6C46.36,6,58,17.641,58,32.001L58,32.001z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M45,29H35v0h-6v0H19c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h5v0h19v0h2\r\n\t\t\tc1.657,0,3-1.343,3-3C48,30.344,46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32c0.003,0,0.005,0,0.007,0\r\n\t\t\tH61c1.657,0,3-1.343,3-3V32.002c0-0.001,0-0.001,0-0.002C64,14.327,49.673,0,32,0z M58,32.001C58,46.359,46.361,57.998,32.004,58\r\n\t\t\tH32v0C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6C46.36,6,58,17.641,58,32.001L58,32.001z"},"children":[]}]}]}]}]}]};exports.zoom_out=zoom_out; \ No newline at end of file diff --git a/dist/ikons/instagram.js b/dist/ikons/instagram.js new file mode 100644 index 000000000..e51e49ec4 --- /dev/null +++ b/dist/ikons/instagram.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.instagram = void 0; +var instagram = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "instagram_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "instagram" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "instagram" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M56,0H8C3.582,0,0,3.582,0,8v48c0,4.418,3.582,8,8,8h48c4.418,0,8-3.582,8-8V8C64,3.582,60.418,0,56,0z M19.673,30.673\r\n\t\t\t\tc0.013-0.127,0.04-0.249,0.057-0.374c0.042-0.31,0.088-0.618,0.153-0.92c0.029-0.136,0.069-0.267,0.103-0.401\r\n\t\t\t\tc0.072-0.286,0.147-0.571,0.238-0.849c0.044-0.132,0.095-0.259,0.142-0.389c0.1-0.272,0.204-0.541,0.322-0.804\r\n\t\t\t\tc0.02-0.045,0.034-0.092,0.055-0.137h0.011c1.968-4.247,6.257-7.2,11.246-7.2c4.988,0,9.277,2.953,11.246,7.2h0.011\r\n\t\t\t\tc0.021,0.045,0.035,0.092,0.056,0.137c0.117,0.263,0.222,0.532,0.321,0.804c0.048,0.13,0.099,0.257,0.142,0.389\r\n\t\t\t\tc0.092,0.278,0.166,0.562,0.238,0.849c0.034,0.134,0.074,0.265,0.104,0.401c0.064,0.302,0.109,0.61,0.152,0.92\r\n\t\t\t\tc0.018,0.125,0.043,0.247,0.058,0.374C44.373,31.109,44.4,31.551,44.4,32c0,6.85-5.553,12.4-12.4,12.4\r\n\t\t\t\tc-6.848,0-12.4-5.553-12.4-12.4C19.6,31.551,19.627,31.109,19.673,30.673z M56.8,53.6c0,1.768-1.433,3.2-3.2,3.2H10.4\r\n\t\t\t\tc-1.767,0-3.2-1.433-3.2-3.2V26.8h5.899C12.644,28.456,12.4,30.2,12.4,32c0,10.825,8.775,19.6,19.6,19.6S51.6,42.825,51.6,32\r\n\t\t\t\tc0-1.8-0.244-3.544-0.699-5.2H56.8V53.6z M56.8,16.8c0,1.767-1.433,3.2-3.2,3.2H47.2c-1.767,0-3.2-1.433-3.2-3.2v-6.4\r\n\t\t\t\tc0-1.767,1.434-3.2,3.2-3.2H53.6c1.768,0,3.2,1.432,3.2,3.2V16.8z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M56,0H8C3.582,0,0,3.582,0,8v48c0,4.418,3.582,8,8,8h48c4.418,0,8-3.582,8-8V8C64,3.582,60.418,0,56,0z M19.673,30.673\r\n\t\t\t\tc0.013-0.127,0.04-0.249,0.057-0.374c0.042-0.31,0.088-0.618,0.153-0.92c0.029-0.136,0.069-0.267,0.103-0.401\r\n\t\t\t\tc0.072-0.286,0.147-0.571,0.238-0.849c0.044-0.132,0.095-0.259,0.142-0.389c0.1-0.272,0.204-0.541,0.322-0.804\r\n\t\t\t\tc0.02-0.045,0.034-0.092,0.055-0.137h0.011c1.968-4.247,6.257-7.2,11.246-7.2c4.988,0,9.277,2.953,11.246,7.2h0.011\r\n\t\t\t\tc0.021,0.045,0.035,0.092,0.056,0.137c0.117,0.263,0.222,0.532,0.321,0.804c0.048,0.13,0.099,0.257,0.142,0.389\r\n\t\t\t\tc0.092,0.278,0.166,0.562,0.238,0.849c0.034,0.134,0.074,0.265,0.104,0.401c0.064,0.302,0.109,0.61,0.152,0.92\r\n\t\t\t\tc0.018,0.125,0.043,0.247,0.058,0.374C44.373,31.109,44.4,31.551,44.4,32c0,6.85-5.553,12.4-12.4,12.4\r\n\t\t\t\tc-6.848,0-12.4-5.553-12.4-12.4C19.6,31.551,19.627,31.109,19.673,30.673z M56.8,53.6c0,1.768-1.433,3.2-3.2,3.2H10.4\r\n\t\t\t\tc-1.767,0-3.2-1.433-3.2-3.2V26.8h5.899C12.644,28.456,12.4,30.2,12.4,32c0,10.825,8.775,19.6,19.6,19.6S51.6,42.825,51.6,32\r\n\t\t\t\tc0-1.8-0.244-3.544-0.699-5.2H56.8V53.6z M56.8,16.8c0,1.767-1.433,3.2-3.2,3.2H47.2c-1.767,0-3.2-1.433-3.2-3.2v-6.4\r\n\t\t\t\tc0-1.767,1.434-3.2,3.2-3.2H53.6c1.768,0,3.2,1.432,3.2,3.2V16.8z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.instagram = instagram; \ No newline at end of file diff --git a/dist/ikons/ipad.js b/dist/ikons/ipad.js new file mode 100644 index 000000000..658f11f63 --- /dev/null +++ b/dist/ikons/ipad.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ipad = void 0; +var ipad = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "IPAD_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "IPAD" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "IPAD" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M54,3H10C8.343,3,7,4.343,7,6v52c0,1.657,1.343,3,3,3h44c1.657,0,3-1.343,3-3V6C57,4.343,55.657,3,54,3z M32,59\r\n\t\t\t\tc-1.105,0-2-0.896-2-2s0.895-2,2-2c1.105,0,2,0.896,2,2S33.105,59,32,59z M51,53H13V9h38V53z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M54,3H10C8.343,3,7,4.343,7,6v52c0,1.657,1.343,3,3,3h44c1.657,0,3-1.343,3-3V6C57,4.343,55.657,3,54,3z M32,59\r\n\t\t\t\tc-1.105,0-2-0.896-2-2s0.895-2,2-2c1.105,0,2,0.896,2,2S33.105,59,32,59z M51,53H13V9h38V53z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ipad = ipad; \ No newline at end of file diff --git a/dist/ikons/iphone.js b/dist/ikons/iphone.js new file mode 100644 index 000000000..b5fff6d50 --- /dev/null +++ b/dist/ikons/iphone.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iphone = void 0; +var iphone = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "IPHONE_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "IPHONE" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "IPHONE" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M46,3H18c-1.657,0-3,1.343-3,3v52c0,1.657,1.343,3,3,3h28c1.657,0,3-1.343,3-3V6C49,4.343,47.657,3,46,3z M32,58\r\n\t\t\t\tc-1.105,0-2-0.895-2-2s0.895-2,2-2c1.105,0,2,0.895,2,2S33.105,58,32,58z M46,51H18V9h28V51z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M46,3H18c-1.657,0-3,1.343-3,3v52c0,1.657,1.343,3,3,3h28c1.657,0,3-1.343,3-3V6C49,4.343,47.657,3,46,3z M32,58\r\n\t\t\t\tc-1.105,0-2-0.895-2-2s0.895-2,2-2c1.105,0,2,0.895,2,2S33.105,58,32,58z M46,51H18V9h28V51z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.iphone = iphone; \ No newline at end of file diff --git a/dist/ikons/layers.js b/dist/ikons/layers.js new file mode 100644 index 000000000..b121d16a0 --- /dev/null +++ b/dist/ikons/layers.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.layers = void 0; +var layers = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "LAYERS" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M61,42c-0.406,0-0.793,0.083-1.147,0.229l0-0.001l-0.013,0.005\r\n\t\t\tc-0.004,0.002-0.009,0.003-0.013,0.005L32,53.753L4.174,42.239c-0.004-0.002-0.009-0.004-0.013-0.005l-0.013-0.005l-0.001,0.001\r\n\t\t\tC3.793,42.083,3.406,42,3,42c-1.657,0-3,1.343-3,3c0,1.25,0.766,2.32,1.853,2.771l0,0.001l28.974,11.989\r\n\t\t\tc0.004,0.002,0.009,0.004,0.013,0.005l0.013,0.005l0.001-0.001C31.207,59.917,31.594,60,32,60c0.406,0,0.793-0.083,1.147-0.229\r\n\t\t\tl0.001,0.001l0.013-0.005c0.004-0.002,0.009-0.004,0.013-0.005l28.973-11.989l0-0.001C63.234,47.32,64,46.25,64,45\r\n\t\t\tC64,43.343,62.657,42,61,42z M1.854,21.771l0,0.001l28.974,11.989c0.004,0.002,0.009,0.003,0.013,0.005l0.013,0.005l0.001-0.001\r\n\t\t\tC31.207,33.917,31.594,34,32,34c0.406,0,0.793-0.083,1.147-0.229l0.001,0.001l0.013-0.005c0.004-0.002,0.009-0.004,0.013-0.005\r\n\t\t\tl28.973-11.989l0-0.001C63.234,21.32,64,20.25,64,19c0-1.25-0.766-2.32-1.853-2.771l0-0.001L33.174,4.239\r\n\t\t\tc-0.004-0.002-0.009-0.004-0.013-0.005l-0.013-0.005l-0.001,0.001C32.793,4.083,32.406,4,32,4c-0.406,0-0.793,0.083-1.146,0.229\r\n\t\t\tl-0.001-0.001L30.84,4.233c-0.004,0.002-0.009,0.004-0.013,0.005L1.853,16.228l0,0.001C0.766,16.68,0,17.75,0,19\r\n\t\t\tC0,20.25,0.766,21.32,1.854,21.771z M61,29c-0.406,0-0.793,0.083-1.147,0.229l0-0.001l-0.013,0.006\r\n\t\t\tc-0.004,0.002-0.009,0.004-0.013,0.005L32,40.753L4.174,29.239c-0.004-0.002-0.009-0.004-0.013-0.005l-0.013-0.006l-0.001,0.001\r\n\t\t\tC3.793,29.083,3.406,29,3,29c-1.657,0-3,1.343-3,3c0,1.251,0.766,2.32,1.853,2.771l0,0.001l28.974,11.989\r\n\t\t\tc0.004,0.002,0.009,0.003,0.013,0.005l0.013,0.005l0.001-0.001C31.207,46.917,31.594,47,32,47c0.406,0,0.793-0.083,1.147-0.229\r\n\t\t\tl0.001,0.001l0.013-0.005c0.004-0.002,0.009-0.004,0.013-0.005l28.973-11.989l0-0.001C63.234,34.32,64,33.251,64,32\r\n\t\t\tC64,30.343,62.657,29,61,29z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M61,42c-0.406,0-0.793,0.083-1.147,0.229l0-0.001l-0.013,0.005\r\n\t\t\tc-0.004,0.002-0.009,0.003-0.013,0.005L32,53.753L4.174,42.239c-0.004-0.002-0.009-0.004-0.013-0.005l-0.013-0.005l-0.001,0.001\r\n\t\t\tC3.793,42.083,3.406,42,3,42c-1.657,0-3,1.343-3,3c0,1.25,0.766,2.32,1.853,2.771l0,0.001l28.974,11.989\r\n\t\t\tc0.004,0.002,0.009,0.004,0.013,0.005l0.013,0.005l0.001-0.001C31.207,59.917,31.594,60,32,60c0.406,0,0.793-0.083,1.147-0.229\r\n\t\t\tl0.001,0.001l0.013-0.005c0.004-0.002,0.009-0.004,0.013-0.005l28.973-11.989l0-0.001C63.234,47.32,64,46.25,64,45\r\n\t\t\tC64,43.343,62.657,42,61,42z M1.854,21.771l0,0.001l28.974,11.989c0.004,0.002,0.009,0.003,0.013,0.005l0.013,0.005l0.001-0.001\r\n\t\t\tC31.207,33.917,31.594,34,32,34c0.406,0,0.793-0.083,1.147-0.229l0.001,0.001l0.013-0.005c0.004-0.002,0.009-0.004,0.013-0.005\r\n\t\t\tl28.973-11.989l0-0.001C63.234,21.32,64,20.25,64,19c0-1.25-0.766-2.32-1.853-2.771l0-0.001L33.174,4.239\r\n\t\t\tc-0.004-0.002-0.009-0.004-0.013-0.005l-0.013-0.005l-0.001,0.001C32.793,4.083,32.406,4,32,4c-0.406,0-0.793,0.083-1.146,0.229\r\n\t\t\tl-0.001-0.001L30.84,4.233c-0.004,0.002-0.009,0.004-0.013,0.005L1.853,16.228l0,0.001C0.766,16.68,0,17.75,0,19\r\n\t\t\tC0,20.25,0.766,21.32,1.854,21.771z M61,29c-0.406,0-0.793,0.083-1.147,0.229l0-0.001l-0.013,0.006\r\n\t\t\tc-0.004,0.002-0.009,0.004-0.013,0.005L32,40.753L4.174,29.239c-0.004-0.002-0.009-0.004-0.013-0.005l-0.013-0.006l-0.001,0.001\r\n\t\t\tC3.793,29.083,3.406,29,3,29c-1.657,0-3,1.343-3,3c0,1.251,0.766,2.32,1.853,2.771l0,0.001l28.974,11.989\r\n\t\t\tc0.004,0.002,0.009,0.003,0.013,0.005l0.013,0.005l0.001-0.001C31.207,46.917,31.594,47,32,47c0.406,0,0.793-0.083,1.147-0.229\r\n\t\t\tl0.001,0.001l0.013-0.005c0.004-0.002,0.009-0.004,0.013-0.005l28.973-11.989l0-0.001C63.234,34.32,64,33.251,64,32\r\n\t\t\tC64,30.343,62.657,29,61,29z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.layers = layers; \ No newline at end of file diff --git a/dist/ikons/line_graph.js b/dist/ikons/line_graph.js new file mode 100644 index 000000000..53f302dd3 --- /dev/null +++ b/dist/ikons/line_graph.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.line_graph = void 0; +var line_graph = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "LINE_GRAPH_2_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "LINE_GRAPH_1_" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "LINE_GRAPH_1_" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M61,53H6V40.716l13.9-8.177l13.42,8.947c0.002,0,0.003,0.002,0.005,0.003l0.011,0.007l0.001-0.001\r\n\t\t\t\tC33.812,41.812,34.384,42,35,42c0.635,0,1.221-0.2,1.706-0.536l0.002,0.002l25.969-17.979c0,0,0.001,0,0.001-0.001l0.03-0.021\r\n\t\t\t\tl-0.002-0.003C63.486,22.923,64,22.022,64,21c0-1.657-1.343-3-3-3c-0.635,0-1.221,0.2-1.706,0.536l-0.002-0.003l-24.324,16.84\r\n\t\t\t\tl-13.289-8.859c-0.001-0.001-0.003-0.002-0.005-0.003l-0.011-0.007l-0.001,0.001C21.187,26.187,20.616,26,20,26\r\n\t\t\t\tc-0.555,0-1.069,0.161-1.515,0.424l-0.006-0.01L6,33.755V8c0-1.657-1.343-3-3-3S0,6.343,0,8v48c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3S62.657,53,61,53z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M61,53H6V40.716l13.9-8.177l13.42,8.947c0.002,0,0.003,0.002,0.005,0.003l0.011,0.007l0.001-0.001\r\n\t\t\t\tC33.812,41.812,34.384,42,35,42c0.635,0,1.221-0.2,1.706-0.536l0.002,0.002l25.969-17.979c0,0,0.001,0,0.001-0.001l0.03-0.021\r\n\t\t\t\tl-0.002-0.003C63.486,22.923,64,22.022,64,21c0-1.657-1.343-3-3-3c-0.635,0-1.221,0.2-1.706,0.536l-0.002-0.003l-24.324,16.84\r\n\t\t\t\tl-13.289-8.859c-0.001-0.001-0.003-0.002-0.005-0.003l-0.011-0.007l-0.001,0.001C21.187,26.187,20.616,26,20,26\r\n\t\t\t\tc-0.555,0-1.069,0.161-1.515,0.424l-0.006-0.01L6,33.755V8c0-1.657-1.343-3-3-3S0,6.343,0,8v48c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3S62.657,53,61,53z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.line_graph = line_graph; \ No newline at end of file diff --git a/dist/ikons/line_graph_square.js b/dist/ikons/line_graph_square.js new file mode 100644 index 000000000..91c4c0cde --- /dev/null +++ b/dist/ikons/line_graph_square.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.line_graph_square = void 0; +var line_graph_square = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "LINE_GRAPH_3_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "LINE_GRAPH" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "LINE_GRAPH" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,38.035c0.628,0,1.212-0.194,1.694-0.524l6.271-3.919l13.312,8.875c0.488,0.344,1.082,0.545,1.724,0.545\r\n\t\t\t\tc0.656,0,1.263-0.211,1.757-0.568h0.001l17-12l-0.001-0.001C54.51,29.897,55,29.012,55,28.011c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.662,0-1.273,0.215-1.77,0.578L34.953,36.373l-13.261-8.841l-0.012,0.017c-0.479-0.325-1.058-0.514-1.68-0.514\r\n\t\t\t\tc-0.575,0-1.113,0.162-1.569,0.443l-0.002-0.002l-8,5l0.001,0.002C9.573,33.006,9,33.953,9,35.035\r\n\t\t\t\tC9,36.691,10.343,38.035,12,38.035z M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z M58,58H6V6h52V58z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,38.035c0.628,0,1.212-0.194,1.694-0.524l6.271-3.919l13.312,8.875c0.488,0.344,1.082,0.545,1.724,0.545\r\n\t\t\t\tc0.656,0,1.263-0.211,1.757-0.568h0.001l17-12l-0.001-0.001C54.51,29.897,55,29.012,55,28.011c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.662,0-1.273,0.215-1.77,0.578L34.953,36.373l-13.261-8.841l-0.012,0.017c-0.479-0.325-1.058-0.514-1.68-0.514\r\n\t\t\t\tc-0.575,0-1.113,0.162-1.569,0.443l-0.002-0.002l-8,5l0.001,0.002C9.573,33.006,9,33.953,9,35.035\r\n\t\t\t\tC9,36.691,10.343,38.035,12,38.035z M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z M58,58H6V6h52V58z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.line_graph_square = line_graph_square; \ No newline at end of file diff --git a/dist/ikons/link.js b/dist/ikons/link.js new file mode 100644 index 000000000..11094a4b7 --- /dev/null +++ b/dist/ikons/link.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.link = void 0; +var link = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "LINK_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "LINK" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "LINK" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M26.461,45.766c-0.056,0.062-0.096,0.131-0.155,0.19l-8.349,8.37c-2.306,2.311-6.043,2.311-8.349,0\r\n\t\t\t\tc-2.305-2.311-2.305-6.059,0-8.37l8.349-8.37c0.018-0.018,0.041-0.029,0.059-0.049l7.187-7.187\r\n\t\t\t\tc-3.943-1.062-8.326-0.052-11.421,3.05L5.433,41.77c-4.611,4.623-4.611,12.119,0,16.74c4.611,4.623,12.087,4.623,16.697,0\r\n\t\t\t\tl8.349-8.369c3.091-3.101,4.1-7.49,3.044-11.44L26.461,45.766z M58.48,5.401c-4.61-4.623-12.086-4.623-16.696,0l-8.349,8.37\r\n\t\t\t\tc-3.083,3.09-4.094,7.462-3.055,11.403l7.221-7.221l0.006,0.006c0.002-0.001,0.002-0.002,0.002-0.002l8.35-8.37\r\n\t\t\t\tc2.305-2.311,6.043-2.311,8.35,0c2.305,2.311,2.305,6.059,0,8.37l-8.35,8.37c-0.098,0.098-0.211,0.167-0.312,0.256l-6.971,6.97\r\n\t\t\t\tc3.953,1.078,8.354,0.071,11.457-3.041l8.35-8.37C63.091,17.518,63.091,10.023,58.48,5.401z M42,19\r\n\t\t\t\tc-0.868,0-1.645,0.374-2.191,0.964L19.964,39.809C19.375,40.355,19,41.132,19,42c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.836,0,1.591-0.344,2.135-0.896l0.009,0.01l20-20l-0.01-0.009C44.669,23.563,45,22.82,45,22C45,20.343,43.657,19,42,19z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M26.461,45.766c-0.056,0.062-0.096,0.131-0.155,0.19l-8.349,8.37c-2.306,2.311-6.043,2.311-8.349,0\r\n\t\t\t\tc-2.305-2.311-2.305-6.059,0-8.37l8.349-8.37c0.018-0.018,0.041-0.029,0.059-0.049l7.187-7.187\r\n\t\t\t\tc-3.943-1.062-8.326-0.052-11.421,3.05L5.433,41.77c-4.611,4.623-4.611,12.119,0,16.74c4.611,4.623,12.087,4.623,16.697,0\r\n\t\t\t\tl8.349-8.369c3.091-3.101,4.1-7.49,3.044-11.44L26.461,45.766z M58.48,5.401c-4.61-4.623-12.086-4.623-16.696,0l-8.349,8.37\r\n\t\t\t\tc-3.083,3.09-4.094,7.462-3.055,11.403l7.221-7.221l0.006,0.006c0.002-0.001,0.002-0.002,0.002-0.002l8.35-8.37\r\n\t\t\t\tc2.305-2.311,6.043-2.311,8.35,0c2.305,2.311,2.305,6.059,0,8.37l-8.35,8.37c-0.098,0.098-0.211,0.167-0.312,0.256l-6.971,6.97\r\n\t\t\t\tc3.953,1.078,8.354,0.071,11.457-3.041l8.35-8.37C63.091,17.518,63.091,10.023,58.48,5.401z M42,19\r\n\t\t\t\tc-0.868,0-1.645,0.374-2.191,0.964L19.964,39.809C19.375,40.355,19,41.132,19,42c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.836,0,1.591-0.344,2.135-0.896l0.009,0.01l20-20l-0.01-0.009C44.669,23.563,45,22.82,45,22C45,20.343,43.657,19,42,19z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.link = link; \ No newline at end of file diff --git a/dist/ikons/linkedin.js b/dist/ikons/linkedin.js new file mode 100644 index 000000000..89a26ab09 --- /dev/null +++ b/dist/ikons/linkedin.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.linkedin = void 0; +var linkedin = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "linkedin_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "linkedin" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "linkedin" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M0.798,62.986h14.315V22.368H0.798V62.986z M48.434,21.087c-5.925,0-9.192,1.972-12.953,6.749v-5.469H21.189v40.619\r\n\t\t\t\tH35.48V40.914c0-4.658,2.24-9.214,7.596-9.214s6.673,4.555,6.673,9.103v22.184H64v-23.09C64,23.854,54.361,21.087,48.434,21.087z\r\n\t\t\t\t M7.982,2.013C3.572,2.013,0,5.222,0,9.183c0,3.958,3.572,7.162,7.982,7.162c4.406,0,7.978-3.205,7.978-7.162\r\n\t\t\t\tC15.96,5.222,12.388,2.013,7.982,2.013z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M0.798,62.986h14.315V22.368H0.798V62.986z M48.434,21.087c-5.925,0-9.192,1.972-12.953,6.749v-5.469H21.189v40.619\r\n\t\t\t\tH35.48V40.914c0-4.658,2.24-9.214,7.596-9.214s6.673,4.555,6.673,9.103v22.184H64v-23.09C64,23.854,54.361,21.087,48.434,21.087z\r\n\t\t\t\t M7.982,2.013C3.572,2.013,0,5.222,0,9.183c0,3.958,3.572,7.162,7.982,7.162c4.406,0,7.978-3.205,7.978-7.162\r\n\t\t\t\tC15.96,5.222,12.388,2.013,7.982,2.013z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.linkedin = linkedin; \ No newline at end of file diff --git a/dist/ikons/list.js b/dist/ikons/list.js new file mode 100644 index 000000000..c955d59db --- /dev/null +++ b/dist/ikons/list.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.list = void 0; +var list = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "LIST_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "LIST" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "LIST" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M3,19h58c1.657,0,3-1.343,3-3s-1.343-3-3-3H3c-1.657,0-3,1.343-3,3S1.343,19,3,19z M61,29H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h58c1.657,0,3-1.343,3-3S62.657,29,61,29z M61,45H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h58c1.657,0,3-1.343,3-3\r\n\t\t\t\tS62.657,45,61,45z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M3,19h58c1.657,0,3-1.343,3-3s-1.343-3-3-3H3c-1.657,0-3,1.343-3,3S1.343,19,3,19z M61,29H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h58c1.657,0,3-1.343,3-3S62.657,29,61,29z M61,45H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h58c1.657,0,3-1.343,3-3\r\n\t\t\t\tS62.657,45,61,45z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.list = list; \ No newline at end of file diff --git a/dist/ikons/list_2.js b/dist/ikons/list_2.js new file mode 100644 index 000000000..c3ba7daf4 --- /dev/null +++ b/dist/ikons/list_2.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.list_2 = void 0; +var list_2 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "LIST_2_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "LIST_2" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "LIST_2" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M9,45H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h6l0,0c1.657,0,3-1.343,3-3S10.657,45,9,45z M61,29H21c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3l0,0h40c1.657,0,3-1.343,3-3S62.657,29,61,29z M9,29H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h6l0,0c1.657,0,3-1.343,3-3\r\n\t\t\t\tS10.657,29,9,29z M21,19h40c1.657,0,3-1.343,3-3s-1.343-3-3-3H21.001H21c-1.657,0-3,1.343-3,3S19.343,19,21,19z M9,13L9,13H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h6c1.657,0,3-1.343,3-3S10.657,13,9,13z M61,45H21c-1.657,0-3,1.343-3,3s1.343,3,3,3l0,0h40\r\n\t\t\t\tc1.657,0,3-1.343,3-3S62.657,45,61,45z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M9,45H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h6l0,0c1.657,0,3-1.343,3-3S10.657,45,9,45z M61,29H21c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3l0,0h40c1.657,0,3-1.343,3-3S62.657,29,61,29z M9,29H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h6l0,0c1.657,0,3-1.343,3-3\r\n\t\t\t\tS10.657,29,9,29z M21,19h40c1.657,0,3-1.343,3-3s-1.343-3-3-3H21.001H21c-1.657,0-3,1.343-3,3S19.343,19,21,19z M9,13L9,13H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h6c1.657,0,3-1.343,3-3S10.657,13,9,13z M61,45H21c-1.657,0-3,1.343-3,3s1.343,3,3,3l0,0h40\r\n\t\t\t\tc1.657,0,3-1.343,3-3S62.657,45,61,45z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.list_2 = list_2; \ No newline at end of file diff --git a/dist/ikons/loading.js b/dist/ikons/loading.js new file mode 100644 index 000000000..1530780fa --- /dev/null +++ b/dist/ikons/loading.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.loading = void 0; +var loading = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "LOADING" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M17,44c-0.828,0-1.578,0.336-2.121,0.879l-6,6C8.336,51.422,8,52.172,8,53\r\n\t\t\tc0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879l6-6C19.664,48.578,20,47.828,20,47C20,45.343,18.657,44,17,44z M14,32\r\n\t\t\tc0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h8C12.657,35,14,33.657,14,32z M13.121,8.879\r\n\t\t\tC12.578,8.336,11.828,8,11,8c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l6,6C15.422,19.664,16.172,20,17,20\r\n\t\t\tc1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L13.121,8.879z M47,20c0.828,0,1.578-0.336,2.121-0.879l6-6\r\n\t\t\tC55.664,12.578,56,11.828,56,11c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879l-6,6C44.336,15.422,44,16.172,44,17\r\n\t\t\tC44,18.657,45.343,20,47,20z M49.121,44.879C48.579,44.336,47.828,44,47,44c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121\r\n\t\t\tl6,6C51.422,55.664,52.172,56,53,56c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L49.121,44.879z M32,50\r\n\t\t\tc-1.657,0-3,1.343-3,3v8c0,1.657,1.343,3,3,3s3-1.343,3-3v-8C35,51.343,33.657,50,32,50z M61,29h-8c-1.657,0-3,1.343-3,3\r\n\t\t\tc0,1.657,1.343,3,3,3h8c1.657,0,3-1.343,3-3C64,30.343,62.657,29,61,29z M32,0c-1.657,0-3,1.343-3,3v8c0,1.657,1.343,3,3,3\r\n\t\t\ts3-1.343,3-3V3C35,1.343,33.657,0,32,0z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M17,44c-0.828,0-1.578,0.336-2.121,0.879l-6,6C8.336,51.422,8,52.172,8,53\r\n\t\t\tc0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879l6-6C19.664,48.578,20,47.828,20,47C20,45.343,18.657,44,17,44z M14,32\r\n\t\t\tc0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h8C12.657,35,14,33.657,14,32z M13.121,8.879\r\n\t\t\tC12.578,8.336,11.828,8,11,8c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l6,6C15.422,19.664,16.172,20,17,20\r\n\t\t\tc1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L13.121,8.879z M47,20c0.828,0,1.578-0.336,2.121-0.879l6-6\r\n\t\t\tC55.664,12.578,56,11.828,56,11c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879l-6,6C44.336,15.422,44,16.172,44,17\r\n\t\t\tC44,18.657,45.343,20,47,20z M49.121,44.879C48.579,44.336,47.828,44,47,44c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121\r\n\t\t\tl6,6C51.422,55.664,52.172,56,53,56c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L49.121,44.879z M32,50\r\n\t\t\tc-1.657,0-3,1.343-3,3v8c0,1.657,1.343,3,3,3s3-1.343,3-3v-8C35,51.343,33.657,50,32,50z M61,29h-8c-1.657,0-3,1.343-3,3\r\n\t\t\tc0,1.657,1.343,3,3,3h8c1.657,0,3-1.343,3-3C64,30.343,62.657,29,61,29z M32,0c-1.657,0-3,1.343-3,3v8c0,1.657,1.343,3,3,3\r\n\t\t\ts3-1.343,3-3V3C35,1.343,33.657,0,32,0z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.loading = loading; \ No newline at end of file diff --git a/dist/ikons/location.js b/dist/ikons/location.js new file mode 100644 index 000000000..c5f417c50 --- /dev/null +++ b/dist/ikons/location.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.location = void 0; +var location = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "LOCATION" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M64,3c0-1.657-1.343-3-3-3c-0.375,0-0.73,0.077-1.061,0.202l-0.003-0.007l-58,22\r\n\t\t\tl0.003,0.008C0.808,22.632,0,23.718,0,25c0,1.414,0.981,2.592,2.298,2.909l-0.002,0.007l27.218,6.57l6.57,27.218l0.007-0.002\r\n\t\t\tC36.409,63.019,37.586,64,39,64c1.282,0,2.368-0.808,2.797-1.939l0.008,0.003l22-58l-0.019-0.007C63.913,3.726,64,3.376,64,3z\r\n\t\t\t M39.638,50.859l-4.722-19.562l-0.007,0.002c-0.263-1.09-1.119-1.941-2.207-2.205l0.002-0.01l-19.562-4.722L55.831,8.169\r\n\t\t\tL39.638,50.859z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M64,3c0-1.657-1.343-3-3-3c-0.375,0-0.73,0.077-1.061,0.202l-0.003-0.007l-58,22\r\n\t\t\tl0.003,0.008C0.808,22.632,0,23.718,0,25c0,1.414,0.981,2.592,2.298,2.909l-0.002,0.007l27.218,6.57l6.57,27.218l0.007-0.002\r\n\t\t\tC36.409,63.019,37.586,64,39,64c1.282,0,2.368-0.808,2.797-1.939l0.008,0.003l22-58l-0.019-0.007C63.913,3.726,64,3.376,64,3z\r\n\t\t\t M39.638,50.859l-4.722-19.562l-0.007,0.002c-0.263-1.09-1.119-1.941-2.207-2.205l0.002-0.01l-19.562-4.722L55.831,8.169\r\n\t\t\tL39.638,50.859z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.location = location; \ No newline at end of file diff --git a/dist/ikons/lock.js b/dist/ikons/lock.js new file mode 100644 index 000000000..ac6d6dd70 --- /dev/null +++ b/dist/ikons/lock.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.lock = void 0; +var lock = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "LOCK_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "LOCK" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "LOCK" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M55,32h-5V18c0-9.941-8.059-18-18-18c-9.941,0-18,8.059-18,18v14H9c-1.657,0-3,1.343-3,3v26c0,1.657,1.343,3,3,3h46\r\n\t\t\t\tc1.657,0,3-1.343,3-3V35C58,33.343,56.657,32,55,32z M35,49.168V55c0,1.657-1.343,3-3,3s-3-1.343-3-3v-5.832\r\n\t\t\t\tc-1.786-1.039-3-2.953-3-5.168c0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6C38,46.215,36.786,48.129,35,49.168z M44,32H20V18\r\n\t\t\t\tc0-6.627,5.373-12,12-12s12,5.373,12,12V32z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M55,32h-5V18c0-9.941-8.059-18-18-18c-9.941,0-18,8.059-18,18v14H9c-1.657,0-3,1.343-3,3v26c0,1.657,1.343,3,3,3h46\r\n\t\t\t\tc1.657,0,3-1.343,3-3V35C58,33.343,56.657,32,55,32z M35,49.168V55c0,1.657-1.343,3-3,3s-3-1.343-3-3v-5.832\r\n\t\t\t\tc-1.786-1.039-3-2.953-3-5.168c0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6C38,46.215,36.786,48.129,35,49.168z M44,32H20V18\r\n\t\t\t\tc0-6.627,5.373-12,12-12s12,5.373,12,12V32z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.lock = lock; \ No newline at end of file diff --git a/dist/ikons/login.js b/dist/ikons/login.js new file mode 100644 index 000000000..df3d21bdb --- /dev/null +++ b/dist/ikons/login.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.login = void 0; +var login = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "LOGIN_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "LOGIN" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "LOGIN" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M39.007,34.23C39.617,33.682,40,32.885,40,32s-0.384-1.681-0.993-2.23l0,0l-10-9l0,0C28.475,20.292,27.772,20,27,20\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.885,0.383,1.681,0.993,2.23l0,0L29.182,29H11c-1.657,0-3,1.343-3,3s1.343,3,3,3h18.182l-4.189,3.77\r\n\t\t\t\tl0,0C24.384,39.32,24,40.115,24,41c0,1.657,1.343,3,3,3c0.772,0,1.475-0.292,2.007-0.77l0,0L39.007,34.23L39.007,34.23z\r\n\t\t\t\t M56,31.932V8.935c0-1.657-1.343-3-3-3H38c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12v40H38c-1.657,0-3,1.342-3,3\r\n\t\t\t\tc0,1.656,1.343,3,3,3h15c1.657,0,3-1.344,3-3V31.937c0-0.001,0-0.002,0-0.003C56,31.934,56,31.933,56,31.932z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M39.007,34.23C39.617,33.682,40,32.885,40,32s-0.384-1.681-0.993-2.23l0,0l-10-9l0,0C28.475,20.292,27.772,20,27,20\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.885,0.383,1.681,0.993,2.23l0,0L29.182,29H11c-1.657,0-3,1.343-3,3s1.343,3,3,3h18.182l-4.189,3.77\r\n\t\t\t\tl0,0C24.384,39.32,24,40.115,24,41c0,1.657,1.343,3,3,3c0.772,0,1.475-0.292,2.007-0.77l0,0L39.007,34.23L39.007,34.23z\r\n\t\t\t\t M56,31.932V8.935c0-1.657-1.343-3-3-3H38c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12v40H38c-1.657,0-3,1.342-3,3\r\n\t\t\t\tc0,1.656,1.343,3,3,3h15c1.657,0,3-1.344,3-3V31.937c0-0.001,0-0.002,0-0.003C56,31.934,56,31.933,56,31.932z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.login = login; \ No newline at end of file diff --git a/dist/ikons/logout.js b/dist/ikons/logout.js new file mode 100644 index 000000000..43b04e458 --- /dev/null +++ b/dist/ikons/logout.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.logout = void 0; +var logout = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "LOGOUT_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "LOGOUT" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "LOGOUT" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M56,32c0-0.885-0.383-1.681-0.993-2.23l0,0l-10-9l0,0C44.475,20.292,43.771,20,43,20c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.885,0.384,1.681,0.993,2.23l0,0L45.182,29H27l0,0c-1.657,0-3,1.343-3,3s1.343,3,3,3l0,0h18.182l-4.188,3.77l0,0\r\n\t\t\t\tC40.384,39.32,40,40.115,40,41c0,1.657,1.343,3,3,3c0.771,0,1.475-0.292,2.007-0.77l0,0l10-9l0,0C55.617,33.682,56,32.885,56,32z\r\n\t\t\t\t M26,52H14V12h12c1.657,0,3-1.343,3-3s-1.343-3-3-3H11C9.343,6,8,7.343,8,9v46c0,1.657,1.343,3,3,3h15c1.657,0,3-1.343,3-3\r\n\t\t\t\tS27.657,52,26,52z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M56,32c0-0.885-0.383-1.681-0.993-2.23l0,0l-10-9l0,0C44.475,20.292,43.771,20,43,20c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.885,0.384,1.681,0.993,2.23l0,0L45.182,29H27l0,0c-1.657,0-3,1.343-3,3s1.343,3,3,3l0,0h18.182l-4.188,3.77l0,0\r\n\t\t\t\tC40.384,39.32,40,40.115,40,41c0,1.657,1.343,3,3,3c0.771,0,1.475-0.292,2.007-0.77l0,0l10-9l0,0C55.617,33.682,56,32.885,56,32z\r\n\t\t\t\t M26,52H14V12h12c1.657,0,3-1.343,3-3s-1.343-3-3-3H11C9.343,6,8,7.343,8,9v46c0,1.657,1.343,3,3,3h15c1.657,0,3-1.343,3-3\r\n\t\t\t\tS27.657,52,26,52z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.logout = logout; \ No newline at end of file diff --git a/dist/ikons/macbook.js b/dist/ikons/macbook.js new file mode 100644 index 000000000..12c3f5a99 --- /dev/null +++ b/dist/ikons/macbook.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.macbook = void 0; +var macbook = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "MACBOOK_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "MACBOOK" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "MACBOOK" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M58,44V15c0-1.657-1.343-3-3-3H9c-1.657,0-3,1.343-3,3v29H0v5c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3v-5H58z M39,49\r\n\t\t\t\tH25v-2h14V49z M54,42H10V16h44V42z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M58,44V15c0-1.657-1.343-3-3-3H9c-1.657,0-3,1.343-3,3v29H0v5c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3v-5H58z M39,49\r\n\t\t\t\tH25v-2h14V49z M54,42H10V16h44V42z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.macbook = macbook; \ No newline at end of file diff --git a/dist/ikons/magnifying_glass.js b/dist/ikons/magnifying_glass.js new file mode 100644 index 000000000..9c7fc6ff0 --- /dev/null +++ b/dist/ikons/magnifying_glass.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.magnifying_glass = void 0; +var magnifying_glass = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "MAGNIFYING_GLASS_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "MAGNIFYING_GLASS" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "MAGNIFYING_GLASS" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M62.243,53.758L44.658,36.173C46.768,32.602,48,28.449,48,24C48,10.745,37.255,0,24,0S0,10.745,0,24s10.745,24,24,24\r\n\t\t\t\tc4.449,0,8.602-1.232,12.173-3.342l17.584,17.584C54.843,63.329,56.343,64,58,64c3.314,0,6-2.686,6-6\r\n\t\t\t\tC64,56.343,63.328,54.843,62.243,53.758z M24,42c-9.941,0-18-8.059-18-18c0-9.941,8.059-18,18-18c9.941,0,18,8.059,18,18\r\n\t\t\t\tC42,33.941,33.941,42,24,42z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M62.243,53.758L44.658,36.173C46.768,32.602,48,28.449,48,24C48,10.745,37.255,0,24,0S0,10.745,0,24s10.745,24,24,24\r\n\t\t\t\tc4.449,0,8.602-1.232,12.173-3.342l17.584,17.584C54.843,63.329,56.343,64,58,64c3.314,0,6-2.686,6-6\r\n\t\t\t\tC64,56.343,63.328,54.843,62.243,53.758z M24,42c-9.941,0-18-8.059-18-18c0-9.941,8.059-18,18-18c9.941,0,18,8.059,18,18\r\n\t\t\t\tC42,33.941,33.941,42,24,42z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.magnifying_glass = magnifying_glass; \ No newline at end of file diff --git a/dist/ikons/magnifying_glass_add.js b/dist/ikons/magnifying_glass_add.js new file mode 100644 index 000000000..cb347404f --- /dev/null +++ b/dist/ikons/magnifying_glass_add.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.magnifying_glass_add = void 0; +var magnifying_glass_add = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "MAGNIFYING_GLASS__x2F__ADD_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "MAGNIFYING_GLASS__x2F__ADD" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "MAGNIFYING_GLASS__x2F__ADD" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M62.243,53.758L44.658,36.173C46.768,32.602,48,28.449,48,24C48,10.745,37.255,0,24,0S0,10.745,0,24s10.745,24,24,24\r\n\t\t\t\tc4.449,0,8.602-1.232,12.173-3.342l17.585,17.584C54.843,63.329,56.343,64,58,64c3.314,0,6-2.686,6-6\r\n\t\t\t\tC64,56.343,63.328,54.843,62.243,53.758z M24,42c-9.941,0-18-8.059-18-18c0-9.941,8.059-18,18-18c9.941,0,18,8.059,18,18\r\n\t\t\t\tC42,33.941,33.941,42,24,42z M34,21h-7v-7c0-1.657-1.343-3-3-3s-3,1.343-3,3v7h-7c-1.657,0-3,1.343-3,3s1.343,3,3,3h7v7\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3v-7h7c1.657,0,3-1.343,3-3C37,22.344,35.657,21,34,21z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M62.243,53.758L44.658,36.173C46.768,32.602,48,28.449,48,24C48,10.745,37.255,0,24,0S0,10.745,0,24s10.745,24,24,24\r\n\t\t\t\tc4.449,0,8.602-1.232,12.173-3.342l17.585,17.584C54.843,63.329,56.343,64,58,64c3.314,0,6-2.686,6-6\r\n\t\t\t\tC64,56.343,63.328,54.843,62.243,53.758z M24,42c-9.941,0-18-8.059-18-18c0-9.941,8.059-18,18-18c9.941,0,18,8.059,18,18\r\n\t\t\t\tC42,33.941,33.941,42,24,42z M34,21h-7v-7c0-1.657-1.343-3-3-3s-3,1.343-3,3v7h-7c-1.657,0-3,1.343-3,3s1.343,3,3,3h7v7\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3v-7h7c1.657,0,3-1.343,3-3C37,22.344,35.657,21,34,21z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.magnifying_glass_add = magnifying_glass_add; \ No newline at end of file diff --git a/dist/ikons/magnifying_glass_remove.js b/dist/ikons/magnifying_glass_remove.js new file mode 100644 index 000000000..f89a65bbc --- /dev/null +++ b/dist/ikons/magnifying_glass_remove.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.magnifying_glass_remove = void 0; +var magnifying_glass_remove = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "MAGNIFYING_GLASS__x2F__REMOVE_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "MAGNIFYING_GLASS__x2F__REMOVE" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "MAGNIFYING_GLASS__x2F__REMOVE" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M62.243,53.758L44.658,36.173C46.768,32.602,48,28.449,48,24C48,10.745,37.255,0,24,0S0,10.745,0,24s10.745,24,24,24\r\n\t\t\t\tc4.449,0,8.602-1.232,12.173-3.342l17.585,17.584C54.843,63.329,56.343,64,58,64c3.314,0,6-2.686,6-6\r\n\t\t\t\tC64,56.343,63.328,54.843,62.243,53.758z M24,42c-9.941,0-18-8.059-18-18c0-9.941,8.059-18,18-18c9.941,0,18,8.059,18,18\r\n\t\t\t\tC42,33.941,33.941,42,24,42z M34,21H14c-1.657,0-3,1.343-3,3s1.343,3,3,3h20c1.657,0,3-1.343,3-3C37,22.344,35.657,21,34,21z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M62.243,53.758L44.658,36.173C46.768,32.602,48,28.449,48,24C48,10.745,37.255,0,24,0S0,10.745,0,24s10.745,24,24,24\r\n\t\t\t\tc4.449,0,8.602-1.232,12.173-3.342l17.585,17.584C54.843,63.329,56.343,64,58,64c3.314,0,6-2.686,6-6\r\n\t\t\t\tC64,56.343,63.328,54.843,62.243,53.758z M24,42c-9.941,0-18-8.059-18-18c0-9.941,8.059-18,18-18c9.941,0,18,8.059,18,18\r\n\t\t\t\tC42,33.941,33.941,42,24,42z M34,21H14c-1.657,0-3,1.343-3,3s1.343,3,3,3h20c1.657,0,3-1.343,3-3C37,22.344,35.657,21,34,21z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.magnifying_glass_remove = magnifying_glass_remove; \ No newline at end of file diff --git a/dist/ikons/mail.js b/dist/ikons/mail.js new file mode 100644 index 000000000..55dfafbcf --- /dev/null +++ b/dist/ikons/mail.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.mail = void 0; +var mail = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "MAIL_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "MAIL" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "MAIL" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M63.002,10.78C62.471,10.3,61.773,10,61,10H3c-0.773,0-1.47,0.3-2.002,0.78L32,35L63.002,10.78z M0.894,10.866\r\n\t\t\t\tC0.343,11.41,0,12.165,0,13v38c0,0.789,0.311,1.501,0.809,2.037l19.569-23.296L0.894,10.866z M32,41l-8.136-7.881L0.943,53.175\r\n\t\t\t\tC1.481,53.684,2.202,54,3,54h58c0.798,0,1.52-0.316,2.057-0.825l-22.92-20.056L32,41z M63.105,10.866L43.622,29.741\r\n\t\t\t\tl19.569,23.296C63.689,52.502,64,51.789,64,51V13C64,12.165,63.657,11.41,63.105,10.866z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M63.002,10.78C62.471,10.3,61.773,10,61,10H3c-0.773,0-1.47,0.3-2.002,0.78L32,35L63.002,10.78z M0.894,10.866\r\n\t\t\t\tC0.343,11.41,0,12.165,0,13v38c0,0.789,0.311,1.501,0.809,2.037l19.569-23.296L0.894,10.866z M32,41l-8.136-7.881L0.943,53.175\r\n\t\t\t\tC1.481,53.684,2.202,54,3,54h58c0.798,0,1.52-0.316,2.057-0.825l-22.92-20.056L32,41z M63.105,10.866L43.622,29.741\r\n\t\t\t\tl19.569,23.296C63.689,52.502,64,51.789,64,51V13C64,12.165,63.657,11.41,63.105,10.866z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.mail = mail; \ No newline at end of file diff --git a/dist/ikons/mail_incoming.js b/dist/ikons/mail_incoming.js new file mode 100644 index 000000000..8274d1030 --- /dev/null +++ b/dist/ikons/mail_incoming.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.mail_incoming = void 0; +var mail_incoming = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "MAIL__x2F__INCOMING_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "MAIL__x2F__INCOMING" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "MAIL__x2F__INCOMING" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M29.879,29.122C30.422,29.664,31.172,30,32,30c0.829,0,1.578-0.336,2.121-0.879l7-7C41.664,21.579,42,20.829,42,20\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L35,19.757V6c0-1.657-1.343-3-3-3s-3,1.343-3,3v13.757l-1.879-1.879\r\n\t\t\t\tC26.578,17.336,25.828,17,25,17c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L29.879,29.122z M63.002,17.78\r\n\t\t\t\tC62.471,17.3,61.773,17,61,17H44.168C44.684,17.886,45,18.902,45,20c0,1.657-0.672,3.157-1.757,4.243l-7,7\r\n\t\t\t\tC35.157,32.328,33.657,33,32,33s-3.157-0.672-4.243-1.757l-7-7C19.672,23.157,19,21.657,19,20c0-1.098,0.317-2.114,0.832-3H3\r\n\t\t\t\tc-0.773,0-1.47,0.3-2.002,0.78L32,42L63.002,17.78z M63.105,17.866L43.622,36.741l19.569,23.296C63.689,59.502,64,58.789,64,58\r\n\t\t\t\tV20C64,19.165,63.657,18.41,63.105,17.866z M0.894,17.866C0.343,18.41,0,19.165,0,20v38c0,0.789,0.311,1.501,0.809,2.037\r\n\t\t\t\tl19.569-23.296L0.894,17.866z M32,48l-8.136-7.881L0.943,60.175C1.481,60.684,2.202,61,3,61h58c0.798,0,1.52-0.316,2.057-0.825\r\n\t\t\t\tl-22.92-20.056L32,48z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M29.879,29.122C30.422,29.664,31.172,30,32,30c0.829,0,1.578-0.336,2.121-0.879l7-7C41.664,21.579,42,20.829,42,20\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L35,19.757V6c0-1.657-1.343-3-3-3s-3,1.343-3,3v13.757l-1.879-1.879\r\n\t\t\t\tC26.578,17.336,25.828,17,25,17c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L29.879,29.122z M63.002,17.78\r\n\t\t\t\tC62.471,17.3,61.773,17,61,17H44.168C44.684,17.886,45,18.902,45,20c0,1.657-0.672,3.157-1.757,4.243l-7,7\r\n\t\t\t\tC35.157,32.328,33.657,33,32,33s-3.157-0.672-4.243-1.757l-7-7C19.672,23.157,19,21.657,19,20c0-1.098,0.317-2.114,0.832-3H3\r\n\t\t\t\tc-0.773,0-1.47,0.3-2.002,0.78L32,42L63.002,17.78z M63.105,17.866L43.622,36.741l19.569,23.296C63.689,59.502,64,58.789,64,58\r\n\t\t\t\tV20C64,19.165,63.657,18.41,63.105,17.866z M0.894,17.866C0.343,18.41,0,19.165,0,20v38c0,0.789,0.311,1.501,0.809,2.037\r\n\t\t\t\tl19.569-23.296L0.894,17.866z M32,48l-8.136-7.881L0.943,60.175C1.481,60.684,2.202,61,3,61h58c0.798,0,1.52-0.316,2.057-0.825\r\n\t\t\t\tl-22.92-20.056L32,48z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.mail_incoming = mail_incoming; \ No newline at end of file diff --git a/dist/ikons/mail_outgoing.js b/dist/ikons/mail_outgoing.js new file mode 100644 index 000000000..ce91e148d --- /dev/null +++ b/dist/ikons/mail_outgoing.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.mail_outgoing = void 0; +var mail_outgoing = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "MAIL__x2F__OUTGOING_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "MAIL__x2F__OUTGOING" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "MAIL__x2F__OUTGOING" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M0.894,17.866C0.343,18.41,0,19.165,0,20v38c0,0.789,0.311,1.501,0.809,2.037l19.569-23.296L0.894,17.866z M25,16\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L29,13.243V27c0,1.657,1.343,3,3,3s3-1.343,3-3V13.243l1.879,1.879\r\n\t\t\t\tC37.422,15.664,38.172,16,39,16c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121l-7-7C33.578,3.336,32.828,3,32,3\r\n\t\t\t\ts-1.578,0.336-2.121,0.879l-7,7C22.336,11.422,22,12.172,22,13C22,14.657,23.343,16,25,16z M63.002,17.78\r\n\t\t\t\tC62.471,17.3,61.773,17,61,17H43.443c-1.098,1.219-2.674,2-4.443,2c-0.344,0-0.673-0.053-1-0.11V27c0,3.314-2.686,6-6,6\r\n\t\t\t\tc-3.314,0-6-2.686-6-6v-8.11C25.673,18.947,25.344,19,25,19c-1.77,0-3.345-0.781-4.443-2H3c-0.773,0-1.47,0.3-2.002,0.78L32,42\r\n\t\t\t\tL63.002,17.78z M63.105,17.866L43.622,36.741l19.569,23.296C63.689,59.502,64,58.789,64,58V20\r\n\t\t\t\tC64,19.165,63.657,18.41,63.105,17.866z M32,48l-8.136-7.881L0.943,60.175C1.481,60.684,2.202,61,3,61h58\r\n\t\t\t\tc0.798,0,1.52-0.316,2.057-0.825l-22.92-20.056L32,48z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M0.894,17.866C0.343,18.41,0,19.165,0,20v38c0,0.789,0.311,1.501,0.809,2.037l19.569-23.296L0.894,17.866z M25,16\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L29,13.243V27c0,1.657,1.343,3,3,3s3-1.343,3-3V13.243l1.879,1.879\r\n\t\t\t\tC37.422,15.664,38.172,16,39,16c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121l-7-7C33.578,3.336,32.828,3,32,3\r\n\t\t\t\ts-1.578,0.336-2.121,0.879l-7,7C22.336,11.422,22,12.172,22,13C22,14.657,23.343,16,25,16z M63.002,17.78\r\n\t\t\t\tC62.471,17.3,61.773,17,61,17H43.443c-1.098,1.219-2.674,2-4.443,2c-0.344,0-0.673-0.053-1-0.11V27c0,3.314-2.686,6-6,6\r\n\t\t\t\tc-3.314,0-6-2.686-6-6v-8.11C25.673,18.947,25.344,19,25,19c-1.77,0-3.345-0.781-4.443-2H3c-0.773,0-1.47,0.3-2.002,0.78L32,42\r\n\t\t\t\tL63.002,17.78z M63.105,17.866L43.622,36.741l19.569,23.296C63.689,59.502,64,58.789,64,58V20\r\n\t\t\t\tC64,19.165,63.657,18.41,63.105,17.866z M32,48l-8.136-7.881L0.943,60.175C1.481,60.684,2.202,61,3,61h58\r\n\t\t\t\tc0.798,0,1.52-0.316,2.057-0.825l-22.92-20.056L32,48z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.mail_outgoing = mail_outgoing; \ No newline at end of file diff --git a/dist/ikons/map.js b/dist/ikons/map.js new file mode 100644 index 000000000..5efeed100 --- /dev/null +++ b/dist/ikons/map.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.map = void 0; +var map = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "MAP_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "MAP" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "MAP" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M60.866,15.668L60.866,15.668l-0.024-0.02c-0.072-0.058-0.145-0.117-0.224-0.168L44.867,3.667l-0.001,0.001\r\n\t\t\t\tC44.352,3.256,43.709,3,43,3c-0.495,0-0.956,0.131-1.367,0.344L41.63,3.339L21.251,14.455L6.867,3.667L6.866,3.668\r\n\t\t\t\tC6.352,3.256,5.709,3,5,3C3.343,3,2,4.343,2,6v40c0,1.057,0.548,1.98,1.372,2.514l15.815,11.861C19.692,60.762,20.315,61,21,61\r\n\t\t\t\tc0.528,0,1.018-0.148,1.449-0.389l0.003,0.007l20.272-11.058l14.543,10.905l0.012-0.016C57.766,60.795,58.357,61,59,61\r\n\t\t\t\tc1.657,0,3-1.343,3-3V18C62,17.052,61.552,16.218,60.866,15.668z M18,51.986l-10-7.5V12.017l10,7.5V51.986z M40,44.212l-16,8.728\r\n\t\t\t\tV19.79l16-8.727V44.212z M56,52.018l-10-7.5v-32.5l10,7.5V52.018z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M60.866,15.668L60.866,15.668l-0.024-0.02c-0.072-0.058-0.145-0.117-0.224-0.168L44.867,3.667l-0.001,0.001\r\n\t\t\t\tC44.352,3.256,43.709,3,43,3c-0.495,0-0.956,0.131-1.367,0.344L41.63,3.339L21.251,14.455L6.867,3.667L6.866,3.668\r\n\t\t\t\tC6.352,3.256,5.709,3,5,3C3.343,3,2,4.343,2,6v40c0,1.057,0.548,1.98,1.372,2.514l15.815,11.861C19.692,60.762,20.315,61,21,61\r\n\t\t\t\tc0.528,0,1.018-0.148,1.449-0.389l0.003,0.007l20.272-11.058l14.543,10.905l0.012-0.016C57.766,60.795,58.357,61,59,61\r\n\t\t\t\tc1.657,0,3-1.343,3-3V18C62,17.052,61.552,16.218,60.866,15.668z M18,51.986l-10-7.5V12.017l10,7.5V51.986z M40,44.212l-16,8.728\r\n\t\t\t\tV19.79l16-8.727V44.212z M56,52.018l-10-7.5v-32.5l10,7.5V52.018z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.map = map; \ No newline at end of file diff --git a/dist/ikons/map_add.js b/dist/ikons/map_add.js new file mode 100644 index 000000000..09e8152e7 --- /dev/null +++ b/dist/ikons/map_add.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.map_add = void 0; +var map_add = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "MAP__x2F__ADD_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "MAP__x2F__ADD" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "MAP__x2F__ADD" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M50,35c-7.18,0-13,5.82-13,13s5.82,13,13,13s13-5.82,13-13S57.18,35,50,35z M56,51h-3v3c0,1.657-1.343,3-3,3\r\n\t\t\t\ts-3-1.343-3-3v-3h-3c-1.657,0-3-1.343-3-3s1.343-3,3-3h3v-3c0-1.657,1.343-3,3-3s3,1.343,3,3v3h3c1.657,0,3,1.343,3,3\r\n\t\t\t\tS57.657,51,56,51z M34.055,46.909L23,52.939V19.79l16-8.727V36.4c1.693-1.605,3.732-2.846,6-3.592V12.017l10,7.5v13.292\r\n\t\t\t\tc2.268,0.746,4.307,1.986,6,3.592V18c0-0.948-0.448-1.782-1.134-2.332l0.001-0.001l-0.025-0.019\r\n\t\t\t\tc-0.072-0.058-0.145-0.117-0.224-0.168L43.867,3.667l-0.001,0.001C43.352,3.256,42.709,3,42,3c-0.495,0-0.956,0.131-1.367,0.344\r\n\t\t\t\tL40.63,3.339L20.251,14.455L5.867,3.667L5.866,3.668C5.352,3.256,4.709,3,4,3C2.343,3,1,4.343,1,6v40\r\n\t\t\t\tc0,1.057,0.548,1.98,1.372,2.514l15.815,11.861C18.692,60.762,19.315,61,20,61c0.528,0,1.018-0.148,1.449-0.389l0.003,0.007\r\n\t\t\t\tl13.457-7.341C34.331,51.623,34,49.852,34,48C34,47.632,34.031,47.271,34.055,46.909z M17,51.986l-10-7.5V12.017l10,7.5V51.986z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M50,35c-7.18,0-13,5.82-13,13s5.82,13,13,13s13-5.82,13-13S57.18,35,50,35z M56,51h-3v3c0,1.657-1.343,3-3,3\r\n\t\t\t\ts-3-1.343-3-3v-3h-3c-1.657,0-3-1.343-3-3s1.343-3,3-3h3v-3c0-1.657,1.343-3,3-3s3,1.343,3,3v3h3c1.657,0,3,1.343,3,3\r\n\t\t\t\tS57.657,51,56,51z M34.055,46.909L23,52.939V19.79l16-8.727V36.4c1.693-1.605,3.732-2.846,6-3.592V12.017l10,7.5v13.292\r\n\t\t\t\tc2.268,0.746,4.307,1.986,6,3.592V18c0-0.948-0.448-1.782-1.134-2.332l0.001-0.001l-0.025-0.019\r\n\t\t\t\tc-0.072-0.058-0.145-0.117-0.224-0.168L43.867,3.667l-0.001,0.001C43.352,3.256,42.709,3,42,3c-0.495,0-0.956,0.131-1.367,0.344\r\n\t\t\t\tL40.63,3.339L20.251,14.455L5.867,3.667L5.866,3.668C5.352,3.256,4.709,3,4,3C2.343,3,1,4.343,1,6v40\r\n\t\t\t\tc0,1.057,0.548,1.98,1.372,2.514l15.815,11.861C18.692,60.762,19.315,61,20,61c0.528,0,1.018-0.148,1.449-0.389l0.003,0.007\r\n\t\t\t\tl13.457-7.341C34.331,51.623,34,49.852,34,48C34,47.632,34.031,47.271,34.055,46.909z M17,51.986l-10-7.5V12.017l10,7.5V51.986z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.map_add = map_add; \ No newline at end of file diff --git a/dist/ikons/map_delete.js b/dist/ikons/map_delete.js new file mode 100644 index 000000000..1cfbc017f --- /dev/null +++ b/dist/ikons/map_delete.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.map_delete = void 0; +var map_delete = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "MAP__x2F__DELETE_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "MAP__x2F__DELETE" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "MAP__x2F__DELETE" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M34.055,46.909L23,52.939V19.79l16-8.727V36.4c1.693-1.605,3.732-2.846,6-3.592V12.017l10,7.5v13.292\r\n\t\t\t\tc2.268,0.746,4.307,1.986,6,3.592V18c0-0.948-0.448-1.782-1.134-2.332l0.001-0.001l-0.025-0.019\r\n\t\t\t\tc-0.074-0.058-0.145-0.117-0.224-0.168L43.867,3.667l-0.001,0.001C43.352,3.256,42.709,3,42,3c-0.495,0-0.956,0.131-1.367,0.344\r\n\t\t\t\tL40.63,3.339L20.251,14.455L5.867,3.667L5.866,3.668C5.352,3.256,4.709,3,4,3C2.343,3,1,4.343,1,6v40\r\n\t\t\t\tc0,1.057,0.548,1.98,1.372,2.514l15.815,11.861C18.692,60.762,19.315,61,20,61c0.529,0,1.018-0.148,1.449-0.389l0.003,0.007\r\n\t\t\t\tl13.457-7.341C34.331,51.623,34,49.852,34,48C34,47.632,34.031,47.271,34.055,46.909z M17,51.986l-10-7.5V12.017l10,7.5V51.986z\r\n\t\t\t\t M50,35c-7.18,0-13,5.82-13,13s5.82,13,13,13s13-5.82,13-13S57.18,35,50,35z M56.121,49.879C56.664,50.422,57,51.172,57,52\r\n\t\t\t\tc0,1.657-1.343,3-3,3c-0.828,0-1.578-0.336-2.121-0.879L50,52.243l-1.879,1.879C47.578,54.664,46.828,55,46,55\r\n\t\t\t\tc-1.657,0-3-1.343-3-3c0-0.829,0.336-1.578,0.879-2.121L45.757,48l-1.879-1.879C43.336,45.578,43,44.829,43,44\r\n\t\t\t\tc0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879L50,43.757l1.879-1.879C52.422,41.336,53.172,41,54,41c1.657,0,3,1.343,3,3\r\n\t\t\t\tc0,0.828-0.336,1.578-0.879,2.121L54.243,48L56.121,49.879z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M34.055,46.909L23,52.939V19.79l16-8.727V36.4c1.693-1.605,3.732-2.846,6-3.592V12.017l10,7.5v13.292\r\n\t\t\t\tc2.268,0.746,4.307,1.986,6,3.592V18c0-0.948-0.448-1.782-1.134-2.332l0.001-0.001l-0.025-0.019\r\n\t\t\t\tc-0.074-0.058-0.145-0.117-0.224-0.168L43.867,3.667l-0.001,0.001C43.352,3.256,42.709,3,42,3c-0.495,0-0.956,0.131-1.367,0.344\r\n\t\t\t\tL40.63,3.339L20.251,14.455L5.867,3.667L5.866,3.668C5.352,3.256,4.709,3,4,3C2.343,3,1,4.343,1,6v40\r\n\t\t\t\tc0,1.057,0.548,1.98,1.372,2.514l15.815,11.861C18.692,60.762,19.315,61,20,61c0.529,0,1.018-0.148,1.449-0.389l0.003,0.007\r\n\t\t\t\tl13.457-7.341C34.331,51.623,34,49.852,34,48C34,47.632,34.031,47.271,34.055,46.909z M17,51.986l-10-7.5V12.017l10,7.5V51.986z\r\n\t\t\t\t M50,35c-7.18,0-13,5.82-13,13s5.82,13,13,13s13-5.82,13-13S57.18,35,50,35z M56.121,49.879C56.664,50.422,57,51.172,57,52\r\n\t\t\t\tc0,1.657-1.343,3-3,3c-0.828,0-1.578-0.336-2.121-0.879L50,52.243l-1.879,1.879C47.578,54.664,46.828,55,46,55\r\n\t\t\t\tc-1.657,0-3-1.343-3-3c0-0.829,0.336-1.578,0.879-2.121L45.757,48l-1.879-1.879C43.336,45.578,43,44.829,43,44\r\n\t\t\t\tc0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879L50,43.757l1.879-1.879C52.422,41.336,53.172,41,54,41c1.657,0,3,1.343,3,3\r\n\t\t\t\tc0,0.828-0.336,1.578-0.879,2.121L54.243,48L56.121,49.879z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.map_delete = map_delete; \ No newline at end of file diff --git a/dist/ikons/map_ok.js b/dist/ikons/map_ok.js new file mode 100644 index 000000000..7b30147c2 --- /dev/null +++ b/dist/ikons/map_ok.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.map_ok = void 0; +var map_ok = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "MAP__x2F__OK_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "MAP__x2F__OK" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "MAP__x2F__OK" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M50,35c-7.18,0-13,5.82-13,13s5.82,13,13,13s13-5.82,13-13S57.18,35,50,35z M58.121,47.121l-8,8\r\n\t\t\t\tC49.578,55.664,48.828,56,48,56s-1.578-0.336-2.121-0.879l-4-4C41.336,50.578,41,49.828,41,49c0-1.657,1.343-3,3-3\r\n\t\t\t\tc0.828,0,1.578,0.336,2.121,0.879L48,48.757l5.879-5.879C54.422,42.336,55.172,42,56,42c1.657,0,3,1.343,3,3\r\n\t\t\t\tC59,45.829,58.664,46.578,58.121,47.121z M34.055,46.909L23,52.939V19.79l16-8.727V36.4c1.693-1.605,3.732-2.846,6-3.592V12.017\r\n\t\t\t\tl10,7.5v13.292c2.268,0.746,4.307,1.986,6,3.592V18c0-0.948-0.448-1.782-1.134-2.332l0.001-0.001l-0.025-0.019\r\n\t\t\t\tc-0.074-0.058-0.145-0.117-0.224-0.168L43.867,3.667l-0.001,0.001C43.352,3.256,42.709,3,42,3c-0.495,0-0.955,0.131-1.367,0.344\r\n\t\t\t\tL40.63,3.339L20.251,14.455L5.867,3.667L5.866,3.668C5.352,3.256,4.709,3,4,3C2.343,3,1,4.343,1,6v40\r\n\t\t\t\tc0,1.057,0.548,1.98,1.372,2.514l15.815,11.861C18.692,60.762,19.315,61,20,61c0.528,0,1.018-0.148,1.449-0.389l0.004,0.007\r\n\t\t\t\tl13.457-7.341C34.331,51.623,34,49.852,34,48C34,47.632,34.031,47.271,34.055,46.909z M17,51.986l-10-7.5V12.017l10,7.5V51.986z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M50,35c-7.18,0-13,5.82-13,13s5.82,13,13,13s13-5.82,13-13S57.18,35,50,35z M58.121,47.121l-8,8\r\n\t\t\t\tC49.578,55.664,48.828,56,48,56s-1.578-0.336-2.121-0.879l-4-4C41.336,50.578,41,49.828,41,49c0-1.657,1.343-3,3-3\r\n\t\t\t\tc0.828,0,1.578,0.336,2.121,0.879L48,48.757l5.879-5.879C54.422,42.336,55.172,42,56,42c1.657,0,3,1.343,3,3\r\n\t\t\t\tC59,45.829,58.664,46.578,58.121,47.121z M34.055,46.909L23,52.939V19.79l16-8.727V36.4c1.693-1.605,3.732-2.846,6-3.592V12.017\r\n\t\t\t\tl10,7.5v13.292c2.268,0.746,4.307,1.986,6,3.592V18c0-0.948-0.448-1.782-1.134-2.332l0.001-0.001l-0.025-0.019\r\n\t\t\t\tc-0.074-0.058-0.145-0.117-0.224-0.168L43.867,3.667l-0.001,0.001C43.352,3.256,42.709,3,42,3c-0.495,0-0.955,0.131-1.367,0.344\r\n\t\t\t\tL40.63,3.339L20.251,14.455L5.867,3.667L5.866,3.668C5.352,3.256,4.709,3,4,3C2.343,3,1,4.343,1,6v40\r\n\t\t\t\tc0,1.057,0.548,1.98,1.372,2.514l15.815,11.861C18.692,60.762,19.315,61,20,61c0.528,0,1.018-0.148,1.449-0.389l0.004,0.007\r\n\t\t\t\tl13.457-7.341C34.331,51.623,34,49.852,34,48C34,47.632,34.031,47.271,34.055,46.909z M17,51.986l-10-7.5V12.017l10,7.5V51.986z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.map_ok = map_ok; \ No newline at end of file diff --git a/dist/ikons/map_remove.js b/dist/ikons/map_remove.js new file mode 100644 index 000000000..07c7b2b11 --- /dev/null +++ b/dist/ikons/map_remove.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.map_remove = void 0; +var map_remove = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "MAP__x2F__REMOVE_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "MAP__x2F__REMOVE" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "MAP__x2F__REMOVE" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M50,35c-7.18,0-13,5.82-13,13s5.82,13,13,13s13-5.82,13-13S57.18,35,50,35z M56,51H44c-1.657,0-3-1.343-3-3s1.343-3,3-3\r\n\t\t\t\th12c1.657,0,3,1.343,3,3S57.657,51,56,51z M34.055,46.909L23,52.939V19.79l16-8.727V36.4c1.693-1.605,3.732-2.846,6-3.592V12.017\r\n\t\t\t\tl10,7.5v13.292c2.268,0.746,4.307,1.986,6,3.592V18c0-0.948-0.448-1.782-1.134-2.332l0.001-0.001l-0.025-0.019\r\n\t\t\t\tc-0.074-0.058-0.145-0.117-0.224-0.168L43.867,3.667l-0.001,0.001C43.352,3.256,42.709,3,42,3c-0.495,0-0.956,0.131-1.367,0.344\r\n\t\t\t\tL40.63,3.339L20.251,14.455L5.867,3.667L5.866,3.668C5.352,3.256,4.709,3,4,3C2.343,3,1,4.343,1,6v40\r\n\t\t\t\tc0,1.057,0.548,1.98,1.372,2.514l15.815,11.861C18.692,60.762,19.315,61,20,61c0.528,0,1.018-0.148,1.449-0.389l0.003,0.007\r\n\t\t\t\tl13.457-7.341C34.331,51.623,34,49.852,34,48C34,47.632,34.031,47.271,34.055,46.909z M17,51.986l-10-7.5V12.017l10,7.5V51.986z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M50,35c-7.18,0-13,5.82-13,13s5.82,13,13,13s13-5.82,13-13S57.18,35,50,35z M56,51H44c-1.657,0-3-1.343-3-3s1.343-3,3-3\r\n\t\t\t\th12c1.657,0,3,1.343,3,3S57.657,51,56,51z M34.055,46.909L23,52.939V19.79l16-8.727V36.4c1.693-1.605,3.732-2.846,6-3.592V12.017\r\n\t\t\t\tl10,7.5v13.292c2.268,0.746,4.307,1.986,6,3.592V18c0-0.948-0.448-1.782-1.134-2.332l0.001-0.001l-0.025-0.019\r\n\t\t\t\tc-0.074-0.058-0.145-0.117-0.224-0.168L43.867,3.667l-0.001,0.001C43.352,3.256,42.709,3,42,3c-0.495,0-0.956,0.131-1.367,0.344\r\n\t\t\t\tL40.63,3.339L20.251,14.455L5.867,3.667L5.866,3.668C5.352,3.256,4.709,3,4,3C2.343,3,1,4.343,1,6v40\r\n\t\t\t\tc0,1.057,0.548,1.98,1.372,2.514l15.815,11.861C18.692,60.762,19.315,61,20,61c0.528,0,1.018-0.148,1.449-0.389l0.003,0.007\r\n\t\t\t\tl13.457-7.341C34.331,51.623,34,49.852,34,48C34,47.632,34.031,47.271,34.055,46.909z M17,51.986l-10-7.5V12.017l10,7.5V51.986z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.map_remove = map_remove; \ No newline at end of file diff --git a/dist/ikons/microphone.js b/dist/ikons/microphone.js new file mode 100644 index 000000000..5110850ff --- /dev/null +++ b/dist/ikons/microphone.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.microphone = void 0; +var microphone = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "MICROPHONE_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "MICROPHONE" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "MICROPHONE" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M32,40c6.627,0,12-5.373,12-12V12c0-6.627-5.373-12-12-12S20,5.373,20,12v16C20,34.628,25.373,40,32,40z M54,29.023\r\n\t\t\t\tc0-0.005,0-0.01-0.001-0.015C53.999,29.005,54,29.003,54,29c0-1.657-1.343-3-3-3s-3,1.343-3,3l0,0\r\n\t\t\t\tc-0.004,8.835-7.165,15.996-16,16c-8.835-0.004-15.996-7.165-16-16l0,0c0-1.657-1.343-3-3-3s-3,1.343-3,3\r\n\t\t\t\tc0,0.003,0.001,0.005,0.001,0.008C10,29.013,10,29.018,10,29.023c0,11.125,8.274,20.295,19,21.752V58H19c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h26c1.657,0,3-1.343,3-3s-1.343-3-3-3H35v-7.225C45.727,49.318,54,40.148,54,29.023z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M32,40c6.627,0,12-5.373,12-12V12c0-6.627-5.373-12-12-12S20,5.373,20,12v16C20,34.628,25.373,40,32,40z M54,29.023\r\n\t\t\t\tc0-0.005,0-0.01-0.001-0.015C53.999,29.005,54,29.003,54,29c0-1.657-1.343-3-3-3s-3,1.343-3,3l0,0\r\n\t\t\t\tc-0.004,8.835-7.165,15.996-16,16c-8.835-0.004-15.996-7.165-16-16l0,0c0-1.657-1.343-3-3-3s-3,1.343-3,3\r\n\t\t\t\tc0,0.003,0.001,0.005,0.001,0.008C10,29.013,10,29.018,10,29.023c0,11.125,8.274,20.295,19,21.752V58H19c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h26c1.657,0,3-1.343,3-3s-1.343-3-3-3H35v-7.225C45.727,49.318,54,40.148,54,29.023z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.microphone = microphone; \ No newline at end of file diff --git a/dist/ikons/microphone_off.js b/dist/ikons/microphone_off.js new file mode 100644 index 000000000..45fe97839 --- /dev/null +++ b/dist/ikons/microphone_off.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.microphone_off = void 0; +var microphone_off = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "MICROPHONE__x2F__OFF_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "MICROPHONE__x2F__OFF" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "MICROPHONE__x2F__OFF" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12.631,39.404l5.051-3.301C16.617,33.961,16.002,31.555,16,29l0,0c0-1.657-1.343-3-3-3s-3,1.343-3,3\r\n\t\t\t\tc0,0.003,0.001,0.005,0.001,0.008C10,29.013,10,29.018,10,29.023C10,32.785,10.964,36.312,12.631,39.404z M44,18.895V12\r\n\t\t\t\tc0-6.627-5.373-12-12-12S20,5.373,20,12v16c0,2.047,0.515,3.973,1.419,5.659L44,18.895z M59.5,15.1c0-0.829-0.672-1.5-1.5-1.5\r\n\t\t\t\tc-0.303,0-0.585,0.091-0.82,0.246v-0.001l-0.018,0.011l0,0L5.079,47.945l0,0C4.67,48.214,4.4,48.675,4.4,49.2\r\n\t\t\t\tc0,0.829,0.672,1.5,1.5,1.5c0.303,0,0.585-0.091,0.821-0.246v0.001l0.017-0.012l0,0L58.82,16.355v-0.001\r\n\t\t\t\tC59.23,16.087,59.5,15.625,59.5,15.1z M43.859,29.739l-15.025,9.825C29.844,39.841,30.902,40,32,40\r\n\t\t\t\tC38.035,40,43.016,35.54,43.859,29.739z M51,26c-1.657,0-3,1.343-3,3l0,0c-0.004,8.092-6.018,14.759-13.816,15.829\r\n\t\t\t\tc-0.24,0.034-0.48,0.062-0.723,0.086c-0.441,0.04-0.885,0.074-1.336,0.078v0.002c-0.04,0-0.078,0.005-0.118,0.005\r\n\t\t\t\tc-2.959,0-5.72-0.816-8.098-2.216l-5.431,3.551c2.987,2.326,6.586,3.906,10.521,4.44V58H19c-1.657,0-3,1.343-3,3s1.343,3,3,3h26\r\n\t\t\t\tc1.657,0,3-1.343,3-3s-1.343-3-3-3H35v-7.225c10.727-1.457,19-10.627,19-21.752c0-0.005,0-0.01-0.001-0.015\r\n\t\t\t\tC53.999,29.005,54,29.003,54,29C54,27.343,52.657,26,51,26z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12.631,39.404l5.051-3.301C16.617,33.961,16.002,31.555,16,29l0,0c0-1.657-1.343-3-3-3s-3,1.343-3,3\r\n\t\t\t\tc0,0.003,0.001,0.005,0.001,0.008C10,29.013,10,29.018,10,29.023C10,32.785,10.964,36.312,12.631,39.404z M44,18.895V12\r\n\t\t\t\tc0-6.627-5.373-12-12-12S20,5.373,20,12v16c0,2.047,0.515,3.973,1.419,5.659L44,18.895z M59.5,15.1c0-0.829-0.672-1.5-1.5-1.5\r\n\t\t\t\tc-0.303,0-0.585,0.091-0.82,0.246v-0.001l-0.018,0.011l0,0L5.079,47.945l0,0C4.67,48.214,4.4,48.675,4.4,49.2\r\n\t\t\t\tc0,0.829,0.672,1.5,1.5,1.5c0.303,0,0.585-0.091,0.821-0.246v0.001l0.017-0.012l0,0L58.82,16.355v-0.001\r\n\t\t\t\tC59.23,16.087,59.5,15.625,59.5,15.1z M43.859,29.739l-15.025,9.825C29.844,39.841,30.902,40,32,40\r\n\t\t\t\tC38.035,40,43.016,35.54,43.859,29.739z M51,26c-1.657,0-3,1.343-3,3l0,0c-0.004,8.092-6.018,14.759-13.816,15.829\r\n\t\t\t\tc-0.24,0.034-0.48,0.062-0.723,0.086c-0.441,0.04-0.885,0.074-1.336,0.078v0.002c-0.04,0-0.078,0.005-0.118,0.005\r\n\t\t\t\tc-2.959,0-5.72-0.816-8.098-2.216l-5.431,3.551c2.987,2.326,6.586,3.906,10.521,4.44V58H19c-1.657,0-3,1.343-3,3s1.343,3,3,3h26\r\n\t\t\t\tc1.657,0,3-1.343,3-3s-1.343-3-3-3H35v-7.225c10.727-1.457,19-10.627,19-21.752c0-0.005,0-0.01-0.001-0.015\r\n\t\t\t\tC53.999,29.005,54,29.003,54,29C54,27.343,52.657,26,51,26z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.microphone_off = microphone_off; \ No newline at end of file diff --git a/dist/ikons/microsoft.js b/dist/ikons/microsoft.js new file mode 100644 index 000000000..fdbca05aa --- /dev/null +++ b/dist/ikons/microsoft.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.microsoft = void 0; +var microsoft = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "microsoft_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "microsoft" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "microsoft" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M26.307,31.796c-2.208-1.219-5.281-2.486-8.648-2.486c-0.383,0-0.764,0.014-1.149,0.049\r\n\t\t\t\tc-3.377,0.302-6.453,1.232-8.613,2.052c-0.638,0.248-1.297,0.518-1.971,0.814L0.002,54.346c4.476-1.945,8.093-2.721,11.133-2.721\r\n\t\t\t\tc5.01,0,8.484,2.084,11.763,4.436c1.217-4.441,5.348-19.635,6.133-22.527C28.143,32.939,27.25,32.344,26.307,31.796z\r\n\t\t\t\t M18.765,23.98c4.802,0.054,8.205,2.119,11.372,4.382c1.213-4.427,4.814-17.723,6.03-22.209V6.136c0,0-4.244-2.737-7.197-3.548\r\n\t\t\t\tc-1.409-0.359-3.003-0.585-4.766-0.585h-0.069c-3.001,0.062-6.598,0.844-11.02,2.788L7.28,26.86\r\n\t\t\t\tc4.543-1.995,8.228-2.88,11.324-2.88H18.765z M52.561,13.559c-6.488,0-10.767-2.974-12.658-4.559l-5.985,22.306\r\n\t\t\t\tc0.017,0.019,0.043,0.035,0.063,0.048c3.291,2.371,7.572,4.287,12.732,4.287c3.412,0,7.204-0.836,11.348-2.94v-0.03\r\n\t\t\t\tc0.01,0,0.021-0.008,0.037-0.014l5.901-21.899C59.641,12.807,55.824,13.559,52.561,13.559z M32.568,36.329l-5.904,22.085\r\n\t\t\t\tc-0.009-0.005,6.904,4.584,12.089,4.584c3.281,0,7.205-0.865,12.114-3.047l5.691-21.43c-4.318,1.666-8.039,2.291-11.185,2.291\r\n\t\t\t\tC38.529,40.812,34.367,37.874,32.568,36.329z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M26.307,31.796c-2.208-1.219-5.281-2.486-8.648-2.486c-0.383,0-0.764,0.014-1.149,0.049\r\n\t\t\t\tc-3.377,0.302-6.453,1.232-8.613,2.052c-0.638,0.248-1.297,0.518-1.971,0.814L0.002,54.346c4.476-1.945,8.093-2.721,11.133-2.721\r\n\t\t\t\tc5.01,0,8.484,2.084,11.763,4.436c1.217-4.441,5.348-19.635,6.133-22.527C28.143,32.939,27.25,32.344,26.307,31.796z\r\n\t\t\t\t M18.765,23.98c4.802,0.054,8.205,2.119,11.372,4.382c1.213-4.427,4.814-17.723,6.03-22.209V6.136c0,0-4.244-2.737-7.197-3.548\r\n\t\t\t\tc-1.409-0.359-3.003-0.585-4.766-0.585h-0.069c-3.001,0.062-6.598,0.844-11.02,2.788L7.28,26.86\r\n\t\t\t\tc4.543-1.995,8.228-2.88,11.324-2.88H18.765z M52.561,13.559c-6.488,0-10.767-2.974-12.658-4.559l-5.985,22.306\r\n\t\t\t\tc0.017,0.019,0.043,0.035,0.063,0.048c3.291,2.371,7.572,4.287,12.732,4.287c3.412,0,7.204-0.836,11.348-2.94v-0.03\r\n\t\t\t\tc0.01,0,0.021-0.008,0.037-0.014l5.901-21.899C59.641,12.807,55.824,13.559,52.561,13.559z M32.568,36.329l-5.904,22.085\r\n\t\t\t\tc-0.009-0.005,6.904,4.584,12.089,4.584c3.281,0,7.205-0.865,12.114-3.047l5.691-21.43c-4.318,1.666-8.039,2.291-11.185,2.291\r\n\t\t\t\tC38.529,40.812,34.367,37.874,32.568,36.329z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.microsoft = microsoft; \ No newline at end of file diff --git a/dist/ikons/minus.js b/dist/ikons/minus.js new file mode 100644 index 000000000..d0fb3dee6 --- /dev/null +++ b/dist/ikons/minus.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.minus = void 0; +var minus = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "MINUS_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "MINUS" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "MINUS" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M52,29H12c-1.657,0-3,1.343-3,3s1.343,3,3,3h40c1.657,0,3-1.343,3-3S53.657,29,52,29z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M52,29H12c-1.657,0-3,1.343-3,3s1.343,3,3,3h40c1.657,0,3-1.343,3-3S53.657,29,52,29z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.minus = minus; \ No newline at end of file diff --git a/dist/ikons/more.js b/dist/ikons/more.js new file mode 100644 index 000000000..6323815c1 --- /dev/null +++ b/dist/ikons/more.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.more = void 0; +var more = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "MORE_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "MORE" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "MORE" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M13.001,26C9.687,26,7,28.687,7,32.002c0,3.314,2.687,6.001,6.001,6.001s6.001-2.687,6.001-6.001\r\n\t\t\t\tC19.001,28.687,16.315,26,13.001,26z M51.001,26C47.688,26,45,28.687,45,32.002c0,3.314,2.688,6.001,6.001,6.001\r\n\t\t\t\ts6.001-2.687,6.001-6.001C57.001,28.687,54.314,26,51.001,26z M32.001,26C28.687,26,26,28.687,26,32.002\r\n\t\t\t\tc0,3.314,2.686,6.001,6.001,6.001c3.315,0,6.001-2.687,6.001-6.001C38.001,28.687,35.314,26,32.001,26z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M13.001,26C9.687,26,7,28.687,7,32.002c0,3.314,2.687,6.001,6.001,6.001s6.001-2.687,6.001-6.001\r\n\t\t\t\tC19.001,28.687,16.315,26,13.001,26z M51.001,26C47.688,26,45,28.687,45,32.002c0,3.314,2.688,6.001,6.001,6.001\r\n\t\t\t\ts6.001-2.687,6.001-6.001C57.001,28.687,54.314,26,51.001,26z M32.001,26C28.687,26,26,28.687,26,32.002\r\n\t\t\t\tc0,3.314,2.686,6.001,6.001,6.001c3.315,0,6.001-2.687,6.001-6.001C38.001,28.687,35.314,26,32.001,26z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.more = more; \ No newline at end of file diff --git a/dist/ikons/more_2.js b/dist/ikons/more_2.js new file mode 100644 index 000000000..9f5a7a19a --- /dev/null +++ b/dist/ikons/more_2.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.more_2 = void 0; +var more_2 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "MORE_2_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "MORE_2" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "MORE_2" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M31.998,26c-3.314,0-6.001,2.687-6.001,6.001c0,3.313,2.687,6.001,6.001,6.001c3.314,0,6.002-2.688,6.002-6.001\r\n\t\t\t\tC38,28.687,35.312,26,31.998,26z M31.998,19.001C35.312,19.001,38,16.314,38,13c0-3.313-2.688-6-6.002-6\r\n\t\t\t\tc-3.314,0-6.001,2.686-6.001,6.001C25.997,16.315,28.684,19.001,31.998,19.001z M31.998,45c-3.314,0-6.001,2.688-6.001,6.001\r\n\t\t\t\ts2.687,6.001,6.001,6.001c3.314,0,6.002-2.688,6.002-6.001S35.312,45,31.998,45z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M31.998,26c-3.314,0-6.001,2.687-6.001,6.001c0,3.313,2.687,6.001,6.001,6.001c3.314,0,6.002-2.688,6.002-6.001\r\n\t\t\t\tC38,28.687,35.312,26,31.998,26z M31.998,19.001C35.312,19.001,38,16.314,38,13c0-3.313-2.688-6-6.002-6\r\n\t\t\t\tc-3.314,0-6.001,2.686-6.001,6.001C25.997,16.315,28.684,19.001,31.998,19.001z M31.998,45c-3.314,0-6.001,2.688-6.001,6.001\r\n\t\t\t\ts2.687,6.001,6.001,6.001c3.314,0,6.002-2.688,6.002-6.001S35.312,45,31.998,45z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.more_2 = more_2; \ No newline at end of file diff --git a/dist/ikons/moustache.js b/dist/ikons/moustache.js new file mode 100644 index 000000000..ae05ad46d --- /dev/null +++ b/dist/ikons/moustache.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.moustache = void 0; +var moustache = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "MOUSTACHE_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "MOUSTACHE" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "MOUSTACHE" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M63.827,26.719c-1.134-0.288-2.876,4.125-6.966,4.125c-5.254,0-7.725-8.839-15.935-8.839\r\n\t\t\t\tc-6.513,0-8.497,5.067-8.928,5.067s-2.415-5.067-8.927-5.067c-8.208,0-10.681,8.839-15.935,8.839c-4.09,0-5.83-4.413-6.964-4.125\r\n\t\t\t\tc-1.06,0.269,1.955,15.277,16.323,15.277c9.322,0,14.802-7.238,15.503-7.238c0.702,0,6.183,7.238,15.504,7.238\r\n\t\t\t\tC61.872,41.996,64.887,26.988,63.827,26.719z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M63.827,26.719c-1.134-0.288-2.876,4.125-6.966,4.125c-5.254,0-7.725-8.839-15.935-8.839\r\n\t\t\t\tc-6.513,0-8.497,5.067-8.928,5.067s-2.415-5.067-8.927-5.067c-8.208,0-10.681,8.839-15.935,8.839c-4.09,0-5.83-4.413-6.964-4.125\r\n\t\t\t\tc-1.06,0.269,1.955,15.277,16.323,15.277c9.322,0,14.802-7.238,15.503-7.238c0.702,0,6.183,7.238,15.504,7.238\r\n\t\t\t\tC61.872,41.996,64.887,26.988,63.827,26.719z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.moustache = moustache; \ No newline at end of file diff --git a/dist/ikons/music.js b/dist/ikons/music.js new file mode 100644 index 000000000..d19440f14 --- /dev/null +++ b/dist/ikons/music.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.music = void 0; +var music = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "MUSIC_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "MUSIC" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "MUSIC" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M60,0L20,9c0,0-3,0.681-3,3v40.66C15.499,52.241,13.802,52,12,52c-6.075,0-11,2.686-11,6s4.925,6,11,6s11-2.686,11-6\r\n\t\t\t\tV26.123l34-7.415V43.66C55.499,43.241,53.802,43,52,43c-6.075,0-11,2.686-11,6s4.925,6,11,6s11-2.686,11-6V3\r\n\t\t\t\tC63,1.343,61.657,0,60,0z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M60,0L20,9c0,0-3,0.681-3,3v40.66C15.499,52.241,13.802,52,12,52c-6.075,0-11,2.686-11,6s4.925,6,11,6s11-2.686,11-6\r\n\t\t\t\tV26.123l34-7.415V43.66C55.499,43.241,53.802,43,52,43c-6.075,0-11,2.686-11,6s4.925,6,11,6s11-2.686,11-6V3\r\n\t\t\t\tC63,1.343,61.657,0,60,0z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.music = music; \ No newline at end of file diff --git a/dist/ikons/notepad.js b/dist/ikons/notepad.js new file mode 100644 index 000000000..8cfc349a3 --- /dev/null +++ b/dist/ikons/notepad.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.notepad = void 0; +var notepad = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "NOTEPAD_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "NOTEPAD" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "NOTEPAD" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M32,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C29,10.657,30.343,12,32,12z M47,12\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C44,10.657,45.343,12,47,12z M17,12c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v6C14,10.657,15.343,12,17,12z M58,6h-5v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3\r\n\t\t\t\tc0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6H6C4.343,6,3,7.343,3,9v52\r\n\t\t\t\tc0,1.657,1.343,3,3,3h52c1.657,0,3-1.343,3-3V9C61,7.343,59.657,6,58,6z M50.5,54h-37c-1.381,0-2.5-1.119-2.5-2.5\r\n\t\t\t\ts1.119-2.5,2.5-2.5h37c1.381,0,2.5,1.119,2.5,2.5S51.881,54,50.5,54z M50,42H14c-1.657,0-3-1.343-3-3s1.343-3,3-3h36\r\n\t\t\t\tc1.657,0,3,1.343,3,3S51.657,42,50,42z M50,29H14c-1.657,0-3-1.343-3-3s1.343-3,3-3h36c1.657,0,3,1.343,3,3S51.657,29,50,29z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M32,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C29,10.657,30.343,12,32,12z M47,12\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C44,10.657,45.343,12,47,12z M17,12c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v6C14,10.657,15.343,12,17,12z M58,6h-5v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3\r\n\t\t\t\tc0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6H6C4.343,6,3,7.343,3,9v52\r\n\t\t\t\tc0,1.657,1.343,3,3,3h52c1.657,0,3-1.343,3-3V9C61,7.343,59.657,6,58,6z M50.5,54h-37c-1.381,0-2.5-1.119-2.5-2.5\r\n\t\t\t\ts1.119-2.5,2.5-2.5h37c1.381,0,2.5,1.119,2.5,2.5S51.881,54,50.5,54z M50,42H14c-1.657,0-3-1.343-3-3s1.343-3,3-3h36\r\n\t\t\t\tc1.657,0,3,1.343,3,3S51.657,42,50,42z M50,29H14c-1.657,0-3-1.343-3-3s1.343-3,3-3h36c1.657,0,3,1.343,3,3S51.657,29,50,29z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.notepad = notepad; \ No newline at end of file diff --git a/dist/ikons/notepad_add.js b/dist/ikons/notepad_add.js new file mode 100644 index 000000000..ceece4107 --- /dev/null +++ b/dist/ikons/notepad_add.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.notepad_add = void 0; +var notepad_add = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "NOTEPAD__x2F__ADD_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "NOTEPAD__x2F__ADD" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "NOTEPAD__x2F__ADD" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M46,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C43,10.657,44.343,12,46,12z M31,12\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C28,10.657,29.343,12,31,12z M60,52h-3v-3c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3s1.343,3,3,3h3v3c0,1.657,1.343,3,3,3s3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3\r\n\t\t\t\tS61.657,52,60,52z M42,55c0-3.314,2.686-6,6-6c0-3.314,2.686-6,6-6s6,2.686,6,6V9c0-1.657-1.343-3-3-3h-5v3c0,3.314-2.686,6-6,6\r\n\t\t\t\ts-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6H5\r\n\t\t\t\tC3.343,6,2,7.343,2,9v52c0,1.657,1.343,3,3,3h43v-3C44.686,61,42,58.314,42,55z M13,23h36c1.657,0,3,1.343,3,3s-1.343,3-3,3H13\r\n\t\t\t\tc-1.657,0-3-1.343-3-3S11.343,23,13,23z M31.5,54h-19c-1.381,0-2.5-1.119-2.5-2.5s1.119-2.5,2.5-2.5h19\r\n\t\t\t\tc1.381,0,2.5,1.119,2.5,2.5S32.881,54,31.5,54z M39,42H13c-1.657,0-3-1.343-3-3s1.343-3,3-3h26c1.657,0,3,1.343,3,3\r\n\t\t\t\tS40.657,42,39,42z M16,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C13,10.657,14.343,12,16,12z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M46,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C43,10.657,44.343,12,46,12z M31,12\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C28,10.657,29.343,12,31,12z M60,52h-3v-3c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3s1.343,3,3,3h3v3c0,1.657,1.343,3,3,3s3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3\r\n\t\t\t\tS61.657,52,60,52z M42,55c0-3.314,2.686-6,6-6c0-3.314,2.686-6,6-6s6,2.686,6,6V9c0-1.657-1.343-3-3-3h-5v3c0,3.314-2.686,6-6,6\r\n\t\t\t\ts-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6H5\r\n\t\t\t\tC3.343,6,2,7.343,2,9v52c0,1.657,1.343,3,3,3h43v-3C44.686,61,42,58.314,42,55z M13,23h36c1.657,0,3,1.343,3,3s-1.343,3-3,3H13\r\n\t\t\t\tc-1.657,0-3-1.343-3-3S11.343,23,13,23z M31.5,54h-19c-1.381,0-2.5-1.119-2.5-2.5s1.119-2.5,2.5-2.5h19\r\n\t\t\t\tc1.381,0,2.5,1.119,2.5,2.5S32.881,54,31.5,54z M39,42H13c-1.657,0-3-1.343-3-3s1.343-3,3-3h26c1.657,0,3,1.343,3,3\r\n\t\t\t\tS40.657,42,39,42z M16,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C13,10.657,14.343,12,16,12z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.notepad_add = notepad_add; \ No newline at end of file diff --git a/dist/ikons/notepad_delete.js b/dist/ikons/notepad_delete.js new file mode 100644 index 000000000..29bd0f895 --- /dev/null +++ b/dist/ikons/notepad_delete.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.notepad_delete = void 0; +var notepad_delete = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "NOTEPAD__x2F__DELETE_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "NOTEPAD__x2F__DELETE" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "NOTEPAD__x2F__DELETE" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M46,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C43,10.657,44.343,12,46,12z M31,12\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C28,10.657,29.343,12,31,12z M58.243,55l3.879-3.879\r\n\t\t\t\tC62.664,50.579,63,49.828,63,49c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L54,50.757l-3.879-3.879\r\n\t\t\t\tC49.578,46.336,48.828,46,48,46c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L49.757,55l-3.879,3.879\r\n\t\t\t\tC45.336,59.422,45,60.172,45,61c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L54,59.243l3.879,3.879\r\n\t\t\t\tC58.422,63.664,59.172,64,60,64c1.657,0,3-1.343,3-3c0-0.829-0.336-1.578-0.879-2.121L58.243,55z M16,12c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v6C13,10.657,14.343,12,16,12z M43.757,56.758L45.516,55l-1.758-1.757\r\n\t\t\t\tC42.672,52.157,42,50.657,42,49c0-3.314,2.686-6,6-6c1.657,0,3.157,0.672,4.243,1.757L54,46.516l1.757-1.759l0.015,0.017\r\n\t\t\t\tC56.854,43.682,58.341,43,60,43V9c0-1.657-1.343-3-3-3h-5v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6\r\n\t\t\t\tc-3.314,0-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6H5C3.343,6,2,7.343,2,9v52c0,1.657,1.343,3,3,3h37.832\r\n\t\t\t\tC42.316,63.114,42,62.1,42,61c0-1.659,0.682-3.146,1.773-4.227L43.757,56.758z M31.5,54h-19c-1.381,0-2.5-1.119-2.5-2.5\r\n\t\t\t\ts1.119-2.5,2.5-2.5h19c1.381,0,2.5,1.119,2.5,2.5S32.881,54,31.5,54z M37,42H13c-1.657,0-3-1.343-3-3s1.343-3,3-3h24\r\n\t\t\t\tc1.657,0,3,1.343,3,3S38.657,42,37,42z M13,29c-1.657,0-3-1.343-3-3s1.343-3,3-3h36c1.657,0,3,1.343,3,3s-1.343,3-3,3H13z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M46,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C43,10.657,44.343,12,46,12z M31,12\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C28,10.657,29.343,12,31,12z M58.243,55l3.879-3.879\r\n\t\t\t\tC62.664,50.579,63,49.828,63,49c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L54,50.757l-3.879-3.879\r\n\t\t\t\tC49.578,46.336,48.828,46,48,46c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L49.757,55l-3.879,3.879\r\n\t\t\t\tC45.336,59.422,45,60.172,45,61c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L54,59.243l3.879,3.879\r\n\t\t\t\tC58.422,63.664,59.172,64,60,64c1.657,0,3-1.343,3-3c0-0.829-0.336-1.578-0.879-2.121L58.243,55z M16,12c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v6C13,10.657,14.343,12,16,12z M43.757,56.758L45.516,55l-1.758-1.757\r\n\t\t\t\tC42.672,52.157,42,50.657,42,49c0-3.314,2.686-6,6-6c1.657,0,3.157,0.672,4.243,1.757L54,46.516l1.757-1.759l0.015,0.017\r\n\t\t\t\tC56.854,43.682,58.341,43,60,43V9c0-1.657-1.343-3-3-3h-5v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6\r\n\t\t\t\tc-3.314,0-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6H5C3.343,6,2,7.343,2,9v52c0,1.657,1.343,3,3,3h37.832\r\n\t\t\t\tC42.316,63.114,42,62.1,42,61c0-1.659,0.682-3.146,1.773-4.227L43.757,56.758z M31.5,54h-19c-1.381,0-2.5-1.119-2.5-2.5\r\n\t\t\t\ts1.119-2.5,2.5-2.5h19c1.381,0,2.5,1.119,2.5,2.5S32.881,54,31.5,54z M37,42H13c-1.657,0-3-1.343-3-3s1.343-3,3-3h24\r\n\t\t\t\tc1.657,0,3,1.343,3,3S38.657,42,37,42z M13,29c-1.657,0-3-1.343-3-3s1.343-3,3-3h36c1.657,0,3,1.343,3,3s-1.343,3-3,3H13z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.notepad_delete = notepad_delete; \ No newline at end of file diff --git a/dist/ikons/notepad_ok.js b/dist/ikons/notepad_ok.js new file mode 100644 index 000000000..89b161cf6 --- /dev/null +++ b/dist/ikons/notepad_ok.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.notepad_ok = void 0; +var notepad_ok = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "NOTEPAD__x2F__OK_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "NOTEPAD__x2F__OK" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "NOTEPAD__x2F__OK" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M31,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C28,10.657,29.343,12,31,12z M46,12\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C43,10.657,44.343,12,46,12z M16,12c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v6C13,10.657,14.343,12,16,12z M60,50c-0.828,0-1.578,0.336-2.121,0.879L52,56.758\r\n\t\t\t\tl-1.879-1.879C49.578,54.336,48.829,54,48,54c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l4,4\r\n\t\t\t\tC50.422,63.664,51.172,64,52,64s1.578-0.336,2.121-0.879l8-8C62.664,54.578,63,53.828,63,53C63,51.343,61.657,50,60,50z\r\n\t\t\t\t M43.775,61.225C42.684,60.146,42,58.659,42,57c0-3.314,2.686-6,6-6c1.535,0,2.908,0.602,3.961,1.555l3.797-3.798\r\n\t\t\t\tC56.843,47.672,58.343,47,60,47V9c0-1.657-1.343-3-3-3h-5v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6\r\n\t\t\t\tc-3.314,0-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6H5C3.343,6,2,7.343,2,9v52c0,1.657,1.343,3,3,3h41.516\r\n\t\t\t\tl-2.758-2.757L43.775,61.225z M13,23h36c1.657,0,3,1.343,3,3s-1.343,3-3,3H13c-1.657,0-3-1.343-3-3S11.343,23,13,23z M13,36h36\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3H13c-1.657,0-3-1.343-3-3S11.343,36,13,36z M31.5,54h-19c-1.381,0-2.5-1.119-2.5-2.5\r\n\t\t\t\ts1.119-2.5,2.5-2.5h19c1.381,0,2.5,1.119,2.5,2.5S32.881,54,31.5,54z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M31,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C28,10.657,29.343,12,31,12z M46,12\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C43,10.657,44.343,12,46,12z M16,12c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v6C13,10.657,14.343,12,16,12z M60,50c-0.828,0-1.578,0.336-2.121,0.879L52,56.758\r\n\t\t\t\tl-1.879-1.879C49.578,54.336,48.829,54,48,54c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l4,4\r\n\t\t\t\tC50.422,63.664,51.172,64,52,64s1.578-0.336,2.121-0.879l8-8C62.664,54.578,63,53.828,63,53C63,51.343,61.657,50,60,50z\r\n\t\t\t\t M43.775,61.225C42.684,60.146,42,58.659,42,57c0-3.314,2.686-6,6-6c1.535,0,2.908,0.602,3.961,1.555l3.797-3.798\r\n\t\t\t\tC56.843,47.672,58.343,47,60,47V9c0-1.657-1.343-3-3-3h-5v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6\r\n\t\t\t\tc-3.314,0-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6H5C3.343,6,2,7.343,2,9v52c0,1.657,1.343,3,3,3h41.516\r\n\t\t\t\tl-2.758-2.757L43.775,61.225z M13,23h36c1.657,0,3,1.343,3,3s-1.343,3-3,3H13c-1.657,0-3-1.343-3-3S11.343,23,13,23z M13,36h36\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3H13c-1.657,0-3-1.343-3-3S11.343,36,13,36z M31.5,54h-19c-1.381,0-2.5-1.119-2.5-2.5\r\n\t\t\t\ts1.119-2.5,2.5-2.5h19c1.381,0,2.5,1.119,2.5,2.5S32.881,54,31.5,54z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.notepad_ok = notepad_ok; \ No newline at end of file diff --git a/dist/ikons/notepad_remove.js b/dist/ikons/notepad_remove.js new file mode 100644 index 000000000..be6606d95 --- /dev/null +++ b/dist/ikons/notepad_remove.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.notepad_remove = void 0; +var notepad_remove = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "NOTEPAD__x2F__REMOVE_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "NOTEPAD__x2F__REMOVE" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "NOTEPAD__x2F__REMOVE" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M46,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C43,10.657,44.343,12,46,12z M31,12\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C28,10.657,29.343,12,31,12z M42,55c0-3.314,2.686-6,6-6h12V9\r\n\t\t\t\tc0-1.657-1.343-3-3-3h-5v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6V6h-3v3\r\n\t\t\t\tc0,3.314-2.686,6-6,6s-6-2.686-6-6V6H5C3.343,6,2,7.343,2,9v52c0,1.657,1.343,3,3,3h52c1.657,0,3-1.343,3-3H48\r\n\t\t\t\tC44.686,61,42,58.314,42,55z M13,23h36c1.657,0,3,1.343,3,3s-1.343,3-3,3H13c-1.657,0-3-1.343-3-3S11.343,23,13,23z M13,36h36\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3H13c-1.657,0-3-1.343-3-3S11.343,36,13,36z M31.5,54h-19c-1.381,0-2.5-1.119-2.5-2.5\r\n\t\t\t\ts1.119-2.5,2.5-2.5h19c1.381,0,2.5,1.119,2.5,2.5S32.881,54,31.5,54z M16,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v6C13,10.657,14.343,12,16,12z M60,52H48c-1.657,0-3,1.343-3,3s1.343,3,3,3h12c1.657,0,3-1.343,3-3S61.657,52,60,52\r\n\t\t\t\tz" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M46,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C43,10.657,44.343,12,46,12z M31,12\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C28,10.657,29.343,12,31,12z M42,55c0-3.314,2.686-6,6-6h12V9\r\n\t\t\t\tc0-1.657-1.343-3-3-3h-5v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6V6h-3v3\r\n\t\t\t\tc0,3.314-2.686,6-6,6s-6-2.686-6-6V6H5C3.343,6,2,7.343,2,9v52c0,1.657,1.343,3,3,3h52c1.657,0,3-1.343,3-3H48\r\n\t\t\t\tC44.686,61,42,58.314,42,55z M13,23h36c1.657,0,3,1.343,3,3s-1.343,3-3,3H13c-1.657,0-3-1.343-3-3S11.343,23,13,23z M13,36h36\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3H13c-1.657,0-3-1.343-3-3S11.343,36,13,36z M31.5,54h-19c-1.381,0-2.5-1.119-2.5-2.5\r\n\t\t\t\ts1.119-2.5,2.5-2.5h19c1.381,0,2.5,1.119,2.5,2.5S32.881,54,31.5,54z M16,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v6C13,10.657,14.343,12,16,12z M60,52H48c-1.657,0-3,1.343-3,3s1.343,3,3,3h12c1.657,0,3-1.343,3-3S61.657,52,60,52\r\n\t\t\t\tz" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.notepad_remove = notepad_remove; \ No newline at end of file diff --git a/dist/ikons/pause.js b/dist/ikons/pause.js new file mode 100644 index 000000000..1be504383 --- /dev/null +++ b/dist/ikons/pause.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pause = void 0; +var pause = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "PAUSE_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "PAUSE" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "PAUSE" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M26,19c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3s3-1.343,3-3V22C29,20.343,27.657,19,26,19z M38,19\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3s3-1.343,3-3V22C41,20.343,39.657,19,38,19z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M26,19c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3s3-1.343,3-3V22C29,20.343,27.657,19,26,19z M38,19\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3s3-1.343,3-3V22C41,20.343,39.657,19,38,19z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.pause = pause; \ No newline at end of file diff --git a/dist/ikons/paypal.js b/dist/ikons/paypal.js new file mode 100644 index 000000000..31c3f6e6e --- /dev/null +++ b/dist/ikons/paypal.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.paypal = void 0; +var paypal = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "paypal_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "paypal" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "paypal" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M34.878,24.706c0.474-0.299,0.925-0.635,1.335-1.018c1.145-1.061,2.006-2.423,2.369-3.916\r\n\t\t\t\tc0.633-2.24-0.102-4.184-1.617-5.26c-0.797-0.566-1.808-0.901-2.955-0.901h-6.65l-0.214,0.901L24.45,25.935h6.372\r\n\t\t\t\tC32.234,25.935,33.643,25.473,34.878,24.706z M30.925,18.05h3.087c0.159,0,0.254,0.026,0.301,0.043\r\n\t\t\t\tc0.011,0.067,0.019,0.22-0.057,0.48l-0.023,0.082l-0.018,0.082c-0.346,1.418-1.994,2.76-3.394,2.76h-0.712L30.925,18.05z\r\n\t\t\t\t M60.611,16.282c-1.295-1.592-2.928-2.913-4.782-3.928c-0.61-2.671-1.804-4.704-2.976-6.148C49.714,2.346,44.585,0.033,39.117,0\r\n\t\t\t\tH12.265l-0.787,3.458L1.224,48.52L0,53.9v0.031h10.042l-1.058,4.661L7.752,64h22.802l0.774-3.477l2.55-11.44h6.089\r\n\t\t\t\tc11.803,0,21.03-7.176,23.508-18.278c0.367-1.649,0.521-3.163,0.525-4.557v-0.456C63.904,21.396,62.234,18.281,60.611,16.282z\r\n\t\t\t\t M5.606,49.491L15.861,4.43H39c4.283,0,9.005,1.916,11.316,5.974c0.795,1.398,1.306,3.051,1.412,4.969\r\n\t\t\t\tc0.076,1.334-0.043,2.801-0.399,4.398c-0.812,3.64-2.499,6.678-4.796,9.048c-3.51,3.625-8.463,5.652-13.979,5.732\r\n\t\t\t\tc-0.117,0.004-0.229,0.014-0.344,0.014H22.51L19.186,49.49L5.606,49.491L5.606,49.491z M59.087,29.848\r\n\t\t\t\tc-2.077,9.316-9.837,14.796-19.12,14.796h-9.699L26.943,59.57H13.366l1.283-5.639h8.147l0.777-3.484l2.547-11.441h6.09\r\n\t\t\t\tc11.802,0,21.026-7.176,23.505-18.275c0.209-0.941,0.348-1.837,0.434-2.696C58.802,20.547,60.295,24.44,59.087,29.848z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M34.878,24.706c0.474-0.299,0.925-0.635,1.335-1.018c1.145-1.061,2.006-2.423,2.369-3.916\r\n\t\t\t\tc0.633-2.24-0.102-4.184-1.617-5.26c-0.797-0.566-1.808-0.901-2.955-0.901h-6.65l-0.214,0.901L24.45,25.935h6.372\r\n\t\t\t\tC32.234,25.935,33.643,25.473,34.878,24.706z M30.925,18.05h3.087c0.159,0,0.254,0.026,0.301,0.043\r\n\t\t\t\tc0.011,0.067,0.019,0.22-0.057,0.48l-0.023,0.082l-0.018,0.082c-0.346,1.418-1.994,2.76-3.394,2.76h-0.712L30.925,18.05z\r\n\t\t\t\t M60.611,16.282c-1.295-1.592-2.928-2.913-4.782-3.928c-0.61-2.671-1.804-4.704-2.976-6.148C49.714,2.346,44.585,0.033,39.117,0\r\n\t\t\t\tH12.265l-0.787,3.458L1.224,48.52L0,53.9v0.031h10.042l-1.058,4.661L7.752,64h22.802l0.774-3.477l2.55-11.44h6.089\r\n\t\t\t\tc11.803,0,21.03-7.176,23.508-18.278c0.367-1.649,0.521-3.163,0.525-4.557v-0.456C63.904,21.396,62.234,18.281,60.611,16.282z\r\n\t\t\t\t M5.606,49.491L15.861,4.43H39c4.283,0,9.005,1.916,11.316,5.974c0.795,1.398,1.306,3.051,1.412,4.969\r\n\t\t\t\tc0.076,1.334-0.043,2.801-0.399,4.398c-0.812,3.64-2.499,6.678-4.796,9.048c-3.51,3.625-8.463,5.652-13.979,5.732\r\n\t\t\t\tc-0.117,0.004-0.229,0.014-0.344,0.014H22.51L19.186,49.49L5.606,49.491L5.606,49.491z M59.087,29.848\r\n\t\t\t\tc-2.077,9.316-9.837,14.796-19.12,14.796h-9.699L26.943,59.57H13.366l1.283-5.639h8.147l0.777-3.484l2.547-11.441h6.09\r\n\t\t\t\tc11.802,0,21.026-7.176,23.505-18.275c0.209-0.941,0.348-1.837,0.434-2.696C58.802,20.547,60.295,24.44,59.087,29.848z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.paypal = paypal; \ No newline at end of file diff --git a/dist/ikons/pen_1.js b/dist/ikons/pen_1.js new file mode 100644 index 000000000..3e8294f57 --- /dev/null +++ b/dist/ikons/pen_1.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pen_1 = void 0; +var pen_1 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "PEN_1_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "PEN_1" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "PEN_1" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12.938,42.498l8.446,8.429l25.339-25.288l-8.447-8.429L12.938,42.498z M7.998,55.84l11.258-2.806l-8.447-8.431\r\n\t\t\t\tL7.998,55.84z M55.167,12.996l-4.224-4.215c-1.166-1.164-3.057-1.164-4.223,0l-6.334,6.322l8.446,8.429l6.334-6.322\r\n\t\t\t\tC56.333,16.046,56.333,14.159,55.167,12.996z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12.938,42.498l8.446,8.429l25.339-25.288l-8.447-8.429L12.938,42.498z M7.998,55.84l11.258-2.806l-8.447-8.431\r\n\t\t\t\tL7.998,55.84z M55.167,12.996l-4.224-4.215c-1.166-1.164-3.057-1.164-4.223,0l-6.334,6.322l8.446,8.429l6.334-6.322\r\n\t\t\t\tC56.333,16.046,56.333,14.159,55.167,12.996z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.pen_1 = pen_1; \ No newline at end of file diff --git a/dist/ikons/pen_2.js b/dist/ikons/pen_2.js new file mode 100644 index 000000000..f76ccdf39 --- /dev/null +++ b/dist/ikons/pen_2.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pen_2 = void 0; +var pen_2 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "PEN_2_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "PEN_2" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "PEN_2" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M46.721,19.639l-8.445-8.429L12.938,36.498l8.446,8.429L46.721,19.639z M55.167,11.21c1.166-1.164,1.166-3.051,0-4.214\r\n\t\t\t\tl-4.224-4.215c-1.166-1.164-3.057-1.164-4.223,0l-6.334,6.322l8.446,8.429L55.167,11.21z M61,56H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h58c1.657,0,3-1.343,3-3S62.657,56,61,56z M10.809,38.604L7.998,49.84l11.258-2.806L10.809,38.604z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M46.721,19.639l-8.445-8.429L12.938,36.498l8.446,8.429L46.721,19.639z M55.167,11.21c1.166-1.164,1.166-3.051,0-4.214\r\n\t\t\t\tl-4.224-4.215c-1.166-1.164-3.057-1.164-4.223,0l-6.334,6.322l8.446,8.429L55.167,11.21z M61,56H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h58c1.657,0,3-1.343,3-3S62.657,56,61,56z M10.809,38.604L7.998,49.84l11.258-2.806L10.809,38.604z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.pen_2 = pen_2; \ No newline at end of file diff --git a/dist/ikons/pen_3.js b/dist/ikons/pen_3.js new file mode 100644 index 000000000..f59347c4a --- /dev/null +++ b/dist/ikons/pen_3.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pen_3 = void 0; +var pen_3 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "PEN_3_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "PEN_3" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "PEN_3" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M61.167,6.995L56.943,2.78c-1.166-1.164-3.057-1.164-4.223,0l-6.334,6.322l8.446,8.429l6.334-6.322\r\n\t\t\t\tC62.334,10.046,62.334,8.159,61.167,6.995z M53,57H7V11h33.357l6-6H4C2.343,5,1,6.343,1,8v52c0,1.657,1.343,3,3,3h52\r\n\t\t\t\tc1.657,0,3-1.343,3-3V17.813l-6,6V57z M52.721,19.639l-8.445-8.429L18.938,36.498l8.446,8.429L52.721,19.639z M13.998,49.84\r\n\t\t\t\tl11.258-2.806l-8.447-8.431L13.998,49.84z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M61.167,6.995L56.943,2.78c-1.166-1.164-3.057-1.164-4.223,0l-6.334,6.322l8.446,8.429l6.334-6.322\r\n\t\t\t\tC62.334,10.046,62.334,8.159,61.167,6.995z M53,57H7V11h33.357l6-6H4C2.343,5,1,6.343,1,8v52c0,1.657,1.343,3,3,3h52\r\n\t\t\t\tc1.657,0,3-1.343,3-3V17.813l-6,6V57z M52.721,19.639l-8.445-8.429L18.938,36.498l8.446,8.429L52.721,19.639z M13.998,49.84\r\n\t\t\t\tl11.258-2.806l-8.447-8.431L13.998,49.84z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.pen_3 = pen_3; \ No newline at end of file diff --git a/dist/ikons/picture.js b/dist/ikons/picture.js new file mode 100644 index 000000000..5b8f4cc0d --- /dev/null +++ b/dist/ikons/picture.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.picture = void 0; +var picture = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "PICTURE_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "PICTURE" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "PICTURE" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,28c3.314,0,6-2.686,6-6s-2.686-6-6-6s-6,2.686-6,6S18.686,28,22,28z M62,14c0-1.304-0.837-2.403-2-2.816V7.816\r\n\t\t\t\tC61.163,7.403,62,6.305,62,5c0-1.657-1.343-3-3-3c-1.305,0-2.402,0.838-2.816,2h-3.367C52.402,2.838,51.305,2,50,2\r\n\t\t\t\ts-2.402,0.838-2.816,2h-3.367C43.402,2.838,42.305,2,41,2s-2.402,0.838-2.816,2h-3.367C34.402,2.838,33.305,2,32,2\r\n\t\t\t\tc-1.304,0-2.403,0.838-2.816,2h-3.367C25.403,2.838,24.304,2,23,2s-2.403,0.838-2.816,2h-3.367C16.403,2.838,15.304,2,14,2\r\n\t\t\t\ts-2.403,0.838-2.816,2H7.816C7.403,2.838,6.304,2,5,2C3.343,2,2,3.343,2,5c0,1.304,0.837,2.403,2,2.816v3.367\r\n\t\t\t\tC2.838,11.597,2,12.696,2,14s0.837,2.403,2,2.816v3.367C2.838,20.597,2,21.696,2,23s0.837,2.403,2,2.816v3.367\r\n\t\t\t\tC2.838,29.597,2,30.696,2,32c0,1.305,0.837,2.402,2,2.816v3.367C2.838,38.598,2,39.695,2,41s0.837,2.402,2,2.816v3.367\r\n\t\t\t\tC2.838,47.598,2,48.695,2,50s0.837,2.402,2,2.816v3.367C2.838,56.598,2,57.695,2,59c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2s2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2\r\n\t\t\t\tc1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.815-2h3.367c0.413,1.162,1.512,2,2.816,2\r\n\t\t\t\tc1.304,0,2.402-0.837,2.816-2h3.367c0.412,1.162,1.512,2,2.815,2s2.403-0.837,2.815-2h3.367c0.413,1.162,1.512,2,2.816,2\r\n\t\t\t\tc1.656,0,3-1.343,3-3c0-1.305-0.837-2.402-2-2.816v-3.367c1.163-0.412,2-1.512,2-2.815s-0.837-2.403-2-2.815v-3.367\r\n\t\t\t\tc1.163-0.414,2-1.512,2-2.816c0-1.304-0.837-2.402-2-2.816v-3.367c1.163-0.412,2-1.512,2-2.815s-0.837-2.403-2-2.816V25.82\r\n\t\t\t\tc1.163-0.413,2-1.512,2-2.816c0-1.304-0.837-2.403-2-2.816v-3.367C61.163,16.403,62,15.304,62,14z M54,54H10V10h44V54z M51,39\r\n\t\t\t\tl-9-14L28,42l-3-3L13,51h38V39z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,28c3.314,0,6-2.686,6-6s-2.686-6-6-6s-6,2.686-6,6S18.686,28,22,28z M62,14c0-1.304-0.837-2.403-2-2.816V7.816\r\n\t\t\t\tC61.163,7.403,62,6.305,62,5c0-1.657-1.343-3-3-3c-1.305,0-2.402,0.838-2.816,2h-3.367C52.402,2.838,51.305,2,50,2\r\n\t\t\t\ts-2.402,0.838-2.816,2h-3.367C43.402,2.838,42.305,2,41,2s-2.402,0.838-2.816,2h-3.367C34.402,2.838,33.305,2,32,2\r\n\t\t\t\tc-1.304,0-2.403,0.838-2.816,2h-3.367C25.403,2.838,24.304,2,23,2s-2.403,0.838-2.816,2h-3.367C16.403,2.838,15.304,2,14,2\r\n\t\t\t\ts-2.403,0.838-2.816,2H7.816C7.403,2.838,6.304,2,5,2C3.343,2,2,3.343,2,5c0,1.304,0.837,2.403,2,2.816v3.367\r\n\t\t\t\tC2.838,11.597,2,12.696,2,14s0.837,2.403,2,2.816v3.367C2.838,20.597,2,21.696,2,23s0.837,2.403,2,2.816v3.367\r\n\t\t\t\tC2.838,29.597,2,30.696,2,32c0,1.305,0.837,2.402,2,2.816v3.367C2.838,38.598,2,39.695,2,41s0.837,2.402,2,2.816v3.367\r\n\t\t\t\tC2.838,47.598,2,48.695,2,50s0.837,2.402,2,2.816v3.367C2.838,56.598,2,57.695,2,59c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2s2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2\r\n\t\t\t\tc1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.815-2h3.367c0.413,1.162,1.512,2,2.816,2\r\n\t\t\t\tc1.304,0,2.402-0.837,2.816-2h3.367c0.412,1.162,1.512,2,2.815,2s2.403-0.837,2.815-2h3.367c0.413,1.162,1.512,2,2.816,2\r\n\t\t\t\tc1.656,0,3-1.343,3-3c0-1.305-0.837-2.402-2-2.816v-3.367c1.163-0.412,2-1.512,2-2.815s-0.837-2.403-2-2.815v-3.367\r\n\t\t\t\tc1.163-0.414,2-1.512,2-2.816c0-1.304-0.837-2.402-2-2.816v-3.367c1.163-0.412,2-1.512,2-2.815s-0.837-2.403-2-2.816V25.82\r\n\t\t\t\tc1.163-0.413,2-1.512,2-2.816c0-1.304-0.837-2.403-2-2.816v-3.367C61.163,16.403,62,15.304,62,14z M54,54H10V10h44V54z M51,39\r\n\t\t\t\tl-9-14L28,42l-3-3L13,51h38V39z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.picture = picture; \ No newline at end of file diff --git a/dist/ikons/pie_chart.js b/dist/ikons/pie_chart.js new file mode 100644 index 000000000..f78fd513d --- /dev/null +++ b/dist/ikons/pie_chart.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pie_chart = void 0; +var pie_chart = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "PIE_CHART_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "PIE_CHART" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "PIE_CHART" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M35,0v29h29C64,12.984,51.016,0,35,0z M29,6C12.984,6,0,18.984,0,35c0,16.018,12.984,29,29,29c16.016,0,29-12.984,29-29\r\n\t\t\t\tH29V6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M35,0v29h29C64,12.984,51.016,0,35,0z M29,6C12.984,6,0,18.984,0,35c0,16.018,12.984,29,29,29c16.016,0,29-12.984,29-29\r\n\t\t\t\tH29V6z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.pie_chart = pie_chart; \ No newline at end of file diff --git a/dist/ikons/pill.js b/dist/ikons/pill.js new file mode 100644 index 000000000..31fba682e --- /dev/null +++ b/dist/ikons/pill.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pill = void 0; +var pill = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "PILL" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M54.981,9.726l-0.707-0.707c-6.834-6.834-17.914-6.834-24.749,0L9.019,29.525\r\n\t\t\tc-6.834,6.834-6.834,17.914,0,24.748l0.707,0.707c6.834,6.834,17.914,6.834,24.749,0l20.506-20.506\r\n\t\t\tC61.815,27.641,61.815,16.56,54.981,9.726z M30.232,50.738c-4.491,4.491-11.772,4.491-16.263,0l-0.707-0.707\r\n\t\t\tc-4.491-4.491-4.491-11.772,0-16.263l10.253-10.253l16.971,16.97L30.232,50.738z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M54.981,9.726l-0.707-0.707c-6.834-6.834-17.914-6.834-24.749,0L9.019,29.525\r\n\t\t\tc-6.834,6.834-6.834,17.914,0,24.748l0.707,0.707c6.834,6.834,17.914,6.834,24.749,0l20.506-20.506\r\n\t\t\tC61.815,27.641,61.815,16.56,54.981,9.726z M30.232,50.738c-4.491,4.491-11.772,4.491-16.263,0l-0.707-0.707\r\n\t\t\tc-4.491-4.491-4.491-11.772,0-16.263l10.253-10.253l16.971,16.97L30.232,50.738z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.pill = pill; \ No newline at end of file diff --git a/dist/ikons/pin_1.js b/dist/ikons/pin_1.js new file mode 100644 index 000000000..9d11f0683 --- /dev/null +++ b/dist/ikons/pin_1.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pin_1 = void 0; +var pin_1 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "PIN_1_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "PIN_1" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "PIN_1" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M32,0C18.746,0,8,10.747,8,24c0,13.254,24,40,24,40s24-26.746,24-40C56,10.747,45.254,0,32,0z M32,40\r\n\t\t\t\tc-8.836,0-16-7.164-16-16S23.164,8,32,8s16,7.164,16,16S40.836,40,32,40z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M32,0C18.746,0,8,10.747,8,24c0,13.254,24,40,24,40s24-26.746,24-40C56,10.747,45.254,0,32,0z M32,40\r\n\t\t\t\tc-8.836,0-16-7.164-16-16S23.164,8,32,8s16,7.164,16,16S40.836,40,32,40z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.pin_1 = pin_1; \ No newline at end of file diff --git a/dist/ikons/pin_2.js b/dist/ikons/pin_2.js new file mode 100644 index 000000000..12967741e --- /dev/null +++ b/dist/ikons/pin_2.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pin_2 = void 0; +var pin_2 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "PIN_2_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "PIN_2" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "PIN_2" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M32,16c-4.418,0-8,3.582-8,8s3.582,8,8,8s8-3.582,8-8S36.418,16,32,16z M32,0C18.746,0,8,10.747,8,24\r\n\t\t\t\tc0,13.254,24,40,24,40s24-26.746,24-40C56,10.747,45.254,0,32,0z M32,40c-8.836,0-16-7.164-16-16S23.164,8,32,8s16,7.164,16,16\r\n\t\t\t\tS40.836,40,32,40z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M32,16c-4.418,0-8,3.582-8,8s3.582,8,8,8s8-3.582,8-8S36.418,16,32,16z M32,0C18.746,0,8,10.747,8,24\r\n\t\t\t\tc0,13.254,24,40,24,40s24-26.746,24-40C56,10.747,45.254,0,32,0z M32,40c-8.836,0-16-7.164-16-16S23.164,8,32,8s16,7.164,16,16\r\n\t\t\t\tS40.836,40,32,40z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.pin_2 = pin_2; \ No newline at end of file diff --git a/dist/ikons/pin_zoom_in.js b/dist/ikons/pin_zoom_in.js new file mode 100644 index 000000000..ef255b0e2 --- /dev/null +++ b/dist/ikons/pin_zoom_in.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pin_zoom_in = void 0; +var pin_zoom_in = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "PIN__x2F__ZOOM_IN_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "PIN__x2F__ZOOM_IN" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "PIN__x2F__ZOOM_IN" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M40,21h-5v-5c0-1.657-1.343-3-3-3s-3,1.343-3,3v5h-5c-1.657,0-3,1.343-3,3s1.343,3,3,3h5v5c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3v-5h5c1.657,0,3-1.343,3-3S41.657,21,40,21z M32,0C18.746,0,8,10.747,8,24c0,13.254,24,40,24,40s24-26.746,24-40\r\n\t\t\t\tC56,10.747,45.254,0,32,0z M32,40c-8.836,0-16-7.164-16-16S23.164,8,32,8s16,7.164,16,16S40.836,40,32,40z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M40,21h-5v-5c0-1.657-1.343-3-3-3s-3,1.343-3,3v5h-5c-1.657,0-3,1.343-3,3s1.343,3,3,3h5v5c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3v-5h5c1.657,0,3-1.343,3-3S41.657,21,40,21z M32,0C18.746,0,8,10.747,8,24c0,13.254,24,40,24,40s24-26.746,24-40\r\n\t\t\t\tC56,10.747,45.254,0,32,0z M32,40c-8.836,0-16-7.164-16-16S23.164,8,32,8s16,7.164,16,16S40.836,40,32,40z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.pin_zoom_in = pin_zoom_in; \ No newline at end of file diff --git a/dist/ikons/pin_zoom_out.js b/dist/ikons/pin_zoom_out.js new file mode 100644 index 000000000..ca0b3e063 --- /dev/null +++ b/dist/ikons/pin_zoom_out.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pin_zoom_out = void 0; +var pin_zoom_out = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "PIN__x2F__ZOOM_OUT_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "PIN__x2F__ZOOM_OUT" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "PIN__x2F__ZOOM_OUT" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M40,21H24c-1.657,0-3,1.343-3,3s1.343,3,3,3h16c1.657,0,3-1.343,3-3S41.657,21,40,21z M32,0C18.746,0,8,10.747,8,24\r\n\t\t\t\tc0,13.254,24,40,24,40s24-26.746,24-40C56,10.747,45.254,0,32,0z M32,40c-8.836,0-16-7.164-16-16S23.164,8,32,8s16,7.164,16,16\r\n\t\t\t\tS40.836,40,32,40z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M40,21H24c-1.657,0-3,1.343-3,3s1.343,3,3,3h16c1.657,0,3-1.343,3-3S41.657,21,40,21z M32,0C18.746,0,8,10.747,8,24\r\n\t\t\t\tc0,13.254,24,40,24,40s24-26.746,24-40C56,10.747,45.254,0,32,0z M32,40c-8.836,0-16-7.164-16-16S23.164,8,32,8s16,7.164,16,16\r\n\t\t\t\tS40.836,40,32,40z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.pin_zoom_out = pin_zoom_out; \ No newline at end of file diff --git a/dist/ikons/pinterest_1.js b/dist/ikons/pinterest_1.js new file mode 100644 index 000000000..9bdce7fec --- /dev/null +++ b/dist/ikons/pinterest_1.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pinterest_1 = void 0; +var pinterest_1 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "pinterest_2_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "pinterest_1_" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "pinterest_1_" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M55.988,15.676c-0.967-3.324-2.491-5.987-4.586-8.274c-2.033-2.223-4.437-4.016-7.449-5.364\r\n\t\t\t\tC41.1,0.762,37.307-0.183,33.139,0.014c-1.428,0.067-2.742,0.144-4.013,0.329c-3.83,0.557-6.978,1.715-9.768,3.364\r\n\t\t\t\tc-3.63,2.146-6.612,5.15-8.647,8.906c-0.981,1.809-1.867,4.037-2.343,6.452c-0.493,2.498-0.494,5.513,0,8.096\r\n\t\t\t\tc0.812,4.253,2.794,7.532,6.055,9.336c0.436,0.241,1.082,0.617,1.595,0.606c1.241-0.024,1.27-1.492,1.545-2.555\r\n\t\t\t\tc0.228-0.882,0.761-2.096,0.299-2.91c-0.326-0.574-0.815-0.99-1.146-1.493c-1.046-1.586-1.695-3.622-1.695-6.249\r\n\t\t\t\tc0-3.408,0.833-6.145,2.093-8.526c2.406-4.545,6.493-7.838,12.285-8.831c3.188-0.546,6.777-0.264,9.371,0.582\r\n\t\t\t\tc2.613,0.853,4.763,2.371,6.279,4.276c1.594,2.002,2.598,4.583,2.816,7.793c0.117,1.739-0.006,3.502-0.174,5.035\r\n\t\t\t\tc-0.524,4.757-1.906,8.754-4.187,11.715c-1.426,1.852-3.56,3.813-6.629,3.922c-1.737,0.061-2.998-0.365-4.062-1.139\r\n\t\t\t\tc-1.027-0.748-1.779-1.744-2.12-3.188c-0.369-1.574,0.078-3.072,0.473-4.53c0.798-2.94,1.675-5.229,2.342-8.274\r\n\t\t\t\tc0.297-1.352,0.568-3.19,0.2-4.731c-0.347-1.445-1.087-2.467-2.168-3.112c-1.049-0.626-2.777-0.872-4.336-0.33\r\n\t\t\t\tc-2.453,0.855-4.045,3.201-4.735,5.845c-0.391,1.496-0.531,3.119-0.349,4.858c0.158,1.514,0.518,2.809,1.071,4.251\r\n\t\t\t\tc0.076,0.197-0.143,0.768-0.225,1.114c-1.222,5.192-2.377,10.25-3.588,15.408c-0.636,2.708-1.321,5.419-1.47,8.679\r\n\t\t\t\tc-0.131,2.86-0.371,5.803-0.019,8.35c0.065,0.469,0.094,0.791,0.424,0.86c0.433,0.089,0.127,0.755,1.564-0.911\r\n\t\t\t\tc2.163-2.506,3.811-5.6,5.109-8.805c0.783-1.934,1.256-4.068,1.794-6.173c0.546-2.134,1.072-4.318,1.595-6.401\r\n\t\t\t\tc0.804,1.414,1.939,2.35,3.29,3.112c1.362,0.769,2.979,1.306,4.959,1.442c2.037,0.142,3.94-0.223,5.606-0.709\r\n\t\t\t\tc1.682-0.49,3.162-1.226,4.387-2.024c5.046-3.29,8.408-9.072,9.594-16.142c0.316-1.889,0.77-3.777,0.77-5.921\r\n\t\t\t\tC56.982,19.258,56.492,17.406,55.988,15.676z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M55.988,15.676c-0.967-3.324-2.491-5.987-4.586-8.274c-2.033-2.223-4.437-4.016-7.449-5.364\r\n\t\t\t\tC41.1,0.762,37.307-0.183,33.139,0.014c-1.428,0.067-2.742,0.144-4.013,0.329c-3.83,0.557-6.978,1.715-9.768,3.364\r\n\t\t\t\tc-3.63,2.146-6.612,5.15-8.647,8.906c-0.981,1.809-1.867,4.037-2.343,6.452c-0.493,2.498-0.494,5.513,0,8.096\r\n\t\t\t\tc0.812,4.253,2.794,7.532,6.055,9.336c0.436,0.241,1.082,0.617,1.595,0.606c1.241-0.024,1.27-1.492,1.545-2.555\r\n\t\t\t\tc0.228-0.882,0.761-2.096,0.299-2.91c-0.326-0.574-0.815-0.99-1.146-1.493c-1.046-1.586-1.695-3.622-1.695-6.249\r\n\t\t\t\tc0-3.408,0.833-6.145,2.093-8.526c2.406-4.545,6.493-7.838,12.285-8.831c3.188-0.546,6.777-0.264,9.371,0.582\r\n\t\t\t\tc2.613,0.853,4.763,2.371,6.279,4.276c1.594,2.002,2.598,4.583,2.816,7.793c0.117,1.739-0.006,3.502-0.174,5.035\r\n\t\t\t\tc-0.524,4.757-1.906,8.754-4.187,11.715c-1.426,1.852-3.56,3.813-6.629,3.922c-1.737,0.061-2.998-0.365-4.062-1.139\r\n\t\t\t\tc-1.027-0.748-1.779-1.744-2.12-3.188c-0.369-1.574,0.078-3.072,0.473-4.53c0.798-2.94,1.675-5.229,2.342-8.274\r\n\t\t\t\tc0.297-1.352,0.568-3.19,0.2-4.731c-0.347-1.445-1.087-2.467-2.168-3.112c-1.049-0.626-2.777-0.872-4.336-0.33\r\n\t\t\t\tc-2.453,0.855-4.045,3.201-4.735,5.845c-0.391,1.496-0.531,3.119-0.349,4.858c0.158,1.514,0.518,2.809,1.071,4.251\r\n\t\t\t\tc0.076,0.197-0.143,0.768-0.225,1.114c-1.222,5.192-2.377,10.25-3.588,15.408c-0.636,2.708-1.321,5.419-1.47,8.679\r\n\t\t\t\tc-0.131,2.86-0.371,5.803-0.019,8.35c0.065,0.469,0.094,0.791,0.424,0.86c0.433,0.089,0.127,0.755,1.564-0.911\r\n\t\t\t\tc2.163-2.506,3.811-5.6,5.109-8.805c0.783-1.934,1.256-4.068,1.794-6.173c0.546-2.134,1.072-4.318,1.595-6.401\r\n\t\t\t\tc0.804,1.414,1.939,2.35,3.29,3.112c1.362,0.769,2.979,1.306,4.959,1.442c2.037,0.142,3.94-0.223,5.606-0.709\r\n\t\t\t\tc1.682-0.49,3.162-1.226,4.387-2.024c5.046-3.29,8.408-9.072,9.594-16.142c0.316-1.889,0.77-3.777,0.77-5.921\r\n\t\t\t\tC56.982,19.258,56.492,17.406,55.988,15.676z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.pinterest_1 = pinterest_1; \ No newline at end of file diff --git a/dist/ikons/pinterest_2.js b/dist/ikons/pinterest_2.js new file mode 100644 index 000000000..3d92fa9fa --- /dev/null +++ b/dist/ikons/pinterest_2.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pinterest_2 = void 0; +var pinterest_2 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "pinterest_3_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "pinterest" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "pinterest" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M32,0C14.328,0,0,14.328,0,32c0,13.172,7.961,24.484,19.33,29.396c-0.082-2.23-0.002-4.892,0.562-7.303\r\n\t\t\t\tc0.621-2.604,4.137-17.5,4.137-17.5s-1.027-2.053-1.027-5.084c0-4.754,2.762-8.312,6.193-8.312c2.922,0,4.334,2.199,4.334,4.826\r\n\t\t\t\tc0,2.936-1.873,7.326-2.84,11.393c-0.801,3.406,1.715,6.188,5.075,6.188c6.079,0,10.176-7.815,10.176-17.079\r\n\t\t\t\tc0-7.035-4.734-12.307-13.359-12.307c-9.738,0-15.815,7.265-15.815,15.383c0,2.797,0.828,4.773,2.123,6.299\r\n\t\t\t\tc0.594,0.701,0.674,0.983,0.457,1.793c-0.156,0.588-0.502,2.01-0.65,2.578c-0.213,0.812-0.875,1.098-1.609,0.799\r\n\t\t\t\tc-4.484-1.828-6.578-6.742-6.578-12.266c0-9.125,7.695-20.064,22.953-20.064c12.266,0,20.334,8.875,20.334,18.395\r\n\t\t\t\tc0,12.605-7.006,22.013-17.328,22.013c-3.469,0-6.732-1.875-7.844-4c0,0-1.871,7.393-2.262,8.826\r\n\t\t\t\tc-0.674,2.439-1.973,4.877-3.176,6.797C25.982,63.57,28.94,64,32,64c17.672,0,32-14.328,32-32S49.672,0,32,0z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M32,0C14.328,0,0,14.328,0,32c0,13.172,7.961,24.484,19.33,29.396c-0.082-2.23-0.002-4.892,0.562-7.303\r\n\t\t\t\tc0.621-2.604,4.137-17.5,4.137-17.5s-1.027-2.053-1.027-5.084c0-4.754,2.762-8.312,6.193-8.312c2.922,0,4.334,2.199,4.334,4.826\r\n\t\t\t\tc0,2.936-1.873,7.326-2.84,11.393c-0.801,3.406,1.715,6.188,5.075,6.188c6.079,0,10.176-7.815,10.176-17.079\r\n\t\t\t\tc0-7.035-4.734-12.307-13.359-12.307c-9.738,0-15.815,7.265-15.815,15.383c0,2.797,0.828,4.773,2.123,6.299\r\n\t\t\t\tc0.594,0.701,0.674,0.983,0.457,1.793c-0.156,0.588-0.502,2.01-0.65,2.578c-0.213,0.812-0.875,1.098-1.609,0.799\r\n\t\t\t\tc-4.484-1.828-6.578-6.742-6.578-12.266c0-9.125,7.695-20.064,22.953-20.064c12.266,0,20.334,8.875,20.334,18.395\r\n\t\t\t\tc0,12.605-7.006,22.013-17.328,22.013c-3.469,0-6.732-1.875-7.844-4c0,0-1.871,7.393-2.262,8.826\r\n\t\t\t\tc-0.674,2.439-1.973,4.877-3.176,6.797C25.982,63.57,28.94,64,32,64c17.672,0,32-14.328,32-32S49.672,0,32,0z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.pinterest_2 = pinterest_2; \ No newline at end of file diff --git a/dist/ikons/play.js b/dist/ikons/play.js new file mode 100644 index 000000000..9451fdcc9 --- /dev/null +++ b/dist/ikons/play.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.play = void 0; +var play = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "PLAY_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "PLAY" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "PLAY" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M46,32c0-1.099-0.592-2.06-1.475-2.583l0,0L22.561,16.438c-0.008-0.005-0.016-0.009-0.024-0.014l-0.011-0.007l0,0\r\n\t\t\t\tC22.079,16.153,21.557,16,21,16c-1.657,0-3,1.343-3,3v26c0,1.657,1.343,3,3,3c0.557,0,1.079-0.152,1.526-0.417l0,0l0.011-0.007\r\n\t\t\t\tc0.008-0.006,0.016-0.01,0.024-0.014l21.964-12.979l0,0C45.408,34.061,46,33.1,46,32z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M46,32c0-1.099-0.592-2.06-1.475-2.583l0,0L22.561,16.438c-0.008-0.005-0.016-0.009-0.024-0.014l-0.011-0.007l0,0\r\n\t\t\t\tC22.079,16.153,21.557,16,21,16c-1.657,0-3,1.343-3,3v26c0,1.657,1.343,3,3,3c0.557,0,1.079-0.152,1.526-0.417l0,0l0.011-0.007\r\n\t\t\t\tc0.008-0.006,0.016-0.01,0.024-0.014l21.964-12.979l0,0C45.408,34.061,46,33.1,46,32z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.play = play; \ No newline at end of file diff --git a/dist/ikons/plug.js b/dist/ikons/plug.js new file mode 100644 index 000000000..f39ea6047 --- /dev/null +++ b/dist/ikons/plug.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.plug = void 0; +var plug = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "PLUG" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M54.836,21.812c-1.164-1.164-3.052-1.164-4.216,0l-7.026,7.026l-8.432-8.432\r\n\t\t\tl7.026-7.026c1.164-1.164,1.164-3.052,0-4.216C41.024,8,39.137,8,37.973,9.164l-7.026,7.026l-4.216-4.216l-5.972,5.972\r\n\t\t\tc-6.193,6.193-6.719,15.885-1.617,22.696L9.164,50.62C8,51.784,8,53.672,9.164,54.836c1.164,1.164,3.052,1.164,4.216,0\r\n\t\t\tl9.977-9.977c6.811,5.102,16.503,4.576,22.696-1.617l5.972-5.973l-4.216-4.216l7.026-7.026C56,24.863,56,22.976,54.836,21.812z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M54.836,21.812c-1.164-1.164-3.052-1.164-4.216,0l-7.026,7.026l-8.432-8.432\r\n\t\t\tl7.026-7.026c1.164-1.164,1.164-3.052,0-4.216C41.024,8,39.137,8,37.973,9.164l-7.026,7.026l-4.216-4.216l-5.972,5.972\r\n\t\t\tc-6.193,6.193-6.719,15.885-1.617,22.696L9.164,50.62C8,51.784,8,53.672,9.164,54.836c1.164,1.164,3.052,1.164,4.216,0\r\n\t\t\tl9.977-9.977c6.811,5.102,16.503,4.576,22.696-1.617l5.972-5.973l-4.216-4.216l7.026-7.026C56,24.863,56,22.976,54.836,21.812z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.plug = plug; \ No newline at end of file diff --git a/dist/ikons/plus.js b/dist/ikons/plus.js new file mode 100644 index 000000000..6a0607048 --- /dev/null +++ b/dist/ikons/plus.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.plus = void 0; +var plus = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "PLUS_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "PLUS" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "PLUS" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M52,29H35V12c0-1.657-1.343-3-3-3s-3,1.343-3,3v17H12c-1.657,0-3,1.343-3,3s1.343,3,3,3h17v17c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3V35h17c1.657,0,3-1.343,3-3S53.657,29,52,29z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M52,29H35V12c0-1.657-1.343-3-3-3s-3,1.343-3,3v17H12c-1.657,0-3,1.343-3,3s1.343,3,3,3h17v17c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3V35h17c1.657,0,3-1.343,3-3S53.657,29,52,29z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.plus = plus; \ No newline at end of file diff --git a/dist/ikons/polaroid.js b/dist/ikons/polaroid.js new file mode 100644 index 000000000..7eba91646 --- /dev/null +++ b/dist/ikons/polaroid.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.polaroid = void 0; +var polaroid = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "POLAROID_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "POLAROID" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "POLAROID" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M53,6H11C9.343,6,8,7.343,8,9v46c0,1.657,1.343,3,3,3h42c1.657,0,3-1.343,3-3V9C56,7.343,54.657,6,53,6z M50,43H14V12h36\r\n\t\t\t\tV43z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M53,6H11C9.343,6,8,7.343,8,9v46c0,1.657,1.343,3,3,3h42c1.657,0,3-1.343,3-3V9C56,7.343,54.657,6,53,6z M50,43H14V12h36\r\n\t\t\t\tV43z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.polaroid = polaroid; \ No newline at end of file diff --git a/dist/ikons/polaroids.js b/dist/ikons/polaroids.js new file mode 100644 index 000000000..e1ee3c558 --- /dev/null +++ b/dist/ikons/polaroids.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.polaroids = void 0; +var polaroids = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "POLAROIDS_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "POLAROIDS" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "POLAROIDS" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M45,12H3c-1.657,0-3,1.343-3,3v46c0,1.657,1.343,3,3,3h42c1.657,0,3-1.343,3-3V15C48,13.343,46.657,12,45,12z M42,49H6\r\n\t\t\t\tV18h36V49z M61,0H19c-1.657,0-3,1.343-3,3v6h6V6h36v31h-7v15h10c1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M45,12H3c-1.657,0-3,1.343-3,3v46c0,1.657,1.343,3,3,3h42c1.657,0,3-1.343,3-3V15C48,13.343,46.657,12,45,12z M42,49H6\r\n\t\t\t\tV18h36V49z M61,0H19c-1.657,0-3,1.343-3,3v6h6V6h36v31h-7v15h10c1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.polaroids = polaroids; \ No newline at end of file diff --git a/dist/ikons/power.js b/dist/ikons/power.js new file mode 100644 index 000000000..9731bdcbf --- /dev/null +++ b/dist/ikons/power.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.power = void 0; +var power = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "POWER_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "POWER" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "POWER" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M31,33c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3.186l0,0V30C28,31.657,29.343,33,31,33z M42,8.162\r\n\t\t\t\tv0.009C41.688,8.061,41.352,8,41,8c-1.657,0-3,1.343-3,3c0,1.306,0.835,2.417,2,2.829v0.003C48.229,17.335,54,25.492,54,35\r\n\t\t\t\tc0,12.703-10.297,23-23,23S8,47.703,8,35c0-9.508,5.771-17.666,14-21.168v-0.003c1.165-0.412,2-1.523,2-2.829\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.351,0-0.687,0.061-1,0.171V8.162C9.439,12.495,2,22.878,2,35c0,16.016,12.984,29,29,29\r\n\t\t\t\tc16.016,0,29-12.984,29-29C60,22.878,52.561,12.495,42,8.162z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M31,33c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3.186l0,0V30C28,31.657,29.343,33,31,33z M42,8.162\r\n\t\t\t\tv0.009C41.688,8.061,41.352,8,41,8c-1.657,0-3,1.343-3,3c0,1.306,0.835,2.417,2,2.829v0.003C48.229,17.335,54,25.492,54,35\r\n\t\t\t\tc0,12.703-10.297,23-23,23S8,47.703,8,35c0-9.508,5.771-17.666,14-21.168v-0.003c1.165-0.412,2-1.523,2-2.829\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.351,0-0.687,0.061-1,0.171V8.162C9.439,12.495,2,22.878,2,35c0,16.016,12.984,29,29,29\r\n\t\t\t\tc16.016,0,29-12.984,29-29C60,22.878,52.561,12.495,42,8.162z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.power = power; \ No newline at end of file diff --git a/dist/ikons/presentation.js b/dist/ikons/presentation.js new file mode 100644 index 000000000..9f9089c56 --- /dev/null +++ b/dist/ikons/presentation.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.presentation = void 0; +var presentation = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "PRESENTATION" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M61,6H35V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v3H3C1.343,6,0,7.343,0,9\r\n\t\t\tc0,1.657,1.343,3,3,3h3v34c0,1.657,1.343,3,3,3h15.757l-9.879,9.879C14.336,59.422,14,60.172,14,61c0,1.657,1.343,3,3,3\r\n\t\t\tc0.828,0,1.579-0.336,2.121-0.879L29,53.243V61c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-7.757l9.879,9.879\r\n\t\t\tC45.422,63.664,46.172,64,47,64c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L39.243,49H55c1.657,0,3-1.343,3-3V12h3\r\n\t\t\tc1.657,0,3-1.343,3-3C64,7.343,62.657,6,61,6z M52,43H12V12h40V43z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M61,6H35V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v3H3C1.343,6,0,7.343,0,9\r\n\t\t\tc0,1.657,1.343,3,3,3h3v34c0,1.657,1.343,3,3,3h15.757l-9.879,9.879C14.336,59.422,14,60.172,14,61c0,1.657,1.343,3,3,3\r\n\t\t\tc0.828,0,1.579-0.336,2.121-0.879L29,53.243V61c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-7.757l9.879,9.879\r\n\t\t\tC45.422,63.664,46.172,64,47,64c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L39.243,49H55c1.657,0,3-1.343,3-3V12h3\r\n\t\t\tc1.657,0,3-1.343,3-3C64,7.343,62.657,6,61,6z M52,43H12V12h40V43z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.presentation = presentation; \ No newline at end of file diff --git a/dist/ikons/printer.js b/dist/ikons/printer.js new file mode 100644 index 000000000..7eb4a21b1 --- /dev/null +++ b/dist/ikons/printer.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.printer = void 0; +var printer = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "PRINTER_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "PRINTER" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "PRINTER" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M61,15H3c-1.657,0-3,1.343-3,3v28c0,1.657,1.343,3,3,3h10V34h38v15h10c1.657,0,3-1.343,3-3V18C64,16.343,62.657,15,61,15\r\n\t\t\t\tz M9,27c-1.657,0-3-1.343-3-3s1.343-3,3-3s3,1.343,3,3S10.657,27,9,27z M48,2.969h-0.003c0-0.001,0-0.002,0-0.003\r\n\t\t\t\tC47.99,2.351,47.8,1.782,47.477,1.309c-0.004-0.007-0.012-0.013-0.017-0.02c-0.104-0.15-0.22-0.291-0.351-0.419l0,0\r\n\t\t\t\tc-0.002-0.002-0.004-0.004-0.008-0.006c-0.166-0.165-0.358-0.302-0.561-0.425c-0.002-0.001-0.005-0.002-0.007-0.004\r\n\t\t\t\tc0,0-0.001,0-0.001-0.001c-0.285-0.171-0.594-0.305-0.93-0.373l0,0c-0.139-0.028-0.283-0.034-0.427-0.043\r\n\t\t\t\tC45.117,0.014,45.061,0,45,0H19c-1.243,0-2.309,0.756-2.764,1.832C16.084,2.191,16,2.586,16,3v9h32V2.969z M16,61\r\n\t\t\t\tc0,1.657,1.343,3,3,3h26c1.657,0,3-1.343,3-3V37H16V61z M22,43h20v3H22V43z M22,49h20v3H22V49z M22,55h20v3H22V55z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M61,15H3c-1.657,0-3,1.343-3,3v28c0,1.657,1.343,3,3,3h10V34h38v15h10c1.657,0,3-1.343,3-3V18C64,16.343,62.657,15,61,15\r\n\t\t\t\tz M9,27c-1.657,0-3-1.343-3-3s1.343-3,3-3s3,1.343,3,3S10.657,27,9,27z M48,2.969h-0.003c0-0.001,0-0.002,0-0.003\r\n\t\t\t\tC47.99,2.351,47.8,1.782,47.477,1.309c-0.004-0.007-0.012-0.013-0.017-0.02c-0.104-0.15-0.22-0.291-0.351-0.419l0,0\r\n\t\t\t\tc-0.002-0.002-0.004-0.004-0.008-0.006c-0.166-0.165-0.358-0.302-0.561-0.425c-0.002-0.001-0.005-0.002-0.007-0.004\r\n\t\t\t\tc0,0-0.001,0-0.001-0.001c-0.285-0.171-0.594-0.305-0.93-0.373l0,0c-0.139-0.028-0.283-0.034-0.427-0.043\r\n\t\t\t\tC45.117,0.014,45.061,0,45,0H19c-1.243,0-2.309,0.756-2.764,1.832C16.084,2.191,16,2.586,16,3v9h32V2.969z M16,61\r\n\t\t\t\tc0,1.657,1.343,3,3,3h26c1.657,0,3-1.343,3-3V37H16V61z M22,43h20v3H22V43z M22,49h20v3H22V49z M22,55h20v3H22V55z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.printer = printer; \ No newline at end of file diff --git a/dist/ikons/progress.js b/dist/ikons/progress.js new file mode 100644 index 000000000..111e11f3e --- /dev/null +++ b/dist/ikons/progress.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.progress = void 0; +var progress = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "PROGRESS_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "PROGRESS" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "PROGRESS" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M26,29c-1.657,0-3,1.343-3,3v16c0,1.657,1.343,3,3,3s3-1.343,3-3V32C29,30.343,27.657,29,26,29z M14,37\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v8c0,1.657,1.343,3,3,3s3-1.343,3-3v-8C17,38.343,15.657,37,14,37z M50,13c-1.657,0-3,1.343-3,3v32\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3V16C53,14.343,51.657,13,50,13z M38,21c-1.657,0-3,1.343-3,3v24c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3V24C41,22.343,39.657,21,38,21z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M26,29c-1.657,0-3,1.343-3,3v16c0,1.657,1.343,3,3,3s3-1.343,3-3V32C29,30.343,27.657,29,26,29z M14,37\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v8c0,1.657,1.343,3,3,3s3-1.343,3-3v-8C17,38.343,15.657,37,14,37z M50,13c-1.657,0-3,1.343-3,3v32\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3V16C53,14.343,51.657,13,50,13z M38,21c-1.657,0-3,1.343-3,3v24c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3V24C41,22.343,39.657,21,38,21z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.progress = progress; \ No newline at end of file diff --git a/dist/ikons/record.js b/dist/ikons/record.js new file mode 100644 index 000000000..3106b06c1 --- /dev/null +++ b/dist/ikons/record.js @@ -0,0 +1,54 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.record = void 0; +var record = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "RECORD_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "RECORD" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "RECORD" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "cx": "32", + "cy": "32", + "r": "14" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "32", + "cy": "32", + "r": "14" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.record = record; \ No newline at end of file diff --git a/dist/ikons/repeat.js b/dist/ikons/repeat.js new file mode 100644 index 000000000..8c364b33f --- /dev/null +++ b/dist/ikons/repeat.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.repeat = void 0; +var repeat = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "REPEAT" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M61,22c-1.657,0-3,1.343-3,3v7c0,6.627-5.373,12-12,12H26v0.003h-2.987v-0.005\r\n\t\t\tH21.24l1.878-1.879c0.543-0.543,0.878-1.293,0.878-2.122c0-1.657-1.343-3-2.999-3c-0.828,0-1.578,0.336-2.121,0.879l-6.998,7.001\r\n\t\t\tC11.336,45.42,11,46.17,11,46.999c0,0.829,0.336,1.578,0.878,2.122l6.998,7.001C19.42,56.664,20.169,57,20.998,57\r\n\t\t\tc1.657,0,2.999-1.343,2.999-3c0-0.829-0.336-1.578-0.878-2.122l-1.873-1.874H27V50h19c9.941,0,18-8.059,18-18v-7\r\n\t\t\tC64,23.343,62.657,22,61,22z M38,20v-0.004h2.987v0.005h1.773l-1.878,1.879c-0.543,0.543-0.879,1.293-0.879,2.122\r\n\t\t\tc0,1.657,1.343,3,2.999,3c0.828,0,1.578-0.336,2.121-0.879l6.998-7.001C52.664,18.58,53,17.83,53,17.001\r\n\t\t\tc0-0.829-0.336-1.579-0.878-2.122l-6.998-7.001C44.581,7.336,43.831,7,43.003,7c-1.657,0-2.999,1.344-2.999,3.001\r\n\t\t\tc0,0.828,0.336,1.579,0.879,2.122l1.873,1.874H37V14H18C8.059,14,0,22.059,0,32v7c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-7\r\n\t\t\tc0-6.627,5.373-12,12-12H38z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M61,22c-1.657,0-3,1.343-3,3v7c0,6.627-5.373,12-12,12H26v0.003h-2.987v-0.005\r\n\t\t\tH21.24l1.878-1.879c0.543-0.543,0.878-1.293,0.878-2.122c0-1.657-1.343-3-2.999-3c-0.828,0-1.578,0.336-2.121,0.879l-6.998,7.001\r\n\t\t\tC11.336,45.42,11,46.17,11,46.999c0,0.829,0.336,1.578,0.878,2.122l6.998,7.001C19.42,56.664,20.169,57,20.998,57\r\n\t\t\tc1.657,0,2.999-1.343,2.999-3c0-0.829-0.336-1.578-0.878-2.122l-1.873-1.874H27V50h19c9.941,0,18-8.059,18-18v-7\r\n\t\t\tC64,23.343,62.657,22,61,22z M38,20v-0.004h2.987v0.005h1.773l-1.878,1.879c-0.543,0.543-0.879,1.293-0.879,2.122\r\n\t\t\tc0,1.657,1.343,3,2.999,3c0.828,0,1.578-0.336,2.121-0.879l6.998-7.001C52.664,18.58,53,17.83,53,17.001\r\n\t\t\tc0-0.829-0.336-1.579-0.878-2.122l-6.998-7.001C44.581,7.336,43.831,7,43.003,7c-1.657,0-2.999,1.344-2.999,3.001\r\n\t\t\tc0,0.828,0.336,1.579,0.879,2.122l1.873,1.874H37V14H18C8.059,14,0,22.059,0,32v7c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-7\r\n\t\t\tc0-6.627,5.373-12,12-12H38z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.repeat = repeat; \ No newline at end of file diff --git a/dist/ikons/repeat_1.js b/dist/ikons/repeat_1.js new file mode 100644 index 000000000..8517d4dc2 --- /dev/null +++ b/dist/ikons/repeat_1.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.repeat_1 = void 0; +var repeat_1 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "REPEAT_1_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "REPEAT_1" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "REPEAT_1" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M45,20c0,1.657,1.343,3,3,3h13c1.657,0,3-1.343,3-3V8c0-1.657-1.343-3-3-3s-3,1.343-3,3v5.39C52.199,5.288,42.725,0,32,0\r\n\t\t\t\tC14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32c0-1.657-1.343-3-3-3s-3,1.343-3,3c0,14.359-11.641,26-26,26\r\n\t\t\t\tC17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6c8.77,0,16.512,4.348,21.218,11H48C46.343,17,45,18.343,45,20z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M45,20c0,1.657,1.343,3,3,3h13c1.657,0,3-1.343,3-3V8c0-1.657-1.343-3-3-3s-3,1.343-3,3v5.39C52.199,5.288,42.725,0,32,0\r\n\t\t\t\tC14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32c0-1.657-1.343-3-3-3s-3,1.343-3,3c0,14.359-11.641,26-26,26\r\n\t\t\t\tC17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6c8.77,0,16.512,4.348,21.218,11H48C46.343,17,45,18.343,45,20z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.repeat_1 = repeat_1; \ No newline at end of file diff --git a/dist/ikons/repeat_2.js b/dist/ikons/repeat_2.js new file mode 100644 index 000000000..be97b9d93 --- /dev/null +++ b/dist/ikons/repeat_2.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.repeat_2 = void 0; +var repeat_2 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "REPEAT_2_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "REPEAT_2" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "REPEAT_2" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M61,29c-1.657,0-3,1.343-3,3c0,14.359-11.641,26-26,26c-8.768,0-16.506-4.348-21.207-11H16c1.657,0,3-1.343,3-3\r\n\t\t\t\ts-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3s3-1.343,3-3v-5.454C11.789,58.68,21.254,64,32,64\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,30.343,62.657,29,61,29z M61,5c-1.657,0-3,1.343-3,3v5.412C52.204,5.299,42.732,0,32,0\r\n\t\t\t\tC14.327,0,0,14.327,0,32c0,1.657,1.343,3,3,3s3-1.343,3-3C6,17.641,17.641,6,32,6c8.76,0,16.469,4.355,21.167,11H48\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h13c1.657,0,3-1.343,3-3V8C64,6.343,62.657,5,61,5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M61,29c-1.657,0-3,1.343-3,3c0,14.359-11.641,26-26,26c-8.768,0-16.506-4.348-21.207-11H16c1.657,0,3-1.343,3-3\r\n\t\t\t\ts-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3s3-1.343,3-3v-5.454C11.789,58.68,21.254,64,32,64\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,30.343,62.657,29,61,29z M61,5c-1.657,0-3,1.343-3,3v5.412C52.204,5.299,42.732,0,32,0\r\n\t\t\t\tC14.327,0,0,14.327,0,32c0,1.657,1.343,3,3,3s3-1.343,3-3C6,17.641,17.641,6,32,6c8.76,0,16.469,4.355,21.167,11H48\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h13c1.657,0,3-1.343,3-3V8C64,6.343,62.657,5,61,5z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.repeat_2 = repeat_2; \ No newline at end of file diff --git a/dist/ikons/resize_1.js b/dist/ikons/resize_1.js new file mode 100644 index 000000000..110e5ce70 --- /dev/null +++ b/dist/ikons/resize_1.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.resize_1 = void 0; +var resize_1 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "RESIZE_1_3_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "RESIZE_1_2_" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "RESIZE_1_2_" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M28.157,23.914L13.243,9H18c1.657,0,3-1.343,3-3s-1.343-3-3-3H6C4.343,3,3,4.343,3,6v12c0,1.657,1.343,3,3,3s3-1.343,3-3\r\n\t\t\t\tv-4.757l14.914,14.914l0.003-0.003C24.457,28.676,25.19,29,26,29c1.657,0,3-1.343,3-3c0-0.81-0.324-1.543-0.847-2.083\r\n\t\t\t\tL28.157,23.914z M26,35c-0.81,0-1.543,0.325-2.082,0.848l-0.003-0.004L9,50.757V46c0-1.657-1.343-3-3-3s-3,1.343-3,3v12\r\n\t\t\t\tc0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3s-1.343-3-3-3h-4.757l14.914-14.914l-0.003-0.003C28.676,39.543,29,38.811,29,38\r\n\t\t\t\tC29,36.343,27.657,35,26,35z M58,43c-1.657,0-3,1.343-3,3v4.757L40.086,35.843l-0.003,0.003C39.543,35.325,38.811,35,38,35\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.811,0.324,1.543,0.848,2.083l-0.004,0.003L50.757,55H46c-1.657,0-3,1.343-3,3s1.343,3,3,3h12\r\n\t\t\t\tc1.657,0,3-1.343,3-3V46C61,44.343,59.657,43,58,43z M58,3H46c-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757L35.843,23.914l0.003,0.003\r\n\t\t\t\tC35.325,24.457,35,25.19,35,26c0,1.657,1.343,3,3,3c0.811,0,1.543-0.325,2.083-0.847l0.003,0.003L55,13.243V18\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3V6C61,4.343,59.657,3,58,3z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M28.157,23.914L13.243,9H18c1.657,0,3-1.343,3-3s-1.343-3-3-3H6C4.343,3,3,4.343,3,6v12c0,1.657,1.343,3,3,3s3-1.343,3-3\r\n\t\t\t\tv-4.757l14.914,14.914l0.003-0.003C24.457,28.676,25.19,29,26,29c1.657,0,3-1.343,3-3c0-0.81-0.324-1.543-0.847-2.083\r\n\t\t\t\tL28.157,23.914z M26,35c-0.81,0-1.543,0.325-2.082,0.848l-0.003-0.004L9,50.757V46c0-1.657-1.343-3-3-3s-3,1.343-3,3v12\r\n\t\t\t\tc0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3s-1.343-3-3-3h-4.757l14.914-14.914l-0.003-0.003C28.676,39.543,29,38.811,29,38\r\n\t\t\t\tC29,36.343,27.657,35,26,35z M58,43c-1.657,0-3,1.343-3,3v4.757L40.086,35.843l-0.003,0.003C39.543,35.325,38.811,35,38,35\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.811,0.324,1.543,0.848,2.083l-0.004,0.003L50.757,55H46c-1.657,0-3,1.343-3,3s1.343,3,3,3h12\r\n\t\t\t\tc1.657,0,3-1.343,3-3V46C61,44.343,59.657,43,58,43z M58,3H46c-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757L35.843,23.914l0.003,0.003\r\n\t\t\t\tC35.325,24.457,35,25.19,35,26c0,1.657,1.343,3,3,3c0.811,0,1.543-0.325,2.083-0.847l0.003,0.003L55,13.243V18\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3V6C61,4.343,59.657,3,58,3z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.resize_1 = resize_1; \ No newline at end of file diff --git a/dist/ikons/resize_2.js b/dist/ikons/resize_2.js new file mode 100644 index 000000000..fe8bcb5f5 --- /dev/null +++ b/dist/ikons/resize_2.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.resize_2 = void 0; +var resize_2 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "RESIZE_2_3_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "RESIZE_2_2_" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "RESIZE_2_2_" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M26,35H14c-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757L3.843,55.914l0.003,0.003C3.325,56.457,3,57.189,3,58\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.81,0,1.543-0.325,2.082-0.848l0.003,0.004L23,45.243V50c0,1.657,1.343,3,3,3s3-1.343,3-3V38\r\n\t\t\t\tC29,36.343,27.657,35,26,35z M38,29h12c1.657,0,3-1.343,3-3s-1.343-3-3-3h-4.757L60.157,8.086l-0.003-0.003\r\n\t\t\t\tC60.676,7.543,61,6.81,61,6c0-1.657-1.343-3-3-3c-0.811,0-1.543,0.325-2.083,0.847l-0.003-0.003L41,18.758V14\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v12C35,27.657,36.343,29,38,29z M60.157,55.914L45.243,41H50c1.657,0,3-1.343,3-3s-1.343-3-3-3\r\n\t\t\t\tH38c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3s3-1.343,3-3v-4.757l14.914,14.914l0.003-0.003C56.457,60.676,57.189,61,58,61\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.811-0.325-1.543-0.848-2.083L60.157,55.914z M26,11c-1.657,0-3,1.343-3,3v4.757L8.086,3.843\r\n\t\t\t\tL8.083,3.847C7.543,3.325,6.81,3,6,3C4.343,3,3,4.343,3,6c0,0.81,0.325,1.543,0.847,2.082L3.843,8.086L18.757,23H14\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h12c1.657,0,3-1.343,3-3V14C29,12.343,27.657,11,26,11z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M26,35H14c-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757L3.843,55.914l0.003,0.003C3.325,56.457,3,57.189,3,58\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.81,0,1.543-0.325,2.082-0.848l0.003,0.004L23,45.243V50c0,1.657,1.343,3,3,3s3-1.343,3-3V38\r\n\t\t\t\tC29,36.343,27.657,35,26,35z M38,29h12c1.657,0,3-1.343,3-3s-1.343-3-3-3h-4.757L60.157,8.086l-0.003-0.003\r\n\t\t\t\tC60.676,7.543,61,6.81,61,6c0-1.657-1.343-3-3-3c-0.811,0-1.543,0.325-2.083,0.847l-0.003-0.003L41,18.758V14\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v12C35,27.657,36.343,29,38,29z M60.157,55.914L45.243,41H50c1.657,0,3-1.343,3-3s-1.343-3-3-3\r\n\t\t\t\tH38c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3s3-1.343,3-3v-4.757l14.914,14.914l0.003-0.003C56.457,60.676,57.189,61,58,61\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.811-0.325-1.543-0.848-2.083L60.157,55.914z M26,11c-1.657,0-3,1.343-3,3v4.757L8.086,3.843\r\n\t\t\t\tL8.083,3.847C7.543,3.325,6.81,3,6,3C4.343,3,3,4.343,3,6c0,0.81,0.325,1.543,0.847,2.082L3.843,8.086L18.757,23H14\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h12c1.657,0,3-1.343,3-3V14C29,12.343,27.657,11,26,11z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.resize_2 = resize_2; \ No newline at end of file diff --git a/dist/ikons/resize_3.js b/dist/ikons/resize_3.js new file mode 100644 index 000000000..bc2e9a160 --- /dev/null +++ b/dist/ikons/resize_3.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.resize_3 = void 0; +var resize_3 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "RESIZE_1_4_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "RESIZE_1_1_" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "RESIZE_1_1_" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M26,35c-0.828,0-1.579,0.336-2.121,0.879L9,50.758V46c0-1.657-1.343-3-3-3s-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12\r\n\t\t\t\tc1.657,0,3-1.343,3-3s-1.343-3-3-3h-4.757l14.879-14.879C28.664,39.579,29,38.828,29,38C29,36.343,27.657,35,26,35z M58,3H46\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757L35.879,23.879C35.336,24.422,35,25.172,35,26c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L55,13.243V18c0,1.657,1.343,3,3,3s3-1.343,3-3V6C61,4.343,59.657,3,58,3z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M26,35c-0.828,0-1.579,0.336-2.121,0.879L9,50.758V46c0-1.657-1.343-3-3-3s-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12\r\n\t\t\t\tc1.657,0,3-1.343,3-3s-1.343-3-3-3h-4.757l14.879-14.879C28.664,39.579,29,38.828,29,38C29,36.343,27.657,35,26,35z M58,3H46\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757L35.879,23.879C35.336,24.422,35,25.172,35,26c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L55,13.243V18c0,1.657,1.343,3,3,3s3-1.343,3-3V6C61,4.343,59.657,3,58,3z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.resize_3 = resize_3; \ No newline at end of file diff --git a/dist/ikons/resize_4.js b/dist/ikons/resize_4.js new file mode 100644 index 000000000..8b394fdf1 --- /dev/null +++ b/dist/ikons/resize_4.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.resize_4 = void 0; +var resize_4 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "RESIZE_2_4_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "RESIZE_2_1_" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "RESIZE_2_1_" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M61,6c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L41,18.757V14c0-1.657-1.343-3-3-3s-3,1.343-3,3v12\r\n\t\t\t\tc0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3s-1.343-3-3-3h-4.757L60.121,8.121C60.664,7.579,61,6.828,61,6z M26,35H14\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757L3.879,55.879C3.336,56.422,3,57.172,3,58c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L23,45.243V50c0,1.657,1.343,3,3,3s3-1.343,3-3V38C29,36.343,27.657,35,26,35z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M61,6c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L41,18.757V14c0-1.657-1.343-3-3-3s-3,1.343-3,3v12\r\n\t\t\t\tc0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3s-1.343-3-3-3h-4.757L60.121,8.121C60.664,7.579,61,6.828,61,6z M26,35H14\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757L3.879,55.879C3.336,56.422,3,57.172,3,58c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L23,45.243V50c0,1.657,1.343,3,3,3s3-1.343,3-3V38C29,36.343,27.657,35,26,35z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.resize_4 = resize_4; \ No newline at end of file diff --git a/dist/ikons/resize_5.js b/dist/ikons/resize_5.js new file mode 100644 index 000000000..08972d5e2 --- /dev/null +++ b/dist/ikons/resize_5.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.resize_5 = void 0; +var resize_5 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "RESIZE_1_5_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "RESIZE_1" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "RESIZE_1" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M18,43c-0.828,0-1.578,0.336-2.121,0.879L6,53.757V49c0-1.657-1.343-3-3-3s-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12\r\n\t\t\t\tc1.657,0,3-1.343,3-3s-1.343-3-3-3h-4.757l9.879-9.879C20.664,47.578,21,46.829,21,46C21,44.343,19.657,43,18,43z M61,0H49\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757l-9.879,9.879C43.336,16.422,43,17.172,43,18c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L58,10.243V15c0,1.657,1.343,3,3,3s3-1.343,3-3V3C64,1.343,62.657,0,61,0z M32,23\r\n\t\t\t\tc-4.971,0-9,4.029-9,9c0,4.971,4.029,9,9,9c4.971,0,9-4.029,9-9C41,27.029,36.971,23,32,23z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18,43c-0.828,0-1.578,0.336-2.121,0.879L6,53.757V49c0-1.657-1.343-3-3-3s-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12\r\n\t\t\t\tc1.657,0,3-1.343,3-3s-1.343-3-3-3h-4.757l9.879-9.879C20.664,47.578,21,46.829,21,46C21,44.343,19.657,43,18,43z M61,0H49\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757l-9.879,9.879C43.336,16.422,43,17.172,43,18c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L58,10.243V15c0,1.657,1.343,3,3,3s3-1.343,3-3V3C64,1.343,62.657,0,61,0z M32,23\r\n\t\t\t\tc-4.971,0-9,4.029-9,9c0,4.971,4.029,9,9,9c4.971,0,9-4.029,9-9C41,27.029,36.971,23,32,23z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.resize_5 = resize_5; \ No newline at end of file diff --git a/dist/ikons/resize_6.js b/dist/ikons/resize_6.js new file mode 100644 index 000000000..e4ea1d9d2 --- /dev/null +++ b/dist/ikons/resize_6.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.resize_6 = void 0; +var resize_6 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "RESIZE_2_5_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "RESIZE_2" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "RESIZE_2" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M18,43H6c-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757l-9.879,9.879C0.336,59.422,0,60.172,0,61c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L15,53.243V58c0,1.657,1.343,3,3,3s3-1.343,3-3V46C21,44.343,19.657,43,18,43z M32,23\r\n\t\t\t\tc-4.971,0-9,4.029-9,9c0,4.971,4.029,9,9,9c4.971,0,9-4.029,9-9C41,27.029,36.971,23,32,23z M64,3c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L49,10.757V6c0-1.657-1.343-3-3-3s-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3\r\n\t\t\t\ts-1.343-3-3-3h-4.757l9.879-9.879C63.664,4.578,64,3.829,64,3z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18,43H6c-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757l-9.879,9.879C0.336,59.422,0,60.172,0,61c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L15,53.243V58c0,1.657,1.343,3,3,3s3-1.343,3-3V46C21,44.343,19.657,43,18,43z M32,23\r\n\t\t\t\tc-4.971,0-9,4.029-9,9c0,4.971,4.029,9,9,9c4.971,0,9-4.029,9-9C41,27.029,36.971,23,32,23z M64,3c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L49,10.757V6c0-1.657-1.343-3-3-3s-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3\r\n\t\t\t\ts-1.343-3-3-3h-4.757l9.879-9.879C63.664,4.578,64,3.829,64,3z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.resize_6 = resize_6; \ No newline at end of file diff --git a/dist/ikons/rewind.js b/dist/ikons/rewind.js new file mode 100644 index 000000000..ff3a4eb29 --- /dev/null +++ b/dist/ikons/rewind.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.rewind = void 0; +var rewind = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "REWIND_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "REWIND" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "REWIND" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M48,19c-0.584,0-1.129,0.168-1.59,0.456l0,0L35,26.587V22c0-1.657-1.343-3-3-3c-0.584,0-1.129,0.168-1.59,0.456l0,0\r\n\t\t\t\tl-15.962,9.976c-0.005,0.003-0.011,0.007-0.016,0.01l-0.023,0.014l0,0C13.564,29.987,13,30.927,13,32s0.564,2.014,1.41,2.544l0,0\r\n\t\t\t\tl0.023,0.015c0.005,0.002,0.01,0.006,0.016,0.01l15.962,9.976l0,0C30.871,44.833,31.416,45,32,45c1.657,0,3-1.343,3-3v-4.587\r\n\t\t\t\tl11.41,7.131l0,0C46.871,44.833,47.416,45,48,45c1.657,0,3-1.343,3-3V22C51,20.343,49.657,19,48,19z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M48,19c-0.584,0-1.129,0.168-1.59,0.456l0,0L35,26.587V22c0-1.657-1.343-3-3-3c-0.584,0-1.129,0.168-1.59,0.456l0,0\r\n\t\t\t\tl-15.962,9.976c-0.005,0.003-0.011,0.007-0.016,0.01l-0.023,0.014l0,0C13.564,29.987,13,30.927,13,32s0.564,2.014,1.41,2.544l0,0\r\n\t\t\t\tl0.023,0.015c0.005,0.002,0.01,0.006,0.016,0.01l15.962,9.976l0,0C30.871,44.833,31.416,45,32,45c1.657,0,3-1.343,3-3v-4.587\r\n\t\t\t\tl11.41,7.131l0,0C46.871,44.833,47.416,45,48,45c1.657,0,3-1.343,3-3V22C51,20.343,49.657,19,48,19z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.rewind = rewind; \ No newline at end of file diff --git a/dist/ikons/rss.js b/dist/ikons/rss.js new file mode 100644 index 000000000..01a79444a --- /dev/null +++ b/dist/ikons/rss.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.rss = void 0; +var rss = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "RSS_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "RSS" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "RSS" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M8,48c-4.418,0-8,3.582-8,8s3.582,8,8,8s8-3.582,8-8S12.418,48,8,48z M0,23v11c16.569,0,30,13.432,30,30h11\r\n\t\t\t\tC41,41.355,22.644,23,0,23z M0,0v11c29.271,0,53,23.729,53,53h11C64,28.654,35.346,0,0,0z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M8,48c-4.418,0-8,3.582-8,8s3.582,8,8,8s8-3.582,8-8S12.418,48,8,48z M0,23v11c16.569,0,30,13.432,30,30h11\r\n\t\t\t\tC41,41.355,22.644,23,0,23z M0,0v11c29.271,0,53,23.729,53,53h11C64,28.654,35.346,0,0,0z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.rss = rss; \ No newline at end of file diff --git a/dist/ikons/screen_expand_1.js b/dist/ikons/screen_expand_1.js new file mode 100644 index 000000000..60ba1b440 --- /dev/null +++ b/dist/ikons/screen_expand_1.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.screen_expand_1 = void 0; +var screen_expand_1 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "SCREEN_EXPAND_1_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "SCREEN_EXPAND_1" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "SCREEN_EXPAND_1" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M15,58H6v-9c0-1.657-1.343-3-3-3s-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3S16.657,58,15,58z M9,55h46\r\n\t\t\t\tV9H9V55z M15,15h34v34H15V15z M61,0H49l0,0c-1.657,0-3,1.343-3,3s1.343,3,3,3l0,0h9v9c0,1.657,1.343,3,3,3s3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15,58H6v-9c0-1.657-1.343-3-3-3s-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3S16.657,58,15,58z M9,55h46\r\n\t\t\t\tV9H9V55z M15,15h34v34H15V15z M61,0H49l0,0c-1.657,0-3,1.343-3,3s1.343,3,3,3l0,0h9v9c0,1.657,1.343,3,3,3s3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.screen_expand_1 = screen_expand_1; \ No newline at end of file diff --git a/dist/ikons/screen_expand_2.js b/dist/ikons/screen_expand_2.js new file mode 100644 index 000000000..b96b6a7ca --- /dev/null +++ b/dist/ikons/screen_expand_2.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.screen_expand_2 = void 0; +var screen_expand_2 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "SCREEN_EXPAND_2_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "SCREEN_EXPAND_2" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "SCREEN_EXPAND_2" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M15,6c1.657,0,3-1.343,3-3s-1.343-3-3-3l0,0H3C1.343,0,0,1.343,0,3v12l0,0c0,1.657,1.343,3,3,3s3-1.343,3-3V6H15L15,6z\r\n\t\t\t\t M64,49c0-1.657-1.343-3-3-3s-3,1.343-3,3l0,0v9h-9c-1.657,0-3,1.343-3,3s1.343,3,3,3h12c1.657,0,3-1.343,3-3V49L64,49z M55,9H9\r\n\t\t\t\tv46h46V9z M49,49H15V15h34V49z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15,6c1.657,0,3-1.343,3-3s-1.343-3-3-3l0,0H3C1.343,0,0,1.343,0,3v12l0,0c0,1.657,1.343,3,3,3s3-1.343,3-3V6H15L15,6z\r\n\t\t\t\t M64,49c0-1.657-1.343-3-3-3s-3,1.343-3,3l0,0v9h-9c-1.657,0-3,1.343-3,3s1.343,3,3,3h12c1.657,0,3-1.343,3-3V49L64,49z M55,9H9\r\n\t\t\t\tv46h46V9z M49,49H15V15h34V49z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.screen_expand_2 = screen_expand_2; \ No newline at end of file diff --git a/dist/ikons/screen_expand_3.js b/dist/ikons/screen_expand_3.js new file mode 100644 index 000000000..4e52fb701 --- /dev/null +++ b/dist/ikons/screen_expand_3.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.screen_expand_3 = void 0; +var screen_expand_3 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "SCREEN_EXPAND_3_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "SCREEN_EXPAND_3" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "SCREEN_EXPAND_3" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M3,18c1.657,0,3-1.343,3-3V6h9l0,0c1.657,0,3-1.343,3-3s-1.343-3-3-3H3C1.343,0,0,1.343,0,3v12l0,0\r\n\t\t\t\tC0,16.657,1.343,18,3,18z M9,55h46V9H9V55z M15,15h34v34H15V15z M61,46c-1.657,0-3,1.343-3,3l0,0v9h-9c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h12c1.657,0,3-1.343,3-3V49C64,47.343,62.657,46,61,46z M15,58H6v-9c0-1.657-1.343-3-3-3s-3,1.343-3,3l0,0v12\r\n\t\t\t\tc0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3S16.657,58,15,58z M61,0H49l0,0c-1.657,0-3,1.343-3,3s1.343,3,3,3l0,0h9v9l0,0\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3V3C64,1.343,62.657,0,61,0z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M3,18c1.657,0,3-1.343,3-3V6h9l0,0c1.657,0,3-1.343,3-3s-1.343-3-3-3H3C1.343,0,0,1.343,0,3v12l0,0\r\n\t\t\t\tC0,16.657,1.343,18,3,18z M9,55h46V9H9V55z M15,15h34v34H15V15z M61,46c-1.657,0-3,1.343-3,3l0,0v9h-9c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h12c1.657,0,3-1.343,3-3V49C64,47.343,62.657,46,61,46z M15,58H6v-9c0-1.657-1.343-3-3-3s-3,1.343-3,3l0,0v12\r\n\t\t\t\tc0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3S16.657,58,15,58z M61,0H49l0,0c-1.657,0-3,1.343-3,3s1.343,3,3,3l0,0h9v9l0,0\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3V3C64,1.343,62.657,0,61,0z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.screen_expand_3 = screen_expand_3; \ No newline at end of file diff --git a/dist/ikons/share.js b/dist/ikons/share.js new file mode 100644 index 000000000..383b9f091 --- /dev/null +++ b/dist/ikons/share.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.share = void 0; +var share = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "SHARE_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "SHARE" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "SHARE" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M52,26.168V52H12V12h25.832C37.316,11.114,37,10.098,37,9c0-1.099,0.316-2.114,0.832-3H9C7.343,6,6,7.343,6,9v46\r\n\t\t\t\tc0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V26.168C57.113,26.683,56.1,27,55,27C53.902,27,52.887,26.683,52,26.168z M55,6H43\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757L32.843,26.914l0.003,0.003C32.325,27.457,32,28.19,32,29c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.811,0,1.543-0.325,2.082-0.847l0.003,0.003L52,16.243V21c0,1.657,1.343,3,2.999,3H55c1.657,0,3-1.343,3-3V9\r\n\t\t\t\tC58,7.343,56.657,6,55,6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M52,26.168V52H12V12h25.832C37.316,11.114,37,10.098,37,9c0-1.099,0.316-2.114,0.832-3H9C7.343,6,6,7.343,6,9v46\r\n\t\t\t\tc0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V26.168C57.113,26.683,56.1,27,55,27C53.902,27,52.887,26.683,52,26.168z M55,6H43\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757L32.843,26.914l0.003,0.003C32.325,27.457,32,28.19,32,29c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.811,0,1.543-0.325,2.082-0.847l0.003,0.003L52,16.243V21c0,1.657,1.343,3,2.999,3H55c1.657,0,3-1.343,3-3V9\r\n\t\t\t\tC58,7.343,56.657,6,55,6z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.share = share; \ No newline at end of file diff --git a/dist/ikons/share_2.js b/dist/ikons/share_2.js new file mode 100644 index 000000000..9b94d6a07 --- /dev/null +++ b/dist/ikons/share_2.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.share_2 = void 0; +var share_2 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "SHARE_2_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "SHARE_2" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "SHARE_2" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M23,16c0.885,0,1.673-0.39,2.222-1l0.008,0.007L29,10.818V29c0,1.657,1.343,3,3,3s3-1.343,3-3V10.818l3.77,4.189\r\n\t\t\t\tL38.777,15c0.55,0.61,1.338,1,2.223,1c1.657,0,3-1.343,3-3c0-0.772-0.299-1.468-0.777-2l0.008-0.007l-9-10L34.223,1\r\n\t\t\t\tC33.673,0.391,32.885,0,32,0s-1.673,0.39-2.222,1L29.77,0.993l-9,10L20.778,11C20.3,11.532,20,12.228,20,13\r\n\t\t\t\tC20,14.657,21.343,16,23,16z M51,20H38v6h10v32H16V26h9v-6H13c-1.657,0-3,1.343-3,3v38c0,1.657,1.343,3,3,3h38\r\n\t\t\t\tc1.657,0,3-1.343,3-3V23C54,21.343,52.657,20,51,20z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M23,16c0.885,0,1.673-0.39,2.222-1l0.008,0.007L29,10.818V29c0,1.657,1.343,3,3,3s3-1.343,3-3V10.818l3.77,4.189\r\n\t\t\t\tL38.777,15c0.55,0.61,1.338,1,2.223,1c1.657,0,3-1.343,3-3c0-0.772-0.299-1.468-0.777-2l0.008-0.007l-9-10L34.223,1\r\n\t\t\t\tC33.673,0.391,32.885,0,32,0s-1.673,0.39-2.222,1L29.77,0.993l-9,10L20.778,11C20.3,11.532,20,12.228,20,13\r\n\t\t\t\tC20,14.657,21.343,16,23,16z M51,20H38v6h10v32H16V26h9v-6H13c-1.657,0-3,1.343-3,3v38c0,1.657,1.343,3,3,3h38\r\n\t\t\t\tc1.657,0,3-1.343,3-3V23C54,21.343,52.657,20,51,20z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.share_2 = share_2; \ No newline at end of file diff --git a/dist/ikons/shop.js b/dist/ikons/shop.js new file mode 100644 index 000000000..2f24f9e8d --- /dev/null +++ b/dist/ikons/shop.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.shop = void 0; +var shop = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "SHOP_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "SHOP" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "SHOP" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M10,9h44c1.657,0,3-1.343,3-3s-1.343-3-3-3H10C8.343,3,7,4.343,7,6S8.343,9,10,9z M58.375,12H5.625L0,27\r\n\t\t\t\tc0,4.418,3.582,8,8,8s8-3.582,8-8c0,4.418,3.582,8,8,8s8-3.582,8-8c0,4.418,3.582,8,8,8s8-3.582,8-8c0,4.418,3.582,8,8,8\r\n\t\t\t\ts8-3.582,8-8L58.375,12z M55,37.952V37.95c-0.287-0.026-0.57-0.069-0.85-0.117c-0.061-0.01-0.123-0.015-0.183-0.026\r\n\t\t\t\tc-0.13-0.023-0.256-0.061-0.384-0.09C53.042,37.593,52.51,37.439,52,37.24V52H12V37.239c-0.51,0.2-1.042,0.354-1.586,0.478\r\n\t\t\t\tc-0.128,0.029-0.253,0.065-0.382,0.09c-0.06,0.012-0.122,0.017-0.183,0.027C9.569,37.88,9.287,37.924,9,37.95v0.002\r\n\t\t\t\tC8.671,37.982,8.338,38,8,38c-0.684,0-1.351-0.07-2-0.189V58c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V37.811\r\n\t\t\t\tC57.352,37.93,56.684,38,56,38C55.663,38,55.329,37.982,55,37.952z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M10,9h44c1.657,0,3-1.343,3-3s-1.343-3-3-3H10C8.343,3,7,4.343,7,6S8.343,9,10,9z M58.375,12H5.625L0,27\r\n\t\t\t\tc0,4.418,3.582,8,8,8s8-3.582,8-8c0,4.418,3.582,8,8,8s8-3.582,8-8c0,4.418,3.582,8,8,8s8-3.582,8-8c0,4.418,3.582,8,8,8\r\n\t\t\t\ts8-3.582,8-8L58.375,12z M55,37.952V37.95c-0.287-0.026-0.57-0.069-0.85-0.117c-0.061-0.01-0.123-0.015-0.183-0.026\r\n\t\t\t\tc-0.13-0.023-0.256-0.061-0.384-0.09C53.042,37.593,52.51,37.439,52,37.24V52H12V37.239c-0.51,0.2-1.042,0.354-1.586,0.478\r\n\t\t\t\tc-0.128,0.029-0.253,0.065-0.382,0.09c-0.06,0.012-0.122,0.017-0.183,0.027C9.569,37.88,9.287,37.924,9,37.95v0.002\r\n\t\t\t\tC8.671,37.982,8.338,38,8,38c-0.684,0-1.351-0.07-2-0.189V58c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V37.811\r\n\t\t\t\tC57.352,37.93,56.684,38,56,38C55.663,38,55.329,37.982,55,37.952z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.shop = shop; \ No newline at end of file diff --git a/dist/ikons/shopping_bag.js b/dist/ikons/shopping_bag.js new file mode 100644 index 000000000..04fbbfdf7 --- /dev/null +++ b/dist/ikons/shopping_bag.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.shopping_bag = void 0; +var shopping_bag = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "SHOPPING_BAG_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "SHOPPING_BAG" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "SHOPPING_BAG" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M6,61c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3v-3H6V61z M55,15h-8c0-8.284-6.716-15-15-15S17,6.716,17,15H9\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v37h52V18C58,16.343,56.657,15,55,15z M23,15c0-4.971,4.029-9,9-9c4.971,0,9,4.03,9,9H23z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M6,61c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3v-3H6V61z M55,15h-8c0-8.284-6.716-15-15-15S17,6.716,17,15H9\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v37h52V18C58,16.343,56.657,15,55,15z M23,15c0-4.971,4.029-9,9-9c4.971,0,9,4.03,9,9H23z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.shopping_bag = shopping_bag; \ No newline at end of file diff --git a/dist/ikons/shopping_cart.js b/dist/ikons/shopping_cart.js new file mode 100644 index 000000000..8e2f7697a --- /dev/null +++ b/dist/ikons/shopping_cart.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.shopping_cart = void 0; +var shopping_cart = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "SHOPPING_CART_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "SHOPPING_CART" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "SHOPPING_CART" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M52.2,39.993c1.132-0.074,2.092-0.776,2.536-1.763l0,0l9-20l-0.006-0.002C63.9,17.853,64,17.439,64,17\r\n\t\t\t\tc0-1.657-1.343-3-3-3H16.578l-1.747-4.991L14.82,9.013C14.411,7.844,13.309,7,12,7H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h6.872\r\n\t\t\t\tl11.55,33H16c-3.314,0-6,2.686-6,6s2.686,6,6,6s6-2.686,6-6h28c0,3.314,2.686,6,6,6s6-2.686,6-6s-2.686-6-6-6H27.778\r\n\t\t\t\tl-1.497-4.279L52.2,39.993L52.2,39.993z M24.224,35.846L18.679,20h37.68l-6.356,14.127L24.224,35.846z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M52.2,39.993c1.132-0.074,2.092-0.776,2.536-1.763l0,0l9-20l-0.006-0.002C63.9,17.853,64,17.439,64,17\r\n\t\t\t\tc0-1.657-1.343-3-3-3H16.578l-1.747-4.991L14.82,9.013C14.411,7.844,13.309,7,12,7H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h6.872\r\n\t\t\t\tl11.55,33H16c-3.314,0-6,2.686-6,6s2.686,6,6,6s6-2.686,6-6h28c0,3.314,2.686,6,6,6s6-2.686,6-6s-2.686-6-6-6H27.778\r\n\t\t\t\tl-1.497-4.279L52.2,39.993L52.2,39.993z M24.224,35.846L18.679,20h37.68l-6.356,14.127L24.224,35.846z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.shopping_cart = shopping_cart; \ No newline at end of file diff --git a/dist/ikons/shopping_cart_add.js b/dist/ikons/shopping_cart_add.js new file mode 100644 index 000000000..5ff555669 --- /dev/null +++ b/dist/ikons/shopping_cart_add.js @@ -0,0 +1 @@ +"use strict";Object.defineProperty(exports,"__esModule",{value:true});exports.shopping_cart_add=void 0;var shopping_cart_add={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"Background_xA0_Image_1_","display":"none"},"children":[{"name":"image","attribs":{"display":"inline","overflow":"visible","width":"64","height":"64","id":"Background_xA0_Image"},"children":[{"name":"image","attribs":{"display":"inline","overflow":"visible","width":"64","height":"64","id":"Background_xA0_Image"},"children":[]}]}]},{"name":"g","attribs":{"id":"paypal_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"paypal","display":"inline"},"children":[{"name":"g","attribs":{"id":"paypal","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M34.878,24.706c0.474-0.299,0.925-0.635,1.335-1.018\r\n\t\t\t\tc1.145-1.061,2.006-2.423,2.369-3.916c0.633-2.24-0.102-4.184-1.617-5.26c-0.797-0.566-1.808-0.901-2.955-0.901h-6.65\r\n\t\t\t\tl-0.214,0.901L24.45,25.935h6.372C32.234,25.935,33.643,25.473,34.878,24.706z M30.925,18.05h3.086\r\n\t\t\t\tc0.16,0,0.255,0.026,0.302,0.043c0.01,0.067,0.018,0.22-0.057,0.48l-0.023,0.082l-0.018,0.082\r\n\t\t\t\tc-0.346,1.418-1.994,2.76-3.394,2.76h-0.712L30.925,18.05z M60.612,16.282c-1.296-1.592-2.929-2.913-4.783-3.928\r\n\t\t\t\tc-0.61-2.671-1.803-4.704-2.976-6.148C49.714,2.346,44.585,0.033,39.117,0H12.265l-0.787,3.458L1.224,48.519L0,53.901v0.031\r\n\t\t\t\th10.042l-1.058,4.661L7.752,64h22.802l0.774-3.476l2.55-11.441h6.089c11.803,0,21.03-7.176,23.507-18.278\r\n\t\t\t\tc0.368-1.649,0.522-3.163,0.526-4.557v-0.456C63.904,21.396,62.235,18.281,60.612,16.282z M5.606,49.491L15.861,4.43H39\r\n\t\t\t\tc4.283,0,9.005,1.916,11.316,5.974c0.796,1.398,1.306,3.051,1.413,4.969c0.075,1.334-0.044,2.801-0.4,4.398\r\n\t\t\t\tc-0.812,3.64-2.499,6.678-4.796,9.048c-3.51,3.625-8.462,5.651-13.979,5.732c-0.116,0.003-0.228,0.013-0.343,0.013h-9.701\r\n\t\t\t\tl-3.324,14.926H5.606z M59.087,29.848c-2.077,9.316-9.837,14.796-19.12,14.796h-9.699L26.943,59.57H13.366l1.283-5.638h8.147\r\n\t\t\t\tl0.777-3.485l2.547-11.441h6.09c11.801,0,21.027-7.176,23.505-18.275c0.209-0.941,0.348-1.837,0.434-2.696\r\n\t\t\t\tC58.802,20.547,60.295,24.44,59.087,29.848z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M34.878,24.706c0.474-0.299,0.925-0.635,1.335-1.018\r\n\t\t\t\tc1.145-1.061,2.006-2.423,2.369-3.916c0.633-2.24-0.102-4.184-1.617-5.26c-0.797-0.566-1.808-0.901-2.955-0.901h-6.65\r\n\t\t\t\tl-0.214,0.901L24.45,25.935h6.372C32.234,25.935,33.643,25.473,34.878,24.706z M30.925,18.05h3.086\r\n\t\t\t\tc0.16,0,0.255,0.026,0.302,0.043c0.01,0.067,0.018,0.22-0.057,0.48l-0.023,0.082l-0.018,0.082\r\n\t\t\t\tc-0.346,1.418-1.994,2.76-3.394,2.76h-0.712L30.925,18.05z M60.612,16.282c-1.296-1.592-2.929-2.913-4.783-3.928\r\n\t\t\t\tc-0.61-2.671-1.803-4.704-2.976-6.148C49.714,2.346,44.585,0.033,39.117,0H12.265l-0.787,3.458L1.224,48.519L0,53.901v0.031\r\n\t\t\t\th10.042l-1.058,4.661L7.752,64h22.802l0.774-3.476l2.55-11.441h6.089c11.803,0,21.03-7.176,23.507-18.278\r\n\t\t\t\tc0.368-1.649,0.522-3.163,0.526-4.557v-0.456C63.904,21.396,62.235,18.281,60.612,16.282z M5.606,49.491L15.861,4.43H39\r\n\t\t\t\tc4.283,0,9.005,1.916,11.316,5.974c0.796,1.398,1.306,3.051,1.413,4.969c0.075,1.334-0.044,2.801-0.4,4.398\r\n\t\t\t\tc-0.812,3.64-2.499,6.678-4.796,9.048c-3.51,3.625-8.462,5.651-13.979,5.732c-0.116,0.003-0.228,0.013-0.343,0.013h-9.701\r\n\t\t\t\tl-3.324,14.926H5.606z M59.087,29.848c-2.077,9.316-9.837,14.796-19.12,14.796h-9.699L26.943,59.57H13.366l1.283-5.638h8.147\r\n\t\t\t\tl0.777-3.485l2.547-11.441h6.09c11.801,0,21.027-7.176,23.505-18.275c0.209-0.941,0.348-1.837,0.434-2.696\r\n\t\t\t\tC58.802,20.547,60.295,24.44,59.087,29.848z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"linkedin_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"linkedin","display":"inline"},"children":[{"name":"g","attribs":{"id":"linkedin","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M0.798,62.987h14.315V22.368H0.798V62.987z M48.433,21.087\r\n\t\t\t\tc-5.924,0-9.192,1.972-12.952,6.749v-5.469H21.189v40.619h14.291V40.914c0-4.658,2.24-9.214,7.596-9.214\r\n\t\t\t\tc5.356,0,6.673,4.555,6.673,9.103v22.184H64V39.896C64,23.854,54.362,21.087,48.433,21.087z M7.982,2.013\r\n\t\t\t\tC3.572,2.013,0,5.222,0,9.183c0,3.958,3.572,7.162,7.982,7.162c4.406,0,7.978-3.205,7.978-7.162\r\n\t\t\t\tC15.96,5.222,12.388,2.013,7.982,2.013z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M0.798,62.987h14.315V22.368H0.798V62.987z M48.433,21.087\r\n\t\t\t\tc-5.924,0-9.192,1.972-12.952,6.749v-5.469H21.189v40.619h14.291V40.914c0-4.658,2.24-9.214,7.596-9.214\r\n\t\t\t\tc5.356,0,6.673,4.555,6.673,9.103v22.184H64V39.896C64,23.854,54.362,21.087,48.433,21.087z M7.982,2.013\r\n\t\t\t\tC3.572,2.013,0,5.222,0,9.183c0,3.958,3.572,7.162,7.982,7.162c4.406,0,7.978-3.205,7.978-7.162\r\n\t\t\t\tC15.96,5.222,12.388,2.013,7.982,2.013z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"spotify_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"spotify","display":"inline"},"children":[{"name":"g","attribs":{"id":"spotify","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26.671,55.675c-4.217,0-7.496,1.355-10.156,4.239\r\n\t\t\t\tc4.795,2.869,9.491,4.079,15.486,4.079c3.087,0,4.405-0.132,7.23-0.948C36.949,58.528,32.591,55.675,26.671,55.675z\r\n\t\t\t\t M32.001,0.008c-17.67,0-31.993,14.323-31.993,31.993c0,8.223,3.103,15.72,8.202,21.387c4.778-4.399,11.291-7.104,18.462-7.104\r\n\t\t\t\tc9.749,0,18.284,4.995,22.892,12.458c8.691-5.72,14.43-15.56,14.43-26.742C63.992,14.331,49.669,0.008,32.001,0.008z\r\n\t\t\t\t M46.704,44.438c-1.112,0.906-2.201,0.064-2.201,0.064c-10.883-8.335-27.994-3.798-27.994-3.754l-0.256,0.072\r\n\t\t\t\tc-1.149,0-1.937-1.215-1.937-2.362c0,0-0.069-1.32,1.788-1.936c0.713-0.131,18.112-3.927,30.538,4.408\r\n\t\t\t\tc0.923,0.726,0.953,1.59,0.953,1.59C47.594,43.668,47.336,43.923,46.704,44.438z M49.37,35.657c-0.48,0-0.927-0.137-1.308-0.37\r\n\t\t\t\th-0.001c-13.9-8.339-29.991-4.409-32.002-3.857l-1.028,0.202c-1.388,0-2.403-1.126-2.403-2.515c0-1.163,0.824-2.138,1.91-2.426\r\n\t\t\t\tc1.087-0.24,19.256-6.003,35.915,3.523h0.008c0.912,0.428,1.419,1.6,1.419,2.593C51.88,34.196,50.758,35.657,49.37,35.657z\r\n\t\t\t\t M53.583,26.042c0,0-0.853-0.014-1.71-0.531c-15.635-9.777-37.295-4.184-37.513-4.126l-0.008-0.005\r\n\t\t\t\tc-0.244,0.064-0.511,0.101-0.774,0.101c-1.655,0-2.962-1.341-2.962-2.996c0-1.434,0.727-2.631,2.358-2.926\r\n\t\t\t\tc1.087-0.259,24.236-6.181,42.041,4.852c0.934,0.507,1.566,1.497,1.566,2.635C56.581,24.7,55.237,26.042,53.583,26.042z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26.671,55.675c-4.217,0-7.496,1.355-10.156,4.239\r\n\t\t\t\tc4.795,2.869,9.491,4.079,15.486,4.079c3.087,0,4.405-0.132,7.23-0.948C36.949,58.528,32.591,55.675,26.671,55.675z\r\n\t\t\t\t M32.001,0.008c-17.67,0-31.993,14.323-31.993,31.993c0,8.223,3.103,15.72,8.202,21.387c4.778-4.399,11.291-7.104,18.462-7.104\r\n\t\t\t\tc9.749,0,18.284,4.995,22.892,12.458c8.691-5.72,14.43-15.56,14.43-26.742C63.992,14.331,49.669,0.008,32.001,0.008z\r\n\t\t\t\t M46.704,44.438c-1.112,0.906-2.201,0.064-2.201,0.064c-10.883-8.335-27.994-3.798-27.994-3.754l-0.256,0.072\r\n\t\t\t\tc-1.149,0-1.937-1.215-1.937-2.362c0,0-0.069-1.32,1.788-1.936c0.713-0.131,18.112-3.927,30.538,4.408\r\n\t\t\t\tc0.923,0.726,0.953,1.59,0.953,1.59C47.594,43.668,47.336,43.923,46.704,44.438z M49.37,35.657c-0.48,0-0.927-0.137-1.308-0.37\r\n\t\t\t\th-0.001c-13.9-8.339-29.991-4.409-32.002-3.857l-1.028,0.202c-1.388,0-2.403-1.126-2.403-2.515c0-1.163,0.824-2.138,1.91-2.426\r\n\t\t\t\tc1.087-0.24,19.256-6.003,35.915,3.523h0.008c0.912,0.428,1.419,1.6,1.419,2.593C51.88,34.196,50.758,35.657,49.37,35.657z\r\n\t\t\t\t M53.583,26.042c0,0-0.853-0.014-1.71-0.531c-15.635-9.777-37.295-4.184-37.513-4.126l-0.008-0.005\r\n\t\t\t\tc-0.244,0.064-0.511,0.101-0.774,0.101c-1.655,0-2.962-1.341-2.962-2.996c0-1.434,0.727-2.631,2.358-2.926\r\n\t\t\t\tc1.087-0.259,24.236-6.181,42.041,4.852c0.934,0.507,1.566,1.497,1.566,2.635C56.581,24.7,55.237,26.042,53.583,26.042z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"youtube_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"youtube","display":"inline"},"children":[{"name":"g","attribs":{"id":"youtube","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M54.15,10.031l-20.9-0.019l-21.718,0.019c-5.433,0-11.534,3.626-11.534,8.944\r\n\t\t\t\tv26.474c0,5.316,6.101,8.559,11.534,8.559H54.15c5.432,0,9.835-3.242,9.835-8.559V18.976\r\n\t\t\t\tC63.985,13.657,59.582,10.031,54.15,10.031z M27.856,42.205L27.73,22.044l14.03,10.168L27.856,42.205z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M54.15,10.031l-20.9-0.019l-21.718,0.019c-5.433,0-11.534,3.626-11.534,8.944\r\n\t\t\t\tv26.474c0,5.316,6.101,8.559,11.534,8.559H54.15c5.432,0,9.835-3.242,9.835-8.559V18.976\r\n\t\t\t\tC63.985,13.657,59.582,10.031,54.15,10.031z M27.856,42.205L27.73,22.044l14.03,10.168L27.856,42.205z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"vimeo_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"vimeo","display":"inline"},"children":[{"name":"g","attribs":{"id":"vimeo","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M36.348,18.728c2.748-0.624,7.538-1.522,8.529,1.306\r\n\t\t\t\tc1.246,8.476-4.612,15.408-9.84,19.602C24.919,34.128,32.524,8.81,21.915,4.633c-5.448-2.145-10.31,2.79-14.434,6.255\r\n\t\t\t\tC4.788,13.151-0.013,16.758,0,19.531v0.073c0.023,0.633,0.301,1.221,0.921,1.738c2.13,3.51,3.998-2.43,7.872-1.306\r\n\t\t\t\tc8.471,6.948,5.793,37.749,18.37,39.856c4.882,0.818,11.08-3.648,14.433-6.534c4.625-3.981,9.924-10.722,13.777-16.335\r\n\t\t\t\tc0,0,9.677-12.741,8.529-23.521C61.789-4.107,36.207,5.801,36.348,18.728z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M36.348,18.728c2.748-0.624,7.538-1.522,8.529,1.306\r\n\t\t\t\tc1.246,8.476-4.612,15.408-9.84,19.602C24.919,34.128,32.524,8.81,21.915,4.633c-5.448-2.145-10.31,2.79-14.434,6.255\r\n\t\t\t\tC4.788,13.151-0.013,16.758,0,19.531v0.073c0.023,0.633,0.301,1.221,0.921,1.738c2.13,3.51,3.998-2.43,7.872-1.306\r\n\t\t\t\tc8.471,6.948,5.793,37.749,18.37,39.856c4.882,0.818,11.08-3.648,14.433-6.534c4.625-3.981,9.924-10.722,13.777-16.335\r\n\t\t\t\tc0,0,9.677-12.741,8.529-23.521C61.789-4.107,36.207,5.801,36.348,18.728z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"google_plus_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"google_plus","display":"inline"},"children":[{"name":"g","attribs":{"id":"google_plus","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M35.471,4.995c0,0-12.66,0-16.879,0C11.023,4.995,3.9,10.999,3.9,17.522\r\n\t\t\t\tc0,6.666,5.158,12.23,12.857,12.23c0.535,0,1.055,0.083,1.565,0.046c-0.498,0.94-0.855,2.045-0.855,3.142\r\n\t\t\t\tc0,1.853,1.014,3.378,2.297,4.604c-0.969,0-1.904,0.04-2.926,0.04C7.465,37.584,0,43.452,0,49.533\r\n\t\t\t\tc0,5.987,8.158,10.472,17.533,10.472c10.686,0,16.463-6.689,16.463-12.678c0-4.799-1.318-7.675-5.777-10.773\r\n\t\t\t\tc-1.525-1.059-4.443-3.641-4.443-5.156c0-1.776,0.518-2.653,3.24-4.742c2.791-2.143,4.955-4.903,4.955-8.407\r\n\t\t\t\tc0-4.17-2.08-7.36-5.629-9.325h5.352L35.471,4.995z M29.574,46.295c0.133,0.556,0.207,1.128,0.207,1.711\r\n\t\t\t\tc0,4.838-3.176,8.128-12.283,8.128c-6.478,0-11.158-3.537-11.158-8.375c0-4.742,5.805-8.69,12.283-8.622\r\n\t\t\t\tc1.512,0.017,2.92,0.255,4.199,0.664C26.34,42.201,28.862,43.558,29.574,46.295z M19.201,28.248\r\n\t\t\t\tc-4.349-0.126-8.482-4.778-9.232-10.387c-0.752-5.609,2.164-9.9,6.512-9.773c4.349,0.127,8.67,4.629,9.422,10.236\r\n\t\t\t\tC26.652,23.934,23.547,28.377,19.201,28.248z M54,14.817v-9.76h-4v9.76H40v3.99h10v9.76h4v-9.76h10v-3.99H54z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M35.471,4.995c0,0-12.66,0-16.879,0C11.023,4.995,3.9,10.999,3.9,17.522\r\n\t\t\t\tc0,6.666,5.158,12.23,12.857,12.23c0.535,0,1.055,0.083,1.565,0.046c-0.498,0.94-0.855,2.045-0.855,3.142\r\n\t\t\t\tc0,1.853,1.014,3.378,2.297,4.604c-0.969,0-1.904,0.04-2.926,0.04C7.465,37.584,0,43.452,0,49.533\r\n\t\t\t\tc0,5.987,8.158,10.472,17.533,10.472c10.686,0,16.463-6.689,16.463-12.678c0-4.799-1.318-7.675-5.777-10.773\r\n\t\t\t\tc-1.525-1.059-4.443-3.641-4.443-5.156c0-1.776,0.518-2.653,3.24-4.742c2.791-2.143,4.955-4.903,4.955-8.407\r\n\t\t\t\tc0-4.17-2.08-7.36-5.629-9.325h5.352L35.471,4.995z M29.574,46.295c0.133,0.556,0.207,1.128,0.207,1.711\r\n\t\t\t\tc0,4.838-3.176,8.128-12.283,8.128c-6.478,0-11.158-3.537-11.158-8.375c0-4.742,5.805-8.69,12.283-8.622\r\n\t\t\t\tc1.512,0.017,2.92,0.255,4.199,0.664C26.34,42.201,28.862,43.558,29.574,46.295z M19.201,28.248\r\n\t\t\t\tc-4.349-0.126-8.482-4.778-9.232-10.387c-0.752-5.609,2.164-9.9,6.512-9.773c4.349,0.127,8.67,4.629,9.422,10.236\r\n\t\t\t\tC26.652,23.934,23.547,28.377,19.201,28.248z M54,14.817v-9.76h-4v9.76H40v3.99h10v9.76h4v-9.76h10v-3.99H54z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"skype_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"skype","display":"inline"},"children":[{"name":"g","attribs":{"id":"skype","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M59.539,36.935C59.825,35.33,60,33.687,60,32C60,16.536,47.464,4,32,4\r\n\t\t\t\tc-1.687,0-3.33,0.175-4.934,0.461C24.191,1.704,20.298,0,16,0C7.164,0,0,7.164,0,16c0,4.298,1.703,8.191,4.461,11.066\r\n\t\t\t\tC4.175,28.67,4,30.313,4,32c0,15.464,12.536,28,28,28c1.687,0,3.33-0.175,4.935-0.461C39.809,62.297,43.702,64,48,64\r\n\t\t\t\tc8.837,0,16-7.163,16-16C64,43.703,62.297,39.809,59.539,36.935z M44.331,43.208c-1.105,1.506-2.74,2.7-4.857,3.548\r\n\t\t\t\tc-2.095,0.838-4.608,1.265-7.468,1.265c-3.433,0-6.312-0.582-8.558-1.73c-1.606-0.834-2.93-1.963-3.936-3.363\r\n\t\t\t\tc-1.014-1.408-1.529-2.807-1.529-4.158c0-0.842,0.335-1.573,0.995-2.171c0.655-0.594,1.494-0.894,2.495-0.894\r\n\t\t\t\tc0.822,0,1.531,0.236,2.106,0.703c0.55,0.451,1.022,1.115,1.401,1.973c0.425,0.936,0.885,1.724,1.372,2.342\r\n\t\t\t\tc0.471,0.6,1.144,1.101,2.006,1.494c0.866,0.395,2.035,0.596,3.472,0.596c1.975,0,3.596-0.407,4.814-1.208\r\n\t\t\t\tc1.191-0.781,1.768-1.721,1.768-2.871c0-0.908-0.302-1.621-0.922-2.183c-0.652-0.586-1.509-1.039-2.55-1.355\r\n\t\t\t\tc-1.087-0.324-2.562-0.679-4.386-1.047c-2.48-0.509-4.587-1.118-6.264-1.802c-1.715-0.703-3.096-1.677-4.106-2.894\r\n\t\t\t\tc-1.026-1.238-1.546-2.787-1.546-4.613c0-1.738,0.546-3.306,1.623-4.656c1.069-1.343,2.63-2.388,4.64-3.101\r\n\t\t\t\tc1.984-0.707,4.343-1.065,7.013-1.065c2.134,0,4.01,0.24,5.577,0.707c1.577,0.471,2.904,1.109,3.948,1.895\r\n\t\t\t\tc1.051,0.791,1.833,1.635,2.324,2.515c0.494,0.886,0.747,1.77,0.747,2.624c0,0.823-0.33,1.571-0.981,2.223\r\n\t\t\t\tc-0.655,0.655-1.481,0.987-2.454,0.987c-0.885,0-1.578-0.209-2.059-0.616c-0.448-0.383-0.912-0.977-1.426-1.83\r\n\t\t\t\tc-0.596-1.09-1.318-1.949-2.145-2.556c-0.804-0.59-2.147-0.886-3.991-0.886c-1.713,0-3.107,0.33-4.141,0.985\r\n\t\t\t\tc-0.998,0.628-1.483,1.349-1.483,2.205c0,0.525,0.157,0.963,0.479,1.339c0.339,0.403,0.819,0.749,1.424,1.043\r\n\t\t\t\tc0.627,0.304,1.276,0.546,1.923,0.717c0.664,0.179,1.779,0.441,3.308,0.781c1.935,0.401,3.712,0.848,5.284,1.333\r\n\t\t\t\tc1.593,0.491,2.967,1.093,4.09,1.798c1.144,0.717,2.05,1.637,2.694,2.738c0.646,1.105,0.972,2.469,0.972,4.053\r\n\t\t\t\tC46.003,39.968,45.439,41.698,44.331,43.208z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M59.539,36.935C59.825,35.33,60,33.687,60,32C60,16.536,47.464,4,32,4\r\n\t\t\t\tc-1.687,0-3.33,0.175-4.934,0.461C24.191,1.704,20.298,0,16,0C7.164,0,0,7.164,0,16c0,4.298,1.703,8.191,4.461,11.066\r\n\t\t\t\tC4.175,28.67,4,30.313,4,32c0,15.464,12.536,28,28,28c1.687,0,3.33-0.175,4.935-0.461C39.809,62.297,43.702,64,48,64\r\n\t\t\t\tc8.837,0,16-7.163,16-16C64,43.703,62.297,39.809,59.539,36.935z M44.331,43.208c-1.105,1.506-2.74,2.7-4.857,3.548\r\n\t\t\t\tc-2.095,0.838-4.608,1.265-7.468,1.265c-3.433,0-6.312-0.582-8.558-1.73c-1.606-0.834-2.93-1.963-3.936-3.363\r\n\t\t\t\tc-1.014-1.408-1.529-2.807-1.529-4.158c0-0.842,0.335-1.573,0.995-2.171c0.655-0.594,1.494-0.894,2.495-0.894\r\n\t\t\t\tc0.822,0,1.531,0.236,2.106,0.703c0.55,0.451,1.022,1.115,1.401,1.973c0.425,0.936,0.885,1.724,1.372,2.342\r\n\t\t\t\tc0.471,0.6,1.144,1.101,2.006,1.494c0.866,0.395,2.035,0.596,3.472,0.596c1.975,0,3.596-0.407,4.814-1.208\r\n\t\t\t\tc1.191-0.781,1.768-1.721,1.768-2.871c0-0.908-0.302-1.621-0.922-2.183c-0.652-0.586-1.509-1.039-2.55-1.355\r\n\t\t\t\tc-1.087-0.324-2.562-0.679-4.386-1.047c-2.48-0.509-4.587-1.118-6.264-1.802c-1.715-0.703-3.096-1.677-4.106-2.894\r\n\t\t\t\tc-1.026-1.238-1.546-2.787-1.546-4.613c0-1.738,0.546-3.306,1.623-4.656c1.069-1.343,2.63-2.388,4.64-3.101\r\n\t\t\t\tc1.984-0.707,4.343-1.065,7.013-1.065c2.134,0,4.01,0.24,5.577,0.707c1.577,0.471,2.904,1.109,3.948,1.895\r\n\t\t\t\tc1.051,0.791,1.833,1.635,2.324,2.515c0.494,0.886,0.747,1.77,0.747,2.624c0,0.823-0.33,1.571-0.981,2.223\r\n\t\t\t\tc-0.655,0.655-1.481,0.987-2.454,0.987c-0.885,0-1.578-0.209-2.059-0.616c-0.448-0.383-0.912-0.977-1.426-1.83\r\n\t\t\t\tc-0.596-1.09-1.318-1.949-2.145-2.556c-0.804-0.59-2.147-0.886-3.991-0.886c-1.713,0-3.107,0.33-4.141,0.985\r\n\t\t\t\tc-0.998,0.628-1.483,1.349-1.483,2.205c0,0.525,0.157,0.963,0.479,1.339c0.339,0.403,0.819,0.749,1.424,1.043\r\n\t\t\t\tc0.627,0.304,1.276,0.546,1.923,0.717c0.664,0.179,1.779,0.441,3.308,0.781c1.935,0.401,3.712,0.848,5.284,1.333\r\n\t\t\t\tc1.593,0.491,2.967,1.093,4.09,1.798c1.144,0.717,2.05,1.637,2.694,2.738c0.646,1.105,0.972,2.469,0.972,4.053\r\n\t\t\t\tC46.003,39.968,45.439,41.698,44.331,43.208z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"foursquare_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"foursquare","display":"inline"},"children":[{"name":"g","attribs":{"id":"foursquare","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M41.524,27.182l-8.099-8.285c-2.222-2.189-5.667-2.189-7.89,0l-2.201,2.245\r\n\t\t\t\tc-2.46-1.881-5.468-3.047-8.815-3.047c-8.013,0-14.513,6.42-14.513,14.313c0,7.891,6.529,14.311,14.543,14.311\r\n\t\t\t\tc0.623,0,1.222-0.105,1.825-0.181l13.387,12.458l34.24-30.692V5.018L41.524,27.182z M14.725,43.102\r\n\t\t\t\tc-0.057,0-0.109,0.016-0.166,0.016c-5.998,0-10.877-4.805-10.877-10.71c0-5.907,4.879-10.712,10.877-10.712\r\n\t\t\t\tc2.338,0,4.494,0.748,6.27,1.991c2.776,1.942,4.604,5.119,4.604,8.722C25.434,38.257,20.642,43.013,14.725,43.102z M59.8,27.491\r\n\t\t\t\tL48.426,37.908L30.158,54.157l-9.723-8.753c2.691-1.21,4.978-3.209,6.487-5.69l3.794,3.924l13.511-13.91L59.8,13.77V27.491z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M41.524,27.182l-8.099-8.285c-2.222-2.189-5.667-2.189-7.89,0l-2.201,2.245\r\n\t\t\t\tc-2.46-1.881-5.468-3.047-8.815-3.047c-8.013,0-14.513,6.42-14.513,14.313c0,7.891,6.529,14.311,14.543,14.311\r\n\t\t\t\tc0.623,0,1.222-0.105,1.825-0.181l13.387,12.458l34.24-30.692V5.018L41.524,27.182z M14.725,43.102\r\n\t\t\t\tc-0.057,0-0.109,0.016-0.166,0.016c-5.998,0-10.877-4.805-10.877-10.71c0-5.907,4.879-10.712,10.877-10.712\r\n\t\t\t\tc2.338,0,4.494,0.748,6.27,1.991c2.776,1.942,4.604,5.119,4.604,8.722C25.434,38.257,20.642,43.013,14.725,43.102z M59.8,27.491\r\n\t\t\t\tL48.426,37.908L30.158,54.157l-9.723-8.753c2.691-1.21,4.978-3.209,6.487-5.69l3.794,3.924l13.511-13.91L59.8,13.77V27.491z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"dropbox_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"dropbox","display":"inline"},"children":[{"name":"g","attribs":{"id":"dropbox","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32.04,39.477L18.826,50.345l-5.654-3.662v4.106L32.04,62.003l18.865-11.215\r\n\t\t\t\tv-4.106l-5.653,3.662L32.04,39.477z M0.001,35.846L18.826,48.03L32,37.134L13.018,25.513L0.001,35.846z M32,37.134L45.174,48.03\r\n\t\t\t\tl18.826-12.184L50.982,25.513L32,37.134z M18.826,2.997L0.001,15.176l13.017,10.337L32,13.893L18.826,2.997z M63.999,15.176\r\n\t\t\t\tL45.174,2.997L32,13.893l18.982,11.619L63.999,15.176z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32.04,39.477L18.826,50.345l-5.654-3.662v4.106L32.04,62.003l18.865-11.215\r\n\t\t\t\tv-4.106l-5.653,3.662L32.04,39.477z M0.001,35.846L18.826,48.03L32,37.134L13.018,25.513L0.001,35.846z M32,37.134L45.174,48.03\r\n\t\t\t\tl18.826-12.184L50.982,25.513L32,37.134z M18.826,2.997L0.001,15.176l13.017,10.337L32,13.893L18.826,2.997z M63.999,15.176\r\n\t\t\t\tL45.174,2.997L32,13.893l18.982,11.619L63.999,15.176z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"tumblr_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"tumblr","display":"inline"},"children":[{"name":"g","attribs":{"id":"tumblr","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M42.41,53.584c-1.816,0-3.423-0.428-4.834-1.275\r\n\t\t\t\tc-1.063-0.629-2.039-1.718-2.428-2.767c-0.391-1.049-0.343-3.19-0.343-6.905V26.215h14.728V14.788H34.806V-0.028h-9.062\r\n\t\t\t\tc-0.405,3.308-1.15,6.026-2.231,8.16c-1.08,2.142-2.508,3.973-4.3,5.502c-1.78,1.525-4.681,2.699-7.184,3.513v9.068h8.654v22.455\r\n\t\t\t\tc0,2.933,0.305,5.167,0.915,6.708c0.614,1.537,1.706,2.997,3.291,4.368c1.577,1.36,3.487,2.42,5.725,3.162\r\n\t\t\t\tc2.237,0.734,3.955,1.101,6.869,1.101c2.565,0,4.95-0.258,7.16-0.779c2.207-0.52,4.673-1.428,7.394-2.711v-10.1\r\n\t\t\t\tC48.844,52.527,45.637,53.584,42.41,53.584z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M42.41,53.584c-1.816,0-3.423-0.428-4.834-1.275\r\n\t\t\t\tc-1.063-0.629-2.039-1.718-2.428-2.767c-0.391-1.049-0.343-3.19-0.343-6.905V26.215h14.728V14.788H34.806V-0.028h-9.062\r\n\t\t\t\tc-0.405,3.308-1.15,6.026-2.231,8.16c-1.08,2.142-2.508,3.973-4.3,5.502c-1.78,1.525-4.681,2.699-7.184,3.513v9.068h8.654v22.455\r\n\t\t\t\tc0,2.933,0.305,5.167,0.915,6.708c0.614,1.537,1.706,2.997,3.291,4.368c1.577,1.36,3.487,2.42,5.725,3.162\r\n\t\t\t\tc2.237,0.734,3.955,1.101,6.869,1.101c2.565,0,4.95-0.258,7.16-0.779c2.207-0.52,4.673-1.428,7.394-2.711v-10.1\r\n\t\t\t\tC48.844,52.527,45.637,53.584,42.41,53.584z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"instagram_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"instagram","display":"inline"},"children":[{"name":"g","attribs":{"id":"instagram","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M56,0H8C3.582,0,0,3.582,0,8v48c0,4.418,3.582,8,8,8h48c4.418,0,8-3.582,8-8V8\r\n\t\t\t\tC64,3.582,60.418,0,56,0z M19.673,30.673c0.013-0.127,0.04-0.249,0.057-0.374c0.042-0.31,0.088-0.618,0.153-0.92\r\n\t\t\t\tc0.029-0.136,0.069-0.267,0.103-0.401c0.072-0.286,0.147-0.571,0.238-0.849c0.044-0.132,0.095-0.259,0.142-0.389\r\n\t\t\t\tc0.1-0.272,0.204-0.541,0.322-0.804c0.02-0.045,0.034-0.092,0.055-0.137h0.011c1.968-4.247,6.257-7.2,11.246-7.2\r\n\t\t\t\tc4.989,0,9.278,2.953,11.246,7.2h0.011c0.021,0.045,0.035,0.092,0.055,0.137c0.118,0.263,0.222,0.532,0.322,0.804\r\n\t\t\t\tc0.048,0.13,0.099,0.257,0.142,0.389c0.091,0.278,0.166,0.562,0.238,0.849c0.034,0.134,0.074,0.265,0.103,0.401\r\n\t\t\t\tc0.065,0.302,0.11,0.61,0.153,0.92c0.017,0.125,0.043,0.247,0.057,0.374C44.373,31.109,44.4,31.551,44.4,32\r\n\t\t\t\tc0,6.849-5.552,12.4-12.4,12.4c-6.848,0-12.4-5.552-12.4-12.4C19.6,31.551,19.627,31.109,19.673,30.673z M56.8,53.6\r\n\t\t\t\tc0,1.767-1.433,3.2-3.2,3.2H10.4c-1.767,0-3.2-1.433-3.2-3.2V26.8h5.899C12.644,28.456,12.4,30.2,12.4,32\r\n\t\t\t\tc0,10.825,8.775,19.6,19.6,19.6c10.825,0,19.6-8.775,19.6-19.6c0-1.8-0.244-3.544-0.699-5.2H56.8V53.6z M56.8,16.8\r\n\t\t\t\tc0,1.767-1.433,3.2-3.2,3.2h-6.4c-1.767,0-3.2-1.433-3.2-3.2v-6.4c0-1.767,1.433-3.2,3.2-3.2h6.4c1.767,0,3.2,1.432,3.2,3.2V16.8\r\n\t\t\t\tz"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M56,0H8C3.582,0,0,3.582,0,8v48c0,4.418,3.582,8,8,8h48c4.418,0,8-3.582,8-8V8\r\n\t\t\t\tC64,3.582,60.418,0,56,0z M19.673,30.673c0.013-0.127,0.04-0.249,0.057-0.374c0.042-0.31,0.088-0.618,0.153-0.92\r\n\t\t\t\tc0.029-0.136,0.069-0.267,0.103-0.401c0.072-0.286,0.147-0.571,0.238-0.849c0.044-0.132,0.095-0.259,0.142-0.389\r\n\t\t\t\tc0.1-0.272,0.204-0.541,0.322-0.804c0.02-0.045,0.034-0.092,0.055-0.137h0.011c1.968-4.247,6.257-7.2,11.246-7.2\r\n\t\t\t\tc4.989,0,9.278,2.953,11.246,7.2h0.011c0.021,0.045,0.035,0.092,0.055,0.137c0.118,0.263,0.222,0.532,0.322,0.804\r\n\t\t\t\tc0.048,0.13,0.099,0.257,0.142,0.389c0.091,0.278,0.166,0.562,0.238,0.849c0.034,0.134,0.074,0.265,0.103,0.401\r\n\t\t\t\tc0.065,0.302,0.11,0.61,0.153,0.92c0.017,0.125,0.043,0.247,0.057,0.374C44.373,31.109,44.4,31.551,44.4,32\r\n\t\t\t\tc0,6.849-5.552,12.4-12.4,12.4c-6.848,0-12.4-5.552-12.4-12.4C19.6,31.551,19.627,31.109,19.673,30.673z M56.8,53.6\r\n\t\t\t\tc0,1.767-1.433,3.2-3.2,3.2H10.4c-1.767,0-3.2-1.433-3.2-3.2V26.8h5.899C12.644,28.456,12.4,30.2,12.4,32\r\n\t\t\t\tc0,10.825,8.775,19.6,19.6,19.6c10.825,0,19.6-8.775,19.6-19.6c0-1.8-0.244-3.544-0.699-5.2H56.8V53.6z M56.8,16.8\r\n\t\t\t\tc0,1.767-1.433,3.2-3.2,3.2h-6.4c-1.767,0-3.2-1.433-3.2-3.2v-6.4c0-1.767,1.433-3.2,3.2-3.2h6.4c1.767,0,3.2,1.432,3.2,3.2V16.8\r\n\t\t\t\tz"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"twitter_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"twitter","display":"inline"},"children":[{"name":"g","attribs":{"id":"twitter","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M56.569,14.179v-0.032c0.557-0.218,0.997-0.68,1.441-1.022\r\n\t\t\t\tc2-1.541,3.301-3.57,4.26-6.164c-0.544,0.298-1.089,0.596-1.634,0.894c-1.68,0.853-4.532,2.079-6.727,2.267\r\n\t\t\t\tc-2.586-2.356-5.292-4.209-10.378-4.12c-0.534,0.064-1.068,0.128-1.602,0.192c-1.037,0.227-2.024,0.508-2.915,0.894\r\n\t\t\t\tc-3.724,1.616-6.263,4.631-7.431,8.814c-0.465,1.664-0.654,4.445-0.064,6.164c-2.101-0.003-4.135-0.334-5.894-0.767\r\n\t\t\t\tC18.69,19.594,14.372,17.29,9.578,13.54C8.17,12.439,6.789,11.191,5.67,9.804C5.309,9.357,4.74,8.965,4.485,8.43\r\n\t\t\t\tC4.463,8.42,4.442,8.409,4.421,8.398c-0.557,1.032-1.08,2.15-1.409,3.417c-1.3,4.994,0.755,9.188,2.947,11.912\r\n\t\t\t\tc0.664,0.826,1.741,1.338,2.402,2.108h0.064c-0.497,0.184-1.361-0.071-1.794-0.16c-1.024-0.211-1.897-0.405-2.755-0.766\r\n\t\t\t\tc-0.448-0.213-0.897-0.426-1.345-0.639c-0.021,5.517,2.766,9.103,6.182,11.241c1.114,0.697,2.672,1.635,4.292,1.724\r\n\t\t\t\tc-0.867,0.732-4.575,0.396-5.862,0.255c1.609,4.142,4.081,6.9,8.328,8.399c1.096,0.387,2.433,0.729,3.908,0.703\r\n\t\t\t\tc-0.783,0.93-2.454,1.687-3.556,2.331c-2.272,1.329-4.91,2.191-7.88,2.842c-1.191,0.261-2.457,0.207-3.748,0.415\r\n\t\t\t\tc-1.427,0.23-2.92-0.122-4.196-0.16c0.384,0.234,0.769,0.469,1.153,0.703c1.171,0.713,2.394,1.338,3.716,1.916\r\n\t\t\t\tc2.379,1.04,4.914,1.826,7.72,2.523c5.658,1.405,13.64,0.773,18.579-0.766c13.754-4.286,22.443-14.292,25.722-29.03\r\n\t\t\t\tc0.564-2.535,0.646-5.414,0.609-8.431c0.683-0.543,1.367-1.086,2.05-1.629c1.693-1.356,3.28-3.246,4.452-5.11v-0.032\r\n\t\t\t\tC61.768,12.864,59.418,14.149,56.569,14.179z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M56.569,14.179v-0.032c0.557-0.218,0.997-0.68,1.441-1.022\r\n\t\t\t\tc2-1.541,3.301-3.57,4.26-6.164c-0.544,0.298-1.089,0.596-1.634,0.894c-1.68,0.853-4.532,2.079-6.727,2.267\r\n\t\t\t\tc-2.586-2.356-5.292-4.209-10.378-4.12c-0.534,0.064-1.068,0.128-1.602,0.192c-1.037,0.227-2.024,0.508-2.915,0.894\r\n\t\t\t\tc-3.724,1.616-6.263,4.631-7.431,8.814c-0.465,1.664-0.654,4.445-0.064,6.164c-2.101-0.003-4.135-0.334-5.894-0.767\r\n\t\t\t\tC18.69,19.594,14.372,17.29,9.578,13.54C8.17,12.439,6.789,11.191,5.67,9.804C5.309,9.357,4.74,8.965,4.485,8.43\r\n\t\t\t\tC4.463,8.42,4.442,8.409,4.421,8.398c-0.557,1.032-1.08,2.15-1.409,3.417c-1.3,4.994,0.755,9.188,2.947,11.912\r\n\t\t\t\tc0.664,0.826,1.741,1.338,2.402,2.108h0.064c-0.497,0.184-1.361-0.071-1.794-0.16c-1.024-0.211-1.897-0.405-2.755-0.766\r\n\t\t\t\tc-0.448-0.213-0.897-0.426-1.345-0.639c-0.021,5.517,2.766,9.103,6.182,11.241c1.114,0.697,2.672,1.635,4.292,1.724\r\n\t\t\t\tc-0.867,0.732-4.575,0.396-5.862,0.255c1.609,4.142,4.081,6.9,8.328,8.399c1.096,0.387,2.433,0.729,3.908,0.703\r\n\t\t\t\tc-0.783,0.93-2.454,1.687-3.556,2.331c-2.272,1.329-4.91,2.191-7.88,2.842c-1.191,0.261-2.457,0.207-3.748,0.415\r\n\t\t\t\tc-1.427,0.23-2.92-0.122-4.196-0.16c0.384,0.234,0.769,0.469,1.153,0.703c1.171,0.713,2.394,1.338,3.716,1.916\r\n\t\t\t\tc2.379,1.04,4.914,1.826,7.72,2.523c5.658,1.405,13.64,0.773,18.579-0.766c13.754-4.286,22.443-14.292,25.722-29.03\r\n\t\t\t\tc0.564-2.535,0.646-5.414,0.609-8.431c0.683-0.543,1.367-1.086,2.05-1.629c1.693-1.356,3.28-3.246,4.452-5.11v-0.032\r\n\t\t\t\tC61.768,12.864,59.418,14.149,56.569,14.179z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"facebook_3_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"facebook","display":"inline"},"children":[{"name":"g","attribs":{"id":"facebook","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M59.058-0.006H4.942c-2.722,0-4.929,2.208-4.929,4.932V59.28\r\n\t\t\t\tc0,2.724,2.207,4.727,4.929,4.727h54.116c2.722,0,4.929-2.002,4.929-4.727V4.926C63.987,2.202,61.781-0.006,59.058-0.006z\r\n\t\t\t\t M33.615,21.199c-1.562-0.912-2.803-1.634-4.351-1.634c-1.523,0-2.836,0.383-3.497,1.024c-0.661,0.64-0.992,1.872-0.992,3.692\r\n\t\t\t\tv2.691h8.148l-1.768,7.494h-6.381v24.894H14.545V34.465H9.759v-7.494h4.787v-2.859c0-3.012,0.355-4.817,1.067-6.301\r\n\t\t\t\tc0.711-1.483,2.089-3.134,3.998-4.066c1.909-0.932,4.741-1.399,7.661-1.399c2.995,0,5.338,0.994,8.208,1.803L33.615,21.199z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M59.058-0.006H4.942c-2.722,0-4.929,2.208-4.929,4.932V59.28\r\n\t\t\t\tc0,2.724,2.207,4.727,4.929,4.727h54.116c2.722,0,4.929-2.002,4.929-4.727V4.926C63.987,2.202,61.781-0.006,59.058-0.006z\r\n\t\t\t\t M33.615,21.199c-1.562-0.912-2.803-1.634-4.351-1.634c-1.523,0-2.836,0.383-3.497,1.024c-0.661,0.64-0.992,1.872-0.992,3.692\r\n\t\t\t\tv2.691h8.148l-1.768,7.494h-6.381v24.894H14.545V34.465H9.759v-7.494h4.787v-2.859c0-3.012,0.355-4.817,1.067-6.301\r\n\t\t\t\tc0.711-1.483,2.089-3.134,3.998-4.066c1.909-0.932,4.741-1.399,7.661-1.399c2.995,0,5.338,0.994,8.208,1.803L33.615,21.199z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"facebook_2_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"facebook_1_","display":"inline"},"children":[{"name":"g","attribs":{"id":"facebook_1_","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M36.963,22.048c0.092-3.345-0.525-8.003,0.515-9.593\r\n\t\t\t\tc1.902-2.911,9.496-2.154,9.496-2.154s0-6.612,0-10.303c-11.982,0-15.903-0.501-20.015,3.675\r\n\t\t\t\tc-3.658,3.715-3.771,11.011-4.072,18.375h-5.872V32.12h5.938c-0.002,10.504,0.003,22.016,0,31.884c4.462,0,13.954,0,13.954,0\r\n\t\t\t\tv-32.01c0,0,5.173,0,8.042,0c0.626-3.385,1.236-6.036,2.088-9.947H36.963z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M36.963,22.048c0.092-3.345-0.525-8.003,0.515-9.593\r\n\t\t\t\tc1.902-2.911,9.496-2.154,9.496-2.154s0-6.612,0-10.303c-11.982,0-15.903-0.501-20.015,3.675\r\n\t\t\t\tc-3.658,3.715-3.771,11.011-4.072,18.375h-5.872V32.12h5.938c-0.002,10.504,0.003,22.016,0,31.884c4.462,0,13.954,0,13.954,0\r\n\t\t\t\tv-32.01c0,0,5.173,0,8.042,0c0.626-3.385,1.236-6.036,2.088-9.947H36.963z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"pinterest_3_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"pinterest","display":"inline"},"children":[{"name":"g","attribs":{"id":"pinterest","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.328,0,0,14.328,0,32c0,13.172,7.961,24.484,19.33,29.396\r\n\t\t\t\tc-0.082-2.23-0.002-4.891,0.562-7.302c0.621-2.604,4.137-17.5,4.137-17.5s-1.027-2.053-1.027-5.084\r\n\t\t\t\tc0-4.754,2.762-8.312,6.193-8.312c2.922,0,4.334,2.199,4.334,4.826c0,2.936-1.873,7.326-2.84,11.393\r\n\t\t\t\tc-0.801,3.406,1.715,6.188,5.074,6.188c6.08,0,10.176-7.815,10.176-17.078c0-7.035-4.734-12.307-13.359-12.307\r\n\t\t\t\tc-9.738,0-15.815,7.265-15.815,15.383c0,2.797,0.828,4.773,2.123,6.299c0.594,0.701,0.674,0.984,0.457,1.793\r\n\t\t\t\tc-0.156,0.588-0.502,2.01-0.65,2.578c-0.213,0.813-0.875,1.098-1.609,0.799c-4.484-1.828-6.578-6.742-6.578-12.266\r\n\t\t\t\tc0-9.125,7.695-20.064,22.953-20.064c12.266,0,20.334,8.875,20.334,18.395c0,12.605-7.006,22.014-17.328,22.014\r\n\t\t\t\tc-3.469,0-6.732-1.875-7.844-4c0,0-1.871,7.392-2.262,8.826c-0.674,2.439-1.973,4.877-3.176,6.797C25.982,63.571,28.94,64,32,64\r\n\t\t\t\tc17.672,0,32-14.328,32-32C64,14.328,49.672,0,32,0z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.328,0,0,14.328,0,32c0,13.172,7.961,24.484,19.33,29.396\r\n\t\t\t\tc-0.082-2.23-0.002-4.891,0.562-7.302c0.621-2.604,4.137-17.5,4.137-17.5s-1.027-2.053-1.027-5.084\r\n\t\t\t\tc0-4.754,2.762-8.312,6.193-8.312c2.922,0,4.334,2.199,4.334,4.826c0,2.936-1.873,7.326-2.84,11.393\r\n\t\t\t\tc-0.801,3.406,1.715,6.188,5.074,6.188c6.08,0,10.176-7.815,10.176-17.078c0-7.035-4.734-12.307-13.359-12.307\r\n\t\t\t\tc-9.738,0-15.815,7.265-15.815,15.383c0,2.797,0.828,4.773,2.123,6.299c0.594,0.701,0.674,0.984,0.457,1.793\r\n\t\t\t\tc-0.156,0.588-0.502,2.01-0.65,2.578c-0.213,0.813-0.875,1.098-1.609,0.799c-4.484-1.828-6.578-6.742-6.578-12.266\r\n\t\t\t\tc0-9.125,7.695-20.064,22.953-20.064c12.266,0,20.334,8.875,20.334,18.395c0,12.605-7.006,22.014-17.328,22.014\r\n\t\t\t\tc-3.469,0-6.732-1.875-7.844-4c0,0-1.871,7.392-2.262,8.826c-0.674,2.439-1.973,4.877-3.176,6.797C25.982,63.571,28.94,64,32,64\r\n\t\t\t\tc17.672,0,32-14.328,32-32C64,14.328,49.672,0,32,0z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"pinterest_2_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"pinterest_1_","display":"inline"},"children":[{"name":"g","attribs":{"id":"pinterest_1_","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M55.989,15.676c-0.967-3.324-2.492-5.987-4.586-8.274\r\n\t\t\t\tc-2.034-2.223-4.437-4.016-7.45-5.364c-2.854-1.276-6.646-2.221-10.815-2.024c-1.427,0.067-2.741,0.144-4.012,0.329\r\n\t\t\t\tc-3.83,0.557-6.978,1.715-9.768,3.364c-3.63,2.146-6.612,5.15-8.647,8.906c-0.981,1.809-1.867,4.037-2.343,6.452\r\n\t\t\t\tc-0.493,2.498-0.494,5.513,0,8.096c0.812,4.253,2.794,7.533,6.055,9.336c0.436,0.241,1.082,0.617,1.595,0.607\r\n\t\t\t\tc1.241-0.025,1.27-1.492,1.545-2.555c0.228-0.882,0.761-2.096,0.299-2.91c-0.326-0.574-0.815-0.99-1.146-1.493\r\n\t\t\t\tc-1.046-1.586-1.695-3.622-1.695-6.249c0-3.408,0.833-6.145,2.093-8.526c2.406-4.545,6.493-7.838,12.285-8.831\r\n\t\t\t\tc3.188-0.546,6.777-0.264,9.37,0.582c2.614,0.853,4.763,2.371,6.28,4.276c1.593,2.002,2.598,4.583,2.816,7.793\r\n\t\t\t\tc0.118,1.739-0.006,3.502-0.174,5.035c-0.524,4.757-1.906,8.754-4.186,11.715c-1.426,1.852-3.56,3.814-6.629,3.922\r\n\t\t\t\tc-1.738,0.061-2.998-0.365-4.062-1.139c-1.027-0.748-1.779-1.743-2.119-3.187c-0.369-1.574,0.078-3.072,0.473-4.53\r\n\t\t\t\tc0.798-2.94,1.675-5.229,2.342-8.274c0.297-1.352,0.568-3.19,0.2-4.731c-0.346-1.445-1.087-2.467-2.168-3.112\r\n\t\t\t\tc-1.049-0.626-2.777-0.872-4.336-0.33c-2.453,0.855-4.045,3.201-4.735,5.845c-0.391,1.496-0.531,3.119-0.349,4.858\r\n\t\t\t\tc0.158,1.514,0.518,2.809,1.071,4.251c0.076,0.197-0.143,0.768-0.225,1.114c-1.222,5.192-2.377,10.25-3.588,15.408\r\n\t\t\t\tc-0.636,2.708-1.321,5.419-1.47,8.679c-0.131,2.86-0.371,5.802-0.019,8.349c0.065,0.469,0.094,0.792,0.424,0.861\r\n\t\t\t\tc0.433,0.089,0.127,0.755,1.564-0.911c2.163-2.506,3.811-5.6,5.109-8.805c0.783-1.933,1.256-4.069,1.794-6.173\r\n\t\t\t\tc0.546-2.134,1.072-4.318,1.595-6.401c0.804,1.414,1.939,2.349,3.29,3.112c1.362,0.769,2.98,1.306,4.959,1.442\r\n\t\t\t\tc2.037,0.142,3.94-0.222,5.607-0.709c1.681-0.49,3.162-1.225,4.386-2.024c5.046-3.29,8.409-9.072,9.594-16.142\r\n\t\t\t\tc0.317-1.889,0.77-3.777,0.77-5.921C56.982,19.258,56.492,17.406,55.989,15.676z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M55.989,15.676c-0.967-3.324-2.492-5.987-4.586-8.274\r\n\t\t\t\tc-2.034-2.223-4.437-4.016-7.45-5.364c-2.854-1.276-6.646-2.221-10.815-2.024c-1.427,0.067-2.741,0.144-4.012,0.329\r\n\t\t\t\tc-3.83,0.557-6.978,1.715-9.768,3.364c-3.63,2.146-6.612,5.15-8.647,8.906c-0.981,1.809-1.867,4.037-2.343,6.452\r\n\t\t\t\tc-0.493,2.498-0.494,5.513,0,8.096c0.812,4.253,2.794,7.533,6.055,9.336c0.436,0.241,1.082,0.617,1.595,0.607\r\n\t\t\t\tc1.241-0.025,1.27-1.492,1.545-2.555c0.228-0.882,0.761-2.096,0.299-2.91c-0.326-0.574-0.815-0.99-1.146-1.493\r\n\t\t\t\tc-1.046-1.586-1.695-3.622-1.695-6.249c0-3.408,0.833-6.145,2.093-8.526c2.406-4.545,6.493-7.838,12.285-8.831\r\n\t\t\t\tc3.188-0.546,6.777-0.264,9.37,0.582c2.614,0.853,4.763,2.371,6.28,4.276c1.593,2.002,2.598,4.583,2.816,7.793\r\n\t\t\t\tc0.118,1.739-0.006,3.502-0.174,5.035c-0.524,4.757-1.906,8.754-4.186,11.715c-1.426,1.852-3.56,3.814-6.629,3.922\r\n\t\t\t\tc-1.738,0.061-2.998-0.365-4.062-1.139c-1.027-0.748-1.779-1.743-2.119-3.187c-0.369-1.574,0.078-3.072,0.473-4.53\r\n\t\t\t\tc0.798-2.94,1.675-5.229,2.342-8.274c0.297-1.352,0.568-3.19,0.2-4.731c-0.346-1.445-1.087-2.467-2.168-3.112\r\n\t\t\t\tc-1.049-0.626-2.777-0.872-4.336-0.33c-2.453,0.855-4.045,3.201-4.735,5.845c-0.391,1.496-0.531,3.119-0.349,4.858\r\n\t\t\t\tc0.158,1.514,0.518,2.809,1.071,4.251c0.076,0.197-0.143,0.768-0.225,1.114c-1.222,5.192-2.377,10.25-3.588,15.408\r\n\t\t\t\tc-0.636,2.708-1.321,5.419-1.47,8.679c-0.131,2.86-0.371,5.802-0.019,8.349c0.065,0.469,0.094,0.792,0.424,0.861\r\n\t\t\t\tc0.433,0.089,0.127,0.755,1.564-0.911c2.163-2.506,3.811-5.6,5.109-8.805c0.783-1.933,1.256-4.069,1.794-6.173\r\n\t\t\t\tc0.546-2.134,1.072-4.318,1.595-6.401c0.804,1.414,1.939,2.349,3.29,3.112c1.362,0.769,2.98,1.306,4.959,1.442\r\n\t\t\t\tc2.037,0.142,3.94-0.222,5.607-0.709c1.681-0.49,3.162-1.225,4.386-2.024c5.046-3.29,8.409-9.072,9.594-16.142\r\n\t\t\t\tc0.317-1.889,0.77-3.777,0.77-5.921C56.982,19.258,56.492,17.406,55.989,15.676z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"forrst_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"forrst","display":"inline"},"children":[{"name":"g","attribs":{"id":"forrst","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M59.873,61.947L33.865,0.88c-0.228-0.538-0.747-0.883-1.321-0.883\r\n\t\t\t\ts-1.093,0.345-1.32,0.88L5.127,61.944c-0.194,0.457-0.15,0.98,0.116,1.396c0.267,0.412,0.719,0.663,1.205,0.663h22.123V50.667\r\n\t\t\t\tL20.714,48c-1.085,0-1.964-0.895-1.964-2c0-1.105,0.879-2,1.964-2l7.857,2.667V34c0-1.104,0.879-2,1.964-2h3.929\r\n\t\t\t\tc1.085,0,1.964,0.896,1.964,2v3l5.893-3c1.085,0,1.964,0.895,1.964,2c0,1.104-0.879,2-1.964,2l-5.893,3v7l9.821-6\r\n\t\t\t\tc1.085,0,1.964,0.895,1.964,2c0,1.104-0.879,2-1.964,2l-9.821,6v12.003h22.123c0.487,0,0.938-0.248,1.205-0.663\r\n\t\t\t\tC60.022,62.928,60.066,62.401,59.873,61.947z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M59.873,61.947L33.865,0.88c-0.228-0.538-0.747-0.883-1.321-0.883\r\n\t\t\t\ts-1.093,0.345-1.32,0.88L5.127,61.944c-0.194,0.457-0.15,0.98,0.116,1.396c0.267,0.412,0.719,0.663,1.205,0.663h22.123V50.667\r\n\t\t\t\tL20.714,48c-1.085,0-1.964-0.895-1.964-2c0-1.105,0.879-2,1.964-2l7.857,2.667V34c0-1.104,0.879-2,1.964-2h3.929\r\n\t\t\t\tc1.085,0,1.964,0.896,1.964,2v3l5.893-3c1.085,0,1.964,0.895,1.964,2c0,1.104-0.879,2-1.964,2l-5.893,3v7l9.821-6\r\n\t\t\t\tc1.085,0,1.964,0.895,1.964,2c0,1.104-0.879,2-1.964,2l-9.821,6v12.003h22.123c0.487,0,0.938-0.248,1.205-0.663\r\n\t\t\t\tC60.022,62.928,60.066,62.401,59.873,61.947z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"dribbble_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"dribbble","display":"inline"},"children":[{"name":"g","attribs":{"id":"dribbble","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M63.35,25.558c-0.42-2.056-1.049-4.081-1.866-6.015\r\n\t\t\t\tc-0.802-1.899-1.795-3.727-2.951-5.436c-1.144-1.694-2.459-3.287-3.905-4.733c-1.448-1.449-3.04-2.764-4.735-3.907\r\n\t\t\t\tc-1.709-1.158-3.54-2.149-5.436-2.953c-1.933-0.814-3.957-1.446-6.014-1.863c-2.107-0.433-4.276-0.652-6.442-0.652\r\n\t\t\t\tc-2.169,0-4.338,0.22-6.446,0.652c-2.056,0.417-4.08,1.049-6.013,1.863c-1.896,0.804-3.727,1.795-5.437,2.953\r\n\t\t\t\tC12.411,6.61,10.818,7.924,9.37,9.373c-1.446,1.446-2.76,3.039-3.904,4.733c-1.156,1.709-2.149,3.537-2.951,5.436\r\n\t\t\t\tc-0.818,1.934-1.446,3.96-1.867,6.015c-0.431,2.103-0.65,4.273-0.65,6.44c0,2.172,0.219,4.342,0.65,6.448\r\n\t\t\t\tc0.421,2.056,1.049,4.081,1.867,6.013c0.802,1.896,1.795,3.73,2.951,5.439c1.144,1.694,2.458,3.284,3.904,4.733\r\n\t\t\t\tc1.447,1.446,3.04,2.759,4.734,3.904c1.711,1.155,3.541,2.149,5.437,2.951c1.933,0.819,3.957,1.444,6.013,1.866\r\n\t\t\t\tc2.109,0.435,4.277,0.652,6.446,0.652c2.167,0,4.335-0.217,6.442-0.652c2.057-0.422,4.081-1.047,6.014-1.866\r\n\t\t\t\tc1.896-0.802,3.727-1.795,5.436-2.951c1.694-1.146,3.287-2.458,4.735-3.904c1.446-1.449,2.761-3.039,3.905-4.733\r\n\t\t\t\tc1.155-1.709,2.149-3.542,2.951-5.439c0.817-1.932,1.446-3.957,1.866-6.013c0.432-2.106,0.651-4.275,0.651-6.448\r\n\t\t\t\tC64.001,29.831,63.783,27.661,63.35,25.558z M32.001,4.67c6.919,0,13.234,2.579,18.049,6.819\r\n\t\t\t\tc-0.067,0.106-3.96,6.03-14.276,9.897C31.104,12.802,25.971,5.982,25.56,5.441C27.626,4.941,29.78,4.67,32.001,4.67z\r\n\t\t\t\t M25.455,5.464c-0.001,0.003-0.005,0.005-0.005,0.005s-0.032,0.008-0.082,0.018C25.396,5.479,25.426,5.474,25.455,5.464z\r\n\t\t\t\t M20.34,7.282c0.363,0.488,5.417,7.34,10.148,15.747c-13.123,3.487-24.511,3.35-25.233,3.337\r\n\t\t\t\tC7.032,17.901,12.718,10.883,20.34,7.282z M11.673,50.263c-4.352-4.842-7.001-11.244-7.001-18.266\r\n\t\t\t\tc0-0.291,0.013-0.576,0.023-0.862c0.481,0.01,13.986,0.316,28.057-3.894c0.784,1.532,1.532,3.09,2.218,4.645\r\n\t\t\t\tc-0.362,0.101-0.719,0.21-1.077,0.326C19.143,36.979,11.662,50.25,11.662,50.25S11.671,50.258,11.673,50.263z M32.001,59.33\r\n\t\t\t\tc-6.338,0-12.157-2.175-16.793-5.795c-0.001,0.002-0.005,0.01-0.005,0.01s-0.252-0.187-0.612-0.478\r\n\t\t\t\tc0.199,0.164,0.413,0.309,0.617,0.468c0.1-0.216,5.39-11.47,21.443-17.062c0.059-0.023,0.12-0.041,0.181-0.058\r\n\t\t\t\tc3.846,9.993,5.434,18.362,5.838,20.751C39.392,58.559,35.785,59.33,32.001,59.33z M47.272,54.668\r\n\t\t\t\tc-0.278-1.651-1.734-9.671-5.32-19.522c8.823-1.411,16.468,1.009,17.032,1.193C57.767,43.955,53.408,50.523,47.272,54.668z\r\n\t\t\t\t M40.286,30.832c-0.192-0.468-0.387-0.938-0.589-1.411c-0.569-1.337-1.181-2.662-1.817-3.964\r\n\t\t\t\tc10.793-4.405,15.174-10.741,15.226-10.817c3.833,4.655,6.152,10.602,6.215,17.087C58.925,31.641,49.676,29.651,40.286,30.832z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M63.35,25.558c-0.42-2.056-1.049-4.081-1.866-6.015\r\n\t\t\t\tc-0.802-1.899-1.795-3.727-2.951-5.436c-1.144-1.694-2.459-3.287-3.905-4.733c-1.448-1.449-3.04-2.764-4.735-3.907\r\n\t\t\t\tc-1.709-1.158-3.54-2.149-5.436-2.953c-1.933-0.814-3.957-1.446-6.014-1.863c-2.107-0.433-4.276-0.652-6.442-0.652\r\n\t\t\t\tc-2.169,0-4.338,0.22-6.446,0.652c-2.056,0.417-4.08,1.049-6.013,1.863c-1.896,0.804-3.727,1.795-5.437,2.953\r\n\t\t\t\tC12.411,6.61,10.818,7.924,9.37,9.373c-1.446,1.446-2.76,3.039-3.904,4.733c-1.156,1.709-2.149,3.537-2.951,5.436\r\n\t\t\t\tc-0.818,1.934-1.446,3.96-1.867,6.015c-0.431,2.103-0.65,4.273-0.65,6.44c0,2.172,0.219,4.342,0.65,6.448\r\n\t\t\t\tc0.421,2.056,1.049,4.081,1.867,6.013c0.802,1.896,1.795,3.73,2.951,5.439c1.144,1.694,2.458,3.284,3.904,4.733\r\n\t\t\t\tc1.447,1.446,3.04,2.759,4.734,3.904c1.711,1.155,3.541,2.149,5.437,2.951c1.933,0.819,3.957,1.444,6.013,1.866\r\n\t\t\t\tc2.109,0.435,4.277,0.652,6.446,0.652c2.167,0,4.335-0.217,6.442-0.652c2.057-0.422,4.081-1.047,6.014-1.866\r\n\t\t\t\tc1.896-0.802,3.727-1.795,5.436-2.951c1.694-1.146,3.287-2.458,4.735-3.904c1.446-1.449,2.761-3.039,3.905-4.733\r\n\t\t\t\tc1.155-1.709,2.149-3.542,2.951-5.439c0.817-1.932,1.446-3.957,1.866-6.013c0.432-2.106,0.651-4.275,0.651-6.448\r\n\t\t\t\tC64.001,29.831,63.783,27.661,63.35,25.558z M32.001,4.67c6.919,0,13.234,2.579,18.049,6.819\r\n\t\t\t\tc-0.067,0.106-3.96,6.03-14.276,9.897C31.104,12.802,25.971,5.982,25.56,5.441C27.626,4.941,29.78,4.67,32.001,4.67z\r\n\t\t\t\t M25.455,5.464c-0.001,0.003-0.005,0.005-0.005,0.005s-0.032,0.008-0.082,0.018C25.396,5.479,25.426,5.474,25.455,5.464z\r\n\t\t\t\t M20.34,7.282c0.363,0.488,5.417,7.34,10.148,15.747c-13.123,3.487-24.511,3.35-25.233,3.337\r\n\t\t\t\tC7.032,17.901,12.718,10.883,20.34,7.282z M11.673,50.263c-4.352-4.842-7.001-11.244-7.001-18.266\r\n\t\t\t\tc0-0.291,0.013-0.576,0.023-0.862c0.481,0.01,13.986,0.316,28.057-3.894c0.784,1.532,1.532,3.09,2.218,4.645\r\n\t\t\t\tc-0.362,0.101-0.719,0.21-1.077,0.326C19.143,36.979,11.662,50.25,11.662,50.25S11.671,50.258,11.673,50.263z M32.001,59.33\r\n\t\t\t\tc-6.338,0-12.157-2.175-16.793-5.795c-0.001,0.002-0.005,0.01-0.005,0.01s-0.252-0.187-0.612-0.478\r\n\t\t\t\tc0.199,0.164,0.413,0.309,0.617,0.468c0.1-0.216,5.39-11.47,21.443-17.062c0.059-0.023,0.12-0.041,0.181-0.058\r\n\t\t\t\tc3.846,9.993,5.434,18.362,5.838,20.751C39.392,58.559,35.785,59.33,32.001,59.33z M47.272,54.668\r\n\t\t\t\tc-0.278-1.651-1.734-9.671-5.32-19.522c8.823-1.411,16.468,1.009,17.032,1.193C57.767,43.955,53.408,50.523,47.272,54.668z\r\n\t\t\t\t M40.286,30.832c-0.192-0.468-0.387-0.938-0.589-1.411c-0.569-1.337-1.181-2.662-1.817-3.964\r\n\t\t\t\tc10.793-4.405,15.174-10.741,15.226-10.817c3.833,4.655,6.152,10.602,6.215,17.087C58.925,31.641,49.676,29.651,40.286,30.832z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"behance_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"behance","display":"inline"},"children":[{"name":"g","attribs":{"id":"behance","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M25.989,30.502c3.455-1.68,5.402-4.417,5.402-8.338\r\n\t\t\t\tc0-7.438-5.12-10.15-12.686-10.15H0.001v40.192h19.255c7.179,0,14.027-3.472,14.027-11.584\r\n\t\t\t\tC33.284,35.646,30.836,31.901,25.989,30.502z M7.991,18.774h8.18c3.115,0,6.01,0.786,6.01,4.591c0,3.352-2.283,4.749-5.343,4.749\r\n\t\t\t\tH7.991V18.774z M17.338,45.063H7.991V34.098h9.513c3.73,0,6.288,1.625,6.288,5.707C23.792,43.947,20.789,45.063,17.338,45.063z\r\n\t\t\t\t M57.972,15.993H42.028v4.072h15.943V15.993z M50.05,22.502c-8.735,0-14.692,6.601-14.692,15.273\r\n\t\t\t\tc0,8.947,5.621,15.212,14.692,15.212c6.514,0,10.62-1.965,12.842-8.79h-6.328c-0.501,1.793-3.064,2.806-6.238,2.806\r\n\t\t\t\tc-4.395,0-6.843-1.855-7.064-6.891h20.756C64.574,31.219,59.843,22.502,50.05,22.502z M43.262,34.198\r\n\t\t\t\tc0.109-2.234,1.556-5.709,6.563-5.709c3.839,0,5.568,1.684,6.293,5.709H43.262z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M25.989,30.502c3.455-1.68,5.402-4.417,5.402-8.338\r\n\t\t\t\tc0-7.438-5.12-10.15-12.686-10.15H0.001v40.192h19.255c7.179,0,14.027-3.472,14.027-11.584\r\n\t\t\t\tC33.284,35.646,30.836,31.901,25.989,30.502z M7.991,18.774h8.18c3.115,0,6.01,0.786,6.01,4.591c0,3.352-2.283,4.749-5.343,4.749\r\n\t\t\t\tH7.991V18.774z M17.338,45.063H7.991V34.098h9.513c3.73,0,6.288,1.625,6.288,5.707C23.792,43.947,20.789,45.063,17.338,45.063z\r\n\t\t\t\t M57.972,15.993H42.028v4.072h15.943V15.993z M50.05,22.502c-8.735,0-14.692,6.601-14.692,15.273\r\n\t\t\t\tc0,8.947,5.621,15.212,14.692,15.212c6.514,0,10.62-1.965,12.842-8.79h-6.328c-0.501,1.793-3.064,2.806-6.238,2.806\r\n\t\t\t\tc-4.395,0-6.843-1.855-7.064-6.891h20.756C64.574,31.219,59.843,22.502,50.05,22.502z M43.262,34.198\r\n\t\t\t\tc0.109-2.234,1.556-5.709,6.563-5.709c3.839,0,5.568,1.684,6.293,5.709H43.262z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"windows_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"windows","display":"inline"},"children":[{"name":"g","attribs":{"id":"windows","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M0.015,30.236h25.809V5.541L0.015,9.28V30.236z M29.353,5.029v25.207h34.632\r\n\t\t\t\tV0.015L29.353,5.029z M0.015,54.721l25.809,3.738V33.765H0.015V54.721z M29.353,58.97l34.632,5.015v-30.22H29.353V58.97z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M0.015,30.236h25.809V5.541L0.015,9.28V30.236z M29.353,5.029v25.207h34.632\r\n\t\t\t\tV0.015L29.353,5.029z M0.015,54.721l25.809,3.738V33.765H0.015V54.721z M29.353,58.97l34.632,5.015v-30.22H29.353V58.97z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"microsoft_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"microsoft","display":"inline"},"children":[{"name":"g","attribs":{"id":"microsoft","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26.307,31.796c-2.208-1.219-5.281-2.486-8.648-2.486\r\n\t\t\t\tc-0.383,0-0.764,0.014-1.149,0.049c-3.377,0.302-6.453,1.232-8.613,2.052c-0.638,0.248-1.297,0.518-1.971,0.814l-5.924,22.12\r\n\t\t\t\tc4.476-1.944,8.093-2.72,11.133-2.72c5.01,0,8.484,2.084,11.763,4.435c1.217-4.441,5.348-19.634,6.133-22.527\r\n\t\t\t\tC28.143,32.94,27.25,32.344,26.307,31.796z M18.765,23.98c4.802,0.054,8.205,2.119,11.372,4.382\r\n\t\t\t\tc1.213-4.427,4.814-17.723,6.03-22.209V6.136c0,0-4.244-2.737-7.197-3.548c-1.409-0.359-3.003-0.585-4.766-0.585h-0.069\r\n\t\t\t\tc-3.001,0.062-6.598,0.844-11.02,2.788L7.28,26.86c4.543-1.995,8.228-2.88,11.324-2.88H18.765z M52.56,13.559\r\n\t\t\t\tc-6.488,0-10.766-2.974-12.658-4.559l-5.985,22.306c0.016,0.019,0.043,0.035,0.063,0.048c3.292,2.37,7.573,4.287,12.733,4.287\r\n\t\t\t\tc3.412,0,7.204-0.836,11.348-2.941v-0.03c0.009,0,0.021-0.008,0.036-0.014l5.902-21.899\r\n\t\t\t\tC59.641,12.807,55.824,13.559,52.56,13.559z M32.569,36.329l-5.905,22.085c-0.009-0.005,6.904,4.584,12.089,4.584\r\n\t\t\t\tc3.281,0,7.205-0.865,12.114-3.047l5.691-21.43c-4.318,1.666-8.039,2.292-11.184,2.292\r\n\t\t\t\tC38.529,40.813,34.367,37.874,32.569,36.329z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26.307,31.796c-2.208-1.219-5.281-2.486-8.648-2.486\r\n\t\t\t\tc-0.383,0-0.764,0.014-1.149,0.049c-3.377,0.302-6.453,1.232-8.613,2.052c-0.638,0.248-1.297,0.518-1.971,0.814l-5.924,22.12\r\n\t\t\t\tc4.476-1.944,8.093-2.72,11.133-2.72c5.01,0,8.484,2.084,11.763,4.435c1.217-4.441,5.348-19.634,6.133-22.527\r\n\t\t\t\tC28.143,32.94,27.25,32.344,26.307,31.796z M18.765,23.98c4.802,0.054,8.205,2.119,11.372,4.382\r\n\t\t\t\tc1.213-4.427,4.814-17.723,6.03-22.209V6.136c0,0-4.244-2.737-7.197-3.548c-1.409-0.359-3.003-0.585-4.766-0.585h-0.069\r\n\t\t\t\tc-3.001,0.062-6.598,0.844-11.02,2.788L7.28,26.86c4.543-1.995,8.228-2.88,11.324-2.88H18.765z M52.56,13.559\r\n\t\t\t\tc-6.488,0-10.766-2.974-12.658-4.559l-5.985,22.306c0.016,0.019,0.043,0.035,0.063,0.048c3.292,2.37,7.573,4.287,12.733,4.287\r\n\t\t\t\tc3.412,0,7.204-0.836,11.348-2.941v-0.03c0.009,0,0.021-0.008,0.036-0.014l5.902-21.899\r\n\t\t\t\tC59.641,12.807,55.824,13.559,52.56,13.559z M32.569,36.329l-5.905,22.085c-0.009-0.005,6.904,4.584,12.089,4.584\r\n\t\t\t\tc3.281,0,7.205-0.865,12.114-3.047l5.691-21.43c-4.318,1.666-8.039,2.292-11.184,2.292\r\n\t\t\t\tC38.529,40.813,34.367,37.874,32.569,36.329z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"appstore_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"appstore","display":"inline"},"children":[{"name":"g","attribs":{"id":"appstore","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31.03,28.052L24.522,39.43h17.661c-1.283-2.54-2.981-6.173-5.261-11.377H31.03\r\n\t\t\t\tz M31.735,21.424c0.405-0.708,0.16-1.618-0.546-2.03l-3.854-2.214c-0.704-0.41-1.615-0.163-2.019,0.545l-5.908,10.328\r\n\t\t\t\tL12.899,39.43l-5.433,9.5c-0.409,0.708-0.16,1.618,0.546,2.023l3.853,2.224c0.705,0.408,1.615,0.161,2.023-0.545l7.55-13.202\r\n\t\t\t\tl4.879-8.532L31.735,21.424z M10.606,54.878l-3.853-2.219c-0.706-0.408-1.358-0.074-1.452,0.736l-0.666,5.824\r\n\t\t\t\tc-0.093,0.81,0.382,1.101,1.054,0.642l4.977-3.406C11.341,55.999,11.312,55.286,10.606,54.878z M16.322,28.052H1.35\r\n\t\t\t\tc-0.74,0-1.339,0.601-1.339,1.343v8.692c0,0.741,0.599,1.342,1.339,1.342h8.464L16.322,28.052z M62.65,28.052H49.643\r\n\t\t\t\tc1.53,2.879,2.948,5.589,3.948,7.505c0.692,1.325,1.239,2.372,1.433,2.723c0.202,0.372,0.346,0.756,0.444,1.149h7.183\r\n\t\t\t\tc0.739,0,1.339-0.601,1.339-1.342v-8.692C63.989,28.654,63.389,28.052,62.65,28.052z M52.677,39.575\r\n\t\t\t\tc-0.022-0.038-0.051-0.092-0.079-0.145c-0.358-0.665-1.255-2.394-2.433-4.639c-0.014-0.031-0.029-0.056-0.043-0.087\r\n\t\t\t\tc-0.09-0.173-0.181-0.346-0.275-0.525c-0.067-0.127-0.134-0.257-0.204-0.387c-0.057-0.112-0.117-0.224-0.175-0.339\r\n\t\t\t\tc-0.105-0.199-0.211-0.397-0.317-0.601c-0.034-0.064-0.066-0.127-0.1-0.191c-0.119-0.229-0.241-0.459-0.364-0.693\r\n\t\t\t\tc-0.035-0.066-0.07-0.132-0.106-0.201c-2.714-5.151-6.123-11.492-8.227-14.827c-3.683-5.844-8.599-15.583-9.971-14.89\r\n\t\t\t\tc-1.923,0.961,4.027,13.324,5.997,17.97c1.97,4.644,9.656,22.447,11.197,23.224c1.543,0.774,2.14,0.344,3.169-0.084\r\n\t\t\t\tC51.774,42.729,53.619,41.3,52.677,39.575z M56.504,53.867c-0.577,0.555-1.951,1.763-0.289,4.107\r\n\t\t\t\tc1.657,2.349,5.362,2.454,5.85,4.013C62.065,61.986,63.229,50.061,56.504,53.867z M57.071,48.749l-1.835-3.536\r\n\t\t\t\tc-0.416-0.8-1.392-1.126-2.171-0.726l-2.213,1.144c-0.779,0.405-1.025,1.353-0.546,2.117l2.322,3.681\r\n\t\t\t\tc0.48,0.759,1.491,1.009,2.242,0.553l1.58-0.953C57.205,50.575,57.484,49.549,57.071,48.749z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31.03,28.052L24.522,39.43h17.661c-1.283-2.54-2.981-6.173-5.261-11.377H31.03\r\n\t\t\t\tz M31.735,21.424c0.405-0.708,0.16-1.618-0.546-2.03l-3.854-2.214c-0.704-0.41-1.615-0.163-2.019,0.545l-5.908,10.328\r\n\t\t\t\tL12.899,39.43l-5.433,9.5c-0.409,0.708-0.16,1.618,0.546,2.023l3.853,2.224c0.705,0.408,1.615,0.161,2.023-0.545l7.55-13.202\r\n\t\t\t\tl4.879-8.532L31.735,21.424z M10.606,54.878l-3.853-2.219c-0.706-0.408-1.358-0.074-1.452,0.736l-0.666,5.824\r\n\t\t\t\tc-0.093,0.81,0.382,1.101,1.054,0.642l4.977-3.406C11.341,55.999,11.312,55.286,10.606,54.878z M16.322,28.052H1.35\r\n\t\t\t\tc-0.74,0-1.339,0.601-1.339,1.343v8.692c0,0.741,0.599,1.342,1.339,1.342h8.464L16.322,28.052z M62.65,28.052H49.643\r\n\t\t\t\tc1.53,2.879,2.948,5.589,3.948,7.505c0.692,1.325,1.239,2.372,1.433,2.723c0.202,0.372,0.346,0.756,0.444,1.149h7.183\r\n\t\t\t\tc0.739,0,1.339-0.601,1.339-1.342v-8.692C63.989,28.654,63.389,28.052,62.65,28.052z M52.677,39.575\r\n\t\t\t\tc-0.022-0.038-0.051-0.092-0.079-0.145c-0.358-0.665-1.255-2.394-2.433-4.639c-0.014-0.031-0.029-0.056-0.043-0.087\r\n\t\t\t\tc-0.09-0.173-0.181-0.346-0.275-0.525c-0.067-0.127-0.134-0.257-0.204-0.387c-0.057-0.112-0.117-0.224-0.175-0.339\r\n\t\t\t\tc-0.105-0.199-0.211-0.397-0.317-0.601c-0.034-0.064-0.066-0.127-0.1-0.191c-0.119-0.229-0.241-0.459-0.364-0.693\r\n\t\t\t\tc-0.035-0.066-0.07-0.132-0.106-0.201c-2.714-5.151-6.123-11.492-8.227-14.827c-3.683-5.844-8.599-15.583-9.971-14.89\r\n\t\t\t\tc-1.923,0.961,4.027,13.324,5.997,17.97c1.97,4.644,9.656,22.447,11.197,23.224c1.543,0.774,2.14,0.344,3.169-0.084\r\n\t\t\t\tC51.774,42.729,53.619,41.3,52.677,39.575z M56.504,53.867c-0.577,0.555-1.951,1.763-0.289,4.107\r\n\t\t\t\tc1.657,2.349,5.362,2.454,5.85,4.013C62.065,61.986,63.229,50.061,56.504,53.867z M57.071,48.749l-1.835-3.536\r\n\t\t\t\tc-0.416-0.8-1.392-1.126-2.171-0.726l-2.213,1.144c-0.779,0.405-1.025,1.353-0.546,2.117l2.322,3.681\r\n\t\t\t\tc0.48,0.759,1.491,1.009,2.242,0.553l1.58-0.953C57.205,50.575,57.484,49.549,57.071,48.749z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"apple_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"apple","display":"inline"},"children":[{"name":"g","attribs":{"id":"apple","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M42.112,10.214c2.399-2.709,4.021-6.473,3.579-10.221\r\n\t\t\t\tc-3.459,0.13-7.647,2.14-10.131,4.846c-2.224,2.401-4.17,6.226-3.65,9.906C35.77,15.025,39.708,12.918,42.112,10.214z\r\n\t\t\t\t M50.772,34.008c-0.087-8.109,7.104-11.997,7.426-12.193c-4.041-5.499-10.336-6.254-12.576-6.34\r\n\t\t\t\tc-5.355-0.506-10.451,2.935-13.169,2.935c-2.711,0-6.906-2.861-11.346-2.788c-5.84,0.081-11.222,3.161-14.228,8.028\r\n\t\t\t\tc-6.065,9.794-1.552,24.307,4.359,32.256c2.89,3.886,6.335,8.257,10.855,8.097c4.357-0.16,6.002-2.622,11.267-2.622\r\n\t\t\t\tc5.268,0,6.746,2.622,11.354,2.541c4.685-0.079,7.655-3.959,10.522-7.86c3.318-4.513,4.683-8.885,4.765-9.106\r\n\t\t\t\tC59.896,46.91,50.865,43.69,50.772,34.008z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M42.112,10.214c2.399-2.709,4.021-6.473,3.579-10.221\r\n\t\t\t\tc-3.459,0.13-7.647,2.14-10.131,4.846c-2.224,2.401-4.17,6.226-3.65,9.906C35.77,15.025,39.708,12.918,42.112,10.214z\r\n\t\t\t\t M50.772,34.008c-0.087-8.109,7.104-11.997,7.426-12.193c-4.041-5.499-10.336-6.254-12.576-6.34\r\n\t\t\t\tc-5.355-0.506-10.451,2.935-13.169,2.935c-2.711,0-6.906-2.861-11.346-2.788c-5.84,0.081-11.222,3.161-14.228,8.028\r\n\t\t\t\tc-6.065,9.794-1.552,24.307,4.359,32.256c2.89,3.886,6.335,8.257,10.855,8.097c4.357-0.16,6.002-2.622,11.267-2.622\r\n\t\t\t\tc5.268,0,6.746,2.622,11.354,2.541c4.685-0.079,7.655-3.959,10.522-7.86c3.318-4.513,4.683-8.885,4.765-9.106\r\n\t\t\t\tC59.896,46.91,50.865,43.69,50.772,34.008z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"android_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"android","display":"inline"},"children":[{"name":"g","attribs":{"id":"android","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M15.647,47.493c0,2.164,1.709,3.926,3.812,3.926h2.752\r\n\t\t\t\tc-0.092,0.327-0.144,0.673-0.144,1.031v7.848c0,2.052,1.618,3.717,3.612,3.717c1.995,0,3.613-1.665,3.613-3.717V52.45\r\n\t\t\t\tc0-0.358-0.053-0.704-0.144-1.031h6.708c-0.092,0.327-0.144,0.673-0.144,1.031v7.848c0,2.052,1.618,3.717,3.612,3.717\r\n\t\t\t\tc1.995,0,3.613-1.665,3.613-3.717V52.45c0-0.358-0.052-0.704-0.144-1.031h2.752c2.103,0,3.812-1.761,3.812-3.926v-27.26H15.647\r\n\t\t\t\tV47.493z M9.626,20.233c-1.995,0-3.612,1.664-3.612,3.717v15.902c0,2.052,1.617,3.717,3.612,3.717\r\n\t\t\t\tc1.994,0,3.612-1.665,3.612-3.717V23.951C13.238,21.897,11.62,20.233,9.626,20.233z M55.375,20.233\r\n\t\t\t\tc-1.995,0-3.612,1.664-3.612,3.717v15.902c0,2.052,1.617,3.717,3.612,3.717c1.995,0,3.611-1.665,3.611-3.717V23.951\r\n\t\t\t\tC58.986,21.897,57.37,20.233,55.375,20.233z M40.789,5.355l0.678-1.047l0.668-1.032l1.501-2.318\r\n\t\t\t\tc0.184-0.285,0.109-0.669-0.166-0.859c-0.278-0.191-0.651-0.114-0.836,0.172l-1.609,2.485l-0.677,1.045L39.662,4.86\r\n\t\t\t\tC37.487,3.992,35.06,3.505,32.5,3.505c-2.559,0-4.986,0.487-7.16,1.354l-0.685-1.059l-0.676-1.045l-1.612-2.485\r\n\t\t\t\tc-0.184-0.285-0.558-0.362-0.836-0.172c-0.275,0.19-0.351,0.574-0.166,0.859l1.5,2.318l0.669,1.032l0.678,1.047\r\n\t\t\t\tc-5.109,2.449-8.566,7.089-8.566,12.4h33.708C49.355,12.444,45.898,7.804,40.789,5.355z M25.278,12.799\r\n\t\t\t\tc-0.998,0-1.806-0.833-1.806-1.859c0-1.026,0.808-1.857,1.806-1.857c0.997,0,1.806,0.831,1.806,1.857\r\n\t\t\t\tC27.084,11.966,26.275,12.799,25.278,12.799z M39.724,12.799c-0.997,0-1.805-0.833-1.805-1.859c0-1.026,0.808-1.857,1.805-1.857\r\n\t\t\t\tc0.998,0,1.806,0.831,1.806,1.857C41.529,11.966,40.722,12.799,39.724,12.799z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M15.647,47.493c0,2.164,1.709,3.926,3.812,3.926h2.752\r\n\t\t\t\tc-0.092,0.327-0.144,0.673-0.144,1.031v7.848c0,2.052,1.618,3.717,3.612,3.717c1.995,0,3.613-1.665,3.613-3.717V52.45\r\n\t\t\t\tc0-0.358-0.053-0.704-0.144-1.031h6.708c-0.092,0.327-0.144,0.673-0.144,1.031v7.848c0,2.052,1.618,3.717,3.612,3.717\r\n\t\t\t\tc1.995,0,3.613-1.665,3.613-3.717V52.45c0-0.358-0.052-0.704-0.144-1.031h2.752c2.103,0,3.812-1.761,3.812-3.926v-27.26H15.647\r\n\t\t\t\tV47.493z M9.626,20.233c-1.995,0-3.612,1.664-3.612,3.717v15.902c0,2.052,1.617,3.717,3.612,3.717\r\n\t\t\t\tc1.994,0,3.612-1.665,3.612-3.717V23.951C13.238,21.897,11.62,20.233,9.626,20.233z M55.375,20.233\r\n\t\t\t\tc-1.995,0-3.612,1.664-3.612,3.717v15.902c0,2.052,1.617,3.717,3.612,3.717c1.995,0,3.611-1.665,3.611-3.717V23.951\r\n\t\t\t\tC58.986,21.897,57.37,20.233,55.375,20.233z M40.789,5.355l0.678-1.047l0.668-1.032l1.501-2.318\r\n\t\t\t\tc0.184-0.285,0.109-0.669-0.166-0.859c-0.278-0.191-0.651-0.114-0.836,0.172l-1.609,2.485l-0.677,1.045L39.662,4.86\r\n\t\t\t\tC37.487,3.992,35.06,3.505,32.5,3.505c-2.559,0-4.986,0.487-7.16,1.354l-0.685-1.059l-0.676-1.045l-1.612-2.485\r\n\t\t\t\tc-0.184-0.285-0.558-0.362-0.836-0.172c-0.275,0.19-0.351,0.574-0.166,0.859l1.5,2.318l0.669,1.032l0.678,1.047\r\n\t\t\t\tc-5.109,2.449-8.566,7.089-8.566,12.4h33.708C49.355,12.444,45.898,7.804,40.789,5.355z M25.278,12.799\r\n\t\t\t\tc-0.998,0-1.806-0.833-1.806-1.859c0-1.026,0.808-1.857,1.806-1.857c0.997,0,1.806,0.831,1.806,1.857\r\n\t\t\t\tC27.084,11.966,26.275,12.799,25.278,12.799z M39.724,12.799c-0.997,0-1.805-0.833-1.805-1.859c0-1.026,0.808-1.857,1.805-1.857\r\n\t\t\t\tc0.998,0,1.806,0.831,1.806,1.857C41.529,11.966,40.722,12.799,39.724,12.799z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"RSS_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"RSS","display":"inline"},"children":[{"name":"g","attribs":{"id":"RSS","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M8,48c-4.418,0-8,3.582-8,8c0,4.418,3.582,8,8,8c4.418,0,8-3.582,8-8\r\n\t\t\t\tC16,51.582,12.418,48,8,48z M0,23v11c16.569,0,30,13.431,30,30h11C41,41.356,22.644,23,0,23z M0,0v11c29.271,0,53,23.729,53,53\r\n\t\t\t\th11C64,28.654,35.346,0,0,0z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M8,48c-4.418,0-8,3.582-8,8c0,4.418,3.582,8,8,8c4.418,0,8-3.582,8-8\r\n\t\t\t\tC16,51.582,12.418,48,8,48z M0,23v11c16.569,0,30,13.431,30,30h11C41,41.356,22.644,23,0,23z M0,0v11c29.271,0,53,23.729,53,53\r\n\t\t\t\th11C64,28.654,35.346,0,0,0z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"HASHTAG_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"HASHTAG","display":"inline"},"children":[{"name":"g","attribs":{"id":"HASHTAG","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M58,18h-8.69l2.614-11.325h0C51.973,6.458,52,6.232,52,6c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.425,0-2.617,0.994-2.923,2.326l0,0L43.152,18H27.31l2.614-11.325h0C29.973,6.458,30,6.232,30,6c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.425,0-2.617,0.994-2.923,2.326l0,0L21.152,18H12c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h7.767l-3.692,16H6\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h8.69l-2.613,11.325h0C12.027,57.542,12,57.768,12,58c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.425,0,2.617-0.994,2.923-2.326l0,0L20.848,46H36.69l-2.614,11.325h0C34.027,57.542,34,57.768,34,58c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.425,0,2.617-0.994,2.923-2.326l0,0L42.848,46H52c1.657,0,3-1.343,3-3s-1.343-3-3-3h-7.767l3.692-16H58c1.657,0,3-1.343,3-3\r\n\t\t\t\tC61,19.343,59.657,18,58,18z M38.075,40H22.233l3.692-16h15.842L38.075,40z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M58,18h-8.69l2.614-11.325h0C51.973,6.458,52,6.232,52,6c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.425,0-2.617,0.994-2.923,2.326l0,0L43.152,18H27.31l2.614-11.325h0C29.973,6.458,30,6.232,30,6c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.425,0-2.617,0.994-2.923,2.326l0,0L21.152,18H12c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h7.767l-3.692,16H6\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h8.69l-2.613,11.325h0C12.027,57.542,12,57.768,12,58c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.425,0,2.617-0.994,2.923-2.326l0,0L20.848,46H36.69l-2.614,11.325h0C34.027,57.542,34,57.768,34,58c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.425,0,2.617-0.994,2.923-2.326l0,0L42.848,46H52c1.657,0,3-1.343,3-3s-1.343-3-3-3h-7.767l3.692-16H58c1.657,0,3-1.343,3-3\r\n\t\t\t\tC61,19.343,59.657,18,58,18z M38.075,40H22.233l3.692-16h15.842L38.075,40z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"COLUMNS_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"COLUMNS","display":"inline"},"children":[{"name":"g","attribs":{"id":"COLUMNS","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,6H3C1.343,6,0,7.343,0,9v46c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V9\r\n\t\t\t\tC64,7.343,62.657,6,61,6z M21,52H6V12h15V52z M40,52H24V12h16V52z M58,52H43V12h15V52z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,6H3C1.343,6,0,7.343,0,9v46c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V9\r\n\t\t\t\tC64,7.343,62.657,6,61,6z M21,52H6V12h15V52z M40,52H24V12h16V52z M58,52H43V12h15V52z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"PEN_3_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PEN_3","display":"inline"},"children":[{"name":"g","attribs":{"id":"PEN_3","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61.167,6.995l-4.223-4.215c-1.166-1.164-3.057-1.164-4.223,0l-6.334,6.322\r\n\t\t\t\tl8.446,8.429l6.334-6.322C62.334,10.046,62.334,8.159,61.167,6.995z M53,57H7V11h33.357l6-6H4C2.343,5,1,6.343,1,8v52\r\n\t\t\t\tc0,1.657,1.343,3,3,3h52c1.657,0,3-1.343,3-3V17.813l-6,6V57z M52.721,19.639l-8.446-8.429L18.938,36.498l8.446,8.429\r\n\t\t\t\tL52.721,19.639z M13.998,49.84l11.258-2.806l-8.447-8.431L13.998,49.84z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61.167,6.995l-4.223-4.215c-1.166-1.164-3.057-1.164-4.223,0l-6.334,6.322\r\n\t\t\t\tl8.446,8.429l6.334-6.322C62.334,10.046,62.334,8.159,61.167,6.995z M53,57H7V11h33.357l6-6H4C2.343,5,1,6.343,1,8v52\r\n\t\t\t\tc0,1.657,1.343,3,3,3h52c1.657,0,3-1.343,3-3V17.813l-6,6V57z M52.721,19.639l-8.446-8.429L18.938,36.498l8.446,8.429\r\n\t\t\t\tL52.721,19.639z M13.998,49.84l11.258-2.806l-8.447-8.431L13.998,49.84z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"PEN_2_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PEN_2","display":"inline"},"children":[{"name":"g","attribs":{"id":"PEN_2","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46.721,19.639l-8.446-8.429L12.938,36.498l8.446,8.429L46.721,19.639z\r\n\t\t\t\t M55.167,11.21c1.166-1.164,1.166-3.051,0-4.214l-4.223-4.215c-1.166-1.164-3.057-1.164-4.223,0l-6.334,6.322l8.446,8.429\r\n\t\t\t\tL55.167,11.21z M61,56H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,57.343,62.657,56,61,56z\r\n\t\t\t\t M10.809,38.604L7.998,49.84l11.258-2.806L10.809,38.604z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46.721,19.639l-8.446-8.429L12.938,36.498l8.446,8.429L46.721,19.639z\r\n\t\t\t\t M55.167,11.21c1.166-1.164,1.166-3.051,0-4.214l-4.223-4.215c-1.166-1.164-3.057-1.164-4.223,0l-6.334,6.322l8.446,8.429\r\n\t\t\t\tL55.167,11.21z M61,56H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,57.343,62.657,56,61,56z\r\n\t\t\t\t M10.809,38.604L7.998,49.84l11.258-2.806L10.809,38.604z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"PEN_1_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PEN_1","display":"inline"},"children":[{"name":"g","attribs":{"id":"PEN_1","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M12.938,42.498l8.446,8.429l25.338-25.288l-8.446-8.429L12.938,42.498z\r\n\t\t\t\t M7.998,55.84l11.258-2.806l-8.447-8.431L7.998,55.84z M55.167,12.996l-4.223-4.215c-1.166-1.164-3.057-1.164-4.223,0\r\n\t\t\t\tl-6.334,6.322l8.446,8.429l6.334-6.322C56.333,16.046,56.333,14.159,55.167,12.996z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M12.938,42.498l8.446,8.429l25.338-25.288l-8.446-8.429L12.938,42.498z\r\n\t\t\t\t M7.998,55.84l11.258-2.806l-8.447-8.431L7.998,55.84z M55.167,12.996l-4.223-4.215c-1.166-1.164-3.057-1.164-4.223,0\r\n\t\t\t\tl-6.334,6.322l8.446,8.429l6.334-6.322C56.333,16.046,56.333,14.159,55.167,12.996z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"RESIZE_2_5_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"RESIZE_2","display":"inline"},"children":[{"name":"g","attribs":{"id":"RESIZE_2","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M18,43H6c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h4.757l-9.879,9.879\r\n\t\t\t\tC0.336,59.422,0,60.172,0,61c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L15,53.243V58c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.657,0,3-1.343,3-3V46C21,44.343,19.657,43,18,43z M32,23c-4.971,0-9,4.029-9,9c0,4.971,4.029,9,9,9c4.971,0,9-4.029,9-9\r\n\t\t\t\tC41,27.029,36.971,23,32,23z M64,3c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L49,10.757V6c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-4.757l9.879-9.879\r\n\t\t\t\tC63.664,4.578,64,3.829,64,3z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M18,43H6c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h4.757l-9.879,9.879\r\n\t\t\t\tC0.336,59.422,0,60.172,0,61c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L15,53.243V58c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.657,0,3-1.343,3-3V46C21,44.343,19.657,43,18,43z M32,23c-4.971,0-9,4.029-9,9c0,4.971,4.029,9,9,9c4.971,0,9-4.029,9-9\r\n\t\t\t\tC41,27.029,36.971,23,32,23z M64,3c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L49,10.757V6c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-4.757l9.879-9.879\r\n\t\t\t\tC63.664,4.578,64,3.829,64,3z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"RESIZE_1_5_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"RESIZE_1","display":"inline"},"children":[{"name":"g","attribs":{"id":"RESIZE_1","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M18,43c-0.828,0-1.578,0.336-2.121,0.879L6,53.757V49c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-4.757l9.879-9.879\r\n\t\t\t\tC20.664,47.578,21,46.829,21,46C21,44.343,19.657,43,18,43z M61,0H49c-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757l-9.879,9.879\r\n\t\t\t\tC43.336,16.422,43,17.172,43,18c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L58,10.243V15c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M32,23c-4.971,0-9,4.029-9,9c0,4.971,4.029,9,9,9c4.971,0,9-4.029,9-9\r\n\t\t\t\tC41,27.029,36.971,23,32,23z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M18,43c-0.828,0-1.578,0.336-2.121,0.879L6,53.757V49c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-4.757l9.879-9.879\r\n\t\t\t\tC20.664,47.578,21,46.829,21,46C21,44.343,19.657,43,18,43z M61,0H49c-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757l-9.879,9.879\r\n\t\t\t\tC43.336,16.422,43,17.172,43,18c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L58,10.243V15c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M32,23c-4.971,0-9,4.029-9,9c0,4.971,4.029,9,9,9c4.971,0,9-4.029,9-9\r\n\t\t\t\tC41,27.029,36.971,23,32,23z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"RESIZE_2_4_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"RESIZE_2_1_","display":"inline"},"children":[{"name":"g","attribs":{"id":"RESIZE_2_1_","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,6c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L41,18.757V14\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-4.757\r\n\t\t\t\tL60.121,8.121C60.664,7.579,61,6.828,61,6z M26,35H14c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h4.757L3.879,55.879\r\n\t\t\t\tC3.336,56.422,3,57.172,3,58c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L23,45.243V50c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.657,0,3-1.343,3-3V38C29,36.343,27.657,35,26,35z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,6c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L41,18.757V14\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-4.757\r\n\t\t\t\tL60.121,8.121C60.664,7.579,61,6.828,61,6z M26,35H14c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h4.757L3.879,55.879\r\n\t\t\t\tC3.336,56.422,3,57.172,3,58c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L23,45.243V50c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.657,0,3-1.343,3-3V38C29,36.343,27.657,35,26,35z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"RESIZE_1_4_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"RESIZE_1_1_","display":"inline"},"children":[{"name":"g","attribs":{"id":"RESIZE_1_1_","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26,35c-0.828,0-1.579,0.336-2.121,0.879L9,50.758V46c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-4.757l14.879-14.879\r\n\t\t\t\tC28.664,39.579,29,38.828,29,38C29,36.343,27.657,35,26,35z M58,3H46c-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757L35.879,23.879\r\n\t\t\t\tC35.336,24.422,35,25.172,35,26c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L55,13.243V18c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.657,0,3-1.343,3-3V6C61,4.343,59.657,3,58,3z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26,35c-0.828,0-1.579,0.336-2.121,0.879L9,50.758V46c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-4.757l14.879-14.879\r\n\t\t\t\tC28.664,39.579,29,38.828,29,38C29,36.343,27.657,35,26,35z M58,3H46c-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757L35.879,23.879\r\n\t\t\t\tC35.336,24.422,35,25.172,35,26c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L55,13.243V18c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.657,0,3-1.343,3-3V6C61,4.343,59.657,3,58,3z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"COG_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"COG","display":"inline"},"children":[{"name":"g","attribs":{"id":"COG","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,20c-6.627,0-12,5.372-12,12c0,6.627,5.372,12,12,12s12-5.373,12-12\r\n\t\t\t\tC44,25.373,38.627,20,32,20z M32,38c-3.314,0-6-2.686-6-6c0-3.314,2.686-6,6-6s6,2.686,6,6C38,35.314,35.314,38,32,38z\r\n\t\t\t\t M55.517,25.462c-0.54-1.957-1.326-3.811-2.31-5.536c1.121-1.507,4.981-7.143,2.199-9.926l-1.428-1.507\r\n\t\t\t\tc-2.379-2.378-8.455,1.336-9.93,2.298c-1.745-0.989-3.62-1.774-5.6-2.31c-0.317-1.887-1.704-8.487-5.619-8.487h-1.567\r\n\t\t\t\tc-3.361,0-5.29,6.824-5.721,8.534c-1.952,0.545-3.801,1.334-5.522,2.32C18.661,9.839,12.841,5.816,10,8.656L8.493,9.924\r\n\t\t\t\tc-2.476,2.475,1.638,9.004,2.39,10.147c-0.952,1.698-1.715,3.517-2.241,5.435c-1.641,0.262-8.649,1.614-8.649,5.646v1.566\r\n\t\t\t\tc0,3.493,7.349,5.433,8.69,5.759c0.533,1.904,1.3,3.708,2.255,5.393c-0.791,1.24-4.745,7.74-2.292,10.194l1.427,1.188\r\n\t\t\t\tc3.229,3.229,9.974-2.075,9.974-2.075l-0.314-0.334c1.789,1.058,3.726,1.895,5.773,2.47c0.335,1.378,2.275,8.676,5.755,8.676\r\n\t\t\t\th1.567c4.566,0,5.698-8.52,5.698-8.52l-0.419-0.013c2.07-0.529,4.032-1.325,5.851-2.345c1.426,0.95,7.401,4.689,9.786,2.304\r\n\t\t\t\tl1.587-1.588c3.183-3.183-1.997-9.696-2.142-9.877c0.985-1.722,1.774-3.571,2.317-5.525c1.78-0.452,8.483-2.374,8.483-5.707\r\n\t\t\t\tv-1.566C63.989,26.73,56.015,25.533,55.517,25.462z M32,50c-9.941,0-18-8.059-18-18s8.059-18,18-18s18,8.059,18,18\r\n\t\t\t\tS41.941,50,32,50z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,20c-6.627,0-12,5.372-12,12c0,6.627,5.372,12,12,12s12-5.373,12-12\r\n\t\t\t\tC44,25.373,38.627,20,32,20z M32,38c-3.314,0-6-2.686-6-6c0-3.314,2.686-6,6-6s6,2.686,6,6C38,35.314,35.314,38,32,38z\r\n\t\t\t\t M55.517,25.462c-0.54-1.957-1.326-3.811-2.31-5.536c1.121-1.507,4.981-7.143,2.199-9.926l-1.428-1.507\r\n\t\t\t\tc-2.379-2.378-8.455,1.336-9.93,2.298c-1.745-0.989-3.62-1.774-5.6-2.31c-0.317-1.887-1.704-8.487-5.619-8.487h-1.567\r\n\t\t\t\tc-3.361,0-5.29,6.824-5.721,8.534c-1.952,0.545-3.801,1.334-5.522,2.32C18.661,9.839,12.841,5.816,10,8.656L8.493,9.924\r\n\t\t\t\tc-2.476,2.475,1.638,9.004,2.39,10.147c-0.952,1.698-1.715,3.517-2.241,5.435c-1.641,0.262-8.649,1.614-8.649,5.646v1.566\r\n\t\t\t\tc0,3.493,7.349,5.433,8.69,5.759c0.533,1.904,1.3,3.708,2.255,5.393c-0.791,1.24-4.745,7.74-2.292,10.194l1.427,1.188\r\n\t\t\t\tc3.229,3.229,9.974-2.075,9.974-2.075l-0.314-0.334c1.789,1.058,3.726,1.895,5.773,2.47c0.335,1.378,2.275,8.676,5.755,8.676\r\n\t\t\t\th1.567c4.566,0,5.698-8.52,5.698-8.52l-0.419-0.013c2.07-0.529,4.032-1.325,5.851-2.345c1.426,0.95,7.401,4.689,9.786,2.304\r\n\t\t\t\tl1.587-1.588c3.183-3.183-1.997-9.696-2.142-9.877c0.985-1.722,1.774-3.571,2.317-5.525c1.78-0.452,8.483-2.374,8.483-5.707\r\n\t\t\t\tv-1.566C63.989,26.73,56.015,25.533,55.517,25.462z M32,50c-9.941,0-18-8.059-18-18s8.059-18,18-18s18,8.059,18,18\r\n\t\t\t\tS41.941,50,32,50z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"WARNING_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"WARNING","display":"inline"},"children":[{"name":"g","attribs":{"id":"WARNING","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M63.563,53.463l0.017-0.011l-29-47l-0.017,0.01C34.039,5.59,33.092,5,32,5\r\n\t\t\t\tc-1.052,0-1.973,0.543-2.509,1.362l-0.017-0.01l-29,47l0.017,0.01C0.183,53.834,0,54.395,0,55c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.009,0,0.018-0.003,0.027-0.003v0.03h58v-0.03C62.671,57.982,64,56.648,64,55C64,54.435,63.835,53.914,63.563,53.463z M32,52\r\n\t\t\t\tc-2.209,0-4-1.791-4-4c0-2.209,1.791-4,4-4s4,1.791,4,4C36,50.209,34.209,52,32,52z M36,37c0,2.209-1.791,4-4,4s-4-1.791-4-4V22\r\n\t\t\t\tc0-2.209,1.791-4,4-4s4,1.791,4,4V37z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M63.563,53.463l0.017-0.011l-29-47l-0.017,0.01C34.039,5.59,33.092,5,32,5\r\n\t\t\t\tc-1.052,0-1.973,0.543-2.509,1.362l-0.017-0.01l-29,47l0.017,0.01C0.183,53.834,0,54.395,0,55c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.009,0,0.018-0.003,0.027-0.003v0.03h58v-0.03C62.671,57.982,64,56.648,64,55C64,54.435,63.835,53.914,63.563,53.463z M32,52\r\n\t\t\t\tc-2.209,0-4-1.791-4-4c0-2.209,1.791-4,4-4s4,1.791,4,4C36,50.209,34.209,52,32,52z M36,37c0,2.209-1.791,4-4,4s-4-1.791-4-4V22\r\n\t\t\t\tc0-2.209,1.791-4,4-4s4,1.791,4,4V37z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"REPEAT_2_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"REPEAT_2","display":"inline"},"children":[{"name":"g","attribs":{"id":"REPEAT_2","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,29c-1.657,0-3,1.343-3,3c0,14.359-11.641,26-26,26\r\n\t\t\t\tc-8.768,0-16.506-4.347-21.207-11H16c1.657,0,3-1.343,3-3s-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.657,0,3-1.343,3-3v-5.454C11.789,58.679,21.254,64,32,64c17.673,0,32-14.327,32-32C64,30.343,62.657,29,61,29z M61,5\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v5.412C52.204,5.299,42.733,0,32,0C14.327,0,0,14.327,0,32c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3\r\n\t\t\t\tC6,17.641,17.641,6,32,6c8.76,0,16.469,4.355,21.167,11H48c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h13c1.657,0,3-1.343,3-3V8\r\n\t\t\t\tC64,6.343,62.657,5,61,5z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,29c-1.657,0-3,1.343-3,3c0,14.359-11.641,26-26,26\r\n\t\t\t\tc-8.768,0-16.506-4.347-21.207-11H16c1.657,0,3-1.343,3-3s-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.657,0,3-1.343,3-3v-5.454C11.789,58.679,21.254,64,32,64c17.673,0,32-14.327,32-32C64,30.343,62.657,29,61,29z M61,5\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v5.412C52.204,5.299,42.733,0,32,0C14.327,0,0,14.327,0,32c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3\r\n\t\t\t\tC6,17.641,17.641,6,32,6c8.76,0,16.469,4.355,21.167,11H48c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h13c1.657,0,3-1.343,3-3V8\r\n\t\t\t\tC64,6.343,62.657,5,61,5z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"REPEAT_1_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"REPEAT_1","display":"inline"},"children":[{"name":"g","attribs":{"id":"REPEAT_1","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M45,20c0,1.657,1.343,3,3,3h13c1.657,0,3-1.343,3-3V8c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v5.39C52.199,5.288,42.725,0,32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3c0,14.359-11.641,26-26,26C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6c8.769,0,16.512,4.348,21.218,11H48C46.343,17,45,18.343,45,20z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M45,20c0,1.657,1.343,3,3,3h13c1.657,0,3-1.343,3-3V8c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v5.39C52.199,5.288,42.725,0,32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3c0,14.359-11.641,26-26,26C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6c8.769,0,16.512,4.348,21.218,11H48C46.343,17,45,18.343,45,20z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"ARROW_2_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ARROW_2","display":"inline"},"children":[{"name":"g","attribs":{"id":"ARROW_2","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M63.137,17.884l-7-7c-0.543-0.543-1.293-0.879-2.121-0.879\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L53.768,17H45c-0.828,0-1.578,0.336-2.121,0.879L11.757,49H9v0H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h10c0.828,0,1.578-0.336,2.121-0.879L46.243,23H52v0.005h1.773l-1.879,1.879\r\n\t\t\t\tc-0.543,0.543-0.879,1.293-0.879,2.121c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879l7-7\r\n\t\t\t\tc0.543-0.543,0.879-1.293,0.879-2.121C64.016,19.177,63.68,18.427,63.137,17.884z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M63.137,17.884l-7-7c-0.543-0.543-1.293-0.879-2.121-0.879\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L53.768,17H45c-0.828,0-1.578,0.336-2.121,0.879L11.757,49H9v0H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h10c0.828,0,1.578-0.336,2.121-0.879L46.243,23H52v0.005h1.773l-1.879,1.879\r\n\t\t\t\tc-0.543,0.543-0.879,1.293-0.879,2.121c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879l7-7\r\n\t\t\t\tc0.543-0.543,0.879-1.293,0.879-2.121C64.016,19.177,63.68,18.427,63.137,17.884z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"ARROW_1_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ARROW_1","display":"inline"},"children":[{"name":"g","attribs":{"id":"ARROW_1","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M63.122,42.878l-6.998-7.001c-0.543-0.543-1.293-0.879-2.121-0.879\r\n\t\t\t\tc-1.657,0-2.999,1.343-2.999,3c0,0.829,0.336,1.579,0.879,2.122l1.878,1.879h-1.773v0.005h-2.999v0h-2.757L15.118,10.879\r\n\t\t\t\tC14.575,10.336,13.825,10,12.997,10H2.999C1.343,10,0,11.343,0,13.001c0,1.657,1.343,3,2.999,3h8.755l31.114,31.126\r\n\t\t\t\tc0.543,0.543,1.293,0.879,2.121,0.879h8.766l-1.873,1.874c-0.543,0.543-0.879,1.293-0.879,2.122c0,1.657,1.343,3,2.999,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l6.998-7.001C63.664,46.578,64,45.828,64,45C64,44.171,63.664,43.421,63.122,42.878z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M63.122,42.878l-6.998-7.001c-0.543-0.543-1.293-0.879-2.121-0.879\r\n\t\t\t\tc-1.657,0-2.999,1.343-2.999,3c0,0.829,0.336,1.579,0.879,2.122l1.878,1.879h-1.773v0.005h-2.999v0h-2.757L15.118,10.879\r\n\t\t\t\tC14.575,10.336,13.825,10,12.997,10H2.999C1.343,10,0,11.343,0,13.001c0,1.657,1.343,3,2.999,3h8.755l31.114,31.126\r\n\t\t\t\tc0.543,0.543,1.293,0.879,2.121,0.879h8.766l-1.873,1.874c-0.543,0.543-0.879,1.293-0.879,2.122c0,1.657,1.343,3,2.999,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l6.998-7.001C63.664,46.578,64,45.828,64,45C64,44.171,63.664,43.421,63.122,42.878z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SHUFFLE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SHUFFLE","display":"inline"},"children":[{"name":"g","attribs":{"id":"SHUFFLE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M3,19h8.757l10.879,10.879l4.243-4.243L15.121,13.879\r\n\t\t\t\tC14.578,13.336,13.828,13,13,13H3c-1.657,0-3,1.343-3,3S1.343,19,3,19z M52,19v0.005h1.773l-1.879,1.879\r\n\t\t\t\tc-0.543,0.543-0.879,1.293-0.879,2.121c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879l7-7\r\n\t\t\t\tc0.543-0.543,0.879-1.293,0.879-2.121c0-0.828-0.336-1.578-0.879-2.121l-7-7c-0.543-0.543-1.293-0.879-2.121-0.879\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L53.768,13H45c-0.828,0-1.578,0.336-2.121,0.879L11.757,45H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h10c0.828,0,1.578-0.336,2.121-0.879L46.243,19H52z M56.137,38.874\r\n\t\t\t\tc-0.543-0.543-1.293-0.879-2.121-0.879c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l1.879,1.879H52V45h-5.757\r\n\t\t\t\tL35.364,34.121l-4.243,4.242l11.757,11.758C43.422,50.664,44.172,51,45,51h8.768l-1.873,1.874\r\n\t\t\t\tc-0.543,0.543-0.879,1.293-0.879,2.121c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879l7-7\r\n\t\t\t\tc0.543-0.543,0.879-1.293,0.879-2.121s-0.336-1.578-0.879-2.121L56.137,38.874z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M3,19h8.757l10.879,10.879l4.243-4.243L15.121,13.879\r\n\t\t\t\tC14.578,13.336,13.828,13,13,13H3c-1.657,0-3,1.343-3,3S1.343,19,3,19z M52,19v0.005h1.773l-1.879,1.879\r\n\t\t\t\tc-0.543,0.543-0.879,1.293-0.879,2.121c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879l7-7\r\n\t\t\t\tc0.543-0.543,0.879-1.293,0.879-2.121c0-0.828-0.336-1.578-0.879-2.121l-7-7c-0.543-0.543-1.293-0.879-2.121-0.879\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L53.768,13H45c-0.828,0-1.578,0.336-2.121,0.879L11.757,45H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h10c0.828,0,1.578-0.336,2.121-0.879L46.243,19H52z M56.137,38.874\r\n\t\t\t\tc-0.543-0.543-1.293-0.879-2.121-0.879c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l1.879,1.879H52V45h-5.757\r\n\t\t\t\tL35.364,34.121l-4.243,4.242l11.757,11.758C43.422,50.664,44.172,51,45,51h8.768l-1.873,1.874\r\n\t\t\t\tc-0.543,0.543-0.879,1.293-0.879,2.121c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879l7-7\r\n\t\t\t\tc0.543-0.543,0.879-1.293,0.879-2.121s-0.336-1.578-0.879-2.121L56.137,38.874z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"RESIZE_2_3_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"RESIZE_2_2_","display":"inline"},"children":[{"name":"g","attribs":{"id":"RESIZE_2_2_","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26,35H14c-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757L3.843,55.914l0.003,0.003\r\n\t\t\t\tC3.325,56.457,3,57.19,3,58c0,1.657,1.343,3,3,3c0.81,0,1.543-0.325,2.082-0.847l0.003,0.003L23,45.243V50c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3V38C29,36.343,27.657,35,26,35z M38,29h12c1.657,0,3-1.343,3-3s-1.343-3-3-3h-4.757L60.157,8.086l-0.003-0.003\r\n\t\t\t\tC60.676,7.543,61,6.81,61,6c0-1.657-1.343-3-3-3c-0.81,0-1.543,0.325-2.083,0.847l-0.003-0.003L41,18.758V14c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v12C35,27.657,36.343,29,38,29z M60.157,55.914L45.243,41H50c1.657,0,3-1.343,3-3s-1.343-3-3-3H38\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3s3-1.343,3-3v-4.757l14.914,14.914l0.003-0.003C56.457,60.676,57.19,61,58,61\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.81-0.325-1.543-0.847-2.083L60.157,55.914z M26,11c-1.657,0-3,1.343-3,3v4.757L8.086,3.843L8.083,3.847\r\n\t\t\t\tC7.543,3.325,6.81,3,6,3C4.343,3,3,4.343,3,6c0,0.81,0.325,1.543,0.847,2.082L3.843,8.086L18.757,23H14c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h12c1.657,0,3-1.343,3-3V14C29,12.343,27.657,11,26,11z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26,35H14c-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757L3.843,55.914l0.003,0.003\r\n\t\t\t\tC3.325,56.457,3,57.19,3,58c0,1.657,1.343,3,3,3c0.81,0,1.543-0.325,2.082-0.847l0.003,0.003L23,45.243V50c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3V38C29,36.343,27.657,35,26,35z M38,29h12c1.657,0,3-1.343,3-3s-1.343-3-3-3h-4.757L60.157,8.086l-0.003-0.003\r\n\t\t\t\tC60.676,7.543,61,6.81,61,6c0-1.657-1.343-3-3-3c-0.81,0-1.543,0.325-2.083,0.847l-0.003-0.003L41,18.758V14c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v12C35,27.657,36.343,29,38,29z M60.157,55.914L45.243,41H50c1.657,0,3-1.343,3-3s-1.343-3-3-3H38\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3s3-1.343,3-3v-4.757l14.914,14.914l0.003-0.003C56.457,60.676,57.19,61,58,61\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.81-0.325-1.543-0.847-2.083L60.157,55.914z M26,11c-1.657,0-3,1.343-3,3v4.757L8.086,3.843L8.083,3.847\r\n\t\t\t\tC7.543,3.325,6.81,3,6,3C4.343,3,3,4.343,3,6c0,0.81,0.325,1.543,0.847,2.082L3.843,8.086L18.757,23H14c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h12c1.657,0,3-1.343,3-3V14C29,12.343,27.657,11,26,11z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"RESIZE_1_3_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"RESIZE_1_2_","display":"inline"},"children":[{"name":"g","attribs":{"id":"RESIZE_1_2_","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M28.157,23.914L13.243,9H18c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H6\r\n\t\t\t\tC4.343,3,3,4.343,3,6v12c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-4.757l14.914,14.914l0.003-0.003\r\n\t\t\t\tC24.457,28.676,25.19,29,26,29c1.657,0,3-1.343,3-3c0-0.81-0.324-1.543-0.847-2.083L28.157,23.914z M26,35\r\n\t\t\t\tc-0.81,0-1.543,0.325-2.082,0.847l-0.003-0.003L9,50.757V46c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-4.757l14.914-14.914l-0.003-0.003C28.676,39.543,29,38.81,29,38\r\n\t\t\t\tC29,36.343,27.657,35,26,35z M58,43c-1.657,0-3,1.343-3,3v4.757L40.086,35.843l-0.003,0.003C39.543,35.325,38.81,35,38,35\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.81,0.324,1.543,0.847,2.083l-0.003,0.003L50.757,55H46c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12\r\n\t\t\t\tc1.657,0,3-1.343,3-3V46C61,44.343,59.657,43,58,43z M58,3H46c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h4.757L35.843,23.914\r\n\t\t\t\tl0.003,0.003C35.325,24.457,35,25.19,35,26c0,1.657,1.343,3,3,3c0.81,0,1.543-0.325,2.083-0.847l0.003,0.003L55,13.243V18\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3V6C61,4.343,59.657,3,58,3z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M28.157,23.914L13.243,9H18c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H6\r\n\t\t\t\tC4.343,3,3,4.343,3,6v12c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-4.757l14.914,14.914l0.003-0.003\r\n\t\t\t\tC24.457,28.676,25.19,29,26,29c1.657,0,3-1.343,3-3c0-0.81-0.324-1.543-0.847-2.083L28.157,23.914z M26,35\r\n\t\t\t\tc-0.81,0-1.543,0.325-2.082,0.847l-0.003-0.003L9,50.757V46c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-4.757l14.914-14.914l-0.003-0.003C28.676,39.543,29,38.81,29,38\r\n\t\t\t\tC29,36.343,27.657,35,26,35z M58,43c-1.657,0-3,1.343-3,3v4.757L40.086,35.843l-0.003,0.003C39.543,35.325,38.81,35,38,35\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.81,0.324,1.543,0.847,2.083l-0.003,0.003L50.757,55H46c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12\r\n\t\t\t\tc1.657,0,3-1.343,3-3V46C61,44.343,59.657,43,58,43z M58,3H46c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h4.757L35.843,23.914\r\n\t\t\t\tl0.003,0.003C35.325,24.457,35,25.19,35,26c0,1.657,1.343,3,3,3c0.81,0,1.543-0.325,2.083-0.847l0.003,0.003L55,13.243V18\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3V6C61,4.343,59.657,3,58,3z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"ARROWS_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ARROWS","display":"inline"},"children":[{"name":"g","attribs":{"id":"ARROWS","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M64,32c0-0.885-0.383-1.681-0.993-2.23l0,0l-10-9l0,0\r\n\t\t\t\tC52.475,20.292,51.772,20,51,20c-1.657,0-3,1.343-3,3c0,0.885,0.384,1.681,0.993,2.23l0,0L53.182,29H35V10.818l3.77,4.189l0,0\r\n\t\t\t\tC39.319,15.616,40.115,16,41,16c1.657,0,3-1.343,3-3c0-0.772-0.292-1.475-0.77-2.007l0,0l-9-10l0,0C33.681,0.384,32.885,0,32,0\r\n\t\t\t\tc-0.885,0-1.681,0.384-2.23,0.993l0,0l-9,10l0,0C20.292,11.525,20,12.228,20,13c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.885,0,1.68-0.384,2.23-0.993l0,0L29,10.818V29H10.818l4.189-3.77l0,0C15.617,24.681,16,23.885,16,23c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.772,0-1.475,0.292-2.007,0.77l0,0l-10,9l0,0C0.384,30.319,0,31.115,0,32c0,0.885,0.384,1.68,0.993,2.23l0,0l10,9l0,0\r\n\t\t\t\tC11.525,43.709,12.228,44,13,44c1.657,0,3-1.343,3-3c0-0.885-0.384-1.68-0.993-2.23l0,0L10.818,35H29v18.182l-3.77-4.189l0,0\r\n\t\t\t\tC24.681,48.384,23.885,48,23,48c-1.657,0-3,1.343-3,3c0,0.772,0.292,1.475,0.77,2.007l0,0l9,10l0,0\r\n\t\t\t\tC30.319,63.617,31.115,64,32,64c0.885,0,1.681-0.383,2.23-0.993l0,0l9-10l0,0C43.708,52.475,44,51.772,44,51c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.885,0-1.681,0.384-2.23,0.993l0,0L35,53.182V35h18.182l-4.189,3.77l0,0C48.384,39.32,48,40.115,48,41c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.772,0,1.475-0.292,2.007-0.77l0,0l10-9l0,0C63.617,33.681,64,32.885,64,32z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M64,32c0-0.885-0.383-1.681-0.993-2.23l0,0l-10-9l0,0\r\n\t\t\t\tC52.475,20.292,51.772,20,51,20c-1.657,0-3,1.343-3,3c0,0.885,0.384,1.681,0.993,2.23l0,0L53.182,29H35V10.818l3.77,4.189l0,0\r\n\t\t\t\tC39.319,15.616,40.115,16,41,16c1.657,0,3-1.343,3-3c0-0.772-0.292-1.475-0.77-2.007l0,0l-9-10l0,0C33.681,0.384,32.885,0,32,0\r\n\t\t\t\tc-0.885,0-1.681,0.384-2.23,0.993l0,0l-9,10l0,0C20.292,11.525,20,12.228,20,13c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.885,0,1.68-0.384,2.23-0.993l0,0L29,10.818V29H10.818l4.189-3.77l0,0C15.617,24.681,16,23.885,16,23c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.772,0-1.475,0.292-2.007,0.77l0,0l-10,9l0,0C0.384,30.319,0,31.115,0,32c0,0.885,0.384,1.68,0.993,2.23l0,0l10,9l0,0\r\n\t\t\t\tC11.525,43.709,12.228,44,13,44c1.657,0,3-1.343,3-3c0-0.885-0.384-1.68-0.993-2.23l0,0L10.818,35H29v18.182l-3.77-4.189l0,0\r\n\t\t\t\tC24.681,48.384,23.885,48,23,48c-1.657,0-3,1.343-3,3c0,0.772,0.292,1.475,0.77,2.007l0,0l9,10l0,0\r\n\t\t\t\tC30.319,63.617,31.115,64,32,64c0.885,0,1.681-0.383,2.23-0.993l0,0l9-10l0,0C43.708,52.475,44,51.772,44,51c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.885,0-1.681,0.384-2.23,0.993l0,0L35,53.182V35h18.182l-4.189,3.77l0,0C48.384,39.32,48,40.115,48,41c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.772,0,1.475-0.292,2.007-0.77l0,0l10-9l0,0C63.617,33.681,64,32.885,64,32z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"ARROWS_HORIZONTAL_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ARROWS_HORIZONTAL","display":"inline"},"children":[{"name":"g","attribs":{"id":"ARROWS_HORIZONTAL","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M64,32c0-0.885-0.384-1.681-0.993-2.23l0,0l-10-9l0,0\r\n\t\t\t\tC52.475,20.292,51.772,20,51,20c-1.657,0-3,1.343-3,3c0,0.885,0.383,1.681,0.993,2.23l0,0L53.182,29H10.818l4.189-3.77l0,0\r\n\t\t\t\tC15.617,24.681,16,23.885,16,23c0-1.657-1.343-3-3-3c-0.772,0-1.475,0.292-2.007,0.77l0,0l-10,9l0,0C0.384,30.319,0,31.115,0,32\r\n\t\t\t\tc0,0.885,0.383,1.68,0.993,2.23l0,0l10,9l0,0C11.525,43.709,12.228,44,13,44c1.657,0,3-1.343,3-3c0-0.885-0.383-1.68-0.993-2.23\r\n\t\t\t\tl0,0L10.818,35h42.364l-4.189,3.77l0,0C48.384,39.32,48,40.115,48,41c0,1.657,1.343,3,3,3c0.772,0,1.475-0.292,2.007-0.77l0,0\r\n\t\t\t\tl10-9l0,0C63.617,33.681,64,32.885,64,32z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M64,32c0-0.885-0.384-1.681-0.993-2.23l0,0l-10-9l0,0\r\n\t\t\t\tC52.475,20.292,51.772,20,51,20c-1.657,0-3,1.343-3,3c0,0.885,0.383,1.681,0.993,2.23l0,0L53.182,29H10.818l4.189-3.77l0,0\r\n\t\t\t\tC15.617,24.681,16,23.885,16,23c0-1.657-1.343-3-3-3c-0.772,0-1.475,0.292-2.007,0.77l0,0l-10,9l0,0C0.384,30.319,0,31.115,0,32\r\n\t\t\t\tc0,0.885,0.383,1.68,0.993,2.23l0,0l10,9l0,0C11.525,43.709,12.228,44,13,44c1.657,0,3-1.343,3-3c0-0.885-0.383-1.68-0.993-2.23\r\n\t\t\t\tl0,0L10.818,35h42.364l-4.189,3.77l0,0C48.384,39.32,48,40.115,48,41c0,1.657,1.343,3,3,3c0.772,0,1.475-0.292,2.007-0.77l0,0\r\n\t\t\t\tl10-9l0,0C63.617,33.681,64,32.885,64,32z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"ARROWS_VERTICAL_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ARROWS_VERTICAL","display":"inline"},"children":[{"name":"g","attribs":{"id":"ARROWS_VERTICAL","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M41,48c-0.885,0-1.681,0.384-2.23,0.993l0,0L35,53.182V10.818l3.77,4.189l0,0\r\n\t\t\t\tC39.319,15.616,40.115,16,41,16c1.657,0,3-1.343,3-3c0-0.772-0.292-1.475-0.77-2.007l0,0l-9-10l0,0C33.681,0.384,32.885,0,32,0\r\n\t\t\t\tc-0.885,0-1.681,0.384-2.23,0.993l0,0l-9,10l0,0C20.292,11.525,20,12.228,20,13c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.885,0,1.681-0.384,2.23-0.993l0,0L29,10.818v42.364l-3.77-4.189l0,0C24.681,48.384,23.885,48,23,48c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.772,0.292,1.475,0.77,2.007l0,0l9,10l0,0C30.319,63.617,31.115,64,32,64c0.885,0,1.681-0.383,2.23-0.993l0,0l9-10l0,0\r\n\t\t\t\tC43.708,52.475,44,51.772,44,51C44,49.343,42.657,48,41,48z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M41,48c-0.885,0-1.681,0.384-2.23,0.993l0,0L35,53.182V10.818l3.77,4.189l0,0\r\n\t\t\t\tC39.319,15.616,40.115,16,41,16c1.657,0,3-1.343,3-3c0-0.772-0.292-1.475-0.77-2.007l0,0l-9-10l0,0C33.681,0.384,32.885,0,32,0\r\n\t\t\t\tc-0.885,0-1.681,0.384-2.23,0.993l0,0l-9,10l0,0C20.292,11.525,20,12.228,20,13c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.885,0,1.681-0.384,2.23-0.993l0,0L29,10.818v42.364l-3.77-4.189l0,0C24.681,48.384,23.885,48,23,48c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.772,0.292,1.475,0.77,2.007l0,0l9,10l0,0C30.319,63.617,31.115,64,32,64c0.885,0,1.681-0.383,2.23-0.993l0,0l9-10l0,0\r\n\t\t\t\tC43.708,52.475,44,51.772,44,51C44,49.343,42.657,48,41,48z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"ARROWS__x2F__VERTICAL_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ARROWS__x2F__VERTICAL","display":"inline"},"children":[{"name":"g","attribs":{"id":"ARROWS__x2F__VERTICAL","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M57,51c0-1.657-1.343-3-3-3c-0.885,0-1.673,0.391-2.222,1l-0.008-0.007\r\n\t\t\t\tL48,53.182V29c0,0,0,0,0,0V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v7.818l0,0V26h0v13h0v14.182l-3.77-4.189L38.222,49\r\n\t\t\t\tc-0.549-0.61-1.337-1-2.222-1c-1.657,0-3,1.343-3,3c0,0.772,0.3,1.468,0.778,2l-0.008,0.007l9,10L42.778,63\r\n\t\t\t\tc0.549,0.61,1.337,1,2.222,1c0.885,0,1.672-0.391,2.222-1l0.008,0.007l9-10L56.222,53C56.701,52.468,57,51.772,57,51z\r\n\t\t\t\t M30.23,10.993l-9-10l-0.008,0.007C20.673,0.391,19.885,0,19,0c-0.885,0-1.673,0.391-2.222,1.001L16.77,0.993l-9,10l0.008,0.007\r\n\t\t\t\tC7.3,11.532,7,12.228,7,13c0,1.657,1.343,3,3,3c0.885,0,1.673-0.391,2.222-1l0.008,0.007L16,10.818V25h0v13h0v15.182h0V61\r\n\t\t\t\tc0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V29c0,0,0,0,0,0V10.818l3.77,4.189L25.778,15c0.549,0.61,1.337,1,2.222,1\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.772-0.299-1.468-0.778-2L30.23,10.993z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M57,51c0-1.657-1.343-3-3-3c-0.885,0-1.673,0.391-2.222,1l-0.008-0.007\r\n\t\t\t\tL48,53.182V29c0,0,0,0,0,0V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v7.818l0,0V26h0v13h0v14.182l-3.77-4.189L38.222,49\r\n\t\t\t\tc-0.549-0.61-1.337-1-2.222-1c-1.657,0-3,1.343-3,3c0,0.772,0.3,1.468,0.778,2l-0.008,0.007l9,10L42.778,63\r\n\t\t\t\tc0.549,0.61,1.337,1,2.222,1c0.885,0,1.672-0.391,2.222-1l0.008,0.007l9-10L56.222,53C56.701,52.468,57,51.772,57,51z\r\n\t\t\t\t M30.23,10.993l-9-10l-0.008,0.007C20.673,0.391,19.885,0,19,0c-0.885,0-1.673,0.391-2.222,1.001L16.77,0.993l-9,10l0.008,0.007\r\n\t\t\t\tC7.3,11.532,7,12.228,7,13c0,1.657,1.343,3,3,3c0.885,0,1.673-0.391,2.222-1l0.008,0.007L16,10.818V25h0v13h0v15.182h0V61\r\n\t\t\t\tc0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V29c0,0,0,0,0,0V10.818l3.77,4.189L25.778,15c0.549,0.61,1.337,1,2.222,1\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.772-0.299-1.468-0.778-2L30.23,10.993z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"ARROWS__x2F__HORIZONTAL_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ARROWS__x2F__HORIZONTAL","display":"inline"},"children":[{"name":"g","attribs":{"id":"ARROWS__x2F__HORIZONTAL","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M3,22h32c0,0,0,0,0,0h18.182l-4.189,3.77L49,25.779\r\n\t\t\t\tc-0.61,0.549-1,1.336-1,2.222c0,1.657,1.343,3,3,3c0.772,0,1.468-0.299,2-0.778l0.007,0.008l10-9L63,21.222\r\n\t\t\t\tc0.61-0.549,1-1.337,1-2.222c0-0.885-0.391-1.673-1-2.222l0.007-0.008l-10-9L53,7.778C52.468,7.3,51.772,7,51,7\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.885,0.391,1.673,1,2.222l-0.007,0.008L53.182,16H39v0H26v0H10.818l0,0H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC0,20.657,1.343,22,3,22z M61,42h-7.818l0,0H38v0H25v0H10.818l4.189-3.77L15,38.222c0.61-0.549,1-1.336,1-2.222\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.772,0-1.468,0.3-2,0.778l-0.007-0.008l-10,9L1,42.778C0.391,43.328,0,44.115,0,45\r\n\t\t\t\tc0,0.885,0.391,1.672,1,2.222L0.993,47.23l10,9L11,56.222C11.532,56.701,12.229,57,13,57c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.885-0.391-1.673-1-2.222l0.007-0.008L10.818,48H35c0,0,0,0,0,0h26c1.657,0,3-1.343,3-3C64,43.343,62.657,42,61,42z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M3,22h32c0,0,0,0,0,0h18.182l-4.189,3.77L49,25.779\r\n\t\t\t\tc-0.61,0.549-1,1.336-1,2.222c0,1.657,1.343,3,3,3c0.772,0,1.468-0.299,2-0.778l0.007,0.008l10-9L63,21.222\r\n\t\t\t\tc0.61-0.549,1-1.337,1-2.222c0-0.885-0.391-1.673-1-2.222l0.007-0.008l-10-9L53,7.778C52.468,7.3,51.772,7,51,7\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.885,0.391,1.673,1,2.222l-0.007,0.008L53.182,16H39v0H26v0H10.818l0,0H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC0,20.657,1.343,22,3,22z M61,42h-7.818l0,0H38v0H25v0H10.818l4.189-3.77L15,38.222c0.61-0.549,1-1.336,1-2.222\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.772,0-1.468,0.3-2,0.778l-0.007-0.008l-10,9L1,42.778C0.391,43.328,0,44.115,0,45\r\n\t\t\t\tc0,0.885,0.391,1.672,1,2.222L0.993,47.23l10,9L11,56.222C11.532,56.701,12.229,57,13,57c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.885-0.391-1.673-1-2.222l0.007-0.008L10.818,48H35c0,0,0,0,0,0h26c1.657,0,3-1.343,3-3C64,43.343,62.657,42,61,42z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SHARE_2_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SHARE_2","display":"inline"},"children":[{"name":"g","attribs":{"id":"SHARE_2","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M23,16c0.885,0,1.673-0.39,2.222-1l0.008,0.007L29,10.818V29\r\n\t\t\t\tc0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V10.818l3.77,4.189L38.778,15c0.549,0.61,1.337,1,2.222,1c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.772-0.299-1.468-0.778-2l0.008-0.007l-9-10L34.222,1C33.673,0.391,32.885,0,32,0c-0.885,0-1.673,0.39-2.222,1L29.77,0.993\r\n\t\t\t\tl-9,10L20.778,11C20.3,11.532,20,12.228,20,13C20,14.657,21.343,16,23,16z M51,20H38v6h10v32H16V26h9v-6H13c-1.657,0-3,1.343-3,3\r\n\t\t\t\tv38c0,1.657,1.343,3,3,3h38c1.657,0,3-1.343,3-3V23C54,21.343,52.657,20,51,20z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M23,16c0.885,0,1.673-0.39,2.222-1l0.008,0.007L29,10.818V29\r\n\t\t\t\tc0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V10.818l3.77,4.189L38.778,15c0.549,0.61,1.337,1,2.222,1c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.772-0.299-1.468-0.778-2l0.008-0.007l-9-10L34.222,1C33.673,0.391,32.885,0,32,0c-0.885,0-1.673,0.39-2.222,1L29.77,0.993\r\n\t\t\t\tl-9,10L20.778,11C20.3,11.532,20,12.228,20,13C20,14.657,21.343,16,23,16z M51,20H38v6h10v32H16V26h9v-6H13c-1.657,0-3,1.343-3,3\r\n\t\t\t\tv38c0,1.657,1.343,3,3,3h38c1.657,0,3-1.343,3-3V23C54,21.343,52.657,20,51,20z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SHARE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SHARE","display":"inline"},"children":[{"name":"g","attribs":{"id":"SHARE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M52,26.168V52H12V12h25.832C37.317,11.114,37,10.098,37,9\r\n\t\t\t\tc0-1.099,0.317-2.114,0.832-3H9C7.343,6,6,7.343,6,9v46c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V26.168\r\n\t\t\t\tC57.114,26.683,56.099,27,55,27C53.902,27,52.886,26.683,52,26.168z M55,6H43c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h4.757\r\n\t\t\t\tL32.843,26.914l0.003,0.003C32.325,27.457,32,28.19,32,29c0,1.657,1.343,3,3,3c0.81,0,1.543-0.325,2.082-0.847l0.003,0.003\r\n\t\t\t\tL52,16.243V21c0,1.657,1.343,3,2.999,3h0.001C56.657,24,58,22.657,58,21V9C58,7.343,56.657,6,55,6z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M52,26.168V52H12V12h25.832C37.317,11.114,37,10.098,37,9\r\n\t\t\t\tc0-1.099,0.317-2.114,0.832-3H9C7.343,6,6,7.343,6,9v46c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V26.168\r\n\t\t\t\tC57.114,26.683,56.099,27,55,27C53.902,27,52.886,26.683,52,26.168z M55,6H43c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h4.757\r\n\t\t\t\tL32.843,26.914l0.003,0.003C32.325,27.457,32,28.19,32,29c0,1.657,1.343,3,3,3c0.81,0,1.543-0.325,2.082-0.847l0.003,0.003\r\n\t\t\t\tL52,16.243V21c0,1.657,1.343,3,2.999,3h0.001C56.657,24,58,22.657,58,21V9C58,7.343,56.657,6,55,6z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SCREEN_EXPAND_3_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SCREEN_EXPAND_3","display":"inline"},"children":[{"name":"g","attribs":{"id":"SCREEN_EXPAND_3","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M3,18c1.657,0,3-1.343,3-3V6h9v0c1.657,0,3-1.343,3-3s-1.343-3-3-3H3\r\n\t\t\t\tC1.343,0,0,1.343,0,3v12c0,0,0,0,0,0C0,16.657,1.343,18,3,18z M9,55h46V9H9V55z M15,15h34v34H15V15z M61,46c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0,0,0,0,0v9h-9c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3V49C64,47.343,62.657,46,61,46z M15,58H6v-9\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3l0,0v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3C18,59.343,16.657,58,15,58z M61,0H49\r\n\t\t\t\tc0,0,0,0,0,0c-1.657,0-3,1.343-3,3s1.343,3,3,3v0h9v9c0,0,0,0,0,0c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M3,18c1.657,0,3-1.343,3-3V6h9v0c1.657,0,3-1.343,3-3s-1.343-3-3-3H3\r\n\t\t\t\tC1.343,0,0,1.343,0,3v12c0,0,0,0,0,0C0,16.657,1.343,18,3,18z M9,55h46V9H9V55z M15,15h34v34H15V15z M61,46c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0,0,0,0,0v9h-9c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3V49C64,47.343,62.657,46,61,46z M15,58H6v-9\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3l0,0v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3C18,59.343,16.657,58,15,58z M61,0H49\r\n\t\t\t\tc0,0,0,0,0,0c-1.657,0-3,1.343-3,3s1.343,3,3,3v0h9v9c0,0,0,0,0,0c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SCREEN_EXPAND_2_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SCREEN_EXPAND_2","display":"inline"},"children":[{"name":"g","attribs":{"id":"SCREEN_EXPAND_2","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M15,6c1.657,0,3-1.343,3-3s-1.343-3-3-3c0,0,0,0,0,0H3C1.343,0,0,1.343,0,3v12\r\n\t\t\t\tc0,0,0,0,0,0c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V6L15,6L15,6z M64,49c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0,0,0,0,0v9h-9c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3L64,49L64,49z M55,9H9v46h46V9z M49,49H15V15\r\n\t\t\t\th34V49z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M15,6c1.657,0,3-1.343,3-3s-1.343-3-3-3c0,0,0,0,0,0H3C1.343,0,0,1.343,0,3v12\r\n\t\t\t\tc0,0,0,0,0,0c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V6L15,6L15,6z M64,49c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0,0,0,0,0v9h-9c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3L64,49L64,49z M55,9H9v46h46V9z M49,49H15V15\r\n\t\t\t\th34V49z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SCREEN_EXPAND_1_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SCREEN_EXPAND_1","display":"inline"},"children":[{"name":"g","attribs":{"id":"SCREEN_EXPAND_1","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M15,58H6v-9c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3\r\n\t\t\t\th12c1.657,0,3-1.343,3-3C18,59.343,16.657,58,15,58z M9,55h46V9H9V55z M15,15h34v34H15V15z M61,0H49c0,0,0,0,0,0\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3v0h9v9c0,1.657,1.343,3,3,3s3-1.343,3-3V3C64,1.343,62.657,0,61,0z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M15,58H6v-9c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3\r\n\t\t\t\th12c1.657,0,3-1.343,3-3C18,59.343,16.657,58,15,58z M9,55h46V9H9V55z M15,15h34v34H15V15z M61,0H49c0,0,0,0,0,0\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3v0h9v9c0,1.657,1.343,3,3,3s3-1.343,3-3V3C64,1.343,62.657,0,61,0z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"IMAGE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"IMAGE","display":"inline"},"children":[{"name":"g","attribs":{"id":"IMAGE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M40,15L40,15l9,0v9c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3c0,0,0,0,0,0V13h0\r\n\t\t\t\tV9H40c-1.657,0-3,1.343-3,3S38.343,15,40,15z M40,55h15v-4h0V40c0,0,0,0,0,0c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v9h-9v0\r\n\t\t\t\tc-1.657,0-3,1.343-3,3C37,53.657,38.343,55,40,55z M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z M58,58H6V6h52V58z M24,55c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3v0h-9v-9h0c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3c0,0,0,0,0,0v11h0v4H24C24,55,24,55,24,55z M9,24c0,1.657,1.343,3,3,3s3-1.343,3-3h0v-9h9v0c1.657,0,3-1.343,3-3\r\n\t\t\t\ts-1.343-3-3-3c0,0,0,0,0,0H9v4h0L9,24C9,24,9,24,9,24z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M40,15L40,15l9,0v9c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3c0,0,0,0,0,0V13h0\r\n\t\t\t\tV9H40c-1.657,0-3,1.343-3,3S38.343,15,40,15z M40,55h15v-4h0V40c0,0,0,0,0,0c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v9h-9v0\r\n\t\t\t\tc-1.657,0-3,1.343-3,3C37,53.657,38.343,55,40,55z M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z M58,58H6V6h52V58z M24,55c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3v0h-9v-9h0c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3c0,0,0,0,0,0v11h0v4H24C24,55,24,55,24,55z M9,24c0,1.657,1.343,3,3,3s3-1.343,3-3h0v-9h9v0c1.657,0,3-1.343,3-3\r\n\t\t\t\ts-1.343-3-3-3c0,0,0,0,0,0H9v4h0L9,24C9,24,9,24,9,24z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SQUARE__x2F__DELETE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SQUARE__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{"id":"SQUARE__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M18,43c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L32,36.243\r\n\t\t\t\tl8.879,8.879C41.422,45.664,42.172,46,43,46c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L36.243,32l8.879-8.878\r\n\t\t\t\tC45.664,22.579,46,21.829,46,21c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L32,27.758l-8.879-8.879\r\n\t\t\t\tC22.579,18.336,21.828,18,21,18c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L27.757,32l-8.879,8.879\r\n\t\t\t\tC18.336,41.422,18,42.172,18,43z M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z M58,58H6V6h52V58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M18,43c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L32,36.243\r\n\t\t\t\tl8.879,8.879C41.422,45.664,42.172,46,43,46c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L36.243,32l8.879-8.878\r\n\t\t\t\tC45.664,22.579,46,21.829,46,21c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L32,27.758l-8.879-8.879\r\n\t\t\t\tC22.579,18.336,21.828,18,21,18c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L27.757,32l-8.879,8.879\r\n\t\t\t\tC18.336,41.422,18,42.172,18,43z M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z M58,58H6V6h52V58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SQUARE__x2F__OK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SQUARE__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{"id":"SQUARE__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46,20.999v0.002C46,21.001,46,21.001,46,20.999C46,21,46,21,46,20.999z\r\n\t\t\t\t M46,43.001C46,43.001,46,43,46,43.001C46,43,46,43,46,42.999V43.001z M25.879,42.121C26.422,42.664,27.172,43,28,43\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l16-16C46.664,25.579,47,24.828,47,24c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879\r\n\t\t\t\tL28,35.757l-6.879-6.879C20.578,28.336,19.828,28,19,28c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L25.879,42.121z\r\n\t\t\t\t M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46,20.999v0.002C46,21.001,46,21.001,46,20.999C46,21,46,21,46,20.999z\r\n\t\t\t\t M46,43.001C46,43.001,46,43,46,43.001C46,43,46,43,46,42.999V43.001z M25.879,42.121C26.422,42.664,27.172,43,28,43\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l16-16C46.664,25.579,47,24.828,47,24c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879\r\n\t\t\t\tL28,35.757l-6.879-6.879C20.578,28.336,19.828,28,19,28c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L25.879,42.121z\r\n\t\t\t\t M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SQUARE__x2F__REMOVE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SQUARE__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{"id":"SQUARE__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z M58,58H6V6h52V58z M19,35h26c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H19c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC16,33.657,17.343,35,19,35z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z M58,58H6V6h52V58z M19,35h26c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H19c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC16,33.657,17.343,35,19,35z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SQUARE__x2F__ADD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SQUARE__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{"id":"SQUARE__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M19,35h10v10c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V35h10\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H35V19c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v10H19c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC16,33.657,17.343,35,19,35z M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z M58,58H6V6h52V58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M19,35h10v10c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V35h10\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H35V19c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v10H19c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC16,33.657,17.343,35,19,35z M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z M58,58H6V6h52V58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"GRID_2_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"GRID_2","display":"inline"},"children":[{"name":"g","attribs":{"id":"GRID_2","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26,35H6c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3\r\n\t\t\t\tV38C29,36.343,27.657,35,26,35z M26,3H6C4.343,3,3,4.343,3,6v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V6\r\n\t\t\t\tC29,4.343,27.657,3,26,3z M58,3H38c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V6\r\n\t\t\t\tC61,4.343,59.657,3,58,3z M58,35H38c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V38\r\n\t\t\t\tC61,36.343,59.657,35,58,35z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26,35H6c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3\r\n\t\t\t\tV38C29,36.343,27.657,35,26,35z M26,3H6C4.343,3,3,4.343,3,6v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V6\r\n\t\t\t\tC29,4.343,27.657,3,26,3z M58,3H38c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V6\r\n\t\t\t\tC61,4.343,59.657,3,58,3z M58,35H38c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V38\r\n\t\t\t\tC61,36.343,59.657,35,58,35z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"GRID_1_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"GRID_1","display":"inline"},"children":[{"name":"g","attribs":{"id":"GRID_1","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M58,35H38c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3\r\n\t\t\t\tV38C61,36.343,59.657,35,58,35z M55,55H41V41h14V55z M26,35H6c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20\r\n\t\t\t\tc1.657,0,3-1.343,3-3V38C29,36.343,27.657,35,26,35z M23,55H9V41h14V55z M58,3H38c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3\r\n\t\t\t\th20c1.657,0,3-1.343,3-3V6C61,4.343,59.657,3,58,3z M55,23H41V9h14V23z M26,3H6C4.343,3,3,4.343,3,6v20c0,1.657,1.343,3,3,3h20\r\n\t\t\t\tc1.657,0,3-1.343,3-3V6C29,4.343,27.657,3,26,3z M23,23H9V9h14V23z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M58,35H38c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3\r\n\t\t\t\tV38C61,36.343,59.657,35,58,35z M55,55H41V41h14V55z M26,35H6c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20\r\n\t\t\t\tc1.657,0,3-1.343,3-3V38C29,36.343,27.657,35,26,35z M23,55H9V41h14V55z M58,3H38c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3\r\n\t\t\t\th20c1.657,0,3-1.343,3-3V6C61,4.343,59.657,3,58,3z M55,23H41V9h14V23z M26,3H6C4.343,3,3,4.343,3,6v20c0,1.657,1.343,3,3,3h20\r\n\t\t\t\tc1.657,0,3-1.343,3-3V6C29,4.343,27.657,3,26,3z M23,23H9V9h14V23z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"UNLOCK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"UNLOCK","display":"inline"},"children":[{"name":"g","attribs":{"id":"UNLOCK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M55,32H20V18c0-6.627,5.373-12,12-12c6.627,0,12,5.373,12,12\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3c0-9.941-8.059-18-18-18c-9.941,0-18,8.059-18,18v14H9c-1.657,0-3,1.343-3,3v26\r\n\t\t\t\tc0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V35C58,33.343,56.657,32,55,32z M35,49.168V55c0,1.657-1.343,3-3,3\r\n\t\t\t\tc-1.657,0-3-1.343-3-3v-5.832c-1.786-1.039-3-2.953-3-5.168c0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6\r\n\t\t\t\tC38,46.215,36.786,48.129,35,49.168z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M55,32H20V18c0-6.627,5.373-12,12-12c6.627,0,12,5.373,12,12\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3c0-9.941-8.059-18-18-18c-9.941,0-18,8.059-18,18v14H9c-1.657,0-3,1.343-3,3v26\r\n\t\t\t\tc0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V35C58,33.343,56.657,32,55,32z M35,49.168V55c0,1.657-1.343,3-3,3\r\n\t\t\t\tc-1.657,0-3-1.343-3-3v-5.832c-1.786-1.039-3-2.953-3-5.168c0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6\r\n\t\t\t\tC38,46.215,36.786,48.129,35,49.168z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"LOCK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"LOCK","display":"inline"},"children":[{"name":"g","attribs":{"id":"LOCK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M55,32h-5V18c0-9.941-8.059-18-18-18c-9.941,0-18,8.059-18,18v14H9\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v26c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V35C58,33.343,56.657,32,55,32z M35,49.168V55\r\n\t\t\t\tc0,1.657-1.343,3-3,3s-3-1.343-3-3v-5.832c-1.786-1.039-3-2.953-3-5.168c0-3.314,2.686-6,6-6s6,2.686,6,6\r\n\t\t\t\tC38,46.215,36.786,48.129,35,49.168z M44,32H20V18c0-6.627,5.373-12,12-12c6.627,0,12,5.373,12,12V32z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M55,32h-5V18c0-9.941-8.059-18-18-18c-9.941,0-18,8.059-18,18v14H9\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v26c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V35C58,33.343,56.657,32,55,32z M35,49.168V55\r\n\t\t\t\tc0,1.657-1.343,3-3,3s-3-1.343-3-3v-5.832c-1.786-1.039-3-2.953-3-5.168c0-3.314,2.686-6,6-6s6,2.686,6,6\r\n\t\t\t\tC38,46.215,36.786,48.129,35,49.168z M44,32H20V18c0-6.627,5.373-12,12-12c6.627,0,12,5.373,12,12V32z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"INBOX__x2F__OUT_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"INBOX__x2F__OUT","display":"inline"},"children":[{"name":"g","attribs":{"id":"INBOX__x2F__OUT","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M25,18c0.828,0,1.578-0.336,2.121-0.879L29,15.243V34c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.657,0,3-1.343,3-3V15.243l1.879,1.879C37.422,17.664,38.172,18,39,18c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121\r\n\t\t\t\tl-7-7C33.578,5.336,32.829,5,32,5c-0.828,0-1.578,0.336-2.121,0.879l-7,7C22.336,13.422,22,14.172,22,15\r\n\t\t\t\tC22,16.657,23.343,18,25,18z M63.8,36.924l-7.978-20.941C55.406,14.827,54.3,14,53,14h-8.101C44.954,14.327,45,14.658,45,15\r\n\t\t\t\tc0,2.09-1.071,3.926-2.691,5h8.623l5.714,15H47c-1.657,0-3,1.343-3,3v3H20v-3c0-1.657-1.343-3-3-3H7.353l5.714-15h8.623\r\n\t\t\t\tC20.071,18.926,19,17.09,19,15c0-0.342,0.046-0.673,0.101-1H11c0,0,0,0,0,0c-1.3,0-2.406,0.827-2.823,1.982L0.2,36.924\r\n\t\t\t\tC0.071,37.258,0,37.621,0,38v19c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V38C64,37.621,63.929,37.258,63.8,36.924z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M25,18c0.828,0,1.578-0.336,2.121-0.879L29,15.243V34c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.657,0,3-1.343,3-3V15.243l1.879,1.879C37.422,17.664,38.172,18,39,18c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121\r\n\t\t\t\tl-7-7C33.578,5.336,32.829,5,32,5c-0.828,0-1.578,0.336-2.121,0.879l-7,7C22.336,13.422,22,14.172,22,15\r\n\t\t\t\tC22,16.657,23.343,18,25,18z M63.8,36.924l-7.978-20.941C55.406,14.827,54.3,14,53,14h-8.101C44.954,14.327,45,14.658,45,15\r\n\t\t\t\tc0,2.09-1.071,3.926-2.691,5h8.623l5.714,15H47c-1.657,0-3,1.343-3,3v3H20v-3c0-1.657-1.343-3-3-3H7.353l5.714-15h8.623\r\n\t\t\t\tC20.071,18.926,19,17.09,19,15c0-0.342,0.046-0.673,0.101-1H11c0,0,0,0,0,0c-1.3,0-2.406,0.827-2.823,1.982L0.2,36.924\r\n\t\t\t\tC0.071,37.258,0,37.621,0,38v19c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V38C64,37.621,63.929,37.258,63.8,36.924z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"INBOX__x2F__IN_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"INBOX__x2F__IN","display":"inline"},"children":[{"name":"g","attribs":{"id":"INBOX__x2F__IN","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M22,27c0,0.828,0.336,1.578,0.879,2.121l7,7C30.422,36.664,31.172,37,32,37\r\n\t\t\t\ts1.578-0.336,2.121-0.879l7-7C41.664,28.579,42,27.828,42,27c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L35,26.758V8\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v18.757l-1.879-1.879C26.578,24.336,25.829,24,25,24C23.343,24,22,25.343,22,27z M63.8,36.924\r\n\t\t\t\tl-7.978-20.941C55.406,14.827,54.3,14,53,14H38v6h12.932l5.714,15H47c-1.657,0-3,1.343-3,3v3H20v-3c0-1.657-1.343-3-3-3H7.353\r\n\t\t\t\tl5.714-15H26v-6H11c-1.3,0-2.406,0.827-2.823,1.982L0.2,36.924C0.071,37.258,0,37.621,0,38v19c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3V38C64,37.621,63.929,37.258,63.8,36.924z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M22,27c0,0.828,0.336,1.578,0.879,2.121l7,7C30.422,36.664,31.172,37,32,37\r\n\t\t\t\ts1.578-0.336,2.121-0.879l7-7C41.664,28.579,42,27.828,42,27c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L35,26.758V8\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v18.757l-1.879-1.879C26.578,24.336,25.829,24,25,24C23.343,24,22,25.343,22,27z M63.8,36.924\r\n\t\t\t\tl-7.978-20.941C55.406,14.827,54.3,14,53,14H38v6h12.932l5.714,15H47c-1.657,0-3,1.343-3,3v3H20v-3c0-1.657-1.343-3-3-3H7.353\r\n\t\t\t\tl5.714-15H26v-6H11c-1.3,0-2.406,0.827-2.823,1.982L0.2,36.924C0.071,37.258,0,37.621,0,38v19c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3V38C64,37.621,63.929,37.258,63.8,36.924z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"INBOX_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"INBOX","display":"inline"},"children":[{"name":"g","attribs":{"id":"INBOX","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M63.796,31.935l0.007-0.003l-8-21l-0.007,0.003C55.366,9.806,54.28,9,53,9H11\r\n\t\t\t\tc-1.28,0-2.365,0.806-2.796,1.935l-0.007-0.003l-8,21l0.007,0.003C0.077,32.267,0,32.624,0,33v19c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3V33C64,32.624,63.923,32.267,63.796,31.935z M47,30c-1.657,0-3,1.343-3,3v3H20v-3c0-1.657-1.343-3-3-3H7.353\r\n\t\t\t\tl5.714-15h37.865l5.714,15H47z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M63.796,31.935l0.007-0.003l-8-21l-0.007,0.003C55.366,9.806,54.28,9,53,9H11\r\n\t\t\t\tc-1.28,0-2.365,0.806-2.796,1.935l-0.007-0.003l-8,21l0.007,0.003C0.077,32.267,0,32.624,0,33v19c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3V33C64,32.624,63.923,32.267,63.796,31.935z M47,30c-1.657,0-3,1.343-3,3v3H20v-3c0-1.657-1.343-3-3-3H7.353\r\n\t\t\t\tl5.714-15h37.865l5.714,15H47z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SLIDESHOW_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SLIDESHOW","display":"inline"},"children":[{"name":"g","attribs":{"id":"SLIDESHOW","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M12,18c-1.657,0-3,1.343-3,3v22c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V21\r\n\t\t\t\tC15,19.343,13.657,18,12,18z M3,12c-1.657,0-3,1.343-3,3v34c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V15C6,13.343,4.657,12,3,12z\r\n\t\t\t\t M52,18c-1.657,0-3,1.343-3,3v22c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V21C55,19.343,53.657,18,52,18z M61,12\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v34c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V15C64,13.343,62.657,12,61,12z M43,18H21\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v22c0,1.657,1.343,3,3,3h22c1.657,0,3-1.343,3-3V21C46,19.343,44.657,18,43,18z M40,40H24V24h16V40z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M12,18c-1.657,0-3,1.343-3,3v22c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V21\r\n\t\t\t\tC15,19.343,13.657,18,12,18z M3,12c-1.657,0-3,1.343-3,3v34c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V15C6,13.343,4.657,12,3,12z\r\n\t\t\t\t M52,18c-1.657,0-3,1.343-3,3v22c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V21C55,19.343,53.657,18,52,18z M61,12\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v34c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V15C64,13.343,62.657,12,61,12z M43,18H21\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v22c0,1.657,1.343,3,3,3h22c1.657,0,3-1.343,3-3V21C46,19.343,44.657,18,43,18z M40,40H24V24h16V40z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"VOICEMAIL_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"VOICEMAIL","display":"inline"},"children":[{"name":"g","attribs":{"id":"VOICEMAIL","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M50,18c-7.732,0-14,6.268-14,14c0,2.977,0.936,5.731,2.52,8H25.48\r\n\t\t\t\tc1.584-2.269,2.52-5.023,2.52-8c0-7.732-6.268-14-14-14S0,24.268,0,32s6.268,14,14,14h36c7.732,0,14-6.268,14-14S57.732,18,50,18\r\n\t\t\t\tz M14,40c-4.418,0-8-3.582-8-8s3.582-8,8-8s8,3.582,8,8S18.418,40,14,40z M50,40c-4.418,0-8-3.582-8-8s3.582-8,8-8s8,3.582,8,8\r\n\t\t\t\tS54.418,40,50,40z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M50,18c-7.732,0-14,6.268-14,14c0,2.977,0.936,5.731,2.52,8H25.48\r\n\t\t\t\tc1.584-2.269,2.52-5.023,2.52-8c0-7.732-6.268-14-14-14S0,24.268,0,32s6.268,14,14,14h36c7.732,0,14-6.268,14-14S57.732,18,50,18\r\n\t\t\t\tz M14,40c-4.418,0-8-3.582-8-8s3.582-8,8-8s8,3.582,8,8S18.418,40,14,40z M50,40c-4.418,0-8-3.582-8-8s3.582-8,8-8s8,3.582,8,8\r\n\t\t\t\tS54.418,40,50,40z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CREDIT_CARD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CREDIT_CARD","display":"inline"},"children":[{"name":"g","attribs":{"id":"CREDIT_CARD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M0,51c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V28H0V51z M6,39h30v3H6V39z\r\n\t\t\t\t M6,45h12v3H6V45z M61,10H3c-1.657,0-3,1.343-3,3v9h64v-9C64,11.343,62.657,10,61,10z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M0,51c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V28H0V51z M6,39h30v3H6V39z\r\n\t\t\t\t M6,45h12v3H6V45z M61,10H3c-1.657,0-3,1.343-3,3v9h64v-9C64,11.343,62.657,10,61,10z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"HOME_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"HOME","display":"inline"},"children":[{"name":"g","attribs":{"id":"HOME","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M6,39v21c0,1.657,1.343,3,3,3h28V39h12v24h6c1.657,0,3-1.343,3-3V39L32,13L6,39\r\n\t\t\t\tz M27,51H15V39h12V51z M63.189,31.96l0.007-0.007L52,20.757V12c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v2.757L34.196,2.953\r\n\t\t\t\tl-0.002,0.002c-0.478-0.512-1.132-0.857-1.866-0.937c-0.003,0-0.006-0.001-0.009-0.001c-0.045-0.005-0.09-0.008-0.135-0.011\r\n\t\t\t\tc-0.008,0-0.017-0.001-0.025-0.002C32.107,2.002,32.054,2,32.001,2C32.001,2,32,2,32,2c-0.85,0-1.616,0.354-2.162,0.922\r\n\t\t\t\tL0.922,31.838C0.354,32.384,0,33.15,0,34c0,1.657,1.343,3,3,3c0.821,0,1.565-0.33,2.106-0.864l0.001,0.001L32,9.245v0.001\r\n\t\t\t\tl0.077,0.072l0,0.002l26.877,26.877l0.007-0.007C59.496,36.688,60.21,37,61,37c1.657,0,3-1.343,3-3\r\n\t\t\t\tC64,33.21,63.688,32.496,63.189,31.96z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M6,39v21c0,1.657,1.343,3,3,3h28V39h12v24h6c1.657,0,3-1.343,3-3V39L32,13L6,39\r\n\t\t\t\tz M27,51H15V39h12V51z M63.189,31.96l0.007-0.007L52,20.757V12c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v2.757L34.196,2.953\r\n\t\t\t\tl-0.002,0.002c-0.478-0.512-1.132-0.857-1.866-0.937c-0.003,0-0.006-0.001-0.009-0.001c-0.045-0.005-0.09-0.008-0.135-0.011\r\n\t\t\t\tc-0.008,0-0.017-0.001-0.025-0.002C32.107,2.002,32.054,2,32.001,2C32.001,2,32,2,32,2c-0.85,0-1.616,0.354-2.162,0.922\r\n\t\t\t\tL0.922,31.838C0.354,32.384,0,33.15,0,34c0,1.657,1.343,3,3,3c0.821,0,1.565-0.33,2.106-0.864l0.001,0.001L32,9.245v0.001\r\n\t\t\t\tl0.077,0.072l0,0.002l26.877,26.877l0.007-0.007C59.496,36.688,60.21,37,61,37c1.657,0,3-1.343,3-3\r\n\t\t\t\tC64,33.21,63.688,32.496,63.189,31.96z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SUITCASE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SUITCASE","display":"inline"},"children":[{"name":"g","attribs":{"id":"SUITCASE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M0,21v37c0,1.657,1.343,3,3,3h5V18H3C1.343,18,0,19.343,0,21z M32,3\r\n\t\t\t\tc-8.284,0-15,6.716-15,15h-6v43h42V18h-6C47,9.716,40.284,3,32,3z M23,18c0-4.971,4.029-9,9-9c4.971,0,9,4.029,9,9H23z M61,18h-5\r\n\t\t\t\tv43h5c1.657,0,3-1.343,3-3V21C64,19.343,62.657,18,61,18z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M0,21v37c0,1.657,1.343,3,3,3h5V18H3C1.343,18,0,19.343,0,21z M32,3\r\n\t\t\t\tc-8.284,0-15,6.716-15,15h-6v43h42V18h-6C47,9.716,40.284,3,32,3z M23,18c0-4.971,4.029-9,9-9c4.971,0,9,4.029,9,9H23z M61,18h-5\r\n\t\t\t\tv43h5c1.657,0,3-1.343,3-3V21C64,19.343,62.657,18,61,18z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"TAGS_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"TAGS","display":"inline"},"children":[{"name":"g","attribs":{"id":"TAGS","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M56.113,26.872l-5.133-4.91c-0.005,0.009-0.011,0.019-0.016,0.028L34.126,5.884\r\n\t\t\t\tC33.582,5.338,32.831,5,32,5c-0.003,0-0.005,0.001-0.008,0.001V4.993H13V5c-1.657,0-3,1.343-3,3h22l24.081,23.155L56.3,30.9\r\n\t\t\t\tl0.002,0.001C56.731,30.383,57,29.726,57,29C57,28.168,56.66,27.415,56.113,26.872z M54.997,35.951\r\n\t\t\t\tc-0.001-0.087-0.004-0.174-0.013-0.259c-0.002-0.016-0.005-0.031-0.007-0.046c-0.01-0.085-0.022-0.17-0.039-0.253\r\n\t\t\t\tc0-0.002-0.001-0.003-0.001-0.004c-0.123-0.594-0.422-1.123-0.84-1.531L31.126,11.884C30.582,11.338,29.831,11,29,11\r\n\t\t\t\tc-0.003,0-0.005,0.001-0.008,0.001v-0.008H10V11c-1.657,0-3,1.343-3,3H6.993v19.049h0.013c0.015,0.878,0.409,1.657,1.023,2.196\r\n\t\t\t\tl-0.011,0.012l25,23l0.005-0.005c0.395,0.347,0.88,0.593,1.418,0.694c0.022,0.004,0.046,0.007,0.068,0.01\r\n\t\t\t\tc0.067,0.011,0.134,0.022,0.202,0.029C34.806,58.995,34.902,59,35,59c0.916,0,1.734-0.411,2.284-1.058l0.001,0.001l17-20\r\n\t\t\t\tl-0.001-0.001C54.73,37.418,55,36.741,55,36C55,35.984,54.998,35.968,54.997,35.951z M15,23c-2.209,0-4-1.791-4-4\r\n\t\t\t\tc0-2.209,1.791-4,4-4c2.209,0,4,1.791,4,4C19,21.209,17.209,23,15,23z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M56.113,26.872l-5.133-4.91c-0.005,0.009-0.011,0.019-0.016,0.028L34.126,5.884\r\n\t\t\t\tC33.582,5.338,32.831,5,32,5c-0.003,0-0.005,0.001-0.008,0.001V4.993H13V5c-1.657,0-3,1.343-3,3h22l24.081,23.155L56.3,30.9\r\n\t\t\t\tl0.002,0.001C56.731,30.383,57,29.726,57,29C57,28.168,56.66,27.415,56.113,26.872z M54.997,35.951\r\n\t\t\t\tc-0.001-0.087-0.004-0.174-0.013-0.259c-0.002-0.016-0.005-0.031-0.007-0.046c-0.01-0.085-0.022-0.17-0.039-0.253\r\n\t\t\t\tc0-0.002-0.001-0.003-0.001-0.004c-0.123-0.594-0.422-1.123-0.84-1.531L31.126,11.884C30.582,11.338,29.831,11,29,11\r\n\t\t\t\tc-0.003,0-0.005,0.001-0.008,0.001v-0.008H10V11c-1.657,0-3,1.343-3,3H6.993v19.049h0.013c0.015,0.878,0.409,1.657,1.023,2.196\r\n\t\t\t\tl-0.011,0.012l25,23l0.005-0.005c0.395,0.347,0.88,0.593,1.418,0.694c0.022,0.004,0.046,0.007,0.068,0.01\r\n\t\t\t\tc0.067,0.011,0.134,0.022,0.202,0.029C34.806,58.995,34.902,59,35,59c0.916,0,1.734-0.411,2.284-1.058l0.001,0.001l17-20\r\n\t\t\t\tl-0.001-0.001C54.73,37.418,55,36.741,55,36C55,35.984,54.998,35.968,54.997,35.951z M15,23c-2.209,0-4-1.791-4-4\r\n\t\t\t\tc0-2.209,1.791-4,4-4c2.209,0,4,1.791,4,4C19,21.209,17.209,23,15,23z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"TAG_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"TAG","display":"inline"},"children":[{"name":"g","attribs":{"id":"TAG","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M56,33c0-0.017-0.002-0.033-0.003-0.049c-0.001-0.087-0.004-0.174-0.013-0.258\r\n\t\t\t\tc-0.001-0.016-0.005-0.031-0.007-0.046c-0.01-0.085-0.022-0.17-0.039-0.253c0-0.002-0.001-0.003-0.001-0.005\r\n\t\t\t\tc-0.123-0.594-0.422-1.123-0.84-1.531L32.126,8.884C31.582,8.338,30.831,8,30,8c-0.003,0-0.005,0.001-0.008,0.001V7.993H11V8\r\n\t\t\t\tc-1.657,0-3,1.343-3,3H7.993v19.049h0.013c0.015,0.878,0.409,1.657,1.023,2.196l-0.011,0.012l25,23l0.005-0.005\r\n\t\t\t\tc0.395,0.347,0.88,0.592,1.418,0.694c0.022,0.004,0.046,0.007,0.068,0.01c0.067,0.011,0.134,0.022,0.202,0.029\r\n\t\t\t\tC35.806,55.995,35.902,56,36,56c0.916,0,1.734-0.411,2.284-1.058l0.001,0.001l17-20l-0.001-0.001C55.73,34.418,56,33.741,56,33z\r\n\t\t\t\t M16,20c-2.209,0-4-1.791-4-4c0-2.209,1.791-4,4-4s4,1.791,4,4C20,18.209,18.209,20,16,20z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M56,33c0-0.017-0.002-0.033-0.003-0.049c-0.001-0.087-0.004-0.174-0.013-0.258\r\n\t\t\t\tc-0.001-0.016-0.005-0.031-0.007-0.046c-0.01-0.085-0.022-0.17-0.039-0.253c0-0.002-0.001-0.003-0.001-0.005\r\n\t\t\t\tc-0.123-0.594-0.422-1.123-0.84-1.531L32.126,8.884C31.582,8.338,30.831,8,30,8c-0.003,0-0.005,0.001-0.008,0.001V7.993H11V8\r\n\t\t\t\tc-1.657,0-3,1.343-3,3H7.993v19.049h0.013c0.015,0.878,0.409,1.657,1.023,2.196l-0.011,0.012l25,23l0.005-0.005\r\n\t\t\t\tc0.395,0.347,0.88,0.592,1.418,0.694c0.022,0.004,0.046,0.007,0.068,0.01c0.067,0.011,0.134,0.022,0.202,0.029\r\n\t\t\t\tC35.806,55.995,35.902,56,36,56c0.916,0,1.734-0.411,2.284-1.058l0.001,0.001l17-20l-0.001-0.001C55.73,34.418,56,33.741,56,33z\r\n\t\t\t\t M16,20c-2.209,0-4-1.791-4-4c0-2.209,1.791-4,4-4s4,1.791,4,4C20,18.209,18.209,20,16,20z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BASKET__x2F__DELETE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BASKET__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{"id":"BASKET__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.175,0-2.181,0.682-2.674,1.665L23.32,6.662L15.2,22h6.789L28.623,9.469z M35.383,9.469l3.329,6.289\r\n\t\t\t\tc1.313-1.574,2.922-2.89,4.742-3.866l-2.769-5.23l-0.011,0.006C40.183,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.534,0.151,1.028,0.396,1.462L35.383,9.469z M47,41.476V50c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V38.479\r\n\t\t\t\tC37.345,35.547,35,31.05,35,26c0-0.338,0.03-0.668,0.05-1H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h2.658l6.432,25.728l0.009-0.002\r\n\t\t\t\tC12.424,58.03,13.595,59,15,59h0c0.005,0,0.01-0.001,0.016-0.001V59H49c1.405,0,2.576-0.97,2.901-2.275l0.009,0.002l3.863-15.453\r\n\t\t\t\tC54.266,41.746,52.663,42,51,42C49.616,42,48.281,41.806,47,41.476z M23,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34\r\n\t\t\t\tc0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V34c0-1.657,1.343-3,3-3\r\n\t\t\t\tc1.657,0,3,1.343,3,3V50z M51,13c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13s13-5.82,13-13C64,18.82,58.18,13,51,13z\r\n\t\t\t\t M57.121,27.879C57.664,28.422,58,29.172,58,30c0,1.657-1.343,3-3,3c-0.828,0-1.578-0.336-2.121-0.879L51,30.243l-1.879,1.879\r\n\t\t\t\tC48.578,32.664,47.828,33,47,33c-1.657,0-3-1.343-3-3c0-0.829,0.336-1.578,0.879-2.121L46.757,26l-1.879-1.879\r\n\t\t\t\tC44.336,23.578,44,22.828,44,22c0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879L51,21.757l1.879-1.879\r\n\t\t\t\tC53.422,19.336,54.172,19,55,19c1.657,0,3,1.343,3,3c0,0.828-0.336,1.578-0.879,2.121L55.243,26L57.121,27.879z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.175,0-2.181,0.682-2.674,1.665L23.32,6.662L15.2,22h6.789L28.623,9.469z M35.383,9.469l3.329,6.289\r\n\t\t\t\tc1.313-1.574,2.922-2.89,4.742-3.866l-2.769-5.23l-0.011,0.006C40.183,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.534,0.151,1.028,0.396,1.462L35.383,9.469z M47,41.476V50c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V38.479\r\n\t\t\t\tC37.345,35.547,35,31.05,35,26c0-0.338,0.03-0.668,0.05-1H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h2.658l6.432,25.728l0.009-0.002\r\n\t\t\t\tC12.424,58.03,13.595,59,15,59h0c0.005,0,0.01-0.001,0.016-0.001V59H49c1.405,0,2.576-0.97,2.901-2.275l0.009,0.002l3.863-15.453\r\n\t\t\t\tC54.266,41.746,52.663,42,51,42C49.616,42,48.281,41.806,47,41.476z M23,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34\r\n\t\t\t\tc0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V34c0-1.657,1.343-3,3-3\r\n\t\t\t\tc1.657,0,3,1.343,3,3V50z M51,13c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13s13-5.82,13-13C64,18.82,58.18,13,51,13z\r\n\t\t\t\t M57.121,27.879C57.664,28.422,58,29.172,58,30c0,1.657-1.343,3-3,3c-0.828,0-1.578-0.336-2.121-0.879L51,30.243l-1.879,1.879\r\n\t\t\t\tC48.578,32.664,47.828,33,47,33c-1.657,0-3-1.343-3-3c0-0.829,0.336-1.578,0.879-2.121L46.757,26l-1.879-1.879\r\n\t\t\t\tC44.336,23.578,44,22.828,44,22c0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879L51,21.757l1.879-1.879\r\n\t\t\t\tC53.422,19.336,54.172,19,55,19c1.657,0,3,1.343,3,3c0,0.828-0.336,1.578-0.879,2.121L55.243,26L57.121,27.879z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BASKET__x2F__OK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BASKET__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{"id":"BASKET__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M35.383,9.469l3.329,6.289c1.313-1.574,2.922-2.89,4.742-3.866l-2.769-5.23\r\n\t\t\t\tl-0.011,0.006C40.183,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3c0,0.534,0.151,1.028,0.396,1.462L35.383,9.469z M28.623,9.469\r\n\t\t\t\tL28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3c-1.175,0-2.181,0.682-2.674,1.665L23.32,6.662L15.2,22h6.789\r\n\t\t\t\tL28.623,9.469z M47,41.476V50c0,1.657-1.343,3-3,3s-3-1.343-3-3V38.479C37.346,35.547,35,31.05,35,26c0-0.338,0.03-0.668,0.05-1\r\n\t\t\t\tH3c-1.657,0-3,1.343-3,3s1.343,3,3,3h2.658l6.432,25.728l0.009-0.002C12.424,58.03,13.595,59,15,59h0\r\n\t\t\t\tc0.005,0,0.01-0.001,0.016-0.001V59H49c1.405,0,2.576-0.97,2.901-2.275l0.009,0.002l3.863-15.453C54.266,41.746,52.663,42,51,42\r\n\t\t\t\tC49.616,42,48.281,41.806,47,41.476z M23,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50\r\n\t\t\t\tc0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V34c0-1.657,1.343-3,3-3c1.657,0,3,1.343,3,3V50z M51,13c-7.18,0-13,5.82-13,13\r\n\t\t\t\tc0,7.18,5.82,13,13,13c7.18,0,13-5.82,13-13C64,18.82,58.18,13,51,13z M59.121,25.122l-8,8C50.578,33.664,49.829,34,49,34\r\n\t\t\t\tc-0.828,0-1.578-0.336-2.121-0.879l-4-4C42.336,28.579,42,27.828,42,27c0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879\r\n\t\t\t\tL49,26.758l5.879-5.879C55.422,20.336,56.172,20,57,20c1.657,0,3,1.343,3,3C60,23.828,59.664,24.579,59.121,25.122z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M35.383,9.469l3.329,6.289c1.313-1.574,2.922-2.89,4.742-3.866l-2.769-5.23\r\n\t\t\t\tl-0.011,0.006C40.183,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3c0,0.534,0.151,1.028,0.396,1.462L35.383,9.469z M28.623,9.469\r\n\t\t\t\tL28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3c-1.175,0-2.181,0.682-2.674,1.665L23.32,6.662L15.2,22h6.789\r\n\t\t\t\tL28.623,9.469z M47,41.476V50c0,1.657-1.343,3-3,3s-3-1.343-3-3V38.479C37.346,35.547,35,31.05,35,26c0-0.338,0.03-0.668,0.05-1\r\n\t\t\t\tH3c-1.657,0-3,1.343-3,3s1.343,3,3,3h2.658l6.432,25.728l0.009-0.002C12.424,58.03,13.595,59,15,59h0\r\n\t\t\t\tc0.005,0,0.01-0.001,0.016-0.001V59H49c1.405,0,2.576-0.97,2.901-2.275l0.009,0.002l3.863-15.453C54.266,41.746,52.663,42,51,42\r\n\t\t\t\tC49.616,42,48.281,41.806,47,41.476z M23,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50\r\n\t\t\t\tc0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V34c0-1.657,1.343-3,3-3c1.657,0,3,1.343,3,3V50z M51,13c-7.18,0-13,5.82-13,13\r\n\t\t\t\tc0,7.18,5.82,13,13,13c7.18,0,13-5.82,13-13C64,18.82,58.18,13,51,13z M59.121,25.122l-8,8C50.578,33.664,49.829,34,49,34\r\n\t\t\t\tc-0.828,0-1.578-0.336-2.121-0.879l-4-4C42.336,28.579,42,27.828,42,27c0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879\r\n\t\t\t\tL49,26.758l5.879-5.879C55.422,20.336,56.172,20,57,20c1.657,0,3,1.343,3,3C60,23.828,59.664,24.579,59.121,25.122z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BASKET__x2F__REMOVE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BASKET__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{"id":"BASKET__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.175,0-2.181,0.682-2.673,1.665L23.32,6.662L15.2,22h6.789L28.623,9.469z M35.383,9.469l3.329,6.289\r\n\t\t\t\tc1.313-1.574,2.922-2.89,4.742-3.866l-2.769-5.23l-0.011,0.006C40.183,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.534,0.151,1.028,0.396,1.462L35.383,9.469z M47,41.476V50c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V38.479\r\n\t\t\t\tC37.345,35.547,35,31.05,35,26c0-0.338,0.03-0.668,0.05-1H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h2.658l6.432,25.728l0.009-0.002\r\n\t\t\t\tC12.424,58.03,13.595,59,15,59h0c0.005,0,0.01-0.001,0.016-0.001V59H49c1.405,0,2.576-0.97,2.901-2.275l0.009,0.002l3.863-15.453\r\n\t\t\t\tC54.266,41.746,52.663,42,51,42C49.616,42,48.281,41.806,47,41.476z M23,50c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V34\r\n\t\t\t\tc0-1.657,1.343-3,3-3c1.657,0,3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z\r\n\t\t\t\t M51,13c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13s13-5.82,13-13C64,18.82,58.18,13,51,13z M57,29H45c-1.657,0-3-1.343-3-3\r\n\t\t\t\ts1.343-3,3-3h12c1.657,0,3,1.343,3,3S58.657,29,57,29z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.175,0-2.181,0.682-2.673,1.665L23.32,6.662L15.2,22h6.789L28.623,9.469z M35.383,9.469l3.329,6.289\r\n\t\t\t\tc1.313-1.574,2.922-2.89,4.742-3.866l-2.769-5.23l-0.011,0.006C40.183,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.534,0.151,1.028,0.396,1.462L35.383,9.469z M47,41.476V50c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V38.479\r\n\t\t\t\tC37.345,35.547,35,31.05,35,26c0-0.338,0.03-0.668,0.05-1H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h2.658l6.432,25.728l0.009-0.002\r\n\t\t\t\tC12.424,58.03,13.595,59,15,59h0c0.005,0,0.01-0.001,0.016-0.001V59H49c1.405,0,2.576-0.97,2.901-2.275l0.009,0.002l3.863-15.453\r\n\t\t\t\tC54.266,41.746,52.663,42,51,42C49.616,42,48.281,41.806,47,41.476z M23,50c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V34\r\n\t\t\t\tc0-1.657,1.343-3,3-3c1.657,0,3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z\r\n\t\t\t\t M51,13c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13s13-5.82,13-13C64,18.82,58.18,13,51,13z M57,29H45c-1.657,0-3-1.343-3-3\r\n\t\t\t\ts1.343-3,3-3h12c1.657,0,3,1.343,3,3S58.657,29,57,29z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BASKET__x2F__ADD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BASKET__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{"id":"BASKET__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.175,0-2.181,0.682-2.674,1.665L23.32,6.662L15.2,22h6.789L28.623,9.469z M35.383,9.469l3.329,6.289\r\n\t\t\t\tc1.313-1.574,2.922-2.89,4.742-3.866l-2.769-5.23l-0.011,0.006C40.183,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.534,0.151,1.028,0.396,1.462L35.383,9.469z M51,13c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13c7.18,0,13-5.82,13-13\r\n\t\t\t\tC64,18.82,58.18,13,51,13z M57,29h-3v3c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3v-3h-3c-1.657,0-3-1.343-3-3s1.343-3,3-3h3v-3\r\n\t\t\t\tc0-1.657,1.343-3,3-3c1.657,0,3,1.343,3,3v3h3c1.657,0,3,1.343,3,3S58.657,29,57,29z M47,41.476V50c0,1.657-1.343,3-3,3\r\n\t\t\t\tc-1.657,0-3-1.343-3-3V38.479C37.345,35.547,35,31.05,35,26c0-0.338,0.03-0.668,0.051-1H3c-1.657,0-3,1.343-3,3s1.343,3,3,3\r\n\t\t\t\th2.658l6.432,25.728l0.009-0.002C12.424,58.03,13.595,59,15,59h0c0.005,0,0.01-0.001,0.016-0.001V59H49\r\n\t\t\t\tc1.405,0,2.576-0.97,2.901-2.275l0.009,0.002l3.863-15.453C54.266,41.746,52.663,42,51,42C49.616,42,48.281,41.806,47,41.476z\r\n\t\t\t\t M23,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34\r\n\t\t\t\tc0-1.657,1.343-3,3-3s3,1.343,3,3V50z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.175,0-2.181,0.682-2.674,1.665L23.32,6.662L15.2,22h6.789L28.623,9.469z M35.383,9.469l3.329,6.289\r\n\t\t\t\tc1.313-1.574,2.922-2.89,4.742-3.866l-2.769-5.23l-0.011,0.006C40.183,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.534,0.151,1.028,0.396,1.462L35.383,9.469z M51,13c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13c7.18,0,13-5.82,13-13\r\n\t\t\t\tC64,18.82,58.18,13,51,13z M57,29h-3v3c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3v-3h-3c-1.657,0-3-1.343-3-3s1.343-3,3-3h3v-3\r\n\t\t\t\tc0-1.657,1.343-3,3-3c1.657,0,3,1.343,3,3v3h3c1.657,0,3,1.343,3,3S58.657,29,57,29z M47,41.476V50c0,1.657-1.343,3-3,3\r\n\t\t\t\tc-1.657,0-3-1.343-3-3V38.479C37.345,35.547,35,31.05,35,26c0-0.338,0.03-0.668,0.051-1H3c-1.657,0-3,1.343-3,3s1.343,3,3,3\r\n\t\t\t\th2.658l6.432,25.728l0.009-0.002C12.424,58.03,13.595,59,15,59h0c0.005,0,0.01-0.001,0.016-0.001V59H49\r\n\t\t\t\tc1.405,0,2.576-0.97,2.901-2.275l0.009,0.002l3.863-15.453C54.266,41.746,52.663,42,51,42C49.616,42,48.281,41.806,47,41.476z\r\n\t\t\t\t M23,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34\r\n\t\t\t\tc0-1.657,1.343-3,3-3s3,1.343,3,3V50z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BASKET_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BASKET","display":"inline"},"children":[{"name":"g","attribs":{"id":"BASKET","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M64,27.987c0-0.006-0.001-0.012-0.001-0.019\r\n\t\t\t\tc-0.001-0.074-0.005-0.148-0.011-0.221c-0.003-0.042-0.008-0.084-0.013-0.125c-0.005-0.04-0.011-0.08-0.017-0.12\r\n\t\t\t\tc-0.219-1.342-1.327-2.386-2.703-2.502H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h2.658l6.432,25.728l0.009-0.002\r\n\t\t\t\tC12.424,58.03,13.595,59,15,59h0c0.005,0,0.01-0.001,0.016-0.001V59H49c1.405,0,2.576-0.97,2.901-2.275l0.009,0.002L58.342,31H61\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.002,0-0.003,0-0.005C64,27.992,64,27.99,64,27.987z M23,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34\r\n\t\t\t\tc0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V34c0-1.657,1.343-3,3-3\r\n\t\t\t\tc1.657,0,3,1.343,3,3V50z M47,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35.383,9.469\r\n\t\t\t\tL42.017,22h6.789l-8.12-15.338l-0.011,0.006C40.183,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3c0,0.534,0.151,1.028,0.396,1.462\r\n\t\t\t\tL35.383,9.469z M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3c-1.175,0-2.181,0.682-2.674,1.665\r\n\t\t\t\tL23.32,6.662L15.2,22h6.789L28.623,9.469z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M64,27.987c0-0.006-0.001-0.012-0.001-0.019\r\n\t\t\t\tc-0.001-0.074-0.005-0.148-0.011-0.221c-0.003-0.042-0.008-0.084-0.013-0.125c-0.005-0.04-0.011-0.08-0.017-0.12\r\n\t\t\t\tc-0.219-1.342-1.327-2.386-2.703-2.502H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h2.658l6.432,25.728l0.009-0.002\r\n\t\t\t\tC12.424,58.03,13.595,59,15,59h0c0.005,0,0.01-0.001,0.016-0.001V59H49c1.405,0,2.576-0.97,2.901-2.275l0.009,0.002L58.342,31H61\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.002,0-0.003,0-0.005C64,27.992,64,27.99,64,27.987z M23,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34\r\n\t\t\t\tc0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V34c0-1.657,1.343-3,3-3\r\n\t\t\t\tc1.657,0,3,1.343,3,3V50z M47,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35.383,9.469\r\n\t\t\t\tL42.017,22h6.789l-8.12-15.338l-0.011,0.006C40.183,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3c0,0.534,0.151,1.028,0.396,1.462\r\n\t\t\t\tL35.383,9.469z M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3c-1.175,0-2.181,0.682-2.674,1.665\r\n\t\t\t\tL23.32,6.662L15.2,22h6.789L28.623,9.469z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SHOPPING_BAG_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SHOPPING_BAG","display":"inline"},"children":[{"name":"g","attribs":{"id":"SHOPPING_BAG","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M6,61c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3v-3H6V61z M55,15h-8\r\n\t\t\t\tc0-8.284-6.716-15-15-15c-8.284,0-15,6.716-15,15H9c-1.657,0-3,1.343-3,3v37h52V18C58,16.343,56.657,15,55,15z M23,15\r\n\t\t\t\tc0-4.971,4.029-9,9-9s9,4.03,9,9H23z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M6,61c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3v-3H6V61z M55,15h-8\r\n\t\t\t\tc0-8.284-6.716-15-15-15c-8.284,0-15,6.716-15,15H9c-1.657,0-3,1.343-3,3v37h52V18C58,16.343,56.657,15,55,15z M23,15\r\n\t\t\t\tc0-4.971,4.029-9,9-9s9,4.03,9,9H23z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SHOP_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SHOP","display":"inline"},"children":[{"name":"g","attribs":{"id":"SHOP","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M10,9h44c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H10C8.343,3,7,4.343,7,6\r\n\t\t\t\tC7,7.657,8.343,9,10,9z M58.375,12H5.625L0,27c0,4.418,3.582,8,8,8c4.418,0,8-3.582,8-8c0,4.418,3.582,8,8,8c4.418,0,8-3.582,8-8\r\n\t\t\t\tc0,4.418,3.582,8,8,8c4.418,0,8-3.582,8-8c0,4.418,3.582,8,8,8c4.418,0,8-3.582,8-8L58.375,12z M55,37.952V37.95\r\n\t\t\t\tc-0.287-0.026-0.57-0.069-0.85-0.117c-0.06-0.01-0.122-0.015-0.182-0.026c-0.13-0.024-0.256-0.061-0.384-0.09\r\n\t\t\t\tc-0.542-0.124-1.074-0.278-1.584-0.477V52H12V37.239c-0.51,0.2-1.042,0.354-1.586,0.478c-0.128,0.029-0.253,0.065-0.382,0.09\r\n\t\t\t\tc-0.06,0.011-0.122,0.016-0.183,0.027C9.569,37.88,9.287,37.924,9,37.95v0.002C8.671,37.982,8.338,38,8,38\r\n\t\t\t\tc-0.684,0-1.351-0.071-2-0.19V58c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V37.81C57.351,37.929,56.684,38,56,38\r\n\t\t\t\tC55.663,38,55.329,37.982,55,37.952z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M10,9h44c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H10C8.343,3,7,4.343,7,6\r\n\t\t\t\tC7,7.657,8.343,9,10,9z M58.375,12H5.625L0,27c0,4.418,3.582,8,8,8c4.418,0,8-3.582,8-8c0,4.418,3.582,8,8,8c4.418,0,8-3.582,8-8\r\n\t\t\t\tc0,4.418,3.582,8,8,8c4.418,0,8-3.582,8-8c0,4.418,3.582,8,8,8c4.418,0,8-3.582,8-8L58.375,12z M55,37.952V37.95\r\n\t\t\t\tc-0.287-0.026-0.57-0.069-0.85-0.117c-0.06-0.01-0.122-0.015-0.182-0.026c-0.13-0.024-0.256-0.061-0.384-0.09\r\n\t\t\t\tc-0.542-0.124-1.074-0.278-1.584-0.477V52H12V37.239c-0.51,0.2-1.042,0.354-1.586,0.478c-0.128,0.029-0.253,0.065-0.382,0.09\r\n\t\t\t\tc-0.06,0.011-0.122,0.016-0.183,0.027C9.569,37.88,9.287,37.924,9,37.95v0.002C8.671,37.982,8.338,38,8,38\r\n\t\t\t\tc-0.684,0-1.351-0.071-2-0.19V58c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V37.81C57.351,37.929,56.684,38,56,38\r\n\t\t\t\tC55.663,38,55.329,37.982,55,37.952z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SHOPPING_CART__x2F__DELETE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SHOPPING_CART__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{"id":"SHOPPING_CART__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M56,49H27.779l-1.498-4.279L52.2,42.993v-0.001\r\n\t\t\t\tc1.132-0.074,2.092-0.776,2.536-1.762h0l4.83-10.733c-2.245,1.427-4.866,2.303-7.685,2.457l-1.877,4.171l-25.779,1.719L18.679,23\r\n\t\t\t\th17.495C35.423,21.146,35,19.124,35,17H16.578l-1.747-4.991l-0.011,0.004C14.411,10.844,13.309,10,12,10H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,1.657,1.343,3,3,3h6.872l11.55,33H16c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6s6-2.686,6-6h28c0,3.314,2.686,6,6,6\r\n\t\t\t\tc3.314,0,6-2.686,6-6C62,51.686,59.314,49,56,49z M51,30c7.18,0,13-5.82,13-13c0-7.18-5.82-13-13-13c-7.18,0-13,5.82-13,13\r\n\t\t\t\tC38,24.18,43.82,30,51,30z M44.879,15.121C44.336,14.578,44,13.828,44,13c0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879\r\n\t\t\t\tL51,12.757l1.879-1.879C53.422,10.336,54.172,10,55,10c1.657,0,3,1.343,3,3c0,0.828-0.336,1.578-0.879,2.121L55.243,17\r\n\t\t\t\tl1.879,1.879C57.664,19.422,58,20.172,58,21c0,1.657-1.343,3-3,3c-0.828,0-1.578-0.336-2.121-0.879L51,21.243l-1.879,1.879\r\n\t\t\t\tC48.579,23.664,47.828,24,47,24c-1.657,0-3-1.343-3-3c0-0.828,0.336-1.578,0.879-2.121L46.757,17L44.879,15.121z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M56,49H27.779l-1.498-4.279L52.2,42.993v-0.001\r\n\t\t\t\tc1.132-0.074,2.092-0.776,2.536-1.762h0l4.83-10.733c-2.245,1.427-4.866,2.303-7.685,2.457l-1.877,4.171l-25.779,1.719L18.679,23\r\n\t\t\t\th17.495C35.423,21.146,35,19.124,35,17H16.578l-1.747-4.991l-0.011,0.004C14.411,10.844,13.309,10,12,10H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,1.657,1.343,3,3,3h6.872l11.55,33H16c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6s6-2.686,6-6h28c0,3.314,2.686,6,6,6\r\n\t\t\t\tc3.314,0,6-2.686,6-6C62,51.686,59.314,49,56,49z M51,30c7.18,0,13-5.82,13-13c0-7.18-5.82-13-13-13c-7.18,0-13,5.82-13,13\r\n\t\t\t\tC38,24.18,43.82,30,51,30z M44.879,15.121C44.336,14.578,44,13.828,44,13c0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879\r\n\t\t\t\tL51,12.757l1.879-1.879C53.422,10.336,54.172,10,55,10c1.657,0,3,1.343,3,3c0,0.828-0.336,1.578-0.879,2.121L55.243,17\r\n\t\t\t\tl1.879,1.879C57.664,19.422,58,20.172,58,21c0,1.657-1.343,3-3,3c-0.828,0-1.578-0.336-2.121-0.879L51,21.243l-1.879,1.879\r\n\t\t\t\tC48.579,23.664,47.828,24,47,24c-1.657,0-3-1.343-3-3c0-0.828,0.336-1.578,0.879-2.121L46.757,17L44.879,15.121z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SHOPPING_CART__x2F__OK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SHOPPING_CART__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{"id":"SHOPPING_CART__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M51,30c7.18,0,13-5.82,13-13c0-7.18-5.82-13-13-13c-7.18,0-13,5.82-13,13\r\n\t\t\t\tC38,24.18,43.82,30,51,30z M45,15c0.828,0,1.578,0.336,2.121,0.879L49,17.757l5.879-5.879C55.422,11.336,56.172,11,57,11\r\n\t\t\t\tc1.657,0,3,1.343,3,3c0,0.828-0.336,1.578-0.879,2.121l-8,8C50.578,24.664,49.828,25,49,25s-1.578-0.336-2.121-0.879l-4-4\r\n\t\t\t\tC42.336,19.578,42,18.828,42,18C42,16.343,43.343,15,45,15z M56,49H27.778l-1.497-4.279L52.2,42.993v-0.001\r\n\t\t\t\tc1.132-0.074,2.092-0.776,2.536-1.762h0l4.83-10.733c-2.245,1.427-4.866,2.303-7.685,2.457l-1.877,4.171l-25.779,1.719L18.679,23\r\n\t\t\t\th17.495C35.423,21.146,35,19.124,35,17H16.578l-1.747-4.991l-0.011,0.004C14.411,10.844,13.309,10,12,10H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,1.657,1.343,3,3,3h6.872l11.55,33H16c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6s6-2.686,6-6h28c0,3.314,2.686,6,6,6\r\n\t\t\t\ts6-2.686,6-6C62,51.686,59.314,49,56,49z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M51,30c7.18,0,13-5.82,13-13c0-7.18-5.82-13-13-13c-7.18,0-13,5.82-13,13\r\n\t\t\t\tC38,24.18,43.82,30,51,30z M45,15c0.828,0,1.578,0.336,2.121,0.879L49,17.757l5.879-5.879C55.422,11.336,56.172,11,57,11\r\n\t\t\t\tc1.657,0,3,1.343,3,3c0,0.828-0.336,1.578-0.879,2.121l-8,8C50.578,24.664,49.828,25,49,25s-1.578-0.336-2.121-0.879l-4-4\r\n\t\t\t\tC42.336,19.578,42,18.828,42,18C42,16.343,43.343,15,45,15z M56,49H27.778l-1.497-4.279L52.2,42.993v-0.001\r\n\t\t\t\tc1.132-0.074,2.092-0.776,2.536-1.762h0l4.83-10.733c-2.245,1.427-4.866,2.303-7.685,2.457l-1.877,4.171l-25.779,1.719L18.679,23\r\n\t\t\t\th17.495C35.423,21.146,35,19.124,35,17H16.578l-1.747-4.991l-0.011,0.004C14.411,10.844,13.309,10,12,10H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,1.657,1.343,3,3,3h6.872l11.55,33H16c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6s6-2.686,6-6h28c0,3.314,2.686,6,6,6\r\n\t\t\t\ts6-2.686,6-6C62,51.686,59.314,49,56,49z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SHOPPING_CART__x2F__REMOVE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SHOPPING_CART__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{"id":"SHOPPING_CART__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M51,30c7.18,0,13-5.82,13-13c0-7.18-5.82-13-13-13S38,9.82,38,17\r\n\t\t\t\tC38,24.18,43.82,30,51,30z M45,14h12c1.657,0,3,1.343,3,3s-1.343,3-3,3H45c-1.657,0-3-1.343-3-3S43.343,14,45,14z M56,49H27.778\r\n\t\t\t\tl-1.497-4.279L52.2,42.993v-0.001c1.132-0.074,2.092-0.776,2.536-1.762h0l4.83-10.733c-2.245,1.427-4.866,2.303-7.685,2.457\r\n\t\t\t\tl-1.877,4.171l-25.779,1.719L18.678,23h17.495C35.423,21.146,35,19.124,35,17H16.578l-1.747-4.991l-0.011,0.004\r\n\t\t\t\tC14.411,10.844,13.309,10,12,10H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h6.872l11.55,33H16c-3.314,0-6,2.686-6,6\r\n\t\t\t\tc0,3.314,2.686,6,6,6s6-2.686,6-6h28c0,3.314,2.686,6,6,6c3.314,0,6-2.686,6-6C62,51.686,59.314,49,56,49z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M51,30c7.18,0,13-5.82,13-13c0-7.18-5.82-13-13-13S38,9.82,38,17\r\n\t\t\t\tC38,24.18,43.82,30,51,30z M45,14h12c1.657,0,3,1.343,3,3s-1.343,3-3,3H45c-1.657,0-3-1.343-3-3S43.343,14,45,14z M56,49H27.778\r\n\t\t\t\tl-1.497-4.279L52.2,42.993v-0.001c1.132-0.074,2.092-0.776,2.536-1.762h0l4.83-10.733c-2.245,1.427-4.866,2.303-7.685,2.457\r\n\t\t\t\tl-1.877,4.171l-25.779,1.719L18.678,23h17.495C35.423,21.146,35,19.124,35,17H16.578l-1.747-4.991l-0.011,0.004\r\n\t\t\t\tC14.411,10.844,13.309,10,12,10H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h6.872l11.55,33H16c-3.314,0-6,2.686-6,6\r\n\t\t\t\tc0,3.314,2.686,6,6,6s6-2.686,6-6h28c0,3.314,2.686,6,6,6c3.314,0,6-2.686,6-6C62,51.686,59.314,49,56,49z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SHOPPING_CART__x2F__ADD_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SHOPPING_CART__x2F__ADD"},"children":[{"name":"g","attribs":{"id":"SHOPPING_CART__x2F__ADD"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M51,30c7.18,0,13-5.82,13-13c0-7.18-5.82-13-13-13c-7.18,0-13,5.82-13,13\r\n\t\t\t\tC38,24.18,43.82,30,51,30z M45,14h3v-3c0-1.657,1.343-3,3-3c1.657,0,3,1.343,3,3v3h3c1.657,0,3,1.343,3,3s-1.343,3-3,3h-3v3\r\n\t\t\t\tc0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3v-3h-3c-1.657,0-3-1.343-3-3S43.343,14,45,14z M56,49H27.779l-1.498-4.279L52.2,42.993\r\n\t\t\t\tv-0.001c1.132-0.074,2.092-0.776,2.536-1.762h0l4.83-10.733c-2.245,1.427-4.866,2.303-7.685,2.457l-1.877,4.171l-25.779,1.719\r\n\t\t\t\tL18.678,23h17.496C35.423,21.146,35,19.124,35,17H16.578l-1.747-4.991l-0.011,0.004C14.411,10.844,13.309,10,12,10H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h6.872l11.55,33H16c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6s6-2.686,6-6h28\r\n\t\t\t\tc0,3.314,2.686,6,6,6s6-2.686,6-6C62,51.686,59.314,49,56,49z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M51,30c7.18,0,13-5.82,13-13c0-7.18-5.82-13-13-13c-7.18,0-13,5.82-13,13\r\n\t\t\t\tC38,24.18,43.82,30,51,30z M45,14h3v-3c0-1.657,1.343-3,3-3c1.657,0,3,1.343,3,3v3h3c1.657,0,3,1.343,3,3s-1.343,3-3,3h-3v3\r\n\t\t\t\tc0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3v-3h-3c-1.657,0-3-1.343-3-3S43.343,14,45,14z M56,49H27.779l-1.498-4.279L52.2,42.993\r\n\t\t\t\tv-0.001c1.132-0.074,2.092-0.776,2.536-1.762h0l4.83-10.733c-2.245,1.427-4.866,2.303-7.685,2.457l-1.877,4.171l-25.779,1.719\r\n\t\t\t\tL18.678,23h17.496C35.423,21.146,35,19.124,35,17H16.578l-1.747-4.991l-0.011,0.004C14.411,10.844,13.309,10,12,10H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h6.872l11.55,33H16c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6s6-2.686,6-6h28\r\n\t\t\t\tc0,3.314,2.686,6,6,6s6-2.686,6-6C62,51.686,59.314,49,56,49z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SHOPPING_CART_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SHOPPING_CART","display":"inline"},"children":[{"name":"g","attribs":{"id":"SHOPPING_CART","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M52.2,39.993c1.132-0.074,2.092-0.776,2.536-1.762h0l9-20l-0.005-0.002\r\n\t\t\t\tC63.901,17.853,64,17.439,64,17c0-1.657-1.343-3-3-3H16.578l-1.747-4.991L14.82,9.013C14.411,7.844,13.309,7,12,7H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h6.872l11.55,33H16c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6s6-2.686,6-6h28\r\n\t\t\t\tc0,3.314,2.686,6,6,6s6-2.686,6-6c0-3.314-2.686-6-6-6H27.778l-1.497-4.279L52.2,39.993L52.2,39.993z M24.224,35.845L18.679,20\r\n\t\t\t\tH56.36l-6.357,14.127L24.224,35.845z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M52.2,39.993c1.132-0.074,2.092-0.776,2.536-1.762h0l9-20l-0.005-0.002\r\n\t\t\t\tC63.901,17.853,64,17.439,64,17c0-1.657-1.343-3-3-3H16.578l-1.747-4.991L14.82,9.013C14.411,7.844,13.309,7,12,7H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h6.872l11.55,33H16c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6s6-2.686,6-6h28\r\n\t\t\t\tc0,3.314,2.686,6,6,6s6-2.686,6-6c0-3.314-2.686-6-6-6H27.778l-1.497-4.279L52.2,39.993L52.2,39.993z M24.224,35.845L18.679,20\r\n\t\t\t\tH56.36l-6.357,14.127L24.224,35.845z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CAMERA_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CAMERA","display":"inline"},"children":[{"name":"g","attribs":{"id":"CAMERA","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,22c-6.627,0-12,5.372-12,12c0,6.627,5.373,12,12,12c6.627,0,12-5.373,12-12\r\n\t\t\t\tC44,27.373,38.627,22,32,22z M61,12H48.243l-5.094-5.094l-0.003,0.003C42.602,6.35,41.843,6,41,6H23\r\n\t\t\t\tc-0.976,0-1.835,0.474-2.383,1.196L15.813,12H3c-1.657,0-3,1.343-3,3v40c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V15\r\n\t\t\t\tC64,13.343,62.657,12,61,12z M32,52c-9.941,0-18-8.059-18-18c0-9.941,8.059-18,18-18c9.941,0,18,8.059,18,18\r\n\t\t\t\tC50,43.941,41.941,52,32,52z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,22c-6.627,0-12,5.372-12,12c0,6.627,5.373,12,12,12c6.627,0,12-5.373,12-12\r\n\t\t\t\tC44,27.373,38.627,22,32,22z M61,12H48.243l-5.094-5.094l-0.003,0.003C42.602,6.35,41.843,6,41,6H23\r\n\t\t\t\tc-0.976,0-1.835,0.474-2.383,1.196L15.813,12H3c-1.657,0-3,1.343-3,3v40c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V15\r\n\t\t\t\tC64,13.343,62.657,12,61,12z M32,52c-9.941,0-18-8.059-18-18c0-9.941,8.059-18,18-18c9.941,0,18,8.059,18,18\r\n\t\t\t\tC50,43.941,41.941,52,32,52z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MUSIC_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MUSIC","display":"inline"},"children":[{"name":"g","attribs":{"id":"MUSIC","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M60,0L20,9c0,0-3,0.681-3,3v40.66C15.499,52.241,13.802,52,12,52\r\n\t\t\t\tc-6.075,0-11,2.686-11,6c0,3.314,4.925,6,11,6c6.075,0,11-2.686,11-6V26.123l34-7.415V43.66C55.499,43.241,53.802,43,52,43\r\n\t\t\t\tc-6.075,0-11,2.686-11,6c0,3.314,4.925,6,11,6c6.075,0,11-2.686,11-6V3C63,1.343,61.657,0,60,0z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M60,0L20,9c0,0-3,0.681-3,3v40.66C15.499,52.241,13.802,52,12,52\r\n\t\t\t\tc-6.075,0-11,2.686-11,6c0,3.314,4.925,6,11,6c6.075,0,11-2.686,11-6V26.123l34-7.415V43.66C55.499,43.241,53.802,43,52,43\r\n\t\t\t\tc-6.075,0-11,2.686-11,6c0,3.314,4.925,6,11,6c6.075,0,11-2.686,11-6V3C63,1.343,61.657,0,60,0z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"PROGRESS_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PROGRESS","display":"inline"},"children":[{"name":"g","attribs":{"id":"PROGRESS","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26,29c-1.657,0-3,1.343-3,3v16c0,1.657,1.343,3,3,3s3-1.343,3-3V32\r\n\t\t\t\tC29,30.343,27.657,29,26,29z M14,37c-1.657,0-3,1.343-3,3v8c0,1.657,1.343,3,3,3s3-1.343,3-3v-8C17,38.343,15.657,37,14,37z\r\n\t\t\t\t M50,13c-1.657,0-3,1.343-3,3v32c0,1.657,1.343,3,3,3s3-1.343,3-3V16C53,14.343,51.657,13,50,13z M38,21c-1.657,0-3,1.343-3,3v24\r\n\t\t\t\tc0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V24C41,22.343,39.657,21,38,21z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26,29c-1.657,0-3,1.343-3,3v16c0,1.657,1.343,3,3,3s3-1.343,3-3V32\r\n\t\t\t\tC29,30.343,27.657,29,26,29z M14,37c-1.657,0-3,1.343-3,3v8c0,1.657,1.343,3,3,3s3-1.343,3-3v-8C17,38.343,15.657,37,14,37z\r\n\t\t\t\t M50,13c-1.657,0-3,1.343-3,3v32c0,1.657,1.343,3,3,3s3-1.343,3-3V16C53,14.343,51.657,13,50,13z M38,21c-1.657,0-3,1.343-3,3v24\r\n\t\t\t\tc0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V24C41,22.343,39.657,21,38,21z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CODE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CODE","display":"inline"},"children":[{"name":"g","attribs":{"id":"CODE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M15.031,17c-0.844,0-1.604,0.352-2.149,0.913l-0.003-0.003L1.053,29.735\r\n\t\t\t\tC0.413,30.285,0,31.091,0,32c0,0.844,0.351,1.604,0.912,2.149L0.91,34.152l12,12l0.003-0.003C13.453,46.674,14.187,47,15,47\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.812-0.326-1.547-0.851-2.087l0.003-0.003l-9.894-9.895l9.863-9.863l-0.003-0.003\r\n\t\t\t\tc0.561-0.545,0.913-1.305,0.913-2.149C18.031,18.343,16.688,17,15.031,17z M64.031,32c0-0.91-0.413-1.715-1.053-2.265\r\n\t\t\t\tL51.153,17.91l-0.003,0.003C50.604,17.352,49.844,17,49,17c-1.657,0-3,1.343-3,3c0,0.844,0.351,1.604,0.913,2.149l-0.003,0.003\r\n\t\t\t\tl9.863,9.863l-9.894,9.895l0.003,0.003c-0.525,0.54-0.851,1.275-0.851,2.087c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.813,0,1.547-0.326,2.088-0.851l0.003,0.003l12-12l-0.003-0.003C63.68,33.604,64.031,32.844,64.031,32z M40,8\r\n\t\t\t\tc-1.3,0-2.406,0.827-2.823,1.982L21.2,51.924C21.071,52.258,21,52.621,21,53c0,1.657,1.343,3,3,3c1.3,0,2.406-0.827,2.823-1.983\r\n\t\t\t\tL42.8,12.076C42.929,11.742,43,11.38,43,11C43,9.343,41.657,8,40,8z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M15.031,17c-0.844,0-1.604,0.352-2.149,0.913l-0.003-0.003L1.053,29.735\r\n\t\t\t\tC0.413,30.285,0,31.091,0,32c0,0.844,0.351,1.604,0.912,2.149L0.91,34.152l12,12l0.003-0.003C13.453,46.674,14.187,47,15,47\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.812-0.326-1.547-0.851-2.087l0.003-0.003l-9.894-9.895l9.863-9.863l-0.003-0.003\r\n\t\t\t\tc0.561-0.545,0.913-1.305,0.913-2.149C18.031,18.343,16.688,17,15.031,17z M64.031,32c0-0.91-0.413-1.715-1.053-2.265\r\n\t\t\t\tL51.153,17.91l-0.003,0.003C50.604,17.352,49.844,17,49,17c-1.657,0-3,1.343-3,3c0,0.844,0.351,1.604,0.913,2.149l-0.003,0.003\r\n\t\t\t\tl9.863,9.863l-9.894,9.895l0.003,0.003c-0.525,0.54-0.851,1.275-0.851,2.087c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.813,0,1.547-0.326,2.088-0.851l0.003,0.003l12-12l-0.003-0.003C63.68,33.604,64.031,32.844,64.031,32z M40,8\r\n\t\t\t\tc-1.3,0-2.406,0.827-2.823,1.982L21.2,51.924C21.071,52.258,21,52.621,21,53c0,1.657,1.343,3,3,3c1.3,0,2.406-0.827,2.823-1.983\r\n\t\t\t\tL42.8,12.076C42.929,11.742,43,11.38,43,11C43,9.343,41.657,8,40,8z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"LINK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"LINK","display":"inline"},"children":[{"name":"g","attribs":{"id":"LINK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26.461,45.766c-0.056,0.061-0.096,0.131-0.155,0.19l-8.349,8.37\r\n\t\t\t\tc-2.306,2.311-6.043,2.311-8.349,0c-2.305-2.311-2.305-6.059,0-8.37l8.349-8.37c0.018-0.018,0.041-0.03,0.059-0.049l7.187-7.187\r\n\t\t\t\tc-3.943-1.062-8.326-0.052-11.421,3.05l-8.349,8.37c-4.611,4.623-4.611,12.118,0,16.74c4.611,4.623,12.087,4.623,16.697,0\r\n\t\t\t\tl8.349-8.37c3.092-3.1,4.1-7.489,3.045-11.44L26.461,45.766z M58.481,5.401c-4.611-4.623-12.086-4.623-16.697,0l-8.349,8.37\r\n\t\t\t\tc-3.082,3.09-4.093,7.462-3.054,11.403l7.221-7.221l0.006,0.006c0.001-0.001,0.001-0.002,0.002-0.002l8.349-8.37\r\n\t\t\t\tc2.305-2.311,6.043-2.311,8.349,0c2.305,2.311,2.305,6.059,0,8.37l-8.349,8.37c-0.097,0.098-0.211,0.167-0.313,0.256l-6.97,6.97\r\n\t\t\t\tc3.953,1.078,8.353,0.071,11.457-3.041l8.349-8.37C63.091,17.518,63.091,10.023,58.481,5.401z M42,19\r\n\t\t\t\tc-0.868,0-1.644,0.374-2.192,0.964L19.964,39.808C19.375,40.356,19,41.132,19,42c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.836,0,1.591-0.344,2.135-0.896l0.009,0.009l20-20l-0.009-0.009C44.669,23.563,45,22.82,45,22C45,20.343,43.657,19,42,19z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26.461,45.766c-0.056,0.061-0.096,0.131-0.155,0.19l-8.349,8.37\r\n\t\t\t\tc-2.306,2.311-6.043,2.311-8.349,0c-2.305-2.311-2.305-6.059,0-8.37l8.349-8.37c0.018-0.018,0.041-0.03,0.059-0.049l7.187-7.187\r\n\t\t\t\tc-3.943-1.062-8.326-0.052-11.421,3.05l-8.349,8.37c-4.611,4.623-4.611,12.118,0,16.74c4.611,4.623,12.087,4.623,16.697,0\r\n\t\t\t\tl8.349-8.37c3.092-3.1,4.1-7.489,3.045-11.44L26.461,45.766z M58.481,5.401c-4.611-4.623-12.086-4.623-16.697,0l-8.349,8.37\r\n\t\t\t\tc-3.082,3.09-4.093,7.462-3.054,11.403l7.221-7.221l0.006,0.006c0.001-0.001,0.001-0.002,0.002-0.002l8.349-8.37\r\n\t\t\t\tc2.305-2.311,6.043-2.311,8.349,0c2.305,2.311,2.305,6.059,0,8.37l-8.349,8.37c-0.097,0.098-0.211,0.167-0.313,0.256l-6.97,6.97\r\n\t\t\t\tc3.953,1.078,8.353,0.071,11.457-3.041l8.349-8.37C63.091,17.518,63.091,10.023,58.481,5.401z M42,19\r\n\t\t\t\tc-0.868,0-1.644,0.374-2.192,0.964L19.964,39.808C19.375,40.356,19,41.132,19,42c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.836,0,1.591-0.344,2.135-0.896l0.009,0.009l20-20l-0.009-0.009C44.669,23.563,45,22.82,45,22C45,20.343,43.657,19,42,19z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BIN_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BIN","display":"inline"},"children":[{"name":"g","attribs":{"id":"BIN","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M53,9H38V6c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v3H11\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v3h48v-3C56,10.343,54.657,9,53,9z M11,58c0,1.657,1.343,3,3,3h36c1.657,0,3-1.343,3-3V18H11V58z M41,27\r\n\t\t\t\tc0-1.657,1.343-3,3-3c1.657,0,3,1.343,3,3v25c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V27z M29,27c0-1.657,1.343-3,3-3\r\n\t\t\t\tc1.657,0,3,1.343,3,3v25c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V27z M17,27c0-1.657,1.343-3,3-3c1.657,0,3,1.343,3,3v25\r\n\t\t\t\tc0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V27z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M53,9H38V6c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v3H11\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v3h48v-3C56,10.343,54.657,9,53,9z M11,58c0,1.657,1.343,3,3,3h36c1.657,0,3-1.343,3-3V18H11V58z M41,27\r\n\t\t\t\tc0-1.657,1.343-3,3-3c1.657,0,3,1.343,3,3v25c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V27z M29,27c0-1.657,1.343-3,3-3\r\n\t\t\t\tc1.657,0,3,1.343,3,3v25c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V27z M17,27c0-1.657,1.343-3,3-3c1.657,0,3,1.343,3,3v25\r\n\t\t\t\tc0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V27z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"EQUALIZER_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"EQUALIZER","display":"inline"},"children":[{"name":"g","attribs":{"id":"EQUALIZER","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M13,23H7c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h6c1.657,0,3-1.343,3-3\r\n\t\t\t\tV26C16,24.343,14.657,23,13,23z M13,3c0-1.657-1.343-3-3-3C8.343,0,7,1.343,7,3v17h6V3z M35,3c0-1.657-1.343-3-3-3s-3,1.343-3,3\r\n\t\t\t\tv25h6V3z M57,3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v9h6V3z M7,61c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V44H7V61z M57,15\r\n\t\t\t\th-6c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h6c1.657,0,3-1.343,3-3V18C60,16.343,58.657,15,57,15z M51,61\r\n\t\t\t\tc0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V36h-6V61z M29,61c0,1.657,1.343,3,3,3s3-1.343,3-3v-9h-6V61z M35,31h-6\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h6c1.657,0,3-1.343,3-3V34C38,32.343,36.657,31,35,31z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M13,23H7c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h6c1.657,0,3-1.343,3-3\r\n\t\t\t\tV26C16,24.343,14.657,23,13,23z M13,3c0-1.657-1.343-3-3-3C8.343,0,7,1.343,7,3v17h6V3z M35,3c0-1.657-1.343-3-3-3s-3,1.343-3,3\r\n\t\t\t\tv25h6V3z M57,3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v9h6V3z M7,61c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V44H7V61z M57,15\r\n\t\t\t\th-6c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h6c1.657,0,3-1.343,3-3V18C60,16.343,58.657,15,57,15z M51,61\r\n\t\t\t\tc0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V36h-6V61z M29,61c0,1.657,1.343,3,3,3s3-1.343,3-3v-9h-6V61z M35,31h-6\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h6c1.657,0,3-1.343,3-3V34C38,32.343,36.657,31,35,31z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MORE_2_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MORE_2","display":"inline"},"children":[{"name":"g","attribs":{"id":"MORE_2","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31.998,26c-3.314,0-6.001,2.687-6.001,6.001c0,3.314,2.687,6.001,6.001,6.001\r\n\t\t\t\tc3.315,0,6.002-2.687,6.002-6.001C38,28.687,35.313,26,31.998,26z M31.998,19.001c3.315,0,6.002-2.687,6.002-6.001\r\n\t\t\t\tC38,9.687,35.313,7,31.998,7c-3.314,0-6.001,2.686-6.001,6.001C25.997,16.315,28.684,19.001,31.998,19.001z M31.998,45\r\n\t\t\t\tc-3.314,0-6.001,2.687-6.001,6.001c0,3.314,2.687,6.001,6.001,6.001c3.315,0,6.002-2.687,6.002-6.001\r\n\t\t\t\tC38,47.687,35.313,45,31.998,45z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31.998,26c-3.314,0-6.001,2.687-6.001,6.001c0,3.314,2.687,6.001,6.001,6.001\r\n\t\t\t\tc3.315,0,6.002-2.687,6.002-6.001C38,28.687,35.313,26,31.998,26z M31.998,19.001c3.315,0,6.002-2.687,6.002-6.001\r\n\t\t\t\tC38,9.687,35.313,7,31.998,7c-3.314,0-6.001,2.686-6.001,6.001C25.997,16.315,28.684,19.001,31.998,19.001z M31.998,45\r\n\t\t\t\tc-3.314,0-6.001,2.687-6.001,6.001c0,3.314,2.687,6.001,6.001,6.001c3.315,0,6.002-2.687,6.002-6.001\r\n\t\t\t\tC38,47.687,35.313,45,31.998,45z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"TEXT__x2F__RIGHT_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"TEXT__x2F__RIGHT","display":"inline"},"children":[{"name":"g","attribs":{"id":"TEXT__x2F__RIGHT","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,53H21c-1.657,0-3,1.343-3,3s1.343,3,3,3h40c1.657,0,3-1.343,3-3\r\n\t\t\t\tS62.657,53,61,53z M3,11h58c1.657,0,3-1.343,3-3s-1.343-3-3-3H3C1.343,5,0,6.343,0,8S1.343,11,3,11z M61,37H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,38.343,62.657,37,61,37z M61,21H15c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h5.999c0,0,0,0,0.001,0h40c1.657,0,3-1.343,3-3C64,22.343,62.657,21,61,21z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,53H21c-1.657,0-3,1.343-3,3s1.343,3,3,3h40c1.657,0,3-1.343,3-3\r\n\t\t\t\tS62.657,53,61,53z M3,11h58c1.657,0,3-1.343,3-3s-1.343-3-3-3H3C1.343,5,0,6.343,0,8S1.343,11,3,11z M61,37H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,38.343,62.657,37,61,37z M61,21H15c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h5.999c0,0,0,0,0.001,0h40c1.657,0,3-1.343,3-3C64,22.343,62.657,21,61,21z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"TEXT__x2F__CENTER_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"TEXT__x2F__CENTER","display":"inline"},"children":[{"name":"g","attribs":{"id":"TEXT__x2F__CENTER","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M3,11h58c1.657,0,3-1.343,3-3s-1.343-3-3-3H3C1.343,5,0,6.343,0,8\r\n\t\t\t\tS1.343,11,3,11z M15,21c-1.657,0-3,1.343-3,3s1.343,3,3,3h5.999c0,0,0,0,0.001,0h22c0,0,0,0,0.001,0H49c1.657,0,3-1.343,3-3\r\n\t\t\t\ts-1.343-3-3-3H15z M61,37H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,38.343,62.657,37,61,37z M43,53\r\n\t\t\t\tH21c-1.657,0-3,1.343-3,3s1.343,3,3,3h22c1.657,0,3-1.343,3-3S44.657,53,43,53z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M3,11h58c1.657,0,3-1.343,3-3s-1.343-3-3-3H3C1.343,5,0,6.343,0,8\r\n\t\t\t\tS1.343,11,3,11z M15,21c-1.657,0-3,1.343-3,3s1.343,3,3,3h5.999c0,0,0,0,0.001,0h22c0,0,0,0,0.001,0H49c1.657,0,3-1.343,3-3\r\n\t\t\t\ts-1.343-3-3-3H15z M61,37H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,38.343,62.657,37,61,37z M43,53\r\n\t\t\t\tH21c-1.657,0-3,1.343-3,3s1.343,3,3,3h22c1.657,0,3-1.343,3-3S44.657,53,43,53z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"TEXT__x2F__LEFT_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"TEXT__x2F__LEFT","display":"inline"},"children":[{"name":"g","attribs":{"id":"TEXT__x2F__LEFT","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M3,27h40c0,0,0,0,0.001,0H49c1.657,0,3-1.343,3-3s-1.343-3-3-3H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3C0,25.657,1.343,27,3,27z M3,11h58c1.657,0,3-1.343,3-3s-1.343-3-3-3H3C1.343,5,0,6.343,0,8S1.343,11,3,11z\r\n\t\t\t\t M61,37H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,38.343,62.657,37,61,37z M43,53H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h40c1.657,0,3-1.343,3-3S44.657,53,43,53z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M3,27h40c0,0,0,0,0.001,0H49c1.657,0,3-1.343,3-3s-1.343-3-3-3H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3C0,25.657,1.343,27,3,27z M3,11h58c1.657,0,3-1.343,3-3s-1.343-3-3-3H3C1.343,5,0,6.343,0,8S1.343,11,3,11z\r\n\t\t\t\t M61,37H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,38.343,62.657,37,61,37z M43,53H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h40c1.657,0,3-1.343,3-3S44.657,53,43,53z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"TEXT__x2F__JUSTIFY_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"TEXT__x2F__JUSTIFY","display":"inline"},"children":[{"name":"g","attribs":{"id":"TEXT__x2F__JUSTIFY","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M3,11h58c1.657,0,3-1.343,3-3s-1.343-3-3-3H3C1.343,5,0,6.343,0,8\r\n\t\t\t\tS1.343,11,3,11z M61,53H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h58c1.657,0,3-1.343,3-3S62.657,53,61,53z M61,21H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,22.343,62.657,21,61,21z M61,37H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,38.343,62.657,37,61,37z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M3,11h58c1.657,0,3-1.343,3-3s-1.343-3-3-3H3C1.343,5,0,6.343,0,8\r\n\t\t\t\tS1.343,11,3,11z M61,53H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h58c1.657,0,3-1.343,3-3S62.657,53,61,53z M61,21H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,22.343,62.657,21,61,21z M61,37H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,38.343,62.657,37,61,37z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BATTERY_FULL_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BATTERY_FULL","display":"inline"},"children":[{"name":"g","attribs":{"id":"BATTERY_FULL","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,26v-6c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v24c0,1.657,1.343,3,3,3\r\n\t\t\t\th55c1.657,0,3-1.343,3-3v-6c1.657,0,3-1.343,3-3v-6C64,27.343,62.657,26,61,26z M55,41H6V23h49V41z M52,26H9v12h43V26z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,26v-6c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v24c0,1.657,1.343,3,3,3\r\n\t\t\t\th55c1.657,0,3-1.343,3-3v-6c1.657,0,3-1.343,3-3v-6C64,27.343,62.657,26,61,26z M55,41H6V23h49V41z M52,26H9v12h43V26z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BATTERY__x2F__2_x2F_3_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BATTERY__x2F__2_x2F_3","display":"inline"},"children":[{"name":"g","attribs":{"id":"BATTERY__x2F__2_x2F_3","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M37,26H9v12h28V26z M61,26v-6c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v24\r\n\t\t\t\tc0,1.657,1.343,3,3,3h55c1.657,0,3-1.343,3-3v-6c1.657,0,3-1.343,3-3v-6C64,27.343,62.657,26,61,26z M55,41H6V23h49V41z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M37,26H9v12h28V26z M61,26v-6c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v24\r\n\t\t\t\tc0,1.657,1.343,3,3,3h55c1.657,0,3-1.343,3-3v-6c1.657,0,3-1.343,3-3v-6C64,27.343,62.657,26,61,26z M55,41H6V23h49V41z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BATTERY__x2F__1_x2F_3_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BATTERY__x2F__1_x2F_3","display":"inline"},"children":[{"name":"g","attribs":{"id":"BATTERY__x2F__1_x2F_3","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M22,26H9v12h13V26z M61,26v-6c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v24\r\n\t\t\t\tc0,1.657,1.343,3,3,3h55c1.657,0,3-1.343,3-3v-6c1.657,0,3-1.343,3-3v-6C64,27.343,62.657,26,61,26z M55,41H6V23h49V41z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M22,26H9v12h13V26z M61,26v-6c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v24\r\n\t\t\t\tc0,1.657,1.343,3,3,3h55c1.657,0,3-1.343,3-3v-6c1.657,0,3-1.343,3-3v-6C64,27.343,62.657,26,61,26z M55,41H6V23h49V41z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BATTERY__x2F__EMPTY_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BATTERY__x2F__EMPTY","display":"inline"},"children":[{"name":"g","attribs":{"id":"BATTERY__x2F__EMPTY","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,26v-6c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v24c0,1.657,1.343,3,3,3\r\n\t\t\t\th55c1.657,0,3-1.343,3-3v-6c1.657,0,3-1.343,3-3v-6C64,27.343,62.657,26,61,26z M55,41H6V23h49V41z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,26v-6c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v24c0,1.657,1.343,3,3,3\r\n\t\t\t\th55c1.657,0,3-1.343,3-3v-6c1.657,0,3-1.343,3-3v-6C64,27.343,62.657,26,61,26z M55,41H6V23h49V41z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"STAR_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"STAR","display":"inline"},"children":[{"name":"g","attribs":{"id":"STAR","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M64,26c0-1.657-1.343-3-3-3H41.047L34.869,4.12C34.492,2.893,33.351,2,32,2\r\n\t\t\t\tc-1.35,0-2.492,0.892-2.868,2.12L22.953,23H3c-1.657,0-3,1.343-3,3c0,1,0.49,1.885,1.242,2.43l0,0l16.118,11.66l-6.209,18.971\r\n\t\t\t\tC11.053,59.357,11,59.672,11,60c0,1.657,1.343,3,3,3c0.657,0,1.263-0.213,1.758-0.571l0.001,0.001L32,50.681l16.242,11.749\r\n\t\t\t\tl0.001-0.001C48.737,62.788,49.343,63,50,63c1.657,0,3-1.343,3-3c0-0.328-0.053-0.643-0.151-0.938L46.641,40.09l16.118-11.66l0,0\r\n\t\t\t\tC63.51,27.885,64,27,64,26z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M64,26c0-1.657-1.343-3-3-3H41.047L34.869,4.12C34.492,2.893,33.351,2,32,2\r\n\t\t\t\tc-1.35,0-2.492,0.892-2.868,2.12L22.953,23H3c-1.657,0-3,1.343-3,3c0,1,0.49,1.885,1.242,2.43l0,0l16.118,11.66l-6.209,18.971\r\n\t\t\t\tC11.053,59.357,11,59.672,11,60c0,1.657,1.343,3,3,3c0.657,0,1.263-0.213,1.758-0.571l0.001,0.001L32,50.681l16.242,11.749\r\n\t\t\t\tl0.001-0.001C48.737,62.788,49.343,63,50,63c1.657,0,3-1.343,3-3c0-0.328-0.053-0.643-0.151-0.938L46.641,40.09l16.118-11.66l0,0\r\n\t\t\t\tC63.51,27.885,64,27,64,26z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SPEECH_4_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SPEECH_4","display":"inline"},"children":[{"name":"g","attribs":{"id":"SPEECH_4","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M51.841,47.327L45.515,41H19c-3.314,0-6-2.686-6-6V14H4c-1.657,0-3,1.343-3,3\r\n\t\t\t\tv34c0,1.656,1.341,2.998,2.996,3H7.5v0H8v6c0,0.207,0.021,0.409,0.061,0.605c0.028,0.136,0.076,0.264,0.122,0.393\r\n\t\t\t\tc0.02,0.056,0.03,0.116,0.053,0.17c0.048,0.115,0.115,0.219,0.177,0.326c0.035,0.06,0.061,0.126,0.1,0.184\r\n\t\t\t\tc0.098,0.145,0.212,0.278,0.333,0.404c0.012,0.012,0.021,0.028,0.033,0.04c0.534,0.535,1.271,0.865,2.084,0.875\r\n\t\t\t\tC10.976,62.996,10.987,63,11,63c0.828,0,1.578-0.336,2.121-0.879L21.243,54H22v0h3v0h6.9v0H53v0c1.657,0,3-1.343,3-3v-2\r\n\t\t\t\tc-1.614,0-3.072-0.645-4.151-1.681L51.841,47.327z M61,2H19c-1.657,0-3,1.343-3,3v30c0,1.657,1.343,3,3,3h27.757l7.121,7.121\r\n\t\t\t\tC54.422,45.664,55.172,46,56,46c0.013,0,0.025-0.004,0.037-0.004c0.813-0.01,1.55-0.34,2.084-0.875\r\n\t\t\t\tc0.012-0.012,0.021-0.028,0.033-0.04c0.121-0.126,0.235-0.259,0.333-0.404c0.039-0.057,0.065-0.123,0.1-0.184\r\n\t\t\t\tc0.062-0.107,0.128-0.211,0.177-0.326c0.023-0.054,0.033-0.114,0.053-0.17c0.046-0.129,0.094-0.257,0.122-0.393\r\n\t\t\t\tC58.979,43.409,59,43.207,59,43v-5h2c1.657,0,3-1.343,3-3V5C64,3.343,62.657,2,61,2z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M51.841,47.327L45.515,41H19c-3.314,0-6-2.686-6-6V14H4c-1.657,0-3,1.343-3,3\r\n\t\t\t\tv34c0,1.656,1.341,2.998,2.996,3H7.5v0H8v6c0,0.207,0.021,0.409,0.061,0.605c0.028,0.136,0.076,0.264,0.122,0.393\r\n\t\t\t\tc0.02,0.056,0.03,0.116,0.053,0.17c0.048,0.115,0.115,0.219,0.177,0.326c0.035,0.06,0.061,0.126,0.1,0.184\r\n\t\t\t\tc0.098,0.145,0.212,0.278,0.333,0.404c0.012,0.012,0.021,0.028,0.033,0.04c0.534,0.535,1.271,0.865,2.084,0.875\r\n\t\t\t\tC10.976,62.996,10.987,63,11,63c0.828,0,1.578-0.336,2.121-0.879L21.243,54H22v0h3v0h6.9v0H53v0c1.657,0,3-1.343,3-3v-2\r\n\t\t\t\tc-1.614,0-3.072-0.645-4.151-1.681L51.841,47.327z M61,2H19c-1.657,0-3,1.343-3,3v30c0,1.657,1.343,3,3,3h27.757l7.121,7.121\r\n\t\t\t\tC54.422,45.664,55.172,46,56,46c0.013,0,0.025-0.004,0.037-0.004c0.813-0.01,1.55-0.34,2.084-0.875\r\n\t\t\t\tc0.012-0.012,0.021-0.028,0.033-0.04c0.121-0.126,0.235-0.259,0.333-0.404c0.039-0.057,0.065-0.123,0.1-0.184\r\n\t\t\t\tc0.062-0.107,0.128-0.211,0.177-0.326c0.023-0.054,0.033-0.114,0.053-0.17c0.046-0.129,0.094-0.257,0.122-0.393\r\n\t\t\t\tC58.979,43.409,59,43.207,59,43v-5h2c1.657,0,3-1.343,3-3V5C64,3.343,62.657,2,61,2z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SPEECH_3_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SPEECH_3","display":"inline"},"children":[{"name":"g","attribs":{"id":"SPEECH_3","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,3H3C1.343,3,0,4.343,0,6v43c0,1.657,1.343,2.999,2.999,3H7v6\r\n\t\t\t\tc0,0.207,0.021,0.409,0.061,0.604c0.028,0.136,0.076,0.264,0.122,0.393c0.02,0.056,0.03,0.116,0.053,0.17\r\n\t\t\t\tc0.049,0.115,0.115,0.219,0.177,0.326c0.035,0.06,0.061,0.126,0.1,0.184c0.098,0.145,0.212,0.278,0.333,0.404\r\n\t\t\t\tc0.012,0.012,0.021,0.028,0.033,0.04c0.535,0.534,1.271,0.865,2.084,0.875C9.976,60.997,9.987,61,10,61\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L20.243,52H61c1.657,0,3-1.343,3-3V6C64,4.343,62.657,3,61,3z M17,34c-3.314,0-6-2.686-6-6\r\n\t\t\t\tc0-3.314,2.686-6,6-6s6,2.686,6,6C23,31.314,20.314,34,17,34z M32,34c-3.314,0-6-2.686-6-6c0-3.314,2.686-6,6-6s6,2.686,6,6\r\n\t\t\t\tC38,31.314,35.314,34,32,34z M47,34c-3.314,0-6-2.686-6-6c0-3.314,2.686-6,6-6s6,2.686,6,6C53,31.314,50.314,34,47,34z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,3H3C1.343,3,0,4.343,0,6v43c0,1.657,1.343,2.999,2.999,3H7v6\r\n\t\t\t\tc0,0.207,0.021,0.409,0.061,0.604c0.028,0.136,0.076,0.264,0.122,0.393c0.02,0.056,0.03,0.116,0.053,0.17\r\n\t\t\t\tc0.049,0.115,0.115,0.219,0.177,0.326c0.035,0.06,0.061,0.126,0.1,0.184c0.098,0.145,0.212,0.278,0.333,0.404\r\n\t\t\t\tc0.012,0.012,0.021,0.028,0.033,0.04c0.535,0.534,1.271,0.865,2.084,0.875C9.976,60.997,9.987,61,10,61\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L20.243,52H61c1.657,0,3-1.343,3-3V6C64,4.343,62.657,3,61,3z M17,34c-3.314,0-6-2.686-6-6\r\n\t\t\t\tc0-3.314,2.686-6,6-6s6,2.686,6,6C23,31.314,20.314,34,17,34z M32,34c-3.314,0-6-2.686-6-6c0-3.314,2.686-6,6-6s6,2.686,6,6\r\n\t\t\t\tC38,31.314,35.314,34,32,34z M47,34c-3.314,0-6-2.686-6-6c0-3.314,2.686-6,6-6s6,2.686,6,6C53,31.314,50.314,34,47,34z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SPEECH_2_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SPEECH_2","display":"inline"},"children":[{"name":"g","attribs":{"id":"SPEECH_2","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,3H3C1.343,3,0,4.343,0,6v43c0,1.657,1.343,3,2.999,3H7v6\r\n\t\t\t\tc0,0.207,0.021,0.409,0.061,0.604c0.028,0.136,0.076,0.264,0.122,0.393c0.02,0.056,0.03,0.116,0.053,0.17\r\n\t\t\t\tc0.049,0.115,0.115,0.219,0.177,0.326c0.035,0.06,0.061,0.126,0.1,0.184c0.098,0.145,0.212,0.278,0.333,0.404\r\n\t\t\t\tc0.012,0.012,0.021,0.028,0.033,0.04c0.535,0.534,1.271,0.865,2.084,0.875C9.976,60.997,9.987,61,10,61\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L20.243,52H61c1.657,0,3-1.343,3-3V6C64,4.343,62.657,3,61,3z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,3H3C1.343,3,0,4.343,0,6v43c0,1.657,1.343,3,2.999,3H7v6\r\n\t\t\t\tc0,0.207,0.021,0.409,0.061,0.604c0.028,0.136,0.076,0.264,0.122,0.393c0.02,0.056,0.03,0.116,0.053,0.17\r\n\t\t\t\tc0.049,0.115,0.115,0.219,0.177,0.326c0.035,0.06,0.061,0.126,0.1,0.184c0.098,0.145,0.212,0.278,0.333,0.404\r\n\t\t\t\tc0.012,0.012,0.021,0.028,0.033,0.04c0.535,0.534,1.271,0.865,2.084,0.875C9.976,60.997,9.987,61,10,61\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L20.243,52H61c1.657,0,3-1.343,3-3V6C64,4.343,62.657,3,61,3z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SPEECH_1_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SPEECH_1","display":"inline"},"children":[{"name":"g","attribs":{"id":"SPEECH_1","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,3H3C1.343,3,0,4.343,0,6v43c0,1.657,1.343,3,3,3h4v6\r\n\t\t\t\tc0,0.207,0.021,0.409,0.061,0.604c0.028,0.136,0.076,0.264,0.122,0.393c0.02,0.056,0.03,0.116,0.053,0.17\r\n\t\t\t\tc0.048,0.115,0.115,0.219,0.177,0.326c0.035,0.06,0.061,0.126,0.1,0.184c0.098,0.145,0.212,0.278,0.333,0.404\r\n\t\t\t\tc0.012,0.012,0.021,0.028,0.033,0.04c0.534,0.534,1.271,0.865,2.084,0.875C9.976,60.997,9.987,61,10,61\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L20.243,52H61c1.657,0,3-1.343,3-3V6C64,4.343,62.657,3,61,3z M58,46H17.757L13,50.757V46H6V9\r\n\t\t\t\th52V46z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,3H3C1.343,3,0,4.343,0,6v43c0,1.657,1.343,3,3,3h4v6\r\n\t\t\t\tc0,0.207,0.021,0.409,0.061,0.604c0.028,0.136,0.076,0.264,0.122,0.393c0.02,0.056,0.03,0.116,0.053,0.17\r\n\t\t\t\tc0.048,0.115,0.115,0.219,0.177,0.326c0.035,0.06,0.061,0.126,0.1,0.184c0.098,0.145,0.212,0.278,0.333,0.404\r\n\t\t\t\tc0.012,0.012,0.021,0.028,0.033,0.04c0.534,0.534,1.271,0.865,2.084,0.875C9.976,60.997,9.987,61,10,61\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L20.243,52H61c1.657,0,3-1.343,3-3V6C64,4.343,62.657,3,61,3z M58,46H17.757L13,50.757V46H6V9\r\n\t\t\t\th52V46z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SPEECH_BUBBLES_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SPEECH_BUBBLES","display":"inline"},"children":[{"name":"g","attribs":{"id":"SPEECH_BUBBLES","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46.568,34.581c0,0.005,0,0.01,0,0.015c-1.301,0.2-2.629,0.53-3.984,0.477\r\n\t\t\t\tc-12.036-0.75-19.873-8.212-20.379-17.122c-0.068-2.09,0.307-4.107,1.045-5.986C9.787,14.332-0.04,23.094-0.04,33.571\r\n\t\t\t\tc0,6.961,4.177,13.176,11.123,17.257c1.573,0.924,1.752,7.862-7.097,12.05c0,0,12.529,1.976,20.473-8.067\r\n\t\t\t\tc1.964,0.282,3.996,0.883,6.075,0.883c14.557,0,24.238-7.163,26.777-16.896c-2.531-0.059-6.918-0.737-10.39-4.308L46.568,34.581z\r\n\t\t\t\t M56.72,27.814c4.55-2.673,7.286-6.744,7.286-11.304c0-8.052-8.85-14.579-20.028-14.579c-11.178,0-17.992,6.527-17.992,14.579\r\n\t\t\t\tc0,8.052,6.813,14.492,17.992,14.492c1.362,0,2.693-0.394,3.979-0.579c5.204,6.578,13.411,5.284,13.411,5.284\r\n\t\t\t\tC55.573,32.964,55.69,28.419,56.72,27.814z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46.568,34.581c0,0.005,0,0.01,0,0.015c-1.301,0.2-2.629,0.53-3.984,0.477\r\n\t\t\t\tc-12.036-0.75-19.873-8.212-20.379-17.122c-0.068-2.09,0.307-4.107,1.045-5.986C9.787,14.332-0.04,23.094-0.04,33.571\r\n\t\t\t\tc0,6.961,4.177,13.176,11.123,17.257c1.573,0.924,1.752,7.862-7.097,12.05c0,0,12.529,1.976,20.473-8.067\r\n\t\t\t\tc1.964,0.282,3.996,0.883,6.075,0.883c14.557,0,24.238-7.163,26.777-16.896c-2.531-0.059-6.918-0.737-10.39-4.308L46.568,34.581z\r\n\t\t\t\t M56.72,27.814c4.55-2.673,7.286-6.744,7.286-11.304c0-8.052-8.85-14.579-20.028-14.579c-11.178,0-17.992,6.527-17.992,14.579\r\n\t\t\t\tc0,8.052,6.813,14.492,17.992,14.492c1.362,0,2.693-0.394,3.979-0.579c5.204,6.578,13.411,5.284,13.411,5.284\r\n\t\t\t\tC55.573,32.964,55.69,28.419,56.72,27.814z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SPEECH_BUBBLE_2_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SPEECH_BUBBLE_2","display":"inline"},"children":[{"name":"g","attribs":{"id":"SPEECH_BUBBLE_2","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M33.697,3.963c-18.83,0-33.738,10.996-33.738,24.56\r\n\t\t\t\tc0,7.681,4.609,14.539,12.274,19.043c1.736,1.02,1.934,8.675-7.831,13.297c0,0,13.825,2.18,22.591-8.902\r\n\t\t\t\tc2.167,0.311,4.409,0.975,6.704,0.975c18.83,0,30.307-10.848,30.307-24.412C64.004,14.959,52.527,3.963,33.697,3.963z M17,35\r\n\t\t\t\tc-3.314,0-6-2.686-6-6c0-3.314,2.686-6,6-6s6,2.686,6,6C23,32.314,20.314,35,17,35z M32,35c-3.314,0-6-2.686-6-6\r\n\t\t\t\tc0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6C38,32.314,35.314,35,32,35z M47,35c-3.314,0-6-2.686-6-6c0-3.314,2.686-6,6-6\r\n\t\t\t\tc3.314,0,6,2.686,6,6C53,32.314,50.314,35,47,35z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M33.697,3.963c-18.83,0-33.738,10.996-33.738,24.56\r\n\t\t\t\tc0,7.681,4.609,14.539,12.274,19.043c1.736,1.02,1.934,8.675-7.831,13.297c0,0,13.825,2.18,22.591-8.902\r\n\t\t\t\tc2.167,0.311,4.409,0.975,6.704,0.975c18.83,0,30.307-10.848,30.307-24.412C64.004,14.959,52.527,3.963,33.697,3.963z M17,35\r\n\t\t\t\tc-3.314,0-6-2.686-6-6c0-3.314,2.686-6,6-6s6,2.686,6,6C23,32.314,20.314,35,17,35z M32,35c-3.314,0-6-2.686-6-6\r\n\t\t\t\tc0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6C38,32.314,35.314,35,32,35z M47,35c-3.314,0-6-2.686-6-6c0-3.314,2.686-6,6-6\r\n\t\t\t\tc3.314,0,6,2.686,6,6C53,32.314,50.314,35,47,35z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SPEECH_BUBBLE_1_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SPEECH_BUBBLE_1","display":"inline"},"children":[{"name":"g","attribs":{"id":"SPEECH_BUBBLE_1","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M33.697,3.963c-18.83,0-33.738,10.996-33.738,24.56\r\n\t\t\t\tc0,7.681,4.609,14.539,12.274,19.043c1.736,1.02,1.934,8.675-7.831,13.297c0,0,13.825,2.18,22.591-8.902\r\n\t\t\t\tc2.167,0.311,4.409,0.975,6.704,0.975c18.83,0,30.307-10.848,30.307-24.412C64.004,14.959,52.527,3.963,33.697,3.963z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M33.697,3.963c-18.83,0-33.738,10.996-33.738,24.56\r\n\t\t\t\tc0,7.681,4.609,14.539,12.274,19.043c1.736,1.02,1.934,8.675-7.831,13.297c0,0,13.825,2.18,22.591-8.902\r\n\t\t\t\tc2.167,0.311,4.409,0.975,6.704,0.975c18.83,0,30.307-10.848,30.307-24.412C64.004,14.959,52.527,3.963,33.697,3.963z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"WIFI_3_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"WIFI_3","display":"inline"},"children":[{"name":"g","attribs":{"id":"WIFI_3","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,49c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6c3.314,0,6-2.686,6-6\r\n\t\t\t\tC38,51.686,35.314,49,32,49z M32,34c-5.343,0-10.062,2.629-12.968,6.654l3.302,4.256C24.519,41.938,28.029,40,32,40\r\n\t\t\t\tc3.971,0,7.482,1.937,9.666,4.91l3.302-4.256C42.062,36.629,37.343,34,32,34z M32,4C19.747,4,8.622,8.8,0.378,16.61l3.696,4.764\r\n\t\t\t\tC11.283,14.34,21.132,10,32,10c10.868,0,20.717,4.34,27.926,11.374l3.696-4.764C55.378,8.8,44.253,4,32,4z M9.637,28.544\r\n\t\t\t\tl3.739,4.819C17.954,28.242,24.59,25,32,25c7.41,0,14.046,3.242,18.624,8.364l3.739-4.819C48.721,22.666,40.791,19,32,19\r\n\t\t\t\tC23.209,19,15.279,22.666,9.637,28.544z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,49c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6c3.314,0,6-2.686,6-6\r\n\t\t\t\tC38,51.686,35.314,49,32,49z M32,34c-5.343,0-10.062,2.629-12.968,6.654l3.302,4.256C24.519,41.938,28.029,40,32,40\r\n\t\t\t\tc3.971,0,7.482,1.937,9.666,4.91l3.302-4.256C42.062,36.629,37.343,34,32,34z M32,4C19.747,4,8.622,8.8,0.378,16.61l3.696,4.764\r\n\t\t\t\tC11.283,14.34,21.132,10,32,10c10.868,0,20.717,4.34,27.926,11.374l3.696-4.764C55.378,8.8,44.253,4,32,4z M9.637,28.544\r\n\t\t\t\tl3.739,4.819C17.954,28.242,24.59,25,32,25c7.41,0,14.046,3.242,18.624,8.364l3.739-4.819C48.721,22.666,40.791,19,32,19\r\n\t\t\t\tC23.209,19,15.279,22.666,9.637,28.544z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"WIFI_2_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"WIFI_2","display":"inline"},"children":[{"name":"g","attribs":{"id":"WIFI_2","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,41c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6s6-2.686,6-6\r\n\t\t\t\tC38,43.686,35.314,41,32,41z M32,26c-5.343,0-10.062,2.629-12.968,6.654l3.302,4.256C24.519,33.938,28.029,32,32,32\r\n\t\t\t\tc3.971,0,7.482,1.937,9.666,4.91l3.302-4.256C42.062,28.629,37.343,26,32,26z M32,11c-8.791,0-16.721,3.665-22.363,9.544\r\n\t\t\t\tl3.739,4.819C17.954,20.242,24.59,17,32,17c7.41,0,14.046,3.242,18.624,8.364l3.739-4.819C48.721,14.666,40.791,11,32,11z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,41c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6s6-2.686,6-6\r\n\t\t\t\tC38,43.686,35.314,41,32,41z M32,26c-5.343,0-10.062,2.629-12.968,6.654l3.302,4.256C24.519,33.938,28.029,32,32,32\r\n\t\t\t\tc3.971,0,7.482,1.937,9.666,4.91l3.302-4.256C42.062,28.629,37.343,26,32,26z M32,11c-8.791,0-16.721,3.665-22.363,9.544\r\n\t\t\t\tl3.739,4.819C17.954,20.242,24.59,17,32,17c7.41,0,14.046,3.242,18.624,8.364l3.739-4.819C48.721,14.666,40.791,11,32,11z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"WIFI_1_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"WIFI_1","display":"inline"},"children":[{"name":"g","attribs":{"id":"WIFI_1","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,34c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6s6-2.686,6-6\r\n\t\t\t\tC38,36.686,35.314,34,32,34z M32,19c-5.343,0-10.062,2.629-12.968,6.654l3.302,4.256C24.519,26.938,28.029,25,32,25\r\n\t\t\t\ts7.482,1.937,9.666,4.91l3.302-4.256C42.062,21.629,37.343,19,32,19z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,34c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6s6-2.686,6-6\r\n\t\t\t\tC38,36.686,35.314,34,32,34z M32,19c-5.343,0-10.062,2.629-12.968,6.654l3.302,4.256C24.519,26.938,28.029,25,32,25\r\n\t\t\t\ts7.482,1.937,9.666,4.91l3.302-4.256C42.062,21.629,37.343,19,32,19z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"VIEW__x2F__OFF_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"VIEW__x2F__OFF","display":"inline"},"children":[{"name":"g","attribs":{"id":"VIEW__x2F__OFF","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26.044,31.304l7.604-5.069C33.124,26.085,32.572,26,32,26\r\n\t\t\t\tC28.922,26,26.389,28.319,26.044,31.304z M58.32,16.755C58.729,16.487,59,16.025,59,15.5c0-0.828-0.672-1.5-1.5-1.5\r\n\t\t\t\tc-0.303,0-0.585,0.091-0.82,0.245l0-0.001l-0.018,0.012L4.679,48.245l0,0C4.271,48.513,4,48.975,4,49.5C4,50.328,4.672,51,5.5,51\r\n\t\t\t\tc0.303,0,0.585-0.091,0.82-0.245l0,0.001l0.018-0.012L58.32,16.755L58.32,16.755z M9.455,42.364L10,42l10.409-6.939\r\n\t\t\t\tC20.151,34.082,20,33.06,20,32c0-6.628,5.373-12,12-12c2.742,0,5.262,0.93,7.283,2.478L46,18l0.552-0.345\r\n\t\t\t\tc-2.648-1.317-5.415-2.367-8.308-2.996c-3.881-0.844-7.786-0.879-11.687-0.165c-3.549,0.649-6.969,2-10.17,3.674\r\n\t\t\t\tc-5.011,2.62-9.586,6.231-13.574,10.28c-0.738,0.749-1.472,1.514-2.143,2.328c-0.893,1.083-0.893,2.366,0,3.45\r\n\t\t\t\tc2.042,2.476,4.47,4.679,6.94,6.692C8.214,41.41,8.831,41.891,9.455,42.364z M63.997,32.379\r\n\t\t\t\tc-0.001-0.028-0.004-0.054-0.006-0.081c-0.001-0.014-0.003-0.028-0.004-0.041c-0.001-0.02-0.005-0.039-0.008-0.058\r\n\t\t\t\tc-0.002-0.023-0.005-0.046-0.009-0.068c-0.001-0.003-0.001-0.006-0.001-0.009c-0.079-0.506-0.312-0.981-0.669-1.346\r\n\t\t\t\tc-2.042-2.476-4.471-4.68-6.94-6.692c-0.677-0.552-1.367-1.092-2.069-1.618l-10.576,6.958C43.898,30.255,44,31.115,44,32\r\n\t\t\t\tc0,6.627-5.373,12-12,12c-2.615,0-5.026-0.845-6.997-2.265L17,47l-0.09,0.09c2.8,1.44,5.739,2.581,8.818,3.25\r\n\t\t\t\tc3.881,0.844,7.787,0.88,11.688,0.166c3.548-0.65,6.968-2,10.171-3.673c5.01-2.621,9.586-6.232,13.574-10.28\r\n\t\t\t\tc0.738-0.75,1.471-1.514,2.143-2.329c0.357-0.366,0.59-0.84,0.669-1.347c0-0.003,0.001-0.006,0.001-0.008\r\n\t\t\t\tc0.004-0.023,0.006-0.045,0.009-0.068c0.003-0.019,0.006-0.039,0.008-0.058c0.001-0.014,0.003-0.027,0.004-0.041\r\n\t\t\t\tc0.002-0.026,0.004-0.052,0.006-0.08c0.002-0.041,0.003-0.081,0.003-0.122C64.001,32.459,63.998,32.419,63.997,32.379z\r\n\t\t\t\t M37.861,33.276l-7.01,4.612C31.223,37.96,31.607,38,32,38C34.876,38,37.276,35.976,37.861,33.276z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26.044,31.304l7.604-5.069C33.124,26.085,32.572,26,32,26\r\n\t\t\t\tC28.922,26,26.389,28.319,26.044,31.304z M58.32,16.755C58.729,16.487,59,16.025,59,15.5c0-0.828-0.672-1.5-1.5-1.5\r\n\t\t\t\tc-0.303,0-0.585,0.091-0.82,0.245l0-0.001l-0.018,0.012L4.679,48.245l0,0C4.271,48.513,4,48.975,4,49.5C4,50.328,4.672,51,5.5,51\r\n\t\t\t\tc0.303,0,0.585-0.091,0.82-0.245l0,0.001l0.018-0.012L58.32,16.755L58.32,16.755z M9.455,42.364L10,42l10.409-6.939\r\n\t\t\t\tC20.151,34.082,20,33.06,20,32c0-6.628,5.373-12,12-12c2.742,0,5.262,0.93,7.283,2.478L46,18l0.552-0.345\r\n\t\t\t\tc-2.648-1.317-5.415-2.367-8.308-2.996c-3.881-0.844-7.786-0.879-11.687-0.165c-3.549,0.649-6.969,2-10.17,3.674\r\n\t\t\t\tc-5.011,2.62-9.586,6.231-13.574,10.28c-0.738,0.749-1.472,1.514-2.143,2.328c-0.893,1.083-0.893,2.366,0,3.45\r\n\t\t\t\tc2.042,2.476,4.47,4.679,6.94,6.692C8.214,41.41,8.831,41.891,9.455,42.364z M63.997,32.379\r\n\t\t\t\tc-0.001-0.028-0.004-0.054-0.006-0.081c-0.001-0.014-0.003-0.028-0.004-0.041c-0.001-0.02-0.005-0.039-0.008-0.058\r\n\t\t\t\tc-0.002-0.023-0.005-0.046-0.009-0.068c-0.001-0.003-0.001-0.006-0.001-0.009c-0.079-0.506-0.312-0.981-0.669-1.346\r\n\t\t\t\tc-2.042-2.476-4.471-4.68-6.94-6.692c-0.677-0.552-1.367-1.092-2.069-1.618l-10.576,6.958C43.898,30.255,44,31.115,44,32\r\n\t\t\t\tc0,6.627-5.373,12-12,12c-2.615,0-5.026-0.845-6.997-2.265L17,47l-0.09,0.09c2.8,1.44,5.739,2.581,8.818,3.25\r\n\t\t\t\tc3.881,0.844,7.787,0.88,11.688,0.166c3.548-0.65,6.968-2,10.171-3.673c5.01-2.621,9.586-6.232,13.574-10.28\r\n\t\t\t\tc0.738-0.75,1.471-1.514,2.143-2.329c0.357-0.366,0.59-0.84,0.669-1.347c0-0.003,0.001-0.006,0.001-0.008\r\n\t\t\t\tc0.004-0.023,0.006-0.045,0.009-0.068c0.003-0.019,0.006-0.039,0.008-0.058c0.001-0.014,0.003-0.027,0.004-0.041\r\n\t\t\t\tc0.002-0.026,0.004-0.052,0.006-0.08c0.002-0.041,0.003-0.081,0.003-0.122C64.001,32.459,63.998,32.419,63.997,32.379z\r\n\t\t\t\t M37.861,33.276l-7.01,4.612C31.223,37.96,31.607,38,32,38C34.876,38,37.276,35.976,37.861,33.276z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"VIEW_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"VIEW","display":"inline"},"children":[{"name":"g","attribs":{"id":"VIEW","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,26c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6s6-2.686,6-6\r\n\t\t\t\tC38,28.686,35.314,26,32,26z M63.997,32.379c-0.001-0.028-0.004-0.054-0.006-0.081c-0.001-0.014-0.002-0.028-0.004-0.041\r\n\t\t\t\tc-0.001-0.02-0.005-0.039-0.008-0.058c-0.003-0.023-0.005-0.046-0.009-0.068c-0.001-0.003-0.001-0.006-0.001-0.009\r\n\t\t\t\tc-0.079-0.506-0.312-0.981-0.669-1.346c-2.042-2.476-4.471-4.68-6.94-6.692c-5.319-4.337-11.403-7.964-18.117-9.425\r\n\t\t\t\tc-3.881-0.844-7.786-0.879-11.688-0.165c-3.549,0.649-6.969,2-10.17,3.674c-5.011,2.62-9.587,6.231-13.574,10.28\r\n\t\t\t\tc-0.738,0.749-1.472,1.514-2.143,2.328c-0.893,1.083-0.893,2.366,0,3.45c2.042,2.476,4.47,4.679,6.94,6.692\r\n\t\t\t\tc5.32,4.337,11.403,7.963,18.118,9.424c3.881,0.844,7.787,0.88,11.688,0.166c3.548-0.65,6.968-2,10.171-3.673\r\n\t\t\t\tc5.01-2.621,9.586-6.232,13.574-10.28c0.738-0.75,1.471-1.514,2.143-2.329c0.357-0.366,0.59-0.84,0.669-1.347\r\n\t\t\t\tc0-0.003,0.001-0.006,0.001-0.008c0.004-0.023,0.006-0.045,0.009-0.068c0.003-0.019,0.006-0.039,0.008-0.058\r\n\t\t\t\tc0.001-0.014,0.002-0.027,0.004-0.041c0.002-0.026,0.004-0.052,0.006-0.08c0.002-0.041,0.003-0.081,0.003-0.122\r\n\t\t\t\tC64.001,32.459,63.998,32.419,63.997,32.379z M32,44c-6.627,0-12-5.372-12-12c0-6.628,5.372-12,12-12s12,5.373,12,12\r\n\t\t\t\tC44,38.628,38.627,44,32,44z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,26c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6s6-2.686,6-6\r\n\t\t\t\tC38,28.686,35.314,26,32,26z M63.997,32.379c-0.001-0.028-0.004-0.054-0.006-0.081c-0.001-0.014-0.002-0.028-0.004-0.041\r\n\t\t\t\tc-0.001-0.02-0.005-0.039-0.008-0.058c-0.003-0.023-0.005-0.046-0.009-0.068c-0.001-0.003-0.001-0.006-0.001-0.009\r\n\t\t\t\tc-0.079-0.506-0.312-0.981-0.669-1.346c-2.042-2.476-4.471-4.68-6.94-6.692c-5.319-4.337-11.403-7.964-18.117-9.425\r\n\t\t\t\tc-3.881-0.844-7.786-0.879-11.688-0.165c-3.549,0.649-6.969,2-10.17,3.674c-5.011,2.62-9.587,6.231-13.574,10.28\r\n\t\t\t\tc-0.738,0.749-1.472,1.514-2.143,2.328c-0.893,1.083-0.893,2.366,0,3.45c2.042,2.476,4.47,4.679,6.94,6.692\r\n\t\t\t\tc5.32,4.337,11.403,7.963,18.118,9.424c3.881,0.844,7.787,0.88,11.688,0.166c3.548-0.65,6.968-2,10.171-3.673\r\n\t\t\t\tc5.01-2.621,9.586-6.232,13.574-10.28c0.738-0.75,1.471-1.514,2.143-2.329c0.357-0.366,0.59-0.84,0.669-1.347\r\n\t\t\t\tc0-0.003,0.001-0.006,0.001-0.008c0.004-0.023,0.006-0.045,0.009-0.068c0.003-0.019,0.006-0.039,0.008-0.058\r\n\t\t\t\tc0.001-0.014,0.002-0.027,0.004-0.041c0.002-0.026,0.004-0.052,0.006-0.08c0.002-0.041,0.003-0.081,0.003-0.122\r\n\t\t\t\tC64.001,32.459,63.998,32.419,63.997,32.379z M32,44c-6.627,0-12-5.372-12-12c0-6.628,5.372-12,12-12s12,5.373,12,12\r\n\t\t\t\tC44,38.628,38.627,44,32,44z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"VOLUME_3_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"VOLUME_3","display":"inline"},"children":[{"name":"g","attribs":{"id":"VOLUME_3","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M25,15c-0.721,0-1.374,0.265-1.891,0.689L23.1,15.678l-10.162,8.315H2.992\r\n\t\t\t\tv0.008C1.339,24.006,0,25.346,0,27v10c0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007C23.736,47.781,24.34,48,25,48\r\n\t\t\t\tc1.657,0,3-1.343,3-3V18C28,16.343,26.657,15,25,15z M36.903,17.926l-2.847,2.847C36.519,23.852,38,27.75,38,32\r\n\t\t\t\tc0,4.25-1.481,8.148-3.944,11.227l2.847,2.847C40.083,42.26,42,37.355,42,32C42,26.645,40.083,21.74,36.903,17.926z\r\n\t\t\t\t M44.701,10.128l-2.848,2.848C46.292,18.07,49,24.712,49,32c0,7.288-2.708,13.93-7.147,19.024l2.848,2.848\r\n\t\t\t\tC49.861,48.049,53,40.393,53,32C53,23.607,49.861,15.951,44.701,10.128z M52.493,2.336l-2.831,2.831\r\n\t\t\t\tC56.086,12.263,60,21.674,60,32c0,10.326-3.914,19.737-10.338,26.833l2.831,2.831C59.639,53.842,64,43.431,64,32\r\n\t\t\t\tC64,20.569,59.639,10.159,52.493,2.336z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M25,15c-0.721,0-1.374,0.265-1.891,0.689L23.1,15.678l-10.162,8.315H2.992\r\n\t\t\t\tv0.008C1.339,24.006,0,25.346,0,27v10c0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007C23.736,47.781,24.34,48,25,48\r\n\t\t\t\tc1.657,0,3-1.343,3-3V18C28,16.343,26.657,15,25,15z M36.903,17.926l-2.847,2.847C36.519,23.852,38,27.75,38,32\r\n\t\t\t\tc0,4.25-1.481,8.148-3.944,11.227l2.847,2.847C40.083,42.26,42,37.355,42,32C42,26.645,40.083,21.74,36.903,17.926z\r\n\t\t\t\t M44.701,10.128l-2.848,2.848C46.292,18.07,49,24.712,49,32c0,7.288-2.708,13.93-7.147,19.024l2.848,2.848\r\n\t\t\t\tC49.861,48.049,53,40.393,53,32C53,23.607,49.861,15.951,44.701,10.128z M52.493,2.336l-2.831,2.831\r\n\t\t\t\tC56.086,12.263,60,21.674,60,32c0,10.326-3.914,19.737-10.338,26.833l2.831,2.831C59.639,53.842,64,43.431,64,32\r\n\t\t\t\tC64,20.569,59.639,10.159,52.493,2.336z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"VOLUME_2_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"VOLUME_2","display":"inline"},"children":[{"name":"g","attribs":{"id":"VOLUME_2","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M50.701,10.128l-2.848,2.848C52.292,18.07,55,24.712,55,32\r\n\t\t\t\tc0,7.288-2.708,13.93-7.147,19.024l2.848,2.848C55.861,48.049,59,40.393,59,32C59,23.607,55.861,15.951,50.701,10.128z M31,15\r\n\t\t\t\tc-0.721,0-1.374,0.265-1.891,0.689L29.1,15.678l-10.162,8.315H8.992v0.008C7.339,24.006,6,25.346,6,27v10c0,1.657,1.343,3,3,3\r\n\t\t\t\th10.024l10.211,7.426l0.005-0.007C29.736,47.781,30.34,48,31,48c1.657,0,3-1.343,3-3V18C34,16.343,32.657,15,31,15z\r\n\t\t\t\t M42.903,17.926l-2.847,2.847C42.519,23.852,44,27.75,44,32c0,4.25-1.481,8.148-3.944,11.227l2.847,2.847\r\n\t\t\t\tC46.083,42.26,48,37.355,48,32C48,26.645,46.083,21.74,42.903,17.926z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M50.701,10.128l-2.848,2.848C52.292,18.07,55,24.712,55,32\r\n\t\t\t\tc0,7.288-2.708,13.93-7.147,19.024l2.848,2.848C55.861,48.049,59,40.393,59,32C59,23.607,55.861,15.951,50.701,10.128z M31,15\r\n\t\t\t\tc-0.721,0-1.374,0.265-1.891,0.689L29.1,15.678l-10.162,8.315H8.992v0.008C7.339,24.006,6,25.346,6,27v10c0,1.657,1.343,3,3,3\r\n\t\t\t\th10.024l10.211,7.426l0.005-0.007C29.736,47.781,30.34,48,31,48c1.657,0,3-1.343,3-3V18C34,16.343,32.657,15,31,15z\r\n\t\t\t\t M42.903,17.926l-2.847,2.847C42.519,23.852,44,27.75,44,32c0,4.25-1.481,8.148-3.944,11.227l2.847,2.847\r\n\t\t\t\tC46.083,42.26,48,37.355,48,32C48,26.645,46.083,21.74,42.903,17.926z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"VOLUME_1_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"VOLUME_1","display":"inline"},"children":[{"name":"g","attribs":{"id":"VOLUME_1","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M36,16c-0.721,0-1.374,0.265-1.891,0.689L34.1,16.678l-10.162,8.315h-9.946\r\n\t\t\t\tv0.008C12.339,25.006,11,26.346,11,28v10c0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007C34.736,48.781,35.34,49,36,49\r\n\t\t\t\tc1.657,0,3-1.343,3-3V19C39,17.343,37.657,16,36,16z M47.903,18.926l-2.847,2.847C47.519,24.852,49,28.75,49,33\r\n\t\t\t\tc0,4.25-1.481,8.148-3.944,11.227l2.847,2.847C51.083,43.26,53,38.355,53,33C53,27.645,51.083,22.74,47.903,18.926z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M36,16c-0.721,0-1.374,0.265-1.891,0.689L34.1,16.678l-10.162,8.315h-9.946\r\n\t\t\t\tv0.008C12.339,25.006,11,26.346,11,28v10c0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007C34.736,48.781,35.34,49,36,49\r\n\t\t\t\tc1.657,0,3-1.343,3-3V19C39,17.343,37.657,16,36,16z M47.903,18.926l-2.847,2.847C47.519,24.852,49,28.75,49,33\r\n\t\t\t\tc0,4.25-1.481,8.148-3.944,11.227l2.847,2.847C51.083,43.26,53,38.355,53,33C53,27.645,51.083,22.74,47.903,18.926z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"VOLUME__x2F__MUTE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"VOLUME__x2F__MUTE","display":"inline"},"children":[{"name":"g","attribs":{"id":"VOLUME__x2F__MUTE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31,16c-0.721,0-1.374,0.265-1.891,0.689L29.1,16.678l-10.162,8.315H8.992\r\n\t\t\t\tv0.008C7.339,25.006,6,26.346,6,28v10c0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007C29.736,48.781,30.34,49,31,49\r\n\t\t\t\tc1.657,0,3-1.343,3-3V19C34,17.343,32.657,16,31,16z M53.243,33l3.879-3.879C57.664,28.579,58,27.829,58,27c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L49,28.758l-3.879-3.879C44.578,24.336,43.828,24,43,24c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L44.757,33l-3.879,3.879C40.336,37.422,40,38.172,40,39c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L49,37.243l3.879,3.879C53.422,41.664,54.172,42,55,42c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L53.243,33z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31,16c-0.721,0-1.374,0.265-1.891,0.689L29.1,16.678l-10.162,8.315H8.992\r\n\t\t\t\tv0.008C7.339,25.006,6,26.346,6,28v10c0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007C29.736,48.781,30.34,49,31,49\r\n\t\t\t\tc1.657,0,3-1.343,3-3V19C34,17.343,32.657,16,31,16z M53.243,33l3.879-3.879C57.664,28.579,58,27.829,58,27c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L49,28.758l-3.879-3.879C44.578,24.336,43.828,24,43,24c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L44.757,33l-3.879,3.879C40.336,37.422,40,38.172,40,39c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L49,37.243l3.879,3.879C53.422,41.664,54.172,42,55,42c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L53.243,33z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"VOLUME__x2F__DOWN_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"VOLUME__x2F__DOWN","display":"inline"},"children":[{"name":"g","attribs":{"id":"VOLUME__x2F__DOWN","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M55,30H43c-1.657,0-3,1.343-3,3s1.343,3,3,3h12c1.657,0,3-1.343,3-3\r\n\t\t\t\tS56.657,30,55,30z M31,16c-0.721,0-1.374,0.265-1.891,0.689L29.1,16.678l-10.162,8.315H8.992v0.008C7.339,25.006,6,26.346,6,28\r\n\t\t\t\tv10c0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007C29.736,48.781,30.34,49,31,49c1.657,0,3-1.343,3-3V19\r\n\t\t\t\tC34,17.343,32.657,16,31,16z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M55,30H43c-1.657,0-3,1.343-3,3s1.343,3,3,3h12c1.657,0,3-1.343,3-3\r\n\t\t\t\tS56.657,30,55,30z M31,16c-0.721,0-1.374,0.265-1.891,0.689L29.1,16.678l-10.162,8.315H8.992v0.008C7.339,25.006,6,26.346,6,28\r\n\t\t\t\tv10c0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007C29.736,48.781,30.34,49,31,49c1.657,0,3-1.343,3-3V19\r\n\t\t\t\tC34,17.343,32.657,16,31,16z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"VOLUME__x2F__UP_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"VOLUME__x2F__UP","display":"inline"},"children":[{"name":"g","attribs":{"id":"VOLUME__x2F__UP","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31,16c-0.721,0-1.374,0.265-1.891,0.689L29.1,16.678l-10.162,8.315H8.992\r\n\t\t\t\tv0.008C7.339,25.006,6,26.346,6,28v10c0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007C29.736,48.781,30.34,49,31,49\r\n\t\t\t\tc1.657,0,3-1.343,3-3V19C34,17.343,32.657,16,31,16z M55,30h-3v-3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h3v3c0,1.657,1.343,3,3,3s3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3S56.657,30,55,30z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31,16c-0.721,0-1.374,0.265-1.891,0.689L29.1,16.678l-10.162,8.315H8.992\r\n\t\t\t\tv0.008C7.339,25.006,6,26.346,6,28v10c0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007C29.736,48.781,30.34,49,31,49\r\n\t\t\t\tc1.657,0,3-1.343,3-3V19C34,17.343,32.657,16,31,16z M55,30h-3v-3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h3v3c0,1.657,1.343,3,3,3s3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3S56.657,30,55,30z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"VOLUME__x2F__OFF_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"VOLUME__x2F__OFF","display":"inline"},"children":[{"name":"g","attribs":{"id":"VOLUME__x2F__OFF","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M42,16c-0.721,0-1.374,0.265-1.891,0.689L40.1,16.678l-10.162,8.315h-9.946\r\n\t\t\t\tv0.008C18.339,25.006,17,26.346,17,28v9.627l27.972-18.9C44.832,17.2,43.563,16,42,16z M30.024,41l10.211,7.426l0.005-0.007\r\n\t\t\t\tC40.736,48.781,41.34,49,42,49c1.657,0,3-1.343,3-3V29.57L28.083,41H30.024z M51,18.6c-0.312,0-0.601,0.095-0.841,0.258\r\n\t\t\t\tL13.064,43.955c-0.4,0.269-0.664,0.727-0.664,1.245c0,0.828,0.672,1.5,1.5,1.5c0.312,0,0.601-0.095,0.841-0.258l37.095-25.097\r\n\t\t\t\tc0.4-0.269,0.664-0.727,0.664-1.245C52.5,19.272,51.828,18.6,51,18.6z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M42,16c-0.721,0-1.374,0.265-1.891,0.689L40.1,16.678l-10.162,8.315h-9.946\r\n\t\t\t\tv0.008C18.339,25.006,17,26.346,17,28v9.627l27.972-18.9C44.832,17.2,43.563,16,42,16z M30.024,41l10.211,7.426l0.005-0.007\r\n\t\t\t\tC40.736,48.781,41.34,49,42,49c1.657,0,3-1.343,3-3V29.57L28.083,41H30.024z M51,18.6c-0.312,0-0.601,0.095-0.841,0.258\r\n\t\t\t\tL13.064,43.955c-0.4,0.269-0.664,0.727-0.664,1.245c0,0.828,0.672,1.5,1.5,1.5c0.312,0,0.601-0.095,0.841-0.258l37.095-25.097\r\n\t\t\t\tc0.4-0.269,0.664-0.727,0.664-1.245C52.5,19.272,51.828,18.6,51,18.6z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"PRINTER_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PRINTER","display":"inline"},"children":[{"name":"g","attribs":{"id":"PRINTER","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,15H3c-1.657,0-3,1.343-3,3v28c0,1.657,1.343,3,3,3h10V34h38v15h10\r\n\t\t\t\tc1.657,0,3-1.343,3-3V18C64,16.343,62.657,15,61,15z M9,27c-1.657,0-3-1.343-3-3c0-1.657,1.343-3,3-3s3,1.343,3,3\r\n\t\t\t\tC12,25.657,10.657,27,9,27z M48,2.969h-0.003c0-0.001,0-0.002,0-0.003c-0.007-0.615-0.197-1.184-0.52-1.657\r\n\t\t\t\tc-0.005-0.007-0.012-0.013-0.017-0.02c-0.104-0.15-0.22-0.291-0.35-0.419c0,0,0,0,0,0c-0.002-0.002-0.005-0.004-0.008-0.006\r\n\t\t\t\tc-0.167-0.165-0.359-0.302-0.561-0.425c-0.002-0.001-0.005-0.002-0.007-0.004c0,0-0.001,0-0.001-0.001\r\n\t\t\t\tc-0.285-0.171-0.594-0.305-0.93-0.373c0,0,0,0,0,0c-0.138-0.028-0.282-0.034-0.426-0.043C45.117,0.014,45.06,0,45,0H19\r\n\t\t\t\tc-1.243,0-2.309,0.756-2.764,1.832C16.084,2.191,16,2.586,16,3v9h32V2.969z M16,61c0,1.657,1.343,3,3,3h26c1.657,0,3-1.343,3-3\r\n\t\t\t\tV37H16V61z M22,43h20v3H22V43z M22,49h20v3H22V49z M22,55h20v3H22V55z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,15H3c-1.657,0-3,1.343-3,3v28c0,1.657,1.343,3,3,3h10V34h38v15h10\r\n\t\t\t\tc1.657,0,3-1.343,3-3V18C64,16.343,62.657,15,61,15z M9,27c-1.657,0-3-1.343-3-3c0-1.657,1.343-3,3-3s3,1.343,3,3\r\n\t\t\t\tC12,25.657,10.657,27,9,27z M48,2.969h-0.003c0-0.001,0-0.002,0-0.003c-0.007-0.615-0.197-1.184-0.52-1.657\r\n\t\t\t\tc-0.005-0.007-0.012-0.013-0.017-0.02c-0.104-0.15-0.22-0.291-0.35-0.419c0,0,0,0,0,0c-0.002-0.002-0.005-0.004-0.008-0.006\r\n\t\t\t\tc-0.167-0.165-0.359-0.302-0.561-0.425c-0.002-0.001-0.005-0.002-0.007-0.004c0,0-0.001,0-0.001-0.001\r\n\t\t\t\tc-0.285-0.171-0.594-0.305-0.93-0.373c0,0,0,0,0,0c-0.138-0.028-0.282-0.034-0.426-0.043C45.117,0.014,45.06,0,45,0H19\r\n\t\t\t\tc-1.243,0-2.309,0.756-2.764,1.832C16.084,2.191,16,2.586,16,3v9h32V2.969z M16,61c0,1.657,1.343,3,3,3h26c1.657,0,3-1.343,3-3\r\n\t\t\t\tV37H16V61z M22,43h20v3H22V43z M22,49h20v3H22V49z M22,55h20v3H22V55z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MAIL__x2F__OUTGOING_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MAIL__x2F__OUTGOING","display":"inline"},"children":[{"name":"g","attribs":{"id":"MAIL__x2F__OUTGOING","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M0.894,17.866C0.343,18.41,0,19.165,0,20v38c0,0.789,0.311,1.501,0.809,2.037\r\n\t\t\t\tl19.569-23.296L0.894,17.866z M25,16c0.828,0,1.578-0.336,2.121-0.879L29,13.243V27c0,1.657,1.343,3,3,3s3-1.343,3-3V13.243\r\n\t\t\t\tl1.879,1.879C37.422,15.664,38.172,16,39,16c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121l-7-7\r\n\t\t\t\tC33.578,3.336,32.828,3,32,3c-0.828,0-1.578,0.336-2.121,0.879l-7,7C22.336,11.422,22,12.172,22,13C22,14.657,23.343,16,25,16z\r\n\t\t\t\t M63.002,17.78C62.47,17.3,61.773,17,61,17H43.443c-1.098,1.219-2.673,2-4.443,2c-0.344,0-0.673-0.053-1-0.11V27\r\n\t\t\t\tc0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6v-8.11C25.673,18.947,25.344,19,25,19c-1.77,0-3.345-0.781-4.443-2H3\r\n\t\t\t\tc-0.773,0-1.47,0.3-2.002,0.78L32,42L63.002,17.78z M63.106,17.866L43.622,36.741l19.569,23.296C63.689,59.502,64,58.789,64,58\r\n\t\t\t\tV20C64,19.165,63.657,18.41,63.106,17.866z M32,48l-8.136-7.881L0.943,60.175C1.481,60.683,2.202,61,3,61h58\r\n\t\t\t\tc0.798,0,1.519-0.317,2.057-0.825L40.136,40.119L32,48z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M0.894,17.866C0.343,18.41,0,19.165,0,20v38c0,0.789,0.311,1.501,0.809,2.037\r\n\t\t\t\tl19.569-23.296L0.894,17.866z M25,16c0.828,0,1.578-0.336,2.121-0.879L29,13.243V27c0,1.657,1.343,3,3,3s3-1.343,3-3V13.243\r\n\t\t\t\tl1.879,1.879C37.422,15.664,38.172,16,39,16c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121l-7-7\r\n\t\t\t\tC33.578,3.336,32.828,3,32,3c-0.828,0-1.578,0.336-2.121,0.879l-7,7C22.336,11.422,22,12.172,22,13C22,14.657,23.343,16,25,16z\r\n\t\t\t\t M63.002,17.78C62.47,17.3,61.773,17,61,17H43.443c-1.098,1.219-2.673,2-4.443,2c-0.344,0-0.673-0.053-1-0.11V27\r\n\t\t\t\tc0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6v-8.11C25.673,18.947,25.344,19,25,19c-1.77,0-3.345-0.781-4.443-2H3\r\n\t\t\t\tc-0.773,0-1.47,0.3-2.002,0.78L32,42L63.002,17.78z M63.106,17.866L43.622,36.741l19.569,23.296C63.689,59.502,64,58.789,64,58\r\n\t\t\t\tV20C64,19.165,63.657,18.41,63.106,17.866z M32,48l-8.136-7.881L0.943,60.175C1.481,60.683,2.202,61,3,61h58\r\n\t\t\t\tc0.798,0,1.519-0.317,2.057-0.825L40.136,40.119L32,48z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MAIL__x2F__INCOMING_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MAIL__x2F__INCOMING","display":"inline"},"children":[{"name":"g","attribs":{"id":"MAIL__x2F__INCOMING","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M29.879,29.122C30.422,29.664,31.172,30,32,30c0.829,0,1.578-0.336,2.121-0.879\r\n\t\t\t\tl7-7C41.664,21.579,42,20.829,42,20c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L35,19.757V6c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v13.757l-1.879-1.879C26.578,17.336,25.828,17,25,17c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121\r\n\t\t\t\tL29.879,29.122z M63.002,17.78C62.47,17.3,61.773,17,61,17H44.168C44.683,17.886,45,18.902,45,20\r\n\t\t\t\tc0,1.657-0.672,3.157-1.757,4.243l-7,7C35.157,32.328,33.657,33,32,33c-1.657,0-3.157-0.672-4.243-1.757l-7-7\r\n\t\t\t\tC19.672,23.157,19,21.657,19,20c0-1.098,0.317-2.114,0.832-3H3c-0.773,0-1.47,0.3-2.002,0.78L32,42L63.002,17.78z M63.106,17.866\r\n\t\t\t\tL43.622,36.741l19.569,23.296C63.689,59.502,64,58.789,64,58V20C64,19.165,63.657,18.41,63.106,17.866z M0.894,17.866\r\n\t\t\t\tC0.343,18.41,0,19.165,0,20v38c0,0.789,0.311,1.501,0.809,2.037l19.569-23.296L0.894,17.866z M32,48l-8.136-7.881L0.943,60.175\r\n\t\t\t\tC1.481,60.683,2.202,61,3,61h58c0.798,0,1.519-0.317,2.057-0.825L40.136,40.119L32,48z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M29.879,29.122C30.422,29.664,31.172,30,32,30c0.829,0,1.578-0.336,2.121-0.879\r\n\t\t\t\tl7-7C41.664,21.579,42,20.829,42,20c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L35,19.757V6c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v13.757l-1.879-1.879C26.578,17.336,25.828,17,25,17c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121\r\n\t\t\t\tL29.879,29.122z M63.002,17.78C62.47,17.3,61.773,17,61,17H44.168C44.683,17.886,45,18.902,45,20\r\n\t\t\t\tc0,1.657-0.672,3.157-1.757,4.243l-7,7C35.157,32.328,33.657,33,32,33c-1.657,0-3.157-0.672-4.243-1.757l-7-7\r\n\t\t\t\tC19.672,23.157,19,21.657,19,20c0-1.098,0.317-2.114,0.832-3H3c-0.773,0-1.47,0.3-2.002,0.78L32,42L63.002,17.78z M63.106,17.866\r\n\t\t\t\tL43.622,36.741l19.569,23.296C63.689,59.502,64,58.789,64,58V20C64,19.165,63.657,18.41,63.106,17.866z M0.894,17.866\r\n\t\t\t\tC0.343,18.41,0,19.165,0,20v38c0,0.789,0.311,1.501,0.809,2.037l19.569-23.296L0.894,17.866z M32,48l-8.136-7.881L0.943,60.175\r\n\t\t\t\tC1.481,60.683,2.202,61,3,61h58c0.798,0,1.519-0.317,2.057-0.825L40.136,40.119L32,48z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MAIL_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MAIL","display":"inline"},"children":[{"name":"g","attribs":{"id":"MAIL","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M63.002,10.78C62.47,10.3,61.773,10,61,10H3c-0.773,0-1.47,0.3-2.002,0.78\r\n\t\t\t\tL32,35L63.002,10.78z M0.894,10.866C0.343,11.41,0,12.165,0,13v38c0,0.789,0.311,1.501,0.809,2.037l19.569-23.296L0.894,10.866z\r\n\t\t\t\t M32,41l-8.136-7.881L0.943,53.175C1.481,53.683,2.202,54,3,54h58c0.798,0,1.519-0.317,2.057-0.825L40.136,33.119L32,41z\r\n\t\t\t\t M63.106,10.866L43.622,29.741l19.569,23.296C63.689,52.502,64,51.789,64,51V13C64,12.165,63.657,11.41,63.106,10.866z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M63.002,10.78C62.47,10.3,61.773,10,61,10H3c-0.773,0-1.47,0.3-2.002,0.78\r\n\t\t\t\tL32,35L63.002,10.78z M0.894,10.866C0.343,11.41,0,12.165,0,13v38c0,0.789,0.311,1.501,0.809,2.037l19.569-23.296L0.894,10.866z\r\n\t\t\t\t M32,41l-8.136-7.881L0.943,53.175C1.481,53.683,2.202,54,3,54h58c0.798,0,1.519-0.317,2.057-0.825L40.136,33.119L32,41z\r\n\t\t\t\t M63.106,10.866L43.622,29.741l19.569,23.296C63.689,52.502,64,51.789,64,51V13C64,12.165,63.657,11.41,63.106,10.866z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BROWSER__x2F__DELETE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BROWSER__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{"id":"BROWSER__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3\r\n\t\t\t\ts-1.343,3-3,3c-1.657,0-3-1.343-3-3S13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3c-1.657,0-3-1.343-3-3S4.343,7,6,7z\r\n\t\t\t\t M61,57H3V16h58V57z M27.758,37l-4.95,4.95c-1.172,1.172-1.172,3.071,0,4.243c1.172,1.172,3.071,1.172,4.243,0l4.95-4.95\r\n\t\t\t\tl4.95,4.95c1.172,1.172,3.071,1.172,4.243,0c1.172-1.172,1.171-3.071,0-4.243L36.243,37l4.95-4.95\r\n\t\t\t\tc1.172-1.172,1.172-3.071,0-4.243c-1.172-1.172-3.071-1.172-4.243,0L32,32.758l-4.95-4.95c-1.171-1.171-3.071-1.172-4.243,0\r\n\t\t\t\tc-1.171,1.172-1.171,3.071,0,4.243L27.758,37z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3\r\n\t\t\t\ts-1.343,3-3,3c-1.657,0-3-1.343-3-3S13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3c-1.657,0-3-1.343-3-3S4.343,7,6,7z\r\n\t\t\t\t M61,57H3V16h58V57z M27.758,37l-4.95,4.95c-1.172,1.172-1.172,3.071,0,4.243c1.172,1.172,3.071,1.172,4.243,0l4.95-4.95\r\n\t\t\t\tl4.95,4.95c1.172,1.172,3.071,1.172,4.243,0c1.172-1.172,1.171-3.071,0-4.243L36.243,37l4.95-4.95\r\n\t\t\t\tc1.172-1.172,1.172-3.071,0-4.243c-1.172-1.172-3.071-1.172-4.243,0L32,32.758l-4.95-4.95c-1.171-1.171-3.071-1.172-4.243,0\r\n\t\t\t\tc-1.171,1.172-1.171,3.071,0,4.243L27.758,37z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BROWSER__x2F__OK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BROWSER__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{"id":"BROWSER__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26.879,45.121C27.422,45.664,28.172,46,29,46s1.578-0.336,2.121-0.879l12-12\r\n\t\t\t\tC43.664,32.579,44,31.828,44,31c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L29,38.757l-3.879-3.878\r\n\t\t\t\tC24.579,34.336,23.828,34,23,34c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L26.879,45.121z M61,4H3\r\n\t\t\t\tC1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3\r\n\t\t\t\ts-1.343,3-3,3c-1.657,0-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S13.343,7,15,7z M6,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M61,57H3V16h58V57z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26.879,45.121C27.422,45.664,28.172,46,29,46s1.578-0.336,2.121-0.879l12-12\r\n\t\t\t\tC43.664,32.579,44,31.828,44,31c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L29,38.757l-3.879-3.878\r\n\t\t\t\tC24.579,34.336,23.828,34,23,34c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L26.879,45.121z M61,4H3\r\n\t\t\t\tC1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3\r\n\t\t\t\ts-1.343,3-3,3c-1.657,0-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S13.343,7,15,7z M6,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M61,57H3V16h58V57z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BROWSER__x2F__REMOVE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BROWSER__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{"id":"BROWSER__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M22,40h4v0h16v0c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-7v0h-6v0h-7\r\n\t\t\t\tc-1.657,0-3,1.343-3,3C19,38.657,20.343,40,22,40z M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3s-1.343,3-3,3c-1.657,0-3-1.343-3-3S22.343,7,24,7z M15,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7\r\n\t\t\t\tz M61,57H3V16h58V57z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M22,40h4v0h16v0c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-7v0h-6v0h-7\r\n\t\t\t\tc-1.657,0-3,1.343-3,3C19,38.657,20.343,40,22,40z M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3s-1.343,3-3,3c-1.657,0-3-1.343-3-3S22.343,7,24,7z M15,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7\r\n\t\t\t\tz M61,57H3V16h58V57z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BROWSER__x2F__ADD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BROWSER__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{"id":"BROWSER__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3s-1.343,3-3,3c-1.657,0-3-1.343-3-3S22.343,7,24,7z M15,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3c-1.657,0-3-1.343-3-3\r\n\t\t\t\tS4.343,7,6,7z M61,57H3V16h58V57z M22,40h7v7c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-7h7c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-1.657-1.343-3-3-3h-7v-7c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v7h-7c-1.657,0-3,1.343-3,3C19,38.657,20.343,40,22,40z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3s-1.343,3-3,3c-1.657,0-3-1.343-3-3S22.343,7,24,7z M15,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3c-1.657,0-3-1.343-3-3\r\n\t\t\t\tS4.343,7,6,7z M61,57H3V16h58V57z M22,40h7v7c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-7h7c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-1.657-1.343-3-3-3h-7v-7c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v7h-7c-1.657,0-3,1.343-3,3C19,38.657,20.343,40,22,40z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BROWSER_LAYOUT_3_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BROWSER_LAYOUT_3","display":"inline"},"children":[{"name":"g","attribs":{"id":"BROWSER_LAYOUT_3","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3s-1.343,3-3,3c-1.657,0-3-1.343-3-3S22.343,7,24,7z M15,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7\r\n\t\t\t\tz M15,57H3V31h12V57z M46,57H18V31h28V57z M61,57H49V31h12V57z M61,28H3V16h58V28z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3s-1.343,3-3,3c-1.657,0-3-1.343-3-3S22.343,7,24,7z M15,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7\r\n\t\t\t\tz M15,57H3V31h12V57z M46,57H18V31h28V57z M61,57H49V31h12V57z M61,28H3V16h58V28z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BROWSER_LAYOUT_2_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BROWSER_LAYOUT_2","display":"inline"},"children":[{"name":"g","attribs":{"id":"BROWSER_LAYOUT_2","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3\r\n\t\t\t\ts-1.343,3-3,3c-1.657,0-3-1.343-3-3S13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M46,57H3\r\n\t\t\t\tV31h43V57z M61,57H49V31h12V57z M61,28H3V16h58V28z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3\r\n\t\t\t\ts-1.343,3-3,3c-1.657,0-3-1.343-3-3S13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M46,57H3\r\n\t\t\t\tV31h43V57z M61,57H49V31h12V57z M61,28H3V16h58V28z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BROWSER_LAYOUT_1_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BROWSER_LAYOUT_1","display":"inline"},"children":[{"name":"g","attribs":{"id":"BROWSER_LAYOUT_1","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3s-1.343,3-3,3c-1.657,0-3-1.343-3-3S22.343,7,24,7z M15,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3c-1.657,0-3-1.343-3-3S13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3\r\n\t\t\t\tc-1.657,0-3-1.343-3-3S4.343,7,6,7z M15,57H3V31h12V57z M61,57H18V31h43V57z M61,28H3V16h58V28z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3s-1.343,3-3,3c-1.657,0-3-1.343-3-3S22.343,7,24,7z M15,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3c-1.657,0-3-1.343-3-3S13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3\r\n\t\t\t\tc-1.657,0-3-1.343-3-3S4.343,7,6,7z M15,57H3V31h12V57z M61,57H18V31h43V57z M61,28H3V16h58V28z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BROWSER_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BROWSER","display":"inline"},"children":[{"name":"g","attribs":{"id":"BROWSER","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3c0,1.657-1.343,3-3,3s-3-1.343-3-3C21,8.343,22.343,7,24,7z M15,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3C12,8.343,13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3\r\n\t\t\t\tc0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3C3,8.343,4.343,7,6,7z M61,57H3V16h58V57z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3c0,1.657-1.343,3-3,3s-3-1.343-3-3C21,8.343,22.343,7,24,7z M15,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3C12,8.343,13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3\r\n\t\t\t\tc0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3C3,8.343,4.343,7,6,7z M61,57H3V16h58V57z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MOUSTACHE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MOUSTACHE","display":"inline"},"children":[{"name":"g","attribs":{"id":"MOUSTACHE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M63.827,26.719c-1.134-0.288-2.876,4.125-6.966,4.125\r\n\t\t\t\tc-5.253,0-7.725-8.839-15.934-8.839c-6.513,0-8.497,5.067-8.928,5.067c-0.431,0-2.415-5.067-8.927-5.067\r\n\t\t\t\tc-8.208,0-10.681,8.839-15.935,8.839c-4.09,0-5.83-4.413-6.964-4.125c-1.06,0.269,1.955,15.277,16.323,15.277\r\n\t\t\t\tc9.322,0,14.802-7.238,15.503-7.238c0.702,0,6.182,7.238,15.504,7.238C61.872,41.996,64.887,26.988,63.827,26.719z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M63.827,26.719c-1.134-0.288-2.876,4.125-6.966,4.125\r\n\t\t\t\tc-5.253,0-7.725-8.839-15.934-8.839c-6.513,0-8.497,5.067-8.928,5.067c-0.431,0-2.415-5.067-8.927-5.067\r\n\t\t\t\tc-8.208,0-10.681,8.839-15.935,8.839c-4.09,0-5.83-4.413-6.964-4.125c-1.06,0.269,1.955,15.277,16.323,15.277\r\n\t\t\t\tc9.322,0,14.802-7.238,15.503-7.238c0.702,0,6.182,7.238,15.504,7.238C61.872,41.996,64.887,26.988,63.827,26.719z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"LIST_2_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"LIST_2","display":"inline"},"children":[{"name":"g","attribs":{"id":"LIST_2","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M9,45H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h6l0,0c1.657,0,3-1.343,3-3\r\n\t\t\t\tC12,46.343,10.657,45,9,45z M61,29H21c-1.657,0-3,1.343-3,3s1.343,3,3,3c0,0,0,0,0,0h40c1.657,0,3-1.343,3-3\r\n\t\t\t\tC64,30.343,62.657,29,61,29z M9,29H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h6c0,0,0,0,0,0c1.657,0,3-1.343,3-3\r\n\t\t\t\tS10.657,29,9,29z M21,19h40c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H21.001c0,0-0.001,0-0.001,0c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC18,17.657,19.343,19,21,19z M9,13C9,13,8.999,13,8.999,13H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h6c1.657,0,3-1.343,3-3\r\n\t\t\t\tC12,14.343,10.657,13,9,13z M61,45H21c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3l0,0h40c1.657,0,3-1.343,3-3\r\n\t\t\t\tC64,46.343,62.657,45,61,45z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M9,45H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h6l0,0c1.657,0,3-1.343,3-3\r\n\t\t\t\tC12,46.343,10.657,45,9,45z M61,29H21c-1.657,0-3,1.343-3,3s1.343,3,3,3c0,0,0,0,0,0h40c1.657,0,3-1.343,3-3\r\n\t\t\t\tC64,30.343,62.657,29,61,29z M9,29H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h6c0,0,0,0,0,0c1.657,0,3-1.343,3-3\r\n\t\t\t\tS10.657,29,9,29z M21,19h40c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H21.001c0,0-0.001,0-0.001,0c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC18,17.657,19.343,19,21,19z M9,13C9,13,8.999,13,8.999,13H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h6c1.657,0,3-1.343,3-3\r\n\t\t\t\tC12,14.343,10.657,13,9,13z M61,45H21c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3l0,0h40c1.657,0,3-1.343,3-3\r\n\t\t\t\tC64,46.343,62.657,45,61,45z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"LIST_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"LIST","display":"inline"},"children":[{"name":"g","attribs":{"id":"LIST","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M3,19h58c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC0,17.657,1.343,19,3,19z M61,29H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,30.343,62.657,29,61,29z\r\n\t\t\t\t M61,45H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,46.343,62.657,45,61,45z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M3,19h58c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC0,17.657,1.343,19,3,19z M61,29H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,30.343,62.657,29,61,29z\r\n\t\t\t\t M61,45H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,46.343,62.657,45,61,45z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MORE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MORE","display":"inline"},"children":[{"name":"g","attribs":{"id":"MORE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M13.001,26C9.687,26,7,28.687,7,32.002c0,3.315,2.687,6.001,6.001,6.001\r\n\t\t\t\tc3.314,0,6.001-2.687,6.001-6.001C19.001,28.687,16.315,26,13.001,26z M51.001,26C47.687,26,45,28.687,45,32.002\r\n\t\t\t\tc0,3.315,2.687,6.001,6.001,6.001c3.314,0,6.001-2.687,6.001-6.001C57.001,28.687,54.315,26,51.001,26z M32.001,26\r\n\t\t\t\tC28.687,26,26,28.687,26,32.002c0,3.315,2.686,6.001,6.001,6.001s6.001-2.687,6.001-6.001C38.001,28.687,35.315,26,32.001,26z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M13.001,26C9.687,26,7,28.687,7,32.002c0,3.315,2.687,6.001,6.001,6.001\r\n\t\t\t\tc3.314,0,6.001-2.687,6.001-6.001C19.001,28.687,16.315,26,13.001,26z M51.001,26C47.687,26,45,28.687,45,32.002\r\n\t\t\t\tc0,3.315,2.687,6.001,6.001,6.001c3.314,0,6.001-2.687,6.001-6.001C57.001,28.687,54.315,26,51.001,26z M32.001,26\r\n\t\t\t\tC28.687,26,26,28.687,26,32.002c0,3.315,2.686,6.001,6.001,6.001s6.001-2.687,6.001-6.001C38.001,28.687,35.315,26,32.001,26z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"ARROW__x2F__RIGHT_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ARROW__x2F__RIGHT","display":"inline"},"children":[{"name":"g","attribs":{"id":"ARROW__x2F__RIGHT","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M44,31.994c0-0.002,0-0.005,0-0.007c0-0.848-0.352-1.613-0.918-2.159\r\n\t\t\t\tl0.001-0.001l-18-18l-0.008,0.008C24.536,11.318,23.806,11,23,11c-1.657,0-3,1.343-3,3c0,0.91,0.406,1.725,1.046,2.275\r\n\t\t\t\tl15.718,15.718L20.84,47.917l0.001,0.001C20.321,48.458,20,49.191,20,50c0,1.657,1.343,3,3,3c0.809,0,1.542-0.321,2.082-0.841\r\n\t\t\t\tl0.001,0.001l18-18l-0.001-0.001C43.648,33.613,44,32.848,44,32C44,31.998,44,31.996,44,31.994z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M44,31.994c0-0.002,0-0.005,0-0.007c0-0.848-0.352-1.613-0.918-2.159\r\n\t\t\t\tl0.001-0.001l-18-18l-0.008,0.008C24.536,11.318,23.806,11,23,11c-1.657,0-3,1.343-3,3c0,0.91,0.406,1.725,1.046,2.275\r\n\t\t\t\tl15.718,15.718L20.84,47.917l0.001,0.001C20.321,48.458,20,49.191,20,50c0,1.657,1.343,3,3,3c0.809,0,1.542-0.321,2.082-0.841\r\n\t\t\t\tl0.001,0.001l18-18l-0.001-0.001C43.648,33.613,44,32.848,44,32C44,31.998,44,31.996,44,31.994z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"ARROW__x2F__LEFT_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ARROW__x2F__LEFT","display":"inline"},"children":[{"name":"g","attribs":{"id":"ARROW__x2F__LEFT","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M43.16,47.917L27.236,31.994l15.718-15.718C43.594,15.725,44,14.91,44,14\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.806,0-1.536,0.318-2.075,0.835l-0.008-0.008l-18,18l0.001,0.001C20.352,30.374,20,31.139,20,31.987\r\n\t\t\t\tc0,0.002,0,0.004,0,0.007c0,0.002,0,0.004,0,0.007c0,0.848,0.352,1.613,0.918,2.159l-0.001,0.001l18,18l0.001-0.001\r\n\t\t\t\tC39.458,52.679,40.191,53,41,53c1.657,0,3-1.343,3-3C44,49.191,43.679,48.458,43.16,47.917L43.16,47.917z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M43.16,47.917L27.236,31.994l15.718-15.718C43.594,15.725,44,14.91,44,14\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.806,0-1.536,0.318-2.075,0.835l-0.008-0.008l-18,18l0.001,0.001C20.352,30.374,20,31.139,20,31.987\r\n\t\t\t\tc0,0.002,0,0.004,0,0.007c0,0.002,0,0.004,0,0.007c0,0.848,0.352,1.613,0.918,2.159l-0.001,0.001l18,18l0.001-0.001\r\n\t\t\t\tC39.458,52.679,40.191,53,41,53c1.657,0,3-1.343,3-3C44,49.191,43.679,48.458,43.16,47.917L43.16,47.917z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"ARROW__x2F__UP_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ARROW__x2F__UP","display":"inline"},"children":[{"name":"g","attribs":{"id":"ARROW__x2F__UP","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M52.159,38.918L52.159,38.918L34.16,20.917l-0.001,0.001\r\n\t\t\t\tC33.613,20.352,32.848,20,32,20c-0.002,0-0.004,0-0.007,0s-0.004,0-0.007,0c-0.848,0-1.613,0.352-2.159,0.918l-0.001-0.001\r\n\t\t\t\tl-18,18l0.008,0.008C11.318,39.464,11,40.195,11,41c0,1.657,1.343,3,3,3c0.91,0,1.725-0.406,2.275-1.046l15.718-15.718\r\n\t\t\t\tL47.917,43.16l0.001-0.001C48.458,43.679,49.191,44,50,44c1.657,0,3-1.343,3-3C53,40.191,52.679,39.458,52.159,38.918z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M52.159,38.918L52.159,38.918L34.16,20.917l-0.001,0.001\r\n\t\t\t\tC33.613,20.352,32.848,20,32,20c-0.002,0-0.004,0-0.007,0s-0.004,0-0.007,0c-0.848,0-1.613,0.352-2.159,0.918l-0.001-0.001\r\n\t\t\t\tl-18,18l0.008,0.008C11.318,39.464,11,40.195,11,41c0,1.657,1.343,3,3,3c0.91,0,1.725-0.406,2.275-1.046l15.718-15.718\r\n\t\t\t\tL47.917,43.16l0.001-0.001C48.458,43.679,49.191,44,50,44c1.657,0,3-1.343,3-3C53,40.191,52.679,39.458,52.159,38.918z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"ARROW__x2F__DOWN_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ARROW__x2F__DOWN","display":"inline"},"children":[{"name":"g","attribs":{"id":"ARROW__x2F__DOWN","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M53,23c0-1.657-1.343-3-3-3c-0.809,0-1.542,0.321-2.082,0.841l-0.001-0.001\r\n\t\t\t\tL31.993,36.764L16.275,21.046C15.725,20.406,14.91,20,14,20c-1.657,0-3,1.343-3,3c0,0.805,0.318,1.536,0.835,2.075l-0.008,0.008\r\n\t\t\t\tl18,18l0.001-0.001C30.374,43.648,31.139,44,31.987,44c0.002,0,0.004,0,0.007,0c0.002,0,0.004,0,0.007,0\r\n\t\t\t\tc0.848,0,1.613-0.352,2.159-0.918l0.001,0.001l18-18l-0.001-0.001C52.679,24.543,53,23.809,53,23z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M53,23c0-1.657-1.343-3-3-3c-0.809,0-1.542,0.321-2.082,0.841l-0.001-0.001\r\n\t\t\t\tL31.993,36.764L16.275,21.046C15.725,20.406,14.91,20,14,20c-1.657,0-3,1.343-3,3c0,0.805,0.318,1.536,0.835,2.075l-0.008,0.008\r\n\t\t\t\tl18,18l0.001-0.001C30.374,43.648,31.139,44,31.987,44c0.002,0,0.004,0,0.007,0c0.002,0,0.004,0,0.007,0\r\n\t\t\t\tc0.848,0,1.613-0.352,2.159-0.918l0.001,0.001l18-18l-0.001-0.001C52.679,24.543,53,23.809,53,23z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CLOSE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CLOSE","display":"inline"},"children":[{"name":"g","attribs":{"id":"CLOSE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M36.243,32l11.879-11.879C48.664,19.579,49,18.828,49,18c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L32,27.757L20.121,15.879C19.578,15.336,18.828,15,18,15c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L27.757,32L15.879,43.879C15.336,44.422,15,45.172,15,46c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L32,36.243l11.879,11.879C44.422,48.664,45.172,49,46,49c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L36.243,32z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M36.243,32l11.879-11.879C48.664,19.579,49,18.828,49,18c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L32,27.757L20.121,15.879C19.578,15.336,18.828,15,18,15c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L27.757,32L15.879,43.879C15.336,44.422,15,45.172,15,46c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L32,36.243l11.879,11.879C44.422,48.664,45.172,49,46,49c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L36.243,32z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"TICK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"TICK","display":"inline"},"children":[{"name":"g","attribs":{"id":"TICK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M50,18c-0.828,0-1.578,0.336-2.121,0.879L27,39.757L16.121,28.879\r\n\t\t\t\tC15.578,28.336,14.828,28,14,28c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l13,13C25.422,46.664,26.172,47,27,47\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l23-23C52.664,22.579,53,21.828,53,21C53,19.343,51.657,18,50,18z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M50,18c-0.828,0-1.578,0.336-2.121,0.879L27,39.757L16.121,28.879\r\n\t\t\t\tC15.578,28.336,14.828,28,14,28c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l13,13C25.422,46.664,26.172,47,27,47\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l23-23C52.664,22.579,53,21.828,53,21C53,19.343,51.657,18,50,18z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MINUS_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MINUS","display":"inline"},"children":[{"name":"g","attribs":{"id":"MINUS","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M52,29H12c-1.657,0-3,1.343-3,3s1.343,3,3,3h40c1.657,0,3-1.343,3-3\r\n\t\t\t\tS53.657,29,52,29z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M52,29H12c-1.657,0-3,1.343-3,3s1.343,3,3,3h40c1.657,0,3-1.343,3-3\r\n\t\t\t\tS53.657,29,52,29z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"PLUS_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PLUS","display":"inline"},"children":[{"name":"g","attribs":{"id":"PLUS","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M52,29H35V12c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v17H12\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h17v17c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V35h17c1.657,0,3-1.343,3-3S53.657,29,52,29z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M52,29H35V12c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v17H12\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h17v17c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V35h17c1.657,0,3-1.343,3-3S53.657,29,52,29z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BOOKMARK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BOOKMARK","display":"inline"},"children":[{"name":"g","attribs":{"id":"BOOKMARK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M41,5H23c-1.657,0-3,1.343-3,3v51l12-12l12,12V8C44,6.343,42.657,5,41,5z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M41,5H23c-1.657,0-3,1.343-3,3v51l12-12l12,12V8C44,6.343,42.657,5,41,5z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BOOK_2_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BOOK_2","display":"inline"},"children":[{"name":"g","attribs":{"id":"BOOK_2","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M10.759,32.731L10.759,32.731l11,5l0,0C22.137,37.903,22.557,38,23,38\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-1.214-0.721-2.259-1.759-2.731l0,0l-11-5v0C12.863,27.097,12.443,27,12,27c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC9,31.214,9.721,32.259,10.759,32.731z M10.759,43.731L10.759,43.731l11,5l0,0C22.137,48.903,22.557,49,23,49\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-1.214-0.721-2.259-1.759-2.731l0,0l-11-5v0C12.863,38.097,12.443,38,12,38c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC9,42.214,9.721,43.259,10.759,43.731z M10.759,21.731L10.759,21.731l11,5l0,0C22.137,26.903,22.557,27,23,27\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-1.214-0.721-2.259-1.759-2.731h0l-11-5v0C12.863,16.097,12.443,16,12,16c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC9,20.214,9.721,21.259,10.759,21.731z M41,49c0.443,0,0.863-0.097,1.241-0.269l0,0l11-5v0C54.279,43.259,55,42.214,55,41\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.443,0-0.863,0.097-1.241,0.269l0,0l-11,5v0C38.721,43.741,38,44.786,38,46C38,47.657,39.343,49,41,49z\r\n\t\t\t\t M61,0c-0.406,0-0.794,0.082-1.147,0.228l0,0L59.848,0.23c-0.009,0.004-0.018,0.007-0.027,0.011L32,11.753L4.179,0.241\r\n\t\t\t\tC4.17,0.237,4.161,0.234,4.152,0.23L4.147,0.228l0,0C3.794,0.082,3.406,0,3,0C1.343,0,0,1.343,0,3v46\r\n\t\t\t\tc0,1.257,0.774,2.333,1.871,2.78l28.942,11.976C31.177,63.913,31.578,64,32,64c0.422,0,0.823-0.087,1.187-0.245L62.129,51.78\r\n\t\t\t\tC63.226,51.333,64,50.257,64,49V3C64,1.343,62.657,0,61,0z M29,56.512L6,46.995V7.488l23,9.517V56.512z M58,46.995l-23,9.517\r\n\t\t\t\tV17.005l23-9.517V46.995z M41,38c0.443,0,0.863-0.097,1.241-0.269l0,0l11-5C54.279,32.259,55,31.214,55,30c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.443,0-0.863,0.097-1.241,0.269l0,0l-11,5v0C38.721,32.741,38,33.786,38,35C38,36.657,39.343,38,41,38z M41,27\r\n\t\t\t\tc0.443,0,0.863-0.097,1.241-0.269l0,0l11-5v0C54.279,21.259,55,20.214,55,19c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.443,0-0.863,0.097-1.241,0.269l0,0l-11,5C38.721,21.741,38,22.786,38,24C38,25.657,39.343,27,41,27z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M10.759,32.731L10.759,32.731l11,5l0,0C22.137,37.903,22.557,38,23,38\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-1.214-0.721-2.259-1.759-2.731l0,0l-11-5v0C12.863,27.097,12.443,27,12,27c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC9,31.214,9.721,32.259,10.759,32.731z M10.759,43.731L10.759,43.731l11,5l0,0C22.137,48.903,22.557,49,23,49\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-1.214-0.721-2.259-1.759-2.731l0,0l-11-5v0C12.863,38.097,12.443,38,12,38c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC9,42.214,9.721,43.259,10.759,43.731z M10.759,21.731L10.759,21.731l11,5l0,0C22.137,26.903,22.557,27,23,27\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-1.214-0.721-2.259-1.759-2.731h0l-11-5v0C12.863,16.097,12.443,16,12,16c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC9,20.214,9.721,21.259,10.759,21.731z M41,49c0.443,0,0.863-0.097,1.241-0.269l0,0l11-5v0C54.279,43.259,55,42.214,55,41\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.443,0-0.863,0.097-1.241,0.269l0,0l-11,5v0C38.721,43.741,38,44.786,38,46C38,47.657,39.343,49,41,49z\r\n\t\t\t\t M61,0c-0.406,0-0.794,0.082-1.147,0.228l0,0L59.848,0.23c-0.009,0.004-0.018,0.007-0.027,0.011L32,11.753L4.179,0.241\r\n\t\t\t\tC4.17,0.237,4.161,0.234,4.152,0.23L4.147,0.228l0,0C3.794,0.082,3.406,0,3,0C1.343,0,0,1.343,0,3v46\r\n\t\t\t\tc0,1.257,0.774,2.333,1.871,2.78l28.942,11.976C31.177,63.913,31.578,64,32,64c0.422,0,0.823-0.087,1.187-0.245L62.129,51.78\r\n\t\t\t\tC63.226,51.333,64,50.257,64,49V3C64,1.343,62.657,0,61,0z M29,56.512L6,46.995V7.488l23,9.517V56.512z M58,46.995l-23,9.517\r\n\t\t\t\tV17.005l23-9.517V46.995z M41,38c0.443,0,0.863-0.097,1.241-0.269l0,0l11-5C54.279,32.259,55,31.214,55,30c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.443,0-0.863,0.097-1.241,0.269l0,0l-11,5v0C38.721,32.741,38,33.786,38,35C38,36.657,39.343,38,41,38z M41,27\r\n\t\t\t\tc0.443,0,0.863-0.097,1.241-0.269l0,0l11-5v0C54.279,21.259,55,20.214,55,19c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.443,0-0.863,0.097-1.241,0.269l0,0l-11,5C38.721,21.741,38,22.786,38,24C38,25.657,39.343,27,41,27z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BOOK_1_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BOOK_1","display":"inline"},"children":[{"name":"g","attribs":{"id":"BOOK_1","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,0c-0.406,0-0.794,0.082-1.147,0.228l0,0L59.848,0.23\r\n\t\t\t\tc-0.009,0.004-0.018,0.007-0.027,0.011L32,11.753L4.179,0.241C4.17,0.237,4.161,0.234,4.152,0.23L4.147,0.228v0\r\n\t\t\t\tC3.794,0.082,3.406,0,3,0C1.343,0,0,1.343,0,3v46c0,1.257,0.774,2.333,1.871,2.78l28.942,11.976C31.177,63.913,31.578,64,32,64\r\n\t\t\t\tc0.422,0,0.823-0.087,1.187-0.245L62.129,51.78C63.226,51.333,64,50.257,64,49V3C64,1.343,62.657,0,61,0z M29,56.512L6,46.995\r\n\t\t\t\tV7.488l23,9.517V56.512z M58,46.995l-23,9.517V17.005l23-9.517V46.995z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,0c-0.406,0-0.794,0.082-1.147,0.228l0,0L59.848,0.23\r\n\t\t\t\tc-0.009,0.004-0.018,0.007-0.027,0.011L32,11.753L4.179,0.241C4.17,0.237,4.161,0.234,4.152,0.23L4.147,0.228v0\r\n\t\t\t\tC3.794,0.082,3.406,0,3,0C1.343,0,0,1.343,0,3v46c0,1.257,0.774,2.333,1.871,2.78l28.942,11.976C31.177,63.913,31.578,64,32,64\r\n\t\t\t\tc0.422,0,0.823-0.087,1.187-0.245L62.129,51.78C63.226,51.333,64,50.257,64,49V3C64,1.343,62.657,0,61,0z M29,56.512L6,46.995\r\n\t\t\t\tV7.488l23,9.517V56.512z M58,46.995l-23,9.517V17.005l23-9.517V46.995z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BOOK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BOOK","display":"inline"},"children":[{"name":"g","attribs":{"id":"BOOK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M10,18h8c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-8c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC7,16.657,8.343,18,10,18z M10,35h8c1.657,0,3-1.343,3-3s-1.343-3-3-3h-8c-1.657,0-3,1.343-3,3S8.343,35,10,35z M54,3h-3v58h3\r\n\t\t\t\tc1.657,0,3-1.343,3-3V6C57,4.343,55.657,3,54,3z M13,6v3h5c3.314,0,6,2.686,6,6c0,3.314-2.686,6-6,6h-5v5h5c3.314,0,6,2.686,6,6\r\n\t\t\t\tc0,3.314-2.686,6-6,6h-5v5h5c3.314,0,6,2.686,6,6s-2.686,6-6,6h-5v3c0,1.657,1.343,3,3,3h32V3H16C14.343,3,13,4.343,13,6z M21,49\r\n\t\t\t\tc0-1.657-1.343-3-3-3h-8c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h8C19.657,52,21,50.657,21,49z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M10,18h8c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-8c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC7,16.657,8.343,18,10,18z M10,35h8c1.657,0,3-1.343,3-3s-1.343-3-3-3h-8c-1.657,0-3,1.343-3,3S8.343,35,10,35z M54,3h-3v58h3\r\n\t\t\t\tc1.657,0,3-1.343,3-3V6C57,4.343,55.657,3,54,3z M13,6v3h5c3.314,0,6,2.686,6,6c0,3.314-2.686,6-6,6h-5v5h5c3.314,0,6,2.686,6,6\r\n\t\t\t\tc0,3.314-2.686,6-6,6h-5v5h5c3.314,0,6,2.686,6,6s-2.686,6-6,6h-5v3c0,1.657,1.343,3,3,3h32V3H16C14.343,3,13,4.343,13,6z M21,49\r\n\t\t\t\tc0-1.657-1.343-3-3-3h-8c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h8C19.657,52,21,50.657,21,49z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"DOCUMENT__x2F__UPLOAD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__UPLOAD","display":"inline"},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__UPLOAD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M30,21.008h19L27.039,1H27v17.001C27,19.662,28.343,21.008,30,21.008z M36,46\r\n\t\t\t\tc0-1.657,0.672-3.157,1.757-4.243l7-7C45.843,33.672,47.343,33,49,33v-8.986H30c-3.314,0-6-2.692-6-6.013V1H8\r\n\t\t\t\tC6.343,1,5,2.343,5,4v52c0,1.657,1.343,3,3,3h35v-7.101C42.673,51.954,42.343,52,42,52C38.686,52,36,49.314,36,46z\r\n\t\t\t\t M58.121,43.879l-7-7C50.578,36.336,49.828,36,49,36c-0.828,0-1.578,0.336-2.121,0.879l-7,7C39.336,44.422,39,45.172,39,46\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L46,46.243V60c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V46.243l1.879,1.879\r\n\t\t\t\tC54.422,48.664,55.172,49,56,49c1.657,0,3-1.343,3-3C59,45.172,58.664,44.422,58.121,43.879z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M30,21.008h19L27.039,1H27v17.001C27,19.662,28.343,21.008,30,21.008z M36,46\r\n\t\t\t\tc0-1.657,0.672-3.157,1.757-4.243l7-7C45.843,33.672,47.343,33,49,33v-8.986H30c-3.314,0-6-2.692-6-6.013V1H8\r\n\t\t\t\tC6.343,1,5,2.343,5,4v52c0,1.657,1.343,3,3,3h35v-7.101C42.673,51.954,42.343,52,42,52C38.686,52,36,49.314,36,46z\r\n\t\t\t\t M58.121,43.879l-7-7C50.578,36.336,49.828,36,49,36c-0.828,0-1.578,0.336-2.121,0.879l-7,7C39.336,44.422,39,45.172,39,46\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L46,46.243V60c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V46.243l1.879,1.879\r\n\t\t\t\tC54.422,48.664,55.172,49,56,49c1.657,0,3-1.343,3-3C59,45.172,58.664,44.422,58.121,43.879z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"DOCUMENT__x2F__DOWNLOAD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__DOWNLOAD","display":"inline"},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__DOWNLOAD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M30,21.008h19L27.039,1H27v17.001C27,19.662,28.343,21.008,30,21.008z M36,53\r\n\t\t\t\tc0-3.314,2.686-6,6-6c0.343,0,0.673,0.046,1,0.101V39c0-3.314,2.686-6,6-6c0,0,0,0,0,0v-8.986H30c-3.314,0-6-2.692-6-6.013V1H8\r\n\t\t\t\tC6.343,1,5,2.343,5,4v52c0,1.657,1.343,3,3,3h31.515l-1.757-1.757C36.672,56.157,36,54.657,36,53z M56,50\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L52,52.757V39c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v13.757l-1.879-1.879\r\n\t\t\t\tC43.578,50.336,42.828,50,42,50c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l7,7C47.422,62.664,48.172,63,49,63\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l7-7C58.664,54.579,59,53.829,59,53C59,51.343,57.657,50,56,50z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M30,21.008h19L27.039,1H27v17.001C27,19.662,28.343,21.008,30,21.008z M36,53\r\n\t\t\t\tc0-3.314,2.686-6,6-6c0.343,0,0.673,0.046,1,0.101V39c0-3.314,2.686-6,6-6c0,0,0,0,0,0v-8.986H30c-3.314,0-6-2.692-6-6.013V1H8\r\n\t\t\t\tC6.343,1,5,2.343,5,4v52c0,1.657,1.343,3,3,3h31.515l-1.757-1.757C36.672,56.157,36,54.657,36,53z M56,50\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L52,52.757V39c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v13.757l-1.879-1.879\r\n\t\t\t\tC43.578,50.336,42.828,50,42,50c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l7,7C47.422,62.664,48.172,63,49,63\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l7-7C58.664,54.579,59,53.829,59,53C59,51.343,57.657,50,56,50z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"DOCUMENT__x2F__DELETE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M30,22.008h19L27,1.964v17.037C27,20.662,28.343,22.008,30,22.008z M41.515,54\r\n\t\t\t\tl-1.757-1.757C38.672,51.157,38,49.657,38,48c0-3.314,2.686-6,6-6c1.657,0,3.153,0.675,4.238,1.762l0.005-0.005L49,44.515v-19.5\r\n\t\t\t\tH30c-3.314,0-6-2.692-6-6.013V2H8C6.343,2,5,3.343,5,5v52c0,1.657,1.343,3,3,3h28v0h2c0-1.657,0.672-3.156,1.758-4.242\r\n\t\t\t\tl-0.001-0.001L41.515,54z M54.243,54l3.879-3.878C58.664,49.578,59,48.828,59,48c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L50,49.758l-3.879-3.879C45.578,45.336,44.829,45,44,45c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L45.757,54l-3.879,3.879C41.336,58.422,41,59.172,41,60c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L50,58.243l3.879,3.879C54.422,62.664,55.172,63,56,63c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L54.243,54z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M30,22.008h19L27,1.964v17.037C27,20.662,28.343,22.008,30,22.008z M41.515,54\r\n\t\t\t\tl-1.757-1.757C38.672,51.157,38,49.657,38,48c0-3.314,2.686-6,6-6c1.657,0,3.153,0.675,4.238,1.762l0.005-0.005L49,44.515v-19.5\r\n\t\t\t\tH30c-3.314,0-6-2.692-6-6.013V2H8C6.343,2,5,3.343,5,5v52c0,1.657,1.343,3,3,3h28v0h2c0-1.657,0.672-3.156,1.758-4.242\r\n\t\t\t\tl-0.001-0.001L41.515,54z M54.243,54l3.879-3.878C58.664,49.578,59,48.828,59,48c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L50,49.758l-3.879-3.879C45.578,45.336,44.829,45,44,45c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L45.757,54l-3.879,3.879C41.336,58.422,41,59.172,41,60c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L50,58.243l3.879,3.879C54.422,62.664,55.172,63,56,63c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L54.243,54z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"DOCUMENT__x2F__OK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M30,23.008h19L27,2.964v17.037C27,21.662,28.343,23.008,30,23.008z M56,48\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L48,54.757l-1.879-1.879C45.578,52.336,44.828,52,44,52c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.829,0.336,1.578,0.879,2.121l4,4C46.422,61.664,47.172,62,48,62s1.578-0.336,2.121-0.879l8-8C58.664,52.579,59,51.828,59,51\r\n\t\t\t\tC59,49.343,57.657,48,56,48z M38,55c0-3.314,2.686-6,6-6c1.533,0,2.909,0.599,3.967,1.547L49,49.515v-23.5H30\r\n\t\t\t\tc-3.314,0-6-2.692-6-6.013V3H8C6.343,3,5,4.343,5,6v52c0,1.657,1.343,3,3,3h23v0h10.515l-1.757-1.757\r\n\t\t\t\tC38.672,58.157,38,56.657,38,55z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M30,23.008h19L27,2.964v17.037C27,21.662,28.343,23.008,30,23.008z M56,48\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L48,54.757l-1.879-1.879C45.578,52.336,44.828,52,44,52c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.829,0.336,1.578,0.879,2.121l4,4C46.422,61.664,47.172,62,48,62s1.578-0.336,2.121-0.879l8-8C58.664,52.579,59,51.828,59,51\r\n\t\t\t\tC59,49.343,57.657,48,56,48z M38,55c0-3.314,2.686-6,6-6c1.533,0,2.909,0.599,3.967,1.547L49,49.515v-23.5H30\r\n\t\t\t\tc-3.314,0-6-2.692-6-6.013V3H8C6.343,3,5,4.343,5,6v52c0,1.657,1.343,3,3,3h23v0h10.515l-1.757-1.757\r\n\t\t\t\tC38.672,58.157,38,56.657,38,55z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"DOCUMENT__x2F__REMOVE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31,23.008h19L28,2.964v17.037C28,21.662,29.343,23.008,31,23.008z M38,55\r\n\t\t\t\tc0-3.314,2.686-6,6-6h6V26.014H31c-3.314,0-6-2.692-6-6.013V2.964h-9V3H9C7.343,3,6,4.343,6,6v52c0,1.657,1.343,3,3,3h35\r\n\t\t\t\tc0,0,0,0,0,0C40.686,61,38,58.314,38,55z M56,52H44c-1.657,0-3,1.343-3,3s1.343,3,3,3h12c1.657,0,3-1.343,3-3S57.657,52,56,52z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31,23.008h19L28,2.964v17.037C28,21.662,29.343,23.008,31,23.008z M38,55\r\n\t\t\t\tc0-3.314,2.686-6,6-6h6V26.014H31c-3.314,0-6-2.692-6-6.013V2.964h-9V3H9C7.343,3,6,4.343,6,6v52c0,1.657,1.343,3,3,3h35\r\n\t\t\t\tc0,0,0,0,0,0C40.686,61,38,58.314,38,55z M56,52H44c-1.657,0-3,1.343-3,3s1.343,3,3,3h12c1.657,0,3-1.343,3-3S57.657,52,56,52z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"DOCUMENT__x2F__ADD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31,22.008h19L28,1.964v17.037C28,20.662,29.343,22.008,31,22.008z M56,51h-3\r\n\t\t\t\tv-3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3s1.343,3,3,3h3v3c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.657,0,3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3S57.657,51,56,51z M38,54c0-3.314,2.686-6,6-6c0-3.314,2.686-6,6-6V25.014H31\r\n\t\t\t\tc-3.314,0-6-2.692-6-6.013V1.964h-9V2H9C7.343,2,6,3.343,6,5v52c0,1.657,1.343,3,3,3h35c0,0,0,0,0,0C40.686,60,38,57.314,38,54z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31,22.008h19L28,1.964v17.037C28,20.662,29.343,22.008,31,22.008z M56,51h-3\r\n\t\t\t\tv-3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3s1.343,3,3,3h3v3c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.657,0,3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3S57.657,51,56,51z M38,54c0-3.314,2.686-6,6-6c0-3.314,2.686-6,6-6V25.014H31\r\n\t\t\t\tc-3.314,0-6-2.692-6-6.013V1.964h-9V2H9C7.343,2,6,3.343,6,5v52c0,1.657,1.343,3,3,3h35c0,0,0,0,0,0C40.686,60,38,57.314,38,54z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"DOCUMENTS_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"DOCUMENTS","display":"inline"},"children":[{"name":"g","attribs":{"id":"DOCUMENTS","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,17.001V0H16c-1.657,0-3,1.343-3,3v52c0,1.657,1.343,3,3,3h38\r\n\t\t\t\tc1.657,0,3-1.343,3-3V23.015H38C34.686,23.015,32,20.322,32,17.001z M38,20.008h19L35-0.036v17.037\r\n\t\t\t\tC35,18.662,36.343,20.008,38,20.008z M10,55V6C8.343,6,7,7.343,7,9v49c0,3.314,2.686,6,6,6h35c1.657,0,3-1.343,3-3H16\r\n\t\t\t\tC12.686,61,10,58.314,10,55z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,17.001V0H16c-1.657,0-3,1.343-3,3v52c0,1.657,1.343,3,3,3h38\r\n\t\t\t\tc1.657,0,3-1.343,3-3V23.015H38C34.686,23.015,32,20.322,32,17.001z M38,20.008h19L35-0.036v17.037\r\n\t\t\t\tC35,18.662,36.343,20.008,38,20.008z M10,55V6C8.343,6,7,7.343,7,9v49c0,3.314,2.686,6,6,6h35c1.657,0,3-1.343,3-3H16\r\n\t\t\t\tC12.686,61,10,58.314,10,55z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"DOCUMENT_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"DOCUMENT","display":"inline"},"children":[{"name":"g","attribs":{"id":"DOCUMENT","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M35,23.008h19L32,2.964v17.037C32,21.662,33.343,23.008,35,23.008z M29,20.001\r\n\t\t\t\tV3H13c-1.657,0-3,1.343-3,3v52c0,1.657,1.343,3,3,3h38c1.657,0,3-1.343,3-3V26.014H35C31.686,26.014,29,23.322,29,20.001z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M35,23.008h19L32,2.964v17.037C32,21.662,33.343,23.008,35,23.008z M29,20.001\r\n\t\t\t\tV3H13c-1.657,0-3,1.343-3,3v52c0,1.657,1.343,3,3,3h38c1.657,0,3-1.343,3-3V26.014H35C31.686,26.014,29,23.322,29,20.001z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"FOLDER__x2F__DELETE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"FOLDER__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{"id":"FOLDER__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M64,46c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L55,47.757\r\n\t\t\t\tl-3.879-3.879C50.578,43.336,49.828,43,49,43c-1.657,0-3,1.343-3,3c0,0.829,0.336,1.578,0.879,2.121L50.757,52l-3.879,3.879\r\n\t\t\t\tC46.336,56.422,46,57.172,46,58c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L55,56.243l3.879,3.879\r\n\t\t\t\tC59.422,60.664,60.172,61,61,61c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L59.243,52l3.879-3.879\r\n\t\t\t\tC63.664,47.578,64,46.829,64,46z M0,51c0,1.657,1.343,3,3,3h41v0h0.557c0.07-0.078,0.126-0.168,0.2-0.243L46.515,52l-1.757-1.758\r\n\t\t\t\tC43.672,49.157,43,47.657,43,46c0-3.314,2.686-6,6-6c1.657,0,3.157,0.672,4.243,1.757L55,43.515l1.757-1.757\r\n\t\t\t\tC57.843,40.672,59.343,40,61,40c1.098,0,2.114,0.317,3,0.832V19H0V51z M61,10H23.982L18,4H3C1.343,4,0,5.343,0,7v9h64v-3\r\n\t\t\t\tC64,11.343,62.657,10,61,10z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M64,46c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L55,47.757\r\n\t\t\t\tl-3.879-3.879C50.578,43.336,49.828,43,49,43c-1.657,0-3,1.343-3,3c0,0.829,0.336,1.578,0.879,2.121L50.757,52l-3.879,3.879\r\n\t\t\t\tC46.336,56.422,46,57.172,46,58c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L55,56.243l3.879,3.879\r\n\t\t\t\tC59.422,60.664,60.172,61,61,61c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L59.243,52l3.879-3.879\r\n\t\t\t\tC63.664,47.578,64,46.829,64,46z M0,51c0,1.657,1.343,3,3,3h41v0h0.557c0.07-0.078,0.126-0.168,0.2-0.243L46.515,52l-1.757-1.758\r\n\t\t\t\tC43.672,49.157,43,47.657,43,46c0-3.314,2.686-6,6-6c1.657,0,3.157,0.672,4.243,1.757L55,43.515l1.757-1.757\r\n\t\t\t\tC57.843,40.672,59.343,40,61,40c1.098,0,2.114,0.317,3,0.832V19H0V51z M61,10H23.982L18,4H3C1.343,4,0,5.343,0,7v9h64v-3\r\n\t\t\t\tC64,11.343,62.657,10,61,10z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"FOLDER__x2F__OK_3_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"FOLDER__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{"id":"FOLDER__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,46c-0.828,0-1.578,0.336-2.121,0.879L53,52.758l-1.879-1.879\r\n\t\t\t\tC50.578,50.336,49.828,50,49,50c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l4,4C51.422,59.664,52.172,60,53,60\r\n\t\t\t\ts1.578-0.336,2.121-0.879l8-8C63.664,50.579,64,49.828,64,49C64,47.343,62.657,46,61,46z M61,11H23.982L18,5H3\r\n\t\t\t\tC1.343,5,0,6.343,0,8v9h64v-3C64,12.343,62.657,11,61,11z M0,52c0,1.657,1.343,3,3,3h40.367c0,0,0,0,0,0\r\n\t\t\t\tC43.144,54.372,43,53.705,43,53c0-3.314,2.686-6,6-6c1.533,0,2.916,0.592,3.977,1.538l3.781-3.781C57.843,43.672,59.343,43,61,43\r\n\t\t\t\tc1.099,0,2.114,0.317,3,0.832V20H0V52z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,46c-0.828,0-1.578,0.336-2.121,0.879L53,52.758l-1.879-1.879\r\n\t\t\t\tC50.578,50.336,49.828,50,49,50c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l4,4C51.422,59.664,52.172,60,53,60\r\n\t\t\t\ts1.578-0.336,2.121-0.879l8-8C63.664,50.579,64,49.828,64,49C64,47.343,62.657,46,61,46z M61,11H23.982L18,5H3\r\n\t\t\t\tC1.343,5,0,6.343,0,8v9h64v-3C64,12.343,62.657,11,61,11z M0,52c0,1.657,1.343,3,3,3h40.367c0,0,0,0,0,0\r\n\t\t\t\tC43.144,54.372,43,53.705,43,53c0-3.314,2.686-6,6-6c1.533,0,2.916,0.592,3.977,1.538l3.781-3.781C57.843,43.672,59.343,43,61,43\r\n\t\t\t\tc1.099,0,2.114,0.317,3,0.832V20H0V52z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"FOLDER__x2F__REMOVE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"FOLDER__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{"id":"FOLDER__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M0,54c0,1.657,1.343,3,3,3h39.367C42.144,56.372,42,55.705,42,55\r\n\t\t\t\tc0-3.314,2.686-6,6-6h12c1.544,0,2.937,0.599,4,1.557V22H0V54z M60,52H48c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12\r\n\t\t\t\tc1.657,0,3-1.343,3-3C63,53.343,61.657,52,60,52z M61,13H23.982L18,7H3c-1.657,0-3,1.343-3,3v9h64v-3C64,14.343,62.657,13,61,13z\r\n\t\t\t\t"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M0,54c0,1.657,1.343,3,3,3h39.367C42.144,56.372,42,55.705,42,55\r\n\t\t\t\tc0-3.314,2.686-6,6-6h12c1.544,0,2.937,0.599,4,1.557V22H0V54z M60,52H48c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12\r\n\t\t\t\tc1.657,0,3-1.343,3-3C63,53.343,61.657,52,60,52z M61,13H23.982L18,7H3c-1.657,0-3,1.343-3,3v9h64v-3C64,14.343,62.657,13,61,13z\r\n\t\t\t\t"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"FOLDER__x2F__OK_2_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"FOLDER__x2F__OK_1_","display":"inline"},"children":[{"name":"g","attribs":{"id":"FOLDER__x2F__OK_1_","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M60,49h-3v-3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v3h-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h3v3c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3\r\n\t\t\t\tC63,50.343,61.657,49,60,49z M0,51c0,1.657,1.343,3,3,3h39.367C42.144,53.372,42,52.705,42,52c0-3.314,2.686-6,6-6\r\n\t\t\t\tc0-3.314,2.686-6,6-6s6,2.686,6,6c1.544,0,2.937,0.599,4,1.557V19H0V51z M61,10H23.982L18,4H3C1.343,4,0,5.343,0,7v9h64v-3\r\n\t\t\t\tC64,11.343,62.657,10,61,10z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M60,49h-3v-3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v3h-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h3v3c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3\r\n\t\t\t\tC63,50.343,61.657,49,60,49z M0,51c0,1.657,1.343,3,3,3h39.367C42.144,53.372,42,52.705,42,52c0-3.314,2.686-6,6-6\r\n\t\t\t\tc0-3.314,2.686-6,6-6s6,2.686,6,6c1.544,0,2.937,0.599,4,1.557V19H0V51z M61,10H23.982L18,4H3C1.343,4,0,5.343,0,7v9h64v-3\r\n\t\t\t\tC64,11.343,62.657,10,61,10z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"FOLDER_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"FOLDER","display":"inline"},"children":[{"name":"g","attribs":{"id":"FOLDER","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M0,54c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V22H0V54z M61,13H23.982L18,7\r\n\t\t\t\tH3c-1.657,0-3,1.343-3,3v9h64v-3C64,14.343,62.657,13,61,13z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M0,54c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V22H0V54z M61,13H23.982L18,7\r\n\t\t\t\tH3c-1.657,0-3,1.343-3,3v9h64v-3C64,14.343,62.657,13,61,13z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CIRCLE__x2F__SKIP_NEXT_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__SKIP_NEXT","display":"inline"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__SKIP_NEXT","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M39,22c-1.657,0-3,1.343-3,3v4.29l-9.235-6.717L26.76,22.58\r\n\t\t\t\tC26.264,22.219,25.66,22,25,22c-1.657,0-3,1.343-3,3v14c0,1.657,1.343,3,3,3c0.66,0,1.264-0.219,1.76-0.58l0.005,0.007L36,34.71\r\n\t\t\t\tV39c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V25C42,23.343,40.657,22,39,22z M32,0C14.327,0,0,14.327,0,32\r\n\t\t\t\tc0,17.673,14.327,32,32,32s32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6\r\n\t\t\t\tc14.359,0,26,11.64,26,26C58,46.36,46.36,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M39,22c-1.657,0-3,1.343-3,3v4.29l-9.235-6.717L26.76,22.58\r\n\t\t\t\tC26.264,22.219,25.66,22,25,22c-1.657,0-3,1.343-3,3v14c0,1.657,1.343,3,3,3c0.66,0,1.264-0.219,1.76-0.58l0.005,0.007L36,34.71\r\n\t\t\t\tV39c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V25C42,23.343,40.657,22,39,22z M32,0C14.327,0,0,14.327,0,32\r\n\t\t\t\tc0,17.673,14.327,32,32,32s32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6\r\n\t\t\t\tc14.359,0,26,11.64,26,26C58,46.36,46.36,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CIRCLE__x2F__SKIP_PREVIOUS_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__SKIP_PREVIOUS","display":"inline"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__SKIP_PREVIOUS","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M39,22c-0.66,0-1.265,0.219-1.76,0.58l-0.005-0.007L28,29.291V25\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v14c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-4.29l9.235,6.717l0.005-0.007\r\n\t\t\t\tC37.736,41.781,38.34,42,39,42c1.657,0,3-1.343,3-3V25C42,23.343,40.657,22,39,22z M32,0C14.327,0,0,14.327,0,32\r\n\t\t\t\tc0,17.673,14.327,32,32,32c17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6s26,11.64,26,26C58,46.36,46.359,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M39,22c-0.66,0-1.265,0.219-1.76,0.58l-0.005-0.007L28,29.291V25\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v14c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-4.29l9.235,6.717l0.005-0.007\r\n\t\t\t\tC37.736,41.781,38.34,42,39,42c1.657,0,3-1.343,3-3V25C42,23.343,40.657,22,39,22z M32,0C14.327,0,0,14.327,0,32\r\n\t\t\t\tc0,17.673,14.327,32,32,32c17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6s26,11.64,26,26C58,46.36,46.359,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CIRCLE__x2F__FAST_FORWARD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__FAST_FORWARD","display":"inline"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__FAST_FORWARD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32s32-14.327,32-32\r\n\t\t\t\tC64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tC58,46.36,46.359,58,32,58z M45.559,29.437l-9.699-6.789C35.349,22.243,34.703,22,34,22c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.008,0.001,0.016,0.001,0.024h-0.005v4.018l-9.135-6.394C21.349,22.243,20.703,22,20,22c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.008,0.001,0.016,0.001,0.024h-0.005v14h0.005C17.013,40.67,18.351,42,20,42c0.708,0,1.358-0.246,1.871-0.655l9.125-6.387\r\n\t\t\t\tv4.067h0.005C31.013,40.67,32.351,42,34,42c0.708,0,1.358-0.246,1.871-0.655l9.68-6.776C46.419,34.043,47,33.089,47,32\r\n\t\t\t\tC47,30.914,46.423,29.963,45.559,29.437z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32s32-14.327,32-32\r\n\t\t\t\tC64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tC58,46.36,46.359,58,32,58z M45.559,29.437l-9.699-6.789C35.349,22.243,34.703,22,34,22c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.008,0.001,0.016,0.001,0.024h-0.005v4.018l-9.135-6.394C21.349,22.243,20.703,22,20,22c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.008,0.001,0.016,0.001,0.024h-0.005v14h0.005C17.013,40.67,18.351,42,20,42c0.708,0,1.358-0.246,1.871-0.655l9.125-6.387\r\n\t\t\t\tv4.067h0.005C31.013,40.67,32.351,42,34,42c0.708,0,1.358-0.246,1.871-0.655l9.68-6.776C46.419,34.043,47,33.089,47,32\r\n\t\t\t\tC47,30.914,46.423,29.963,45.559,29.437z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CIRCLE__x2F__REWIND_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__REWIND","display":"inline"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__REWIND","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M47,25c0-1.657-1.343-3-3-3c-0.703,0-1.349,0.242-1.861,0.648l-9.135,6.394\r\n\t\t\t\tv-4.018h-0.006C32.999,25.016,33,25.008,33,25c0-1.657-1.343-3-3-3c-0.703,0-1.349,0.242-1.861,0.648l-9.699,6.789\r\n\t\t\t\tC17.577,29.963,17,30.914,17,32c0,1.089,0.581,2.043,1.449,2.569l9.68,6.776C28.642,41.754,29.292,42,30,42\r\n\t\t\t\tc1.649,0,2.987-1.33,2.999-2.976h0.005v-4.067l9.125,6.387C42.642,41.754,43.292,42,44,42c1.649,0,2.987-1.33,2.999-2.976h0.005\r\n\t\t\t\tv-14h-0.005C46.999,25.016,47,25.008,47,25z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32c17.673,0,32-14.327,32-32\r\n\t\t\t\tC64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tC58,46.36,46.359,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M47,25c0-1.657-1.343-3-3-3c-0.703,0-1.349,0.242-1.861,0.648l-9.135,6.394\r\n\t\t\t\tv-4.018h-0.006C32.999,25.016,33,25.008,33,25c0-1.657-1.343-3-3-3c-0.703,0-1.349,0.242-1.861,0.648l-9.699,6.789\r\n\t\t\t\tC17.577,29.963,17,30.914,17,32c0,1.089,0.581,2.043,1.449,2.569l9.68,6.776C28.642,41.754,29.292,42,30,42\r\n\t\t\t\tc1.649,0,2.987-1.33,2.999-2.976h0.005v-4.067l9.125,6.387C42.642,41.754,43.292,42,44,42c1.649,0,2.987-1.33,2.999-2.976h0.005\r\n\t\t\t\tv-14h-0.005C46.999,25.016,47,25.008,47,25z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32c17.673,0,32-14.327,32-32\r\n\t\t\t\tC64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tC58,46.36,46.359,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CIRCLE__x2F__PAUSE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__PAUSE","display":"inline"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__PAUSE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32s32-14.327,32-32\r\n\t\t\t\tC64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6s26,11.64,26,26C58,46.36,46.359,58,32,58z\r\n\t\t\t\t M29,24c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3c0,0.002,0,0.005,0,0.007h-0.002v16H23C23.004,41.661,24.346,43,26,43\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.023-0.001-0.047-0.002-0.07V24.07C28.999,24.047,29,24.024,29,24z M41,24c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.002,0,0.005,0,0.007h-0.002v16H35C35.004,41.661,36.346,43,38,43c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.023-0.001-0.047-0.002-0.07V24.07C40.999,24.047,41,24.024,41,24z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32s32-14.327,32-32\r\n\t\t\t\tC64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6s26,11.64,26,26C58,46.36,46.359,58,32,58z\r\n\t\t\t\t M29,24c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3c0,0.002,0,0.005,0,0.007h-0.002v16H23C23.004,41.661,24.346,43,26,43\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.023-0.001-0.047-0.002-0.07V24.07C28.999,24.047,29,24.024,29,24z M41,24c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.002,0,0.005,0,0.007h-0.002v16H35C35.004,41.661,36.346,43,38,43c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.023-0.001-0.047-0.002-0.07V24.07C40.999,24.047,41,24.024,41,24z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CIRCLE__x2F__STOP_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__STOP","display":"inline"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__STOP","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M40,21H24c-1.657,0-3,1.343-3,3v16c0,1.657,1.343,3,3,3h16c1.657,0,3-1.343,3-3\r\n\t\t\t\tV24C43,22.343,41.657,21,40,21z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32c17.673,0,32-14.327,32-32\r\n\t\t\t\tC64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tC58,46.36,46.359,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M40,21H24c-1.657,0-3,1.343-3,3v16c0,1.657,1.343,3,3,3h16c1.657,0,3-1.343,3-3\r\n\t\t\t\tV24C43,22.343,41.657,21,40,21z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32c17.673,0,32-14.327,32-32\r\n\t\t\t\tC64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tC58,46.36,46.359,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CIRCLE__x2F__PLAY_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__PLAY","display":"inline"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__PLAY","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M41.492,29.398l-15.8-9.875C25.21,19.193,24.628,19,24,19c-1.657,0-3,1.343-3,3\r\n\t\t\t\tv20c0,1.657,1.343,3,3,3c0.066,0,0.131-0.003,0.195-0.007c0.017-0.001,0.034-0.003,0.051-0.004\r\n\t\t\t\tc0.055-0.005,0.109-0.01,0.163-0.018c0.01-0.001,0.021-0.002,0.031-0.004c0.064-0.01,0.128-0.021,0.191-0.035\r\n\t\t\t\tc0.01-0.002,0.019-0.005,0.029-0.007c0.057-0.013,0.112-0.027,0.167-0.043c0.009-0.003,0.018-0.005,0.027-0.008\r\n\t\t\t\tc0.128-0.038,0.252-0.084,0.372-0.138c0.005-0.002,0.009-0.004,0.014-0.006c0.123-0.056,0.242-0.12,0.355-0.191l0.013,0.02\r\n\t\t\t\tl15.911-9.974C42.405,34.066,43,33.103,43,32C43,30.886,42.393,29.915,41.492,29.398z M32,0C14.327,0,0,14.327,0,32\r\n\t\t\t\tc0,17.673,14.327,32,32,32s32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6\r\n\t\t\t\tc14.359,0,26,11.64,26,26C58,46.36,46.359,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M41.492,29.398l-15.8-9.875C25.21,19.193,24.628,19,24,19c-1.657,0-3,1.343-3,3\r\n\t\t\t\tv20c0,1.657,1.343,3,3,3c0.066,0,0.131-0.003,0.195-0.007c0.017-0.001,0.034-0.003,0.051-0.004\r\n\t\t\t\tc0.055-0.005,0.109-0.01,0.163-0.018c0.01-0.001,0.021-0.002,0.031-0.004c0.064-0.01,0.128-0.021,0.191-0.035\r\n\t\t\t\tc0.01-0.002,0.019-0.005,0.029-0.007c0.057-0.013,0.112-0.027,0.167-0.043c0.009-0.003,0.018-0.005,0.027-0.008\r\n\t\t\t\tc0.128-0.038,0.252-0.084,0.372-0.138c0.005-0.002,0.009-0.004,0.014-0.006c0.123-0.056,0.242-0.12,0.355-0.191l0.013,0.02\r\n\t\t\t\tl15.911-9.974C42.405,34.066,43,33.103,43,32C43,30.886,42.393,29.915,41.492,29.398z M32,0C14.327,0,0,14.327,0,32\r\n\t\t\t\tc0,17.673,14.327,32,32,32s32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6\r\n\t\t\t\tc14.359,0,26,11.64,26,26C58,46.36,46.359,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CIRCLE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE","display":"inline"},"children":[{"name":"g","attribs":{"id":"CIRCLE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32S17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tS46.359,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32S17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tS46.359,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SQUARE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SQUARE","display":"inline"},"children":[{"name":"g","attribs":{"id":"SQUARE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z M58,58H6V6h52V58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z M58,58H6V6h52V58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"COMPUTER__x2F__UPLOAD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__UPLOAD","display":"inline"},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__UPLOAD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M25,15c0.829,0,1.579-0.336,2.121-0.879L29,12.243V26c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3V12.243l1.879,1.879C37.422,14.664,38.172,15,39,15c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121l-7-7\r\n\t\t\t\tC33.578,2.336,32.829,2,32,2c-0.828,0-1.578,0.336-2.121,0.879l-7,7C22.336,10.422,22,11.172,22,12C22,13.657,23.343,15,25,15z\r\n\t\t\t\t M60,6H41.485l4,4H59v34H5V10h13.515l4-4H4C2.343,6,1,7.343,1,9v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19\r\n\t\t\t\tc1.657,0,3-1.343,3-3V9C63,7.343,61.657,6,60,6z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M25,15c0.829,0,1.579-0.336,2.121-0.879L29,12.243V26c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3V12.243l1.879,1.879C37.422,14.664,38.172,15,39,15c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121l-7-7\r\n\t\t\t\tC33.578,2.336,32.829,2,32,2c-0.828,0-1.578,0.336-2.121,0.879l-7,7C22.336,10.422,22,11.172,22,12C22,13.657,23.343,15,25,15z\r\n\t\t\t\t M60,6H41.485l4,4H59v34H5V10h13.515l4-4H4C2.343,6,1,7.343,1,9v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19\r\n\t\t\t\tc1.657,0,3-1.343,3-3V9C63,7.343,61.657,6,60,6z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"COMPUTER__x2F__DOWNLOAD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__DOWNLOAD","display":"inline"},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__DOWNLOAD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M22,19c0,0.828,0.336,1.578,0.879,2.121l7,7C30.422,28.664,31.172,29,32,29\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l7-7C41.664,20.579,42,19.828,42,19c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879\r\n\t\t\t\tL35,18.758V5c0-1.657-1.343-3-3-3s-3,1.343-3,3v13.757l-1.879-1.879C26.578,16.336,25.828,16,25,16C23.343,16,22,17.343,22,19z\r\n\t\t\t\t M60,6H38v4h21v34H5V10h21V6H4C2.343,6,1,7.343,1,9v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V9\r\n\t\t\t\tC63,7.343,61.657,6,60,6z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M22,19c0,0.828,0.336,1.578,0.879,2.121l7,7C30.422,28.664,31.172,29,32,29\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l7-7C41.664,20.579,42,19.828,42,19c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879\r\n\t\t\t\tL35,18.758V5c0-1.657-1.343-3-3-3s-3,1.343-3,3v13.757l-1.879-1.879C26.578,16.336,25.828,16,25,16C23.343,16,22,17.343,22,19z\r\n\t\t\t\t M60,6H38v4h21v34H5V10h21V6H4C2.343,6,1,7.343,1,9v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V9\r\n\t\t\t\tC63,7.343,61.657,6,60,6z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"COMPUTER__x2F__DELETE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M60,4H4C2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5\r\n\t\t\t\th19c1.657,0,3-1.343,3-3V7C63,5.343,61.657,4,60,4z M59,42H5V8h54V42z M23,31c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L32,29.243l3.879,3.879C36.422,33.664,37.172,34,38,34c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L36.243,25l3.879-3.879C40.664,20.578,41,19.828,41,19c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L32,20.757l-3.879-3.879C27.578,16.336,26.828,16,26,16c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L27.757,25l-3.879,3.879C23.336,29.422,23,30.172,23,31z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M60,4H4C2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5\r\n\t\t\t\th19c1.657,0,3-1.343,3-3V7C63,5.343,61.657,4,60,4z M59,42H5V8h54V42z M23,31c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L32,29.243l3.879,3.879C36.422,33.664,37.172,34,38,34c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L36.243,25l3.879-3.879C40.664,20.578,41,19.828,41,19c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L32,20.757l-3.879-3.879C27.578,16.336,26.828,16,26,16c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L27.757,25l-3.879,3.879C23.336,29.422,23,30.172,23,31z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"COMPUTER__x2F__OK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M27.879,31.121C28.422,31.664,29.172,32,30,32c0.829,0,1.578-0.336,2.121-0.879\r\n\t\t\t\tl8-8C40.664,22.578,41,21.829,41,21c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L30,24.757l-1.879-1.879\r\n\t\t\t\tC27.578,22.336,26.828,22,26,22c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L27.879,31.121z M60,4H4\r\n\t\t\t\tC2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V7C63,5.343,61.657,4,60,4z\r\n\t\t\t\t M59,42H5V8h54V42z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M27.879,31.121C28.422,31.664,29.172,32,30,32c0.829,0,1.578-0.336,2.121-0.879\r\n\t\t\t\tl8-8C40.664,22.578,41,21.829,41,21c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L30,24.757l-1.879-1.879\r\n\t\t\t\tC27.578,22.336,26.828,22,26,22c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L27.879,31.121z M60,4H4\r\n\t\t\t\tC2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V7C63,5.343,61.657,4,60,4z\r\n\t\t\t\t M59,42H5V8h54V42z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"COMPUTER__x2F__REMOVE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26,28h12c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H26c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC23,26.657,24.343,28,26,28z M60,4H4C2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19\r\n\t\t\t\tc1.657,0,3-1.343,3-3V7C63,5.343,61.657,4,60,4z M59,42H5V8h54V42z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26,28h12c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H26c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC23,26.657,24.343,28,26,28z M60,4H4C2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19\r\n\t\t\t\tc1.657,0,3-1.343,3-3V7C63,5.343,61.657,4,60,4z M59,42H5V8h54V42z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"COMPUTER__x2F__ADD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26,28h3v3c0,1.657,1.343,3,3,3s3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-1.657-1.343-3-3-3h-3v-3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3C23,26.657,24.343,28,26,28z M60,4H4\r\n\t\t\t\tC2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V7C63,5.343,61.657,4,60,4z\r\n\t\t\t\t M59,42H5V8h54V42z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26,28h3v3c0,1.657,1.343,3,3,3s3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-1.657-1.343-3-3-3h-3v-3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3C23,26.657,24.343,28,26,28z M60,4H4\r\n\t\t\t\tC2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V7C63,5.343,61.657,4,60,4z\r\n\t\t\t\t M59,42H5V8h54V42z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"IMAC_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"IMAC","display":"inline"},"children":[{"name":"g","attribs":{"id":"IMAC","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M60,4H4C2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5\r\n\t\t\t\th19c1.657,0,3-1.343,3-3V7C63,5.343,61.657,4,60,4z M59,42H5V8h54V42z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M60,4H4C2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5\r\n\t\t\t\th19c1.657,0,3-1.343,3-3V7C63,5.343,61.657,4,60,4z M59,42H5V8h54V42z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MACBOOK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MACBOOK","display":"inline"},"children":[{"name":"g","attribs":{"id":"MACBOOK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M58,44V15c0-1.657-1.343-3-3-3H9c-1.657,0-3,1.343-3,3v29H0v5\r\n\t\t\t\tc0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3v-5H58z M39,49H25v-2h14V49z M54,42H10V16h44V42z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M58,44V15c0-1.657-1.343-3-3-3H9c-1.657,0-3,1.343-3,3v29H0v5\r\n\t\t\t\tc0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3v-5H58z M39,49H25v-2h14V49z M54,42H10V16h44V42z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"IPAD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"IPAD","display":"inline"},"children":[{"name":"g","attribs":{"id":"IPAD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M54,3H10C8.343,3,7,4.343,7,6v52c0,1.657,1.343,3,3,3h44c1.657,0,3-1.343,3-3V6\r\n\t\t\t\tC57,4.343,55.657,3,54,3z M32,59c-1.105,0-2-0.896-2-2s0.895-2,2-2s2,0.896,2,2S33.105,59,32,59z M51,53H13V9h38V53z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M54,3H10C8.343,3,7,4.343,7,6v52c0,1.657,1.343,3,3,3h44c1.657,0,3-1.343,3-3V6\r\n\t\t\t\tC57,4.343,55.657,3,54,3z M32,59c-1.105,0-2-0.896-2-2s0.895-2,2-2s2,0.896,2,2S33.105,59,32,59z M51,53H13V9h38V53z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"IPHONE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"IPHONE","display":"inline"},"children":[{"name":"g","attribs":{"id":"IPHONE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46,3H18c-1.657,0-3,1.343-3,3v52c0,1.657,1.343,3,3,3h28c1.657,0,3-1.343,3-3\r\n\t\t\t\tV6C49,4.343,47.657,3,46,3z M32,58c-1.105,0-2-0.895-2-2c0-1.105,0.895-2,2-2s2,0.895,2,2C34,57.105,33.105,58,32,58z M46,51H18\r\n\t\t\t\tV9h28V51z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46,3H18c-1.657,0-3,1.343-3,3v52c0,1.657,1.343,3,3,3h28c1.657,0,3-1.343,3-3\r\n\t\t\t\tV6C49,4.343,47.657,3,46,3z M32,58c-1.105,0-2-0.895-2-2c0-1.105,0.895-2,2-2s2,0.895,2,2C34,57.105,33.105,58,32,58z M46,51H18\r\n\t\t\t\tV9h28V51z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"LOGOUT_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"LOGOUT","display":"inline"},"children":[{"name":"g","attribs":{"id":"LOGOUT","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M56,32c0-0.885-0.383-1.681-0.993-2.23l0,0l-10-9l0,0\r\n\t\t\t\tC44.475,20.292,43.772,20,43,20c-1.657,0-3,1.343-3,3c0,0.885,0.384,1.681,0.993,2.23l0,0L45.182,29H27c0,0,0,0,0,0\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3c0,0,0,0,0,0h18.182l-4.189,3.77l0,0C40.384,39.32,40,40.115,40,41\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.772,0,1.475-0.292,2.007-0.77l0,0l10-9l0,0C55.617,33.681,56,32.885,56,32z M26,52H14V12h12\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H11C9.343,6,8,7.343,8,9v46c0,1.657,1.343,3,3,3h15c1.657,0,3-1.343,3-3\r\n\t\t\t\tC29,53.343,27.657,52,26,52z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M56,32c0-0.885-0.383-1.681-0.993-2.23l0,0l-10-9l0,0\r\n\t\t\t\tC44.475,20.292,43.772,20,43,20c-1.657,0-3,1.343-3,3c0,0.885,0.384,1.681,0.993,2.23l0,0L45.182,29H27c0,0,0,0,0,0\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3c0,0,0,0,0,0h18.182l-4.189,3.77l0,0C40.384,39.32,40,40.115,40,41\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.772,0,1.475-0.292,2.007-0.77l0,0l10-9l0,0C55.617,33.681,56,32.885,56,32z M26,52H14V12h12\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H11C9.343,6,8,7.343,8,9v46c0,1.657,1.343,3,3,3h15c1.657,0,3-1.343,3-3\r\n\t\t\t\tC29,53.343,27.657,52,26,52z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"LOGIN_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"LOGIN","display":"inline"},"children":[{"name":"g","attribs":{"id":"LOGIN","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M39.007,34.23C39.617,33.681,40,32.885,40,32c0-0.885-0.384-1.681-0.993-2.23\r\n\t\t\t\tl0,0l-10-9l0,0C28.475,20.292,27.772,20,27,20c-1.657,0-3,1.343-3,3c0,0.885,0.383,1.681,0.993,2.23l0,0L29.182,29H11\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h18.182l-4.189,3.77l0,0C24.384,39.32,24,40.115,24,41c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.772,0,1.475-0.292,2.007-0.77l0,0L39.007,34.23L39.007,34.23z M56,31.932V8.935c0-1.657-1.343-3-3-3H38c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,1.657,1.343,3,3,3h12v40H38c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h15c1.657,0,3-1.343,3-3V31.937c0-0.001,0-0.002,0-0.003\r\n\t\t\t\tC56,31.934,56,31.933,56,31.932z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M39.007,34.23C39.617,33.681,40,32.885,40,32c0-0.885-0.384-1.681-0.993-2.23\r\n\t\t\t\tl0,0l-10-9l0,0C28.475,20.292,27.772,20,27,20c-1.657,0-3,1.343-3,3c0,0.885,0.383,1.681,0.993,2.23l0,0L29.182,29H11\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h18.182l-4.189,3.77l0,0C24.384,39.32,24,40.115,24,41c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.772,0,1.475-0.292,2.007-0.77l0,0L39.007,34.23L39.007,34.23z M56,31.932V8.935c0-1.657-1.343-3-3-3H38c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,1.657,1.343,3,3,3h12v40H38c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h15c1.657,0,3-1.343,3-3V31.937c0-0.001,0-0.002,0-0.003\r\n\t\t\t\tC56,31.934,56,31.933,56,31.932z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"UPLOAD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"UPLOAD","display":"inline"},"children":[{"name":"g","attribs":{"id":"UPLOAD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M23,24c0.885,0,1.681-0.384,2.23-0.993l0,0L29,18.818V37c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3c0,0,0,0,0,0V18.818l3.77,4.189l0,0C39.319,23.617,40.115,24,41,24c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.772-0.292-1.475-0.77-2.007l0,0l-9-10l0,0C33.681,8.384,32.885,8,32,8c-0.885,0-1.681,0.384-2.23,0.993l0,0l-9,10l0,0\r\n\t\t\t\tC20.292,19.525,20,20.228,20,21C20,22.657,21.343,24,23,24z M55,35c-1.657,0-3,1.343-3,3v12H12V38c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v15c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V38C58,36.343,56.657,35,55,35z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M23,24c0.885,0,1.681-0.384,2.23-0.993l0,0L29,18.818V37c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3c0,0,0,0,0,0V18.818l3.77,4.189l0,0C39.319,23.617,40.115,24,41,24c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.772-0.292-1.475-0.77-2.007l0,0l-9-10l0,0C33.681,8.384,32.885,8,32,8c-0.885,0-1.681,0.384-2.23,0.993l0,0l-9,10l0,0\r\n\t\t\t\tC20.292,19.525,20,20.228,20,21C20,22.657,21.343,24,23,24z M55,35c-1.657,0-3,1.343-3,3v12H12V38c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v15c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V38C58,36.343,56.657,35,55,35z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"DOWNLOAD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"DOWNLOAD","display":"inline"},"children":[{"name":"g","attribs":{"id":"DOWNLOAD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M20.77,29.007l9,10l0,0C30.319,39.616,31.115,40,32,40\r\n\t\t\t\tc0.885,0,1.68-0.384,2.23-0.993l0,0l9-10l0,0C43.708,28.475,44,27.772,44,27c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.885,0-1.681,0.383-2.23,0.993l0,0L35,29.182V11c0-1.657-1.343-3-3-3s-3,1.343-3,3v18.182l-3.77-4.189l0,0\r\n\t\t\t\tC24.681,24.384,23.885,24,23,24c-1.657,0-3,1.343-3,3C20,27.772,20.292,28.475,20.77,29.007L20.77,29.007z M55,35\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v12H12V38c0-1.657-1.343-3-3-3s-3,1.343-3,3v15c0,1.657,1.343,3,3,3h22.997c0.001,0,0.002,0,0.003,0\r\n\t\t\t\tc0.001,0,0.002,0,0.003,0H55c1.657,0,3-1.343,3-3V38C58,36.343,56.657,35,55,35z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M20.77,29.007l9,10l0,0C30.319,39.616,31.115,40,32,40\r\n\t\t\t\tc0.885,0,1.68-0.384,2.23-0.993l0,0l9-10l0,0C43.708,28.475,44,27.772,44,27c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.885,0-1.681,0.383-2.23,0.993l0,0L35,29.182V11c0-1.657-1.343-3-3-3s-3,1.343-3,3v18.182l-3.77-4.189l0,0\r\n\t\t\t\tC24.681,24.384,23.885,24,23,24c-1.657,0-3,1.343-3,3C20,27.772,20.292,28.475,20.77,29.007L20.77,29.007z M55,35\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v12H12V38c0-1.657-1.343-3-3-3s-3,1.343-3,3v15c0,1.657,1.343,3,3,3h22.997c0.001,0,0.002,0,0.003,0\r\n\t\t\t\tc0.001,0,0.002,0,0.003,0H55c1.657,0,3-1.343,3-3V38C58,36.343,56.657,35,55,35z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CALENDAR_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CALENDAR","display":"inline"},"children":[{"name":"g","attribs":{"id":"CALENDAR","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M48,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8\r\n\t\t\t\tC45,12.657,46.343,14,48,14z M61,8h-6v3c0,3.866-3.134,7-7,7s-7-3.134-7-7V8H23v3c0,3.866-3.134,7-7,7c-3.866,0-7-3.134-7-7V8H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V11C64,9.343,62.657,8,61,8z M58,58H6V24h52V58z M16,14\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8C13,12.657,14.343,14,16,14z M26.361,39.632\r\n\t\t\t\tc-0.373,0.347-0.785,0.663-1.235,0.949c-0.451,0.286-0.875,0.568-1.274,0.845c-0.78,0.538-1.521,1.066-2.223,1.586\r\n\t\t\t\tc-0.702,0.52-1.313,1.088-1.833,1.703c-0.52,0.615-0.932,1.313-1.235,2.093c-0.304,0.78-0.455,1.699-0.455,2.756H31.47v-3.172\r\n\t\t\t\th-8.606c0.451-0.624,0.97-1.17,1.56-1.638c0.589-0.468,1.196-0.905,1.82-1.313c0.624-0.407,1.244-0.819,1.859-1.235\r\n\t\t\t\tc0.615-0.416,1.166-0.88,1.651-1.391c0.485-0.511,0.875-1.096,1.17-1.755c0.294-0.659,0.442-1.447,0.442-2.366\r\n\t\t\t\tc0-0.884-0.169-1.681-0.507-2.392c-0.338-0.71-0.793-1.308-1.365-1.794c-0.572-0.485-1.235-0.858-1.989-1.118\r\n\t\t\t\tC26.751,31.13,25.958,31,25.126,31c-1.092,0-2.058,0.187-2.899,0.559c-0.841,0.373-1.539,0.893-2.093,1.56\r\n\t\t\t\tc-0.555,0.667-0.971,1.447-1.248,2.34c-0.277,0.893-0.399,1.859-0.364,2.899h3.536c0-0.485,0.048-0.975,0.143-1.469\r\n\t\t\t\tc0.095-0.494,0.255-0.945,0.481-1.352c0.225-0.407,0.524-0.737,0.897-0.988c0.373-0.251,0.828-0.377,1.365-0.377\r\n\t\t\t\tc0.797,0,1.452,0.247,1.963,0.741c0.511,0.494,0.767,1.183,0.767,2.067c0,0.555-0.126,1.049-0.377,1.482\r\n\t\t\t\tC27.045,38.895,26.733,39.285,26.361,39.632z M41.467,45.807c-0.269,0.321-0.598,0.581-0.988,0.78\r\n\t\t\t\tc-0.39,0.199-0.828,0.299-1.313,0.299c-0.832,0-1.517-0.247-2.054-0.741c-0.537-0.494-0.85-1.157-0.936-1.989h-3.692\r\n\t\t\t\tc0.017,0.953,0.212,1.79,0.585,2.509c0.373,0.719,0.871,1.322,1.495,1.807c0.624,0.485,1.339,0.845,2.145,1.079\r\n\t\t\t\tc0.806,0.234,1.651,0.351,2.535,0.351c0.919,0.017,1.785-0.134,2.6-0.455c0.815-0.321,1.529-0.776,2.145-1.365\r\n\t\t\t\tc0.615-0.589,1.105-1.287,1.469-2.093c0.364-0.806,0.546-1.677,0.546-2.613c0-0.849-0.126-1.651-0.377-2.405\r\n\t\t\t\tc-0.252-0.754-0.616-1.408-1.092-1.963c-0.477-0.555-1.062-0.997-1.755-1.326c-0.693-0.329-1.491-0.494-2.392-0.494\r\n\t\t\t\tc-0.728,0-1.378,0.109-1.95,0.325c-0.572,0.217-1.109,0.576-1.612,1.079l-0.052-0.052l0.728-4.134h7.514v-3.042H34.85\r\n\t\t\t\tl-1.794,10.062h3.328c0.364-0.503,0.754-0.871,1.17-1.105c0.416-0.234,0.953-0.351,1.612-0.351c0.503,0,0.945,0.087,1.326,0.26\r\n\t\t\t\tc0.381,0.173,0.711,0.416,0.988,0.728c0.277,0.312,0.485,0.676,0.624,1.092c0.139,0.416,0.208,0.858,0.208,1.326\r\n\t\t\t\tc0,0.451-0.074,0.889-0.221,1.313C41.943,45.114,41.735,45.486,41.467,45.807z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M48,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8\r\n\t\t\t\tC45,12.657,46.343,14,48,14z M61,8h-6v3c0,3.866-3.134,7-7,7s-7-3.134-7-7V8H23v3c0,3.866-3.134,7-7,7c-3.866,0-7-3.134-7-7V8H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V11C64,9.343,62.657,8,61,8z M58,58H6V24h52V58z M16,14\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8C13,12.657,14.343,14,16,14z M26.361,39.632\r\n\t\t\t\tc-0.373,0.347-0.785,0.663-1.235,0.949c-0.451,0.286-0.875,0.568-1.274,0.845c-0.78,0.538-1.521,1.066-2.223,1.586\r\n\t\t\t\tc-0.702,0.52-1.313,1.088-1.833,1.703c-0.52,0.615-0.932,1.313-1.235,2.093c-0.304,0.78-0.455,1.699-0.455,2.756H31.47v-3.172\r\n\t\t\t\th-8.606c0.451-0.624,0.97-1.17,1.56-1.638c0.589-0.468,1.196-0.905,1.82-1.313c0.624-0.407,1.244-0.819,1.859-1.235\r\n\t\t\t\tc0.615-0.416,1.166-0.88,1.651-1.391c0.485-0.511,0.875-1.096,1.17-1.755c0.294-0.659,0.442-1.447,0.442-2.366\r\n\t\t\t\tc0-0.884-0.169-1.681-0.507-2.392c-0.338-0.71-0.793-1.308-1.365-1.794c-0.572-0.485-1.235-0.858-1.989-1.118\r\n\t\t\t\tC26.751,31.13,25.958,31,25.126,31c-1.092,0-2.058,0.187-2.899,0.559c-0.841,0.373-1.539,0.893-2.093,1.56\r\n\t\t\t\tc-0.555,0.667-0.971,1.447-1.248,2.34c-0.277,0.893-0.399,1.859-0.364,2.899h3.536c0-0.485,0.048-0.975,0.143-1.469\r\n\t\t\t\tc0.095-0.494,0.255-0.945,0.481-1.352c0.225-0.407,0.524-0.737,0.897-0.988c0.373-0.251,0.828-0.377,1.365-0.377\r\n\t\t\t\tc0.797,0,1.452,0.247,1.963,0.741c0.511,0.494,0.767,1.183,0.767,2.067c0,0.555-0.126,1.049-0.377,1.482\r\n\t\t\t\tC27.045,38.895,26.733,39.285,26.361,39.632z M41.467,45.807c-0.269,0.321-0.598,0.581-0.988,0.78\r\n\t\t\t\tc-0.39,0.199-0.828,0.299-1.313,0.299c-0.832,0-1.517-0.247-2.054-0.741c-0.537-0.494-0.85-1.157-0.936-1.989h-3.692\r\n\t\t\t\tc0.017,0.953,0.212,1.79,0.585,2.509c0.373,0.719,0.871,1.322,1.495,1.807c0.624,0.485,1.339,0.845,2.145,1.079\r\n\t\t\t\tc0.806,0.234,1.651,0.351,2.535,0.351c0.919,0.017,1.785-0.134,2.6-0.455c0.815-0.321,1.529-0.776,2.145-1.365\r\n\t\t\t\tc0.615-0.589,1.105-1.287,1.469-2.093c0.364-0.806,0.546-1.677,0.546-2.613c0-0.849-0.126-1.651-0.377-2.405\r\n\t\t\t\tc-0.252-0.754-0.616-1.408-1.092-1.963c-0.477-0.555-1.062-0.997-1.755-1.326c-0.693-0.329-1.491-0.494-2.392-0.494\r\n\t\t\t\tc-0.728,0-1.378,0.109-1.95,0.325c-0.572,0.217-1.109,0.576-1.612,1.079l-0.052-0.052l0.728-4.134h7.514v-3.042H34.85\r\n\t\t\t\tl-1.794,10.062h3.328c0.364-0.503,0.754-0.871,1.17-1.105c0.416-0.234,0.953-0.351,1.612-0.351c0.503,0,0.945,0.087,1.326,0.26\r\n\t\t\t\tc0.381,0.173,0.711,0.416,0.988,0.728c0.277,0.312,0.485,0.676,0.624,1.092c0.139,0.416,0.208,0.858,0.208,1.326\r\n\t\t\t\tc0,0.451-0.074,0.889-0.221,1.313C41.943,45.114,41.735,45.486,41.467,45.807z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CALENDAR__x2F__ADD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CALENDAR__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{"id":"CALENDAR__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M16,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8\r\n\t\t\t\tC13,12.657,14.343,14,16,14z M25.126,31c-0.001,0-0.002,0-0.003,0h0.007C25.128,31,25.127,31,25.126,31z M48,14\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8C45,12.657,46.343,14,48,14z M25,44h4v4c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3v-4h4c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-4v-4c0-1.657-1.343-3-3-3s-3,1.343-3,3v4h-4c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC22,42.657,23.343,44,25,44z M61,8h-6v3c0,3.866-3.134,7-7,7s-7-3.134-7-7V8H23v3c0,3.866-3.134,7-7,7c-3.866,0-7-3.134-7-7V8H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V11C64,9.343,62.657,8,61,8z M58,58H6V24h52V58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M16,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8\r\n\t\t\t\tC13,12.657,14.343,14,16,14z M25.126,31c-0.001,0-0.002,0-0.003,0h0.007C25.128,31,25.127,31,25.126,31z M48,14\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8C45,12.657,46.343,14,48,14z M25,44h4v4c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3v-4h4c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-4v-4c0-1.657-1.343-3-3-3s-3,1.343-3,3v4h-4c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC22,42.657,23.343,44,25,44z M61,8h-6v3c0,3.866-3.134,7-7,7s-7-3.134-7-7V8H23v3c0,3.866-3.134,7-7,7c-3.866,0-7-3.134-7-7V8H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V11C64,9.343,62.657,8,61,8z M58,58H6V24h52V58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CALENDAR__x2F__OK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CALENDAR__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{"id":"CALENDAR__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M48,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v8\r\n\t\t\t\tC45,12.657,46.343,14,48,14z M61,8h-6v3c0,3.866-3.134,7-7,7s-7-3.134-7-7V8H23v3c0,3.866-3.134,7-7,7c-3.866,0-7-3.134-7-7V8H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V11C64,9.343,62.657,8,61,8z M58,58H6V24h52V58z M16,14\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v8C13,12.657,14.343,14,16,14z M26.879,50.121\r\n\t\t\t\tC27.422,50.664,28.172,51,29,51c0.828,0,1.578-0.336,2.121-0.879l14-14C45.664,35.579,46,34.828,46,34c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L29,43.757l-4.879-4.879C23.578,38.336,22.828,38,22,38c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L26.879,50.121z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M48,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v8\r\n\t\t\t\tC45,12.657,46.343,14,48,14z M61,8h-6v3c0,3.866-3.134,7-7,7s-7-3.134-7-7V8H23v3c0,3.866-3.134,7-7,7c-3.866,0-7-3.134-7-7V8H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V11C64,9.343,62.657,8,61,8z M58,58H6V24h52V58z M16,14\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v8C13,12.657,14.343,14,16,14z M26.879,50.121\r\n\t\t\t\tC27.422,50.664,28.172,51,29,51c0.828,0,1.578-0.336,2.121-0.879l14-14C45.664,35.579,46,34.828,46,34c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L29,43.757l-4.879-4.879C23.578,38.336,22.828,38,22,38c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L26.879,50.121z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"NOTEPAD__x2F__REMOVE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"NOTEPAD__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{"id":"NOTEPAD__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC43,10.657,44.343,12,46,12z M31,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC28,10.657,29.343,12,31,12z M42,55c0-3.314,2.686-6,6-6h12V9c0-1.657-1.343-3-3-3h-5v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3\r\n\t\t\t\tc0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6H5C3.343,6,2,7.343,2,9v52\r\n\t\t\t\tc0,1.657,1.343,3,3,3h52c1.657,0,3-1.343,3-3H48C44.686,61,42,58.314,42,55z M13,23h36c1.657,0,3,1.343,3,3c0,1.657-1.343,3-3,3\r\n\t\t\t\tH13c-1.657,0-3-1.343-3-3C10,24.343,11.343,23,13,23z M13,36h36c1.657,0,3,1.343,3,3s-1.343,3-3,3H13c-1.657,0-3-1.343-3-3\r\n\t\t\t\tS11.343,36,13,36z M31.5,54h-19c-1.381,0-2.5-1.119-2.5-2.5c0-1.381,1.119-2.5,2.5-2.5h19c1.381,0,2.5,1.119,2.5,2.5\r\n\t\t\t\tC34,52.881,32.881,54,31.5,54z M16,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C13,10.657,14.343,12,16,12z\r\n\t\t\t\t M60,52H48c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3C63,53.343,61.657,52,60,52z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC43,10.657,44.343,12,46,12z M31,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC28,10.657,29.343,12,31,12z M42,55c0-3.314,2.686-6,6-6h12V9c0-1.657-1.343-3-3-3h-5v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3\r\n\t\t\t\tc0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6H5C3.343,6,2,7.343,2,9v52\r\n\t\t\t\tc0,1.657,1.343,3,3,3h52c1.657,0,3-1.343,3-3H48C44.686,61,42,58.314,42,55z M13,23h36c1.657,0,3,1.343,3,3c0,1.657-1.343,3-3,3\r\n\t\t\t\tH13c-1.657,0-3-1.343-3-3C10,24.343,11.343,23,13,23z M13,36h36c1.657,0,3,1.343,3,3s-1.343,3-3,3H13c-1.657,0-3-1.343-3-3\r\n\t\t\t\tS11.343,36,13,36z M31.5,54h-19c-1.381,0-2.5-1.119-2.5-2.5c0-1.381,1.119-2.5,2.5-2.5h19c1.381,0,2.5,1.119,2.5,2.5\r\n\t\t\t\tC34,52.881,32.881,54,31.5,54z M16,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C13,10.657,14.343,12,16,12z\r\n\t\t\t\t M60,52H48c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3C63,53.343,61.657,52,60,52z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"NOTEPAD__x2F__ADD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"NOTEPAD__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{"id":"NOTEPAD__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC43,10.657,44.343,12,46,12z M31,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C28,10.657,29.343,12,31,12z\r\n\t\t\t\t M60,52h-3v-3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h3v3c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3C63,53.343,61.657,52,60,52z M42,55c0-3.314,2.686-6,6-6c0-3.314,2.686-6,6-6s6,2.686,6,6\r\n\t\t\t\tV9c0-1.657-1.343-3-3-3h-5v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3\r\n\t\t\t\tc0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6V6H5C3.343,6,2,7.343,2,9v52c0,1.657,1.343,3,3,3h43v-3C44.686,61,42,58.314,42,55z\r\n\t\t\t\t M13,23h36c1.657,0,3,1.343,3,3c0,1.657-1.343,3-3,3H13c-1.657,0-3-1.343-3-3C10,24.343,11.343,23,13,23z M31.5,54h-19\r\n\t\t\t\tc-1.381,0-2.5-1.119-2.5-2.5c0-1.381,1.119-2.5,2.5-2.5h19c1.381,0,2.5,1.119,2.5,2.5C34,52.881,32.881,54,31.5,54z M39,42H13\r\n\t\t\t\tc-1.657,0-3-1.343-3-3s1.343-3,3-3h26c1.657,0,3,1.343,3,3S40.657,42,39,42z M16,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v6C13,10.657,14.343,12,16,12z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC43,10.657,44.343,12,46,12z M31,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C28,10.657,29.343,12,31,12z\r\n\t\t\t\t M60,52h-3v-3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h3v3c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3C63,53.343,61.657,52,60,52z M42,55c0-3.314,2.686-6,6-6c0-3.314,2.686-6,6-6s6,2.686,6,6\r\n\t\t\t\tV9c0-1.657-1.343-3-3-3h-5v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3\r\n\t\t\t\tc0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6V6H5C3.343,6,2,7.343,2,9v52c0,1.657,1.343,3,3,3h43v-3C44.686,61,42,58.314,42,55z\r\n\t\t\t\t M13,23h36c1.657,0,3,1.343,3,3c0,1.657-1.343,3-3,3H13c-1.657,0-3-1.343-3-3C10,24.343,11.343,23,13,23z M31.5,54h-19\r\n\t\t\t\tc-1.381,0-2.5-1.119-2.5-2.5c0-1.381,1.119-2.5,2.5-2.5h19c1.381,0,2.5,1.119,2.5,2.5C34,52.881,32.881,54,31.5,54z M39,42H13\r\n\t\t\t\tc-1.657,0-3-1.343-3-3s1.343-3,3-3h26c1.657,0,3,1.343,3,3S40.657,42,39,42z M16,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v6C13,10.657,14.343,12,16,12z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"NOTEPAD__x2F__DELETE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"NOTEPAD__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{"id":"NOTEPAD__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6\r\n\t\t\t\tC43,10.657,44.343,12,46,12z M31,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC28,10.657,29.343,12,31,12z M58.243,55l3.879-3.879C62.664,50.579,63,49.828,63,49c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L54,50.757l-3.879-3.879C49.578,46.336,48.828,46,48,46c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L49.757,55l-3.879,3.879C45.336,59.422,45,60.172,45,61c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L54,59.243l3.879,3.879C58.422,63.664,59.172,64,60,64c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.829-0.336-1.578-0.879-2.121L58.243,55z M16,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC13,10.657,14.343,12,16,12z M43.757,56.758L45.515,55l-1.757-1.757C42.672,52.157,42,50.657,42,49c0-3.314,2.686-6,6-6\r\n\t\t\t\tc1.657,0,3.157,0.672,4.243,1.757L54,46.515l1.757-1.758l0.015,0.016C56.854,43.682,58.341,43,60,43V9c0-1.657-1.343-3-3-3h-5v3\r\n\t\t\t\tc0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6\r\n\t\t\t\tH5C3.343,6,2,7.343,2,9v52c0,1.657,1.343,3,3,3h37.832C42.317,63.114,42,62.099,42,61c0-1.659,0.682-3.146,1.773-4.227\r\n\t\t\t\tL43.757,56.758z M31.5,54h-19c-1.381,0-2.5-1.119-2.5-2.5c0-1.381,1.119-2.5,2.5-2.5h19c1.381,0,2.5,1.119,2.5,2.5\r\n\t\t\t\tC34,52.881,32.881,54,31.5,54z M37,42H13c-1.657,0-3-1.343-3-3c0-1.657,1.343-3,3-3h24c1.657,0,3,1.343,3,3\r\n\t\t\t\tC40,40.657,38.657,42,37,42z M13,29c-1.657,0-3-1.343-3-3s1.343-3,3-3h36c1.657,0,3,1.343,3,3s-1.343,3-3,3H13z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6\r\n\t\t\t\tC43,10.657,44.343,12,46,12z M31,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC28,10.657,29.343,12,31,12z M58.243,55l3.879-3.879C62.664,50.579,63,49.828,63,49c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L54,50.757l-3.879-3.879C49.578,46.336,48.828,46,48,46c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L49.757,55l-3.879,3.879C45.336,59.422,45,60.172,45,61c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L54,59.243l3.879,3.879C58.422,63.664,59.172,64,60,64c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.829-0.336-1.578-0.879-2.121L58.243,55z M16,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC13,10.657,14.343,12,16,12z M43.757,56.758L45.515,55l-1.757-1.757C42.672,52.157,42,50.657,42,49c0-3.314,2.686-6,6-6\r\n\t\t\t\tc1.657,0,3.157,0.672,4.243,1.757L54,46.515l1.757-1.758l0.015,0.016C56.854,43.682,58.341,43,60,43V9c0-1.657-1.343-3-3-3h-5v3\r\n\t\t\t\tc0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6\r\n\t\t\t\tH5C3.343,6,2,7.343,2,9v52c0,1.657,1.343,3,3,3h37.832C42.317,63.114,42,62.099,42,61c0-1.659,0.682-3.146,1.773-4.227\r\n\t\t\t\tL43.757,56.758z M31.5,54h-19c-1.381,0-2.5-1.119-2.5-2.5c0-1.381,1.119-2.5,2.5-2.5h19c1.381,0,2.5,1.119,2.5,2.5\r\n\t\t\t\tC34,52.881,32.881,54,31.5,54z M37,42H13c-1.657,0-3-1.343-3-3c0-1.657,1.343-3,3-3h24c1.657,0,3,1.343,3,3\r\n\t\t\t\tC40,40.657,38.657,42,37,42z M13,29c-1.657,0-3-1.343-3-3s1.343-3,3-3h36c1.657,0,3,1.343,3,3s-1.343,3-3,3H13z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"NOTEPAD__x2F__OK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"NOTEPAD__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{"id":"NOTEPAD__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC28,10.657,29.343,12,31,12z M46,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C43,10.657,44.343,12,46,12z\r\n\t\t\t\t M16,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6C13,10.657,14.343,12,16,12z M60,50\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L52,56.758l-1.879-1.879C49.578,54.336,48.829,54,48,54c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121l4,4C50.422,63.664,51.172,64,52,64s1.578-0.336,2.121-0.879l8-8C62.664,54.578,63,53.828,63,53\r\n\t\t\t\tC63,51.343,61.657,50,60,50z M43.775,61.225C42.683,60.147,42,58.659,42,57c0-3.314,2.686-6,6-6c1.535,0,2.908,0.602,3.961,1.554\r\n\t\t\t\tl3.797-3.797C56.843,47.672,58.343,47,60,47V9c0-1.657-1.343-3-3-3h-5v3c0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6V6h-3v3\r\n\t\t\t\tc0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6H5C3.343,6,2,7.343,2,9v52c0,1.657,1.343,3,3,3\r\n\t\t\t\th41.515l-2.757-2.757L43.775,61.225z M13,23h36c1.657,0,3,1.343,3,3c0,1.657-1.343,3-3,3H13c-1.657,0-3-1.343-3-3\r\n\t\t\t\tC10,24.343,11.343,23,13,23z M13,36h36c1.657,0,3,1.343,3,3s-1.343,3-3,3H13c-1.657,0-3-1.343-3-3S11.343,36,13,36z M31.5,54h-19\r\n\t\t\t\tc-1.381,0-2.5-1.119-2.5-2.5c0-1.381,1.119-2.5,2.5-2.5h19c1.381,0,2.5,1.119,2.5,2.5C34,52.881,32.881,54,31.5,54z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC28,10.657,29.343,12,31,12z M46,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C43,10.657,44.343,12,46,12z\r\n\t\t\t\t M16,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6C13,10.657,14.343,12,16,12z M60,50\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L52,56.758l-1.879-1.879C49.578,54.336,48.829,54,48,54c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121l4,4C50.422,63.664,51.172,64,52,64s1.578-0.336,2.121-0.879l8-8C62.664,54.578,63,53.828,63,53\r\n\t\t\t\tC63,51.343,61.657,50,60,50z M43.775,61.225C42.683,60.147,42,58.659,42,57c0-3.314,2.686-6,6-6c1.535,0,2.908,0.602,3.961,1.554\r\n\t\t\t\tl3.797-3.797C56.843,47.672,58.343,47,60,47V9c0-1.657-1.343-3-3-3h-5v3c0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6V6h-3v3\r\n\t\t\t\tc0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6H5C3.343,6,2,7.343,2,9v52c0,1.657,1.343,3,3,3\r\n\t\t\t\th41.515l-2.757-2.757L43.775,61.225z M13,23h36c1.657,0,3,1.343,3,3c0,1.657-1.343,3-3,3H13c-1.657,0-3-1.343-3-3\r\n\t\t\t\tC10,24.343,11.343,23,13,23z M13,36h36c1.657,0,3,1.343,3,3s-1.343,3-3,3H13c-1.657,0-3-1.343-3-3S11.343,36,13,36z M31.5,54h-19\r\n\t\t\t\tc-1.381,0-2.5-1.119-2.5-2.5c0-1.381,1.119-2.5,2.5-2.5h19c1.381,0,2.5,1.119,2.5,2.5C34,52.881,32.881,54,31.5,54z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"NOTEPAD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"NOTEPAD","display":"inline"},"children":[{"name":"g","attribs":{"id":"NOTEPAD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC29,10.657,30.343,12,32,12z M47,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC44,10.657,45.343,12,47,12z M17,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C14,10.657,15.343,12,17,12z M58,6\r\n\t\t\t\th-5v3c0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6\r\n\t\t\t\ts-6-2.686-6-6V6H6C4.343,6,3,7.343,3,9v52c0,1.657,1.343,3,3,3h52c1.657,0,3-1.343,3-3V9C61,7.343,59.657,6,58,6z M50.5,54h-37\r\n\t\t\t\tc-1.381,0-2.5-1.119-2.5-2.5c0-1.381,1.119-2.5,2.5-2.5h37c1.381,0,2.5,1.119,2.5,2.5C53,52.881,51.881,54,50.5,54z M50,42H14\r\n\t\t\t\tc-1.657,0-3-1.343-3-3s1.343-3,3-3h36c1.657,0,3,1.343,3,3S51.657,42,50,42z M50,29H14c-1.657,0-3-1.343-3-3c0-1.657,1.343-3,3-3\r\n\t\t\t\th36c1.657,0,3,1.343,3,3C53,27.657,51.657,29,50,29z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC29,10.657,30.343,12,32,12z M47,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC44,10.657,45.343,12,47,12z M17,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C14,10.657,15.343,12,17,12z M58,6\r\n\t\t\t\th-5v3c0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6\r\n\t\t\t\ts-6-2.686-6-6V6H6C4.343,6,3,7.343,3,9v52c0,1.657,1.343,3,3,3h52c1.657,0,3-1.343,3-3V9C61,7.343,59.657,6,58,6z M50.5,54h-37\r\n\t\t\t\tc-1.381,0-2.5-1.119-2.5-2.5c0-1.381,1.119-2.5,2.5-2.5h37c1.381,0,2.5,1.119,2.5,2.5C53,52.881,51.881,54,50.5,54z M50,42H14\r\n\t\t\t\tc-1.657,0-3-1.343-3-3s1.343-3,3-3h36c1.657,0,3,1.343,3,3S51.657,42,50,42z M50,29H14c-1.657,0-3-1.343-3-3c0-1.657,1.343-3,3-3\r\n\t\t\t\th36c1.657,0,3,1.343,3,3C53,27.657,51.657,29,50,29z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MICROPHONE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MICROPHONE","display":"inline"},"children":[{"name":"g","attribs":{"id":"MICROPHONE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,40c6.627,0,12-5.373,12-12V12c0-6.627-5.373-12-12-12\r\n\t\t\t\tc-6.627,0-12,5.373-12,12v16C20,34.628,25.373,40,32,40z M54,29.023c0-0.005,0-0.01-0.001-0.015C53.999,29.005,54,29.003,54,29\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3h0c-0.004,8.835-7.165,15.996-16,16c-8.835-0.004-15.996-7.165-16-16h0c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.003,0.001,0.005,0.001,0.008C10,29.013,10,29.018,10,29.023c0,11.125,8.274,20.296,19,21.752V58H19\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h26c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H35v-7.225\r\n\t\t\t\tC45.726,49.319,54,40.148,54,29.023z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,40c6.627,0,12-5.373,12-12V12c0-6.627-5.373-12-12-12\r\n\t\t\t\tc-6.627,0-12,5.373-12,12v16C20,34.628,25.373,40,32,40z M54,29.023c0-0.005,0-0.01-0.001-0.015C53.999,29.005,54,29.003,54,29\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3h0c-0.004,8.835-7.165,15.996-16,16c-8.835-0.004-15.996-7.165-16-16h0c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.003,0.001,0.005,0.001,0.008C10,29.013,10,29.018,10,29.023c0,11.125,8.274,20.296,19,21.752V58H19\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h26c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H35v-7.225\r\n\t\t\t\tC45.726,49.319,54,40.148,54,29.023z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MICROPHONE__x2F__OFF_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MICROPHONE__x2F__OFF","display":"inline"},"children":[{"name":"g","attribs":{"id":"MICROPHONE__x2F__OFF","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M12.631,39.405l5.051-3.302C16.617,33.961,16.002,31.555,16,29h0\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3c0,0.003,0.001,0.005,0.001,0.008C10,29.013,10,29.018,10,29.023\r\n\t\t\t\tC10,32.785,10.964,36.313,12.631,39.405z M44,18.895V12c0-6.627-5.373-12-12-12c-6.627,0-12,5.373-12,12v16\r\n\t\t\t\tc0,2.047,0.515,3.973,1.419,5.659L44,18.895z M59.5,15.1c0-0.829-0.672-1.5-1.5-1.5c-0.303,0-0.585,0.091-0.821,0.246l0-0.001\r\n\t\t\t\tl-0.017,0.011c0,0,0,0,0,0L5.079,47.945l0,0.001C4.67,48.214,4.4,48.675,4.4,49.2c0,0.829,0.672,1.5,1.5,1.5\r\n\t\t\t\tc0.303,0,0.585-0.091,0.821-0.246l0,0.001l0.017-0.011c0,0,0,0,0,0l52.083-34.089l0-0.001C59.23,16.087,59.5,15.625,59.5,15.1z\r\n\t\t\t\t M43.86,29.739l-15.026,9.825C29.844,39.841,30.902,40,32,40C38.035,40,43.015,35.54,43.86,29.739z M51,26c-1.657,0-3,1.343-3,3\r\n\t\t\t\th0c-0.004,8.092-6.017,14.759-13.816,15.829c-0.24,0.034-0.481,0.062-0.723,0.086c-0.441,0.04-0.885,0.074-1.336,0.078l0,0.002\r\n\t\t\t\tc-0.04,0-0.078,0.005-0.118,0.005c-2.959,0-5.72-0.817-8.098-2.216l-5.431,3.551c2.987,2.326,6.586,3.906,10.521,4.441V58H19\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h26c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H35v-7.225\r\n\t\t\t\tc10.726-1.456,19-10.627,19-21.752c0-0.005,0-0.01-0.001-0.015C53.999,29.005,54,29.003,54,29C54,27.343,52.657,26,51,26z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M12.631,39.405l5.051-3.302C16.617,33.961,16.002,31.555,16,29h0\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3c0,0.003,0.001,0.005,0.001,0.008C10,29.013,10,29.018,10,29.023\r\n\t\t\t\tC10,32.785,10.964,36.313,12.631,39.405z M44,18.895V12c0-6.627-5.373-12-12-12c-6.627,0-12,5.373-12,12v16\r\n\t\t\t\tc0,2.047,0.515,3.973,1.419,5.659L44,18.895z M59.5,15.1c0-0.829-0.672-1.5-1.5-1.5c-0.303,0-0.585,0.091-0.821,0.246l0-0.001\r\n\t\t\t\tl-0.017,0.011c0,0,0,0,0,0L5.079,47.945l0,0.001C4.67,48.214,4.4,48.675,4.4,49.2c0,0.829,0.672,1.5,1.5,1.5\r\n\t\t\t\tc0.303,0,0.585-0.091,0.821-0.246l0,0.001l0.017-0.011c0,0,0,0,0,0l52.083-34.089l0-0.001C59.23,16.087,59.5,15.625,59.5,15.1z\r\n\t\t\t\t M43.86,29.739l-15.026,9.825C29.844,39.841,30.902,40,32,40C38.035,40,43.015,35.54,43.86,29.739z M51,26c-1.657,0-3,1.343-3,3\r\n\t\t\t\th0c-0.004,8.092-6.017,14.759-13.816,15.829c-0.24,0.034-0.481,0.062-0.723,0.086c-0.441,0.04-0.885,0.074-1.336,0.078l0,0.002\r\n\t\t\t\tc-0.04,0-0.078,0.005-0.118,0.005c-2.959,0-5.72-0.817-8.098-2.216l-5.431,3.551c2.987,2.326,6.586,3.906,10.521,4.441V58H19\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h26c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H35v-7.225\r\n\t\t\t\tc10.726-1.456,19-10.627,19-21.752c0-0.005,0-0.01-0.001-0.015C53.999,29.005,54,29.003,54,29C54,27.343,52.657,26,51,26z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BELL_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BELL","display":"inline"},"children":[{"name":"g","attribs":{"id":"BELL","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M52,45c-1.657,0-3-1.343-3-3V22c0-7.732-6.268-14-14-14c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3c-7.732,0-14,6.268-14,14v20c0,1.657-1.343,3-3,3s-3,1.343-3,3c0,1.657,1.343,3,3,3h40c1.657,0,3-1.343,3-3\r\n\t\t\t\tC55,46.343,53.657,45,52,45z M32,60c3.314,0,6-2.686,6-6H26C26,57.314,28.686,60,32,60z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M52,45c-1.657,0-3-1.343-3-3V22c0-7.732-6.268-14-14-14c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3c-7.732,0-14,6.268-14,14v20c0,1.657-1.343,3-3,3s-3,1.343-3,3c0,1.657,1.343,3,3,3h40c1.657,0,3-1.343,3-3\r\n\t\t\t\tC55,46.343,53.657,45,52,45z M32,60c3.314,0,6-2.686,6-6H26C26,57.314,28.686,60,32,60z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"EJECT_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"EJECT","display":"inline"},"children":[{"name":"g","attribs":{"id":"EJECT","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M42,42H22c-1.657,0-3,1.343-3,3s1.343,3,3,3h20c1.657,0,3-1.343,3-3\r\n\t\t\t\tS43.657,42,42,42z M22,39h20c1.657,0,3-1.343,3-3c0-0.584-0.167-1.129-0.456-1.59l0,0l-9.976-15.962\r\n\t\t\t\tc-0.003-0.005-0.006-0.01-0.01-0.016l-0.014-0.022l0,0C34.013,17.563,33.073,17,32,17c-1.073,0-2.013,0.563-2.544,1.41l0,0\r\n\t\t\t\tl-0.014,0.022c-0.003,0.005-0.007,0.01-0.01,0.016L19.456,34.41l0,0C19.168,34.871,19,35.416,19,36C19,37.657,20.343,39,22,39z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M42,42H22c-1.657,0-3,1.343-3,3s1.343,3,3,3h20c1.657,0,3-1.343,3-3\r\n\t\t\t\tS43.657,42,42,42z M22,39h20c1.657,0,3-1.343,3-3c0-0.584-0.167-1.129-0.456-1.59l0,0l-9.976-15.962\r\n\t\t\t\tc-0.003-0.005-0.006-0.01-0.01-0.016l-0.014-0.022l0,0C34.013,17.563,33.073,17,32,17c-1.073,0-2.013,0.563-2.544,1.41l0,0\r\n\t\t\t\tl-0.014,0.022c-0.003,0.005-0.007,0.01-0.01,0.016L19.456,34.41l0,0C19.168,34.871,19,35.416,19,36C19,37.657,20.343,39,22,39z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SKIP__x2F__NEXT_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SKIP__x2F__NEXT","display":"inline"},"children":[{"name":"g","attribs":{"id":"SKIP__x2F__NEXT","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M41,19c-1.657,0-3,1.343-3,3v5.837l-13.41-8.381l0,0\r\n\t\t\t\tC24.129,19.168,23.584,19,23,19c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3c0.584,0,1.129-0.167,1.59-0.456l0,0L38,36.163V42\r\n\t\t\t\tc0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V22C44,20.343,42.657,19,41,19z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M41,19c-1.657,0-3,1.343-3,3v5.837l-13.41-8.381l0,0\r\n\t\t\t\tC24.129,19.168,23.584,19,23,19c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3c0.584,0,1.129-0.167,1.59-0.456l0,0L38,36.163V42\r\n\t\t\t\tc0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V22C44,20.343,42.657,19,41,19z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SKIP__x2F__PREVIOUS_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SKIP__x2F__PREVIOUS","display":"inline"},"children":[{"name":"g","attribs":{"id":"SKIP__x2F__PREVIOUS","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M41,19c-0.584,0-1.129,0.168-1.59,0.456l0,0L26,27.837V22c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v20c0,1.657,1.343,3,3,3s3-1.343,3-3v-5.837l13.41,8.381l0,0C39.871,44.833,40.416,45,41,45c1.657,0,3-1.343,3-3V22\r\n\t\t\t\tC44,20.343,42.657,19,41,19z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M41,19c-0.584,0-1.129,0.168-1.59,0.456l0,0L26,27.837V22c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v20c0,1.657,1.343,3,3,3s3-1.343,3-3v-5.837l13.41,8.381l0,0C39.871,44.833,40.416,45,41,45c1.657,0,3-1.343,3-3V22\r\n\t\t\t\tC44,20.343,42.657,19,41,19z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"FAST_FORWARD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"FAST_FORWARD","display":"inline"},"children":[{"name":"g","attribs":{"id":"FAST_FORWARD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M51,32c0-1.073-0.563-2.013-1.41-2.544l0,0l-0.022-0.014\r\n\t\t\t\tc-0.005-0.003-0.01-0.007-0.016-0.01L33.59,19.456l0,0C33.129,19.168,32.584,19,32,19c-1.657,0-3,1.343-3,3v4.587l-11.41-7.131\r\n\t\t\t\tl0,0C17.129,19.168,16.584,19,16,19c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3c0.584,0,1.129-0.167,1.59-0.456l0,0L29,37.413\r\n\t\t\t\tV42c0,1.657,1.343,3,3,3c0.584,0,1.129-0.167,1.59-0.456l0,0l15.962-9.976c0.005-0.003,0.01-0.007,0.016-0.01l0.022-0.014l0,0\r\n\t\t\t\tC50.437,34.013,51,33.073,51,32z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M51,32c0-1.073-0.563-2.013-1.41-2.544l0,0l-0.022-0.014\r\n\t\t\t\tc-0.005-0.003-0.01-0.007-0.016-0.01L33.59,19.456l0,0C33.129,19.168,32.584,19,32,19c-1.657,0-3,1.343-3,3v4.587l-11.41-7.131\r\n\t\t\t\tl0,0C17.129,19.168,16.584,19,16,19c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3c0.584,0,1.129-0.167,1.59-0.456l0,0L29,37.413\r\n\t\t\t\tV42c0,1.657,1.343,3,3,3c0.584,0,1.129-0.167,1.59-0.456l0,0l15.962-9.976c0.005-0.003,0.01-0.007,0.016-0.01l0.022-0.014l0,0\r\n\t\t\t\tC50.437,34.013,51,33.073,51,32z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"REWIND_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"REWIND","display":"inline"},"children":[{"name":"g","attribs":{"id":"REWIND","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M48,19c-0.584,0-1.129,0.168-1.59,0.456l0,0L35,26.587V22c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.584,0-1.129,0.168-1.59,0.456l0,0l-15.962,9.976c-0.005,0.003-0.011,0.007-0.016,0.01l-0.023,0.014l0,0\r\n\t\t\t\tC13.564,29.987,13,30.927,13,32c0,1.073,0.564,2.013,1.41,2.544l0,0l0.023,0.014c0.005,0.003,0.01,0.007,0.016,0.01l15.962,9.976\r\n\t\t\t\tl0,0C30.871,44.833,31.416,45,32,45c1.657,0,3-1.343,3-3v-4.587l11.41,7.131l0,0C46.871,44.833,47.416,45,48,45\r\n\t\t\t\tc1.657,0,3-1.343,3-3V22C51,20.343,49.657,19,48,19z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M48,19c-0.584,0-1.129,0.168-1.59,0.456l0,0L35,26.587V22c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.584,0-1.129,0.168-1.59,0.456l0,0l-15.962,9.976c-0.005,0.003-0.011,0.007-0.016,0.01l-0.023,0.014l0,0\r\n\t\t\t\tC13.564,29.987,13,30.927,13,32c0,1.073,0.564,2.013,1.41,2.544l0,0l0.023,0.014c0.005,0.003,0.01,0.007,0.016,0.01l15.962,9.976\r\n\t\t\t\tl0,0C30.871,44.833,31.416,45,32,45c1.657,0,3-1.343,3-3v-4.587l11.41,7.131l0,0C46.871,44.833,47.416,45,48,45\r\n\t\t\t\tc1.657,0,3-1.343,3-3V22C51,20.343,49.657,19,48,19z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"PAUSE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PAUSE","display":"inline"},"children":[{"name":"g","attribs":{"id":"PAUSE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26,19c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V22\r\n\t\t\t\tC29,20.343,27.657,19,26,19z M38,19c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3s3-1.343,3-3V22C41,20.343,39.657,19,38,19z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26,19c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V22\r\n\t\t\t\tC29,20.343,27.657,19,26,19z M38,19c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3s3-1.343,3-3V22C41,20.343,39.657,19,38,19z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"STOP_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"STOP","display":"inline"},"children":[{"name":"g","attribs":{"id":"STOP","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M43,18H21c-1.657,0-3,1.343-3,3v22c0,1.657,1.343,3,3,3h22c1.657,0,3-1.343,3-3\r\n\t\t\t\tV21C46,19.343,44.657,18,43,18z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M43,18H21c-1.657,0-3,1.343-3,3v22c0,1.657,1.343,3,3,3h22c1.657,0,3-1.343,3-3\r\n\t\t\t\tV21C46,19.343,44.657,18,43,18z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"RECORD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"RECORD","display":"inline"},"children":[{"name":"g","attribs":{"id":"RECORD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","cx":"32","cy":"32","r":"14"},"children":[{"name":"circle","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","cx":"32","cy":"32","r":"14"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"PLAY_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PLAY","display":"inline"},"children":[{"name":"g","attribs":{"id":"PLAY","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46,32c0-1.099-0.592-2.06-1.474-2.583l0,0L22.561,16.438\r\n\t\t\t\tc-0.008-0.005-0.016-0.009-0.024-0.014l-0.011-0.007l0,0C22.079,16.153,21.557,16,21,16c-1.657,0-3,1.343-3,3v26\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.557,0,1.079-0.153,1.526-0.417l0,0l0.011-0.007c0.008-0.005,0.016-0.009,0.024-0.014l21.965-12.979l0,0\r\n\t\t\t\tC45.408,34.06,46,33.1,46,32z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46,32c0-1.099-0.592-2.06-1.474-2.583l0,0L22.561,16.438\r\n\t\t\t\tc-0.008-0.005-0.016-0.009-0.024-0.014l-0.011-0.007l0,0C22.079,16.153,21.557,16,21,16c-1.657,0-3,1.343-3,3v26\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.557,0,1.079-0.153,1.526-0.417l0,0l0.011-0.007c0.008-0.005,0.016-0.009,0.024-0.014l21.965-12.979l0,0\r\n\t\t\t\tC45.408,34.06,46,33.1,46,32z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CHART_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CHART","display":"inline"},"children":[{"name":"g","attribs":{"id":"CHART","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z M58,58H6V6h52V58z M46,55h6c1.657,0,3-1.343,3-3V31c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v21\r\n\t\t\t\tC43,53.657,44.343,55,46,55z M29,55h6c1.657,0,3-1.343,3-3V19c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v33\r\n\t\t\t\tC26,53.657,27.343,55,29,55z M12,55h6c1.657,0,3-1.343,3-3v-6c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC9,53.657,10.343,55,12,55z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z M58,58H6V6h52V58z M46,55h6c1.657,0,3-1.343,3-3V31c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v21\r\n\t\t\t\tC43,53.657,44.343,55,46,55z M29,55h6c1.657,0,3-1.343,3-3V19c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v33\r\n\t\t\t\tC26,53.657,27.343,55,29,55z M12,55h6c1.657,0,3-1.343,3-3v-6c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC9,53.657,10.343,55,12,55z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"LINE_GRAPH_3_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"LINE_GRAPH","display":"inline"},"children":[{"name":"g","attribs":{"id":"LINE_GRAPH","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M12,38.035c0.628,0,1.212-0.194,1.694-0.524l6.271-3.919l13.313,8.875\r\n\t\t\t\tc0.488,0.343,1.081,0.545,1.723,0.545c0.656,0,1.263-0.211,1.757-0.569l0.001,0.001l17-12l-0.001-0.001\r\n\t\t\t\tC54.51,29.897,55,29.012,55,28.011c0-1.657-1.343-3-3-3c-0.662,0-1.274,0.215-1.77,0.578L34.953,36.373l-13.261-8.841\r\n\t\t\t\tl-0.012,0.017c-0.479-0.325-1.058-0.514-1.68-0.514c-0.575,0-1.113,0.162-1.569,0.443l-0.002-0.002l-8,5l0.001,0.002\r\n\t\t\t\tC9.573,33.006,9,33.953,9,35.035C9,36.692,10.343,38.035,12,38.035z M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M12,38.035c0.628,0,1.212-0.194,1.694-0.524l6.271-3.919l13.313,8.875\r\n\t\t\t\tc0.488,0.343,1.081,0.545,1.723,0.545c0.656,0,1.263-0.211,1.757-0.569l0.001,0.001l17-12l-0.001-0.001\r\n\t\t\t\tC54.51,29.897,55,29.012,55,28.011c0-1.657-1.343-3-3-3c-0.662,0-1.274,0.215-1.77,0.578L34.953,36.373l-13.261-8.841\r\n\t\t\t\tl-0.012,0.017c-0.479-0.325-1.058-0.514-1.68-0.514c-0.575,0-1.113,0.162-1.569,0.443l-0.002-0.002l-8,5l0.001,0.002\r\n\t\t\t\tC9.573,33.006,9,33.953,9,35.035C9,36.692,10.343,38.035,12,38.035z M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BAR_GRAPH_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BAR_GRAPH","display":"inline"},"children":[{"name":"g","attribs":{"id":"BAR_GRAPH","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M48,50h6c1.657,0,3-1.343,3-3V26c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3\r\n\t\t\t\tv21C45,48.657,46.343,50,48,50z M31,50h6c1.657,0,3-1.343,3-3V14c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v33\r\n\t\t\t\tC28,48.657,29.343,50,31,50z M61,53H6v-7h0V8c0-1.657-1.343-3-3-3C1.343,5,0,6.343,0,8v48c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3C64,54.344,62.657,53,61,53z M14,50h6c1.657,0,3-1.343,3-3v-6c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3\r\n\t\t\t\tv6C11,48.657,12.343,50,14,50z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M48,50h6c1.657,0,3-1.343,3-3V26c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3\r\n\t\t\t\tv21C45,48.657,46.343,50,48,50z M31,50h6c1.657,0,3-1.343,3-3V14c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v33\r\n\t\t\t\tC28,48.657,29.343,50,31,50z M61,53H6v-7h0V8c0-1.657-1.343-3-3-3C1.343,5,0,6.343,0,8v48c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3C64,54.344,62.657,53,61,53z M14,50h6c1.657,0,3-1.343,3-3v-6c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3\r\n\t\t\t\tv6C11,48.657,12.343,50,14,50z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"LINE_GRAPH_2_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"LINE_GRAPH_1_","display":"inline"},"children":[{"name":"g","attribs":{"id":"LINE_GRAPH_1_","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,53H6V40.716l13.9-8.177l13.42,8.947c0.002,0.001,0.003,0.002,0.005,0.003\r\n\t\t\t\tl0.011,0.007l0.001-0.001C33.813,41.813,34.384,42,35,42c0.635,0,1.221-0.2,1.706-0.536l0.002,0.002l25.969-17.979\r\n\t\t\t\tc0,0,0.001,0,0.001-0.001l0.03-0.021l-0.002-0.003C63.487,22.923,64,22.022,64,21c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.635,0-1.221,0.2-1.706,0.536l-0.002-0.003l-24.324,16.84l-13.289-8.859c-0.001-0.001-0.003-0.002-0.005-0.003l-0.011-0.007\r\n\t\t\t\tl-0.001,0.001C21.187,26.187,20.616,26,20,26c-0.555,0-1.069,0.161-1.515,0.424l-0.006-0.01L6,33.755V8c0-1.657-1.343-3-3-3\r\n\t\t\t\tS0,6.343,0,8v48c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,54.343,62.657,53,61,53z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,53H6V40.716l13.9-8.177l13.42,8.947c0.002,0.001,0.003,0.002,0.005,0.003\r\n\t\t\t\tl0.011,0.007l0.001-0.001C33.813,41.813,34.384,42,35,42c0.635,0,1.221-0.2,1.706-0.536l0.002,0.002l25.969-17.979\r\n\t\t\t\tc0,0,0.001,0,0.001-0.001l0.03-0.021l-0.002-0.003C63.487,22.923,64,22.022,64,21c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.635,0-1.221,0.2-1.706,0.536l-0.002-0.003l-24.324,16.84l-13.289-8.859c-0.001-0.001-0.003-0.002-0.005-0.003l-0.011-0.007\r\n\t\t\t\tl-0.001,0.001C21.187,26.187,20.616,26,20,26c-0.555,0-1.069,0.161-1.515,0.424l-0.006-0.01L6,33.755V8c0-1.657-1.343-3-3-3\r\n\t\t\t\tS0,6.343,0,8v48c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,54.343,62.657,53,61,53z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CHART__x2F__7_x2F_8_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CHART__x2F__7_x2F_8","display":"inline"},"children":[{"name":"g","attribs":{"id":"CHART__x2F__7_x2F_8","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,32L13.615,13.615C18.32,8.91,24.82,6,32,6V32z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,32L13.615,13.615C18.32,8.91,24.82,6,32,6V32z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CHART__x2F__3_x2F_4_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CHART__x2F__3_x2F_4","display":"inline"},"children":[{"name":"g","attribs":{"id":"CHART__x2F__3_x2F_4","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,32H6C6,17.641,17.641,6,32,6V32z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,32H6C6,17.641,17.641,6,32,6V32z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CHART__x2F__5_x2F_8_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CHART__x2F__5_x2F_8","display":"inline"},"children":[{"name":"g","attribs":{"id":"CHART__x2F__5_x2F_8","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32s32-14.327,32-32\r\n\t\t\t\tC64,14.327,49.673,0,32,0z M32,32L13.615,50.385C8.91,45.68,6,39.18,6,32C6,17.641,17.641,6,32,6V32z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32s32-14.327,32-32\r\n\t\t\t\tC64,14.327,49.673,0,32,0z M32,32L13.615,50.385C8.91,45.68,6,39.18,6,32C6,17.641,17.641,6,32,6V32z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CHART__x2F__1_x2F_2_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CHART__x2F__1_x2F_2","display":"inline"},"children":[{"name":"g","attribs":{"id":"CHART__x2F__1_x2F_2","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6V58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6V58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CHART__x2F__3_x2F_8_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CHART__x2F__3_x2F_8","display":"inline"},"children":[{"name":"g","attribs":{"id":"CHART__x2F__3_x2F_8","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6v26l18.385,18.385\r\n\t\t\t\tC45.68,55.09,39.18,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6v26l18.385,18.385\r\n\t\t\t\tC45.68,55.09,39.18,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CHART__x2F__1_x2F_4_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CHART__x2F__1_x2F_4","display":"inline"},"children":[{"name":"g","attribs":{"id":"CHART__x2F__1_x2F_4","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6v26h26\r\n\t\t\t\tC58,46.359,46.359,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6v26h26\r\n\t\t\t\tC58,46.359,46.359,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CART__x2F__1_x2F_8_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CART__x2F__1_x2F_8","display":"inline"},"children":[{"name":"g","attribs":{"id":"CART__x2F__1_x2F_8","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6v26l18.385-18.385\r\n\t\t\t\tC55.09,18.32,58,24.82,58,32C58,46.359,46.359,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6v26l18.385-18.385\r\n\t\t\t\tC55.09,18.32,58,24.82,58,32C58,46.359,46.359,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"PIE_CHART_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PIE_CHART","display":"inline"},"children":[{"name":"g","attribs":{"id":"PIE_CHART","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M35,0v29h29C64,12.984,51.016,0,35,0z M29,6C12.984,6,0,18.984,0,35\r\n\t\t\t\tc0,16.017,12.984,29,29,29c16.016,0,29-12.984,29-29H29V6z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M35,0v29h29C64,12.984,51.016,0,35,0z M29,6C12.984,6,0,18.984,0,35\r\n\t\t\t\tc0,16.017,12.984,29,29,29c16.016,0,29-12.984,29-29H29V6z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"POWER_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"POWER","display":"inline"},"children":[{"name":"g","attribs":{"id":"POWER","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31,33c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v3.186\r\n\t\t\t\tc0,0,0,0,0,0V30C28,31.657,29.343,33,31,33z M42,8.162v0.009C41.687,8.061,41.351,8,41,8c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,1.306,0.835,2.417,2,2.829v0.003C48.229,17.335,54,25.492,54,35c0,12.703-10.297,23-23,23S8,47.703,8,35\r\n\t\t\t\tc0-9.508,5.771-17.666,14-21.168v-0.003c1.165-0.412,2-1.523,2-2.829c0-1.657-1.343-3-3-3c-0.351,0-0.687,0.061-1,0.171V8.162\r\n\t\t\t\tC9.439,12.495,2,22.878,2,35c0,16.016,12.984,29,29,29c16.016,0,29-12.984,29-29C60,22.878,52.561,12.495,42,8.162z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31,33c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v3.186\r\n\t\t\t\tc0,0,0,0,0,0V30C28,31.657,29.343,33,31,33z M42,8.162v0.009C41.687,8.061,41.351,8,41,8c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,1.306,0.835,2.417,2,2.829v0.003C48.229,17.335,54,25.492,54,35c0,12.703-10.297,23-23,23S8,47.703,8,35\r\n\t\t\t\tc0-9.508,5.771-17.666,14-21.168v-0.003c1.165-0.412,2-1.523,2-2.829c0-1.657-1.343-3-3-3c-0.351,0-0.687,0.061-1,0.171V8.162\r\n\t\t\t\tC9.439,12.495,2,22.878,2,35c0,16.016,12.984,29,29,29c16.016,0,29-12.984,29-29C60,22.878,52.561,12.495,42,8.162z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"ALARM_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ALARM","display":"inline"},"children":[{"name":"g","attribs":{"id":"ALARM","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M44,31h-9V18c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v16c0,1.657,1.343,3,3,3\r\n\t\t\t\th12c1.657,0,3-1.343,3-3C47,32.343,45.657,31,44,31z M19.412,4.575C17.37,2.967,14.8,2,12,2C5.373,2,0,7.373,0,14\r\n\t\t\t\tc0,2.8,0.967,5.37,2.575,7.412C5.809,13.862,11.862,7.809,19.412,4.575z M52.251,2c-2.742,0-5.258,0.947-7.257,2.521\r\n\t\t\t\tc7.392,3.167,13.318,9.093,16.485,16.485C63.053,19.006,64,16.49,64,13.749C64,7.26,58.74,2,52.251,2z M32,5\r\n\t\t\t\tC15.984,5,3,17.984,3,34c0,7.692,3.015,14.664,7.902,19.855l-4.023,4.024C6.336,58.422,6,59.172,6,60c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l4.327-4.327C20.144,61.067,25.842,63,32,63c6.17,0,11.878-1.941,16.579-5.226l4.357,4.357\r\n\t\t\t\tC53.473,62.668,54.215,63,55.034,63C56.672,63,58,61.672,58,60.034c0-0.819-0.332-1.561-0.869-2.098l-4.056-4.056\r\n\t\t\t\tC57.976,48.687,61,41.704,61,34C61,17.984,48.016,5,32,5z M32,57C19.297,57,9,46.703,9,34s10.297-23,23-23\r\n\t\t\t\tc12.702,0,23,10.297,23,23S44.703,57,32,57z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M44,31h-9V18c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v16c0,1.657,1.343,3,3,3\r\n\t\t\t\th12c1.657,0,3-1.343,3-3C47,32.343,45.657,31,44,31z M19.412,4.575C17.37,2.967,14.8,2,12,2C5.373,2,0,7.373,0,14\r\n\t\t\t\tc0,2.8,0.967,5.37,2.575,7.412C5.809,13.862,11.862,7.809,19.412,4.575z M52.251,2c-2.742,0-5.258,0.947-7.257,2.521\r\n\t\t\t\tc7.392,3.167,13.318,9.093,16.485,16.485C63.053,19.006,64,16.49,64,13.749C64,7.26,58.74,2,52.251,2z M32,5\r\n\t\t\t\tC15.984,5,3,17.984,3,34c0,7.692,3.015,14.664,7.902,19.855l-4.023,4.024C6.336,58.422,6,59.172,6,60c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l4.327-4.327C20.144,61.067,25.842,63,32,63c6.17,0,11.878-1.941,16.579-5.226l4.357,4.357\r\n\t\t\t\tC53.473,62.668,54.215,63,55.034,63C56.672,63,58,61.672,58,60.034c0-0.819-0.332-1.561-0.869-2.098l-4.056-4.056\r\n\t\t\t\tC57.976,48.687,61,41.704,61,34C61,17.984,48.016,5,32,5z M32,57C19.297,57,9,46.703,9,34s10.297-23,23-23\r\n\t\t\t\tc12.702,0,23,10.297,23,23S44.703,57,32,57z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"TIME_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"TIME","display":"inline"},"children":[{"name":"g","attribs":{"id":"TIME","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M45,29H35V14c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v18c0,1.657,1.343,3,3,3\r\n\t\t\t\th13c1.657,0,3-1.343,3-3C48,30.343,46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32s32-14.327,32-32\r\n\t\t\t\tC64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tC58,46.36,46.359,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M45,29H35V14c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v18c0,1.657,1.343,3,3,3\r\n\t\t\t\th13c1.657,0,3-1.343,3-3C48,30.343,46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32s32-14.327,32-32\r\n\t\t\t\tC64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tC58,46.36,46.359,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"USER_3_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"USER","display":"inline"},"children":[{"name":"g","attribs":{"id":"USER","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M51.253,49.43c-3.766-1.826-2.382-0.399-7.309-2.427\r\n\t\t\t\tc-5.042-2.073-6.236-2.749-6.236-2.749L37.664,39.5c0,0,1.888-1.422,2.477-5.917c1.178,0.338,1.578-1.372,1.641-2.464\r\n\t\t\t\tc0.07-1.055,0.697-4.346-0.745-4.052c0.295-2.197,0.527-4.183,0.421-5.235c-0.36-3.691-2.931-7.544-9.42-7.826\r\n\t\t\t\tc-5.517,0.282-9.098,4.138-9.46,7.829c-0.104,1.052,0.108,3.036,0.403,5.236c-1.441-0.297-0.821,2.999-0.758,4.054\r\n\t\t\t\tc0.07,1.092,0.46,2.808,1.641,2.469c0.587,4.495,2.475,5.929,2.475,5.929L26.293,44.3c0,0-1.195,0.723-6.236,2.795\r\n\t\t\t\tc-4.927,2.028-3.544,0.512-7.31,2.334C8.568,44.816,6,38.715,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.641,26,26\r\n\t\t\t\tC58,38.716,55.432,44.816,51.253,49.43z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M51.253,49.43c-3.766-1.826-2.382-0.399-7.309-2.427\r\n\t\t\t\tc-5.042-2.073-6.236-2.749-6.236-2.749L37.664,39.5c0,0,1.888-1.422,2.477-5.917c1.178,0.338,1.578-1.372,1.641-2.464\r\n\t\t\t\tc0.07-1.055,0.697-4.346-0.745-4.052c0.295-2.197,0.527-4.183,0.421-5.235c-0.36-3.691-2.931-7.544-9.42-7.826\r\n\t\t\t\tc-5.517,0.282-9.098,4.138-9.46,7.829c-0.104,1.052,0.108,3.036,0.403,5.236c-1.441-0.297-0.821,2.999-0.758,4.054\r\n\t\t\t\tc0.07,1.092,0.46,2.808,1.641,2.469c0.587,4.495,2.475,5.929,2.475,5.929L26.293,44.3c0,0-1.195,0.723-6.236,2.795\r\n\t\t\t\tc-4.927,2.028-3.544,0.512-7.31,2.334C8.568,44.816,6,38.715,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.641,26,26\r\n\t\t\t\tC58,38.716,55.432,44.816,51.253,49.43z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"USERS_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"USERS","display":"inline"},"children":[{"name":"g","attribs":{"id":"USERS","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M40.837,41.984c-3.685-1.828-2.266-0.429-6.79-2.299\r\n\t\t\t\tc-4.524-1.867-5.595-2.477-5.595-2.477l-0.04-4.282c0,0,1.694-1.282,2.223-5.332c1.057,0.305,1.416-1.236,1.473-2.22\r\n\t\t\t\tc0.063-0.951,0.626-3.916-0.669-3.651c0.265-1.979,0.472-3.769,0.378-4.716c-0.323-3.325-2.63-6.798-8.453-7.051\r\n\t\t\t\tc-4.95,0.254-8.164,3.728-8.488,7.054c-0.093,0.947,0.097,2.735,0.361,4.718c-1.293-0.268-0.737,2.702-0.68,3.652\r\n\t\t\t\tc0.062,0.984,0.412,2.53,1.473,2.225c0.526,4.05,2.221,5.342,2.221,5.342l-0.042,4.304c0,0-1.072,0.652-5.596,2.519\r\n\t\t\t\tc-4.524,1.87-3.105,0.387-6.79,2.214c-5.824,2.889-5.824,10.832-5.824,10.832h0.002C0.001,52.817,0,52.818,0,52.82\r\n\t\t\t\tC0,54.024,0.979,55,2.187,55h42.285c1.208,0,2.187-0.976,2.187-2.18c0-0.002,0-0.003,0-0.005h0.001\r\n\t\t\t\tC46.66,52.815,46.66,44.872,40.837,41.984z M63.901,53.012c0,0,0-7.226-5.298-9.854c-3.353-1.663-2.062-0.391-6.178-2.092\r\n\t\t\t\tc-4.116-1.699-5.09-2.254-5.09-2.254l-0.036-3.896c0,0,1.541-1.166,2.022-4.85c0.962,0.277,1.288-1.124,1.34-2.02\r\n\t\t\t\tc0.057-0.865,0.569-3.562-0.608-3.322c0.241-1.801,0.43-3.429,0.344-4.291c-0.294-3.025-2.393-6.184-7.69-6.415\r\n\t\t\t\tc-4.504,0.231-7.427,3.392-7.722,6.417c-0.085,0.862,0.088,2.489,0.329,4.293c-1.177-0.244-0.67,2.458-0.618,3.323\r\n\t\t\t\tc0.057,0.896,0.375,2.302,1.34,2.024c0.479,3.685,2.02,4.86,2.02,4.86l-0.039,3.902c1.401,0.331,1.588,0.064,4.411,1.464\r\n\t\t\t\tc6.603,3.275,6.603,12.282,6.603,12.282h-0.002c0,0.002,0.001,0.004,0.001,0.006c0,1.181-0.832,2.165-1.943,2.41H61.91\r\n\t\t\t\tc1.099,0,1.99-0.888,1.99-1.983c0-0.002,0-0.003,0-0.005H63.901z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M40.837,41.984c-3.685-1.828-2.266-0.429-6.79-2.299\r\n\t\t\t\tc-4.524-1.867-5.595-2.477-5.595-2.477l-0.04-4.282c0,0,1.694-1.282,2.223-5.332c1.057,0.305,1.416-1.236,1.473-2.22\r\n\t\t\t\tc0.063-0.951,0.626-3.916-0.669-3.651c0.265-1.979,0.472-3.769,0.378-4.716c-0.323-3.325-2.63-6.798-8.453-7.051\r\n\t\t\t\tc-4.95,0.254-8.164,3.728-8.488,7.054c-0.093,0.947,0.097,2.735,0.361,4.718c-1.293-0.268-0.737,2.702-0.68,3.652\r\n\t\t\t\tc0.062,0.984,0.412,2.53,1.473,2.225c0.526,4.05,2.221,5.342,2.221,5.342l-0.042,4.304c0,0-1.072,0.652-5.596,2.519\r\n\t\t\t\tc-4.524,1.87-3.105,0.387-6.79,2.214c-5.824,2.889-5.824,10.832-5.824,10.832h0.002C0.001,52.817,0,52.818,0,52.82\r\n\t\t\t\tC0,54.024,0.979,55,2.187,55h42.285c1.208,0,2.187-0.976,2.187-2.18c0-0.002,0-0.003,0-0.005h0.001\r\n\t\t\t\tC46.66,52.815,46.66,44.872,40.837,41.984z M63.901,53.012c0,0,0-7.226-5.298-9.854c-3.353-1.663-2.062-0.391-6.178-2.092\r\n\t\t\t\tc-4.116-1.699-5.09-2.254-5.09-2.254l-0.036-3.896c0,0,1.541-1.166,2.022-4.85c0.962,0.277,1.288-1.124,1.34-2.02\r\n\t\t\t\tc0.057-0.865,0.569-3.562-0.608-3.322c0.241-1.801,0.43-3.429,0.344-4.291c-0.294-3.025-2.393-6.184-7.69-6.415\r\n\t\t\t\tc-4.504,0.231-7.427,3.392-7.722,6.417c-0.085,0.862,0.088,2.489,0.329,4.293c-1.177-0.244-0.67,2.458-0.618,3.323\r\n\t\t\t\tc0.057,0.896,0.375,2.302,1.34,2.024c0.479,3.685,2.02,4.86,2.02,4.86l-0.039,3.902c1.401,0.331,1.588,0.064,4.411,1.464\r\n\t\t\t\tc6.603,3.275,6.603,12.282,6.603,12.282h-0.002c0,0.002,0.001,0.004,0.001,0.006c0,1.181-0.832,2.165-1.943,2.41H61.91\r\n\t\t\t\tc1.099,0,1.99-0.888,1.99-1.983c0-0.002,0-0.003,0-0.005H63.901z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"FOLLOWING_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"FOLLOWING","display":"inline"},"children":[{"name":"g","attribs":{"id":"FOLLOWING","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M64.001,59.993c0,0-0.007-0.552-0.092-1.417L59.485,63H61c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.003-0.001-0.005-0.001-0.007H64.001z M48.101,59H40c-3.314,0-6-2.686-6-6c0-3.314,2.686-6,6-6h8.101\r\n\t\t\t\tC48.046,46.673,48,46.343,48,46c0-1.185,0.355-2.282,0.947-3.212c-0.609-0.213-1.332-0.486-2.247-0.865\r\n\t\t\t\tc-6.205-2.57-7.675-3.409-7.675-3.409l-0.054-5.893c0,0,2.324-1.764,3.049-7.337c1.45,0.42,1.942-1.701,2.02-3.056\r\n\t\t\t\tc0.086-1.309,0.858-5.389-0.917-5.025c0.363-2.724,0.648-5.187,0.519-6.491c-0.443-4.576-3.608-9.355-11.594-9.704\r\n\t\t\t\tc-6.79,0.349-11.198,5.131-11.643,9.708c-0.128,1.304,0.133,3.764,0.496,6.493c-1.774-0.369-1.01,3.719-0.932,5.027\r\n\t\t\t\tc0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.352,3.046,7.352l-0.058,5.924c0,0-1.47,0.897-7.675,3.466\r\n\t\t\t\tc-6.205,2.574-4.259,0.533-9.314,3.047c-7.988,3.976-7.988,14.907-7.988,14.907h0.002C0.001,59.995,0,59.998,0,60\r\n\t\t\t\tc0,1.657,1.343,3,3,3h45.832C48.317,62.115,48,61.099,48,60C48,59.657,48.046,59.327,48.101,59z M64,53\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121l-7-7C55.578,43.336,54.828,43,54,43c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121\r\n\t\t\t\tL53.757,50H40c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h13.757l-1.879,1.879C51.336,58.422,51,59.172,51,60c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l7-7C63.664,54.578,64,53.829,64,53z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M64.001,59.993c0,0-0.007-0.552-0.092-1.417L59.485,63H61c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.003-0.001-0.005-0.001-0.007H64.001z M48.101,59H40c-3.314,0-6-2.686-6-6c0-3.314,2.686-6,6-6h8.101\r\n\t\t\t\tC48.046,46.673,48,46.343,48,46c0-1.185,0.355-2.282,0.947-3.212c-0.609-0.213-1.332-0.486-2.247-0.865\r\n\t\t\t\tc-6.205-2.57-7.675-3.409-7.675-3.409l-0.054-5.893c0,0,2.324-1.764,3.049-7.337c1.45,0.42,1.942-1.701,2.02-3.056\r\n\t\t\t\tc0.086-1.309,0.858-5.389-0.917-5.025c0.363-2.724,0.648-5.187,0.519-6.491c-0.443-4.576-3.608-9.355-11.594-9.704\r\n\t\t\t\tc-6.79,0.349-11.198,5.131-11.643,9.708c-0.128,1.304,0.133,3.764,0.496,6.493c-1.774-0.369-1.01,3.719-0.932,5.027\r\n\t\t\t\tc0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.352,3.046,7.352l-0.058,5.924c0,0-1.47,0.897-7.675,3.466\r\n\t\t\t\tc-6.205,2.574-4.259,0.533-9.314,3.047c-7.988,3.976-7.988,14.907-7.988,14.907h0.002C0.001,59.995,0,59.998,0,60\r\n\t\t\t\tc0,1.657,1.343,3,3,3h45.832C48.317,62.115,48,61.099,48,60C48,59.657,48.046,59.327,48.101,59z M64,53\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121l-7-7C55.578,43.336,54.828,43,54,43c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121\r\n\t\t\t\tL53.757,50H40c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h13.757l-1.879,1.879C51.336,58.422,51,59.172,51,60c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l7-7C63.664,54.578,64,53.829,64,53z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"FOLLOWERS_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"FOLLOWERS","display":"inline"},"children":[{"name":"g","attribs":{"id":"FOLLOWERS","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M34,53c0-1.657,0.672-3.157,1.757-4.242l7-7l0.017,0.017\r\n\t\t\t\tc0.379-0.375,0.805-0.702,1.272-0.968c-3.979-1.701-5.021-2.294-5.021-2.294l-0.054-5.893c0,0,2.324-1.764,3.049-7.337\r\n\t\t\t\tc1.45,0.42,1.942-1.701,2.02-3.056c0.086-1.309,0.858-5.389-0.917-5.025c0.363-2.724,0.648-5.187,0.519-6.491\r\n\t\t\t\tc-0.444-4.576-3.608-9.355-11.594-9.704c-6.79,0.349-11.198,5.131-11.643,9.708c-0.128,1.304,0.133,3.764,0.496,6.493\r\n\t\t\t\tc-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.352,3.046,7.352l-0.058,5.924\r\n\t\t\t\tc0,0-1.47,0.897-7.675,3.466c-6.205,2.574-4.259,0.533-9.314,3.047c-7.988,3.976-7.988,14.907-7.988,14.907h0.002\r\n\t\t\t\tC0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h38.515l-5.757-5.758C34.672,56.157,34,54.657,34,53z M52.899,47h5.827\r\n\t\t\t\tc-0.788-0.724-1.662-1.391-2.712-1.913c-1.855-0.923-2.765-1.246-3.483-1.415C52.833,44.387,53,45.174,53,46\r\n\t\t\t\tC53,46.343,52.954,46.673,52.899,47z M47.243,56H61c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H47.243l1.879-1.879\r\n\t\t\t\tC49.664,47.579,50,46.828,50,46c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879l-7,7C37.336,51.422,37,52.172,37,53\r\n\t\t\t\tc0,0.829,0.336,1.578,0.879,2.121l7,7C45.422,62.664,46.172,63,47,63c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121\r\n\t\t\t\tL47.243,56z M64.001,59.993c0,0,0-0.679-0.124-1.759C63.02,58.707,62.049,59,61,59h-8.103C52.953,59.326,53,59.657,53,60\r\n\t\t\t\tc0,1.099-0.317,2.114-0.832,3H61c1.657,0,3-1.343,3-3c0-0.003-0.001-0.005-0.001-0.007H64.001z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M34,53c0-1.657,0.672-3.157,1.757-4.242l7-7l0.017,0.017\r\n\t\t\t\tc0.379-0.375,0.805-0.702,1.272-0.968c-3.979-1.701-5.021-2.294-5.021-2.294l-0.054-5.893c0,0,2.324-1.764,3.049-7.337\r\n\t\t\t\tc1.45,0.42,1.942-1.701,2.02-3.056c0.086-1.309,0.858-5.389-0.917-5.025c0.363-2.724,0.648-5.187,0.519-6.491\r\n\t\t\t\tc-0.444-4.576-3.608-9.355-11.594-9.704c-6.79,0.349-11.198,5.131-11.643,9.708c-0.128,1.304,0.133,3.764,0.496,6.493\r\n\t\t\t\tc-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.352,3.046,7.352l-0.058,5.924\r\n\t\t\t\tc0,0-1.47,0.897-7.675,3.466c-6.205,2.574-4.259,0.533-9.314,3.047c-7.988,3.976-7.988,14.907-7.988,14.907h0.002\r\n\t\t\t\tC0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h38.515l-5.757-5.758C34.672,56.157,34,54.657,34,53z M52.899,47h5.827\r\n\t\t\t\tc-0.788-0.724-1.662-1.391-2.712-1.913c-1.855-0.923-2.765-1.246-3.483-1.415C52.833,44.387,53,45.174,53,46\r\n\t\t\t\tC53,46.343,52.954,46.673,52.899,47z M47.243,56H61c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H47.243l1.879-1.879\r\n\t\t\t\tC49.664,47.579,50,46.828,50,46c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879l-7,7C37.336,51.422,37,52.172,37,53\r\n\t\t\t\tc0,0.829,0.336,1.578,0.879,2.121l7,7C45.422,62.664,46.172,63,47,63c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121\r\n\t\t\t\tL47.243,56z M64.001,59.993c0,0,0-0.679-0.124-1.759C63.02,58.707,62.049,59,61,59h-8.103C52.953,59.326,53,59.657,53,60\r\n\t\t\t\tc0,1.099-0.317,2.114-0.832,3H61c1.657,0,3-1.343,3-3c0-0.003-0.001-0.005-0.001-0.007H64.001z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"USER__x2F__DELETE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"USER__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{"id":"USER__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46.515,54l-1.757-1.757l0.015-0.016C43.682,51.147,43,49.659,43,48\r\n\t\t\t\tc0-2.776,1.894-5.088,4.454-5.774c-0.243-0.096-0.481-0.191-0.754-0.304c-6.205-2.57-7.675-3.409-7.675-3.409l-0.055-5.893\r\n\t\t\t\tc0,0,2.324-1.764,3.049-7.337c1.45,0.42,1.942-1.701,2.02-3.056c0.086-1.309,0.858-5.389-0.917-5.025\r\n\t\t\t\tc0.363-2.724,0.648-5.187,0.519-6.491c-0.444-4.576-3.608-9.355-11.594-9.704c-6.79,0.349-11.198,5.131-11.643,9.707\r\n\t\t\t\tc-0.128,1.304,0.133,3.765,0.496,6.494c-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062\r\n\t\t\t\tc0.722,5.574,3.046,7.351,3.046,7.351l-0.058,5.924c0,0-1.47,0.897-7.675,3.466c-6.205,2.574-4.259,0.533-9.314,3.047\r\n\t\t\t\tc-7.988,3.976-7.988,14.907-7.988,14.907h0.002C0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h40.832\r\n\t\t\t\tC43.317,62.115,43,61.099,43,60c0-1.657,0.672-3.157,1.757-4.243L46.515,54z M59.243,54l3.879-3.878\r\n\t\t\t\tC63.664,49.578,64,48.828,64,48c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L55,49.758l-3.879-3.879\r\n\t\t\t\tC50.578,45.336,49.828,45,49,45c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L50.757,54l-3.879,3.879\r\n\t\t\t\tC46.336,58.422,46,59.172,46,60c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L55,58.243l3.879,3.879\r\n\t\t\t\tC59.422,62.664,60.172,63,61,63c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L59.243,54z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46.515,54l-1.757-1.757l0.015-0.016C43.682,51.147,43,49.659,43,48\r\n\t\t\t\tc0-2.776,1.894-5.088,4.454-5.774c-0.243-0.096-0.481-0.191-0.754-0.304c-6.205-2.57-7.675-3.409-7.675-3.409l-0.055-5.893\r\n\t\t\t\tc0,0,2.324-1.764,3.049-7.337c1.45,0.42,1.942-1.701,2.02-3.056c0.086-1.309,0.858-5.389-0.917-5.025\r\n\t\t\t\tc0.363-2.724,0.648-5.187,0.519-6.491c-0.444-4.576-3.608-9.355-11.594-9.704c-6.79,0.349-11.198,5.131-11.643,9.707\r\n\t\t\t\tc-0.128,1.304,0.133,3.765,0.496,6.494c-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062\r\n\t\t\t\tc0.722,5.574,3.046,7.351,3.046,7.351l-0.058,5.924c0,0-1.47,0.897-7.675,3.466c-6.205,2.574-4.259,0.533-9.314,3.047\r\n\t\t\t\tc-7.988,3.976-7.988,14.907-7.988,14.907h0.002C0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h40.832\r\n\t\t\t\tC43.317,62.115,43,61.099,43,60c0-1.657,0.672-3.157,1.757-4.243L46.515,54z M59.243,54l3.879-3.878\r\n\t\t\t\tC63.664,49.578,64,48.828,64,48c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L55,49.758l-3.879-3.879\r\n\t\t\t\tC50.578,45.336,49.828,45,49,45c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L50.757,54l-3.879,3.879\r\n\t\t\t\tC46.336,58.422,46,59.172,46,60c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L55,58.243l3.879,3.879\r\n\t\t\t\tC59.422,62.664,60.172,63,61,63c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L59.243,54z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"USER__x2F__OK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"USER__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{"id":"USER__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M44.757,58.243C43.672,57.157,43,55.657,43,54c0-3.314,2.686-6,6-6\r\n\t\t\t\tc1.533,0,2.916,0.592,3.977,1.538l3.781-3.781c0.046-0.046,0.103-0.08,0.15-0.124c-0.298-0.183-0.57-0.386-0.894-0.547\r\n\t\t\t\tc-5.055-2.515-3.108-0.591-9.314-3.164c-6.205-2.57-7.675-3.409-7.675-3.409l-0.055-5.893c0,0,2.324-1.764,3.049-7.337\r\n\t\t\t\tc1.45,0.42,1.941-1.701,2.02-3.056c0.086-1.309,0.858-5.389-0.917-5.025c0.363-2.724,0.648-5.187,0.519-6.491\r\n\t\t\t\tc-0.443-4.576-3.607-9.355-11.594-9.704c-6.79,0.349-11.198,5.131-11.643,9.707c-0.128,1.304,0.133,3.765,0.496,6.494\r\n\t\t\t\tc-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.351,3.046,7.351l-0.058,5.924\r\n\t\t\t\tc0,0-1.47,0.897-7.675,3.466c-6.205,2.574-4.259,0.533-9.314,3.047c-7.988,3.976-7.988,14.907-7.988,14.907h0.002\r\n\t\t\t\tC0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h46.691c-0.335-0.222-0.65-0.474-0.933-0.757L44.757,58.243z M64.001,59.993\r\n\t\t\t\tc0,0-0.008-1.709-0.498-4.011l-6.261,6.261c-0.284,0.283-0.598,0.535-0.933,0.757H61c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.003-0.001-0.005-0.001-0.007H64.001z M64,50c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L53,53.757l-1.879-1.879\r\n\t\t\t\tC50.578,51.336,49.828,51,49,51c-1.657,0-3,1.343-3,3c0,0.829,0.336,1.578,0.879,2.121l4,4C51.422,60.664,52.172,61,53,61\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l8-8C63.664,51.579,64,50.828,64,50z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M44.757,58.243C43.672,57.157,43,55.657,43,54c0-3.314,2.686-6,6-6\r\n\t\t\t\tc1.533,0,2.916,0.592,3.977,1.538l3.781-3.781c0.046-0.046,0.103-0.08,0.15-0.124c-0.298-0.183-0.57-0.386-0.894-0.547\r\n\t\t\t\tc-5.055-2.515-3.108-0.591-9.314-3.164c-6.205-2.57-7.675-3.409-7.675-3.409l-0.055-5.893c0,0,2.324-1.764,3.049-7.337\r\n\t\t\t\tc1.45,0.42,1.941-1.701,2.02-3.056c0.086-1.309,0.858-5.389-0.917-5.025c0.363-2.724,0.648-5.187,0.519-6.491\r\n\t\t\t\tc-0.443-4.576-3.607-9.355-11.594-9.704c-6.79,0.349-11.198,5.131-11.643,9.707c-0.128,1.304,0.133,3.765,0.496,6.494\r\n\t\t\t\tc-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.351,3.046,7.351l-0.058,5.924\r\n\t\t\t\tc0,0-1.47,0.897-7.675,3.466c-6.205,2.574-4.259,0.533-9.314,3.047c-7.988,3.976-7.988,14.907-7.988,14.907h0.002\r\n\t\t\t\tC0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h46.691c-0.335-0.222-0.65-0.474-0.933-0.757L44.757,58.243z M64.001,59.993\r\n\t\t\t\tc0,0-0.008-1.709-0.498-4.011l-6.261,6.261c-0.284,0.283-0.598,0.535-0.933,0.757H61c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.003-0.001-0.005-0.001-0.007H64.001z M64,50c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L53,53.757l-1.879-1.879\r\n\t\t\t\tC50.578,51.336,49.828,51,49,51c-1.657,0-3,1.343-3,3c0,0.829,0.336,1.578,0.879,2.121l4,4C51.422,60.664,52.172,61,53,61\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l8-8C63.664,51.579,64,50.828,64,50z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"USER__x2F__REMOVE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"USER__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{"id":"USER__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M45,54c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H48\r\n\t\t\t\tC46.343,51,45,52.343,45,54z M64.001,59.993c0,0-0.005-0.571-0.096-1.472C62.854,59.43,61.5,60,60,60H48c-3.314,0-6-2.686-6-6\r\n\t\t\t\tc0-3.314,2.686-6,6-6h11.763c-0.998-1.141-2.225-2.155-3.749-2.913c-5.055-2.515-3.108-0.591-9.314-3.164\r\n\t\t\t\tc-6.205-2.57-7.675-3.409-7.675-3.409l-0.054-5.893c0,0,2.324-1.764,3.049-7.337c1.45,0.42,1.942-1.701,2.02-3.056\r\n\t\t\t\tc0.086-1.309,0.858-5.389-0.917-5.025c0.363-2.724,0.648-5.187,0.519-6.491c-0.443-4.576-3.608-9.355-11.594-9.704\r\n\t\t\t\tc-6.79,0.349-11.198,5.131-11.643,9.707c-0.128,1.304,0.133,3.765,0.496,6.494c-1.774-0.369-1.01,3.719-0.932,5.027\r\n\t\t\t\tc0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.351,3.046,7.351l-0.058,5.924c0,0-1.47,0.897-7.675,3.466\r\n\t\t\t\tc-6.205,2.574-4.259,0.533-9.314,3.047c-7.988,3.976-7.988,14.907-7.988,14.907h0.002C0.001,59.995,0,59.998,0,60\r\n\t\t\t\tc0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3c0-0.003-0.001-0.005-0.001-0.007H64.001z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M45,54c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H48\r\n\t\t\t\tC46.343,51,45,52.343,45,54z M64.001,59.993c0,0-0.005-0.571-0.096-1.472C62.854,59.43,61.5,60,60,60H48c-3.314,0-6-2.686-6-6\r\n\t\t\t\tc0-3.314,2.686-6,6-6h11.763c-0.998-1.141-2.225-2.155-3.749-2.913c-5.055-2.515-3.108-0.591-9.314-3.164\r\n\t\t\t\tc-6.205-2.57-7.675-3.409-7.675-3.409l-0.054-5.893c0,0,2.324-1.764,3.049-7.337c1.45,0.42,1.942-1.701,2.02-3.056\r\n\t\t\t\tc0.086-1.309,0.858-5.389-0.917-5.025c0.363-2.724,0.648-5.187,0.519-6.491c-0.443-4.576-3.608-9.355-11.594-9.704\r\n\t\t\t\tc-6.79,0.349-11.198,5.131-11.643,9.707c-0.128,1.304,0.133,3.765,0.496,6.494c-1.774-0.369-1.01,3.719-0.932,5.027\r\n\t\t\t\tc0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.351,3.046,7.351l-0.058,5.924c0,0-1.47,0.897-7.675,3.466\r\n\t\t\t\tc-6.205,2.574-4.259,0.533-9.314,3.047c-7.988,3.976-7.988,14.907-7.988,14.907h0.002C0.001,59.995,0,59.998,0,60\r\n\t\t\t\tc0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3c0-0.003-0.001-0.005-0.001-0.007H64.001z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"USER__x2F__ADD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"USER__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{"id":"USER__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M64.001,59.993c0,0-0.005-0.567-0.098-1.47C62.852,59.431,61.499,60,60,60\r\n\t\t\t\tc0,1.098-0.317,2.114-0.832,3H61c1.657,0,3-1.343,3-3c0-0.003-0.001-0.005-0.001-0.007H64.001z M42,54c0-3.314,2.686-6,6-6\r\n\t\t\t\tc0-1.952,0.946-3.668,2.389-4.764c-0.797-0.208-1.898-0.571-3.689-1.314c-6.205-2.57-7.675-3.409-7.675-3.409l-0.054-5.893\r\n\t\t\t\tc0,0,2.324-1.764,3.049-7.337c1.45,0.42,1.942-1.701,2.02-3.056c0.086-1.309,0.858-5.389-0.917-5.025\r\n\t\t\t\tc0.363-2.724,0.648-5.187,0.519-6.491c-0.444-4.576-3.608-9.355-11.594-9.704c-6.79,0.349-11.198,5.131-11.643,9.707\r\n\t\t\t\tc-0.128,1.304,0.133,3.765,0.496,6.494c-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062\r\n\t\t\t\tc0.722,5.574,3.046,7.351,3.046,7.351l-0.058,5.924c0,0-1.47,0.897-7.675,3.466c-6.205,2.574-4.259,0.533-9.314,3.047\r\n\t\t\t\tc-7.988,3.976-7.988,14.907-7.988,14.907h0.002C0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h45.832\r\n\t\t\t\tC48.317,62.115,48,61.099,48,60C44.686,60,42,57.314,42,54z M63,54c0-1.657-1.343-3-3-3h-3v-3c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h3v3c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-3h3\r\n\t\t\t\tC61.657,57,63,55.657,63,54z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M64.001,59.993c0,0-0.005-0.567-0.098-1.47C62.852,59.431,61.499,60,60,60\r\n\t\t\t\tc0,1.098-0.317,2.114-0.832,3H61c1.657,0,3-1.343,3-3c0-0.003-0.001-0.005-0.001-0.007H64.001z M42,54c0-3.314,2.686-6,6-6\r\n\t\t\t\tc0-1.952,0.946-3.668,2.389-4.764c-0.797-0.208-1.898-0.571-3.689-1.314c-6.205-2.57-7.675-3.409-7.675-3.409l-0.054-5.893\r\n\t\t\t\tc0,0,2.324-1.764,3.049-7.337c1.45,0.42,1.942-1.701,2.02-3.056c0.086-1.309,0.858-5.389-0.917-5.025\r\n\t\t\t\tc0.363-2.724,0.648-5.187,0.519-6.491c-0.444-4.576-3.608-9.355-11.594-9.704c-6.79,0.349-11.198,5.131-11.643,9.707\r\n\t\t\t\tc-0.128,1.304,0.133,3.765,0.496,6.494c-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062\r\n\t\t\t\tc0.722,5.574,3.046,7.351,3.046,7.351l-0.058,5.924c0,0-1.47,0.897-7.675,3.466c-6.205,2.574-4.259,0.533-9.314,3.047\r\n\t\t\t\tc-7.988,3.976-7.988,14.907-7.988,14.907h0.002C0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h45.832\r\n\t\t\t\tC48.317,62.115,48,61.099,48,60C44.686,60,42,57.314,42,54z M63,54c0-1.657-1.343-3-3-3h-3v-3c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h3v3c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-3h3\r\n\t\t\t\tC61.657,57,63,55.657,63,54z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"USER_2_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"USER_1_","display":"inline"},"children":[{"name":"g","attribs":{"id":"USER_1_","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M64.001,59.993c0,0,0-10.932-7.987-14.906\r\n\t\t\t\tc-5.055-2.515-3.108-0.591-9.314-3.164c-6.205-2.57-7.675-3.409-7.675-3.409l-0.054-5.893c0,0,2.324-1.764,3.049-7.337\r\n\t\t\t\tc1.45,0.42,1.942-1.701,2.02-3.056c0.086-1.309,0.858-5.389-0.917-5.025c0.363-2.724,0.648-5.187,0.519-6.491\r\n\t\t\t\tc-0.444-4.576-3.608-9.355-11.594-9.704c-6.79,0.349-11.198,5.131-11.643,9.707c-0.128,1.304,0.133,3.765,0.496,6.494\r\n\t\t\t\tc-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.351,3.046,7.351l-0.058,5.924\r\n\t\t\t\tc0,0-1.47,0.897-7.675,3.466c-6.205,2.574-4.259,0.533-9.314,3.047c-7.988,3.976-7.988,14.907-7.988,14.907h0.002\r\n\t\t\t\tC0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3c0-0.003-0.001-0.005-0.001-0.007H64.001z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M64.001,59.993c0,0,0-10.932-7.987-14.906\r\n\t\t\t\tc-5.055-2.515-3.108-0.591-9.314-3.164c-6.205-2.57-7.675-3.409-7.675-3.409l-0.054-5.893c0,0,2.324-1.764,3.049-7.337\r\n\t\t\t\tc1.45,0.42,1.942-1.701,2.02-3.056c0.086-1.309,0.858-5.389-0.917-5.025c0.363-2.724,0.648-5.187,0.519-6.491\r\n\t\t\t\tc-0.444-4.576-3.608-9.355-11.594-9.704c-6.79,0.349-11.198,5.131-11.643,9.707c-0.128,1.304,0.133,3.765,0.496,6.494\r\n\t\t\t\tc-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.351,3.046,7.351l-0.058,5.924\r\n\t\t\t\tc0,0-1.47,0.897-7.675,3.466c-6.205,2.574-4.259,0.533-9.314,3.047c-7.988,3.976-7.988,14.907-7.988,14.907h0.002\r\n\t\t\t\tC0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3c0-0.003-0.001-0.005-0.001-0.007H64.001z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"HEART_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"HEART","display":"inline"},"children":[{"name":"g","attribs":{"id":"HEART","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M58.728,9.272C55.328,5.873,50.808,4,46,4c-4.808,0-8.662,1.727-12.061,5.126\r\n\t\t\t\tc-0.002,0.002-0.004,0.003-0.006,0.005c0,0-0.001,0.001-0.001,0.001L32,11.565l-1.932-2.286\r\n\t\t\t\tc-0.002-0.002-0.004-0.004-0.006-0.006c0,0-0.001,0-0.001-0.001C26.661,5.873,22.808,4,18,4C13.192,4,8.672,5.873,5.272,9.272\r\n\t\t\t\tC1.872,12.672,0,17.192,0,22c0,4.806,1.87,9.323,5.266,12.723L29.16,58.817C29.911,59.574,30.933,60,32,60\r\n\t\t\t\tc1.066,0,2.089-0.426,2.84-1.183l23.892-24.093C62.129,31.325,64,26.806,64,22C64,17.192,62.128,12.672,58.728,9.272z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M58.728,9.272C55.328,5.873,50.808,4,46,4c-4.808,0-8.662,1.727-12.061,5.126\r\n\t\t\t\tc-0.002,0.002-0.004,0.003-0.006,0.005c0,0-0.001,0.001-0.001,0.001L32,11.565l-1.932-2.286\r\n\t\t\t\tc-0.002-0.002-0.004-0.004-0.006-0.006c0,0-0.001,0-0.001-0.001C26.661,5.873,22.808,4,18,4C13.192,4,8.672,5.873,5.272,9.272\r\n\t\t\t\tC1.872,12.672,0,17.192,0,22c0,4.806,1.87,9.323,5.266,12.723L29.16,58.817C29.911,59.574,30.933,60,32,60\r\n\t\t\t\tc1.066,0,2.089-0.426,2.84-1.183l23.892-24.093C62.129,31.325,64,26.806,64,22C64,17.192,62.128,12.672,58.728,9.272z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MAP__x2F__DELETE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MAP__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{"id":"MAP__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M34.055,46.909L23,52.939V19.79l16-8.727v25.338\r\n\t\t\t\tc1.693-1.606,3.732-2.847,6-3.593V12.017l10,7.5v13.291c2.268,0.746,4.307,1.987,6,3.593V18c0-0.948-0.448-1.782-1.134-2.332\r\n\t\t\t\tl0.001-0.001l-0.025-0.019c-0.074-0.058-0.145-0.117-0.224-0.168L43.867,3.667l-0.001,0.001C43.352,3.256,42.709,3,42,3\r\n\t\t\t\tc-0.495,0-0.956,0.131-1.367,0.344L40.63,3.339L20.251,14.455L5.867,3.667L5.866,3.668C5.352,3.256,4.709,3,4,3\r\n\t\t\t\tC2.343,3,1,4.343,1,6v40c0,1.056,0.548,1.98,1.372,2.514l15.815,11.861C18.692,60.762,19.315,61,20,61\r\n\t\t\t\tc0.529,0,1.018-0.148,1.449-0.388l0.003,0.006l13.457-7.34C34.331,51.623,34,49.852,34,48C34,47.632,34.031,47.271,34.055,46.909\r\n\t\t\t\tz M17,51.986l-10-7.5V12.017l10,7.5V51.986z M50,35c-7.18,0-13,5.82-13,13s5.82,13,13,13c7.18,0,13-5.82,13-13S57.18,35,50,35z\r\n\t\t\t\t M56.121,49.879C56.664,50.422,57,51.172,57,52c0,1.657-1.343,3-3,3c-0.828,0-1.578-0.336-2.121-0.879L50,52.243l-1.879,1.879\r\n\t\t\t\tC47.578,54.664,46.828,55,46,55c-1.657,0-3-1.343-3-3c0-0.829,0.336-1.578,0.879-2.121L45.757,48l-1.879-1.879\r\n\t\t\t\tC43.336,45.578,43,44.829,43,44c0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879L50,43.757l1.879-1.879\r\n\t\t\t\tC52.422,41.336,53.172,41,54,41c1.657,0,3,1.343,3,3c0,0.828-0.336,1.578-0.879,2.121L54.243,48L56.121,49.879z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M34.055,46.909L23,52.939V19.79l16-8.727v25.338\r\n\t\t\t\tc1.693-1.606,3.732-2.847,6-3.593V12.017l10,7.5v13.291c2.268,0.746,4.307,1.987,6,3.593V18c0-0.948-0.448-1.782-1.134-2.332\r\n\t\t\t\tl0.001-0.001l-0.025-0.019c-0.074-0.058-0.145-0.117-0.224-0.168L43.867,3.667l-0.001,0.001C43.352,3.256,42.709,3,42,3\r\n\t\t\t\tc-0.495,0-0.956,0.131-1.367,0.344L40.63,3.339L20.251,14.455L5.867,3.667L5.866,3.668C5.352,3.256,4.709,3,4,3\r\n\t\t\t\tC2.343,3,1,4.343,1,6v40c0,1.056,0.548,1.98,1.372,2.514l15.815,11.861C18.692,60.762,19.315,61,20,61\r\n\t\t\t\tc0.529,0,1.018-0.148,1.449-0.388l0.003,0.006l13.457-7.34C34.331,51.623,34,49.852,34,48C34,47.632,34.031,47.271,34.055,46.909\r\n\t\t\t\tz M17,51.986l-10-7.5V12.017l10,7.5V51.986z M50,35c-7.18,0-13,5.82-13,13s5.82,13,13,13c7.18,0,13-5.82,13-13S57.18,35,50,35z\r\n\t\t\t\t M56.121,49.879C56.664,50.422,57,51.172,57,52c0,1.657-1.343,3-3,3c-0.828,0-1.578-0.336-2.121-0.879L50,52.243l-1.879,1.879\r\n\t\t\t\tC47.578,54.664,46.828,55,46,55c-1.657,0-3-1.343-3-3c0-0.829,0.336-1.578,0.879-2.121L45.757,48l-1.879-1.879\r\n\t\t\t\tC43.336,45.578,43,44.829,43,44c0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879L50,43.757l1.879-1.879\r\n\t\t\t\tC52.422,41.336,53.172,41,54,41c1.657,0,3,1.343,3,3c0,0.828-0.336,1.578-0.879,2.121L54.243,48L56.121,49.879z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MAP__x2F__OK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MAP__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{"id":"MAP__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M50,35c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13c7.18,0,13-5.82,13-13\r\n\t\t\t\tC63,40.82,57.18,35,50,35z M58.121,47.121l-8,8C49.578,55.664,48.828,56,48,56c-0.828,0-1.578-0.336-2.121-0.879l-4-4\r\n\t\t\t\tC41.336,50.578,41,49.828,41,49c0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879L48,48.757l5.879-5.879\r\n\t\t\t\tC54.422,42.336,55.172,42,56,42c1.657,0,3,1.343,3,3C59,45.829,58.664,46.578,58.121,47.121z M34.055,46.909L23,52.939V19.79\r\n\t\t\t\tl16-8.727v25.338c1.693-1.606,3.732-2.847,6-3.593V12.017l10,7.5v13.291c2.268,0.746,4.307,1.987,6,3.593V18\r\n\t\t\t\tc0-0.948-0.448-1.782-1.134-2.332l0.001-0.001l-0.025-0.019c-0.074-0.058-0.145-0.117-0.224-0.168L43.867,3.667l-0.001,0.001\r\n\t\t\t\tC43.352,3.256,42.709,3,42,3c-0.495,0-0.955,0.131-1.367,0.344L40.63,3.339L20.251,14.455L5.867,3.667L5.866,3.668\r\n\t\t\t\tC5.352,3.256,4.709,3,4,3C2.343,3,1,4.343,1,6v40c0,1.056,0.548,1.98,1.372,2.514l15.815,11.861C18.692,60.762,19.315,61,20,61\r\n\t\t\t\tc0.528,0,1.018-0.148,1.449-0.388l0.004,0.006l13.457-7.34C34.331,51.623,34,49.852,34,48C34,47.632,34.031,47.271,34.055,46.909\r\n\t\t\t\tz M17,51.986l-10-7.5V12.017l10,7.5V51.986z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M50,35c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13c7.18,0,13-5.82,13-13\r\n\t\t\t\tC63,40.82,57.18,35,50,35z M58.121,47.121l-8,8C49.578,55.664,48.828,56,48,56c-0.828,0-1.578-0.336-2.121-0.879l-4-4\r\n\t\t\t\tC41.336,50.578,41,49.828,41,49c0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879L48,48.757l5.879-5.879\r\n\t\t\t\tC54.422,42.336,55.172,42,56,42c1.657,0,3,1.343,3,3C59,45.829,58.664,46.578,58.121,47.121z M34.055,46.909L23,52.939V19.79\r\n\t\t\t\tl16-8.727v25.338c1.693-1.606,3.732-2.847,6-3.593V12.017l10,7.5v13.291c2.268,0.746,4.307,1.987,6,3.593V18\r\n\t\t\t\tc0-0.948-0.448-1.782-1.134-2.332l0.001-0.001l-0.025-0.019c-0.074-0.058-0.145-0.117-0.224-0.168L43.867,3.667l-0.001,0.001\r\n\t\t\t\tC43.352,3.256,42.709,3,42,3c-0.495,0-0.955,0.131-1.367,0.344L40.63,3.339L20.251,14.455L5.867,3.667L5.866,3.668\r\n\t\t\t\tC5.352,3.256,4.709,3,4,3C2.343,3,1,4.343,1,6v40c0,1.056,0.548,1.98,1.372,2.514l15.815,11.861C18.692,60.762,19.315,61,20,61\r\n\t\t\t\tc0.528,0,1.018-0.148,1.449-0.388l0.004,0.006l13.457-7.34C34.331,51.623,34,49.852,34,48C34,47.632,34.031,47.271,34.055,46.909\r\n\t\t\t\tz M17,51.986l-10-7.5V12.017l10,7.5V51.986z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MAP__x2F__REMOVE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MAP__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{"id":"MAP__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M50,35c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13c7.18,0,13-5.82,13-13\r\n\t\t\t\tC63,40.82,57.18,35,50,35z M56,51H44c-1.657,0-3-1.343-3-3c0-1.657,1.343-3,3-3h12c1.657,0,3,1.343,3,3\r\n\t\t\t\tC59,49.657,57.657,51,56,51z M34.055,46.909L23,52.939V19.79l16-8.727v25.338c1.693-1.606,3.732-2.847,6-3.593V12.017l10,7.5\r\n\t\t\t\tv13.291c2.268,0.746,4.307,1.987,6,3.593V18c0-0.948-0.448-1.782-1.134-2.332l0.001-0.001l-0.025-0.019\r\n\t\t\t\tc-0.074-0.058-0.145-0.117-0.224-0.168L43.867,3.667l-0.001,0.001C43.352,3.256,42.709,3,42,3c-0.495,0-0.956,0.131-1.367,0.344\r\n\t\t\t\tL40.63,3.339L20.251,14.455L5.867,3.667L5.866,3.668C5.352,3.256,4.709,3,4,3C2.343,3,1,4.343,1,6v40\r\n\t\t\t\tc0,1.056,0.548,1.98,1.372,2.514l15.815,11.861C18.692,60.762,19.315,61,20,61c0.528,0,1.018-0.148,1.449-0.388l0.003,0.006\r\n\t\t\t\tl13.457-7.34C34.331,51.623,34,49.852,34,48C34,47.632,34.031,47.271,34.055,46.909z M17,51.986l-10-7.5V12.017l10,7.5V51.986z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M50,35c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13c7.18,0,13-5.82,13-13\r\n\t\t\t\tC63,40.82,57.18,35,50,35z M56,51H44c-1.657,0-3-1.343-3-3c0-1.657,1.343-3,3-3h12c1.657,0,3,1.343,3,3\r\n\t\t\t\tC59,49.657,57.657,51,56,51z M34.055,46.909L23,52.939V19.79l16-8.727v25.338c1.693-1.606,3.732-2.847,6-3.593V12.017l10,7.5\r\n\t\t\t\tv13.291c2.268,0.746,4.307,1.987,6,3.593V18c0-0.948-0.448-1.782-1.134-2.332l0.001-0.001l-0.025-0.019\r\n\t\t\t\tc-0.074-0.058-0.145-0.117-0.224-0.168L43.867,3.667l-0.001,0.001C43.352,3.256,42.709,3,42,3c-0.495,0-0.956,0.131-1.367,0.344\r\n\t\t\t\tL40.63,3.339L20.251,14.455L5.867,3.667L5.866,3.668C5.352,3.256,4.709,3,4,3C2.343,3,1,4.343,1,6v40\r\n\t\t\t\tc0,1.056,0.548,1.98,1.372,2.514l15.815,11.861C18.692,60.762,19.315,61,20,61c0.528,0,1.018-0.148,1.449-0.388l0.003,0.006\r\n\t\t\t\tl13.457-7.34C34.331,51.623,34,49.852,34,48C34,47.632,34.031,47.271,34.055,46.909z M17,51.986l-10-7.5V12.017l10,7.5V51.986z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MAP__x2F__ADD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MAP__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{"id":"MAP__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M50,35c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13c7.18,0,13-5.82,13-13\r\n\t\t\t\tC63,40.82,57.18,35,50,35z M56,51h-3v3c0,1.657-1.343,3-3,3s-3-1.343-3-3v-3h-3c-1.657,0-3-1.343-3-3c0-1.657,1.343-3,3-3h3v-3\r\n\t\t\t\tc0-1.657,1.343-3,3-3s3,1.343,3,3v3h3c1.657,0,3,1.343,3,3C59,49.657,57.657,51,56,51z M34.055,46.909L23,52.939V19.79l16-8.727\r\n\t\t\t\tv25.338c1.693-1.606,3.732-2.847,6-3.593V12.017l10,7.5v13.291c2.268,0.746,4.307,1.987,6,3.593V18\r\n\t\t\t\tc0-0.948-0.448-1.782-1.134-2.332l0.001-0.001l-0.025-0.019c-0.073-0.058-0.145-0.117-0.224-0.168L43.867,3.667l-0.001,0.001\r\n\t\t\t\tC43.352,3.256,42.709,3,42,3c-0.495,0-0.956,0.131-1.367,0.344L40.63,3.339L20.251,14.455L5.867,3.667L5.866,3.668\r\n\t\t\t\tC5.352,3.256,4.709,3,4,3C2.343,3,1,4.343,1,6v40c0,1.056,0.548,1.98,1.372,2.514l15.815,11.861C18.692,60.762,19.315,61,20,61\r\n\t\t\t\tc0.528,0,1.018-0.148,1.449-0.388l0.003,0.006l13.457-7.34C34.331,51.623,34,49.852,34,48C34,47.632,34.031,47.271,34.055,46.909\r\n\t\t\t\tz M17,51.986l-10-7.5V12.017l10,7.5V51.986z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M50,35c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13c7.18,0,13-5.82,13-13\r\n\t\t\t\tC63,40.82,57.18,35,50,35z M56,51h-3v3c0,1.657-1.343,3-3,3s-3-1.343-3-3v-3h-3c-1.657,0-3-1.343-3-3c0-1.657,1.343-3,3-3h3v-3\r\n\t\t\t\tc0-1.657,1.343-3,3-3s3,1.343,3,3v3h3c1.657,0,3,1.343,3,3C59,49.657,57.657,51,56,51z M34.055,46.909L23,52.939V19.79l16-8.727\r\n\t\t\t\tv25.338c1.693-1.606,3.732-2.847,6-3.593V12.017l10,7.5v13.291c2.268,0.746,4.307,1.987,6,3.593V18\r\n\t\t\t\tc0-0.948-0.448-1.782-1.134-2.332l0.001-0.001l-0.025-0.019c-0.073-0.058-0.145-0.117-0.224-0.168L43.867,3.667l-0.001,0.001\r\n\t\t\t\tC43.352,3.256,42.709,3,42,3c-0.495,0-0.956,0.131-1.367,0.344L40.63,3.339L20.251,14.455L5.867,3.667L5.866,3.668\r\n\t\t\t\tC5.352,3.256,4.709,3,4,3C2.343,3,1,4.343,1,6v40c0,1.056,0.548,1.98,1.372,2.514l15.815,11.861C18.692,60.762,19.315,61,20,61\r\n\t\t\t\tc0.528,0,1.018-0.148,1.449-0.388l0.003,0.006l13.457-7.34C34.331,51.623,34,49.852,34,48C34,47.632,34.031,47.271,34.055,46.909\r\n\t\t\t\tz M17,51.986l-10-7.5V12.017l10,7.5V51.986z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MAP_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MAP","display":"inline"},"children":[{"name":"g","attribs":{"id":"MAP","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M60.866,15.668l0.001-0.001l-0.025-0.019c-0.073-0.058-0.145-0.117-0.224-0.168\r\n\t\t\t\tL44.867,3.667l-0.001,0.001C44.352,3.256,43.709,3,43,3c-0.495,0-0.956,0.131-1.367,0.344L41.63,3.339L21.251,14.455L6.867,3.667\r\n\t\t\t\tL6.866,3.668C6.352,3.256,5.709,3,5,3C3.343,3,2,4.343,2,6v40c0,1.056,0.548,1.98,1.372,2.514l15.815,11.861\r\n\t\t\t\tC19.692,60.762,20.315,61,21,61c0.528,0,1.018-0.148,1.449-0.388l0.003,0.006L42.725,49.56l14.542,10.906l0.012-0.016\r\n\t\t\t\tC57.766,60.795,58.358,61,59,61c1.657,0,3-1.343,3-3V18C62,17.052,61.552,16.218,60.866,15.668z M18,51.986l-10-7.5V12.017\r\n\t\t\t\tl10,7.5V51.986z M40,44.212l-16,8.727V19.79l16-8.727V44.212z M56,52.017l-10-7.5v-32.5l10,7.5V52.017z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M60.866,15.668l0.001-0.001l-0.025-0.019c-0.073-0.058-0.145-0.117-0.224-0.168\r\n\t\t\t\tL44.867,3.667l-0.001,0.001C44.352,3.256,43.709,3,43,3c-0.495,0-0.956,0.131-1.367,0.344L41.63,3.339L21.251,14.455L6.867,3.667\r\n\t\t\t\tL6.866,3.668C6.352,3.256,5.709,3,5,3C3.343,3,2,4.343,2,6v40c0,1.056,0.548,1.98,1.372,2.514l15.815,11.861\r\n\t\t\t\tC19.692,60.762,20.315,61,21,61c0.528,0,1.018-0.148,1.449-0.388l0.003,0.006L42.725,49.56l14.542,10.906l0.012-0.016\r\n\t\t\t\tC57.766,60.795,58.358,61,59,61c1.657,0,3-1.343,3-3V18C62,17.052,61.552,16.218,60.866,15.668z M18,51.986l-10-7.5V12.017\r\n\t\t\t\tl10,7.5V51.986z M40,44.212l-16,8.727V19.79l16-8.727V44.212z M56,52.017l-10-7.5v-32.5l10,7.5V52.017z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BRIGHTNESS__x2F__HIGH_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BRIGHTNESS__x2F__HIGH","display":"inline"},"children":[{"name":"g","attribs":{"id":"BRIGHTNESS__x2F__HIGH","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M14.879,19.121l0.009-0.009C15.427,19.659,16.17,20,17,20c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.83-0.341-1.573-0.887-2.113l0.009-0.009l-1.556-1.556l-5.445-5.445C11.578,7.336,10.828,7,10,7c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L14.879,19.121z M47,20c0.83,0,1.573-0.342,2.113-0.888l0.009,0.009l1.555-1.556l5.444-5.444\r\n\t\t\t\tC56.664,11.578,57,10.828,57,10c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879l-5.444,5.445l-1.556,1.556l0.009,0.009\r\n\t\t\t\tC44.342,15.427,44,16.17,44,17C44,18.657,45.343,20,47,20z M32,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8\r\n\t\t\t\tC29,12.657,30.343,14,32,14z M14,32c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h8\r\n\t\t\t\tC12.657,35,14,33.657,14,32z M50.677,46.434l-1.555-1.556C48.578,44.336,47.828,44,47,44c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121l1.556,1.556l5.444,5.444C52.422,56.664,53.172,57,54,57c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L50.677,46.434z M17,44c-0.828,0-1.578,0.336-2.121,0.879l-7,7C7.336,52.422,7,53.172,7,54\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879l5.445-5.444l1.556-1.556C19.664,48.579,20,47.828,20,47\r\n\t\t\t\tC20,45.343,18.657,44,17,44z M61,29h-8c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h8c1.657,0,3-1.343,3-3\r\n\t\t\t\tC64,30.343,62.657,29,61,29z M32,20c-6.627,0-12,5.373-12,12c0,1.021,0.141,2.007,0.381,2.953l1.183,2.958\r\n\t\t\t\tC23.627,41.544,27.524,44,32,44c6.627,0,12-5.372,12-12C44,25.373,38.627,20,32,20z M32,38c-3.314,0-6-2.686-6-6\r\n\t\t\t\tc0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6C38,35.314,35.314,38,32,38z M32,50c-1.657,0-3,1.343-3,3v8c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3v-8C35,51.343,33.657,50,32,50z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M14.879,19.121l0.009-0.009C15.427,19.659,16.17,20,17,20c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.83-0.341-1.573-0.887-2.113l0.009-0.009l-1.556-1.556l-5.445-5.445C11.578,7.336,10.828,7,10,7c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L14.879,19.121z M47,20c0.83,0,1.573-0.342,2.113-0.888l0.009,0.009l1.555-1.556l5.444-5.444\r\n\t\t\t\tC56.664,11.578,57,10.828,57,10c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879l-5.444,5.445l-1.556,1.556l0.009,0.009\r\n\t\t\t\tC44.342,15.427,44,16.17,44,17C44,18.657,45.343,20,47,20z M32,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8\r\n\t\t\t\tC29,12.657,30.343,14,32,14z M14,32c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h8\r\n\t\t\t\tC12.657,35,14,33.657,14,32z M50.677,46.434l-1.555-1.556C48.578,44.336,47.828,44,47,44c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121l1.556,1.556l5.444,5.444C52.422,56.664,53.172,57,54,57c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L50.677,46.434z M17,44c-0.828,0-1.578,0.336-2.121,0.879l-7,7C7.336,52.422,7,53.172,7,54\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879l5.445-5.444l1.556-1.556C19.664,48.579,20,47.828,20,47\r\n\t\t\t\tC20,45.343,18.657,44,17,44z M61,29h-8c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h8c1.657,0,3-1.343,3-3\r\n\t\t\t\tC64,30.343,62.657,29,61,29z M32,20c-6.627,0-12,5.373-12,12c0,1.021,0.141,2.007,0.381,2.953l1.183,2.958\r\n\t\t\t\tC23.627,41.544,27.524,44,32,44c6.627,0,12-5.372,12-12C44,25.373,38.627,20,32,20z M32,38c-3.314,0-6-2.686-6-6\r\n\t\t\t\tc0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6C38,35.314,35.314,38,32,38z M32,50c-1.657,0-3,1.343-3,3v8c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3v-8C35,51.343,33.657,50,32,50z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BRIGHTNESS__x2F__LOW_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BRIGHTNESS__x2F__LOW","display":"inline"},"children":[{"name":"g","attribs":{"id":"BRIGHTNESS__x2F__LOW","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M12.879,17.122l2,2l0.009-0.009C15.427,19.659,16.17,20,17,20\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.83-0.341-1.573-0.888-2.113l0.009-0.009l-2-2l-0.009,0.009C16.573,12.341,15.83,12,15,12\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.83,0.341,1.573,0.888,2.112L12.879,17.122z M47,20c0.83,0,1.573-0.342,2.113-0.888l0.009,0.009l2-2\r\n\t\t\t\tl-0.009-0.009C51.659,16.573,52,15.83,52,15c0-1.657-1.343-3-3-3c-0.83,0-1.573,0.341-2.113,0.888l-0.009-0.009l-2,2l0.009,0.009\r\n\t\t\t\tC44.342,15.427,44,16.17,44,17C44,18.657,45.343,20,47,20z M14,32c0-1.657-1.343-3-3-3H9c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,1.657,1.343,3,3,3h2C12.657,35,14,33.657,14,32z M32,14c1.657,0,3-1.343,3-3V9c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v2\r\n\t\t\t\tC29,12.657,30.343,14,32,14z M32,20c-6.627,0-12,5.373-12,12c0,1.021,0.141,2.007,0.381,2.953l1.183,2.958\r\n\t\t\t\tC23.627,41.544,27.524,44,32,44c6.627,0,12-5.372,12-12C44,25.373,38.627,20,32,20z M32,38c-3.314,0-6-2.686-6-6\r\n\t\t\t\tc0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6C38,35.314,35.314,38,32,38z M49.121,44.879C48.578,44.336,47.828,44,47,44\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l2,2C47.422,51.664,48.172,52,49,52c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L49.121,44.879z M17,44c-0.828,0-1.578,0.336-2.121,0.879l-2,2C12.336,47.422,12,48.172,12,49\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.828,0,1.579-0.336,2.121-0.879l2-2C19.664,48.579,20,47.828,20,47C20,45.343,18.657,44,17,44z M55,29h-2\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h2c1.657,0,3-1.343,3-3C58,30.343,56.657,29,55,29z M32,50c-1.657,0-3,1.343-3,3v2\r\n\t\t\t\tc0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-2C35,51.343,33.657,50,32,50z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M12.879,17.122l2,2l0.009-0.009C15.427,19.659,16.17,20,17,20\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.83-0.341-1.573-0.888-2.113l0.009-0.009l-2-2l-0.009,0.009C16.573,12.341,15.83,12,15,12\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.83,0.341,1.573,0.888,2.112L12.879,17.122z M47,20c0.83,0,1.573-0.342,2.113-0.888l0.009,0.009l2-2\r\n\t\t\t\tl-0.009-0.009C51.659,16.573,52,15.83,52,15c0-1.657-1.343-3-3-3c-0.83,0-1.573,0.341-2.113,0.888l-0.009-0.009l-2,2l0.009,0.009\r\n\t\t\t\tC44.342,15.427,44,16.17,44,17C44,18.657,45.343,20,47,20z M14,32c0-1.657-1.343-3-3-3H9c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,1.657,1.343,3,3,3h2C12.657,35,14,33.657,14,32z M32,14c1.657,0,3-1.343,3-3V9c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v2\r\n\t\t\t\tC29,12.657,30.343,14,32,14z M32,20c-6.627,0-12,5.373-12,12c0,1.021,0.141,2.007,0.381,2.953l1.183,2.958\r\n\t\t\t\tC23.627,41.544,27.524,44,32,44c6.627,0,12-5.372,12-12C44,25.373,38.627,20,32,20z M32,38c-3.314,0-6-2.686-6-6\r\n\t\t\t\tc0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6C38,35.314,35.314,38,32,38z M49.121,44.879C48.578,44.336,47.828,44,47,44\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l2,2C47.422,51.664,48.172,52,49,52c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L49.121,44.879z M17,44c-0.828,0-1.578,0.336-2.121,0.879l-2,2C12.336,47.422,12,48.172,12,49\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.828,0,1.579-0.336,2.121-0.879l2-2C19.664,48.579,20,47.828,20,47C20,45.343,18.657,44,17,44z M55,29h-2\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h2c1.657,0,3-1.343,3-3C58,30.343,56.657,29,55,29z M32,50c-1.657,0-3,1.343-3,3v2\r\n\t\t\t\tc0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-2C35,51.343,33.657,50,32,50z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"POLAROIDS_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"POLAROIDS","display":"inline"},"children":[{"name":"g","attribs":{"id":"POLAROIDS","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M45,12H3c-1.657,0-3,1.343-3,3v46c0,1.657,1.343,3,3,3h42c1.657,0,3-1.343,3-3\r\n\t\t\t\tV15C48,13.343,46.657,12,45,12z M42,49H6V18h36V49z M61,0H19c-1.657,0-3,1.343-3,3v6h6V6h36v31h-7v15h10c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M45,12H3c-1.657,0-3,1.343-3,3v46c0,1.657,1.343,3,3,3h42c1.657,0,3-1.343,3-3\r\n\t\t\t\tV15C48,13.343,46.657,12,45,12z M42,49H6V18h36V49z M61,0H19c-1.657,0-3,1.343-3,3v6h6V6h36v31h-7v15h10c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"POLAROID_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"POLAROID","display":"inline"},"children":[{"name":"g","attribs":{"id":"POLAROID","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M53,6H11C9.343,6,8,7.343,8,9v46c0,1.657,1.343,3,3,3h42c1.657,0,3-1.343,3-3V9\r\n\t\t\t\tC56,7.343,54.657,6,53,6z M50,43H14V12h36V43z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M53,6H11C9.343,6,8,7.343,8,9v46c0,1.657,1.343,3,3,3h42c1.657,0,3-1.343,3-3V9\r\n\t\t\t\tC56,7.343,54.657,6,53,6z M50,43H14V12h36V43z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"PICTURE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PICTURE","display":"inline"},"children":[{"name":"g","attribs":{"id":"PICTURE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M22,28c3.314,0,6-2.686,6-6c0-3.314-2.686-6-6-6s-6,2.686-6,6\r\n\t\t\t\tC16,25.314,18.686,28,22,28z M62,14c0-1.304-0.837-2.403-2-2.816V7.816C61.163,7.403,62,6.305,62,5c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.304,0-2.403,0.838-2.816,2h-3.367C52.403,2.838,51.304,2,50,2c-1.304,0-2.403,0.838-2.816,2h-3.367\r\n\t\t\t\tC43.403,2.838,42.304,2,41,2c-1.304,0-2.403,0.838-2.816,2h-3.367C34.403,2.838,33.304,2,32,2c-1.304,0-2.403,0.838-2.816,2\r\n\t\t\t\th-3.367C25.403,2.838,24.304,2,23,2c-1.304,0-2.403,0.838-2.816,2h-3.367C16.403,2.838,15.304,2,14,2\r\n\t\t\t\tc-1.304,0-2.403,0.838-2.816,2H7.816C7.403,2.838,6.304,2,5,2C3.343,2,2,3.343,2,5c0,1.304,0.837,2.403,2,2.816v3.367\r\n\t\t\t\tC2.838,11.597,2,12.696,2,14c0,1.304,0.837,2.403,2,2.816v3.367C2.838,20.597,2,21.696,2,23c0,1.304,0.837,2.403,2,2.816v3.367\r\n\t\t\t\tC2.838,29.597,2,30.696,2,32c0,1.304,0.837,2.403,2,2.816v3.367C2.838,38.597,2,39.696,2,41s0.837,2.403,2,2.816v3.367\r\n\t\t\t\tC2.838,47.597,2,48.696,2,50c0,1.304,0.837,2.403,2,2.816v3.367C2.838,56.597,2,57.696,2,59c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2\r\n\t\t\t\tc1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2\r\n\t\t\t\tc1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-1.304-0.837-2.403-2-2.816v-3.367c1.163-0.413,2-1.512,2-2.816c0-1.304-0.837-2.403-2-2.816v-3.367\r\n\t\t\t\tc1.163-0.413,2-1.512,2-2.816s-0.837-2.403-2-2.816v-3.367c1.163-0.413,2-1.512,2-2.816c0-1.304-0.837-2.403-2-2.816v-3.367\r\n\t\t\t\tc1.163-0.413,2-1.512,2-2.816c0-1.304-0.837-2.403-2-2.816v-3.367C61.163,16.403,62,15.304,62,14z M54,54H10V10h44V54z M51,39\r\n\t\t\t\tl-9-14L28,42l-3-3L13,51h38V39z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M22,28c3.314,0,6-2.686,6-6c0-3.314-2.686-6-6-6s-6,2.686-6,6\r\n\t\t\t\tC16,25.314,18.686,28,22,28z M62,14c0-1.304-0.837-2.403-2-2.816V7.816C61.163,7.403,62,6.305,62,5c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.304,0-2.403,0.838-2.816,2h-3.367C52.403,2.838,51.304,2,50,2c-1.304,0-2.403,0.838-2.816,2h-3.367\r\n\t\t\t\tC43.403,2.838,42.304,2,41,2c-1.304,0-2.403,0.838-2.816,2h-3.367C34.403,2.838,33.304,2,32,2c-1.304,0-2.403,0.838-2.816,2\r\n\t\t\t\th-3.367C25.403,2.838,24.304,2,23,2c-1.304,0-2.403,0.838-2.816,2h-3.367C16.403,2.838,15.304,2,14,2\r\n\t\t\t\tc-1.304,0-2.403,0.838-2.816,2H7.816C7.403,2.838,6.304,2,5,2C3.343,2,2,3.343,2,5c0,1.304,0.837,2.403,2,2.816v3.367\r\n\t\t\t\tC2.838,11.597,2,12.696,2,14c0,1.304,0.837,2.403,2,2.816v3.367C2.838,20.597,2,21.696,2,23c0,1.304,0.837,2.403,2,2.816v3.367\r\n\t\t\t\tC2.838,29.597,2,30.696,2,32c0,1.304,0.837,2.403,2,2.816v3.367C2.838,38.597,2,39.696,2,41s0.837,2.403,2,2.816v3.367\r\n\t\t\t\tC2.838,47.597,2,48.696,2,50c0,1.304,0.837,2.403,2,2.816v3.367C2.838,56.597,2,57.696,2,59c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2\r\n\t\t\t\tc1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2\r\n\t\t\t\tc1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-1.304-0.837-2.403-2-2.816v-3.367c1.163-0.413,2-1.512,2-2.816c0-1.304-0.837-2.403-2-2.816v-3.367\r\n\t\t\t\tc1.163-0.413,2-1.512,2-2.816s-0.837-2.403-2-2.816v-3.367c1.163-0.413,2-1.512,2-2.816c0-1.304-0.837-2.403-2-2.816v-3.367\r\n\t\t\t\tc1.163-0.413,2-1.512,2-2.816c0-1.304-0.837-2.403-2-2.816v-3.367C61.163,16.403,62,15.304,62,14z M54,54H10V10h44V54z M51,39\r\n\t\t\t\tl-9-14L28,42l-3-3L13,51h38V39z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"FRAME_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"FRAME","display":"inline"},"children":[{"name":"g","attribs":{"id":"FRAME","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M62,14c0-1.304-0.837-2.403-2-2.816V7.816C61.163,7.403,62,6.305,62,5\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-1.304,0-2.403,0.838-2.816,2h-3.367C52.403,2.838,51.304,2,50,2c-1.304,0-2.403,0.838-2.816,2h-3.367\r\n\t\t\t\tC43.403,2.838,42.304,2,41,2c-1.304,0-2.403,0.838-2.816,2h-3.367C34.403,2.838,33.304,2,32,2c-1.304,0-2.403,0.838-2.816,2\r\n\t\t\t\th-3.367C25.403,2.838,24.304,2,23,2s-2.403,0.838-2.816,2h-3.367C16.403,2.838,15.304,2,14,2s-2.403,0.838-2.816,2H7.816\r\n\t\t\t\tC7.403,2.838,6.304,2,5,2C3.343,2,2,3.343,2,5c0,1.304,0.837,2.403,2,2.816v3.367C2.837,11.597,2,12.696,2,14\r\n\t\t\t\tc0,1.304,0.837,2.403,2,2.816v3.367C2.837,20.597,2,21.696,2,23c0,1.304,0.837,2.403,2,2.816v3.367C2.837,29.597,2,30.696,2,32\r\n\t\t\t\tc0,1.304,0.837,2.403,2,2.816v3.367C2.837,38.597,2,39.696,2,41s0.837,2.403,2,2.816v3.367C2.837,47.597,2,48.696,2,50\r\n\t\t\t\tc0,1.304,0.837,2.403,2,2.816v3.367C2.837,56.597,2,57.696,2,59c0,1.657,1.343,3,3,3c1.304,0,2.403-0.837,2.816-2h3.367\r\n\t\t\t\tc0.413,1.162,1.512,2,2.816,2s2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2s2.403-0.837,2.816-2h3.367\r\n\t\t\t\tc0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.816-2h3.367\r\n\t\t\t\tc0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-1.304-0.837-2.403-2-2.816v-3.367c1.162-0.413,2-1.512,2-2.816c0-1.304-0.837-2.403-2-2.816v-3.367\r\n\t\t\t\tc1.162-0.413,2-1.512,2-2.816s-0.837-2.403-2-2.816v-3.367c1.162-0.413,2-1.512,2-2.816c0-1.304-0.837-2.403-2-2.816v-3.367\r\n\t\t\t\tc1.162-0.413,2-1.512,2-2.816c0-1.304-0.837-2.403-2-2.816v-3.367C61.163,16.403,62,15.304,62,14z M54,54H10V10h44V54z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M62,14c0-1.304-0.837-2.403-2-2.816V7.816C61.163,7.403,62,6.305,62,5\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-1.304,0-2.403,0.838-2.816,2h-3.367C52.403,2.838,51.304,2,50,2c-1.304,0-2.403,0.838-2.816,2h-3.367\r\n\t\t\t\tC43.403,2.838,42.304,2,41,2c-1.304,0-2.403,0.838-2.816,2h-3.367C34.403,2.838,33.304,2,32,2c-1.304,0-2.403,0.838-2.816,2\r\n\t\t\t\th-3.367C25.403,2.838,24.304,2,23,2s-2.403,0.838-2.816,2h-3.367C16.403,2.838,15.304,2,14,2s-2.403,0.838-2.816,2H7.816\r\n\t\t\t\tC7.403,2.838,6.304,2,5,2C3.343,2,2,3.343,2,5c0,1.304,0.837,2.403,2,2.816v3.367C2.837,11.597,2,12.696,2,14\r\n\t\t\t\tc0,1.304,0.837,2.403,2,2.816v3.367C2.837,20.597,2,21.696,2,23c0,1.304,0.837,2.403,2,2.816v3.367C2.837,29.597,2,30.696,2,32\r\n\t\t\t\tc0,1.304,0.837,2.403,2,2.816v3.367C2.837,38.597,2,39.696,2,41s0.837,2.403,2,2.816v3.367C2.837,47.597,2,48.696,2,50\r\n\t\t\t\tc0,1.304,0.837,2.403,2,2.816v3.367C2.837,56.597,2,57.696,2,59c0,1.657,1.343,3,3,3c1.304,0,2.403-0.837,2.816-2h3.367\r\n\t\t\t\tc0.413,1.162,1.512,2,2.816,2s2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2s2.403-0.837,2.816-2h3.367\r\n\t\t\t\tc0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.816-2h3.367\r\n\t\t\t\tc0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-1.304-0.837-2.403-2-2.816v-3.367c1.162-0.413,2-1.512,2-2.816c0-1.304-0.837-2.403-2-2.816v-3.367\r\n\t\t\t\tc1.162-0.413,2-1.512,2-2.816s-0.837-2.403-2-2.816v-3.367c1.162-0.413,2-1.512,2-2.816c0-1.304-0.837-2.403-2-2.816v-3.367\r\n\t\t\t\tc1.162-0.413,2-1.512,2-2.816c0-1.304-0.837-2.403-2-2.816v-3.367C61.163,16.403,62,15.304,62,14z M54,54H10V10h44V54z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MAGNIFYING_GLASS__x2F__REMOVE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MAGNIFYING_GLASS__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{"id":"MAGNIFYING_GLASS__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M62.243,53.758L44.658,36.173C46.768,32.601,48,28.449,48,24\r\n\t\t\t\tC48,10.745,37.255,0,24,0S0,10.745,0,24s10.745,24,24,24c4.449,0,8.601-1.232,12.173-3.342l17.585,17.584\r\n\t\t\t\tC54.843,63.329,56.343,64,58,64c3.314,0,6-2.686,6-6C64,56.343,63.328,54.843,62.243,53.758z M24,42c-9.941,0-18-8.059-18-18\r\n\t\t\t\tc0-9.941,8.059-18,18-18s18,8.059,18,18C42,33.941,33.941,42,24,42z M34,21H14c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h20\r\n\t\t\t\tc1.657,0,3-1.343,3-3C37,22.344,35.657,21,34,21z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M62.243,53.758L44.658,36.173C46.768,32.601,48,28.449,48,24\r\n\t\t\t\tC48,10.745,37.255,0,24,0S0,10.745,0,24s10.745,24,24,24c4.449,0,8.601-1.232,12.173-3.342l17.585,17.584\r\n\t\t\t\tC54.843,63.329,56.343,64,58,64c3.314,0,6-2.686,6-6C64,56.343,63.328,54.843,62.243,53.758z M24,42c-9.941,0-18-8.059-18-18\r\n\t\t\t\tc0-9.941,8.059-18,18-18s18,8.059,18,18C42,33.941,33.941,42,24,42z M34,21H14c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h20\r\n\t\t\t\tc1.657,0,3-1.343,3-3C37,22.344,35.657,21,34,21z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MAGNIFYING_GLASS__x2F__ADD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MAGNIFYING_GLASS__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{"id":"MAGNIFYING_GLASS__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M62.243,53.758L44.658,36.173C46.768,32.601,48,28.449,48,24\r\n\t\t\t\tC48,10.745,37.255,0,24,0C10.745,0,0,10.745,0,24s10.745,24,24,24c4.449,0,8.601-1.232,12.173-3.342l17.585,17.584\r\n\t\t\t\tC54.843,63.329,56.343,64,58,64c3.314,0,6-2.686,6-6C64,56.343,63.328,54.843,62.243,53.758z M24,42c-9.941,0-18-8.059-18-18\r\n\t\t\t\tc0-9.941,8.059-18,18-18c9.941,0,18,8.059,18,18C42,33.941,33.941,42,24,42z M34,21h-7v-7c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v7h-7c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h7v7c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-7h7\r\n\t\t\t\tc1.657,0,3-1.343,3-3C37,22.344,35.657,21,34,21z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M62.243,53.758L44.658,36.173C46.768,32.601,48,28.449,48,24\r\n\t\t\t\tC48,10.745,37.255,0,24,0C10.745,0,0,10.745,0,24s10.745,24,24,24c4.449,0,8.601-1.232,12.173-3.342l17.585,17.584\r\n\t\t\t\tC54.843,63.329,56.343,64,58,64c3.314,0,6-2.686,6-6C64,56.343,63.328,54.843,62.243,53.758z M24,42c-9.941,0-18-8.059-18-18\r\n\t\t\t\tc0-9.941,8.059-18,18-18c9.941,0,18,8.059,18,18C42,33.941,33.941,42,24,42z M34,21h-7v-7c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v7h-7c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h7v7c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-7h7\r\n\t\t\t\tc1.657,0,3-1.343,3-3C37,22.344,35.657,21,34,21z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MAGNIFYING_GLASS_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MAGNIFYING_GLASS","display":"inline"},"children":[{"name":"g","attribs":{"id":"MAGNIFYING_GLASS","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M62.243,53.758L44.658,36.173C46.768,32.601,48,28.449,48,24\r\n\t\t\t\tC48,10.745,37.255,0,24,0C10.745,0,0,10.745,0,24s10.745,24,24,24c4.449,0,8.601-1.232,12.173-3.342l17.584,17.584\r\n\t\t\t\tC54.843,63.329,56.343,64,58,64c3.314,0,6-2.686,6-6C64,56.343,63.328,54.843,62.243,53.758z M24,42c-9.941,0-18-8.059-18-18\r\n\t\t\t\tc0-9.941,8.059-18,18-18s18,8.059,18,18C42,33.941,33.941,42,24,42z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M62.243,53.758L44.658,36.173C46.768,32.601,48,28.449,48,24\r\n\t\t\t\tC48,10.745,37.255,0,24,0C10.745,0,0,10.745,0,24s10.745,24,24,24c4.449,0,8.601-1.232,12.173-3.342l17.584,17.584\r\n\t\t\t\tC54.843,63.329,56.343,64,58,64c3.314,0,6-2.686,6-6C64,56.343,63.328,54.843,62.243,53.758z M24,42c-9.941,0-18-8.059-18-18\r\n\t\t\t\tc0-9.941,8.059-18,18-18s18,8.059,18,18C42,33.941,33.941,42,24,42z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CIRCLE__x2F__RIGHT_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__RIGHT","display":"inline"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__RIGHT","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M47,29.778l0.007-0.008l-10-9L37,20.778C36.468,20.3,35.772,20,35,20\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.885,0.391,1.673,1,2.222l-0.007,0.008L37.182,29H19c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h18.182\r\n\t\t\t\tl-4.189,3.77L33,38.778c-0.61,0.549-1,1.337-1,2.222c0,1.657,1.343,3,3,3c0.772,0,1.468-0.299,2-0.778l0.007,0.008l10-9\r\n\t\t\t\tL47,34.222c0.61-0.549,1-1.336,1-2.222S47.609,30.328,47,29.778z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32S17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tS46.359,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M47,29.778l0.007-0.008l-10-9L37,20.778C36.468,20.3,35.772,20,35,20\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.885,0.391,1.673,1,2.222l-0.007,0.008L37.182,29H19c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h18.182\r\n\t\t\t\tl-4.189,3.77L33,38.778c-0.61,0.549-1,1.337-1,2.222c0,1.657,1.343,3,3,3c0.772,0,1.468-0.299,2-0.778l0.007,0.008l10-9\r\n\t\t\t\tL47,34.222c0.61-0.549,1-1.336,1-2.222S47.609,30.328,47,29.778z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32S17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tS46.359,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CIRCLE__x2F__LEFT_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__LEFT","display":"inline"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__LEFT","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M45,29H26.818l4.189-3.77L31,25.222c0.61-0.549,1-1.337,1-2.222\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.772,0-1.468,0.3-2,0.778l-0.007-0.008l-10,9L17,29.778c-0.61,0.549-1,1.336-1,2.222s0.391,1.673,1,2.222\r\n\t\t\t\tl-0.007,0.008l10,9L27,43.222C27.532,43.701,28.228,44,29,44c1.657,0,3-1.343,3-3c0-0.885-0.391-1.673-1-2.222l0.007-0.008\r\n\t\t\t\tL26.818,35H45c1.657,0,3-1.343,3-3C48,30.343,46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32S17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tS46.36,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M45,29H26.818l4.189-3.77L31,25.222c0.61-0.549,1-1.337,1-2.222\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.772,0-1.468,0.3-2,0.778l-0.007-0.008l-10,9L17,29.778c-0.61,0.549-1,1.336-1,2.222s0.391,1.673,1,2.222\r\n\t\t\t\tl-0.007,0.008l10,9L27,43.222C27.532,43.701,28.228,44,29,44c1.657,0,3-1.343,3-3c0-0.885-0.391-1.673-1-2.222l0.007-0.008\r\n\t\t\t\tL26.818,35H45c1.657,0,3-1.343,3-3C48,30.343,46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32S17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tS46.36,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CIRCLE__x2F__UP_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__UP","display":"inline"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__UP","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M43.23,26.993l-9-10l-0.008,0.007c-0.549-0.61-1.336-1-2.222-1\r\n\t\t\t\tc-0.885,0-1.672,0.391-2.222,1l-0.008-0.007l-9,10l0.008,0.007C20.3,27.532,20,28.229,20,29c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.885,0,1.673-0.391,2.222-1l0.008,0.007L29,26.818V45c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V26.818l3.77,4.189L38.778,31\r\n\t\t\t\tc0.549,0.61,1.337,1,2.222,1c1.657,0,3-1.343,3-3c0-0.772-0.3-1.468-0.778-2L43.23,26.993z M32,0C14.327,0,0,14.327,0,32\r\n\t\t\t\tc0,17.673,14.327,32,32,32c17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32S17.641,6,32,6\r\n\t\t\t\tc14.36,0,26,11.64,26,26S46.36,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M43.23,26.993l-9-10l-0.008,0.007c-0.549-0.61-1.336-1-2.222-1\r\n\t\t\t\tc-0.885,0-1.672,0.391-2.222,1l-0.008-0.007l-9,10l0.008,0.007C20.3,27.532,20,28.229,20,29c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.885,0,1.673-0.391,2.222-1l0.008,0.007L29,26.818V45c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V26.818l3.77,4.189L38.778,31\r\n\t\t\t\tc0.549,0.61,1.337,1,2.222,1c1.657,0,3-1.343,3-3c0-0.772-0.3-1.468-0.778-2L43.23,26.993z M32,0C14.327,0,0,14.327,0,32\r\n\t\t\t\tc0,17.673,14.327,32,32,32c17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32S17.641,6,32,6\r\n\t\t\t\tc14.36,0,26,11.64,26,26S46.36,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CIRCLE__x2F__DOWN_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__DOWN","display":"inline"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__DOWN","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M41,32c-0.885,0-1.673,0.391-2.222,1l-0.008-0.007L35,37.182V19\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v18.182l-3.77-4.189l-0.008,0.007c-0.549-0.61-1.337-1-2.222-1c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.772,0.299,1.468,0.778,2l-0.008,0.008l9,10L29.778,47c0.549,0.61,1.336,1,2.222,1c0.885,0,1.673-0.391,2.222-1l0.008,0.007\r\n\t\t\t\tl9-10L43.222,37C43.7,36.468,44,35.772,44,35C44,33.343,42.657,32,41,32z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\ts32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32S17.641,6,32,6s26,11.64,26,26S46.359,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M41,32c-0.885,0-1.673,0.391-2.222,1l-0.008-0.007L35,37.182V19\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v18.182l-3.77-4.189l-0.008,0.007c-0.549-0.61-1.337-1-2.222-1c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.772,0.299,1.468,0.778,2l-0.008,0.008l9,10L29.778,47c0.549,0.61,1.336,1,2.222,1c0.885,0,1.673-0.391,2.222-1l0.008,0.007\r\n\t\t\t\tl9-10L43.222,37C43.7,36.468,44,35.772,44,35C44,33.343,42.657,32,41,32z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\ts32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32S17.641,6,32,6s26,11.64,26,26S46.359,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BLOCK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BLOCK","display":"inline"},"children":[{"name":"g","attribs":{"id":"BLOCK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32c0-6.098,2.115-11.694,5.63-16.128\r\n\t\t\t\tL48.128,52.37C43.694,55.886,38.098,58,32,58z M52.37,48.128L15.873,11.63C20.307,8.115,25.902,6,32,6c14.359,0,26,11.641,26,26\r\n\t\t\t\tC58,38.098,55.886,43.694,52.37,48.128z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32c0-6.098,2.115-11.694,5.63-16.128\r\n\t\t\t\tL48.128,52.37C43.694,55.886,38.098,58,32,58z M52.37,48.128L15.873,11.63C20.307,8.115,25.902,6,32,6c14.359,0,26,11.641,26,26\r\n\t\t\t\tC58,38.098,55.886,43.694,52.37,48.128z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CIRCLE__x2F__DELETE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32S17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tS46.359,58,32,58z M46,21c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L32,27.758l-8.879-8.879\r\n\t\t\t\tC22.579,18.336,21.828,18,21,18c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L27.757,32l-8.879,8.879\r\n\t\t\t\tC18.336,41.422,18,42.172,18,43c0,1.657,1.343,3,3,3c0.828,0,1.579-0.336,2.121-0.879L32,36.243l8.879,8.879\r\n\t\t\t\tC41.422,45.664,42.172,46,43,46c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L36.243,32l8.879-8.878\r\n\t\t\t\tC45.664,22.578,46,21.829,46,21z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32S17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tS46.359,58,32,58z M46,21c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L32,27.758l-8.879-8.879\r\n\t\t\t\tC22.579,18.336,21.828,18,21,18c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L27.757,32l-8.879,8.879\r\n\t\t\t\tC18.336,41.422,18,42.172,18,43c0,1.657,1.343,3,3,3c0.828,0,1.579-0.336,2.121-0.879L32,36.243l8.879,8.879\r\n\t\t\t\tC41.422,45.664,42.172,46,43,46c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L36.243,32l8.879-8.878\r\n\t\t\t\tC45.664,22.578,46,21.829,46,21z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CIRCLE__x2F__OK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46,43.001C46,43.001,46,43.001,46,43.001C46,43,46,43,46,42.999V43.001z\r\n\t\t\t\t M46,20.999v0.002C46,21.001,46,21,46,20.999C46,21,46,21,46,20.999z M44,21c-0.828,0-1.578,0.336-2.121,0.879L28,35.758\r\n\t\t\t\tl-6.879-6.879C20.578,28.336,19.828,28,19,28c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l9,9\r\n\t\t\t\tC26.422,42.664,27.172,43,28,43c0.828,0,1.578-0.336,2.121-0.879l16-16C46.664,25.579,47,24.828,47,24C47,22.343,45.657,21,44,21\r\n\t\t\t\tz M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32s32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58\r\n\t\t\t\tC17.641,58,6,46.36,6,32S17.641,6,32,6c14.359,0,26,11.64,26,26S46.359,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46,43.001C46,43.001,46,43.001,46,43.001C46,43,46,43,46,42.999V43.001z\r\n\t\t\t\t M46,20.999v0.002C46,21.001,46,21,46,20.999C46,21,46,21,46,20.999z M44,21c-0.828,0-1.578,0.336-2.121,0.879L28,35.758\r\n\t\t\t\tl-6.879-6.879C20.578,28.336,19.828,28,19,28c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l9,9\r\n\t\t\t\tC26.422,42.664,27.172,43,28,43c0.828,0,1.578-0.336,2.121-0.879l16-16C46.664,25.579,47,24.828,47,24C47,22.343,45.657,21,44,21\r\n\t\t\t\tz M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32s32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58\r\n\t\t\t\tC17.641,58,6,46.36,6,32S17.641,6,32,6c14.359,0,26,11.64,26,26S46.359,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CIRCLE__x2F__MINUS_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__MINUS","display":"inline"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__MINUS","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M45,29H19c-1.657,0-3,1.343-3,3s1.343,3,3,3h26c1.657,0,3-1.343,3-3\r\n\t\t\t\tS46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32c17.673,0,32-14.327,32-32S49.673,0,32,0z M32,58\r\n\t\t\t\tC17.641,58,6,46.36,6,32S17.641,6,32,6c14.359,0,26,11.641,26,26S46.359,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M45,29H19c-1.657,0-3,1.343-3,3s1.343,3,3,3h26c1.657,0,3-1.343,3-3\r\n\t\t\t\tS46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32c17.673,0,32-14.327,32-32S49.673,0,32,0z M32,58\r\n\t\t\t\tC17.641,58,6,46.36,6,32S17.641,6,32,6c14.359,0,26,11.641,26,26S46.359,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CIRCLE__x2F__PLUS_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__PLUS","display":"inline"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__PLUS","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M45,29H35V19c0-1.657-1.343-3-3-3s-3,1.343-3,3v10H19c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h10v10c0,1.657,1.343,3,3,3s3-1.343,3-3V35h10c1.657,0,3-1.343,3-3S46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32\r\n\t\t\t\ts14.327,32,32,32c17.673,0,32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32S17.641,6,32,6\r\n\t\t\t\tc14.359,0,26,11.641,26,26S46.359,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M45,29H35V19c0-1.657-1.343-3-3-3s-3,1.343-3,3v10H19c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h10v10c0,1.657,1.343,3,3,3s3-1.343,3-3V35h10c1.657,0,3-1.343,3-3S46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32\r\n\t\t\t\ts14.327,32,32,32c17.673,0,32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32S17.641,6,32,6\r\n\t\t\t\tc14.359,0,26,11.641,26,26S46.359,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"GLOBE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"GLOBE","display":"inline"},"children":[{"name":"g","attribs":{"id":"GLOBE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31.446,19.655c0.015,0.03,0.03,0.059,0.044,0.089\r\n\t\t\t\tc0.057-0.013,0.103-0.074,0.133-0.115c0.012-0.009,0.004,0,0.013-0.013c-0.023-0.013-0.047-0.026-0.07-0.038\r\n\t\t\t\tc-0.002-0.004-0.004-0.008-0.006-0.013c0.069-0.055,0.095-0.122,0.076-0.235c-0.03-0.002-0.059-0.004-0.089-0.006\r\n\t\t\t\tc-0.026,0.029-0.04,0.127-0.051,0.165c-0.058-0.027-0.089-0.049-0.108-0.114c-0.004-0.002-0.009-0.004-0.013-0.006\r\n\t\t\t\tc-0.078,0.099-0.18,0.095-0.076,0.267C31.324,19.671,31.398,19.659,31.446,19.655z M43.382,11.985\r\n\t\t\t\tc0.203,0.031,0.324,0.15,0.496,0.203c-0.004,0.021-0.009,0.042-0.013,0.064c-0.084,0.038-0.182,0.051-0.172,0.172\r\n\t\t\t\tc0.094,0.018,0.165,0.009,0.28,0.006c0.026,0.034,0.051,0.068,0.076,0.102c0.094,0.039,0.143-0.06,0.21-0.083\r\n\t\t\t\tc0.155,0.002,0.309,0.004,0.464,0.007c-0.006-0.127-0.177-0.162-0.254-0.223c-0.136-0.107-0.215-0.333-0.254-0.534\r\n\t\t\t\tc-0.085-0.43,0.254-0.283,0.292-0.597c-0.066-0.023-0.131-0.047-0.197-0.07c-0.172-0.022-0.357,0.059-0.477,0.089\r\n\t\t\t\tc-0.072,0.004-0.144,0.008-0.216,0.013c-0.088,0.044-0.135,0.159-0.235,0.203c-0.004,0.007-0.009,0.013-0.013,0.019\r\n\t\t\t\tc0.051,0.026,0.093,0.062,0.165,0.064c-0.037,0.109-0.134,0.278-0.241,0.311c-0.072,0.022-0.115-0.021-0.172-0.019\r\n\t\t\t\tc-0.049,0.061-0.104,0.114-0.07,0.229c0.019,0.025,0.038,0.051,0.057,0.076C43.251,12.115,43.276,11.969,43.382,11.985z\r\n\t\t\t\t M20.926,10.303c-0.046,0.008-0.091,0.016-0.137,0.024c-0.018,0.026-0.036,0.077-0.072,0.095\r\n\t\t\t\tc0.061,0.013,0.304-0.051,0.354-0.078C21.07,10.309,20.97,10.301,20.926,10.303z M31.37,7.524\r\n\t\t\t\tc0.061-0.032,0.123-0.064,0.184-0.095c0.036,0.055,0.072,0.11,0.108,0.165c-0.076,0.036-0.153,0.072-0.229,0.108\r\n\t\t\t\tc0.055,0.135,0.434,0.457,0.623,0.388c0.163-0.06,0.211-0.226,0.35-0.312c0.086,0.097,0.288,0.173,0.438,0.197v0.006\r\n\t\t\t\tc-0.178,0.189-0.512,0.185-0.769,0.299h-0.013c0.023,0.049,0.047,0.097,0.07,0.146c0.248-0.018,0.442-0.069,0.661-0.089\r\n\t\t\t\tc0.027,0.025,0.055,0.051,0.083,0.076c-0.102,0.131-0.323,0.152-0.559,0.146c-0.023,0.034-0.047,0.068-0.07,0.102\r\n\t\t\t\tc-0.004,0.004-0.008,0.008-0.013,0.013c0.102,0.062,0.562,0.443,0.718,0.4c0.032-0.019,0.063-0.038,0.095-0.057\r\n\t\t\t\tc-0.001-0.177,0.066-0.321,0.159-0.407c0.028-0.029,0.124-0.04,0.172-0.044c0.038-0.081,0.076-0.161,0.114-0.242\r\n\t\t\t\tc0.058-0.144,0.054-0.343,0.178-0.419c0.093-0.021,0.187-0.043,0.28-0.064c0.053-0.026,0.106-0.051,0.159-0.076\r\n\t\t\t\tc-0.048-0.083-0.189-0.174-0.28-0.21c-0.082-0.032-0.163-0.021-0.229-0.063c-0.057-0.074-0.114-0.148-0.172-0.222\r\n\t\t\t\tc-0.078,0-0.117,0.083-0.172,0.127C33.238,7.389,33.219,7.38,33.2,7.372c-0.034-0.072,0.005-0.174,0.006-0.28\r\n\t\t\t\tc-0.021-0.015-0.042-0.03-0.064-0.045h-0.172c-0.066-0.021-0.112-0.079-0.21-0.089c-0.036,0.042-0.072,0.085-0.108,0.127\r\n\t\t\t\tc-0.04,0.109,0.108,0.294,0.127,0.4c-0.019,0.017-0.038,0.034-0.057,0.051c-0.108-0.025-0.306-0.287-0.35-0.381\r\n\t\t\t\tc-0.075-0.059-0.101-0.039-0.191,0c-0.015,0.076-0.03,0.153-0.044,0.229v0.013c-0.074-0.015-0.148-0.03-0.222-0.045\r\n\t\t\t\tc-0.036-0.055-0.041-0.146-0.038-0.242c-0.077-0.016-0.176,0.02-0.235,0.032c-0.047-0.004-0.093-0.008-0.14-0.013\r\n\t\t\t\tc-0.146,0.013-0.218,0.074-0.305,0.14C31.219,7.367,31.286,7.485,31.37,7.524z M34.414,7.117v0.006\r\n\t\t\t\tc-0.066,0.146-0.101,0.233-0.28,0.267v0.114c0.275,0.013,0.551,0.025,0.826,0.038c0.059-0.04,0.119-0.081,0.178-0.121\r\n\t\t\t\tc0.078-0.033,0.162-0.016,0.254-0.045c0.078-0.04,0.157-0.08,0.235-0.121c0.104-0.078,0.208-0.157,0.311-0.235\r\n\t\t\t\tc0.002-0.004,0.004-0.008,0.006-0.013c-0.023-0.038-0.047-0.076-0.07-0.114c-0.061-0.017-0.123-0.034-0.184-0.051\r\n\t\t\t\tc-0.119-0.023-0.251,0.029-0.375,0.026c-0.025-0.051-0.051-0.102-0.076-0.153c-0.03-0.011-0.059-0.021-0.089-0.032\r\n\t\t\t\tc-0.132,0.016-0.223,0.14-0.286,0.229h-0.108c-0.028-0.1-0.003-0.248,0.025-0.343c-0.136,0.061-0.143,0.232-0.267,0.292\r\n\t\t\t\tc-0.011,0.011-0.021,0.021-0.032,0.032c-0.167-0.256-0.328-0.017-0.496-0.134c-0.059-0.07-0.119-0.14-0.178-0.21\r\n\t\t\t\tc-0.081,0.106-0.161,0.212-0.241,0.318c-0.087,0.062-0.151,0.069-0.197,0.172c-0.004,0.004-0.008,0.008-0.013,0.013\r\n\t\t\t\tC33.594,7.203,34.035,7.121,34.414,7.117z M20.993,9.697c0.035,0.033,0.134,0.07,0.225,0.035c0.034-0.013,0.049-0.034,0.076-0.05\r\n\t\t\t\tc0.019-0.02,0.038-0.04,0.057-0.061c-0.074-0.021-0.104-0.081-0.222-0.057C21.066,9.601,20.983,9.637,20.993,9.697z\r\n\t\t\t\t M21.388,8.988c-0.081,0.009-0.125-0.079-0.169-0.114c-0.024,0.041-0.114,0.079-0.126,0.107c0,0,0.086,0.119,0.094,0.127\r\n\t\t\t\tc0.011,0.01,0.028,0.019,0.044,0.023c0.039-0.003,0.22-0.108,0.242-0.129c0.013-0.013,0.03-0.035,0.009-0.052\r\n\t\t\t\tC21.451,8.925,21.406,8.976,21.388,8.988z M20.989,9.241c-0.031,0.049,0.059,0.128,0.12,0.118\r\n\t\t\t\tc0.061-0.054,0.045-0.074-0.037-0.096C21.044,9.256,21.017,9.248,20.989,9.241z M20.988,9.24c0,0,0.001,0,0.001,0\r\n\t\t\t\tc0.002-0.004-0.006-0.009-0.002-0.012C20.987,9.233,20.988,9.237,20.988,9.24z M30.588,18.905\r\n\t\t\t\tc0.119-0.015,0.252,0.008,0.413-0.006c0.016-0.051,0.02-0.072,0.064-0.095c-0.01-0.113-0.024-0.131,0.025-0.21\r\n\t\t\t\tc-0.011-0.004-0.021-0.008-0.032-0.013c-0.006,0.01-0.013,0.021-0.019,0.032c-0.055,0.015-0.11,0.03-0.165,0.044\r\n\t\t\t\tc-0.059,0.043-0.078,0.143-0.153,0.172c-0.076,0.008-0.153,0.017-0.229,0.025c-0.051,0.023-0.079,0.083-0.102,0.133\r\n\t\t\t\tc0.028,0.028,0.055,0.055,0.083,0.083C30.523,19.013,30.565,18.998,30.588,18.905z M10.002,26.709v0.006\r\n\t\t\t\tc0.013,0.019,0.025,0.038,0.038,0.057h0.027c-0.006-0.014-0.006-0.034-0.015-0.051C10.036,26.717,10.019,26.713,10.002,26.709z\r\n\t\t\t\t M42.956,34.189c-0.051-0.021-0.102-0.042-0.153-0.064c-0.12,0.085-0.214,0.171-0.388,0.21c-0.076,0.017-0.145-0.016-0.191-0.025\r\n\t\t\t\tc-0.086-0.017-0.139,0.054-0.197,0.07c-0.059-0.006-0.119-0.013-0.178-0.019h-0.013c-0.072,0.047-0.144,0.093-0.216,0.14\r\n\t\t\t\tc-0.099,0.036-0.13-0.059-0.242-0.038c-0.091,0.04-0.182,0.08-0.273,0.121h-0.178c-0.091-0.099-0.215-0.211-0.273-0.337\r\n\t\t\t\tc-0.054-0.014-0.128-0.003-0.191-0.013c-0.004-0.002-0.009-0.004-0.013-0.006v-0.013c0.069-0.033,0.208-0.09,0.261-0.146\r\n\t\t\t\tc-0.006-0.169-0.233-0.211-0.33-0.305c-0.017-0.016-0.033-0.139-0.089-0.191c-0.026-0.024-0.075-0.007-0.108-0.025\r\n\t\t\t\tc-0.089-0.098-0.178-0.195-0.267-0.292c-0.035-0.016-0.076-0.009-0.127-0.006c-0.039-0.054-0.074-0.138-0.133-0.172\r\n\t\t\t\tc-0.019,0.025-0.013,0.083-0.019,0.108c-0.004,0.002-0.008,0.004-0.013,0.007c-0.182-0.153-0.224-0.622-0.331-0.864\r\n\t\t\t\tc-0.049-0.112-0.295-0.163-0.362-0.254c-0.106-0.144-0.038-0.516-0.089-0.724c-0.033-0.135-0.153-0.35-0.254-0.426\r\n\t\t\t\tc-0.05-0.038-0.123-0.051-0.159-0.102c-0.045-0.062-0.051-0.162-0.076-0.242c0.023-0.021,0.047-0.042,0.07-0.064\r\n\t\t\t\tc-0.051-0.051-0.102-0.102-0.153-0.152c-0.139-0.209-0.24-0.462-0.369-0.667c-0.055-0.144-0.11-0.288-0.165-0.432\r\n\t\t\t\tc-0.095-0.171-0.257-0.287-0.299-0.521c0.033-0.045,0.038-0.066,0.095-0.089c0.08,0.245,0.223,0.49,0.4,0.642\r\n\t\t\t\tc0.019,0.021,0.047,0.019,0.076,0.013c0.08-0.159,0.057-0.398,0.184-0.508c-0.074-0.191-0.148-0.381-0.222-0.572\r\n\t\t\t\tc-0.122,0.015-0.164,0.113-0.337,0.019c-0.112,0.08-0.158,0.011-0.28,0.032c-0.042-0.043-0.076-0.051-0.095-0.121\r\n\t\t\t\tc-0.215-0.044-0.454,0.008-0.604,0.108c-0.04,0.032-0.081,0.063-0.121,0.095c-0.079,0.017-0.155-0.048-0.21-0.064\r\n\t\t\t\tc-0.061-0.006-0.123-0.013-0.184-0.019c-0.013-0.017-0.025-0.034-0.038-0.051c-0.148-0.032-0.297-0.064-0.445-0.095h-0.318\r\n\t\t\t\tc-0.058-0.026-0.045-0.125-0.108-0.146h-0.146c-0.077-0.012-0.25-0.041-0.324-0.07c-0.07-0.038-0.033-0.128-0.133-0.172\r\n\t\t\t\tc-0.258-0.113-0.681,0.039-0.782,0.21c-0.137,0.231,0.167,0.358-0.146,0.527c-0.038,0.02-0.088,0.07-0.146,0.064\r\n\t\t\t\tc-0.153-0.018-0.266-0.184-0.4-0.235c-0.132-0.05-0.433-0.054-0.54-0.114c-0.119-0.068-0.137-0.311-0.241-0.35\r\n\t\t\t\tc-0.058-0.021-0.105-0.003-0.152-0.025c-0.028-0.025-0.055-0.051-0.083-0.076c-0.066-0.013-0.131-0.025-0.197-0.038\r\n\t\t\t\tc-0.095,0.006-0.191,0.013-0.286,0.019c-0.129-0.055-0.258-0.11-0.388-0.165c-0.009-0.034-0.017-0.068-0.025-0.102\r\n\t\t\t\tc-0.061-0.005-0.069,0.013-0.121,0.025c-0.082-0.04-0.182-0.111-0.203-0.21c0.059-0.065,0.326-0.286,0.324-0.369\r\n\t\t\t\tc-0.011-0.042-0.021-0.085-0.032-0.127c-0.337-0.192,0.008-0.272,0.006-0.483c-0.064,0.038-0.127,0.076-0.191,0.115\r\n\t\t\t\tc-0.011-0.002-0.021-0.004-0.032-0.006c-0.018-0.04-0.036-0.072-0.038-0.127c-0.047-0.021-0.093-0.042-0.14-0.064\r\n\t\t\t\tc-0.03,0.004-0.059,0.009-0.089,0.013c-0.095,0.036-0.266,0.212-0.432,0.165c-0.024-0.007-0.062-0.069-0.14-0.096\r\n\t\t\t\tc-0.063,0.009-0.084,0.051-0.133,0.076c-0.076-0.012-0.113-0.06-0.178-0.083c-0.078,0.055-0.155,0.115-0.267,0.14\r\n\t\t\t\tc-0.173,0.039-0.303-0.115-0.502-0.063c-0.038,0.021-0.076,0.042-0.114,0.063c-0.073,0.026-0.104-0.027-0.159-0.019\r\n\t\t\t\tc-0.047,0.021-0.093,0.042-0.14,0.064c-0.145,0.03-0.312-0.005-0.432,0.044c-0.114,0.047-0.181,0.142-0.267,0.216\r\n\t\t\t\tc-0.046-0.004-0.065-0.015-0.089-0.038c-0.039,0.007-0.209,0.066-0.242,0.089c-0.08,0.057-0.073,0.137-0.191,0.172\r\n\t\t\t\tc-0.13,0.038-0.283-0.002-0.318-0.089c-0.007-0.002-0.345,0.103-0.477,0.064c-0.138-0.041-0.19-0.153-0.28-0.242\r\n\t\t\t\tc-0.032,0.015-0.064,0.03-0.095,0.045c-0.071,0.054-0.17,0.43-0.248,0.534c-0.114,0.152-0.324,0.164-0.483,0.273\r\n\t\t\t\tc-0.054,0.037-0.227,0.186-0.248,0.241c-0.022,0.058,0.009,0.132-0.019,0.191c-0.035,0.073-0.121,0.127-0.153,0.21\r\n\t\t\t\tc-0.075,0.199,0.155,0.303-0.006,0.54c-0.101,0.149-0.406,0.41-0.578,0.483c-0.089,0.038-0.211,0.03-0.305,0.076\r\n\t\t\t\tc-0.108,0.053-0.13,0.288-0.203,0.381c-0.059,0.074-0.188,0.088-0.242,0.165c-0.056,0.081-0.105,0.204-0.127,0.311\r\n\t\t\t\tc-0.002,0.044-0.004,0.089-0.006,0.134c-0.04,0.101-0.18,0.151-0.242,0.235c-0.063,0.146-0.127,0.292-0.191,0.438\r\n\t\t\t\tc-0.047,0.051-0.093,0.102-0.14,0.153c-0.056,0.084-0.082,0.256-0.064,0.388c0.015-0.017,0.03-0.034,0.044-0.051\r\n\t\t\t\tc0.199,0.016,0.209,0.339,0.114,0.477c0.233,0.184,0.095,0.554,0.025,0.788c-0.008,0.068-0.017,0.136-0.025,0.203\r\n\t\t\t\tc-0.037,0.135-0.145,0.317-0.273,0.362c-0.002,0.004-0.004,0.008-0.006,0.013c0.181,0.076,0.181,0.271,0.267,0.311\r\n\t\t\t\tc0.01,0.02,0.013,0.041,0.013,0.076c-0.019,0.004-0.038,0.008-0.057,0.013c-0.049,0.069-0.01,0.177-0.032,0.261\r\n\t\t\t\tc0.08,0.135,0.04,0.036,0.14,0.102c0.004,0.015,0.008,0.03,0.013,0.044c0.042,0.025,0.085,0.051,0.127,0.076\r\n\t\t\t\tc0.063-0.012,0.153-0.052,0.203,0.006c-0.039,0.048-0.093,0.079-0.076,0.165c0.026,0.017,0.08,0.022,0.102,0.044\r\n\t\t\t\tc0.015,0.02,0.01,0.028,0.006,0.057c0.034,0.023,0.057,0.034,0.121,0.032c0.011,0.033,0.011,0.06,0,0.095\r\n\t\t\t\tc0.065,0.069,0.166,0.135,0.267,0.165c0.006,0.032,0.013,0.063,0.019,0.095c0.033,0.061,0.118,0.081,0.14,0.159v0.095\r\n\t\t\t\tc0.014,0.018,0.035,0.022,0.063,0.025c0.002,0.008,0.004,0.017,0.006,0.025c-0.023,0.019-0.047,0.038-0.07,0.057h-0.013\r\n\t\t\t\tc0.028,0.094,0.156,0.186,0.261,0.203c0.018,0.034,0.013,0.047,0.006,0.095c0.142,0.043,0.215,0.149,0.324,0.222\r\n\t\t\t\tc0.08,0.042,0.161,0.085,0.242,0.127c0.17,0.12,0.278,0.261,0.477,0.362c0.062,0.032,0.311,0.192,0.388,0.172\r\n\t\t\t\tc0.102-0.053,0.203-0.106,0.305-0.159c0.106-0.029,0.212-0.059,0.318-0.089c0.092-0.027,0.292-0.048,0.407-0.025\r\n\t\t\t\tc0.05,0.01,0.145,0.061,0.21,0.038c0.011-0.013,0.021-0.025,0.032-0.038c0.041,0.005,0.246,0.134,0.286,0.165\r\n\t\t\t\tc0.206-0.093,0.411-0.186,0.616-0.28c0.087-0.008,0.174-0.017,0.261-0.025c0.052-0.039,0.054-0.108,0.127-0.133\r\n\t\t\t\tc0.214-0.019,0.428-0.038,0.642-0.057c0.032-0.012,0.039-0.042,0.083-0.057c0.077,0.015,0.286,0.147,0.331,0.203\r\n\t\t\t\tc0.015,0.025,0.03,0.051,0.044,0.076c0.023,0.002,0.047,0.004,0.07,0.006c0.006,0.008,0.013,0.017,0.019,0.025\r\n\t\t\t\tc-0.013,0.032-0.025,0.064-0.038,0.095c0.025,0.209,0.348,0.363,0.534,0.197c0.101,0.017,0.232,0.039,0.343-0.006\r\n\t\t\t\tc0.002-0.027-0.002-0.037-0.013-0.063c0.025-0.016,0.147,0.013,0.178,0.051c0.069,0.124-0.004,0.172,0.222,0.165\r\n\t\t\t\tc0.008,0.013,0.017,0.026,0.025,0.038c0.004,0.004,0.008,0.008,0.013,0.013c-0.019,0.015-0.038,0.03-0.057,0.044\r\n\t\t\t\tc0.021,0.08,0.085,0.147,0.102,0.242c-0.011,0.042-0.021,0.085-0.032,0.127c0.009,0.032,0.017,0.064,0.025,0.095\r\n\t\t\t\tc-0.024,0.1-0.086,0.2-0.153,0.261c-0.002,0.006-0.004,0.013-0.006,0.019c0.025,0.004,0.051,0.008,0.076,0.013\r\n\t\t\t\tc0.003,0.084-0.012,0.146-0.076,0.165c0.049,0.042,0.097,0.085,0.146,0.127v0.006c-0.038-0.004-0.076-0.009-0.114-0.013\r\n\t\t\t\tc-0.031,0.138-0.072,0.242-0.191,0.292c0.013,0.028,0.052,0.116,0.076,0.14c0.036,0.035,0.074,0.015,0.114,0.07\r\n\t\t\t\tc-0.021,0.015-0.042,0.03-0.063,0.045c-0.002,0.004-0.004,0.008-0.006,0.013c0.042,0.062,0.085,0.123,0.127,0.184\r\n\t\t\t\tc0.053,0.027,0.074,0.003,0.108,0.045c-0.011,0.015-0.021,0.03-0.032,0.044c0.089,0.058,0.143,0.122,0.203,0.21\r\n\t\t\t\tc0.112,0.104,0.224,0.208,0.337,0.311c0.032,0.039,0.115,0.204,0.133,0.248c0.029,0.068-0.018,0.161,0.038,0.261\r\n\t\t\t\tc0.045,0.064,0.089,0.127,0.133,0.191c0.013,0.061,0.025,0.123,0.038,0.184c0.057,0.134,0.17,0.186,0.14,0.388\r\n\t\t\t\tc-0.243,0.109,0.046,0.36,0.089,0.489c0.008,0.1,0.017,0.199,0.025,0.299c-0.019,0.11-0.066,0.285-0.146,0.337\r\n\t\t\t\tc-0.03,0.01-0.059,0.021-0.089,0.032c-0.017,0.04-0.034,0.081-0.051,0.121c-0.03,0.032-0.059,0.064-0.089,0.096\r\n\t\t\t\tc-0.094,0.222-0.042,0.57-0.222,0.705c0,0.202-0.037,0.471,0.013,0.648c0.038,0.135,0.15,0.217,0.216,0.324\r\n\t\t\t\tc0.108,0.216,0.216,0.432,0.324,0.648c0.075,0.146,0.371,0.404,0.203,0.572c0.03,0.14,0.059,0.28,0.089,0.419\r\n\t\t\t\tc0.023,0.055,0.047,0.11,0.07,0.165c0.02,0.082-0.031,0.143-0.025,0.203c0.008,0.08,0.071,0.147,0.089,0.21\r\n\t\t\t\tc0.014,0.047-0.021,0.073-0.019,0.102c0.034,0.104,0.068,0.208,0.102,0.311c0.117,0.131,0.233,0.263,0.349,0.394\r\n\t\t\t\tc0.12,0.189,0.16,0.433,0.273,0.635c0.1,0.178,0.271,0.36,0.203,0.654c-0.033,0.008-0.077,0-0.095,0.025\r\n\t\t\t\tc-0.025,0.032,0.123,0.23,0.159,0.286c-0.017,0.049-0.034,0.098-0.051,0.146c0.011,0.011,0.021,0.021,0.032,0.032\r\n\t\t\t\tc0.006,0.002,0.013,0.004,0.019,0.006c0.006-0.015,0.013-0.03,0.019-0.045c0.017-0.008,0.022-0.011,0.051-0.013\r\n\t\t\t\tc0.013,0.023,0.025,0.047,0.038,0.07c0.027-0.001,0.052-0.007,0.102-0.006c0.021,0.029,0.022,0.055,0.038,0.095\r\n\t\t\t\tc0.024,0.042,0.115,0.075,0.165,0.089c0.06-0.046,0.096-0.122,0.178-0.146c0.115-0.035,0.251,0.044,0.356-0.006\r\n\t\t\t\tc0.032-0.03,0.063-0.059,0.095-0.089c0.15-0.071,0.214,0,0.331,0c0.034-0.019,0.068-0.038,0.102-0.057\r\n\t\t\t\tc0.122-0.035,0.234,0.073,0.318,0.102c0.04-0.031,0.07-0.055,0.095-0.102c0.057,0.013,0.114,0.025,0.172,0.038\r\n\t\t\t\tc0.017-0.018,0.02-0.053,0.032-0.076c0.05-0.048,0.322-0.017,0.4-0.07c0.083-0.072,0.165-0.144,0.248-0.216\r\n\t\t\t\tc0.416-0.327,0.721-0.688,1.017-1.138c0.074-0.113,0.264-0.191,0.305-0.299c0.02-0.052-0.028-0.122-0.019-0.146\r\n\t\t\t\tc0.016-0.044,0.065-0.032,0.089-0.064c0.071-0.091,0.109-0.35,0.089-0.496c-0.038-0.015-0.078-0.04-0.095-0.076\r\n\t\t\t\tc-0.006-0.006-0.013-0.013-0.019-0.019c0.078-0.091,0.132-0.175,0.242-0.235c0.244-0.134,0.525-0.121,0.635-0.388\r\n\t\t\t\tc-0.009-0.061-0.052-0.036-0.064-0.07c0.002-0.006,0.004-0.013,0.006-0.019c0.013-0.032,0.025-0.064,0.038-0.095\r\n\t\t\t\tc0.03-0.123,0.023-0.264,0.019-0.388c-0.028,0.01-0.035,0.018-0.076,0.019c-0.039-0.124-0.087-0.274-0.044-0.375\r\n\t\t\t\tc-0.006-0.075-0.062-0.112-0.114-0.14v-0.203c0.119-0.087,0.237-0.174,0.356-0.261c0.145-0.122,0.233-0.305,0.4-0.407\r\n\t\t\t\tc0.203-0.123,0.451-0.162,0.642-0.292c0.137-0.094,0.224-0.268,0.331-0.394c0-0.028-0.009-0.039-0.019-0.07\r\n\t\t\t\tc0.036-0.047,0.068-0.081,0.095-0.14c-0.002-0.011-0.004-0.021-0.006-0.032c-0.023-0.011-0.047-0.021-0.07-0.032\r\n\t\t\t\tc-0.02-0.163,0.012-0.337-0.07-0.432c0.003-0.034,0.034-0.063,0.044-0.108c0.026-0.113-0.041-0.294-0.057-0.394\r\n\t\t\t\tc0.03-0.055,0.059-0.11,0.089-0.165c-0.065-0.14-0.183-0.157-0.267-0.267c-0.083-0.108-0.127-0.393-0.07-0.553\r\n\t\t\t\tc-0.018-0.028-0.043-0.033-0.064-0.057c0.029-0.062,0.083-0.148,0.089-0.216c-0.057-0.071-0.161-0.126-0.197-0.216\r\n\t\t\t\tc-0.037-0.095,0.061-0.407,0.102-0.451c0.024-0.026,0.068-0.021,0.089-0.051c0.047-0.068,0.006-0.104,0.025-0.165\r\n\t\t\t\tc0.042-0.137,0.172-0.143,0.184-0.368c0.096-0.053,0.187-0.052,0.191-0.203c0.085,0.016,0.124-0.022,0.191-0.051\r\n\t\t\t\tc0.024-0.036,0.026-0.054,0.006-0.095c0.208-0.235,0.415-0.47,0.623-0.705c0.229-0.185,0.515-0.325,0.744-0.508\r\n\t\t\t\tc0.085-0.104,0.169-0.208,0.254-0.311c0.168-0.215,0.419-0.422,0.527-0.686c0.011-0.049,0.021-0.098,0.032-0.146\r\n\t\t\t\tc0.074-0.119,0.148-0.237,0.222-0.356c-0.002-0.028-0.004-0.055-0.006-0.083c0.042-0.04,0.085-0.081,0.127-0.121\r\n\t\t\t\tc0.055-0.098,0.11-0.195,0.165-0.292c0.006-0.087,0.013-0.174,0.019-0.261c0.014-0.04,0.079-0.07,0.076-0.127\r\n\t\t\t\tc-0.002-0.045-0.037-0.108-0.019-0.172c0.017-0.04,0.034-0.081,0.051-0.121C42.96,34.201,42.958,34.195,42.956,34.189z\r\n\t\t\t\t M51.688,35.155c-0.032-0.185-0.128-0.278-0.28-0.375c0.018,0.077-0.003,0.113-0.025,0.191c-0.034,0.026-0.04,0.042-0.095,0.025\r\n\t\t\t\tc-0.004,0.015-0.008,0.03-0.013,0.044c0.015,0.017,0.03,0.034,0.044,0.051c-0.029,0.063-0.008,0.077,0.006,0.14v0.318\r\n\t\t\t\tc0.023,0.101,0.073,0.267,0.146,0.324c0.208,0.044,0.476-0.139,0.451-0.337c-0.011-0.089-0.093-0.163-0.127-0.235\r\n\t\t\t\tC51.76,35.226,51.767,35.185,51.688,35.155z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32c17.673,0,32-14.327,32-32\r\n\t\t\t\tC64,14.327,49.673,0,32,0z M50.505,13.747c0.043,0.044,0.081,0.093,0.124,0.137c-0.003,0.02-0.006,0.039-0.008,0.059v0.006\r\n\t\t\t\tc0.027,0.007,0.053,0.01,0.08,0.013c0.048,0.049,0.092,0.103,0.139,0.153c-0.13,0.026-0.317,0.022-0.352-0.084\r\n\t\t\t\tC50.47,14.004,50.497,13.865,50.505,13.747z M48.568,14.508c0.038,0.017,0.076,0.034,0.114,0.051\r\n\t\t\t\tc0.07-0.025,0.14-0.051,0.21-0.076c-0.013-0.036-0.025-0.072-0.038-0.108c0.033-0.077,0.142-0.097,0.203-0.146\r\n\t\t\t\tc0.083-0.066,0.227-0.183,0.267-0.286c0.015-0.059,0.03-0.119,0.044-0.178c0.022-0.052,0.06-0.069,0.064-0.146\r\n\t\t\t\tc-0.099-0.13-0.202-0.041-0.254-0.292c0.002-0.127,0.004-0.254,0.006-0.381c-0.008-0.074-0.017-0.148-0.025-0.222\r\n\t\t\t\tc0.032-0.042,0.064-0.085,0.095-0.127c0.001-0.002-0.001-0.005,0-0.008c0.099,0.088,0.195,0.177,0.293,0.266\r\n\t\t\t\tc-0.012,0.031-0.036,0.06-0.038,0.092c-0.006,0.103,0.07,0.19,0.07,0.324c0.102-0.002,0.239,0.039,0.311,0.025\r\n\t\t\t\tc0.034-0.012,0.069-0.024,0.103-0.036c0.075,0.072,0.157,0.137,0.232,0.211c-0.214-0.04-0.47,0.008-0.5,0.206\r\n\t\t\t\tc0.056,0.099,0.113,0.168,0.108,0.318c-0.042,0.053-0.085,0.106-0.127,0.159c-0.034,0.021-0.068,0.042-0.102,0.064\r\n\t\t\t\tc-0.044,0.061-0.038,0.157-0.095,0.203c-0.14,0.113-0.327,0.134-0.407,0.311c-0.085,0.039-0.185,0.002-0.261-0.013\r\n\t\t\t\tc-0.053,0.002-0.106,0.004-0.159,0.006c-0.219-0.032-0.424-0.055-0.502-0.229C48.308,14.462,48.449,14.461,48.568,14.508z\r\n\t\t\t\t M14.404,12.899c-0.002,0.011-0.006,0.023,0.013,0.034c0.011,0.006,0.027,0.004,0.044,0.005c0.046,0.003,0.104,0.019,0.122,0.05\r\n\t\t\t\tc-0.03,0.071-0.177,0-0.221-0.006c0,0.003,0,0.006,0,0.008c-0.005,0-0.011,0-0.016,0c-0.003,0.077,0.276,0.05,0.304,0.123\r\n\t\t\t\tc-0.032,0.036-0.081,0.019-0.141,0.035c-0.004,0.062,0.16,0.026,0.146,0.083c0,0.002-0.001,0.003-0.001,0.005\r\n\t\t\t\tc-0.043,0.013-0.078-0.002-0.117,0.012c-0.004,0.003-0.007,0.006-0.01,0.009c0,0.003,0,0.006,0,0.008\r\n\t\t\t\tc0.031,0.019,0.072,0.042,0.132,0.023c0.017-0.006,0.036-0.014,0.054-0.012c0.006,0.002,0.012,0.003,0.017,0.005\r\n\t\t\t\tc0.003,0.02-0.019,0.063-0.05,0.071c-0.034,0.009-0.199-0.014-0.228-0.021c-0.059-0.015-0.101-0.05-0.147-0.078\r\n\t\t\t\tc-0.04-0.024-0.124-0.06-0.197-0.085C14.204,13.077,14.305,12.99,14.404,12.899z M13.524,13.715\r\n\t\t\t\tc0.019,0.012,0.039,0.022,0.052,0.039c-0.03-0.002-0.064,0.005-0.097,0.01C13.495,13.749,13.509,13.731,13.524,13.715z\r\n\t\t\t\t M7.943,27.904c0.017-0.004,0.034-0.008,0.051-0.013c-0.017,0.015-0.034,0.03-0.051,0.045\r\n\t\t\t\tC7.945,27.925,7.941,27.918,7.943,27.904z M7.499,23.367c-0.001,0.007,0,0.011-0.001,0.018c-0.002-0.002-0.002-0.004-0.004-0.006\r\n\t\t\t\tC7.496,23.376,7.497,23.372,7.499,23.367z M7.676,37.665c-0.049,0.065-0.234,0.104-0.337,0.051\r\n\t\t\t\tc-0.044,0.033-0.061,0.065-0.057,0.146c-0.015,0.013-0.03,0.025-0.044,0.038c-0.012-0.052-0.021-0.069-0.07-0.083\r\n\t\t\t\tc-0.033-0.007-0.066,0.023-0.095,0.038c-0.203,0.107-0.124,0.25-0.191,0.438c-0.026,0.005-0.052,0.01-0.079,0.015\r\n\t\t\t\tc-0.076-0.302-0.168-0.598-0.232-0.904c0.011,0.001,0.019,0.005,0.032,0.006c0.029,0.082,0.054,0.128,0.146,0.146\r\n\t\t\t\tc0.004-0.028,0.009-0.055,0.013-0.083h0.006c0.023,0.048,0.076,0.109,0.064,0.172c0.006,0.006,0.013,0.013,0.019,0.019\r\n\t\t\t\tc0.114,0.02,0.144-0.047,0.248-0.057c-0.01-0.111-0.095-0.121-0.133-0.203c0.039-0.058,0.138-0.099,0.21-0.121\r\n\t\t\t\tc-0.003-0.04-0.005-0.057,0.006-0.089c0.198-0.063,0.318-0.017,0.375,0.14c0.045,0.008,0.076-0.016,0.108-0.038\r\n\t\t\t\tc-0.001,0.049,0.005,0.067,0.038,0.083c0.002,0.004,0.004,0.009,0.006,0.013c-0.061-0.008-0.097-0.021-0.121,0.032\r\n\t\t\t\tC7.564,37.5,7.647,37.606,7.676,37.665z M32,58c-7.083,0-13.497-2.841-18.187-7.435c0.051-0.052,0.122-0.09,0.155-0.153\r\n\t\t\t\tc0.019-0.078,0.038-0.157,0.057-0.235v-0.013c0.049,0.022,0.108,0.044,0.172,0.019h0.006c0.013,0.192-0.204,0.292-0.248,0.483\r\n\t\t\t\tc0.103-0.092,0.237-0.221,0.299-0.349c0.051-0.121,0.102-0.242,0.153-0.362c0.174-0.277,0.481-0.299,0.394-0.852\r\n\t\t\t\tc-0.012-0.077-0.036-0.114-0.057-0.172c0.045-0.054,0.132-0.205,0.019-0.254v-0.038c0.146,0.013,0.159-0.073,0.235-0.14\r\n\t\t\t\tc0.08-0.07,0.491-0.363,0.585-0.381c0.051-0.01,0.091,0.021,0.127,0.032c0.03-0.036,0.059-0.072,0.089-0.108\r\n\t\t\t\tc0.086-0.051,0.144-0.034,0.165-0.153c0.094-0.012,0.207-0.008,0.28,0.006c0.161,0.031,0.334-0.013,0.483-0.025\r\n\t\t\t\tc-0.005-0.182,0.137-0.241,0.292-0.254c-0.009-0.051-0.017-0.102-0.025-0.153c0.017-0.123,0.117-0.202,0.172-0.292\r\n\t\t\t\tc0.034-0.07,0.068-0.14,0.102-0.21c0.032-0.046,0.105-0.072,0.121-0.133c-0.006-0.062-0.013-0.123-0.019-0.184\r\n\t\t\t\tc-0.03-0.169,0.065-0.288,0.184-0.331c0-0.048-0.035-0.138-0.019-0.222c0.021-0.107,0.097-0.243,0.076-0.369\r\n\t\t\t\tc-0.017-0.165-0.034-0.331-0.051-0.496c0.028-0.172,0.093-0.289,0.095-0.464c0.015,0.002,0.03,0.004,0.044,0.006\r\n\t\t\t\tc0.017,0.034,0.034,0.068,0.051,0.102h0.019c0.113-0.084,0.241-0.308,0.292-0.445c0.031-0.081,0.007-0.126,0.057-0.178\r\n\t\t\t\tc0.047-0.021,0.093-0.042,0.14-0.064c0.273-0.213,0.461-0.44,0.534-0.858c0.027-0.157-0.139-0.732-0.216-0.756\r\n\t\t\t\tc-0.161-0.05-0.338,0.008-0.458-0.07c-0.256-0.166-0.436-0.435-0.731-0.566c-0.171-0.076-0.287,0.017-0.451-0.013\r\n\t\t\t\tc-0.1-0.015-0.199-0.03-0.299-0.045c-0.086-0.023-0.18-0.133-0.286-0.121c-0.154,0.018-0.289,0.139-0.394,0.21\r\n\t\t\t\tc-0.049-0.2,0.024-0.122,0.044-0.242c0.013-0.077-0.114-0.195-0.184-0.203c-0.017,0.017-0.034,0.034-0.051,0.051h-0.025\r\n\t\t\t\tc-0.054-0.172-0.227-0.156-0.394-0.216c-0.065-0.023-0.106-0.068-0.159-0.102c-0.052,0.007-0.15,0.015-0.216,0.032\r\n\t\t\t\tc-0.072,0.028-0.08,0.13-0.121,0.191c-0.069,0.101-0.227,0.129-0.28,0.248c-0.004,0.002-0.008,0.004-0.013,0.006\r\n\t\t\t\tc0-0.07,0.012-0.1,0.032-0.146c-0.111,0.023-0.259,0.048-0.394,0.026c-0.032-0.076-0.064-0.153-0.095-0.229\r\n\t\t\t\tc-0.088,0.024-0.202,0.166-0.318,0.121c-0.006-0.004-0.013-0.008-0.019-0.013c0.085-0.065,0.102-0.2,0.159-0.292\r\n\t\t\t\tc0.065-0.105,0.205-0.137,0.28-0.229c0.067-0.082,0.092-0.211,0.197-0.254c0.034-0.054,0.016-0.107-0.006-0.165\r\n\t\t\t\tc-0.262-0.036-0.276-0.356-0.343-0.578c-0.021-0.068-0.016-0.143-0.076-0.172c-0.031-0.005-0.044,0.032-0.076,0.025\r\n\t\t\t\tc-0.015-0.003-0.319-0.315-0.4-0.356c-0.11-0.036-0.22-0.072-0.331-0.108c-0.09-0.035-0.342-0.112-0.489-0.051\r\n\t\t\t\tc-0.016,0.014-0.018,0.027-0.019,0.057c-0.095-0.021-0.191-0.042-0.286-0.064h-0.006c-0.015,0.015-0.03,0.03-0.044,0.045\r\n\t\t\t\tc-0.061-0.12-0.214-0.314-0.388-0.292c-0.011,0.021-0.021,0.042-0.032,0.063v0.013c-0.013-0.091-0.026-0.182-0.038-0.273\r\n\t\t\t\tc-0.074-0.125-0.313-0.283-0.47-0.318c-0.084-0.018-0.176,0.005-0.241,0.019c-0.066-0.004-0.131-0.008-0.197-0.013v-0.006\r\n\t\t\t\tc0.187-0.058,0.138-0.167,0.273-0.222c0.002-0.004,0.004-0.008,0.006-0.013c-0.051-0.035-0.122-0.045-0.178-0.083\r\n\t\t\t\tc-0.013-0.019-0.026-0.038-0.038-0.057c-0.045-0.029-0.132-0.021-0.172-0.045c-0.027,0.019-0.038,0.036-0.045,0.076\r\n\t\t\t\tc-0.004,0.002-0.008,0.004-0.013,0.006c-0.012-0.113-0.097-0.154-0.184-0.191V37.97c0.059,0.002,0.119,0.004,0.178,0.006\r\n\t\t\t\tc0.011-0.006,0.021-0.013,0.032-0.019c0.004-0.009,0.008-0.017,0.013-0.025c-0.002-0.004-0.004-0.008-0.006-0.013\r\n\t\t\t\tc-0.129-0.028-0.42-0.039-0.54,0.019c-0.075,0.037-0.117,0.126-0.21,0.146c-0.261,0.058-0.335-0.149-0.496-0.159\r\n\t\t\t\tc-0.136-0.008-0.364,0.083-0.483,0.025c-0.058-0.029-0.044-0.057-0.07-0.121c-0.05-0.125-0.201-0.158-0.375-0.159\r\n\t\t\t\tc-0.033-0.051-0.073-0.137-0.089-0.197c-0.053-0.012-0.097,0.016-0.114,0.064c0.015,0.025,0.03,0.051,0.044,0.076\r\n\t\t\t\tc0.028-0.002,0.055-0.004,0.083-0.006c0.013,0.011,0.025,0.021,0.038,0.032c-0.016,0.063-0.425,0.178-0.515,0.21\r\n\t\t\t\tc0.006,0.004,0.013,0.008,0.019,0.013c-0.008,0.036-0.018,0.036-0.038,0.057c0.053,0.026,0.197,0.299,0.152,0.394\r\n\t\t\t\tc-0.025,0.044-0.094,0.072-0.152,0.083c-0.065-0.049-0.097-0.164-0.146-0.229c0.015-0.1,0.07-0.186,0.121-0.254\r\n\t\t\t\tc-0.012-0.102-0.056-0.167-0.089-0.254c0.041-0.061,0.144-0.086,0.241-0.089c0.011-0.013,0.021-0.025,0.032-0.038\r\n\t\t\t\tc-0.013-0.064-0.059-0.101-0.114-0.121c-0.156-0.06-0.195,0.139-0.273,0.184c-0.04,0.013-0.081,0.025-0.121,0.038\r\n\t\t\t\tc0.019-0.036,0.046-0.051,0.032-0.102c0.027,0.011,0.029,0.016,0.038,0.045h0.006c0.052-0.033,0.079-0.079,0.121-0.121\r\n\t\t\t\tc-0.08-0.166-0.161-0.342-0.337-0.413c-0.058-0.023-0.134,0.003-0.203-0.026c-0.026-0.01-0.121-0.049-0.159-0.038\r\n\t\t\t\tc-0.047,0.032-0.093,0.064-0.14,0.095c-0.03,0.018-0.063,0.012-0.102,0.026c-0.12,0.043-0.172,0.128-0.331,0.095\r\n\t\t\t\tc-0.05-0.063-0.09-0.028-0.135-0.022c-0.26-1.288-0.395-2.619-0.457-3.968c0.016-0.002,0.033-0.001,0.046-0.007\r\n\t\t\t\tc0.167-0.078,0.167-0.194,0.47-0.121c0.006,0.011,0.013,0.021,0.019,0.032v0.006c-0.047,0.013-0.093,0.025-0.14,0.038\r\n\t\t\t\tc0.108,0.084,0.261,0.035,0.419,0.083c0.114,0.034,0.208,0.114,0.337,0.146c0.067,0.017,0.202-0.02,0.261,0.019\r\n\t\t\t\tc0.043,0.025,0.066,0.123,0.07,0.184c0.099,0.06,0.295,0.06,0.388,0.127c-0.006,0.065-0.053,0.106-0.102,0.127\r\n\t\t\t\tc-0.019,0.021-0.038,0.042-0.057,0.063v0.006c0.141,0.006,0.266-0.057,0.394-0.038c0.097,0.011,0.195,0.021,0.292,0.032\r\n\t\t\t\tc0.105-0.019,0.2-0.058,0.324-0.07c0.002-0.004,0.004-0.008,0.006-0.013c-0.124-0.092-0.202-0.151-0.432-0.146\r\n\t\t\t\tc-0.006-0.006-0.013-0.013-0.019-0.019c0.013-0.028,0.025-0.055,0.038-0.083c-0.079-0.081-0.36-0.089-0.483-0.14\r\n\t\t\t\tc-0.04-0.044-0.08-0.089-0.121-0.133c-0.131-0.09-0.318-0.074-0.477-0.146c-0.064-0.053-0.127-0.106-0.191-0.159H7.022\r\n\t\t\t\tc-0.163-0.037-0.338-0.074-0.559-0.07c-0.083,0.008-0.165,0.017-0.248,0.025c-0.059,0.014-0.109,0.043-0.163,0.068\r\n\t\t\t\tC6.038,32.677,6,32.344,6,32c0-0.404,0.042-0.798,0.06-1.198c0.069,0.073,0.127,0.176,0.179,0.209\r\n\t\t\t\tc0.057,0.035,0.12,0.025,0.133,0.102c-0.021,0.115-0.042,0.229-0.064,0.343c0.008,0.002,0.017,0.004,0.025,0.006\r\n\t\t\t\tc0.036,0.022,0.05-0.017,0.089-0.032c0.002,0.019,0.004,0.038,0.006,0.057c-0.025,0.035-0.04,0.043-0.083,0.063\r\n\t\t\t\tc0.038,0.07,0.076,0.14,0.115,0.21H6.52c0.006,0.032,0.013,0.064,0.019,0.095c0.019,0.013,0.038,0.025,0.057,0.038\r\n\t\t\t\tc0.051,0.105-0.017,0.164,0.133,0.172c0.035,0.058,0.068,0.193,0.108,0.242c0.047-0.022,0.112-0.023,0.178-0.032\r\n\t\t\t\tc-0.004,0.021-0.008,0.042-0.013,0.064h0.013c0.048-0.142,0.166-0.403,0.108-0.61c-0.023-0.081-0.082-0.166-0.108-0.261\r\n\t\t\t\tc-0.013-0.083-0.025-0.165-0.038-0.248c-0.062-0.179-0.316-0.446-0.267-0.699c0.032-0.1,0.064-0.199,0.095-0.299\r\n\t\t\t\tc0.053-0.085,0.131-0.155,0.165-0.26c0.15-0.028,0.305-0.087,0.369-0.197c0.047-0.082,0.048-0.15,0.127-0.197\r\n\t\t\t\tc0.074-0.044,0.216-0.039,0.28-0.076c0.064-0.08,0.127-0.161,0.191-0.242c0.07-0.011,0.14-0.021,0.21-0.032\r\n\t\t\t\tc0.025-0.021,0.051-0.042,0.076-0.063c0.002-0.004,0.004-0.009,0.006-0.013c-0.027-0.012-0.033-0.01-0.044-0.038\r\n\t\t\t\tc-0.025,0.019-0.067,0.035-0.095,0.051c-0.015-0.009-0.03-0.017-0.044-0.026c-0.019-0.013-0.023-0.028-0.032-0.051\r\n\t\t\t\tc0.025,0.019,0.035,0.04,0.07,0.051c0.054-0.032,0.047-0.06,0.089-0.083v-0.013c-0.03-0.031-0.081-0.057-0.14-0.057\r\n\t\t\t\tc-0.006-0.011-0.013-0.021-0.019-0.032c0.044,0.015,0.089,0.03,0.133,0.045c-0.006-0.011-0.013-0.021-0.019-0.032v-0.006\r\n\t\t\t\tc0.051,0.021,0.064,0.054,0.14,0.064c0.025-0.03,0.051-0.059,0.076-0.089c0.009-0.016,0.008-0.002,0.038,0\r\n\t\t\t\tc0.006-0.011,0.013-0.021,0.019-0.032c-0.001-0.047-0.012-0.063-0.038-0.083c-0.011-0.006-0.002-0.006-0.013,0\r\n\t\t\t\tc-0.028,0.017-0.029,0.052-0.044,0.081c0.002,0.005-0.004,0.01-0.001,0.014v-0.013c0-0.001,0-0.001,0.001-0.002\r\n\t\t\t\tc-0.01-0.027-0.001-0.054,0.005-0.087c-0.004-0.004-0.009-0.008-0.013-0.013c-0.06,0.01-0.113,0.02-0.191,0.019\r\n\t\t\t\tc0.008-0.038-0.02-0.071,0-0.108v-0.013c0.011,0.017-0.003,0.036,0.006,0.064c0.009,0.011,0.017,0.021,0.026,0.032\r\n\t\t\t\tc0.021-0.006,0.042-0.013,0.064-0.019c0-0.018-0.002-0.019-0.013-0.038c0.021,0.011,0.042,0.021,0.064,0.032\r\n\t\t\t\tc0.008-0.004,0.017-0.009,0.025-0.013c0.002-0.004,0.004-0.008,0.006-0.013c-0.011-0.015-0.021-0.029-0.032-0.044\r\n\t\t\t\tc0.034,0.019,0.057,0.04,0.089,0.025c0.004,0.015,0.008,0.03,0.013,0.045h0.019c-0.012-0.067-0.042-0.087-0.07-0.134h0.038\r\n\t\t\t\tC8.338,28.6,8.338,28.606,8.325,28.59c0.004-0.008,0.008-0.015,0.011-0.023c-0.024-0.086-0.083-0.085-0.17-0.066\r\n\t\t\t\tc-0.004-0.07-0.06-0.101-0.121-0.114c-0.002-0.004-0.004-0.008-0.006-0.013c0.011-0.006,0.021-0.013,0.032-0.019\r\n\t\t\t\tc0.043,0.021,0.076,0.045,0.095,0.089c0.03,0.02,0.023,0.021,0.07,0.019c-0.002-0.021-0.004-0.042-0.006-0.064\r\n\t\t\t\tc-0.02-0.013-0.034-0.028-0.052-0.038H8.172c-0.021-0.017-0.042-0.034-0.064-0.051c0.018,0.026,0.045,0.037,0.069,0.051h0.02\r\n\t\t\t\tc-0.002-0.013-0.004-0.025-0.006-0.038c0.017,0.006,0.034,0.013,0.051,0.019h0.006c-0.002-0.043-0.004-0.052-0.038-0.064\r\n\t\t\t\tc0.009-0.004,0.017-0.009,0.026-0.013c-0.082-0.042-0.117-0.054-0.159-0.133c0.034,0.03,0.068,0.059,0.102,0.089\r\n\t\t\t\tc0.006,0.006,0.013,0.013,0.019,0.019c0.036-0.023,0.042-0.039,0.057-0.083c-0.034-0.047-0.238-0.13-0.311-0.159\r\n\t\t\t\tc-0.002-0.007,0.001-0.013,0-0.019c0.068-0.003,0.075,0.022,0.127,0.045c-0.002-0.013-0.004-0.025-0.006-0.038\r\n\t\t\t\tc0.042,0.042,0.099,0.078,0.153,0.108c-0.016-0.09-0.078-0.09-0.095-0.165h0.006c0.012,0.032,0.027,0.045,0.057,0.057\r\n\t\t\t\tc0.004,0.004,0.008,0.008,0.013,0.013h0.006c-0.015-0.036-0.03-0.072-0.044-0.108c-0.02-0.107,0.072-0.052-0.006-0.197\r\n\t\t\t\tc0.017,0.002,0.034,0.004,0.051,0.006c0.002-0.019,0.004-0.038,0.006-0.057c0.019,0.012,0.011,0.001,0.019,0.026h0.006\r\n\t\t\t\tc0.011-0.014,0.011-0.017,0.013-0.045c0.002,0.011,0.004,0.021,0.006,0.032c0.029-0.02,0.034-0.024,0.032-0.045\r\n\t\t\t\tc0.015-0.011,0.03-0.021,0.044-0.032c-0.006,0.017-0.013,0.034-0.019,0.051c0.013,0.006,0.025,0.013,0.038,0.019\r\n\t\t\t\tc-0.025,0.006-0.051,0.013-0.076,0.019c-0.011,0.017-0.021,0.034-0.032,0.051v0.006h0.051c-0.013,0.035-0.02,0.044-0.07,0.044\r\n\t\t\t\tc-0.004,0.006-0.009,0.013-0.013,0.019c0.016,0.017,0.027,0.021,0.057,0.025c0.002,0.004,0.004,0.008,0.006,0.013v0.026\r\n\t\t\t\tc-0.013-0.007-0.025-0.013-0.038-0.019c-0.004,0.002-0.009,0.004-0.013,0.006c-0.004,0.013-0.009,0.025-0.013,0.038v0.006\r\n\t\t\t\tc0.047-0.025,0.036-0.01,0.089,0.013c0.004,0.006,0.009,0.013,0.013,0.019c-0.03,0.011-0.059,0.021-0.089,0.032\r\n\t\t\t\tc-0.002,0.004-0.004,0.008-0.006,0.013c0.011,0.015,0.021,0.03,0.032,0.044c0.017,0.011,0.034,0.021,0.051,0.032\r\n\t\t\t\tc0.021-0.013,0.042-0.025,0.064-0.038c-0.001,0.055-0.005,0.033-0.025,0.07c0.015,0.008,0.03,0.017,0.044,0.025\r\n\t\t\t\tc-0.006,0.013-0.013,0.026-0.019,0.038v0.006h0.006c0.026-0.01,0.031-0.014,0.051,0c-0.039,0.071-0.09,0.135-0.114,0.229\r\n\t\t\t\tc0.004,0.013,0.008,0.025,0.013,0.038c0.008-0.002,0.017-0.004,0.025-0.006c0.017-0.038,0.034-0.076,0.051-0.114\r\n\t\t\t\tc0.02,0,0.017,0.006,0.032-0.006c0.023-0.055,0.047-0.11,0.07-0.165c0.033-0.056,0.086-0.075,0.102-0.14\r\n\t\t\t\tc-0.004-0.04-0.008-0.081-0.013-0.121c-0.078-0.033-0.136-0.206-0.152-0.292c0.024-0.023,0.034-0.046,0.064-0.064\r\n\t\t\t\tc0.002,0.002,0.004,0.004,0.006,0.006c-0.017,0.031-0.037,0.044-0.057,0.07c0.054,0.073,0.068,0.144,0.184,0.14\r\n\t\t\t\tc0.005,0.037-0.005,0.046-0.013,0.083v0.006c0.004,0.002,0.008,0.004,0.013,0.006c0.055-0.041,0.152-0.125,0.152-0.216\r\n\t\t\t\tc0.013,0.004,0.026,0.008,0.038,0.013c0.032-0.093,0.078-0.196,0.095-0.305c-0.053-0.007-0.063-0.019-0.089-0.051\r\n\t\t\t\tc-0.002-0.006-0.004-0.013-0.006-0.019c0.029-0.023,0.034-0.034,0.064-0.026c0.019-0.053,0.038-0.106,0.057-0.159\r\n\t\t\t\tc-0.015,0.047-0.03,0.093-0.045,0.14c0.19-0.133,0.413-0.223,0.744-0.222c0.008-0.043,0.017-0.085,0.025-0.127\r\n\t\t\t\tc0.002-0.002,0.036,0,0.064-0.013c0.003,0.022-0.008,0.053-0.006,0.095c0.004,0.002,0.008,0.004,0.013,0.007\r\n\t\t\t\tc0.058-0.002,0.108-0.049,0.121-0.089h0.006c0.013,0.016,0.014,0.037,0.013,0.07c0.072-0.017,0.144-0.034,0.216-0.051\r\n\t\t\t\tc0-0.035-0.012-0.048-0.019-0.067v0.016c-0.03,0.013-0.059,0.025-0.089,0.038c-0.017-0.006-0.034-0.013-0.051-0.019\r\n\t\t\t\tc-0.017-0.095-0.061-0.182-0.165-0.191c0.011-0.069,0.067-0.083,0.127-0.102c0.002-0.006,0.004-0.013,0.006-0.019\r\n\t\t\t\tc-0.052-0.015-0.053-0.008-0.083-0.057c0.045-0.073,0.096-0.241,0.184-0.267v-0.07c0.028-0.011,0.055-0.021,0.083-0.032\r\n\t\t\t\tc-0.002,0.011-0.004,0.021-0.006,0.032c0.013,0.006,0.025,0.013,0.038,0.019h0.006c0.028-0.036,0.033-0.028,0.025-0.076\r\n\t\t\t\tc0.011-0.009,0.021-0.017,0.032-0.025c-0.004,0.015-0.008,0.03-0.013,0.044c0.017,0.004,0.034,0.008,0.051,0.013\r\n\t\t\t\tc0.008-0.021,0.017-0.042,0.025-0.064c0.013,0.008,0.025,0.017,0.038,0.025c0.059-0.044,0.113-0.149,0.14-0.222h0.006\r\n\t\t\t\tc0.004,0.002,0.008,0.004,0.013,0.006c-0.008,0.021-0.017,0.042-0.025,0.064c0.002,0.004,0.004,0.008,0.006,0.013\r\n\t\t\t\tc0.027,0.008,0.055,0.017,0.083,0.025c-0.004-0.019-0.008-0.038-0.013-0.057c0.046,0.008,0.075-0.021,0.121-0.032\r\n\t\t\t\tc0.006,0.019,0.013,0.038,0.019,0.057c0.038-0.028,0.057-0.071,0.095-0.095c0.015,0.011,0.03,0.021,0.044,0.032\r\n\t\t\t\tc0.018-0.015,0.017-0.011,0.019-0.045c0.069,0.012,0.096-0.012,0.153-0.038c0.011-0.019,0.01-0.016,0.013-0.032h-0.051\r\n\t\t\t\tc0.011-0.015,0.021-0.03,0.032-0.045c-0.011-0.023-0.021-0.047-0.032-0.07c0.011,0.008,0.021,0.017,0.032,0.025\r\n\t\t\t\tc0.041-0.039,0.135-0.02,0.178,0.013c0.034-0.019,0.068-0.038,0.102-0.057c-0.006-0.013-0.013-0.026-0.019-0.038\r\n\t\t\t\tc0.023,0.013,0.047,0.025,0.07,0.038c0.139-0.017,0.194-0.143,0.343-0.146c0.013-0.023,0.025-0.047,0.038-0.07\r\n\t\t\t\tc-0.006-0.019-0.013-0.038-0.019-0.057c0.024,0.019,0.04,0.035,0.044,0.076c0.019-0.011,0.038-0.021,0.057-0.032h0.006\r\n\t\t\t\tc-0.025,0.065-0.104,0.124-0.172,0.146c-0.008,0.017-0.011,0.022-0.013,0.051c0.108-0.056,0.302-0.039,0.432-0.025\r\n\t\t\t\tc0.004,0.006,0.008,0.013,0.013,0.019c-0.092-0.002-0.148,0.034-0.229,0.051v0.044c-0.023-0.018-0.019-0.021-0.044-0.025\r\n\t\t\t\tc0.002-0.023,0.004-0.047,0.006-0.07c-0.083-0.003-0.358,0.164-0.413,0.222h-0.013c0.011,0.006,0.021,0.013,0.032,0.019v0.006\r\n\t\t\t\tc-0.027,0.003-0.018,0.002-0.038-0.013c-0.04,0.023-0.08,0.047-0.121,0.07c-0.002,0.004-0.004,0.008-0.006,0.013\r\n\t\t\t\tc0.006,0.004,0.013,0.008,0.019,0.013c0.03-0.019,0.059-0.038,0.089-0.057c-0.014,0.038-0.023,0.015-0.044,0.038\r\n\t\t\t\tc-0.076,0.082-0.026,0.172-0.006,0.26c0.015-0.005,0.009-0.003,0.025-0.019c0.019,0.032,0.038,0.064,0.057,0.095\r\n\t\t\t\tc0.048-0.01,0.046-0.012,0.076,0.019c0.009-0.023,0.017-0.047,0.026-0.07c0.035-0.016,0.053-0.017,0.108-0.013v-0.045\r\n\t\t\t\tc0.006,0.004,0.013,0.009,0.019,0.013c0.062-0.036,0.089-0.171,0.203-0.172c0.014-0.051-0.01-0.053-0.013-0.108h0.038\r\n\t\t\t\tc0.006,0.011,0.013,0.021,0.019,0.032h0.006c0.023-0.015,0.034-0.023,0.045-0.051c0.004-0.002,0.008-0.004,0.013-0.006\r\n\t\t\t\tc-0.002,0.015-0.004,0.03-0.006,0.045c0.036,0.004,0.072,0.008,0.108,0.013c0.016-0.034,0.031-0.025,0.038-0.07\r\n\t\t\t\tc0.011,0.006,0.021,0.013,0.032,0.019c0.004-0.015,0.008-0.03,0.013-0.044c0.006-0.002,0.013-0.004,0.019-0.006\r\n\t\t\t\tc0.032,0.009,0.026,0.014,0.045,0.032c0.124-0.045,0.262-0.143,0.407-0.146c-0.002-0.009-0.004-0.017-0.006-0.025\r\n\t\t\t\tc0.032,0.002,0.064,0.004,0.095,0.006c-0.004-0.006-0.008-0.013-0.013-0.019c0.006-0.004,0.013-0.009,0.019-0.013\r\n\t\t\t\tc0.024-0.013,0.02-0.005,0.044,0.013c0.021-0.009,0.042-0.017,0.063-0.025c-0.027-0.034-0.068-0.036-0.133-0.032\r\n\t\t\t\tc-0.004-0.006-0.008-0.013-0.013-0.019c0.013-0.007,0.025-0.013,0.038-0.019c0.006-0.008,0.013-0.017,0.019-0.025\r\n\t\t\t\tc-0.021-0.021-0.042-0.042-0.063-0.064c-0.075-0.027-0.112,0.044-0.133-0.064c-0.066,0.01-0.086,0.052-0.133,0.07\r\n\t\t\t\tc-0.032,0.012-0.073,0.004-0.095,0.013c0.006-0.013,0.013-0.025,0.019-0.038h-0.013c-0.002-0.004-0.004-0.008-0.006-0.013\r\n\t\t\t\tc-0.067-0.031-0.119,0.027-0.165,0.006c-0.019-0.013-0.038-0.025-0.057-0.038c-0.028,0.002-0.055,0.004-0.083,0.006\r\n\t\t\t\tc-0.028-0.013-0.04-0.048-0.083-0.057h-0.013v-0.006c0.025-0.009,0.051-0.017,0.076-0.025c0.004-0.002,0.009-0.004,0.013-0.006\r\n\t\t\t\tc-0.103-0.049-0.301-0.028-0.267-0.191c-0.021-0.028-0.018-0.025-0.044-0.019c-0.013-0.053-0.009-0.079,0.013-0.121\r\n\t\t\t\tc-0.03-0.032-0.094-0.029-0.159-0.025c0.088-0.089,0.103-0.048,0.133-0.178c0.021-0.021,0.042-0.042,0.064-0.064\r\n\t\t\t\tc-0.015-0.011-0.03-0.021-0.044-0.032c-0.019,0.008-0.038,0.017-0.057,0.025v-0.032c-0.055,0.025-0.11,0.051-0.165,0.076\r\n\t\t\t\tc-0.065-0.089-0.112-0.14-0.254-0.152v-0.007c0.049-0.015,0.115-0.056,0.191-0.038c0.034,0.015,0.068,0.03,0.102,0.045\r\n\t\t\t\tc0.079-0.006,0.346-0.155,0.375-0.216c-0.094-0.249-0.411-0.255-0.674-0.152c-0.282,0.11-0.595,0.189-0.82,0.356\r\n\t\t\t\tc-0.184,0.136-0.321,0.345-0.502,0.489c0.154-0.325,0.477-0.718,0.775-0.896c0.079-0.047,0.223-0.03,0.299-0.083\r\n\t\t\t\tc0.108-0.076,0.07-0.268,0.267-0.337c0.117-0.041,0.317-0.025,0.439-0.006c0.178,0.027,0.354-0.025,0.515-0.006\r\n\t\t\t\tc0.163,0.008,0.326,0.017,0.489,0.025c0.219-0.035,0.465-0.038,0.61-0.146c0.083-0.091,0.165-0.182,0.248-0.273\r\n\t\t\t\tc0.155-0.015,0.309-0.03,0.464-0.044c0.1-0.032,0.288-0.2,0.375-0.267v-0.013c-0.042-0.055-0.085-0.11-0.127-0.165\r\n\t\t\t\tc0.034-0.061,0.064-0.142,0.095-0.21c-0.007-0.1-0.158-0.181-0.248-0.197c-0.041-0.008-0.112,0.043-0.153,0.064\r\n\t\t\t\tc-0.013-0.019-0.025-0.038-0.038-0.057c0.008-0.044,0.031-0.064,0.051-0.095c-0.257-0.247-0.418,0.027-0.61,0.133\r\n\t\t\t\tc-0.089,0.05-0.218,0.06-0.305,0.095c0.012-0.069,0.034-0.173,0.083-0.21c0.053-0.004,0.106-0.008,0.159-0.013\r\n\t\t\t\tc0.109-0.031,0.157-0.136,0.28-0.165c0.122-0.029,0.24-0.033,0.292-0.127c-0.11-0.028-0.22-0.055-0.33-0.083\r\n\t\t\t\tc-0.106-0.044-0.191-0.133-0.324-0.153c-0.101-0.015-0.161,0.043-0.261,0.038c0.021-0.051,0.042-0.102,0.064-0.152\r\n\t\t\t\tc-0.007-0.092-0.237-0.273-0.311-0.299h-0.095c-0.062-0.024-0.129-0.187-0.165-0.241c0.004-0.002,0.008-0.004,0.013-0.006\r\n\t\t\t\tc0.055-0.031,0.185,0.022,0.261,0c0.012-0.024,0.014-0.061,0.013-0.102c-0.084-0.062-0.178-0.095-0.242-0.178\r\n\t\t\t\tc0.027-0.025,0.057-0.044,0.102-0.051c-0.036-0.207-0.226-0.07-0.261-0.356c-0.028,0.002-0.055,0.004-0.083,0.006\r\n\t\t\t\tc-0.009-0.07,0.017-0.079,0.032-0.134c-0.122-0.141-0.365-0.561-0.508-0.629c-0.004-0.004-0.008-0.008-0.013-0.013\r\n\t\t\t\tc-0.021,0.042-0.042,0.085-0.064,0.127c-0.144,0.096-0.271,0.026-0.114,0.235c-0.096,0.122-0.182,0.158-0.184,0.388h-0.006\r\n\t\t\t\tc-0.051-0.051-0.057-0.152-0.153-0.159c-0.034,0.059-0.068,0.119-0.102,0.178c-0.077,0.058-0.266,0.055-0.349,0.095\r\n\t\t\t\tc-0.013-0.019-0.026-0.038-0.038-0.057c0.014-0.022,0.019-0.03,0.019-0.07c-0.149-0.221-0.275-0.116-0.483-0.044h-0.006\r\n\t\t\t\tc-0.044-0.056-0.038-0.084-0.026-0.178c0.036,0.002,0.072,0.004,0.108,0.006c0.112-0.165-0.211-0.619,0.013-0.724\r\n\t\t\t\tc0.011-0.023,0.014-0.056,0.013-0.095c-0.011-0.017-0.021-0.034-0.032-0.051c-0.039-0.011-0.088,0.06-0.178,0.038\r\n\t\t\t\tc-0.162-0.039-0.31-0.129-0.458-0.159c-0.052-0.065-0.056-0.061-0.013-0.14c-0.022-0.016-0.052-0.042-0.077-0.062\r\n\t\t\t\tc0.109-0.188,0.225-0.372,0.338-0.557c0.01,0.006,0.021,0.007,0.031,0.015c0.006,0.003,0.064-0.003,0.102,0.013\r\n\t\t\t\tc0.028,0.017,0.055,0.034,0.083,0.051c0.049,0.006,0.097,0.013,0.146,0.019c0.04,0.047,0.081,0.093,0.121,0.14\r\n\t\t\t\tc0.094,0.057,0.203,0.032,0.331,0.064c0.203,0.072,0.407,0.144,0.61,0.216c-0.067-0.217-0.212-0.375-0.381-0.489\r\n\t\t\t\tc-0.155-0.104-0.443-0.179-0.47-0.4c0.186,0,0.218,0.082,0.343,0.127c-0.009-0.049-0.017-0.097-0.026-0.146\r\n\t\t\t\tc0.188,0.145,0.277,0.375,0.604,0.349c0.069,0.109,0.145,0.196,0.273,0.248c-0.038-0.078-0.076-0.157-0.114-0.235\r\n\t\t\t\tc0.04,0.008,0.08,0.017,0.121,0.025h0.006c-0.006-0.184-0.176-0.25-0.153-0.432c0.084,0.057,0.177,0.169,0.216,0.267\r\n\t\t\t\tc0.008,0.006,0.017,0.013,0.025,0.019c0.037-0.334-0.178-0.289-0.292-0.477c0.006-0.013,0.013-0.026,0.019-0.038\r\n\t\t\t\tc0.025-0.006,0.051-0.013,0.076-0.019h0.013c-0.061-0.03-0.123-0.059-0.184-0.089c-0.069-0.041-0.11-0.13-0.191-0.153\r\n\t\t\t\tc-0.019,0.015-0.038,0.03-0.057,0.044c-0.008,0.008-0.017,0.017-0.025,0.026c-0.071-0.122-0.147-0.253-0.21-0.388\r\n\t\t\t\tc-0.053-0.009-0.106-0.017-0.159-0.025c-0.006-0.014-0.012-0.027-0.019-0.04c0.024-0.035,0.051-0.067,0.076-0.101\r\n\t\t\t\tc0.001,0.003,0.005,0.005,0.006,0.008c0.04-0.004,0.081-0.009,0.121-0.013c0.006-0.009,0.013-0.017,0.019-0.026\r\n\t\t\t\tc-0.022-0.025-0.045-0.05-0.067-0.075c0.044-0.062,0.092-0.121,0.137-0.183c0.134,0.06,0.208,0.164,0.343,0.226\r\n\t\t\t\tc0.072,0.033,0.155,0.015,0.21,0.051c-0.013,0.036-0.025,0.072-0.038,0.108c0.005,0.082,0.057,0.11,0.089,0.165\r\n\t\t\t\tc0.042-0.019,0.085-0.038,0.127-0.057c0.033,0.038,0.022,0.078,0.051,0.127c0.022,0.036,0.201,0.12,0.248,0.102h0.013\r\n\t\t\t\tc-0.015-0.064-0.03-0.127-0.045-0.191c0.011-0.076,0.021-0.153,0.032-0.229c0.004-0.002,0.008-0.004,0.013-0.006\r\n\t\t\t\tc0.036,0.05,0.089,0.124,0.159,0.14c0.035-0.09,0.113-0.136,0.222-0.152c-0.011-0.088-0.097-0.155-0.165-0.184\r\n\t\t\t\tc-0.002-0.004-0.004-0.009-0.006-0.013c0.15-0.095,0.182,0.061,0.324,0c0.025-0.019,0.058-0.097,0.089-0.127\r\n\t\t\t\tc0.002-0.006,0.004-0.013,0.006-0.019c-0.087-0.061-0.174-0.123-0.261-0.184c-0.092,0.084-0.164,0.079-0.299,0.051\r\n\t\t\t\tc0.013-0.043,0.025-0.085,0.038-0.127c-0.147-0.013-0.29,0.025-0.47,0.026v-0.095c0.061-0.015,0.123-0.03,0.184-0.044h0.013\r\n\t\t\t\tc-0.051-0.098-0.165-0.231-0.267-0.273c-0.037-0.015-0.062-0.003-0.087,0.008c0.618-0.794,1.268-1.56,1.972-2.276\r\n\t\t\t\tc0.027,0.005,0.054,0.009,0.08,0.014c0.042,0.011,0.084,0.021,0.127,0.032c0.022-0.003,0.044-0.006,0.065-0.009\r\n\t\t\t\tc0.003,0,0.005,0,0.008,0c0.003,0.007,0.006,0.014,0.01,0.022c0.02,0.004,0.051,0.001,0.079-0.002\r\n\t\t\t\tc0.003,0.003,0.005,0.006,0.008,0.008c-0.045,0.019-0.061,0.016-0.102,0.01c-0.025,0.007-0.079,0.031-0.085,0.046\r\n\t\t\t\tc-0.01,0.04,0.124,0.116,0.183,0.098c0.044-0.017,0.087-0.034,0.131-0.051c0.058-0.019,0.1-0.003,0.157-0.022\r\n\t\t\t\tc0.096-0.031,0.196-0.098,0.229-0.154c0.053-0.088-0.124-0.137-0.191-0.155c-0.063-0.017-0.099-0.061-0.143-0.099\r\n\t\t\t\tc-0.051-0.044-0.123-0.071-0.209-0.083c0.015-0.015,0.032-0.028,0.047-0.043c0.017,0.003,0.035,0.009,0.05,0.01\r\n\t\t\t\tc0.011-0.005,0.009-0.006,0.015-0.011c0.018-0.001,0.036-0.001,0.055-0.002c0.098,0.013,0.166,0.087,0.242,0.125\r\n\t\t\t\tc0.058,0.029,0.126,0.035,0.206,0.042c0.022,0.002,0.033,0.013,0.057,0.012c0.021-0.022,0.037-0.048,0.097-0.049\r\n\t\t\t\tc0.002,0.002,0.005,0.004,0.007,0.005c0.001,0.001,0.003,0.003,0.004,0.004c-0.009,0.006-0.019,0.012-0.028,0.019\r\n\t\t\t\tc0.003,0.004,0.006,0.009,0.01,0.013c0.082-0.002,0.101-0.036,0.149-0.053c0.04-0.014,0.063,0.003,0.095-0.008\r\n\t\t\t\tc-0.012,0.025-0.046,0.04-0.061,0.063c-0.015,0.023-0.012,0.045-0.025,0.07c-0.007,0.014-0.031,0.02-0.038,0.036\r\n\t\t\t\tc0.01,0.019,0.049,0.027,0.043,0.05c-0.003,0.006-0.051,0.024-0.06,0.026c0,0.019-0.02,0.038-0.005,0.057\r\n\t\t\t\tc0.01,0.008,0.024,0.008,0.042,0.007c0.003,0.002,0.006,0.003,0.009,0.005c-0.017,0.009-0.038,0.017-0.052,0.026\r\n\t\t\t\tc-0.001,0.018,0.024,0.052,0.013,0.071c-0.012,0.019-0.048,0.03-0.06,0.051c0,0.001,0,0.001,0,0.002\r\n\t\t\t\tc0.084-0.011,0.07-0.036,0.138-0.055c0.04,0.003,0.027,0.022,0.052,0.038c0.012,0.003,0.025,0.006,0.037,0.01\r\n\t\t\t\tc0.001,0.001,0.002,0.002,0.004,0.003c0,0.002,0,0.005,0,0.007c-0.016,0.04-0.137,0.028-0.188,0.046\r\n\t\t\t\tc-0.007,0.004-0.065,0.071-0.067,0.078c0.003,0.008,0.005,0.016,0.008,0.024c-0.011,0.012-0.022,0.025-0.032,0.038\r\n\t\t\t\tc-0.019,0.031-0.038,0.062-0.057,0.092c0.074-0.015,0.084-0.049,0.159-0.064c0.061,0.021,0.023,0.086-0.02,0.107\r\n\t\t\t\tc-0.029,0.014-0.071,0.006-0.102,0.011c-0.063,0.01-0.105,0.042-0.185,0.049c-0.054,0.004-0.117-0.01-0.169,0.006\r\n\t\t\t\tc-0.118,0.035-0.158,0.131-0.289,0.172c0.034,0.002,0.095,0.005,0.125,0.003c0.039-0.009,0.078-0.018,0.118-0.027\r\n\t\t\t\tc0.023,0.004,0.047,0.008,0.07,0.012c0.05,0.008,0.104,0.007,0.161,0.008c0.03-0.031,0.065-0.027,0.119-0.048\r\n\t\t\t\tc0.001-0.002,0.002-0.004,0.003-0.006c0-0.015-0.011-0.025-0.03-0.026c0,0,0-0.001-0.001-0.002\r\n\t\t\t\tc0.021-0.031,0.098-0.036,0.127-0.016c0.007,0.042-0.069,0.055-0.07,0.092c-0.002,0.059,0.172,0.07,0.202,0.108\r\n\t\t\t\tc-0.014,0.005-0.016,0.007-0.013,0.017c-0.062-0.014-0.133-0.027-0.211-0.024c-0.053,0.005-0.106,0.01-0.159,0.015\r\n\t\t\t\tc-0.058,0-0.109-0.014-0.16-0.022c-0.067-0.011-0.133-0.021-0.2-0.032c-0.003,0.001-0.007,0.001-0.01,0.002\r\n\t\t\t\tc-0.003,0.006-0.007,0.012-0.01,0.018c0,0.026,0.154,0.053,0.194,0.053c0.012,0.005,0.034,0.016,0.012,0.028\r\n\t\t\t\tc-0.041,0.017-0.145-0.037-0.22-0.018c-0.111,0.028-0.099,0.092-0.137,0.146c-0.027,0.036-0.054,0.071-0.081,0.107\r\n\t\t\t\tc-0.003,0.008,0.004,0.014,0.009,0.02c0.107,0.021,0.169-0.081,0.21-0.108c0.029-0.009,0.058-0.018,0.086-0.026\r\n\t\t\t\tc0.066-0.032,0.111-0.067,0.214-0.086c-0.003,0.016-0.019,0.023-0.018,0.04c0.034,0.031,0.073,0.012,0.142,0.008\r\n\t\t\t\tc0.019,0,0.038-0.001,0.058-0.001c0.029-0.02,0.092-0.051,0.055-0.082c0,0,0-0.001-0.001-0.002\r\n\t\t\t\tc0.073-0.008,0.116-0.013,0.164,0.002c0.001,0.002,0.001,0.004,0.002,0.006c-0.029,0.03-0.094,0.055-0.093,0.094\r\n\t\t\t\tc0.024,0.013,0.055,0.015,0.064,0.043c-0.107,0.003-0.221,0.01-0.318,0.003c-0.048-0.004-0.097-0.025-0.149-0.02\r\n\t\t\t\tc-0.05,0.005-0.095,0.041-0.126,0.057c-0.053,0.028-0.107,0.056-0.16,0.084c-0.031,0.011-0.061,0.023-0.092,0.034\r\n\t\t\t\tc-0.026,0.023-0.052,0.046-0.077,0.07c0.097,0.037,0.343-0.041,0.494-0.055c0.031-0.005,0.062-0.01,0.093-0.014\r\n\t\t\t\tc0.025,0.006,0.05,0.012,0.074,0.017c0.027-0.002,0.053-0.004,0.08-0.005c0.071,0.006,0.103,0.061,0.143,0.099\r\n\t\t\t\tc-0.048-0.007-0.096-0.013-0.143-0.019c-0.175-0.014-0.382-0.023-0.599,0.048c-0.044,0.013-0.088,0.026-0.132,0.039\r\n\t\t\t\tc0.033,0.026,0.093,0.01,0.126,0.031c0.015,0.022,0.03,0.043,0.045,0.065c0.009,0.006,0.187,0.026,0.212,0.028\r\n\t\t\t\tc0.027-0.007,0.031-0.019,0.051-0.03c0.071-0.01,0.102,0.049,0.058,0.079c-0.07,0.047-0.247,0.037-0.329,0.081\r\n\t\t\t\tc-0.002,0-0.003,0.001-0.005,0.001c0.03,0.018,0.163,0.033,0.21,0.036c-0.003,0.003-0.155,0.049-0.161,0.049\r\n\t\t\t\tc-0.041,0.003-0.061-0.021-0.109,0.004c-0.042,0.022-0.094,0.081-0.039,0.115c0.01,0.006,0.061,0.009,0.061,0.018\r\n\t\t\t\tc0.001,0.014-0.046,0.027-0.052,0.042c-0.006,0.028,0.035,0.04,0.072,0.026c0.049-0.018,0.116-0.057,0.149-0.083\r\n\t\t\t\tc0.068-0.052,0.139-0.105,0.219-0.153c0.026-0.012,0.052-0.023,0.078-0.035c0.04-0.037,0.08-0.074,0.119-0.111\r\n\t\t\t\tc0.043-0.03,0.109-0.051,0.168-0.075c0.037-0.015,0.07-0.028,0.113-0.042c0.041-0.009,0.082-0.018,0.123-0.027\r\n\t\t\t\tc0.021-0.007,0.051-0.021,0.08-0.02c0.023,0.007,0.047,0.013,0.07,0.02c-0.022,0.019-0.042,0.053-0.07,0.067\r\n\t\t\t\tc-0.075,0.036-0.22,0.019-0.315,0.037c-0.025,0.043-0.11,0.069-0.158,0.098c-0.009,0.008-0.002,0.019-0.007,0.028\r\n\t\t\t\tc-0.013,0.026-0.056,0.051-0.112,0.061c0.003,0.009,0.006,0.018,0.009,0.026c-0.158,0.057-0.262,0.142-0.375,0.215\r\n\t\t\t\tc-0.03,0.019-0.109,0.042-0.12,0.068c-0.012,0.015,0.009,0.03,0.021,0.039c0.065,0.049,0.103,0.014,0.195-0.009\r\n\t\t\t\tc-0.019,0.04-0.065,0.091-0.144,0.109c-0.001,0.005-0.002,0.009-0.003,0.014c0.052,0.027,0.141,0.031,0.175-0.022\r\n\t\t\t\tc0.113-0.018,0.086,0.118,0.06,0.151c0.003,0.005,0.006,0.006,0.012,0.013c0.055-0.019,0.148-0.049,0.186-0.075\r\n\t\t\t\tc0.004-0.001,0.008-0.002,0.012-0.002c0.002,0.001,0.004,0.001,0.006,0.002c0.001,0.002,0.001,0.004,0.002,0.006\r\n\t\t\t\tc-0.05,0.055-0.176,0.082-0.215,0.141c0.012,0.026,0.047,0.037,0.078,0.043c0.037-0.003,0.063-0.022,0.086-0.035\r\n\t\t\t\tc0.013,0.011,0.023,0.019,0.028,0.038l-0.049,0.069c-0.008,0.002-0.017,0.003-0.025,0.005c0.026,0.048,0.092,0.004,0.15,0.016\r\n\t\t\t\tc0.032,0.007,0.037,0.052,0.057,0.069c-0.179,0.032-0.096,0.172-0.138,0.254c-0.009,0.019-0.043,0.094-0.017,0.116\r\n\t\t\t\tc0.006,0.006,0.01,0.008,0.021,0.009c0.036,0,0.069-0.044,0.086-0.058c0.047-0.038,0.105-0.089,0.124-0.137\r\n\t\t\t\tc-0.001-0.015-0.003-0.029-0.004-0.044c0.001-0.019,0.025-0.055,0.047-0.067c0.006-0.002,0.011-0.003,0.017-0.005\r\n\t\t\t\tc0.034,0.014,0.057,0.047,0.075,0.077c0.002,0,0.004,0,0.006,0.001c0.011-0.016,0.023-0.032,0.034-0.048\r\n\t\t\t\tc-0.003-0.046-0.006-0.093-0.009-0.14c0.001-0.041,0.018-0.075,0.027-0.11c0.002-0.001,0.003-0.002,0.004-0.003\r\n\t\t\t\tc0.023,0.013,0.046,0.027,0.069,0.04c0.012,0.015-0.004,0.03-0.005,0.042c-0.002,0.033,0.023,0.085,0.059,0.092\r\n\t\t\t\tc0.037,0.007,0.092-0.018,0.131-0.027c0.005,0.037,0.052,0.138,0.083,0.157c0.029,0.009,0.057,0.019,0.086,0.029\r\n\t\t\t\tc0.033,0.016,0.053,0.039,0.077,0.065c0.001,0.003,0.002,0.005,0.003,0.008c-0.08,0.005-0.209-0.043-0.25-0.08\r\n\t\t\t\tc-0.027-0.024-0.028-0.082-0.07-0.091c-0.061-0.014-0.142,0.044-0.163,0.066c-0.002,0-0.003,0.001-0.005,0.001\r\n\t\t\t\tc0.02,0.01,0.078,0.031,0.064,0.059c-0.007,0.019-0.053,0.031-0.075,0.044c-0.062,0.036-0.11,0.071-0.19,0.104\r\n\t\t\t\tc-0.027,0.011-0.089,0.021-0.104,0.038c0.022,0.035,0.111,0.043,0.185,0.018c0.087-0.037,0.175-0.073,0.262-0.11\r\n\t\t\t\tc0.013-0.012,0.026-0.024,0.038-0.036c0.017,0.036,0.059,0.046,0.081,0.071c-0.024,0.009-0.063,0.011-0.098,0.022\r\n\t\t\t\tc-0.09,0.027-0.188,0.048-0.269,0.081c-0.035,0.015-0.092,0.041-0.134,0.034c0.005,0.043,0.049,0.052,0.057,0.092\r\n\t\t\t\tc0.009-0.001,0.019-0.001,0.028-0.002c0,0.002,0.001,0.003,0.001,0.005c-0.015,0.021-0.059,0.025-0.1,0.034\r\n\t\t\t\tc-0.001,0.003-0.002,0.006-0.002,0.009c0.071,0.035,0.051,0.061,0.071,0.126c0.078,0.018,0.126-0.035,0.181-0.058\r\n\t\t\t\tc0.036-0.015,0.083-0.023,0.132-0.032c-0.069,0.057-0.138,0.115-0.207,0.173c0.001,0.002,0.002,0.005,0.003,0.008\r\n\t\t\t\tc0.058,0.008,0.109-0.033,0.173-0.036c0.069-0.004,0.128,0.034,0.115,0.093c-0.012,0.053-0.138,0.066-0.08,0.133\r\n\t\t\t\tc0.048,0.01,0.079-0.016,0.127-0.014c0.002,0,0.003-0.001,0.005-0.001c-0.008,0.023-0.056,0.064-0.035,0.086\r\n\t\t\t\tc0,0.001,0.001,0.002,0.001,0.003c0.108-0.031,0.124-0.099,0.202-0.141c0.009,0.002,0.017,0.004,0.026,0.007\r\n\t\t\t\tc0.001,0.027-0.032,0.057-0.047,0.081c-0.042,0.065-0.084,0.13-0.126,0.195c-0.029,0.051,0.007,0.108,0.077,0.123\r\n\t\t\t\tc0.05,0,0.1,0,0.15,0c0.05,0.005,0.1,0.01,0.15,0.014c0.012,0.017,0.027,0.044,0.031,0.062c-0.019,0.015-0.049,0.031-0.085,0.039\r\n\t\t\t\tc0.002,0.01,0.001,0.012-0.009,0.02c0.009,0.017,0.026,0.022,0.046,0.028c0.037-0.01,0.093-0.026,0.121-0.041\r\n\t\t\t\tc0.002,0.004,0.004,0.008,0.007,0.012c-0.008,0.012-0.025,0.015-0.043,0.023c-0.061,0.029-0.098,0.044-0.103,0.095\r\n\t\t\t\tc0.112-0.018,0.147-0.073,0.235-0.096c0.023,0.072-0.093,0.095-0.116,0.152c0.011,0.023,0.039,0.022,0.053,0.041\r\n\t\t\t\tc-0.039,0.015-0.064,0.034-0.097,0.049c0.041,0.037,0.102,0.063,0.19,0.023c0.008-0.005,0.016-0.011,0.024-0.016\r\n\t\t\t\tc0.023-0.009,0.031,0.008,0.05,0c0.045-0.018,0.029-0.058,0.122-0.037c0,0.002,0.001,0.003,0.002,0.005\r\n\t\t\t\tc-0.013,0.033-0.073,0.046-0.136,0.061c0.058,0.029,0.233,0.015,0.271,0.055c0.036,0.037-0.063,0.081-0.014,0.117\r\n\t\t\t\tc0.006,0.002,0.012,0.001,0.023-0.001c0.028-0.024,0.047-0.046,0.101-0.061c0.008,0.002,0.015,0.004,0.023,0.006\r\n\t\t\t\tc0.006,0.033,0.035,0.061,0.034,0.088c-0.001,0.032-0.072,0.06-0.133,0.07c0.072,0.019,0.181,0.032,0.277,0\r\n\t\t\t\tc-0.001-0.01-0.006-0.026,0.007-0.035c0.001,0,0.002,0,0.003,0c0.025-0.008,0.049-0.015,0.074-0.023\r\n\t\t\t\tc0.018-0.009,0.018-0.024,0.048-0.029c0.001,0,0.002,0,0.003,0c0.001,0,0.002,0,0.002,0c0.001,0,0.002,0,0.003-0.001\r\n\t\t\t\tc0.001,0,0.002,0,0.003,0c0.032-0.001,0.061,0.018,0.104,0.004c0.031-0.018,0.062-0.035,0.094-0.053\r\n\t\t\t\tc0.044-0.016,0.092,0.019,0.092-0.034c0.064,0.001,0.128-0.025,0.114-0.063c-0.096-0.034-0.03-0.068,0.043-0.095\r\n\t\t\t\tc0.035,0.012,0.033,0.039,0.06,0.062c0.009,0.008,0.023,0.008,0.03,0.019c-0.036,0.036-0.115,0.1-0.125,0.14\r\n\t\t\t\tc0.023-0.018,0.04-0.047,0.076-0.059c0.023-0.008,0.049-0.002,0.073-0.012c0.024-0.019,0.048-0.037,0.072-0.055\r\n\t\t\t\tc0.008,0.022,0.018,0.041,0.034,0.055c0.013,0.012,0.052,0.019,0.053,0.04c0.001,0.034-0.057,0.046-0.088,0.07\r\n\t\t\t\tc-0.018,0.014-0.016,0.041-0.034,0.057c-0.035,0.025-0.07,0.05-0.105,0.075c0,0,0,0.001,0.001,0.002\r\n\t\t\t\tc0.032-0.001,0.055-0.016,0.087-0.017c0.02,0.011,0.033,0.028,0.047,0.046c0.002,0.001,0.004,0.002,0.006,0.002\r\n\t\t\t\tc0.075-0.019,0.046-0.092,0.085-0.126c0.041-0.013,0.102-0.007,0.101,0.026c-0.001,0.043-0.072,0.076-0.03,0.132\r\n\t\t\t\tc0.056,0.007,0.091-0.071,0.108-0.096c0.011-0.016,0.04-0.031,0.063-0.042c-0.021,0.042-0.041,0.083-0.062,0.125\r\n\t\t\t\tc0.006-0.001,0.012-0.002,0.017-0.003c0.053,0.045-0.139,0.11-0.08,0.183c0.052,0.007,0.11-0.041,0.178-0.037\r\n\t\t\t\tc0.043,0.002,0.057,0.042,0.094,0.052c0.006-0.001,0.012-0.002,0.017-0.003c0.057-0.029,0.042-0.124,0.109-0.141\r\n\t\t\t\tc0.08-0.02,0.159,0.014,0.22,0.018c0.039-0.001,0.078-0.003,0.117-0.004c0.03,0.001,0.076,0.02,0.11-0.001\r\n\t\t\t\tc0.013-0.009,0.015-0.023,0.02-0.035c0.036-0.085-0.093-0.067-0.067-0.122c-0.041,0.011-0.059,0.029-0.089,0.042\r\n\t\t\t\tc-0.065,0.028-0.129-0.005-0.144-0.044c0.136-0.026,0.396-0.115,0.395-0.18c-0.021,0.001-0.042,0.001-0.063,0.002\r\n\t\t\t\tc-0.034,0.009-0.058,0.035-0.104,0.036c-0.051,0.002-0.124-0.029-0.138-0.067c0.064-0.012,0.128-0.025,0.185-0.032\r\n\t\t\t\tc-0.019-0.013-0.058-0.022-0.087-0.023c-0.003-0.002-0.006-0.003-0.01-0.005c0.031-0.01,0.075-0.019,0.101-0.029\r\n\t\t\t\tc0.034-0.059-0.048-0.07,0.054-0.117c0-0.003,0-0.005,0-0.008c-0.048-0.03-0.174,0.004-0.201-0.043\r\n\t\t\t\tc-0.008-0.014,0.003-0.029,0.009-0.038c0.034-0.053,0.14-0.038,0.185-0.014c0.017-0.003,0.026-0.005,0.033-0.011\r\n\t\t\t\tc0.019-0.014,0.036-0.1,0.012-0.124c0.044-0.024,0.037-0.052,0.056-0.086c0.01-0.01,0.02-0.02,0.03-0.031\r\n\t\t\t\tc-0.041,0.006-0.092,0.025-0.124,0.016l-0.008-0.015c0.097-0.014,0.14-0.081,0.167-0.127c-0.03-0.052-0.1-0.085-0.104-0.156\r\n\t\t\t\tc-0.112-0.018-0.212-0.043-0.286-0.1c0.086-0.011,0.213,0.059,0.274,0.031c0.002-0.001,0.005-0.002,0.007-0.003\r\n\t\t\t\tc-0.001-0.003-0.002-0.005-0.003-0.008c-0.042-0.016-0.114-0.015-0.143-0.042c-0.025-0.024-0.027-0.071-0.049-0.092\r\n\t\t\t\tc0.047-0.029,0.093-0.059,0.14-0.088c0.046-0.019,0.099-0.029,0.134-0.05c-0.008-0.009-0.016-0.018-0.025-0.027\r\n\t\t\t\tc-0.005-0.014-0.011-0.028-0.016-0.042c-0.03-0.035-0.107-0.073-0.064-0.124c0-0.001-0.001-0.002-0.001-0.003\r\n\t\t\t\tc0.036,0.017,0.147,0.055,0.204,0.044c-0.001-0.003-0.002-0.005-0.003-0.008c0.006-0.008,0.012-0.008,0.012-0.019\r\n\t\t\t\tc-0.034-0.018-0.117-0.048-0.111-0.082c0.001-0.001,0.003-0.002,0.004-0.003c0.046,0.004,0.07,0.02,0.12,0.02\r\n\t\t\t\tc0.021-0.009,0.035-0.019,0.033-0.036c-0.026-0.023-0.065-0.029-0.091-0.051c0.001-0.002,0.002-0.005,0.003-0.007\r\n\t\t\t\tc0.035-0.01,0.079,0.009,0.106-0.015c0.019-0.013,0.014-0.041,0.035-0.055c0.018-0.012,0.068-0.012,0.091-0.021\r\n\t\t\t\tc0.015-0.022,0.003-0.047-0.001-0.075c-0.068,0.036-0.136,0.006-0.192,0.002c-0.019,0-0.038,0.001-0.058,0.001\r\n\t\t\t\tc-0.021-0.005-0.042-0.024-0.057-0.036c0,0,0-0.001,0-0.002c0.047,0,0.084,0.013,0.126,0.016\r\n\t\t\t\tc0.044-0.001,0.088-0.001,0.131-0.002c0.028-0.001,0.09-0.009,0.1-0.024c0.026-0.037-0.037-0.077-0.065-0.092\r\n\t\t\t\tc-0.023-0.013-0.046-0.027-0.069-0.04c-0.012-0.013-0.024-0.025-0.036-0.038c-0.018-0.01-0.063-0.003-0.087-0.007\r\n\t\t\t\tc-0.051-0.015-0.102-0.031-0.152-0.046c0.035-0.013,0.071-0.026,0.106-0.039c0.054-0.022,0.094-0.056,0.147-0.073\r\n\t\t\t\tc0.065-0.021,0.098,0.007,0.147-0.018c-0.003-0.033-0.056-0.036-0.075-0.06c0.04-0.014,0.032-0.041,0.033-0.07\r\n\t\t\t\tc-0.008-0.018-0.024-0.007-0.038-0.018c-0.01-0.017-0.02-0.034-0.03-0.051c-0.015-0.01-0.031-0.019-0.047-0.029\r\n\t\t\t\tc-0.088-0.043-0.195,0.005-0.197-0.102c-0.016-0.007-0.033-0.014-0.049-0.021c0.207-0.079,0.173-0.008,0.319,0\r\n\t\t\t\tc0.03-0.008,0.081-0.026,0.102-0.043c0.038-0.03,0.094-0.146,0.023-0.187c-0.046-0.027-0.126-0.019-0.183-0.035l-0.005,0.001\r\n\t\t\t\tc0,0,0-0.001-0.001-0.002c0.156-0.015,0.143-0.03,0.163-0.114c0.004-0.003,0.009-0.005,0.013-0.007c0.003,0,0.005,0,0.008,0\r\n\t\t\t\tc0.029,0.023,0.044,0.049,0.091,0.053c0.011,0.002,0.008-0.002,0.02-0.004c0.001,0,0.002,0,0.003,0\r\n\t\t\t\tc-0.017-0.036-0.034-0.072-0.051-0.108c0.001-0.001,0.003-0.002,0.005-0.003c0.035,0.01,0.044,0.023,0.074,0.039\r\n\t\t\t\tc0.01,0.002,0.021,0.004,0.031,0.006c0.009,0.009,0.018,0.019,0.028,0.028c0.03,0.017,0.13,0.009,0.165-0.018\r\n\t\t\t\tc0.031-0.024,0.019-0.064,0.056-0.086c0.014-0.008,0.03-0.006,0.037,0.001c0.13-0.104-0.137-0.115-0.131-0.166\r\n\t\t\t\tc0.002-0.017,0.048-0.033,0.064-0.046c0.043-0.032,0.089-0.076,0.116-0.114c-0.009,0-0.018-0.001-0.027-0.001\r\n\t\t\t\tc-0.002-0.001-0.004-0.002-0.006-0.004c0.05-0.023,0.021-0.065,0.001-0.1c0.055,0.009,0.141,0.024,0.224-0.01\r\n\t\t\t\tc-0.032,0.049-0.038,0.104-0.065,0.156c-0.017,0.033-0.065,0.069-0.066,0.104c0.008,0.011,0.016,0.021,0.024,0.032\r\n\t\t\t\tc0.015,0.03-0.047,0.071-0.007,0.098c0.021,0.016,0.068,0.009,0.106,0.008c0.001,0,0.002,0,0.002,0\r\n\t\t\t\tc-0.004-0.037,0.007-0.078-0.028-0.11c0.083-0.005,0.124-0.07,0.134-0.107c0.002-0.001,0.003-0.002,0.004-0.003\r\n\t\t\t\tc0.022,0.02,0.027,0.067,0.068,0.07c0.003,0,0.007,0,0.01,0c0.055-0.028,0.102-0.093,0.119-0.136\r\n\t\t\t\tc-0.006-0.004-0.012-0.009-0.018-0.013c0.001,0,0.002,0,0.003,0c0.045,0.009,0.167,0.05,0.2-0.008\r\n\t\t\t\tc0.002-0.031,0.004-0.063,0.006-0.094c0.012-0.023,0.053-0.042,0.051-0.069c0.004-0.047-0.125-0.031-0.121-0.087\r\n\t\t\t\tc0.012-0.034,0.201-0.025,0.247-0.027c0.022,0.013,0.039,0.036,0.067,0.044c0.065-0.002,0.086-0.04,0.101-0.069\r\n\t\t\t\tc0.032-0.059,0.046-0.123,0.077-0.184c0.014-0.028,0.029-0.056,0.043-0.085c0.008-0.022-0.001-0.073-0.025-0.093\r\n\t\t\t\tc-0.006-0.002-0.003-0.002-0.013-0.001c0.018-0.037,0.066-0.059,0.078-0.1c-0.014-0.01-0.028-0.02-0.042-0.03\r\n\t\t\t\tc-0.026-0.028-0.037-0.094-0.024-0.122c0.013-0.028,0.059-0.047,0.07-0.077c0.014-0.038-0.033-0.077-0.004-0.117\r\n\t\t\t\tc0.02-0.027,0.112-0.04,0.135-0.086c0.002-0.016,0.004-0.032,0.005-0.048c0.016-0.031,0.132-0.113,0.06-0.153\r\n\t\t\t\tc-0.023-0.013-0.064-0.006-0.096-0.01c-0.002,0-0.003,0.001-0.005,0.001c0.016-0.009,0.034-0.011,0.039-0.024\r\n\t\t\t\tc0.017-0.065-0.146-0.086-0.173-0.118c0.009-0.012,0.018-0.025,0.027-0.037c0.001-0.001,0.003-0.002,0.004-0.003\r\n\t\t\t\tc0.031,0.059,0.15,0.093,0.239,0.092c0.045,0,0.091-0.01,0.128-0.003c0.046,0.009,0.076,0.04,0.128,0.044\r\n\t\t\t\tc0.046,0.004,0.173-0.02,0.191-0.045c-0.003-0.044-0.086-0.053-0.114-0.083c0.091,0.005,0.077-0.035,0.134,0.031\r\n\t\t\t\tc0.041,0.007,0.101-0.012,0.116-0.034c0.001-0.052-0.066-0.084-0.058-0.137c0.005-0.005,0.011-0.01,0.016-0.015\r\n\t\t\t\tc0.03,0.025,0.076,0.076,0.147,0.053c0.075-0.023,0.014-0.08,0.073-0.109c0.046-0.014,0.093-0.029,0.139-0.043\r\n\t\t\t\tc0.048-0.025,0.083-0.063,0.134-0.089c0.033-0.013,0.065-0.027,0.098-0.04c0.023-0.014,0.024-0.037,0.052-0.051\r\n\t\t\t\tc0.052-0.027,0.165-0.104,0.16-0.147c0.013,0,0.026-0.001,0.039-0.001c0.009-0.007,0.007-0.015,0.014-0.021\r\n\t\t\t\tc0.024-0.02,0.098-0.01,0.069-0.046c-0.007-0.009-0.015-0.014-0.02-0.028c0.02-0.022,0.045-0.041,0.1-0.051\r\n\t\t\t\tc-0.003-0.01-0.007-0.02-0.01-0.03c0.004-0.01,0.018-0.015,0.036-0.02c0.005-0.043-0.016-0.072-0.045-0.098\r\n\t\t\t\tc0.008-0.035,0.079-0.049,0.107-0.077c0-0.029-0.031-0.052-0.063-0.055c0.037-0.037,0.131-0.031,0.146-0.078\r\n\t\t\t\tc-0.024-0.02-0.058-0.024-0.069-0.057c0.023-0.025,0.075-0.06,0.135-0.054c0.001,0,0.002,0,0.003,0\r\n\t\t\t\tc-0.033-0.02-0.066-0.041-0.099-0.061c-0.089-0.081,0.158-0.142,0.204-0.197c-0.022,0.004-0.029,0-0.037-0.01\r\n\t\t\t\tc-0.002-0.001-0.004-0.002-0.006-0.002c0,0,0-0.001-0.001-0.002c0.032-0.002,0.069,0.005,0.1-0.008\r\n\t\t\t\tc0.004-0.004,0.008-0.007,0.012-0.011c-0.001-0.024-0.034-0.036-0.057-0.044c-0.007-0.043,0.064-0.091,0.107-0.117\r\n\t\t\t\tc0.015,0.003,0.03,0.006,0.045,0.009c-0.008-0.04-0.016-0.08-0.024-0.12c-0.038,0.015-0.036,0.038-0.061,0.057\r\n\t\t\t\tc-0.04,0.031-0.1,0.067-0.155,0.09c-0.046,0.018-0.166,0.053-0.22,0.054c-0.055,0.001-0.099-0.006-0.169,0.007\r\n\t\t\t\tc-0.086,0.017-0.192,0.071-0.27,0.055c-0.009-0.018-0.019-0.035-0.028-0.053c-0.001,0-0.002,0-0.003,0.001\r\n\t\t\t\tc-0.072,0.055-0.152,0.123-0.2,0.186c-0.031,0.04-0.06,0.078-0.102,0.114c-0.038,0.032-0.043,0.082-0.099,0.107\r\n\t\t\t\tc-0.053,0.023-0.122,0.012-0.178,0.027c-0.003,0-0.006-0.001-0.008-0.002c-0.047-0.023-0.103,0.025-0.159,0.03\r\n\t\t\t\tc-0.014-0.012-0.007-0.021,0.003-0.032c0.022-0.023,0.056-0.047,0.12-0.051c0.022-0.001,0.054-0.002,0.075-0.013\r\n\t\t\t\tc0.068-0.034,0.046-0.111,0.096-0.141c0.031-0.019,0.151-0.057,0.162-0.078c0.014-0.025-0.022-0.049-0.044-0.053\r\n\t\t\t\tc-0.04,0.008-0.037,0.022-0.06,0.033l-0.116,0.034c-0.082,0.034-0.185,0.115-0.294,0.118c-0.015-0.011-0.018-0.03-0.038-0.036\r\n\t\t\t\tc-0.051,0.004-0.131,0.08-0.148,0.105c-0.006,0.001-0.012,0.001-0.018,0.002c-0.003,0-0.005,0-0.008,0\r\n\t\t\t\tc-0.046-0.074,0.259-0.214,0.154-0.309c-0.031-0.028-0.086-0.028-0.126-0.046c0.103-0.026,0.206-0.053,0.309-0.079\r\n\t\t\t\tc0.011-0.005,0.016-0.012,0.017-0.022c0.05-0.019,0.101-0.031,0.138-0.055c0.04-0.026,0.15-0.164,0.158-0.201\r\n\t\t\t\tc0.003-0.016-0.028-0.058-0.042-0.07c-0.016-0.014-0.044-0.019-0.068-0.024c-0.11-0.022-0.111,0.021-0.198,0.048\r\n\t\t\t\tc-0.092,0.028-0.168-0.001-0.196,0.069c-0.047,0.001-0.074-0.025-0.115-0.028c-0.045-0.003-0.093,0.034-0.122,0.047\r\n\t\t\t\tc-0.001,0-0.002,0-0.003,0c0,0,0-0.001-0.001-0.002c0.016-0.039,0.101-0.058,0.108-0.097c0.007-0.042-0.147-0.072-0.199-0.067\r\n\t\t\t\tc-0.027,0.007-0.053,0.015-0.08,0.022c-0.065,0.001-0.133-0.039-0.158-0.08c0.031-0.004,0.053,0.006,0.077,0.01\r\n\t\t\t\tc0.032,0.005,0.153,0.002,0.167-0.005c0.121,0.041,0.265,0.068,0.372,0.122c0.097-0.022,0.152-0.08,0.272-0.089\r\n\t\t\t\tc0.1-0.007,0.172,0.031,0.261,0.04c0.04-0.01,0.035-0.031,0.071-0.042c0.056,0.011,0.104,0.041,0.15,0.063\r\n\t\t\t\tc0.024,0.008,0.048,0.017,0.071,0.025c0.016,0.019,0.031,0.037,0.047,0.056c0.021,0.005,0.032-0.001,0.046,0.011\r\n\t\t\t\tc0.015,0.022,0.03,0.044,0.045,0.066c0.042,0.038,0.131,0.059,0.2,0.07c0.101,0.016,0.192,0.009,0.27-0.045\r\n\t\t\t\tc0.017-0.012,0.034-0.02,0.038-0.036c0.013-0.051-0.114-0.086-0.107-0.166c0.001-0.001,0.003-0.002,0.004-0.003\r\n\t\t\t\tc0.014,0.037,0.178,0.137,0.22,0.148c0.022,0.005,0.059,0.007,0.087-0.007c0.02-0.01,0.031-0.026,0.039-0.041\r\n\t\t\t\tc0.037-0.061-0.073-0.08-0.109-0.114c0.003-0.006,0.006-0.013,0.01-0.019c-0.026,0-0.033-0.018-0.043-0.033\r\n\t\t\t\tc-0.013-0.002-0.028,0-0.049,0.004c-0.004-0.04,0.038-0.112-0.07-0.076c0.009-0.016,0.01-0.032,0.012-0.052\r\n\t\t\t\tc-0.015,0.002-0.03,0.005-0.045,0.007c-0.002,0-0.004,0-0.005-0.001c-0.033-0.116-0.015-0.165-0.164-0.203\r\n\t\t\t\tc-0.003,0-0.005,0-0.008,0c-0.019,0.045-0.027,0.105-0.038,0.15c-0.001,0.001-0.003,0.002-0.004,0.003\r\n\t\t\t\tc-0.006-0.003-0.013-0.007-0.019-0.01c-0.004-0.025,0.002-0.056-0.014-0.084c-0.022-0.037-0.043-0.094-0.038-0.131\r\n\t\t\t\tc-0.051,0.012-0.061,0.058-0.095,0.08c-0.009-0.002-0.019-0.003-0.028-0.005c0-0.058-0.017-0.052-0.091-0.052\r\n\t\t\t\tc-0.013-0.02-0.001-0.032-0.007-0.054c-0.005-0.001-0.01-0.003-0.014-0.004c-0.012,0.001-0.02,0.003-0.029,0.007\r\n\t\t\t\tc-0.007-0.003-0.006-0.001-0.01-0.008c-0.053,0.01-0.081,0.001-0.126,0.003c-0.151,0.005-0.169,0.037-0.238-0.051\r\n\t\t\t\tc-0.041-0.009-0.201-0.016-0.26-0.004c-0.013,0.035-0.019,0.069-0.038,0.102c-0.018,0.027-0.037,0.054-0.055,0.08\r\n\t\t\t\tc-0.003,0.002-0.006,0.005-0.008,0.007c-0.027-0.016-0.116-0.06-0.103-0.103c0.009-0.015,0.038-0.018,0.056-0.029\r\n\t\t\t\tc0.021-0.013,0.084-0.093,0.073-0.115c-0.015-0.03-0.082-0.03-0.118-0.039c-0.039-0.01-0.067-0.043-0.116-0.041\r\n\t\t\t\tc-0.046,0.002-0.061,0.033-0.074,0.049c-0.018,0.016-0.035,0.032-0.053,0.048c-0.021,0.029-0.031,0.063-0.043,0.095\r\n\t\t\t\tc-0.007,0.002-0.013,0.004-0.019,0.005c-0.015-0.051-0.072-0.083-0.151-0.068c0,0,0-0.001-0.001-0.001\r\n\t\t\t\tc0.024-0.031,0.103-0.012,0.139-0.034c0.06-0.036,0.077-0.119,0.142-0.155c0.004-0.005,0.009-0.01,0.013-0.016\r\n\t\t\t\tc-0.078-0.016-0.155-0.032-0.243-0.04c-0.032,0.023-0.05,0.013-0.09,0.032c-0.021,0.015-0.043,0.03-0.064,0.045\r\n\t\t\t\tc-0.072,0.047-0.113,0.067-0.106,0.143c-0.023-0.003-0.035-0.007-0.05-0.017c-0.124-0.083,0.099-0.103,0.101-0.159\r\n\t\t\t\tc0.001-0.031-0.064-0.029-0.086-0.038c-0.002,0-0.004,0-0.005-0.001c0,0,0-0.001-0.001-0.002c0.065-0.02,0.17-0.047,0.208-0.018\r\n\t\t\t\tc0.055-0.015,0.091-0.086,0.101-0.119c0.002-0.012,0.004-0.024,0.007-0.036c0.019-0.029,0.096-0.064,0.136-0.084\r\n\t\t\t\tc0.001-0.002,0.002-0.004,0.003-0.005c-0.051-0.005-0.107-0.018-0.136-0.046c0.06,0.007,0.119,0.006,0.189,0.005\r\n\t\t\t\tc-0.007-0.017-0.02-0.023-0.032-0.034c-0.018-0.066,0.148-0.105,0.248-0.112c0.019-0.003,0.038-0.006,0.058-0.01\r\n\t\t\t\tc0.014,0.001,0.034,0.006,0.062-0.003c0.018-0.006,0.028-0.016,0.039-0.024c0.005,0.031-0.025,0.045-0.053,0.063\r\n\t\t\t\tc-0.039,0.004-0.2-0.007-0.232,0.033c0,0.003,0,0.005,0,0.008c0.038,0.019,0.086,0.056,0.135,0.064\r\n\t\t\t\tc0.063,0.01,0.146-0.01,0.22-0.012c0.032,0,0.063,0,0.095,0c0.05-0.056,0.09-0.128,0.108-0.194\r\n\t\t\t\tc0.015-0.005,0.03-0.001,0.047-0.002c0.036-0.002,0.135-0.04,0.152-0.052c0.047-0.035-0.09-0.189-0.128-0.197\r\n\t\t\t\tc-0.032-0.007-0.07-0.002-0.107-0.004c-0.059-0.004-0.24-0.04-0.269,0.031c0.007,0.018,0.019,0.023,0.032,0.034\r\n\t\t\t\tc0.001,0.002,0.001,0.003,0.002,0.005c-0.054,0.001-0.109,0.001-0.163,0.001c-0.002,0-0.003,0.001-0.005,0.001\r\n\t\t\t\tc-0.006-0.034,0.037-0.085,0.002-0.115c-0.013-0.007-0.061,0.002-0.077,0c-0.003-0.017,0.025-0.026,0.044-0.033\r\n\t\t\t\tc0.024-0.05-0.082-0.091-0.112-0.123c0,0,0-0.001-0.001-0.002c0.049,0.003,0.087,0.023,0.143,0.019\r\n\t\t\t\tc0.08-0.005,0.117-0.075,0.219-0.082c0.053-0.003,0.078,0.028,0.129,0.024c0.015-0.006,0.029-0.012,0.044-0.018\r\n\t\t\t\tc0.076-0.037,0.128-0.084,0.117-0.15c-0.006-0.035-0.112-0.077-0.174-0.057c-0.075,0.034-0.15,0.068-0.225,0.101\r\n\t\t\t\tc-0.023,0.015-0.039,0.033-0.066,0.048c0.001-0.026,0.017-0.077,0-0.103c-0.026-0.042-0.069-0.068-0.087-0.113\r\n\t\t\t\tc-0.144,0.026-0.093,0.074-0.143,0.127c-0.101,0.032-0.174-0.025-0.264-0.018c0.036-0.037,0.154-0.006,0.199-0.003\r\n\t\t\t\tc0.004-0.001,0.008-0.001,0.012-0.002c0.006-0.013,0.012-0.027,0.018-0.04c0.021-0.034,0.052-0.065,0.088-0.093\r\n\t\t\t\tc-0.001-0.001-0.003-0.003-0.004-0.004c-0.015-0.008-0.041-0.006-0.061-0.008c-0.037-0.005-0.076-0.012-0.118-0.013\r\n\t\t\t\tc-0.078,0-0.163,0.02-0.217-0.003c0.044-0.008,0.061-0.02,0.074-0.039c-0.012-0.023-0.076-0.028-0.104-0.037\r\n\t\t\t\tc-0.001-0.002-0.001-0.004-0.002-0.006c0.057-0.01,0.172,0.001,0.217,0.01c0.051,0.011,0.098,0.041,0.167,0.033\r\n\t\t\t\tc0.034-0.018,0.074-0.065,0.132-0.048c0.029,0.008,0.042,0.034,0.072,0.043c0.067-0.007,0.093-0.07,0.062-0.117\r\n\t\t\t\tc-0.04-0.061-0.125-0.079-0.182-0.12c-0.022-0.016-0.009-0.05-0.031-0.062c-0.042-0.024-0.124,0-0.196,0.004\r\n\t\t\t\tc-0.024-0.002-0.048-0.003-0.073-0.005c-0.041,0.002-0.072,0.028-0.098,0.039c-0.039,0.016-0.082,0.03-0.131,0.042\r\n\t\t\t\tc0-0.001-0.001-0.002-0.001-0.003c0.069-0.022,0.084-0.061,0.131-0.091c0.041-0.027,0.109-0.044,0.145-0.073\r\n\t\t\t\tc0.016-0.013,0.031-0.04,0.007-0.058c-0.01-0.007-0.041-0.008-0.068-0.013c0.057-0.028,0.115-0.055,0.172-0.083\r\n\t\t\t\tc0.024,0.008,0.048,0.016,0.072,0.024c0.029,0.02,0.058,0.041,0.086,0.062c0.003,0.001,0.006,0.001,0.008,0.002\r\n\t\t\t\tc0.003-0.003,0.005-0.005,0.008-0.008c-0.002-0.029-0.048-0.05-0.072-0.066c-0.018-0.012-0.036-0.025-0.053-0.037\r\n\t\t\t\tC24.16,6.946,27.965,6,32,6c4.819,0,9.317,1.335,13.186,3.62c-0.129,0.065-0.246,0.164-0.324,0.268\r\n\t\t\t\tc-0.048-0.001-0.132-0.022-0.153-0.019c-0.081,0.013-0.199,0.161-0.229,0.229c-0.013,0.013-0.025,0.025-0.038,0.038\r\n\t\t\t\tc0.039,0.028,0.075,0.062,0.102,0.102c-0.098,0.069-0.24,0.035-0.292,0.153c-0.004,0.004-0.008,0.008-0.013,0.013\r\n\t\t\t\tc0.032,0.03,0.064,0.059,0.095,0.089c-0.004,0.027-0.008,0.055-0.013,0.083c-0.383-0.001-0.322,0.111-0.547,0.216v0.006\r\n\t\t\t\tc0.208,0.251,0.238,0.04,0.521,0.089c0.13,0.023,0.226,0.096,0.343,0.121c0.109-0.061,0.161-0.161,0.248-0.241\r\n\t\t\t\tc-0.002-0.025-0.004-0.051-0.006-0.076c-0.034-0.021-0.068-0.042-0.102-0.064c-0.004-0.006-0.008-0.013-0.013-0.019\r\n\t\t\t\tc0.023-0.023,0.047-0.047,0.07-0.07c0.074,0.003,0.112,0.025,0.159,0.051c0.055-0.058,0.136-0.114,0.197-0.165v-0.013\r\n\t\t\t\tc-0.021-0.017-0.042-0.034-0.064-0.051c-0.013-0.017-0.002-0.045,0.006-0.076c0.015-0.013,0.03-0.026,0.044-0.038\r\n\t\t\t\tc0.107,0.001,0.27,0.047,0.356,0.006c0.036-0.028,0.072-0.055,0.108-0.083c0.021-0.023,0.042-0.047,0.063-0.07\r\n\t\t\t\tc-0.028-0.015-0.055-0.03-0.083-0.045c0.009-0.043,0.048-0.077,0.099-0.106c0.83,0.518,1.632,1.072,2.395,1.677\r\n\t\t\t\tc-0.005,0.025-0.011,0.05-0.016,0.075c-0.049,0.083-0.097,0.165-0.146,0.248c-0.135,0.174-0.528,0.182-0.464,0.489\r\n\t\t\t\tc0.053,0.004,0.106,0.008,0.159,0.013c0.135,0.378-0.104,0.29-0.146,0.515c0.07,0.108,0.28,0.064,0.369,0.153\r\n\t\t\t\tc0.03,0.036-0.002,0.112,0.013,0.165c0.035,0.124,0.135,0.168,0.286,0.146c-0.018,0.094-0.114,0.264-0.184,0.311\r\n\t\t\t\tc-0.016,0.013-0.038,0.014-0.07,0.013c-0.378-0.351-0.896-0.546-1.468-0.705c-0.123-0.034-0.46-0.13-0.635-0.089\r\n\t\t\t\tc-0.081,0.019-0.116,0.1-0.184,0.134c-0.002,0.004-0.004,0.008-0.006,0.013c0.061,0.078,0.123,0.157,0.184,0.235\r\n\t\t\t\tc-0.01,0.223-0.12,0.179-0.292,0.203c-0.021,0.033-0.037,0.114-0.051,0.146c-0.095,0.048-0.191-0.018-0.216-0.089\r\n\t\t\t\tc0.03-0.038,0.059-0.076,0.089-0.115c-0.178-0.082-0.286-0.093-0.451,0.032c-0.042,0.034-0.085,0.068-0.127,0.102\r\n\t\t\t\tc-0.1,0.03-0.176-0.034-0.235-0.051c-0.105-0.03-0.28-0.002-0.362,0.032c-0.091,0.037-0.088,0.172-0.172,0.222\r\n\t\t\t\tc-0.028-0.015-0.037-0.02-0.044-0.057c-0.182,0.003-0.224,0.07-0.375,0.019c0-0.05,0.007-0.062,0.025-0.089\r\n\t\t\t\tc0.038-0.006,0.076-0.013,0.114-0.019c0-0.097,0.017-0.161,0.026-0.235c-0.381-0.002-0.167,0.2-0.419,0.248\r\n\t\t\t\tc-0.006-0.002-0.013-0.004-0.019-0.006c-0.011-0.034-0.021-0.068-0.032-0.102c-0.133,0.055-0.267,0.11-0.4,0.165\r\n\t\t\t\tc-0.226,0.09-0.453,0.187-0.661,0.273c-0.051,0.015-0.102,0.03-0.153,0.045c-0.087,0.07-0.049,0.285-0.14,0.349\r\n\t\t\t\tc-0.057,0.011-0.115,0.021-0.172,0.032c-0.341,0.069-0.427-0.091-0.629-0.248c0.041-0.201,0.281-0.195,0.508-0.203\r\n\t\t\t\tc-0.055-0.114-0.169-0.349-0.305-0.375c-0.097,0.009-0.195,0.017-0.292,0.025c-0.082-0.018-0.133-0.053-0.216-0.032\r\n\t\t\t\tc-0.017,0.148,0.159,0.164,0.121,0.337c-0.051,0.081-0.102,0.161-0.152,0.241c-0.004,0.004-0.009,0.009-0.013,0.013\r\n\t\t\t\tc0.034,0.051,0.079,0.078,0.153,0.089c0.079,0.238,0.029,0.214-0.032,0.407c-0.006,0.036-0.013,0.072-0.019,0.108v0.013\r\n\t\t\t\tc-0.166-0.008-0.335-0.211-0.566-0.184c-0.124,0.261-0.492,0.237-0.661,0.445c0.005,0.173,0.26,0.294,0.14,0.47\r\n\t\t\t\tc-0.034-0.011-0.068-0.021-0.102-0.032c-0.071,0.008-0.14,0.046-0.235,0.019c-0.217-0.062-0.433-0.161-0.604-0.267\r\n\t\t\t\tc-0.103,0-0.1,0.078-0.153,0.127c0.003,0.063,0.126,0.201,0.191,0.229c0.057,0.024,0.137-0.001,0.191,0.006\r\n\t\t\t\tc0.15,0.265-0.1,0.247-0.261,0.21c-0.072-0.016-0.157,0.001-0.21-0.032c-0.029-0.021-0.053-0.077-0.064-0.114\r\n\t\t\t\tc-0.076-0.038-0.207-0.014-0.292-0.057c-0.043-0.022-0.208-0.444-0.216-0.527c0.122-0.036,0.163-0.19,0.07-0.292\r\n\t\t\t\tc-0.066-0.072-0.223-0.087-0.305-0.14c-0.136-0.088-0.245-0.222-0.362-0.33c0.221-0.112,0.253,0.089,0.343,0.14\r\n\t\t\t\tc0.07,0.011,0.14,0.021,0.21,0.032c0.5,0.15,1.305,0.524,1.831,0.127c0.111-0.084,0.24-0.161,0.235-0.343\r\n\t\t\t\tc-0.069-0.069-0.081-0.106-0.076-0.242c-0.091-0.072-0.211-0.158-0.331-0.197c-0.127-0.038-0.254-0.076-0.381-0.115\r\n\t\t\t\tc-0.121-0.102-0.242-0.203-0.362-0.305c-0.068-0.021-0.136-0.042-0.203-0.063c-0.108-0.038-0.216-0.076-0.324-0.114\r\n\t\t\t\tc-0.18-0.013-0.36-0.025-0.54-0.038c-0.03,0.023-0.059,0.047-0.089,0.07c-0.004-0.046-0.008-0.093-0.013-0.14\r\n\t\t\t\tc-0.183-0.035-0.345-0.068-0.35-0.28c-0.061,0.036-0.123,0.072-0.184,0.108c-0.046,0.019-0.103,0.021-0.14,0.044\r\n\t\t\t\tc-0.114-0.074-0.219-0.036-0.369-0.025c-0.066-0.103-0.205-0.127-0.28-0.222c0.237,0.002,0.468,0.029,0.591-0.095\r\n\t\t\t\tc-0.002-0.023-0.004-0.047-0.006-0.07c-0.028-0.017-0.055-0.034-0.083-0.051c-0.065-0.023-0.14,0.003-0.191-0.019\r\n\t\t\t\tc-0.106-0.045-0.177-0.123-0.299-0.159c-0.07,0.062-0.137,0.151-0.152,0.267c-0.04-0.008-0.081-0.017-0.121-0.025\r\n\t\t\t\tc0.041-0.129,0.058-0.18,0.127-0.279c-0.05-0.066-0.162-0.027-0.242-0.013c-0.045,0.144-0.117,0.243-0.248,0.305\r\n\t\t\t\tc-0.004-0.093-0.008-0.187-0.013-0.28c-0.139,0.095-0.322,0.263-0.388,0.426c-0.017-0.002-0.034-0.004-0.051-0.006\r\n\t\t\t\tc-0.001-0.246,0.115-0.269,0.216-0.4c-0.281-0.021-0.326,0.061-0.47,0.203c-0.031,0.023-0.079-0.012-0.121,0.013\r\n\t\t\t\tc-0.073,0.044-0.144,0.185-0.172,0.273c-0.187-0.096-0.28-0.273-0.381,0.083c-0.042-0.036-0.085-0.072-0.127-0.108\r\n\t\t\t\tc-0.006-0.002-0.013-0.004-0.019-0.006c-0.048,0.076-0.089,0.121-0.203,0.134c-0.027,0.103-0.078,0.174-0.153,0.229\r\n\t\t\t\tc0.014-0.069,0.027-0.136,0.051-0.191c-0.004-0.011-0.008-0.021-0.013-0.032c-0.006-0.004-0.013-0.008-0.019-0.013\r\n\t\t\t\tc-0.084,0.046-0.148,0.229-0.197,0.311c-0.135-0.012-0.165-0.08-0.299-0.032c-0.025-0.021-0.051-0.042-0.076-0.063\r\n\t\t\t\tc-0.061,0.246-0.091,0.112-0.216,0.203c-0.066,0.048-0.033,0.116-0.146,0.153c-0.019,0.021-0.038,0.042-0.057,0.063\r\n\t\t\t\tc0.026,0.021,0.051,0.042,0.076,0.064v0.006c-0.036,0.051-0.106,0.052-0.172,0.038c0.011,0.047,0.021,0.093,0.032,0.14\r\n\t\t\t\tc-0.019,0.028-0.038,0.055-0.057,0.083c-0.006,0.004-0.013,0.009-0.019,0.013c-0.046-0.028-0.064-0.041-0.089-0.089h-0.006\r\n\t\t\t\tc-0.065,0.006-0.07,0.078-0.133,0.102c-0.009,0.027,0.014,0.055,0.044,0.076v0.038c-0.054,0.016-0.077,0.025-0.102,0.07\r\n\t\t\t\tc-0.041-0.01-0.074-0.026-0.127-0.032c-0.044,0.035-0.058,0.078-0.121,0.095c0.011,0.038,0.019,0.052,0.057,0.064\r\n\t\t\t\tc-0.034,0.075-0.199,0.095-0.273,0.134c-0.006,0.004-0.013,0.008-0.019,0.013c0.021,0.036,0.042,0.072,0.064,0.108v0.006\r\n\t\t\t\tc-0.065,0.004-0.112,0.01-0.178,0.006c-0.021,0.034-0.042,0.068-0.063,0.102c0.042,0.051,0.093,0.07,0.127,0.134v0.006\r\n\t\t\t\tc-0.042,0.006-0.085,0.013-0.127,0.019c-0.006,0.042-0.013,0.085-0.019,0.127c-0.163-0.038-0.167,0.098-0.229,0.21\r\n\t\t\t\tc0.021,0.006,0.042,0.013,0.064,0.019c0.002,0.044,0.004,0.089,0.006,0.133c-0.05,0.003-0.081,0.005-0.121-0.006\r\n\t\t\t\tc-0.075,0.075-0.123,0.164-0.203,0.235c0.006,0.019,0.013,0.038,0.019,0.057v0.006c-0.063,0.046-0.087,0.015-0.159,0\r\n\t\t\t\tc-0.094,0.045-0.266,0.185-0.311,0.28c-0.006,0.034-0.013,0.068-0.019,0.102c-0.039,0.065-0.125,0.084-0.159,0.165\r\n\t\t\t\tc-0.006,0.004-0.013,0.009-0.019,0.013c-0.019-0.013-0.038-0.026-0.057-0.038c-0.08-0.054-0.225,0.137-0.222,0.242\r\n\t\t\t\tc-0.085-0.036-0.205-0.032-0.337-0.032l-0.032,0.032c0.017,0.072,0.086,0.103,0.159,0.114c-0.063,0.075-0.159,0.014-0.267,0.006\r\n\t\t\t\tc-0.021,0.084-0.011,0.111-0.089,0.14c-0.1-0.04-0.144,0.042-0.248,0.076c-0.002,0.017-0.004,0.034-0.006,0.051\r\n\t\t\t\tc0.025,0.034,0.072,0.048,0.108,0.07v0.025c-0.066,0.004-0.131,0.008-0.197,0.013c-0.025,0.075-0.001,0.151-0.038,0.21\r\n\t\t\t\tc0.034,0.046,0.043,0.085,0.102,0.108c0.002,0.004,0.004,0.008,0.006,0.013c-0.056,0.046-0.091,0.058-0.114,0.14\r\n\t\t\t\tc0.004,0.011,0.008,0.021,0.013,0.032c0.041,0.028,0.07,0.034,0.121,0.013c0.011,0.013,0.021,0.025,0.032,0.038\r\n\t\t\t\tc-0.041,0.034-0.089,0.076-0.127,0.114c0.053,0.078,0.112,0.033,0.222,0.045c-0.007,0.055-0.021,0.092-0.07,0.108\r\n\t\t\t\tc-0.008,0.011-0.017,0.021-0.025,0.032c0.015,0.013,0.03,0.025,0.044,0.038c0.06-0.001,0.086-0.014,0.127-0.032\r\n\t\t\t\tc-0.027,0.037-0.064,0.055-0.127,0.057c0.001,0.016-0.001,0.007,0.006,0.025c-0.032,0.014-0.05,0.004-0.083-0.013v0.038h-0.006\r\n\t\t\t\tc-0.004-0.017-0.008-0.034-0.013-0.051c-0.002-0.004-0.004-0.008-0.006-0.013c-0.025,0.03-0.051,0.059-0.076,0.089\r\n\t\t\t\tc0.008,0.03,0.017,0.059,0.025,0.089c0.011,0.006,0.021,0.013,0.032,0.019c0.002-0.011,0.004-0.021,0.006-0.032\r\n\t\t\t\tc0.006,0.011,0.013,0.021,0.019,0.032c0.051-0.002,0.06-0.014,0.095-0.026c-0.002-0.025-0.004-0.051-0.006-0.076\r\n\t\t\t\tc0.025,0.019,0.035,0.027,0.038,0.07h0.006c0.028-0.025,0.055-0.051,0.083-0.076c-0.018,0.039-0.04,0.052-0.064,0.083\r\n\t\t\t\tc0.032,0.02,0.042,0.024,0.089,0.019v0.007c-0.038,0.021-0.076,0.042-0.114,0.063c-0.009,0.028-0.004,0.013,0.006,0.045\r\n\t\t\t\tc0.046,0.033,0.031,0.018,0.102,0.013v0.006c-0.036,0.006-0.042,0.012-0.057,0.038c0.006,0.008,0.013,0.017,0.019,0.025\r\n\t\t\t\tc-0.036-0.022-0.065-0.056-0.089-0.019c-0.006,0.004-0.013,0.008-0.019,0.013c-0.002-0.019-0.004-0.038-0.006-0.057\r\n\t\t\t\tc-0.017-0.002-0.034-0.004-0.051-0.006c0.015,0.05-0.003,0.072-0.025,0.114c0.019,0.038,0.038,0.076,0.057,0.114\r\n\t\t\t\tc0.123,0.036,0.19,0.086,0.305,0.115c-0.013,0.013-0.026,0.025-0.038,0.038c0.013,0.008,0.025,0.017,0.038,0.025\r\n\t\t\t\tc0.011-0.013,0.021-0.025,0.032-0.038c0.03,0.015,0.042,0.019,0.051,0.057c0.07,0.017,0.282-0.01,0.349-0.044\r\n\t\t\t\tc0.108-0.107,0.244-0.176,0.356-0.28c0.039-0.036,0.039-0.072,0.095-0.095c0.038-0.02,0.087,0.023,0.14-0.013\r\n\t\t\t\tc0.062-0.046,0.08-0.127,0.083-0.222c0.015-0.011,0.03-0.021,0.044-0.032c0.012,0.047,0.011,0.056-0.013,0.089\r\n\t\t\t\tc0.053,0.074,0.056,0.142,0.165,0.095c0.004,0.002,0.008,0.004,0.013,0.006c0.006,0.051-0.02,0.065-0.032,0.114\r\n\t\t\t\tc0.052,0.027,0.057,0.174,0.057,0.248c0.019-0.002,0.038-0.004,0.057-0.007c0.002,0.017,0.004,0.034,0.006,0.051\r\n\t\t\t\tc0.048-0.012,0.047-0.013,0.089,0c0.008,0.048-0.026,0.118-0.044,0.165c0.047,0.06,0.08,0.086,0.076,0.203\r\n\t\t\t\tc0.017,0.002,0.034,0.004,0.051,0.006c0.049,0.164,0.149,0.23,0.242,0.324c-0.004,0.017-0.009,0.034-0.013,0.051\r\n\t\t\t\tc-0.019-0.002-0.038-0.004-0.057-0.006c0.002,0.017,0.004,0.034,0.006,0.051c-0.021,0.011-0.042,0.021-0.064,0.032\r\n\t\t\t\tc0.042,0.083,0.088,0.169,0.159,0.222c-0.016,0.061-0.039,0.075-0.051,0.134c0.151,0.032,0.257-0.029,0.381,0\r\n\t\t\t\tc0.011-0.013,0.021-0.025,0.032-0.038c0.037-0.032,0.005-0.05-0.019-0.089c0.023-0.06,0.036-0.108,0.095-0.133\r\n\t\t\t\tc0.019-0.011,0.012-0.005,0.038,0.006c0.004-0.017,0.009-0.034,0.013-0.051c0.11,0.001,0.175-0.008,0.254-0.025\r\n\t\t\t\tc0.021,0.015,0.042,0.03,0.064,0.045c0.004,0.004,0.008,0.008,0.013,0.013c0.059-0.108,0.119-0.216,0.178-0.324\r\n\t\t\t\tc0.002-0.04,0.004-0.08,0.006-0.121c0.011-0.057,0.039-0.09,0.057-0.133c0.016-0.027-0.011-0.058,0.006-0.102\r\n\t\t\t\tc-0.015-0.006-0.03-0.013-0.045-0.019V18.53h0.064c0.095-0.071-0.057-0.253-0.07-0.318c0.059-0.002,0.119-0.004,0.178-0.006\r\n\t\t\t\tc0.002-0.013,0.004-0.025,0.006-0.038c0.176,0.031,0.106-0.133,0.191-0.165v0.095c0.002,0.002,0.004,0.004,0.006,0.006\r\n\t\t\t\tc0.019-0.002,0.038-0.004,0.057-0.006c0.014-0.068,0.052-0.091,0.114-0.108c-0.004-0.021-0.008-0.042-0.013-0.064\r\n\t\t\t\tc0.027-0.002,0.055-0.004,0.083-0.006c-0.002-0.011-0.004-0.021-0.006-0.032c-0.002-0.004-0.004-0.008-0.006-0.013h-0.032v0.032\r\n\t\t\t\tc-0.102-0.041-0.174,0.062-0.28,0.045c-0.111-0.019-0.163-0.137-0.299-0.095H32.8c0.009-0.015,0.017-0.03,0.025-0.045\r\n\t\t\t\tc0.037-0.04,0.304,0.049,0.369,0.083c0.082,0.043,0.287-0.119,0.311-0.153h0.057c-0.002-0.095-0.048-0.099-0.07-0.178\r\n\t\t\t\tc-0.126-0.018-0.206-0.104-0.248-0.203c-0.025,0.002-0.051,0.004-0.076,0.006c-0.038-0.015-0.062-0.043-0.133-0.045\r\n\t\t\t\tc-0.002-0.004-0.004-0.008-0.006-0.013c0.046-0.039-0.052-0.296-0.025-0.4c0.023-0.006,0.047-0.013,0.07-0.019\r\n\t\t\t\tc0.055-0.173,0-0.204-0.019-0.356c0.038,0.013,0.076,0.025,0.114,0.038c0.021-0.028,0.042-0.055,0.064-0.083\r\n\t\t\t\tc0.016-0.027-0.004-0.073-0.013-0.115h0.127c0.08-0.112,0.117-0.111,0.222-0.191c0.05-0.038,0.05-0.096,0.114-0.127\r\n\t\t\t\tc0.023,0.015,0.047,0.03,0.07,0.044c0.099-0.068,0.199-0.136,0.299-0.203c0.071-0.087,0.077-0.196,0.184-0.248\r\n\t\t\t\tc0.004-0.006,0.008-0.013,0.013-0.019c-0.034-0.052-0.095-0.08-0.121-0.133c-0.006-0.006-0.013-0.013-0.019-0.019\r\n\t\t\t\tc0.053-0.023,0.128-0.081,0.152-0.133c0.023-0.036-0.022-0.072-0.044-0.102c0.077-0.104,0.108-0.037,0.184-0.095\r\n\t\t\t\tc0.091-0.069,0.094-0.193,0.21-0.248c0.051,0.034,0.102,0.068,0.153,0.102c0.022,0.014,0.223-0.034,0.305-0.032\r\n\t\t\t\tc0.078,0.06,0.117,0.113,0.261,0.115c0.011,0.019,0.021,0.038,0.032,0.057c0.014,0.037-0.006,0.12-0.019,0.159\r\n\t\t\t\tc0.017,0.019,0.034,0.038,0.051,0.057c0.013,0.018,0.009,0.038,0.006,0.076c-0.04-0.002-0.081-0.004-0.121-0.006\r\n\t\t\t\tc-0.098,0.028-0.543,0.488-0.61,0.585h-0.032c-0.013-0.019-0.025-0.038-0.038-0.057v-0.013c-0.09,0.094-0.016,0.207-0.159,0.28\r\n\t\t\t\tc-0.059-0.024-0.1-0.032-0.159-0.013c0.004,0.027,0.008,0.055,0.013,0.083c-0.073,0.067-0.121,0.102-0.153,0.216\r\n\t\t\t\tc0.026,0.023,0.063,0.043,0.089,0.064c0,0.094-0.02,0.143-0.032,0.216c0.034,0.053,0.068,0.106,0.102,0.159\r\n\t\t\t\tc-0.008,0.04-0.017,0.08-0.025,0.121c-0.035,0.188-0.011,0.31,0.127,0.381c0.058,0.03,0.07,0.065,0.146,0.038l-0.006,0.076\r\n\t\t\t\tc0.053-0.018,0.094-0.039,0.172-0.038c-0.011,0.023-0.021,0.047-0.032,0.07c0.02,0.042,0.039,0.071,0.083,0.089\r\n\t\t\t\tc0.067,0.051,0.193-0.016,0.235-0.038v0.026c0.065-0.014,0.081-0.027,0.133,0c0.043-0.058,0.077-0.069,0.153-0.095\r\n\t\t\t\tc0.004,0.008,0.008,0.017,0.013,0.025c0.051-0.028,0.141-0.037,0.165-0.095c0.027,0.019,0.055,0.038,0.083,0.057h0.006\r\n\t\t\t\tc0.017-0.083,0.1-0.04,0.152-0.083c0.028-0.017,0.04-0.057,0.045-0.095v0.057c0.036,0.013,0.072,0.025,0.108,0.038\r\n\t\t\t\tc0.026-0.027,0.034-0.043,0.083-0.051c0.021,0.013,0.042,0.025,0.064,0.038c0.059-0.057,0.198-0.098,0.299-0.108\r\n\t\t\t\tc0.008-0.015,0.017-0.03,0.025-0.045c0.029-0.003-0.01,0.079-0.019,0.114c0.148,0.215,0.345-0.041,0.489,0.229\r\n\t\t\t\tc-0.015,0.011-0.03,0.021-0.045,0.032c-0.094-0.003-0.14-0.044-0.222-0.07c-0.076,0.006-0.1,0.066-0.14,0.108\r\n\t\t\t\tc-0.053-0.012-0.053-0.037-0.102-0.025c-0.016,0.027-0.014,0.015-0.006,0.045c-0.031,0.029-0.052,0.003-0.076-0.025\r\n\t\t\t\tc-0.013,0.002-0.025,0.004-0.038,0.006c-0.004,0.015-0.008,0.03-0.013,0.045c0.032,0.038,0.067,0.051,0.064,0.108\r\n\t\t\t\tc-0.008-0.008-0.017-0.017-0.025-0.025c-0.018-0.007-0.058,0.067-0.108,0.064c-0.163-0.011-0.296-0.042-0.451-0.07\r\n\t\t\t\tc-0.078-0.014-0.166,0.024-0.203-0.006c-0.017,0.015-0.034,0.03-0.051,0.044c-0.049-0.011-0.098-0.021-0.146-0.032\r\n\t\t\t\tc-0.004,0.015-0.008,0.03-0.013,0.045c-0.044-0.007-0.062,0.006-0.102-0.006c-0.085,0.046-0.145,0.095-0.28,0.102\r\n\t\t\t\tc0.006,0.043,0.013,0.056-0.025,0.07c0.023,0.062,0.023,0.099,0.044,0.165c0.022,0,0.035-0.011,0.057-0.026\r\n\t\t\t\tc-0.002,0.057-0.004,0.115-0.006,0.172c0.057,0.016,0.08,0.031,0.121,0.051c0.025-0.023,0.051-0.047,0.076-0.07\r\n\t\t\t\tc0.013,0.009,0.025,0.017,0.038,0.025c-0.021,0.16-0.09,0.268-0.038,0.451c-0.041,0.106-0.222,0.17-0.324,0.076\r\n\t\t\t\tc-0.015-0.04-0.03-0.081-0.044-0.121c-0.047-0.034-0.093-0.068-0.14-0.102v-0.044c-0.113,0.004-0.154,0.056-0.267,0.057\r\n\t\t\t\tc-0.034,0.043-0.068,0.085-0.102,0.127c-0.002,0.044-0.004,0.089-0.006,0.133c-0.032,0.025-0.064,0.051-0.095,0.076\r\n\t\t\t\tc-0.068,0.143,0.034,0.501,0.064,0.578c-0.009,0.025,0,0,0.013,0.025c-0.011,0.002-0.021,0.004-0.032,0.006\r\n\t\t\t\tc0.011,0.035,0.018,0.047,0.013,0.089c-0.081,0.046-0.249,0.013-0.362,0.007c-0.016,0.05-0.021,0.111-0.025,0.165\r\n\t\t\t\tc-0.125,0.066-0.209,0.161-0.388,0.095c-0.009-0.053-0.026-0.086-0.051-0.121c0.005-0.087-0.213-0.034-0.28-0.013\r\n\t\t\t\tc-0.291,0.091-0.499,0.261-0.852,0.286c0.004,0.069,0.012,0.088,0.013,0.146c-0.08-0.028-0.139-0.055-0.21-0.083\r\n\t\t\t\tc-0.004-0.036-0.008-0.072-0.013-0.108c-0.081-0.042-0.175,0.016-0.222-0.121c-0.058-0.004-0.427,0.12-0.458,0.197h-0.07\r\n\t\t\t\tc-0.004-0.013-0.009-0.025-0.013-0.038h-0.006c-0.033,0.022-0.061,0.024-0.095,0.013c-0.004-0.006-0.008-0.013-0.013-0.019\r\n\t\t\t\tc0.045-0.038,0.069-0.048,0.102-0.102c-0.006-0.013-0.013-0.025-0.019-0.038c-0.049,0.004-0.097,0.009-0.146,0.013\r\n\t\t\t\tc-0.057-0.013-0.065-0.053-0.121-0.025c-0.014-0.043-0.014-0.04-0.064-0.038c0.059-0.095-0.063-0.185-0.133-0.21\r\n\t\t\t\tc0.013-0.092,0.038-0.176,0.089-0.229c-0.006-0.011-0.013-0.021-0.019-0.032c0.028-0.002,0.055-0.004,0.083-0.006\r\n\t\t\t\tc0.023-0.081,0.102-0.094,0.064-0.191c0.021-0.011,0.042-0.021,0.064-0.032c0.013,0.017,0.025,0.034,0.038,0.051\r\n\t\t\t\tc0.019-0.007,0.038-0.013,0.057-0.019c0.011-0.02,0.068-0.131,0.038-0.159c-0.051-0.002-0.102-0.004-0.153-0.006\r\n\t\t\t\tc-0.032-0.019-0.031-0.102-0.032-0.153c-0.068-0.033-0.163-0.022-0.254-0.019c-0.006,0.053-0.013,0.106-0.019,0.159\r\n\t\t\t\tc-0.013,0.014-0.02,0.015-0.044,0.019c-0.013-0.03-0.025-0.059-0.038-0.089c-0.049,0.026-0.056,0.1-0.095,0.121\r\n\t\t\t\tc-0.035,0.019-0.1-0.034-0.133-0.032c-0.071,0.107,0.012,0.181,0.019,0.286c-0.031,0.04-0.055,0.066-0.076,0.121\r\n\t\t\t\tc0.017,0.008,0.034,0.017,0.051,0.025c0.008-0.011,0.017-0.021,0.025-0.032c0.03,0.025,0.028,0.047,0.083,0.051\r\n\t\t\t\tc0.009,0.061-0.008,0.193,0.006,0.242c0.015,0.052,0.078,0.085,0.095,0.146c-0.028,0.028-0.059,0.044-0.108,0.051\r\n\t\t\t\tc0.012,0.043,0.042,0.03,0.095,0.025c-0.011,0.017-0.017,0.019-0.032,0.032c0.015,0.015,0.03,0.03,0.045,0.044\r\n\t\t\t\tc-0.011,0.008-0.021,0.017-0.032,0.025c0.002,0.011,0.004,0.021,0.006,0.032c0.023,0.011,0.047,0.021,0.07,0.032\r\n\t\t\t\tc-0.046,0.024-0.104,0.005-0.159,0c-0.019,0.061-0.035,0.076-0.006,0.133c-0.032-0.011-0.063-0.021-0.095-0.032\r\n\t\t\t\tc0.008,0.019,0.017,0.038,0.025,0.057c-0.006,0.008-0.013,0.017-0.019,0.025c-0.006,0.002-0.013,0.004-0.019,0.006\r\n\t\t\t\tc-0.006-0.004-0.013-0.008-0.019-0.013c-0.005-0.039-0.011-0.061-0.025-0.108c-0.107-0.001-0.208,0.008-0.28,0.038\r\n\t\t\t\tc-0.004,0.019-0.008,0.038-0.013,0.057c0.008,0.049,0.031,0.043,0.057,0.07c-0.002,0.006-0.004,0.013-0.006,0.019h-0.025\r\n\t\t\t\tc-0.023-0.022-0.063-0.046-0.076-0.076c-0.123-0.051-0.317,0.05-0.413,0.083c-0.013,0.055-0.013,0.076-0.013,0.146\r\n\t\t\t\tc0.027,0.002,0.055,0.004,0.083,0.006c-0.015,0.024-0.023,0.03-0.025,0.07c0.024,0.016,0.034,0.024,0.076,0.026\r\n\t\t\t\tc-0.013,0.071-0.047,0.063-0.076,0.108c-0.051,0.033-0.092-0.002-0.165-0.013c0.015-0.036,0.015-0.051,0.013-0.108\r\n\t\t\t\tc0.026,0.002,0.019,0.001,0.044-0.006c0.006-0.013,0.013-0.025,0.019-0.038c-0.018-0.035-0.039-0.055-0.07-0.076\r\n\t\t\t\tc-0.032,0.008-0.064,0.017-0.095,0.026c-0.038,0.095-0.076,0.191-0.114,0.286c-0.074,0.064-0.148,0.127-0.222,0.191\r\n\t\t\t\tc0.032,0.014,0.055,0.038,0.07,0.07c-0.053,0.064-0.14-0.005-0.216,0.025c-0.055,0.036-0.11,0.072-0.165,0.108\r\n\t\t\t\tc-0.036,0.002-0.072,0.004-0.108,0.007c-0.047,0.023-0.093,0.047-0.14,0.07c-0.038,0.119,0.011,0.258-0.089,0.324\r\n\t\t\t\tc-0.114,0.075-0.266,0.05-0.349,0.153c-0.002,0.013-0.004,0.025-0.006,0.038c0.021,0.006,0.042,0.013,0.064,0.019\r\n\t\t\t\tc-0.12,0.118-0.282-0.026-0.426,0.044c-0.023-0.044-0.033-0.075-0.025-0.14c-0.075,0.012-0.121,0.009-0.203,0\r\n\t\t\t\tc0.011,0.077,0.049,0.161,0.108,0.191c-0.002,0.083-0.013,0.145,0.025,0.197c-0.024,0.019-0.065,0.026-0.108,0.025v-0.044\r\n\t\t\t\tc-0.055,0.027-0.204,0.061-0.273,0.057c-0.028-0.036-0.055-0.072-0.083-0.108c-0.045,0.004-0.089,0.008-0.133,0.013\r\n\t\t\t\tc-0.006,0.015-0.013,0.03-0.019,0.044c-0.024,0.015-0.108,0.007-0.108,0.007c-0.004-0.004-0.009-0.009-0.013-0.013\r\n\t\t\t\tc-0.076,0.006-0.132,0.063-0.222,0.063c-0.002,0.028-0.004,0.055-0.006,0.083c0.038-0.014,0.077-0.021,0.133-0.019\r\n\t\t\t\tc-0.015,0.03-0.018,0.038-0.057,0.045c-0.01,0.017,0.037,0.021,0.057,0.025c0.002,0.009,0.004,0.017,0.006,0.025v0.006\r\n\t\t\t\tc-0.038,0.006-0.076,0.013-0.114,0.019c0.018,0.035,0.065,0.028,0.089,0.057c0.002,0.011,0.004,0.021,0.006,0.032\r\n\t\t\t\tc0.154-0.013,0.334,0.029,0.445,0.127c0.028-0.009,0.055-0.017,0.083-0.025c0.011,0.006,0.021,0.013,0.032,0.019\r\n\t\t\t\tc-0.011,0.021-0.021,0.043-0.032,0.064c0.036,0.046,0.118,0.075,0.165,0.108c-0.011,0.023-0.021,0.046-0.032,0.07\r\n\t\t\t\tc0.04,0.049,0.08,0.097,0.121,0.146c0.135,0.068,0.112,0,0.184,0.153c-0.021,0.04-0.045,0.073-0.051,0.127\r\n\t\t\t\tc0.051,0.067,0.112,0.106,0.133,0.203c-0.034-0.042-0.068-0.085-0.102-0.127h-0.006c-0.04,0.073-0.053,0.198-0.051,0.305\r\n\t\t\t\tc0.011-0.008,0.021-0.017,0.032-0.025c0.008,0.01,0.017,0.021,0.025,0.032c-0.017,0.008-0.034,0.017-0.051,0.025\r\n\t\t\t\tc-0.034,0.153-0.066,0.309-0.121,0.426c-0.162,0.027-0.245-0.039-0.375-0.076c-0.077,0.095-0.35,0.058-0.515,0.032\r\n\t\t\t\tc-0.075-0.012-0.339-0.086-0.356-0.083c-0.076,0.017-0.158,0.089-0.267,0.07c-0.137-0.023-0.23-0.099-0.369-0.044\r\n\t\t\t\tc-0.013,0.034-0.025,0.068-0.038,0.102h-0.083c-0.104,0.004-0.159,0.031-0.197,0.102c0.002,0.023,0.004,0.047,0.006,0.07\r\n\t\t\t\tc0.094,0.019,0.139,0.07,0.165,0.153c0.008,0.014-0.059,0.211-0.076,0.241c0.095,0.198,0.023,0.738-0.14,0.826\r\n\t\t\t\tc0.005,0.08-0.01,0.143-0.038,0.203c0.015,0.029,0.018,0.027,0.051,0.038c0.039-0.018,0.066-0.029,0.083-0.07\r\n\t\t\t\tc0.006-0.004,0.013-0.009,0.019-0.013c0.009,0.017,0.017,0.034,0.025,0.051c-0.024,0.033-0.05,0.045-0.108,0.045v0.006\r\n\t\t\t\tc0.004,0.017,0.009,0.034,0.013,0.051c0.035,0.008,0.086-0.006,0.121-0.019c0.004,0.004,0.008,0.008,0.013,0.013\r\n\t\t\t\tc-0.011,0.052-0.024,0.115-0.032,0.165c-0.002,0.004-0.004,0.008-0.006,0.013c0.016,0.028,0.041,0.09,0.025,0.152\r\n\t\t\t\tc-0.012,0.047-0.061,0.108-0.044,0.159v0.013c0.057-0.028,0.12-0.061,0.216-0.038c0.03,0.007,0.054,0.035,0.102,0.026\r\n\t\t\t\tc0.044-0.021,0.089-0.042,0.133-0.064c0.148-0.039,0.293,0.081,0.286,0.191c0.017,0.006,0.034,0.013,0.051,0.019\r\n\t\t\t\tc0.017,0.104,0.101,0.213,0.229,0.178c0.011-0.013,0.01-0.013,0.013-0.038h0.006c0.002,0.011,0.004,0.021,0.006,0.032h0.006\r\n\t\t\t\tc0.028-0.117,0.068-0.096,0.178-0.133c0.032-0.028,0.064-0.055,0.095-0.083c0.167,0.002,0.335,0.004,0.502,0.006\r\n\t\t\t\tc0.033-0.011,0.061-0.035,0.114-0.044c0.013,0.011,0.025,0.021,0.038,0.032c0.076-0.056,0.065-0.091,0.114-0.178\r\n\t\t\t\tc0.05-0.088,0.175-0.085,0.292-0.108c0.01-0.028-0.012-0.031-0.006-0.064c0.026-0.154,0.176-0.261,0.299-0.324v-0.019\r\n\t\t\t\tc-0.032-0.017-0.064-0.034-0.095-0.051c-0.023-0.053-0.047-0.106-0.07-0.159c0.031-0.147,0.225-0.389,0.356-0.438\r\n\t\t\t\tc0.002-0.004,0.004-0.009,0.006-0.013c-0.016-0.018-0.023-0.016-0.032-0.044c0.086-0.149,0.264-0.073,0.394-0.159\r\n\t\t\t\tc0.011-0.019,0.021-0.038,0.032-0.057c0.074-0.067,0.212-0.068,0.273-0.146c0.075-0.198-0.151-0.33,0.102-0.508\r\n\t\t\t\tc0.16-0.113,0.187,0.005,0.33,0.006c0.036,0,0.081-0.033,0.133-0.013c0.074,0.029,0.117,0.137,0.242,0.115\r\n\t\t\t\tc0.24-0.044,0.308-0.187,0.47-0.292c0.047-0.013,0.093-0.026,0.14-0.038c0.025-0.028,0.051-0.055,0.076-0.083\r\n\t\t\t\tc0.129-0.101,0.256-0.104,0.426-0.019c0.221,0.111,0.209,0.479,0.419,0.61c0.184,0.115,0.33,0.293,0.502,0.381\r\n\t\t\t\tc0.155,0.08,0.306,0.025,0.343,0.229c0.03-0.008,0.059-0.017,0.089-0.025h0.006c0.013,0.015,0.025,0.03,0.038,0.044\r\n\t\t\t\tc-0.011,0.004-0.021,0.009-0.032,0.013c-0.004,0.008-0.009,0.017-0.013,0.025c0.038-0.011,0.076-0.021,0.114-0.032\r\n\t\t\t\tc0.021,0.019,0.042,0.038,0.064,0.057c0.009,0.041,0.003,0.066-0.013,0.095c0.045,0.027,0.089,0.055,0.133,0.083\r\n\t\t\t\tc0.023,0.012,0.039-0.004,0.07-0.019c0.034,0.01,0.181,0.419,0.172,0.451v0.013c-0.023-0.002-0.047-0.004-0.07-0.006\r\n\t\t\t\tc-0.011,0.011-0.021,0.021-0.032,0.032c0.02,0.067,0.004,0.11-0.064,0.14v0.076c0.013,0.009,0.025,0.017,0.038,0.025h0.083\r\n\t\t\t\tc0.039-0.064,0.067-0.14,0.146-0.165c0.016-0.034,0.005-0.062,0-0.108c0.045-0.043,0.063-0.067,0.159-0.064\r\n\t\t\t\tc0.011-0.013,0.021-0.026,0.032-0.038c-0.026-0.042-0.026-0.089-0.006-0.134c-0.061-0.034-0.123-0.068-0.184-0.102\r\n\t\t\t\tc0.002-0.111,0.086-0.282,0.197-0.267c-0.006,0.095,0.142,0.064,0.203,0.108c0.03,0.023,0.006,0.04,0.025,0.076\r\n\t\t\t\tc0.036,0.023,0.072,0.047,0.108,0.07c0.015-0.044,0.03-0.089,0.045-0.133c-0.196-0.193-0.436-0.359-0.744-0.438\r\n\t\t\t\tc-0.011-0.013-0.021-0.025-0.032-0.038c0.032-0.027,0.049-0.054,0.095-0.07c-0.002-0.011-0.004-0.021-0.006-0.032\r\n\t\t\t\tc-0.047-0.073-0.327,0.011-0.413-0.076c-0.08-0.081-0.209-0.198-0.254-0.305c-0.028-0.067-0.023-0.157-0.064-0.21\r\n\t\t\t\tc-0.031-0.04-0.088-0.05-0.133-0.076c-0.15-0.087-0.231-0.143-0.273-0.343c0.027-0.031,0.056-0.043,0.076-0.083\r\n\t\t\t\tc-0.031-0.037-0.057-0.035-0.057-0.108c-0.015-0.002-0.03-0.004-0.044-0.006c0.008-0.021,0.017-0.042,0.025-0.064\r\n\t\t\t\tc0.044-0.029,0.154-0.064,0.248-0.07c0.002-0.017,0.004-0.034,0.006-0.051c0.08,0.003,0.086,0.005,0.159,0\r\n\t\t\t\tc0.011,0.017,0.021,0.034,0.032,0.051c-0.019,0.025-0.035,0.035-0.076,0.038c0.021,0.098,0.071,0.175,0.102,0.254\r\n\t\t\t\tc0.033-0.017,0.055-0.041,0.083-0.064c0.017-0.047,0.034-0.093,0.051-0.14c0.256,0.103,0.086,0.31,0.343,0.388\r\n\t\t\t\tc-0.036,0.002-0.072,0.004-0.108,0.006v0.006c0.075,0.108,0.185,0.165,0.267,0.267c0.025,0.026,0.059-0.025,0.108-0.013\r\n\t\t\t\tc0.006,0.001,0.153,0.061,0.165,0.07c0.049,0.035,0.089,0.097,0.14,0.133c0.133,0.095,0.272,0.155,0.407,0.248\r\n\t\t\t\tc0.03,0.036,0.059,0.072,0.089,0.108c0.042,0.021,0.085,0.042,0.127,0.064c0.003,0.051,0.002,0.06-0.038,0.07\r\n\t\t\t\tc-0.006,0.043,0.016,0.226,0.013,0.235c-0.017,0.032-0.034,0.064-0.051,0.095c0.022,0.032,0.038,0.045,0.038,0.102\r\n\t\t\t\tc-0.011-0.002-0.021-0.004-0.032-0.006c0.027,0.077,0.144,0.098,0.191,0.159c0.006,0.03,0.013,0.059,0.019,0.089\r\n\t\t\t\tc0.04,0.101,0.153,0.191,0.28,0.172c0.008,0.008,0.017,0.017,0.025,0.025v0.013c-0.027,0.034-0.065,0.029-0.108,0.038v0.006\r\n\t\t\t\tc0.036,0.055,0.072,0.11,0.108,0.165c0.103-0.009,0.227-0.061,0.349-0.025c0.077,0.022,0.119,0.081,0.223,0.089v0.006\r\n\t\t\t\tc-0.101,0.134-0.204-0.021-0.324-0.038c-0.039-0.005-0.082,0.035-0.159,0.032c-0.021,0.038-0.042,0.076-0.064,0.114\r\n\t\t\t\tc0.038,0.047,0.076,0.093,0.114,0.14c0.014,0.044-0.016,0.099-0.013,0.146c0.019,0.017,0.038,0.034,0.057,0.051\r\n\t\t\t\tc0.019-0.015,0.038-0.03,0.057-0.044c0.045-0.022,0.097,0.086,0.108,0.14c0.004,0.002,0.009,0.004,0.013,0.007\r\n\t\t\t\tc0.011-0.019,0.021-0.038,0.032-0.057c0.056-0.027,0.09-0.001,0.14,0.025c-0.005-0.136-0.055-0.195-0.095-0.292v-0.032\r\n\t\t\t\tc0.034,0.011,0.068,0.021,0.102,0.032h0.013c-0.006,0.013-0.013,0.025-0.019,0.038c0.017,0.006,0.034,0.013,0.051,0.019\r\n\t\t\t\tc0.019-0.035,0.029-0.044,0.083-0.045c-0.023-0.029-0.028-0.02-0.025-0.064c-0.021,0.004-0.042,0.009-0.064,0.013\r\n\t\t\t\tc-0.022-0.048-0.026-0.074-0.057-0.108c0.047-0.015,0.093-0.03,0.14-0.044c0.05,0.006,0.107,0.078,0.121,0.121\r\n\t\t\t\tc0.006,0.004,0.013,0.008,0.019,0.013c0.013-0.011,0.025-0.021,0.038-0.032c-0.013-0.04-0.025-0.081-0.038-0.121\r\n\t\t\t\tc0.008-0.002,0.017-0.004,0.025-0.006c-0.005-0.06-0.342-0.233-0.419-0.248v-0.006c0.044-0.01,0.071-0.023,0.102-0.044\r\n\t\t\t\tc-0.013-0.03-0.026-0.059-0.038-0.089v-0.007c0.03-0.019,0.042-0.017,0.083-0.006c0.014,0.026,0.015,0.037,0.013,0.07h0.006\r\n\t\t\t\tc0.006-0.002,0.013-0.004,0.019-0.006c0.008-0.011,0.017-0.021,0.025-0.032c-0.079-0.096-0.169-0.193-0.222-0.311\r\n\t\t\t\tc0.002-0.047,0.015-0.064,0.038-0.089c-0.011-0.013-0.021-0.025-0.032-0.038c0.035-0.015,0.06-0.023,0.076-0.057\r\n\t\t\t\tc0.008,0.002,0.017,0.004,0.025,0.006c0.002,0.009,0.004,0.017,0.006,0.025c-0.011,0.007-0.021,0.013-0.032,0.019\r\n\t\t\t\tc0.04,0.08,0.139,0.069,0.146,0.184c0.032,0.004,0.064,0.008,0.095,0.013h0.013c-0.035-0.042-0.079-0.056-0.108-0.108v-0.006\r\n\t\t\t\tc0.076,0.003,0.119,0.051,0.146,0.102c0.015-0.002,0.03-0.004,0.044-0.006c0.002-0.006,0.004-0.013,0.006-0.019\r\n\t\t\t\tc-0.024-0.041-0.06-0.046-0.083-0.089c0.011-0.008,0.021-0.017,0.032-0.026c0.037,0.007,0.067,0.015,0.083,0.045\r\n\t\t\t\tc0.017,0.015,0.034,0.03,0.051,0.045c0.006-0.004,0.013-0.009,0.019-0.013v-0.006c-0.062-0.077-0.15-0.094-0.191-0.197v-0.006\r\n\t\t\t\tc0.134-0.026,0.108,0.02,0.21-0.07c0.039,0.003,0.034,0.001,0.044,0.032c0.079,0,0.103-0.025,0.153-0.051\r\n\t\t\t\tc0.043,0.102,0.272-0.012,0.286,0.121c0.008-0.009,0.017-0.017,0.025-0.025c0.034,0.021,0.105,0.031,0.146,0.044\r\n\t\t\t\tc0.002,0.004,0.004,0.008,0.006,0.013c-0.032,0.019-0.064,0.038-0.095,0.057c-0.008,0.032-0.017,0.064-0.025,0.095\r\n\t\t\t\tc0.066-0.021,0.091-0.085,0.14-0.121c0.061-0.028,0.123-0.055,0.184-0.083c0.015-0.03,0.03-0.059,0.044-0.089\r\n\t\t\t\tc0.038-0.022,0.1,0.002,0.153-0.019c0.136-0.054,0.112,0.009,0.273,0.013c0.026-0.03,0.045-0.056,0.063-0.095\r\n\t\t\t\tc-0.045-0.06-0.142-0.051-0.21-0.089c-0.087-0.049-0.178-0.313-0.267-0.299v-0.051c0.036-0.035,0.047-0.056,0.102-0.076\r\n\t\t\t\tc0.016-0.084,0.038-0.153,0.051-0.222c0.025-0.013,0.108-0.018,0.121-0.038c0.004-0.04,0.008-0.08,0.013-0.121\r\n\t\t\t\tc0.036-0.199,0.06-0.377,0.286-0.388c0.023-0.049,0.047-0.097,0.07-0.146c-0.015-0.031-0.034-0.038-0.051-0.064\r\n\t\t\t\tc-0.032-0.104,0.093-0.097,0.153-0.133c0.199-0.119,0.104-0.321,0.509-0.311c0.008-0.015,0.017-0.03,0.025-0.045\r\n\t\t\t\tc0.006-0.004,0.013-0.008,0.019-0.013c0.021,0.025,0.042,0.051,0.064,0.076v0.013c-0.023,0.021-0.047,0.042-0.07,0.064v0.013\r\n\t\t\t\tc0.097,0.133,0.265,0.085,0.458,0.089c0.013,0.025,0.026,0.051,0.038,0.076c-0.067,0.074-0.25,0.106-0.331,0.184\r\n\t\t\t\tc0.004,0.008,0.009,0.017,0.013,0.025c0.2,0.038,0.367,0.002,0.254,0.267v0.019c0.285,0.052,0.158-0.026,0.337-0.089\r\n\t\t\t\tc0.051-0.004,0.102-0.009,0.153-0.013c0.034-0.028,0.068-0.055,0.102-0.083c0.06-0.018,0.089,0.017,0.133,0.025\r\n\t\t\t\tc0.038-0.006,0.076-0.013,0.114-0.019c0.023-0.032,0.052-0.072,0.064-0.114c-0.064-0.008-0.127-0.017-0.191-0.025\r\n\t\t\t\tc-0.072,0.007-0.141,0.064-0.235,0.038c-0.024-0.123-0.199-0.258-0.337-0.299c-0.002-0.004-0.004-0.008-0.006-0.013\r\n\t\t\t\tc0.103-0.029,0.197-0.016,0.305-0.019c0.037-0.039,0.065-0.066,0.083-0.127c0.004-0.002,0.009-0.004,0.013-0.006\r\n\t\t\t\tc0.015,0.013,0.03,0.025,0.044,0.038c0.022,0.013,0.019,0.008,0.045,0c0.05-0.015,0.061-0.049,0.102-0.063\r\n\t\t\t\tc0.125-0.023,0.25-0.047,0.375-0.07c0.023-0.025,0.047-0.051,0.07-0.076c0.074-0.008,0.148-0.017,0.222-0.025\r\n\t\t\t\tc0.013-0.013,0.007-0.002,0.013-0.025c0.093-0.017,0.186-0.034,0.28-0.051c0.011,0.021,0.021,0.042,0.032,0.064\r\n\t\t\t\tc-0.099,0.079-0.25,0.146-0.413,0.152c-0.008,0.011-0.017,0.021-0.026,0.032c0.074,0.053,0.148,0.098,0.197,0.178\r\n\t\t\t\tc-0.034,0.026-0.077,0.034-0.14,0.032c-0.028,0.081-0.083,0.13-0.089,0.229c-0.049,0.026-0.154,0.037-0.21,0.051\r\n\t\t\t\tc0.044,0.059,0.104,0.147,0.159,0.197c0.043,0.008,0.057-0.002,0.089-0.019c0.041,0.027,0.058,0.069,0.095,0.095\r\n\t\t\t\tc0.044,0.013,0.089,0.025,0.133,0.038c0.105,0.049,0.192,0.14,0.28,0.21c0.047,0.038,0.116,0.138,0.178,0.133\r\n\t\t\t\tc-0.004,0.019-0.008,0.038-0.013,0.057c0.102,0.075,0.311,0.102,0.381,0.21c0.015,0.053,0.03,0.106,0.045,0.159\r\n\t\t\t\tc0.079,0.289-0.089,0.388-0.324,0.445c-0.131,0.031-0.222-0.051-0.337-0.032c-0.053,0.017-0.106,0.034-0.159,0.051\r\n\t\t\t\tc-0.098,0.022-0.277-0.021-0.381-0.038c-0.126-0.021-0.151-0.13-0.292-0.076c-0.078-0.037-0.078-0.076-0.121-0.146\r\n\t\t\t\tc-0.029-0.021-0.102,0.03-0.172,0.013c-0.083-0.021-0.076-0.089-0.121-0.146c-0.173,0.111-0.323-0.021-0.54,0.032\r\n\t\t\t\tc-0.196,0.047-0.34,0.172-0.515,0.229c0.002,0.017,0.004,0.034,0.006,0.051c-0.138,0.074-0.202,0.007-0.318-0.013\r\n\t\t\t\tc-0.019,0.006-0.038,0.013-0.057,0.019c-0.093-0.008-0.186-0.017-0.28-0.025c-0.013,0.025-0.025,0.051-0.038,0.076\r\n\t\t\t\tc0.029,0.031,0.069,0.042,0.083,0.089c0.053-0.002,0.106-0.004,0.159-0.006v0.006c-0.072,0.023-0.189,0.032-0.28,0.032\r\n\t\t\t\tc-0.017,0.023-0.026,0.025-0.026,0.051c0.026,0.006,0.051,0.013,0.076,0.019c0.006,0.004,0.013,0.009,0.019,0.013\r\n\t\t\t\tc-0.006,0.008-0.013,0.017-0.019,0.025c-0.114-0.018-0.214-0.013-0.337-0.006c0.011-0.013,0.021-0.025,0.032-0.038\r\n\t\t\t\tc-0.036-0.015-0.055-0.014-0.089-0.007c-0.002,0.004-0.004,0.009-0.006,0.013c0.013,0.006,0.026,0.013,0.038,0.019v0.019\r\n\t\t\t\tc-0.067,0.022-0.142,0.01-0.159-0.044c-0.091,0.011-0.203,0.041-0.254,0.095c-0.035,0.037,0.004,0.057-0.07,0.064\r\n\t\t\t\tc-0.01,0.071-0.028,0.13-0.032,0.191c0.087-0.013,0.174-0.025,0.261-0.038v0.006c-0.015,0.024-0.03,0.039-0.057,0.051\r\n\t\t\t\tc-0.015,0.017-0.03,0.034-0.045,0.051c0.035,0.006,0.049,0.02,0.064,0.045c0.014,0.023-0.007,0.02-0.013,0.064h0.057\r\n\t\t\t\tc0.006,0.008,0.013,0.017,0.019,0.025c-0.021,0.025-0.052,0.036-0.089,0.045c-0.007,0.025,0.01,0.054,0.038,0.076\r\n\t\t\t\tc0.034,0.045,0.026,0.031-0.019,0.063c-0.032-0.003-0.055-0.025-0.089-0.044c-0.011,0.023-0.021,0.047-0.032,0.07v0.045\r\n\t\t\t\tc0.105,0.013,0.133,0.046,0.222,0.07c0.003,0.06-0.021,0.124,0.006,0.165c0.034,0.021,0.068,0.042,0.102,0.064\r\n\t\t\t\tc0.002,0.008,0.004,0.017,0.006,0.025c-0.028,0.011-0.055,0.021-0.083,0.032c0.006,0.013,0.013,0.025,0.019,0.038\r\n\t\t\t\tc0.068,0.006,0.136,0.013,0.203,0.019c0.002,0.004,0.004,0.008,0.006,0.013c-0.017,0.019-0.024,0.019-0.032,0.051\r\n\t\t\t\tc0.006,0.015,0.013,0.03,0.019,0.045c0.004,0.002,0.009,0.004,0.013,0.006c0.021-0.021,0.042-0.042,0.064-0.063\r\n\t\t\t\tc0.085-0.003,0.086,0.023,0.146,0.051c0.029,0.014,0.049-0.015,0.076-0.038c0.025,0.059,0.051,0.119,0.076,0.178\r\n\t\t\t\tc0.099,0.031,0.23-0.025,0.299,0.019c0.013-0.002,0.026-0.004,0.038-0.006c0.015-0.072,0.03-0.144,0.044-0.216\r\n\t\t\t\tc0.142-0.018,0.288,0.018,0.388,0.083c0.073,0.048,0.108,0.143,0.203,0.172c0.136,0.041,0.301-0.026,0.381-0.045\r\n\t\t\t\tc0.042-0.082,0.104-0.102,0.159-0.165c0.138,0.001,0.177,0.055,0.286,0.07c0.037-0.038,0.085-0.067,0.121-0.114h0.025\r\n\t\t\t\tc0.013,0.017,0.025,0.034,0.038,0.051c0.002,0.013,0.004,0.025,0.006,0.038c-0.039,0.043-0.09,0.068-0.127,0.114\r\n\t\t\t\tc0.017,0.03,0.034,0.059,0.051,0.089c-0.011,0.057-0.038,0.107-0.064,0.153c0.087,0.115,0.021,0.195,0.076,0.33\r\n\t\t\t\tc-0.146,0.144-0.206,0.407-0.305,0.578c-0.008,0.042-0.017,0.085-0.025,0.127c-0.041,0.134-0.077,0.258-0.172,0.337\r\n\t\t\t\tc0.074,0.186,0.148,0.373,0.222,0.559c0.012,0.018,0.023,0.014,0.051,0.032c-0.023,0.137-0.084,0.285-0.095,0.407\r\n\t\t\t\tc0.036,0.002,0.072,0.004,0.108,0.006c0.047,0.059,0.093,0.119,0.14,0.178c0.104,0.17,0.188,0.32,0.299,0.477\r\n\t\t\t\tc0.084,0.118,0.206,0.226,0.165,0.413c0.085,0.117,0.223,0.149,0.324,0.248c0.066,0.119,0.131,0.237,0.197,0.356\r\n\t\t\t\tc0.066,0.127-0.002,0.313,0.051,0.457c0.051,0.072,0.102,0.144,0.152,0.216c0.07,0.096,0.225,0.114,0.299,0.203\r\n\t\t\t\tc0.089,0.182,0.178,0.364,0.267,0.546c0.034,0.026,0.068,0.051,0.102,0.076c0.086,0.071,0.195,0.232,0.235,0.343\r\n\t\t\t\tc0.011,0.068,0.021,0.136,0.032,0.203c-0.008,0.039-0.042,0.068-0.032,0.127c0.03,0.172,0.113,0.353,0.165,0.496v0.216\r\n\t\t\t\tc0.095,0.205,0.383,0.166,0.553,0.057c0.057-0.047,0.114-0.093,0.172-0.14c0.094-0.028,0.217,0.012,0.299-0.013\r\n\t\t\t\tc0.128-0.039,0.228-0.133,0.343-0.172c0.078-0.026,0.163,0.016,0.229-0.019c0.069-0.036,0.087-0.124,0.152-0.159\r\n\t\t\t\tc0.238-0.13,0.547-0.129,0.769-0.267c0.062-0.038,0.046-0.087,0.076-0.159c0.029-0.07,0.139-0.142,0.21-0.172\r\n\t\t\t\tc0.121-0.04,0.241-0.081,0.362-0.121c0.07,0.008,0.14,0.017,0.21,0.025c0.025-0.015,0.051-0.03,0.076-0.045\r\n\t\t\t\tc0.045-0.091,0.016-0.205,0.108-0.248c0.096-0.045,0.186,0.021,0.273-0.051c0.032-0.027,0.027-0.071,0.044-0.114\r\n\t\t\t\tc0.048-0.12,0.19-0.153,0.349-0.159c0.009-0.116-0.012-0.304,0.026-0.419c0.056-0.024,0.123,0.021,0.172-0.006\r\n\t\t\t\tc0.057-0.042,0.064-0.147,0.102-0.21c0.042-0.04,0.085-0.08,0.127-0.121c0.059-0.074,0.114-0.154,0.159-0.242\r\n\t\t\t\tc-0.012-0.066-0.116-0.088-0.159-0.127c-0.064-0.08-0.127-0.161-0.191-0.241c-0.048-0.033-0.104,0.008-0.165-0.006\r\n\t\t\t\tc-0.089-0.049-0.178-0.098-0.267-0.146c-0.071-0.049-0.182-0.161-0.21-0.248c-0.021-0.066,0.011-0.151-0.013-0.203\r\n\t\t\t\tc-0.015-0.018-0.024-0.019-0.057-0.019c0.044-0.068,0.068-0.116,0.057-0.229h-0.006c-0.045,0.057-0.089,0.115-0.133,0.172\r\n\t\t\t\tc-0.113,0.09-0.215,0.143-0.311,0.267c-0.023,0.045-0.047,0.089-0.07,0.134c-0.035,0.031-0.051,0.02-0.07,0.07\r\n\t\t\t\tc-0.042,0.011-0.063,0.014-0.095-0.006c-0.002,0.011-0.004,0.021-0.006,0.032c-0.074,0.026-0.394,0.021-0.477-0.019\r\n\t\t\t\tc-0.019,0.017-0.023,0.015-0.032,0.044c-0.073,0.007-0.13-0.005-0.203-0.006c0.013-0.058-0.015-0.063-0.064-0.076\r\n\t\t\t\tc-0.037-0.089,0.072-0.127,0.076-0.216c0.001-0.028-0.017-0.268-0.025-0.28c-0.018-0.025-0.035-0.018-0.051-0.057\r\n\t\t\t\tc-0.015-0.002-0.03-0.004-0.044-0.006c-0.083,0.059-0.119,0.288-0.07,0.407c0.007,0.07,0.01,0.094-0.051,0.089\r\n\t\t\t\tc-0.045-0.059-0.108-0.211-0.114-0.311c-0.034-0.027-0.036-0.039-0.076-0.032c-0.033-0.107-0.058-0.116-0.013-0.229\r\n\t\t\t\tc-0.013-0.021-0.026-0.042-0.038-0.064c0.02-0.031,0.039-0.029,0.045-0.076c-0.062-0.082-0.205-0.072-0.248-0.172\r\n\t\t\t\tc-0.036-0.028-0.026-0.027-0.006-0.064c-0.037-0.017-0.058-0.015-0.114-0.013c-0.07-0.185-0.159-0.356-0.21-0.553\r\n\t\t\t\tc-0.036,0.009-0.072,0.017-0.108,0.026c-0.013-0.006-0.026-0.013-0.038-0.019c0.021-0.026,0.042-0.051,0.063-0.076h0.044\r\n\t\t\t\tc-0.008-0.04-0.017-0.08-0.025-0.121c0.026-0.034,0.169-0.04,0.235-0.038c0.055-0.054,0.047-0.118,0.127-0.152h0.019\r\n\t\t\t\tc-0.001,0.041,0.001,0.074,0.019,0.095c0.038,0.072,0.165,0.061,0.242,0.032c0.043,0.069,0.143,0.143,0.172,0.21v0.102\r\n\t\t\t\tc0.031,0.082,0.136,0.259,0.191,0.337c0.064,0.091,0.221,0.082,0.311,0.146c0.047,0.057,0.093,0.115,0.14,0.172\r\n\t\t\t\tc0.106,0.063,0.211,0.06,0.337,0.102c0.07,0.023,0.11,0.086,0.197,0.095c0.042-0.036,0.186-0.121,0.197-0.172\r\n\t\t\t\tc0.098-0.035,0.203-0.075,0.324-0.044c0.05,0.012,0.038,0.034,0.089,0.038c0.015,0.043,0.01,0.1,0.032,0.159\r\n\t\t\t\tc0.026,0.069,0.095,0.113,0.095,0.21c0.068,0.011,0.135,0.056,0.184,0.076h0.254c0.025,0.023,0.051,0.047,0.076,0.07\r\n\t\t\t\tc0.142,0.002,0.284,0.004,0.426,0.007c0.075,0.02,0.118,0.067,0.216,0.083c0.131,0.021,0.254-0.027,0.356-0.044h0.286\r\n\t\t\t\tc0.057-0.021,0.1-0.057,0.191-0.07c0.08,0.167,0.549-0.018,0.686-0.025c0.074,0.053,0.075,0.102,0.07,0.223\r\n\t\t\t\tc0.047,0.011,0.093,0.021,0.14,0.032c0.023,0.068,0.047,0.136,0.07,0.203c0.05,0.067,0.114,0.032,0.191,0.076\r\n\t\t\t\tc0.03,0.042,0.059,0.085,0.089,0.127c0.103,0.123,0.38,0.229,0.597,0.153c0.003,0.052-0.02,0.064-0.051,0.095\r\n\t\t\t\tc-0.142,0.145-0.214,0.023-0.369,0.076h-0.013c0.049,0.113,0.433,0.501,0.572,0.508c0.04-0.015,0.081-0.03,0.121-0.044\r\n\t\t\t\tc0.145-0.047,0.383-0.127,0.254-0.299c0.008-0.03,0.017-0.059,0.025-0.089c0.032-0.019,0.083-0.021,0.14-0.019\r\n\t\t\t\tc-0.019,0.072-0.014,0.207,0.013,0.286c0.016,0.046,0.116,0.085,0.102,0.146c-0.015,0.062-0.095,0.113-0.102,0.191\r\n\t\t\t\tc0.027,0.146,0.055,0.292,0.083,0.438c0.034,0.205,0.068,0.411,0.102,0.616c0.07,0.251,0.21,0.444,0.305,0.655\r\n\t\t\t\tc0.065,0.143,0.116,0.299,0.165,0.457c0.021,0.079,0.042,0.157,0.064,0.235c0.038,0.055,0.076,0.11,0.114,0.165\r\n\t\t\t\tc0.074,0.163,0.148,0.326,0.222,0.489c0.032,0.112,0.064,0.225,0.095,0.337c0.059,0.064,0.119,0.127,0.178,0.191\r\n\t\t\t\tc0.09-0.003,0.218-0.064,0.248-0.127c0.026-0.054,0.004-0.106,0.038-0.146c0.083-0.028,0.165-0.055,0.248-0.083\r\n\t\t\t\tc-0.013-0.027-0.034-0.042-0.057-0.057c0.025-0.072,0.051-0.144,0.076-0.216c0.037-0.022,0.108-0.021,0.172-0.019\r\n\t\t\t\tc0.023-0.118-0.033-0.248-0.019-0.362c0.025-0.213,0.286-0.458,0.108-0.655c0.057-0.141-0.035-0.296,0-0.451\r\n\t\t\t\tc0.021-0.047,0.042-0.093,0.064-0.14c0.06-0.048,0.118-0.061,0.191-0.019c0.048-0.031,0.078-0.105,0.095-0.165\r\n\t\t\t\tc0.058-0.032,0.17-0.01,0.229-0.051c0.065-0.045,0.048-0.168,0.108-0.216c0.063-0.032,0.127-0.064,0.191-0.095\r\n\t\t\t\tc0.072-0.046,0.111-0.143,0.178-0.184c0.046-0.028,0.088-0.032,0.127-0.064c0.097-0.119,0.195-0.237,0.292-0.356\r\n\t\t\t\tc0.078-0.054,0.207-0.041,0.292-0.095c0.106-0.067,0.148-0.181,0.229-0.273c-0.013-0.045-0.025-0.089-0.038-0.134\r\n\t\t\t\tc0.071-0.072,0.179-0.083,0.267-0.14c0.032-0.034,0.064-0.068,0.095-0.102c0.029,0.022,0.05,0.059,0.057,0.102\r\n\t\t\t\tc0.013,0.004,0.025,0.008,0.038,0.013c0.017-0.03,0.034-0.059,0.051-0.089c0.002-0.004,0.004-0.008,0.006-0.013\r\n\t\t\t\tc0.034,0.02,0.042,0.065,0.051,0.108h0.089c-0.005-0.031-0.002-0.042,0.006-0.07c0.019,0.01,0.038,0.021,0.057,0.032\r\n\t\t\t\tc0.013-0.021,0.025-0.042,0.038-0.063c0.008-0.006,0.017-0.013,0.025-0.019c0.009,0.021,0.017,0.043,0.026,0.064h0.038\r\n\t\t\t\tc0.026-0.034,0.046-0.064,0.051-0.121c0.004-0.002,0.008-0.004,0.013-0.006c0.021,0.038,0.042,0.076,0.063,0.115h0.045\r\n\t\t\t\tc0.016-0.069,0.027-0.078,0.095-0.095c0.022-0.07-0.005-0.129-0.032-0.184c-0.002-0.034-0.003-0.067,0.013-0.083\r\n\t\t\t\tc0.004-0.004,0.009-0.009,0.013-0.013c0.032,0.042,0.064,0.085,0.095,0.127c0.07-0.001,0.1-0.022,0.146-0.044\r\n\t\t\t\tc0.175,0.137,0.122,0.639,0.362,0.705c0.022,0.006,0.054-0.002,0.076,0.006v0.083c0.053,0.035,0.082,0.001,0.127,0.025\r\n\t\t\t\tc0.068,0.037,0.107,0.146,0.133,0.229v0.006c-0.034,0.006-0.068,0.013-0.102,0.019c0.028,0.031,0.065,0.053,0.108,0.07\r\n\t\t\t\tc0.011-0.019,0.021-0.038,0.032-0.057c0.004-0.002,0.009-0.004,0.013-0.006c0.079,0.128,0.174,0.362,0.146,0.578\r\n\t\t\t\tc-0.017,0.129-0.098,0.22-0.102,0.362c0.015,0.011,0.03,0.021,0.044,0.032c0.047-0.038,0.073-0.066,0.153-0.076\r\n\t\t\t\tc-0.006,0.025-0.013,0.051-0.019,0.076c0.011,0.011,0.021,0.021,0.032,0.032h0.025c0.029-0.023,0.031-0.041,0.083-0.044v0.057\r\n\t\t\t\tc0.08,0.073,0.094-0.079,0.153-0.121c0.184-0.132,0.273-0.031,0.305-0.343h0.025c0.085,0.062,0.089,0.235,0.197,0.267\r\n\t\t\t\tc0.026,0.18,0.051,0.36,0.076,0.54c0.047,0.164,0.151,0.309,0.203,0.451c0.053,0.144,0.03,0.29,0.025,0.432\r\n\t\t\t\tc0.019,0.01,0.036,0.013,0.07,0.013c-0.033,0.078-0.145,0.34-0.114,0.413c0.017,0.013,0.034,0.025,0.051,0.038\r\n\t\t\t\tc-0.064,0.162-0.161,0.391-0.102,0.566c0.025-0.011,0.051-0.021,0.076-0.032c0.085,0.091,0.166,0.136,0.21,0.273\r\n\t\t\t\tc0.02,0.008,0.034,0.009,0.064,0c0.043,0.057,0.051,0.099,0.051,0.197c0.011,0.006,0.021,0.013,0.032,0.019\r\n\t\t\t\tc0.034,0.043,0.078,0.03,0.121,0.006c0.004,0.004,0.008,0.008,0.013,0.013c-0.018,0.139-0.008,0.3,0.044,0.445\r\n\t\t\t\tc0.025,0.047,0.051,0.093,0.076,0.14c0.009,0.069-0.024,0.13,0.013,0.191c0.04,0.034,0.08,0.068,0.121,0.102\r\n\t\t\t\tc0.016,0.022,0.022,0.056,0.031,0.088C55.358,48.795,44.764,58,32,58z M20.929,9.847c0.001,0,0.002,0,0.003,0\r\n\t\t\t\tc0.002,0.003,0.004,0.006,0.006,0.009c-0.001,0-0.002,0-0.003,0C20.933,9.853,20.931,9.85,20.929,9.847z M43.915,25.038\r\n\t\t\t\tc-0.028,0.012-0.031-0.019-0.07-0.013c-0.034,0.011-0.068,0.021-0.102,0.032c-0.004-0.002-0.008-0.004-0.013-0.006\r\n\t\t\t\tc-0.002-0.023-0.004-0.047-0.006-0.07c-0.013-0.004-0.026-0.008-0.038-0.013c-0.004,0.017-0.008,0.034-0.013,0.051\r\n\t\t\t\tc-0.048-0.011-0.054-0.013-0.108-0.006c-0.017-0.034-0.034-0.068-0.051-0.102c-0.067,0.075-0.078,0.271-0.044,0.369\r\n\t\t\t\tc0.039,0.021,0.133,0.008,0.216,0.006c-0.015,0.019-0.03,0.038-0.044,0.057c0.004,0.013,0.008,0.025,0.013,0.038\r\n\t\t\t\tc0.014,0.023,0.042,0.036,0.07,0.045v0.019c-0.045-0.004-0.089-0.008-0.133-0.013c-0.011,0.015-0.021,0.03-0.032,0.045v0.044\r\n\t\t\t\tc0.042-0.029,0.066-0.018,0.127-0.006c0.024,0.067,0.085,0.076,0.114,0.133c0.014,0.054-0.038,0.118-0.038,0.203\r\n\t\t\t\tc0,0.04-0.022,0.09-0.019,0.108c0.018,0.102,0.109,0.354,0.025,0.419c-0.061,0.047-0.192,0.025-0.28,0.045\r\n\t\t\t\tc-0.314,0.07-0.748,0.1-0.858-0.197c-0.119-0.032-0.251-0.062-0.35-0.095c-0.052-0.198,0.057-0.392,0.057-0.559\r\n\t\t\t\tc0.006-0.004,0.013-0.008,0.019-0.013c0.017,0.015,0.019,0.017,0.025,0.044c0.006,0.004,0.013,0.008,0.019,0.013\r\n\t\t\t\tc0.006-0.03,0.013-0.059,0.019-0.089c0.02-0.009,0.021-0.011,0.044-0.006c-0.012-0.168,0.011-0.45,0.28-0.337h0.006\r\n\t\t\t\tc-0.002-0.011-0.004-0.021-0.006-0.032c-0.056-0.128-0.19-0.036-0.242-0.108c-0.03-0.042-0.076-0.085-0.095-0.127\r\n\t\t\t\tc-0.023-0.049-0.009-0.096-0.038-0.133c-0.041-0.053-0.106-0.142-0.159-0.184c-0.019-0.006-0.038-0.013-0.057-0.019\r\n\t\t\t\tc-0.05-0.07-0.077-0.16-0.14-0.216c-0.015-0.004-0.03-0.009-0.044-0.013c-0.031-0.047,0.006-0.079-0.044-0.108\r\n\t\t\t\tc-0.057-0.081-0.018-0.217,0.019-0.311v-0.019H41.92c-0.011,0.038-0.021,0.076-0.032,0.114h-0.006\r\n\t\t\t\tc-0.001-0.113-0.014-0.227-0.114-0.286c-0.032-0.019-0.075-0.01-0.089-0.045v-0.032c0.004-0.075,0.083-0.081,0.114-0.127\r\n\t\t\t\tc0.062-0.092,0.092-0.195,0.121-0.286c0.004-0.006,0.008-0.013,0.013-0.019c0.105,0.051,0.2-0.03,0.28-0.076\r\n\t\t\t\tc0.015,0.008,0.03,0.017,0.044,0.025c0.016-0.02,0.02-0.029,0.019-0.07c0.102-0.023,0.134-0.121,0.216-0.153\r\n\t\t\t\tc0.04-0.002,0.081-0.004,0.121-0.006c0.13-0.041,0.242-0.21,0.413-0.197c0.096,0.007,0.137,0.073,0.21,0.089\r\n\t\t\t\tc0.077,0.017,0.097-0.038,0.133-0.051c0.057,0.013,0.114,0.025,0.172,0.038c0.015,0.025,0.03,0.051,0.045,0.076\r\n\t\t\t\tc-0.017,0.017-0.034,0.034-0.051,0.051c0.047,0.164,0.01,0.207-0.083,0.33c0.004,0.058,0.07,0.083,0.114,0.095\r\n\t\t\t\tc0.002,0.004,0.004,0.008,0.006,0.013c-0.138-0.013-0.275-0.025-0.413-0.038c-0.038,0.007-0.047,0.027-0.102,0.026\r\n\t\t\t\tc-0.013,0.034-0.025,0.068-0.038,0.102c-0.029,0.036-0.057,0.02-0.076,0.076c0.027,0.039,0.064,0.068,0.114,0.083\r\n\t\t\t\tc0.006,0.008,0.013,0.017,0.019,0.026c-0.061,0.044-0.214-0.025-0.337-0.019c-0.006,0.006-0.013,0.013-0.019,0.019v0.083\r\n\t\t\t\tc0.039,0.026,0.133,0.043,0.184,0.051c0.028,0.155,0.139,0.203,0.133,0.368h0.089c0.037,0.027,0.071,0.069,0.089,0.114\r\n\t\t\t\tc0.089,0.012,0.165-0.009,0.235,0.064c-0.034,0.064-0.07,0.143-0.095,0.203c0.023,0.038-0.002,0.077,0.019,0.121\r\n\t\t\t\tc0.013,0.006,0.026,0.013,0.038,0.019c-0.002,0.019-0.004,0.038-0.006,0.057c0.013,0.029,0.055,0.079,0.076,0.114v0.013\r\n\t\t\t\tc0.027-0.072,0.011-0.226,0.032-0.305c0.087-0.015,0.173-0.031,0.273-0.025c0.015,0.056,0.023,0.174,0.051,0.216\r\n\t\t\t\tc0.046,0.071,0.146,0.075,0.197,0.178c-0.015,0.031-0.026,0.037-0.057,0.051c-0.041-0.008-0.042-0.024-0.083-0.032\r\n\t\t\t\tC43.898,24.987,43.907,25.012,43.915,25.038z M35.799,24.777c-0.004,0.004-0.008,0.008-0.013,0.013\r\n\t\t\t\tc-0.025-0.022-0.041-0.037-0.083-0.045c0.004-0.011,0.009-0.021,0.013-0.032c0.017,0.008,0.034,0.017,0.051,0.025\r\n\t\t\t\tC35.788,24.751,35.789,24.757,35.799,24.777z M57.643,35.618c-0.368,0.016-0.324-0.225-0.388-0.502\r\n\t\t\t\tc-0.013,0.004-0.025,0.008-0.038,0.013c-0.056-0.044-0.033-0.145-0.051-0.222c-0.063,0.004-0.119,0.023-0.178,0.013\r\n\t\t\t\tc-0.153-0.249,0.124-0.633,0.191-0.826c-0.004-0.053-0.009-0.106-0.013-0.159c0.02-0.082,0.062-0.114,0.025-0.216\r\n\t\t\t\tc0.092-0.071,0.145-0.061,0.292-0.051c-0.006,0.076-0.013,0.152-0.019,0.229c0.058,0.001,0.08,0.024,0.121,0.032\r\n\t\t\t\tc0.078,0.014,0.107-0.054,0.191-0.006c0.038,0.04,0.076,0.08,0.115,0.121c0.002,0.001,0.004,0.001,0.006,0.002\r\n\t\t\t\tc-0.043,0.556-0.111,1.104-0.189,1.65C57.688,35.667,57.663,35.644,57.643,35.618z M8.363,28.628\r\n\t\t\t\tc-0.002-0.006-0.004-0.013-0.006-0.019v0.019H8.363z M8.35,28.59c-0.001-0.011-0.009-0.009-0.011-0.018\r\n\t\t\t\tc0.001,0.006,0.003,0.012,0.004,0.018H8.35z M42.555,41.414c-0.037-0.058-0.107-0.06-0.14-0.133\r\n\t\t\t\tc-0.068-0.054-0.061-0.042-0.127,0.013c0.009,0.1,0.008,0.236-0.07,0.299c-0.044,0.036-0.08,0.04-0.102,0.102\r\n\t\t\t\tc-0.039-0.014-0.048-0.034-0.063-0.07c-0.019-0.002-0.038-0.004-0.057-0.006c-0.003,0.068,0.015,0.109,0.038,0.165\r\n\t\t\t\tc-0.004,0.011-0.008,0.021-0.013,0.032c-0.024,0.016-0.04,0.025-0.083,0.025c-0.002,0.004-0.004,0.009-0.006,0.013\r\n\t\t\t\tc0.003,0.044,0.026,0.059,0.045,0.102c-0.023,0.025-0.047,0.051-0.07,0.076c-0.039-0.004-0.04-0.009-0.051-0.038H41.85\r\n\t\t\t\tc-0.032,0.028-0.063,0.055-0.095,0.083c0.008,0.034,0.022,0.045,0.038,0.07c-0.013,0.009-0.025,0.017-0.038,0.026\r\n\t\t\t\tc-0.024,0.01-0.027-0.009-0.064-0.019c-0.047,0.029-0.093,0.059-0.14,0.089c0.004,0.025,0.009,0.051,0.013,0.076\r\n\t\t\t\tc-0.071,0.017-0.121-0.054-0.21-0.013c-0.017,0.019-0.034,0.038-0.051,0.057c-0.04,0.02-0.074-0.013-0.108-0.013\r\n\t\t\t\tc-0.025,0.019-0.051,0.038-0.076,0.057c-0.044,0.002-0.089,0.004-0.133,0.006c0,0.213-0.083,0.245-0.14,0.381\r\n\t\t\t\tc-0.025,0.1,0.069,0.325,0.121,0.388c-0.015,0.032-0.03,0.064-0.044,0.096c0.032,0.038,0.064,0.076,0.095,0.114\r\n\t\t\t\tc0.03,0.115-0.166,0.512-0.216,0.559c-0.025,0.009-0.051,0.017-0.076,0.025c-0.045,0.032-0.102,0.233-0.089,0.311\r\n\t\t\t\tc0.053,0.097,0.106,0.195,0.159,0.292c-0.013,0.049-0.025,0.097-0.038,0.146c-0.031,0.144,0.06,0.157,0.083,0.229\r\n\t\t\t\tc0.016,0.051-0.006,0.092,0.019,0.127c0.083,0.119,0.262,0.084,0.343,0.21c0.137-0.008,0.17-0.09,0.286-0.121\r\n\t\t\t\tc0.07-0.009,0.14-0.017,0.21-0.026c0.132-0.081,0.205-0.497,0.261-0.674c0.15-0.485,0.301-0.97,0.451-1.455\r\n\t\t\t\tc0.028-0.095-0.011-0.189,0.019-0.299c0.026-0.093,0.124-0.146,0.146-0.254c-0.047-0.072-0.09-0.157-0.089-0.273\r\n\t\t\t\tc0.011-0.006,0.021-0.013,0.032-0.019c0.004-0.004,0.008-0.009,0.013-0.013c0.029,0.053,0.07,0.133,0.121,0.165\r\n\t\t\t\tc0.035-0.029,0.114-0.123,0.102-0.191c-0.027-0.053-0.055-0.106-0.083-0.159C42.622,41.831,42.634,41.517,42.555,41.414z\r\n\t\t\t\t M10.068,26.772c0.002,0.004,0.003,0.011,0.005,0.016v-0.016H10.068z M8.337,28.565c0,0.001-0.001,0.002-0.001,0.002\r\n\t\t\t\tc0.001,0.003,0.003,0.003,0.003,0.005C8.339,28.57,8.338,28.567,8.337,28.565z M8.356,28.609\r\n\t\t\t\tc-0.002-0.006-0.004-0.013-0.006-0.019v0.019H8.356z M14.998,24.644c-0.002-0.004-0.004-0.009-0.006-0.013\r\n\t\t\t\tc-0.021-0.006-0.042-0.013-0.064-0.019c-0.026,0.019-0.046,0.037-0.057,0.07c-0.004,0.002-0.009,0.004-0.013,0.006\r\n\t\t\t\tc-0.032-0.041-0.059-0.112-0.076-0.165v-0.007c0.122-0.058,0.118-0.025,0.216-0.114V24.37c-0.015-0.006-0.03-0.013-0.045-0.019\r\n\t\t\t\tc-0.042,0.02-0.082,0.042-0.14,0.045c-0.035-0.024-0.077-0.055-0.095-0.095c-0.006-0.006-0.013-0.013-0.019-0.019\r\n\t\t\t\tc0.049-0.04,0.097-0.081,0.146-0.121c0.013-0.015,0.026-0.03,0.038-0.045c-0.085-0.053-0.196-0.098-0.331-0.083\r\n\t\t\t\tc-0.013,0.023-0.025,0.047-0.038,0.07c-0.139,0.028-0.257-0.06-0.343-0.127v-0.019c0.036-0.036,0.072-0.072,0.108-0.108\r\n\t\t\t\tc-0.044-0.017-0.089-0.034-0.133-0.051c-0.111,0.022-0.1,0.134-0.21,0.159c-0.006-0.249,0.344-0.399,0.241-0.604\r\n\t\t\t\tc0.046-0.013,0.102-0.029,0.14-0.045c0.002-0.008,0.004-0.017,0.006-0.025c-0.004-0.011-0.009-0.021-0.013-0.032\r\n\t\t\t\tc-0.013-0.004-0.025-0.008-0.038-0.013c-0.078,0.021-0.157,0.042-0.235,0.064c-0.19,0.122-0.428,0.489-0.508,0.724\r\n\t\t\t\tc0.032,0.038,0.063,0.076,0.095,0.114c-0.085,0.09-0.178,0.003-0.235,0.165c-0.004,0.008-0.008,0.017-0.013,0.025\r\n\t\t\t\tc0.049,0.013,0.098,0.025,0.146,0.038c-0.09,0.09-0.264,0.111-0.324,0.229c-0.016,0.029,0.012,0.075,0.026,0.114\r\n\t\t\t\tc0.097-0.011,0.195-0.021,0.292-0.032c0.121,0.017,0.242,0.034,0.362,0.051c0.11,0.02,0.23-0.003,0.248-0.083\r\n\t\t\t\tc0.034-0.004,0.068-0.008,0.102-0.013v0.096c0.004,0.006,0.008,0.013,0.013,0.019c0.013-0.002,0.025-0.004,0.038-0.006\r\n\t\t\t\tc0.033-0.011,0.042-0.037,0.051-0.07c0.057,0.006,0.114,0.013,0.172,0.019v0.013c-0.121,0.055-0.153,0.168-0.305,0.21\r\n\t\t\t\tc-0.012,0.026-0.007,0.015,0,0.045c0.033,0.016,0.082,0.021,0.133,0.019c0.096-0.105,0.276-0.194,0.343-0.311\r\n\t\t\t\tc0.011,0.004,0.021,0.008,0.032,0.013c0.021,0.028,0.042,0.055,0.064,0.083c-0.002,0.068-0.031,0.109-0.064,0.146\r\n\t\t\t\tc0.002,0.017,0.004,0.034,0.006,0.051c0.017,0.002,0.034,0.004,0.051,0.006c0.025-0.021,0.051-0.042,0.076-0.063\r\n\t\t\t\tc0.004,0.036,0.008,0.072,0.013,0.108c0.053,0.015,0.106,0.03,0.159,0.045c0.031-0.093,0.108-0.194,0.095-0.299\r\n\t\t\t\tC14.985,24.767,14.974,24.733,14.998,24.644z M30.531,24.606c-0.011,0.008-0.021,0.017-0.032,0.025\r\n\t\t\t\tc0.014,0.032,0.014,0.022,0.057,0.019v0.006c-0.011,0.011-0.021,0.021-0.032,0.032c-0.002,0.004-0.004,0.008-0.006,0.013\r\n\t\t\t\tc0.021,0.009,0.042,0.017,0.063,0.026c-0.011,0.015-0.021,0.03-0.032,0.044c0.011,0.009,0.021,0.017,0.032,0.025\r\n\t\t\t\tc0.019,0.002,0.038,0.004,0.057,0.006v0.032c0.013,0.002,0.025,0.004,0.038,0.006c0.109-0.111,0.08-0.372,0.076-0.559\r\n\t\t\t\tc-0.008-0.006-0.017-0.013-0.025-0.019c-0.004,0.002-0.008,0.004-0.013,0.006c-0.004,0.03-0.008,0.059-0.013,0.089\r\n\t\t\t\tc-0.002,0.003-0.171,0.074-0.21,0.114c0.001,0.025,0.001,0.024,0.019,0.044c-0.009,0.007-0.017,0.013-0.026,0.019\r\n\t\t\t\tC30.493,24.58,30.509,24.579,30.531,24.606z M35.215,27.014c0.142-0.008,0.284-0.017,0.426-0.025\r\n\t\t\t\tc0.017-0.028,0.025-0.06,0.032-0.102c-0.045,0.028-0.097,0.035-0.146,0.064c-0.008-0.004-0.017-0.009-0.025-0.013\r\n\t\t\t\tc0.004-0.017,0.009-0.034,0.013-0.051c-0.002-0.002-0.004-0.004-0.006-0.006c-0.098,0.011-0.135,0.002-0.21-0.032\r\n\t\t\t\tc-0.07,0.006-0.14,0.013-0.21,0.019c-0.02-0.019-0.014-0.025-0.051-0.032c0.006-0.009,0.013-0.017,0.019-0.026\r\n\t\t\t\tc-0.004-0.006-0.008-0.013-0.013-0.019c-0.015,0.008-0.03,0.017-0.044,0.026c-0.034-0.012-0.056-0.014-0.076-0.038v-0.013\r\n\t\t\t\tc-0.011,0.013-0.01,0.012-0.013,0.038h-0.032c-0.006,0.032-0.013,0.063-0.019,0.095c0.087,0.039,0.26,0.031,0.356,0.07V27.014z\r\n\t\t\t\t M32.367,26.423c0.035-0.028,0.056-0.073,0.095-0.095c0.013-0.037-0.026-0.055-0.045-0.095c-0.036-0.095,0.072-0.224,0.102-0.292\r\n\t\t\t\tv-0.006c-0.058-0.014-0.12,0.013-0.172,0.025c-0.214,0.053-0.3,0.057-0.458-0.044c-0.091,0.081-0.209,0.007-0.254,0.152\r\n\t\t\t\tc0.043,0.085,0.104,0.06,0.191,0.102C32.004,26.254,32.172,26.367,32.367,26.423z M21.217,10.482\r\n\t\t\t\tc0.035-0.019,0.07-0.038,0.105-0.057c0.055-0.019,0.109-0.037,0.164-0.056c0.003-0.008,0.007-0.017,0.01-0.025\r\n\t\t\t\tc-0.104,0.008-0.218,0.043-0.302,0.036c-0.066,0.038-0.132,0.076-0.197,0.114c-0.025,0.014-0.069,0.026-0.071,0.048\r\n\t\t\t\tc0.004,0.002,0.008,0.004,0.013,0.006c0.045-0.002,0.096-0.023,0.138-0.036C21.123,10.502,21.17,10.492,21.217,10.482z\r\n\t\t\t\t M16.682,18.341c-0.01,0.031-0.094,0.043-0.109,0.087c0.001,0.002,0.001,0.003,0.002,0.005c0.076-0.011,0.12-0.032,0.157-0.06\r\n\t\t\t\tc0.001-0.015-0.005-0.022-0.016-0.032C16.705,18.339,16.7,18.338,16.682,18.341z M30.575,25.66\r\n\t\t\t\tc0.019-0.025,0.038-0.051,0.057-0.076c0.054-0.026,0.099,0,0.146,0.013c0.02-0.058,0.068-0.112,0.057-0.197\r\n\t\t\t\tc-0.006-0.047-0.013-0.093-0.019-0.14c0.006-0.036,0.036-0.069,0.044-0.095c0.031-0.095-0.097-0.241-0.153-0.26\r\n\t\t\t\tc-0.085,0.08-0.164,0.087-0.311,0.114c-0.004,0.004-0.008,0.008-0.013,0.013c0.017,0.081,0.077,0.106,0.095,0.197\r\n\t\t\t\tC30.517,25.416,30.356,25.615,30.575,25.66z M30.512,36.559c-0.028,0.032-0.044,0.092-0.089,0.108v0.057\r\n\t\t\t\tc0.013,0.004,0.025,0.008,0.038,0.013c0.082-0.01,0.066-0.094,0.127-0.127C30.57,36.578,30.553,36.568,30.512,36.559z\r\n\t\t\t\t M26.304,19.147c0.035-0.024,0.05-0.049,0.076-0.083c0.002-0.004,0.004-0.009,0.006-0.013c0.025,0.017,0.051,0.034,0.076,0.051\r\n\t\t\t\tc-0.033,0.09-0.136,0.211-0.089,0.305v0.013c0.082-0.047,0.165-0.094,0.235-0.152h0.025c0.006,0.028,0.013,0.055,0.019,0.083\r\n\t\t\t\tc-0.02,0.027-0.04,0.046-0.076,0.057c-0.009,0.057,0.008,0.105,0.051,0.127c0.034,0.062-0.106,0.181-0.121,0.28\r\n\t\t\t\tc0.051,0.013,0.102,0.025,0.153,0.038c0.024-0.018,0.033-0.026,0.038-0.064c0.038,0.011,0.076,0.021,0.114,0.032\r\n\t\t\t\tc0.138-0.008,0.086-0.079,0.267-0.032c-0.045,0.057-0.103,0.092-0.121,0.178c0.025,0.053,0.055,0.069,0.089,0.108\r\n\t\t\t\tc0.036-0.007,0.072-0.013,0.108-0.019h0.006c-0.005,0.156-0.076,0.23-0.013,0.356v0.006c-0.215,0.003-0.415,0.024-0.489,0.172\r\n\t\t\t\tv0.006h0.133v0.013c0.023,0.036,0.008,0.103,0.006,0.159c-0.078,0.113-0.267,0.119-0.299,0.178\r\n\t\t\t\tc-0.011,0.011-0.021,0.021-0.032,0.032c0.025,0.021,0.051,0.042,0.076,0.064c0.085,0.002,0.169,0.004,0.254,0.006\r\n\t\t\t\tc0.061,0.03,0.123,0.059,0.184,0.089h0.013c0.09-0.005,0.137-0.049,0.203-0.076c-0.029,0.06-0.086,0.099-0.089,0.172\r\n\t\t\t\tc-0.131,0.033-0.232-0.046-0.343,0.006c-0.036,0.041-0.02,0.083-0.095,0.07c-0.013,0.136-0.232,0.282-0.35,0.318\r\n\t\t\t\tc-0.002,0.004-0.004,0.009-0.006,0.013c0.032,0.009,0.064,0.017,0.095,0.026c0.015,0.015,0.03,0.03,0.045,0.045\r\n\t\t\t\tc0.052-0.069,0.127-0.122,0.216-0.153c0.045,0.021,0.07,0.005,0.095-0.013c0.108,0.059,0.203,0.111,0.21-0.089\r\n\t\t\t\tc0.2-0.024,0.253-0.004,0.439,0.013c-0.004-0.015-0.009-0.03-0.013-0.044c0.085-0.013,0.17-0.025,0.254-0.038\r\n\t\t\t\tc0.048-0.007,0.063,0.026,0.095,0.032c0.042-0.011,0.085-0.021,0.127-0.032c0.061,0.009,0.123,0.017,0.184,0.025\r\n\t\t\t\tc0.074-0.014,0.1-0.073,0.203-0.064c0.004-0.059,0.085-0.077,0.133-0.089v-0.089h-0.013c-0.014-0.009-0.237-0.029-0.299-0.032\r\n\t\t\t\tV21.13c0.107-0.031,0.369-0.204,0.4-0.299c-0.006-0.055-0.013-0.11-0.019-0.165c-0.087-0.068-0.271-0.169-0.369-0.032\r\n\t\t\t\tc-0.034-0.007-0.068-0.013-0.102-0.019c0.135-0.201,0.055-0.175-0.076-0.318c-0.002-0.002,0.009-0.153-0.025-0.203\r\n\t\t\t\tc-0.049-0.064-0.097-0.127-0.146-0.191c-0.055-0.03-0.115-0.006-0.153-0.051c-0.069-0.084-0.056-0.196-0.095-0.299\r\n\t\t\t\tc-0.031-0.053-0.237-0.227-0.318-0.222c-0.131,0.007-0.14,0.075-0.305,0.006c-0.002-0.004-0.004-0.008-0.006-0.013\r\n\t\t\t\tc0.123,0.003,0.258-0.01,0.311-0.076c0.004-0.002,0.008-0.004,0.013-0.006c-0.034-0.019-0.068-0.038-0.102-0.057\r\n\t\t\t\tc-0.002-0.004-0.004-0.009-0.006-0.013c0.198-0.003,0.277-0.285,0.331-0.426c0.013-0.025,0.001-0.021-0.013-0.051\r\n\t\t\t\tc-0.1-0.073-0.46-0.024-0.623-0.025c-0.006-0.009-0.013-0.017-0.019-0.025c0.017-0.197,0.253-0.175,0.324-0.311\r\n\t\t\t\tc0.035-0.032,0.013-0.032-0.006-0.07c-0.129-0.052-0.288,0.077-0.407,0.045c-0.038-0.023-0.076-0.047-0.114-0.07\r\n\t\t\t\tc-0.019,0.025-0.038,0.051-0.057,0.076c0.019,0.03,0.038,0.059,0.057,0.089c-0.04,0.013-0.08,0.025-0.121,0.038\r\n\t\t\t\tc0.025,0.051,0.051,0.102,0.076,0.152c-0.05,0.002-0.083-0.003-0.127-0.019c-0.039,0.01-0.054,0.039-0.07,0.07\r\n\t\t\t\tc0.027,0.032,0.055,0.064,0.083,0.095c-0.019,0.03-0.061,0.028-0.076,0.051c0.009,0.04,0.017,0.08,0.026,0.121\r\n\t\t\t\tc0,0-0.102,0.182-0.114,0.203C26.262,19.126,26.283,19.136,26.304,19.147z M23.552,15.69c0.122,0.059,0.229,0.003,0.261-0.114\r\n\t\t\t\tc0.002-0.025,0.004-0.051,0.006-0.076c0.061-0.015,0.123-0.03,0.184-0.045c0.041-0.073,0.083-0.252,0.019-0.337\r\n\t\t\t\tc-0.041-0.048-0.155-0.016-0.222-0.038c-0.027-0.017-0.055-0.034-0.083-0.051c-0.016-0.036-0.003-0.092,0.013-0.134\r\n\t\t\t\tc-0.008-0.015-0.017-0.03-0.025-0.045c-0.139-0.061-0.251-0.035-0.311-0.172c-0.039-0.024-0.106-0.033-0.172-0.032v0.159\r\n\t\t\t\tc-0.129,0.091-0.311,0.046-0.483,0.025c0.022,0.049,0.05,0.087,0.044,0.146c-0.091-0.002-0.162-0.057-0.191-0.121\r\n\t\t\t\tc-0.062-0.048-0.149-0.012-0.216,0.038c0.011,0.034,0.021,0.068,0.032,0.102v0.007c-0.017,0.006-0.034,0.013-0.051,0.019\r\n\t\t\t\tc-0.074-0.049-0.145-0.122-0.178-0.21h-0.006c-0.017,0.011-0.034,0.021-0.051,0.032c-0.031,0.052-0.008,0.145-0.006,0.229\r\n\t\t\t\tc-0.045,0.048-0.112,0.04-0.172,0.076c-0.032,0.029-0.064,0.059-0.095,0.089c-0.034-0.049-0.068-0.097-0.102-0.146\r\n\t\t\t\tc-0.02-0.043,0.074-0.098,0.057-0.178c-0.035-0.162-0.262-0.199-0.413-0.241c-0.015,0.017-0.03,0.034-0.044,0.051\r\n\t\t\t\tc-0.004,0.004-0.008,0.008-0.013,0.013c0.042,0.031,0.085,0.071,0.102,0.127v0.006c-0.138,0.096-0.242-0.171-0.324,0.006\r\n\t\t\t\tc0.025,0.034,0.051,0.068,0.076,0.102c0.006,0.006,0.013,0.013,0.019,0.019c-0.08,0.017-0.198,0.021-0.261,0.051\r\n\t\t\t\tc-0.006,0.028-0.008,0.049,0.006,0.07c0.103,0.167,0.277-0.021,0.451,0.007c0.098,0.015,0.167,0.047,0.241,0.076\r\n\t\t\t\tc0.004,0.021,0.009,0.043,0.013,0.064c-0.006,0.019-0.013,0.038-0.019,0.057c-0.108,0.081-0.481,0.067-0.534,0.165\r\n\t\t\t\tc-0.002,0.006-0.004,0.013-0.006,0.019c0.008,0.013,0.017,0.025,0.025,0.038c0.081,0.034,0.262-0.022,0.349-0.038\r\n\t\t\t\tc0.073,0.086,0.103,0.124,0.254,0.14c-0.088,0.128-0.197,0.136-0.292,0.235c0.102,0.124,0.465,0.012,0.616,0.07\r\n\t\t\t\tc0.049,0.034,0.097,0.068,0.146,0.102c0.079,0.046,0.211,0.06,0.311,0.076c0.267,0.044,0.261-0.127,0.369-0.172\r\n\t\t\t\tc0.102-0.013,0.203-0.025,0.305-0.038C23.322,15.873,23.442,15.767,23.552,15.69z M25.078,20.894\r\n\t\t\t\tc-0.023,0.009-0.047,0.017-0.07,0.026c-0.007,0.033,0.006,0.053,0.013,0.089c0.036-0.004,0.072-0.008,0.108-0.013\r\n\t\t\t\tc0.017,0.048,0.015,0.085,0.013,0.146c0.12-0.007,0.193-0.047,0.273-0.07c0.034-0.002,0.068-0.004,0.102-0.006\r\n\t\t\t\tc0.076-0.055,0.153-0.11,0.229-0.165c0.074-0.007,0.148-0.013,0.222-0.019c0.008-0.013,0.017-0.025,0.025-0.038\r\n\t\t\t\tc0.049-0.002,0.097-0.004,0.146-0.006c0.016-0.107,0.079-0.154,0.102-0.229c0.037-0.123-0.067-0.364-0.121-0.439\r\n\t\t\t\tc0.126-0.037,0.169-0.056,0.229-0.159c-0.018-0.123-0.068-0.218-0.102-0.324c-0.094-0.067-0.283-0.037-0.4,0.013\r\n\t\t\t\tc-0.064-0.001-0.088-0.026-0.102-0.076c-0.149,0.013-0.194,0.075-0.229,0.203c-0.025,0.006-0.051,0.013-0.076,0.019\r\n\t\t\t\tc-0.006,0.009-0.013,0.017-0.019,0.025h0.184c-0.025,0.064-0.066,0.089-0.133,0.108c-0.001,0.021,0.008,0.04,0.019,0.063\r\n\t\t\t\tc-0.128-0.01-0.273-0.013-0.375-0.051c-0.045,0.036-0.065,0.068-0.083,0.134v0.038c0.057-0.015,0.088-0.022,0.127,0.013h0.013\r\n\t\t\t\tc-0.037,0.042-0.05,0.035-0.038,0.102c-0.03,0.006-0.059,0.013-0.089,0.019c0.008,0.009,0.017,0.017,0.025,0.025\r\n\t\t\t\tc-0.013,0.017-0.025,0.034-0.038,0.051c0.051,0.024,0.293,0.068,0.343,0.038c0.006,0.017,0.013,0.034,0.019,0.051\r\n\t\t\t\tc-0.083,0.035-0.129,0.014-0.165,0.095c-0.008,0.022-0.004,0.012,0.013,0.038c-0.013,0.019-0.025,0.038-0.038,0.057\r\n\t\t\t\tc-0.004,0.004-0.008,0.008-0.013,0.013c0.047-0.006,0.093-0.013,0.14-0.019c-0.018,0.068-0.092,0.065-0.159,0.076\r\n\t\t\t\tc-0.021,0.026-0.02,0.078-0.044,0.102c-0.032,0.024-0.13,0.015-0.184,0.013c-0.002,0.015-0.004,0.03-0.006,0.044\r\n\t\t\t\tc0.047,0.002,0.093,0.004,0.14,0.006V20.894z M26.336,19.465c-0.008,0.048-0.009,0.074,0,0.121\r\n\t\t\t\tc0.011,0.002,0.021,0.004,0.032,0.006c0.011-0.013,0.021-0.025,0.032-0.038c-0.004-0.034-0.009-0.068-0.013-0.102\r\n\t\t\t\tC26.37,19.456,26.353,19.46,26.336,19.465z M37.611,27.116c0.023-0.013,0.016-0.005,0.019-0.038\r\n\t\t\t\tc0.145-0.004,0.169-0.092,0.292-0.102c-0.015-0.019-0.03-0.038-0.045-0.057c0.053-0.068,0.135-0.101,0.191-0.165\r\n\t\t\t\tc-0.1,0.036-0.199,0.072-0.299,0.108c-0.059-0.006-0.119-0.013-0.178-0.019c0.011,0.023,0.012,0.039,0,0.064\r\n\t\t\t\tc-0.006,0.006-0.171,0.045-0.184,0.045c0.012,0.053,0.028,0.071,0.045,0.114C37.497,27.08,37.576,27.089,37.611,27.116z\r\n\t\t\t\t M8.363,28.654h0.006c-0.002-0.006-0.004-0.013-0.006-0.019V28.654z M14.54,13.788c0.035-0.025,0.102-0.125,0.045-0.175\r\n\t\t\t\tc-0.059,0.063-0.171,0.08-0.068,0.171C14.525,13.786,14.532,13.787,14.54,13.788z M8.375,28.698h0.006\r\n\t\t\t\tc-0.004-0.015-0.008-0.029-0.013-0.044C8.371,28.668,8.373,28.683,8.375,28.698z M8.433,28.838\r\n\t\t\t\tc0.006,0.004,0.013,0.008,0.019,0.013c-0.023-0.051-0.047-0.102-0.07-0.153C8.389,28.761,8.414,28.792,8.433,28.838z\r\n\t\t\t\t M21.4,11.563c-0.005,0-0.01,0.001-0.015,0.001c-0.058,0.053-0.117,0.105-0.175,0.158c-0.053,0.024-0.106,0.048-0.158,0.072\r\n\t\t\t\tc-0.038,0.029-0.035,0.1-0.05,0.136c-0.008,0.019-0.056,0.102-0.048,0.112c0.02,0.01,0.135-0.027,0.152-0.034\r\n\t\t\t\tc0.041-0.017,0.077-0.038,0.104-0.06c0.011-0.01,0.021-0.021,0.032-0.031c0.029-0.01,0.059-0.019,0.088-0.029\r\n\t\t\t\tc0.028-0.025,0.056-0.049,0.084-0.074c0.003-0.003,0.007-0.007,0.01-0.01c0.014,0.009,0.038,0.018,0.063,0.008\r\n\t\t\t\tc0.047-0.026,0.042-0.069,0.098-0.095C21.602,11.666,21.437,11.588,21.4,11.563z M21.72,10.584c0.002,0,0.003-0.001,0.005-0.001\r\n\t\t\t\tc-0.005-0.006-0.009-0.013-0.014-0.019c-0.016,0.002-0.032,0.005-0.048,0.007c-0.148-0.003-0.224-0.095-0.411-0.061\r\n\t\t\t\tc-0.054,0.025-0.235,0.062-0.254,0.094c-0.029,0.048,0.077,0.08,0.116,0.089c0.134,0.033,0.307,0.006,0.465,0.018\r\n\t\t\t\tc0.029,0.002,0.079,0.007,0.099,0.019c0.015,0.009,0.022,0.026,0.042,0.03c0.032,0.001,0.089-0.042,0.103-0.056\r\n\t\t\t\tc0.001-0.001,0.003-0.002,0.004-0.003c-0.082-0.021-0.2-0.02-0.258-0.064C21.619,10.62,21.669,10.602,21.72,10.584z\r\n\t\t\t\t M14.242,41.547c0.147,0.036,0.426-0.012,0.508-0.108c0.048-0.056,0.064-0.206,0.095-0.267c-0.057-0.054-0.445-0.06-0.591-0.057\r\n\t\t\t\tC14.175,41.239,14.197,41.443,14.242,41.547z M10.822,34.354c0.015,0.038,0.009,0.091,0.013,0.134\r\n\t\t\t\tc0.086,0.022,0.114-0.016,0.203-0.019c0.117-0.003,0.196,0.036,0.216-0.095c-0.077-0.061-0.285-0.049-0.4-0.051\r\n\t\t\t\tC10.843,34.333,10.833,34.343,10.822,34.354z M12.735,25.375c-0.017-0.011-0.034-0.021-0.051-0.032\r\n\t\t\t\tc-0.011-0.1,0.084-0.092,0.133-0.146c0.043-0.048,0.06-0.154,0.095-0.203c-0.04-0.027-0.081-0.055-0.121-0.083\r\n\t\t\t\tc-0.045,0.101-0.251,0.268-0.216,0.413c0.05,0.208,0.421,0.141,0.47-0.025C12.9,25.097,12.854,25.337,12.735,25.375z\r\n\t\t\t\t M10.93,37.912c-0.004,0.006-0.008,0.013-0.013,0.019c0.044,0.003,0.042,0.01,0.063,0.032c-0.012,0.031-0.012,0.05,0,0.083\r\n\t\t\t\tc-0.034,0.015-0.068,0.03-0.102,0.044c-0.004,0.006-0.009,0.013-0.013,0.019v0.007c0.085,0,0.174-0.005,0.242-0.013\r\n\t\t\t\tc0.02-0.081-0.008-0.157,0.032-0.216v-0.006h-0.038C11.059,37.905,10.99,37.913,10.93,37.912z M10.015,33.979\r\n\t\t\t\tc-0.092-0.017-0.212,0.006-0.261-0.083c-0.045,0.004-0.062,0.023-0.089,0.032c-0.04-0.004-0.081-0.008-0.121-0.013\r\n\t\t\t\tc-0.04,0.009-0.059,0.049-0.127,0.038c-0.109-0.017-0.194-0.056-0.324-0.057c-0.027,0.004-0.055,0.008-0.083,0.013\r\n\t\t\t\tc-0.006,0.008-0.013,0.017-0.019,0.026v0.025c0.064,0.033,0.195,0.03,0.229,0.095c0.046,0.078-0.076,0.145,0.095,0.21\r\n\t\t\t\tc0.004,0.006,0.008,0.013,0.013,0.019c-0.128,0.082-0.41,0.037-0.572-0.013c-0.013,0.015-0.025,0.03-0.038,0.045\r\n\t\t\t\tc-0.002,0.004-0.004,0.008-0.006,0.013c0.034,0.065,0.099,0.077,0.152,0.121c0.05-0.012,0.053-0.047,0.102-0.057\r\n\t\t\t\tc0.076,0.011,0.153,0.021,0.229,0.032c0.078-0.006,0.157-0.013,0.235-0.019c0.048,0.048,0.109,0.151,0.178,0.172\r\n\t\t\t\tc0.044-0.114,0.093-0.196,0.203-0.248c0.021,0.023,0.042,0.047,0.064,0.07c0.075,0.033,0.112-0.06,0.178-0.076\r\n\t\t\t\tc0.044-0.011,0.074,0.012,0.095,0.019c0.129-0.06,0.183,0.045,0.248,0.083c0.039-0.029,0.062-0.074,0.089-0.114\r\n\t\t\t\tC10.38,34.159,10.076,34.16,10.015,33.979z M7.581,34.385c0.019,0.027,0.251,0.169,0.311,0.153\r\n\t\t\t\tc0.044-0.012,0.058-0.078,0.14-0.057c0.051,0.013,0.064,0.04,0.127,0.038c0.002-0.011,0.004-0.021,0.006-0.032\r\n\t\t\t\tc-0.073-0.11-0.33-0.158-0.515-0.153C7.628,34.352,7.604,34.368,7.581,34.385z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31.446,19.655c0.015,0.03,0.03,0.059,0.044,0.089\r\n\t\t\t\tc0.057-0.013,0.103-0.074,0.133-0.115c0.012-0.009,0.004,0,0.013-0.013c-0.023-0.013-0.047-0.026-0.07-0.038\r\n\t\t\t\tc-0.002-0.004-0.004-0.008-0.006-0.013c0.069-0.055,0.095-0.122,0.076-0.235c-0.03-0.002-0.059-0.004-0.089-0.006\r\n\t\t\t\tc-0.026,0.029-0.04,0.127-0.051,0.165c-0.058-0.027-0.089-0.049-0.108-0.114c-0.004-0.002-0.009-0.004-0.013-0.006\r\n\t\t\t\tc-0.078,0.099-0.18,0.095-0.076,0.267C31.324,19.671,31.398,19.659,31.446,19.655z M43.382,11.985\r\n\t\t\t\tc0.203,0.031,0.324,0.15,0.496,0.203c-0.004,0.021-0.009,0.042-0.013,0.064c-0.084,0.038-0.182,0.051-0.172,0.172\r\n\t\t\t\tc0.094,0.018,0.165,0.009,0.28,0.006c0.026,0.034,0.051,0.068,0.076,0.102c0.094,0.039,0.143-0.06,0.21-0.083\r\n\t\t\t\tc0.155,0.002,0.309,0.004,0.464,0.007c-0.006-0.127-0.177-0.162-0.254-0.223c-0.136-0.107-0.215-0.333-0.254-0.534\r\n\t\t\t\tc-0.085-0.43,0.254-0.283,0.292-0.597c-0.066-0.023-0.131-0.047-0.197-0.07c-0.172-0.022-0.357,0.059-0.477,0.089\r\n\t\t\t\tc-0.072,0.004-0.144,0.008-0.216,0.013c-0.088,0.044-0.135,0.159-0.235,0.203c-0.004,0.007-0.009,0.013-0.013,0.019\r\n\t\t\t\tc0.051,0.026,0.093,0.062,0.165,0.064c-0.037,0.109-0.134,0.278-0.241,0.311c-0.072,0.022-0.115-0.021-0.172-0.019\r\n\t\t\t\tc-0.049,0.061-0.104,0.114-0.07,0.229c0.019,0.025,0.038,0.051,0.057,0.076C43.251,12.115,43.276,11.969,43.382,11.985z\r\n\t\t\t\t M20.926,10.303c-0.046,0.008-0.091,0.016-0.137,0.024c-0.018,0.026-0.036,0.077-0.072,0.095\r\n\t\t\t\tc0.061,0.013,0.304-0.051,0.354-0.078C21.07,10.309,20.97,10.301,20.926,10.303z M31.37,7.524\r\n\t\t\t\tc0.061-0.032,0.123-0.064,0.184-0.095c0.036,0.055,0.072,0.11,0.108,0.165c-0.076,0.036-0.153,0.072-0.229,0.108\r\n\t\t\t\tc0.055,0.135,0.434,0.457,0.623,0.388c0.163-0.06,0.211-0.226,0.35-0.312c0.086,0.097,0.288,0.173,0.438,0.197v0.006\r\n\t\t\t\tc-0.178,0.189-0.512,0.185-0.769,0.299h-0.013c0.023,0.049,0.047,0.097,0.07,0.146c0.248-0.018,0.442-0.069,0.661-0.089\r\n\t\t\t\tc0.027,0.025,0.055,0.051,0.083,0.076c-0.102,0.131-0.323,0.152-0.559,0.146c-0.023,0.034-0.047,0.068-0.07,0.102\r\n\t\t\t\tc-0.004,0.004-0.008,0.008-0.013,0.013c0.102,0.062,0.562,0.443,0.718,0.4c0.032-0.019,0.063-0.038,0.095-0.057\r\n\t\t\t\tc-0.001-0.177,0.066-0.321,0.159-0.407c0.028-0.029,0.124-0.04,0.172-0.044c0.038-0.081,0.076-0.161,0.114-0.242\r\n\t\t\t\tc0.058-0.144,0.054-0.343,0.178-0.419c0.093-0.021,0.187-0.043,0.28-0.064c0.053-0.026,0.106-0.051,0.159-0.076\r\n\t\t\t\tc-0.048-0.083-0.189-0.174-0.28-0.21c-0.082-0.032-0.163-0.021-0.229-0.063c-0.057-0.074-0.114-0.148-0.172-0.222\r\n\t\t\t\tc-0.078,0-0.117,0.083-0.172,0.127C33.238,7.389,33.219,7.38,33.2,7.372c-0.034-0.072,0.005-0.174,0.006-0.28\r\n\t\t\t\tc-0.021-0.015-0.042-0.03-0.064-0.045h-0.172c-0.066-0.021-0.112-0.079-0.21-0.089c-0.036,0.042-0.072,0.085-0.108,0.127\r\n\t\t\t\tc-0.04,0.109,0.108,0.294,0.127,0.4c-0.019,0.017-0.038,0.034-0.057,0.051c-0.108-0.025-0.306-0.287-0.35-0.381\r\n\t\t\t\tc-0.075-0.059-0.101-0.039-0.191,0c-0.015,0.076-0.03,0.153-0.044,0.229v0.013c-0.074-0.015-0.148-0.03-0.222-0.045\r\n\t\t\t\tc-0.036-0.055-0.041-0.146-0.038-0.242c-0.077-0.016-0.176,0.02-0.235,0.032c-0.047-0.004-0.093-0.008-0.14-0.013\r\n\t\t\t\tc-0.146,0.013-0.218,0.074-0.305,0.14C31.219,7.367,31.286,7.485,31.37,7.524z M34.414,7.117v0.006\r\n\t\t\t\tc-0.066,0.146-0.101,0.233-0.28,0.267v0.114c0.275,0.013,0.551,0.025,0.826,0.038c0.059-0.04,0.119-0.081,0.178-0.121\r\n\t\t\t\tc0.078-0.033,0.162-0.016,0.254-0.045c0.078-0.04,0.157-0.08,0.235-0.121c0.104-0.078,0.208-0.157,0.311-0.235\r\n\t\t\t\tc0.002-0.004,0.004-0.008,0.006-0.013c-0.023-0.038-0.047-0.076-0.07-0.114c-0.061-0.017-0.123-0.034-0.184-0.051\r\n\t\t\t\tc-0.119-0.023-0.251,0.029-0.375,0.026c-0.025-0.051-0.051-0.102-0.076-0.153c-0.03-0.011-0.059-0.021-0.089-0.032\r\n\t\t\t\tc-0.132,0.016-0.223,0.14-0.286,0.229h-0.108c-0.028-0.1-0.003-0.248,0.025-0.343c-0.136,0.061-0.143,0.232-0.267,0.292\r\n\t\t\t\tc-0.011,0.011-0.021,0.021-0.032,0.032c-0.167-0.256-0.328-0.017-0.496-0.134c-0.059-0.07-0.119-0.14-0.178-0.21\r\n\t\t\t\tc-0.081,0.106-0.161,0.212-0.241,0.318c-0.087,0.062-0.151,0.069-0.197,0.172c-0.004,0.004-0.008,0.008-0.013,0.013\r\n\t\t\t\tC33.594,7.203,34.035,7.121,34.414,7.117z M20.993,9.697c0.035,0.033,0.134,0.07,0.225,0.035c0.034-0.013,0.049-0.034,0.076-0.05\r\n\t\t\t\tc0.019-0.02,0.038-0.04,0.057-0.061c-0.074-0.021-0.104-0.081-0.222-0.057C21.066,9.601,20.983,9.637,20.993,9.697z\r\n\t\t\t\t M21.388,8.988c-0.081,0.009-0.125-0.079-0.169-0.114c-0.024,0.041-0.114,0.079-0.126,0.107c0,0,0.086,0.119,0.094,0.127\r\n\t\t\t\tc0.011,0.01,0.028,0.019,0.044,0.023c0.039-0.003,0.22-0.108,0.242-0.129c0.013-0.013,0.03-0.035,0.009-0.052\r\n\t\t\t\tC21.451,8.925,21.406,8.976,21.388,8.988z M20.989,9.241c-0.031,0.049,0.059,0.128,0.12,0.118\r\n\t\t\t\tc0.061-0.054,0.045-0.074-0.037-0.096C21.044,9.256,21.017,9.248,20.989,9.241z M20.988,9.24c0,0,0.001,0,0.001,0\r\n\t\t\t\tc0.002-0.004-0.006-0.009-0.002-0.012C20.987,9.233,20.988,9.237,20.988,9.24z M30.588,18.905\r\n\t\t\t\tc0.119-0.015,0.252,0.008,0.413-0.006c0.016-0.051,0.02-0.072,0.064-0.095c-0.01-0.113-0.024-0.131,0.025-0.21\r\n\t\t\t\tc-0.011-0.004-0.021-0.008-0.032-0.013c-0.006,0.01-0.013,0.021-0.019,0.032c-0.055,0.015-0.11,0.03-0.165,0.044\r\n\t\t\t\tc-0.059,0.043-0.078,0.143-0.153,0.172c-0.076,0.008-0.153,0.017-0.229,0.025c-0.051,0.023-0.079,0.083-0.102,0.133\r\n\t\t\t\tc0.028,0.028,0.055,0.055,0.083,0.083C30.523,19.013,30.565,18.998,30.588,18.905z M10.002,26.709v0.006\r\n\t\t\t\tc0.013,0.019,0.025,0.038,0.038,0.057h0.027c-0.006-0.014-0.006-0.034-0.015-0.051C10.036,26.717,10.019,26.713,10.002,26.709z\r\n\t\t\t\t M42.956,34.189c-0.051-0.021-0.102-0.042-0.153-0.064c-0.12,0.085-0.214,0.171-0.388,0.21c-0.076,0.017-0.145-0.016-0.191-0.025\r\n\t\t\t\tc-0.086-0.017-0.139,0.054-0.197,0.07c-0.059-0.006-0.119-0.013-0.178-0.019h-0.013c-0.072,0.047-0.144,0.093-0.216,0.14\r\n\t\t\t\tc-0.099,0.036-0.13-0.059-0.242-0.038c-0.091,0.04-0.182,0.08-0.273,0.121h-0.178c-0.091-0.099-0.215-0.211-0.273-0.337\r\n\t\t\t\tc-0.054-0.014-0.128-0.003-0.191-0.013c-0.004-0.002-0.009-0.004-0.013-0.006v-0.013c0.069-0.033,0.208-0.09,0.261-0.146\r\n\t\t\t\tc-0.006-0.169-0.233-0.211-0.33-0.305c-0.017-0.016-0.033-0.139-0.089-0.191c-0.026-0.024-0.075-0.007-0.108-0.025\r\n\t\t\t\tc-0.089-0.098-0.178-0.195-0.267-0.292c-0.035-0.016-0.076-0.009-0.127-0.006c-0.039-0.054-0.074-0.138-0.133-0.172\r\n\t\t\t\tc-0.019,0.025-0.013,0.083-0.019,0.108c-0.004,0.002-0.008,0.004-0.013,0.007c-0.182-0.153-0.224-0.622-0.331-0.864\r\n\t\t\t\tc-0.049-0.112-0.295-0.163-0.362-0.254c-0.106-0.144-0.038-0.516-0.089-0.724c-0.033-0.135-0.153-0.35-0.254-0.426\r\n\t\t\t\tc-0.05-0.038-0.123-0.051-0.159-0.102c-0.045-0.062-0.051-0.162-0.076-0.242c0.023-0.021,0.047-0.042,0.07-0.064\r\n\t\t\t\tc-0.051-0.051-0.102-0.102-0.153-0.152c-0.139-0.209-0.24-0.462-0.369-0.667c-0.055-0.144-0.11-0.288-0.165-0.432\r\n\t\t\t\tc-0.095-0.171-0.257-0.287-0.299-0.521c0.033-0.045,0.038-0.066,0.095-0.089c0.08,0.245,0.223,0.49,0.4,0.642\r\n\t\t\t\tc0.019,0.021,0.047,0.019,0.076,0.013c0.08-0.159,0.057-0.398,0.184-0.508c-0.074-0.191-0.148-0.381-0.222-0.572\r\n\t\t\t\tc-0.122,0.015-0.164,0.113-0.337,0.019c-0.112,0.08-0.158,0.011-0.28,0.032c-0.042-0.043-0.076-0.051-0.095-0.121\r\n\t\t\t\tc-0.215-0.044-0.454,0.008-0.604,0.108c-0.04,0.032-0.081,0.063-0.121,0.095c-0.079,0.017-0.155-0.048-0.21-0.064\r\n\t\t\t\tc-0.061-0.006-0.123-0.013-0.184-0.019c-0.013-0.017-0.025-0.034-0.038-0.051c-0.148-0.032-0.297-0.064-0.445-0.095h-0.318\r\n\t\t\t\tc-0.058-0.026-0.045-0.125-0.108-0.146h-0.146c-0.077-0.012-0.25-0.041-0.324-0.07c-0.07-0.038-0.033-0.128-0.133-0.172\r\n\t\t\t\tc-0.258-0.113-0.681,0.039-0.782,0.21c-0.137,0.231,0.167,0.358-0.146,0.527c-0.038,0.02-0.088,0.07-0.146,0.064\r\n\t\t\t\tc-0.153-0.018-0.266-0.184-0.4-0.235c-0.132-0.05-0.433-0.054-0.54-0.114c-0.119-0.068-0.137-0.311-0.241-0.35\r\n\t\t\t\tc-0.058-0.021-0.105-0.003-0.152-0.025c-0.028-0.025-0.055-0.051-0.083-0.076c-0.066-0.013-0.131-0.025-0.197-0.038\r\n\t\t\t\tc-0.095,0.006-0.191,0.013-0.286,0.019c-0.129-0.055-0.258-0.11-0.388-0.165c-0.009-0.034-0.017-0.068-0.025-0.102\r\n\t\t\t\tc-0.061-0.005-0.069,0.013-0.121,0.025c-0.082-0.04-0.182-0.111-0.203-0.21c0.059-0.065,0.326-0.286,0.324-0.369\r\n\t\t\t\tc-0.011-0.042-0.021-0.085-0.032-0.127c-0.337-0.192,0.008-0.272,0.006-0.483c-0.064,0.038-0.127,0.076-0.191,0.115\r\n\t\t\t\tc-0.011-0.002-0.021-0.004-0.032-0.006c-0.018-0.04-0.036-0.072-0.038-0.127c-0.047-0.021-0.093-0.042-0.14-0.064\r\n\t\t\t\tc-0.03,0.004-0.059,0.009-0.089,0.013c-0.095,0.036-0.266,0.212-0.432,0.165c-0.024-0.007-0.062-0.069-0.14-0.096\r\n\t\t\t\tc-0.063,0.009-0.084,0.051-0.133,0.076c-0.076-0.012-0.113-0.06-0.178-0.083c-0.078,0.055-0.155,0.115-0.267,0.14\r\n\t\t\t\tc-0.173,0.039-0.303-0.115-0.502-0.063c-0.038,0.021-0.076,0.042-0.114,0.063c-0.073,0.026-0.104-0.027-0.159-0.019\r\n\t\t\t\tc-0.047,0.021-0.093,0.042-0.14,0.064c-0.145,0.03-0.312-0.005-0.432,0.044c-0.114,0.047-0.181,0.142-0.267,0.216\r\n\t\t\t\tc-0.046-0.004-0.065-0.015-0.089-0.038c-0.039,0.007-0.209,0.066-0.242,0.089c-0.08,0.057-0.073,0.137-0.191,0.172\r\n\t\t\t\tc-0.13,0.038-0.283-0.002-0.318-0.089c-0.007-0.002-0.345,0.103-0.477,0.064c-0.138-0.041-0.19-0.153-0.28-0.242\r\n\t\t\t\tc-0.032,0.015-0.064,0.03-0.095,0.045c-0.071,0.054-0.17,0.43-0.248,0.534c-0.114,0.152-0.324,0.164-0.483,0.273\r\n\t\t\t\tc-0.054,0.037-0.227,0.186-0.248,0.241c-0.022,0.058,0.009,0.132-0.019,0.191c-0.035,0.073-0.121,0.127-0.153,0.21\r\n\t\t\t\tc-0.075,0.199,0.155,0.303-0.006,0.54c-0.101,0.149-0.406,0.41-0.578,0.483c-0.089,0.038-0.211,0.03-0.305,0.076\r\n\t\t\t\tc-0.108,0.053-0.13,0.288-0.203,0.381c-0.059,0.074-0.188,0.088-0.242,0.165c-0.056,0.081-0.105,0.204-0.127,0.311\r\n\t\t\t\tc-0.002,0.044-0.004,0.089-0.006,0.134c-0.04,0.101-0.18,0.151-0.242,0.235c-0.063,0.146-0.127,0.292-0.191,0.438\r\n\t\t\t\tc-0.047,0.051-0.093,0.102-0.14,0.153c-0.056,0.084-0.082,0.256-0.064,0.388c0.015-0.017,0.03-0.034,0.044-0.051\r\n\t\t\t\tc0.199,0.016,0.209,0.339,0.114,0.477c0.233,0.184,0.095,0.554,0.025,0.788c-0.008,0.068-0.017,0.136-0.025,0.203\r\n\t\t\t\tc-0.037,0.135-0.145,0.317-0.273,0.362c-0.002,0.004-0.004,0.008-0.006,0.013c0.181,0.076,0.181,0.271,0.267,0.311\r\n\t\t\t\tc0.01,0.02,0.013,0.041,0.013,0.076c-0.019,0.004-0.038,0.008-0.057,0.013c-0.049,0.069-0.01,0.177-0.032,0.261\r\n\t\t\t\tc0.08,0.135,0.04,0.036,0.14,0.102c0.004,0.015,0.008,0.03,0.013,0.044c0.042,0.025,0.085,0.051,0.127,0.076\r\n\t\t\t\tc0.063-0.012,0.153-0.052,0.203,0.006c-0.039,0.048-0.093,0.079-0.076,0.165c0.026,0.017,0.08,0.022,0.102,0.044\r\n\t\t\t\tc0.015,0.02,0.01,0.028,0.006,0.057c0.034,0.023,0.057,0.034,0.121,0.032c0.011,0.033,0.011,0.06,0,0.095\r\n\t\t\t\tc0.065,0.069,0.166,0.135,0.267,0.165c0.006,0.032,0.013,0.063,0.019,0.095c0.033,0.061,0.118,0.081,0.14,0.159v0.095\r\n\t\t\t\tc0.014,0.018,0.035,0.022,0.063,0.025c0.002,0.008,0.004,0.017,0.006,0.025c-0.023,0.019-0.047,0.038-0.07,0.057h-0.013\r\n\t\t\t\tc0.028,0.094,0.156,0.186,0.261,0.203c0.018,0.034,0.013,0.047,0.006,0.095c0.142,0.043,0.215,0.149,0.324,0.222\r\n\t\t\t\tc0.08,0.042,0.161,0.085,0.242,0.127c0.17,0.12,0.278,0.261,0.477,0.362c0.062,0.032,0.311,0.192,0.388,0.172\r\n\t\t\t\tc0.102-0.053,0.203-0.106,0.305-0.159c0.106-0.029,0.212-0.059,0.318-0.089c0.092-0.027,0.292-0.048,0.407-0.025\r\n\t\t\t\tc0.05,0.01,0.145,0.061,0.21,0.038c0.011-0.013,0.021-0.025,0.032-0.038c0.041,0.005,0.246,0.134,0.286,0.165\r\n\t\t\t\tc0.206-0.093,0.411-0.186,0.616-0.28c0.087-0.008,0.174-0.017,0.261-0.025c0.052-0.039,0.054-0.108,0.127-0.133\r\n\t\t\t\tc0.214-0.019,0.428-0.038,0.642-0.057c0.032-0.012,0.039-0.042,0.083-0.057c0.077,0.015,0.286,0.147,0.331,0.203\r\n\t\t\t\tc0.015,0.025,0.03,0.051,0.044,0.076c0.023,0.002,0.047,0.004,0.07,0.006c0.006,0.008,0.013,0.017,0.019,0.025\r\n\t\t\t\tc-0.013,0.032-0.025,0.064-0.038,0.095c0.025,0.209,0.348,0.363,0.534,0.197c0.101,0.017,0.232,0.039,0.343-0.006\r\n\t\t\t\tc0.002-0.027-0.002-0.037-0.013-0.063c0.025-0.016,0.147,0.013,0.178,0.051c0.069,0.124-0.004,0.172,0.222,0.165\r\n\t\t\t\tc0.008,0.013,0.017,0.026,0.025,0.038c0.004,0.004,0.008,0.008,0.013,0.013c-0.019,0.015-0.038,0.03-0.057,0.044\r\n\t\t\t\tc0.021,0.08,0.085,0.147,0.102,0.242c-0.011,0.042-0.021,0.085-0.032,0.127c0.009,0.032,0.017,0.064,0.025,0.095\r\n\t\t\t\tc-0.024,0.1-0.086,0.2-0.153,0.261c-0.002,0.006-0.004,0.013-0.006,0.019c0.025,0.004,0.051,0.008,0.076,0.013\r\n\t\t\t\tc0.003,0.084-0.012,0.146-0.076,0.165c0.049,0.042,0.097,0.085,0.146,0.127v0.006c-0.038-0.004-0.076-0.009-0.114-0.013\r\n\t\t\t\tc-0.031,0.138-0.072,0.242-0.191,0.292c0.013,0.028,0.052,0.116,0.076,0.14c0.036,0.035,0.074,0.015,0.114,0.07\r\n\t\t\t\tc-0.021,0.015-0.042,0.03-0.063,0.045c-0.002,0.004-0.004,0.008-0.006,0.013c0.042,0.062,0.085,0.123,0.127,0.184\r\n\t\t\t\tc0.053,0.027,0.074,0.003,0.108,0.045c-0.011,0.015-0.021,0.03-0.032,0.044c0.089,0.058,0.143,0.122,0.203,0.21\r\n\t\t\t\tc0.112,0.104,0.224,0.208,0.337,0.311c0.032,0.039,0.115,0.204,0.133,0.248c0.029,0.068-0.018,0.161,0.038,0.261\r\n\t\t\t\tc0.045,0.064,0.089,0.127,0.133,0.191c0.013,0.061,0.025,0.123,0.038,0.184c0.057,0.134,0.17,0.186,0.14,0.388\r\n\t\t\t\tc-0.243,0.109,0.046,0.36,0.089,0.489c0.008,0.1,0.017,0.199,0.025,0.299c-0.019,0.11-0.066,0.285-0.146,0.337\r\n\t\t\t\tc-0.03,0.01-0.059,0.021-0.089,0.032c-0.017,0.04-0.034,0.081-0.051,0.121c-0.03,0.032-0.059,0.064-0.089,0.096\r\n\t\t\t\tc-0.094,0.222-0.042,0.57-0.222,0.705c0,0.202-0.037,0.471,0.013,0.648c0.038,0.135,0.15,0.217,0.216,0.324\r\n\t\t\t\tc0.108,0.216,0.216,0.432,0.324,0.648c0.075,0.146,0.371,0.404,0.203,0.572c0.03,0.14,0.059,0.28,0.089,0.419\r\n\t\t\t\tc0.023,0.055,0.047,0.11,0.07,0.165c0.02,0.082-0.031,0.143-0.025,0.203c0.008,0.08,0.071,0.147,0.089,0.21\r\n\t\t\t\tc0.014,0.047-0.021,0.073-0.019,0.102c0.034,0.104,0.068,0.208,0.102,0.311c0.117,0.131,0.233,0.263,0.349,0.394\r\n\t\t\t\tc0.12,0.189,0.16,0.433,0.273,0.635c0.1,0.178,0.271,0.36,0.203,0.654c-0.033,0.008-0.077,0-0.095,0.025\r\n\t\t\t\tc-0.025,0.032,0.123,0.23,0.159,0.286c-0.017,0.049-0.034,0.098-0.051,0.146c0.011,0.011,0.021,0.021,0.032,0.032\r\n\t\t\t\tc0.006,0.002,0.013,0.004,0.019,0.006c0.006-0.015,0.013-0.03,0.019-0.045c0.017-0.008,0.022-0.011,0.051-0.013\r\n\t\t\t\tc0.013,0.023,0.025,0.047,0.038,0.07c0.027-0.001,0.052-0.007,0.102-0.006c0.021,0.029,0.022,0.055,0.038,0.095\r\n\t\t\t\tc0.024,0.042,0.115,0.075,0.165,0.089c0.06-0.046,0.096-0.122,0.178-0.146c0.115-0.035,0.251,0.044,0.356-0.006\r\n\t\t\t\tc0.032-0.03,0.063-0.059,0.095-0.089c0.15-0.071,0.214,0,0.331,0c0.034-0.019,0.068-0.038,0.102-0.057\r\n\t\t\t\tc0.122-0.035,0.234,0.073,0.318,0.102c0.04-0.031,0.07-0.055,0.095-0.102c0.057,0.013,0.114,0.025,0.172,0.038\r\n\t\t\t\tc0.017-0.018,0.02-0.053,0.032-0.076c0.05-0.048,0.322-0.017,0.4-0.07c0.083-0.072,0.165-0.144,0.248-0.216\r\n\t\t\t\tc0.416-0.327,0.721-0.688,1.017-1.138c0.074-0.113,0.264-0.191,0.305-0.299c0.02-0.052-0.028-0.122-0.019-0.146\r\n\t\t\t\tc0.016-0.044,0.065-0.032,0.089-0.064c0.071-0.091,0.109-0.35,0.089-0.496c-0.038-0.015-0.078-0.04-0.095-0.076\r\n\t\t\t\tc-0.006-0.006-0.013-0.013-0.019-0.019c0.078-0.091,0.132-0.175,0.242-0.235c0.244-0.134,0.525-0.121,0.635-0.388\r\n\t\t\t\tc-0.009-0.061-0.052-0.036-0.064-0.07c0.002-0.006,0.004-0.013,0.006-0.019c0.013-0.032,0.025-0.064,0.038-0.095\r\n\t\t\t\tc0.03-0.123,0.023-0.264,0.019-0.388c-0.028,0.01-0.035,0.018-0.076,0.019c-0.039-0.124-0.087-0.274-0.044-0.375\r\n\t\t\t\tc-0.006-0.075-0.062-0.112-0.114-0.14v-0.203c0.119-0.087,0.237-0.174,0.356-0.261c0.145-0.122,0.233-0.305,0.4-0.407\r\n\t\t\t\tc0.203-0.123,0.451-0.162,0.642-0.292c0.137-0.094,0.224-0.268,0.331-0.394c0-0.028-0.009-0.039-0.019-0.07\r\n\t\t\t\tc0.036-0.047,0.068-0.081,0.095-0.14c-0.002-0.011-0.004-0.021-0.006-0.032c-0.023-0.011-0.047-0.021-0.07-0.032\r\n\t\t\t\tc-0.02-0.163,0.012-0.337-0.07-0.432c0.003-0.034,0.034-0.063,0.044-0.108c0.026-0.113-0.041-0.294-0.057-0.394\r\n\t\t\t\tc0.03-0.055,0.059-0.11,0.089-0.165c-0.065-0.14-0.183-0.157-0.267-0.267c-0.083-0.108-0.127-0.393-0.07-0.553\r\n\t\t\t\tc-0.018-0.028-0.043-0.033-0.064-0.057c0.029-0.062,0.083-0.148,0.089-0.216c-0.057-0.071-0.161-0.126-0.197-0.216\r\n\t\t\t\tc-0.037-0.095,0.061-0.407,0.102-0.451c0.024-0.026,0.068-0.021,0.089-0.051c0.047-0.068,0.006-0.104,0.025-0.165\r\n\t\t\t\tc0.042-0.137,0.172-0.143,0.184-0.368c0.096-0.053,0.187-0.052,0.191-0.203c0.085,0.016,0.124-0.022,0.191-0.051\r\n\t\t\t\tc0.024-0.036,0.026-0.054,0.006-0.095c0.208-0.235,0.415-0.47,0.623-0.705c0.229-0.185,0.515-0.325,0.744-0.508\r\n\t\t\t\tc0.085-0.104,0.169-0.208,0.254-0.311c0.168-0.215,0.419-0.422,0.527-0.686c0.011-0.049,0.021-0.098,0.032-0.146\r\n\t\t\t\tc0.074-0.119,0.148-0.237,0.222-0.356c-0.002-0.028-0.004-0.055-0.006-0.083c0.042-0.04,0.085-0.081,0.127-0.121\r\n\t\t\t\tc0.055-0.098,0.11-0.195,0.165-0.292c0.006-0.087,0.013-0.174,0.019-0.261c0.014-0.04,0.079-0.07,0.076-0.127\r\n\t\t\t\tc-0.002-0.045-0.037-0.108-0.019-0.172c0.017-0.04,0.034-0.081,0.051-0.121C42.96,34.201,42.958,34.195,42.956,34.189z\r\n\t\t\t\t M51.688,35.155c-0.032-0.185-0.128-0.278-0.28-0.375c0.018,0.077-0.003,0.113-0.025,0.191c-0.034,0.026-0.04,0.042-0.095,0.025\r\n\t\t\t\tc-0.004,0.015-0.008,0.03-0.013,0.044c0.015,0.017,0.03,0.034,0.044,0.051c-0.029,0.063-0.008,0.077,0.006,0.14v0.318\r\n\t\t\t\tc0.023,0.101,0.073,0.267,0.146,0.324c0.208,0.044,0.476-0.139,0.451-0.337c-0.011-0.089-0.093-0.163-0.127-0.235\r\n\t\t\t\tC51.76,35.226,51.767,35.185,51.688,35.155z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32c17.673,0,32-14.327,32-32\r\n\t\t\t\tC64,14.327,49.673,0,32,0z M50.505,13.747c0.043,0.044,0.081,0.093,0.124,0.137c-0.003,0.02-0.006,0.039-0.008,0.059v0.006\r\n\t\t\t\tc0.027,0.007,0.053,0.01,0.08,0.013c0.048,0.049,0.092,0.103,0.139,0.153c-0.13,0.026-0.317,0.022-0.352-0.084\r\n\t\t\t\tC50.47,14.004,50.497,13.865,50.505,13.747z M48.568,14.508c0.038,0.017,0.076,0.034,0.114,0.051\r\n\t\t\t\tc0.07-0.025,0.14-0.051,0.21-0.076c-0.013-0.036-0.025-0.072-0.038-0.108c0.033-0.077,0.142-0.097,0.203-0.146\r\n\t\t\t\tc0.083-0.066,0.227-0.183,0.267-0.286c0.015-0.059,0.03-0.119,0.044-0.178c0.022-0.052,0.06-0.069,0.064-0.146\r\n\t\t\t\tc-0.099-0.13-0.202-0.041-0.254-0.292c0.002-0.127,0.004-0.254,0.006-0.381c-0.008-0.074-0.017-0.148-0.025-0.222\r\n\t\t\t\tc0.032-0.042,0.064-0.085,0.095-0.127c0.001-0.002-0.001-0.005,0-0.008c0.099,0.088,0.195,0.177,0.293,0.266\r\n\t\t\t\tc-0.012,0.031-0.036,0.06-0.038,0.092c-0.006,0.103,0.07,0.19,0.07,0.324c0.102-0.002,0.239,0.039,0.311,0.025\r\n\t\t\t\tc0.034-0.012,0.069-0.024,0.103-0.036c0.075,0.072,0.157,0.137,0.232,0.211c-0.214-0.04-0.47,0.008-0.5,0.206\r\n\t\t\t\tc0.056,0.099,0.113,0.168,0.108,0.318c-0.042,0.053-0.085,0.106-0.127,0.159c-0.034,0.021-0.068,0.042-0.102,0.064\r\n\t\t\t\tc-0.044,0.061-0.038,0.157-0.095,0.203c-0.14,0.113-0.327,0.134-0.407,0.311c-0.085,0.039-0.185,0.002-0.261-0.013\r\n\t\t\t\tc-0.053,0.002-0.106,0.004-0.159,0.006c-0.219-0.032-0.424-0.055-0.502-0.229C48.308,14.462,48.449,14.461,48.568,14.508z\r\n\t\t\t\t M14.404,12.899c-0.002,0.011-0.006,0.023,0.013,0.034c0.011,0.006,0.027,0.004,0.044,0.005c0.046,0.003,0.104,0.019,0.122,0.05\r\n\t\t\t\tc-0.03,0.071-0.177,0-0.221-0.006c0,0.003,0,0.006,0,0.008c-0.005,0-0.011,0-0.016,0c-0.003,0.077,0.276,0.05,0.304,0.123\r\n\t\t\t\tc-0.032,0.036-0.081,0.019-0.141,0.035c-0.004,0.062,0.16,0.026,0.146,0.083c0,0.002-0.001,0.003-0.001,0.005\r\n\t\t\t\tc-0.043,0.013-0.078-0.002-0.117,0.012c-0.004,0.003-0.007,0.006-0.01,0.009c0,0.003,0,0.006,0,0.008\r\n\t\t\t\tc0.031,0.019,0.072,0.042,0.132,0.023c0.017-0.006,0.036-0.014,0.054-0.012c0.006,0.002,0.012,0.003,0.017,0.005\r\n\t\t\t\tc0.003,0.02-0.019,0.063-0.05,0.071c-0.034,0.009-0.199-0.014-0.228-0.021c-0.059-0.015-0.101-0.05-0.147-0.078\r\n\t\t\t\tc-0.04-0.024-0.124-0.06-0.197-0.085C14.204,13.077,14.305,12.99,14.404,12.899z M13.524,13.715\r\n\t\t\t\tc0.019,0.012,0.039,0.022,0.052,0.039c-0.03-0.002-0.064,0.005-0.097,0.01C13.495,13.749,13.509,13.731,13.524,13.715z\r\n\t\t\t\t M7.943,27.904c0.017-0.004,0.034-0.008,0.051-0.013c-0.017,0.015-0.034,0.03-0.051,0.045\r\n\t\t\t\tC7.945,27.925,7.941,27.918,7.943,27.904z M7.499,23.367c-0.001,0.007,0,0.011-0.001,0.018c-0.002-0.002-0.002-0.004-0.004-0.006\r\n\t\t\t\tC7.496,23.376,7.497,23.372,7.499,23.367z M7.676,37.665c-0.049,0.065-0.234,0.104-0.337,0.051\r\n\t\t\t\tc-0.044,0.033-0.061,0.065-0.057,0.146c-0.015,0.013-0.03,0.025-0.044,0.038c-0.012-0.052-0.021-0.069-0.07-0.083\r\n\t\t\t\tc-0.033-0.007-0.066,0.023-0.095,0.038c-0.203,0.107-0.124,0.25-0.191,0.438c-0.026,0.005-0.052,0.01-0.079,0.015\r\n\t\t\t\tc-0.076-0.302-0.168-0.598-0.232-0.904c0.011,0.001,0.019,0.005,0.032,0.006c0.029,0.082,0.054,0.128,0.146,0.146\r\n\t\t\t\tc0.004-0.028,0.009-0.055,0.013-0.083h0.006c0.023,0.048,0.076,0.109,0.064,0.172c0.006,0.006,0.013,0.013,0.019,0.019\r\n\t\t\t\tc0.114,0.02,0.144-0.047,0.248-0.057c-0.01-0.111-0.095-0.121-0.133-0.203c0.039-0.058,0.138-0.099,0.21-0.121\r\n\t\t\t\tc-0.003-0.04-0.005-0.057,0.006-0.089c0.198-0.063,0.318-0.017,0.375,0.14c0.045,0.008,0.076-0.016,0.108-0.038\r\n\t\t\t\tc-0.001,0.049,0.005,0.067,0.038,0.083c0.002,0.004,0.004,0.009,0.006,0.013c-0.061-0.008-0.097-0.021-0.121,0.032\r\n\t\t\t\tC7.564,37.5,7.647,37.606,7.676,37.665z M32,58c-7.083,0-13.497-2.841-18.187-7.435c0.051-0.052,0.122-0.09,0.155-0.153\r\n\t\t\t\tc0.019-0.078,0.038-0.157,0.057-0.235v-0.013c0.049,0.022,0.108,0.044,0.172,0.019h0.006c0.013,0.192-0.204,0.292-0.248,0.483\r\n\t\t\t\tc0.103-0.092,0.237-0.221,0.299-0.349c0.051-0.121,0.102-0.242,0.153-0.362c0.174-0.277,0.481-0.299,0.394-0.852\r\n\t\t\t\tc-0.012-0.077-0.036-0.114-0.057-0.172c0.045-0.054,0.132-0.205,0.019-0.254v-0.038c0.146,0.013,0.159-0.073,0.235-0.14\r\n\t\t\t\tc0.08-0.07,0.491-0.363,0.585-0.381c0.051-0.01,0.091,0.021,0.127,0.032c0.03-0.036,0.059-0.072,0.089-0.108\r\n\t\t\t\tc0.086-0.051,0.144-0.034,0.165-0.153c0.094-0.012,0.207-0.008,0.28,0.006c0.161,0.031,0.334-0.013,0.483-0.025\r\n\t\t\t\tc-0.005-0.182,0.137-0.241,0.292-0.254c-0.009-0.051-0.017-0.102-0.025-0.153c0.017-0.123,0.117-0.202,0.172-0.292\r\n\t\t\t\tc0.034-0.07,0.068-0.14,0.102-0.21c0.032-0.046,0.105-0.072,0.121-0.133c-0.006-0.062-0.013-0.123-0.019-0.184\r\n\t\t\t\tc-0.03-0.169,0.065-0.288,0.184-0.331c0-0.048-0.035-0.138-0.019-0.222c0.021-0.107,0.097-0.243,0.076-0.369\r\n\t\t\t\tc-0.017-0.165-0.034-0.331-0.051-0.496c0.028-0.172,0.093-0.289,0.095-0.464c0.015,0.002,0.03,0.004,0.044,0.006\r\n\t\t\t\tc0.017,0.034,0.034,0.068,0.051,0.102h0.019c0.113-0.084,0.241-0.308,0.292-0.445c0.031-0.081,0.007-0.126,0.057-0.178\r\n\t\t\t\tc0.047-0.021,0.093-0.042,0.14-0.064c0.273-0.213,0.461-0.44,0.534-0.858c0.027-0.157-0.139-0.732-0.216-0.756\r\n\t\t\t\tc-0.161-0.05-0.338,0.008-0.458-0.07c-0.256-0.166-0.436-0.435-0.731-0.566c-0.171-0.076-0.287,0.017-0.451-0.013\r\n\t\t\t\tc-0.1-0.015-0.199-0.03-0.299-0.045c-0.086-0.023-0.18-0.133-0.286-0.121c-0.154,0.018-0.289,0.139-0.394,0.21\r\n\t\t\t\tc-0.049-0.2,0.024-0.122,0.044-0.242c0.013-0.077-0.114-0.195-0.184-0.203c-0.017,0.017-0.034,0.034-0.051,0.051h-0.025\r\n\t\t\t\tc-0.054-0.172-0.227-0.156-0.394-0.216c-0.065-0.023-0.106-0.068-0.159-0.102c-0.052,0.007-0.15,0.015-0.216,0.032\r\n\t\t\t\tc-0.072,0.028-0.08,0.13-0.121,0.191c-0.069,0.101-0.227,0.129-0.28,0.248c-0.004,0.002-0.008,0.004-0.013,0.006\r\n\t\t\t\tc0-0.07,0.012-0.1,0.032-0.146c-0.111,0.023-0.259,0.048-0.394,0.026c-0.032-0.076-0.064-0.153-0.095-0.229\r\n\t\t\t\tc-0.088,0.024-0.202,0.166-0.318,0.121c-0.006-0.004-0.013-0.008-0.019-0.013c0.085-0.065,0.102-0.2,0.159-0.292\r\n\t\t\t\tc0.065-0.105,0.205-0.137,0.28-0.229c0.067-0.082,0.092-0.211,0.197-0.254c0.034-0.054,0.016-0.107-0.006-0.165\r\n\t\t\t\tc-0.262-0.036-0.276-0.356-0.343-0.578c-0.021-0.068-0.016-0.143-0.076-0.172c-0.031-0.005-0.044,0.032-0.076,0.025\r\n\t\t\t\tc-0.015-0.003-0.319-0.315-0.4-0.356c-0.11-0.036-0.22-0.072-0.331-0.108c-0.09-0.035-0.342-0.112-0.489-0.051\r\n\t\t\t\tc-0.016,0.014-0.018,0.027-0.019,0.057c-0.095-0.021-0.191-0.042-0.286-0.064h-0.006c-0.015,0.015-0.03,0.03-0.044,0.045\r\n\t\t\t\tc-0.061-0.12-0.214-0.314-0.388-0.292c-0.011,0.021-0.021,0.042-0.032,0.063v0.013c-0.013-0.091-0.026-0.182-0.038-0.273\r\n\t\t\t\tc-0.074-0.125-0.313-0.283-0.47-0.318c-0.084-0.018-0.176,0.005-0.241,0.019c-0.066-0.004-0.131-0.008-0.197-0.013v-0.006\r\n\t\t\t\tc0.187-0.058,0.138-0.167,0.273-0.222c0.002-0.004,0.004-0.008,0.006-0.013c-0.051-0.035-0.122-0.045-0.178-0.083\r\n\t\t\t\tc-0.013-0.019-0.026-0.038-0.038-0.057c-0.045-0.029-0.132-0.021-0.172-0.045c-0.027,0.019-0.038,0.036-0.045,0.076\r\n\t\t\t\tc-0.004,0.002-0.008,0.004-0.013,0.006c-0.012-0.113-0.097-0.154-0.184-0.191V37.97c0.059,0.002,0.119,0.004,0.178,0.006\r\n\t\t\t\tc0.011-0.006,0.021-0.013,0.032-0.019c0.004-0.009,0.008-0.017,0.013-0.025c-0.002-0.004-0.004-0.008-0.006-0.013\r\n\t\t\t\tc-0.129-0.028-0.42-0.039-0.54,0.019c-0.075,0.037-0.117,0.126-0.21,0.146c-0.261,0.058-0.335-0.149-0.496-0.159\r\n\t\t\t\tc-0.136-0.008-0.364,0.083-0.483,0.025c-0.058-0.029-0.044-0.057-0.07-0.121c-0.05-0.125-0.201-0.158-0.375-0.159\r\n\t\t\t\tc-0.033-0.051-0.073-0.137-0.089-0.197c-0.053-0.012-0.097,0.016-0.114,0.064c0.015,0.025,0.03,0.051,0.044,0.076\r\n\t\t\t\tc0.028-0.002,0.055-0.004,0.083-0.006c0.013,0.011,0.025,0.021,0.038,0.032c-0.016,0.063-0.425,0.178-0.515,0.21\r\n\t\t\t\tc0.006,0.004,0.013,0.008,0.019,0.013c-0.008,0.036-0.018,0.036-0.038,0.057c0.053,0.026,0.197,0.299,0.152,0.394\r\n\t\t\t\tc-0.025,0.044-0.094,0.072-0.152,0.083c-0.065-0.049-0.097-0.164-0.146-0.229c0.015-0.1,0.07-0.186,0.121-0.254\r\n\t\t\t\tc-0.012-0.102-0.056-0.167-0.089-0.254c0.041-0.061,0.144-0.086,0.241-0.089c0.011-0.013,0.021-0.025,0.032-0.038\r\n\t\t\t\tc-0.013-0.064-0.059-0.101-0.114-0.121c-0.156-0.06-0.195,0.139-0.273,0.184c-0.04,0.013-0.081,0.025-0.121,0.038\r\n\t\t\t\tc0.019-0.036,0.046-0.051,0.032-0.102c0.027,0.011,0.029,0.016,0.038,0.045h0.006c0.052-0.033,0.079-0.079,0.121-0.121\r\n\t\t\t\tc-0.08-0.166-0.161-0.342-0.337-0.413c-0.058-0.023-0.134,0.003-0.203-0.026c-0.026-0.01-0.121-0.049-0.159-0.038\r\n\t\t\t\tc-0.047,0.032-0.093,0.064-0.14,0.095c-0.03,0.018-0.063,0.012-0.102,0.026c-0.12,0.043-0.172,0.128-0.331,0.095\r\n\t\t\t\tc-0.05-0.063-0.09-0.028-0.135-0.022c-0.26-1.288-0.395-2.619-0.457-3.968c0.016-0.002,0.033-0.001,0.046-0.007\r\n\t\t\t\tc0.167-0.078,0.167-0.194,0.47-0.121c0.006,0.011,0.013,0.021,0.019,0.032v0.006c-0.047,0.013-0.093,0.025-0.14,0.038\r\n\t\t\t\tc0.108,0.084,0.261,0.035,0.419,0.083c0.114,0.034,0.208,0.114,0.337,0.146c0.067,0.017,0.202-0.02,0.261,0.019\r\n\t\t\t\tc0.043,0.025,0.066,0.123,0.07,0.184c0.099,0.06,0.295,0.06,0.388,0.127c-0.006,0.065-0.053,0.106-0.102,0.127\r\n\t\t\t\tc-0.019,0.021-0.038,0.042-0.057,0.063v0.006c0.141,0.006,0.266-0.057,0.394-0.038c0.097,0.011,0.195,0.021,0.292,0.032\r\n\t\t\t\tc0.105-0.019,0.2-0.058,0.324-0.07c0.002-0.004,0.004-0.008,0.006-0.013c-0.124-0.092-0.202-0.151-0.432-0.146\r\n\t\t\t\tc-0.006-0.006-0.013-0.013-0.019-0.019c0.013-0.028,0.025-0.055,0.038-0.083c-0.079-0.081-0.36-0.089-0.483-0.14\r\n\t\t\t\tc-0.04-0.044-0.08-0.089-0.121-0.133c-0.131-0.09-0.318-0.074-0.477-0.146c-0.064-0.053-0.127-0.106-0.191-0.159H7.022\r\n\t\t\t\tc-0.163-0.037-0.338-0.074-0.559-0.07c-0.083,0.008-0.165,0.017-0.248,0.025c-0.059,0.014-0.109,0.043-0.163,0.068\r\n\t\t\t\tC6.038,32.677,6,32.344,6,32c0-0.404,0.042-0.798,0.06-1.198c0.069,0.073,0.127,0.176,0.179,0.209\r\n\t\t\t\tc0.057,0.035,0.12,0.025,0.133,0.102c-0.021,0.115-0.042,0.229-0.064,0.343c0.008,0.002,0.017,0.004,0.025,0.006\r\n\t\t\t\tc0.036,0.022,0.05-0.017,0.089-0.032c0.002,0.019,0.004,0.038,0.006,0.057c-0.025,0.035-0.04,0.043-0.083,0.063\r\n\t\t\t\tc0.038,0.07,0.076,0.14,0.115,0.21H6.52c0.006,0.032,0.013,0.064,0.019,0.095c0.019,0.013,0.038,0.025,0.057,0.038\r\n\t\t\t\tc0.051,0.105-0.017,0.164,0.133,0.172c0.035,0.058,0.068,0.193,0.108,0.242c0.047-0.022,0.112-0.023,0.178-0.032\r\n\t\t\t\tc-0.004,0.021-0.008,0.042-0.013,0.064h0.013c0.048-0.142,0.166-0.403,0.108-0.61c-0.023-0.081-0.082-0.166-0.108-0.261\r\n\t\t\t\tc-0.013-0.083-0.025-0.165-0.038-0.248c-0.062-0.179-0.316-0.446-0.267-0.699c0.032-0.1,0.064-0.199,0.095-0.299\r\n\t\t\t\tc0.053-0.085,0.131-0.155,0.165-0.26c0.15-0.028,0.305-0.087,0.369-0.197c0.047-0.082,0.048-0.15,0.127-0.197\r\n\t\t\t\tc0.074-0.044,0.216-0.039,0.28-0.076c0.064-0.08,0.127-0.161,0.191-0.242c0.07-0.011,0.14-0.021,0.21-0.032\r\n\t\t\t\tc0.025-0.021,0.051-0.042,0.076-0.063c0.002-0.004,0.004-0.009,0.006-0.013c-0.027-0.012-0.033-0.01-0.044-0.038\r\n\t\t\t\tc-0.025,0.019-0.067,0.035-0.095,0.051c-0.015-0.009-0.03-0.017-0.044-0.026c-0.019-0.013-0.023-0.028-0.032-0.051\r\n\t\t\t\tc0.025,0.019,0.035,0.04,0.07,0.051c0.054-0.032,0.047-0.06,0.089-0.083v-0.013c-0.03-0.031-0.081-0.057-0.14-0.057\r\n\t\t\t\tc-0.006-0.011-0.013-0.021-0.019-0.032c0.044,0.015,0.089,0.03,0.133,0.045c-0.006-0.011-0.013-0.021-0.019-0.032v-0.006\r\n\t\t\t\tc0.051,0.021,0.064,0.054,0.14,0.064c0.025-0.03,0.051-0.059,0.076-0.089c0.009-0.016,0.008-0.002,0.038,0\r\n\t\t\t\tc0.006-0.011,0.013-0.021,0.019-0.032c-0.001-0.047-0.012-0.063-0.038-0.083c-0.011-0.006-0.002-0.006-0.013,0\r\n\t\t\t\tc-0.028,0.017-0.029,0.052-0.044,0.081c0.002,0.005-0.004,0.01-0.001,0.014v-0.013c0-0.001,0-0.001,0.001-0.002\r\n\t\t\t\tc-0.01-0.027-0.001-0.054,0.005-0.087c-0.004-0.004-0.009-0.008-0.013-0.013c-0.06,0.01-0.113,0.02-0.191,0.019\r\n\t\t\t\tc0.008-0.038-0.02-0.071,0-0.108v-0.013c0.011,0.017-0.003,0.036,0.006,0.064c0.009,0.011,0.017,0.021,0.026,0.032\r\n\t\t\t\tc0.021-0.006,0.042-0.013,0.064-0.019c0-0.018-0.002-0.019-0.013-0.038c0.021,0.011,0.042,0.021,0.064,0.032\r\n\t\t\t\tc0.008-0.004,0.017-0.009,0.025-0.013c0.002-0.004,0.004-0.008,0.006-0.013c-0.011-0.015-0.021-0.029-0.032-0.044\r\n\t\t\t\tc0.034,0.019,0.057,0.04,0.089,0.025c0.004,0.015,0.008,0.03,0.013,0.045h0.019c-0.012-0.067-0.042-0.087-0.07-0.134h0.038\r\n\t\t\t\tC8.338,28.6,8.338,28.606,8.325,28.59c0.004-0.008,0.008-0.015,0.011-0.023c-0.024-0.086-0.083-0.085-0.17-0.066\r\n\t\t\t\tc-0.004-0.07-0.06-0.101-0.121-0.114c-0.002-0.004-0.004-0.008-0.006-0.013c0.011-0.006,0.021-0.013,0.032-0.019\r\n\t\t\t\tc0.043,0.021,0.076,0.045,0.095,0.089c0.03,0.02,0.023,0.021,0.07,0.019c-0.002-0.021-0.004-0.042-0.006-0.064\r\n\t\t\t\tc-0.02-0.013-0.034-0.028-0.052-0.038H8.172c-0.021-0.017-0.042-0.034-0.064-0.051c0.018,0.026,0.045,0.037,0.069,0.051h0.02\r\n\t\t\t\tc-0.002-0.013-0.004-0.025-0.006-0.038c0.017,0.006,0.034,0.013,0.051,0.019h0.006c-0.002-0.043-0.004-0.052-0.038-0.064\r\n\t\t\t\tc0.009-0.004,0.017-0.009,0.026-0.013c-0.082-0.042-0.117-0.054-0.159-0.133c0.034,0.03,0.068,0.059,0.102,0.089\r\n\t\t\t\tc0.006,0.006,0.013,0.013,0.019,0.019c0.036-0.023,0.042-0.039,0.057-0.083c-0.034-0.047-0.238-0.13-0.311-0.159\r\n\t\t\t\tc-0.002-0.007,0.001-0.013,0-0.019c0.068-0.003,0.075,0.022,0.127,0.045c-0.002-0.013-0.004-0.025-0.006-0.038\r\n\t\t\t\tc0.042,0.042,0.099,0.078,0.153,0.108c-0.016-0.09-0.078-0.09-0.095-0.165h0.006c0.012,0.032,0.027,0.045,0.057,0.057\r\n\t\t\t\tc0.004,0.004,0.008,0.008,0.013,0.013h0.006c-0.015-0.036-0.03-0.072-0.044-0.108c-0.02-0.107,0.072-0.052-0.006-0.197\r\n\t\t\t\tc0.017,0.002,0.034,0.004,0.051,0.006c0.002-0.019,0.004-0.038,0.006-0.057c0.019,0.012,0.011,0.001,0.019,0.026h0.006\r\n\t\t\t\tc0.011-0.014,0.011-0.017,0.013-0.045c0.002,0.011,0.004,0.021,0.006,0.032c0.029-0.02,0.034-0.024,0.032-0.045\r\n\t\t\t\tc0.015-0.011,0.03-0.021,0.044-0.032c-0.006,0.017-0.013,0.034-0.019,0.051c0.013,0.006,0.025,0.013,0.038,0.019\r\n\t\t\t\tc-0.025,0.006-0.051,0.013-0.076,0.019c-0.011,0.017-0.021,0.034-0.032,0.051v0.006h0.051c-0.013,0.035-0.02,0.044-0.07,0.044\r\n\t\t\t\tc-0.004,0.006-0.009,0.013-0.013,0.019c0.016,0.017,0.027,0.021,0.057,0.025c0.002,0.004,0.004,0.008,0.006,0.013v0.026\r\n\t\t\t\tc-0.013-0.007-0.025-0.013-0.038-0.019c-0.004,0.002-0.009,0.004-0.013,0.006c-0.004,0.013-0.009,0.025-0.013,0.038v0.006\r\n\t\t\t\tc0.047-0.025,0.036-0.01,0.089,0.013c0.004,0.006,0.009,0.013,0.013,0.019c-0.03,0.011-0.059,0.021-0.089,0.032\r\n\t\t\t\tc-0.002,0.004-0.004,0.008-0.006,0.013c0.011,0.015,0.021,0.03,0.032,0.044c0.017,0.011,0.034,0.021,0.051,0.032\r\n\t\t\t\tc0.021-0.013,0.042-0.025,0.064-0.038c-0.001,0.055-0.005,0.033-0.025,0.07c0.015,0.008,0.03,0.017,0.044,0.025\r\n\t\t\t\tc-0.006,0.013-0.013,0.026-0.019,0.038v0.006h0.006c0.026-0.01,0.031-0.014,0.051,0c-0.039,0.071-0.09,0.135-0.114,0.229\r\n\t\t\t\tc0.004,0.013,0.008,0.025,0.013,0.038c0.008-0.002,0.017-0.004,0.025-0.006c0.017-0.038,0.034-0.076,0.051-0.114\r\n\t\t\t\tc0.02,0,0.017,0.006,0.032-0.006c0.023-0.055,0.047-0.11,0.07-0.165c0.033-0.056,0.086-0.075,0.102-0.14\r\n\t\t\t\tc-0.004-0.04-0.008-0.081-0.013-0.121c-0.078-0.033-0.136-0.206-0.152-0.292c0.024-0.023,0.034-0.046,0.064-0.064\r\n\t\t\t\tc0.002,0.002,0.004,0.004,0.006,0.006c-0.017,0.031-0.037,0.044-0.057,0.07c0.054,0.073,0.068,0.144,0.184,0.14\r\n\t\t\t\tc0.005,0.037-0.005,0.046-0.013,0.083v0.006c0.004,0.002,0.008,0.004,0.013,0.006c0.055-0.041,0.152-0.125,0.152-0.216\r\n\t\t\t\tc0.013,0.004,0.026,0.008,0.038,0.013c0.032-0.093,0.078-0.196,0.095-0.305c-0.053-0.007-0.063-0.019-0.089-0.051\r\n\t\t\t\tc-0.002-0.006-0.004-0.013-0.006-0.019c0.029-0.023,0.034-0.034,0.064-0.026c0.019-0.053,0.038-0.106,0.057-0.159\r\n\t\t\t\tc-0.015,0.047-0.03,0.093-0.045,0.14c0.19-0.133,0.413-0.223,0.744-0.222c0.008-0.043,0.017-0.085,0.025-0.127\r\n\t\t\t\tc0.002-0.002,0.036,0,0.064-0.013c0.003,0.022-0.008,0.053-0.006,0.095c0.004,0.002,0.008,0.004,0.013,0.007\r\n\t\t\t\tc0.058-0.002,0.108-0.049,0.121-0.089h0.006c0.013,0.016,0.014,0.037,0.013,0.07c0.072-0.017,0.144-0.034,0.216-0.051\r\n\t\t\t\tc0-0.035-0.012-0.048-0.019-0.067v0.016c-0.03,0.013-0.059,0.025-0.089,0.038c-0.017-0.006-0.034-0.013-0.051-0.019\r\n\t\t\t\tc-0.017-0.095-0.061-0.182-0.165-0.191c0.011-0.069,0.067-0.083,0.127-0.102c0.002-0.006,0.004-0.013,0.006-0.019\r\n\t\t\t\tc-0.052-0.015-0.053-0.008-0.083-0.057c0.045-0.073,0.096-0.241,0.184-0.267v-0.07c0.028-0.011,0.055-0.021,0.083-0.032\r\n\t\t\t\tc-0.002,0.011-0.004,0.021-0.006,0.032c0.013,0.006,0.025,0.013,0.038,0.019h0.006c0.028-0.036,0.033-0.028,0.025-0.076\r\n\t\t\t\tc0.011-0.009,0.021-0.017,0.032-0.025c-0.004,0.015-0.008,0.03-0.013,0.044c0.017,0.004,0.034,0.008,0.051,0.013\r\n\t\t\t\tc0.008-0.021,0.017-0.042,0.025-0.064c0.013,0.008,0.025,0.017,0.038,0.025c0.059-0.044,0.113-0.149,0.14-0.222h0.006\r\n\t\t\t\tc0.004,0.002,0.008,0.004,0.013,0.006c-0.008,0.021-0.017,0.042-0.025,0.064c0.002,0.004,0.004,0.008,0.006,0.013\r\n\t\t\t\tc0.027,0.008,0.055,0.017,0.083,0.025c-0.004-0.019-0.008-0.038-0.013-0.057c0.046,0.008,0.075-0.021,0.121-0.032\r\n\t\t\t\tc0.006,0.019,0.013,0.038,0.019,0.057c0.038-0.028,0.057-0.071,0.095-0.095c0.015,0.011,0.03,0.021,0.044,0.032\r\n\t\t\t\tc0.018-0.015,0.017-0.011,0.019-0.045c0.069,0.012,0.096-0.012,0.153-0.038c0.011-0.019,0.01-0.016,0.013-0.032h-0.051\r\n\t\t\t\tc0.011-0.015,0.021-0.03,0.032-0.045c-0.011-0.023-0.021-0.047-0.032-0.07c0.011,0.008,0.021,0.017,0.032,0.025\r\n\t\t\t\tc0.041-0.039,0.135-0.02,0.178,0.013c0.034-0.019,0.068-0.038,0.102-0.057c-0.006-0.013-0.013-0.026-0.019-0.038\r\n\t\t\t\tc0.023,0.013,0.047,0.025,0.07,0.038c0.139-0.017,0.194-0.143,0.343-0.146c0.013-0.023,0.025-0.047,0.038-0.07\r\n\t\t\t\tc-0.006-0.019-0.013-0.038-0.019-0.057c0.024,0.019,0.04,0.035,0.044,0.076c0.019-0.011,0.038-0.021,0.057-0.032h0.006\r\n\t\t\t\tc-0.025,0.065-0.104,0.124-0.172,0.146c-0.008,0.017-0.011,0.022-0.013,0.051c0.108-0.056,0.302-0.039,0.432-0.025\r\n\t\t\t\tc0.004,0.006,0.008,0.013,0.013,0.019c-0.092-0.002-0.148,0.034-0.229,0.051v0.044c-0.023-0.018-0.019-0.021-0.044-0.025\r\n\t\t\t\tc0.002-0.023,0.004-0.047,0.006-0.07c-0.083-0.003-0.358,0.164-0.413,0.222h-0.013c0.011,0.006,0.021,0.013,0.032,0.019v0.006\r\n\t\t\t\tc-0.027,0.003-0.018,0.002-0.038-0.013c-0.04,0.023-0.08,0.047-0.121,0.07c-0.002,0.004-0.004,0.008-0.006,0.013\r\n\t\t\t\tc0.006,0.004,0.013,0.008,0.019,0.013c0.03-0.019,0.059-0.038,0.089-0.057c-0.014,0.038-0.023,0.015-0.044,0.038\r\n\t\t\t\tc-0.076,0.082-0.026,0.172-0.006,0.26c0.015-0.005,0.009-0.003,0.025-0.019c0.019,0.032,0.038,0.064,0.057,0.095\r\n\t\t\t\tc0.048-0.01,0.046-0.012,0.076,0.019c0.009-0.023,0.017-0.047,0.026-0.07c0.035-0.016,0.053-0.017,0.108-0.013v-0.045\r\n\t\t\t\tc0.006,0.004,0.013,0.009,0.019,0.013c0.062-0.036,0.089-0.171,0.203-0.172c0.014-0.051-0.01-0.053-0.013-0.108h0.038\r\n\t\t\t\tc0.006,0.011,0.013,0.021,0.019,0.032h0.006c0.023-0.015,0.034-0.023,0.045-0.051c0.004-0.002,0.008-0.004,0.013-0.006\r\n\t\t\t\tc-0.002,0.015-0.004,0.03-0.006,0.045c0.036,0.004,0.072,0.008,0.108,0.013c0.016-0.034,0.031-0.025,0.038-0.07\r\n\t\t\t\tc0.011,0.006,0.021,0.013,0.032,0.019c0.004-0.015,0.008-0.03,0.013-0.044c0.006-0.002,0.013-0.004,0.019-0.006\r\n\t\t\t\tc0.032,0.009,0.026,0.014,0.045,0.032c0.124-0.045,0.262-0.143,0.407-0.146c-0.002-0.009-0.004-0.017-0.006-0.025\r\n\t\t\t\tc0.032,0.002,0.064,0.004,0.095,0.006c-0.004-0.006-0.008-0.013-0.013-0.019c0.006-0.004,0.013-0.009,0.019-0.013\r\n\t\t\t\tc0.024-0.013,0.02-0.005,0.044,0.013c0.021-0.009,0.042-0.017,0.063-0.025c-0.027-0.034-0.068-0.036-0.133-0.032\r\n\t\t\t\tc-0.004-0.006-0.008-0.013-0.013-0.019c0.013-0.007,0.025-0.013,0.038-0.019c0.006-0.008,0.013-0.017,0.019-0.025\r\n\t\t\t\tc-0.021-0.021-0.042-0.042-0.063-0.064c-0.075-0.027-0.112,0.044-0.133-0.064c-0.066,0.01-0.086,0.052-0.133,0.07\r\n\t\t\t\tc-0.032,0.012-0.073,0.004-0.095,0.013c0.006-0.013,0.013-0.025,0.019-0.038h-0.013c-0.002-0.004-0.004-0.008-0.006-0.013\r\n\t\t\t\tc-0.067-0.031-0.119,0.027-0.165,0.006c-0.019-0.013-0.038-0.025-0.057-0.038c-0.028,0.002-0.055,0.004-0.083,0.006\r\n\t\t\t\tc-0.028-0.013-0.04-0.048-0.083-0.057h-0.013v-0.006c0.025-0.009,0.051-0.017,0.076-0.025c0.004-0.002,0.009-0.004,0.013-0.006\r\n\t\t\t\tc-0.103-0.049-0.301-0.028-0.267-0.191c-0.021-0.028-0.018-0.025-0.044-0.019c-0.013-0.053-0.009-0.079,0.013-0.121\r\n\t\t\t\tc-0.03-0.032-0.094-0.029-0.159-0.025c0.088-0.089,0.103-0.048,0.133-0.178c0.021-0.021,0.042-0.042,0.064-0.064\r\n\t\t\t\tc-0.015-0.011-0.03-0.021-0.044-0.032c-0.019,0.008-0.038,0.017-0.057,0.025v-0.032c-0.055,0.025-0.11,0.051-0.165,0.076\r\n\t\t\t\tc-0.065-0.089-0.112-0.14-0.254-0.152v-0.007c0.049-0.015,0.115-0.056,0.191-0.038c0.034,0.015,0.068,0.03,0.102,0.045\r\n\t\t\t\tc0.079-0.006,0.346-0.155,0.375-0.216c-0.094-0.249-0.411-0.255-0.674-0.152c-0.282,0.11-0.595,0.189-0.82,0.356\r\n\t\t\t\tc-0.184,0.136-0.321,0.345-0.502,0.489c0.154-0.325,0.477-0.718,0.775-0.896c0.079-0.047,0.223-0.03,0.299-0.083\r\n\t\t\t\tc0.108-0.076,0.07-0.268,0.267-0.337c0.117-0.041,0.317-0.025,0.439-0.006c0.178,0.027,0.354-0.025,0.515-0.006\r\n\t\t\t\tc0.163,0.008,0.326,0.017,0.489,0.025c0.219-0.035,0.465-0.038,0.61-0.146c0.083-0.091,0.165-0.182,0.248-0.273\r\n\t\t\t\tc0.155-0.015,0.309-0.03,0.464-0.044c0.1-0.032,0.288-0.2,0.375-0.267v-0.013c-0.042-0.055-0.085-0.11-0.127-0.165\r\n\t\t\t\tc0.034-0.061,0.064-0.142,0.095-0.21c-0.007-0.1-0.158-0.181-0.248-0.197c-0.041-0.008-0.112,0.043-0.153,0.064\r\n\t\t\t\tc-0.013-0.019-0.025-0.038-0.038-0.057c0.008-0.044,0.031-0.064,0.051-0.095c-0.257-0.247-0.418,0.027-0.61,0.133\r\n\t\t\t\tc-0.089,0.05-0.218,0.06-0.305,0.095c0.012-0.069,0.034-0.173,0.083-0.21c0.053-0.004,0.106-0.008,0.159-0.013\r\n\t\t\t\tc0.109-0.031,0.157-0.136,0.28-0.165c0.122-0.029,0.24-0.033,0.292-0.127c-0.11-0.028-0.22-0.055-0.33-0.083\r\n\t\t\t\tc-0.106-0.044-0.191-0.133-0.324-0.153c-0.101-0.015-0.161,0.043-0.261,0.038c0.021-0.051,0.042-0.102,0.064-0.152\r\n\t\t\t\tc-0.007-0.092-0.237-0.273-0.311-0.299h-0.095c-0.062-0.024-0.129-0.187-0.165-0.241c0.004-0.002,0.008-0.004,0.013-0.006\r\n\t\t\t\tc0.055-0.031,0.185,0.022,0.261,0c0.012-0.024,0.014-0.061,0.013-0.102c-0.084-0.062-0.178-0.095-0.242-0.178\r\n\t\t\t\tc0.027-0.025,0.057-0.044,0.102-0.051c-0.036-0.207-0.226-0.07-0.261-0.356c-0.028,0.002-0.055,0.004-0.083,0.006\r\n\t\t\t\tc-0.009-0.07,0.017-0.079,0.032-0.134c-0.122-0.141-0.365-0.561-0.508-0.629c-0.004-0.004-0.008-0.008-0.013-0.013\r\n\t\t\t\tc-0.021,0.042-0.042,0.085-0.064,0.127c-0.144,0.096-0.271,0.026-0.114,0.235c-0.096,0.122-0.182,0.158-0.184,0.388h-0.006\r\n\t\t\t\tc-0.051-0.051-0.057-0.152-0.153-0.159c-0.034,0.059-0.068,0.119-0.102,0.178c-0.077,0.058-0.266,0.055-0.349,0.095\r\n\t\t\t\tc-0.013-0.019-0.026-0.038-0.038-0.057c0.014-0.022,0.019-0.03,0.019-0.07c-0.149-0.221-0.275-0.116-0.483-0.044h-0.006\r\n\t\t\t\tc-0.044-0.056-0.038-0.084-0.026-0.178c0.036,0.002,0.072,0.004,0.108,0.006c0.112-0.165-0.211-0.619,0.013-0.724\r\n\t\t\t\tc0.011-0.023,0.014-0.056,0.013-0.095c-0.011-0.017-0.021-0.034-0.032-0.051c-0.039-0.011-0.088,0.06-0.178,0.038\r\n\t\t\t\tc-0.162-0.039-0.31-0.129-0.458-0.159c-0.052-0.065-0.056-0.061-0.013-0.14c-0.022-0.016-0.052-0.042-0.077-0.062\r\n\t\t\t\tc0.109-0.188,0.225-0.372,0.338-0.557c0.01,0.006,0.021,0.007,0.031,0.015c0.006,0.003,0.064-0.003,0.102,0.013\r\n\t\t\t\tc0.028,0.017,0.055,0.034,0.083,0.051c0.049,0.006,0.097,0.013,0.146,0.019c0.04,0.047,0.081,0.093,0.121,0.14\r\n\t\t\t\tc0.094,0.057,0.203,0.032,0.331,0.064c0.203,0.072,0.407,0.144,0.61,0.216c-0.067-0.217-0.212-0.375-0.381-0.489\r\n\t\t\t\tc-0.155-0.104-0.443-0.179-0.47-0.4c0.186,0,0.218,0.082,0.343,0.127c-0.009-0.049-0.017-0.097-0.026-0.146\r\n\t\t\t\tc0.188,0.145,0.277,0.375,0.604,0.349c0.069,0.109,0.145,0.196,0.273,0.248c-0.038-0.078-0.076-0.157-0.114-0.235\r\n\t\t\t\tc0.04,0.008,0.08,0.017,0.121,0.025h0.006c-0.006-0.184-0.176-0.25-0.153-0.432c0.084,0.057,0.177,0.169,0.216,0.267\r\n\t\t\t\tc0.008,0.006,0.017,0.013,0.025,0.019c0.037-0.334-0.178-0.289-0.292-0.477c0.006-0.013,0.013-0.026,0.019-0.038\r\n\t\t\t\tc0.025-0.006,0.051-0.013,0.076-0.019h0.013c-0.061-0.03-0.123-0.059-0.184-0.089c-0.069-0.041-0.11-0.13-0.191-0.153\r\n\t\t\t\tc-0.019,0.015-0.038,0.03-0.057,0.044c-0.008,0.008-0.017,0.017-0.025,0.026c-0.071-0.122-0.147-0.253-0.21-0.388\r\n\t\t\t\tc-0.053-0.009-0.106-0.017-0.159-0.025c-0.006-0.014-0.012-0.027-0.019-0.04c0.024-0.035,0.051-0.067,0.076-0.101\r\n\t\t\t\tc0.001,0.003,0.005,0.005,0.006,0.008c0.04-0.004,0.081-0.009,0.121-0.013c0.006-0.009,0.013-0.017,0.019-0.026\r\n\t\t\t\tc-0.022-0.025-0.045-0.05-0.067-0.075c0.044-0.062,0.092-0.121,0.137-0.183c0.134,0.06,0.208,0.164,0.343,0.226\r\n\t\t\t\tc0.072,0.033,0.155,0.015,0.21,0.051c-0.013,0.036-0.025,0.072-0.038,0.108c0.005,0.082,0.057,0.11,0.089,0.165\r\n\t\t\t\tc0.042-0.019,0.085-0.038,0.127-0.057c0.033,0.038,0.022,0.078,0.051,0.127c0.022,0.036,0.201,0.12,0.248,0.102h0.013\r\n\t\t\t\tc-0.015-0.064-0.03-0.127-0.045-0.191c0.011-0.076,0.021-0.153,0.032-0.229c0.004-0.002,0.008-0.004,0.013-0.006\r\n\t\t\t\tc0.036,0.05,0.089,0.124,0.159,0.14c0.035-0.09,0.113-0.136,0.222-0.152c-0.011-0.088-0.097-0.155-0.165-0.184\r\n\t\t\t\tc-0.002-0.004-0.004-0.009-0.006-0.013c0.15-0.095,0.182,0.061,0.324,0c0.025-0.019,0.058-0.097,0.089-0.127\r\n\t\t\t\tc0.002-0.006,0.004-0.013,0.006-0.019c-0.087-0.061-0.174-0.123-0.261-0.184c-0.092,0.084-0.164,0.079-0.299,0.051\r\n\t\t\t\tc0.013-0.043,0.025-0.085,0.038-0.127c-0.147-0.013-0.29,0.025-0.47,0.026v-0.095c0.061-0.015,0.123-0.03,0.184-0.044h0.013\r\n\t\t\t\tc-0.051-0.098-0.165-0.231-0.267-0.273c-0.037-0.015-0.062-0.003-0.087,0.008c0.618-0.794,1.268-1.56,1.972-2.276\r\n\t\t\t\tc0.027,0.005,0.054,0.009,0.08,0.014c0.042,0.011,0.084,0.021,0.127,0.032c0.022-0.003,0.044-0.006,0.065-0.009\r\n\t\t\t\tc0.003,0,0.005,0,0.008,0c0.003,0.007,0.006,0.014,0.01,0.022c0.02,0.004,0.051,0.001,0.079-0.002\r\n\t\t\t\tc0.003,0.003,0.005,0.006,0.008,0.008c-0.045,0.019-0.061,0.016-0.102,0.01c-0.025,0.007-0.079,0.031-0.085,0.046\r\n\t\t\t\tc-0.01,0.04,0.124,0.116,0.183,0.098c0.044-0.017,0.087-0.034,0.131-0.051c0.058-0.019,0.1-0.003,0.157-0.022\r\n\t\t\t\tc0.096-0.031,0.196-0.098,0.229-0.154c0.053-0.088-0.124-0.137-0.191-0.155c-0.063-0.017-0.099-0.061-0.143-0.099\r\n\t\t\t\tc-0.051-0.044-0.123-0.071-0.209-0.083c0.015-0.015,0.032-0.028,0.047-0.043c0.017,0.003,0.035,0.009,0.05,0.01\r\n\t\t\t\tc0.011-0.005,0.009-0.006,0.015-0.011c0.018-0.001,0.036-0.001,0.055-0.002c0.098,0.013,0.166,0.087,0.242,0.125\r\n\t\t\t\tc0.058,0.029,0.126,0.035,0.206,0.042c0.022,0.002,0.033,0.013,0.057,0.012c0.021-0.022,0.037-0.048,0.097-0.049\r\n\t\t\t\tc0.002,0.002,0.005,0.004,0.007,0.005c0.001,0.001,0.003,0.003,0.004,0.004c-0.009,0.006-0.019,0.012-0.028,0.019\r\n\t\t\t\tc0.003,0.004,0.006,0.009,0.01,0.013c0.082-0.002,0.101-0.036,0.149-0.053c0.04-0.014,0.063,0.003,0.095-0.008\r\n\t\t\t\tc-0.012,0.025-0.046,0.04-0.061,0.063c-0.015,0.023-0.012,0.045-0.025,0.07c-0.007,0.014-0.031,0.02-0.038,0.036\r\n\t\t\t\tc0.01,0.019,0.049,0.027,0.043,0.05c-0.003,0.006-0.051,0.024-0.06,0.026c0,0.019-0.02,0.038-0.005,0.057\r\n\t\t\t\tc0.01,0.008,0.024,0.008,0.042,0.007c0.003,0.002,0.006,0.003,0.009,0.005c-0.017,0.009-0.038,0.017-0.052,0.026\r\n\t\t\t\tc-0.001,0.018,0.024,0.052,0.013,0.071c-0.012,0.019-0.048,0.03-0.06,0.051c0,0.001,0,0.001,0,0.002\r\n\t\t\t\tc0.084-0.011,0.07-0.036,0.138-0.055c0.04,0.003,0.027,0.022,0.052,0.038c0.012,0.003,0.025,0.006,0.037,0.01\r\n\t\t\t\tc0.001,0.001,0.002,0.002,0.004,0.003c0,0.002,0,0.005,0,0.007c-0.016,0.04-0.137,0.028-0.188,0.046\r\n\t\t\t\tc-0.007,0.004-0.065,0.071-0.067,0.078c0.003,0.008,0.005,0.016,0.008,0.024c-0.011,0.012-0.022,0.025-0.032,0.038\r\n\t\t\t\tc-0.019,0.031-0.038,0.062-0.057,0.092c0.074-0.015,0.084-0.049,0.159-0.064c0.061,0.021,0.023,0.086-0.02,0.107\r\n\t\t\t\tc-0.029,0.014-0.071,0.006-0.102,0.011c-0.063,0.01-0.105,0.042-0.185,0.049c-0.054,0.004-0.117-0.01-0.169,0.006\r\n\t\t\t\tc-0.118,0.035-0.158,0.131-0.289,0.172c0.034,0.002,0.095,0.005,0.125,0.003c0.039-0.009,0.078-0.018,0.118-0.027\r\n\t\t\t\tc0.023,0.004,0.047,0.008,0.07,0.012c0.05,0.008,0.104,0.007,0.161,0.008c0.03-0.031,0.065-0.027,0.119-0.048\r\n\t\t\t\tc0.001-0.002,0.002-0.004,0.003-0.006c0-0.015-0.011-0.025-0.03-0.026c0,0,0-0.001-0.001-0.002\r\n\t\t\t\tc0.021-0.031,0.098-0.036,0.127-0.016c0.007,0.042-0.069,0.055-0.07,0.092c-0.002,0.059,0.172,0.07,0.202,0.108\r\n\t\t\t\tc-0.014,0.005-0.016,0.007-0.013,0.017c-0.062-0.014-0.133-0.027-0.211-0.024c-0.053,0.005-0.106,0.01-0.159,0.015\r\n\t\t\t\tc-0.058,0-0.109-0.014-0.16-0.022c-0.067-0.011-0.133-0.021-0.2-0.032c-0.003,0.001-0.007,0.001-0.01,0.002\r\n\t\t\t\tc-0.003,0.006-0.007,0.012-0.01,0.018c0,0.026,0.154,0.053,0.194,0.053c0.012,0.005,0.034,0.016,0.012,0.028\r\n\t\t\t\tc-0.041,0.017-0.145-0.037-0.22-0.018c-0.111,0.028-0.099,0.092-0.137,0.146c-0.027,0.036-0.054,0.071-0.081,0.107\r\n\t\t\t\tc-0.003,0.008,0.004,0.014,0.009,0.02c0.107,0.021,0.169-0.081,0.21-0.108c0.029-0.009,0.058-0.018,0.086-0.026\r\n\t\t\t\tc0.066-0.032,0.111-0.067,0.214-0.086c-0.003,0.016-0.019,0.023-0.018,0.04c0.034,0.031,0.073,0.012,0.142,0.008\r\n\t\t\t\tc0.019,0,0.038-0.001,0.058-0.001c0.029-0.02,0.092-0.051,0.055-0.082c0,0,0-0.001-0.001-0.002\r\n\t\t\t\tc0.073-0.008,0.116-0.013,0.164,0.002c0.001,0.002,0.001,0.004,0.002,0.006c-0.029,0.03-0.094,0.055-0.093,0.094\r\n\t\t\t\tc0.024,0.013,0.055,0.015,0.064,0.043c-0.107,0.003-0.221,0.01-0.318,0.003c-0.048-0.004-0.097-0.025-0.149-0.02\r\n\t\t\t\tc-0.05,0.005-0.095,0.041-0.126,0.057c-0.053,0.028-0.107,0.056-0.16,0.084c-0.031,0.011-0.061,0.023-0.092,0.034\r\n\t\t\t\tc-0.026,0.023-0.052,0.046-0.077,0.07c0.097,0.037,0.343-0.041,0.494-0.055c0.031-0.005,0.062-0.01,0.093-0.014\r\n\t\t\t\tc0.025,0.006,0.05,0.012,0.074,0.017c0.027-0.002,0.053-0.004,0.08-0.005c0.071,0.006,0.103,0.061,0.143,0.099\r\n\t\t\t\tc-0.048-0.007-0.096-0.013-0.143-0.019c-0.175-0.014-0.382-0.023-0.599,0.048c-0.044,0.013-0.088,0.026-0.132,0.039\r\n\t\t\t\tc0.033,0.026,0.093,0.01,0.126,0.031c0.015,0.022,0.03,0.043,0.045,0.065c0.009,0.006,0.187,0.026,0.212,0.028\r\n\t\t\t\tc0.027-0.007,0.031-0.019,0.051-0.03c0.071-0.01,0.102,0.049,0.058,0.079c-0.07,0.047-0.247,0.037-0.329,0.081\r\n\t\t\t\tc-0.002,0-0.003,0.001-0.005,0.001c0.03,0.018,0.163,0.033,0.21,0.036c-0.003,0.003-0.155,0.049-0.161,0.049\r\n\t\t\t\tc-0.041,0.003-0.061-0.021-0.109,0.004c-0.042,0.022-0.094,0.081-0.039,0.115c0.01,0.006,0.061,0.009,0.061,0.018\r\n\t\t\t\tc0.001,0.014-0.046,0.027-0.052,0.042c-0.006,0.028,0.035,0.04,0.072,0.026c0.049-0.018,0.116-0.057,0.149-0.083\r\n\t\t\t\tc0.068-0.052,0.139-0.105,0.219-0.153c0.026-0.012,0.052-0.023,0.078-0.035c0.04-0.037,0.08-0.074,0.119-0.111\r\n\t\t\t\tc0.043-0.03,0.109-0.051,0.168-0.075c0.037-0.015,0.07-0.028,0.113-0.042c0.041-0.009,0.082-0.018,0.123-0.027\r\n\t\t\t\tc0.021-0.007,0.051-0.021,0.08-0.02c0.023,0.007,0.047,0.013,0.07,0.02c-0.022,0.019-0.042,0.053-0.07,0.067\r\n\t\t\t\tc-0.075,0.036-0.22,0.019-0.315,0.037c-0.025,0.043-0.11,0.069-0.158,0.098c-0.009,0.008-0.002,0.019-0.007,0.028\r\n\t\t\t\tc-0.013,0.026-0.056,0.051-0.112,0.061c0.003,0.009,0.006,0.018,0.009,0.026c-0.158,0.057-0.262,0.142-0.375,0.215\r\n\t\t\t\tc-0.03,0.019-0.109,0.042-0.12,0.068c-0.012,0.015,0.009,0.03,0.021,0.039c0.065,0.049,0.103,0.014,0.195-0.009\r\n\t\t\t\tc-0.019,0.04-0.065,0.091-0.144,0.109c-0.001,0.005-0.002,0.009-0.003,0.014c0.052,0.027,0.141,0.031,0.175-0.022\r\n\t\t\t\tc0.113-0.018,0.086,0.118,0.06,0.151c0.003,0.005,0.006,0.006,0.012,0.013c0.055-0.019,0.148-0.049,0.186-0.075\r\n\t\t\t\tc0.004-0.001,0.008-0.002,0.012-0.002c0.002,0.001,0.004,0.001,0.006,0.002c0.001,0.002,0.001,0.004,0.002,0.006\r\n\t\t\t\tc-0.05,0.055-0.176,0.082-0.215,0.141c0.012,0.026,0.047,0.037,0.078,0.043c0.037-0.003,0.063-0.022,0.086-0.035\r\n\t\t\t\tc0.013,0.011,0.023,0.019,0.028,0.038l-0.049,0.069c-0.008,0.002-0.017,0.003-0.025,0.005c0.026,0.048,0.092,0.004,0.15,0.016\r\n\t\t\t\tc0.032,0.007,0.037,0.052,0.057,0.069c-0.179,0.032-0.096,0.172-0.138,0.254c-0.009,0.019-0.043,0.094-0.017,0.116\r\n\t\t\t\tc0.006,0.006,0.01,0.008,0.021,0.009c0.036,0,0.069-0.044,0.086-0.058c0.047-0.038,0.105-0.089,0.124-0.137\r\n\t\t\t\tc-0.001-0.015-0.003-0.029-0.004-0.044c0.001-0.019,0.025-0.055,0.047-0.067c0.006-0.002,0.011-0.003,0.017-0.005\r\n\t\t\t\tc0.034,0.014,0.057,0.047,0.075,0.077c0.002,0,0.004,0,0.006,0.001c0.011-0.016,0.023-0.032,0.034-0.048\r\n\t\t\t\tc-0.003-0.046-0.006-0.093-0.009-0.14c0.001-0.041,0.018-0.075,0.027-0.11c0.002-0.001,0.003-0.002,0.004-0.003\r\n\t\t\t\tc0.023,0.013,0.046,0.027,0.069,0.04c0.012,0.015-0.004,0.03-0.005,0.042c-0.002,0.033,0.023,0.085,0.059,0.092\r\n\t\t\t\tc0.037,0.007,0.092-0.018,0.131-0.027c0.005,0.037,0.052,0.138,0.083,0.157c0.029,0.009,0.057,0.019,0.086,0.029\r\n\t\t\t\tc0.033,0.016,0.053,0.039,0.077,0.065c0.001,0.003,0.002,0.005,0.003,0.008c-0.08,0.005-0.209-0.043-0.25-0.08\r\n\t\t\t\tc-0.027-0.024-0.028-0.082-0.07-0.091c-0.061-0.014-0.142,0.044-0.163,0.066c-0.002,0-0.003,0.001-0.005,0.001\r\n\t\t\t\tc0.02,0.01,0.078,0.031,0.064,0.059c-0.007,0.019-0.053,0.031-0.075,0.044c-0.062,0.036-0.11,0.071-0.19,0.104\r\n\t\t\t\tc-0.027,0.011-0.089,0.021-0.104,0.038c0.022,0.035,0.111,0.043,0.185,0.018c0.087-0.037,0.175-0.073,0.262-0.11\r\n\t\t\t\tc0.013-0.012,0.026-0.024,0.038-0.036c0.017,0.036,0.059,0.046,0.081,0.071c-0.024,0.009-0.063,0.011-0.098,0.022\r\n\t\t\t\tc-0.09,0.027-0.188,0.048-0.269,0.081c-0.035,0.015-0.092,0.041-0.134,0.034c0.005,0.043,0.049,0.052,0.057,0.092\r\n\t\t\t\tc0.009-0.001,0.019-0.001,0.028-0.002c0,0.002,0.001,0.003,0.001,0.005c-0.015,0.021-0.059,0.025-0.1,0.034\r\n\t\t\t\tc-0.001,0.003-0.002,0.006-0.002,0.009c0.071,0.035,0.051,0.061,0.071,0.126c0.078,0.018,0.126-0.035,0.181-0.058\r\n\t\t\t\tc0.036-0.015,0.083-0.023,0.132-0.032c-0.069,0.057-0.138,0.115-0.207,0.173c0.001,0.002,0.002,0.005,0.003,0.008\r\n\t\t\t\tc0.058,0.008,0.109-0.033,0.173-0.036c0.069-0.004,0.128,0.034,0.115,0.093c-0.012,0.053-0.138,0.066-0.08,0.133\r\n\t\t\t\tc0.048,0.01,0.079-0.016,0.127-0.014c0.002,0,0.003-0.001,0.005-0.001c-0.008,0.023-0.056,0.064-0.035,0.086\r\n\t\t\t\tc0,0.001,0.001,0.002,0.001,0.003c0.108-0.031,0.124-0.099,0.202-0.141c0.009,0.002,0.017,0.004,0.026,0.007\r\n\t\t\t\tc0.001,0.027-0.032,0.057-0.047,0.081c-0.042,0.065-0.084,0.13-0.126,0.195c-0.029,0.051,0.007,0.108,0.077,0.123\r\n\t\t\t\tc0.05,0,0.1,0,0.15,0c0.05,0.005,0.1,0.01,0.15,0.014c0.012,0.017,0.027,0.044,0.031,0.062c-0.019,0.015-0.049,0.031-0.085,0.039\r\n\t\t\t\tc0.002,0.01,0.001,0.012-0.009,0.02c0.009,0.017,0.026,0.022,0.046,0.028c0.037-0.01,0.093-0.026,0.121-0.041\r\n\t\t\t\tc0.002,0.004,0.004,0.008,0.007,0.012c-0.008,0.012-0.025,0.015-0.043,0.023c-0.061,0.029-0.098,0.044-0.103,0.095\r\n\t\t\t\tc0.112-0.018,0.147-0.073,0.235-0.096c0.023,0.072-0.093,0.095-0.116,0.152c0.011,0.023,0.039,0.022,0.053,0.041\r\n\t\t\t\tc-0.039,0.015-0.064,0.034-0.097,0.049c0.041,0.037,0.102,0.063,0.19,0.023c0.008-0.005,0.016-0.011,0.024-0.016\r\n\t\t\t\tc0.023-0.009,0.031,0.008,0.05,0c0.045-0.018,0.029-0.058,0.122-0.037c0,0.002,0.001,0.003,0.002,0.005\r\n\t\t\t\tc-0.013,0.033-0.073,0.046-0.136,0.061c0.058,0.029,0.233,0.015,0.271,0.055c0.036,0.037-0.063,0.081-0.014,0.117\r\n\t\t\t\tc0.006,0.002,0.012,0.001,0.023-0.001c0.028-0.024,0.047-0.046,0.101-0.061c0.008,0.002,0.015,0.004,0.023,0.006\r\n\t\t\t\tc0.006,0.033,0.035,0.061,0.034,0.088c-0.001,0.032-0.072,0.06-0.133,0.07c0.072,0.019,0.181,0.032,0.277,0\r\n\t\t\t\tc-0.001-0.01-0.006-0.026,0.007-0.035c0.001,0,0.002,0,0.003,0c0.025-0.008,0.049-0.015,0.074-0.023\r\n\t\t\t\tc0.018-0.009,0.018-0.024,0.048-0.029c0.001,0,0.002,0,0.003,0c0.001,0,0.002,0,0.002,0c0.001,0,0.002,0,0.003-0.001\r\n\t\t\t\tc0.001,0,0.002,0,0.003,0c0.032-0.001,0.061,0.018,0.104,0.004c0.031-0.018,0.062-0.035,0.094-0.053\r\n\t\t\t\tc0.044-0.016,0.092,0.019,0.092-0.034c0.064,0.001,0.128-0.025,0.114-0.063c-0.096-0.034-0.03-0.068,0.043-0.095\r\n\t\t\t\tc0.035,0.012,0.033,0.039,0.06,0.062c0.009,0.008,0.023,0.008,0.03,0.019c-0.036,0.036-0.115,0.1-0.125,0.14\r\n\t\t\t\tc0.023-0.018,0.04-0.047,0.076-0.059c0.023-0.008,0.049-0.002,0.073-0.012c0.024-0.019,0.048-0.037,0.072-0.055\r\n\t\t\t\tc0.008,0.022,0.018,0.041,0.034,0.055c0.013,0.012,0.052,0.019,0.053,0.04c0.001,0.034-0.057,0.046-0.088,0.07\r\n\t\t\t\tc-0.018,0.014-0.016,0.041-0.034,0.057c-0.035,0.025-0.07,0.05-0.105,0.075c0,0,0,0.001,0.001,0.002\r\n\t\t\t\tc0.032-0.001,0.055-0.016,0.087-0.017c0.02,0.011,0.033,0.028,0.047,0.046c0.002,0.001,0.004,0.002,0.006,0.002\r\n\t\t\t\tc0.075-0.019,0.046-0.092,0.085-0.126c0.041-0.013,0.102-0.007,0.101,0.026c-0.001,0.043-0.072,0.076-0.03,0.132\r\n\t\t\t\tc0.056,0.007,0.091-0.071,0.108-0.096c0.011-0.016,0.04-0.031,0.063-0.042c-0.021,0.042-0.041,0.083-0.062,0.125\r\n\t\t\t\tc0.006-0.001,0.012-0.002,0.017-0.003c0.053,0.045-0.139,0.11-0.08,0.183c0.052,0.007,0.11-0.041,0.178-0.037\r\n\t\t\t\tc0.043,0.002,0.057,0.042,0.094,0.052c0.006-0.001,0.012-0.002,0.017-0.003c0.057-0.029,0.042-0.124,0.109-0.141\r\n\t\t\t\tc0.08-0.02,0.159,0.014,0.22,0.018c0.039-0.001,0.078-0.003,0.117-0.004c0.03,0.001,0.076,0.02,0.11-0.001\r\n\t\t\t\tc0.013-0.009,0.015-0.023,0.02-0.035c0.036-0.085-0.093-0.067-0.067-0.122c-0.041,0.011-0.059,0.029-0.089,0.042\r\n\t\t\t\tc-0.065,0.028-0.129-0.005-0.144-0.044c0.136-0.026,0.396-0.115,0.395-0.18c-0.021,0.001-0.042,0.001-0.063,0.002\r\n\t\t\t\tc-0.034,0.009-0.058,0.035-0.104,0.036c-0.051,0.002-0.124-0.029-0.138-0.067c0.064-0.012,0.128-0.025,0.185-0.032\r\n\t\t\t\tc-0.019-0.013-0.058-0.022-0.087-0.023c-0.003-0.002-0.006-0.003-0.01-0.005c0.031-0.01,0.075-0.019,0.101-0.029\r\n\t\t\t\tc0.034-0.059-0.048-0.07,0.054-0.117c0-0.003,0-0.005,0-0.008c-0.048-0.03-0.174,0.004-0.201-0.043\r\n\t\t\t\tc-0.008-0.014,0.003-0.029,0.009-0.038c0.034-0.053,0.14-0.038,0.185-0.014c0.017-0.003,0.026-0.005,0.033-0.011\r\n\t\t\t\tc0.019-0.014,0.036-0.1,0.012-0.124c0.044-0.024,0.037-0.052,0.056-0.086c0.01-0.01,0.02-0.02,0.03-0.031\r\n\t\t\t\tc-0.041,0.006-0.092,0.025-0.124,0.016l-0.008-0.015c0.097-0.014,0.14-0.081,0.167-0.127c-0.03-0.052-0.1-0.085-0.104-0.156\r\n\t\t\t\tc-0.112-0.018-0.212-0.043-0.286-0.1c0.086-0.011,0.213,0.059,0.274,0.031c0.002-0.001,0.005-0.002,0.007-0.003\r\n\t\t\t\tc-0.001-0.003-0.002-0.005-0.003-0.008c-0.042-0.016-0.114-0.015-0.143-0.042c-0.025-0.024-0.027-0.071-0.049-0.092\r\n\t\t\t\tc0.047-0.029,0.093-0.059,0.14-0.088c0.046-0.019,0.099-0.029,0.134-0.05c-0.008-0.009-0.016-0.018-0.025-0.027\r\n\t\t\t\tc-0.005-0.014-0.011-0.028-0.016-0.042c-0.03-0.035-0.107-0.073-0.064-0.124c0-0.001-0.001-0.002-0.001-0.003\r\n\t\t\t\tc0.036,0.017,0.147,0.055,0.204,0.044c-0.001-0.003-0.002-0.005-0.003-0.008c0.006-0.008,0.012-0.008,0.012-0.019\r\n\t\t\t\tc-0.034-0.018-0.117-0.048-0.111-0.082c0.001-0.001,0.003-0.002,0.004-0.003c0.046,0.004,0.07,0.02,0.12,0.02\r\n\t\t\t\tc0.021-0.009,0.035-0.019,0.033-0.036c-0.026-0.023-0.065-0.029-0.091-0.051c0.001-0.002,0.002-0.005,0.003-0.007\r\n\t\t\t\tc0.035-0.01,0.079,0.009,0.106-0.015c0.019-0.013,0.014-0.041,0.035-0.055c0.018-0.012,0.068-0.012,0.091-0.021\r\n\t\t\t\tc0.015-0.022,0.003-0.047-0.001-0.075c-0.068,0.036-0.136,0.006-0.192,0.002c-0.019,0-0.038,0.001-0.058,0.001\r\n\t\t\t\tc-0.021-0.005-0.042-0.024-0.057-0.036c0,0,0-0.001,0-0.002c0.047,0,0.084,0.013,0.126,0.016\r\n\t\t\t\tc0.044-0.001,0.088-0.001,0.131-0.002c0.028-0.001,0.09-0.009,0.1-0.024c0.026-0.037-0.037-0.077-0.065-0.092\r\n\t\t\t\tc-0.023-0.013-0.046-0.027-0.069-0.04c-0.012-0.013-0.024-0.025-0.036-0.038c-0.018-0.01-0.063-0.003-0.087-0.007\r\n\t\t\t\tc-0.051-0.015-0.102-0.031-0.152-0.046c0.035-0.013,0.071-0.026,0.106-0.039c0.054-0.022,0.094-0.056,0.147-0.073\r\n\t\t\t\tc0.065-0.021,0.098,0.007,0.147-0.018c-0.003-0.033-0.056-0.036-0.075-0.06c0.04-0.014,0.032-0.041,0.033-0.07\r\n\t\t\t\tc-0.008-0.018-0.024-0.007-0.038-0.018c-0.01-0.017-0.02-0.034-0.03-0.051c-0.015-0.01-0.031-0.019-0.047-0.029\r\n\t\t\t\tc-0.088-0.043-0.195,0.005-0.197-0.102c-0.016-0.007-0.033-0.014-0.049-0.021c0.207-0.079,0.173-0.008,0.319,0\r\n\t\t\t\tc0.03-0.008,0.081-0.026,0.102-0.043c0.038-0.03,0.094-0.146,0.023-0.187c-0.046-0.027-0.126-0.019-0.183-0.035l-0.005,0.001\r\n\t\t\t\tc0,0,0-0.001-0.001-0.002c0.156-0.015,0.143-0.03,0.163-0.114c0.004-0.003,0.009-0.005,0.013-0.007c0.003,0,0.005,0,0.008,0\r\n\t\t\t\tc0.029,0.023,0.044,0.049,0.091,0.053c0.011,0.002,0.008-0.002,0.02-0.004c0.001,0,0.002,0,0.003,0\r\n\t\t\t\tc-0.017-0.036-0.034-0.072-0.051-0.108c0.001-0.001,0.003-0.002,0.005-0.003c0.035,0.01,0.044,0.023,0.074,0.039\r\n\t\t\t\tc0.01,0.002,0.021,0.004,0.031,0.006c0.009,0.009,0.018,0.019,0.028,0.028c0.03,0.017,0.13,0.009,0.165-0.018\r\n\t\t\t\tc0.031-0.024,0.019-0.064,0.056-0.086c0.014-0.008,0.03-0.006,0.037,0.001c0.13-0.104-0.137-0.115-0.131-0.166\r\n\t\t\t\tc0.002-0.017,0.048-0.033,0.064-0.046c0.043-0.032,0.089-0.076,0.116-0.114c-0.009,0-0.018-0.001-0.027-0.001\r\n\t\t\t\tc-0.002-0.001-0.004-0.002-0.006-0.004c0.05-0.023,0.021-0.065,0.001-0.1c0.055,0.009,0.141,0.024,0.224-0.01\r\n\t\t\t\tc-0.032,0.049-0.038,0.104-0.065,0.156c-0.017,0.033-0.065,0.069-0.066,0.104c0.008,0.011,0.016,0.021,0.024,0.032\r\n\t\t\t\tc0.015,0.03-0.047,0.071-0.007,0.098c0.021,0.016,0.068,0.009,0.106,0.008c0.001,0,0.002,0,0.002,0\r\n\t\t\t\tc-0.004-0.037,0.007-0.078-0.028-0.11c0.083-0.005,0.124-0.07,0.134-0.107c0.002-0.001,0.003-0.002,0.004-0.003\r\n\t\t\t\tc0.022,0.02,0.027,0.067,0.068,0.07c0.003,0,0.007,0,0.01,0c0.055-0.028,0.102-0.093,0.119-0.136\r\n\t\t\t\tc-0.006-0.004-0.012-0.009-0.018-0.013c0.001,0,0.002,0,0.003,0c0.045,0.009,0.167,0.05,0.2-0.008\r\n\t\t\t\tc0.002-0.031,0.004-0.063,0.006-0.094c0.012-0.023,0.053-0.042,0.051-0.069c0.004-0.047-0.125-0.031-0.121-0.087\r\n\t\t\t\tc0.012-0.034,0.201-0.025,0.247-0.027c0.022,0.013,0.039,0.036,0.067,0.044c0.065-0.002,0.086-0.04,0.101-0.069\r\n\t\t\t\tc0.032-0.059,0.046-0.123,0.077-0.184c0.014-0.028,0.029-0.056,0.043-0.085c0.008-0.022-0.001-0.073-0.025-0.093\r\n\t\t\t\tc-0.006-0.002-0.003-0.002-0.013-0.001c0.018-0.037,0.066-0.059,0.078-0.1c-0.014-0.01-0.028-0.02-0.042-0.03\r\n\t\t\t\tc-0.026-0.028-0.037-0.094-0.024-0.122c0.013-0.028,0.059-0.047,0.07-0.077c0.014-0.038-0.033-0.077-0.004-0.117\r\n\t\t\t\tc0.02-0.027,0.112-0.04,0.135-0.086c0.002-0.016,0.004-0.032,0.005-0.048c0.016-0.031,0.132-0.113,0.06-0.153\r\n\t\t\t\tc-0.023-0.013-0.064-0.006-0.096-0.01c-0.002,0-0.003,0.001-0.005,0.001c0.016-0.009,0.034-0.011,0.039-0.024\r\n\t\t\t\tc0.017-0.065-0.146-0.086-0.173-0.118c0.009-0.012,0.018-0.025,0.027-0.037c0.001-0.001,0.003-0.002,0.004-0.003\r\n\t\t\t\tc0.031,0.059,0.15,0.093,0.239,0.092c0.045,0,0.091-0.01,0.128-0.003c0.046,0.009,0.076,0.04,0.128,0.044\r\n\t\t\t\tc0.046,0.004,0.173-0.02,0.191-0.045c-0.003-0.044-0.086-0.053-0.114-0.083c0.091,0.005,0.077-0.035,0.134,0.031\r\n\t\t\t\tc0.041,0.007,0.101-0.012,0.116-0.034c0.001-0.052-0.066-0.084-0.058-0.137c0.005-0.005,0.011-0.01,0.016-0.015\r\n\t\t\t\tc0.03,0.025,0.076,0.076,0.147,0.053c0.075-0.023,0.014-0.08,0.073-0.109c0.046-0.014,0.093-0.029,0.139-0.043\r\n\t\t\t\tc0.048-0.025,0.083-0.063,0.134-0.089c0.033-0.013,0.065-0.027,0.098-0.04c0.023-0.014,0.024-0.037,0.052-0.051\r\n\t\t\t\tc0.052-0.027,0.165-0.104,0.16-0.147c0.013,0,0.026-0.001,0.039-0.001c0.009-0.007,0.007-0.015,0.014-0.021\r\n\t\t\t\tc0.024-0.02,0.098-0.01,0.069-0.046c-0.007-0.009-0.015-0.014-0.02-0.028c0.02-0.022,0.045-0.041,0.1-0.051\r\n\t\t\t\tc-0.003-0.01-0.007-0.02-0.01-0.03c0.004-0.01,0.018-0.015,0.036-0.02c0.005-0.043-0.016-0.072-0.045-0.098\r\n\t\t\t\tc0.008-0.035,0.079-0.049,0.107-0.077c0-0.029-0.031-0.052-0.063-0.055c0.037-0.037,0.131-0.031,0.146-0.078\r\n\t\t\t\tc-0.024-0.02-0.058-0.024-0.069-0.057c0.023-0.025,0.075-0.06,0.135-0.054c0.001,0,0.002,0,0.003,0\r\n\t\t\t\tc-0.033-0.02-0.066-0.041-0.099-0.061c-0.089-0.081,0.158-0.142,0.204-0.197c-0.022,0.004-0.029,0-0.037-0.01\r\n\t\t\t\tc-0.002-0.001-0.004-0.002-0.006-0.002c0,0,0-0.001-0.001-0.002c0.032-0.002,0.069,0.005,0.1-0.008\r\n\t\t\t\tc0.004-0.004,0.008-0.007,0.012-0.011c-0.001-0.024-0.034-0.036-0.057-0.044c-0.007-0.043,0.064-0.091,0.107-0.117\r\n\t\t\t\tc0.015,0.003,0.03,0.006,0.045,0.009c-0.008-0.04-0.016-0.08-0.024-0.12c-0.038,0.015-0.036,0.038-0.061,0.057\r\n\t\t\t\tc-0.04,0.031-0.1,0.067-0.155,0.09c-0.046,0.018-0.166,0.053-0.22,0.054c-0.055,0.001-0.099-0.006-0.169,0.007\r\n\t\t\t\tc-0.086,0.017-0.192,0.071-0.27,0.055c-0.009-0.018-0.019-0.035-0.028-0.053c-0.001,0-0.002,0-0.003,0.001\r\n\t\t\t\tc-0.072,0.055-0.152,0.123-0.2,0.186c-0.031,0.04-0.06,0.078-0.102,0.114c-0.038,0.032-0.043,0.082-0.099,0.107\r\n\t\t\t\tc-0.053,0.023-0.122,0.012-0.178,0.027c-0.003,0-0.006-0.001-0.008-0.002c-0.047-0.023-0.103,0.025-0.159,0.03\r\n\t\t\t\tc-0.014-0.012-0.007-0.021,0.003-0.032c0.022-0.023,0.056-0.047,0.12-0.051c0.022-0.001,0.054-0.002,0.075-0.013\r\n\t\t\t\tc0.068-0.034,0.046-0.111,0.096-0.141c0.031-0.019,0.151-0.057,0.162-0.078c0.014-0.025-0.022-0.049-0.044-0.053\r\n\t\t\t\tc-0.04,0.008-0.037,0.022-0.06,0.033l-0.116,0.034c-0.082,0.034-0.185,0.115-0.294,0.118c-0.015-0.011-0.018-0.03-0.038-0.036\r\n\t\t\t\tc-0.051,0.004-0.131,0.08-0.148,0.105c-0.006,0.001-0.012,0.001-0.018,0.002c-0.003,0-0.005,0-0.008,0\r\n\t\t\t\tc-0.046-0.074,0.259-0.214,0.154-0.309c-0.031-0.028-0.086-0.028-0.126-0.046c0.103-0.026,0.206-0.053,0.309-0.079\r\n\t\t\t\tc0.011-0.005,0.016-0.012,0.017-0.022c0.05-0.019,0.101-0.031,0.138-0.055c0.04-0.026,0.15-0.164,0.158-0.201\r\n\t\t\t\tc0.003-0.016-0.028-0.058-0.042-0.07c-0.016-0.014-0.044-0.019-0.068-0.024c-0.11-0.022-0.111,0.021-0.198,0.048\r\n\t\t\t\tc-0.092,0.028-0.168-0.001-0.196,0.069c-0.047,0.001-0.074-0.025-0.115-0.028c-0.045-0.003-0.093,0.034-0.122,0.047\r\n\t\t\t\tc-0.001,0-0.002,0-0.003,0c0,0,0-0.001-0.001-0.002c0.016-0.039,0.101-0.058,0.108-0.097c0.007-0.042-0.147-0.072-0.199-0.067\r\n\t\t\t\tc-0.027,0.007-0.053,0.015-0.08,0.022c-0.065,0.001-0.133-0.039-0.158-0.08c0.031-0.004,0.053,0.006,0.077,0.01\r\n\t\t\t\tc0.032,0.005,0.153,0.002,0.167-0.005c0.121,0.041,0.265,0.068,0.372,0.122c0.097-0.022,0.152-0.08,0.272-0.089\r\n\t\t\t\tc0.1-0.007,0.172,0.031,0.261,0.04c0.04-0.01,0.035-0.031,0.071-0.042c0.056,0.011,0.104,0.041,0.15,0.063\r\n\t\t\t\tc0.024,0.008,0.048,0.017,0.071,0.025c0.016,0.019,0.031,0.037,0.047,0.056c0.021,0.005,0.032-0.001,0.046,0.011\r\n\t\t\t\tc0.015,0.022,0.03,0.044,0.045,0.066c0.042,0.038,0.131,0.059,0.2,0.07c0.101,0.016,0.192,0.009,0.27-0.045\r\n\t\t\t\tc0.017-0.012,0.034-0.02,0.038-0.036c0.013-0.051-0.114-0.086-0.107-0.166c0.001-0.001,0.003-0.002,0.004-0.003\r\n\t\t\t\tc0.014,0.037,0.178,0.137,0.22,0.148c0.022,0.005,0.059,0.007,0.087-0.007c0.02-0.01,0.031-0.026,0.039-0.041\r\n\t\t\t\tc0.037-0.061-0.073-0.08-0.109-0.114c0.003-0.006,0.006-0.013,0.01-0.019c-0.026,0-0.033-0.018-0.043-0.033\r\n\t\t\t\tc-0.013-0.002-0.028,0-0.049,0.004c-0.004-0.04,0.038-0.112-0.07-0.076c0.009-0.016,0.01-0.032,0.012-0.052\r\n\t\t\t\tc-0.015,0.002-0.03,0.005-0.045,0.007c-0.002,0-0.004,0-0.005-0.001c-0.033-0.116-0.015-0.165-0.164-0.203\r\n\t\t\t\tc-0.003,0-0.005,0-0.008,0c-0.019,0.045-0.027,0.105-0.038,0.15c-0.001,0.001-0.003,0.002-0.004,0.003\r\n\t\t\t\tc-0.006-0.003-0.013-0.007-0.019-0.01c-0.004-0.025,0.002-0.056-0.014-0.084c-0.022-0.037-0.043-0.094-0.038-0.131\r\n\t\t\t\tc-0.051,0.012-0.061,0.058-0.095,0.08c-0.009-0.002-0.019-0.003-0.028-0.005c0-0.058-0.017-0.052-0.091-0.052\r\n\t\t\t\tc-0.013-0.02-0.001-0.032-0.007-0.054c-0.005-0.001-0.01-0.003-0.014-0.004c-0.012,0.001-0.02,0.003-0.029,0.007\r\n\t\t\t\tc-0.007-0.003-0.006-0.001-0.01-0.008c-0.053,0.01-0.081,0.001-0.126,0.003c-0.151,0.005-0.169,0.037-0.238-0.051\r\n\t\t\t\tc-0.041-0.009-0.201-0.016-0.26-0.004c-0.013,0.035-0.019,0.069-0.038,0.102c-0.018,0.027-0.037,0.054-0.055,0.08\r\n\t\t\t\tc-0.003,0.002-0.006,0.005-0.008,0.007c-0.027-0.016-0.116-0.06-0.103-0.103c0.009-0.015,0.038-0.018,0.056-0.029\r\n\t\t\t\tc0.021-0.013,0.084-0.093,0.073-0.115c-0.015-0.03-0.082-0.03-0.118-0.039c-0.039-0.01-0.067-0.043-0.116-0.041\r\n\t\t\t\tc-0.046,0.002-0.061,0.033-0.074,0.049c-0.018,0.016-0.035,0.032-0.053,0.048c-0.021,0.029-0.031,0.063-0.043,0.095\r\n\t\t\t\tc-0.007,0.002-0.013,0.004-0.019,0.005c-0.015-0.051-0.072-0.083-0.151-0.068c0,0,0-0.001-0.001-0.001\r\n\t\t\t\tc0.024-0.031,0.103-0.012,0.139-0.034c0.06-0.036,0.077-0.119,0.142-0.155c0.004-0.005,0.009-0.01,0.013-0.016\r\n\t\t\t\tc-0.078-0.016-0.155-0.032-0.243-0.04c-0.032,0.023-0.05,0.013-0.09,0.032c-0.021,0.015-0.043,0.03-0.064,0.045\r\n\t\t\t\tc-0.072,0.047-0.113,0.067-0.106,0.143c-0.023-0.003-0.035-0.007-0.05-0.017c-0.124-0.083,0.099-0.103,0.101-0.159\r\n\t\t\t\tc0.001-0.031-0.064-0.029-0.086-0.038c-0.002,0-0.004,0-0.005-0.001c0,0,0-0.001-0.001-0.002c0.065-0.02,0.17-0.047,0.208-0.018\r\n\t\t\t\tc0.055-0.015,0.091-0.086,0.101-0.119c0.002-0.012,0.004-0.024,0.007-0.036c0.019-0.029,0.096-0.064,0.136-0.084\r\n\t\t\t\tc0.001-0.002,0.002-0.004,0.003-0.005c-0.051-0.005-0.107-0.018-0.136-0.046c0.06,0.007,0.119,0.006,0.189,0.005\r\n\t\t\t\tc-0.007-0.017-0.02-0.023-0.032-0.034c-0.018-0.066,0.148-0.105,0.248-0.112c0.019-0.003,0.038-0.006,0.058-0.01\r\n\t\t\t\tc0.014,0.001,0.034,0.006,0.062-0.003c0.018-0.006,0.028-0.016,0.039-0.024c0.005,0.031-0.025,0.045-0.053,0.063\r\n\t\t\t\tc-0.039,0.004-0.2-0.007-0.232,0.033c0,0.003,0,0.005,0,0.008c0.038,0.019,0.086,0.056,0.135,0.064\r\n\t\t\t\tc0.063,0.01,0.146-0.01,0.22-0.012c0.032,0,0.063,0,0.095,0c0.05-0.056,0.09-0.128,0.108-0.194\r\n\t\t\t\tc0.015-0.005,0.03-0.001,0.047-0.002c0.036-0.002,0.135-0.04,0.152-0.052c0.047-0.035-0.09-0.189-0.128-0.197\r\n\t\t\t\tc-0.032-0.007-0.07-0.002-0.107-0.004c-0.059-0.004-0.24-0.04-0.269,0.031c0.007,0.018,0.019,0.023,0.032,0.034\r\n\t\t\t\tc0.001,0.002,0.001,0.003,0.002,0.005c-0.054,0.001-0.109,0.001-0.163,0.001c-0.002,0-0.003,0.001-0.005,0.001\r\n\t\t\t\tc-0.006-0.034,0.037-0.085,0.002-0.115c-0.013-0.007-0.061,0.002-0.077,0c-0.003-0.017,0.025-0.026,0.044-0.033\r\n\t\t\t\tc0.024-0.05-0.082-0.091-0.112-0.123c0,0,0-0.001-0.001-0.002c0.049,0.003,0.087,0.023,0.143,0.019\r\n\t\t\t\tc0.08-0.005,0.117-0.075,0.219-0.082c0.053-0.003,0.078,0.028,0.129,0.024c0.015-0.006,0.029-0.012,0.044-0.018\r\n\t\t\t\tc0.076-0.037,0.128-0.084,0.117-0.15c-0.006-0.035-0.112-0.077-0.174-0.057c-0.075,0.034-0.15,0.068-0.225,0.101\r\n\t\t\t\tc-0.023,0.015-0.039,0.033-0.066,0.048c0.001-0.026,0.017-0.077,0-0.103c-0.026-0.042-0.069-0.068-0.087-0.113\r\n\t\t\t\tc-0.144,0.026-0.093,0.074-0.143,0.127c-0.101,0.032-0.174-0.025-0.264-0.018c0.036-0.037,0.154-0.006,0.199-0.003\r\n\t\t\t\tc0.004-0.001,0.008-0.001,0.012-0.002c0.006-0.013,0.012-0.027,0.018-0.04c0.021-0.034,0.052-0.065,0.088-0.093\r\n\t\t\t\tc-0.001-0.001-0.003-0.003-0.004-0.004c-0.015-0.008-0.041-0.006-0.061-0.008c-0.037-0.005-0.076-0.012-0.118-0.013\r\n\t\t\t\tc-0.078,0-0.163,0.02-0.217-0.003c0.044-0.008,0.061-0.02,0.074-0.039c-0.012-0.023-0.076-0.028-0.104-0.037\r\n\t\t\t\tc-0.001-0.002-0.001-0.004-0.002-0.006c0.057-0.01,0.172,0.001,0.217,0.01c0.051,0.011,0.098,0.041,0.167,0.033\r\n\t\t\t\tc0.034-0.018,0.074-0.065,0.132-0.048c0.029,0.008,0.042,0.034,0.072,0.043c0.067-0.007,0.093-0.07,0.062-0.117\r\n\t\t\t\tc-0.04-0.061-0.125-0.079-0.182-0.12c-0.022-0.016-0.009-0.05-0.031-0.062c-0.042-0.024-0.124,0-0.196,0.004\r\n\t\t\t\tc-0.024-0.002-0.048-0.003-0.073-0.005c-0.041,0.002-0.072,0.028-0.098,0.039c-0.039,0.016-0.082,0.03-0.131,0.042\r\n\t\t\t\tc0-0.001-0.001-0.002-0.001-0.003c0.069-0.022,0.084-0.061,0.131-0.091c0.041-0.027,0.109-0.044,0.145-0.073\r\n\t\t\t\tc0.016-0.013,0.031-0.04,0.007-0.058c-0.01-0.007-0.041-0.008-0.068-0.013c0.057-0.028,0.115-0.055,0.172-0.083\r\n\t\t\t\tc0.024,0.008,0.048,0.016,0.072,0.024c0.029,0.02,0.058,0.041,0.086,0.062c0.003,0.001,0.006,0.001,0.008,0.002\r\n\t\t\t\tc0.003-0.003,0.005-0.005,0.008-0.008c-0.002-0.029-0.048-0.05-0.072-0.066c-0.018-0.012-0.036-0.025-0.053-0.037\r\n\t\t\t\tC24.16,6.946,27.965,6,32,6c4.819,0,9.317,1.335,13.186,3.62c-0.129,0.065-0.246,0.164-0.324,0.268\r\n\t\t\t\tc-0.048-0.001-0.132-0.022-0.153-0.019c-0.081,0.013-0.199,0.161-0.229,0.229c-0.013,0.013-0.025,0.025-0.038,0.038\r\n\t\t\t\tc0.039,0.028,0.075,0.062,0.102,0.102c-0.098,0.069-0.24,0.035-0.292,0.153c-0.004,0.004-0.008,0.008-0.013,0.013\r\n\t\t\t\tc0.032,0.03,0.064,0.059,0.095,0.089c-0.004,0.027-0.008,0.055-0.013,0.083c-0.383-0.001-0.322,0.111-0.547,0.216v0.006\r\n\t\t\t\tc0.208,0.251,0.238,0.04,0.521,0.089c0.13,0.023,0.226,0.096,0.343,0.121c0.109-0.061,0.161-0.161,0.248-0.241\r\n\t\t\t\tc-0.002-0.025-0.004-0.051-0.006-0.076c-0.034-0.021-0.068-0.042-0.102-0.064c-0.004-0.006-0.008-0.013-0.013-0.019\r\n\t\t\t\tc0.023-0.023,0.047-0.047,0.07-0.07c0.074,0.003,0.112,0.025,0.159,0.051c0.055-0.058,0.136-0.114,0.197-0.165v-0.013\r\n\t\t\t\tc-0.021-0.017-0.042-0.034-0.064-0.051c-0.013-0.017-0.002-0.045,0.006-0.076c0.015-0.013,0.03-0.026,0.044-0.038\r\n\t\t\t\tc0.107,0.001,0.27,0.047,0.356,0.006c0.036-0.028,0.072-0.055,0.108-0.083c0.021-0.023,0.042-0.047,0.063-0.07\r\n\t\t\t\tc-0.028-0.015-0.055-0.03-0.083-0.045c0.009-0.043,0.048-0.077,0.099-0.106c0.83,0.518,1.632,1.072,2.395,1.677\r\n\t\t\t\tc-0.005,0.025-0.011,0.05-0.016,0.075c-0.049,0.083-0.097,0.165-0.146,0.248c-0.135,0.174-0.528,0.182-0.464,0.489\r\n\t\t\t\tc0.053,0.004,0.106,0.008,0.159,0.013c0.135,0.378-0.104,0.29-0.146,0.515c0.07,0.108,0.28,0.064,0.369,0.153\r\n\t\t\t\tc0.03,0.036-0.002,0.112,0.013,0.165c0.035,0.124,0.135,0.168,0.286,0.146c-0.018,0.094-0.114,0.264-0.184,0.311\r\n\t\t\t\tc-0.016,0.013-0.038,0.014-0.07,0.013c-0.378-0.351-0.896-0.546-1.468-0.705c-0.123-0.034-0.46-0.13-0.635-0.089\r\n\t\t\t\tc-0.081,0.019-0.116,0.1-0.184,0.134c-0.002,0.004-0.004,0.008-0.006,0.013c0.061,0.078,0.123,0.157,0.184,0.235\r\n\t\t\t\tc-0.01,0.223-0.12,0.179-0.292,0.203c-0.021,0.033-0.037,0.114-0.051,0.146c-0.095,0.048-0.191-0.018-0.216-0.089\r\n\t\t\t\tc0.03-0.038,0.059-0.076,0.089-0.115c-0.178-0.082-0.286-0.093-0.451,0.032c-0.042,0.034-0.085,0.068-0.127,0.102\r\n\t\t\t\tc-0.1,0.03-0.176-0.034-0.235-0.051c-0.105-0.03-0.28-0.002-0.362,0.032c-0.091,0.037-0.088,0.172-0.172,0.222\r\n\t\t\t\tc-0.028-0.015-0.037-0.02-0.044-0.057c-0.182,0.003-0.224,0.07-0.375,0.019c0-0.05,0.007-0.062,0.025-0.089\r\n\t\t\t\tc0.038-0.006,0.076-0.013,0.114-0.019c0-0.097,0.017-0.161,0.026-0.235c-0.381-0.002-0.167,0.2-0.419,0.248\r\n\t\t\t\tc-0.006-0.002-0.013-0.004-0.019-0.006c-0.011-0.034-0.021-0.068-0.032-0.102c-0.133,0.055-0.267,0.11-0.4,0.165\r\n\t\t\t\tc-0.226,0.09-0.453,0.187-0.661,0.273c-0.051,0.015-0.102,0.03-0.153,0.045c-0.087,0.07-0.049,0.285-0.14,0.349\r\n\t\t\t\tc-0.057,0.011-0.115,0.021-0.172,0.032c-0.341,0.069-0.427-0.091-0.629-0.248c0.041-0.201,0.281-0.195,0.508-0.203\r\n\t\t\t\tc-0.055-0.114-0.169-0.349-0.305-0.375c-0.097,0.009-0.195,0.017-0.292,0.025c-0.082-0.018-0.133-0.053-0.216-0.032\r\n\t\t\t\tc-0.017,0.148,0.159,0.164,0.121,0.337c-0.051,0.081-0.102,0.161-0.152,0.241c-0.004,0.004-0.009,0.009-0.013,0.013\r\n\t\t\t\tc0.034,0.051,0.079,0.078,0.153,0.089c0.079,0.238,0.029,0.214-0.032,0.407c-0.006,0.036-0.013,0.072-0.019,0.108v0.013\r\n\t\t\t\tc-0.166-0.008-0.335-0.211-0.566-0.184c-0.124,0.261-0.492,0.237-0.661,0.445c0.005,0.173,0.26,0.294,0.14,0.47\r\n\t\t\t\tc-0.034-0.011-0.068-0.021-0.102-0.032c-0.071,0.008-0.14,0.046-0.235,0.019c-0.217-0.062-0.433-0.161-0.604-0.267\r\n\t\t\t\tc-0.103,0-0.1,0.078-0.153,0.127c0.003,0.063,0.126,0.201,0.191,0.229c0.057,0.024,0.137-0.001,0.191,0.006\r\n\t\t\t\tc0.15,0.265-0.1,0.247-0.261,0.21c-0.072-0.016-0.157,0.001-0.21-0.032c-0.029-0.021-0.053-0.077-0.064-0.114\r\n\t\t\t\tc-0.076-0.038-0.207-0.014-0.292-0.057c-0.043-0.022-0.208-0.444-0.216-0.527c0.122-0.036,0.163-0.19,0.07-0.292\r\n\t\t\t\tc-0.066-0.072-0.223-0.087-0.305-0.14c-0.136-0.088-0.245-0.222-0.362-0.33c0.221-0.112,0.253,0.089,0.343,0.14\r\n\t\t\t\tc0.07,0.011,0.14,0.021,0.21,0.032c0.5,0.15,1.305,0.524,1.831,0.127c0.111-0.084,0.24-0.161,0.235-0.343\r\n\t\t\t\tc-0.069-0.069-0.081-0.106-0.076-0.242c-0.091-0.072-0.211-0.158-0.331-0.197c-0.127-0.038-0.254-0.076-0.381-0.115\r\n\t\t\t\tc-0.121-0.102-0.242-0.203-0.362-0.305c-0.068-0.021-0.136-0.042-0.203-0.063c-0.108-0.038-0.216-0.076-0.324-0.114\r\n\t\t\t\tc-0.18-0.013-0.36-0.025-0.54-0.038c-0.03,0.023-0.059,0.047-0.089,0.07c-0.004-0.046-0.008-0.093-0.013-0.14\r\n\t\t\t\tc-0.183-0.035-0.345-0.068-0.35-0.28c-0.061,0.036-0.123,0.072-0.184,0.108c-0.046,0.019-0.103,0.021-0.14,0.044\r\n\t\t\t\tc-0.114-0.074-0.219-0.036-0.369-0.025c-0.066-0.103-0.205-0.127-0.28-0.222c0.237,0.002,0.468,0.029,0.591-0.095\r\n\t\t\t\tc-0.002-0.023-0.004-0.047-0.006-0.07c-0.028-0.017-0.055-0.034-0.083-0.051c-0.065-0.023-0.14,0.003-0.191-0.019\r\n\t\t\t\tc-0.106-0.045-0.177-0.123-0.299-0.159c-0.07,0.062-0.137,0.151-0.152,0.267c-0.04-0.008-0.081-0.017-0.121-0.025\r\n\t\t\t\tc0.041-0.129,0.058-0.18,0.127-0.279c-0.05-0.066-0.162-0.027-0.242-0.013c-0.045,0.144-0.117,0.243-0.248,0.305\r\n\t\t\t\tc-0.004-0.093-0.008-0.187-0.013-0.28c-0.139,0.095-0.322,0.263-0.388,0.426c-0.017-0.002-0.034-0.004-0.051-0.006\r\n\t\t\t\tc-0.001-0.246,0.115-0.269,0.216-0.4c-0.281-0.021-0.326,0.061-0.47,0.203c-0.031,0.023-0.079-0.012-0.121,0.013\r\n\t\t\t\tc-0.073,0.044-0.144,0.185-0.172,0.273c-0.187-0.096-0.28-0.273-0.381,0.083c-0.042-0.036-0.085-0.072-0.127-0.108\r\n\t\t\t\tc-0.006-0.002-0.013-0.004-0.019-0.006c-0.048,0.076-0.089,0.121-0.203,0.134c-0.027,0.103-0.078,0.174-0.153,0.229\r\n\t\t\t\tc0.014-0.069,0.027-0.136,0.051-0.191c-0.004-0.011-0.008-0.021-0.013-0.032c-0.006-0.004-0.013-0.008-0.019-0.013\r\n\t\t\t\tc-0.084,0.046-0.148,0.229-0.197,0.311c-0.135-0.012-0.165-0.08-0.299-0.032c-0.025-0.021-0.051-0.042-0.076-0.063\r\n\t\t\t\tc-0.061,0.246-0.091,0.112-0.216,0.203c-0.066,0.048-0.033,0.116-0.146,0.153c-0.019,0.021-0.038,0.042-0.057,0.063\r\n\t\t\t\tc0.026,0.021,0.051,0.042,0.076,0.064v0.006c-0.036,0.051-0.106,0.052-0.172,0.038c0.011,0.047,0.021,0.093,0.032,0.14\r\n\t\t\t\tc-0.019,0.028-0.038,0.055-0.057,0.083c-0.006,0.004-0.013,0.009-0.019,0.013c-0.046-0.028-0.064-0.041-0.089-0.089h-0.006\r\n\t\t\t\tc-0.065,0.006-0.07,0.078-0.133,0.102c-0.009,0.027,0.014,0.055,0.044,0.076v0.038c-0.054,0.016-0.077,0.025-0.102,0.07\r\n\t\t\t\tc-0.041-0.01-0.074-0.026-0.127-0.032c-0.044,0.035-0.058,0.078-0.121,0.095c0.011,0.038,0.019,0.052,0.057,0.064\r\n\t\t\t\tc-0.034,0.075-0.199,0.095-0.273,0.134c-0.006,0.004-0.013,0.008-0.019,0.013c0.021,0.036,0.042,0.072,0.064,0.108v0.006\r\n\t\t\t\tc-0.065,0.004-0.112,0.01-0.178,0.006c-0.021,0.034-0.042,0.068-0.063,0.102c0.042,0.051,0.093,0.07,0.127,0.134v0.006\r\n\t\t\t\tc-0.042,0.006-0.085,0.013-0.127,0.019c-0.006,0.042-0.013,0.085-0.019,0.127c-0.163-0.038-0.167,0.098-0.229,0.21\r\n\t\t\t\tc0.021,0.006,0.042,0.013,0.064,0.019c0.002,0.044,0.004,0.089,0.006,0.133c-0.05,0.003-0.081,0.005-0.121-0.006\r\n\t\t\t\tc-0.075,0.075-0.123,0.164-0.203,0.235c0.006,0.019,0.013,0.038,0.019,0.057v0.006c-0.063,0.046-0.087,0.015-0.159,0\r\n\t\t\t\tc-0.094,0.045-0.266,0.185-0.311,0.28c-0.006,0.034-0.013,0.068-0.019,0.102c-0.039,0.065-0.125,0.084-0.159,0.165\r\n\t\t\t\tc-0.006,0.004-0.013,0.009-0.019,0.013c-0.019-0.013-0.038-0.026-0.057-0.038c-0.08-0.054-0.225,0.137-0.222,0.242\r\n\t\t\t\tc-0.085-0.036-0.205-0.032-0.337-0.032l-0.032,0.032c0.017,0.072,0.086,0.103,0.159,0.114c-0.063,0.075-0.159,0.014-0.267,0.006\r\n\t\t\t\tc-0.021,0.084-0.011,0.111-0.089,0.14c-0.1-0.04-0.144,0.042-0.248,0.076c-0.002,0.017-0.004,0.034-0.006,0.051\r\n\t\t\t\tc0.025,0.034,0.072,0.048,0.108,0.07v0.025c-0.066,0.004-0.131,0.008-0.197,0.013c-0.025,0.075-0.001,0.151-0.038,0.21\r\n\t\t\t\tc0.034,0.046,0.043,0.085,0.102,0.108c0.002,0.004,0.004,0.008,0.006,0.013c-0.056,0.046-0.091,0.058-0.114,0.14\r\n\t\t\t\tc0.004,0.011,0.008,0.021,0.013,0.032c0.041,0.028,0.07,0.034,0.121,0.013c0.011,0.013,0.021,0.025,0.032,0.038\r\n\t\t\t\tc-0.041,0.034-0.089,0.076-0.127,0.114c0.053,0.078,0.112,0.033,0.222,0.045c-0.007,0.055-0.021,0.092-0.07,0.108\r\n\t\t\t\tc-0.008,0.011-0.017,0.021-0.025,0.032c0.015,0.013,0.03,0.025,0.044,0.038c0.06-0.001,0.086-0.014,0.127-0.032\r\n\t\t\t\tc-0.027,0.037-0.064,0.055-0.127,0.057c0.001,0.016-0.001,0.007,0.006,0.025c-0.032,0.014-0.05,0.004-0.083-0.013v0.038h-0.006\r\n\t\t\t\tc-0.004-0.017-0.008-0.034-0.013-0.051c-0.002-0.004-0.004-0.008-0.006-0.013c-0.025,0.03-0.051,0.059-0.076,0.089\r\n\t\t\t\tc0.008,0.03,0.017,0.059,0.025,0.089c0.011,0.006,0.021,0.013,0.032,0.019c0.002-0.011,0.004-0.021,0.006-0.032\r\n\t\t\t\tc0.006,0.011,0.013,0.021,0.019,0.032c0.051-0.002,0.06-0.014,0.095-0.026c-0.002-0.025-0.004-0.051-0.006-0.076\r\n\t\t\t\tc0.025,0.019,0.035,0.027,0.038,0.07h0.006c0.028-0.025,0.055-0.051,0.083-0.076c-0.018,0.039-0.04,0.052-0.064,0.083\r\n\t\t\t\tc0.032,0.02,0.042,0.024,0.089,0.019v0.007c-0.038,0.021-0.076,0.042-0.114,0.063c-0.009,0.028-0.004,0.013,0.006,0.045\r\n\t\t\t\tc0.046,0.033,0.031,0.018,0.102,0.013v0.006c-0.036,0.006-0.042,0.012-0.057,0.038c0.006,0.008,0.013,0.017,0.019,0.025\r\n\t\t\t\tc-0.036-0.022-0.065-0.056-0.089-0.019c-0.006,0.004-0.013,0.008-0.019,0.013c-0.002-0.019-0.004-0.038-0.006-0.057\r\n\t\t\t\tc-0.017-0.002-0.034-0.004-0.051-0.006c0.015,0.05-0.003,0.072-0.025,0.114c0.019,0.038,0.038,0.076,0.057,0.114\r\n\t\t\t\tc0.123,0.036,0.19,0.086,0.305,0.115c-0.013,0.013-0.026,0.025-0.038,0.038c0.013,0.008,0.025,0.017,0.038,0.025\r\n\t\t\t\tc0.011-0.013,0.021-0.025,0.032-0.038c0.03,0.015,0.042,0.019,0.051,0.057c0.07,0.017,0.282-0.01,0.349-0.044\r\n\t\t\t\tc0.108-0.107,0.244-0.176,0.356-0.28c0.039-0.036,0.039-0.072,0.095-0.095c0.038-0.02,0.087,0.023,0.14-0.013\r\n\t\t\t\tc0.062-0.046,0.08-0.127,0.083-0.222c0.015-0.011,0.03-0.021,0.044-0.032c0.012,0.047,0.011,0.056-0.013,0.089\r\n\t\t\t\tc0.053,0.074,0.056,0.142,0.165,0.095c0.004,0.002,0.008,0.004,0.013,0.006c0.006,0.051-0.02,0.065-0.032,0.114\r\n\t\t\t\tc0.052,0.027,0.057,0.174,0.057,0.248c0.019-0.002,0.038-0.004,0.057-0.007c0.002,0.017,0.004,0.034,0.006,0.051\r\n\t\t\t\tc0.048-0.012,0.047-0.013,0.089,0c0.008,0.048-0.026,0.118-0.044,0.165c0.047,0.06,0.08,0.086,0.076,0.203\r\n\t\t\t\tc0.017,0.002,0.034,0.004,0.051,0.006c0.049,0.164,0.149,0.23,0.242,0.324c-0.004,0.017-0.009,0.034-0.013,0.051\r\n\t\t\t\tc-0.019-0.002-0.038-0.004-0.057-0.006c0.002,0.017,0.004,0.034,0.006,0.051c-0.021,0.011-0.042,0.021-0.064,0.032\r\n\t\t\t\tc0.042,0.083,0.088,0.169,0.159,0.222c-0.016,0.061-0.039,0.075-0.051,0.134c0.151,0.032,0.257-0.029,0.381,0\r\n\t\t\t\tc0.011-0.013,0.021-0.025,0.032-0.038c0.037-0.032,0.005-0.05-0.019-0.089c0.023-0.06,0.036-0.108,0.095-0.133\r\n\t\t\t\tc0.019-0.011,0.012-0.005,0.038,0.006c0.004-0.017,0.009-0.034,0.013-0.051c0.11,0.001,0.175-0.008,0.254-0.025\r\n\t\t\t\tc0.021,0.015,0.042,0.03,0.064,0.045c0.004,0.004,0.008,0.008,0.013,0.013c0.059-0.108,0.119-0.216,0.178-0.324\r\n\t\t\t\tc0.002-0.04,0.004-0.08,0.006-0.121c0.011-0.057,0.039-0.09,0.057-0.133c0.016-0.027-0.011-0.058,0.006-0.102\r\n\t\t\t\tc-0.015-0.006-0.03-0.013-0.045-0.019V18.53h0.064c0.095-0.071-0.057-0.253-0.07-0.318c0.059-0.002,0.119-0.004,0.178-0.006\r\n\t\t\t\tc0.002-0.013,0.004-0.025,0.006-0.038c0.176,0.031,0.106-0.133,0.191-0.165v0.095c0.002,0.002,0.004,0.004,0.006,0.006\r\n\t\t\t\tc0.019-0.002,0.038-0.004,0.057-0.006c0.014-0.068,0.052-0.091,0.114-0.108c-0.004-0.021-0.008-0.042-0.013-0.064\r\n\t\t\t\tc0.027-0.002,0.055-0.004,0.083-0.006c-0.002-0.011-0.004-0.021-0.006-0.032c-0.002-0.004-0.004-0.008-0.006-0.013h-0.032v0.032\r\n\t\t\t\tc-0.102-0.041-0.174,0.062-0.28,0.045c-0.111-0.019-0.163-0.137-0.299-0.095H32.8c0.009-0.015,0.017-0.03,0.025-0.045\r\n\t\t\t\tc0.037-0.04,0.304,0.049,0.369,0.083c0.082,0.043,0.287-0.119,0.311-0.153h0.057c-0.002-0.095-0.048-0.099-0.07-0.178\r\n\t\t\t\tc-0.126-0.018-0.206-0.104-0.248-0.203c-0.025,0.002-0.051,0.004-0.076,0.006c-0.038-0.015-0.062-0.043-0.133-0.045\r\n\t\t\t\tc-0.002-0.004-0.004-0.008-0.006-0.013c0.046-0.039-0.052-0.296-0.025-0.4c0.023-0.006,0.047-0.013,0.07-0.019\r\n\t\t\t\tc0.055-0.173,0-0.204-0.019-0.356c0.038,0.013,0.076,0.025,0.114,0.038c0.021-0.028,0.042-0.055,0.064-0.083\r\n\t\t\t\tc0.016-0.027-0.004-0.073-0.013-0.115h0.127c0.08-0.112,0.117-0.111,0.222-0.191c0.05-0.038,0.05-0.096,0.114-0.127\r\n\t\t\t\tc0.023,0.015,0.047,0.03,0.07,0.044c0.099-0.068,0.199-0.136,0.299-0.203c0.071-0.087,0.077-0.196,0.184-0.248\r\n\t\t\t\tc0.004-0.006,0.008-0.013,0.013-0.019c-0.034-0.052-0.095-0.08-0.121-0.133c-0.006-0.006-0.013-0.013-0.019-0.019\r\n\t\t\t\tc0.053-0.023,0.128-0.081,0.152-0.133c0.023-0.036-0.022-0.072-0.044-0.102c0.077-0.104,0.108-0.037,0.184-0.095\r\n\t\t\t\tc0.091-0.069,0.094-0.193,0.21-0.248c0.051,0.034,0.102,0.068,0.153,0.102c0.022,0.014,0.223-0.034,0.305-0.032\r\n\t\t\t\tc0.078,0.06,0.117,0.113,0.261,0.115c0.011,0.019,0.021,0.038,0.032,0.057c0.014,0.037-0.006,0.12-0.019,0.159\r\n\t\t\t\tc0.017,0.019,0.034,0.038,0.051,0.057c0.013,0.018,0.009,0.038,0.006,0.076c-0.04-0.002-0.081-0.004-0.121-0.006\r\n\t\t\t\tc-0.098,0.028-0.543,0.488-0.61,0.585h-0.032c-0.013-0.019-0.025-0.038-0.038-0.057v-0.013c-0.09,0.094-0.016,0.207-0.159,0.28\r\n\t\t\t\tc-0.059-0.024-0.1-0.032-0.159-0.013c0.004,0.027,0.008,0.055,0.013,0.083c-0.073,0.067-0.121,0.102-0.153,0.216\r\n\t\t\t\tc0.026,0.023,0.063,0.043,0.089,0.064c0,0.094-0.02,0.143-0.032,0.216c0.034,0.053,0.068,0.106,0.102,0.159\r\n\t\t\t\tc-0.008,0.04-0.017,0.08-0.025,0.121c-0.035,0.188-0.011,0.31,0.127,0.381c0.058,0.03,0.07,0.065,0.146,0.038l-0.006,0.076\r\n\t\t\t\tc0.053-0.018,0.094-0.039,0.172-0.038c-0.011,0.023-0.021,0.047-0.032,0.07c0.02,0.042,0.039,0.071,0.083,0.089\r\n\t\t\t\tc0.067,0.051,0.193-0.016,0.235-0.038v0.026c0.065-0.014,0.081-0.027,0.133,0c0.043-0.058,0.077-0.069,0.153-0.095\r\n\t\t\t\tc0.004,0.008,0.008,0.017,0.013,0.025c0.051-0.028,0.141-0.037,0.165-0.095c0.027,0.019,0.055,0.038,0.083,0.057h0.006\r\n\t\t\t\tc0.017-0.083,0.1-0.04,0.152-0.083c0.028-0.017,0.04-0.057,0.045-0.095v0.057c0.036,0.013,0.072,0.025,0.108,0.038\r\n\t\t\t\tc0.026-0.027,0.034-0.043,0.083-0.051c0.021,0.013,0.042,0.025,0.064,0.038c0.059-0.057,0.198-0.098,0.299-0.108\r\n\t\t\t\tc0.008-0.015,0.017-0.03,0.025-0.045c0.029-0.003-0.01,0.079-0.019,0.114c0.148,0.215,0.345-0.041,0.489,0.229\r\n\t\t\t\tc-0.015,0.011-0.03,0.021-0.045,0.032c-0.094-0.003-0.14-0.044-0.222-0.07c-0.076,0.006-0.1,0.066-0.14,0.108\r\n\t\t\t\tc-0.053-0.012-0.053-0.037-0.102-0.025c-0.016,0.027-0.014,0.015-0.006,0.045c-0.031,0.029-0.052,0.003-0.076-0.025\r\n\t\t\t\tc-0.013,0.002-0.025,0.004-0.038,0.006c-0.004,0.015-0.008,0.03-0.013,0.045c0.032,0.038,0.067,0.051,0.064,0.108\r\n\t\t\t\tc-0.008-0.008-0.017-0.017-0.025-0.025c-0.018-0.007-0.058,0.067-0.108,0.064c-0.163-0.011-0.296-0.042-0.451-0.07\r\n\t\t\t\tc-0.078-0.014-0.166,0.024-0.203-0.006c-0.017,0.015-0.034,0.03-0.051,0.044c-0.049-0.011-0.098-0.021-0.146-0.032\r\n\t\t\t\tc-0.004,0.015-0.008,0.03-0.013,0.045c-0.044-0.007-0.062,0.006-0.102-0.006c-0.085,0.046-0.145,0.095-0.28,0.102\r\n\t\t\t\tc0.006,0.043,0.013,0.056-0.025,0.07c0.023,0.062,0.023,0.099,0.044,0.165c0.022,0,0.035-0.011,0.057-0.026\r\n\t\t\t\tc-0.002,0.057-0.004,0.115-0.006,0.172c0.057,0.016,0.08,0.031,0.121,0.051c0.025-0.023,0.051-0.047,0.076-0.07\r\n\t\t\t\tc0.013,0.009,0.025,0.017,0.038,0.025c-0.021,0.16-0.09,0.268-0.038,0.451c-0.041,0.106-0.222,0.17-0.324,0.076\r\n\t\t\t\tc-0.015-0.04-0.03-0.081-0.044-0.121c-0.047-0.034-0.093-0.068-0.14-0.102v-0.044c-0.113,0.004-0.154,0.056-0.267,0.057\r\n\t\t\t\tc-0.034,0.043-0.068,0.085-0.102,0.127c-0.002,0.044-0.004,0.089-0.006,0.133c-0.032,0.025-0.064,0.051-0.095,0.076\r\n\t\t\t\tc-0.068,0.143,0.034,0.501,0.064,0.578c-0.009,0.025,0,0,0.013,0.025c-0.011,0.002-0.021,0.004-0.032,0.006\r\n\t\t\t\tc0.011,0.035,0.018,0.047,0.013,0.089c-0.081,0.046-0.249,0.013-0.362,0.007c-0.016,0.05-0.021,0.111-0.025,0.165\r\n\t\t\t\tc-0.125,0.066-0.209,0.161-0.388,0.095c-0.009-0.053-0.026-0.086-0.051-0.121c0.005-0.087-0.213-0.034-0.28-0.013\r\n\t\t\t\tc-0.291,0.091-0.499,0.261-0.852,0.286c0.004,0.069,0.012,0.088,0.013,0.146c-0.08-0.028-0.139-0.055-0.21-0.083\r\n\t\t\t\tc-0.004-0.036-0.008-0.072-0.013-0.108c-0.081-0.042-0.175,0.016-0.222-0.121c-0.058-0.004-0.427,0.12-0.458,0.197h-0.07\r\n\t\t\t\tc-0.004-0.013-0.009-0.025-0.013-0.038h-0.006c-0.033,0.022-0.061,0.024-0.095,0.013c-0.004-0.006-0.008-0.013-0.013-0.019\r\n\t\t\t\tc0.045-0.038,0.069-0.048,0.102-0.102c-0.006-0.013-0.013-0.025-0.019-0.038c-0.049,0.004-0.097,0.009-0.146,0.013\r\n\t\t\t\tc-0.057-0.013-0.065-0.053-0.121-0.025c-0.014-0.043-0.014-0.04-0.064-0.038c0.059-0.095-0.063-0.185-0.133-0.21\r\n\t\t\t\tc0.013-0.092,0.038-0.176,0.089-0.229c-0.006-0.011-0.013-0.021-0.019-0.032c0.028-0.002,0.055-0.004,0.083-0.006\r\n\t\t\t\tc0.023-0.081,0.102-0.094,0.064-0.191c0.021-0.011,0.042-0.021,0.064-0.032c0.013,0.017,0.025,0.034,0.038,0.051\r\n\t\t\t\tc0.019-0.007,0.038-0.013,0.057-0.019c0.011-0.02,0.068-0.131,0.038-0.159c-0.051-0.002-0.102-0.004-0.153-0.006\r\n\t\t\t\tc-0.032-0.019-0.031-0.102-0.032-0.153c-0.068-0.033-0.163-0.022-0.254-0.019c-0.006,0.053-0.013,0.106-0.019,0.159\r\n\t\t\t\tc-0.013,0.014-0.02,0.015-0.044,0.019c-0.013-0.03-0.025-0.059-0.038-0.089c-0.049,0.026-0.056,0.1-0.095,0.121\r\n\t\t\t\tc-0.035,0.019-0.1-0.034-0.133-0.032c-0.071,0.107,0.012,0.181,0.019,0.286c-0.031,0.04-0.055,0.066-0.076,0.121\r\n\t\t\t\tc0.017,0.008,0.034,0.017,0.051,0.025c0.008-0.011,0.017-0.021,0.025-0.032c0.03,0.025,0.028,0.047,0.083,0.051\r\n\t\t\t\tc0.009,0.061-0.008,0.193,0.006,0.242c0.015,0.052,0.078,0.085,0.095,0.146c-0.028,0.028-0.059,0.044-0.108,0.051\r\n\t\t\t\tc0.012,0.043,0.042,0.03,0.095,0.025c-0.011,0.017-0.017,0.019-0.032,0.032c0.015,0.015,0.03,0.03,0.045,0.044\r\n\t\t\t\tc-0.011,0.008-0.021,0.017-0.032,0.025c0.002,0.011,0.004,0.021,0.006,0.032c0.023,0.011,0.047,0.021,0.07,0.032\r\n\t\t\t\tc-0.046,0.024-0.104,0.005-0.159,0c-0.019,0.061-0.035,0.076-0.006,0.133c-0.032-0.011-0.063-0.021-0.095-0.032\r\n\t\t\t\tc0.008,0.019,0.017,0.038,0.025,0.057c-0.006,0.008-0.013,0.017-0.019,0.025c-0.006,0.002-0.013,0.004-0.019,0.006\r\n\t\t\t\tc-0.006-0.004-0.013-0.008-0.019-0.013c-0.005-0.039-0.011-0.061-0.025-0.108c-0.107-0.001-0.208,0.008-0.28,0.038\r\n\t\t\t\tc-0.004,0.019-0.008,0.038-0.013,0.057c0.008,0.049,0.031,0.043,0.057,0.07c-0.002,0.006-0.004,0.013-0.006,0.019h-0.025\r\n\t\t\t\tc-0.023-0.022-0.063-0.046-0.076-0.076c-0.123-0.051-0.317,0.05-0.413,0.083c-0.013,0.055-0.013,0.076-0.013,0.146\r\n\t\t\t\tc0.027,0.002,0.055,0.004,0.083,0.006c-0.015,0.024-0.023,0.03-0.025,0.07c0.024,0.016,0.034,0.024,0.076,0.026\r\n\t\t\t\tc-0.013,0.071-0.047,0.063-0.076,0.108c-0.051,0.033-0.092-0.002-0.165-0.013c0.015-0.036,0.015-0.051,0.013-0.108\r\n\t\t\t\tc0.026,0.002,0.019,0.001,0.044-0.006c0.006-0.013,0.013-0.025,0.019-0.038c-0.018-0.035-0.039-0.055-0.07-0.076\r\n\t\t\t\tc-0.032,0.008-0.064,0.017-0.095,0.026c-0.038,0.095-0.076,0.191-0.114,0.286c-0.074,0.064-0.148,0.127-0.222,0.191\r\n\t\t\t\tc0.032,0.014,0.055,0.038,0.07,0.07c-0.053,0.064-0.14-0.005-0.216,0.025c-0.055,0.036-0.11,0.072-0.165,0.108\r\n\t\t\t\tc-0.036,0.002-0.072,0.004-0.108,0.007c-0.047,0.023-0.093,0.047-0.14,0.07c-0.038,0.119,0.011,0.258-0.089,0.324\r\n\t\t\t\tc-0.114,0.075-0.266,0.05-0.349,0.153c-0.002,0.013-0.004,0.025-0.006,0.038c0.021,0.006,0.042,0.013,0.064,0.019\r\n\t\t\t\tc-0.12,0.118-0.282-0.026-0.426,0.044c-0.023-0.044-0.033-0.075-0.025-0.14c-0.075,0.012-0.121,0.009-0.203,0\r\n\t\t\t\tc0.011,0.077,0.049,0.161,0.108,0.191c-0.002,0.083-0.013,0.145,0.025,0.197c-0.024,0.019-0.065,0.026-0.108,0.025v-0.044\r\n\t\t\t\tc-0.055,0.027-0.204,0.061-0.273,0.057c-0.028-0.036-0.055-0.072-0.083-0.108c-0.045,0.004-0.089,0.008-0.133,0.013\r\n\t\t\t\tc-0.006,0.015-0.013,0.03-0.019,0.044c-0.024,0.015-0.108,0.007-0.108,0.007c-0.004-0.004-0.009-0.009-0.013-0.013\r\n\t\t\t\tc-0.076,0.006-0.132,0.063-0.222,0.063c-0.002,0.028-0.004,0.055-0.006,0.083c0.038-0.014,0.077-0.021,0.133-0.019\r\n\t\t\t\tc-0.015,0.03-0.018,0.038-0.057,0.045c-0.01,0.017,0.037,0.021,0.057,0.025c0.002,0.009,0.004,0.017,0.006,0.025v0.006\r\n\t\t\t\tc-0.038,0.006-0.076,0.013-0.114,0.019c0.018,0.035,0.065,0.028,0.089,0.057c0.002,0.011,0.004,0.021,0.006,0.032\r\n\t\t\t\tc0.154-0.013,0.334,0.029,0.445,0.127c0.028-0.009,0.055-0.017,0.083-0.025c0.011,0.006,0.021,0.013,0.032,0.019\r\n\t\t\t\tc-0.011,0.021-0.021,0.043-0.032,0.064c0.036,0.046,0.118,0.075,0.165,0.108c-0.011,0.023-0.021,0.046-0.032,0.07\r\n\t\t\t\tc0.04,0.049,0.08,0.097,0.121,0.146c0.135,0.068,0.112,0,0.184,0.153c-0.021,0.04-0.045,0.073-0.051,0.127\r\n\t\t\t\tc0.051,0.067,0.112,0.106,0.133,0.203c-0.034-0.042-0.068-0.085-0.102-0.127h-0.006c-0.04,0.073-0.053,0.198-0.051,0.305\r\n\t\t\t\tc0.011-0.008,0.021-0.017,0.032-0.025c0.008,0.01,0.017,0.021,0.025,0.032c-0.017,0.008-0.034,0.017-0.051,0.025\r\n\t\t\t\tc-0.034,0.153-0.066,0.309-0.121,0.426c-0.162,0.027-0.245-0.039-0.375-0.076c-0.077,0.095-0.35,0.058-0.515,0.032\r\n\t\t\t\tc-0.075-0.012-0.339-0.086-0.356-0.083c-0.076,0.017-0.158,0.089-0.267,0.07c-0.137-0.023-0.23-0.099-0.369-0.044\r\n\t\t\t\tc-0.013,0.034-0.025,0.068-0.038,0.102h-0.083c-0.104,0.004-0.159,0.031-0.197,0.102c0.002,0.023,0.004,0.047,0.006,0.07\r\n\t\t\t\tc0.094,0.019,0.139,0.07,0.165,0.153c0.008,0.014-0.059,0.211-0.076,0.241c0.095,0.198,0.023,0.738-0.14,0.826\r\n\t\t\t\tc0.005,0.08-0.01,0.143-0.038,0.203c0.015,0.029,0.018,0.027,0.051,0.038c0.039-0.018,0.066-0.029,0.083-0.07\r\n\t\t\t\tc0.006-0.004,0.013-0.009,0.019-0.013c0.009,0.017,0.017,0.034,0.025,0.051c-0.024,0.033-0.05,0.045-0.108,0.045v0.006\r\n\t\t\t\tc0.004,0.017,0.009,0.034,0.013,0.051c0.035,0.008,0.086-0.006,0.121-0.019c0.004,0.004,0.008,0.008,0.013,0.013\r\n\t\t\t\tc-0.011,0.052-0.024,0.115-0.032,0.165c-0.002,0.004-0.004,0.008-0.006,0.013c0.016,0.028,0.041,0.09,0.025,0.152\r\n\t\t\t\tc-0.012,0.047-0.061,0.108-0.044,0.159v0.013c0.057-0.028,0.12-0.061,0.216-0.038c0.03,0.007,0.054,0.035,0.102,0.026\r\n\t\t\t\tc0.044-0.021,0.089-0.042,0.133-0.064c0.148-0.039,0.293,0.081,0.286,0.191c0.017,0.006,0.034,0.013,0.051,0.019\r\n\t\t\t\tc0.017,0.104,0.101,0.213,0.229,0.178c0.011-0.013,0.01-0.013,0.013-0.038h0.006c0.002,0.011,0.004,0.021,0.006,0.032h0.006\r\n\t\t\t\tc0.028-0.117,0.068-0.096,0.178-0.133c0.032-0.028,0.064-0.055,0.095-0.083c0.167,0.002,0.335,0.004,0.502,0.006\r\n\t\t\t\tc0.033-0.011,0.061-0.035,0.114-0.044c0.013,0.011,0.025,0.021,0.038,0.032c0.076-0.056,0.065-0.091,0.114-0.178\r\n\t\t\t\tc0.05-0.088,0.175-0.085,0.292-0.108c0.01-0.028-0.012-0.031-0.006-0.064c0.026-0.154,0.176-0.261,0.299-0.324v-0.019\r\n\t\t\t\tc-0.032-0.017-0.064-0.034-0.095-0.051c-0.023-0.053-0.047-0.106-0.07-0.159c0.031-0.147,0.225-0.389,0.356-0.438\r\n\t\t\t\tc0.002-0.004,0.004-0.009,0.006-0.013c-0.016-0.018-0.023-0.016-0.032-0.044c0.086-0.149,0.264-0.073,0.394-0.159\r\n\t\t\t\tc0.011-0.019,0.021-0.038,0.032-0.057c0.074-0.067,0.212-0.068,0.273-0.146c0.075-0.198-0.151-0.33,0.102-0.508\r\n\t\t\t\tc0.16-0.113,0.187,0.005,0.33,0.006c0.036,0,0.081-0.033,0.133-0.013c0.074,0.029,0.117,0.137,0.242,0.115\r\n\t\t\t\tc0.24-0.044,0.308-0.187,0.47-0.292c0.047-0.013,0.093-0.026,0.14-0.038c0.025-0.028,0.051-0.055,0.076-0.083\r\n\t\t\t\tc0.129-0.101,0.256-0.104,0.426-0.019c0.221,0.111,0.209,0.479,0.419,0.61c0.184,0.115,0.33,0.293,0.502,0.381\r\n\t\t\t\tc0.155,0.08,0.306,0.025,0.343,0.229c0.03-0.008,0.059-0.017,0.089-0.025h0.006c0.013,0.015,0.025,0.03,0.038,0.044\r\n\t\t\t\tc-0.011,0.004-0.021,0.009-0.032,0.013c-0.004,0.008-0.009,0.017-0.013,0.025c0.038-0.011,0.076-0.021,0.114-0.032\r\n\t\t\t\tc0.021,0.019,0.042,0.038,0.064,0.057c0.009,0.041,0.003,0.066-0.013,0.095c0.045,0.027,0.089,0.055,0.133,0.083\r\n\t\t\t\tc0.023,0.012,0.039-0.004,0.07-0.019c0.034,0.01,0.181,0.419,0.172,0.451v0.013c-0.023-0.002-0.047-0.004-0.07-0.006\r\n\t\t\t\tc-0.011,0.011-0.021,0.021-0.032,0.032c0.02,0.067,0.004,0.11-0.064,0.14v0.076c0.013,0.009,0.025,0.017,0.038,0.025h0.083\r\n\t\t\t\tc0.039-0.064,0.067-0.14,0.146-0.165c0.016-0.034,0.005-0.062,0-0.108c0.045-0.043,0.063-0.067,0.159-0.064\r\n\t\t\t\tc0.011-0.013,0.021-0.026,0.032-0.038c-0.026-0.042-0.026-0.089-0.006-0.134c-0.061-0.034-0.123-0.068-0.184-0.102\r\n\t\t\t\tc0.002-0.111,0.086-0.282,0.197-0.267c-0.006,0.095,0.142,0.064,0.203,0.108c0.03,0.023,0.006,0.04,0.025,0.076\r\n\t\t\t\tc0.036,0.023,0.072,0.047,0.108,0.07c0.015-0.044,0.03-0.089,0.045-0.133c-0.196-0.193-0.436-0.359-0.744-0.438\r\n\t\t\t\tc-0.011-0.013-0.021-0.025-0.032-0.038c0.032-0.027,0.049-0.054,0.095-0.07c-0.002-0.011-0.004-0.021-0.006-0.032\r\n\t\t\t\tc-0.047-0.073-0.327,0.011-0.413-0.076c-0.08-0.081-0.209-0.198-0.254-0.305c-0.028-0.067-0.023-0.157-0.064-0.21\r\n\t\t\t\tc-0.031-0.04-0.088-0.05-0.133-0.076c-0.15-0.087-0.231-0.143-0.273-0.343c0.027-0.031,0.056-0.043,0.076-0.083\r\n\t\t\t\tc-0.031-0.037-0.057-0.035-0.057-0.108c-0.015-0.002-0.03-0.004-0.044-0.006c0.008-0.021,0.017-0.042,0.025-0.064\r\n\t\t\t\tc0.044-0.029,0.154-0.064,0.248-0.07c0.002-0.017,0.004-0.034,0.006-0.051c0.08,0.003,0.086,0.005,0.159,0\r\n\t\t\t\tc0.011,0.017,0.021,0.034,0.032,0.051c-0.019,0.025-0.035,0.035-0.076,0.038c0.021,0.098,0.071,0.175,0.102,0.254\r\n\t\t\t\tc0.033-0.017,0.055-0.041,0.083-0.064c0.017-0.047,0.034-0.093,0.051-0.14c0.256,0.103,0.086,0.31,0.343,0.388\r\n\t\t\t\tc-0.036,0.002-0.072,0.004-0.108,0.006v0.006c0.075,0.108,0.185,0.165,0.267,0.267c0.025,0.026,0.059-0.025,0.108-0.013\r\n\t\t\t\tc0.006,0.001,0.153,0.061,0.165,0.07c0.049,0.035,0.089,0.097,0.14,0.133c0.133,0.095,0.272,0.155,0.407,0.248\r\n\t\t\t\tc0.03,0.036,0.059,0.072,0.089,0.108c0.042,0.021,0.085,0.042,0.127,0.064c0.003,0.051,0.002,0.06-0.038,0.07\r\n\t\t\t\tc-0.006,0.043,0.016,0.226,0.013,0.235c-0.017,0.032-0.034,0.064-0.051,0.095c0.022,0.032,0.038,0.045,0.038,0.102\r\n\t\t\t\tc-0.011-0.002-0.021-0.004-0.032-0.006c0.027,0.077,0.144,0.098,0.191,0.159c0.006,0.03,0.013,0.059,0.019,0.089\r\n\t\t\t\tc0.04,0.101,0.153,0.191,0.28,0.172c0.008,0.008,0.017,0.017,0.025,0.025v0.013c-0.027,0.034-0.065,0.029-0.108,0.038v0.006\r\n\t\t\t\tc0.036,0.055,0.072,0.11,0.108,0.165c0.103-0.009,0.227-0.061,0.349-0.025c0.077,0.022,0.119,0.081,0.223,0.089v0.006\r\n\t\t\t\tc-0.101,0.134-0.204-0.021-0.324-0.038c-0.039-0.005-0.082,0.035-0.159,0.032c-0.021,0.038-0.042,0.076-0.064,0.114\r\n\t\t\t\tc0.038,0.047,0.076,0.093,0.114,0.14c0.014,0.044-0.016,0.099-0.013,0.146c0.019,0.017,0.038,0.034,0.057,0.051\r\n\t\t\t\tc0.019-0.015,0.038-0.03,0.057-0.044c0.045-0.022,0.097,0.086,0.108,0.14c0.004,0.002,0.009,0.004,0.013,0.007\r\n\t\t\t\tc0.011-0.019,0.021-0.038,0.032-0.057c0.056-0.027,0.09-0.001,0.14,0.025c-0.005-0.136-0.055-0.195-0.095-0.292v-0.032\r\n\t\t\t\tc0.034,0.011,0.068,0.021,0.102,0.032h0.013c-0.006,0.013-0.013,0.025-0.019,0.038c0.017,0.006,0.034,0.013,0.051,0.019\r\n\t\t\t\tc0.019-0.035,0.029-0.044,0.083-0.045c-0.023-0.029-0.028-0.02-0.025-0.064c-0.021,0.004-0.042,0.009-0.064,0.013\r\n\t\t\t\tc-0.022-0.048-0.026-0.074-0.057-0.108c0.047-0.015,0.093-0.03,0.14-0.044c0.05,0.006,0.107,0.078,0.121,0.121\r\n\t\t\t\tc0.006,0.004,0.013,0.008,0.019,0.013c0.013-0.011,0.025-0.021,0.038-0.032c-0.013-0.04-0.025-0.081-0.038-0.121\r\n\t\t\t\tc0.008-0.002,0.017-0.004,0.025-0.006c-0.005-0.06-0.342-0.233-0.419-0.248v-0.006c0.044-0.01,0.071-0.023,0.102-0.044\r\n\t\t\t\tc-0.013-0.03-0.026-0.059-0.038-0.089v-0.007c0.03-0.019,0.042-0.017,0.083-0.006c0.014,0.026,0.015,0.037,0.013,0.07h0.006\r\n\t\t\t\tc0.006-0.002,0.013-0.004,0.019-0.006c0.008-0.011,0.017-0.021,0.025-0.032c-0.079-0.096-0.169-0.193-0.222-0.311\r\n\t\t\t\tc0.002-0.047,0.015-0.064,0.038-0.089c-0.011-0.013-0.021-0.025-0.032-0.038c0.035-0.015,0.06-0.023,0.076-0.057\r\n\t\t\t\tc0.008,0.002,0.017,0.004,0.025,0.006c0.002,0.009,0.004,0.017,0.006,0.025c-0.011,0.007-0.021,0.013-0.032,0.019\r\n\t\t\t\tc0.04,0.08,0.139,0.069,0.146,0.184c0.032,0.004,0.064,0.008,0.095,0.013h0.013c-0.035-0.042-0.079-0.056-0.108-0.108v-0.006\r\n\t\t\t\tc0.076,0.003,0.119,0.051,0.146,0.102c0.015-0.002,0.03-0.004,0.044-0.006c0.002-0.006,0.004-0.013,0.006-0.019\r\n\t\t\t\tc-0.024-0.041-0.06-0.046-0.083-0.089c0.011-0.008,0.021-0.017,0.032-0.026c0.037,0.007,0.067,0.015,0.083,0.045\r\n\t\t\t\tc0.017,0.015,0.034,0.03,0.051,0.045c0.006-0.004,0.013-0.009,0.019-0.013v-0.006c-0.062-0.077-0.15-0.094-0.191-0.197v-0.006\r\n\t\t\t\tc0.134-0.026,0.108,0.02,0.21-0.07c0.039,0.003,0.034,0.001,0.044,0.032c0.079,0,0.103-0.025,0.153-0.051\r\n\t\t\t\tc0.043,0.102,0.272-0.012,0.286,0.121c0.008-0.009,0.017-0.017,0.025-0.025c0.034,0.021,0.105,0.031,0.146,0.044\r\n\t\t\t\tc0.002,0.004,0.004,0.008,0.006,0.013c-0.032,0.019-0.064,0.038-0.095,0.057c-0.008,0.032-0.017,0.064-0.025,0.095\r\n\t\t\t\tc0.066-0.021,0.091-0.085,0.14-0.121c0.061-0.028,0.123-0.055,0.184-0.083c0.015-0.03,0.03-0.059,0.044-0.089\r\n\t\t\t\tc0.038-0.022,0.1,0.002,0.153-0.019c0.136-0.054,0.112,0.009,0.273,0.013c0.026-0.03,0.045-0.056,0.063-0.095\r\n\t\t\t\tc-0.045-0.06-0.142-0.051-0.21-0.089c-0.087-0.049-0.178-0.313-0.267-0.299v-0.051c0.036-0.035,0.047-0.056,0.102-0.076\r\n\t\t\t\tc0.016-0.084,0.038-0.153,0.051-0.222c0.025-0.013,0.108-0.018,0.121-0.038c0.004-0.04,0.008-0.08,0.013-0.121\r\n\t\t\t\tc0.036-0.199,0.06-0.377,0.286-0.388c0.023-0.049,0.047-0.097,0.07-0.146c-0.015-0.031-0.034-0.038-0.051-0.064\r\n\t\t\t\tc-0.032-0.104,0.093-0.097,0.153-0.133c0.199-0.119,0.104-0.321,0.509-0.311c0.008-0.015,0.017-0.03,0.025-0.045\r\n\t\t\t\tc0.006-0.004,0.013-0.008,0.019-0.013c0.021,0.025,0.042,0.051,0.064,0.076v0.013c-0.023,0.021-0.047,0.042-0.07,0.064v0.013\r\n\t\t\t\tc0.097,0.133,0.265,0.085,0.458,0.089c0.013,0.025,0.026,0.051,0.038,0.076c-0.067,0.074-0.25,0.106-0.331,0.184\r\n\t\t\t\tc0.004,0.008,0.009,0.017,0.013,0.025c0.2,0.038,0.367,0.002,0.254,0.267v0.019c0.285,0.052,0.158-0.026,0.337-0.089\r\n\t\t\t\tc0.051-0.004,0.102-0.009,0.153-0.013c0.034-0.028,0.068-0.055,0.102-0.083c0.06-0.018,0.089,0.017,0.133,0.025\r\n\t\t\t\tc0.038-0.006,0.076-0.013,0.114-0.019c0.023-0.032,0.052-0.072,0.064-0.114c-0.064-0.008-0.127-0.017-0.191-0.025\r\n\t\t\t\tc-0.072,0.007-0.141,0.064-0.235,0.038c-0.024-0.123-0.199-0.258-0.337-0.299c-0.002-0.004-0.004-0.008-0.006-0.013\r\n\t\t\t\tc0.103-0.029,0.197-0.016,0.305-0.019c0.037-0.039,0.065-0.066,0.083-0.127c0.004-0.002,0.009-0.004,0.013-0.006\r\n\t\t\t\tc0.015,0.013,0.03,0.025,0.044,0.038c0.022,0.013,0.019,0.008,0.045,0c0.05-0.015,0.061-0.049,0.102-0.063\r\n\t\t\t\tc0.125-0.023,0.25-0.047,0.375-0.07c0.023-0.025,0.047-0.051,0.07-0.076c0.074-0.008,0.148-0.017,0.222-0.025\r\n\t\t\t\tc0.013-0.013,0.007-0.002,0.013-0.025c0.093-0.017,0.186-0.034,0.28-0.051c0.011,0.021,0.021,0.042,0.032,0.064\r\n\t\t\t\tc-0.099,0.079-0.25,0.146-0.413,0.152c-0.008,0.011-0.017,0.021-0.026,0.032c0.074,0.053,0.148,0.098,0.197,0.178\r\n\t\t\t\tc-0.034,0.026-0.077,0.034-0.14,0.032c-0.028,0.081-0.083,0.13-0.089,0.229c-0.049,0.026-0.154,0.037-0.21,0.051\r\n\t\t\t\tc0.044,0.059,0.104,0.147,0.159,0.197c0.043,0.008,0.057-0.002,0.089-0.019c0.041,0.027,0.058,0.069,0.095,0.095\r\n\t\t\t\tc0.044,0.013,0.089,0.025,0.133,0.038c0.105,0.049,0.192,0.14,0.28,0.21c0.047,0.038,0.116,0.138,0.178,0.133\r\n\t\t\t\tc-0.004,0.019-0.008,0.038-0.013,0.057c0.102,0.075,0.311,0.102,0.381,0.21c0.015,0.053,0.03,0.106,0.045,0.159\r\n\t\t\t\tc0.079,0.289-0.089,0.388-0.324,0.445c-0.131,0.031-0.222-0.051-0.337-0.032c-0.053,0.017-0.106,0.034-0.159,0.051\r\n\t\t\t\tc-0.098,0.022-0.277-0.021-0.381-0.038c-0.126-0.021-0.151-0.13-0.292-0.076c-0.078-0.037-0.078-0.076-0.121-0.146\r\n\t\t\t\tc-0.029-0.021-0.102,0.03-0.172,0.013c-0.083-0.021-0.076-0.089-0.121-0.146c-0.173,0.111-0.323-0.021-0.54,0.032\r\n\t\t\t\tc-0.196,0.047-0.34,0.172-0.515,0.229c0.002,0.017,0.004,0.034,0.006,0.051c-0.138,0.074-0.202,0.007-0.318-0.013\r\n\t\t\t\tc-0.019,0.006-0.038,0.013-0.057,0.019c-0.093-0.008-0.186-0.017-0.28-0.025c-0.013,0.025-0.025,0.051-0.038,0.076\r\n\t\t\t\tc0.029,0.031,0.069,0.042,0.083,0.089c0.053-0.002,0.106-0.004,0.159-0.006v0.006c-0.072,0.023-0.189,0.032-0.28,0.032\r\n\t\t\t\tc-0.017,0.023-0.026,0.025-0.026,0.051c0.026,0.006,0.051,0.013,0.076,0.019c0.006,0.004,0.013,0.009,0.019,0.013\r\n\t\t\t\tc-0.006,0.008-0.013,0.017-0.019,0.025c-0.114-0.018-0.214-0.013-0.337-0.006c0.011-0.013,0.021-0.025,0.032-0.038\r\n\t\t\t\tc-0.036-0.015-0.055-0.014-0.089-0.007c-0.002,0.004-0.004,0.009-0.006,0.013c0.013,0.006,0.026,0.013,0.038,0.019v0.019\r\n\t\t\t\tc-0.067,0.022-0.142,0.01-0.159-0.044c-0.091,0.011-0.203,0.041-0.254,0.095c-0.035,0.037,0.004,0.057-0.07,0.064\r\n\t\t\t\tc-0.01,0.071-0.028,0.13-0.032,0.191c0.087-0.013,0.174-0.025,0.261-0.038v0.006c-0.015,0.024-0.03,0.039-0.057,0.051\r\n\t\t\t\tc-0.015,0.017-0.03,0.034-0.045,0.051c0.035,0.006,0.049,0.02,0.064,0.045c0.014,0.023-0.007,0.02-0.013,0.064h0.057\r\n\t\t\t\tc0.006,0.008,0.013,0.017,0.019,0.025c-0.021,0.025-0.052,0.036-0.089,0.045c-0.007,0.025,0.01,0.054,0.038,0.076\r\n\t\t\t\tc0.034,0.045,0.026,0.031-0.019,0.063c-0.032-0.003-0.055-0.025-0.089-0.044c-0.011,0.023-0.021,0.047-0.032,0.07v0.045\r\n\t\t\t\tc0.105,0.013,0.133,0.046,0.222,0.07c0.003,0.06-0.021,0.124,0.006,0.165c0.034,0.021,0.068,0.042,0.102,0.064\r\n\t\t\t\tc0.002,0.008,0.004,0.017,0.006,0.025c-0.028,0.011-0.055,0.021-0.083,0.032c0.006,0.013,0.013,0.025,0.019,0.038\r\n\t\t\t\tc0.068,0.006,0.136,0.013,0.203,0.019c0.002,0.004,0.004,0.008,0.006,0.013c-0.017,0.019-0.024,0.019-0.032,0.051\r\n\t\t\t\tc0.006,0.015,0.013,0.03,0.019,0.045c0.004,0.002,0.009,0.004,0.013,0.006c0.021-0.021,0.042-0.042,0.064-0.063\r\n\t\t\t\tc0.085-0.003,0.086,0.023,0.146,0.051c0.029,0.014,0.049-0.015,0.076-0.038c0.025,0.059,0.051,0.119,0.076,0.178\r\n\t\t\t\tc0.099,0.031,0.23-0.025,0.299,0.019c0.013-0.002,0.026-0.004,0.038-0.006c0.015-0.072,0.03-0.144,0.044-0.216\r\n\t\t\t\tc0.142-0.018,0.288,0.018,0.388,0.083c0.073,0.048,0.108,0.143,0.203,0.172c0.136,0.041,0.301-0.026,0.381-0.045\r\n\t\t\t\tc0.042-0.082,0.104-0.102,0.159-0.165c0.138,0.001,0.177,0.055,0.286,0.07c0.037-0.038,0.085-0.067,0.121-0.114h0.025\r\n\t\t\t\tc0.013,0.017,0.025,0.034,0.038,0.051c0.002,0.013,0.004,0.025,0.006,0.038c-0.039,0.043-0.09,0.068-0.127,0.114\r\n\t\t\t\tc0.017,0.03,0.034,0.059,0.051,0.089c-0.011,0.057-0.038,0.107-0.064,0.153c0.087,0.115,0.021,0.195,0.076,0.33\r\n\t\t\t\tc-0.146,0.144-0.206,0.407-0.305,0.578c-0.008,0.042-0.017,0.085-0.025,0.127c-0.041,0.134-0.077,0.258-0.172,0.337\r\n\t\t\t\tc0.074,0.186,0.148,0.373,0.222,0.559c0.012,0.018,0.023,0.014,0.051,0.032c-0.023,0.137-0.084,0.285-0.095,0.407\r\n\t\t\t\tc0.036,0.002,0.072,0.004,0.108,0.006c0.047,0.059,0.093,0.119,0.14,0.178c0.104,0.17,0.188,0.32,0.299,0.477\r\n\t\t\t\tc0.084,0.118,0.206,0.226,0.165,0.413c0.085,0.117,0.223,0.149,0.324,0.248c0.066,0.119,0.131,0.237,0.197,0.356\r\n\t\t\t\tc0.066,0.127-0.002,0.313,0.051,0.457c0.051,0.072,0.102,0.144,0.152,0.216c0.07,0.096,0.225,0.114,0.299,0.203\r\n\t\t\t\tc0.089,0.182,0.178,0.364,0.267,0.546c0.034,0.026,0.068,0.051,0.102,0.076c0.086,0.071,0.195,0.232,0.235,0.343\r\n\t\t\t\tc0.011,0.068,0.021,0.136,0.032,0.203c-0.008,0.039-0.042,0.068-0.032,0.127c0.03,0.172,0.113,0.353,0.165,0.496v0.216\r\n\t\t\t\tc0.095,0.205,0.383,0.166,0.553,0.057c0.057-0.047,0.114-0.093,0.172-0.14c0.094-0.028,0.217,0.012,0.299-0.013\r\n\t\t\t\tc0.128-0.039,0.228-0.133,0.343-0.172c0.078-0.026,0.163,0.016,0.229-0.019c0.069-0.036,0.087-0.124,0.152-0.159\r\n\t\t\t\tc0.238-0.13,0.547-0.129,0.769-0.267c0.062-0.038,0.046-0.087,0.076-0.159c0.029-0.07,0.139-0.142,0.21-0.172\r\n\t\t\t\tc0.121-0.04,0.241-0.081,0.362-0.121c0.07,0.008,0.14,0.017,0.21,0.025c0.025-0.015,0.051-0.03,0.076-0.045\r\n\t\t\t\tc0.045-0.091,0.016-0.205,0.108-0.248c0.096-0.045,0.186,0.021,0.273-0.051c0.032-0.027,0.027-0.071,0.044-0.114\r\n\t\t\t\tc0.048-0.12,0.19-0.153,0.349-0.159c0.009-0.116-0.012-0.304,0.026-0.419c0.056-0.024,0.123,0.021,0.172-0.006\r\n\t\t\t\tc0.057-0.042,0.064-0.147,0.102-0.21c0.042-0.04,0.085-0.08,0.127-0.121c0.059-0.074,0.114-0.154,0.159-0.242\r\n\t\t\t\tc-0.012-0.066-0.116-0.088-0.159-0.127c-0.064-0.08-0.127-0.161-0.191-0.241c-0.048-0.033-0.104,0.008-0.165-0.006\r\n\t\t\t\tc-0.089-0.049-0.178-0.098-0.267-0.146c-0.071-0.049-0.182-0.161-0.21-0.248c-0.021-0.066,0.011-0.151-0.013-0.203\r\n\t\t\t\tc-0.015-0.018-0.024-0.019-0.057-0.019c0.044-0.068,0.068-0.116,0.057-0.229h-0.006c-0.045,0.057-0.089,0.115-0.133,0.172\r\n\t\t\t\tc-0.113,0.09-0.215,0.143-0.311,0.267c-0.023,0.045-0.047,0.089-0.07,0.134c-0.035,0.031-0.051,0.02-0.07,0.07\r\n\t\t\t\tc-0.042,0.011-0.063,0.014-0.095-0.006c-0.002,0.011-0.004,0.021-0.006,0.032c-0.074,0.026-0.394,0.021-0.477-0.019\r\n\t\t\t\tc-0.019,0.017-0.023,0.015-0.032,0.044c-0.073,0.007-0.13-0.005-0.203-0.006c0.013-0.058-0.015-0.063-0.064-0.076\r\n\t\t\t\tc-0.037-0.089,0.072-0.127,0.076-0.216c0.001-0.028-0.017-0.268-0.025-0.28c-0.018-0.025-0.035-0.018-0.051-0.057\r\n\t\t\t\tc-0.015-0.002-0.03-0.004-0.044-0.006c-0.083,0.059-0.119,0.288-0.07,0.407c0.007,0.07,0.01,0.094-0.051,0.089\r\n\t\t\t\tc-0.045-0.059-0.108-0.211-0.114-0.311c-0.034-0.027-0.036-0.039-0.076-0.032c-0.033-0.107-0.058-0.116-0.013-0.229\r\n\t\t\t\tc-0.013-0.021-0.026-0.042-0.038-0.064c0.02-0.031,0.039-0.029,0.045-0.076c-0.062-0.082-0.205-0.072-0.248-0.172\r\n\t\t\t\tc-0.036-0.028-0.026-0.027-0.006-0.064c-0.037-0.017-0.058-0.015-0.114-0.013c-0.07-0.185-0.159-0.356-0.21-0.553\r\n\t\t\t\tc-0.036,0.009-0.072,0.017-0.108,0.026c-0.013-0.006-0.026-0.013-0.038-0.019c0.021-0.026,0.042-0.051,0.063-0.076h0.044\r\n\t\t\t\tc-0.008-0.04-0.017-0.08-0.025-0.121c0.026-0.034,0.169-0.04,0.235-0.038c0.055-0.054,0.047-0.118,0.127-0.152h0.019\r\n\t\t\t\tc-0.001,0.041,0.001,0.074,0.019,0.095c0.038,0.072,0.165,0.061,0.242,0.032c0.043,0.069,0.143,0.143,0.172,0.21v0.102\r\n\t\t\t\tc0.031,0.082,0.136,0.259,0.191,0.337c0.064,0.091,0.221,0.082,0.311,0.146c0.047,0.057,0.093,0.115,0.14,0.172\r\n\t\t\t\tc0.106,0.063,0.211,0.06,0.337,0.102c0.07,0.023,0.11,0.086,0.197,0.095c0.042-0.036,0.186-0.121,0.197-0.172\r\n\t\t\t\tc0.098-0.035,0.203-0.075,0.324-0.044c0.05,0.012,0.038,0.034,0.089,0.038c0.015,0.043,0.01,0.1,0.032,0.159\r\n\t\t\t\tc0.026,0.069,0.095,0.113,0.095,0.21c0.068,0.011,0.135,0.056,0.184,0.076h0.254c0.025,0.023,0.051,0.047,0.076,0.07\r\n\t\t\t\tc0.142,0.002,0.284,0.004,0.426,0.007c0.075,0.02,0.118,0.067,0.216,0.083c0.131,0.021,0.254-0.027,0.356-0.044h0.286\r\n\t\t\t\tc0.057-0.021,0.1-0.057,0.191-0.07c0.08,0.167,0.549-0.018,0.686-0.025c0.074,0.053,0.075,0.102,0.07,0.223\r\n\t\t\t\tc0.047,0.011,0.093,0.021,0.14,0.032c0.023,0.068,0.047,0.136,0.07,0.203c0.05,0.067,0.114,0.032,0.191,0.076\r\n\t\t\t\tc0.03,0.042,0.059,0.085,0.089,0.127c0.103,0.123,0.38,0.229,0.597,0.153c0.003,0.052-0.02,0.064-0.051,0.095\r\n\t\t\t\tc-0.142,0.145-0.214,0.023-0.369,0.076h-0.013c0.049,0.113,0.433,0.501,0.572,0.508c0.04-0.015,0.081-0.03,0.121-0.044\r\n\t\t\t\tc0.145-0.047,0.383-0.127,0.254-0.299c0.008-0.03,0.017-0.059,0.025-0.089c0.032-0.019,0.083-0.021,0.14-0.019\r\n\t\t\t\tc-0.019,0.072-0.014,0.207,0.013,0.286c0.016,0.046,0.116,0.085,0.102,0.146c-0.015,0.062-0.095,0.113-0.102,0.191\r\n\t\t\t\tc0.027,0.146,0.055,0.292,0.083,0.438c0.034,0.205,0.068,0.411,0.102,0.616c0.07,0.251,0.21,0.444,0.305,0.655\r\n\t\t\t\tc0.065,0.143,0.116,0.299,0.165,0.457c0.021,0.079,0.042,0.157,0.064,0.235c0.038,0.055,0.076,0.11,0.114,0.165\r\n\t\t\t\tc0.074,0.163,0.148,0.326,0.222,0.489c0.032,0.112,0.064,0.225,0.095,0.337c0.059,0.064,0.119,0.127,0.178,0.191\r\n\t\t\t\tc0.09-0.003,0.218-0.064,0.248-0.127c0.026-0.054,0.004-0.106,0.038-0.146c0.083-0.028,0.165-0.055,0.248-0.083\r\n\t\t\t\tc-0.013-0.027-0.034-0.042-0.057-0.057c0.025-0.072,0.051-0.144,0.076-0.216c0.037-0.022,0.108-0.021,0.172-0.019\r\n\t\t\t\tc0.023-0.118-0.033-0.248-0.019-0.362c0.025-0.213,0.286-0.458,0.108-0.655c0.057-0.141-0.035-0.296,0-0.451\r\n\t\t\t\tc0.021-0.047,0.042-0.093,0.064-0.14c0.06-0.048,0.118-0.061,0.191-0.019c0.048-0.031,0.078-0.105,0.095-0.165\r\n\t\t\t\tc0.058-0.032,0.17-0.01,0.229-0.051c0.065-0.045,0.048-0.168,0.108-0.216c0.063-0.032,0.127-0.064,0.191-0.095\r\n\t\t\t\tc0.072-0.046,0.111-0.143,0.178-0.184c0.046-0.028,0.088-0.032,0.127-0.064c0.097-0.119,0.195-0.237,0.292-0.356\r\n\t\t\t\tc0.078-0.054,0.207-0.041,0.292-0.095c0.106-0.067,0.148-0.181,0.229-0.273c-0.013-0.045-0.025-0.089-0.038-0.134\r\n\t\t\t\tc0.071-0.072,0.179-0.083,0.267-0.14c0.032-0.034,0.064-0.068,0.095-0.102c0.029,0.022,0.05,0.059,0.057,0.102\r\n\t\t\t\tc0.013,0.004,0.025,0.008,0.038,0.013c0.017-0.03,0.034-0.059,0.051-0.089c0.002-0.004,0.004-0.008,0.006-0.013\r\n\t\t\t\tc0.034,0.02,0.042,0.065,0.051,0.108h0.089c-0.005-0.031-0.002-0.042,0.006-0.07c0.019,0.01,0.038,0.021,0.057,0.032\r\n\t\t\t\tc0.013-0.021,0.025-0.042,0.038-0.063c0.008-0.006,0.017-0.013,0.025-0.019c0.009,0.021,0.017,0.043,0.026,0.064h0.038\r\n\t\t\t\tc0.026-0.034,0.046-0.064,0.051-0.121c0.004-0.002,0.008-0.004,0.013-0.006c0.021,0.038,0.042,0.076,0.063,0.115h0.045\r\n\t\t\t\tc0.016-0.069,0.027-0.078,0.095-0.095c0.022-0.07-0.005-0.129-0.032-0.184c-0.002-0.034-0.003-0.067,0.013-0.083\r\n\t\t\t\tc0.004-0.004,0.009-0.009,0.013-0.013c0.032,0.042,0.064,0.085,0.095,0.127c0.07-0.001,0.1-0.022,0.146-0.044\r\n\t\t\t\tc0.175,0.137,0.122,0.639,0.362,0.705c0.022,0.006,0.054-0.002,0.076,0.006v0.083c0.053,0.035,0.082,0.001,0.127,0.025\r\n\t\t\t\tc0.068,0.037,0.107,0.146,0.133,0.229v0.006c-0.034,0.006-0.068,0.013-0.102,0.019c0.028,0.031,0.065,0.053,0.108,0.07\r\n\t\t\t\tc0.011-0.019,0.021-0.038,0.032-0.057c0.004-0.002,0.009-0.004,0.013-0.006c0.079,0.128,0.174,0.362,0.146,0.578\r\n\t\t\t\tc-0.017,0.129-0.098,0.22-0.102,0.362c0.015,0.011,0.03,0.021,0.044,0.032c0.047-0.038,0.073-0.066,0.153-0.076\r\n\t\t\t\tc-0.006,0.025-0.013,0.051-0.019,0.076c0.011,0.011,0.021,0.021,0.032,0.032h0.025c0.029-0.023,0.031-0.041,0.083-0.044v0.057\r\n\t\t\t\tc0.08,0.073,0.094-0.079,0.153-0.121c0.184-0.132,0.273-0.031,0.305-0.343h0.025c0.085,0.062,0.089,0.235,0.197,0.267\r\n\t\t\t\tc0.026,0.18,0.051,0.36,0.076,0.54c0.047,0.164,0.151,0.309,0.203,0.451c0.053,0.144,0.03,0.29,0.025,0.432\r\n\t\t\t\tc0.019,0.01,0.036,0.013,0.07,0.013c-0.033,0.078-0.145,0.34-0.114,0.413c0.017,0.013,0.034,0.025,0.051,0.038\r\n\t\t\t\tc-0.064,0.162-0.161,0.391-0.102,0.566c0.025-0.011,0.051-0.021,0.076-0.032c0.085,0.091,0.166,0.136,0.21,0.273\r\n\t\t\t\tc0.02,0.008,0.034,0.009,0.064,0c0.043,0.057,0.051,0.099,0.051,0.197c0.011,0.006,0.021,0.013,0.032,0.019\r\n\t\t\t\tc0.034,0.043,0.078,0.03,0.121,0.006c0.004,0.004,0.008,0.008,0.013,0.013c-0.018,0.139-0.008,0.3,0.044,0.445\r\n\t\t\t\tc0.025,0.047,0.051,0.093,0.076,0.14c0.009,0.069-0.024,0.13,0.013,0.191c0.04,0.034,0.08,0.068,0.121,0.102\r\n\t\t\t\tc0.016,0.022,0.022,0.056,0.031,0.088C55.358,48.795,44.764,58,32,58z M20.929,9.847c0.001,0,0.002,0,0.003,0\r\n\t\t\t\tc0.002,0.003,0.004,0.006,0.006,0.009c-0.001,0-0.002,0-0.003,0C20.933,9.853,20.931,9.85,20.929,9.847z M43.915,25.038\r\n\t\t\t\tc-0.028,0.012-0.031-0.019-0.07-0.013c-0.034,0.011-0.068,0.021-0.102,0.032c-0.004-0.002-0.008-0.004-0.013-0.006\r\n\t\t\t\tc-0.002-0.023-0.004-0.047-0.006-0.07c-0.013-0.004-0.026-0.008-0.038-0.013c-0.004,0.017-0.008,0.034-0.013,0.051\r\n\t\t\t\tc-0.048-0.011-0.054-0.013-0.108-0.006c-0.017-0.034-0.034-0.068-0.051-0.102c-0.067,0.075-0.078,0.271-0.044,0.369\r\n\t\t\t\tc0.039,0.021,0.133,0.008,0.216,0.006c-0.015,0.019-0.03,0.038-0.044,0.057c0.004,0.013,0.008,0.025,0.013,0.038\r\n\t\t\t\tc0.014,0.023,0.042,0.036,0.07,0.045v0.019c-0.045-0.004-0.089-0.008-0.133-0.013c-0.011,0.015-0.021,0.03-0.032,0.045v0.044\r\n\t\t\t\tc0.042-0.029,0.066-0.018,0.127-0.006c0.024,0.067,0.085,0.076,0.114,0.133c0.014,0.054-0.038,0.118-0.038,0.203\r\n\t\t\t\tc0,0.04-0.022,0.09-0.019,0.108c0.018,0.102,0.109,0.354,0.025,0.419c-0.061,0.047-0.192,0.025-0.28,0.045\r\n\t\t\t\tc-0.314,0.07-0.748,0.1-0.858-0.197c-0.119-0.032-0.251-0.062-0.35-0.095c-0.052-0.198,0.057-0.392,0.057-0.559\r\n\t\t\t\tc0.006-0.004,0.013-0.008,0.019-0.013c0.017,0.015,0.019,0.017,0.025,0.044c0.006,0.004,0.013,0.008,0.019,0.013\r\n\t\t\t\tc0.006-0.03,0.013-0.059,0.019-0.089c0.02-0.009,0.021-0.011,0.044-0.006c-0.012-0.168,0.011-0.45,0.28-0.337h0.006\r\n\t\t\t\tc-0.002-0.011-0.004-0.021-0.006-0.032c-0.056-0.128-0.19-0.036-0.242-0.108c-0.03-0.042-0.076-0.085-0.095-0.127\r\n\t\t\t\tc-0.023-0.049-0.009-0.096-0.038-0.133c-0.041-0.053-0.106-0.142-0.159-0.184c-0.019-0.006-0.038-0.013-0.057-0.019\r\n\t\t\t\tc-0.05-0.07-0.077-0.16-0.14-0.216c-0.015-0.004-0.03-0.009-0.044-0.013c-0.031-0.047,0.006-0.079-0.044-0.108\r\n\t\t\t\tc-0.057-0.081-0.018-0.217,0.019-0.311v-0.019H41.92c-0.011,0.038-0.021,0.076-0.032,0.114h-0.006\r\n\t\t\t\tc-0.001-0.113-0.014-0.227-0.114-0.286c-0.032-0.019-0.075-0.01-0.089-0.045v-0.032c0.004-0.075,0.083-0.081,0.114-0.127\r\n\t\t\t\tc0.062-0.092,0.092-0.195,0.121-0.286c0.004-0.006,0.008-0.013,0.013-0.019c0.105,0.051,0.2-0.03,0.28-0.076\r\n\t\t\t\tc0.015,0.008,0.03,0.017,0.044,0.025c0.016-0.02,0.02-0.029,0.019-0.07c0.102-0.023,0.134-0.121,0.216-0.153\r\n\t\t\t\tc0.04-0.002,0.081-0.004,0.121-0.006c0.13-0.041,0.242-0.21,0.413-0.197c0.096,0.007,0.137,0.073,0.21,0.089\r\n\t\t\t\tc0.077,0.017,0.097-0.038,0.133-0.051c0.057,0.013,0.114,0.025,0.172,0.038c0.015,0.025,0.03,0.051,0.045,0.076\r\n\t\t\t\tc-0.017,0.017-0.034,0.034-0.051,0.051c0.047,0.164,0.01,0.207-0.083,0.33c0.004,0.058,0.07,0.083,0.114,0.095\r\n\t\t\t\tc0.002,0.004,0.004,0.008,0.006,0.013c-0.138-0.013-0.275-0.025-0.413-0.038c-0.038,0.007-0.047,0.027-0.102,0.026\r\n\t\t\t\tc-0.013,0.034-0.025,0.068-0.038,0.102c-0.029,0.036-0.057,0.02-0.076,0.076c0.027,0.039,0.064,0.068,0.114,0.083\r\n\t\t\t\tc0.006,0.008,0.013,0.017,0.019,0.026c-0.061,0.044-0.214-0.025-0.337-0.019c-0.006,0.006-0.013,0.013-0.019,0.019v0.083\r\n\t\t\t\tc0.039,0.026,0.133,0.043,0.184,0.051c0.028,0.155,0.139,0.203,0.133,0.368h0.089c0.037,0.027,0.071,0.069,0.089,0.114\r\n\t\t\t\tc0.089,0.012,0.165-0.009,0.235,0.064c-0.034,0.064-0.07,0.143-0.095,0.203c0.023,0.038-0.002,0.077,0.019,0.121\r\n\t\t\t\tc0.013,0.006,0.026,0.013,0.038,0.019c-0.002,0.019-0.004,0.038-0.006,0.057c0.013,0.029,0.055,0.079,0.076,0.114v0.013\r\n\t\t\t\tc0.027-0.072,0.011-0.226,0.032-0.305c0.087-0.015,0.173-0.031,0.273-0.025c0.015,0.056,0.023,0.174,0.051,0.216\r\n\t\t\t\tc0.046,0.071,0.146,0.075,0.197,0.178c-0.015,0.031-0.026,0.037-0.057,0.051c-0.041-0.008-0.042-0.024-0.083-0.032\r\n\t\t\t\tC43.898,24.987,43.907,25.012,43.915,25.038z M35.799,24.777c-0.004,0.004-0.008,0.008-0.013,0.013\r\n\t\t\t\tc-0.025-0.022-0.041-0.037-0.083-0.045c0.004-0.011,0.009-0.021,0.013-0.032c0.017,0.008,0.034,0.017,0.051,0.025\r\n\t\t\t\tC35.788,24.751,35.789,24.757,35.799,24.777z M57.643,35.618c-0.368,0.016-0.324-0.225-0.388-0.502\r\n\t\t\t\tc-0.013,0.004-0.025,0.008-0.038,0.013c-0.056-0.044-0.033-0.145-0.051-0.222c-0.063,0.004-0.119,0.023-0.178,0.013\r\n\t\t\t\tc-0.153-0.249,0.124-0.633,0.191-0.826c-0.004-0.053-0.009-0.106-0.013-0.159c0.02-0.082,0.062-0.114,0.025-0.216\r\n\t\t\t\tc0.092-0.071,0.145-0.061,0.292-0.051c-0.006,0.076-0.013,0.152-0.019,0.229c0.058,0.001,0.08,0.024,0.121,0.032\r\n\t\t\t\tc0.078,0.014,0.107-0.054,0.191-0.006c0.038,0.04,0.076,0.08,0.115,0.121c0.002,0.001,0.004,0.001,0.006,0.002\r\n\t\t\t\tc-0.043,0.556-0.111,1.104-0.189,1.65C57.688,35.667,57.663,35.644,57.643,35.618z M8.363,28.628\r\n\t\t\t\tc-0.002-0.006-0.004-0.013-0.006-0.019v0.019H8.363z M8.35,28.59c-0.001-0.011-0.009-0.009-0.011-0.018\r\n\t\t\t\tc0.001,0.006,0.003,0.012,0.004,0.018H8.35z M42.555,41.414c-0.037-0.058-0.107-0.06-0.14-0.133\r\n\t\t\t\tc-0.068-0.054-0.061-0.042-0.127,0.013c0.009,0.1,0.008,0.236-0.07,0.299c-0.044,0.036-0.08,0.04-0.102,0.102\r\n\t\t\t\tc-0.039-0.014-0.048-0.034-0.063-0.07c-0.019-0.002-0.038-0.004-0.057-0.006c-0.003,0.068,0.015,0.109,0.038,0.165\r\n\t\t\t\tc-0.004,0.011-0.008,0.021-0.013,0.032c-0.024,0.016-0.04,0.025-0.083,0.025c-0.002,0.004-0.004,0.009-0.006,0.013\r\n\t\t\t\tc0.003,0.044,0.026,0.059,0.045,0.102c-0.023,0.025-0.047,0.051-0.07,0.076c-0.039-0.004-0.04-0.009-0.051-0.038H41.85\r\n\t\t\t\tc-0.032,0.028-0.063,0.055-0.095,0.083c0.008,0.034,0.022,0.045,0.038,0.07c-0.013,0.009-0.025,0.017-0.038,0.026\r\n\t\t\t\tc-0.024,0.01-0.027-0.009-0.064-0.019c-0.047,0.029-0.093,0.059-0.14,0.089c0.004,0.025,0.009,0.051,0.013,0.076\r\n\t\t\t\tc-0.071,0.017-0.121-0.054-0.21-0.013c-0.017,0.019-0.034,0.038-0.051,0.057c-0.04,0.02-0.074-0.013-0.108-0.013\r\n\t\t\t\tc-0.025,0.019-0.051,0.038-0.076,0.057c-0.044,0.002-0.089,0.004-0.133,0.006c0,0.213-0.083,0.245-0.14,0.381\r\n\t\t\t\tc-0.025,0.1,0.069,0.325,0.121,0.388c-0.015,0.032-0.03,0.064-0.044,0.096c0.032,0.038,0.064,0.076,0.095,0.114\r\n\t\t\t\tc0.03,0.115-0.166,0.512-0.216,0.559c-0.025,0.009-0.051,0.017-0.076,0.025c-0.045,0.032-0.102,0.233-0.089,0.311\r\n\t\t\t\tc0.053,0.097,0.106,0.195,0.159,0.292c-0.013,0.049-0.025,0.097-0.038,0.146c-0.031,0.144,0.06,0.157,0.083,0.229\r\n\t\t\t\tc0.016,0.051-0.006,0.092,0.019,0.127c0.083,0.119,0.262,0.084,0.343,0.21c0.137-0.008,0.17-0.09,0.286-0.121\r\n\t\t\t\tc0.07-0.009,0.14-0.017,0.21-0.026c0.132-0.081,0.205-0.497,0.261-0.674c0.15-0.485,0.301-0.97,0.451-1.455\r\n\t\t\t\tc0.028-0.095-0.011-0.189,0.019-0.299c0.026-0.093,0.124-0.146,0.146-0.254c-0.047-0.072-0.09-0.157-0.089-0.273\r\n\t\t\t\tc0.011-0.006,0.021-0.013,0.032-0.019c0.004-0.004,0.008-0.009,0.013-0.013c0.029,0.053,0.07,0.133,0.121,0.165\r\n\t\t\t\tc0.035-0.029,0.114-0.123,0.102-0.191c-0.027-0.053-0.055-0.106-0.083-0.159C42.622,41.831,42.634,41.517,42.555,41.414z\r\n\t\t\t\t M10.068,26.772c0.002,0.004,0.003,0.011,0.005,0.016v-0.016H10.068z M8.337,28.565c0,0.001-0.001,0.002-0.001,0.002\r\n\t\t\t\tc0.001,0.003,0.003,0.003,0.003,0.005C8.339,28.57,8.338,28.567,8.337,28.565z M8.356,28.609\r\n\t\t\t\tc-0.002-0.006-0.004-0.013-0.006-0.019v0.019H8.356z M14.998,24.644c-0.002-0.004-0.004-0.009-0.006-0.013\r\n\t\t\t\tc-0.021-0.006-0.042-0.013-0.064-0.019c-0.026,0.019-0.046,0.037-0.057,0.07c-0.004,0.002-0.009,0.004-0.013,0.006\r\n\t\t\t\tc-0.032-0.041-0.059-0.112-0.076-0.165v-0.007c0.122-0.058,0.118-0.025,0.216-0.114V24.37c-0.015-0.006-0.03-0.013-0.045-0.019\r\n\t\t\t\tc-0.042,0.02-0.082,0.042-0.14,0.045c-0.035-0.024-0.077-0.055-0.095-0.095c-0.006-0.006-0.013-0.013-0.019-0.019\r\n\t\t\t\tc0.049-0.04,0.097-0.081,0.146-0.121c0.013-0.015,0.026-0.03,0.038-0.045c-0.085-0.053-0.196-0.098-0.331-0.083\r\n\t\t\t\tc-0.013,0.023-0.025,0.047-0.038,0.07c-0.139,0.028-0.257-0.06-0.343-0.127v-0.019c0.036-0.036,0.072-0.072,0.108-0.108\r\n\t\t\t\tc-0.044-0.017-0.089-0.034-0.133-0.051c-0.111,0.022-0.1,0.134-0.21,0.159c-0.006-0.249,0.344-0.399,0.241-0.604\r\n\t\t\t\tc0.046-0.013,0.102-0.029,0.14-0.045c0.002-0.008,0.004-0.017,0.006-0.025c-0.004-0.011-0.009-0.021-0.013-0.032\r\n\t\t\t\tc-0.013-0.004-0.025-0.008-0.038-0.013c-0.078,0.021-0.157,0.042-0.235,0.064c-0.19,0.122-0.428,0.489-0.508,0.724\r\n\t\t\t\tc0.032,0.038,0.063,0.076,0.095,0.114c-0.085,0.09-0.178,0.003-0.235,0.165c-0.004,0.008-0.008,0.017-0.013,0.025\r\n\t\t\t\tc0.049,0.013,0.098,0.025,0.146,0.038c-0.09,0.09-0.264,0.111-0.324,0.229c-0.016,0.029,0.012,0.075,0.026,0.114\r\n\t\t\t\tc0.097-0.011,0.195-0.021,0.292-0.032c0.121,0.017,0.242,0.034,0.362,0.051c0.11,0.02,0.23-0.003,0.248-0.083\r\n\t\t\t\tc0.034-0.004,0.068-0.008,0.102-0.013v0.096c0.004,0.006,0.008,0.013,0.013,0.019c0.013-0.002,0.025-0.004,0.038-0.006\r\n\t\t\t\tc0.033-0.011,0.042-0.037,0.051-0.07c0.057,0.006,0.114,0.013,0.172,0.019v0.013c-0.121,0.055-0.153,0.168-0.305,0.21\r\n\t\t\t\tc-0.012,0.026-0.007,0.015,0,0.045c0.033,0.016,0.082,0.021,0.133,0.019c0.096-0.105,0.276-0.194,0.343-0.311\r\n\t\t\t\tc0.011,0.004,0.021,0.008,0.032,0.013c0.021,0.028,0.042,0.055,0.064,0.083c-0.002,0.068-0.031,0.109-0.064,0.146\r\n\t\t\t\tc0.002,0.017,0.004,0.034,0.006,0.051c0.017,0.002,0.034,0.004,0.051,0.006c0.025-0.021,0.051-0.042,0.076-0.063\r\n\t\t\t\tc0.004,0.036,0.008,0.072,0.013,0.108c0.053,0.015,0.106,0.03,0.159,0.045c0.031-0.093,0.108-0.194,0.095-0.299\r\n\t\t\t\tC14.985,24.767,14.974,24.733,14.998,24.644z M30.531,24.606c-0.011,0.008-0.021,0.017-0.032,0.025\r\n\t\t\t\tc0.014,0.032,0.014,0.022,0.057,0.019v0.006c-0.011,0.011-0.021,0.021-0.032,0.032c-0.002,0.004-0.004,0.008-0.006,0.013\r\n\t\t\t\tc0.021,0.009,0.042,0.017,0.063,0.026c-0.011,0.015-0.021,0.03-0.032,0.044c0.011,0.009,0.021,0.017,0.032,0.025\r\n\t\t\t\tc0.019,0.002,0.038,0.004,0.057,0.006v0.032c0.013,0.002,0.025,0.004,0.038,0.006c0.109-0.111,0.08-0.372,0.076-0.559\r\n\t\t\t\tc-0.008-0.006-0.017-0.013-0.025-0.019c-0.004,0.002-0.008,0.004-0.013,0.006c-0.004,0.03-0.008,0.059-0.013,0.089\r\n\t\t\t\tc-0.002,0.003-0.171,0.074-0.21,0.114c0.001,0.025,0.001,0.024,0.019,0.044c-0.009,0.007-0.017,0.013-0.026,0.019\r\n\t\t\t\tC30.493,24.58,30.509,24.579,30.531,24.606z M35.215,27.014c0.142-0.008,0.284-0.017,0.426-0.025\r\n\t\t\t\tc0.017-0.028,0.025-0.06,0.032-0.102c-0.045,0.028-0.097,0.035-0.146,0.064c-0.008-0.004-0.017-0.009-0.025-0.013\r\n\t\t\t\tc0.004-0.017,0.009-0.034,0.013-0.051c-0.002-0.002-0.004-0.004-0.006-0.006c-0.098,0.011-0.135,0.002-0.21-0.032\r\n\t\t\t\tc-0.07,0.006-0.14,0.013-0.21,0.019c-0.02-0.019-0.014-0.025-0.051-0.032c0.006-0.009,0.013-0.017,0.019-0.026\r\n\t\t\t\tc-0.004-0.006-0.008-0.013-0.013-0.019c-0.015,0.008-0.03,0.017-0.044,0.026c-0.034-0.012-0.056-0.014-0.076-0.038v-0.013\r\n\t\t\t\tc-0.011,0.013-0.01,0.012-0.013,0.038h-0.032c-0.006,0.032-0.013,0.063-0.019,0.095c0.087,0.039,0.26,0.031,0.356,0.07V27.014z\r\n\t\t\t\t M32.367,26.423c0.035-0.028,0.056-0.073,0.095-0.095c0.013-0.037-0.026-0.055-0.045-0.095c-0.036-0.095,0.072-0.224,0.102-0.292\r\n\t\t\t\tv-0.006c-0.058-0.014-0.12,0.013-0.172,0.025c-0.214,0.053-0.3,0.057-0.458-0.044c-0.091,0.081-0.209,0.007-0.254,0.152\r\n\t\t\t\tc0.043,0.085,0.104,0.06,0.191,0.102C32.004,26.254,32.172,26.367,32.367,26.423z M21.217,10.482\r\n\t\t\t\tc0.035-0.019,0.07-0.038,0.105-0.057c0.055-0.019,0.109-0.037,0.164-0.056c0.003-0.008,0.007-0.017,0.01-0.025\r\n\t\t\t\tc-0.104,0.008-0.218,0.043-0.302,0.036c-0.066,0.038-0.132,0.076-0.197,0.114c-0.025,0.014-0.069,0.026-0.071,0.048\r\n\t\t\t\tc0.004,0.002,0.008,0.004,0.013,0.006c0.045-0.002,0.096-0.023,0.138-0.036C21.123,10.502,21.17,10.492,21.217,10.482z\r\n\t\t\t\t M16.682,18.341c-0.01,0.031-0.094,0.043-0.109,0.087c0.001,0.002,0.001,0.003,0.002,0.005c0.076-0.011,0.12-0.032,0.157-0.06\r\n\t\t\t\tc0.001-0.015-0.005-0.022-0.016-0.032C16.705,18.339,16.7,18.338,16.682,18.341z M30.575,25.66\r\n\t\t\t\tc0.019-0.025,0.038-0.051,0.057-0.076c0.054-0.026,0.099,0,0.146,0.013c0.02-0.058,0.068-0.112,0.057-0.197\r\n\t\t\t\tc-0.006-0.047-0.013-0.093-0.019-0.14c0.006-0.036,0.036-0.069,0.044-0.095c0.031-0.095-0.097-0.241-0.153-0.26\r\n\t\t\t\tc-0.085,0.08-0.164,0.087-0.311,0.114c-0.004,0.004-0.008,0.008-0.013,0.013c0.017,0.081,0.077,0.106,0.095,0.197\r\n\t\t\t\tC30.517,25.416,30.356,25.615,30.575,25.66z M30.512,36.559c-0.028,0.032-0.044,0.092-0.089,0.108v0.057\r\n\t\t\t\tc0.013,0.004,0.025,0.008,0.038,0.013c0.082-0.01,0.066-0.094,0.127-0.127C30.57,36.578,30.553,36.568,30.512,36.559z\r\n\t\t\t\t M26.304,19.147c0.035-0.024,0.05-0.049,0.076-0.083c0.002-0.004,0.004-0.009,0.006-0.013c0.025,0.017,0.051,0.034,0.076,0.051\r\n\t\t\t\tc-0.033,0.09-0.136,0.211-0.089,0.305v0.013c0.082-0.047,0.165-0.094,0.235-0.152h0.025c0.006,0.028,0.013,0.055,0.019,0.083\r\n\t\t\t\tc-0.02,0.027-0.04,0.046-0.076,0.057c-0.009,0.057,0.008,0.105,0.051,0.127c0.034,0.062-0.106,0.181-0.121,0.28\r\n\t\t\t\tc0.051,0.013,0.102,0.025,0.153,0.038c0.024-0.018,0.033-0.026,0.038-0.064c0.038,0.011,0.076,0.021,0.114,0.032\r\n\t\t\t\tc0.138-0.008,0.086-0.079,0.267-0.032c-0.045,0.057-0.103,0.092-0.121,0.178c0.025,0.053,0.055,0.069,0.089,0.108\r\n\t\t\t\tc0.036-0.007,0.072-0.013,0.108-0.019h0.006c-0.005,0.156-0.076,0.23-0.013,0.356v0.006c-0.215,0.003-0.415,0.024-0.489,0.172\r\n\t\t\t\tv0.006h0.133v0.013c0.023,0.036,0.008,0.103,0.006,0.159c-0.078,0.113-0.267,0.119-0.299,0.178\r\n\t\t\t\tc-0.011,0.011-0.021,0.021-0.032,0.032c0.025,0.021,0.051,0.042,0.076,0.064c0.085,0.002,0.169,0.004,0.254,0.006\r\n\t\t\t\tc0.061,0.03,0.123,0.059,0.184,0.089h0.013c0.09-0.005,0.137-0.049,0.203-0.076c-0.029,0.06-0.086,0.099-0.089,0.172\r\n\t\t\t\tc-0.131,0.033-0.232-0.046-0.343,0.006c-0.036,0.041-0.02,0.083-0.095,0.07c-0.013,0.136-0.232,0.282-0.35,0.318\r\n\t\t\t\tc-0.002,0.004-0.004,0.009-0.006,0.013c0.032,0.009,0.064,0.017,0.095,0.026c0.015,0.015,0.03,0.03,0.045,0.045\r\n\t\t\t\tc0.052-0.069,0.127-0.122,0.216-0.153c0.045,0.021,0.07,0.005,0.095-0.013c0.108,0.059,0.203,0.111,0.21-0.089\r\n\t\t\t\tc0.2-0.024,0.253-0.004,0.439,0.013c-0.004-0.015-0.009-0.03-0.013-0.044c0.085-0.013,0.17-0.025,0.254-0.038\r\n\t\t\t\tc0.048-0.007,0.063,0.026,0.095,0.032c0.042-0.011,0.085-0.021,0.127-0.032c0.061,0.009,0.123,0.017,0.184,0.025\r\n\t\t\t\tc0.074-0.014,0.1-0.073,0.203-0.064c0.004-0.059,0.085-0.077,0.133-0.089v-0.089h-0.013c-0.014-0.009-0.237-0.029-0.299-0.032\r\n\t\t\t\tV21.13c0.107-0.031,0.369-0.204,0.4-0.299c-0.006-0.055-0.013-0.11-0.019-0.165c-0.087-0.068-0.271-0.169-0.369-0.032\r\n\t\t\t\tc-0.034-0.007-0.068-0.013-0.102-0.019c0.135-0.201,0.055-0.175-0.076-0.318c-0.002-0.002,0.009-0.153-0.025-0.203\r\n\t\t\t\tc-0.049-0.064-0.097-0.127-0.146-0.191c-0.055-0.03-0.115-0.006-0.153-0.051c-0.069-0.084-0.056-0.196-0.095-0.299\r\n\t\t\t\tc-0.031-0.053-0.237-0.227-0.318-0.222c-0.131,0.007-0.14,0.075-0.305,0.006c-0.002-0.004-0.004-0.008-0.006-0.013\r\n\t\t\t\tc0.123,0.003,0.258-0.01,0.311-0.076c0.004-0.002,0.008-0.004,0.013-0.006c-0.034-0.019-0.068-0.038-0.102-0.057\r\n\t\t\t\tc-0.002-0.004-0.004-0.009-0.006-0.013c0.198-0.003,0.277-0.285,0.331-0.426c0.013-0.025,0.001-0.021-0.013-0.051\r\n\t\t\t\tc-0.1-0.073-0.46-0.024-0.623-0.025c-0.006-0.009-0.013-0.017-0.019-0.025c0.017-0.197,0.253-0.175,0.324-0.311\r\n\t\t\t\tc0.035-0.032,0.013-0.032-0.006-0.07c-0.129-0.052-0.288,0.077-0.407,0.045c-0.038-0.023-0.076-0.047-0.114-0.07\r\n\t\t\t\tc-0.019,0.025-0.038,0.051-0.057,0.076c0.019,0.03,0.038,0.059,0.057,0.089c-0.04,0.013-0.08,0.025-0.121,0.038\r\n\t\t\t\tc0.025,0.051,0.051,0.102,0.076,0.152c-0.05,0.002-0.083-0.003-0.127-0.019c-0.039,0.01-0.054,0.039-0.07,0.07\r\n\t\t\t\tc0.027,0.032,0.055,0.064,0.083,0.095c-0.019,0.03-0.061,0.028-0.076,0.051c0.009,0.04,0.017,0.08,0.026,0.121\r\n\t\t\t\tc0,0-0.102,0.182-0.114,0.203C26.262,19.126,26.283,19.136,26.304,19.147z M23.552,15.69c0.122,0.059,0.229,0.003,0.261-0.114\r\n\t\t\t\tc0.002-0.025,0.004-0.051,0.006-0.076c0.061-0.015,0.123-0.03,0.184-0.045c0.041-0.073,0.083-0.252,0.019-0.337\r\n\t\t\t\tc-0.041-0.048-0.155-0.016-0.222-0.038c-0.027-0.017-0.055-0.034-0.083-0.051c-0.016-0.036-0.003-0.092,0.013-0.134\r\n\t\t\t\tc-0.008-0.015-0.017-0.03-0.025-0.045c-0.139-0.061-0.251-0.035-0.311-0.172c-0.039-0.024-0.106-0.033-0.172-0.032v0.159\r\n\t\t\t\tc-0.129,0.091-0.311,0.046-0.483,0.025c0.022,0.049,0.05,0.087,0.044,0.146c-0.091-0.002-0.162-0.057-0.191-0.121\r\n\t\t\t\tc-0.062-0.048-0.149-0.012-0.216,0.038c0.011,0.034,0.021,0.068,0.032,0.102v0.007c-0.017,0.006-0.034,0.013-0.051,0.019\r\n\t\t\t\tc-0.074-0.049-0.145-0.122-0.178-0.21h-0.006c-0.017,0.011-0.034,0.021-0.051,0.032c-0.031,0.052-0.008,0.145-0.006,0.229\r\n\t\t\t\tc-0.045,0.048-0.112,0.04-0.172,0.076c-0.032,0.029-0.064,0.059-0.095,0.089c-0.034-0.049-0.068-0.097-0.102-0.146\r\n\t\t\t\tc-0.02-0.043,0.074-0.098,0.057-0.178c-0.035-0.162-0.262-0.199-0.413-0.241c-0.015,0.017-0.03,0.034-0.044,0.051\r\n\t\t\t\tc-0.004,0.004-0.008,0.008-0.013,0.013c0.042,0.031,0.085,0.071,0.102,0.127v0.006c-0.138,0.096-0.242-0.171-0.324,0.006\r\n\t\t\t\tc0.025,0.034,0.051,0.068,0.076,0.102c0.006,0.006,0.013,0.013,0.019,0.019c-0.08,0.017-0.198,0.021-0.261,0.051\r\n\t\t\t\tc-0.006,0.028-0.008,0.049,0.006,0.07c0.103,0.167,0.277-0.021,0.451,0.007c0.098,0.015,0.167,0.047,0.241,0.076\r\n\t\t\t\tc0.004,0.021,0.009,0.043,0.013,0.064c-0.006,0.019-0.013,0.038-0.019,0.057c-0.108,0.081-0.481,0.067-0.534,0.165\r\n\t\t\t\tc-0.002,0.006-0.004,0.013-0.006,0.019c0.008,0.013,0.017,0.025,0.025,0.038c0.081,0.034,0.262-0.022,0.349-0.038\r\n\t\t\t\tc0.073,0.086,0.103,0.124,0.254,0.14c-0.088,0.128-0.197,0.136-0.292,0.235c0.102,0.124,0.465,0.012,0.616,0.07\r\n\t\t\t\tc0.049,0.034,0.097,0.068,0.146,0.102c0.079,0.046,0.211,0.06,0.311,0.076c0.267,0.044,0.261-0.127,0.369-0.172\r\n\t\t\t\tc0.102-0.013,0.203-0.025,0.305-0.038C23.322,15.873,23.442,15.767,23.552,15.69z M25.078,20.894\r\n\t\t\t\tc-0.023,0.009-0.047,0.017-0.07,0.026c-0.007,0.033,0.006,0.053,0.013,0.089c0.036-0.004,0.072-0.008,0.108-0.013\r\n\t\t\t\tc0.017,0.048,0.015,0.085,0.013,0.146c0.12-0.007,0.193-0.047,0.273-0.07c0.034-0.002,0.068-0.004,0.102-0.006\r\n\t\t\t\tc0.076-0.055,0.153-0.11,0.229-0.165c0.074-0.007,0.148-0.013,0.222-0.019c0.008-0.013,0.017-0.025,0.025-0.038\r\n\t\t\t\tc0.049-0.002,0.097-0.004,0.146-0.006c0.016-0.107,0.079-0.154,0.102-0.229c0.037-0.123-0.067-0.364-0.121-0.439\r\n\t\t\t\tc0.126-0.037,0.169-0.056,0.229-0.159c-0.018-0.123-0.068-0.218-0.102-0.324c-0.094-0.067-0.283-0.037-0.4,0.013\r\n\t\t\t\tc-0.064-0.001-0.088-0.026-0.102-0.076c-0.149,0.013-0.194,0.075-0.229,0.203c-0.025,0.006-0.051,0.013-0.076,0.019\r\n\t\t\t\tc-0.006,0.009-0.013,0.017-0.019,0.025h0.184c-0.025,0.064-0.066,0.089-0.133,0.108c-0.001,0.021,0.008,0.04,0.019,0.063\r\n\t\t\t\tc-0.128-0.01-0.273-0.013-0.375-0.051c-0.045,0.036-0.065,0.068-0.083,0.134v0.038c0.057-0.015,0.088-0.022,0.127,0.013h0.013\r\n\t\t\t\tc-0.037,0.042-0.05,0.035-0.038,0.102c-0.03,0.006-0.059,0.013-0.089,0.019c0.008,0.009,0.017,0.017,0.025,0.025\r\n\t\t\t\tc-0.013,0.017-0.025,0.034-0.038,0.051c0.051,0.024,0.293,0.068,0.343,0.038c0.006,0.017,0.013,0.034,0.019,0.051\r\n\t\t\t\tc-0.083,0.035-0.129,0.014-0.165,0.095c-0.008,0.022-0.004,0.012,0.013,0.038c-0.013,0.019-0.025,0.038-0.038,0.057\r\n\t\t\t\tc-0.004,0.004-0.008,0.008-0.013,0.013c0.047-0.006,0.093-0.013,0.14-0.019c-0.018,0.068-0.092,0.065-0.159,0.076\r\n\t\t\t\tc-0.021,0.026-0.02,0.078-0.044,0.102c-0.032,0.024-0.13,0.015-0.184,0.013c-0.002,0.015-0.004,0.03-0.006,0.044\r\n\t\t\t\tc0.047,0.002,0.093,0.004,0.14,0.006V20.894z M26.336,19.465c-0.008,0.048-0.009,0.074,0,0.121\r\n\t\t\t\tc0.011,0.002,0.021,0.004,0.032,0.006c0.011-0.013,0.021-0.025,0.032-0.038c-0.004-0.034-0.009-0.068-0.013-0.102\r\n\t\t\t\tC26.37,19.456,26.353,19.46,26.336,19.465z M37.611,27.116c0.023-0.013,0.016-0.005,0.019-0.038\r\n\t\t\t\tc0.145-0.004,0.169-0.092,0.292-0.102c-0.015-0.019-0.03-0.038-0.045-0.057c0.053-0.068,0.135-0.101,0.191-0.165\r\n\t\t\t\tc-0.1,0.036-0.199,0.072-0.299,0.108c-0.059-0.006-0.119-0.013-0.178-0.019c0.011,0.023,0.012,0.039,0,0.064\r\n\t\t\t\tc-0.006,0.006-0.171,0.045-0.184,0.045c0.012,0.053,0.028,0.071,0.045,0.114C37.497,27.08,37.576,27.089,37.611,27.116z\r\n\t\t\t\t M8.363,28.654h0.006c-0.002-0.006-0.004-0.013-0.006-0.019V28.654z M14.54,13.788c0.035-0.025,0.102-0.125,0.045-0.175\r\n\t\t\t\tc-0.059,0.063-0.171,0.08-0.068,0.171C14.525,13.786,14.532,13.787,14.54,13.788z M8.375,28.698h0.006\r\n\t\t\t\tc-0.004-0.015-0.008-0.029-0.013-0.044C8.371,28.668,8.373,28.683,8.375,28.698z M8.433,28.838\r\n\t\t\t\tc0.006,0.004,0.013,0.008,0.019,0.013c-0.023-0.051-0.047-0.102-0.07-0.153C8.389,28.761,8.414,28.792,8.433,28.838z\r\n\t\t\t\t M21.4,11.563c-0.005,0-0.01,0.001-0.015,0.001c-0.058,0.053-0.117,0.105-0.175,0.158c-0.053,0.024-0.106,0.048-0.158,0.072\r\n\t\t\t\tc-0.038,0.029-0.035,0.1-0.05,0.136c-0.008,0.019-0.056,0.102-0.048,0.112c0.02,0.01,0.135-0.027,0.152-0.034\r\n\t\t\t\tc0.041-0.017,0.077-0.038,0.104-0.06c0.011-0.01,0.021-0.021,0.032-0.031c0.029-0.01,0.059-0.019,0.088-0.029\r\n\t\t\t\tc0.028-0.025,0.056-0.049,0.084-0.074c0.003-0.003,0.007-0.007,0.01-0.01c0.014,0.009,0.038,0.018,0.063,0.008\r\n\t\t\t\tc0.047-0.026,0.042-0.069,0.098-0.095C21.602,11.666,21.437,11.588,21.4,11.563z M21.72,10.584c0.002,0,0.003-0.001,0.005-0.001\r\n\t\t\t\tc-0.005-0.006-0.009-0.013-0.014-0.019c-0.016,0.002-0.032,0.005-0.048,0.007c-0.148-0.003-0.224-0.095-0.411-0.061\r\n\t\t\t\tc-0.054,0.025-0.235,0.062-0.254,0.094c-0.029,0.048,0.077,0.08,0.116,0.089c0.134,0.033,0.307,0.006,0.465,0.018\r\n\t\t\t\tc0.029,0.002,0.079,0.007,0.099,0.019c0.015,0.009,0.022,0.026,0.042,0.03c0.032,0.001,0.089-0.042,0.103-0.056\r\n\t\t\t\tc0.001-0.001,0.003-0.002,0.004-0.003c-0.082-0.021-0.2-0.02-0.258-0.064C21.619,10.62,21.669,10.602,21.72,10.584z\r\n\t\t\t\t M14.242,41.547c0.147,0.036,0.426-0.012,0.508-0.108c0.048-0.056,0.064-0.206,0.095-0.267c-0.057-0.054-0.445-0.06-0.591-0.057\r\n\t\t\t\tC14.175,41.239,14.197,41.443,14.242,41.547z M10.822,34.354c0.015,0.038,0.009,0.091,0.013,0.134\r\n\t\t\t\tc0.086,0.022,0.114-0.016,0.203-0.019c0.117-0.003,0.196,0.036,0.216-0.095c-0.077-0.061-0.285-0.049-0.4-0.051\r\n\t\t\t\tC10.843,34.333,10.833,34.343,10.822,34.354z M12.735,25.375c-0.017-0.011-0.034-0.021-0.051-0.032\r\n\t\t\t\tc-0.011-0.1,0.084-0.092,0.133-0.146c0.043-0.048,0.06-0.154,0.095-0.203c-0.04-0.027-0.081-0.055-0.121-0.083\r\n\t\t\t\tc-0.045,0.101-0.251,0.268-0.216,0.413c0.05,0.208,0.421,0.141,0.47-0.025C12.9,25.097,12.854,25.337,12.735,25.375z\r\n\t\t\t\t M10.93,37.912c-0.004,0.006-0.008,0.013-0.013,0.019c0.044,0.003,0.042,0.01,0.063,0.032c-0.012,0.031-0.012,0.05,0,0.083\r\n\t\t\t\tc-0.034,0.015-0.068,0.03-0.102,0.044c-0.004,0.006-0.009,0.013-0.013,0.019v0.007c0.085,0,0.174-0.005,0.242-0.013\r\n\t\t\t\tc0.02-0.081-0.008-0.157,0.032-0.216v-0.006h-0.038C11.059,37.905,10.99,37.913,10.93,37.912z M10.015,33.979\r\n\t\t\t\tc-0.092-0.017-0.212,0.006-0.261-0.083c-0.045,0.004-0.062,0.023-0.089,0.032c-0.04-0.004-0.081-0.008-0.121-0.013\r\n\t\t\t\tc-0.04,0.009-0.059,0.049-0.127,0.038c-0.109-0.017-0.194-0.056-0.324-0.057c-0.027,0.004-0.055,0.008-0.083,0.013\r\n\t\t\t\tc-0.006,0.008-0.013,0.017-0.019,0.026v0.025c0.064,0.033,0.195,0.03,0.229,0.095c0.046,0.078-0.076,0.145,0.095,0.21\r\n\t\t\t\tc0.004,0.006,0.008,0.013,0.013,0.019c-0.128,0.082-0.41,0.037-0.572-0.013c-0.013,0.015-0.025,0.03-0.038,0.045\r\n\t\t\t\tc-0.002,0.004-0.004,0.008-0.006,0.013c0.034,0.065,0.099,0.077,0.152,0.121c0.05-0.012,0.053-0.047,0.102-0.057\r\n\t\t\t\tc0.076,0.011,0.153,0.021,0.229,0.032c0.078-0.006,0.157-0.013,0.235-0.019c0.048,0.048,0.109,0.151,0.178,0.172\r\n\t\t\t\tc0.044-0.114,0.093-0.196,0.203-0.248c0.021,0.023,0.042,0.047,0.064,0.07c0.075,0.033,0.112-0.06,0.178-0.076\r\n\t\t\t\tc0.044-0.011,0.074,0.012,0.095,0.019c0.129-0.06,0.183,0.045,0.248,0.083c0.039-0.029,0.062-0.074,0.089-0.114\r\n\t\t\t\tC10.38,34.159,10.076,34.16,10.015,33.979z M7.581,34.385c0.019,0.027,0.251,0.169,0.311,0.153\r\n\t\t\t\tc0.044-0.012,0.058-0.078,0.14-0.057c0.051,0.013,0.064,0.04,0.127,0.038c0.002-0.011,0.004-0.021,0.006-0.032\r\n\t\t\t\tc-0.073-0.11-0.33-0.158-0.515-0.153C7.628,34.352,7.604,34.368,7.581,34.385z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"COMPASS_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"COMPASS","display":"inline"},"children":[{"name":"g","attribs":{"id":"COMPASS","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M16,16l9,22l23,10l-9-23L16,16z M32,35c-1.657,0-3-1.343-3-3\r\n\t\t\t\tc0-1.657,1.343-3,3-3c1.657,0,3,1.343,3,3C35,33.657,33.657,35,32,35z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32S17.641,6,32,6c14.359,0,26,11.641,26,26\r\n\t\t\t\tS46.359,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M16,16l9,22l23,10l-9-23L16,16z M32,35c-1.657,0-3-1.343-3-3\r\n\t\t\t\tc0-1.657,1.343-3,3-3c1.657,0,3,1.343,3,3C35,33.657,33.657,35,32,35z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32S17.641,6,32,6c14.359,0,26,11.641,26,26\r\n\t\t\t\tS46.359,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"TARGET_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"TARGET","display":"inline"},"children":[{"name":"g","attribs":{"id":"TARGET","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,29c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3s3-1.343,3-3\r\n\t\t\t\tC35,30.343,33.657,29,32,29z M61,29h-3.186C56.438,17.042,46.956,7.569,35,6.191V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3.186\r\n\t\t\t\tC17.042,7.562,7.568,17.044,6.191,29H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h3.186C7.562,46.958,17.044,56.432,29,57.809V61\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3v-3.191C46.956,56.432,56.438,46.958,57.814,35H61c1.657,0,3-1.343,3-3\r\n\t\t\t\tC64,30.343,62.657,29,61,29z M46,35h5.751C50.448,43.638,43.634,50.453,35,51.757V46c0-1.657-1.343-3-3-3s-3,1.343-3,3v5.756\r\n\t\t\t\tC20.366,50.453,13.552,43.638,12.249,35H18c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-5.756\r\n\t\t\t\tC13.547,20.366,20.362,13.552,29,12.249V18c0,1.657,1.343,3,3,3s3-1.343,3-3v-5.756C43.634,13.547,50.448,20.362,51.751,29H46\r\n\t\t\t\tc-1.657,0-3,1.343-3,3C43,33.657,44.343,35,46,35z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,29c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3s3-1.343,3-3\r\n\t\t\t\tC35,30.343,33.657,29,32,29z M61,29h-3.186C56.438,17.042,46.956,7.569,35,6.191V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3.186\r\n\t\t\t\tC17.042,7.562,7.568,17.044,6.191,29H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h3.186C7.562,46.958,17.044,56.432,29,57.809V61\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3v-3.191C46.956,56.432,56.438,46.958,57.814,35H61c1.657,0,3-1.343,3-3\r\n\t\t\t\tC64,30.343,62.657,29,61,29z M46,35h5.751C50.448,43.638,43.634,50.453,35,51.757V46c0-1.657-1.343-3-3-3s-3,1.343-3,3v5.756\r\n\t\t\t\tC20.366,50.453,13.552,43.638,12.249,35H18c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-5.756\r\n\t\t\t\tC13.547,20.366,20.362,13.552,29,12.249V18c0,1.657,1.343,3,3,3s3-1.343,3-3v-5.756C43.634,13.547,50.448,20.362,51.751,29H46\r\n\t\t\t\tc-1.657,0-3,1.343-3,3C43,33.657,44.343,35,46,35z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"PIN__x2F__ZOOM_OUT_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PIN__x2F__ZOOM_OUT","display":"inline"},"children":[{"name":"g","attribs":{"id":"PIN__x2F__ZOOM_OUT","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M40,21H24c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h16c1.657,0,3-1.343,3-3\r\n\t\t\t\tC43,22.343,41.657,21,40,21z M32,0C18.746,0,8,10.747,8,24c0,13.254,24,40,24,40s24-26.746,24-40C56,10.747,45.254,0,32,0z\r\n\t\t\t\t M32,40c-8.836,0-16-7.164-16-16c0-8.836,7.164-16,16-16c8.836,0,16,7.164,16,16C48,32.836,40.836,40,32,40z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M40,21H24c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h16c1.657,0,3-1.343,3-3\r\n\t\t\t\tC43,22.343,41.657,21,40,21z M32,0C18.746,0,8,10.747,8,24c0,13.254,24,40,24,40s24-26.746,24-40C56,10.747,45.254,0,32,0z\r\n\t\t\t\t M32,40c-8.836,0-16-7.164-16-16c0-8.836,7.164-16,16-16c8.836,0,16,7.164,16,16C48,32.836,40.836,40,32,40z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"PIN__x2F__ZOOM_IN_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PIN__x2F__ZOOM_IN","display":"inline"},"children":[{"name":"g","attribs":{"id":"PIN__x2F__ZOOM_IN","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M40,21h-5v-5c0-1.657-1.343-3-3-3s-3,1.343-3,3v5h-5c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,1.657,1.343,3,3,3h5v5c0,1.657,1.343,3,3,3s3-1.343,3-3v-5h5c1.657,0,3-1.343,3-3C43,22.343,41.657,21,40,21z M32,0\r\n\t\t\t\tC18.746,0,8,10.747,8,24c0,13.254,24,40,24,40s24-26.746,24-40C56,10.747,45.254,0,32,0z M32,40c-8.836,0-16-7.164-16-16\r\n\t\t\t\tc0-8.836,7.164-16,16-16c8.836,0,16,7.164,16,16C48,32.836,40.836,40,32,40z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M40,21h-5v-5c0-1.657-1.343-3-3-3s-3,1.343-3,3v5h-5c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,1.657,1.343,3,3,3h5v5c0,1.657,1.343,3,3,3s3-1.343,3-3v-5h5c1.657,0,3-1.343,3-3C43,22.343,41.657,21,40,21z M32,0\r\n\t\t\t\tC18.746,0,8,10.747,8,24c0,13.254,24,40,24,40s24-26.746,24-40C56,10.747,45.254,0,32,0z M32,40c-8.836,0-16-7.164-16-16\r\n\t\t\t\tc0-8.836,7.164-16,16-16c8.836,0,16,7.164,16,16C48,32.836,40.836,40,32,40z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"PIN_2_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PIN_2","display":"inline"},"children":[{"name":"g","attribs":{"id":"PIN_2","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,16c-4.418,0-8,3.582-8,8c0,4.418,3.582,8,8,8c4.418,0,8-3.582,8-8\r\n\t\t\t\tC40,19.582,36.418,16,32,16z M32,0C18.746,0,8,10.747,8,24c0,13.254,24,40,24,40s24-26.746,24-40C56,10.747,45.254,0,32,0z\r\n\t\t\t\t M32,40c-8.836,0-16-7.164-16-16c0-8.836,7.164-16,16-16c8.836,0,16,7.164,16,16C48,32.836,40.836,40,32,40z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,16c-4.418,0-8,3.582-8,8c0,4.418,3.582,8,8,8c4.418,0,8-3.582,8-8\r\n\t\t\t\tC40,19.582,36.418,16,32,16z M32,0C18.746,0,8,10.747,8,24c0,13.254,24,40,24,40s24-26.746,24-40C56,10.747,45.254,0,32,0z\r\n\t\t\t\t M32,40c-8.836,0-16-7.164-16-16c0-8.836,7.164-16,16-16c8.836,0,16,7.164,16,16C48,32.836,40.836,40,32,40z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"PIN_1_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PIN_1","display":"inline"},"children":[{"name":"g","attribs":{"id":"PIN_1","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C18.746,0,8,10.747,8,24c0,13.254,24,40,24,40s24-26.746,24-40\r\n\t\t\t\tC56,10.747,45.254,0,32,0z M32,40c-8.836,0-16-7.164-16-16c0-8.836,7.164-16,16-16c8.836,0,16,7.164,16,16\r\n\t\t\t\tC48,32.836,40.836,40,32,40z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C18.746,0,8,10.747,8,24c0,13.254,24,40,24,40s24-26.746,24-40\r\n\t\t\t\tC56,10.747,45.254,0,32,0z M32,40c-8.836,0-16-7.164-16-16c0-8.836,7.164-16,16-16c8.836,0,16,7.164,16,16\r\n\t\t\t\tC48,32.836,40.836,40,32,40z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CLOUD__x2F__UPLOAD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CLOUD__x2F__UPLOAD","display":"inline"},"children":[{"name":"g","attribs":{"id":"CLOUD__x2F__UPLOAD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M43.986,43.719c0-0.002,0-0.004,0-0.006c-0.063-0.658-0.338-1.255-0.756-1.719\r\n\t\t\t\tl0,0l-0.008-0.009c-0.001-0.001-0.002-0.002-0.003-0.003l-8.99-9.989l-0.008,0.007c-0.549-0.61-1.336-1-2.222-1\r\n\t\t\t\tc-0.885,0-1.673,0.391-2.222,1l-0.008-0.007l-8.988,9.987c-0.002,0.002-0.004,0.005-0.006,0.007l-0.006,0.006l0,0\r\n\t\t\t\tC20.292,42.525,20,43.228,20,44c0,0.518,0.131,1.005,0.362,1.43C20.87,46.365,21.861,47,23,47c0.033,0,0.066-0.002,0.099-0.003\r\n\t\t\t\tc0.019-0.001,0.038-0.001,0.057-0.002c0.022-0.001,0.043-0.003,0.065-0.005c0.033-0.002,0.066-0.005,0.098-0.008\r\n\t\t\t\tc0.012-0.001,0.024-0.003,0.036-0.005c0.044-0.005,0.087-0.011,0.13-0.018c0.001,0,0.003,0,0.004-0.001\r\n\t\t\t\tc0.686-0.113,1.294-0.458,1.74-0.953l0,0L29,41.818V57c0,1.657,1.343,3,3,3s3-1.343,3-3V41.818l3.77,4.189l0,0\r\n\t\t\t\tc0.446,0.495,1.055,0.841,1.742,0.953c0.001,0,0.001,0,0.002,0c0.044,0.007,0.088,0.013,0.132,0.018\r\n\t\t\t\tc0.011,0.001,0.023,0.003,0.034,0.004c0.033,0.003,0.067,0.006,0.1,0.008c0.021,0.002,0.042,0.004,0.063,0.005\r\n\t\t\t\tc0.02,0.001,0.04,0.001,0.06,0.002C40.935,46.999,40.967,47,41,47c1.657,0,3-1.343,3-3c0-0.001,0-0.001,0-0.002\r\n\t\t\t\tC44,43.904,43.995,43.811,43.986,43.719z M53.387,19.656C50.048,11.086,41.753,5,32,5c-9.752,0-18.048,6.086-21.387,14.655\r\n\t\t\t\tC4.47,21.532,0,27.243,0,34c0,8.284,6.716,15,15,15c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3c-4.971,0-9-4.029-9-9\r\n\t\t\t\tc0-2.68,1.178-5.08,3.037-6.728c0.192-0.17,0.392-0.331,0.597-0.485c0.013-0.01,0.027-0.02,0.04-0.03\r\n\t\t\t\tc0.194-0.144,0.395-0.278,0.6-0.406c0.032-0.02,0.064-0.039,0.096-0.058c0.192-0.116,0.388-0.225,0.588-0.326\r\n\t\t\t\tc0.055-0.028,0.111-0.054,0.167-0.08c0.184-0.089,0.371-0.172,0.561-0.248c0.083-0.033,0.168-0.062,0.252-0.092\r\n\t\t\t\tc0.171-0.062,0.343-0.123,0.519-0.175c0.116-0.034,0.236-0.062,0.354-0.091c0.152-0.038,0.303-0.079,0.457-0.109\r\n\t\t\t\tc0.162-0.032,0.328-0.053,0.493-0.075c0.119-0.016,0.236-0.039,0.356-0.05C14.408,25.017,14.702,25,15,25\r\n\t\t\t\tc0.094,0,0.185,0.011,0.278,0.014c0.091-0.513,0.206-1.017,0.342-1.512c0.033-0.121,0.078-0.237,0.114-0.357\r\n\t\t\t\tc0.112-0.375,0.227-0.749,0.364-1.112c0.041-0.11,0.092-0.215,0.135-0.324c0.148-0.37,0.3-0.737,0.473-1.093\r\n\t\t\t\tc0.042-0.086,0.09-0.168,0.133-0.253c0.188-0.372,0.384-0.741,0.599-1.097C20.406,14.318,25.808,11,32,11\r\n\t\t\t\tc6.192,0,11.595,3.318,14.562,8.266c0.214,0.357,0.41,0.725,0.598,1.097c0.043,0.085,0.091,0.167,0.133,0.253\r\n\t\t\t\tc0.173,0.356,0.325,0.724,0.473,1.093c0.043,0.109,0.094,0.214,0.135,0.324c0.137,0.363,0.252,0.737,0.364,1.112\r\n\t\t\t\tc0.036,0.12,0.081,0.236,0.114,0.357c0.136,0.495,0.251,0.999,0.342,1.512C48.815,25.011,48.906,25,49,25\r\n\t\t\t\tc0.298,0,0.592,0.016,0.882,0.045c0.12,0.012,0.237,0.034,0.356,0.05c0.165,0.023,0.331,0.043,0.493,0.075\r\n\t\t\t\tc0.155,0.03,0.306,0.07,0.457,0.109c0.118,0.029,0.238,0.057,0.354,0.091c0.176,0.052,0.348,0.113,0.519,0.175\r\n\t\t\t\tc0.084,0.031,0.169,0.059,0.252,0.092c0.191,0.076,0.377,0.16,0.561,0.248c0.056,0.026,0.112,0.053,0.167,0.08\r\n\t\t\t\tc0.201,0.101,0.397,0.21,0.588,0.326c0.032,0.019,0.064,0.039,0.096,0.058c0.206,0.128,0.406,0.263,0.601,0.406\r\n\t\t\t\tc0.013,0.01,0.027,0.02,0.04,0.03c0.206,0.154,0.405,0.315,0.597,0.485C56.822,28.921,58,31.32,58,34c0,4.971-4.029,9-9,9\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3c8.284,0,15-6.716,15-15C64,27.243,59.53,21.532,53.387,19.656z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M43.986,43.719c0-0.002,0-0.004,0-0.006c-0.063-0.658-0.338-1.255-0.756-1.719\r\n\t\t\t\tl0,0l-0.008-0.009c-0.001-0.001-0.002-0.002-0.003-0.003l-8.99-9.989l-0.008,0.007c-0.549-0.61-1.336-1-2.222-1\r\n\t\t\t\tc-0.885,0-1.673,0.391-2.222,1l-0.008-0.007l-8.988,9.987c-0.002,0.002-0.004,0.005-0.006,0.007l-0.006,0.006l0,0\r\n\t\t\t\tC20.292,42.525,20,43.228,20,44c0,0.518,0.131,1.005,0.362,1.43C20.87,46.365,21.861,47,23,47c0.033,0,0.066-0.002,0.099-0.003\r\n\t\t\t\tc0.019-0.001,0.038-0.001,0.057-0.002c0.022-0.001,0.043-0.003,0.065-0.005c0.033-0.002,0.066-0.005,0.098-0.008\r\n\t\t\t\tc0.012-0.001,0.024-0.003,0.036-0.005c0.044-0.005,0.087-0.011,0.13-0.018c0.001,0,0.003,0,0.004-0.001\r\n\t\t\t\tc0.686-0.113,1.294-0.458,1.74-0.953l0,0L29,41.818V57c0,1.657,1.343,3,3,3s3-1.343,3-3V41.818l3.77,4.189l0,0\r\n\t\t\t\tc0.446,0.495,1.055,0.841,1.742,0.953c0.001,0,0.001,0,0.002,0c0.044,0.007,0.088,0.013,0.132,0.018\r\n\t\t\t\tc0.011,0.001,0.023,0.003,0.034,0.004c0.033,0.003,0.067,0.006,0.1,0.008c0.021,0.002,0.042,0.004,0.063,0.005\r\n\t\t\t\tc0.02,0.001,0.04,0.001,0.06,0.002C40.935,46.999,40.967,47,41,47c1.657,0,3-1.343,3-3c0-0.001,0-0.001,0-0.002\r\n\t\t\t\tC44,43.904,43.995,43.811,43.986,43.719z M53.387,19.656C50.048,11.086,41.753,5,32,5c-9.752,0-18.048,6.086-21.387,14.655\r\n\t\t\t\tC4.47,21.532,0,27.243,0,34c0,8.284,6.716,15,15,15c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3c-4.971,0-9-4.029-9-9\r\n\t\t\t\tc0-2.68,1.178-5.08,3.037-6.728c0.192-0.17,0.392-0.331,0.597-0.485c0.013-0.01,0.027-0.02,0.04-0.03\r\n\t\t\t\tc0.194-0.144,0.395-0.278,0.6-0.406c0.032-0.02,0.064-0.039,0.096-0.058c0.192-0.116,0.388-0.225,0.588-0.326\r\n\t\t\t\tc0.055-0.028,0.111-0.054,0.167-0.08c0.184-0.089,0.371-0.172,0.561-0.248c0.083-0.033,0.168-0.062,0.252-0.092\r\n\t\t\t\tc0.171-0.062,0.343-0.123,0.519-0.175c0.116-0.034,0.236-0.062,0.354-0.091c0.152-0.038,0.303-0.079,0.457-0.109\r\n\t\t\t\tc0.162-0.032,0.328-0.053,0.493-0.075c0.119-0.016,0.236-0.039,0.356-0.05C14.408,25.017,14.702,25,15,25\r\n\t\t\t\tc0.094,0,0.185,0.011,0.278,0.014c0.091-0.513,0.206-1.017,0.342-1.512c0.033-0.121,0.078-0.237,0.114-0.357\r\n\t\t\t\tc0.112-0.375,0.227-0.749,0.364-1.112c0.041-0.11,0.092-0.215,0.135-0.324c0.148-0.37,0.3-0.737,0.473-1.093\r\n\t\t\t\tc0.042-0.086,0.09-0.168,0.133-0.253c0.188-0.372,0.384-0.741,0.599-1.097C20.406,14.318,25.808,11,32,11\r\n\t\t\t\tc6.192,0,11.595,3.318,14.562,8.266c0.214,0.357,0.41,0.725,0.598,1.097c0.043,0.085,0.091,0.167,0.133,0.253\r\n\t\t\t\tc0.173,0.356,0.325,0.724,0.473,1.093c0.043,0.109,0.094,0.214,0.135,0.324c0.137,0.363,0.252,0.737,0.364,1.112\r\n\t\t\t\tc0.036,0.12,0.081,0.236,0.114,0.357c0.136,0.495,0.251,0.999,0.342,1.512C48.815,25.011,48.906,25,49,25\r\n\t\t\t\tc0.298,0,0.592,0.016,0.882,0.045c0.12,0.012,0.237,0.034,0.356,0.05c0.165,0.023,0.331,0.043,0.493,0.075\r\n\t\t\t\tc0.155,0.03,0.306,0.07,0.457,0.109c0.118,0.029,0.238,0.057,0.354,0.091c0.176,0.052,0.348,0.113,0.519,0.175\r\n\t\t\t\tc0.084,0.031,0.169,0.059,0.252,0.092c0.191,0.076,0.377,0.16,0.561,0.248c0.056,0.026,0.112,0.053,0.167,0.08\r\n\t\t\t\tc0.201,0.101,0.397,0.21,0.588,0.326c0.032,0.019,0.064,0.039,0.096,0.058c0.206,0.128,0.406,0.263,0.601,0.406\r\n\t\t\t\tc0.013,0.01,0.027,0.02,0.04,0.03c0.206,0.154,0.405,0.315,0.597,0.485C56.822,28.921,58,31.32,58,34c0,4.971-4.029,9-9,9\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3c8.284,0,15-6.716,15-15C64,27.243,59.53,21.532,53.387,19.656z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CLOUD__x2F__DOWNLOAD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CLOUD__x2F__DOWNLOAD","display":"inline"},"children":[{"name":"g","attribs":{"id":"CLOUD__x2F__DOWNLOAD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M41,44c-0.885,0-1.681,0.384-2.23,0.993h0L35,49.182V34c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v15.182l-3.77-4.189l0,0C24.681,44.384,23.885,44,23,44c-1.657,0-3,1.343-3,3c0,0.096,0.005,0.192,0.014,0.286\r\n\t\t\t\tc0,0,0,0,0,0c0.062,0.659,0.337,1.256,0.756,1.721l0,0l9,10L29.778,59C30.327,59.609,31.115,60,32,60s1.673-0.391,2.222-1.001\r\n\t\t\t\tl0.008,0.007l9-10l0,0c0.419-0.465,0.694-1.061,0.756-1.719c0-0.002,0-0.004,0-0.006C43.995,47.189,44,47.096,44,47.001V47\r\n\t\t\t\tc0-0.104-0.005-0.206-0.015-0.307C43.831,45.181,42.553,44,41,44z M53.387,19.656C50.048,11.086,41.753,5,32,5\r\n\t\t\t\tc-9.752,0-18.048,6.086-21.387,14.655C4.47,21.532,0,27.243,0,34c0,8.284,6.716,15,15,15c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-4.97,0-9-4.029-9-9c0-2.68,1.178-5.08,3.037-6.728c0.192-0.17,0.392-0.331,0.597-0.485\r\n\t\t\t\tc0.013-0.01,0.027-0.02,0.04-0.03c0.194-0.144,0.395-0.278,0.601-0.406c0.032-0.02,0.064-0.039,0.096-0.058\r\n\t\t\t\tc0.192-0.116,0.388-0.225,0.588-0.326c0.055-0.028,0.111-0.054,0.167-0.08c0.184-0.089,0.371-0.172,0.561-0.248\r\n\t\t\t\tc0.083-0.033,0.168-0.062,0.252-0.092c0.171-0.062,0.343-0.123,0.519-0.175c0.116-0.034,0.236-0.062,0.354-0.091\r\n\t\t\t\tc0.152-0.038,0.303-0.079,0.457-0.109c0.162-0.032,0.328-0.053,0.493-0.075c0.119-0.016,0.236-0.039,0.356-0.05\r\n\t\t\t\tC14.408,25.017,14.702,25,15,25c0.094,0,0.185,0.011,0.278,0.014c0.091-0.513,0.206-1.017,0.342-1.512\r\n\t\t\t\tc0.033-0.121,0.078-0.237,0.114-0.357c0.112-0.375,0.227-0.749,0.364-1.112c0.041-0.11,0.092-0.215,0.135-0.324\r\n\t\t\t\tc0.148-0.37,0.3-0.737,0.473-1.093c0.042-0.086,0.09-0.168,0.133-0.253c0.188-0.372,0.384-0.741,0.598-1.097\r\n\t\t\t\tC20.406,14.318,25.808,11,32,11s11.595,3.318,14.562,8.266c0.214,0.357,0.41,0.725,0.599,1.097\r\n\t\t\t\tc0.043,0.085,0.091,0.167,0.133,0.253c0.173,0.356,0.325,0.724,0.473,1.093c0.043,0.109,0.094,0.214,0.135,0.324\r\n\t\t\t\tc0.137,0.363,0.252,0.737,0.364,1.112c0.036,0.12,0.081,0.236,0.114,0.357c0.136,0.495,0.251,0.999,0.342,1.512\r\n\t\t\t\tC48.815,25.011,48.906,25,49,25c0.298,0,0.592,0.016,0.882,0.045c0.12,0.012,0.237,0.034,0.356,0.05\r\n\t\t\t\tc0.165,0.023,0.331,0.043,0.493,0.075c0.155,0.03,0.306,0.07,0.457,0.109c0.118,0.029,0.238,0.057,0.354,0.091\r\n\t\t\t\tc0.176,0.052,0.348,0.113,0.519,0.175c0.084,0.031,0.169,0.059,0.252,0.092c0.191,0.076,0.377,0.16,0.561,0.248\r\n\t\t\t\tc0.056,0.026,0.112,0.053,0.167,0.08c0.201,0.101,0.397,0.21,0.589,0.326c0.032,0.019,0.064,0.039,0.096,0.058\r\n\t\t\t\tc0.206,0.128,0.406,0.263,0.601,0.406c0.013,0.01,0.027,0.02,0.04,0.03c0.206,0.154,0.406,0.315,0.597,0.485\r\n\t\t\t\tC56.822,28.921,58,31.32,58,34c0,4.971-4.03,9-9,9c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3c8.284,0,15-6.716,15-15\r\n\t\t\t\tC64,27.243,59.53,21.532,53.387,19.656z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M41,44c-0.885,0-1.681,0.384-2.23,0.993h0L35,49.182V34c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v15.182l-3.77-4.189l0,0C24.681,44.384,23.885,44,23,44c-1.657,0-3,1.343-3,3c0,0.096,0.005,0.192,0.014,0.286\r\n\t\t\t\tc0,0,0,0,0,0c0.062,0.659,0.337,1.256,0.756,1.721l0,0l9,10L29.778,59C30.327,59.609,31.115,60,32,60s1.673-0.391,2.222-1.001\r\n\t\t\t\tl0.008,0.007l9-10l0,0c0.419-0.465,0.694-1.061,0.756-1.719c0-0.002,0-0.004,0-0.006C43.995,47.189,44,47.096,44,47.001V47\r\n\t\t\t\tc0-0.104-0.005-0.206-0.015-0.307C43.831,45.181,42.553,44,41,44z M53.387,19.656C50.048,11.086,41.753,5,32,5\r\n\t\t\t\tc-9.752,0-18.048,6.086-21.387,14.655C4.47,21.532,0,27.243,0,34c0,8.284,6.716,15,15,15c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-4.97,0-9-4.029-9-9c0-2.68,1.178-5.08,3.037-6.728c0.192-0.17,0.392-0.331,0.597-0.485\r\n\t\t\t\tc0.013-0.01,0.027-0.02,0.04-0.03c0.194-0.144,0.395-0.278,0.601-0.406c0.032-0.02,0.064-0.039,0.096-0.058\r\n\t\t\t\tc0.192-0.116,0.388-0.225,0.588-0.326c0.055-0.028,0.111-0.054,0.167-0.08c0.184-0.089,0.371-0.172,0.561-0.248\r\n\t\t\t\tc0.083-0.033,0.168-0.062,0.252-0.092c0.171-0.062,0.343-0.123,0.519-0.175c0.116-0.034,0.236-0.062,0.354-0.091\r\n\t\t\t\tc0.152-0.038,0.303-0.079,0.457-0.109c0.162-0.032,0.328-0.053,0.493-0.075c0.119-0.016,0.236-0.039,0.356-0.05\r\n\t\t\t\tC14.408,25.017,14.702,25,15,25c0.094,0,0.185,0.011,0.278,0.014c0.091-0.513,0.206-1.017,0.342-1.512\r\n\t\t\t\tc0.033-0.121,0.078-0.237,0.114-0.357c0.112-0.375,0.227-0.749,0.364-1.112c0.041-0.11,0.092-0.215,0.135-0.324\r\n\t\t\t\tc0.148-0.37,0.3-0.737,0.473-1.093c0.042-0.086,0.09-0.168,0.133-0.253c0.188-0.372,0.384-0.741,0.598-1.097\r\n\t\t\t\tC20.406,14.318,25.808,11,32,11s11.595,3.318,14.562,8.266c0.214,0.357,0.41,0.725,0.599,1.097\r\n\t\t\t\tc0.043,0.085,0.091,0.167,0.133,0.253c0.173,0.356,0.325,0.724,0.473,1.093c0.043,0.109,0.094,0.214,0.135,0.324\r\n\t\t\t\tc0.137,0.363,0.252,0.737,0.364,1.112c0.036,0.12,0.081,0.236,0.114,0.357c0.136,0.495,0.251,0.999,0.342,1.512\r\n\t\t\t\tC48.815,25.011,48.906,25,49,25c0.298,0,0.592,0.016,0.882,0.045c0.12,0.012,0.237,0.034,0.356,0.05\r\n\t\t\t\tc0.165,0.023,0.331,0.043,0.493,0.075c0.155,0.03,0.306,0.07,0.457,0.109c0.118,0.029,0.238,0.057,0.354,0.091\r\n\t\t\t\tc0.176,0.052,0.348,0.113,0.519,0.175c0.084,0.031,0.169,0.059,0.252,0.092c0.191,0.076,0.377,0.16,0.561,0.248\r\n\t\t\t\tc0.056,0.026,0.112,0.053,0.167,0.08c0.201,0.101,0.397,0.21,0.589,0.326c0.032,0.019,0.064,0.039,0.096,0.058\r\n\t\t\t\tc0.206,0.128,0.406,0.263,0.601,0.406c0.013,0.01,0.027,0.02,0.04,0.03c0.206,0.154,0.406,0.315,0.597,0.485\r\n\t\t\t\tC56.822,28.921,58,31.32,58,34c0,4.971-4.03,9-9,9c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3c8.284,0,15-6.716,15-15\r\n\t\t\t\tC64,27.243,59.53,21.532,53.387,19.656z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CLOUD__x2F__FAIL_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CLOUD__x2F__FAIL","display":"inline"},"children":[{"name":"g","attribs":{"id":"CLOUD__x2F__FAIL","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M43,39c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L32,42.758\r\n\t\t\t\tl-5.879-5.879C25.578,36.336,24.829,36,24,36c-1.657,0-3,1.343-3,3c0,0.829,0.336,1.578,0.879,2.121L27.757,47l-5.879,5.879\r\n\t\t\t\tC21.336,53.422,21,54.172,21,55c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.878L32,51.243l5.879,5.879\r\n\t\t\t\tC38.422,57.664,39.172,58,40,58c1.657,0,3-1.343,3-3c0-0.829-0.336-1.579-0.879-2.121L36.243,47l5.879-5.879\r\n\t\t\t\tC42.664,40.579,43,39.829,43,39z M53.387,20.656C50.048,12.086,41.752,6,32,6c-9.752,0-18.048,6.086-21.387,14.655\r\n\t\t\t\tC4.47,22.532,0,28.243,0,35c0,8.284,6.716,15,15,15c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3c-4.971,0-9-4.029-9-9\r\n\t\t\t\tc0-2.68,1.178-5.08,3.037-6.728c0.192-0.17,0.392-0.331,0.597-0.485c0.013-0.01,0.027-0.02,0.04-0.03\r\n\t\t\t\tc0.194-0.144,0.395-0.278,0.6-0.406c0.032-0.02,0.064-0.039,0.096-0.058c0.192-0.116,0.388-0.225,0.589-0.326\r\n\t\t\t\tc0.055-0.028,0.111-0.054,0.167-0.08c0.184-0.089,0.371-0.172,0.561-0.248c0.083-0.033,0.168-0.062,0.252-0.092\r\n\t\t\t\tc0.171-0.062,0.343-0.123,0.519-0.175c0.116-0.034,0.236-0.062,0.354-0.091c0.152-0.038,0.303-0.079,0.457-0.109\r\n\t\t\t\tc0.162-0.032,0.328-0.053,0.493-0.075c0.119-0.016,0.236-0.039,0.356-0.05C14.408,26.017,14.702,26,15,26\r\n\t\t\t\tc0.094,0,0.185,0.011,0.278,0.014c0.091-0.513,0.206-1.017,0.342-1.512c0.033-0.121,0.078-0.237,0.114-0.357\r\n\t\t\t\tc0.112-0.375,0.227-0.749,0.364-1.112c0.041-0.11,0.092-0.215,0.135-0.324c0.148-0.37,0.3-0.737,0.473-1.093\r\n\t\t\t\tc0.042-0.086,0.09-0.168,0.133-0.253c0.188-0.372,0.384-0.741,0.599-1.097C20.406,15.318,25.808,12,32,12\r\n\t\t\t\tc6.192,0,11.594,3.318,14.562,8.266c0.214,0.357,0.41,0.725,0.599,1.097c0.043,0.085,0.091,0.167,0.133,0.253\r\n\t\t\t\tc0.173,0.356,0.325,0.724,0.473,1.093c0.043,0.109,0.094,0.214,0.135,0.324c0.137,0.363,0.252,0.737,0.364,1.112\r\n\t\t\t\tc0.036,0.12,0.081,0.236,0.114,0.357c0.136,0.495,0.251,0.999,0.342,1.512C48.815,26.011,48.906,26,49,26\r\n\t\t\t\tc0.298,0,0.592,0.016,0.882,0.045c0.12,0.012,0.237,0.034,0.356,0.05c0.165,0.023,0.331,0.043,0.493,0.075\r\n\t\t\t\tc0.155,0.03,0.306,0.07,0.457,0.109c0.118,0.029,0.238,0.057,0.354,0.091c0.176,0.052,0.348,0.113,0.519,0.175\r\n\t\t\t\tc0.084,0.031,0.169,0.059,0.252,0.092c0.191,0.076,0.377,0.16,0.561,0.248c0.056,0.026,0.112,0.053,0.167,0.08\r\n\t\t\t\tc0.201,0.101,0.397,0.21,0.588,0.326c0.032,0.019,0.064,0.039,0.096,0.058c0.206,0.128,0.406,0.263,0.601,0.406\r\n\t\t\t\tc0.013,0.01,0.027,0.02,0.04,0.03c0.206,0.154,0.406,0.315,0.597,0.485C56.822,29.921,58,32.32,58,35c0,4.971-4.029,9-9,9\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3c8.284,0,15-6.716,15-15C64,28.243,59.53,22.532,53.387,20.656z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M43,39c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L32,42.758\r\n\t\t\t\tl-5.879-5.879C25.578,36.336,24.829,36,24,36c-1.657,0-3,1.343-3,3c0,0.829,0.336,1.578,0.879,2.121L27.757,47l-5.879,5.879\r\n\t\t\t\tC21.336,53.422,21,54.172,21,55c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.878L32,51.243l5.879,5.879\r\n\t\t\t\tC38.422,57.664,39.172,58,40,58c1.657,0,3-1.343,3-3c0-0.829-0.336-1.579-0.879-2.121L36.243,47l5.879-5.879\r\n\t\t\t\tC42.664,40.579,43,39.829,43,39z M53.387,20.656C50.048,12.086,41.752,6,32,6c-9.752,0-18.048,6.086-21.387,14.655\r\n\t\t\t\tC4.47,22.532,0,28.243,0,35c0,8.284,6.716,15,15,15c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3c-4.971,0-9-4.029-9-9\r\n\t\t\t\tc0-2.68,1.178-5.08,3.037-6.728c0.192-0.17,0.392-0.331,0.597-0.485c0.013-0.01,0.027-0.02,0.04-0.03\r\n\t\t\t\tc0.194-0.144,0.395-0.278,0.6-0.406c0.032-0.02,0.064-0.039,0.096-0.058c0.192-0.116,0.388-0.225,0.589-0.326\r\n\t\t\t\tc0.055-0.028,0.111-0.054,0.167-0.08c0.184-0.089,0.371-0.172,0.561-0.248c0.083-0.033,0.168-0.062,0.252-0.092\r\n\t\t\t\tc0.171-0.062,0.343-0.123,0.519-0.175c0.116-0.034,0.236-0.062,0.354-0.091c0.152-0.038,0.303-0.079,0.457-0.109\r\n\t\t\t\tc0.162-0.032,0.328-0.053,0.493-0.075c0.119-0.016,0.236-0.039,0.356-0.05C14.408,26.017,14.702,26,15,26\r\n\t\t\t\tc0.094,0,0.185,0.011,0.278,0.014c0.091-0.513,0.206-1.017,0.342-1.512c0.033-0.121,0.078-0.237,0.114-0.357\r\n\t\t\t\tc0.112-0.375,0.227-0.749,0.364-1.112c0.041-0.11,0.092-0.215,0.135-0.324c0.148-0.37,0.3-0.737,0.473-1.093\r\n\t\t\t\tc0.042-0.086,0.09-0.168,0.133-0.253c0.188-0.372,0.384-0.741,0.599-1.097C20.406,15.318,25.808,12,32,12\r\n\t\t\t\tc6.192,0,11.594,3.318,14.562,8.266c0.214,0.357,0.41,0.725,0.599,1.097c0.043,0.085,0.091,0.167,0.133,0.253\r\n\t\t\t\tc0.173,0.356,0.325,0.724,0.473,1.093c0.043,0.109,0.094,0.214,0.135,0.324c0.137,0.363,0.252,0.737,0.364,1.112\r\n\t\t\t\tc0.036,0.12,0.081,0.236,0.114,0.357c0.136,0.495,0.251,0.999,0.342,1.512C48.815,26.011,48.906,26,49,26\r\n\t\t\t\tc0.298,0,0.592,0.016,0.882,0.045c0.12,0.012,0.237,0.034,0.356,0.05c0.165,0.023,0.331,0.043,0.493,0.075\r\n\t\t\t\tc0.155,0.03,0.306,0.07,0.457,0.109c0.118,0.029,0.238,0.057,0.354,0.091c0.176,0.052,0.348,0.113,0.519,0.175\r\n\t\t\t\tc0.084,0.031,0.169,0.059,0.252,0.092c0.191,0.076,0.377,0.16,0.561,0.248c0.056,0.026,0.112,0.053,0.167,0.08\r\n\t\t\t\tc0.201,0.101,0.397,0.21,0.588,0.326c0.032,0.019,0.064,0.039,0.096,0.058c0.206,0.128,0.406,0.263,0.601,0.406\r\n\t\t\t\tc0.013,0.01,0.027,0.02,0.04,0.03c0.206,0.154,0.406,0.315,0.597,0.485C56.822,29.921,58,32.32,58,35c0,4.971-4.029,9-9,9\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3c8.284,0,15-6.716,15-15C64,28.243,59.53,22.532,53.387,20.656z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CLOUD__x2F__OK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CLOUD__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{"id":"CLOUD__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M43,36c-1.039,0-1.954,0.528-2.493,1.33l-8.936,12.998l-5.45-5.45\r\n\t\t\t\tC25.578,44.336,24.828,44,24,44c-1.657,0-3,1.343-3,3c0,0.829,0.336,1.579,0.879,2.121l8,8C30.422,57.664,31.172,58,32,58\r\n\t\t\t\tc1.039,0,1.954-0.528,2.493-1.33l10.969-15.954C45.801,40.23,46,39.638,46,39C46,37.343,44.657,36,43,36z M53.387,20.656\r\n\t\t\t\tC50.048,12.086,41.752,6,32,6c-9.753,0-18.048,6.086-21.387,14.655C4.47,22.532,0,28.243,0,35c0,8.284,6.716,15,15,15\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3c-4.971,0-9-4.029-9-9c0-2.68,1.178-5.08,3.037-6.728\r\n\t\t\t\tc0.192-0.17,0.392-0.331,0.597-0.485c0.013-0.01,0.027-0.02,0.04-0.03c0.194-0.144,0.395-0.278,0.601-0.406\r\n\t\t\t\tc0.032-0.02,0.064-0.039,0.096-0.058c0.192-0.116,0.388-0.225,0.588-0.326c0.055-0.028,0.111-0.054,0.167-0.08\r\n\t\t\t\tc0.184-0.089,0.371-0.172,0.561-0.248c0.083-0.033,0.168-0.062,0.252-0.092c0.171-0.062,0.343-0.123,0.519-0.175\r\n\t\t\t\tc0.116-0.034,0.236-0.062,0.354-0.091c0.152-0.038,0.303-0.079,0.457-0.109c0.162-0.032,0.328-0.053,0.493-0.075\r\n\t\t\t\tc0.119-0.016,0.236-0.039,0.356-0.05C14.408,26.017,14.702,26,15,26c0.094,0,0.185,0.011,0.278,0.014\r\n\t\t\t\tc0.091-0.513,0.206-1.017,0.342-1.512c0.033-0.121,0.078-0.237,0.114-0.357c0.112-0.375,0.227-0.749,0.364-1.112\r\n\t\t\t\tc0.041-0.11,0.092-0.215,0.135-0.324c0.148-0.37,0.3-0.737,0.473-1.093c0.041-0.086,0.09-0.168,0.133-0.253\r\n\t\t\t\tc0.188-0.372,0.384-0.741,0.598-1.097C20.406,15.318,25.808,12,32,12c6.192,0,11.594,3.318,14.562,8.266\r\n\t\t\t\tc0.214,0.357,0.41,0.725,0.599,1.097c0.043,0.085,0.091,0.167,0.133,0.253c0.172,0.356,0.325,0.724,0.473,1.093\r\n\t\t\t\tc0.043,0.109,0.094,0.214,0.135,0.324c0.137,0.363,0.252,0.737,0.364,1.112c0.036,0.12,0.081,0.236,0.114,0.357\r\n\t\t\t\tc0.136,0.495,0.251,0.999,0.342,1.512C48.815,26.011,48.906,26,49,26c0.298,0,0.592,0.016,0.882,0.045\r\n\t\t\t\tc0.12,0.012,0.237,0.034,0.356,0.05c0.165,0.023,0.331,0.043,0.493,0.075c0.155,0.03,0.306,0.07,0.457,0.109\r\n\t\t\t\tc0.118,0.029,0.238,0.057,0.354,0.091c0.176,0.052,0.348,0.113,0.519,0.175c0.084,0.031,0.169,0.059,0.252,0.092\r\n\t\t\t\tc0.191,0.076,0.377,0.16,0.561,0.248c0.056,0.026,0.112,0.053,0.167,0.08c0.2,0.101,0.397,0.21,0.588,0.326\r\n\t\t\t\tc0.032,0.019,0.064,0.039,0.096,0.058c0.206,0.128,0.406,0.263,0.601,0.406c0.013,0.01,0.027,0.02,0.04,0.03\r\n\t\t\t\tc0.206,0.154,0.405,0.315,0.597,0.485C56.822,29.921,58,32.32,58,35c0,4.971-4.029,9-9,9c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,1.657,1.343,3,3,3c8.284,0,15-6.716,15-15C64,28.243,59.53,22.532,53.387,20.656z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M43,36c-1.039,0-1.954,0.528-2.493,1.33l-8.936,12.998l-5.45-5.45\r\n\t\t\t\tC25.578,44.336,24.828,44,24,44c-1.657,0-3,1.343-3,3c0,0.829,0.336,1.579,0.879,2.121l8,8C30.422,57.664,31.172,58,32,58\r\n\t\t\t\tc1.039,0,1.954-0.528,2.493-1.33l10.969-15.954C45.801,40.23,46,39.638,46,39C46,37.343,44.657,36,43,36z M53.387,20.656\r\n\t\t\t\tC50.048,12.086,41.752,6,32,6c-9.753,0-18.048,6.086-21.387,14.655C4.47,22.532,0,28.243,0,35c0,8.284,6.716,15,15,15\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3c-4.971,0-9-4.029-9-9c0-2.68,1.178-5.08,3.037-6.728\r\n\t\t\t\tc0.192-0.17,0.392-0.331,0.597-0.485c0.013-0.01,0.027-0.02,0.04-0.03c0.194-0.144,0.395-0.278,0.601-0.406\r\n\t\t\t\tc0.032-0.02,0.064-0.039,0.096-0.058c0.192-0.116,0.388-0.225,0.588-0.326c0.055-0.028,0.111-0.054,0.167-0.08\r\n\t\t\t\tc0.184-0.089,0.371-0.172,0.561-0.248c0.083-0.033,0.168-0.062,0.252-0.092c0.171-0.062,0.343-0.123,0.519-0.175\r\n\t\t\t\tc0.116-0.034,0.236-0.062,0.354-0.091c0.152-0.038,0.303-0.079,0.457-0.109c0.162-0.032,0.328-0.053,0.493-0.075\r\n\t\t\t\tc0.119-0.016,0.236-0.039,0.356-0.05C14.408,26.017,14.702,26,15,26c0.094,0,0.185,0.011,0.278,0.014\r\n\t\t\t\tc0.091-0.513,0.206-1.017,0.342-1.512c0.033-0.121,0.078-0.237,0.114-0.357c0.112-0.375,0.227-0.749,0.364-1.112\r\n\t\t\t\tc0.041-0.11,0.092-0.215,0.135-0.324c0.148-0.37,0.3-0.737,0.473-1.093c0.041-0.086,0.09-0.168,0.133-0.253\r\n\t\t\t\tc0.188-0.372,0.384-0.741,0.598-1.097C20.406,15.318,25.808,12,32,12c6.192,0,11.594,3.318,14.562,8.266\r\n\t\t\t\tc0.214,0.357,0.41,0.725,0.599,1.097c0.043,0.085,0.091,0.167,0.133,0.253c0.172,0.356,0.325,0.724,0.473,1.093\r\n\t\t\t\tc0.043,0.109,0.094,0.214,0.135,0.324c0.137,0.363,0.252,0.737,0.364,1.112c0.036,0.12,0.081,0.236,0.114,0.357\r\n\t\t\t\tc0.136,0.495,0.251,0.999,0.342,1.512C48.815,26.011,48.906,26,49,26c0.298,0,0.592,0.016,0.882,0.045\r\n\t\t\t\tc0.12,0.012,0.237,0.034,0.356,0.05c0.165,0.023,0.331,0.043,0.493,0.075c0.155,0.03,0.306,0.07,0.457,0.109\r\n\t\t\t\tc0.118,0.029,0.238,0.057,0.354,0.091c0.176,0.052,0.348,0.113,0.519,0.175c0.084,0.031,0.169,0.059,0.252,0.092\r\n\t\t\t\tc0.191,0.076,0.377,0.16,0.561,0.248c0.056,0.026,0.112,0.053,0.167,0.08c0.2,0.101,0.397,0.21,0.588,0.326\r\n\t\t\t\tc0.032,0.019,0.064,0.039,0.096,0.058c0.206,0.128,0.406,0.263,0.601,0.406c0.013,0.01,0.027,0.02,0.04,0.03\r\n\t\t\t\tc0.206,0.154,0.405,0.315,0.597,0.485C56.822,29.921,58,32.32,58,35c0,4.971-4.029,9-9,9c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,1.657,1.343,3,3,3c8.284,0,15-6.716,15-15C64,28.243,59.53,22.532,53.387,20.656z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CLOUD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CLOUD","display":"inline"},"children":[{"name":"g","attribs":{"id":"CLOUD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M53.387,24.656C50.048,16.086,41.753,10,32,10s-18.048,6.086-21.387,14.655\r\n\t\t\t\tC4.47,26.532,0,32.243,0,39c0,8.284,6.716,15,15,15h34c8.284,0,15-6.716,15-15C64,32.243,59.53,26.532,53.387,24.656z M49,48H15\r\n\t\t\t\tc-4.97,0-9-4.029-9-9c0-2.68,1.178-5.08,3.037-6.728c0.192-0.17,0.392-0.331,0.597-0.485c0.013-0.01,0.027-0.02,0.04-0.03\r\n\t\t\t\tc0.194-0.144,0.395-0.278,0.601-0.406c0.032-0.02,0.064-0.039,0.096-0.058c0.192-0.116,0.388-0.225,0.588-0.326\r\n\t\t\t\tc0.055-0.028,0.111-0.054,0.167-0.08c0.184-0.089,0.371-0.172,0.561-0.248c0.083-0.033,0.168-0.062,0.252-0.092\r\n\t\t\t\tc0.171-0.062,0.343-0.123,0.519-0.175c0.116-0.034,0.236-0.062,0.354-0.091c0.152-0.038,0.303-0.079,0.457-0.109\r\n\t\t\t\tc0.162-0.032,0.328-0.053,0.493-0.075c0.119-0.016,0.236-0.039,0.356-0.05C14.408,30.017,14.702,30,15,30\r\n\t\t\t\tc0.094,0,0.185,0.011,0.278,0.014c0.091-0.513,0.206-1.017,0.342-1.512c0.033-0.121,0.078-0.237,0.114-0.357\r\n\t\t\t\tc0.112-0.375,0.227-0.749,0.364-1.112c0.041-0.11,0.092-0.215,0.135-0.324c0.148-0.37,0.3-0.737,0.473-1.093\r\n\t\t\t\tc0.042-0.086,0.09-0.168,0.133-0.253c0.188-0.372,0.384-0.741,0.598-1.097C20.406,19.318,25.808,16,32,16\r\n\t\t\t\ts11.595,3.318,14.562,8.266c0.214,0.357,0.41,0.725,0.599,1.097c0.043,0.085,0.091,0.167,0.133,0.253\r\n\t\t\t\tc0.173,0.356,0.325,0.724,0.473,1.093c0.043,0.109,0.094,0.214,0.135,0.324c0.137,0.363,0.252,0.737,0.364,1.112\r\n\t\t\t\tc0.036,0.12,0.081,0.236,0.114,0.357c0.136,0.495,0.251,0.999,0.342,1.512C48.815,30.011,48.906,30,49,30\r\n\t\t\t\tc0.298,0,0.592,0.016,0.882,0.045c0.12,0.012,0.237,0.034,0.356,0.05c0.165,0.023,0.331,0.043,0.493,0.075\r\n\t\t\t\tc0.155,0.03,0.306,0.07,0.457,0.109c0.118,0.029,0.238,0.057,0.354,0.091c0.176,0.052,0.348,0.113,0.519,0.175\r\n\t\t\t\tc0.084,0.031,0.169,0.059,0.252,0.092c0.191,0.076,0.377,0.16,0.561,0.248c0.056,0.026,0.112,0.053,0.167,0.08\r\n\t\t\t\tc0.201,0.101,0.397,0.21,0.588,0.326c0.032,0.019,0.064,0.039,0.096,0.058c0.206,0.128,0.406,0.263,0.601,0.406\r\n\t\t\t\tc0.013,0.01,0.027,0.02,0.04,0.03c0.206,0.154,0.406,0.315,0.597,0.485C56.822,33.921,58,36.32,58,39C58,43.971,53.971,48,49,48z\r\n\t\t\t\t"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M53.387,24.656C50.048,16.086,41.753,10,32,10s-18.048,6.086-21.387,14.655\r\n\t\t\t\tC4.47,26.532,0,32.243,0,39c0,8.284,6.716,15,15,15h34c8.284,0,15-6.716,15-15C64,32.243,59.53,26.532,53.387,24.656z M49,48H15\r\n\t\t\t\tc-4.97,0-9-4.029-9-9c0-2.68,1.178-5.08,3.037-6.728c0.192-0.17,0.392-0.331,0.597-0.485c0.013-0.01,0.027-0.02,0.04-0.03\r\n\t\t\t\tc0.194-0.144,0.395-0.278,0.601-0.406c0.032-0.02,0.064-0.039,0.096-0.058c0.192-0.116,0.388-0.225,0.588-0.326\r\n\t\t\t\tc0.055-0.028,0.111-0.054,0.167-0.08c0.184-0.089,0.371-0.172,0.561-0.248c0.083-0.033,0.168-0.062,0.252-0.092\r\n\t\t\t\tc0.171-0.062,0.343-0.123,0.519-0.175c0.116-0.034,0.236-0.062,0.354-0.091c0.152-0.038,0.303-0.079,0.457-0.109\r\n\t\t\t\tc0.162-0.032,0.328-0.053,0.493-0.075c0.119-0.016,0.236-0.039,0.356-0.05C14.408,30.017,14.702,30,15,30\r\n\t\t\t\tc0.094,0,0.185,0.011,0.278,0.014c0.091-0.513,0.206-1.017,0.342-1.512c0.033-0.121,0.078-0.237,0.114-0.357\r\n\t\t\t\tc0.112-0.375,0.227-0.749,0.364-1.112c0.041-0.11,0.092-0.215,0.135-0.324c0.148-0.37,0.3-0.737,0.473-1.093\r\n\t\t\t\tc0.042-0.086,0.09-0.168,0.133-0.253c0.188-0.372,0.384-0.741,0.598-1.097C20.406,19.318,25.808,16,32,16\r\n\t\t\t\ts11.595,3.318,14.562,8.266c0.214,0.357,0.41,0.725,0.599,1.097c0.043,0.085,0.091,0.167,0.133,0.253\r\n\t\t\t\tc0.173,0.356,0.325,0.724,0.473,1.093c0.043,0.109,0.094,0.214,0.135,0.324c0.137,0.363,0.252,0.737,0.364,1.112\r\n\t\t\t\tc0.036,0.12,0.081,0.236,0.114,0.357c0.136,0.495,0.251,0.999,0.342,1.512C48.815,30.011,48.906,30,49,30\r\n\t\t\t\tc0.298,0,0.592,0.016,0.882,0.045c0.12,0.012,0.237,0.034,0.356,0.05c0.165,0.023,0.331,0.043,0.493,0.075\r\n\t\t\t\tc0.155,0.03,0.306,0.07,0.457,0.109c0.118,0.029,0.238,0.057,0.354,0.091c0.176,0.052,0.348,0.113,0.519,0.175\r\n\t\t\t\tc0.084,0.031,0.169,0.059,0.252,0.092c0.191,0.076,0.377,0.16,0.561,0.248c0.056,0.026,0.112,0.053,0.167,0.08\r\n\t\t\t\tc0.201,0.101,0.397,0.21,0.588,0.326c0.032,0.019,0.064,0.039,0.096,0.058c0.206,0.128,0.406,0.263,0.601,0.406\r\n\t\t\t\tc0.013,0.01,0.027,0.02,0.04,0.03c0.206,0.154,0.406,0.315,0.597,0.485C56.822,33.921,58,36.32,58,39C58,43.971,53.971,48,49,48z\r\n\t\t\t\t"},"children":[]}]}]}]}]}]}]}]};exports.shopping_cart_add=shopping_cart_add; \ No newline at end of file diff --git a/dist/ikons/shopping_cart_delete.js b/dist/ikons/shopping_cart_delete.js new file mode 100644 index 000000000..9957b1fce --- /dev/null +++ b/dist/ikons/shopping_cart_delete.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.shopping_cart_delete = void 0; +var shopping_cart_delete = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "SHOPPING_CART__x2F__DELETE_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "SHOPPING_CART__x2F__DELETE" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "SHOPPING_CART__x2F__DELETE" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M56,49H27.779l-1.498-4.279L52.2,42.993v-0.001c1.132-0.074,2.092-0.776,2.536-1.762l0,0l4.83-10.733\r\n\t\t\t\tc-2.246,1.427-4.866,2.303-7.686,2.457l-1.877,4.171l-25.779,1.719L18.679,23h17.495C35.423,21.146,35,19.124,35,17H16.578\r\n\t\t\t\tl-1.747-4.991l-0.011,0.004C14.411,10.844,13.309,10,12,10H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h6.872l11.55,33H16\r\n\t\t\t\tc-3.314,0-6,2.686-6,6s2.686,6,6,6s6-2.686,6-6h28c0,3.314,2.686,6,6,6s6-2.686,6-6S59.314,49,56,49z M51,30\r\n\t\t\t\tc7.18,0,13-5.82,13-13S58.18,4,51,4S38,9.82,38,17S43.82,30,51,30z M44.879,15.121C44.336,14.578,44,13.828,44,13\r\n\t\t\t\tc0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879L51,12.757l1.879-1.879C53.422,10.336,54.172,10,55,10c1.657,0,3,1.343,3,3\r\n\t\t\t\tc0,0.828-0.336,1.578-0.879,2.121L55.243,17l1.879,1.879C57.664,19.422,58,20.172,58,21c0,1.657-1.343,3-3,3\r\n\t\t\t\tc-0.828,0-1.578-0.336-2.121-0.879L51,21.243l-1.879,1.879C48.579,23.664,47.828,24,47,24c-1.657,0-3-1.343-3-3\r\n\t\t\t\tc0-0.828,0.336-1.578,0.879-2.121L46.757,17L44.879,15.121z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M56,49H27.779l-1.498-4.279L52.2,42.993v-0.001c1.132-0.074,2.092-0.776,2.536-1.762l0,0l4.83-10.733\r\n\t\t\t\tc-2.246,1.427-4.866,2.303-7.686,2.457l-1.877,4.171l-25.779,1.719L18.679,23h17.495C35.423,21.146,35,19.124,35,17H16.578\r\n\t\t\t\tl-1.747-4.991l-0.011,0.004C14.411,10.844,13.309,10,12,10H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h6.872l11.55,33H16\r\n\t\t\t\tc-3.314,0-6,2.686-6,6s2.686,6,6,6s6-2.686,6-6h28c0,3.314,2.686,6,6,6s6-2.686,6-6S59.314,49,56,49z M51,30\r\n\t\t\t\tc7.18,0,13-5.82,13-13S58.18,4,51,4S38,9.82,38,17S43.82,30,51,30z M44.879,15.121C44.336,14.578,44,13.828,44,13\r\n\t\t\t\tc0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879L51,12.757l1.879-1.879C53.422,10.336,54.172,10,55,10c1.657,0,3,1.343,3,3\r\n\t\t\t\tc0,0.828-0.336,1.578-0.879,2.121L55.243,17l1.879,1.879C57.664,19.422,58,20.172,58,21c0,1.657-1.343,3-3,3\r\n\t\t\t\tc-0.828,0-1.578-0.336-2.121-0.879L51,21.243l-1.879,1.879C48.579,23.664,47.828,24,47,24c-1.657,0-3-1.343-3-3\r\n\t\t\t\tc0-0.828,0.336-1.578,0.879-2.121L46.757,17L44.879,15.121z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.shopping_cart_delete = shopping_cart_delete; \ No newline at end of file diff --git a/dist/ikons/shopping_cart_ok.js b/dist/ikons/shopping_cart_ok.js new file mode 100644 index 000000000..2a7fe2f0f --- /dev/null +++ b/dist/ikons/shopping_cart_ok.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.shopping_cart_ok = void 0; +var shopping_cart_ok = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "SHOPPING_CART__x2F__OK_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "SHOPPING_CART__x2F__OK" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "SHOPPING_CART__x2F__OK" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M51,30c7.18,0,13-5.82,13-13S58.18,4,51,4S38,9.82,38,17S43.82,30,51,30z M45,15c0.828,0,1.578,0.336,2.121,0.879\r\n\t\t\t\tL49,17.757l5.879-5.879C55.422,11.336,56.172,11,57,11c1.657,0,3,1.343,3,3c0,0.828-0.336,1.578-0.879,2.121l-8,8\r\n\t\t\t\tC50.578,24.664,49.828,25,49,25s-1.578-0.336-2.121-0.879l-4-4C42.336,19.578,42,18.828,42,18C42,16.343,43.343,15,45,15z M56,49\r\n\t\t\t\tH27.778l-1.497-4.279L52.2,42.993v-0.001c1.132-0.074,2.092-0.776,2.536-1.762l0,0l4.83-10.733\r\n\t\t\t\tc-2.246,1.427-4.866,2.303-7.686,2.457l-1.877,4.171l-25.779,1.719L18.679,23h17.495C35.423,21.146,35,19.124,35,17H16.578\r\n\t\t\t\tl-1.747-4.991l-0.011,0.004C14.411,10.844,13.309,10,12,10H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h6.872l11.55,33H16\r\n\t\t\t\tc-3.314,0-6,2.686-6,6s2.686,6,6,6s6-2.686,6-6h28c0,3.314,2.686,6,6,6s6-2.686,6-6S59.314,49,56,49z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M51,30c7.18,0,13-5.82,13-13S58.18,4,51,4S38,9.82,38,17S43.82,30,51,30z M45,15c0.828,0,1.578,0.336,2.121,0.879\r\n\t\t\t\tL49,17.757l5.879-5.879C55.422,11.336,56.172,11,57,11c1.657,0,3,1.343,3,3c0,0.828-0.336,1.578-0.879,2.121l-8,8\r\n\t\t\t\tC50.578,24.664,49.828,25,49,25s-1.578-0.336-2.121-0.879l-4-4C42.336,19.578,42,18.828,42,18C42,16.343,43.343,15,45,15z M56,49\r\n\t\t\t\tH27.778l-1.497-4.279L52.2,42.993v-0.001c1.132-0.074,2.092-0.776,2.536-1.762l0,0l4.83-10.733\r\n\t\t\t\tc-2.246,1.427-4.866,2.303-7.686,2.457l-1.877,4.171l-25.779,1.719L18.679,23h17.495C35.423,21.146,35,19.124,35,17H16.578\r\n\t\t\t\tl-1.747-4.991l-0.011,0.004C14.411,10.844,13.309,10,12,10H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h6.872l11.55,33H16\r\n\t\t\t\tc-3.314,0-6,2.686-6,6s2.686,6,6,6s6-2.686,6-6h28c0,3.314,2.686,6,6,6s6-2.686,6-6S59.314,49,56,49z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.shopping_cart_ok = shopping_cart_ok; \ No newline at end of file diff --git a/dist/ikons/shopping_cart_remove.js b/dist/ikons/shopping_cart_remove.js new file mode 100644 index 000000000..6aaedbf15 --- /dev/null +++ b/dist/ikons/shopping_cart_remove.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.shopping_cart_remove = void 0; +var shopping_cart_remove = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "SHOPPING_CART__x2F__REMOVE_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "SHOPPING_CART__x2F__REMOVE" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "SHOPPING_CART__x2F__REMOVE" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M51,30c7.18,0,13-5.82,13-13S58.18,4,51,4S38,9.82,38,17S43.82,30,51,30z M45,14h12c1.657,0,3,1.343,3,3s-1.343,3-3,3H45\r\n\t\t\t\tc-1.657,0-3-1.343-3-3S43.343,14,45,14z M56,49H27.778l-1.497-4.279L52.2,42.993v-0.001c1.132-0.074,2.092-0.776,2.536-1.762l0,0\r\n\t\t\t\tl4.83-10.733c-2.246,1.427-4.866,2.303-7.686,2.457l-1.877,4.171l-25.779,1.719L18.678,23h17.495C35.423,21.146,35,19.124,35,17\r\n\t\t\t\tH16.578l-1.747-4.991l-0.011,0.004C14.411,10.844,13.309,10,12,10H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h6.872l11.55,33H16\r\n\t\t\t\tc-3.314,0-6,2.686-6,6s2.686,6,6,6s6-2.686,6-6h28c0,3.314,2.686,6,6,6s6-2.686,6-6S59.314,49,56,49z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M51,30c7.18,0,13-5.82,13-13S58.18,4,51,4S38,9.82,38,17S43.82,30,51,30z M45,14h12c1.657,0,3,1.343,3,3s-1.343,3-3,3H45\r\n\t\t\t\tc-1.657,0-3-1.343-3-3S43.343,14,45,14z M56,49H27.778l-1.497-4.279L52.2,42.993v-0.001c1.132-0.074,2.092-0.776,2.536-1.762l0,0\r\n\t\t\t\tl4.83-10.733c-2.246,1.427-4.866,2.303-7.686,2.457l-1.877,4.171l-25.779,1.719L18.678,23h17.495C35.423,21.146,35,19.124,35,17\r\n\t\t\t\tH16.578l-1.747-4.991l-0.011,0.004C14.411,10.844,13.309,10,12,10H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h6.872l11.55,33H16\r\n\t\t\t\tc-3.314,0-6,2.686-6,6s2.686,6,6,6s6-2.686,6-6h28c0,3.314,2.686,6,6,6s6-2.686,6-6S59.314,49,56,49z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.shopping_cart_remove = shopping_cart_remove; \ No newline at end of file diff --git a/dist/ikons/shuffle.js b/dist/ikons/shuffle.js new file mode 100644 index 000000000..fecfe8aa6 --- /dev/null +++ b/dist/ikons/shuffle.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.shuffle = void 0; +var shuffle = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "SHUFFLE_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "SHUFFLE" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "SHUFFLE" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M3,19h8.757l10.879,10.879l4.243-4.243L15.121,13.879C14.578,13.336,13.828,13,13,13H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\tS1.343,19,3,19z M52,19v0.005h1.773l-1.879,1.879c-0.543,0.543-0.879,1.293-0.879,2.121c0,1.657,1.342,3,3,3\r\n\t\t\t\tc0.827,0,1.577-0.336,2.12-0.879l7-7c0.544-0.543,0.88-1.293,0.88-2.121s-0.336-1.578-0.88-2.121l-7-7\r\n\t\t\t\tc-0.543-0.543-1.293-0.879-2.12-0.879c-1.658,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L53.768,13H45\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L11.757,45H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h10c0.828,0,1.578-0.336,2.121-0.879L46.243,19\r\n\t\t\t\tH52z M56.137,38.874c-0.543-0.543-1.293-0.879-2.121-0.879c-1.656,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l1.879,1.879H52\r\n\t\t\t\tV45h-5.757l-10.88-10.879l-4.242,4.242l11.757,11.758C43.422,50.664,44.172,51,45,51h8.768l-1.873,1.874\r\n\t\t\t\tc-0.543,0.543-0.879,1.293-0.879,2.121c0,1.657,1.344,3,3,3c0.828,0,1.578-0.336,2.121-0.879l7-7\r\n\t\t\t\tc0.543-0.543,0.879-1.293,0.879-2.121s-0.336-1.578-0.879-2.121L56.137,38.874z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M3,19h8.757l10.879,10.879l4.243-4.243L15.121,13.879C14.578,13.336,13.828,13,13,13H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\tS1.343,19,3,19z M52,19v0.005h1.773l-1.879,1.879c-0.543,0.543-0.879,1.293-0.879,2.121c0,1.657,1.342,3,3,3\r\n\t\t\t\tc0.827,0,1.577-0.336,2.12-0.879l7-7c0.544-0.543,0.88-1.293,0.88-2.121s-0.336-1.578-0.88-2.121l-7-7\r\n\t\t\t\tc-0.543-0.543-1.293-0.879-2.12-0.879c-1.658,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L53.768,13H45\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L11.757,45H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h10c0.828,0,1.578-0.336,2.121-0.879L46.243,19\r\n\t\t\t\tH52z M56.137,38.874c-0.543-0.543-1.293-0.879-2.121-0.879c-1.656,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l1.879,1.879H52\r\n\t\t\t\tV45h-5.757l-10.88-10.879l-4.242,4.242l11.757,11.758C43.422,50.664,44.172,51,45,51h8.768l-1.873,1.874\r\n\t\t\t\tc-0.543,0.543-0.879,1.293-0.879,2.121c0,1.657,1.344,3,3,3c0.828,0,1.578-0.336,2.121-0.879l7-7\r\n\t\t\t\tc0.543-0.543,0.879-1.293,0.879-2.121s-0.336-1.578-0.879-2.121L56.137,38.874z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.shuffle = shuffle; \ No newline at end of file diff --git a/dist/ikons/skip_next.js b/dist/ikons/skip_next.js new file mode 100644 index 000000000..808b6b909 --- /dev/null +++ b/dist/ikons/skip_next.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.skip_next = void 0; +var skip_next = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "SKIP__x2F__NEXT_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "SKIP__x2F__NEXT" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "SKIP__x2F__NEXT" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M41,19c-1.657,0-3,1.343-3,3v5.837l-13.41-8.381l0,0C24.129,19.168,23.584,19,23,19c-1.657,0-3,1.343-3,3v20\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.584,0,1.129-0.167,1.59-0.456l0,0L38,36.163V42c0,1.657,1.343,3,3,3s3-1.343,3-3V22\r\n\t\t\t\tC44,20.343,42.657,19,41,19z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M41,19c-1.657,0-3,1.343-3,3v5.837l-13.41-8.381l0,0C24.129,19.168,23.584,19,23,19c-1.657,0-3,1.343-3,3v20\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.584,0,1.129-0.167,1.59-0.456l0,0L38,36.163V42c0,1.657,1.343,3,3,3s3-1.343,3-3V22\r\n\t\t\t\tC44,20.343,42.657,19,41,19z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.skip_next = skip_next; \ No newline at end of file diff --git a/dist/ikons/skip_previous.js b/dist/ikons/skip_previous.js new file mode 100644 index 000000000..6afdd4eec --- /dev/null +++ b/dist/ikons/skip_previous.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.skip_previous = void 0; +var skip_previous = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "SKIP__x2F__PREVIOUS_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "SKIP__x2F__PREVIOUS" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "SKIP__x2F__PREVIOUS" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M41,19c-0.584,0-1.129,0.168-1.59,0.456l0,0L26,27.837V22c0-1.657-1.343-3-3-3s-3,1.343-3,3v20c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3v-5.837l13.41,8.381l0,0C39.871,44.833,40.416,45,41,45c1.657,0,3-1.343,3-3V22C44,20.343,42.657,19,41,19z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M41,19c-0.584,0-1.129,0.168-1.59,0.456l0,0L26,27.837V22c0-1.657-1.343-3-3-3s-3,1.343-3,3v20c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3v-5.837l13.41,8.381l0,0C39.871,44.833,40.416,45,41,45c1.657,0,3-1.343,3-3V22C44,20.343,42.657,19,41,19z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.skip_previous = skip_previous; \ No newline at end of file diff --git a/dist/ikons/skype.js b/dist/ikons/skype.js new file mode 100644 index 000000000..a3c49b192 --- /dev/null +++ b/dist/ikons/skype.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.skype = void 0; +var skype = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "skype_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "skype" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "skype" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M59.539,36.936C59.825,35.33,60,33.688,60,32C60,16.536,47.464,4,32,4c-1.687,0-3.33,0.175-4.934,0.461\r\n\t\t\t\tC24.191,1.704,20.298,0,16,0C7.164,0,0,7.164,0,16c0,4.298,1.703,8.191,4.461,11.066C4.175,28.67,4,30.313,4,32\r\n\t\t\t\tc0,15.464,12.536,28,28,28c1.688,0,3.33-0.175,4.936-0.461C39.809,62.297,43.702,64,48,64c8.837,0,16-7.163,16-16\r\n\t\t\t\tC64,43.703,62.297,39.809,59.539,36.936z M44.331,43.208c-1.104,1.506-2.74,2.7-4.856,3.548\r\n\t\t\t\tc-2.096,0.838-4.608,1.266-7.469,1.266c-3.433,0-6.312-0.582-8.558-1.73c-1.606-0.834-2.93-1.963-3.936-3.363\r\n\t\t\t\tc-1.014-1.408-1.529-2.807-1.529-4.158c0-0.842,0.335-1.572,0.995-2.17c0.655-0.595,1.494-0.895,2.495-0.895\r\n\t\t\t\tc0.822,0,1.531,0.236,2.106,0.703c0.55,0.451,1.022,1.115,1.401,1.973c0.425,0.936,0.885,1.725,1.372,2.342\r\n\t\t\t\tc0.471,0.601,1.144,1.102,2.006,1.494c0.866,0.395,2.035,0.596,3.472,0.596c1.975,0,3.596-0.406,4.814-1.207\r\n\t\t\t\tc1.19-0.781,1.768-1.722,1.768-2.871c0-0.908-0.303-1.621-0.922-2.184c-0.652-0.586-1.51-1.039-2.551-1.355\r\n\t\t\t\tc-1.086-0.323-2.562-0.678-4.385-1.047c-2.48-0.508-4.587-1.117-6.264-1.801c-1.715-0.703-3.096-1.677-4.106-2.894\r\n\t\t\t\tc-1.026-1.238-1.546-2.787-1.546-4.613c0-1.738,0.546-3.306,1.623-4.656c1.069-1.343,2.63-2.388,4.64-3.101\r\n\t\t\t\tc1.984-0.707,4.343-1.065,7.013-1.065c2.134,0,4.01,0.24,5.577,0.707c1.577,0.471,2.903,1.109,3.948,1.895\r\n\t\t\t\tc1.051,0.791,1.832,1.635,2.324,2.515c0.493,0.886,0.746,1.77,0.746,2.624c0,0.823-0.33,1.571-0.98,2.223\r\n\t\t\t\tc-0.655,0.655-1.481,0.987-2.454,0.987c-0.886,0-1.578-0.209-2.06-0.616c-0.447-0.383-0.912-0.977-1.426-1.83\r\n\t\t\t\tc-0.596-1.09-1.318-1.949-2.145-2.556c-0.805-0.59-2.147-0.886-3.991-0.886c-1.713,0-3.107,0.33-4.141,0.985\r\n\t\t\t\tc-0.998,0.628-1.483,1.349-1.483,2.205c0,0.525,0.157,0.963,0.479,1.339c0.339,0.403,0.819,0.749,1.424,1.043\r\n\t\t\t\tc0.627,0.304,1.276,0.546,1.923,0.717c0.664,0.179,1.779,0.441,3.308,0.781c1.935,0.401,3.712,0.848,5.284,1.333\r\n\t\t\t\tc1.593,0.491,2.967,1.093,4.09,1.798c1.145,0.717,2.051,1.637,2.694,2.737c0.646,1.105,0.972,2.47,0.972,4.054\r\n\t\t\t\tC46.003,39.968,45.439,41.698,44.331,43.208z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M59.539,36.936C59.825,35.33,60,33.688,60,32C60,16.536,47.464,4,32,4c-1.687,0-3.33,0.175-4.934,0.461\r\n\t\t\t\tC24.191,1.704,20.298,0,16,0C7.164,0,0,7.164,0,16c0,4.298,1.703,8.191,4.461,11.066C4.175,28.67,4,30.313,4,32\r\n\t\t\t\tc0,15.464,12.536,28,28,28c1.688,0,3.33-0.175,4.936-0.461C39.809,62.297,43.702,64,48,64c8.837,0,16-7.163,16-16\r\n\t\t\t\tC64,43.703,62.297,39.809,59.539,36.936z M44.331,43.208c-1.104,1.506-2.74,2.7-4.856,3.548\r\n\t\t\t\tc-2.096,0.838-4.608,1.266-7.469,1.266c-3.433,0-6.312-0.582-8.558-1.73c-1.606-0.834-2.93-1.963-3.936-3.363\r\n\t\t\t\tc-1.014-1.408-1.529-2.807-1.529-4.158c0-0.842,0.335-1.572,0.995-2.17c0.655-0.595,1.494-0.895,2.495-0.895\r\n\t\t\t\tc0.822,0,1.531,0.236,2.106,0.703c0.55,0.451,1.022,1.115,1.401,1.973c0.425,0.936,0.885,1.725,1.372,2.342\r\n\t\t\t\tc0.471,0.601,1.144,1.102,2.006,1.494c0.866,0.395,2.035,0.596,3.472,0.596c1.975,0,3.596-0.406,4.814-1.207\r\n\t\t\t\tc1.19-0.781,1.768-1.722,1.768-2.871c0-0.908-0.303-1.621-0.922-2.184c-0.652-0.586-1.51-1.039-2.551-1.355\r\n\t\t\t\tc-1.086-0.323-2.562-0.678-4.385-1.047c-2.48-0.508-4.587-1.117-6.264-1.801c-1.715-0.703-3.096-1.677-4.106-2.894\r\n\t\t\t\tc-1.026-1.238-1.546-2.787-1.546-4.613c0-1.738,0.546-3.306,1.623-4.656c1.069-1.343,2.63-2.388,4.64-3.101\r\n\t\t\t\tc1.984-0.707,4.343-1.065,7.013-1.065c2.134,0,4.01,0.24,5.577,0.707c1.577,0.471,2.903,1.109,3.948,1.895\r\n\t\t\t\tc1.051,0.791,1.832,1.635,2.324,2.515c0.493,0.886,0.746,1.77,0.746,2.624c0,0.823-0.33,1.571-0.98,2.223\r\n\t\t\t\tc-0.655,0.655-1.481,0.987-2.454,0.987c-0.886,0-1.578-0.209-2.06-0.616c-0.447-0.383-0.912-0.977-1.426-1.83\r\n\t\t\t\tc-0.596-1.09-1.318-1.949-2.145-2.556c-0.805-0.59-2.147-0.886-3.991-0.886c-1.713,0-3.107,0.33-4.141,0.985\r\n\t\t\t\tc-0.998,0.628-1.483,1.349-1.483,2.205c0,0.525,0.157,0.963,0.479,1.339c0.339,0.403,0.819,0.749,1.424,1.043\r\n\t\t\t\tc0.627,0.304,1.276,0.546,1.923,0.717c0.664,0.179,1.779,0.441,3.308,0.781c1.935,0.401,3.712,0.848,5.284,1.333\r\n\t\t\t\tc1.593,0.491,2.967,1.093,4.09,1.798c1.145,0.717,2.051,1.637,2.694,2.737c0.646,1.105,0.972,2.47,0.972,4.054\r\n\t\t\t\tC46.003,39.968,45.439,41.698,44.331,43.208z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.skype = skype; \ No newline at end of file diff --git a/dist/ikons/slideshow.js b/dist/ikons/slideshow.js new file mode 100644 index 000000000..035e0766a --- /dev/null +++ b/dist/ikons/slideshow.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.slideshow = void 0; +var slideshow = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "SLIDESHOW_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "SLIDESHOW" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "SLIDESHOW" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,18c-1.657,0-3,1.343-3,3v22c0,1.657,1.343,3,3,3s3-1.343,3-3V21C15,19.343,13.657,18,12,18z M3,12\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v34c0,1.657,1.343,3,3,3s3-1.343,3-3V15C6,13.343,4.657,12,3,12z M52,18c-1.657,0-3,1.343-3,3v22\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3V21C55,19.343,53.657,18,52,18z M61,12c-1.657,0-3,1.343-3,3v34c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3V15C64,13.343,62.657,12,61,12z M43,18H21c-1.657,0-3,1.343-3,3v22c0,1.657,1.343,3,3,3h22c1.657,0,3-1.343,3-3V21\r\n\t\t\t\tC46,19.343,44.657,18,43,18z M40,40H24V24h16V40z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,18c-1.657,0-3,1.343-3,3v22c0,1.657,1.343,3,3,3s3-1.343,3-3V21C15,19.343,13.657,18,12,18z M3,12\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v34c0,1.657,1.343,3,3,3s3-1.343,3-3V15C6,13.343,4.657,12,3,12z M52,18c-1.657,0-3,1.343-3,3v22\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3V21C55,19.343,53.657,18,52,18z M61,12c-1.657,0-3,1.343-3,3v34c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3V15C64,13.343,62.657,12,61,12z M43,18H21c-1.657,0-3,1.343-3,3v22c0,1.657,1.343,3,3,3h22c1.657,0,3-1.343,3-3V21\r\n\t\t\t\tC46,19.343,44.657,18,43,18z M40,40H24V24h16V40z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.slideshow = slideshow; \ No newline at end of file diff --git a/dist/ikons/speech_1.js b/dist/ikons/speech_1.js new file mode 100644 index 000000000..38da53003 --- /dev/null +++ b/dist/ikons/speech_1.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.speech_1 = void 0; +var speech_1 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "SPEECH_1_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "SPEECH_1" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "SPEECH_1" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M61,3H3C1.343,3,0,4.343,0,6v43c0,1.657,1.343,3,3,3h4v6c0,0.207,0.021,0.409,0.061,0.604\r\n\t\t\t\tc0.028,0.137,0.076,0.265,0.122,0.394c0.02,0.056,0.03,0.116,0.053,0.17c0.048,0.115,0.115,0.219,0.177,0.326\r\n\t\t\t\tc0.035,0.06,0.061,0.126,0.1,0.184c0.098,0.146,0.212,0.278,0.333,0.404c0.012,0.012,0.021,0.028,0.033,0.04\r\n\t\t\t\tc0.534,0.533,1.271,0.865,2.084,0.875C9.976,60.997,9.987,61,10,61c0.828,0,1.578-0.336,2.121-0.879L20.243,52H61\r\n\t\t\t\tc1.657,0,3-1.343,3-3V6C64,4.343,62.657,3,61,3z M58,46H17.757L13,50.757V46H6V9h52V46z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M61,3H3C1.343,3,0,4.343,0,6v43c0,1.657,1.343,3,3,3h4v6c0,0.207,0.021,0.409,0.061,0.604\r\n\t\t\t\tc0.028,0.137,0.076,0.265,0.122,0.394c0.02,0.056,0.03,0.116,0.053,0.17c0.048,0.115,0.115,0.219,0.177,0.326\r\n\t\t\t\tc0.035,0.06,0.061,0.126,0.1,0.184c0.098,0.146,0.212,0.278,0.333,0.404c0.012,0.012,0.021,0.028,0.033,0.04\r\n\t\t\t\tc0.534,0.533,1.271,0.865,2.084,0.875C9.976,60.997,9.987,61,10,61c0.828,0,1.578-0.336,2.121-0.879L20.243,52H61\r\n\t\t\t\tc1.657,0,3-1.343,3-3V6C64,4.343,62.657,3,61,3z M58,46H17.757L13,50.757V46H6V9h52V46z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.speech_1 = speech_1; \ No newline at end of file diff --git a/dist/ikons/speech_2.js b/dist/ikons/speech_2.js new file mode 100644 index 000000000..e6d59bc90 --- /dev/null +++ b/dist/ikons/speech_2.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.speech_2 = void 0; +var speech_2 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "SPEECH_2_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "SPEECH_2" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "SPEECH_2" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M61,3H3C1.343,3,0,4.343,0,6v43c0,1.657,1.343,3,2.999,3H7v6c0,0.207,0.021,0.409,0.061,0.604\r\n\t\t\t\tc0.028,0.137,0.076,0.265,0.122,0.394c0.02,0.056,0.03,0.116,0.053,0.17c0.049,0.115,0.115,0.219,0.177,0.326\r\n\t\t\t\tc0.035,0.06,0.061,0.126,0.1,0.184c0.098,0.146,0.212,0.278,0.333,0.404c0.012,0.012,0.021,0.028,0.033,0.04\r\n\t\t\t\tc0.535,0.533,1.271,0.865,2.084,0.875C9.976,60.997,9.987,61,10,61c0.828,0,1.578-0.336,2.121-0.879L20.243,52H61\r\n\t\t\t\tc1.657,0,3-1.343,3-3V6C64,4.343,62.657,3,61,3z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M61,3H3C1.343,3,0,4.343,0,6v43c0,1.657,1.343,3,2.999,3H7v6c0,0.207,0.021,0.409,0.061,0.604\r\n\t\t\t\tc0.028,0.137,0.076,0.265,0.122,0.394c0.02,0.056,0.03,0.116,0.053,0.17c0.049,0.115,0.115,0.219,0.177,0.326\r\n\t\t\t\tc0.035,0.06,0.061,0.126,0.1,0.184c0.098,0.146,0.212,0.278,0.333,0.404c0.012,0.012,0.021,0.028,0.033,0.04\r\n\t\t\t\tc0.535,0.533,1.271,0.865,2.084,0.875C9.976,60.997,9.987,61,10,61c0.828,0,1.578-0.336,2.121-0.879L20.243,52H61\r\n\t\t\t\tc1.657,0,3-1.343,3-3V6C64,4.343,62.657,3,61,3z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.speech_2 = speech_2; \ No newline at end of file diff --git a/dist/ikons/speech_3.js b/dist/ikons/speech_3.js new file mode 100644 index 000000000..1fbc9f205 --- /dev/null +++ b/dist/ikons/speech_3.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.speech_3 = void 0; +var speech_3 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "SPEECH_3_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "SPEECH_3" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "SPEECH_3" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M61,3H3C1.343,3,0,4.343,0,6v43c0,1.657,1.343,2.999,2.999,3H7v6c0,0.207,0.021,0.409,0.061,0.604\r\n\t\t\t\tc0.028,0.137,0.076,0.265,0.122,0.394c0.02,0.056,0.03,0.116,0.053,0.17c0.049,0.115,0.115,0.219,0.177,0.326\r\n\t\t\t\tc0.035,0.06,0.061,0.126,0.1,0.184c0.098,0.146,0.212,0.278,0.333,0.404c0.012,0.012,0.021,0.028,0.033,0.04\r\n\t\t\t\tc0.535,0.533,1.271,0.865,2.084,0.875C9.976,60.997,9.987,61,10,61c0.828,0,1.578-0.336,2.121-0.879L20.243,52H61\r\n\t\t\t\tc1.657,0,3-1.343,3-3V6C64,4.343,62.657,3,61,3z M17,34c-3.314,0-6-2.686-6-6s2.686-6,6-6s6,2.686,6,6S20.314,34,17,34z M32,34\r\n\t\t\t\tc-3.314,0-6-2.686-6-6s2.686-6,6-6c3.314,0,6,2.686,6,6S35.314,34,32,34z M47,34c-3.314,0-6-2.686-6-6s2.686-6,6-6s6,2.686,6,6\r\n\t\t\t\tS50.314,34,47,34z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M61,3H3C1.343,3,0,4.343,0,6v43c0,1.657,1.343,2.999,2.999,3H7v6c0,0.207,0.021,0.409,0.061,0.604\r\n\t\t\t\tc0.028,0.137,0.076,0.265,0.122,0.394c0.02,0.056,0.03,0.116,0.053,0.17c0.049,0.115,0.115,0.219,0.177,0.326\r\n\t\t\t\tc0.035,0.06,0.061,0.126,0.1,0.184c0.098,0.146,0.212,0.278,0.333,0.404c0.012,0.012,0.021,0.028,0.033,0.04\r\n\t\t\t\tc0.535,0.533,1.271,0.865,2.084,0.875C9.976,60.997,9.987,61,10,61c0.828,0,1.578-0.336,2.121-0.879L20.243,52H61\r\n\t\t\t\tc1.657,0,3-1.343,3-3V6C64,4.343,62.657,3,61,3z M17,34c-3.314,0-6-2.686-6-6s2.686-6,6-6s6,2.686,6,6S20.314,34,17,34z M32,34\r\n\t\t\t\tc-3.314,0-6-2.686-6-6s2.686-6,6-6c3.314,0,6,2.686,6,6S35.314,34,32,34z M47,34c-3.314,0-6-2.686-6-6s2.686-6,6-6s6,2.686,6,6\r\n\t\t\t\tS50.314,34,47,34z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.speech_3 = speech_3; \ No newline at end of file diff --git a/dist/ikons/speech_4.js b/dist/ikons/speech_4.js new file mode 100644 index 000000000..f3d700c9d --- /dev/null +++ b/dist/ikons/speech_4.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.speech_4 = void 0; +var speech_4 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "SPEECH_4_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "SPEECH_4" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "SPEECH_4" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M51.841,47.327L45.516,41H19c-3.314,0-6-2.686-6-6V14H4c-1.657,0-3,1.343-3,3v34c0,1.656,1.341,2.998,2.996,3H7.5l0,0H8\r\n\t\t\t\tv6c0,0.207,0.021,0.409,0.061,0.605c0.028,0.136,0.076,0.264,0.122,0.393c0.02,0.057,0.03,0.116,0.053,0.17\r\n\t\t\t\tc0.048,0.115,0.115,0.219,0.177,0.326c0.035,0.061,0.061,0.126,0.1,0.184c0.098,0.146,0.212,0.278,0.333,0.404\r\n\t\t\t\tc0.012,0.012,0.021,0.027,0.033,0.04c0.534,0.535,1.271,0.864,2.084,0.875C10.976,62.996,10.987,63,11,63\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L21.243,54H22l0,0h3l0,0h6.9l0,0H53l0,0c1.657,0,3-1.343,3-3v-2\r\n\t\t\t\tc-1.613,0-3.072-0.645-4.15-1.682L51.841,47.327z M61,2H19c-1.657,0-3,1.343-3,3v30c0,1.657,1.343,3,3,3h27.757l7.121,7.121\r\n\t\t\t\tC54.422,45.664,55.172,46,56,46c0.014,0,0.025-0.004,0.037-0.004c0.812-0.01,1.55-0.34,2.084-0.875\r\n\t\t\t\tc0.012-0.012,0.021-0.028,0.033-0.04c0.121-0.126,0.234-0.259,0.332-0.404c0.039-0.057,0.065-0.122,0.101-0.184\r\n\t\t\t\tc0.062-0.107,0.128-0.211,0.177-0.326c0.023-0.054,0.033-0.114,0.053-0.17c0.047-0.129,0.095-0.257,0.123-0.394\r\n\t\t\t\tC58.979,43.409,59,43.207,59,43v-5h2c1.657,0,3-1.343,3-3V5C64,3.343,62.657,2,61,2z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M51.841,47.327L45.516,41H19c-3.314,0-6-2.686-6-6V14H4c-1.657,0-3,1.343-3,3v34c0,1.656,1.341,2.998,2.996,3H7.5l0,0H8\r\n\t\t\t\tv6c0,0.207,0.021,0.409,0.061,0.605c0.028,0.136,0.076,0.264,0.122,0.393c0.02,0.057,0.03,0.116,0.053,0.17\r\n\t\t\t\tc0.048,0.115,0.115,0.219,0.177,0.326c0.035,0.061,0.061,0.126,0.1,0.184c0.098,0.146,0.212,0.278,0.333,0.404\r\n\t\t\t\tc0.012,0.012,0.021,0.027,0.033,0.04c0.534,0.535,1.271,0.864,2.084,0.875C10.976,62.996,10.987,63,11,63\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L21.243,54H22l0,0h3l0,0h6.9l0,0H53l0,0c1.657,0,3-1.343,3-3v-2\r\n\t\t\t\tc-1.613,0-3.072-0.645-4.15-1.682L51.841,47.327z M61,2H19c-1.657,0-3,1.343-3,3v30c0,1.657,1.343,3,3,3h27.757l7.121,7.121\r\n\t\t\t\tC54.422,45.664,55.172,46,56,46c0.014,0,0.025-0.004,0.037-0.004c0.812-0.01,1.55-0.34,2.084-0.875\r\n\t\t\t\tc0.012-0.012,0.021-0.028,0.033-0.04c0.121-0.126,0.234-0.259,0.332-0.404c0.039-0.057,0.065-0.122,0.101-0.184\r\n\t\t\t\tc0.062-0.107,0.128-0.211,0.177-0.326c0.023-0.054,0.033-0.114,0.053-0.17c0.047-0.129,0.095-0.257,0.123-0.394\r\n\t\t\t\tC58.979,43.409,59,43.207,59,43v-5h2c1.657,0,3-1.343,3-3V5C64,3.343,62.657,2,61,2z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.speech_4 = speech_4; \ No newline at end of file diff --git a/dist/ikons/speech_bubble_1.js b/dist/ikons/speech_bubble_1.js new file mode 100644 index 000000000..bf0ff702e --- /dev/null +++ b/dist/ikons/speech_bubble_1.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.speech_bubble_1 = void 0; +var speech_bubble_1 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "SPEECH_BUBBLE_1_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "SPEECH_BUBBLE_1" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "SPEECH_BUBBLE_1" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M33.697,3.963c-18.83,0-33.738,10.996-33.738,24.56c0,7.681,4.609,14.54,12.274,19.043\r\n\t\t\t\tc1.736,1.02,1.934,8.675-7.831,13.297c0,0,13.825,2.18,22.591-8.902c2.167,0.311,4.409,0.975,6.704,0.975\r\n\t\t\t\tc18.83,0,30.307-10.848,30.307-24.412C64.004,14.959,52.527,3.963,33.697,3.963z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M33.697,3.963c-18.83,0-33.738,10.996-33.738,24.56c0,7.681,4.609,14.54,12.274,19.043\r\n\t\t\t\tc1.736,1.02,1.934,8.675-7.831,13.297c0,0,13.825,2.18,22.591-8.902c2.167,0.311,4.409,0.975,6.704,0.975\r\n\t\t\t\tc18.83,0,30.307-10.848,30.307-24.412C64.004,14.959,52.527,3.963,33.697,3.963z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.speech_bubble_1 = speech_bubble_1; \ No newline at end of file diff --git a/dist/ikons/speech_bubble_2.js b/dist/ikons/speech_bubble_2.js new file mode 100644 index 000000000..0890ee147 --- /dev/null +++ b/dist/ikons/speech_bubble_2.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.speech_bubble_2 = void 0; +var speech_bubble_2 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "SPEECH_BUBBLE_2_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "SPEECH_BUBBLE_2" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "SPEECH_BUBBLE_2" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M33.697,3.963c-18.83,0-33.738,10.996-33.738,24.56c0,7.681,4.609,14.54,12.274,19.043\r\n\t\t\t\tc1.736,1.02,1.934,8.675-7.831,13.297c0,0,13.825,2.18,22.591-8.902c2.167,0.311,4.409,0.975,6.704,0.975\r\n\t\t\t\tc18.83,0,30.307-10.848,30.307-24.412C64.004,14.959,52.527,3.963,33.697,3.963z M17,35c-3.314,0-6-2.686-6-6s2.686-6,6-6\r\n\t\t\t\ts6,2.686,6,6S20.314,35,17,35z M32,35c-3.314,0-6-2.686-6-6s2.686-6,6-6c3.314,0,6,2.686,6,6S35.314,35,32,35z M47,35\r\n\t\t\t\tc-3.314,0-6-2.686-6-6s2.686-6,6-6s6,2.686,6,6S50.314,35,47,35z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M33.697,3.963c-18.83,0-33.738,10.996-33.738,24.56c0,7.681,4.609,14.54,12.274,19.043\r\n\t\t\t\tc1.736,1.02,1.934,8.675-7.831,13.297c0,0,13.825,2.18,22.591-8.902c2.167,0.311,4.409,0.975,6.704,0.975\r\n\t\t\t\tc18.83,0,30.307-10.848,30.307-24.412C64.004,14.959,52.527,3.963,33.697,3.963z M17,35c-3.314,0-6-2.686-6-6s2.686-6,6-6\r\n\t\t\t\ts6,2.686,6,6S20.314,35,17,35z M32,35c-3.314,0-6-2.686-6-6s2.686-6,6-6c3.314,0,6,2.686,6,6S35.314,35,32,35z M47,35\r\n\t\t\t\tc-3.314,0-6-2.686-6-6s2.686-6,6-6s6,2.686,6,6S50.314,35,47,35z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.speech_bubble_2 = speech_bubble_2; \ No newline at end of file diff --git a/dist/ikons/speech_bubbles.js b/dist/ikons/speech_bubbles.js new file mode 100644 index 000000000..6624405fd --- /dev/null +++ b/dist/ikons/speech_bubbles.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.speech_bubbles = void 0; +var speech_bubbles = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "SPEECH_BUBBLES_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "SPEECH_BUBBLES" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "SPEECH_BUBBLES" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M46.568,34.581c0,0.005,0,0.01,0,0.015c-1.301,0.2-2.629,0.53-3.984,0.478c-12.036-0.75-19.873-8.212-20.379-17.122\r\n\t\t\t\tc-0.068-2.09,0.307-4.107,1.045-5.986C9.787,14.332-0.04,23.094-0.04,33.57c0,6.962,4.177,13.177,11.123,17.258\r\n\t\t\t\tc1.573,0.924,1.752,7.861-7.097,12.05c0,0,12.529,1.976,20.473-8.067c1.964,0.282,3.996,0.883,6.075,0.883\r\n\t\t\t\tc14.557,0,24.237-7.162,26.776-16.896c-2.531-0.059-6.918-0.737-10.39-4.308L46.568,34.581z M56.721,27.814\r\n\t\t\t\tc4.549-2.673,7.285-6.744,7.285-11.304c0-8.052-8.85-14.579-20.027-14.579c-11.179,0-17.993,6.527-17.993,14.579\r\n\t\t\t\tc0,8.052,6.813,14.492,17.993,14.492c1.361,0,2.692-0.394,3.979-0.579c5.204,6.578,13.411,5.284,13.411,5.284\r\n\t\t\t\tC55.573,32.964,55.689,28.419,56.721,27.814z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M46.568,34.581c0,0.005,0,0.01,0,0.015c-1.301,0.2-2.629,0.53-3.984,0.478c-12.036-0.75-19.873-8.212-20.379-17.122\r\n\t\t\t\tc-0.068-2.09,0.307-4.107,1.045-5.986C9.787,14.332-0.04,23.094-0.04,33.57c0,6.962,4.177,13.177,11.123,17.258\r\n\t\t\t\tc1.573,0.924,1.752,7.861-7.097,12.05c0,0,12.529,1.976,20.473-8.067c1.964,0.282,3.996,0.883,6.075,0.883\r\n\t\t\t\tc14.557,0,24.237-7.162,26.776-16.896c-2.531-0.059-6.918-0.737-10.39-4.308L46.568,34.581z M56.721,27.814\r\n\t\t\t\tc4.549-2.673,7.285-6.744,7.285-11.304c0-8.052-8.85-14.579-20.027-14.579c-11.179,0-17.993,6.527-17.993,14.579\r\n\t\t\t\tc0,8.052,6.813,14.492,17.993,14.492c1.361,0,2.692-0.394,3.979-0.579c5.204,6.578,13.411,5.284,13.411,5.284\r\n\t\t\t\tC55.573,32.964,55.689,28.419,56.721,27.814z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.speech_bubbles = speech_bubbles; \ No newline at end of file diff --git a/dist/ikons/spotify.js b/dist/ikons/spotify.js new file mode 100644 index 000000000..06e6bb044 --- /dev/null +++ b/dist/ikons/spotify.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.spotify = void 0; +var spotify = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "spotify_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "spotify" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "spotify" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M26.671,55.675c-4.217,0-7.496,1.354-10.156,4.239c4.795,2.869,9.491,4.079,15.486,4.079\r\n\t\t\t\tc3.087,0,4.405-0.132,7.229-0.948C36.949,58.527,32.591,55.675,26.671,55.675z M32.001,0.008\r\n\t\t\t\tc-17.67,0-31.993,14.323-31.993,31.993c0,8.224,3.103,15.72,8.202,21.388c4.778-4.399,11.291-7.104,18.462-7.104\r\n\t\t\t\tc9.749,0,18.284,4.995,22.893,12.458c8.69-5.721,14.43-15.561,14.43-26.742C63.992,14.331,49.669,0.008,32.001,0.008z\r\n\t\t\t\t M46.704,44.438c-1.112,0.906-2.201,0.064-2.201,0.064c-10.883-8.335-27.994-3.798-27.994-3.754l-0.256,0.072\r\n\t\t\t\tc-1.149,0-1.937-1.215-1.937-2.362c0,0-0.069-1.319,1.788-1.937c0.713-0.131,18.112-3.926,30.539,4.408\r\n\t\t\t\tc0.922,0.727,0.953,1.59,0.953,1.59C47.594,43.668,47.336,43.923,46.704,44.438z M49.37,35.657c-0.479,0-0.927-0.138-1.308-0.37\r\n\t\t\t\th-0.002c-13.899-8.339-29.991-4.409-32.001-3.857l-1.028,0.202c-1.388,0-2.403-1.126-2.403-2.515c0-1.163,0.824-2.138,1.91-2.426\r\n\t\t\t\tc1.087-0.24,19.256-6.003,35.915,3.523h0.008c0.912,0.428,1.419,1.6,1.419,2.593C51.88,34.195,50.758,35.657,49.37,35.657z\r\n\t\t\t\t M53.583,26.042c0,0-0.853-0.014-1.71-0.531c-15.635-9.777-37.295-4.184-37.513-4.126l-0.008-0.005\r\n\t\t\t\tc-0.244,0.064-0.511,0.101-0.774,0.101c-1.655,0-2.962-1.341-2.962-2.996c0-1.434,0.727-2.631,2.358-2.926\r\n\t\t\t\tc1.087-0.259,24.236-6.181,42.042,4.852c0.934,0.507,1.565,1.497,1.565,2.635C56.581,24.7,55.236,26.042,53.583,26.042z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M26.671,55.675c-4.217,0-7.496,1.354-10.156,4.239c4.795,2.869,9.491,4.079,15.486,4.079\r\n\t\t\t\tc3.087,0,4.405-0.132,7.229-0.948C36.949,58.527,32.591,55.675,26.671,55.675z M32.001,0.008\r\n\t\t\t\tc-17.67,0-31.993,14.323-31.993,31.993c0,8.224,3.103,15.72,8.202,21.388c4.778-4.399,11.291-7.104,18.462-7.104\r\n\t\t\t\tc9.749,0,18.284,4.995,22.893,12.458c8.69-5.721,14.43-15.561,14.43-26.742C63.992,14.331,49.669,0.008,32.001,0.008z\r\n\t\t\t\t M46.704,44.438c-1.112,0.906-2.201,0.064-2.201,0.064c-10.883-8.335-27.994-3.798-27.994-3.754l-0.256,0.072\r\n\t\t\t\tc-1.149,0-1.937-1.215-1.937-2.362c0,0-0.069-1.319,1.788-1.937c0.713-0.131,18.112-3.926,30.539,4.408\r\n\t\t\t\tc0.922,0.727,0.953,1.59,0.953,1.59C47.594,43.668,47.336,43.923,46.704,44.438z M49.37,35.657c-0.479,0-0.927-0.138-1.308-0.37\r\n\t\t\t\th-0.002c-13.899-8.339-29.991-4.409-32.001-3.857l-1.028,0.202c-1.388,0-2.403-1.126-2.403-2.515c0-1.163,0.824-2.138,1.91-2.426\r\n\t\t\t\tc1.087-0.24,19.256-6.003,35.915,3.523h0.008c0.912,0.428,1.419,1.6,1.419,2.593C51.88,34.195,50.758,35.657,49.37,35.657z\r\n\t\t\t\t M53.583,26.042c0,0-0.853-0.014-1.71-0.531c-15.635-9.777-37.295-4.184-37.513-4.126l-0.008-0.005\r\n\t\t\t\tc-0.244,0.064-0.511,0.101-0.774,0.101c-1.655,0-2.962-1.341-2.962-2.996c0-1.434,0.727-2.631,2.358-2.926\r\n\t\t\t\tc1.087-0.259,24.236-6.181,42.042,4.852c0.934,0.507,1.565,1.497,1.565,2.635C56.581,24.7,55.236,26.042,53.583,26.042z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.spotify = spotify; \ No newline at end of file diff --git a/dist/ikons/square.js b/dist/ikons/square.js new file mode 100644 index 000000000..866403f97 --- /dev/null +++ b/dist/ikons/square.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.square = void 0; +var square = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "SQUARE_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "SQUARE" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "SQUARE" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58\r\n\t\t\t\tz" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58\r\n\t\t\t\tz" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.square = square; \ No newline at end of file diff --git a/dist/ikons/square_add.js b/dist/ikons/square_add.js new file mode 100644 index 000000000..61dd88200 --- /dev/null +++ b/dist/ikons/square_add.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.square_add = void 0; +var square_add = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "SQUARE__x2F__ADD_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "SQUARE__x2F__ADD" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "SQUARE__x2F__ADD" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,35h10v10c0,1.657,1.343,3,3,3s3-1.343,3-3V35h10c1.657,0,3-1.343,3-3s-1.343-3-3-3H35V19c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v10H19c-1.657,0-3,1.343-3,3S17.343,35,19,35z M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,35h10v10c0,1.657,1.343,3,3,3s3-1.343,3-3V35h10c1.657,0,3-1.343,3-3s-1.343-3-3-3H35V19c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v10H19c-1.657,0-3,1.343-3,3S17.343,35,19,35z M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.square_add = square_add; \ No newline at end of file diff --git a/dist/ikons/square_dashed.js b/dist/ikons/square_dashed.js new file mode 100644 index 000000000..e3e4a59b3 --- /dev/null +++ b/dist/ikons/square_dashed.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.square_dashed = void 0; +var square_dashed = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "SQUARE__x2F__DASHED" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M37,58H27c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h10c1.657,0,3-1.343,3-3\r\n\t\t\tC40,59.343,38.657,58,37,58z M61,0H49c0,0,0,0,0,0c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3v0h9V15c0,0,0,0,0,0.001\r\n\t\t\tc0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V3C64,1.344,62.657,0,61,0z M15,58H6v-9c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3l0,0\r\n\t\t\tv12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3C18,59.343,16.657,58,15,58z M3,40c1.657,0,3-1.343,3-3V27c0-1.657-1.343-3-3-3\r\n\t\t\tc-1.657,0-3,1.343-3,3v10C0,38.657,1.343,40,3,40z M15,0H3C1.343,0,0,1.344,0,3v12c0,0,0,0,0,0c0,1.657,1.343,3,3,3\r\n\t\t\tc1.657,0,3-1.343,3-3V6h9v0c1.657,0,3-1.343,3-3C18,1.344,16.657,0,15,0z M64,37V27c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v10\r\n\t\t\tc0,1.657,1.343,3,3,3C62.657,40,64,38.657,64,37z M37,0H27c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h10c1.657,0,3-1.343,3-3\r\n\t\t\tC40,1.344,38.657,0,37,0z M61,46c-1.657,0-3,1.343-3,3c0,0,0,0,0,0v9h-9c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12\r\n\t\t\tc1.657,0,3-1.343,3-3V49C64,47.343,62.657,46,61,46z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M37,58H27c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h10c1.657,0,3-1.343,3-3\r\n\t\t\tC40,59.343,38.657,58,37,58z M61,0H49c0,0,0,0,0,0c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3v0h9V15c0,0,0,0,0,0.001\r\n\t\t\tc0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V3C64,1.344,62.657,0,61,0z M15,58H6v-9c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3l0,0\r\n\t\t\tv12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3C18,59.343,16.657,58,15,58z M3,40c1.657,0,3-1.343,3-3V27c0-1.657-1.343-3-3-3\r\n\t\t\tc-1.657,0-3,1.343-3,3v10C0,38.657,1.343,40,3,40z M15,0H3C1.343,0,0,1.344,0,3v12c0,0,0,0,0,0c0,1.657,1.343,3,3,3\r\n\t\t\tc1.657,0,3-1.343,3-3V6h9v0c1.657,0,3-1.343,3-3C18,1.344,16.657,0,15,0z M64,37V27c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v10\r\n\t\t\tc0,1.657,1.343,3,3,3C62.657,40,64,38.657,64,37z M37,0H27c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h10c1.657,0,3-1.343,3-3\r\n\t\t\tC40,1.344,38.657,0,37,0z M61,46c-1.657,0-3,1.343-3,3c0,0,0,0,0,0v9h-9c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12\r\n\t\t\tc1.657,0,3-1.343,3-3V49C64,47.343,62.657,46,61,46z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.square_dashed = square_dashed; \ No newline at end of file diff --git a/dist/ikons/square_delete.js b/dist/ikons/square_delete.js new file mode 100644 index 000000000..94e5fb77f --- /dev/null +++ b/dist/ikons/square_delete.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.square_delete = void 0; +var square_delete = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "SQUARE__x2F__DELETE_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "SQUARE__x2F__DELETE" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "SQUARE__x2F__DELETE" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M18,43c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L32,36.243l8.879,8.879C41.422,45.664,42.172,46,43,46\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L36.243,32l8.879-8.878C45.664,22.579,46,21.829,46,21c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L32,27.758l-8.879-8.879C22.579,18.336,21.828,18,21,18c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L27.757,32l-8.879,8.879C18.336,41.422,18,42.172,18,43z M61,0H3C1.343,0,0,1.343,0,3v58\r\n\t\t\t\tc0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18,43c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L32,36.243l8.879,8.879C41.422,45.664,42.172,46,43,46\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L36.243,32l8.879-8.878C45.664,22.579,46,21.829,46,21c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L32,27.758l-8.879-8.879C22.579,18.336,21.828,18,21,18c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L27.757,32l-8.879,8.879C18.336,41.422,18,42.172,18,43z M61,0H3C1.343,0,0,1.343,0,3v58\r\n\t\t\t\tc0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.square_delete = square_delete; \ No newline at end of file diff --git a/dist/ikons/square_down.js b/dist/ikons/square_down.js new file mode 100644 index 000000000..93abb9914 --- /dev/null +++ b/dist/ikons/square_down.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.square_down = void 0; +var square_down = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "SQUARE__x2F__DOWN" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M15,0H3C1.343,0,0,1.344,0,3v12c0,0,0,0,0,0c0,1.657,1.343,3,3,3\r\n\t\t\tc1.657,0,3-1.343,3-3V6h9v0c1.657,0,3-1.343,3-3C18,1.344,16.657,0,15,0z M15,58H6v-9c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3\r\n\t\t\tl0,0v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3C18,59.343,16.657,58,15,58z M27,6h10c1.657,0,3-1.343,3-3\r\n\t\t\tc0-1.657-1.343-3-3-3H27c-1.657,0-3,1.343-3,3C24,4.657,25.343,6,27,6z M37,58H27c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h10\r\n\t\t\tc1.657,0,3-1.343,3-3C40,59.343,38.657,58,37,58z M3,40c1.657,0,3-1.343,3-3V27c0-1.657-1.343-3-3-3s-3,1.343-3,3v10\r\n\t\t\tC0,38.657,1.343,40,3,40z M41,32c-0.885,0-1.673,0.391-2.222,1l-0.008-0.007L35,37.182V19c0-1.657-1.343-3-3-3\r\n\t\t\tc-1.657,0-3,1.343-3,3v18.182l-3.77-4.189l-0.008,0.007c-0.549-0.61-1.337-1-2.222-1c-1.657,0-3,1.343-3,3\r\n\t\t\tc0,0.772,0.3,1.468,0.778,2l-0.008,0.007l9,10L29.778,47c0.549,0.61,1.336,1,2.222,1s1.673-0.391,2.222-1l0.008,0.007l9-10\r\n\t\t\tL43.222,37C43.701,36.468,44,35.772,44,35C44,33.344,42.657,32,41,32z M61,0H49c0,0,0,0,0,0c-1.657,0-3,1.343-3,3\r\n\t\t\tc0,1.657,1.343,3,3,3v0h9V15c0,0,0,0,0,0.001c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V3C64,1.344,62.657,0,61,0z M61,40\r\n\t\t\tc1.657,0,3-1.343,3-3V27c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v10C58,38.657,59.343,40,61,40z M61,46c-1.657,0-3,1.343-3,3\r\n\t\t\tc0,0,0,0,0,0v9h-9c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3V49C64,47.343,62.657,46,61,46z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M15,0H3C1.343,0,0,1.344,0,3v12c0,0,0,0,0,0c0,1.657,1.343,3,3,3\r\n\t\t\tc1.657,0,3-1.343,3-3V6h9v0c1.657,0,3-1.343,3-3C18,1.344,16.657,0,15,0z M15,58H6v-9c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3\r\n\t\t\tl0,0v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3C18,59.343,16.657,58,15,58z M27,6h10c1.657,0,3-1.343,3-3\r\n\t\t\tc0-1.657-1.343-3-3-3H27c-1.657,0-3,1.343-3,3C24,4.657,25.343,6,27,6z M37,58H27c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h10\r\n\t\t\tc1.657,0,3-1.343,3-3C40,59.343,38.657,58,37,58z M3,40c1.657,0,3-1.343,3-3V27c0-1.657-1.343-3-3-3s-3,1.343-3,3v10\r\n\t\t\tC0,38.657,1.343,40,3,40z M41,32c-0.885,0-1.673,0.391-2.222,1l-0.008-0.007L35,37.182V19c0-1.657-1.343-3-3-3\r\n\t\t\tc-1.657,0-3,1.343-3,3v18.182l-3.77-4.189l-0.008,0.007c-0.549-0.61-1.337-1-2.222-1c-1.657,0-3,1.343-3,3\r\n\t\t\tc0,0.772,0.3,1.468,0.778,2l-0.008,0.007l9,10L29.778,47c0.549,0.61,1.336,1,2.222,1s1.673-0.391,2.222-1l0.008,0.007l9-10\r\n\t\t\tL43.222,37C43.701,36.468,44,35.772,44,35C44,33.344,42.657,32,41,32z M61,0H49c0,0,0,0,0,0c-1.657,0-3,1.343-3,3\r\n\t\t\tc0,1.657,1.343,3,3,3v0h9V15c0,0,0,0,0,0.001c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V3C64,1.344,62.657,0,61,0z M61,40\r\n\t\t\tc1.657,0,3-1.343,3-3V27c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v10C58,38.657,59.343,40,61,40z M61,46c-1.657,0-3,1.343-3,3\r\n\t\t\tc0,0,0,0,0,0v9h-9c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3V49C64,47.343,62.657,46,61,46z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.square_down = square_down; \ No newline at end of file diff --git a/dist/ikons/square_left.js b/dist/ikons/square_left.js new file mode 100644 index 000000000..ffe3c312d --- /dev/null +++ b/dist/ikons/square_left.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.square_left = void 0; +var square_left = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "SQUARE__x2F__LEFT" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M3,40c1.657,0,3-1.343,3-3V27c0-1.657-1.343-3-3-3s-3,1.343-3,3v10\r\n\t\t\tC0,38.657,1.343,40,3,40z M27,6h10c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H27c-1.657,0-3,1.343-3,3C24,4.657,25.343,6,27,6z\r\n\t\t\t M3,18c1.657,0,3-1.343,3-3V6h9v0c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H3C1.343,0,0,1.344,0,3v12c0,0,0,0,0,0\r\n\t\t\tC0,16.657,1.343,18,3,18z M15,58H6v-9c0-1.657-1.343-3-3-3s-3,1.343-3,3l0,0v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3\r\n\t\t\tC18,59.343,16.657,58,15,58z M61,46c-1.657,0-3,1.343-3,3c0,0,0,0,0,0v9h-9c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12\r\n\t\t\tc1.657,0,3-1.343,3-3V49C64,47.343,62.657,46,61,46z M61,0H49c0,0,0,0,0,0c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3v0h9V15\r\n\t\t\tc0,0,0,0,0,0.001c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V3C64,1.344,62.657,0,61,0z M37,58H27c-1.657,0-3,1.343-3,3\r\n\t\t\tc0,1.657,1.343,3,3,3h10c1.657,0,3-1.343,3-3C40,59.343,38.657,58,37,58z M64,37V27c0-1.657-1.343-3-3-3s-3,1.343-3,3v10\r\n\t\t\tc0,1.657,1.343,3,3,3S64,38.657,64,37z M48,32c0-1.657-1.343-3-3-3H26.818l4.189-3.77L31,25.222c0.61-0.549,1-1.337,1-2.222\r\n\t\t\tc0-1.657-1.343-3-3-3c-0.772,0-1.468,0.3-2,0.778l-0.007-0.008l-10,9L17,29.779c-0.61,0.549-1,1.337-1,2.222\r\n\t\t\tc0,0.885,0.391,1.673,1,2.222l-0.007,0.008l10,9L27,43.222C27.532,43.701,28.229,44,29,44c1.657,0,3-1.343,3-3\r\n\t\t\tc0-0.885-0.391-1.673-1-2.222l0.007-0.008L26.818,35H45C46.657,35,48,33.657,48,32z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M3,40c1.657,0,3-1.343,3-3V27c0-1.657-1.343-3-3-3s-3,1.343-3,3v10\r\n\t\t\tC0,38.657,1.343,40,3,40z M27,6h10c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H27c-1.657,0-3,1.343-3,3C24,4.657,25.343,6,27,6z\r\n\t\t\t M3,18c1.657,0,3-1.343,3-3V6h9v0c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H3C1.343,0,0,1.344,0,3v12c0,0,0,0,0,0\r\n\t\t\tC0,16.657,1.343,18,3,18z M15,58H6v-9c0-1.657-1.343-3-3-3s-3,1.343-3,3l0,0v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3\r\n\t\t\tC18,59.343,16.657,58,15,58z M61,46c-1.657,0-3,1.343-3,3c0,0,0,0,0,0v9h-9c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12\r\n\t\t\tc1.657,0,3-1.343,3-3V49C64,47.343,62.657,46,61,46z M61,0H49c0,0,0,0,0,0c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3v0h9V15\r\n\t\t\tc0,0,0,0,0,0.001c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V3C64,1.344,62.657,0,61,0z M37,58H27c-1.657,0-3,1.343-3,3\r\n\t\t\tc0,1.657,1.343,3,3,3h10c1.657,0,3-1.343,3-3C40,59.343,38.657,58,37,58z M64,37V27c0-1.657-1.343-3-3-3s-3,1.343-3,3v10\r\n\t\t\tc0,1.657,1.343,3,3,3S64,38.657,64,37z M48,32c0-1.657-1.343-3-3-3H26.818l4.189-3.77L31,25.222c0.61-0.549,1-1.337,1-2.222\r\n\t\t\tc0-1.657-1.343-3-3-3c-0.772,0-1.468,0.3-2,0.778l-0.007-0.008l-10,9L17,29.779c-0.61,0.549-1,1.337-1,2.222\r\n\t\t\tc0,0.885,0.391,1.673,1,2.222l-0.007,0.008l10,9L27,43.222C27.532,43.701,28.229,44,29,44c1.657,0,3-1.343,3-3\r\n\t\t\tc0-0.885-0.391-1.673-1-2.222l0.007-0.008L26.818,35H45C46.657,35,48,33.657,48,32z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.square_left = square_left; \ No newline at end of file diff --git a/dist/ikons/square_ok.js b/dist/ikons/square_ok.js new file mode 100644 index 000000000..77dd6010b --- /dev/null +++ b/dist/ikons/square_ok.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.square_ok = void 0; +var square_ok = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "SQUARE__x2F__OK_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "SQUARE__x2F__OK" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "SQUARE__x2F__OK" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M46,20.999v0.002C46,21.001,46,21.001,46,20.999C46,21,46,21,46,20.999z M46,43.001C46,43.001,46,43,46,43.001\r\n\t\t\t\tC46,43,46,43,46,42.999V43.001z M25.879,42.121C26.422,42.664,27.172,43,28,43s1.578-0.336,2.121-0.879l16-16\r\n\t\t\t\tC46.664,25.579,47,24.828,47,24c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L28,35.757l-6.879-6.879\r\n\t\t\t\tC20.578,28.336,19.828,28,19,28c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L25.879,42.121z M61,0H3\r\n\t\t\t\tC1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M46,20.999v0.002C46,21.001,46,21.001,46,20.999C46,21,46,21,46,20.999z M46,43.001C46,43.001,46,43,46,43.001\r\n\t\t\t\tC46,43,46,43,46,42.999V43.001z M25.879,42.121C26.422,42.664,27.172,43,28,43s1.578-0.336,2.121-0.879l16-16\r\n\t\t\t\tC46.664,25.579,47,24.828,47,24c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L28,35.757l-6.879-6.879\r\n\t\t\t\tC20.578,28.336,19.828,28,19,28c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L25.879,42.121z M61,0H3\r\n\t\t\t\tC1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.square_ok = square_ok; \ No newline at end of file diff --git a/dist/ikons/square_remove.js b/dist/ikons/square_remove.js new file mode 100644 index 000000000..328d4662e --- /dev/null +++ b/dist/ikons/square_remove.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.square_remove = void 0; +var square_remove = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "SQUARE__x2F__REMOVE_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "SQUARE__x2F__REMOVE" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "SQUARE__x2F__REMOVE" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58\r\n\t\t\t\tz M19,35h26c1.657,0,3-1.343,3-3s-1.343-3-3-3H19c-1.657,0-3,1.343-3,3S17.343,35,19,35z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58\r\n\t\t\t\tz M19,35h26c1.657,0,3-1.343,3-3s-1.343-3-3-3H19c-1.657,0-3,1.343-3,3S17.343,35,19,35z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.square_remove = square_remove; \ No newline at end of file diff --git a/dist/ikons/square_right.js b/dist/ikons/square_right.js new file mode 100644 index 000000000..e2cfe8439 --- /dev/null +++ b/dist/ikons/square_right.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.square_right = void 0; +var square_right = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "SQUARE__x2F__RIGHT" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M3,40c1.657,0,3-1.343,3-3V27c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v10\r\n\t\t\tC0,38.657,1.343,40,3,40z M15,58H6v-9c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3l0,0v12c0,1.657,1.343,3,3,3h12\r\n\t\t\tc1.657,0,3-1.343,3-3C18,59.343,16.657,58,15,58z M3,18c1.657,0,3-1.343,3-3V6h9v0c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H3\r\n\t\t\tC1.343,0,0,1.344,0,3v12c0,0,0,0,0,0C0,16.657,1.343,18,3,18z M27,6h10c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H27\r\n\t\t\tc-1.657,0-3,1.343-3,3C24,4.657,25.343,6,27,6z M32.993,38.771l0.007,0.008c-0.61,0.549-1,1.337-1,2.222c0,1.657,1.343,3,3,3\r\n\t\t\tc0.772,0,1.468-0.299,2-0.778l0.007,0.008l10-9L47,34.222c0.61-0.549,1-1.337,1-2.222c0-0.885-0.391-1.672-1-2.222l0.007-0.008\r\n\t\t\tl-10-9L37,20.779C36.468,20.3,35.772,20,35,20c-1.657,0-3,1.343-3,3c0,0.885,0.391,1.673,1,2.222l-0.007,0.008L37.182,29H19\r\n\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h18.182L32.993,38.771z M64,37V27c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v10\r\n\t\t\tc0,1.657,1.343,3,3,3C62.657,40,64,38.657,64,37z M61,0H49c0,0,0,0,0,0c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3v0h9V15\r\n\t\t\tc0,0,0,0,0,0.001c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V3C64,1.344,62.657,0,61,0z M37,58H27c-1.657,0-3,1.343-3,3\r\n\t\t\tc0,1.657,1.343,3,3,3h10c1.657,0,3-1.343,3-3C40,59.343,38.657,58,37,58z M61,46c-1.657,0-3,1.343-3,3c0,0,0,0,0,0v9h-9\r\n\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3V49C64,47.343,62.657,46,61,46z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M3,40c1.657,0,3-1.343,3-3V27c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v10\r\n\t\t\tC0,38.657,1.343,40,3,40z M15,58H6v-9c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3l0,0v12c0,1.657,1.343,3,3,3h12\r\n\t\t\tc1.657,0,3-1.343,3-3C18,59.343,16.657,58,15,58z M3,18c1.657,0,3-1.343,3-3V6h9v0c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H3\r\n\t\t\tC1.343,0,0,1.344,0,3v12c0,0,0,0,0,0C0,16.657,1.343,18,3,18z M27,6h10c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H27\r\n\t\t\tc-1.657,0-3,1.343-3,3C24,4.657,25.343,6,27,6z M32.993,38.771l0.007,0.008c-0.61,0.549-1,1.337-1,2.222c0,1.657,1.343,3,3,3\r\n\t\t\tc0.772,0,1.468-0.299,2-0.778l0.007,0.008l10-9L47,34.222c0.61-0.549,1-1.337,1-2.222c0-0.885-0.391-1.672-1-2.222l0.007-0.008\r\n\t\t\tl-10-9L37,20.779C36.468,20.3,35.772,20,35,20c-1.657,0-3,1.343-3,3c0,0.885,0.391,1.673,1,2.222l-0.007,0.008L37.182,29H19\r\n\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h18.182L32.993,38.771z M64,37V27c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v10\r\n\t\t\tc0,1.657,1.343,3,3,3C62.657,40,64,38.657,64,37z M61,0H49c0,0,0,0,0,0c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3v0h9V15\r\n\t\t\tc0,0,0,0,0,0.001c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V3C64,1.344,62.657,0,61,0z M37,58H27c-1.657,0-3,1.343-3,3\r\n\t\t\tc0,1.657,1.343,3,3,3h10c1.657,0,3-1.343,3-3C40,59.343,38.657,58,37,58z M61,46c-1.657,0-3,1.343-3,3c0,0,0,0,0,0v9h-9\r\n\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3V49C64,47.343,62.657,46,61,46z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.square_right = square_right; \ No newline at end of file diff --git a/dist/ikons/square_up.js b/dist/ikons/square_up.js new file mode 100644 index 000000000..d62f8dff0 --- /dev/null +++ b/dist/ikons/square_up.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.square_up = void 0; +var square_up = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "SQUARE__x2F__UP" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M15,0H3C1.343,0,0,1.344,0,3v12c0,0,0,0,0,0c0,1.657,1.343,3,3,3\r\n\t\t\tc1.657,0,3-1.343,3-3V6h9v0c1.657,0,3-1.343,3-3C18,1.344,16.657,0,15,0z M3,40c1.657,0,3-1.343,3-3V27c0-1.657-1.343-3-3-3\r\n\t\t\tc-1.657,0-3,1.343-3,3v10C0,38.657,1.343,40,3,40z M15,58H6v-9c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3l0,0v12\r\n\t\t\tc0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3C18,59.343,16.657,58,15,58z M27,6h10c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H27\r\n\t\t\tc-1.657,0-3,1.343-3,3C24,4.657,25.343,6,27,6z M37,58H27c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h10c1.657,0,3-1.343,3-3\r\n\t\t\tC40,59.343,38.657,58,37,58z M61,24c-1.657,0-3,1.343-3,3v10c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V27\r\n\t\t\tC64,25.343,62.657,24,61,24z M61,0H49c0,0,0,0,0,0c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3v0h9V15c0,0,0,0,0,0.001\r\n\t\t\tc0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V3C64,1.344,62.657,0,61,0z M43.23,26.994l-9-10l-0.008,0.007\r\n\t\t\tc-0.549-0.61-1.336-1-2.222-1c-0.885,0-1.672,0.391-2.222,1l-0.008-0.007l-9,10l0.008,0.007C20.3,27.532,20,28.229,20,29\r\n\t\t\tc0,1.657,1.343,3,3,3c0.885,0,1.673-0.391,2.222-1l0.008,0.007L29,26.818V45c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V26.818\r\n\t\t\tl3.77,4.189L38.778,31c0.549,0.61,1.337,1,2.222,1c1.657,0,3-1.343,3-3c0-0.772-0.3-1.468-0.778-2L43.23,26.994z M61,46\r\n\t\t\tc-1.657,0-3,1.343-3,3c0,0,0,0,0,0v9h-9c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3V49\r\n\t\t\tC64,47.343,62.657,46,61,46z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M15,0H3C1.343,0,0,1.344,0,3v12c0,0,0,0,0,0c0,1.657,1.343,3,3,3\r\n\t\t\tc1.657,0,3-1.343,3-3V6h9v0c1.657,0,3-1.343,3-3C18,1.344,16.657,0,15,0z M3,40c1.657,0,3-1.343,3-3V27c0-1.657-1.343-3-3-3\r\n\t\t\tc-1.657,0-3,1.343-3,3v10C0,38.657,1.343,40,3,40z M15,58H6v-9c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3l0,0v12\r\n\t\t\tc0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3C18,59.343,16.657,58,15,58z M27,6h10c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H27\r\n\t\t\tc-1.657,0-3,1.343-3,3C24,4.657,25.343,6,27,6z M37,58H27c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h10c1.657,0,3-1.343,3-3\r\n\t\t\tC40,59.343,38.657,58,37,58z M61,24c-1.657,0-3,1.343-3,3v10c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V27\r\n\t\t\tC64,25.343,62.657,24,61,24z M61,0H49c0,0,0,0,0,0c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3v0h9V15c0,0,0,0,0,0.001\r\n\t\t\tc0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V3C64,1.344,62.657,0,61,0z M43.23,26.994l-9-10l-0.008,0.007\r\n\t\t\tc-0.549-0.61-1.336-1-2.222-1c-0.885,0-1.672,0.391-2.222,1l-0.008-0.007l-9,10l0.008,0.007C20.3,27.532,20,28.229,20,29\r\n\t\t\tc0,1.657,1.343,3,3,3c0.885,0,1.673-0.391,2.222-1l0.008,0.007L29,26.818V45c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V26.818\r\n\t\t\tl3.77,4.189L38.778,31c0.549,0.61,1.337,1,2.222,1c1.657,0,3-1.343,3-3c0-0.772-0.3-1.468-0.778-2L43.23,26.994z M61,46\r\n\t\t\tc-1.657,0-3,1.343-3,3c0,0,0,0,0,0v9h-9c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3V49\r\n\t\t\tC64,47.343,62.657,46,61,46z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.square_up = square_up; \ No newline at end of file diff --git a/dist/ikons/star.js b/dist/ikons/star.js new file mode 100644 index 000000000..4d278c1b9 --- /dev/null +++ b/dist/ikons/star.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.star = void 0; +var star = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "STAR_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "STAR" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "STAR" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M64,26c0-1.657-1.343-3-3-3H41.047L34.869,4.12C34.492,2.893,33.352,2,32,2c-1.35,0-2.492,0.892-2.868,2.12L22.953,23H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1,0.49,1.885,1.242,2.43l0,0L17.36,40.09l-6.209,18.971C11.053,59.357,11,59.672,11,60\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.657,0,1.263-0.213,1.758-0.57h0.001L32,50.682L48.242,62.43h0.001C48.736,62.788,49.343,63,50,63\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.328-0.053-0.643-0.15-0.938L46.641,40.09l16.118-11.66l0,0C63.51,27.885,64,27,64,26z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M64,26c0-1.657-1.343-3-3-3H41.047L34.869,4.12C34.492,2.893,33.352,2,32,2c-1.35,0-2.492,0.892-2.868,2.12L22.953,23H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1,0.49,1.885,1.242,2.43l0,0L17.36,40.09l-6.209,18.971C11.053,59.357,11,59.672,11,60\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.657,0,1.263-0.213,1.758-0.57h0.001L32,50.682L48.242,62.43h0.001C48.736,62.788,49.343,63,50,63\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.328-0.053-0.643-0.15-0.938L46.641,40.09l16.118-11.66l0,0C63.51,27.885,64,27,64,26z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.star = star; \ No newline at end of file diff --git a/dist/ikons/stop.js b/dist/ikons/stop.js new file mode 100644 index 000000000..76ba37e2e --- /dev/null +++ b/dist/ikons/stop.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.stop = void 0; +var stop = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "STOP_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "STOP" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "STOP" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M43,18H21c-1.657,0-3,1.343-3,3v22c0,1.657,1.343,3,3,3h22c1.657,0,3-1.343,3-3V21C46,19.343,44.657,18,43,18z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M43,18H21c-1.657,0-3,1.343-3,3v22c0,1.657,1.343,3,3,3h22c1.657,0,3-1.343,3-3V21C46,19.343,44.657,18,43,18z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.stop = stop; \ No newline at end of file diff --git a/dist/ikons/suitcase.js b/dist/ikons/suitcase.js new file mode 100644 index 000000000..950e8d283 --- /dev/null +++ b/dist/ikons/suitcase.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.suitcase = void 0; +var suitcase = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "SUITCASE_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "SUITCASE" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "SUITCASE" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M0,21v37c0,1.657,1.343,3,3,3h5V18H3C1.343,18,0,19.343,0,21z M32,3c-8.284,0-15,6.716-15,15h-6v43h42V18h-6\r\n\t\t\t\tC47,9.716,40.284,3,32,3z M23,18c0-4.971,4.029-9,9-9c4.971,0,9,4.029,9,9H23z M61,18h-5v43h5c1.657,0,3-1.343,3-3V21\r\n\t\t\t\tC64,19.343,62.657,18,61,18z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M0,21v37c0,1.657,1.343,3,3,3h5V18H3C1.343,18,0,19.343,0,21z M32,3c-8.284,0-15,6.716-15,15h-6v43h42V18h-6\r\n\t\t\t\tC47,9.716,40.284,3,32,3z M23,18c0-4.971,4.029-9,9-9c4.971,0,9,4.029,9,9H23z M61,18h-5v43h5c1.657,0,3-1.343,3-3V21\r\n\t\t\t\tC64,19.343,62.657,18,61,18z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.suitcase = suitcase; \ No newline at end of file diff --git a/dist/ikons/tag.js b/dist/ikons/tag.js new file mode 100644 index 000000000..01ba75ca1 --- /dev/null +++ b/dist/ikons/tag.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.tag = void 0; +var tag = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "TAG_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "TAG" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "TAG" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M56,33c0-0.018-0.002-0.033-0.003-0.049c-0.001-0.087-0.004-0.174-0.013-0.258c-0.002-0.017-0.006-0.031-0.008-0.047\r\n\t\t\t\tc-0.01-0.084-0.021-0.169-0.039-0.252c0-0.002,0-0.003,0-0.005c-0.123-0.594-0.422-1.123-0.84-1.531L32.126,8.884\r\n\t\t\t\tC31.582,8.338,30.831,8,30,8c-0.003,0-0.005,0.001-0.008,0.001V7.993H11V8c-1.657,0-3,1.343-3,3H7.993v19.049h0.013\r\n\t\t\t\tc0.015,0.878,0.409,1.657,1.023,2.196l-0.011,0.012l25,23l0.006-0.005c0.395,0.348,0.879,0.592,1.418,0.693\r\n\t\t\t\tc0.021,0.005,0.045,0.008,0.067,0.011c0.067,0.011,0.134,0.022,0.202,0.028C35.807,55.995,35.902,56,36,56\r\n\t\t\t\tc0.916,0,1.734-0.411,2.284-1.059l0.001,0.002l17-20l-0.001-0.002C55.73,34.418,56,33.741,56,33z M16,20c-2.209,0-4-1.791-4-4\r\n\t\t\t\ts1.791-4,4-4s4,1.791,4,4S18.209,20,16,20z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M56,33c0-0.018-0.002-0.033-0.003-0.049c-0.001-0.087-0.004-0.174-0.013-0.258c-0.002-0.017-0.006-0.031-0.008-0.047\r\n\t\t\t\tc-0.01-0.084-0.021-0.169-0.039-0.252c0-0.002,0-0.003,0-0.005c-0.123-0.594-0.422-1.123-0.84-1.531L32.126,8.884\r\n\t\t\t\tC31.582,8.338,30.831,8,30,8c-0.003,0-0.005,0.001-0.008,0.001V7.993H11V8c-1.657,0-3,1.343-3,3H7.993v19.049h0.013\r\n\t\t\t\tc0.015,0.878,0.409,1.657,1.023,2.196l-0.011,0.012l25,23l0.006-0.005c0.395,0.348,0.879,0.592,1.418,0.693\r\n\t\t\t\tc0.021,0.005,0.045,0.008,0.067,0.011c0.067,0.011,0.134,0.022,0.202,0.028C35.807,55.995,35.902,56,36,56\r\n\t\t\t\tc0.916,0,1.734-0.411,2.284-1.059l0.001,0.002l17-20l-0.001-0.002C55.73,34.418,56,33.741,56,33z M16,20c-2.209,0-4-1.791-4-4\r\n\t\t\t\ts1.791-4,4-4s4,1.791,4,4S18.209,20,16,20z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.tag = tag; \ No newline at end of file diff --git a/dist/ikons/tags.js b/dist/ikons/tags.js new file mode 100644 index 000000000..c85d794d7 --- /dev/null +++ b/dist/ikons/tags.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.tags = void 0; +var tags = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "TAGS_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "TAGS" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "TAGS" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M56.113,26.872l-5.133-4.91c-0.006,0.009-0.012,0.019-0.017,0.028L34.126,5.884C33.582,5.338,32.831,5,32,5\r\n\t\t\t\tc-0.003,0-0.005,0.001-0.008,0.001V4.993H13V5c-1.657,0-3,1.343-3,3h22l24.081,23.155L56.3,30.9l0.002,0.001\r\n\t\t\t\tC56.73,30.383,57,29.726,57,29C57,28.168,56.66,27.415,56.113,26.872z M54.997,35.951c-0.001-0.087-0.004-0.174-0.013-0.26\r\n\t\t\t\tc-0.002-0.016-0.006-0.03-0.008-0.045c-0.01-0.086-0.021-0.17-0.039-0.254c0-0.002,0-0.002,0-0.004\r\n\t\t\t\tc-0.123-0.594-0.422-1.123-0.84-1.531L31.126,11.884C30.582,11.338,29.831,11,29,11c-0.003,0-0.005,0.001-0.008,0.001v-0.008H10\r\n\t\t\t\tV11c-1.657,0-3,1.343-3,3H6.993v19.049h0.013c0.015,0.878,0.409,1.657,1.023,2.196l-0.011,0.012l25,23l0.006-0.005\r\n\t\t\t\tc0.395,0.348,0.879,0.594,1.418,0.693c0.021,0.005,0.045,0.008,0.067,0.011c0.067,0.011,0.134,0.022,0.202,0.028\r\n\t\t\t\tC34.807,58.995,34.902,59,35,59c0.916,0,1.734-0.411,2.284-1.059l0.001,0.002l17-20l-0.001-0.002C54.73,37.418,55,36.741,55,36\r\n\t\t\t\tC55,35.984,54.998,35.968,54.997,35.951z M15,23c-2.209,0-4-1.791-4-4s1.791-4,4-4s4,1.791,4,4S17.209,23,15,23z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M56.113,26.872l-5.133-4.91c-0.006,0.009-0.012,0.019-0.017,0.028L34.126,5.884C33.582,5.338,32.831,5,32,5\r\n\t\t\t\tc-0.003,0-0.005,0.001-0.008,0.001V4.993H13V5c-1.657,0-3,1.343-3,3h22l24.081,23.155L56.3,30.9l0.002,0.001\r\n\t\t\t\tC56.73,30.383,57,29.726,57,29C57,28.168,56.66,27.415,56.113,26.872z M54.997,35.951c-0.001-0.087-0.004-0.174-0.013-0.26\r\n\t\t\t\tc-0.002-0.016-0.006-0.03-0.008-0.045c-0.01-0.086-0.021-0.17-0.039-0.254c0-0.002,0-0.002,0-0.004\r\n\t\t\t\tc-0.123-0.594-0.422-1.123-0.84-1.531L31.126,11.884C30.582,11.338,29.831,11,29,11c-0.003,0-0.005,0.001-0.008,0.001v-0.008H10\r\n\t\t\t\tV11c-1.657,0-3,1.343-3,3H6.993v19.049h0.013c0.015,0.878,0.409,1.657,1.023,2.196l-0.011,0.012l25,23l0.006-0.005\r\n\t\t\t\tc0.395,0.348,0.879,0.594,1.418,0.693c0.021,0.005,0.045,0.008,0.067,0.011c0.067,0.011,0.134,0.022,0.202,0.028\r\n\t\t\t\tC34.807,58.995,34.902,59,35,59c0.916,0,1.734-0.411,2.284-1.059l0.001,0.002l17-20l-0.001-0.002C54.73,37.418,55,36.741,55,36\r\n\t\t\t\tC55,35.984,54.998,35.968,54.997,35.951z M15,23c-2.209,0-4-1.791-4-4s1.791-4,4-4s4,1.791,4,4S17.209,23,15,23z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.tags = tags; \ No newline at end of file diff --git a/dist/ikons/target.js b/dist/ikons/target.js new file mode 100644 index 000000000..a8d9122fb --- /dev/null +++ b/dist/ikons/target.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.target = void 0; +var target = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "TARGET_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "TARGET" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "TARGET" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M32,29c-1.657,0-3,1.343-3,3s1.343,3,3,3s3-1.343,3-3S33.657,29,32,29z M61,29h-3.186\r\n\t\t\t\tC56.438,17.042,46.956,7.569,35,6.191V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3.186C17.042,7.562,7.568,17.044,6.191,29H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h3.186C7.562,46.958,17.044,56.432,29,57.809V61c0,1.657,1.343,3,3,3s3-1.343,3-3v-3.191\r\n\t\t\t\tC46.956,56.432,56.438,46.958,57.814,35H61c1.657,0,3-1.343,3-3S62.657,29,61,29z M46,35h5.751\r\n\t\t\t\tC50.448,43.639,43.634,50.453,35,51.757V46c0-1.657-1.343-3-3-3s-3,1.343-3,3v5.756C20.366,50.453,13.552,43.639,12.249,35H18\r\n\t\t\t\tc1.657,0,3-1.343,3-3s-1.343-3-3-3h-5.756C13.547,20.366,20.362,13.552,29,12.249V18c0,1.657,1.343,3,3,3s3-1.343,3-3v-5.756\r\n\t\t\t\tC43.634,13.547,50.448,20.362,51.751,29H46c-1.657,0-3,1.343-3,3S44.343,35,46,35z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M32,29c-1.657,0-3,1.343-3,3s1.343,3,3,3s3-1.343,3-3S33.657,29,32,29z M61,29h-3.186\r\n\t\t\t\tC56.438,17.042,46.956,7.569,35,6.191V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3.186C17.042,7.562,7.568,17.044,6.191,29H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h3.186C7.562,46.958,17.044,56.432,29,57.809V61c0,1.657,1.343,3,3,3s3-1.343,3-3v-3.191\r\n\t\t\t\tC46.956,56.432,56.438,46.958,57.814,35H61c1.657,0,3-1.343,3-3S62.657,29,61,29z M46,35h5.751\r\n\t\t\t\tC50.448,43.639,43.634,50.453,35,51.757V46c0-1.657-1.343-3-3-3s-3,1.343-3,3v5.756C20.366,50.453,13.552,43.639,12.249,35H18\r\n\t\t\t\tc1.657,0,3-1.343,3-3s-1.343-3-3-3h-5.756C13.547,20.366,20.362,13.552,29,12.249V18c0,1.657,1.343,3,3,3s3-1.343,3-3v-5.756\r\n\t\t\t\tC43.634,13.547,50.448,20.362,51.751,29H46c-1.657,0-3,1.343-3,3S44.343,35,46,35z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.target = target; \ No newline at end of file diff --git a/dist/ikons/terminal.js b/dist/ikons/terminal.js new file mode 100644 index 000000000..c8b0ac2d4 --- /dev/null +++ b/dist/ikons/terminal.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.terminal = void 0; +var terminal = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "TERMINAL" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M30,32c0-0.002,0-0.005,0-0.007c0-0.002,0-0.005,0-0.007\r\n\t\t\tc0-0.848-0.352-1.613-0.918-2.159l0.001-0.001l-18-18l-0.008,0.008C10.536,11.318,9.806,11,9,11c-1.657,0-3,1.343-3,3\r\n\t\t\tc0,0.91,0.406,1.725,1.046,2.275l15.718,15.718L6.84,47.917l0.001,0.001C6.321,48.458,6,49.191,6,50c0,1.657,1.343,3,3,3\r\n\t\t\tc0.809,0,1.543-0.321,2.082-0.841l0.001,0.001l18-18l-0.001-0.001C29.648,33.613,30,32.848,30,32z M55.5,47h-23\r\n\t\t\tc-1.381,0-2.5,1.119-2.5,2.5v1c0,1.381,1.119,2.5,2.5,2.5h23c1.381,0,2.5-1.119,2.5-2.5v-1C58,48.119,56.881,47,55.5,47z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M30,32c0-0.002,0-0.005,0-0.007c0-0.002,0-0.005,0-0.007\r\n\t\t\tc0-0.848-0.352-1.613-0.918-2.159l0.001-0.001l-18-18l-0.008,0.008C10.536,11.318,9.806,11,9,11c-1.657,0-3,1.343-3,3\r\n\t\t\tc0,0.91,0.406,1.725,1.046,2.275l15.718,15.718L6.84,47.917l0.001,0.001C6.321,48.458,6,49.191,6,50c0,1.657,1.343,3,3,3\r\n\t\t\tc0.809,0,1.543-0.321,2.082-0.841l0.001,0.001l18-18l-0.001-0.001C29.648,33.613,30,32.848,30,32z M55.5,47h-23\r\n\t\t\tc-1.381,0-2.5,1.119-2.5,2.5v1c0,1.381,1.119,2.5,2.5,2.5h23c1.381,0,2.5-1.119,2.5-2.5v-1C58,48.119,56.881,47,55.5,47z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.terminal = terminal; \ No newline at end of file diff --git a/dist/ikons/text_center.js b/dist/ikons/text_center.js new file mode 100644 index 000000000..04e7242ad --- /dev/null +++ b/dist/ikons/text_center.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.text_center = void 0; +var text_center = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "TEXT__x2F__CENTER_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "TEXT__x2F__CENTER" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "TEXT__x2F__CENTER" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M3,11h58c1.657,0,3-1.343,3-3s-1.343-3-3-3H3C1.343,5,0,6.343,0,8S1.343,11,3,11z M15,21c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h5.999c0,0,0,0,0.001,0h22c0,0,0,0,0.001,0H49c1.657,0,3-1.343,3-3s-1.343-3-3-3H15z M61,37H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h58c1.657,0,3-1.343,3-3S62.657,37,61,37z M43,53H21c-1.657,0-3,1.343-3,3s1.343,3,3,3h22c1.657,0,3-1.343,3-3\r\n\t\t\t\tS44.657,53,43,53z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M3,11h58c1.657,0,3-1.343,3-3s-1.343-3-3-3H3C1.343,5,0,6.343,0,8S1.343,11,3,11z M15,21c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h5.999c0,0,0,0,0.001,0h22c0,0,0,0,0.001,0H49c1.657,0,3-1.343,3-3s-1.343-3-3-3H15z M61,37H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h58c1.657,0,3-1.343,3-3S62.657,37,61,37z M43,53H21c-1.657,0-3,1.343-3,3s1.343,3,3,3h22c1.657,0,3-1.343,3-3\r\n\t\t\t\tS44.657,53,43,53z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.text_center = text_center; \ No newline at end of file diff --git a/dist/ikons/text_justify.js b/dist/ikons/text_justify.js new file mode 100644 index 000000000..db0013370 --- /dev/null +++ b/dist/ikons/text_justify.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.text_justify = void 0; +var text_justify = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "TEXT__x2F__JUSTIFY_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "TEXT__x2F__JUSTIFY" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "TEXT__x2F__JUSTIFY" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M3,11h58c1.657,0,3-1.343,3-3s-1.343-3-3-3H3C1.343,5,0,6.343,0,8S1.343,11,3,11z M61,53H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h58c1.657,0,3-1.343,3-3S62.657,53,61,53z M61,21H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h58c1.657,0,3-1.343,3-3\r\n\t\t\t\tS62.657,21,61,21z M61,37H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h58c1.657,0,3-1.343,3-3S62.657,37,61,37z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M3,11h58c1.657,0,3-1.343,3-3s-1.343-3-3-3H3C1.343,5,0,6.343,0,8S1.343,11,3,11z M61,53H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h58c1.657,0,3-1.343,3-3S62.657,53,61,53z M61,21H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h58c1.657,0,3-1.343,3-3\r\n\t\t\t\tS62.657,21,61,21z M61,37H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h58c1.657,0,3-1.343,3-3S62.657,37,61,37z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.text_justify = text_justify; \ No newline at end of file diff --git a/dist/ikons/text_left.js b/dist/ikons/text_left.js new file mode 100644 index 000000000..abad0b276 --- /dev/null +++ b/dist/ikons/text_left.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.text_left = void 0; +var text_left = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "TEXT__x2F__LEFT_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "TEXT__x2F__LEFT" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "TEXT__x2F__LEFT" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M3,27h40c0,0,0,0,0.001,0H49c1.657,0,3-1.343,3-3s-1.343-3-3-3H3c-1.657,0-3,1.343-3,3S1.343,27,3,27z M3,11h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3s-1.343-3-3-3H3C1.343,5,0,6.343,0,8S1.343,11,3,11z M61,37H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3S62.657,37,61,37z M43,53H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h40c1.657,0,3-1.343,3-3S44.657,53,43,53z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M3,27h40c0,0,0,0,0.001,0H49c1.657,0,3-1.343,3-3s-1.343-3-3-3H3c-1.657,0-3,1.343-3,3S1.343,27,3,27z M3,11h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3s-1.343-3-3-3H3C1.343,5,0,6.343,0,8S1.343,11,3,11z M61,37H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3S62.657,37,61,37z M43,53H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h40c1.657,0,3-1.343,3-3S44.657,53,43,53z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.text_left = text_left; \ No newline at end of file diff --git a/dist/ikons/text_right.js b/dist/ikons/text_right.js new file mode 100644 index 000000000..154985bf7 --- /dev/null +++ b/dist/ikons/text_right.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.text_right = void 0; +var text_right = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "TEXT__x2F__RIGHT_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "TEXT__x2F__RIGHT" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "TEXT__x2F__RIGHT" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M61,53H21c-1.657,0-3,1.343-3,3s1.343,3,3,3h40c1.657,0,3-1.343,3-3S62.657,53,61,53z M3,11h58c1.657,0,3-1.343,3-3\r\n\t\t\t\ts-1.343-3-3-3H3C1.343,5,0,6.343,0,8S1.343,11,3,11z M61,37H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h58c1.657,0,3-1.343,3-3\r\n\t\t\t\tS62.657,37,61,37z M61,21H15c-1.657,0-3,1.343-3,3s1.343,3,3,3h5.999c0,0,0,0,0.001,0h40c1.657,0,3-1.343,3-3S62.657,21,61,21z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M61,53H21c-1.657,0-3,1.343-3,3s1.343,3,3,3h40c1.657,0,3-1.343,3-3S62.657,53,61,53z M3,11h58c1.657,0,3-1.343,3-3\r\n\t\t\t\ts-1.343-3-3-3H3C1.343,5,0,6.343,0,8S1.343,11,3,11z M61,37H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h58c1.657,0,3-1.343,3-3\r\n\t\t\t\tS62.657,37,61,37z M61,21H15c-1.657,0-3,1.343-3,3s1.343,3,3,3h5.999c0,0,0,0,0.001,0h40c1.657,0,3-1.343,3-3S62.657,21,61,21z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.text_right = text_right; \ No newline at end of file diff --git a/dist/ikons/tick.js b/dist/ikons/tick.js new file mode 100644 index 000000000..b07f94746 --- /dev/null +++ b/dist/ikons/tick.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.tick = void 0; +var tick = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "TICK_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "TICK" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "TICK" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M50,18c-0.828,0-1.578,0.336-2.121,0.879L27,39.757L16.121,28.879C15.578,28.336,14.828,28,14,28c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121l13,13C25.422,46.664,26.172,47,27,47s1.578-0.336,2.121-0.879l23-23\r\n\t\t\t\tC52.664,22.579,53,21.828,53,21C53,19.343,51.657,18,50,18z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M50,18c-0.828,0-1.578,0.336-2.121,0.879L27,39.757L16.121,28.879C15.578,28.336,14.828,28,14,28c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121l13,13C25.422,46.664,26.172,47,27,47s1.578-0.336,2.121-0.879l23-23\r\n\t\t\t\tC52.664,22.579,53,21.828,53,21C53,19.343,51.657,18,50,18z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.tick = tick; \ No newline at end of file diff --git a/dist/ikons/time.js b/dist/ikons/time.js new file mode 100644 index 000000000..ba6f7e655 --- /dev/null +++ b/dist/ikons/time.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.time = void 0; +var time = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "TIME_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "TIME" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "TIME" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M45,29H35V14c0-1.657-1.343-3-3-3s-3,1.343-3,3v18c0,1.657,1.343,3,3,3h13c1.657,0,3-1.343,3-3S46.657,29,45,29z M32,0\r\n\t\t\t\tC14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6\r\n\t\t\t\tc14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M45,29H35V14c0-1.657-1.343-3-3-3s-3,1.343-3,3v18c0,1.657,1.343,3,3,3h13c1.657,0,3-1.343,3-3S46.657,29,45,29z M32,0\r\n\t\t\t\tC14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6\r\n\t\t\t\tc14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.time = time; \ No newline at end of file diff --git a/dist/ikons/timer.js b/dist/ikons/timer.js new file mode 100644 index 000000000..85c5dc194 --- /dev/null +++ b/dist/ikons/timer.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.timer = void 0; +var timer = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "TIMER" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M32.129,16l-5.534,21.23c0,0-2.594,8.77,5.391,8.77c0,0,8.015-0.125,5.479-8.685\r\n\t\t\tL32.129,16z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32\r\n\t\t\tC6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.36,46.36,58,32,58z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M32.129,16l-5.534,21.23c0,0-2.594,8.77,5.391,8.77c0,0,8.015-0.125,5.479-8.685\r\n\t\t\tL32.129,16z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32\r\n\t\t\tC6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.36,46.36,58,32,58z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.timer = timer; \ No newline at end of file diff --git a/dist/ikons/tumblr.js b/dist/ikons/tumblr.js new file mode 100644 index 000000000..9e47aaa80 --- /dev/null +++ b/dist/ikons/tumblr.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.tumblr = void 0; +var tumblr = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "tumblr_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "tumblr" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "tumblr" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M42.41,53.584c-1.816,0-3.424-0.428-4.834-1.275c-1.062-0.629-2.039-1.718-2.428-2.767\r\n\t\t\t\tc-0.392-1.049-0.344-3.19-0.344-6.905V26.215h14.729V14.788H34.807V-0.028h-9.062c-0.405,3.308-1.15,6.026-2.231,8.16\r\n\t\t\t\tc-1.08,2.142-2.508,3.973-4.3,5.502c-1.78,1.525-4.681,2.699-7.184,3.513v9.068h8.654V48.67c0,2.934,0.305,5.167,0.915,6.708\r\n\t\t\t\tc0.614,1.537,1.706,2.997,3.291,4.368c1.577,1.359,3.487,2.42,5.725,3.162c2.238,0.734,3.955,1.101,6.869,1.101\r\n\t\t\t\tc2.565,0,4.951-0.258,7.16-0.778c2.207-0.521,4.674-1.429,7.395-2.711V50.419C48.844,52.527,45.637,53.584,42.41,53.584z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M42.41,53.584c-1.816,0-3.424-0.428-4.834-1.275c-1.062-0.629-2.039-1.718-2.428-2.767\r\n\t\t\t\tc-0.392-1.049-0.344-3.19-0.344-6.905V26.215h14.729V14.788H34.807V-0.028h-9.062c-0.405,3.308-1.15,6.026-2.231,8.16\r\n\t\t\t\tc-1.08,2.142-2.508,3.973-4.3,5.502c-1.78,1.525-4.681,2.699-7.184,3.513v9.068h8.654V48.67c0,2.934,0.305,5.167,0.915,6.708\r\n\t\t\t\tc0.614,1.537,1.706,2.997,3.291,4.368c1.577,1.359,3.487,2.42,5.725,3.162c2.238,0.734,3.955,1.101,6.869,1.101\r\n\t\t\t\tc2.565,0,4.951-0.258,7.16-0.778c2.207-0.521,4.674-1.429,7.395-2.711V50.419C48.844,52.527,45.637,53.584,42.41,53.584z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.tumblr = tumblr; \ No newline at end of file diff --git a/dist/ikons/twitter.js b/dist/ikons/twitter.js new file mode 100644 index 000000000..0fd0af4d1 --- /dev/null +++ b/dist/ikons/twitter.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.twitter = void 0; +var twitter = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "twitter_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "twitter" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "twitter" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M56.568,14.179v-0.032c0.558-0.218,0.998-0.68,1.441-1.022c2-1.541,3.301-3.57,4.26-6.164\r\n\t\t\t\tc-0.543,0.298-1.088,0.596-1.633,0.894c-1.681,0.853-4.533,2.079-6.728,2.267c-2.586-2.356-5.292-4.209-10.378-4.12\r\n\t\t\t\tc-0.534,0.064-1.068,0.128-1.602,0.192c-1.037,0.227-2.025,0.508-2.916,0.894c-3.724,1.616-6.263,4.631-7.431,8.814\r\n\t\t\t\tc-0.465,1.664-0.654,4.445-0.064,6.164c-2.101-0.003-4.135-0.334-5.894-0.767C18.69,19.594,14.372,17.29,9.578,13.54\r\n\t\t\t\tC8.17,12.439,6.789,11.191,5.67,9.804C5.309,9.357,4.74,8.965,4.485,8.43C4.463,8.42,4.442,8.409,4.421,8.398\r\n\t\t\t\tc-0.557,1.032-1.08,2.15-1.409,3.417c-1.3,4.994,0.755,9.188,2.947,11.912c0.664,0.826,1.741,1.338,2.402,2.108h0.064\r\n\t\t\t\tc-0.497,0.184-1.361-0.071-1.794-0.16c-1.024-0.211-1.897-0.405-2.755-0.766c-0.448-0.213-0.897-0.426-1.345-0.639\r\n\t\t\t\tc-0.021,5.517,2.766,9.103,6.182,11.241c1.114,0.697,2.672,1.636,4.292,1.724c-0.867,0.732-4.575,0.396-5.862,0.256\r\n\t\t\t\tc1.609,4.142,4.081,6.9,8.328,8.398c1.096,0.387,2.433,0.729,3.908,0.703c-0.783,0.93-2.454,1.688-3.556,2.331\r\n\t\t\t\tc-2.272,1.329-4.91,2.191-7.88,2.843c-1.191,0.26-2.457,0.207-3.748,0.414c-1.427,0.23-2.92-0.121-4.196-0.16\r\n\t\t\t\tc0.384,0.234,0.769,0.47,1.153,0.703c1.171,0.713,2.394,1.338,3.716,1.916c2.379,1.041,4.914,1.826,7.72,2.523\r\n\t\t\t\tc5.658,1.404,13.64,0.773,18.579-0.766c13.754-4.287,22.442-14.293,25.722-29.03c0.564-2.535,0.646-5.414,0.609-8.431\r\n\t\t\t\tc0.684-0.543,1.367-1.086,2.05-1.629c1.693-1.356,3.28-3.246,4.452-5.11v-0.032C61.768,12.864,59.418,14.149,56.568,14.179z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M56.568,14.179v-0.032c0.558-0.218,0.998-0.68,1.441-1.022c2-1.541,3.301-3.57,4.26-6.164\r\n\t\t\t\tc-0.543,0.298-1.088,0.596-1.633,0.894c-1.681,0.853-4.533,2.079-6.728,2.267c-2.586-2.356-5.292-4.209-10.378-4.12\r\n\t\t\t\tc-0.534,0.064-1.068,0.128-1.602,0.192c-1.037,0.227-2.025,0.508-2.916,0.894c-3.724,1.616-6.263,4.631-7.431,8.814\r\n\t\t\t\tc-0.465,1.664-0.654,4.445-0.064,6.164c-2.101-0.003-4.135-0.334-5.894-0.767C18.69,19.594,14.372,17.29,9.578,13.54\r\n\t\t\t\tC8.17,12.439,6.789,11.191,5.67,9.804C5.309,9.357,4.74,8.965,4.485,8.43C4.463,8.42,4.442,8.409,4.421,8.398\r\n\t\t\t\tc-0.557,1.032-1.08,2.15-1.409,3.417c-1.3,4.994,0.755,9.188,2.947,11.912c0.664,0.826,1.741,1.338,2.402,2.108h0.064\r\n\t\t\t\tc-0.497,0.184-1.361-0.071-1.794-0.16c-1.024-0.211-1.897-0.405-2.755-0.766c-0.448-0.213-0.897-0.426-1.345-0.639\r\n\t\t\t\tc-0.021,5.517,2.766,9.103,6.182,11.241c1.114,0.697,2.672,1.636,4.292,1.724c-0.867,0.732-4.575,0.396-5.862,0.256\r\n\t\t\t\tc1.609,4.142,4.081,6.9,8.328,8.398c1.096,0.387,2.433,0.729,3.908,0.703c-0.783,0.93-2.454,1.688-3.556,2.331\r\n\t\t\t\tc-2.272,1.329-4.91,2.191-7.88,2.843c-1.191,0.26-2.457,0.207-3.748,0.414c-1.427,0.23-2.92-0.121-4.196-0.16\r\n\t\t\t\tc0.384,0.234,0.769,0.47,1.153,0.703c1.171,0.713,2.394,1.338,3.716,1.916c2.379,1.041,4.914,1.826,7.72,2.523\r\n\t\t\t\tc5.658,1.404,13.64,0.773,18.579-0.766c13.754-4.287,22.442-14.293,25.722-29.03c0.564-2.535,0.646-5.414,0.609-8.431\r\n\t\t\t\tc0.684-0.543,1.367-1.086,2.05-1.629c1.693-1.356,3.28-3.246,4.452-5.11v-0.032C61.768,12.864,59.418,14.149,56.568,14.179z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.twitter = twitter; \ No newline at end of file diff --git a/dist/ikons/unlock.js b/dist/ikons/unlock.js new file mode 100644 index 000000000..a58fb8e95 --- /dev/null +++ b/dist/ikons/unlock.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.unlock = void 0; +var unlock = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "UNLOCK_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "UNLOCK" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "UNLOCK" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M55,32H20V18c0-6.627,5.373-12,12-12s12,5.373,12,12c0,1.657,1.343,3,3,3s3-1.343,3-3c0-9.941-8.059-18-18-18\r\n\t\t\t\tc-9.941,0-18,8.059-18,18v14H9c-1.657,0-3,1.343-3,3v26c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V35\r\n\t\t\t\tC58,33.343,56.657,32,55,32z M35,49.168V55c0,1.657-1.343,3-3,3s-3-1.343-3-3v-5.832c-1.786-1.039-3-2.953-3-5.168\r\n\t\t\t\tc0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6C38,46.215,36.786,48.129,35,49.168z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M55,32H20V18c0-6.627,5.373-12,12-12s12,5.373,12,12c0,1.657,1.343,3,3,3s3-1.343,3-3c0-9.941-8.059-18-18-18\r\n\t\t\t\tc-9.941,0-18,8.059-18,18v14H9c-1.657,0-3,1.343-3,3v26c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V35\r\n\t\t\t\tC58,33.343,56.657,32,55,32z M35,49.168V55c0,1.657-1.343,3-3,3s-3-1.343-3-3v-5.832c-1.786-1.039-3-2.953-3-5.168\r\n\t\t\t\tc0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6C38,46.215,36.786,48.129,35,49.168z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.unlock = unlock; \ No newline at end of file diff --git a/dist/ikons/upload.js b/dist/ikons/upload.js new file mode 100644 index 000000000..3c6530494 --- /dev/null +++ b/dist/ikons/upload.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.upload = void 0; +var upload = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "UPLOAD_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "UPLOAD" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "UPLOAD" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M23,24c0.885,0,1.681-0.384,2.23-0.993l0,0L29,18.818V37c0,1.657,1.343,3,3,3s3-1.343,3-3l0,0V18.818l3.77,4.189l0,0\r\n\t\t\t\tC39.318,23.617,40.115,24,41,24c1.657,0,3-1.343,3-3c0-0.772-0.292-1.475-0.77-2.007l0,0l-9-10l0,0C33.682,8.384,32.885,8,32,8\r\n\t\t\t\ts-1.681,0.384-2.23,0.993l0,0l-9,10l0,0C20.292,19.525,20,20.228,20,21C20,22.657,21.343,24,23,24z M55,35c-1.657,0-3,1.343-3,3\r\n\t\t\t\tv12H12V38c0-1.657-1.343-3-3-3s-3,1.343-3,3v15c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V38C58,36.343,56.657,35,55,35z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M23,24c0.885,0,1.681-0.384,2.23-0.993l0,0L29,18.818V37c0,1.657,1.343,3,3,3s3-1.343,3-3l0,0V18.818l3.77,4.189l0,0\r\n\t\t\t\tC39.318,23.617,40.115,24,41,24c1.657,0,3-1.343,3-3c0-0.772-0.292-1.475-0.77-2.007l0,0l-9-10l0,0C33.682,8.384,32.885,8,32,8\r\n\t\t\t\ts-1.681,0.384-2.23,0.993l0,0l-9,10l0,0C20.292,19.525,20,20.228,20,21C20,22.657,21.343,24,23,24z M55,35c-1.657,0-3,1.343-3,3\r\n\t\t\t\tv12H12V38c0-1.657-1.343-3-3-3s-3,1.343-3,3v15c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V38C58,36.343,56.657,35,55,35z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.upload = upload; \ No newline at end of file diff --git a/dist/ikons/user.js b/dist/ikons/user.js new file mode 100644 index 000000000..468a6b013 --- /dev/null +++ b/dist/ikons/user.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.user = void 0; +var user = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "USER_2_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "USER_1_" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "USER_1_" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M64.001,59.993c0,0,0-10.933-7.987-14.906c-5.055-2.515-3.107-0.591-9.313-3.164c-6.205-2.569-7.675-3.409-7.675-3.409\r\n\t\t\t\tl-0.055-5.893c0,0,2.324-1.764,3.049-7.337c1.451,0.42,1.942-1.701,2.021-3.056c0.086-1.309,0.858-5.389-0.917-5.025\r\n\t\t\t\tc0.363-2.724,0.648-5.187,0.52-6.491c-0.444-4.576-3.608-9.355-11.595-9.704c-6.79,0.349-11.198,5.131-11.643,9.707\r\n\t\t\t\tc-0.128,1.304,0.133,3.765,0.496,6.494c-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062\r\n\t\t\t\tc0.722,5.574,3.046,7.351,3.046,7.351l-0.058,5.925c0,0-1.47,0.897-7.675,3.466c-6.205,2.574-4.259,0.533-9.314,3.047\r\n\t\t\t\tC0,49.062,0,59.993,0,59.993h0.002C0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.003-0.001-0.005-0.001-0.007H64.001z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M64.001,59.993c0,0,0-10.933-7.987-14.906c-5.055-2.515-3.107-0.591-9.313-3.164c-6.205-2.569-7.675-3.409-7.675-3.409\r\n\t\t\t\tl-0.055-5.893c0,0,2.324-1.764,3.049-7.337c1.451,0.42,1.942-1.701,2.021-3.056c0.086-1.309,0.858-5.389-0.917-5.025\r\n\t\t\t\tc0.363-2.724,0.648-5.187,0.52-6.491c-0.444-4.576-3.608-9.355-11.595-9.704c-6.79,0.349-11.198,5.131-11.643,9.707\r\n\t\t\t\tc-0.128,1.304,0.133,3.765,0.496,6.494c-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062\r\n\t\t\t\tc0.722,5.574,3.046,7.351,3.046,7.351l-0.058,5.925c0,0-1.47,0.897-7.675,3.466c-6.205,2.574-4.259,0.533-9.314,3.047\r\n\t\t\t\tC0,49.062,0,59.993,0,59.993h0.002C0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.003-0.001-0.005-0.001-0.007H64.001z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.user = user; \ No newline at end of file diff --git a/dist/ikons/user_add.js b/dist/ikons/user_add.js new file mode 100644 index 000000000..d87117037 --- /dev/null +++ b/dist/ikons/user_add.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.user_add = void 0; +var user_add = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "USER__x2F__ADD_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "USER__x2F__ADD" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "USER__x2F__ADD" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M64.001,59.993c0,0-0.005-0.567-0.099-1.47C62.852,59.432,61.499,60,60,60c0,1.098-0.316,2.114-0.832,3H61\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.003-0.001-0.005-0.001-0.007H64.001z M42,54c0-3.314,2.686-6,6-6c0-1.952,0.945-3.668,2.389-4.764\r\n\t\t\t\tc-0.797-0.209-1.897-0.571-3.688-1.314c-6.205-2.57-7.675-3.408-7.675-3.408l-0.055-5.894c0,0,2.324-1.764,3.049-7.337\r\n\t\t\t\tc1.451,0.42,1.942-1.701,2.021-3.056c0.086-1.309,0.858-5.389-0.917-5.025c0.363-2.724,0.648-5.187,0.52-6.491\r\n\t\t\t\tc-0.444-4.576-3.608-9.355-11.595-9.704c-6.79,0.349-11.198,5.131-11.643,9.707c-0.128,1.304,0.133,3.765,0.496,6.494\r\n\t\t\t\tc-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.352,3.046,7.352l-0.058,5.924\r\n\t\t\t\tc0,0-1.47,0.896-7.675,3.466c-6.205,2.573-4.259,0.532-9.314,3.047C0,49.061,0,59.992,0,59.992h0.002C0.001,59.995,0,59.998,0,60\r\n\t\t\t\tc0,1.657,1.343,3,3,3h45.832C48.316,62.115,48,61.1,48,60C44.686,60,42,57.314,42,54z M63,54c0-1.657-1.343-3-3-3h-3v-3\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3s1.343,3,3,3h3v3c0,1.657,1.343,3,3,3s3-1.343,3-3v-3h3\r\n\t\t\t\tC61.657,57,63,55.657,63,54z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M64.001,59.993c0,0-0.005-0.567-0.099-1.47C62.852,59.432,61.499,60,60,60c0,1.098-0.316,2.114-0.832,3H61\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.003-0.001-0.005-0.001-0.007H64.001z M42,54c0-3.314,2.686-6,6-6c0-1.952,0.945-3.668,2.389-4.764\r\n\t\t\t\tc-0.797-0.209-1.897-0.571-3.688-1.314c-6.205-2.57-7.675-3.408-7.675-3.408l-0.055-5.894c0,0,2.324-1.764,3.049-7.337\r\n\t\t\t\tc1.451,0.42,1.942-1.701,2.021-3.056c0.086-1.309,0.858-5.389-0.917-5.025c0.363-2.724,0.648-5.187,0.52-6.491\r\n\t\t\t\tc-0.444-4.576-3.608-9.355-11.595-9.704c-6.79,0.349-11.198,5.131-11.643,9.707c-0.128,1.304,0.133,3.765,0.496,6.494\r\n\t\t\t\tc-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.352,3.046,7.352l-0.058,5.924\r\n\t\t\t\tc0,0-1.47,0.896-7.675,3.466c-6.205,2.573-4.259,0.532-9.314,3.047C0,49.061,0,59.992,0,59.992h0.002C0.001,59.995,0,59.998,0,60\r\n\t\t\t\tc0,1.657,1.343,3,3,3h45.832C48.316,62.115,48,61.1,48,60C44.686,60,42,57.314,42,54z M63,54c0-1.657-1.343-3-3-3h-3v-3\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3s1.343,3,3,3h3v3c0,1.657,1.343,3,3,3s3-1.343,3-3v-3h3\r\n\t\t\t\tC61.657,57,63,55.657,63,54z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.user_add = user_add; \ No newline at end of file diff --git a/dist/ikons/user_circle.js b/dist/ikons/user_circle.js new file mode 100644 index 000000000..980a912bc --- /dev/null +++ b/dist/ikons/user_circle.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.user_circle = void 0; +var user_circle = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "USER_3_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "USER" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "USER" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M51.253,49.43\r\n\t\t\t\tc-3.767-1.826-2.382-0.398-7.31-2.427c-5.041-2.073-6.235-2.749-6.235-2.749L37.664,39.5c0,0,1.888-1.422,2.477-5.917\r\n\t\t\t\tc1.178,0.338,1.578-1.372,1.642-2.464c0.069-1.055,0.696-4.346-0.745-4.052c0.295-2.197,0.527-4.183,0.421-5.235\r\n\t\t\t\tc-0.36-3.691-2.931-7.544-9.42-7.826c-5.517,0.282-9.098,4.138-9.46,7.829c-0.104,1.052,0.108,3.036,0.403,5.236\r\n\t\t\t\tc-1.441-0.297-0.821,2.999-0.758,4.054c0.07,1.092,0.46,2.809,1.641,2.469c0.587,4.495,2.475,5.93,2.475,5.93L26.293,44.3\r\n\t\t\t\tc0,0-1.195,0.724-6.236,2.796c-4.927,2.027-3.544,0.512-7.31,2.334C8.568,44.816,6,38.715,6,32C6,17.641,17.641,6,32,6\r\n\t\t\t\tc14.359,0,26,11.641,26,26C58,38.716,55.432,44.816,51.253,49.43z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M51.253,49.43\r\n\t\t\t\tc-3.767-1.826-2.382-0.398-7.31-2.427c-5.041-2.073-6.235-2.749-6.235-2.749L37.664,39.5c0,0,1.888-1.422,2.477-5.917\r\n\t\t\t\tc1.178,0.338,1.578-1.372,1.642-2.464c0.069-1.055,0.696-4.346-0.745-4.052c0.295-2.197,0.527-4.183,0.421-5.235\r\n\t\t\t\tc-0.36-3.691-2.931-7.544-9.42-7.826c-5.517,0.282-9.098,4.138-9.46,7.829c-0.104,1.052,0.108,3.036,0.403,5.236\r\n\t\t\t\tc-1.441-0.297-0.821,2.999-0.758,4.054c0.07,1.092,0.46,2.809,1.641,2.469c0.587,4.495,2.475,5.93,2.475,5.93L26.293,44.3\r\n\t\t\t\tc0,0-1.195,0.724-6.236,2.796c-4.927,2.027-3.544,0.512-7.31,2.334C8.568,44.816,6,38.715,6,32C6,17.641,17.641,6,32,6\r\n\t\t\t\tc14.359,0,26,11.641,26,26C58,38.716,55.432,44.816,51.253,49.43z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.user_circle = user_circle; \ No newline at end of file diff --git a/dist/ikons/user_delete.js b/dist/ikons/user_delete.js new file mode 100644 index 000000000..0c67e5d50 --- /dev/null +++ b/dist/ikons/user_delete.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.user_delete = void 0; +var user_delete = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "USER__x2F__DELETE_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "USER__x2F__DELETE" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "USER__x2F__DELETE" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M46.516,54l-1.758-1.757l0.016-0.017C43.682,51.146,43,49.659,43,48c0-2.775,1.895-5.088,4.454-5.773\r\n\t\t\t\tc-0.243-0.097-0.481-0.191-0.754-0.305c-6.205-2.57-7.675-3.408-7.675-3.408l-0.055-5.894c0,0,2.323-1.764,3.049-7.337\r\n\t\t\t\tc1.449,0.42,1.941-1.701,2.02-3.056c0.086-1.309,0.857-5.389-0.917-5.025c0.362-2.724,0.647-5.187,0.519-6.491\r\n\t\t\t\tc-0.443-4.576-3.607-9.355-11.594-9.704c-6.79,0.349-11.198,5.131-11.643,9.707c-0.128,1.304,0.133,3.765,0.496,6.494\r\n\t\t\t\tc-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.352,3.046,7.352l-0.058,5.924\r\n\t\t\t\tc0,0-1.47,0.896-7.675,3.466c-6.205,2.573-4.259,0.532-9.314,3.047c-7.988,3.976-7.988,14.907-7.988,14.907h0.002\r\n\t\t\t\tC0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h40.832C43.316,62.115,43,61.1,43,60c0-1.657,0.672-3.157,1.757-4.243L46.516,54\r\n\t\t\t\tz M59.243,54l3.879-3.878C63.664,49.578,64,48.828,64,48c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L55,49.758\r\n\t\t\t\tl-3.879-3.879C50.578,45.336,49.828,45,49,45c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L50.757,54l-3.879,3.879\r\n\t\t\t\tC46.336,58.422,46,59.172,46,60c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L55,58.243l3.879,3.879\r\n\t\t\t\tC59.422,62.664,60.172,63,61,63c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L59.243,54z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M46.516,54l-1.758-1.757l0.016-0.017C43.682,51.146,43,49.659,43,48c0-2.775,1.895-5.088,4.454-5.773\r\n\t\t\t\tc-0.243-0.097-0.481-0.191-0.754-0.305c-6.205-2.57-7.675-3.408-7.675-3.408l-0.055-5.894c0,0,2.323-1.764,3.049-7.337\r\n\t\t\t\tc1.449,0.42,1.941-1.701,2.02-3.056c0.086-1.309,0.857-5.389-0.917-5.025c0.362-2.724,0.647-5.187,0.519-6.491\r\n\t\t\t\tc-0.443-4.576-3.607-9.355-11.594-9.704c-6.79,0.349-11.198,5.131-11.643,9.707c-0.128,1.304,0.133,3.765,0.496,6.494\r\n\t\t\t\tc-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.352,3.046,7.352l-0.058,5.924\r\n\t\t\t\tc0,0-1.47,0.896-7.675,3.466c-6.205,2.573-4.259,0.532-9.314,3.047c-7.988,3.976-7.988,14.907-7.988,14.907h0.002\r\n\t\t\t\tC0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h40.832C43.316,62.115,43,61.1,43,60c0-1.657,0.672-3.157,1.757-4.243L46.516,54\r\n\t\t\t\tz M59.243,54l3.879-3.878C63.664,49.578,64,48.828,64,48c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L55,49.758\r\n\t\t\t\tl-3.879-3.879C50.578,45.336,49.828,45,49,45c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L50.757,54l-3.879,3.879\r\n\t\t\t\tC46.336,58.422,46,59.172,46,60c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L55,58.243l3.879,3.879\r\n\t\t\t\tC59.422,62.664,60.172,63,61,63c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L59.243,54z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.user_delete = user_delete; \ No newline at end of file diff --git a/dist/ikons/user_ok.js b/dist/ikons/user_ok.js new file mode 100644 index 000000000..c3ea54f2e --- /dev/null +++ b/dist/ikons/user_ok.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.user_ok = void 0; +var user_ok = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "USER__x2F__OK_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "USER__x2F__OK" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "USER__x2F__OK" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M44.757,58.243C43.672,57.157,43,55.657,43,54c0-3.314,2.686-6,6-6c1.533,0,2.916,0.592,3.977,1.538l3.781-3.781\r\n\t\t\t\tc0.047-0.046,0.104-0.08,0.15-0.124c-0.299-0.183-0.57-0.386-0.895-0.547c-5.055-2.516-3.107-0.591-9.313-3.164\r\n\t\t\t\tc-6.205-2.57-7.675-3.408-7.675-3.408l-0.055-5.894c0,0,2.323-1.764,3.049-7.337c1.449,0.42,1.94-1.701,2.02-3.056\r\n\t\t\t\tc0.086-1.309,0.857-5.389-0.917-5.025c0.362-2.724,0.647-5.187,0.519-6.491c-0.442-4.576-3.606-9.355-11.594-9.704\r\n\t\t\t\tc-6.79,0.349-11.198,5.131-11.643,9.707c-0.128,1.304,0.133,3.765,0.496,6.494c-1.774-0.369-1.01,3.719-0.932,5.027\r\n\t\t\t\tc0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.352,3.046,7.352l-0.058,5.924c0,0-1.47,0.896-7.675,3.466\r\n\t\t\t\tc-6.205,2.573-4.259,0.532-9.314,3.047c-7.988,3.976-7.988,14.907-7.988,14.907h0.002C0.001,59.995,0,59.998,0,60\r\n\t\t\t\tc0,1.657,1.343,3,3,3h46.691c-0.336-0.223-0.65-0.475-0.934-0.757L44.757,58.243z M64.001,59.993c0,0-0.008-1.709-0.498-4.011\r\n\t\t\t\tl-6.261,6.261c-0.284,0.282-0.598,0.534-0.934,0.757H61c1.657,0,3-1.343,3-3c0-0.003-0.001-0.005-0.001-0.007H64.001z M64,50\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L53,53.757l-1.879-1.879C50.578,51.336,49.828,51,49,51\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.829,0.336,1.578,0.879,2.121l4,4C51.422,60.664,52.172,61,53,61s1.578-0.336,2.121-0.879l8-8\r\n\t\t\t\tC63.664,51.579,64,50.828,64,50z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M44.757,58.243C43.672,57.157,43,55.657,43,54c0-3.314,2.686-6,6-6c1.533,0,2.916,0.592,3.977,1.538l3.781-3.781\r\n\t\t\t\tc0.047-0.046,0.104-0.08,0.15-0.124c-0.299-0.183-0.57-0.386-0.895-0.547c-5.055-2.516-3.107-0.591-9.313-3.164\r\n\t\t\t\tc-6.205-2.57-7.675-3.408-7.675-3.408l-0.055-5.894c0,0,2.323-1.764,3.049-7.337c1.449,0.42,1.94-1.701,2.02-3.056\r\n\t\t\t\tc0.086-1.309,0.857-5.389-0.917-5.025c0.362-2.724,0.647-5.187,0.519-6.491c-0.442-4.576-3.606-9.355-11.594-9.704\r\n\t\t\t\tc-6.79,0.349-11.198,5.131-11.643,9.707c-0.128,1.304,0.133,3.765,0.496,6.494c-1.774-0.369-1.01,3.719-0.932,5.027\r\n\t\t\t\tc0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.352,3.046,7.352l-0.058,5.924c0,0-1.47,0.896-7.675,3.466\r\n\t\t\t\tc-6.205,2.573-4.259,0.532-9.314,3.047c-7.988,3.976-7.988,14.907-7.988,14.907h0.002C0.001,59.995,0,59.998,0,60\r\n\t\t\t\tc0,1.657,1.343,3,3,3h46.691c-0.336-0.223-0.65-0.475-0.934-0.757L44.757,58.243z M64.001,59.993c0,0-0.008-1.709-0.498-4.011\r\n\t\t\t\tl-6.261,6.261c-0.284,0.282-0.598,0.534-0.934,0.757H61c1.657,0,3-1.343,3-3c0-0.003-0.001-0.005-0.001-0.007H64.001z M64,50\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L53,53.757l-1.879-1.879C50.578,51.336,49.828,51,49,51\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.829,0.336,1.578,0.879,2.121l4,4C51.422,60.664,52.172,61,53,61s1.578-0.336,2.121-0.879l8-8\r\n\t\t\t\tC63.664,51.579,64,50.828,64,50z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.user_ok = user_ok; \ No newline at end of file diff --git a/dist/ikons/user_remove.js b/dist/ikons/user_remove.js new file mode 100644 index 000000000..bf1c242bf --- /dev/null +++ b/dist/ikons/user_remove.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.user_remove = void 0; +var user_remove = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "USER__x2F__REMOVE_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "USER__x2F__REMOVE" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "USER__x2F__REMOVE" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M45,54c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3s-1.343-3-3-3H48C46.343,51,45,52.343,45,54z M64.001,59.993\r\n\t\t\t\tc0,0-0.005-0.571-0.097-1.472C62.854,59.43,61.5,60,60,60H48c-3.314,0-6-2.686-6-6s2.686-6,6-6h11.764\r\n\t\t\t\tc-0.998-1.141-2.226-2.154-3.75-2.913c-5.055-2.515-3.107-0.591-9.313-3.164c-6.205-2.569-7.675-3.409-7.675-3.409l-0.055-5.893\r\n\t\t\t\tc0,0,2.324-1.764,3.049-7.337c1.451,0.42,1.942-1.701,2.021-3.056c0.086-1.309,0.858-5.389-0.917-5.025\r\n\t\t\t\tc0.363-2.724,0.648-5.187,0.52-6.491c-0.443-4.576-3.608-9.355-11.595-9.704c-6.79,0.349-11.198,5.131-11.643,9.707\r\n\t\t\t\tc-0.128,1.304,0.133,3.765,0.496,6.494c-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062\r\n\t\t\t\tc0.722,5.574,3.046,7.351,3.046,7.351l-0.058,5.925c0,0-1.47,0.897-7.675,3.466c-6.205,2.574-4.259,0.533-9.314,3.047\r\n\t\t\t\tC0,49.062,0,59.993,0,59.993h0.002C0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.003-0.001-0.005-0.001-0.007H64.001z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M45,54c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3s-1.343-3-3-3H48C46.343,51,45,52.343,45,54z M64.001,59.993\r\n\t\t\t\tc0,0-0.005-0.571-0.097-1.472C62.854,59.43,61.5,60,60,60H48c-3.314,0-6-2.686-6-6s2.686-6,6-6h11.764\r\n\t\t\t\tc-0.998-1.141-2.226-2.154-3.75-2.913c-5.055-2.515-3.107-0.591-9.313-3.164c-6.205-2.569-7.675-3.409-7.675-3.409l-0.055-5.893\r\n\t\t\t\tc0,0,2.324-1.764,3.049-7.337c1.451,0.42,1.942-1.701,2.021-3.056c0.086-1.309,0.858-5.389-0.917-5.025\r\n\t\t\t\tc0.363-2.724,0.648-5.187,0.52-6.491c-0.443-4.576-3.608-9.355-11.595-9.704c-6.79,0.349-11.198,5.131-11.643,9.707\r\n\t\t\t\tc-0.128,1.304,0.133,3.765,0.496,6.494c-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062\r\n\t\t\t\tc0.722,5.574,3.046,7.351,3.046,7.351l-0.058,5.925c0,0-1.47,0.897-7.675,3.466c-6.205,2.574-4.259,0.533-9.314,3.047\r\n\t\t\t\tC0,49.062,0,59.993,0,59.993h0.002C0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.003-0.001-0.005-0.001-0.007H64.001z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.user_remove = user_remove; \ No newline at end of file diff --git a/dist/ikons/user_square.js b/dist/ikons/user_square.js new file mode 100644 index 000000000..e2b4325c6 --- /dev/null +++ b/dist/ikons/user_square.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.user_square = void 0; +var user_square = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "USER" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3\r\n\t\t\tC64,1.343,62.657,0,61,0z M58,56.843c-0.888-2.64-2.564-5.557-5.739-7.157c-4.265-2.15-2.623-0.505-7.858-2.705\r\n\t\t\tc-5.235-2.197-6.475-2.915-6.475-2.915l-0.046-5.039c0,0,1.961-1.508,2.573-6.273c1.224,0.359,1.638-1.454,1.704-2.612\r\n\t\t\tc0.073-1.119,0.724-4.607-0.774-4.296c0.306-2.329,0.547-4.434,0.438-5.549c-0.374-3.912-3.044-7.998-9.782-8.296\r\n\t\t\tc-5.729,0.299-9.448,4.386-9.823,8.299c-0.108,1.115,0.112,3.218,0.418,5.551c-1.497-0.315-0.852,3.179-0.787,4.297\r\n\t\t\tc0.072,1.158,0.477,2.977,1.705,2.618c0.609,4.765,2.57,6.285,2.57,6.285l-0.049,5.065c0,0-1.24,0.767-6.476,2.963\r\n\t\t\tc-5.235,2.201-3.594,0.455-7.858,2.605C8.565,51.285,6.888,54.203,6,56.843V6h52V56.843z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3\r\n\t\t\tC64,1.343,62.657,0,61,0z M58,56.843c-0.888-2.64-2.564-5.557-5.739-7.157c-4.265-2.15-2.623-0.505-7.858-2.705\r\n\t\t\tc-5.235-2.197-6.475-2.915-6.475-2.915l-0.046-5.039c0,0,1.961-1.508,2.573-6.273c1.224,0.359,1.638-1.454,1.704-2.612\r\n\t\t\tc0.073-1.119,0.724-4.607-0.774-4.296c0.306-2.329,0.547-4.434,0.438-5.549c-0.374-3.912-3.044-7.998-9.782-8.296\r\n\t\t\tc-5.729,0.299-9.448,4.386-9.823,8.299c-0.108,1.115,0.112,3.218,0.418,5.551c-1.497-0.315-0.852,3.179-0.787,4.297\r\n\t\t\tc0.072,1.158,0.477,2.977,1.705,2.618c0.609,4.765,2.57,6.285,2.57,6.285l-0.049,5.065c0,0-1.24,0.767-6.476,2.963\r\n\t\t\tc-5.235,2.201-3.594,0.455-7.858,2.605C8.565,51.285,6.888,54.203,6,56.843V6h52V56.843z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.user_square = user_square; \ No newline at end of file diff --git a/dist/ikons/users.js b/dist/ikons/users.js new file mode 100644 index 000000000..c0b582d5a --- /dev/null +++ b/dist/ikons/users.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.users = void 0; +var users = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "USERS_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "USERS" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "USERS" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M40.837,41.984c-3.685-1.828-2.267-0.43-6.79-2.299c-4.524-1.867-5.595-2.478-5.595-2.478l-0.04-4.282\r\n\t\t\t\tc0,0,1.694-1.282,2.223-5.332c1.057,0.305,1.416-1.236,1.473-2.22c0.063-0.951,0.626-3.916-0.669-3.651\r\n\t\t\t\tc0.265-1.979,0.472-3.769,0.378-4.716c-0.323-3.325-2.63-6.798-8.453-7.051c-4.95,0.254-8.164,3.728-8.488,7.054\r\n\t\t\t\tc-0.093,0.947,0.097,2.735,0.361,4.718c-1.293-0.268-0.737,2.702-0.68,3.652c0.062,0.984,0.412,2.53,1.473,2.225\r\n\t\t\t\tc0.526,4.05,2.221,5.342,2.221,5.342l-0.042,4.304c0,0-1.072,0.651-5.596,2.519c-4.524,1.871-3.105,0.388-6.79,2.215\r\n\t\t\t\tc-5.824,2.889-5.824,10.832-5.824,10.832h0.002c0,0-0.001,0.002-0.001,0.004C0,54.023,0.979,55,2.187,55h42.286\r\n\t\t\t\tc1.207,0,2.187-0.977,2.187-2.18c0-0.002,0-0.004,0-0.006h0.001C46.66,52.814,46.66,44.872,40.837,41.984z M63.9,53.012\r\n\t\t\t\tc0,0,0-7.226-5.297-9.854c-3.354-1.663-2.062-0.391-6.179-2.092c-4.116-1.699-5.09-2.254-5.09-2.254l-0.036-3.896\r\n\t\t\t\tc0,0,1.541-1.166,2.021-4.85c0.963,0.277,1.289-1.124,1.341-2.02c0.057-0.865,0.569-3.562-0.608-3.322\r\n\t\t\t\tc0.241-1.801,0.43-3.429,0.344-4.291c-0.293-3.025-2.393-6.184-7.689-6.415c-4.504,0.231-7.428,3.392-7.723,6.417\r\n\t\t\t\tc-0.084,0.862,0.089,2.489,0.33,4.293c-1.178-0.244-0.67,2.458-0.619,3.323c0.058,0.896,0.375,2.302,1.341,2.024\r\n\t\t\t\tc0.479,3.685,2.021,4.86,2.021,4.86l-0.039,3.901c1.4,0.331,1.588,0.063,4.41,1.464c6.604,3.275,6.604,12.282,6.604,12.282\r\n\t\t\t\th-0.002c0,0.002,0,0.004,0,0.006c0,1.181-0.831,2.165-1.942,2.41H61.91c1.099,0,1.99-0.888,1.99-1.983\r\n\t\t\t\tC63.9,53.014,63.9,53.014,63.9,53.012L63.9,53.012L63.9,53.012z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M40.837,41.984c-3.685-1.828-2.267-0.43-6.79-2.299c-4.524-1.867-5.595-2.478-5.595-2.478l-0.04-4.282\r\n\t\t\t\tc0,0,1.694-1.282,2.223-5.332c1.057,0.305,1.416-1.236,1.473-2.22c0.063-0.951,0.626-3.916-0.669-3.651\r\n\t\t\t\tc0.265-1.979,0.472-3.769,0.378-4.716c-0.323-3.325-2.63-6.798-8.453-7.051c-4.95,0.254-8.164,3.728-8.488,7.054\r\n\t\t\t\tc-0.093,0.947,0.097,2.735,0.361,4.718c-1.293-0.268-0.737,2.702-0.68,3.652c0.062,0.984,0.412,2.53,1.473,2.225\r\n\t\t\t\tc0.526,4.05,2.221,5.342,2.221,5.342l-0.042,4.304c0,0-1.072,0.651-5.596,2.519c-4.524,1.871-3.105,0.388-6.79,2.215\r\n\t\t\t\tc-5.824,2.889-5.824,10.832-5.824,10.832h0.002c0,0-0.001,0.002-0.001,0.004C0,54.023,0.979,55,2.187,55h42.286\r\n\t\t\t\tc1.207,0,2.187-0.977,2.187-2.18c0-0.002,0-0.004,0-0.006h0.001C46.66,52.814,46.66,44.872,40.837,41.984z M63.9,53.012\r\n\t\t\t\tc0,0,0-7.226-5.297-9.854c-3.354-1.663-2.062-0.391-6.179-2.092c-4.116-1.699-5.09-2.254-5.09-2.254l-0.036-3.896\r\n\t\t\t\tc0,0,1.541-1.166,2.021-4.85c0.963,0.277,1.289-1.124,1.341-2.02c0.057-0.865,0.569-3.562-0.608-3.322\r\n\t\t\t\tc0.241-1.801,0.43-3.429,0.344-4.291c-0.293-3.025-2.393-6.184-7.689-6.415c-4.504,0.231-7.428,3.392-7.723,6.417\r\n\t\t\t\tc-0.084,0.862,0.089,2.489,0.33,4.293c-1.178-0.244-0.67,2.458-0.619,3.323c0.058,0.896,0.375,2.302,1.341,2.024\r\n\t\t\t\tc0.479,3.685,2.021,4.86,2.021,4.86l-0.039,3.901c1.4,0.331,1.588,0.063,4.41,1.464c6.604,3.275,6.604,12.282,6.604,12.282\r\n\t\t\t\th-0.002c0,0.002,0,0.004,0,0.006c0,1.181-0.831,2.165-1.942,2.41H61.91c1.099,0,1.99-0.888,1.99-1.983\r\n\t\t\t\tC63.9,53.014,63.9,53.014,63.9,53.012L63.9,53.012L63.9,53.012z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.users = users; \ No newline at end of file diff --git a/dist/ikons/view.js b/dist/ikons/view.js new file mode 100644 index 000000000..0d5c52f73 --- /dev/null +++ b/dist/ikons/view.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.view = void 0; +var view = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "VIEW_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "VIEW" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "VIEW" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M32,26c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6c3.314,0,6-2.686,6-6C38,28.686,35.314,26,32,26z M63.997,32.379\r\n\t\t\t\tc-0.001-0.028-0.004-0.054-0.006-0.081c-0.001-0.014-0.003-0.028-0.005-0.041c0-0.02-0.004-0.039-0.008-0.058\r\n\t\t\t\tc-0.002-0.023-0.004-0.046-0.008-0.068c-0.002-0.003-0.002-0.006-0.002-0.009c-0.078-0.506-0.312-0.981-0.669-1.346\r\n\t\t\t\tc-2.042-2.476-4.471-4.68-6.94-6.692c-5.318-4.337-11.402-7.964-18.116-9.425c-3.882-0.844-7.786-0.879-11.688-0.165\r\n\t\t\t\tc-3.549,0.649-6.969,2-10.17,3.674c-5.011,2.62-9.587,6.231-13.574,10.28c-0.738,0.749-1.472,1.514-2.143,2.328\r\n\t\t\t\tc-0.893,1.083-0.893,2.367,0,3.451c2.042,2.476,4.47,4.678,6.94,6.691c5.32,4.337,11.403,7.963,18.118,9.424\r\n\t\t\t\tc3.881,0.844,7.788,0.881,11.688,0.166c3.548-0.65,6.968-2,10.171-3.673c5.011-2.621,9.586-6.231,13.574-10.28\r\n\t\t\t\tc0.737-0.75,1.471-1.514,2.143-2.328c0.357-0.367,0.591-0.84,0.669-1.348c0-0.003,0.002-0.006,0.002-0.008\r\n\t\t\t\tc0.004-0.023,0.006-0.045,0.008-0.068c0.004-0.019,0.006-0.039,0.008-0.058c0.002-0.015,0.003-0.027,0.005-0.041\r\n\t\t\t\tc0.002-0.026,0.004-0.052,0.006-0.08c0.002-0.041,0.003-0.081,0.003-0.122C64.001,32.459,63.998,32.419,63.997,32.379z M32,44\r\n\t\t\t\tc-6.627,0-12-5.372-12-12s5.372-12,12-12s12,5.373,12,12C44,38.628,38.627,44,32,44z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M32,26c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6c3.314,0,6-2.686,6-6C38,28.686,35.314,26,32,26z M63.997,32.379\r\n\t\t\t\tc-0.001-0.028-0.004-0.054-0.006-0.081c-0.001-0.014-0.003-0.028-0.005-0.041c0-0.02-0.004-0.039-0.008-0.058\r\n\t\t\t\tc-0.002-0.023-0.004-0.046-0.008-0.068c-0.002-0.003-0.002-0.006-0.002-0.009c-0.078-0.506-0.312-0.981-0.669-1.346\r\n\t\t\t\tc-2.042-2.476-4.471-4.68-6.94-6.692c-5.318-4.337-11.402-7.964-18.116-9.425c-3.882-0.844-7.786-0.879-11.688-0.165\r\n\t\t\t\tc-3.549,0.649-6.969,2-10.17,3.674c-5.011,2.62-9.587,6.231-13.574,10.28c-0.738,0.749-1.472,1.514-2.143,2.328\r\n\t\t\t\tc-0.893,1.083-0.893,2.367,0,3.451c2.042,2.476,4.47,4.678,6.94,6.691c5.32,4.337,11.403,7.963,18.118,9.424\r\n\t\t\t\tc3.881,0.844,7.788,0.881,11.688,0.166c3.548-0.65,6.968-2,10.171-3.673c5.011-2.621,9.586-6.231,13.574-10.28\r\n\t\t\t\tc0.737-0.75,1.471-1.514,2.143-2.328c0.357-0.367,0.591-0.84,0.669-1.348c0-0.003,0.002-0.006,0.002-0.008\r\n\t\t\t\tc0.004-0.023,0.006-0.045,0.008-0.068c0.004-0.019,0.006-0.039,0.008-0.058c0.002-0.015,0.003-0.027,0.005-0.041\r\n\t\t\t\tc0.002-0.026,0.004-0.052,0.006-0.08c0.002-0.041,0.003-0.081,0.003-0.122C64.001,32.459,63.998,32.419,63.997,32.379z M32,44\r\n\t\t\t\tc-6.627,0-12-5.372-12-12s5.372-12,12-12s12,5.373,12,12C44,38.628,38.627,44,32,44z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.view = view; \ No newline at end of file diff --git a/dist/ikons/view_off.js b/dist/ikons/view_off.js new file mode 100644 index 000000000..007bcfdde --- /dev/null +++ b/dist/ikons/view_off.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.view_off = void 0; +var view_off = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "VIEW__x2F__OFF_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "VIEW__x2F__OFF" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "VIEW__x2F__OFF" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M26.044,31.304l7.604-5.069C33.124,26.085,32.572,26,32,26C28.922,26,26.389,28.319,26.044,31.304z M58.32,16.755\r\n\t\t\t\tC58.729,16.487,59,16.025,59,15.5c0-0.828-0.672-1.5-1.5-1.5c-0.303,0-0.585,0.091-0.82,0.245v-0.001l-0.018,0.012L4.679,48.245\r\n\t\t\t\tl0,0C4.271,48.514,4,48.975,4,49.5C4,50.328,4.672,51,5.5,51c0.303,0,0.585-0.091,0.82-0.245v0.001l0.018-0.012L58.32,16.755\r\n\t\t\t\tL58.32,16.755z M9.455,42.364L10,42l10.409-6.939C20.151,34.082,20,33.061,20,32c0-6.628,5.373-12,12-12\r\n\t\t\t\tc2.742,0,5.262,0.93,7.283,2.478L46,18l0.552-0.345c-2.647-1.317-5.415-2.367-8.308-2.996c-3.881-0.844-7.786-0.879-11.687-0.165\r\n\t\t\t\tc-3.549,0.649-6.969,2-10.17,3.674c-5.011,2.62-9.586,6.231-13.574,10.28c-0.738,0.749-1.472,1.514-2.143,2.328\r\n\t\t\t\tc-0.893,1.083-0.893,2.367,0,3.451c2.042,2.476,4.47,4.678,6.94,6.691C8.214,41.41,8.831,41.891,9.455,42.364z M63.997,32.379\r\n\t\t\t\tc-0.001-0.028-0.004-0.054-0.006-0.081c-0.001-0.014-0.003-0.028-0.005-0.041c0-0.02-0.004-0.039-0.008-0.058\r\n\t\t\t\tc-0.002-0.023-0.004-0.046-0.008-0.068c-0.002-0.003-0.002-0.006-0.002-0.009c-0.078-0.506-0.312-0.981-0.669-1.346\r\n\t\t\t\tc-2.042-2.476-4.471-4.68-6.94-6.692c-0.676-0.552-1.366-1.092-2.068-1.618l-10.576,6.958C43.898,30.255,44,31.115,44,32\r\n\t\t\t\tc0,6.627-5.373,12-12,12c-2.615,0-5.026-0.846-6.997-2.266L17,47l-0.09,0.09c2.8,1.439,5.739,2.581,8.818,3.25\r\n\t\t\t\tc3.881,0.844,7.788,0.881,11.688,0.166c3.548-0.65,6.968-2,10.171-3.673c5.011-2.621,9.586-6.231,13.574-10.28\r\n\t\t\t\tc0.737-0.75,1.471-1.514,2.144-2.328c0.356-0.367,0.59-0.841,0.668-1.348c0-0.003,0.002-0.006,0.002-0.008\r\n\t\t\t\tc0.004-0.023,0.006-0.045,0.008-0.068c0.004-0.019,0.006-0.039,0.009-0.058c0.001-0.015,0.003-0.027,0.004-0.041\r\n\t\t\t\tc0.002-0.026,0.004-0.052,0.006-0.08c0.002-0.041,0.003-0.081,0.003-0.122C64.001,32.459,63.998,32.419,63.997,32.379z\r\n\t\t\t\t M37.861,33.275l-7.01,4.613C31.223,37.96,31.607,38,32,38C34.876,38,37.275,35.977,37.861,33.275z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M26.044,31.304l7.604-5.069C33.124,26.085,32.572,26,32,26C28.922,26,26.389,28.319,26.044,31.304z M58.32,16.755\r\n\t\t\t\tC58.729,16.487,59,16.025,59,15.5c0-0.828-0.672-1.5-1.5-1.5c-0.303,0-0.585,0.091-0.82,0.245v-0.001l-0.018,0.012L4.679,48.245\r\n\t\t\t\tl0,0C4.271,48.514,4,48.975,4,49.5C4,50.328,4.672,51,5.5,51c0.303,0,0.585-0.091,0.82-0.245v0.001l0.018-0.012L58.32,16.755\r\n\t\t\t\tL58.32,16.755z M9.455,42.364L10,42l10.409-6.939C20.151,34.082,20,33.061,20,32c0-6.628,5.373-12,12-12\r\n\t\t\t\tc2.742,0,5.262,0.93,7.283,2.478L46,18l0.552-0.345c-2.647-1.317-5.415-2.367-8.308-2.996c-3.881-0.844-7.786-0.879-11.687-0.165\r\n\t\t\t\tc-3.549,0.649-6.969,2-10.17,3.674c-5.011,2.62-9.586,6.231-13.574,10.28c-0.738,0.749-1.472,1.514-2.143,2.328\r\n\t\t\t\tc-0.893,1.083-0.893,2.367,0,3.451c2.042,2.476,4.47,4.678,6.94,6.691C8.214,41.41,8.831,41.891,9.455,42.364z M63.997,32.379\r\n\t\t\t\tc-0.001-0.028-0.004-0.054-0.006-0.081c-0.001-0.014-0.003-0.028-0.005-0.041c0-0.02-0.004-0.039-0.008-0.058\r\n\t\t\t\tc-0.002-0.023-0.004-0.046-0.008-0.068c-0.002-0.003-0.002-0.006-0.002-0.009c-0.078-0.506-0.312-0.981-0.669-1.346\r\n\t\t\t\tc-2.042-2.476-4.471-4.68-6.94-6.692c-0.676-0.552-1.366-1.092-2.068-1.618l-10.576,6.958C43.898,30.255,44,31.115,44,32\r\n\t\t\t\tc0,6.627-5.373,12-12,12c-2.615,0-5.026-0.846-6.997-2.266L17,47l-0.09,0.09c2.8,1.439,5.739,2.581,8.818,3.25\r\n\t\t\t\tc3.881,0.844,7.788,0.881,11.688,0.166c3.548-0.65,6.968-2,10.171-3.673c5.011-2.621,9.586-6.231,13.574-10.28\r\n\t\t\t\tc0.737-0.75,1.471-1.514,2.144-2.328c0.356-0.367,0.59-0.841,0.668-1.348c0-0.003,0.002-0.006,0.002-0.008\r\n\t\t\t\tc0.004-0.023,0.006-0.045,0.008-0.068c0.004-0.019,0.006-0.039,0.009-0.058c0.001-0.015,0.003-0.027,0.004-0.041\r\n\t\t\t\tc0.002-0.026,0.004-0.052,0.006-0.08c0.002-0.041,0.003-0.081,0.003-0.122C64.001,32.459,63.998,32.419,63.997,32.379z\r\n\t\t\t\t M37.861,33.275l-7.01,4.613C31.223,37.96,31.607,38,32,38C34.876,38,37.275,35.977,37.861,33.275z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.view_off = view_off; \ No newline at end of file diff --git a/dist/ikons/vimeo.js b/dist/ikons/vimeo.js new file mode 100644 index 000000000..52457df99 --- /dev/null +++ b/dist/ikons/vimeo.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.vimeo = void 0; +var vimeo = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "vimeo_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "vimeo" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "vimeo" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M36.348,18.728c2.748-0.624,7.539-1.522,8.529,1.306c1.246,8.476-4.611,15.407-9.84,19.602\r\n\t\t\t\tC24.919,34.128,32.523,8.81,21.915,4.633c-5.448-2.145-10.31,2.79-14.434,6.255C4.788,13.151-0.013,16.758,0,19.531v0.073\r\n\t\t\t\tc0.023,0.633,0.301,1.221,0.921,1.738c2.13,3.51,3.998-2.43,7.872-1.306c8.471,6.948,5.793,37.749,18.37,39.856\r\n\t\t\t\tc4.882,0.817,11.08-3.648,14.433-6.535c4.625-3.98,9.924-10.722,13.777-16.334c0,0,9.677-12.741,8.529-23.521\r\n\t\t\t\tC61.789-4.107,36.207,5.801,36.348,18.728z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M36.348,18.728c2.748-0.624,7.539-1.522,8.529,1.306c1.246,8.476-4.611,15.407-9.84,19.602\r\n\t\t\t\tC24.919,34.128,32.523,8.81,21.915,4.633c-5.448-2.145-10.31,2.79-14.434,6.255C4.788,13.151-0.013,16.758,0,19.531v0.073\r\n\t\t\t\tc0.023,0.633,0.301,1.221,0.921,1.738c2.13,3.51,3.998-2.43,7.872-1.306c8.471,6.948,5.793,37.749,18.37,39.856\r\n\t\t\t\tc4.882,0.817,11.08-3.648,14.433-6.535c4.625-3.98,9.924-10.722,13.777-16.334c0,0,9.677-12.741,8.529-23.521\r\n\t\t\t\tC61.789-4.107,36.207,5.801,36.348,18.728z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.vimeo = vimeo; \ No newline at end of file diff --git a/dist/ikons/voicemail.js b/dist/ikons/voicemail.js new file mode 100644 index 000000000..702fe36d6 --- /dev/null +++ b/dist/ikons/voicemail.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.voicemail = void 0; +var voicemail = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "VOICEMAIL_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "VOICEMAIL" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "VOICEMAIL" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M50,18c-7.732,0-14,6.268-14,14c0,2.977,0.936,5.73,2.52,8H25.48c1.584-2.27,2.52-5.023,2.52-8c0-7.732-6.268-14-14-14\r\n\t\t\t\tS0,24.268,0,32c0,7.732,6.268,14,14,14h36c7.732,0,14-6.268,14-14C64,24.268,57.732,18,50,18z M14,40c-4.418,0-8-3.582-8-8\r\n\t\t\t\ts3.582-8,8-8s8,3.582,8,8S18.418,40,14,40z M50,40c-4.418,0-8-3.582-8-8s3.582-8,8-8s8,3.582,8,8S54.418,40,50,40z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M50,18c-7.732,0-14,6.268-14,14c0,2.977,0.936,5.73,2.52,8H25.48c1.584-2.27,2.52-5.023,2.52-8c0-7.732-6.268-14-14-14\r\n\t\t\t\tS0,24.268,0,32c0,7.732,6.268,14,14,14h36c7.732,0,14-6.268,14-14C64,24.268,57.732,18,50,18z M14,40c-4.418,0-8-3.582-8-8\r\n\t\t\t\ts3.582-8,8-8s8,3.582,8,8S18.418,40,14,40z M50,40c-4.418,0-8-3.582-8-8s3.582-8,8-8s8,3.582,8,8S54.418,40,50,40z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.voicemail = voicemail; \ No newline at end of file diff --git a/dist/ikons/volume_1.js b/dist/ikons/volume_1.js new file mode 100644 index 000000000..2f0710c57 --- /dev/null +++ b/dist/ikons/volume_1.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.volume_1 = void 0; +var volume_1 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "VOLUME_1_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "VOLUME_1" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "VOLUME_1" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M36,16c-0.721,0-1.374,0.265-1.891,0.689l-0.01-0.011l-10.162,8.315h-9.946v0.008C12.339,25.006,11,26.346,11,28v10\r\n\t\t\t\tc0,1.657,1.343,3,3,3h10.024l10.21,7.426l0.006-0.007C34.736,48.781,35.34,49,36,49c1.657,0,3-1.343,3-3V19\r\n\t\t\t\tC39,17.343,37.657,16,36,16z M47.902,18.926l-2.846,2.847C47.52,24.852,49,28.75,49,33s-1.48,8.148-3.943,11.227l2.846,2.848\r\n\t\t\t\tC51.083,43.26,53,38.355,53,33C53,27.645,51.083,22.74,47.902,18.926z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M36,16c-0.721,0-1.374,0.265-1.891,0.689l-0.01-0.011l-10.162,8.315h-9.946v0.008C12.339,25.006,11,26.346,11,28v10\r\n\t\t\t\tc0,1.657,1.343,3,3,3h10.024l10.21,7.426l0.006-0.007C34.736,48.781,35.34,49,36,49c1.657,0,3-1.343,3-3V19\r\n\t\t\t\tC39,17.343,37.657,16,36,16z M47.902,18.926l-2.846,2.847C47.52,24.852,49,28.75,49,33s-1.48,8.148-3.943,11.227l2.846,2.848\r\n\t\t\t\tC51.083,43.26,53,38.355,53,33C53,27.645,51.083,22.74,47.902,18.926z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.volume_1 = volume_1; \ No newline at end of file diff --git a/dist/ikons/volume_2.js b/dist/ikons/volume_2.js new file mode 100644 index 000000000..af2748008 --- /dev/null +++ b/dist/ikons/volume_2.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.volume_2 = void 0; +var volume_2 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "VOLUME_2_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "VOLUME_2" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "VOLUME_2" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M50.701,10.128l-2.848,2.848C52.292,18.07,55,24.712,55,32s-2.708,13.93-7.146,19.023l2.848,2.849\r\n\t\t\t\tC55.861,48.049,59,40.393,59,32C59,23.607,55.861,15.951,50.701,10.128z M31,15c-0.721,0-1.374,0.265-1.891,0.689L29.1,15.678\r\n\t\t\t\tl-10.162,8.315H8.992v0.008C7.339,24.006,6,25.346,6,27v10c0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007\r\n\t\t\t\tC29.736,47.781,30.34,48,31,48c1.657,0,3-1.343,3-3V18C34,16.343,32.657,15,31,15z M42.902,17.926l-2.846,2.847\r\n\t\t\t\tC42.52,23.852,44,27.75,44,32s-1.48,8.148-3.943,11.227l2.846,2.848C46.083,42.26,48,37.355,48,32\r\n\t\t\t\tC48,26.645,46.083,21.74,42.902,17.926z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M50.701,10.128l-2.848,2.848C52.292,18.07,55,24.712,55,32s-2.708,13.93-7.146,19.023l2.848,2.849\r\n\t\t\t\tC55.861,48.049,59,40.393,59,32C59,23.607,55.861,15.951,50.701,10.128z M31,15c-0.721,0-1.374,0.265-1.891,0.689L29.1,15.678\r\n\t\t\t\tl-10.162,8.315H8.992v0.008C7.339,24.006,6,25.346,6,27v10c0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007\r\n\t\t\t\tC29.736,47.781,30.34,48,31,48c1.657,0,3-1.343,3-3V18C34,16.343,32.657,15,31,15z M42.902,17.926l-2.846,2.847\r\n\t\t\t\tC42.52,23.852,44,27.75,44,32s-1.48,8.148-3.943,11.227l2.846,2.848C46.083,42.26,48,37.355,48,32\r\n\t\t\t\tC48,26.645,46.083,21.74,42.902,17.926z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.volume_2 = volume_2; \ No newline at end of file diff --git a/dist/ikons/volume_3.js b/dist/ikons/volume_3.js new file mode 100644 index 000000000..c55907dd4 --- /dev/null +++ b/dist/ikons/volume_3.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.volume_3 = void 0; +var volume_3 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "VOLUME_3_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "VOLUME_3" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "VOLUME_3" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M25,15c-0.721,0-1.374,0.265-1.891,0.689L23.1,15.678l-10.162,8.315H2.992v0.008C1.339,24.006,0,25.346,0,27v10\r\n\t\t\t\tc0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007C23.736,47.781,24.34,48,25,48c1.657,0,3-1.343,3-3V18\r\n\t\t\t\tC28,16.343,26.657,15,25,15z M36.902,17.926l-2.846,2.847C36.52,23.852,38,27.75,38,32s-1.48,8.148-3.943,11.227l2.846,2.848\r\n\t\t\t\tC40.083,42.26,42,37.355,42,32C42,26.645,40.083,21.74,36.902,17.926z M44.701,10.128l-2.848,2.848C46.292,18.07,49,24.712,49,32\r\n\t\t\t\ts-2.708,13.93-7.146,19.023l2.848,2.849C49.861,48.049,53,40.393,53,32C53,23.607,49.861,15.951,44.701,10.128z M52.493,2.336\r\n\t\t\t\tl-2.831,2.831C56.086,12.263,60,21.674,60,32s-3.914,19.736-10.338,26.833l2.831,2.831C59.639,53.842,64,43.432,64,32\r\n\t\t\t\tC64,20.569,59.639,10.159,52.493,2.336z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M25,15c-0.721,0-1.374,0.265-1.891,0.689L23.1,15.678l-10.162,8.315H2.992v0.008C1.339,24.006,0,25.346,0,27v10\r\n\t\t\t\tc0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007C23.736,47.781,24.34,48,25,48c1.657,0,3-1.343,3-3V18\r\n\t\t\t\tC28,16.343,26.657,15,25,15z M36.902,17.926l-2.846,2.847C36.52,23.852,38,27.75,38,32s-1.48,8.148-3.943,11.227l2.846,2.848\r\n\t\t\t\tC40.083,42.26,42,37.355,42,32C42,26.645,40.083,21.74,36.902,17.926z M44.701,10.128l-2.848,2.848C46.292,18.07,49,24.712,49,32\r\n\t\t\t\ts-2.708,13.93-7.146,19.023l2.848,2.849C49.861,48.049,53,40.393,53,32C53,23.607,49.861,15.951,44.701,10.128z M52.493,2.336\r\n\t\t\t\tl-2.831,2.831C56.086,12.263,60,21.674,60,32s-3.914,19.736-10.338,26.833l2.831,2.831C59.639,53.842,64,43.432,64,32\r\n\t\t\t\tC64,20.569,59.639,10.159,52.493,2.336z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.volume_3 = volume_3; \ No newline at end of file diff --git a/dist/ikons/volume_down.js b/dist/ikons/volume_down.js new file mode 100644 index 000000000..3db05b7ac --- /dev/null +++ b/dist/ikons/volume_down.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.volume_down = void 0; +var volume_down = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "VOLUME__x2F__DOWN_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "VOLUME__x2F__DOWN" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "VOLUME__x2F__DOWN" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M55,30H43c-1.657,0-3,1.343-3,3s1.343,3,3,3h12c1.657,0,3-1.343,3-3S56.657,30,55,30z M31,16\r\n\t\t\t\tc-0.721,0-1.374,0.265-1.891,0.689L29.1,16.678l-10.162,8.315H8.992v0.008C7.339,25.006,6,26.346,6,28v10c0,1.657,1.343,3,3,3\r\n\t\t\t\th10.024l10.211,7.426l0.005-0.007C29.736,48.781,30.34,49,31,49c1.657,0,3-1.343,3-3V19C34,17.343,32.657,16,31,16z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M55,30H43c-1.657,0-3,1.343-3,3s1.343,3,3,3h12c1.657,0,3-1.343,3-3S56.657,30,55,30z M31,16\r\n\t\t\t\tc-0.721,0-1.374,0.265-1.891,0.689L29.1,16.678l-10.162,8.315H8.992v0.008C7.339,25.006,6,26.346,6,28v10c0,1.657,1.343,3,3,3\r\n\t\t\t\th10.024l10.211,7.426l0.005-0.007C29.736,48.781,30.34,49,31,49c1.657,0,3-1.343,3-3V19C34,17.343,32.657,16,31,16z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.volume_down = volume_down; \ No newline at end of file diff --git a/dist/ikons/volume_mute.js b/dist/ikons/volume_mute.js new file mode 100644 index 000000000..e218b494c --- /dev/null +++ b/dist/ikons/volume_mute.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.volume_mute = void 0; +var volume_mute = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "VOLUME__x2F__MUTE_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "VOLUME__x2F__MUTE" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "VOLUME__x2F__MUTE" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M31,16c-0.721,0-1.374,0.265-1.891,0.689L29.1,16.678l-10.162,8.315H8.992v0.008C7.339,25.006,6,26.346,6,28v10\r\n\t\t\t\tc0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007C29.736,48.781,30.34,49,31,49c1.657,0,3-1.343,3-3V19\r\n\t\t\t\tC34,17.343,32.657,16,31,16z M53.243,33l3.879-3.879C57.664,28.579,58,27.829,58,27c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L49,28.758l-3.879-3.879C44.578,24.336,43.828,24,43,24c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L44.757,33l-3.879,3.879C40.336,37.422,40,38.172,40,39c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L49,37.243l3.879,3.879C53.422,41.664,54.172,42,55,42c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L53.243,33z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M31,16c-0.721,0-1.374,0.265-1.891,0.689L29.1,16.678l-10.162,8.315H8.992v0.008C7.339,25.006,6,26.346,6,28v10\r\n\t\t\t\tc0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007C29.736,48.781,30.34,49,31,49c1.657,0,3-1.343,3-3V19\r\n\t\t\t\tC34,17.343,32.657,16,31,16z M53.243,33l3.879-3.879C57.664,28.579,58,27.829,58,27c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L49,28.758l-3.879-3.879C44.578,24.336,43.828,24,43,24c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L44.757,33l-3.879,3.879C40.336,37.422,40,38.172,40,39c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L49,37.243l3.879,3.879C53.422,41.664,54.172,42,55,42c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L53.243,33z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.volume_mute = volume_mute; \ No newline at end of file diff --git a/dist/ikons/volume_off.js b/dist/ikons/volume_off.js new file mode 100644 index 000000000..6aa6822a5 --- /dev/null +++ b/dist/ikons/volume_off.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.volume_off = void 0; +var volume_off = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "VOLUME__x2F__OFF_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "VOLUME__x2F__OFF" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "VOLUME__x2F__OFF" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M42,16c-0.721,0-1.374,0.265-1.891,0.689l-0.01-0.011l-10.162,8.315h-9.946v0.008C18.339,25.006,17,26.346,17,28v9.627\r\n\t\t\t\tl27.973-18.9C44.832,17.2,43.562,16,42,16z M30.024,41l10.21,7.426l0.006-0.007C40.736,48.781,41.34,49,42,49\r\n\t\t\t\tc1.657,0,3-1.343,3-3V29.57L28.083,41H30.024z M51,18.6c-0.312,0-0.602,0.095-0.841,0.258L13.064,43.955\r\n\t\t\t\tc-0.4,0.27-0.664,0.727-0.664,1.245c0,0.827,0.672,1.5,1.5,1.5c0.312,0,0.601-0.095,0.841-0.259l37.095-25.096\r\n\t\t\t\tc0.4-0.269,0.664-0.727,0.664-1.245C52.5,19.272,51.828,18.6,51,18.6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M42,16c-0.721,0-1.374,0.265-1.891,0.689l-0.01-0.011l-10.162,8.315h-9.946v0.008C18.339,25.006,17,26.346,17,28v9.627\r\n\t\t\t\tl27.973-18.9C44.832,17.2,43.562,16,42,16z M30.024,41l10.21,7.426l0.006-0.007C40.736,48.781,41.34,49,42,49\r\n\t\t\t\tc1.657,0,3-1.343,3-3V29.57L28.083,41H30.024z M51,18.6c-0.312,0-0.602,0.095-0.841,0.258L13.064,43.955\r\n\t\t\t\tc-0.4,0.27-0.664,0.727-0.664,1.245c0,0.827,0.672,1.5,1.5,1.5c0.312,0,0.601-0.095,0.841-0.259l37.095-25.096\r\n\t\t\t\tc0.4-0.269,0.664-0.727,0.664-1.245C52.5,19.272,51.828,18.6,51,18.6z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.volume_off = volume_off; \ No newline at end of file diff --git a/dist/ikons/volume_up.js b/dist/ikons/volume_up.js new file mode 100644 index 000000000..a2bd35554 --- /dev/null +++ b/dist/ikons/volume_up.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.volume_up = void 0; +var volume_up = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "VOLUME__x2F__UP_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "VOLUME__x2F__UP" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "VOLUME__x2F__UP" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M31,16c-0.721,0-1.374,0.265-1.891,0.689L29.1,16.678l-10.162,8.315H8.992v0.008C7.339,25.006,6,26.346,6,28v10\r\n\t\t\t\tc0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007C29.736,48.781,30.34,49,31,49c1.657,0,3-1.343,3-3V19\r\n\t\t\t\tC34,17.343,32.657,16,31,16z M55,30h-3v-3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3s1.343,3,3,3h3v3\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3S56.657,30,55,30z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M31,16c-0.721,0-1.374,0.265-1.891,0.689L29.1,16.678l-10.162,8.315H8.992v0.008C7.339,25.006,6,26.346,6,28v10\r\n\t\t\t\tc0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007C29.736,48.781,30.34,49,31,49c1.657,0,3-1.343,3-3V19\r\n\t\t\t\tC34,17.343,32.657,16,31,16z M55,30h-3v-3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3s1.343,3,3,3h3v3\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3S56.657,30,55,30z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.volume_up = volume_up; \ No newline at end of file diff --git a/dist/ikons/warning.js b/dist/ikons/warning.js new file mode 100644 index 000000000..084029e46 --- /dev/null +++ b/dist/ikons/warning.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.warning = void 0; +var warning = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "WARNING_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "WARNING" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "WARNING" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M63.562,53.463l0.018-0.011l-29-47l-0.018,0.01C34.039,5.59,33.092,5,32,5c-1.052,0-1.973,0.543-2.509,1.362l-0.017-0.01\r\n\t\t\t\tl-29,47l0.017,0.01C0.183,53.834,0,54.395,0,55c0,1.657,1.343,3,3,3c0.009,0,0.018-0.003,0.027-0.003v0.03h58v-0.03\r\n\t\t\t\tC62.671,57.982,64,56.648,64,55C64,54.436,63.835,53.914,63.562,53.463z M32,52c-2.209,0-4-1.791-4-4s1.791-4,4-4s4,1.791,4,4\r\n\t\t\t\tS34.209,52,32,52z M36,37c0,2.209-1.791,4-4,4s-4-1.791-4-4V22c0-2.209,1.791-4,4-4s4,1.791,4,4V37z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M63.562,53.463l0.018-0.011l-29-47l-0.018,0.01C34.039,5.59,33.092,5,32,5c-1.052,0-1.973,0.543-2.509,1.362l-0.017-0.01\r\n\t\t\t\tl-29,47l0.017,0.01C0.183,53.834,0,54.395,0,55c0,1.657,1.343,3,3,3c0.009,0,0.018-0.003,0.027-0.003v0.03h58v-0.03\r\n\t\t\t\tC62.671,57.982,64,56.648,64,55C64,54.436,63.835,53.914,63.562,53.463z M32,52c-2.209,0-4-1.791-4-4s1.791-4,4-4s4,1.791,4,4\r\n\t\t\t\tS34.209,52,32,52z M36,37c0,2.209-1.791,4-4,4s-4-1.791-4-4V22c0-2.209,1.791-4,4-4s4,1.791,4,4V37z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.warning = warning; \ No newline at end of file diff --git a/dist/ikons/wifi_1.js b/dist/ikons/wifi_1.js new file mode 100644 index 000000000..cec880309 --- /dev/null +++ b/dist/ikons/wifi_1.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.wifi_1 = void 0; +var wifi_1 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "WIFI_1_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "WIFI_1" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "WIFI_1" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M32,34c-3.314,0-6,2.686-6,6s2.686,6,6,6c3.314,0,6-2.686,6-6S35.314,34,32,34z M32,19\r\n\t\t\t\tc-5.343,0-10.062,2.629-12.968,6.654l3.302,4.256C24.519,26.938,28.029,25,32,25c3.971,0,7.482,1.937,9.666,4.91l3.302-4.256\r\n\t\t\t\tC42.062,21.629,37.343,19,32,19z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M32,34c-3.314,0-6,2.686-6,6s2.686,6,6,6c3.314,0,6-2.686,6-6S35.314,34,32,34z M32,19\r\n\t\t\t\tc-5.343,0-10.062,2.629-12.968,6.654l3.302,4.256C24.519,26.938,28.029,25,32,25c3.971,0,7.482,1.937,9.666,4.91l3.302-4.256\r\n\t\t\t\tC42.062,21.629,37.343,19,32,19z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.wifi_1 = wifi_1; \ No newline at end of file diff --git a/dist/ikons/wifi_2.js b/dist/ikons/wifi_2.js new file mode 100644 index 000000000..283838f01 --- /dev/null +++ b/dist/ikons/wifi_2.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.wifi_2 = void 0; +var wifi_2 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "WIFI_2_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "WIFI_2" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "WIFI_2" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M32,41c-3.314,0-6,2.686-6,6s2.686,6,6,6c3.314,0,6-2.686,6-6S35.314,41,32,41z M32,26\r\n\t\t\t\tc-5.343,0-10.062,2.629-12.968,6.654l3.302,4.256C24.519,33.938,28.029,32,32,32c3.971,0,7.482,1.938,9.666,4.91l3.302-4.256\r\n\t\t\t\tC42.062,28.629,37.343,26,32,26z M32,11c-8.791,0-16.721,3.665-22.363,9.544l3.739,4.819C17.954,20.242,24.59,17,32,17\r\n\t\t\t\ts14.046,3.242,18.624,8.364l3.739-4.819C48.721,14.666,40.791,11,32,11z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M32,41c-3.314,0-6,2.686-6,6s2.686,6,6,6c3.314,0,6-2.686,6-6S35.314,41,32,41z M32,26\r\n\t\t\t\tc-5.343,0-10.062,2.629-12.968,6.654l3.302,4.256C24.519,33.938,28.029,32,32,32c3.971,0,7.482,1.938,9.666,4.91l3.302-4.256\r\n\t\t\t\tC42.062,28.629,37.343,26,32,26z M32,11c-8.791,0-16.721,3.665-22.363,9.544l3.739,4.819C17.954,20.242,24.59,17,32,17\r\n\t\t\t\ts14.046,3.242,18.624,8.364l3.739-4.819C48.721,14.666,40.791,11,32,11z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.wifi_2 = wifi_2; \ No newline at end of file diff --git a/dist/ikons/wifi_3.js b/dist/ikons/wifi_3.js new file mode 100644 index 000000000..d6473b1a2 --- /dev/null +++ b/dist/ikons/wifi_3.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.wifi_3 = void 0; +var wifi_3 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "WIFI_3_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "WIFI_3" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "WIFI_3" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M32,49c-3.314,0-6,2.686-6,6s2.686,6,6,6c3.314,0,6-2.686,6-6S35.314,49,32,49z M32,34\r\n\t\t\t\tc-5.343,0-10.062,2.629-12.968,6.654l3.302,4.256C24.519,41.938,28.029,40,32,40c3.971,0,7.482,1.938,9.666,4.91l3.302-4.256\r\n\t\t\t\tC42.062,36.629,37.343,34,32,34z M32,4C19.747,4,8.622,8.8,0.378,16.61l3.696,4.764C11.283,14.34,21.132,10,32,10\r\n\t\t\t\ts20.717,4.34,27.926,11.374l3.696-4.764C55.378,8.8,44.253,4,32,4z M9.637,28.544l3.739,4.819C17.954,28.242,24.59,25,32,25\r\n\t\t\t\ts14.046,3.242,18.624,8.364l3.739-4.819C48.721,22.666,40.791,19,32,19S15.279,22.666,9.637,28.544z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M32,49c-3.314,0-6,2.686-6,6s2.686,6,6,6c3.314,0,6-2.686,6-6S35.314,49,32,49z M32,34\r\n\t\t\t\tc-5.343,0-10.062,2.629-12.968,6.654l3.302,4.256C24.519,41.938,28.029,40,32,40c3.971,0,7.482,1.938,9.666,4.91l3.302-4.256\r\n\t\t\t\tC42.062,36.629,37.343,34,32,34z M32,4C19.747,4,8.622,8.8,0.378,16.61l3.696,4.764C11.283,14.34,21.132,10,32,10\r\n\t\t\t\ts20.717,4.34,27.926,11.374l3.696-4.764C55.378,8.8,44.253,4,32,4z M9.637,28.544l3.739,4.819C17.954,28.242,24.59,25,32,25\r\n\t\t\t\ts14.046,3.242,18.624,8.364l3.739-4.819C48.721,22.666,40.791,19,32,19S15.279,22.666,9.637,28.544z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.wifi_3 = wifi_3; \ No newline at end of file diff --git a/dist/ikons/windows.js b/dist/ikons/windows.js new file mode 100644 index 000000000..1fcad00d8 --- /dev/null +++ b/dist/ikons/windows.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.windows = void 0; +var windows = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "windows_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "windows" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "windows" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M0.015,30.236h25.809V5.541L0.015,9.28V30.236z M29.353,5.029v25.207h34.631V0.015L29.353,5.029z M0.015,54.721\r\n\t\t\t\tl25.809,3.738V33.766H0.015V54.721z M29.353,58.971l34.631,5.014V33.766H29.353V58.971z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M0.015,30.236h25.809V5.541L0.015,9.28V30.236z M29.353,5.029v25.207h34.631V0.015L29.353,5.029z M0.015,54.721\r\n\t\t\t\tl25.809,3.738V33.766H0.015V54.721z M29.353,58.971l34.631,5.014V33.766H29.353V58.971z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.windows = windows; \ No newline at end of file diff --git a/dist/ikons/youtube.js b/dist/ikons/youtube.js new file mode 100644 index 000000000..72eb4821a --- /dev/null +++ b/dist/ikons/youtube.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.youtube = void 0; +var youtube = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "youtube_1_", + "enable-background": "new " + }, + "children": [{ + "name": "g", + "attribs": { + "id": "youtube" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "youtube" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M54.15,10.031l-20.9-0.019l-21.718,0.019c-5.433,0-11.534,3.626-11.534,8.944v26.474c0,5.316,6.101,8.559,11.534,8.559\r\n\t\t\t\tH54.15c5.432,0,9.834-3.242,9.834-8.559V18.976C63.984,13.657,59.582,10.031,54.15,10.031z M27.856,42.205L27.73,22.044\r\n\t\t\t\tl14.03,10.168L27.856,42.205z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M54.15,10.031l-20.9-0.019l-21.718,0.019c-5.433,0-11.534,3.626-11.534,8.944v26.474c0,5.316,6.101,8.559,11.534,8.559\r\n\t\t\t\tH54.15c5.432,0,9.834-3.242,9.834-8.559V18.976C63.984,13.657,59.582,10.031,54.15,10.031z M27.856,42.205L27.73,22.044\r\n\t\t\t\tl14.03,10.168L27.856,42.205z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.youtube = youtube; \ No newline at end of file diff --git a/dist/ikons/zoom_in.js b/dist/ikons/zoom_in.js new file mode 100644 index 000000000..b7ab2c41e --- /dev/null +++ b/dist/ikons/zoom_in.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.zoom_in = void 0; +var zoom_in = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "ZOOM_IN" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M45,29H35V19c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v10H19\r\n\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h10v10c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V35h10c1.657,0,3-1.343,3-3\r\n\t\t\tC48,30.344,46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32c0.003,0,0.005,0,0.008,0H61\r\n\t\t\tc1.657,0,3-1.343,3-3V32.002c0-0.001,0-0.001,0-0.002C64,14.327,49.673,0,32,0z M58,32.001C58,46.359,46.361,57.998,32.004,58H32\r\n\t\t\tv0C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6S58,17.641,58,32.001L58,32.001z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M45,29H35V19c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v10H19\r\n\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h10v10c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V35h10c1.657,0,3-1.343,3-3\r\n\t\t\tC48,30.344,46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32c0.003,0,0.005,0,0.008,0H61\r\n\t\t\tc1.657,0,3-1.343,3-3V32.002c0-0.001,0-0.001,0-0.002C64,14.327,49.673,0,32,0z M58,32.001C58,46.359,46.361,57.998,32.004,58H32\r\n\t\t\tv0C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6S58,17.641,58,32.001L58,32.001z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.zoom_in = zoom_in; \ No newline at end of file diff --git a/dist/ikons/zoom_out.js b/dist/ikons/zoom_out.js new file mode 100644 index 000000000..012cc6b74 --- /dev/null +++ b/dist/ikons/zoom_out.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.zoom_out = void 0; +var zoom_out = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": { + "id": "ZOOM_OUT" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M45,29H35v0h-6v0H19c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h5v0h19v0h2\r\n\t\t\tc1.657,0,3-1.343,3-3C48,30.344,46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32c0.003,0,0.005,0,0.007,0\r\n\t\t\tH61c1.657,0,3-1.343,3-3V32.002c0-0.001,0-0.001,0-0.002C64,14.327,49.673,0,32,0z M58,32.001C58,46.359,46.361,57.998,32.004,58\r\n\t\t\tH32v0C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6C46.36,6,58,17.641,58,32.001L58,32.001z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M45,29H35v0h-6v0H19c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h5v0h19v0h2\r\n\t\t\tc1.657,0,3-1.343,3-3C48,30.344,46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32c0.003,0,0.005,0,0.007,0\r\n\t\t\tH61c1.657,0,3-1.343,3-3V32.002c0-0.001,0-0.001,0-0.002C64,14.327,49.673,0,32,0z M58,32.001C58,46.359,46.361,57.998,32.004,58\r\n\t\t\tH32v0C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6C46.36,6,58,17.641,58,32.001L58,32.001z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.zoom_out = zoom_out; \ No newline at end of file diff --git a/dist/index.d.ts b/dist/index.d.ts new file mode 100644 index 000000000..3093434cc --- /dev/null +++ b/dist/index.d.ts @@ -0,0 +1,70 @@ + + +declare module "react-icons-kit" { + import * as React from 'react' + + export interface IconProp extends React.HTMLAttributes { + icon: any + size?: number | string + tag?: string + style?: React.CSSProperties + className?: string + onClick?: React.MouseEventHandler + } + export const Icon: React.ComponentType + export const withBaseIcon: (props: Pick>) => React.SFC + export default Icon +} + +declare module "react-icons-kit/icomoon" + +declare module "react-icons-kit/md" + +declare module "react-icons-kit/fa" + +declare module "react-icons-kit/iconic" + +declare module "react-icons-kit/entypo" + +declare module "react-icons-kit/metrize" + +declare module "react-icons-kit/ikons" + +declare module "react-icons-kit/linea" + +declare module "react-icons-kit/ionicons" + +declare module "react-icons-kit/oct" + +declare module "react-icons-kit/typicons" + +declare module "react-icons-kit/noto_emoji_regular" + +declare module "react-icons-kit/feather" + + +declare module "react-icons-kit/icomoon/*" + +declare module "react-icons-kit/md/*" + +declare module "react-icons-kit/fa/*" + +declare module "react-icons-kit/iconic/*" + +declare module "react-icons-kit/entypo/*" + +declare module "react-icons-kit/metrize/*" + +declare module "react-icons-kit/ikons/*" + +declare module "react-icons-kit/linea/*" + +declare module "react-icons-kit/ionicons/*" + +declare module "react-icons-kit/oct/*" + +declare module "react-icons-kit/typicons/*" + +declare module "react-icons-kit/noto_emoji_regular/*" + +declare module "react-icons-kit/feather/*" diff --git a/dist/index.js b/dist/index.js new file mode 100644 index 000000000..a2c1af904 --- /dev/null +++ b/dist/index.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +Object.defineProperty(exports, "Icon", { + enumerable: true, + get: function get() { + return _Icon.Icon; + } +}); +exports["default"] = void 0; +Object.defineProperty(exports, "horizontalCenter", { + enumerable: true, + get: function get() { + return _horizontalCenter.horizontalCenter; + } +}); +Object.defineProperty(exports, "withBaseIcon", { + enumerable: true, + get: function get() { + return _Icon.withBaseIcon; + } +}); + +var _Icon = require("./Icon"); + +var _horizontalCenter = require("./horizontalCenter"); + +var _default = _Icon.Icon; +exports["default"] = _default; \ No newline at end of file diff --git a/dist/ionicons/alert.js b/dist/ionicons/alert.js new file mode 100644 index 000000000..7a8295e1c --- /dev/null +++ b/dist/ionicons/alert.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.alert = void 0; +var alert = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M320,480H192v-96h128V480z M304,320h-96L192,32h128L304,320z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M320,480H192v-96h128V480z M304,320h-96L192,32h128L304,320z" + }, + "children": [] + }] + }] + }] +}; +exports.alert = alert; \ No newline at end of file diff --git a/dist/ionicons/alertCircled.js b/dist/ionicons/alertCircled.js new file mode 100644 index 000000000..7b0693801 --- /dev/null +++ b/dist/ionicons/alertCircled.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.alertCircled = void 0; +var alertCircled = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M476.7,422.2L270.1,72.7c-2.9-5-8.3-8.7-14.1-8.7c-5.9,0-11.3,3.7-14.1,8.7L35.3,422.2c-2.8,5-4.8,13-1.9,17.9\r\n\t\tc2.9,4.9,8.2,7.9,14,7.9h417.1c5.8,0,11.1-3,14-7.9C481.5,435.2,479.5,427.1,476.7,422.2z M288,400h-64v-48h64V400z M288,320h-64\r\n\t\tV176h64V320z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M476.7,422.2L270.1,72.7c-2.9-5-8.3-8.7-14.1-8.7c-5.9,0-11.3,3.7-14.1,8.7L35.3,422.2c-2.8,5-4.8,13-1.9,17.9\r\n\t\tc2.9,4.9,8.2,7.9,14,7.9h417.1c5.8,0,11.1-3,14-7.9C481.5,435.2,479.5,427.1,476.7,422.2z M288,400h-64v-48h64V400z M288,320h-64\r\n\t\tV176h64V320z" + }, + "children": [] + }] + }] + }] +}; +exports.alertCircled = alertCircled; \ No newline at end of file diff --git a/dist/ionicons/androidAdd.js b/dist/ionicons/androidAdd.js new file mode 100644 index 000000000..6e408ab5c --- /dev/null +++ b/dist/ionicons/androidAdd.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidAdd = void 0; +var androidAdd = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": { + "id": "Icon_7_" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M416,277.333H277.333V416h-42.666V277.333H96v-42.666h138.667V96h42.666v138.667H416V277.333z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M416,277.333H277.333V416h-42.666V277.333H96v-42.666h138.667V96h42.666v138.667H416V277.333z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.androidAdd = androidAdd; \ No newline at end of file diff --git a/dist/ionicons/androidAddCircle.js b/dist/ionicons/androidAddCircle.js new file mode 100644 index 000000000..958c344c4 --- /dev/null +++ b/dist/ionicons/androidAddCircle.js @@ -0,0 +1,35 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidAddCircle = void 0; +var androidAddCircle = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48C141.125,48,48,141.125,48,256s93.125,208,208,208s208-93.125,208-208S370.875,48,256,48z M363,277h-86v86h-42v-86\r\n\t\t\th-86v-42h86v-86h42v86h86V277z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48C141.125,48,48,141.125,48,256s93.125,208,208,208s208-93.125,208-208S370.875,48,256,48z M363,277h-86v86h-42v-86\r\n\t\t\th-86v-42h86v-86h42v86h86V277z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.androidAddCircle = androidAddCircle; \ No newline at end of file diff --git a/dist/ionicons/androidAlarmClock.js b/dist/ionicons/androidAlarmClock.js new file mode 100644 index 000000000..a9e918bf2 --- /dev/null +++ b/dist/ionicons/androidAlarmClock.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidAlarmClock = void 0; +var androidAlarmClock = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": { + "id": "Icon_2_" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M470,124.837l-98.443-81.78l-27.814,32.931l98.442,81.769L470,124.837z M167.192,74.919L139.366,42L42,124.837\r\n\t\t\tl27.814,32.919L167.192,74.919z M266.701,172.628h-32.101v127.446l101.649,60.539l16.051-26.553l-85.6-49.917V172.628z\r\n\t\t\t M256,87.665c-107,0-192.601,86.021-192.601,191.166C63.399,383.98,149,470,256,470c105.936,0,192.601-86.02,192.601-191.169\r\n\t\t\tC448.601,173.687,361.936,87.665,256,87.665z M256,427.52c-82.393,0-149.8-66.906-149.8-148.688\r\n\t\t\tc0-81.777,67.407-148.684,149.8-148.684c82.394,0,149.8,66.906,149.8,148.684C405.8,361.671,338.394,427.52,256,427.52z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M470,124.837l-98.443-81.78l-27.814,32.931l98.442,81.769L470,124.837z M167.192,74.919L139.366,42L42,124.837\r\n\t\t\tl27.814,32.919L167.192,74.919z M266.701,172.628h-32.101v127.446l101.649,60.539l16.051-26.553l-85.6-49.917V172.628z\r\n\t\t\t M256,87.665c-107,0-192.601,86.021-192.601,191.166C63.399,383.98,149,470,256,470c105.936,0,192.601-86.02,192.601-191.169\r\n\t\t\tC448.601,173.687,361.936,87.665,256,87.665z M256,427.52c-82.393,0-149.8-66.906-149.8-148.688\r\n\t\t\tc0-81.777,67.407-148.684,149.8-148.684c82.394,0,149.8,66.906,149.8,148.684C405.8,361.671,338.394,427.52,256,427.52z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.androidAlarmClock = androidAlarmClock; \ No newline at end of file diff --git a/dist/ionicons/androidAlert.js b/dist/ionicons/androidAlert.js new file mode 100644 index 000000000..58714abbe --- /dev/null +++ b/dist/ionicons/androidAlert.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidAlert = void 0; +var androidAlert = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": { + "id": "Icon_30_" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48C141.6,48,48,141.601,48,256s93.6,208,208,208c114.4,0,208-93.601,208-208S370.4,48,256,48z M280,360h-48v-40h48\r\n\t\t\tV360z M280,272h-48V144h48V272z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48C141.6,48,48,141.601,48,256s93.6,208,208,208c114.4,0,208-93.601,208-208S370.4,48,256,48z M280,360h-48v-40h48\r\n\t\t\tV360z M280,272h-48V144h48V272z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.androidAlert = androidAlert; \ No newline at end of file diff --git a/dist/ionicons/androidApps.js b/dist/ionicons/androidApps.js new file mode 100644 index 000000000..15d8a519e --- /dev/null +++ b/dist/ionicons/androidApps.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidApps = void 0; +var androidApps = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": { + "id": "Icon" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M96,176h80V96H96V176z M216,416h80v-80h-80V416z M96,416h80v-80H96V416z M96,296h80v-80H96V296z M216,296h80v-80h-80V296z\r\n\t\t\t M336,96v80h80V96H336z M216,176h80V96h-80V176z M336,296h80v-80h-80V296z M336,416h80v-80h-80V416z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M96,176h80V96H96V176z M216,416h80v-80h-80V416z M96,416h80v-80H96V416z M96,296h80v-80H96V296z M216,296h80v-80h-80V296z\r\n\t\t\t M336,96v80h80V96H336z M216,176h80V96h-80V176z M336,296h80v-80h-80V296z M336,416h80v-80h-80V416z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.androidApps = androidApps; \ No newline at end of file diff --git a/dist/ionicons/androidArchive.js b/dist/ionicons/androidArchive.js new file mode 100644 index 000000000..d7ea7fb17 --- /dev/null +++ b/dist/ionicons/androidArchive.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidArchive = void 0; +var androidArchive = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M453.594,100.001l-32.353-39.299C415.469,52.627,405.083,48,394.664,48H117.335c-10.416,0-20.801,4.627-26.576,12.702\r\n\t\tl-32.351,39.299C51.468,106.923,48,117.335,48,128.886v288.89C48,443.2,68.8,464,94.225,464h323.553\r\n\t\tC443.202,464,464,443.2,464,417.775v-288.89C464,117.335,460.537,106.923,453.594,100.001z M256,383.109L128.89,256h80.89v-46.224\r\n\t\th92.443V256h80.89L256,383.109z M96.534,94.221l18.486-23.111h277.331l21.965,23.111H96.534z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M453.594,100.001l-32.353-39.299C415.469,52.627,405.083,48,394.664,48H117.335c-10.416,0-20.801,4.627-26.576,12.702\r\n\t\tl-32.351,39.299C51.468,106.923,48,117.335,48,128.886v288.89C48,443.2,68.8,464,94.225,464h323.553\r\n\t\tC443.202,464,464,443.2,464,417.775v-288.89C464,117.335,460.537,106.923,453.594,100.001z M256,383.109L128.89,256h80.89v-46.224\r\n\t\th92.443V256h80.89L256,383.109z M96.534,94.221l18.486-23.111h277.331l21.965,23.111H96.534z" + }, + "children": [] + }] + }] + }] +}; +exports.androidArchive = androidArchive; \ No newline at end of file diff --git a/dist/ionicons/androidArrowBack.js b/dist/ionicons/androidArrowBack.js new file mode 100644 index 000000000..c4b6200a4 --- /dev/null +++ b/dist/ionicons/androidArrowBack.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidArrowBack = void 0; +var androidArrowBack = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": { + "id": "Icon_8_" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M427,234.625H167.296l119.702-119.702L256,85L85,256l171,171l29.922-29.924L167.296,277.375H427V234.625z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M427,234.625H167.296l119.702-119.702L256,85L85,256l171,171l29.922-29.924L167.296,277.375H427V234.625z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.androidArrowBack = androidArrowBack; \ No newline at end of file diff --git a/dist/ionicons/androidArrowDown.js b/dist/ionicons/androidArrowDown.js new file mode 100644 index 000000000..6991b9d08 --- /dev/null +++ b/dist/ionicons/androidArrowDown.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidArrowDown = void 0; +var androidArrowDown = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": { + "id": "Icon_8_" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M277.375,85v259.704l119.702-119.702L427,256L256,427L85,256l29.924-29.922l119.701,118.626V85H277.375z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M277.375,85v259.704l119.702-119.702L427,256L256,427L85,256l29.924-29.922l119.701,118.626V85H277.375z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.androidArrowDown = androidArrowDown; \ No newline at end of file diff --git a/dist/ionicons/androidArrowDropdown.js b/dist/ionicons/androidArrowDropdown.js new file mode 100644 index 000000000..2c803ad35 --- /dev/null +++ b/dist/ionicons/androidArrowDropdown.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidArrowDropdown = void 0; +var androidArrowDropdown = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "128,192 256,320 384,192 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "128,192 256,320 384,192 \t" + }, + "children": [] + }] + }] + }] +}; +exports.androidArrowDropdown = androidArrowDropdown; \ No newline at end of file diff --git a/dist/ionicons/androidArrowDropdownCircle.js b/dist/ionicons/androidArrowDropdownCircle.js new file mode 100644 index 000000000..b5b9184eb --- /dev/null +++ b/dist/ionicons/androidArrowDropdownCircle.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidArrowDropdownCircle = void 0; +var androidArrowDropdownCircle = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48C141.125,48,48,141.125,48,256s93.125,208,208,208s208-93.125,208-208S370.875,48,256,48z M256,320l-96-96h192\r\n\t\tL256,320z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48C141.125,48,48,141.125,48,256s93.125,208,208,208s208-93.125,208-208S370.875,48,256,48z M256,320l-96-96h192\r\n\t\tL256,320z" + }, + "children": [] + }] + }] + }] +}; +exports.androidArrowDropdownCircle = androidArrowDropdownCircle; \ No newline at end of file diff --git a/dist/ionicons/androidArrowDropleft.js b/dist/ionicons/androidArrowDropleft.js new file mode 100644 index 000000000..e4e2f7fb8 --- /dev/null +++ b/dist/ionicons/androidArrowDropleft.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidArrowDropleft = void 0; +var androidArrowDropleft = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "320,128 192,256 320,384 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "320,128 192,256 320,384 \t" + }, + "children": [] + }] + }] + }] +}; +exports.androidArrowDropleft = androidArrowDropleft; \ No newline at end of file diff --git a/dist/ionicons/androidArrowDropleftCircle.js b/dist/ionicons/androidArrowDropleftCircle.js new file mode 100644 index 000000000..1fd4e0e65 --- /dev/null +++ b/dist/ionicons/androidArrowDropleftCircle.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidArrowDropleftCircle = void 0; +var androidArrowDropleftCircle = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M464,256c0-114.875-93.125-208-208-208S48,141.125,48,256s93.125,208,208,208S464,370.875,464,256z M192,256l96-96v192\r\n\t\tL192,256z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M464,256c0-114.875-93.125-208-208-208S48,141.125,48,256s93.125,208,208,208S464,370.875,464,256z M192,256l96-96v192\r\n\t\tL192,256z" + }, + "children": [] + }] + }] + }] +}; +exports.androidArrowDropleftCircle = androidArrowDropleftCircle; \ No newline at end of file diff --git a/dist/ionicons/androidArrowDropright.js b/dist/ionicons/androidArrowDropright.js new file mode 100644 index 000000000..92aef6ee8 --- /dev/null +++ b/dist/ionicons/androidArrowDropright.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidArrowDropright = void 0; +var androidArrowDropright = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "192,128 320,256 192,384 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "192,128 320,256 192,384 \t" + }, + "children": [] + }] + }] + }] +}; +exports.androidArrowDropright = androidArrowDropright; \ No newline at end of file diff --git a/dist/ionicons/androidArrowDroprightCircle.js b/dist/ionicons/androidArrowDroprightCircle.js new file mode 100644 index 000000000..51113004b --- /dev/null +++ b/dist/ionicons/androidArrowDroprightCircle.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidArrowDroprightCircle = void 0; +var androidArrowDroprightCircle = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,464c114.875,0,208-93.125,208-208S370.875,48,256,48S48,141.125,48,256S141.125,464,256,464z M224,352V160l96,96\r\n\t\tL224,352z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,464c114.875,0,208-93.125,208-208S370.875,48,256,48S48,141.125,48,256S141.125,464,256,464z M224,352V160l96,96\r\n\t\tL224,352z" + }, + "children": [] + }] + }] + }] +}; +exports.androidArrowDroprightCircle = androidArrowDroprightCircle; \ No newline at end of file diff --git a/dist/ionicons/androidArrowDropup.js b/dist/ionicons/androidArrowDropup.js new file mode 100644 index 000000000..d9ff96cc3 --- /dev/null +++ b/dist/ionicons/androidArrowDropup.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidArrowDropup = void 0; +var androidArrowDropup = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "128,320 256,192 384,320 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "128,320 256,192 384,320 \t" + }, + "children": [] + }] + }] + }] +}; +exports.androidArrowDropup = androidArrowDropup; \ No newline at end of file diff --git a/dist/ionicons/androidArrowDropupCircle.js b/dist/ionicons/androidArrowDropupCircle.js new file mode 100644 index 000000000..d5ac250c8 --- /dev/null +++ b/dist/ionicons/androidArrowDropupCircle.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidArrowDropupCircle = void 0; +var androidArrowDropupCircle = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M464,256c0-114.875-93.125-208-208-208S48,141.125,48,256s93.125,208,208,208S464,370.875,464,256z M352,288H160l96-96\r\n\t\tL352,288z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M464,256c0-114.875-93.125-208-208-208S48,141.125,48,256s93.125,208,208,208S464,370.875,464,256z M352,288H160l96-96\r\n\t\tL352,288z" + }, + "children": [] + }] + }] + }] +}; +exports.androidArrowDropupCircle = androidArrowDropupCircle; \ No newline at end of file diff --git a/dist/ionicons/androidArrowForward.js b/dist/ionicons/androidArrowForward.js new file mode 100644 index 000000000..d419307e8 --- /dev/null +++ b/dist/ionicons/androidArrowForward.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidArrowForward = void 0; +var androidArrowForward = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": { + "id": "Icon_8_" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M85,277.375h259.704L225.002,397.077L256,427l171-171L256,85l-29.922,29.924l118.626,119.701H85V277.375z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M85,277.375h259.704L225.002,397.077L256,427l171-171L256,85l-29.922,29.924l118.626,119.701H85V277.375z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.androidArrowForward = androidArrowForward; \ No newline at end of file diff --git a/dist/ionicons/androidArrowUp.js b/dist/ionicons/androidArrowUp.js new file mode 100644 index 000000000..0c289960e --- /dev/null +++ b/dist/ionicons/androidArrowUp.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidArrowUp = void 0; +var androidArrowUp = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": { + "id": "Icon_8_" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M277.375,427V167.296l119.702,119.702L427,256L256,85L85,256l29.924,29.922l119.701-118.626V427H277.375z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M277.375,427V167.296l119.702,119.702L427,256L256,85L85,256l29.924,29.922l119.701-118.626V427H277.375z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.androidArrowUp = androidArrowUp; \ No newline at end of file diff --git a/dist/ionicons/androidAttach.js b/dist/ionicons/androidAttach.js new file mode 100644 index 000000000..82fd19f82 --- /dev/null +++ b/dist/ionicons/androidAttach.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidAttach = void 0; +var androidAttach = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": { + "id": "Icon_3_" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M341.334,128v234.666C341.334,409.604,302.938,448,256,448c-46.937,0-85.333-38.396-85.333-85.334V117.334\r\n\t\t\tC170.667,87.469,194.135,64,224,64c29.864,0,53.333,23.469,53.333,53.334v245.333c0,11.729-9.605,21.333-21.334,21.333\r\n\t\t\tc-11.729,0-21.333-9.604-21.333-21.333V160h-32v202.667C202.667,392.531,226.135,416,256,416\r\n\t\t\tc29.865,0,53.334-23.469,53.334-53.333V117.334C309.334,70.401,270.938,32,224,32c-46.938,0-85.334,38.401-85.334,85.334v245.332\r\n\t\t\tC138.667,427.729,190.938,480,256,480c65.062,0,117.334-52.271,117.334-117.334V128H341.334z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M341.334,128v234.666C341.334,409.604,302.938,448,256,448c-46.937,0-85.333-38.396-85.333-85.334V117.334\r\n\t\t\tC170.667,87.469,194.135,64,224,64c29.864,0,53.333,23.469,53.333,53.334v245.333c0,11.729-9.605,21.333-21.334,21.333\r\n\t\t\tc-11.729,0-21.333-9.604-21.333-21.333V160h-32v202.667C202.667,392.531,226.135,416,256,416\r\n\t\t\tc29.865,0,53.334-23.469,53.334-53.333V117.334C309.334,70.401,270.938,32,224,32c-46.938,0-85.334,38.401-85.334,85.334v245.332\r\n\t\t\tC138.667,427.729,190.938,480,256,480c65.062,0,117.334-52.271,117.334-117.334V128H341.334z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.androidAttach = androidAttach; \ No newline at end of file diff --git a/dist/ionicons/androidBar.js b/dist/ionicons/androidBar.js new file mode 100644 index 000000000..234e2ea02 --- /dev/null +++ b/dist/ionicons/androidBar.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidBar = void 0; +var androidBar = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": { + "id": "Icon_37_" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M234.667,277.333V408H128v40h256v-40H277.333V277.333L448,106.667V64H64v42.667L234.667,277.333z M160,149.333\r\n\t\t\tl-42.667-42.666h277.334L352,149.333H160z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M234.667,277.333V408H128v40h256v-40H277.333V277.333L448,106.667V64H64v42.667L234.667,277.333z M160,149.333\r\n\t\t\tl-42.667-42.666h277.334L352,149.333H160z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.androidBar = androidBar; \ No newline at end of file diff --git a/dist/ionicons/androidBicycle.js b/dist/ionicons/androidBicycle.js new file mode 100644 index 000000000..a447a590a --- /dev/null +++ b/dist/ionicons/androidBicycle.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidBicycle = void 0; +var androidBicycle = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": { + "id": "Icon_13_" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M330.666,131.202c18.668,0,33.598-14.935,33.598-33.601S349.334,64,330.666,64C312,64,297.07,78.935,297.07,97.601\r\n\t\t\tS312,131.202,330.666,131.202z M386.666,261.334c-51.332,0-93.332,42-93.332,93.333s42,93.333,93.332,93.333\r\n\t\t\tC438,448,480,406,480,354.667S438,261.334,386.666,261.334z M386.666,420c-36.402,0-65.332-28.93-65.332-65.333\r\n\t\t\ts28.93-65.333,65.332-65.333c36.404,0,65.334,28.93,65.334,65.333S423.07,420,386.666,420z M305.597,224H384v-32h-58.845\r\n\t\t\tl-34.62-60.134c-5.605-9.333-15.869-15.864-27.07-15.864c-8.399,0-16.798,3.732-22.399,9.333l-71.732,69.065\r\n\t\t\tc-5.601,5.601-9.333,14-9.333,22.399c0,12.131,9.202,21.465,18.535,27.065L240,282.134V368h32V256l-39.333-32l42.929-44.533\r\n\t\t\tL305.597,224z M125.333,261.334C74,261.334,32,303.334,32,354.667S74,448,125.333,448c51.333,0,93.333-42,93.333-93.333\r\n\t\t\tS176.667,261.334,125.333,261.334z M125.333,420C88.934,420,60,391.07,60,354.667s28.934-65.333,65.333-65.333\r\n\t\t\tc36.399,0,65.333,28.93,65.333,65.333S161.732,420,125.333,420z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M330.666,131.202c18.668,0,33.598-14.935,33.598-33.601S349.334,64,330.666,64C312,64,297.07,78.935,297.07,97.601\r\n\t\t\tS312,131.202,330.666,131.202z M386.666,261.334c-51.332,0-93.332,42-93.332,93.333s42,93.333,93.332,93.333\r\n\t\t\tC438,448,480,406,480,354.667S438,261.334,386.666,261.334z M386.666,420c-36.402,0-65.332-28.93-65.332-65.333\r\n\t\t\ts28.93-65.333,65.332-65.333c36.404,0,65.334,28.93,65.334,65.333S423.07,420,386.666,420z M305.597,224H384v-32h-58.845\r\n\t\t\tl-34.62-60.134c-5.605-9.333-15.869-15.864-27.07-15.864c-8.399,0-16.798,3.732-22.399,9.333l-71.732,69.065\r\n\t\t\tc-5.601,5.601-9.333,14-9.333,22.399c0,12.131,9.202,21.465,18.535,27.065L240,282.134V368h32V256l-39.333-32l42.929-44.533\r\n\t\t\tL305.597,224z M125.333,261.334C74,261.334,32,303.334,32,354.667S74,448,125.333,448c51.333,0,93.333-42,93.333-93.333\r\n\t\t\tS176.667,261.334,125.333,261.334z M125.333,420C88.934,420,60,391.07,60,354.667s28.934-65.333,65.333-65.333\r\n\t\t\tc36.399,0,65.333,28.93,65.333,65.333S161.732,420,125.333,420z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.androidBicycle = androidBicycle; \ No newline at end of file diff --git a/dist/ionicons/androidBoat.js b/dist/ionicons/androidBoat.js new file mode 100644 index 000000000..28df0bd58 --- /dev/null +++ b/dist/ionicons/androidBoat.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidBoat = void 0; +var androidBoat = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M84.255,413h1.063c34.123,0,63.977-19.021,85.305-42.494c21.325,23.473,51.18,42.762,85.304,42.762\r\n\t\ts63.979-19.334,85.305-42.806C362.559,393.934,392.412,413,426.535,413h1.062l51.253-138.78c2.126-5.329,1.063-11.641-1.07-16.976\r\n\t\tc-2.136-5.333-7.237-8.487-12.567-10.623L427,234.133v-98.15C427,112.51,407.344,93,383.884,93h-63.979l-15.993-53h-95.969\r\n\t\tl-15.995,53h-63.979C104.511,93,85,112.51,85,135.982v98.15l-38.074,12.533c-5.33,2.136-10.582,5.334-12.718,10.667\r\n\t\tc-2.135,5.335-3.158,10.49-1.031,16.887L84.255,413z M128,136h256v84.261l-128-41.605l-128,41.605V136z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M84.255,413h1.063c34.123,0,63.977-19.021,85.305-42.494c21.325,23.473,51.18,42.762,85.304,42.762\r\n\t\ts63.979-19.334,85.305-42.806C362.559,393.934,392.412,413,426.535,413h1.062l51.253-138.78c2.126-5.329,1.063-11.641-1.07-16.976\r\n\t\tc-2.136-5.333-7.237-8.487-12.567-10.623L427,234.133v-98.15C427,112.51,407.344,93,383.884,93h-63.979l-15.993-53h-95.969\r\n\t\tl-15.995,53h-63.979C104.511,93,85,112.51,85,135.982v98.15l-38.074,12.533c-5.33,2.136-10.582,5.334-12.718,10.667\r\n\t\tc-2.135,5.335-3.158,10.49-1.031,16.887L84.255,413z M128,136h256v84.261l-128-41.605l-128,41.605V136z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M341.231,408.007c-52.253,36.267-118.356,36.258-170.608-0.009c0,0-57.638,64.002-106.632,64.002h21.327\r\n\t\tc29.854,0,58.646-11.726,85.305-25.594c53.315,27.734,117.293,27.728,170.608-0.007C367.89,460.268,396.681,472,426.535,472h21.328\r\n\t\tC400.212,472,341.231,408.007,341.231,408.007z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M341.231,408.007c-52.253,36.267-118.356,36.258-170.608-0.009c0,0-57.638,64.002-106.632,64.002h21.327\r\n\t\tc29.854,0,58.646-11.726,85.305-25.594c53.315,27.734,117.293,27.728,170.608-0.007C367.89,460.268,396.681,472,426.535,472h21.328\r\n\t\tC400.212,472,341.231,408.007,341.231,408.007z" + }, + "children": [] + }] + }] + }] +}; +exports.androidBoat = androidBoat; \ No newline at end of file diff --git a/dist/ionicons/androidBookmark.js b/dist/ionicons/androidBookmark.js new file mode 100644 index 000000000..fb897cc22 --- /dev/null +++ b/dist/ionicons/androidBookmark.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidBookmark = void 0; +var androidBookmark = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M360,64H152c-22.002,0-40,17.998-40,40v344l144-64l144,64V104C400,81.998,382.002,64,360,64z" + }, + "children": [] + }] +}; +exports.androidBookmark = androidBookmark; \ No newline at end of file diff --git a/dist/ionicons/androidBulb.js b/dist/ionicons/androidBulb.js new file mode 100644 index 000000000..1d66f56f5 --- /dev/null +++ b/dist/ionicons/androidBulb.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidBulb = void 0; +var androidBulb = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": { + "id": "Icon_26_" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,170.136c25.499,0,49.567,10.025,67.771,28.229C341.975,216.568,352,240.637,352,266.136\r\n\t\t\tc0,17.621-4.422,34.031-13.144,48.773c-8.339,14.098-20.437,26.036-34.985,34.526L288,358.697v18.376V448h-64v-70.927v-18.376\r\n\t\t\tl-15.871-9.262C178.442,332.111,160,300.192,160,266.136c0-25.499,10.025-49.567,28.229-67.771\r\n\t\t\tC206.433,180.161,230.501,170.136,256,170.136 M277.333,32c-6.396,0-42.666,0-42.666,0v64h42.666V32L277.333,32z M406.396,85.864\r\n\t\t\tL368,124.271l29.864,29.865l38.406-38.396L406.396,85.864L406.396,85.864z M105.604,85.864l-29.875,29.875l38.406,38.396\r\n\t\t\tL144,124.271L105.604,85.864L105.604,85.864z M256,138.136c-70.396,0-128,57.604-128,128c0,46.938,25.604,88.531,64,110.938V480\r\n\t\t\th128V377.073c38.396-22.406,64-62.938,64-110.938C384,195.739,326.396,138.136,256,138.136L256,138.136z M480,244.802h-64v42.667\r\n\t\t\th64V244.802L480,244.802z M96,244.802H32v42.667h64V244.802L96,244.802z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,170.136c25.499,0,49.567,10.025,67.771,28.229C341.975,216.568,352,240.637,352,266.136\r\n\t\t\tc0,17.621-4.422,34.031-13.144,48.773c-8.339,14.098-20.437,26.036-34.985,34.526L288,358.697v18.376V448h-64v-70.927v-18.376\r\n\t\t\tl-15.871-9.262C178.442,332.111,160,300.192,160,266.136c0-25.499,10.025-49.567,28.229-67.771\r\n\t\t\tC206.433,180.161,230.501,170.136,256,170.136 M277.333,32c-6.396,0-42.666,0-42.666,0v64h42.666V32L277.333,32z M406.396,85.864\r\n\t\t\tL368,124.271l29.864,29.865l38.406-38.396L406.396,85.864L406.396,85.864z M105.604,85.864l-29.875,29.875l38.406,38.396\r\n\t\t\tL144,124.271L105.604,85.864L105.604,85.864z M256,138.136c-70.396,0-128,57.604-128,128c0,46.938,25.604,88.531,64,110.938V480\r\n\t\t\th128V377.073c38.396-22.406,64-62.938,64-110.938C384,195.739,326.396,138.136,256,138.136L256,138.136z M480,244.802h-64v42.667\r\n\t\t\th64V244.802L480,244.802z M96,244.802H32v42.667h64V244.802L96,244.802z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.androidBulb = androidBulb; \ No newline at end of file diff --git a/dist/ionicons/androidBus.js b/dist/ionicons/androidBus.js new file mode 100644 index 000000000..3acec5283 --- /dev/null +++ b/dist/ionicons/androidBus.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidBus = void 0; +var androidBus = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": { + "id": "Icon_14_" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M80,352c0,19.198,13.864,24.531,26.667,36.271v38.396c0,11.729,9.599,21.334,21.333,21.334h21.333\r\n\t\t\t\tc11.734,0,21.334-9.604,21.334-21.334v-21.333h170.666v21.333c0,11.729,9.604,21.334,21.334,21.334H384\r\n\t\t\t\tc11.729,0,21.333-9.604,21.333-21.334v-38.396C418.136,376.531,432,370.136,432,352V148.334C432,73.667,349.864,64,256,64\r\n\t\t\t\tS80,73.667,80,148.334V352z M160,367.989c-18.136,0-32-13.864-32-32c0-18.135,13.864-32,32-32s32,13.865,32,32\r\n\t\t\t\tC192,354.125,178.136,367.989,160,367.989z M352,367.989c-18.136,0-32-13.864-32-32c0-18.135,13.864-32,32-32s32,13.865,32,32\r\n\t\t\t\tC384,354.125,370.136,367.989,352,367.989z M384,245.333H128V138.667h256V245.333z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M80,352c0,19.198,13.864,24.531,26.667,36.271v38.396c0,11.729,9.599,21.334,21.333,21.334h21.333\r\n\t\t\t\tc11.734,0,21.334-9.604,21.334-21.334v-21.333h170.666v21.333c0,11.729,9.604,21.334,21.334,21.334H384\r\n\t\t\t\tc11.729,0,21.333-9.604,21.333-21.334v-38.396C418.136,376.531,432,370.136,432,352V148.334C432,73.667,349.864,64,256,64\r\n\t\t\t\tS80,73.667,80,148.334V352z M160,367.989c-18.136,0-32-13.864-32-32c0-18.135,13.864-32,32-32s32,13.865,32,32\r\n\t\t\t\tC192,354.125,178.136,367.989,160,367.989z M352,367.989c-18.136,0-32-13.864-32-32c0-18.135,13.864-32,32-32s32,13.865,32,32\r\n\t\t\t\tC384,354.125,370.136,367.989,352,367.989z M384,245.333H128V138.667h256V245.333z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.androidBus = androidBus; \ No newline at end of file diff --git a/dist/ionicons/androidCalendar.js b/dist/ionicons/androidCalendar.js new file mode 100644 index 000000000..db0ede39c --- /dev/null +++ b/dist/ionicons/androidCalendar.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidCalendar = void 0; +var androidCalendar = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M368.005,272h-96v96h96V272z M336.005,64v32h-160V64h-48v32h-24.01c-22.002,0-40,17.998-40,40v272\r\n\t\tc0,22.002,17.998,40,40,40h304.01c22.002,0,40-17.998,40-40V136c0-22.002-17.998-40-40-40h-24V64H336.005z M408.005,408h-304.01\r\n\t\tV196h304.01V408z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M368.005,272h-96v96h96V272z M336.005,64v32h-160V64h-48v32h-24.01c-22.002,0-40,17.998-40,40v272\r\n\t\tc0,22.002,17.998,40,40,40h304.01c22.002,0,40-17.998,40-40V136c0-22.002-17.998-40-40-40h-24V64H336.005z M408.005,408h-304.01\r\n\t\tV196h304.01V408z" + }, + "children": [] + }] + }] + }] +}; +exports.androidCalendar = androidCalendar; \ No newline at end of file diff --git a/dist/ionicons/androidCall.js b/dist/ionicons/androidCall.js new file mode 100644 index 000000000..7dccaf9b2 --- /dev/null +++ b/dist/ionicons/androidCall.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidCall = void 0; +var androidCall = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M426.666,330.667c-26.666,0-52.271-4.271-75.729-11.729c-7.469-2.136-16-1.073-21.332,5.333l-46.939,46.928\r\n\tc-60.802-30.928-109.864-80-140.802-140.803l46.939-46.927c5.332-5.333,7.462-13.864,5.332-21.333\r\n\tc-8.537-24.531-12.802-50.136-12.802-76.803C181.333,73.604,171.734,64,160,64H85.333C73.599,64,64,73.604,64,85.333\r\n\tC64,285.864,226.136,448,426.666,448c11.73,0,21.334-9.604,21.334-21.333V352C448,340.271,438.396,330.667,426.666,330.667z" + }, + "children": [] + }] +}; +exports.androidCall = androidCall; \ No newline at end of file diff --git a/dist/ionicons/androidCamera.js b/dist/ionicons/androidCamera.js new file mode 100644 index 000000000..45a66ddc6 --- /dev/null +++ b/dist/ionicons/androidCamera.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidCamera = void 0; +var androidCamera = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "cx": "256", + "cy": "280", + "r": "63" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "256", + "cy": "280", + "r": "63" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M440,96h-88l-32-32H192l-32,32H72c-22.092,0-40,17.908-40,40v272c0,22.092,17.908,40,40,40h368c22.092,0,40-17.908,40-40\r\n\t\tV136C480,113.908,462.092,96,440,96z M256,392c-61.855,0-112-50.145-112-112s50.145-112,112-112s112,50.145,112,112\r\n\t\tS317.855,392,256,392z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M440,96h-88l-32-32H192l-32,32H72c-22.092,0-40,17.908-40,40v272c0,22.092,17.908,40,40,40h368c22.092,0,40-17.908,40-40\r\n\t\tV136C480,113.908,462.092,96,440,96z M256,392c-61.855,0-112-50.145-112-112s50.145-112,112-112s112,50.145,112,112\r\n\t\tS317.855,392,256,392z" + }, + "children": [] + }] + }] + }] +}; +exports.androidCamera = androidCamera; \ No newline at end of file diff --git a/dist/ionicons/androidCancel.js b/dist/ionicons/androidCancel.js new file mode 100644 index 000000000..854e141eb --- /dev/null +++ b/dist/ionicons/androidCancel.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidCancel = void 0; +var androidCancel = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48C140.559,48,48,140.559,48,256c0,115.436,92.559,208,208,208c115.435,0,208-92.564,208-208\r\n\t\tC464,140.559,371.436,48,256,48z M360.002,330.881l-29.12,29.117L256,285.117l-74.881,74.881l-29.121-29.117L226.881,256\r\n\t\tl-74.883-74.881l29.121-29.116L256,226.881l74.881-74.878l29.12,29.116L285.119,256L360.002,330.881z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48C140.559,48,48,140.559,48,256c0,115.436,92.559,208,208,208c115.435,0,208-92.564,208-208\r\n\t\tC464,140.559,371.436,48,256,48z M360.002,330.881l-29.12,29.117L256,285.117l-74.881,74.881l-29.121-29.117L226.881,256\r\n\t\tl-74.883-74.881l29.121-29.116L256,226.881l74.881-74.878l29.12,29.116L285.119,256L360.002,330.881z" + }, + "children": [] + }] + }] + }] +}; +exports.androidCancel = androidCancel; \ No newline at end of file diff --git a/dist/ionicons/androidCar.js b/dist/ionicons/androidCar.js new file mode 100644 index 000000000..9eeaeea12 --- /dev/null +++ b/dist/ionicons/androidCar.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidCar = void 0; +var androidCar = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": { + "id": "Icon_15_" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M403.208,117.333c-4.271-12.802-16-21.333-29.875-21.333H138.667c-13.875,0-25.604,8.531-29.875,21.333L64,234.667v160\r\n\t\t\tC64,406.396,73.604,416,85.333,416h21.334c11.729,0,21.333-9.604,21.333-21.333V384h256v10.667\r\n\t\t\tc0,11.729,9.604,21.333,21.333,21.333h21.334c11.729,0,21.333-9.604,21.333-21.333v-160L403.208,117.333z M138.667,320\r\n\t\t\tc-18.125,0-32-13.865-32-32s13.875-32,32-32s32,13.866,32,32S156.792,320,138.667,320z M373.333,320c-18.125,0-32-13.865-32-32\r\n\t\t\ts13.875-32,32-32s32,13.866,32,32S391.458,320,373.333,320z M106.667,213.333l32-85.333h234.666l32,85.333H106.667z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M403.208,117.333c-4.271-12.802-16-21.333-29.875-21.333H138.667c-13.875,0-25.604,8.531-29.875,21.333L64,234.667v160\r\n\t\t\tC64,406.396,73.604,416,85.333,416h21.334c11.729,0,21.333-9.604,21.333-21.333V384h256v10.667\r\n\t\t\tc0,11.729,9.604,21.333,21.333,21.333h21.334c11.729,0,21.333-9.604,21.333-21.333v-160L403.208,117.333z M138.667,320\r\n\t\t\tc-18.125,0-32-13.865-32-32s13.875-32,32-32s32,13.866,32,32S156.792,320,138.667,320z M373.333,320c-18.125,0-32-13.865-32-32\r\n\t\t\ts13.875-32,32-32s32,13.866,32,32S391.458,320,373.333,320z M106.667,213.333l32-85.333h234.666l32,85.333H106.667z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.androidCar = androidCar; \ No newline at end of file diff --git a/dist/ionicons/androidCart.js b/dist/ionicons/androidCart.js new file mode 100644 index 000000000..fd23e607d --- /dev/null +++ b/dist/ionicons/androidCart.js @@ -0,0 +1,29 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidCart = void 0; +var androidCart = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill": "#010101", + "d": "M169.6,377.6c-22.882,0-41.6,18.718-41.6,41.601c0,22.882,18.718,41.6,41.6,41.6s41.601-18.718,41.601-41.6\r\n\t\tC211.2,396.317,192.481,377.6,169.6,377.6z M48,51.2v41.6h41.6l74.883,151.682l-31.308,50.954c-3.118,5.2-5.2,12.482-5.2,19.765\r\n\t\tc0,27.85,19.025,41.6,44.825,41.6H416v-40H177.893c-3.118,0-5.2-2.082-5.2-5.2c0-1.036,2.207-5.2,2.207-5.2l20.782-32.8h154.954\r\n\t\tc15.601,0,29.128-8.317,36.4-21.836l74.882-128.8c1.237-2.461,2.082-6.246,2.082-10.399c0-11.446-9.364-19.765-20.8-19.765H135.364\r\n\t\tL115.6,51.2H48z M374.399,377.6c-22.882,0-41.6,18.718-41.6,41.601c0,22.882,18.718,41.6,41.6,41.6S416,442.082,416,419.2\r\n\t\tC416,396.317,397.281,377.6,374.399,377.6z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill": "#010101", + "d": "M169.6,377.6c-22.882,0-41.6,18.718-41.6,41.601c0,22.882,18.718,41.6,41.6,41.6s41.601-18.718,41.601-41.6\r\n\t\tC211.2,396.317,192.481,377.6,169.6,377.6z M48,51.2v41.6h41.6l74.883,151.682l-31.308,50.954c-3.118,5.2-5.2,12.482-5.2,19.765\r\n\t\tc0,27.85,19.025,41.6,44.825,41.6H416v-40H177.893c-3.118,0-5.2-2.082-5.2-5.2c0-1.036,2.207-5.2,2.207-5.2l20.782-32.8h154.954\r\n\t\tc15.601,0,29.128-8.317,36.4-21.836l74.882-128.8c1.237-2.461,2.082-6.246,2.082-10.399c0-11.446-9.364-19.765-20.8-19.765H135.364\r\n\t\tL115.6,51.2H48z M374.399,377.6c-22.882,0-41.6,18.718-41.6,41.601c0,22.882,18.718,41.6,41.6,41.6S416,442.082,416,419.2\r\n\t\tC416,396.317,397.281,377.6,374.399,377.6z" + }, + "children": [] + }] + }] + }] +}; +exports.androidCart = androidCart; \ No newline at end of file diff --git a/dist/ionicons/androidChat.js b/dist/ionicons/androidChat.js new file mode 100644 index 000000000..03c2e6396 --- /dev/null +++ b/dist/ionicons/androidChat.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidChat = void 0; +var androidChat = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M391.553,64H57.607C53.131,64,48,67.745,48,72.159v214.217c0,4.413,5.131,8.624,9.607,8.624H115v88.894L205.128,295\r\n\t\th186.425c4.477,0,7.447-4.211,7.447-8.624V72.159C399,67.745,396.029,64,391.553,64z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M391.553,64H57.607C53.131,64,48,67.745,48,72.159v214.217c0,4.413,5.131,8.624,9.607,8.624H115v88.894L205.128,295\r\n\t\th186.425c4.477,0,7.447-4.211,7.447-8.624V72.159C399,67.745,396.029,64,391.553,64z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M456.396,127H424v166.57c0,15.987-6.915,26.43-25.152,26.43H218.096l-38.905,39h129.688L399,448v-89h57.396\r\n\t\tc4.478,0,7.604-4.262,7.604-8.682V136.103C464,131.689,460.874,127,456.396,127z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M456.396,127H424v166.57c0,15.987-6.915,26.43-25.152,26.43H218.096l-38.905,39h129.688L399,448v-89h57.396\r\n\t\tc4.478,0,7.604-4.262,7.604-8.682V136.103C464,131.689,460.874,127,456.396,127z" + }, + "children": [] + }] + }] + }] +}; +exports.androidChat = androidChat; \ No newline at end of file diff --git a/dist/ionicons/androidCheckbox.js b/dist/ionicons/androidCheckbox.js new file mode 100644 index 000000000..4433f72c6 --- /dev/null +++ b/dist/ionicons/androidCheckbox.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidCheckbox = void 0; +var androidCheckbox = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": { + "id": "Icon_22_" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M405.333,64H106.667C83.198,64,64,83.198,64,106.667v298.666C64,428.802,83.198,448,106.667,448h298.666\r\n\t\t\tC428.802,448,448,428.802,448,405.333V106.667C448,83.198,428.802,64,405.333,64z M213.333,362.667L106.667,256l29.864-29.864\r\n\t\t\tl76.802,76.802l162.136-162.136l29.864,29.865L213.333,362.667z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M405.333,64H106.667C83.198,64,64,83.198,64,106.667v298.666C64,428.802,83.198,448,106.667,448h298.666\r\n\t\t\tC428.802,448,448,428.802,448,405.333V106.667C448,83.198,428.802,64,405.333,64z M213.333,362.667L106.667,256l29.864-29.864\r\n\t\t\tl76.802,76.802l162.136-162.136l29.864,29.865L213.333,362.667z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.androidCheckbox = androidCheckbox; \ No newline at end of file diff --git a/dist/ionicons/androidCheckboxBlank.js b/dist/ionicons/androidCheckboxBlank.js new file mode 100644 index 000000000..f481969d1 --- /dev/null +++ b/dist/ionicons/androidCheckboxBlank.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidCheckboxBlank = void 0; +var androidCheckboxBlank = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": { + "id": "Icon_23_" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M405.333,64H106.667C83.198,64,64,83.198,64,106.667v298.666C64,428.802,83.198,448,106.667,448h298.666\r\n\t\t\tC428.802,448,448,428.802,448,405.333V106.667C448,83.198,428.802,64,405.333,64z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M405.333,64H106.667C83.198,64,64,83.198,64,106.667v298.666C64,428.802,83.198,448,106.667,448h298.666\r\n\t\t\tC428.802,448,448,428.802,448,405.333V106.667C448,83.198,428.802,64,405.333,64z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.androidCheckboxBlank = androidCheckboxBlank; \ No newline at end of file diff --git a/dist/ionicons/androidCheckboxOutline.js b/dist/ionicons/androidCheckboxOutline.js new file mode 100644 index 000000000..9b79001d8 --- /dev/null +++ b/dist/ionicons/androidCheckboxOutline.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidCheckboxOutline = void 0; +var androidCheckboxOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": { + "id": "Icon_24_" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M168.531,215.469l-29.864,29.864l96,96L448,128l-29.864-29.864L234.667,280.531L168.531,215.469z M405.333,405.333\r\n\t\t\tH106.667V106.667H320V64H106.667C83.198,64,64,83.198,64,106.667v298.666C64,428.802,83.198,448,106.667,448h298.666\r\n\t\t\tC428.802,448,448,428.802,448,405.333V234.667h-42.667V405.333z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M168.531,215.469l-29.864,29.864l96,96L448,128l-29.864-29.864L234.667,280.531L168.531,215.469z M405.333,405.333\r\n\t\t\tH106.667V106.667H320V64H106.667C83.198,64,64,83.198,64,106.667v298.666C64,428.802,83.198,448,106.667,448h298.666\r\n\t\t\tC428.802,448,448,428.802,448,405.333V234.667h-42.667V405.333z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.androidCheckboxOutline = androidCheckboxOutline; \ No newline at end of file diff --git a/dist/ionicons/androidCheckboxOutlineBlank.js b/dist/ionicons/androidCheckboxOutlineBlank.js new file mode 100644 index 000000000..461f4302f --- /dev/null +++ b/dist/ionicons/androidCheckboxOutlineBlank.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidCheckboxOutlineBlank = void 0; +var androidCheckboxOutlineBlank = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": { + "id": "Icon_25_" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M405.333,106.667v298.666H106.667V106.667H405.333 M405.333,64H106.667C83.198,64,64,83.198,64,106.667v298.666\r\n\t\t\tC64,428.802,83.198,448,106.667,448h298.666C428.802,448,448,428.802,448,405.333V106.667C448,83.198,428.802,64,405.333,64\r\n\t\t\tL405.333,64z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M405.333,106.667v298.666H106.667V106.667H405.333 M405.333,64H106.667C83.198,64,64,83.198,64,106.667v298.666\r\n\t\t\tC64,428.802,83.198,448,106.667,448h298.666C428.802,448,448,428.802,448,405.333V106.667C448,83.198,428.802,64,405.333,64\r\n\t\t\tL405.333,64z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.androidCheckboxOutlineBlank = androidCheckboxOutlineBlank; \ No newline at end of file diff --git a/dist/ionicons/androidCheckmarkCircle.js b/dist/ionicons/androidCheckmarkCircle.js new file mode 100644 index 000000000..18fa68f17 --- /dev/null +++ b/dist/ionicons/androidCheckmarkCircle.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidCheckmarkCircle = void 0; +var androidCheckmarkCircle = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M170.718,216.482L141.6,245.6L235.2,339.2l208-208l-29.118-29.118L235.2,279.918L170.718,216.482z M422.4,256\r\n\tc0,91.518-74.883,166.4-166.4,166.4S89.6,347.518,89.6,256S164.482,89.6,256,89.6c15.6,0,31.2,2.082,45.764,6.241L334,63.6\r\n\tC310.082,53.2,284.082,48,256,48C141.6,48,48,141.6,48,256s93.6,208,208,208s208-93.6,208-208H422.4z" + }, + "children": [] + }] +}; +exports.androidCheckmarkCircle = androidCheckmarkCircle; \ No newline at end of file diff --git a/dist/ionicons/androidClipboard.js b/dist/ionicons/androidClipboard.js new file mode 100644 index 000000000..87b531279 --- /dev/null +++ b/dist/ionicons/androidClipboard.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidClipboard = void 0; +var androidClipboard = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M405.333,80h-87.35C310.879,52.396,285.821,32,256,32s-54.879,20.396-61.983,48h-87.35C83.198,80,64,99.198,64,122.667\r\n\tv314.665C64,460.801,83.198,480,106.667,480h298.666C428.802,480,448,460.801,448,437.332V122.667C448,99.198,428.802,80,405.333,80\r\n\tz M256,80c11.729,0,21.333,9.599,21.333,21.333s-9.604,21.334-21.333,21.334s-21.333-9.6-21.333-21.334S244.271,80,256,80z M408,440\r\n\tH104V120h40v72h224v-72h40V440z" + }, + "children": [] + }] +}; +exports.androidClipboard = androidClipboard; \ No newline at end of file diff --git a/dist/ionicons/androidClose.js b/dist/ionicons/androidClose.js new file mode 100644 index 000000000..fcca3d735 --- /dev/null +++ b/dist/ionicons/androidClose.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidClose = void 0; +var androidClose = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": { + "id": "Icon_5_" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "405,136.798 375.202,107 256,226.202 136.798,107 107,136.798 226.202,256 107,375.202 136.798,405 256,285.798 \r\n\t\t\t375.202,405 405,375.202 285.798,256 \t\t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "405,136.798 375.202,107 256,226.202 136.798,107 107,136.798 226.202,256 107,375.202 136.798,405 256,285.798 \r\n\t\t\t375.202,405 405,375.202 285.798,256 \t\t" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.androidClose = androidClose; \ No newline at end of file diff --git a/dist/ionicons/androidCloud.js b/dist/ionicons/androidCloud.js new file mode 100644 index 000000000..cadc5b407 --- /dev/null +++ b/dist/ionicons/androidCloud.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidCloud = void 0; +var androidCloud = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M403.002,217.001C388.998,148.002,328.998,96,256,96c-57.998,0-107.998,32.998-132.998,81.001\r\n\tC63.002,183.002,16,233.998,16,296c0,65.996,53.999,120,120,120h260c55,0,100-45,100-100\r\n\tC496,263.002,455.004,219.999,403.002,217.001z" + }, + "children": [] + }] +}; +exports.androidCloud = androidCloud; \ No newline at end of file diff --git a/dist/ionicons/androidCloudCircle.js b/dist/ionicons/androidCloudCircle.js new file mode 100644 index 000000000..2608f42b1 --- /dev/null +++ b/dist/ionicons/androidCloudCircle.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidCloudCircle = void 0; +var androidCloudCircle = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": { + "id": "Icon_32_" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48C141.6,48,48,141.6,48,256s93.6,208,208,208c114.4,0,208-93.6,208-208S370.4,48,256,48z M349.6,339.2\r\n\t\t\t\tc0,0-175.759,0-176.799,0c-34.318,0-62.4-28.082-62.4-62.399c0-34.319,28.082-62.4,62.4-62.4c1.041,0,2.082,0,3.117,0\r\n\t\t\t\tc9.364-36.4,41.601-62.399,80.083-62.399c45.764,0,83.199,37.435,83.199,83.198h10.4c29.118,0,52,22.882,52,52.001\r\n\t\t\t\tC401.6,316.318,378.718,339.2,349.6,339.2z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48C141.6,48,48,141.6,48,256s93.6,208,208,208c114.4,0,208-93.6,208-208S370.4,48,256,48z M349.6,339.2\r\n\t\t\t\tc0,0-175.759,0-176.799,0c-34.318,0-62.4-28.082-62.4-62.399c0-34.319,28.082-62.4,62.4-62.4c1.041,0,2.082,0,3.117,0\r\n\t\t\t\tc9.364-36.4,41.601-62.399,80.083-62.399c45.764,0,83.199,37.435,83.199,83.198h10.4c29.118,0,52,22.882,52,52.001\r\n\t\t\t\tC401.6,316.318,378.718,339.2,349.6,339.2z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.androidCloudCircle = androidCloudCircle; \ No newline at end of file diff --git a/dist/ionicons/androidCloudDone.js b/dist/ionicons/androidCloudDone.js new file mode 100644 index 000000000..4628cdee9 --- /dev/null +++ b/dist/ionicons/androidCloudDone.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidCloudDone = void 0; +var androidCloudDone = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M403.002,217.001C388.998,148.002,328.998,96,256,96c-57.998,0-107.998,32.998-132.998,81.001\r\n\t\tC63.002,183.002,16,233.998,16,296c0,65.996,53.999,120,120,120h260c55,0,100-45,100-100\r\n\t\tC496,263.002,455.004,219.999,403.002,217.001z M213.333,362.667L138.667,288l29.864-29.864l44.802,44.802L324.271,192\r\n\t\tl29.865,29.864L213.333,362.667z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M403.002,217.001C388.998,148.002,328.998,96,256,96c-57.998,0-107.998,32.998-132.998,81.001\r\n\t\tC63.002,183.002,16,233.998,16,296c0,65.996,53.999,120,120,120h260c55,0,100-45,100-100\r\n\t\tC496,263.002,455.004,219.999,403.002,217.001z M213.333,362.667L138.667,288l29.864-29.864l44.802,44.802L324.271,192\r\n\t\tl29.865,29.864L213.333,362.667z" + }, + "children": [] + }] + }] + }] +}; +exports.androidCloudDone = androidCloudDone; \ No newline at end of file diff --git a/dist/ionicons/androidCloudOutline.js b/dist/ionicons/androidCloudOutline.js new file mode 100644 index 000000000..3b50579c7 --- /dev/null +++ b/dist/ionicons/androidCloudOutline.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidCloudOutline = void 0; +var androidCloudOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": { + "id": "Icon_9_" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M403.001,217.001C388.997,148.002,328.998,96,256,96c-57.998,0-107.999,32.998-132.997,81\r\n\t\t\t\tC63.002,183.002,16,233.998,16,296c0,65.996,54.004,120,120,120h260c55,0,100-45,100-100.001\r\n\t\t\t\tC496,263.002,455.003,220,403.001,217.001z M396,376H136c-44.004,0-80-35.996-80-80c0-44,35.996-80,80-80h14.004\r\n\t\t\t\tc12.998-46,55-80,105.996-80c60.996,0,110,49,110,110v10h30c32.998,0,60,27.003,60,60C456,348.998,428.998,376,396,376z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M403.001,217.001C388.997,148.002,328.998,96,256,96c-57.998,0-107.999,32.998-132.997,81\r\n\t\t\t\tC63.002,183.002,16,233.998,16,296c0,65.996,54.004,120,120,120h260c55,0,100-45,100-100.001\r\n\t\t\t\tC496,263.002,455.003,220,403.001,217.001z M396,376H136c-44.004,0-80-35.996-80-80c0-44,35.996-80,80-80h14.004\r\n\t\t\t\tc12.998-46,55-80,105.996-80c60.996,0,110,49,110,110v10h30c32.998,0,60,27.003,60,60C456,348.998,428.998,376,396,376z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.androidCloudOutline = androidCloudOutline; \ No newline at end of file diff --git a/dist/ionicons/androidColorPalette.js b/dist/ionicons/androidColorPalette.js new file mode 100644 index 000000000..807ee06e3 --- /dev/null +++ b/dist/ionicons/androidColorPalette.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidColorPalette = void 0; +var androidColorPalette = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": { + "id": "Icon_12_" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,64C150.401,64,64,150.401,64,256c0,105.604,86.401,192,192,192c18.136,0,32-13.864,32-32\r\n\t\t\tc0-8.531-3.198-16-8.531-21.333c-5.333-5.334-8.531-12.803-8.531-21.334c0-18.135,13.864-32,32-32h38.396\r\n\t\t\tc58.667,0,106.667-48,106.667-106.666C448,140.802,361.604,64,256,64z M138.667,256c-18.136,0-32-13.864-32-32s13.864-32,32-32\r\n\t\t\tc18.135,0,32,13.864,32,32S156.802,256,138.667,256z M202.667,170.667c-18.136,0-32-13.865-32-32c0-18.136,13.864-32,32-32\r\n\t\t\tc18.135,0,32,13.864,32,32C234.667,156.802,220.802,170.667,202.667,170.667z M309.333,170.667c-18.135,0-32-13.865-32-32\r\n\t\t\tc0-18.136,13.865-32,32-32c18.136,0,32,13.864,32,32C341.333,156.802,327.469,170.667,309.333,170.667z M373.333,256\r\n\t\t\tc-18.135,0-32-13.864-32-32s13.865-32,32-32c18.136,0,32,13.864,32,32S391.469,256,373.333,256z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,64C150.401,64,64,150.401,64,256c0,105.604,86.401,192,192,192c18.136,0,32-13.864,32-32\r\n\t\t\tc0-8.531-3.198-16-8.531-21.333c-5.333-5.334-8.531-12.803-8.531-21.334c0-18.135,13.864-32,32-32h38.396\r\n\t\t\tc58.667,0,106.667-48,106.667-106.666C448,140.802,361.604,64,256,64z M138.667,256c-18.136,0-32-13.864-32-32s13.864-32,32-32\r\n\t\t\tc18.135,0,32,13.864,32,32S156.802,256,138.667,256z M202.667,170.667c-18.136,0-32-13.865-32-32c0-18.136,13.864-32,32-32\r\n\t\t\tc18.135,0,32,13.864,32,32C234.667,156.802,220.802,170.667,202.667,170.667z M309.333,170.667c-18.135,0-32-13.865-32-32\r\n\t\t\tc0-18.136,13.865-32,32-32c18.136,0,32,13.864,32,32C341.333,156.802,327.469,170.667,309.333,170.667z M373.333,256\r\n\t\t\tc-18.135,0-32-13.864-32-32s13.865-32,32-32c18.136,0,32,13.864,32,32S391.469,256,373.333,256z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.androidColorPalette = androidColorPalette; \ No newline at end of file diff --git a/dist/ionicons/androidCompass.js b/dist/ionicons/androidCompass.js new file mode 100644 index 000000000..a89727ed8 --- /dev/null +++ b/dist/ionicons/androidCompass.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidCompass = void 0; +var androidCompass = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,231.358c-13.442,0-24.643,11.2-24.643,24.642s11.2,24.643,24.643,24.643s24.643-11.2,24.643-24.643\r\n\tS269.442,231.358,256,231.358z M256,32C132.8,32,32,132.8,32,256s100.8,224,224,224s224-100.8,224-224S379.2,32,256,32z\r\n\t M305.284,305.284L121.6,390.4l85.116-183.679L390.4,121.6L305.284,305.284z" + }, + "children": [] + }] +}; +exports.androidCompass = androidCompass; \ No newline at end of file diff --git a/dist/ionicons/androidContact.js b/dist/ionicons/androidContact.js new file mode 100644 index 000000000..6d5a1c1e2 --- /dev/null +++ b/dist/ionicons/androidContact.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidContact = void 0; +var androidContact = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M331.08,338.205c-22.156,12.594-47.777,19.783-75.084,19.783c-27.302,0-52.919-7.182-75.073-19.771\r\n\t\tC122.153,356.152,77.262,396,64,448h384C434.745,396,389.854,356.131,331.08,338.205z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M331.08,338.205c-22.156,12.594-47.777,19.783-75.084,19.783c-27.302,0-52.919-7.182-75.073-19.771\r\n\t\tC122.153,356.152,77.262,396,64,448h384C434.745,396,389.854,356.131,331.08,338.205z" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M255.996,64c-72.871,0-131.945,59.127-131.945,132.013c0,72.887,59.074,131.972,131.945,131.972\r\n\t\t\ts131.945-59.085,131.945-131.972C387.941,123.127,328.867,64,255.996,64z M255.996,294.986c-41.958,0-77.813-25.986-92.209-62.986\r\n\t\t\th184.418C333.809,269,297.953,294.986,255.996,294.986z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M255.996,64c-72.871,0-131.945,59.127-131.945,132.013c0,72.887,59.074,131.972,131.945,131.972\r\n\t\t\ts131.945-59.085,131.945-131.972C387.941,123.127,328.867,64,255.996,64z M255.996,294.986c-41.958,0-77.813-25.986-92.209-62.986\r\n\t\t\th184.418C333.809,269,297.953,294.986,255.996,294.986z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.androidContact = androidContact; \ No newline at end of file diff --git a/dist/ionicons/androidContacts.js b/dist/ionicons/androidContacts.js new file mode 100644 index 000000000..a617a8bf8 --- /dev/null +++ b/dist/ionicons/androidContacts.js @@ -0,0 +1,95 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidContacts = void 0; +var androidContacts = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M239.208,343.937c-17.78,10.103-38.342,15.876-60.255,15.876c-21.909,0-42.467-5.771-60.246-15.87\r\n\t\t\tC71.544,358.331,42.643,406,32,448h293.912C315.273,406,286.375,358.317,239.208,343.937z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M239.208,343.937c-17.78,10.103-38.342,15.876-60.255,15.876c-21.909,0-42.467-5.771-60.246-15.87\r\n\t\t\tC71.544,358.331,42.643,406,32,448h293.912C315.273,406,286.375,358.317,239.208,343.937z" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M178.953,120.035c-58.479,0-105.886,47.394-105.886,105.858c0,58.464,47.407,105.857,105.886,105.857\r\n\t\t\t\tc58.479,0,105.886-47.394,105.886-105.857C284.839,167.429,237.431,120.035,178.953,120.035z M178.953,306.523\r\n\t\t\t\tc-33.671,0-62.445-22.513-73.997-50.523H252.95C241.396,284.011,212.624,306.523,178.953,306.523z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M178.953,120.035c-58.479,0-105.886,47.394-105.886,105.858c0,58.464,47.407,105.857,105.886,105.857\r\n\t\t\t\tc58.479,0,105.886-47.394,105.886-105.857C284.839,167.429,237.431,120.035,178.953,120.035z M178.953,306.523\r\n\t\t\t\tc-33.671,0-62.445-22.513-73.997-50.523H252.95C241.396,284.011,212.624,306.523,178.953,306.523z" + }, + "children": [] + }] + }] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M322.602,384H480c-10.638-42-39.537-81.691-86.703-96.072c-17.781,10.104-38.343,15.873-60.256,15.873\r\n\t\t\t\tc-14.823,0-29.024-2.654-42.168-7.49c-7.445,12.47-16.927,25.592-27.974,34.906C289.245,341.354,309.146,364,322.602,384z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M322.602,384H480c-10.638-42-39.537-81.691-86.703-96.072c-17.781,10.104-38.343,15.873-60.256,15.873\r\n\t\t\t\tc-14.823,0-29.024-2.654-42.168-7.49c-7.445,12.47-16.927,25.592-27.974,34.906C289.245,341.354,309.146,364,322.602,384z" + }, + "children": [] + }] + }] + }] + }, { + "name": "path", + "attribs": { + "d": "M306.545,200h100.493c-11.554,28-40.327,50.293-73.997,50.293c-8.875,0-17.404-1.692-25.375-4.51\r\n\t\t\tc-1.338,8.709-3.543,17.07-6.52,25.118c10.066,3.174,20.779,4.862,31.895,4.862c58.479,0,105.886-47.41,105.886-105.872\r\n\t\t\tc0-58.465-47.407-105.866-105.886-105.866c-37.49,0-70.427,19.703-89.243,49.09C275.607,131.383,298.961,163,306.545,200z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M306.545,200h100.493c-11.554,28-40.327,50.293-73.997,50.293c-8.875,0-17.404-1.692-25.375-4.51\r\n\t\t\tc-1.338,8.709-3.543,17.07-6.52,25.118c10.066,3.174,20.779,4.862,31.895,4.862c58.479,0,105.886-47.41,105.886-105.872\r\n\t\t\tc0-58.465-47.407-105.866-105.886-105.866c-37.49,0-70.427,19.703-89.243,49.09C275.607,131.383,298.961,163,306.545,200z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.androidContacts = androidContacts; \ No newline at end of file diff --git a/dist/ionicons/androidContract.js b/dist/ionicons/androidContract.js new file mode 100644 index 000000000..e8563e37a --- /dev/null +++ b/dist/ionicons/androidContract.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidContract = void 0; +var androidContract = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": { + "id": "Icon_2_" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M64,371.2h76.795V448H192V320H64V371.2z M140.795,140.8H64V192h128V64h-51.205V140.8z M320,448h51.2v-76.8H448V320H320\r\n\t\t\tV448z M371.2,140.8V64H320v128h128v-51.2H371.2z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M64,371.2h76.795V448H192V320H64V371.2z M140.795,140.8H64V192h128V64h-51.205V140.8z M320,448h51.2v-76.8H448V320H320\r\n\t\t\tV448z M371.2,140.8V64H320v128h128v-51.2H371.2z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.androidContract = androidContract; \ No newline at end of file diff --git a/dist/ionicons/androidCreate.js b/dist/ionicons/androidCreate.js new file mode 100644 index 000000000..def519673 --- /dev/null +++ b/dist/ionicons/androidCreate.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidCreate = void 0; +var androidCreate = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": { + "id": "Icon_6_" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill": "#010101", + "d": "M64,368v80h80l235.727-235.729l-79.999-79.998L64,368z M441.602,150.398\r\n\t\t\tc8.531-8.531,8.531-21.334,0-29.865l-50.135-50.135c-8.531-8.531-21.334-8.531-29.865,0l-39.468,39.469l79.999,79.998\r\n\t\t\tL441.602,150.398z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill": "#010101", + "d": "M64,368v80h80l235.727-235.729l-79.999-79.998L64,368z M441.602,150.398\r\n\t\t\tc8.531-8.531,8.531-21.334,0-29.865l-50.135-50.135c-8.531-8.531-21.334-8.531-29.865,0l-39.468,39.469l79.999,79.998\r\n\t\t\tL441.602,150.398z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.androidCreate = androidCreate; \ No newline at end of file diff --git a/dist/ionicons/androidDelete.js b/dist/ionicons/androidDelete.js new file mode 100644 index 000000000..9afd19151 --- /dev/null +++ b/dist/ionicons/androidDelete.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidDelete = void 0; +var androidDelete = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M128,405.429C128,428.846,147.198,448,170.667,448h170.667C364.802,448,384,428.846,384,405.429V160H128V405.429z M416,96\r\n\t\th-80l-26.785-32H202.786L176,96H96v32h320V96z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M128,405.429C128,428.846,147.198,448,170.667,448h170.667C364.802,448,384,428.846,384,405.429V160H128V405.429z M416,96\r\n\t\th-80l-26.785-32H202.786L176,96H96v32h320V96z" + }, + "children": [] + }] + }] + }] +}; +exports.androidDelete = androidDelete; \ No newline at end of file diff --git a/dist/ionicons/androidDesktop.js b/dist/ionicons/androidDesktop.js new file mode 100644 index 000000000..04f87fc73 --- /dev/null +++ b/dist/ionicons/androidDesktop.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidDesktop = void 0; +var androidDesktop = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": { + "id": "Icon_28_" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M437.333,32H74.667C51.198,32,32,51.197,32,74.666v282.667C32,380.802,51.198,400,74.667,400h138.666l-42.666,48v32\r\n\t\t\th170.666v-32l-42.666-48h138.666C460.802,400,480,380.802,480,357.333V74.666C480,51.197,460.802,32,437.333,32z M437.333,320\r\n\t\t\tH74.667V74.666h362.666V320z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M437.333,32H74.667C51.198,32,32,51.197,32,74.666v282.667C32,380.802,51.198,400,74.667,400h138.666l-42.666,48v32\r\n\t\t\th170.666v-32l-42.666-48h138.666C460.802,400,480,380.802,480,357.333V74.666C480,51.197,460.802,32,437.333,32z M437.333,320\r\n\t\t\tH74.667V74.666h362.666V320z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.androidDesktop = androidDesktop; \ No newline at end of file diff --git a/dist/ionicons/androidDocument.js b/dist/ionicons/androidDocument.js new file mode 100644 index 000000000..ded498902 --- /dev/null +++ b/dist/ionicons/androidDocument.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidDocument = void 0; +var androidDocument = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M288,48H136c-22.092,0-40,17.908-40,40v336c0,22.092,17.908,40,40,40h240c22.092,0,40-17.908,40-40V176L288,48z M272,192\r\n\t\tV80l112,112H272z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M288,48H136c-22.092,0-40,17.908-40,40v336c0,22.092,17.908,40,40,40h240c22.092,0,40-17.908,40-40V176L288,48z M272,192\r\n\t\tV80l112,112H272z" + }, + "children": [] + }] + }] + }] +}; +exports.androidDocument = androidDocument; \ No newline at end of file diff --git a/dist/ionicons/androidDone.js b/dist/ionicons/androidDone.js new file mode 100644 index 000000000..ef319a546 --- /dev/null +++ b/dist/ionicons/androidDone.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidDone = void 0; +var androidDone = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": { + "id": "Icon_1_" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "186.301,339.893 96,249.461 64,279.968 186.301,402 448,140.506 416,110 \t\t\t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "186.301,339.893 96,249.461 64,279.968 186.301,402 448,140.506 416,110 \t\t\t" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.androidDone = androidDone; \ No newline at end of file diff --git a/dist/ionicons/androidDoneAll.js b/dist/ionicons/androidDoneAll.js new file mode 100644 index 000000000..0f81ae5c5 --- /dev/null +++ b/dist/ionicons/androidDoneAll.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidDoneAll = void 0; +var androidDoneAll = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": { + "id": "Icon_4_" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M387.581,139.712L356.755,109L216.913,248.319l30.831,30.719L387.581,139.712z M481.172,109L247.744,340.469\r\n\t\t\tl-91.39-91.051l-30.827,30.715L247.744,403L512,139.712L481.172,109z M0,280.133L123.321,403l30.829-30.713L31.934,249.418\r\n\t\t\tL0,280.133z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M387.581,139.712L356.755,109L216.913,248.319l30.831,30.719L387.581,139.712z M481.172,109L247.744,340.469\r\n\t\t\tl-91.39-91.051l-30.827,30.715L247.744,403L512,139.712L481.172,109z M0,280.133L123.321,403l30.829-30.713L31.934,249.418\r\n\t\t\tL0,280.133z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.androidDoneAll = androidDoneAll; \ No newline at end of file diff --git a/dist/ionicons/androidDownload.js b/dist/ionicons/androidDownload.js new file mode 100644 index 000000000..aa9d85270 --- /dev/null +++ b/dist/ionicons/androidDownload.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidDownload = void 0; +var androidDownload = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M403.002,217.001C388.998,148.002,328.998,96,256,96c-57.998,0-107.998,32.998-132.998,81.001\r\n\tC63.002,183.002,16,233.998,16,296c0,65.996,53.999,120,120,120h260c55,0,100-45,100-100\r\n\tC496,263.002,455.004,219.999,403.002,217.001z M224,268v-76h64v76h68L256,368L156,268H224z" + }, + "children": [] + }] +}; +exports.androidDownload = androidDownload; \ No newline at end of file diff --git a/dist/ionicons/androidDrafts.js b/dist/ionicons/androidDrafts.js new file mode 100644 index 000000000..9681e3023 --- /dev/null +++ b/dist/ionicons/androidDrafts.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidDrafts = void 0; +var androidDrafts = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": { + "id": "Icon_18_" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M480,201.667c0-14.933-7.469-28.803-20.271-36.266L256,64L52.271,165.401C40.531,172.864,32,186.734,32,201.667v203.666\r\n\t\t\t\tC32,428.802,51.197,448,74.666,448h362.668C460.803,448,480,428.802,480,405.333V201.667z M256,304L84.631,192L256,106.667\r\n\t\t\t\tL427.369,192L256,304z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M480,201.667c0-14.933-7.469-28.803-20.271-36.266L256,64L52.271,165.401C40.531,172.864,32,186.734,32,201.667v203.666\r\n\t\t\t\tC32,428.802,51.197,448,74.666,448h362.668C460.803,448,480,428.802,480,405.333V201.667z M256,304L84.631,192L256,106.667\r\n\t\t\t\tL427.369,192L256,304z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.androidDrafts = androidDrafts; \ No newline at end of file diff --git a/dist/ionicons/androidExit.js b/dist/ionicons/androidExit.js new file mode 100644 index 000000000..fb1783fea --- /dev/null +++ b/dist/ionicons/androidExit.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidExit = void 0; +var androidExit = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M215.469,332.802l29.863,29.864L352,256L245.332,149.333l-29.863,29.865l55.469,55.469H64v42.666h205.864L215.469,332.802z\r\n\t M405.334,64H106.666C83.198,64,64,83.198,64,106.666V192h42.666v-85.333h298.668v298.668H106.666V320H64v85.334\r\n\tC64,428.802,83.198,448,106.666,448h298.668C428.802,448,448,428.802,448,405.334V106.666C448,83.198,428.802,64,405.334,64z" + }, + "children": [] + }] +}; +exports.androidExit = androidExit; \ No newline at end of file diff --git a/dist/ionicons/androidExpand.js b/dist/ionicons/androidExpand.js new file mode 100644 index 000000000..efbf4cbdb --- /dev/null +++ b/dist/ionicons/androidExpand.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidExpand = void 0; +var androidExpand = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "396.795,396.8 320,396.8 320,448 448,448 448,320 396.795,320 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "396.795,396.8 320,396.8 320,448 448,448 448,320 396.795,320 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "396.8,115.205 396.8,192 448,192 448,64 320,64 320,115.205 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "396.8,115.205 396.8,192 448,192 448,64 320,64 320,115.205 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "115.205,115.2 192,115.2 192,64 64,64 64,192 115.205,192 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "115.205,115.2 192,115.2 192,64 64,64 64,192 115.205,192 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "115.2,396.795 115.2,320 64,320 64,448 192,448 192,396.795 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "115.2,396.795 115.2,320 64,320 64,448 192,448 192,396.795 \t" + }, + "children": [] + }] + }] + }] +}; +exports.androidExpand = androidExpand; \ No newline at end of file diff --git a/dist/ionicons/androidFavorite.js b/dist/ionicons/androidFavorite.js new file mode 100644 index 000000000..4ed60b090 --- /dev/null +++ b/dist/ionicons/androidFavorite.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidFavorite = void 0; +var androidFavorite = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,448l-30.164-27.211C118.718,322.442,48,258.61,48,179.095C48,114.221,97.918,64,162.4,64\r\n\t\tc36.399,0,70.717,16.742,93.6,43.947C278.882,80.742,313.199,64,349.6,64C414.082,64,464,114.221,464,179.095\r\n\t\tc0,79.516-70.719,143.348-177.836,241.694L256,448z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,448l-30.164-27.211C118.718,322.442,48,258.61,48,179.095C48,114.221,97.918,64,162.4,64\r\n\t\tc36.399,0,70.717,16.742,93.6,43.947C278.882,80.742,313.199,64,349.6,64C414.082,64,464,114.221,464,179.095\r\n\t\tc0,79.516-70.719,143.348-177.836,241.694L256,448z" + }, + "children": [] + }] + }] + }] +}; +exports.androidFavorite = androidFavorite; \ No newline at end of file diff --git a/dist/ionicons/androidFavoriteOutline.js b/dist/ionicons/androidFavoriteOutline.js new file mode 100644 index 000000000..535e78154 --- /dev/null +++ b/dist/ionicons/androidFavoriteOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidFavoriteOutline = void 0; +var androidFavoriteOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M349.6,64c-36.4,0-70.718,16.742-93.6,43.947C233.117,80.742,198.8,64,162.4,64C97.918,64,48,114.221,48,179.095\r\n\tc0,79.516,70.718,143.348,177.836,241.694L256,448l30.164-27.211C393.281,322.442,464,258.61,464,179.095\r\n\tC464,114.221,414.082,64,349.6,64z M268.836,393.257l-4.219,3.873L256,404.903l-8.616-7.772l-4.214-3.869\r\n\tc-50.418-46.282-93.961-86.254-122.746-121.994C92.467,236.555,80,208.128,80,179.095c0-22.865,8.422-43.931,23.715-59.316\r\n\tC118.957,104.445,139.798,96,162.4,96c26.134,0,51.97,12.167,69.11,32.545L256,157.661l24.489-29.116\r\n\tC297.63,108.167,323.465,96,349.6,96c22.603,0,43.443,8.445,58.686,23.778C423.578,135.164,432,156.229,432,179.095\r\n\tc0,29.033-12.467,57.459-40.422,92.171C362.794,307.006,319.253,346.975,268.836,393.257z" + }, + "children": [] + }] +}; +exports.androidFavoriteOutline = androidFavoriteOutline; \ No newline at end of file diff --git a/dist/ionicons/androidFilm.js b/dist/ionicons/androidFilm.js new file mode 100644 index 000000000..2bad42e32 --- /dev/null +++ b/dist/ionicons/androidFilm.js @@ -0,0 +1,18 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidFilm = void 0; +var androidFilm = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "fill": "#010101", + "d": "M376,64v42.667h-40V64H176v42.667h-40V64H96v384h40v-42.666h40V448h160v-42.666h40V448h40V64H376z\r\n\t M176,362.667h-40V320h40V362.667z M176,277.334h-40v-42.667h40V277.334z M176,192h-40v-42.666h40V192z M376,362.667h-40V320h40\r\n\tV362.667z M376,277.334h-40v-42.667h40V277.334z M376,192h-40v-42.666h40V192z" + }, + "children": [] + }] +}; +exports.androidFilm = androidFilm; \ No newline at end of file diff --git a/dist/ionicons/androidFolder.js b/dist/ionicons/androidFolder.js new file mode 100644 index 000000000..c9c8accd8 --- /dev/null +++ b/dist/ionicons/androidFolder.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidFolder = void 0; +var androidFolder = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": { + "id": "Icon_10_" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M213.338,96H74.666C51.197,96,32,115.198,32,138.667v234.666C32,396.802,51.197,416,74.666,416h362.668\r\n\t\t\t\tC460.803,416,480,396.802,480,373.333V186.667C480,163.198,460.803,144,437.334,144H256.006L213.338,96z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M213.338,96H74.666C51.197,96,32,115.198,32,138.667v234.666C32,396.802,51.197,416,74.666,416h362.668\r\n\t\t\t\tC460.803,416,480,396.802,480,373.333V186.667C480,163.198,460.803,144,437.334,144H256.006L213.338,96z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.androidFolder = androidFolder; \ No newline at end of file diff --git a/dist/ionicons/androidFolderOpen.js b/dist/ionicons/androidFolderOpen.js new file mode 100644 index 000000000..74891d8a7 --- /dev/null +++ b/dist/ionicons/androidFolderOpen.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidFolderOpen = void 0; +var androidFolderOpen = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M437.334,144H256.006l-42.668-48H74.666C51.197,96,32,115.198,32,138.667v234.666C32,396.802,51.197,416,74.666,416h362.668\r\n\tC460.803,416,480,396.802,480,373.333V186.667C480,163.198,460.803,144,437.334,144z M448,373.333\r\n\tc0,5.782-4.885,10.667-10.666,10.667H74.666C68.884,384,64,379.115,64,373.333V176h373.334c5.781,0,10.666,4.885,10.666,10.667\r\n\tV373.333z" + }, + "children": [] + }] +}; +exports.androidFolderOpen = androidFolderOpen; \ No newline at end of file diff --git a/dist/ionicons/androidFunnel.js b/dist/ionicons/androidFunnel.js new file mode 100644 index 000000000..2975878f5 --- /dev/null +++ b/dist/ionicons/androidFunnel.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidFunnel = void 0; +var androidFunnel = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M208,400h96v-47.994h-96V400z M32,112v47.994h448V112H32z M112,280.783h288v-49.555H112V280.783z" + }, + "children": [] + }] +}; +exports.androidFunnel = androidFunnel; \ No newline at end of file diff --git a/dist/ionicons/androidGlobe.js b/dist/ionicons/androidGlobe.js new file mode 100644 index 000000000..8bd257e76 --- /dev/null +++ b/dist/ionicons/androidGlobe.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidGlobe = void 0; +var androidGlobe = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48C141.124,48,48,141.125,48,256c0,114.875,93.124,208,208,208c114.875,0,208-93.125,208-208\r\n\tC464,141.125,370.875,48,256,48z M234.451,432.999c-39.464-4.726-75.978-22.392-104.519-50.932\r\n\tC96.258,348.393,77.714,303.622,77.714,256c0-42.87,15.036-83.424,42.601-115.659c0.71,8.517,2.463,17.648,2.014,24.175\r\n\tc-1.64,23.795-3.988,38.687,9.94,58.762c5.426,7.819,6.759,19.028,9.4,28.078c2.583,8.854,12.902,13.498,20.019,18.953\r\n\tc14.359,11.009,28.096,23.805,43.322,33.494c10.049,6.395,16.326,9.576,13.383,21.839c-2.367,9.862-3.028,15.937-8.13,24.723\r\n\tc-1.557,2.681,5.877,19.918,8.351,22.392c7.498,7.497,14.938,14.375,23.111,21.125C254.396,404.351,240.494,417.954,234.451,432.999\r\n\tz M382.067,382.067c-25.633,25.633-57.699,42.486-92.556,49.081c4.94-12.216,13.736-23.07,21.895-29.362\r\n\tc7.097-5.476,15.986-16.009,19.693-24.352c3.704-8.332,8.611-15.555,13.577-23.217c7.065-10.899-17.419-27.336-25.353-30.781\r\n\tc-17.854-7.751-31.294-18.21-47.161-29.375c-11.305-7.954-34.257,4.154-47.02-1.417c-17.481-7.633-31.883-20.896-47.078-32.339\r\n\tc-15.68-11.809-14.922-25.576-14.922-42.997c12.282,0.453,29.754-3.399,37.908,6.478c2.573,3.117,11.42,17.042,17.342,12.094\r\n\tc4.838-4.043-3.585-20.249-5.212-24.059c-5.005-11.715,11.404-16.284,19.803-24.228c10.96-10.364,34.47-26.618,32.612-34.047\r\n\ts-23.524-28.477-36.249-25.193c-1.907,0.492-18.697,18.097-21.941,20.859c0.086-5.746,0.172-11.491,0.26-17.237\r\n\tc0.055-3.628-6.768-7.352-6.451-9.692c0.8-5.914,17.262-16.647,21.357-21.357c-2.869-1.793-12.659-10.202-15.622-8.968\r\n\tc-7.174,2.99-15.276,5.05-22.45,8.039c0-2.488-0.302-4.825-0.662-7.133c14.376-6.365,29.587-10.791,45.31-13.152l14.084,5.66\r\n\tl9.944,11.801l9.924,10.233l8.675,2.795l13.779-12.995L282,87.929v-8.339c27.25,3.958,52.984,14.124,75.522,29.8\r\n\tc-4.032,0.361-8.463,0.954-13.462,1.59c-2.065-1.22-4.714-1.774-6.965-2.623c6.531,14.042,13.343,27.89,20.264,41.746\r\n\tc7.393,14.801,23.793,30.677,26.673,46.301c3.394,18.416,1.039,35.144,2.896,56.811c1.788,20.865,23.524,44.572,23.524,44.572\r\n\ts10.037,3.419,18.384,2.228C421.055,330.798,405.103,359.029,382.067,382.067z" + }, + "children": [] + }] +}; +exports.androidGlobe = androidGlobe; \ No newline at end of file diff --git a/dist/ionicons/androidHand.js b/dist/ionicons/androidHand.js new file mode 100644 index 000000000..2d9f0eddc --- /dev/null +++ b/dist/ionicons/androidHand.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidHand = void 0; +var androidHand = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M450.679,273.5c-14.585-14.577-36.054-15.89-50.639-1.312l-41.687,41.664c-10.852,10.836-23.93,10.859-31.564,1.852\r\n\tc-5.057-5.968-3.061-24.374-1.644-36.049l20.907-171.849c1.867-15.353-9.07-30.185-24.43-32.051\r\n\tc-15.358-1.867-29.322,9.939-31.191,25.289L267.37,236.021c-1.205,3.358-3.79,3.938-4.081-0.582L255.44,60\r\n\tc0-15.465-12.542-28-28.014-28c-15.473,0-28.015,12.535-28.015,28l-0.552,176.752c0.146,2.04-1.604,2.624-1.92,0.294L172.016,99.077\r\n\tc-2.75-15.219-17.323-26.203-32.548-23.453c-15.227,2.748-25.339,18.187-22.591,33.403l22.193,161.455\r\n\tc0.023,2.872-0.941,4.513-2.308,0.831l-33.109-88.517c-5.18-14.572-21.196-23.065-35.776-17.889\r\n\tc-14.579,5.177-22.201,22.061-17.023,36.631l58.042,189.625c0.303,1.046,0.624,2.085,0.953,3.118l0.121,0.39\r\n\tc0.011,0.031,0.025,0.058,0.035,0.088C126.079,444.233,172.57,480,227.427,480c35.116,0,71.591-12.378,99.357-33.672\r\n\tc0.001,0,0.003-0.002,0.003-0.002c29.99-18.051,126.071-121.347,126.071-121.347C467.445,310.402,465.266,288.08,450.679,273.5z" + }, + "children": [] + }] +}; +exports.androidHand = androidHand; \ No newline at end of file diff --git a/dist/ionicons/androidHangout.js b/dist/ionicons/androidHangout.js new file mode 100644 index 000000000..a47f30760 --- /dev/null +++ b/dist/ionicons/androidHangout.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidHangout = void 0; +var androidHangout = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48c-97.321,0-176,77.114-176,172.487c0,95.38,78.679,172.487,176,172.487V464c100.425-47.689,176-152.195,176-243.513\r\n\tC432,125.114,353.321,48,256,48z M246,230.633L224.943,271H193.88l20.712-40H184v-61h62V230.633z M328,230.633L307.768,271h-31.063\r\n\tl20.704-40H266v-61h62V230.633z" + }, + "children": [] + }] +}; +exports.androidHangout = androidHangout; \ No newline at end of file diff --git a/dist/ionicons/androidHappy.js b/dist/ionicons/androidHappy.js new file mode 100644 index 000000000..103145516 --- /dev/null +++ b/dist/ionicons/androidHappy.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidHappy = void 0; +var androidHappy = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48C140.563,48,48,141.6,48,256c0,114.4,92.563,208,208,208s208-93.6,208-208C464,141.6,370.401,48,256,48z M256,422.4\r\n\tc-91.518,0-166.404-74.883-166.404-166.4c0-91.518,74.887-166.4,166.404-166.4S422.404,164.482,422.404,256\r\n\tC422.404,347.518,347.518,422.4,256,422.4z M328.8,235.2c17.683,0,31.201-13.518,31.201-31.2s-13.519-31.2-31.201-31.2\r\n\tc-17.682,0-31.2,13.518-31.2,31.2S311.118,235.2,328.8,235.2z M183.2,235.2c17.682,0,31.2-13.518,31.2-31.2s-13.519-31.2-31.2-31.2\r\n\tc-17.683,0-31.201,13.518-31.201,31.2S165.518,235.2,183.2,235.2z M256,370.4c48.883,0,89.436-30.164,106.081-72.801H149.919\r\n\tC166.564,340.236,207.117,370.4,256,370.4z" + }, + "children": [] + }] +}; +exports.androidHappy = androidHappy; \ No newline at end of file diff --git a/dist/ionicons/androidHome.js b/dist/ionicons/androidHome.js new file mode 100644 index 000000000..240cc780a --- /dev/null +++ b/dist/ionicons/androidHome.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidHome = void 0; +var androidHome = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "208,448 208,320 304,320 304,448 401.6,448 401.6,256 464,256 256,64 48,256 110.4,256 110.4,448 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "208,448 208,320 304,320 304,448 401.6,448 401.6,256 464,256 256,64 48,256 110.4,256 110.4,448 \t" + }, + "children": [] + }] + }] + }] +}; +exports.androidHome = androidHome; \ No newline at end of file diff --git a/dist/ionicons/androidImage.js b/dist/ionicons/androidImage.js new file mode 100644 index 000000000..ae9c9540f --- /dev/null +++ b/dist/ionicons/androidImage.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidImage = void 0; +var androidImage = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": { + "id": "Icon_8_" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M448,405.333V106.667C448,83.198,428.802,64,405.333,64H106.667C83.198,64,64,83.198,64,106.667v298.666\r\n\t\t\tC64,428.802,83.198,448,106.667,448h298.666C428.802,448,448,428.802,448,405.333z M181.333,288l53.334,64l74.666-96l96,128\r\n\t\t\tH106.667L181.333,288z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M448,405.333V106.667C448,83.198,428.802,64,405.333,64H106.667C83.198,64,64,83.198,64,106.667v298.666\r\n\t\t\tC64,428.802,83.198,448,106.667,448h298.666C428.802,448,448,428.802,448,405.333z M181.333,288l53.334,64l74.666-96l96,128\r\n\t\t\tH106.667L181.333,288z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.androidImage = androidImage; \ No newline at end of file diff --git a/dist/ionicons/androidLaptop.js b/dist/ionicons/androidLaptop.js new file mode 100644 index 000000000..61af6d1fe --- /dev/null +++ b/dist/ionicons/androidLaptop.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidLaptop = void 0; +var androidLaptop = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": { + "id": "Icon_29_" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M437.334,416C460.803,416,480,396.803,480,373.334V106.668C480,83.199,460.803,64,437.334,64H74.666\r\n\t\t\tC51.197,64,32,83.199,32,106.668v266.666C32,396.803,51.197,416,74.666,416H0c0,23.469,64,32,96,32h320c32,0,96-8.531,96-32\r\n\t\t\tH437.334z M74.666,106.668h362.668v271.998H74.666V106.668z M256,434.666c-11.729,0-21.333-9.604-21.333-21.334\r\n\t\t\tc0-11.729,9.604-21.332,21.333-21.332s21.333,9.604,21.333,21.332C277.333,425.062,267.729,434.666,256,434.666z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M437.334,416C460.803,416,480,396.803,480,373.334V106.668C480,83.199,460.803,64,437.334,64H74.666\r\n\t\t\tC51.197,64,32,83.199,32,106.668v266.666C32,396.803,51.197,416,74.666,416H0c0,23.469,64,32,96,32h320c32,0,96-8.531,96-32\r\n\t\t\tH437.334z M74.666,106.668h362.668v271.998H74.666V106.668z M256,434.666c-11.729,0-21.333-9.604-21.333-21.334\r\n\t\t\tc0-11.729,9.604-21.332,21.333-21.332s21.333,9.604,21.333,21.332C277.333,425.062,267.729,434.666,256,434.666z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.androidLaptop = androidLaptop; \ No newline at end of file diff --git a/dist/ionicons/androidList.js b/dist/ionicons/androidList.js new file mode 100644 index 000000000..5cea92636 --- /dev/null +++ b/dist/ionicons/androidList.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidList = void 0; +var androidList = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M408,64H104c-22.091,0-40,17.908-40,40v304c0,22.092,17.909,40,40,40h304c22.092,0,40-17.908,40-40V104\r\n\t\tC448,81.908,430.092,64,408,64z M304,368H144v-48h160V368z M368,280H144v-48h224V280z M368,192H144v-48h224V192z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M408,64H104c-22.091,0-40,17.908-40,40v304c0,22.092,17.909,40,40,40h304c22.092,0,40-17.908,40-40V104\r\n\t\tC448,81.908,430.092,64,408,64z M304,368H144v-48h160V368z M368,280H144v-48h224V280z M368,192H144v-48h224V192z" + }, + "children": [] + }] + }] + }] +}; +exports.androidList = androidList; \ No newline at end of file diff --git a/dist/ionicons/androidLocate.js b/dist/ionicons/androidLocate.js new file mode 100644 index 000000000..389006556 --- /dev/null +++ b/dist/ionicons/androidLocate.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidLocate = void 0; +var androidLocate = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": { + "id": "Icon" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,176c-44.004,0-80.001,36-80.001,80c0,44.004,35.997,80,80.001,80c44.005,0,79.999-35.996,79.999-80\r\n\t\t\tC335.999,212,300.005,176,256,176z M446.938,234.667c-9.605-88.531-81.074-160-169.605-169.599V32h-42.666v33.067\r\n\t\t\tc-88.531,9.599-160,81.068-169.604,169.599H32v42.667h33.062c9.604,88.531,81.072,160,169.604,169.604V480h42.666v-33.062\r\n\t\t\tc88.531-9.604,160-81.073,169.605-169.604H480v-42.667H446.938z M256,405.333c-82.137,0-149.334-67.198-149.334-149.333\r\n\t\t\tc0-82.136,67.197-149.333,149.334-149.333c82.135,0,149.332,67.198,149.332,149.333C405.332,338.135,338.135,405.333,256,405.333z\r\n\t\t\t" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,176c-44.004,0-80.001,36-80.001,80c0,44.004,35.997,80,80.001,80c44.005,0,79.999-35.996,79.999-80\r\n\t\t\tC335.999,212,300.005,176,256,176z M446.938,234.667c-9.605-88.531-81.074-160-169.605-169.599V32h-42.666v33.067\r\n\t\t\tc-88.531,9.599-160,81.068-169.604,169.599H32v42.667h33.062c9.604,88.531,81.072,160,169.604,169.604V480h42.666v-33.062\r\n\t\t\tc88.531-9.604,160-81.073,169.605-169.604H480v-42.667H446.938z M256,405.333c-82.137,0-149.334-67.198-149.334-149.333\r\n\t\t\tc0-82.136,67.197-149.333,149.334-149.333c82.135,0,149.332,67.198,149.332,149.333C405.332,338.135,338.135,405.333,256,405.333z\r\n\t\t\t" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.androidLocate = androidLocate; \ No newline at end of file diff --git a/dist/ionicons/androidLock.js b/dist/ionicons/androidLock.js new file mode 100644 index 000000000..ac74381d9 --- /dev/null +++ b/dist/ionicons/androidLock.js @@ -0,0 +1,35 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidLock = void 0; +var androidLock = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M376,186h-20v-40c0-55-45-100-100-100S156,91,156,146v40h-20c-22.002,0-40,17.998-40,40v200c0,22.002,17.998,40,40,40h240\r\n\t\t\tc22.002,0,40-17.998,40-40V226C416,203.998,398.002,186,376,186z M256,368c-22.002,0-40-17.998-40-40s17.998-40,40-40\r\n\t\t\ts40,17.998,40,40S278.002,368,256,368z M318.002,186H193.998v-40c0-34.004,28.003-62.002,62.002-62.002\r\n\t\t\tc34.004,0,62.002,27.998,62.002,62.002V186z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M376,186h-20v-40c0-55-45-100-100-100S156,91,156,146v40h-20c-22.002,0-40,17.998-40,40v200c0,22.002,17.998,40,40,40h240\r\n\t\t\tc22.002,0,40-17.998,40-40V226C416,203.998,398.002,186,376,186z M256,368c-22.002,0-40-17.998-40-40s17.998-40,40-40\r\n\t\t\ts40,17.998,40,40S278.002,368,256,368z M318.002,186H193.998v-40c0-34.004,28.003-62.002,62.002-62.002\r\n\t\t\tc34.004,0,62.002,27.998,62.002,62.002V186z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.androidLock = androidLock; \ No newline at end of file diff --git a/dist/ionicons/androidMail.js b/dist/ionicons/androidMail.js new file mode 100644 index 000000000..0078d48d7 --- /dev/null +++ b/dist/ionicons/androidMail.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidMail = void 0; +var androidMail = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": { + "id": "Icon_19_" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M437.332,80H74.668C51.199,80,32,99.198,32,122.667v266.666C32,412.802,51.199,432,74.668,432h362.664\r\n\t\t\tC460.801,432,480,412.802,480,389.333V122.667C480,99.198,460.801,80,437.332,80z M432,170.667L256,288L80,170.667V128\r\n\t\t\tl176,117.333L432,128V170.667z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M437.332,80H74.668C51.199,80,32,99.198,32,122.667v266.666C32,412.802,51.199,432,74.668,432h362.664\r\n\t\t\tC460.801,432,480,412.802,480,389.333V122.667C480,99.198,460.801,80,437.332,80z M432,170.667L256,288L80,170.667V128\r\n\t\t\tl176,117.333L432,128V170.667z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.androidMail = androidMail; \ No newline at end of file diff --git a/dist/ionicons/androidMap.js b/dist/ionicons/androidMap.js new file mode 100644 index 000000000..10cc53fea --- /dev/null +++ b/dist/ionicons/androidMap.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidMap = void 0; +var androidMap = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": { + "id": "Icon_34_" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M437.333,64c-2.176,0-4.396,1.369-9.176,3.207S320,108.802,320,108.802L192,64L71.469,104.531\r\n\t\t\t\tC67.197,105.604,64,109.864,64,115.197v322.136C64,443.729,68.271,448,74.666,448c1.828,0,6.505-2.33,9.087-3.319\r\n\t\t\t\tS192,403.197,192,403.197L320,448l120.531-40.531c4.271-1.073,7.469-5.334,7.469-10.667V74.666C448,68.271,443.729,64,437.333,64\r\n\t\t\t\tz M320,405.333l-128-44.802V106.666l128,44.803V405.333z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M437.333,64c-2.176,0-4.396,1.369-9.176,3.207S320,108.802,320,108.802L192,64L71.469,104.531\r\n\t\t\t\tC67.197,105.604,64,109.864,64,115.197v322.136C64,443.729,68.271,448,74.666,448c1.828,0,6.505-2.33,9.087-3.319\r\n\t\t\t\tS192,403.197,192,403.197L320,448l120.531-40.531c4.271-1.073,7.469-5.334,7.469-10.667V74.666C448,68.271,443.729,64,437.333,64\r\n\t\t\t\tz M320,405.333l-128-44.802V106.666l128,44.803V405.333z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.androidMap = androidMap; \ No newline at end of file diff --git a/dist/ionicons/androidMenu.js b/dist/ionicons/androidMenu.js new file mode 100644 index 000000000..1f6709d42 --- /dev/null +++ b/dist/ionicons/androidMenu.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidMenu = void 0; +var androidMenu = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": { + "id": "Icon_3_" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M64,384h384v-42.666H64V384z M64,277.334h384v-42.667H64V277.334z M64,128v42.665h384V128H64z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M64,384h384v-42.666H64V384z M64,277.334h384v-42.667H64V277.334z M64,128v42.665h384V128H64z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.androidMenu = androidMenu; \ No newline at end of file diff --git a/dist/ionicons/androidMicrophone.js b/dist/ionicons/androidMicrophone.js new file mode 100644 index 000000000..11b8816f5 --- /dev/null +++ b/dist/ionicons/androidMicrophone.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidMicrophone = void 0; +var androidMicrophone = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,320c37.712,0,68.571-30.924,68.571-68.714V100.714C324.571,62.924,293.712,32,256,32s-68.571,30.924-68.571,68.714\r\n\t\tv150.572C187.429,289.076,218.288,320,256,320z M377.139,244.548c0,68.714-58.282,116.815-121.139,116.815\r\n\t\ts-121.139-48.102-121.139-116.815H96c0,77.873,61.719,143.153,137.144,153.465V480h45.713v-81.987\r\n\t\tC354.281,386.561,416,322.421,416,244.548H377.139z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,320c37.712,0,68.571-30.924,68.571-68.714V100.714C324.571,62.924,293.712,32,256,32s-68.571,30.924-68.571,68.714\r\n\t\tv150.572C187.429,289.076,218.288,320,256,320z M377.139,244.548c0,68.714-58.282,116.815-121.139,116.815\r\n\t\ts-121.139-48.102-121.139-116.815H96c0,77.873,61.719,143.153,137.144,153.465V480h45.713v-81.987\r\n\t\tC354.281,386.561,416,322.421,416,244.548H377.139z" + }, + "children": [] + }] + }] + }] +}; +exports.androidMicrophone = androidMicrophone; \ No newline at end of file diff --git a/dist/ionicons/androidMicrophoneOff.js b/dist/ionicons/androidMicrophoneOff.js new file mode 100644 index 000000000..5bf8a2c29 --- /dev/null +++ b/dist/ionicons/androidMicrophoneOff.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidMicrophoneOff = void 0; +var androidMicrophoneOff = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M367.951,354.654l-26.616-26.562l-9.568-9.548l-4.698-4.706L187,174.041v0.346L76.112,63.531L51.921,87.572L187,222.47\r\n\t\tv28.816c0,37.79,31.121,68.714,68.91,68.714c8.61,0,16.952-1.62,24.565-4.545l32.389,32.274\r\n\t\tc-17.333,8.793-36.812,13.86-56.782,13.86c-62.986,0-121.365-48.59-121.365-116.59H95.773C95.773,322,158,387.701,233,398.013V480\r\n\t\th46v-81.987c22-3.352,43.066-11.222,61.627-22.622l95.278,95.078l24.033-24l-33.847-33.785l-58.216-57.959l58.224,57.959\r\n\t\tL367.951,354.654z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M367.951,354.654l-26.616-26.562l-9.568-9.548l-4.698-4.706L187,174.041v0.346L76.112,63.531L51.921,87.572L187,222.47\r\n\t\tv28.816c0,37.79,31.121,68.714,68.91,68.714c8.61,0,16.952-1.62,24.565-4.545l32.389,32.274\r\n\t\tc-17.333,8.793-36.812,13.86-56.782,13.86c-62.986,0-121.365-48.59-121.365-116.59H95.773C95.773,322,158,387.701,233,398.013V480\r\n\t\th46v-81.987c22-3.352,43.066-11.222,61.627-22.622l95.278,95.078l24.033-24l-33.847-33.785l-58.216-57.959l58.224,57.959\r\n\t\tL367.951,354.654z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M325,251.286V100.714C325,62.924,293.791,32,256,32s-69,30.924-69,68.714v25.244l137.109,136.968\r\n\t\tC324.779,259.135,325,255.247,325,251.286z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M325,251.286V100.714C325,62.924,293.791,32,256,32s-69,30.924-69,68.714v25.244l137.109,136.968\r\n\t\tC324.779,259.135,325,255.247,325,251.286z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M416.439,245h-38.941c0,20.496-5.498,39.676-14.931,56.197l27.572,27.516C406.662,304.603,416.439,275.926,416.439,245z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M416.439,245h-38.941c0,20.496-5.498,39.676-14.931,56.197l27.572,27.516C406.662,304.603,416.439,275.926,416.439,245z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "459.999,446.427 426.102,412.684 459.957,446.469 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "459.999,446.427 426.102,412.684 459.957,446.469 \t" + }, + "children": [] + }] + }] + }] +}; +exports.androidMicrophoneOff = androidMicrophoneOff; \ No newline at end of file diff --git a/dist/ionicons/androidMoreHorizontal.js b/dist/ionicons/androidMoreHorizontal.js new file mode 100644 index 000000000..dc65f610e --- /dev/null +++ b/dist/ionicons/androidMoreHorizontal.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidMoreHorizontal = void 0; +var androidMoreHorizontal = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M136,216c-22.002,0-40,17.998-40,40s17.998,40,40,40s40-17.998,40-40S158.002,216,136,216z M376,216\r\n\tc-22.002,0-40,17.998-40,40s17.998,40,40,40s40-17.998,40-40S398.002,216,376,216z M256,216c-22.002,0-40,17.998-40,40\r\n\ts17.998,40,40,40s40-17.998,40-40S278.002,216,256,216z" + }, + "children": [] + }] +}; +exports.androidMoreHorizontal = androidMoreHorizontal; \ No newline at end of file diff --git a/dist/ionicons/androidMoreVertical.js b/dist/ionicons/androidMoreVertical.js new file mode 100644 index 000000000..222af2c55 --- /dev/null +++ b/dist/ionicons/androidMoreVertical.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidMoreVertical = void 0; +var androidMoreVertical = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M296,136c0-22.002-17.998-40-40-40s-40,17.998-40,40s17.998,40,40,40S296,158.002,296,136z M296,376\r\n\tc0-22.002-17.998-40-40-40s-40,17.998-40,40s17.998,40,40,40S296,398.002,296,376z M296,256c0-22.002-17.998-40-40-40\r\n\ts-40,17.998-40,40s17.998,40,40,40S296,278.002,296,256z" + }, + "children": [] + }] +}; +exports.androidMoreVertical = androidMoreVertical; \ No newline at end of file diff --git a/dist/ionicons/androidNavigate.js b/dist/ionicons/androidNavigate.js new file mode 100644 index 000000000..fba25714b --- /dev/null +++ b/dist/ionicons/androidNavigate.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidNavigate = void 0; +var androidNavigate = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": { + "id": "Icon_5_" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "256,64 96,433.062 110.938,448 256,384 401.062,448 416,433.062 \t\t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "256,64 96,433.062 110.938,448 256,384 401.062,448 416,433.062 \t\t" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.androidNavigate = androidNavigate; \ No newline at end of file diff --git a/dist/ionicons/androidNotifications.js b/dist/ionicons/androidNotifications.js new file mode 100644 index 000000000..4a3b8eb1a --- /dev/null +++ b/dist/ionicons/androidNotifications.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidNotifications = void 0; +var androidNotifications = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,464c22.779,0,41.411-18.719,41.411-41.6h-82.823C214.588,445.281,233.221,464,256,464z M390.589,339.2V224.8\r\n\tc0-63.44-44.516-117.518-103.53-131.041V79.2c0-17.682-13.457-31.2-31.059-31.2s-31.059,13.518-31.059,31.2v14.559\r\n\tc-59.015,13.523-103.53,67.601-103.53,131.041v114.4L80,380.8v20.8h352v-20.8L390.589,339.2z" + }, + "children": [] + }] +}; +exports.androidNotifications = androidNotifications; \ No newline at end of file diff --git a/dist/ionicons/androidNotificationsNone.js b/dist/ionicons/androidNotificationsNone.js new file mode 100644 index 000000000..48eb2a8de --- /dev/null +++ b/dist/ionicons/androidNotificationsNone.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidNotificationsNone = void 0; +var androidNotificationsNone = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M257,120.471c7.083,0,23.911,4.479,23.911,4.479c45.589,10.447,77.678,52.439,77.678,99.85v114.4v13.212l9.321,9.364\r\n\tl7.788,7.823H136.302l7.788-7.823l9.321-9.364V339.2V224.8c0-47.41,32.089-89.403,77.678-99.85c0,0,18.043-4.479,23.911-4.479\r\n\t M256,48c-17.602,0-31.059,13.518-31.059,31.2v14.559c-59.015,13.523-103.53,67.601-103.53,131.041v114.4L80,380.8v20.8h352v-20.8\r\n\tl-41.411-41.6V224.8c0-63.44-44.516-117.518-103.53-131.041V79.2C287.059,61.518,273.602,48,256,48L256,48z M297.411,422.4h-82.823\r\n\tc0,22.881,18.633,41.6,41.412,41.6S297.411,445.281,297.411,422.4L297.411,422.4z" + }, + "children": [] + }] +}; +exports.androidNotificationsNone = androidNotificationsNone; \ No newline at end of file diff --git a/dist/ionicons/androidNotificationsOff.js b/dist/ionicons/androidNotificationsOff.js new file mode 100644 index 000000000..0899ace95 --- /dev/null +++ b/dist/ionicons/androidNotificationsOff.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidNotificationsOff = void 0; +var androidNotificationsOff = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,463.656c22.814,0,41.475-18.656,41.475-41.656h-82.95C214.525,445,233.186,463.656,256,463.656z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,463.656c22.814,0,41.475-18.656,41.475-41.656h-82.95C214.525,445,233.186,463.656,256,463.656z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M131.083,107.172l0.053,0.074L98.09,74.277L74.004,98.383l63.042,63.153C126.888,180.521,121,202.196,121,225.07v114.555\r\n\t\tl-41,41.656V402h297.743l36.182,36.33l24.079-24.301L425.9,402h0.316L131.083,107.172z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M131.083,107.172l0.053,0.074L98.09,74.277L74.004,98.383l63.042,63.153C126.888,180.521,121,202.196,121,225.07v114.555\r\n\t\tl-41,41.656V402h297.743l36.182,36.33l24.079-24.301L425.9,402h0.316L131.083,107.172z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M391,225.07c0-63.526-45-117.677-104-131.218V79.274c0-17.706-13.371-31.243-31-31.243c-17.628,0-31,13.537-31,31.243\r\n\t\tv14.578c-15,3.438-29.048,9.501-41.75,17.663L391,319.355V225.07z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M391,225.07c0-63.526-45-117.677-104-131.218V79.274c0-17.706-13.371-31.243-31-31.243c-17.628,0-31,13.537-31,31.243\r\n\t\tv14.578c-15,3.438-29.048,9.501-41.75,17.663L391,319.355V225.07z" + }, + "children": [] + }] + }] + }] +}; +exports.androidNotificationsOff = androidNotificationsOff; \ No newline at end of file diff --git a/dist/ionicons/androidOpen.js b/dist/ionicons/androidOpen.js new file mode 100644 index 000000000..c5e4c911e --- /dev/null +++ b/dist/ionicons/androidOpen.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidOpen = void 0; +var androidOpen = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M405.34,405.332H106.66V106.668H240V64H106.66C83.191,64,64,83.197,64,106.668v298.664C64,428.803,83.191,448,106.66,448\r\n\th298.68c23.469,0,42.66-19.197,42.66-42.668V272h-42.66V405.332z M288,64v42.668h87.474L159.999,322.133l29.866,29.866\r\n\tl215.476-215.47V224H448V64H288z" + }, + "children": [] + }] +}; +exports.androidOpen = androidOpen; \ No newline at end of file diff --git a/dist/ionicons/androidOptions.js b/dist/ionicons/androidOptions.js new file mode 100644 index 000000000..07be31c2e --- /dev/null +++ b/dist/ionicons/androidOptions.js @@ -0,0 +1,183 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidOptions = void 0; +var androidOptions = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "32", + "y": "384", + "width": "272", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "32", + "y": "384", + "width": "272", + "height": "32" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "400", + "y": "384", + "width": "80", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "400", + "y": "384", + "width": "80", + "height": "32" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M384,447.5c0,17.949-14.327,32.5-32,32.5l0,0c-17.673,0-32-14.551-32-32.5v-95c0-17.949,14.327-32.5,32-32.5l0,0\r\n\t\t\tc17.673,0,32,14.551,32,32.5V447.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M384,447.5c0,17.949-14.327,32.5-32,32.5l0,0c-17.673,0-32-14.551-32-32.5v-95c0-17.949,14.327-32.5,32-32.5l0,0\r\n\t\t\tc17.673,0,32,14.551,32,32.5V447.5z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "32", + "y": "240", + "width": "80", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "32", + "y": "240", + "width": "80", + "height": "32" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "208", + "y": "240", + "width": "272", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "208", + "y": "240", + "width": "272", + "height": "32" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M192,303.5c0,17.949-14.327,32.5-32,32.5l0,0c-17.673,0-32-14.551-32-32.5v-95c0-17.949,14.327-32.5,32-32.5l0,0\r\n\t\t\tc17.673,0,32,14.551,32,32.5V303.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M192,303.5c0,17.949-14.327,32.5-32,32.5l0,0c-17.673,0-32-14.551-32-32.5v-95c0-17.949,14.327-32.5,32-32.5l0,0\r\n\t\t\tc17.673,0,32,14.551,32,32.5V303.5z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "32", + "y": "96", + "width": "272", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "32", + "y": "96", + "width": "272", + "height": "32" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "400", + "y": "96", + "width": "80", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "400", + "y": "96", + "width": "80", + "height": "32" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M384,159.5c0,17.949-14.327,32.5-32,32.5l0,0c-17.673,0-32-14.551-32-32.5v-95c0-17.949,14.327-32.5,32-32.5l0,0\r\n\t\t\tc17.673,0,32,14.551,32,32.5V159.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M384,159.5c0,17.949-14.327,32.5-32,32.5l0,0c-17.673,0-32-14.551-32-32.5v-95c0-17.949,14.327-32.5,32-32.5l0,0\r\n\t\t\tc17.673,0,32,14.551,32,32.5V159.5z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.androidOptions = androidOptions; \ No newline at end of file diff --git a/dist/ionicons/androidPeople.js b/dist/ionicons/androidPeople.js new file mode 100644 index 000000000..02c791d4d --- /dev/null +++ b/dist/ionicons/androidPeople.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidPeople = void 0; +var androidPeople = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M337.454,232c33.599,0,61.092-27.002,61.092-60c0-32.997-27.493-60-61.092-60s-61.09,27.003-61.09,60\r\n\tC276.364,204.998,303.855,232,337.454,232z M174.546,232c33.599,0,61.09-27.002,61.09-60c0-32.997-27.491-60-61.09-60\r\n\ts-61.092,27.003-61.092,60C113.454,204.998,140.947,232,174.546,232z M174.546,276C126.688,276,32,298.998,32,346v54h288v-54\r\n\tC320,298.998,222.401,276,174.546,276z M337.454,287.003c-6.105,0-10.325,0-17.454,0.997c23.426,17.002,32,28,32,58v54h128v-54\r\n\tC480,298.998,385.312,287.003,337.454,287.003z" + }, + "children": [] + }] +}; +exports.androidPeople = androidPeople; \ No newline at end of file diff --git a/dist/ionicons/androidPerson.js b/dist/ionicons/androidPerson.js new file mode 100644 index 000000000..6d22635b3 --- /dev/null +++ b/dist/ionicons/androidPerson.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidPerson = void 0; +var androidPerson = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,256c52.805,0,96-43.201,96-96s-43.195-96-96-96s-96,43.201-96,96S203.195,256,256,256z M256,304\r\n\t\tc-63.598,0-192,32.402-192,96v48h384v-48C448,336.402,319.598,304,256,304z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,256c52.805,0,96-43.201,96-96s-43.195-96-96-96s-96,43.201-96,96S203.195,256,256,256z M256,304\r\n\t\tc-63.598,0-192,32.402-192,96v48h384v-48C448,336.402,319.598,304,256,304z" + }, + "children": [] + }] + }] + }] +}; +exports.androidPerson = androidPerson; \ No newline at end of file diff --git a/dist/ionicons/androidPersonAdd.js b/dist/ionicons/androidPersonAdd.js new file mode 100644 index 000000000..4c405ebee --- /dev/null +++ b/dist/ionicons/androidPersonAdd.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidPersonAdd = void 0; +var androidPersonAdd = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M304,256c52.805,0,96-43.201,96-96s-43.195-96-96-96s-96,43.201-96,96S251.195,256,304,256z M304,304\r\n\t\t\tc-63.598,0-192,32.402-192,96v48h384v-48C496,336.402,367.598,304,304,304z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M304,256c52.805,0,96-43.201,96-96s-43.195-96-96-96s-96,43.201-96,96S251.195,256,304,256z M304,304\r\n\t\t\tc-63.598,0-192,32.402-192,96v48h384v-48C496,336.402,367.598,304,304,304z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": { + "id": "Icon_16_" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "Icon_16_" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M112,224v-64H80v64H16v32h64v64h32v-64h64v-32H112z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M112,224v-64H80v64H16v32h64v64h32v-64h64v-32H112z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.androidPersonAdd = androidPersonAdd; \ No newline at end of file diff --git a/dist/ionicons/androidPhoneLandscape.js b/dist/ionicons/androidPhoneLandscape.js new file mode 100644 index 000000000..7a4149ed1 --- /dev/null +++ b/dist/ionicons/androidPhoneLandscape.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidPhoneLandscape = void 0; +var androidPhoneLandscape = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": { + "id": "Icon_6_" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M480,358.856V153.143C480,130.512,461.674,112,439.272,112H72.728C50.326,112,32,130.512,32,153.143v205.713\r\n\t\t\tC32,381.488,50.326,400,72.728,400h366.545C461.674,400,480,381.488,480,358.856z M112,364V148h288v216H112z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M480,358.856V153.143C480,130.512,461.674,112,439.272,112H72.728C50.326,112,32,130.512,32,153.143v205.713\r\n\t\t\tC32,381.488,50.326,400,72.728,400h366.545C461.674,400,480,381.488,480,358.856z M112,364V148h288v216H112z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.androidPhoneLandscape = androidPhoneLandscape; \ No newline at end of file diff --git a/dist/ionicons/androidPhonePortrait.js b/dist/ionicons/androidPhonePortrait.js new file mode 100644 index 000000000..07231419d --- /dev/null +++ b/dist/ionicons/androidPhonePortrait.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidPhonePortrait = void 0; +var androidPhonePortrait = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": { + "id": "Icon_6_" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M358.856,32H153.143C130.512,32,112,50.326,112,72.728v366.545C112,461.674,130.512,480,153.143,480h205.713\r\n\t\t\tC381.488,480,400,461.674,400,439.272V72.728C400,50.326,381.488,32,358.856,32z M364,400H148V112h216V400z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M358.856,32H153.143C130.512,32,112,50.326,112,72.728v366.545C112,461.674,130.512,480,153.143,480h205.713\r\n\t\t\tC381.488,480,400,461.674,400,439.272V72.728C400,50.326,381.488,32,358.856,32z M364,400H148V112h216V400z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.androidPhonePortrait = androidPhonePortrait; \ No newline at end of file diff --git a/dist/ionicons/androidPin.js b/dist/ionicons/androidPin.js new file mode 100644 index 000000000..ace884da4 --- /dev/null +++ b/dist/ionicons/androidPin.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidPin = void 0; +var androidPin = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,32c-88.004,0-160,70.557-160,156.801C96,306.4,256,480,256,480s160-173.6,160-291.199C416,102.557,344.004,32,256,32z\r\n\t\t M256,244.801c-31.996,0-57.144-24.645-57.144-56c0-31.357,25.147-56,57.144-56s57.144,24.643,57.144,56\r\n\t\tC313.144,220.156,287.996,244.801,256,244.801z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,32c-88.004,0-160,70.557-160,156.801C96,306.4,256,480,256,480s160-173.6,160-291.199C416,102.557,344.004,32,256,32z\r\n\t\t M256,244.801c-31.996,0-57.144-24.645-57.144-56c0-31.357,25.147-56,57.144-56s57.144,24.643,57.144,56\r\n\t\tC313.144,220.156,287.996,244.801,256,244.801z" + }, + "children": [] + }] + }] + }] +}; +exports.androidPin = androidPin; \ No newline at end of file diff --git a/dist/ionicons/androidPlane.js b/dist/ionicons/androidPlane.js new file mode 100644 index 000000000..ba2167b53 --- /dev/null +++ b/dist/ionicons/androidPlane.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidPlane = void 0; +var androidPlane = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": { + "id": "Icon_36_" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M448,336v-40L288,192V79.2c0-17.683-14.82-31.2-32-31.2c-17.179,0-32,13.518-32,31.2V192L64,296v40l160-48v113.602\r\n\t\t\tl-48,31.199V464l80-16l80,16v-31.199l-48-31.199V288L448,336z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M448,336v-40L288,192V79.2c0-17.683-14.82-31.2-32-31.2c-17.179,0-32,13.518-32,31.2V192L64,296v40l160-48v113.602\r\n\t\t\tl-48,31.199V464l80-16l80,16v-31.199l-48-31.199V288L448,336z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.androidPlane = androidPlane; \ No newline at end of file diff --git a/dist/ionicons/androidPlaystore.js b/dist/ionicons/androidPlaystore.js new file mode 100644 index 000000000..9945227b1 --- /dev/null +++ b/dist/ionicons/androidPlaystore.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidPlaystore = void 0; +var androidPlaystore = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M464,152H360c0-57-46.562-103.859-104-103.859C198.562,48.141,152,95,152,152H48C66.688,368,61,464,61,464h389.999\r\n\t\tC450.998,464,445.311,366,464,152z M256,74.105c43.008,0,77.999,34.895,77.999,77.895H178C178,109,212.991,74.105,256,74.105z\r\n\t\t M204,397.64V228.867l142.999,84.387L204,397.64z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M464,152H360c0-57-46.562-103.859-104-103.859C198.562,48.141,152,95,152,152H48C66.688,368,61,464,61,464h389.999\r\n\t\tC450.998,464,445.311,366,464,152z M256,74.105c43.008,0,77.999,34.895,77.999,77.895H178C178,109,212.991,74.105,256,74.105z\r\n\t\t M204,397.64V228.867l142.999,84.387L204,397.64z" + }, + "children": [] + }] + }] + }] +}; +exports.androidPlaystore = androidPlaystore; \ No newline at end of file diff --git a/dist/ionicons/androidPrint.js b/dist/ionicons/androidPrint.js new file mode 100644 index 000000000..edf046374 --- /dev/null +++ b/dist/ionicons/androidPrint.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidPrint = void 0; +var androidPrint = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M399.95,160h-287.9C76.824,160,48,188.803,48,224v138.667h79.899V448h256.201v-85.333H464V224\r\n\t\tC464,188.803,435.175,160,399.95,160z M352,416H160V288h192V416z M384.101,64H127.899v80h256.201V64z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M399.95,160h-287.9C76.824,160,48,188.803,48,224v138.667h79.899V448h256.201v-85.333H464V224\r\n\t\tC464,188.803,435.175,160,399.95,160z M352,416H160V288h192V416z M384.101,64H127.899v80h256.201V64z" + }, + "children": [] + }] + }] + }] +}; +exports.androidPrint = androidPrint; \ No newline at end of file diff --git a/dist/ionicons/androidRadioButtonOff.js b/dist/ionicons/androidRadioButtonOff.js new file mode 100644 index 000000000..98481dab4 --- /dev/null +++ b/dist/ionicons/androidRadioButtonOff.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidRadioButtonOff = void 0; +var androidRadioButtonOff = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": { + "id": "Icon_20_" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48C141.601,48,48,141.601,48,256s93.601,208,208,208s208-93.601,208-208S370.399,48,256,48z M256,422.399\r\n\t\t\tc-91.518,0-166.399-74.882-166.399-166.399S164.482,89.6,256,89.6S422.4,164.482,422.4,256S347.518,422.399,256,422.399z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48C141.601,48,48,141.601,48,256s93.601,208,208,208s208-93.601,208-208S370.399,48,256,48z M256,422.399\r\n\t\t\tc-91.518,0-166.399-74.882-166.399-166.399S164.482,89.6,256,89.6S422.4,164.482,422.4,256S347.518,422.399,256,422.399z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.androidRadioButtonOff = androidRadioButtonOff; \ No newline at end of file diff --git a/dist/ionicons/androidRadioButtonOn.js b/dist/ionicons/androidRadioButtonOn.js new file mode 100644 index 000000000..2d1d556d8 --- /dev/null +++ b/dist/ionicons/androidRadioButtonOn.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidRadioButtonOn = void 0; +var androidRadioButtonOn = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": { + "id": "Icon_21_" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,152c-57.2,0-104,46.8-104,104s46.8,104,104,104s104-46.8,104-104S313.2,152,256,152z M256,48\r\n\t\t\tC141.601,48,48,141.601,48,256s93.601,208,208,208s208-93.601,208-208S370.399,48,256,48z M256,422.4\r\n\t\t\tc-91.518,0-166.4-74.883-166.4-166.4S164.482,89.6,256,89.6S422.4,164.482,422.4,256S347.518,422.4,256,422.4z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,152c-57.2,0-104,46.8-104,104s46.8,104,104,104s104-46.8,104-104S313.2,152,256,152z M256,48\r\n\t\t\tC141.601,48,48,141.601,48,256s93.601,208,208,208s208-93.601,208-208S370.399,48,256,48z M256,422.4\r\n\t\t\tc-91.518,0-166.4-74.883-166.4-166.4S164.482,89.6,256,89.6S422.4,164.482,422.4,256S347.518,422.4,256,422.4z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.androidRadioButtonOn = androidRadioButtonOn; \ No newline at end of file diff --git a/dist/ionicons/androidRefresh.js b/dist/ionicons/androidRefresh.js new file mode 100644 index 000000000..a2e816a93 --- /dev/null +++ b/dist/ionicons/androidRefresh.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidRefresh = void 0; +var androidRefresh = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,388c-72.597,0-132-59.405-132-132c0-72.601,59.403-132,132-132c36.3,0,69.299,15.4,92.406,39.601L278,234h154V80\r\n\t\tl-51.698,51.702C348.406,99.798,304.406,80,256,80c-96.797,0-176,79.203-176,176s78.094,176,176,176\r\n\t\tc81.045,0,148.287-54.134,169.401-128H378.85C360.105,353.561,311.712,388,256,388z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,388c-72.597,0-132-59.405-132-132c0-72.601,59.403-132,132-132c36.3,0,69.299,15.4,92.406,39.601L278,234h154V80\r\n\t\tl-51.698,51.702C348.406,99.798,304.406,80,256,80c-96.797,0-176,79.203-176,176s78.094,176,176,176\r\n\t\tc81.045,0,148.287-54.134,169.401-128H378.85C360.105,353.561,311.712,388,256,388z" + }, + "children": [] + }] + }] + }] +}; +exports.androidRefresh = androidRefresh; \ No newline at end of file diff --git a/dist/ionicons/androidRemove.js b/dist/ionicons/androidRemove.js new file mode 100644 index 000000000..d4182d07e --- /dev/null +++ b/dist/ionicons/androidRemove.js @@ -0,0 +1,20 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidRemove = void 0; +var androidRemove = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "rect", + "attribs": { + "x": "96", + "y": "235", + "width": "320", + "height": "42" + }, + "children": [] + }] +}; +exports.androidRemove = androidRemove; \ No newline at end of file diff --git a/dist/ionicons/androidRemoveCircle.js b/dist/ionicons/androidRemoveCircle.js new file mode 100644 index 000000000..0b252fcba --- /dev/null +++ b/dist/ionicons/androidRemoveCircle.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidRemoveCircle = void 0; +var androidRemoveCircle = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48C141.125,48,48,141.125,48,256s93.125,208,208,208s208-93.125,208-208S370.875,48,256,48z M363,277H149v-42h214V277\r\n\t\tz" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48C141.125,48,48,141.125,48,256s93.125,208,208,208s208-93.125,208-208S370.875,48,256,48z M363,277H149v-42h214V277\r\n\t\tz" + }, + "children": [] + }] + }] + }] +}; +exports.androidRemoveCircle = androidRemoveCircle; \ No newline at end of file diff --git a/dist/ionicons/androidRestaurant.js b/dist/ionicons/androidRestaurant.js new file mode 100644 index 000000000..8973cf820 --- /dev/null +++ b/dist/ionicons/androidRestaurant.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidRestaurant = void 0; +var androidRestaurant = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": { + "id": "Icon_38_" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M164.852,279.939l61.834-60.251L73.72,71.706c-33.626,32.764-33.626,86.677,0,119.44L164.852,279.939z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M164.852,279.939l61.834-60.251L73.72,71.706c-33.626,32.764-33.626,86.677,0,119.44L164.852,279.939z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M312.389,241.88c33.636,14.802,80.283,4.232,113.91-29.593c41.222-40.165,49.909-98.303,17.363-128.96\r\n\t\t\t\tc-31.465-31.71-91.131-23.245-132.354,16.921c-34.718,33.825-45.566,79.276-30.374,110.986\r\n\t\t\t\tC233.195,258.802,69.382,418.407,69.382,418.407L99.759,448l149.71-145.866L399.177,448l30.374-29.593L279.842,272.538\r\n\t\t\t\tL312.389,241.88z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M312.389,241.88c33.636,14.802,80.283,4.232,113.91-29.593c41.222-40.165,49.909-98.303,17.363-128.96\r\n\t\t\t\tc-31.465-31.71-91.131-23.245-132.354,16.921c-34.718,33.825-45.566,79.276-30.374,110.986\r\n\t\t\t\tC233.195,258.802,69.382,418.407,69.382,418.407L99.759,448l149.71-145.866L399.177,448l30.374-29.593L279.842,272.538\r\n\t\t\t\tL312.389,241.88z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.androidRestaurant = androidRestaurant; \ No newline at end of file diff --git a/dist/ionicons/androidSad.js b/dist/ionicons/androidSad.js new file mode 100644 index 000000000..8f6d9da45 --- /dev/null +++ b/dist/ionicons/androidSad.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidSad = void 0; +var androidSad = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,288c-45.443,0-83.675,26.076-102.205,64h204.41C339.675,314.076,301.443,288,256,288z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,288c-45.443,0-83.675,26.076-102.205,64h204.41C339.675,314.076,301.443,288,256,288z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,48C140.563,48,48,141.6,48,256c0,114.4,92.563,208,208,208s208-93.6,208-208C464,141.6,370.401,48,256,48z M256,422.4\r\n\t\tc-91.518,0-166.404-74.883-166.404-166.4c0-91.518,74.887-166.4,166.404-166.4S422.404,164.482,422.404,256\r\n\t\tC422.404,347.518,347.518,422.4,256,422.4z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48C140.563,48,48,141.6,48,256c0,114.4,92.563,208,208,208s208-93.6,208-208C464,141.6,370.401,48,256,48z M256,422.4\r\n\t\tc-91.518,0-166.404-74.883-166.404-166.4c0-91.518,74.887-166.4,166.404-166.4S422.404,164.482,422.404,256\r\n\t\tC422.404,347.518,347.518,422.4,256,422.4z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M328.8,235.2c17.683,0,31.201-13.518,31.201-31.2s-13.519-31.2-31.201-31.2c-17.682,0-31.2,13.518-31.2,31.2\r\n\t\tS311.118,235.2,328.8,235.2z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M328.8,235.2c17.683,0,31.201-13.518,31.201-31.2s-13.519-31.2-31.201-31.2c-17.682,0-31.2,13.518-31.2,31.2\r\n\t\tS311.118,235.2,328.8,235.2z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M183.2,235.2c17.682,0,31.2-13.518,31.2-31.2s-13.519-31.2-31.2-31.2c-17.683,0-31.201,13.518-31.201,31.2\r\n\t\tS165.518,235.2,183.2,235.2z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M183.2,235.2c17.682,0,31.2-13.518,31.2-31.2s-13.519-31.2-31.2-31.2c-17.683,0-31.201,13.518-31.201,31.2\r\n\t\tS165.518,235.2,183.2,235.2z" + }, + "children": [] + }] + }] + }] +}; +exports.androidSad = androidSad; \ No newline at end of file diff --git a/dist/ionicons/androidSearch.js b/dist/ionicons/androidSearch.js new file mode 100644 index 000000000..024d36354 --- /dev/null +++ b/dist/ionicons/androidSearch.js @@ -0,0 +1,53 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidSearch = void 0; +var androidSearch = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": { + "id": "Icon_4_" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M337.509,305.372h-17.501l-6.571-5.486c20.791-25.232,33.922-57.054,33.922-93.257\r\n\t\t\t\t\tC347.358,127.632,283.896,64,205.135,64C127.452,64,64,127.632,64,206.629s63.452,142.628,142.225,142.628\r\n\t\t\t\t\tc35.011,0,67.831-13.167,92.991-34.008l6.561,5.487v17.551L415.18,448L448,415.086L337.509,305.372z M206.225,305.372\r\n\t\t\t\t\tc-54.702,0-98.463-43.887-98.463-98.743c0-54.858,43.761-98.742,98.463-98.742c54.7,0,98.462,43.884,98.462,98.742\r\n\t\t\t\t\tC304.687,261.485,260.925,305.372,206.225,305.372z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M337.509,305.372h-17.501l-6.571-5.486c20.791-25.232,33.922-57.054,33.922-93.257\r\n\t\t\t\t\tC347.358,127.632,283.896,64,205.135,64C127.452,64,64,127.632,64,206.629s63.452,142.628,142.225,142.628\r\n\t\t\t\t\tc35.011,0,67.831-13.167,92.991-34.008l6.561,5.487v17.551L415.18,448L448,415.086L337.509,305.372z M206.225,305.372\r\n\t\t\t\t\tc-54.702,0-98.463-43.887-98.463-98.743c0-54.858,43.761-98.742,98.463-98.742c54.7,0,98.462,43.884,98.462,98.742\r\n\t\t\t\t\tC304.687,261.485,260.925,305.372,206.225,305.372z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] + }] + }] +}; +exports.androidSearch = androidSearch; \ No newline at end of file diff --git a/dist/ionicons/androidSend.js b/dist/ionicons/androidSend.js new file mode 100644 index 000000000..39615ca45 --- /dev/null +++ b/dist/ionicons/androidSend.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidSend = void 0; +var androidSend = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "polygon", + "attribs": { + "points": "48,448 464,256 48,64 48,213.333 346,256 48,298.667 " + }, + "children": [] + }] +}; +exports.androidSend = androidSend; \ No newline at end of file diff --git a/dist/ionicons/androidSettings.js b/dist/ionicons/androidSettings.js new file mode 100644 index 000000000..84266c1a4 --- /dev/null +++ b/dist/ionicons/androidSettings.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidSettings = void 0; +var androidSettings = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M413.967,276.8c1.06-6.235,1.06-13.518,1.06-20.8s-1.06-13.518-1.06-20.8l44.667-34.318\r\n\t\tc4.26-3.118,5.319-8.317,2.13-13.518L418.215,115.6c-2.129-4.164-8.507-6.235-12.767-4.164l-53.186,20.801\r\n\t\tc-10.638-8.318-23.394-15.601-36.16-20.801l-7.448-55.117c-1.06-4.154-5.319-8.318-10.638-8.318h-85.098\r\n\t\tc-5.318,0-9.577,4.164-10.637,8.318l-8.508,55.117c-12.767,5.2-24.464,12.482-36.171,20.801l-53.186-20.801\r\n\t\tc-5.319-2.071-10.638,0-12.767,4.164l-42.549,71.765c-2.119,4.153-1.061,10.399,2.129,13.518L96.97,235.2\r\n\t\tc0,7.282-1.06,13.518-1.06,20.8s1.06,13.518,1.06,20.8l-44.668,34.318c-4.26,3.118-5.318,8.317-2.13,13.518L92.721,396.4\r\n\t\tc2.13,4.164,8.508,6.235,12.767,4.164l53.187-20.801c10.637,8.318,23.394,15.601,36.16,20.801l8.508,55.117\r\n\t\tc1.069,5.2,5.318,8.318,10.637,8.318h85.098c5.319,0,9.578-4.164,10.638-8.318l8.518-55.117c12.757-5.2,24.464-12.482,36.16-20.801\r\n\t\tl53.187,20.801c5.318,2.071,10.637,0,12.767-4.164l42.549-71.765c2.129-4.153,1.06-10.399-2.13-13.518L413.967,276.8z\r\n\t\t M255.468,328.8c-41.489,0-74.46-32.235-74.46-72.8s32.971-72.8,74.46-72.8s74.461,32.235,74.461,72.8S296.957,328.8,255.468,328.8\r\n\t\tz" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M413.967,276.8c1.06-6.235,1.06-13.518,1.06-20.8s-1.06-13.518-1.06-20.8l44.667-34.318\r\n\t\tc4.26-3.118,5.319-8.317,2.13-13.518L418.215,115.6c-2.129-4.164-8.507-6.235-12.767-4.164l-53.186,20.801\r\n\t\tc-10.638-8.318-23.394-15.601-36.16-20.801l-7.448-55.117c-1.06-4.154-5.319-8.318-10.638-8.318h-85.098\r\n\t\tc-5.318,0-9.577,4.164-10.637,8.318l-8.508,55.117c-12.767,5.2-24.464,12.482-36.171,20.801l-53.186-20.801\r\n\t\tc-5.319-2.071-10.638,0-12.767,4.164l-42.549,71.765c-2.119,4.153-1.061,10.399,2.129,13.518L96.97,235.2\r\n\t\tc0,7.282-1.06,13.518-1.06,20.8s1.06,13.518,1.06,20.8l-44.668,34.318c-4.26,3.118-5.318,8.317-2.13,13.518L92.721,396.4\r\n\t\tc2.13,4.164,8.508,6.235,12.767,4.164l53.187-20.801c10.637,8.318,23.394,15.601,36.16,20.801l8.508,55.117\r\n\t\tc1.069,5.2,5.318,8.318,10.637,8.318h85.098c5.319,0,9.578-4.164,10.638-8.318l8.518-55.117c12.757-5.2,24.464-12.482,36.16-20.801\r\n\t\tl53.187,20.801c5.318,2.071,10.637,0,12.767-4.164l42.549-71.765c2.129-4.153,1.06-10.399-2.13-13.518L413.967,276.8z\r\n\t\t M255.468,328.8c-41.489,0-74.46-32.235-74.46-72.8s32.971-72.8,74.46-72.8s74.461,32.235,74.461,72.8S296.957,328.8,255.468,328.8\r\n\t\tz" + }, + "children": [] + }] + }] + }] +}; +exports.androidSettings = androidSettings; \ No newline at end of file diff --git a/dist/ionicons/androidShare.js b/dist/ionicons/androidShare.js new file mode 100644 index 000000000..2c3ea8051 --- /dev/null +++ b/dist/ionicons/androidShare.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidShare = void 0; +var androidShare = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": { + "id": "Icon_17_" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M448,248L288,96v85.334C138.666,202.667,85.333,309.334,64,416c53.333-74.666,117.333-108.802,224-108.802v87.469L448,248\r\n\t\t\tz" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M448,248L288,96v85.334C138.666,202.667,85.333,309.334,64,416c53.333-74.666,117.333-108.802,224-108.802v87.469L448,248\r\n\t\t\tz" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.androidShare = androidShare; \ No newline at end of file diff --git a/dist/ionicons/androidShareAlt.js b/dist/ionicons/androidShareAlt.js new file mode 100644 index 000000000..6e9f00324 --- /dev/null +++ b/dist/ionicons/androidShareAlt.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidShareAlt = void 0; +var androidShareAlt = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": { + "id": "Icon_33_" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M383.822,344.427c-16.045,0-31.024,5.326-41.721,15.979l-152.957-88.42c1.071-5.328,2.142-9.593,2.142-14.919\r\n\t\t\tc0-5.328-1.071-9.593-2.142-14.919l150.826-87.35c11.762,10.653,26.741,17.041,43.852,17.041c35.295,0,64.178-28.766,64.178-63.92\r\n\t\t\tC448,72.767,419.117,44,383.822,44c-35.297,0-64.179,28.767-64.179,63.92c0,5.327,1.065,9.593,2.142,14.919l-150.821,87.35\r\n\t\t\tc-11.767-10.654-26.741-17.041-43.856-17.041c-35.296,0-63.108,28.766-63.108,63.92c0,35.153,28.877,63.92,64.178,63.92\r\n\t\t\tc17.115,0,32.089-6.389,43.856-17.042l151.891,88.421c-1.076,4.255-2.141,8.521-2.141,13.847\r\n\t\t\tc0,34.094,27.806,61.787,62.037,61.787c34.229,0,62.036-27.693,62.036-61.787C445.858,372.12,418.052,344.427,383.822,344.427z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M383.822,344.427c-16.045,0-31.024,5.326-41.721,15.979l-152.957-88.42c1.071-5.328,2.142-9.593,2.142-14.919\r\n\t\t\tc0-5.328-1.071-9.593-2.142-14.919l150.826-87.35c11.762,10.653,26.741,17.041,43.852,17.041c35.295,0,64.178-28.766,64.178-63.92\r\n\t\t\tC448,72.767,419.117,44,383.822,44c-35.297,0-64.179,28.767-64.179,63.92c0,5.327,1.065,9.593,2.142,14.919l-150.821,87.35\r\n\t\t\tc-11.767-10.654-26.741-17.041-43.856-17.041c-35.296,0-63.108,28.766-63.108,63.92c0,35.153,28.877,63.92,64.178,63.92\r\n\t\t\tc17.115,0,32.089-6.389,43.856-17.042l151.891,88.421c-1.076,4.255-2.141,8.521-2.141,13.847\r\n\t\t\tc0,34.094,27.806,61.787,62.037,61.787c34.229,0,62.036-27.693,62.036-61.787C445.858,372.12,418.052,344.427,383.822,344.427z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.androidShareAlt = androidShareAlt; \ No newline at end of file diff --git a/dist/ionicons/androidStar.js b/dist/ionicons/androidStar.js new file mode 100644 index 000000000..c14c4a284 --- /dev/null +++ b/dist/ionicons/androidStar.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidStar = void 0; +var androidStar = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "256,372.686 380.83,448 347.809,305.934 458,210.409 312.733,197.934 256,64 199.257,197.934 54,210.409 \r\n\t\t164.192,305.934 131.161,448 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "256,372.686 380.83,448 347.809,305.934 458,210.409 312.733,197.934 256,64 199.257,197.934 54,210.409 \r\n\t\t164.192,305.934 131.161,448 \t" + }, + "children": [] + }] + }] + }] +}; +exports.androidStar = androidStar; \ No newline at end of file diff --git a/dist/ionicons/androidStarHalf.js b/dist/ionicons/androidStarHalf.js new file mode 100644 index 000000000..60b1cf494 --- /dev/null +++ b/dist/ionicons/androidStarHalf.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidStarHalf = void 0; +var androidStarHalf = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M458,210.409l-145.267-12.476L256,64l-56.743,133.934L54,210.409l110.192,95.524L131.161,448L256,372.686L380.83,448\r\n\tl-33.021-142.066L458,210.409z M272.531,345.287L256,335.313l-0.002-189.277l27.27,64.379l7.52,17.751l19.208,1.65l69.846,5.998\r\n\tl-52.993,45.939l-14.576,12.636l4.367,18.788l15.875,68.299L272.531,345.287z" + }, + "children": [] + }] +}; +exports.androidStarHalf = androidStarHalf; \ No newline at end of file diff --git a/dist/ionicons/androidStarOutline.js b/dist/ionicons/androidStarOutline.js new file mode 100644 index 000000000..bf78dcd21 --- /dev/null +++ b/dist/ionicons/androidStarOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidStarOutline = void 0; +var androidStarOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M458,210.409l-145.267-12.476L256,64l-56.743,133.934L54,210.409l110.192,95.524L131.161,448L256,372.686L380.83,448\r\n\tl-33.021-142.066L458,210.409z M272.531,345.286L256,335.312l-16.53,9.973l-59.988,36.191l15.879-68.296l4.369-18.79l-14.577-12.637\r\n\tl-52.994-45.939l69.836-5.998l19.206-1.65l7.521-17.75l27.276-64.381l27.27,64.379l7.52,17.751l19.208,1.65l69.846,5.998\r\n\tl-52.993,45.939l-14.576,12.636l4.367,18.788l15.875,68.299L272.531,345.286z" + }, + "children": [] + }] +}; +exports.androidStarOutline = androidStarOutline; \ No newline at end of file diff --git a/dist/ionicons/androidStopwatch.js b/dist/ionicons/androidStopwatch.js new file mode 100644 index 000000000..ac5e96c65 --- /dev/null +++ b/dist/ionicons/androidStopwatch.js @@ -0,0 +1,85 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidStopwatch = void 0; +var androidStopwatch = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": { + "id": "Icon_7_" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "Icon_7_" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M232,306.667h48V176h-48V306.667z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M232,306.667h48V176h-48V306.667z" + }, + "children": [] + }] + }] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M407.67,170.271l30.786-30.786l-33.942-33.941l-30.785,30.786C341.217,111.057,300.369,96,256,96\r\n\t\t\tC149.961,96,64,181.961,64,288s85.961,192,192,192s192-85.961,192-192C448,243.631,432.943,202.783,407.67,170.271z\r\n\t\t\t M362.066,394.066C333.734,422.398,296.066,438,256,438s-77.735-15.602-106.066-43.934C121.602,365.735,106,328.066,106,288\r\n\t\t\ts15.602-77.735,43.934-106.066C178.265,153.602,215.934,138,256,138s77.734,15.602,106.066,43.934\r\n\t\t\tC390.398,210.265,406,247.934,406,288S390.398,365.735,362.066,394.066z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M407.67,170.271l30.786-30.786l-33.942-33.941l-30.785,30.786C341.217,111.057,300.369,96,256,96\r\n\t\t\tC149.961,96,64,181.961,64,288s85.961,192,192,192s192-85.961,192-192C448,243.631,432.943,202.783,407.67,170.271z\r\n\t\t\t M362.066,394.066C333.734,422.398,296.066,438,256,438s-77.735-15.602-106.066-43.934C121.602,365.735,106,328.066,106,288\r\n\t\t\ts15.602-77.735,43.934-106.066C178.265,153.602,215.934,138,256,138s77.734,15.602,106.066,43.934\r\n\t\t\tC390.398,210.265,406,247.934,406,288S390.398,365.735,362.066,394.066z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "192", + "y": "32", + "width": "128", + "height": "48" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "192", + "y": "32", + "width": "128", + "height": "48" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.androidStopwatch = androidStopwatch; \ No newline at end of file diff --git a/dist/ionicons/androidSubway.js b/dist/ionicons/androidSubway.js new file mode 100644 index 000000000..95be6cf4f --- /dev/null +++ b/dist/ionicons/androidSubway.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidSubway = void 0; +var androidSubway = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48c-93.864,0-176,10.668-176,85.334v213.332c0,41.604,33.062,74.666,74.667,74.666L128,448v16h256v-16l-26.667-26.668\r\n\t\tc41.604,0,74.667-33.062,74.667-74.666V133.334C432,58.668,349.864,48,256,48z M160,384c-18.136,0-32-13.865-32-32\r\n\t\tc0-18.137,13.864-32,32-32s32,13.863,32,32C192,370.135,178.136,384,160,384z M240,240H128v-96h112V240z M352,384\r\n\t\tc-18.136,0-32-13.865-32-32c0-18.137,13.864-32,32-32s32,13.863,32,32C384,370.135,370.136,384,352,384z M384,240H272v-96h112V240z\r\n\t\t" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48c-93.864,0-176,10.668-176,85.334v213.332c0,41.604,33.062,74.666,74.667,74.666L128,448v16h256v-16l-26.667-26.668\r\n\t\tc41.604,0,74.667-33.062,74.667-74.666V133.334C432,58.668,349.864,48,256,48z M160,384c-18.136,0-32-13.865-32-32\r\n\t\tc0-18.137,13.864-32,32-32s32,13.863,32,32C192,370.135,178.136,384,160,384z M240,240H128v-96h112V240z M352,384\r\n\t\tc-18.136,0-32-13.865-32-32c0-18.137,13.864-32,32-32s32,13.863,32,32C384,370.135,370.136,384,352,384z M384,240H272v-96h112V240z\r\n\t\t" + }, + "children": [] + }] + }] + }] +}; +exports.androidSubway = androidSubway; \ No newline at end of file diff --git a/dist/ionicons/androidSunny.js b/dist/ionicons/androidSunny.js new file mode 100644 index 000000000..546a3a36d --- /dev/null +++ b/dist/ionicons/androidSunny.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidSunny = void 0; +var androidSunny = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": { + "id": "Icon_27_" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,160c25.499,0,49.567,10.025,67.771,28.229C341.975,206.433,352,230.501,352,256s-10.025,49.567-28.229,67.771\r\n\t\t\tC305.567,341.975,281.499,352,256,352s-49.567-10.025-67.771-28.229C170.025,305.567,160,281.499,160,256\r\n\t\t\ts10.025-49.567,28.229-67.771C206.433,170.025,230.501,160,256,160 M277.333,32h-42.666v64h42.666V32L277.333,32z M406.396,75.729\r\n\t\t\tL368,114.135L397.864,144l38.406-38.396L406.396,75.729L406.396,75.729z M105.604,75.729l-29.875,29.875L114.136,144L144,114.135\r\n\t\t\tL105.604,75.729L105.604,75.729z M256,128c-70.396,0-128,57.604-128,128s57.604,128,128,128s128-57.604,128-128\r\n\t\t\tS326.396,128,256,128L256,128z M480,234.666h-64v42.668h64V234.666L480,234.666z M96,234.666H32v42.668h64V234.666L96,234.666z\r\n\t\t\t M397.864,368L368,397.865l38.396,38.406l29.875-29.875L397.864,368L397.864,368z M114.136,368l-38.406,38.396l29.875,29.875\r\n\t\t\tL144,397.865L114.136,368L114.136,368z M277.333,416h-42.666v64c6.396,0,42.666,0,42.666,0V416L277.333,416z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,160c25.499,0,49.567,10.025,67.771,28.229C341.975,206.433,352,230.501,352,256s-10.025,49.567-28.229,67.771\r\n\t\t\tC305.567,341.975,281.499,352,256,352s-49.567-10.025-67.771-28.229C170.025,305.567,160,281.499,160,256\r\n\t\t\ts10.025-49.567,28.229-67.771C206.433,170.025,230.501,160,256,160 M277.333,32h-42.666v64h42.666V32L277.333,32z M406.396,75.729\r\n\t\t\tL368,114.135L397.864,144l38.406-38.396L406.396,75.729L406.396,75.729z M105.604,75.729l-29.875,29.875L114.136,144L144,114.135\r\n\t\t\tL105.604,75.729L105.604,75.729z M256,128c-70.396,0-128,57.604-128,128s57.604,128,128,128s128-57.604,128-128\r\n\t\t\tS326.396,128,256,128L256,128z M480,234.666h-64v42.668h64V234.666L480,234.666z M96,234.666H32v42.668h64V234.666L96,234.666z\r\n\t\t\t M397.864,368L368,397.865l38.396,38.406l29.875-29.875L397.864,368L397.864,368z M114.136,368l-38.406,38.396l29.875,29.875\r\n\t\t\tL144,397.865L114.136,368L114.136,368z M277.333,416h-42.666v64c6.396,0,42.666,0,42.666,0V416L277.333,416z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.androidSunny = androidSunny; \ No newline at end of file diff --git a/dist/ionicons/androidSync.js b/dist/ionicons/androidSync.js new file mode 100644 index 000000000..433308395 --- /dev/null +++ b/dist/ionicons/androidSync.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidSync = void 0; +var androidSync = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,93.09V32l-80,81.454l80,81.456v-61.093c65.996,0,120,54.982,120,122.183c0,20.363-5,39.714-14.004,57.016L391,342.547\r\n\tc15.996-25.457,25-54.988,25-86.547C416,166.401,343.998,93.09,256,93.09z M256,378.184c-66.001,0-120-54.988-120-122.184\r\n\tc0-20.363,5-39.709,13.999-57.02L121,169.454C104.999,193.89,96,224.436,96,256c0,89.599,72.002,162.91,160,162.91V480l80-81.453\r\n\tl-80-81.457V378.184z" + }, + "children": [] + }] +}; +exports.androidSync = androidSync; \ No newline at end of file diff --git a/dist/ionicons/androidTextsms.js b/dist/ionicons/androidTextsms.js new file mode 100644 index 000000000..f66012c67 --- /dev/null +++ b/dist/ionicons/androidTextsms.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidTextsms = void 0; +var androidTextsms = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M408,64H96c-22.002,0-32,17.998-32,40v344l64-64h280c22.002,0,40-17.998,40-40V104C448,81.998,430.002,64,408,64z\r\n\t\t M198.4,242H160v-40h38.4V242z M275.2,242h-38.4v-40h38.4V242z M352,242h-38.4v-40H352V242z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M408,64H96c-22.002,0-32,17.998-32,40v344l64-64h280c22.002,0,40-17.998,40-40V104C448,81.998,430.002,64,408,64z\r\n\t\t M198.4,242H160v-40h38.4V242z M275.2,242h-38.4v-40h38.4V242z M352,242h-38.4v-40H352V242z" + }, + "children": [] + }] + }] + }] +}; +exports.androidTextsms = androidTextsms; \ No newline at end of file diff --git a/dist/ionicons/androidTime.js b/dist/ionicons/androidTime.js new file mode 100644 index 000000000..10ef5416f --- /dev/null +++ b/dist/ionicons/androidTime.js @@ -0,0 +1,61 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidTime = void 0; +var androidTime = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": { + "id": "Icon_1_" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-opacity": "0.9", + "d": "M256,43C137.789,43,43,138.851,43,256s94.789,213,213,213s213-95.851,213-213S373.149,43,256,43z\r\n\t\t\t\t M256,426.4c-93.718,0-170.4-76.683-170.4-170.4S162.282,85.6,256,85.6S426.4,162.282,426.4,256S349.718,426.4,256,426.4z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-opacity": "0.9", + "d": "M256,43C137.789,43,43,138.851,43,256s94.789,213,213,213s213-95.851,213-213S373.149,43,256,43z\r\n\t\t\t\t M256,426.4c-93.718,0-170.4-76.683-170.4-170.4S162.282,85.6,256,85.6S426.4,162.282,426.4,256S349.718,426.4,256,426.4z" + }, + "children": [] + }] + }] + }] + }, { + "name": "polygon", + "attribs": { + "fill-opacity": "0.9", + "points": "266.65,149.5 234.7,149.5 234.7,277.3 346.525,344.393 362.5,317.768 266.65,261.324 \t\t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill-opacity": "0.9", + "points": "266.65,149.5 234.7,149.5 234.7,277.3 346.525,344.393 362.5,317.768 266.65,261.324 \t\t" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.androidTime = androidTime; \ No newline at end of file diff --git a/dist/ionicons/androidTrain.js b/dist/ionicons/androidTrain.js new file mode 100644 index 000000000..29cb17c25 --- /dev/null +++ b/dist/ionicons/androidTrain.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidTrain = void 0; +var androidTrain = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": { + "id": "Icon_35_" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M80,346.666c0,41.604,33.062,74.666,74.667,74.666L128,448v16h256v-16l-26.667-26.668\r\n\t\t\t\tc41.604,0,74.667-33.062,74.667-74.666V133.334C432,58.668,349.864,48,256,48S80,58.668,80,133.334V346.666z M256,376\r\n\t\t\t\tc-22.002,0-40-17.997-40-39.999S233.998,296,256,296s40,17.999,40,40.001S278.002,376,256,376z M384,224H128v-96h256V224z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M80,346.666c0,41.604,33.062,74.666,74.667,74.666L128,448v16h256v-16l-26.667-26.668\r\n\t\t\t\tc41.604,0,74.667-33.062,74.667-74.666V133.334C432,58.668,349.864,48,256,48S80,58.668,80,133.334V346.666z M256,376\r\n\t\t\t\tc-22.002,0-40-17.997-40-39.999S233.998,296,256,296s40,17.999,40,40.001S278.002,376,256,376z M384,224H128v-96h256V224z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.androidTrain = androidTrain; \ No newline at end of file diff --git a/dist/ionicons/androidUnlock.js b/dist/ionicons/androidUnlock.js new file mode 100644 index 000000000..5ab1bd8d4 --- /dev/null +++ b/dist/ionicons/androidUnlock.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidUnlock = void 0; +var androidUnlock = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M376,186h-20v-40c0-55-45-100-100-100S156,91,156,146h37.998c0-34.004,28.003-62.002,62.002-62.002\r\n\tc34.004,0,62.002,27.998,62.002,62.002H318v40H136c-22.002,0-40,17.998-40,40v200c0,22.002,17.998,40,40,40h240\r\n\tc22.002,0,40-17.998,40-40V226C416,203.998,398.002,186,376,186z M256,368c-22.002,0-40-17.998-40-40s17.998-40,40-40\r\n\ts40,17.998,40,40S278.002,368,256,368z" + }, + "children": [] + }] +}; +exports.androidUnlock = androidUnlock; \ No newline at end of file diff --git a/dist/ionicons/androidUpload.js b/dist/ionicons/androidUpload.js new file mode 100644 index 000000000..40fb44a0c --- /dev/null +++ b/dist/ionicons/androidUpload.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidUpload = void 0; +var androidUpload = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M403.002,217.001C388.998,148.002,328.998,96,256,96c-57.998,0-107.998,32.998-132.998,81.001\r\n\tC63.002,183.002,16,233.998,16,296c0,65.996,53.999,120,120,120h260c55,0,100-45,100-100\r\n\tC496,263.002,455.004,219.999,403.002,217.001z M288,276v76h-64v-76h-68l100-100l100,100H288z" + }, + "children": [] + }] +}; +exports.androidUpload = androidUpload; \ No newline at end of file diff --git a/dist/ionicons/androidVolumeDown.js b/dist/ionicons/androidVolumeDown.js new file mode 100644 index 000000000..e5556310a --- /dev/null +++ b/dist/ionicons/androidVolumeDown.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidVolumeDown = void 0; +var androidVolumeDown = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M64,192v128h85.334L256,431.543V80.458L149.334,192H64z M352,256c0-38.399-21.333-72.407-53.333-88.863v176.636\r\n\tC330.667,328.408,352,294.4,352,256z" + }, + "children": [] + }] +}; +exports.androidVolumeDown = androidVolumeDown; \ No newline at end of file diff --git a/dist/ionicons/androidVolumeMute.js b/dist/ionicons/androidVolumeMute.js new file mode 100644 index 000000000..f1b27cf35 --- /dev/null +++ b/dist/ionicons/androidVolumeMute.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidVolumeMute = void 0; +var androidVolumeMute = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M64,192v128h85.334L256,431.543V80.458L149.334,192H64z" + }, + "children": [] + }] +}; +exports.androidVolumeMute = androidVolumeMute; \ No newline at end of file diff --git a/dist/ionicons/androidVolumeOff.js b/dist/ionicons/androidVolumeOff.js new file mode 100644 index 000000000..1061a5ac1 --- /dev/null +++ b/dist/ionicons/androidVolumeOff.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidVolumeOff = void 0; +var androidVolumeOff = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M405.5,256c0,22.717-4.883,44.362-13.603,63.855l31.88,31.88C439.283,323.33,448,290.653,448,256\r\n\t\tc0-93.256-64-172.254-149-192v44.978C361,127.632,405.5,186.882,405.5,256z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M405.5,256c0,22.717-4.883,44.362-13.603,63.855l31.88,31.88C439.283,323.33,448,290.653,448,256\r\n\t\tc0-93.256-64-172.254-149-192v44.978C361,127.632,405.5,186.882,405.5,256z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "256,80.458 204.979,132.938 256,183.957 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "256,80.458 204.979,132.938 256,183.957 \t" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M420.842,396.885L91.116,67.157l-24,24l90.499,90.413l-8.28,10.43H64v128h85.334L256,431.543V280l94.915,94.686\r\n\t\tC335.795,387.443,318,397.213,299,403.022V448c31-7.172,58.996-22.163,82.315-42.809l39.61,39.693l24-24.043l-24.002-24.039\r\n\t\tL420.842,396.885z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M420.842,396.885L91.116,67.157l-24,24l90.499,90.413l-8.28,10.43H64v128h85.334L256,431.543V280l94.915,94.686\r\n\t\tC335.795,387.443,318,397.213,299,403.022V448c31-7.172,58.996-22.163,82.315-42.809l39.61,39.693l24-24.043l-24.002-24.039\r\n\t\tL420.842,396.885z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M352.188,256c0-38.399-21.188-72.407-53.188-88.863v59.82l50.801,50.801C351.355,270.739,352.188,263.454,352.188,256z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M352.188,256c0-38.399-21.188-72.407-53.188-88.863v59.82l50.801,50.801C351.355,270.739,352.188,263.454,352.188,256z" + }, + "children": [] + }] + }] + }] +}; +exports.androidVolumeOff = androidVolumeOff; \ No newline at end of file diff --git a/dist/ionicons/androidVolumeUp.js b/dist/ionicons/androidVolumeUp.js new file mode 100644 index 000000000..675878d67 --- /dev/null +++ b/dist/ionicons/androidVolumeUp.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidVolumeUp = void 0; +var androidVolumeUp = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M64,192v128h85.334L256,431.543V80.458L149.334,192H64z M352,256c0-38.399-21.333-72.407-53.333-88.863v176.636\r\n\tC330.667,328.408,352,294.4,352,256z M298.667,64v44.978C360.531,127.632,405.334,186.882,405.334,256\r\n\tc0,69.119-44.803,128.369-106.667,147.022V448C384,428.254,448,349.257,448,256C448,162.744,384,83.746,298.667,64z" + }, + "children": [] + }] +}; +exports.androidVolumeUp = androidVolumeUp; \ No newline at end of file diff --git a/dist/ionicons/androidWalk.js b/dist/ionicons/androidWalk.js new file mode 100644 index 000000000..90a25f100 --- /dev/null +++ b/dist/ionicons/androidWalk.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidWalk = void 0; +var androidWalk = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M288,112c22.223,0,39.997-17.776,39.997-40c0-22.225-17.774-40-39.997-40s-40.003,17.775-40.003,40\r\n\t\tC247.997,94.224,265.777,112,288,112z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M288,112c22.223,0,39.997-17.776,39.997-40c0-22.225-17.774-40-39.997-40s-40.003,17.775-40.003,40\r\n\t\tC247.997,94.224,265.777,112,288,112z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M288,232h104v-40h-72l-44.802-69.333c-7.698-11.667-18.136-18.136-30.933-18.136c-3.198,0-8.828,0.531-12.799,1.747\r\n\t\tL120,144v112h40v-80l40.531-16L120,480h40l56.698-164.271L267,384v96h38V352l-57.031-96l19.745-61.864L288,232z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M288,232h104v-40h-72l-44.802-69.333c-7.698-11.667-18.136-18.136-30.933-18.136c-3.198,0-8.828,0.531-12.799,1.747\r\n\t\tL120,144v112h40v-80l40.531-16L120,480h40l56.698-164.271L267,384v96h38V352l-57.031-96l19.745-61.864L288,232z" + }, + "children": [] + }] + }] + }] +}; +exports.androidWalk = androidWalk; \ No newline at end of file diff --git a/dist/ionicons/androidWarning.js b/dist/ionicons/androidWarning.js new file mode 100644 index 000000000..fca883c13 --- /dev/null +++ b/dist/ionicons/androidWarning.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidWarning = void 0; +var androidWarning = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": { + "id": "Icon_31_" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M32,464h448L256,48L32,464z M280,400h-48v-48h48V400z M280,320h-48v-96h48V320z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M32,464h448L256,48L32,464z M280,400h-48v-48h48V400z M280,320h-48v-96h48V320z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.androidWarning = androidWarning; \ No newline at end of file diff --git a/dist/ionicons/androidWatch.js b/dist/ionicons/androidWatch.js new file mode 100644 index 000000000..7ba199cc6 --- /dev/null +++ b/dist/ionicons/androidWatch.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidWatch = void 0; +var androidWatch = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": { + "id": "Icon_11_" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M416,256c0-51.001-24.004-96.001-60.996-125L336,16H176l-19.004,115C120.004,159.999,96,204.999,96,256\r\n\t\t\t\tc0,50.996,24.004,95.996,60.996,125L176,496h160l19.004-115C391.996,351.996,416,306.996,416,256z M136,256\r\n\t\t\t\tc0-66.001,54.004-120,120-120s120,53.999,120,120c0,65.996-54.004,120-120,120S136,321.996,136,256z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M416,256c0-51.001-24.004-96.001-60.996-125L336,16H176l-19.004,115C120.004,159.999,96,204.999,96,256\r\n\t\t\t\tc0,50.996,24.004,95.996,60.996,125L176,496h160l19.004-115C391.996,351.996,416,306.996,416,256z M136,256\r\n\t\t\t\tc0-66.001,54.004-120,120-120s120,53.999,120,120c0,65.996-54.004,120-120,120S136,321.996,136,256z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.androidWatch = androidWatch; \ No newline at end of file diff --git a/dist/ionicons/androidWifi.js b/dist/ionicons/androidWifi.js new file mode 100644 index 000000000..83e8e0989 --- /dev/null +++ b/dist/ionicons/androidWifi.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.androidWifi = void 0; +var androidWifi = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,228.719c-22.879,0-41.597,18.529-41.597,41.18c0,22.652,18.718,41.182,41.597,41.182\r\n\tc22.878,0,41.597-18.529,41.597-41.182C297.597,247.248,278.878,228.719,256,228.719z M380.8,269.898\r\n\tc0-67.946-56.163-123.539-124.8-123.539s-124.8,55.593-124.8,123.539c0,45.303,24.961,85.447,62.396,107.072l20.807-36.032\r\n\tc-24.972-14.417-41.604-40.153-41.604-71.04c0-45.295,37.433-82.358,83.201-82.358c45.771,0,83.201,37.063,83.201,82.358\r\n\tc0,30.887-16.633,56.623-41.604,71.04l20.807,36.032C355.837,355.346,380.8,315.201,380.8,269.898z M256,64\r\n\tC141.597,64,48,156.654,48,269.898C48,346.085,89.592,411.968,152,448l20.799-36.032c-49.919-28.824-83.207-81.324-83.207-142.069\r\n\tc0-90.593,74.891-164.718,166.408-164.718c91.517,0,166.406,74.125,166.406,164.718c0,60.745-33.284,114.271-83.205,142.069L360,448\r\n\tc62.406-36.032,104-101.915,104-178.102C464,156.654,370.403,64,256,64z" + }, + "children": [] + }] +}; +exports.androidWifi = androidWifi; \ No newline at end of file diff --git a/dist/ionicons/aperture.js b/dist/ionicons/aperture.js new file mode 100644 index 000000000..c22335eea --- /dev/null +++ b/dist/ionicons/aperture.js @@ -0,0 +1,107 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.aperture = void 0; +var aperture = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,32C132.288,32,32,132.288,32,256s100.288,224,224,224s224-100.288,224-224S379.712,32,256,32z M391.765,391.765\r\n\t\tC355.5,428.028,307.285,448,256,448s-99.5-19.972-135.765-56.235C83.972,355.5,64,307.285,64,256s19.972-99.5,56.235-135.765\r\n\t\tC156.5,83.972,204.715,64,256,64s99.5,19.972,135.765,56.235C428.028,156.5,448,204.715,448,256S428.028,355.5,391.765,391.765z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,32C132.288,32,32,132.288,32,256s100.288,224,224,224s224-100.288,224-224S379.712,32,256,32z M391.765,391.765\r\n\t\tC355.5,428.028,307.285,448,256,448s-99.5-19.972-135.765-56.235C83.972,355.5,64,307.285,64,256s19.972-99.5,56.235-135.765\r\n\t\tC156.5,83.972,204.715,64,256,64s99.5,19.972,135.765,56.235C428.028,156.5,448,204.715,448,256S428.028,355.5,391.765,391.765z" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M200.043,106.067c-40.631,15.171-73.434,46.382-90.717,85.933H256L200.043,106.067z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M200.043,106.067c-40.631,15.171-73.434,46.382-90.717,85.933H256L200.043,106.067z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M412.797,288c2.099-10.34,3.203-21.041,3.203-32c0-36.624-12.314-70.367-33.016-97.334L311,288H412.797z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M412.797,288c2.099-10.34,3.203-21.041,3.203-32c0-36.624-12.314-70.367-33.016-97.334L311,288H412.797z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M359.973,134.395C332.007,110.461,295.694,96,256,96c-7.966,0-15.794,0.591-23.448,1.715L310.852,224L359.973,134.395z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M359.973,134.395C332.007,110.461,295.694,96,256,96c-7.966,0-15.794,0.591-23.448,1.715L310.852,224L359.973,134.395z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M99.204,224C97.104,234.34,96,245.041,96,256c0,36.639,12.324,70.394,33.041,97.366L201,224H99.204z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M99.204,224C97.104,234.34,96,245.041,96,256c0,36.639,12.324,70.394,33.041,97.366L201,224H99.204z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M311.959,405.932c40.631-15.171,73.433-46.382,90.715-85.932H256L311.959,405.932z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M311.959,405.932c40.631-15.171,73.433-46.382,90.715-85.932H256L311.959,405.932z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M152.046,377.621C180.009,401.545,216.314,416,256,416c7.969,0,15.799-0.592,23.456-1.716L201.164,288L152.046,377.621z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M152.046,377.621C180.009,401.545,216.314,416,256,416c7.969,0,15.799-0.592,23.456-1.716L201.164,288L152.046,377.621z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.aperture = aperture; \ No newline at end of file diff --git a/dist/ionicons/archive.js b/dist/ionicons/archive.js new file mode 100644 index 000000000..8db10adde --- /dev/null +++ b/dist/ionicons/archive.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.archive = void 0; +var archive = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "256,307.7 384,192 304,192 304,96 207.6,96 207.6,192 128,192 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "256,307.7 384,192 304,192 304,96 207.6,96 207.6,192 128,192 \t" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M465.4,297.2l-71.4-55h-42l62,61.8h-50.6c-2.3,0-4.3,1.2-5.4,2.9l-18.4,45.5H172.1l-18.4-45.5c-1-1.8-3.1-2.9-5.4-2.9H97.8\r\n\t\tl62.2-61.8h-42.2l-71.4,55c-10.6,6.2-15.8,19-14.1,31.6l8.7,66.9c2.3,13.1,9.7,20.3,28.1,20.3h373.8c19.1,0,25.8-7.6,28.1-20.3\r\n\t\tl8.7-66.9C481.4,315.9,476,303.4,465.4,297.2z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M465.4,297.2l-71.4-55h-42l62,61.8h-50.6c-2.3,0-4.3,1.2-5.4,2.9l-18.4,45.5H172.1l-18.4-45.5c-1-1.8-3.1-2.9-5.4-2.9H97.8\r\n\t\tl62.2-61.8h-42.2l-71.4,55c-10.6,6.2-15.8,19-14.1,31.6l8.7,66.9c2.3,13.1,9.7,20.3,28.1,20.3h373.8c19.1,0,25.8-7.6,28.1-20.3\r\n\t\tl8.7-66.9C481.4,315.9,476,303.4,465.4,297.2z" + }, + "children": [] + }] + }] + }] +}; +exports.archive = archive; \ No newline at end of file diff --git a/dist/ionicons/arrowDownA.js b/dist/ionicons/arrowDownA.js new file mode 100644 index 000000000..0f408413e --- /dev/null +++ b/dist/ionicons/arrowDownA.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowDownA = void 0; +var arrowDownA = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "polygon", + "attribs": { + "points": "256.5,448.5 448.5,256.5 336.5,256.5 336.5,64.5 176.5,64.5 176.5,256.5 64.5,256.5 " + }, + "children": [] + }] +}; +exports.arrowDownA = arrowDownA; \ No newline at end of file diff --git a/dist/ionicons/arrowDownB.js b/dist/ionicons/arrowDownB.js new file mode 100644 index 000000000..2fd22b81a --- /dev/null +++ b/dist/ionicons/arrowDownB.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowDownB = void 0; +var arrowDownB = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M98.9,184.7l1.8,2.1l136,156.5c4.6,5.3,11.5,8.6,19.2,8.6c7.7,0,14.6-3.4,19.2-8.6L411,187.1l2.3-2.6\r\n\tc1.7-2.5,2.7-5.5,2.7-8.7c0-8.7-7.4-15.8-16.6-15.8v0H112.6v0c-9.2,0-16.6,7.1-16.6,15.8C96,179.1,97.1,182.2,98.9,184.7z" + }, + "children": [] + }] +}; +exports.arrowDownB = arrowDownB; \ No newline at end of file diff --git a/dist/ionicons/arrowDownC.js b/dist/ionicons/arrowDownC.js new file mode 100644 index 000000000..d8ec7be4e --- /dev/null +++ b/dist/ionicons/arrowDownC.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowDownC = void 0; +var arrowDownC = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M383.6,322.7L278.6,423c-5.8,6-13.7,9-22.4,9c-8.7,0-16.5-3-22.4-9L128.4,322.7c-12.5-11.9-12.5-31.3,0-43.2\r\n\tc12.5-11.9,32.7-11.9,45.2,0l50.4,48.2v-217c0-16.9,14.3-30.6,32-30.6c17.7,0,32,13.7,32,30.6v217l50.4-48.2\r\n\tc12.5-11.9,32.7-11.9,45.2,0C396.1,291.4,396.1,310.7,383.6,322.7z" + }, + "children": [] + }] +}; +exports.arrowDownC = arrowDownC; \ No newline at end of file diff --git a/dist/ionicons/arrowExpand.js b/dist/ionicons/arrowExpand.js new file mode 100644 index 000000000..6f9f36744 --- /dev/null +++ b/dist/ionicons/arrowExpand.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowExpand = void 0; +var arrowExpand = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "274,209.7 337.9,145.9 288,96 416,96 416,224 366.1,174.1 302.3,238 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "274,209.7 337.9,145.9 288,96 416,96 416,224 366.1,174.1 302.3,238 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "274,302.3 337.9,366.1 288,416 416,416 416,288 366.1,337.9 302.3,274 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "274,302.3 337.9,366.1 288,416 416,416 416,288 366.1,337.9 302.3,274 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "238,302.3 174.1,366.1 224,416 96,416 96,288 145.9,337.9 209.7,274 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "238,302.3 174.1,366.1 224,416 96,416 96,288 145.9,337.9 209.7,274 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "238,209.7 174.1,145.9 224,96 96,96 96,224 145.9,174.1 209.7,238 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "238,209.7 174.1,145.9 224,96 96,96 96,224 145.9,174.1 209.7,238 \t" + }, + "children": [] + }] + }] + }] +}; +exports.arrowExpand = arrowExpand; \ No newline at end of file diff --git a/dist/ionicons/arrowGraphDownLeft.js b/dist/ionicons/arrowGraphDownLeft.js new file mode 100644 index 000000000..f330f89db --- /dev/null +++ b/dist/ionicons/arrowGraphDownLeft.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowGraphDownLeft = void 0; +var arrowGraphDownLeft = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "polygon", + "attribs": { + "points": "32,384 32,224 92.8,284.8 223.7,144 330.7,256 480,128 330.7,330.7 223.7,224 130.2,322.2 192,384 " + }, + "children": [] + }] +}; +exports.arrowGraphDownLeft = arrowGraphDownLeft; \ No newline at end of file diff --git a/dist/ionicons/arrowGraphDownRight.js b/dist/ionicons/arrowGraphDownRight.js new file mode 100644 index 000000000..9c4fe3f45 --- /dev/null +++ b/dist/ionicons/arrowGraphDownRight.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowGraphDownRight = void 0; +var arrowGraphDownRight = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "polygon", + "attribs": { + "points": "320,384 381.8,322.2 288.3,224 181.3,330.7 32,128 181.3,256 288.3,144 419.2,284.8 480,224 480,384 " + }, + "children": [] + }] +}; +exports.arrowGraphDownRight = arrowGraphDownRight; \ No newline at end of file diff --git a/dist/ionicons/arrowGraphUpLeft.js b/dist/ionicons/arrowGraphUpLeft.js new file mode 100644 index 000000000..74301fe00 --- /dev/null +++ b/dist/ionicons/arrowGraphUpLeft.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowGraphUpLeft = void 0; +var arrowGraphUpLeft = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "polygon", + "attribs": { + "points": "192,128 130.2,189.8 223.7,288 330.7,181.3 480,384 330.7,256 223.7,368 92.8,227.2 32,288 32,128 " + }, + "children": [] + }] +}; +exports.arrowGraphUpLeft = arrowGraphUpLeft; \ No newline at end of file diff --git a/dist/ionicons/arrowGraphUpRight.js b/dist/ionicons/arrowGraphUpRight.js new file mode 100644 index 000000000..be6776be1 --- /dev/null +++ b/dist/ionicons/arrowGraphUpRight.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowGraphUpRight = void 0; +var arrowGraphUpRight = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "polygon", + "attribs": { + "points": "320,128 381.8,189.8 288.3,288 181.3,181.3 32,384 181.3,256 288.3,368 419.2,227.2 480,288 480,128 " + }, + "children": [] + }] +}; +exports.arrowGraphUpRight = arrowGraphUpRight; \ No newline at end of file diff --git a/dist/ionicons/arrowLeftA.js b/dist/ionicons/arrowLeftA.js new file mode 100644 index 000000000..70eca8d90 --- /dev/null +++ b/dist/ionicons/arrowLeftA.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowLeftA = void 0; +var arrowLeftA = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "polygon", + "attribs": { + "points": "64.5,256.5 256.5,448.5 256.5,336.5 448.5,336.5 448.5,176.5 256.5,176.5 256.5,64.5 " + }, + "children": [] + }] +}; +exports.arrowLeftA = arrowLeftA; \ No newline at end of file diff --git a/dist/ionicons/arrowLeftB.js b/dist/ionicons/arrowLeftB.js new file mode 100644 index 000000000..482fdb256 --- /dev/null +++ b/dist/ionicons/arrowLeftB.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowLeftB = void 0; +var arrowLeftB = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M327.3,98.9l-2.1,1.8l-156.5,136c-5.3,4.6-8.6,11.5-8.6,19.2c0,7.7,3.4,14.6,8.6,19.2L324.9,411l2.6,2.3\r\n\tc2.5,1.7,5.5,2.7,8.7,2.7c8.7,0,15.8-7.4,15.8-16.6h0V112.6h0c0-9.2-7.1-16.6-15.8-16.6C332.9,96,329.8,97.1,327.3,98.9z" + }, + "children": [] + }] +}; +exports.arrowLeftB = arrowLeftB; \ No newline at end of file diff --git a/dist/ionicons/arrowLeftC.js b/dist/ionicons/arrowLeftC.js new file mode 100644 index 000000000..db5342286 --- /dev/null +++ b/dist/ionicons/arrowLeftC.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowLeftC = void 0; +var arrowLeftC = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M189.3,128.4L89,233.4c-6,5.8-9,13.7-9,22.4c0,8.7,3,16.5,9,22.4l100.3,105.4c11.9,12.5,31.3,12.5,43.2,0\r\n\tc11.9-12.5,11.9-32.7,0-45.2L184.4,288h217c16.9,0,30.6-14.3,30.6-32c0-17.7-13.7-32-30.6-32h-217l48.2-50.4\r\n\tc11.9-12.5,11.9-32.7,0-45.2C220.6,115.9,201.3,115.9,189.3,128.4z" + }, + "children": [] + }] +}; +exports.arrowLeftC = arrowLeftC; \ No newline at end of file diff --git a/dist/ionicons/arrowMove.js b/dist/ionicons/arrowMove.js new file mode 100644 index 000000000..d112135ef --- /dev/null +++ b/dist/ionicons/arrowMove.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowMove = void 0; +var arrowMove = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "polygon", + "attribs": { + "points": "480,256 384,160 384,236 276,236 276,128 352,128 256,32 160,128 236,128 236,236 128,236 128,160 32,256 128,352 \r\n\t128,276 236,276 236,384 160,384 256,480 352,384 275.8,384 275.4,275.5 384,275.8 384,352 " + }, + "children": [] + }] +}; +exports.arrowMove = arrowMove; \ No newline at end of file diff --git a/dist/ionicons/arrowResize.js b/dist/ionicons/arrowResize.js new file mode 100644 index 000000000..8d9e0e286 --- /dev/null +++ b/dist/ionicons/arrowResize.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowResize = void 0; +var arrowResize = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "polygon", + "attribs": { + "points": "288,96 337.9,145.9 274,209.7 274,209.7 145.9,337.9 96,288 96,416 224,416 174.1,366.1 357.4,182.9 366.1,174.1 \r\n\t416,224 416,96 " + }, + "children": [] + }] +}; +exports.arrowResize = arrowResize; \ No newline at end of file diff --git a/dist/ionicons/arrowReturnLeft.js b/dist/ionicons/arrowReturnLeft.js new file mode 100644 index 000000000..d6004bc02 --- /dev/null +++ b/dist/ionicons/arrowReturnLeft.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowReturnLeft = void 0; +var arrowReturnLeft = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M192,96v64h248c4.4,0,8,3.6,8,8v240c0,4.4-3.6,8-8,8H136c-4.4,0-8-3.6-8-8v-48c0-4.4,3.6-8,8-8h248V224H192v64L64,192\r\n\tL192,96z" + }, + "children": [] + }] +}; +exports.arrowReturnLeft = arrowReturnLeft; \ No newline at end of file diff --git a/dist/ionicons/arrowReturnRight.js b/dist/ionicons/arrowReturnRight.js new file mode 100644 index 000000000..e48f9927d --- /dev/null +++ b/dist/ionicons/arrowReturnRight.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowReturnRight = void 0; +var arrowReturnRight = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M448,192l-128,96v-64H128v128h248c4.4,0,8,3.6,8,8v48c0,4.4-3.6,8-8,8H72c-4.4,0-8-3.6-8-8V168c0-4.4,3.6-8,8-8h248V96\r\n\tL448,192z" + }, + "children": [] + }] +}; +exports.arrowReturnRight = arrowReturnRight; \ No newline at end of file diff --git a/dist/ionicons/arrowRightA.js b/dist/ionicons/arrowRightA.js new file mode 100644 index 000000000..6685cbbf1 --- /dev/null +++ b/dist/ionicons/arrowRightA.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowRightA = void 0; +var arrowRightA = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "polygon", + "attribs": { + "points": "448.5,256.5 256.5,64.5 256.5,176.5 64.5,176.5 64.5,336.5 256.5,336.5 256.5,448.5 " + }, + "children": [] + }] +}; +exports.arrowRightA = arrowRightA; \ No newline at end of file diff --git a/dist/ionicons/arrowRightB.js b/dist/ionicons/arrowRightB.js new file mode 100644 index 000000000..23b23dc0b --- /dev/null +++ b/dist/ionicons/arrowRightB.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowRightB = void 0; +var arrowRightB = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M184.7,413.1l2.1-1.8l156.5-136c5.3-4.6,8.6-11.5,8.6-19.2c0-7.7-3.4-14.6-8.6-19.2L187.1,101l-2.6-2.3\r\n\tC182,97,179,96,175.8,96c-8.7,0-15.8,7.4-15.8,16.6h0v286.8h0c0,9.2,7.1,16.6,15.8,16.6C179.1,416,182.2,414.9,184.7,413.1z" + }, + "children": [] + }] +}; +exports.arrowRightB = arrowRightB; \ No newline at end of file diff --git a/dist/ionicons/arrowRightC.js b/dist/ionicons/arrowRightC.js new file mode 100644 index 000000000..9237bdd82 --- /dev/null +++ b/dist/ionicons/arrowRightC.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowRightC = void 0; +var arrowRightC = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M322.7,128.4L423,233.4c6,5.8,9,13.7,9,22.4c0,8.7-3,16.5-9,22.4L322.7,383.6c-11.9,12.5-31.3,12.5-43.2,0\r\n\tc-11.9-12.5-11.9-32.7,0-45.2l48.2-50.4h-217C93.7,288,80,273.7,80,256c0-17.7,13.7-32,30.6-32h217l-48.2-50.4\r\n\tc-11.9-12.5-11.9-32.7,0-45.2C291.4,115.9,310.7,115.9,322.7,128.4z" + }, + "children": [] + }] +}; +exports.arrowRightC = arrowRightC; \ No newline at end of file diff --git a/dist/ionicons/arrowShrink.js b/dist/ionicons/arrowShrink.js new file mode 100644 index 000000000..4a2eb5f86 --- /dev/null +++ b/dist/ionicons/arrowShrink.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowShrink = void 0; +var arrowShrink = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "448,92.3 366.1,174.1 416,224 288,224 288,96 337.9,145.9 419.7,64 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "448,92.3 366.1,174.1 416,224 288,224 288,96 337.9,145.9 419.7,64 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "448,419.7 366.1,337.9 416,288 288,288 288,416 337.9,366.1 419.7,448 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "448,419.7 366.1,337.9 416,288 288,288 288,416 337.9,366.1 419.7,448 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "64,419.7 145.9,337.9 96,288 224,288 224,416 174.1,366.1 92.3,448 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "64,419.7 145.9,337.9 96,288 224,288 224,416 174.1,366.1 92.3,448 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "64,92.3 145.9,174.1 96,224 224,224 224,96 174.1,145.9 92.3,64 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "64,92.3 145.9,174.1 96,224 224,224 224,96 174.1,145.9 92.3,64 \t" + }, + "children": [] + }] + }] + }] +}; +exports.arrowShrink = arrowShrink; \ No newline at end of file diff --git a/dist/ionicons/arrowSwap.js b/dist/ionicons/arrowSwap.js new file mode 100644 index 000000000..116eaed37 --- /dev/null +++ b/dist/ionicons/arrowSwap.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowSwap = void 0; +var arrowSwap = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M64,328v48c0,4.4,3.6,8,8,8h248v64l128-96l-128-96v64H72C67.6,320,64,323.6,64,328z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M64,328v48c0,4.4,3.6,8,8,8h248v64l128-96l-128-96v64H72C67.6,320,64,323.6,64,328z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M448,184v-48c0-4.4-3.6-8-8-8H192V64L64,160l128,96v-64h248C444.4,192,448,188.4,448,184z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M448,184v-48c0-4.4-3.6-8-8-8H192V64L64,160l128,96v-64h248C444.4,192,448,188.4,448,184z" + }, + "children": [] + }] + }] + }] +}; +exports.arrowSwap = arrowSwap; \ No newline at end of file diff --git a/dist/ionicons/arrowUpA.js b/dist/ionicons/arrowUpA.js new file mode 100644 index 000000000..988a038aa --- /dev/null +++ b/dist/ionicons/arrowUpA.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowUpA = void 0; +var arrowUpA = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "polygon", + "attribs": { + "points": "256.5,64.5 64.5,256.5 176.5,256.5 176.5,448.5 336.5,448.5 336.5,256.5 448.5,256.5 " + }, + "children": [] + }] +}; +exports.arrowUpA = arrowUpA; \ No newline at end of file diff --git a/dist/ionicons/arrowUpB.js b/dist/ionicons/arrowUpB.js new file mode 100644 index 000000000..c4b733f1d --- /dev/null +++ b/dist/ionicons/arrowUpB.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowUpB = void 0; +var arrowUpB = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M413.1,327.3l-1.8-2.1l-136-156.5c-4.6-5.3-11.5-8.6-19.2-8.6c-7.7,0-14.6,3.4-19.2,8.6L101,324.9l-2.3,2.6\r\n\tC97,330,96,333,96,336.2c0,8.7,7.4,15.8,16.6,15.8v0h286.8v0c9.2,0,16.6-7.1,16.6-15.8C416,332.9,414.9,329.8,413.1,327.3z" + }, + "children": [] + }] +}; +exports.arrowUpB = arrowUpB; \ No newline at end of file diff --git a/dist/ionicons/arrowUpC.js b/dist/ionicons/arrowUpC.js new file mode 100644 index 000000000..f948ae5b4 --- /dev/null +++ b/dist/ionicons/arrowUpC.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowUpC = void 0; +var arrowUpC = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M128.4,189.3L233.4,89c5.8-6,13.7-9,22.4-9c8.7,0,16.5,3,22.4,9l105.4,100.3c12.5,11.9,12.5,31.3,0,43.2\r\n\tc-12.5,11.9-32.7,11.9-45.2,0L288,184.4v217c0,16.9-14.3,30.6-32,30.6c-17.7,0-32-13.7-32-30.6v-217l-50.4,48.2\r\n\tc-12.5,11.9-32.7,11.9-45.2,0C115.9,220.6,115.9,201.3,128.4,189.3z" + }, + "children": [] + }] +}; +exports.arrowUpC = arrowUpC; \ No newline at end of file diff --git a/dist/ionicons/asterisk.js b/dist/ionicons/asterisk.js new file mode 100644 index 000000000..9d94b0166 --- /dev/null +++ b/dist/ionicons/asterisk.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.asterisk = void 0; +var asterisk = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "polygon", + "attribs": { + "points": "480,224 293.172,231.487 401.688,64 342.441,32 256,208 169.824,32 110.328,64 218.828,231.487 32,224 32,288 \r\n\t217.537,277.934 113.65,448 169.619,480 256,304 342.381,480 398.33,448 294.463,277.934 480,288 " + }, + "children": [] + }] +}; +exports.asterisk = asterisk; \ No newline at end of file diff --git a/dist/ionicons/at.js b/dist/ionicons/at.js new file mode 100644 index 000000000..f587de970 --- /dev/null +++ b/dist/ionicons/at.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.at = void 0; +var at = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M453.8,407.1c-23.9,25.3-52.3,43.8-85.2,55.4C335.7,474.2,301,480,264.5,480c-34.9,0-66.7-5.5-95.3-16.6\r\n\t\tc-28.6-11-53.1-26.4-73.3-46.1c-20.3-19.7-36-43.3-47.2-70.8c-11.2-27.5-16.7-57.5-16.7-90c0-32.1,6.1-61.8,18.3-89.1\r\n\t\tc12.2-27.3,28.8-51,49.9-71.1c21.1-20.1,45.7-35.8,74-47.3C202.3,37.7,232.5,32,264.5,32c27.6,0,54.4,4,80.3,12\r\n\t\tc26,8,49,20.1,69.1,36.1c20.1,16.1,36.1,36.1,48.1,60.2c12,24.1,18,52.4,18,84.9c0,24.1-3.3,45.4-10,63.8\r\n\t\tc-6.7,18.5-15.6,33.9-26.8,46.4c-11.2,12.5-23.9,21.8-38.3,28c-14.4,6.2-29.5,9.3-45.3,9.3c-16.2,0-29.2-3.8-39-11.4\r\n\t\tc-9.7-7.6-14.6-17.3-14.6-28.9h-3c-6.1,9.6-15.4,18.8-28,27.4c-12.6,8.6-28,13-46.3,13c-27.6,0-48.9-9-63.9-27.1\r\n\t\tc-15-18.1-22.5-41.5-22.5-70.5c0-16.9,2.8-33.5,8.5-50c5.7-16.5,13.8-31.1,24.3-44c10.5-12.8,23.1-23.2,37.7-31\r\n\t\tc14.6-7.8,30.8-11.7,48.7-11.7c15.4,0,28.4,3.2,39,9.6c10.5,6.4,17.4,14.3,20.7,23.5h0.6l4.9-24.1h54.2L357,261.4\r\n\t\tc-0.8,5.6-1.9,11.8-3.3,18.7c-1.4,6.8-2.1,13.2-2.1,19.3c0,6.8,1.3,12.5,4,17.2c2.6,4.6,7.8,6.9,15.5,6.9\r\n\t\tc15.8,0,28.9-8.4,39.3-25.3c10.3-16.9,15.5-39.5,15.5-68c0-24.1-4.1-45.5-12.2-64.1c-8.1-18.7-19.4-34.3-33.8-47\r\n\t\tc-14.4-12.6-31.6-22.2-51.4-28.6c-19.9-6.4-41.6-9.6-65.1-9.6c-25.6,0-49,4.5-70.3,13.5s-39.5,21.5-54.5,37.3\r\n\t\tc-15,15.9-26.7,34.5-35,56C95.2,209.1,91,232.3,91,257.2c0,26.5,4.4,50.4,13.1,71.7c8.7,21.3,21,39.4,36.8,54.5\r\n\t\tc15.8,15.1,34.7,26.6,56.6,34.6c21.9,8,46.1,12,72.4,12c32.9,0,61.2-5.2,84.9-15.7c23.7-10.4,45.5-24.9,65.4-43.4L453.8,407.1z\r\n\t\t M263.3,188c-9.7,0-18.3,2.8-25.6,8.4c-7.3,5.6-13.5,12.7-18.6,21.4c-5.1,8.6-8.9,18.2-11.6,28.6c-2.6,10.4-4,20.5-4,30.1\r\n\t\tc0,4.8,0.5,9.9,1.5,15.4c1,5.4,3,10.4,6.1,15.1c3,4.6,7,8.4,11.9,11.4c4.9,3,11.4,4.5,19.5,4.5c11,0,20.3-2.7,28-8.1\r\n\t\tc7.7-5.4,14-12.2,18.9-20.5c4.9-8.2,8.4-17.2,10.7-26.8c2.2-9.6,3.3-18.5,3.3-26.5c0-6.4-0.6-12.7-1.8-19\r\n\t\tc-1.2-6.2-3.3-11.8-6.4-16.9c-3-5-7.2-9.1-12.5-12.3C277.5,189.6,271,188,263.3,188z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M453.8,407.1c-23.9,25.3-52.3,43.8-85.2,55.4C335.7,474.2,301,480,264.5,480c-34.9,0-66.7-5.5-95.3-16.6\r\n\t\tc-28.6-11-53.1-26.4-73.3-46.1c-20.3-19.7-36-43.3-47.2-70.8c-11.2-27.5-16.7-57.5-16.7-90c0-32.1,6.1-61.8,18.3-89.1\r\n\t\tc12.2-27.3,28.8-51,49.9-71.1c21.1-20.1,45.7-35.8,74-47.3C202.3,37.7,232.5,32,264.5,32c27.6,0,54.4,4,80.3,12\r\n\t\tc26,8,49,20.1,69.1,36.1c20.1,16.1,36.1,36.1,48.1,60.2c12,24.1,18,52.4,18,84.9c0,24.1-3.3,45.4-10,63.8\r\n\t\tc-6.7,18.5-15.6,33.9-26.8,46.4c-11.2,12.5-23.9,21.8-38.3,28c-14.4,6.2-29.5,9.3-45.3,9.3c-16.2,0-29.2-3.8-39-11.4\r\n\t\tc-9.7-7.6-14.6-17.3-14.6-28.9h-3c-6.1,9.6-15.4,18.8-28,27.4c-12.6,8.6-28,13-46.3,13c-27.6,0-48.9-9-63.9-27.1\r\n\t\tc-15-18.1-22.5-41.5-22.5-70.5c0-16.9,2.8-33.5,8.5-50c5.7-16.5,13.8-31.1,24.3-44c10.5-12.8,23.1-23.2,37.7-31\r\n\t\tc14.6-7.8,30.8-11.7,48.7-11.7c15.4,0,28.4,3.2,39,9.6c10.5,6.4,17.4,14.3,20.7,23.5h0.6l4.9-24.1h54.2L357,261.4\r\n\t\tc-0.8,5.6-1.9,11.8-3.3,18.7c-1.4,6.8-2.1,13.2-2.1,19.3c0,6.8,1.3,12.5,4,17.2c2.6,4.6,7.8,6.9,15.5,6.9\r\n\t\tc15.8,0,28.9-8.4,39.3-25.3c10.3-16.9,15.5-39.5,15.5-68c0-24.1-4.1-45.5-12.2-64.1c-8.1-18.7-19.4-34.3-33.8-47\r\n\t\tc-14.4-12.6-31.6-22.2-51.4-28.6c-19.9-6.4-41.6-9.6-65.1-9.6c-25.6,0-49,4.5-70.3,13.5s-39.5,21.5-54.5,37.3\r\n\t\tc-15,15.9-26.7,34.5-35,56C95.2,209.1,91,232.3,91,257.2c0,26.5,4.4,50.4,13.1,71.7c8.7,21.3,21,39.4,36.8,54.5\r\n\t\tc15.8,15.1,34.7,26.6,56.6,34.6c21.9,8,46.1,12,72.4,12c32.9,0,61.2-5.2,84.9-15.7c23.7-10.4,45.5-24.9,65.4-43.4L453.8,407.1z\r\n\t\t M263.3,188c-9.7,0-18.3,2.8-25.6,8.4c-7.3,5.6-13.5,12.7-18.6,21.4c-5.1,8.6-8.9,18.2-11.6,28.6c-2.6,10.4-4,20.5-4,30.1\r\n\t\tc0,4.8,0.5,9.9,1.5,15.4c1,5.4,3,10.4,6.1,15.1c3,4.6,7,8.4,11.9,11.4c4.9,3,11.4,4.5,19.5,4.5c11,0,20.3-2.7,28-8.1\r\n\t\tc7.7-5.4,14-12.2,18.9-20.5c4.9-8.2,8.4-17.2,10.7-26.8c2.2-9.6,3.3-18.5,3.3-26.5c0-6.4-0.6-12.7-1.8-19\r\n\t\tc-1.2-6.2-3.3-11.8-6.4-16.9c-3-5-7.2-9.1-12.5-12.3C277.5,189.6,271,188,263.3,188z" + }, + "children": [] + }] + }] + }] +}; +exports.at = at; \ No newline at end of file diff --git a/dist/ionicons/backspace.js b/dist/ionicons/backspace.js new file mode 100644 index 000000000..c498a5c2b --- /dev/null +++ b/dist/ionicons/backspace.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.backspace = void 0; +var backspace = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M498.941,93.559C490.037,84.654,478.696,80,465.875,80H168c-24.303,0-43.717,9.402-57.706,28.441L0,255.938l110.4,146.528\r\n\t\tl0.18,0.231l0.184,0.232c6.904,8.855,14.424,15.701,22.99,20.417C143.883,428.924,155.405,432,168,432h298\r\n\t\tc26.191,0,46-22.257,46-49V127C512,114.179,507.846,102.463,498.941,93.559z M413.442,332.307c1.528,1.51,2.372,3.562,2.372,5.71\r\n\t\tc0,2.151-0.844,4.203-2.372,5.707l-21.823,21.905c-1.575,1.586-3.625,2.371-5.691,2.371c-2.071,0-4.138-0.785-5.695-2.371\r\n\t\tl-76.23-76.461l-76.23,76.461c-1.558,1.586-3.625,2.371-5.695,2.371c-2.066,0-4.117-0.785-5.692-2.371l-21.824-21.905\r\n\t\tc-1.527-1.504-2.373-3.556-2.373-5.707c0-2.148,0.846-4.2,2.373-5.71L271.098,256l-76.738-76.297\r\n\t\tc-3.146-3.153-3.146-8.273,0-11.427l21.807-21.919c1.516-1.511,3.552-2.357,5.696-2.357c2.152,0,4.189,0.847,5.691,2.357\r\n\t\tl76.448,75.533l76.447-75.533c1.504-1.511,3.541-2.357,5.693-2.357c2.143,0,4.179,0.847,5.695,2.357l21.807,21.919\r\n\t\tc3.146,3.153,3.146,8.273,0,11.427L336.904,256L413.442,332.307z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M498.941,93.559C490.037,84.654,478.696,80,465.875,80H168c-24.303,0-43.717,9.402-57.706,28.441L0,255.938l110.4,146.528\r\n\t\tl0.18,0.231l0.184,0.232c6.904,8.855,14.424,15.701,22.99,20.417C143.883,428.924,155.405,432,168,432h298\r\n\t\tc26.191,0,46-22.257,46-49V127C512,114.179,507.846,102.463,498.941,93.559z M413.442,332.307c1.528,1.51,2.372,3.562,2.372,5.71\r\n\t\tc0,2.151-0.844,4.203-2.372,5.707l-21.823,21.905c-1.575,1.586-3.625,2.371-5.691,2.371c-2.071,0-4.138-0.785-5.695-2.371\r\n\t\tl-76.23-76.461l-76.23,76.461c-1.558,1.586-3.625,2.371-5.695,2.371c-2.066,0-4.117-0.785-5.692-2.371l-21.824-21.905\r\n\t\tc-1.527-1.504-2.373-3.556-2.373-5.707c0-2.148,0.846-4.2,2.373-5.71L271.098,256l-76.738-76.297\r\n\t\tc-3.146-3.153-3.146-8.273,0-11.427l21.807-21.919c1.516-1.511,3.552-2.357,5.696-2.357c2.152,0,4.189,0.847,5.691,2.357\r\n\t\tl76.448,75.533l76.447-75.533c1.504-1.511,3.541-2.357,5.693-2.357c2.143,0,4.179,0.847,5.695,2.357l21.807,21.919\r\n\t\tc3.146,3.153,3.146,8.273,0,11.427L336.904,256L413.442,332.307z" + }, + "children": [] + }] + }] + }] +}; +exports.backspace = backspace; \ No newline at end of file diff --git a/dist/ionicons/backspaceOutline.js b/dist/ionicons/backspaceOutline.js new file mode 100644 index 000000000..0c0ea3e33 --- /dev/null +++ b/dist/ionicons/backspaceOutline.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.backspaceOutline = void 0; +var backspaceOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M413.442,332.307c1.528,1.51,2.372,3.562,2.372,5.71c0,2.151-0.844,4.203-2.372,5.707l-21.823,21.905\r\n\t\t\tc-1.575,1.586-3.625,2.371-5.691,2.371c-2.071,0-4.138-0.785-5.695-2.371l-76.23-76.461l-76.23,76.461\r\n\t\t\tc-1.558,1.586-3.625,2.371-5.695,2.371c-2.066,0-4.117-0.785-5.692-2.371l-21.824-21.905c-1.527-1.504-2.373-3.556-2.373-5.707\r\n\t\t\tc0-2.148,0.846-4.2,2.373-5.71L271.098,256l-76.738-76.297c-3.146-3.153-3.146-8.273,0-11.427l21.807-21.919\r\n\t\t\tc1.516-1.511,3.552-2.357,5.696-2.357c2.152,0,4.189,0.847,5.691,2.357l76.448,75.533l76.447-75.533\r\n\t\t\tc1.504-1.511,3.541-2.357,5.693-2.357c2.143,0,4.179,0.847,5.695,2.357l21.807,21.919c3.146,3.153,3.146,8.273,0,11.427\r\n\t\t\tL336.904,256L413.442,332.307z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M413.442,332.307c1.528,1.51,2.372,3.562,2.372,5.71c0,2.151-0.844,4.203-2.372,5.707l-21.823,21.905\r\n\t\t\tc-1.575,1.586-3.625,2.371-5.691,2.371c-2.071,0-4.138-0.785-5.695-2.371l-76.23-76.461l-76.23,76.461\r\n\t\t\tc-1.558,1.586-3.625,2.371-5.695,2.371c-2.066,0-4.117-0.785-5.692-2.371l-21.824-21.905c-1.527-1.504-2.373-3.556-2.373-5.707\r\n\t\t\tc0-2.148,0.846-4.2,2.373-5.71L271.098,256l-76.738-76.297c-3.146-3.153-3.146-8.273,0-11.427l21.807-21.919\r\n\t\t\tc1.516-1.511,3.552-2.357,5.696-2.357c2.152,0,4.189,0.847,5.691,2.357l76.448,75.533l76.447-75.533\r\n\t\t\tc1.504-1.511,3.541-2.357,5.693-2.357c2.143,0,4.179,0.847,5.695,2.357l21.807,21.919c3.146,3.153,3.146,8.273,0,11.427\r\n\t\t\tL336.904,256L413.442,332.307z" + }, + "children": [] + }] + }] + }] + }, { + "name": "path", + "attribs": { + "d": "M498.941,93.559C490.037,84.654,478.696,80,465.875,80H168c-24.303,0-43.717,9.402-57.706,28.441L0,255.938l110.4,146.528\r\n\t\tl0.18,0.231l0.184,0.232c6.904,8.855,14.424,15.701,22.99,20.417C143.883,428.924,155.405,432,168,432h298\r\n\t\tc26.191,0,46-22.257,46-49V127C512,114.179,507.846,102.463,498.941,93.559z M480,383c0,8.837-5.163,17-14,17H168\r\n\t\tc-15.167,0-24.333-6.666-32-16.5L40,256l96-128.438c9.5-13,21.167-15.562,32-15.562h297.5c8.837,0,14.5,6.163,14.5,15V383z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M498.941,93.559C490.037,84.654,478.696,80,465.875,80H168c-24.303,0-43.717,9.402-57.706,28.441L0,255.938l110.4,146.528\r\n\t\tl0.18,0.231l0.184,0.232c6.904,8.855,14.424,15.701,22.99,20.417C143.883,428.924,155.405,432,168,432h298\r\n\t\tc26.191,0,46-22.257,46-49V127C512,114.179,507.846,102.463,498.941,93.559z M480,383c0,8.837-5.163,17-14,17H168\r\n\t\tc-15.167,0-24.333-6.666-32-16.5L40,256l96-128.438c9.5-13,21.167-15.562,32-15.562h297.5c8.837,0,14.5,6.163,14.5,15V383z" + }, + "children": [] + }] + }] + }] +}; +exports.backspaceOutline = backspaceOutline; \ No newline at end of file diff --git a/dist/ionicons/bag.js b/dist/ionicons/bag.js new file mode 100644 index 000000000..74a521879 --- /dev/null +++ b/dist/ionicons/bag.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bag = void 0; +var bag = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M448,160h-64v-4.5C384,87,329,32,260.5,32h-8C184,32,128,87,128,155.5v4.5H64L32,480h448L448,160z M160,155.5\r\n\tc0-50.7,41.8-91.5,92.5-91.5h7.5h0.5c50.7,0,91.5,40.8,91.5,91.5v4.5H160V155.5z M67.8,448l24.9-256H128v36.3\r\n\tc-9.6,5.5-16,15.9-16,27.7c0,17.7,14.3,32,32,32s32-14.3,32-32c0-11.8-6.4-22.2-16-27.7V192h192v36.3c-9.6,5.5-16,15.9-16,27.7\r\n\tc0,17.7,14.3,32,32,32s32-14.3,32-32c0-11.8-6.4-22.2-16-27.7V192h35.4l24.9,256H67.8z" + }, + "children": [] + }] +}; +exports.bag = bag; \ No newline at end of file diff --git a/dist/ionicons/batteryCharging.js b/dist/ionicons/batteryCharging.js new file mode 100644 index 000000000..cf3c9cac0 --- /dev/null +++ b/dist/ionicons/batteryCharging.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.batteryCharging = void 0; +var batteryCharging = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M42.1,384h381.1c5.5,0,9.9-4.5,9.9-10v-54h36.9c5.6,0,10.1-4.5,10.1-10V202c0-5.5-4.5-10-10.1-10H433v-54\r\n\tc0-5.5-4.3-10-9.9-10H42.1c-5.6,0-10.1,4.5-10.1,10v236C32,379.5,36.5,384,42.1,384z M257.4,160l-27.9,81H291L190.6,352l27.9-81H157\r\n\tL257.4,160z" + }, + "children": [] + }] +}; +exports.batteryCharging = batteryCharging; \ No newline at end of file diff --git a/dist/ionicons/batteryEmpty.js b/dist/ionicons/batteryEmpty.js new file mode 100644 index 000000000..8527550a2 --- /dev/null +++ b/dist/ionicons/batteryEmpty.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.batteryEmpty = void 0; +var batteryEmpty = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M469.9,192H433v-54c0-5.5-4.3-10-9.9-10H42.1c-5.6,0-10.1,4.5-10.1,10v236c0,5.5,4.5,10,10.1,10h381.1c5.5,0,9.9-4.5,9.9-10\r\n\tv-54h36.9c5.6,0,10.1-4.5,10.1-10V202C480,196.5,475.5,192,469.9,192z M448,288h-14.8H401v32v32H64V160h337v32v32h32.2H448V288z" + }, + "children": [] + }] +}; +exports.batteryEmpty = batteryEmpty; \ No newline at end of file diff --git a/dist/ionicons/batteryFull.js b/dist/ionicons/batteryFull.js new file mode 100644 index 000000000..427bb76f9 --- /dev/null +++ b/dist/ionicons/batteryFull.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.batteryFull = void 0; +var batteryFull = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M469.9,192H433v-54c0-5.5-4.3-10-9.9-10H42.1c-5.6,0-10.1,4.5-10.1,10v236c0,5.5,4.5,10,10.1,10h381.1c5.5,0,9.9-4.5,9.9-10\r\n\tv-54h36.9c5.6,0,10.1-4.5,10.1-10V202C480,196.5,475.5,192,469.9,192z" + }, + "children": [] + }] +}; +exports.batteryFull = batteryFull; \ No newline at end of file diff --git a/dist/ionicons/batteryHalf.js b/dist/ionicons/batteryHalf.js new file mode 100644 index 000000000..db0c1cabd --- /dev/null +++ b/dist/ionicons/batteryHalf.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.batteryHalf = void 0; +var batteryHalf = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M469.9,192H433v-54c0-5.5-4.3-10-9.9-10H42.1c-5.6,0-10.1,4.5-10.1,10v236c0,5.5,4.5,10,10.1,10h381.1c5.5,0,9.9-4.5,9.9-10\r\n\tv-54h36.9c5.6,0,10.1-4.5,10.1-10V202C480,196.5,475.5,192,469.9,192z M448,288h-14.8H401v32v32h-49l-32-192h81v32v32h32.2H448V288z\r\n\t" + }, + "children": [] + }] +}; +exports.batteryHalf = batteryHalf; \ No newline at end of file diff --git a/dist/ionicons/batteryLow.js b/dist/ionicons/batteryLow.js new file mode 100644 index 000000000..7d123ac7d --- /dev/null +++ b/dist/ionicons/batteryLow.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.batteryLow = void 0; +var batteryLow = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M42.1,384h381.1c5.5,0,9.9-4.5,9.9-10v-54h36.9c5.6,0,10.1-4.5,10.1-10V202c0-5.5-4.5-10-10.1-10H433v-54\r\n\tc0-5.5-4.3-10-9.9-10H42.1c-5.6,0-10.1,4.5-10.1,10v236C32,379.5,36.5,384,42.1,384z M401,160v32v32h32.2H448v64h-14.8H401v32v32\r\n\tH224l-32-192H401z" + }, + "children": [] + }] +}; +exports.batteryLow = batteryLow; \ No newline at end of file diff --git a/dist/ionicons/beaker.js b/dist/ionicons/beaker.js new file mode 100644 index 000000000..b1f05f351 --- /dev/null +++ b/dist/ionicons/beaker.js @@ -0,0 +1,55 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.beaker = void 0; +var beaker = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M143.5,192.5V416c0,8.836,7.851,16.5,16.688,16.5h208c8.836,0,15.312-7.664,15.312-16.5V192.5H143.5z M359.5,344\r\n\t\t\tc0,4.418-3.582,8-8,8s-8-3.582-8-8v-48c0-4.418,3.582-8,8-8s8,3.582,8,8V344z M352.188,272c-4.418,0-8-3.581-8-8s3.582-8,8-8\r\n\t\t\ts8,3.581,8,8S356.605,272,352.188,272z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M143.5,192.5V416c0,8.836,7.851,16.5,16.688,16.5h208c8.836,0,15.312-7.664,15.312-16.5V192.5H143.5z M359.5,344\r\n\t\t\tc0,4.418-3.582,8-8,8s-8-3.582-8-8v-48c0-4.418,3.582-8,8-8s8,3.582,8,8V344z M352.188,272c-4.418,0-8-3.581-8-8s3.582-8,8-8\r\n\t\t\ts8,3.581,8,8S356.605,272,352.188,272z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M445.078,32.5H128.438c-54.345,0-64.594,27.426-64.594,39.75C94.094,76.5,95.5,77,95.5,109c0,16,0,307,0,307\r\n\t\t\tc0,35.346,29.341,64.5,64.688,64.5h207.75c35.346,0,63.562-29.154,63.562-64.5c0,0,0-316.75,0-335.5\r\n\t\t\tc0-20.349,12.298-38.276,13.516-40.183c1.219-1.906,3-3.798,3-4.958C448.016,34.188,447.6,32.5,445.078,32.5z M399.5,80.5V416\r\n\t\t\tc0,17.92-12.443,32.5-29.812,32.5h-209.5c-17.617,0-32.688-14.883-32.688-32.5V109c0-11.812,1.094-37.25-3.828-43.957\r\n\t\t\tc0.921-0.793,3.114-0.543,4.516-0.543h272.66C400.112,64.5,399.5,75.299,399.5,80.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M445.078,32.5H128.438c-54.345,0-64.594,27.426-64.594,39.75C94.094,76.5,95.5,77,95.5,109c0,16,0,307,0,307\r\n\t\t\tc0,35.346,29.341,64.5,64.688,64.5h207.75c35.346,0,63.562-29.154,63.562-64.5c0,0,0-316.75,0-335.5\r\n\t\t\tc0-20.349,12.298-38.276,13.516-40.183c1.219-1.906,3-3.798,3-4.958C448.016,34.188,447.6,32.5,445.078,32.5z M399.5,80.5V416\r\n\t\t\tc0,17.92-12.443,32.5-29.812,32.5h-209.5c-17.617,0-32.688-14.883-32.688-32.5V109c0-11.812,1.094-37.25-3.828-43.957\r\n\t\t\tc0.921-0.793,3.114-0.543,4.516-0.543h272.66C400.112,64.5,399.5,75.299,399.5,80.5z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.beaker = beaker; \ No newline at end of file diff --git a/dist/ionicons/beer.js b/dist/ionicons/beer.js new file mode 100644 index 000000000..357698f7f --- /dev/null +++ b/dist/ionicons/beer.js @@ -0,0 +1,59 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.beer = void 0; +var beer = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M416,160h-32v-16c14.5-3.5,32-24.3,32-48c0-35.3-28.7-64-64-64c-16.3,0-31.1,6.1-42.4,16.1C297.2,38,281.4,32,264.2,32\r\n\t\tc-15.8,0-30.4,5.1-42.3,13.7c-9.9-8.5-22.9-13.7-37-13.7c-17.1,0-32.4,7.6-42.8,19.5C130.4,39.5,114.1,32,96,32\r\n\t\tc-35.3,0-64,28.7-64,64c0,16.2,6.1,31,16,42.3c0,0.2,0,0.4,0,0.7v54c0,26.5,21.5,48,48,48v223c0,8.8,7.2,16,16,16h256\r\n\t\tc8.8,0,16-7.2,16-16v-80h32c35.3,0,64-28.7,64-64v-96C480,188.7,451.3,160,416,160z M327.8,304c-1.6,0-3-0.6-4.3-1.4\r\n\t\tc-2.2-1.4-3.5-4-3.5-6.8V248c0-4.4,3.6-8,8-8c4.4,0,8,3.6,8,8v48.1l0,0C336,301.1,332.2,304,327.8,304z M335,228.4\r\n\t\tc-1.2,1.8-3,3-5.1,3.5c-2.1,0.4-4.3,0-6-1.1c-1.8-1.2-3-3-3.5-5.1c-0.4-2.1,0-4.3,1.1-6c1.2-1.8,3-3,5.1-3.5c2.1-0.4,4.3,0,6,1.1\r\n\t\tc1.8,1.2,3,3,3.5,5.1C336.6,224.4,336.2,226.6,335,228.4z M352,160v32H224.2c-0.1-4.3-3.6-7.8-8-7.8c-4.4,0-7.9,3.5-8,7.8H128v-9\r\n\t\tv-31.6c6.5-3.8,12.3-8.6,17-14.3c1.2-1.5,2.4-3,3.5-4.6c1.5,1.2,3,2.4,4.6,3.4c9.1,6.1,20,9.7,31.7,9.7c6.4,0,12.6-1.1,18.3-3\r\n\t\tc12.8,20.2,35.3,33.7,61,33.7c22,0,41.7-9.9,54.9-25.4c5.7-6.7,10.2-14.4,13.1-22.9H352V160z M382.6,105.2\r\n\t\tc-2.5-5.5-8.1-9.2-14.6-9.2h-48h-7c0,0-8.7-0.7-8.7,8.2s-2.9,17.1-7.8,23.7c-7.3,9.9-19.1,16.4-32.4,16.4\r\n\t\tc-14.9,0-27.9-8.1-34.8-20.2c-1.6-2.7-2.8-5.6-3.7-8.6c-0.1-0.6-0.3-1.1-0.4-1.6c-2-5.9-7.5-10.2-14.1-10.2c-3.9,0-7.5,1.5-10.2,4\r\n\t\tc0,0,0,0-0.1,0.1c-2.4,2.1-5.3,3.7-8.4,4.7c-2.4,0.8-5,1.2-7.7,1.2c-7.5,0-14.7-4-18.8-8.6c-10-11.4-23.7-6.8-29.7-5.5\r\n\t\ts-12.2,11.7-12.2,11.7c-1.1,2.1-2.5,4-4,5.8c-5.9,6.7-14.5,11-24.1,11v32v23v26c-8.8,0-16-7.2-16-16v-35v-34.3\r\n\t\tc-7.7-4.5-13.4-12.1-15.3-21c-0.5-2.1-0.7-4.4-0.7-6.7c0-17.6,14.4-32,32-32c11.8,0,23.3,7.7,30.1,15.4s26.7,7.7,33.9,0\r\n\t\tc6.8-7.3,14.3-15.4,24.8-15.4c6,0,11.6,2.2,15.9,5.8c1.9,1.6,3.6,3.5,4.9,5.6c1.1,1.8,2,4.2,3.1,5.8c2.7,3.4,6.5,5.5,11.2,5.5\r\n\t\tc4.4,0,8.3-1.9,11-5c0.6-0.7,1.2-1.5,1.7-2.3c2-2.5,4.2-4.8,6.7-6.8c6.8-5.4,15.5-8.6,24.8-8.6c10.6,0,20.2,4.1,27.4,10.9\r\n\t\tc1.7,1.6,6.7,4.5,13.2,5.1c4.5,0.4,6.1,0.3,8.2,0c10.3-1.3,14.4-4.7,16.4-6.6c5.8-5.8,13.8-9.4,22.6-9.4c17.6,0,32,14.4,32,32\r\n\t\tC384,99.2,383.5,102.3,382.6,105.2z M448,320c0,17.7-14.3,32-32,32h-32V192h32c17.7,0,32,14.3,32,32V320z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M416,160h-32v-16c14.5-3.5,32-24.3,32-48c0-35.3-28.7-64-64-64c-16.3,0-31.1,6.1-42.4,16.1C297.2,38,281.4,32,264.2,32\r\n\t\tc-15.8,0-30.4,5.1-42.3,13.7c-9.9-8.5-22.9-13.7-37-13.7c-17.1,0-32.4,7.6-42.8,19.5C130.4,39.5,114.1,32,96,32\r\n\t\tc-35.3,0-64,28.7-64,64c0,16.2,6.1,31,16,42.3c0,0.2,0,0.4,0,0.7v54c0,26.5,21.5,48,48,48v223c0,8.8,7.2,16,16,16h256\r\n\t\tc8.8,0,16-7.2,16-16v-80h32c35.3,0,64-28.7,64-64v-96C480,188.7,451.3,160,416,160z M327.8,304c-1.6,0-3-0.6-4.3-1.4\r\n\t\tc-2.2-1.4-3.5-4-3.5-6.8V248c0-4.4,3.6-8,8-8c4.4,0,8,3.6,8,8v48.1l0,0C336,301.1,332.2,304,327.8,304z M335,228.4\r\n\t\tc-1.2,1.8-3,3-5.1,3.5c-2.1,0.4-4.3,0-6-1.1c-1.8-1.2-3-3-3.5-5.1c-0.4-2.1,0-4.3,1.1-6c1.2-1.8,3-3,5.1-3.5c2.1-0.4,4.3,0,6,1.1\r\n\t\tc1.8,1.2,3,3,3.5,5.1C336.6,224.4,336.2,226.6,335,228.4z M352,160v32H224.2c-0.1-4.3-3.6-7.8-8-7.8c-4.4,0-7.9,3.5-8,7.8H128v-9\r\n\t\tv-31.6c6.5-3.8,12.3-8.6,17-14.3c1.2-1.5,2.4-3,3.5-4.6c1.5,1.2,3,2.4,4.6,3.4c9.1,6.1,20,9.7,31.7,9.7c6.4,0,12.6-1.1,18.3-3\r\n\t\tc12.8,20.2,35.3,33.7,61,33.7c22,0,41.7-9.9,54.9-25.4c5.7-6.7,10.2-14.4,13.1-22.9H352V160z M382.6,105.2\r\n\t\tc-2.5-5.5-8.1-9.2-14.6-9.2h-48h-7c0,0-8.7-0.7-8.7,8.2s-2.9,17.1-7.8,23.7c-7.3,9.9-19.1,16.4-32.4,16.4\r\n\t\tc-14.9,0-27.9-8.1-34.8-20.2c-1.6-2.7-2.8-5.6-3.7-8.6c-0.1-0.6-0.3-1.1-0.4-1.6c-2-5.9-7.5-10.2-14.1-10.2c-3.9,0-7.5,1.5-10.2,4\r\n\t\tc0,0,0,0-0.1,0.1c-2.4,2.1-5.3,3.7-8.4,4.7c-2.4,0.8-5,1.2-7.7,1.2c-7.5,0-14.7-4-18.8-8.6c-10-11.4-23.7-6.8-29.7-5.5\r\n\t\ts-12.2,11.7-12.2,11.7c-1.1,2.1-2.5,4-4,5.8c-5.9,6.7-14.5,11-24.1,11v32v23v26c-8.8,0-16-7.2-16-16v-35v-34.3\r\n\t\tc-7.7-4.5-13.4-12.1-15.3-21c-0.5-2.1-0.7-4.4-0.7-6.7c0-17.6,14.4-32,32-32c11.8,0,23.3,7.7,30.1,15.4s26.7,7.7,33.9,0\r\n\t\tc6.8-7.3,14.3-15.4,24.8-15.4c6,0,11.6,2.2,15.9,5.8c1.9,1.6,3.6,3.5,4.9,5.6c1.1,1.8,2,4.2,3.1,5.8c2.7,3.4,6.5,5.5,11.2,5.5\r\n\t\tc4.4,0,8.3-1.9,11-5c0.6-0.7,1.2-1.5,1.7-2.3c2-2.5,4.2-4.8,6.7-6.8c6.8-5.4,15.5-8.6,24.8-8.6c10.6,0,20.2,4.1,27.4,10.9\r\n\t\tc1.7,1.6,6.7,4.5,13.2,5.1c4.5,0.4,6.1,0.3,8.2,0c10.3-1.3,14.4-4.7,16.4-6.6c5.8-5.8,13.8-9.4,22.6-9.4c17.6,0,32,14.4,32,32\r\n\t\tC384,99.2,383.5,102.3,382.6,105.2z M448,320c0,17.7-14.3,32-32,32h-32V192h32c17.7,0,32,14.3,32,32V320z" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "168.2", + "cy": "168.2", + "r": "8" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "168.2", + "cy": "168.2", + "r": "8" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "328.2", + "cy": "168.2", + "r": "8" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "328.2", + "cy": "168.2", + "r": "8" + }, + "children": [] + }] + }] + }] +}; +exports.beer = beer; \ No newline at end of file diff --git a/dist/ionicons/bluetooth.js b/dist/ionicons/bluetooth.js new file mode 100644 index 000000000..fe45d486c --- /dev/null +++ b/dist/ionicons/bluetooth.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bluetooth = void 0; +var bluetooth = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M140,143.6c-15.9,15.9-11.7,17.3-10.6,18.4c1.1,1.1,89.8,85.6,89.8,85.6s3.9,3.4,3.9,8.4h0c0,5-3.9,8.4-3.9,8.4\r\n\t\ts-88.7,84.5-89.8,85.6c-1.1,1.1-5.3,2.5,10.6,18.4c15.9,15.9,18.4,12.2,19.2,11.4l67.4-64.3c0.1-0.1,0.2-0.2,0.3-0.3\r\n\t\tc0.1-0.1,0.3-0.2,0.4-0.3c2.3-1.9,9.8-10.6,9.8-3.2c0,7.3,0,151.8,0,156.4v0.1v1.7c0,5.5,5.2,10.1,11.6,10.1c3.5,0,6.7-1.3,8.9-3.5\r\n\t\tl0,0c0,0,118.2-112.8,122.8-117.2c4.6-4.4,5-10.7,1-14.7l-83.9-80.3c0,0-4.4-4.3-4.4-8.3s4.4-8.3,4.4-8.3l83.9-80.3\r\n\t\tc4-4,3.6-10.4-1-14.7c-4.6-4.4-122.8-117.2-122.8-117.2l0,0c-2.1-2.1-5.3-3.5-8.8-3.5c-6.4,0-11.6,4.6-11.6,10.1v1.7V44\r\n\t\tc0,4.6,0,149.1,0,156.4c0,7.4-7.5-1.3-9.8-3.2c-0.1-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.2-0.2-0.3-0.3l-67.4-64.3\r\n\t\tC158.3,131.4,155.9,127.7,140,143.6z M280,119.9c0-6.6,7.5,2.3,9.8,4.4l30.5,29.2c2.1,2,2.9,4.7,2.9,7.2c0,2.5-1,5.6-2.8,7.3\r\n\t\tc-1.8,1.7-30.8,29.5-30.8,29.5c-2.3,1.8-9.6,9.8-9.6,1.7C280,199.2,280,126.5,280,119.9z M280,312.8c0-8.2,7.2-0.2,9.6,1.7\r\n\t\tc0,0,29.1,27.8,30.9,29.5c1.8,1.7,2.8,4.9,2.8,7.3s-0.8,5.2-2.9,7.2l-30.5,29.2c-2.3,2.1-9.8,11-9.8,4.4\r\n\t\tC280,385.5,280,312.8,280,312.8z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M140,143.6c-15.9,15.9-11.7,17.3-10.6,18.4c1.1,1.1,89.8,85.6,89.8,85.6s3.9,3.4,3.9,8.4h0c0,5-3.9,8.4-3.9,8.4\r\n\t\ts-88.7,84.5-89.8,85.6c-1.1,1.1-5.3,2.5,10.6,18.4c15.9,15.9,18.4,12.2,19.2,11.4l67.4-64.3c0.1-0.1,0.2-0.2,0.3-0.3\r\n\t\tc0.1-0.1,0.3-0.2,0.4-0.3c2.3-1.9,9.8-10.6,9.8-3.2c0,7.3,0,151.8,0,156.4v0.1v1.7c0,5.5,5.2,10.1,11.6,10.1c3.5,0,6.7-1.3,8.9-3.5\r\n\t\tl0,0c0,0,118.2-112.8,122.8-117.2c4.6-4.4,5-10.7,1-14.7l-83.9-80.3c0,0-4.4-4.3-4.4-8.3s4.4-8.3,4.4-8.3l83.9-80.3\r\n\t\tc4-4,3.6-10.4-1-14.7c-4.6-4.4-122.8-117.2-122.8-117.2l0,0c-2.1-2.1-5.3-3.5-8.8-3.5c-6.4,0-11.6,4.6-11.6,10.1v1.7V44\r\n\t\tc0,4.6,0,149.1,0,156.4c0,7.4-7.5-1.3-9.8-3.2c-0.1-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.2-0.2-0.3-0.3l-67.4-64.3\r\n\t\tC158.3,131.4,155.9,127.7,140,143.6z M280,119.9c0-6.6,7.5,2.3,9.8,4.4l30.5,29.2c2.1,2,2.9,4.7,2.9,7.2c0,2.5-1,5.6-2.8,7.3\r\n\t\tc-1.8,1.7-30.8,29.5-30.8,29.5c-2.3,1.8-9.6,9.8-9.6,1.7C280,199.2,280,126.5,280,119.9z M280,312.8c0-8.2,7.2-0.2,9.6,1.7\r\n\t\tc0,0,29.1,27.8,30.9,29.5c1.8,1.7,2.8,4.9,2.8,7.3s-0.8,5.2-2.9,7.2l-30.5,29.2c-2.3,2.1-9.8,11-9.8,4.4\r\n\t\tC280,385.5,280,312.8,280,312.8z" + }, + "children": [] + }] + }] + }] +}; +exports.bluetooth = bluetooth; \ No newline at end of file diff --git a/dist/ionicons/bonfire.js b/dist/ionicons/bonfire.js new file mode 100644 index 000000000..012b3a863 --- /dev/null +++ b/dist/ionicons/bonfire.js @@ -0,0 +1,147 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bonfire = void 0; +var bonfire = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M270.93,350.601C270.219,342.42,263.364,336,255,336c-7.635,0-14.01,5.352-15.605,12.506l-0.007-0.002l-15.612,92.502\r\n\t\tC223.273,443.258,223,445.597,223,448c0,17.673,14.327,32,32,32s32-14.327,32-32c0-2.899-0.393-5.705-1.115-8.377L270.93,350.601z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M270.93,350.601C270.219,342.42,263.364,336,255,336c-7.635,0-14.01,5.352-15.605,12.506l-0.007-0.002l-15.612,92.502\r\n\t\tC223.273,443.258,223,445.597,223,448c0,17.673,14.327,32,32,32s32-14.327,32-32c0-2.899-0.393-5.705-1.115-8.377L270.93,350.601z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "305.904,355.046 305.903,355.044 305.9,355.046 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "305.904,355.046 305.903,355.044 305.9,355.046 \t" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M392.875,390.261c-1.718-1.407-3.3-2.881-5.138-3.94l-63.629-47.507c-5.775-3.796-11.997-3.689-16.527,0.85\r\n\t\tc-4.131,4.143-4.686,10.369-1.678,15.381l48.959,65.763c0.946,1.494,2.166,2.799,3.366,4.195c7.802,9.071,25.08,9.588,34.646-0.007\r\n\t\tC402.445,415.409,402.305,397.986,392.875,390.261z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M392.875,390.261c-1.718-1.407-3.3-2.881-5.138-3.94l-63.629-47.507c-5.775-3.796-11.997-3.689-16.527,0.85\r\n\t\tc-4.131,4.143-4.686,10.369-1.678,15.381l48.959,65.763c0.946,1.494,2.166,2.799,3.366,4.195c7.802,9.071,25.08,9.588,34.646-0.007\r\n\t\tC402.445,415.409,402.305,397.986,392.875,390.261z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "372.511,335.018 372.509,335.018 372.509,335.02 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "372.511,335.018 372.509,335.018 372.509,335.02 \t" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M435.428,322.475l-59.521-2.284c-3.891-0.558-7.4,2.053-8.065,6.011c-0.604,3.611,1.347,7.138,4.668,8.816l0.013-0.039\r\n\t\tc0.041,0.019,0.062,0.006,0.105,0.025l57.717,17.756c8.289,1.93,17.656-2.343,17.656-11.648\r\n\t\tC448,329.328,444.917,323.667,435.428,322.475z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M435.428,322.475l-59.521-2.284c-3.891-0.558-7.4,2.053-8.065,6.011c-0.604,3.611,1.347,7.138,4.668,8.816l0.013-0.039\r\n\t\tc0.041,0.019,0.062,0.006,0.105,0.025l57.717,17.756c8.289,1.93,17.656-2.343,17.656-11.648\r\n\t\tC448,329.328,444.917,323.667,435.428,322.475z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "139.222,335.02 139.222,335.018 139.22,335.018 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "139.222,335.02 139.222,335.018 139.22,335.018 \t" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M139.209,334.979l0.013,0.039c3.321-1.679,5.272-5.205,4.668-8.816c-0.665-3.958-4.175-6.568-8.065-6.011l-59.521,2.284\r\n\t\tC66.813,323.667,64,329.328,64,341.111c0,9.306,9.098,13.578,17.387,11.648l57.717-17.756\r\n\t\tC139.146,334.984,139.168,334.997,139.209,334.979z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M139.209,334.979l0.013,0.039c3.321-1.679,5.272-5.205,4.668-8.816c-0.665-3.958-4.175-6.568-8.065-6.011l-59.521,2.284\r\n\t\tC66.813,323.667,64,329.328,64,341.111c0,9.306,9.098,13.578,17.387,11.648l57.717-17.756\r\n\t\tC139.146,334.984,139.168,334.997,139.209,334.979z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M187.903,338.807l-63.597,47.431c-1.838,1.057-3.569,2.362-5.137,3.931c-9.563,9.567-9.566,25.088-0.004,34.65\r\n\t\tc9.561,9.571,25.055,9.578,34.618,0.007c1.3-1.299,2.405-2.694,3.352-4.185L206.097,355c3.007-5,2.452-11.213-1.677-15.346\r\n\t\tC199.893,335.126,192.712,334.762,187.903,338.807z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M187.903,338.807l-63.597,47.431c-1.838,1.057-3.569,2.362-5.137,3.931c-9.563,9.567-9.566,25.088-0.004,34.65\r\n\t\tc9.561,9.571,25.055,9.578,34.618,0.007c1.3-1.299,2.405-2.694,3.352-4.185L206.097,355c3.007-5,2.452-11.213-1.677-15.346\r\n\t\tC199.893,335.126,192.712,334.762,187.903,338.807z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M352,128c0-61-72.35-96-96-96c12.017,85.553-101.667,119.667-112,192s48,96,48,96\r\n\t\tc16.333-59.896,72.386-79.997,109.667-105.667C342.333,186.333,352,160.061,352,128z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M352,128c0-61-72.35-96-96-96c12.017,85.553-101.667,119.667-112,192s48,96,48,96\r\n\t\tc16.333-59.896,72.386-79.997,109.667-105.667C342.333,186.333,352,160.061,352,128z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M352,256c5.03-15.613,4.91-49,0-64c-8.999,18.5-26.287,34.3-47.186,48.689c-8.584,5.911-19.859,11.443-28.83,16.797\r\n\t\tc-18.714,11.165-34.984,21.848-47.329,36.4C240.001,311.25,256.973,320,272,320C307.999,320,336,305.662,352,256z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M352,256c5.03-15.613,4.91-49,0-64c-8.999,18.5-26.287,34.3-47.186,48.689c-8.584,5.911-19.859,11.443-28.83,16.797\r\n\t\tc-18.714,11.165-34.984,21.848-47.329,36.4C240.001,311.25,256.973,320,272,320C307.999,320,336,305.662,352,256z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M152.037,160c11.722-15.952,24.856-25.209,38.19-38.362c13.436-13.254,22.077-22.471,27.464-33.173\r\n\t\tC207.025,67.134,189.842,61.857,176,64c2.333,30.334-29.97,46.567-32,68.657C142.773,146,146.5,156,152.037,160z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M152.037,160c11.722-15.952,24.856-25.209,38.19-38.362c13.436-13.254,22.077-22.471,27.464-33.173\r\n\t\tC207.025,67.134,189.842,61.857,176,64c2.333,30.334-29.97,46.567-32,68.657C142.773,146,146.5,156,152.037,160z" + }, + "children": [] + }] + }] + }] +}; +exports.bonfire = bonfire; \ No newline at end of file diff --git a/dist/ionicons/bookmark.js b/dist/ionicons/bookmark.js new file mode 100644 index 000000000..5f12e869f --- /dev/null +++ b/dist/ionicons/bookmark.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bookmark = void 0; +var bookmark = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M344,64H168c-4.4,0-8,3.6-8,8v56h192V72C352,67.6,348.4,64,344,64z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M344,64H168c-4.4,0-8,3.6-8,8v56h192V72C352,67.6,348.4,64,344,64z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "160,448 256,352 352,448 352,144 160,144 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "160,448 256,352 352,448 352,144 160,144 \t" + }, + "children": [] + }] + }] + }] +}; +exports.bookmark = bookmark; \ No newline at end of file diff --git a/dist/ionicons/bowtie.js b/dist/ionicons/bowtie.js new file mode 100644 index 000000000..c8991b2d8 --- /dev/null +++ b/dist/ionicons/bowtie.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bowtie = void 0; +var bowtie = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M223.955,212.011c0,0,8.054-4.679,19.985-7.011c21.318-4.166,39.472-5.5,47.466,8.5c9.777,17.124,18.402,53.417,16.488,85.5\r\n\tc-1,16.75-4.622,22.125-4.622,22.125s-15.333,9.525-47.341,6.875c-34.725-2.875-39.971-15.004-39.971-15.004\r\n\ts4.497-11.305,7.995-42.499C227.452,239.303,223.955,212.011,223.955,212.011z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M183.984,285c12.546-3.323,23.03-7.189,27.659-8.985c0.693-4.707,1.28-9.718,1.694-15.015\r\n\t\tc0.271-3.461,0.465-6.754,0.602-9.896c-6.854-2.333-13.534-4.851-28.769-10.104c-38.66-13.333-57.146-17-57.146-17\r\n\t\ts14.24-2.5,42.219,3c19.986,3.929,34.392,9.5,43.947,14.333c0.771-15.999-2.477-32.583-2.477-32.583\r\n\t\tC189.729,168.5,119.53,112,84.368,112C57.888,112,32,180.5,32,256s23.03,144,51.51,144c33.356,0,116.463-80,116.463-80\r\n\t\ts5.738-12.578,9.879-33.572c-18.788,5.198-63.84,8.572-63.84,8.572S166.996,289.5,183.984,285z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M183.984,285c12.546-3.323,23.03-7.189,27.659-8.985c0.693-4.707,1.28-9.718,1.694-15.015\r\n\t\tc0.271-3.461,0.465-6.754,0.602-9.896c-6.854-2.333-13.534-4.851-28.769-10.104c-38.66-13.333-57.146-17-57.146-17\r\n\t\ts14.24-2.5,42.219,3c19.986,3.929,34.392,9.5,43.947,14.333c0.771-15.999-2.477-32.583-2.477-32.583\r\n\t\tC189.729,168.5,119.53,112,84.368,112C57.888,112,32,180.5,32,256s23.03,144,51.51,144c33.356,0,116.463-80,116.463-80\r\n\t\ts5.738-12.578,9.879-33.572c-18.788,5.198-63.84,8.572-63.84,8.572S166.996,289.5,183.984,285z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M427.632,112c-36.37,0-102.363,56.5-124.348,96.75l-0.761,1.375c0,0,1.389,2.527,1.873,3.375\r\n\t\tc3.424,5.996,6.704,14.348,9.442,24.041c8.115-2.805,23.599-8.164,37.523-13.041c19.985-7,34.975-9.5,34.975-9.5\r\n\t\ts-52.982,23.741-69.605,34.264c2.169,10.159,3.693,21.199,4.218,32.242c5.423,2.216,16.551,6.475,29.914,9.994\r\n\t\tc18.986,5,40.398,11.5,40.398,11.5s-54.202-5.27-70.114-12.522c-0.013,2.862-0.095,5.709-0.263,8.522\r\n\t\tc-0.997,16.719-4.608,22.104-4.622,22.124C323.883,331.667,391.262,400,428.49,400C456.97,400,480,331.5,480,256\r\n\t\tS454.112,112,427.632,112z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M427.632,112c-36.37,0-102.363,56.5-124.348,96.75l-0.761,1.375c0,0,1.389,2.527,1.873,3.375\r\n\t\tc3.424,5.996,6.704,14.348,9.442,24.041c8.115-2.805,23.599-8.164,37.523-13.041c19.985-7,34.975-9.5,34.975-9.5\r\n\t\ts-52.982,23.741-69.605,34.264c2.169,10.159,3.693,21.199,4.218,32.242c5.423,2.216,16.551,6.475,29.914,9.994\r\n\t\tc18.986,5,40.398,11.5,40.398,11.5s-54.202-5.27-70.114-12.522c-0.013,2.862-0.095,5.709-0.263,8.522\r\n\t\tc-0.997,16.719-4.608,22.104-4.622,22.124C323.883,331.667,391.262,400,428.49,400C456.97,400,480,331.5,480,256\r\n\t\tS454.112,112,427.632,112z" + }, + "children": [] + }] + }] + }] +}; +exports.bowtie = bowtie; \ No newline at end of file diff --git a/dist/ionicons/briefcase.js b/dist/ionicons/briefcase.js new file mode 100644 index 000000000..e4f09e7b3 --- /dev/null +++ b/dist/ionicons/briefcase.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.briefcase = void 0; +var briefcase = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M272,272h-32v-8H32v176c0,4.4,3.3,8,7.8,8h432.5c4.4,0,7.7-3.6,7.7-8V264H272V272z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M272,272h-32v-8H32v176c0,4.4,3.3,8,7.8,8h432.5c4.4,0,7.7-3.6,7.7-8V264H272V272z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M472.2,144H352v-30.7C351,85.1,330.3,64,300.8,64h-89.6c-29.4,0-50.2,21.1-51.2,49.3V144H39.8c-4.4,0-7.8,3.6-7.8,8v96h208\r\n\t\tv-8h32v8h208v-96C480,147.6,476.7,144,472.2,144z M320,116.2c0,0.3,0,0.6,0,1V144H192v-26.8c0-0.4,0-0.7,0-1c0-0.3,0-0.6,0-1\r\n\t\tc0-9.7,8.6-19.2,18.8-19.2h90.4c10.1,0,18.8,9.4,18.8,19.2C320,115.6,320,115.9,320,116.2z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M472.2,144H352v-30.7C351,85.1,330.3,64,300.8,64h-89.6c-29.4,0-50.2,21.1-51.2,49.3V144H39.8c-4.4,0-7.8,3.6-7.8,8v96h208\r\n\t\tv-8h32v8h208v-96C480,147.6,476.7,144,472.2,144z M320,116.2c0,0.3,0,0.6,0,1V144H192v-26.8c0-0.4,0-0.7,0-1c0-0.3,0-0.6,0-1\r\n\t\tc0-9.7,8.6-19.2,18.8-19.2h90.4c10.1,0,18.8,9.4,18.8,19.2C320,115.6,320,115.9,320,116.2z" + }, + "children": [] + }] + }] + }] +}; +exports.briefcase = briefcase; \ No newline at end of file diff --git a/dist/ionicons/bug.js b/dist/ionicons/bug.js new file mode 100644 index 000000000..58339097b --- /dev/null +++ b/dist/ionicons/bug.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bug = void 0; +var bug = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M374.64,127.327C345.365,88.512,303.062,64,256,64s-89.365,24.512-118.64,63.327c6.354,15.64,15.833,30,28.13,42.297\r\n\t\tc24.176,24.176,56.319,37.49,90.51,37.49s66.334-13.314,90.51-37.49C358.807,157.327,368.286,142.966,374.64,127.327z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M374.64,127.327C345.365,88.512,303.062,64,256,64s-89.365,24.512-118.64,63.327c6.354,15.64,15.833,30,28.13,42.297\r\n\t\tc24.176,24.176,56.319,37.49,90.51,37.49s66.334-13.314,90.51-37.49C358.807,157.327,368.286,142.966,374.64,127.327z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M126.836,142.824c-1.725,2.827-3.396,5.703-4.992,8.644c-2.926-1.84-5.319-3.74-7.745-5.773\r\n\t\tc-1.171-0.981-2.954-3.949-4.546-7.35c5.41-11.314,1.181-25.037-9.914-31.261c-11.561-6.484-26.188-2.372-32.674,9.189\r\n\t\tc-6.485,11.56-2.371,26.188,9.187,32.673c1.251,0.702,2.539,1.272,3.847,1.729c2.816,6.269,7.32,14.331,13.548,19.547\r\n\t\tc4.184,3.507,8.792,7.117,15.204,10.674c-7.195,20.259-11.576,42.303-12.545,65.427c-11.026,0.207-18.619,2.1-25.474,4.122\r\n\t\tc-4.16,1.227-8.192,3.395-11.823,5.852c-0.954-0.115-1.923-0.182-2.908-0.182c-13.255,0-24,10.745-24,24s10.745,24,24,24\r\n\t\tc12.93,0,23.467-10.227,23.976-23.032c5.046-1.482,9.888-2.659,17.095-2.774c3.167,33.015,13.304,63.483,28.613,89.224\r\n\t\tc-14.166,11.006-22.882,23.016-26.605,36.317c0,0-0.75,0.438-1.873,1.366c-0.982,0.794-1.932,1.65-2.804,2.619\r\n\t\tc-8.865,9.855-8.062,25.031,1.793,33.895c9.854,8.865,25.028,8.062,33.893-1.793c8.087-8.988,8.095-22.381,0.558-31.395\r\n\t\tc3.074-5.562,6.236-9.014,13.67-14.961C171.368,425.235,207.723,445.619,248,448V222.872\r\n\t\tC194.764,219.954,149.229,188.138,126.836,142.824z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M126.836,142.824c-1.725,2.827-3.396,5.703-4.992,8.644c-2.926-1.84-5.319-3.74-7.745-5.773\r\n\t\tc-1.171-0.981-2.954-3.949-4.546-7.35c5.41-11.314,1.181-25.037-9.914-31.261c-11.561-6.484-26.188-2.372-32.674,9.189\r\n\t\tc-6.485,11.56-2.371,26.188,9.187,32.673c1.251,0.702,2.539,1.272,3.847,1.729c2.816,6.269,7.32,14.331,13.548,19.547\r\n\t\tc4.184,3.507,8.792,7.117,15.204,10.674c-7.195,20.259-11.576,42.303-12.545,65.427c-11.026,0.207-18.619,2.1-25.474,4.122\r\n\t\tc-4.16,1.227-8.192,3.395-11.823,5.852c-0.954-0.115-1.923-0.182-2.908-0.182c-13.255,0-24,10.745-24,24s10.745,24,24,24\r\n\t\tc12.93,0,23.467-10.227,23.976-23.032c5.046-1.482,9.888-2.659,17.095-2.774c3.167,33.015,13.304,63.483,28.613,89.224\r\n\t\tc-14.166,11.006-22.882,23.016-26.605,36.317c0,0-0.75,0.438-1.873,1.366c-0.982,0.794-1.932,1.65-2.804,2.619\r\n\t\tc-8.865,9.855-8.062,25.031,1.793,33.895c9.854,8.865,25.028,8.062,33.893-1.793c8.087-8.988,8.095-22.381,0.558-31.395\r\n\t\tc3.074-5.562,6.236-9.014,13.67-14.961C171.368,425.235,207.723,445.619,248,448V222.872\r\n\t\tC194.764,219.954,149.229,188.138,126.836,142.824z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M456,256.114c-0.985,0-1.954,0.066-2.908,0.182c-3.631-2.457-7.663-4.625-11.823-5.852\r\n\t\tc-6.854-2.021-14.447-3.915-25.474-4.122c-0.969-23.125-5.35-45.168-12.545-65.427c6.412-3.557,11.021-7.167,15.204-10.674\r\n\t\tc6.228-5.216,10.731-13.278,13.548-19.547c1.308-0.458,2.596-1.028,3.847-1.729c11.558-6.485,15.672-21.114,9.187-32.673\r\n\t\tc-6.485-11.561-21.113-15.673-32.674-9.189c-11.095,6.225-15.324,19.947-9.914,31.261c-1.592,3.401-3.375,6.369-4.546,7.35\r\n\t\tc-2.426,2.033-4.819,3.933-7.745,5.773c-1.596-2.941-3.268-5.817-4.992-8.644c-22.393,45.314-67.928,77.13-121.164,80.048V448\r\n\t\tc40.277-2.381,76.632-22.765,103.686-54.42c7.434,5.947,10.596,9.399,13.67,14.961c-7.537,9.014-7.529,22.406,0.558,31.395\r\n\t\tc8.864,9.855,24.038,10.658,33.893,1.793c9.854-8.863,10.658-24.039,1.793-33.895c-0.872-0.969-1.821-1.825-2.804-2.619\r\n\t\tc-1.123-0.929-1.873-1.366-1.873-1.366c-3.724-13.302-12.439-25.312-26.605-36.317c15.31-25.74,25.446-56.209,28.613-89.224\r\n\t\tc7.207,0.115,12.049,1.292,17.095,2.774c0.509,12.806,11.046,23.032,23.976,23.032c13.255,0,24-10.745,24-24\r\n\t\tS469.255,256.114,456,256.114z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M456,256.114c-0.985,0-1.954,0.066-2.908,0.182c-3.631-2.457-7.663-4.625-11.823-5.852\r\n\t\tc-6.854-2.021-14.447-3.915-25.474-4.122c-0.969-23.125-5.35-45.168-12.545-65.427c6.412-3.557,11.021-7.167,15.204-10.674\r\n\t\tc6.228-5.216,10.731-13.278,13.548-19.547c1.308-0.458,2.596-1.028,3.847-1.729c11.558-6.485,15.672-21.114,9.187-32.673\r\n\t\tc-6.485-11.561-21.113-15.673-32.674-9.189c-11.095,6.225-15.324,19.947-9.914,31.261c-1.592,3.401-3.375,6.369-4.546,7.35\r\n\t\tc-2.426,2.033-4.819,3.933-7.745,5.773c-1.596-2.941-3.268-5.817-4.992-8.644c-22.393,45.314-67.928,77.13-121.164,80.048V448\r\n\t\tc40.277-2.381,76.632-22.765,103.686-54.42c7.434,5.947,10.596,9.399,13.67,14.961c-7.537,9.014-7.529,22.406,0.558,31.395\r\n\t\tc8.864,9.855,24.038,10.658,33.893,1.793c9.854-8.863,10.658-24.039,1.793-33.895c-0.872-0.969-1.821-1.825-2.804-2.619\r\n\t\tc-1.123-0.929-1.873-1.366-1.873-1.366c-3.724-13.302-12.439-25.312-26.605-36.317c15.31-25.74,25.446-56.209,28.613-89.224\r\n\t\tc7.207,0.115,12.049,1.292,17.095,2.774c0.509,12.806,11.046,23.032,23.976,23.032c13.255,0,24-10.745,24-24\r\n\t\tS469.255,256.114,456,256.114z" + }, + "children": [] + }] + }] + }] +}; +exports.bug = bug; \ No newline at end of file diff --git a/dist/ionicons/calculator.js b/dist/ionicons/calculator.js new file mode 100644 index 000000000..4cb2ff328 --- /dev/null +++ b/dist/ionicons/calculator.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.calculator = void 0; +var calculator = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M400,32H112c-8.8,0-16,7.2-16,16v416c0,8.8,7.2,16,16,16h288c8.8,0,16-7.2,16-16V48C416,39.2,408.8,32,400,32z M144,208h32\r\n\tv32h-32V208z M144,272h32v32h-32V272z M144,336h32v32h-32V336z M240,432h-96v-32h96V432z M240,368h-32v-32h32V368z M240,304h-32v-32\r\n\th32V304z M240,240h-32v-32h32V240z M304,432h-32v-32h32V432z M304,368h-32v-32h32V368z M304,304h-32v-32h32V304z M304,240h-32v-32\r\n\th32V240z M368,432h-32v-96h32V432z M368,304h-32v-32h32V304z M368,240h-32v-32h32V240z M368,160H144V80h224V160z" + }, + "children": [] + }] +}; +exports.calculator = calculator; \ No newline at end of file diff --git a/dist/ionicons/calendar.js b/dist/ionicons/calendar.js new file mode 100644 index 000000000..39b80462c --- /dev/null +++ b/dist/ionicons/calendar.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.calendar = void 0; +var calendar = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M144,128c17.7,0,32-14.3,32-32V64c0-17.7-14.3-32-32-32s-32,14.3-32,32v32C112,113.7,126.3,128,144,128z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M144,128c17.7,0,32-14.3,32-32V64c0-17.7-14.3-32-32-32s-32,14.3-32,32v32C112,113.7,126.3,128,144,128z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M368,128c17.7,0,32-14.3,32-32V64c0-17.7-14.3-32-32-32s-32,14.3-32,32v32C336,113.7,350.3,128,368,128z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M368,128c17.7,0,32-14.3,32-32V64c0-17.7-14.3-32-32-32s-32,14.3-32,32v32C336,113.7,350.3,128,368,128z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M472,64h-56v40.7c0,22.5-23.2,39.3-47.2,39.3S320,127.2,320,104.7V64H192v40.7c0,22.5-24,39.3-48,39.3s-48-16.8-48-39.3V64\r\n\t\tH40c-4.4,0-8,3.6-8,8v400c0,4.4,3.6,8,8,8h432c4.4,0,8-3.6,8-8V72C480,67.6,476.4,64,472,64z M432,432H80V176h352V432z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M472,64h-56v40.7c0,22.5-23.2,39.3-47.2,39.3S320,127.2,320,104.7V64H192v40.7c0,22.5-24,39.3-48,39.3s-48-16.8-48-39.3V64\r\n\t\tH40c-4.4,0-8,3.6-8,8v400c0,4.4,3.6,8,8,8h432c4.4,0,8-3.6,8-8V72C480,67.6,476.4,64,472,64z M432,432H80V176h352V432z" + }, + "children": [] + }] + }] + }] +}; +exports.calendar = calendar; \ No newline at end of file diff --git a/dist/ionicons/camera.js b/dist/ionicons/camera.js new file mode 100644 index 000000000..1599db4e8 --- /dev/null +++ b/dist/ionicons/camera.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.camera = void 0; +var camera = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M430.4,147h-67.5l-40.4-40.8c0,0-0.2-0.2-0.3-0.2l-0.2-0.2v0c-6-6-14.1-9.8-23.3-9.8h-84c-9.8,0-18.5,4.2-24.6,10.9l0,0.1\r\n\t\tl-39.5,40H81.6C63,147,48,161.6,48,180.2v202.1c0,18.6,15,33.7,33.6,33.7h348.8c18.5,0,33.6-15.1,33.6-33.7V180.2\r\n\t\tC464,161.6,448.9,147,430.4,147z M256,365.5c-50.9,0-92.4-41.6-92.4-92.6c0-51.1,41.5-92.6,92.4-92.6c51,0,92.4,41.5,92.4,92.6\r\n\t\tC348.4,323.9,307,365.5,256,365.5z M424.1,200.5c-7.7,0-14-6.3-14-14.1s6.3-14.1,14-14.1c7.7,0,14,6.3,14,14.1\r\n\t\tS431.8,200.5,424.1,200.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M430.4,147h-67.5l-40.4-40.8c0,0-0.2-0.2-0.3-0.2l-0.2-0.2v0c-6-6-14.1-9.8-23.3-9.8h-84c-9.8,0-18.5,4.2-24.6,10.9l0,0.1\r\n\t\tl-39.5,40H81.6C63,147,48,161.6,48,180.2v202.1c0,18.6,15,33.7,33.6,33.7h348.8c18.5,0,33.6-15.1,33.6-33.7V180.2\r\n\t\tC464,161.6,448.9,147,430.4,147z M256,365.5c-50.9,0-92.4-41.6-92.4-92.6c0-51.1,41.5-92.6,92.4-92.6c51,0,92.4,41.5,92.4,92.6\r\n\t\tC348.4,323.9,307,365.5,256,365.5z M424.1,200.5c-7.7,0-14-6.3-14-14.1s6.3-14.1,14-14.1c7.7,0,14,6.3,14,14.1\r\n\t\tS431.8,200.5,424.1,200.5z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,202.9c-38.6,0-69.8,31.3-69.8,70c0,38.6,31.2,70,69.8,70c38.5,0,69.8-31.3,69.8-70C325.8,234.2,294.5,202.9,256,202.9\r\n\t\tz" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,202.9c-38.6,0-69.8,31.3-69.8,70c0,38.6,31.2,70,69.8,70c38.5,0,69.8-31.3,69.8-70C325.8,234.2,294.5,202.9,256,202.9\r\n\t\tz" + }, + "children": [] + }] + }] + }] +}; +exports.camera = camera; \ No newline at end of file diff --git a/dist/ionicons/card.js b/dist/ionicons/card.js new file mode 100644 index 000000000..3525c652d --- /dev/null +++ b/dist/ionicons/card.js @@ -0,0 +1,81 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.card = void 0; +var card = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M452,96H60c-15.5,0-27.9,12.5-28,28l0,0v0.3v263.4v0.3l0,0c0.2,15.5,12.5,28,28,28h392c15.6,0,28-12.7,28-28.3v0V124.3v0\r\n\t\tC480,108.7,467.6,96,452,96z M77.1,128h357.7c6.9,0,12.1,5.1,13.1,12v20H64v-20.3C65,132.9,70.3,128,77.1,128z M434.9,384H77.1\r\n\t\tc-6.9,0-12.1-4.9-13.1-11.7V256h384v116C447,378.9,441.7,384,434.9,384z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M452,96H60c-15.5,0-27.9,12.5-28,28l0,0v0.3v263.4v0.3l0,0c0.2,15.5,12.5,28,28,28h392c15.6,0,28-12.7,28-28.3v0V124.3v0\r\n\t\tC480,108.7,467.6,96,452,96z M77.1,128h357.7c6.9,0,12.1,5.1,13.1,12v20H64v-20.3C65,132.9,70.3,128,77.1,128z M434.9,384H77.1\r\n\t\tc-6.9,0-12.1-4.9-13.1-11.7V256h384v116C447,378.9,441.7,384,434.9,384z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "96", + "y": "304", + "width": "192", + "height": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "96", + "y": "304", + "width": "192", + "height": "16" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "96", + "y": "336", + "width": "96", + "height": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "96", + "y": "336", + "width": "96", + "height": "16" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "352", + "y": "304", + "width": "64", + "height": "48" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "352", + "y": "304", + "width": "64", + "height": "48" + }, + "children": [] + }] + }] + }] +}; +exports.card = card; \ No newline at end of file diff --git a/dist/ionicons/cash.js b/dist/ionicons/cash.js new file mode 100644 index 000000000..8056811da --- /dev/null +++ b/dist/ionicons/cash.js @@ -0,0 +1,99 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cash = void 0; +var cash = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M0,96v256h512V96H0z M192.508,320H80.129c0-26.582-21.549-48.129-48.129-48.129V192c35.346,0,64-28.653,64-64h96.509\r\n\t\tC172.576,151.455,160,185.767,160,224S172.576,296.545,192.508,320z M298.089,261.248c-2.582,4.182-5.978,7.602-10.189,10.257\r\n\t\tc-4.214,2.655-9.004,4.607-14.375,5.835c-2.812,0.644-5.654,1.119-8.524,1.432V288h-18v-9.43c-2.768-0.357-5.461-0.863-8.072-1.541\r\n\t\tc-5.688-1.475-10.641-3.659-14.851-6.709c-4.214-3.047-7.584-6.803-10.11-11.573C211.548,254.186,210.24,248,210.04,243h19.735\r\n\t\tc0.096,3,0.828,6.532,2.201,9.184c1.473,2.853,3.526,4.883,6.16,6.7c2.572,1.78,5.532,3.082,8.863,3.919v-34.358\r\n\t\tc-2.436-0.601-5.016-1.245-7.758-1.938c-4.846-1.18-8.873-2.729-12.085-4.646c-3.214-1.918-5.766-4.057-7.661-6.417\r\n\t\tc-1.896-2.359-3.238-4.867-4.028-7.522c-0.791-2.656-1.186-5.358-1.186-8.113c0-5.31,1.186-9.905,3.556-13.791\r\n\t\tc2.368-3.883,5.502-7.104,9.398-9.662c3.895-2.556,8.319-4.448,13.27-5.679c2.154-0.534,4.319-0.945,6.494-1.248V160h18v9.499\r\n\t\tc2.46,0.353,4.856,0.838,7.18,1.473c5.215,1.427,9.796,3.563,13.744,6.414c3.95,2.854,7.083,6.364,9.4,10.542\r\n\t\tc2.109,3.811,3.258,8.072,3.445,13.072h-19.866c-0.753-6-3.175-10.326-7.274-12.923c-1.966-1.246-4.186-2.196-6.629-2.887v30.368\r\n\t\tc2.589,0.639,5.15,1.268,7.654,1.878c3.421,0.836,5.87,1.453,7.346,1.844c3.686,1.083,6.897,2.558,9.637,4.425\r\n\t\tc2.737,1.869,5.028,4.008,6.873,6.417c1.841,2.411,3.21,4.992,4.107,7.744c0.893,2.753,1.343,5.51,1.343,8.262\r\n\t\tC301.96,252.027,300.668,257.07,298.089,261.248z M480,271.871c-26,0-48,21.547-48,48.129H319.491\r\n\t\tC339.424,296.545,352,262.233,352,224s-12.576-72.545-32.51-96H416c0,35.347,28.653,64,64,64V271.871z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M0,96v256h512V96H0z M192.508,320H80.129c0-26.582-21.549-48.129-48.129-48.129V192c35.346,0,64-28.653,64-64h96.509\r\n\t\tC172.576,151.455,160,185.767,160,224S172.576,296.545,192.508,320z M298.089,261.248c-2.582,4.182-5.978,7.602-10.189,10.257\r\n\t\tc-4.214,2.655-9.004,4.607-14.375,5.835c-2.812,0.644-5.654,1.119-8.524,1.432V288h-18v-9.43c-2.768-0.357-5.461-0.863-8.072-1.541\r\n\t\tc-5.688-1.475-10.641-3.659-14.851-6.709c-4.214-3.047-7.584-6.803-10.11-11.573C211.548,254.186,210.24,248,210.04,243h19.735\r\n\t\tc0.096,3,0.828,6.532,2.201,9.184c1.473,2.853,3.526,4.883,6.16,6.7c2.572,1.78,5.532,3.082,8.863,3.919v-34.358\r\n\t\tc-2.436-0.601-5.016-1.245-7.758-1.938c-4.846-1.18-8.873-2.729-12.085-4.646c-3.214-1.918-5.766-4.057-7.661-6.417\r\n\t\tc-1.896-2.359-3.238-4.867-4.028-7.522c-0.791-2.656-1.186-5.358-1.186-8.113c0-5.31,1.186-9.905,3.556-13.791\r\n\t\tc2.368-3.883,5.502-7.104,9.398-9.662c3.895-2.556,8.319-4.448,13.27-5.679c2.154-0.534,4.319-0.945,6.494-1.248V160h18v9.499\r\n\t\tc2.46,0.353,4.856,0.838,7.18,1.473c5.215,1.427,9.796,3.563,13.744,6.414c3.95,2.854,7.083,6.364,9.4,10.542\r\n\t\tc2.109,3.811,3.258,8.072,3.445,13.072h-19.866c-0.753-6-3.175-10.326-7.274-12.923c-1.966-1.246-4.186-2.196-6.629-2.887v30.368\r\n\t\tc2.589,0.639,5.15,1.268,7.654,1.878c3.421,0.836,5.87,1.453,7.346,1.844c3.686,1.083,6.897,2.558,9.637,4.425\r\n\t\tc2.737,1.869,5.028,4.008,6.873,6.417c1.841,2.411,3.21,4.992,4.107,7.744c0.893,2.753,1.343,5.51,1.343,8.262\r\n\t\tC301.96,252.027,300.668,257.07,298.089,261.248z M480,271.871c-26,0-48,21.547-48,48.129H319.491\r\n\t\tC339.424,296.545,352,262.233,352,224s-12.576-72.545-32.51-96H416c0,35.347,28.653,64,64,64V271.871z" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "96", + "cy": "224", + "r": "32" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "96", + "cy": "224", + "r": "32" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "416", + "cy": "224", + "r": "32" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "416", + "cy": "224", + "r": "32" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M272.893,235.21c-2.395-0.823-5.029-1.618-7.893-2.389v30.856c1.592-0.23,3.069-0.547,4.416-0.959\r\n\t\tc3.053-0.934,5.529-2.139,7.425-3.613s3.264-3.171,4.107-5.089c0.842-1.917,1.263-3.858,1.263-5.827\r\n\t\tc0-4.031-0.975-7.006-2.921-8.924C277.34,237.349,275.206,235.999,272.893,235.21z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M272.893,235.21c-2.395-0.823-5.029-1.618-7.893-2.389v30.856c1.592-0.23,3.069-0.547,4.416-0.959\r\n\t\tc3.053-0.934,5.529-2.139,7.425-3.613s3.264-3.171,4.107-5.089c0.842-1.917,1.263-3.858,1.263-5.827\r\n\t\tc0-4.031-0.975-7.006-2.921-8.924C277.34,237.349,275.206,235.999,272.893,235.21z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M236.004,190.959c-1.318,1.771-1.975,3.982-1.975,6.638c0,3.738,1.236,6.663,3.712,8.776\r\n\t\tc2.377,2.034,5.468,3.583,9.259,4.661v-26.356c-2.18,0.45-4.192,1.135-6.02,2.078C238.979,187.788,237.32,189.189,236.004,190.959z\r\n\t\t" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M236.004,190.959c-1.318,1.771-1.975,3.982-1.975,6.638c0,3.738,1.236,6.663,3.712,8.776\r\n\t\tc2.377,2.034,5.468,3.583,9.259,4.661v-26.356c-2.18,0.45-4.192,1.135-6.02,2.078C238.979,187.788,237.32,189.189,236.004,190.959z\r\n\t\t" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "y": "384", + "width": "512", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "y": "384", + "width": "512", + "height": "32" + }, + "children": [] + }] + }] + }] +}; +exports.cash = cash; \ No newline at end of file diff --git a/dist/ionicons/chatbox.js b/dist/ionicons/chatbox.js new file mode 100644 index 000000000..dd9def081 --- /dev/null +++ b/dist/ionicons/chatbox.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.chatbox = void 0; +var chatbox = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M124.3,400H277c14.4,0,14.4,0.1,21.3,5.2S384,464,384,464v-64h3.7c42.2,0,76.3-31.8,76.3-71.4V119.7\r\n\tc0-39.6-34.2-71.7-76.3-71.7H124.3C82.2,48,48,80.1,48,119.7v208.9C48,368.2,82.2,400,124.3,400z" + }, + "children": [] + }] +}; +exports.chatbox = chatbox; \ No newline at end of file diff --git a/dist/ionicons/chatboxWorking.js b/dist/ionicons/chatboxWorking.js new file mode 100644 index 000000000..bf4ef62c0 --- /dev/null +++ b/dist/ionicons/chatboxWorking.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.chatboxWorking = void 0; +var chatboxWorking = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M124.3,400H277c14.4,0,14.4,0.1,21.3,5.2S384,464,384,464v-64h3.7c42.2,0,76.3-31.8,76.3-71.4V119.7\r\n\tc0-39.6-34.2-71.7-76.3-71.7H124.3C82.2,48,48,80.1,48,119.7v208.9C48,368.2,82.2,400,124.3,400z M352.1,192c17.7,0,32,14.3,32,32\r\n\tc0,17.7-14.3,32-32,32c-17.7,0-32-14.3-32-32C320.1,206.3,334.4,192,352.1,192z M256.1,192c17.7,0,32,14.3,32,32\r\n\tc0,17.7-14.3,32-32,32c-17.7,0-32-14.3-32-32C224.1,206.3,238.4,192,256.1,192z M160.1,192c17.7,0,32,14.3,32,32\r\n\tc0,17.7-14.3,32-32,32c-17.7,0-32-14.3-32-32C128.1,206.3,142.4,192,160.1,192z" + }, + "children": [] + }] +}; +exports.chatboxWorking = chatboxWorking; \ No newline at end of file diff --git a/dist/ionicons/chatboxes.js b/dist/ionicons/chatboxes.js new file mode 100644 index 000000000..6146ec9a8 --- /dev/null +++ b/dist/ionicons/chatboxes.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.chatboxes = void 0; +var chatboxes = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M294.1,365.5c-2.6-1.8-7.2-4.5-17.5-4.5H160.5c-34.7,0-64.5-26.1-64.5-59.2V201h-1.8C67.9,201,48,221.5,48,246.5v128.9\r\n\t\tc0,25,21.4,40.6,47.7,40.6H112v48l53.1-45c1.9-1.4,5.3-3,13.2-3h89.8c23,0,47.4-11.4,51.9-32L294.1,365.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M294.1,365.5c-2.6-1.8-7.2-4.5-17.5-4.5H160.5c-34.7,0-64.5-26.1-64.5-59.2V201h-1.8C67.9,201,48,221.5,48,246.5v128.9\r\n\t\tc0,25,21.4,40.6,47.7,40.6H112v48l53.1-45c1.9-1.4,5.3-3,13.2-3h89.8c23,0,47.4-11.4,51.9-32L294.1,365.5z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M401,48H183.7C149,48,128,74.8,128,107.8v69.7V276c0,33.1,28,60,62.7,60h101.1c10.4,0,15,2.3,17.5,4.2L384,400v-64h17\r\n\t\tc34.8,0,63-26.9,63-59.9V107.8C464,74.8,435.8,48,401,48z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M401,48H183.7C149,48,128,74.8,128,107.8v69.7V276c0,33.1,28,60,62.7,60h101.1c10.4,0,15,2.3,17.5,4.2L384,400v-64h17\r\n\t\tc34.8,0,63-26.9,63-59.9V107.8C464,74.8,435.8,48,401,48z" + }, + "children": [] + }] + }] + }] +}; +exports.chatboxes = chatboxes; \ No newline at end of file diff --git a/dist/ionicons/chatbubble.js b/dist/ionicons/chatbubble.js new file mode 100644 index 000000000..27d4155b0 --- /dev/null +++ b/dist/ionicons/chatbubble.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.chatbubble = void 0; +var chatbubble = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,449.4c28.9,0,56.4-5.7,81.3-15.9c0.6-0.3,1.1-0.5,1.7-0.7c0.1,0,0.2,0,0.2-0.1c3.5-1.3,7.3-2,11.2-2\r\n\tc4.3,0,8.4,0.8,12.1,2.4l84,30.9l-22.1-88.4c0-5.3,1.5-10.3,3.9-14.6c0,0,0,0,0,0c0.8-1.3,1.6-2.6,2.5-3.7\r\n\tc20.9-31.3,33-68.5,33-108.4C464,137.9,370.9,48,256,48C141.1,48,48,137.9,48,248.7C48,359.6,141.1,449.4,256,449.4z" + }, + "children": [] + }] +}; +exports.chatbubble = chatbubble; \ No newline at end of file diff --git a/dist/ionicons/chatbubbleWorking.js b/dist/ionicons/chatbubbleWorking.js new file mode 100644 index 000000000..0b056feac --- /dev/null +++ b/dist/ionicons/chatbubbleWorking.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.chatbubbleWorking = void 0; +var chatbubbleWorking = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,449.4c28.9,0,56.4-5.7,81.3-15.9c0.6-0.3,1.1-0.5,1.7-0.7c0.1,0,0.2,0,0.2-0.1c3.5-1.3,7.3-2,11.2-2\r\n\tc4.3,0,8.4,0.8,12.1,2.4l84,30.9l-22.1-88.4c0-5.3,1.5-10.3,3.9-14.6c0,0,0,0,0,0c0.8-1.3,1.6-2.6,2.5-3.7\r\n\tc20.9-31.3,33-68.5,33-108.4C464,137.9,370.9,48,256,48C141.1,48,48,137.9,48,248.7C48,359.6,141.1,449.4,256,449.4z M352,224\r\n\tc17.7,0,32,14.3,32,32c0,17.7-14.3,32-32,32c-17.7,0-32-14.3-32-32C320,238.3,334.3,224,352,224z M256,224c17.7,0,32,14.3,32,32\r\n\tc0,17.7-14.3,32-32,32c-17.7,0-32-14.3-32-32C224,238.3,238.3,224,256,224z M160,224c17.7,0,32,14.3,32,32c0,17.7-14.3,32-32,32\r\n\tc-17.7,0-32-14.3-32-32C128,238.3,142.3,224,160,224z" + }, + "children": [] + }] +}; +exports.chatbubbleWorking = chatbubbleWorking; \ No newline at end of file diff --git a/dist/ionicons/chatbubbles.js b/dist/ionicons/chatbubbles.js new file mode 100644 index 000000000..68f809216 --- /dev/null +++ b/dist/ionicons/chatbubbles.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.chatbubbles = void 0; +var chatbubbles = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M73.3,391C73.3,391,73.3,391,73.3,391c1.8,3,2.8,6.4,2.8,10.2L64,464l56.2-22.1c2.7-1.1,5.6-1.7,8.7-1.7\r\n\t\tc2.8,0,5.5,0.5,8,1.4c0,0,0.1,0,0.2,0c0.4,0.2,0.8,0.3,1.2,0.5c17.8,7.3,37.4,11.4,57.9,11.4c46.3,0,87.6-20.5,114.8-52.6\r\n\t\tc-14.1,3.6-28.9,5.7-44.1,5.7c-95.9,0-173.7-75-173.7-167.5c0-11.8,1.3-23.2,3.7-34.3C66.9,230.9,48,268.6,48,310.6\r\n\t\tc0,28.4,8.6,55.2,23.5,77.5C72.1,388.9,72.7,390,73.3,391z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M73.3,391C73.3,391,73.3,391,73.3,391c1.8,3,2.8,6.4,2.8,10.2L64,464l56.2-22.1c2.7-1.1,5.6-1.7,8.7-1.7\r\n\t\tc2.8,0,5.5,0.5,8,1.4c0,0,0.1,0,0.2,0c0.4,0.2,0.8,0.3,1.2,0.5c17.8,7.3,37.4,11.4,57.9,11.4c46.3,0,87.6-20.5,114.8-52.6\r\n\t\tc-14.1,3.6-28.9,5.7-44.1,5.7c-95.9,0-173.7-75-173.7-167.5c0-11.8,1.3-23.2,3.7-34.3C66.9,230.9,48,268.6,48,310.6\r\n\t\tc0,28.4,8.6,55.2,23.5,77.5C72.1,388.9,72.7,390,73.3,391z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M290.3,48c-83.7,0-153.6,57.2-170,133.2c-2.4,11.1-3.7,22.5-3.7,34.3c0,92.5,77.7,167.5,173.7,167.5\r\n\t\tc15.3,0,30-2.1,44.1-5.7c8.1-2.1,16.1-4.5,23.8-7.6c0.5-0.2,0.9-0.4,1.4-0.6c0.1,0,0.2,0,0.2-0.1c2.9-1.1,6.1-1.7,9.3-1.7\r\n\t\tc3.6,0,7,0.7,10.1,2l68.6,25.8l-17-73.8c0-4.4,1.2-8.6,3.3-12.2c0,0,0,0,0,0c0.6-1.1,1.4-2.1,2.1-3.1\r\n\t\tc17.4-26.1,27.5-57.2,27.5-90.5C464,123,386.3,48,290.3,48z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M290.3,48c-83.7,0-153.6,57.2-170,133.2c-2.4,11.1-3.7,22.5-3.7,34.3c0,92.5,77.7,167.5,173.7,167.5\r\n\t\tc15.3,0,30-2.1,44.1-5.7c8.1-2.1,16.1-4.5,23.8-7.6c0.5-0.2,0.9-0.4,1.4-0.6c0.1,0,0.2,0,0.2-0.1c2.9-1.1,6.1-1.7,9.3-1.7\r\n\t\tc3.6,0,7,0.7,10.1,2l68.6,25.8l-17-73.8c0-4.4,1.2-8.6,3.3-12.2c0,0,0,0,0,0c0.6-1.1,1.4-2.1,2.1-3.1\r\n\t\tc17.4-26.1,27.5-57.2,27.5-90.5C464,123,386.3,48,290.3,48z" + }, + "children": [] + }] + }] + }] +}; +exports.chatbubbles = chatbubbles; \ No newline at end of file diff --git a/dist/ionicons/checkmark.js b/dist/ionicons/checkmark.js new file mode 100644 index 000000000..024f46c86 --- /dev/null +++ b/dist/ionicons/checkmark.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.checkmark = void 0; +var checkmark = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M461.6,109.6l-54.9-43.3c-1.7-1.4-3.8-2.4-6.2-2.4c-2.4,0-4.6,1-6.3,2.5L194.5,323c0,0-78.5-75.5-80.7-77.7\r\n\tc-2.2-2.2-5.1-5.9-9.5-5.9c-4.4,0-6.4,3.1-8.7,5.4c-1.7,1.8-29.7,31.2-43.5,45.8c-0.8,0.9-1.3,1.4-2,2.1c-1.2,1.7-2,3.6-2,5.7\r\n\tc0,2.2,0.8,4,2,5.7l2.8,2.6c0,0,139.3,133.8,141.6,136.1c2.3,2.3,5.1,5.2,9.2,5.2c4,0,7.3-4.3,9.2-6.2L462,121.8\r\n\tc1.2-1.7,2-3.6,2-5.8C464,113.5,463,111.4,461.6,109.6z" + }, + "children": [] + }] +}; +exports.checkmark = checkmark; \ No newline at end of file diff --git a/dist/ionicons/checkmarkCircled.js b/dist/ionicons/checkmarkCircled.js new file mode 100644 index 000000000..1ee8d72c0 --- /dev/null +++ b/dist/ionicons/checkmarkCircled.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.checkmarkCircled = void 0; +var checkmarkCircled = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,32C132.3,32,32,132.3,32,256c0,123.7,100.3,224,224,224c123.7,0,224-100.3,224-224C480,132.3,379.7,32,256,32z\r\n\t\t M370.9,181.1L231.8,359.6c-1.1,1.1-2.9,3.5-5.1,3.5c-2.3,0-3.8-1.6-5.1-2.9c-1.3-1.3-78.9-75.9-78.9-75.9l-1.5-1.5\r\n\t\tc-0.6-0.9-1.1-2-1.1-3.2c0-1.2,0.5-2.3,1.1-3.2c0.4-0.4,0.7-0.7,1.1-1.2c7.7-8.1,23.3-24.5,24.3-25.5c1.3-1.3,2.4-3,4.8-3\r\n\t\tc2.5,0,4.1,2.1,5.3,3.3c1.2,1.2,45,43.3,45,43.3l111.3-143c1-0.8,2.2-1.4,3.5-1.4c1.3,0,2.5,0.5,3.5,1.3l30.6,24.1\r\n\t\tc0.8,1,1.3,2.2,1.3,3.5C372,179.1,371.5,180.2,370.9,181.1z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,32C132.3,32,32,132.3,32,256c0,123.7,100.3,224,224,224c123.7,0,224-100.3,224-224C480,132.3,379.7,32,256,32z\r\n\t\t M370.9,181.1L231.8,359.6c-1.1,1.1-2.9,3.5-5.1,3.5c-2.3,0-3.8-1.6-5.1-2.9c-1.3-1.3-78.9-75.9-78.9-75.9l-1.5-1.5\r\n\t\tc-0.6-0.9-1.1-2-1.1-3.2c0-1.2,0.5-2.3,1.1-3.2c0.4-0.4,0.7-0.7,1.1-1.2c7.7-8.1,23.3-24.5,24.3-25.5c1.3-1.3,2.4-3,4.8-3\r\n\t\tc2.5,0,4.1,2.1,5.3,3.3c1.2,1.2,45,43.3,45,43.3l111.3-143c1-0.8,2.2-1.4,3.5-1.4c1.3,0,2.5,0.5,3.5,1.3l30.6,24.1\r\n\t\tc0.8,1,1.3,2.2,1.3,3.5C372,179.1,371.5,180.2,370.9,181.1z" + }, + "children": [] + }] + }] + }] +}; +exports.checkmarkCircled = checkmarkCircled; \ No newline at end of file diff --git a/dist/ionicons/checkmarkRound.js b/dist/ionicons/checkmarkRound.js new file mode 100644 index 000000000..e8e8e7e53 --- /dev/null +++ b/dist/ionicons/checkmarkRound.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.checkmarkRound = void 0; +var checkmarkRound = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M448,71.9c-17.3-13.4-41.5-9.3-54.1,9.1L214,344.2l-99.1-107.3c-14.6-16.6-39.1-17.4-54.7-1.8\r\n\tc-15.6,15.5-16.4,41.6-1.7,58.1c0,0,120.4,133.6,137.7,147c17.3,13.4,41.5,9.3,54.1-9.1l206.3-301.7\r\n\tC469.2,110.9,465.3,85.2,448,71.9z" + }, + "children": [] + }] +}; +exports.checkmarkRound = checkmarkRound; \ No newline at end of file diff --git a/dist/ionicons/chevronDown.js b/dist/ionicons/chevronDown.js new file mode 100644 index 000000000..282e8de7c --- /dev/null +++ b/dist/ionicons/chevronDown.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.chevronDown = void 0; +var chevronDown = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,298.3L256,298.3L256,298.3l174.2-167.2c4.3-4.2,11.4-4.1,15.8,0.2l30.6,29.9c4.4,4.3,4.5,11.3,0.2,15.5L264.1,380.9\r\n\tc-2.2,2.2-5.2,3.2-8.1,3c-3,0.1-5.9-0.9-8.1-3L35.2,176.7c-4.3-4.2-4.2-11.2,0.2-15.5L66,131.3c4.4-4.3,11.5-4.4,15.8-0.2L256,298.3\r\n\tz" + }, + "children": [] + }] +}; +exports.chevronDown = chevronDown; \ No newline at end of file diff --git a/dist/ionicons/chevronLeft.js b/dist/ionicons/chevronLeft.js new file mode 100644 index 000000000..d13f0cb7e --- /dev/null +++ b/dist/ionicons/chevronLeft.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.chevronLeft = void 0; +var chevronLeft = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M213.7,256L213.7,256L213.7,256L380.9,81.9c4.2-4.3,4.1-11.4-0.2-15.8l-29.9-30.6c-4.3-4.4-11.3-4.5-15.5-0.2L131.1,247.9\r\n\tc-2.2,2.2-3.2,5.2-3,8.1c-0.1,3,0.9,5.9,3,8.1l204.2,212.7c4.2,4.3,11.2,4.2,15.5-0.2l29.9-30.6c4.3-4.4,4.4-11.5,0.2-15.8\r\n\tL213.7,256z" + }, + "children": [] + }] +}; +exports.chevronLeft = chevronLeft; \ No newline at end of file diff --git a/dist/ionicons/chevronRight.js b/dist/ionicons/chevronRight.js new file mode 100644 index 000000000..00aea7a16 --- /dev/null +++ b/dist/ionicons/chevronRight.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.chevronRight = void 0; +var chevronRight = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M298.3,256L298.3,256L298.3,256L131.1,81.9c-4.2-4.3-4.1-11.4,0.2-15.8l29.9-30.6c4.3-4.4,11.3-4.5,15.5-0.2l204.2,212.7\r\n\tc2.2,2.2,3.2,5.2,3,8.1c0.1,3-0.9,5.9-3,8.1L176.7,476.8c-4.2,4.3-11.2,4.2-15.5-0.2L131.3,446c-4.3-4.4-4.4-11.5-0.2-15.8\r\n\tL298.3,256z" + }, + "children": [] + }] +}; +exports.chevronRight = chevronRight; \ No newline at end of file diff --git a/dist/ionicons/chevronUp.js b/dist/ionicons/chevronUp.js new file mode 100644 index 000000000..532fdcf3b --- /dev/null +++ b/dist/ionicons/chevronUp.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.chevronUp = void 0; +var chevronUp = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,213.7L256,213.7L256,213.7l174.2,167.2c4.3,4.2,11.4,4.1,15.8-0.2l30.6-29.9c4.4-4.3,4.5-11.3,0.2-15.5L264.1,131.1\r\n\tc-2.2-2.2-5.2-3.2-8.1-3c-3-0.1-5.9,0.9-8.1,3L35.2,335.3c-4.3,4.2-4.2,11.2,0.2,15.5L66,380.7c4.4,4.3,11.5,4.4,15.8,0.2L256,213.7\r\n\tz" + }, + "children": [] + }] +}; +exports.chevronUp = chevronUp; \ No newline at end of file diff --git a/dist/ionicons/clipboard.js b/dist/ionicons/clipboard.js new file mode 100644 index 000000000..790080225 --- /dev/null +++ b/dist/ionicons/clipboard.js @@ -0,0 +1,111 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.clipboard = void 0; +var clipboard = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M161,160.5h192c-1.688-20-9.729-35.45-27.921-40.356c-0.446-0.119-1.12-0.424-1.567-0.541\r\n\t\tc-12.004-3.424-21.012-7.653-21.012-20.781V78.227C302.5,52.691,281.976,32,256.49,32c-25.466,0-45.99,20.691-45.99,46.227v20.595\r\n\t\tc0,13.128-8.592,17.169-20.597,20.593c-0.447,0.117-0.8,0.61-1.266,0.729C170.446,125.05,162.927,140.5,161,160.5z M256.99,64.395\r\n\t\tc7.615,0,13.791,6.195,13.791,13.832c0,7.654-6.176,13.85-13.791,13.85c-7.614,0-13.772-6.195-13.772-13.85\r\n\t\tC243.218,70.59,249.376,64.395,256.99,64.395z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M161,160.5h192c-1.688-20-9.729-35.45-27.921-40.356c-0.446-0.119-1.12-0.424-1.567-0.541\r\n\t\tc-12.004-3.424-21.012-7.653-21.012-20.781V78.227C302.5,52.691,281.976,32,256.49,32c-25.466,0-45.99,20.691-45.99,46.227v20.595\r\n\t\tc0,13.128-8.592,17.169-20.597,20.593c-0.447,0.117-0.8,0.61-1.266,0.729C170.446,125.05,162.927,140.5,161,160.5z M256.99,64.395\r\n\t\tc7.615,0,13.791,6.195,13.791,13.832c0,7.654-6.176,13.85-13.791,13.85c-7.614,0-13.772-6.195-13.772-13.85\r\n\t\tC243.218,70.59,249.376,64.395,256.99,64.395z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M405.611,63.5H331.5v13.988c0,10.583,9.193,19.012,19.507,19.012h37.212c6.667,0,12.099,5.435,12.44,12.195l0.085,327.1\r\n\t\tc-0.322,6.432-5.303,11.546-11.514,12.017l-264.418,0.031c-6.211-0.471-11.149-5.695-11.472-12.126l-0.085-327.014\r\n\t\tc0.322-6.761,5.858-12.203,12.506-12.203h37.231c10.313,0,18.507-8.429,18.507-19.012V63.5h-73.131\r\n\t\tC93.25,63.5,80.5,76.058,80.5,91.575v360.38c0,15.502,12.75,28.545,27.869,28.545H256.99h148.621\r\n\t\tc15.138,0,26.889-13.043,26.889-28.545V91.575C432.5,76.058,420.749,63.5,405.611,63.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M405.611,63.5H331.5v13.988c0,10.583,9.193,19.012,19.507,19.012h37.212c6.667,0,12.099,5.435,12.44,12.195l0.085,327.1\r\n\t\tc-0.322,6.432-5.303,11.546-11.514,12.017l-264.418,0.031c-6.211-0.471-11.149-5.695-11.472-12.126l-0.085-327.014\r\n\t\tc0.322-6.761,5.858-12.203,12.506-12.203h37.231c10.313,0,18.507-8.429,18.507-19.012V63.5h-73.131\r\n\t\tC93.25,63.5,80.5,76.058,80.5,91.575v360.38c0,15.502,12.75,28.545,27.869,28.545H256.99h148.621\r\n\t\tc15.138,0,26.889-13.043,26.889-28.545V91.575C432.5,76.058,420.749,63.5,405.611,63.5z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "144.5", + "y": "192.5", + "width": "112", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "144.5", + "y": "192.5", + "width": "112", + "height": "32" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "144.5", + "y": "384.5", + "width": "160", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "144.5", + "y": "384.5", + "width": "160", + "height": "32" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "144.5", + "y": "320.5", + "width": "129", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "144.5", + "y": "320.5", + "width": "129", + "height": "32" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "144.5", + "y": "256.5", + "width": "208", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "144.5", + "y": "256.5", + "width": "208", + "height": "32" + }, + "children": [] + }] + }] + }] +}; +exports.clipboard = clipboard; \ No newline at end of file diff --git a/dist/ionicons/clock.js b/dist/ionicons/clock.js new file mode 100644 index 000000000..a33f55b7c --- /dev/null +++ b/dist/ionicons/clock.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.clock = void 0; +var clock = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M255.988,32C132.285,32,32,132.298,32,256c0,123.715,100.285,224,223.988,224C379.703,480,480,379.715,480,256\r\n\t\tC480,132.298,379.703,32,255.988,32z M391.761,391.765c-10.099,10.098-21.126,18.928-32.886,26.42l-15.946-27.62l-13.856,8\r\n\t\tl15.955,27.636c-24.838,13.03-52.372,20.455-81.027,21.624V416h-16v31.825c-28.656-1.166-56.191-8.59-81.03-21.62l15.958-27.641\r\n\t\tl-13.856-8l-15.949,27.625c-11.761-7.492-22.79-16.324-32.889-26.424c-10.099-10.099-18.93-21.127-26.422-32.889l27.624-15.949\r\n\t\tl-8-13.855L85.796,345.03c-13.03-24.839-20.454-52.374-21.621-81.03H96v-16H64.175c1.167-28.655,8.592-56.19,21.623-81.029\r\n\t\tl27.638,15.958l8-13.856l-27.623-15.948c7.492-11.76,16.322-22.787,26.419-32.885c10.1-10.101,21.129-18.933,32.89-26.426\r\n\t\tl15.949,27.624l13.856-8l-15.958-27.64C191.81,72.765,219.345,65.34,248,64.175V96h16V64.176\r\n\t\tc28.654,1.169,56.188,8.595,81.026,21.626l-15.954,27.634l13.856,8l15.945-27.618c11.76,7.492,22.787,16.323,32.886,26.421\r\n\t\tc10.1,10.099,18.931,21.126,26.424,32.887l-27.619,15.946l8,13.856l27.636-15.956c13.031,24.839,20.457,52.373,21.624,81.027H416\r\n\t\tv16h31.824c-1.167,28.655-8.592,56.189-21.622,81.028l-27.637-15.957l-8,13.856l27.621,15.947\r\n\t\tC410.693,370.637,401.861,381.665,391.761,391.765z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M255.988,32C132.285,32,32,132.298,32,256c0,123.715,100.285,224,223.988,224C379.703,480,480,379.715,480,256\r\n\t\tC480,132.298,379.703,32,255.988,32z M391.761,391.765c-10.099,10.098-21.126,18.928-32.886,26.42l-15.946-27.62l-13.856,8\r\n\t\tl15.955,27.636c-24.838,13.03-52.372,20.455-81.027,21.624V416h-16v31.825c-28.656-1.166-56.191-8.59-81.03-21.62l15.958-27.641\r\n\t\tl-13.856-8l-15.949,27.625c-11.761-7.492-22.79-16.324-32.889-26.424c-10.099-10.099-18.93-21.127-26.422-32.889l27.624-15.949\r\n\t\tl-8-13.855L85.796,345.03c-13.03-24.839-20.454-52.374-21.621-81.03H96v-16H64.175c1.167-28.655,8.592-56.19,21.623-81.029\r\n\t\tl27.638,15.958l8-13.856l-27.623-15.948c7.492-11.76,16.322-22.787,26.419-32.885c10.1-10.101,21.129-18.933,32.89-26.426\r\n\t\tl15.949,27.624l13.856-8l-15.958-27.64C191.81,72.765,219.345,65.34,248,64.175V96h16V64.176\r\n\t\tc28.654,1.169,56.188,8.595,81.026,21.626l-15.954,27.634l13.856,8l15.945-27.618c11.76,7.492,22.787,16.323,32.886,26.421\r\n\t\tc10.1,10.099,18.931,21.126,26.424,32.887l-27.619,15.946l8,13.856l27.636-15.956c13.031,24.839,20.457,52.373,21.624,81.027H416\r\n\t\tv16h31.824c-1.167,28.655-8.592,56.189-21.622,81.028l-27.637-15.957l-8,13.856l27.621,15.947\r\n\t\tC410.693,370.637,401.861,381.665,391.761,391.765z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M400,241H284.268c-2.818-5.299-7.083-9.708-12.268-12.708V160h-32v68.292c-9.562,5.534-16,15.866-16,27.708\r\n\t\tc0,17.673,14.327,32,32,32c11.425,0,21.444-5.992,27.106-15H400V241z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M400,241H284.268c-2.818-5.299-7.083-9.708-12.268-12.708V160h-32v68.292c-9.562,5.534-16,15.866-16,27.708\r\n\t\tc0,17.673,14.327,32,32,32c11.425,0,21.444-5.992,27.106-15H400V241z" + }, + "children": [] + }] + }] + }] +}; +exports.clock = clock; \ No newline at end of file diff --git a/dist/ionicons/close.js b/dist/ionicons/close.js new file mode 100644 index 000000000..c6c526e05 --- /dev/null +++ b/dist/ionicons/close.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.close = void 0; +var close = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M443.6,387.1L312.4,255.4l131.5-130c5.4-5.4,5.4-14.2,0-19.6l-37.4-37.6c-2.6-2.6-6.1-4-9.8-4c-3.7,0-7.2,1.5-9.8,4\r\n\tL256,197.8L124.9,68.3c-2.6-2.6-6.1-4-9.8-4c-3.7,0-7.2,1.5-9.8,4L68,105.9c-5.4,5.4-5.4,14.2,0,19.6l131.5,130L68.4,387.1\r\n\tc-2.6,2.6-4.1,6.1-4.1,9.8c0,3.7,1.4,7.2,4.1,9.8l37.4,37.6c2.7,2.7,6.2,4.1,9.8,4.1c3.5,0,7.1-1.3,9.8-4.1L256,313.1l130.7,131.1\r\n\tc2.7,2.7,6.2,4.1,9.8,4.1c3.5,0,7.1-1.3,9.8-4.1l37.4-37.6c2.6-2.6,4.1-6.1,4.1-9.8C447.7,393.2,446.2,389.7,443.6,387.1z" + }, + "children": [] + }] +}; +exports.close = close; \ No newline at end of file diff --git a/dist/ionicons/closeCircled.js b/dist/ionicons/closeCircled.js new file mode 100644 index 000000000..7218c431b --- /dev/null +++ b/dist/ionicons/closeCircled.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.closeCircled = void 0; +var closeCircled = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,33C132.3,33,32,133.3,32,257c0,123.7,100.3,224,224,224c123.7,0,224-100.3,224-224C480,133.3,379.7,33,256,33z\r\n\t\t M364.3,332.5c1.5,1.5,2.3,3.5,2.3,5.6c0,2.1-0.8,4.2-2.3,5.6l-21.6,21.7c-1.6,1.6-3.6,2.3-5.6,2.3c-2,0-4.1-0.8-5.6-2.3L256,289.8\r\n\t\tl-75.4,75.7c-1.5,1.6-3.6,2.3-5.6,2.3c-2,0-4.1-0.8-5.6-2.3l-21.6-21.7c-1.5-1.5-2.3-3.5-2.3-5.6c0-2.1,0.8-4.2,2.3-5.6l75.7-76\r\n\t\tl-75.9-75c-3.1-3.1-3.1-8.2,0-11.3l21.6-21.7c1.5-1.5,3.5-2.3,5.6-2.3c2.1,0,4.1,0.8,5.6,2.3l75.7,74.7l75.7-74.7\r\n\t\tc1.5-1.5,3.5-2.3,5.6-2.3c2.1,0,4.1,0.8,5.6,2.3l21.6,21.7c3.1,3.1,3.1,8.2,0,11.3l-75.9,75L364.3,332.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,33C132.3,33,32,133.3,32,257c0,123.7,100.3,224,224,224c123.7,0,224-100.3,224-224C480,133.3,379.7,33,256,33z\r\n\t\t M364.3,332.5c1.5,1.5,2.3,3.5,2.3,5.6c0,2.1-0.8,4.2-2.3,5.6l-21.6,21.7c-1.6,1.6-3.6,2.3-5.6,2.3c-2,0-4.1-0.8-5.6-2.3L256,289.8\r\n\t\tl-75.4,75.7c-1.5,1.6-3.6,2.3-5.6,2.3c-2,0-4.1-0.8-5.6-2.3l-21.6-21.7c-1.5-1.5-2.3-3.5-2.3-5.6c0-2.1,0.8-4.2,2.3-5.6l75.7-76\r\n\t\tl-75.9-75c-3.1-3.1-3.1-8.2,0-11.3l21.6-21.7c1.5-1.5,3.5-2.3,5.6-2.3c2.1,0,4.1,0.8,5.6,2.3l75.7,74.7l75.7-74.7\r\n\t\tc1.5-1.5,3.5-2.3,5.6-2.3c2.1,0,4.1,0.8,5.6,2.3l21.6,21.7c3.1,3.1,3.1,8.2,0,11.3l-75.9,75L364.3,332.5z" + }, + "children": [] + }] + }] + }] +}; +exports.closeCircled = closeCircled; \ No newline at end of file diff --git a/dist/ionicons/closeRound.js b/dist/ionicons/closeRound.js new file mode 100644 index 000000000..fe539a462 --- /dev/null +++ b/dist/ionicons/closeRound.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.closeRound = void 0; +var closeRound = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M437.5,386.6L306.9,256l130.6-130.6c14.1-14.1,14.1-36.8,0-50.9c-14.1-14.1-36.8-14.1-50.9,0L256,205.1L125.4,74.5\r\n\tc-14.1-14.1-36.8-14.1-50.9,0c-14.1,14.1-14.1,36.8,0,50.9L205.1,256L74.5,386.6c-14.1,14.1-14.1,36.8,0,50.9\r\n\tc14.1,14.1,36.8,14.1,50.9,0L256,306.9l130.6,130.6c14.1,14.1,36.8,14.1,50.9,0C451.5,423.4,451.5,400.6,437.5,386.6z" + }, + "children": [] + }] +}; +exports.closeRound = closeRound; \ No newline at end of file diff --git a/dist/ionicons/closedCaptioning.js b/dist/ionicons/closedCaptioning.js new file mode 100644 index 000000000..48d74f915 --- /dev/null +++ b/dist/ionicons/closedCaptioning.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.closedCaptioning = void 0; +var closedCaptioning = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M0,64v384h512V64H0z M464,255.825c0.045,26.724-1.547,47.143-3.797,80.223S441,392.5,401.097,396.168\r\n\t\t\tC361.201,399.835,305.369,400.12,256,400c-49,0.12-105.198-0.165-145.094-3.832c-39.903-3.668-56.855-27.04-59.105-60.12\r\n\t\t\ts-3.841-53.499-3.796-80.223c-0.045-26.725,0.095-44.124,3.798-80.224s23.01-56.267,59.106-59.934S201.842,112,248.704,112\r\n\t\t\tc2.431,0,5.296,0,7.296,0c2.437,0,4.871,0,7.302,0c46.862,0,101.698,0,137.795,3.667s55.403,23.833,59.106,59.934\r\n\t\t\tS464.045,229.1,464,255.825z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M0,64v384h512V64H0z M464,255.825c0.045,26.724-1.547,47.143-3.797,80.223S441,392.5,401.097,396.168\r\n\t\t\tC361.201,399.835,305.369,400.12,256,400c-49,0.12-105.198-0.165-145.094-3.832c-39.903-3.668-56.855-27.04-59.105-60.12\r\n\t\t\ts-3.841-53.499-3.796-80.223c-0.045-26.725,0.095-44.124,3.798-80.224s23.01-56.267,59.106-59.934S201.842,112,248.704,112\r\n\t\t\tc2.431,0,5.296,0,7.296,0c2.437,0,4.871,0,7.302,0c46.862,0,101.698,0,137.795,3.667s55.403,23.833,59.106,59.934\r\n\t\t\tS464.045,229.1,464,255.825z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M372,283.846v0.766c0,18.639-11.581,29.566-27.003,29.566c-15.418,0-25.808-12.309-27.284-29.566\r\n\t\t\tc0,0-1.335-9.078-1.335-27.298s1.546-29.759,1.546-29.759c2.711-19.473,12.188-29.566,27.607-29.566\r\n\t\t\tc15.367,0,27.584,13.262,27.584,33.388c0.023,0.086,0.01,0.624,0.01,0.624h51.541c0-25-6.309-47.556-18.92-61.746\r\n\t\t\tc-12.617-14.183-31.403-21.273-56.369-21.273c-12.483,0-23.93,1.654-34.33,4.942c-10.404,3.295-19.376,9.062-26.916,17.291\r\n\t\t\tc-7.545,8.234-13.397,19.254-17.555,33.059c-4.162,13.809-6.242,31.224-6.242,52.247c0,20.52,1.688,37.684,5.072,51.488\r\n\t\t\tc3.377,13.811,8.388,24.83,15.018,33.059c6.632,8.234,14.953,13.935,24.967,17.1c10.01,3.163,21.779,4.748,35.304,4.748\r\n\t\t\tc28.604,0,49.089-7.258,61.443-21.318C418.486,327.537,424.666,307,424.666,280H372C372,280,372,282.876,372,283.846z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M372,283.846v0.766c0,18.639-11.581,29.566-27.003,29.566c-15.418,0-25.808-12.309-27.284-29.566\r\n\t\t\tc0,0-1.335-9.078-1.335-27.298s1.546-29.759,1.546-29.759c2.711-19.473,12.188-29.566,27.607-29.566\r\n\t\t\tc15.367,0,27.584,13.262,27.584,33.388c0.023,0.086,0.01,0.624,0.01,0.624h51.541c0-25-6.309-47.556-18.92-61.746\r\n\t\t\tc-12.617-14.183-31.403-21.273-56.369-21.273c-12.483,0-23.93,1.654-34.33,4.942c-10.404,3.295-19.376,9.062-26.916,17.291\r\n\t\t\tc-7.545,8.234-13.397,19.254-17.555,33.059c-4.162,13.809-6.242,31.224-6.242,52.247c0,20.52,1.688,37.684,5.072,51.488\r\n\t\t\tc3.377,13.811,8.388,24.83,15.018,33.059c6.632,8.234,14.953,13.935,24.967,17.1c10.01,3.163,21.779,4.748,35.304,4.748\r\n\t\t\tc28.604,0,49.089-7.258,61.443-21.318C418.486,327.537,424.666,307,424.666,280H372C372,280,372,282.876,372,283.846z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M195,283.846v0.766c0,18.639-11.581,29.566-27.003,29.566c-15.418,0-25.808-12.309-27.284-29.566\r\n\t\t\tc0,0-1.335-9.078-1.335-27.298s1.546-29.759,1.546-29.759c2.711-19.473,12.188-29.566,27.607-29.566\r\n\t\t\tc15.367,0,27.584,13.262,27.584,33.388c0.023,0.086,0.01,0.624,0.01,0.624h51.541c0-25-6.309-47.556-18.92-61.746\r\n\t\t\tc-12.617-14.183-31.403-21.273-56.369-21.273c-12.483,0-23.93,1.654-34.33,4.942c-10.404,3.295-19.376,9.062-26.916,17.291\r\n\t\t\tc-7.545,8.234-13.397,19.254-17.555,33.059c-4.162,13.809-6.242,31.224-6.242,52.247c0,20.52,1.688,37.684,5.072,51.488\r\n\t\t\tc3.377,13.811,8.388,24.83,15.018,33.059c6.632,8.234,14.953,13.935,24.967,17.1c10.01,3.163,21.779,4.748,35.304,4.748\r\n\t\t\tc28.604,0,49.089-7.258,61.443-21.318C241.486,327.537,247.666,307,247.666,280H195C195,280,195,282.876,195,283.846z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M195,283.846v0.766c0,18.639-11.581,29.566-27.003,29.566c-15.418,0-25.808-12.309-27.284-29.566\r\n\t\t\tc0,0-1.335-9.078-1.335-27.298s1.546-29.759,1.546-29.759c2.711-19.473,12.188-29.566,27.607-29.566\r\n\t\t\tc15.367,0,27.584,13.262,27.584,33.388c0.023,0.086,0.01,0.624,0.01,0.624h51.541c0-25-6.309-47.556-18.92-61.746\r\n\t\t\tc-12.617-14.183-31.403-21.273-56.369-21.273c-12.483,0-23.93,1.654-34.33,4.942c-10.404,3.295-19.376,9.062-26.916,17.291\r\n\t\t\tc-7.545,8.234-13.397,19.254-17.555,33.059c-4.162,13.809-6.242,31.224-6.242,52.247c0,20.52,1.688,37.684,5.072,51.488\r\n\t\t\tc3.377,13.811,8.388,24.83,15.018,33.059c6.632,8.234,14.953,13.935,24.967,17.1c10.01,3.163,21.779,4.748,35.304,4.748\r\n\t\t\tc28.604,0,49.089-7.258,61.443-21.318C241.486,327.537,247.666,307,247.666,280H195C195,280,195,282.876,195,283.846z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.closedCaptioning = closedCaptioning; \ No newline at end of file diff --git a/dist/ionicons/cloud.js b/dist/ionicons/cloud.js new file mode 100644 index 000000000..a06786792 --- /dev/null +++ b/dist/ionicons/cloud.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cloud = void 0; +var cloud = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M398.1,233.2c0-1.2,0.2-2.4,0.2-3.6c0-65-51.8-117.6-115.7-117.6c-46.1,0-85.7,27.4-104.3,67c-8.1-4.1-17.2-6.5-26.8-6.5\r\n\tc-29.5,0-54.1,21.9-58.8,50.5C57.3,235.2,32,269.1,32,309c0,50.2,40.1,90.9,89.5,91h276.7l0,0c45.2-0.2,81.7-37.5,81.7-83.4\r\n\tC480,270.6,443.3,233.3,398.1,233.2z" + }, + "children": [] + }] +}; +exports.cloud = cloud; \ No newline at end of file diff --git a/dist/ionicons/code.js b/dist/ionicons/code.js new file mode 100644 index 000000000..4bfc7b916 --- /dev/null +++ b/dist/ionicons/code.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.code = void 0; +var code = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M168,392c-6.143,0-12.285-2.344-16.971-7.029l-112-112c-9.373-9.373-9.373-24.569,0-33.941l112-112\r\n\t\tc9.373-9.372,24.568-9.372,33.941,0c9.371,9.372,9.371,24.568,0,33.941L89.941,256l95.029,95.029\r\n\t\tc9.371,9.373,9.371,24.568,0,33.941C180.283,389.656,174.143,392,168,392z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M168,392c-6.143,0-12.285-2.344-16.971-7.029l-112-112c-9.373-9.373-9.373-24.569,0-33.941l112-112\r\n\t\tc9.373-9.372,24.568-9.372,33.941,0c9.371,9.372,9.371,24.568,0,33.941L89.941,256l95.029,95.029\r\n\t\tc9.371,9.373,9.371,24.568,0,33.941C180.283,389.656,174.143,392,168,392z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M344,392c6.143,0,12.285-2.344,16.971-7.029l112-112c9.373-9.373,9.373-24.569,0-33.941l-112-112\r\n\t\tc-9.373-9.372-24.568-9.372-33.941,0c-9.371,9.372-9.371,24.568,0,33.941L422.059,256l-95.029,95.029\r\n\t\tc-9.371,9.373-9.371,24.568,0,33.941C331.717,389.656,337.857,392,344,392z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M344,392c6.143,0,12.285-2.344,16.971-7.029l112-112c9.373-9.373,9.373-24.569,0-33.941l-112-112\r\n\t\tc-9.373-9.372-24.568-9.372-33.941,0c-9.371,9.372-9.371,24.568,0,33.941L422.059,256l-95.029,95.029\r\n\t\tc-9.371,9.373-9.371,24.568,0,33.941C331.717,389.656,337.857,392,344,392z" + }, + "children": [] + }] + }] + }] +}; +exports.code = code; \ No newline at end of file diff --git a/dist/ionicons/codeDownload.js b/dist/ionicons/codeDownload.js new file mode 100644 index 000000000..52385afca --- /dev/null +++ b/dist/ionicons/codeDownload.js @@ -0,0 +1,75 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.codeDownload = void 0; +var codeDownload = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M330.967,284.104c6.48-6.467,6.48-16.951,0-23.422c-6.48-6.467-17.342-6.467-23.823,0L272,295.432V176.58\r\n\t\t\t\tc0-9.151-6.839-16.56-15.999-16.56c-9.162,0-16.001,7.408-16.001,16.56v118.852l-35.005-34.75\r\n\t\t\t\tc-6.481-6.467-17.095-6.467-23.573,0c-6.482,6.471-6.539,16.955-0.057,23.422l63.07,63.023c0.02,0.02,0.028,0.037,0.05,0.057\r\n\t\t\t\tc0.725,0.716,1.513,1.367,2.368,1.945c0.102,0.067,0.2,0.134,0.302,0.2c0.322,0.206,0.651,0.403,0.99,0.587\r\n\t\t\t\tc0.117,0.064,0.231,0.133,0.35,0.193c0.421,0.218,0.849,0.423,1.292,0.605c0.002,0.001,0.004,0.001,0.006,0.002\r\n\t\t\t\tc0.405,0.167,0.817,0.308,1.233,0.442c0.112,0.037,0.222,0.085,0.335,0.118c0.151,0.047,0.307,0.074,0.461,0.115\r\n\t\t\t\tc1.424,0.385,2.872,0.588,4.315,0.588c1.442,0,2.89-0.203,4.312-0.588c0.153-0.041,0.312-0.068,0.464-0.115\r\n\t\t\t\tc0.113-0.033,0.224-0.081,0.335-0.118c0.416-0.135,0.829-0.275,1.233-0.442c0.002-0.001,0.004-0.001,0.007-0.002\r\n\t\t\t\tc0.441-0.183,0.87-0.387,1.289-0.604c0.122-0.064,0.24-0.133,0.36-0.198c0.332-0.185,0.658-0.376,0.975-0.579\r\n\t\t\t\tc0.109-0.069,0.217-0.14,0.323-0.212c0.408-0.274,0.806-0.562,1.184-0.872c0.004-0.002,0.007-0.004,0.011-0.006\r\n\t\t\t\tc0.406-0.332,0.791-0.684,1.162-1.051c0.024-0.022,0.051-0.043,0.074-0.066L330.967,284.104z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M330.967,284.104c6.48-6.467,6.48-16.951,0-23.422c-6.48-6.467-17.342-6.467-23.823,0L272,295.432V176.58\r\n\t\t\t\tc0-9.151-6.839-16.56-15.999-16.56c-9.162,0-16.001,7.408-16.001,16.56v118.852l-35.005-34.75\r\n\t\t\t\tc-6.481-6.467-17.095-6.467-23.573,0c-6.482,6.471-6.539,16.955-0.057,23.422l63.07,63.023c0.02,0.02,0.028,0.037,0.05,0.057\r\n\t\t\t\tc0.725,0.716,1.513,1.367,2.368,1.945c0.102,0.067,0.2,0.134,0.302,0.2c0.322,0.206,0.651,0.403,0.99,0.587\r\n\t\t\t\tc0.117,0.064,0.231,0.133,0.35,0.193c0.421,0.218,0.849,0.423,1.292,0.605c0.002,0.001,0.004,0.001,0.006,0.002\r\n\t\t\t\tc0.405,0.167,0.817,0.308,1.233,0.442c0.112,0.037,0.222,0.085,0.335,0.118c0.151,0.047,0.307,0.074,0.461,0.115\r\n\t\t\t\tc1.424,0.385,2.872,0.588,4.315,0.588c1.442,0,2.89-0.203,4.312-0.588c0.153-0.041,0.312-0.068,0.464-0.115\r\n\t\t\t\tc0.113-0.033,0.224-0.081,0.335-0.118c0.416-0.135,0.829-0.275,1.233-0.442c0.002-0.001,0.004-0.001,0.007-0.002\r\n\t\t\t\tc0.441-0.183,0.87-0.387,1.289-0.604c0.122-0.064,0.24-0.133,0.36-0.198c0.332-0.185,0.658-0.376,0.975-0.579\r\n\t\t\t\tc0.109-0.069,0.217-0.14,0.323-0.212c0.408-0.274,0.806-0.562,1.184-0.872c0.004-0.002,0.007-0.004,0.011-0.006\r\n\t\t\t\tc0.406-0.332,0.791-0.684,1.162-1.051c0.024-0.022,0.051-0.043,0.074-0.066L330.967,284.104z" + }, + "children": [] + }] + }] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M168,392c-6.143,0-12.285-2.344-16.971-7.029l-112-112c-9.373-9.373-9.373-24.569,0-33.941l112-112\r\n\t\t\tc9.373-9.372,24.568-9.372,33.941,0c9.371,9.372,9.371,24.568,0,33.941L89.941,256l95.029,95.029\r\n\t\t\tc9.371,9.372,9.371,24.568,0,33.941C180.283,389.656,174.143,392,168,392z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M168,392c-6.143,0-12.285-2.344-16.971-7.029l-112-112c-9.373-9.373-9.373-24.569,0-33.941l112-112\r\n\t\t\tc9.373-9.372,24.568-9.372,33.941,0c9.371,9.372,9.371,24.568,0,33.941L89.941,256l95.029,95.029\r\n\t\t\tc9.371,9.372,9.371,24.568,0,33.941C180.283,389.656,174.143,392,168,392z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M344,392c6.143,0,12.285-2.344,16.971-7.029l112-112c9.373-9.373,9.373-24.569,0-33.941l-112-112\r\n\t\t\tc-9.373-9.372-24.568-9.372-33.941,0c-9.371,9.372-9.371,24.568,0,33.941L422.059,256l-95.029,95.029\r\n\t\t\tc-9.371,9.372-9.371,24.568,0,33.941C331.717,389.656,337.857,392,344,392z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M344,392c6.143,0,12.285-2.344,16.971-7.029l112-112c9.373-9.373,9.373-24.569,0-33.941l-112-112\r\n\t\t\tc-9.373-9.372-24.568-9.372-33.941,0c-9.371,9.372-9.371,24.568,0,33.941L422.059,256l-95.029,95.029\r\n\t\t\tc-9.371,9.372-9.371,24.568,0,33.941C331.717,389.656,337.857,392,344,392z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.codeDownload = codeDownload; \ No newline at end of file diff --git a/dist/ionicons/codeWorking.js b/dist/ionicons/codeWorking.js new file mode 100644 index 000000000..37a955b90 --- /dev/null +++ b/dist/ionicons/codeWorking.js @@ -0,0 +1,103 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.codeWorking = void 0; +var codeWorking = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "cx": "184.166", + "cy": "256.166", + "r": "24" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "184.166", + "cy": "256.166", + "r": "24" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "256.166", + "cy": "256.166", + "r": "24" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "256.166", + "cy": "256.166", + "r": "24" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "328.166", + "cy": "256.166", + "r": "24" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "328.166", + "cy": "256.166", + "r": "24" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M168,392c-6.143,0-12.285-2.344-16.971-7.029l-112-112c-9.373-9.373-9.373-24.569,0-33.941l112-112\r\n\t\t\tc9.373-9.372,24.568-9.372,33.941,0c9.371,9.372,9.371,24.568,0,33.941L89.941,256l95.029,95.029\r\n\t\t\tc9.371,9.372,9.371,24.568,0,33.941C180.283,389.656,174.143,392,168,392z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M168,392c-6.143,0-12.285-2.344-16.971-7.029l-112-112c-9.373-9.373-9.373-24.569,0-33.941l112-112\r\n\t\t\tc9.373-9.372,24.568-9.372,33.941,0c9.371,9.372,9.371,24.568,0,33.941L89.941,256l95.029,95.029\r\n\t\t\tc9.371,9.372,9.371,24.568,0,33.941C180.283,389.656,174.143,392,168,392z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M344,392c6.143,0,12.285-2.344,16.971-7.029l112-112c9.373-9.373,9.373-24.569,0-33.941l-112-112\r\n\t\t\tc-9.373-9.372-24.568-9.372-33.941,0c-9.371,9.372-9.371,24.568,0,33.941L422.059,256l-95.029,95.029\r\n\t\t\tc-9.371,9.372-9.371,24.568,0,33.941C331.717,389.656,337.857,392,344,392z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M344,392c6.143,0,12.285-2.344,16.971-7.029l112-112c9.373-9.373,9.373-24.569,0-33.941l-112-112\r\n\t\t\tc-9.373-9.372-24.568-9.372-33.941,0c-9.371,9.372-9.371,24.568,0,33.941L422.059,256l-95.029,95.029\r\n\t\t\tc-9.371,9.372-9.371,24.568,0,33.941C331.717,389.656,337.857,392,344,392z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.codeWorking = codeWorking; \ No newline at end of file diff --git a/dist/ionicons/coffee.js b/dist/ionicons/coffee.js new file mode 100644 index 000000000..934e0642a --- /dev/null +++ b/dist/ionicons/coffee.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.coffee = void 0; +var coffee = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M383.1,257.4c0.6-5.4,0.9-10,0.9-13.8c0-19.6-3.3-19.7-16-19.7h-75.5c7.3-12,11.5-24.4,11.5-37c0-37.9-57.3-56.4-57.3-88\r\n\tc0-11.7,5.1-21.3,9.3-34.9c-26.5,7-47.4,33.5-47.4,61.6c0,48.3,56.3,48.7,56.3,84.8c0,4.5-1.4,8.5-2.1,13.5h-55.9\r\n\tc0.8-3,1.3-6.2,1.3-9.3c0-22.8-39.1-33.9-39.1-52.8c0-7,1-12.8,3.2-21c-12.9,5.1-28.3,20-28.3,36.8c0,26.7,31.9,29.3,36.8,46.3H80\r\n\tc-12.7,0-16,0.1-16,19.7c0,19.6,7.7,61.3,28.3,111c20.6,49.7,44.4,71.6,61.2,86.2l0.1-0.2c5.1,4.6,11.8,7.3,19.2,7.3h102.4\r\n\tc7.4,0,14.1-2.7,19.2-7.3l0.1,0.2c9-7.8,20-17.8,31.4-32.9c4.7,2,9.8,3.7,15.4,5c8.4,2,16.8,3,24.8,3c24,0,45.6-9.2,60.8-25.8\r\n\tc13.4-14.6,21.1-34.4,21.1-54.2C448,297,420,264.5,383.1,257.4z M366.1,384.2c-8.6,0-15.6-1.2-22.1-4.2c4-8,7.9-15.9,11.7-25.1\r\n\tc10.1-24.4,17.1-47,21.6-65.8c22,4.3,38.7,23.8,38.7,47.1C416,358.9,398.8,384.2,366.1,384.2z" + }, + "children": [] + }] +}; +exports.coffee = coffee; \ No newline at end of file diff --git a/dist/ionicons/compass.js b/dist/ionicons/compass.js new file mode 100644 index 000000000..b4ea57a29 --- /dev/null +++ b/dist/ionicons/compass.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.compass = void 0; +var compass = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,32c-39,0-75.6,10-107.5,27.4C136.9,42.9,117.7,32,96,32c-35.3,0-64,28.7-64,64c0,21.7,10.9,40.9,27.4,52.5\r\n\t\t\tC42,180.4,32,217,32,256c0,123.7,100.3,224,224,224c123.7,0,224-100.3,224-224C480,132.3,379.7,32,256,32z M64,96\r\n\t\t\tc0-17.7,14.3-32,32-32c10.5,0,19.8,5,25.6,12.8c-17,12.7-32.1,27.8-44.8,44.8C69,115.8,64,106.5,64,96z M391.8,391.8\r\n\t\t\tC355.5,428,307.3,448,256,448c-51.3,0-99.5-20-135.8-56.2C84,355.5,64,307.3,64,256c0-51.3,20-99.5,56.2-135.8\r\n\t\t\tC156.5,84,204.7,64,256,64c51.3,0,99.5,20,135.8,56.2C428,156.5,448,204.7,448,256C448,307.3,428,355.5,391.8,391.8z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,32c-39,0-75.6,10-107.5,27.4C136.9,42.9,117.7,32,96,32c-35.3,0-64,28.7-64,64c0,21.7,10.9,40.9,27.4,52.5\r\n\t\t\tC42,180.4,32,217,32,256c0,123.7,100.3,224,224,224c123.7,0,224-100.3,224-224C480,132.3,379.7,32,256,32z M64,96\r\n\t\t\tc0-17.7,14.3-32,32-32c10.5,0,19.8,5,25.6,12.8c-17,12.7-32.1,27.8-44.8,44.8C69,115.8,64,106.5,64,96z M391.8,391.8\r\n\t\t\tC355.5,428,307.3,448,256,448c-51.3,0-99.5-20-135.8-56.2C84,355.5,64,307.3,64,256c0-51.3,20-99.5,56.2-135.8\r\n\t\t\tC156.5,84,204.7,64,256,64c51.3,0,99.5,20,135.8,56.2C428,156.5,448,204.7,448,256C448,307.3,428,355.5,391.8,391.8z" + }, + "children": [] + }] + }] + }] + }, { + "name": "path", + "attribs": { + "d": "M352,128c0,0-101.6,83.7-120,104s-72,152-72,152s102.4-82.3,120-104S352,128,352,128z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M352,128c0,0-101.6,83.7-120,104s-72,152-72,152s102.4-82.3,120-104S352,128,352,128z" + }, + "children": [] + }] + }] + }] +}; +exports.compass = compass; \ No newline at end of file diff --git a/dist/ionicons/compose.js b/dist/ionicons/compose.js new file mode 100644 index 000000000..ca285b50b --- /dev/null +++ b/dist/ionicons/compose.js @@ -0,0 +1,59 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.compose = void 0; +var compose = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M442.8,99.6l-30.4-30.4c-7-6.9-18.2-6.9-25.1,0L355.5,101l55.5,55.5l31.8-31.7C449.7,117.7,449.7,106.5,442.8,99.6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M442.8,99.6l-30.4-30.4c-7-6.9-18.2-6.9-25.1,0L355.5,101l55.5,55.5l31.8-31.7C449.7,117.7,449.7,106.5,442.8,99.6z" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "346.1,110.5 174.1,288 160,352 224,337.9 400.6,164.9 \t\t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "346.1,110.5 174.1,288 160,352 224,337.9 400.6,164.9 \t\t" + }, + "children": [] + }] + }] + }] + }, { + "name": "path", + "attribs": { + "d": "M384,256v150c0,5.1-3.9,10.1-9.2,10.1s-269-0.1-269-0.1c-5.6,0-9.8-5.4-9.8-10s0-268,0-268c0-5,4.7-10,10.6-10H256l32-32\r\n\t\tH87.4c-13,0-23.4,10.3-23.4,23.3v305.3c0,12.9,10.5,23.4,23.4,23.4h305.3c12.9,0,23.3-10.5,23.3-23.4V224L384,256z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M384,256v150c0,5.1-3.9,10.1-9.2,10.1s-269-0.1-269-0.1c-5.6,0-9.8-5.4-9.8-10s0-268,0-268c0-5,4.7-10,10.6-10H256l32-32\r\n\t\tH87.4c-13,0-23.4,10.3-23.4,23.3v305.3c0,12.9,10.5,23.4,23.4,23.4h305.3c12.9,0,23.3-10.5,23.3-23.4V224L384,256z" + }, + "children": [] + }] + }] + }] +}; +exports.compose = compose; \ No newline at end of file diff --git a/dist/ionicons/connectionBars.js b/dist/ionicons/connectionBars.js new file mode 100644 index 000000000..86f1368fd --- /dev/null +++ b/dist/ionicons/connectionBars.js @@ -0,0 +1,87 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.connectionBars = void 0; +var connectionBars = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "80", + "y": "352", + "width": "64", + "height": "64" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "80", + "y": "352", + "width": "64", + "height": "64" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "176", + "y": "288", + "width": "64", + "height": "128" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "176", + "y": "288", + "width": "64", + "height": "128" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "272", + "y": "192", + "width": "64", + "height": "224" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "272", + "y": "192", + "width": "64", + "height": "224" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "368", + "y": "96", + "width": "64", + "height": "320" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "368", + "y": "96", + "width": "64", + "height": "320" + }, + "children": [] + }] + }] + }] +}; +exports.connectionBars = connectionBars; \ No newline at end of file diff --git a/dist/ionicons/contrast.js b/dist/ionicons/contrast.js new file mode 100644 index 000000000..2b51b60c7 --- /dev/null +++ b/dist/ionicons/contrast.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.contrast = void 0; +var contrast = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,32C132.3,32,32,132.3,32,256c0,123.7,100.3,224,224,224c123.7,0,224-100.3,224-224C480,132.3,379.7,32,256,32z\r\n\t M391.8,391.8C355.5,428,307,448,256,448V64c51,0,99.5,20,135.8,56.2C428,156.5,448,204.7,448,256C448,307.3,428,355.5,391.8,391.8z\r\n\t" + }, + "children": [] + }] +}; +exports.contrast = contrast; \ No newline at end of file diff --git a/dist/ionicons/crop.js b/dist/ionicons/crop.js new file mode 100644 index 000000000..fe25807fc --- /dev/null +++ b/dist/ionicons/crop.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.crop = void 0; +var crop = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "352", + "y": "432", + "width": "64", + "height": "48" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "352", + "y": "432", + "width": "64", + "height": "48" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "416,352 416,96 176,96 176,160 352,160 352,352 160,352 160,32 96,32 96,96 32,96 32,160 96,160 96,416 480,416 \r\n\t\t480,352 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "416,352 416,96 176,96 176,160 352,160 352,352 160,352 160,32 96,32 96,96 32,96 32,160 96,160 96,416 480,416 \r\n\t\t480,352 \t" + }, + "children": [] + }] + }] + }] +}; +exports.crop = crop; \ No newline at end of file diff --git a/dist/ionicons/cube.js b/dist/ionicons/cube.js new file mode 100644 index 000000000..068fccd15 --- /dev/null +++ b/dist/ionicons/cube.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cube = void 0; +var cube = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M467.301,168.084c-1.805,0-3.516,0.329-5.07,0.962l-2.281,1.15l-171.475,88.938l-3.888,1.996c0,0-0.052,0.023-0.052,0.047\r\n\t\tc-7.56,4.668-12.535,12.506-12.535,21.425v185.854c0,6.382,5.649,11.544,12.69,11.544c2.178,0,4.251-0.513,6.065-1.404\r\n\t\tc0.155-0.095,0.363-0.188,0.519-0.282l174.731-92.694l0.259-0.141c8.241-4.504,13.735-12.742,13.735-22.105V179.582\r\n\t\tC480,173.223,474.299,168.084,467.301,168.084z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M467.301,168.084c-1.805,0-3.516,0.329-5.07,0.962l-2.281,1.15l-171.475,88.938l-3.888,1.996c0,0-0.052,0.023-0.052,0.047\r\n\t\tc-7.56,4.668-12.535,12.506-12.535,21.425v185.854c0,6.382,5.649,11.544,12.69,11.544c2.178,0,4.251-0.513,6.065-1.404\r\n\t\tc0.155-0.095,0.363-0.188,0.519-0.282l174.731-92.694l0.259-0.141c8.241-4.504,13.735-12.742,13.735-22.105V179.582\r\n\t\tC480,173.223,474.299,168.084,467.301,168.084z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M454.273,118.521l-181.7-81.731c0,0-10.659-4.79-16.577-4.79s-16.526,4.79-16.526,4.79L57.614,118.521\r\n\t\tc0,0-7.989,3.292-7.989,9.479c0,6.562,8.3,11.5,8.3,11.5l182.582,96.371l2.902,1.479c3.784,1.687,8.077,2.649,12.587,2.649\r\n\t\tc4.561,0,8.915-0.963,12.742-2.696l2.539-1.315l182.893-96.536c0,0,7.508-4.036,7.508-11.453\r\n\t\tC461.678,121.5,454.273,118.521,454.273,118.521z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M454.273,118.521l-181.7-81.731c0,0-10.659-4.79-16.577-4.79s-16.526,4.79-16.526,4.79L57.614,118.521\r\n\t\tc0,0-7.989,3.292-7.989,9.479c0,6.562,8.3,11.5,8.3,11.5l182.582,96.371l2.902,1.479c3.784,1.687,8.077,2.649,12.587,2.649\r\n\t\tc4.561,0,8.915-0.963,12.742-2.696l2.539-1.315l182.893-96.536c0,0,7.508-4.036,7.508-11.453\r\n\t\tC461.678,121.5,454.273,118.521,454.273,118.521z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M227.466,261.178l-3.992-2.043L52.042,170.197l-2.28-1.15c-1.495-0.634-3.258-0.962-5.071-0.962\r\n\t\tc-6.997,0-12.69,5.138-12.69,11.497v183.792c0,9.388,5.485,17.602,13.727,22.105l0.208,0.141l174.739,92.694l0,0\r\n\t\tc1.918,1.08,4.199,1.687,6.636,1.687c6.989,0,12.69-5.162,12.69-11.544V282.603C240,273.684,235.024,265.846,227.466,261.178z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M227.466,261.178l-3.992-2.043L52.042,170.197l-2.28-1.15c-1.495-0.634-3.258-0.962-5.071-0.962\r\n\t\tc-6.997,0-12.69,5.138-12.69,11.497v183.792c0,9.388,5.485,17.602,13.727,22.105l0.208,0.141l174.739,92.694l0,0\r\n\t\tc1.918,1.08,4.199,1.687,6.636,1.687c6.989,0,12.69-5.162,12.69-11.544V282.603C240,273.684,235.024,265.846,227.466,261.178z" + }, + "children": [] + }] + }] + }] +}; +exports.cube = cube; \ No newline at end of file diff --git a/dist/ionicons/disc.js b/dist/ionicons/disc.js new file mode 100644 index 000000000..8089f1acd --- /dev/null +++ b/dist/ionicons/disc.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.disc = void 0; +var disc = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,158.9c-53.7,0-97.2,43.5-97.2,97.2c0,53.7,43.5,97.1,97.2,97.1c53.7,0,97.2-43.5,97.2-97.1\r\n\t\tC353.2,202.4,309.7,158.9,256,158.9z M256,299.5c-24,0-43.5-19.5-43.5-43.5c0-24,19.5-43.5,43.5-43.5c24,0,43.5,19.5,43.5,43.5\r\n\t\tC299.5,280,280,299.5,256,299.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,158.9c-53.7,0-97.2,43.5-97.2,97.2c0,53.7,43.5,97.1,97.2,97.1c53.7,0,97.2-43.5,97.2-97.1\r\n\t\tC353.2,202.4,309.7,158.9,256,158.9z M256,299.5c-24,0-43.5-19.5-43.5-43.5c0-24,19.5-43.5,43.5-43.5c24,0,43.5,19.5,43.5,43.5\r\n\t\tC299.5,280,280,299.5,256,299.5z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,32C132.3,32,32,132.3,32,256c0,123.7,100.3,224,224,224s224-100.3,224-224C480,132.3,379.7,32,256,32z M256,378.8\r\n\t\tc-67.8,0-122.8-55-122.8-122.8c0-67.8,55-122.8,122.8-122.8c67.8,0,122.8,55,122.8,122.8C378.8,323.8,323.8,378.8,256,378.8z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,32C132.3,32,32,132.3,32,256c0,123.7,100.3,224,224,224s224-100.3,224-224C480,132.3,379.7,32,256,32z M256,378.8\r\n\t\tc-67.8,0-122.8-55-122.8-122.8c0-67.8,55-122.8,122.8-122.8c67.8,0,122.8,55,122.8,122.8C378.8,323.8,323.8,378.8,256,378.8z" + }, + "children": [] + }] + }] + }] +}; +exports.disc = disc; \ No newline at end of file diff --git a/dist/ionicons/documentIcon.js b/dist/ionicons/documentIcon.js new file mode 100644 index 000000000..b7519a944 --- /dev/null +++ b/dist/ionicons/documentIcon.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.documentIcon = void 0; +var documentIcon = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M399.3,168.9c-0.7-2.9-2-5-3.5-6.8l-83.7-91.7c-1.9-2.1-4.1-3.1-6.6-4.4c-2.9-1.5-6.1-1.6-9.4-1.6H136.2\r\n\tc-12.4,0-23.7,9.6-23.7,22.9v335.2c0,13.4,11.3,25.9,23.7,25.9h243.1c12.4,0,21.2-12.5,21.2-25.9V178.4\r\n\tC400.5,174.8,400.1,172.2,399.3,168.9z M305.5,111l58,63.5h-58V111z M144.5,416.5v-320h129v81.7c0,14.8,13.4,28.3,28.1,28.3h66.9\r\n\tv210H144.5z" + }, + "children": [] + }] +}; +exports.documentIcon = documentIcon; \ No newline at end of file diff --git a/dist/ionicons/documentText.js b/dist/ionicons/documentText.js new file mode 100644 index 000000000..0288a92a8 --- /dev/null +++ b/dist/ionicons/documentText.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.documentText = void 0; +var documentText = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M398.6,169.2c-0.9-2.2-2-4.3-3.5-6.1l-83.8-91.7c-1.9-2.1-4.2-3.6-6.7-4.9c-2.9-1.5-6.1-2.1-9.5-2.1H135.2\r\n\t\tc-12.4,0-22.7,10.6-22.7,23.9v335.2c0,13.4,10.3,24.9,22.7,24.9h243.1c12.4,0,22.2-11.5,22.2-24.9V179.4\r\n\t\tC400.5,175.8,400,172.3,398.6,169.2z M160.5,178.6c0-1.5,1.8-2.1,3.4-2.1h70.8c1.6,0,2.8,0.6,2.8,2.1v10.8c0,1.4-1.1,3.1-2.8,3.1\r\n\t\th-70.8c-1.6,0-3.4-1.7-3.4-3.1V178.6z M160.5,306.6c0-1.5,1.8-2.1,3.4-2.1h122.2c1.6,0,2.4,0.6,2.4,2.1v10.8c0,1.4-0.7,3.1-2.4,3.1\r\n\t\tH163.9c-1.6,0-3.4-1.7-3.4-3.1V306.6z M320.5,381.4c0,1.4-0.7,3.1-2.4,3.1H163.9c-1.6,0-3.4-1.7-3.4-3.1v-10.8\r\n\t\tc0-1.5,1.8-2.1,3.4-2.1h154.2c1.6,0,2.4,0.6,2.4,2.1V381.4z M352.5,253.4c0,1.4-0.7,3.1-2.4,3.1H163.9c-1.6,0-3.4-1.7-3.4-3.1\r\n\t\tv-10.8c0-1.5,1.8-2.1,3.4-2.1h186.2c1.6,0,2.4,0.6,2.4,2.1V253.4z M305.6,177.5c-5.6,0-11.1-5.2-11.1-11.3v-66l71.2,77.3H305.6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M398.6,169.2c-0.9-2.2-2-4.3-3.5-6.1l-83.8-91.7c-1.9-2.1-4.2-3.6-6.7-4.9c-2.9-1.5-6.1-2.1-9.5-2.1H135.2\r\n\t\tc-12.4,0-22.7,10.6-22.7,23.9v335.2c0,13.4,10.3,24.9,22.7,24.9h243.1c12.4,0,22.2-11.5,22.2-24.9V179.4\r\n\t\tC400.5,175.8,400,172.3,398.6,169.2z M160.5,178.6c0-1.5,1.8-2.1,3.4-2.1h70.8c1.6,0,2.8,0.6,2.8,2.1v10.8c0,1.4-1.1,3.1-2.8,3.1\r\n\t\th-70.8c-1.6,0-3.4-1.7-3.4-3.1V178.6z M160.5,306.6c0-1.5,1.8-2.1,3.4-2.1h122.2c1.6,0,2.4,0.6,2.4,2.1v10.8c0,1.4-0.7,3.1-2.4,3.1\r\n\t\tH163.9c-1.6,0-3.4-1.7-3.4-3.1V306.6z M320.5,381.4c0,1.4-0.7,3.1-2.4,3.1H163.9c-1.6,0-3.4-1.7-3.4-3.1v-10.8\r\n\t\tc0-1.5,1.8-2.1,3.4-2.1h154.2c1.6,0,2.4,0.6,2.4,2.1V381.4z M352.5,253.4c0,1.4-0.7,3.1-2.4,3.1H163.9c-1.6,0-3.4-1.7-3.4-3.1\r\n\t\tv-10.8c0-1.5,1.8-2.1,3.4-2.1h186.2c1.6,0,2.4,0.6,2.4,2.1V253.4z M305.6,177.5c-5.6,0-11.1-5.2-11.1-11.3v-66l71.2,77.3H305.6z" + }, + "children": [] + }] + }] + }] +}; +exports.documentText = documentText; \ No newline at end of file diff --git a/dist/ionicons/drag.js b/dist/ionicons/drag.js new file mode 100644 index 000000000..1bd1219ef --- /dev/null +++ b/dist/ionicons/drag.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.drag = void 0; +var drag = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "y": "144", + "width": "512", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "y": "144", + "width": "512", + "height": "32" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "y": "240", + "width": "512", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "y": "240", + "width": "512", + "height": "32" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "y": "336", + "width": "512", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "y": "336", + "width": "512", + "height": "32" + }, + "children": [] + }] + }] + }] +}; +exports.drag = drag; \ No newline at end of file diff --git a/dist/ionicons/earth.js b/dist/ionicons/earth.js new file mode 100644 index 000000000..a572be940 --- /dev/null +++ b/dist/ionicons/earth.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.earth = void 0; +var earth = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M357.275,125.525c-2.209-3.986-9.498-11.837-13.977-13.325c-5.979-0.921-2.398,4.413-2.398,6.7\r\n\t\tc-1.543,1.157-3.941,2.454-5.102,4c-0.699,0.6,1.704,6.103,6.337,4.335s1.964,1.799,5.164,8.865s9.607,7.207,12.49,5.067\r\n\t\tC363.444,138.455,359.286,129.155,357.275,125.525z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M357.275,125.525c-2.209-3.986-9.498-11.837-13.977-13.325c-5.979-0.921-2.398,4.413-2.398,6.7\r\n\t\tc-1.543,1.157-3.941,2.454-5.102,4c-0.699,0.6,1.704,6.103,6.337,4.335s1.964,1.799,5.164,8.865s9.607,7.207,12.49,5.067\r\n\t\tC363.444,138.455,359.286,129.155,357.275,125.525z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M375.8,170.6c-0.001,0.006-0.004,0.011-0.005,0.017C375.795,170.629,375.797,170.629,375.8,170.6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M375.8,170.6c-0.001,0.006-0.004,0.011-0.005,0.017C375.795,170.629,375.797,170.629,375.8,170.6z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M434.6,197.1C435,197.1,432.8,196.7,434.6,197.1L434.6,197.1z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M434.6,197.1C435,197.1,432.8,196.7,434.6,197.1L434.6,197.1z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,32C132.3,32,32,132.3,32,256c0,123.701,100.3,224,224,224c123.701,0,224-100.299,224-224C480,132.3,379.701,32,256,32\r\n\t\tz M173.399,429.424c-5.515-3.133-9.374-7.56-10.961-15.929c-3.947-20.808-0.303-32.067,17.962-44.245\r\n\t\tc8.604-5.736,10.022-12.672,16.9-19.55c1.685-2.14,6.211-10.374,9.2-10.8c3.637-0.779,13.709-2.527,15.7-6.5\r\n\t\tc3.79-5.146,12.127-27.398,15.8-29.602c5.997-3.925,14.419-15.96,8.3-23.1c-7.021-8.643-16.799-8.766-25.9-13.301\r\n\t\tc-8.015-4.008-11.574-22.281-17.7-28.601c-11.912-12.136-29.999-19.199-45-26.7c-8.116-3.25-7.344-4.256-13.7,2.1\r\n\t\tc-8.162,8.162-20.093-2.067-21.3-10.5c-0.09-2.802-3.296-18.216-1.4-19.4c17.956-11.225-8.328-8.64-10.5-13.8\r\n\t\tc-5.355-14.993,13.008-26.86,25.4-28.1c13.885-1.738,16.784,21.895,22.1,19.9c2.556-1.276,2.566-12.394,2.9-14.8\r\n\t\tc1.267-8.029,3.588-9.273,11.4-12.175c9.098-3.379,16.063-7.617,25.7-9.225c11.006-3.195,20.317-1.533,28.8-8.6\r\n\t\tc3.888-2.915,6.704,1.58,10.4,2.4c7.999,1.599,9.7-11.1,9.7-15.9c-0.034-4.665,1.265-8.63-4.7-13.6\r\n\t\tc-7.806-6.069-19.029-0.869-25.3,5.4c-7.574,7.035-16.357,6.55-13.8-5.6c0.634-4.433,10.209-9.587,14-12\r\n\t\tc3.7-2.222,5.904,2.522,10.4,1.4c6.579-1.463,9.034,4.735,16.8,4.8c3.233-0.731,14.796-6.881,8.614-19.366\r\n\t\tC254.143,64.021,255.07,64,256,64c1.855,0,3.707,0.034,5.555,0.086c2.805,8.881-5.965,16.443-1.555,27.614\r\n\t\tc8.79,21.475,15.992,3.014,24.7-7c2.849-2.849,4.633-2.211,9.3-3.1c2.896-0.483,7.055-9.27,8.393-11.982\r\n\t\tc20.058,4.956,39.121,13.127,56.567,24.255c-7.447,0.792-9.348-1.396-9.234,7.377c0.042,3.317,0.297,13.319,5.274,14.15\r\n\t\tc8.277,0.975,6.781,6.832,14.551,7.85c7.443,0.976,2.816,7.553,5.851,14.05c3.393,10.227-19.806,13.302-24.302,14.8\r\n\t\tc-13.64,4.554,6.34,24.41,15.2,22.3c2.817-0.704,12.215-1.902,12.867-5.067c-0.011-0.323-1.836-11.012-0.867-12.233\r\n\t\tc1.533-1.934,5.123-2.946,10.776,0.255c13.374,7.573,20.146,25.7,35.897,29.295c2.146,0.489,5.86-0.15,8.494,2.033\r\n\t\tc2.231,3.015,7.92,8.416,1.131,8.416c-9.017-2.003-13.78,0.859-21.198-4.874c-7.733-5.977-12.543-10.891-22.75-11.076\r\n\t\tc-8.79-0.159-16.68-3.819-25.738-2.35c-5.05,0.819-10.038,2.811-14.912,4.3c-4.617,1.538-5.51,9.765-10.2,10.7\r\n\t\tc-19.467,4.581-15.261,23.169-18.773,37.913c-1.351,5.662-6.025,21.003-0.926,26.087c9.12,8.854,19.783,21.035,33.176,22.963\r\n\t\tc7.206,1.037,22.954-4.576,27.823,2.737c2.062,4.104,7.447-3.03,8.9,0.601c3.663,10.988-4.263,18.186-4.337,28.551\r\n\t\tc-0.11,15.203,9.178,20.57-3.263,34.148c-13.642,13.607-4.333,30.788-11.9,47c-4.042,8.337-4.808,19.894-10.872,23.777\r\n\t\tc-13.321,8.532-27.7,15.399-42.714,20.384c-26.627,8.838-55.155,11.672-83.017,8.456c-14.619-1.688-29.041-5.057-42.88-10.065\r\n\t\tc-3.769-1.363-7.28-2.505-10.472-3.704C178.143,431.619,175.759,430.55,173.399,429.424z M131.699,402.329\r\n\t\tc-0.468-0.397-0.935-0.796-1.399-1.198c-3.444-2.992-6.802-6.113-10.06-9.371c-3.388-3.388-6.634-6.881-9.734-10.471\r\n\t\tc-0.035-0.041-0.07-0.082-0.105-0.123c-0.637-0.738-1.257-1.486-1.882-2.234C56.834,316.471,49.259,225.004,92.6,155.1\r\n\t\tc6.078,6.078-4.101,18.024,7.5,26c5.124,3.606,10.021,2.159,9,8.8c-0.993,6.449,5.355,6.335,6.3,12\r\n\t\tc2.842,12.429,19.207,18.642,9.9,32.6c-9.118,12.625-16.992,26.729-10.1,42.8c2.254,5.86,7.919,11.858,12.222,16.244\r\n\t\tc7.813,7.966,7.377,3.188,7.377,13.256c-0.156,4.373,5.261,8.897,4.7,11.7c-1.001,8.011-2.904,15.93-3.9,23.9\r\n\t\tc-1.792,28.638-0.129,56.662,21.3,78.1c-7.969-4.806-15.636-10.249-22.968-16.29C133.183,403.591,132.44,402.961,131.699,402.329z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,32C132.3,32,32,132.3,32,256c0,123.701,100.3,224,224,224c123.701,0,224-100.299,224-224C480,132.3,379.701,32,256,32\r\n\t\tz M173.399,429.424c-5.515-3.133-9.374-7.56-10.961-15.929c-3.947-20.808-0.303-32.067,17.962-44.245\r\n\t\tc8.604-5.736,10.022-12.672,16.9-19.55c1.685-2.14,6.211-10.374,9.2-10.8c3.637-0.779,13.709-2.527,15.7-6.5\r\n\t\tc3.79-5.146,12.127-27.398,15.8-29.602c5.997-3.925,14.419-15.96,8.3-23.1c-7.021-8.643-16.799-8.766-25.9-13.301\r\n\t\tc-8.015-4.008-11.574-22.281-17.7-28.601c-11.912-12.136-29.999-19.199-45-26.7c-8.116-3.25-7.344-4.256-13.7,2.1\r\n\t\tc-8.162,8.162-20.093-2.067-21.3-10.5c-0.09-2.802-3.296-18.216-1.4-19.4c17.956-11.225-8.328-8.64-10.5-13.8\r\n\t\tc-5.355-14.993,13.008-26.86,25.4-28.1c13.885-1.738,16.784,21.895,22.1,19.9c2.556-1.276,2.566-12.394,2.9-14.8\r\n\t\tc1.267-8.029,3.588-9.273,11.4-12.175c9.098-3.379,16.063-7.617,25.7-9.225c11.006-3.195,20.317-1.533,28.8-8.6\r\n\t\tc3.888-2.915,6.704,1.58,10.4,2.4c7.999,1.599,9.7-11.1,9.7-15.9c-0.034-4.665,1.265-8.63-4.7-13.6\r\n\t\tc-7.806-6.069-19.029-0.869-25.3,5.4c-7.574,7.035-16.357,6.55-13.8-5.6c0.634-4.433,10.209-9.587,14-12\r\n\t\tc3.7-2.222,5.904,2.522,10.4,1.4c6.579-1.463,9.034,4.735,16.8,4.8c3.233-0.731,14.796-6.881,8.614-19.366\r\n\t\tC254.143,64.021,255.07,64,256,64c1.855,0,3.707,0.034,5.555,0.086c2.805,8.881-5.965,16.443-1.555,27.614\r\n\t\tc8.79,21.475,15.992,3.014,24.7-7c2.849-2.849,4.633-2.211,9.3-3.1c2.896-0.483,7.055-9.27,8.393-11.982\r\n\t\tc20.058,4.956,39.121,13.127,56.567,24.255c-7.447,0.792-9.348-1.396-9.234,7.377c0.042,3.317,0.297,13.319,5.274,14.15\r\n\t\tc8.277,0.975,6.781,6.832,14.551,7.85c7.443,0.976,2.816,7.553,5.851,14.05c3.393,10.227-19.806,13.302-24.302,14.8\r\n\t\tc-13.64,4.554,6.34,24.41,15.2,22.3c2.817-0.704,12.215-1.902,12.867-5.067c-0.011-0.323-1.836-11.012-0.867-12.233\r\n\t\tc1.533-1.934,5.123-2.946,10.776,0.255c13.374,7.573,20.146,25.7,35.897,29.295c2.146,0.489,5.86-0.15,8.494,2.033\r\n\t\tc2.231,3.015,7.92,8.416,1.131,8.416c-9.017-2.003-13.78,0.859-21.198-4.874c-7.733-5.977-12.543-10.891-22.75-11.076\r\n\t\tc-8.79-0.159-16.68-3.819-25.738-2.35c-5.05,0.819-10.038,2.811-14.912,4.3c-4.617,1.538-5.51,9.765-10.2,10.7\r\n\t\tc-19.467,4.581-15.261,23.169-18.773,37.913c-1.351,5.662-6.025,21.003-0.926,26.087c9.12,8.854,19.783,21.035,33.176,22.963\r\n\t\tc7.206,1.037,22.954-4.576,27.823,2.737c2.062,4.104,7.447-3.03,8.9,0.601c3.663,10.988-4.263,18.186-4.337,28.551\r\n\t\tc-0.11,15.203,9.178,20.57-3.263,34.148c-13.642,13.607-4.333,30.788-11.9,47c-4.042,8.337-4.808,19.894-10.872,23.777\r\n\t\tc-13.321,8.532-27.7,15.399-42.714,20.384c-26.627,8.838-55.155,11.672-83.017,8.456c-14.619-1.688-29.041-5.057-42.88-10.065\r\n\t\tc-3.769-1.363-7.28-2.505-10.472-3.704C178.143,431.619,175.759,430.55,173.399,429.424z M131.699,402.329\r\n\t\tc-0.468-0.397-0.935-0.796-1.399-1.198c-3.444-2.992-6.802-6.113-10.06-9.371c-3.388-3.388-6.634-6.881-9.734-10.471\r\n\t\tc-0.035-0.041-0.07-0.082-0.105-0.123c-0.637-0.738-1.257-1.486-1.882-2.234C56.834,316.471,49.259,225.004,92.6,155.1\r\n\t\tc6.078,6.078-4.101,18.024,7.5,26c5.124,3.606,10.021,2.159,9,8.8c-0.993,6.449,5.355,6.335,6.3,12\r\n\t\tc2.842,12.429,19.207,18.642,9.9,32.6c-9.118,12.625-16.992,26.729-10.1,42.8c2.254,5.86,7.919,11.858,12.222,16.244\r\n\t\tc7.813,7.966,7.377,3.188,7.377,13.256c-0.156,4.373,5.261,8.897,4.7,11.7c-1.001,8.011-2.904,15.93-3.9,23.9\r\n\t\tc-1.792,28.638-0.129,56.662,21.3,78.1c-7.969-4.806-15.636-10.249-22.968-16.29C133.183,403.591,132.44,402.961,131.699,402.329z" + }, + "children": [] + }] + }] + }] +}; +exports.earth = earth; \ No newline at end of file diff --git a/dist/ionicons/easel.js b/dist/ionicons/easel.js new file mode 100644 index 000000000..ffa335d44 --- /dev/null +++ b/dist/ionicons/easel.js @@ -0,0 +1,99 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.easel = void 0; +var easel = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "80", + "y": "144", + "width": "352", + "height": "192" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "80", + "y": "144", + "width": "352", + "height": "192" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M464,96H48c-8.837,0-16,7.163-16,16v256c0,8.837,6.932,16,15.768,16H464c8.837,0,16-7.163,16-16V112\r\n\t\tC480,103.163,472.837,96,464,96z M448,352H64V128h384V352z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M464,96H48c-8.837,0-16,7.163-16,16v256c0,8.837,6.932,16,15.768,16H464c8.837,0,16-7.163,16-16V112\r\n\t\tC480,103.163,472.837,96,464,96z M448,352H64V128h384V352z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "80,480 112,480 140.147,400 108.835,400 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "80,480 112,480 140.147,400 108.835,400 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "270.83,32 241.472,32 224.171,80 288.099,80 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "270.83,32 241.472,32 224.171,80 288.099,80 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "371.853,400 400,480 432,480 403.22,400 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "371.853,400 400,480 432,480 403.22,400 \t" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "240", + "y": "400", + "width": "32", + "height": "48" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "240", + "y": "400", + "width": "32", + "height": "48" + }, + "children": [] + }] + }] + }] +}; +exports.easel = easel; \ No newline at end of file diff --git a/dist/ionicons/edit.js b/dist/ionicons/edit.js new file mode 100644 index 000000000..832102988 --- /dev/null +++ b/dist/ionicons/edit.js @@ -0,0 +1,59 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.edit = void 0; +var edit = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "178.846", + "y": "92.087", + "transform": "matrix(-0.7071 -0.7071 0.7071 -0.7071 224.3476 631.1498)", + "width": "128.085", + "height": "354.049" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "178.846", + "y": "92.087", + "transform": "matrix(-0.7071 -0.7071 0.7071 -0.7071 224.3476 631.1498)", + "width": "128.085", + "height": "354.049" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M471.723,88.393l-48.115-48.114c-11.723-11.724-31.558-10.896-44.304,1.85l-45.202,45.203l90.569,90.568l45.202-45.202\r\n\t\tC482.616,119.952,483.445,100.116,471.723,88.393z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M471.723,88.393l-48.115-48.114c-11.723-11.724-31.558-10.896-44.304,1.85l-45.202,45.203l90.569,90.568l45.202-45.202\r\n\t\tC482.616,119.952,483.445,100.116,471.723,88.393z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "64.021,363.252 32,480 148.737,447.979 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "64.021,363.252 32,480 148.737,447.979 \t" + }, + "children": [] + }] + }] + }] +}; +exports.edit = edit; \ No newline at end of file diff --git a/dist/ionicons/egg.js b/dist/ionicons/egg.js new file mode 100644 index 000000000..9e9c1ba3e --- /dev/null +++ b/dist/ionicons/egg.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.egg = void 0; +var egg = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,32C192,32,96,165.2,96,288.9C96,412.6,160,480,256,480s160-67.4,160-191.1C416,165.2,320,32,256,32z" + }, + "children": [] + }] +}; +exports.egg = egg; \ No newline at end of file diff --git a/dist/ionicons/eject.js b/dist/ionicons/eject.js new file mode 100644 index 000000000..30035bbe9 --- /dev/null +++ b/dist/ionicons/eject.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.eject = void 0; +var eject = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M399,320L399,320c10,0,16.8-7.1,16.8-15.9c0-3.3-1.1-6.1-2.8-9L275.3,104.7c-4.6-5.3-11.5-8.7-19.3-8.7\r\n\t\tc-7.7,0-14.6,3.4-19.2,8.7l-138,190.8c-1.7,2.6-2.6,5.5-2.6,8.7c0,8.7,6.8,15.8,16.8,15.8v0H399z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M399,320L399,320c10,0,16.8-7.1,16.8-15.9c0-3.3-1.1-6.1-2.8-9L275.3,104.7c-4.6-5.3-11.5-8.7-19.3-8.7\r\n\t\tc-7.7,0-14.6,3.4-19.2,8.7l-138,190.8c-1.7,2.6-2.6,5.5-2.6,8.7c0,8.7,6.8,15.8,16.8,15.8v0H399z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M403.7,352H108.4c-6.8,0-12.4,5.4-12.4,12.2v39.6c0,6.7,5.5,12.2,12.4,12.2h295.3c6.8,0,12.3-5.5,12.3-12.2v-39.6\r\n\t\tC416,357.4,410.5,352,403.7,352z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M403.7,352H108.4c-6.8,0-12.4,5.4-12.4,12.2v39.6c0,6.7,5.5,12.2,12.4,12.2h295.3c6.8,0,12.3-5.5,12.3-12.2v-39.6\r\n\t\tC416,357.4,410.5,352,403.7,352z" + }, + "children": [] + }] + }] + }] +}; +exports.eject = eject; \ No newline at end of file diff --git a/dist/ionicons/email.js b/dist/ionicons/email.js new file mode 100644 index 000000000..58329e634 --- /dev/null +++ b/dist/ionicons/email.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.email = void 0; +var email = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M67,148.7c11,5.8,163.8,89.1,169.5,92.1c5.7,3,11.5,4.4,20.5,4.4c9,0,14.8-1.4,20.5-4.4c5.7-3,158.5-86.3,169.5-92.1\r\n\t\tc4.1-2.1,11-5.9,12.5-10.2c2.6-7.6-0.2-10.5-11.3-10.5H257H65.8c-11.1,0-13.9,3-11.3,10.5C56,142.9,62.9,146.6,67,148.7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M67,148.7c11,5.8,163.8,89.1,169.5,92.1c5.7,3,11.5,4.4,20.5,4.4c9,0,14.8-1.4,20.5-4.4c5.7-3,158.5-86.3,169.5-92.1\r\n\t\tc4.1-2.1,11-5.9,12.5-10.2c2.6-7.6-0.2-10.5-11.3-10.5H257H65.8c-11.1,0-13.9,3-11.3,10.5C56,142.9,62.9,146.6,67,148.7z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M455.7,153.2c-8.2,4.2-81.8,56.6-130.5,88.1l82.2,92.5c2,2,2.9,4.4,1.8,5.6c-1.2,1.1-3.8,0.5-5.9-1.4l-98.6-83.2\r\n\t\tc-14.9,9.6-25.4,16.2-27.2,17.2c-7.7,3.9-13.1,4.4-20.5,4.4c-7.4,0-12.8-0.5-20.5-4.4c-1.9-1-12.3-7.6-27.2-17.2l-98.6,83.2\r\n\t\tc-2,2-4.7,2.6-5.9,1.4c-1.2-1.1-0.3-3.6,1.7-5.6l82.1-92.5c-48.7-31.5-123.1-83.9-131.3-88.1c-8.8-4.5-9.3,0.8-9.3,4.9\r\n\t\tc0,4.1,0,205,0,205c0,9.3,13.7,20.9,23.5,20.9H257h185.5c9.8,0,21.5-11.7,21.5-20.9c0,0,0-201,0-205\r\n\t\tC464,153.9,464.6,148.7,455.7,153.2z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M455.7,153.2c-8.2,4.2-81.8,56.6-130.5,88.1l82.2,92.5c2,2,2.9,4.4,1.8,5.6c-1.2,1.1-3.8,0.5-5.9-1.4l-98.6-83.2\r\n\t\tc-14.9,9.6-25.4,16.2-27.2,17.2c-7.7,3.9-13.1,4.4-20.5,4.4c-7.4,0-12.8-0.5-20.5-4.4c-1.9-1-12.3-7.6-27.2-17.2l-98.6,83.2\r\n\t\tc-2,2-4.7,2.6-5.9,1.4c-1.2-1.1-0.3-3.6,1.7-5.6l82.1-92.5c-48.7-31.5-123.1-83.9-131.3-88.1c-8.8-4.5-9.3,0.8-9.3,4.9\r\n\t\tc0,4.1,0,205,0,205c0,9.3,13.7,20.9,23.5,20.9H257h185.5c9.8,0,21.5-11.7,21.5-20.9c0,0,0-201,0-205\r\n\t\tC464,153.9,464.6,148.7,455.7,153.2z" + }, + "children": [] + }] + }] + }] +}; +exports.email = email; \ No newline at end of file diff --git a/dist/ionicons/emailUnread.js b/dist/ionicons/emailUnread.js new file mode 100644 index 000000000..f8f9bb991 --- /dev/null +++ b/dist/ionicons/emailUnread.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.emailUnread = void 0; +var emailUnread = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "cx": "432", + "cy": "160", + "r": "64" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "432", + "cy": "160", + "r": "64" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M225,160H33.799c-11.1,0-13.898,3-11.299,10.5c1.5,4.4,8.4,8.1,12.5,10.2c11,5.8,163.799,89.1,169.5,92.1\r\n\t\t\tc5.699,3,11.5,4.4,20.5,4.4s14.799-1.4,20.5-4.4c3.79-1.995,72.625-39.497,121.559-66.107C357.594,193.551,352,177.433,352,160\r\n\t\t\tH225z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M225,160H33.799c-11.1,0-13.898,3-11.299,10.5c1.5,4.4,8.4,8.1,12.5,10.2c11,5.8,163.799,89.1,169.5,92.1\r\n\t\t\tc5.699,3,11.5,4.4,20.5,4.4s14.799-1.4,20.5-4.4c3.79-1.995,72.625-39.497,121.559-66.107C357.594,193.551,352,177.433,352,160\r\n\t\t\tH225z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M293.199,273.3l82.201,92.5c2,2,2.898,4.4,1.799,5.601c-1.199,1.1-3.799,0.5-5.9-1.4l-98.6-83.2\r\n\t\t\tc-14.9,9.601-25.4,16.2-27.199,17.2c-7.701,3.9-13.1,4.4-20.5,4.4s-12.801-0.5-20.5-4.4c-1.9-1-12.301-7.6-27.201-17.2l-98.6,83.2\r\n\t\t\tc-2,2-4.699,2.6-5.9,1.4C71.6,370.3,72.5,367.8,74.5,365.8l82.1-92.5C107.9,241.8,33.5,189.4,25.299,185.2\r\n\t\t\tC16.5,180.7,16,186,16,190.1c0,4.101,0,205,0,205C16,404.4,29.699,416,39.5,416H225h185.5c9.799,0,21.5-11.7,21.5-20.9\r\n\t\t\tc0,0,0-94.398,0-155.1c-21.726,0-41.416-8.673-55.832-22.729C350.167,235.173,318.36,257.025,293.199,273.3z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M293.199,273.3l82.201,92.5c2,2,2.898,4.4,1.799,5.601c-1.199,1.1-3.799,0.5-5.9-1.4l-98.6-83.2\r\n\t\t\tc-14.9,9.601-25.4,16.2-27.199,17.2c-7.701,3.9-13.1,4.4-20.5,4.4s-12.801-0.5-20.5-4.4c-1.9-1-12.301-7.6-27.201-17.2l-98.6,83.2\r\n\t\t\tc-2,2-4.699,2.6-5.9,1.4C71.6,370.3,72.5,367.8,74.5,365.8l82.1-92.5C107.9,241.8,33.5,189.4,25.299,185.2\r\n\t\t\tC16.5,180.7,16,186,16,190.1c0,4.101,0,205,0,205C16,404.4,29.699,416,39.5,416H225h185.5c9.799,0,21.5-11.7,21.5-20.9\r\n\t\t\tc0,0,0-94.398,0-155.1c-21.726,0-41.416-8.673-55.832-22.729C350.167,235.173,318.36,257.025,293.199,273.3z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.emailUnread = emailUnread; \ No newline at end of file diff --git a/dist/ionicons/erlenmeyerFlask.js b/dist/ionicons/erlenmeyerFlask.js new file mode 100644 index 000000000..ef212c71b --- /dev/null +++ b/dist/ionicons/erlenmeyerFlask.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.erlenmeyerFlask = void 0; +var erlenmeyerFlask = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M438.815,395.7L338.509,246.2c-12.8-20.3-19.009-44.4-19.009-70.2c0,0,0-73.5,0-93s12.592-33.25,15.009-42.083\r\n\t\tc2.296-8.392,0.512-8.417-15.188-8.417H192.526c-15.999,0-18.548,0.009-16.311,8.416C178.633,50,191.5,64.3,191.5,83.5\r\n\t\ts0,92.5,0,92.5c0,25.8-7.285,49.8-20.085,70.2l-49.279,76.5L73.035,395.6c-5.8,9-9.051,20.7-9.051,32.2\r\n\t\tc0,28,16.347,52.7,63.246,52.7h257.589c46.998,0,63.197-24.7,63.197-52.7C447.916,416.3,444.615,404.7,438.815,395.7z M409.218,441\r\n\t\tc-4.4,4.2-11.602,7.5-24.499,7.5h-257.59c-12.8,0-20.8-3.5-25.199-7.7c-2.7-2.6-6-7.05-6-13.35c0-5,1.4-10.125,3.9-14.125\r\n\t\tl99.039-150.392c15.699-25.199,24.632-55.231,24.632-86.932V64.5h64v111.4c0,31.199,7.761,61.3,23.859,87l100.523,150\r\n\t\tc2.499,4,3.968,9.25,3.968,14.25C415.85,433.55,411.918,438.4,409.218,441z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M438.815,395.7L338.509,246.2c-12.8-20.3-19.009-44.4-19.009-70.2c0,0,0-73.5,0-93s12.592-33.25,15.009-42.083\r\n\t\tc2.296-8.392,0.512-8.417-15.188-8.417H192.526c-15.999,0-18.548,0.009-16.311,8.416C178.633,50,191.5,64.3,191.5,83.5\r\n\t\ts0,92.5,0,92.5c0,25.8-7.285,49.8-20.085,70.2l-49.279,76.5L73.035,395.6c-5.8,9-9.051,20.7-9.051,32.2\r\n\t\tc0,28,16.347,52.7,63.246,52.7h257.589c46.998,0,63.197-24.7,63.197-52.7C447.916,416.3,444.615,404.7,438.815,395.7z M409.218,441\r\n\t\tc-4.4,4.2-11.602,7.5-24.499,7.5h-257.59c-12.8,0-20.8-3.5-25.199-7.7c-2.7-2.6-6-7.05-6-13.35c0-5,1.4-10.125,3.9-14.125\r\n\t\tl99.039-150.392c15.699-25.199,24.632-55.231,24.632-86.932V64.5h64v111.4c0,31.199,7.761,61.3,23.859,87l100.523,150\r\n\t\tc2.499,4,3.968,9.25,3.968,14.25C415.85,433.55,411.918,438.4,409.218,441z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M389.217,411.301c0.051,0.075,0.1,0.397,0,0.249L307.345,288.5H203.698l-81.069,123.151c-1.5,2.1-2.3,5.175-2.3,7.974\r\n\t\tc0,7.5,6.288,13.875,13.687,13.875h244c7.5,0,13.599-6.725,13.599-14.125C391.614,416.875,390.516,413.301,389.217,411.301z\r\n\t\t M302.021,341.7c-1.5-1.5-2.3-3.601-2.3-5.7s0.899-4.2,2.3-5.7c1.5-1.5,3.6-2.3,5.6-2.3c2.102,0,4.2,0.8,5.602,2.3\r\n\t\tc1.5,1.5,2.299,3.601,2.299,5.7s-0.899,4.2-2.299,5.7c-1.5,1.5-3.5,2.3-5.602,2.3C305.621,344,303.521,343.1,302.021,341.7z\r\n\t\t M348.92,400.7c-1.4,0.898-2.9,1.3-4.302,1.3c-2.499,0-5.099-1.3-6.598-3.6l-23.499-35.9c-2.4-3.7-1.4-8.7,2.299-11.1\r\n\t\tc1.4-0.9,2.9-1.301,4.4-1.301c2.6,0,5.1,1.301,6.5,3.601L351.22,389.6C353.618,393.299,352.618,398.299,348.92,400.7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M389.217,411.301c0.051,0.075,0.1,0.397,0,0.249L307.345,288.5H203.698l-81.069,123.151c-1.5,2.1-2.3,5.175-2.3,7.974\r\n\t\tc0,7.5,6.288,13.875,13.687,13.875h244c7.5,0,13.599-6.725,13.599-14.125C391.614,416.875,390.516,413.301,389.217,411.301z\r\n\t\t M302.021,341.7c-1.5-1.5-2.3-3.601-2.3-5.7s0.899-4.2,2.3-5.7c1.5-1.5,3.6-2.3,5.6-2.3c2.102,0,4.2,0.8,5.602,2.3\r\n\t\tc1.5,1.5,2.299,3.601,2.299,5.7s-0.899,4.2-2.299,5.7c-1.5,1.5-3.5,2.3-5.602,2.3C305.621,344,303.521,343.1,302.021,341.7z\r\n\t\t M348.92,400.7c-1.4,0.898-2.9,1.3-4.302,1.3c-2.499,0-5.099-1.3-6.598-3.6l-23.499-35.9c-2.4-3.7-1.4-8.7,2.299-11.1\r\n\t\tc1.4-0.9,2.9-1.301,4.4-1.301c2.6,0,5.1,1.301,6.5,3.601L351.22,389.6C353.618,393.299,352.618,398.299,348.92,400.7z" + }, + "children": [] + }] + }] + }] +}; +exports.erlenmeyerFlask = erlenmeyerFlask; \ No newline at end of file diff --git a/dist/ionicons/erlenmeyerFlaskBubbles.js b/dist/ionicons/erlenmeyerFlaskBubbles.js new file mode 100644 index 000000000..3237c2c95 --- /dev/null +++ b/dist/ionicons/erlenmeyerFlaskBubbles.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.erlenmeyerFlaskBubbles = void 0; +var erlenmeyerFlaskBubbles = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M445.9,427.1L328,227.9V78c0-7.7-6.5-14-14.5-14c-8,0-14.5,6.2-14.5,14v153.6c0,1.8,0.6,3.6,1.3,5.3\r\n\t\tc-7.6-11.1-20.6-18.4-35.4-18.4c-23.5,0-42.5,18.3-42.5,41c0,16.8,10.5,31.5,25.4,37.5h-72l35-58.5c1.2-2.1,2.1-4.5,2.1-6.9v-30.4\r\n\t\tc4,3.2,10,5.1,16.1,5.1c15.3,0,27.5-11.9,27.5-26.6c0-14.7-12.2-26.6-27.5-26.6c-6.1,0-12.1,1.9-16.1,5.1V78c0-7.7-6.5-14-14.5-14\r\n\t\tc-8,0-14.5,6.2-14.5,14v149.9L66.1,427.1c-2.5,4.3-2.6,9.6,0,13.9c2.6,4.3,7.2,7,12.4,7H256h177.5c5.1,0,9.8-2.6,12.4-7\r\n\t\tC448.5,436.8,448.4,431.4,445.9,427.1z M282.2,297c14.9-6,25.4-20.8,25.4-37.5c0-5.7-1.2-11.2-3.4-16.1l31,53.6H282.2z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M445.9,427.1L328,227.9V78c0-7.7-6.5-14-14.5-14c-8,0-14.5,6.2-14.5,14v153.6c0,1.8,0.6,3.6,1.3,5.3\r\n\t\tc-7.6-11.1-20.6-18.4-35.4-18.4c-23.5,0-42.5,18.3-42.5,41c0,16.8,10.5,31.5,25.4,37.5h-72l35-58.5c1.2-2.1,2.1-4.5,2.1-6.9v-30.4\r\n\t\tc4,3.2,10,5.1,16.1,5.1c15.3,0,27.5-11.9,27.5-26.6c0-14.7-12.2-26.6-27.5-26.6c-6.1,0-12.1,1.9-16.1,5.1V78c0-7.7-6.5-14-14.5-14\r\n\t\tc-8,0-14.5,6.2-14.5,14v149.9L66.1,427.1c-2.5,4.3-2.6,9.6,0,13.9c2.6,4.3,7.2,7,12.4,7H256h177.5c5.1,0,9.8-2.6,12.4-7\r\n\t\tC448.5,436.8,448.4,431.4,445.9,427.1z M282.2,297c14.9-6,25.4-20.8,25.4-37.5c0-5.7-1.2-11.2-3.4-16.1l31,53.6H282.2z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M265.1,128.6c12,0,21.7-9.4,21.7-20.9c0-11.6-9.7-20.9-21.7-20.9c-12,0-21.7,9.4-21.7,20.9\r\n\t\tC243.3,119.2,253.1,128.6,265.1,128.6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M265.1,128.6c12,0,21.7-9.4,21.7-20.9c0-11.6-9.7-20.9-21.7-20.9c-12,0-21.7,9.4-21.7,20.9\r\n\t\tC243.3,119.2,253.1,128.6,265.1,128.6z" + }, + "children": [] + }] + }] + }] +}; +exports.erlenmeyerFlaskBubbles = erlenmeyerFlaskBubbles; \ No newline at end of file diff --git a/dist/ionicons/eye.js b/dist/ionicons/eye.js new file mode 100644 index 000000000..368d90f81 --- /dev/null +++ b/dist/ionicons/eye.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.eye = void 0; +var eye = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,128c-81.9,0-145.7,48.8-224,128c67.4,67.7,124,128,224,128c99.9,0,173.4-76.4,224-126.6\r\n\t\tC428.2,198.6,354.8,128,256,128z M256,347.3c-49.4,0-89.6-41-89.6-91.3c0-50.4,40.2-91.3,89.6-91.3s89.6,41,89.6,91.3\r\n\t\tC345.6,306.4,305.4,347.3,256,347.3z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,128c-81.9,0-145.7,48.8-224,128c67.4,67.7,124,128,224,128c99.9,0,173.4-76.4,224-126.6\r\n\t\tC428.2,198.6,354.8,128,256,128z M256,347.3c-49.4,0-89.6-41-89.6-91.3c0-50.4,40.2-91.3,89.6-91.3s89.6,41,89.6,91.3\r\n\t\tC345.6,306.4,305.4,347.3,256,347.3z" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,224c0-7.9,2.9-15.1,7.6-20.7c-2.5-0.4-5-0.6-7.6-0.6c-28.8,0-52.3,23.9-52.3,53.3c0,29.4,23.5,53.3,52.3,53.3\r\n\t\t\ts52.3-23.9,52.3-53.3c0-2.3-0.2-4.6-0.4-6.9c-5.5,4.3-12.3,6.9-19.8,6.9C270.3,256,256,241.7,256,224z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,224c0-7.9,2.9-15.1,7.6-20.7c-2.5-0.4-5-0.6-7.6-0.6c-28.8,0-52.3,23.9-52.3,53.3c0,29.4,23.5,53.3,52.3,53.3\r\n\t\t\ts52.3-23.9,52.3-53.3c0-2.3-0.2-4.6-0.4-6.9c-5.5,4.3-12.3,6.9-19.8,6.9C270.3,256,256,241.7,256,224z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.eye = eye; \ No newline at end of file diff --git a/dist/ionicons/eyeDisabled.js b/dist/ionicons/eyeDisabled.js new file mode 100644 index 000000000..ffad7c40b --- /dev/null +++ b/dist/ionicons/eyeDisabled.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.eyeDisabled = void 0; +var eyeDisabled = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "style", + "attribs": { + "type": "text/css" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "class": "st0", + "d": "M376.4,158.3L448,86.6L425.4,64l-77.6,77.6C320,127.7,289.5,119,256,119c-81.9,0-145.7,52.2-224,137\r\n\tc34.8,37.4,66.8,72.7,103.3,98.1L64,425.4L86.6,448l76.9-76.9c27,13.7,57,21.9,92.5,21.9c99.9,0,173.4-81.8,224-135.5\r\n\tC452,223.4,417.6,185.7,376.4,158.3z M166.4,256c0-50.4,40.2-91.3,89.6-91.3c19.3,0,37.2,6.2,51.8,16.9l-50.7,50.7\r\n\tc-0.7-2.6-1.1-5.4-1.1-8.3c0-7.9,2.9-15.1,7.6-20.7c-2.5-0.4-5-0.6-7.6-0.6c-28.8,0-52.3,23.9-52.3,53.3c0,8.6,2,16.8,5.6,24\r\n\tL182,307.4C172.2,292.7,166.4,275,166.4,256z M256,347.3c-19.3,0-37.2-6.2-51.8-16.9l27.4-27.4c7.3,4,15.6,6.2,24.4,6.2\r\n\tc28.8,0,52.3-23.9,52.3-53.3c0-2.3-0.2-4.6-0.4-6.9c-5.5,4.3-12.3,6.9-19.8,6.9c-2.9,0-5.6-0.4-8.3-1.1l50.3-50.3\r\n\tc9.8,14.6,15.6,32.3,15.6,51.4C345.6,306.4,305.4,347.3,256,347.3z" + }, + "children": [] + }] +}; +exports.eyeDisabled = eyeDisabled; \ No newline at end of file diff --git a/dist/ionicons/female.js b/dist/ionicons/female.js new file mode 100644 index 000000000..c460ab0f0 --- /dev/null +++ b/dist/ionicons/female.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.female = void 0; +var female = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M288,284c55.2-14.2,96-64.3,96-124c0-70.7-57.3-128-128-128S128,89.3,128,160c0,59.6,40.8,109.7,96,124v68h-64v64h64v64h64\r\n\tv-64h64v-64h-64V284z M256,240c-44.1,0-80-35.9-80-80s35.9-80,80-80s80,35.9,80,80S300.1,240,256,240z" + }, + "children": [] + }] +}; +exports.female = female; \ No newline at end of file diff --git a/dist/ionicons/filing.js b/dist/ionicons/filing.js new file mode 100644 index 000000000..59bff4ffb --- /dev/null +++ b/dist/ionicons/filing.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.filing = void 0; +var filing = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M381,128.6H132.1c-12.1,0-19.5,0-19.5,20.4v28.1h288V149C400.6,128.6,393.2,128.6,381,128.6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M381,128.6H132.1c-12.1,0-19.5,0-19.5,20.4v28.1h288V149C400.6,128.6,393.2,128.6,381,128.6z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M333,96.5H180c-13.1,0-19.5,0.3-19.5,18.7h192C352.4,96.8,346.1,96.5,333,96.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M333,96.5H180c-13.1,0-19.5,0.3-19.5,18.7h192C352.4,96.8,346.1,96.5,333,96.5z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M432.4,169.6l-15.9-9.4v32.3h-321v-32.3l-15.2,9.4c-14.3,8.9-17.8,15.3-15,40.9l17.5,184.8c3.7,20.7,15.9,21.2,24,21.2\r\n\t\th299.9c8.1,0,20.2-0.5,23.9-21.2l17.2-184.4C450.1,186.5,445.8,178.1,432.4,169.6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M432.4,169.6l-15.9-9.4v32.3h-321v-32.3l-15.2,9.4c-14.3,8.9-17.8,15.3-15,40.9l17.5,184.8c3.7,20.7,15.9,21.2,24,21.2\r\n\t\th299.9c8.1,0,20.2-0.5,23.9-21.2l17.2-184.4C450.1,186.5,445.8,178.1,432.4,169.6z" + }, + "children": [] + }] + }] + }] +}; +exports.filing = filing; \ No newline at end of file diff --git a/dist/ionicons/filmMarker.js b/dist/ionicons/filmMarker.js new file mode 100644 index 000000000..d2205a504 --- /dev/null +++ b/dist/ionicons/filmMarker.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.filmMarker = void 0; +var filmMarker = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M448.4,208h-344l341.2-68c8.5-1.6,14-9.7,12.4-18.1l-8.9-45.4c-1.6-8.4-9.8-13.8-18.3-12.2L60.7,137.9\r\n\tc-8.5,1.6-14,9.7-12.4,18l8.9,45.4c0.6,2.8,2.1,5.2,3.9,7.2c-7.4,1.2-13.1,7.2-13.1,14.9v209.2c0,8.5,7,15.4,15.6,15.4h384.8\r\n\tc8.6,0,15.6-6.9,15.6-15.4V223.4C464,214.9,457,208,448.4,208z M305,402.4l-50.7-36.3l-50.7,36.3l19.5-58.4l-50.8-36H235l19.2-58.4\r\n\tl19.3,58.4h62.7l-50.8,36L305,402.4z" + }, + "children": [] + }] +}; +exports.filmMarker = filmMarker; \ No newline at end of file diff --git a/dist/ionicons/fireball.js b/dist/ionicons/fireball.js new file mode 100644 index 000000000..3f077d305 --- /dev/null +++ b/dist/ionicons/fireball.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.fireball = void 0; +var fireball = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M393.267,238.088l-0.231,10.404c-0.814,11.65-3.797,31.912-14.102,54.736c3.251-15.208,4.978-30.982,4.978-47.164\r\n\t\tc0-12.096-0.958-23.968-2.799-35.544c-15.091-94.901-89.626-169.923-184.138-185.518C185.706,32.285,179.048,32,179.048,32\r\n\t\tc0.238,0.281,0.465,0.562,0.7,0.844c39.458,47.181,44.1,96.656,37.744,131.85c-2.281,12.629-5.978,23.421-9.991,31.605\r\n\t\tc0,0,3.359-13.911,3.035-29.72c-0.293-14.234-3.572-30.006-14.986-38.552c3.497,18.378-0.752,33.501-9.121,47.729\r\n\t\tC161.69,217.808,101,249.386,96,327.408v3.836c0,53.692,25.624,98.979,68.719,125.012c-6.85-12.344-14.964-35.207-8.733-60.151\r\n\t\tc3.998,23.669,9.951,36.045,20.879,51.756c8.153,11.721,19.104,19.269,33.095,24.934S238.995,480,255.889,480\r\n\t\tc55.809,0,105.228-28.567,133.845-71.952l0.267,0.061v-0.007c16-25.254,26.1-55.5,26.1-88.019\r\n\t\tC416.1,290.112,407.596,262.071,393.267,238.088z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M393.267,238.088l-0.231,10.404c-0.814,11.65-3.797,31.912-14.102,54.736c3.251-15.208,4.978-30.982,4.978-47.164\r\n\t\tc0-12.096-0.958-23.968-2.799-35.544c-15.091-94.901-89.626-169.923-184.138-185.518C185.706,32.285,179.048,32,179.048,32\r\n\t\tc0.238,0.281,0.465,0.562,0.7,0.844c39.458,47.181,44.1,96.656,37.744,131.85c-2.281,12.629-5.978,23.421-9.991,31.605\r\n\t\tc0,0,3.359-13.911,3.035-29.72c-0.293-14.234-3.572-30.006-14.986-38.552c3.497,18.378-0.752,33.501-9.121,47.729\r\n\t\tC161.69,217.808,101,249.386,96,327.408v3.836c0,53.692,25.624,98.979,68.719,125.012c-6.85-12.344-14.964-35.207-8.733-60.151\r\n\t\tc3.998,23.669,9.951,36.045,20.879,51.756c8.153,11.721,19.104,19.269,33.095,24.934S238.995,480,255.889,480\r\n\t\tc55.809,0,105.228-28.567,133.845-71.952l0.267,0.061v-0.007c16-25.254,26.1-55.5,26.1-88.019\r\n\t\tC416.1,290.112,407.596,262.071,393.267,238.088z" + }, + "children": [] + }] + }] + }] +}; +exports.fireball = fireball; \ No newline at end of file diff --git a/dist/ionicons/flag.js b/dist/ionicons/flag.js new file mode 100644 index 000000000..0664e662f --- /dev/null +++ b/dist/ionicons/flag.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.flag = void 0; +var flag = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M426.4,182.5c-35.8,5.9-94.2,7.5-133-66.1c-41.6-79.1-108.8-81.5-148.1-74.3c-19.1,3.5-33.4,19.5-33.4,35v196.6\r\n\t\tc11.3,4.3,23.4-0.2,26.5-0.8c0.8-0.2,1.5-0.3,2.4-0.5c25-5.5,51.4-8.1,116.8,23.3c82,39.3,153.8-33.1,181.6-83.5\r\n\t\tc2-3.5,8.7-20.2,8.7-36.2C438.2,180,426.4,182.5,426.4,182.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M426.4,182.5c-35.8,5.9-94.2,7.5-133-66.1c-41.6-79.1-108.8-81.5-148.1-74.3c-19.1,3.5-33.4,19.5-33.4,35v196.6\r\n\t\tc11.3,4.3,23.4-0.2,26.5-0.8c0.8-0.2,1.5-0.3,2.4-0.5c25-5.5,51.4-8.1,116.8,23.3c82,39.3,153.8-33.1,181.6-83.5\r\n\t\tc2-3.5,8.7-20.2,8.7-36.2C438.2,180,426.4,182.5,426.4,182.5z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M88,32H72c-4.4,0-8,3.6-8,8v432c0,4.4,3.6,8,8,8h16c4.4,0,8-3.6,8-8V40C96,35.6,92.4,32,88,32z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M88,32H72c-4.4,0-8,3.6-8,8v432c0,4.4,3.6,8,8,8h16c4.4,0,8-3.6,8-8V40C96,35.6,92.4,32,88,32z" + }, + "children": [] + }] + }] + }] +}; +exports.flag = flag; \ No newline at end of file diff --git a/dist/ionicons/flame.js b/dist/ionicons/flame.js new file mode 100644 index 000000000..f56e0b8c8 --- /dev/null +++ b/dist/ionicons/flame.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.flame = void 0; +var flame = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M128.922,320c13.05,134,103.764,160,126.932,160c23.168,0,127.457-40.49,128.142-160c0.836-146-121.586-143-95.895-288\r\n\t\tC201.427,96,118.289,210.816,128.922,320z M215.667,368c0-44.183,40.187-80,40.187-80s40.701,35.817,40.701,80\r\n\t\tc0,44.184-40.701,80-40.701,80S215.667,412.184,215.667,368z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M128.922,320c13.05,134,103.764,160,126.932,160c23.168,0,127.457-40.49,128.142-160c0.836-146-121.586-143-95.895-288\r\n\t\tC201.427,96,118.289,210.816,128.922,320z M215.667,368c0-44.183,40.187-80,40.187-80s40.701,35.817,40.701,80\r\n\t\tc0,44.184-40.701,80-40.701,80S215.667,412.184,215.667,368z" + }, + "children": [] + }] + }] + }] +}; +exports.flame = flame; \ No newline at end of file diff --git a/dist/ionicons/flash.js b/dist/ionicons/flash.js new file mode 100644 index 000000000..17e222f6b --- /dev/null +++ b/dist/ionicons/flash.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.flash = void 0; +var flash = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "polygon", + "attribs": { + "points": "96,288 243,288 191.9,480 416,224 269,224 320,32 " + }, + "children": [] + }] +}; +exports.flash = flash; \ No newline at end of file diff --git a/dist/ionicons/flashOff.js b/dist/ionicons/flashOff.js new file mode 100644 index 000000000..5195d1df7 --- /dev/null +++ b/dist/ionicons/flashOff.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.flashOff = void 0; +var flashOff = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M147.4,451.9c0.4,0.2,0.7,0.5,1.1,0.7c10.9,6,22.5,10.7,34.4,14.8c1.8,0.6,3.6,1.2,5.4,1.8c21.4,6.8,44,10.9,67.7,10.9\r\n\t\tc123.7,0,224-100.3,224-224c0-84.3-46.6-157.7-115.5-195.9c-0.4-0.2-0.7-0.4-1-0.6c-10.9-6-22.5-10.7-34.4-14.8\r\n\t\tc-1.8-0.6-3.6-1.2-5.4-1.8C302.3,36.1,279.6,32,256,32C132.3,32,32,132.3,32,256C32,340.3,78.6,413.6,147.4,451.9z M118.2,156.6\r\n\t\tl54.4,54.4l36.3-40.5l-52.4-52.4c28-20.2,62.1-32.6,99.4-32.6c9.3,0,18.3,0.9,27.2,2.4c9.8,1.6,19.3,4.1,28.5,7.3\r\n\t\tc1.8,0.6,3.7,1.2,5.6,1.9c6.2,2.4,12.2,5,18,8.1c54.2,28.5,91.2,85.3,91.2,150.8c0,37.2-12.4,71.3-32.7,99.4l-54.4-54.4L303,341.4\r\n\t\tl52.4,52.4c-28,20.3-62.2,32.7-99.4,32.7c-9.3,0-18.4-0.9-27.2-2.4c-9.8-1.6-19.3-4.1-28.5-7.3c-1.9-0.6-3.8-1.2-5.6-1.9\r\n\t\tc-6.5-2.5-12.9-5.3-19-8.6c-53.6-28.7-90.1-85.2-90.1-150.3C85.6,218.8,98,184.7,118.2,156.6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M147.4,451.9c0.4,0.2,0.7,0.5,1.1,0.7c10.9,6,22.5,10.7,34.4,14.8c1.8,0.6,3.6,1.2,5.4,1.8c21.4,6.8,44,10.9,67.7,10.9\r\n\t\tc123.7,0,224-100.3,224-224c0-84.3-46.6-157.7-115.5-195.9c-0.4-0.2-0.7-0.4-1-0.6c-10.9-6-22.5-10.7-34.4-14.8\r\n\t\tc-1.8-0.6-3.6-1.2-5.4-1.8C302.3,36.1,279.6,32,256,32C132.3,32,32,132.3,32,256C32,340.3,78.6,413.6,147.4,451.9z M118.2,156.6\r\n\t\tl54.4,54.4l36.3-40.5l-52.4-52.4c28-20.2,62.1-32.6,99.4-32.6c9.3,0,18.3,0.9,27.2,2.4c9.8,1.6,19.3,4.1,28.5,7.3\r\n\t\tc1.8,0.6,3.7,1.2,5.6,1.9c6.2,2.4,12.2,5,18,8.1c54.2,28.5,91.2,85.3,91.2,150.8c0,37.2-12.4,71.3-32.7,99.4l-54.4-54.4L303,341.4\r\n\t\tl52.4,52.4c-28,20.3-62.2,32.7-99.4,32.7c-9.3,0-18.4-0.9-27.2-2.4c-9.8-1.6-19.3-4.1-28.5-7.3c-1.9-0.6-3.8-1.2-5.6-1.9\r\n\t\tc-6.5-2.5-12.9-5.3-19-8.6c-53.6-28.7-90.1-85.2-90.1-150.3C85.6,218.8,98,184.7,118.2,156.6z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "209.7,389.8 348.9,235 263.6,235 302.2,122.2 163.1,277 248.4,277 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "209.7,389.8 348.9,235 263.6,235 302.2,122.2 163.1,277 248.4,277 \t" + }, + "children": [] + }] + }] + }] +}; +exports.flashOff = flashOff; \ No newline at end of file diff --git a/dist/ionicons/folder.js b/dist/ionicons/folder.js new file mode 100644 index 000000000..1cccb18b8 --- /dev/null +++ b/dist/ionicons/folder.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.folder = void 0; +var folder = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M430.1,192H81.9c-17.7,0-18.6,9.2-17.6,20.5l13,183c0.9,11.2,3.5,20.5,21.1,20.5h316.2c18,0,20.1-9.2,21.1-20.5l12.1-185.3\r\n\t\tC448.7,199,447.8,192,430.1,192z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M430.1,192H81.9c-17.7,0-18.6,9.2-17.6,20.5l13,183c0.9,11.2,3.5,20.5,21.1,20.5h316.2c18,0,20.1-9.2,21.1-20.5l12.1-185.3\r\n\t\tC448.7,199,447.8,192,430.1,192z" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M426.2,143.3c-0.5-12.4-4.5-15.3-15.1-15.3c0,0-121.4,0-143.2,0c-21.8,0-24.4,0.3-40.9-17.4C213.3,95.8,218.7,96,190.4,96\r\n\t\t\tc-22.6,0-75.3,0-75.3,0c-17.4,0-23.6-1.5-25.2,16.6c-1.5,16.7-5,57.2-5.5,63.4h343.4L426.2,143.3z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M426.2,143.3c-0.5-12.4-4.5-15.3-15.1-15.3c0,0-121.4,0-143.2,0c-21.8,0-24.4,0.3-40.9-17.4C213.3,95.8,218.7,96,190.4,96\r\n\t\t\tc-22.6,0-75.3,0-75.3,0c-17.4,0-23.6-1.5-25.2,16.6c-1.5,16.7-5,57.2-5.5,63.4h343.4L426.2,143.3z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.folder = folder; \ No newline at end of file diff --git a/dist/ionicons/fork.js b/dist/ionicons/fork.js new file mode 100644 index 000000000..db0409f5e --- /dev/null +++ b/dist/ionicons/fork.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.fork = void 0; +var fork = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M270.2,148.9C270.2,149,270.1,149,270.2,148.9v0.1V148.9z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M270.2,148.9C270.2,149,270.1,149,270.2,148.9v0.1V148.9z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M320,166c0-43.2-15-93.2-24-133.7V32h-8l-0.2,116.9c0,6.1-2.9,11.1-9,11.1c-5.7,0-8-4.3-8.6-9.9c-0.1-0.4,0-0.8,0-1.2\r\n\t\tL259.9,32h-8l-9,117l-0.1,1.1c-0.6,5.6-3.7,9.9-9.5,9.9c-6.1,0-9.1-5-9.1-11.1L223.8,32h-8C207,73,192,122.9,192,166.1\r\n\t\tc0,25.7,14.6,48.1,36.7,58.2c11.2,5.1,11.3,10.3,11.3,10.3s-16,201.7-16,213.1c0,11.4,4,18.5,9.5,24s14.2,8.2,22.4,8.2\r\n\t\tc0.1,0,0.1,0,0.2,0c0.1,0,0.1,0,0.2,0c8.2,0,16.8-2.7,22.4-8.2c5.5-5.5,9.3-10.9,9.3-24c0-13.1-16-213.1-16-213.1s-1-5,11.4-10.6\r\n\t\tC305,214.2,320,191.8,320,166z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M320,166c0-43.2-15-93.2-24-133.7V32h-8l-0.2,116.9c0,6.1-2.9,11.1-9,11.1c-5.7,0-8-4.3-8.6-9.9c-0.1-0.4,0-0.8,0-1.2\r\n\t\tL259.9,32h-8l-9,117l-0.1,1.1c-0.6,5.6-3.7,9.9-9.5,9.9c-6.1,0-9.1-5-9.1-11.1L223.8,32h-8C207,73,192,122.9,192,166.1\r\n\t\tc0,25.7,14.6,48.1,36.7,58.2c11.2,5.1,11.3,10.3,11.3,10.3s-16,201.7-16,213.1c0,11.4,4,18.5,9.5,24s14.2,8.2,22.4,8.2\r\n\t\tc0.1,0,0.1,0,0.2,0c0.1,0,0.1,0,0.2,0c8.2,0,16.8-2.7,22.4-8.2c5.5-5.5,9.3-10.9,9.3-24c0-13.1-16-213.1-16-213.1s-1-5,11.4-10.6\r\n\t\tC305,214.2,320,191.8,320,166z" + }, + "children": [] + }] + }] + }] +}; +exports.fork = fork; \ No newline at end of file diff --git a/dist/ionicons/forkRepo.js b/dist/ionicons/forkRepo.js new file mode 100644 index 000000000..3c2fa9f3f --- /dev/null +++ b/dist/ionicons/forkRepo.js @@ -0,0 +1,49 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.forkRepo = void 0; +var forkRepo = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "style", + "attribs": { + "type": "text/css" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "class": "st0", + "points": "416,80 368,80 368,32 304,32 304,80 256,80 256,144 304,144 304,192 368,192 368,144 416,144 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "class": "st0", + "points": "416,80 368,80 368,32 304,32 304,80 256,80 256,144 304,144 304,192 368,192 368,144 416,144 \t" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "class": "st0", + "d": "M304,240c0,38.6-4.5,42.3-14.4,50.3c-7.4,6-22.2,7.1-39.4,8.3c-9.5,0.7-20.4,1.5-31.4,3.3\r\n\t\tc-9.4,1.5-18.4,4.7-26.8,8.8V151.4c19.1-11.1,32-31.7,32-55.4c0-35.3-28.7-64-64-64S96,60.7,96,96c0,23.7,12.9,44.3,32,55.4v209.2\r\n\t\tc-19.1,11.1-32,31.7-32,55.4c0,35.3,28.7,64,64,64s64-28.7,64-64c0-15.7-5.7-30.1-15-41.2c6.7-4.8,13.9-8.7,20.2-9.7\r\n\t\tc8.1-1.3,16.6-1.9,25.6-2.6c24.4-1.7,52.1-3.7,75.2-22.5c30.9-25.1,37.5-52.1,38-94.9l0,0V240H304z M160,64c17.6,0,32,14.4,32,32\r\n\t\ts-14.4,32-32,32s-32-14.4-32-32S142.4,64,160,64z M160,448c-17.6,0-32-14.4-32-32s14.4-32,32-32s32,14.4,32,32S177.6,448,160,448z" + }, + "children": [{ + "name": "path", + "attribs": { + "class": "st0", + "d": "M304,240c0,38.6-4.5,42.3-14.4,50.3c-7.4,6-22.2,7.1-39.4,8.3c-9.5,0.7-20.4,1.5-31.4,3.3\r\n\t\tc-9.4,1.5-18.4,4.7-26.8,8.8V151.4c19.1-11.1,32-31.7,32-55.4c0-35.3-28.7-64-64-64S96,60.7,96,96c0,23.7,12.9,44.3,32,55.4v209.2\r\n\t\tc-19.1,11.1-32,31.7-32,55.4c0,35.3,28.7,64,64,64s64-28.7,64-64c0-15.7-5.7-30.1-15-41.2c6.7-4.8,13.9-8.7,20.2-9.7\r\n\t\tc8.1-1.3,16.6-1.9,25.6-2.6c24.4-1.7,52.1-3.7,75.2-22.5c30.9-25.1,37.5-52.1,38-94.9l0,0V240H304z M160,64c17.6,0,32,14.4,32,32\r\n\t\ts-14.4,32-32,32s-32-14.4-32-32S142.4,64,160,64z M160,448c-17.6,0-32-14.4-32-32s14.4-32,32-32s32,14.4,32,32S177.6,448,160,448z" + }, + "children": [] + }] + }] + }] +}; +exports.forkRepo = forkRepo; \ No newline at end of file diff --git a/dist/ionicons/forward.js b/dist/ionicons/forward.js new file mode 100644 index 000000000..4a868cd4b --- /dev/null +++ b/dist/ionicons/forward.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.forward = void 0; +var forward = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M288,298.1v92.3L448,256L288,112v80C100.8,192,64,400,64,400C117,307,186.4,298.1,288,298.1z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M288,298.1v92.3L448,256L288,112v80C100.8,192,64,400,64,400C117,307,186.4,298.1,288,298.1z" + }, + "children": [] + }] + }] + }] +}; +exports.forward = forward; \ No newline at end of file diff --git a/dist/ionicons/funnel.js b/dist/ionicons/funnel.js new file mode 100644 index 000000000..dd0365c4a --- /dev/null +++ b/dist/ionicons/funnel.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.funnel = void 0; +var funnel = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256.085,32c-123.79,0-224.096,35.817-224.096,80c0,8.476,3.729,16.642,10.573,24.309l-0.061,0.008\r\n\t\tC74.408,175.213,192,313,192,352v87l0,0c0,22.688,28.891,41,64,41s64-18.312,64-41l0,0v-83.088c0-1.241,0.008-2.54,0.008-3.912\r\n\t\tC320.008,313,436,177.432,471,134.062v-0.002c6-7.007,8.977-14.408,8.977-22.06C479.977,67.817,379.875,32,256.085,32z\r\n\t\t M256.178,160c-92.058,0-176.112-22-176.112-48s83.053-48,176.112-48c93.06,0,176.111,22.413,176.111,48S348.236,160,256.178,160z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256.085,32c-123.79,0-224.096,35.817-224.096,80c0,8.476,3.729,16.642,10.573,24.309l-0.061,0.008\r\n\t\tC74.408,175.213,192,313,192,352v87l0,0c0,22.688,28.891,41,64,41s64-18.312,64-41l0,0v-83.088c0-1.241,0.008-2.54,0.008-3.912\r\n\t\tC320.008,313,436,177.432,471,134.062v-0.002c6-7.007,8.977-14.408,8.977-22.06C479.977,67.817,379.875,32,256.085,32z\r\n\t\t M256.178,160c-92.058,0-176.112-22-176.112-48s83.053-48,176.112-48c93.06,0,176.111,22.413,176.111,48S348.236,160,256.178,160z" + }, + "children": [] + }] + }] + }] +}; +exports.funnel = funnel; \ No newline at end of file diff --git a/dist/ionicons/gearA.js b/dist/ionicons/gearA.js new file mode 100644 index 000000000..ea4779a39 --- /dev/null +++ b/dist/ionicons/gearA.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.gearA = void 0; +var gearA = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M411.1,256c0-23.9,14.8-42.8,36.9-55.8c-4-13.3-9.3-26.2-15.8-38.2c-24.9,6.5-45-3.2-62-20.2c-16.9-16.9-22.1-37.1-15.6-62\r\n\t\tC342.6,73.3,329.8,68,316.4,64c-13,22.2-36.4,36.9-60.4,36.9c-23.9,0-47.4-14.7-60.4-36.9c-13.4,4-26.2,9.3-38.2,15.8\r\n\t\tc6.5,24.9,1.3,45-15.6,62c-16.9,16.9-37.1,26.7-61.9,20.2C73.3,174,68,186.8,64,200.2c22.2,13,37,31.9,37,55.8\r\n\t\tc0,23.9-14.8,47.4-37,60.4c4,13.4,9.3,26.2,15.8,38.2c24.9-6.5,45-1.3,61.9,15.6c17,16.9,22.1,37.1,15.6,62\r\n\t\tc12.1,6.5,24.8,11.8,38.2,15.8c13-22.2,36.5-36.9,60.4-36.9c23.9,0,47.4,14.7,60.4,36.9c13.4-4,26.2-9.3,38.2-15.8\r\n\t\tc-6.5-24.9-1.3-45,15.6-62c16.9-16.9,37.1-26.7,62-20.2c6.5-12.1,11.8-24.9,15.8-38.2C425.8,298.8,411.1,279.9,411.1,256z\r\n\t\t M256,354.3c-54.2,0-98.3-44-98.3-98.3c0-54.3,44-98.3,98.3-98.3c54.3,0,98.3,44,98.3,98.3C354.3,310.3,310.3,354.3,256,354.3z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M411.1,256c0-23.9,14.8-42.8,36.9-55.8c-4-13.3-9.3-26.2-15.8-38.2c-24.9,6.5-45-3.2-62-20.2c-16.9-16.9-22.1-37.1-15.6-62\r\n\t\tC342.6,73.3,329.8,68,316.4,64c-13,22.2-36.4,36.9-60.4,36.9c-23.9,0-47.4-14.7-60.4-36.9c-13.4,4-26.2,9.3-38.2,15.8\r\n\t\tc6.5,24.9,1.3,45-15.6,62c-16.9,16.9-37.1,26.7-61.9,20.2C73.3,174,68,186.8,64,200.2c22.2,13,37,31.9,37,55.8\r\n\t\tc0,23.9-14.8,47.4-37,60.4c4,13.4,9.3,26.2,15.8,38.2c24.9-6.5,45-1.3,61.9,15.6c17,16.9,22.1,37.1,15.6,62\r\n\t\tc12.1,6.5,24.8,11.8,38.2,15.8c13-22.2,36.5-36.9,60.4-36.9c23.9,0,47.4,14.7,60.4,36.9c13.4-4,26.2-9.3,38.2-15.8\r\n\t\tc-6.5-24.9-1.3-45,15.6-62c16.9-16.9,37.1-26.7,62-20.2c6.5-12.1,11.8-24.9,15.8-38.2C425.8,298.8,411.1,279.9,411.1,256z\r\n\t\t M256,354.3c-54.2,0-98.3-44-98.3-98.3c0-54.3,44-98.3,98.3-98.3c54.3,0,98.3,44,98.3,98.3C354.3,310.3,310.3,354.3,256,354.3z" + }, + "children": [] + }] + }] + }] +}; +exports.gearA = gearA; \ No newline at end of file diff --git a/dist/ionicons/gearB.js b/dist/ionicons/gearB.js new file mode 100644 index 000000000..d91870a0d --- /dev/null +++ b/dist/ionicons/gearB.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.gearB = void 0; +var gearB = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M448,294.4v-76.8h-42.8c-3.4-14.4-8.9-28-16.1-40.5l29.8-29.7l-54.3-54.3l-29.1,29.1c-12.6-7.7-26.4-13.5-41.1-17.3V64\r\n\th-76.8v40.9c-14.7,3.8-28.5,9.7-41.1,17.3l-29.1-29.1l-54.3,54.3l29.8,29.7c-7.2,12.5-12.6,26.1-16.1,40.5H64v76.8h44.1\r\n\tc3.8,13.7,9.5,26.6,16.7,38.6l-31.7,31.7l54.3,54.3l32.3-32.3c11.7,6.8,24.5,11.9,37.9,15.4v46h76.8v-46\r\n\tc13.5-3.5,26.2-8.6,37.9-15.4l32.3,32.3l54.3-54.3L387.3,333c7.2-11.9,12.9-24.8,16.7-38.6H448z M256,309.8\r\n\tc-29.7,0-53.7-24.1-53.7-53.8s24-53.8,53.7-53.8s53.8,24.1,53.8,53.8S285.7,309.8,256,309.8z" + }, + "children": [] + }] +}; +exports.gearB = gearB; \ No newline at end of file diff --git a/dist/ionicons/grid.js b/dist/ionicons/grid.js new file mode 100644 index 000000000..154fc0dc2 --- /dev/null +++ b/dist/ionicons/grid.js @@ -0,0 +1,147 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.grid = void 0; +var grid = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M160,153.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V153.3z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M160,153.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V153.3z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M288,153.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V153.3z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M288,153.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V153.3z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M416,153.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V153.3z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M416,153.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V153.3z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M160,281.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V281.3z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M160,281.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V281.3z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M288,281.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V281.3z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M288,281.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V281.3z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M416,281.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V281.3z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M416,281.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V281.3z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M160,409.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V409.3z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M160,409.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V409.3z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M288,409.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V409.3z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M288,409.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V409.3z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M416,409.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V409.3z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M416,409.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V409.3z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.grid = grid; \ No newline at end of file diff --git a/dist/ionicons/hammer.js b/dist/ionicons/hammer.js new file mode 100644 index 000000000..2b2fbd068 --- /dev/null +++ b/dist/ionicons/hammer.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.hammer = void 0; +var hammer = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M410,32h-52c-3.3,0-6,2.7-6,6v5.6c-4,4-10.9,9.8-17.8,9.8c-10.5,0-14.8-16.4-26.1-18.4s-27.2-3-37.9-3s-52,0.7-102,21.5\r\n\tc-50,20.8-71.7,64.9-72.3,81.4c-0.3,8.7,2.7,21.1,10,11.1c7.3-10,35.3-42.3,57.7-44.7c22.3-2.3,45.7,0.8,63.7,17.2\r\n\tc17.3,15.7,21.3,30.8,21.3,73.5l-6.6,2c-4.3,1.3-7,5.7-7,9c0,0-0.2,6.5-0.2,70.4C234.8,368,224,474,224,474c0,3.3,2.7,6,6,6h84\r\n\tc3.3,0,6-2.7,6-6c0,0-10.8-106-10.8-200.6c0-63.9-0.2-70.4-0.2-70.4c0-3.3-2.3-7.8-7-9l-8-2c0-38.2-0.4-54,6.3-65.9\r\n\tc7-12.4,22.3-22.9,29.7-25.1c5.9-1.8,16,1.3,22,6.5V122c0,3.3,2.7,6,6,6h52c3.3,0,6-2.7,6-6V38C416,34.7,413.3,32,410,32z" + }, + "children": [] + }] +}; +exports.hammer = hammer; \ No newline at end of file diff --git a/dist/ionicons/happy.js b/dist/ionicons/happy.js new file mode 100644 index 000000000..f25447350 --- /dev/null +++ b/dist/ionicons/happy.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.happy = void 0; +var happy = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,32C132.288,32,32,132.288,32,256s100.288,224,224,224s224-100.288,224-224S379.712,32,256,32z M103.272,253.324\r\n\t\tc-8.272-5.574-9.249-15.145-3.747-22.207C110.074,217.573,123.25,208,144.137,208s34.174,9.593,44.655,23.174\r\n\t\tc5.464,7.076,3.765,17.011-3.787,22.144c-2.915,1.975-6.341,2.683-9.922,2.683c-5.412,0-10.539-2.119-13.716-6.223\r\n\t\tc-3.398-4.416-7.621-9.777-17.23-9.777c-9.561,0-13.818,5.387-17.269,9.821c-3.163,4.069-8.274,6.178-13.669,6.179\r\n\t\tC109.618,256,106.186,255.287,103.272,253.324z M394.245,310.945C370.607,356.719,316.344,384,256.004,384\r\n\t\tc-61.869,0-117.55-28.235-138.556-73.677c-3.663-7.939-0.191-17.383,7.734-21.057c2.137-0.978,4.363-1.463,6.658-1.463\r\n\t\tc6.163,0,11.818,3.61,14.407,9.199C162.164,331.438,206.27,352,256.004,352c48.602,0,91.8-20.269,110.053-55.615\r\n\t\tc2.746-5.301,8.148-8.588,14.104-8.588c2.532,0,5.06,0.621,7.308,1.796C395.201,293.598,398.254,303.184,394.245,310.945z\r\n\t\t M409.006,253.317c-2.915,1.975-6.341,2.683-9.922,2.683c-5.412,0-10.539-2.119-13.717-6.223c-3.398-4.416-7.62-9.777-17.23-9.777\r\n\t\tc-9.561,0-13.817,5.387-17.268,9.821c-3.163,4.069-8.275,6.178-13.67,6.179c-3.581,0-7.014-0.713-9.928-2.676\r\n\t\tc-8.271-5.574-9.248-15.145-3.746-22.207C334.074,217.573,347.25,208,368.137,208c20.888,0,34.175,9.593,44.656,23.174\r\n\t\tC418.257,238.25,416.558,248.185,409.006,253.317z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,32C132.288,32,32,132.288,32,256s100.288,224,224,224s224-100.288,224-224S379.712,32,256,32z M103.272,253.324\r\n\t\tc-8.272-5.574-9.249-15.145-3.747-22.207C110.074,217.573,123.25,208,144.137,208s34.174,9.593,44.655,23.174\r\n\t\tc5.464,7.076,3.765,17.011-3.787,22.144c-2.915,1.975-6.341,2.683-9.922,2.683c-5.412,0-10.539-2.119-13.716-6.223\r\n\t\tc-3.398-4.416-7.621-9.777-17.23-9.777c-9.561,0-13.818,5.387-17.269,9.821c-3.163,4.069-8.274,6.178-13.669,6.179\r\n\t\tC109.618,256,106.186,255.287,103.272,253.324z M394.245,310.945C370.607,356.719,316.344,384,256.004,384\r\n\t\tc-61.869,0-117.55-28.235-138.556-73.677c-3.663-7.939-0.191-17.383,7.734-21.057c2.137-0.978,4.363-1.463,6.658-1.463\r\n\t\tc6.163,0,11.818,3.61,14.407,9.199C162.164,331.438,206.27,352,256.004,352c48.602,0,91.8-20.269,110.053-55.615\r\n\t\tc2.746-5.301,8.148-8.588,14.104-8.588c2.532,0,5.06,0.621,7.308,1.796C395.201,293.598,398.254,303.184,394.245,310.945z\r\n\t\t M409.006,253.317c-2.915,1.975-6.341,2.683-9.922,2.683c-5.412,0-10.539-2.119-13.717-6.223c-3.398-4.416-7.62-9.777-17.23-9.777\r\n\t\tc-9.561,0-13.817,5.387-17.268,9.821c-3.163,4.069-8.275,6.178-13.67,6.179c-3.581,0-7.014-0.713-9.928-2.676\r\n\t\tc-8.271-5.574-9.248-15.145-3.746-22.207C334.074,217.573,347.25,208,368.137,208c20.888,0,34.175,9.593,44.656,23.174\r\n\t\tC418.257,238.25,416.558,248.185,409.006,253.317z" + }, + "children": [] + }] + }] + }] +}; +exports.happy = happy; \ No newline at end of file diff --git a/dist/ionicons/happyOutline.js b/dist/ionicons/happyOutline.js new file mode 100644 index 000000000..bd7bc5971 --- /dev/null +++ b/dist/ionicons/happyOutline.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.happyOutline = void 0; +var happyOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M387.469,289.593c-2.248-1.175-4.775-1.796-7.308-1.796c-5.956,0-11.358,3.287-14.104,8.588\r\n\t\tC347.804,331.731,304.605,352,256.004,352c-49.734,0-93.84-20.562-109.757-54.997c-2.589-5.589-8.244-9.199-14.407-9.199\r\n\t\tc-2.294,0-4.521,0.485-6.658,1.463c-7.926,3.674-11.397,13.117-7.734,21.057C138.454,355.765,194.135,384,256.004,384\r\n\t\tc60.34,0,114.604-27.281,138.241-73.055C398.254,303.184,395.201,293.598,387.469,289.593z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M387.469,289.593c-2.248-1.175-4.775-1.796-7.308-1.796c-5.956,0-11.358,3.287-14.104,8.588\r\n\t\tC347.804,331.731,304.605,352,256.004,352c-49.734,0-93.84-20.562-109.757-54.997c-2.589-5.589-8.244-9.199-14.407-9.199\r\n\t\tc-2.294,0-4.521,0.485-6.658,1.463c-7.926,3.674-11.397,13.117-7.734,21.057C138.454,355.765,194.135,384,256.004,384\r\n\t\tc60.34,0,114.604-27.281,138.241-73.055C398.254,303.184,395.201,293.598,387.469,289.593z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M412.793,231.174C402.312,217.593,389.024,208,368.137,208c-20.887,0-34.062,9.573-44.611,23.117\r\n\t\tc-5.502,7.062-4.525,16.633,3.746,22.207c2.914,1.963,6.347,2.676,9.928,2.676c5.395-0.001,10.507-2.109,13.67-6.179\r\n\t\tc3.45-4.435,7.707-9.821,17.268-9.821c9.61,0,13.832,5.361,17.23,9.777c3.178,4.104,8.305,6.223,13.717,6.223\r\n\t\tc3.581,0,7.007-0.708,9.922-2.683C416.558,248.185,418.257,238.25,412.793,231.174z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M412.793,231.174C402.312,217.593,389.024,208,368.137,208c-20.887,0-34.062,9.573-44.611,23.117\r\n\t\tc-5.502,7.062-4.525,16.633,3.746,22.207c2.914,1.963,6.347,2.676,9.928,2.676c5.395-0.001,10.507-2.109,13.67-6.179\r\n\t\tc3.45-4.435,7.707-9.821,17.268-9.821c9.61,0,13.832,5.361,17.23,9.777c3.178,4.104,8.305,6.223,13.717,6.223\r\n\t\tc3.581,0,7.007-0.708,9.922-2.683C416.558,248.185,418.257,238.25,412.793,231.174z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M188.792,231.174C178.312,217.593,165.024,208,144.137,208s-34.063,9.573-44.612,23.117\r\n\t\tc-5.501,7.062-4.525,16.633,3.747,22.207c2.914,1.963,6.346,2.676,9.927,2.676c5.395-0.001,10.507-2.109,13.669-6.179\r\n\t\tc3.451-4.435,7.708-9.821,17.269-9.821c9.61,0,13.832,5.361,17.23,9.777c3.177,4.104,8.304,6.223,13.716,6.223\r\n\t\tc3.582,0,7.007-0.708,9.922-2.683C192.558,248.185,194.257,238.25,188.792,231.174z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M188.792,231.174C178.312,217.593,165.024,208,144.137,208s-34.063,9.573-44.612,23.117\r\n\t\tc-5.501,7.062-4.525,16.633,3.747,22.207c2.914,1.963,6.346,2.676,9.927,2.676c5.395-0.001,10.507-2.109,13.669-6.179\r\n\t\tc3.451-4.435,7.708-9.821,17.269-9.821c9.61,0,13.832,5.361,17.23,9.777c3.177,4.104,8.304,6.223,13.716,6.223\r\n\t\tc3.582,0,7.007-0.708,9.922-2.683C192.558,248.185,194.257,238.25,188.792,231.174z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,32C132.288,32,32,132.288,32,256s100.288,224,224,224s224-100.288,224-224S379.712,32,256,32z M391.765,391.765\r\n\t\tC355.5,428.028,307.285,448,256,448s-99.5-19.972-135.765-56.235C83.972,355.5,64,307.285,64,256s19.972-99.5,56.235-135.765\r\n\t\tC156.5,83.972,204.715,64,256,64s99.5,19.972,135.765,56.235C428.028,156.5,448,204.715,448,256S428.028,355.5,391.765,391.765z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,32C132.288,32,32,132.288,32,256s100.288,224,224,224s224-100.288,224-224S379.712,32,256,32z M391.765,391.765\r\n\t\tC355.5,428.028,307.285,448,256,448s-99.5-19.972-135.765-56.235C83.972,355.5,64,307.285,64,256s19.972-99.5,56.235-135.765\r\n\t\tC156.5,83.972,204.715,64,256,64s99.5,19.972,135.765,56.235C428.028,156.5,448,204.715,448,256S428.028,355.5,391.765,391.765z" + }, + "children": [] + }] + }] + }] +}; +exports.happyOutline = happyOutline; \ No newline at end of file diff --git a/dist/ionicons/headphone.js b/dist/ionicons/headphone.js new file mode 100644 index 000000000..a61b86df4 --- /dev/null +++ b/dist/ionicons/headphone.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.headphone = void 0; +var headphone = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M447.4,238.2c-3.2-59.8-21.9-108.6-56-145.2c-0.1-0.1-0.1-0.1-0.2-0.2c-7.7-8.4-16.1-15.9-24.8-22.6\r\n\tc-9-6.9-18.6-13-28.5-18.1c-25.3-13.1-53-20-82.1-20c-29,0-56.6,6.9-81.9,20c-9.9,5.1-19.4,11.2-28.4,18.1\r\n\tc-8.7,6.7-17,14.2-24.7,22.6c-0.1,0.1-0.1,0.1-0.2,0.2c-34,36.6-52.7,85.5-55.9,145.2C61.9,288.9,68,368,77.7,400\r\n\tc20.3,67,40.4,80,72.1,80s58.2-26.4,58.2-58.9V315.1c0-32.5-23.3-59-53.3-59c-18,0-34,9.7-43.8,24.4c0,0-11.1-8.1-13.1-23\r\n\tc-2.1-14.9-3.1-32.4,5.6-63c8.7-30.5,20.8-20.2,35.6-39c2.5-3.3,5.2-6.4,8-9.5c3.2-3.4,6.4-6.7,9.8-9.7c1.6-1.5,3.2-2.8,4.8-4.2\r\n\tc11-9.3,21-17,33.7-22.8c18.9-8.6,39.4-13.3,60.5-13.3c21,0,41.7,4.7,60.7,13.3c12.7,5.8,22.9,13.5,33.9,22.8\r\n\tc1.6,1.4,3.2,2.7,4.8,4.2c3.4,3,6.6,6.3,9.8,9.7c2.8,3.1,5.5,6.2,8,9.5c14.8,18.8,26.9,8.5,35.6,39c8.7,30.5,7.6,48.1,5.6,63\r\n\tc-2.1,14.9-13.1,23-13.1,23c-9.8-14.7-25.7-24.4-43.8-24.4c-30,0-53.3,26.4-53.3,59v106.1c0,32.4,26.5,58.9,58.2,58.9\r\n\tc31.7,0,51.8-13,72.1-80C444,368,450.1,288.9,447.4,238.2z" + }, + "children": [] + }] +}; +exports.headphone = headphone; \ No newline at end of file diff --git a/dist/ionicons/heart.js b/dist/ionicons/heart.js new file mode 100644 index 000000000..30ae3da22 --- /dev/null +++ b/dist/ionicons/heart.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.heart = void 0; +var heart = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M429.9,95.6c-40.4-42.1-106-42.1-146.4,0L256,124.1l-27.5-28.6c-40.5-42.1-106-42.1-146.4,0c-45.5,47.3-45.5,124.1,0,171.4\r\n\t\tL256,448l173.9-181C475.4,219.7,475.4,142.9,429.9,95.6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M429.9,95.6c-40.4-42.1-106-42.1-146.4,0L256,124.1l-27.5-28.6c-40.5-42.1-106-42.1-146.4,0c-45.5,47.3-45.5,124.1,0,171.4\r\n\t\tL256,448l173.9-181C475.4,219.7,475.4,142.9,429.9,95.6z" + }, + "children": [] + }] + }] + }] +}; +exports.heart = heart; \ No newline at end of file diff --git a/dist/ionicons/heartBroken.js b/dist/ionicons/heartBroken.js new file mode 100644 index 000000000..698b29028 --- /dev/null +++ b/dist/ionicons/heartBroken.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.heartBroken = void 0; +var heartBroken = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M229,288c1-18,0-38,8-55c2-5,1-10,1-15c-4-21-14-40-15-60c0-1.39,1.004-4.771,1.005-6.157\r\n\t\tc-3.216,2.234-7.607,4.024-11.005,5.157c-20,6-17.51,2.573-34.51,13.573l-11.933,7.228c16.343-17.939,38.528-24.781,56.525-38.714\r\n\t\tc0.194-15.438,0.858-30.677,3.137-45.84C185.61,53.496,121.785,54.268,82.123,95.57c-45.497,47.344-45.497,124.101,0,171.445\r\n\t\tl152.849,159.096c-0.085-10.656-0.443-21.176-1.972-31.111C227,359,229,324,229,288z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M229,288c1-18,0-38,8-55c2-5,1-10,1-15c-4-21-14-40-15-60c0-1.39,1.004-4.771,1.005-6.157\r\n\t\tc-3.216,2.234-7.607,4.024-11.005,5.157c-20,6-17.51,2.573-34.51,13.573l-11.933,7.228c16.343-17.939,38.528-24.781,56.525-38.714\r\n\t\tc0.194-15.438,0.858-30.677,3.137-45.84C185.61,53.496,121.785,54.268,82.123,95.57c-45.497,47.344-45.497,124.101,0,171.445\r\n\t\tl152.849,159.096c-0.085-10.656-0.443-21.176-1.972-31.111C227,359,229,324,229,288z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M322,301c-11-26-33-44-63-50c-0.85,0-1.879-0.543-2.936-1.319c-0.023,0.107-0.041,0.213-0.064,0.319c-11,48-23,94-21,142\r\n\t\tc0,12.227,3.983,25.117,3.833,38.131L256,448l104-108.25C345.153,329.271,330.428,318.621,322,301z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M322,301c-11-26-33-44-63-50c-0.85,0-1.879-0.543-2.936-1.319c-0.023,0.107-0.041,0.213-0.064,0.319c-11,48-23,94-21,142\r\n\t\tc0,12.227,3.983,25.117,3.833,38.131L256,448l104-108.25C345.153,329.271,330.428,318.621,322,301z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M429.874,95.57c-40.426-42.094-105.989-42.094-146.408,0L264,115.403c0.075,13.175,0.213,26.202-3,38.597\r\n\t\tc-2,10-19,19-16,31c3.003,13.213,8.166,25.705,10.732,38.559C271.014,232.084,284.771,242.896,297,256\r\n\t\tc22.801,26.766,37.747,57.459,65.283,81.371l67.591-70.355C475.375,219.671,475.375,142.914,429.874,95.57z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M429.874,95.57c-40.426-42.094-105.989-42.094-146.408,0L264,115.403c0.075,13.175,0.213,26.202-3,38.597\r\n\t\tc-2,10-19,19-16,31c3.003,13.213,8.166,25.705,10.732,38.559C271.014,232.084,284.771,242.896,297,256\r\n\t\tc22.801,26.766,37.747,57.459,65.283,81.371l67.591-70.355C475.375,219.671,475.375,142.914,429.874,95.57z" + }, + "children": [] + }] + }] + }] +}; +exports.heartBroken = heartBroken; \ No newline at end of file diff --git a/dist/ionicons/help.js b/dist/ionicons/help.js new file mode 100644 index 000000000..fbb040dda --- /dev/null +++ b/dist/ionicons/help.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.help = void 0; +var help = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M345.1,77.1C317.6,56.2,286.6,49,247.3,49c-29.8,0-55.3,6.1-75.5,19.7C142,89,128,123.1,128,177h76.8\r\n\t\tc0-14.4-1.4-29.9,7-43.2c8.4-13.3,20.1-23.5,40.2-23.5c20.4,0,30.9,5.9,40.8,18.1c8.4,10.4,11.6,22.8,11.6,36\r\n\t\tc0,11.4-5.8,21.9-12.7,31.4c-3.8,5.6-8.8,10.6-15.1,15.4c0,0-41.5,24.7-56.1,48.1c-10.9,17.4-14.8,39.2-15.7,65.3\r\n\t\tc-0.1,1.9,0.6,5.8,7.2,5.8c6.5,0,56,0,61.8,0c5.8,0,7-4.4,7.1-6.2c0.4-9.5,1.6-24.1,3.3-29.6c3.3-10.4,9.7-19.5,19.7-27.3\r\n\t\tl20.7-14.3c18.7-14.6,33.6-26.5,40.2-35.9c11.3-15.4,19.2-34.4,19.2-56.9C384,123.5,370.5,96.4,345.1,77.1z M242,370.2\r\n\t\tc-25.9-0.8-47.3,17.2-48.2,45.3c-0.8,28.2,19.5,46.7,45.5,47.5c27,0.8,47.9-16.6,48.7-44.7C288.8,390.2,269,371,242,370.2z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M345.1,77.1C317.6,56.2,286.6,49,247.3,49c-29.8,0-55.3,6.1-75.5,19.7C142,89,128,123.1,128,177h76.8\r\n\t\tc0-14.4-1.4-29.9,7-43.2c8.4-13.3,20.1-23.5,40.2-23.5c20.4,0,30.9,5.9,40.8,18.1c8.4,10.4,11.6,22.8,11.6,36\r\n\t\tc0,11.4-5.8,21.9-12.7,31.4c-3.8,5.6-8.8,10.6-15.1,15.4c0,0-41.5,24.7-56.1,48.1c-10.9,17.4-14.8,39.2-15.7,65.3\r\n\t\tc-0.1,1.9,0.6,5.8,7.2,5.8c6.5,0,56,0,61.8,0c5.8,0,7-4.4,7.1-6.2c0.4-9.5,1.6-24.1,3.3-29.6c3.3-10.4,9.7-19.5,19.7-27.3\r\n\t\tl20.7-14.3c18.7-14.6,33.6-26.5,40.2-35.9c11.3-15.4,19.2-34.4,19.2-56.9C384,123.5,370.5,96.4,345.1,77.1z M242,370.2\r\n\t\tc-25.9-0.8-47.3,17.2-48.2,45.3c-0.8,28.2,19.5,46.7,45.5,47.5c27,0.8,47.9-16.6,48.7-44.7C288.8,390.2,269,371,242,370.2z" + }, + "children": [] + }] + }] + }] +}; +exports.help = help; \ No newline at end of file diff --git a/dist/ionicons/helpBuoy.js b/dist/ionicons/helpBuoy.js new file mode 100644 index 000000000..39f0b511b --- /dev/null +++ b/dist/ionicons/helpBuoy.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.helpBuoy = void 0; +var helpBuoy = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,32C132.3,32,32,132.3,32,256s100.3,224,224,224s224-100.3,224-224S379.7,32,256,32z M434.3,184.5l-61.5,18.9\r\n\tc-6.3-14-15.1-26.8-26.3-38c-11.2-11.2-24-20-38-26.3l18.9-61.5c23.8,9.5,45.6,23.9,64.3,42.5C410.4,138.9,424.8,160.7,434.3,184.5z\r\n\t M256,352c-53,0-96-43-96-96c0-53,43-96,96-96s96,43,96,96C352,309,309,352,256,352z M120.2,120.2c18.7-18.7,40.5-33,64.3-42.5\r\n\tl18.9,61.5c-14,6.3-26.8,15.1-38,26.3c-11.2,11.2-20,24-26.3,38l-61.5-18.9C87.2,160.7,101.6,138.9,120.2,120.2z M77.7,327.5\r\n\tl61.5-18.9c6.3,14,15.1,26.8,26.3,38s24,20,38,26.3l-18.9,61.5c-23.8-9.5-45.6-23.9-64.3-42.5C101.6,373.1,87.2,351.3,77.7,327.5z\r\n\t M391.8,391.8c-18.7,18.7-40.5,33-64.3,42.5l-18.9-61.5c14-6.3,26.8-15.1,38-26.3s20-24,26.3-38l61.5,18.9\r\n\tC424.8,351.3,410.4,373.1,391.8,391.8z" + }, + "children": [] + }] +}; +exports.helpBuoy = helpBuoy; \ No newline at end of file diff --git a/dist/ionicons/helpCircled.js b/dist/ionicons/helpCircled.js new file mode 100644 index 000000000..3cbc8e61e --- /dev/null +++ b/dist/ionicons/helpCircled.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.helpCircled = void 0; +var helpCircled = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,32C132.3,32,32,132.3,32,256s100.3,224,224,224c123.7,0,224-100.3,224-224S379.7,32,256,32z M276.2,358.7\r\n\t\tc-0.5,17.8-13.7,28.8-30.8,28.3c-16.4-0.5-29.3-12.2-28.8-30.1c0.5-17.8,14.1-29.1,30.5-28.6C264.3,328.8,276.8,340.9,276.2,358.7z\r\n\t\t M324.9,231.4c-4.2,5.9-13.6,13.5-25.4,22.7l-13.1,9c-6.4,4.9-10.4,10.7-12.5,17.3c-1.1,3.5-1.9,12.6-2.1,18.7\r\n\t\tc-0.1,1.2-0.8,3.9-4.5,3.9c-3.7,0-35,0-39.1,0c-4.1,0-4.6-2.4-4.5-3.6c0.6-16.6,3-30.3,9.9-41.3c9.3-14.8,35.5-30.4,35.5-30.4\r\n\t\tc4-3,7.1-6.2,9.5-9.7c4.4-6,8-12.7,8-19.9c0-8.3-2-16.2-7.3-22.8c-6.2-7.7-12.9-11.4-25.8-11.4c-12.7,0-20.1,6.4-25.4,14.8\r\n\t\tc-5.3,8.4-4.4,18.3-4.4,27.3H175c0-34,8.9-55.7,27.7-68.5c12.7-8.7,28.9-12.5,47.8-12.5c24.8,0,44.5,4.6,61.9,17.8\r\n\t\tc16.1,12.2,24.6,29.4,24.6,52.6C337,209.7,332,221.7,324.9,231.4z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,32C132.3,32,32,132.3,32,256s100.3,224,224,224c123.7,0,224-100.3,224-224S379.7,32,256,32z M276.2,358.7\r\n\t\tc-0.5,17.8-13.7,28.8-30.8,28.3c-16.4-0.5-29.3-12.2-28.8-30.1c0.5-17.8,14.1-29.1,30.5-28.6C264.3,328.8,276.8,340.9,276.2,358.7z\r\n\t\t M324.9,231.4c-4.2,5.9-13.6,13.5-25.4,22.7l-13.1,9c-6.4,4.9-10.4,10.7-12.5,17.3c-1.1,3.5-1.9,12.6-2.1,18.7\r\n\t\tc-0.1,1.2-0.8,3.9-4.5,3.9c-3.7,0-35,0-39.1,0c-4.1,0-4.6-2.4-4.5-3.6c0.6-16.6,3-30.3,9.9-41.3c9.3-14.8,35.5-30.4,35.5-30.4\r\n\t\tc4-3,7.1-6.2,9.5-9.7c4.4-6,8-12.7,8-19.9c0-8.3-2-16.2-7.3-22.8c-6.2-7.7-12.9-11.4-25.8-11.4c-12.7,0-20.1,6.4-25.4,14.8\r\n\t\tc-5.3,8.4-4.4,18.3-4.4,27.3H175c0-34,8.9-55.7,27.7-68.5c12.7-8.7,28.9-12.5,47.8-12.5c24.8,0,44.5,4.6,61.9,17.8\r\n\t\tc16.1,12.2,24.6,29.4,24.6,52.6C337,209.7,332,221.7,324.9,231.4z" + }, + "children": [] + }] + }] + }] +}; +exports.helpCircled = helpCircled; \ No newline at end of file diff --git a/dist/ionicons/home.js b/dist/ionicons/home.js new file mode 100644 index 000000000..b03fae8dc --- /dev/null +++ b/dist/ionicons/home.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.home = void 0; +var home = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "448,288 256,64 64,288 112,288 112,448 208,448 208,320 304,320 304,448 400,448 400,288 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "448,288 256,64 64,288 112,288 112,448 208,448 208,320 304,320 304,448 400,448 400,288 \t" + }, + "children": [] + }] + }] + }] +}; +exports.home = home; \ No newline at end of file diff --git a/dist/ionicons/icecream.js b/dist/ionicons/icecream.js new file mode 100644 index 000000000..e16951e7e --- /dev/null +++ b/dist/ionicons/icecream.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.icecream = void 0; +var icecream = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "128,256 256,480 384,256 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "128,256 256,480 384,256 \t" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M402.5,172.6c-0.8-0.4-1.5-0.8-2.3-1.3c-4.4-2.8-8.4-8.5-8.7-12.7l0.1-0.7c3.2-9,5-19.2,5-29.8c0-53.1-43-96.1-96.1-96.1\r\n\t\t\tc-31.4,0-59.2,15-76.8,38.3c0,0-9.1,14-10.8,29c0,0,1.1-19.4,4.2-31.5c-7.4-2.5-15.4-3.8-23.6-3.8c-41.7,0-75.6,33.8-75.6,75.6\r\n\t\t\tc0,6.4,0.8,12.6,2.3,18.5c0,0.4-0.1,0.7-0.2,1c-0.9,5.1-4,9.5-8.4,12.3c-0.7,0.5-1.5,0.9-2.2,1.3c-8.2,5-13.5,13.6-13.5,23.4\r\n\t\t\tc0,15.4,13.5,28,29.9,28h4.1h252h4.1c16.4,0,29.8-12.5,29.8-28C416,186.3,410.6,177.6,402.5,172.6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M402.5,172.6c-0.8-0.4-1.5-0.8-2.3-1.3c-4.4-2.8-8.4-8.5-8.7-12.7l0.1-0.7c3.2-9,5-19.2,5-29.8c0-53.1-43-96.1-96.1-96.1\r\n\t\t\tc-31.4,0-59.2,15-76.8,38.3c0,0-9.1,14-10.8,29c0,0,1.1-19.4,4.2-31.5c-7.4-2.5-15.4-3.8-23.6-3.8c-41.7,0-75.6,33.8-75.6,75.6\r\n\t\t\tc0,6.4,0.8,12.6,2.3,18.5c0,0.4-0.1,0.7-0.2,1c-0.9,5.1-4,9.5-8.4,12.3c-0.7,0.5-1.5,0.9-2.2,1.3c-8.2,5-13.5,13.6-13.5,23.4\r\n\t\t\tc0,15.4,13.5,28,29.9,28h4.1h252h4.1c16.4,0,29.8-12.5,29.8-28C416,186.3,410.6,177.6,402.5,172.6z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.icecream = icecream; \ No newline at end of file diff --git a/dist/ionicons/image.js b/dist/ionicons/image.js new file mode 100644 index 000000000..07a1451b5 --- /dev/null +++ b/dist/ionicons/image.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.image = void 0; +var image = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M368,224c26.5,0,48-21.5,48-48c0-26.5-21.5-48-48-48c-26.5,0-48,21.5-48,48C320,202.5,341.5,224,368,224z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M368,224c26.5,0,48-21.5,48-48c0-26.5-21.5-48-48-48c-26.5,0-48,21.5-48,48C320,202.5,341.5,224,368,224z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M452,64H60c-15.6,0-28,12.7-28,28.3v327.4c0,15.6,12.4,28.3,28,28.3h392c15.6,0,28-12.7,28-28.3V92.3\r\n\t\tC480,76.7,467.6,64,452,64z M348.9,261.7c-3-3.5-7.6-6.2-12.8-6.2c-5.1,0-8.7,2.4-12.8,5.7l-18.7,15.8c-3.9,2.8-7,4.7-11.5,4.7\r\n\t\tc-4.3,0-8.2-1.6-11-4.1c-1-0.9-2.8-2.6-4.3-4.1L224,215.3c-4-4.6-10-7.5-16.7-7.5c-6.7,0-12.9,3.3-16.8,7.8L64,368.2V107.7\r\n\t\tc1-6.8,6.3-11.7,13.1-11.7h357.7c6.9,0,12.5,5.1,12.9,12l0.3,260.4L348.9,261.7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M452,64H60c-15.6,0-28,12.7-28,28.3v327.4c0,15.6,12.4,28.3,28,28.3h392c15.6,0,28-12.7,28-28.3V92.3\r\n\t\tC480,76.7,467.6,64,452,64z M348.9,261.7c-3-3.5-7.6-6.2-12.8-6.2c-5.1,0-8.7,2.4-12.8,5.7l-18.7,15.8c-3.9,2.8-7,4.7-11.5,4.7\r\n\t\tc-4.3,0-8.2-1.6-11-4.1c-1-0.9-2.8-2.6-4.3-4.1L224,215.3c-4-4.6-10-7.5-16.7-7.5c-6.7,0-12.9,3.3-16.8,7.8L64,368.2V107.7\r\n\t\tc1-6.8,6.3-11.7,13.1-11.7h357.7c6.9,0,12.5,5.1,12.9,12l0.3,260.4L348.9,261.7z" + }, + "children": [] + }] + }] + }] +}; +exports.image = image; \ No newline at end of file diff --git a/dist/ionicons/images.js b/dist/ionicons/images.js new file mode 100644 index 000000000..ccaf3df6a --- /dev/null +++ b/dist/ionicons/images.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.images = void 0; +var images = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M457.6,140.2l-82.5-4l-4.8-53.8c-1-11.3-11.1-19.2-22.9-18.3L51.4,88.4c-11.8,1-20.3,10.5-19.4,21.7l21.2,235.8\r\n\t\t\tc1,11.3,11.2,19.2,22.9,18.3l15-1.2l-2.4,45.8c-0.6,12.6,9.2,22.8,22.4,23.5L441.3,448c13.2,0.6,24.1-8.6,24.8-21.2L480,163.5\r\n\t\t\tC480.6,151,470.7,140.8,457.6,140.2z M102.6,145.5l-7.1,134.8L78.1,305l-16-178c0-0.2,0-0.3,0-0.5s0-0.3,0-0.5\r\n\t\t\tc0.5-5,4.3-9,9.5-9.4l261-21.4c5.2-0.4,9.7,3,10.5,7.9c0,0.2,0.3,0.2,0.3,0.4c0,0.1,0.3,0.2,0.3,0.4l2.7,30.8l-219-10.5\r\n\t\t\tC114.2,123.8,103.2,133,102.6,145.5z M436.7,382.4l-46.7-55.3l-27.5-32.7c-2.4-2.9-6.3-5.3-10.6-5.5c-4.3-0.2-7.5,1.5-11.1,4.1\r\n\t\t\tl-16.4,11.9c-3.5,2.1-6.2,3.5-9.9,3.3c-3.6-0.2-6.8-1.6-9.1-3.8c-0.8-0.8-2.3-2.2-3.5-3.4l-42.8-48.9c-3.1-3.9-8.2-6.4-13.8-6.7\r\n\t\t\tc-5.7-0.3-11.2,2.1-14.8,5.6L129.4,359.8l-6.8,7.4l0.3-6.8l6.8-128.9l3.3-62.9c0-0.2,0-0.4,0-0.5c0-0.2,0-0.4,0-0.5\r\n\t\t\tc1.4-5.4,6.2-9.3,11.9-9l204.2,9.8l28.7,1.4l58.3,2.8c5.8,0.3,10.3,4.7,10.4,10.2c0,0.2,0.3,0.3,0.3,0.5c0,0.2,0.3,0.3,0.3,0.5\r\n\t\t\tL436.7,382.4z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M457.6,140.2l-82.5-4l-4.8-53.8c-1-11.3-11.1-19.2-22.9-18.3L51.4,88.4c-11.8,1-20.3,10.5-19.4,21.7l21.2,235.8\r\n\t\t\tc1,11.3,11.2,19.2,22.9,18.3l15-1.2l-2.4,45.8c-0.6,12.6,9.2,22.8,22.4,23.5L441.3,448c13.2,0.6,24.1-8.6,24.8-21.2L480,163.5\r\n\t\t\tC480.6,151,470.7,140.8,457.6,140.2z M102.6,145.5l-7.1,134.8L78.1,305l-16-178c0-0.2,0-0.3,0-0.5s0-0.3,0-0.5\r\n\t\t\tc0.5-5,4.3-9,9.5-9.4l261-21.4c5.2-0.4,9.7,3,10.5,7.9c0,0.2,0.3,0.2,0.3,0.4c0,0.1,0.3,0.2,0.3,0.4l2.7,30.8l-219-10.5\r\n\t\t\tC114.2,123.8,103.2,133,102.6,145.5z M436.7,382.4l-46.7-55.3l-27.5-32.7c-2.4-2.9-6.3-5.3-10.6-5.5c-4.3-0.2-7.5,1.5-11.1,4.1\r\n\t\t\tl-16.4,11.9c-3.5,2.1-6.2,3.5-9.9,3.3c-3.6-0.2-6.8-1.6-9.1-3.8c-0.8-0.8-2.3-2.2-3.5-3.4l-42.8-48.9c-3.1-3.9-8.2-6.4-13.8-6.7\r\n\t\t\tc-5.7-0.3-11.2,2.1-14.8,5.6L129.4,359.8l-6.8,7.4l0.3-6.8l6.8-128.9l3.3-62.9c0-0.2,0-0.4,0-0.5c0-0.2,0-0.4,0-0.5\r\n\t\t\tc1.4-5.4,6.2-9.3,11.9-9l204.2,9.8l28.7,1.4l58.3,2.8c5.8,0.3,10.3,4.7,10.4,10.2c0,0.2,0.3,0.3,0.3,0.5c0,0.2,0.3,0.3,0.3,0.5\r\n\t\t\tL436.7,382.4z" + }, + "children": [] + }] + }] + }] + }, { + "name": "path", + "attribs": { + "d": "M373.2,262.3c19.4,0,35.2-15.8,35.2-35.2s-15.7-35.2-35.2-35.2c-19.4,0-35.2,15.7-35.2,35.2S353.7,262.3,373.2,262.3z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M373.2,262.3c19.4,0,35.2-15.8,35.2-35.2s-15.7-35.2-35.2-35.2c-19.4,0-35.2,15.7-35.2,35.2S353.7,262.3,373.2,262.3z" + }, + "children": [] + }] + }] + }] +}; +exports.images = images; \ No newline at end of file diff --git a/dist/ionicons/index.js b/dist/ionicons/index.js new file mode 100644 index 000000000..bec7c0787 --- /dev/null +++ b/dist/ionicons/index.js @@ -0,0 +1 @@ +"use strict";Object.defineProperty(exports,"__esModule",{value:true});exports.androidRadioButtonOn=exports.androidRadioButtonOff=exports.androidPrint=exports.androidPlaystore=exports.androidPlane=exports.androidPin=exports.androidPhonePortrait=exports.androidPhoneLandscape=exports.androidPersonAdd=exports.androidPerson=exports.androidPeople=exports.androidOptions=exports.androidOpen=exports.androidNotificationsOff=exports.androidNotificationsNone=exports.androidNotifications=exports.androidNavigate=exports.androidMoreVertical=exports.androidMoreHorizontal=exports.androidMicrophoneOff=exports.androidMicrophone=exports.androidMenu=exports.androidMap=exports.androidMail=exports.androidLock=exports.androidLocate=exports.androidList=exports.androidLaptop=exports.androidImage=exports.androidHome=exports.androidHappy=exports.androidHangout=exports.androidHand=exports.androidGlobe=exports.androidFunnel=exports.androidFolderOpen=exports.androidFolder=exports.androidFilm=exports.androidFavoriteOutline=exports.androidFavorite=exports.androidExpand=exports.androidExit=exports.androidDrafts=exports.androidDownload=exports.androidDoneAll=exports.androidDone=exports.androidDocument=exports.androidDesktop=exports.androidDelete=exports.androidCreate=exports.androidContract=exports.androidContacts=exports.androidContact=exports.androidCompass=exports.androidColorPalette=exports.androidCloudOutline=exports.androidCloudDone=exports.androidCloudCircle=exports.androidCloud=exports.androidClose=exports.androidClipboard=exports.androidCheckmarkCircle=exports.androidCheckboxOutlineBlank=exports.androidCheckboxOutline=exports.androidCheckboxBlank=exports.androidCheckbox=exports.androidChat=exports.androidCart=exports.androidCar=exports.androidCancel=exports.androidCamera=exports.androidCall=exports.androidCalendar=exports.androidBus=exports.androidBulb=exports.androidBookmark=exports.androidBoat=exports.androidBicycle=exports.androidBar=exports.androidAttach=exports.androidArrowUp=exports.androidArrowForward=exports.androidArrowDropupCircle=exports.androidArrowDropup=exports.androidArrowDroprightCircle=exports.androidArrowDropright=exports.androidArrowDropleftCircle=exports.androidArrowDropleft=exports.androidArrowDropdownCircle=exports.androidArrowDropdown=exports.androidArrowDown=exports.androidArrowBack=exports.androidArchive=exports.androidApps=exports.androidAlert=exports.androidAlarmClock=exports.androidAddCircle=exports.androidAdd=exports.alertCircled=exports.alert=void 0;exports.codeDownload=exports.code=exports.cloud=exports.closedCaptioning=exports.closeRound=exports.closeCircled=exports.close=exports.clock=exports.clipboard=exports.chevronUp=exports.chevronRight=exports.chevronLeft=exports.chevronDown=exports.checkmarkRound=exports.checkmarkCircled=exports.checkmark=exports.chatbubbles=exports.chatbubbleWorking=exports.chatbubble=exports.chatboxes=exports.chatboxWorking=exports.chatbox=exports.cash=exports.card=exports.camera=exports.calendar=exports.calculator=exports.bug=exports.briefcase=exports.bowtie=exports.bookmark=exports.bonfire=exports.bluetooth=exports.beer=exports.beaker=exports.batteryLow=exports.batteryHalf=exports.batteryFull=exports.batteryEmpty=exports.batteryCharging=exports.bag=exports.backspaceOutline=exports.backspace=exports.at=exports.asterisk=exports.arrowUpC=exports.arrowUpB=exports.arrowUpA=exports.arrowSwap=exports.arrowShrink=exports.arrowRightC=exports.arrowRightB=exports.arrowRightA=exports.arrowReturnRight=exports.arrowReturnLeft=exports.arrowResize=exports.arrowMove=exports.arrowLeftC=exports.arrowLeftB=exports.arrowLeftA=exports.arrowGraphUpRight=exports.arrowGraphUpLeft=exports.arrowGraphDownRight=exports.arrowGraphDownLeft=exports.arrowExpand=exports.arrowDownC=exports.arrowDownB=exports.arrowDownA=exports.archive=exports.aperture=exports.androidWifi=exports.androidWatch=exports.androidWarning=exports.androidWalk=exports.androidVolumeUp=exports.androidVolumeOff=exports.androidVolumeMute=exports.androidVolumeDown=exports.androidUpload=exports.androidUnlock=exports.androidTrain=exports.androidTime=exports.androidTextsms=exports.androidSync=exports.androidSunny=exports.androidSubway=exports.androidStopwatch=exports.androidStarOutline=exports.androidStarHalf=exports.androidStar=exports.androidShareAlt=exports.androidShare=exports.androidSettings=exports.androidSend=exports.androidSearch=exports.androidSad=exports.androidRestaurant=exports.androidRemoveCircle=exports.androidRemove=exports.androidRefresh=void 0;exports.iosCalendar=exports.iosCalculatorOutline=exports.iosCalculator=exports.iosBrowsersOutline=exports.iosBrowsers=exports.iosBriefcaseOutline=exports.iosBriefcase=exports.iosBoxOutline=exports.iosBox=exports.iosBookmarksOutline=exports.iosBookmarks=exports.iosBookOutline=exports.iosBook=exports.iosBoltOutline=exports.iosBolt=exports.iosBodyOutline=exports.iosBody=exports.iosBellOutline=exports.iosBell=exports.iosBasketballOutline=exports.iosBasketball=exports.iosBaseballOutline=exports.iosBaseball=exports.iosBarcodeOutline=exports.iosBarcode=exports.iosAtOutline=exports.iosAt=exports.iosArrowUp=exports.iosArrowThinUp=exports.iosArrowThinRight=exports.iosArrowThinLeft=exports.iosArrowThinDown=exports.iosArrowRight=exports.iosArrowLeft=exports.iosArrowForward=exports.iosArrowDown=exports.iosArrowBack=exports.iosAnalyticsOutline=exports.iosAnalytics=exports.iosAmericanfootballOutline=exports.iosAmericanfootball=exports.iosAlbumsOutline=exports.iosAlbums=exports.iosAlarmOutline=exports.iosAlarm=exports.ionic=exports.informationCircled=exports.information=exports.images=exports.image=exports.icecream=exports.home=exports.helpCircled=exports.helpBuoy=exports.help=exports.heartBroken=exports.heart=exports.headphone=exports.happyOutline=exports.happy=exports.hammer=exports.grid=exports.gearB=exports.gearA=exports.funnel=exports.forward=exports.forkRepo=exports.fork=exports.folder=exports.flashOff=exports.flash=exports.flame=exports.flag=exports.fireball=exports.filmMarker=exports.filing=exports.female=exports.eyeDisabled=exports.eye=exports.erlenmeyerFlaskBubbles=exports.erlenmeyerFlask=exports.emailUnread=exports.email=exports.eject=exports.egg=exports.edit=exports.easel=exports.earth=exports.drag=exports.documentText=exports.documentIcon=exports.disc=exports.cube=exports.crop=exports.contrast=exports.connectionBars=exports.compose=exports.compass=exports.coffee=exports.codeWorking=void 0;exports.iosLocked=exports.iosLocationOutline=exports.iosLocation=exports.iosListOutline=exports.iosList=exports.iosLightbulbOutline=exports.iosLightbulb=exports.iosKeypadOutline=exports.iosKeypad=exports.iosIonicOutline=exports.iosInformationOutline=exports.iosInformationEmpty=exports.iosInformation=exports.iosInfiniteOutline=exports.iosInfinite=exports.iosHomeOutline=exports.iosHome=exports.iosHelpOutline=exports.iosHelpEmpty=exports.iosHelp=exports.iosHeartOutline=exports.iosHeart=exports.iosGridViewOutline=exports.iosGridView=exports.iosGlassesOutline=exports.iosGlasses=exports.iosGearOutline=exports.iosGear=exports.iosGameControllerBOutline=exports.iosGameControllerB=exports.iosGameControllerAOutline=exports.iosGameControllerA=exports.iosFootballOutline=exports.iosFootball=exports.iosFolderOutline=exports.iosFolder=exports.iosFlowerOutline=exports.iosFlower=exports.iosFlaskOutline=exports.iosFlask=exports.iosFlameOutline=exports.iosFlame=exports.iosFlagOutline=exports.iosFlag=exports.iosFilmOutline=exports.iosFilm=exports.iosFilingOutline=exports.iosFiling=exports.iosFastforwardOutline=exports.iosFastforward=exports.iosEyeOutline=exports.iosEye=exports.iosEmailOutline=exports.iosEmail=exports.iosDrag=exports.iosDownloadOutline=exports.iosDownload=exports.iosCropStrong=exports.iosCrop=exports.iosCopyOutline=exports.iosCopy=exports.iosContactOutline=exports.iosContact=exports.iosComposeOutline=exports.iosCompose=exports.iosColorWandOutline=exports.iosColorWand=exports.iosColorFilterOutline=exports.iosColorFilter=exports.iosCogOutline=exports.iosCog=exports.iosCloudyOutline=exports.iosCloudyNightOutline=exports.iosCloudyNight=exports.iosCloudy=exports.iosCloudUploadOutline=exports.iosCloudUpload=exports.iosCloudOutline=exports.iosCloudDownloadOutline=exports.iosCloudDownload=exports.iosCloud=exports.iosCloseOutline=exports.iosCloseEmpty=exports.iosClose=exports.iosClockOutline=exports.iosClock=exports.iosCircleOutline=exports.iosCircleFilled=exports.iosCheckmarkOutline=exports.iosCheckmarkEmpty=exports.iosCheckmark=exports.iosChatbubbleOutline=exports.iosChatbubble=exports.iosChatboxesOutline=exports.iosChatboxes=exports.iosCartOutline=exports.iosCart=exports.iosCameraOutline=exports.iosCamera=exports.iosCalendarOutline=void 0;exports.iosTennisballOutline=exports.iosTennisball=exports.iosTelephoneOutline=exports.iosTelephone=exports.iosSunnyOutline=exports.iosSunny=exports.iosStopwatchOutline=exports.iosStopwatch=exports.iosStarOutline=exports.iosStarHalf=exports.iosStar=exports.iosSpeedometerOutline=exports.iosSpeedometer=exports.iosSnowy=exports.iosSkipforwardOutline=exports.iosSkipforward=exports.iosSkipbackwardOutline=exports.iosSkipbackward=exports.iosShuffleStrong=exports.iosShuffle=exports.iosSettingsStrong=exports.iosSettings=exports.iosSearchStrong=exports.iosSearch=exports.iosRoseOutline=exports.iosRose=exports.iosRewindOutline=exports.iosRewind=exports.iosReverseCameraOutline=exports.iosReverseCamera=exports.iosReload=exports.iosRefreshOutline=exports.iosRefreshEmpty=exports.iosRefresh=exports.iosRedoOutline=exports.iosRedo=exports.iosRecordingOutline=exports.iosRecording=exports.iosRainyOutline=exports.iosRainy=exports.iosPulseStrong=exports.iosPulse=exports.iosPrinterOutline=exports.iosPrinter=exports.iosPricetagsOutline=exports.iosPricetags=exports.iosPricetagOutline=exports.iosPricetag=exports.iosPlusOutline=exports.iosPlusEmpty=exports.iosPlus=exports.iosPlayOutline=exports.iosPlay=exports.iosPintOutline=exports.iosPint=exports.iosPieOutline=exports.iosPie=exports.iosPhotosOutline=exports.iosPhotos=exports.iosPersonaddOutline=exports.iosPersonadd=exports.iosPersonOutline=exports.iosPerson=exports.iosPeopleOutline=exports.iosPeople=exports.iosPawOutline=exports.iosPaw=exports.iosPauseOutline=exports.iosPause=exports.iosPartlysunnyOutline=exports.iosPartlysunny=exports.iosPaperplaneOutline=exports.iosPaperplane=exports.iosPaperOutline=exports.iosPaper=exports.iosNutritionOutline=exports.iosNutrition=exports.iosNavigateOutline=exports.iosNavigate=exports.iosMusicalNotes=exports.iosMusicalNote=exports.iosMoreOutline=exports.iosMore=exports.iosMoonOutline=exports.iosMoon=exports.iosMonitorOutline=exports.iosMonitor=exports.iosMinusOutline=exports.iosMinusEmpty=exports.iosMinus=exports.iosMicOutline=exports.iosMicOff=exports.iosMic=exports.iosMedkitOutline=exports.iosMedkit=exports.iosMedicalOutline=exports.iosMedical=exports.iosLoopStrong=exports.iosLoop=exports.iosLockedOutline=void 0;exports.refresh=exports.record=exports.radioWaves=exports.quote=exports.qrScanner=exports.pullRequest=exports.printer=exports.pricetags=exports.pricetag=exports.power=exports.pound=exports.podium=exports.plusRound=exports.plusCircled=exports.plus=exports.playstation=exports.play=exports.planet=exports.plane=exports.pizza=exports.pinpoint=exports.pin=exports.pieGraph=exports.personStalker=exports.personAdd=exports.person=exports.pause=exports.paperclip=exports.paperAirplane=exports.paintbucket=exports.paintbrush=exports.outlet=exports.nuclear=exports.noSmoking=exports.network=exports.navigate=exports.naviconRound=exports.navicon=exports.musicNote=exports.mouse=exports.more=exports.monitor=exports.modelS=exports.minusRound=exports.minusCircled=exports.minus=exports.micC=exports.micB=exports.micA=exports.merge=exports.medkit=exports.map=exports.man=exports.male=exports.magnet=exports.loop=exports.logOut=exports.logIn=exports.locked=exports.lockCombination=exports.location=exports.loadD=exports.loadC=exports.loadB=exports.loadA=exports.link=exports.lightbulb=exports.levels=exports.leaf=exports.laptop=exports.knife=exports.key=exports.jet=exports.ipod=exports.iphone=exports.ipad=exports.iosWorldOutline=exports.iosWorld=exports.iosWineglassOutline=exports.iosWineglass=exports.iosVolumeLow=exports.iosVolumeHigh=exports.iosVideocamOutline=exports.iosVideocam=exports.iosUploadOutline=exports.iosUpload=exports.iosUnlockedOutline=exports.iosUnlocked=exports.iosUndoOutline=exports.iosUndo=exports.iosTrashOutline=exports.iosTrash=exports.iosToggleOutline=exports.iosToggle=exports.iosTimerOutline=exports.iosTimer=exports.iosTimeOutline=exports.iosTime=exports.iosThunderstormOutline=exports.iosThunderstorm=void 0;exports.speedometer=exports.speakerphone=exports.soupCanOutline=exports.soupCan=exports.socialYoutubeOutline=exports.socialYoutube=exports.socialYenOutline=exports.socialYen=exports.socialYahooOutline=exports.socialYahoo=exports.socialWordpressOutline=exports.socialWordpress=exports.socialWindowsOutline=exports.socialWindows=exports.socialWhatsappOutline=exports.socialWhatsapp=exports.socialVimeoOutline=exports.socialVimeo=exports.socialUsdOutline=exports.socialUsd=exports.socialTwitterOutline=exports.socialTwitter=exports.socialTwitchOutline=exports.socialTwitch=exports.socialTux=exports.socialTumblrOutline=exports.socialTumblr=exports.socialSnapchatOutline=exports.socialSnapchat=exports.socialSkypeOutline=exports.socialSkype=exports.socialSass=exports.socialRssOutline=exports.socialRss=exports.socialRedditOutline=exports.socialReddit=exports.socialPython=exports.socialPinterestOutline=exports.socialPinterest=exports.socialOctocat=exports.socialNodejs=exports.socialMarkdown=exports.socialLinkedinOutline=exports.socialLinkedin=exports.socialJavascriptOutline=exports.socialJavascript=exports.socialInstagramOutline=exports.socialInstagram=exports.socialHtml5Outline=exports.socialHtml5=exports.socialHackernewsOutline=exports.socialHackernews=exports.socialGoogleplusOutline=exports.socialGoogleplus=exports.socialGoogleOutline=exports.socialGoogle=exports.socialGithubOutline=exports.socialGithub=exports.socialFreebsdDevil=exports.socialFoursquareOutline=exports.socialFoursquare=exports.socialFacebookOutline=exports.socialFacebook=exports.socialEuroOutline=exports.socialEuro=exports.socialDropboxOutline=exports.socialDropbox=exports.socialDribbbleOutline=exports.socialDribbble=exports.socialDesignernewsOutline=exports.socialDesignernews=exports.socialCss3Outline=exports.socialCss3=exports.socialCodepenOutline=exports.socialCodepen=exports.socialChromeOutline=exports.socialChrome=exports.socialBufferOutline=exports.socialBuffer=exports.socialBitcoinOutline=exports.socialBitcoin=exports.socialAppleOutline=exports.socialApple=exports.socialAngularOutline=exports.socialAngular=exports.socialAndroidOutline=exports.socialAndroid=exports.skipForward=exports.skipBackward=exports.shuffle=exports.share=exports.settings=exports.search=exports.scissors=exports.sadOutline=exports.sad=exports.ribbonB=exports.ribbonA=exports.replyAll=exports.reply=void 0;exports.xbox=exports.wrench=exports.woman=exports.wineglass=exports.wifi=exports.waterdrop=exports.wand=exports.volumeMute=exports.volumeMedium=exports.volumeLow=exports.volumeHigh=exports.videocamera=exports.usb=exports.upload=exports.unlocked=exports.university=exports.umbrella=exports.tshirtOutline=exports.tshirt=exports.trophy=exports.trashB=exports.trashA=exports.transgender=exports.toggleFilled=exports.toggle=exports.thumbsup=exports.thumbsdown=exports.thermometer=exports.stop=exports.steam=exports.statsBars=exports.star=exports.spoon=void 0;var alertCircled={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M476.7,422.2L270.1,72.7c-2.9-5-8.3-8.7-14.1-8.7c-5.9,0-11.3,3.7-14.1,8.7L35.3,422.2c-2.8,5-4.8,13-1.9,17.9\r\n\t\tc2.9,4.9,8.2,7.9,14,7.9h417.1c5.8,0,11.1-3,14-7.9C481.5,435.2,479.5,427.1,476.7,422.2z M288,400h-64v-48h64V400z M288,320h-64\r\n\t\tV176h64V320z"},"children":[{"name":"path","attribs":{"d":"M476.7,422.2L270.1,72.7c-2.9-5-8.3-8.7-14.1-8.7c-5.9,0-11.3,3.7-14.1,8.7L35.3,422.2c-2.8,5-4.8,13-1.9,17.9\r\n\t\tc2.9,4.9,8.2,7.9,14,7.9h417.1c5.8,0,11.1-3,14-7.9C481.5,435.2,479.5,427.1,476.7,422.2z M288,400h-64v-48h64V400z M288,320h-64\r\n\t\tV176h64V320z"},"children":[]}]}]}]};exports.alertCircled=alertCircled;var alert={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M320,480H192v-96h128V480z M304,320h-96L192,32h128L304,320z"},"children":[{"name":"path","attribs":{"d":"M320,480H192v-96h128V480z M304,320h-96L192,32h128L304,320z"},"children":[]}]}]}]};exports.alert=alert;var androidAddCircle={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,48C141.125,48,48,141.125,48,256s93.125,208,208,208s208-93.125,208-208S370.875,48,256,48z M363,277h-86v86h-42v-86\r\n\t\t\th-86v-42h86v-86h42v86h86V277z"},"children":[{"name":"path","attribs":{"d":"M256,48C141.125,48,48,141.125,48,256s93.125,208,208,208s208-93.125,208-208S370.875,48,256,48z M363,277h-86v86h-42v-86\r\n\t\t\th-86v-42h86v-86h42v86h86V277z"},"children":[]}]}]}]}]}]};exports.androidAddCircle=androidAddCircle;var androidAdd={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_7_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M416,277.333H277.333V416h-42.666V277.333H96v-42.666h138.667V96h42.666v138.667H416V277.333z"},"children":[{"name":"path","attribs":{"d":"M416,277.333H277.333V416h-42.666V277.333H96v-42.666h138.667V96h42.666v138.667H416V277.333z"},"children":[]}]}]}]}]}]};exports.androidAdd=androidAdd;var androidAlarmClock={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_2_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M470,124.837l-98.443-81.78l-27.814,32.931l98.442,81.769L470,124.837z M167.192,74.919L139.366,42L42,124.837\r\n\t\t\tl27.814,32.919L167.192,74.919z M266.701,172.628h-32.101v127.446l101.649,60.539l16.051-26.553l-85.6-49.917V172.628z\r\n\t\t\t M256,87.665c-107,0-192.601,86.021-192.601,191.166C63.399,383.98,149,470,256,470c105.936,0,192.601-86.02,192.601-191.169\r\n\t\t\tC448.601,173.687,361.936,87.665,256,87.665z M256,427.52c-82.393,0-149.8-66.906-149.8-148.688\r\n\t\t\tc0-81.777,67.407-148.684,149.8-148.684c82.394,0,149.8,66.906,149.8,148.684C405.8,361.671,338.394,427.52,256,427.52z"},"children":[{"name":"path","attribs":{"d":"M470,124.837l-98.443-81.78l-27.814,32.931l98.442,81.769L470,124.837z M167.192,74.919L139.366,42L42,124.837\r\n\t\t\tl27.814,32.919L167.192,74.919z M266.701,172.628h-32.101v127.446l101.649,60.539l16.051-26.553l-85.6-49.917V172.628z\r\n\t\t\t M256,87.665c-107,0-192.601,86.021-192.601,191.166C63.399,383.98,149,470,256,470c105.936,0,192.601-86.02,192.601-191.169\r\n\t\t\tC448.601,173.687,361.936,87.665,256,87.665z M256,427.52c-82.393,0-149.8-66.906-149.8-148.688\r\n\t\t\tc0-81.777,67.407-148.684,149.8-148.684c82.394,0,149.8,66.906,149.8,148.684C405.8,361.671,338.394,427.52,256,427.52z"},"children":[]}]}]}]}]}]};exports.androidAlarmClock=androidAlarmClock;var androidAlert={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_30_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,48C141.6,48,48,141.601,48,256s93.6,208,208,208c114.4,0,208-93.601,208-208S370.4,48,256,48z M280,360h-48v-40h48\r\n\t\t\tV360z M280,272h-48V144h48V272z"},"children":[{"name":"path","attribs":{"d":"M256,48C141.6,48,48,141.601,48,256s93.6,208,208,208c114.4,0,208-93.601,208-208S370.4,48,256,48z M280,360h-48v-40h48\r\n\t\t\tV360z M280,272h-48V144h48V272z"},"children":[]}]}]}]}]}]};exports.androidAlert=androidAlert;var androidApps={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M96,176h80V96H96V176z M216,416h80v-80h-80V416z M96,416h80v-80H96V416z M96,296h80v-80H96V296z M216,296h80v-80h-80V296z\r\n\t\t\t M336,96v80h80V96H336z M216,176h80V96h-80V176z M336,296h80v-80h-80V296z M336,416h80v-80h-80V416z"},"children":[{"name":"path","attribs":{"d":"M96,176h80V96H96V176z M216,416h80v-80h-80V416z M96,416h80v-80H96V416z M96,296h80v-80H96V296z M216,296h80v-80h-80V296z\r\n\t\t\t M336,96v80h80V96H336z M216,176h80V96h-80V176z M336,296h80v-80h-80V296z M336,416h80v-80h-80V416z"},"children":[]}]}]}]}]}]};exports.androidApps=androidApps;var androidArchive={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M453.594,100.001l-32.353-39.299C415.469,52.627,405.083,48,394.664,48H117.335c-10.416,0-20.801,4.627-26.576,12.702\r\n\t\tl-32.351,39.299C51.468,106.923,48,117.335,48,128.886v288.89C48,443.2,68.8,464,94.225,464h323.553\r\n\t\tC443.202,464,464,443.2,464,417.775v-288.89C464,117.335,460.537,106.923,453.594,100.001z M256,383.109L128.89,256h80.89v-46.224\r\n\t\th92.443V256h80.89L256,383.109z M96.534,94.221l18.486-23.111h277.331l21.965,23.111H96.534z"},"children":[{"name":"path","attribs":{"d":"M453.594,100.001l-32.353-39.299C415.469,52.627,405.083,48,394.664,48H117.335c-10.416,0-20.801,4.627-26.576,12.702\r\n\t\tl-32.351,39.299C51.468,106.923,48,117.335,48,128.886v288.89C48,443.2,68.8,464,94.225,464h323.553\r\n\t\tC443.202,464,464,443.2,464,417.775v-288.89C464,117.335,460.537,106.923,453.594,100.001z M256,383.109L128.89,256h80.89v-46.224\r\n\t\th92.443V256h80.89L256,383.109z M96.534,94.221l18.486-23.111h277.331l21.965,23.111H96.534z"},"children":[]}]}]}]};exports.androidArchive=androidArchive;var androidArrowBack={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_8_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M427,234.625H167.296l119.702-119.702L256,85L85,256l171,171l29.922-29.924L167.296,277.375H427V234.625z"},"children":[{"name":"path","attribs":{"d":"M427,234.625H167.296l119.702-119.702L256,85L85,256l171,171l29.922-29.924L167.296,277.375H427V234.625z"},"children":[]}]}]}]}]}]};exports.androidArrowBack=androidArrowBack;var androidArrowDown={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_8_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M277.375,85v259.704l119.702-119.702L427,256L256,427L85,256l29.924-29.922l119.701,118.626V85H277.375z"},"children":[{"name":"path","attribs":{"d":"M277.375,85v259.704l119.702-119.702L427,256L256,427L85,256l29.924-29.922l119.701,118.626V85H277.375z"},"children":[]}]}]}]}]}]};exports.androidArrowDown=androidArrowDown;var androidArrowDropdownCircle={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,48C141.125,48,48,141.125,48,256s93.125,208,208,208s208-93.125,208-208S370.875,48,256,48z M256,320l-96-96h192\r\n\t\tL256,320z"},"children":[{"name":"path","attribs":{"d":"M256,48C141.125,48,48,141.125,48,256s93.125,208,208,208s208-93.125,208-208S370.875,48,256,48z M256,320l-96-96h192\r\n\t\tL256,320z"},"children":[]}]}]}]};exports.androidArrowDropdownCircle=androidArrowDropdownCircle;var androidArrowDropdown={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"128,192 256,320 384,192 \t"},"children":[{"name":"polygon","attribs":{"points":"128,192 256,320 384,192 \t"},"children":[]}]}]}]};exports.androidArrowDropdown=androidArrowDropdown;var androidArrowDropleftCircle={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M464,256c0-114.875-93.125-208-208-208S48,141.125,48,256s93.125,208,208,208S464,370.875,464,256z M192,256l96-96v192\r\n\t\tL192,256z"},"children":[{"name":"path","attribs":{"d":"M464,256c0-114.875-93.125-208-208-208S48,141.125,48,256s93.125,208,208,208S464,370.875,464,256z M192,256l96-96v192\r\n\t\tL192,256z"},"children":[]}]}]}]};exports.androidArrowDropleftCircle=androidArrowDropleftCircle;var androidArrowDropleft={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"320,128 192,256 320,384 \t"},"children":[{"name":"polygon","attribs":{"points":"320,128 192,256 320,384 \t"},"children":[]}]}]}]};exports.androidArrowDropleft=androidArrowDropleft;var androidArrowDroprightCircle={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,464c114.875,0,208-93.125,208-208S370.875,48,256,48S48,141.125,48,256S141.125,464,256,464z M224,352V160l96,96\r\n\t\tL224,352z"},"children":[{"name":"path","attribs":{"d":"M256,464c114.875,0,208-93.125,208-208S370.875,48,256,48S48,141.125,48,256S141.125,464,256,464z M224,352V160l96,96\r\n\t\tL224,352z"},"children":[]}]}]}]};exports.androidArrowDroprightCircle=androidArrowDroprightCircle;var androidArrowDropright={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"192,128 320,256 192,384 \t"},"children":[{"name":"polygon","attribs":{"points":"192,128 320,256 192,384 \t"},"children":[]}]}]}]};exports.androidArrowDropright=androidArrowDropright;var androidArrowDropupCircle={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M464,256c0-114.875-93.125-208-208-208S48,141.125,48,256s93.125,208,208,208S464,370.875,464,256z M352,288H160l96-96\r\n\t\tL352,288z"},"children":[{"name":"path","attribs":{"d":"M464,256c0-114.875-93.125-208-208-208S48,141.125,48,256s93.125,208,208,208S464,370.875,464,256z M352,288H160l96-96\r\n\t\tL352,288z"},"children":[]}]}]}]};exports.androidArrowDropupCircle=androidArrowDropupCircle;var androidArrowDropup={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"128,320 256,192 384,320 \t"},"children":[{"name":"polygon","attribs":{"points":"128,320 256,192 384,320 \t"},"children":[]}]}]}]};exports.androidArrowDropup=androidArrowDropup;var androidArrowForward={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_8_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M85,277.375h259.704L225.002,397.077L256,427l171-171L256,85l-29.922,29.924l118.626,119.701H85V277.375z"},"children":[{"name":"path","attribs":{"d":"M85,277.375h259.704L225.002,397.077L256,427l171-171L256,85l-29.922,29.924l118.626,119.701H85V277.375z"},"children":[]}]}]}]}]}]};exports.androidArrowForward=androidArrowForward;var androidArrowUp={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_8_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M277.375,427V167.296l119.702,119.702L427,256L256,85L85,256l29.924,29.922l119.701-118.626V427H277.375z"},"children":[{"name":"path","attribs":{"d":"M277.375,427V167.296l119.702,119.702L427,256L256,85L85,256l29.924,29.922l119.701-118.626V427H277.375z"},"children":[]}]}]}]}]}]};exports.androidArrowUp=androidArrowUp;var androidAttach={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_3_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M341.334,128v234.666C341.334,409.604,302.938,448,256,448c-46.937,0-85.333-38.396-85.333-85.334V117.334\r\n\t\t\tC170.667,87.469,194.135,64,224,64c29.864,0,53.333,23.469,53.333,53.334v245.333c0,11.729-9.605,21.333-21.334,21.333\r\n\t\t\tc-11.729,0-21.333-9.604-21.333-21.333V160h-32v202.667C202.667,392.531,226.135,416,256,416\r\n\t\t\tc29.865,0,53.334-23.469,53.334-53.333V117.334C309.334,70.401,270.938,32,224,32c-46.938,0-85.334,38.401-85.334,85.334v245.332\r\n\t\t\tC138.667,427.729,190.938,480,256,480c65.062,0,117.334-52.271,117.334-117.334V128H341.334z"},"children":[{"name":"path","attribs":{"d":"M341.334,128v234.666C341.334,409.604,302.938,448,256,448c-46.937,0-85.333-38.396-85.333-85.334V117.334\r\n\t\t\tC170.667,87.469,194.135,64,224,64c29.864,0,53.333,23.469,53.333,53.334v245.333c0,11.729-9.605,21.333-21.334,21.333\r\n\t\t\tc-11.729,0-21.333-9.604-21.333-21.333V160h-32v202.667C202.667,392.531,226.135,416,256,416\r\n\t\t\tc29.865,0,53.334-23.469,53.334-53.333V117.334C309.334,70.401,270.938,32,224,32c-46.938,0-85.334,38.401-85.334,85.334v245.332\r\n\t\t\tC138.667,427.729,190.938,480,256,480c65.062,0,117.334-52.271,117.334-117.334V128H341.334z"},"children":[]}]}]}]}]}]};exports.androidAttach=androidAttach;var androidBar={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_37_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M234.667,277.333V408H128v40h256v-40H277.333V277.333L448,106.667V64H64v42.667L234.667,277.333z M160,149.333\r\n\t\t\tl-42.667-42.666h277.334L352,149.333H160z"},"children":[{"name":"path","attribs":{"d":"M234.667,277.333V408H128v40h256v-40H277.333V277.333L448,106.667V64H64v42.667L234.667,277.333z M160,149.333\r\n\t\t\tl-42.667-42.666h277.334L352,149.333H160z"},"children":[]}]}]}]}]}]};exports.androidBar=androidBar;var androidBicycle={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_13_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M330.666,131.202c18.668,0,33.598-14.935,33.598-33.601S349.334,64,330.666,64C312,64,297.07,78.935,297.07,97.601\r\n\t\t\tS312,131.202,330.666,131.202z M386.666,261.334c-51.332,0-93.332,42-93.332,93.333s42,93.333,93.332,93.333\r\n\t\t\tC438,448,480,406,480,354.667S438,261.334,386.666,261.334z M386.666,420c-36.402,0-65.332-28.93-65.332-65.333\r\n\t\t\ts28.93-65.333,65.332-65.333c36.404,0,65.334,28.93,65.334,65.333S423.07,420,386.666,420z M305.597,224H384v-32h-58.845\r\n\t\t\tl-34.62-60.134c-5.605-9.333-15.869-15.864-27.07-15.864c-8.399,0-16.798,3.732-22.399,9.333l-71.732,69.065\r\n\t\t\tc-5.601,5.601-9.333,14-9.333,22.399c0,12.131,9.202,21.465,18.535,27.065L240,282.134V368h32V256l-39.333-32l42.929-44.533\r\n\t\t\tL305.597,224z M125.333,261.334C74,261.334,32,303.334,32,354.667S74,448,125.333,448c51.333,0,93.333-42,93.333-93.333\r\n\t\t\tS176.667,261.334,125.333,261.334z M125.333,420C88.934,420,60,391.07,60,354.667s28.934-65.333,65.333-65.333\r\n\t\t\tc36.399,0,65.333,28.93,65.333,65.333S161.732,420,125.333,420z"},"children":[{"name":"path","attribs":{"d":"M330.666,131.202c18.668,0,33.598-14.935,33.598-33.601S349.334,64,330.666,64C312,64,297.07,78.935,297.07,97.601\r\n\t\t\tS312,131.202,330.666,131.202z M386.666,261.334c-51.332,0-93.332,42-93.332,93.333s42,93.333,93.332,93.333\r\n\t\t\tC438,448,480,406,480,354.667S438,261.334,386.666,261.334z M386.666,420c-36.402,0-65.332-28.93-65.332-65.333\r\n\t\t\ts28.93-65.333,65.332-65.333c36.404,0,65.334,28.93,65.334,65.333S423.07,420,386.666,420z M305.597,224H384v-32h-58.845\r\n\t\t\tl-34.62-60.134c-5.605-9.333-15.869-15.864-27.07-15.864c-8.399,0-16.798,3.732-22.399,9.333l-71.732,69.065\r\n\t\t\tc-5.601,5.601-9.333,14-9.333,22.399c0,12.131,9.202,21.465,18.535,27.065L240,282.134V368h32V256l-39.333-32l42.929-44.533\r\n\t\t\tL305.597,224z M125.333,261.334C74,261.334,32,303.334,32,354.667S74,448,125.333,448c51.333,0,93.333-42,93.333-93.333\r\n\t\t\tS176.667,261.334,125.333,261.334z M125.333,420C88.934,420,60,391.07,60,354.667s28.934-65.333,65.333-65.333\r\n\t\t\tc36.399,0,65.333,28.93,65.333,65.333S161.732,420,125.333,420z"},"children":[]}]}]}]}]}]};exports.androidBicycle=androidBicycle;var androidBoat={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M84.255,413h1.063c34.123,0,63.977-19.021,85.305-42.494c21.325,23.473,51.18,42.762,85.304,42.762\r\n\t\ts63.979-19.334,85.305-42.806C362.559,393.934,392.412,413,426.535,413h1.062l51.253-138.78c2.126-5.329,1.063-11.641-1.07-16.976\r\n\t\tc-2.136-5.333-7.237-8.487-12.567-10.623L427,234.133v-98.15C427,112.51,407.344,93,383.884,93h-63.979l-15.993-53h-95.969\r\n\t\tl-15.995,53h-63.979C104.511,93,85,112.51,85,135.982v98.15l-38.074,12.533c-5.33,2.136-10.582,5.334-12.718,10.667\r\n\t\tc-2.135,5.335-3.158,10.49-1.031,16.887L84.255,413z M128,136h256v84.261l-128-41.605l-128,41.605V136z"},"children":[{"name":"path","attribs":{"d":"M84.255,413h1.063c34.123,0,63.977-19.021,85.305-42.494c21.325,23.473,51.18,42.762,85.304,42.762\r\n\t\ts63.979-19.334,85.305-42.806C362.559,393.934,392.412,413,426.535,413h1.062l51.253-138.78c2.126-5.329,1.063-11.641-1.07-16.976\r\n\t\tc-2.136-5.333-7.237-8.487-12.567-10.623L427,234.133v-98.15C427,112.51,407.344,93,383.884,93h-63.979l-15.993-53h-95.969\r\n\t\tl-15.995,53h-63.979C104.511,93,85,112.51,85,135.982v98.15l-38.074,12.533c-5.33,2.136-10.582,5.334-12.718,10.667\r\n\t\tc-2.135,5.335-3.158,10.49-1.031,16.887L84.255,413z M128,136h256v84.261l-128-41.605l-128,41.605V136z"},"children":[]}]},{"name":"path","attribs":{"d":"M341.231,408.007c-52.253,36.267-118.356,36.258-170.608-0.009c0,0-57.638,64.002-106.632,64.002h21.327\r\n\t\tc29.854,0,58.646-11.726,85.305-25.594c53.315,27.734,117.293,27.728,170.608-0.007C367.89,460.268,396.681,472,426.535,472h21.328\r\n\t\tC400.212,472,341.231,408.007,341.231,408.007z"},"children":[{"name":"path","attribs":{"d":"M341.231,408.007c-52.253,36.267-118.356,36.258-170.608-0.009c0,0-57.638,64.002-106.632,64.002h21.327\r\n\t\tc29.854,0,58.646-11.726,85.305-25.594c53.315,27.734,117.293,27.728,170.608-0.007C367.89,460.268,396.681,472,426.535,472h21.328\r\n\t\tC400.212,472,341.231,408.007,341.231,408.007z"},"children":[]}]}]}]};exports.androidBoat=androidBoat;var androidBookmark={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M360,64H152c-22.002,0-40,17.998-40,40v344l144-64l144,64V104C400,81.998,382.002,64,360,64z"},"children":[]}]};exports.androidBookmark=androidBookmark;var androidBulb={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_26_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,170.136c25.499,0,49.567,10.025,67.771,28.229C341.975,216.568,352,240.637,352,266.136\r\n\t\t\tc0,17.621-4.422,34.031-13.144,48.773c-8.339,14.098-20.437,26.036-34.985,34.526L288,358.697v18.376V448h-64v-70.927v-18.376\r\n\t\t\tl-15.871-9.262C178.442,332.111,160,300.192,160,266.136c0-25.499,10.025-49.567,28.229-67.771\r\n\t\t\tC206.433,180.161,230.501,170.136,256,170.136 M277.333,32c-6.396,0-42.666,0-42.666,0v64h42.666V32L277.333,32z M406.396,85.864\r\n\t\t\tL368,124.271l29.864,29.865l38.406-38.396L406.396,85.864L406.396,85.864z M105.604,85.864l-29.875,29.875l38.406,38.396\r\n\t\t\tL144,124.271L105.604,85.864L105.604,85.864z M256,138.136c-70.396,0-128,57.604-128,128c0,46.938,25.604,88.531,64,110.938V480\r\n\t\t\th128V377.073c38.396-22.406,64-62.938,64-110.938C384,195.739,326.396,138.136,256,138.136L256,138.136z M480,244.802h-64v42.667\r\n\t\t\th64V244.802L480,244.802z M96,244.802H32v42.667h64V244.802L96,244.802z"},"children":[{"name":"path","attribs":{"d":"M256,170.136c25.499,0,49.567,10.025,67.771,28.229C341.975,216.568,352,240.637,352,266.136\r\n\t\t\tc0,17.621-4.422,34.031-13.144,48.773c-8.339,14.098-20.437,26.036-34.985,34.526L288,358.697v18.376V448h-64v-70.927v-18.376\r\n\t\t\tl-15.871-9.262C178.442,332.111,160,300.192,160,266.136c0-25.499,10.025-49.567,28.229-67.771\r\n\t\t\tC206.433,180.161,230.501,170.136,256,170.136 M277.333,32c-6.396,0-42.666,0-42.666,0v64h42.666V32L277.333,32z M406.396,85.864\r\n\t\t\tL368,124.271l29.864,29.865l38.406-38.396L406.396,85.864L406.396,85.864z M105.604,85.864l-29.875,29.875l38.406,38.396\r\n\t\t\tL144,124.271L105.604,85.864L105.604,85.864z M256,138.136c-70.396,0-128,57.604-128,128c0,46.938,25.604,88.531,64,110.938V480\r\n\t\t\th128V377.073c38.396-22.406,64-62.938,64-110.938C384,195.739,326.396,138.136,256,138.136L256,138.136z M480,244.802h-64v42.667\r\n\t\t\th64V244.802L480,244.802z M96,244.802H32v42.667h64V244.802L96,244.802z"},"children":[]}]}]}]}]}]};exports.androidBulb=androidBulb;var androidBus={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_14_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M80,352c0,19.198,13.864,24.531,26.667,36.271v38.396c0,11.729,9.599,21.334,21.333,21.334h21.333\r\n\t\t\t\tc11.734,0,21.334-9.604,21.334-21.334v-21.333h170.666v21.333c0,11.729,9.604,21.334,21.334,21.334H384\r\n\t\t\t\tc11.729,0,21.333-9.604,21.333-21.334v-38.396C418.136,376.531,432,370.136,432,352V148.334C432,73.667,349.864,64,256,64\r\n\t\t\t\tS80,73.667,80,148.334V352z M160,367.989c-18.136,0-32-13.864-32-32c0-18.135,13.864-32,32-32s32,13.865,32,32\r\n\t\t\t\tC192,354.125,178.136,367.989,160,367.989z M352,367.989c-18.136,0-32-13.864-32-32c0-18.135,13.864-32,32-32s32,13.865,32,32\r\n\t\t\t\tC384,354.125,370.136,367.989,352,367.989z M384,245.333H128V138.667h256V245.333z"},"children":[{"name":"path","attribs":{"d":"M80,352c0,19.198,13.864,24.531,26.667,36.271v38.396c0,11.729,9.599,21.334,21.333,21.334h21.333\r\n\t\t\t\tc11.734,0,21.334-9.604,21.334-21.334v-21.333h170.666v21.333c0,11.729,9.604,21.334,21.334,21.334H384\r\n\t\t\t\tc11.729,0,21.333-9.604,21.333-21.334v-38.396C418.136,376.531,432,370.136,432,352V148.334C432,73.667,349.864,64,256,64\r\n\t\t\t\tS80,73.667,80,148.334V352z M160,367.989c-18.136,0-32-13.864-32-32c0-18.135,13.864-32,32-32s32,13.865,32,32\r\n\t\t\t\tC192,354.125,178.136,367.989,160,367.989z M352,367.989c-18.136,0-32-13.864-32-32c0-18.135,13.864-32,32-32s32,13.865,32,32\r\n\t\t\t\tC384,354.125,370.136,367.989,352,367.989z M384,245.333H128V138.667h256V245.333z"},"children":[]}]}]}]}]}]}]}]};exports.androidBus=androidBus;var androidCalendar={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M368.005,272h-96v96h96V272z M336.005,64v32h-160V64h-48v32h-24.01c-22.002,0-40,17.998-40,40v272\r\n\t\tc0,22.002,17.998,40,40,40h304.01c22.002,0,40-17.998,40-40V136c0-22.002-17.998-40-40-40h-24V64H336.005z M408.005,408h-304.01\r\n\t\tV196h304.01V408z"},"children":[{"name":"path","attribs":{"d":"M368.005,272h-96v96h96V272z M336.005,64v32h-160V64h-48v32h-24.01c-22.002,0-40,17.998-40,40v272\r\n\t\tc0,22.002,17.998,40,40,40h304.01c22.002,0,40-17.998,40-40V136c0-22.002-17.998-40-40-40h-24V64H336.005z M408.005,408h-304.01\r\n\t\tV196h304.01V408z"},"children":[]}]}]}]};exports.androidCalendar=androidCalendar;var androidCall={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M426.666,330.667c-26.666,0-52.271-4.271-75.729-11.729c-7.469-2.136-16-1.073-21.332,5.333l-46.939,46.928\r\n\tc-60.802-30.928-109.864-80-140.802-140.803l46.939-46.927c5.332-5.333,7.462-13.864,5.332-21.333\r\n\tc-8.537-24.531-12.802-50.136-12.802-76.803C181.333,73.604,171.734,64,160,64H85.333C73.599,64,64,73.604,64,85.333\r\n\tC64,285.864,226.136,448,426.666,448c11.73,0,21.334-9.604,21.334-21.333V352C448,340.271,438.396,330.667,426.666,330.667z"},"children":[]}]};exports.androidCall=androidCall;var androidCamera={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"cx":"256","cy":"280","r":"63"},"children":[{"name":"circle","attribs":{"cx":"256","cy":"280","r":"63"},"children":[]}]},{"name":"path","attribs":{"d":"M440,96h-88l-32-32H192l-32,32H72c-22.092,0-40,17.908-40,40v272c0,22.092,17.908,40,40,40h368c22.092,0,40-17.908,40-40\r\n\t\tV136C480,113.908,462.092,96,440,96z M256,392c-61.855,0-112-50.145-112-112s50.145-112,112-112s112,50.145,112,112\r\n\t\tS317.855,392,256,392z"},"children":[{"name":"path","attribs":{"d":"M440,96h-88l-32-32H192l-32,32H72c-22.092,0-40,17.908-40,40v272c0,22.092,17.908,40,40,40h368c22.092,0,40-17.908,40-40\r\n\t\tV136C480,113.908,462.092,96,440,96z M256,392c-61.855,0-112-50.145-112-112s50.145-112,112-112s112,50.145,112,112\r\n\t\tS317.855,392,256,392z"},"children":[]}]}]}]};exports.androidCamera=androidCamera;var androidCancel={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,48C140.559,48,48,140.559,48,256c0,115.436,92.559,208,208,208c115.435,0,208-92.564,208-208\r\n\t\tC464,140.559,371.436,48,256,48z M360.002,330.881l-29.12,29.117L256,285.117l-74.881,74.881l-29.121-29.117L226.881,256\r\n\t\tl-74.883-74.881l29.121-29.116L256,226.881l74.881-74.878l29.12,29.116L285.119,256L360.002,330.881z"},"children":[{"name":"path","attribs":{"d":"M256,48C140.559,48,48,140.559,48,256c0,115.436,92.559,208,208,208c115.435,0,208-92.564,208-208\r\n\t\tC464,140.559,371.436,48,256,48z M360.002,330.881l-29.12,29.117L256,285.117l-74.881,74.881l-29.121-29.117L226.881,256\r\n\t\tl-74.883-74.881l29.121-29.116L256,226.881l74.881-74.878l29.12,29.116L285.119,256L360.002,330.881z"},"children":[]}]}]}]};exports.androidCancel=androidCancel;var androidCar={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_15_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M403.208,117.333c-4.271-12.802-16-21.333-29.875-21.333H138.667c-13.875,0-25.604,8.531-29.875,21.333L64,234.667v160\r\n\t\t\tC64,406.396,73.604,416,85.333,416h21.334c11.729,0,21.333-9.604,21.333-21.333V384h256v10.667\r\n\t\t\tc0,11.729,9.604,21.333,21.333,21.333h21.334c11.729,0,21.333-9.604,21.333-21.333v-160L403.208,117.333z M138.667,320\r\n\t\t\tc-18.125,0-32-13.865-32-32s13.875-32,32-32s32,13.866,32,32S156.792,320,138.667,320z M373.333,320c-18.125,0-32-13.865-32-32\r\n\t\t\ts13.875-32,32-32s32,13.866,32,32S391.458,320,373.333,320z M106.667,213.333l32-85.333h234.666l32,85.333H106.667z"},"children":[{"name":"path","attribs":{"d":"M403.208,117.333c-4.271-12.802-16-21.333-29.875-21.333H138.667c-13.875,0-25.604,8.531-29.875,21.333L64,234.667v160\r\n\t\t\tC64,406.396,73.604,416,85.333,416h21.334c11.729,0,21.333-9.604,21.333-21.333V384h256v10.667\r\n\t\t\tc0,11.729,9.604,21.333,21.333,21.333h21.334c11.729,0,21.333-9.604,21.333-21.333v-160L403.208,117.333z M138.667,320\r\n\t\t\tc-18.125,0-32-13.865-32-32s13.875-32,32-32s32,13.866,32,32S156.792,320,138.667,320z M373.333,320c-18.125,0-32-13.865-32-32\r\n\t\t\ts13.875-32,32-32s32,13.866,32,32S391.458,320,373.333,320z M106.667,213.333l32-85.333h234.666l32,85.333H106.667z"},"children":[]}]}]}]}]}]};exports.androidCar=androidCar;var androidCart={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill":"#010101","d":"M169.6,377.6c-22.882,0-41.6,18.718-41.6,41.601c0,22.882,18.718,41.6,41.6,41.6s41.601-18.718,41.601-41.6\r\n\t\tC211.2,396.317,192.481,377.6,169.6,377.6z M48,51.2v41.6h41.6l74.883,151.682l-31.308,50.954c-3.118,5.2-5.2,12.482-5.2,19.765\r\n\t\tc0,27.85,19.025,41.6,44.825,41.6H416v-40H177.893c-3.118,0-5.2-2.082-5.2-5.2c0-1.036,2.207-5.2,2.207-5.2l20.782-32.8h154.954\r\n\t\tc15.601,0,29.128-8.317,36.4-21.836l74.882-128.8c1.237-2.461,2.082-6.246,2.082-10.399c0-11.446-9.364-19.765-20.8-19.765H135.364\r\n\t\tL115.6,51.2H48z M374.399,377.6c-22.882,0-41.6,18.718-41.6,41.601c0,22.882,18.718,41.6,41.6,41.6S416,442.082,416,419.2\r\n\t\tC416,396.317,397.281,377.6,374.399,377.6z"},"children":[{"name":"path","attribs":{"fill":"#010101","d":"M169.6,377.6c-22.882,0-41.6,18.718-41.6,41.601c0,22.882,18.718,41.6,41.6,41.6s41.601-18.718,41.601-41.6\r\n\t\tC211.2,396.317,192.481,377.6,169.6,377.6z M48,51.2v41.6h41.6l74.883,151.682l-31.308,50.954c-3.118,5.2-5.2,12.482-5.2,19.765\r\n\t\tc0,27.85,19.025,41.6,44.825,41.6H416v-40H177.893c-3.118,0-5.2-2.082-5.2-5.2c0-1.036,2.207-5.2,2.207-5.2l20.782-32.8h154.954\r\n\t\tc15.601,0,29.128-8.317,36.4-21.836l74.882-128.8c1.237-2.461,2.082-6.246,2.082-10.399c0-11.446-9.364-19.765-20.8-19.765H135.364\r\n\t\tL115.6,51.2H48z M374.399,377.6c-22.882,0-41.6,18.718-41.6,41.601c0,22.882,18.718,41.6,41.6,41.6S416,442.082,416,419.2\r\n\t\tC416,396.317,397.281,377.6,374.399,377.6z"},"children":[]}]}]}]};exports.androidCart=androidCart;var androidChat={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M391.553,64H57.607C53.131,64,48,67.745,48,72.159v214.217c0,4.413,5.131,8.624,9.607,8.624H115v88.894L205.128,295\r\n\t\th186.425c4.477,0,7.447-4.211,7.447-8.624V72.159C399,67.745,396.029,64,391.553,64z"},"children":[{"name":"path","attribs":{"d":"M391.553,64H57.607C53.131,64,48,67.745,48,72.159v214.217c0,4.413,5.131,8.624,9.607,8.624H115v88.894L205.128,295\r\n\t\th186.425c4.477,0,7.447-4.211,7.447-8.624V72.159C399,67.745,396.029,64,391.553,64z"},"children":[]}]},{"name":"path","attribs":{"d":"M456.396,127H424v166.57c0,15.987-6.915,26.43-25.152,26.43H218.096l-38.905,39h129.688L399,448v-89h57.396\r\n\t\tc4.478,0,7.604-4.262,7.604-8.682V136.103C464,131.689,460.874,127,456.396,127z"},"children":[{"name":"path","attribs":{"d":"M456.396,127H424v166.57c0,15.987-6.915,26.43-25.152,26.43H218.096l-38.905,39h129.688L399,448v-89h57.396\r\n\t\tc4.478,0,7.604-4.262,7.604-8.682V136.103C464,131.689,460.874,127,456.396,127z"},"children":[]}]}]}]};exports.androidChat=androidChat;var androidCheckboxBlank={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_23_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M405.333,64H106.667C83.198,64,64,83.198,64,106.667v298.666C64,428.802,83.198,448,106.667,448h298.666\r\n\t\t\tC428.802,448,448,428.802,448,405.333V106.667C448,83.198,428.802,64,405.333,64z"},"children":[{"name":"path","attribs":{"d":"M405.333,64H106.667C83.198,64,64,83.198,64,106.667v298.666C64,428.802,83.198,448,106.667,448h298.666\r\n\t\t\tC428.802,448,448,428.802,448,405.333V106.667C448,83.198,428.802,64,405.333,64z"},"children":[]}]}]}]}]}]};exports.androidCheckboxBlank=androidCheckboxBlank;var androidCheckboxOutlineBlank={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_25_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M405.333,106.667v298.666H106.667V106.667H405.333 M405.333,64H106.667C83.198,64,64,83.198,64,106.667v298.666\r\n\t\t\tC64,428.802,83.198,448,106.667,448h298.666C428.802,448,448,428.802,448,405.333V106.667C448,83.198,428.802,64,405.333,64\r\n\t\t\tL405.333,64z"},"children":[{"name":"path","attribs":{"d":"M405.333,106.667v298.666H106.667V106.667H405.333 M405.333,64H106.667C83.198,64,64,83.198,64,106.667v298.666\r\n\t\t\tC64,428.802,83.198,448,106.667,448h298.666C428.802,448,448,428.802,448,405.333V106.667C448,83.198,428.802,64,405.333,64\r\n\t\t\tL405.333,64z"},"children":[]}]}]}]}]}]};exports.androidCheckboxOutlineBlank=androidCheckboxOutlineBlank;var androidCheckboxOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_24_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M168.531,215.469l-29.864,29.864l96,96L448,128l-29.864-29.864L234.667,280.531L168.531,215.469z M405.333,405.333\r\n\t\t\tH106.667V106.667H320V64H106.667C83.198,64,64,83.198,64,106.667v298.666C64,428.802,83.198,448,106.667,448h298.666\r\n\t\t\tC428.802,448,448,428.802,448,405.333V234.667h-42.667V405.333z"},"children":[{"name":"path","attribs":{"d":"M168.531,215.469l-29.864,29.864l96,96L448,128l-29.864-29.864L234.667,280.531L168.531,215.469z M405.333,405.333\r\n\t\t\tH106.667V106.667H320V64H106.667C83.198,64,64,83.198,64,106.667v298.666C64,428.802,83.198,448,106.667,448h298.666\r\n\t\t\tC428.802,448,448,428.802,448,405.333V234.667h-42.667V405.333z"},"children":[]}]}]}]}]}]};exports.androidCheckboxOutline=androidCheckboxOutline;var androidCheckbox={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_22_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M405.333,64H106.667C83.198,64,64,83.198,64,106.667v298.666C64,428.802,83.198,448,106.667,448h298.666\r\n\t\t\tC428.802,448,448,428.802,448,405.333V106.667C448,83.198,428.802,64,405.333,64z M213.333,362.667L106.667,256l29.864-29.864\r\n\t\t\tl76.802,76.802l162.136-162.136l29.864,29.865L213.333,362.667z"},"children":[{"name":"path","attribs":{"d":"M405.333,64H106.667C83.198,64,64,83.198,64,106.667v298.666C64,428.802,83.198,448,106.667,448h298.666\r\n\t\t\tC428.802,448,448,428.802,448,405.333V106.667C448,83.198,428.802,64,405.333,64z M213.333,362.667L106.667,256l29.864-29.864\r\n\t\t\tl76.802,76.802l162.136-162.136l29.864,29.865L213.333,362.667z"},"children":[]}]}]}]}]}]};exports.androidCheckbox=androidCheckbox;var androidCheckmarkCircle={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M170.718,216.482L141.6,245.6L235.2,339.2l208-208l-29.118-29.118L235.2,279.918L170.718,216.482z M422.4,256\r\n\tc0,91.518-74.883,166.4-166.4,166.4S89.6,347.518,89.6,256S164.482,89.6,256,89.6c15.6,0,31.2,2.082,45.764,6.241L334,63.6\r\n\tC310.082,53.2,284.082,48,256,48C141.6,48,48,141.6,48,256s93.6,208,208,208s208-93.6,208-208H422.4z"},"children":[]}]};exports.androidCheckmarkCircle=androidCheckmarkCircle;var androidClipboard={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M405.333,80h-87.35C310.879,52.396,285.821,32,256,32s-54.879,20.396-61.983,48h-87.35C83.198,80,64,99.198,64,122.667\r\n\tv314.665C64,460.801,83.198,480,106.667,480h298.666C428.802,480,448,460.801,448,437.332V122.667C448,99.198,428.802,80,405.333,80\r\n\tz M256,80c11.729,0,21.333,9.599,21.333,21.333s-9.604,21.334-21.333,21.334s-21.333-9.6-21.333-21.334S244.271,80,256,80z M408,440\r\n\tH104V120h40v72h224v-72h40V440z"},"children":[]}]};exports.androidClipboard=androidClipboard;var androidClose={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_5_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"405,136.798 375.202,107 256,226.202 136.798,107 107,136.798 226.202,256 107,375.202 136.798,405 256,285.798 \r\n\t\t\t375.202,405 405,375.202 285.798,256 \t\t"},"children":[{"name":"polygon","attribs":{"points":"405,136.798 375.202,107 256,226.202 136.798,107 107,136.798 226.202,256 107,375.202 136.798,405 256,285.798 \r\n\t\t\t375.202,405 405,375.202 285.798,256 \t\t"},"children":[]}]}]}]}]}]};exports.androidClose=androidClose;var androidCloudCircle={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_32_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,48C141.6,48,48,141.6,48,256s93.6,208,208,208c114.4,0,208-93.6,208-208S370.4,48,256,48z M349.6,339.2\r\n\t\t\t\tc0,0-175.759,0-176.799,0c-34.318,0-62.4-28.082-62.4-62.399c0-34.319,28.082-62.4,62.4-62.4c1.041,0,2.082,0,3.117,0\r\n\t\t\t\tc9.364-36.4,41.601-62.399,80.083-62.399c45.764,0,83.199,37.435,83.199,83.198h10.4c29.118,0,52,22.882,52,52.001\r\n\t\t\t\tC401.6,316.318,378.718,339.2,349.6,339.2z"},"children":[{"name":"path","attribs":{"d":"M256,48C141.6,48,48,141.6,48,256s93.6,208,208,208c114.4,0,208-93.6,208-208S370.4,48,256,48z M349.6,339.2\r\n\t\t\t\tc0,0-175.759,0-176.799,0c-34.318,0-62.4-28.082-62.4-62.399c0-34.319,28.082-62.4,62.4-62.4c1.041,0,2.082,0,3.117,0\r\n\t\t\t\tc9.364-36.4,41.601-62.399,80.083-62.399c45.764,0,83.199,37.435,83.199,83.198h10.4c29.118,0,52,22.882,52,52.001\r\n\t\t\t\tC401.6,316.318,378.718,339.2,349.6,339.2z"},"children":[]}]}]}]}]}]}]}]};exports.androidCloudCircle=androidCloudCircle;var androidCloudDone={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M403.002,217.001C388.998,148.002,328.998,96,256,96c-57.998,0-107.998,32.998-132.998,81.001\r\n\t\tC63.002,183.002,16,233.998,16,296c0,65.996,53.999,120,120,120h260c55,0,100-45,100-100\r\n\t\tC496,263.002,455.004,219.999,403.002,217.001z M213.333,362.667L138.667,288l29.864-29.864l44.802,44.802L324.271,192\r\n\t\tl29.865,29.864L213.333,362.667z"},"children":[{"name":"path","attribs":{"d":"M403.002,217.001C388.998,148.002,328.998,96,256,96c-57.998,0-107.998,32.998-132.998,81.001\r\n\t\tC63.002,183.002,16,233.998,16,296c0,65.996,53.999,120,120,120h260c55,0,100-45,100-100\r\n\t\tC496,263.002,455.004,219.999,403.002,217.001z M213.333,362.667L138.667,288l29.864-29.864l44.802,44.802L324.271,192\r\n\t\tl29.865,29.864L213.333,362.667z"},"children":[]}]}]}]};exports.androidCloudDone=androidCloudDone;var androidCloudOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_9_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M403.001,217.001C388.997,148.002,328.998,96,256,96c-57.998,0-107.999,32.998-132.997,81\r\n\t\t\t\tC63.002,183.002,16,233.998,16,296c0,65.996,54.004,120,120,120h260c55,0,100-45,100-100.001\r\n\t\t\t\tC496,263.002,455.003,220,403.001,217.001z M396,376H136c-44.004,0-80-35.996-80-80c0-44,35.996-80,80-80h14.004\r\n\t\t\t\tc12.998-46,55-80,105.996-80c60.996,0,110,49,110,110v10h30c32.998,0,60,27.003,60,60C456,348.998,428.998,376,396,376z"},"children":[{"name":"path","attribs":{"d":"M403.001,217.001C388.997,148.002,328.998,96,256,96c-57.998,0-107.999,32.998-132.997,81\r\n\t\t\t\tC63.002,183.002,16,233.998,16,296c0,65.996,54.004,120,120,120h260c55,0,100-45,100-100.001\r\n\t\t\t\tC496,263.002,455.003,220,403.001,217.001z M396,376H136c-44.004,0-80-35.996-80-80c0-44,35.996-80,80-80h14.004\r\n\t\t\t\tc12.998-46,55-80,105.996-80c60.996,0,110,49,110,110v10h30c32.998,0,60,27.003,60,60C456,348.998,428.998,376,396,376z"},"children":[]}]}]}]}]}]}]}]};exports.androidCloudOutline=androidCloudOutline;var androidCloud={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M403.002,217.001C388.998,148.002,328.998,96,256,96c-57.998,0-107.998,32.998-132.998,81.001\r\n\tC63.002,183.002,16,233.998,16,296c0,65.996,53.999,120,120,120h260c55,0,100-45,100-100\r\n\tC496,263.002,455.004,219.999,403.002,217.001z"},"children":[]}]};exports.androidCloud=androidCloud;var androidColorPalette={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_12_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,64C150.401,64,64,150.401,64,256c0,105.604,86.401,192,192,192c18.136,0,32-13.864,32-32\r\n\t\t\tc0-8.531-3.198-16-8.531-21.333c-5.333-5.334-8.531-12.803-8.531-21.334c0-18.135,13.864-32,32-32h38.396\r\n\t\t\tc58.667,0,106.667-48,106.667-106.666C448,140.802,361.604,64,256,64z M138.667,256c-18.136,0-32-13.864-32-32s13.864-32,32-32\r\n\t\t\tc18.135,0,32,13.864,32,32S156.802,256,138.667,256z M202.667,170.667c-18.136,0-32-13.865-32-32c0-18.136,13.864-32,32-32\r\n\t\t\tc18.135,0,32,13.864,32,32C234.667,156.802,220.802,170.667,202.667,170.667z M309.333,170.667c-18.135,0-32-13.865-32-32\r\n\t\t\tc0-18.136,13.865-32,32-32c18.136,0,32,13.864,32,32C341.333,156.802,327.469,170.667,309.333,170.667z M373.333,256\r\n\t\t\tc-18.135,0-32-13.864-32-32s13.865-32,32-32c18.136,0,32,13.864,32,32S391.469,256,373.333,256z"},"children":[{"name":"path","attribs":{"d":"M256,64C150.401,64,64,150.401,64,256c0,105.604,86.401,192,192,192c18.136,0,32-13.864,32-32\r\n\t\t\tc0-8.531-3.198-16-8.531-21.333c-5.333-5.334-8.531-12.803-8.531-21.334c0-18.135,13.864-32,32-32h38.396\r\n\t\t\tc58.667,0,106.667-48,106.667-106.666C448,140.802,361.604,64,256,64z M138.667,256c-18.136,0-32-13.864-32-32s13.864-32,32-32\r\n\t\t\tc18.135,0,32,13.864,32,32S156.802,256,138.667,256z M202.667,170.667c-18.136,0-32-13.865-32-32c0-18.136,13.864-32,32-32\r\n\t\t\tc18.135,0,32,13.864,32,32C234.667,156.802,220.802,170.667,202.667,170.667z M309.333,170.667c-18.135,0-32-13.865-32-32\r\n\t\t\tc0-18.136,13.865-32,32-32c18.136,0,32,13.864,32,32C341.333,156.802,327.469,170.667,309.333,170.667z M373.333,256\r\n\t\t\tc-18.135,0-32-13.864-32-32s13.865-32,32-32c18.136,0,32,13.864,32,32S391.469,256,373.333,256z"},"children":[]}]}]}]}]}]};exports.androidColorPalette=androidColorPalette;var androidCompass={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,231.358c-13.442,0-24.643,11.2-24.643,24.642s11.2,24.643,24.643,24.643s24.643-11.2,24.643-24.643\r\n\tS269.442,231.358,256,231.358z M256,32C132.8,32,32,132.8,32,256s100.8,224,224,224s224-100.8,224-224S379.2,32,256,32z\r\n\t M305.284,305.284L121.6,390.4l85.116-183.679L390.4,121.6L305.284,305.284z"},"children":[]}]};exports.androidCompass=androidCompass;var androidContact={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M331.08,338.205c-22.156,12.594-47.777,19.783-75.084,19.783c-27.302,0-52.919-7.182-75.073-19.771\r\n\t\tC122.153,356.152,77.262,396,64,448h384C434.745,396,389.854,356.131,331.08,338.205z"},"children":[{"name":"path","attribs":{"d":"M331.08,338.205c-22.156,12.594-47.777,19.783-75.084,19.783c-27.302,0-52.919-7.182-75.073-19.771\r\n\t\tC122.153,356.152,77.262,396,64,448h384C434.745,396,389.854,356.131,331.08,338.205z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M255.996,64c-72.871,0-131.945,59.127-131.945,132.013c0,72.887,59.074,131.972,131.945,131.972\r\n\t\t\ts131.945-59.085,131.945-131.972C387.941,123.127,328.867,64,255.996,64z M255.996,294.986c-41.958,0-77.813-25.986-92.209-62.986\r\n\t\t\th184.418C333.809,269,297.953,294.986,255.996,294.986z"},"children":[{"name":"path","attribs":{"d":"M255.996,64c-72.871,0-131.945,59.127-131.945,132.013c0,72.887,59.074,131.972,131.945,131.972\r\n\t\t\ts131.945-59.085,131.945-131.972C387.941,123.127,328.867,64,255.996,64z M255.996,294.986c-41.958,0-77.813-25.986-92.209-62.986\r\n\t\t\th184.418C333.809,269,297.953,294.986,255.996,294.986z"},"children":[]}]}]}]}]}]};exports.androidContact=androidContact;var androidContacts={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M239.208,343.937c-17.78,10.103-38.342,15.876-60.255,15.876c-21.909,0-42.467-5.771-60.246-15.87\r\n\t\t\tC71.544,358.331,42.643,406,32,448h293.912C315.273,406,286.375,358.317,239.208,343.937z"},"children":[{"name":"path","attribs":{"d":"M239.208,343.937c-17.78,10.103-38.342,15.876-60.255,15.876c-21.909,0-42.467-5.771-60.246-15.87\r\n\t\t\tC71.544,358.331,42.643,406,32,448h293.912C315.273,406,286.375,358.317,239.208,343.937z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M178.953,120.035c-58.479,0-105.886,47.394-105.886,105.858c0,58.464,47.407,105.857,105.886,105.857\r\n\t\t\t\tc58.479,0,105.886-47.394,105.886-105.857C284.839,167.429,237.431,120.035,178.953,120.035z M178.953,306.523\r\n\t\t\t\tc-33.671,0-62.445-22.513-73.997-50.523H252.95C241.396,284.011,212.624,306.523,178.953,306.523z"},"children":[{"name":"path","attribs":{"d":"M178.953,120.035c-58.479,0-105.886,47.394-105.886,105.858c0,58.464,47.407,105.857,105.886,105.857\r\n\t\t\t\tc58.479,0,105.886-47.394,105.886-105.857C284.839,167.429,237.431,120.035,178.953,120.035z M178.953,306.523\r\n\t\t\t\tc-33.671,0-62.445-22.513-73.997-50.523H252.95C241.396,284.011,212.624,306.523,178.953,306.523z"},"children":[]}]}]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M322.602,384H480c-10.638-42-39.537-81.691-86.703-96.072c-17.781,10.104-38.343,15.873-60.256,15.873\r\n\t\t\t\tc-14.823,0-29.024-2.654-42.168-7.49c-7.445,12.47-16.927,25.592-27.974,34.906C289.245,341.354,309.146,364,322.602,384z"},"children":[{"name":"path","attribs":{"d":"M322.602,384H480c-10.638-42-39.537-81.691-86.703-96.072c-17.781,10.104-38.343,15.873-60.256,15.873\r\n\t\t\t\tc-14.823,0-29.024-2.654-42.168-7.49c-7.445,12.47-16.927,25.592-27.974,34.906C289.245,341.354,309.146,364,322.602,384z"},"children":[]}]}]}]},{"name":"path","attribs":{"d":"M306.545,200h100.493c-11.554,28-40.327,50.293-73.997,50.293c-8.875,0-17.404-1.692-25.375-4.51\r\n\t\t\tc-1.338,8.709-3.543,17.07-6.52,25.118c10.066,3.174,20.779,4.862,31.895,4.862c58.479,0,105.886-47.41,105.886-105.872\r\n\t\t\tc0-58.465-47.407-105.866-105.886-105.866c-37.49,0-70.427,19.703-89.243,49.09C275.607,131.383,298.961,163,306.545,200z"},"children":[{"name":"path","attribs":{"d":"M306.545,200h100.493c-11.554,28-40.327,50.293-73.997,50.293c-8.875,0-17.404-1.692-25.375-4.51\r\n\t\t\tc-1.338,8.709-3.543,17.07-6.52,25.118c10.066,3.174,20.779,4.862,31.895,4.862c58.479,0,105.886-47.41,105.886-105.872\r\n\t\t\tc0-58.465-47.407-105.866-105.886-105.866c-37.49,0-70.427,19.703-89.243,49.09C275.607,131.383,298.961,163,306.545,200z"},"children":[]}]}]}]}]}]};exports.androidContacts=androidContacts;var androidContract={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_2_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M64,371.2h76.795V448H192V320H64V371.2z M140.795,140.8H64V192h128V64h-51.205V140.8z M320,448h51.2v-76.8H448V320H320\r\n\t\t\tV448z M371.2,140.8V64H320v128h128v-51.2H371.2z"},"children":[{"name":"path","attribs":{"d":"M64,371.2h76.795V448H192V320H64V371.2z M140.795,140.8H64V192h128V64h-51.205V140.8z M320,448h51.2v-76.8H448V320H320\r\n\t\t\tV448z M371.2,140.8V64H320v128h128v-51.2H371.2z"},"children":[]}]}]}]}]}]};exports.androidContract=androidContract;var androidCreate={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_6_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill":"#010101","d":"M64,368v80h80l235.727-235.729l-79.999-79.998L64,368z M441.602,150.398\r\n\t\t\tc8.531-8.531,8.531-21.334,0-29.865l-50.135-50.135c-8.531-8.531-21.334-8.531-29.865,0l-39.468,39.469l79.999,79.998\r\n\t\t\tL441.602,150.398z"},"children":[{"name":"path","attribs":{"fill":"#010101","d":"M64,368v80h80l235.727-235.729l-79.999-79.998L64,368z M441.602,150.398\r\n\t\t\tc8.531-8.531,8.531-21.334,0-29.865l-50.135-50.135c-8.531-8.531-21.334-8.531-29.865,0l-39.468,39.469l79.999,79.998\r\n\t\t\tL441.602,150.398z"},"children":[]}]}]}]}]}]};exports.androidCreate=androidCreate;var androidDelete={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M128,405.429C128,428.846,147.198,448,170.667,448h170.667C364.802,448,384,428.846,384,405.429V160H128V405.429z M416,96\r\n\t\th-80l-26.785-32H202.786L176,96H96v32h320V96z"},"children":[{"name":"path","attribs":{"d":"M128,405.429C128,428.846,147.198,448,170.667,448h170.667C364.802,448,384,428.846,384,405.429V160H128V405.429z M416,96\r\n\t\th-80l-26.785-32H202.786L176,96H96v32h320V96z"},"children":[]}]}]}]};exports.androidDelete=androidDelete;var androidDesktop={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_28_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M437.333,32H74.667C51.198,32,32,51.197,32,74.666v282.667C32,380.802,51.198,400,74.667,400h138.666l-42.666,48v32\r\n\t\t\th170.666v-32l-42.666-48h138.666C460.802,400,480,380.802,480,357.333V74.666C480,51.197,460.802,32,437.333,32z M437.333,320\r\n\t\t\tH74.667V74.666h362.666V320z"},"children":[{"name":"path","attribs":{"d":"M437.333,32H74.667C51.198,32,32,51.197,32,74.666v282.667C32,380.802,51.198,400,74.667,400h138.666l-42.666,48v32\r\n\t\t\th170.666v-32l-42.666-48h138.666C460.802,400,480,380.802,480,357.333V74.666C480,51.197,460.802,32,437.333,32z M437.333,320\r\n\t\t\tH74.667V74.666h362.666V320z"},"children":[]}]}]}]}]}]};exports.androidDesktop=androidDesktop;var androidDocument={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M288,48H136c-22.092,0-40,17.908-40,40v336c0,22.092,17.908,40,40,40h240c22.092,0,40-17.908,40-40V176L288,48z M272,192\r\n\t\tV80l112,112H272z"},"children":[{"name":"path","attribs":{"d":"M288,48H136c-22.092,0-40,17.908-40,40v336c0,22.092,17.908,40,40,40h240c22.092,0,40-17.908,40-40V176L288,48z M272,192\r\n\t\tV80l112,112H272z"},"children":[]}]}]}]};exports.androidDocument=androidDocument;var androidDoneAll={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_4_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M387.581,139.712L356.755,109L216.913,248.319l30.831,30.719L387.581,139.712z M481.172,109L247.744,340.469\r\n\t\t\tl-91.39-91.051l-30.827,30.715L247.744,403L512,139.712L481.172,109z M0,280.133L123.321,403l30.829-30.713L31.934,249.418\r\n\t\t\tL0,280.133z"},"children":[{"name":"path","attribs":{"d":"M387.581,139.712L356.755,109L216.913,248.319l30.831,30.719L387.581,139.712z M481.172,109L247.744,340.469\r\n\t\t\tl-91.39-91.051l-30.827,30.715L247.744,403L512,139.712L481.172,109z M0,280.133L123.321,403l30.829-30.713L31.934,249.418\r\n\t\t\tL0,280.133z"},"children":[]}]}]}]}]}]};exports.androidDoneAll=androidDoneAll;var androidDone={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_1_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"186.301,339.893 96,249.461 64,279.968 186.301,402 448,140.506 416,110 \t\t\t"},"children":[{"name":"polygon","attribs":{"points":"186.301,339.893 96,249.461 64,279.968 186.301,402 448,140.506 416,110 \t\t\t"},"children":[]}]}]}]}]}]}]}]};exports.androidDone=androidDone;var androidDownload={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M403.002,217.001C388.998,148.002,328.998,96,256,96c-57.998,0-107.998,32.998-132.998,81.001\r\n\tC63.002,183.002,16,233.998,16,296c0,65.996,53.999,120,120,120h260c55,0,100-45,100-100\r\n\tC496,263.002,455.004,219.999,403.002,217.001z M224,268v-76h64v76h68L256,368L156,268H224z"},"children":[]}]};exports.androidDownload=androidDownload;var androidDrafts={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_18_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M480,201.667c0-14.933-7.469-28.803-20.271-36.266L256,64L52.271,165.401C40.531,172.864,32,186.734,32,201.667v203.666\r\n\t\t\t\tC32,428.802,51.197,448,74.666,448h362.668C460.803,448,480,428.802,480,405.333V201.667z M256,304L84.631,192L256,106.667\r\n\t\t\t\tL427.369,192L256,304z"},"children":[{"name":"path","attribs":{"d":"M480,201.667c0-14.933-7.469-28.803-20.271-36.266L256,64L52.271,165.401C40.531,172.864,32,186.734,32,201.667v203.666\r\n\t\t\t\tC32,428.802,51.197,448,74.666,448h362.668C460.803,448,480,428.802,480,405.333V201.667z M256,304L84.631,192L256,106.667\r\n\t\t\t\tL427.369,192L256,304z"},"children":[]}]}]}]}]}]}]}]};exports.androidDrafts=androidDrafts;var androidExit={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M215.469,332.802l29.863,29.864L352,256L245.332,149.333l-29.863,29.865l55.469,55.469H64v42.666h205.864L215.469,332.802z\r\n\t M405.334,64H106.666C83.198,64,64,83.198,64,106.666V192h42.666v-85.333h298.668v298.668H106.666V320H64v85.334\r\n\tC64,428.802,83.198,448,106.666,448h298.668C428.802,448,448,428.802,448,405.334V106.666C448,83.198,428.802,64,405.334,64z"},"children":[]}]};exports.androidExit=androidExit;var androidExpand={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"396.795,396.8 320,396.8 320,448 448,448 448,320 396.795,320 \t"},"children":[{"name":"polygon","attribs":{"points":"396.795,396.8 320,396.8 320,448 448,448 448,320 396.795,320 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"396.8,115.205 396.8,192 448,192 448,64 320,64 320,115.205 \t"},"children":[{"name":"polygon","attribs":{"points":"396.8,115.205 396.8,192 448,192 448,64 320,64 320,115.205 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"115.205,115.2 192,115.2 192,64 64,64 64,192 115.205,192 \t"},"children":[{"name":"polygon","attribs":{"points":"115.205,115.2 192,115.2 192,64 64,64 64,192 115.205,192 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"115.2,396.795 115.2,320 64,320 64,448 192,448 192,396.795 \t"},"children":[{"name":"polygon","attribs":{"points":"115.2,396.795 115.2,320 64,320 64,448 192,448 192,396.795 \t"},"children":[]}]}]}]};exports.androidExpand=androidExpand;var androidFavoriteOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M349.6,64c-36.4,0-70.718,16.742-93.6,43.947C233.117,80.742,198.8,64,162.4,64C97.918,64,48,114.221,48,179.095\r\n\tc0,79.516,70.718,143.348,177.836,241.694L256,448l30.164-27.211C393.281,322.442,464,258.61,464,179.095\r\n\tC464,114.221,414.082,64,349.6,64z M268.836,393.257l-4.219,3.873L256,404.903l-8.616-7.772l-4.214-3.869\r\n\tc-50.418-46.282-93.961-86.254-122.746-121.994C92.467,236.555,80,208.128,80,179.095c0-22.865,8.422-43.931,23.715-59.316\r\n\tC118.957,104.445,139.798,96,162.4,96c26.134,0,51.97,12.167,69.11,32.545L256,157.661l24.489-29.116\r\n\tC297.63,108.167,323.465,96,349.6,96c22.603,0,43.443,8.445,58.686,23.778C423.578,135.164,432,156.229,432,179.095\r\n\tc0,29.033-12.467,57.459-40.422,92.171C362.794,307.006,319.253,346.975,268.836,393.257z"},"children":[]}]};exports.androidFavoriteOutline=androidFavoriteOutline;var androidFavorite={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,448l-30.164-27.211C118.718,322.442,48,258.61,48,179.095C48,114.221,97.918,64,162.4,64\r\n\t\tc36.399,0,70.717,16.742,93.6,43.947C278.882,80.742,313.199,64,349.6,64C414.082,64,464,114.221,464,179.095\r\n\t\tc0,79.516-70.719,143.348-177.836,241.694L256,448z"},"children":[{"name":"path","attribs":{"d":"M256,448l-30.164-27.211C118.718,322.442,48,258.61,48,179.095C48,114.221,97.918,64,162.4,64\r\n\t\tc36.399,0,70.717,16.742,93.6,43.947C278.882,80.742,313.199,64,349.6,64C414.082,64,464,114.221,464,179.095\r\n\t\tc0,79.516-70.719,143.348-177.836,241.694L256,448z"},"children":[]}]}]}]};exports.androidFavorite=androidFavorite;var androidFilm={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"fill":"#010101","d":"M376,64v42.667h-40V64H176v42.667h-40V64H96v384h40v-42.666h40V448h160v-42.666h40V448h40V64H376z\r\n\t M176,362.667h-40V320h40V362.667z M176,277.334h-40v-42.667h40V277.334z M176,192h-40v-42.666h40V192z M376,362.667h-40V320h40\r\n\tV362.667z M376,277.334h-40v-42.667h40V277.334z M376,192h-40v-42.666h40V192z"},"children":[]}]};exports.androidFilm=androidFilm;var androidFolderOpen={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M437.334,144H256.006l-42.668-48H74.666C51.197,96,32,115.198,32,138.667v234.666C32,396.802,51.197,416,74.666,416h362.668\r\n\tC460.803,416,480,396.802,480,373.333V186.667C480,163.198,460.803,144,437.334,144z M448,373.333\r\n\tc0,5.782-4.885,10.667-10.666,10.667H74.666C68.884,384,64,379.115,64,373.333V176h373.334c5.781,0,10.666,4.885,10.666,10.667\r\n\tV373.333z"},"children":[]}]};exports.androidFolderOpen=androidFolderOpen;var androidFolder={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_10_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M213.338,96H74.666C51.197,96,32,115.198,32,138.667v234.666C32,396.802,51.197,416,74.666,416h362.668\r\n\t\t\t\tC460.803,416,480,396.802,480,373.333V186.667C480,163.198,460.803,144,437.334,144H256.006L213.338,96z"},"children":[{"name":"path","attribs":{"d":"M213.338,96H74.666C51.197,96,32,115.198,32,138.667v234.666C32,396.802,51.197,416,74.666,416h362.668\r\n\t\t\t\tC460.803,416,480,396.802,480,373.333V186.667C480,163.198,460.803,144,437.334,144H256.006L213.338,96z"},"children":[]}]}]}]}]}]}]}]};exports.androidFolder=androidFolder;var androidFunnel={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M208,400h96v-47.994h-96V400z M32,112v47.994h448V112H32z M112,280.783h288v-49.555H112V280.783z"},"children":[]}]};exports.androidFunnel=androidFunnel;var androidGlobe={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,48C141.124,48,48,141.125,48,256c0,114.875,93.124,208,208,208c114.875,0,208-93.125,208-208\r\n\tC464,141.125,370.875,48,256,48z M234.451,432.999c-39.464-4.726-75.978-22.392-104.519-50.932\r\n\tC96.258,348.393,77.714,303.622,77.714,256c0-42.87,15.036-83.424,42.601-115.659c0.71,8.517,2.463,17.648,2.014,24.175\r\n\tc-1.64,23.795-3.988,38.687,9.94,58.762c5.426,7.819,6.759,19.028,9.4,28.078c2.583,8.854,12.902,13.498,20.019,18.953\r\n\tc14.359,11.009,28.096,23.805,43.322,33.494c10.049,6.395,16.326,9.576,13.383,21.839c-2.367,9.862-3.028,15.937-8.13,24.723\r\n\tc-1.557,2.681,5.877,19.918,8.351,22.392c7.498,7.497,14.938,14.375,23.111,21.125C254.396,404.351,240.494,417.954,234.451,432.999\r\n\tz M382.067,382.067c-25.633,25.633-57.699,42.486-92.556,49.081c4.94-12.216,13.736-23.07,21.895-29.362\r\n\tc7.097-5.476,15.986-16.009,19.693-24.352c3.704-8.332,8.611-15.555,13.577-23.217c7.065-10.899-17.419-27.336-25.353-30.781\r\n\tc-17.854-7.751-31.294-18.21-47.161-29.375c-11.305-7.954-34.257,4.154-47.02-1.417c-17.481-7.633-31.883-20.896-47.078-32.339\r\n\tc-15.68-11.809-14.922-25.576-14.922-42.997c12.282,0.453,29.754-3.399,37.908,6.478c2.573,3.117,11.42,17.042,17.342,12.094\r\n\tc4.838-4.043-3.585-20.249-5.212-24.059c-5.005-11.715,11.404-16.284,19.803-24.228c10.96-10.364,34.47-26.618,32.612-34.047\r\n\ts-23.524-28.477-36.249-25.193c-1.907,0.492-18.697,18.097-21.941,20.859c0.086-5.746,0.172-11.491,0.26-17.237\r\n\tc0.055-3.628-6.768-7.352-6.451-9.692c0.8-5.914,17.262-16.647,21.357-21.357c-2.869-1.793-12.659-10.202-15.622-8.968\r\n\tc-7.174,2.99-15.276,5.05-22.45,8.039c0-2.488-0.302-4.825-0.662-7.133c14.376-6.365,29.587-10.791,45.31-13.152l14.084,5.66\r\n\tl9.944,11.801l9.924,10.233l8.675,2.795l13.779-12.995L282,87.929v-8.339c27.25,3.958,52.984,14.124,75.522,29.8\r\n\tc-4.032,0.361-8.463,0.954-13.462,1.59c-2.065-1.22-4.714-1.774-6.965-2.623c6.531,14.042,13.343,27.89,20.264,41.746\r\n\tc7.393,14.801,23.793,30.677,26.673,46.301c3.394,18.416,1.039,35.144,2.896,56.811c1.788,20.865,23.524,44.572,23.524,44.572\r\n\ts10.037,3.419,18.384,2.228C421.055,330.798,405.103,359.029,382.067,382.067z"},"children":[]}]};exports.androidGlobe=androidGlobe;var androidHand={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M450.679,273.5c-14.585-14.577-36.054-15.89-50.639-1.312l-41.687,41.664c-10.852,10.836-23.93,10.859-31.564,1.852\r\n\tc-5.057-5.968-3.061-24.374-1.644-36.049l20.907-171.849c1.867-15.353-9.07-30.185-24.43-32.051\r\n\tc-15.358-1.867-29.322,9.939-31.191,25.289L267.37,236.021c-1.205,3.358-3.79,3.938-4.081-0.582L255.44,60\r\n\tc0-15.465-12.542-28-28.014-28c-15.473,0-28.015,12.535-28.015,28l-0.552,176.752c0.146,2.04-1.604,2.624-1.92,0.294L172.016,99.077\r\n\tc-2.75-15.219-17.323-26.203-32.548-23.453c-15.227,2.748-25.339,18.187-22.591,33.403l22.193,161.455\r\n\tc0.023,2.872-0.941,4.513-2.308,0.831l-33.109-88.517c-5.18-14.572-21.196-23.065-35.776-17.889\r\n\tc-14.579,5.177-22.201,22.061-17.023,36.631l58.042,189.625c0.303,1.046,0.624,2.085,0.953,3.118l0.121,0.39\r\n\tc0.011,0.031,0.025,0.058,0.035,0.088C126.079,444.233,172.57,480,227.427,480c35.116,0,71.591-12.378,99.357-33.672\r\n\tc0.001,0,0.003-0.002,0.003-0.002c29.99-18.051,126.071-121.347,126.071-121.347C467.445,310.402,465.266,288.08,450.679,273.5z"},"children":[]}]};exports.androidHand=androidHand;var androidHangout={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,48c-97.321,0-176,77.114-176,172.487c0,95.38,78.679,172.487,176,172.487V464c100.425-47.689,176-152.195,176-243.513\r\n\tC432,125.114,353.321,48,256,48z M246,230.633L224.943,271H193.88l20.712-40H184v-61h62V230.633z M328,230.633L307.768,271h-31.063\r\n\tl20.704-40H266v-61h62V230.633z"},"children":[]}]};exports.androidHangout=androidHangout;var androidHappy={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,48C140.563,48,48,141.6,48,256c0,114.4,92.563,208,208,208s208-93.6,208-208C464,141.6,370.401,48,256,48z M256,422.4\r\n\tc-91.518,0-166.404-74.883-166.404-166.4c0-91.518,74.887-166.4,166.404-166.4S422.404,164.482,422.404,256\r\n\tC422.404,347.518,347.518,422.4,256,422.4z M328.8,235.2c17.683,0,31.201-13.518,31.201-31.2s-13.519-31.2-31.201-31.2\r\n\tc-17.682,0-31.2,13.518-31.2,31.2S311.118,235.2,328.8,235.2z M183.2,235.2c17.682,0,31.2-13.518,31.2-31.2s-13.519-31.2-31.2-31.2\r\n\tc-17.683,0-31.201,13.518-31.201,31.2S165.518,235.2,183.2,235.2z M256,370.4c48.883,0,89.436-30.164,106.081-72.801H149.919\r\n\tC166.564,340.236,207.117,370.4,256,370.4z"},"children":[]}]};exports.androidHappy=androidHappy;var androidHome={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"208,448 208,320 304,320 304,448 401.6,448 401.6,256 464,256 256,64 48,256 110.4,256 110.4,448 \t"},"children":[{"name":"polygon","attribs":{"points":"208,448 208,320 304,320 304,448 401.6,448 401.6,256 464,256 256,64 48,256 110.4,256 110.4,448 \t"},"children":[]}]}]}]};exports.androidHome=androidHome;var androidImage={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_8_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M448,405.333V106.667C448,83.198,428.802,64,405.333,64H106.667C83.198,64,64,83.198,64,106.667v298.666\r\n\t\t\tC64,428.802,83.198,448,106.667,448h298.666C428.802,448,448,428.802,448,405.333z M181.333,288l53.334,64l74.666-96l96,128\r\n\t\t\tH106.667L181.333,288z"},"children":[{"name":"path","attribs":{"d":"M448,405.333V106.667C448,83.198,428.802,64,405.333,64H106.667C83.198,64,64,83.198,64,106.667v298.666\r\n\t\t\tC64,428.802,83.198,448,106.667,448h298.666C428.802,448,448,428.802,448,405.333z M181.333,288l53.334,64l74.666-96l96,128\r\n\t\t\tH106.667L181.333,288z"},"children":[]}]}]}]}]}]};exports.androidImage=androidImage;var androidLaptop={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_29_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M437.334,416C460.803,416,480,396.803,480,373.334V106.668C480,83.199,460.803,64,437.334,64H74.666\r\n\t\t\tC51.197,64,32,83.199,32,106.668v266.666C32,396.803,51.197,416,74.666,416H0c0,23.469,64,32,96,32h320c32,0,96-8.531,96-32\r\n\t\t\tH437.334z M74.666,106.668h362.668v271.998H74.666V106.668z M256,434.666c-11.729,0-21.333-9.604-21.333-21.334\r\n\t\t\tc0-11.729,9.604-21.332,21.333-21.332s21.333,9.604,21.333,21.332C277.333,425.062,267.729,434.666,256,434.666z"},"children":[{"name":"path","attribs":{"d":"M437.334,416C460.803,416,480,396.803,480,373.334V106.668C480,83.199,460.803,64,437.334,64H74.666\r\n\t\t\tC51.197,64,32,83.199,32,106.668v266.666C32,396.803,51.197,416,74.666,416H0c0,23.469,64,32,96,32h320c32,0,96-8.531,96-32\r\n\t\t\tH437.334z M74.666,106.668h362.668v271.998H74.666V106.668z M256,434.666c-11.729,0-21.333-9.604-21.333-21.334\r\n\t\t\tc0-11.729,9.604-21.332,21.333-21.332s21.333,9.604,21.333,21.332C277.333,425.062,267.729,434.666,256,434.666z"},"children":[]}]}]}]}]}]};exports.androidLaptop=androidLaptop;var androidList={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M408,64H104c-22.091,0-40,17.908-40,40v304c0,22.092,17.909,40,40,40h304c22.092,0,40-17.908,40-40V104\r\n\t\tC448,81.908,430.092,64,408,64z M304,368H144v-48h160V368z M368,280H144v-48h224V280z M368,192H144v-48h224V192z"},"children":[{"name":"path","attribs":{"d":"M408,64H104c-22.091,0-40,17.908-40,40v304c0,22.092,17.909,40,40,40h304c22.092,0,40-17.908,40-40V104\r\n\t\tC448,81.908,430.092,64,408,64z M304,368H144v-48h160V368z M368,280H144v-48h224V280z M368,192H144v-48h224V192z"},"children":[]}]}]}]};exports.androidList=androidList;var androidLocate={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,176c-44.004,0-80.001,36-80.001,80c0,44.004,35.997,80,80.001,80c44.005,0,79.999-35.996,79.999-80\r\n\t\t\tC335.999,212,300.005,176,256,176z M446.938,234.667c-9.605-88.531-81.074-160-169.605-169.599V32h-42.666v33.067\r\n\t\t\tc-88.531,9.599-160,81.068-169.604,169.599H32v42.667h33.062c9.604,88.531,81.072,160,169.604,169.604V480h42.666v-33.062\r\n\t\t\tc88.531-9.604,160-81.073,169.605-169.604H480v-42.667H446.938z M256,405.333c-82.137,0-149.334-67.198-149.334-149.333\r\n\t\t\tc0-82.136,67.197-149.333,149.334-149.333c82.135,0,149.332,67.198,149.332,149.333C405.332,338.135,338.135,405.333,256,405.333z\r\n\t\t\t"},"children":[{"name":"path","attribs":{"d":"M256,176c-44.004,0-80.001,36-80.001,80c0,44.004,35.997,80,80.001,80c44.005,0,79.999-35.996,79.999-80\r\n\t\t\tC335.999,212,300.005,176,256,176z M446.938,234.667c-9.605-88.531-81.074-160-169.605-169.599V32h-42.666v33.067\r\n\t\t\tc-88.531,9.599-160,81.068-169.604,169.599H32v42.667h33.062c9.604,88.531,81.072,160,169.604,169.604V480h42.666v-33.062\r\n\t\t\tc88.531-9.604,160-81.073,169.605-169.604H480v-42.667H446.938z M256,405.333c-82.137,0-149.334-67.198-149.334-149.333\r\n\t\t\tc0-82.136,67.197-149.333,149.334-149.333c82.135,0,149.332,67.198,149.332,149.333C405.332,338.135,338.135,405.333,256,405.333z\r\n\t\t\t"},"children":[]}]}]}]}]}]};exports.androidLocate=androidLocate;var androidLock={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M376,186h-20v-40c0-55-45-100-100-100S156,91,156,146v40h-20c-22.002,0-40,17.998-40,40v200c0,22.002,17.998,40,40,40h240\r\n\t\t\tc22.002,0,40-17.998,40-40V226C416,203.998,398.002,186,376,186z M256,368c-22.002,0-40-17.998-40-40s17.998-40,40-40\r\n\t\t\ts40,17.998,40,40S278.002,368,256,368z M318.002,186H193.998v-40c0-34.004,28.003-62.002,62.002-62.002\r\n\t\t\tc34.004,0,62.002,27.998,62.002,62.002V186z"},"children":[{"name":"path","attribs":{"d":"M376,186h-20v-40c0-55-45-100-100-100S156,91,156,146v40h-20c-22.002,0-40,17.998-40,40v200c0,22.002,17.998,40,40,40h240\r\n\t\t\tc22.002,0,40-17.998,40-40V226C416,203.998,398.002,186,376,186z M256,368c-22.002,0-40-17.998-40-40s17.998-40,40-40\r\n\t\t\ts40,17.998,40,40S278.002,368,256,368z M318.002,186H193.998v-40c0-34.004,28.003-62.002,62.002-62.002\r\n\t\t\tc34.004,0,62.002,27.998,62.002,62.002V186z"},"children":[]}]}]}]}]}]};exports.androidLock=androidLock;var androidMail={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_19_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M437.332,80H74.668C51.199,80,32,99.198,32,122.667v266.666C32,412.802,51.199,432,74.668,432h362.664\r\n\t\t\tC460.801,432,480,412.802,480,389.333V122.667C480,99.198,460.801,80,437.332,80z M432,170.667L256,288L80,170.667V128\r\n\t\t\tl176,117.333L432,128V170.667z"},"children":[{"name":"path","attribs":{"d":"M437.332,80H74.668C51.199,80,32,99.198,32,122.667v266.666C32,412.802,51.199,432,74.668,432h362.664\r\n\t\t\tC460.801,432,480,412.802,480,389.333V122.667C480,99.198,460.801,80,437.332,80z M432,170.667L256,288L80,170.667V128\r\n\t\t\tl176,117.333L432,128V170.667z"},"children":[]}]}]}]}]}]};exports.androidMail=androidMail;var androidMap={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_34_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M437.333,64c-2.176,0-4.396,1.369-9.176,3.207S320,108.802,320,108.802L192,64L71.469,104.531\r\n\t\t\t\tC67.197,105.604,64,109.864,64,115.197v322.136C64,443.729,68.271,448,74.666,448c1.828,0,6.505-2.33,9.087-3.319\r\n\t\t\t\tS192,403.197,192,403.197L320,448l120.531-40.531c4.271-1.073,7.469-5.334,7.469-10.667V74.666C448,68.271,443.729,64,437.333,64\r\n\t\t\t\tz M320,405.333l-128-44.802V106.666l128,44.803V405.333z"},"children":[{"name":"path","attribs":{"d":"M437.333,64c-2.176,0-4.396,1.369-9.176,3.207S320,108.802,320,108.802L192,64L71.469,104.531\r\n\t\t\t\tC67.197,105.604,64,109.864,64,115.197v322.136C64,443.729,68.271,448,74.666,448c1.828,0,6.505-2.33,9.087-3.319\r\n\t\t\t\tS192,403.197,192,403.197L320,448l120.531-40.531c4.271-1.073,7.469-5.334,7.469-10.667V74.666C448,68.271,443.729,64,437.333,64\r\n\t\t\t\tz M320,405.333l-128-44.802V106.666l128,44.803V405.333z"},"children":[]}]}]}]}]}]}]}]};exports.androidMap=androidMap;var androidMenu={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_3_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M64,384h384v-42.666H64V384z M64,277.334h384v-42.667H64V277.334z M64,128v42.665h384V128H64z"},"children":[{"name":"path","attribs":{"d":"M64,384h384v-42.666H64V384z M64,277.334h384v-42.667H64V277.334z M64,128v42.665h384V128H64z"},"children":[]}]}]}]}]}]};exports.androidMenu=androidMenu;var androidMicrophoneOff={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M367.951,354.654l-26.616-26.562l-9.568-9.548l-4.698-4.706L187,174.041v0.346L76.112,63.531L51.921,87.572L187,222.47\r\n\t\tv28.816c0,37.79,31.121,68.714,68.91,68.714c8.61,0,16.952-1.62,24.565-4.545l32.389,32.274\r\n\t\tc-17.333,8.793-36.812,13.86-56.782,13.86c-62.986,0-121.365-48.59-121.365-116.59H95.773C95.773,322,158,387.701,233,398.013V480\r\n\t\th46v-81.987c22-3.352,43.066-11.222,61.627-22.622l95.278,95.078l24.033-24l-33.847-33.785l-58.216-57.959l58.224,57.959\r\n\t\tL367.951,354.654z"},"children":[{"name":"path","attribs":{"d":"M367.951,354.654l-26.616-26.562l-9.568-9.548l-4.698-4.706L187,174.041v0.346L76.112,63.531L51.921,87.572L187,222.47\r\n\t\tv28.816c0,37.79,31.121,68.714,68.91,68.714c8.61,0,16.952-1.62,24.565-4.545l32.389,32.274\r\n\t\tc-17.333,8.793-36.812,13.86-56.782,13.86c-62.986,0-121.365-48.59-121.365-116.59H95.773C95.773,322,158,387.701,233,398.013V480\r\n\t\th46v-81.987c22-3.352,43.066-11.222,61.627-22.622l95.278,95.078l24.033-24l-33.847-33.785l-58.216-57.959l58.224,57.959\r\n\t\tL367.951,354.654z"},"children":[]}]},{"name":"path","attribs":{"d":"M325,251.286V100.714C325,62.924,293.791,32,256,32s-69,30.924-69,68.714v25.244l137.109,136.968\r\n\t\tC324.779,259.135,325,255.247,325,251.286z"},"children":[{"name":"path","attribs":{"d":"M325,251.286V100.714C325,62.924,293.791,32,256,32s-69,30.924-69,68.714v25.244l137.109,136.968\r\n\t\tC324.779,259.135,325,255.247,325,251.286z"},"children":[]}]},{"name":"path","attribs":{"d":"M416.439,245h-38.941c0,20.496-5.498,39.676-14.931,56.197l27.572,27.516C406.662,304.603,416.439,275.926,416.439,245z"},"children":[{"name":"path","attribs":{"d":"M416.439,245h-38.941c0,20.496-5.498,39.676-14.931,56.197l27.572,27.516C406.662,304.603,416.439,275.926,416.439,245z"},"children":[]}]},{"name":"polygon","attribs":{"points":"459.999,446.427 426.102,412.684 459.957,446.469 \t"},"children":[{"name":"polygon","attribs":{"points":"459.999,446.427 426.102,412.684 459.957,446.469 \t"},"children":[]}]}]}]};exports.androidMicrophoneOff=androidMicrophoneOff;var androidMicrophone={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,320c37.712,0,68.571-30.924,68.571-68.714V100.714C324.571,62.924,293.712,32,256,32s-68.571,30.924-68.571,68.714\r\n\t\tv150.572C187.429,289.076,218.288,320,256,320z M377.139,244.548c0,68.714-58.282,116.815-121.139,116.815\r\n\t\ts-121.139-48.102-121.139-116.815H96c0,77.873,61.719,143.153,137.144,153.465V480h45.713v-81.987\r\n\t\tC354.281,386.561,416,322.421,416,244.548H377.139z"},"children":[{"name":"path","attribs":{"d":"M256,320c37.712,0,68.571-30.924,68.571-68.714V100.714C324.571,62.924,293.712,32,256,32s-68.571,30.924-68.571,68.714\r\n\t\tv150.572C187.429,289.076,218.288,320,256,320z M377.139,244.548c0,68.714-58.282,116.815-121.139,116.815\r\n\t\ts-121.139-48.102-121.139-116.815H96c0,77.873,61.719,143.153,137.144,153.465V480h45.713v-81.987\r\n\t\tC354.281,386.561,416,322.421,416,244.548H377.139z"},"children":[]}]}]}]};exports.androidMicrophone=androidMicrophone;var androidMoreHorizontal={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M136,216c-22.002,0-40,17.998-40,40s17.998,40,40,40s40-17.998,40-40S158.002,216,136,216z M376,216\r\n\tc-22.002,0-40,17.998-40,40s17.998,40,40,40s40-17.998,40-40S398.002,216,376,216z M256,216c-22.002,0-40,17.998-40,40\r\n\ts17.998,40,40,40s40-17.998,40-40S278.002,216,256,216z"},"children":[]}]};exports.androidMoreHorizontal=androidMoreHorizontal;var androidMoreVertical={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M296,136c0-22.002-17.998-40-40-40s-40,17.998-40,40s17.998,40,40,40S296,158.002,296,136z M296,376\r\n\tc0-22.002-17.998-40-40-40s-40,17.998-40,40s17.998,40,40,40S296,398.002,296,376z M296,256c0-22.002-17.998-40-40-40\r\n\ts-40,17.998-40,40s17.998,40,40,40S296,278.002,296,256z"},"children":[]}]};exports.androidMoreVertical=androidMoreVertical;var androidNavigate={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_5_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"256,64 96,433.062 110.938,448 256,384 401.062,448 416,433.062 \t\t"},"children":[{"name":"polygon","attribs":{"points":"256,64 96,433.062 110.938,448 256,384 401.062,448 416,433.062 \t\t"},"children":[]}]}]}]}]}]};exports.androidNavigate=androidNavigate;var androidNotificationsNone={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M257,120.471c7.083,0,23.911,4.479,23.911,4.479c45.589,10.447,77.678,52.439,77.678,99.85v114.4v13.212l9.321,9.364\r\n\tl7.788,7.823H136.302l7.788-7.823l9.321-9.364V339.2V224.8c0-47.41,32.089-89.403,77.678-99.85c0,0,18.043-4.479,23.911-4.479\r\n\t M256,48c-17.602,0-31.059,13.518-31.059,31.2v14.559c-59.015,13.523-103.53,67.601-103.53,131.041v114.4L80,380.8v20.8h352v-20.8\r\n\tl-41.411-41.6V224.8c0-63.44-44.516-117.518-103.53-131.041V79.2C287.059,61.518,273.602,48,256,48L256,48z M297.411,422.4h-82.823\r\n\tc0,22.881,18.633,41.6,41.412,41.6S297.411,445.281,297.411,422.4L297.411,422.4z"},"children":[]}]};exports.androidNotificationsNone=androidNotificationsNone;var androidNotificationsOff={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,463.656c22.814,0,41.475-18.656,41.475-41.656h-82.95C214.525,445,233.186,463.656,256,463.656z"},"children":[{"name":"path","attribs":{"d":"M256,463.656c22.814,0,41.475-18.656,41.475-41.656h-82.95C214.525,445,233.186,463.656,256,463.656z"},"children":[]}]},{"name":"path","attribs":{"d":"M131.083,107.172l0.053,0.074L98.09,74.277L74.004,98.383l63.042,63.153C126.888,180.521,121,202.196,121,225.07v114.555\r\n\t\tl-41,41.656V402h297.743l36.182,36.33l24.079-24.301L425.9,402h0.316L131.083,107.172z"},"children":[{"name":"path","attribs":{"d":"M131.083,107.172l0.053,0.074L98.09,74.277L74.004,98.383l63.042,63.153C126.888,180.521,121,202.196,121,225.07v114.555\r\n\t\tl-41,41.656V402h297.743l36.182,36.33l24.079-24.301L425.9,402h0.316L131.083,107.172z"},"children":[]}]},{"name":"path","attribs":{"d":"M391,225.07c0-63.526-45-117.677-104-131.218V79.274c0-17.706-13.371-31.243-31-31.243c-17.628,0-31,13.537-31,31.243\r\n\t\tv14.578c-15,3.438-29.048,9.501-41.75,17.663L391,319.355V225.07z"},"children":[{"name":"path","attribs":{"d":"M391,225.07c0-63.526-45-117.677-104-131.218V79.274c0-17.706-13.371-31.243-31-31.243c-17.628,0-31,13.537-31,31.243\r\n\t\tv14.578c-15,3.438-29.048,9.501-41.75,17.663L391,319.355V225.07z"},"children":[]}]}]}]};exports.androidNotificationsOff=androidNotificationsOff;var androidNotifications={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,464c22.779,0,41.411-18.719,41.411-41.6h-82.823C214.588,445.281,233.221,464,256,464z M390.589,339.2V224.8\r\n\tc0-63.44-44.516-117.518-103.53-131.041V79.2c0-17.682-13.457-31.2-31.059-31.2s-31.059,13.518-31.059,31.2v14.559\r\n\tc-59.015,13.523-103.53,67.601-103.53,131.041v114.4L80,380.8v20.8h352v-20.8L390.589,339.2z"},"children":[]}]};exports.androidNotifications=androidNotifications;var androidOpen={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M405.34,405.332H106.66V106.668H240V64H106.66C83.191,64,64,83.197,64,106.668v298.664C64,428.803,83.191,448,106.66,448\r\n\th298.68c23.469,0,42.66-19.197,42.66-42.668V272h-42.66V405.332z M288,64v42.668h87.474L159.999,322.133l29.866,29.866\r\n\tl215.476-215.47V224H448V64H288z"},"children":[]}]};exports.androidOpen=androidOpen;var androidOptions={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"32","y":"384","width":"272","height":"32"},"children":[{"name":"rect","attribs":{"x":"32","y":"384","width":"272","height":"32"},"children":[]}]},{"name":"rect","attribs":{"x":"400","y":"384","width":"80","height":"32"},"children":[{"name":"rect","attribs":{"x":"400","y":"384","width":"80","height":"32"},"children":[]}]},{"name":"path","attribs":{"d":"M384,447.5c0,17.949-14.327,32.5-32,32.5l0,0c-17.673,0-32-14.551-32-32.5v-95c0-17.949,14.327-32.5,32-32.5l0,0\r\n\t\t\tc17.673,0,32,14.551,32,32.5V447.5z"},"children":[{"name":"path","attribs":{"d":"M384,447.5c0,17.949-14.327,32.5-32,32.5l0,0c-17.673,0-32-14.551-32-32.5v-95c0-17.949,14.327-32.5,32-32.5l0,0\r\n\t\t\tc17.673,0,32,14.551,32,32.5V447.5z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"32","y":"240","width":"80","height":"32"},"children":[{"name":"rect","attribs":{"x":"32","y":"240","width":"80","height":"32"},"children":[]}]},{"name":"rect","attribs":{"x":"208","y":"240","width":"272","height":"32"},"children":[{"name":"rect","attribs":{"x":"208","y":"240","width":"272","height":"32"},"children":[]}]},{"name":"path","attribs":{"d":"M192,303.5c0,17.949-14.327,32.5-32,32.5l0,0c-17.673,0-32-14.551-32-32.5v-95c0-17.949,14.327-32.5,32-32.5l0,0\r\n\t\t\tc17.673,0,32,14.551,32,32.5V303.5z"},"children":[{"name":"path","attribs":{"d":"M192,303.5c0,17.949-14.327,32.5-32,32.5l0,0c-17.673,0-32-14.551-32-32.5v-95c0-17.949,14.327-32.5,32-32.5l0,0\r\n\t\t\tc17.673,0,32,14.551,32,32.5V303.5z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"32","y":"96","width":"272","height":"32"},"children":[{"name":"rect","attribs":{"x":"32","y":"96","width":"272","height":"32"},"children":[]}]},{"name":"rect","attribs":{"x":"400","y":"96","width":"80","height":"32"},"children":[{"name":"rect","attribs":{"x":"400","y":"96","width":"80","height":"32"},"children":[]}]},{"name":"path","attribs":{"d":"M384,159.5c0,17.949-14.327,32.5-32,32.5l0,0c-17.673,0-32-14.551-32-32.5v-95c0-17.949,14.327-32.5,32-32.5l0,0\r\n\t\t\tc17.673,0,32,14.551,32,32.5V159.5z"},"children":[{"name":"path","attribs":{"d":"M384,159.5c0,17.949-14.327,32.5-32,32.5l0,0c-17.673,0-32-14.551-32-32.5v-95c0-17.949,14.327-32.5,32-32.5l0,0\r\n\t\t\tc17.673,0,32,14.551,32,32.5V159.5z"},"children":[]}]}]}]}]}]};exports.androidOptions=androidOptions;var androidPeople={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M337.454,232c33.599,0,61.092-27.002,61.092-60c0-32.997-27.493-60-61.092-60s-61.09,27.003-61.09,60\r\n\tC276.364,204.998,303.855,232,337.454,232z M174.546,232c33.599,0,61.09-27.002,61.09-60c0-32.997-27.491-60-61.09-60\r\n\ts-61.092,27.003-61.092,60C113.454,204.998,140.947,232,174.546,232z M174.546,276C126.688,276,32,298.998,32,346v54h288v-54\r\n\tC320,298.998,222.401,276,174.546,276z M337.454,287.003c-6.105,0-10.325,0-17.454,0.997c23.426,17.002,32,28,32,58v54h128v-54\r\n\tC480,298.998,385.312,287.003,337.454,287.003z"},"children":[]}]};exports.androidPeople=androidPeople;var androidPersonAdd={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M304,256c52.805,0,96-43.201,96-96s-43.195-96-96-96s-96,43.201-96,96S251.195,256,304,256z M304,304\r\n\t\t\tc-63.598,0-192,32.402-192,96v48h384v-48C496,336.402,367.598,304,304,304z"},"children":[{"name":"path","attribs":{"d":"M304,256c52.805,0,96-43.201,96-96s-43.195-96-96-96s-96,43.201-96,96S251.195,256,304,256z M304,304\r\n\t\t\tc-63.598,0-192,32.402-192,96v48h384v-48C496,336.402,367.598,304,304,304z"},"children":[]}]}]}]},{"name":"g","attribs":{"id":"Icon_16_"},"children":[{"name":"g","attribs":{"id":"Icon_16_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M112,224v-64H80v64H16v32h64v64h32v-64h64v-32H112z"},"children":[{"name":"path","attribs":{"d":"M112,224v-64H80v64H16v32h64v64h32v-64h64v-32H112z"},"children":[]}]}]}]}]}]}]}]};exports.androidPersonAdd=androidPersonAdd;var androidPerson={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,256c52.805,0,96-43.201,96-96s-43.195-96-96-96s-96,43.201-96,96S203.195,256,256,256z M256,304\r\n\t\tc-63.598,0-192,32.402-192,96v48h384v-48C448,336.402,319.598,304,256,304z"},"children":[{"name":"path","attribs":{"d":"M256,256c52.805,0,96-43.201,96-96s-43.195-96-96-96s-96,43.201-96,96S203.195,256,256,256z M256,304\r\n\t\tc-63.598,0-192,32.402-192,96v48h384v-48C448,336.402,319.598,304,256,304z"},"children":[]}]}]}]};exports.androidPerson=androidPerson;var androidPhoneLandscape={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_6_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M480,358.856V153.143C480,130.512,461.674,112,439.272,112H72.728C50.326,112,32,130.512,32,153.143v205.713\r\n\t\t\tC32,381.488,50.326,400,72.728,400h366.545C461.674,400,480,381.488,480,358.856z M112,364V148h288v216H112z"},"children":[{"name":"path","attribs":{"d":"M480,358.856V153.143C480,130.512,461.674,112,439.272,112H72.728C50.326,112,32,130.512,32,153.143v205.713\r\n\t\t\tC32,381.488,50.326,400,72.728,400h366.545C461.674,400,480,381.488,480,358.856z M112,364V148h288v216H112z"},"children":[]}]}]}]}]}]};exports.androidPhoneLandscape=androidPhoneLandscape;var androidPhonePortrait={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_6_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M358.856,32H153.143C130.512,32,112,50.326,112,72.728v366.545C112,461.674,130.512,480,153.143,480h205.713\r\n\t\t\tC381.488,480,400,461.674,400,439.272V72.728C400,50.326,381.488,32,358.856,32z M364,400H148V112h216V400z"},"children":[{"name":"path","attribs":{"d":"M358.856,32H153.143C130.512,32,112,50.326,112,72.728v366.545C112,461.674,130.512,480,153.143,480h205.713\r\n\t\t\tC381.488,480,400,461.674,400,439.272V72.728C400,50.326,381.488,32,358.856,32z M364,400H148V112h216V400z"},"children":[]}]}]}]}]}]};exports.androidPhonePortrait=androidPhonePortrait;var androidPin={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,32c-88.004,0-160,70.557-160,156.801C96,306.4,256,480,256,480s160-173.6,160-291.199C416,102.557,344.004,32,256,32z\r\n\t\t M256,244.801c-31.996,0-57.144-24.645-57.144-56c0-31.357,25.147-56,57.144-56s57.144,24.643,57.144,56\r\n\t\tC313.144,220.156,287.996,244.801,256,244.801z"},"children":[{"name":"path","attribs":{"d":"M256,32c-88.004,0-160,70.557-160,156.801C96,306.4,256,480,256,480s160-173.6,160-291.199C416,102.557,344.004,32,256,32z\r\n\t\t M256,244.801c-31.996,0-57.144-24.645-57.144-56c0-31.357,25.147-56,57.144-56s57.144,24.643,57.144,56\r\n\t\tC313.144,220.156,287.996,244.801,256,244.801z"},"children":[]}]}]}]};exports.androidPin=androidPin;var androidPlane={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_36_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M448,336v-40L288,192V79.2c0-17.683-14.82-31.2-32-31.2c-17.179,0-32,13.518-32,31.2V192L64,296v40l160-48v113.602\r\n\t\t\tl-48,31.199V464l80-16l80,16v-31.199l-48-31.199V288L448,336z"},"children":[{"name":"path","attribs":{"d":"M448,336v-40L288,192V79.2c0-17.683-14.82-31.2-32-31.2c-17.179,0-32,13.518-32,31.2V192L64,296v40l160-48v113.602\r\n\t\t\tl-48,31.199V464l80-16l80,16v-31.199l-48-31.199V288L448,336z"},"children":[]}]}]}]}]}]};exports.androidPlane=androidPlane;var androidPlaystore={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M464,152H360c0-57-46.562-103.859-104-103.859C198.562,48.141,152,95,152,152H48C66.688,368,61,464,61,464h389.999\r\n\t\tC450.998,464,445.311,366,464,152z M256,74.105c43.008,0,77.999,34.895,77.999,77.895H178C178,109,212.991,74.105,256,74.105z\r\n\t\t M204,397.64V228.867l142.999,84.387L204,397.64z"},"children":[{"name":"path","attribs":{"d":"M464,152H360c0-57-46.562-103.859-104-103.859C198.562,48.141,152,95,152,152H48C66.688,368,61,464,61,464h389.999\r\n\t\tC450.998,464,445.311,366,464,152z M256,74.105c43.008,0,77.999,34.895,77.999,77.895H178C178,109,212.991,74.105,256,74.105z\r\n\t\t M204,397.64V228.867l142.999,84.387L204,397.64z"},"children":[]}]}]}]};exports.androidPlaystore=androidPlaystore;var androidPrint={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M399.95,160h-287.9C76.824,160,48,188.803,48,224v138.667h79.899V448h256.201v-85.333H464V224\r\n\t\tC464,188.803,435.175,160,399.95,160z M352,416H160V288h192V416z M384.101,64H127.899v80h256.201V64z"},"children":[{"name":"path","attribs":{"d":"M399.95,160h-287.9C76.824,160,48,188.803,48,224v138.667h79.899V448h256.201v-85.333H464V224\r\n\t\tC464,188.803,435.175,160,399.95,160z M352,416H160V288h192V416z M384.101,64H127.899v80h256.201V64z"},"children":[]}]}]}]};exports.androidPrint=androidPrint;var androidRadioButtonOff={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_20_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,48C141.601,48,48,141.601,48,256s93.601,208,208,208s208-93.601,208-208S370.399,48,256,48z M256,422.399\r\n\t\t\tc-91.518,0-166.399-74.882-166.399-166.399S164.482,89.6,256,89.6S422.4,164.482,422.4,256S347.518,422.399,256,422.399z"},"children":[{"name":"path","attribs":{"d":"M256,48C141.601,48,48,141.601,48,256s93.601,208,208,208s208-93.601,208-208S370.399,48,256,48z M256,422.399\r\n\t\t\tc-91.518,0-166.399-74.882-166.399-166.399S164.482,89.6,256,89.6S422.4,164.482,422.4,256S347.518,422.399,256,422.399z"},"children":[]}]}]}]}]}]};exports.androidRadioButtonOff=androidRadioButtonOff;var androidRadioButtonOn={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_21_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,152c-57.2,0-104,46.8-104,104s46.8,104,104,104s104-46.8,104-104S313.2,152,256,152z M256,48\r\n\t\t\tC141.601,48,48,141.601,48,256s93.601,208,208,208s208-93.601,208-208S370.399,48,256,48z M256,422.4\r\n\t\t\tc-91.518,0-166.4-74.883-166.4-166.4S164.482,89.6,256,89.6S422.4,164.482,422.4,256S347.518,422.4,256,422.4z"},"children":[{"name":"path","attribs":{"d":"M256,152c-57.2,0-104,46.8-104,104s46.8,104,104,104s104-46.8,104-104S313.2,152,256,152z M256,48\r\n\t\t\tC141.601,48,48,141.601,48,256s93.601,208,208,208s208-93.601,208-208S370.399,48,256,48z M256,422.4\r\n\t\t\tc-91.518,0-166.4-74.883-166.4-166.4S164.482,89.6,256,89.6S422.4,164.482,422.4,256S347.518,422.4,256,422.4z"},"children":[]}]}]}]}]}]};exports.androidRadioButtonOn=androidRadioButtonOn;var androidRefresh={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,388c-72.597,0-132-59.405-132-132c0-72.601,59.403-132,132-132c36.3,0,69.299,15.4,92.406,39.601L278,234h154V80\r\n\t\tl-51.698,51.702C348.406,99.798,304.406,80,256,80c-96.797,0-176,79.203-176,176s78.094,176,176,176\r\n\t\tc81.045,0,148.287-54.134,169.401-128H378.85C360.105,353.561,311.712,388,256,388z"},"children":[{"name":"path","attribs":{"d":"M256,388c-72.597,0-132-59.405-132-132c0-72.601,59.403-132,132-132c36.3,0,69.299,15.4,92.406,39.601L278,234h154V80\r\n\t\tl-51.698,51.702C348.406,99.798,304.406,80,256,80c-96.797,0-176,79.203-176,176s78.094,176,176,176\r\n\t\tc81.045,0,148.287-54.134,169.401-128H378.85C360.105,353.561,311.712,388,256,388z"},"children":[]}]}]}]};exports.androidRefresh=androidRefresh;var androidRemoveCircle={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,48C141.125,48,48,141.125,48,256s93.125,208,208,208s208-93.125,208-208S370.875,48,256,48z M363,277H149v-42h214V277\r\n\t\tz"},"children":[{"name":"path","attribs":{"d":"M256,48C141.125,48,48,141.125,48,256s93.125,208,208,208s208-93.125,208-208S370.875,48,256,48z M363,277H149v-42h214V277\r\n\t\tz"},"children":[]}]}]}]};exports.androidRemoveCircle=androidRemoveCircle;var androidRemove={"viewBox":"0 0 512 512","children":[{"name":"rect","attribs":{"x":"96","y":"235","width":"320","height":"42"},"children":[]}]};exports.androidRemove=androidRemove;var androidRestaurant={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_38_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M164.852,279.939l61.834-60.251L73.72,71.706c-33.626,32.764-33.626,86.677,0,119.44L164.852,279.939z"},"children":[{"name":"path","attribs":{"d":"M164.852,279.939l61.834-60.251L73.72,71.706c-33.626,32.764-33.626,86.677,0,119.44L164.852,279.939z"},"children":[]}]},{"name":"path","attribs":{"d":"M312.389,241.88c33.636,14.802,80.283,4.232,113.91-29.593c41.222-40.165,49.909-98.303,17.363-128.96\r\n\t\t\t\tc-31.465-31.71-91.131-23.245-132.354,16.921c-34.718,33.825-45.566,79.276-30.374,110.986\r\n\t\t\t\tC233.195,258.802,69.382,418.407,69.382,418.407L99.759,448l149.71-145.866L399.177,448l30.374-29.593L279.842,272.538\r\n\t\t\t\tL312.389,241.88z"},"children":[{"name":"path","attribs":{"d":"M312.389,241.88c33.636,14.802,80.283,4.232,113.91-29.593c41.222-40.165,49.909-98.303,17.363-128.96\r\n\t\t\t\tc-31.465-31.71-91.131-23.245-132.354,16.921c-34.718,33.825-45.566,79.276-30.374,110.986\r\n\t\t\t\tC233.195,258.802,69.382,418.407,69.382,418.407L99.759,448l149.71-145.866L399.177,448l30.374-29.593L279.842,272.538\r\n\t\t\t\tL312.389,241.88z"},"children":[]}]}]}]}]}]}]}]};exports.androidRestaurant=androidRestaurant;var androidSad={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,288c-45.443,0-83.675,26.076-102.205,64h204.41C339.675,314.076,301.443,288,256,288z"},"children":[{"name":"path","attribs":{"d":"M256,288c-45.443,0-83.675,26.076-102.205,64h204.41C339.675,314.076,301.443,288,256,288z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,48C140.563,48,48,141.6,48,256c0,114.4,92.563,208,208,208s208-93.6,208-208C464,141.6,370.401,48,256,48z M256,422.4\r\n\t\tc-91.518,0-166.404-74.883-166.404-166.4c0-91.518,74.887-166.4,166.404-166.4S422.404,164.482,422.404,256\r\n\t\tC422.404,347.518,347.518,422.4,256,422.4z"},"children":[{"name":"path","attribs":{"d":"M256,48C140.563,48,48,141.6,48,256c0,114.4,92.563,208,208,208s208-93.6,208-208C464,141.6,370.401,48,256,48z M256,422.4\r\n\t\tc-91.518,0-166.404-74.883-166.404-166.4c0-91.518,74.887-166.4,166.404-166.4S422.404,164.482,422.404,256\r\n\t\tC422.404,347.518,347.518,422.4,256,422.4z"},"children":[]}]},{"name":"path","attribs":{"d":"M328.8,235.2c17.683,0,31.201-13.518,31.201-31.2s-13.519-31.2-31.201-31.2c-17.682,0-31.2,13.518-31.2,31.2\r\n\t\tS311.118,235.2,328.8,235.2z"},"children":[{"name":"path","attribs":{"d":"M328.8,235.2c17.683,0,31.201-13.518,31.201-31.2s-13.519-31.2-31.201-31.2c-17.682,0-31.2,13.518-31.2,31.2\r\n\t\tS311.118,235.2,328.8,235.2z"},"children":[]}]},{"name":"path","attribs":{"d":"M183.2,235.2c17.682,0,31.2-13.518,31.2-31.2s-13.519-31.2-31.2-31.2c-17.683,0-31.201,13.518-31.201,31.2\r\n\t\tS165.518,235.2,183.2,235.2z"},"children":[{"name":"path","attribs":{"d":"M183.2,235.2c17.682,0,31.2-13.518,31.2-31.2s-13.519-31.2-31.2-31.2c-17.683,0-31.201,13.518-31.201,31.2\r\n\t\tS165.518,235.2,183.2,235.2z"},"children":[]}]}]}]};exports.androidSad=androidSad;var androidSearch={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_4_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M337.509,305.372h-17.501l-6.571-5.486c20.791-25.232,33.922-57.054,33.922-93.257\r\n\t\t\t\t\tC347.358,127.632,283.896,64,205.135,64C127.452,64,64,127.632,64,206.629s63.452,142.628,142.225,142.628\r\n\t\t\t\t\tc35.011,0,67.831-13.167,92.991-34.008l6.561,5.487v17.551L415.18,448L448,415.086L337.509,305.372z M206.225,305.372\r\n\t\t\t\t\tc-54.702,0-98.463-43.887-98.463-98.743c0-54.858,43.761-98.742,98.463-98.742c54.7,0,98.462,43.884,98.462,98.742\r\n\t\t\t\t\tC304.687,261.485,260.925,305.372,206.225,305.372z"},"children":[{"name":"path","attribs":{"d":"M337.509,305.372h-17.501l-6.571-5.486c20.791-25.232,33.922-57.054,33.922-93.257\r\n\t\t\t\t\tC347.358,127.632,283.896,64,205.135,64C127.452,64,64,127.632,64,206.629s63.452,142.628,142.225,142.628\r\n\t\t\t\t\tc35.011,0,67.831-13.167,92.991-34.008l6.561,5.487v17.551L415.18,448L448,415.086L337.509,305.372z M206.225,305.372\r\n\t\t\t\t\tc-54.702,0-98.463-43.887-98.463-98.743c0-54.858,43.761-98.742,98.463-98.742c54.7,0,98.462,43.884,98.462,98.742\r\n\t\t\t\t\tC304.687,261.485,260.925,305.372,206.225,305.372z"},"children":[]}]}]}]}]}]}]}]}]}]};exports.androidSearch=androidSearch;var androidSend={"viewBox":"0 0 512 512","children":[{"name":"polygon","attribs":{"points":"48,448 464,256 48,64 48,213.333 346,256 48,298.667 "},"children":[]}]};exports.androidSend=androidSend;var androidSettings={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M413.967,276.8c1.06-6.235,1.06-13.518,1.06-20.8s-1.06-13.518-1.06-20.8l44.667-34.318\r\n\t\tc4.26-3.118,5.319-8.317,2.13-13.518L418.215,115.6c-2.129-4.164-8.507-6.235-12.767-4.164l-53.186,20.801\r\n\t\tc-10.638-8.318-23.394-15.601-36.16-20.801l-7.448-55.117c-1.06-4.154-5.319-8.318-10.638-8.318h-85.098\r\n\t\tc-5.318,0-9.577,4.164-10.637,8.318l-8.508,55.117c-12.767,5.2-24.464,12.482-36.171,20.801l-53.186-20.801\r\n\t\tc-5.319-2.071-10.638,0-12.767,4.164l-42.549,71.765c-2.119,4.153-1.061,10.399,2.129,13.518L96.97,235.2\r\n\t\tc0,7.282-1.06,13.518-1.06,20.8s1.06,13.518,1.06,20.8l-44.668,34.318c-4.26,3.118-5.318,8.317-2.13,13.518L92.721,396.4\r\n\t\tc2.13,4.164,8.508,6.235,12.767,4.164l53.187-20.801c10.637,8.318,23.394,15.601,36.16,20.801l8.508,55.117\r\n\t\tc1.069,5.2,5.318,8.318,10.637,8.318h85.098c5.319,0,9.578-4.164,10.638-8.318l8.518-55.117c12.757-5.2,24.464-12.482,36.16-20.801\r\n\t\tl53.187,20.801c5.318,2.071,10.637,0,12.767-4.164l42.549-71.765c2.129-4.153,1.06-10.399-2.13-13.518L413.967,276.8z\r\n\t\t M255.468,328.8c-41.489,0-74.46-32.235-74.46-72.8s32.971-72.8,74.46-72.8s74.461,32.235,74.461,72.8S296.957,328.8,255.468,328.8\r\n\t\tz"},"children":[{"name":"path","attribs":{"d":"M413.967,276.8c1.06-6.235,1.06-13.518,1.06-20.8s-1.06-13.518-1.06-20.8l44.667-34.318\r\n\t\tc4.26-3.118,5.319-8.317,2.13-13.518L418.215,115.6c-2.129-4.164-8.507-6.235-12.767-4.164l-53.186,20.801\r\n\t\tc-10.638-8.318-23.394-15.601-36.16-20.801l-7.448-55.117c-1.06-4.154-5.319-8.318-10.638-8.318h-85.098\r\n\t\tc-5.318,0-9.577,4.164-10.637,8.318l-8.508,55.117c-12.767,5.2-24.464,12.482-36.171,20.801l-53.186-20.801\r\n\t\tc-5.319-2.071-10.638,0-12.767,4.164l-42.549,71.765c-2.119,4.153-1.061,10.399,2.129,13.518L96.97,235.2\r\n\t\tc0,7.282-1.06,13.518-1.06,20.8s1.06,13.518,1.06,20.8l-44.668,34.318c-4.26,3.118-5.318,8.317-2.13,13.518L92.721,396.4\r\n\t\tc2.13,4.164,8.508,6.235,12.767,4.164l53.187-20.801c10.637,8.318,23.394,15.601,36.16,20.801l8.508,55.117\r\n\t\tc1.069,5.2,5.318,8.318,10.637,8.318h85.098c5.319,0,9.578-4.164,10.638-8.318l8.518-55.117c12.757-5.2,24.464-12.482,36.16-20.801\r\n\t\tl53.187,20.801c5.318,2.071,10.637,0,12.767-4.164l42.549-71.765c2.129-4.153,1.06-10.399-2.13-13.518L413.967,276.8z\r\n\t\t M255.468,328.8c-41.489,0-74.46-32.235-74.46-72.8s32.971-72.8,74.46-72.8s74.461,32.235,74.461,72.8S296.957,328.8,255.468,328.8\r\n\t\tz"},"children":[]}]}]}]};exports.androidSettings=androidSettings;var androidShareAlt={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_33_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M383.822,344.427c-16.045,0-31.024,5.326-41.721,15.979l-152.957-88.42c1.071-5.328,2.142-9.593,2.142-14.919\r\n\t\t\tc0-5.328-1.071-9.593-2.142-14.919l150.826-87.35c11.762,10.653,26.741,17.041,43.852,17.041c35.295,0,64.178-28.766,64.178-63.92\r\n\t\t\tC448,72.767,419.117,44,383.822,44c-35.297,0-64.179,28.767-64.179,63.92c0,5.327,1.065,9.593,2.142,14.919l-150.821,87.35\r\n\t\t\tc-11.767-10.654-26.741-17.041-43.856-17.041c-35.296,0-63.108,28.766-63.108,63.92c0,35.153,28.877,63.92,64.178,63.92\r\n\t\t\tc17.115,0,32.089-6.389,43.856-17.042l151.891,88.421c-1.076,4.255-2.141,8.521-2.141,13.847\r\n\t\t\tc0,34.094,27.806,61.787,62.037,61.787c34.229,0,62.036-27.693,62.036-61.787C445.858,372.12,418.052,344.427,383.822,344.427z"},"children":[{"name":"path","attribs":{"d":"M383.822,344.427c-16.045,0-31.024,5.326-41.721,15.979l-152.957-88.42c1.071-5.328,2.142-9.593,2.142-14.919\r\n\t\t\tc0-5.328-1.071-9.593-2.142-14.919l150.826-87.35c11.762,10.653,26.741,17.041,43.852,17.041c35.295,0,64.178-28.766,64.178-63.92\r\n\t\t\tC448,72.767,419.117,44,383.822,44c-35.297,0-64.179,28.767-64.179,63.92c0,5.327,1.065,9.593,2.142,14.919l-150.821,87.35\r\n\t\t\tc-11.767-10.654-26.741-17.041-43.856-17.041c-35.296,0-63.108,28.766-63.108,63.92c0,35.153,28.877,63.92,64.178,63.92\r\n\t\t\tc17.115,0,32.089-6.389,43.856-17.042l151.891,88.421c-1.076,4.255-2.141,8.521-2.141,13.847\r\n\t\t\tc0,34.094,27.806,61.787,62.037,61.787c34.229,0,62.036-27.693,62.036-61.787C445.858,372.12,418.052,344.427,383.822,344.427z"},"children":[]}]}]}]}]}]};exports.androidShareAlt=androidShareAlt;var androidShare={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_17_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M448,248L288,96v85.334C138.666,202.667,85.333,309.334,64,416c53.333-74.666,117.333-108.802,224-108.802v87.469L448,248\r\n\t\t\tz"},"children":[{"name":"path","attribs":{"d":"M448,248L288,96v85.334C138.666,202.667,85.333,309.334,64,416c53.333-74.666,117.333-108.802,224-108.802v87.469L448,248\r\n\t\t\tz"},"children":[]}]}]}]}]}]};exports.androidShare=androidShare;var androidStarHalf={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M458,210.409l-145.267-12.476L256,64l-56.743,133.934L54,210.409l110.192,95.524L131.161,448L256,372.686L380.83,448\r\n\tl-33.021-142.066L458,210.409z M272.531,345.287L256,335.313l-0.002-189.277l27.27,64.379l7.52,17.751l19.208,1.65l69.846,5.998\r\n\tl-52.993,45.939l-14.576,12.636l4.367,18.788l15.875,68.299L272.531,345.287z"},"children":[]}]};exports.androidStarHalf=androidStarHalf;var androidStarOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M458,210.409l-145.267-12.476L256,64l-56.743,133.934L54,210.409l110.192,95.524L131.161,448L256,372.686L380.83,448\r\n\tl-33.021-142.066L458,210.409z M272.531,345.286L256,335.312l-16.53,9.973l-59.988,36.191l15.879-68.296l4.369-18.79l-14.577-12.637\r\n\tl-52.994-45.939l69.836-5.998l19.206-1.65l7.521-17.75l27.276-64.381l27.27,64.379l7.52,17.751l19.208,1.65l69.846,5.998\r\n\tl-52.993,45.939l-14.576,12.636l4.367,18.788l15.875,68.299L272.531,345.286z"},"children":[]}]};exports.androidStarOutline=androidStarOutline;var androidStar={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"256,372.686 380.83,448 347.809,305.934 458,210.409 312.733,197.934 256,64 199.257,197.934 54,210.409 \r\n\t\t164.192,305.934 131.161,448 \t"},"children":[{"name":"polygon","attribs":{"points":"256,372.686 380.83,448 347.809,305.934 458,210.409 312.733,197.934 256,64 199.257,197.934 54,210.409 \r\n\t\t164.192,305.934 131.161,448 \t"},"children":[]}]}]}]};exports.androidStar=androidStar;var androidStopwatch={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{"id":"Icon_7_"},"children":[{"name":"g","attribs":{"id":"Icon_7_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M232,306.667h48V176h-48V306.667z"},"children":[{"name":"path","attribs":{"d":"M232,306.667h48V176h-48V306.667z"},"children":[]}]}]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M407.67,170.271l30.786-30.786l-33.942-33.941l-30.785,30.786C341.217,111.057,300.369,96,256,96\r\n\t\t\tC149.961,96,64,181.961,64,288s85.961,192,192,192s192-85.961,192-192C448,243.631,432.943,202.783,407.67,170.271z\r\n\t\t\t M362.066,394.066C333.734,422.398,296.066,438,256,438s-77.735-15.602-106.066-43.934C121.602,365.735,106,328.066,106,288\r\n\t\t\ts15.602-77.735,43.934-106.066C178.265,153.602,215.934,138,256,138s77.734,15.602,106.066,43.934\r\n\t\t\tC390.398,210.265,406,247.934,406,288S390.398,365.735,362.066,394.066z"},"children":[{"name":"path","attribs":{"d":"M407.67,170.271l30.786-30.786l-33.942-33.941l-30.785,30.786C341.217,111.057,300.369,96,256,96\r\n\t\t\tC149.961,96,64,181.961,64,288s85.961,192,192,192s192-85.961,192-192C448,243.631,432.943,202.783,407.67,170.271z\r\n\t\t\t M362.066,394.066C333.734,422.398,296.066,438,256,438s-77.735-15.602-106.066-43.934C121.602,365.735,106,328.066,106,288\r\n\t\t\ts15.602-77.735,43.934-106.066C178.265,153.602,215.934,138,256,138s77.734,15.602,106.066,43.934\r\n\t\t\tC390.398,210.265,406,247.934,406,288S390.398,365.735,362.066,394.066z"},"children":[]}]},{"name":"rect","attribs":{"x":"192","y":"32","width":"128","height":"48"},"children":[{"name":"rect","attribs":{"x":"192","y":"32","width":"128","height":"48"},"children":[]}]}]}]}]}]};exports.androidStopwatch=androidStopwatch;var androidSubway={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,48c-93.864,0-176,10.668-176,85.334v213.332c0,41.604,33.062,74.666,74.667,74.666L128,448v16h256v-16l-26.667-26.668\r\n\t\tc41.604,0,74.667-33.062,74.667-74.666V133.334C432,58.668,349.864,48,256,48z M160,384c-18.136,0-32-13.865-32-32\r\n\t\tc0-18.137,13.864-32,32-32s32,13.863,32,32C192,370.135,178.136,384,160,384z M240,240H128v-96h112V240z M352,384\r\n\t\tc-18.136,0-32-13.865-32-32c0-18.137,13.864-32,32-32s32,13.863,32,32C384,370.135,370.136,384,352,384z M384,240H272v-96h112V240z\r\n\t\t"},"children":[{"name":"path","attribs":{"d":"M256,48c-93.864,0-176,10.668-176,85.334v213.332c0,41.604,33.062,74.666,74.667,74.666L128,448v16h256v-16l-26.667-26.668\r\n\t\tc41.604,0,74.667-33.062,74.667-74.666V133.334C432,58.668,349.864,48,256,48z M160,384c-18.136,0-32-13.865-32-32\r\n\t\tc0-18.137,13.864-32,32-32s32,13.863,32,32C192,370.135,178.136,384,160,384z M240,240H128v-96h112V240z M352,384\r\n\t\tc-18.136,0-32-13.865-32-32c0-18.137,13.864-32,32-32s32,13.863,32,32C384,370.135,370.136,384,352,384z M384,240H272v-96h112V240z\r\n\t\t"},"children":[]}]}]}]};exports.androidSubway=androidSubway;var androidSunny={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_27_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,160c25.499,0,49.567,10.025,67.771,28.229C341.975,206.433,352,230.501,352,256s-10.025,49.567-28.229,67.771\r\n\t\t\tC305.567,341.975,281.499,352,256,352s-49.567-10.025-67.771-28.229C170.025,305.567,160,281.499,160,256\r\n\t\t\ts10.025-49.567,28.229-67.771C206.433,170.025,230.501,160,256,160 M277.333,32h-42.666v64h42.666V32L277.333,32z M406.396,75.729\r\n\t\t\tL368,114.135L397.864,144l38.406-38.396L406.396,75.729L406.396,75.729z M105.604,75.729l-29.875,29.875L114.136,144L144,114.135\r\n\t\t\tL105.604,75.729L105.604,75.729z M256,128c-70.396,0-128,57.604-128,128s57.604,128,128,128s128-57.604,128-128\r\n\t\t\tS326.396,128,256,128L256,128z M480,234.666h-64v42.668h64V234.666L480,234.666z M96,234.666H32v42.668h64V234.666L96,234.666z\r\n\t\t\t M397.864,368L368,397.865l38.396,38.406l29.875-29.875L397.864,368L397.864,368z M114.136,368l-38.406,38.396l29.875,29.875\r\n\t\t\tL144,397.865L114.136,368L114.136,368z M277.333,416h-42.666v64c6.396,0,42.666,0,42.666,0V416L277.333,416z"},"children":[{"name":"path","attribs":{"d":"M256,160c25.499,0,49.567,10.025,67.771,28.229C341.975,206.433,352,230.501,352,256s-10.025,49.567-28.229,67.771\r\n\t\t\tC305.567,341.975,281.499,352,256,352s-49.567-10.025-67.771-28.229C170.025,305.567,160,281.499,160,256\r\n\t\t\ts10.025-49.567,28.229-67.771C206.433,170.025,230.501,160,256,160 M277.333,32h-42.666v64h42.666V32L277.333,32z M406.396,75.729\r\n\t\t\tL368,114.135L397.864,144l38.406-38.396L406.396,75.729L406.396,75.729z M105.604,75.729l-29.875,29.875L114.136,144L144,114.135\r\n\t\t\tL105.604,75.729L105.604,75.729z M256,128c-70.396,0-128,57.604-128,128s57.604,128,128,128s128-57.604,128-128\r\n\t\t\tS326.396,128,256,128L256,128z M480,234.666h-64v42.668h64V234.666L480,234.666z M96,234.666H32v42.668h64V234.666L96,234.666z\r\n\t\t\t M397.864,368L368,397.865l38.396,38.406l29.875-29.875L397.864,368L397.864,368z M114.136,368l-38.406,38.396l29.875,29.875\r\n\t\t\tL144,397.865L114.136,368L114.136,368z M277.333,416h-42.666v64c6.396,0,42.666,0,42.666,0V416L277.333,416z"},"children":[]}]}]}]}]}]};exports.androidSunny=androidSunny;var androidSync={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,93.09V32l-80,81.454l80,81.456v-61.093c65.996,0,120,54.982,120,122.183c0,20.363-5,39.714-14.004,57.016L391,342.547\r\n\tc15.996-25.457,25-54.988,25-86.547C416,166.401,343.998,93.09,256,93.09z M256,378.184c-66.001,0-120-54.988-120-122.184\r\n\tc0-20.363,5-39.709,13.999-57.02L121,169.454C104.999,193.89,96,224.436,96,256c0,89.599,72.002,162.91,160,162.91V480l80-81.453\r\n\tl-80-81.457V378.184z"},"children":[]}]};exports.androidSync=androidSync;var androidTextsms={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M408,64H96c-22.002,0-32,17.998-32,40v344l64-64h280c22.002,0,40-17.998,40-40V104C448,81.998,430.002,64,408,64z\r\n\t\t M198.4,242H160v-40h38.4V242z M275.2,242h-38.4v-40h38.4V242z M352,242h-38.4v-40H352V242z"},"children":[{"name":"path","attribs":{"d":"M408,64H96c-22.002,0-32,17.998-32,40v344l64-64h280c22.002,0,40-17.998,40-40V104C448,81.998,430.002,64,408,64z\r\n\t\t M198.4,242H160v-40h38.4V242z M275.2,242h-38.4v-40h38.4V242z M352,242h-38.4v-40H352V242z"},"children":[]}]}]}]};exports.androidTextsms=androidTextsms;var androidTime={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_1_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-opacity":"0.9","d":"M256,43C137.789,43,43,138.851,43,256s94.789,213,213,213s213-95.851,213-213S373.149,43,256,43z\r\n\t\t\t\t M256,426.4c-93.718,0-170.4-76.683-170.4-170.4S162.282,85.6,256,85.6S426.4,162.282,426.4,256S349.718,426.4,256,426.4z"},"children":[{"name":"path","attribs":{"fill-opacity":"0.9","d":"M256,43C137.789,43,43,138.851,43,256s94.789,213,213,213s213-95.851,213-213S373.149,43,256,43z\r\n\t\t\t\t M256,426.4c-93.718,0-170.4-76.683-170.4-170.4S162.282,85.6,256,85.6S426.4,162.282,426.4,256S349.718,426.4,256,426.4z"},"children":[]}]}]}]},{"name":"polygon","attribs":{"fill-opacity":"0.9","points":"266.65,149.5 234.7,149.5 234.7,277.3 346.525,344.393 362.5,317.768 266.65,261.324 \t\t"},"children":[{"name":"polygon","attribs":{"fill-opacity":"0.9","points":"266.65,149.5 234.7,149.5 234.7,277.3 346.525,344.393 362.5,317.768 266.65,261.324 \t\t"},"children":[]}]}]}]}]}]};exports.androidTime=androidTime;var androidTrain={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_35_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M80,346.666c0,41.604,33.062,74.666,74.667,74.666L128,448v16h256v-16l-26.667-26.668\r\n\t\t\t\tc41.604,0,74.667-33.062,74.667-74.666V133.334C432,58.668,349.864,48,256,48S80,58.668,80,133.334V346.666z M256,376\r\n\t\t\t\tc-22.002,0-40-17.997-40-39.999S233.998,296,256,296s40,17.999,40,40.001S278.002,376,256,376z M384,224H128v-96h256V224z"},"children":[{"name":"path","attribs":{"d":"M80,346.666c0,41.604,33.062,74.666,74.667,74.666L128,448v16h256v-16l-26.667-26.668\r\n\t\t\t\tc41.604,0,74.667-33.062,74.667-74.666V133.334C432,58.668,349.864,48,256,48S80,58.668,80,133.334V346.666z M256,376\r\n\t\t\t\tc-22.002,0-40-17.997-40-39.999S233.998,296,256,296s40,17.999,40,40.001S278.002,376,256,376z M384,224H128v-96h256V224z"},"children":[]}]}]}]}]}]}]}]};exports.androidTrain=androidTrain;var androidUnlock={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M376,186h-20v-40c0-55-45-100-100-100S156,91,156,146h37.998c0-34.004,28.003-62.002,62.002-62.002\r\n\tc34.004,0,62.002,27.998,62.002,62.002H318v40H136c-22.002,0-40,17.998-40,40v200c0,22.002,17.998,40,40,40h240\r\n\tc22.002,0,40-17.998,40-40V226C416,203.998,398.002,186,376,186z M256,368c-22.002,0-40-17.998-40-40s17.998-40,40-40\r\n\ts40,17.998,40,40S278.002,368,256,368z"},"children":[]}]};exports.androidUnlock=androidUnlock;var androidUpload={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M403.002,217.001C388.998,148.002,328.998,96,256,96c-57.998,0-107.998,32.998-132.998,81.001\r\n\tC63.002,183.002,16,233.998,16,296c0,65.996,53.999,120,120,120h260c55,0,100-45,100-100\r\n\tC496,263.002,455.004,219.999,403.002,217.001z M288,276v76h-64v-76h-68l100-100l100,100H288z"},"children":[]}]};exports.androidUpload=androidUpload;var androidVolumeDown={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M64,192v128h85.334L256,431.543V80.458L149.334,192H64z M352,256c0-38.399-21.333-72.407-53.333-88.863v176.636\r\n\tC330.667,328.408,352,294.4,352,256z"},"children":[]}]};exports.androidVolumeDown=androidVolumeDown;var androidVolumeMute={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M64,192v128h85.334L256,431.543V80.458L149.334,192H64z"},"children":[]}]};exports.androidVolumeMute=androidVolumeMute;var androidVolumeOff={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M405.5,256c0,22.717-4.883,44.362-13.603,63.855l31.88,31.88C439.283,323.33,448,290.653,448,256\r\n\t\tc0-93.256-64-172.254-149-192v44.978C361,127.632,405.5,186.882,405.5,256z"},"children":[{"name":"path","attribs":{"d":"M405.5,256c0,22.717-4.883,44.362-13.603,63.855l31.88,31.88C439.283,323.33,448,290.653,448,256\r\n\t\tc0-93.256-64-172.254-149-192v44.978C361,127.632,405.5,186.882,405.5,256z"},"children":[]}]},{"name":"polygon","attribs":{"points":"256,80.458 204.979,132.938 256,183.957 \t"},"children":[{"name":"polygon","attribs":{"points":"256,80.458 204.979,132.938 256,183.957 \t"},"children":[]}]},{"name":"path","attribs":{"d":"M420.842,396.885L91.116,67.157l-24,24l90.499,90.413l-8.28,10.43H64v128h85.334L256,431.543V280l94.915,94.686\r\n\t\tC335.795,387.443,318,397.213,299,403.022V448c31-7.172,58.996-22.163,82.315-42.809l39.61,39.693l24-24.043l-24.002-24.039\r\n\t\tL420.842,396.885z"},"children":[{"name":"path","attribs":{"d":"M420.842,396.885L91.116,67.157l-24,24l90.499,90.413l-8.28,10.43H64v128h85.334L256,431.543V280l94.915,94.686\r\n\t\tC335.795,387.443,318,397.213,299,403.022V448c31-7.172,58.996-22.163,82.315-42.809l39.61,39.693l24-24.043l-24.002-24.039\r\n\t\tL420.842,396.885z"},"children":[]}]},{"name":"path","attribs":{"d":"M352.188,256c0-38.399-21.188-72.407-53.188-88.863v59.82l50.801,50.801C351.355,270.739,352.188,263.454,352.188,256z"},"children":[{"name":"path","attribs":{"d":"M352.188,256c0-38.399-21.188-72.407-53.188-88.863v59.82l50.801,50.801C351.355,270.739,352.188,263.454,352.188,256z"},"children":[]}]}]}]};exports.androidVolumeOff=androidVolumeOff;var androidVolumeUp={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M64,192v128h85.334L256,431.543V80.458L149.334,192H64z M352,256c0-38.399-21.333-72.407-53.333-88.863v176.636\r\n\tC330.667,328.408,352,294.4,352,256z M298.667,64v44.978C360.531,127.632,405.334,186.882,405.334,256\r\n\tc0,69.119-44.803,128.369-106.667,147.022V448C384,428.254,448,349.257,448,256C448,162.744,384,83.746,298.667,64z"},"children":[]}]};exports.androidVolumeUp=androidVolumeUp;var androidWalk={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M288,112c22.223,0,39.997-17.776,39.997-40c0-22.225-17.774-40-39.997-40s-40.003,17.775-40.003,40\r\n\t\tC247.997,94.224,265.777,112,288,112z"},"children":[{"name":"path","attribs":{"d":"M288,112c22.223,0,39.997-17.776,39.997-40c0-22.225-17.774-40-39.997-40s-40.003,17.775-40.003,40\r\n\t\tC247.997,94.224,265.777,112,288,112z"},"children":[]}]},{"name":"path","attribs":{"d":"M288,232h104v-40h-72l-44.802-69.333c-7.698-11.667-18.136-18.136-30.933-18.136c-3.198,0-8.828,0.531-12.799,1.747\r\n\t\tL120,144v112h40v-80l40.531-16L120,480h40l56.698-164.271L267,384v96h38V352l-57.031-96l19.745-61.864L288,232z"},"children":[{"name":"path","attribs":{"d":"M288,232h104v-40h-72l-44.802-69.333c-7.698-11.667-18.136-18.136-30.933-18.136c-3.198,0-8.828,0.531-12.799,1.747\r\n\t\tL120,144v112h40v-80l40.531-16L120,480h40l56.698-164.271L267,384v96h38V352l-57.031-96l19.745-61.864L288,232z"},"children":[]}]}]}]};exports.androidWalk=androidWalk;var androidWarning={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_31_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M32,464h448L256,48L32,464z M280,400h-48v-48h48V400z M280,320h-48v-96h48V320z"},"children":[{"name":"path","attribs":{"d":"M32,464h448L256,48L32,464z M280,400h-48v-48h48V400z M280,320h-48v-96h48V320z"},"children":[]}]}]}]}]}]};exports.androidWarning=androidWarning;var androidWatch={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_11_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M416,256c0-51.001-24.004-96.001-60.996-125L336,16H176l-19.004,115C120.004,159.999,96,204.999,96,256\r\n\t\t\t\tc0,50.996,24.004,95.996,60.996,125L176,496h160l19.004-115C391.996,351.996,416,306.996,416,256z M136,256\r\n\t\t\t\tc0-66.001,54.004-120,120-120s120,53.999,120,120c0,65.996-54.004,120-120,120S136,321.996,136,256z"},"children":[{"name":"path","attribs":{"d":"M416,256c0-51.001-24.004-96.001-60.996-125L336,16H176l-19.004,115C120.004,159.999,96,204.999,96,256\r\n\t\t\t\tc0,50.996,24.004,95.996,60.996,125L176,496h160l19.004-115C391.996,351.996,416,306.996,416,256z M136,256\r\n\t\t\t\tc0-66.001,54.004-120,120-120s120,53.999,120,120c0,65.996-54.004,120-120,120S136,321.996,136,256z"},"children":[]}]}]}]}]}]}]}]};exports.androidWatch=androidWatch;var androidWifi={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,228.719c-22.879,0-41.597,18.529-41.597,41.18c0,22.652,18.718,41.182,41.597,41.182\r\n\tc22.878,0,41.597-18.529,41.597-41.182C297.597,247.248,278.878,228.719,256,228.719z M380.8,269.898\r\n\tc0-67.946-56.163-123.539-124.8-123.539s-124.8,55.593-124.8,123.539c0,45.303,24.961,85.447,62.396,107.072l20.807-36.032\r\n\tc-24.972-14.417-41.604-40.153-41.604-71.04c0-45.295,37.433-82.358,83.201-82.358c45.771,0,83.201,37.063,83.201,82.358\r\n\tc0,30.887-16.633,56.623-41.604,71.04l20.807,36.032C355.837,355.346,380.8,315.201,380.8,269.898z M256,64\r\n\tC141.597,64,48,156.654,48,269.898C48,346.085,89.592,411.968,152,448l20.799-36.032c-49.919-28.824-83.207-81.324-83.207-142.069\r\n\tc0-90.593,74.891-164.718,166.408-164.718c91.517,0,166.406,74.125,166.406,164.718c0,60.745-33.284,114.271-83.205,142.069L360,448\r\n\tc62.406-36.032,104-101.915,104-178.102C464,156.654,370.403,64,256,64z"},"children":[]}]};exports.androidWifi=androidWifi;var aperture={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,32C132.288,32,32,132.288,32,256s100.288,224,224,224s224-100.288,224-224S379.712,32,256,32z M391.765,391.765\r\n\t\tC355.5,428.028,307.285,448,256,448s-99.5-19.972-135.765-56.235C83.972,355.5,64,307.285,64,256s19.972-99.5,56.235-135.765\r\n\t\tC156.5,83.972,204.715,64,256,64s99.5,19.972,135.765,56.235C428.028,156.5,448,204.715,448,256S428.028,355.5,391.765,391.765z"},"children":[{"name":"path","attribs":{"d":"M256,32C132.288,32,32,132.288,32,256s100.288,224,224,224s224-100.288,224-224S379.712,32,256,32z M391.765,391.765\r\n\t\tC355.5,428.028,307.285,448,256,448s-99.5-19.972-135.765-56.235C83.972,355.5,64,307.285,64,256s19.972-99.5,56.235-135.765\r\n\t\tC156.5,83.972,204.715,64,256,64s99.5,19.972,135.765,56.235C428.028,156.5,448,204.715,448,256S428.028,355.5,391.765,391.765z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M200.043,106.067c-40.631,15.171-73.434,46.382-90.717,85.933H256L200.043,106.067z"},"children":[{"name":"path","attribs":{"d":"M200.043,106.067c-40.631,15.171-73.434,46.382-90.717,85.933H256L200.043,106.067z"},"children":[]}]},{"name":"path","attribs":{"d":"M412.797,288c2.099-10.34,3.203-21.041,3.203-32c0-36.624-12.314-70.367-33.016-97.334L311,288H412.797z"},"children":[{"name":"path","attribs":{"d":"M412.797,288c2.099-10.34,3.203-21.041,3.203-32c0-36.624-12.314-70.367-33.016-97.334L311,288H412.797z"},"children":[]}]},{"name":"path","attribs":{"d":"M359.973,134.395C332.007,110.461,295.694,96,256,96c-7.966,0-15.794,0.591-23.448,1.715L310.852,224L359.973,134.395z"},"children":[{"name":"path","attribs":{"d":"M359.973,134.395C332.007,110.461,295.694,96,256,96c-7.966,0-15.794,0.591-23.448,1.715L310.852,224L359.973,134.395z"},"children":[]}]},{"name":"path","attribs":{"d":"M99.204,224C97.104,234.34,96,245.041,96,256c0,36.639,12.324,70.394,33.041,97.366L201,224H99.204z"},"children":[{"name":"path","attribs":{"d":"M99.204,224C97.104,234.34,96,245.041,96,256c0,36.639,12.324,70.394,33.041,97.366L201,224H99.204z"},"children":[]}]},{"name":"path","attribs":{"d":"M311.959,405.932c40.631-15.171,73.433-46.382,90.715-85.932H256L311.959,405.932z"},"children":[{"name":"path","attribs":{"d":"M311.959,405.932c40.631-15.171,73.433-46.382,90.715-85.932H256L311.959,405.932z"},"children":[]}]},{"name":"path","attribs":{"d":"M152.046,377.621C180.009,401.545,216.314,416,256,416c7.969,0,15.799-0.592,23.456-1.716L201.164,288L152.046,377.621z"},"children":[{"name":"path","attribs":{"d":"M152.046,377.621C180.009,401.545,216.314,416,256,416c7.969,0,15.799-0.592,23.456-1.716L201.164,288L152.046,377.621z"},"children":[]}]}]}]}]}]};exports.aperture=aperture;var archive={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"256,307.7 384,192 304,192 304,96 207.6,96 207.6,192 128,192 \t"},"children":[{"name":"polygon","attribs":{"points":"256,307.7 384,192 304,192 304,96 207.6,96 207.6,192 128,192 \t"},"children":[]}]},{"name":"path","attribs":{"d":"M465.4,297.2l-71.4-55h-42l62,61.8h-50.6c-2.3,0-4.3,1.2-5.4,2.9l-18.4,45.5H172.1l-18.4-45.5c-1-1.8-3.1-2.9-5.4-2.9H97.8\r\n\t\tl62.2-61.8h-42.2l-71.4,55c-10.6,6.2-15.8,19-14.1,31.6l8.7,66.9c2.3,13.1,9.7,20.3,28.1,20.3h373.8c19.1,0,25.8-7.6,28.1-20.3\r\n\t\tl8.7-66.9C481.4,315.9,476,303.4,465.4,297.2z"},"children":[{"name":"path","attribs":{"d":"M465.4,297.2l-71.4-55h-42l62,61.8h-50.6c-2.3,0-4.3,1.2-5.4,2.9l-18.4,45.5H172.1l-18.4-45.5c-1-1.8-3.1-2.9-5.4-2.9H97.8\r\n\t\tl62.2-61.8h-42.2l-71.4,55c-10.6,6.2-15.8,19-14.1,31.6l8.7,66.9c2.3,13.1,9.7,20.3,28.1,20.3h373.8c19.1,0,25.8-7.6,28.1-20.3\r\n\t\tl8.7-66.9C481.4,315.9,476,303.4,465.4,297.2z"},"children":[]}]}]}]};exports.archive=archive;var arrowDownA={"viewBox":"0 0 512 512","children":[{"name":"polygon","attribs":{"points":"256.5,448.5 448.5,256.5 336.5,256.5 336.5,64.5 176.5,64.5 176.5,256.5 64.5,256.5 "},"children":[]}]};exports.arrowDownA=arrowDownA;var arrowDownB={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M98.9,184.7l1.8,2.1l136,156.5c4.6,5.3,11.5,8.6,19.2,8.6c7.7,0,14.6-3.4,19.2-8.6L411,187.1l2.3-2.6\r\n\tc1.7-2.5,2.7-5.5,2.7-8.7c0-8.7-7.4-15.8-16.6-15.8v0H112.6v0c-9.2,0-16.6,7.1-16.6,15.8C96,179.1,97.1,182.2,98.9,184.7z"},"children":[]}]};exports.arrowDownB=arrowDownB;var arrowDownC={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M383.6,322.7L278.6,423c-5.8,6-13.7,9-22.4,9c-8.7,0-16.5-3-22.4-9L128.4,322.7c-12.5-11.9-12.5-31.3,0-43.2\r\n\tc12.5-11.9,32.7-11.9,45.2,0l50.4,48.2v-217c0-16.9,14.3-30.6,32-30.6c17.7,0,32,13.7,32,30.6v217l50.4-48.2\r\n\tc12.5-11.9,32.7-11.9,45.2,0C396.1,291.4,396.1,310.7,383.6,322.7z"},"children":[]}]};exports.arrowDownC=arrowDownC;var arrowExpand={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"274,209.7 337.9,145.9 288,96 416,96 416,224 366.1,174.1 302.3,238 \t"},"children":[{"name":"polygon","attribs":{"points":"274,209.7 337.9,145.9 288,96 416,96 416,224 366.1,174.1 302.3,238 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"274,302.3 337.9,366.1 288,416 416,416 416,288 366.1,337.9 302.3,274 \t"},"children":[{"name":"polygon","attribs":{"points":"274,302.3 337.9,366.1 288,416 416,416 416,288 366.1,337.9 302.3,274 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"238,302.3 174.1,366.1 224,416 96,416 96,288 145.9,337.9 209.7,274 \t"},"children":[{"name":"polygon","attribs":{"points":"238,302.3 174.1,366.1 224,416 96,416 96,288 145.9,337.9 209.7,274 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"238,209.7 174.1,145.9 224,96 96,96 96,224 145.9,174.1 209.7,238 \t"},"children":[{"name":"polygon","attribs":{"points":"238,209.7 174.1,145.9 224,96 96,96 96,224 145.9,174.1 209.7,238 \t"},"children":[]}]}]}]};exports.arrowExpand=arrowExpand;var arrowGraphDownLeft={"viewBox":"0 0 512 512","children":[{"name":"polygon","attribs":{"points":"32,384 32,224 92.8,284.8 223.7,144 330.7,256 480,128 330.7,330.7 223.7,224 130.2,322.2 192,384 "},"children":[]}]};exports.arrowGraphDownLeft=arrowGraphDownLeft;var arrowGraphDownRight={"viewBox":"0 0 512 512","children":[{"name":"polygon","attribs":{"points":"320,384 381.8,322.2 288.3,224 181.3,330.7 32,128 181.3,256 288.3,144 419.2,284.8 480,224 480,384 "},"children":[]}]};exports.arrowGraphDownRight=arrowGraphDownRight;var arrowGraphUpLeft={"viewBox":"0 0 512 512","children":[{"name":"polygon","attribs":{"points":"192,128 130.2,189.8 223.7,288 330.7,181.3 480,384 330.7,256 223.7,368 92.8,227.2 32,288 32,128 "},"children":[]}]};exports.arrowGraphUpLeft=arrowGraphUpLeft;var arrowGraphUpRight={"viewBox":"0 0 512 512","children":[{"name":"polygon","attribs":{"points":"320,128 381.8,189.8 288.3,288 181.3,181.3 32,384 181.3,256 288.3,368 419.2,227.2 480,288 480,128 "},"children":[]}]};exports.arrowGraphUpRight=arrowGraphUpRight;var arrowLeftA={"viewBox":"0 0 512 512","children":[{"name":"polygon","attribs":{"points":"64.5,256.5 256.5,448.5 256.5,336.5 448.5,336.5 448.5,176.5 256.5,176.5 256.5,64.5 "},"children":[]}]};exports.arrowLeftA=arrowLeftA;var arrowLeftB={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M327.3,98.9l-2.1,1.8l-156.5,136c-5.3,4.6-8.6,11.5-8.6,19.2c0,7.7,3.4,14.6,8.6,19.2L324.9,411l2.6,2.3\r\n\tc2.5,1.7,5.5,2.7,8.7,2.7c8.7,0,15.8-7.4,15.8-16.6h0V112.6h0c0-9.2-7.1-16.6-15.8-16.6C332.9,96,329.8,97.1,327.3,98.9z"},"children":[]}]};exports.arrowLeftB=arrowLeftB;var arrowLeftC={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M189.3,128.4L89,233.4c-6,5.8-9,13.7-9,22.4c0,8.7,3,16.5,9,22.4l100.3,105.4c11.9,12.5,31.3,12.5,43.2,0\r\n\tc11.9-12.5,11.9-32.7,0-45.2L184.4,288h217c16.9,0,30.6-14.3,30.6-32c0-17.7-13.7-32-30.6-32h-217l48.2-50.4\r\n\tc11.9-12.5,11.9-32.7,0-45.2C220.6,115.9,201.3,115.9,189.3,128.4z"},"children":[]}]};exports.arrowLeftC=arrowLeftC;var arrowMove={"viewBox":"0 0 512 512","children":[{"name":"polygon","attribs":{"points":"480,256 384,160 384,236 276,236 276,128 352,128 256,32 160,128 236,128 236,236 128,236 128,160 32,256 128,352 \r\n\t128,276 236,276 236,384 160,384 256,480 352,384 275.8,384 275.4,275.5 384,275.8 384,352 "},"children":[]}]};exports.arrowMove=arrowMove;var arrowResize={"viewBox":"0 0 512 512","children":[{"name":"polygon","attribs":{"points":"288,96 337.9,145.9 274,209.7 274,209.7 145.9,337.9 96,288 96,416 224,416 174.1,366.1 357.4,182.9 366.1,174.1 \r\n\t416,224 416,96 "},"children":[]}]};exports.arrowResize=arrowResize;var arrowReturnLeft={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M192,96v64h248c4.4,0,8,3.6,8,8v240c0,4.4-3.6,8-8,8H136c-4.4,0-8-3.6-8-8v-48c0-4.4,3.6-8,8-8h248V224H192v64L64,192\r\n\tL192,96z"},"children":[]}]};exports.arrowReturnLeft=arrowReturnLeft;var arrowReturnRight={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M448,192l-128,96v-64H128v128h248c4.4,0,8,3.6,8,8v48c0,4.4-3.6,8-8,8H72c-4.4,0-8-3.6-8-8V168c0-4.4,3.6-8,8-8h248V96\r\n\tL448,192z"},"children":[]}]};exports.arrowReturnRight=arrowReturnRight;var arrowRightA={"viewBox":"0 0 512 512","children":[{"name":"polygon","attribs":{"points":"448.5,256.5 256.5,64.5 256.5,176.5 64.5,176.5 64.5,336.5 256.5,336.5 256.5,448.5 "},"children":[]}]};exports.arrowRightA=arrowRightA;var arrowRightB={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M184.7,413.1l2.1-1.8l156.5-136c5.3-4.6,8.6-11.5,8.6-19.2c0-7.7-3.4-14.6-8.6-19.2L187.1,101l-2.6-2.3\r\n\tC182,97,179,96,175.8,96c-8.7,0-15.8,7.4-15.8,16.6h0v286.8h0c0,9.2,7.1,16.6,15.8,16.6C179.1,416,182.2,414.9,184.7,413.1z"},"children":[]}]};exports.arrowRightB=arrowRightB;var arrowRightC={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M322.7,128.4L423,233.4c6,5.8,9,13.7,9,22.4c0,8.7-3,16.5-9,22.4L322.7,383.6c-11.9,12.5-31.3,12.5-43.2,0\r\n\tc-11.9-12.5-11.9-32.7,0-45.2l48.2-50.4h-217C93.7,288,80,273.7,80,256c0-17.7,13.7-32,30.6-32h217l-48.2-50.4\r\n\tc-11.9-12.5-11.9-32.7,0-45.2C291.4,115.9,310.7,115.9,322.7,128.4z"},"children":[]}]};exports.arrowRightC=arrowRightC;var arrowShrink={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"448,92.3 366.1,174.1 416,224 288,224 288,96 337.9,145.9 419.7,64 \t"},"children":[{"name":"polygon","attribs":{"points":"448,92.3 366.1,174.1 416,224 288,224 288,96 337.9,145.9 419.7,64 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"448,419.7 366.1,337.9 416,288 288,288 288,416 337.9,366.1 419.7,448 \t"},"children":[{"name":"polygon","attribs":{"points":"448,419.7 366.1,337.9 416,288 288,288 288,416 337.9,366.1 419.7,448 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"64,419.7 145.9,337.9 96,288 224,288 224,416 174.1,366.1 92.3,448 \t"},"children":[{"name":"polygon","attribs":{"points":"64,419.7 145.9,337.9 96,288 224,288 224,416 174.1,366.1 92.3,448 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"64,92.3 145.9,174.1 96,224 224,224 224,96 174.1,145.9 92.3,64 \t"},"children":[{"name":"polygon","attribs":{"points":"64,92.3 145.9,174.1 96,224 224,224 224,96 174.1,145.9 92.3,64 \t"},"children":[]}]}]}]};exports.arrowShrink=arrowShrink;var arrowSwap={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M64,328v48c0,4.4,3.6,8,8,8h248v64l128-96l-128-96v64H72C67.6,320,64,323.6,64,328z"},"children":[{"name":"path","attribs":{"d":"M64,328v48c0,4.4,3.6,8,8,8h248v64l128-96l-128-96v64H72C67.6,320,64,323.6,64,328z"},"children":[]}]},{"name":"path","attribs":{"d":"M448,184v-48c0-4.4-3.6-8-8-8H192V64L64,160l128,96v-64h248C444.4,192,448,188.4,448,184z"},"children":[{"name":"path","attribs":{"d":"M448,184v-48c0-4.4-3.6-8-8-8H192V64L64,160l128,96v-64h248C444.4,192,448,188.4,448,184z"},"children":[]}]}]}]};exports.arrowSwap=arrowSwap;var arrowUpA={"viewBox":"0 0 512 512","children":[{"name":"polygon","attribs":{"points":"256.5,64.5 64.5,256.5 176.5,256.5 176.5,448.5 336.5,448.5 336.5,256.5 448.5,256.5 "},"children":[]}]};exports.arrowUpA=arrowUpA;var arrowUpB={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M413.1,327.3l-1.8-2.1l-136-156.5c-4.6-5.3-11.5-8.6-19.2-8.6c-7.7,0-14.6,3.4-19.2,8.6L101,324.9l-2.3,2.6\r\n\tC97,330,96,333,96,336.2c0,8.7,7.4,15.8,16.6,15.8v0h286.8v0c9.2,0,16.6-7.1,16.6-15.8C416,332.9,414.9,329.8,413.1,327.3z"},"children":[]}]};exports.arrowUpB=arrowUpB;var arrowUpC={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M128.4,189.3L233.4,89c5.8-6,13.7-9,22.4-9c8.7,0,16.5,3,22.4,9l105.4,100.3c12.5,11.9,12.5,31.3,0,43.2\r\n\tc-12.5,11.9-32.7,11.9-45.2,0L288,184.4v217c0,16.9-14.3,30.6-32,30.6c-17.7,0-32-13.7-32-30.6v-217l-50.4,48.2\r\n\tc-12.5,11.9-32.7,11.9-45.2,0C115.9,220.6,115.9,201.3,128.4,189.3z"},"children":[]}]};exports.arrowUpC=arrowUpC;var asterisk={"viewBox":"0 0 512 512","children":[{"name":"polygon","attribs":{"points":"480,224 293.172,231.487 401.688,64 342.441,32 256,208 169.824,32 110.328,64 218.828,231.487 32,224 32,288 \r\n\t217.537,277.934 113.65,448 169.619,480 256,304 342.381,480 398.33,448 294.463,277.934 480,288 "},"children":[]}]};exports.asterisk=asterisk;var at={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M453.8,407.1c-23.9,25.3-52.3,43.8-85.2,55.4C335.7,474.2,301,480,264.5,480c-34.9,0-66.7-5.5-95.3-16.6\r\n\t\tc-28.6-11-53.1-26.4-73.3-46.1c-20.3-19.7-36-43.3-47.2-70.8c-11.2-27.5-16.7-57.5-16.7-90c0-32.1,6.1-61.8,18.3-89.1\r\n\t\tc12.2-27.3,28.8-51,49.9-71.1c21.1-20.1,45.7-35.8,74-47.3C202.3,37.7,232.5,32,264.5,32c27.6,0,54.4,4,80.3,12\r\n\t\tc26,8,49,20.1,69.1,36.1c20.1,16.1,36.1,36.1,48.1,60.2c12,24.1,18,52.4,18,84.9c0,24.1-3.3,45.4-10,63.8\r\n\t\tc-6.7,18.5-15.6,33.9-26.8,46.4c-11.2,12.5-23.9,21.8-38.3,28c-14.4,6.2-29.5,9.3-45.3,9.3c-16.2,0-29.2-3.8-39-11.4\r\n\t\tc-9.7-7.6-14.6-17.3-14.6-28.9h-3c-6.1,9.6-15.4,18.8-28,27.4c-12.6,8.6-28,13-46.3,13c-27.6,0-48.9-9-63.9-27.1\r\n\t\tc-15-18.1-22.5-41.5-22.5-70.5c0-16.9,2.8-33.5,8.5-50c5.7-16.5,13.8-31.1,24.3-44c10.5-12.8,23.1-23.2,37.7-31\r\n\t\tc14.6-7.8,30.8-11.7,48.7-11.7c15.4,0,28.4,3.2,39,9.6c10.5,6.4,17.4,14.3,20.7,23.5h0.6l4.9-24.1h54.2L357,261.4\r\n\t\tc-0.8,5.6-1.9,11.8-3.3,18.7c-1.4,6.8-2.1,13.2-2.1,19.3c0,6.8,1.3,12.5,4,17.2c2.6,4.6,7.8,6.9,15.5,6.9\r\n\t\tc15.8,0,28.9-8.4,39.3-25.3c10.3-16.9,15.5-39.5,15.5-68c0-24.1-4.1-45.5-12.2-64.1c-8.1-18.7-19.4-34.3-33.8-47\r\n\t\tc-14.4-12.6-31.6-22.2-51.4-28.6c-19.9-6.4-41.6-9.6-65.1-9.6c-25.6,0-49,4.5-70.3,13.5s-39.5,21.5-54.5,37.3\r\n\t\tc-15,15.9-26.7,34.5-35,56C95.2,209.1,91,232.3,91,257.2c0,26.5,4.4,50.4,13.1,71.7c8.7,21.3,21,39.4,36.8,54.5\r\n\t\tc15.8,15.1,34.7,26.6,56.6,34.6c21.9,8,46.1,12,72.4,12c32.9,0,61.2-5.2,84.9-15.7c23.7-10.4,45.5-24.9,65.4-43.4L453.8,407.1z\r\n\t\t M263.3,188c-9.7,0-18.3,2.8-25.6,8.4c-7.3,5.6-13.5,12.7-18.6,21.4c-5.1,8.6-8.9,18.2-11.6,28.6c-2.6,10.4-4,20.5-4,30.1\r\n\t\tc0,4.8,0.5,9.9,1.5,15.4c1,5.4,3,10.4,6.1,15.1c3,4.6,7,8.4,11.9,11.4c4.9,3,11.4,4.5,19.5,4.5c11,0,20.3-2.7,28-8.1\r\n\t\tc7.7-5.4,14-12.2,18.9-20.5c4.9-8.2,8.4-17.2,10.7-26.8c2.2-9.6,3.3-18.5,3.3-26.5c0-6.4-0.6-12.7-1.8-19\r\n\t\tc-1.2-6.2-3.3-11.8-6.4-16.9c-3-5-7.2-9.1-12.5-12.3C277.5,189.6,271,188,263.3,188z"},"children":[{"name":"path","attribs":{"d":"M453.8,407.1c-23.9,25.3-52.3,43.8-85.2,55.4C335.7,474.2,301,480,264.5,480c-34.9,0-66.7-5.5-95.3-16.6\r\n\t\tc-28.6-11-53.1-26.4-73.3-46.1c-20.3-19.7-36-43.3-47.2-70.8c-11.2-27.5-16.7-57.5-16.7-90c0-32.1,6.1-61.8,18.3-89.1\r\n\t\tc12.2-27.3,28.8-51,49.9-71.1c21.1-20.1,45.7-35.8,74-47.3C202.3,37.7,232.5,32,264.5,32c27.6,0,54.4,4,80.3,12\r\n\t\tc26,8,49,20.1,69.1,36.1c20.1,16.1,36.1,36.1,48.1,60.2c12,24.1,18,52.4,18,84.9c0,24.1-3.3,45.4-10,63.8\r\n\t\tc-6.7,18.5-15.6,33.9-26.8,46.4c-11.2,12.5-23.9,21.8-38.3,28c-14.4,6.2-29.5,9.3-45.3,9.3c-16.2,0-29.2-3.8-39-11.4\r\n\t\tc-9.7-7.6-14.6-17.3-14.6-28.9h-3c-6.1,9.6-15.4,18.8-28,27.4c-12.6,8.6-28,13-46.3,13c-27.6,0-48.9-9-63.9-27.1\r\n\t\tc-15-18.1-22.5-41.5-22.5-70.5c0-16.9,2.8-33.5,8.5-50c5.7-16.5,13.8-31.1,24.3-44c10.5-12.8,23.1-23.2,37.7-31\r\n\t\tc14.6-7.8,30.8-11.7,48.7-11.7c15.4,0,28.4,3.2,39,9.6c10.5,6.4,17.4,14.3,20.7,23.5h0.6l4.9-24.1h54.2L357,261.4\r\n\t\tc-0.8,5.6-1.9,11.8-3.3,18.7c-1.4,6.8-2.1,13.2-2.1,19.3c0,6.8,1.3,12.5,4,17.2c2.6,4.6,7.8,6.9,15.5,6.9\r\n\t\tc15.8,0,28.9-8.4,39.3-25.3c10.3-16.9,15.5-39.5,15.5-68c0-24.1-4.1-45.5-12.2-64.1c-8.1-18.7-19.4-34.3-33.8-47\r\n\t\tc-14.4-12.6-31.6-22.2-51.4-28.6c-19.9-6.4-41.6-9.6-65.1-9.6c-25.6,0-49,4.5-70.3,13.5s-39.5,21.5-54.5,37.3\r\n\t\tc-15,15.9-26.7,34.5-35,56C95.2,209.1,91,232.3,91,257.2c0,26.5,4.4,50.4,13.1,71.7c8.7,21.3,21,39.4,36.8,54.5\r\n\t\tc15.8,15.1,34.7,26.6,56.6,34.6c21.9,8,46.1,12,72.4,12c32.9,0,61.2-5.2,84.9-15.7c23.7-10.4,45.5-24.9,65.4-43.4L453.8,407.1z\r\n\t\t M263.3,188c-9.7,0-18.3,2.8-25.6,8.4c-7.3,5.6-13.5,12.7-18.6,21.4c-5.1,8.6-8.9,18.2-11.6,28.6c-2.6,10.4-4,20.5-4,30.1\r\n\t\tc0,4.8,0.5,9.9,1.5,15.4c1,5.4,3,10.4,6.1,15.1c3,4.6,7,8.4,11.9,11.4c4.9,3,11.4,4.5,19.5,4.5c11,0,20.3-2.7,28-8.1\r\n\t\tc7.7-5.4,14-12.2,18.9-20.5c4.9-8.2,8.4-17.2,10.7-26.8c2.2-9.6,3.3-18.5,3.3-26.5c0-6.4-0.6-12.7-1.8-19\r\n\t\tc-1.2-6.2-3.3-11.8-6.4-16.9c-3-5-7.2-9.1-12.5-12.3C277.5,189.6,271,188,263.3,188z"},"children":[]}]}]}]};exports.at=at;var backspaceOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M413.442,332.307c1.528,1.51,2.372,3.562,2.372,5.71c0,2.151-0.844,4.203-2.372,5.707l-21.823,21.905\r\n\t\t\tc-1.575,1.586-3.625,2.371-5.691,2.371c-2.071,0-4.138-0.785-5.695-2.371l-76.23-76.461l-76.23,76.461\r\n\t\t\tc-1.558,1.586-3.625,2.371-5.695,2.371c-2.066,0-4.117-0.785-5.692-2.371l-21.824-21.905c-1.527-1.504-2.373-3.556-2.373-5.707\r\n\t\t\tc0-2.148,0.846-4.2,2.373-5.71L271.098,256l-76.738-76.297c-3.146-3.153-3.146-8.273,0-11.427l21.807-21.919\r\n\t\t\tc1.516-1.511,3.552-2.357,5.696-2.357c2.152,0,4.189,0.847,5.691,2.357l76.448,75.533l76.447-75.533\r\n\t\t\tc1.504-1.511,3.541-2.357,5.693-2.357c2.143,0,4.179,0.847,5.695,2.357l21.807,21.919c3.146,3.153,3.146,8.273,0,11.427\r\n\t\t\tL336.904,256L413.442,332.307z"},"children":[{"name":"path","attribs":{"d":"M413.442,332.307c1.528,1.51,2.372,3.562,2.372,5.71c0,2.151-0.844,4.203-2.372,5.707l-21.823,21.905\r\n\t\t\tc-1.575,1.586-3.625,2.371-5.691,2.371c-2.071,0-4.138-0.785-5.695-2.371l-76.23-76.461l-76.23,76.461\r\n\t\t\tc-1.558,1.586-3.625,2.371-5.695,2.371c-2.066,0-4.117-0.785-5.692-2.371l-21.824-21.905c-1.527-1.504-2.373-3.556-2.373-5.707\r\n\t\t\tc0-2.148,0.846-4.2,2.373-5.71L271.098,256l-76.738-76.297c-3.146-3.153-3.146-8.273,0-11.427l21.807-21.919\r\n\t\t\tc1.516-1.511,3.552-2.357,5.696-2.357c2.152,0,4.189,0.847,5.691,2.357l76.448,75.533l76.447-75.533\r\n\t\t\tc1.504-1.511,3.541-2.357,5.693-2.357c2.143,0,4.179,0.847,5.695,2.357l21.807,21.919c3.146,3.153,3.146,8.273,0,11.427\r\n\t\t\tL336.904,256L413.442,332.307z"},"children":[]}]}]}]},{"name":"path","attribs":{"d":"M498.941,93.559C490.037,84.654,478.696,80,465.875,80H168c-24.303,0-43.717,9.402-57.706,28.441L0,255.938l110.4,146.528\r\n\t\tl0.18,0.231l0.184,0.232c6.904,8.855,14.424,15.701,22.99,20.417C143.883,428.924,155.405,432,168,432h298\r\n\t\tc26.191,0,46-22.257,46-49V127C512,114.179,507.846,102.463,498.941,93.559z M480,383c0,8.837-5.163,17-14,17H168\r\n\t\tc-15.167,0-24.333-6.666-32-16.5L40,256l96-128.438c9.5-13,21.167-15.562,32-15.562h297.5c8.837,0,14.5,6.163,14.5,15V383z"},"children":[{"name":"path","attribs":{"d":"M498.941,93.559C490.037,84.654,478.696,80,465.875,80H168c-24.303,0-43.717,9.402-57.706,28.441L0,255.938l110.4,146.528\r\n\t\tl0.18,0.231l0.184,0.232c6.904,8.855,14.424,15.701,22.99,20.417C143.883,428.924,155.405,432,168,432h298\r\n\t\tc26.191,0,46-22.257,46-49V127C512,114.179,507.846,102.463,498.941,93.559z M480,383c0,8.837-5.163,17-14,17H168\r\n\t\tc-15.167,0-24.333-6.666-32-16.5L40,256l96-128.438c9.5-13,21.167-15.562,32-15.562h297.5c8.837,0,14.5,6.163,14.5,15V383z"},"children":[]}]}]}]};exports.backspaceOutline=backspaceOutline;var backspace={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M498.941,93.559C490.037,84.654,478.696,80,465.875,80H168c-24.303,0-43.717,9.402-57.706,28.441L0,255.938l110.4,146.528\r\n\t\tl0.18,0.231l0.184,0.232c6.904,8.855,14.424,15.701,22.99,20.417C143.883,428.924,155.405,432,168,432h298\r\n\t\tc26.191,0,46-22.257,46-49V127C512,114.179,507.846,102.463,498.941,93.559z M413.442,332.307c1.528,1.51,2.372,3.562,2.372,5.71\r\n\t\tc0,2.151-0.844,4.203-2.372,5.707l-21.823,21.905c-1.575,1.586-3.625,2.371-5.691,2.371c-2.071,0-4.138-0.785-5.695-2.371\r\n\t\tl-76.23-76.461l-76.23,76.461c-1.558,1.586-3.625,2.371-5.695,2.371c-2.066,0-4.117-0.785-5.692-2.371l-21.824-21.905\r\n\t\tc-1.527-1.504-2.373-3.556-2.373-5.707c0-2.148,0.846-4.2,2.373-5.71L271.098,256l-76.738-76.297\r\n\t\tc-3.146-3.153-3.146-8.273,0-11.427l21.807-21.919c1.516-1.511,3.552-2.357,5.696-2.357c2.152,0,4.189,0.847,5.691,2.357\r\n\t\tl76.448,75.533l76.447-75.533c1.504-1.511,3.541-2.357,5.693-2.357c2.143,0,4.179,0.847,5.695,2.357l21.807,21.919\r\n\t\tc3.146,3.153,3.146,8.273,0,11.427L336.904,256L413.442,332.307z"},"children":[{"name":"path","attribs":{"d":"M498.941,93.559C490.037,84.654,478.696,80,465.875,80H168c-24.303,0-43.717,9.402-57.706,28.441L0,255.938l110.4,146.528\r\n\t\tl0.18,0.231l0.184,0.232c6.904,8.855,14.424,15.701,22.99,20.417C143.883,428.924,155.405,432,168,432h298\r\n\t\tc26.191,0,46-22.257,46-49V127C512,114.179,507.846,102.463,498.941,93.559z M413.442,332.307c1.528,1.51,2.372,3.562,2.372,5.71\r\n\t\tc0,2.151-0.844,4.203-2.372,5.707l-21.823,21.905c-1.575,1.586-3.625,2.371-5.691,2.371c-2.071,0-4.138-0.785-5.695-2.371\r\n\t\tl-76.23-76.461l-76.23,76.461c-1.558,1.586-3.625,2.371-5.695,2.371c-2.066,0-4.117-0.785-5.692-2.371l-21.824-21.905\r\n\t\tc-1.527-1.504-2.373-3.556-2.373-5.707c0-2.148,0.846-4.2,2.373-5.71L271.098,256l-76.738-76.297\r\n\t\tc-3.146-3.153-3.146-8.273,0-11.427l21.807-21.919c1.516-1.511,3.552-2.357,5.696-2.357c2.152,0,4.189,0.847,5.691,2.357\r\n\t\tl76.448,75.533l76.447-75.533c1.504-1.511,3.541-2.357,5.693-2.357c2.143,0,4.179,0.847,5.695,2.357l21.807,21.919\r\n\t\tc3.146,3.153,3.146,8.273,0,11.427L336.904,256L413.442,332.307z"},"children":[]}]}]}]};exports.backspace=backspace;var bag={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M448,160h-64v-4.5C384,87,329,32,260.5,32h-8C184,32,128,87,128,155.5v4.5H64L32,480h448L448,160z M160,155.5\r\n\tc0-50.7,41.8-91.5,92.5-91.5h7.5h0.5c50.7,0,91.5,40.8,91.5,91.5v4.5H160V155.5z M67.8,448l24.9-256H128v36.3\r\n\tc-9.6,5.5-16,15.9-16,27.7c0,17.7,14.3,32,32,32s32-14.3,32-32c0-11.8-6.4-22.2-16-27.7V192h192v36.3c-9.6,5.5-16,15.9-16,27.7\r\n\tc0,17.7,14.3,32,32,32s32-14.3,32-32c0-11.8-6.4-22.2-16-27.7V192h35.4l24.9,256H67.8z"},"children":[]}]};exports.bag=bag;var batteryCharging={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M42.1,384h381.1c5.5,0,9.9-4.5,9.9-10v-54h36.9c5.6,0,10.1-4.5,10.1-10V202c0-5.5-4.5-10-10.1-10H433v-54\r\n\tc0-5.5-4.3-10-9.9-10H42.1c-5.6,0-10.1,4.5-10.1,10v236C32,379.5,36.5,384,42.1,384z M257.4,160l-27.9,81H291L190.6,352l27.9-81H157\r\n\tL257.4,160z"},"children":[]}]};exports.batteryCharging=batteryCharging;var batteryEmpty={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M469.9,192H433v-54c0-5.5-4.3-10-9.9-10H42.1c-5.6,0-10.1,4.5-10.1,10v236c0,5.5,4.5,10,10.1,10h381.1c5.5,0,9.9-4.5,9.9-10\r\n\tv-54h36.9c5.6,0,10.1-4.5,10.1-10V202C480,196.5,475.5,192,469.9,192z M448,288h-14.8H401v32v32H64V160h337v32v32h32.2H448V288z"},"children":[]}]};exports.batteryEmpty=batteryEmpty;var batteryFull={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M469.9,192H433v-54c0-5.5-4.3-10-9.9-10H42.1c-5.6,0-10.1,4.5-10.1,10v236c0,5.5,4.5,10,10.1,10h381.1c5.5,0,9.9-4.5,9.9-10\r\n\tv-54h36.9c5.6,0,10.1-4.5,10.1-10V202C480,196.5,475.5,192,469.9,192z"},"children":[]}]};exports.batteryFull=batteryFull;var batteryHalf={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M469.9,192H433v-54c0-5.5-4.3-10-9.9-10H42.1c-5.6,0-10.1,4.5-10.1,10v236c0,5.5,4.5,10,10.1,10h381.1c5.5,0,9.9-4.5,9.9-10\r\n\tv-54h36.9c5.6,0,10.1-4.5,10.1-10V202C480,196.5,475.5,192,469.9,192z M448,288h-14.8H401v32v32h-49l-32-192h81v32v32h32.2H448V288z\r\n\t"},"children":[]}]};exports.batteryHalf=batteryHalf;var batteryLow={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M42.1,384h381.1c5.5,0,9.9-4.5,9.9-10v-54h36.9c5.6,0,10.1-4.5,10.1-10V202c0-5.5-4.5-10-10.1-10H433v-54\r\n\tc0-5.5-4.3-10-9.9-10H42.1c-5.6,0-10.1,4.5-10.1,10v236C32,379.5,36.5,384,42.1,384z M401,160v32v32h32.2H448v64h-14.8H401v32v32\r\n\tH224l-32-192H401z"},"children":[]}]};exports.batteryLow=batteryLow;var beaker={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M143.5,192.5V416c0,8.836,7.851,16.5,16.688,16.5h208c8.836,0,15.312-7.664,15.312-16.5V192.5H143.5z M359.5,344\r\n\t\t\tc0,4.418-3.582,8-8,8s-8-3.582-8-8v-48c0-4.418,3.582-8,8-8s8,3.582,8,8V344z M352.188,272c-4.418,0-8-3.581-8-8s3.582-8,8-8\r\n\t\t\ts8,3.581,8,8S356.605,272,352.188,272z"},"children":[{"name":"path","attribs":{"d":"M143.5,192.5V416c0,8.836,7.851,16.5,16.688,16.5h208c8.836,0,15.312-7.664,15.312-16.5V192.5H143.5z M359.5,344\r\n\t\t\tc0,4.418-3.582,8-8,8s-8-3.582-8-8v-48c0-4.418,3.582-8,8-8s8,3.582,8,8V344z M352.188,272c-4.418,0-8-3.581-8-8s3.582-8,8-8\r\n\t\t\ts8,3.581,8,8S356.605,272,352.188,272z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M445.078,32.5H128.438c-54.345,0-64.594,27.426-64.594,39.75C94.094,76.5,95.5,77,95.5,109c0,16,0,307,0,307\r\n\t\t\tc0,35.346,29.341,64.5,64.688,64.5h207.75c35.346,0,63.562-29.154,63.562-64.5c0,0,0-316.75,0-335.5\r\n\t\t\tc0-20.349,12.298-38.276,13.516-40.183c1.219-1.906,3-3.798,3-4.958C448.016,34.188,447.6,32.5,445.078,32.5z M399.5,80.5V416\r\n\t\t\tc0,17.92-12.443,32.5-29.812,32.5h-209.5c-17.617,0-32.688-14.883-32.688-32.5V109c0-11.812,1.094-37.25-3.828-43.957\r\n\t\t\tc0.921-0.793,3.114-0.543,4.516-0.543h272.66C400.112,64.5,399.5,75.299,399.5,80.5z"},"children":[{"name":"path","attribs":{"d":"M445.078,32.5H128.438c-54.345,0-64.594,27.426-64.594,39.75C94.094,76.5,95.5,77,95.5,109c0,16,0,307,0,307\r\n\t\t\tc0,35.346,29.341,64.5,64.688,64.5h207.75c35.346,0,63.562-29.154,63.562-64.5c0,0,0-316.75,0-335.5\r\n\t\t\tc0-20.349,12.298-38.276,13.516-40.183c1.219-1.906,3-3.798,3-4.958C448.016,34.188,447.6,32.5,445.078,32.5z M399.5,80.5V416\r\n\t\t\tc0,17.92-12.443,32.5-29.812,32.5h-209.5c-17.617,0-32.688-14.883-32.688-32.5V109c0-11.812,1.094-37.25-3.828-43.957\r\n\t\t\tc0.921-0.793,3.114-0.543,4.516-0.543h272.66C400.112,64.5,399.5,75.299,399.5,80.5z"},"children":[]}]}]}]}]}]};exports.beaker=beaker;var beer={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M416,160h-32v-16c14.5-3.5,32-24.3,32-48c0-35.3-28.7-64-64-64c-16.3,0-31.1,6.1-42.4,16.1C297.2,38,281.4,32,264.2,32\r\n\t\tc-15.8,0-30.4,5.1-42.3,13.7c-9.9-8.5-22.9-13.7-37-13.7c-17.1,0-32.4,7.6-42.8,19.5C130.4,39.5,114.1,32,96,32\r\n\t\tc-35.3,0-64,28.7-64,64c0,16.2,6.1,31,16,42.3c0,0.2,0,0.4,0,0.7v54c0,26.5,21.5,48,48,48v223c0,8.8,7.2,16,16,16h256\r\n\t\tc8.8,0,16-7.2,16-16v-80h32c35.3,0,64-28.7,64-64v-96C480,188.7,451.3,160,416,160z M327.8,304c-1.6,0-3-0.6-4.3-1.4\r\n\t\tc-2.2-1.4-3.5-4-3.5-6.8V248c0-4.4,3.6-8,8-8c4.4,0,8,3.6,8,8v48.1l0,0C336,301.1,332.2,304,327.8,304z M335,228.4\r\n\t\tc-1.2,1.8-3,3-5.1,3.5c-2.1,0.4-4.3,0-6-1.1c-1.8-1.2-3-3-3.5-5.1c-0.4-2.1,0-4.3,1.1-6c1.2-1.8,3-3,5.1-3.5c2.1-0.4,4.3,0,6,1.1\r\n\t\tc1.8,1.2,3,3,3.5,5.1C336.6,224.4,336.2,226.6,335,228.4z M352,160v32H224.2c-0.1-4.3-3.6-7.8-8-7.8c-4.4,0-7.9,3.5-8,7.8H128v-9\r\n\t\tv-31.6c6.5-3.8,12.3-8.6,17-14.3c1.2-1.5,2.4-3,3.5-4.6c1.5,1.2,3,2.4,4.6,3.4c9.1,6.1,20,9.7,31.7,9.7c6.4,0,12.6-1.1,18.3-3\r\n\t\tc12.8,20.2,35.3,33.7,61,33.7c22,0,41.7-9.9,54.9-25.4c5.7-6.7,10.2-14.4,13.1-22.9H352V160z M382.6,105.2\r\n\t\tc-2.5-5.5-8.1-9.2-14.6-9.2h-48h-7c0,0-8.7-0.7-8.7,8.2s-2.9,17.1-7.8,23.7c-7.3,9.9-19.1,16.4-32.4,16.4\r\n\t\tc-14.9,0-27.9-8.1-34.8-20.2c-1.6-2.7-2.8-5.6-3.7-8.6c-0.1-0.6-0.3-1.1-0.4-1.6c-2-5.9-7.5-10.2-14.1-10.2c-3.9,0-7.5,1.5-10.2,4\r\n\t\tc0,0,0,0-0.1,0.1c-2.4,2.1-5.3,3.7-8.4,4.7c-2.4,0.8-5,1.2-7.7,1.2c-7.5,0-14.7-4-18.8-8.6c-10-11.4-23.7-6.8-29.7-5.5\r\n\t\ts-12.2,11.7-12.2,11.7c-1.1,2.1-2.5,4-4,5.8c-5.9,6.7-14.5,11-24.1,11v32v23v26c-8.8,0-16-7.2-16-16v-35v-34.3\r\n\t\tc-7.7-4.5-13.4-12.1-15.3-21c-0.5-2.1-0.7-4.4-0.7-6.7c0-17.6,14.4-32,32-32c11.8,0,23.3,7.7,30.1,15.4s26.7,7.7,33.9,0\r\n\t\tc6.8-7.3,14.3-15.4,24.8-15.4c6,0,11.6,2.2,15.9,5.8c1.9,1.6,3.6,3.5,4.9,5.6c1.1,1.8,2,4.2,3.1,5.8c2.7,3.4,6.5,5.5,11.2,5.5\r\n\t\tc4.4,0,8.3-1.9,11-5c0.6-0.7,1.2-1.5,1.7-2.3c2-2.5,4.2-4.8,6.7-6.8c6.8-5.4,15.5-8.6,24.8-8.6c10.6,0,20.2,4.1,27.4,10.9\r\n\t\tc1.7,1.6,6.7,4.5,13.2,5.1c4.5,0.4,6.1,0.3,8.2,0c10.3-1.3,14.4-4.7,16.4-6.6c5.8-5.8,13.8-9.4,22.6-9.4c17.6,0,32,14.4,32,32\r\n\t\tC384,99.2,383.5,102.3,382.6,105.2z M448,320c0,17.7-14.3,32-32,32h-32V192h32c17.7,0,32,14.3,32,32V320z"},"children":[{"name":"path","attribs":{"d":"M416,160h-32v-16c14.5-3.5,32-24.3,32-48c0-35.3-28.7-64-64-64c-16.3,0-31.1,6.1-42.4,16.1C297.2,38,281.4,32,264.2,32\r\n\t\tc-15.8,0-30.4,5.1-42.3,13.7c-9.9-8.5-22.9-13.7-37-13.7c-17.1,0-32.4,7.6-42.8,19.5C130.4,39.5,114.1,32,96,32\r\n\t\tc-35.3,0-64,28.7-64,64c0,16.2,6.1,31,16,42.3c0,0.2,0,0.4,0,0.7v54c0,26.5,21.5,48,48,48v223c0,8.8,7.2,16,16,16h256\r\n\t\tc8.8,0,16-7.2,16-16v-80h32c35.3,0,64-28.7,64-64v-96C480,188.7,451.3,160,416,160z M327.8,304c-1.6,0-3-0.6-4.3-1.4\r\n\t\tc-2.2-1.4-3.5-4-3.5-6.8V248c0-4.4,3.6-8,8-8c4.4,0,8,3.6,8,8v48.1l0,0C336,301.1,332.2,304,327.8,304z M335,228.4\r\n\t\tc-1.2,1.8-3,3-5.1,3.5c-2.1,0.4-4.3,0-6-1.1c-1.8-1.2-3-3-3.5-5.1c-0.4-2.1,0-4.3,1.1-6c1.2-1.8,3-3,5.1-3.5c2.1-0.4,4.3,0,6,1.1\r\n\t\tc1.8,1.2,3,3,3.5,5.1C336.6,224.4,336.2,226.6,335,228.4z M352,160v32H224.2c-0.1-4.3-3.6-7.8-8-7.8c-4.4,0-7.9,3.5-8,7.8H128v-9\r\n\t\tv-31.6c6.5-3.8,12.3-8.6,17-14.3c1.2-1.5,2.4-3,3.5-4.6c1.5,1.2,3,2.4,4.6,3.4c9.1,6.1,20,9.7,31.7,9.7c6.4,0,12.6-1.1,18.3-3\r\n\t\tc12.8,20.2,35.3,33.7,61,33.7c22,0,41.7-9.9,54.9-25.4c5.7-6.7,10.2-14.4,13.1-22.9H352V160z M382.6,105.2\r\n\t\tc-2.5-5.5-8.1-9.2-14.6-9.2h-48h-7c0,0-8.7-0.7-8.7,8.2s-2.9,17.1-7.8,23.7c-7.3,9.9-19.1,16.4-32.4,16.4\r\n\t\tc-14.9,0-27.9-8.1-34.8-20.2c-1.6-2.7-2.8-5.6-3.7-8.6c-0.1-0.6-0.3-1.1-0.4-1.6c-2-5.9-7.5-10.2-14.1-10.2c-3.9,0-7.5,1.5-10.2,4\r\n\t\tc0,0,0,0-0.1,0.1c-2.4,2.1-5.3,3.7-8.4,4.7c-2.4,0.8-5,1.2-7.7,1.2c-7.5,0-14.7-4-18.8-8.6c-10-11.4-23.7-6.8-29.7-5.5\r\n\t\ts-12.2,11.7-12.2,11.7c-1.1,2.1-2.5,4-4,5.8c-5.9,6.7-14.5,11-24.1,11v32v23v26c-8.8,0-16-7.2-16-16v-35v-34.3\r\n\t\tc-7.7-4.5-13.4-12.1-15.3-21c-0.5-2.1-0.7-4.4-0.7-6.7c0-17.6,14.4-32,32-32c11.8,0,23.3,7.7,30.1,15.4s26.7,7.7,33.9,0\r\n\t\tc6.8-7.3,14.3-15.4,24.8-15.4c6,0,11.6,2.2,15.9,5.8c1.9,1.6,3.6,3.5,4.9,5.6c1.1,1.8,2,4.2,3.1,5.8c2.7,3.4,6.5,5.5,11.2,5.5\r\n\t\tc4.4,0,8.3-1.9,11-5c0.6-0.7,1.2-1.5,1.7-2.3c2-2.5,4.2-4.8,6.7-6.8c6.8-5.4,15.5-8.6,24.8-8.6c10.6,0,20.2,4.1,27.4,10.9\r\n\t\tc1.7,1.6,6.7,4.5,13.2,5.1c4.5,0.4,6.1,0.3,8.2,0c10.3-1.3,14.4-4.7,16.4-6.6c5.8-5.8,13.8-9.4,22.6-9.4c17.6,0,32,14.4,32,32\r\n\t\tC384,99.2,383.5,102.3,382.6,105.2z M448,320c0,17.7-14.3,32-32,32h-32V192h32c17.7,0,32,14.3,32,32V320z"},"children":[]}]},{"name":"circle","attribs":{"cx":"168.2","cy":"168.2","r":"8"},"children":[{"name":"circle","attribs":{"cx":"168.2","cy":"168.2","r":"8"},"children":[]}]},{"name":"circle","attribs":{"cx":"328.2","cy":"168.2","r":"8"},"children":[{"name":"circle","attribs":{"cx":"328.2","cy":"168.2","r":"8"},"children":[]}]}]}]};exports.beer=beer;var bluetooth={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M140,143.6c-15.9,15.9-11.7,17.3-10.6,18.4c1.1,1.1,89.8,85.6,89.8,85.6s3.9,3.4,3.9,8.4h0c0,5-3.9,8.4-3.9,8.4\r\n\t\ts-88.7,84.5-89.8,85.6c-1.1,1.1-5.3,2.5,10.6,18.4c15.9,15.9,18.4,12.2,19.2,11.4l67.4-64.3c0.1-0.1,0.2-0.2,0.3-0.3\r\n\t\tc0.1-0.1,0.3-0.2,0.4-0.3c2.3-1.9,9.8-10.6,9.8-3.2c0,7.3,0,151.8,0,156.4v0.1v1.7c0,5.5,5.2,10.1,11.6,10.1c3.5,0,6.7-1.3,8.9-3.5\r\n\t\tl0,0c0,0,118.2-112.8,122.8-117.2c4.6-4.4,5-10.7,1-14.7l-83.9-80.3c0,0-4.4-4.3-4.4-8.3s4.4-8.3,4.4-8.3l83.9-80.3\r\n\t\tc4-4,3.6-10.4-1-14.7c-4.6-4.4-122.8-117.2-122.8-117.2l0,0c-2.1-2.1-5.3-3.5-8.8-3.5c-6.4,0-11.6,4.6-11.6,10.1v1.7V44\r\n\t\tc0,4.6,0,149.1,0,156.4c0,7.4-7.5-1.3-9.8-3.2c-0.1-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.2-0.2-0.3-0.3l-67.4-64.3\r\n\t\tC158.3,131.4,155.9,127.7,140,143.6z M280,119.9c0-6.6,7.5,2.3,9.8,4.4l30.5,29.2c2.1,2,2.9,4.7,2.9,7.2c0,2.5-1,5.6-2.8,7.3\r\n\t\tc-1.8,1.7-30.8,29.5-30.8,29.5c-2.3,1.8-9.6,9.8-9.6,1.7C280,199.2,280,126.5,280,119.9z M280,312.8c0-8.2,7.2-0.2,9.6,1.7\r\n\t\tc0,0,29.1,27.8,30.9,29.5c1.8,1.7,2.8,4.9,2.8,7.3s-0.8,5.2-2.9,7.2l-30.5,29.2c-2.3,2.1-9.8,11-9.8,4.4\r\n\t\tC280,385.5,280,312.8,280,312.8z"},"children":[{"name":"path","attribs":{"d":"M140,143.6c-15.9,15.9-11.7,17.3-10.6,18.4c1.1,1.1,89.8,85.6,89.8,85.6s3.9,3.4,3.9,8.4h0c0,5-3.9,8.4-3.9,8.4\r\n\t\ts-88.7,84.5-89.8,85.6c-1.1,1.1-5.3,2.5,10.6,18.4c15.9,15.9,18.4,12.2,19.2,11.4l67.4-64.3c0.1-0.1,0.2-0.2,0.3-0.3\r\n\t\tc0.1-0.1,0.3-0.2,0.4-0.3c2.3-1.9,9.8-10.6,9.8-3.2c0,7.3,0,151.8,0,156.4v0.1v1.7c0,5.5,5.2,10.1,11.6,10.1c3.5,0,6.7-1.3,8.9-3.5\r\n\t\tl0,0c0,0,118.2-112.8,122.8-117.2c4.6-4.4,5-10.7,1-14.7l-83.9-80.3c0,0-4.4-4.3-4.4-8.3s4.4-8.3,4.4-8.3l83.9-80.3\r\n\t\tc4-4,3.6-10.4-1-14.7c-4.6-4.4-122.8-117.2-122.8-117.2l0,0c-2.1-2.1-5.3-3.5-8.8-3.5c-6.4,0-11.6,4.6-11.6,10.1v1.7V44\r\n\t\tc0,4.6,0,149.1,0,156.4c0,7.4-7.5-1.3-9.8-3.2c-0.1-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.2-0.2-0.3-0.3l-67.4-64.3\r\n\t\tC158.3,131.4,155.9,127.7,140,143.6z M280,119.9c0-6.6,7.5,2.3,9.8,4.4l30.5,29.2c2.1,2,2.9,4.7,2.9,7.2c0,2.5-1,5.6-2.8,7.3\r\n\t\tc-1.8,1.7-30.8,29.5-30.8,29.5c-2.3,1.8-9.6,9.8-9.6,1.7C280,199.2,280,126.5,280,119.9z M280,312.8c0-8.2,7.2-0.2,9.6,1.7\r\n\t\tc0,0,29.1,27.8,30.9,29.5c1.8,1.7,2.8,4.9,2.8,7.3s-0.8,5.2-2.9,7.2l-30.5,29.2c-2.3,2.1-9.8,11-9.8,4.4\r\n\t\tC280,385.5,280,312.8,280,312.8z"},"children":[]}]}]}]};exports.bluetooth=bluetooth;var bonfire={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M270.93,350.601C270.219,342.42,263.364,336,255,336c-7.635,0-14.01,5.352-15.605,12.506l-0.007-0.002l-15.612,92.502\r\n\t\tC223.273,443.258,223,445.597,223,448c0,17.673,14.327,32,32,32s32-14.327,32-32c0-2.899-0.393-5.705-1.115-8.377L270.93,350.601z"},"children":[{"name":"path","attribs":{"d":"M270.93,350.601C270.219,342.42,263.364,336,255,336c-7.635,0-14.01,5.352-15.605,12.506l-0.007-0.002l-15.612,92.502\r\n\t\tC223.273,443.258,223,445.597,223,448c0,17.673,14.327,32,32,32s32-14.327,32-32c0-2.899-0.393-5.705-1.115-8.377L270.93,350.601z"},"children":[]}]},{"name":"polygon","attribs":{"points":"305.904,355.046 305.903,355.044 305.9,355.046 \t"},"children":[{"name":"polygon","attribs":{"points":"305.904,355.046 305.903,355.044 305.9,355.046 \t"},"children":[]}]},{"name":"path","attribs":{"d":"M392.875,390.261c-1.718-1.407-3.3-2.881-5.138-3.94l-63.629-47.507c-5.775-3.796-11.997-3.689-16.527,0.85\r\n\t\tc-4.131,4.143-4.686,10.369-1.678,15.381l48.959,65.763c0.946,1.494,2.166,2.799,3.366,4.195c7.802,9.071,25.08,9.588,34.646-0.007\r\n\t\tC402.445,415.409,402.305,397.986,392.875,390.261z"},"children":[{"name":"path","attribs":{"d":"M392.875,390.261c-1.718-1.407-3.3-2.881-5.138-3.94l-63.629-47.507c-5.775-3.796-11.997-3.689-16.527,0.85\r\n\t\tc-4.131,4.143-4.686,10.369-1.678,15.381l48.959,65.763c0.946,1.494,2.166,2.799,3.366,4.195c7.802,9.071,25.08,9.588,34.646-0.007\r\n\t\tC402.445,415.409,402.305,397.986,392.875,390.261z"},"children":[]}]},{"name":"polygon","attribs":{"points":"372.511,335.018 372.509,335.018 372.509,335.02 \t"},"children":[{"name":"polygon","attribs":{"points":"372.511,335.018 372.509,335.018 372.509,335.02 \t"},"children":[]}]},{"name":"path","attribs":{"d":"M435.428,322.475l-59.521-2.284c-3.891-0.558-7.4,2.053-8.065,6.011c-0.604,3.611,1.347,7.138,4.668,8.816l0.013-0.039\r\n\t\tc0.041,0.019,0.062,0.006,0.105,0.025l57.717,17.756c8.289,1.93,17.656-2.343,17.656-11.648\r\n\t\tC448,329.328,444.917,323.667,435.428,322.475z"},"children":[{"name":"path","attribs":{"d":"M435.428,322.475l-59.521-2.284c-3.891-0.558-7.4,2.053-8.065,6.011c-0.604,3.611,1.347,7.138,4.668,8.816l0.013-0.039\r\n\t\tc0.041,0.019,0.062,0.006,0.105,0.025l57.717,17.756c8.289,1.93,17.656-2.343,17.656-11.648\r\n\t\tC448,329.328,444.917,323.667,435.428,322.475z"},"children":[]}]},{"name":"polygon","attribs":{"points":"139.222,335.02 139.222,335.018 139.22,335.018 \t"},"children":[{"name":"polygon","attribs":{"points":"139.222,335.02 139.222,335.018 139.22,335.018 \t"},"children":[]}]},{"name":"path","attribs":{"d":"M139.209,334.979l0.013,0.039c3.321-1.679,5.272-5.205,4.668-8.816c-0.665-3.958-4.175-6.568-8.065-6.011l-59.521,2.284\r\n\t\tC66.813,323.667,64,329.328,64,341.111c0,9.306,9.098,13.578,17.387,11.648l57.717-17.756\r\n\t\tC139.146,334.984,139.168,334.997,139.209,334.979z"},"children":[{"name":"path","attribs":{"d":"M139.209,334.979l0.013,0.039c3.321-1.679,5.272-5.205,4.668-8.816c-0.665-3.958-4.175-6.568-8.065-6.011l-59.521,2.284\r\n\t\tC66.813,323.667,64,329.328,64,341.111c0,9.306,9.098,13.578,17.387,11.648l57.717-17.756\r\n\t\tC139.146,334.984,139.168,334.997,139.209,334.979z"},"children":[]}]},{"name":"path","attribs":{"d":"M187.903,338.807l-63.597,47.431c-1.838,1.057-3.569,2.362-5.137,3.931c-9.563,9.567-9.566,25.088-0.004,34.65\r\n\t\tc9.561,9.571,25.055,9.578,34.618,0.007c1.3-1.299,2.405-2.694,3.352-4.185L206.097,355c3.007-5,2.452-11.213-1.677-15.346\r\n\t\tC199.893,335.126,192.712,334.762,187.903,338.807z"},"children":[{"name":"path","attribs":{"d":"M187.903,338.807l-63.597,47.431c-1.838,1.057-3.569,2.362-5.137,3.931c-9.563,9.567-9.566,25.088-0.004,34.65\r\n\t\tc9.561,9.571,25.055,9.578,34.618,0.007c1.3-1.299,2.405-2.694,3.352-4.185L206.097,355c3.007-5,2.452-11.213-1.677-15.346\r\n\t\tC199.893,335.126,192.712,334.762,187.903,338.807z"},"children":[]}]},{"name":"path","attribs":{"d":"M352,128c0-61-72.35-96-96-96c12.017,85.553-101.667,119.667-112,192s48,96,48,96\r\n\t\tc16.333-59.896,72.386-79.997,109.667-105.667C342.333,186.333,352,160.061,352,128z"},"children":[{"name":"path","attribs":{"d":"M352,128c0-61-72.35-96-96-96c12.017,85.553-101.667,119.667-112,192s48,96,48,96\r\n\t\tc16.333-59.896,72.386-79.997,109.667-105.667C342.333,186.333,352,160.061,352,128z"},"children":[]}]},{"name":"path","attribs":{"d":"M352,256c5.03-15.613,4.91-49,0-64c-8.999,18.5-26.287,34.3-47.186,48.689c-8.584,5.911-19.859,11.443-28.83,16.797\r\n\t\tc-18.714,11.165-34.984,21.848-47.329,36.4C240.001,311.25,256.973,320,272,320C307.999,320,336,305.662,352,256z"},"children":[{"name":"path","attribs":{"d":"M352,256c5.03-15.613,4.91-49,0-64c-8.999,18.5-26.287,34.3-47.186,48.689c-8.584,5.911-19.859,11.443-28.83,16.797\r\n\t\tc-18.714,11.165-34.984,21.848-47.329,36.4C240.001,311.25,256.973,320,272,320C307.999,320,336,305.662,352,256z"},"children":[]}]},{"name":"path","attribs":{"d":"M152.037,160c11.722-15.952,24.856-25.209,38.19-38.362c13.436-13.254,22.077-22.471,27.464-33.173\r\n\t\tC207.025,67.134,189.842,61.857,176,64c2.333,30.334-29.97,46.567-32,68.657C142.773,146,146.5,156,152.037,160z"},"children":[{"name":"path","attribs":{"d":"M152.037,160c11.722-15.952,24.856-25.209,38.19-38.362c13.436-13.254,22.077-22.471,27.464-33.173\r\n\t\tC207.025,67.134,189.842,61.857,176,64c2.333,30.334-29.97,46.567-32,68.657C142.773,146,146.5,156,152.037,160z"},"children":[]}]}]}]};exports.bonfire=bonfire;var bookmark={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M344,64H168c-4.4,0-8,3.6-8,8v56h192V72C352,67.6,348.4,64,344,64z"},"children":[{"name":"path","attribs":{"d":"M344,64H168c-4.4,0-8,3.6-8,8v56h192V72C352,67.6,348.4,64,344,64z"},"children":[]}]},{"name":"polygon","attribs":{"points":"160,448 256,352 352,448 352,144 160,144 \t"},"children":[{"name":"polygon","attribs":{"points":"160,448 256,352 352,448 352,144 160,144 \t"},"children":[]}]}]}]};exports.bookmark=bookmark;var bowtie={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M223.955,212.011c0,0,8.054-4.679,19.985-7.011c21.318-4.166,39.472-5.5,47.466,8.5c9.777,17.124,18.402,53.417,16.488,85.5\r\n\tc-1,16.75-4.622,22.125-4.622,22.125s-15.333,9.525-47.341,6.875c-34.725-2.875-39.971-15.004-39.971-15.004\r\n\ts4.497-11.305,7.995-42.499C227.452,239.303,223.955,212.011,223.955,212.011z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M183.984,285c12.546-3.323,23.03-7.189,27.659-8.985c0.693-4.707,1.28-9.718,1.694-15.015\r\n\t\tc0.271-3.461,0.465-6.754,0.602-9.896c-6.854-2.333-13.534-4.851-28.769-10.104c-38.66-13.333-57.146-17-57.146-17\r\n\t\ts14.24-2.5,42.219,3c19.986,3.929,34.392,9.5,43.947,14.333c0.771-15.999-2.477-32.583-2.477-32.583\r\n\t\tC189.729,168.5,119.53,112,84.368,112C57.888,112,32,180.5,32,256s23.03,144,51.51,144c33.356,0,116.463-80,116.463-80\r\n\t\ts5.738-12.578,9.879-33.572c-18.788,5.198-63.84,8.572-63.84,8.572S166.996,289.5,183.984,285z"},"children":[{"name":"path","attribs":{"d":"M183.984,285c12.546-3.323,23.03-7.189,27.659-8.985c0.693-4.707,1.28-9.718,1.694-15.015\r\n\t\tc0.271-3.461,0.465-6.754,0.602-9.896c-6.854-2.333-13.534-4.851-28.769-10.104c-38.66-13.333-57.146-17-57.146-17\r\n\t\ts14.24-2.5,42.219,3c19.986,3.929,34.392,9.5,43.947,14.333c0.771-15.999-2.477-32.583-2.477-32.583\r\n\t\tC189.729,168.5,119.53,112,84.368,112C57.888,112,32,180.5,32,256s23.03,144,51.51,144c33.356,0,116.463-80,116.463-80\r\n\t\ts5.738-12.578,9.879-33.572c-18.788,5.198-63.84,8.572-63.84,8.572S166.996,289.5,183.984,285z"},"children":[]}]},{"name":"path","attribs":{"d":"M427.632,112c-36.37,0-102.363,56.5-124.348,96.75l-0.761,1.375c0,0,1.389,2.527,1.873,3.375\r\n\t\tc3.424,5.996,6.704,14.348,9.442,24.041c8.115-2.805,23.599-8.164,37.523-13.041c19.985-7,34.975-9.5,34.975-9.5\r\n\t\ts-52.982,23.741-69.605,34.264c2.169,10.159,3.693,21.199,4.218,32.242c5.423,2.216,16.551,6.475,29.914,9.994\r\n\t\tc18.986,5,40.398,11.5,40.398,11.5s-54.202-5.27-70.114-12.522c-0.013,2.862-0.095,5.709-0.263,8.522\r\n\t\tc-0.997,16.719-4.608,22.104-4.622,22.124C323.883,331.667,391.262,400,428.49,400C456.97,400,480,331.5,480,256\r\n\t\tS454.112,112,427.632,112z"},"children":[{"name":"path","attribs":{"d":"M427.632,112c-36.37,0-102.363,56.5-124.348,96.75l-0.761,1.375c0,0,1.389,2.527,1.873,3.375\r\n\t\tc3.424,5.996,6.704,14.348,9.442,24.041c8.115-2.805,23.599-8.164,37.523-13.041c19.985-7,34.975-9.5,34.975-9.5\r\n\t\ts-52.982,23.741-69.605,34.264c2.169,10.159,3.693,21.199,4.218,32.242c5.423,2.216,16.551,6.475,29.914,9.994\r\n\t\tc18.986,5,40.398,11.5,40.398,11.5s-54.202-5.27-70.114-12.522c-0.013,2.862-0.095,5.709-0.263,8.522\r\n\t\tc-0.997,16.719-4.608,22.104-4.622,22.124C323.883,331.667,391.262,400,428.49,400C456.97,400,480,331.5,480,256\r\n\t\tS454.112,112,427.632,112z"},"children":[]}]}]}]};exports.bowtie=bowtie;var briefcase={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M272,272h-32v-8H32v176c0,4.4,3.3,8,7.8,8h432.5c4.4,0,7.7-3.6,7.7-8V264H272V272z"},"children":[{"name":"path","attribs":{"d":"M272,272h-32v-8H32v176c0,4.4,3.3,8,7.8,8h432.5c4.4,0,7.7-3.6,7.7-8V264H272V272z"},"children":[]}]},{"name":"path","attribs":{"d":"M472.2,144H352v-30.7C351,85.1,330.3,64,300.8,64h-89.6c-29.4,0-50.2,21.1-51.2,49.3V144H39.8c-4.4,0-7.8,3.6-7.8,8v96h208\r\n\t\tv-8h32v8h208v-96C480,147.6,476.7,144,472.2,144z M320,116.2c0,0.3,0,0.6,0,1V144H192v-26.8c0-0.4,0-0.7,0-1c0-0.3,0-0.6,0-1\r\n\t\tc0-9.7,8.6-19.2,18.8-19.2h90.4c10.1,0,18.8,9.4,18.8,19.2C320,115.6,320,115.9,320,116.2z"},"children":[{"name":"path","attribs":{"d":"M472.2,144H352v-30.7C351,85.1,330.3,64,300.8,64h-89.6c-29.4,0-50.2,21.1-51.2,49.3V144H39.8c-4.4,0-7.8,3.6-7.8,8v96h208\r\n\t\tv-8h32v8h208v-96C480,147.6,476.7,144,472.2,144z M320,116.2c0,0.3,0,0.6,0,1V144H192v-26.8c0-0.4,0-0.7,0-1c0-0.3,0-0.6,0-1\r\n\t\tc0-9.7,8.6-19.2,18.8-19.2h90.4c10.1,0,18.8,9.4,18.8,19.2C320,115.6,320,115.9,320,116.2z"},"children":[]}]}]}]};exports.briefcase=briefcase;var bug={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M374.64,127.327C345.365,88.512,303.062,64,256,64s-89.365,24.512-118.64,63.327c6.354,15.64,15.833,30,28.13,42.297\r\n\t\tc24.176,24.176,56.319,37.49,90.51,37.49s66.334-13.314,90.51-37.49C358.807,157.327,368.286,142.966,374.64,127.327z"},"children":[{"name":"path","attribs":{"d":"M374.64,127.327C345.365,88.512,303.062,64,256,64s-89.365,24.512-118.64,63.327c6.354,15.64,15.833,30,28.13,42.297\r\n\t\tc24.176,24.176,56.319,37.49,90.51,37.49s66.334-13.314,90.51-37.49C358.807,157.327,368.286,142.966,374.64,127.327z"},"children":[]}]},{"name":"path","attribs":{"d":"M126.836,142.824c-1.725,2.827-3.396,5.703-4.992,8.644c-2.926-1.84-5.319-3.74-7.745-5.773\r\n\t\tc-1.171-0.981-2.954-3.949-4.546-7.35c5.41-11.314,1.181-25.037-9.914-31.261c-11.561-6.484-26.188-2.372-32.674,9.189\r\n\t\tc-6.485,11.56-2.371,26.188,9.187,32.673c1.251,0.702,2.539,1.272,3.847,1.729c2.816,6.269,7.32,14.331,13.548,19.547\r\n\t\tc4.184,3.507,8.792,7.117,15.204,10.674c-7.195,20.259-11.576,42.303-12.545,65.427c-11.026,0.207-18.619,2.1-25.474,4.122\r\n\t\tc-4.16,1.227-8.192,3.395-11.823,5.852c-0.954-0.115-1.923-0.182-2.908-0.182c-13.255,0-24,10.745-24,24s10.745,24,24,24\r\n\t\tc12.93,0,23.467-10.227,23.976-23.032c5.046-1.482,9.888-2.659,17.095-2.774c3.167,33.015,13.304,63.483,28.613,89.224\r\n\t\tc-14.166,11.006-22.882,23.016-26.605,36.317c0,0-0.75,0.438-1.873,1.366c-0.982,0.794-1.932,1.65-2.804,2.619\r\n\t\tc-8.865,9.855-8.062,25.031,1.793,33.895c9.854,8.865,25.028,8.062,33.893-1.793c8.087-8.988,8.095-22.381,0.558-31.395\r\n\t\tc3.074-5.562,6.236-9.014,13.67-14.961C171.368,425.235,207.723,445.619,248,448V222.872\r\n\t\tC194.764,219.954,149.229,188.138,126.836,142.824z"},"children":[{"name":"path","attribs":{"d":"M126.836,142.824c-1.725,2.827-3.396,5.703-4.992,8.644c-2.926-1.84-5.319-3.74-7.745-5.773\r\n\t\tc-1.171-0.981-2.954-3.949-4.546-7.35c5.41-11.314,1.181-25.037-9.914-31.261c-11.561-6.484-26.188-2.372-32.674,9.189\r\n\t\tc-6.485,11.56-2.371,26.188,9.187,32.673c1.251,0.702,2.539,1.272,3.847,1.729c2.816,6.269,7.32,14.331,13.548,19.547\r\n\t\tc4.184,3.507,8.792,7.117,15.204,10.674c-7.195,20.259-11.576,42.303-12.545,65.427c-11.026,0.207-18.619,2.1-25.474,4.122\r\n\t\tc-4.16,1.227-8.192,3.395-11.823,5.852c-0.954-0.115-1.923-0.182-2.908-0.182c-13.255,0-24,10.745-24,24s10.745,24,24,24\r\n\t\tc12.93,0,23.467-10.227,23.976-23.032c5.046-1.482,9.888-2.659,17.095-2.774c3.167,33.015,13.304,63.483,28.613,89.224\r\n\t\tc-14.166,11.006-22.882,23.016-26.605,36.317c0,0-0.75,0.438-1.873,1.366c-0.982,0.794-1.932,1.65-2.804,2.619\r\n\t\tc-8.865,9.855-8.062,25.031,1.793,33.895c9.854,8.865,25.028,8.062,33.893-1.793c8.087-8.988,8.095-22.381,0.558-31.395\r\n\t\tc3.074-5.562,6.236-9.014,13.67-14.961C171.368,425.235,207.723,445.619,248,448V222.872\r\n\t\tC194.764,219.954,149.229,188.138,126.836,142.824z"},"children":[]}]},{"name":"path","attribs":{"d":"M456,256.114c-0.985,0-1.954,0.066-2.908,0.182c-3.631-2.457-7.663-4.625-11.823-5.852\r\n\t\tc-6.854-2.021-14.447-3.915-25.474-4.122c-0.969-23.125-5.35-45.168-12.545-65.427c6.412-3.557,11.021-7.167,15.204-10.674\r\n\t\tc6.228-5.216,10.731-13.278,13.548-19.547c1.308-0.458,2.596-1.028,3.847-1.729c11.558-6.485,15.672-21.114,9.187-32.673\r\n\t\tc-6.485-11.561-21.113-15.673-32.674-9.189c-11.095,6.225-15.324,19.947-9.914,31.261c-1.592,3.401-3.375,6.369-4.546,7.35\r\n\t\tc-2.426,2.033-4.819,3.933-7.745,5.773c-1.596-2.941-3.268-5.817-4.992-8.644c-22.393,45.314-67.928,77.13-121.164,80.048V448\r\n\t\tc40.277-2.381,76.632-22.765,103.686-54.42c7.434,5.947,10.596,9.399,13.67,14.961c-7.537,9.014-7.529,22.406,0.558,31.395\r\n\t\tc8.864,9.855,24.038,10.658,33.893,1.793c9.854-8.863,10.658-24.039,1.793-33.895c-0.872-0.969-1.821-1.825-2.804-2.619\r\n\t\tc-1.123-0.929-1.873-1.366-1.873-1.366c-3.724-13.302-12.439-25.312-26.605-36.317c15.31-25.74,25.446-56.209,28.613-89.224\r\n\t\tc7.207,0.115,12.049,1.292,17.095,2.774c0.509,12.806,11.046,23.032,23.976,23.032c13.255,0,24-10.745,24-24\r\n\t\tS469.255,256.114,456,256.114z"},"children":[{"name":"path","attribs":{"d":"M456,256.114c-0.985,0-1.954,0.066-2.908,0.182c-3.631-2.457-7.663-4.625-11.823-5.852\r\n\t\tc-6.854-2.021-14.447-3.915-25.474-4.122c-0.969-23.125-5.35-45.168-12.545-65.427c6.412-3.557,11.021-7.167,15.204-10.674\r\n\t\tc6.228-5.216,10.731-13.278,13.548-19.547c1.308-0.458,2.596-1.028,3.847-1.729c11.558-6.485,15.672-21.114,9.187-32.673\r\n\t\tc-6.485-11.561-21.113-15.673-32.674-9.189c-11.095,6.225-15.324,19.947-9.914,31.261c-1.592,3.401-3.375,6.369-4.546,7.35\r\n\t\tc-2.426,2.033-4.819,3.933-7.745,5.773c-1.596-2.941-3.268-5.817-4.992-8.644c-22.393,45.314-67.928,77.13-121.164,80.048V448\r\n\t\tc40.277-2.381,76.632-22.765,103.686-54.42c7.434,5.947,10.596,9.399,13.67,14.961c-7.537,9.014-7.529,22.406,0.558,31.395\r\n\t\tc8.864,9.855,24.038,10.658,33.893,1.793c9.854-8.863,10.658-24.039,1.793-33.895c-0.872-0.969-1.821-1.825-2.804-2.619\r\n\t\tc-1.123-0.929-1.873-1.366-1.873-1.366c-3.724-13.302-12.439-25.312-26.605-36.317c15.31-25.74,25.446-56.209,28.613-89.224\r\n\t\tc7.207,0.115,12.049,1.292,17.095,2.774c0.509,12.806,11.046,23.032,23.976,23.032c13.255,0,24-10.745,24-24\r\n\t\tS469.255,256.114,456,256.114z"},"children":[]}]}]}]};exports.bug=bug;var calculator={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M400,32H112c-8.8,0-16,7.2-16,16v416c0,8.8,7.2,16,16,16h288c8.8,0,16-7.2,16-16V48C416,39.2,408.8,32,400,32z M144,208h32\r\n\tv32h-32V208z M144,272h32v32h-32V272z M144,336h32v32h-32V336z M240,432h-96v-32h96V432z M240,368h-32v-32h32V368z M240,304h-32v-32\r\n\th32V304z M240,240h-32v-32h32V240z M304,432h-32v-32h32V432z M304,368h-32v-32h32V368z M304,304h-32v-32h32V304z M304,240h-32v-32\r\n\th32V240z M368,432h-32v-96h32V432z M368,304h-32v-32h32V304z M368,240h-32v-32h32V240z M368,160H144V80h224V160z"},"children":[]}]};exports.calculator=calculator;var calendar={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M144,128c17.7,0,32-14.3,32-32V64c0-17.7-14.3-32-32-32s-32,14.3-32,32v32C112,113.7,126.3,128,144,128z"},"children":[{"name":"path","attribs":{"d":"M144,128c17.7,0,32-14.3,32-32V64c0-17.7-14.3-32-32-32s-32,14.3-32,32v32C112,113.7,126.3,128,144,128z"},"children":[]}]},{"name":"path","attribs":{"d":"M368,128c17.7,0,32-14.3,32-32V64c0-17.7-14.3-32-32-32s-32,14.3-32,32v32C336,113.7,350.3,128,368,128z"},"children":[{"name":"path","attribs":{"d":"M368,128c17.7,0,32-14.3,32-32V64c0-17.7-14.3-32-32-32s-32,14.3-32,32v32C336,113.7,350.3,128,368,128z"},"children":[]}]},{"name":"path","attribs":{"d":"M472,64h-56v40.7c0,22.5-23.2,39.3-47.2,39.3S320,127.2,320,104.7V64H192v40.7c0,22.5-24,39.3-48,39.3s-48-16.8-48-39.3V64\r\n\t\tH40c-4.4,0-8,3.6-8,8v400c0,4.4,3.6,8,8,8h432c4.4,0,8-3.6,8-8V72C480,67.6,476.4,64,472,64z M432,432H80V176h352V432z"},"children":[{"name":"path","attribs":{"d":"M472,64h-56v40.7c0,22.5-23.2,39.3-47.2,39.3S320,127.2,320,104.7V64H192v40.7c0,22.5-24,39.3-48,39.3s-48-16.8-48-39.3V64\r\n\t\tH40c-4.4,0-8,3.6-8,8v400c0,4.4,3.6,8,8,8h432c4.4,0,8-3.6,8-8V72C480,67.6,476.4,64,472,64z M432,432H80V176h352V432z"},"children":[]}]}]}]};exports.calendar=calendar;var camera={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M430.4,147h-67.5l-40.4-40.8c0,0-0.2-0.2-0.3-0.2l-0.2-0.2v0c-6-6-14.1-9.8-23.3-9.8h-84c-9.8,0-18.5,4.2-24.6,10.9l0,0.1\r\n\t\tl-39.5,40H81.6C63,147,48,161.6,48,180.2v202.1c0,18.6,15,33.7,33.6,33.7h348.8c18.5,0,33.6-15.1,33.6-33.7V180.2\r\n\t\tC464,161.6,448.9,147,430.4,147z M256,365.5c-50.9,0-92.4-41.6-92.4-92.6c0-51.1,41.5-92.6,92.4-92.6c51,0,92.4,41.5,92.4,92.6\r\n\t\tC348.4,323.9,307,365.5,256,365.5z M424.1,200.5c-7.7,0-14-6.3-14-14.1s6.3-14.1,14-14.1c7.7,0,14,6.3,14,14.1\r\n\t\tS431.8,200.5,424.1,200.5z"},"children":[{"name":"path","attribs":{"d":"M430.4,147h-67.5l-40.4-40.8c0,0-0.2-0.2-0.3-0.2l-0.2-0.2v0c-6-6-14.1-9.8-23.3-9.8h-84c-9.8,0-18.5,4.2-24.6,10.9l0,0.1\r\n\t\tl-39.5,40H81.6C63,147,48,161.6,48,180.2v202.1c0,18.6,15,33.7,33.6,33.7h348.8c18.5,0,33.6-15.1,33.6-33.7V180.2\r\n\t\tC464,161.6,448.9,147,430.4,147z M256,365.5c-50.9,0-92.4-41.6-92.4-92.6c0-51.1,41.5-92.6,92.4-92.6c51,0,92.4,41.5,92.4,92.6\r\n\t\tC348.4,323.9,307,365.5,256,365.5z M424.1,200.5c-7.7,0-14-6.3-14-14.1s6.3-14.1,14-14.1c7.7,0,14,6.3,14,14.1\r\n\t\tS431.8,200.5,424.1,200.5z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,202.9c-38.6,0-69.8,31.3-69.8,70c0,38.6,31.2,70,69.8,70c38.5,0,69.8-31.3,69.8-70C325.8,234.2,294.5,202.9,256,202.9\r\n\t\tz"},"children":[{"name":"path","attribs":{"d":"M256,202.9c-38.6,0-69.8,31.3-69.8,70c0,38.6,31.2,70,69.8,70c38.5,0,69.8-31.3,69.8-70C325.8,234.2,294.5,202.9,256,202.9\r\n\t\tz"},"children":[]}]}]}]};exports.camera=camera;var card={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M452,96H60c-15.5,0-27.9,12.5-28,28l0,0v0.3v263.4v0.3l0,0c0.2,15.5,12.5,28,28,28h392c15.6,0,28-12.7,28-28.3v0V124.3v0\r\n\t\tC480,108.7,467.6,96,452,96z M77.1,128h357.7c6.9,0,12.1,5.1,13.1,12v20H64v-20.3C65,132.9,70.3,128,77.1,128z M434.9,384H77.1\r\n\t\tc-6.9,0-12.1-4.9-13.1-11.7V256h384v116C447,378.9,441.7,384,434.9,384z"},"children":[{"name":"path","attribs":{"d":"M452,96H60c-15.5,0-27.9,12.5-28,28l0,0v0.3v263.4v0.3l0,0c0.2,15.5,12.5,28,28,28h392c15.6,0,28-12.7,28-28.3v0V124.3v0\r\n\t\tC480,108.7,467.6,96,452,96z M77.1,128h357.7c6.9,0,12.1,5.1,13.1,12v20H64v-20.3C65,132.9,70.3,128,77.1,128z M434.9,384H77.1\r\n\t\tc-6.9,0-12.1-4.9-13.1-11.7V256h384v116C447,378.9,441.7,384,434.9,384z"},"children":[]}]},{"name":"rect","attribs":{"x":"96","y":"304","width":"192","height":"16"},"children":[{"name":"rect","attribs":{"x":"96","y":"304","width":"192","height":"16"},"children":[]}]},{"name":"rect","attribs":{"x":"96","y":"336","width":"96","height":"16"},"children":[{"name":"rect","attribs":{"x":"96","y":"336","width":"96","height":"16"},"children":[]}]},{"name":"rect","attribs":{"x":"352","y":"304","width":"64","height":"48"},"children":[{"name":"rect","attribs":{"x":"352","y":"304","width":"64","height":"48"},"children":[]}]}]}]};exports.card=card;var cash={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M0,96v256h512V96H0z M192.508,320H80.129c0-26.582-21.549-48.129-48.129-48.129V192c35.346,0,64-28.653,64-64h96.509\r\n\t\tC172.576,151.455,160,185.767,160,224S172.576,296.545,192.508,320z M298.089,261.248c-2.582,4.182-5.978,7.602-10.189,10.257\r\n\t\tc-4.214,2.655-9.004,4.607-14.375,5.835c-2.812,0.644-5.654,1.119-8.524,1.432V288h-18v-9.43c-2.768-0.357-5.461-0.863-8.072-1.541\r\n\t\tc-5.688-1.475-10.641-3.659-14.851-6.709c-4.214-3.047-7.584-6.803-10.11-11.573C211.548,254.186,210.24,248,210.04,243h19.735\r\n\t\tc0.096,3,0.828,6.532,2.201,9.184c1.473,2.853,3.526,4.883,6.16,6.7c2.572,1.78,5.532,3.082,8.863,3.919v-34.358\r\n\t\tc-2.436-0.601-5.016-1.245-7.758-1.938c-4.846-1.18-8.873-2.729-12.085-4.646c-3.214-1.918-5.766-4.057-7.661-6.417\r\n\t\tc-1.896-2.359-3.238-4.867-4.028-7.522c-0.791-2.656-1.186-5.358-1.186-8.113c0-5.31,1.186-9.905,3.556-13.791\r\n\t\tc2.368-3.883,5.502-7.104,9.398-9.662c3.895-2.556,8.319-4.448,13.27-5.679c2.154-0.534,4.319-0.945,6.494-1.248V160h18v9.499\r\n\t\tc2.46,0.353,4.856,0.838,7.18,1.473c5.215,1.427,9.796,3.563,13.744,6.414c3.95,2.854,7.083,6.364,9.4,10.542\r\n\t\tc2.109,3.811,3.258,8.072,3.445,13.072h-19.866c-0.753-6-3.175-10.326-7.274-12.923c-1.966-1.246-4.186-2.196-6.629-2.887v30.368\r\n\t\tc2.589,0.639,5.15,1.268,7.654,1.878c3.421,0.836,5.87,1.453,7.346,1.844c3.686,1.083,6.897,2.558,9.637,4.425\r\n\t\tc2.737,1.869,5.028,4.008,6.873,6.417c1.841,2.411,3.21,4.992,4.107,7.744c0.893,2.753,1.343,5.51,1.343,8.262\r\n\t\tC301.96,252.027,300.668,257.07,298.089,261.248z M480,271.871c-26,0-48,21.547-48,48.129H319.491\r\n\t\tC339.424,296.545,352,262.233,352,224s-12.576-72.545-32.51-96H416c0,35.347,28.653,64,64,64V271.871z"},"children":[{"name":"path","attribs":{"d":"M0,96v256h512V96H0z M192.508,320H80.129c0-26.582-21.549-48.129-48.129-48.129V192c35.346,0,64-28.653,64-64h96.509\r\n\t\tC172.576,151.455,160,185.767,160,224S172.576,296.545,192.508,320z M298.089,261.248c-2.582,4.182-5.978,7.602-10.189,10.257\r\n\t\tc-4.214,2.655-9.004,4.607-14.375,5.835c-2.812,0.644-5.654,1.119-8.524,1.432V288h-18v-9.43c-2.768-0.357-5.461-0.863-8.072-1.541\r\n\t\tc-5.688-1.475-10.641-3.659-14.851-6.709c-4.214-3.047-7.584-6.803-10.11-11.573C211.548,254.186,210.24,248,210.04,243h19.735\r\n\t\tc0.096,3,0.828,6.532,2.201,9.184c1.473,2.853,3.526,4.883,6.16,6.7c2.572,1.78,5.532,3.082,8.863,3.919v-34.358\r\n\t\tc-2.436-0.601-5.016-1.245-7.758-1.938c-4.846-1.18-8.873-2.729-12.085-4.646c-3.214-1.918-5.766-4.057-7.661-6.417\r\n\t\tc-1.896-2.359-3.238-4.867-4.028-7.522c-0.791-2.656-1.186-5.358-1.186-8.113c0-5.31,1.186-9.905,3.556-13.791\r\n\t\tc2.368-3.883,5.502-7.104,9.398-9.662c3.895-2.556,8.319-4.448,13.27-5.679c2.154-0.534,4.319-0.945,6.494-1.248V160h18v9.499\r\n\t\tc2.46,0.353,4.856,0.838,7.18,1.473c5.215,1.427,9.796,3.563,13.744,6.414c3.95,2.854,7.083,6.364,9.4,10.542\r\n\t\tc2.109,3.811,3.258,8.072,3.445,13.072h-19.866c-0.753-6-3.175-10.326-7.274-12.923c-1.966-1.246-4.186-2.196-6.629-2.887v30.368\r\n\t\tc2.589,0.639,5.15,1.268,7.654,1.878c3.421,0.836,5.87,1.453,7.346,1.844c3.686,1.083,6.897,2.558,9.637,4.425\r\n\t\tc2.737,1.869,5.028,4.008,6.873,6.417c1.841,2.411,3.21,4.992,4.107,7.744c0.893,2.753,1.343,5.51,1.343,8.262\r\n\t\tC301.96,252.027,300.668,257.07,298.089,261.248z M480,271.871c-26,0-48,21.547-48,48.129H319.491\r\n\t\tC339.424,296.545,352,262.233,352,224s-12.576-72.545-32.51-96H416c0,35.347,28.653,64,64,64V271.871z"},"children":[]}]},{"name":"circle","attribs":{"cx":"96","cy":"224","r":"32"},"children":[{"name":"circle","attribs":{"cx":"96","cy":"224","r":"32"},"children":[]}]},{"name":"circle","attribs":{"cx":"416","cy":"224","r":"32"},"children":[{"name":"circle","attribs":{"cx":"416","cy":"224","r":"32"},"children":[]}]},{"name":"path","attribs":{"d":"M272.893,235.21c-2.395-0.823-5.029-1.618-7.893-2.389v30.856c1.592-0.23,3.069-0.547,4.416-0.959\r\n\t\tc3.053-0.934,5.529-2.139,7.425-3.613s3.264-3.171,4.107-5.089c0.842-1.917,1.263-3.858,1.263-5.827\r\n\t\tc0-4.031-0.975-7.006-2.921-8.924C277.34,237.349,275.206,235.999,272.893,235.21z"},"children":[{"name":"path","attribs":{"d":"M272.893,235.21c-2.395-0.823-5.029-1.618-7.893-2.389v30.856c1.592-0.23,3.069-0.547,4.416-0.959\r\n\t\tc3.053-0.934,5.529-2.139,7.425-3.613s3.264-3.171,4.107-5.089c0.842-1.917,1.263-3.858,1.263-5.827\r\n\t\tc0-4.031-0.975-7.006-2.921-8.924C277.34,237.349,275.206,235.999,272.893,235.21z"},"children":[]}]},{"name":"path","attribs":{"d":"M236.004,190.959c-1.318,1.771-1.975,3.982-1.975,6.638c0,3.738,1.236,6.663,3.712,8.776\r\n\t\tc2.377,2.034,5.468,3.583,9.259,4.661v-26.356c-2.18,0.45-4.192,1.135-6.02,2.078C238.979,187.788,237.32,189.189,236.004,190.959z\r\n\t\t"},"children":[{"name":"path","attribs":{"d":"M236.004,190.959c-1.318,1.771-1.975,3.982-1.975,6.638c0,3.738,1.236,6.663,3.712,8.776\r\n\t\tc2.377,2.034,5.468,3.583,9.259,4.661v-26.356c-2.18,0.45-4.192,1.135-6.02,2.078C238.979,187.788,237.32,189.189,236.004,190.959z\r\n\t\t"},"children":[]}]},{"name":"rect","attribs":{"y":"384","width":"512","height":"32"},"children":[{"name":"rect","attribs":{"y":"384","width":"512","height":"32"},"children":[]}]}]}]};exports.cash=cash;var chatboxWorking={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M124.3,400H277c14.4,0,14.4,0.1,21.3,5.2S384,464,384,464v-64h3.7c42.2,0,76.3-31.8,76.3-71.4V119.7\r\n\tc0-39.6-34.2-71.7-76.3-71.7H124.3C82.2,48,48,80.1,48,119.7v208.9C48,368.2,82.2,400,124.3,400z M352.1,192c17.7,0,32,14.3,32,32\r\n\tc0,17.7-14.3,32-32,32c-17.7,0-32-14.3-32-32C320.1,206.3,334.4,192,352.1,192z M256.1,192c17.7,0,32,14.3,32,32\r\n\tc0,17.7-14.3,32-32,32c-17.7,0-32-14.3-32-32C224.1,206.3,238.4,192,256.1,192z M160.1,192c17.7,0,32,14.3,32,32\r\n\tc0,17.7-14.3,32-32,32c-17.7,0-32-14.3-32-32C128.1,206.3,142.4,192,160.1,192z"},"children":[]}]};exports.chatboxWorking=chatboxWorking;var chatbox={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M124.3,400H277c14.4,0,14.4,0.1,21.3,5.2S384,464,384,464v-64h3.7c42.2,0,76.3-31.8,76.3-71.4V119.7\r\n\tc0-39.6-34.2-71.7-76.3-71.7H124.3C82.2,48,48,80.1,48,119.7v208.9C48,368.2,82.2,400,124.3,400z"},"children":[]}]};exports.chatbox=chatbox;var chatboxes={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M294.1,365.5c-2.6-1.8-7.2-4.5-17.5-4.5H160.5c-34.7,0-64.5-26.1-64.5-59.2V201h-1.8C67.9,201,48,221.5,48,246.5v128.9\r\n\t\tc0,25,21.4,40.6,47.7,40.6H112v48l53.1-45c1.9-1.4,5.3-3,13.2-3h89.8c23,0,47.4-11.4,51.9-32L294.1,365.5z"},"children":[{"name":"path","attribs":{"d":"M294.1,365.5c-2.6-1.8-7.2-4.5-17.5-4.5H160.5c-34.7,0-64.5-26.1-64.5-59.2V201h-1.8C67.9,201,48,221.5,48,246.5v128.9\r\n\t\tc0,25,21.4,40.6,47.7,40.6H112v48l53.1-45c1.9-1.4,5.3-3,13.2-3h89.8c23,0,47.4-11.4,51.9-32L294.1,365.5z"},"children":[]}]},{"name":"path","attribs":{"d":"M401,48H183.7C149,48,128,74.8,128,107.8v69.7V276c0,33.1,28,60,62.7,60h101.1c10.4,0,15,2.3,17.5,4.2L384,400v-64h17\r\n\t\tc34.8,0,63-26.9,63-59.9V107.8C464,74.8,435.8,48,401,48z"},"children":[{"name":"path","attribs":{"d":"M401,48H183.7C149,48,128,74.8,128,107.8v69.7V276c0,33.1,28,60,62.7,60h101.1c10.4,0,15,2.3,17.5,4.2L384,400v-64h17\r\n\t\tc34.8,0,63-26.9,63-59.9V107.8C464,74.8,435.8,48,401,48z"},"children":[]}]}]}]};exports.chatboxes=chatboxes;var chatbubbleWorking={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,449.4c28.9,0,56.4-5.7,81.3-15.9c0.6-0.3,1.1-0.5,1.7-0.7c0.1,0,0.2,0,0.2-0.1c3.5-1.3,7.3-2,11.2-2\r\n\tc4.3,0,8.4,0.8,12.1,2.4l84,30.9l-22.1-88.4c0-5.3,1.5-10.3,3.9-14.6c0,0,0,0,0,0c0.8-1.3,1.6-2.6,2.5-3.7\r\n\tc20.9-31.3,33-68.5,33-108.4C464,137.9,370.9,48,256,48C141.1,48,48,137.9,48,248.7C48,359.6,141.1,449.4,256,449.4z M352,224\r\n\tc17.7,0,32,14.3,32,32c0,17.7-14.3,32-32,32c-17.7,0-32-14.3-32-32C320,238.3,334.3,224,352,224z M256,224c17.7,0,32,14.3,32,32\r\n\tc0,17.7-14.3,32-32,32c-17.7,0-32-14.3-32-32C224,238.3,238.3,224,256,224z M160,224c17.7,0,32,14.3,32,32c0,17.7-14.3,32-32,32\r\n\tc-17.7,0-32-14.3-32-32C128,238.3,142.3,224,160,224z"},"children":[]}]};exports.chatbubbleWorking=chatbubbleWorking;var chatbubble={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,449.4c28.9,0,56.4-5.7,81.3-15.9c0.6-0.3,1.1-0.5,1.7-0.7c0.1,0,0.2,0,0.2-0.1c3.5-1.3,7.3-2,11.2-2\r\n\tc4.3,0,8.4,0.8,12.1,2.4l84,30.9l-22.1-88.4c0-5.3,1.5-10.3,3.9-14.6c0,0,0,0,0,0c0.8-1.3,1.6-2.6,2.5-3.7\r\n\tc20.9-31.3,33-68.5,33-108.4C464,137.9,370.9,48,256,48C141.1,48,48,137.9,48,248.7C48,359.6,141.1,449.4,256,449.4z"},"children":[]}]};exports.chatbubble=chatbubble;var chatbubbles={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M73.3,391C73.3,391,73.3,391,73.3,391c1.8,3,2.8,6.4,2.8,10.2L64,464l56.2-22.1c2.7-1.1,5.6-1.7,8.7-1.7\r\n\t\tc2.8,0,5.5,0.5,8,1.4c0,0,0.1,0,0.2,0c0.4,0.2,0.8,0.3,1.2,0.5c17.8,7.3,37.4,11.4,57.9,11.4c46.3,0,87.6-20.5,114.8-52.6\r\n\t\tc-14.1,3.6-28.9,5.7-44.1,5.7c-95.9,0-173.7-75-173.7-167.5c0-11.8,1.3-23.2,3.7-34.3C66.9,230.9,48,268.6,48,310.6\r\n\t\tc0,28.4,8.6,55.2,23.5,77.5C72.1,388.9,72.7,390,73.3,391z"},"children":[{"name":"path","attribs":{"d":"M73.3,391C73.3,391,73.3,391,73.3,391c1.8,3,2.8,6.4,2.8,10.2L64,464l56.2-22.1c2.7-1.1,5.6-1.7,8.7-1.7\r\n\t\tc2.8,0,5.5,0.5,8,1.4c0,0,0.1,0,0.2,0c0.4,0.2,0.8,0.3,1.2,0.5c17.8,7.3,37.4,11.4,57.9,11.4c46.3,0,87.6-20.5,114.8-52.6\r\n\t\tc-14.1,3.6-28.9,5.7-44.1,5.7c-95.9,0-173.7-75-173.7-167.5c0-11.8,1.3-23.2,3.7-34.3C66.9,230.9,48,268.6,48,310.6\r\n\t\tc0,28.4,8.6,55.2,23.5,77.5C72.1,388.9,72.7,390,73.3,391z"},"children":[]}]},{"name":"path","attribs":{"d":"M290.3,48c-83.7,0-153.6,57.2-170,133.2c-2.4,11.1-3.7,22.5-3.7,34.3c0,92.5,77.7,167.5,173.7,167.5\r\n\t\tc15.3,0,30-2.1,44.1-5.7c8.1-2.1,16.1-4.5,23.8-7.6c0.5-0.2,0.9-0.4,1.4-0.6c0.1,0,0.2,0,0.2-0.1c2.9-1.1,6.1-1.7,9.3-1.7\r\n\t\tc3.6,0,7,0.7,10.1,2l68.6,25.8l-17-73.8c0-4.4,1.2-8.6,3.3-12.2c0,0,0,0,0,0c0.6-1.1,1.4-2.1,2.1-3.1\r\n\t\tc17.4-26.1,27.5-57.2,27.5-90.5C464,123,386.3,48,290.3,48z"},"children":[{"name":"path","attribs":{"d":"M290.3,48c-83.7,0-153.6,57.2-170,133.2c-2.4,11.1-3.7,22.5-3.7,34.3c0,92.5,77.7,167.5,173.7,167.5\r\n\t\tc15.3,0,30-2.1,44.1-5.7c8.1-2.1,16.1-4.5,23.8-7.6c0.5-0.2,0.9-0.4,1.4-0.6c0.1,0,0.2,0,0.2-0.1c2.9-1.1,6.1-1.7,9.3-1.7\r\n\t\tc3.6,0,7,0.7,10.1,2l68.6,25.8l-17-73.8c0-4.4,1.2-8.6,3.3-12.2c0,0,0,0,0,0c0.6-1.1,1.4-2.1,2.1-3.1\r\n\t\tc17.4-26.1,27.5-57.2,27.5-90.5C464,123,386.3,48,290.3,48z"},"children":[]}]}]}]};exports.chatbubbles=chatbubbles;var checkmarkCircled={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,32C132.3,32,32,132.3,32,256c0,123.7,100.3,224,224,224c123.7,0,224-100.3,224-224C480,132.3,379.7,32,256,32z\r\n\t\t M370.9,181.1L231.8,359.6c-1.1,1.1-2.9,3.5-5.1,3.5c-2.3,0-3.8-1.6-5.1-2.9c-1.3-1.3-78.9-75.9-78.9-75.9l-1.5-1.5\r\n\t\tc-0.6-0.9-1.1-2-1.1-3.2c0-1.2,0.5-2.3,1.1-3.2c0.4-0.4,0.7-0.7,1.1-1.2c7.7-8.1,23.3-24.5,24.3-25.5c1.3-1.3,2.4-3,4.8-3\r\n\t\tc2.5,0,4.1,2.1,5.3,3.3c1.2,1.2,45,43.3,45,43.3l111.3-143c1-0.8,2.2-1.4,3.5-1.4c1.3,0,2.5,0.5,3.5,1.3l30.6,24.1\r\n\t\tc0.8,1,1.3,2.2,1.3,3.5C372,179.1,371.5,180.2,370.9,181.1z"},"children":[{"name":"path","attribs":{"d":"M256,32C132.3,32,32,132.3,32,256c0,123.7,100.3,224,224,224c123.7,0,224-100.3,224-224C480,132.3,379.7,32,256,32z\r\n\t\t M370.9,181.1L231.8,359.6c-1.1,1.1-2.9,3.5-5.1,3.5c-2.3,0-3.8-1.6-5.1-2.9c-1.3-1.3-78.9-75.9-78.9-75.9l-1.5-1.5\r\n\t\tc-0.6-0.9-1.1-2-1.1-3.2c0-1.2,0.5-2.3,1.1-3.2c0.4-0.4,0.7-0.7,1.1-1.2c7.7-8.1,23.3-24.5,24.3-25.5c1.3-1.3,2.4-3,4.8-3\r\n\t\tc2.5,0,4.1,2.1,5.3,3.3c1.2,1.2,45,43.3,45,43.3l111.3-143c1-0.8,2.2-1.4,3.5-1.4c1.3,0,2.5,0.5,3.5,1.3l30.6,24.1\r\n\t\tc0.8,1,1.3,2.2,1.3,3.5C372,179.1,371.5,180.2,370.9,181.1z"},"children":[]}]}]}]};exports.checkmarkCircled=checkmarkCircled;var checkmarkRound={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M448,71.9c-17.3-13.4-41.5-9.3-54.1,9.1L214,344.2l-99.1-107.3c-14.6-16.6-39.1-17.4-54.7-1.8\r\n\tc-15.6,15.5-16.4,41.6-1.7,58.1c0,0,120.4,133.6,137.7,147c17.3,13.4,41.5,9.3,54.1-9.1l206.3-301.7\r\n\tC469.2,110.9,465.3,85.2,448,71.9z"},"children":[]}]};exports.checkmarkRound=checkmarkRound;var checkmark={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M461.6,109.6l-54.9-43.3c-1.7-1.4-3.8-2.4-6.2-2.4c-2.4,0-4.6,1-6.3,2.5L194.5,323c0,0-78.5-75.5-80.7-77.7\r\n\tc-2.2-2.2-5.1-5.9-9.5-5.9c-4.4,0-6.4,3.1-8.7,5.4c-1.7,1.8-29.7,31.2-43.5,45.8c-0.8,0.9-1.3,1.4-2,2.1c-1.2,1.7-2,3.6-2,5.7\r\n\tc0,2.2,0.8,4,2,5.7l2.8,2.6c0,0,139.3,133.8,141.6,136.1c2.3,2.3,5.1,5.2,9.2,5.2c4,0,7.3-4.3,9.2-6.2L462,121.8\r\n\tc1.2-1.7,2-3.6,2-5.8C464,113.5,463,111.4,461.6,109.6z"},"children":[]}]};exports.checkmark=checkmark;var chevronDown={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,298.3L256,298.3L256,298.3l174.2-167.2c4.3-4.2,11.4-4.1,15.8,0.2l30.6,29.9c4.4,4.3,4.5,11.3,0.2,15.5L264.1,380.9\r\n\tc-2.2,2.2-5.2,3.2-8.1,3c-3,0.1-5.9-0.9-8.1-3L35.2,176.7c-4.3-4.2-4.2-11.2,0.2-15.5L66,131.3c4.4-4.3,11.5-4.4,15.8-0.2L256,298.3\r\n\tz"},"children":[]}]};exports.chevronDown=chevronDown;var chevronLeft={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M213.7,256L213.7,256L213.7,256L380.9,81.9c4.2-4.3,4.1-11.4-0.2-15.8l-29.9-30.6c-4.3-4.4-11.3-4.5-15.5-0.2L131.1,247.9\r\n\tc-2.2,2.2-3.2,5.2-3,8.1c-0.1,3,0.9,5.9,3,8.1l204.2,212.7c4.2,4.3,11.2,4.2,15.5-0.2l29.9-30.6c4.3-4.4,4.4-11.5,0.2-15.8\r\n\tL213.7,256z"},"children":[]}]};exports.chevronLeft=chevronLeft;var chevronRight={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M298.3,256L298.3,256L298.3,256L131.1,81.9c-4.2-4.3-4.1-11.4,0.2-15.8l29.9-30.6c4.3-4.4,11.3-4.5,15.5-0.2l204.2,212.7\r\n\tc2.2,2.2,3.2,5.2,3,8.1c0.1,3-0.9,5.9-3,8.1L176.7,476.8c-4.2,4.3-11.2,4.2-15.5-0.2L131.3,446c-4.3-4.4-4.4-11.5-0.2-15.8\r\n\tL298.3,256z"},"children":[]}]};exports.chevronRight=chevronRight;var chevronUp={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,213.7L256,213.7L256,213.7l174.2,167.2c4.3,4.2,11.4,4.1,15.8-0.2l30.6-29.9c4.4-4.3,4.5-11.3,0.2-15.5L264.1,131.1\r\n\tc-2.2-2.2-5.2-3.2-8.1-3c-3-0.1-5.9,0.9-8.1,3L35.2,335.3c-4.3,4.2-4.2,11.2,0.2,15.5L66,380.7c4.4,4.3,11.5,4.4,15.8,0.2L256,213.7\r\n\tz"},"children":[]}]};exports.chevronUp=chevronUp;var clipboard={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M161,160.5h192c-1.688-20-9.729-35.45-27.921-40.356c-0.446-0.119-1.12-0.424-1.567-0.541\r\n\t\tc-12.004-3.424-21.012-7.653-21.012-20.781V78.227C302.5,52.691,281.976,32,256.49,32c-25.466,0-45.99,20.691-45.99,46.227v20.595\r\n\t\tc0,13.128-8.592,17.169-20.597,20.593c-0.447,0.117-0.8,0.61-1.266,0.729C170.446,125.05,162.927,140.5,161,160.5z M256.99,64.395\r\n\t\tc7.615,0,13.791,6.195,13.791,13.832c0,7.654-6.176,13.85-13.791,13.85c-7.614,0-13.772-6.195-13.772-13.85\r\n\t\tC243.218,70.59,249.376,64.395,256.99,64.395z"},"children":[{"name":"path","attribs":{"d":"M161,160.5h192c-1.688-20-9.729-35.45-27.921-40.356c-0.446-0.119-1.12-0.424-1.567-0.541\r\n\t\tc-12.004-3.424-21.012-7.653-21.012-20.781V78.227C302.5,52.691,281.976,32,256.49,32c-25.466,0-45.99,20.691-45.99,46.227v20.595\r\n\t\tc0,13.128-8.592,17.169-20.597,20.593c-0.447,0.117-0.8,0.61-1.266,0.729C170.446,125.05,162.927,140.5,161,160.5z M256.99,64.395\r\n\t\tc7.615,0,13.791,6.195,13.791,13.832c0,7.654-6.176,13.85-13.791,13.85c-7.614,0-13.772-6.195-13.772-13.85\r\n\t\tC243.218,70.59,249.376,64.395,256.99,64.395z"},"children":[]}]},{"name":"path","attribs":{"d":"M405.611,63.5H331.5v13.988c0,10.583,9.193,19.012,19.507,19.012h37.212c6.667,0,12.099,5.435,12.44,12.195l0.085,327.1\r\n\t\tc-0.322,6.432-5.303,11.546-11.514,12.017l-264.418,0.031c-6.211-0.471-11.149-5.695-11.472-12.126l-0.085-327.014\r\n\t\tc0.322-6.761,5.858-12.203,12.506-12.203h37.231c10.313,0,18.507-8.429,18.507-19.012V63.5h-73.131\r\n\t\tC93.25,63.5,80.5,76.058,80.5,91.575v360.38c0,15.502,12.75,28.545,27.869,28.545H256.99h148.621\r\n\t\tc15.138,0,26.889-13.043,26.889-28.545V91.575C432.5,76.058,420.749,63.5,405.611,63.5z"},"children":[{"name":"path","attribs":{"d":"M405.611,63.5H331.5v13.988c0,10.583,9.193,19.012,19.507,19.012h37.212c6.667,0,12.099,5.435,12.44,12.195l0.085,327.1\r\n\t\tc-0.322,6.432-5.303,11.546-11.514,12.017l-264.418,0.031c-6.211-0.471-11.149-5.695-11.472-12.126l-0.085-327.014\r\n\t\tc0.322-6.761,5.858-12.203,12.506-12.203h37.231c10.313,0,18.507-8.429,18.507-19.012V63.5h-73.131\r\n\t\tC93.25,63.5,80.5,76.058,80.5,91.575v360.38c0,15.502,12.75,28.545,27.869,28.545H256.99h148.621\r\n\t\tc15.138,0,26.889-13.043,26.889-28.545V91.575C432.5,76.058,420.749,63.5,405.611,63.5z"},"children":[]}]},{"name":"rect","attribs":{"x":"144.5","y":"192.5","width":"112","height":"32"},"children":[{"name":"rect","attribs":{"x":"144.5","y":"192.5","width":"112","height":"32"},"children":[]}]},{"name":"rect","attribs":{"x":"144.5","y":"384.5","width":"160","height":"32"},"children":[{"name":"rect","attribs":{"x":"144.5","y":"384.5","width":"160","height":"32"},"children":[]}]},{"name":"rect","attribs":{"x":"144.5","y":"320.5","width":"129","height":"32"},"children":[{"name":"rect","attribs":{"x":"144.5","y":"320.5","width":"129","height":"32"},"children":[]}]},{"name":"rect","attribs":{"x":"144.5","y":"256.5","width":"208","height":"32"},"children":[{"name":"rect","attribs":{"x":"144.5","y":"256.5","width":"208","height":"32"},"children":[]}]}]}]};exports.clipboard=clipboard;var clock={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M255.988,32C132.285,32,32,132.298,32,256c0,123.715,100.285,224,223.988,224C379.703,480,480,379.715,480,256\r\n\t\tC480,132.298,379.703,32,255.988,32z M391.761,391.765c-10.099,10.098-21.126,18.928-32.886,26.42l-15.946-27.62l-13.856,8\r\n\t\tl15.955,27.636c-24.838,13.03-52.372,20.455-81.027,21.624V416h-16v31.825c-28.656-1.166-56.191-8.59-81.03-21.62l15.958-27.641\r\n\t\tl-13.856-8l-15.949,27.625c-11.761-7.492-22.79-16.324-32.889-26.424c-10.099-10.099-18.93-21.127-26.422-32.889l27.624-15.949\r\n\t\tl-8-13.855L85.796,345.03c-13.03-24.839-20.454-52.374-21.621-81.03H96v-16H64.175c1.167-28.655,8.592-56.19,21.623-81.029\r\n\t\tl27.638,15.958l8-13.856l-27.623-15.948c7.492-11.76,16.322-22.787,26.419-32.885c10.1-10.101,21.129-18.933,32.89-26.426\r\n\t\tl15.949,27.624l13.856-8l-15.958-27.64C191.81,72.765,219.345,65.34,248,64.175V96h16V64.176\r\n\t\tc28.654,1.169,56.188,8.595,81.026,21.626l-15.954,27.634l13.856,8l15.945-27.618c11.76,7.492,22.787,16.323,32.886,26.421\r\n\t\tc10.1,10.099,18.931,21.126,26.424,32.887l-27.619,15.946l8,13.856l27.636-15.956c13.031,24.839,20.457,52.373,21.624,81.027H416\r\n\t\tv16h31.824c-1.167,28.655-8.592,56.189-21.622,81.028l-27.637-15.957l-8,13.856l27.621,15.947\r\n\t\tC410.693,370.637,401.861,381.665,391.761,391.765z"},"children":[{"name":"path","attribs":{"d":"M255.988,32C132.285,32,32,132.298,32,256c0,123.715,100.285,224,223.988,224C379.703,480,480,379.715,480,256\r\n\t\tC480,132.298,379.703,32,255.988,32z M391.761,391.765c-10.099,10.098-21.126,18.928-32.886,26.42l-15.946-27.62l-13.856,8\r\n\t\tl15.955,27.636c-24.838,13.03-52.372,20.455-81.027,21.624V416h-16v31.825c-28.656-1.166-56.191-8.59-81.03-21.62l15.958-27.641\r\n\t\tl-13.856-8l-15.949,27.625c-11.761-7.492-22.79-16.324-32.889-26.424c-10.099-10.099-18.93-21.127-26.422-32.889l27.624-15.949\r\n\t\tl-8-13.855L85.796,345.03c-13.03-24.839-20.454-52.374-21.621-81.03H96v-16H64.175c1.167-28.655,8.592-56.19,21.623-81.029\r\n\t\tl27.638,15.958l8-13.856l-27.623-15.948c7.492-11.76,16.322-22.787,26.419-32.885c10.1-10.101,21.129-18.933,32.89-26.426\r\n\t\tl15.949,27.624l13.856-8l-15.958-27.64C191.81,72.765,219.345,65.34,248,64.175V96h16V64.176\r\n\t\tc28.654,1.169,56.188,8.595,81.026,21.626l-15.954,27.634l13.856,8l15.945-27.618c11.76,7.492,22.787,16.323,32.886,26.421\r\n\t\tc10.1,10.099,18.931,21.126,26.424,32.887l-27.619,15.946l8,13.856l27.636-15.956c13.031,24.839,20.457,52.373,21.624,81.027H416\r\n\t\tv16h31.824c-1.167,28.655-8.592,56.189-21.622,81.028l-27.637-15.957l-8,13.856l27.621,15.947\r\n\t\tC410.693,370.637,401.861,381.665,391.761,391.765z"},"children":[]}]},{"name":"path","attribs":{"d":"M400,241H284.268c-2.818-5.299-7.083-9.708-12.268-12.708V160h-32v68.292c-9.562,5.534-16,15.866-16,27.708\r\n\t\tc0,17.673,14.327,32,32,32c11.425,0,21.444-5.992,27.106-15H400V241z"},"children":[{"name":"path","attribs":{"d":"M400,241H284.268c-2.818-5.299-7.083-9.708-12.268-12.708V160h-32v68.292c-9.562,5.534-16,15.866-16,27.708\r\n\t\tc0,17.673,14.327,32,32,32c11.425,0,21.444-5.992,27.106-15H400V241z"},"children":[]}]}]}]};exports.clock=clock;var closeCircled={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,33C132.3,33,32,133.3,32,257c0,123.7,100.3,224,224,224c123.7,0,224-100.3,224-224C480,133.3,379.7,33,256,33z\r\n\t\t M364.3,332.5c1.5,1.5,2.3,3.5,2.3,5.6c0,2.1-0.8,4.2-2.3,5.6l-21.6,21.7c-1.6,1.6-3.6,2.3-5.6,2.3c-2,0-4.1-0.8-5.6-2.3L256,289.8\r\n\t\tl-75.4,75.7c-1.5,1.6-3.6,2.3-5.6,2.3c-2,0-4.1-0.8-5.6-2.3l-21.6-21.7c-1.5-1.5-2.3-3.5-2.3-5.6c0-2.1,0.8-4.2,2.3-5.6l75.7-76\r\n\t\tl-75.9-75c-3.1-3.1-3.1-8.2,0-11.3l21.6-21.7c1.5-1.5,3.5-2.3,5.6-2.3c2.1,0,4.1,0.8,5.6,2.3l75.7,74.7l75.7-74.7\r\n\t\tc1.5-1.5,3.5-2.3,5.6-2.3c2.1,0,4.1,0.8,5.6,2.3l21.6,21.7c3.1,3.1,3.1,8.2,0,11.3l-75.9,75L364.3,332.5z"},"children":[{"name":"path","attribs":{"d":"M256,33C132.3,33,32,133.3,32,257c0,123.7,100.3,224,224,224c123.7,0,224-100.3,224-224C480,133.3,379.7,33,256,33z\r\n\t\t M364.3,332.5c1.5,1.5,2.3,3.5,2.3,5.6c0,2.1-0.8,4.2-2.3,5.6l-21.6,21.7c-1.6,1.6-3.6,2.3-5.6,2.3c-2,0-4.1-0.8-5.6-2.3L256,289.8\r\n\t\tl-75.4,75.7c-1.5,1.6-3.6,2.3-5.6,2.3c-2,0-4.1-0.8-5.6-2.3l-21.6-21.7c-1.5-1.5-2.3-3.5-2.3-5.6c0-2.1,0.8-4.2,2.3-5.6l75.7-76\r\n\t\tl-75.9-75c-3.1-3.1-3.1-8.2,0-11.3l21.6-21.7c1.5-1.5,3.5-2.3,5.6-2.3c2.1,0,4.1,0.8,5.6,2.3l75.7,74.7l75.7-74.7\r\n\t\tc1.5-1.5,3.5-2.3,5.6-2.3c2.1,0,4.1,0.8,5.6,2.3l21.6,21.7c3.1,3.1,3.1,8.2,0,11.3l-75.9,75L364.3,332.5z"},"children":[]}]}]}]};exports.closeCircled=closeCircled;var closeRound={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M437.5,386.6L306.9,256l130.6-130.6c14.1-14.1,14.1-36.8,0-50.9c-14.1-14.1-36.8-14.1-50.9,0L256,205.1L125.4,74.5\r\n\tc-14.1-14.1-36.8-14.1-50.9,0c-14.1,14.1-14.1,36.8,0,50.9L205.1,256L74.5,386.6c-14.1,14.1-14.1,36.8,0,50.9\r\n\tc14.1,14.1,36.8,14.1,50.9,0L256,306.9l130.6,130.6c14.1,14.1,36.8,14.1,50.9,0C451.5,423.4,451.5,400.6,437.5,386.6z"},"children":[]}]};exports.closeRound=closeRound;var close={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M443.6,387.1L312.4,255.4l131.5-130c5.4-5.4,5.4-14.2,0-19.6l-37.4-37.6c-2.6-2.6-6.1-4-9.8-4c-3.7,0-7.2,1.5-9.8,4\r\n\tL256,197.8L124.9,68.3c-2.6-2.6-6.1-4-9.8-4c-3.7,0-7.2,1.5-9.8,4L68,105.9c-5.4,5.4-5.4,14.2,0,19.6l131.5,130L68.4,387.1\r\n\tc-2.6,2.6-4.1,6.1-4.1,9.8c0,3.7,1.4,7.2,4.1,9.8l37.4,37.6c2.7,2.7,6.2,4.1,9.8,4.1c3.5,0,7.1-1.3,9.8-4.1L256,313.1l130.7,131.1\r\n\tc2.7,2.7,6.2,4.1,9.8,4.1c3.5,0,7.1-1.3,9.8-4.1l37.4-37.6c2.6-2.6,4.1-6.1,4.1-9.8C447.7,393.2,446.2,389.7,443.6,387.1z"},"children":[]}]};exports.close=close;var closedCaptioning={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M0,64v384h512V64H0z M464,255.825c0.045,26.724-1.547,47.143-3.797,80.223S441,392.5,401.097,396.168\r\n\t\t\tC361.201,399.835,305.369,400.12,256,400c-49,0.12-105.198-0.165-145.094-3.832c-39.903-3.668-56.855-27.04-59.105-60.12\r\n\t\t\ts-3.841-53.499-3.796-80.223c-0.045-26.725,0.095-44.124,3.798-80.224s23.01-56.267,59.106-59.934S201.842,112,248.704,112\r\n\t\t\tc2.431,0,5.296,0,7.296,0c2.437,0,4.871,0,7.302,0c46.862,0,101.698,0,137.795,3.667s55.403,23.833,59.106,59.934\r\n\t\t\tS464.045,229.1,464,255.825z"},"children":[{"name":"path","attribs":{"d":"M0,64v384h512V64H0z M464,255.825c0.045,26.724-1.547,47.143-3.797,80.223S441,392.5,401.097,396.168\r\n\t\t\tC361.201,399.835,305.369,400.12,256,400c-49,0.12-105.198-0.165-145.094-3.832c-39.903-3.668-56.855-27.04-59.105-60.12\r\n\t\t\ts-3.841-53.499-3.796-80.223c-0.045-26.725,0.095-44.124,3.798-80.224s23.01-56.267,59.106-59.934S201.842,112,248.704,112\r\n\t\t\tc2.431,0,5.296,0,7.296,0c2.437,0,4.871,0,7.302,0c46.862,0,101.698,0,137.795,3.667s55.403,23.833,59.106,59.934\r\n\t\t\tS464.045,229.1,464,255.825z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M372,283.846v0.766c0,18.639-11.581,29.566-27.003,29.566c-15.418,0-25.808-12.309-27.284-29.566\r\n\t\t\tc0,0-1.335-9.078-1.335-27.298s1.546-29.759,1.546-29.759c2.711-19.473,12.188-29.566,27.607-29.566\r\n\t\t\tc15.367,0,27.584,13.262,27.584,33.388c0.023,0.086,0.01,0.624,0.01,0.624h51.541c0-25-6.309-47.556-18.92-61.746\r\n\t\t\tc-12.617-14.183-31.403-21.273-56.369-21.273c-12.483,0-23.93,1.654-34.33,4.942c-10.404,3.295-19.376,9.062-26.916,17.291\r\n\t\t\tc-7.545,8.234-13.397,19.254-17.555,33.059c-4.162,13.809-6.242,31.224-6.242,52.247c0,20.52,1.688,37.684,5.072,51.488\r\n\t\t\tc3.377,13.811,8.388,24.83,15.018,33.059c6.632,8.234,14.953,13.935,24.967,17.1c10.01,3.163,21.779,4.748,35.304,4.748\r\n\t\t\tc28.604,0,49.089-7.258,61.443-21.318C418.486,327.537,424.666,307,424.666,280H372C372,280,372,282.876,372,283.846z"},"children":[{"name":"path","attribs":{"d":"M372,283.846v0.766c0,18.639-11.581,29.566-27.003,29.566c-15.418,0-25.808-12.309-27.284-29.566\r\n\t\t\tc0,0-1.335-9.078-1.335-27.298s1.546-29.759,1.546-29.759c2.711-19.473,12.188-29.566,27.607-29.566\r\n\t\t\tc15.367,0,27.584,13.262,27.584,33.388c0.023,0.086,0.01,0.624,0.01,0.624h51.541c0-25-6.309-47.556-18.92-61.746\r\n\t\t\tc-12.617-14.183-31.403-21.273-56.369-21.273c-12.483,0-23.93,1.654-34.33,4.942c-10.404,3.295-19.376,9.062-26.916,17.291\r\n\t\t\tc-7.545,8.234-13.397,19.254-17.555,33.059c-4.162,13.809-6.242,31.224-6.242,52.247c0,20.52,1.688,37.684,5.072,51.488\r\n\t\t\tc3.377,13.811,8.388,24.83,15.018,33.059c6.632,8.234,14.953,13.935,24.967,17.1c10.01,3.163,21.779,4.748,35.304,4.748\r\n\t\t\tc28.604,0,49.089-7.258,61.443-21.318C418.486,327.537,424.666,307,424.666,280H372C372,280,372,282.876,372,283.846z"},"children":[]}]},{"name":"path","attribs":{"d":"M195,283.846v0.766c0,18.639-11.581,29.566-27.003,29.566c-15.418,0-25.808-12.309-27.284-29.566\r\n\t\t\tc0,0-1.335-9.078-1.335-27.298s1.546-29.759,1.546-29.759c2.711-19.473,12.188-29.566,27.607-29.566\r\n\t\t\tc15.367,0,27.584,13.262,27.584,33.388c0.023,0.086,0.01,0.624,0.01,0.624h51.541c0-25-6.309-47.556-18.92-61.746\r\n\t\t\tc-12.617-14.183-31.403-21.273-56.369-21.273c-12.483,0-23.93,1.654-34.33,4.942c-10.404,3.295-19.376,9.062-26.916,17.291\r\n\t\t\tc-7.545,8.234-13.397,19.254-17.555,33.059c-4.162,13.809-6.242,31.224-6.242,52.247c0,20.52,1.688,37.684,5.072,51.488\r\n\t\t\tc3.377,13.811,8.388,24.83,15.018,33.059c6.632,8.234,14.953,13.935,24.967,17.1c10.01,3.163,21.779,4.748,35.304,4.748\r\n\t\t\tc28.604,0,49.089-7.258,61.443-21.318C241.486,327.537,247.666,307,247.666,280H195C195,280,195,282.876,195,283.846z"},"children":[{"name":"path","attribs":{"d":"M195,283.846v0.766c0,18.639-11.581,29.566-27.003,29.566c-15.418,0-25.808-12.309-27.284-29.566\r\n\t\t\tc0,0-1.335-9.078-1.335-27.298s1.546-29.759,1.546-29.759c2.711-19.473,12.188-29.566,27.607-29.566\r\n\t\t\tc15.367,0,27.584,13.262,27.584,33.388c0.023,0.086,0.01,0.624,0.01,0.624h51.541c0-25-6.309-47.556-18.92-61.746\r\n\t\t\tc-12.617-14.183-31.403-21.273-56.369-21.273c-12.483,0-23.93,1.654-34.33,4.942c-10.404,3.295-19.376,9.062-26.916,17.291\r\n\t\t\tc-7.545,8.234-13.397,19.254-17.555,33.059c-4.162,13.809-6.242,31.224-6.242,52.247c0,20.52,1.688,37.684,5.072,51.488\r\n\t\t\tc3.377,13.811,8.388,24.83,15.018,33.059c6.632,8.234,14.953,13.935,24.967,17.1c10.01,3.163,21.779,4.748,35.304,4.748\r\n\t\t\tc28.604,0,49.089-7.258,61.443-21.318C241.486,327.537,247.666,307,247.666,280H195C195,280,195,282.876,195,283.846z"},"children":[]}]}]}]}]}]};exports.closedCaptioning=closedCaptioning;var cloud={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M398.1,233.2c0-1.2,0.2-2.4,0.2-3.6c0-65-51.8-117.6-115.7-117.6c-46.1,0-85.7,27.4-104.3,67c-8.1-4.1-17.2-6.5-26.8-6.5\r\n\tc-29.5,0-54.1,21.9-58.8,50.5C57.3,235.2,32,269.1,32,309c0,50.2,40.1,90.9,89.5,91h276.7l0,0c45.2-0.2,81.7-37.5,81.7-83.4\r\n\tC480,270.6,443.3,233.3,398.1,233.2z"},"children":[]}]};exports.cloud=cloud;var codeDownload={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M330.967,284.104c6.48-6.467,6.48-16.951,0-23.422c-6.48-6.467-17.342-6.467-23.823,0L272,295.432V176.58\r\n\t\t\t\tc0-9.151-6.839-16.56-15.999-16.56c-9.162,0-16.001,7.408-16.001,16.56v118.852l-35.005-34.75\r\n\t\t\t\tc-6.481-6.467-17.095-6.467-23.573,0c-6.482,6.471-6.539,16.955-0.057,23.422l63.07,63.023c0.02,0.02,0.028,0.037,0.05,0.057\r\n\t\t\t\tc0.725,0.716,1.513,1.367,2.368,1.945c0.102,0.067,0.2,0.134,0.302,0.2c0.322,0.206,0.651,0.403,0.99,0.587\r\n\t\t\t\tc0.117,0.064,0.231,0.133,0.35,0.193c0.421,0.218,0.849,0.423,1.292,0.605c0.002,0.001,0.004,0.001,0.006,0.002\r\n\t\t\t\tc0.405,0.167,0.817,0.308,1.233,0.442c0.112,0.037,0.222,0.085,0.335,0.118c0.151,0.047,0.307,0.074,0.461,0.115\r\n\t\t\t\tc1.424,0.385,2.872,0.588,4.315,0.588c1.442,0,2.89-0.203,4.312-0.588c0.153-0.041,0.312-0.068,0.464-0.115\r\n\t\t\t\tc0.113-0.033,0.224-0.081,0.335-0.118c0.416-0.135,0.829-0.275,1.233-0.442c0.002-0.001,0.004-0.001,0.007-0.002\r\n\t\t\t\tc0.441-0.183,0.87-0.387,1.289-0.604c0.122-0.064,0.24-0.133,0.36-0.198c0.332-0.185,0.658-0.376,0.975-0.579\r\n\t\t\t\tc0.109-0.069,0.217-0.14,0.323-0.212c0.408-0.274,0.806-0.562,1.184-0.872c0.004-0.002,0.007-0.004,0.011-0.006\r\n\t\t\t\tc0.406-0.332,0.791-0.684,1.162-1.051c0.024-0.022,0.051-0.043,0.074-0.066L330.967,284.104z"},"children":[{"name":"path","attribs":{"d":"M330.967,284.104c6.48-6.467,6.48-16.951,0-23.422c-6.48-6.467-17.342-6.467-23.823,0L272,295.432V176.58\r\n\t\t\t\tc0-9.151-6.839-16.56-15.999-16.56c-9.162,0-16.001,7.408-16.001,16.56v118.852l-35.005-34.75\r\n\t\t\t\tc-6.481-6.467-17.095-6.467-23.573,0c-6.482,6.471-6.539,16.955-0.057,23.422l63.07,63.023c0.02,0.02,0.028,0.037,0.05,0.057\r\n\t\t\t\tc0.725,0.716,1.513,1.367,2.368,1.945c0.102,0.067,0.2,0.134,0.302,0.2c0.322,0.206,0.651,0.403,0.99,0.587\r\n\t\t\t\tc0.117,0.064,0.231,0.133,0.35,0.193c0.421,0.218,0.849,0.423,1.292,0.605c0.002,0.001,0.004,0.001,0.006,0.002\r\n\t\t\t\tc0.405,0.167,0.817,0.308,1.233,0.442c0.112,0.037,0.222,0.085,0.335,0.118c0.151,0.047,0.307,0.074,0.461,0.115\r\n\t\t\t\tc1.424,0.385,2.872,0.588,4.315,0.588c1.442,0,2.89-0.203,4.312-0.588c0.153-0.041,0.312-0.068,0.464-0.115\r\n\t\t\t\tc0.113-0.033,0.224-0.081,0.335-0.118c0.416-0.135,0.829-0.275,1.233-0.442c0.002-0.001,0.004-0.001,0.007-0.002\r\n\t\t\t\tc0.441-0.183,0.87-0.387,1.289-0.604c0.122-0.064,0.24-0.133,0.36-0.198c0.332-0.185,0.658-0.376,0.975-0.579\r\n\t\t\t\tc0.109-0.069,0.217-0.14,0.323-0.212c0.408-0.274,0.806-0.562,1.184-0.872c0.004-0.002,0.007-0.004,0.011-0.006\r\n\t\t\t\tc0.406-0.332,0.791-0.684,1.162-1.051c0.024-0.022,0.051-0.043,0.074-0.066L330.967,284.104z"},"children":[]}]}]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M168,392c-6.143,0-12.285-2.344-16.971-7.029l-112-112c-9.373-9.373-9.373-24.569,0-33.941l112-112\r\n\t\t\tc9.373-9.372,24.568-9.372,33.941,0c9.371,9.372,9.371,24.568,0,33.941L89.941,256l95.029,95.029\r\n\t\t\tc9.371,9.372,9.371,24.568,0,33.941C180.283,389.656,174.143,392,168,392z"},"children":[{"name":"path","attribs":{"d":"M168,392c-6.143,0-12.285-2.344-16.971-7.029l-112-112c-9.373-9.373-9.373-24.569,0-33.941l112-112\r\n\t\t\tc9.373-9.372,24.568-9.372,33.941,0c9.371,9.372,9.371,24.568,0,33.941L89.941,256l95.029,95.029\r\n\t\t\tc9.371,9.372,9.371,24.568,0,33.941C180.283,389.656,174.143,392,168,392z"},"children":[]}]},{"name":"path","attribs":{"d":"M344,392c6.143,0,12.285-2.344,16.971-7.029l112-112c9.373-9.373,9.373-24.569,0-33.941l-112-112\r\n\t\t\tc-9.373-9.372-24.568-9.372-33.941,0c-9.371,9.372-9.371,24.568,0,33.941L422.059,256l-95.029,95.029\r\n\t\t\tc-9.371,9.372-9.371,24.568,0,33.941C331.717,389.656,337.857,392,344,392z"},"children":[{"name":"path","attribs":{"d":"M344,392c6.143,0,12.285-2.344,16.971-7.029l112-112c9.373-9.373,9.373-24.569,0-33.941l-112-112\r\n\t\t\tc-9.373-9.372-24.568-9.372-33.941,0c-9.371,9.372-9.371,24.568,0,33.941L422.059,256l-95.029,95.029\r\n\t\t\tc-9.371,9.372-9.371,24.568,0,33.941C331.717,389.656,337.857,392,344,392z"},"children":[]}]}]}]}]}]};exports.codeDownload=codeDownload;var codeWorking={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"cx":"184.166","cy":"256.166","r":"24"},"children":[{"name":"circle","attribs":{"cx":"184.166","cy":"256.166","r":"24"},"children":[]}]},{"name":"circle","attribs":{"cx":"256.166","cy":"256.166","r":"24"},"children":[{"name":"circle","attribs":{"cx":"256.166","cy":"256.166","r":"24"},"children":[]}]},{"name":"circle","attribs":{"cx":"328.166","cy":"256.166","r":"24"},"children":[{"name":"circle","attribs":{"cx":"328.166","cy":"256.166","r":"24"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M168,392c-6.143,0-12.285-2.344-16.971-7.029l-112-112c-9.373-9.373-9.373-24.569,0-33.941l112-112\r\n\t\t\tc9.373-9.372,24.568-9.372,33.941,0c9.371,9.372,9.371,24.568,0,33.941L89.941,256l95.029,95.029\r\n\t\t\tc9.371,9.372,9.371,24.568,0,33.941C180.283,389.656,174.143,392,168,392z"},"children":[{"name":"path","attribs":{"d":"M168,392c-6.143,0-12.285-2.344-16.971-7.029l-112-112c-9.373-9.373-9.373-24.569,0-33.941l112-112\r\n\t\t\tc9.373-9.372,24.568-9.372,33.941,0c9.371,9.372,9.371,24.568,0,33.941L89.941,256l95.029,95.029\r\n\t\t\tc9.371,9.372,9.371,24.568,0,33.941C180.283,389.656,174.143,392,168,392z"},"children":[]}]},{"name":"path","attribs":{"d":"M344,392c6.143,0,12.285-2.344,16.971-7.029l112-112c9.373-9.373,9.373-24.569,0-33.941l-112-112\r\n\t\t\tc-9.373-9.372-24.568-9.372-33.941,0c-9.371,9.372-9.371,24.568,0,33.941L422.059,256l-95.029,95.029\r\n\t\t\tc-9.371,9.372-9.371,24.568,0,33.941C331.717,389.656,337.857,392,344,392z"},"children":[{"name":"path","attribs":{"d":"M344,392c6.143,0,12.285-2.344,16.971-7.029l112-112c9.373-9.373,9.373-24.569,0-33.941l-112-112\r\n\t\t\tc-9.373-9.372-24.568-9.372-33.941,0c-9.371,9.372-9.371,24.568,0,33.941L422.059,256l-95.029,95.029\r\n\t\t\tc-9.371,9.372-9.371,24.568,0,33.941C331.717,389.656,337.857,392,344,392z"},"children":[]}]}]}]}]}]};exports.codeWorking=codeWorking;var code={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M168,392c-6.143,0-12.285-2.344-16.971-7.029l-112-112c-9.373-9.373-9.373-24.569,0-33.941l112-112\r\n\t\tc9.373-9.372,24.568-9.372,33.941,0c9.371,9.372,9.371,24.568,0,33.941L89.941,256l95.029,95.029\r\n\t\tc9.371,9.373,9.371,24.568,0,33.941C180.283,389.656,174.143,392,168,392z"},"children":[{"name":"path","attribs":{"d":"M168,392c-6.143,0-12.285-2.344-16.971-7.029l-112-112c-9.373-9.373-9.373-24.569,0-33.941l112-112\r\n\t\tc9.373-9.372,24.568-9.372,33.941,0c9.371,9.372,9.371,24.568,0,33.941L89.941,256l95.029,95.029\r\n\t\tc9.371,9.373,9.371,24.568,0,33.941C180.283,389.656,174.143,392,168,392z"},"children":[]}]},{"name":"path","attribs":{"d":"M344,392c6.143,0,12.285-2.344,16.971-7.029l112-112c9.373-9.373,9.373-24.569,0-33.941l-112-112\r\n\t\tc-9.373-9.372-24.568-9.372-33.941,0c-9.371,9.372-9.371,24.568,0,33.941L422.059,256l-95.029,95.029\r\n\t\tc-9.371,9.373-9.371,24.568,0,33.941C331.717,389.656,337.857,392,344,392z"},"children":[{"name":"path","attribs":{"d":"M344,392c6.143,0,12.285-2.344,16.971-7.029l112-112c9.373-9.373,9.373-24.569,0-33.941l-112-112\r\n\t\tc-9.373-9.372-24.568-9.372-33.941,0c-9.371,9.372-9.371,24.568,0,33.941L422.059,256l-95.029,95.029\r\n\t\tc-9.371,9.373-9.371,24.568,0,33.941C331.717,389.656,337.857,392,344,392z"},"children":[]}]}]}]};exports.code=code;var coffee={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M383.1,257.4c0.6-5.4,0.9-10,0.9-13.8c0-19.6-3.3-19.7-16-19.7h-75.5c7.3-12,11.5-24.4,11.5-37c0-37.9-57.3-56.4-57.3-88\r\n\tc0-11.7,5.1-21.3,9.3-34.9c-26.5,7-47.4,33.5-47.4,61.6c0,48.3,56.3,48.7,56.3,84.8c0,4.5-1.4,8.5-2.1,13.5h-55.9\r\n\tc0.8-3,1.3-6.2,1.3-9.3c0-22.8-39.1-33.9-39.1-52.8c0-7,1-12.8,3.2-21c-12.9,5.1-28.3,20-28.3,36.8c0,26.7,31.9,29.3,36.8,46.3H80\r\n\tc-12.7,0-16,0.1-16,19.7c0,19.6,7.7,61.3,28.3,111c20.6,49.7,44.4,71.6,61.2,86.2l0.1-0.2c5.1,4.6,11.8,7.3,19.2,7.3h102.4\r\n\tc7.4,0,14.1-2.7,19.2-7.3l0.1,0.2c9-7.8,20-17.8,31.4-32.9c4.7,2,9.8,3.7,15.4,5c8.4,2,16.8,3,24.8,3c24,0,45.6-9.2,60.8-25.8\r\n\tc13.4-14.6,21.1-34.4,21.1-54.2C448,297,420,264.5,383.1,257.4z M366.1,384.2c-8.6,0-15.6-1.2-22.1-4.2c4-8,7.9-15.9,11.7-25.1\r\n\tc10.1-24.4,17.1-47,21.6-65.8c22,4.3,38.7,23.8,38.7,47.1C416,358.9,398.8,384.2,366.1,384.2z"},"children":[]}]};exports.coffee=coffee;var compass={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,32c-39,0-75.6,10-107.5,27.4C136.9,42.9,117.7,32,96,32c-35.3,0-64,28.7-64,64c0,21.7,10.9,40.9,27.4,52.5\r\n\t\t\tC42,180.4,32,217,32,256c0,123.7,100.3,224,224,224c123.7,0,224-100.3,224-224C480,132.3,379.7,32,256,32z M64,96\r\n\t\t\tc0-17.7,14.3-32,32-32c10.5,0,19.8,5,25.6,12.8c-17,12.7-32.1,27.8-44.8,44.8C69,115.8,64,106.5,64,96z M391.8,391.8\r\n\t\t\tC355.5,428,307.3,448,256,448c-51.3,0-99.5-20-135.8-56.2C84,355.5,64,307.3,64,256c0-51.3,20-99.5,56.2-135.8\r\n\t\t\tC156.5,84,204.7,64,256,64c51.3,0,99.5,20,135.8,56.2C428,156.5,448,204.7,448,256C448,307.3,428,355.5,391.8,391.8z"},"children":[{"name":"path","attribs":{"d":"M256,32c-39,0-75.6,10-107.5,27.4C136.9,42.9,117.7,32,96,32c-35.3,0-64,28.7-64,64c0,21.7,10.9,40.9,27.4,52.5\r\n\t\t\tC42,180.4,32,217,32,256c0,123.7,100.3,224,224,224c123.7,0,224-100.3,224-224C480,132.3,379.7,32,256,32z M64,96\r\n\t\t\tc0-17.7,14.3-32,32-32c10.5,0,19.8,5,25.6,12.8c-17,12.7-32.1,27.8-44.8,44.8C69,115.8,64,106.5,64,96z M391.8,391.8\r\n\t\t\tC355.5,428,307.3,448,256,448c-51.3,0-99.5-20-135.8-56.2C84,355.5,64,307.3,64,256c0-51.3,20-99.5,56.2-135.8\r\n\t\t\tC156.5,84,204.7,64,256,64c51.3,0,99.5,20,135.8,56.2C428,156.5,448,204.7,448,256C448,307.3,428,355.5,391.8,391.8z"},"children":[]}]}]}]},{"name":"path","attribs":{"d":"M352,128c0,0-101.6,83.7-120,104s-72,152-72,152s102.4-82.3,120-104S352,128,352,128z"},"children":[{"name":"path","attribs":{"d":"M352,128c0,0-101.6,83.7-120,104s-72,152-72,152s102.4-82.3,120-104S352,128,352,128z"},"children":[]}]}]}]};exports.compass=compass;var compose={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M442.8,99.6l-30.4-30.4c-7-6.9-18.2-6.9-25.1,0L355.5,101l55.5,55.5l31.8-31.7C449.7,117.7,449.7,106.5,442.8,99.6z"},"children":[{"name":"path","attribs":{"d":"M442.8,99.6l-30.4-30.4c-7-6.9-18.2-6.9-25.1,0L355.5,101l55.5,55.5l31.8-31.7C449.7,117.7,449.7,106.5,442.8,99.6z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"346.1,110.5 174.1,288 160,352 224,337.9 400.6,164.9 \t\t"},"children":[{"name":"polygon","attribs":{"points":"346.1,110.5 174.1,288 160,352 224,337.9 400.6,164.9 \t\t"},"children":[]}]}]}]},{"name":"path","attribs":{"d":"M384,256v150c0,5.1-3.9,10.1-9.2,10.1s-269-0.1-269-0.1c-5.6,0-9.8-5.4-9.8-10s0-268,0-268c0-5,4.7-10,10.6-10H256l32-32\r\n\t\tH87.4c-13,0-23.4,10.3-23.4,23.3v305.3c0,12.9,10.5,23.4,23.4,23.4h305.3c12.9,0,23.3-10.5,23.3-23.4V224L384,256z"},"children":[{"name":"path","attribs":{"d":"M384,256v150c0,5.1-3.9,10.1-9.2,10.1s-269-0.1-269-0.1c-5.6,0-9.8-5.4-9.8-10s0-268,0-268c0-5,4.7-10,10.6-10H256l32-32\r\n\t\tH87.4c-13,0-23.4,10.3-23.4,23.3v305.3c0,12.9,10.5,23.4,23.4,23.4h305.3c12.9,0,23.3-10.5,23.3-23.4V224L384,256z"},"children":[]}]}]}]};exports.compose=compose;var connectionBars={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"80","y":"352","width":"64","height":"64"},"children":[{"name":"rect","attribs":{"x":"80","y":"352","width":"64","height":"64"},"children":[]}]},{"name":"rect","attribs":{"x":"176","y":"288","width":"64","height":"128"},"children":[{"name":"rect","attribs":{"x":"176","y":"288","width":"64","height":"128"},"children":[]}]},{"name":"rect","attribs":{"x":"272","y":"192","width":"64","height":"224"},"children":[{"name":"rect","attribs":{"x":"272","y":"192","width":"64","height":"224"},"children":[]}]},{"name":"rect","attribs":{"x":"368","y":"96","width":"64","height":"320"},"children":[{"name":"rect","attribs":{"x":"368","y":"96","width":"64","height":"320"},"children":[]}]}]}]};exports.connectionBars=connectionBars;var contrast={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,32C132.3,32,32,132.3,32,256c0,123.7,100.3,224,224,224c123.7,0,224-100.3,224-224C480,132.3,379.7,32,256,32z\r\n\t M391.8,391.8C355.5,428,307,448,256,448V64c51,0,99.5,20,135.8,56.2C428,156.5,448,204.7,448,256C448,307.3,428,355.5,391.8,391.8z\r\n\t"},"children":[]}]};exports.contrast=contrast;var crop={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"352","y":"432","width":"64","height":"48"},"children":[{"name":"rect","attribs":{"x":"352","y":"432","width":"64","height":"48"},"children":[]}]},{"name":"polygon","attribs":{"points":"416,352 416,96 176,96 176,160 352,160 352,352 160,352 160,32 96,32 96,96 32,96 32,160 96,160 96,416 480,416 \r\n\t\t480,352 \t"},"children":[{"name":"polygon","attribs":{"points":"416,352 416,96 176,96 176,160 352,160 352,352 160,352 160,32 96,32 96,96 32,96 32,160 96,160 96,416 480,416 \r\n\t\t480,352 \t"},"children":[]}]}]}]};exports.crop=crop;var cube={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M467.301,168.084c-1.805,0-3.516,0.329-5.07,0.962l-2.281,1.15l-171.475,88.938l-3.888,1.996c0,0-0.052,0.023-0.052,0.047\r\n\t\tc-7.56,4.668-12.535,12.506-12.535,21.425v185.854c0,6.382,5.649,11.544,12.69,11.544c2.178,0,4.251-0.513,6.065-1.404\r\n\t\tc0.155-0.095,0.363-0.188,0.519-0.282l174.731-92.694l0.259-0.141c8.241-4.504,13.735-12.742,13.735-22.105V179.582\r\n\t\tC480,173.223,474.299,168.084,467.301,168.084z"},"children":[{"name":"path","attribs":{"d":"M467.301,168.084c-1.805,0-3.516,0.329-5.07,0.962l-2.281,1.15l-171.475,88.938l-3.888,1.996c0,0-0.052,0.023-0.052,0.047\r\n\t\tc-7.56,4.668-12.535,12.506-12.535,21.425v185.854c0,6.382,5.649,11.544,12.69,11.544c2.178,0,4.251-0.513,6.065-1.404\r\n\t\tc0.155-0.095,0.363-0.188,0.519-0.282l174.731-92.694l0.259-0.141c8.241-4.504,13.735-12.742,13.735-22.105V179.582\r\n\t\tC480,173.223,474.299,168.084,467.301,168.084z"},"children":[]}]},{"name":"path","attribs":{"d":"M454.273,118.521l-181.7-81.731c0,0-10.659-4.79-16.577-4.79s-16.526,4.79-16.526,4.79L57.614,118.521\r\n\t\tc0,0-7.989,3.292-7.989,9.479c0,6.562,8.3,11.5,8.3,11.5l182.582,96.371l2.902,1.479c3.784,1.687,8.077,2.649,12.587,2.649\r\n\t\tc4.561,0,8.915-0.963,12.742-2.696l2.539-1.315l182.893-96.536c0,0,7.508-4.036,7.508-11.453\r\n\t\tC461.678,121.5,454.273,118.521,454.273,118.521z"},"children":[{"name":"path","attribs":{"d":"M454.273,118.521l-181.7-81.731c0,0-10.659-4.79-16.577-4.79s-16.526,4.79-16.526,4.79L57.614,118.521\r\n\t\tc0,0-7.989,3.292-7.989,9.479c0,6.562,8.3,11.5,8.3,11.5l182.582,96.371l2.902,1.479c3.784,1.687,8.077,2.649,12.587,2.649\r\n\t\tc4.561,0,8.915-0.963,12.742-2.696l2.539-1.315l182.893-96.536c0,0,7.508-4.036,7.508-11.453\r\n\t\tC461.678,121.5,454.273,118.521,454.273,118.521z"},"children":[]}]},{"name":"path","attribs":{"d":"M227.466,261.178l-3.992-2.043L52.042,170.197l-2.28-1.15c-1.495-0.634-3.258-0.962-5.071-0.962\r\n\t\tc-6.997,0-12.69,5.138-12.69,11.497v183.792c0,9.388,5.485,17.602,13.727,22.105l0.208,0.141l174.739,92.694l0,0\r\n\t\tc1.918,1.08,4.199,1.687,6.636,1.687c6.989,0,12.69-5.162,12.69-11.544V282.603C240,273.684,235.024,265.846,227.466,261.178z"},"children":[{"name":"path","attribs":{"d":"M227.466,261.178l-3.992-2.043L52.042,170.197l-2.28-1.15c-1.495-0.634-3.258-0.962-5.071-0.962\r\n\t\tc-6.997,0-12.69,5.138-12.69,11.497v183.792c0,9.388,5.485,17.602,13.727,22.105l0.208,0.141l174.739,92.694l0,0\r\n\t\tc1.918,1.08,4.199,1.687,6.636,1.687c6.989,0,12.69-5.162,12.69-11.544V282.603C240,273.684,235.024,265.846,227.466,261.178z"},"children":[]}]}]}]};exports.cube=cube;var disc={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,158.9c-53.7,0-97.2,43.5-97.2,97.2c0,53.7,43.5,97.1,97.2,97.1c53.7,0,97.2-43.5,97.2-97.1\r\n\t\tC353.2,202.4,309.7,158.9,256,158.9z M256,299.5c-24,0-43.5-19.5-43.5-43.5c0-24,19.5-43.5,43.5-43.5c24,0,43.5,19.5,43.5,43.5\r\n\t\tC299.5,280,280,299.5,256,299.5z"},"children":[{"name":"path","attribs":{"d":"M256,158.9c-53.7,0-97.2,43.5-97.2,97.2c0,53.7,43.5,97.1,97.2,97.1c53.7,0,97.2-43.5,97.2-97.1\r\n\t\tC353.2,202.4,309.7,158.9,256,158.9z M256,299.5c-24,0-43.5-19.5-43.5-43.5c0-24,19.5-43.5,43.5-43.5c24,0,43.5,19.5,43.5,43.5\r\n\t\tC299.5,280,280,299.5,256,299.5z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,32C132.3,32,32,132.3,32,256c0,123.7,100.3,224,224,224s224-100.3,224-224C480,132.3,379.7,32,256,32z M256,378.8\r\n\t\tc-67.8,0-122.8-55-122.8-122.8c0-67.8,55-122.8,122.8-122.8c67.8,0,122.8,55,122.8,122.8C378.8,323.8,323.8,378.8,256,378.8z"},"children":[{"name":"path","attribs":{"d":"M256,32C132.3,32,32,132.3,32,256c0,123.7,100.3,224,224,224s224-100.3,224-224C480,132.3,379.7,32,256,32z M256,378.8\r\n\t\tc-67.8,0-122.8-55-122.8-122.8c0-67.8,55-122.8,122.8-122.8c67.8,0,122.8,55,122.8,122.8C378.8,323.8,323.8,378.8,256,378.8z"},"children":[]}]}]}]};exports.disc=disc;var documentText={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M398.6,169.2c-0.9-2.2-2-4.3-3.5-6.1l-83.8-91.7c-1.9-2.1-4.2-3.6-6.7-4.9c-2.9-1.5-6.1-2.1-9.5-2.1H135.2\r\n\t\tc-12.4,0-22.7,10.6-22.7,23.9v335.2c0,13.4,10.3,24.9,22.7,24.9h243.1c12.4,0,22.2-11.5,22.2-24.9V179.4\r\n\t\tC400.5,175.8,400,172.3,398.6,169.2z M160.5,178.6c0-1.5,1.8-2.1,3.4-2.1h70.8c1.6,0,2.8,0.6,2.8,2.1v10.8c0,1.4-1.1,3.1-2.8,3.1\r\n\t\th-70.8c-1.6,0-3.4-1.7-3.4-3.1V178.6z M160.5,306.6c0-1.5,1.8-2.1,3.4-2.1h122.2c1.6,0,2.4,0.6,2.4,2.1v10.8c0,1.4-0.7,3.1-2.4,3.1\r\n\t\tH163.9c-1.6,0-3.4-1.7-3.4-3.1V306.6z M320.5,381.4c0,1.4-0.7,3.1-2.4,3.1H163.9c-1.6,0-3.4-1.7-3.4-3.1v-10.8\r\n\t\tc0-1.5,1.8-2.1,3.4-2.1h154.2c1.6,0,2.4,0.6,2.4,2.1V381.4z M352.5,253.4c0,1.4-0.7,3.1-2.4,3.1H163.9c-1.6,0-3.4-1.7-3.4-3.1\r\n\t\tv-10.8c0-1.5,1.8-2.1,3.4-2.1h186.2c1.6,0,2.4,0.6,2.4,2.1V253.4z M305.6,177.5c-5.6,0-11.1-5.2-11.1-11.3v-66l71.2,77.3H305.6z"},"children":[{"name":"path","attribs":{"d":"M398.6,169.2c-0.9-2.2-2-4.3-3.5-6.1l-83.8-91.7c-1.9-2.1-4.2-3.6-6.7-4.9c-2.9-1.5-6.1-2.1-9.5-2.1H135.2\r\n\t\tc-12.4,0-22.7,10.6-22.7,23.9v335.2c0,13.4,10.3,24.9,22.7,24.9h243.1c12.4,0,22.2-11.5,22.2-24.9V179.4\r\n\t\tC400.5,175.8,400,172.3,398.6,169.2z M160.5,178.6c0-1.5,1.8-2.1,3.4-2.1h70.8c1.6,0,2.8,0.6,2.8,2.1v10.8c0,1.4-1.1,3.1-2.8,3.1\r\n\t\th-70.8c-1.6,0-3.4-1.7-3.4-3.1V178.6z M160.5,306.6c0-1.5,1.8-2.1,3.4-2.1h122.2c1.6,0,2.4,0.6,2.4,2.1v10.8c0,1.4-0.7,3.1-2.4,3.1\r\n\t\tH163.9c-1.6,0-3.4-1.7-3.4-3.1V306.6z M320.5,381.4c0,1.4-0.7,3.1-2.4,3.1H163.9c-1.6,0-3.4-1.7-3.4-3.1v-10.8\r\n\t\tc0-1.5,1.8-2.1,3.4-2.1h154.2c1.6,0,2.4,0.6,2.4,2.1V381.4z M352.5,253.4c0,1.4-0.7,3.1-2.4,3.1H163.9c-1.6,0-3.4-1.7-3.4-3.1\r\n\t\tv-10.8c0-1.5,1.8-2.1,3.4-2.1h186.2c1.6,0,2.4,0.6,2.4,2.1V253.4z M305.6,177.5c-5.6,0-11.1-5.2-11.1-11.3v-66l71.2,77.3H305.6z"},"children":[]}]}]}]};exports.documentText=documentText;var documentIcon={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M399.3,168.9c-0.7-2.9-2-5-3.5-6.8l-83.7-91.7c-1.9-2.1-4.1-3.1-6.6-4.4c-2.9-1.5-6.1-1.6-9.4-1.6H136.2\r\n\tc-12.4,0-23.7,9.6-23.7,22.9v335.2c0,13.4,11.3,25.9,23.7,25.9h243.1c12.4,0,21.2-12.5,21.2-25.9V178.4\r\n\tC400.5,174.8,400.1,172.2,399.3,168.9z M305.5,111l58,63.5h-58V111z M144.5,416.5v-320h129v81.7c0,14.8,13.4,28.3,28.1,28.3h66.9\r\n\tv210H144.5z"},"children":[]}]};exports.documentIcon=documentIcon;var drag={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"y":"144","width":"512","height":"32"},"children":[{"name":"rect","attribs":{"y":"144","width":"512","height":"32"},"children":[]}]},{"name":"rect","attribs":{"y":"240","width":"512","height":"32"},"children":[{"name":"rect","attribs":{"y":"240","width":"512","height":"32"},"children":[]}]},{"name":"rect","attribs":{"y":"336","width":"512","height":"32"},"children":[{"name":"rect","attribs":{"y":"336","width":"512","height":"32"},"children":[]}]}]}]};exports.drag=drag;var earth={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M357.275,125.525c-2.209-3.986-9.498-11.837-13.977-13.325c-5.979-0.921-2.398,4.413-2.398,6.7\r\n\t\tc-1.543,1.157-3.941,2.454-5.102,4c-0.699,0.6,1.704,6.103,6.337,4.335s1.964,1.799,5.164,8.865s9.607,7.207,12.49,5.067\r\n\t\tC363.444,138.455,359.286,129.155,357.275,125.525z"},"children":[{"name":"path","attribs":{"d":"M357.275,125.525c-2.209-3.986-9.498-11.837-13.977-13.325c-5.979-0.921-2.398,4.413-2.398,6.7\r\n\t\tc-1.543,1.157-3.941,2.454-5.102,4c-0.699,0.6,1.704,6.103,6.337,4.335s1.964,1.799,5.164,8.865s9.607,7.207,12.49,5.067\r\n\t\tC363.444,138.455,359.286,129.155,357.275,125.525z"},"children":[]}]},{"name":"path","attribs":{"d":"M375.8,170.6c-0.001,0.006-0.004,0.011-0.005,0.017C375.795,170.629,375.797,170.629,375.8,170.6z"},"children":[{"name":"path","attribs":{"d":"M375.8,170.6c-0.001,0.006-0.004,0.011-0.005,0.017C375.795,170.629,375.797,170.629,375.8,170.6z"},"children":[]}]},{"name":"path","attribs":{"d":"M434.6,197.1C435,197.1,432.8,196.7,434.6,197.1L434.6,197.1z"},"children":[{"name":"path","attribs":{"d":"M434.6,197.1C435,197.1,432.8,196.7,434.6,197.1L434.6,197.1z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,32C132.3,32,32,132.3,32,256c0,123.701,100.3,224,224,224c123.701,0,224-100.299,224-224C480,132.3,379.701,32,256,32\r\n\t\tz M173.399,429.424c-5.515-3.133-9.374-7.56-10.961-15.929c-3.947-20.808-0.303-32.067,17.962-44.245\r\n\t\tc8.604-5.736,10.022-12.672,16.9-19.55c1.685-2.14,6.211-10.374,9.2-10.8c3.637-0.779,13.709-2.527,15.7-6.5\r\n\t\tc3.79-5.146,12.127-27.398,15.8-29.602c5.997-3.925,14.419-15.96,8.3-23.1c-7.021-8.643-16.799-8.766-25.9-13.301\r\n\t\tc-8.015-4.008-11.574-22.281-17.7-28.601c-11.912-12.136-29.999-19.199-45-26.7c-8.116-3.25-7.344-4.256-13.7,2.1\r\n\t\tc-8.162,8.162-20.093-2.067-21.3-10.5c-0.09-2.802-3.296-18.216-1.4-19.4c17.956-11.225-8.328-8.64-10.5-13.8\r\n\t\tc-5.355-14.993,13.008-26.86,25.4-28.1c13.885-1.738,16.784,21.895,22.1,19.9c2.556-1.276,2.566-12.394,2.9-14.8\r\n\t\tc1.267-8.029,3.588-9.273,11.4-12.175c9.098-3.379,16.063-7.617,25.7-9.225c11.006-3.195,20.317-1.533,28.8-8.6\r\n\t\tc3.888-2.915,6.704,1.58,10.4,2.4c7.999,1.599,9.7-11.1,9.7-15.9c-0.034-4.665,1.265-8.63-4.7-13.6\r\n\t\tc-7.806-6.069-19.029-0.869-25.3,5.4c-7.574,7.035-16.357,6.55-13.8-5.6c0.634-4.433,10.209-9.587,14-12\r\n\t\tc3.7-2.222,5.904,2.522,10.4,1.4c6.579-1.463,9.034,4.735,16.8,4.8c3.233-0.731,14.796-6.881,8.614-19.366\r\n\t\tC254.143,64.021,255.07,64,256,64c1.855,0,3.707,0.034,5.555,0.086c2.805,8.881-5.965,16.443-1.555,27.614\r\n\t\tc8.79,21.475,15.992,3.014,24.7-7c2.849-2.849,4.633-2.211,9.3-3.1c2.896-0.483,7.055-9.27,8.393-11.982\r\n\t\tc20.058,4.956,39.121,13.127,56.567,24.255c-7.447,0.792-9.348-1.396-9.234,7.377c0.042,3.317,0.297,13.319,5.274,14.15\r\n\t\tc8.277,0.975,6.781,6.832,14.551,7.85c7.443,0.976,2.816,7.553,5.851,14.05c3.393,10.227-19.806,13.302-24.302,14.8\r\n\t\tc-13.64,4.554,6.34,24.41,15.2,22.3c2.817-0.704,12.215-1.902,12.867-5.067c-0.011-0.323-1.836-11.012-0.867-12.233\r\n\t\tc1.533-1.934,5.123-2.946,10.776,0.255c13.374,7.573,20.146,25.7,35.897,29.295c2.146,0.489,5.86-0.15,8.494,2.033\r\n\t\tc2.231,3.015,7.92,8.416,1.131,8.416c-9.017-2.003-13.78,0.859-21.198-4.874c-7.733-5.977-12.543-10.891-22.75-11.076\r\n\t\tc-8.79-0.159-16.68-3.819-25.738-2.35c-5.05,0.819-10.038,2.811-14.912,4.3c-4.617,1.538-5.51,9.765-10.2,10.7\r\n\t\tc-19.467,4.581-15.261,23.169-18.773,37.913c-1.351,5.662-6.025,21.003-0.926,26.087c9.12,8.854,19.783,21.035,33.176,22.963\r\n\t\tc7.206,1.037,22.954-4.576,27.823,2.737c2.062,4.104,7.447-3.03,8.9,0.601c3.663,10.988-4.263,18.186-4.337,28.551\r\n\t\tc-0.11,15.203,9.178,20.57-3.263,34.148c-13.642,13.607-4.333,30.788-11.9,47c-4.042,8.337-4.808,19.894-10.872,23.777\r\n\t\tc-13.321,8.532-27.7,15.399-42.714,20.384c-26.627,8.838-55.155,11.672-83.017,8.456c-14.619-1.688-29.041-5.057-42.88-10.065\r\n\t\tc-3.769-1.363-7.28-2.505-10.472-3.704C178.143,431.619,175.759,430.55,173.399,429.424z M131.699,402.329\r\n\t\tc-0.468-0.397-0.935-0.796-1.399-1.198c-3.444-2.992-6.802-6.113-10.06-9.371c-3.388-3.388-6.634-6.881-9.734-10.471\r\n\t\tc-0.035-0.041-0.07-0.082-0.105-0.123c-0.637-0.738-1.257-1.486-1.882-2.234C56.834,316.471,49.259,225.004,92.6,155.1\r\n\t\tc6.078,6.078-4.101,18.024,7.5,26c5.124,3.606,10.021,2.159,9,8.8c-0.993,6.449,5.355,6.335,6.3,12\r\n\t\tc2.842,12.429,19.207,18.642,9.9,32.6c-9.118,12.625-16.992,26.729-10.1,42.8c2.254,5.86,7.919,11.858,12.222,16.244\r\n\t\tc7.813,7.966,7.377,3.188,7.377,13.256c-0.156,4.373,5.261,8.897,4.7,11.7c-1.001,8.011-2.904,15.93-3.9,23.9\r\n\t\tc-1.792,28.638-0.129,56.662,21.3,78.1c-7.969-4.806-15.636-10.249-22.968-16.29C133.183,403.591,132.44,402.961,131.699,402.329z"},"children":[{"name":"path","attribs":{"d":"M256,32C132.3,32,32,132.3,32,256c0,123.701,100.3,224,224,224c123.701,0,224-100.299,224-224C480,132.3,379.701,32,256,32\r\n\t\tz M173.399,429.424c-5.515-3.133-9.374-7.56-10.961-15.929c-3.947-20.808-0.303-32.067,17.962-44.245\r\n\t\tc8.604-5.736,10.022-12.672,16.9-19.55c1.685-2.14,6.211-10.374,9.2-10.8c3.637-0.779,13.709-2.527,15.7-6.5\r\n\t\tc3.79-5.146,12.127-27.398,15.8-29.602c5.997-3.925,14.419-15.96,8.3-23.1c-7.021-8.643-16.799-8.766-25.9-13.301\r\n\t\tc-8.015-4.008-11.574-22.281-17.7-28.601c-11.912-12.136-29.999-19.199-45-26.7c-8.116-3.25-7.344-4.256-13.7,2.1\r\n\t\tc-8.162,8.162-20.093-2.067-21.3-10.5c-0.09-2.802-3.296-18.216-1.4-19.4c17.956-11.225-8.328-8.64-10.5-13.8\r\n\t\tc-5.355-14.993,13.008-26.86,25.4-28.1c13.885-1.738,16.784,21.895,22.1,19.9c2.556-1.276,2.566-12.394,2.9-14.8\r\n\t\tc1.267-8.029,3.588-9.273,11.4-12.175c9.098-3.379,16.063-7.617,25.7-9.225c11.006-3.195,20.317-1.533,28.8-8.6\r\n\t\tc3.888-2.915,6.704,1.58,10.4,2.4c7.999,1.599,9.7-11.1,9.7-15.9c-0.034-4.665,1.265-8.63-4.7-13.6\r\n\t\tc-7.806-6.069-19.029-0.869-25.3,5.4c-7.574,7.035-16.357,6.55-13.8-5.6c0.634-4.433,10.209-9.587,14-12\r\n\t\tc3.7-2.222,5.904,2.522,10.4,1.4c6.579-1.463,9.034,4.735,16.8,4.8c3.233-0.731,14.796-6.881,8.614-19.366\r\n\t\tC254.143,64.021,255.07,64,256,64c1.855,0,3.707,0.034,5.555,0.086c2.805,8.881-5.965,16.443-1.555,27.614\r\n\t\tc8.79,21.475,15.992,3.014,24.7-7c2.849-2.849,4.633-2.211,9.3-3.1c2.896-0.483,7.055-9.27,8.393-11.982\r\n\t\tc20.058,4.956,39.121,13.127,56.567,24.255c-7.447,0.792-9.348-1.396-9.234,7.377c0.042,3.317,0.297,13.319,5.274,14.15\r\n\t\tc8.277,0.975,6.781,6.832,14.551,7.85c7.443,0.976,2.816,7.553,5.851,14.05c3.393,10.227-19.806,13.302-24.302,14.8\r\n\t\tc-13.64,4.554,6.34,24.41,15.2,22.3c2.817-0.704,12.215-1.902,12.867-5.067c-0.011-0.323-1.836-11.012-0.867-12.233\r\n\t\tc1.533-1.934,5.123-2.946,10.776,0.255c13.374,7.573,20.146,25.7,35.897,29.295c2.146,0.489,5.86-0.15,8.494,2.033\r\n\t\tc2.231,3.015,7.92,8.416,1.131,8.416c-9.017-2.003-13.78,0.859-21.198-4.874c-7.733-5.977-12.543-10.891-22.75-11.076\r\n\t\tc-8.79-0.159-16.68-3.819-25.738-2.35c-5.05,0.819-10.038,2.811-14.912,4.3c-4.617,1.538-5.51,9.765-10.2,10.7\r\n\t\tc-19.467,4.581-15.261,23.169-18.773,37.913c-1.351,5.662-6.025,21.003-0.926,26.087c9.12,8.854,19.783,21.035,33.176,22.963\r\n\t\tc7.206,1.037,22.954-4.576,27.823,2.737c2.062,4.104,7.447-3.03,8.9,0.601c3.663,10.988-4.263,18.186-4.337,28.551\r\n\t\tc-0.11,15.203,9.178,20.57-3.263,34.148c-13.642,13.607-4.333,30.788-11.9,47c-4.042,8.337-4.808,19.894-10.872,23.777\r\n\t\tc-13.321,8.532-27.7,15.399-42.714,20.384c-26.627,8.838-55.155,11.672-83.017,8.456c-14.619-1.688-29.041-5.057-42.88-10.065\r\n\t\tc-3.769-1.363-7.28-2.505-10.472-3.704C178.143,431.619,175.759,430.55,173.399,429.424z M131.699,402.329\r\n\t\tc-0.468-0.397-0.935-0.796-1.399-1.198c-3.444-2.992-6.802-6.113-10.06-9.371c-3.388-3.388-6.634-6.881-9.734-10.471\r\n\t\tc-0.035-0.041-0.07-0.082-0.105-0.123c-0.637-0.738-1.257-1.486-1.882-2.234C56.834,316.471,49.259,225.004,92.6,155.1\r\n\t\tc6.078,6.078-4.101,18.024,7.5,26c5.124,3.606,10.021,2.159,9,8.8c-0.993,6.449,5.355,6.335,6.3,12\r\n\t\tc2.842,12.429,19.207,18.642,9.9,32.6c-9.118,12.625-16.992,26.729-10.1,42.8c2.254,5.86,7.919,11.858,12.222,16.244\r\n\t\tc7.813,7.966,7.377,3.188,7.377,13.256c-0.156,4.373,5.261,8.897,4.7,11.7c-1.001,8.011-2.904,15.93-3.9,23.9\r\n\t\tc-1.792,28.638-0.129,56.662,21.3,78.1c-7.969-4.806-15.636-10.249-22.968-16.29C133.183,403.591,132.44,402.961,131.699,402.329z"},"children":[]}]}]}]};exports.earth=earth;var easel={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"80","y":"144","width":"352","height":"192"},"children":[{"name":"rect","attribs":{"x":"80","y":"144","width":"352","height":"192"},"children":[]}]},{"name":"path","attribs":{"d":"M464,96H48c-8.837,0-16,7.163-16,16v256c0,8.837,6.932,16,15.768,16H464c8.837,0,16-7.163,16-16V112\r\n\t\tC480,103.163,472.837,96,464,96z M448,352H64V128h384V352z"},"children":[{"name":"path","attribs":{"d":"M464,96H48c-8.837,0-16,7.163-16,16v256c0,8.837,6.932,16,15.768,16H464c8.837,0,16-7.163,16-16V112\r\n\t\tC480,103.163,472.837,96,464,96z M448,352H64V128h384V352z"},"children":[]}]},{"name":"polygon","attribs":{"points":"80,480 112,480 140.147,400 108.835,400 \t"},"children":[{"name":"polygon","attribs":{"points":"80,480 112,480 140.147,400 108.835,400 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"270.83,32 241.472,32 224.171,80 288.099,80 \t"},"children":[{"name":"polygon","attribs":{"points":"270.83,32 241.472,32 224.171,80 288.099,80 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"371.853,400 400,480 432,480 403.22,400 \t"},"children":[{"name":"polygon","attribs":{"points":"371.853,400 400,480 432,480 403.22,400 \t"},"children":[]}]},{"name":"rect","attribs":{"x":"240","y":"400","width":"32","height":"48"},"children":[{"name":"rect","attribs":{"x":"240","y":"400","width":"32","height":"48"},"children":[]}]}]}]};exports.easel=easel;var edit={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"178.846","y":"92.087","transform":"matrix(-0.7071 -0.7071 0.7071 -0.7071 224.3476 631.1498)","width":"128.085","height":"354.049"},"children":[{"name":"rect","attribs":{"x":"178.846","y":"92.087","transform":"matrix(-0.7071 -0.7071 0.7071 -0.7071 224.3476 631.1498)","width":"128.085","height":"354.049"},"children":[]}]},{"name":"path","attribs":{"d":"M471.723,88.393l-48.115-48.114c-11.723-11.724-31.558-10.896-44.304,1.85l-45.202,45.203l90.569,90.568l45.202-45.202\r\n\t\tC482.616,119.952,483.445,100.116,471.723,88.393z"},"children":[{"name":"path","attribs":{"d":"M471.723,88.393l-48.115-48.114c-11.723-11.724-31.558-10.896-44.304,1.85l-45.202,45.203l90.569,90.568l45.202-45.202\r\n\t\tC482.616,119.952,483.445,100.116,471.723,88.393z"},"children":[]}]},{"name":"polygon","attribs":{"points":"64.021,363.252 32,480 148.737,447.979 \t"},"children":[{"name":"polygon","attribs":{"points":"64.021,363.252 32,480 148.737,447.979 \t"},"children":[]}]}]}]};exports.edit=edit;var egg={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,32C192,32,96,165.2,96,288.9C96,412.6,160,480,256,480s160-67.4,160-191.1C416,165.2,320,32,256,32z"},"children":[]}]};exports.egg=egg;var eject={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M399,320L399,320c10,0,16.8-7.1,16.8-15.9c0-3.3-1.1-6.1-2.8-9L275.3,104.7c-4.6-5.3-11.5-8.7-19.3-8.7\r\n\t\tc-7.7,0-14.6,3.4-19.2,8.7l-138,190.8c-1.7,2.6-2.6,5.5-2.6,8.7c0,8.7,6.8,15.8,16.8,15.8v0H399z"},"children":[{"name":"path","attribs":{"d":"M399,320L399,320c10,0,16.8-7.1,16.8-15.9c0-3.3-1.1-6.1-2.8-9L275.3,104.7c-4.6-5.3-11.5-8.7-19.3-8.7\r\n\t\tc-7.7,0-14.6,3.4-19.2,8.7l-138,190.8c-1.7,2.6-2.6,5.5-2.6,8.7c0,8.7,6.8,15.8,16.8,15.8v0H399z"},"children":[]}]},{"name":"path","attribs":{"d":"M403.7,352H108.4c-6.8,0-12.4,5.4-12.4,12.2v39.6c0,6.7,5.5,12.2,12.4,12.2h295.3c6.8,0,12.3-5.5,12.3-12.2v-39.6\r\n\t\tC416,357.4,410.5,352,403.7,352z"},"children":[{"name":"path","attribs":{"d":"M403.7,352H108.4c-6.8,0-12.4,5.4-12.4,12.2v39.6c0,6.7,5.5,12.2,12.4,12.2h295.3c6.8,0,12.3-5.5,12.3-12.2v-39.6\r\n\t\tC416,357.4,410.5,352,403.7,352z"},"children":[]}]}]}]};exports.eject=eject;var emailUnread={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"cx":"432","cy":"160","r":"64"},"children":[{"name":"circle","attribs":{"cx":"432","cy":"160","r":"64"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M225,160H33.799c-11.1,0-13.898,3-11.299,10.5c1.5,4.4,8.4,8.1,12.5,10.2c11,5.8,163.799,89.1,169.5,92.1\r\n\t\t\tc5.699,3,11.5,4.4,20.5,4.4s14.799-1.4,20.5-4.4c3.79-1.995,72.625-39.497,121.559-66.107C357.594,193.551,352,177.433,352,160\r\n\t\t\tH225z"},"children":[{"name":"path","attribs":{"d":"M225,160H33.799c-11.1,0-13.898,3-11.299,10.5c1.5,4.4,8.4,8.1,12.5,10.2c11,5.8,163.799,89.1,169.5,92.1\r\n\t\t\tc5.699,3,11.5,4.4,20.5,4.4s14.799-1.4,20.5-4.4c3.79-1.995,72.625-39.497,121.559-66.107C357.594,193.551,352,177.433,352,160\r\n\t\t\tH225z"},"children":[]}]},{"name":"path","attribs":{"d":"M293.199,273.3l82.201,92.5c2,2,2.898,4.4,1.799,5.601c-1.199,1.1-3.799,0.5-5.9-1.4l-98.6-83.2\r\n\t\t\tc-14.9,9.601-25.4,16.2-27.199,17.2c-7.701,3.9-13.1,4.4-20.5,4.4s-12.801-0.5-20.5-4.4c-1.9-1-12.301-7.6-27.201-17.2l-98.6,83.2\r\n\t\t\tc-2,2-4.699,2.6-5.9,1.4C71.6,370.3,72.5,367.8,74.5,365.8l82.1-92.5C107.9,241.8,33.5,189.4,25.299,185.2\r\n\t\t\tC16.5,180.7,16,186,16,190.1c0,4.101,0,205,0,205C16,404.4,29.699,416,39.5,416H225h185.5c9.799,0,21.5-11.7,21.5-20.9\r\n\t\t\tc0,0,0-94.398,0-155.1c-21.726,0-41.416-8.673-55.832-22.729C350.167,235.173,318.36,257.025,293.199,273.3z"},"children":[{"name":"path","attribs":{"d":"M293.199,273.3l82.201,92.5c2,2,2.898,4.4,1.799,5.601c-1.199,1.1-3.799,0.5-5.9-1.4l-98.6-83.2\r\n\t\t\tc-14.9,9.601-25.4,16.2-27.199,17.2c-7.701,3.9-13.1,4.4-20.5,4.4s-12.801-0.5-20.5-4.4c-1.9-1-12.301-7.6-27.201-17.2l-98.6,83.2\r\n\t\t\tc-2,2-4.699,2.6-5.9,1.4C71.6,370.3,72.5,367.8,74.5,365.8l82.1-92.5C107.9,241.8,33.5,189.4,25.299,185.2\r\n\t\t\tC16.5,180.7,16,186,16,190.1c0,4.101,0,205,0,205C16,404.4,29.699,416,39.5,416H225h185.5c9.799,0,21.5-11.7,21.5-20.9\r\n\t\t\tc0,0,0-94.398,0-155.1c-21.726,0-41.416-8.673-55.832-22.729C350.167,235.173,318.36,257.025,293.199,273.3z"},"children":[]}]}]}]}]}]};exports.emailUnread=emailUnread;var email={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M67,148.7c11,5.8,163.8,89.1,169.5,92.1c5.7,3,11.5,4.4,20.5,4.4c9,0,14.8-1.4,20.5-4.4c5.7-3,158.5-86.3,169.5-92.1\r\n\t\tc4.1-2.1,11-5.9,12.5-10.2c2.6-7.6-0.2-10.5-11.3-10.5H257H65.8c-11.1,0-13.9,3-11.3,10.5C56,142.9,62.9,146.6,67,148.7z"},"children":[{"name":"path","attribs":{"d":"M67,148.7c11,5.8,163.8,89.1,169.5,92.1c5.7,3,11.5,4.4,20.5,4.4c9,0,14.8-1.4,20.5-4.4c5.7-3,158.5-86.3,169.5-92.1\r\n\t\tc4.1-2.1,11-5.9,12.5-10.2c2.6-7.6-0.2-10.5-11.3-10.5H257H65.8c-11.1,0-13.9,3-11.3,10.5C56,142.9,62.9,146.6,67,148.7z"},"children":[]}]},{"name":"path","attribs":{"d":"M455.7,153.2c-8.2,4.2-81.8,56.6-130.5,88.1l82.2,92.5c2,2,2.9,4.4,1.8,5.6c-1.2,1.1-3.8,0.5-5.9-1.4l-98.6-83.2\r\n\t\tc-14.9,9.6-25.4,16.2-27.2,17.2c-7.7,3.9-13.1,4.4-20.5,4.4c-7.4,0-12.8-0.5-20.5-4.4c-1.9-1-12.3-7.6-27.2-17.2l-98.6,83.2\r\n\t\tc-2,2-4.7,2.6-5.9,1.4c-1.2-1.1-0.3-3.6,1.7-5.6l82.1-92.5c-48.7-31.5-123.1-83.9-131.3-88.1c-8.8-4.5-9.3,0.8-9.3,4.9\r\n\t\tc0,4.1,0,205,0,205c0,9.3,13.7,20.9,23.5,20.9H257h185.5c9.8,0,21.5-11.7,21.5-20.9c0,0,0-201,0-205\r\n\t\tC464,153.9,464.6,148.7,455.7,153.2z"},"children":[{"name":"path","attribs":{"d":"M455.7,153.2c-8.2,4.2-81.8,56.6-130.5,88.1l82.2,92.5c2,2,2.9,4.4,1.8,5.6c-1.2,1.1-3.8,0.5-5.9-1.4l-98.6-83.2\r\n\t\tc-14.9,9.6-25.4,16.2-27.2,17.2c-7.7,3.9-13.1,4.4-20.5,4.4c-7.4,0-12.8-0.5-20.5-4.4c-1.9-1-12.3-7.6-27.2-17.2l-98.6,83.2\r\n\t\tc-2,2-4.7,2.6-5.9,1.4c-1.2-1.1-0.3-3.6,1.7-5.6l82.1-92.5c-48.7-31.5-123.1-83.9-131.3-88.1c-8.8-4.5-9.3,0.8-9.3,4.9\r\n\t\tc0,4.1,0,205,0,205c0,9.3,13.7,20.9,23.5,20.9H257h185.5c9.8,0,21.5-11.7,21.5-20.9c0,0,0-201,0-205\r\n\t\tC464,153.9,464.6,148.7,455.7,153.2z"},"children":[]}]}]}]};exports.email=email;var erlenmeyerFlaskBubbles={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M445.9,427.1L328,227.9V78c0-7.7-6.5-14-14.5-14c-8,0-14.5,6.2-14.5,14v153.6c0,1.8,0.6,3.6,1.3,5.3\r\n\t\tc-7.6-11.1-20.6-18.4-35.4-18.4c-23.5,0-42.5,18.3-42.5,41c0,16.8,10.5,31.5,25.4,37.5h-72l35-58.5c1.2-2.1,2.1-4.5,2.1-6.9v-30.4\r\n\t\tc4,3.2,10,5.1,16.1,5.1c15.3,0,27.5-11.9,27.5-26.6c0-14.7-12.2-26.6-27.5-26.6c-6.1,0-12.1,1.9-16.1,5.1V78c0-7.7-6.5-14-14.5-14\r\n\t\tc-8,0-14.5,6.2-14.5,14v149.9L66.1,427.1c-2.5,4.3-2.6,9.6,0,13.9c2.6,4.3,7.2,7,12.4,7H256h177.5c5.1,0,9.8-2.6,12.4-7\r\n\t\tC448.5,436.8,448.4,431.4,445.9,427.1z M282.2,297c14.9-6,25.4-20.8,25.4-37.5c0-5.7-1.2-11.2-3.4-16.1l31,53.6H282.2z"},"children":[{"name":"path","attribs":{"d":"M445.9,427.1L328,227.9V78c0-7.7-6.5-14-14.5-14c-8,0-14.5,6.2-14.5,14v153.6c0,1.8,0.6,3.6,1.3,5.3\r\n\t\tc-7.6-11.1-20.6-18.4-35.4-18.4c-23.5,0-42.5,18.3-42.5,41c0,16.8,10.5,31.5,25.4,37.5h-72l35-58.5c1.2-2.1,2.1-4.5,2.1-6.9v-30.4\r\n\t\tc4,3.2,10,5.1,16.1,5.1c15.3,0,27.5-11.9,27.5-26.6c0-14.7-12.2-26.6-27.5-26.6c-6.1,0-12.1,1.9-16.1,5.1V78c0-7.7-6.5-14-14.5-14\r\n\t\tc-8,0-14.5,6.2-14.5,14v149.9L66.1,427.1c-2.5,4.3-2.6,9.6,0,13.9c2.6,4.3,7.2,7,12.4,7H256h177.5c5.1,0,9.8-2.6,12.4-7\r\n\t\tC448.5,436.8,448.4,431.4,445.9,427.1z M282.2,297c14.9-6,25.4-20.8,25.4-37.5c0-5.7-1.2-11.2-3.4-16.1l31,53.6H282.2z"},"children":[]}]},{"name":"path","attribs":{"d":"M265.1,128.6c12,0,21.7-9.4,21.7-20.9c0-11.6-9.7-20.9-21.7-20.9c-12,0-21.7,9.4-21.7,20.9\r\n\t\tC243.3,119.2,253.1,128.6,265.1,128.6z"},"children":[{"name":"path","attribs":{"d":"M265.1,128.6c12,0,21.7-9.4,21.7-20.9c0-11.6-9.7-20.9-21.7-20.9c-12,0-21.7,9.4-21.7,20.9\r\n\t\tC243.3,119.2,253.1,128.6,265.1,128.6z"},"children":[]}]}]}]};exports.erlenmeyerFlaskBubbles=erlenmeyerFlaskBubbles;var erlenmeyerFlask={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M438.815,395.7L338.509,246.2c-12.8-20.3-19.009-44.4-19.009-70.2c0,0,0-73.5,0-93s12.592-33.25,15.009-42.083\r\n\t\tc2.296-8.392,0.512-8.417-15.188-8.417H192.526c-15.999,0-18.548,0.009-16.311,8.416C178.633,50,191.5,64.3,191.5,83.5\r\n\t\ts0,92.5,0,92.5c0,25.8-7.285,49.8-20.085,70.2l-49.279,76.5L73.035,395.6c-5.8,9-9.051,20.7-9.051,32.2\r\n\t\tc0,28,16.347,52.7,63.246,52.7h257.589c46.998,0,63.197-24.7,63.197-52.7C447.916,416.3,444.615,404.7,438.815,395.7z M409.218,441\r\n\t\tc-4.4,4.2-11.602,7.5-24.499,7.5h-257.59c-12.8,0-20.8-3.5-25.199-7.7c-2.7-2.6-6-7.05-6-13.35c0-5,1.4-10.125,3.9-14.125\r\n\t\tl99.039-150.392c15.699-25.199,24.632-55.231,24.632-86.932V64.5h64v111.4c0,31.199,7.761,61.3,23.859,87l100.523,150\r\n\t\tc2.499,4,3.968,9.25,3.968,14.25C415.85,433.55,411.918,438.4,409.218,441z"},"children":[{"name":"path","attribs":{"d":"M438.815,395.7L338.509,246.2c-12.8-20.3-19.009-44.4-19.009-70.2c0,0,0-73.5,0-93s12.592-33.25,15.009-42.083\r\n\t\tc2.296-8.392,0.512-8.417-15.188-8.417H192.526c-15.999,0-18.548,0.009-16.311,8.416C178.633,50,191.5,64.3,191.5,83.5\r\n\t\ts0,92.5,0,92.5c0,25.8-7.285,49.8-20.085,70.2l-49.279,76.5L73.035,395.6c-5.8,9-9.051,20.7-9.051,32.2\r\n\t\tc0,28,16.347,52.7,63.246,52.7h257.589c46.998,0,63.197-24.7,63.197-52.7C447.916,416.3,444.615,404.7,438.815,395.7z M409.218,441\r\n\t\tc-4.4,4.2-11.602,7.5-24.499,7.5h-257.59c-12.8,0-20.8-3.5-25.199-7.7c-2.7-2.6-6-7.05-6-13.35c0-5,1.4-10.125,3.9-14.125\r\n\t\tl99.039-150.392c15.699-25.199,24.632-55.231,24.632-86.932V64.5h64v111.4c0,31.199,7.761,61.3,23.859,87l100.523,150\r\n\t\tc2.499,4,3.968,9.25,3.968,14.25C415.85,433.55,411.918,438.4,409.218,441z"},"children":[]}]},{"name":"path","attribs":{"d":"M389.217,411.301c0.051,0.075,0.1,0.397,0,0.249L307.345,288.5H203.698l-81.069,123.151c-1.5,2.1-2.3,5.175-2.3,7.974\r\n\t\tc0,7.5,6.288,13.875,13.687,13.875h244c7.5,0,13.599-6.725,13.599-14.125C391.614,416.875,390.516,413.301,389.217,411.301z\r\n\t\t M302.021,341.7c-1.5-1.5-2.3-3.601-2.3-5.7s0.899-4.2,2.3-5.7c1.5-1.5,3.6-2.3,5.6-2.3c2.102,0,4.2,0.8,5.602,2.3\r\n\t\tc1.5,1.5,2.299,3.601,2.299,5.7s-0.899,4.2-2.299,5.7c-1.5,1.5-3.5,2.3-5.602,2.3C305.621,344,303.521,343.1,302.021,341.7z\r\n\t\t M348.92,400.7c-1.4,0.898-2.9,1.3-4.302,1.3c-2.499,0-5.099-1.3-6.598-3.6l-23.499-35.9c-2.4-3.7-1.4-8.7,2.299-11.1\r\n\t\tc1.4-0.9,2.9-1.301,4.4-1.301c2.6,0,5.1,1.301,6.5,3.601L351.22,389.6C353.618,393.299,352.618,398.299,348.92,400.7z"},"children":[{"name":"path","attribs":{"d":"M389.217,411.301c0.051,0.075,0.1,0.397,0,0.249L307.345,288.5H203.698l-81.069,123.151c-1.5,2.1-2.3,5.175-2.3,7.974\r\n\t\tc0,7.5,6.288,13.875,13.687,13.875h244c7.5,0,13.599-6.725,13.599-14.125C391.614,416.875,390.516,413.301,389.217,411.301z\r\n\t\t M302.021,341.7c-1.5-1.5-2.3-3.601-2.3-5.7s0.899-4.2,2.3-5.7c1.5-1.5,3.6-2.3,5.6-2.3c2.102,0,4.2,0.8,5.602,2.3\r\n\t\tc1.5,1.5,2.299,3.601,2.299,5.7s-0.899,4.2-2.299,5.7c-1.5,1.5-3.5,2.3-5.602,2.3C305.621,344,303.521,343.1,302.021,341.7z\r\n\t\t M348.92,400.7c-1.4,0.898-2.9,1.3-4.302,1.3c-2.499,0-5.099-1.3-6.598-3.6l-23.499-35.9c-2.4-3.7-1.4-8.7,2.299-11.1\r\n\t\tc1.4-0.9,2.9-1.301,4.4-1.301c2.6,0,5.1,1.301,6.5,3.601L351.22,389.6C353.618,393.299,352.618,398.299,348.92,400.7z"},"children":[]}]}]}]};exports.erlenmeyerFlask=erlenmeyerFlask;var eyeDisabled={"viewBox":"0 0 512 512","children":[{"name":"style","attribs":{"type":"text/css"},"children":[]},{"name":"path","attribs":{"class":"st0","d":"M376.4,158.3L448,86.6L425.4,64l-77.6,77.6C320,127.7,289.5,119,256,119c-81.9,0-145.7,52.2-224,137\r\n\tc34.8,37.4,66.8,72.7,103.3,98.1L64,425.4L86.6,448l76.9-76.9c27,13.7,57,21.9,92.5,21.9c99.9,0,173.4-81.8,224-135.5\r\n\tC452,223.4,417.6,185.7,376.4,158.3z M166.4,256c0-50.4,40.2-91.3,89.6-91.3c19.3,0,37.2,6.2,51.8,16.9l-50.7,50.7\r\n\tc-0.7-2.6-1.1-5.4-1.1-8.3c0-7.9,2.9-15.1,7.6-20.7c-2.5-0.4-5-0.6-7.6-0.6c-28.8,0-52.3,23.9-52.3,53.3c0,8.6,2,16.8,5.6,24\r\n\tL182,307.4C172.2,292.7,166.4,275,166.4,256z M256,347.3c-19.3,0-37.2-6.2-51.8-16.9l27.4-27.4c7.3,4,15.6,6.2,24.4,6.2\r\n\tc28.8,0,52.3-23.9,52.3-53.3c0-2.3-0.2-4.6-0.4-6.9c-5.5,4.3-12.3,6.9-19.8,6.9c-2.9,0-5.6-0.4-8.3-1.1l50.3-50.3\r\n\tc9.8,14.6,15.6,32.3,15.6,51.4C345.6,306.4,305.4,347.3,256,347.3z"},"children":[]}]};exports.eyeDisabled=eyeDisabled;var eye={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,128c-81.9,0-145.7,48.8-224,128c67.4,67.7,124,128,224,128c99.9,0,173.4-76.4,224-126.6\r\n\t\tC428.2,198.6,354.8,128,256,128z M256,347.3c-49.4,0-89.6-41-89.6-91.3c0-50.4,40.2-91.3,89.6-91.3s89.6,41,89.6,91.3\r\n\t\tC345.6,306.4,305.4,347.3,256,347.3z"},"children":[{"name":"path","attribs":{"d":"M256,128c-81.9,0-145.7,48.8-224,128c67.4,67.7,124,128,224,128c99.9,0,173.4-76.4,224-126.6\r\n\t\tC428.2,198.6,354.8,128,256,128z M256,347.3c-49.4,0-89.6-41-89.6-91.3c0-50.4,40.2-91.3,89.6-91.3s89.6,41,89.6,91.3\r\n\t\tC345.6,306.4,305.4,347.3,256,347.3z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,224c0-7.9,2.9-15.1,7.6-20.7c-2.5-0.4-5-0.6-7.6-0.6c-28.8,0-52.3,23.9-52.3,53.3c0,29.4,23.5,53.3,52.3,53.3\r\n\t\t\ts52.3-23.9,52.3-53.3c0-2.3-0.2-4.6-0.4-6.9c-5.5,4.3-12.3,6.9-19.8,6.9C270.3,256,256,241.7,256,224z"},"children":[{"name":"path","attribs":{"d":"M256,224c0-7.9,2.9-15.1,7.6-20.7c-2.5-0.4-5-0.6-7.6-0.6c-28.8,0-52.3,23.9-52.3,53.3c0,29.4,23.5,53.3,52.3,53.3\r\n\t\t\ts52.3-23.9,52.3-53.3c0-2.3-0.2-4.6-0.4-6.9c-5.5,4.3-12.3,6.9-19.8,6.9C270.3,256,256,241.7,256,224z"},"children":[]}]}]}]}]}]};exports.eye=eye;var female={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M288,284c55.2-14.2,96-64.3,96-124c0-70.7-57.3-128-128-128S128,89.3,128,160c0,59.6,40.8,109.7,96,124v68h-64v64h64v64h64\r\n\tv-64h64v-64h-64V284z M256,240c-44.1,0-80-35.9-80-80s35.9-80,80-80s80,35.9,80,80S300.1,240,256,240z"},"children":[]}]};exports.female=female;var filing={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M381,128.6H132.1c-12.1,0-19.5,0-19.5,20.4v28.1h288V149C400.6,128.6,393.2,128.6,381,128.6z"},"children":[{"name":"path","attribs":{"d":"M381,128.6H132.1c-12.1,0-19.5,0-19.5,20.4v28.1h288V149C400.6,128.6,393.2,128.6,381,128.6z"},"children":[]}]},{"name":"path","attribs":{"d":"M333,96.5H180c-13.1,0-19.5,0.3-19.5,18.7h192C352.4,96.8,346.1,96.5,333,96.5z"},"children":[{"name":"path","attribs":{"d":"M333,96.5H180c-13.1,0-19.5,0.3-19.5,18.7h192C352.4,96.8,346.1,96.5,333,96.5z"},"children":[]}]},{"name":"path","attribs":{"d":"M432.4,169.6l-15.9-9.4v32.3h-321v-32.3l-15.2,9.4c-14.3,8.9-17.8,15.3-15,40.9l17.5,184.8c3.7,20.7,15.9,21.2,24,21.2\r\n\t\th299.9c8.1,0,20.2-0.5,23.9-21.2l17.2-184.4C450.1,186.5,445.8,178.1,432.4,169.6z"},"children":[{"name":"path","attribs":{"d":"M432.4,169.6l-15.9-9.4v32.3h-321v-32.3l-15.2,9.4c-14.3,8.9-17.8,15.3-15,40.9l17.5,184.8c3.7,20.7,15.9,21.2,24,21.2\r\n\t\th299.9c8.1,0,20.2-0.5,23.9-21.2l17.2-184.4C450.1,186.5,445.8,178.1,432.4,169.6z"},"children":[]}]}]}]};exports.filing=filing;var filmMarker={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M448.4,208h-344l341.2-68c8.5-1.6,14-9.7,12.4-18.1l-8.9-45.4c-1.6-8.4-9.8-13.8-18.3-12.2L60.7,137.9\r\n\tc-8.5,1.6-14,9.7-12.4,18l8.9,45.4c0.6,2.8,2.1,5.2,3.9,7.2c-7.4,1.2-13.1,7.2-13.1,14.9v209.2c0,8.5,7,15.4,15.6,15.4h384.8\r\n\tc8.6,0,15.6-6.9,15.6-15.4V223.4C464,214.9,457,208,448.4,208z M305,402.4l-50.7-36.3l-50.7,36.3l19.5-58.4l-50.8-36H235l19.2-58.4\r\n\tl19.3,58.4h62.7l-50.8,36L305,402.4z"},"children":[]}]};exports.filmMarker=filmMarker;var fireball={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M393.267,238.088l-0.231,10.404c-0.814,11.65-3.797,31.912-14.102,54.736c3.251-15.208,4.978-30.982,4.978-47.164\r\n\t\tc0-12.096-0.958-23.968-2.799-35.544c-15.091-94.901-89.626-169.923-184.138-185.518C185.706,32.285,179.048,32,179.048,32\r\n\t\tc0.238,0.281,0.465,0.562,0.7,0.844c39.458,47.181,44.1,96.656,37.744,131.85c-2.281,12.629-5.978,23.421-9.991,31.605\r\n\t\tc0,0,3.359-13.911,3.035-29.72c-0.293-14.234-3.572-30.006-14.986-38.552c3.497,18.378-0.752,33.501-9.121,47.729\r\n\t\tC161.69,217.808,101,249.386,96,327.408v3.836c0,53.692,25.624,98.979,68.719,125.012c-6.85-12.344-14.964-35.207-8.733-60.151\r\n\t\tc3.998,23.669,9.951,36.045,20.879,51.756c8.153,11.721,19.104,19.269,33.095,24.934S238.995,480,255.889,480\r\n\t\tc55.809,0,105.228-28.567,133.845-71.952l0.267,0.061v-0.007c16-25.254,26.1-55.5,26.1-88.019\r\n\t\tC416.1,290.112,407.596,262.071,393.267,238.088z"},"children":[{"name":"path","attribs":{"d":"M393.267,238.088l-0.231,10.404c-0.814,11.65-3.797,31.912-14.102,54.736c3.251-15.208,4.978-30.982,4.978-47.164\r\n\t\tc0-12.096-0.958-23.968-2.799-35.544c-15.091-94.901-89.626-169.923-184.138-185.518C185.706,32.285,179.048,32,179.048,32\r\n\t\tc0.238,0.281,0.465,0.562,0.7,0.844c39.458,47.181,44.1,96.656,37.744,131.85c-2.281,12.629-5.978,23.421-9.991,31.605\r\n\t\tc0,0,3.359-13.911,3.035-29.72c-0.293-14.234-3.572-30.006-14.986-38.552c3.497,18.378-0.752,33.501-9.121,47.729\r\n\t\tC161.69,217.808,101,249.386,96,327.408v3.836c0,53.692,25.624,98.979,68.719,125.012c-6.85-12.344-14.964-35.207-8.733-60.151\r\n\t\tc3.998,23.669,9.951,36.045,20.879,51.756c8.153,11.721,19.104,19.269,33.095,24.934S238.995,480,255.889,480\r\n\t\tc55.809,0,105.228-28.567,133.845-71.952l0.267,0.061v-0.007c16-25.254,26.1-55.5,26.1-88.019\r\n\t\tC416.1,290.112,407.596,262.071,393.267,238.088z"},"children":[]}]}]}]};exports.fireball=fireball;var flag={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M426.4,182.5c-35.8,5.9-94.2,7.5-133-66.1c-41.6-79.1-108.8-81.5-148.1-74.3c-19.1,3.5-33.4,19.5-33.4,35v196.6\r\n\t\tc11.3,4.3,23.4-0.2,26.5-0.8c0.8-0.2,1.5-0.3,2.4-0.5c25-5.5,51.4-8.1,116.8,23.3c82,39.3,153.8-33.1,181.6-83.5\r\n\t\tc2-3.5,8.7-20.2,8.7-36.2C438.2,180,426.4,182.5,426.4,182.5z"},"children":[{"name":"path","attribs":{"d":"M426.4,182.5c-35.8,5.9-94.2,7.5-133-66.1c-41.6-79.1-108.8-81.5-148.1-74.3c-19.1,3.5-33.4,19.5-33.4,35v196.6\r\n\t\tc11.3,4.3,23.4-0.2,26.5-0.8c0.8-0.2,1.5-0.3,2.4-0.5c25-5.5,51.4-8.1,116.8,23.3c82,39.3,153.8-33.1,181.6-83.5\r\n\t\tc2-3.5,8.7-20.2,8.7-36.2C438.2,180,426.4,182.5,426.4,182.5z"},"children":[]}]},{"name":"path","attribs":{"d":"M88,32H72c-4.4,0-8,3.6-8,8v432c0,4.4,3.6,8,8,8h16c4.4,0,8-3.6,8-8V40C96,35.6,92.4,32,88,32z"},"children":[{"name":"path","attribs":{"d":"M88,32H72c-4.4,0-8,3.6-8,8v432c0,4.4,3.6,8,8,8h16c4.4,0,8-3.6,8-8V40C96,35.6,92.4,32,88,32z"},"children":[]}]}]}]};exports.flag=flag;var flame={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M128.922,320c13.05,134,103.764,160,126.932,160c23.168,0,127.457-40.49,128.142-160c0.836-146-121.586-143-95.895-288\r\n\t\tC201.427,96,118.289,210.816,128.922,320z M215.667,368c0-44.183,40.187-80,40.187-80s40.701,35.817,40.701,80\r\n\t\tc0,44.184-40.701,80-40.701,80S215.667,412.184,215.667,368z"},"children":[{"name":"path","attribs":{"d":"M128.922,320c13.05,134,103.764,160,126.932,160c23.168,0,127.457-40.49,128.142-160c0.836-146-121.586-143-95.895-288\r\n\t\tC201.427,96,118.289,210.816,128.922,320z M215.667,368c0-44.183,40.187-80,40.187-80s40.701,35.817,40.701,80\r\n\t\tc0,44.184-40.701,80-40.701,80S215.667,412.184,215.667,368z"},"children":[]}]}]}]};exports.flame=flame;var flashOff={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M147.4,451.9c0.4,0.2,0.7,0.5,1.1,0.7c10.9,6,22.5,10.7,34.4,14.8c1.8,0.6,3.6,1.2,5.4,1.8c21.4,6.8,44,10.9,67.7,10.9\r\n\t\tc123.7,0,224-100.3,224-224c0-84.3-46.6-157.7-115.5-195.9c-0.4-0.2-0.7-0.4-1-0.6c-10.9-6-22.5-10.7-34.4-14.8\r\n\t\tc-1.8-0.6-3.6-1.2-5.4-1.8C302.3,36.1,279.6,32,256,32C132.3,32,32,132.3,32,256C32,340.3,78.6,413.6,147.4,451.9z M118.2,156.6\r\n\t\tl54.4,54.4l36.3-40.5l-52.4-52.4c28-20.2,62.1-32.6,99.4-32.6c9.3,0,18.3,0.9,27.2,2.4c9.8,1.6,19.3,4.1,28.5,7.3\r\n\t\tc1.8,0.6,3.7,1.2,5.6,1.9c6.2,2.4,12.2,5,18,8.1c54.2,28.5,91.2,85.3,91.2,150.8c0,37.2-12.4,71.3-32.7,99.4l-54.4-54.4L303,341.4\r\n\t\tl52.4,52.4c-28,20.3-62.2,32.7-99.4,32.7c-9.3,0-18.4-0.9-27.2-2.4c-9.8-1.6-19.3-4.1-28.5-7.3c-1.9-0.6-3.8-1.2-5.6-1.9\r\n\t\tc-6.5-2.5-12.9-5.3-19-8.6c-53.6-28.7-90.1-85.2-90.1-150.3C85.6,218.8,98,184.7,118.2,156.6z"},"children":[{"name":"path","attribs":{"d":"M147.4,451.9c0.4,0.2,0.7,0.5,1.1,0.7c10.9,6,22.5,10.7,34.4,14.8c1.8,0.6,3.6,1.2,5.4,1.8c21.4,6.8,44,10.9,67.7,10.9\r\n\t\tc123.7,0,224-100.3,224-224c0-84.3-46.6-157.7-115.5-195.9c-0.4-0.2-0.7-0.4-1-0.6c-10.9-6-22.5-10.7-34.4-14.8\r\n\t\tc-1.8-0.6-3.6-1.2-5.4-1.8C302.3,36.1,279.6,32,256,32C132.3,32,32,132.3,32,256C32,340.3,78.6,413.6,147.4,451.9z M118.2,156.6\r\n\t\tl54.4,54.4l36.3-40.5l-52.4-52.4c28-20.2,62.1-32.6,99.4-32.6c9.3,0,18.3,0.9,27.2,2.4c9.8,1.6,19.3,4.1,28.5,7.3\r\n\t\tc1.8,0.6,3.7,1.2,5.6,1.9c6.2,2.4,12.2,5,18,8.1c54.2,28.5,91.2,85.3,91.2,150.8c0,37.2-12.4,71.3-32.7,99.4l-54.4-54.4L303,341.4\r\n\t\tl52.4,52.4c-28,20.3-62.2,32.7-99.4,32.7c-9.3,0-18.4-0.9-27.2-2.4c-9.8-1.6-19.3-4.1-28.5-7.3c-1.9-0.6-3.8-1.2-5.6-1.9\r\n\t\tc-6.5-2.5-12.9-5.3-19-8.6c-53.6-28.7-90.1-85.2-90.1-150.3C85.6,218.8,98,184.7,118.2,156.6z"},"children":[]}]},{"name":"polygon","attribs":{"points":"209.7,389.8 348.9,235 263.6,235 302.2,122.2 163.1,277 248.4,277 \t"},"children":[{"name":"polygon","attribs":{"points":"209.7,389.8 348.9,235 263.6,235 302.2,122.2 163.1,277 248.4,277 \t"},"children":[]}]}]}]};exports.flashOff=flashOff;var flash={"viewBox":"0 0 512 512","children":[{"name":"polygon","attribs":{"points":"96,288 243,288 191.9,480 416,224 269,224 320,32 "},"children":[]}]};exports.flash=flash;var folder={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M430.1,192H81.9c-17.7,0-18.6,9.2-17.6,20.5l13,183c0.9,11.2,3.5,20.5,21.1,20.5h316.2c18,0,20.1-9.2,21.1-20.5l12.1-185.3\r\n\t\tC448.7,199,447.8,192,430.1,192z"},"children":[{"name":"path","attribs":{"d":"M430.1,192H81.9c-17.7,0-18.6,9.2-17.6,20.5l13,183c0.9,11.2,3.5,20.5,21.1,20.5h316.2c18,0,20.1-9.2,21.1-20.5l12.1-185.3\r\n\t\tC448.7,199,447.8,192,430.1,192z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M426.2,143.3c-0.5-12.4-4.5-15.3-15.1-15.3c0,0-121.4,0-143.2,0c-21.8,0-24.4,0.3-40.9-17.4C213.3,95.8,218.7,96,190.4,96\r\n\t\t\tc-22.6,0-75.3,0-75.3,0c-17.4,0-23.6-1.5-25.2,16.6c-1.5,16.7-5,57.2-5.5,63.4h343.4L426.2,143.3z"},"children":[{"name":"path","attribs":{"d":"M426.2,143.3c-0.5-12.4-4.5-15.3-15.1-15.3c0,0-121.4,0-143.2,0c-21.8,0-24.4,0.3-40.9-17.4C213.3,95.8,218.7,96,190.4,96\r\n\t\t\tc-22.6,0-75.3,0-75.3,0c-17.4,0-23.6-1.5-25.2,16.6c-1.5,16.7-5,57.2-5.5,63.4h343.4L426.2,143.3z"},"children":[]}]}]}]}]}]};exports.folder=folder;var forkRepo={"viewBox":"0 0 512 512","children":[{"name":"style","attribs":{"type":"text/css"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"class":"st0","points":"416,80 368,80 368,32 304,32 304,80 256,80 256,144 304,144 304,192 368,192 368,144 416,144 \t"},"children":[{"name":"polygon","attribs":{"class":"st0","points":"416,80 368,80 368,32 304,32 304,80 256,80 256,144 304,144 304,192 368,192 368,144 416,144 \t"},"children":[]}]},{"name":"path","attribs":{"class":"st0","d":"M304,240c0,38.6-4.5,42.3-14.4,50.3c-7.4,6-22.2,7.1-39.4,8.3c-9.5,0.7-20.4,1.5-31.4,3.3\r\n\t\tc-9.4,1.5-18.4,4.7-26.8,8.8V151.4c19.1-11.1,32-31.7,32-55.4c0-35.3-28.7-64-64-64S96,60.7,96,96c0,23.7,12.9,44.3,32,55.4v209.2\r\n\t\tc-19.1,11.1-32,31.7-32,55.4c0,35.3,28.7,64,64,64s64-28.7,64-64c0-15.7-5.7-30.1-15-41.2c6.7-4.8,13.9-8.7,20.2-9.7\r\n\t\tc8.1-1.3,16.6-1.9,25.6-2.6c24.4-1.7,52.1-3.7,75.2-22.5c30.9-25.1,37.5-52.1,38-94.9l0,0V240H304z M160,64c17.6,0,32,14.4,32,32\r\n\t\ts-14.4,32-32,32s-32-14.4-32-32S142.4,64,160,64z M160,448c-17.6,0-32-14.4-32-32s14.4-32,32-32s32,14.4,32,32S177.6,448,160,448z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M304,240c0,38.6-4.5,42.3-14.4,50.3c-7.4,6-22.2,7.1-39.4,8.3c-9.5,0.7-20.4,1.5-31.4,3.3\r\n\t\tc-9.4,1.5-18.4,4.7-26.8,8.8V151.4c19.1-11.1,32-31.7,32-55.4c0-35.3-28.7-64-64-64S96,60.7,96,96c0,23.7,12.9,44.3,32,55.4v209.2\r\n\t\tc-19.1,11.1-32,31.7-32,55.4c0,35.3,28.7,64,64,64s64-28.7,64-64c0-15.7-5.7-30.1-15-41.2c6.7-4.8,13.9-8.7,20.2-9.7\r\n\t\tc8.1-1.3,16.6-1.9,25.6-2.6c24.4-1.7,52.1-3.7,75.2-22.5c30.9-25.1,37.5-52.1,38-94.9l0,0V240H304z M160,64c17.6,0,32,14.4,32,32\r\n\t\ts-14.4,32-32,32s-32-14.4-32-32S142.4,64,160,64z M160,448c-17.6,0-32-14.4-32-32s14.4-32,32-32s32,14.4,32,32S177.6,448,160,448z"},"children":[]}]}]}]};exports.forkRepo=forkRepo;var fork={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M270.2,148.9C270.2,149,270.1,149,270.2,148.9v0.1V148.9z"},"children":[{"name":"path","attribs":{"d":"M270.2,148.9C270.2,149,270.1,149,270.2,148.9v0.1V148.9z"},"children":[]}]},{"name":"path","attribs":{"d":"M320,166c0-43.2-15-93.2-24-133.7V32h-8l-0.2,116.9c0,6.1-2.9,11.1-9,11.1c-5.7,0-8-4.3-8.6-9.9c-0.1-0.4,0-0.8,0-1.2\r\n\t\tL259.9,32h-8l-9,117l-0.1,1.1c-0.6,5.6-3.7,9.9-9.5,9.9c-6.1,0-9.1-5-9.1-11.1L223.8,32h-8C207,73,192,122.9,192,166.1\r\n\t\tc0,25.7,14.6,48.1,36.7,58.2c11.2,5.1,11.3,10.3,11.3,10.3s-16,201.7-16,213.1c0,11.4,4,18.5,9.5,24s14.2,8.2,22.4,8.2\r\n\t\tc0.1,0,0.1,0,0.2,0c0.1,0,0.1,0,0.2,0c8.2,0,16.8-2.7,22.4-8.2c5.5-5.5,9.3-10.9,9.3-24c0-13.1-16-213.1-16-213.1s-1-5,11.4-10.6\r\n\t\tC305,214.2,320,191.8,320,166z"},"children":[{"name":"path","attribs":{"d":"M320,166c0-43.2-15-93.2-24-133.7V32h-8l-0.2,116.9c0,6.1-2.9,11.1-9,11.1c-5.7,0-8-4.3-8.6-9.9c-0.1-0.4,0-0.8,0-1.2\r\n\t\tL259.9,32h-8l-9,117l-0.1,1.1c-0.6,5.6-3.7,9.9-9.5,9.9c-6.1,0-9.1-5-9.1-11.1L223.8,32h-8C207,73,192,122.9,192,166.1\r\n\t\tc0,25.7,14.6,48.1,36.7,58.2c11.2,5.1,11.3,10.3,11.3,10.3s-16,201.7-16,213.1c0,11.4,4,18.5,9.5,24s14.2,8.2,22.4,8.2\r\n\t\tc0.1,0,0.1,0,0.2,0c0.1,0,0.1,0,0.2,0c8.2,0,16.8-2.7,22.4-8.2c5.5-5.5,9.3-10.9,9.3-24c0-13.1-16-213.1-16-213.1s-1-5,11.4-10.6\r\n\t\tC305,214.2,320,191.8,320,166z"},"children":[]}]}]}]};exports.fork=fork;var forward={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M288,298.1v92.3L448,256L288,112v80C100.8,192,64,400,64,400C117,307,186.4,298.1,288,298.1z"},"children":[{"name":"path","attribs":{"d":"M288,298.1v92.3L448,256L288,112v80C100.8,192,64,400,64,400C117,307,186.4,298.1,288,298.1z"},"children":[]}]}]}]};exports.forward=forward;var funnel={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256.085,32c-123.79,0-224.096,35.817-224.096,80c0,8.476,3.729,16.642,10.573,24.309l-0.061,0.008\r\n\t\tC74.408,175.213,192,313,192,352v87l0,0c0,22.688,28.891,41,64,41s64-18.312,64-41l0,0v-83.088c0-1.241,0.008-2.54,0.008-3.912\r\n\t\tC320.008,313,436,177.432,471,134.062v-0.002c6-7.007,8.977-14.408,8.977-22.06C479.977,67.817,379.875,32,256.085,32z\r\n\t\t M256.178,160c-92.058,0-176.112-22-176.112-48s83.053-48,176.112-48c93.06,0,176.111,22.413,176.111,48S348.236,160,256.178,160z"},"children":[{"name":"path","attribs":{"d":"M256.085,32c-123.79,0-224.096,35.817-224.096,80c0,8.476,3.729,16.642,10.573,24.309l-0.061,0.008\r\n\t\tC74.408,175.213,192,313,192,352v87l0,0c0,22.688,28.891,41,64,41s64-18.312,64-41l0,0v-83.088c0-1.241,0.008-2.54,0.008-3.912\r\n\t\tC320.008,313,436,177.432,471,134.062v-0.002c6-7.007,8.977-14.408,8.977-22.06C479.977,67.817,379.875,32,256.085,32z\r\n\t\t M256.178,160c-92.058,0-176.112-22-176.112-48s83.053-48,176.112-48c93.06,0,176.111,22.413,176.111,48S348.236,160,256.178,160z"},"children":[]}]}]}]};exports.funnel=funnel;var gearA={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M411.1,256c0-23.9,14.8-42.8,36.9-55.8c-4-13.3-9.3-26.2-15.8-38.2c-24.9,6.5-45-3.2-62-20.2c-16.9-16.9-22.1-37.1-15.6-62\r\n\t\tC342.6,73.3,329.8,68,316.4,64c-13,22.2-36.4,36.9-60.4,36.9c-23.9,0-47.4-14.7-60.4-36.9c-13.4,4-26.2,9.3-38.2,15.8\r\n\t\tc6.5,24.9,1.3,45-15.6,62c-16.9,16.9-37.1,26.7-61.9,20.2C73.3,174,68,186.8,64,200.2c22.2,13,37,31.9,37,55.8\r\n\t\tc0,23.9-14.8,47.4-37,60.4c4,13.4,9.3,26.2,15.8,38.2c24.9-6.5,45-1.3,61.9,15.6c17,16.9,22.1,37.1,15.6,62\r\n\t\tc12.1,6.5,24.8,11.8,38.2,15.8c13-22.2,36.5-36.9,60.4-36.9c23.9,0,47.4,14.7,60.4,36.9c13.4-4,26.2-9.3,38.2-15.8\r\n\t\tc-6.5-24.9-1.3-45,15.6-62c16.9-16.9,37.1-26.7,62-20.2c6.5-12.1,11.8-24.9,15.8-38.2C425.8,298.8,411.1,279.9,411.1,256z\r\n\t\t M256,354.3c-54.2,0-98.3-44-98.3-98.3c0-54.3,44-98.3,98.3-98.3c54.3,0,98.3,44,98.3,98.3C354.3,310.3,310.3,354.3,256,354.3z"},"children":[{"name":"path","attribs":{"d":"M411.1,256c0-23.9,14.8-42.8,36.9-55.8c-4-13.3-9.3-26.2-15.8-38.2c-24.9,6.5-45-3.2-62-20.2c-16.9-16.9-22.1-37.1-15.6-62\r\n\t\tC342.6,73.3,329.8,68,316.4,64c-13,22.2-36.4,36.9-60.4,36.9c-23.9,0-47.4-14.7-60.4-36.9c-13.4,4-26.2,9.3-38.2,15.8\r\n\t\tc6.5,24.9,1.3,45-15.6,62c-16.9,16.9-37.1,26.7-61.9,20.2C73.3,174,68,186.8,64,200.2c22.2,13,37,31.9,37,55.8\r\n\t\tc0,23.9-14.8,47.4-37,60.4c4,13.4,9.3,26.2,15.8,38.2c24.9-6.5,45-1.3,61.9,15.6c17,16.9,22.1,37.1,15.6,62\r\n\t\tc12.1,6.5,24.8,11.8,38.2,15.8c13-22.2,36.5-36.9,60.4-36.9c23.9,0,47.4,14.7,60.4,36.9c13.4-4,26.2-9.3,38.2-15.8\r\n\t\tc-6.5-24.9-1.3-45,15.6-62c16.9-16.9,37.1-26.7,62-20.2c6.5-12.1,11.8-24.9,15.8-38.2C425.8,298.8,411.1,279.9,411.1,256z\r\n\t\t M256,354.3c-54.2,0-98.3-44-98.3-98.3c0-54.3,44-98.3,98.3-98.3c54.3,0,98.3,44,98.3,98.3C354.3,310.3,310.3,354.3,256,354.3z"},"children":[]}]}]}]};exports.gearA=gearA;var gearB={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M448,294.4v-76.8h-42.8c-3.4-14.4-8.9-28-16.1-40.5l29.8-29.7l-54.3-54.3l-29.1,29.1c-12.6-7.7-26.4-13.5-41.1-17.3V64\r\n\th-76.8v40.9c-14.7,3.8-28.5,9.7-41.1,17.3l-29.1-29.1l-54.3,54.3l29.8,29.7c-7.2,12.5-12.6,26.1-16.1,40.5H64v76.8h44.1\r\n\tc3.8,13.7,9.5,26.6,16.7,38.6l-31.7,31.7l54.3,54.3l32.3-32.3c11.7,6.8,24.5,11.9,37.9,15.4v46h76.8v-46\r\n\tc13.5-3.5,26.2-8.6,37.9-15.4l32.3,32.3l54.3-54.3L387.3,333c7.2-11.9,12.9-24.8,16.7-38.6H448z M256,309.8\r\n\tc-29.7,0-53.7-24.1-53.7-53.8s24-53.8,53.7-53.8s53.8,24.1,53.8,53.8S285.7,309.8,256,309.8z"},"children":[]}]};exports.gearB=gearB;var grid={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M160,153.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V153.3z"},"children":[{"name":"path","attribs":{"d":"M160,153.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V153.3z"},"children":[]}]},{"name":"path","attribs":{"d":"M288,153.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V153.3z"},"children":[{"name":"path","attribs":{"d":"M288,153.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V153.3z"},"children":[]}]},{"name":"path","attribs":{"d":"M416,153.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V153.3z"},"children":[{"name":"path","attribs":{"d":"M416,153.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V153.3z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M160,281.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V281.3z"},"children":[{"name":"path","attribs":{"d":"M160,281.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V281.3z"},"children":[]}]},{"name":"path","attribs":{"d":"M288,281.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V281.3z"},"children":[{"name":"path","attribs":{"d":"M288,281.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V281.3z"},"children":[]}]},{"name":"path","attribs":{"d":"M416,281.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V281.3z"},"children":[{"name":"path","attribs":{"d":"M416,281.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V281.3z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M160,409.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V409.3z"},"children":[{"name":"path","attribs":{"d":"M160,409.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V409.3z"},"children":[]}]},{"name":"path","attribs":{"d":"M288,409.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V409.3z"},"children":[{"name":"path","attribs":{"d":"M288,409.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V409.3z"},"children":[]}]},{"name":"path","attribs":{"d":"M416,409.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V409.3z"},"children":[{"name":"path","attribs":{"d":"M416,409.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V409.3z"},"children":[]}]}]}]}]}]};exports.grid=grid;var hammer={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M410,32h-52c-3.3,0-6,2.7-6,6v5.6c-4,4-10.9,9.8-17.8,9.8c-10.5,0-14.8-16.4-26.1-18.4s-27.2-3-37.9-3s-52,0.7-102,21.5\r\n\tc-50,20.8-71.7,64.9-72.3,81.4c-0.3,8.7,2.7,21.1,10,11.1c7.3-10,35.3-42.3,57.7-44.7c22.3-2.3,45.7,0.8,63.7,17.2\r\n\tc17.3,15.7,21.3,30.8,21.3,73.5l-6.6,2c-4.3,1.3-7,5.7-7,9c0,0-0.2,6.5-0.2,70.4C234.8,368,224,474,224,474c0,3.3,2.7,6,6,6h84\r\n\tc3.3,0,6-2.7,6-6c0,0-10.8-106-10.8-200.6c0-63.9-0.2-70.4-0.2-70.4c0-3.3-2.3-7.8-7-9l-8-2c0-38.2-0.4-54,6.3-65.9\r\n\tc7-12.4,22.3-22.9,29.7-25.1c5.9-1.8,16,1.3,22,6.5V122c0,3.3,2.7,6,6,6h52c3.3,0,6-2.7,6-6V38C416,34.7,413.3,32,410,32z"},"children":[]}]};exports.hammer=hammer;var happyOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M387.469,289.593c-2.248-1.175-4.775-1.796-7.308-1.796c-5.956,0-11.358,3.287-14.104,8.588\r\n\t\tC347.804,331.731,304.605,352,256.004,352c-49.734,0-93.84-20.562-109.757-54.997c-2.589-5.589-8.244-9.199-14.407-9.199\r\n\t\tc-2.294,0-4.521,0.485-6.658,1.463c-7.926,3.674-11.397,13.117-7.734,21.057C138.454,355.765,194.135,384,256.004,384\r\n\t\tc60.34,0,114.604-27.281,138.241-73.055C398.254,303.184,395.201,293.598,387.469,289.593z"},"children":[{"name":"path","attribs":{"d":"M387.469,289.593c-2.248-1.175-4.775-1.796-7.308-1.796c-5.956,0-11.358,3.287-14.104,8.588\r\n\t\tC347.804,331.731,304.605,352,256.004,352c-49.734,0-93.84-20.562-109.757-54.997c-2.589-5.589-8.244-9.199-14.407-9.199\r\n\t\tc-2.294,0-4.521,0.485-6.658,1.463c-7.926,3.674-11.397,13.117-7.734,21.057C138.454,355.765,194.135,384,256.004,384\r\n\t\tc60.34,0,114.604-27.281,138.241-73.055C398.254,303.184,395.201,293.598,387.469,289.593z"},"children":[]}]},{"name":"path","attribs":{"d":"M412.793,231.174C402.312,217.593,389.024,208,368.137,208c-20.887,0-34.062,9.573-44.611,23.117\r\n\t\tc-5.502,7.062-4.525,16.633,3.746,22.207c2.914,1.963,6.347,2.676,9.928,2.676c5.395-0.001,10.507-2.109,13.67-6.179\r\n\t\tc3.45-4.435,7.707-9.821,17.268-9.821c9.61,0,13.832,5.361,17.23,9.777c3.178,4.104,8.305,6.223,13.717,6.223\r\n\t\tc3.581,0,7.007-0.708,9.922-2.683C416.558,248.185,418.257,238.25,412.793,231.174z"},"children":[{"name":"path","attribs":{"d":"M412.793,231.174C402.312,217.593,389.024,208,368.137,208c-20.887,0-34.062,9.573-44.611,23.117\r\n\t\tc-5.502,7.062-4.525,16.633,3.746,22.207c2.914,1.963,6.347,2.676,9.928,2.676c5.395-0.001,10.507-2.109,13.67-6.179\r\n\t\tc3.45-4.435,7.707-9.821,17.268-9.821c9.61,0,13.832,5.361,17.23,9.777c3.178,4.104,8.305,6.223,13.717,6.223\r\n\t\tc3.581,0,7.007-0.708,9.922-2.683C416.558,248.185,418.257,238.25,412.793,231.174z"},"children":[]}]},{"name":"path","attribs":{"d":"M188.792,231.174C178.312,217.593,165.024,208,144.137,208s-34.063,9.573-44.612,23.117\r\n\t\tc-5.501,7.062-4.525,16.633,3.747,22.207c2.914,1.963,6.346,2.676,9.927,2.676c5.395-0.001,10.507-2.109,13.669-6.179\r\n\t\tc3.451-4.435,7.708-9.821,17.269-9.821c9.61,0,13.832,5.361,17.23,9.777c3.177,4.104,8.304,6.223,13.716,6.223\r\n\t\tc3.582,0,7.007-0.708,9.922-2.683C192.558,248.185,194.257,238.25,188.792,231.174z"},"children":[{"name":"path","attribs":{"d":"M188.792,231.174C178.312,217.593,165.024,208,144.137,208s-34.063,9.573-44.612,23.117\r\n\t\tc-5.501,7.062-4.525,16.633,3.747,22.207c2.914,1.963,6.346,2.676,9.927,2.676c5.395-0.001,10.507-2.109,13.669-6.179\r\n\t\tc3.451-4.435,7.708-9.821,17.269-9.821c9.61,0,13.832,5.361,17.23,9.777c3.177,4.104,8.304,6.223,13.716,6.223\r\n\t\tc3.582,0,7.007-0.708,9.922-2.683C192.558,248.185,194.257,238.25,188.792,231.174z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,32C132.288,32,32,132.288,32,256s100.288,224,224,224s224-100.288,224-224S379.712,32,256,32z M391.765,391.765\r\n\t\tC355.5,428.028,307.285,448,256,448s-99.5-19.972-135.765-56.235C83.972,355.5,64,307.285,64,256s19.972-99.5,56.235-135.765\r\n\t\tC156.5,83.972,204.715,64,256,64s99.5,19.972,135.765,56.235C428.028,156.5,448,204.715,448,256S428.028,355.5,391.765,391.765z"},"children":[{"name":"path","attribs":{"d":"M256,32C132.288,32,32,132.288,32,256s100.288,224,224,224s224-100.288,224-224S379.712,32,256,32z M391.765,391.765\r\n\t\tC355.5,428.028,307.285,448,256,448s-99.5-19.972-135.765-56.235C83.972,355.5,64,307.285,64,256s19.972-99.5,56.235-135.765\r\n\t\tC156.5,83.972,204.715,64,256,64s99.5,19.972,135.765,56.235C428.028,156.5,448,204.715,448,256S428.028,355.5,391.765,391.765z"},"children":[]}]}]}]};exports.happyOutline=happyOutline;var happy={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,32C132.288,32,32,132.288,32,256s100.288,224,224,224s224-100.288,224-224S379.712,32,256,32z M103.272,253.324\r\n\t\tc-8.272-5.574-9.249-15.145-3.747-22.207C110.074,217.573,123.25,208,144.137,208s34.174,9.593,44.655,23.174\r\n\t\tc5.464,7.076,3.765,17.011-3.787,22.144c-2.915,1.975-6.341,2.683-9.922,2.683c-5.412,0-10.539-2.119-13.716-6.223\r\n\t\tc-3.398-4.416-7.621-9.777-17.23-9.777c-9.561,0-13.818,5.387-17.269,9.821c-3.163,4.069-8.274,6.178-13.669,6.179\r\n\t\tC109.618,256,106.186,255.287,103.272,253.324z M394.245,310.945C370.607,356.719,316.344,384,256.004,384\r\n\t\tc-61.869,0-117.55-28.235-138.556-73.677c-3.663-7.939-0.191-17.383,7.734-21.057c2.137-0.978,4.363-1.463,6.658-1.463\r\n\t\tc6.163,0,11.818,3.61,14.407,9.199C162.164,331.438,206.27,352,256.004,352c48.602,0,91.8-20.269,110.053-55.615\r\n\t\tc2.746-5.301,8.148-8.588,14.104-8.588c2.532,0,5.06,0.621,7.308,1.796C395.201,293.598,398.254,303.184,394.245,310.945z\r\n\t\t M409.006,253.317c-2.915,1.975-6.341,2.683-9.922,2.683c-5.412,0-10.539-2.119-13.717-6.223c-3.398-4.416-7.62-9.777-17.23-9.777\r\n\t\tc-9.561,0-13.817,5.387-17.268,9.821c-3.163,4.069-8.275,6.178-13.67,6.179c-3.581,0-7.014-0.713-9.928-2.676\r\n\t\tc-8.271-5.574-9.248-15.145-3.746-22.207C334.074,217.573,347.25,208,368.137,208c20.888,0,34.175,9.593,44.656,23.174\r\n\t\tC418.257,238.25,416.558,248.185,409.006,253.317z"},"children":[{"name":"path","attribs":{"d":"M256,32C132.288,32,32,132.288,32,256s100.288,224,224,224s224-100.288,224-224S379.712,32,256,32z M103.272,253.324\r\n\t\tc-8.272-5.574-9.249-15.145-3.747-22.207C110.074,217.573,123.25,208,144.137,208s34.174,9.593,44.655,23.174\r\n\t\tc5.464,7.076,3.765,17.011-3.787,22.144c-2.915,1.975-6.341,2.683-9.922,2.683c-5.412,0-10.539-2.119-13.716-6.223\r\n\t\tc-3.398-4.416-7.621-9.777-17.23-9.777c-9.561,0-13.818,5.387-17.269,9.821c-3.163,4.069-8.274,6.178-13.669,6.179\r\n\t\tC109.618,256,106.186,255.287,103.272,253.324z M394.245,310.945C370.607,356.719,316.344,384,256.004,384\r\n\t\tc-61.869,0-117.55-28.235-138.556-73.677c-3.663-7.939-0.191-17.383,7.734-21.057c2.137-0.978,4.363-1.463,6.658-1.463\r\n\t\tc6.163,0,11.818,3.61,14.407,9.199C162.164,331.438,206.27,352,256.004,352c48.602,0,91.8-20.269,110.053-55.615\r\n\t\tc2.746-5.301,8.148-8.588,14.104-8.588c2.532,0,5.06,0.621,7.308,1.796C395.201,293.598,398.254,303.184,394.245,310.945z\r\n\t\t M409.006,253.317c-2.915,1.975-6.341,2.683-9.922,2.683c-5.412,0-10.539-2.119-13.717-6.223c-3.398-4.416-7.62-9.777-17.23-9.777\r\n\t\tc-9.561,0-13.817,5.387-17.268,9.821c-3.163,4.069-8.275,6.178-13.67,6.179c-3.581,0-7.014-0.713-9.928-2.676\r\n\t\tc-8.271-5.574-9.248-15.145-3.746-22.207C334.074,217.573,347.25,208,368.137,208c20.888,0,34.175,9.593,44.656,23.174\r\n\t\tC418.257,238.25,416.558,248.185,409.006,253.317z"},"children":[]}]}]}]};exports.happy=happy;var headphone={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M447.4,238.2c-3.2-59.8-21.9-108.6-56-145.2c-0.1-0.1-0.1-0.1-0.2-0.2c-7.7-8.4-16.1-15.9-24.8-22.6\r\n\tc-9-6.9-18.6-13-28.5-18.1c-25.3-13.1-53-20-82.1-20c-29,0-56.6,6.9-81.9,20c-9.9,5.1-19.4,11.2-28.4,18.1\r\n\tc-8.7,6.7-17,14.2-24.7,22.6c-0.1,0.1-0.1,0.1-0.2,0.2c-34,36.6-52.7,85.5-55.9,145.2C61.9,288.9,68,368,77.7,400\r\n\tc20.3,67,40.4,80,72.1,80s58.2-26.4,58.2-58.9V315.1c0-32.5-23.3-59-53.3-59c-18,0-34,9.7-43.8,24.4c0,0-11.1-8.1-13.1-23\r\n\tc-2.1-14.9-3.1-32.4,5.6-63c8.7-30.5,20.8-20.2,35.6-39c2.5-3.3,5.2-6.4,8-9.5c3.2-3.4,6.4-6.7,9.8-9.7c1.6-1.5,3.2-2.8,4.8-4.2\r\n\tc11-9.3,21-17,33.7-22.8c18.9-8.6,39.4-13.3,60.5-13.3c21,0,41.7,4.7,60.7,13.3c12.7,5.8,22.9,13.5,33.9,22.8\r\n\tc1.6,1.4,3.2,2.7,4.8,4.2c3.4,3,6.6,6.3,9.8,9.7c2.8,3.1,5.5,6.2,8,9.5c14.8,18.8,26.9,8.5,35.6,39c8.7,30.5,7.6,48.1,5.6,63\r\n\tc-2.1,14.9-13.1,23-13.1,23c-9.8-14.7-25.7-24.4-43.8-24.4c-30,0-53.3,26.4-53.3,59v106.1c0,32.4,26.5,58.9,58.2,58.9\r\n\tc31.7,0,51.8-13,72.1-80C444,368,450.1,288.9,447.4,238.2z"},"children":[]}]};exports.headphone=headphone;var heartBroken={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M229,288c1-18,0-38,8-55c2-5,1-10,1-15c-4-21-14-40-15-60c0-1.39,1.004-4.771,1.005-6.157\r\n\t\tc-3.216,2.234-7.607,4.024-11.005,5.157c-20,6-17.51,2.573-34.51,13.573l-11.933,7.228c16.343-17.939,38.528-24.781,56.525-38.714\r\n\t\tc0.194-15.438,0.858-30.677,3.137-45.84C185.61,53.496,121.785,54.268,82.123,95.57c-45.497,47.344-45.497,124.101,0,171.445\r\n\t\tl152.849,159.096c-0.085-10.656-0.443-21.176-1.972-31.111C227,359,229,324,229,288z"},"children":[{"name":"path","attribs":{"d":"M229,288c1-18,0-38,8-55c2-5,1-10,1-15c-4-21-14-40-15-60c0-1.39,1.004-4.771,1.005-6.157\r\n\t\tc-3.216,2.234-7.607,4.024-11.005,5.157c-20,6-17.51,2.573-34.51,13.573l-11.933,7.228c16.343-17.939,38.528-24.781,56.525-38.714\r\n\t\tc0.194-15.438,0.858-30.677,3.137-45.84C185.61,53.496,121.785,54.268,82.123,95.57c-45.497,47.344-45.497,124.101,0,171.445\r\n\t\tl152.849,159.096c-0.085-10.656-0.443-21.176-1.972-31.111C227,359,229,324,229,288z"},"children":[]}]},{"name":"path","attribs":{"d":"M322,301c-11-26-33-44-63-50c-0.85,0-1.879-0.543-2.936-1.319c-0.023,0.107-0.041,0.213-0.064,0.319c-11,48-23,94-21,142\r\n\t\tc0,12.227,3.983,25.117,3.833,38.131L256,448l104-108.25C345.153,329.271,330.428,318.621,322,301z"},"children":[{"name":"path","attribs":{"d":"M322,301c-11-26-33-44-63-50c-0.85,0-1.879-0.543-2.936-1.319c-0.023,0.107-0.041,0.213-0.064,0.319c-11,48-23,94-21,142\r\n\t\tc0,12.227,3.983,25.117,3.833,38.131L256,448l104-108.25C345.153,329.271,330.428,318.621,322,301z"},"children":[]}]},{"name":"path","attribs":{"d":"M429.874,95.57c-40.426-42.094-105.989-42.094-146.408,0L264,115.403c0.075,13.175,0.213,26.202-3,38.597\r\n\t\tc-2,10-19,19-16,31c3.003,13.213,8.166,25.705,10.732,38.559C271.014,232.084,284.771,242.896,297,256\r\n\t\tc22.801,26.766,37.747,57.459,65.283,81.371l67.591-70.355C475.375,219.671,475.375,142.914,429.874,95.57z"},"children":[{"name":"path","attribs":{"d":"M429.874,95.57c-40.426-42.094-105.989-42.094-146.408,0L264,115.403c0.075,13.175,0.213,26.202-3,38.597\r\n\t\tc-2,10-19,19-16,31c3.003,13.213,8.166,25.705,10.732,38.559C271.014,232.084,284.771,242.896,297,256\r\n\t\tc22.801,26.766,37.747,57.459,65.283,81.371l67.591-70.355C475.375,219.671,475.375,142.914,429.874,95.57z"},"children":[]}]}]}]};exports.heartBroken=heartBroken;var heart={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M429.9,95.6c-40.4-42.1-106-42.1-146.4,0L256,124.1l-27.5-28.6c-40.5-42.1-106-42.1-146.4,0c-45.5,47.3-45.5,124.1,0,171.4\r\n\t\tL256,448l173.9-181C475.4,219.7,475.4,142.9,429.9,95.6z"},"children":[{"name":"path","attribs":{"d":"M429.9,95.6c-40.4-42.1-106-42.1-146.4,0L256,124.1l-27.5-28.6c-40.5-42.1-106-42.1-146.4,0c-45.5,47.3-45.5,124.1,0,171.4\r\n\t\tL256,448l173.9-181C475.4,219.7,475.4,142.9,429.9,95.6z"},"children":[]}]}]}]};exports.heart=heart;var helpBuoy={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,32C132.3,32,32,132.3,32,256s100.3,224,224,224s224-100.3,224-224S379.7,32,256,32z M434.3,184.5l-61.5,18.9\r\n\tc-6.3-14-15.1-26.8-26.3-38c-11.2-11.2-24-20-38-26.3l18.9-61.5c23.8,9.5,45.6,23.9,64.3,42.5C410.4,138.9,424.8,160.7,434.3,184.5z\r\n\t M256,352c-53,0-96-43-96-96c0-53,43-96,96-96s96,43,96,96C352,309,309,352,256,352z M120.2,120.2c18.7-18.7,40.5-33,64.3-42.5\r\n\tl18.9,61.5c-14,6.3-26.8,15.1-38,26.3c-11.2,11.2-20,24-26.3,38l-61.5-18.9C87.2,160.7,101.6,138.9,120.2,120.2z M77.7,327.5\r\n\tl61.5-18.9c6.3,14,15.1,26.8,26.3,38s24,20,38,26.3l-18.9,61.5c-23.8-9.5-45.6-23.9-64.3-42.5C101.6,373.1,87.2,351.3,77.7,327.5z\r\n\t M391.8,391.8c-18.7,18.7-40.5,33-64.3,42.5l-18.9-61.5c14-6.3,26.8-15.1,38-26.3s20-24,26.3-38l61.5,18.9\r\n\tC424.8,351.3,410.4,373.1,391.8,391.8z"},"children":[]}]};exports.helpBuoy=helpBuoy;var helpCircled={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,32C132.3,32,32,132.3,32,256s100.3,224,224,224c123.7,0,224-100.3,224-224S379.7,32,256,32z M276.2,358.7\r\n\t\tc-0.5,17.8-13.7,28.8-30.8,28.3c-16.4-0.5-29.3-12.2-28.8-30.1c0.5-17.8,14.1-29.1,30.5-28.6C264.3,328.8,276.8,340.9,276.2,358.7z\r\n\t\t M324.9,231.4c-4.2,5.9-13.6,13.5-25.4,22.7l-13.1,9c-6.4,4.9-10.4,10.7-12.5,17.3c-1.1,3.5-1.9,12.6-2.1,18.7\r\n\t\tc-0.1,1.2-0.8,3.9-4.5,3.9c-3.7,0-35,0-39.1,0c-4.1,0-4.6-2.4-4.5-3.6c0.6-16.6,3-30.3,9.9-41.3c9.3-14.8,35.5-30.4,35.5-30.4\r\n\t\tc4-3,7.1-6.2,9.5-9.7c4.4-6,8-12.7,8-19.9c0-8.3-2-16.2-7.3-22.8c-6.2-7.7-12.9-11.4-25.8-11.4c-12.7,0-20.1,6.4-25.4,14.8\r\n\t\tc-5.3,8.4-4.4,18.3-4.4,27.3H175c0-34,8.9-55.7,27.7-68.5c12.7-8.7,28.9-12.5,47.8-12.5c24.8,0,44.5,4.6,61.9,17.8\r\n\t\tc16.1,12.2,24.6,29.4,24.6,52.6C337,209.7,332,221.7,324.9,231.4z"},"children":[{"name":"path","attribs":{"d":"M256,32C132.3,32,32,132.3,32,256s100.3,224,224,224c123.7,0,224-100.3,224-224S379.7,32,256,32z M276.2,358.7\r\n\t\tc-0.5,17.8-13.7,28.8-30.8,28.3c-16.4-0.5-29.3-12.2-28.8-30.1c0.5-17.8,14.1-29.1,30.5-28.6C264.3,328.8,276.8,340.9,276.2,358.7z\r\n\t\t M324.9,231.4c-4.2,5.9-13.6,13.5-25.4,22.7l-13.1,9c-6.4,4.9-10.4,10.7-12.5,17.3c-1.1,3.5-1.9,12.6-2.1,18.7\r\n\t\tc-0.1,1.2-0.8,3.9-4.5,3.9c-3.7,0-35,0-39.1,0c-4.1,0-4.6-2.4-4.5-3.6c0.6-16.6,3-30.3,9.9-41.3c9.3-14.8,35.5-30.4,35.5-30.4\r\n\t\tc4-3,7.1-6.2,9.5-9.7c4.4-6,8-12.7,8-19.9c0-8.3-2-16.2-7.3-22.8c-6.2-7.7-12.9-11.4-25.8-11.4c-12.7,0-20.1,6.4-25.4,14.8\r\n\t\tc-5.3,8.4-4.4,18.3-4.4,27.3H175c0-34,8.9-55.7,27.7-68.5c12.7-8.7,28.9-12.5,47.8-12.5c24.8,0,44.5,4.6,61.9,17.8\r\n\t\tc16.1,12.2,24.6,29.4,24.6,52.6C337,209.7,332,221.7,324.9,231.4z"},"children":[]}]}]}]};exports.helpCircled=helpCircled;var help={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M345.1,77.1C317.6,56.2,286.6,49,247.3,49c-29.8,0-55.3,6.1-75.5,19.7C142,89,128,123.1,128,177h76.8\r\n\t\tc0-14.4-1.4-29.9,7-43.2c8.4-13.3,20.1-23.5,40.2-23.5c20.4,0,30.9,5.9,40.8,18.1c8.4,10.4,11.6,22.8,11.6,36\r\n\t\tc0,11.4-5.8,21.9-12.7,31.4c-3.8,5.6-8.8,10.6-15.1,15.4c0,0-41.5,24.7-56.1,48.1c-10.9,17.4-14.8,39.2-15.7,65.3\r\n\t\tc-0.1,1.9,0.6,5.8,7.2,5.8c6.5,0,56,0,61.8,0c5.8,0,7-4.4,7.1-6.2c0.4-9.5,1.6-24.1,3.3-29.6c3.3-10.4,9.7-19.5,19.7-27.3\r\n\t\tl20.7-14.3c18.7-14.6,33.6-26.5,40.2-35.9c11.3-15.4,19.2-34.4,19.2-56.9C384,123.5,370.5,96.4,345.1,77.1z M242,370.2\r\n\t\tc-25.9-0.8-47.3,17.2-48.2,45.3c-0.8,28.2,19.5,46.7,45.5,47.5c27,0.8,47.9-16.6,48.7-44.7C288.8,390.2,269,371,242,370.2z"},"children":[{"name":"path","attribs":{"d":"M345.1,77.1C317.6,56.2,286.6,49,247.3,49c-29.8,0-55.3,6.1-75.5,19.7C142,89,128,123.1,128,177h76.8\r\n\t\tc0-14.4-1.4-29.9,7-43.2c8.4-13.3,20.1-23.5,40.2-23.5c20.4,0,30.9,5.9,40.8,18.1c8.4,10.4,11.6,22.8,11.6,36\r\n\t\tc0,11.4-5.8,21.9-12.7,31.4c-3.8,5.6-8.8,10.6-15.1,15.4c0,0-41.5,24.7-56.1,48.1c-10.9,17.4-14.8,39.2-15.7,65.3\r\n\t\tc-0.1,1.9,0.6,5.8,7.2,5.8c6.5,0,56,0,61.8,0c5.8,0,7-4.4,7.1-6.2c0.4-9.5,1.6-24.1,3.3-29.6c3.3-10.4,9.7-19.5,19.7-27.3\r\n\t\tl20.7-14.3c18.7-14.6,33.6-26.5,40.2-35.9c11.3-15.4,19.2-34.4,19.2-56.9C384,123.5,370.5,96.4,345.1,77.1z M242,370.2\r\n\t\tc-25.9-0.8-47.3,17.2-48.2,45.3c-0.8,28.2,19.5,46.7,45.5,47.5c27,0.8,47.9-16.6,48.7-44.7C288.8,390.2,269,371,242,370.2z"},"children":[]}]}]}]};exports.help=help;var home={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"448,288 256,64 64,288 112,288 112,448 208,448 208,320 304,320 304,448 400,448 400,288 \t"},"children":[{"name":"polygon","attribs":{"points":"448,288 256,64 64,288 112,288 112,448 208,448 208,320 304,320 304,448 400,448 400,288 \t"},"children":[]}]}]}]};exports.home=home;var icecream={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"128,256 256,480 384,256 \t"},"children":[{"name":"polygon","attribs":{"points":"128,256 256,480 384,256 \t"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M402.5,172.6c-0.8-0.4-1.5-0.8-2.3-1.3c-4.4-2.8-8.4-8.5-8.7-12.7l0.1-0.7c3.2-9,5-19.2,5-29.8c0-53.1-43-96.1-96.1-96.1\r\n\t\t\tc-31.4,0-59.2,15-76.8,38.3c0,0-9.1,14-10.8,29c0,0,1.1-19.4,4.2-31.5c-7.4-2.5-15.4-3.8-23.6-3.8c-41.7,0-75.6,33.8-75.6,75.6\r\n\t\t\tc0,6.4,0.8,12.6,2.3,18.5c0,0.4-0.1,0.7-0.2,1c-0.9,5.1-4,9.5-8.4,12.3c-0.7,0.5-1.5,0.9-2.2,1.3c-8.2,5-13.5,13.6-13.5,23.4\r\n\t\t\tc0,15.4,13.5,28,29.9,28h4.1h252h4.1c16.4,0,29.8-12.5,29.8-28C416,186.3,410.6,177.6,402.5,172.6z"},"children":[{"name":"path","attribs":{"d":"M402.5,172.6c-0.8-0.4-1.5-0.8-2.3-1.3c-4.4-2.8-8.4-8.5-8.7-12.7l0.1-0.7c3.2-9,5-19.2,5-29.8c0-53.1-43-96.1-96.1-96.1\r\n\t\t\tc-31.4,0-59.2,15-76.8,38.3c0,0-9.1,14-10.8,29c0,0,1.1-19.4,4.2-31.5c-7.4-2.5-15.4-3.8-23.6-3.8c-41.7,0-75.6,33.8-75.6,75.6\r\n\t\t\tc0,6.4,0.8,12.6,2.3,18.5c0,0.4-0.1,0.7-0.2,1c-0.9,5.1-4,9.5-8.4,12.3c-0.7,0.5-1.5,0.9-2.2,1.3c-8.2,5-13.5,13.6-13.5,23.4\r\n\t\t\tc0,15.4,13.5,28,29.9,28h4.1h252h4.1c16.4,0,29.8-12.5,29.8-28C416,186.3,410.6,177.6,402.5,172.6z"},"children":[]}]}]}]}]}]};exports.icecream=icecream;var image={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M368,224c26.5,0,48-21.5,48-48c0-26.5-21.5-48-48-48c-26.5,0-48,21.5-48,48C320,202.5,341.5,224,368,224z"},"children":[{"name":"path","attribs":{"d":"M368,224c26.5,0,48-21.5,48-48c0-26.5-21.5-48-48-48c-26.5,0-48,21.5-48,48C320,202.5,341.5,224,368,224z"},"children":[]}]},{"name":"path","attribs":{"d":"M452,64H60c-15.6,0-28,12.7-28,28.3v327.4c0,15.6,12.4,28.3,28,28.3h392c15.6,0,28-12.7,28-28.3V92.3\r\n\t\tC480,76.7,467.6,64,452,64z M348.9,261.7c-3-3.5-7.6-6.2-12.8-6.2c-5.1,0-8.7,2.4-12.8,5.7l-18.7,15.8c-3.9,2.8-7,4.7-11.5,4.7\r\n\t\tc-4.3,0-8.2-1.6-11-4.1c-1-0.9-2.8-2.6-4.3-4.1L224,215.3c-4-4.6-10-7.5-16.7-7.5c-6.7,0-12.9,3.3-16.8,7.8L64,368.2V107.7\r\n\t\tc1-6.8,6.3-11.7,13.1-11.7h357.7c6.9,0,12.5,5.1,12.9,12l0.3,260.4L348.9,261.7z"},"children":[{"name":"path","attribs":{"d":"M452,64H60c-15.6,0-28,12.7-28,28.3v327.4c0,15.6,12.4,28.3,28,28.3h392c15.6,0,28-12.7,28-28.3V92.3\r\n\t\tC480,76.7,467.6,64,452,64z M348.9,261.7c-3-3.5-7.6-6.2-12.8-6.2c-5.1,0-8.7,2.4-12.8,5.7l-18.7,15.8c-3.9,2.8-7,4.7-11.5,4.7\r\n\t\tc-4.3,0-8.2-1.6-11-4.1c-1-0.9-2.8-2.6-4.3-4.1L224,215.3c-4-4.6-10-7.5-16.7-7.5c-6.7,0-12.9,3.3-16.8,7.8L64,368.2V107.7\r\n\t\tc1-6.8,6.3-11.7,13.1-11.7h357.7c6.9,0,12.5,5.1,12.9,12l0.3,260.4L348.9,261.7z"},"children":[]}]}]}]};exports.image=image;var images={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M457.6,140.2l-82.5-4l-4.8-53.8c-1-11.3-11.1-19.2-22.9-18.3L51.4,88.4c-11.8,1-20.3,10.5-19.4,21.7l21.2,235.8\r\n\t\t\tc1,11.3,11.2,19.2,22.9,18.3l15-1.2l-2.4,45.8c-0.6,12.6,9.2,22.8,22.4,23.5L441.3,448c13.2,0.6,24.1-8.6,24.8-21.2L480,163.5\r\n\t\t\tC480.6,151,470.7,140.8,457.6,140.2z M102.6,145.5l-7.1,134.8L78.1,305l-16-178c0-0.2,0-0.3,0-0.5s0-0.3,0-0.5\r\n\t\t\tc0.5-5,4.3-9,9.5-9.4l261-21.4c5.2-0.4,9.7,3,10.5,7.9c0,0.2,0.3,0.2,0.3,0.4c0,0.1,0.3,0.2,0.3,0.4l2.7,30.8l-219-10.5\r\n\t\t\tC114.2,123.8,103.2,133,102.6,145.5z M436.7,382.4l-46.7-55.3l-27.5-32.7c-2.4-2.9-6.3-5.3-10.6-5.5c-4.3-0.2-7.5,1.5-11.1,4.1\r\n\t\t\tl-16.4,11.9c-3.5,2.1-6.2,3.5-9.9,3.3c-3.6-0.2-6.8-1.6-9.1-3.8c-0.8-0.8-2.3-2.2-3.5-3.4l-42.8-48.9c-3.1-3.9-8.2-6.4-13.8-6.7\r\n\t\t\tc-5.7-0.3-11.2,2.1-14.8,5.6L129.4,359.8l-6.8,7.4l0.3-6.8l6.8-128.9l3.3-62.9c0-0.2,0-0.4,0-0.5c0-0.2,0-0.4,0-0.5\r\n\t\t\tc1.4-5.4,6.2-9.3,11.9-9l204.2,9.8l28.7,1.4l58.3,2.8c5.8,0.3,10.3,4.7,10.4,10.2c0,0.2,0.3,0.3,0.3,0.5c0,0.2,0.3,0.3,0.3,0.5\r\n\t\t\tL436.7,382.4z"},"children":[{"name":"path","attribs":{"d":"M457.6,140.2l-82.5-4l-4.8-53.8c-1-11.3-11.1-19.2-22.9-18.3L51.4,88.4c-11.8,1-20.3,10.5-19.4,21.7l21.2,235.8\r\n\t\t\tc1,11.3,11.2,19.2,22.9,18.3l15-1.2l-2.4,45.8c-0.6,12.6,9.2,22.8,22.4,23.5L441.3,448c13.2,0.6,24.1-8.6,24.8-21.2L480,163.5\r\n\t\t\tC480.6,151,470.7,140.8,457.6,140.2z M102.6,145.5l-7.1,134.8L78.1,305l-16-178c0-0.2,0-0.3,0-0.5s0-0.3,0-0.5\r\n\t\t\tc0.5-5,4.3-9,9.5-9.4l261-21.4c5.2-0.4,9.7,3,10.5,7.9c0,0.2,0.3,0.2,0.3,0.4c0,0.1,0.3,0.2,0.3,0.4l2.7,30.8l-219-10.5\r\n\t\t\tC114.2,123.8,103.2,133,102.6,145.5z M436.7,382.4l-46.7-55.3l-27.5-32.7c-2.4-2.9-6.3-5.3-10.6-5.5c-4.3-0.2-7.5,1.5-11.1,4.1\r\n\t\t\tl-16.4,11.9c-3.5,2.1-6.2,3.5-9.9,3.3c-3.6-0.2-6.8-1.6-9.1-3.8c-0.8-0.8-2.3-2.2-3.5-3.4l-42.8-48.9c-3.1-3.9-8.2-6.4-13.8-6.7\r\n\t\t\tc-5.7-0.3-11.2,2.1-14.8,5.6L129.4,359.8l-6.8,7.4l0.3-6.8l6.8-128.9l3.3-62.9c0-0.2,0-0.4,0-0.5c0-0.2,0-0.4,0-0.5\r\n\t\t\tc1.4-5.4,6.2-9.3,11.9-9l204.2,9.8l28.7,1.4l58.3,2.8c5.8,0.3,10.3,4.7,10.4,10.2c0,0.2,0.3,0.3,0.3,0.5c0,0.2,0.3,0.3,0.3,0.5\r\n\t\t\tL436.7,382.4z"},"children":[]}]}]}]},{"name":"path","attribs":{"d":"M373.2,262.3c19.4,0,35.2-15.8,35.2-35.2s-15.7-35.2-35.2-35.2c-19.4,0-35.2,15.7-35.2,35.2S353.7,262.3,373.2,262.3z"},"children":[{"name":"path","attribs":{"d":"M373.2,262.3c19.4,0,35.2-15.8,35.2-35.2s-15.7-35.2-35.2-35.2c-19.4,0-35.2,15.7-35.2,35.2S353.7,262.3,373.2,262.3z"},"children":[]}]}]}]};exports.images=images;var informationCircled={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M480,253C478.3,129.3,376.7,30.4,253,32S30.4,135.3,32,259c1.7,123.7,103.3,222.6,227,221C382.7,478.3,481.7,376.7,480,253\r\n\t\tz M256,111.9c17.7,0,32,14.3,32,32s-14.3,32-32,32c-17.7,0-32-14.3-32-32S238.3,111.9,256,111.9z M300,395h-88v-11h22V224h-22v-12\r\n\t\th66v172h22V395z"},"children":[{"name":"path","attribs":{"d":"M480,253C478.3,129.3,376.7,30.4,253,32S30.4,135.3,32,259c1.7,123.7,103.3,222.6,227,221C382.7,478.3,481.7,376.7,480,253\r\n\t\tz M256,111.9c17.7,0,32,14.3,32,32s-14.3,32-32,32c-17.7,0-32-14.3-32-32S238.3,111.9,256,111.9z M300,395h-88v-11h22V224h-22v-12\r\n\t\th66v172h22V395z"},"children":[]}]}]}]};exports.informationCircled=informationCircled;var information={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"288,448 288,192 192,192 192,208 224,208 224,448 192,448 192,464 320,464 320,448 \t"},"children":[{"name":"polygon","attribs":{"points":"288,448 288,192 192,192 192,208 224,208 224,448 192,448 192,464 320,464 320,448 \t"},"children":[]}]},{"name":"path","attribs":{"d":"M255.8,144.5c26.6,0,48.2-21.6,48.2-48.2s-21.6-48.2-48.2-48.2c-26.6,0-48.2,21.6-48.2,48.2S229.2,144.5,255.8,144.5z"},"children":[{"name":"path","attribs":{"d":"M255.8,144.5c26.6,0,48.2-21.6,48.2-48.2s-21.6-48.2-48.2-48.2c-26.6,0-48.2,21.6-48.2,48.2S229.2,144.5,255.8,144.5z"},"children":[]}]}]}]};exports.information=information;var ionic={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M423.592,132.804C427.006,127.714,429,121.59,429,115c0-17.675-14.33-32-32-32c-6.59,0-12.714,1.994-17.805,5.409\r\n\t\tC344.709,63.015,302.11,48,256,48C141.125,48,48,141.125,48,256c0,114.877,93.125,208,208,208c114.873,0,208-93.123,208-208\r\n\t\tC464,209.889,448.984,167.29,423.592,132.804z M391.83,391.832c-17.646,17.646-38.191,31.499-61.064,41.174\r\n\t\tc-23.672,10.012-48.826,15.089-74.766,15.089c-25.94,0-51.095-5.077-74.767-15.089c-22.873-9.675-43.417-23.527-61.064-41.174\r\n\t\ts-31.5-38.191-41.174-61.064C68.982,307.096,63.905,281.94,63.905,256c0-25.94,5.077-51.095,15.089-74.767\r\n\t\tc9.674-22.873,23.527-43.417,41.174-61.064s38.191-31.5,61.064-41.174C204.905,68.982,230.06,63.905,256,63.905\r\n\t\tc25.939,0,51.094,5.077,74.766,15.089c13.446,5.687,26.08,12.83,37.802,21.327C366.293,104.719,365,109.707,365,115\r\n\t\tc0,17.675,14.327,32,32,32c5.293,0,10.28-1.293,14.678-3.568c8.498,11.721,15.641,24.355,21.327,37.801\r\n\t\tc10.013,23.672,15.09,48.827,15.09,74.767c0,25.939-5.077,51.096-15.09,74.768C423.33,353.641,409.478,374.186,391.83,391.832z"},"children":[{"name":"path","attribs":{"d":"M423.592,132.804C427.006,127.714,429,121.59,429,115c0-17.675-14.33-32-32-32c-6.59,0-12.714,1.994-17.805,5.409\r\n\t\tC344.709,63.015,302.11,48,256,48C141.125,48,48,141.125,48,256c0,114.877,93.125,208,208,208c114.873,0,208-93.123,208-208\r\n\t\tC464,209.889,448.984,167.29,423.592,132.804z M391.83,391.832c-17.646,17.646-38.191,31.499-61.064,41.174\r\n\t\tc-23.672,10.012-48.826,15.089-74.766,15.089c-25.94,0-51.095-5.077-74.767-15.089c-22.873-9.675-43.417-23.527-61.064-41.174\r\n\t\ts-31.5-38.191-41.174-61.064C68.982,307.096,63.905,281.94,63.905,256c0-25.94,5.077-51.095,15.089-74.767\r\n\t\tc9.674-22.873,23.527-43.417,41.174-61.064s38.191-31.5,61.064-41.174C204.905,68.982,230.06,63.905,256,63.905\r\n\t\tc25.939,0,51.094,5.077,74.766,15.089c13.446,5.687,26.08,12.83,37.802,21.327C366.293,104.719,365,109.707,365,115\r\n\t\tc0,17.675,14.327,32,32,32c5.293,0,10.28-1.293,14.678-3.568c8.498,11.721,15.641,24.355,21.327,37.801\r\n\t\tc10.013,23.672,15.09,48.827,15.09,74.767c0,25.939-5.077,51.096-15.09,74.768C423.33,353.641,409.478,374.186,391.83,391.832z"},"children":[]}]},{"name":"circle","attribs":{"cx":"256.003","cy":"256","r":"96"},"children":[{"name":"circle","attribs":{"cx":"256.003","cy":"256","r":"96"},"children":[]}]}]}]};exports.ionic=ionic;var iosAlarmOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M438.4,192.4c12.2-14.2,19.6-32.3,19.6-52.2c0.1-43.8-35.5-79.6-80.4-82.1c-1.6-0.1-3.1-0.1-4.8-0.1\r\n\t\t\tc-20.4-0.1-39.1,6.8-53.8,18.1l53.8,52.4l-10.5,10.4c-25.7-19.4-57-32-91-34.9v-0.1c0-8.5-7-15.5-15.5-15.5\r\n\t\t\tc-8.5,0-15.5,7-15.5,15.5v0.1c-33.9,2.9-65.1,15.5-90.7,34.9l-10.4-10.4l53.8-52.4c-14.7-11.4-33.4-18.2-53.7-18.1\r\n\t\t\tc-1.6,0-3.2,0.1-4.8,0.1c-45,2.5-80.6,38.3-80.4,82.1c0,19.8,7.4,38,19.6,52.2l54-52.6l9.5,9.5c-35.1,31.9-57.1,78-57.1,129.2\r\n\t\t\tc0,43.9,16.2,84,43,114.7l-36.4,44.6L99,448l35.2-42.9c31.6,30.2,74.4,48.9,121.6,48.9h0.1c0,0,0.2,0,0.3,0\r\n\t\t\tc47.2,0,90.2-18.7,121.8-48.9l35.2,43l12.3-10.1L389,393.3c26.8-30.8,43-70.9,43-114.7c0-51.1-22-97.3-57.2-129.3l9.5-9.5\r\n\t\t\tL438.4,192.4z M76.2,167.8c-4.2-8.6-6.4-18.4-6.5-28c-0.1-35.1,28.4-64.6,65.5-66.8c12.7-0.7,23.1,1.4,32.1,6.1L76.2,167.8z\r\n\t\t\t M415.9,276.5c0,87.7-72,157.1-160.1,157.1C167.8,433.6,96,364.2,96,276.5c0-87.7,71.8-158.7,159.9-158.7\r\n\t\t\tC344,117.8,415.9,188.7,415.9,276.5z M344.7,79.2c8.8-4.8,19.3-6.8,32.1-6.1c37.2,2,65.6,31.5,65.5,66.8c0,9.6-2.3,19.4-6.5,28.1\r\n\t\t\tL344.7,79.2z"},"children":[{"name":"path","attribs":{"d":"M438.4,192.4c12.2-14.2,19.6-32.3,19.6-52.2c0.1-43.8-35.5-79.6-80.4-82.1c-1.6-0.1-3.1-0.1-4.8-0.1\r\n\t\t\tc-20.4-0.1-39.1,6.8-53.8,18.1l53.8,52.4l-10.5,10.4c-25.7-19.4-57-32-91-34.9v-0.1c0-8.5-7-15.5-15.5-15.5\r\n\t\t\tc-8.5,0-15.5,7-15.5,15.5v0.1c-33.9,2.9-65.1,15.5-90.7,34.9l-10.4-10.4l53.8-52.4c-14.7-11.4-33.4-18.2-53.7-18.1\r\n\t\t\tc-1.6,0-3.2,0.1-4.8,0.1c-45,2.5-80.6,38.3-80.4,82.1c0,19.8,7.4,38,19.6,52.2l54-52.6l9.5,9.5c-35.1,31.9-57.1,78-57.1,129.2\r\n\t\t\tc0,43.9,16.2,84,43,114.7l-36.4,44.6L99,448l35.2-42.9c31.6,30.2,74.4,48.9,121.6,48.9h0.1c0,0,0.2,0,0.3,0\r\n\t\t\tc47.2,0,90.2-18.7,121.8-48.9l35.2,43l12.3-10.1L389,393.3c26.8-30.8,43-70.9,43-114.7c0-51.1-22-97.3-57.2-129.3l9.5-9.5\r\n\t\t\tL438.4,192.4z M76.2,167.8c-4.2-8.6-6.4-18.4-6.5-28c-0.1-35.1,28.4-64.6,65.5-66.8c12.7-0.7,23.1,1.4,32.1,6.1L76.2,167.8z\r\n\t\t\t M415.9,276.5c0,87.7-72,157.1-160.1,157.1C167.8,433.6,96,364.2,96,276.5c0-87.7,71.8-158.7,159.9-158.7\r\n\t\t\tC344,117.8,415.9,188.7,415.9,276.5z M344.7,79.2c8.8-4.8,19.3-6.8,32.1-6.1c37.2,2,65.6,31.5,65.5,66.8c0,9.6-2.3,19.4-6.5,28.1\r\n\t\t\tL344.7,79.2z"},"children":[]}]}]}]},{"name":"polygon","attribs":{"points":"256,160 256,288 160,288 160,304 272,304 272,160 \t"},"children":[{"name":"polygon","attribs":{"points":"256,160 256,288 160,288 160,304 272,304 272,160 \t"},"children":[]}]}]}]};exports.iosAlarmOutline=iosAlarmOutline;var iosAlarm={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M438.4,192.4c12.2-14.2,19.6-32.3,19.6-52.2c0.1-43.8-35.5-79.6-80.4-82.1c-1.6-0.1-3.1-0.1-4.8-0.1\r\n\t\tc-20.4-0.1-39.1,6.8-53.8,18.1l53.8,52.4l-10.6,10.4c-25.7-19.4-57.2-32-91.2-34.9v-0.1c0-8.5-7-15.5-15.5-15.5s-15.5,7-15.5,15.5\r\n\t\tv0.1c-34,2.9-65,15.5-90.6,34.9L139,128.6l53.8-52.4c-14.7-11.4-33.4-18.2-53.7-18.1c-1.6,0-3.2,0.1-4.8,0.1\r\n\t\tc-45,2.5-80.6,38.3-80.4,82.1c0,19.8,7.4,38,19.6,52.2l54-52.6l9.5,9.5c-35.1,31.9-57.1,78-57.1,129.2c0,43.9,16.2,84,43,114.7\r\n\t\tl-36.4,44.6L99,448l35.2-42.9c31.6,30.2,74.4,48.9,121.6,48.9h0.1c0,0,0.2,0,0.3,0c47.2,0,90.2-18.7,121.8-48.9l35.2,43l12.3-10.1\r\n\t\tL389,393.3c26.8-30.8,43-70.9,43-114.7c0-51.1-22-97.3-57.2-129.3l9.5-9.5L438.4,192.4z M272,304H160v-16h96V160h16V304z"},"children":[{"name":"path","attribs":{"d":"M438.4,192.4c12.2-14.2,19.6-32.3,19.6-52.2c0.1-43.8-35.5-79.6-80.4-82.1c-1.6-0.1-3.1-0.1-4.8-0.1\r\n\t\tc-20.4-0.1-39.1,6.8-53.8,18.1l53.8,52.4l-10.6,10.4c-25.7-19.4-57.2-32-91.2-34.9v-0.1c0-8.5-7-15.5-15.5-15.5s-15.5,7-15.5,15.5\r\n\t\tv0.1c-34,2.9-65,15.5-90.6,34.9L139,128.6l53.8-52.4c-14.7-11.4-33.4-18.2-53.7-18.1c-1.6,0-3.2,0.1-4.8,0.1\r\n\t\tc-45,2.5-80.6,38.3-80.4,82.1c0,19.8,7.4,38,19.6,52.2l54-52.6l9.5,9.5c-35.1,31.9-57.1,78-57.1,129.2c0,43.9,16.2,84,43,114.7\r\n\t\tl-36.4,44.6L99,448l35.2-42.9c31.6,30.2,74.4,48.9,121.6,48.9h0.1c0,0,0.2,0,0.3,0c47.2,0,90.2-18.7,121.8-48.9l35.2,43l12.3-10.1\r\n\t\tL389,393.3c26.8-30.8,43-70.9,43-114.7c0-51.1-22-97.3-57.2-129.3l9.5-9.5L438.4,192.4z M272,304H160v-16h96V160h16V304z"},"children":[]}]}]}]};exports.iosAlarm=iosAlarm;var iosAlbumsOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M464,144v288H48V144H464 M480,128H32v320h448V128L480,128z"},"children":[{"name":"path","attribs":{"d":"M464,144v288H48V144H464 M480,128H32v320h448V128L480,128z"},"children":[]}]},{"name":"rect","attribs":{"x":"72","y":"96","width":"368","height":"16"},"children":[{"name":"rect","attribs":{"x":"72","y":"96","width":"368","height":"16"},"children":[]}]},{"name":"rect","attribs":{"x":"104","y":"64","width":"304","height":"16"},"children":[{"name":"rect","attribs":{"x":"104","y":"64","width":"304","height":"16"},"children":[]}]}]}]};exports.iosAlbumsOutline=iosAlbumsOutline;var iosAlbums={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M480,128H32v320h448V128L480,128z"},"children":[{"name":"path","attribs":{"d":"M480,128H32v320h448V128L480,128z"},"children":[]}]},{"name":"rect","attribs":{"x":"72","y":"96","width":"368","height":"16"},"children":[{"name":"rect","attribs":{"x":"72","y":"96","width":"368","height":"16"},"children":[]}]},{"name":"rect","attribs":{"x":"104","y":"64","width":"304","height":"16"},"children":[{"name":"rect","attribs":{"x":"104","y":"64","width":"304","height":"16"},"children":[]}]}]}]};exports.iosAlbums=iosAlbums;var iosAmericanfootballOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M378.605,133.395C305.902,60.691,189.38,47.998,116.85,48c-38.926,0.001-65.191,3.658-65.191,3.658\r\n\t\ts-29.984,215.227,81.736,326.947C206.099,451.309,322.617,464,395.149,464c38.926,0,65.192-3.658,65.192-3.658\r\n\t\tS490.326,245.116,378.605,133.395z M65.142,65.208C76.137,64.194,94.374,63,116.856,63H117l-0.068-0.071\r\n\t\tc27.167,0,53.167,1.754,77.792,5.22l-126.6,126.581c-1.025-7.283-1.91-14.697-2.64-22.246\r\n\t\tC60.898,125.049,63.398,84.256,65.142,65.208z M143.9,368.102c-23.85-23.852-42.793-54.938-56.304-92.396\r\n\t\tc-6.973-19.332-12.51-40.373-16.57-62.866L212.838,71.05c10.672,1.929,21.064,4.191,31.141,6.804\r\n\t\tc52.027,13.492,93.783,35.708,124.139,66.064c23.851,23.85,42.786,54.928,56.297,92.386c6.974,19.333,12.509,40.375,16.567,62.871\r\n\t\tL299.17,440.986c-10.66-1.93-21.041-4.191-31.104-6.801C216.036,420.696,174.26,398.459,143.9,368.102z M446.861,446.868\r\n\t\tc-10.994,1.012-29.23,2.275-51.71,2.275c-27.192,0-53.225-1.77-77.876-5.25l126.607-126.607c1.024,7.279,1.908,14.688,2.638,22.233\r\n\t\tC451.108,386.956,448.606,427.817,446.861,446.868z"},"children":[{"name":"path","attribs":{"d":"M378.605,133.395C305.902,60.691,189.38,47.998,116.85,48c-38.926,0.001-65.191,3.658-65.191,3.658\r\n\t\ts-29.984,215.227,81.736,326.947C206.099,451.309,322.617,464,395.149,464c38.926,0,65.192-3.658,65.192-3.658\r\n\t\tS490.326,245.116,378.605,133.395z M65.142,65.208C76.137,64.194,94.374,63,116.856,63H117l-0.068-0.071\r\n\t\tc27.167,0,53.167,1.754,77.792,5.22l-126.6,126.581c-1.025-7.283-1.91-14.697-2.64-22.246\r\n\t\tC60.898,125.049,63.398,84.256,65.142,65.208z M143.9,368.102c-23.85-23.852-42.793-54.938-56.304-92.396\r\n\t\tc-6.973-19.332-12.51-40.373-16.57-62.866L212.838,71.05c10.672,1.929,21.064,4.191,31.141,6.804\r\n\t\tc52.027,13.492,93.783,35.708,124.139,66.064c23.851,23.85,42.786,54.928,56.297,92.386c6.974,19.333,12.509,40.375,16.567,62.871\r\n\t\tL299.17,440.986c-10.66-1.93-21.041-4.191-31.104-6.801C216.036,420.696,174.26,398.459,143.9,368.102z M446.861,446.868\r\n\t\tc-10.994,1.012-29.23,2.275-51.71,2.275c-27.192,0-53.225-1.77-77.876-5.25l126.607-126.607c1.024,7.279,1.908,14.688,2.638,22.233\r\n\t\tC451.108,386.956,448.606,427.817,446.861,446.868z"},"children":[]}]},{"name":"polygon","attribs":{"points":"307.304,317.847 329.929,340.479 301.275,369.131 312.59,380.445 380.471,312.564 369.157,301.25 340.436,329.971 \r\n\t\t317.811,307.34 346.527,278.623 335.214,267.31 306.499,296.024 283.866,273.386 312.568,244.684 301.255,233.37 272.555,262.07 \r\n\t\t249.929,239.439 278.626,210.742 267.312,199.429 238.618,228.124 215.987,205.487 244.674,176.8 233.361,165.487 204.676,194.172 \r\n\t\t182.052,171.542 210.734,142.86 199.421,131.547 131.538,199.429 142.852,210.743 171.545,182.049 194.169,204.679 165.478,233.37 \r\n\t\t176.791,244.683 205.48,215.994 228.11,238.631 199.432,267.31 210.745,278.623 239.422,249.946 262.048,272.577 233.374,301.251 \r\n\t\t244.688,312.564 273.359,283.893 295.992,306.531 267.332,335.191 278.646,346.505 \t"},"children":[{"name":"polygon","attribs":{"points":"307.304,317.847 329.929,340.479 301.275,369.131 312.59,380.445 380.471,312.564 369.157,301.25 340.436,329.971 \r\n\t\t317.811,307.34 346.527,278.623 335.214,267.31 306.499,296.024 283.866,273.386 312.568,244.684 301.255,233.37 272.555,262.07 \r\n\t\t249.929,239.439 278.626,210.742 267.312,199.429 238.618,228.124 215.987,205.487 244.674,176.8 233.361,165.487 204.676,194.172 \r\n\t\t182.052,171.542 210.734,142.86 199.421,131.547 131.538,199.429 142.852,210.743 171.545,182.049 194.169,204.679 165.478,233.37 \r\n\t\t176.791,244.683 205.48,215.994 228.11,238.631 199.432,267.31 210.745,278.623 239.422,249.946 262.048,272.577 233.374,301.251 \r\n\t\t244.688,312.564 273.359,283.893 295.992,306.531 267.332,335.191 278.646,346.505 \t"},"children":[]}]}]}]};exports.iosAmericanfootballOutline=iosAmericanfootballOutline;var iosAmericanfootball={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M378.605,133.395C305.902,60.691,189.381,47.998,116.85,48c-38.926,0.001-65.191,3.658-65.191,3.658\r\n\t\t\ts-29.984,215.227,81.736,326.947C206.099,451.309,322.617,464,395.148,464c38.927,0,65.193-3.658,65.193-3.658\r\n\t\t\tS490.327,245.116,378.605,133.395z M68.124,194.728L194.707,68.146c6.123,0.861,12.164,1.825,18.112,2.899L71.025,212.838\r\n\t\t\tC69.955,206.901,68.987,200.862,68.124,194.728z M267.312,335.195l28.688-28.688l-22.627-22.628l-28.688,28.688l-11.313-11.312\r\n\t\t\tl28.688-28.688l-22.627-22.627l-28.688,28.688l-11.313-11.312l28.688-28.688l-22.628-22.628l-28.688,28.688l-11.313-11.312\r\n\t\t\tl28.689-28.689l-22.628-22.627l-28.688,28.688l-11.314-11.313l67.884-67.883l11.313,11.314l-28.688,28.688l22.628,22.627\r\n\t\t\tl28.688-28.688l11.313,11.313l-28.688,28.688l22.628,22.628l28.688-28.688l11.314,11.313l-28.688,28.688l22.627,22.627\r\n\t\t\tl28.688-28.688l11.313,11.312l-28.688,28.688l22.628,22.628l28.688-28.688l11.312,11.313l-28.688,28.688l22.627,22.627\r\n\t\t\tl28.688-28.688l11.314,11.312l-67.883,67.884l-11.313-11.313l28.688-28.688l-22.628-22.628l-28.688,28.688L267.312,335.195z\r\n\t\t\t M317.259,443.891c-6.121-0.863-12.159-1.83-18.104-2.906L440.979,299.16c1.071,5.938,2.038,11.977,2.901,18.111L317.259,443.891z\r\n\t\t\t"},"children":[{"name":"path","attribs":{"d":"M378.605,133.395C305.902,60.691,189.381,47.998,116.85,48c-38.926,0.001-65.191,3.658-65.191,3.658\r\n\t\t\ts-29.984,215.227,81.736,326.947C206.099,451.309,322.617,464,395.148,464c38.927,0,65.193-3.658,65.193-3.658\r\n\t\t\tS490.327,245.116,378.605,133.395z M68.124,194.728L194.707,68.146c6.123,0.861,12.164,1.825,18.112,2.899L71.025,212.838\r\n\t\t\tC69.955,206.901,68.987,200.862,68.124,194.728z M267.312,335.195l28.688-28.688l-22.627-22.628l-28.688,28.688l-11.313-11.312\r\n\t\t\tl28.688-28.688l-22.627-22.627l-28.688,28.688l-11.313-11.312l28.688-28.688l-22.628-22.628l-28.688,28.688l-11.313-11.312\r\n\t\t\tl28.689-28.689l-22.628-22.627l-28.688,28.688l-11.314-11.313l67.884-67.883l11.313,11.314l-28.688,28.688l22.628,22.627\r\n\t\t\tl28.688-28.688l11.313,11.313l-28.688,28.688l22.628,22.628l28.688-28.688l11.314,11.313l-28.688,28.688l22.627,22.627\r\n\t\t\tl28.688-28.688l11.313,11.312l-28.688,28.688l22.628,22.628l28.688-28.688l11.312,11.313l-28.688,28.688l22.627,22.627\r\n\t\t\tl28.688-28.688l11.314,11.312l-67.883,67.884l-11.313-11.313l28.688-28.688l-22.628-22.628l-28.688,28.688L267.312,335.195z\r\n\t\t\t M317.259,443.891c-6.121-0.863-12.159-1.83-18.104-2.906L440.979,299.16c1.071,5.938,2.038,11.977,2.901,18.111L317.259,443.891z\r\n\t\t\t"},"children":[]}]}]}]}]}]};exports.iosAmericanfootball=iosAmericanfootball;var iosAnalyticsOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,48c28.087,0,55.325,5.497,80.958,16.339c24.767,10.476,47.013,25.476,66.12,44.583s34.107,41.354,44.583,66.12\r\n\t\tC458.503,200.675,464,227.913,464,256s-5.497,55.325-16.339,80.958c-10.476,24.767-25.476,47.013-44.583,66.12\r\n\t\ts-41.354,34.107-66.12,44.583C311.325,458.503,284.087,464,256,464s-55.325-5.497-80.958-16.339\r\n\t\tc-24.767-10.476-47.013-25.476-66.12-44.583s-34.107-41.354-44.583-66.12C53.497,311.325,48,284.087,48,256\r\n\t\ts5.497-55.325,16.339-80.958c10.476-24.767,25.476-47.013,44.583-66.12s41.354-34.107,66.12-44.583\r\n\t\tC200.675,53.497,227.913,48,256,48 M256,32C132.288,32,32,132.288,32,256s100.288,224,224,224s224-100.288,224-224\r\n\t\tS379.712,32,256,32L256,32z"},"children":[{"name":"path","attribs":{"d":"M256,48c28.087,0,55.325,5.497,80.958,16.339c24.767,10.476,47.013,25.476,66.12,44.583s34.107,41.354,44.583,66.12\r\n\t\tC458.503,200.675,464,227.913,464,256s-5.497,55.325-16.339,80.958c-10.476,24.767-25.476,47.013-44.583,66.12\r\n\t\ts-41.354,34.107-66.12,44.583C311.325,458.503,284.087,464,256,464s-55.325-5.497-80.958-16.339\r\n\t\tc-24.767-10.476-47.013-25.476-66.12-44.583s-34.107-41.354-44.583-66.12C53.497,311.325,48,284.087,48,256\r\n\t\ts5.497-55.325,16.339-80.958c10.476-24.767,25.476-47.013,44.583-66.12s41.354-34.107,66.12-44.583\r\n\t\tC200.675,53.497,227.913,48,256,48 M256,32C132.288,32,32,132.288,32,256s100.288,224,224,224s224-100.288,224-224\r\n\t\tS379.712,32,256,32L256,32z"},"children":[]}]},{"name":"path","attribs":{"d":"M107.776,320c-25.252,0-41.168-18.448-41.902-19.317c-2.841-3.359-2.401-8.371,0.982-11.192\r\n\t\tc3.374-2.813,8.401-2.388,11.248,0.948c0.604,0.701,14.606,16.597,35.606,13.186c12.104-1.964,28.08-25.681,38.652-41.376\r\n\t\tc4.251-6.311,7.922-11.761,11.215-15.856c16.773-20.865,33.899-23.333,45.325-21.726c24.139,3.394,44.358,27.498,53.689,49.882\r\n\t\tc7.454,17.884,19.042,28.256,32.628,29.208c15.408,1.061,31.539-9.885,43.105-29.336c1.228-2.064,2.562-4.496,3.978-7.07\r\n\t\tc9.482-17.262,23.814-43.35,51.75-43.35c31.146,0,51.957,34.286,52.828,35.746c2.252,3.774,0.996,8.648-2.806,10.885\r\n\t\tc-3.8,2.237-8.708,0.988-10.96-2.786c-0.037-0.062-4.493-7.413-11.859-14.568c-6.286-6.107-16.108-13.387-27.203-13.387\r\n\t\tc-18.438,0-29.121,19.445-37.705,35.07c-1.48,2.696-2.88,5.243-4.245,7.538c-14.718,24.751-36.4,38.635-58.01,37.108\r\n\t\tc-19.951-1.398-36.389-15.242-46.284-38.98c-10.013-24.02-28.279-38.417-41.149-40.228c-10.6-1.494-20.895,3.861-30.578,15.906\r\n\t\tc-2.872,3.573-6.539,9.017-10.421,14.779c-13.549,20.114-30.411,45.146-49.37,48.223C113.349,319.784,110.507,320,107.776,320z"},"children":[{"name":"path","attribs":{"d":"M107.776,320c-25.252,0-41.168-18.448-41.902-19.317c-2.841-3.359-2.401-8.371,0.982-11.192\r\n\t\tc3.374-2.813,8.401-2.388,11.248,0.948c0.604,0.701,14.606,16.597,35.606,13.186c12.104-1.964,28.08-25.681,38.652-41.376\r\n\t\tc4.251-6.311,7.922-11.761,11.215-15.856c16.773-20.865,33.899-23.333,45.325-21.726c24.139,3.394,44.358,27.498,53.689,49.882\r\n\t\tc7.454,17.884,19.042,28.256,32.628,29.208c15.408,1.061,31.539-9.885,43.105-29.336c1.228-2.064,2.562-4.496,3.978-7.07\r\n\t\tc9.482-17.262,23.814-43.35,51.75-43.35c31.146,0,51.957,34.286,52.828,35.746c2.252,3.774,0.996,8.648-2.806,10.885\r\n\t\tc-3.8,2.237-8.708,0.988-10.96-2.786c-0.037-0.062-4.493-7.413-11.859-14.568c-6.286-6.107-16.108-13.387-27.203-13.387\r\n\t\tc-18.438,0-29.121,19.445-37.705,35.07c-1.48,2.696-2.88,5.243-4.245,7.538c-14.718,24.751-36.4,38.635-58.01,37.108\r\n\t\tc-19.951-1.398-36.389-15.242-46.284-38.98c-10.013-24.02-28.279-38.417-41.149-40.228c-10.6-1.494-20.895,3.861-30.578,15.906\r\n\t\tc-2.872,3.573-6.539,9.017-10.421,14.779c-13.549,20.114-30.411,45.146-49.37,48.223C113.349,319.784,110.507,320,107.776,320z"},"children":[]}]}]}]};exports.iosAnalyticsOutline=iosAnalyticsOutline;var iosAnalytics={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,32C141.174,32,46.544,118.404,33.54,229.739C32.534,238.354,32,247.114,32,256c0,1.783,0.026,3.561,0.067,5.333\r\n\tC34.901,382.581,134.071,480,256,480c105.255,0,193.537-72.602,217.542-170.454c1.337-5.451,2.474-10.979,3.404-16.579\r\n\tC478.943,280.939,480,268.594,480,256C480,132.288,379.712,32,256,32z M462.585,280.352c-7.265-7.807-13.064-16.09-15.702-20.429\r\n\tc-0.871-1.47-21.682-35.994-52.828-35.994c-27.937,0-42.269,26.269-51.751,43.65c-1.415,2.593-2.75,5.041-3.978,7.118\r\n\tc-11.566,19.587-27.693,30.608-43.105,29.541c-13.586-0.959-25.174-11.403-32.628-29.41c-9.331-22.54-29.551-46.812-53.689-50.229\r\n\tc-11.428-1.619-28.553,0.866-45.325,21.876c-3.293,4.124-6.964,9.612-11.215,15.967c-10.572,15.804-26.549,39.686-38.653,41.663\r\n\tc-21.02,3.438-35.021-12.596-35.583-13.249l-0.487-0.58l-0.587-0.479c-0.208-0.17-15.041-12.417-29.047-33.334\r\n\tc0-0.155-0.006-0.31-0.006-0.464c0-28.087,5.497-55.325,16.339-80.958c10.476-24.767,25.476-47.013,44.583-66.12\r\n\ts41.354-34.107,66.12-44.583C200.675,53.497,227.913,48,256,48s55.325,5.497,80.958,16.339\r\n\tc24.767,10.476,47.013,25.476,66.12,44.583s34.107,41.354,44.583,66.12C458.503,200.675,464,227.913,464,256\r\n\tC464,264.197,463.518,272.318,462.585,280.352z"},"children":[]}]};exports.iosAnalytics=iosAnalytics;var iosArrowBack={"viewBox":"0 0 512 512","children":[{"name":"polygon","attribs":{"points":"352,128.4 319.7,96 160,256 160,256 160,256 319.7,416 352,383.6 224.7,256 "},"children":[]}]};exports.iosArrowBack=iosArrowBack;var iosArrowDown={"viewBox":"0 0 512 512","children":[{"name":"polygon","attribs":{"points":"396.6,160 416,180.7 256,352 96,180.7 115.3,160 256,310.5 "},"children":[]}]};exports.iosArrowDown=iosArrowDown;var iosArrowForward={"viewBox":"0 0 512 512","children":[{"name":"polygon","attribs":{"points":"160,128.4 192.3,96 352,256 352,256 352,256 192.3,416 160,383.6 287.3,256 "},"children":[]}]};exports.iosArrowForward=iosArrowForward;var iosArrowLeft={"viewBox":"0 0 512 512","children":[{"name":"polygon","attribs":{"points":"352,115.4 331.3,96 160,256 331.3,416 352,396.7 201.5,256 "},"children":[]}]};exports.iosArrowLeft=iosArrowLeft;var iosArrowRight={"viewBox":"0 0 512 512","children":[{"name":"polygon","attribs":{"points":"160,115.4 180.7,96 352,256 180.7,416 160,396.7 310.5,256 "},"children":[]}]};exports.iosArrowRight=iosArrowRight;var iosArrowThinDown={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M349.7,322.2c-3.1-3.1-8-3-11.3,0L264,388.6V104c0-4.4-3.6-8-8-8c-4.4,0-8,3.6-8,8v284.6l-74.4-66.3\r\n\tc-3.4-2.9-8.1-3.2-11.2-0.1c-3.1,3.1-3.3,8.5-0.1,11.4c0,0,87,79.2,88,80s2.8,2.4,5.7,2.4s4.9-1.6,5.7-2.4s88-80,88-80\r\n\tc1.5-1.5,2.3-3.6,2.3-5.7C352,325.8,351.2,323.8,349.7,322.2z"},"children":[]}]};exports.iosArrowThinDown=iosArrowThinDown;var iosArrowThinLeft={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M189.8,349.7c3.1-3.1,3-8,0-11.3L123.4,264H408c4.4,0,8-3.6,8-8c0-4.4-3.6-8-8-8H123.4l66.3-74.4c2.9-3.4,3.2-8.1,0.1-11.2\r\n\tc-3.1-3.1-8.5-3.3-11.4-0.1c0,0-79.2,87-80,88S96,253.1,96,256s1.6,4.9,2.4,5.7s80,88,80,88c1.5,1.5,3.6,2.3,5.7,2.3\r\n\tC186.2,352,188.2,351.2,189.8,349.7z"},"children":[]}]};exports.iosArrowThinLeft=iosArrowThinLeft;var iosArrowThinRight={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M322.2,349.7c-3.1-3.1-3-8,0-11.3l66.4-74.4H104c-4.4,0-8-3.6-8-8c0-4.4,3.6-8,8-8h284.6l-66.3-74.4\r\n\tc-2.9-3.4-3.2-8.1-0.1-11.2c3.1-3.1,8.5-3.3,11.4-0.1c0,0,79.2,87,80,88s2.4,2.8,2.4,5.7s-1.6,4.9-2.4,5.7s-80,88-80,88\r\n\tc-1.5,1.5-3.6,2.3-5.7,2.3C325.8,352,323.8,351.2,322.2,349.7z"},"children":[]}]};exports.iosArrowThinRight=iosArrowThinRight;var iosArrowThinUp={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M349.7,189.8c-3.1,3.1-8,3-11.3,0L264,123.4V408c0,4.4-3.6,8-8,8c-4.4,0-8-3.6-8-8V123.4l-74.4,66.3\r\n\tc-3.4,2.9-8.1,3.2-11.2,0.1c-3.1-3.1-3.3-8.5-0.1-11.4c0,0,87-79.2,88-80s2.8-2.4,5.7-2.4s4.9,1.6,5.7,2.4s88,80,88,80\r\n\tc1.5,1.5,2.3,3.6,2.3,5.7C352,186.2,351.2,188.2,349.7,189.8z"},"children":[]}]};exports.iosArrowThinUp=iosArrowThinUp;var iosArrowUp={"viewBox":"0 0 512 512","children":[{"name":"polygon","attribs":{"points":"396.6,352 416,331.3 256,160 96,331.3 115.3,352 256,201.5 "},"children":[]}]};exports.iosArrowUp=iosArrowUp;var iosAtOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M364.4,320.9c-5.3,7.5-11.6,14.7-18.8,21.4c-7.1,6.6-15.1,12.5-23.7,17.4c-8.6,4.9-17.9,8.8-27.5,11.5s-19.8,4.1-30.3,4.1\r\n\t\tc-15.9,0-31.2-2.6-45.5-7.6c-14.2-5-26.8-12.5-37.5-22.4c-10.7-9.8-21.7-25.9-28.2-41c-5.8-13.4-8.1-27.8-8.1-49.5\r\n\t\tc0-15.6,3.6-33,9.8-47.6c6-14,14.3-26.4,24.9-36.9c10.4-10.3,23-18.6,37.6-24.8c13.1-5.5,28.5-8.2,47.1-8.2c14.9,0,29,2.4,41.9,7\r\n\t\tc12.8,4.6,23.9,11.2,33.1,19.6c8.7,7.9,14,17.4,19.7,30.2c5,11.2,6.8,20.9,6.8,35.9c0,12.4-2.2,24.1-6.5,34.9\r\n\t\tc-4.3,10.6-7.5,17-14,25c-6.6,7.9-10.6,12.7-18.1,17.1c-8.6,5-15.3,7.4-21,7.4c-3.6,0-6.3-0.7-7.8-2c-1.5-1.3-2.4-3-2.7-5.4\r\n\t\tc-0.4-2.8-0.1-6.3,1-10.4c1.1-4.4,2.8-8.6,4.9-13.7L339.4,181h-17.8l-6.2,16.5c-3.8-6.1-9.1-11.5-15.9-15.5\r\n\t\tc-10.5-6.1-19.5-8.8-31.2-8.8c-13.5,0-26,3.5-37.2,10.4c-11,6.8-20.5,15.6-28.2,26.3c-7.5,10.3-9.3,15.7-12.9,26.4l-0.6,1.7\r\n\t\tc-4.2,12.4-6.3,24.6-6.3,36.2c0,7.7,1.4,15,4.1,21.8c2.7,6.8,6.4,12.8,11.1,17.8c4.7,5.1,10.4,9.1,16.9,12.1s13.7,4.5,21.3,4.5\r\n\t\tc8.5,0,16.6-1.4,26.1-4.7c6.3-2.2,11.9-5.8,17.4-11.4c1,3.2,2.7,6,5.3,8.5c5,5,11.7,7.6,19.9,7.6c8.6,0,17.8-3,29-9.3\r\n\t\tc9.9-5.6,15.7-12,23.3-21.1c8.2-9.8,12.3-18,16.9-29.7c5-12.5,7.5-26,7.5-40.3c0-18-2.4-30.2-8.5-43.6c-6.6-14.3-13.2-25.8-24-35.4\r\n\t\tc-10.9-9.6-23.9-17.1-38.5-22.3c-14.5-5.1-30.3-7.7-46.7-7.7c-20.1,0-37.2,3-52.2,9.1c-16.5,6.7-30.9,16-43,27.6\r\n\t\tc-12.2,11.8-22,25.9-29,41.9c-7.3,16.6-11.4,36.7-11.4,55.1c0,25.1,3.1,42.6,10.3,58.4c8,17.3,21,35.4,33.3,46\r\n\t\tc12.6,10.9,27.1,19.1,43.2,24.2c15.9,5.1,32.3,7.7,48.8,7.7c11.4,0,22.8-1.6,34-4.6c11.2-3.1,22-7.4,32.1-13.1\r\n\t\tc10.1-5.6,19.5-12.5,28.2-20.6c8.6-8.1,18.6-20.8,22-26.9c1.3-2.4,2.2-4.3,2.9-5.8h-18.5L364.4,320.9z M275.8,294.4\r\n\t\tc-4.4,5.6-7.7,9.5-11.8,12.2c-4.4,3-7.9,4.9-12.4,5.9c-4.6,1.2-9.3,1.7-13.7,1.7c-5.6,0-10.8-1-15.4-3c-4.7-2-8.7-4.8-12.1-8.4\r\n\t\tc-3.4-3.6-6.1-7.9-8.1-12.7c-1.9-4.8-2.9-10.2-2.9-16c0-9.5,1.8-19.7,5.3-30.3c0.4-1.2,0.8-2.4,1.1-3.4c2.8-8.6,4.3-11.5,9.5-20\r\n\t\tc5.7-9.4,14.1-16.6,23-22.5c8.6-5.8,18.2-8.7,28.5-8.7c4.2,0,8.6,0.5,13.2,1.5c3.6,0.8,5.6,1.9,9,3.9c0.6,0.3,1.1,0.6,1.7,1\r\n\t\tc3.9,2.2,7.4,5.1,10.4,8.7c2.7,3.2,4.8,7.4,6.3,12.3l-20.6,57.8C283.6,282.5,279.9,289.2,275.8,294.4z"},"children":[{"name":"path","attribs":{"d":"M364.4,320.9c-5.3,7.5-11.6,14.7-18.8,21.4c-7.1,6.6-15.1,12.5-23.7,17.4c-8.6,4.9-17.9,8.8-27.5,11.5s-19.8,4.1-30.3,4.1\r\n\t\tc-15.9,0-31.2-2.6-45.5-7.6c-14.2-5-26.8-12.5-37.5-22.4c-10.7-9.8-21.7-25.9-28.2-41c-5.8-13.4-8.1-27.8-8.1-49.5\r\n\t\tc0-15.6,3.6-33,9.8-47.6c6-14,14.3-26.4,24.9-36.9c10.4-10.3,23-18.6,37.6-24.8c13.1-5.5,28.5-8.2,47.1-8.2c14.9,0,29,2.4,41.9,7\r\n\t\tc12.8,4.6,23.9,11.2,33.1,19.6c8.7,7.9,14,17.4,19.7,30.2c5,11.2,6.8,20.9,6.8,35.9c0,12.4-2.2,24.1-6.5,34.9\r\n\t\tc-4.3,10.6-7.5,17-14,25c-6.6,7.9-10.6,12.7-18.1,17.1c-8.6,5-15.3,7.4-21,7.4c-3.6,0-6.3-0.7-7.8-2c-1.5-1.3-2.4-3-2.7-5.4\r\n\t\tc-0.4-2.8-0.1-6.3,1-10.4c1.1-4.4,2.8-8.6,4.9-13.7L339.4,181h-17.8l-6.2,16.5c-3.8-6.1-9.1-11.5-15.9-15.5\r\n\t\tc-10.5-6.1-19.5-8.8-31.2-8.8c-13.5,0-26,3.5-37.2,10.4c-11,6.8-20.5,15.6-28.2,26.3c-7.5,10.3-9.3,15.7-12.9,26.4l-0.6,1.7\r\n\t\tc-4.2,12.4-6.3,24.6-6.3,36.2c0,7.7,1.4,15,4.1,21.8c2.7,6.8,6.4,12.8,11.1,17.8c4.7,5.1,10.4,9.1,16.9,12.1s13.7,4.5,21.3,4.5\r\n\t\tc8.5,0,16.6-1.4,26.1-4.7c6.3-2.2,11.9-5.8,17.4-11.4c1,3.2,2.7,6,5.3,8.5c5,5,11.7,7.6,19.9,7.6c8.6,0,17.8-3,29-9.3\r\n\t\tc9.9-5.6,15.7-12,23.3-21.1c8.2-9.8,12.3-18,16.9-29.7c5-12.5,7.5-26,7.5-40.3c0-18-2.4-30.2-8.5-43.6c-6.6-14.3-13.2-25.8-24-35.4\r\n\t\tc-10.9-9.6-23.9-17.1-38.5-22.3c-14.5-5.1-30.3-7.7-46.7-7.7c-20.1,0-37.2,3-52.2,9.1c-16.5,6.7-30.9,16-43,27.6\r\n\t\tc-12.2,11.8-22,25.9-29,41.9c-7.3,16.6-11.4,36.7-11.4,55.1c0,25.1,3.1,42.6,10.3,58.4c8,17.3,21,35.4,33.3,46\r\n\t\tc12.6,10.9,27.1,19.1,43.2,24.2c15.9,5.1,32.3,7.7,48.8,7.7c11.4,0,22.8-1.6,34-4.6c11.2-3.1,22-7.4,32.1-13.1\r\n\t\tc10.1-5.6,19.5-12.5,28.2-20.6c8.6-8.1,18.6-20.8,22-26.9c1.3-2.4,2.2-4.3,2.9-5.8h-18.5L364.4,320.9z M275.8,294.4\r\n\t\tc-4.4,5.6-7.7,9.5-11.8,12.2c-4.4,3-7.9,4.9-12.4,5.9c-4.6,1.2-9.3,1.7-13.7,1.7c-5.6,0-10.8-1-15.4-3c-4.7-2-8.7-4.8-12.1-8.4\r\n\t\tc-3.4-3.6-6.1-7.9-8.1-12.7c-1.9-4.8-2.9-10.2-2.9-16c0-9.5,1.8-19.7,5.3-30.3c0.4-1.2,0.8-2.4,1.1-3.4c2.8-8.6,4.3-11.5,9.5-20\r\n\t\tc5.7-9.4,14.1-16.6,23-22.5c8.6-5.8,18.2-8.7,28.5-8.7c4.2,0,8.6,0.5,13.2,1.5c3.6,0.8,5.6,1.9,9,3.9c0.6,0.3,1.1,0.6,1.7,1\r\n\t\tc3.9,2.2,7.4,5.1,10.4,8.7c2.7,3.2,4.8,7.4,6.3,12.3l-20.6,57.8C283.6,282.5,279.9,289.2,275.8,294.4z"},"children":[]}]}]}]};exports.iosAtOutline=iosAtOutline;var iosAt={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M356,320c-9.7,13.3-29.9,28.5-38.1,33.1s-16.9,8.3-26,10.8c-9,2.5-18.6,3.9-28.4,3.9c-14.9,0-29.4-2.4-43-7.2\r\n\tc-13.3-4.7-25.2-11.8-35.1-21c-9.9-9-20.3-24.2-26.5-38.5c-5.3-12.4-7.6-25.8-7.6-46.5c0-14.7,3.4-30.9,9.2-44.7\r\n\tc5.6-13.2,13.5-24.9,23.3-34.6c9.7-9.6,21.6-17.5,35.3-23.3c12.3-5.1,26.7-7.7,44.4-7.7c13.9,0,27.2,2.2,39.4,6.6\r\n\tc11.9,4.3,22.3,10.4,30.9,18.3c8,7.3,12.9,16.1,18.2,28.1c4.6,10.2,6.3,19.2,6.3,33.3c0,11.5-2,22.4-6,32.4c-4,9.8-7,15.8-13,23.3\r\n\tc-6.3,7.6-9.8,11.8-16.5,15.6c-7.8,4.6-13.7,6.7-18.5,6.7c-3.8,0-5-0.9-5.1-1c-0.6-0.5-1.1-1.2-1.4-2.8c-0.3-2.2,0-5.2,0.9-8.6\r\n\tc1-3.9,2.4-7.7,4.6-12.9L342.3,179h-25.6l-4.5,12c-3.5-4.1-7.7-7.5-12.4-10.2c-11.1-6.4-20.4-9-32.3-9c-13.8,0-26.7,3.6-38.2,10.7\r\n\tc-11.2,6.9-20.8,15.8-28.5,26.5c-7.6,10.5-9.5,16.1-13,26.5l-0.6,1.8c-4.2,12.4-6.3,24.7-6.3,36.4c0,7.9,1.5,15.5,4.3,22.6\r\n\tc2.8,7.2,6.7,13.4,11.6,18.5c4.8,5.2,10.7,9.4,17.7,12.6c6.8,3.1,14.3,4.8,22.4,4.8c8.9,0,17.1-1.5,26.7-4.8\r\n\tc5.3-1.8,9.9-4.5,14.4-8.3c1,1.7,2.2,3.1,3.7,4.5c5.6,5.6,13.1,8.5,22.1,8.5c8.9,0,18.6-3,30.2-9.5c10.3-5.8,16.3-12.5,23.7-21.4\r\n\tc8.4-10,12.5-18.6,17-29.9c5.1-12.5,7.6-26.2,7.6-40.6c0-18.1-2.4-30.4-8.7-44c-6.6-14.4-13.3-25.9-24.3-35.6\r\n\tc-10.9-9.7-23.9-17.2-38.7-22.4c-14.6-5.1-30.3-7.7-46.7-7.7c-20,0-37.2,3-52.2,9.1c-16.3,6.6-30.8,15.9-43.1,27.6\r\n\tc-12.3,11.8-22.1,26-29.1,42c-7.3,16.5-11.4,36.5-11.4,55.1c0,25,3.1,42.4,10.4,58.4c8.1,17.5,21.2,35.5,33.4,45.9\r\n\tc12.7,11.1,27.3,19.2,43.4,24.3c15.9,5.1,32.3,7.7,48.6,7.7c11.2,0,22.7-1.6,34.1-4.6c11.6-3.2,22.4-7.6,32.1-13.1\r\n\tc9.9-5.5,19.5-12.4,28.2-20.6c8.8-8.2,19.4-20.9,22.9-27.1c1.2-2.3,2.2-4.2,2.8-5.6H356z M271.9,290.6c-4.4,5.5-7.2,8.9-10.6,11.2\r\n\tc-3.8,2.6-6.8,4.2-10.7,5.2h-0.1c-3.9,1-8.1,1.5-12.4,1.5c-5,0-9.4-0.9-13.4-2.7c-4.1-1.7-7.5-4.1-10.5-7.3\r\n\tc-2.9-3.1-5.4-6.8-7.1-11.1c-1.7-4.3-2.5-9-2.5-14.1c0-8.7,1.7-18.3,5-28.2c0.4-1.2,0.8-2.4,1.1-3.3c2.6-8.1,4-10.6,8.9-18.6\r\n\tc4.5-7.4,11.5-14.2,21.2-20.7c7.7-5.1,16.2-7.8,25.6-7.8c3.8,0,7.8,0.5,12,1.4c3,0.7,4.6,1.6,7.6,3.3l0.2,0.1\r\n\tc0.4,0.2,0.8,0.4,1.3,0.7l0.3,0.2c3.4,1.9,6.4,4.5,9,7.6c2,2.4,3.7,5.5,5,9.4L282,272.2C279,279.6,275.6,285.8,271.9,290.6z"},"children":[]}]};exports.iosAt=iosAt;var iosBarcodeOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"48,384 128,384 128,368 64,368 64,144 128,144 128,128 48,128 \t"},"children":[{"name":"polygon","attribs":{"points":"48,384 128,384 128,368 64,368 64,144 128,144 128,128 48,128 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"384,128 384,144 448,144 448,368 384,368 384,384 464,384 464,128 \t"},"children":[{"name":"polygon","attribs":{"points":"384,128 384,144 448,144 448,368 384,368 384,384 464,384 464,128 \t"},"children":[]}]},{"name":"rect","attribs":{"x":"112","y":"192","width":"16","height":"128"},"children":[{"name":"rect","attribs":{"x":"112","y":"192","width":"16","height":"128"},"children":[]}]},{"name":"rect","attribs":{"x":"384","y":"192","width":"16","height":"128"},"children":[{"name":"rect","attribs":{"x":"384","y":"192","width":"16","height":"128"},"children":[]}]},{"name":"rect","attribs":{"x":"320","y":"160","width":"16","height":"192"},"children":[{"name":"rect","attribs":{"x":"320","y":"160","width":"16","height":"192"},"children":[]}]},{"name":"rect","attribs":{"x":"176","y":"160","width":"16","height":"192"},"children":[{"name":"rect","attribs":{"x":"176","y":"160","width":"16","height":"192"},"children":[]}]},{"name":"rect","attribs":{"x":"247","y":"176","width":"16","height":"160"},"children":[{"name":"rect","attribs":{"x":"247","y":"176","width":"16","height":"160"},"children":[]}]}]}]};exports.iosBarcodeOutline=iosBarcodeOutline;var iosBarcode={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M48,128v256h416V128H48z M128,320h-16V192h16V320z M192,352h-16V160h16V352z M263,336h-16V176h16V336z M336,352h-16V160h16\r\n\t\tV352z M400,320h-16V192h16V320z"},"children":[{"name":"path","attribs":{"d":"M48,128v256h416V128H48z M128,320h-16V192h16V320z M192,352h-16V160h16V352z M263,336h-16V176h16V336z M336,352h-16V160h16\r\n\t\tV352z M400,320h-16V192h16V320z"},"children":[]}]}]}]};exports.iosBarcode=iosBarcode;var iosBaseballOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M462.686,279.369c0.132-1.182,0.257-2.365,0.369-3.554c0.004-0.038,0.007-0.078,0.011-0.117\r\n\tC463.675,269.213,464,262.645,464,256c0-114.863-93.13-208-208-208c-7.951,0-15.792,0.462-23.512,1.331\r\n\tc-0.089,0.01-0.18,0.018-0.27,0.028c0,0.001,0,0.002,0,0.003C135.207,60.409,58.442,138.199,48.989,235.687\r\n\tc-0.001,0-0.003,0-0.004,0c-0.072,0.748-0.131,1.497-0.195,2.246c-0.136,1.576-0.253,3.157-0.353,4.743\r\n\tc-0.026,0.418-0.056,0.835-0.08,1.254c-0.064,1.121-0.116,2.245-0.163,3.371c-0.011,0.281-0.021,0.562-0.032,0.843\r\n\tC48.065,250.751,48,253.368,48,256c0,114.863,93.137,208,208,208c2.627,0,5.239-0.065,7.843-0.162\r\n\tc0.293-0.011,0.586-0.021,0.878-0.033c1.11-0.046,2.219-0.098,3.324-0.16c0.454-0.025,0.906-0.058,1.359-0.086\r\n\tc1.604-0.103,3.201-0.222,4.795-0.36c0.704-0.061,1.41-0.115,2.113-0.184c0-0.001,0-0.003,0-0.004\r\n\tc97.494-9.452,175.279-86.216,186.326-183.229c0.001,0,0.002,0,0.004,0C462.658,279.645,462.67,279.507,462.686,279.369z\r\n\t M446.665,256c0,2.568-0.066,5.122-0.167,7.666c-10.334-0.468-20.552-1.69-30.614-3.664l6.11-19.056l-15.232-4.884l-6.488,20.235\r\n\tc-7.591-2.112-15.08-4.651-22.442-7.638c-4.976-2.018-9.851-4.223-14.625-6.604l11.518-17.003l-13.247-8.974l-12.359,18.246\r\n\tc-12.241-7.35-23.703-15.977-34.305-25.812l14.73-14.73l-11.313-11.313l-14.73,14.73c-9.555-10.297-17.964-21.408-25.175-33.254\r\n\tl18.487-12.522l-8.972-13.246l-17.324,11.735c-2.597-5.131-4.998-10.375-7.174-15.74c-2.843-7.009-5.276-14.134-7.327-21.352\r\n\tl20.812-6.673l-4.885-15.234l-19.711,6.32c-2.104-10.423-3.41-21.014-3.896-31.729c2.544-0.101,5.097-0.167,7.665-0.167\r\n\tC361.132,65.335,446.665,150.869,446.665,256z M65.337,256c0-1.317,0.023-2.629,0.05-3.939c9.064,0.559,18.039,1.687,26.891,3.409\r\n\tl-7.115,22.191l15.235,4.885l7.5-23.391c7.692,2.128,15.28,4.696,22.738,7.721c5.175,2.099,10.239,4.404,15.197,6.896l-13.405,19.79\r\n\tl13.246,8.973l14.219-20.992c12.038,7.279,23.32,15.793,33.765,25.483l-16.853,16.853l11.313,11.314l16.854-16.854\r\n\tc9.968,10.744,18.7,22.369,26.114,34.796l-20.753,14.058l8.972,13.246l19.473-13.19c2.283,4.611,4.4,9.317,6.347,14.116\r\n\tc3.161,7.795,5.834,15.729,8.016,23.778l-22.832,7.32l4.884,15.233l21.531-6.903c1.608,8.506,2.679,17.122,3.215,25.822\r\n\tc-1.311,0.026-2.622,0.05-3.939,0.05C150.87,446.664,65.336,361.13,65.337,256z M275.893,445.629\r\n\tc-0.621-9.974-1.911-19.911-3.859-29.746l24.1-7.727l-4.884-15.232l-22.896,7.341c-3.946-14.415-9.356-28.51-16.234-42.054\r\n\tl20.172-13.664l-8.973-13.246l-18.988,12.862c-7.888-13.094-17.233-25.552-28.04-37.145l17.081-17.081l-11.313-11.313\r\n\tl-17.082,17.081c-11.288-10.521-23.393-19.66-36.108-27.414l12.696-18.743l-13.246-8.972l-13.446,19.85\r\n\tc-13.548-6.974-27.659-12.467-42.094-16.494l7.158-22.325l-15.235-4.885l-7.52,23.452c-10.181-2.068-20.477-3.424-30.81-4.067\r\n\tc9.168-88.037,78.492-158.454,166.023-169.311c0.574,11.858,2.095,23.676,4.543,35.339l-25.935,8.316l4.885,15.234l24.903-7.985\r\n\tc4.045,14.144,9.504,27.967,16.386,41.246l-22.322,15.121l8.973,13.246l21.236-14.385c7.688,12.528,16.735,24.455,27.116,35.59\r\n\tl-19.204,19.204l11.313,11.314l19.204-19.205c11.447,10.669,23.735,19.921,36.647,27.745l-14.555,21.486l13.248,8.974l15.328-22.628\r\n\tc13.28,6.789,27.1,12.155,41.229,16.118l-8.168,25.477l15.232,4.884l8.525-26.59c11.301,2.312,22.744,3.754,34.224,4.31\r\n\tC434.347,367.137,363.93,436.46,275.893,445.629z"},"children":[]}]};exports.iosBaseballOutline=iosBaseballOutline;var iosBaseball={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,48c-8.044,0-15.975,0.473-23.782,1.361l0,0l0,0C128.555,61.166,48,149.18,48,256c0,114.863,93.137,208,208,208\r\n\tc106.827,0,194.833-80.553,206.638-184.218l0,0l0,0C463.527,271.977,464,264.045,464,256C464,141.137,370.87,48,256,48z\r\n\t M259.939,446.614c-0.539-8.693-1.605-17.305-3.209-25.804l-21.511,6.896l-4.885-15.234l22.812-7.314\r\n\tc-2.183-8.056-4.856-15.994-8.02-23.794c-1.943-4.794-4.061-9.497-6.341-14.105l-19.464,13.186l-8.972-13.247l20.744-14.054\r\n\tc-7.416-12.429-16.149-24.057-26.119-34.803l-16.852,16.853l-11.313-11.313l16.852-16.852c-10.442-9.689-21.721-18.202-33.757-25.48\r\n\tl-14.216,20.988l-13.247-8.973l13.403-19.788c-4.96-2.491-10.027-4.799-15.206-6.9c-7.455-3.021-15.038-5.59-22.725-7.717\r\n\tl-7.5,23.392l-15.236-4.885l7.115-22.192c-8.856-1.723-17.835-2.853-26.904-3.412c0.109-5.373,0.438-10.695,0.984-15.953\r\n\tc10.339,0.647,20.639,1.998,30.827,4.068l7.518-23.454l15.237,4.886l-7.159,22.328c14.433,4.027,28.542,9.521,42.09,16.494\r\n\tl13.449-19.854l13.248,8.973l-12.7,18.748c12.712,7.754,24.815,16.892,36.1,27.411l17.082-17.082l11.314,11.314l-17.083,17.082\r\n\tc10.809,11.595,20.156,24.055,28.044,37.151l18.999-12.869l8.973,13.248l-20.183,13.67c6.878,13.546,12.289,27.642,16.232,42.058\r\n\tl22.919-7.349l4.885,15.236l-24.122,7.734c1.947,9.828,3.231,19.761,3.854,29.727C270.637,446.177,265.314,446.504,259.939,446.614z\r\n\t M410.961,275.293l-8.529,26.604l-15.236-4.885l8.174-25.493c-14.124-3.964-27.94-9.329-41.218-16.116l-15.335,22.641l-13.248-8.973\r\n\tl14.564-21.499c-12.912-7.826-25.199-17.077-36.644-27.746l-19.205,19.204l-11.312-11.314l19.202-19.203\r\n\tc-10.381-11.135-19.427-23.062-27.114-35.59l-21.248,14.393l-8.974-13.248l22.335-15.127c-6.881-13.278-12.339-27.099-16.384-41.241\r\n\tl-24.918,7.99l-4.885-15.237l25.951-8.321c-2.447-11.663-3.943-23.482-4.522-35.337c5.189-0.644,10.446-1.068,15.754-1.284\r\n\tc0.507,10.743,1.859,21.334,3.972,31.807l19.744-6.359l4.907,15.212l-20.789,6.658c2.051,7.218,4.491,14.338,7.333,21.348\r\n\tc2.176,5.363,4.578,10.603,7.174,15.731l17.315-11.729l8.973,13.246l-18.477,12.516c7.209,11.846,15.619,22.957,25.174,33.254\r\n\tl14.729-14.731l11.314,11.313l-14.732,14.731c10.602,9.836,22.062,18.463,34.302,25.813l12.352-18.235l13.248,8.973l-11.512,16.994\r\n\tc4.777,2.383,9.656,4.589,14.635,6.608c7.354,2.982,14.837,5.521,22.421,7.631l6.484-20.22l15.233,4.885l-6.104,19.043\r\n\tc10.116,1.984,20.286,3.311,30.626,3.824c-0.215,5.312-0.643,10.572-1.285,15.768C433.72,279.028,422.269,277.607,410.961,275.293z"},"children":[]}]};exports.iosBaseball=iosBaseball;var iosBasketballOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,48C141.137,48,48,141.136,48,256s93.137,208,208,208c114.871,0,208-93.138,208-208S370.871,48,256,48z M446.664,256\r\n\tc0,0.048-0.002,0.097-0.002,0.145c-22.315-1.721-43.989-6.972-64.62-15.699c-17.888-7.566-34.453-17.505-49.479-29.634\r\n\tc20.69-29.501,38.442-61.212,52.824-94.715C423.045,150.95,446.664,200.766,446.664,256z M372.606,105.261\r\n\tc-0.28,0.676-0.55,1.354-0.835,2.028c-13.908,32.883-31.062,63.956-51.286,92.987c-1.538-1.449-3.063-2.914-4.563-4.413\r\n\tc-19.107-19.107-34.107-41.354-44.583-66.12c-8.697-20.563-13.933-42.163-15.671-64.401c0.111,0,0.221-0.004,0.332-0.004\r\n\tC299.884,65.337,340.347,80.249,372.606,105.261z M239.675,66.044c4.431,58.126,31.044,110.041,71.391,147.312\r\n\tc-9.495,12.749-19.609,25.076-30.319,36.965c-47.554-50.032-104.815-90.746-168.767-119.132\r\n\tC143.616,94.733,188.833,70.375,239.675,66.044z M280.687,273.84c36.229,40.67,65.48,86.438,87.185,136.453\r\n\tc-25.4,18.467-55.51,30.829-88.162,34.898c-2.272-47.816-19.521-91.707-47.179-127.071\r\n\tC249.483,304.357,265.568,289.567,280.687,273.84z M262.039,270.039c-12.704,12.703-25.977,24.662-39.778,35.87\r\n\tc-38.737-42.885-93.831-70.706-155.45-73.635c4.07-32.646,16.432-62.75,34.896-88.146c59.195,25.688,112.445,61.947,158.332,107.833\r\n\tc3.323,3.323,6.59,6.689,9.812,10.089C267.277,264.736,264.677,267.401,262.039,270.039z M65.508,248.23\r\n\tc25.238,1.145,49.436,6.797,71.45,16.109c24.767,10.476,47.013,25.476,66.12,44.583c2.254,2.254,4.445,4.555,6.584,6.895\r\n\tc-31.414,23.915-65.427,44.049-101.708,60.182C81.322,343.205,65.336,301.437,65.336,256\r\n\tC65.336,253.396,65.404,250.809,65.508,248.23z M119.067,388.526c35.988-16.434,69.81-36.787,100.914-60.521\r\n\tc11.249,14.372,20.522,30.115,27.68,47.037c9.614,22.729,15.013,46.724,16.114,71.45c-2.58,0.104-5.17,0.172-7.775,0.172\r\n\tC202.317,446.664,153.751,424.353,119.067,388.526z M380.81,400.021c-22.489-50.671-52.72-97.14-89.191-137.909\r\n\tc11.101-12.269,21.634-25.061,31.556-38.336c34.171,27.342,76.521,44.885,122.801,48.363\r\n\tC441.686,323.058,417.311,368.347,380.81,400.021z"},"children":[]}]};exports.iosBasketballOutline=iosBasketballOutline;var iosBasketball={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,48C141.137,48,48,141.136,48,256s93.137,208,208,208c114.871,0,208-93.138,208-208S370.871,48,256,48z\r\n\t M380.797,400.032c-4.158,3.608-8.48,7.029-12.942,10.272c-21.704-50.015-50.938-95.795-87.168-136.465\r\n\tc-15.118,15.728-31.203,30.518-48.156,44.28c27.659,35.364,44.916,79.254,47.189,127.069c-5.252,0.655-10.571,1.086-15.944,1.303\r\n\tc-1.103-24.727-6.5-48.721-16.114-71.45c-7.158-16.922-16.431-32.665-27.68-47.037c-31.104,23.733-64.923,44.093-100.91,60.526\r\n\tc-3.883-4.011-7.592-8.191-11.115-12.529c36.28-16.134,70.291-36.271,101.705-60.186c-2.139-2.34-4.33-4.641-6.584-6.895\r\n\tc-19.107-19.107-41.354-34.107-66.12-44.583c-22.015-9.312-46.212-14.964-71.45-16.108c0.217-5.379,0.648-10.703,1.303-15.959\r\n\tc61.62,2.929,116.713,30.753,155.45,73.638c13.802-11.208,27.075-23.167,39.778-35.87c2.638-2.638,5.238-5.303,7.812-7.988\r\n\tc-3.223-3.4-6.489-6.767-9.812-10.09c-45.887-45.886-99.137-82.145-158.332-107.832c3.243-4.461,6.665-8.782,10.272-12.939\r\n\tc63.951,28.387,121.212,69.101,168.767,119.132c10.711-11.889,20.824-24.216,30.319-36.965\r\n\tc-40.347-37.271-66.956-89.188-71.388-147.312c5.273-0.449,10.604-0.692,15.99-0.702c1.738,22.238,6.974,43.838,15.671,64.401\r\n\tc10.476,24.767,25.476,47.013,44.583,66.12c1.5,1.5,3.025,2.965,4.562,4.413c20.226-29.031,37.379-60.104,51.287-92.987\r\n\tc0.285-0.674,0.555-1.353,0.835-2.028c4.419,3.426,8.681,7.042,12.779,10.835c-14.383,33.502-32.132,65.215-52.822,94.716\r\n\tc15.026,12.13,31.591,22.068,49.479,29.635c20.631,8.727,42.305,13.978,64.62,15.698c-0.004,5.387-0.243,10.717-0.688,15.991\r\n\tc-46.278-3.479-88.631-21.018-122.801-48.359c-9.922,13.275-20.455,26.067-31.556,38.336\r\n\tC328.091,302.883,358.307,349.36,380.797,400.032z"},"children":[]}]};exports.iosBasketball=iosBasketball;var iosBellOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M381.7,225.9c0-97.6-52.5-130.8-101.6-138.2c0-0.5,0.1-1,0.1-1.6c0-12.3-10.9-22.1-24.2-22.1c-13.3,0-23.8,9.8-23.8,22.1\r\n\t\tc0,0.6,0,1.1,0.1,1.6c-49.2,7.5-102,40.8-102,138.4c0,113.8-28.3,126-66.3,158h384C410.2,352,381.7,339.7,381.7,225.9z M107.2,368\r\n\t\tc8.6-9,16.4-18.4,22.7-31.8c12-25.3,17.4-59.2,17.4-110.2c0-46.4,12.5-80.4,37.1-101.2c22.9-19.3,51.7-23.3,71.8-23.3\r\n\t\tc20.1,0,48.9,4,71.6,23.3c24.5,20.7,37,54.5,37,100.9c0,83.8,14.9,117.3,40.3,142.3H107.2z"},"children":[{"name":"path","attribs":{"d":"M381.7,225.9c0-97.6-52.5-130.8-101.6-138.2c0-0.5,0.1-1,0.1-1.6c0-12.3-10.9-22.1-24.2-22.1c-13.3,0-23.8,9.8-23.8,22.1\r\n\t\tc0,0.6,0,1.1,0.1,1.6c-49.2,7.5-102,40.8-102,138.4c0,113.8-28.3,126-66.3,158h384C410.2,352,381.7,339.7,381.7,225.9z M107.2,368\r\n\t\tc8.6-9,16.4-18.4,22.7-31.8c12-25.3,17.4-59.2,17.4-110.2c0-46.4,12.5-80.4,37.1-101.2c22.9-19.3,51.7-23.3,71.8-23.3\r\n\t\tc20.1,0,48.9,4,71.6,23.3c24.5,20.7,37,54.5,37,100.9c0,83.8,14.9,117.3,40.3,142.3H107.2z"},"children":[]}]},{"name":"path","attribs":{"d":"M256.2,448c26.8,0,48.8-19.9,51.7-43H204.5C207.3,428.1,229.4,448,256.2,448z"},"children":[{"name":"path","attribs":{"d":"M256.2,448c26.8,0,48.8-19.9,51.7-43H204.5C207.3,428.1,229.4,448,256.2,448z"},"children":[]}]}]}]};exports.iosBellOutline=iosBellOutline;var iosBell={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M381.7,225.9c0-97.6-52.5-130.8-101.6-138.2c0-0.5,0.1-1,0.1-1.6c0-12.3-10.9-22.1-24.2-22.1c-13.3,0-23.8,9.8-23.8,22.1\r\n\t\tc0,0.6,0,1.1,0.1,1.6c-49.2,7.5-102,40.8-102,138.4c0,113.8-28.3,126-66.3,158h384C410.2,352,381.7,339.7,381.7,225.9z"},"children":[{"name":"path","attribs":{"d":"M381.7,225.9c0-97.6-52.5-130.8-101.6-138.2c0-0.5,0.1-1,0.1-1.6c0-12.3-10.9-22.1-24.2-22.1c-13.3,0-23.8,9.8-23.8,22.1\r\n\t\tc0,0.6,0,1.1,0.1,1.6c-49.2,7.5-102,40.8-102,138.4c0,113.8-28.3,126-66.3,158h384C410.2,352,381.7,339.7,381.7,225.9z"},"children":[]}]},{"name":"path","attribs":{"d":"M256.2,448c26.8,0,48.8-19.9,51.7-43H204.5C207.3,428.1,229.4,448,256.2,448z"},"children":[{"name":"path","attribs":{"d":"M256.2,448c26.8,0,48.8-19.9,51.7-43H204.5C207.3,428.1,229.4,448,256.2,448z"},"children":[]}]}]}]};exports.iosBell=iosBell;var iosBodyOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,47.959c17.645,0,32,14.351,32,31.991c0,17.64-14.355,31.99-32,31.99s-32-14.351-32-31.99\r\n\t\tC224,62.31,238.355,47.959,256,47.959 M256,31.964c-26.51,0-48,21.483-48,47.986c0,26.502,21.49,47.985,48,47.985\r\n\t\ts48-21.483,48-47.985C304,53.447,282.51,31.964,256,31.964L256,31.964z"},"children":[{"name":"path","attribs":{"d":"M256,47.959c17.645,0,32,14.351,32,31.991c0,17.64-14.355,31.99-32,31.99s-32-14.351-32-31.99\r\n\t\tC224,62.31,238.355,47.959,256,47.959 M256,31.964c-26.51,0-48,21.483-48,47.986c0,26.502,21.49,47.985,48,47.985\r\n\t\ts48-21.483,48-47.985C304,53.447,282.51,31.964,256,31.964L256,31.964z"},"children":[]}]},{"name":"path","attribs":{"d":"M424,144H88c-13.255,0-24,10.747-24,24s10.745,24,24,24h100.451c5.549,0,13.197,4.295,17.216,14.708\r\n\t\tc4.651,12.055,2.37,33.33-0.539,51.444l-3.923,21.26c-0.019,0.104-0.205,0.1-0.205,0.203l-32.229,172.238\r\n\t\tc-2.303,13.051,6.487,25.494,19.54,27.797c1.408,0.248,2.844,0.367,4.218,0.367c11.357,0,20.917-8.19,22.97-19.836L236,340.242\r\n\t\tv0.166c0,0,7.25-31.408,19.452-31.408h1.096C269,309,274,340.408,274,340.408v-0.082l21.483,119.895\r\n\t\tc2.052,11.642,12.331,19.815,23.763,19.815c1.387,0,2.855-0.121,4.268-0.368c13.053-2.303,21.821-14.76,19.519-27.811\r\n\t\tl-32.349-172.251c-0.002-0.008,0.011-0.02,0.009-0.027c-0.019-0.104-0.032-0.217-0.052-0.322l-3.771-21.411\r\n\t\tc-2.909-18.119-5.188-39.083-0.538-51.137C310.351,196.295,318.5,192,323.549,192H424c13.255,0,24-10.747,24-24\r\n\t\tS437.255,144,424,144z M88,176.113c-4.411,0-8-3.646-8-8.057c0-4.411,3.589-8.057,8-8.057h336c4.411,0,8,3.59,8,8s-3.589,8-8,8\r\n\t\tH322.5c-15.538,0-27.438,14.738-30.982,23.922c-4.846,12.557-5.004,31.942-0.388,60.688l-0.009,0.104l0.006,0.11l3.367,19.138\r\n\t\tl0.562,3.241l32.252,171.628c0.5,2.834-0.62,4.961-1.332,5.977c-0.713,1.017-2.335,2.799-5.179,3.301\r\n\t\tc-0.476,0.083-0.955,0.126-1.427,0.126c-3.893,0-7.207-2.639-7.883-6.472L290.255,338h-0.015c-0.271-2-1.828-10.05-5.022-18.771\r\n\t\tc-2.278-6.217-4.844-11.034-7.844-15.005C270.283,294.836,262.135,293,256.548,293h-1.096c-5.47,0-13.503,1.731-20.71,10.938\r\n\t\tc-3.05,3.896-5.729,8.671-8.19,14.802c-3.628,9.037-5.505,17.654-5.708,18.613l-0.11,0.369l-20.728,119.9\r\n\t\tc-0.693,3.886-3.75,6.596-7.441,6.596c-0.459,0-0.932-0.043-1.403-0.127c-2.84-0.5-4.455-2.275-5.165-3.288\r\n\t\tc-0.709-1.013-1.824-3.136-1.323-5.975l32.257-171.562l0.004-0.019l0.174-0.927l3.775-21.33l0.022-0.125l0.021-0.126\r\n\t\tc4.629-28.829,4.527-48.3-0.332-60.891c-3.543-9.181-13.576-23.737-31.76-23.737"},"children":[{"name":"path","attribs":{"d":"M424,144H88c-13.255,0-24,10.747-24,24s10.745,24,24,24h100.451c5.549,0,13.197,4.295,17.216,14.708\r\n\t\tc4.651,12.055,2.37,33.33-0.539,51.444l-3.923,21.26c-0.019,0.104-0.205,0.1-0.205,0.203l-32.229,172.238\r\n\t\tc-2.303,13.051,6.487,25.494,19.54,27.797c1.408,0.248,2.844,0.367,4.218,0.367c11.357,0,20.917-8.19,22.97-19.836L236,340.242\r\n\t\tv0.166c0,0,7.25-31.408,19.452-31.408h1.096C269,309,274,340.408,274,340.408v-0.082l21.483,119.895\r\n\t\tc2.052,11.642,12.331,19.815,23.763,19.815c1.387,0,2.855-0.121,4.268-0.368c13.053-2.303,21.821-14.76,19.519-27.811\r\n\t\tl-32.349-172.251c-0.002-0.008,0.011-0.02,0.009-0.027c-0.019-0.104-0.032-0.217-0.052-0.322l-3.771-21.411\r\n\t\tc-2.909-18.119-5.188-39.083-0.538-51.137C310.351,196.295,318.5,192,323.549,192H424c13.255,0,24-10.747,24-24\r\n\t\tS437.255,144,424,144z M88,176.113c-4.411,0-8-3.646-8-8.057c0-4.411,3.589-8.057,8-8.057h336c4.411,0,8,3.59,8,8s-3.589,8-8,8\r\n\t\tH322.5c-15.538,0-27.438,14.738-30.982,23.922c-4.846,12.557-5.004,31.942-0.388,60.688l-0.009,0.104l0.006,0.11l3.367,19.138\r\n\t\tl0.562,3.241l32.252,171.628c0.5,2.834-0.62,4.961-1.332,5.977c-0.713,1.017-2.335,2.799-5.179,3.301\r\n\t\tc-0.476,0.083-0.955,0.126-1.427,0.126c-3.893,0-7.207-2.639-7.883-6.472L290.255,338h-0.015c-0.271-2-1.828-10.05-5.022-18.771\r\n\t\tc-2.278-6.217-4.844-11.034-7.844-15.005C270.283,294.836,262.135,293,256.548,293h-1.096c-5.47,0-13.503,1.731-20.71,10.938\r\n\t\tc-3.05,3.896-5.729,8.671-8.19,14.802c-3.628,9.037-5.505,17.654-5.708,18.613l-0.11,0.369l-20.728,119.9\r\n\t\tc-0.693,3.886-3.75,6.596-7.441,6.596c-0.459,0-0.932-0.043-1.403-0.127c-2.84-0.5-4.455-2.275-5.165-3.288\r\n\t\tc-0.709-1.013-1.824-3.136-1.323-5.975l32.257-171.562l0.004-0.019l0.174-0.927l3.775-21.33l0.022-0.125l0.021-0.126\r\n\t\tc4.629-28.829,4.527-48.3-0.332-60.891c-3.543-9.181-13.576-23.737-31.76-23.737"},"children":[]}]}]}]};exports.iosBodyOutline=iosBodyOutline;var iosBody={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"cx":"256","cy":"79.838","r":"48"},"children":[{"name":"circle","attribs":{"cx":"256","cy":"79.838","r":"48"},"children":[]}]},{"name":"path","attribs":{"d":"M424,144H88c-13.255,0-24,10.745-24,24s10.745,24,24,24h98.451c5.579,1,13.197,3.837,17.216,14.252\r\n\t\tc4.651,12.056,2.37,33.606-0.539,51.727l-3.775,21.395c-0.019,0.104-0.039,0.207-0.058,0.311c-0.002,0.008-0.002,0.012-0.004,0.02\r\n\t\tl-30.375,172.268c-2.303,13.053,6.414,25.5,19.467,27.803c13.055,2.301,25.333-6.416,27.634-19.471L237,340.348v0.167\r\n\t\tc0,0,6.25-32.515,18.452-32.515h1.096C269,308,275,340.515,275,340.515v-0.083l20.983,119.913\r\n\t\tc2.301,13.055,14.663,21.749,27.718,19.448c13.053-2.303,21.728-14.762,19.425-27.814L312.73,279.703\r\n\t\tc-0.002-0.008-0.013-0.02-0.015-0.027c-0.019-0.104-0.044-0.217-0.063-0.322l-3.777-21.414\r\n\t\tc-2.909-18.121-5.191-39.631-0.541-51.688C312.354,195.838,319.97,193,325.549,192H424c13.255,0,24-10.745,24-24\r\n\t\tS437.255,144,424,144z"},"children":[{"name":"path","attribs":{"d":"M424,144H88c-13.255,0-24,10.745-24,24s10.745,24,24,24h98.451c5.579,1,13.197,3.837,17.216,14.252\r\n\t\tc4.651,12.056,2.37,33.606-0.539,51.727l-3.775,21.395c-0.019,0.104-0.039,0.207-0.058,0.311c-0.002,0.008-0.002,0.012-0.004,0.02\r\n\t\tl-30.375,172.268c-2.303,13.053,6.414,25.5,19.467,27.803c13.055,2.301,25.333-6.416,27.634-19.471L237,340.348v0.167\r\n\t\tc0,0,6.25-32.515,18.452-32.515h1.096C269,308,275,340.515,275,340.515v-0.083l20.983,119.913\r\n\t\tc2.301,13.055,14.663,21.749,27.718,19.448c13.053-2.303,21.728-14.762,19.425-27.814L312.73,279.703\r\n\t\tc-0.002-0.008-0.013-0.02-0.015-0.027c-0.019-0.104-0.044-0.217-0.063-0.322l-3.777-21.414\r\n\t\tc-2.909-18.121-5.191-39.631-0.541-51.688C312.354,195.838,319.97,193,325.549,192H424c13.255,0,24-10.745,24-24\r\n\t\tS437.255,144,424,144z"},"children":[]}]}]}]};exports.iosBody=iosBody;var iosBoltOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M273.9,132l-16.5,89.1L254,240h19.2h64.8l-99.8,140l16.5-89.1L258,272h-19.2h-64.7L273.9,132 M302.7,64L143,288h95.8\r\n\tl-29.5,160L369,224h-95.8L302.7,64L302.7,64z"},"children":[]}]};exports.iosBoltOutline=iosBoltOutline;var iosBolt={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M302.7,64L143,288h95.8l-29.5,160L369,224h-95.8L302.7,64L302.7,64z"},"children":[]}]};exports.iosBolt=iosBolt;var iosBookOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M347.621,64c-40.941,0-79.121,14-91.578,44.495C242.5,78,205.408,64,164.466,64C109.265,64,64,89.98,64,143v1v8.995V417v9\r\n\th6.215h10.958h4.967c12.86-26.334,44.238-42,78.325-42c40.224,0,73.877,27.528,81.617,64h19.714c7.739-36.472,41.495-64,81.722-64\r\n\tc34.085,0,61.149,11.666,78.429,42h4.967h10.959H448v-17V148v-4v-1C448,89.98,402.823,64,347.621,64z M248,410.926\r\n\tC230,385.055,199.27,368,164.5,368c-34.769,0-64.5,10.055-83.5,35.926l-1,0.537V142l0,0v-1c3-41.825,40.089-61,84.293-61\r\n\tc45.162,0,82.145,18.708,83.363,61.808c-0.017,0.729,0.016,1.459,0.016,2.192L248,157.103V410.926z M432,148v255.926\r\n\tC414,378.055,382.269,368,347.5,368c-34.77,0-65.5,17.055-83.5,42.926V145v-1c0-44.112,37.659-64,83.587-64\r\n\tC391.79,80,429,91.175,432,133v1V148z"},"children":[]}]};exports.iosBookOutline=iosBookOutline;var iosBook={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M164.466,64C109.266,64,64,89.98,64,143v1v8.994V417v9h6.215h10.959h4.967c12.86-26.334,44.238-42,78.325-42\r\n\t\tc40.224,0,73.877,27.528,81.616,64H248V95.346C230.76,73.951,198.981,64,164.466,64z"},"children":[{"name":"path","attribs":{"d":"M164.466,64C109.266,64,64,89.98,64,143v1v8.994V417v9h6.215h10.959h4.967c12.86-26.334,44.238-42,78.325-42\r\n\t\tc40.224,0,73.877,27.528,81.616,64H248V95.346C230.76,73.951,198.981,64,164.466,64z"},"children":[]}]},{"name":"path","attribs":{"d":"M347.621,64c-34.332,0-66.713,9.851-83.621,31.011V448h1.797c7.739-36.472,41.495-64,81.722-64\r\n\t\tc34.085,0,61.149,11.666,78.429,42h4.967h10.959H448v-17V148v-4v-1C448,89.98,402.823,64,347.621,64z"},"children":[{"name":"path","attribs":{"d":"M347.621,64c-34.332,0-66.713,9.851-83.621,31.011V448h1.797c7.739-36.472,41.495-64,81.722-64\r\n\t\tc34.085,0,61.149,11.666,78.429,42h4.967h10.959H448v-17V148v-4v-1C448,89.98,402.823,64,347.621,64z"},"children":[]}]}]}]};exports.iosBook=iosBook;var iosBookmarksOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M432,64H281.6c-10.3,0-19.3,4.6-25.6,11.7l0,0l0,0c-6.2-7.2-15.3-11.7-25.6-11.7H80c-18.8,0-33,13.3-33,32v286.1\r\n\tc0,18.8,14.2,33.9,33,33.9c0,0,129.5,0,143.3,0c13.8,0,24.7,4.2,24.7,19.4c0,9.1,0,12.6,0,12.6h8h8c0,0,0-3.4,0-12.6\r\n\tc0-15.3,10.9-19.4,24.7-19.4s143.3,0,143.3,0c18.8,0,33-15.1,33-33.9V96C465,77.3,450.8,64,432,64z M248,411.1\r\n\tc-4.7-7.8-13.5-11.1-23.8-11.1H80c-9.4,0-16-8.5-16-17.9V96c0-9.4,6.6-16,16-16c0,0,130.6,0,143.3,0c12.8,0,24.7,12.8,24.7,22.2\r\n\tV411.1z M320,80c18.8,0,43,0,64,0v100.4l-22.9-14.5l-9.1-6.4l-9.1,6.4L320,180.4V80z M448,382.1c0,9.4-6.6,17.9-16,17.9H287.8\r\n\tc-10.3,0-19.1,2.3-23.8,11.1V102.2c0-9.4,11.9-22.2,24.7-22.2c2.2,0,7.7,0,15.3,0v131l48-32l48,32V80c18.6,0,32,0,32,0\r\n\tc9.4,0,16,6.7,16,16V382.1z"},"children":[]}]};exports.iosBookmarksOutline=iosBookmarksOutline;var iosBookmarks={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M342.9,165.4l9.1-6.4l9.1,6.4l22.9,14.5V64c-20.7,0-44.5,0-64,0v115.9L342.9,165.4z"},"children":[{"name":"path","attribs":{"d":"M342.9,165.4l9.1-6.4l9.1,6.4l22.9,14.5V64c-20.7,0-44.5,0-64,0v115.9L342.9,165.4z"},"children":[]}]},{"name":"path","attribs":{"d":"M432,64c0,0-13.3,0-32,0v146.5l-48-32l-48,32V64c-12.1,0-20.6,0-22.4,0c-8.1,0-17.6,7.2-17.6,15s0,329,0,329l-8,5.5l-8-5.5\r\n\t\tc0,0,0-322,0-329s-9.2-15-17.6-15S80,64,80,64c-18.8,0-33,13.3-33,32v286.1c0,18.8,14.2,33.9,33,33.9c0,0,129.5,0,143.3,0\r\n\t\tc13.8,0,24.7,4.2,24.7,19.4c0,9.1,0,12.6,0,12.6h8h8c0,0,0-3.4,0-12.6c0-15.3,10.9-19.4,24.7-19.4s143.3,0,143.3,0\r\n\t\tc18.8,0,33-15.1,33-33.9V96C465,77.3,450.8,64,432,64z"},"children":[{"name":"path","attribs":{"d":"M432,64c0,0-13.3,0-32,0v146.5l-48-32l-48,32V64c-12.1,0-20.6,0-22.4,0c-8.1,0-17.6,7.2-17.6,15s0,329,0,329l-8,5.5l-8-5.5\r\n\t\tc0,0,0-322,0-329s-9.2-15-17.6-15S80,64,80,64c-18.8,0-33,13.3-33,32v286.1c0,18.8,14.2,33.9,33,33.9c0,0,129.5,0,143.3,0\r\n\t\tc13.8,0,24.7,4.2,24.7,19.4c0,9.1,0,12.6,0,12.6h8h8c0,0,0-3.4,0-12.6c0-15.3,10.9-19.4,24.7-19.4s143.3,0,143.3,0\r\n\t\tc18.8,0,33-15.1,33-33.9V96C465,77.3,450.8,64,432,64z"},"children":[]}]}]}]};exports.iosBookmarks=iosBookmarks;var iosBoxOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M287.8,240c8.8,0,16.1,7.2,16.1,16s-7,16-15.9,16h-64c-8.8,0-16-7.2-16-16s7.2-16,16-16h63 M288,224h-64\r\n\t\tc-17.6,0-32,14.4-32,32s14.4,32,32,32h64c17.6,0,32-14.4,32-32S305.6,224,288,224L288,224z"},"children":[{"name":"path","attribs":{"d":"M287.8,240c8.8,0,16.1,7.2,16.1,16s-7,16-15.9,16h-64c-8.8,0-16-7.2-16-16s7.2-16,16-16h63 M288,224h-64\r\n\t\tc-17.6,0-32,14.4-32,32s14.4,32,32,32h64c17.6,0,32-14.4,32-32S305.6,224,288,224L288,224z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M416,112H96v80h16v208h288V192h16V112z M384,384H128V192h256V384z M400,176H112v-48h288V176z"},"children":[{"name":"path","attribs":{"d":"M416,112H96v80h16v208h288V192h16V112z M384,384H128V192h256V384z M400,176H112v-48h288V176z"},"children":[]}]}]}]}]}]};exports.iosBoxOutline=iosBoxOutline;var iosBox={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M112,400h288V208H112V400z M224,240h64c8.8,0,16,7.2,16,16s-7.2,16-16,16h-64c-8.8,0-16-7.2-16-16S215.2,240,224,240z"},"children":[{"name":"path","attribs":{"d":"M112,400h288V208H112V400z M224,240h64c8.8,0,16,7.2,16,16s-7.2,16-16,16h-64c-8.8,0-16-7.2-16-16S215.2,240,224,240z"},"children":[]}]},{"name":"polygon","attribs":{"points":"96,112 96,192 112,192 400,192 416,192 416,112 \t"},"children":[{"name":"polygon","attribs":{"points":"96,112 96,192 112,192 400,192 416,192 416,112 \t"},"children":[]}]}]}]};exports.iosBox=iosBox;var iosBriefcaseOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M416,128v-16h-32v16h-48V98.1V96c-0.5-18.2-13.6-32-32.2-32h-99.1C186.1,64,176,77.7,176,96v2.1V128h-48v-16H96v16H48v320\r\n\t\th416V128H416z M192,127.5V98.1c0-10.2,2.9-18.1,13.7-18.1h97.1c10.4,0,17.2,7.7,17.2,18.1v29.4v0.5H192V127.5z M448,432H64V208h384\r\n\t\tV432z M448,192H64v-48h32v16h32v-16h256v16h32v-16h32V192z"},"children":[{"name":"path","attribs":{"d":"M416,128v-16h-32v16h-48V98.1V96c-0.5-18.2-13.6-32-32.2-32h-99.1C186.1,64,176,77.7,176,96v2.1V128h-48v-16H96v16H48v320\r\n\t\th416V128H416z M192,127.5V98.1c0-10.2,2.9-18.1,13.7-18.1h97.1c10.4,0,17.2,7.7,17.2,18.1v29.4v0.5H192V127.5z M448,432H64V208h384\r\n\t\tV432z M448,192H64v-48h32v16h32v-16h256v16h32v-16h32V192z"},"children":[]}]}]}]};exports.iosBriefcaseOutline=iosBriefcaseOutline;var iosBriefcase={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"96","y":"112","width":"32","height":"16"},"children":[{"name":"rect","attribs":{"x":"96","y":"112","width":"32","height":"16"},"children":[]}]},{"name":"rect","attribs":{"x":"48","y":"208","width":"416","height":"240"},"children":[{"name":"rect","attribs":{"x":"48","y":"208","width":"416","height":"240"},"children":[]}]},{"name":"rect","attribs":{"x":"384","y":"112","width":"32","height":"16"},"children":[{"name":"rect","attribs":{"x":"384","y":"112","width":"32","height":"16"},"children":[]}]},{"name":"path","attribs":{"d":"M416,128v32h-32v-32h-48V98.1V96c-0.5-18.2-13.6-32-32.2-32h-99.1C186.1,64,176,77.7,176,96v2.1V128h-48v32H96v-32H48v64\r\n\t\th416v-64H416z M320,127.5v0.5H192v-0.5V98.1c0-10.2,2.9-18.1,13.7-18.1h97.1c10.4,0,17.2,7.7,17.2,18.1V127.5z"},"children":[{"name":"path","attribs":{"d":"M416,128v32h-32v-32h-48V98.1V96c-0.5-18.2-13.6-32-32.2-32h-99.1C186.1,64,176,77.7,176,96v2.1V128h-48v32H96v-32H48v64\r\n\t\th416v-64H416z M320,127.5v0.5H192v-0.5V98.1c0-10.2,2.9-18.1,13.7-18.1h97.1c10.4,0,17.2,7.7,17.2,18.1V127.5z"},"children":[]}]}]}]};exports.iosBriefcase=iosBriefcase;var iosBrowsersOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M64,144v304h303.9V144H64z M351.9,432H80V160h271.9V432z"},"children":[{"name":"path","attribs":{"d":"M64,144v304h303.9V144H64z M351.9,432H80V160h271.9V432z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"448,64 144,64 144,128 160,128 160,80 432,80 432,352 384,352 384,368 448,368 \t\t"},"children":[{"name":"polygon","attribs":{"points":"448,64 144,64 144,128 160,128 160,80 432,80 432,352 384,352 384,368 448,368 \t\t"},"children":[]}]}]}]}]}]};exports.iosBrowsersOutline=iosBrowsersOutline;var iosBrowsers={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M64,144v304h303.9V144H64z"},"children":[{"name":"path","attribs":{"d":"M64,144v304h303.9V144H64z"},"children":[]}]},{"name":"polygon","attribs":{"points":"144,64 144,128 384,128 384,368 448,368 448,64 \t"},"children":[{"name":"polygon","attribs":{"points":"144,64 144,128 384,128 384,368 448,368 448,64 \t"},"children":[]}]}]}]};exports.iosBrowsers=iosBrowsers;var iosCalculatorOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M144,160h224V96H144V160z M160,112h192v32H160V112z"},"children":[{"name":"path","attribs":{"d":"M144,160h224V96H144V160z M160,112h192v32H160V112z"},"children":[]}]},{"name":"path","attribs":{"d":"M368,64H144c-17.7,0-32,14.3-32,32v320c0,17.7,14.3,32,32,32h224c17.7,0,32-14.3,32-32V96C400,78.3,385.7,64,368,64z\r\n\t\t M384,416c0,8.8-7.2,16-16,16H144c-8.8,0-16-7.2-16-16V96c0-8.8,7.2-16,16-16h224c8.8,0,16,7.2,16,16V416z"},"children":[{"name":"path","attribs":{"d":"M368,64H144c-17.7,0-32,14.3-32,32v320c0,17.7,14.3,32,32,32h224c17.7,0,32-14.3,32-32V96C400,78.3,385.7,64,368,64z\r\n\t\t M384,416c0,8.8-7.2,16-16,16H144c-8.8,0-16-7.2-16-16V96c0-8.8,7.2-16,16-16h224c8.8,0,16,7.2,16,16V416z"},"children":[]}]},{"name":"polygon","attribs":{"points":"160,240 160,208 160,192 144,192 144,256 208,256 208,240 192,240 \t"},"children":[{"name":"polygon","attribs":{"points":"160,240 160,208 160,192 144,192 144,256 208,256 208,240 192,240 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"160,320 160,288 160,272 144,272 144,336 208,336 208,320 192,320 \t"},"children":[{"name":"polygon","attribs":{"points":"160,320 160,288 160,272 144,272 144,336 208,336 208,320 192,320 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"160,400 160,368 160,352 144,352 144,416 208,416 208,400 192,400 \t"},"children":[{"name":"polygon","attribs":{"points":"160,400 160,368 160,352 144,352 144,416 208,416 208,400 192,400 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"240,240 240,208 240,192 224,192 224,256 288,256 288,240 272,240 \t"},"children":[{"name":"polygon","attribs":{"points":"240,240 240,208 240,192 224,192 224,256 288,256 288,240 272,240 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"320,240 320,208 320,192 304,192 304,256 368,256 368,240 352,240 \t"},"children":[{"name":"polygon","attribs":{"points":"320,240 320,208 320,192 304,192 304,256 368,256 368,240 352,240 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"240,320 240,288 240,272 224,272 224,336 288,336 288,320 272,320 \t"},"children":[{"name":"polygon","attribs":{"points":"240,320 240,288 240,272 224,272 224,336 288,336 288,320 272,320 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"240,400 240,368 240,352 224,352 224,416 288,416 288,400 272,400 \t"},"children":[{"name":"polygon","attribs":{"points":"240,400 240,368 240,352 224,352 224,416 288,416 288,400 272,400 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"320,400 320,368 320,272 304,272 304,416 368,416 368,400 352,400 \t"},"children":[{"name":"polygon","attribs":{"points":"320,400 320,368 320,272 304,272 304,416 368,416 368,400 352,400 \t"},"children":[]}]}]}]};exports.iosCalculatorOutline=iosCalculatorOutline;var iosCalculator={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M368,64H144c-17.7,0-32,14.3-32,32v320c0,17.7,14.3,32,32,32h224c17.7,0,32-14.3,32-32V96C400,78.3,385.7,64,368,64z\r\n\t M360,280v128h-48V280H360z M360,200v48h-48v-48H360z M280,360v48h-48v-48H280z M280,280v48h-48v-48H280z M280,200v48h-48v-48H280z\r\n\t M200,360v48h-48v-48H200z M200,280v48h-48v-48H200z M200,200v48h-48v-48H200z M152,152v-48h208v48H152z"},"children":[]}]};exports.iosCalculator=iosCalculator;var iosCalendarOutline={"viewBox":"0 0 512 512","children":[{"name":"style","attribs":{"type":"text/css"},"children":[]},{"name":"polyline","attribs":{"class":"st0","points":"80,112 80,176 432,176 432,112 "},"children":[]},{"name":"path","attribs":{"d":"M352,96V64h-16v32H176V64h-16v32H64v352h384V96H352z M432,432H80V192h352V432z M432,176H80v-64h80v32h16v-32h160v32h16v-32\r\n\th80V176z"},"children":[]}]};exports.iosCalendarOutline=iosCalendarOutline;var iosCalendar={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"64","y":"192","width":"384","height":"256"},"children":[{"name":"rect","attribs":{"x":"64","y":"192","width":"384","height":"256"},"children":[]}]},{"name":"polygon","attribs":{"points":"448,96 352,96 352,144 336,144 336,96 176,96 176,144 160,144 160,96 64,96 64,176 448,176 \t"},"children":[{"name":"polygon","attribs":{"points":"448,96 352,96 352,144 336,144 336,96 176,96 176,144 160,144 160,96 64,96 64,176 448,176 \t"},"children":[]}]},{"name":"rect","attribs":{"x":"160","y":"64","width":"16","height":"32"},"children":[{"name":"rect","attribs":{"x":"160","y":"64","width":"16","height":"32"},"children":[]}]},{"name":"rect","attribs":{"x":"336","y":"64","width":"16","height":"32"},"children":[{"name":"rect","attribs":{"x":"336","y":"64","width":"16","height":"32"},"children":[]}]}]}]};exports.iosCalendar=iosCalendar;var iosCameraOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M417.5,160h-61.7c-32.1-36-42.2-48-54.5-48h-88.5c-12.3,0-22.2,12-54.5,48H145v-16h-34v16H97.5C79.9,160,64,173.2,64,190.7\r\n\t\tv176c0,17.5,15.9,33.3,33.5,33.3h320c17.6,0,30.5-15.8,30.5-33.3v-176C448,173.2,435.1,160,417.5,160z M432,366.7\r\n\t\tc0,9.3-6.2,17.3-14.5,17.3h-320c-8.7,0-17.5-8.7-17.5-17.3v-176c0-8.2,8.1-14.7,17.5-14.7h60.7h7.1l4.8-3.2c4-4.5,7.7-10,11.1-13.8\r\n\t\tc11.3-12.7,19.5-21.7,25.3-26.9c4.7-4.2,6.2-4.1,6.2-4.1h88.5c0,0,1.6-0.1,6.7,4.5c6.1,5.5,14.7,16.5,26.6,29.8\r\n\t\tc2.9,3.3,6,6.8,9.3,10.5l4.8,3.2h7.2h61.7c8.8,0,14.5,6,14.5,14.7V366.7z"},"children":[{"name":"path","attribs":{"d":"M417.5,160h-61.7c-32.1-36-42.2-48-54.5-48h-88.5c-12.3,0-22.2,12-54.5,48H145v-16h-34v16H97.5C79.9,160,64,173.2,64,190.7\r\n\t\tv176c0,17.5,15.9,33.3,33.5,33.3h320c17.6,0,30.5-15.8,30.5-33.3v-176C448,173.2,435.1,160,417.5,160z M432,366.7\r\n\t\tc0,9.3-6.2,17.3-14.5,17.3h-320c-8.7,0-17.5-8.7-17.5-17.3v-176c0-8.2,8.1-14.7,17.5-14.7h60.7h7.1l4.8-3.2c4-4.5,7.7-10,11.1-13.8\r\n\t\tc11.3-12.7,19.5-21.7,25.3-26.9c4.7-4.2,6.2-4.1,6.2-4.1h88.5c0,0,1.6-0.1,6.7,4.5c6.1,5.5,14.7,16.5,26.6,29.8\r\n\t\tc2.9,3.3,6,6.8,9.3,10.5l4.8,3.2h7.2h61.7c8.8,0,14.5,6,14.5,14.7V366.7z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,189.5c-47.1,0-85.5,38.4-85.5,85.5s38.4,85.5,85.5,85.5s85.5-38.4,85.5-85.5S303.1,189.5,256,189.5z M256,344.5\r\n\t\tc-38.4,0-69.5-31.1-69.5-69.5s31.1-69.5,69.5-69.5s69.5,31.1,69.5,69.5S294.4,344.5,256,344.5z"},"children":[{"name":"path","attribs":{"d":"M256,189.5c-47.1,0-85.5,38.4-85.5,85.5s38.4,85.5,85.5,85.5s85.5-38.4,85.5-85.5S303.1,189.5,256,189.5z M256,344.5\r\n\t\tc-38.4,0-69.5-31.1-69.5-69.5s31.1-69.5,69.5-69.5s69.5,31.1,69.5,69.5S294.4,344.5,256,344.5z"},"children":[]}]},{"name":"rect","attribs":{"x":"352","y":"192","width":"17","height":"17"},"children":[{"name":"rect","attribs":{"x":"352","y":"192","width":"17","height":"17"},"children":[]}]},{"name":"circle","attribs":{"cx":"256","cy":"275","r":"32"},"children":[{"name":"circle","attribs":{"cx":"256","cy":"275","r":"32"},"children":[]}]}]}]};exports.iosCameraOutline=iosCameraOutline;var iosCamera={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M417.5,160h-61.7c-32.1-36-42.2-48-54.5-48h-88.5c-12.3,0-22.2,12-54.5,48H145v-16h-34v16H97.5C79.9,160,64,173.2,64,190.7\r\n\t\tv176c0,17.5,15.9,33.3,33.5,33.3h320c17.6,0,30.5-15.8,30.5-33.3v-176C448,173.2,435.1,160,417.5,160z M256,360.5\r\n\t\tc-47.1,0-85.5-38.4-85.5-85.5s38.4-85.5,85.5-85.5s85.5,38.4,85.5,85.5S303.1,360.5,256,360.5z M369,209h-17v-17h17V209z"},"children":[{"name":"path","attribs":{"d":"M417.5,160h-61.7c-32.1-36-42.2-48-54.5-48h-88.5c-12.3,0-22.2,12-54.5,48H145v-16h-34v16H97.5C79.9,160,64,173.2,64,190.7\r\n\t\tv176c0,17.5,15.9,33.3,33.5,33.3h320c17.6,0,30.5-15.8,30.5-33.3v-176C448,173.2,435.1,160,417.5,160z M256,360.5\r\n\t\tc-47.1,0-85.5-38.4-85.5-85.5s38.4-85.5,85.5-85.5s85.5,38.4,85.5,85.5S303.1,360.5,256,360.5z M369,209h-17v-17h17V209z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,205.5c-38.4,0-69.5,31.1-69.5,69.5s31.1,69.5,69.5,69.5s69.5-31.1,69.5-69.5S294.4,205.5,256,205.5z M256,307\r\n\t\tc-17.7,0-32-14.3-32-32s14.3-32,32-32s32,14.3,32,32S273.7,307,256,307z"},"children":[{"name":"path","attribs":{"d":"M256,205.5c-38.4,0-69.5,31.1-69.5,69.5s31.1,69.5,69.5,69.5s69.5-31.1,69.5-69.5S294.4,205.5,256,205.5z M256,307\r\n\t\tc-17.7,0-32-14.3-32-32s14.3-32,32-32s32,14.3,32,32S273.7,307,256,307z"},"children":[]}]}]}]};exports.iosCamera=iosCamera;var iosCartOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M160,400c-13.248,0-24,10.752-24,24s10.752,24,24,24s24-10.752,24-24S173.248,400,160,400z M160,432c-4.411,0-8-3.589-8-8\r\n\t\ts3.589-8,8-8s8,3.589,8,8S164.411,432,160,432z"},"children":[{"name":"path","attribs":{"d":"M160,400c-13.248,0-24,10.752-24,24s10.752,24,24,24s24-10.752,24-24S173.248,400,160,400z M160,432c-4.411,0-8-3.589-8-8\r\n\t\ts3.589-8,8-8s8,3.589,8,8S164.411,432,160,432z"},"children":[]}]},{"name":"path","attribs":{"d":"M384.5,400c-13.248,0-24,10.752-24,24s10.752,24,24,24s24-10.752,24-24S397.748,400,384.5,400z M384.5,432\r\n\t\tc-4.411,0-8-3.589-8-8s3.589-8,8-8s8,3.589,8,8S388.911,432,384.5,432z"},"children":[{"name":"path","attribs":{"d":"M384.5,400c-13.248,0-24,10.752-24,24s10.752,24,24,24s24-10.752,24-24S397.748,400,384.5,400z M384.5,432\r\n\t\tc-4.411,0-8-3.589-8-8s3.589-8,8-8s8,3.589,8,8S388.911,432,384.5,432z"},"children":[]}]},{"name":"path","attribs":{"d":"M448,128L123.177,95.646c-1.628-6.972-4.369-14.66-11.838-20.667C102.025,67.489,86.982,64,64,64v16.001\r\n\t\tc18.614,0,31.167,2.506,37.312,7.447c4.458,3.585,5.644,8.423,7.165,15.989l-0.024,0.004l42.052,233.638\r\n\t\tc2.413,14.422,7.194,25.209,13.291,32.986C171.043,379.312,180.533,384,192,384h240v-16H192c-4.727,0-19.136,0.123-25.749-33.755\r\n\t\tl-5.429-30.16L432,256L448,128z M418.59,242.348l-260.601,45.99l-31.732-176.3l303.869,30.608L418.59,242.348z"},"children":[{"name":"path","attribs":{"d":"M448,128L123.177,95.646c-1.628-6.972-4.369-14.66-11.838-20.667C102.025,67.489,86.982,64,64,64v16.001\r\n\t\tc18.614,0,31.167,2.506,37.312,7.447c4.458,3.585,5.644,8.423,7.165,15.989l-0.024,0.004l42.052,233.638\r\n\t\tc2.413,14.422,7.194,25.209,13.291,32.986C171.043,379.312,180.533,384,192,384h240v-16H192c-4.727,0-19.136,0.123-25.749-33.755\r\n\t\tl-5.429-30.16L432,256L448,128z M418.59,242.348l-260.601,45.99l-31.732-176.3l303.869,30.608L418.59,242.348z"},"children":[]}]}]}]};exports.iosCartOutline=iosCartOutline;var iosCart={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M160,400c-13.248,0-24,10.752-24,24s10.752,24,24,24s24-10.752,24-24S173.248,400,160,400z"},"children":[{"name":"path","attribs":{"d":"M160,400c-13.248,0-24,10.752-24,24s10.752,24,24,24s24-10.752,24-24S173.248,400,160,400z"},"children":[]}]},{"name":"path","attribs":{"d":"M384.5,400c-13.248,0-24,10.752-24,24s10.752,24,24,24s24-10.752,24-24S397.748,400,384.5,400z"},"children":[{"name":"path","attribs":{"d":"M384.5,400c-13.248,0-24,10.752-24,24s10.752,24,24,24s24-10.752,24-24S397.748,400,384.5,400z"},"children":[]}]},{"name":"path","attribs":{"d":"M448,128L123.177,95.646c-1.628-6.972-4.369-14.66-11.838-20.667C102.025,67.489,86.982,64,64,64v16.001\r\n\t\tc18.614,0,31.167,2.506,37.312,7.447c4.458,3.585,5.644,8.423,7.165,15.989l-0.024,0.004l42.052,233.638\r\n\t\tc2.413,14.422,7.194,25.209,13.291,32.986C171.043,379.312,180.533,384,192,384h240v-16H192c-4.727,0-19.136,0.123-25.749-33.755\r\n\t\tl-5.429-30.16L432,256L448,128z"},"children":[{"name":"path","attribs":{"d":"M448,128L123.177,95.646c-1.628-6.972-4.369-14.66-11.838-20.667C102.025,67.489,86.982,64,64,64v16.001\r\n\t\tc18.614,0,31.167,2.506,37.312,7.447c4.458,3.585,5.644,8.423,7.165,15.989l-0.024,0.004l42.052,233.638\r\n\t\tc2.413,14.422,7.194,25.209,13.291,32.986C171.043,379.312,180.533,384,192,384h240v-16H192c-4.727,0-19.136,0.123-25.749-33.755\r\n\t\tl-5.429-30.16L432,256L448,128z"},"children":[]}]}]}]};exports.iosCart=iosCart;var iosChatboxesOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"64,64 320,64 320,160 336,160 336,48 48,48 48,272 160,272 160,256 64,256 \t"},"children":[{"name":"polygon","attribs":{"points":"64,64 320,64 320,160 336,160 336,48 48,48 48,272 160,272 160,256 64,256 \t"},"children":[]}]},{"name":"path","attribs":{"d":"M176,176v224h162.6l64,64H416v-64h48V176H176z M448,384h-48v54.6L345,384H192V192h256V384z"},"children":[{"name":"path","attribs":{"d":"M176,176v224h162.6l64,64H416v-64h48V176H176z M448,384h-48v54.6L345,384H192V192h256V384z"},"children":[]}]}]}]};exports.iosChatboxesOutline=iosChatboxesOutline;var iosChatboxes={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"336,48 48,48 48,272 160,272 160,160 336,160 \t"},"children":[{"name":"polygon","attribs":{"points":"336,48 48,48 48,272 160,272 160,160 336,160 \t"},"children":[]}]},{"name":"path","attribs":{"d":"M176,176v224h162.6l64,64H416v-64h48V176H176z"},"children":[{"name":"path","attribs":{"d":"M176,176v224h162.6l64,64H416v-64h48V176H176z"},"children":[]}]}]}]};exports.iosChatboxes=iosChatboxes;var iosChatbubbleOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,112c97,0,176,62,176,138.3c0,35.9-17.6,69.2-49.5,93.9c-32.8,25.4-77.4,39.3-125.5,39.3c-28.9,0-51-3-69.7-9.3\r\n\tc-0.6-0.2-1.3-0.5-2-0.7c-0.3-0.1-0.6-0.2-0.8-0.2c-4.7-1.4-9.7-2.1-14.7-2.1c-5.6,0-11.1,0.9-16.3,2.6l0,0l-0.3,0.1\r\n\tc-0.6,0.2-8.9,3.3-11,4.3l0,0l-39.6,17.2c13.8-43.9,13.8-44.8,13.8-47.6c0-7.1-2.2-14.1-6.3-20.2c-0.5-0.7-1-1.4-1.6-2.1\r\n\tc-0.7-0.9-1.3-1.7-1.8-2.3c-17.4-21.9-26.6-47.1-26.6-73C80,174,159,112,256,112 M256,96C149.9,96,64,165.1,64,250.3\r\n\tc0,30.7,11.2,59.3,30.4,83.3c0.9,0.9,2.9,3.8,3.6,4.9c0,0-1-1.6-1.1-1.9c0,0,0,0,0,0l0,0c0,0,0,0,0,0c2.3,3.3,3.6,7.1,3.6,11.2\r\n\tc0,1.4-17.9,58-17.9,58l0,0c-1.3,4.4,2.1,8.9,7.6,10c0.8,0.2,1.6,0.2,2.4,0.2c1.3,0,2.5-0.2,3.7-0.5l1.6-0.6l50.6-22\r\n\tc0.9-0.4,9-3.5,10-3.9c0,0,0.6-0.2,0.6-0.2c0,0-0.1,0-0.6,0.2c3.4-1.2,7.2-1.8,11.2-1.8c3.6,0,7.1,0.5,10.3,1.5c0.1,0,0.2,0,0.2,0.1\r\n\tc0.5,0.2,1,0.3,1.5,0.5c23.1,7.9,48.4,10.3,75.1,10.3c106,0,191-64.1,191-149.3C448,165.1,362,96,256,96L256,96z"},"children":[]}]};exports.iosChatbubbleOutline=iosChatbubbleOutline;var iosChatbubble={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,96C149.9,96,64,165.1,64,250.3c0,30.7,11.2,59.3,30.4,83.3c0.9,0.9,2.9,3.8,3.6,4.9c0,0-1-1.6-1.1-1.9c0,0,0,0,0,0l0,0\r\n\tc0,0,0,0,0,0c2.3,3.3,3.6,7.1,3.6,11.2c0,1.4-17.9,58-17.9,58l0,0c-1.3,4.4,2.1,8.9,7.6,10c0.8,0.2,1.6,0.2,2.4,0.2\r\n\tc1.3,0,2.5-0.2,3.7-0.5l1.6-0.6l50.6-22c0.9-0.4,9-3.5,10-3.9c0,0,0.6-0.2,0.6-0.2c0,0-0.1,0-0.6,0.2c3.4-1.2,7.2-1.8,11.2-1.8\r\n\tc3.6,0,7.1,0.5,10.3,1.5c0.1,0,0.2,0,0.2,0.1c0.5,0.2,1,0.3,1.5,0.5c23.1,7.9,48.4,10.3,75.1,10.3c106,0,191-64.1,191-149.3\r\n\tC448,165.1,362,96,256,96L256,96z"},"children":[]}]};exports.iosChatbubble=iosChatbubble;var iosCheckmarkEmpty={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M223.9,329.7c-2.4,2.4-5.8,4.4-8.8,4.4s-6.4-2.1-8.9-4.5l-56-56l17.8-17.8l47.2,47.2l124.8-125.7l17.5,18.1L223.9,329.7z"},"children":[{"name":"path","attribs":{"d":"M223.9,329.7c-2.4,2.4-5.8,4.4-8.8,4.4s-6.4-2.1-8.9-4.5l-56-56l17.8-17.8l47.2,47.2l124.8-125.7l17.5,18.1L223.9,329.7z"},"children":[]}]}]}]};exports.iosCheckmarkEmpty=iosCheckmarkEmpty;var iosCheckmarkOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M340.1,177.3L215.3,303l-47.2-47.2l-17.8,17.8l56,56c2.5,2.5,5.9,4.5,8.9,4.5s6.3-2,8.8-4.4l133.7-134.4L340.1,177.3z"},"children":[{"name":"path","attribs":{"d":"M340.1,177.3L215.3,303l-47.2-47.2l-17.8,17.8l56,56c2.5,2.5,5.9,4.5,8.9,4.5s6.3-2,8.8-4.4l133.7-134.4L340.1,177.3z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M256,446.7\r\n\t\t\tc-105.1,0-190.7-85.5-190.7-190.7c0-105.1,85.5-190.7,190.7-190.7c105.1,0,190.7,85.5,190.7,190.7\r\n\t\t\tC446.7,361.1,361.1,446.7,256,446.7z"},"children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M256,446.7\r\n\t\t\tc-105.1,0-190.7-85.5-190.7-190.7c0-105.1,85.5-190.7,190.7-190.7c105.1,0,190.7,85.5,190.7,190.7\r\n\t\t\tC446.7,361.1,361.1,446.7,256,446.7z"},"children":[]}]}]}]}]}]};exports.iosCheckmarkOutline=iosCheckmarkOutline;var iosCheckmark={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M223.9,329.7\r\n\t\tc-2.4,2.4-5.8,4.4-8.8,4.4s-6.4-2.1-8.9-4.5l-56-56l17.8-17.8l47.2,47.2l124.8-125.7l17.5,18.1L223.9,329.7z"},"children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M223.9,329.7\r\n\t\tc-2.4,2.4-5.8,4.4-8.8,4.4s-6.4-2.1-8.9-4.5l-56-56l17.8-17.8l47.2,47.2l124.8-125.7l17.5,18.1L223.9,329.7z"},"children":[]}]}]}]};exports.iosCheckmark=iosCheckmark;var iosCircleFilled={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M256,446.7\r\n\t\t\tc-105.1,0-190.7-85.5-190.7-190.7c0-105.1,85.5-190.7,190.7-190.7c105.1,0,190.7,85.5,190.7,190.7\r\n\t\t\tC446.7,361.1,361.1,446.7,256,446.7z"},"children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M256,446.7\r\n\t\t\tc-105.1,0-190.7-85.5-190.7-190.7c0-105.1,85.5-190.7,190.7-190.7c105.1,0,190.7,85.5,190.7,190.7\r\n\t\t\tC446.7,361.1,361.1,446.7,256,446.7z"},"children":[]}]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,96c-88.4,0-160,71.6-160,160c0,88.4,71.6,160,160,160c88.4,0,160-71.6,160-160C416,167.6,344.4,96,256,96z"},"children":[{"name":"path","attribs":{"d":"M256,96c-88.4,0-160,71.6-160,160c0,88.4,71.6,160,160,160c88.4,0,160-71.6,160-160C416,167.6,344.4,96,256,96z"},"children":[]}]}]}]}]}]};exports.iosCircleFilled=iosCircleFilled;var iosCircleOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M256,446.7\r\n\t\t\tc-105.1,0-190.7-85.5-190.7-190.7c0-105.1,85.5-190.7,190.7-190.7c105.1,0,190.7,85.5,190.7,190.7\r\n\t\t\tC446.7,361.1,361.1,446.7,256,446.7z"},"children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M256,446.7\r\n\t\t\tc-105.1,0-190.7-85.5-190.7-190.7c0-105.1,85.5-190.7,190.7-190.7c105.1,0,190.7,85.5,190.7,190.7\r\n\t\t\tC446.7,361.1,361.1,446.7,256,446.7z"},"children":[]}]}]}]}]}]};exports.iosCircleOutline=iosCircleOutline;var iosClockOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M256,446.7\r\n\t\tc-105.1,0-190.7-85.5-190.7-190.7c0-105.1,85.5-190.7,190.7-190.7c105.1,0,190.7,85.5,190.7,190.7\r\n\t\tC446.7,361.1,361.1,446.7,256,446.7z"},"children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M256,446.7\r\n\t\tc-105.1,0-190.7-85.5-190.7-190.7c0-105.1,85.5-190.7,190.7-190.7c105.1,0,190.7,85.5,190.7,190.7\r\n\t\tC446.7,361.1,361.1,446.7,256,446.7z"},"children":[]}]},{"name":"polygon","attribs":{"points":"256,256 160,256 160,273.3 273.3,273.3 273.3,128 256,128 \t"},"children":[{"name":"polygon","attribs":{"points":"256,256 160,256 160,273.3 273.3,273.3 273.3,128 256,128 \t"},"children":[]}]}]}]};exports.iosClockOutline=iosClockOutline;var iosClock={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M273,273H160v-17h96V128h17\r\n\t\tV273z"},"children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M273,273H160v-17h96V128h17\r\n\t\tV273z"},"children":[]}]}]}]};exports.iosClock=iosClock;var iosCloseEmpty={"viewBox":"0 0 512 512","children":[{"name":"style","attribs":{"type":"text/css"},"children":[]},{"name":"polygon","attribs":{"class":"st0","points":"340.2,160 255.8,244.3 171.8,160.4 160,172.2 244,256 160,339.9 171.8,351.6 255.8,267.8 340.2,352 \r\n\t352,340.3 267.6,256 352,171.8 "},"children":[]}]};exports.iosCloseEmpty=iosCloseEmpty;var iosCloseOutline={"viewBox":"0 0 512 512","children":[{"name":"style","attribs":{"type":"text/css"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"class":"st0","d":"M403.1,108.9c-81.2-81.2-212.9-81.2-294.2,0s-81.2,212.9,0,294.2c81.2,81.2,212.9,81.2,294.2,0\r\n\t\t\tS484.3,190.1,403.1,108.9z M390.8,390.8c-74.3,74.3-195.3,74.3-269.6,0c-74.3-74.3-74.3-195.3,0-269.6s195.3-74.3,269.6,0\r\n\t\t\tC465.2,195.5,465.2,316.5,390.8,390.8z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M403.1,108.9c-81.2-81.2-212.9-81.2-294.2,0s-81.2,212.9,0,294.2c81.2,81.2,212.9,81.2,294.2,0\r\n\t\t\tS484.3,190.1,403.1,108.9z M390.8,390.8c-74.3,74.3-195.3,74.3-269.6,0c-74.3-74.3-74.3-195.3,0-269.6s195.3-74.3,269.6,0\r\n\t\t\tC465.2,195.5,465.2,316.5,390.8,390.8z"},"children":[]}]}]}]},{"name":"polygon","attribs":{"class":"st0","points":"340.2,160 255.8,244.2 171.8,160.4 160,172.2 244,256 160,339.8 171.8,351.6 255.8,267.8 340.2,352 \r\n\t\t352,340.2 267.6,256 352,171.8 \t"},"children":[{"name":"polygon","attribs":{"class":"st0","points":"340.2,160 255.8,244.2 171.8,160.4 160,172.2 244,256 160,339.8 171.8,351.6 255.8,267.8 340.2,352 \r\n\t\t352,340.2 267.6,256 352,171.8 \t"},"children":[]}]}]}]};exports.iosCloseOutline=iosCloseOutline;var iosClose={"viewBox":"0 0 512 512","children":[{"name":"style","attribs":{"type":"text/css"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"class":"st0","d":"M403.1,108.9c-81.2-81.2-212.9-81.2-294.2,0s-81.2,212.9,0,294.2c81.2,81.2,212.9,81.2,294.2,0\r\n\t\tS484.3,190.1,403.1,108.9z M352,340.2L340.2,352l-84.4-84.2l-84,83.8L160,339.8l84-83.8l-84-83.8l11.8-11.8l84,83.8l84.4-84.2\r\n\t\tl11.8,11.8L267.6,256L352,340.2z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M403.1,108.9c-81.2-81.2-212.9-81.2-294.2,0s-81.2,212.9,0,294.2c81.2,81.2,212.9,81.2,294.2,0\r\n\t\tS484.3,190.1,403.1,108.9z M352,340.2L340.2,352l-84.4-84.2l-84,83.8L160,339.8l84-83.8l-84-83.8l11.8-11.8l84,83.8l84.4-84.2\r\n\t\tl11.8,11.8L267.6,256L352,340.2z"},"children":[]}]}]}]};exports.iosClose=iosClose;var iosCloudDownloadOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"193.2,381.2 181.6,392.6 256.1,466 330.6,392.6 319,381.2 264.3,435 264.3,192.9 247.9,192.9 247.9,435 \t\t"},"children":[{"name":"polygon","attribs":{"points":"193.2,381.2 181.6,392.6 256.1,466 330.6,392.6 319,381.2 264.3,435 264.3,192.9 247.9,192.9 247.9,435 \t\t"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M399.2,164.4c0-1.2,0.2-2.3,0.2-3.5C399.4,97.4,346.5,46,282.6,46c-46.1,0-85.8,26.8-104.4,65.4c-8.1-4-17.1-6.3-26.8-6.3\r\n\t\t\tc-29.6,0-54.1,23.3-58.9,51.3c-35.2,12-60.6,43.4-60.6,82.4c0,49.1,40.1,89.2,89.6,89.2H213v-16h-90.7\r\n\t\t\tc-40.9,0-74.2-33.2-74.2-73.7c0-31.4,20.2-57.5,50.2-67.7l8.4-2.8l1.5-8.7c3.6-21.3,22.1-38.8,43.9-38.8c6.9,0,13.7,1.6,19.9,4.7\r\n\t\t\tl13.5,6.7l6.5-13.6c16.6-34.4,52.1-56.6,90.4-56.6c55.3,0,100.9,42.8,100.9,97.6c0,13.1-0.2,20.1-0.2,20.1l15.2,0.1\r\n\t\t\tc36.7,0.5,65.6,30,65.6,66.4c0,36.3-29.8,66.1-66.5,66.3l-3.2,0.1H297v16h101h0c45,0,81.9-37.2,81.9-82.1\r\n\t\t\tC479.9,201,444.5,164.5,399.2,164.4z"},"children":[{"name":"path","attribs":{"d":"M399.2,164.4c0-1.2,0.2-2.3,0.2-3.5C399.4,97.4,346.5,46,282.6,46c-46.1,0-85.8,26.8-104.4,65.4c-8.1-4-17.1-6.3-26.8-6.3\r\n\t\t\tc-29.6,0-54.1,23.3-58.9,51.3c-35.2,12-60.6,43.4-60.6,82.4c0,49.1,40.1,89.2,89.6,89.2H213v-16h-90.7\r\n\t\t\tc-40.9,0-74.2-33.2-74.2-73.7c0-31.4,20.2-57.5,50.2-67.7l8.4-2.8l1.5-8.7c3.6-21.3,22.1-38.8,43.9-38.8c6.9,0,13.7,1.6,19.9,4.7\r\n\t\t\tl13.5,6.7l6.5-13.6c16.6-34.4,52.1-56.6,90.4-56.6c55.3,0,100.9,42.8,100.9,97.6c0,13.1-0.2,20.1-0.2,20.1l15.2,0.1\r\n\t\t\tc36.7,0.5,65.6,30,65.6,66.4c0,36.3-29.8,66.1-66.5,66.3l-3.2,0.1H297v16h101h0c45,0,81.9-37.2,81.9-82.1\r\n\t\t\tC479.9,201,444.5,164.5,399.2,164.4z"},"children":[]}]}]}]}]}]};exports.iosCloudDownloadOutline=iosCloudDownloadOutline;var iosCloudDownload={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"248,435 193.3,381.2 181.6,392.6 256.1,466 330.6,392.6 318.8,381.2 264,435 264,328 248,328 \t"},"children":[{"name":"polygon","attribs":{"points":"248,435 193.3,381.2 181.6,392.6 256.1,466 330.6,392.6 318.8,381.2 264,435 264,328 248,328 \t"},"children":[]}]},{"name":"path","attribs":{"d":"M399.2,164.4c0-1.2,0.2-2.3,0.2-3.5C399.4,97.4,346.5,46,282.6,46c-46.1,0-85.8,26.8-104.4,65.4c-8.1-4-17.1-6.3-26.8-6.3\r\n\t\tc-29.6,0-54.1,23.3-58.9,51.3c-35.2,12-60.6,43.4-60.6,82.4c0,49.1,40.1,89.2,89.6,89.2H192h21h35V193h16v135h134\r\n\t\tc45,0,81.9-37.2,81.9-82.1C479.9,201,444.5,164.5,399.2,164.4z"},"children":[{"name":"path","attribs":{"d":"M399.2,164.4c0-1.2,0.2-2.3,0.2-3.5C399.4,97.4,346.5,46,282.6,46c-46.1,0-85.8,26.8-104.4,65.4c-8.1-4-17.1-6.3-26.8-6.3\r\n\t\tc-29.6,0-54.1,23.3-58.9,51.3c-35.2,12-60.6,43.4-60.6,82.4c0,49.1,40.1,89.2,89.6,89.2H192h21h35V193h16v135h134\r\n\t\tc45,0,81.9-37.2,81.9-82.1C479.9,201,444.5,164.5,399.2,164.4z"},"children":[]}]}]}]};exports.iosCloudDownload=iosCloudDownload;var iosCloudOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M399.3,232.8c0-1.2,0.2-2.4,0.2-3.6c0-64.3-52.8-117.2-116.8-117.2c-46.1,0-85.8,27.9-104.4,67c-8.1-4.1-17.1-6.4-26.8-6.4\r\n\tc-29.6,0-54.1,23.7-58.9,52C57.4,236.8,32,268.8,32,308.4c0,49.8,40.1,91.6,89.6,91.6H398c45,0,82-38.9,82-84.3\r\n\tC480,270.1,444.6,232.9,399.3,232.8z M397.5,383.6l-3.2,0.4H122.4c-40.9,0-74.2-34.9-74.2-76.1c0-31.9,20.2-58.4,50.2-68.8l8.4-3\r\n\tl1.5-8.8c3.6-21.6,22.1-39.3,43.9-39.3c6.9,0,13.7,1.6,19.9,4.8l13.5,6.8l6.5-13.7c16.6-34.9,52.1-58.2,90.4-58.2\r\n\tc55.3,0,100.9,44.1,100.9,99.7c0,13.3-0.2,20.3-0.2,20.3l15.2,0.1c36.7,0.5,65.6,30.5,65.6,67.4C464,352.1,434.2,383.4,397.5,383.6z\r\n\t"},"children":[]}]};exports.iosCloudOutline=iosCloudOutline;var iosCloudUploadOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"193.3,260.4 181.7,248.8 256.2,174.5 330.7,248.8 319,260.4 264.4,205.8 264.4,447.6 247.9,447.6 247.9,205.8 \t\t\r\n\t\t\t"},"children":[{"name":"polygon","attribs":{"points":"193.3,260.4 181.7,248.8 256.2,174.5 330.7,248.8 319,260.4 264.4,205.8 264.4,447.6 247.9,447.6 247.9,205.8 \t\t\r\n\t\t\t"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M399.3,183.6c0-1.2,0.2-2.4,0.2-3.6c0-64.3-52.8-116.4-116.8-116.4c-46.1,0-85.8,27.1-104.4,66.3\r\n\t\t\tc-8.1-4.1-17.1-6.4-26.8-6.4c-29.6,0-54.1,23.6-58.9,52C57.4,187.6,32,222.2,32,261.8c0,49.7,40.1,90.2,89.6,90.2H213v-16h-90.6\r\n\t\t\tc-40.9,0-74.2-33.5-74.2-74.6c0-31.8,20.2-61.2,50.2-71.6l8.4-2.9l1.5-8.8c3.6-21.6,22.1-39.3,43.9-39.3c6.9,0,13.7,1.6,19.9,4.8\r\n\t\t\tl13.5,6.8l6.5-13.7c16.6-34.9,52.1-57.4,90.4-57.4c55.3,0,100.9,43.3,100.9,98.9c0,13.3-0.2,20.3-0.2,20.3l15.2,0.1\r\n\t\t\tC435,199.1,464,232,464,268.9c0,36.8-29.8,66.9-66.5,67.1l-3.2,0H297v16h101h0c45,0,82-37.3,82-82.8\r\n\t\t\tC480,223.7,444.5,183.7,399.3,183.6z"},"children":[{"name":"path","attribs":{"d":"M399.3,183.6c0-1.2,0.2-2.4,0.2-3.6c0-64.3-52.8-116.4-116.8-116.4c-46.1,0-85.8,27.1-104.4,66.3\r\n\t\t\tc-8.1-4.1-17.1-6.4-26.8-6.4c-29.6,0-54.1,23.6-58.9,52C57.4,187.6,32,222.2,32,261.8c0,49.7,40.1,90.2,89.6,90.2H213v-16h-90.6\r\n\t\t\tc-40.9,0-74.2-33.5-74.2-74.6c0-31.8,20.2-61.2,50.2-71.6l8.4-2.9l1.5-8.8c3.6-21.6,22.1-39.3,43.9-39.3c6.9,0,13.7,1.6,19.9,4.8\r\n\t\t\tl13.5,6.8l6.5-13.7c16.6-34.9,52.1-57.4,90.4-57.4c55.3,0,100.9,43.3,100.9,98.9c0,13.3-0.2,20.3-0.2,20.3l15.2,0.1\r\n\t\t\tC435,199.1,464,232,464,268.9c0,36.8-29.8,66.9-66.5,67.1l-3.2,0H297v16h101h0c45,0,82-37.3,82-82.8\r\n\t\t\tC480,223.7,444.5,183.7,399.3,183.6z"},"children":[]}]}]}]}]}]};exports.iosCloudUploadOutline=iosCloudUploadOutline;var iosCloudUpload={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"248","y":"352","width":"16","height":"96"},"children":[{"name":"rect","attribs":{"x":"248","y":"352","width":"16","height":"96"},"children":[]}]},{"name":"path","attribs":{"d":"M399.3,183.6c0-1.2,0.2-2.4,0.2-3.6c0-64.3-52.8-116.4-116.8-116.4c-46.1,0-85.8,27.1-104.4,66.3\r\n\t\tc-8.1-4.1-17.1-6.4-26.8-6.4c-29.6,0-54.1,23.6-58.9,52C57.4,187.6,32,222.2,32,261.8c0,49.7,40.1,90.2,89.6,90.2H182h31h35V205.8\r\n\t\tl-54.7,54.5l-11.6-11.6l74.5-74.3l74.5,74.3l-11.8,11.6L264,205.8V352h134c45,0,82-37.3,82-82.8C480,223.7,444.5,183.7,399.3,183.6\r\n\t\tz"},"children":[{"name":"path","attribs":{"d":"M399.3,183.6c0-1.2,0.2-2.4,0.2-3.6c0-64.3-52.8-116.4-116.8-116.4c-46.1,0-85.8,27.1-104.4,66.3\r\n\t\tc-8.1-4.1-17.1-6.4-26.8-6.4c-29.6,0-54.1,23.6-58.9,52C57.4,187.6,32,222.2,32,261.8c0,49.7,40.1,90.2,89.6,90.2H182h31h35V205.8\r\n\t\tl-54.7,54.5l-11.6-11.6l74.5-74.3l74.5,74.3l-11.8,11.6L264,205.8V352h134c45,0,82-37.3,82-82.8C480,223.7,444.5,183.7,399.3,183.6\r\n\t\tz"},"children":[]}]}]}]};exports.iosCloudUpload=iosCloudUpload;var iosCloud={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M399.3,232.8c0-1.2,0.2-2.4,0.2-3.6c0-64.3-52.8-117.2-116.8-117.2c-46.1,0-85.8,27.9-104.4,67c-8.1-4.1-17.1-6.4-26.8-6.4\r\n\tc-29.6,0-54.1,23.7-58.9,52C57.4,236.8,32,268.8,32,308.4c0,49.8,40.1,91.6,89.6,91.6H398c45,0,82-38.9,82-84.3\r\n\tC480,270.1,444.6,232.9,399.3,232.8z"},"children":[]}]};exports.iosCloud=iosCloud;var iosCloudyNightOutline={"viewBox":"0 0 512 512","children":[{"name":"style","attribs":{"type":"text/css"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"class":"st0","d":"M189,223.8c14.5,0,28.1,4.8,39.3,13.9c10.9,8.9,18.6,21.3,21.7,34.9l3.1,14l14.2-1.8c2.1-0.3,4.1-0.4,6.1-0.4\r\n\t\tc26.9,0,48.8,22.1,48.8,49.2c0,27.1-21.9,49.2-48.8,49.2H115.7c-9.5,0-18.5-3.9-25.4-10.8c-6.8-7-10.6-16.2-10.6-25.9\r\n\t\tc0-18.6,14.5-33.8,33.2-36.9c1.6-0.3,8.8-1.2,14.2-1.7c0,0-0.5-5.3-0.6-9.6c-0.1-4.3-0.1-9.4-0.1-11.5\r\n\t\tC126.5,252,154.5,223.8,189,223.8 M189,208c-43.3,0-78.3,35.2-78.3,78.5c0,2.6,0.1,5.2,0.4,7.8C84.7,296.7,64,319.8,64,346.9\r\n\t\tc0,28.6,23.2,53.1,51.7,53.1h157.7c35.7,0,64.6-29.9,64.6-65.7c0-35.8-28.9-65.3-64.6-65.3c-2.7,0-5.4,0-8,0.3\r\n\t\tC257.5,234.3,226.3,208,189,208L189,208z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M189,223.8c14.5,0,28.1,4.8,39.3,13.9c10.9,8.9,18.6,21.3,21.7,34.9l3.1,14l14.2-1.8c2.1-0.3,4.1-0.4,6.1-0.4\r\n\t\tc26.9,0,48.8,22.1,48.8,49.2c0,27.1-21.9,49.2-48.8,49.2H115.7c-9.5,0-18.5-3.9-25.4-10.8c-6.8-7-10.6-16.2-10.6-25.9\r\n\t\tc0-18.6,14.5-33.8,33.2-36.9c1.6-0.3,8.8-1.2,14.2-1.7c0,0-0.5-5.3-0.6-9.6c-0.1-4.3-0.1-9.4-0.1-11.5\r\n\t\tC126.5,252,154.5,223.8,189,223.8 M189,208c-43.3,0-78.3,35.2-78.3,78.5c0,2.6,0.1,5.2,0.4,7.8C84.7,296.7,64,319.8,64,346.9\r\n\t\tc0,28.6,23.2,53.1,51.7,53.1h157.7c35.7,0,64.6-29.9,64.6-65.7c0-35.8-28.9-65.3-64.6-65.3c-2.7,0-5.4,0-8,0.3\r\n\t\tC257.5,234.3,226.3,208,189,208L189,208z"},"children":[]}]},{"name":"path","attribs":{"class":"st0","d":"M424.6,305.6c-2,0.1-3.9,0.1-5.9,0.1c-32.3,0-62.7-12.6-85.5-35.5c-22.8-22.9-35.4-53.3-35.4-85.7\r\n\t\tc0-18.4,4.1-36.2,11.8-52.4c3.4-7.1,7.5-13.9,12.3-20.2c-8.4,0.9-16.6,2.7-24.4,5.1c-37.2,11.8-67.1,40.2-81,76.5\r\n\t\tc5.9,1.2,11.6,3,17,5.4c10.1-25.5,29.4-46.4,53.8-58.6c-4.6,13.9-7.1,28.7-7.1,44.1c0,27.3,7.9,52.8,21.4,74.2\r\n\t\tc13.8,21.8,33.5,39.5,56.8,50.9c15.3,7.4,32.2,12.1,50,13.5c-14,12.2-31.2,20.9-50,24.8c-1.9,6.9-4.9,13.4-8.6,19.3\r\n\t\tc33.6-3.6,63.3-20.1,84-44.6c5.4-6.3,10.2-13.2,14.2-20.5C440.4,304.1,432.6,305.2,424.6,305.6z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M424.6,305.6c-2,0.1-3.9,0.1-5.9,0.1c-32.3,0-62.7-12.6-85.5-35.5c-22.8-22.9-35.4-53.3-35.4-85.7\r\n\t\tc0-18.4,4.1-36.2,11.8-52.4c3.4-7.1,7.5-13.9,12.3-20.2c-8.4,0.9-16.6,2.7-24.4,5.1c-37.2,11.8-67.1,40.2-81,76.5\r\n\t\tc5.9,1.2,11.6,3,17,5.4c10.1-25.5,29.4-46.4,53.8-58.6c-4.6,13.9-7.1,28.7-7.1,44.1c0,27.3,7.9,52.8,21.4,74.2\r\n\t\tc13.8,21.8,33.5,39.5,56.8,50.9c15.3,7.4,32.2,12.1,50,13.5c-14,12.2-31.2,20.9-50,24.8c-1.9,6.9-4.9,13.4-8.6,19.3\r\n\t\tc33.6-3.6,63.3-20.1,84-44.6c5.4-6.3,10.2-13.2,14.2-20.5C440.4,304.1,432.6,305.2,424.6,305.6z"},"children":[]}]}]}]};exports.iosCloudyNightOutline=iosCloudyNightOutline;var iosCloudyNight={"viewBox":"0 0 512 512","children":[{"name":"style","attribs":{"type":"text/css"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"class":"st0","d":"M424.6,305.6c-2,0.1-3.9,0.1-5.9,0.1c-32.3,0-62.7-12.6-85.5-35.5c-22.8-22.9-35.4-53.3-35.4-85.7\r\n\t\tc0-18.4,4.1-36.2,11.8-52.4c3.4-7.1,7.5-13.9,12.3-20.2c-8.4,0.9-16.6,2.7-24.4,5.1c-37.2,11.8-67.1,40.2-81,76.5\r\n\t\tc-0.3,0.8-0.6,1.5-0.9,2.3c11.9,3.5,23.1,9.4,32.8,17.3c13,10.6,22.9,24.5,28.8,40.1c20.1,0.9,38.9,9.4,53.3,24\r\n\t\tc15.2,15.4,23.5,35.9,23.5,57.4c0,11.4-2.4,22.5-6.8,32.8c0.8-0.1,1.6-0.1,2.5-0.2c33.6-3.6,63.3-20.1,84-44.6\r\n\t\tc5.4-6.3,10.2-13.2,14.2-20.5C440.4,304.1,432.6,305.2,424.6,305.6z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M424.6,305.6c-2,0.1-3.9,0.1-5.9,0.1c-32.3,0-62.7-12.6-85.5-35.5c-22.8-22.9-35.4-53.3-35.4-85.7\r\n\t\tc0-18.4,4.1-36.2,11.8-52.4c3.4-7.1,7.5-13.9,12.3-20.2c-8.4,0.9-16.6,2.7-24.4,5.1c-37.2,11.8-67.1,40.2-81,76.5\r\n\t\tc-0.3,0.8-0.6,1.5-0.9,2.3c11.9,3.5,23.1,9.4,32.8,17.3c13,10.6,22.9,24.5,28.8,40.1c20.1,0.9,38.9,9.4,53.3,24\r\n\t\tc15.2,15.4,23.5,35.9,23.5,57.4c0,11.4-2.4,22.5-6.8,32.8c0.8-0.1,1.6-0.1,2.5-0.2c33.6-3.6,63.3-20.1,84-44.6\r\n\t\tc5.4-6.3,10.2-13.2,14.2-20.5C440.4,304.1,432.6,305.2,424.6,305.6z"},"children":[]}]}]},{"name":"path","attribs":{"class":"st0","d":"M189,209c-43.3,0-78.3,35.2-78.3,78.5c0,2.6,0.1,5.2,0.4,7.8C84.7,297.7,64,320.8,64,347.9\r\n\tc0,28.6,23.2,53.1,51.7,53.1h157.7c35.7,0,64.6-29.9,64.6-65.7c0-35.8-28.9-65.3-64.6-65.3c-2.7,0-5.4,0-8,0.3\r\n\tC257.5,235.3,226.3,209,189,209L189,209z"},"children":[]}]};exports.iosCloudyNight=iosCloudyNight;var iosCloudyOutline={"viewBox":"0 0 512 512","children":[{"name":"style","attribs":{"type":"text/css"},"children":[]},{"name":"path","attribs":{"class":"st0","d":"M244,175.8c14.5,0,28.1,4.8,39.3,13.9c10.9,8.9,18.6,21.3,21.7,34.9l3.1,14l14.2-1.8c2.1-0.3,4.1-0.4,6.1-0.4\r\n\tc26.9,0,48.8,22.1,48.8,49.2c0,27.1-21.9,49.2-48.8,49.2H170.7c-9.5,0-18.5-3.9-25.4-10.8c-6.8-7-10.6-16.2-10.6-25.9\r\n\tc0-18.6,14.5-33.8,33.2-36.9c1.6-0.3,8.7-1.2,14.2-1.7c0,0-0.5-5.3-0.6-9.6c-0.1-4.3-0.1-9.4-0.1-11.5\r\n\tC181.5,204,209.5,175.8,244,175.8 M244,160c-43,0-78.3,35.2-78.3,78.5c0,2.6,0.1,5.2,0.4,7.8c-26.4,2.3-47.1,25.5-47.1,52.6\r\n\tc0,28.6,23.2,53.1,51.7,53.1h157.7c35.7,0,64.6-29.9,64.6-65.7S364.1,221,328.4,221c-2.7,0-5.4,0-8,0.3C312.5,186.3,281,160,244,160\r\n\tL244,160z"},"children":[]}]};exports.iosCloudyOutline=iosCloudyOutline;var iosCloudy={"viewBox":"0 0 512 512","children":[{"name":"style","attribs":{"type":"text/css"},"children":[]},{"name":"path","attribs":{"class":"st0","d":"M244,160c-43,0-78.3,35.2-78.3,78.5c0,2.6,0.1,5.2,0.4,7.8c-26.4,2.3-47.1,25.5-47.1,52.6\r\n\tc0,28.6,23.2,53.1,51.7,53.1h157.7c35.7,0,64.6-29.9,64.6-65.7S364.1,221,328.4,221c-2.7,0-5.4,0-8,0.3C312.5,186.3,281,160,244,160\r\n\tL244,160z"},"children":[]}]};exports.iosCloudy=iosCloudy;var iosCogOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M448,272.754v-32.008l-33.291-8.703l-2.601-13.204l27.594-20.905l-12.197-29.608l-34.392,4.802l-7.498-10.603\r\n\t\tl17.696-29.708l-22.594-22.605l-30.192,17.404l-10.697-7.302l5.298-35.009l-29.492-12.303L294.04,101.31l-12.297-2.601L273.045,64\r\n\t\th-31.991l-9.197,34.909l-12.098,2.4l-21.494-29.008l-29.592,12.304l4.799,35.709l-11.697,7.202l-31.292-18.705l-22.594,22.606\r\n\t\tl18.795,31.508l-6.698,10.502l-35.49-5.001l-12.197,29.608l28.893,21.706l-2.399,12.203L64,240.846v32.008l34.69,8.903l2.4,12.503\r\n\t\tl-28.394,21.306l12.297,29.508l34.991-5.002l7.099,11.303l-17.896,30.608l22.595,22.605l30.192-18.204l11.196,7.302l-4.498,34.31\r\n\t\tl29.592,12.202l20.595-27.807l13.396,2.5L241.054,448h31.991l8.298-33.109l13.597-2.601l20.694,27.107l29.593-12.204l-4.998-33.708\r\n\t\tl10.196-7.401l28.992,16.904l22.595-22.606l-16.795-28.907l7.896-11.403l33.791,4.802l12.298-29.508l-27.193-20.506l2.7-13.503\r\n\t\tL448,272.754z M419.707,320.767l-2.8,6.702l-31.891-4.501l-18.896,27.807l15.695,27.106l-5.198,5.202l-27.293-15.904\r\n\t\tl-26.593,18.204l4.799,31.809l-6.698,2.802l-19.595-25.607l-32.892,6.501l-7.798,31.209h-7.198l-8.397-31.309l-32.592-6.501\r\n\t\tl-19.495,26.406l-6.698-2.801l4.399-32.509l-27.493-18.304l-28.793,17.504l-5.099-5.101l16.996-29.108l-18.096-27.606\r\n\t\tl-33.191,4.701l-2.699-6.603l26.894-20.205l-6.199-31.809l-32.991-8.502v-7.202l32.991-8.402l6.299-31.608l-27.293-20.505\r\n\t\tl2.699-6.602l33.691,4.801l17.796-26.807l-17.996-30.008l4.999-5.001l20.595,12.303l9.197,5.501l27.893-18.205l-4.499-33.809\r\n\t\tl6.699-2.8l20.294,27.407l31.492-6.102l8.798-33.208h7.198l8.298,33.008l31.691,6.301l20.095-26.807l6.598,2.801l-4.999,33.108\r\n\t\tl27.193,18.105l28.292-16.205l5.1,5.102l-16.695,28.007l18.396,27.007l32.491-4.601l2.799,6.702l-26.193,19.705l6.498,32.508\r\n\t\tl31.292,8.102v7.202l-31.391,8.103l-6.499,32.709L419.707,320.767z"},"children":[{"name":"path","attribs":{"d":"M448,272.754v-32.008l-33.291-8.703l-2.601-13.204l27.594-20.905l-12.197-29.608l-34.392,4.802l-7.498-10.603\r\n\t\tl17.696-29.708l-22.594-22.605l-30.192,17.404l-10.697-7.302l5.298-35.009l-29.492-12.303L294.04,101.31l-12.297-2.601L273.045,64\r\n\t\th-31.991l-9.197,34.909l-12.098,2.4l-21.494-29.008l-29.592,12.304l4.799,35.709l-11.697,7.202l-31.292-18.705l-22.594,22.606\r\n\t\tl18.795,31.508l-6.698,10.502l-35.49-5.001l-12.197,29.608l28.893,21.706l-2.399,12.203L64,240.846v32.008l34.69,8.903l2.4,12.503\r\n\t\tl-28.394,21.306l12.297,29.508l34.991-5.002l7.099,11.303l-17.896,30.608l22.595,22.605l30.192-18.204l11.196,7.302l-4.498,34.31\r\n\t\tl29.592,12.202l20.595-27.807l13.396,2.5L241.054,448h31.991l8.298-33.109l13.597-2.601l20.694,27.107l29.593-12.204l-4.998-33.708\r\n\t\tl10.196-7.401l28.992,16.904l22.595-22.606l-16.795-28.907l7.896-11.403l33.791,4.802l12.298-29.508l-27.193-20.506l2.7-13.503\r\n\t\tL448,272.754z M419.707,320.767l-2.8,6.702l-31.891-4.501l-18.896,27.807l15.695,27.106l-5.198,5.202l-27.293-15.904\r\n\t\tl-26.593,18.204l4.799,31.809l-6.698,2.802l-19.595-25.607l-32.892,6.501l-7.798,31.209h-7.198l-8.397-31.309l-32.592-6.501\r\n\t\tl-19.495,26.406l-6.698-2.801l4.399-32.509l-27.493-18.304l-28.793,17.504l-5.099-5.101l16.996-29.108l-18.096-27.606\r\n\t\tl-33.191,4.701l-2.699-6.603l26.894-20.205l-6.199-31.809l-32.991-8.502v-7.202l32.991-8.402l6.299-31.608l-27.293-20.505\r\n\t\tl2.699-6.602l33.691,4.801l17.796-26.807l-17.996-30.008l4.999-5.001l20.595,12.303l9.197,5.501l27.893-18.205l-4.499-33.809\r\n\t\tl6.699-2.8l20.294,27.407l31.492-6.102l8.798-33.208h7.198l8.298,33.008l31.691,6.301l20.095-26.807l6.598,2.801l-4.999,33.108\r\n\t\tl27.193,18.105l28.292-16.205l5.1,5.102l-16.695,28.007l18.396,27.007l32.491-4.601l2.799,6.702l-26.193,19.705l6.498,32.508\r\n\t\tl31.292,8.102v7.202l-31.391,8.103l-6.499,32.709L419.707,320.767z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,128c-70.692,0-128,57.308-128,128c0,70.693,57.308,128,128,128s128-57.307,128-128C384,185.308,326.692,128,256,128z\r\n\t\t M144,256c0-29.916,11.65-58.042,32.804-79.195C197.958,155.65,226.084,144,256,144c7.496,0,14.88,0.732,22.069,2.161L250.3,250.1\r\n\t\tl-104.155,27.888C144.727,270.824,144,263.468,144,256z M256,368c-29.917,0-58.042-11.65-79.196-32.804\r\n\t\tc-11.927-11.926-20.831-26.069-26.331-41.499L253.9,266.2l74.935,74.889C308.558,358.501,283.009,368,256,368z M340.154,329.901\r\n\t\tL265.2,254.9l28.05-104.58c15.604,5.487,29.904,14.443,41.945,26.484C356.35,197.958,368,226.084,368,256\r\n\t\tC368,283.486,358.159,309.457,340.154,329.901z"},"children":[{"name":"path","attribs":{"d":"M256,128c-70.692,0-128,57.308-128,128c0,70.693,57.308,128,128,128s128-57.307,128-128C384,185.308,326.692,128,256,128z\r\n\t\t M144,256c0-29.916,11.65-58.042,32.804-79.195C197.958,155.65,226.084,144,256,144c7.496,0,14.88,0.732,22.069,2.161L250.3,250.1\r\n\t\tl-104.155,27.888C144.727,270.824,144,263.468,144,256z M256,368c-29.917,0-58.042-11.65-79.196-32.804\r\n\t\tc-11.927-11.926-20.831-26.069-26.331-41.499L253.9,266.2l74.935,74.889C308.558,358.501,283.009,368,256,368z M340.154,329.901\r\n\t\tL265.2,254.9l28.05-104.58c15.604,5.487,29.904,14.443,41.945,26.484C356.35,197.958,368,226.084,368,256\r\n\t\tC368,283.486,358.159,309.457,340.154,329.901z"},"children":[]}]}]}]};exports.iosCogOutline=iosCogOutline;var iosCog={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M293.25,150.32L265.2,254.9l74.954,75C358.159,309.457,368,283.486,368,256c0-29.916-11.65-58.042-32.805-79.196\r\n\t\tC323.154,164.763,308.854,155.807,293.25,150.32z"},"children":[{"name":"path","attribs":{"d":"M293.25,150.32L265.2,254.9l74.954,75C358.159,309.457,368,283.486,368,256c0-29.916-11.65-58.042-32.805-79.196\r\n\t\tC323.154,164.763,308.854,155.807,293.25,150.32z"},"children":[]}]},{"name":"path","attribs":{"d":"M278.068,146.161C270.88,144.732,263.496,144,256,144c-29.916,0-58.042,11.65-79.196,32.805\r\n\t\tC155.65,197.958,144,226.084,144,256c0,7.468,0.727,14.824,2.145,21.988L250.3,250.1L278.068,146.161z"},"children":[{"name":"path","attribs":{"d":"M278.068,146.161C270.88,144.732,263.496,144,256,144c-29.916,0-58.042,11.65-79.196,32.805\r\n\t\tC155.65,197.958,144,226.084,144,256c0,7.468,0.727,14.824,2.145,21.988L250.3,250.1L278.068,146.161z"},"children":[]}]},{"name":"path","attribs":{"d":"M150.473,293.697c5.5,15.43,14.404,29.572,26.331,41.498C197.958,356.35,226.083,368,256,368\r\n\t\tc27.009,0,52.558-9.499,72.835-26.911L253.9,266.2L150.473,293.697z"},"children":[{"name":"path","attribs":{"d":"M150.473,293.697c5.5,15.43,14.404,29.572,26.331,41.498C197.958,356.35,226.083,368,256,368\r\n\t\tc27.009,0,52.558-9.499,72.835-26.911L253.9,266.2L150.473,293.697z"},"children":[]}]},{"name":"path","attribs":{"d":"M448,272.754v-32.008l-33.291-8.703l-2.601-13.204l27.594-20.905l-12.197-29.608l-34.392,4.802l-7.498-10.603\r\n\t\tl17.695-29.708l-22.594-22.605l-30.191,17.404l-10.697-7.302l5.298-35.009l-29.492-12.303L294.04,101.31l-12.297-2.601L273.045,64\r\n\t\th-31.991l-9.197,34.909l-12.098,2.4l-21.494-29.008l-29.592,12.304l4.799,35.709l-11.697,7.202l-31.292-18.705l-22.594,22.606\r\n\t\tl18.795,31.508l-6.698,10.502l-35.49-5.001l-12.197,29.608l28.893,21.706l-2.399,12.203L64,240.846v32.007l34.69,8.903l2.4,12.503\r\n\t\tl-28.394,21.307l12.297,29.508l34.991-5.002l7.099,11.303l-17.896,30.607l22.595,22.605l30.192-18.204l11.196,7.302l-4.498,34.311\r\n\t\tl29.592,12.202l20.595-27.808l13.396,2.5L241.054,448h31.991l8.298-33.109l13.597-2.601l20.694,27.106l29.593-12.203l-4.998-33.709\r\n\t\tl10.196-7.4l28.992,16.904l22.595-22.606l-16.795-28.907l7.896-11.402l33.791,4.802l12.298-29.508l-27.193-20.507l2.7-13.502\r\n\t\tL448,272.754z M256,384c-70.692,0-128-57.307-128-128c0-70.692,57.308-128,128-128c70.692,0,128,57.308,128,128\r\n\t\tC384,326.693,326.692,384,256,384z"},"children":[{"name":"path","attribs":{"d":"M448,272.754v-32.008l-33.291-8.703l-2.601-13.204l27.594-20.905l-12.197-29.608l-34.392,4.802l-7.498-10.603\r\n\t\tl17.695-29.708l-22.594-22.605l-30.191,17.404l-10.697-7.302l5.298-35.009l-29.492-12.303L294.04,101.31l-12.297-2.601L273.045,64\r\n\t\th-31.991l-9.197,34.909l-12.098,2.4l-21.494-29.008l-29.592,12.304l4.799,35.709l-11.697,7.202l-31.292-18.705l-22.594,22.606\r\n\t\tl18.795,31.508l-6.698,10.502l-35.49-5.001l-12.197,29.608l28.893,21.706l-2.399,12.203L64,240.846v32.007l34.69,8.903l2.4,12.503\r\n\t\tl-28.394,21.307l12.297,29.508l34.991-5.002l7.099,11.303l-17.896,30.607l22.595,22.605l30.192-18.204l11.196,7.302l-4.498,34.311\r\n\t\tl29.592,12.202l20.595-27.808l13.396,2.5L241.054,448h31.991l8.298-33.109l13.597-2.601l20.694,27.106l29.593-12.203l-4.998-33.709\r\n\t\tl10.196-7.4l28.992,16.904l22.595-22.606l-16.795-28.907l7.896-11.402l33.791,4.802l12.298-29.508l-27.193-20.507l2.7-13.502\r\n\t\tL448,272.754z M256,384c-70.692,0-128-57.307-128-128c0-70.692,57.308-128,128-128c70.692,0,128,57.308,128,128\r\n\t\tC384,326.693,326.692,384,256,384z"},"children":[]}]}]}]};exports.iosCog=iosCog;var iosColorFilterOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M366.195,212.122c1.185-6.528,1.806-13.252,1.806-20.122c0-61.856-50.145-112.001-112.001-112.001\r\n\tS143.999,130.144,143.999,192c0,6.87,0.621,13.594,1.806,20.122C98.616,225.302,63.999,268.606,63.999,320\r\n\tc0,61.856,50.145,112.001,112.001,112.001c31.342,0,59.671-12.879,80-33.627c20.329,20.748,48.658,33.627,80,33.627\r\n\tc61.856,0,112.001-50.145,112.001-112.001C448.001,268.606,413.384,225.303,366.195,212.122z M159.999,192\r\n\tc0-52.935,43.065-96.001,96.001-96.001s96.001,43.066,96.001,96.001c0,5.776-0.513,11.435-1.495,16.933\r\n\tc-4.749-0.614-9.59-0.934-14.506-0.934c-31.342,0-59.671,12.879-80,33.627c-20.329-20.748-48.658-33.627-80-33.627\r\n\tc-4.916,0-9.757,0.319-14.506,0.934C160.512,203.435,159.999,197.776,159.999,192z M272.001,320c0,19.58-5.896,37.806-16.001,53.006\r\n\tc-10.104-15.2-16.001-33.426-16.001-53.006c0-5.776,0.513-11.435,1.495-16.933c4.749,0.614,9.59,0.934,14.506,0.934\r\n\ts9.757-0.319,14.506-0.934C271.488,308.565,272.001,314.224,272.001,320z M256,288.001c-3.484,0-6.925-0.191-10.314-0.556\r\n\tc2.626-7.262,6.105-14.119,10.314-20.451c4.21,6.332,7.688,13.189,10.314,20.451C262.925,287.81,259.484,288.001,256,288.001z\r\n\t M229.791,284.364c-29.756-8.455-53.666-30.937-64.105-59.81c3.39-0.364,6.83-0.556,10.314-0.556\r\n\tc27.353,0,52.069,11.5,69.572,29.917C238.847,263.104,233.484,273.351,229.791,284.364z M266.428,253.917\r\n\tc17.503-18.418,42.219-29.918,69.572-29.918c3.484,0,6.925,0.191,10.314,0.556c-10.439,28.873-34.35,51.354-64.105,59.81\r\n\tC278.516,273.351,273.153,263.104,266.428,253.917z M176,416.001c-52.936,0-96.001-43.065-96.001-96.001\r\n\tc0-43.852,29.555-80.931,69.792-92.364c11.732,34.983,40.265,62.257,76.014,72.243c-1.185,6.527-1.806,13.252-1.806,20.121\r\n\tc0,24.717,8.013,47.559,21.573,66.084C228.069,404.501,203.353,416.001,176,416.001z M336,416.001\r\n\tc-27.354,0-52.069-11.5-69.572-29.918c13.561-18.524,21.573-41.366,21.573-66.083c0-6.869-0.621-13.594-1.806-20.121\r\n\tc35.749-9.986,64.281-37.26,76.014-72.243c40.237,11.434,69.792,48.513,69.792,92.364C432.001,372.936,388.936,416.001,336,416.001z\r\n\t"},"children":[]}]};exports.iosColorFilterOutline=iosColorFilterOutline;var iosColorFilter={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M366.194,212.122c1.185-6.528,1.807-13.252,1.807-20.122c0-61.856-50.146-112-112.001-112\r\n\t\tc-61.857,0-112.001,50.144-112.001,112c0,6.87,0.622,13.594,1.806,20.122C98.618,225.302,64,268.606,64,320\r\n\t\tc0,61.855,50.144,112,112,112c31.341,0,59.67-12.879,80-33.627C276.328,419.121,304.658,432,335.999,432\r\n\t\tC397.854,432,448,381.855,448,320C448,268.606,413.381,225.303,366.194,212.122z M255.998,395.373\r\n\t\tc-0.484,0.495-0.979,0.982-1.475,1.469c-3.201-3.394-6.189-6.987-8.951-10.759c-13.561-18.525-21.574-41.366-21.574-66.083\r\n\t\tc0-6.869,0.622-13.594,1.807-20.121c-35.749-9.986-64.281-37.26-76.014-72.243c-1.594-4.752-2.872-9.647-3.822-14.659\r\n\t\tc0.942-0.29,1.882-0.589,2.835-0.854c-0.046-0.252-0.085-0.507-0.129-0.759c4.186-1.049,8.463-1.867,12.82-2.43\r\n\t\tC166.243,208.319,171.084,208,176,208c31.341,0,59.67,12.878,80,33.626C276.328,220.878,304.658,208,335.999,208\r\n\t\tc4.916,0,9.757,0.319,14.506,0.934c4.355,0.563,8.633,1.38,12.816,2.429c-0.043,0.253-0.082,0.507-0.129,0.76\r\n\t\tc0.955,0.267,1.895,0.564,2.838,0.855c-0.949,5.012-2.229,9.907-3.822,14.658c-11.732,34.983-40.266,62.257-76.013,72.242\r\n\t\tc1.185,6.528,1.807,13.253,1.807,20.122c0,24.717-8.014,47.558-21.574,66.083c-2.762,3.772-5.752,7.367-8.953,10.76\r\n\t\tC256.979,396.356,256.484,395.869,255.998,395.373z"},"children":[{"name":"path","attribs":{"d":"M366.194,212.122c1.185-6.528,1.807-13.252,1.807-20.122c0-61.856-50.146-112-112.001-112\r\n\t\tc-61.857,0-112.001,50.144-112.001,112c0,6.87,0.622,13.594,1.806,20.122C98.618,225.302,64,268.606,64,320\r\n\t\tc0,61.855,50.144,112,112,112c31.341,0,59.67-12.879,80-33.627C276.328,419.121,304.658,432,335.999,432\r\n\t\tC397.854,432,448,381.855,448,320C448,268.606,413.381,225.303,366.194,212.122z M255.998,395.373\r\n\t\tc-0.484,0.495-0.979,0.982-1.475,1.469c-3.201-3.394-6.189-6.987-8.951-10.759c-13.561-18.525-21.574-41.366-21.574-66.083\r\n\t\tc0-6.869,0.622-13.594,1.807-20.121c-35.749-9.986-64.281-37.26-76.014-72.243c-1.594-4.752-2.872-9.647-3.822-14.659\r\n\t\tc0.942-0.29,1.882-0.589,2.835-0.854c-0.046-0.252-0.085-0.507-0.129-0.759c4.186-1.049,8.463-1.867,12.82-2.43\r\n\t\tC166.243,208.319,171.084,208,176,208c31.341,0,59.67,12.878,80,33.626C276.328,220.878,304.658,208,335.999,208\r\n\t\tc4.916,0,9.757,0.319,14.506,0.934c4.355,0.563,8.633,1.38,12.816,2.429c-0.043,0.253-0.082,0.507-0.129,0.76\r\n\t\tc0.955,0.267,1.895,0.564,2.838,0.855c-0.949,5.012-2.229,9.907-3.822,14.658c-11.732,34.983-40.266,62.257-76.013,72.242\r\n\t\tc1.185,6.528,1.807,13.253,1.807,20.122c0,24.717-8.014,47.558-21.574,66.083c-2.762,3.772-5.752,7.367-8.953,10.76\r\n\t\tC256.979,396.356,256.484,395.869,255.998,395.373z"},"children":[]}]},{"name":"path","attribs":{"d":"M270.506,303.067c-4.749,0.614-9.59,0.934-14.506,0.934s-9.758-0.319-14.506-0.934c-0.982,5.498-1.496,11.156-1.496,16.933\r\n\t\tc0,19.58,5.898,37.806,16.002,53.005c10.104-15.199,16.002-33.425,16.002-53.005C272.002,314.224,271.488,308.565,270.506,303.067z\r\n\t\t"},"children":[{"name":"path","attribs":{"d":"M270.506,303.067c-4.749,0.614-9.59,0.934-14.506,0.934s-9.758-0.319-14.506-0.934c-0.982,5.498-1.496,11.156-1.496,16.933\r\n\t\tc0,19.58,5.898,37.806,16.002,53.005c10.104-15.199,16.002-33.425,16.002-53.005C272.002,314.224,271.488,308.565,270.506,303.067z\r\n\t\t"},"children":[]}]},{"name":"path","attribs":{"d":"M346.313,224.555c-3.39-0.364-6.83-0.556-10.314-0.556c-27.354,0-52.069,11.5-69.571,29.917\r\n\t\tc6.725,9.188,12.088,19.434,15.781,30.448C311.964,275.909,335.874,253.428,346.313,224.555z"},"children":[{"name":"path","attribs":{"d":"M346.313,224.555c-3.39-0.364-6.83-0.556-10.314-0.556c-27.354,0-52.069,11.5-69.571,29.917\r\n\t\tc6.725,9.188,12.088,19.434,15.781,30.448C311.964,275.909,335.874,253.428,346.313,224.555z"},"children":[]}]},{"name":"path","attribs":{"d":"M266.314,287.445c-2.625-7.262-6.105-14.119-10.314-20.451c-4.209,6.332-7.689,13.189-10.314,20.451\r\n\t\tc3.389,0.364,6.83,0.556,10.314,0.556S262.925,287.81,266.314,287.445z"},"children":[{"name":"path","attribs":{"d":"M266.314,287.445c-2.625-7.262-6.105-14.119-10.314-20.451c-4.209,6.332-7.689,13.189-10.314,20.451\r\n\t\tc3.389,0.364,6.83,0.556,10.314,0.556S262.925,287.81,266.314,287.445z"},"children":[]}]},{"name":"path","attribs":{"d":"M176,223.999c-3.484,0-6.925,0.191-10.314,0.556c10.439,28.873,34.349,51.354,64.106,59.81\r\n\t\tc3.693-11.015,9.055-21.261,15.781-30.448C228.07,235.499,203.353,223.999,176,223.999z"},"children":[{"name":"path","attribs":{"d":"M176,223.999c-3.484,0-6.925,0.191-10.314,0.556c10.439,28.873,34.349,51.354,64.106,59.81\r\n\t\tc3.693-11.015,9.055-21.261,15.781-30.448C228.07,235.499,203.353,223.999,176,223.999z"},"children":[]}]}]}]};exports.iosColorFilter=iosColorFilter;var iosColorWandOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M192.011,149.661l-34.043,34.041l256.097,256.096L448,405.757L192.011,149.661z M212.596,215.702l11.415-11.414\r\n\t\tl201.468,201.469l-11.414,11.414L212.596,215.702z"},"children":[{"name":"path","attribs":{"d":"M192.011,149.661l-34.043,34.041l256.097,256.096L448,405.757L192.011,149.661z M212.596,215.702l11.415-11.414\r\n\t\tl201.468,201.469l-11.414,11.414L212.596,215.702z"},"children":[]}]},{"name":"rect","attribs":{"x":"184","y":"64","width":"16","height":"40"},"children":[{"name":"rect","attribs":{"x":"184","y":"64","width":"16","height":"40"},"children":[]}]},{"name":"rect","attribs":{"x":"184","y":"268","width":"16","height":"40"},"children":[{"name":"rect","attribs":{"x":"184","y":"268","width":"16","height":"40"},"children":[]}]},{"name":"rect","attribs":{"x":"280","y":"176","width":"40","height":"16"},"children":[{"name":"rect","attribs":{"x":"280","y":"176","width":"40","height":"16"},"children":[]}]},{"name":"rect","attribs":{"x":"64","y":"176","width":"40","height":"16"},"children":[{"name":"rect","attribs":{"x":"64","y":"176","width":"40","height":"16"},"children":[]}]},{"name":"rect","attribs":{"x":"111.875","y":"94.077","transform":"matrix(-0.7071 0.7071 -0.7071 -0.7071 285.3039 109.9734)","width":"16","height":"40"},"children":[{"name":"rect","attribs":{"x":"111.875","y":"94.077","transform":"matrix(-0.7071 0.7071 -0.7071 -0.7071 285.3039 109.9734)","width":"16","height":"40"},"children":[]}]},{"name":"rect","attribs":{"x":"111.877","y":"238.327","transform":"matrix(-0.7071 -0.7071 0.7071 -0.7071 21.9762 525.7571)","width":"15.998","height":"40"},"children":[{"name":"rect","attribs":{"x":"111.877","y":"238.327","transform":"matrix(-0.7071 -0.7071 0.7071 -0.7071 21.9762 525.7571)","width":"15.998","height":"40"},"children":[]}]},{"name":"rect","attribs":{"x":"256.126","y":"94.077","transform":"matrix(-0.7071 -0.7071 0.7071 -0.7071 370.226 381.506)","width":"16","height":"39.999"},"children":[{"name":"rect","attribs":{"x":"256.126","y":"94.077","transform":"matrix(-0.7071 -0.7071 0.7071 -0.7071 370.226 381.506)","width":"16","height":"39.999"},"children":[]}]}]}]};exports.iosColorWandOutline=iosColorWandOutline;var iosColorWand={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"198.011,159.22 163.968,193.337 420.064,450 454,415.883 \t"},"children":[{"name":"polygon","attribs":{"points":"198.011,159.22 163.968,193.337 420.064,450 454,415.883 \t"},"children":[]}]},{"name":"rect","attribs":{"x":"182","y":"62","width":"32","height":"64"},"children":[{"name":"rect","attribs":{"x":"182","y":"62","width":"32","height":"64"},"children":[]}]},{"name":"rect","attribs":{"x":"182","y":"266","width":"32","height":"64"},"children":[{"name":"rect","attribs":{"x":"182","y":"266","width":"32","height":"64"},"children":[]}]},{"name":"rect","attribs":{"x":"274","y":"178","width":"64","height":"32"},"children":[{"name":"rect","attribs":{"x":"274","y":"178","width":"64","height":"32"},"children":[]}]},{"name":"polygon","attribs":{"points":"303.941,112.143 281.314,89.465 236.06,134.82 258.687,157.498 \t"},"children":[{"name":"polygon","attribs":{"points":"303.941,112.143 281.314,89.465 236.06,134.82 258.687,157.498 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"92.06,112.143 137.314,157.498 159.941,134.82 114.687,89.465 \t"},"children":[{"name":"polygon","attribs":{"points":"92.06,112.143 137.314,157.498 159.941,134.82 114.687,89.465 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"92.06,279.141 114.687,301.816 159.941,256.462 137.314,233.784 \t"},"children":[{"name":"polygon","attribs":{"points":"92.06,279.141 114.687,301.816 159.941,256.462 137.314,233.784 \t"},"children":[]}]},{"name":"rect","attribs":{"x":"58","y":"178","width":"64","height":"32"},"children":[{"name":"rect","attribs":{"x":"58","y":"178","width":"64","height":"32"},"children":[]}]}]}]};exports.iosColorWand=iosColorWand;var iosComposeOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"368,416 80,416 80,144 304.117,144 320.117,128 64,128 64,432 384,432 384,191.883 368,207.883 \t"},"children":[{"name":"polygon","attribs":{"points":"368,416 80,416 80,144 304.117,144 320.117,128 64,128 64,432 384,432 384,191.883 368,207.883 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"237.623,284.084 227.917,274.377 399.24,103.054 387.927,91.74 208,271.651 208,304 240.216,304 420.261,124.016 \r\n\t\t408.947,112.73 \t"},"children":[{"name":"polygon","attribs":{"points":"237.623,284.084 227.917,274.377 399.24,103.054 387.927,91.74 208,271.651 208,304 240.216,304 420.261,124.016 \r\n\t\t408.947,112.73 \t"},"children":[]}]},{"name":"path","attribs":{"d":"M444.213,80.312l-12.465-12.466C429.084,65.467,425.556,64,421.746,64c-3.812,0-7.304,1.468-9.929,3.85L399.666,80\r\n\t\tl0.08,0.08l11.293,11.293l21.02,21.02l12.15-12.15c2.383-2.625,3.791-6.117,3.791-9.929C448,86.504,446.592,82.975,444.213,80.312z\r\n\t\t"},"children":[{"name":"path","attribs":{"d":"M444.213,80.312l-12.465-12.466C429.084,65.467,425.556,64,421.746,64c-3.812,0-7.304,1.468-9.929,3.85L399.666,80\r\n\t\tl0.08,0.08l11.293,11.293l21.02,21.02l12.15-12.15c2.383-2.625,3.791-6.117,3.791-9.929C448,86.504,446.592,82.975,444.213,80.312z\r\n\t\t"},"children":[]}]}]}]};exports.iosComposeOutline=iosComposeOutline;var iosCompose={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"256,320 192,320 192,256 320,128 64,128 64,432 384,432 384,192 \t"},"children":[{"name":"polygon","attribs":{"points":"256,320 192,320 192,256 320,128 64,128 64,432 384,432 384,192 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"387.927,91.74 208,271.651 208,304 240.216,304 420.261,124.016 \t"},"children":[{"name":"polygon","attribs":{"points":"387.927,91.74 208,271.651 208,304 240.216,304 420.261,124.016 \t"},"children":[]}]},{"name":"path","attribs":{"d":"M444.213,80.312l-12.465-12.466C429.084,65.467,425.556,64,421.746,64c-3.812,0-7.304,1.468-9.929,3.85L399.666,80\r\n\t\tl0.08,0.08l11.293,11.293l21.02,21.02l12.15-12.15c2.383-2.625,3.791-6.117,3.791-9.929C448,86.504,446.592,82.975,444.213,80.312z\r\n\t\t"},"children":[{"name":"path","attribs":{"d":"M444.213,80.312l-12.465-12.466C429.084,65.467,425.556,64,421.746,64c-3.812,0-7.304,1.468-9.929,3.85L399.666,80\r\n\t\tl0.08,0.08l11.293,11.293l21.02,21.02l12.15-12.15c2.383-2.625,3.791-6.117,3.791-9.929C448,86.504,446.592,82.975,444.213,80.312z\r\n\t\t"},"children":[]}]}]}]};exports.iosCompose=iosCompose;var iosContactOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256c0,114.9,93.1,208,208,208c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48z M256,65.3\r\n\tc105.1,0,190.7,85.5,190.7,190.7c0,46.5-16.7,89.1-44.4,122.2c-20-8.2-65.9-24.1-92.9-32.1c-2.4-0.7-2.7-0.9-2.7-10.7\r\n\tc0-8.1,3.3-16.3,6.6-23.3c3.6-7.5,7.7-20.2,9.2-31.6c4.2-4.9,10-14.5,13.6-32.9c3.2-16.2,1.7-22.1-0.4-27.6\r\n\tc-0.2-0.6-0.5-1.2-0.6-1.7c-0.8-3.8,0.3-23.5,3.1-38.8c1.9-10.5-0.5-32.8-14.9-51.3c-9.1-11.7-26.6-26-58.5-28l-17.5,0\r\n\tc-31.4,2-48.8,16.3-58,28c-14.5,18.5-16.9,40.8-15,51.3c2.8,15.3,3.9,35,3.1,38.8c-0.2,0.7-0.4,1.2-0.6,1.8\r\n\tc-2.1,5.5-3.7,11.4-0.4,27.6c3.7,18.4,9.4,28,13.6,32.9c1.5,11.4,5.7,24,9.2,31.6c2.6,5.5,3.8,13,3.8,23.6c0,9.9-0.4,10-2.6,10.7\r\n\tc-28.1,8.3-72.6,24.3-90.4,32C82.1,345.3,65.3,302.6,65.3,256C65.3,150.9,150.9,65.3,256,65.3z"},"children":[]}]};exports.iosContactOutline=iosContactOutline;var iosContact={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256c0,114.9,93.1,208,208,208c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48z\r\n\t M256,446.7c-58.6,0-111.1-26.6-146.1-68.3c17.8-7.7,62.2-23.7,90.3-31.9c2.2-0.7,2.6-0.8,2.6-10.7c0-10.6-1.2-18.1-3.8-23.6\r\n\tc-3.5-7.5-7.7-20.2-9.2-31.6c-4.2-4.9-9.9-14.5-13.6-32.9c-3.2-16.2-1.7-22.1,0.4-27.6c0.2-0.6,0.5-1.2,0.6-1.8\r\n\tc0.8-3.7-0.3-23.5-3.1-38.8c-1.9-10.5,0.5-32.8,15-51.3c9.1-11.7,26.6-26,58-28l17.5,0c31.9,2,49.4,16.3,58.5,28\r\n\tc14.5,18.5,16.9,40.8,14.9,51.3c-2.8,15.3-3.9,35-3.1,38.8c0.1,0.6,0.4,1.2,0.6,1.7c2.1,5.5,3.7,11.4,0.4,27.6\r\n\tc-3.7,18.4-9.4,28-13.6,32.9c-1.5,11.4-5.7,24-9.2,31.6c-3.3,6.9-6.6,15.1-6.6,23.3c0,9.9,0.4,10,2.7,10.7\r\n\tc26.7,7.9,72.7,23.8,93,32.1C367.2,420,314.7,446.7,256,446.7z"},"children":[]}]};exports.iosContact=iosContact;var iosCopyOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"304,96 288,96 288,176 368,176 368,160 304,160 \t"},"children":[{"name":"polygon","attribs":{"points":"304,96 288,96 288,176 368,176 368,160 304,160 \t"},"children":[]}]},{"name":"path","attribs":{"d":"M325.3,64H160v48h-48v336h240v-48h48V139L325.3,64z M336,432H128V128h32v272h176V432z M384,384H176V80h142.7l65.3,65.6V384\r\n\t\tz"},"children":[{"name":"path","attribs":{"d":"M325.3,64H160v48h-48v336h240v-48h48V139L325.3,64z M336,432H128V128h32v272h176V432z M384,384H176V80h142.7l65.3,65.6V384\r\n\t\tz"},"children":[]}]}]}]};exports.iosCopyOutline=iosCopyOutline;var iosCopy={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"144,416 144,400 144,112 112,112 112,448 352,448 352,416 160,416 \t"},"children":[{"name":"polygon","attribs":{"points":"144,416 144,400 144,112 112,112 112,448 352,448 352,416 160,416 \t"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M325.3,64H160v48v288h192h48V139L325.3,64z M368,176h-80V96h16v64h64V176z"},"children":[{"name":"path","attribs":{"d":"M325.3,64H160v48v288h192h48V139L325.3,64z M368,176h-80V96h16v64h64V176z"},"children":[]}]}]}]}]}]};exports.iosCopy=iosCopy;var iosCropStrong={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"128","y":"64","width":"32","height":"48"},"children":[{"name":"rect","attribs":{"x":"128","y":"64","width":"32","height":"48"},"children":[]}]},{"name":"polygon","attribs":{"points":"160,352 160,176 128,176 128,384 336,384 336,352 \t"},"children":[{"name":"polygon","attribs":{"points":"160,352 160,176 128,176 128,384 336,384 336,352 \t"},"children":[]}]},{"name":"rect","attribs":{"x":"400","y":"352","width":"48","height":"32"},"children":[{"name":"rect","attribs":{"x":"400","y":"352","width":"48","height":"32"},"children":[]}]},{"name":"polygon","attribs":{"points":"64,128 64,160 352,160 352,448 384,448 384,128 \t"},"children":[{"name":"polygon","attribs":{"points":"64,128 64,160 352,160 352,448 384,448 384,128 \t"},"children":[]}]}]}]};exports.iosCropStrong=iosCropStrong;var iosCrop={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"128","y":"64","width":"16","height":"48"},"children":[{"name":"rect","attribs":{"x":"128","y":"64","width":"16","height":"48"},"children":[]}]},{"name":"polygon","attribs":{"points":"144,368 144,160 128,160 128,384 352,384 352,368 \t"},"children":[{"name":"polygon","attribs":{"points":"144,368 144,160 128,160 128,384 352,384 352,368 \t"},"children":[]}]},{"name":"rect","attribs":{"x":"400","y":"368","width":"48","height":"16"},"children":[{"name":"rect","attribs":{"x":"400","y":"368","width":"48","height":"16"},"children":[]}]},{"name":"polygon","attribs":{"points":"64,128 64,144 368,144 368,448 384,448 384,128 \t"},"children":[{"name":"polygon","attribs":{"points":"64,128 64,144 368,144 368,448 384,448 384,128 \t"},"children":[]}]}]}]};exports.iosCrop=iosCrop;var iosDownloadOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"288,144 288,160 400,160 400,432 112,432 112,160 224,160 224,144 96,144 96,448 416,448 416,144 \t\t"},"children":[{"name":"polygon","attribs":{"points":"288,144 288,160 400,160 400,432 112,432 112,160 224,160 224,144 96,144 96,448 416,448 416,144 \t\t"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"193.1,252.3 181.5,263.9 256,338.4 330.5,263.9 318.9,252.3 264.2,307 264.2,64 247.8,64 247.8,307 \t\t"},"children":[{"name":"polygon","attribs":{"points":"193.1,252.3 181.5,263.9 256,338.4 330.5,263.9 318.9,252.3 264.2,307 264.2,64 247.8,64 247.8,307 \t\t"},"children":[]}]}]}]}]}]};exports.iosDownloadOutline=iosDownloadOutline;var iosDownload={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"264,144 264,307 318.8,252.3 330.4,263.9 256,338.4 181.5,263.9 193.2,252.3 248,307 248,144 96,144 96,448 \r\n\t\t416,448 416,144 \t"},"children":[{"name":"polygon","attribs":{"points":"264,144 264,307 318.8,252.3 330.4,263.9 256,338.4 181.5,263.9 193.2,252.3 248,307 248,144 96,144 96,448 \r\n\t\t416,448 416,144 \t"},"children":[]}]},{"name":"rect","attribs":{"x":"248","y":"64","width":"16","height":"80"},"children":[{"name":"rect","attribs":{"x":"248","y":"64","width":"16","height":"80"},"children":[]}]}]}]};exports.iosDownload=iosDownload;var iosDrag={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"80","y":"304","width":"352","height":"16"},"children":[{"name":"rect","attribs":{"x":"80","y":"304","width":"352","height":"16"},"children":[]}]},{"name":"rect","attribs":{"x":"80","y":"248","width":"352","height":"16"},"children":[{"name":"rect","attribs":{"x":"80","y":"248","width":"352","height":"16"},"children":[]}]},{"name":"rect","attribs":{"x":"80","y":"192","width":"352","height":"16"},"children":[{"name":"rect","attribs":{"x":"80","y":"192","width":"352","height":"16"},"children":[]}]}]}]};exports.iosDrag=iosDrag;var iosEmailOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M64,128v256h384V128H64z M256,267.9L93.2,144h325.6L256,267.9z M80,368V154.1l115.1,87.6L127,319l2,2l78.9-69.6L256,288\r\n\tl48.1-36.6L383,321l2-2l-68.1-77.4L432,154.1V368H80z"},"children":[]}]};exports.iosEmailOutline=iosEmailOutline;var iosEmail={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"448,384 448,141.8 316.9,241.6 385,319 383,321 304.1,251.4 256,288 207.9,251.4 129,321 127,319 195,241.6 \r\n\t\t64,142 64,384 \t"},"children":[{"name":"polygon","attribs":{"points":"448,384 448,141.8 316.9,241.6 385,319 383,321 304.1,251.4 256,288 207.9,251.4 129,321 127,319 195,241.6 \r\n\t\t64,142 64,384 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"439.7,128 72,128 256,267.9 \t"},"children":[{"name":"polygon","attribs":{"points":"439.7,128 72,128 256,267.9 \t"},"children":[]}]}]}]};exports.iosEmail=iosEmail;var iosEyeOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M447.1,256.2C401.8,204,339.2,144,256,144c-33.6,0-64.4,9.5-96.9,29.8C131.7,191,103.6,215.2,65,255l-1,1l6.7,6.9\r\n\t\t\tC125.8,319.3,173.4,368,256,368c36.5,0,71.9-11.9,108.2-36.4c30.9-20.9,57.2-47.4,78.3-68.8l5.5-5.5L447.1,256.2z M256,160\r\n\t\t\tc33.1,0,64.9,9.5,97.2,30.6c23.9,15.6,47.4,36.7,73.7,66.1C388.6,295.4,331.1,352,256,352c-34.2,0-64.2-8.4-94.2-28.2\r\n\t\t\tc-27.5-18.1-52.3-43.3-76.2-67.8C144.7,196.3,194,160,256,160z"},"children":[{"name":"path","attribs":{"d":"M447.1,256.2C401.8,204,339.2,144,256,144c-33.6,0-64.4,9.5-96.9,29.8C131.7,191,103.6,215.2,65,255l-1,1l6.7,6.9\r\n\t\t\tC125.8,319.3,173.4,368,256,368c36.5,0,71.9-11.9,108.2-36.4c30.9-20.9,57.2-47.4,78.3-68.8l5.5-5.5L447.1,256.2z M256,160\r\n\t\t\tc33.1,0,64.9,9.5,97.2,30.6c23.9,15.6,47.4,36.7,73.7,66.1C388.6,295.4,331.1,352,256,352c-34.2,0-64.2-8.4-94.2-28.2\r\n\t\t\tc-27.5-18.1-52.3-43.3-76.2-67.8C144.7,196.3,194,160,256,160z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,336c44.1,0,80-35.9,80-80c0-44.1-35.9-80-80-80c-44.1,0-80,35.9-80,80C176,300.1,211.9,336,256,336z M256,192.3\r\n\t\t\tc35.2,0,64,28.6,64,63.7c0,35.1-28.8,63.7-64,63.7c-35.2,0-63.9-28.6-63.9-63.7C192.1,220.9,220.8,192.3,256,192.3z"},"children":[{"name":"path","attribs":{"d":"M256,336c44.1,0,80-35.9,80-80c0-44.1-35.9-80-80-80c-44.1,0-80,35.9-80,80C176,300.1,211.9,336,256,336z M256,192.3\r\n\t\t\tc35.2,0,64,28.6,64,63.7c0,35.1-28.8,63.7-64,63.7c-35.2,0-63.9-28.6-63.9-63.7C192.1,220.9,220.8,192.3,256,192.3z"},"children":[]}]}]}]},{"name":"path","attribs":{"d":"M288,256L288,256c0,17.5-14.4,32-31.8,32S224,272.8,224,255.3s15.8-31.3,32-31.3l0-16c-26.5,0-47.9,21.6-47.9,48.2\r\n\t\tc0,26.6,21.5,48.1,47.9,48.1s48-21.6,48-48.1V256H288z"},"children":[{"name":"path","attribs":{"d":"M288,256L288,256c0,17.5-14.4,32-31.8,32S224,272.8,224,255.3s15.8-31.3,32-31.3l0-16c-26.5,0-47.9,21.6-47.9,48.2\r\n\t\tc0,26.6,21.5,48.1,47.9,48.1s48-21.6,48-48.1V256H288z"},"children":[]}]}]}]};exports.iosEyeOutline=iosEyeOutline;var iosEye={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M447.1,256.2C401.8,204,339.2,144,256,144c-33.6,0-64.4,9.5-96.9,29.8C131.7,191,103.6,215.2,65,255l-1,1l6.7,6.9\r\n\t\tC125.8,319.3,173.4,368,256,368c36.5,0,71.9-11.9,108.2-36.4c30.9-20.9,57.2-47.4,78.3-68.8l5.5-5.5L447.1,256.2z M256,336\r\n\t\tc-44.1,0-80-35.9-80-80c0-44.1,35.9-80,80-80c44.1,0,80,35.9,80,80C336,300.1,300.1,336,256,336z"},"children":[{"name":"path","attribs":{"d":"M447.1,256.2C401.8,204,339.2,144,256,144c-33.6,0-64.4,9.5-96.9,29.8C131.7,191,103.6,215.2,65,255l-1,1l6.7,6.9\r\n\t\tC125.8,319.3,173.4,368,256,368c36.5,0,71.9-11.9,108.2-36.4c30.9-20.9,57.2-47.4,78.3-68.8l5.5-5.5L447.1,256.2z M256,336\r\n\t\tc-44.1,0-80-35.9-80-80c0-44.1,35.9-80,80-80c44.1,0,80,35.9,80,80C336,300.1,300.1,336,256,336z"},"children":[]}]},{"name":"path","attribs":{"d":"M250.4,226.8c0-6.9,2-13.4,5.5-18.8c-26.5,0-47.9,21.6-47.9,48.2c0,26.6,21.5,48.1,47.9,48.1s48-21.5,48-48.1v0\r\n\t\tc-5.4,3.5-11.9,5.5-18.8,5.5C266,261.6,250.4,246,250.4,226.8z"},"children":[{"name":"path","attribs":{"d":"M250.4,226.8c0-6.9,2-13.4,5.5-18.8c-26.5,0-47.9,21.6-47.9,48.2c0,26.6,21.5,48.1,47.9,48.1s48-21.5,48-48.1v0\r\n\t\tc-5.4,3.5-11.9,5.5-18.8,5.5C266,261.6,250.4,246,250.4,226.8z"},"children":[]}]}]}]};exports.iosEye=iosEye;var iosFastforwardOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M48,155l183.5,101L48,356.9V155 M272,155.8L448,256L272,356.4v-95.6v-27.1V156 M256,128v123.2L32,128v256l224-123.2V384\r\n\tl224-128L256,128L256,128z"},"children":[]}]};exports.iosFastforwardOutline=iosFastforwardOutline;var iosFastforward={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,128v123.2L32,128v256l224-123.2V384l224-128L256,128L256,128z"},"children":[]}]};exports.iosFastforward=iosFastforward;var iosFilingOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M368.5,128h-225L80,224v160h176h176V224L368.5,128z M413.4,224H368v-68L413.4,224z M160,144h192v80h-48\r\n\tc0,26.5-21.5,48-48,48s-48-21.5-48-48h-48V144z M144,156v68H98.6L144,156z M416,368H256H96V240h98c7.1,27.6,32.2,48,62,48\r\n\ts54.9-20.4,62-48h98V368z"},"children":[]}]};exports.iosFilingOutline=iosFilingOutline;var iosFiling={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,288c-29.8,0-54.9-20.4-62-48H80v144h176h176V240H318C310.9,267.6,285.8,288,256,288z"},"children":[{"name":"path","attribs":{"d":"M256,288c-29.8,0-54.9-20.4-62-48H80v144h176h176V240H318C310.9,267.6,285.8,288,256,288z"},"children":[]}]},{"name":"path","attribs":{"d":"M144,224h16h9h39c0,26.5,21.5,48,48,48s48-21.5,48-48h40h8h16h8h56l-63.5-96H368v80h-16v-80H160v80h-16v-80h-0.5L80,224h57\r\n\t\tH144z"},"children":[{"name":"path","attribs":{"d":"M144,224h16h9h39c0,26.5,21.5,48,48,48s48-21.5,48-48h40h8h16h8h56l-63.5-96H368v80h-16v-80H160v80h-16v-80h-0.5L80,224h57\r\n\t\tH144z"},"children":[]}]}]}]};exports.iosFiling=iosFiling;var iosFilmOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M56,88v336h400V88H56z M128,408H72v-48h56V408z M128,344H72v-48h56V344z M128,280H72v-48h56V280z M128,216H72v-48h56V216z\r\n\t M128,152H72v-48h56V152z M368,408H144V264h224V408z M368,248H144V104h224V248z M440,408h-56v-48h56V408z M440,344h-56v-48h56V344z\r\n\t M440,280h-56v-48h56V280z M440,216h-56v-48h56V216z M440,152h-56v-48h56V152z"},"children":[]}]};exports.iosFilmOutline=iosFilmOutline;var iosFilm={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M56,88v336h400V88H56z M128,408H72v-48h56V408z M128,344H72v-48h56V344z M128,280H72v-48h56V280z M128,216H72v-48h56V216z\r\n\t\t M128,152H72v-48h56V152z M368,264H144v-16h224V264z M440,408h-56v-48h56V408z M440,344h-56v-48h56V344z M440,280h-56v-48h56V280z\r\n\t\t M440,216h-56v-48h56V216z M440,152h-56v-48h56V152z"},"children":[{"name":"path","attribs":{"d":"M56,88v336h400V88H56z M128,408H72v-48h56V408z M128,344H72v-48h56V344z M128,280H72v-48h56V280z M128,216H72v-48h56V216z\r\n\t\t M128,152H72v-48h56V152z M368,264H144v-16h224V264z M440,408h-56v-48h56V408z M440,344h-56v-48h56V344z M440,280h-56v-48h56V280z\r\n\t\t M440,216h-56v-48h56V216z M440,152h-56v-48h56V152z"},"children":[]}]}]}]};exports.iosFilm=iosFilm;var iosFlagOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M368,112c-11,1.4-24.9,3.5-39.7,3.5c-23.1,0-44-5.7-65.2-10.2c-21.5-4.6-43.7-9.3-67.2-9.3c-46.9,0-62.8,10.1-64.4,11.2\r\n\t\tl-3.4,2.4v2.6v161.7V416h16V272.7c6-2.5,21.8-6.9,51.9-6.9c21.8,0,42.2,8.3,63.9,13c22,4.7,44.8,9.6,69.5,9.6\r\n\t\tc14.7,0,27.7-2,38.7-3.3c6-0.7,11.3-1.4,16-2.2V126v-16.5C379.4,110.4,374,111.2,368,112z M368,269c-11,1.4-23.9,3.5-38.7,3.5\r\n\t\tc-23.1,0-45-4.7-66.2-9.2c-21.5-4.6-43.6-13.3-67.1-13.3c-25.7,0-41.9,3-51.9,6V118.7c6-2.5,21.9-6.8,51.9-6.8\r\n\t\tc21.8,0,42.2,4.3,63.9,9c22,4.7,43.8,10.6,68.5,10.6c14.7,0,28.7-2,39.7-3.3L368,269L368,269z"},"children":[{"name":"path","attribs":{"d":"M368,112c-11,1.4-24.9,3.5-39.7,3.5c-23.1,0-44-5.7-65.2-10.2c-21.5-4.6-43.7-9.3-67.2-9.3c-46.9,0-62.8,10.1-64.4,11.2\r\n\t\tl-3.4,2.4v2.6v161.7V416h16V272.7c6-2.5,21.8-6.9,51.9-6.9c21.8,0,42.2,8.3,63.9,13c22,4.7,44.8,9.6,69.5,9.6\r\n\t\tc14.7,0,27.7-2,38.7-3.3c6-0.7,11.3-1.4,16-2.2V126v-16.5C379.4,110.4,374,111.2,368,112z M368,269c-11,1.4-23.9,3.5-38.7,3.5\r\n\t\tc-23.1,0-45-4.7-66.2-9.2c-21.5-4.6-43.6-13.3-67.1-13.3c-25.7,0-41.9,3-51.9,6V118.7c6-2.5,21.9-6.8,51.9-6.8\r\n\t\tc21.8,0,42.2,4.3,63.9,9c22,4.7,43.8,10.6,68.5,10.6c14.7,0,28.7-2,39.7-3.3L368,269L368,269z"},"children":[]}]}]}]};exports.iosFlagOutline=iosFlagOutline;var iosFlag={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M368,112c-11,1.4-24.9,3.5-39.7,3.5c-23.1,0-44-5.7-65.2-10.2c-21.5-4.6-43.7-9.3-67.2-9.3c-46.9,0-62.8,10.1-64.4,11.2\r\n\t\tl-3.4,2.4v2.6v161.7V416h16V272.7c6-2.5,21.8-6.9,51.9-6.9c21.8,0,42.2,8.3,63.9,13c22,4.7,44.8,9.6,69.5,9.6\r\n\t\tc14.7,0,27.7-2,38.7-3.3c6-0.7,11.3-1.4,16-2.2V126v-16.5C379.4,110.4,374,111.2,368,112z"},"children":[{"name":"path","attribs":{"d":"M368,112c-11,1.4-24.9,3.5-39.7,3.5c-23.1,0-44-5.7-65.2-10.2c-21.5-4.6-43.7-9.3-67.2-9.3c-46.9,0-62.8,10.1-64.4,11.2\r\n\t\tl-3.4,2.4v2.6v161.7V416h16V272.7c6-2.5,21.8-6.9,51.9-6.9c21.8,0,42.2,8.3,63.9,13c22,4.7,44.8,9.6,69.5,9.6\r\n\t\tc14.7,0,27.7-2,38.7-3.3c6-0.7,11.3-1.4,16-2.2V126v-16.5C379.4,110.4,374,111.2,368,112z"},"children":[]}]}]}]};exports.iosFlag=iosFlag;var iosFlameOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M223.899,32c25.691,145-96.732,142-95.895,288c0.686,119.51,104.975,160,128.143,160c23.166,0,113.88-26,126.931-160\r\n\tC393.711,210.816,310.572,96,223.899,32z M256.147,472c0,0-40.701-35.816-40.701-80c0-44.183,40.555-80,40.555-80\r\n\ts40.332,35.817,40.332,80C296.332,436.184,256.147,472,256.147,472z M367.153,318.449c-2.823,28.988-9.704,54.523-20.45,75.894\r\n\tc-8.749,17.397-20.084,32.114-33.692,43.743c-6.522,5.575-13.255,10.115-19.771,13.749c10.039-15.938,19.093-36.72,19.093-59.835\r\n\tc0-50.788-43.842-90.307-45.708-91.963l-10.594-9.41l-10.621,9.381c-1.877,1.657-45.963,41.178-45.963,91.992\r\n\tc0,21.842,8.168,41.594,17.636,57.152c-7.381-4.326-15.215-9.748-22.986-16.451c-14.688-12.67-26.365-27.608-34.708-44.402\r\n\tc-10.063-20.255-15.239-43.265-15.383-68.391c-0.367-63.986,24.09-95.746,49.983-129.369c24.568-31.903,49.829-64.7,49.458-122.113\r\n\tc32.513,28.827,61.257,63.03,82.822,98.877C357.576,219.35,371.715,271.615,367.153,318.449z"},"children":[]}]};exports.iosFlameOutline=iosFlameOutline;var iosFlame={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M223.899,32c25.691,145-96.732,142-95.895,288c0.686,119.51,104.975,160,128.143,160c23.166,0,113.88-26,126.931-160\r\n\t\tC393.711,210.816,310.572,96,223.899,32z M256.147,472c0,0-40.701-35.816-40.701-80c0-44.183,40.555-80,40.555-80\r\n\t\ts40.332,35.817,40.332,80C296.332,436.184,256.147,472,256.147,472z"},"children":[{"name":"path","attribs":{"d":"M223.899,32c25.691,145-96.732,142-95.895,288c0.686,119.51,104.975,160,128.143,160c23.166,0,113.88-26,126.931-160\r\n\t\tC393.711,210.816,310.572,96,223.899,32z M256.147,472c0,0-40.701-35.816-40.701-80c0-44.183,40.555-80,40.555-80\r\n\t\ts40.332,35.817,40.332,80C296.332,436.184,256.147,472,256.147,472z"},"children":[]}]}]}]};exports.iosFlame=iosFlame;var iosFlaskOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M436.912,370.441L320,175V48h16V32h-16.009H304v16v131.418l2.514,3.791l116.575,194.834\r\n\t\tc6.75,12.818,9.314,25.95,9.001,37.957c-0.243,9.339-1.958,17.938-6.545,25.569C417.076,455.666,402.33,464,384.981,464H129.093\r\n\t\tc-17.504,0-32.461-8.435-41.035-22.705c-11.897-19.801-10.889-38.145,2.275-63.139L181.821,224H240v-16h-48.683l14.687-24.756\r\n\t\tL208,179.4V176h48v-16h-48v-32h32v-16h-32V80h48V64h-48V48V32h-15.989H176v16h16v127L76.126,370.441\r\n\t\tC67.714,386.268,63.615,401.814,64.027,416c1.061,36.511,28.702,64,65.065,64h255.889c36.291,0,62.131-27.598,62.992-64\r\n\t\tC448.311,401.756,445.367,386.349,436.912,370.441z"},"children":[{"name":"path","attribs":{"d":"M436.912,370.441L320,175V48h16V32h-16.009H304v16v131.418l2.514,3.791l116.575,194.834\r\n\t\tc6.75,12.818,9.314,25.95,9.001,37.957c-0.243,9.339-1.958,17.938-6.545,25.569C417.076,455.666,402.33,464,384.981,464H129.093\r\n\t\tc-17.504,0-32.461-8.435-41.035-22.705c-11.897-19.801-10.889-38.145,2.275-63.139L181.821,224H240v-16h-48.683l14.687-24.756\r\n\t\tL208,179.4V176h48v-16h-48v-32h32v-16h-32V80h48V64h-48V48V32h-15.989H176v16h16v127L76.126,370.441\r\n\t\tC67.714,386.268,63.615,401.814,64.027,416c1.061,36.511,28.702,64,65.065,64h255.889c36.291,0,62.131-27.598,62.992-64\r\n\t\tC448.311,401.756,445.367,386.349,436.912,370.441z"},"children":[]}]},{"name":"path","attribs":{"d":"M108.292,374.616c-6.907,10.542-10.936,24.095-10.936,33.55c0,27.584,15.82,39.834,45.682,39.834h225.932\r\n\t\tc29.804,0,44.975-15.711,45.681-39.959c0.277-9.488-3.143-22.729-10.086-33.324L332.729,256H179.5L108.292,374.616z M323.705,272\r\n\t\tl67.168,110.87l0.151,0.124l0.159,0.182c5.382,8.212,7.647,18.275,7.476,24.18c-0.229,7.839-2.477,13.98-6.683,17.795\r\n\t\tc-4.774,4.328-12.729,6.85-23.008,6.85H143.037c-11.064,0-19.27-2.236-23.73-5.996c-1.472-1.24-5.954-5.143-5.954-18.088\r\n\t\tc0-5.943,2.857-16.383,8.319-24.717l0.177-0.302l0.166-0.042L188.564,272H323.705z"},"children":[{"name":"path","attribs":{"d":"M108.292,374.616c-6.907,10.542-10.936,24.095-10.936,33.55c0,27.584,15.82,39.834,45.682,39.834h225.932\r\n\t\tc29.804,0,44.975-15.711,45.681-39.959c0.277-9.488-3.143-22.729-10.086-33.324L332.729,256H179.5L108.292,374.616z M323.705,272\r\n\t\tl67.168,110.87l0.151,0.124l0.159,0.182c5.382,8.212,7.647,18.275,7.476,24.18c-0.229,7.839-2.477,13.98-6.683,17.795\r\n\t\tc-4.774,4.328-12.729,6.85-23.008,6.85H143.037c-11.064,0-19.27-2.236-23.73-5.996c-1.472-1.24-5.954-5.143-5.954-18.088\r\n\t\tc0-5.943,2.857-16.383,8.319-24.717l0.177-0.302l0.166-0.042L188.564,272H323.705z"},"children":[]}]}]}]};exports.iosFlaskOutline=iosFlaskOutline;var iosFlask={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M391.016,382.994l-0.15-0.124L323.7,272H188.554l-66.549,110.855l-0.166,0.042l-0.177,0.302\r\n\t\tc-5.461,8.334-8.319,18.773-8.319,24.717c0,12.945,4.481,16.848,5.954,18.088c4.46,3.76,12.667,5.996,23.731,5.996H368.96\r\n\t\tc10.278,0,18.232-2.521,23.007-6.85c4.205-3.814,6.454-9.956,6.683-17.795c0.172-5.904-2.093-15.968-7.476-24.18L391.016,382.994z"},"children":[{"name":"path","attribs":{"d":"M391.016,382.994l-0.15-0.124L323.7,272H188.554l-66.549,110.855l-0.166,0.042l-0.177,0.302\r\n\t\tc-5.461,8.334-8.319,18.773-8.319,24.717c0,12.945,4.481,16.848,5.954,18.088c4.46,3.76,12.667,5.996,23.731,5.996H368.96\r\n\t\tc10.278,0,18.232-2.521,23.007-6.85c4.205-3.814,6.454-9.956,6.683-17.795c0.172-5.904-2.093-15.968-7.476-24.18L391.016,382.994z"},"children":[]}]},{"name":"path","attribs":{"d":"M436.912,370.441L320,175V48h16V32H176v16h16v127L76.125,370.441C67.715,386.268,63.616,401.814,64.028,416\r\n\t\tc1.061,36.511,28.701,64,65.065,64h255.888c36.292,0,62.132-27.598,62.993-64C448.312,401.756,445.367,386.349,436.912,370.441z\r\n\t\t M208,64h48v16h-48V64z M208,112h32v16h-32V112z M208,160h48v16h-48V160z M191.261,208H240v16h-58.179L191.261,208z\r\n\t\t M414.64,408.041C413.934,432.289,398.763,448,368.96,448H143.027c-29.862,0-45.682-12.25-45.682-39.834\r\n\t\tc0-9.455,4.029-23.008,10.937-33.55L179.49,256h153.228l71.836,118.717C411.497,385.312,414.916,398.553,414.64,408.041z"},"children":[{"name":"path","attribs":{"d":"M436.912,370.441L320,175V48h16V32H176v16h16v127L76.125,370.441C67.715,386.268,63.616,401.814,64.028,416\r\n\t\tc1.061,36.511,28.701,64,65.065,64h255.888c36.292,0,62.132-27.598,62.993-64C448.312,401.756,445.367,386.349,436.912,370.441z\r\n\t\t M208,64h48v16h-48V64z M208,112h32v16h-32V112z M208,160h48v16h-48V160z M191.261,208H240v16h-58.179L191.261,208z\r\n\t\t M414.64,408.041C413.934,432.289,398.763,448,368.96,448H143.027c-29.862,0-45.682-12.25-45.682-39.834\r\n\t\tc0-9.455,4.029-23.008,10.937-33.55L179.49,256h153.228l71.836,118.717C411.497,385.312,414.916,398.553,414.64,408.041z"},"children":[]}]}]}]};exports.iosFlask=iosFlask;var iosFlowerOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M395.057,284.252c55.929,0,84.943-11.62,84.943-28.002s-29.016-28.003-84.943-28.003c-28.732,0-64.708,7.391-92.902,14.578\r\n\t\tc-0.975-3.419-2.305-6.688-3.973-9.75c25.009-14.852,55.645-35.05,75.947-55.353c39.547-39.547,52.023-68.458,40.44-80.042\r\n\t\tc-2.747-2.748-6.472-4.142-11.079-4.142c-14.818,0-38.796,14.415-68.963,44.582c-20.282,20.282-40.459,50.873-55.307,75.869\r\n\t\tc-3.062-1.696-6.33-3.062-9.755-4.062c7.175-28.17,14.535-64.059,14.535-92.735C284.002,61.266,272.382,32,256,32\r\n\t\ts-28.002,29.266-28.002,85.194c0,28.676,7.362,64.565,14.536,92.735c-3.425,1-6.693,2.365-9.755,4.062\r\n\t\tc-14.847-24.996-35.023-55.587-55.305-75.869C147.309,107.957,123.33,93.54,108.51,93.54c-4.609,0-8.331,1.394-11.079,4.142\r\n\t\tc-11.584,11.583,0.894,40.494,40.44,80.041c20.303,20.303,50.938,40.501,75.947,55.353c-1.668,3.062-2.999,6.331-3.974,9.75\r\n\t\tc-28.194-7.188-64.169-14.578-92.901-14.578C61.016,228.247,32,239.618,32,256s29.016,28.252,84.944,28.252\r\n\t\tc28.777,0,64.82-7.413,93.034-14.611c1.003,3.392,2.368,6.625,4.055,9.656c-25.048,14.863-55.801,35.119-76.161,55.479\r\n\t\tc-39.547,39.548-52.023,68.459-40.44,80.043c2.748,2.748,6.471,4.142,11.078,4.142c14.819,0,38.796-14.415,68.963-44.583\r\n\t\tc20.382-20.381,40.659-51.177,55.526-76.238c3.032,1.657,6.267,2.988,9.651,3.967c-7.211,28.238-14.654,64.367-14.654,93.201\r\n\t\tC227.998,451.234,239.618,480,256,480s28.002-28.766,28.002-84.693c0-28.834-7.441-64.963-14.652-93.201\r\n\t\tc3.385-0.979,6.618-2.31,9.65-3.967c14.867,25.062,35.145,55.857,55.527,76.239c30.164,30.165,54.144,44.582,68.963,44.582\r\n\t\tc4.608,0,8.33-1.394,11.078-4.142c11.584-11.584-0.894-40.495-40.439-80.043c-20.361-20.359-51.114-40.615-76.162-55.479\r\n\t\tc1.688-3.031,3.053-6.266,4.055-9.656C330.237,276.839,366.28,284.252,395.057,284.252z M319.992,254.941\r\n\t\tc30.144-7.014,55.893-10.694,75.064-10.694c21.329,0,39.453,1.806,52.41,5.222c9.705,2.559,14.005,5.317,15.736,6.781\r\n\t\tc-1.731,1.463-6.031,4.221-15.736,6.779c-12.958,3.416-31.081,5.223-52.41,5.223c-19.176,0-44.927-3.68-75.075-10.695\r\n\t\tL319.992,254.941z M345.841,149.436c35.382-35.383,52.682-39.412,56.818-39.846c-0.211,2.305-1.343,7.326-6.404,15.991\r\n\t\tc-6.786,11.62-18.35,25.738-33.439,40.828c-13.533,13.534-34.3,29.111-60.513,45.438c-0.619-0.648-1.25-1.283-1.895-1.904\r\n\t\tC316.732,183.729,332.309,162.968,345.841,149.436z M209.698,211.846c-26.213-16.326-46.979-31.904-60.512-45.437\r\n\t\tc-15.09-15.091-26.653-29.208-33.439-40.828c-5.061-8.665-6.194-13.687-6.404-15.992c4.138,0.435,21.436,4.463,56.818,39.845\r\n\t\tc13.533,13.533,29.108,34.295,45.433,60.507C210.948,210.563,210.316,211.198,209.698,211.846z M116.944,268.252\r\n\t\tc-21.339,0-39.483-1.845-52.471-5.335c-9.689-2.604-13.961-5.394-15.675-6.87c1.75-1.451,6.077-4.177,15.796-6.689\r\n\t\tc12.927-3.343,31.029-5.11,52.351-5.11c19.172,0,44.922,3.68,75.064,10.694l0.01,2.615\r\n\t\tC161.87,264.572,136.12,268.252,116.944,268.252z M166.16,363.064c-35.383,35.382-52.68,39.41-56.818,39.846\r\n\t\tc0.21-2.305,1.343-7.326,6.404-15.992c6.786-11.619,18.349-25.736,33.439-40.828c13.587-13.586,34.457-29.229,60.815-45.625\r\n\t\tc0.584,0.604,1.181,1.197,1.789,1.779C195.394,328.604,179.749,349.475,166.16,363.064z M302,300.465\r\n\t\tc26.356,16.395,47.227,32.037,60.814,45.625c15.091,15.092,26.653,29.209,33.439,40.828c5.062,8.666,6.193,13.688,6.403,15.992\r\n\t\tc-4.138-0.436-21.436-4.464-56.817-39.846c-13.589-13.59-29.234-34.463-45.63-60.82C300.818,301.663,301.415,301.068,302,300.465z\r\n\t\t M249.222,64.678c2.548-9.703,5.297-14.055,6.778-15.834c1.48,1.78,4.23,6.131,6.777,15.834\r\n\t\tc3.418,13.015,5.225,31.174,5.225,52.516c0,19.117-3.66,44.781-10.637,74.821h-2.73c-6.977-30.04-10.638-55.704-10.638-74.821\r\n\t\tC243.998,95.853,245.804,77.693,249.222,64.678z M262.782,447.612c-2.569,9.707-5.339,13.954-6.782,15.636\r\n\t\tc-1.444-1.682-4.212-5.929-6.782-15.636c-3.415-12.901-5.22-30.988-5.22-52.308c0-19.228,3.701-45.066,10.752-75.316h2.5\r\n\t\tc7.052,30.25,10.752,56.089,10.752,75.316C268.002,416.624,266.197,434.711,262.782,447.612z M256,288c-17.673,0-32-14.327-32-32\r\n\t\ts14.327-32,32-32s32,14.327,32,32S273.673,288,256,288z"},"children":[{"name":"path","attribs":{"d":"M395.057,284.252c55.929,0,84.943-11.62,84.943-28.002s-29.016-28.003-84.943-28.003c-28.732,0-64.708,7.391-92.902,14.578\r\n\t\tc-0.975-3.419-2.305-6.688-3.973-9.75c25.009-14.852,55.645-35.05,75.947-55.353c39.547-39.547,52.023-68.458,40.44-80.042\r\n\t\tc-2.747-2.748-6.472-4.142-11.079-4.142c-14.818,0-38.796,14.415-68.963,44.582c-20.282,20.282-40.459,50.873-55.307,75.869\r\n\t\tc-3.062-1.696-6.33-3.062-9.755-4.062c7.175-28.17,14.535-64.059,14.535-92.735C284.002,61.266,272.382,32,256,32\r\n\t\ts-28.002,29.266-28.002,85.194c0,28.676,7.362,64.565,14.536,92.735c-3.425,1-6.693,2.365-9.755,4.062\r\n\t\tc-14.847-24.996-35.023-55.587-55.305-75.869C147.309,107.957,123.33,93.54,108.51,93.54c-4.609,0-8.331,1.394-11.079,4.142\r\n\t\tc-11.584,11.583,0.894,40.494,40.44,80.041c20.303,20.303,50.938,40.501,75.947,55.353c-1.668,3.062-2.999,6.331-3.974,9.75\r\n\t\tc-28.194-7.188-64.169-14.578-92.901-14.578C61.016,228.247,32,239.618,32,256s29.016,28.252,84.944,28.252\r\n\t\tc28.777,0,64.82-7.413,93.034-14.611c1.003,3.392,2.368,6.625,4.055,9.656c-25.048,14.863-55.801,35.119-76.161,55.479\r\n\t\tc-39.547,39.548-52.023,68.459-40.44,80.043c2.748,2.748,6.471,4.142,11.078,4.142c14.819,0,38.796-14.415,68.963-44.583\r\n\t\tc20.382-20.381,40.659-51.177,55.526-76.238c3.032,1.657,6.267,2.988,9.651,3.967c-7.211,28.238-14.654,64.367-14.654,93.201\r\n\t\tC227.998,451.234,239.618,480,256,480s28.002-28.766,28.002-84.693c0-28.834-7.441-64.963-14.652-93.201\r\n\t\tc3.385-0.979,6.618-2.31,9.65-3.967c14.867,25.062,35.145,55.857,55.527,76.239c30.164,30.165,54.144,44.582,68.963,44.582\r\n\t\tc4.608,0,8.33-1.394,11.078-4.142c11.584-11.584-0.894-40.495-40.439-80.043c-20.361-20.359-51.114-40.615-76.162-55.479\r\n\t\tc1.688-3.031,3.053-6.266,4.055-9.656C330.237,276.839,366.28,284.252,395.057,284.252z M319.992,254.941\r\n\t\tc30.144-7.014,55.893-10.694,75.064-10.694c21.329,0,39.453,1.806,52.41,5.222c9.705,2.559,14.005,5.317,15.736,6.781\r\n\t\tc-1.731,1.463-6.031,4.221-15.736,6.779c-12.958,3.416-31.081,5.223-52.41,5.223c-19.176,0-44.927-3.68-75.075-10.695\r\n\t\tL319.992,254.941z M345.841,149.436c35.382-35.383,52.682-39.412,56.818-39.846c-0.211,2.305-1.343,7.326-6.404,15.991\r\n\t\tc-6.786,11.62-18.35,25.738-33.439,40.828c-13.533,13.534-34.3,29.111-60.513,45.438c-0.619-0.648-1.25-1.283-1.895-1.904\r\n\t\tC316.732,183.729,332.309,162.968,345.841,149.436z M209.698,211.846c-26.213-16.326-46.979-31.904-60.512-45.437\r\n\t\tc-15.09-15.091-26.653-29.208-33.439-40.828c-5.061-8.665-6.194-13.687-6.404-15.992c4.138,0.435,21.436,4.463,56.818,39.845\r\n\t\tc13.533,13.533,29.108,34.295,45.433,60.507C210.948,210.563,210.316,211.198,209.698,211.846z M116.944,268.252\r\n\t\tc-21.339,0-39.483-1.845-52.471-5.335c-9.689-2.604-13.961-5.394-15.675-6.87c1.75-1.451,6.077-4.177,15.796-6.689\r\n\t\tc12.927-3.343,31.029-5.11,52.351-5.11c19.172,0,44.922,3.68,75.064,10.694l0.01,2.615\r\n\t\tC161.87,264.572,136.12,268.252,116.944,268.252z M166.16,363.064c-35.383,35.382-52.68,39.41-56.818,39.846\r\n\t\tc0.21-2.305,1.343-7.326,6.404-15.992c6.786-11.619,18.349-25.736,33.439-40.828c13.587-13.586,34.457-29.229,60.815-45.625\r\n\t\tc0.584,0.604,1.181,1.197,1.789,1.779C195.394,328.604,179.749,349.475,166.16,363.064z M302,300.465\r\n\t\tc26.356,16.395,47.227,32.037,60.814,45.625c15.091,15.092,26.653,29.209,33.439,40.828c5.062,8.666,6.193,13.688,6.403,15.992\r\n\t\tc-4.138-0.436-21.436-4.464-56.817-39.846c-13.589-13.59-29.234-34.463-45.63-60.82C300.818,301.663,301.415,301.068,302,300.465z\r\n\t\t M249.222,64.678c2.548-9.703,5.297-14.055,6.778-15.834c1.48,1.78,4.23,6.131,6.777,15.834\r\n\t\tc3.418,13.015,5.225,31.174,5.225,52.516c0,19.117-3.66,44.781-10.637,74.821h-2.73c-6.977-30.04-10.638-55.704-10.638-74.821\r\n\t\tC243.998,95.853,245.804,77.693,249.222,64.678z M262.782,447.612c-2.569,9.707-5.339,13.954-6.782,15.636\r\n\t\tc-1.444-1.682-4.212-5.929-6.782-15.636c-3.415-12.901-5.22-30.988-5.22-52.308c0-19.228,3.701-45.066,10.752-75.316h2.5\r\n\t\tc7.052,30.25,10.752,56.089,10.752,75.316C268.002,416.624,266.197,434.711,262.782,447.612z M256,288c-17.673,0-32-14.327-32-32\r\n\t\ts14.327-32,32-32s32,14.327,32,32S273.673,288,256,288z"},"children":[]}]},{"name":"path","attribs":{"d":"M344.86,405.678c-24.529-17.674-48.394-51.732-48.394-51.732s7.031,41.059,1.854,75.946\r\n\t\tc11.678,21.779,26.139,35.253,36.643,35.253c1.749,0,3.432-0.324,5.042-0.976C351.879,459.372,354.39,439.185,344.86,405.678z\r\n\t\t M333.738,448.566c-2.738-1.46-9.407-6.369-18.992-22.27c0.688-7.872,1.098-16.337,1.219-25.282\r\n\t\tc5.012,4.88,9.947,9.437,14.747,13.613C335.816,434.408,334.954,444.779,333.738,448.566z"},"children":[{"name":"path","attribs":{"d":"M344.86,405.678c-24.529-17.674-48.394-51.732-48.394-51.732s7.031,41.059,1.854,75.946\r\n\t\tc11.678,21.779,26.139,35.253,36.643,35.253c1.749,0,3.432-0.324,5.042-0.976C351.879,459.372,354.39,439.185,344.86,405.678z\r\n\t\t M333.738,448.566c-2.738-1.46-9.407-6.369-18.992-22.27c0.688-7.872,1.098-16.337,1.219-25.282\r\n\t\tc5.012,4.88,9.947,9.437,14.747,13.613C335.816,434.408,334.954,444.779,333.738,448.566z"},"children":[]}]},{"name":"path","attribs":{"d":"M213.679,82.608c-13.292-23.51-26.139-35.255-36.644-35.255c-1.749,0-3.431,0.325-5.042,0.976\r\n\t\tc-11.868,4.795-14.497,23.211-4.87,58.441c21.252,15.98,48.374,51.55,48.374,51.55S207.75,117.5,213.679,82.608z M196.038,111.369\r\n\t\tc-5.001-4.856-9.943-9.398-14.769-13.574c-5.084-19.731-4.223-30.082-3.008-33.863c2.737,1.459,9.407,6.369,18.994,22.27\r\n\t\tC196.568,94.04,196.161,102.466,196.038,111.369z"},"children":[{"name":"path","attribs":{"d":"M213.679,82.608c-13.292-23.51-26.139-35.255-36.644-35.255c-1.749,0-3.431,0.325-5.042,0.976\r\n\t\tc-11.868,4.795-14.497,23.211-4.87,58.441c21.252,15.98,48.374,51.55,48.374,51.55S207.75,117.5,213.679,82.608z M196.038,111.369\r\n\t\tc-5.001-4.856-9.943-9.398-14.769-13.574c-5.084-19.731-4.223-30.082-3.008-33.863c2.737,1.459,9.407,6.369,18.994,22.27\r\n\t\tC196.568,94.04,196.161,102.466,196.038,111.369z"},"children":[]}]},{"name":"path","attribs":{"d":"M82.357,298.568c-27.422,15.505-38.836,30.402-34.277,41.687c2.806,6.944,10.913,10.675,23.842,10.675\r\n\t\tc9.182,0,22.434-1.559,34.672-5.826c17.405-23.934,51.712-48.387,51.712-48.387S116.999,302.836,82.357,298.568z M97.637,330.956\r\n\t\tc-10.088,2.606-18.909,3.974-25.716,3.974c-4.092,0-6.733-0.502-8.223-0.97c1.477-2.755,6.407-9.411,22.253-18.966\r\n\t\tc7.872,0.689,16.338,1.099,25.284,1.22C106.365,321.218,101.815,326.15,97.637,330.956z"},"children":[{"name":"path","attribs":{"d":"M82.357,298.568c-27.422,15.505-38.836,30.402-34.277,41.687c2.806,6.944,10.913,10.675,23.842,10.675\r\n\t\tc9.182,0,22.434-1.559,34.672-5.826c17.405-23.934,51.712-48.387,51.712-48.387S116.999,302.836,82.357,298.568z M97.637,330.956\r\n\t\tc-10.088,2.606-18.909,3.974-25.716,3.974c-4.092,0-6.733-0.502-8.223-0.97c1.477-2.755,6.407-9.411,22.253-18.966\r\n\t\tc7.872,0.689,16.338,1.099,25.284,1.22C106.365,321.218,101.815,326.15,97.637,330.956z"},"children":[]}]},{"name":"path","attribs":{"d":"M463.92,172.245c-2.806-6.945-10.914-10.675-23.844-10.675c-9.178,0-21.4,1.715-34.654,5.822\r\n\t\tc-18.088,23.774-51.699,48.387-51.699,48.387s40.778-7.28,75.918-1.849C457.064,198.426,468.479,183.528,463.92,172.245z\r\n\t\t M426.047,197.504c-7.867-0.689-16.327-1.097-25.267-1.218c4.869-5.004,9.42-9.939,13.6-14.749\r\n\t\tc10.081-2.602,18.895-3.968,25.697-3.968c4.093,0,6.733,0.502,8.225,0.97C446.824,181.294,441.893,187.951,426.047,197.504z"},"children":[{"name":"path","attribs":{"d":"M463.92,172.245c-2.806-6.945-10.914-10.675-23.844-10.675c-9.178,0-21.4,1.715-34.654,5.822\r\n\t\tc-18.088,23.774-51.699,48.387-51.699,48.387s40.778-7.28,75.918-1.849C457.064,198.426,468.479,183.528,463.92,172.245z\r\n\t\t M426.047,197.504c-7.867-0.689-16.327-1.097-25.267-1.218c4.869-5.004,9.42-9.939,13.6-14.749\r\n\t\tc10.081-2.602,18.895-3.968,25.697-3.968c4.093,0,6.733,0.502,8.225,0.97C446.824,181.294,441.893,187.951,426.047,197.504z"},"children":[]}]},{"name":"path","attribs":{"d":"M163.135,408.98c-8.42,30.34-5.956,48.938,5.244,53.69c1.674,0.711,3.437,1.066,5.275,1.066\r\n\t\tc11.107,0,24.698-13.124,39.528-39.015c-4.184-32.22,2.351-70.779,2.351-70.779S193.999,385.336,163.135,408.98z M174.981,447.207\r\n\t\tc-0.904-2.966-2.147-11.15,2.312-29.159c6.048-5.079,12.323-10.782,18.743-17.032c0.095,6.979,0.366,13.687,0.81,20.039\r\n\t\tC186.466,438.66,178.52,445.39,174.981,447.207z"},"children":[{"name":"path","attribs":{"d":"M163.135,408.98c-8.42,30.34-5.956,48.938,5.244,53.69c1.674,0.711,3.437,1.066,5.275,1.066\r\n\t\tc11.107,0,24.698-13.124,39.528-39.015c-4.184-32.22,2.351-70.779,2.351-70.779S193.999,385.336,163.135,408.98z M174.981,447.207\r\n\t\tc-0.904-2.966-2.147-11.15,2.312-29.159c6.048-5.079,12.323-10.782,18.743-17.032c0.095,6.979,0.366,13.687,0.81,20.039\r\n\t\tC186.466,438.66,178.52,445.39,174.981,447.207z"},"children":[]}]},{"name":"path","attribs":{"d":"M343.622,49.826c-1.674-0.71-3.438-1.066-5.274-1.066c-11.105,0-26.207,14.287-39.527,39.013\r\n\t\tc4.514,22.894-2.393,71.053-2.393,71.053s23.239-34.326,52.342-54.956C357.167,72,354.865,54.599,343.622,49.826z M334.627,94.781\r\n\t\tc-6.029,5.051-12.277,10.72-18.66,16.931c-0.092-7.062-0.364-13.846-0.812-20.269c10.379-17.607,18.327-24.336,21.864-26.153\r\n\t\tC337.93,68.274,339.186,76.541,334.627,94.781z"},"children":[{"name":"path","attribs":{"d":"M343.622,49.826c-1.674-0.71-3.438-1.066-5.274-1.066c-11.105,0-26.207,14.287-39.527,39.013\r\n\t\tc4.514,22.894-2.393,71.053-2.393,71.053s23.239-34.326,52.342-54.956C357.167,72,354.865,54.599,343.622,49.826z M334.627,94.781\r\n\t\tc-6.029,5.051-12.277,10.72-18.66,16.931c-0.092-7.062-0.364-13.846-0.812-20.269c10.379-17.607,18.327-24.336,21.864-26.153\r\n\t\tC337.93,68.274,339.186,76.541,334.627,94.781z"},"children":[]}]},{"name":"path","attribs":{"d":"M103.209,163.367C93,159.5,80.717,158.366,72.457,158.366c-12.267,0-20.042,3.573-22.881,10.261\r\n\t\tc-5.004,11.792,9.97,29.985,37.948,44.805c29.726-3.932,70.688,2.336,70.688,2.336S121,187.067,103.209,163.367z M65.034,175.215\r\n\t\tc1.381-0.414,3.775-0.848,7.424-0.848c5.815,0,13.242,1.088,21.687,3.165c5.077,6.049,10.781,12.33,17.034,18.754\r\n\t\tc-6.959,0.096-13.648,0.367-19.984,0.81C73.563,186.7,66.84,178.745,65.034,175.215z"},"children":[{"name":"path","attribs":{"d":"M103.209,163.367C93,159.5,80.717,158.366,72.457,158.366c-12.267,0-20.042,3.573-22.881,10.261\r\n\t\tc-5.004,11.792,9.97,29.985,37.948,44.805c29.726-3.932,70.688,2.336,70.688,2.336S121,187.067,103.209,163.367z M65.034,175.215\r\n\t\tc1.381-0.414,3.775-0.848,7.424-0.848c5.815,0,13.242,1.088,21.687,3.165c5.077,6.049,10.781,12.33,17.034,18.754\r\n\t\tc-6.959,0.096-13.648,0.367-19.984,0.81C73.563,186.7,66.84,178.745,65.034,175.215z"},"children":[]}]},{"name":"path","attribs":{"d":"M424.477,299.066c-25.307,5.6-70.78-2.35-70.78-2.35s34.638,25.615,55.014,52.393c11.959,4.223,22.555,5.022,30.833,5.022\r\n\t\tc12.266,0,20.041-3.573,22.88-10.261C467.428,332.08,454.283,315.801,424.477,299.066z M439.542,338.132\r\n\t\tc-5.833,0-13.287-1.095-21.765-3.185c-5.078-6.053-10.774-12.326-17.013-18.734c6.98-0.095,13.688-0.365,20.041-0.811\r\n\t\tc17.631,10.396,24.354,18.352,26.158,21.882C445.585,337.697,443.19,338.132,439.542,338.132z"},"children":[{"name":"path","attribs":{"d":"M424.477,299.066c-25.307,5.6-70.78-2.35-70.78-2.35s34.638,25.615,55.014,52.393c11.959,4.223,22.555,5.022,30.833,5.022\r\n\t\tc12.266,0,20.041-3.573,22.88-10.261C467.428,332.08,454.283,315.801,424.477,299.066z M439.542,338.132\r\n\t\tc-5.833,0-13.287-1.095-21.765-3.185c-5.078-6.053-10.774-12.326-17.013-18.734c6.98-0.095,13.688-0.365,20.041-0.811\r\n\t\tc17.631,10.396,24.354,18.352,26.158,21.882C445.585,337.697,443.19,338.132,439.542,338.132z"},"children":[]}]}]}]};exports.iosFlowerOutline=iosFlowerOutline;var iosFlower={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M395.057,228.247c-28.651,0-64.502,7.35-92.66,14.518c-0.98-3.443-2.321-6.734-4.001-9.817\r\n\t\tc24.97-14.84,55.487-34.98,75.733-55.224c39.547-39.547,52.023-68.458,40.44-80.042c-11.584-11.583-40.495,0.893-80.042,40.44\r\n\t\tc-20.225,20.225-40.343,50.698-55.178,75.654c-3.082-1.708-6.373-3.083-9.822-4.089c7.156-28.133,14.475-63.897,14.475-92.492\r\n\t\tC284.002,61.266,272.382,32,256,32s-28.002,29.266-28.002,85.194c0,28.595,7.319,64.359,14.475,92.492\r\n\t\tc-3.449,1.006-6.74,2.381-9.822,4.089c-14.835-24.956-34.953-55.43-55.176-75.653c-39.548-39.547-68.458-52.024-80.042-40.44\r\n\t\tc-11.584,11.583,0.894,40.494,40.44,80.041c20.246,20.244,50.762,40.384,75.732,55.224c-1.68,3.083-3.021,6.374-4.001,9.817\r\n\t\tc-28.158-7.168-64.008-14.518-92.659-14.518C61.016,228.247,32,239.618,32,256s29.016,28.252,84.944,28.252\r\n\t\tc28.697,0,64.613-7.371,92.792-14.551c1.01,3.414,2.384,6.671,4.083,9.724c-25.009,14.852-55.645,35.049-75.946,55.351\r\n\t\tc-39.547,39.548-52.023,68.459-40.44,80.043c11.584,11.584,40.495-0.895,80.042-40.441c20.323-20.323,40.542-51.001,55.398-76.024\r\n\t\tc3.053,1.671,6.31,3.01,9.718,3.995c-7.192,28.203-14.592,64.207-14.592,92.959c0,55.929,11.62,84.693,28.002,84.693\r\n\t\ts28.002-28.766,28.002-84.693c0-28.752-7.4-64.756-14.592-92.959c3.408-0.985,6.665-2.324,9.718-3.995\r\n\t\tc14.855,25.023,35.073,55.701,55.399,76.025c39.547,39.547,68.457,52.024,80.041,40.44s-0.894-40.495-40.439-80.043\r\n\t\tc-20.304-20.302-50.938-40.499-75.947-55.351c1.699-3.053,3.073-6.31,4.083-9.724c28.18,7.18,64.096,14.551,92.792,14.551\r\n\t\tc55.929,0,84.943-11.62,84.943-28.002S450.984,228.247,395.057,228.247z"},"children":[{"name":"path","attribs":{"d":"M395.057,228.247c-28.651,0-64.502,7.35-92.66,14.518c-0.98-3.443-2.321-6.734-4.001-9.817\r\n\t\tc24.97-14.84,55.487-34.98,75.733-55.224c39.547-39.547,52.023-68.458,40.44-80.042c-11.584-11.583-40.495,0.893-80.042,40.44\r\n\t\tc-20.225,20.225-40.343,50.698-55.178,75.654c-3.082-1.708-6.373-3.083-9.822-4.089c7.156-28.133,14.475-63.897,14.475-92.492\r\n\t\tC284.002,61.266,272.382,32,256,32s-28.002,29.266-28.002,85.194c0,28.595,7.319,64.359,14.475,92.492\r\n\t\tc-3.449,1.006-6.74,2.381-9.822,4.089c-14.835-24.956-34.953-55.43-55.176-75.653c-39.548-39.547-68.458-52.024-80.042-40.44\r\n\t\tc-11.584,11.583,0.894,40.494,40.44,80.041c20.246,20.244,50.762,40.384,75.732,55.224c-1.68,3.083-3.021,6.374-4.001,9.817\r\n\t\tc-28.158-7.168-64.008-14.518-92.659-14.518C61.016,228.247,32,239.618,32,256s29.016,28.252,84.944,28.252\r\n\t\tc28.697,0,64.613-7.371,92.792-14.551c1.01,3.414,2.384,6.671,4.083,9.724c-25.009,14.852-55.645,35.049-75.946,55.351\r\n\t\tc-39.547,39.548-52.023,68.459-40.44,80.043c11.584,11.584,40.495-0.895,80.042-40.441c20.323-20.323,40.542-51.001,55.398-76.024\r\n\t\tc3.053,1.671,6.31,3.01,9.718,3.995c-7.192,28.203-14.592,64.207-14.592,92.959c0,55.929,11.62,84.693,28.002,84.693\r\n\t\ts28.002-28.766,28.002-84.693c0-28.752-7.4-64.756-14.592-92.959c3.408-0.985,6.665-2.324,9.718-3.995\r\n\t\tc14.855,25.023,35.073,55.701,55.399,76.025c39.547,39.547,68.457,52.024,80.041,40.44s-0.894-40.495-40.439-80.043\r\n\t\tc-20.304-20.302-50.938-40.499-75.947-55.351c1.699-3.053,3.073-6.31,4.083-9.724c28.18,7.18,64.096,14.551,92.792,14.551\r\n\t\tc55.929,0,84.943-11.62,84.943-28.002S450.984,228.247,395.057,228.247z"},"children":[]}]},{"name":"path","attribs":{"d":"M296.467,353.945c0,0,7.031,41.059,1.854,75.946c11.678,21.779,26.139,35.253,36.643,35.253\r\n\t\tc1.749,0,3.432-0.324,5.042-0.976c11.874-4.797,14.385-24.984,4.855-58.491C320.331,388.004,296.467,353.945,296.467,353.945z"},"children":[{"name":"path","attribs":{"d":"M296.467,353.945c0,0,7.031,41.059,1.854,75.946c11.678,21.779,26.139,35.253,36.643,35.253\r\n\t\tc1.749,0,3.432-0.324,5.042-0.976c11.874-4.797,14.385-24.984,4.855-58.491C320.331,388.004,296.467,353.945,296.467,353.945z"},"children":[]}]},{"name":"path","attribs":{"d":"M215.497,158.32c0,0-7.747-40.82-1.818-75.712c-13.292-23.51-26.139-35.255-36.644-35.255\r\n\t\tc-1.749,0-3.431,0.325-5.042,0.976c-11.868,4.795-14.497,23.211-4.87,58.441C188.375,122.75,215.497,158.32,215.497,158.32z"},"children":[{"name":"path","attribs":{"d":"M215.497,158.32c0,0-7.747-40.82-1.818-75.712c-13.292-23.51-26.139-35.255-36.644-35.255\r\n\t\tc-1.749,0-3.431,0.325-5.042,0.976c-11.868,4.795-14.497,23.211-4.87,58.441C188.375,122.75,215.497,158.32,215.497,158.32z"},"children":[]}]},{"name":"path","attribs":{"d":"M158.306,296.717c0,0-41.308,6.119-75.949,1.852c-27.422,15.505-38.836,30.402-34.277,41.687\r\n\t\tc2.806,6.944,10.913,10.675,23.842,10.675c9.182,0,22.434-1.559,34.672-5.826C123.999,321.17,158.306,296.717,158.306,296.717z"},"children":[{"name":"path","attribs":{"d":"M158.306,296.717c0,0-41.308,6.119-75.949,1.852c-27.422,15.505-38.836,30.402-34.277,41.687\r\n\t\tc2.806,6.944,10.913,10.675,23.842,10.675c9.182,0,22.434-1.559,34.672-5.826C123.999,321.17,158.306,296.717,158.306,296.717z"},"children":[]}]},{"name":"path","attribs":{"d":"M353.723,215.779c0,0,40.778-7.28,75.918-1.849c27.424-15.504,38.838-30.402,34.279-41.685\r\n\t\tc-2.806-6.945-10.914-10.675-23.844-10.675c-9.178,0-21.4,1.715-34.654,5.822C387.334,191.166,353.723,215.779,353.723,215.779z"},"children":[{"name":"path","attribs":{"d":"M353.723,215.779c0,0,40.778-7.28,75.918-1.849c27.424-15.504,38.838-30.402,34.279-41.685\r\n\t\tc-2.806-6.945-10.914-10.675-23.844-10.675c-9.178,0-21.4,1.715-34.654,5.822C387.334,191.166,353.723,215.779,353.723,215.779z"},"children":[]}]},{"name":"path","attribs":{"d":"M163.135,408.98c-8.42,30.34-5.956,48.938,5.244,53.69c1.674,0.711,3.437,1.066,5.275,1.066\r\n\t\tc11.107,0,24.698-13.124,39.528-39.015c-4.184-32.22,2.351-70.779,2.351-70.779S193.999,385.336,163.135,408.98z"},"children":[{"name":"path","attribs":{"d":"M163.135,408.98c-8.42,30.34-5.956,48.938,5.244,53.69c1.674,0.711,3.437,1.066,5.275,1.066\r\n\t\tc11.107,0,24.698-13.124,39.528-39.015c-4.184-32.22,2.351-70.779,2.351-70.779S193.999,385.336,163.135,408.98z"},"children":[]}]},{"name":"path","attribs":{"d":"M348.77,103.87c8.397-31.87,6.096-49.271-5.147-54.044c-1.674-0.71-3.438-1.066-5.274-1.066\r\n\t\tc-11.105,0-26.207,14.287-39.527,39.013c4.514,22.894-2.393,71.053-2.393,71.053S319.667,124.5,348.77,103.87z"},"children":[{"name":"path","attribs":{"d":"M348.77,103.87c8.397-31.87,6.096-49.271-5.147-54.044c-1.674-0.71-3.438-1.066-5.274-1.066\r\n\t\tc-11.105,0-26.207,14.287-39.527,39.013c4.514,22.894-2.393,71.053-2.393,71.053S319.667,124.5,348.77,103.87z"},"children":[]}]},{"name":"path","attribs":{"d":"M87.524,213.432c29.726-3.932,70.688,2.336,70.688,2.336S121,187.067,103.209,163.367\r\n\t\tC93,159.5,80.717,158.366,72.457,158.366c-12.267,0-20.042,3.573-22.881,10.261C44.572,180.419,59.546,198.612,87.524,213.432z"},"children":[{"name":"path","attribs":{"d":"M87.524,213.432c29.726-3.932,70.688,2.336,70.688,2.336S121,187.067,103.209,163.367\r\n\t\tC93,159.5,80.717,158.366,72.457,158.366c-12.267,0-20.042,3.573-22.881,10.261C44.572,180.419,59.546,198.612,87.524,213.432z"},"children":[]}]},{"name":"path","attribs":{"d":"M424.477,299.066c-25.307,5.6-70.78-2.35-70.78-2.35s34.638,25.615,55.014,52.393c11.959,4.223,22.555,5.022,30.833,5.022\r\n\t\tc12.266,0,20.041-3.573,22.88-10.261C467.428,332.08,454.283,315.801,424.477,299.066z"},"children":[{"name":"path","attribs":{"d":"M424.477,299.066c-25.307,5.6-70.78-2.35-70.78-2.35s34.638,25.615,55.014,52.393c11.959,4.223,22.555,5.022,30.833,5.022\r\n\t\tc12.266,0,20.041-3.573,22.88-10.261C467.428,332.08,454.283,315.801,424.477,299.066z"},"children":[]}]}]}]};exports.iosFlower=iosFlower;var iosFolderOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M457,96H215c-2.791,0-4.271-0.585-6.094-2.408l-22.501-22.501l-0.168-0.162C181.365,66.333,177.361,64,169,64H57\r\n\tc-13.785,0-25,10.317-25,23v336c0,13.317,11.683,25,25,25h400c12.683,0,23-11.215,23-25V119C480,105.673,470.327,96,457,96z M57,80\r\n\th112c3.497,0,3.737,0.189,6.175,2.488l22.417,22.418c4.84,4.84,10.372,7.094,17.408,7.094h242c4.448,0,7,2.552,7,7v42.376\r\n\tc-2.504-0.888-5.195-1.376-8-1.376H56c-2.805,0-5.496,0.488-8,1.376V87C48,82.677,52.672,80,57,80z M464,423c0,4.328-2.677,9-7,9H57\r\n\tc-4.458,0-9-4.542-9-9V184c0-4.411,3.589-8,8-8h400c4.411,0,8,3.589,8,8V423z"},"children":[]}]};exports.iosFolderOutline=iosFolderOutline;var iosFolder={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M472,176H40c-4.411,0-8,3.589-8,8v239c0,13.317,11.683,25,25,25h400c12.683,0,23-11.215,23-25V184\r\n\t\tC480,179.589,476.411,176,472,176z"},"children":[{"name":"path","attribs":{"d":"M472,176H40c-4.411,0-8,3.589-8,8v239c0,13.317,11.683,25,25,25h400c12.683,0,23-11.215,23-25V184\r\n\t\tC480,179.589,476.411,176,472,176z"},"children":[]}]},{"name":"path","attribs":{"d":"M457,96H215c-2.791,0-4.271-0.585-6.094-2.408l-22.501-22.501l-0.168-0.162C181.365,66.333,177.361,64,169,64H57\r\n\t\tc-13.785,0-25,10.317-25,23v74.376c2.504-0.888,5.195-1.376,8-1.376h432c2.805,0,5.496,0.488,8,1.376V119\r\n\t\tC480,105.673,470.327,96,457,96z"},"children":[{"name":"path","attribs":{"d":"M457,96H215c-2.791,0-4.271-0.585-6.094-2.408l-22.501-22.501l-0.168-0.162C181.365,66.333,177.361,64,169,64H57\r\n\t\tc-13.785,0-25,10.317-25,23v74.376c2.504-0.888,5.195-1.376,8-1.376h432c2.805,0,5.496,0.488,8,1.376V119\r\n\t\tC480,105.673,470.327,96,457,96z"},"children":[]}]}]}]};exports.iosFolder=iosFolder;var iosFootballOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,48C141.137,48,48,141.136,48,256c0,114.864,93.137,208,208,208c114.872,0,208-93.138,208-208\r\n\tC464,141.138,370.87,48,256,48z M297.151,442.179c-13.514,2.657-30.327,4.187-44,4.45c-13.198-0.195-26.074-1.735-38.5-4.493\r\n\tc-2.144-0.549-4.383-1.138-6.805-1.777l-24.417-65.435L203.074,336h105.854l0.57,1.076l19.34,38.852L305.22,440.21\r\n\tC302.553,440.924,299.862,441.579,297.151,442.179z M89.317,163.522l18.188,52.284l0.175,0.504L65.376,252.92\r\n\tC65.892,220.535,74.52,190.088,89.317,163.522z M189.578,77.28L247,116.576v58.147l-70.997,60.067L126.6,212.28l-4.167-1.899\r\n\tl-22.332-64.019C122.11,115.158,153.239,90.83,189.578,77.28z M325.025,247.206l0.921,0.765L307.569,320H204.431l-18.485-72.453\r\n\tl0.445-0.376l68.873-58.27L325.025,247.206z M446.626,252.921l-42.454-36.738l0.127-0.364l18.298-52.451\r\n\tC437.447,189.972,446.109,220.473,446.626,252.921z M411.564,146.067l-22.432,64.483l-53.992,24.388L264,174.723v-58.147\r\n\tl57.596-39.415C357.958,90.644,389.501,114.913,411.564,146.067z M66.144,273.414l53.756-46.518l49.539,22.599l0.559,0.255\r\n\tl19.718,77.287l-20.433,38.529l-69.86-0.915C81.075,338.291,69.209,307.105,66.144,273.414z M342.719,365.565l-20.434-38.529\r\n\tl19.752-77.416l49.997-22.781l53.822,46.575c-3.065,33.691-14.932,64.877-33.277,91.236L342.719,365.565z M255.257,102.67\r\n\tl-46.126-31.498c15-3.806,30.701-5.836,46.869-5.835c15.961,0,31.466,1.982,46.293,5.694L255.257,102.67z M166.423,381.529\r\n\tl0.848,2.511l19.946,49.781c-29.239-11.351-55.011-29.704-75.232-53.006L166.423,381.529z M324.563,433.904l17.934-48.608\r\n\tl1.627-3.748l55.892-0.732C379.744,404.175,353.893,422.562,324.563,433.904z"},"children":[]}]};exports.iosFootballOutline=iosFootballOutline;var iosFootball={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,48C141.137,48,48,141.136,48,256c0,114.864,93.137,208,208,208c114.872,0,208-93.138,208-208\r\n\tC464,141.138,370.87,48,256,48z M297.151,442.179c-13.514,2.657-30.327,4.187-44,4.45c-13.198-0.195-26.074-1.735-38.5-4.493\r\n\tc-2.144-0.549-4.383-1.138-6.805-1.777l-24.417-65.435L203.074,336h105.854l0.57,1.076l19.34,38.852L305.22,440.21\r\n\tC302.553,440.924,299.862,441.579,297.151,442.179z M189.578,77.28L247,116.576v58.147l-70.997,60.067L126.6,212.28l-4.167-1.899\r\n\tl-22.332-64.019C122.11,115.158,153.239,90.83,189.578,77.28z M411.564,146.067l-22.432,64.483l-53.992,24.388L264,174.723v-58.147\r\n\tl57.596-39.415C357.958,90.644,389.501,114.913,411.564,146.067z M66.144,273.414l53.756-46.518l49.539,22.599l0.559,0.255\r\n\tl19.718,77.287l-20.433,38.529l-69.86-0.915C81.075,338.291,69.209,307.105,66.144,273.414z M342.719,365.565l-20.434-38.529\r\n\tl19.752-77.416l49.997-22.781l53.822,46.575c-3.065,33.691-14.932,64.877-33.277,91.236L342.719,365.565z"},"children":[]}]};exports.iosFootball=iosFootball;var iosGameControllerAOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M194.822,240H160v-34.762c0-2.817-2.604-5.238-5.303-5.238h-22.145c-2.698,0-4.552,2.372-4.552,5.178V240H92.533\r\n\t\t\tc-2.615,0-4.533,2.143-4.533,4.771v21.427c0,2.698,2.031,5.803,4.861,5.803H128v35.467c0,2.615,2.143,4.533,4.771,4.533h21.427\r\n\t\t\tc2.698,0,5.803-2.031,5.803-4.861V272h34.762c2.817,0,5.238-2.604,5.238-5.303v-22.145C200,241.854,197.628,240,194.822,240z"},"children":[{"name":"path","attribs":{"d":"M194.822,240H160v-34.762c0-2.817-2.604-5.238-5.303-5.238h-22.145c-2.698,0-4.552,2.372-4.552,5.178V240H92.533\r\n\t\t\tc-2.615,0-4.533,2.143-4.533,4.771v21.427c0,2.698,2.031,5.803,4.861,5.803H128v35.467c0,2.615,2.143,4.533,4.771,4.533h21.427\r\n\t\t\tc2.698,0,5.803-2.031,5.803-4.861V272h34.762c2.817,0,5.238-2.604,5.238-5.303v-22.145C200,241.854,197.628,240,194.822,240z"},"children":[]}]},{"name":"path","attribs":{"d":"M362.314,279.063c-10.736,0-19.451,8.515-19.451,19.153c0,10.555,8.715,19.084,19.451,19.084\r\n\t\t\tc10.783,0,19.498-8.529,19.498-19.084C381.812,287.578,373.098,279.063,362.314,279.063z"},"children":[{"name":"path","attribs":{"d":"M362.314,279.063c-10.736,0-19.451,8.515-19.451,19.153c0,10.555,8.715,19.084,19.451,19.084\r\n\t\t\tc10.783,0,19.498-8.529,19.498-19.084C381.812,287.578,373.098,279.063,362.314,279.063z"},"children":[]}]},{"name":"path","attribs":{"d":"M319.766,237.165c-10.736,0-19.451,8.603-19.451,19.168c0,10.566,8.715,19.153,19.451,19.153\r\n\t\t\tc10.783,0,19.498-8.587,19.498-19.153C339.264,245.768,330.549,237.165,319.766,237.165z"},"children":[{"name":"path","attribs":{"d":"M319.766,237.165c-10.736,0-19.451,8.603-19.451,19.168c0,10.566,8.715,19.153,19.451,19.153\r\n\t\t\tc10.783,0,19.498-8.587,19.498-19.153C339.264,245.768,330.549,237.165,319.766,237.165z"},"children":[]}]},{"name":"path","attribs":{"d":"M404.862,237.165c-10.729,0-19.442,8.603-19.442,19.168c0,10.566,8.714,19.153,19.442,19.153\r\n\t\t\tc10.737,0,19.452-8.587,19.452-19.153C424.314,245.768,415.6,237.165,404.862,237.165z"},"children":[{"name":"path","attribs":{"d":"M404.862,237.165c-10.729,0-19.442,8.603-19.442,19.168c0,10.566,8.714,19.153,19.442,19.153\r\n\t\t\tc10.737,0,19.452-8.587,19.452-19.153C424.314,245.768,415.6,237.165,404.862,237.165z"},"children":[]}]},{"name":"path","attribs":{"d":"M362.314,195.301c-10.736,0-19.451,8.602-19.451,19.169c0,10.566,8.715,19.146,19.451,19.146\r\n\t\t\tc10.783,0,19.498-8.579,19.498-19.146C381.812,203.902,373.098,195.301,362.314,195.301z"},"children":[{"name":"path","attribs":{"d":"M362.314,195.301c-10.736,0-19.451,8.602-19.451,19.169c0,10.566,8.715,19.146,19.451,19.146\r\n\t\t\tc10.783,0,19.498-8.579,19.498-19.146C381.812,203.902,373.098,195.301,362.314,195.301z"},"children":[]}]}]}]},{"name":"path","attribs":{"d":"M369.269,162c25.838,0,49.704,9.314,67.204,26.229C454.225,205.386,464,229.247,464,255.418\r\n\t\tc0,26.303-9.806,50.405-27.611,67.869c-17.563,17.226-41.4,26.713-67.12,26.713H142.739c-25.712,0-49.548-9.487-67.117-26.715\r\n\t\tC57.81,305.818,48,281.717,48,255.418c0-26.167,9.78-50.028,27.539-67.188C93.043,171.315,116.909,162,142.739,162H369.269\r\n\t\t M369.269,146H142.739C81.541,146,32,191.458,32,255.418C32,319.419,81.541,366,142.739,366h226.529\r\n\t\tC430.49,366,480,319.419,480,255.418C480,191.458,430.49,146,369.269,146L369.269,146z"},"children":[{"name":"path","attribs":{"d":"M369.269,162c25.838,0,49.704,9.314,67.204,26.229C454.225,205.386,464,229.247,464,255.418\r\n\t\tc0,26.303-9.806,50.405-27.611,67.869c-17.563,17.226-41.4,26.713-67.12,26.713H142.739c-25.712,0-49.548-9.487-67.117-26.715\r\n\t\tC57.81,305.818,48,281.717,48,255.418c0-26.167,9.78-50.028,27.539-67.188C93.043,171.315,116.909,162,142.739,162H369.269\r\n\t\t M369.269,146H142.739C81.541,146,32,191.458,32,255.418C32,319.419,81.541,366,142.739,366h226.529\r\n\t\tC430.49,366,480,319.419,480,255.418C480,191.458,430.49,146,369.269,146L369.269,146z"},"children":[]}]}]}]};exports.iosGameControllerAOutline=iosGameControllerAOutline;var iosGameControllerA={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M369.269,146H142.739C81.541,146,32,191.458,32,255.418C32,319.419,81.541,366,142.739,366h226.529\r\n\t\tC430.49,366,480,319.419,480,255.418C480,191.458,430.49,146,369.269,146z M200,266.697c0,2.698-2.421,5.303-5.238,5.303H160\r\n\t\tv35.139c0,2.83-3.104,4.861-5.803,4.861h-21.427c-2.628,0-4.771-1.918-4.771-4.533V272H92.861c-2.83,0-4.861-3.104-4.861-5.803\r\n\t\tv-21.427c0-2.628,1.918-4.771,4.533-4.771H128v-34.822c0-2.806,1.854-5.178,4.553-5.178h22.145c2.698,0,5.303,2.421,5.303,5.238\r\n\t\tV240h34.822c2.806,0,5.178,1.854,5.178,4.553V266.697z M319.766,275.486c-10.736,0-19.451-8.587-19.451-19.153\r\n\t\tc0-10.565,8.715-19.168,19.451-19.168c10.783,0,19.498,8.603,19.498,19.168C339.264,266.899,330.549,275.486,319.766,275.486z\r\n\t\t M362.314,317.301c-10.736,0-19.451-8.529-19.451-19.084c0-10.639,8.715-19.153,19.451-19.153c10.783,0,19.498,8.515,19.498,19.153\r\n\t\tC381.812,308.771,373.098,317.301,362.314,317.301z M362.314,233.615c-10.736,0-19.451-8.579-19.451-19.146\r\n\t\tc0-10.567,8.715-19.169,19.451-19.169c10.783,0,19.498,8.602,19.498,19.169C381.812,225.036,373.098,233.615,362.314,233.615z\r\n\t\t M404.862,275.486c-10.729,0-19.442-8.587-19.442-19.153c0-10.565,8.714-19.168,19.442-19.168c10.737,0,19.452,8.603,19.452,19.168\r\n\t\tC424.314,266.899,415.6,275.486,404.862,275.486z"},"children":[{"name":"path","attribs":{"d":"M369.269,146H142.739C81.541,146,32,191.458,32,255.418C32,319.419,81.541,366,142.739,366h226.529\r\n\t\tC430.49,366,480,319.419,480,255.418C480,191.458,430.49,146,369.269,146z M200,266.697c0,2.698-2.421,5.303-5.238,5.303H160\r\n\t\tv35.139c0,2.83-3.104,4.861-5.803,4.861h-21.427c-2.628,0-4.771-1.918-4.771-4.533V272H92.861c-2.83,0-4.861-3.104-4.861-5.803\r\n\t\tv-21.427c0-2.628,1.918-4.771,4.533-4.771H128v-34.822c0-2.806,1.854-5.178,4.553-5.178h22.145c2.698,0,5.303,2.421,5.303,5.238\r\n\t\tV240h34.822c2.806,0,5.178,1.854,5.178,4.553V266.697z M319.766,275.486c-10.736,0-19.451-8.587-19.451-19.153\r\n\t\tc0-10.565,8.715-19.168,19.451-19.168c10.783,0,19.498,8.603,19.498,19.168C339.264,266.899,330.549,275.486,319.766,275.486z\r\n\t\t M362.314,317.301c-10.736,0-19.451-8.529-19.451-19.084c0-10.639,8.715-19.153,19.451-19.153c10.783,0,19.498,8.515,19.498,19.153\r\n\t\tC381.812,308.771,373.098,317.301,362.314,317.301z M362.314,233.615c-10.736,0-19.451-8.579-19.451-19.146\r\n\t\tc0-10.567,8.715-19.169,19.451-19.169c10.783,0,19.498,8.602,19.498,19.169C381.812,225.036,373.098,233.615,362.314,233.615z\r\n\t\t M404.862,275.486c-10.729,0-19.442-8.587-19.442-19.153c0-10.565,8.714-19.168,19.442-19.168c10.737,0,19.452,8.603,19.452,19.168\r\n\t\tC424.314,266.899,415.6,275.486,404.862,275.486z"},"children":[]}]}]}]};exports.iosGameControllerA=iosGameControllerA;var iosGameControllerBOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M308.076,203.929c-11.058,0-20.076,9.014-20.076,20.104c0,11.089,9.019,20.107,20.076,20.107\r\n\t\t\tc11.131,0,20.148-9.019,20.148-20.107C328.225,212.942,319.207,203.929,308.076,203.929z"},"children":[{"name":"path","attribs":{"d":"M308.076,203.929c-11.058,0-20.076,9.014-20.076,20.104c0,11.089,9.019,20.107,20.076,20.107\r\n\t\t\tc11.131,0,20.148-9.019,20.148-20.107C328.225,212.942,319.207,203.929,308.076,203.929z"},"children":[]}]},{"name":"path","attribs":{"d":"M351.988,247.878c-11.058,0-20.053,8.949-20.053,20.106c0,11.064,8.995,20.016,20.053,20.016\r\n\t\t\tc11.146,0,20.148-8.951,20.148-20.016C372.137,256.827,363.134,247.878,351.988,247.878z"},"children":[{"name":"path","attribs":{"d":"M351.988,247.878c-11.058,0-20.053,8.949-20.053,20.106c0,11.064,8.995,20.016,20.053,20.016\r\n\t\t\tc11.146,0,20.148-8.951,20.148-20.016C372.137,256.827,363.134,247.878,351.988,247.878z"},"children":[]}]},{"name":"path","attribs":{"d":"M135.234,184.367C113.594,184.367,96,202.17,96,224.01c0,21.865,17.594,39.623,39.234,39.623\r\n\t\t\tc21.655,0,39.249-17.758,39.249-39.623C174.483,202.17,156.89,184.367,135.234,184.367z M135.123,243.457\r\n\t\t\tc-10.688,0-19.343-8.721-19.343-19.447c0-10.725,8.655-19.441,19.343-19.441c10.641,0,19.297,8.717,19.297,19.441\r\n\t\t\tC154.42,234.736,145.764,243.457,135.123,243.457z"},"children":[{"name":"path","attribs":{"d":"M135.234,184.367C113.594,184.367,96,202.17,96,224.01c0,21.865,17.594,39.623,39.234,39.623\r\n\t\t\tc21.655,0,39.249-17.758,39.249-39.623C174.483,202.17,156.89,184.367,135.234,184.367z M135.123,243.457\r\n\t\t\tc-10.688,0-19.343-8.721-19.343-19.447c0-10.725,8.655-19.441,19.343-19.441c10.641,0,19.297,8.717,19.297,19.441\r\n\t\t\tC154.42,234.736,145.764,243.457,135.123,243.457z"},"children":[]}]},{"name":"path","attribs":{"d":"M351.988,160c-11.058,0-20.053,9.014-20.053,20.107c0,11.09,8.995,20.083,20.053,20.083\r\n\t\t\tc11.146,0,20.148-8.993,20.148-20.083C372.137,169.014,363.134,160,351.988,160z"},"children":[{"name":"path","attribs":{"d":"M351.988,160c-11.058,0-20.053,9.014-20.053,20.107c0,11.09,8.995,20.083,20.053,20.083\r\n\t\t\tc11.146,0,20.148-8.993,20.148-20.083C372.137,169.014,363.134,160,351.988,160z"},"children":[]}]},{"name":"path","attribs":{"d":"M395.947,203.929c-11.105,0-20.101,9.014-20.101,20.104c0,11.089,8.995,20.107,20.101,20.107\r\n\t\t\tc11.059,0,20.053-9.019,20.053-20.107C416,212.942,407.006,203.929,395.947,203.929z"},"children":[{"name":"path","attribs":{"d":"M395.947,203.929c-11.105,0-20.101,9.014-20.101,20.104c0,11.089,8.995,20.107,20.101,20.107\r\n\t\t\tc11.059,0,20.053-9.019,20.053-20.107C416,212.942,407.006,203.929,395.947,203.929z"},"children":[]}]}]}]},{"name":"path","attribs":{"d":"M466.279,248.866c-21.157-88.471-43.631-135.489-88.454-148.83C368.06,97.135,359.748,96,352.076,96\r\n\t\tc-27.598,0-46.938,14.683-96.08,14.683c-49.174,0-68.502-14.681-96.062-14.683c-7.665,0-15.963,1.135-25.721,4.036\r\n\t\tc-44.869,13.341-67.342,60.359-88.461,148.83c-21.181,88.473-17.334,152.363,7.679,164.289C57.502,415.1,61.662,416,65.885,416\r\n\t\tc21.694,0,45.139-23.838,67.659-52.047C159.198,331.848,165.658,331,243.822,331h24.343c78.147,0,84.628,0.846,110.282,32.953\r\n\t\tc22.526,28.207,45.97,52.004,67.665,52.004c4.226,0,8.384-0.879,12.457-2.823C483.574,401.208,487.421,337.339,466.279,248.866z\r\n\t\t M451.677,398.716c-1.835,0.876-3.604,1.284-5.564,1.284c-6.022,0-14.077-4.049-23.295-11.708\r\n\t\tc-9.181-7.63-19.307-18.509-31.87-34.239c-12.959-16.22-23.667-28.229-43.528-33.949c-16.647-4.793-38.624-5.104-79.254-5.104\r\n\t\th-24.343c-40.633,0-62.611,0.311-79.259,5.105c-19.853,5.719-30.56,17.685-43.523,33.908\r\n\t\tc-12.556,15.727-22.68,26.627-31.862,34.258c-9.216,7.658-17.27,11.718-23.293,11.718c-1.932,0-3.751-0.415-5.568-1.282\r\n\t\tc-9.556-4.557-22.572-47.673,0.998-146.129c21.387-89.591,42.381-126.777,77.459-137.207c7.633-2.27,14.554-3.372,21.159-3.372\r\n\t\tc9.742,0,18.599,2.317,29.812,5.249c16.07,4.203,36.072,9.435,66.252,9.435c30.148,0,50.146-5.228,66.215-9.429\r\n\t\tc11.229-2.936,20.1-5.254,29.865-5.254c6.618,0,13.551,1.104,21.185,3.371c35.037,10.428,56.03,47.617,77.456,137.214\r\n\t\tC474.244,351.041,461.23,394.16,451.677,398.716z"},"children":[{"name":"path","attribs":{"d":"M466.279,248.866c-21.157-88.471-43.631-135.489-88.454-148.83C368.06,97.135,359.748,96,352.076,96\r\n\t\tc-27.598,0-46.938,14.683-96.08,14.683c-49.174,0-68.502-14.681-96.062-14.683c-7.665,0-15.963,1.135-25.721,4.036\r\n\t\tc-44.869,13.341-67.342,60.359-88.461,148.83c-21.181,88.473-17.334,152.363,7.679,164.289C57.502,415.1,61.662,416,65.885,416\r\n\t\tc21.694,0,45.139-23.838,67.659-52.047C159.198,331.848,165.658,331,243.822,331h24.343c78.147,0,84.628,0.846,110.282,32.953\r\n\t\tc22.526,28.207,45.97,52.004,67.665,52.004c4.226,0,8.384-0.879,12.457-2.823C483.574,401.208,487.421,337.339,466.279,248.866z\r\n\t\t M451.677,398.716c-1.835,0.876-3.604,1.284-5.564,1.284c-6.022,0-14.077-4.049-23.295-11.708\r\n\t\tc-9.181-7.63-19.307-18.509-31.87-34.239c-12.959-16.22-23.667-28.229-43.528-33.949c-16.647-4.793-38.624-5.104-79.254-5.104\r\n\t\th-24.343c-40.633,0-62.611,0.311-79.259,5.105c-19.853,5.719-30.56,17.685-43.523,33.908\r\n\t\tc-12.556,15.727-22.68,26.627-31.862,34.258c-9.216,7.658-17.27,11.718-23.293,11.718c-1.932,0-3.751-0.415-5.568-1.282\r\n\t\tc-9.556-4.557-22.572-47.673,0.998-146.129c21.387-89.591,42.381-126.777,77.459-137.207c7.633-2.27,14.554-3.372,21.159-3.372\r\n\t\tc9.742,0,18.599,2.317,29.812,5.249c16.07,4.203,36.072,9.435,66.252,9.435c30.148,0,50.146-5.228,66.215-9.429\r\n\t\tc11.229-2.936,20.1-5.254,29.865-5.254c6.618,0,13.551,1.104,21.185,3.371c35.037,10.428,56.03,47.617,77.456,137.214\r\n\t\tC474.244,351.041,461.23,394.16,451.677,398.716z"},"children":[]}]}]}]};exports.iosGameControllerBOutline=iosGameControllerBOutline;var iosGameControllerB={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M135.123,204.568c-10.688,0-19.343,8.717-19.343,19.441c0,10.727,8.655,19.447,19.343,19.447\r\n\t\tc10.641,0,19.297-8.721,19.297-19.447C154.42,213.285,145.764,204.568,135.123,204.568z"},"children":[{"name":"path","attribs":{"d":"M135.123,204.568c-10.688,0-19.343,8.717-19.343,19.441c0,10.727,8.655,19.447,19.343,19.447\r\n\t\tc10.641,0,19.297-8.721,19.297-19.447C154.42,213.285,145.764,204.568,135.123,204.568z"},"children":[]}]},{"name":"path","attribs":{"d":"M466.279,248.866c-21.157-88.471-43.631-135.489-88.454-148.83C368.06,97.135,359.748,96,352.076,96\r\n\t\tc-27.598,0-46.938,14.683-96.08,14.683c-49.174,0-68.502-14.681-96.062-14.683c-7.665,0-15.963,1.135-25.721,4.036\r\n\t\tc-44.869,13.341-67.342,60.359-88.461,148.83c-21.181,88.473-17.334,152.363,7.679,164.289C57.502,415.1,61.662,416,65.885,416\r\n\t\tc21.694,0,45.139-23.838,67.659-52.047C159.198,331.848,165.658,331,243.822,331h24.343c78.147,0,84.628,0.846,110.282,32.953\r\n\t\tc22.526,28.207,45.97,52.004,67.665,52.004c4.226,0,8.384-0.879,12.457-2.823C483.574,401.208,487.421,337.339,466.279,248.866z\r\n\t\t M135.234,263.633C113.594,263.633,96,245.875,96,224.01c0-21.84,17.594-39.643,39.234-39.643\r\n\t\tc21.655,0,39.249,17.803,39.249,39.643C174.483,245.875,156.89,263.633,135.234,263.633z M308.076,244.14\r\n\t\tc-11.058,0-20.076-9.019-20.076-20.107c0-11.09,9.019-20.104,20.076-20.104c11.131,0,20.148,9.014,20.148,20.104\r\n\t\tC328.225,235.121,319.207,244.14,308.076,244.14z M351.988,288c-11.058,0-20.053-8.951-20.053-20.016\r\n\t\tc0-11.157,8.995-20.106,20.053-20.106c11.146,0,20.148,8.949,20.148,20.106C372.137,279.049,363.134,288,351.988,288z\r\n\t\t M351.988,200.19c-11.058,0-20.053-8.993-20.053-20.083c0-11.094,8.995-20.107,20.053-20.107c11.146,0,20.148,9.014,20.148,20.107\r\n\t\tC372.137,191.197,363.134,200.19,351.988,200.19z M395.947,244.14c-11.105,0-20.101-9.019-20.101-20.107\r\n\t\tc0-11.09,8.995-20.104,20.101-20.104c11.059,0,20.053,9.014,20.053,20.104C416,235.121,407.006,244.14,395.947,244.14z"},"children":[{"name":"path","attribs":{"d":"M466.279,248.866c-21.157-88.471-43.631-135.489-88.454-148.83C368.06,97.135,359.748,96,352.076,96\r\n\t\tc-27.598,0-46.938,14.683-96.08,14.683c-49.174,0-68.502-14.681-96.062-14.683c-7.665,0-15.963,1.135-25.721,4.036\r\n\t\tc-44.869,13.341-67.342,60.359-88.461,148.83c-21.181,88.473-17.334,152.363,7.679,164.289C57.502,415.1,61.662,416,65.885,416\r\n\t\tc21.694,0,45.139-23.838,67.659-52.047C159.198,331.848,165.658,331,243.822,331h24.343c78.147,0,84.628,0.846,110.282,32.953\r\n\t\tc22.526,28.207,45.97,52.004,67.665,52.004c4.226,0,8.384-0.879,12.457-2.823C483.574,401.208,487.421,337.339,466.279,248.866z\r\n\t\t M135.234,263.633C113.594,263.633,96,245.875,96,224.01c0-21.84,17.594-39.643,39.234-39.643\r\n\t\tc21.655,0,39.249,17.803,39.249,39.643C174.483,245.875,156.89,263.633,135.234,263.633z M308.076,244.14\r\n\t\tc-11.058,0-20.076-9.019-20.076-20.107c0-11.09,9.019-20.104,20.076-20.104c11.131,0,20.148,9.014,20.148,20.104\r\n\t\tC328.225,235.121,319.207,244.14,308.076,244.14z M351.988,288c-11.058,0-20.053-8.951-20.053-20.016\r\n\t\tc0-11.157,8.995-20.106,20.053-20.106c11.146,0,20.148,8.949,20.148,20.106C372.137,279.049,363.134,288,351.988,288z\r\n\t\t M351.988,200.19c-11.058,0-20.053-8.993-20.053-20.083c0-11.094,8.995-20.107,20.053-20.107c11.146,0,20.148,9.014,20.148,20.107\r\n\t\tC372.137,191.197,363.134,200.19,351.988,200.19z M395.947,244.14c-11.105,0-20.101-9.019-20.101-20.107\r\n\t\tc0-11.09,8.995-20.104,20.101-20.104c11.059,0,20.053,9.014,20.053,20.104C416,235.121,407.006,244.14,395.947,244.14z"},"children":[]}]}]}]};exports.iosGameControllerB=iosGameControllerB;var iosGearOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256.9,159.9c-25.701,0-49.801,10-67.9,28.1s-28.1,42.199-28.1,67.9c0,25.699,10,49.699,28.1,67.9\r\n\t\t\tc18.1,18.1,42.301,28.1,67.9,28.1c25.699,0,49.799-10,67.9-28.1c18.1-18.102,28.1-42.201,28.1-67.9c0-25.701-10-49.701-28.1-67.9\r\n\t\t\tC306.699,169.9,282.6,159.9,256.9,159.9z M256.9,335.9c-44.301,0-80-35.9-80-80c0-44.101,35.699-80,80-80\r\n\t\t\tc44.299,0,80,35.899,80,80C336.9,300,301.199,335.9,256.9,335.9z"},"children":[{"name":"path","attribs":{"d":"M256.9,159.9c-25.701,0-49.801,10-67.9,28.1s-28.1,42.199-28.1,67.9c0,25.699,10,49.699,28.1,67.9\r\n\t\t\tc18.1,18.1,42.301,28.1,67.9,28.1c25.699,0,49.799-10,67.9-28.1c18.1-18.102,28.1-42.201,28.1-67.9c0-25.701-10-49.701-28.1-67.9\r\n\t\t\tC306.699,169.9,282.6,159.9,256.9,159.9z M256.9,335.9c-44.301,0-80-35.9-80-80c0-44.101,35.699-80,80-80\r\n\t\t\tc44.299,0,80,35.899,80,80C336.9,300,301.199,335.9,256.9,335.9z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M201.787,82.828c4.458,6.628,10.119,12.406,16.775,17.069c11.012,7.715,23.957,11.793,37.438,11.793\r\n\t\t\tc13.481,0,26.428-4.078,37.439-11.793c6.654-4.663,12.316-10.441,16.773-17.068c10.326,3.228,20.334,7.378,29.927,12.411\r\n\t\t\tc-1.532,7.84-1.614,15.93-0.203,23.933c2.333,13.235,8.604,25.269,18.133,34.798c12.335,12.336,28.737,19.129,46.185,19.129\r\n\t\t\tc4.242,0,8.424-0.399,12.52-1.195c5.032,9.6,9.181,19.613,12.405,29.947c-6.622,4.46-12.396,10.121-17.054,16.776\r\n\t\t\tc-7.705,11.008-11.777,23.946-11.776,37.418c0,13.467,4.069,26.401,11.768,37.406c4.653,6.651,10.421,12.312,17.036,16.771\r\n\t\t\tc-3.232,10.34-7.387,20.354-12.428,29.957c-4.081-0.789-8.246-1.187-12.472-1.187c-17.448,0-33.85,6.795-46.183,19.131\r\n\t\t\tc-9.515,9.514-15.781,21.527-18.123,34.74c-1.415,7.988-1.343,16.065,0.176,23.895c-9.607,5.04-19.627,9.192-29.967,12.421\r\n\t\t\tc-4.461-6.61-10.121-12.374-16.771-17.022c-11-7.689-23.928-11.754-37.386-11.754c-13.457,0-26.385,4.064-37.385,11.755\r\n\t\t\tc-6.649,4.648-12.31,10.412-16.771,17.021c-10.339-3.228-20.359-7.381-29.966-12.42c1.519-7.829,1.591-15.906,0.176-23.895\r\n\t\t\tc-2.342-13.214-8.608-25.228-18.123-34.741c-12.335-12.336-28.737-19.13-46.185-19.13c-4.226,0-8.39,0.396-12.471,1.187\r\n\t\t\tc-5.04-9.602-9.195-19.618-12.428-29.958c6.615-4.46,12.383-10.119,17.036-16.771c7.699-11.004,11.769-23.939,11.769-37.408\r\n\t\t\tc0-13.471-4.072-26.41-11.777-37.418c-4.658-6.654-10.432-12.316-17.054-16.776c3.225-10.333,7.372-20.346,12.405-29.946\r\n\t\t\tc4.096,0.796,8.277,1.196,12.521,1.196c17.446,0,33.849-6.794,46.185-19.13c9.529-9.53,15.799-21.563,18.133-34.799\r\n\t\t\tc1.411-8.003,1.33-16.093-0.203-23.932C181.455,90.207,191.461,86.057,201.787,82.828 M302.074,64\r\n\t\t\tC294.971,82.529,277.027,95.69,256,95.69c-21.025,0-38.969-13.161-46.073-31.69c-20.466,4.895-39.692,12.973-57.128,23.688\r\n\t\t\tc8.068,18.122,4.682,40.104-10.182,54.97c-9.631,9.631-22.25,14.443-34.87,14.443c-6.854,0-13.706-1.419-20.083-4.255\r\n\t\t\tC76.958,170.284,68.887,189.517,64,209.984c18.51,7.112,31.652,25.049,31.652,46.062c0,21.008-13.133,38.936-31.631,46.054\r\n\t\t\tc4.898,20.466,12.977,39.692,23.693,57.128c6.36-2.821,13.197-4.232,20.031-4.232c12.621,0,25.238,4.812,34.871,14.443\r\n\t\t\tc14.841,14.841,18.238,36.781,10.215,54.889c17.438,10.71,36.664,18.783,57.131,23.673c7.127-18.479,25.046-31.596,46.037-31.596\r\n\t\t\tc20.992,0,38.91,13.115,46.037,31.596c20.468-4.89,39.693-12.964,57.132-23.675c-8.023-18.106-4.626-40.046,10.216-54.887\r\n\t\t\tc9.629-9.632,22.248-14.444,34.868-14.444c6.836,0,13.67,1.411,20.033,4.233c10.716-17.436,18.794-36.662,23.692-57.128\r\n\t\t\tc-18.498-7.118-31.63-25.048-31.63-46.054c-0.001-21.013,13.143-38.948,31.651-46.062c-4.887-20.466-12.957-39.7-23.664-57.139\r\n\t\t\tc-6.375,2.836-13.23,4.254-20.082,4.254c-12.621,0-25.238-4.811-34.871-14.442c-14.863-14.863-18.248-36.846-10.18-54.97\r\n\t\t\tC341.768,76.973,322.54,68.895,302.074,64L302.074,64z"},"children":[{"name":"path","attribs":{"d":"M201.787,82.828c4.458,6.628,10.119,12.406,16.775,17.069c11.012,7.715,23.957,11.793,37.438,11.793\r\n\t\t\tc13.481,0,26.428-4.078,37.439-11.793c6.654-4.663,12.316-10.441,16.773-17.068c10.326,3.228,20.334,7.378,29.927,12.411\r\n\t\t\tc-1.532,7.84-1.614,15.93-0.203,23.933c2.333,13.235,8.604,25.269,18.133,34.798c12.335,12.336,28.737,19.129,46.185,19.129\r\n\t\t\tc4.242,0,8.424-0.399,12.52-1.195c5.032,9.6,9.181,19.613,12.405,29.947c-6.622,4.46-12.396,10.121-17.054,16.776\r\n\t\t\tc-7.705,11.008-11.777,23.946-11.776,37.418c0,13.467,4.069,26.401,11.768,37.406c4.653,6.651,10.421,12.312,17.036,16.771\r\n\t\t\tc-3.232,10.34-7.387,20.354-12.428,29.957c-4.081-0.789-8.246-1.187-12.472-1.187c-17.448,0-33.85,6.795-46.183,19.131\r\n\t\t\tc-9.515,9.514-15.781,21.527-18.123,34.74c-1.415,7.988-1.343,16.065,0.176,23.895c-9.607,5.04-19.627,9.192-29.967,12.421\r\n\t\t\tc-4.461-6.61-10.121-12.374-16.771-17.022c-11-7.689-23.928-11.754-37.386-11.754c-13.457,0-26.385,4.064-37.385,11.755\r\n\t\t\tc-6.649,4.648-12.31,10.412-16.771,17.021c-10.339-3.228-20.359-7.381-29.966-12.42c1.519-7.829,1.591-15.906,0.176-23.895\r\n\t\t\tc-2.342-13.214-8.608-25.228-18.123-34.741c-12.335-12.336-28.737-19.13-46.185-19.13c-4.226,0-8.39,0.396-12.471,1.187\r\n\t\t\tc-5.04-9.602-9.195-19.618-12.428-29.958c6.615-4.46,12.383-10.119,17.036-16.771c7.699-11.004,11.769-23.939,11.769-37.408\r\n\t\t\tc0-13.471-4.072-26.41-11.777-37.418c-4.658-6.654-10.432-12.316-17.054-16.776c3.225-10.333,7.372-20.346,12.405-29.946\r\n\t\t\tc4.096,0.796,8.277,1.196,12.521,1.196c17.446,0,33.849-6.794,46.185-19.13c9.529-9.53,15.799-21.563,18.133-34.799\r\n\t\t\tc1.411-8.003,1.33-16.093-0.203-23.932C181.455,90.207,191.461,86.057,201.787,82.828 M302.074,64\r\n\t\t\tC294.971,82.529,277.027,95.69,256,95.69c-21.025,0-38.969-13.161-46.073-31.69c-20.466,4.895-39.692,12.973-57.128,23.688\r\n\t\t\tc8.068,18.122,4.682,40.104-10.182,54.97c-9.631,9.631-22.25,14.443-34.87,14.443c-6.854,0-13.706-1.419-20.083-4.255\r\n\t\t\tC76.958,170.284,68.887,189.517,64,209.984c18.51,7.112,31.652,25.049,31.652,46.062c0,21.008-13.133,38.936-31.631,46.054\r\n\t\t\tc4.898,20.466,12.977,39.692,23.693,57.128c6.36-2.821,13.197-4.232,20.031-4.232c12.621,0,25.238,4.812,34.871,14.443\r\n\t\t\tc14.841,14.841,18.238,36.781,10.215,54.889c17.438,10.71,36.664,18.783,57.131,23.673c7.127-18.479,25.046-31.596,46.037-31.596\r\n\t\t\tc20.992,0,38.91,13.115,46.037,31.596c20.468-4.89,39.693-12.964,57.132-23.675c-8.023-18.106-4.626-40.046,10.216-54.887\r\n\t\t\tc9.629-9.632,22.248-14.444,34.868-14.444c6.836,0,13.67,1.411,20.033,4.233c10.716-17.436,18.794-36.662,23.692-57.128\r\n\t\t\tc-18.498-7.118-31.63-25.048-31.63-46.054c-0.001-21.013,13.143-38.948,31.651-46.062c-4.887-20.466-12.957-39.7-23.664-57.139\r\n\t\t\tc-6.375,2.836-13.23,4.254-20.082,4.254c-12.621,0-25.238-4.811-34.871-14.442c-14.863-14.863-18.248-36.846-10.18-54.97\r\n\t\t\tC341.768,76.973,322.54,68.895,302.074,64L302.074,64z"},"children":[]}]}]}]}]}]};exports.iosGearOutline=iosGearOutline;var iosGear={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M416.349,256.046c-0.001-21.013,13.143-38.948,31.651-46.062c-4.887-20.466-12.957-39.7-23.664-57.139\r\n\tc-6.375,2.836-13.23,4.254-20.082,4.254c-12.621,0-25.238-4.811-34.871-14.442c-14.863-14.863-18.248-36.846-10.18-54.97\r\n\tC341.768,76.973,322.54,68.895,302.074,64C294.971,82.529,277.027,95.69,256,95.69c-21.025,0-38.969-13.161-46.073-31.69\r\n\tc-20.466,4.895-39.693,12.973-57.128,23.688c8.068,18.122,4.683,40.104-10.181,54.97c-9.631,9.631-22.25,14.443-34.871,14.443\r\n\tc-6.854,0-13.706-1.419-20.083-4.255C76.958,170.284,68.886,189.517,64,209.984c18.509,7.112,31.652,25.049,31.652,46.062\r\n\tc0,21.008-13.132,38.936-31.63,46.054c4.898,20.466,12.976,39.692,23.692,57.128c6.361-2.821,13.198-4.232,20.032-4.232\r\n\tc12.622,0,25.239,4.812,34.871,14.443c14.841,14.841,18.239,36.781,10.215,54.889c17.438,10.71,36.664,18.783,57.13,23.673\r\n\tc7.128-18.479,25.046-31.596,46.038-31.596c20.992,0,38.91,13.115,46.037,31.596c20.468-4.89,39.693-12.964,57.132-23.675\r\n\tc-8.023-18.106-4.626-40.046,10.216-54.887c9.629-9.632,22.248-14.444,34.868-14.444c6.836,0,13.67,1.411,20.033,4.233\r\n\tc10.716-17.436,18.794-36.662,23.692-57.128C429.48,294.981,416.349,277.052,416.349,256.046z M256.9,335.9c-44.3,0-80-35.9-80-80\r\n\tc0-44.101,35.7-80,80-80c44.299,0,80,35.899,80,80C336.9,300,301.199,335.9,256.9,335.9z"},"children":[]}]};exports.iosGear=iosGear;var iosGlassesOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M465.4,247c-2.2-22-12.4-43-28.9-58.4c-17.1-15.9-39.3-24.7-62.7-24.7c-41.5,0-77.3,27.4-88.5,67c-7-7-18.5-11.7-29.3-11.7\r\n\tc-10.8,0-22.3,4.7-29.3,11.7c-11.2-39.6-47-67-88.5-67c-23.3,0-45.6,8.7-62.7,24.6C59,204,48.8,225,46.6,247H32v18h14.6\r\n\tc2.2,22,12.4,43,28.9,58.4c17.1,15.9,39.3,24.7,62.7,24.7c50.8,0,92.1-41.2,92.1-92c0-0.1,0-0.1,0-0.1h0c0-9.9,11.5-21.6,25.7-21.6\r\n\ts25.7,11.7,25.7,21.6h0c0,0,0,0,0,0.1c0,50.8,41.3,92,92.1,92c23.3,0,45.6-8.7,62.7-24.7c16.5-15.4,26.7-36.5,28.9-58.5H480v-18\r\n\tH465.4z M373.8,333c-42.5,0-77-34.6-77-77c0-42.5,34.6-77,77-77c42.5,0,77,34.6,77,77C450.8,298.5,416.3,333,373.8,333z M138.2,333\r\n\tc-42.5,0-77-34.6-77-77c0-42.5,34.6-77,77-77c42.5,0,77,34.6,77,77C215.2,298.5,180.7,333,138.2,333z"},"children":[]}]};exports.iosGlassesOutline=iosGlassesOutline;var iosGlasses={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M465.4,247c-2.2-22-12.4-43-28.9-58.4c-17.1-15.9-39.3-24.7-62.7-24.7c-41.5,0-77.3,27.4-88.5,67c-7-7-18.5-11.7-29.3-11.7\r\n\tc-10.8,0-22.3,4.7-29.3,11.7c-11.2-39.6-47-67-88.5-67c-23.3,0-45.6,8.7-62.7,24.6C59,204,48.8,225,46.6,247H32v18h14.6\r\n\tc2.2,22,12.4,43,28.9,58.4c17.1,15.9,39.3,24.7,62.7,24.7c50.8,0,92.1-41.2,92.1-92c0-0.1,0-0.1,0-0.1h0c0-9.9,11.5-21.6,25.7-21.6\r\n\ts25.7,11.7,25.7,21.6h0c0,0,0,0,0,0.1c0,50.8,41.3,92,92.1,92c23.3,0,45.6-8.7,62.7-24.7c16.5-15.4,26.7-36.5,28.9-58.5H480v-18\r\n\tH465.4z"},"children":[]}]};exports.iosGlasses=iosGlasses;var iosGridViewOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M448,192v-16H336V64h-16v112H192V64h-16v112H64v16h112v128H64v16h112v112h16V336h128v112h16V336h112v-16H336V192H448z\r\n\t M320,320H192V192h128V320z"},"children":[]}]};exports.iosGridViewOutline=iosGridViewOutline;var iosGridView={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"192","y":"192","width":"128","height":"128"},"children":[{"name":"rect","attribs":{"x":"192","y":"192","width":"128","height":"128"},"children":[]}]},{"name":"path","attribs":{"d":"M64,64v384h384V64H64z M416,192h-80v128h80v16h-80v80h-16v-80H192v80h-16v-80H96v-16h80V192H96v-16h80V96h16v80h128V96h16\r\n\t\tv80h80V192z"},"children":[{"name":"path","attribs":{"d":"M64,64v384h384V64H64z M416,192h-80v128h80v16h-80v80h-16v-80H192v80h-16v-80H96v-16h80V192H96v-16h80V96h16v80h128V96h16\r\n\t\tv80h80V192z"},"children":[]}]}]}]};exports.iosGridView=iosGridView;var iosHeartOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M359.385,80C319.966,80,277.171,97.599,256,132.8C234.83,97.599,192.034,80,152.615,80C83.647,80,32,123.238,32,195.779\r\n\tc0,31.288,12.562,71.924,40.923,105.657c28.359,33.735,45.229,51.7,100.153,88C228,425.738,256,432,256,432s28-6.262,82.924-42.564\r\n\tc54.923-36.3,71.794-54.265,100.153-88C467.438,267.703,480,227.067,480,195.779C480,123.238,428.353,80,359.385,80z\r\n\t M426.83,291.141c-26.852,31.94-42.18,48.895-96.729,84.947c-40.237,26.596-65.252,36.301-74.102,39.233\r\n\tc-8.85-2.933-33.864-12.639-74.102-39.233c-54.548-36.052-69.876-53.006-96.729-84.948c-12.065-14.351-21.857-31.274-28.316-48.943\r\n\tC51.062,226.355,48,210.304,48,195.779c0-30.284,10.131-55.643,29.297-73.335c9.14-8.437,20.158-14.992,32.752-19.484\r\n\tC122.994,98.341,137.315,96,152.615,96c38.018,0,73.217,17.682,89.674,45.046L256,163.844l13.711-22.798\r\n\tC286.169,113.682,321.368,96,359.385,96c15.3,0,29.621,2.341,42.566,6.959c12.594,4.493,23.612,11.048,32.752,19.484\r\n\tC453.869,140.136,464,165.495,464,195.779c0,14.525-3.062,30.576-8.854,46.418C448.688,259.865,438.896,276.789,426.83,291.141z"},"children":[]}]};exports.iosHeartOutline=iosHeartOutline;var iosHeart={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M359.385,80C319.966,80,277.171,97.599,256,132.8C234.83,97.599,192.034,80,152.615,80C83.647,80,32,123.238,32,195.779\r\n\tc0,31.288,12.562,71.924,40.923,105.657c28.359,33.735,45.229,51.7,100.153,88C228,425.738,256,432,256,432s28-6.262,82.924-42.564\r\n\tc54.923-36.3,71.794-54.265,100.153-88C467.438,267.703,480,227.067,480,195.779C480,123.238,428.353,80,359.385,80z"},"children":[]}]};exports.iosHeart=iosHeart;var iosHelpEmpty={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M260.3,366c-9.4,0-17-7.5-17-16.9c0-9.3,7.6-16.8,17-16.8c9.4,0,17,7.5,17,16.8C277.3,358.5,269.7,366,260.3,366z\r\n\t\t M294.1,250.7c-22.8,22.5-22.2,27.4-23.3,53.3h-19c1.1-28.5,7.5-43.7,30.1-64.5c11-10.3,19.4-22.7,19.4-38.1\r\n\t\tc0-23.6-19.4-39.9-42.6-39.9c-32.4,0-48.5,16.4-47.9,46.4H192c0.3-42,24.4-62.1,67.6-62.1c33,0,60.4,20.4,60.4,54.6\r\n\t\tC320,222.3,309.3,236.6,294.1,250.7z"},"children":[{"name":"path","attribs":{"d":"M260.3,366c-9.4,0-17-7.5-17-16.9c0-9.3,7.6-16.8,17-16.8c9.4,0,17,7.5,17,16.8C277.3,358.5,269.7,366,260.3,366z\r\n\t\t M294.1,250.7c-22.8,22.5-22.2,27.4-23.3,53.3h-19c1.1-28.5,7.5-43.7,30.1-64.5c11-10.3,19.4-22.7,19.4-38.1\r\n\t\tc0-23.6-19.4-39.9-42.6-39.9c-32.4,0-48.5,16.4-47.9,46.4H192c0.3-42,24.4-62.1,67.6-62.1c33,0,60.4,20.4,60.4,54.6\r\n\t\tC320,222.3,309.3,236.6,294.1,250.7z"},"children":[]}]}]}]};exports.iosHelpEmpty=iosHelpEmpty;var iosHelpOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256c0,114.9,93.1,208,208,208c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48z\r\n\t\t\t\t M256,446.7c-105.1,0-190.7-85.5-190.7-190.7c0-105.1,85.5-190.7,190.7-190.7c105.1,0,190.7,85.5,190.7,190.7\r\n\t\t\t\tC446.7,361.1,361.1,446.7,256,446.7z"},"children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256c0,114.9,93.1,208,208,208c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48z\r\n\t\t\t\t M256,446.7c-105.1,0-190.7-85.5-190.7-190.7c0-105.1,85.5-190.7,190.7-190.7c105.1,0,190.7,85.5,190.7,190.7\r\n\t\t\t\tC446.7,361.1,361.1,446.7,256,446.7z"},"children":[]}]}]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M259.6,146c-43.2,0-67.3,20.3-67.6,62.2h18.8c-0.6-30.4,15.5-46.5,47.9-46.5c23.2,0,42.6,16.2,42.6,39.8\r\n\t\t\tc0,15.3-8.3,27.7-19.4,38.1c-22.6,20.8-29,36-30.1,64.5h19c1.1-25.8,0.5-30.7,23.3-53.3c15.2-14.2,25.9-28.3,25.9-50.2\r\n\t\t\tC320,166.4,292.6,146,259.6,146z"},"children":[{"name":"path","attribs":{"d":"M259.6,146c-43.2,0-67.3,20.3-67.6,62.2h18.8c-0.6-30.4,15.5-46.5,47.9-46.5c23.2,0,42.6,16.2,42.6,39.8\r\n\t\t\tc0,15.3-8.3,27.7-19.4,38.1c-22.6,20.8-29,36-30.1,64.5h19c1.1-25.8,0.5-30.7,23.3-53.3c15.2-14.2,25.9-28.3,25.9-50.2\r\n\t\t\tC320,166.4,292.6,146,259.6,146z"},"children":[]}]},{"name":"path","attribs":{"d":"M260.3,332.3c-9.4,0-17,7.5-17,16.8c0,9.3,7.6,16.9,17,16.9c9.4,0,17-7.5,17-16.9C277.3,339.8,269.7,332.3,260.3,332.3z"},"children":[{"name":"path","attribs":{"d":"M260.3,332.3c-9.4,0-17,7.5-17,16.8c0,9.3,7.6,16.9,17,16.9c9.4,0,17-7.5,17-16.9C277.3,339.8,269.7,332.3,260.3,332.3z"},"children":[]}]}]}]}]}]};exports.iosHelpOutline=iosHelpOutline;var iosHelp={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256c0,114.9,93.1,208,208,208c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48z\r\n\t\t M260.3,366c-9.4,0-17-7.5-17-16.9c0-9.3,7.6-16.8,17-16.8c9.4,0,17,7.5,17,16.8C277.3,358.5,269.7,366,260.3,366z M294.1,250.7\r\n\t\tc-22.8,22.5-22.2,27.4-23.3,53.3h-19c1.1-28.5,7.5-43.7,30.1-64.5c11-10.3,19.4-22.7,19.4-38.1c0-23.6-19.4-39.9-42.6-39.9\r\n\t\tc-32.4,0-48.5,16.4-47.9,46.4H192c0.3-42,24.4-62.1,67.6-62.1c33,0,60.4,20.4,60.4,54.6C320,222.3,309.3,236.6,294.1,250.7z"},"children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256c0,114.9,93.1,208,208,208c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48z\r\n\t\t M260.3,366c-9.4,0-17-7.5-17-16.9c0-9.3,7.6-16.8,17-16.8c9.4,0,17,7.5,17,16.8C277.3,358.5,269.7,366,260.3,366z M294.1,250.7\r\n\t\tc-22.8,22.5-22.2,27.4-23.3,53.3h-19c1.1-28.5,7.5-43.7,30.1-64.5c11-10.3,19.4-22.7,19.4-38.1c0-23.6-19.4-39.9-42.6-39.9\r\n\t\tc-32.4,0-48.5,16.4-47.9,46.4H192c0.3-42,24.4-62.1,67.6-62.1c33,0,60.4,20.4,60.4,54.6C320,222.3,309.3,236.6,294.1,250.7z"},"children":[]}]}]}]};exports.iosHelp=iosHelp;var iosHomeOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,112L96,240v208h112V320h96v128h112V240L256,112z M400,432h-80V304H192v128h-80V247.69l144-115.2l144,115.2V432z"},"children":[{"name":"path","attribs":{"d":"M256,112L96,240v208h112V320h96v128h112V240L256,112z M400,432h-80V304H192v128h-80V247.69l144-115.2l144,115.2V432z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,64l-96,76.8V96H96v95.999l-32,25.499l11.51,11.384L256,84.49l180.49,144.393L448,217.498L256,64z M144,153.599\r\n\t\tl-32,25.6V112h32V153.599z"},"children":[{"name":"path","attribs":{"d":"M256,64l-96,76.8V96H96v95.999l-32,25.499l11.51,11.384L256,84.49l180.49,144.393L448,217.498L256,64z M144,153.599\r\n\t\tl-32,25.6V112h32V153.599z"},"children":[]}]}]}]};exports.iosHomeOutline=iosHomeOutline;var iosHome={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,112L96,240v208h112V320h96v128h112V240L256,112z"},"children":[{"name":"path","attribs":{"d":"M256,112L96,240v208h112V320h96v128h112V240L256,112z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,64l-96,76.8V96H96v95.999l-32,25.499l11.51,11.384L256,84.49l180.49,144.393L448,217.498L256,64z"},"children":[{"name":"path","attribs":{"d":"M256,64l-96,76.8V96H96v95.999l-32,25.499l11.51,11.384L256,84.49l180.49,144.393L448,217.498L256,64z"},"children":[]}]}]}]};exports.iosHome=iosHome;var iosInfiniteOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M451.229,188.098C432.682,169.967,407.95,160,381.585,160c-26.363,0-51.095,9.967-69.642,28.098l-42.229,41.187\r\n\t\tl13.649,13.447l42.229-41.306c14.933-14.529,34.764-22.573,55.878-22.573c21.113,0,40.946,8.044,55.878,22.573\r\n\t\tc30.797,30.139,30.797,79.13,0,109.148c-14.932,14.529-34.765,22.573-55.878,22.573c-21.114,0-40.945-8.044-55.878-22.573\r\n\t\tL200.071,188.098C181.406,169.967,156.675,160,130.427,160c-26.363,0-51.095,9.967-69.643,28.098\r\n\t\tC41.615,206.809,32.021,231.441,32,256c-0.021,24.611,9.573,49.149,28.784,67.902C79.332,342.032,104.063,352,130.427,352\r\n\t\tc26.365,0,51.095-9.968,69.645-28.098l42.111-41.186l-13.647-13.329l-42.229,41.187c-14.932,14.529-34.764,22.573-55.879,22.573\r\n\t\tc-21.113,0-40.944-8.044-55.876-22.573c-30.799-30.14-30.799-79.13,0-109.148c14.932-14.529,34.763-22.573,55.876-22.573\r\n\t\tc21.115,0,40.947,8.044,55.879,22.573l125.52,122.477C330.49,342.032,355.222,352,381.47,352c26.363,0,51.095-9.968,69.643-28.098\r\n\t\tC470.361,305.23,479.985,280.6,480,256C480.015,231.399,470.42,206.83,451.229,188.098z"},"children":[{"name":"path","attribs":{"d":"M451.229,188.098C432.682,169.967,407.95,160,381.585,160c-26.363,0-51.095,9.967-69.642,28.098l-42.229,41.187\r\n\t\tl13.649,13.447l42.229-41.306c14.933-14.529,34.764-22.573,55.878-22.573c21.113,0,40.946,8.044,55.878,22.573\r\n\t\tc30.797,30.139,30.797,79.13,0,109.148c-14.932,14.529-34.765,22.573-55.878,22.573c-21.114,0-40.945-8.044-55.878-22.573\r\n\t\tL200.071,188.098C181.406,169.967,156.675,160,130.427,160c-26.363,0-51.095,9.967-69.643,28.098\r\n\t\tC41.615,206.809,32.021,231.441,32,256c-0.021,24.611,9.573,49.149,28.784,67.902C79.332,342.032,104.063,352,130.427,352\r\n\t\tc26.365,0,51.095-9.968,69.645-28.098l42.111-41.186l-13.647-13.329l-42.229,41.187c-14.932,14.529-34.764,22.573-55.879,22.573\r\n\t\tc-21.113,0-40.944-8.044-55.876-22.573c-30.799-30.14-30.799-79.13,0-109.148c14.932-14.529,34.763-22.573,55.876-22.573\r\n\t\tc21.115,0,40.947,8.044,55.879,22.573l125.52,122.477C330.49,342.032,355.222,352,381.47,352c26.363,0,51.095-9.968,69.643-28.098\r\n\t\tC470.361,305.23,479.985,280.6,480,256C480.015,231.399,470.42,206.83,451.229,188.098z"},"children":[]}]}]}]};exports.iosInfiniteOutline=iosInfiniteOutline;var iosInfinite={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M456.821,182.377C436.782,162.788,410.062,152,381.585,152c-28.477,0-55.195,10.788-75.21,30.354l-39.106,37.885\r\n\tl25.06,24.689l38.843-37.769c13.458-13.095,31.321-20.307,50.299-20.307c18.979,0,36.841,7.212,50.282,20.291\r\n\tc13.363,13.077,20.712,30.468,20.693,48.97c-0.019,18.443-7.363,35.75-20.677,48.728c-13.458,13.095-31.32,20.307-50.299,20.307\r\n\tc-18.978,0-36.841-7.212-50.291-20.299L205.646,182.359C185.491,162.782,158.778,152,130.427,152\r\n\tc-28.477,0-55.195,10.788-75.23,30.373C35.103,201.986,24.023,228.132,24,255.993c-0.024,27.822,11.055,53.973,31.192,73.63\r\n\tC75.232,349.212,101.951,360,130.427,360c28.475,0,55.194-10.788,75.223-30.363l38.994-37.909l-25.088-24.502l-38.829,37.615\r\n\tc-13.458,13.095-31.321,20.307-50.3,20.307c-18.977,0-36.839-7.212-50.28-20.291c-13.364-13.077-20.714-30.469-20.694-48.971\r\n\tc0.019-18.443,7.363-35.749,20.678-48.727c13.458-13.095,31.32-20.307,50.297-20.307c18.979,0,36.842,7.212,50.292,20.299\r\n\tl125.532,122.489C326.406,349.218,353.119,360,381.47,360c28.476,0,55.194-10.788,75.213-30.355\r\n\tc20.179-19.573,31.301-45.727,31.317-73.64C488.017,228.167,476.942,202.018,456.821,182.377z"},"children":[]}]};exports.iosInfinite=iosInfinite;var iosInformationEmpty={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"cx":"251.5","cy":"172","r":"20"},"children":[{"name":"circle","attribs":{"cx":"251.5","cy":"172","r":"20"},"children":[]}]},{"name":"polygon","attribs":{"points":"272,344 272,216 224,216 224,224 240,224 240,344 224,344 224,352 288,352 288,344 \t\t"},"children":[{"name":"polygon","attribs":{"points":"272,344 272,216 224,216 224,224 240,224 240,344 224,344 224,352 288,352 288,344 \t\t"},"children":[]}]}]}]}]}]};exports.iosInformationEmpty=iosInformationEmpty;var iosInformationOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"cx":"251.5","cy":"172","r":"20"},"children":[{"name":"circle","attribs":{"cx":"251.5","cy":"172","r":"20"},"children":[]}]},{"name":"polygon","attribs":{"points":"272,344 272,216 224,216 224,224 240,224 240,344 224,344 224,352 288,352 288,344 \t\t"},"children":[{"name":"polygon","attribs":{"points":"272,344 272,216 224,216 224,224 240,224 240,344 224,344 224,352 288,352 288,344 \t\t"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256c0,114.9,93.1,208,208,208c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48z\r\n\t\t\t M256,446.7c-105.1,0-190.7-85.5-190.7-190.7c0-105.1,85.5-190.7,190.7-190.7c105.1,0,190.7,85.5,190.7,190.7\r\n\t\t\tC446.7,361.1,361.1,446.7,256,446.7z"},"children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256c0,114.9,93.1,208,208,208c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48z\r\n\t\t\t M256,446.7c-105.1,0-190.7-85.5-190.7-190.7c0-105.1,85.5-190.7,190.7-190.7c105.1,0,190.7,85.5,190.7,190.7\r\n\t\t\tC446.7,361.1,361.1,446.7,256,446.7z"},"children":[]}]}]}]}]}]};exports.iosInformationOutline=iosInformationOutline;var iosInformation={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256c0,114.9,93.1,208,208,208c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48z\r\n\t\t M251.5,152c11.1,0,20,9,20,20s-9,20-20,20c-11,0-20-9-20-20S240.4,152,251.5,152z M288,352h-64v-8h16V224h-16v-8h48v128h16V352z"},"children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256c0,114.9,93.1,208,208,208c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48z\r\n\t\t M251.5,152c11.1,0,20,9,20,20s-9,20-20,20c-11,0-20-9-20-20S240.4,152,251.5,152z M288,352h-64v-8h16V224h-16v-8h48v128h16V352z"},"children":[]}]}]}]};exports.iosInformation=iosInformation;var iosIonicOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M425.5,134.8c4.7-5.9,7.5-13.5,7.5-21.6c0-19.2-15.6-34.9-34.8-34.9c-8.2,0-15.7,2.8-21.6,7.5c-34-24.2-75-37.8-119.9-37.8\r\n\t\tC141.8,48,48,140.5,48,255.6C48,370.7,141.7,464,256.6,464C371.5,464,464,370.7,464,255.6C464,210.6,449.7,168.9,425.5,134.8z\r\n\t\t M398,91.3c12.2,0,22,9.9,22,22c0,12.2-9.9,22-22,22c-12.2,0-22-9.9-22-22C376,101.2,385.8,91.3,398,91.3z M391.8,391.7\r\n\t\tc-17.6,17.6-38.2,31.6-61.1,41.3c-23.7,10-48.2,15.2-74.2,15.2c-25.9,0-51.7-5.1-75.4-15.2c-22.9-9.7-43.4-23.5-61.1-41.3\r\n\t\tc-17.6-17.6-31.5-38.3-41.2-61.2c-10-23.7-15.1-48.9-15.1-74.9c0-25.9,5.1-51.2,15.1-74.9c9.7-22.9,23.5-43.5,41.2-61.2\r\n\t\ts38.2-31.6,61.1-41.3c23.7-10,49.4-14.1,75.4-14.1c25.9,0,50.5,4,74.2,14.1c12.7,5.4,24.7,12.1,35.9,20c-2.1,4.5-3.3,9.5-3.3,14.9\r\n\t\tc0,19.2,15.6,34.9,34.8,34.9c5.3,0,10.3-1.2,14.9-3.3c7.9,11.2,14.6,23.2,20,36c10,23.7,15.1,48.9,15.1,74.9\r\n\t\tc0,25.9-5.1,51.2-15.1,74.9C423.3,353.4,409.5,374,391.8,391.7z"},"children":[{"name":"path","attribs":{"d":"M425.5,134.8c4.7-5.9,7.5-13.5,7.5-21.6c0-19.2-15.6-34.9-34.8-34.9c-8.2,0-15.7,2.8-21.6,7.5c-34-24.2-75-37.8-119.9-37.8\r\n\t\tC141.8,48,48,140.5,48,255.6C48,370.7,141.7,464,256.6,464C371.5,464,464,370.7,464,255.6C464,210.6,449.7,168.9,425.5,134.8z\r\n\t\t M398,91.3c12.2,0,22,9.9,22,22c0,12.2-9.9,22-22,22c-12.2,0-22-9.9-22-22C376,101.2,385.8,91.3,398,91.3z M391.8,391.7\r\n\t\tc-17.6,17.6-38.2,31.6-61.1,41.3c-23.7,10-48.2,15.2-74.2,15.2c-25.9,0-51.7-5.1-75.4-15.2c-22.9-9.7-43.4-23.5-61.1-41.3\r\n\t\tc-17.6-17.6-31.5-38.3-41.2-61.2c-10-23.7-15.1-48.9-15.1-74.9c0-25.9,5.1-51.2,15.1-74.9c9.7-22.9,23.5-43.5,41.2-61.2\r\n\t\ts38.2-31.6,61.1-41.3c23.7-10,49.4-14.1,75.4-14.1c25.9,0,50.5,4,74.2,14.1c12.7,5.4,24.7,12.1,35.9,20c-2.1,4.5-3.3,9.5-3.3,14.9\r\n\t\tc0,19.2,15.6,34.9,34.8,34.9c5.3,0,10.3-1.2,14.9-3.3c7.9,11.2,14.6,23.2,20,36c10,23.7,15.1,48.9,15.1,74.9\r\n\t\tc0,25.9-5.1,51.2-15.1,74.9C423.3,353.4,409.5,374,391.8,391.7z"},"children":[]}]},{"name":"path","attribs":{"d":"M256.5,160.1c-53,0-96,42.8-96,95.9s42.9,96.1,96,96.1c53,0,96-43,96-96.1S309.5,160.1,256.5,160.1z M256.5,335.8\r\n\t\tc-44.1,0-79.7-35.8-79.7-79.8c0-44.1,35.6-79.6,79.7-79.6s79.7,35.6,79.7,79.6C336.2,300.1,300.5,335.8,256.5,335.8z"},"children":[{"name":"path","attribs":{"d":"M256.5,160.1c-53,0-96,42.8-96,95.9s42.9,96.1,96,96.1c53,0,96-43,96-96.1S309.5,160.1,256.5,160.1z M256.5,335.8\r\n\t\tc-44.1,0-79.7-35.8-79.7-79.8c0-44.1,35.6-79.6,79.7-79.6s79.7,35.6,79.7,79.6C336.2,300.1,300.5,335.8,256.5,335.8z"},"children":[]}]}]}]};exports.iosIonicOutline=iosIonicOutline;var iosKeypadOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M394.6,341.2c-29.5,0-53.4,23.9-53.4,53.4s23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4S424.1,341.2,394.6,341.2z\r\n\t\t M394.6,432c-20.6,0-37.4-16.8-37.4-37.4c0-20.6,16.8-37.4,37.4-37.4s37.4,16.8,37.4,37.4C432,415.2,415.2,432,394.6,432z"},"children":[{"name":"path","attribs":{"d":"M394.6,341.2c-29.5,0-53.4,23.9-53.4,53.4s23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4S424.1,341.2,394.6,341.2z\r\n\t\t M394.6,432c-20.6,0-37.4-16.8-37.4-37.4c0-20.6,16.8-37.4,37.4-37.4s37.4,16.8,37.4,37.4C432,415.2,415.2,432,394.6,432z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,341.2c-29.5,0-53.4,23.9-53.4,53.4S226.5,448,256,448c29.5,0,53.4-23.9,53.4-53.4S285.5,341.2,256,341.2z M256,432\r\n\t\tc-20.6,0-37.4-16.8-37.4-37.4c0-20.6,16.8-37.4,37.4-37.4s37.4,16.8,37.4,37.4C293.4,415.2,276.6,432,256,432z"},"children":[{"name":"path","attribs":{"d":"M256,341.2c-29.5,0-53.4,23.9-53.4,53.4S226.5,448,256,448c29.5,0,53.4-23.9,53.4-53.4S285.5,341.2,256,341.2z M256,432\r\n\t\tc-20.6,0-37.4-16.8-37.4-37.4c0-20.6,16.8-37.4,37.4-37.4s37.4,16.8,37.4,37.4C293.4,415.2,276.6,432,256,432z"},"children":[]}]},{"name":"path","attribs":{"d":"M117.4,341.2c-29.5,0-53.4,23.9-53.4,53.4S87.9,448,117.4,448c29.5,0,53.4-23.9,53.4-53.4S146.9,341.2,117.4,341.2z\r\n\t\t M117.4,432C96.8,432,80,415.2,80,394.6c0-20.6,16.8-37.4,37.4-37.4s37.4,16.8,37.4,37.4C154.8,415.2,138.1,432,117.4,432z"},"children":[{"name":"path","attribs":{"d":"M117.4,341.2c-29.5,0-53.4,23.9-53.4,53.4S87.9,448,117.4,448c29.5,0,53.4-23.9,53.4-53.4S146.9,341.2,117.4,341.2z\r\n\t\t M117.4,432C96.8,432,80,415.2,80,394.6c0-20.6,16.8-37.4,37.4-37.4s37.4,16.8,37.4,37.4C154.8,415.2,138.1,432,117.4,432z"},"children":[]}]},{"name":"path","attribs":{"d":"M394.6,202.6c-29.5,0-53.4,23.9-53.4,53.4s23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4S424.1,202.6,394.6,202.6z\r\n\t\t M394.6,293.4c-20.6,0-37.4-16.8-37.4-37.4c0-20.6,16.8-37.4,37.4-37.4S432,235.4,432,256C432,276.6,415.2,293.4,394.6,293.4z"},"children":[{"name":"path","attribs":{"d":"M394.6,202.6c-29.5,0-53.4,23.9-53.4,53.4s23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4S424.1,202.6,394.6,202.6z\r\n\t\t M394.6,293.4c-20.6,0-37.4-16.8-37.4-37.4c0-20.6,16.8-37.4,37.4-37.4S432,235.4,432,256C432,276.6,415.2,293.4,394.6,293.4z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,202.6c-29.5,0-53.4,23.9-53.4,53.4s23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4S285.5,202.6,256,202.6z\r\n\t\t M256,293.4c-20.6,0-37.4-16.8-37.4-37.4c0-20.6,16.8-37.4,37.4-37.4s37.4,16.8,37.4,37.4C293.4,276.6,276.6,293.4,256,293.4z"},"children":[{"name":"path","attribs":{"d":"M256,202.6c-29.5,0-53.4,23.9-53.4,53.4s23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4S285.5,202.6,256,202.6z\r\n\t\t M256,293.4c-20.6,0-37.4-16.8-37.4-37.4c0-20.6,16.8-37.4,37.4-37.4s37.4,16.8,37.4,37.4C293.4,276.6,276.6,293.4,256,293.4z"},"children":[]}]},{"name":"path","attribs":{"d":"M117.4,202.6C87.9,202.6,64,226.5,64,256s23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4S146.9,202.6,117.4,202.6z\r\n\t\t M117.4,293.4C96.8,293.4,80,276.6,80,256c0-20.6,16.8-37.4,37.4-37.4s37.4,16.8,37.4,37.4C154.8,276.6,138.1,293.4,117.4,293.4z"},"children":[{"name":"path","attribs":{"d":"M117.4,202.6C87.9,202.6,64,226.5,64,256s23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4S146.9,202.6,117.4,202.6z\r\n\t\t M117.4,293.4C96.8,293.4,80,276.6,80,256c0-20.6,16.8-37.4,37.4-37.4s37.4,16.8,37.4,37.4C154.8,276.6,138.1,293.4,117.4,293.4z"},"children":[]}]},{"name":"path","attribs":{"d":"M394.6,170.8c29.5,0,53.4-23.9,53.4-53.4c0-29.5-23.9-53.4-53.4-53.4c-29.5,0-53.4,23.9-53.4,53.4\r\n\t\tC341.2,146.9,365.1,170.8,394.6,170.8z M394.6,80c20.6,0,37.4,16.8,37.4,37.4c0,20.6-16.8,37.4-37.4,37.4s-37.4-16.8-37.4-37.4\r\n\t\tC357.2,96.8,373.9,80,394.6,80z"},"children":[{"name":"path","attribs":{"d":"M394.6,170.8c29.5,0,53.4-23.9,53.4-53.4c0-29.5-23.9-53.4-53.4-53.4c-29.5,0-53.4,23.9-53.4,53.4\r\n\t\tC341.2,146.9,365.1,170.8,394.6,170.8z M394.6,80c20.6,0,37.4,16.8,37.4,37.4c0,20.6-16.8,37.4-37.4,37.4s-37.4-16.8-37.4-37.4\r\n\t\tC357.2,96.8,373.9,80,394.6,80z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,64c-29.5,0-53.4,23.9-53.4,53.4c0,29.5,23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4C309.4,87.9,285.5,64,256,64z\r\n\t\t M256,154.8c-20.6,0-37.4-16.8-37.4-37.4c0-20.6,16.8-37.4,37.4-37.4s37.4,16.8,37.4,37.4C293.4,138,276.6,154.8,256,154.8z"},"children":[{"name":"path","attribs":{"d":"M256,64c-29.5,0-53.4,23.9-53.4,53.4c0,29.5,23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4C309.4,87.9,285.5,64,256,64z\r\n\t\t M256,154.8c-20.6,0-37.4-16.8-37.4-37.4c0-20.6,16.8-37.4,37.4-37.4s37.4,16.8,37.4,37.4C293.4,138,276.6,154.8,256,154.8z"},"children":[]}]},{"name":"path","attribs":{"d":"M117.4,64C87.9,64,64,87.9,64,117.4c0,29.5,23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4C170.8,87.9,146.9,64,117.4,64z\r\n\t\t M117.4,154.8C96.8,154.8,80,138,80,117.4C80,96.8,96.8,80,117.4,80s37.4,16.8,37.4,37.4C154.8,138,138.1,154.8,117.4,154.8z"},"children":[{"name":"path","attribs":{"d":"M117.4,64C87.9,64,64,87.9,64,117.4c0,29.5,23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4C170.8,87.9,146.9,64,117.4,64z\r\n\t\t M117.4,154.8C96.8,154.8,80,138,80,117.4C80,96.8,96.8,80,117.4,80s37.4,16.8,37.4,37.4C154.8,138,138.1,154.8,117.4,154.8z"},"children":[]}]}]}]};exports.iosKeypadOutline=iosKeypadOutline;var iosKeypad={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M394.6,341.2c-29.5,0-53.4,23.9-53.4,53.4s23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4S424.1,341.2,394.6,341.2z"},"children":[{"name":"path","attribs":{"d":"M394.6,341.2c-29.5,0-53.4,23.9-53.4,53.4s23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4S424.1,341.2,394.6,341.2z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,341.2c-29.5,0-53.4,23.9-53.4,53.4S226.5,448,256,448c29.5,0,53.4-23.9,53.4-53.4S285.5,341.2,256,341.2z"},"children":[{"name":"path","attribs":{"d":"M256,341.2c-29.5,0-53.4,23.9-53.4,53.4S226.5,448,256,448c29.5,0,53.4-23.9,53.4-53.4S285.5,341.2,256,341.2z"},"children":[]}]},{"name":"path","attribs":{"d":"M117.4,341.2c-29.5,0-53.4,23.9-53.4,53.4S87.9,448,117.4,448c29.5,0,53.4-23.9,53.4-53.4S146.9,341.2,117.4,341.2z"},"children":[{"name":"path","attribs":{"d":"M117.4,341.2c-29.5,0-53.4,23.9-53.4,53.4S87.9,448,117.4,448c29.5,0,53.4-23.9,53.4-53.4S146.9,341.2,117.4,341.2z"},"children":[]}]},{"name":"path","attribs":{"d":"M394.6,202.6c-29.5,0-53.4,23.9-53.4,53.4s23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4S424.1,202.6,394.6,202.6z"},"children":[{"name":"path","attribs":{"d":"M394.6,202.6c-29.5,0-53.4,23.9-53.4,53.4s23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4S424.1,202.6,394.6,202.6z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,202.6c-29.5,0-53.4,23.9-53.4,53.4s23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4S285.5,202.6,256,202.6z"},"children":[{"name":"path","attribs":{"d":"M256,202.6c-29.5,0-53.4,23.9-53.4,53.4s23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4S285.5,202.6,256,202.6z"},"children":[]}]},{"name":"path","attribs":{"d":"M117.4,202.6C87.9,202.6,64,226.5,64,256s23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4S146.9,202.6,117.4,202.6z"},"children":[{"name":"path","attribs":{"d":"M117.4,202.6C87.9,202.6,64,226.5,64,256s23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4S146.9,202.6,117.4,202.6z"},"children":[]}]},{"name":"path","attribs":{"d":"M394.6,170.8c29.5,0,53.4-23.9,53.4-53.4c0-29.5-23.9-53.4-53.4-53.4c-29.5,0-53.4,23.9-53.4,53.4\r\n\t\tC341.2,146.9,365.1,170.8,394.6,170.8z"},"children":[{"name":"path","attribs":{"d":"M394.6,170.8c29.5,0,53.4-23.9,53.4-53.4c0-29.5-23.9-53.4-53.4-53.4c-29.5,0-53.4,23.9-53.4,53.4\r\n\t\tC341.2,146.9,365.1,170.8,394.6,170.8z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,64c-29.5,0-53.4,23.9-53.4,53.4c0,29.5,23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4C309.4,87.9,285.5,64,256,64z"},"children":[{"name":"path","attribs":{"d":"M256,64c-29.5,0-53.4,23.9-53.4,53.4c0,29.5,23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4C309.4,87.9,285.5,64,256,64z"},"children":[]}]},{"name":"path","attribs":{"d":"M117.4,64C87.9,64,64,87.9,64,117.4c0,29.5,23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4C170.8,87.9,146.9,64,117.4,64z\r\n\t\t"},"children":[{"name":"path","attribs":{"d":"M117.4,64C87.9,64,64,87.9,64,117.4c0,29.5,23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4C170.8,87.9,146.9,64,117.4,64z\r\n\t\t"},"children":[]}]}]}]};exports.iosKeypad=iosKeypad;var iosLightbulbOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M400,172.9C400,95.1,333.9,32,256,32c-77.9,0-144,63.1-144,141c0,31,13.2,59,30.2,83h-0.3c10.9,15,21.4,27.7,31.5,45\r\n\t\tc22,37.8,18.6,74.3,18.7,81.6v1.4h128v-1.4c0-8.9-3.6-43.8,18.4-81.6c10.1-17.3,20.6-30,31.5-45h-0.1C386.8,232,400,204,400,172.9z\r\n\t\t M351,254.4c-0.6,0.8-1.1,1.5-1.7,2.3c-8.1,10.9-16.5,22.2-24.7,36.1c-17.3,29.7-20.4,57.9-20.8,75.1H288V256l32-64h-16.6L272,256\r\n\t\tv112h-32V256l-31.4-64H192l32,64v112h-15.9c-0.5-17.2-3.9-45.7-20.9-75c-4.5-7.7-9.1-15-13.7-21h0.2l-18.6-25.6\r\n\t\tc-15.8-21.6-27.1-47.1-27.1-73.6c0-33.4,16-64.8,39.6-88.4s55-36.7,88.4-36.7c33.4,0,64.8,13.1,88.4,36.7\r\n\t\tc23.6,23.6,39.6,55,39.6,88.4c0,26.5-11.3,51.9-27.1,73.5L351,254.4z"},"children":[{"name":"path","attribs":{"d":"M400,172.9C400,95.1,333.9,32,256,32c-77.9,0-144,63.1-144,141c0,31,13.2,59,30.2,83h-0.3c10.9,15,21.4,27.7,31.5,45\r\n\t\tc22,37.8,18.6,74.3,18.7,81.6v1.4h128v-1.4c0-8.9-3.6-43.8,18.4-81.6c10.1-17.3,20.6-30,31.5-45h-0.1C386.8,232,400,204,400,172.9z\r\n\t\t M351,254.4c-0.6,0.8-1.1,1.5-1.7,2.3c-8.1,10.9-16.5,22.2-24.7,36.1c-17.3,29.7-20.4,57.9-20.8,75.1H288V256l32-64h-16.6L272,256\r\n\t\tv112h-32V256l-31.4-64H192l32,64v112h-15.9c-0.5-17.2-3.9-45.7-20.9-75c-4.5-7.7-9.1-15-13.7-21h0.2l-18.6-25.6\r\n\t\tc-15.8-21.6-27.1-47.1-27.1-73.6c0-33.4,16-64.8,39.6-88.4s55-36.7,88.4-36.7c33.4,0,64.8,13.1,88.4,36.7\r\n\t\tc23.6,23.6,39.6,55,39.6,88.4c0,26.5-11.3,51.9-27.1,73.5L351,254.4z"},"children":[]}]},{"name":"rect","attribs":{"x":"224","y":"464","width":"64","height":"16"},"children":[{"name":"rect","attribs":{"x":"224","y":"464","width":"64","height":"16"},"children":[]}]},{"name":"rect","attribs":{"x":"208","y":"432","width":"96","height":"16"},"children":[{"name":"rect","attribs":{"x":"208","y":"432","width":"96","height":"16"},"children":[]}]},{"name":"rect","attribs":{"x":"208","y":"400","width":"96","height":"16"},"children":[{"name":"rect","attribs":{"x":"208","y":"400","width":"96","height":"16"},"children":[]}]}]}]};exports.iosLightbulbOutline=iosLightbulbOutline;var iosLightbulb={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M400,172.9C400,95.1,333.9,32,256,32c-77.9,0-144,63.1-144,141c0,31,13.2,59,30.2,83h-0.3c10.9,15,21.4,27.7,31.5,45\r\n\t\t\tc22,37.8,18.6,74.3,18.7,81.6v1.4h32V256l-32-64h16.6l31.4,64v128h32V256l31.4-64H320l-32,64v128h32v-1.4\r\n\t\t\tc0-8.9-3.6-43.8,18.4-81.6c10.1-17.3,20.6-30,31.5-45h-0.1C386.8,232,400,204,400,172.9z"},"children":[{"name":"path","attribs":{"d":"M400,172.9C400,95.1,333.9,32,256,32c-77.9,0-144,63.1-144,141c0,31,13.2,59,30.2,83h-0.3c10.9,15,21.4,27.7,31.5,45\r\n\t\t\tc22,37.8,18.6,74.3,18.7,81.6v1.4h32V256l-32-64h16.6l31.4,64v128h32V256l31.4-64H320l-32,64v128h32v-1.4\r\n\t\t\tc0-8.9-3.6-43.8,18.4-81.6c10.1-17.3,20.6-30,31.5-45h-0.1C386.8,232,400,204,400,172.9z"},"children":[]}]}]}]},{"name":"rect","attribs":{"x":"224","y":"464","width":"64","height":"16"},"children":[{"name":"rect","attribs":{"x":"224","y":"464","width":"64","height":"16"},"children":[]}]},{"name":"rect","attribs":{"x":"208","y":"432","width":"96","height":"16"},"children":[{"name":"rect","attribs":{"x":"208","y":"432","width":"96","height":"16"},"children":[]}]},{"name":"rect","attribs":{"x":"208","y":"400","width":"96","height":"16"},"children":[{"name":"rect","attribs":{"x":"208","y":"400","width":"96","height":"16"},"children":[]}]}]}]};exports.iosLightbulb=iosLightbulb;var iosListOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M432,80v352H80V80H432 M448,64H64v384h384V64L448,64z"},"children":[{"name":"path","attribs":{"d":"M432,80v352H80V80H432 M448,64H64v384h384V64L448,64z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"192","y":"152","width":"192","height":"16"},"children":[{"name":"rect","attribs":{"x":"192","y":"152","width":"192","height":"16"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"192","y":"248","width":"192","height":"16"},"children":[{"name":"rect","attribs":{"x":"192","y":"248","width":"192","height":"16"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"192","y":"344","width":"192","height":"16"},"children":[{"name":"rect","attribs":{"x":"192","y":"344","width":"192","height":"16"},"children":[]}]}]}]}]}]},{"name":"circle","attribs":{"cx":"144","cy":"160","r":"16"},"children":[{"name":"circle","attribs":{"cx":"144","cy":"160","r":"16"},"children":[]}]},{"name":"circle","attribs":{"cx":"144","cy":"256","r":"16"},"children":[{"name":"circle","attribs":{"cx":"144","cy":"256","r":"16"},"children":[]}]},{"name":"circle","attribs":{"cx":"144","cy":"352","r":"16"},"children":[{"name":"circle","attribs":{"cx":"144","cy":"352","r":"16"},"children":[]}]}]}]};exports.iosListOutline=iosListOutline;var iosList={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M64,64v384h384V64H64z M144,368c-8.836,0-16-7.164-16-16s7.164-16,16-16s16,7.164,16,16S152.836,368,144,368z M144,272\r\n\t\tc-8.836,0-16-7.164-16-16s7.164-16,16-16s16,7.164,16,16S152.836,272,144,272z M144,176c-8.836,0-16-7.164-16-16s7.164-16,16-16\r\n\t\ts16,7.164,16,16S152.836,176,144,176z M384,360H192v-16h192V360z M384,264H192v-16h192V264z M384,168H192v-16h192V168z"},"children":[{"name":"path","attribs":{"d":"M64,64v384h384V64H64z M144,368c-8.836,0-16-7.164-16-16s7.164-16,16-16s16,7.164,16,16S152.836,368,144,368z M144,272\r\n\t\tc-8.836,0-16-7.164-16-16s7.164-16,16-16s16,7.164,16,16S152.836,272,144,272z M144,176c-8.836,0-16-7.164-16-16s7.164-16,16-16\r\n\t\ts16,7.164,16,16S152.836,176,144,176z M384,360H192v-16h192V360z M384,264H192v-16h192V264z M384,168H192v-16h192V168z"},"children":[]}]}]}]};exports.iosList=iosList;var iosLocationOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,48c34.19,0,66.334,13.314,90.51,37.49S384,141.81,384,176c0,42.92-24.092,107.127-69.67,185.68\r\n\t\tc-22.279,38.396-44.771,71.634-58.332,90.931c-13.518-19.232-35.912-52.327-58.161-90.645C152.149,283.281,128,218.976,128,176\r\n\t\tc0-34.19,13.314-66.334,37.49-90.51S221.81,48,256,48 M256,32c-79.529,0-144,64.471-144,144c0,112,144,304,144,304s144-192,144-304\r\n\t\tC400,96.471,335.529,32,256,32L256,32z"},"children":[{"name":"path","attribs":{"d":"M256,48c34.19,0,66.334,13.314,90.51,37.49S384,141.81,384,176c0,42.92-24.092,107.127-69.67,185.68\r\n\t\tc-22.279,38.396-44.771,71.634-58.332,90.931c-13.518-19.232-35.912-52.327-58.161-90.645C152.149,283.281,128,218.976,128,176\r\n\t\tc0-34.19,13.314-66.334,37.49-90.51S221.81,48,256,48 M256,32c-79.529,0-144,64.471-144,144c0,112,144,304,144,304s144-192,144-304\r\n\t\tC400,96.471,335.529,32,256,32L256,32z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,112c-35.3,0-64,28.7-64,64s28.7,64,64,64s64-28.7,64-64S291.3,112,256,112z M256,222.9c-25.9,0-46.9-21-46.9-46.9\r\n\t\ts21-46.9,46.9-46.9s46.9,21,46.9,46.9S281.9,222.9,256,222.9z"},"children":[{"name":"path","attribs":{"d":"M256,112c-35.3,0-64,28.7-64,64s28.7,64,64,64s64-28.7,64-64S291.3,112,256,112z M256,222.9c-25.9,0-46.9-21-46.9-46.9\r\n\t\ts21-46.9,46.9-46.9s46.9,21,46.9,46.9S281.9,222.9,256,222.9z"},"children":[]}]}]}]};exports.iosLocationOutline=iosLocationOutline;var iosLocation={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,32c-79.529,0-144,64.471-144,144c0,112,144,304,144,304s144-192,144-304C400,96.471,335.529,32,256,32z M256,222.9\r\n\tc-25.9,0-46.9-21-46.9-46.9s21-46.9,46.9-46.9s46.9,21,46.9,46.9S281.9,222.9,256,222.9z"},"children":[]}]};exports.iosLocation=iosLocation;var iosLockedOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M360,224v-72c0-57.43-46.562-104-103.984-104C198.562,48,152,94.57,152,152v72H96v240h320V224H360z M168,152\r\n\t\t\tc0-48.523,39.484-88,88.016-88C304.531,64,344,103.477,344,152v72H168V152z M400,448H112V240h288V448z"},"children":[{"name":"path","attribs":{"d":"M360,224v-72c0-57.43-46.562-104-103.984-104C198.562,48,152,94.57,152,152v72H96v240h320V224H360z M168,152\r\n\t\t\tc0-48.523,39.484-88,88.016-88C304.531,64,344,103.477,344,152v72H168V152z M400,448H112V240h288V448z"},"children":[]}]}]}]},{"name":"path","attribs":{"d":"M256,288c-17.673,0-32,14.327-32,32c0,14.91,10.198,27.439,24,30.992V384h16v-33.008c13.802-3.553,24-16.082,24-30.992\r\n\t\tC288,302.327,273.673,288,256,288z M256,336c-8.822,0-16-7.178-16-16s7.178-16,16-16s16,7.178,16,16S264.822,336,256,336z"},"children":[{"name":"path","attribs":{"d":"M256,288c-17.673,0-32,14.327-32,32c0,14.91,10.198,27.439,24,30.992V384h16v-33.008c13.802-3.553,24-16.082,24-30.992\r\n\t\tC288,302.327,273.673,288,256,288z M256,336c-8.822,0-16-7.178-16-16s7.178-16,16-16s16,7.178,16,16S264.822,336,256,336z"},"children":[]}]}]}]};exports.iosLockedOutline=iosLockedOutline;var iosLocked={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M360,224v-72c0-57.43-46.562-104-103.984-104C198.562,48,152,94.57,152,152v72H96v240h320V224H360z M264,350.992V384h-16\r\n\t\tv-33.008c-13.802-3.553-24-16.082-24-30.992c0-17.673,14.327-32,32-32s32,14.327,32,32C288,334.91,277.802,347.439,264,350.992z\r\n\t\t M344,224H168v-72c0-48.523,39.484-88,88.016-88C304.531,64,344,103.477,344,152V224z"},"children":[{"name":"path","attribs":{"d":"M360,224v-72c0-57.43-46.562-104-103.984-104C198.562,48,152,94.57,152,152v72H96v240h320V224H360z M264,350.992V384h-16\r\n\t\tv-33.008c-13.802-3.553-24-16.082-24-30.992c0-17.673,14.327-32,32-32s32,14.327,32,32C288,334.91,277.802,347.439,264,350.992z\r\n\t\t M344,224H168v-72c0-48.523,39.484-88,88.016-88C304.531,64,344,103.477,344,152V224z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,304c-8.822,0-16,7.178-16,16s7.178,16,16,16s16-7.178,16-16S264.822,304,256,304z"},"children":[{"name":"path","attribs":{"d":"M256,304c-8.822,0-16,7.178-16,16s7.178,16,16,16s16-7.178,16-16S264.822,304,256,304z"},"children":[]}]}]}]};exports.iosLocked=iosLocked;var iosLoopStrong={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,48c-75.033,0-144.531,40.658-181.373,106.107l-1.963,3.485l20.915,11.771l1.962-3.485\r\n\t\t\tC128.138,107.973,189.621,72,256,72c101.458,0,184,82.542,184,184c0,12.509-1.262,25.007-3.749,37.147l-0.803,3.918l23.511,4.819\r\n\t\t\tl0.804-3.919C462.574,284.244,464,270.125,464,256C464,141.309,370.691,48,256,48z"},"children":[{"name":"path","attribs":{"d":"M256,48c-75.033,0-144.531,40.658-181.373,106.107l-1.963,3.485l20.915,11.771l1.962-3.485\r\n\t\t\tC128.138,107.973,189.621,72,256,72c101.458,0,184,82.542,184,184c0,12.509-1.262,25.007-3.749,37.147l-0.803,3.918l23.511,4.819\r\n\t\t\tl0.804-3.919C462.574,284.244,464,270.125,464,256C464,141.309,370.691,48,256,48z"},"children":[]}]},{"name":"path","attribs":{"d":"M416.459,346.119C383.862,404.027,322.379,440,256,440c-101.458,0-184-82.542-184-184c0-12.512,1.262-25.011,3.75-37.15\r\n\t\t\tl0.803-3.918l-23.511-4.819l-0.804,3.918C49.426,227.75,48,241.87,48,256c0,114.691,93.309,208,208,208\r\n\t\t\tc75.033,0,144.531-40.658,181.373-106.109l1.963-3.485l-20.915-11.771L416.459,346.119z"},"children":[{"name":"path","attribs":{"d":"M416.459,346.119C383.862,404.027,322.379,440,256,440c-101.458,0-184-82.542-184-184c0-12.512,1.262-25.011,3.75-37.15\r\n\t\t\tl0.803-3.918l-23.511-4.819l-0.804,3.918C49.426,227.75,48,241.87,48,256c0,114.691,93.309,208,208,208\r\n\t\t\tc75.033,0,144.531-40.658,181.373-106.109l1.963-3.485l-20.915-11.771L416.459,346.119z"},"children":[]}]}]}]},{"name":"polygon","attribs":{"points":"384,256 448,320 512,256 \t"},"children":[{"name":"polygon","attribs":{"points":"384,256 448,320 512,256 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"0,256 64,192 128,256 \t"},"children":[{"name":"polygon","attribs":{"points":"0,256 64,192 128,256 \t"},"children":[]}]}]}]};exports.iosLoopStrong=iosLoopStrong;var iosLoop={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"489.373,256 448,297.373 405.627,256 394.813,266.813 448,320 500.687,267.313 \t"},"children":[{"name":"polygon","attribs":{"points":"489.373,256 448,297.373 405.627,256 394.813,266.813 448,320 500.687,267.313 \t"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M459.994,255.509c-0.002-0.577,0.013-1.157,0.007-1.733l-0.029-0.003C458.771,142.311,367.742,52,256,52\r\n\t\t\tc-73.59,0-141.753,39.878-177.888,104.071l13.943,7.848C125.359,104.754,188.18,68,256,68\r\n\t\t\tc103.273,0,187.355,83.708,187.985,186.836c0.038,6.882-0.281,13.83-1.017,20.831l15.912,1.674\r\n\t\t\tc0.755-7.168,1.105-14.286,1.111-21.341H460C460,255.836,459.994,255.673,459.994,255.509z"},"children":[{"name":"path","attribs":{"d":"M459.994,255.509c-0.002-0.577,0.013-1.157,0.007-1.733l-0.029-0.003C458.771,142.311,367.742,52,256,52\r\n\t\t\tc-73.59,0-141.753,39.878-177.888,104.071l13.943,7.848C125.359,104.754,188.18,68,256,68\r\n\t\t\tc103.273,0,187.355,83.708,187.985,186.836c0.038,6.882-0.281,13.83-1.017,20.831l15.912,1.674\r\n\t\t\tc0.755-7.168,1.105-14.286,1.111-21.341H460C460,255.836,459.994,255.673,459.994,255.509z"},"children":[]}]},{"name":"path","attribs":{"d":"M419.944,348.081C386.641,407.246,323.82,444,256,444c-103.475,0-187.688-84.032-187.993-187.437\r\n\t\t\tc-0.015-6.686,0.31-13.434,1.024-20.23l-15.912-1.674c-0.754,7.168-1.104,14.286-1.108,21.341H52c0,0.472,0.015,0.939,0.018,1.41\r\n\t\t\tc0.006,0.975-0.006,1.952,0.015,2.924l0.022-0.003C54.369,370.825,144.962,460,256,460c73.59,0,141.753-39.878,177.888-104.071\r\n\t\t\tL419.944,348.081z"},"children":[{"name":"path","attribs":{"d":"M419.944,348.081C386.641,407.246,323.82,444,256,444c-103.475,0-187.688-84.032-187.993-187.437\r\n\t\t\tc-0.015-6.686,0.31-13.434,1.024-20.23l-15.912-1.674c-0.754,7.168-1.104,14.286-1.108,21.341H52c0,0.472,0.015,0.939,0.018,1.41\r\n\t\t\tc0.006,0.975-0.006,1.952,0.015,2.924l0.022-0.003C54.369,370.825,144.962,460,256,460c73.59,0,141.753-39.878,177.888-104.071\r\n\t\t\tL419.944,348.081z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"64,192 11.313,244.687 22.627,256 64,214.627 105.373,256 116.687,244.687 \t\t\t"},"children":[{"name":"polygon","attribs":{"points":"64,192 11.313,244.687 22.627,256 64,214.627 105.373,256 116.687,244.687 \t\t\t"},"children":[]}]}]}]}]}]}]}]};exports.iosLoop=iosLoop;var iosMedicalOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M438,187.713l-31.927-55.426L288,200.574V64h-64v136.574l-118.073-68.287l-31.938,55.426L192.092,256L73.998,324.287\r\n\tl31.928,55.426L224,311.426V448h64V311.426l118.072,68.287l31.939-55.426L319.908,256L438,187.713z M416.176,330.125l-15.963,27.866\r\n\tL272,284v148h-32V284l-128.213,74l-15.969-27.785l128.228-74.197L95.822,181.861l15.964-27.859L240,228V80h32v148l128.213-74\r\n\tl15.969,27.785l-128.228,74.179L416.176,330.125z"},"children":[]}]};exports.iosMedicalOutline=iosMedicalOutline;var iosMedical={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M438,187.713l-31.927-55.426L288,200.574V64h-64v136.574l-118.073-68.287l-31.938,55.426L192.092,256L73.998,324.287\r\n\tl31.928,55.426L224,311.426V448h64V311.426l118.072,68.287l31.939-55.426L319.908,256L438,187.713z"},"children":[]}]};exports.iosMedical=iosMedical;var iosMedkitOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M272,208v48v16h16h48v32h-48h-16v16v48h-32v-48v-16h-16h-48v-32h48h16v-16v-48H272 M288,192h-64v64h-64v64h64v64h64v-64\r\n\t\t\th64v-64h-64V192L288,192z"},"children":[{"name":"path","attribs":{"d":"M272,208v48v16h16h48v32h-48h-16v16v48h-32v-48v-16h-16h-48v-32h48h16v-16v-48H272 M288,192h-64v64h-64v64h64v64h64v-64\r\n\t\t\th64v-64h-64V192L288,192z"},"children":[]}]}]}]},{"name":"path","attribs":{"d":"M336,128V96c-0.5-18.2-13.6-32-32.2-32h-99.1C186.1,64,176,77.7,176,96v32H48v320h416V128H336z M192,98.1\r\n\t\tc0-10.2,2.9-18.1,13.7-18.1h97.1c10.4,0,17.2,7.7,17.2,18.1V128H192V98.1z M448,432H64V144h384V432z"},"children":[{"name":"path","attribs":{"d":"M336,128V96c-0.5-18.2-13.6-32-32.2-32h-99.1C186.1,64,176,77.7,176,96v32H48v320h416V128H336z M192,98.1\r\n\t\tc0-10.2,2.9-18.1,13.7-18.1h97.1c10.4,0,17.2,7.7,17.2,18.1V128H192V98.1z M448,432H64V144h384V432z"},"children":[]}]}]}]};exports.iosMedkitOutline=iosMedkitOutline;var iosMedkit={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"272,272 272,256 272,208 240,208 240,256 240,272 224,272 176,272 176,304 224,304 240,304 240,320 240,368 \r\n\t\t272,368 272,320 272,304 288,304 336,304 336,272 288,272 \t"},"children":[{"name":"polygon","attribs":{"points":"272,272 272,256 272,208 240,208 240,256 240,272 224,272 176,272 176,304 224,304 240,304 240,320 240,368 \r\n\t\t272,368 272,320 272,304 288,304 336,304 336,272 288,272 \t"},"children":[]}]},{"name":"path","attribs":{"d":"M336,128V96c-0.5-18.2-13.6-32-32.2-32h-99.1C186.1,64,176,77.7,176,96v32H48v320h416V128H336z M192,98.1\r\n\t\tc0-10.2,2.9-18.1,13.7-18.1h97.1c10.4,0,17.2,7.7,17.2,18.1V128H192V98.1z M352,320h-64v64h-64v-64h-64v-64h64v-64h64v64h64V320z"},"children":[{"name":"path","attribs":{"d":"M336,128V96c-0.5-18.2-13.6-32-32.2-32h-99.1C186.1,64,176,77.7,176,96v32H48v320h416V128H336z M192,98.1\r\n\t\tc0-10.2,2.9-18.1,13.7-18.1h97.1c10.4,0,17.2,7.7,17.2,18.1V128H192V98.1z M352,320h-64v64h-64v-64h-64v-64h64v-64h64v64h64V320z"},"children":[]}]}]}]};exports.iosMedkit=iosMedkit;var iosMicOff={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"264.2","y":"1.1","transform":"matrix(0.8629 -0.5053 0.5053 0.8629 -92.0515 172.66)","width":"16","height":"509.8"},"children":[{"name":"rect","attribs":{"x":"264.2","y":"1.1","transform":"matrix(0.8629 -0.5053 0.5053 0.8629 -92.0515 172.66)","width":"16","height":"509.8"},"children":[]}]},{"name":"path","attribs":{"d":"M256.2,353.4c12.3,0,23.8-2.9,34.2-8.2L177,152.4V270C177,316,212.4,353.4,256.2,353.4z"},"children":[{"name":"path","attribs":{"d":"M256.2,353.4c12.3,0,23.8-2.9,34.2-8.2L177,152.4V270C177,316,212.4,353.4,256.2,353.4z"},"children":[]}]},{"name":"path","attribs":{"d":"M335,270V115.5c0-46-35.2-83.5-79-83.5c-25.4,0-47.8,12.6-62.3,32.2l136.9,233.3C333.5,288.9,335,279.6,335,270z"},"children":[{"name":"path","attribs":{"d":"M335,270V115.5c0-46-35.2-83.5-79-83.5c-25.4,0-47.8,12.6-62.3,32.2l136.9,233.3C333.5,288.9,335,279.6,335,270z"},"children":[]}]},{"name":"path","attribs":{"d":"M384,271.7V192h-17v79.7c0,21.5-6.2,41.6-17.1,58.5l9.9,17C375.1,326,384,299.9,384,271.7z"},"children":[{"name":"path","attribs":{"d":"M384,271.7V192h-17v79.7c0,21.5-6.2,41.6-17.1,58.5l9.9,17C375.1,326,384,299.9,384,271.7z"},"children":[]}]},{"name":"path","attribs":{"d":"M267,399.2c17-1.2,33-5.8,47.3-13l-9.4-16.1c-14.5,7-30.7,10.9-47.7,10.9c-60.3,0-110.1-49-110.1-109.1V192h-19v79.7\r\n\t\tc0,67.2,53,122.6,120,127.4V462h-73v18h161v-18h-69V399.2z"},"children":[{"name":"path","attribs":{"d":"M267,399.2c17-1.2,33-5.8,47.3-13l-9.4-16.1c-14.5,7-30.7,10.9-47.7,10.9c-60.3,0-110.1-49-110.1-109.1V192h-19v79.7\r\n\t\tc0,67.2,53,122.6,120,127.4V462h-73v18h161v-18h-69V399.2z"},"children":[]}]}]}]};exports.iosMicOff=iosMicOff;var iosMicOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,32c-43.7,0-79,37.5-79,83.5V270c0,46,35.3,83.5,79,83.5c43.7,0,79-37.5,79-83.5V115.5C335,69.5,299.7,32,256,32z\r\n\t\t M319,270c0,37.2-28.3,67.5-63,67.5c-34.7,0-63-30.3-63-67.5V115.5c0-37.2,28.3-67.5,63-67.5c34.7,0,63,30.3,63,67.5V270z"},"children":[{"name":"path","attribs":{"d":"M256,32c-43.7,0-79,37.5-79,83.5V270c0,46,35.3,83.5,79,83.5c43.7,0,79-37.5,79-83.5V115.5C335,69.5,299.7,32,256,32z\r\n\t\t M319,270c0,37.2-28.3,67.5-63,67.5c-34.7,0-63-30.3-63-67.5V115.5c0-37.2,28.3-67.5,63-67.5c34.7,0,63,30.3,63,67.5V270z"},"children":[]}]},{"name":"path","attribs":{"d":"M367,192v79.7c0,60.2-49.8,109.2-110,109.2c-60.2,0-110-49-110-109.2V192h-19v79.7c0,67.2,53,122.6,120,127.5V462h-73v18\r\n\t\th161v-18h-69v-62.8c66-4.9,117-60.3,117-127.5V192H367z"},"children":[{"name":"path","attribs":{"d":"M367,192v79.7c0,60.2-49.8,109.2-110,109.2c-60.2,0-110-49-110-109.2V192h-19v79.7c0,67.2,53,122.6,120,127.5V462h-73v18\r\n\t\th161v-18h-69v-62.8c66-4.9,117-60.3,117-127.5V192H367z"},"children":[]}]}]}]};exports.iosMicOutline=iosMicOutline;var iosMic={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,353.5c43.7,0,79-37.5,79-83.5V115.5c0-46-35.3-83.5-79-83.5c-43.7,0-79,37.5-79,83.5V270\r\n\t\tC177,316,212.3,353.5,256,353.5z"},"children":[{"name":"path","attribs":{"d":"M256,353.5c43.7,0,79-37.5,79-83.5V115.5c0-46-35.3-83.5-79-83.5c-43.7,0-79,37.5-79,83.5V270\r\n\t\tC177,316,212.3,353.5,256,353.5z"},"children":[]}]},{"name":"path","attribs":{"d":"M367,192v79.7c0,60.2-49.8,109.2-110,109.2c-60.2,0-110-49-110-109.2V192h-19v79.7c0,67.2,53,122.6,120,127.5V462h-73v18\r\n\t\th161v-18h-69v-62.8c66-4.9,117-60.3,117-127.5V192H367z"},"children":[{"name":"path","attribs":{"d":"M367,192v79.7c0,60.2-49.8,109.2-110,109.2c-60.2,0-110-49-110-109.2V192h-19v79.7c0,67.2,53,122.6,120,127.5V462h-73v18\r\n\t\th161v-18h-69v-62.8c66-4.9,117-60.3,117-127.5V192H367z"},"children":[]}]}]}]};exports.iosMic=iosMic;var iosMinusEmpty={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M384,265H128v-17h256V265z"},"children":[{"name":"path","attribs":{"d":"M384,265H128v-17h256V265z"},"children":[]}]}]}]};exports.iosMinusEmpty=iosMinusEmpty;var iosMinusOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M256,446.7\r\n\t\t\t\tc-105.1,0-190.7-85.5-190.7-190.7c0-105.1,85.5-190.7,190.7-190.7c105.1,0,190.7,85.5,190.7,190.7\r\n\t\t\t\tC446.7,361.1,361.1,446.7,256,446.7z"},"children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M256,446.7\r\n\t\t\t\tc-105.1,0-190.7-85.5-190.7-190.7c0-105.1,85.5-190.7,190.7-190.7c105.1,0,190.7,85.5,190.7,190.7\r\n\t\t\t\tC446.7,361.1,361.1,446.7,256,446.7z"},"children":[]}]}]}]}]}]},{"name":"rect","attribs":{"x":"128","y":"248","width":"256","height":"17"},"children":[{"name":"rect","attribs":{"x":"128","y":"248","width":"256","height":"17"},"children":[]}]}]}]};exports.iosMinusOutline=iosMinusOutline;var iosMinus={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M384,265H128v-17h256V265z"},"children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M384,265H128v-17h256V265z"},"children":[]}]}]}]};exports.iosMinus=iosMinus;var iosMonitorOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M496,384V96H16v288h175v16h-64v16h257v-16h-64v-16H496z M32,112h448v256H32V112z"},"children":[]}]};exports.iosMonitorOutline=iosMonitorOutline;var iosMonitor={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M496,384V96H16v288h175v16h-64v16h257v-16h-64v-16H496z M32,112h448v256H32V112z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"48","y":"128","width":"416","height":"224"},"children":[{"name":"rect","attribs":{"x":"48","y":"128","width":"416","height":"224"},"children":[]}]}]}]};exports.iosMonitor=iosMonitor;var iosMoonOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M343.1,315c-1.8,0.1-3.5,0.1-5.3,0.1c-29.1,0-56.5-11.3-77.1-31.9c-20.6-20.6-31.9-48-31.9-77.1\r\n\t\t\tc0-16.6,3.7-32.6,10.6-47.1c3.1-6.4,6.8-12.5,11.1-18.2c-7.6,0.8-14.9,2.4-22,4.6c-46.8,14.8-80.7,58.5-80.7,110.2\r\n\t\t\tc0,63.8,51.7,115.5,115.5,115.5c35.3,0,66.8-15.8,88-40.7c4.8-5.7,9.2-11.9,12.8-18.5C357.3,313.6,350.3,314.7,343.1,315z\r\n\t\t\t M263.3,355.1c-54.9,0-99.5-44.6-99.5-99.5c0-39.1,22.6-72.9,55.4-89.2c-4.2,12.5-6.4,25.8-6.4,39.7c0,65.9,51,119.9,115.6,124.7\r\n\t\t\tC311,346,288.2,355.1,263.3,355.1z"},"children":[{"name":"path","attribs":{"d":"M343.1,315c-1.8,0.1-3.5,0.1-5.3,0.1c-29.1,0-56.5-11.3-77.1-31.9c-20.6-20.6-31.9-48-31.9-77.1\r\n\t\t\tc0-16.6,3.7-32.6,10.6-47.1c3.1-6.4,6.8-12.5,11.1-18.2c-7.6,0.8-14.9,2.4-22,4.6c-46.8,14.8-80.7,58.5-80.7,110.2\r\n\t\t\tc0,63.8,51.7,115.5,115.5,115.5c35.3,0,66.8-15.8,88-40.7c4.8-5.7,9.2-11.9,12.8-18.5C357.3,313.6,350.3,314.7,343.1,315z\r\n\t\t\t M263.3,355.1c-54.9,0-99.5-44.6-99.5-99.5c0-39.1,22.6-72.9,55.4-89.2c-4.2,12.5-6.4,25.8-6.4,39.7c0,65.9,51,119.9,115.6,124.7\r\n\t\t\tC311,346,288.2,355.1,263.3,355.1z"},"children":[]}]}]}]}]}]};exports.iosMoonOutline=iosMoonOutline;var iosMoon={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M343.1,315c-1.8,0.1-3.5,0.1-5.3,0.1c-29.1,0-56.5-11.3-77.1-31.9c-20.6-20.6-31.9-48-31.9-77.1\r\n\t\t\tc0-16.6,3.7-32.6,10.6-47.1c3.1-6.4,6.8-12.5,11.1-18.2c-7.6,0.8-14.9,2.4-22,4.6c-46.8,14.8-80.7,58.5-80.7,110.2\r\n\t\t\tc0,63.8,51.7,115.5,115.5,115.5c35.3,0,66.8-15.8,88-40.7c4.8-5.7,9.2-11.9,12.8-18.5C357.3,313.6,350.3,314.7,343.1,315z"},"children":[{"name":"path","attribs":{"d":"M343.1,315c-1.8,0.1-3.5,0.1-5.3,0.1c-29.1,0-56.5-11.3-77.1-31.9c-20.6-20.6-31.9-48-31.9-77.1\r\n\t\t\tc0-16.6,3.7-32.6,10.6-47.1c3.1-6.4,6.8-12.5,11.1-18.2c-7.6,0.8-14.9,2.4-22,4.6c-46.8,14.8-80.7,58.5-80.7,110.2\r\n\t\t\tc0,63.8,51.7,115.5,115.5,115.5c35.3,0,66.8-15.8,88-40.7c4.8-5.7,9.2-11.9,12.8-18.5C357.3,313.6,350.3,314.7,343.1,315z"},"children":[]}]}]}]}]}]};exports.iosMoon=iosMoon;var iosMoreOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,238c9.9,0,18,8.1,18,18s-8.1,18-18,18s-18-8.1-18-18S246.1,238,256,238 M256,224c-17.7,0-32,14.3-32,32s14.3,32,32,32\r\n\t\tc17.7,0,32-14.3,32-32S273.7,224,256,224L256,224z"},"children":[{"name":"path","attribs":{"d":"M256,238c9.9,0,18,8.1,18,18s-8.1,18-18,18s-18-8.1-18-18S246.1,238,256,238 M256,224c-17.7,0-32,14.3-32,32s14.3,32,32,32\r\n\t\tc17.7,0,32-14.3,32-32S273.7,224,256,224L256,224z"},"children":[]}]},{"name":"path","attribs":{"d":"M128.4,238c9.9,0,18,8.1,18,18s-8.1,18-18,18c-9.9,0-18-8.1-18-18S118.5,238,128.4,238 M128.4,224c-17.7,0-32,14.3-32,32\r\n\t\ts14.3,32,32,32c17.7,0,32-14.3,32-32S146,224,128.4,224L128.4,224z"},"children":[{"name":"path","attribs":{"d":"M128.4,238c9.9,0,18,8.1,18,18s-8.1,18-18,18c-9.9,0-18-8.1-18-18S118.5,238,128.4,238 M128.4,224c-17.7,0-32,14.3-32,32\r\n\t\ts14.3,32,32,32c17.7,0,32-14.3,32-32S146,224,128.4,224L128.4,224z"},"children":[]}]},{"name":"path","attribs":{"d":"M384,238c9.9,0,18,8.1,18,18s-8.1,18-18,18s-18-8.1-18-18S374.1,238,384,238 M384,224c-17.7,0-32,14.3-32,32s14.3,32,32,32\r\n\t\ts32-14.3,32-32S401.7,224,384,224L384,224z"},"children":[{"name":"path","attribs":{"d":"M384,238c9.9,0,18,8.1,18,18s-8.1,18-18,18s-18-8.1-18-18S374.1,238,384,238 M384,224c-17.7,0-32,14.3-32,32s14.3,32,32,32\r\n\t\ts32-14.3,32-32S401.7,224,384,224L384,224z"},"children":[]}]}]}]};exports.iosMoreOutline=iosMoreOutline;var iosMore={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,224c-17.7,0-32,14.3-32,32s14.3,32,32,32c17.7,0,32-14.3,32-32S273.7,224,256,224L256,224z"},"children":[{"name":"path","attribs":{"d":"M256,224c-17.7,0-32,14.3-32,32s14.3,32,32,32c17.7,0,32-14.3,32-32S273.7,224,256,224L256,224z"},"children":[]}]},{"name":"path","attribs":{"d":"M128.4,224c-17.7,0-32,14.3-32,32s14.3,32,32,32c17.7,0,32-14.3,32-32S146,224,128.4,224L128.4,224z"},"children":[{"name":"path","attribs":{"d":"M128.4,224c-17.7,0-32,14.3-32,32s14.3,32,32,32c17.7,0,32-14.3,32-32S146,224,128.4,224L128.4,224z"},"children":[]}]},{"name":"path","attribs":{"d":"M384,224c-17.7,0-32,14.3-32,32s14.3,32,32,32s32-14.3,32-32S401.7,224,384,224L384,224z"},"children":[{"name":"path","attribs":{"d":"M384,224c-17.7,0-32,14.3-32,32s14.3,32,32,32s32-14.3,32-32S401.7,224,384,224L384,224z"},"children":[]}]}]}]};exports.iosMore=iosMore;var iosMusicalNote={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M352.1,102.3c0-0.1,0-0.2,0-0.2c-0.1-0.3-0.1-0.5-0.2-0.8c0,0,0-0.1,0-0.1c-0.6-1.5-1.8-3-3.5-3.4l-2-0.4L256,78v272.6\r\n\tc-8,0-22.4,0.4-44.5,1.3c-41.8,1.6-51.4,21.6-51.4,40.9c0,24.6,13.2,43.1,61.5,41c51.8-2.3,51.4-48.5,51.4-81.7V159.6l73.6,13.5l0,0\r\n\tc3,0.6,5.4-2.3,5.4-5.3v-64.4C352,103,352.1,102.6,352.1,102.3z"},"children":[]}]};exports.iosMusicalNote=iosMusicalNote;var iosMusicalNotes={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M416,319.9V78l-224,34.6v237.2c-9,0-20.9,0.4-43.5,1.3c-42.6,1.6-52.5,21.8-52.5,41.3c0,24.9,13.5,43.5,62.6,41.4\r\n\tc52.8-2.3,50.3-49,50.3-82.5V189.8l191-32v160.6c-9,0-19.9,0.4-42.6,1.3c-42.6,1.6-52.5,21.8-52.5,41.3c0,24.9,13,43.5,62.2,41.4\r\n\tC420,400.1,416,353.4,416,319.9z"},"children":[]}]};exports.iosMusicalNotes=iosMusicalNotes;var iosNavigateOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,64.5c51.1,0,99.2,19.9,135.4,56.1s56.1,84.2,56.1,135.4s-19.9,99.2-56.1,135.4s-84.2,56.1-135.4,56.1\r\n\t\ts-99.2-19.9-135.4-56.1C84.5,355.2,64.5,307.1,64.5,256s19.9-99.2,56.1-135.4C156.8,84.5,204.9,64.5,256,64.5 M256,48\r\n\t\tC141.1,48,48,141.1,48,256c0,114.9,93.1,208,208,208c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48L256,48z"},"children":[{"name":"path","attribs":{"d":"M256,64.5c51.1,0,99.2,19.9,135.4,56.1s56.1,84.2,56.1,135.4s-19.9,99.2-56.1,135.4s-84.2,56.1-135.4,56.1\r\n\t\ts-99.2-19.9-135.4-56.1C84.5,355.2,64.5,307.1,64.5,256s19.9-99.2,56.1-135.4C156.8,84.5,204.9,64.5,256,64.5 M256,48\r\n\t\tC141.1,48,48,141.1,48,256c0,114.9,93.1,208,208,208c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48L256,48z"},"children":[]}]},{"name":"polygon","attribs":{"points":"352,160 128.3,256 256,256 256,384 \t"},"children":[{"name":"polygon","attribs":{"points":"352,160 128.3,256 256,256 256,384 \t"},"children":[]}]}]}]};exports.iosNavigateOutline=iosNavigateOutline;var iosNavigate={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256c0,114.9,93.1,208,208,208c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48z M256,384\r\n\t\tV256H128.3L352,160L256,384z"},"children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256c0,114.9,93.1,208,208,208c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48z M256,384\r\n\t\tV256H128.3L352,160L256,384z"},"children":[]}]}]}]};exports.iosNavigate=iosNavigate;var iosNutritionOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M358,233.855l0.413-0.039c-0.137-0.137-0.046-0.101-0.185-0.237L279.798,155h-0.004c-5.833-6-14.193-10.154-23.485-10.154\r\n\t\tc-11.811,0-22.115,6.154-27.635,16.154h-0.007c0,0-7.09,10.994-18.27,28.874l32.531,39.637c2.939,3.769,3.296,7.801,1.411,9.689\r\n\t\tl-0.114,0.071c-0.909,0.909-2.021,1.33-3.274,1.33c-1.908,0-4.142-0.99-6.485-2.768l-35.872-29.418\r\n\t\tc-23.546,37.655-56.677,90.634-83.45,133.451l19.072,23.337c2.939,3.77,3.296,7.884,1.41,9.772l-0.114,0.114\r\n\t\tc-0.911,0.913-2.028,1.342-3.287,1.342c-1.905,0-4.136-0.981-6.472-2.755l-21.067-16.533C84.734,389.051,70,412.464,68,414.366\r\n\t\tv0.003c-3,5.062-4.085,11.132-4.085,17.664c0,17.655,14.657,31.967,32.285,31.967c7.821,0,14.57-3.395,20.799-7.5l114.651-84.109\r\n\t\tl-28.838-35.358c-2.94-3.769-3.268-7.887-1.382-9.775l0.128-0.114c0.912-0.912,2.034-1.341,3.294-1.341\r\n\t\tc1.905,0,4.14,0.981,6.476,2.755l37.864,31.59C304.03,319.902,355.082,283,355.082,283h0.005c7.839-6,12.473-15.711,12.473-26.238\r\n\t\tc0-8.704-3.56-17.14-9.56-22.904V233.855z M345.531,269.834c-2.664,1.934-46.692,33.932-95.764,69.899l-28.272-23.483l-0.26-0.223\r\n\t\tl-0.274-0.211c-5.245-3.981-10.663-5.998-16.108-5.998c-5.465,0-10.592,2.097-14.458,5.909l-0.064,0.062l-0.083,0.082l-0.083,0.083\r\n\t\tc-7.808,7.821-7.761,20.823,0.111,30.917l0.11,0.143l0.113,0.138l18.223,22.312l-100.656,73.896\r\n\t\tc-5.066,3.304-8.427,4.657-11.542,4.657c-8.822,0-16-7.171-16-15.983c0-3.086,0.694-6.045,2.017-8.623\r\n\t\tc2.391-3.161,6.6-9.876,18.655-29.351c2.543-4.108,5.252-8.487,8.134-13.129l6.39,5.176l0.195,0.156l0.2,0.152\r\n\t\tc5.245,3.981,10.665,6,16.111,6c5.517,0,10.692-2.139,14.571-6.023l0.114-0.113c7.806-7.817,7.756-20.82-0.118-30.916l-0.113-0.144\r\n\t\tl-0.115-0.142l-11.814-14.455l43.693-69.872l24.059-38.474l21.855,17.922l0.231,0.19l0.24,0.181\r\n\t\tc5.254,3.988,10.678,6.01,16.123,6.01c4.954,0,9.631-1.725,13.339-4.89l0.461-0.337l0.871-0.874\r\n\t\tc7.79-7.803,7.74-20.778-0.118-30.854l-0.12-0.153l-0.124-0.15l-25.239-30.539c2.957-4.703,5.457-8.491,7.405-11.488l5.209-8.494\r\n\t\tc2.777-5.025,7.761-8.157,13.673-8.157c4.367,0,8.76,2.042,12.057,5.43l4.701,4.928h0.122L342,240.286v0.376l5.186,4.716\r\n\t\tc2.793,2.69,4.539,6.782,4.539,11.227C351.725,261.801,349.467,266.728,345.531,269.834z"},"children":[{"name":"path","attribs":{"d":"M358,233.855l0.413-0.039c-0.137-0.137-0.046-0.101-0.185-0.237L279.798,155h-0.004c-5.833-6-14.193-10.154-23.485-10.154\r\n\t\tc-11.811,0-22.115,6.154-27.635,16.154h-0.007c0,0-7.09,10.994-18.27,28.874l32.531,39.637c2.939,3.769,3.296,7.801,1.411,9.689\r\n\t\tl-0.114,0.071c-0.909,0.909-2.021,1.33-3.274,1.33c-1.908,0-4.142-0.99-6.485-2.768l-35.872-29.418\r\n\t\tc-23.546,37.655-56.677,90.634-83.45,133.451l19.072,23.337c2.939,3.77,3.296,7.884,1.41,9.772l-0.114,0.114\r\n\t\tc-0.911,0.913-2.028,1.342-3.287,1.342c-1.905,0-4.136-0.981-6.472-2.755l-21.067-16.533C84.734,389.051,70,412.464,68,414.366\r\n\t\tv0.003c-3,5.062-4.085,11.132-4.085,17.664c0,17.655,14.657,31.967,32.285,31.967c7.821,0,14.57-3.395,20.799-7.5l114.651-84.109\r\n\t\tl-28.838-35.358c-2.94-3.769-3.268-7.887-1.382-9.775l0.128-0.114c0.912-0.912,2.034-1.341,3.294-1.341\r\n\t\tc1.905,0,4.14,0.981,6.476,2.755l37.864,31.59C304.03,319.902,355.082,283,355.082,283h0.005c7.839-6,12.473-15.711,12.473-26.238\r\n\t\tc0-8.704-3.56-17.14-9.56-22.904V233.855z M345.531,269.834c-2.664,1.934-46.692,33.932-95.764,69.899l-28.272-23.483l-0.26-0.223\r\n\t\tl-0.274-0.211c-5.245-3.981-10.663-5.998-16.108-5.998c-5.465,0-10.592,2.097-14.458,5.909l-0.064,0.062l-0.083,0.082l-0.083,0.083\r\n\t\tc-7.808,7.821-7.761,20.823,0.111,30.917l0.11,0.143l0.113,0.138l18.223,22.312l-100.656,73.896\r\n\t\tc-5.066,3.304-8.427,4.657-11.542,4.657c-8.822,0-16-7.171-16-15.983c0-3.086,0.694-6.045,2.017-8.623\r\n\t\tc2.391-3.161,6.6-9.876,18.655-29.351c2.543-4.108,5.252-8.487,8.134-13.129l6.39,5.176l0.195,0.156l0.2,0.152\r\n\t\tc5.245,3.981,10.665,6,16.111,6c5.517,0,10.692-2.139,14.571-6.023l0.114-0.113c7.806-7.817,7.756-20.82-0.118-30.916l-0.113-0.144\r\n\t\tl-0.115-0.142l-11.814-14.455l43.693-69.872l24.059-38.474l21.855,17.922l0.231,0.19l0.24,0.181\r\n\t\tc5.254,3.988,10.678,6.01,16.123,6.01c4.954,0,9.631-1.725,13.339-4.89l0.461-0.337l0.871-0.874\r\n\t\tc7.79-7.803,7.74-20.778-0.118-30.854l-0.12-0.153l-0.124-0.15l-25.239-30.539c2.957-4.703,5.457-8.491,7.405-11.488l5.209-8.494\r\n\t\tc2.777-5.025,7.761-8.157,13.673-8.157c4.367,0,8.76,2.042,12.057,5.43l4.701,4.928h0.122L342,240.286v0.376l5.186,4.716\r\n\t\tc2.793,2.69,4.539,6.782,4.539,11.227C351.725,261.801,349.467,266.728,345.531,269.834z"},"children":[]}]},{"name":"polygon","attribs":{"points":"439.994,115.175 435.216,117.938 343.578,170.93 407.313,60.358 409.83,55.992 396.011,48 393.523,52.313 \r\n\t\t322.748,175.098 339.418,191.794 443.38,131.674 447.974,129.018 \t"},"children":[{"name":"polygon","attribs":{"points":"439.994,115.175 435.216,117.938 343.578,170.93 407.313,60.358 409.83,55.992 396.011,48 393.523,52.313 \r\n\t\t322.748,175.098 339.418,191.794 443.38,131.674 447.974,129.018 \t"},"children":[]}]}]}]};exports.iosNutritionOutline=iosNutritionOutline;var iosNutrition={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M359,233.62l-0.106-0.039c-0.136-0.138-0.306-0.443-0.444-0.579L279.551,154h-0.004c-5.848-6-14.23-10.168-23.547-10.168\r\n\t\tc-11.842,0-22.174,6.168-27.708,16.168h-0.007c0,0-7.109,11.351-18.318,29.249l32.617,39.85c2.947,3.772,3.305,7.895,1.414,9.785\r\n\t\tl-0.114,0.114c-2.296,2.296-5.894,1.535-9.785-1.414l-35.967-29.439c-23.608,37.693-56.827,90.731-83.671,133.592l19.123,23.362\r\n\t\tc2.947,3.772,3.305,7.895,1.414,9.785l-0.114,0.114c-2.296,2.296-5.894,1.535-9.785-1.414l-20.22-16.55\r\n\t\tC84.874,388.974,70.194,412.411,69,414.315v0.003c-3,5.066-5,11.144-5,17.682c0,17.674,14.244,32,31.918,32\r\n\t\tc7.842,0,14.383-3.398,20.628-7.508l114.842-84.195l-28.971-35.395c-2.947-3.772-3.305-7.895-1.414-9.785l0.114-0.114\r\n\t\tc2.296-2.296,5.894-1.534,9.785,1.415l37.963,31.215C303.85,319.348,355.035,282,355.035,282h0.005\r\n\t\tc7.859-6,13.024-15.319,13.024-25.857c0-8.713-3.064-16.75-9.064-22.521V233.62z"},"children":[{"name":"path","attribs":{"d":"M359,233.62l-0.106-0.039c-0.136-0.138-0.306-0.443-0.444-0.579L279.551,154h-0.004c-5.848-6-14.23-10.168-23.547-10.168\r\n\t\tc-11.842,0-22.174,6.168-27.708,16.168h-0.007c0,0-7.109,11.351-18.318,29.249l32.617,39.85c2.947,3.772,3.305,7.895,1.414,9.785\r\n\t\tl-0.114,0.114c-2.296,2.296-5.894,1.535-9.785-1.414l-35.967-29.439c-23.608,37.693-56.827,90.731-83.671,133.592l19.123,23.362\r\n\t\tc2.947,3.772,3.305,7.895,1.414,9.785l-0.114,0.114c-2.296,2.296-5.894,1.535-9.785-1.414l-20.22-16.55\r\n\t\tC84.874,388.974,70.194,412.411,69,414.315v0.003c-3,5.066-5,11.144-5,17.682c0,17.674,14.244,32,31.918,32\r\n\t\tc7.842,0,14.383-3.398,20.628-7.508l114.842-84.195l-28.971-35.395c-2.947-3.772-3.305-7.895-1.414-9.785l0.114-0.114\r\n\t\tc2.296-2.296,5.894-1.534,9.785,1.415l37.963,31.215C303.85,319.348,355.035,282,355.035,282h0.005\r\n\t\tc7.859-6,13.024-15.319,13.024-25.857c0-8.713-3.064-16.75-9.064-22.521V233.62z"},"children":[]}]},{"name":"polygon","attribs":{"points":"448,138.781 431.514,111.087 365.284,149.299 414.515,64.086 386.896,48 316.897,169.084 345.485,197.672 \t"},"children":[{"name":"polygon","attribs":{"points":"448,138.781 431.514,111.087 365.284,149.299 414.515,64.086 386.896,48 316.897,169.084 345.485,197.672 \t"},"children":[]}]}]}]};exports.iosNutrition=iosNutrition;var iosPaperOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M112,64v16v320h16V80h304v337.143c0,8.205-6.652,14.857-14.857,14.857H94.857C86.652,432,80,425.348,80,417.143V128h16v-16\r\n\t\tH64v305.143C64,434.157,77.843,448,94.857,448h322.285C434.157,448,448,434.157,448,417.143V64H112z"},"children":[{"name":"path","attribs":{"d":"M112,64v16v320h16V80h304v337.143c0,8.205-6.652,14.857-14.857,14.857H94.857C86.652,432,80,425.348,80,417.143V128h16v-16\r\n\t\tH64v305.143C64,434.157,77.843,448,94.857,448h322.285C434.157,448,448,434.157,448,417.143V64H112z"},"children":[]}]},{"name":"rect","attribs":{"x":"160","y":"112","width":"128","height":"16"},"children":[{"name":"rect","attribs":{"x":"160","y":"112","width":"128","height":"16"},"children":[]}]},{"name":"rect","attribs":{"x":"160","y":"192","width":"240","height":"16"},"children":[{"name":"rect","attribs":{"x":"160","y":"192","width":"240","height":"16"},"children":[]}]},{"name":"rect","attribs":{"x":"160","y":"272","width":"192","height":"16"},"children":[{"name":"rect","attribs":{"x":"160","y":"272","width":"192","height":"16"},"children":[]}]},{"name":"rect","attribs":{"x":"160","y":"352","width":"240","height":"16"},"children":[{"name":"rect","attribs":{"x":"160","y":"352","width":"240","height":"16"},"children":[]}]}]}]};exports.iosPaperOutline=iosPaperOutline;var iosPaper={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M112,64v16v32v288H96V112H64v305.143C64,434.157,77.843,448,94.857,448h322.285C434.157,448,448,434.157,448,417.143V64H112\r\n\tz M160,112h128v16H160V112z M160,272h192v16H160V272z M400,368H160v-16h240V368z M400,208H160v-16h240V208z"},"children":[]}]};exports.iosPaper=iosPaper;var iosPaperplaneOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M96,249.6l116.6,51.3L269.8,416L416,96L96,249.6z M228.1,296.5l155.7-166.2L269.2,379.2L228.1,296.5z M381.8,128.3\r\n\tL216.8,285.4L134,249L381.8,128.3z"},"children":[]}]};exports.iosPaperplaneOutline=iosPaperplaneOutline;var iosPaperplane={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"96,249.6 202,296.3 416,96 \t"},"children":[{"name":"polygon","attribs":{"points":"96,249.6 202,296.3 416,96 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"416,96 217.9,311.7 269.8,416 \t"},"children":[{"name":"polygon","attribs":{"points":"416,96 217.9,311.7 269.8,416 \t"},"children":[]}]}]}]};exports.iosPaperplane=iosPaperplane;var iosPartlysunnyOutline={"viewBox":"0 0 512 512","children":[{"name":"style","attribs":{"type":"text/css"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"208","y":"96","class":"st0","width":"16","height":"54"},"children":[{"name":"rect","attribs":{"x":"208","y":"96","class":"st0","width":"16","height":"54"},"children":[]}]},{"name":"rect","attribs":{"x":"64","y":"240","class":"st0","width":"55","height":"16"},"children":[{"name":"rect","attribs":{"x":"64","y":"240","class":"st0","width":"55","height":"16"},"children":[]}]},{"name":"polygon","attribs":{"class":"st0","points":"107.5,149.1 118.5,138 149.9,169.6 138.9,180.7 \t\t\t"},"children":[{"name":"polygon","attribs":{"class":"st0","points":"107.5,149.1 118.5,138 149.9,169.6 138.9,180.7 \t\t\t"},"children":[]}]},{"name":"polygon","attribs":{"class":"st0","points":"287.4,179.7 276.4,168.6 307.7,137 318.8,148.1 \t\t\t"},"children":[{"name":"polygon","attribs":{"class":"st0","points":"287.4,179.7 276.4,168.6 307.7,137 318.8,148.1 \t\t\t"},"children":[]}]},{"name":"polygon","attribs":{"class":"st0","points":"120.5,352.5 109.5,341.4 140.9,309.8 151.9,320.9 \t\t\t"},"children":[{"name":"polygon","attribs":{"class":"st0","points":"120.5,352.5 109.5,341.4 140.9,309.8 151.9,320.9 \t\t\t"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"class":"st0","d":"M192.6,294.9c-20.2-8.1-34.6-27.9-34.6-51.1c0-30.3,24.5-55,54.7-55c15.6,0,29.7,6.6,39.6,17.2\r\n\t\t\t\tc4.8-3.5,9.5-6.2,13.6-8.2c-12.9-15.1-32-24.7-53.3-24.7c-38.7,0-70.3,31.7-70.3,70.7c0,27.4,15.6,51.2,38.3,62.9\r\n\t\t\t\tC184.3,301.5,188.5,297.7,192.6,294.9z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M192.6,294.9c-20.2-8.1-34.6-27.9-34.6-51.1c0-30.3,24.5-55,54.7-55c15.6,0,29.7,6.6,39.6,17.2\r\n\t\t\t\tc4.8-3.5,9.5-6.2,13.6-8.2c-12.9-15.1-32-24.7-53.3-24.7c-38.7,0-70.3,31.7-70.3,70.7c0,27.4,15.6,51.2,38.3,62.9\r\n\t\t\t\tC184.3,301.5,188.5,297.7,192.6,294.9z"},"children":[]}]}]}]}]}]},{"name":"path","attribs":{"class":"st0","d":"M299,239.8c14.5,0,28.1,4.8,39.3,13.9c10.9,8.9,18.6,21.3,21.7,34.9l3.1,14l14.2-1.8c2.1-0.3,4.1-0.4,6.1-0.4\r\n\t\tc26.9,0,48.8,22.1,48.8,49.2c0,27.1-21.9,49.2-48.8,49.2H225.7c-9.5,0-18.5-3.9-25.4-10.8c-6.8-7-10.6-16.2-10.6-25.9\r\n\t\tc0-18.6,14.5-33.8,33.2-36.9c1.6-0.3,8.8-1.2,14.2-1.7c0,0-0.5-5.3-0.6-9.6c-0.1-4.3-0.1-9.4-0.1-11.5\r\n\t\tC236.5,268,264.5,239.8,299,239.8 M299,224c-43.3,0-78.3,35.2-78.3,78.5c0,2.6,0.1,5.2,0.4,7.8c-26.4,2.3-47.1,25.5-47.1,52.6\r\n\t\tc0,28.6,23.2,53.1,51.7,53.1h157.7c35.7,0,64.6-29.9,64.6-65.7c0-35.8-28.9-65.3-64.6-65.3c-2.7,0-5.4,0-8,0.3\r\n\t\tC367.5,250.3,336.3,224,299,224L299,224z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M299,239.8c14.5,0,28.1,4.8,39.3,13.9c10.9,8.9,18.6,21.3,21.7,34.9l3.1,14l14.2-1.8c2.1-0.3,4.1-0.4,6.1-0.4\r\n\t\tc26.9,0,48.8,22.1,48.8,49.2c0,27.1-21.9,49.2-48.8,49.2H225.7c-9.5,0-18.5-3.9-25.4-10.8c-6.8-7-10.6-16.2-10.6-25.9\r\n\t\tc0-18.6,14.5-33.8,33.2-36.9c1.6-0.3,8.8-1.2,14.2-1.7c0,0-0.5-5.3-0.6-9.6c-0.1-4.3-0.1-9.4-0.1-11.5\r\n\t\tC236.5,268,264.5,239.8,299,239.8 M299,224c-43.3,0-78.3,35.2-78.3,78.5c0,2.6,0.1,5.2,0.4,7.8c-26.4,2.3-47.1,25.5-47.1,52.6\r\n\t\tc0,28.6,23.2,53.1,51.7,53.1h157.7c35.7,0,64.6-29.9,64.6-65.7c0-35.8-28.9-65.3-64.6-65.3c-2.7,0-5.4,0-8,0.3\r\n\t\tC367.5,250.3,336.3,224,299,224L299,224z"},"children":[]}]}]}]};exports.iosPartlysunnyOutline=iosPartlysunnyOutline;var iosPartlysunny={"viewBox":"0 0 512 512","children":[{"name":"style","attribs":{"type":"text/css"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"208","y":"96","class":"st0","width":"16","height":"54"},"children":[{"name":"rect","attribs":{"x":"208","y":"96","class":"st0","width":"16","height":"54"},"children":[]}]},{"name":"rect","attribs":{"x":"64","y":"240","class":"st0","width":"55","height":"16"},"children":[{"name":"rect","attribs":{"x":"64","y":"240","class":"st0","width":"55","height":"16"},"children":[]}]},{"name":"polygon","attribs":{"class":"st0","points":"107.5,149.1 118.5,138 149.9,169.6 138.9,180.7 \t\t\t"},"children":[{"name":"polygon","attribs":{"class":"st0","points":"107.5,149.1 118.5,138 149.9,169.6 138.9,180.7 \t\t\t"},"children":[]}]},{"name":"polygon","attribs":{"class":"st0","points":"287.4,179.7 276.4,168.6 307.7,137 318.8,148.1 \t\t\t"},"children":[{"name":"polygon","attribs":{"class":"st0","points":"287.4,179.7 276.4,168.6 307.7,137 318.8,148.1 \t\t\t"},"children":[]}]},{"name":"polygon","attribs":{"class":"st0","points":"120.5,352.5 109.5,341.4 140.9,309.8 151.9,320.9 \t\t\t"},"children":[{"name":"polygon","attribs":{"class":"st0","points":"120.5,352.5 109.5,341.4 140.9,309.8 151.9,320.9 \t\t\t"},"children":[]}]}]}]},{"name":"path","attribs":{"class":"st0","d":"M299,224c-43.3,0-78.3,35.2-78.3,78.5c0,2.6,0.1,5.2,0.4,7.8c-26.4,2.3-47.1,25.5-47.1,52.6\r\n\t\t\tc0,28.6,23.2,53.1,51.7,53.1h157.7c35.7,0,64.6-29.9,64.6-65.7c0-35.8-28.9-65.3-64.6-65.3c-2.7,0-5.4,0-8,0.3\r\n\t\t\tC367.5,250.3,336.3,224,299,224L299,224z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M299,224c-43.3,0-78.3,35.2-78.3,78.5c0,2.6,0.1,5.2,0.4,7.8c-26.4,2.3-47.1,25.5-47.1,52.6\r\n\t\t\tc0,28.6,23.2,53.1,51.7,53.1h157.7c35.7,0,64.6-29.9,64.6-65.7c0-35.8-28.9-65.3-64.6-65.3c-2.7,0-5.4,0-8,0.3\r\n\t\t\tC367.5,250.3,336.3,224,299,224L299,224z"},"children":[]}]}]}]},{"name":"path","attribs":{"class":"st0","d":"M264.7,196.3c-12.9-14.3-31.4-23.3-52-23.3c-38.7,0-70.3,31.7-70.3,70.7c0,27.4,15.6,51.2,38.3,62.9\r\n\t\tc0,0,0-0.1,0-0.1c0,0,0.1,0.1,0.1,0.1c4.5-12.1,11.4-19.8,22.6-25.6c0.2-0.1,0.4-0.2,0.7-0.4c0.2-0.1,0.5-0.2,0.7-0.3\r\n\t\tc-0.2-2.3-0.3-4.7-0.3-7c-0.3-31.9,30.2-70.5,61-75.4c0.1-0.1,0.3-0.1,0.4-0.2C265.5,197.3,265.1,196.8,264.7,196.3z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M264.7,196.3c-12.9-14.3-31.4-23.3-52-23.3c-38.7,0-70.3,31.7-70.3,70.7c0,27.4,15.6,51.2,38.3,62.9\r\n\t\tc0,0,0-0.1,0-0.1c0,0,0.1,0.1,0.1,0.1c4.5-12.1,11.4-19.8,22.6-25.6c0.2-0.1,0.4-0.2,0.7-0.4c0.2-0.1,0.5-0.2,0.7-0.3\r\n\t\tc-0.2-2.3-0.3-4.7-0.3-7c-0.3-31.9,30.2-70.5,61-75.4c0.1-0.1,0.3-0.1,0.4-0.2C265.5,197.3,265.1,196.8,264.7,196.3z"},"children":[]}]}]}]};exports.iosPartlysunny=iosPartlysunny;var iosPauseOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M191,112v288h-47V112H191 M207,96h-79v320h79V96L207,96z"},"children":[{"name":"path","attribs":{"d":"M191,112v288h-47V112H191 M207,96h-79v320h79V96L207,96z"},"children":[]}]},{"name":"path","attribs":{"d":"M368,112v288h-47V112H368 M384,96h-79v320h79V96L384,96z"},"children":[{"name":"path","attribs":{"d":"M368,112v288h-47V112H368 M384,96h-79v320h79V96L384,96z"},"children":[]}]}]}]};exports.iosPauseOutline=iosPauseOutline;var iosPause={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"128","y":"96","width":"79","height":"320"},"children":[{"name":"rect","attribs":{"x":"128","y":"96","width":"79","height":"320"},"children":[]}]},{"name":"rect","attribs":{"x":"305","y":"96","width":"79","height":"320"},"children":[{"name":"rect","attribs":{"x":"305","y":"96","width":"79","height":"320"},"children":[]}]}]}]};exports.iosPause=iosPause;var iosPawOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M443.827,195.5c-4.383-11.73-11.753-20.212-21.317-24.524c-4.389-1.975-8.995-2.976-13.688-2.976\r\n\t\tc-20.025,0-40.372,18.667-50.632,46.454c-12.698,34.42-5.315,68.135,17.173,78.423c4.522,2.071,9.365,3.123,14.394,3.123\r\n\t\tc20.396,0,41.126-17.119,51.581-42.596C449.238,234.121,450.168,212.477,443.827,195.5z M426.214,246.295\r\n\t\tc-7.836,18.898-22.994,32.098-36.862,32.098c-2.809,0-5.488-0.569-7.968-1.694c-14.121-6.394-17.862-31.059-8.518-56.152\r\n\t\tc7.775-20.817,22.448-35.355,35.683-35.355c2.51,0,4.979,0.533,7.34,1.588c6.88,3.067,10.622,9.712,12.551,14.745\r\n\t\tC433.35,214.332,432.518,231.068,426.214,246.295z"},"children":[{"name":"path","attribs":{"d":"M443.827,195.5c-4.383-11.73-11.753-20.212-21.317-24.524c-4.389-1.975-8.995-2.976-13.688-2.976\r\n\t\tc-20.025,0-40.372,18.667-50.632,46.454c-12.698,34.42-5.315,68.135,17.173,78.423c4.522,2.071,9.365,3.123,14.394,3.123\r\n\t\tc20.396,0,41.126-17.119,51.581-42.596C449.238,234.121,450.168,212.477,443.827,195.5z M426.214,246.295\r\n\t\tc-7.836,18.898-22.994,32.098-36.862,32.098c-2.809,0-5.488-0.569-7.968-1.694c-14.121-6.394-17.862-31.059-8.518-56.152\r\n\t\tc7.775-20.817,22.448-35.355,35.683-35.355c2.51,0,4.979,0.533,7.34,1.588c6.88,3.067,10.622,9.712,12.551,14.745\r\n\t\tC433.35,214.332,432.518,231.068,426.214,246.295z"},"children":[]}]},{"name":"path","attribs":{"d":"M153.811,214.454C143.551,186.667,123.204,168,103.179,168c-4.693,0-9.3,1.001-13.689,2.976\r\n\t\tc-9.565,4.312-16.934,12.794-21.317,24.524c-6.341,16.977-5.411,38.621,2.49,57.904C81.118,278.881,101.848,296,122.244,296\r\n\t\tc5.028,0,9.871-1.052,14.394-3.123C159.126,282.589,166.509,248.874,153.811,214.454z M130.616,276.698\r\n\t\tc-2.479,1.125-5.16,1.694-7.968,1.694c-13.868,0-29.026-13.199-36.862-32.098c-6.304-15.227-7.136-31.963-2.226-44.771\r\n\t\tc1.929-5.033,5.671-11.678,12.551-14.745c2.361-1.055,4.83-1.588,7.34-1.588c13.234,0,27.907,14.538,35.683,35.355\r\n\t\tC148.479,245.64,144.737,270.305,130.616,276.698z"},"children":[{"name":"path","attribs":{"d":"M153.811,214.454C143.551,186.667,123.204,168,103.179,168c-4.693,0-9.3,1.001-13.689,2.976\r\n\t\tc-9.565,4.312-16.934,12.794-21.317,24.524c-6.341,16.977-5.411,38.621,2.49,57.904C81.118,278.881,101.848,296,122.244,296\r\n\t\tc5.028,0,9.871-1.052,14.394-3.123C159.126,282.589,166.509,248.874,153.811,214.454z M130.616,276.698\r\n\t\tc-2.479,1.125-5.16,1.694-7.968,1.694c-13.868,0-29.026-13.199-36.862-32.098c-6.304-15.227-7.136-31.963-2.226-44.771\r\n\t\tc1.929-5.033,5.671-11.678,12.551-14.745c2.361-1.055,4.83-1.588,7.34-1.588c13.234,0,27.907,14.538,35.683,35.355\r\n\t\tC148.479,245.64,144.737,270.305,130.616,276.698z"},"children":[]}]},{"name":"path","attribs":{"d":"M198.347,210.601c1.855,0.081,3.727,0.03,5.563-0.151c10.787-1.059,20.54-6.594,28.207-16.008\r\n\t\tc12.371-15.191,15.806-38.974,13.201-63.439C241.336,93.3,221.469,65.161,194.776,64c0,0-3.811,0.008-5.75,0.193\r\n\t\tc-11.776,1.164-22.481,7.283-30.957,17.695c-12.291,15.101-18.198,37.57-15.803,60.104\r\n\t\tC146.202,179.269,170.836,209.404,198.347,210.601z M171.047,91.831c3.923-4.739,10.51-10.577,19.62-11.476\r\n\t\tc1.143-0.113,2.288-0.146,3.404-0.098c18.207,0.792,31.859,23.271,34.936,52.428c2.146,20.15-0.148,40.055-9.845,51.779\r\n\t\tc-4.874,5.898-10.556,9.204-16.881,9.825c-1.081,0.104-2.167,0.133-3.229,0.087c-19.257-0.838-37.414-25.091-40.473-54.067\r\n\t\tC156.611,121.779,161.273,103.656,171.047,91.831z"},"children":[{"name":"path","attribs":{"d":"M198.347,210.601c1.855,0.081,3.727,0.03,5.563-0.151c10.787-1.059,20.54-6.594,28.207-16.008\r\n\t\tc12.371-15.191,15.806-38.974,13.201-63.439C241.336,93.3,221.469,65.161,194.776,64c0,0-3.811,0.008-5.75,0.193\r\n\t\tc-11.776,1.164-22.481,7.283-30.957,17.695c-12.291,15.101-18.198,37.57-15.803,60.104\r\n\t\tC146.202,179.269,170.836,209.404,198.347,210.601z M171.047,91.831c3.923-4.739,10.51-10.577,19.62-11.476\r\n\t\tc1.143-0.113,2.288-0.146,3.404-0.098c18.207,0.792,31.859,23.271,34.936,52.428c2.146,20.15-0.148,40.055-9.845,51.779\r\n\t\tc-4.874,5.898-10.556,9.204-16.881,9.825c-1.081,0.104-2.167,0.133-3.229,0.087c-19.257-0.838-37.414-25.091-40.473-54.067\r\n\t\tC156.611,121.779,161.273,103.656,171.047,91.831z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,240c-64,0-128,76.074-128,149.128c0,21.798,10.932,39.331,21.667,46.517C162.925,444.516,172.269,448,191.704,448\r\n\t\tc23.093,0,29.325-8.078,40.136-15.205c7.819-5.152,14.572-9.605,24.161-9.605s16.342,4.453,24.16,9.605\r\n\t\tC290.972,439.922,297.203,448,320.297,448c19.434,0,28.778-3.484,42.036-12.355C373.068,428.459,384,410.926,384,389.128\r\n\t\tC384,316.074,320,240,256,240z M353.963,420.776c-10.964,7.337-17.366,9.778-33.666,9.778c-14.225,0-18.624-3.201-25.911-8.51\r\n\t\tc-1.848-1.344-3.759-2.736-5.946-4.177c-8.619-5.682-18.39-12.123-32.439-12.123s-23.82,6.441-32.438,12.121\r\n\t\tc-2.189,1.442-4.1,2.835-5.947,4.179c-7.287,5.309-11.686,8.51-25.911,8.51c-16.3,0-22.703-2.441-33.667-9.778\r\n\t\tC152.395,417,144,405.456,144,389.128c0-30.277,13.377-64.231,35.783-90.823c10.886-12.921,23.517-23.6,36.526-30.885\r\n\t\tC229.713,259.917,243.067,256,256,256c12.934,0,26.287,3.917,39.691,11.42c13.01,7.285,25.64,17.964,36.525,30.885\r\n\t\tC354.623,324.896,368,358.851,368,389.128C368,405.456,359.605,417,353.963,420.776z"},"children":[{"name":"path","attribs":{"d":"M256,240c-64,0-128,76.074-128,149.128c0,21.798,10.932,39.331,21.667,46.517C162.925,444.516,172.269,448,191.704,448\r\n\t\tc23.093,0,29.325-8.078,40.136-15.205c7.819-5.152,14.572-9.605,24.161-9.605s16.342,4.453,24.16,9.605\r\n\t\tC290.972,439.922,297.203,448,320.297,448c19.434,0,28.778-3.484,42.036-12.355C373.068,428.459,384,410.926,384,389.128\r\n\t\tC384,316.074,320,240,256,240z M353.963,420.776c-10.964,7.337-17.366,9.778-33.666,9.778c-14.225,0-18.624-3.201-25.911-8.51\r\n\t\tc-1.848-1.344-3.759-2.736-5.946-4.177c-8.619-5.682-18.39-12.123-32.439-12.123s-23.82,6.441-32.438,12.121\r\n\t\tc-2.189,1.442-4.1,2.835-5.947,4.179c-7.287,5.309-11.686,8.51-25.911,8.51c-16.3,0-22.703-2.441-33.667-9.778\r\n\t\tC152.395,417,144,405.456,144,389.128c0-30.277,13.377-64.231,35.783-90.823c10.886-12.921,23.517-23.6,36.526-30.885\r\n\t\tC229.713,259.917,243.067,256,256,256c12.934,0,26.287,3.917,39.691,11.42c13.01,7.285,25.64,17.964,36.525,30.885\r\n\t\tC354.623,324.896,368,358.851,368,389.128C368,405.456,359.605,417,353.963,420.776z"},"children":[]}]},{"name":"path","attribs":{"d":"M308.281,210.265c1.836,0.182,3.709,0.232,5.563,0.151c27.511-1.196,52.146-31.332,56.081-68.607\r\n\t\tc2.395-22.534-3.514-45.004-15.804-60.104c-8.476-10.412-18.783-16.228-30.56-17.392c-1.939-0.186-6.146-0.312-6.146-0.312\r\n\t\tc-26.693,1.161-46.561,29.115-50.542,66.817c-2.604,24.466,0.83,48.248,13.2,63.439\r\n\t\tC287.741,203.671,297.494,209.206,308.281,210.265z M283.186,132.501c3.076-29.156,16.729-51.636,34.936-52.428\r\n\t\tc1.115-0.048,2.261-0.016,3.404,0.098c9.109,0.898,15.696,6.736,19.619,11.476c9.774,11.825,14.436,29.948,12.468,48.479\r\n\t\tc-3.06,28.977-21.216,53.229-40.474,54.067c-1.061,0.046-2.146,0.017-3.229-0.087c-6.324-0.621-12.007-3.927-16.881-9.825\r\n\t\tC283.334,172.556,281.039,152.651,283.186,132.501z"},"children":[{"name":"path","attribs":{"d":"M308.281,210.265c1.836,0.182,3.709,0.232,5.563,0.151c27.511-1.196,52.146-31.332,56.081-68.607\r\n\t\tc2.395-22.534-3.514-45.004-15.804-60.104c-8.476-10.412-18.783-16.228-30.56-17.392c-1.939-0.186-6.146-0.312-6.146-0.312\r\n\t\tc-26.693,1.161-46.561,29.115-50.542,66.817c-2.604,24.466,0.83,48.248,13.2,63.439\r\n\t\tC287.741,203.671,297.494,209.206,308.281,210.265z M283.186,132.501c3.076-29.156,16.729-51.636,34.936-52.428\r\n\t\tc1.115-0.048,2.261-0.016,3.404,0.098c9.109,0.898,15.696,6.736,19.619,11.476c9.774,11.825,14.436,29.948,12.468,48.479\r\n\t\tc-3.06,28.977-21.216,53.229-40.474,54.067c-1.061,0.046-2.146,0.017-3.229-0.087c-6.324-0.621-12.007-3.927-16.881-9.825\r\n\t\tC283.334,172.556,281.039,152.651,283.186,132.501z"},"children":[]}]}]}]};exports.iosPawOutline=iosPawOutline;var iosPaw={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M443.827,195.5c-4.383-11.73-11.753-20.212-21.317-24.524c-4.389-1.975-8.995-2.976-13.688-2.976\r\n\t\tc-20.025,0-40.372,18.667-50.632,46.454c-12.698,34.42-5.315,68.135,17.173,78.423c4.522,2.071,9.365,3.123,14.394,3.123\r\n\t\tc20.396,0,41.126-17.119,51.581-42.596C449.238,234.121,450.168,212.477,443.827,195.5z"},"children":[{"name":"path","attribs":{"d":"M443.827,195.5c-4.383-11.73-11.753-20.212-21.317-24.524c-4.389-1.975-8.995-2.976-13.688-2.976\r\n\t\tc-20.025,0-40.372,18.667-50.632,46.454c-12.698,34.42-5.315,68.135,17.173,78.423c4.522,2.071,9.365,3.123,14.394,3.123\r\n\t\tc20.396,0,41.126-17.119,51.581-42.596C449.238,234.121,450.168,212.477,443.827,195.5z"},"children":[]}]},{"name":"path","attribs":{"d":"M153.811,214.454C143.551,186.667,123.204,168,103.179,168c-4.693,0-9.3,1.001-13.689,2.976\r\n\t\tc-9.565,4.312-16.934,12.794-21.317,24.524c-6.341,16.977-5.411,38.621,2.49,57.904C81.118,278.881,101.848,296,122.244,296\r\n\t\tc5.028,0,9.871-1.052,14.394-3.123C159.126,282.589,166.509,248.874,153.811,214.454z"},"children":[{"name":"path","attribs":{"d":"M153.811,214.454C143.551,186.667,123.204,168,103.179,168c-4.693,0-9.3,1.001-13.689,2.976\r\n\t\tc-9.565,4.312-16.934,12.794-21.317,24.524c-6.341,16.977-5.411,38.621,2.49,57.904C81.118,278.881,101.848,296,122.244,296\r\n\t\tc5.028,0,9.871-1.052,14.394-3.123C159.126,282.589,166.509,248.874,153.811,214.454z"},"children":[]}]},{"name":"path","attribs":{"d":"M198.347,210.601c1.855,0.081,3.727,0.03,5.563-0.151c10.787-1.059,20.54-6.594,28.207-16.008\r\n\t\tc12.371-15.191,15.806-38.974,13.201-63.439C241.336,93.3,221.469,65.161,194.776,64c0,0-3.811,0.008-5.75,0.193\r\n\t\tc-11.776,1.164-22.481,7.283-30.957,17.695c-12.291,15.101-18.198,37.57-15.803,60.104\r\n\t\tC146.202,179.269,170.836,209.404,198.347,210.601z"},"children":[{"name":"path","attribs":{"d":"M198.347,210.601c1.855,0.081,3.727,0.03,5.563-0.151c10.787-1.059,20.54-6.594,28.207-16.008\r\n\t\tc12.371-15.191,15.806-38.974,13.201-63.439C241.336,93.3,221.469,65.161,194.776,64c0,0-3.811,0.008-5.75,0.193\r\n\t\tc-11.776,1.164-22.481,7.283-30.957,17.695c-12.291,15.101-18.198,37.57-15.803,60.104\r\n\t\tC146.202,179.269,170.836,209.404,198.347,210.601z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,240c-64,0-128,76.074-128,149.128c0,21.798,10.932,39.331,21.667,46.517C162.925,444.516,172.269,448,191.704,448\r\n\t\tc23.093,0,29.325-8.078,40.136-15.205c7.819-5.152,14.572-9.605,24.161-9.605s16.342,4.453,24.16,9.605\r\n\t\tC290.972,439.922,297.203,448,320.297,448c19.434,0,28.778-3.484,42.036-12.355C373.068,428.459,384,410.926,384,389.128\r\n\t\tC384,316.074,320,240,256,240z"},"children":[{"name":"path","attribs":{"d":"M256,240c-64,0-128,76.074-128,149.128c0,21.798,10.932,39.331,21.667,46.517C162.925,444.516,172.269,448,191.704,448\r\n\t\tc23.093,0,29.325-8.078,40.136-15.205c7.819-5.152,14.572-9.605,24.161-9.605s16.342,4.453,24.16,9.605\r\n\t\tC290.972,439.922,297.203,448,320.297,448c19.434,0,28.778-3.484,42.036-12.355C373.068,428.459,384,410.926,384,389.128\r\n\t\tC384,316.074,320,240,256,240z"},"children":[]}]},{"name":"path","attribs":{"d":"M308.281,210.265c1.836,0.182,3.709,0.232,5.563,0.151c27.511-1.196,52.146-31.332,56.081-68.607\r\n\t\tc2.395-22.534-3.514-45.004-15.804-60.104c-8.476-10.412-18.783-16.228-30.56-17.392c-1.939-0.186-6.146-0.312-6.146-0.312\r\n\t\tc-26.693,1.161-46.561,29.115-50.542,66.817c-2.604,24.466,0.83,48.248,13.2,63.439\r\n\t\tC287.741,203.671,297.494,209.206,308.281,210.265z"},"children":[{"name":"path","attribs":{"d":"M308.281,210.265c1.836,0.182,3.709,0.232,5.563,0.151c27.511-1.196,52.146-31.332,56.081-68.607\r\n\t\tc2.395-22.534-3.514-45.004-15.804-60.104c-8.476-10.412-18.783-16.228-30.56-17.392c-1.939-0.186-6.146-0.312-6.146-0.312\r\n\t\tc-26.693,1.161-46.561,29.115-50.542,66.817c-2.604,24.466,0.83,48.248,13.2,63.439\r\n\t\tC287.741,203.671,297.494,209.206,308.281,210.265z"},"children":[]}]}]}]};exports.iosPaw=iosPaw;var iosPeopleOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,112L256,112L256,112z"},"children":[{"name":"path","attribs":{"d":"M256,112L256,112L256,112z"},"children":[]}]},{"name":"path","attribs":{"d":"M349.2,334.8c-13.5-4.7-28.1-5-41.6-9.7c-4.1-1.4-12.2-3.1-13.9-7.8c-1.6-4.6-1.6-10-1.9-14.8c-0.2-3.8-0.3-7.6-0.3-11.4\r\n\t\t\tc0-2.5,6.4-7.8,7.8-10.1c5.4-9,5.9-21.1,6.9-31.3c8.7,2.4,9.8-13.7,11.3-18.6c1.1-3.4,7.8-26.8-2.6-23.6c2.5-4.4,3.5-9.8,4.2-14.7\r\n\t\t\tc2-12.8,2.8-26.8-1.1-39.3c-8.1-26-33-40.6-59.3-41.4c-26.7-0.9-53.5,11.9-63.5,37.8c-4.8,12.6-4.4,26.3-2.8,39.5\r\n\t\t\tc0.7,6,1.7,12.7,4.7,18.1c-9.7-2.9-4.5,17.7-3.4,21.3c1.6,5.1,3,23.4,12.1,20.9c0.8,8.1,1.7,16.4,3.9,24.3\r\n\t\t\tc1.5,5.3,4.6,9.8,8.2,13.9c1.8,2,2.7,2.2,2.6,4.8c-0.1,7.8,0.1,16.2-1.9,23.8c-2,7.6-18.7,10.8-25.4,12.2\r\n\t\t\tc-18,3.7-34.6,5.4-49.6,16.6C126.1,358.2,117,378.3,117,400c83.3,0,166.6,0,249.9,0c9.4,0,18.7,0,28.1,0\r\n\t\t\tC395,370.5,377.2,344.5,349.2,334.8C338,330.9,360.5,338.7,349.2,334.8z M147.1,363.6c5.6-5.9,12.7-11.1,20.4-14\r\n\t\t\tc10.5-4,22.4-3.8,33.3-6.6c9-2.3,20.2-5.9,27.2-12.4c6.4-6,7.1-15.2,7.7-23.5c0.5-7,0.4-13.9,0.4-20.9c0-4.9-5.7-7.7-8.5-11.6\r\n\t\t\tc-4.5-6.1-4.7-15.2-5.6-22.5c-0.4-3.2-0.5-7.3-3.2-9.5c-3-2.4-5.2-3.7-6.7-7.5c-2-5.2-2.7-10.8-4.3-16.2c-1-3.5,2.5-6.8,3.9-9.7\r\n\t\t\tc2.6-5.3-1.9-13.5-2.8-19c-2.8-16.4-2.7-34.3,9.1-47.3c23.7-26.2,78-17.9,85.8,18.9c2.4,11.5,0.9,24.9-2.3,36.1\r\n\t\t\tc-1.4,4.8-3,8.3-0.2,13c4.2,6.8,2.4,11.2,0.4,18.8c-1.6,6.3-3.6,9.1-8.4,13c-4,3.2-3.4,11.2-4.1,15.8c-0.8,5.6-1.3,11.5-4.7,16.2\r\n\t\t\tc-1.3,1.8-8.4,7.4-8.4,9.3c0,11-0.5,22.2,1.4,33.1c2.6,15.5,15.6,19.2,28.6,24.5c13.2,5.1,28.5,3.2,41.3,9.5\r\n\t\t\tc13.2,6.5,25.9,18.4,29.7,33.1c-79.3,0-158.6,0-237.9,0c-1.4,0-2.8,0-4.2,0C136.9,375.9,141.5,369.6,147.1,363.6\r\n\t\t\tC156.3,353.9,141.2,369.9,147.1,363.6z"},"children":[{"name":"path","attribs":{"d":"M349.2,334.8c-13.5-4.7-28.1-5-41.6-9.7c-4.1-1.4-12.2-3.1-13.9-7.8c-1.6-4.6-1.6-10-1.9-14.8c-0.2-3.8-0.3-7.6-0.3-11.4\r\n\t\t\tc0-2.5,6.4-7.8,7.8-10.1c5.4-9,5.9-21.1,6.9-31.3c8.7,2.4,9.8-13.7,11.3-18.6c1.1-3.4,7.8-26.8-2.6-23.6c2.5-4.4,3.5-9.8,4.2-14.7\r\n\t\t\tc2-12.8,2.8-26.8-1.1-39.3c-8.1-26-33-40.6-59.3-41.4c-26.7-0.9-53.5,11.9-63.5,37.8c-4.8,12.6-4.4,26.3-2.8,39.5\r\n\t\t\tc0.7,6,1.7,12.7,4.7,18.1c-9.7-2.9-4.5,17.7-3.4,21.3c1.6,5.1,3,23.4,12.1,20.9c0.8,8.1,1.7,16.4,3.9,24.3\r\n\t\t\tc1.5,5.3,4.6,9.8,8.2,13.9c1.8,2,2.7,2.2,2.6,4.8c-0.1,7.8,0.1,16.2-1.9,23.8c-2,7.6-18.7,10.8-25.4,12.2\r\n\t\t\tc-18,3.7-34.6,5.4-49.6,16.6C126.1,358.2,117,378.3,117,400c83.3,0,166.6,0,249.9,0c9.4,0,18.7,0,28.1,0\r\n\t\t\tC395,370.5,377.2,344.5,349.2,334.8C338,330.9,360.5,338.7,349.2,334.8z M147.1,363.6c5.6-5.9,12.7-11.1,20.4-14\r\n\t\t\tc10.5-4,22.4-3.8,33.3-6.6c9-2.3,20.2-5.9,27.2-12.4c6.4-6,7.1-15.2,7.7-23.5c0.5-7,0.4-13.9,0.4-20.9c0-4.9-5.7-7.7-8.5-11.6\r\n\t\t\tc-4.5-6.1-4.7-15.2-5.6-22.5c-0.4-3.2-0.5-7.3-3.2-9.5c-3-2.4-5.2-3.7-6.7-7.5c-2-5.2-2.7-10.8-4.3-16.2c-1-3.5,2.5-6.8,3.9-9.7\r\n\t\t\tc2.6-5.3-1.9-13.5-2.8-19c-2.8-16.4-2.7-34.3,9.1-47.3c23.7-26.2,78-17.9,85.8,18.9c2.4,11.5,0.9,24.9-2.3,36.1\r\n\t\t\tc-1.4,4.8-3,8.3-0.2,13c4.2,6.8,2.4,11.2,0.4,18.8c-1.6,6.3-3.6,9.1-8.4,13c-4,3.2-3.4,11.2-4.1,15.8c-0.8,5.6-1.3,11.5-4.7,16.2\r\n\t\t\tc-1.3,1.8-8.4,7.4-8.4,9.3c0,11-0.5,22.2,1.4,33.1c2.6,15.5,15.6,19.2,28.6,24.5c13.2,5.1,28.5,3.2,41.3,9.5\r\n\t\t\tc13.2,6.5,25.9,18.4,29.7,33.1c-79.3,0-158.6,0-237.9,0c-1.4,0-2.8,0-4.2,0C136.9,375.9,141.5,369.6,147.1,363.6\r\n\t\t\tC156.3,353.9,141.2,369.9,147.1,363.6z"},"children":[]}]}]}]},{"name":"path","attribs":{"d":"M144.1,322c7-3.5,14.6-4.3,22.3-5.1c2.8-0.3,4.1-2.2,2-4.9c-4-5.1-17.8-6.1-23.6-8.4c-3.6-1.4-4.6-2.7-4.9-6.7\r\n\t\tc-0.1-1.8-1.1-9.8,0.3-11.1c1-1,7.3-0.6,8.7-0.8c5.7-0.7,11.5-1.9,16.9-4c2.3-0.9,4.5-2,6.5-3.4c2.4-1.8-1.8-6.2-2.9-8.6\r\n\t\tc-3.4-7.5-4.9-15.7-5.4-23.9c-1-16.1,1.5-32.3-1.5-48.3c-4.5-24.5-23.4-36.8-47.5-36.8c-14.9,0-29.6,5.1-37.9,18.1\r\n\t\tc-9.2,14.3-8.7,32.1-8.2,48.4c0.3,9.3,0.7,18.7-0.6,28c-0.6,4-1.5,7.9-2.9,11.7c-1.1,2.9-6.7,10.1-4.5,11.6\r\n\t\tc8.3,5.9,22.3,7.9,32.3,7.1c0.3,4.9,1.2,11.2-0.6,15.8c-2.8,7.2-23.7,9.1-30,11.2C45,317.8,32,332.5,32,352c18.3,0,36.5,0,54.8,0\r\n\t\tc8.2,0,16.4,0,24.7,0c1.3,0,6.3-9.3,7.7-10.8C126.2,333.4,134.8,326.7,144.1,322C153.1,317.5,129.5,329.4,144.1,322z M102.8,336\r\n\t\tc-16.3,0-32.6,0-48.9,0c7.1-11.8,24.9-11,36.6-15.2c10.8-3.9,17.7-10.5,18.8-22c0.1-1.3,0.2-29.2-0.9-29.2\r\n\t\tc-8.7-0.3-17.8-0.1-26.5-1.4c6.9-22.3,0.3-45.3,4-67.8c2.7-16.3,13.1-25.3,29.7-25.3c15.9,0,27.7,7.4,31.1,23.4\r\n\t\tc4.8,23.2-2,46.9,5.4,69.9c-5.5,1.4-11.3,1.6-17,1.8c-2.8,0.1-5.7,0.2-8.5,0.3c-1.8,0.1-1.2,3.2-1.3,4.7c-1,10.9-5,28.1,3.7,36.9\r\n\t\tC119.4,318.1,109,326.4,102.8,336z"},"children":[{"name":"path","attribs":{"d":"M144.1,322c7-3.5,14.6-4.3,22.3-5.1c2.8-0.3,4.1-2.2,2-4.9c-4-5.1-17.8-6.1-23.6-8.4c-3.6-1.4-4.6-2.7-4.9-6.7\r\n\t\tc-0.1-1.8-1.1-9.8,0.3-11.1c1-1,7.3-0.6,8.7-0.8c5.7-0.7,11.5-1.9,16.9-4c2.3-0.9,4.5-2,6.5-3.4c2.4-1.8-1.8-6.2-2.9-8.6\r\n\t\tc-3.4-7.5-4.9-15.7-5.4-23.9c-1-16.1,1.5-32.3-1.5-48.3c-4.5-24.5-23.4-36.8-47.5-36.8c-14.9,0-29.6,5.1-37.9,18.1\r\n\t\tc-9.2,14.3-8.7,32.1-8.2,48.4c0.3,9.3,0.7,18.7-0.6,28c-0.6,4-1.5,7.9-2.9,11.7c-1.1,2.9-6.7,10.1-4.5,11.6\r\n\t\tc8.3,5.9,22.3,7.9,32.3,7.1c0.3,4.9,1.2,11.2-0.6,15.8c-2.8,7.2-23.7,9.1-30,11.2C45,317.8,32,332.5,32,352c18.3,0,36.5,0,54.8,0\r\n\t\tc8.2,0,16.4,0,24.7,0c1.3,0,6.3-9.3,7.7-10.8C126.2,333.4,134.8,326.7,144.1,322C153.1,317.5,129.5,329.4,144.1,322z M102.8,336\r\n\t\tc-16.3,0-32.6,0-48.9,0c7.1-11.8,24.9-11,36.6-15.2c10.8-3.9,17.7-10.5,18.8-22c0.1-1.3,0.2-29.2-0.9-29.2\r\n\t\tc-8.7-0.3-17.8-0.1-26.5-1.4c6.9-22.3,0.3-45.3,4-67.8c2.7-16.3,13.1-25.3,29.7-25.3c15.9,0,27.7,7.4,31.1,23.4\r\n\t\tc4.8,23.2-2,46.9,5.4,69.9c-5.5,1.4-11.3,1.6-17,1.8c-2.8,0.1-5.7,0.2-8.5,0.3c-1.8,0.1-1.2,3.2-1.3,4.7c-1,10.9-5,28.1,3.7,36.9\r\n\t\tC119.4,318.1,109,326.4,102.8,336z"},"children":[]}]},{"name":"path","attribs":{"d":"M399.8,352c26.7,0,53.5,0,80.2,0c0-19.5-13.1-34.3-30.7-40.1c-8.1-2.6-23.7-3.4-29.5-10.4c-2.9-3.5-1.3-12.4-1-16.6\r\n\t\tc4.4,0.4,9.2-0.3,13.7-0.9c4.1-0.6,8.1-1.4,12-2.8c1.8-0.7,3.6-1.4,5.3-2.4c3.9-2.3,2.1-2.7,0.1-6.1c-10.9-18.3-6-41.5-6.5-61.6\r\n\t\tc-0.4-16.7-4.8-35-20-44.4c-13.7-8.5-34-8.8-48.7-2.8c-42.4,17-17.4,73.2-31.9,105.4c-2.5,5.4-6.1,7.3,0.2,10.5\r\n\t\tc3.5,1.8,7.3,3,11.1,3.9c5.8,1.4,11.8,2.2,17.8,2.4c1,0,0.3,12.6,0,13.9c-1.1,4.9-11.8,6.3-15.8,7.4c-4.1,1.1-10.9,1.4-12.9,5.7\r\n\t\tc-3,6.4,9.9,4.8,13.1,5.4c10.3,1.9,19.4,7.6,27.4,14.1C389.6,337.4,397.6,344.2,399.8,352z M399.4,324.9c-5.1-4.7-10.4-9.3-16.3-13\r\n\t\tc8.8-8.8,4.7-25.9,3.7-36.9c-0.6-6.3-2-4.7-8.3-4.9c-6-0.2-12.8,0.1-18.5-1.8c7.2-22.3,1.3-45.2,5-67.9\r\n\t\tc2.8-17.1,14.5-25.5,31.5-25.5c15.4,0,26,7.7,29.2,23c4.9,23.1-2.6,47,4.5,70c-8.5,1.3-17.3,1-25.9,1.3c-2.1,0.1-1.9,25.1-1.7,27.3\r\n\t\tc0.7,11.7,6.1,18.8,17.2,23.3c12.1,4.9,31,3.6,38.4,15.9c-9.3,0-18.5,0-27.8,0c-5.6,0-11.2,0-16.9,0\r\n\t\tC406.4,335.8,404.6,329.6,399.4,324.9C394.4,320.3,403.4,328.5,399.4,324.9z"},"children":[{"name":"path","attribs":{"d":"M399.8,352c26.7,0,53.5,0,80.2,0c0-19.5-13.1-34.3-30.7-40.1c-8.1-2.6-23.7-3.4-29.5-10.4c-2.9-3.5-1.3-12.4-1-16.6\r\n\t\tc4.4,0.4,9.2-0.3,13.7-0.9c4.1-0.6,8.1-1.4,12-2.8c1.8-0.7,3.6-1.4,5.3-2.4c3.9-2.3,2.1-2.7,0.1-6.1c-10.9-18.3-6-41.5-6.5-61.6\r\n\t\tc-0.4-16.7-4.8-35-20-44.4c-13.7-8.5-34-8.8-48.7-2.8c-42.4,17-17.4,73.2-31.9,105.4c-2.5,5.4-6.1,7.3,0.2,10.5\r\n\t\tc3.5,1.8,7.3,3,11.1,3.9c5.8,1.4,11.8,2.2,17.8,2.4c1,0,0.3,12.6,0,13.9c-1.1,4.9-11.8,6.3-15.8,7.4c-4.1,1.1-10.9,1.4-12.9,5.7\r\n\t\tc-3,6.4,9.9,4.8,13.1,5.4c10.3,1.9,19.4,7.6,27.4,14.1C389.6,337.4,397.6,344.2,399.8,352z M399.4,324.9c-5.1-4.7-10.4-9.3-16.3-13\r\n\t\tc8.8-8.8,4.7-25.9,3.7-36.9c-0.6-6.3-2-4.7-8.3-4.9c-6-0.2-12.8,0.1-18.5-1.8c7.2-22.3,1.3-45.2,5-67.9\r\n\t\tc2.8-17.1,14.5-25.5,31.5-25.5c15.4,0,26,7.7,29.2,23c4.9,23.1-2.6,47,4.5,70c-8.5,1.3-17.3,1-25.9,1.3c-2.1,0.1-1.9,25.1-1.7,27.3\r\n\t\tc0.7,11.7,6.1,18.8,17.2,23.3c12.1,4.9,31,3.6,38.4,15.9c-9.3,0-18.5,0-27.8,0c-5.6,0-11.2,0-16.9,0\r\n\t\tC406.4,335.8,404.6,329.6,399.4,324.9C394.4,320.3,403.4,328.5,399.4,324.9z"},"children":[]}]}]}]};exports.iosPeopleOutline=iosPeopleOutline;var iosPeople={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M349.2,334.8C360.5,338.7,338,330.9,349.2,334.8L349.2,334.8z"},"children":[{"name":"path","attribs":{"d":"M349.2,334.8C360.5,338.7,338,330.9,349.2,334.8L349.2,334.8z"},"children":[]}]},{"name":"path","attribs":{"d":"M349.2,334.8c-13.5-4.7-28.1-5-41.6-9.7c-4.1-1.4-12.2-3.1-13.9-7.8c-1.6-4.6-1.6-10-1.9-14.8c-0.2-3.8-0.3-7.6-0.3-11.4\r\n\t\tc0-2.5,6.4-7.8,7.8-10.1c5.4-9,5.9-21.1,6.9-31.3c8.7,2.4,9.8-13.7,11.3-18.6c1.1-3.4,7.8-26.8-2.6-23.6c2.5-4.4,3.5-9.8,4.2-14.7\r\n\t\tc2-12.8,2.8-26.8-1.1-39.3c-8.1-26-33-40.6-59.3-41.4c-26.7-0.9-53.5,11.9-63.5,37.8c-4.8,12.6-4.4,26.3-2.8,39.5\r\n\t\tc0.7,6,1.7,12.7,4.7,18.1c-9.7-2.9-4.5,17.7-3.4,21.3c1.6,5.1,3,23.4,12.1,20.9c0.8,8.1,1.7,16.4,3.9,24.3\r\n\t\tc1.5,5.3,4.6,9.8,8.2,13.9c1.8,2,2.7,2.2,2.6,4.8c-0.1,7.8,0.1,16.2-1.9,23.8c-2,7.6-18.7,10.8-25.4,12.2\r\n\t\tc-18,3.7-34.6,5.4-49.6,16.6C126.1,358.2,117,378.3,117,400c83.3,0,166.6,0,249.9,0c9.4,0,18.7,0,28.1,0\r\n\t\tC395,370.5,377.2,344.5,349.2,334.8z"},"children":[{"name":"path","attribs":{"d":"M349.2,334.8c-13.5-4.7-28.1-5-41.6-9.7c-4.1-1.4-12.2-3.1-13.9-7.8c-1.6-4.6-1.6-10-1.9-14.8c-0.2-3.8-0.3-7.6-0.3-11.4\r\n\t\tc0-2.5,6.4-7.8,7.8-10.1c5.4-9,5.9-21.1,6.9-31.3c8.7,2.4,9.8-13.7,11.3-18.6c1.1-3.4,7.8-26.8-2.6-23.6c2.5-4.4,3.5-9.8,4.2-14.7\r\n\t\tc2-12.8,2.8-26.8-1.1-39.3c-8.1-26-33-40.6-59.3-41.4c-26.7-0.9-53.5,11.9-63.5,37.8c-4.8,12.6-4.4,26.3-2.8,39.5\r\n\t\tc0.7,6,1.7,12.7,4.7,18.1c-9.7-2.9-4.5,17.7-3.4,21.3c1.6,5.1,3,23.4,12.1,20.9c0.8,8.1,1.7,16.4,3.9,24.3\r\n\t\tc1.5,5.3,4.6,9.8,8.2,13.9c1.8,2,2.7,2.2,2.6,4.8c-0.1,7.8,0.1,16.2-1.9,23.8c-2,7.6-18.7,10.8-25.4,12.2\r\n\t\tc-18,3.7-34.6,5.4-49.6,16.6C126.1,358.2,117,378.3,117,400c83.3,0,166.6,0,249.9,0c9.4,0,18.7,0,28.1,0\r\n\t\tC395,370.5,377.2,344.5,349.2,334.8z"},"children":[]}]},{"name":"path","attribs":{"d":"M143.3,322.5c0.6-0.3,1.2-0.6,1.6-0.8c-0.3,0.1-0.6,0.3-0.8,0.4C143.8,322.2,143.6,322.3,143.3,322.5z"},"children":[{"name":"path","attribs":{"d":"M143.3,322.5c0.6-0.3,1.2-0.6,1.6-0.8c-0.3,0.1-0.6,0.3-0.8,0.4C143.8,322.2,143.6,322.3,143.3,322.5z"},"children":[]}]},{"name":"path","attribs":{"d":"M143.3,322.5c-3.4,1.7-7.5,3.8,0.8-0.4c3-1.5,2.4-1.2,0.8-0.4c6.8-3.2,14.1-4,21.4-4.7c2.8-0.3,4.1-2.2,2-4.9\r\n\t\tc-4-5.1-17.8-6.1-23.6-8.4c-3.6-1.4-4.6-2.7-4.9-6.7c-0.1-1.8-1.1-9.8,0.3-11.1c1-1,7.3-0.6,8.7-0.8c5.7-0.7,11.5-1.9,16.9-4\r\n\t\tc2.3-0.9,4.5-2,6.5-3.4c2.4-1.8-1.8-6.2-2.9-8.6c-3.4-7.5-4.9-15.7-5.4-23.9c-1-16.1,1.5-32.3-1.5-48.3\r\n\t\tc-4.5-24.5-23.4-36.8-47.5-36.8c-14.9,0-29.6,5.1-37.9,18.1c-9.2,14.3-8.7,32.1-8.2,48.4c0.3,9.3,0.7,18.7-0.6,28\r\n\t\tc-0.6,4-1.5,7.9-2.9,11.7c-1.1,2.9-6.7,10.1-4.5,11.6c8.3,5.9,22.3,7.9,32.3,7.1c0.3,4.9,1.2,11.2-0.6,15.8\r\n\t\tc-2.8,7.2-23.7,9.1-30,11.2C45,317.8,32,332,32,352c18.3,0,36.5,0,54.8,0c8.2,0,16.4,0,24.7,0c1.3,0,6.3-9.3,7.7-10.8\r\n\t\tC126,333.7,134.3,327.2,143.3,322.5z"},"children":[{"name":"path","attribs":{"d":"M143.3,322.5c-3.4,1.7-7.5,3.8,0.8-0.4c3-1.5,2.4-1.2,0.8-0.4c6.8-3.2,14.1-4,21.4-4.7c2.8-0.3,4.1-2.2,2-4.9\r\n\t\tc-4-5.1-17.8-6.1-23.6-8.4c-3.6-1.4-4.6-2.7-4.9-6.7c-0.1-1.8-1.1-9.8,0.3-11.1c1-1,7.3-0.6,8.7-0.8c5.7-0.7,11.5-1.9,16.9-4\r\n\t\tc2.3-0.9,4.5-2,6.5-3.4c2.4-1.8-1.8-6.2-2.9-8.6c-3.4-7.5-4.9-15.7-5.4-23.9c-1-16.1,1.5-32.3-1.5-48.3\r\n\t\tc-4.5-24.5-23.4-36.8-47.5-36.8c-14.9,0-29.6,5.1-37.9,18.1c-9.2,14.3-8.7,32.1-8.2,48.4c0.3,9.3,0.7,18.7-0.6,28\r\n\t\tc-0.6,4-1.5,7.9-2.9,11.7c-1.1,2.9-6.7,10.1-4.5,11.6c8.3,5.9,22.3,7.9,32.3,7.1c0.3,4.9,1.2,11.2-0.6,15.8\r\n\t\tc-2.8,7.2-23.7,9.1-30,11.2C45,317.8,32,332,32,352c18.3,0,36.5,0,54.8,0c8.2,0,16.4,0,24.7,0c1.3,0,6.3-9.3,7.7-10.8\r\n\t\tC126,333.7,134.3,327.2,143.3,322.5z"},"children":[]}]},{"name":"path","attribs":{"d":"M449.3,311.9c-8.1-2.6-23.7-3.4-29.5-10.4c-2.9-3.5-1.3-12.4-1-16.6c4.4,0.4,9.2-0.3,13.7-0.9c4.1-0.6,8.1-1.4,12-2.8\r\n\t\tc1.8-0.7,3.6-1.4,5.3-2.4c3.9-2.3,2.1-2.7,0.1-6.1c-10.9-18.3-6-41.5-6.5-61.6c-0.4-16.7-4.8-35-20-44.4c-13.7-8.5-34-8.8-48.7-2.8\r\n\t\tc-42.4,17-17.4,73.2-31.9,105.4c-2.5,5.4-6.1,7.3,0.2,10.5c3.5,1.8,7.3,3,11.1,3.9c5.8,1.4,11.8,2.2,17.8,2.4c1,0,0.3,12.6,0,13.9\r\n\t\tc-1.1,4.9-11.8,6.3-15.8,7.4c-4.1,1.1-10.9,1.4-12.9,5.7c-3,6.4,9.9,4.8,13.1,5.4c10.3,1.9,19.4,7.6,27.4,14.1\r\n\t\tc6,4.9,14.1,11.5,16.3,19.5c26.7,0,53.5,0,80.2,0C480,332,466.9,317.7,449.3,311.9z"},"children":[{"name":"path","attribs":{"d":"M449.3,311.9c-8.1-2.6-23.7-3.4-29.5-10.4c-2.9-3.5-1.3-12.4-1-16.6c4.4,0.4,9.2-0.3,13.7-0.9c4.1-0.6,8.1-1.4,12-2.8\r\n\t\tc1.8-0.7,3.6-1.4,5.3-2.4c3.9-2.3,2.1-2.7,0.1-6.1c-10.9-18.3-6-41.5-6.5-61.6c-0.4-16.7-4.8-35-20-44.4c-13.7-8.5-34-8.8-48.7-2.8\r\n\t\tc-42.4,17-17.4,73.2-31.9,105.4c-2.5,5.4-6.1,7.3,0.2,10.5c3.5,1.8,7.3,3,11.1,3.9c5.8,1.4,11.8,2.2,17.8,2.4c1,0,0.3,12.6,0,13.9\r\n\t\tc-1.1,4.9-11.8,6.3-15.8,7.4c-4.1,1.1-10.9,1.4-12.9,5.7c-3,6.4,9.9,4.8,13.1,5.4c10.3,1.9,19.4,7.6,27.4,14.1\r\n\t\tc6,4.9,14.1,11.5,16.3,19.5c26.7,0,53.5,0,80.2,0C480,332,466.9,317.7,449.3,311.9z"},"children":[]}]}]}]};exports.iosPeople=iosPeople;var iosPersonOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M202.4,201.7L202.4,201.7L202.4,201.7z"},"children":[{"name":"path","attribs":{"d":"M202.4,201.7L202.4,201.7L202.4,201.7z"},"children":[]}]},{"name":"path","attribs":{"d":"M363.3,363.9c-12.9-4.6-31.4-6.2-43.2-8.8c-6.8-1.5-16.7-5.3-20-9.2c-3.3-4-1.3-40.9-1.3-40.9s6.1-9.6,9.4-18\r\n\t\ts6.9-31.4,6.9-31.4s6.8,0,9.2-11.9c2.6-13,6.6-18.4,6.1-28.1c-0.5-9-5.2-9.5-5.7-9.5l0,0c0,0,4.9-13.6,5.6-42.4\r\n\t\tC331.1,129.6,305,96,256,96s-75,33.5-74.3,67.6c0.6,28.7,5.6,42.4,5.6,42.4l0,0c-0.5,0-5.2,0.5-5.7,9.5c-0.5,9.7,3.6,14.9,6.1,27.9\r\n\t\tc2.4,11.9,9.2,12,9.2,12s3.6,23.1,6.9,31.5c3.3,8.5,9.4,18,9.4,18s2,36.9-1.3,40.9c-3.3,4-13.2,7.7-20,9.2\r\n\t\tc-11.9,2.6-30.3,4.3-43.2,8.9C135.8,368.5,96,384,96,416h160h160C416,384,376.2,368.5,363.3,363.9z M256,400H118.7\r\n\t\tc2-3,4.7-5.1,8.2-7.6c7-5.1,16.1-9.8,27.1-13.6c6.8-2.4,16.7-4,25.4-5.3c5.7-0.9,11.1-1.7,15.9-2.8c3.4-0.8,20.8-5,28.8-14.6\r\n\t\tc4.5-5.4,5.8-12.7,5.6-32.3c-0.1-10-0.6-19.3-0.6-19.7l-0.2-4.2l-2.3-3.5c-1.5-2.3-5.8-9.5-8-15.3c-1.8-4.7-4.6-19.2-6-28.1\r\n\t\tc0,0,0.4,1-0.5-3.7c-0.9-4.7-8.4-4.3-9.4-8c-0.9-3.6-1.8-6.9-4.3-18.2c-2.5-11.3,2.8-11.2,3.9-16.2c0.6-3.1,0-5.7,0-5.8l0,0\r\n\t\tc-0.3-1-4.1-13.4-4.7-37.7c-0.3-13.2,4.6-25.6,13.8-34.9c10.6-10.8,26-16.5,44.5-16.5c19,0,34,5.7,44.6,16.5\r\n\t\tc9.2,9.3,14.1,21.7,13.8,34.9c-0.5,24.2-4.3,36.6-4.7,37.7l0,0c0,0.1-0.6,1.7-0.4,5.2c0.2,5.4,6.8,5.5,4.3,16.8\r\n\t\tc-2.5,11.3-3.4,14.6-4.3,18.2c-0.9,3.6-8.5,3.3-9.4,8c-0.9,4.7-0.5,3.7-0.5,3.7c-1.4,8.9-4.2,23.4-6,28.1c-2.3,5.8-6.6,13-8,15.3\r\n\t\tl-2.3,3.5l-0.2,4.2c0,0.4-0.5,9.7-0.6,19.7c-0.2,19.6,1.1,26.9,5.6,32.3c8,9.5,25.4,13.8,28.8,14.6c4.8,1.1,10.2,1.9,15.9,2.8\r\n\t\tc8.7,1.3,18.6,2.9,25.4,5.3c11,3.9,20.2,8.6,27.1,13.7c3.5,2.5,6.2,4.6,8.2,7.6L256,400L256,400z"},"children":[{"name":"path","attribs":{"d":"M363.3,363.9c-12.9-4.6-31.4-6.2-43.2-8.8c-6.8-1.5-16.7-5.3-20-9.2c-3.3-4-1.3-40.9-1.3-40.9s6.1-9.6,9.4-18\r\n\t\ts6.9-31.4,6.9-31.4s6.8,0,9.2-11.9c2.6-13,6.6-18.4,6.1-28.1c-0.5-9-5.2-9.5-5.7-9.5l0,0c0,0,4.9-13.6,5.6-42.4\r\n\t\tC331.1,129.6,305,96,256,96s-75,33.5-74.3,67.6c0.6,28.7,5.6,42.4,5.6,42.4l0,0c-0.5,0-5.2,0.5-5.7,9.5c-0.5,9.7,3.6,14.9,6.1,27.9\r\n\t\tc2.4,11.9,9.2,12,9.2,12s3.6,23.1,6.9,31.5c3.3,8.5,9.4,18,9.4,18s2,36.9-1.3,40.9c-3.3,4-13.2,7.7-20,9.2\r\n\t\tc-11.9,2.6-30.3,4.3-43.2,8.9C135.8,368.5,96,384,96,416h160h160C416,384,376.2,368.5,363.3,363.9z M256,400H118.7\r\n\t\tc2-3,4.7-5.1,8.2-7.6c7-5.1,16.1-9.8,27.1-13.6c6.8-2.4,16.7-4,25.4-5.3c5.7-0.9,11.1-1.7,15.9-2.8c3.4-0.8,20.8-5,28.8-14.6\r\n\t\tc4.5-5.4,5.8-12.7,5.6-32.3c-0.1-10-0.6-19.3-0.6-19.7l-0.2-4.2l-2.3-3.5c-1.5-2.3-5.8-9.5-8-15.3c-1.8-4.7-4.6-19.2-6-28.1\r\n\t\tc0,0,0.4,1-0.5-3.7c-0.9-4.7-8.4-4.3-9.4-8c-0.9-3.6-1.8-6.9-4.3-18.2c-2.5-11.3,2.8-11.2,3.9-16.2c0.6-3.1,0-5.7,0-5.8l0,0\r\n\t\tc-0.3-1-4.1-13.4-4.7-37.7c-0.3-13.2,4.6-25.6,13.8-34.9c10.6-10.8,26-16.5,44.5-16.5c19,0,34,5.7,44.6,16.5\r\n\t\tc9.2,9.3,14.1,21.7,13.8,34.9c-0.5,24.2-4.3,36.6-4.7,37.7l0,0c0,0.1-0.6,1.7-0.4,5.2c0.2,5.4,6.8,5.5,4.3,16.8\r\n\t\tc-2.5,11.3-3.4,14.6-4.3,18.2c-0.9,3.6-8.5,3.3-9.4,8c-0.9,4.7-0.5,3.7-0.5,3.7c-1.4,8.9-4.2,23.4-6,28.1c-2.3,5.8-6.6,13-8,15.3\r\n\t\tl-2.3,3.5l-0.2,4.2c0,0.4-0.5,9.7-0.6,19.7c-0.2,19.6,1.1,26.9,5.6,32.3c8,9.5,25.4,13.8,28.8,14.6c4.8,1.1,10.2,1.9,15.9,2.8\r\n\t\tc8.7,1.3,18.6,2.9,25.4,5.3c11,3.9,20.2,8.6,27.1,13.7c3.5,2.5,6.2,4.6,8.2,7.6L256,400L256,400z"},"children":[]}]}]}]};exports.iosPersonOutline=iosPersonOutline;var iosPerson={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M363.3,363.9c-12.9-4.6-31.4-6.2-43.2-8.8c-6.8-1.5-16.7-5.3-20-9.2c-3.3-4-1.3-40.9-1.3-40.9s6.1-9.6,9.4-18\r\n\t\ts6.9-31.4,6.9-31.4s6.8,0,9.2-11.9c2.6-13,6.6-18.4,6.1-28.1c-0.5-9-5.2-9.5-5.7-9.5l0,0c0,0,4.9-13.6,5.6-42.4\r\n\t\tC331.1,129.6,305,96,256,96s-75,33.5-74.3,67.6c0.6,28.7,5.6,42.4,5.6,42.4l0,0c-0.5,0-5.2,0.5-5.7,9.5c-0.5,9.7,3.6,14.9,6.1,27.9\r\n\t\tc2.4,11.9,9.2,12,9.2,12s3.6,23.1,6.9,31.5c3.3,8.5,9.4,18,9.4,18s2,36.9-1.3,40.9c-3.3,4-13.2,7.7-20,9.2\r\n\t\tc-11.9,2.6-30.3,4.3-43.2,8.9C135.8,368.5,96,384,96,416h160h160C416,384,376.2,368.5,363.3,363.9z"},"children":[{"name":"path","attribs":{"d":"M363.3,363.9c-12.9-4.6-31.4-6.2-43.2-8.8c-6.8-1.5-16.7-5.3-20-9.2c-3.3-4-1.3-40.9-1.3-40.9s6.1-9.6,9.4-18\r\n\t\ts6.9-31.4,6.9-31.4s6.8,0,9.2-11.9c2.6-13,6.6-18.4,6.1-28.1c-0.5-9-5.2-9.5-5.7-9.5l0,0c0,0,4.9-13.6,5.6-42.4\r\n\t\tC331.1,129.6,305,96,256,96s-75,33.5-74.3,67.6c0.6,28.7,5.6,42.4,5.6,42.4l0,0c-0.5,0-5.2,0.5-5.7,9.5c-0.5,9.7,3.6,14.9,6.1,27.9\r\n\t\tc2.4,11.9,9.2,12,9.2,12s3.6,23.1,6.9,31.5c3.3,8.5,9.4,18,9.4,18s2,36.9-1.3,40.9c-3.3,4-13.2,7.7-20,9.2\r\n\t\tc-11.9,2.6-30.3,4.3-43.2,8.9C135.8,368.5,96,384,96,416h160h160C416,384,376.2,368.5,363.3,363.9z"},"children":[]}]}]}]};exports.iosPerson=iosPerson;var iosPersonaddOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"416,153 391,153 391,128 377,128 377,153 352,153 352,167 377,167 377,192 391,192 391,167 416,167 \t"},"children":[{"name":"polygon","attribs":{"points":"416,153 391,153 391,128 377,128 377,153 352,153 352,167 377,167 377,192 391,192 391,167 416,167 \t"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M202.4,201.7C202.4,201.7,202.4,201.7,202.4,201.7L202.4,201.7z"},"children":[{"name":"path","attribs":{"d":"M202.4,201.7C202.4,201.7,202.4,201.7,202.4,201.7L202.4,201.7z"},"children":[]}]},{"name":"path","attribs":{"d":"M363.3,363.9c-12.9-4.6-31.4-6.2-43.2-8.8c-6.8-1.5-16.7-5.3-20-9.2c-3.3-4-1.3-40.9-1.3-40.9s6.1-9.6,9.4-18\r\n\t\t\tc3.3-8.4,6.9-31.4,6.9-31.4s6.8,0,9.2-11.9c2.6-13,6.6-18.4,6.1-28.1c-0.5-9-5.2-9.5-5.7-9.5c0,0,0,0,0,0s4.9-13.6,5.6-42.4\r\n\t\t\tC331.1,129.6,305,96,256,96c-49,0-75,33.5-74.3,67.6c0.6,28.7,5.6,42.4,5.6,42.4s0,0,0,0c-0.5,0-5.2,0.5-5.7,9.5\r\n\t\t\tc-0.5,9.7,3.6,14.9,6.1,27.9c2.4,11.9,9.2,12,9.2,12s3.6,23.1,6.9,31.5c3.3,8.5,9.4,18,9.4,18s2,36.9-1.3,40.9\r\n\t\t\tc-3.3,4-13.2,7.7-20,9.2c-11.9,2.6-30.3,4.3-43.2,8.9C135.8,368.5,96,384,96,416h160h160C416,384,376.2,368.5,363.3,363.9z\r\n\t\t\t M256,400H118.7c2-3,4.7-5.1,8.2-7.6c7-5.1,16.1-9.8,27.1-13.6c6.8-2.4,16.7-4,25.4-5.3c5.7-0.9,11.1-1.7,15.9-2.8\r\n\t\t\tc3.4-0.8,20.8-5,28.8-14.6c4.5-5.4,5.8-12.7,5.6-32.3c-0.1-10-0.6-19.3-0.6-19.7l-0.2-4.2l-2.3-3.5c-1.5-2.3-5.8-9.5-8-15.3\r\n\t\t\tc-1.8-4.7-4.6-19.2-6-28.1c0,0,0.4,1-0.5-3.7c-0.9-4.7-8.4-4.3-9.4-8c-0.9-3.6-1.8-6.9-4.3-18.2c-2.5-11.3,2.8-11.2,3.9-16.2\r\n\t\t\tc0.6-3.1,0-5.7,0-5.8c0,0,0,0,0,0c-0.3-1-4.1-13.4-4.7-37.7c-0.3-13.2,4.6-25.6,13.8-34.9c10.6-10.8,26-16.5,44.5-16.5\r\n\t\t\tc19,0,34,5.7,44.6,16.5c9.2,9.3,14.1,21.7,13.8,34.9c-0.5,24.2-4.3,36.6-4.7,37.7c0,0,0,0,0,0c0,0.1-0.6,1.7-0.4,5.2\r\n\t\t\tc0.2,5.4,6.8,5.5,4.3,16.8c-2.5,11.3-3.4,14.6-4.3,18.2c-0.9,3.6-8.5,3.3-9.4,8s-0.5,3.7-0.5,3.7c-1.4,8.9-4.2,23.4-6,28.1\r\n\t\t\tc-2.3,5.8-6.6,13-8,15.3l-2.3,3.5l-0.2,4.2c0,0.4-0.5,9.7-0.6,19.7c-0.2,19.6,1.1,26.9,5.6,32.3c8,9.5,25.4,13.8,28.8,14.6\r\n\t\t\tc4.8,1.1,10.2,1.9,15.9,2.8c8.7,1.3,18.6,2.9,25.4,5.3c11,3.9,20.2,8.6,27.1,13.7c3.5,2.5,6.2,4.6,8.2,7.6H256z"},"children":[{"name":"path","attribs":{"d":"M363.3,363.9c-12.9-4.6-31.4-6.2-43.2-8.8c-6.8-1.5-16.7-5.3-20-9.2c-3.3-4-1.3-40.9-1.3-40.9s6.1-9.6,9.4-18\r\n\t\t\tc3.3-8.4,6.9-31.4,6.9-31.4s6.8,0,9.2-11.9c2.6-13,6.6-18.4,6.1-28.1c-0.5-9-5.2-9.5-5.7-9.5c0,0,0,0,0,0s4.9-13.6,5.6-42.4\r\n\t\t\tC331.1,129.6,305,96,256,96c-49,0-75,33.5-74.3,67.6c0.6,28.7,5.6,42.4,5.6,42.4s0,0,0,0c-0.5,0-5.2,0.5-5.7,9.5\r\n\t\t\tc-0.5,9.7,3.6,14.9,6.1,27.9c2.4,11.9,9.2,12,9.2,12s3.6,23.1,6.9,31.5c3.3,8.5,9.4,18,9.4,18s2,36.9-1.3,40.9\r\n\t\t\tc-3.3,4-13.2,7.7-20,9.2c-11.9,2.6-30.3,4.3-43.2,8.9C135.8,368.5,96,384,96,416h160h160C416,384,376.2,368.5,363.3,363.9z\r\n\t\t\t M256,400H118.7c2-3,4.7-5.1,8.2-7.6c7-5.1,16.1-9.8,27.1-13.6c6.8-2.4,16.7-4,25.4-5.3c5.7-0.9,11.1-1.7,15.9-2.8\r\n\t\t\tc3.4-0.8,20.8-5,28.8-14.6c4.5-5.4,5.8-12.7,5.6-32.3c-0.1-10-0.6-19.3-0.6-19.7l-0.2-4.2l-2.3-3.5c-1.5-2.3-5.8-9.5-8-15.3\r\n\t\t\tc-1.8-4.7-4.6-19.2-6-28.1c0,0,0.4,1-0.5-3.7c-0.9-4.7-8.4-4.3-9.4-8c-0.9-3.6-1.8-6.9-4.3-18.2c-2.5-11.3,2.8-11.2,3.9-16.2\r\n\t\t\tc0.6-3.1,0-5.7,0-5.8c0,0,0,0,0,0c-0.3-1-4.1-13.4-4.7-37.7c-0.3-13.2,4.6-25.6,13.8-34.9c10.6-10.8,26-16.5,44.5-16.5\r\n\t\t\tc19,0,34,5.7,44.6,16.5c9.2,9.3,14.1,21.7,13.8,34.9c-0.5,24.2-4.3,36.6-4.7,37.7c0,0,0,0,0,0c0,0.1-0.6,1.7-0.4,5.2\r\n\t\t\tc0.2,5.4,6.8,5.5,4.3,16.8c-2.5,11.3-3.4,14.6-4.3,18.2c-0.9,3.6-8.5,3.3-9.4,8s-0.5,3.7-0.5,3.7c-1.4,8.9-4.2,23.4-6,28.1\r\n\t\t\tc-2.3,5.8-6.6,13-8,15.3l-2.3,3.5l-0.2,4.2c0,0.4-0.5,9.7-0.6,19.7c-0.2,19.6,1.1,26.9,5.6,32.3c8,9.5,25.4,13.8,28.8,14.6\r\n\t\t\tc4.8,1.1,10.2,1.9,15.9,2.8c8.7,1.3,18.6,2.9,25.4,5.3c11,3.9,20.2,8.6,27.1,13.7c3.5,2.5,6.2,4.6,8.2,7.6H256z"},"children":[]}]}]}]}]}]};exports.iosPersonaddOutline=iosPersonaddOutline;var iosPersonadd={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"416,153 391,153 391,128 377,128 377,153 352,153 352,167 377,167 377,192 391,192 391,167 416,167 \t"},"children":[{"name":"polygon","attribs":{"points":"416,153 391,153 391,128 377,128 377,153 352,153 352,167 377,167 377,192 391,192 391,167 416,167 \t"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M363.3,363.9c-12.9-4.6-31.4-6.2-43.2-8.8c-6.8-1.5-16.7-5.3-20-9.2c-3.3-4-1.3-40.9-1.3-40.9s6.1-9.6,9.4-18\r\n\t\t\tc3.3-8.4,6.9-31.4,6.9-31.4s6.8,0,9.2-11.9c2.6-13,6.6-18.4,6.1-28.1c-0.5-9-5.2-9.5-5.7-9.5c0,0,0,0,0,0s4.9-13.6,5.6-42.4\r\n\t\t\tC331.1,129.6,305,96,256,96c-49,0-75,33.5-74.3,67.6c0.6,28.7,5.6,42.4,5.6,42.4s0,0,0,0c-0.5,0-5.2,0.5-5.7,9.5\r\n\t\t\tc-0.5,9.7,3.6,14.9,6.1,27.9c2.4,11.9,9.2,12,9.2,12s3.6,23.1,6.9,31.5c3.3,8.5,9.4,18,9.4,18s2,36.9-1.3,40.9\r\n\t\t\tc-3.3,4-13.2,7.7-20,9.2c-11.9,2.6-30.3,4.3-43.2,8.9C135.8,368.5,96,384,96,416h160h160C416,384,376.2,368.5,363.3,363.9z"},"children":[{"name":"path","attribs":{"d":"M363.3,363.9c-12.9-4.6-31.4-6.2-43.2-8.8c-6.8-1.5-16.7-5.3-20-9.2c-3.3-4-1.3-40.9-1.3-40.9s6.1-9.6,9.4-18\r\n\t\t\tc3.3-8.4,6.9-31.4,6.9-31.4s6.8,0,9.2-11.9c2.6-13,6.6-18.4,6.1-28.1c-0.5-9-5.2-9.5-5.7-9.5c0,0,0,0,0,0s4.9-13.6,5.6-42.4\r\n\t\t\tC331.1,129.6,305,96,256,96c-49,0-75,33.5-74.3,67.6c0.6,28.7,5.6,42.4,5.6,42.4s0,0,0,0c-0.5,0-5.2,0.5-5.7,9.5\r\n\t\t\tc-0.5,9.7,3.6,14.9,6.1,27.9c2.4,11.9,9.2,12,9.2,12s3.6,23.1,6.9,31.5c3.3,8.5,9.4,18,9.4,18s2,36.9-1.3,40.9\r\n\t\t\tc-3.3,4-13.2,7.7-20,9.2c-11.9,2.6-30.3,4.3-43.2,8.9C135.8,368.5,96,384,96,416h160h160C416,384,376.2,368.5,363.3,363.9z"},"children":[]}]}]}]}]}]};exports.iosPersonadd=iosPersonadd;var iosPhotosOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M96,128v320h384V128H96z M464,432H112V144h352V432z"},"children":[{"name":"path","attribs":{"d":"M96,128v320h384V128H96z M464,432H112V144h352V432z"},"children":[]}]},{"name":"polygon","attribs":{"points":"32,64 32,384 80,384 80,368 48,368 48,80 400,80 400,112 416,112 416,64 \t"},"children":[{"name":"polygon","attribs":{"points":"32,64 32,384 80,384 80,368 48,368 48,80 400,80 400,112 416,112 416,64 \t"},"children":[]}]}]}]};exports.iosPhotosOutline=iosPhotosOutline;var iosPhotos={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M96,128v320h384V128H96z"},"children":[{"name":"path","attribs":{"d":"M96,128v320h384V128H96z"},"children":[]}]},{"name":"polygon","attribs":{"points":"416,64 32,64 32,384 80,384 80,112 416,112 \t"},"children":[{"name":"polygon","attribs":{"points":"416,64 32,64 32,384 80,384 80,112 416,112 \t"},"children":[]}]}]}]};exports.iosPhotos=iosPhotos;var iosPieOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M288,80.826c45.293,3.705,87.354,23.024,119.809,55.494C444.044,172.57,464,220.744,464,272.043\r\n\t\tc0,25.924-5.08,51.042-15.099,74.703c-9.68,22.859-23.54,43.384-41.194,61.024c-17.654,17.639-38.204,31.481-61.08,41.151\r\n\t\tc-23.673,10.01-48.823,15.081-74.752,15.081c-41.193,0-80.47-12.847-113.584-37.146c-15.95-11.705-29.957-25.733-41.633-41.692\r\n\t\tc-8.378-11.453-15.422-23.724-21.041-36.634l180.259-45.008L288,300.496V288V81 M272,64v224L74.245,337.376\r\n\t\tC101.653,420.221,179.841,480,271.875,480C386.75,480,480,386.875,480,272S387,64,272,64L272,64z"},"children":[{"name":"path","attribs":{"d":"M288,80.826c45.293,3.705,87.354,23.024,119.809,55.494C444.044,172.57,464,220.744,464,272.043\r\n\t\tc0,25.924-5.08,51.042-15.099,74.703c-9.68,22.859-23.54,43.384-41.194,61.024c-17.654,17.639-38.204,31.481-61.08,41.151\r\n\t\tc-23.673,10.01-48.823,15.081-74.752,15.081c-41.193,0-80.47-12.847-113.584-37.146c-15.95-11.705-29.957-25.733-41.633-41.692\r\n\t\tc-8.378-11.453-15.422-23.724-21.041-36.634l180.259-45.008L288,300.496V288V81 M272,64v224L74.245,337.376\r\n\t\tC101.653,420.221,179.841,480,271.875,480C386.75,480,480,386.875,480,272S387,64,272,64L272,64z"},"children":[]}]},{"name":"path","attribs":{"d":"M240,48.181v214.943L59.658,308.854c-9.117-23.568-11.197-56.973-11.158-69.496v-0.036v-0.035\r\n\t\tc0-47.311,16.465-93.746,45.173-127.398c16.735-19.618,37.502-34.981,61.721-45.663C180.099,55.331,208.519,49.274,240,48.181\r\n\t\t M256,32h-5.5C90.5,32,32,148.25,32,239.287c0,0,0.25,56.666,18.91,88.291L256,275.573V32L256,32z"},"children":[{"name":"path","attribs":{"d":"M240,48.181v214.943L59.658,308.854c-9.117-23.568-11.197-56.973-11.158-69.496v-0.036v-0.035\r\n\t\tc0-47.311,16.465-93.746,45.173-127.398c16.735-19.618,37.502-34.981,61.721-45.663C180.099,55.331,208.519,49.274,240,48.181\r\n\t\t M256,32h-5.5C90.5,32,32,148.25,32,239.287c0,0,0.25,56.666,18.91,88.291L256,275.573V32L256,32z"},"children":[]}]}]}]};exports.iosPieOutline=iosPieOutline;var iosPie={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M272,64v224L74.245,337.376C101.653,420.221,179.841,480,271.875,480C386.75,480,480,386.875,480,272S387,64,272,64L272,64\r\n\t\tz"},"children":[{"name":"path","attribs":{"d":"M272,64v224L74.245,337.376C101.653,420.221,179.841,480,271.875,480C386.75,480,480,386.875,480,272S387,64,272,64L272,64\r\n\t\tz"},"children":[]}]},{"name":"path","attribs":{"d":"M256,32h-5.5C90.5,32,32,148.25,32,239.287c0,0,0.25,56.666,18.91,88.291L256,275.573V32L256,32z"},"children":[{"name":"path","attribs":{"d":"M256,32h-5.5C90.5,32,32,148.25,32,239.287c0,0,0.25,56.666,18.91,88.291L256,275.573V32L256,32z"},"children":[]}]}]}]};exports.iosPie=iosPie;var iosPintOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M368,170.085c0-21.022-0.973-88.554-19.308-125.013C344.244,36.228,336.25,32,316.999,32H195.001\r\n\tc-19.25,0-27.246,4.197-31.693,13.041C144.973,81.5,144,149.25,144,170.272c0,98,32,100.353,32,180.853c0,39.5-16,71.402-16,99.402\r\n\tc0,27,9,29.473,32,29.473h128c23,0,32-2.535,32-29.535c0-28-16-59.715-16-99.215C336,270.75,368,268.085,368,170.085z\r\n\t M177.602,51.983c0.778-1.546,1.339-1.763,2.53-2.295c1.977-0.884,6.161-1.688,14.869-1.688h121.998\r\n\tc8.708,0,12.893,0.803,14.869,1.687c1.19,0.532,1.752,0.872,2.53,2.418c8.029,15.967,13.601,42.611,16.105,75.896H161.496\r\n\tC164.001,94.653,169.572,67.951,177.602,51.983z M334.631,462.636C332.76,463.377,327.844,464,320,464H192\r\n\tc-7.844,0-12.761-0.623-14.639-1.359c-0.394-0.93-1.361-4.166-1.361-12.27c0-10.856,3.016-23.16,6.508-37.334\r\n\tc4.449-18.059,9.492-38.557,9.492-61.943c0-40.997-7.993-63.802-15.724-85.842C168.274,242.438,160,218.838,160,170.155\r\n\tc0-9.025,0.191-17.756,0.558-26.155h190.886c0.365,8.376,0.557,17.083,0.557,26.085c0,48.688-8.276,72.302-16.28,95.169\r\n\tc-7.728,22.079-15.72,44.895-15.72,85.887c0,23.39,5.043,43.822,9.493,61.856c3.491,14.15,6.507,26.368,6.507,37.222\r\n\tC336,458.355,335.024,461.713,334.631,462.636z"},"children":[]}]};exports.iosPintOutline=iosPintOutline;var iosPint={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M368,170.085c0-21.022-0.973-88.554-19.308-125.013C344.244,36.228,336.25,32,316.999,32H195.001\r\n\tc-19.25,0-27.246,4.197-31.693,13.041C144.973,81.5,144,149.25,144,170.272c0,98,32,100.353,32,180.853c0,39.5-16,71.402-16,99.402\r\n\tc0,27,9,29.473,32,29.473h128c23,0,32-2.535,32-29.535c0-28-16-59.715-16-99.215C336,270.75,368,268.085,368,170.085z\r\n\t M177.602,51.983c0.778-1.546,1.339-1.763,2.53-2.295c1.977-0.884,6.161-1.688,14.869-1.688h121.998\r\n\tc8.708,0,12.893,0.803,14.869,1.687c1.19,0.532,1.752,0.872,2.53,2.418c8.029,15.967,13.601,42.611,16.105,75.896H161.496\r\n\tC164.001,94.653,169.572,67.951,177.602,51.983z"},"children":[]}]};exports.iosPint=iosPint;var iosPlayOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M144,124.9L353.8,256L144,387.1V124.9 M128,96v320l256-160L128,96L128,96z"},"children":[{"name":"path","attribs":{"d":"M144,124.9L353.8,256L144,387.1V124.9 M128,96v320l256-160L128,96L128,96z"},"children":[]}]}]}]};exports.iosPlayOutline=iosPlayOutline;var iosPlay={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M128,96v320l256-160L128,96L128,96z"},"children":[{"name":"path","attribs":{"d":"M128,96v320l256-160L128,96L128,96z"},"children":[]}]}]}]};exports.iosPlay=iosPlay;var iosPlusEmpty={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M384,265H264v119h-17V265H128v-17h119V128h17v120h120V265z"},"children":[{"name":"path","attribs":{"d":"M384,265H264v119h-17V265H128v-17h119V128h17v120h120V265z"},"children":[]}]}]}]};exports.iosPlusEmpty=iosPlusEmpty;var iosPlusOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M256,446.7\r\n\t\t\t\tc-105.1,0-190.7-85.5-190.7-190.7S150.9,65.3,256,65.3S446.7,150.9,446.7,256S361.1,446.7,256,446.7z"},"children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M256,446.7\r\n\t\t\t\tc-105.1,0-190.7-85.5-190.7-190.7S150.9,65.3,256,65.3S446.7,150.9,446.7,256S361.1,446.7,256,446.7z"},"children":[]}]}]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"264.1,128 247.3,128 247.3,247.9 128,247.9 128,264.7 247.3,264.7 247.3,384 264.1,384 264.1,264.7 384,264.7 \r\n\t\t\t384,247.9 264.1,247.9 \t\t"},"children":[{"name":"polygon","attribs":{"points":"264.1,128 247.3,128 247.3,247.9 128,247.9 128,264.7 247.3,264.7 247.3,384 264.1,384 264.1,264.7 384,264.7 \r\n\t\t\t384,247.9 264.1,247.9 \t\t"},"children":[]}]}]}]}]}]};exports.iosPlusOutline=iosPlusOutline;var iosPlus={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M384,265H264v119h-17V265\r\n\t\tH128v-17h119V128h17v120h120V265z"},"children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M384,265H264v119h-17V265\r\n\t\tH128v-17h119V128h17v120h120V265z"},"children":[]}]}]}]};exports.iosPlus=iosPlus;var iosPricetagOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M464,32H304L48,320l160,160l256-288V32z M448,184L208.125,456L72.062,320L311.587,48H448V184z"},"children":[{"name":"path","attribs":{"d":"M464,32H304L48,320l160,160l256-288V32z M448,184L208.125,456L72.062,320L311.587,48H448V184z"},"children":[]}]},{"name":"path","attribs":{"d":"M368,160c17.645,0,32-14.355,32-32s-14.355-32-32-32s-32,14.355-32,32S350.355,160,368,160z M368,112\r\n\t\tc8.836,0,16,7.163,16,16s-7.164,16-16,16s-16-7.163-16-16S359.164,112,368,112z"},"children":[{"name":"path","attribs":{"d":"M368,160c17.645,0,32-14.355,32-32s-14.355-32-32-32s-32,14.355-32,32S350.355,160,368,160z M368,112\r\n\t\tc8.836,0,16,7.163,16,16s-7.164,16-16,16s-16-7.163-16-16S359.164,112,368,112z"},"children":[]}]}]}]};exports.iosPricetagOutline=iosPricetagOutline;var iosPricetag={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"cx":"368","cy":"128","r":"16"},"children":[{"name":"circle","attribs":{"cx":"368","cy":"128","r":"16"},"children":[]}]},{"name":"path","attribs":{"d":"M304,32L48,320l160,160l256-288V32H304z M368,160c-17.645,0-32-14.355-32-32s14.355-32,32-32s32,14.355,32,32\r\n\t\tS385.645,160,368,160z"},"children":[{"name":"path","attribs":{"d":"M304,32L48,320l160,160l256-288V32H304z M368,160c-17.645,0-32-14.355-32-32s14.355-32,32-32s32,14.355,32,32\r\n\t\tS385.645,160,368,160z"},"children":[]}]}]}]};exports.iosPricetag=iosPricetag;var iosPricetagsOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M448,64V32H288L32,320l160,160l23.471-23.904L240,480l240-272V64H448z M192,457.371L54.39,320L294.621,48H432v16v16\r\n\t\tv105.377l-216.555,247.99l-11.34,11.363L192,457.371z M464,201.377L240,457.371l-13.182-12.65L448,192V80h16V201.377z"},"children":[{"name":"path","attribs":{"d":"M448,64V32H288L32,320l160,160l23.471-23.904L240,480l240-272V64H448z M192,457.371L54.39,320L294.621,48H432v16v16\r\n\t\tv105.377l-216.555,247.99l-11.34,11.363L192,457.371z M464,201.377L240,457.371l-13.182-12.65L448,192V80h16V201.377z"},"children":[]}]},{"name":"path","attribs":{"d":"M352,160c17.645,0,32-14.355,32-32s-14.355-32-32-32s-32,14.355-32,32S334.355,160,352,160z M352,112\r\n\t\tc8.836,0,16,7.163,16,16s-7.164,16-16,16s-16-7.163-16-16S343.164,112,352,112z"},"children":[{"name":"path","attribs":{"d":"M352,160c17.645,0,32-14.355,32-32s-14.355-32-32-32s-32,14.355-32,32S334.355,160,352,160z M352,112\r\n\t\tc8.836,0,16,7.163,16,16s-7.164,16-16,16s-16-7.163-16-16S343.164,112,352,112z"},"children":[]}]}]}]};exports.iosPricetagsOutline=iosPricetagsOutline;var iosPricetags={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"464,64 464,201.377 227.153,467.48 240,480 480,208 480,64 \t\t"},"children":[{"name":"polygon","attribs":{"points":"464,64 464,201.377 227.153,467.48 240,480 480,208 480,64 \t\t"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M288,32L32,320l160,160l23.471-23.904l11.348-11.375L448,192V80V64V32H288z M352,160c-17.645,0-32-14.355-32-32\r\n\t\t\ts14.355-32,32-32s32,14.355,32,32S369.645,160,352,160z"},"children":[{"name":"path","attribs":{"d":"M288,32L32,320l160,160l23.471-23.904l11.348-11.375L448,192V80V64V32H288z M352,160c-17.645,0-32-14.355-32-32\r\n\t\t\ts14.355-32,32-32s32,14.355,32,32S369.645,160,352,160z"},"children":[]}]},{"name":"circle","attribs":{"cx":"352","cy":"128","r":"16"},"children":[{"name":"circle","attribs":{"cx":"352","cy":"128","r":"16"},"children":[]}]}]}]}]}]};exports.iosPricetags=iosPricetags;var iosPrinterOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M432.5,112H400V64H112v48H80.5C62.9,112,48,125.8,48,143.3v158.4c0,17.5,14.9,32.3,32.5,32.3H128v114h256V334h48.5\r\n\t\tc17.6,0,31.5-14.8,31.5-32.3V143.3C464,125.8,450.1,112,432.5,112z M128,80h256v32H128V80z M368,432H144V240h224V432z M448,301.7\r\n\t\tc0,8.7-6.7,16.3-15.5,16.3H384v-94H128v94H80.5c-8.8,0-16.5-7.6-16.5-16.3V143.3c0-8.7,7.7-15.3,16.5-15.3H432h0.5\r\n\t\tc8.8,0,15.5,6.6,15.5,15.3V301.7z"},"children":[{"name":"path","attribs":{"d":"M432.5,112H400V64H112v48H80.5C62.9,112,48,125.8,48,143.3v158.4c0,17.5,14.9,32.3,32.5,32.3H128v114h256V334h48.5\r\n\t\tc17.6,0,31.5-14.8,31.5-32.3V143.3C464,125.8,450.1,112,432.5,112z M128,80h256v32H128V80z M368,432H144V240h224V432z M448,301.7\r\n\t\tc0,8.7-6.7,16.3-15.5,16.3H384v-94H128v94H80.5c-8.8,0-16.5-7.6-16.5-16.3V143.3c0-8.7,7.7-15.3,16.5-15.3H432h0.5\r\n\t\tc8.8,0,15.5,6.6,15.5,15.3V301.7z"},"children":[]}]}]}]};exports.iosPrinterOutline=iosPrinterOutline;var iosPrinter={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"128","y":"224","width":"256","height":"224"},"children":[{"name":"rect","attribs":{"x":"128","y":"224","width":"256","height":"224"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"127.5","y":"224.5","width":"256","height":"224"},"children":[{"name":"rect","attribs":{"x":"127.5","y":"224.5","width":"256","height":"224"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"111.5","y":"64.5","width":"288","height":"32"},"children":[{"name":"rect","attribs":{"x":"111.5","y":"64.5","width":"288","height":"32"},"children":[]}]},{"name":"path","attribs":{"d":"M432.5,112.5h-352c-17.645,0-33,12.842-33,30.309v158.393c0,17.468,15.355,33.299,33,33.299h31v-126h288v126h33\r\n\t\t\tc17.645,0,31-15.831,31-33.299V142.809C463.5,125.342,450.145,112.5,432.5,112.5z"},"children":[{"name":"path","attribs":{"d":"M432.5,112.5h-352c-17.645,0-33,12.842-33,30.309v158.393c0,17.468,15.355,33.299,33,33.299h31v-126h288v126h33\r\n\t\t\tc17.645,0,31-15.831,31-33.299V142.809C463.5,125.342,450.145,112.5,432.5,112.5z"},"children":[]}]}]}]}]}]};exports.iosPrinter=iosPrinter;var iosPulseStrong={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M448,273.001c-21.27,0-39.296,13.999-45.596,32.999h-38.857l-28.361-85.417c-2.176-6.553-8.303-10.956-15.183-10.956\r\n\tc-0.112,0-0.224,0-0.335,0.004c-7.016,0.145-13.117,4.844-15.049,11.588l-44.484,155.262L207.782,62.373\r\n\tC206.535,54.893,200.333,48,192,48s-13.693,5.776-15.525,13.135L115.496,306H16v31.999h112c7.348,0,13.75-5.003,15.525-12.134\r\n\tl45.368-182.177l51.324,307.94c1.229,7.377,7.397,11.92,14.864,12.344C255.389,463.99,255.695,464,256,464\r\n\tc7.097,0,13.406-3.701,15.381-10.594l49.744-173.617l15.689,47.252c2.173,6.543,8.292,10.958,15.186,10.958h51.108\r\n\tC409.973,355.999,427.477,369,448,369c26.511,0,48-22.492,48-49C496,293.491,474.511,273.001,448,273.001z"},"children":[]}]};exports.iosPulseStrong=iosPulseStrong;var iosPulse={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M448,288c-15.268,0-28.029,10.695-31.223,25h-59.004l-30.181-90.896c-1.105-3.329-4.246-5.543-7.759-5.478\r\n\tc-3.508,0.072-6.559,2.422-7.524,5.795L258.067,411.74L199.892,62.685c-0.624-3.74-3.787-6.528-7.576-6.679\r\n\tc-3.809-0.139-7.161,2.382-8.078,6.061L121.748,313H32v16h96c3.674,0,6.875-2.502,7.763-6.066l54.685-219.591l57.661,345.973\r\n\tc0.615,3.688,3.703,6.459,7.437,6.672c0.153,0.009,0.307,0.013,0.459,0.013c3.549,0,6.699-2.35,7.687-5.797l56.872-198.496\r\n\tl23.845,71.813c1.087,3.271,4.146,5.479,7.593,5.479h65.292c3.89,13.289,16.161,23,30.708,23c17.674,0,32-14.327,32-32\r\n\tS465.674,288,448,288z"},"children":[]}]};exports.iosPulse=iosPulse;var iosRainyOutline={"viewBox":"0 0 512 512","children":[{"name":"style","attribs":{"type":"text/css"},"children":[]},{"name":"path","attribs":{"class":"st0","d":"M332.1,179.4c-2.8,0-5.7-0.1-8.4,0.3c-8.3-36.8-35.2-67.6-80.3-67.6c-50.9,0-82.3,38-82.3,83.6\r\n\tc0,2.8,0.1,5.5,0.4,8.2c-27.7,2.5-49.5,31.3-49.5,59.8c0,29.2,22.9,54.6,51.6,56.2l-24.5,34.4c-1.1,1.6-2,3.4-2,5.5\r\n\tc0,4.6,3.7,8.3,8.3,8.3c3,0,5.6-1.6,7.1-4l31-43.8h36.1l-46.1,65.8c-1.2,1.6-2.1,3.6-2.1,5.6c0,4.6,3.7,8.3,8.3,8.3\r\n\tc3,0,5.6-1.8,7.2-4.3l52.6-75.5h37.9l-24.9,34.4c-1.2,1.6-2.2,3.8-2.2,5.6c0,4.6,3.7,8.3,8.3,8.3c3.1,0,5.4-1.7,7.2-4.1l31.6-44.3\r\n\th34.7c0.1,0,0.3-0.1,0.4-0.1l-46.1,65.9c-1.3,1.7-2.3,3.6-2.3,5.8c0,4.6,3.7,8.3,8.3,8.3c3.2,0,5.5-2,7.4-4.5l55.5-79.8\r\n\tc26-9.9,44.6-35.8,44.6-65.2C400,212.8,369.6,179.4,332.1,179.4z M332.1,302.1H290l-0.1-0.1l-0.1,0.1H166.4\r\n\tc-10,0-19.5-4.6-26.7-11.9c-7.2-7.3-11.1-17.2-11.1-27.4c0-19.6,15.2-39.8,34.9-43c1.7-0.3,9.2-1.4,15-1.9c0,0-0.5-5.6-0.7-10.2\r\n\tc-0.1-4.6-0.1-9.9-0.1-12.1c0-36.4,29.5-66.9,65.8-66.9c15.2,0,29.5,5.1,41.3,14.7c11.5,9.3,19.6,25.4,22.8,39.7l3.3,14.7l14.9-1.9\r\n\tc2.2-0.3,4.3-0.4,6.4-0.4c28.3,0,51.3,25.9,51.3,54.4C383.4,278.3,360.4,302.1,332.1,302.1z"},"children":[]}]};exports.iosRainyOutline=iosRainyOutline;var iosRainy={"viewBox":"0 0 512 512","children":[{"name":"style","attribs":{"type":"text/css"},"children":[]},{"name":"path","attribs":{"class":"st0","d":"M332.1,179.4c-2.8,0-5.7-0.1-8.4,0.3c-8.3-36.8-35.2-67.6-80.3-67.6c-50.9,0-82.3,38-82.3,83.6\r\n\tc0,2.8,0.1,5.5,0.4,8.2c-27.7,2.5-49.5,31.3-49.5,59.8c0,29.2,22.9,54.6,51.6,56.2l-24.5,34.4c-1.1,1.6-2,3.4-2,5.5\r\n\tc0,4.6,3.7,8.3,8.3,8.3c3,0,5.6-1.6,7.1-4l31-43.8h36.1l-46.1,65.8c-1.2,1.6-2.1,3.6-2.1,5.6c0,4.6,3.7,8.3,8.3,8.3\r\n\tc3,0,5.6-1.8,7.2-4.3l52.6-75.5h37.9l-24.9,34.4c-1.2,1.6-2.2,3.8-2.2,5.6c0,4.6,3.7,8.3,8.3,8.3c3.1,0,5.4-1.7,7.2-4.1l31.6-44.3\r\n\th34.7c0.1,0,0.3-0.1,0.4-0.1l-46.1,65.9c-1.3,1.7-2.3,3.6-2.3,5.8c0,4.6,3.7,8.3,8.3,8.3c3.2,0,5.5-2,7.4-4.5l55.5-79.8\r\n\tc26-9.9,44.6-35.8,44.6-65.2C400,212.8,369.6,179.4,332.1,179.4z"},"children":[]}]};exports.iosRainy=iosRainy;var iosRecordingOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M386.2,144c-60.6,0-109.8,50.1-109.8,112c0,40.4,21,75.7,52.5,95.4H183.1c31.5-19.7,52.5-55,52.5-95.4\r\n\tc0-61.9-49.2-112-109.8-112C65.2,144,16,194.1,16,256c0,61.9,49.2,112,109.8,112h260.4c60.6,0,109.8-50.1,109.8-112\r\n\tC496,194.1,446.8,144,386.2,144z M32.3,256c0-52.6,42-95.4,93.5-95.4c51.6,0,93.5,42.8,93.5,95.4s-42,95.4-93.5,95.4\r\n\tC74.2,351.4,32.3,308.6,32.3,256z M386.2,351.4c-51.6,0-93.5-42.8-93.5-95.4s42-95.4,93.5-95.4s93.5,42.8,93.5,95.4\r\n\tS437.8,351.4,386.2,351.4z"},"children":[]},{"name":"path","attribs":{"d":"M384,208c26.5,0,48,21.5,48,48c0,26.5-21.5,48-48,48s-48-21.5-48-48C336,229.5,357.5,208,384,208 M384,192\r\n\tc-35.3,0-64,28.7-64,64c0,35.3,28.7,64,64,64s64-28.7,64-64C448,220.7,419.3,192,384,192L384,192z"},"children":[]},{"name":"path","attribs":{"d":"M128,208c26.5,0,48,21.5,48,48c0,26.5-21.5,48-48,48s-48-21.5-48-48C80,229.5,101.5,208,128,208 M128,192\r\n\tc-35.3,0-64,28.7-64,64c0,35.3,28.7,64,64,64s64-28.7,64-64C192,220.7,163.3,192,128,192L128,192z"},"children":[]}]};exports.iosRecordingOutline=iosRecordingOutline;var iosRecording={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M386.2,144c-60.6,0-109.8,49.9-109.8,111.8c0,40.4,21,76.2,52.5,95.2H183.1c31.5-19,52.5-54.8,52.5-95.2\r\n\t\tc0-61.9-49.2-111.9-109.8-111.9C65.2,143.9,16,194.1,16,255.9C16,317.8,65.2,368,125.8,368h260.4c60.6,0,109.8-50.1,109.8-112\r\n\t\tC496,194.1,446.8,144,386.2,144z M128,320c-35.3,0-64-28.7-64-64c0-35.3,28.7-64,64-64s64,28.7,64,64C192,291.3,163.3,320,128,320z\r\n\t\t M384,320c-35.3,0-64-28.7-64-64c0-35.3,28.7-64,64-64s64,28.7,64,64C448,291.3,419.3,320,384,320z"},"children":[{"name":"path","attribs":{"d":"M386.2,144c-60.6,0-109.8,49.9-109.8,111.8c0,40.4,21,76.2,52.5,95.2H183.1c31.5-19,52.5-54.8,52.5-95.2\r\n\t\tc0-61.9-49.2-111.9-109.8-111.9C65.2,143.9,16,194.1,16,255.9C16,317.8,65.2,368,125.8,368h260.4c60.6,0,109.8-50.1,109.8-112\r\n\t\tC496,194.1,446.8,144,386.2,144z M128,320c-35.3,0-64-28.7-64-64c0-35.3,28.7-64,64-64s64,28.7,64,64C192,291.3,163.3,320,128,320z\r\n\t\t M384,320c-35.3,0-64-28.7-64-64c0-35.3,28.7-64,64-64s64,28.7,64,64C448,291.3,419.3,320,384,320z"},"children":[]}]},{"name":"path","attribs":{"d":"M384,208c-26.5,0-48,21.5-48,48c0,26.5,21.5,48,48,48s48-21.5,48-48C432,229.5,410.5,208,384,208z"},"children":[{"name":"path","attribs":{"d":"M384,208c-26.5,0-48,21.5-48,48c0,26.5,21.5,48,48,48s48-21.5,48-48C432,229.5,410.5,208,384,208z"},"children":[]}]},{"name":"path","attribs":{"d":"M128,208c-26.5,0-48,21.5-48,48c0,26.5,21.5,48,48,48s48-21.5,48-48C176,229.5,154.5,208,128,208z"},"children":[{"name":"path","attribs":{"d":"M128,208c-26.5,0-48,21.5-48,48c0,26.5,21.5,48,48,48s48-21.5,48-48C176,229.5,154.5,208,128,208z"},"children":[]}]}]}]};exports.iosRecording=iosRecording;var iosRedoOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M64,400h10.3l19.2-31.2c20.5-32.7,44.9-62.8,75.8-76.6c24.4-10.9,46.7-18.9,86.7-20V352l192-128L256,96v80.3\r\n\t\tc-63,2.8-108.1,20.7-143.3,56.2c-52.3,52.7-48.7,119-48.7,135.7C64.1,377.1,64,389.9,64,400z M272,192v-64.7l148.1,96.8L272,320.8\r\n\t\tV256c-91,0-144.6,24.6-192.2,105.4C79.8,361.4,71,192,272,192z"},"children":[{"name":"path","attribs":{"d":"M64,400h10.3l19.2-31.2c20.5-32.7,44.9-62.8,75.8-76.6c24.4-10.9,46.7-18.9,86.7-20V352l192-128L256,96v80.3\r\n\t\tc-63,2.8-108.1,20.7-143.3,56.2c-52.3,52.7-48.7,119-48.7,135.7C64.1,377.1,64,389.9,64,400z M272,192v-64.7l148.1,96.8L272,320.8\r\n\t\tV256c-91,0-144.6,24.6-192.2,105.4C79.8,361.4,71,192,272,192z"},"children":[]}]}]}]};exports.iosRedoOutline=iosRedoOutline;var iosRedo={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M64,400h10.3l19.2-31.2c20.5-32.7,44.9-62.8,75.8-76.6c24.4-10.9,46.7-18.9,86.7-20V352l192-128L256,96v80.3\r\n\t\tc-63,2.8-108.1,20.7-143.3,56.2c-52.3,52.7-48.7,119-48.7,135.7C64.1,377.1,64,389.9,64,400z"},"children":[{"name":"path","attribs":{"d":"M64,400h10.3l19.2-31.2c20.5-32.7,44.9-62.8,75.8-76.6c24.4-10.9,46.7-18.9,86.7-20V352l192-128L256,96v80.3\r\n\t\tc-63,2.8-108.1,20.7-143.3,56.2c-52.3,52.7-48.7,119-48.7,135.7C64.1,377.1,64,389.9,64,400z"},"children":[]}]}]}]};exports.iosRedo=iosRedo;var iosRefreshEmpty={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,384.1c-70.7,0-128-57.3-128-128.1c0-70.8,57.3-128.1,128-128.1V84l96,64l-96,55.7v-55.8\r\n\t\tc-59.6,0-108.1,48.5-108.1,108.1c0,59.6,48.5,108.1,108.1,108.1S364.1,316,364.1,256H384C384,327,326.7,384.1,256,384.1z"},"children":[{"name":"path","attribs":{"d":"M256,384.1c-70.7,0-128-57.3-128-128.1c0-70.8,57.3-128.1,128-128.1V84l96,64l-96,55.7v-55.8\r\n\t\tc-59.6,0-108.1,48.5-108.1,108.1c0,59.6,48.5,108.1,108.1,108.1S364.1,316,364.1,256H384C384,327,326.7,384.1,256,384.1z"},"children":[]}]}]}]};exports.iosRefreshEmpty=iosRefreshEmpty;var iosRefreshOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M364.1,256c0,60-48.5,108.2-108.1,108.2S147.9,315.7,147.9,256c0-59.6,48.5-108.1,108.1-108.1v55.8l96-55.7l-96-64v44\r\n\tc-70.7,0-128,57.4-128,128.1c0,70.8,57.3,128.1,128,128.1c70.7,0,128-57.1,128-128.1H364.1z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M256,446.7\r\n\t\t\tc-105.1,0-190.7-85.5-190.7-190.7c0-105.1,85.5-190.7,190.7-190.7c105.1,0,190.7,85.5,190.7,190.7\r\n\t\t\tC446.7,361.1,361.1,446.7,256,446.7z"},"children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M256,446.7\r\n\t\t\tc-105.1,0-190.7-85.5-190.7-190.7c0-105.1,85.5-190.7,190.7-190.7c105.1,0,190.7,85.5,190.7,190.7\r\n\t\t\tC446.7,361.1,361.1,446.7,256,446.7z"},"children":[]}]}]}]}]}]};exports.iosRefreshOutline=iosRefreshOutline;var iosRefresh={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M256,384.1\r\n\t\tc-70.7,0-128-57.3-128-128.1c0-70.8,57.3-128.1,128-128.1V84l96,64l-96,55.7v-55.8c-59.6,0-108.1,48.5-108.1,108.1\r\n\t\tc0,59.6,48.5,108.1,108.1,108.1S364.1,316,364.1,256H384C384,327,326.7,384.1,256,384.1z"},"children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M256,384.1\r\n\t\tc-70.7,0-128-57.3-128-128.1c0-70.8,57.3-128.1,128-128.1V84l96,64l-96,55.7v-55.8c-59.6,0-108.1,48.5-108.1,108.1\r\n\t\tc0,59.6,48.5,108.1,108.1,108.1S364.1,316,364.1,256H384C384,327,326.7,384.1,256,384.1z"},"children":[]}]}]}]};exports.iosRefresh=iosRefresh;var iosReload={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"PL_x5F_Reset_1_"},"children":[{"name":"path","attribs":{"d":"M256,64c105.9,0,191.7,85.7,191.9,191.5l55-52.5l9,9.1L441.6,280L375,212.1l9-9.1l51.1,52.4\r\n\t\tC434.8,156.9,354.6,76.8,256,76.8c-98.8,0-179.2,80.4-179.2,179.2c0,98.8,80.4,179.2,179.2,179.2c78.6,0,145.5-51,169.5-121.6\r\n\t\tl12.4,3.5C412.3,393.2,340.6,448,256,448c-106,0-192-86-192-192S150,64,256,64z"},"children":[{"name":"path","attribs":{"d":"M256,64c105.9,0,191.7,85.7,191.9,191.5l55-52.5l9,9.1L441.6,280L375,212.1l9-9.1l51.1,52.4\r\n\t\tC434.8,156.9,354.6,76.8,256,76.8c-98.8,0-179.2,80.4-179.2,179.2c0,98.8,80.4,179.2,179.2,179.2c78.6,0,145.5-51,169.5-121.6\r\n\t\tl12.4,3.5C412.3,393.2,340.6,448,256,448c-106,0-192-86-192-192S150,64,256,64z"},"children":[]}]}]}]};exports.iosReload=iosReload;var iosReverseCameraOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M301.815,318.608c-13.114,11.029-28.956,17.356-45.815,17.356c-36.36,0-66.286-28.965-70.89-61.965h30.61l-38.87-50\r\n\t\tl-37.534,50h29.479c4.696,42,41.717,78,87.205,78c20.9,0,41.17-7.566,57.076-21.218l2.37-2.159l-11.599-11.662L301.815,318.608z"},"children":[{"name":"path","attribs":{"d":"M301.815,318.608c-13.114,11.029-28.956,17.356-45.815,17.356c-36.36,0-66.286-28.965-70.89-61.965h30.61l-38.87-50\r\n\t\tl-37.534,50h29.479c4.696,42,41.717,78,87.205,78c20.9,0,41.17-7.566,57.076-21.218l2.37-2.159l-11.599-11.662L301.815,318.608z"},"children":[]}]},{"name":"path","attribs":{"d":"M315.736,198.885c-16.188-14.775-37.402-22.839-59.736-22.839c-20.9,0-41.169,7.556-57.075,21.206l-2.371,2.052\r\n\t\tl11.599,11.61l2.033-1.706c12.927-10.872,29.197-17.005,45.814-17.005c36.343,0,66.274,28.797,70.891,63.797h-30.644l38.846,51.225\r\n\t\tL372.719,256h-29.512C340.966,236,331.275,213.064,315.736,198.885z"},"children":[{"name":"path","attribs":{"d":"M315.736,198.885c-16.188-14.775-37.402-22.839-59.736-22.839c-20.9,0-41.169,7.556-57.075,21.206l-2.371,2.052\r\n\t\tl11.599,11.61l2.033-1.706c12.927-10.872,29.197-17.005,45.814-17.005c36.343,0,66.274,28.797,70.891,63.797h-30.644l38.846,51.225\r\n\t\tL372.719,256h-29.512C340.966,236,331.275,213.064,315.736,198.885z"},"children":[]}]},{"name":"path","attribs":{"d":"M417.5,160h-61.725c-32.105-36-42.219-48-54.525-48h-88.5c-12.314,0-22.167,12-54.521,48H145v-16h-34v16H97.5\r\n\t\tC79.855,160,64,173.217,64,190.684v176.018C64,384.169,79.855,400,97.5,400h320c17.645,0,30.5-15.831,30.5-33.299V190.684\r\n\t\tC448,173.217,435.145,160,417.5,160z M432,366.701c0,9.263-6.229,17.299-14.5,17.299h-320c-8.738,0-17.5-8.664-17.5-17.299V190.684\r\n\t\tC80,182.518,88.126,176,97.5,176h60.729c0,0,4.124,0,6.133,0s3.225-0.199,5.768-3.2s7.702-10.008,11.08-13.795\r\n\t\tc11.296-12.666,19.457-21.915,25.316-27.132c4.746-4.225,6.211-3.873,6.225-3.873h88.5c0.016,0,1.611-0.363,6.709,4.219\r\n\t\tc6.141,5.521,14.705,16.84,26.558,30.198c2.888,3.255,7.214,8.11,9.317,10.44s4.252,3.143,5.771,3.143s6.17,0,6.17,0H417.5\r\n\t\tc8.832,0,14.5,5.965,14.5,14.684V366.701z"},"children":[{"name":"path","attribs":{"d":"M417.5,160h-61.725c-32.105-36-42.219-48-54.525-48h-88.5c-12.314,0-22.167,12-54.521,48H145v-16h-34v16H97.5\r\n\t\tC79.855,160,64,173.217,64,190.684v176.018C64,384.169,79.855,400,97.5,400h320c17.645,0,30.5-15.831,30.5-33.299V190.684\r\n\t\tC448,173.217,435.145,160,417.5,160z M432,366.701c0,9.263-6.229,17.299-14.5,17.299h-320c-8.738,0-17.5-8.664-17.5-17.299V190.684\r\n\t\tC80,182.518,88.126,176,97.5,176h60.729c0,0,4.124,0,6.133,0s3.225-0.199,5.768-3.2s7.702-10.008,11.08-13.795\r\n\t\tc11.296-12.666,19.457-21.915,25.316-27.132c4.746-4.225,6.211-3.873,6.225-3.873h88.5c0.016,0,1.611-0.363,6.709,4.219\r\n\t\tc6.141,5.521,14.705,16.84,26.558,30.198c2.888,3.255,7.214,8.11,9.317,10.44s4.252,3.143,5.771,3.143s6.17,0,6.17,0H417.5\r\n\t\tc8.832,0,14.5,5.965,14.5,14.684V366.701z"},"children":[]}]}]}]};exports.iosReverseCameraOutline=iosReverseCameraOutline;var iosReverseCamera={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M417.5,160h-61.725c-32.105-36-42.219-48-54.525-48h-88.5c-12.314,0-22.167,12-54.521,48H145v-16h-34v16H97.5\r\n\t\tC79.855,160,64,173.217,64,190.684v176.018C64,384.169,79.855,400,97.5,400h320c17.645,0,30.5-15.831,30.5-33.299V190.684\r\n\t\tC448,173.217,435.145,160,417.5,160z M313.076,330.782C297.17,344.434,276.9,352,256,352c-45.487,0-82.509-36-87.205-78h-29.479\r\n\t\tl37.534-50l38.87,50h-30.61c4.604,33,34.53,61.965,70.89,61.965c16.859,0,32.701-6.327,45.815-17.356l2.032-1.647l11.599,11.662\r\n\t\tL313.076,330.782z M335.094,307.225L296.248,256h30.644c-4.617-35-34.548-63.797-70.891-63.797\r\n\t\tc-16.618,0-32.888,6.133-45.814,17.005l-2.033,1.706l-11.599-11.61l2.371-2.052c15.905-13.65,36.175-21.206,57.075-21.206\r\n\t\tc22.333,0,43.548,8.063,59.736,22.839C331.275,213.064,340.966,236,343.207,256h29.512L335.094,307.225z"},"children":[{"name":"path","attribs":{"d":"M417.5,160h-61.725c-32.105-36-42.219-48-54.525-48h-88.5c-12.314,0-22.167,12-54.521,48H145v-16h-34v16H97.5\r\n\t\tC79.855,160,64,173.217,64,190.684v176.018C64,384.169,79.855,400,97.5,400h320c17.645,0,30.5-15.831,30.5-33.299V190.684\r\n\t\tC448,173.217,435.145,160,417.5,160z M313.076,330.782C297.17,344.434,276.9,352,256,352c-45.487,0-82.509-36-87.205-78h-29.479\r\n\t\tl37.534-50l38.87,50h-30.61c4.604,33,34.53,61.965,70.89,61.965c16.859,0,32.701-6.327,45.815-17.356l2.032-1.647l11.599,11.662\r\n\t\tL313.076,330.782z M335.094,307.225L296.248,256h30.644c-4.617-35-34.548-63.797-70.891-63.797\r\n\t\tc-16.618,0-32.888,6.133-45.814,17.005l-2.033,1.706l-11.599-11.61l2.371-2.052c15.905-13.65,36.175-21.206,57.075-21.206\r\n\t\tc22.333,0,43.548,8.063,59.736,22.839C331.275,213.064,340.966,236,343.207,256h29.512L335.094,307.225z"},"children":[]}]}]}]};exports.iosReverseCamera=iosReverseCamera;var iosRewindOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M464,155v201.9L280.5,256L464,155 M240,156v77.7v27.1v95.6L64,256l176-100.2 M256,128L32,256l224,128V260.8L480,384V128\r\n\tL256,251.2V128L256,128z"},"children":[]}]};exports.iosRewindOutline=iosRewindOutline;var iosRewind={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,128L32,256l224,128V260.8L480,384V128L256,251.2V128L256,128z"},"children":[]}]};exports.iosRewind=iosRewind;var iosRoseOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M379.769,153.431c-29.777,55.586-17.604,99.504-6.645,139.039C378.717,312.648,384,331.708,384,351.889\r\n\t\tc0,15.897-2.956,30.873-8.785,44.51c-5.727,13.396-14.104,25.212-24.898,35.12C327.169,452.768,294.555,464,256,464\r\n\t\ts-71.169-11.232-94.316-32.481c-10.795-9.908-19.172-21.725-24.898-35.12c-5.829-13.637-8.785-28.612-8.785-44.51\r\n\t\tc0-31.65,6.92-55.999,21.775-76.626c13.061-18.134,32.646-34.094,63.505-51.749l6.506-3.725\r\n\t\tc20.197-11.57,27.001-15.467,43.976-23.588c31.845-15.234,66.513-28.387,103.041-39.094\r\n\t\tC371.088,155.851,375.412,154.625,379.769,153.431 M416,128c-18.863,4.163-36.75,8.786-53.697,13.753\r\n\t\tc-40.457,11.858-75.509,25.693-105.445,40.015c-19.271,9.219-26.236,13.393-51.522,27.859C147.001,243,112,278.926,112,351.889\r\n\t\tS167.635,480,256,480s144-55.148,144-128.111S338.999,224,416,128L416,128z"},"children":[{"name":"path","attribs":{"d":"M379.769,153.431c-29.777,55.586-17.604,99.504-6.645,139.039C378.717,312.648,384,331.708,384,351.889\r\n\t\tc0,15.897-2.956,30.873-8.785,44.51c-5.727,13.396-14.104,25.212-24.898,35.12C327.169,452.768,294.555,464,256,464\r\n\t\ts-71.169-11.232-94.316-32.481c-10.795-9.908-19.172-21.725-24.898-35.12c-5.829-13.637-8.785-28.612-8.785-44.51\r\n\t\tc0-31.65,6.92-55.999,21.775-76.626c13.061-18.134,32.646-34.094,63.505-51.749l6.506-3.725\r\n\t\tc20.197-11.57,27.001-15.467,43.976-23.588c31.845-15.234,66.513-28.387,103.041-39.094\r\n\t\tC371.088,155.851,375.412,154.625,379.769,153.431 M416,128c-18.863,4.163-36.75,8.786-53.697,13.753\r\n\t\tc-40.457,11.858-75.509,25.693-105.445,40.015c-19.271,9.219-26.236,13.393-51.522,27.859C147.001,243,112,278.926,112,351.889\r\n\t\tS167.635,480,256,480s144-55.148,144-128.111S338.999,224,416,128L416,128z"},"children":[]}]},{"name":"path","attribs":{"d":"M133.516,123.147c21.432,6.955,47.724,16.977,69.799,29.846c6.385,3.723,12.092,7.493,17.092,11.291\r\n\t\tc-5.504,2.905-10.895,5.855-16.138,8.833c-7.212,4.096-14.359,8.362-21.243,12.679c-10.484,6.574-20.435,13.308-29.789,20.156\r\n\t\tC152.637,180.034,147.555,151.15,133.516,123.147 M96,96c41.475,47.079,44.624,103.891,39.382,144.741\r\n\t\tc12.772-11.274,31.177-25.734,56.144-41.389c6.442-4.041,13.312-8.158,20.645-12.322c11.578-6.575,23.538-12.822,35.834-18.765\r\n\t\tc-9.113-10.898-22.07-20.606-36.631-29.095C162.631,110.756,96,96,96,96L96,96z"},"children":[{"name":"path","attribs":{"d":"M133.516,123.147c21.432,6.955,47.724,16.977,69.799,29.846c6.385,3.723,12.092,7.493,17.092,11.291\r\n\t\tc-5.504,2.905-10.895,5.855-16.138,8.833c-7.212,4.096-14.359,8.362-21.243,12.679c-10.484,6.574-20.435,13.308-29.789,20.156\r\n\t\tC152.637,180.034,147.555,151.15,133.516,123.147 M96,96c41.475,47.079,44.624,103.891,39.382,144.741\r\n\t\tc12.772-11.274,31.177-25.734,56.144-41.389c6.442-4.041,13.312-8.158,20.645-12.322c11.578-6.575,23.538-12.822,35.834-18.765\r\n\t\tc-9.113-10.898-22.07-20.606-36.631-29.095C162.631,110.756,96,96,96,96L96,96z"},"children":[]}]},{"name":"path","attribs":{"d":"M344.629,80.697c5.309,7.227,12.393,17.661,17.66,27.726c-29.863,8.433-65.994,21.145-94.967,33.476\r\n\t\tc-5.963-6.235-12.982-12.294-21.006-18.135c17.437-15.757,38.773-27.668,63.652-35.506\r\n\t\tC324.518,83.675,337.016,81.612,344.629,80.697 M352,64c0,0-78.623,2.321-130.681,62.469c16.629,9.903,29.735,20.503,38.959,31.533\r\n\t\tl2.724,3.257c37.152-16.794,88.131-34.085,120.998-42.009C377.617,95.827,352,64,352,64L352,64z"},"children":[{"name":"path","attribs":{"d":"M344.629,80.697c5.309,7.227,12.393,17.661,17.66,27.726c-29.863,8.433-65.994,21.145-94.967,33.476\r\n\t\tc-5.963-6.235-12.982-12.294-21.006-18.135c17.437-15.757,38.773-27.668,63.652-35.506\r\n\t\tC324.518,83.675,337.016,81.612,344.629,80.697 M352,64c0,0-78.623,2.321-130.681,62.469c16.629,9.903,29.735,20.503,38.959,31.533\r\n\t\tl2.724,3.257c37.152-16.794,88.131-34.085,120.998-42.009C377.617,95.827,352,64,352,64L352,64z"},"children":[]}]},{"name":"path","attribs":{"d":"M181.229,53.532c9.241,6.122,22.68,16.481,35.999,31.924c-4.851,4.201-9.487,8.623-13.888,13.247\r\n\t\tc-14.024-7.088-24.951-12.192-36.826-16.602C170.174,73.63,175.095,63.788,181.229,53.532 M176,32\r\n\t\tc-15.256,22.406-25.684,45.299-30.336,59.997c21.111,6.355,35.475,13.215,61.389,26.574c9.505-11.4,20.415-21.626,32.605-30.543\r\n\t\tC210.342,47.655,176,32,176,32L176,32z"},"children":[{"name":"path","attribs":{"d":"M181.229,53.532c9.241,6.122,22.68,16.481,35.999,31.924c-4.851,4.201-9.487,8.623-13.888,13.247\r\n\t\tc-14.024-7.088-24.951-12.192-36.826-16.602C170.174,73.63,175.095,63.788,181.229,53.532 M176,32\r\n\t\tc-15.256,22.406-25.684,45.299-30.336,59.997c21.111,6.355,35.475,13.215,61.389,26.574c9.505-11.4,20.415-21.626,32.605-30.543\r\n\t\tC210.342,47.655,176,32,176,32L176,32z"},"children":[]}]}]}]};exports.iosRoseOutline=iosRoseOutline;var iosRose={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M416,128c-18.863,4.163-36.75,8.786-53.697,13.753c-40.457,11.858-75.509,25.693-105.445,40.015\r\n\t\tc-19.271,9.219-26.236,13.393-51.522,27.859C147.001,243,112,278.926,112,351.889S167.635,480,256,480s144-55.148,144-128.111\r\n\t\tS338.999,224,416,128L416,128z"},"children":[{"name":"path","attribs":{"d":"M416,128c-18.863,4.163-36.75,8.786-53.697,13.753c-40.457,11.858-75.509,25.693-105.445,40.015\r\n\t\tc-19.271,9.219-26.236,13.393-51.522,27.859C147.001,243,112,278.926,112,351.889S167.635,480,256,480s144-55.148,144-128.111\r\n\t\tS338.999,224,416,128L416,128z"},"children":[]}]},{"name":"path","attribs":{"d":"M96,96c41.475,47.079,44.624,103.891,39.382,144.741c12.772-11.274,31.177-25.734,56.144-41.389\r\n\t\tc6.442-4.041,13.312-8.158,20.645-12.322c11.578-6.575,23.538-12.822,35.834-18.765c-9.113-10.898-22.07-20.606-36.631-29.095\r\n\t\tC162.631,110.756,96,96,96,96L96,96z"},"children":[{"name":"path","attribs":{"d":"M96,96c41.475,47.079,44.624,103.891,39.382,144.741c12.772-11.274,31.177-25.734,56.144-41.389\r\n\t\tc6.442-4.041,13.312-8.158,20.645-12.322c11.578-6.575,23.538-12.822,35.834-18.765c-9.113-10.898-22.07-20.606-36.631-29.095\r\n\t\tC162.631,110.756,96,96,96,96L96,96z"},"children":[]}]},{"name":"path","attribs":{"d":"M352,64c0,0-78.623,2.321-130.681,62.469c16.629,9.903,29.735,20.503,38.959,31.533l2.724,3.257\r\n\t\tc37.152-16.794,88.131-34.085,120.998-42.009C377.617,95.827,352,64,352,64L352,64z"},"children":[{"name":"path","attribs":{"d":"M352,64c0,0-78.623,2.321-130.681,62.469c16.629,9.903,29.735,20.503,38.959,31.533l2.724,3.257\r\n\t\tc37.152-16.794,88.131-34.085,120.998-42.009C377.617,95.827,352,64,352,64L352,64z"},"children":[]}]},{"name":"path","attribs":{"d":"M176,32c-15.256,22.406-25.684,45.299-30.336,59.997c21.111,6.355,35.475,13.215,61.389,26.574\r\n\t\tc9.505-11.4,20.415-21.626,32.605-30.543C210.342,47.655,176,32,176,32L176,32z"},"children":[{"name":"path","attribs":{"d":"M176,32c-15.256,22.406-25.684,45.299-30.336,59.997c21.111,6.355,35.475,13.215,61.389,26.574\r\n\t\tc9.505-11.4,20.415-21.626,32.605-30.543C210.342,47.655,176,32,176,32L176,32z"},"children":[]}]}]}]};exports.iosRose=iosRose;var iosSearchStrong={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M344.5,298c15-23.6,23.8-51.6,23.8-81.7c0-84.1-68.1-152.3-152.1-152.3C132.1,64,64,132.2,64,216.3\r\n\tc0,84.1,68.1,152.3,152.1,152.3c30.5,0,58.9-9,82.7-24.4l6.9-4.8L414.3,448l33.7-34.3L339.5,305.1L344.5,298z M301.4,131.2\r\n\tc22.7,22.7,35.2,52.9,35.2,85c0,32.1-12.5,62.3-35.2,85c-22.7,22.7-52.9,35.2-85,35.2c-32.1,0-62.3-12.5-85-35.2\r\n\tc-22.7-22.7-35.2-52.9-35.2-85c0-32.1,12.5-62.3,35.2-85c22.7-22.7,52.9-35.2,85-35.2C248.5,96,278.7,108.5,301.4,131.2z"},"children":[]}]};exports.iosSearchStrong=iosSearchStrong;var iosSearch={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M448.3,424.7L335,311.3c20.8-26,33.3-59.1,33.3-95.1c0-84.1-68.1-152.2-152-152.2c-84,0-152,68.2-152,152.2\r\n\ts68.1,152.2,152,152.2c36.2,0,69.4-12.7,95.5-33.8L425,448L448.3,424.7z M120.1,312.6c-25.7-25.7-39.8-59.9-39.8-96.3\r\n\ts14.2-70.6,39.8-96.3S180,80,216.3,80c36.3,0,70.5,14.2,96.2,39.9s39.8,59.9,39.8,96.3s-14.2,70.6-39.8,96.3\r\n\tc-25.7,25.7-59.9,39.9-96.2,39.9C180,352.5,145.8,338.3,120.1,312.6z"},"children":[]}]};exports.iosSearch=iosSearch;var iosSettingsStrong={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M32,376h283.35c6.186-14.112,20.281-24,36.65-24s30.465,9.888,36.65,24H480v32h-91.35c-6.186,14.112-20.281,24-36.65,24\r\n\t\ts-30.465-9.888-36.65-24H32"},"children":[{"name":"path","attribs":{"d":"M32,376h283.35c6.186-14.112,20.281-24,36.65-24s30.465,9.888,36.65,24H480v32h-91.35c-6.186,14.112-20.281,24-36.65,24\r\n\t\ts-30.465-9.888-36.65-24H32"},"children":[]}]},{"name":"path","attribs":{"d":"M32,240h91.35c6.186-14.112,20.281-24,36.65-24s30.465,9.888,36.65,24H480v32H196.65c-6.186,14.112-20.281,24-36.65,24\r\n\t\ts-30.465-9.888-36.65-24H32"},"children":[{"name":"path","attribs":{"d":"M32,240h91.35c6.186-14.112,20.281-24,36.65-24s30.465,9.888,36.65,24H480v32H196.65c-6.186,14.112-20.281,24-36.65,24\r\n\t\ts-30.465-9.888-36.65-24H32"},"children":[]}]},{"name":"path","attribs":{"d":"M32,104h283.35c6.186-14.112,20.281-24,36.65-24s30.465,9.888,36.65,24H480v32h-91.35c-6.186,14.112-20.281,24-36.65,24\r\n\t\ts-30.465-9.888-36.65-24H32"},"children":[{"name":"path","attribs":{"d":"M32,104h283.35c6.186-14.112,20.281-24,36.65-24s30.465,9.888,36.65,24H480v32h-91.35c-6.186,14.112-20.281,24-36.65,24\r\n\t\ts-30.465-9.888-36.65-24H32"},"children":[]}]}]}]};exports.iosSettingsStrong=iosSettingsStrong;var iosSettings={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M352,104c8.837,0,16,7.163,16,16s-7.163,16-16,16s-16-7.163-16-16S343.163,104,352,104 M352,88c-17.645,0-32,14.355-32,32\r\n\t\ts14.355,32,32,32s32-14.355,32-32S369.645,88,352,88L352,88z"},"children":[{"name":"path","attribs":{"d":"M352,104c8.837,0,16,7.163,16,16s-7.163,16-16,16s-16-7.163-16-16S343.163,104,352,104 M352,88c-17.645,0-32,14.355-32,32\r\n\t\ts14.355,32,32,32s32-14.355,32-32S369.645,88,352,88L352,88z"},"children":[]}]},{"name":"path","attribs":{"d":"M352,376c8.837,0,16,7.163,16,16s-7.163,16-16,16s-16-7.163-16-16S343.163,376,352,376 M352,360c-17.645,0-32,14.355-32,32\r\n\t\ts14.355,32,32,32s32-14.355,32-32S369.645,360,352,360L352,360z"},"children":[{"name":"path","attribs":{"d":"M352,376c8.837,0,16,7.163,16,16s-7.163,16-16,16s-16-7.163-16-16S343.163,376,352,376 M352,360c-17.645,0-32,14.355-32,32\r\n\t\ts14.355,32,32,32s32-14.355,32-32S369.645,360,352,360L352,360z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M160,240c8.837,0,16,7.163,16,16s-7.163,16-16,16s-16-7.163-16-16S151.163,240,160,240 M160,224\r\n\t\t\tc-17.645,0-32,14.355-32,32s14.355,32,32,32s32-14.355,32-32S177.645,224,160,224L160,224z"},"children":[{"name":"path","attribs":{"d":"M160,240c8.837,0,16,7.163,16,16s-7.163,16-16,16s-16-7.163-16-16S151.163,240,160,240 M160,224\r\n\t\t\tc-17.645,0-32,14.355-32,32s14.355,32,32,32s32-14.355,32-32S177.645,224,160,224L160,224z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M207.32,248H480v16H207.32c0.439-2.604,0.68-5.273,0.68-8S207.76,250.604,207.32,248z"},"children":[{"name":"path","attribs":{"d":"M207.32,248H480v16H207.32c0.439-2.604,0.68-5.273,0.68-8S207.76,250.604,207.32,248z"},"children":[]}]},{"name":"path","attribs":{"d":"M112,256c0,2.727,0.24,5.396,0.68,8H32v-16h80.68C112.24,250.604,112,253.273,112,256z"},"children":[{"name":"path","attribs":{"d":"M112,256c0,2.727,0.24,5.396,0.68,8H32v-16h80.68C112.24,250.604,112,253.273,112,256z"},"children":[]}]},{"name":"path","attribs":{"d":"M399.32,384H480v16h-80.68c0.439-2.604,0.68-5.273,0.68-8S399.76,386.604,399.32,384z"},"children":[{"name":"path","attribs":{"d":"M399.32,384H480v16h-80.68c0.439-2.604,0.68-5.273,0.68-8S399.76,386.604,399.32,384z"},"children":[]}]},{"name":"path","attribs":{"d":"M304,392c0,2.727,0.24,5.396,0.68,8H32v-16h272.68C304.24,386.604,304,389.273,304,392z"},"children":[{"name":"path","attribs":{"d":"M304,392c0,2.727,0.24,5.396,0.68,8H32v-16h272.68C304.24,386.604,304,389.273,304,392z"},"children":[]}]},{"name":"path","attribs":{"d":"M399.32,112H480v16h-80.68c0.439-2.604,0.68-5.273,0.68-8S399.76,114.604,399.32,112z"},"children":[{"name":"path","attribs":{"d":"M399.32,112H480v16h-80.68c0.439-2.604,0.68-5.273,0.68-8S399.76,114.604,399.32,112z"},"children":[]}]},{"name":"path","attribs":{"d":"M304.68,112c-0.439,2.604-0.68,5.273-0.68,8s0.24,5.396,0.68,8H32v-16H304.68z"},"children":[{"name":"path","attribs":{"d":"M304.68,112c-0.439,2.604-0.68,5.273-0.68,8s0.24,5.396,0.68,8H32v-16H304.68z"},"children":[]}]}]}]}]}]}]}]};exports.iosSettings=iosSettings;var iosShuffleStrong={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M365.419,152h13.81l-50.738,41.584l20.308,24.572L448,136l-99.136-84l-20.368,24.978L379.679,120h-14.26\r\n\t\tc-103.727,0-146.494,79.62-180.857,143.727c-1.362,2.542-2.715,4.99-4.06,7.488l-0.059,0.095c-1.591,2.953-3.176,6.114-4.76,9.038\r\n\t\tc-35.562,65.63-66.893,83.214-111.684,83.641V396c37.625,0,57.563-9.451,72.236-18.178c24.935-14.831,47.042-44.559,67.583-82.467\r\n\t\tc1.541-2.844,3.083-5.752,4.632-8.626l0.225-0.438c1.459-2.711,2.922-5.273,4.39-8.014C246.369,216.113,280.808,152,365.419,152z"},"children":[{"name":"path","attribs":{"d":"M365.419,152h13.81l-50.738,41.584l20.308,24.572L448,136l-99.136-84l-20.368,24.978L379.679,120h-14.26\r\n\t\tc-103.727,0-146.494,79.62-180.857,143.727c-1.362,2.542-2.715,4.99-4.06,7.488l-0.059,0.095c-1.591,2.953-3.176,6.114-4.76,9.038\r\n\t\tc-35.562,65.63-66.893,83.214-111.684,83.641V396c37.625,0,57.563-9.451,72.236-18.178c24.935-14.831,47.042-44.559,67.583-82.467\r\n\t\tc1.541-2.844,3.083-5.752,4.632-8.626l0.225-0.438c1.459-2.711,2.922-5.273,4.39-8.014C246.369,216.113,280.808,152,365.419,152z"},"children":[]}]},{"name":"path","attribs":{"d":"M348.798,293.844l-20.308,24.572L379.229,360h-13.81c-70.728,0-106.396-44.801-135.649-95.812l-17.648,32.618\r\n\t\tC243.556,346.626,287.116,392,365.419,392h14.26l-51.183,43.022L348.864,460L448,376L348.798,293.844z"},"children":[{"name":"path","attribs":{"d":"M348.798,293.844l-20.308,24.572L379.229,360h-13.81c-70.728,0-106.396-44.801-135.649-95.812l-17.648,32.618\r\n\t\tC243.556,346.626,287.116,392,365.419,392h14.26l-51.183,43.022L348.864,460L448,376L348.798,293.844z"},"children":[]}]},{"name":"path","attribs":{"d":"M175.684,231.652c1.584,2.924,3.169,6.085,4.76,9.038l0.059,0.095c1.218,2.262,2.442,4.49,3.675,6.777\r\n\t\tc5.82-10.73,11.98-21.748,18.695-32.649c-20.273-37.079-42.083-66.132-66.636-80.735C121.563,125.451,101.625,116,64,116v32.011\r\n\t\tC108.791,148.438,140.122,166.022,175.684,231.652z"},"children":[{"name":"path","attribs":{"d":"M175.684,231.652c1.584,2.924,3.169,6.085,4.76,9.038l0.059,0.095c1.218,2.262,2.442,4.49,3.675,6.777\r\n\t\tc5.82-10.73,11.98-21.748,18.695-32.649c-20.273-37.079-42.083-66.132-66.636-80.735C121.563,125.451,101.625,116,64,116v32.011\r\n\t\tC108.791,148.438,140.122,166.022,175.684,231.652z"},"children":[]}]}]}]};exports.iosShuffleStrong=iosShuffleStrong;var iosShuffle={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M362.121,207.146L352,194.854L413.784,144h-46.117c-93.327,0-129.147,74.511-163.787,138.832\r\n\t\tc-1.62,3.008-3.233,6.004-4.846,8.979c-19.836,36.607-40.979,61.242-64.64,75.314C120.573,375.346,101.401,384,64,384v-16.25\r\n\t\tc47.937,0,83.098-13.673,120.966-83.561c1.606-2.965,3.214-5.949,4.827-8.944C224.943,209.977,264.784,128,367.667,128h46.28\r\n\t\tL352,76.146L362.121,64L448,136L362.121,207.146z"},"children":[{"name":"path","attribs":{"d":"M362.121,207.146L352,194.854L413.784,144h-46.117c-93.327,0-129.147,74.511-163.787,138.832\r\n\t\tc-1.62,3.008-3.233,6.004-4.846,8.979c-19.836,36.607-40.979,61.242-64.64,75.314C120.573,375.346,101.401,384,64,384v-16.25\r\n\t\tc47.937,0,83.098-13.673,120.966-83.561c1.606-2.965,3.214-5.949,4.827-8.944C224.943,209.977,264.784,128,367.667,128h46.28\r\n\t\tL352,76.146L362.121,64L448,136L362.121,207.146z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M199.034,220.189c-19.836-36.607-40.979-61.242-64.64-75.314C120.573,136.654,101.401,128,64,128v16.25\r\n\t\t\tc47.937,0,83.098,13.673,120.966,83.561c1.606,2.964,3.214,5.948,4.827,8.944c0.438,0.812,0.875,1.627,1.314,2.444\r\n\t\t\tc3.01-5.438,6.107-10.917,9.339-16.394C199.977,221.935,199.504,221.056,199.034,220.189z"},"children":[{"name":"path","attribs":{"d":"M199.034,220.189c-19.836-36.607-40.979-61.242-64.64-75.314C120.573,136.654,101.401,128,64,128v16.25\r\n\t\t\tc47.937,0,83.098,13.673,120.966,83.561c1.606,2.964,3.214,5.948,4.827,8.944c0.438,0.812,0.875,1.627,1.314,2.444\r\n\t\t\tc3.01-5.438,6.107-10.917,9.339-16.394C199.977,221.935,199.504,221.056,199.034,220.189z"},"children":[]}]},{"name":"path","attribs":{"d":"M362.121,304.854L352,317.146L413.784,368h-46.117c-72.693,0-110.496-45.207-140.028-95.592\r\n\t\t\tc-1.768,3.275-3.525,6.551-5.273,9.814c-1.175,2.192-2.344,4.37-3.513,6.545C249.621,338.777,291.254,384,367.667,384h46.28\r\n\t\t\tL352,435.854L362.121,448L448,376L362.121,304.854z"},"children":[{"name":"path","attribs":{"d":"M362.121,304.854L352,317.146L413.784,368h-46.117c-72.693,0-110.496-45.207-140.028-95.592\r\n\t\t\tc-1.768,3.275-3.525,6.551-5.273,9.814c-1.175,2.192-2.344,4.37-3.513,6.545C249.621,338.777,291.254,384,367.667,384h46.28\r\n\t\t\tL352,435.854L362.121,448L448,376L362.121,304.854z"},"children":[]}]}]}]}]}]};exports.iosShuffle=iosShuffle;var iosSkipbackwardOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M96,96v320h79V274.2L416,416V96L175,237.8V96H96z M175.6,256l7.6-4.4L400,124v0v264L183.1,260.4L175.6,256z M112,112h47\r\n\tv125.8v28v8.5V400h-47V112z"},"children":[]}]};exports.iosSkipbackwardOutline=iosSkipbackwardOutline;var iosSkipbackward={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M96,96v320h79V274.2L416,416V96L175,237.8V96H96z"},"children":[]}]};exports.iosSkipbackward=iosSkipbackward;var iosSkipforwardOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M337,96v141.8L96,96v320l241-141.8V416h79V96H337z M328.9,260.4L112,388V124v0l216.9,127.6l7.6,4.4L328.9,260.4z M400,400\r\n\th-47V274.2v-8.5v-28V112h47V400z"},"children":[]}]};exports.iosSkipforwardOutline=iosSkipforwardOutline;var iosSkipforward={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M337,96v141.8L96,96v320l241-141.8V416h79V96H337z"},"children":[]}]};exports.iosSkipforward=iosSkipforward;var iosSnowy={"viewBox":"0 0 512 512","children":[{"name":"style","attribs":{"type":"text/css"},"children":[]},{"name":"path","attribs":{"class":"st0","d":"M379.9,317l-28.7-16.3c6.1-5.8,13-9.7,20.7-12.3c4.3-1.4,6.5-5.9,5.1-10.1c-1.4-4.2-6-6.5-10.3-5.1\r\n\tc-11.6,3.8-22.2,11-30.1,19.2L272.3,256l64.2-36.4c8.4,9.1,18.6,15.4,30.2,19.2c4.3,1.4,8.9-0.8,10.3-5c1.4-4.2-0.8-8.7-5.1-10.1\r\n\tc-7.8-2.6-14.8-6.5-20.9-12.3l28.8-16.3c3.9-2.2,5.2-7.1,3-10.9s-7.2-5.1-11.1-2.9L343,197.3c-2-8.1-2.1-15.9-0.5-23.8\r\n\tc0.9-4.3-2-8.5-6.4-9.4c-4.4-0.9-8.7,1.9-9.6,6.2c-2.4,11.8-1.4,24.4,1.8,35.2L264,242.2v-73c11-2.7,22.4-8.1,31.5-16.1\r\n\tc3.3-2.9,3.6-8,0.7-11.3c-2.9-3.3-7.9-3.6-11.3-0.7c-6,5.3-12.9,9.2-20.9,11.5V120c0-4.4-3.6-8-8-8c-4.4,0-8,3.6-8,8v32.7\r\n\tc-8-2.3-14.8-6.2-20.9-11.6c-3.3-2.9-8.4-2.6-11.3,0.7c-2.9,3.3-2.6,8.4,0.7,11.3c9.1,8,19.5,13.5,31.5,16.1v73l-64.5-36.6\r\n\tc3.2-10.9,4.2-23.5,1.9-35.2c-0.9-4.3-5.2-7.1-9.6-6.2c-4.4,0.9-7.2,5-6.4,9.4c1.6,7.9,1.6,15.7-0.5,23.8L140.3,181\r\n\tc-3.9-2.2-8.9-0.9-11.1,2.9c-2.2,3.8-0.9,8.7,3,10.9l28.8,16.3c-6.1,5.8-13,9.7-20.8,12.3c-4.3,1.4-6.5,6-5.1,10.1\r\n\tc1.4,4.2,6.1,6.4,10.3,5c11.6-3.9,21.8-10.1,30.2-19.2l64.3,36.5l-64.4,36.5c-7.9-8.2-18.6-15.3-30.1-19.2\r\n\tc-4.3-1.4-8.8,0.9-10.3,5.1c-1.4,4.2,0.8,8.7,5.1,10.1c7.7,2.6,14.6,6.5,20.7,12.3l-28.7,16.3c-3.9,2.2-5.2,7.1-3,10.9\r\n\ts7.2,5.1,11.1,2.9l28.8-16.3c2.1,8.1,2.1,15.9,0.4,23.9c-0.9,4.3,2,8.5,6.4,9.4c4.4,0.9,8.7-1.9,9.6-6.3c2.4-11.8,1.9-23.6-1.9-35.3\r\n\tl64.5-36.6v73.1c-12,2.6-22.4,8.1-31.5,16.1c-3.3,2.9-3.6,8-0.7,11.3c2.9,3.3,7.9,3.6,11.3,0.7c6.1-5.4,12.9-9.3,20.9-11.6V392\r\n\tc0,4.4,3.6,8,8,8c4.4,0,8-3.6,8-8v-32.6c8,2.3,14.8,6.2,20.9,11.5c3.3,2.9,8.3,2.6,11.3-0.7c2.9-3.3,2.6-8.4-0.7-11.3\r\n\tc-9-7.9-20.4-13.4-31.4-16.1v-73.1l64.4,36.5c-3.8,11.7-4.2,23.5-1.8,35.3c0.9,4.3,5.2,7.1,9.6,6.3c4.4-0.9,7.3-5.1,6.4-9.4\r\n\tc-1.6-8-1.6-15.8,0.4-23.9l28.8,16.3c3.9,2.2,8.9,0.9,11.1-2.9C385.2,324.1,383.8,319.2,379.9,317z"},"children":[]}]};exports.iosSnowy=iosSnowy;var iosSpeedometerOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,64C132.288,64,32,164.226,32,287.938c0,56.975,21.283,108.97,56.316,148.5c3.551,4.006,7.241,7.82,11.066,11.562\r\n\t\tc3.059-3.49,6.232-6.834,9.539-10.141c0.48-0.48,0.972-0.947,1.456-1.422c18.78-18.426,40.521-32.949,64.664-43.161\r\n\t\tc25.633-10.842,52.871-16.339,80.958-16.339s55.325,5.497,80.958,16.339c24.144,10.212,45.884,24.735,64.664,43.161\r\n\t\tc0.484,0.475,0.976,0.941,1.456,1.422c3.307,3.307,6.48,6.65,9.539,10.141c3.825-3.742,7.516-7.557,11.066-11.562\r\n\t\tc35.033-39.53,56.316-91.525,56.316-148.5C480,164.226,379.712,64,256,64z M447.661,369.177\r\n\t\tc-8.663,20.481-20.429,39.092-35.044,55.776c-40.39-39.51-95.653-63.945-156.617-63.945s-116.228,24.33-156.617,63.84\r\n\t\tc-14.615-16.685-26.381-35.172-35.044-55.653c-9.81-23.19-15.228-47.694-16.173-72.694H79.5v-16H48.166\r\n\t\tc0.945-25,6.363-50.048,16.173-73.239c9.372-22.157,22.376-42.431,38.692-60.11l26.932,26.893l5.496-5.538l5.277-5.264l-0.02-0.027\r\n\t\tl0.547-0.552l-26.951-26.984c17.862-16.647,38.004-29.894,60.479-39.4c23.191-9.81,47.708-15.229,72.708-16.174V117.5h16V80.104\r\n\t\tc26,0.945,50.017,6.363,73.208,16.173c22.437,9.49,42.921,22.706,60.762,39.312l-26.975,27.069l0.577,0.547l-0.004,0.019\r\n\t\tl5.285,5.246l5.5,5.503l27.026-27.057c16.356,17.703,29.392,38.148,38.78,60.345c9.81,23.191,15.229,48.239,16.174,73.239H431.5v16\r\n\t\th32.334C462.889,321.5,457.471,345.986,447.661,369.177z"},"children":[{"name":"path","attribs":{"d":"M256,64C132.288,64,32,164.226,32,287.938c0,56.975,21.283,108.97,56.316,148.5c3.551,4.006,7.241,7.82,11.066,11.562\r\n\t\tc3.059-3.49,6.232-6.834,9.539-10.141c0.48-0.48,0.972-0.947,1.456-1.422c18.78-18.426,40.521-32.949,64.664-43.161\r\n\t\tc25.633-10.842,52.871-16.339,80.958-16.339s55.325,5.497,80.958,16.339c24.144,10.212,45.884,24.735,64.664,43.161\r\n\t\tc0.484,0.475,0.976,0.941,1.456,1.422c3.307,3.307,6.48,6.65,9.539,10.141c3.825-3.742,7.516-7.557,11.066-11.562\r\n\t\tc35.033-39.53,56.316-91.525,56.316-148.5C480,164.226,379.712,64,256,64z M447.661,369.177\r\n\t\tc-8.663,20.481-20.429,39.092-35.044,55.776c-40.39-39.51-95.653-63.945-156.617-63.945s-116.228,24.33-156.617,63.84\r\n\t\tc-14.615-16.685-26.381-35.172-35.044-55.653c-9.81-23.19-15.228-47.694-16.173-72.694H79.5v-16H48.166\r\n\t\tc0.945-25,6.363-50.048,16.173-73.239c9.372-22.157,22.376-42.431,38.692-60.11l26.932,26.893l5.496-5.538l5.277-5.264l-0.02-0.027\r\n\t\tl0.547-0.552l-26.951-26.984c17.862-16.647,38.004-29.894,60.479-39.4c23.191-9.81,47.708-15.229,72.708-16.174V117.5h16V80.104\r\n\t\tc26,0.945,50.017,6.363,73.208,16.173c22.437,9.49,42.921,22.706,60.762,39.312l-26.975,27.069l0.577,0.547l-0.004,0.019\r\n\t\tl5.285,5.246l5.5,5.503l27.026-27.057c16.356,17.703,29.392,38.148,38.78,60.345c9.81,23.191,15.229,48.239,16.174,73.239H431.5v16\r\n\t\th32.334C462.889,321.5,457.471,345.986,447.661,369.177z"},"children":[]}]},{"name":"path","attribs":{"d":"M368.479,174.545l-85.484,73.727c-7.697-5.255-16.992-8.334-26.994-8.334c-26.467,0-48,21.533-48,48\r\n\t\tc0,10.479,3.385,20.178,9.106,28.08l-11.948,11.948l11.312,11.313l12.033-12.033c7.795,5.469,17.273,8.691,27.496,8.691\r\n\t\tc26.467,0,48-21.533,48-48c0-10.387-3.327-20.005-8.956-27.868l74.849-84.11L368.479,174.545z M256,319.938\r\n\t\tc-17.673,0-32-14.326-32-32c0-17.673,14.327-32,32-32s32,14.327,32,32C288,305.611,273.673,319.938,256,319.938z"},"children":[{"name":"path","attribs":{"d":"M368.479,174.545l-85.484,73.727c-7.697-5.255-16.992-8.334-26.994-8.334c-26.467,0-48,21.533-48,48\r\n\t\tc0,10.479,3.385,20.178,9.106,28.08l-11.948,11.948l11.312,11.313l12.033-12.033c7.795,5.469,17.273,8.691,27.496,8.691\r\n\t\tc26.467,0,48-21.533,48-48c0-10.387-3.327-20.005-8.956-27.868l74.849-84.11L368.479,174.545z M256,319.938\r\n\t\tc-17.673,0-32-14.326-32-32c0-17.673,14.327-32,32-32s32,14.327,32,32C288,305.611,273.673,319.938,256,319.938z"},"children":[]}]}]}]};exports.iosSpeedometerOutline=iosSpeedometerOutline;var iosSpeedometer={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M417,278.742V278h29.814c-0.931-23-6.056-45.609-14.831-66.151c-8.643-20.228-20.503-38.665-35.257-54.562l-24.867,24.646\r\n\t\tl-11.229-10.992l24.788-24.679c-16.187-14.836-34.86-26.742-55.515-35.392C308.479,101.897,286,97.092,263,96.186V130h-1.008H248\r\n\t\tV96.186c-23,0.894-44.95,5.699-66.404,14.685c-20.353,8.523-38.958,20.457-55.315,35.471l24.796,24.583l-0.549,0.549l0.001,0.006\r\n\t\tl-0.29,0.335l-10.27,10.203l-24.779-24.479c-14.77,15.932-26.604,34.243-35.176,54.309C71.241,232.388,66.117,255,65.187,278H94v16\r\n\t\th-0.776H65.187c0.926,22,5.915,44.432,14.829,65.297c7.689,18.001,18.398,34.664,31.831,49.926\r\n\t\tc38.785-37.377,89.958-57.928,144.154-57.928c54.113,0,105.286,20.676,144.154,58.135c13.354-15.175,24.061-31.979,31.83-50.166\r\n\t\tC440.9,338.396,445.889,316,446.814,294H417V278.742z M304,287.938c0,26.467-21.533,48-48,48c-10.223,0-19.701-3.223-27.496-8.691\r\n\t\tl-12.033,12.033l-11.312-11.313l11.948-11.948c-5.722-7.902-9.106-17.602-9.106-28.08c0-26.467,21.533-48,48-48\r\n\t\tc10.002,0,19.297,3.079,26.994,8.334l73.484-65.727l1.414,1.414l-62.849,76.11C300.673,267.933,304,277.551,304,287.938z"},"children":[{"name":"path","attribs":{"d":"M417,278.742V278h29.814c-0.931-23-6.056-45.609-14.831-66.151c-8.643-20.228-20.503-38.665-35.257-54.562l-24.867,24.646\r\n\t\tl-11.229-10.992l24.788-24.679c-16.187-14.836-34.86-26.742-55.515-35.392C308.479,101.897,286,97.092,263,96.186V130h-1.008H248\r\n\t\tV96.186c-23,0.894-44.95,5.699-66.404,14.685c-20.353,8.523-38.958,20.457-55.315,35.471l24.796,24.583l-0.549,0.549l0.001,0.006\r\n\t\tl-0.29,0.335l-10.27,10.203l-24.779-24.479c-14.77,15.932-26.604,34.243-35.176,54.309C71.241,232.388,66.117,255,65.187,278H94v16\r\n\t\th-0.776H65.187c0.926,22,5.915,44.432,14.829,65.297c7.689,18.001,18.398,34.664,31.831,49.926\r\n\t\tc38.785-37.377,89.958-57.928,144.154-57.928c54.113,0,105.286,20.676,144.154,58.135c13.354-15.175,24.061-31.979,31.83-50.166\r\n\t\tC440.9,338.396,445.889,316,446.814,294H417V278.742z M304,287.938c0,26.467-21.533,48-48,48c-10.223,0-19.701-3.223-27.496-8.691\r\n\t\tl-12.033,12.033l-11.312-11.313l11.948-11.948c-5.722-7.902-9.106-17.602-9.106-28.08c0-26.467,21.533-48,48-48\r\n\t\tc10.002,0,19.297,3.079,26.994,8.334l73.484-65.727l1.414,1.414l-62.849,76.11C300.673,267.933,304,277.551,304,287.938z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,64C132.288,64,32,164.226,32,287.938c0,56.975,21.283,108.97,56.316,148.5c3.551,4.006,7.241,7.82,11.066,11.562\r\n\t\th22.193c31.713-39.103,80.144-64.096,134.424-64.096S358.711,408.897,390.424,448h22.193c3.825-3.742,7.516-7.557,11.066-11.562\r\n\t\tc35.033-39.53,56.316-91.525,56.316-148.5C480,164.226,379.712,64,256,64z M410.744,420.797\r\n\t\tc-3.051,3.408-6.392,6.863-10.213,10.564l-0.376,0.365l-0.348-0.393c-2.629-2.97-5.493-5.985-8.759-9.22\r\n\t\tc-0.275-0.271-0.555-0.539-0.834-0.807l-0.504-0.485c-17.258-16.766-37.234-29.967-59.375-39.238\r\n\t\tc-23.535-9.856-48.545-14.854-74.336-14.854c-25.791,0-50.801,4.998-74.336,14.854c-22.14,9.271-42.117,22.473-59.375,39.238\r\n\t\tl-0.504,0.485c-0.279,0.268-0.558,0.535-0.833,0.807c-3.266,3.234-6.13,6.25-8.759,9.22l-0.348,0.393l-0.377-0.365\r\n\t\tc-3.821-3.701-7.162-7.156-10.212-10.564c-33.514-37.441-51.971-85.629-51.971-135.685c0-54.666,21.502-106.053,60.545-144.694\r\n\t\tC148.87,101.779,200.781,80.5,256,80.5c55.22,0,107.13,21.279,146.17,59.918c39.043,38.642,60.545,90.029,60.545,144.694\r\n\t\tC462.715,335.168,444.259,383.355,410.744,420.797z"},"children":[{"name":"path","attribs":{"d":"M256,64C132.288,64,32,164.226,32,287.938c0,56.975,21.283,108.97,56.316,148.5c3.551,4.006,7.241,7.82,11.066,11.562\r\n\t\th22.193c31.713-39.103,80.144-64.096,134.424-64.096S358.711,408.897,390.424,448h22.193c3.825-3.742,7.516-7.557,11.066-11.562\r\n\t\tc35.033-39.53,56.316-91.525,56.316-148.5C480,164.226,379.712,64,256,64z M410.744,420.797\r\n\t\tc-3.051,3.408-6.392,6.863-10.213,10.564l-0.376,0.365l-0.348-0.393c-2.629-2.97-5.493-5.985-8.759-9.22\r\n\t\tc-0.275-0.271-0.555-0.539-0.834-0.807l-0.504-0.485c-17.258-16.766-37.234-29.967-59.375-39.238\r\n\t\tc-23.535-9.856-48.545-14.854-74.336-14.854c-25.791,0-50.801,4.998-74.336,14.854c-22.14,9.271-42.117,22.473-59.375,39.238\r\n\t\tl-0.504,0.485c-0.279,0.268-0.558,0.535-0.833,0.807c-3.266,3.234-6.13,6.25-8.759,9.22l-0.348,0.393l-0.377-0.365\r\n\t\tc-3.821-3.701-7.162-7.156-10.212-10.564c-33.514-37.441-51.971-85.629-51.971-135.685c0-54.666,21.502-106.053,60.545-144.694\r\n\t\tC148.87,101.779,200.781,80.5,256,80.5c55.22,0,107.13,21.279,146.17,59.918c39.043,38.642,60.545,90.029,60.545,144.694\r\n\t\tC462.715,335.168,444.259,383.355,410.744,420.797z"},"children":[]}]},{"name":"circle","attribs":{"cx":"256","cy":"287.938","r":"32"},"children":[{"name":"circle","attribs":{"cx":"256","cy":"287.938","r":"32"},"children":[]}]}]}]};exports.iosSpeedometer=iosSpeedometer;var iosStarHalf={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M172.248,304.931l-54.677,159.073L256,365.37l138.445,98.634L339.76,304.937L480,207H308.613L256,48.005L203.402,207H32\r\n\tL172.248,304.931z M256,100.75L297,224h131l-108,74.711l42.623,122.481L256,345.257V100.75z"},"children":[]}]};exports.iosStarHalf=iosStarHalf;var iosStarOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M480,207H308.6L256,47.9L203.4,207H32l140.2,97.9L117.6,464L256,365.4L394.4,464l-54.7-159.1L480,207z M362.6,421.2\r\n\tl-106.6-76l-106.6,76L192,298.7L84,224h131l41-123.3L297,224h131l-108,74.6L362.6,421.2z"},"children":[]}]};exports.iosStarOutline=iosStarOutline;var iosStar={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M480,207H308.6L256,47.9L203.4,207H32l140.2,97.9L117.6,464L256,365.4L394.4,464l-54.7-159.1L480,207z"},"children":[]}]};exports.iosStar=iosStar;var iosStopwatchOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M397.6,146.7l-1.8-1.7h18.4l8.5,7.8l22.5-22.8l-40.8-40.3L381.2,112l8.8,9.2v18.6l-5-4.7c-31.3-28.3-70-45.2-113-48.9V48\r\n\t\th-32v38h-2c-43.7,3-85,22.5-116,53v-17.8l8.9-9.2L108,89.8L67.2,130l22.5,22.8l8.5-7.8H116c-0.3,0-0.7,0.7-1,1.1\r\n\t\tC82.2,181.2,64,227,64,274.6C64,379,150.1,464,256.1,464C361.9,464,448,379.1,448,274.7C448,227.1,430,181.6,397.6,146.7z\r\n\t\t M256.3,445.7c-95.5,0-173.1-76.7-173.1-170.9c0-94.3,77.7-170.9,173.1-170.9c95.5,0,173.1,76.7,173.1,170.9\r\n\t\tC429.5,369,351.8,445.7,256.3,445.7z"},"children":[{"name":"path","attribs":{"d":"M397.6,146.7l-1.8-1.7h18.4l8.5,7.8l22.5-22.8l-40.8-40.3L381.2,112l8.8,9.2v18.6l-5-4.7c-31.3-28.3-70-45.2-113-48.9V48\r\n\t\th-32v38h-2c-43.7,3-85,22.5-116,53v-17.8l8.9-9.2L108,89.8L67.2,130l22.5,22.8l8.5-7.8H116c-0.3,0-0.7,0.7-1,1.1\r\n\t\tC82.2,181.2,64,227,64,274.6C64,379,150.1,464,256.1,464C361.9,464,448,379.1,448,274.7C448,227.1,430,181.6,397.6,146.7z\r\n\t\t M256.3,445.7c-95.5,0-173.1-76.7-173.1-170.9c0-94.3,77.7-170.9,173.1-170.9c95.5,0,173.1,76.7,173.1,170.9\r\n\t\tC429.5,369,351.8,445.7,256.3,445.7z"},"children":[]}]},{"name":"path","attribs":{"d":"M264,257.3V128h-16v129.4c-12.5,4.3-24,16.5-24,30.3c0,14.7,10,27,24,30.5l8,17.8l0,0l8-17.8c14-3.5,24-15.8,24-30.5\r\n\t\tC288,273.2,277.5,261,264,257.3z"},"children":[{"name":"path","attribs":{"d":"M264,257.3V128h-16v129.4c-12.5,4.3-24,16.5-24,30.3c0,14.7,10,27,24,30.5l8,17.8l0,0l8-17.8c14-3.5,24-15.8,24-30.5\r\n\t\tC288,273.2,277.5,261,264,257.3z"},"children":[]}]}]}]};exports.iosStopwatchOutline=iosStopwatchOutline;var iosStopwatch={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M397.6,146.7l-1.8-1.7h18.4l8.5,7.8l22.5-22.8l-40.8-40.3L381.2,112l8.8,9.2v18.6l-5-4.7c-31.3-28.3-70-45.2-113-48.9V48\r\n\t\th-32v38h-2c-43.7,3-85,22.5-116,53v-17.8l8.9-9.2L108,89.8L67.2,130l22.5,22.8l8.5-7.8H116c-0.3,0-0.7,0.7-1,1.1\r\n\t\tC82.2,181.2,64,227,64,274.6C64,379,150.1,464,256.1,464C361.9,464,448,379.1,448,274.7C448,227.1,430,181.6,397.6,146.7z\r\n\t\t M264,318.2l-8,17.8l-8-17.8c-14-3.5-24-15.8-24-30.5c0-13.8,11.5-26,24-30.3V128h16v129.3c13.5,3.7,24,15.9,24,30.4\r\n\t\tC288,302.4,278,314.7,264,318.2z"},"children":[{"name":"path","attribs":{"d":"M397.6,146.7l-1.8-1.7h18.4l8.5,7.8l22.5-22.8l-40.8-40.3L381.2,112l8.8,9.2v18.6l-5-4.7c-31.3-28.3-70-45.2-113-48.9V48\r\n\t\th-32v38h-2c-43.7,3-85,22.5-116,53v-17.8l8.9-9.2L108,89.8L67.2,130l22.5,22.8l8.5-7.8H116c-0.3,0-0.7,0.7-1,1.1\r\n\t\tC82.2,181.2,64,227,64,274.6C64,379,150.1,464,256.1,464C361.9,464,448,379.1,448,274.7C448,227.1,430,181.6,397.6,146.7z\r\n\t\t M264,318.2l-8,17.8l-8-17.8c-14-3.5-24-15.8-24-30.5c0-13.8,11.5-26,24-30.3V128h16v129.3c13.5,3.7,24,15.9,24,30.4\r\n\t\tC288,302.4,278,314.7,264,318.2z"},"children":[]}]}]}]};exports.iosStopwatch=iosStopwatch;var iosSunnyOutline={"viewBox":"0 0 512 512","children":[{"name":"style","attribs":{"type":"text/css"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"247","y":"96","class":"st0","width":"18","height":"56"},"children":[{"name":"rect","attribs":{"x":"247","y":"96","class":"st0","width":"18","height":"56"},"children":[]}]},{"name":"rect","attribs":{"x":"247","y":"356","class":"st0","width":"18","height":"60"},"children":[{"name":"rect","attribs":{"x":"247","y":"356","class":"st0","width":"18","height":"60"},"children":[]}]},{"name":"rect","attribs":{"x":"360","y":"247","class":"st0","width":"56","height":"18"},"children":[{"name":"rect","attribs":{"x":"360","y":"247","class":"st0","width":"56","height":"18"},"children":[]}]},{"name":"rect","attribs":{"x":"96","y":"247","class":"st0","width":"60","height":"18"},"children":[{"name":"rect","attribs":{"x":"96","y":"247","class":"st0","width":"60","height":"18"},"children":[]}]},{"name":"rect","attribs":{"x":"339","y":"317.4","transform":"matrix(-0.7071 0.7071 -0.7071 -0.7071 834.4009 337.0126)","class":"st0","width":"16.8","height":"47.8"},"children":[{"name":"rect","attribs":{"x":"339","y":"317.4","transform":"matrix(-0.7071 0.7071 -0.7071 -0.7071 834.4009 337.0126)","class":"st0","width":"16.8","height":"47.8"},"children":[]}]},{"name":"rect","attribs":{"x":"162.2","y":"140.7","transform":"matrix(-0.7071 0.7071 -0.7071 -0.7071 407.7248 160.277)","class":"st0","width":"16.8","height":"47.9"},"children":[{"name":"rect","attribs":{"x":"162.2","y":"140.7","transform":"matrix(-0.7071 0.7071 -0.7071 -0.7071 407.7248 160.277)","class":"st0","width":"16.8","height":"47.9"},"children":[]}]},{"name":"rect","attribs":{"x":"339","y":"140.7","transform":"matrix(0.7071 0.7071 -0.7071 0.7071 218.1171 -197.4504)","class":"st0","width":"16.8","height":"47.8"},"children":[{"name":"rect","attribs":{"x":"339","y":"140.7","transform":"matrix(0.7071 0.7071 -0.7071 0.7071 218.1171 -197.4504)","class":"st0","width":"16.8","height":"47.8"},"children":[]}]},{"name":"rect","attribs":{"x":"162.2","y":"317.4","transform":"matrix(0.707 0.7072 -0.7072 0.707 291.3531 -20.7056)","class":"st0","width":"16.8","height":"47.9"},"children":[{"name":"rect","attribs":{"x":"162.2","y":"317.4","transform":"matrix(0.707 0.7072 -0.7072 0.707 291.3531 -20.7056)","class":"st0","width":"16.8","height":"47.9"},"children":[]}]},{"name":"path","attribs":{"class":"st0","d":"M256,331.8c-41.8,0-75.8-34-75.8-75.8s34-75.8,75.8-75.8c41.8,0,75.8,34,75.8,75.8S297.8,331.8,256,331.8z\r\n\t\t M256,197.1c-32.5,0-58.9,26.4-58.9,58.9s26.4,58.9,58.9,58.9c32.5,0,58.9-26.4,58.9-58.9S288.5,197.1,256,197.1z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M256,331.8c-41.8,0-75.8-34-75.8-75.8s34-75.8,75.8-75.8c41.8,0,75.8,34,75.8,75.8S297.8,331.8,256,331.8z\r\n\t\t M256,197.1c-32.5,0-58.9,26.4-58.9,58.9s26.4,58.9,58.9,58.9c32.5,0,58.9-26.4,58.9-58.9S288.5,197.1,256,197.1z"},"children":[]}]}]}]};exports.iosSunnyOutline=iosSunnyOutline;var iosSunny={"viewBox":"0 0 512 512","children":[{"name":"style","attribs":{"type":"text/css"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"247","y":"96","class":"st0","width":"18","height":"56"},"children":[{"name":"rect","attribs":{"x":"247","y":"96","class":"st0","width":"18","height":"56"},"children":[]}]},{"name":"rect","attribs":{"x":"247","y":"356","class":"st0","width":"18","height":"60"},"children":[{"name":"rect","attribs":{"x":"247","y":"356","class":"st0","width":"18","height":"60"},"children":[]}]},{"name":"rect","attribs":{"x":"360","y":"247","class":"st0","width":"56","height":"18"},"children":[{"name":"rect","attribs":{"x":"360","y":"247","class":"st0","width":"56","height":"18"},"children":[]}]},{"name":"rect","attribs":{"x":"96","y":"247","class":"st0","width":"60","height":"18"},"children":[{"name":"rect","attribs":{"x":"96","y":"247","class":"st0","width":"60","height":"18"},"children":[]}]},{"name":"rect","attribs":{"x":"339","y":"317.4","transform":"matrix(-0.7071 0.7071 -0.7071 -0.7071 834.4009 337.0126)","class":"st0","width":"16.8","height":"47.8"},"children":[{"name":"rect","attribs":{"x":"339","y":"317.4","transform":"matrix(-0.7071 0.7071 -0.7071 -0.7071 834.4009 337.0126)","class":"st0","width":"16.8","height":"47.8"},"children":[]}]},{"name":"rect","attribs":{"x":"162.2","y":"140.7","transform":"matrix(-0.7071 0.7071 -0.7071 -0.7071 407.7248 160.277)","class":"st0","width":"16.8","height":"47.9"},"children":[{"name":"rect","attribs":{"x":"162.2","y":"140.7","transform":"matrix(-0.7071 0.7071 -0.7071 -0.7071 407.7248 160.277)","class":"st0","width":"16.8","height":"47.9"},"children":[]}]},{"name":"rect","attribs":{"x":"339","y":"140.7","transform":"matrix(0.7071 0.7071 -0.7071 0.7071 218.1171 -197.4504)","class":"st0","width":"16.8","height":"47.8"},"children":[{"name":"rect","attribs":{"x":"339","y":"140.7","transform":"matrix(0.7071 0.7071 -0.7071 0.7071 218.1171 -197.4504)","class":"st0","width":"16.8","height":"47.8"},"children":[]}]},{"name":"rect","attribs":{"x":"162.2","y":"317.4","transform":"matrix(0.707 0.7072 -0.7072 0.707 291.3531 -20.7056)","class":"st0","width":"16.8","height":"47.9"},"children":[{"name":"rect","attribs":{"x":"162.2","y":"317.4","transform":"matrix(0.707 0.7072 -0.7072 0.707 291.3531 -20.7056)","class":"st0","width":"16.8","height":"47.9"},"children":[]}]},{"name":"path","attribs":{"class":"st0","d":"M256,331.8c-41.8,0-75.8-34-75.8-75.8s34-75.8,75.8-75.8c41.8,0,75.8,34,75.8,75.8S297.8,331.8,256,331.8z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M256,331.8c-41.8,0-75.8-34-75.8-75.8s34-75.8,75.8-75.8c41.8,0,75.8,34,75.8,75.8S297.8,331.8,256,331.8z"},"children":[]}]}]}]};exports.iosSunny=iosSunny;var iosTelephoneOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M415.9,335.5c-14.6-15-56.1-43.1-83.3-43.1c-6.3,0-11.8,1.4-16.3,4.3c-13.3,8.5-23.9,15.1-29,15.1c-2.8,0-5.8-2.5-12.4-8.2\r\n\tl-1.1-1c-18.3-15.9-22.2-20-29.3-27.4l-1.8-1.9c-1.3-1.3-2.4-2.5-3.5-3.6c-6.2-6.4-10.7-11-26.6-29l-0.7-0.8\r\n\tc-7.6-8.6-12.6-14.2-12.9-18.3c-0.3-4,3.2-10.5,12.1-22.6c10.8-14.6,11.2-32.6,1.3-53.5c-7.9-16.5-20.8-32.3-32.2-46.2l-1-1.2\r\n\tc-9.8-12-21.2-18-33.9-18c-14.1,0-25.8,7.6-32,11.6c-0.5,0.3-1,0.7-1.5,1c-13.9,8.8-24,20.9-27.8,33.2c-5.7,18.5-9.5,42.5,17.8,92.4\r\n\tc23.6,43.2,45,72.2,79,107.1c32,32.8,46.2,43.4,78,66.4c35.4,25.6,69.4,40.3,93.2,40.3c22.1,0,39.5,0,64.3-29.9\r\n\tC442.3,370.8,431.5,351.6,415.9,335.5z M404.4,391.4c-20,24.2-31.5,24.2-52.3,24.2c-20.3,0-51.8-14-84.2-37.3\r\n\tc-31-22.4-44.8-32.7-75.9-64.6c-32.9-33.7-53.6-61.8-76.4-103.5c-24.1-44.1-21.4-63.4-16.5-79.3c2.6-8.5,10.4-17.6,21-24.2\r\n\tc0.5-0.3,1-0.7,1.6-1c5.3-3.4,14.1-9.1,23.7-9.1c8,0,15.1,4,21.9,12.3l1,1.2c25.5,31.2,45.4,58.8,30.4,79.2\r\n\tc-10.6,14.3-16.2,24-15.3,34c0.8,9.7,7.3,17,17.1,28l0.7,0.8c16.1,18.2,20.7,23,27.1,29.5c1.1,1.1,2.2,2.3,3.5,3.6l1.8,1.9\r\n\tc7.4,7.7,11.5,11.9,30.3,28.4l1.1,1c8,7,13.9,12.1,22.5,12.1c8.9,0,18.7-5.6,37.3-17.5c1.9-1.2,4.6-1.9,8-1.9\r\n\tc21.7,0,59.1,24.8,72.2,38.3C417,359.7,423,368.9,404.4,391.4z"},"children":[]}]};exports.iosTelephoneOutline=iosTelephoneOutline;var iosTelephone={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M415.9,335.5c-14.6-15-56.1-43.1-83.3-43.1c-6.3,0-11.8,1.4-16.3,4.3c-13.3,8.5-23.9,15.1-29,15.1c-2.8,0-5.8-2.5-12.4-8.2\r\n\tl-1.1-1c-18.3-15.9-22.2-20-29.3-27.4l-1.8-1.9c-1.3-1.3-2.4-2.5-3.5-3.6c-6.2-6.4-10.7-11-26.6-29l-0.7-0.8\r\n\tc-7.6-8.6-12.6-14.2-12.9-18.3c-0.3-4,3.2-10.5,12.1-22.6c10.8-14.6,11.2-32.6,1.3-53.5c-7.9-16.5-20.8-32.3-32.2-46.2l-1-1.2\r\n\tc-9.8-12-21.2-18-33.9-18c-14.1,0-25.8,7.6-32,11.6c-0.5,0.3-1,0.7-1.5,1c-13.9,8.8-24,20.9-27.8,33.2c-5.7,18.5-9.5,42.5,17.8,92.4\r\n\tc23.6,43.2,45,72.2,79,107.1c32,32.8,46.2,43.4,78,66.4c35.4,25.6,69.4,40.3,93.2,40.3c22.1,0,39.5,0,64.3-29.9\r\n\tC442.3,370.8,431.5,351.6,415.9,335.5z"},"children":[]}]};exports.iosTelephone=iosTelephone;var iosTennisballOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M464,256c0-114.863-93.13-208-208-208C141.137,48,48,141.136,48,256c0,114.863,93.137,208,208,208\r\n\tc2.541,0,5.068-0.062,7.587-0.152c0.479-0.017,0.957-0.034,1.435-0.055c0.942-0.04,1.884-0.083,2.823-0.136\r\n\tc0.85-0.047,1.698-0.104,2.547-0.161c0.639-0.044,1.279-0.08,1.917-0.13c1.354-0.104,2.705-0.221,4.055-0.352\r\n\tc0-0.003,0-0.006,0-0.009c97.47-9.474,175.229-86.229,186.274-183.223c0.02-0.001,0.038,0,0.057-0.001\r\n\tc0.604-5.315,1.002-10.667,1.196-16.05c-0.016,0.001-0.032,0.001-0.049,0.001C463.937,261.166,464,258.591,464,256z M446.665,256\r\n\tc0,2.568-0.066,5.121-0.167,7.664c-23.639-1.076-46.677-6.106-68.616-15.005c-25.791-10.458-48.938-25.831-68.797-45.691\r\n\tc-19.86-19.86-35.233-43.007-45.692-68.797c-8.903-21.956-13.935-45.014-15.006-68.67c2.527-0.1,5.063-0.165,7.614-0.165\r\n\tC361.13,65.335,446.665,150.869,446.665,256z M65.337,256c0-1.318,0.023-2.631,0.05-3.942c22.476,1.379,44.388,6.337,65.3,14.817\r\n\tc25.791,10.458,48.938,25.831,68.798,45.691c19.86,19.859,35.232,43.007,45.691,68.798c8.474,20.896,13.43,42.792,14.814,65.249\r\n\tc-1.328,0.027-2.656,0.051-3.99,0.051C150.87,446.664,65.336,361.13,65.337,256z M275.943,445.623\r\n\tc-3.273-52.566-24.974-104.198-65.145-144.369c-40.186-40.186-91.84-61.889-144.427-65.15\r\n\tc9.172-88.053,78.52-158.478,166.074-169.313c2.595,53.64,24.36,106.525,65.326,147.49c40.949,40.952,93.811,62.713,147.433,65.322\r\n\tC434.351,367.118,363.957,436.432,275.943,445.623z"},"children":[]}]};exports.iosTennisballOutline=iosTennisballOutline;var iosTennisball={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M48.05,251.556c-0.001,0.039-0.003,0.077-0.004,0.116c0,0,0.002,0,0.003,0C48.049,251.634,48.049,251.595,48.05,251.556z"},"children":[{"name":"path","attribs":{"d":"M48.05,251.556c-0.001,0.039-0.003,0.077-0.004,0.116c0,0,0.002,0,0.003,0C48.049,251.634,48.049,251.595,48.05,251.556z"},"children":[]}]},{"name":"path","attribs":{"d":"M260.311,463.915c0.066-0.002,0.133-0.006,0.199-0.007c-0.066,0.001-0.133,0.001-0.199,0.004\r\n\t\tC260.311,463.912,260.311,463.913,260.311,463.915z"},"children":[{"name":"path","attribs":{"d":"M260.311,463.915c0.066-0.002,0.133-0.006,0.199-0.007c-0.066,0.001-0.133,0.001-0.199,0.004\r\n\t\tC260.311,463.912,260.311,463.913,260.311,463.915z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,48.001c-2.586,0-5.29,0.064-7.852,0.158L248,48.153c0,0.003,0,0.004,0,0.006c-5,0.199-10,0.602-16,1.205\r\n\t\tc0-0.002,0-0.004,0-0.008c0,0.005,0.083,0.008,0.072,0.012c-96.974,11.061-173.654,88.975-183.13,186.41\r\n\t\tc-0.004,0.018,0.045,0.222,0.042,0.222c0.003,0,0.004,0,0.007,0c-0.513,5-0.826,10-0.936,16c-0.001,0-0.003,0-0.004,0l0.003-0.152\r\n\t\tc-0.028,1.43-0.054,2.777-0.054,4.215c0,114.852,92.977,207.938,207.841,207.938c6.856,0,14.159-0.383,20.159-1.031\r\n\t\tc0,0.002,0,0.006,0,0.006c0-0.004,0.213-0.008,0.24-0.014c97.436-9.486,175.247-86.086,186.312-183.036\r\n\t\tc0.004-0.014,0.088,0.074,0.092,0.074c-0.002,0-0.006,0-0.008,0c0.889-8,1.363-15.859,1.363-23.904\r\n\t\tC464,141.245,370.87,48.001,256,48.001z M130.63,266.853c-20.895-8.474-42.788-13.43-65.244-14.816\r\n\t\tc0.11-5.374,0.438-10.695,0.986-15.952c52.568,3.275,104.203,24.977,144.375,65.146c40.172,40.169,61.876,91.797,65.152,144.359\r\n\t\tc-5.257,0.548-10.579,0.876-15.954,0.985c-1.385-22.453-6.342-44.344-14.816-65.236c-10.459-25.79-25.834-48.937-45.696-68.795\r\n\t\tC179.572,292.684,156.423,277.311,130.63,266.853z M297.722,214.265c-40.964-40.959-62.731-93.835-65.332-147.467\r\n\t\tc5.25-0.652,10.568-1.08,15.941-1.293c1.073,23.65,6.105,46.702,15.007,68.654c10.461,25.79,25.835,48.936,45.696,68.795\r\n\t\tc19.862,19.859,43.01,35.232,68.803,45.691c21.954,8.901,45.008,13.933,68.66,15.007c-0.213,5.37-0.643,10.689-1.293,15.939\r\n\t\tC391.564,276.989,338.686,255.225,297.722,214.265z"},"children":[{"name":"path","attribs":{"d":"M256,48.001c-2.586,0-5.29,0.064-7.852,0.158L248,48.153c0,0.003,0,0.004,0,0.006c-5,0.199-10,0.602-16,1.205\r\n\t\tc0-0.002,0-0.004,0-0.008c0,0.005,0.083,0.008,0.072,0.012c-96.974,11.061-173.654,88.975-183.13,186.41\r\n\t\tc-0.004,0.018,0.045,0.222,0.042,0.222c0.003,0,0.004,0,0.007,0c-0.513,5-0.826,10-0.936,16c-0.001,0-0.003,0-0.004,0l0.003-0.152\r\n\t\tc-0.028,1.43-0.054,2.777-0.054,4.215c0,114.852,92.977,207.938,207.841,207.938c6.856,0,14.159-0.383,20.159-1.031\r\n\t\tc0,0.002,0,0.006,0,0.006c0-0.004,0.213-0.008,0.24-0.014c97.436-9.486,175.247-86.086,186.312-183.036\r\n\t\tc0.004-0.014,0.088,0.074,0.092,0.074c-0.002,0-0.006,0-0.008,0c0.889-8,1.363-15.859,1.363-23.904\r\n\t\tC464,141.245,370.87,48.001,256,48.001z M130.63,266.853c-20.895-8.474-42.788-13.43-65.244-14.816\r\n\t\tc0.11-5.374,0.438-10.695,0.986-15.952c52.568,3.275,104.203,24.977,144.375,65.146c40.172,40.169,61.876,91.797,65.152,144.359\r\n\t\tc-5.257,0.548-10.579,0.876-15.954,0.985c-1.385-22.453-6.342-44.344-14.816-65.236c-10.459-25.79-25.834-48.937-45.696-68.795\r\n\t\tC179.572,292.684,156.423,277.311,130.63,266.853z M297.722,214.265c-40.964-40.959-62.731-93.835-65.332-147.467\r\n\t\tc5.25-0.652,10.568-1.08,15.941-1.293c1.073,23.65,6.105,46.702,15.007,68.654c10.461,25.79,25.835,48.936,45.696,68.795\r\n\t\tc19.862,19.859,43.01,35.232,68.803,45.691c21.954,8.901,45.008,13.933,68.66,15.007c-0.213,5.37-0.643,10.689-1.293,15.939\r\n\t\tC391.564,276.989,338.686,255.225,297.722,214.265z"},"children":[]}]}]}]};exports.iosTennisball=iosTennisball;var iosThunderstormOutline={"viewBox":"0 0 512 512","children":[{"name":"style","attribs":{"type":"text/css"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"class":"st0","points":"312,272 272,272 288,224 216,224 201,304 253.3,304 224,400 \t"},"children":[{"name":"polygon","attribs":{"class":"st0","points":"312,272 272,272 288,224 216,224 201,304 253.3,304 224,400 \t"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"class":"st0","d":"M328.4,172.7c-2.7,0-5.4,0-8,0.3c-7.9-35-39.1-61.4-76.4-61.4c-43.3,0-78.3,35.2-78.3,78.5\r\n\t\t\tc0,2.6,0.1,5.2,0.4,7.8c-26.4,2.3-47.1,25.7-47.1,52.8c0,28.6,23.2,53.3,51.7,53.3H182v-17h-11.3c-9.5,0-18.5-4.1-25.4-11\r\n\t\t\tc-6.8-7-10.6-16.3-10.6-26c0-18.6,14.5-33.8,33.2-36.9c1.6-0.3,8.8-1.3,14.2-1.8c0,0-0.5-5.3-0.6-9.6c-0.1-4.3-0.1-9.4-0.1-11.5\r\n\t\t\tc0-34.6,28.1-62.7,62.6-62.7c14.5,0,28.1,4.8,39.3,13.9c10.9,8.9,18.6,21.3,21.7,34.9l3.1,14l14.2-1.8c2.1-0.3,4.1-0.4,6.1-0.4\r\n\t\t\tc26.9,0,48.8,22.3,48.8,49.4c0,27.1-21.9,49.4-48.8,49.4H320v17h8.4c35.7,0,64.6-30.1,64.6-65.9\r\n\t\t\tC393,202.4,364.1,172.7,328.4,172.7z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M328.4,172.7c-2.7,0-5.4,0-8,0.3c-7.9-35-39.1-61.4-76.4-61.4c-43.3,0-78.3,35.2-78.3,78.5\r\n\t\t\tc0,2.6,0.1,5.2,0.4,7.8c-26.4,2.3-47.1,25.7-47.1,52.8c0,28.6,23.2,53.3,51.7,53.3H182v-17h-11.3c-9.5,0-18.5-4.1-25.4-11\r\n\t\t\tc-6.8-7-10.6-16.3-10.6-26c0-18.6,14.5-33.8,33.2-36.9c1.6-0.3,8.8-1.3,14.2-1.8c0,0-0.5-5.3-0.6-9.6c-0.1-4.3-0.1-9.4-0.1-11.5\r\n\t\t\tc0-34.6,28.1-62.7,62.6-62.7c14.5,0,28.1,4.8,39.3,13.9c10.9,8.9,18.6,21.3,21.7,34.9l3.1,14l14.2-1.8c2.1-0.3,4.1-0.4,6.1-0.4\r\n\t\t\tc26.9,0,48.8,22.3,48.8,49.4c0,27.1-21.9,49.4-48.8,49.4H320v17h8.4c35.7,0,64.6-30.1,64.6-65.9\r\n\t\t\tC393,202.4,364.1,172.7,328.4,172.7z"},"children":[]}]}]}]}]}]};exports.iosThunderstormOutline=iosThunderstormOutline;var iosThunderstorm={"viewBox":"0 0 512 512","children":[{"name":"style","attribs":{"type":"text/css"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"class":"st0","points":"272,272 288,224 216,224 201,304 253.3,304 224,400 290,304 312,272 \t"},"children":[{"name":"polygon","attribs":{"class":"st0","points":"272,272 288,224 216,224 201,304 253.3,304 224,400 290,304 312,272 \t"},"children":[]}]},{"name":"path","attribs":{"class":"st0","d":"M202.7,208l107.5,0l-16,48H312h30.4l-33,48h19c35.7,0,64.6-30.1,64.6-65.9c0-35.8-28.9-65.5-64.6-65.5\r\n\t\tc-2.7,0-5.4,0-8,0.3c-7.9-35-39.1-61.4-76.4-61.4c-43.3,0-78.3,35.2-78.3,78.5c0,2.6,0.1,5.2,0.4,7.8\r\n\t\tc-26.4,2.3-47.1,25.7-47.1,52.8c0,28.6,23.2,53.3,51.7,53.3h14"},"children":[{"name":"path","attribs":{"class":"st0","d":"M202.7,208l107.5,0l-16,48H312h30.4l-33,48h19c35.7,0,64.6-30.1,64.6-65.9c0-35.8-28.9-65.5-64.6-65.5\r\n\t\tc-2.7,0-5.4,0-8,0.3c-7.9-35-39.1-61.4-76.4-61.4c-43.3,0-78.3,35.2-78.3,78.5c0,2.6,0.1,5.2,0.4,7.8\r\n\t\tc-26.4,2.3-47.1,25.7-47.1,52.8c0,28.6,23.2,53.3,51.7,53.3h14"},"children":[]}]}]}]};exports.iosThunderstorm=iosThunderstorm;var iosTimeOutline={"viewBox":"0 0 512 512","children":[{"name":"style","attribs":{"type":"text/css"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"class":"st0","d":"M256,32C132.3,32,32,132.3,32,256c0,123.7,100.3,224,224,224c123.7,0,224-100.3,224-224\r\n\t\t\tC480,132.3,379.7,32,256,32z M403.1,403.1c-19.1,19.1-41.4,34.1-66.1,44.6c-25.6,10.8-52.9,16.3-81,16.3c-28.1,0-55.3-5.5-81-16.3\r\n\t\t\tc-24.8-10.5-47-25.5-66.1-44.6C89.8,384,74.8,361.7,64.3,337C53.5,311.3,48,284.1,48,256c0-28.1,5.5-55.3,16.3-81\r\n\t\t\tc10.5-24.8,25.5-47,44.6-66.1C128,89.8,150.3,74.8,175,64.3C200.7,53.5,227.9,48,256,48c28.1,0,55.3,5.5,81,16.3\r\n\t\t\tc24.8,10.5,47,25.5,66.1,44.6c19.1,19.1,34.1,41.4,44.6,66.1c10.8,25.6,16.3,52.9,16.3,81c0,28.1-5.5,55.3-16.3,81\r\n\t\t\tC437.2,361.7,422.2,384,403.1,403.1z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M256,32C132.3,32,32,132.3,32,256c0,123.7,100.3,224,224,224c123.7,0,224-100.3,224-224\r\n\t\t\tC480,132.3,379.7,32,256,32z M403.1,403.1c-19.1,19.1-41.4,34.1-66.1,44.6c-25.6,10.8-52.9,16.3-81,16.3c-28.1,0-55.3-5.5-81-16.3\r\n\t\t\tc-24.8-10.5-47-25.5-66.1-44.6C89.8,384,74.8,361.7,64.3,337C53.5,311.3,48,284.1,48,256c0-28.1,5.5-55.3,16.3-81\r\n\t\t\tc10.5-24.8,25.5-47,44.6-66.1C128,89.8,150.3,74.8,175,64.3C200.7,53.5,227.9,48,256,48c28.1,0,55.3,5.5,81,16.3\r\n\t\t\tc24.8,10.5,47,25.5,66.1,44.6c19.1,19.1,34.1,41.4,44.6,66.1c10.8,25.6,16.3,52.9,16.3,81c0,28.1-5.5,55.3-16.3,81\r\n\t\t\tC437.2,361.7,422.2,384,403.1,403.1z"},"children":[]}]},{"name":"circle","attribs":{"class":"st0","cx":"256","cy":"80","r":"8"},"children":[{"name":"circle","attribs":{"class":"st0","cx":"256","cy":"80","r":"8"},"children":[]}]},{"name":"circle","attribs":{"class":"st0","cx":"256","cy":"432","r":"8"},"children":[{"name":"circle","attribs":{"class":"st0","cx":"256","cy":"432","r":"8"},"children":[]}]},{"name":"circle","attribs":{"class":"st0","cx":"432","cy":"256","r":"8"},"children":[{"name":"circle","attribs":{"class":"st0","cx":"432","cy":"256","r":"8"},"children":[]}]},{"name":"circle","attribs":{"class":"st0","cx":"80","cy":"256","r":"8"},"children":[{"name":"circle","attribs":{"class":"st0","cx":"80","cy":"256","r":"8"},"children":[]}]},{"name":"circle","attribs":{"class":"st0","cx":"168","cy":"103.6","r":"8"},"children":[{"name":"circle","attribs":{"class":"st0","cx":"168","cy":"103.6","r":"8"},"children":[]}]},{"name":"circle","attribs":{"class":"st0","cx":"344","cy":"408.4","r":"8"},"children":[{"name":"circle","attribs":{"class":"st0","cx":"344","cy":"408.4","r":"8"},"children":[]}]},{"name":"circle","attribs":{"class":"st0","cx":"408.4","cy":"168","r":"8"},"children":[{"name":"circle","attribs":{"class":"st0","cx":"408.4","cy":"168","r":"8"},"children":[]}]},{"name":"circle","attribs":{"class":"st0","cx":"103.6","cy":"344","r":"8"},"children":[{"name":"circle","attribs":{"class":"st0","cx":"103.6","cy":"344","r":"8"},"children":[]}]},{"name":"circle","attribs":{"class":"st0","cx":"103.6","cy":"168","r":"8"},"children":[{"name":"circle","attribs":{"class":"st0","cx":"103.6","cy":"168","r":"8"},"children":[]}]},{"name":"circle","attribs":{"class":"st0","cx":"408.4","cy":"344","r":"8"},"children":[{"name":"circle","attribs":{"class":"st0","cx":"408.4","cy":"344","r":"8"},"children":[]}]},{"name":"circle","attribs":{"class":"st0","cx":"344","cy":"103.6","r":"8"},"children":[{"name":"circle","attribs":{"class":"st0","cx":"344","cy":"103.6","r":"8"},"children":[]}]},{"name":"circle","attribs":{"class":"st0","cx":"168","cy":"408.4","r":"8"},"children":[{"name":"circle","attribs":{"class":"st0","cx":"168","cy":"408.4","r":"8"},"children":[]}]}]}]},{"name":"path","attribs":{"class":"st0","d":"M269.9,248c-2.9-5-8.1-7.8-13.4-8l-38-63.4c-2.3-3.8-7.2-5-11-2.7c-3.8,2.3-5,7.2-2.7,11l37.6,62.9\r\n\t\tc-2.9,4.8-3.2,11.1-0.2,16.3c1.5,2.5,3.5,4.5,5.9,5.8V392c0,4.4,3.6,8,8,8c4.4,0,8-3.6,8-8V269.9\r\n\t\tC271.7,265.4,274.3,255.7,269.9,248z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M269.9,248c-2.9-5-8.1-7.8-13.4-8l-38-63.4c-2.3-3.8-7.2-5-11-2.7c-3.8,2.3-5,7.2-2.7,11l37.6,62.9\r\n\t\tc-2.9,4.8-3.2,11.1-0.2,16.3c1.5,2.5,3.5,4.5,5.9,5.8V392c0,4.4,3.6,8,8,8c4.4,0,8-3.6,8-8V269.9\r\n\t\tC271.7,265.4,274.3,255.7,269.9,248z"},"children":[]}]}]}]};exports.iosTimeOutline=iosTimeOutline;var iosTime={"viewBox":"0 0 512 512","children":[{"name":"style","attribs":{"type":"text/css"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"class":"st0","d":"M256,32C132.3,32,32,132.3,32,256c0,123.7,100.3,224,224,224c123.7,0,224-100.3,224-224\r\n\t\tC480,132.3,379.7,32,256,32z M256,72c4.4,0,8,3.6,8,8s-3.6,8-8,8s-8-3.6-8-8S251.6,72,256,72z M80,264c-4.4,0-8-3.6-8-8\r\n\t\tc0-4.4,3.6-8,8-8s8,3.6,8,8C88,260.4,84.4,264,80,264z M107.6,350.9c-3.8,2.2-8.7,0.9-10.9-2.9c-2.2-3.8-0.9-8.7,2.9-10.9\r\n\t\tc3.8-2.2,8.7-0.9,10.9,2.9C112.7,343.8,111.4,348.7,107.6,350.9z M110.5,172c-2.2,3.8-7.1,5.1-10.9,2.9c-3.8-2.2-5.1-7.1-2.9-10.9\r\n\t\ts7.1-5.1,10.9-2.9C111.4,163.3,112.7,168.2,110.5,172z M164,96.7c3.8-2.2,8.7-0.9,10.9,2.9c2.2,3.8,0.9,8.7-2.9,10.9\r\n\t\tc-3.8,2.2-8.7,0.9-10.9-2.9C158.9,103.8,160.2,98.9,164,96.7z M174.9,412.4c-2.2,3.8-7.1,5.1-10.9,2.9c-3.8-2.2-5.1-7.1-2.9-10.9\r\n\t\tc2.2-3.8,7.1-5.1,10.9-2.9S177.1,408.6,174.9,412.4z M256,440c-4.4,0-8-3.6-8-8s3.6-8,8-8s8,3.6,8,8S260.4,440,256,440z M264,269.9\r\n\t\tV392c0,4.4-3.6,8-8,8c-4.4,0-8-3.6-8-8V269.8c-2.4-1.4-4.4-3.3-5.9-5.8c-3-5.2-2.7-11.5,0.2-16.3l-37.6-62.9c-2.3-3.8-1-8.7,2.7-11\r\n\t\tc3.8-2.3,8.7-1,11,2.7l38,63.4c5.4,0.1,10.6,3,13.4,8C274.3,255.7,271.7,265.4,264,269.9z M348,415.3c-3.8,2.2-8.7,0.9-10.9-2.9\r\n\t\tc-2.2-3.8-0.9-8.7,2.9-10.9c3.8-2.2,8.7-0.9,10.9,2.9C353.1,408.2,351.8,413.1,348,415.3z M350.9,107.6c-2.2,3.8-7.1,5.1-10.9,2.9\r\n\t\tc-3.8-2.2-5.1-7.1-2.9-10.9c2.2-3.8,7.1-5.1,10.9-2.9C351.8,98.9,353.1,103.8,350.9,107.6z M415.3,348c-2.2,3.8-7.1,5.1-10.9,2.9\r\n\t\tc-3.8-2.2-5.1-7.1-2.9-10.9c2.2-3.8,7.1-5.1,10.9-2.9C416.2,339.3,417.6,344.2,415.3,348z M412.4,174.9c-3.8,2.2-8.7,0.9-10.9-2.9\r\n\t\tc-2.2-3.8-0.9-8.7,2.9-10.9c3.8-2.2,8.7-0.9,10.9,2.9C417.6,167.8,416.2,172.7,412.4,174.9z M432,264c-4.4,0-8-3.6-8-8\r\n\t\tc0-4.4,3.6-8,8-8s8,3.6,8,8C440,260.4,436.4,264,432,264z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M256,32C132.3,32,32,132.3,32,256c0,123.7,100.3,224,224,224c123.7,0,224-100.3,224-224\r\n\t\tC480,132.3,379.7,32,256,32z M256,72c4.4,0,8,3.6,8,8s-3.6,8-8,8s-8-3.6-8-8S251.6,72,256,72z M80,264c-4.4,0-8-3.6-8-8\r\n\t\tc0-4.4,3.6-8,8-8s8,3.6,8,8C88,260.4,84.4,264,80,264z M107.6,350.9c-3.8,2.2-8.7,0.9-10.9-2.9c-2.2-3.8-0.9-8.7,2.9-10.9\r\n\t\tc3.8-2.2,8.7-0.9,10.9,2.9C112.7,343.8,111.4,348.7,107.6,350.9z M110.5,172c-2.2,3.8-7.1,5.1-10.9,2.9c-3.8-2.2-5.1-7.1-2.9-10.9\r\n\t\ts7.1-5.1,10.9-2.9C111.4,163.3,112.7,168.2,110.5,172z M164,96.7c3.8-2.2,8.7-0.9,10.9,2.9c2.2,3.8,0.9,8.7-2.9,10.9\r\n\t\tc-3.8,2.2-8.7,0.9-10.9-2.9C158.9,103.8,160.2,98.9,164,96.7z M174.9,412.4c-2.2,3.8-7.1,5.1-10.9,2.9c-3.8-2.2-5.1-7.1-2.9-10.9\r\n\t\tc2.2-3.8,7.1-5.1,10.9-2.9S177.1,408.6,174.9,412.4z M256,440c-4.4,0-8-3.6-8-8s3.6-8,8-8s8,3.6,8,8S260.4,440,256,440z M264,269.9\r\n\t\tV392c0,4.4-3.6,8-8,8c-4.4,0-8-3.6-8-8V269.8c-2.4-1.4-4.4-3.3-5.9-5.8c-3-5.2-2.7-11.5,0.2-16.3l-37.6-62.9c-2.3-3.8-1-8.7,2.7-11\r\n\t\tc3.8-2.3,8.7-1,11,2.7l38,63.4c5.4,0.1,10.6,3,13.4,8C274.3,255.7,271.7,265.4,264,269.9z M348,415.3c-3.8,2.2-8.7,0.9-10.9-2.9\r\n\t\tc-2.2-3.8-0.9-8.7,2.9-10.9c3.8-2.2,8.7-0.9,10.9,2.9C353.1,408.2,351.8,413.1,348,415.3z M350.9,107.6c-2.2,3.8-7.1,5.1-10.9,2.9\r\n\t\tc-3.8-2.2-5.1-7.1-2.9-10.9c2.2-3.8,7.1-5.1,10.9-2.9C351.8,98.9,353.1,103.8,350.9,107.6z M415.3,348c-2.2,3.8-7.1,5.1-10.9,2.9\r\n\t\tc-3.8-2.2-5.1-7.1-2.9-10.9c2.2-3.8,7.1-5.1,10.9-2.9C416.2,339.3,417.6,344.2,415.3,348z M412.4,174.9c-3.8,2.2-8.7,0.9-10.9-2.9\r\n\t\tc-2.2-3.8-0.9-8.7,2.9-10.9c3.8-2.2,8.7-0.9,10.9,2.9C417.6,167.8,416.2,172.7,412.4,174.9z M432,264c-4.4,0-8-3.6-8-8\r\n\t\tc0-4.4,3.6-8,8-8s8,3.6,8,8C440,260.4,436.4,264,432,264z"},"children":[]}]}]}]};exports.iosTime=iosTime;var iosTimerOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M236.6,271.6c4.6,5.7,11.5,9.4,19.4,9.4c13.8,0,25-11.2,25-25c0-7.3-3.2-13.8-8.2-18.4c-0.6-0.7-1.3-1.5-2.2-2.2\r\n\tc0,0-117.7-87.5-120.3-85.2c-2.6,2.3,85.3,120.2,85.3,120.2C235.8,270.8,236.3,271.2,236.6,271.6z"},"children":[]},{"name":"path","attribs":{"d":"M256.2,48L256.2,48H256v112h16V65.3c97.8,8.3,175.3,90.5,175.3,190.5c0,105.5-85.7,191.4-191.2,191.4\r\n\tc-105.5,0-191.3-85.8-191.3-191.3c0-52.8,21.5-100.6,56.1-135.2L109,108.9C71.3,146.6,48,198.6,48,256c0,114.9,93.1,208,208,208\r\n\tc114.9,0,208-93.1,208-208C464,141.1,371,48,256.2,48z"},"children":[]}]};exports.iosTimerOutline=iosTimerOutline;var iosTimer={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256c0,114.9,93.1,208,208,208c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48z\r\n\t M150.5,150.5c2.6-2.3,119.9,84.9,119.9,84.9c1,0.7,1.6,1.5,2.2,2.2c5,4.6,8.2,11,8.2,18.3c0,13.7-11.1,24.9-24.9,24.9\r\n\tc-7.8,0-14.7-3.7-19.3-9.4c-0.4-0.4-0.8-0.7-1.1-1.1C235.6,270.4,148,152.9,150.5,150.5z M256.1,447.2\r\n\tc-105.7,0-191.4-85.7-191.4-191.4c0-52.8,21.4-100.7,56-135.3l11.8,11.8c-31.6,31.6-51.2,75.3-51.2,123.5\r\n\tc0,96.3,78.4,174.7,174.7,174.7s174.5-78.4,174.5-174.7c0-90.3-70.5-165.1-158.5-174V160h-16V64.4c105.7,0,191.5,85.7,191.5,191.4\r\n\tC447.5,361.5,361.7,447.2,256.1,447.2z"},"children":[]}]};exports.iosTimer=iosTimer;var iosToggleOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M128,320c26.467,0,48,21.533,48,48s-21.533,48-48,48s-48-21.533-48-48S101.533,320,128,320 M128,304\r\n\t\t\tc-35.346,0-64,28.654-64,64c0,35.347,28.654,64,64,64s64-28.653,64-64C192,332.654,163.346,304,128,304L128,304z"},"children":[{"name":"path","attribs":{"d":"M128,320c26.467,0,48,21.533,48,48s-21.533,48-48,48s-48-21.533-48-48S101.533,320,128,320 M128,304\r\n\t\t\tc-35.346,0-64,28.654-64,64c0,35.347,28.654,64,64,64s64-28.653,64-64C192,332.654,163.346,304,128,304L128,304z"},"children":[]}]},{"name":"path","attribs":{"d":"M383.25,288c44.388,0,80.625,36.112,80.625,80.5S427.888,448,383.5,448h-255C84.112,448,48,412.888,48,368.5\r\n\t\t\tS84.112,288,128.5,288H383 M383.5,272h-255C75.205,272,32,315.205,32,368.5S75.205,464,128.5,464h255\r\n\t\t\tc53.295,0,96.5-42.205,96.5-95.5S436.795,272,383.5,272L383.5,272z"},"children":[{"name":"path","attribs":{"d":"M383.25,288c44.388,0,80.625,36.112,80.625,80.5S427.888,448,383.5,448h-255C84.112,448,48,412.888,48,368.5\r\n\t\t\tS84.112,288,128.5,288H383 M383.5,272h-255C75.205,272,32,315.205,32,368.5S75.205,464,128.5,464h255\r\n\t\t\tc53.295,0,96.5-42.205,96.5-95.5S436.795,272,383.5,272L383.5,272z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M384,96c26.467,0,48,21.533,48,48s-21.533,48-48,48s-48-21.533-48-48S357.533,96,384,96 M384,80\r\n\t\t\tc-35.346,0-64,28.654-64,64c0,35.347,28.654,64,64,64s64-28.653,64-64C448,108.654,419.346,80,384,80L384,80z"},"children":[{"name":"path","attribs":{"d":"M384,96c26.467,0,48,21.533,48,48s-21.533,48-48,48s-48-21.533-48-48S357.533,96,384,96 M384,80\r\n\t\t\tc-35.346,0-64,28.654-64,64c0,35.347,28.654,64,64,64s64-28.653,64-64C448,108.654,419.346,80,384,80L384,80z"},"children":[]}]},{"name":"path","attribs":{"d":"M129,64h254.5c44.388,0,80.5,36.112,80.5,80.5S427.888,224,383.5,224h-255c-44.388,0-80.375-35.112-80.375-79.5\r\n\t\t\tS84.362,64,128.75,64 M128.5,48C75.205,48,32,91.205,32,144.5S75.205,240,128.5,240h255c53.295,0,96.5-42.205,96.5-95.5\r\n\t\t\tS436.795,48,383.5,48H128.5L128.5,48z"},"children":[{"name":"path","attribs":{"d":"M129,64h254.5c44.388,0,80.5,36.112,80.5,80.5S427.888,224,383.5,224h-255c-44.388,0-80.375-35.112-80.375-79.5\r\n\t\t\tS84.362,64,128.75,64 M128.5,48C75.205,48,32,91.205,32,144.5S75.205,240,128.5,240h255c53.295,0,96.5-42.205,96.5-95.5\r\n\t\t\tS436.795,48,383.5,48H128.5L128.5,48z"},"children":[]}]}]}]}]}]};exports.iosToggleOutline=iosToggleOutline;var iosToggle={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M128,320c-26.467,0-48,21.533-48,48s21.533,48,48,48s48-21.533,48-48S154.467,320,128,320z"},"children":[{"name":"path","attribs":{"d":"M128,320c-26.467,0-48,21.533-48,48s21.533,48,48,48s48-21.533,48-48S154.467,320,128,320z"},"children":[]}]},{"name":"path","attribs":{"d":"M383.5,272h-255C75.205,272,32,315.205,32,368.5S75.205,464,128.5,464h255c53.295,0,96.5-42.205,96.5-95.5\r\n\t\tS436.795,272,383.5,272z M128,432c-35.346,0-64-28.653-64-64c0-35.346,28.654-64,64-64s64,28.654,64,64\r\n\t\tC192,403.347,163.346,432,128,432z"},"children":[{"name":"path","attribs":{"d":"M383.5,272h-255C75.205,272,32,315.205,32,368.5S75.205,464,128.5,464h255c53.295,0,96.5-42.205,96.5-95.5\r\n\t\tS436.795,272,383.5,272z M128,432c-35.346,0-64-28.653-64-64c0-35.346,28.654-64,64-64s64,28.654,64,64\r\n\t\tC192,403.347,163.346,432,128,432z"},"children":[]}]},{"name":"path","attribs":{"d":"M384,192c26.467,0,48-21.533,48-48s-21.533-48-48-48s-48,21.533-48,48S357.533,192,384,192z"},"children":[{"name":"path","attribs":{"d":"M384,192c26.467,0,48-21.533,48-48s-21.533-48-48-48s-48,21.533-48,48S357.533,192,384,192z"},"children":[]}]},{"name":"path","attribs":{"d":"M128.5,240h255c53.295,0,96.5-42.205,96.5-95.5S436.795,48,383.5,48h-255C75.205,48,32,91.205,32,144.5\r\n\t\tS75.205,240,128.5,240z M384,80c35.346,0,64,28.654,64,64c0,35.347-28.654,64-64,64s-64-28.653-64-64\r\n\t\tC320,108.654,348.654,80,384,80z"},"children":[{"name":"path","attribs":{"d":"M128.5,240h255c53.295,0,96.5-42.205,96.5-95.5S436.795,48,383.5,48h-255C75.205,48,32,91.205,32,144.5\r\n\t\tS75.205,240,128.5,240z M384,80c35.346,0,64,28.654,64,64c0,35.347-28.654,64-64,64s-64-28.653-64-64\r\n\t\tC320,108.654,348.654,80,384,80z"},"children":[]}]}]}]};exports.iosToggle=iosToggle;var iosTrashOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M400,113.3h-80v-20c0-16.2-13.1-29.3-29.3-29.3h-69.5C205.1,64,192,77.1,192,93.3v20h-80V128h21.1l23.6,290.7\r\n\t\tc0,16.2,13.1,29.3,29.3,29.3h141c16.2,0,29.3-13.1,29.3-29.3L379.6,128H400V113.3z M206.6,93.3c0-8.1,6.6-14.7,14.6-14.7h69.5\r\n\t\tc8.1,0,14.6,6.6,14.6,14.7v20h-98.7V93.3z M341.6,417.9l0,0.4v0.4c0,8.1-6.6,14.7-14.6,14.7H186c-8.1,0-14.6-6.6-14.6-14.7v-0.4\r\n\t\tl0-0.4L147.7,128h217.2L341.6,417.9z"},"children":[{"name":"path","attribs":{"d":"M400,113.3h-80v-20c0-16.2-13.1-29.3-29.3-29.3h-69.5C205.1,64,192,77.1,192,93.3v20h-80V128h21.1l23.6,290.7\r\n\t\tc0,16.2,13.1,29.3,29.3,29.3h141c16.2,0,29.3-13.1,29.3-29.3L379.6,128H400V113.3z M206.6,93.3c0-8.1,6.6-14.7,14.6-14.7h69.5\r\n\t\tc8.1,0,14.6,6.6,14.6,14.7v20h-98.7V93.3z M341.6,417.9l0,0.4v0.4c0,8.1-6.6,14.7-14.6,14.7H186c-8.1,0-14.6-6.6-14.6-14.7v-0.4\r\n\t\tl0-0.4L147.7,128h217.2L341.6,417.9z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"249","y":"160","width":"14","height":"241"},"children":[{"name":"rect","attribs":{"x":"249","y":"160","width":"14","height":"241"},"children":[]}]},{"name":"polygon","attribs":{"points":"320,160 305.4,160 294.7,401 309.3,401 \t\t"},"children":[{"name":"polygon","attribs":{"points":"320,160 305.4,160 294.7,401 309.3,401 \t\t"},"children":[]}]},{"name":"polygon","attribs":{"points":"206.5,160 192,160 202.7,401 217.3,401 \t\t"},"children":[{"name":"polygon","attribs":{"points":"206.5,160 192,160 202.7,401 217.3,401 \t\t"},"children":[]}]}]}]}]}]};exports.iosTrashOutline=iosTrashOutline;var iosTrash={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M320,113V93.3c0-16.2-13.1-29.3-29.3-29.3h-69.5C205.1,64,192,77.1,192,93.3V113h-80v15h21.1l23.6,290.7\r\n\t\tc0,16.2,13.1,29.3,29.3,29.3h141c16.2,0,29.3-13.1,29.3-29.3L379.6,128H400v-15H320z M207,93.3c0-8.1,6.2-14.3,14.3-14.3h69.5\r\n\t\tc8.1,0,14.3,6.2,14.3,14.3V113h-98V93.3H207z M202.7,401L192,160h14.5l10.9,241H202.7z M263,401h-14V160h14V401z M309.3,401h-14.6\r\n\t\tl10.8-241H320L309.3,401z"},"children":[{"name":"path","attribs":{"d":"M320,113V93.3c0-16.2-13.1-29.3-29.3-29.3h-69.5C205.1,64,192,77.1,192,93.3V113h-80v15h21.1l23.6,290.7\r\n\t\tc0,16.2,13.1,29.3,29.3,29.3h141c16.2,0,29.3-13.1,29.3-29.3L379.6,128H400v-15H320z M207,93.3c0-8.1,6.2-14.3,14.3-14.3h69.5\r\n\t\tc8.1,0,14.3,6.2,14.3,14.3V113h-98V93.3H207z M202.7,401L192,160h14.5l10.9,241H202.7z M263,401h-14V160h14V401z M309.3,401h-14.6\r\n\t\tl10.8-241H320L309.3,401z"},"children":[]}]}]}]};exports.iosTrash=iosTrash;var iosUndoOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M447.9,368.2c0-16.8,3.6-83.1-48.7-135.7c-35.2-35.4-80.3-53.4-143.3-56.2V96L64,224l192,128v-79.8\r\n\t\tc40,1.1,62.4,9.1,86.7,20c30.9,13.8,55.3,44,75.8,76.6l19.2,31.2H448C448,389.9,447.9,377.1,447.9,368.2z M432.2,361.4\r\n\t\tC384.6,280.6,331,256,240,256v64.8L91.9,224.1L240,127.3V192C441,192,432.2,361.4,432.2,361.4z"},"children":[{"name":"path","attribs":{"d":"M447.9,368.2c0-16.8,3.6-83.1-48.7-135.7c-35.2-35.4-80.3-53.4-143.3-56.2V96L64,224l192,128v-79.8\r\n\t\tc40,1.1,62.4,9.1,86.7,20c30.9,13.8,55.3,44,75.8,76.6l19.2,31.2H448C448,389.9,447.9,377.1,447.9,368.2z M432.2,361.4\r\n\t\tC384.6,280.6,331,256,240,256v64.8L91.9,224.1L240,127.3V192C441,192,432.2,361.4,432.2,361.4z"},"children":[]}]}]}]};exports.iosUndoOutline=iosUndoOutline;var iosUndo={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M447.9,368.2c0-16.8,3.6-83.1-48.7-135.7c-35.2-35.4-80.3-53.4-143.3-56.2V96L64,224l192,128v-79.8\r\n\t\tc40,1.1,62.4,9.1,86.7,20c30.9,13.8,55.3,44,75.8,76.6l19.2,31.2H448C448,389.9,447.9,377.1,447.9,368.2z"},"children":[{"name":"path","attribs":{"d":"M447.9,368.2c0-16.8,3.6-83.1-48.7-135.7c-35.2-35.4-80.3-53.4-143.3-56.2V96L64,224l192,128v-79.8\r\n\t\tc40,1.1,62.4,9.1,86.7,20c30.9,13.8,55.3,44,75.8,76.6l19.2,31.2H448C448,389.9,447.9,377.1,447.9,368.2z"},"children":[]}]}]}]};exports.iosUndo=iosUndo;var iosUnlockedOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,288c-17.673,0-32,14.327-32,32c0,14.91,10.198,27.439,24,30.992V384h16v-33.008c13.802-3.553,24-16.082,24-30.992\r\n\t\tC288,302.327,273.673,288,256,288z M256,336c-8.822,0-16-7.178-16-16s7.178-16,16-16s16,7.178,16,16S264.822,336,256,336z"},"children":[{"name":"path","attribs":{"d":"M256,288c-17.673,0-32,14.327-32,32c0,14.91,10.198,27.439,24,30.992V384h16v-33.008c13.802-3.553,24-16.082,24-30.992\r\n\t\tC288,302.327,273.673,288,256,288z M256,336c-8.822,0-16-7.178-16-16s7.178-16,16-16s16,7.178,16,16S264.822,336,256,336z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M168,224v-72c0-48.523,39.484-88,88.016-88C304.531,64,344,103.477,344,152v8h16v-8c0-57.43-46.562-104-103.984-104\r\n\t\t\tC198.562,48,152,94.57,152,152v72H96v240h320V224H168z M400,448H112V240h288V448z"},"children":[{"name":"path","attribs":{"d":"M168,224v-72c0-48.523,39.484-88,88.016-88C304.531,64,344,103.477,344,152v8h16v-8c0-57.43-46.562-104-103.984-104\r\n\t\t\tC198.562,48,152,94.57,152,152v72H96v240h320V224H168z M400,448H112V240h288V448z"},"children":[]}]}]}]}]}]};exports.iosUnlockedOutline=iosUnlockedOutline;var iosUnlocked={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,304c-8.822,0-16,7.178-16,16s7.178,16,16,16s16-7.178,16-16S264.822,304,256,304z"},"children":[{"name":"path","attribs":{"d":"M256,304c-8.822,0-16,7.178-16,16s7.178,16,16,16s16-7.178,16-16S264.822,304,256,304z"},"children":[]}]},{"name":"path","attribs":{"d":"M168,224v-72c0-48.523,39.484-88,88.016-88C304.531,64,344,103.477,344,152v8h16v-8c0-57.43-46.562-104-103.984-104\r\n\t\tC198.562,48,152,94.57,152,152v72H96v240h320V224H168z M264,350.992V384h-16v-33.008c-13.802-3.553-24-16.082-24-30.992\r\n\t\tc0-17.673,14.327-32,32-32s32,14.327,32,32C288,334.91,277.802,347.439,264,350.992z"},"children":[{"name":"path","attribs":{"d":"M168,224v-72c0-48.523,39.484-88,88.016-88C304.531,64,344,103.477,344,152v8h16v-8c0-57.43-46.562-104-103.984-104\r\n\t\tC198.562,48,152,94.57,152,152v72H96v240h320V224H168z M264,350.992V384h-16v-33.008c-13.802-3.553-24-16.082-24-30.992\r\n\t\tc0-17.673,14.327-32,32-32s32,14.327,32,32C288,334.91,277.802,347.439,264,350.992z"},"children":[]}]}]}]};exports.iosUnlocked=iosUnlocked;var iosUploadOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"288,144 288,160 400,160 400,432 112,432 112,160 224,160 224,144 96,144 96,448 416,448 416,144 \t\t"},"children":[{"name":"polygon","attribs":{"points":"288,144 288,160 400,160 400,432 112,432 112,160 224,160 224,144 96,144 96,448 416,448 416,144 \t\t"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"193.1,118.1 181.5,106.5 256,32 330.5,106.5 318.9,118.1 264.2,63.4 264.2,306.4 247.8,306.4 247.8,63.4 \t\t"},"children":[{"name":"polygon","attribs":{"points":"193.1,118.1 181.5,106.5 256,32 330.5,106.5 318.9,118.1 264.2,63.4 264.2,306.4 247.8,306.4 247.8,63.4 \t\t"},"children":[]}]}]}]}]}]};exports.iosUploadOutline=iosUploadOutline;var iosUpload={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"264,144 264,306 248,306 248,144 96,144 96,448 416,448 416,144 \t"},"children":[{"name":"polygon","attribs":{"points":"264,144 264,306 248,306 248,144 96,144 96,448 416,448 416,144 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"264,63.4 318.8,118.1 330.4,106.5 256,32 181.5,106.5 193.2,118.1 248,63.4 248,144 264,144 \t"},"children":[{"name":"polygon","attribs":{"points":"264,63.4 318.8,118.1 330.4,106.5 256,32 181.5,106.5 193.2,118.1 248,63.4 248,144 264,144 \t"},"children":[]}]}]}]};exports.iosUpload=iosUpload;var iosVideocamOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M303.7,128h-221C63.9,128,47,142.1,47,160.7v187.9c0,18.6,16.9,35.4,35.7,35.4h221c18.8,0,33.3-16.8,33.3-35.4V160.7\r\n\t\tC337,142.1,322.5,128,303.7,128z M320,348.6c0,9.3-6.9,18.4-16.3,18.4h-221c-9.4,0-18.7-9.1-18.7-18.4V160.7\r\n\t\tc0-9.3,9-15.5,18.4-15.5l221,0.1c9.4,0,16.6,6.1,16.6,15.4V348.6z"},"children":[{"name":"path","attribs":{"d":"M303.7,128h-221C63.9,128,47,142.1,47,160.7v187.9c0,18.6,16.9,35.4,35.7,35.4h221c18.8,0,33.3-16.8,33.3-35.4V160.7\r\n\t\tC337,142.1,322.5,128,303.7,128z M320,348.6c0,9.3-6.9,18.4-16.3,18.4h-221c-9.4,0-18.7-9.1-18.7-18.4V160.7\r\n\t\tc0-9.3,9-15.5,18.4-15.5l221,0.1c9.4,0,16.6,6.1,16.6,15.4V348.6z"},"children":[]}]},{"name":"path","attribs":{"d":"M367,213v85.6l98,53.4V160L367,213z M448,190v132.3l-64-33.5v-65.6l64.1-33.6L448,190z"},"children":[{"name":"path","attribs":{"d":"M367,213v85.6l98,53.4V160L367,213z M448,190v132.3l-64-33.5v-65.6l64.1-33.6L448,190z"},"children":[]}]}]}]};exports.iosVideocamOutline=iosVideocamOutline;var iosVideocam={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M303.7,128h-221C63.9,128,47,142.1,47,160.7v187.9c0,18.6,16.9,35.4,35.7,35.4h221c18.8,0,33.3-16.8,33.3-35.4V160.7\r\n\t\tC337,142.1,322.5,128,303.7,128z"},"children":[{"name":"path","attribs":{"d":"M303.7,128h-221C63.9,128,47,142.1,47,160.7v187.9c0,18.6,16.9,35.4,35.7,35.4h221c18.8,0,33.3-16.8,33.3-35.4V160.7\r\n\t\tC337,142.1,322.5,128,303.7,128z"},"children":[]}]},{"name":"path","attribs":{"d":"M367,213v85.6l98,53.4V160L367,213z"},"children":[{"name":"path","attribs":{"d":"M367,213v85.6l98,53.4V160L367,213z"},"children":[]}]}]}]};exports.iosVideocam=iosVideocam;var iosVolumeHigh={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M374.1,128l-13.6,10.3C384.6,171.2,399,211.9,399,256c0,44.1-14.4,84.8-38.6,117.7l13.6,10.3c26.3-35.7,41.9-80,41.9-128\r\n\t\t\t\tC415.9,208,400.4,163.7,374.1,128z"},"children":[{"name":"path","attribs":{"d":"M374.1,128l-13.6,10.3C384.6,171.2,399,211.9,399,256c0,44.1-14.4,84.8-38.6,117.7l13.6,10.3c26.3-35.7,41.9-80,41.9-128\r\n\t\t\t\tC415.9,208,400.4,163.7,374.1,128z"},"children":[]}]},{"name":"path","attribs":{"d":"M320,351.8c20-26.8,32-59.9,32-95.8s-12-69-32-95.8l-13.6,10.1c17.9,24,28.6,53.6,28.6,85.7s-10.7,61.7-28.6,85.7\r\n\t\t\t\tL320,351.8z"},"children":[{"name":"path","attribs":{"d":"M320,351.8c20-26.8,32-59.9,32-95.8s-12-69-32-95.8l-13.6,10.1c17.9,24,28.6,53.6,28.6,85.7s-10.7,61.7-28.6,85.7\r\n\t\t\t\tL320,351.8z"},"children":[]}]},{"name":"path","attribs":{"d":"M273.1,319.9c13.7-17.9,21.9-39.9,21.9-63.9c0-24-8.2-46-21.9-63.9l-13.5,9.8c11.6,15.1,18.5,33.8,18.5,54.1\r\n\t\t\t\ts-6.9,38.9-18.5,54.1L273.1,319.9z"},"children":[{"name":"path","attribs":{"d":"M273.1,319.9c13.7-17.9,21.9-39.9,21.9-63.9c0-24-8.2-46-21.9-63.9l-13.5,9.8c11.6,15.1,18.5,33.8,18.5,54.1\r\n\t\t\t\ts-6.9,38.9-18.5,54.1L273.1,319.9z"},"children":[]}]}]}]}]}]},{"name":"polygon","attribs":{"points":"153.9,216 96,216 96,296 153.9,296 224,352 224,160 \t"},"children":[{"name":"polygon","attribs":{"points":"153.9,216 96,216 96,296 153.9,296 224,352 224,160 \t"},"children":[]}]}]}]};exports.iosVolumeHigh=iosVolumeHigh;var iosVolumeLow={"viewBox":"0 0 512 512","children":[{"name":"polygon","attribs":{"points":"249.9,216 192,216 192,296 249.9,296 320,352 320,160 "},"children":[]}]};exports.iosVolumeLow=iosVolumeLow;var iosWineglassOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M264,308.988c0-21.975,20.458-38.674,40.247-54.824c7.907-6.453,15.37-12.547,21.519-18.962\r\n\tC352.313,207.505,352,183.458,352,164.144V160c0-44.25-30.816-124.558-32.02-128H256h-64c-1.203,3.442-32,83.5-32,128v4.144\r\n\tc0,19.273-0.323,43.361,26.225,71.059c6.148,6.415,13.617,12.509,21.523,18.962c19.789,16.15,40.252,32.85,40.252,54.824V464h-72v16\r\n\th80h80v-16h-72V308.988z M202.729,48H256h53.251c5.359,15.99,19.509,62.712,24.836,96H177.894\r\n\tC183.221,110.712,197.37,63.99,202.729,48z M256,273.416c-2.968,0-5.248-0.92-7.17-2.754c0.001,0.009,0.003,0.018,0.005,0.026\r\n\tc-8.804-10.807-20.234-20.158-30.971-28.92c-7.517-6.135-14.617-11.929-20.089-17.637c-22.054-23.008-21.928-40.916-21.795-59.875\r\n\tc0.01-1.428-0.068-2.849,0.02-4.255h159.98c0.088,1.406,0.01,2.828,0.021,4.255c0.133,18.959,0.259,36.867-21.795,59.875\r\n\tc-5.472,5.708-12.57,11.502-20.087,17.637c-10.737,8.762-22.165,18.114-30.969,28.92c0.002-0.009,0.009-0.018,0.01-0.026\r\n\tC261.238,272.496,259,273.416,256,273.416z"},"children":[]}]};exports.iosWineglassOutline=iosWineglassOutline;var iosWineglass={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M264,308.988c0-21.975,20.458-38.674,40.247-54.824c7.907-6.453,15.37-12.547,21.519-18.962\r\n\tC352.313,207.505,352,183.458,352,164.144V160c0-44.25-30.816-124.558-32.02-128H256h-64c-1.203,3.442-32,83.5-32,128v4.144\r\n\tc0,19.273-0.323,43.361,26.225,71.059c6.148,6.415,13.617,12.509,21.523,18.962c19.789,16.15,40.252,32.85,40.252,54.824V464h-72v16\r\n\th80h80v-16h-72V308.988z M202.729,48H256h53.251c5.359,15.99,19.509,62.712,24.836,96H177.894\r\n\tC183.221,110.712,197.37,63.99,202.729,48z"},"children":[]}]};exports.iosWineglass=iosWineglass;var iosWorldOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,48c-0.1,0-0.1,0-0.2,0c0,0,0,0-0.1,0c-0.1,0-0.2,0-0.2,0C140.8,48.3,48,141.3,48,256c0,114.7,92.8,207.7,207.5,208\r\n\tc0.1,0,0.2,0,0.2,0c0,0,0.1,0,0.1,0c0.1,0,0.1,0,0.2,0c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48z M264.3,172.5\r\n\tc22.1-0.6,43.5-3.5,64.2-8.5c6.2,24.5,10.1,52.8,10.7,83.8h-74.9V172.5z M264.3,155.8V66c22.4,6.2,45.2,36.1,59.6,82\r\n\tC304.7,152.6,284.8,155.2,264.3,155.8z M247.7,65.8v90.1c-20.7-0.6-40.8-3.3-60.1-8C202.2,101.7,225.1,71.6,247.7,65.8z\r\n\t M247.7,172.5v75.2h-75.4c0.6-31,4.5-59.3,10.7-83.8C203.8,168.9,225.5,171.9,247.7,172.5z M155.5,247.7H64.9\r\n\tc1.8-42.8,17.8-82,43.3-113c18.5,10.2,38.2,18.6,58.8,24.8C160.2,186,156.2,215.9,155.5,247.7z M155.5,264.3\r\n\tc0.6,31.7,4.6,61.7,11.4,88.2c-20.6,6.3-40.2,14.6-58.8,24.8c-25.5-31-41.4-70.2-43.3-113H155.5z M172.3,264.3h75.4v75.1\r\n\tc-22.2,0.6-43.9,3.6-64.7,8.7C176.8,323.6,172.9,295.3,172.3,264.3z M247.7,356.1v90.2c-22.6-5.9-45.5-35.9-60.1-82.1\r\n\tC206.9,359.4,227,356.7,247.7,356.1z M264.3,446v-90c20.5,0.6,40.4,3.3,59.7,7.9C309.5,409.9,286.8,439.8,264.3,446z M264.3,339.4\r\n\tv-75.1h74.9c-0.6,30.9-4.5,59.2-10.7,83.7C307.8,343,286.4,340,264.3,339.4z M355.9,264.3h91.2c-1.8,42.8-17.8,81.9-43.3,113\r\n\tc-18.7-10.3-38.5-18.7-59.3-25C351.3,325.8,355.3,296,355.9,264.3z M355.9,247.7c-0.6-31.7-4.6-61.6-11.3-88.1\r\n\tc20.8-6.3,40.6-14.7,59.2-24.9c25.5,31,41.5,70.2,43.3,113.1H355.9z M392.4,121.9c-16.6,8.8-34,16.1-52.3,21.6\r\n\tc-9.7-31.3-23.4-56.8-39.5-73.6C336,78.4,367.6,96.8,392.4,121.9z M210.8,70.1c-16.1,16.7-29.7,42.2-39.3,73.3\r\n\tc-18.1-5.5-35.4-12.7-51.8-21.5C144.2,96.9,175.6,78.6,210.8,70.1z M119.6,390c16.4-8.8,33.8-16,51.8-21.5\r\n\tc9.7,31.2,23.3,56.6,39.4,73.4C175.6,433.4,144.2,415.1,119.6,390z M300.6,442.1c16.2-16.8,29.8-42.3,39.6-73.7\r\n\tc18.3,5.5,35.7,12.8,52.3,21.6C367.7,415.2,336,433.6,300.6,442.1z"},"children":[]}]};exports.iosWorldOutline=iosWorldOutline;var iosWorld={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,48c-0.1,0-0.1,0-0.2,0c0,0,0,0-0.1,0c-0.1,0-0.2,0-0.2,0C140.8,48.3,48,141.3,48,256c0,114.7,92.8,207.7,207.5,208\r\n\t\tc0.1,0,0.2,0,0.2,0c0,0,0.1,0,0.1,0c0.1,0,0.1,0,0.2,0c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48z M256,447.4\r\n\t\tc-0.1,0-0.1,0-0.2,0c0,0,0,0-0.1,0c-0.1,0-0.2,0-0.2,0C150.1,447.1,64.6,361.5,64.6,256c0-105.5,85.4-191.1,190.9-191.3\r\n\t\tc0.1,0,0.1,0,0.2,0c0,0,0.1,0,0.1,0c0.1,0,0.1,0,0.2,0c105.7,0,191.4,85.7,191.4,191.4C447.4,361.7,361.7,447.4,256,447.4z"},"children":[{"name":"path","attribs":{"d":"M256,48c-0.1,0-0.1,0-0.2,0c0,0,0,0-0.1,0c-0.1,0-0.2,0-0.2,0C140.8,48.3,48,141.3,48,256c0,114.7,92.8,207.7,207.5,208\r\n\t\tc0.1,0,0.2,0,0.2,0c0,0,0.1,0,0.1,0c0.1,0,0.1,0,0.2,0c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48z M256,447.4\r\n\t\tc-0.1,0-0.1,0-0.2,0c0,0,0,0-0.1,0c-0.1,0-0.2,0-0.2,0C150.1,447.1,64.6,361.5,64.6,256c0-105.5,85.4-191.1,190.9-191.3\r\n\t\tc0.1,0,0.1,0,0.2,0c0,0,0.1,0,0.1,0c0.1,0,0.1,0,0.2,0c105.7,0,191.4,85.7,191.4,191.4C447.4,361.7,361.7,447.4,256,447.4z"},"children":[]}]},{"name":"path","attribs":{"d":"M322.3,171.8c-18.7,4.5-38,7.2-57.9,7.8v68.1H332C331.4,219.6,327.9,194.1,322.3,171.8z"},"children":[{"name":"path","attribs":{"d":"M322.3,171.8c-18.7,4.5-38,7.2-57.9,7.8v68.1H332C331.4,219.6,327.9,194.1,322.3,171.8z"},"children":[]}]},{"name":"path","attribs":{"d":"M264.3,82.5v81.9c18.5-0.6,36.5-3,53.8-7.2C305,115.8,284.6,88.6,264.3,82.5z"},"children":[{"name":"path","attribs":{"d":"M264.3,82.5v81.9c18.5-0.6,36.5-3,53.8-7.2C305,115.8,284.6,88.6,264.3,82.5z"},"children":[]}]},{"name":"path","attribs":{"d":"M193.4,157.1c17.5,4.2,35.6,6.7,54.2,7.3V82.3C227.3,88.2,206.6,115.4,193.4,157.1z"},"children":[{"name":"path","attribs":{"d":"M193.4,157.1c17.5,4.2,35.6,6.7,54.2,7.3V82.3C227.3,88.2,206.6,115.4,193.4,157.1z"},"children":[]}]},{"name":"path","attribs":{"d":"M380.6,133.4c-22.6-23-51.5-39.8-83.9-47.5c14.8,15.3,27.2,38.7,36.1,67.3C349.5,148.1,365.5,141.5,380.6,133.4z"},"children":[{"name":"path","attribs":{"d":"M380.6,133.4c-22.6-23-51.5-39.8-83.9-47.5c14.8,15.3,27.2,38.7,36.1,67.3C349.5,148.1,365.5,141.5,380.6,133.4z"},"children":[]}]},{"name":"path","attribs":{"d":"M347.3,247.7h83.3c-1.8-38.8-16.3-74.4-39.5-102.6c-17.1,9.4-35.2,17.1-54.1,22.8C343.1,191.9,346.7,219,347.3,247.7z"},"children":[{"name":"path","attribs":{"d":"M347.3,247.7h83.3c-1.8-38.8-16.3-74.4-39.5-102.6c-17.1,9.4-35.2,17.1-54.1,22.8C343.1,191.9,346.7,219,347.3,247.7z"},"children":[]}]},{"name":"path","attribs":{"d":"M179.5,247.7h68.2v-68.1c-20.1-0.6-39.6-3.3-58.4-7.9C183.6,194,180.1,219.6,179.5,247.7z"},"children":[{"name":"path","attribs":{"d":"M179.5,247.7h68.2v-68.1c-20.1-0.6-39.6-3.3-58.4-7.9C183.6,194,180.1,219.6,179.5,247.7z"},"children":[]}]},{"name":"path","attribs":{"d":"M332,264.3h-67.7v68c19.9,0.6,39.3,3.2,58,7.8C327.9,317.9,331.4,292.3,332,264.3z"},"children":[{"name":"path","attribs":{"d":"M332,264.3h-67.7v68c19.9,0.6,39.3,3.2,58,7.8C327.9,317.9,331.4,292.3,332,264.3z"},"children":[]}]},{"name":"path","attribs":{"d":"M189.3,340.2c18.8-4.6,38.3-7.3,58.4-7.9v-68h-68.2C180.1,292.4,183.6,318,189.3,340.2z"},"children":[{"name":"path","attribs":{"d":"M189.3,340.2c18.8-4.6,38.3-7.3,58.4-7.9v-68h-68.2C180.1,292.4,183.6,318,189.3,340.2z"},"children":[]}]},{"name":"path","attribs":{"d":"M247.7,429.6v-82.1c-18.6,0.6-36.8,3.1-54.3,7.3C206.6,396.5,227.3,423.8,247.7,429.6z"},"children":[{"name":"path","attribs":{"d":"M247.7,429.6v-82.1c-18.6,0.6-36.8,3.1-54.3,7.3C206.6,396.5,227.3,423.8,247.7,429.6z"},"children":[]}]},{"name":"path","attribs":{"d":"M296.7,426.1c32.4-7.8,61.3-24.5,84-47.6c-15.1-8.1-31.1-14.7-47.8-19.8C324,387.4,311.5,410.7,296.7,426.1z"},"children":[{"name":"path","attribs":{"d":"M296.7,426.1c32.4-7.8,61.3-24.5,84-47.6c-15.1-8.1-31.1-14.7-47.8-19.8C324,387.4,311.5,410.7,296.7,426.1z"},"children":[]}]},{"name":"path","attribs":{"d":"M214.7,86.1c-32.1,7.8-60.8,24.5-83.3,47.4c15,8,30.8,14.6,47.3,19.6C187.6,124.6,200,101.4,214.7,86.1z"},"children":[{"name":"path","attribs":{"d":"M214.7,86.1c-32.1,7.8-60.8,24.5-83.3,47.4c15,8,30.8,14.6,47.3,19.6C187.6,124.6,200,101.4,214.7,86.1z"},"children":[]}]},{"name":"path","attribs":{"d":"M337,344.1c19,5.7,37.1,13.4,54.2,22.8c23.2-28.2,37.7-63.8,39.5-102.6h-83.3C346.7,293,343.1,320,337,344.1z"},"children":[{"name":"path","attribs":{"d":"M337,344.1c19,5.7,37.1,13.4,54.2,22.8c23.2-28.2,37.7-63.8,39.5-102.6h-83.3C346.7,293,343.1,320,337,344.1z"},"children":[]}]},{"name":"path","attribs":{"d":"M264.3,347.5v82c20.3-6.1,40.7-33.3,53.8-74.8C300.8,350.5,282.8,348.1,264.3,347.5z"},"children":[{"name":"path","attribs":{"d":"M264.3,347.5v82c20.3-6.1,40.7-33.3,53.8-74.8C300.8,350.5,282.8,348.1,264.3,347.5z"},"children":[]}]},{"name":"path","attribs":{"d":"M174.6,167.8c-18.8-5.7-36.8-13.3-53.7-22.7c-23.2,28.2-37.7,63.8-39.5,102.6h82.9C164.8,218.9,168.5,191.8,174.6,167.8z"},"children":[{"name":"path","attribs":{"d":"M174.6,167.8c-18.8-5.7-36.8-13.3-53.7-22.7c-23.2,28.2-37.7,63.8-39.5,102.6h82.9C164.8,218.9,168.5,191.8,174.6,167.8z"},"children":[]}]},{"name":"path","attribs":{"d":"M164.2,264.3H81.3c1.8,38.8,16.3,74.4,39.5,102.6c16.9-9.3,34.9-17,53.7-22.7C168.5,320.2,164.8,293.1,164.2,264.3z"},"children":[{"name":"path","attribs":{"d":"M164.2,264.3H81.3c1.8,38.8,16.3,74.4,39.5,102.6c16.9-9.3,34.9-17,53.7-22.7C168.5,320.2,164.8,293.1,164.2,264.3z"},"children":[]}]},{"name":"path","attribs":{"d":"M131.3,378.5c22.5,22.9,51.2,39.6,83.4,47.4c-14.7-15.3-27.1-38.6-36-67.1C162.2,363.9,146.3,370.5,131.3,378.5z"},"children":[{"name":"path","attribs":{"d":"M131.3,378.5c22.5,22.9,51.2,39.6,83.4,47.4c-14.7-15.3-27.1-38.6-36-67.1C162.2,363.9,146.3,370.5,131.3,378.5z"},"children":[]}]}]}]};exports.iosWorld=iosWorld;var ipad={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M112,72.8v366.4c0,4.9,3.9,8.8,8.8,8.8h270.4c4.9,0,8.8-3.9,8.8-8.8V72.8c0-4.9-3.9-8.8-8.8-8.8H120.8\r\n\tC115.9,64,112,67.9,112,72.8z M256,437.6c-7.5,0-13.6-6-13.6-13.5c0-7.5,6.1-13.6,13.6-13.6c7.4,0,13.5,6.1,13.5,13.6\r\n\tC269.6,431.6,263.5,437.6,256,437.6z M144,118.6c0-3.5,2.7-6.6,6-6.6h211.2c3.4,0,6.8,3.1,6.8,6.6v275.2c0,3.5-3.4,6.3-6.8,6.3H150\r\n\tc-3.4,0-6-2.8-6-6.3V118.6z"},"children":[]}]};exports.ipad=ipad;var iphone={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M328.2,64H183.8C170.7,64,160,74.7,160,87.9v336.3c0,13.1,10.7,23.8,23.8,23.8h144.3c13.1,0,23.8-10.7,23.8-23.8V87.9\r\n\t\tC352,74.7,341.3,64,328.2,64z M240,99.9c0-2.1,1.7-3.9,3.9-3.9h24.3c2.1,0,3.9,1.7,3.9,3.9v0.3c0,2.1-1.7,3.9-3.9,3.9h-24.3\r\n\t\tc-2.1,0-3.9-1.7-3.9-3.9V99.9z M228,96c2.2,0,4,1.8,4,4c0,2.2-1.8,4-4,4s-4-1.8-4-4C224,97.8,225.8,96,228,96z M256,432.1\r\n\t\tc-8.9,0-16.1-7.2-16.1-16.1c0-8.9,7.2-16.1,16.1-16.1c8.9,0,16.1,7.2,16.1,16.1C272.1,424.9,264.8,432.1,256,432.1z M336,384H176\r\n\t\tV128h160V384z"},"children":[{"name":"path","attribs":{"d":"M328.2,64H183.8C170.7,64,160,74.7,160,87.9v336.3c0,13.1,10.7,23.8,23.8,23.8h144.3c13.1,0,23.8-10.7,23.8-23.8V87.9\r\n\t\tC352,74.7,341.3,64,328.2,64z M240,99.9c0-2.1,1.7-3.9,3.9-3.9h24.3c2.1,0,3.9,1.7,3.9,3.9v0.3c0,2.1-1.7,3.9-3.9,3.9h-24.3\r\n\t\tc-2.1,0-3.9-1.7-3.9-3.9V99.9z M228,96c2.2,0,4,1.8,4,4c0,2.2-1.8,4-4,4s-4-1.8-4-4C224,97.8,225.8,96,228,96z M256,432.1\r\n\t\tc-8.9,0-16.1-7.2-16.1-16.1c0-8.9,7.2-16.1,16.1-16.1c8.9,0,16.1,7.2,16.1,16.1C272.1,424.9,264.8,432.1,256,432.1z M336,384H176\r\n\t\tV128h160V384z"},"children":[]}]}]}]};exports.iphone=iphone;var ipod={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,311c-17.7,0-32,14.3-32,32c0,17.6,14.3,32,32,32c17.6,0,32-14.3,32-32C288,325.3,273.7,311,256,311z"},"children":[{"name":"path","attribs":{"d":"M256,311c-17.7,0-32,14.3-32,32c0,17.6,14.3,32,32,32c17.6,0,32-14.3,32-32C288,325.3,273.7,311,256,311z"},"children":[]}]},{"name":"path","attribs":{"d":"M340.4,64H171.6C156.4,64,144,76.2,144,91.7v328.7c0,15.5,12.4,27.7,27.6,27.7h168.8c15.2,0,27.6-12.2,27.6-27.7V91.7\r\n\t\tC368,76.2,355.6,64,340.4,64z M256.1,416.1c-39.8,0-72.1-32.2-72.1-72c0-39.7,32.3-72,72.1-72c39.7,0,71.9,32.3,71.9,72\r\n\t\tC328,383.9,295.8,416.1,256.1,416.1z M335.9,226.8c-0.8,7.6-7,13.2-14.7,13.2h-131c-8.2,0-14.2-6.2-14.2-14.6V110.9\r\n\t\tc0-7.5,5-13.7,12-14.9l135.8,0c6.5,1.2,11.5,6.6,12.2,13.3L335.9,226.8z"},"children":[{"name":"path","attribs":{"d":"M340.4,64H171.6C156.4,64,144,76.2,144,91.7v328.7c0,15.5,12.4,27.7,27.6,27.7h168.8c15.2,0,27.6-12.2,27.6-27.7V91.7\r\n\t\tC368,76.2,355.6,64,340.4,64z M256.1,416.1c-39.8,0-72.1-32.2-72.1-72c0-39.7,32.3-72,72.1-72c39.7,0,71.9,32.3,71.9,72\r\n\t\tC328,383.9,295.8,416.1,256.1,416.1z M335.9,226.8c-0.8,7.6-7,13.2-14.7,13.2h-131c-8.2,0-14.2-6.2-14.2-14.6V110.9\r\n\t\tc0-7.5,5-13.7,12-14.9l135.8,0c6.5,1.2,11.5,6.6,12.2,13.3L335.9,226.8z"},"children":[]}]}]}]};exports.ipod=ipod;var jet={"viewBox":"0 0 512 512","children":[{"name":"style","attribs":{"type":"text/css"},"children":[]},{"name":"path","attribs":{"class":"st0","d":"M314.8,368.5L419,403l-3-52.7L302,247c0,0-25.9-173.7-28.2-192.3C268.5,14.4,255.9,0,255.9,0\r\n\ts-12.5,14.4-17.6,54.6C235.9,73.3,210,247,210,247L96,350.3L93,403l104.2-34.5l1.4,12.3l-52.7,58.3l18.3,27.4l73.3-9.1l18.3,54.6\r\n\tl18.5-54.6l73.4,9.1l18.3-27.4l-52.7-58.3L314.8,368.5z"},"children":[]}]};exports.jet=jet;var key={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M304.3,301c0,0-5.4-28-7.3-90c-1.9-62-9-142.5-9-142.5c-2.5-28-11.8-36.5-32-36.5c-9.4,0-20.5,2.3-23.3,3.3\r\n\tc-9.4,3.6-8.7,11.6-8.7,22.5l0,17.8c0,3.2,1.2,6,3.2,8.2l0.8,0.8l4.1,4.1c0.4,0.3,0.1,0.7,0.4,1c1.9,2.2,3.1,5,3.1,8.1l0,24.5\r\n\tc0,3.2-1.2,3.2-3.2,5.3c-0.2,0.3-0.5,0.6-0.8,0.8l-4.4,4.4c-0.1,0.1-0.3,0.3-0.4,0.4c-2.1,2.2-3.4,5.2-3.4,8.4l0,7.2\r\n\tc0,3.1,1.1,5.9,3.1,8.1c0,0,0.1,0.1,0.1,0.1l0.8,0.8c0,0,0.1,0.1,0.1,0.1l4,4c0.4,0.3,0.7,0.7,1,1c1.9,2.2,3.1,5,3.1,8.1\r\n\tc0,0.7-0.1,8.1-0.2,8.8c-0.4,2.3-1.5,4.4-3,6.1c-0.2,0.3-0.5,0.6-0.8,0.8l-3.9,3.9l-1.4,1.5c-0.5,0.6-0.7,1.3-1.1,2.1\r\n\tc-0.9,1.7-1.2,3.7-1.2,5.9v7.8c0,2.9-0.1,5.7-0.2,8.6c0.2,2.4,7.2,5.7,7.2,10.5v20.4c0,6.2-10.5,7-11,11.3\r\n\tc-4.7,25.4-11.9,41.8-11.9,41.8c-28.7,16.6-48,47.6-48,83.2c0,53,43,96,96,96s96-43,96-96C352,348.6,332.8,317.7,304.3,301z\r\n\t M256,448c-17.7,0-32-14.3-32-32s14.3-32,32-32s32,14.3,32,32S273.7,448,256,448z"},"children":[]}]};exports.key=key;var knife={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M285.7,32c-3.3,0-6,1.4-8,3.8C259,58.7,224,116.1,224,250.1c0,39.2,33,39.2,32,69.4c0,0.1,0,0.3,0,0.4\r\n\tc-2,47.1-14.9,111.1-16,130.3c-0.4,15.2,9.7,29.8,24.1,29.8c0.1,0,0.1,0,0.2,0c0,0,0.1,0,0.2,0c14.4,0,23.5-14.4,23.5-29.6V38.3\r\n\tC288,33.3,287.5,32,285.7,32z"},"children":[]}]};exports.knife=knife;var laptop={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M480,106.3c0-5.6-4.1-10.3-9.6-10.3H42.2c-5.5,0-10.2,4.6-10.2,10.3V368h448V106.3z M448,336H64V128h384V336z"},"children":[{"name":"path","attribs":{"d":"M480,106.3c0-5.6-4.1-10.3-9.6-10.3H42.2c-5.5,0-10.2,4.6-10.2,10.3V368h448V106.3z M448,336H64V128h384V336z"},"children":[]}]},{"name":"path","attribs":{"d":"M0,388.7C70.2,408.6,115.8,416,256,416c140.2,0,185.8-7.3,256-27.3V384H0V388.7z"},"children":[{"name":"path","attribs":{"d":"M0,388.7C70.2,408.6,115.8,416,256,416c140.2,0,185.8-7.3,256-27.3V384H0V388.7z"},"children":[]}]}]}]};exports.laptop=laptop;var leaf={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M456.7,378.7c-52.5-8-56.5-15.7-56.5-15.7c10.8-64.9-22.7-147.1-77.4-191.6c-72.8-59.2-183.5-16.2-269.7-106.2\r\n\t\tc-20.1-21-8.4,235.5,99.5,332.7c78.9,71,171.8,49.2,197.3,37.6c23.1-10.6,39.3-29.9,39.3-29.9c42.1,13,62.9,12.2,62.9,12.2\r\n\t\tC466.9,419.6,474.4,381.4,456.7,378.7z M360.6,383.1c-138.2-40.9-242.1-184.5-242.1-184.5s91.2,107.7,252,160.2\r\n\t\tC370.7,366.9,365.9,378.5,360.6,383.1z"},"children":[{"name":"path","attribs":{"d":"M456.7,378.7c-52.5-8-56.5-15.7-56.5-15.7c10.8-64.9-22.7-147.1-77.4-191.6c-72.8-59.2-183.5-16.2-269.7-106.2\r\n\t\tc-20.1-21-8.4,235.5,99.5,332.7c78.9,71,171.8,49.2,197.3,37.6c23.1-10.6,39.3-29.9,39.3-29.9c42.1,13,62.9,12.2,62.9,12.2\r\n\t\tC466.9,419.6,474.4,381.4,456.7,378.7z M360.6,383.1c-138.2-40.9-242.1-184.5-242.1-184.5s91.2,107.7,252,160.2\r\n\t\tC370.7,366.9,365.9,378.5,360.6,383.1z"},"children":[]}]}]}]};exports.leaf=leaf;var levels={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M127,99.2V80c0-8.8-7.2-16-16-16s-16,7.2-16,16v21.5c-8.5,5.8-14,15.5-14,26.5s5.5,20.7,14,26.5V432c0,8.8,7.2,16,16,16\r\n\t\ts16-7.2,16-16V156.8c10.7-5.2,18-16.1,18-28.8S137.7,104.4,127,99.2z"},"children":[{"name":"path","attribs":{"d":"M127,99.2V80c0-8.8-7.2-16-16-16s-16,7.2-16,16v21.5c-8.5,5.8-14,15.5-14,26.5s5.5,20.7,14,26.5V432c0,8.8,7.2,16,16,16\r\n\t\ts16-7.2,16-16V156.8c10.7-5.2,18-16.1,18-28.8S137.7,104.4,127,99.2z"},"children":[]}]},{"name":"path","attribs":{"d":"M223,292.9V80c0-8.8-7.2-16-16-16s-16,7.2-16,16v211.7c-10.1,5.4-17,16-17,28.3s6.9,22.9,17,28.3V432c0,8.8,7.2,16,16,16\r\n\t\ts16-7.2,16-16v-84.9c9-5.7,15-15.7,15-27.1S232,298.6,223,292.9z"},"children":[{"name":"path","attribs":{"d":"M223,292.9V80c0-8.8-7.2-16-16-16s-16,7.2-16,16v211.7c-10.1,5.4-17,16-17,28.3s6.9,22.9,17,28.3V432c0,8.8,7.2,16,16,16\r\n\t\ts16-7.2,16-16v-84.9c9-5.7,15-15.7,15-27.1S232,298.6,223,292.9z"},"children":[]}]},{"name":"path","attribs":{"d":"M319,163.3V80c0-8.8-7.2-16-16-16s-16,7.2-16,16v83.3c-9.6,5.5-16,15.9-16,27.7s6.4,22.2,16,27.7V432c0,8.8,7.2,16,16,16\r\n\t\ts16-7.2,16-16V218.7c9.6-5.5,16-15.9,16-27.7S328.6,168.8,319,163.3z"},"children":[{"name":"path","attribs":{"d":"M319,163.3V80c0-8.8-7.2-16-16-16s-16,7.2-16,16v83.3c-9.6,5.5-16,15.9-16,27.7s6.4,22.2,16,27.7V432c0,8.8,7.2,16,16,16\r\n\t\ts16-7.2,16-16V218.7c9.6-5.5,16-15.9,16-27.7S328.6,168.8,319,163.3z"},"children":[]}]},{"name":"path","attribs":{"d":"M431,383c0-11.8-6.4-22.2-16-27.7V80c0-8.8-7.2-16-16-16s-16,7.2-16,16v275.3c-9.6,5.5-16,15.9-16,27.7s6.4,22.2,16,27.7\r\n\t\tV432c0,8.8,7.2,16,16,16s16-7.2,16-16v-21.3C424.6,405.2,431,394.8,431,383z"},"children":[{"name":"path","attribs":{"d":"M431,383c0-11.8-6.4-22.2-16-27.7V80c0-8.8-7.2-16-16-16s-16,7.2-16,16v275.3c-9.6,5.5-16,15.9-16,27.7s6.4,22.2,16,27.7\r\n\t\tV432c0,8.8,7.2,16,16,16s16-7.2,16-16v-21.3C424.6,405.2,431,394.8,431,383z"},"children":[]}]}]}]};exports.levels=levels;var lightbulb={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,32c-70.7,0-128,55.4-128,123.8c0,4.9,0.3,9.7,0.9,14.5c0.6,5.4,1.6,10.6,3,15.7c0.1,0.5,0.3,1.1,0.4,1.6\r\n\t\tc16.6,62.8,45.3,71.5,58.9,167.6c0,0.2,0.1,0.4,0.1,0.5c1.5,9.2,9.8,12.3,19.8,12.3H301c10,0,18.2-3.1,19.7-12.3\r\n\t\tc0-0.2,0.1-0.4,0.1-0.5c13.6-96.1,42.3-104.7,58.9-167.6c0.2-0.5,0.3-1,0.4-1.6c1.3-5.1,2.3-10.4,3-15.7c0.6-4.7,0.9-9.6,0.9-14.5\r\n\t\tC384,87.4,326.7,32,256,32z"},"children":[{"name":"path","attribs":{"d":"M256,32c-70.7,0-128,55.4-128,123.8c0,4.9,0.3,9.7,0.9,14.5c0.6,5.4,1.6,10.6,3,15.7c0.1,0.5,0.3,1.1,0.4,1.6\r\n\t\tc16.6,62.8,45.3,71.5,58.9,167.6c0,0.2,0.1,0.4,0.1,0.5c1.5,9.2,9.8,12.3,19.8,12.3H301c10,0,18.2-3.1,19.7-12.3\r\n\t\tc0-0.2,0.1-0.4,0.1-0.5c13.6-96.1,42.3-104.7,58.9-167.6c0.2-0.5,0.3-1,0.4-1.6c1.3-5.1,2.3-10.4,3-15.7c0.6-4.7,0.9-9.6,0.9-14.5\r\n\t\tC384,87.4,326.7,32,256,32z"},"children":[]}]},{"name":"path","attribs":{"d":"M317.8,396.5c0.1-0.2,0.3-0.4,0.4-0.6c1.1-1.7,1.7-3.6,1.7-5.7c0-3.5,1.6-6.2-6.5-6.2H198.6c-8.1,0-6.5,2.1-6.5,6.2\r\n\t\tc0,2.1,0.6,4,1.7,5.7c0.1,0.2,0.3,0.4,0.5,0.6c0,0.1,0.1,0.1,0.1,0.2c1.7,2.6,2.7,4.4,2.7,7.6c0,3.1-0.9,4.9-2.6,7.5\r\n\t\tc-0.3,0.4-0.5,0.7-0.7,1c-1,1.7-1.6,3.6-1.6,5.6c0,2.1,0.6,4,1.7,5.8c0.1,0.2,0.3,0.4,0.4,0.6c1.8,2.7,2.8,4.5,2.8,7.8\r\n\t\tc0,3.1-0.9,4.9-2.6,7.4c-0.2,0.4-0.5,0.7-0.8,1.1c-1,1.7-1.6,3.6-1.6,5.6c0,5.4,4.3,10.1,10.2,11.6c0.3,0.1,0.6,0.1,0.9,0.2\r\n\t\tc6,1.4,12.2,1.6,18.5,2.5c0.7,0.1,1.4,0.2,2.2,0.3c5.6,1,10.3,3.9,13.4,7.7l0,0c3.8,5.3,10.8,11,18.8,11c7.6,0,14.3-5.4,18.2-10.4\r\n\t\th0c3-4.2,8-7.3,13.9-8.4c0.7-0.1,1.4-0.3,2.2-0.3c6.3-0.9,12.5-1.1,18.5-2.5c0.3-0.1,0.6-0.1,0.9-0.2c5.9-1.6,10.2-6.2,10.2-11.6\r\n\t\tc0-2-0.6-3.9-1.6-5.6c-0.3-0.4-0.5-0.7-0.8-1.1c-1.6-2.6-2.6-4.3-2.6-7.4c0-3.2,1-5.1,2.8-7.8c0.1-0.2,0.3-0.4,0.4-0.6\r\n\t\tc1.1-1.7,1.7-3.7,1.7-5.8c0-2-0.6-3.9-1.6-5.6c-0.3-0.3-0.5-0.7-0.7-1c-1.6-2.6-2.6-4.3-2.6-7.5c0-3.2,1-5,2.7-7.6\r\n\t\tC317.7,396.7,317.7,396.6,317.8,396.5z"},"children":[{"name":"path","attribs":{"d":"M317.8,396.5c0.1-0.2,0.3-0.4,0.4-0.6c1.1-1.7,1.7-3.6,1.7-5.7c0-3.5,1.6-6.2-6.5-6.2H198.6c-8.1,0-6.5,2.1-6.5,6.2\r\n\t\tc0,2.1,0.6,4,1.7,5.7c0.1,0.2,0.3,0.4,0.5,0.6c0,0.1,0.1,0.1,0.1,0.2c1.7,2.6,2.7,4.4,2.7,7.6c0,3.1-0.9,4.9-2.6,7.5\r\n\t\tc-0.3,0.4-0.5,0.7-0.7,1c-1,1.7-1.6,3.6-1.6,5.6c0,2.1,0.6,4,1.7,5.8c0.1,0.2,0.3,0.4,0.4,0.6c1.8,2.7,2.8,4.5,2.8,7.8\r\n\t\tc0,3.1-0.9,4.9-2.6,7.4c-0.2,0.4-0.5,0.7-0.8,1.1c-1,1.7-1.6,3.6-1.6,5.6c0,5.4,4.3,10.1,10.2,11.6c0.3,0.1,0.6,0.1,0.9,0.2\r\n\t\tc6,1.4,12.2,1.6,18.5,2.5c0.7,0.1,1.4,0.2,2.2,0.3c5.6,1,10.3,3.9,13.4,7.7l0,0c3.8,5.3,10.8,11,18.8,11c7.6,0,14.3-5.4,18.2-10.4\r\n\t\th0c3-4.2,8-7.3,13.9-8.4c0.7-0.1,1.4-0.3,2.2-0.3c6.3-0.9,12.5-1.1,18.5-2.5c0.3-0.1,0.6-0.1,0.9-0.2c5.9-1.6,10.2-6.2,10.2-11.6\r\n\t\tc0-2-0.6-3.9-1.6-5.6c-0.3-0.4-0.5-0.7-0.8-1.1c-1.6-2.6-2.6-4.3-2.6-7.4c0-3.2,1-5.1,2.8-7.8c0.1-0.2,0.3-0.4,0.4-0.6\r\n\t\tc1.1-1.7,1.7-3.7,1.7-5.8c0-2-0.6-3.9-1.6-5.6c-0.3-0.3-0.5-0.7-0.7-1c-1.6-2.6-2.6-4.3-2.6-7.5c0-3.2,1-5,2.7-7.6\r\n\t\tC317.7,396.7,317.7,396.6,317.8,396.5z"},"children":[]}]}]}]};exports.lightbulb=lightbulb;var link={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256.5,208H256v0C256.2,208,256.3,208,256.5,208z"},"children":[{"name":"path","attribs":{"d":"M256.5,208H256v0C256.2,208,256.3,208,256.5,208z"},"children":[]}]},{"name":"path","attribs":{"d":"M368.5,160H320c0,0,26,17,31.6,48H368h0.5c17.6,0,31.5,13.9,31.5,31.5v32c0,17.6-13.9,32.5-31.5,32.5h-112\r\n\t\tc-17.6,0-32.5-14.9-32.5-32.5V240h-48v31.5c0,11.5,2.5,22.5,6.9,32.5c12.6,28.2,40.9,48,73.6,48h112c44.2,0,79.5-36.3,79.5-80.5\r\n\t\tv-32C448,195.3,412.7,160,368.5,160z"},"children":[{"name":"path","attribs":{"d":"M368.5,160H320c0,0,26,17,31.6,48H368h0.5c17.6,0,31.5,13.9,31.5,31.5v32c0,17.6-13.9,32.5-31.5,32.5h-112\r\n\t\tc-17.6,0-32.5-14.9-32.5-32.5V240h-48v31.5c0,11.5,2.5,22.5,6.9,32.5c12.6,28.2,40.9,48,73.6,48h112c44.2,0,79.5-36.3,79.5-80.5\r\n\t\tv-32C448,195.3,412.7,160,368.5,160z"},"children":[]}]},{"name":"path","attribs":{"d":"M329.6,208c-12.1-28.3-40.1-48-73.1-48h-112c-44.2,0-80.5,35.3-80.5,79.5v32c0,44.2,36.3,80.5,80.5,80.5H192\r\n\t\tc0,0-25.8-17-32.1-48h-15.4c-17.6,0-32.5-14.9-32.5-32.5v-32c0-17.6,14.9-31.5,32.5-31.5H256h0.5c17.6,0,31.5,13.9,31.5,31.5v32\r\n\t\tc0,0.2,0,0.3,0,0.5h48c0-0.2,0-0.3,0-0.5v-32C336,228.3,333.7,217.6,329.6,208z"},"children":[{"name":"path","attribs":{"d":"M329.6,208c-12.1-28.3-40.1-48-73.1-48h-112c-44.2,0-80.5,35.3-80.5,79.5v32c0,44.2,36.3,80.5,80.5,80.5H192\r\n\t\tc0,0-25.8-17-32.1-48h-15.4c-17.6,0-32.5-14.9-32.5-32.5v-32c0-17.6,14.9-31.5,32.5-31.5H256h0.5c17.6,0,31.5,13.9,31.5,31.5v32\r\n\t\tc0,0.2,0,0.3,0,0.5h48c0-0.2,0-0.3,0-0.5v-32C336,228.3,333.7,217.6,329.6,208z"},"children":[]}]}]}]};exports.link=link;var loadA={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"cx":"256","cy":"96","r":"64"},"children":[{"name":"circle","attribs":{"cx":"256","cy":"96","r":"64"},"children":[]}]},{"name":"circle","attribs":{"cx":"96","cy":"256","r":"48"},"children":[{"name":"circle","attribs":{"cx":"96","cy":"256","r":"48"},"children":[]}]},{"name":"circle","attribs":{"cx":"368","cy":"144","r":"8"},"children":[{"name":"circle","attribs":{"cx":"368","cy":"144","r":"8"},"children":[]}]},{"name":"path","attribs":{"d":"M180.1,107.6c-19.9-20.1-52.2-20.1-72.1,0c-19.9,20.1-19.9,52.7,0,72.8c19.9,20.1,52.2,20.1,72.1,0\r\n\t\tC200,160.3,200,127.7,180.1,107.6z"},"children":[{"name":"path","attribs":{"d":"M180.1,107.6c-19.9-20.1-52.2-20.1-72.1,0c-19.9,20.1-19.9,52.7,0,72.8c19.9,20.1,52.2,20.1,72.1,0\r\n\t\tC200,160.3,200,127.7,180.1,107.6z"},"children":[]}]},{"name":"circle","attribs":{"cx":"416","cy":"256","r":"16"},"children":[{"name":"circle","attribs":{"cx":"416","cy":"256","r":"16"},"children":[]}]},{"name":"circle","attribs":{"cx":"369","cy":"369","r":"24"},"children":[{"name":"circle","attribs":{"cx":"369","cy":"369","r":"24"},"children":[]}]},{"name":"circle","attribs":{"cx":"256","cy":"416","r":"32"},"children":[{"name":"circle","attribs":{"cx":"256","cy":"416","r":"32"},"children":[]}]},{"name":"circle","attribs":{"cx":"144","cy":"368","r":"40"},"children":[{"name":"circle","attribs":{"cx":"144","cy":"368","r":"40"},"children":[]}]}]}]};exports.loadA=loadA;var loadB={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M288,160c0,17.7-14.3,32-32,32l0,0c-17.7,0-32-14.3-32-32V64c0-17.7,14.3-32,32-32l0,0c17.7,0,32,14.3,32,32V160z"},"children":[{"name":"path","attribs":{"d":"M288,160c0,17.7-14.3,32-32,32l0,0c-17.7,0-32-14.3-32-32V64c0-17.7,14.3-32,32-32l0,0c17.7,0,32,14.3,32,32V160z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,320c-17.7,0-32,14.3-32,32v96c0,17.7,14.3,32,32,32s32-14.3,32-32v-96C288,334.3,273.7,320,256,320L256,320z"},"children":[{"name":"path","attribs":{"d":"M256,320c-17.7,0-32,14.3-32,32v96c0,17.7,14.3,32,32,32s32-14.3,32-32v-96C288,334.3,273.7,320,256,320L256,320z"},"children":[]}]},{"name":"path","attribs":{"d":"M448,224h-96c-17.7,0-32,14.3-32,32s14.3,32,32,32h96c17.7,0,32-14.3,32-32S465.7,224,448,224L448,224z"},"children":[{"name":"path","attribs":{"d":"M448,224h-96c-17.7,0-32,14.3-32,32s14.3,32,32,32h96c17.7,0,32-14.3,32-32S465.7,224,448,224L448,224z"},"children":[]}]},{"name":"path","attribs":{"d":"M160,224H64c-17.7,0-32,14.3-32,32s14.3,32,32,32h96c17.7,0,32-14.3,32-32S177.7,224,160,224L160,224z"},"children":[{"name":"path","attribs":{"d":"M160,224H64c-17.7,0-32,14.3-32,32s14.3,32,32,32h96c17.7,0,32-14.3,32-32S177.7,224,160,224L160,224z"},"children":[]}]},{"name":"path","attribs":{"d":"M346.5,210.7c-12.5,12.5-32.8,12.5-45.3,0l0,0c-12.5-12.5-12.5-32.8,0-45.3l67.9-67.9c12.5-12.5,32.8-12.5,45.3,0l0,0\r\n\t\tc12.5,12.5,12.5,32.8,0,45.3L346.5,210.7z"},"children":[{"name":"path","attribs":{"d":"M346.5,210.7c-12.5,12.5-32.8,12.5-45.3,0l0,0c-12.5-12.5-12.5-32.8,0-45.3l67.9-67.9c12.5-12.5,32.8-12.5,45.3,0l0,0\r\n\t\tc12.5,12.5,12.5,32.8,0,45.3L346.5,210.7z"},"children":[]}]},{"name":"path","attribs":{"d":"M210.7,301.3c-12.5-12.5-32.8-12.5-45.3,0l-67.9,67.9c-12.5,12.5-12.5,32.8,0,45.3c12.5,12.5,32.8,12.5,45.3,0l67.9-67.9\r\n\t\tC223.2,334,223.2,313.8,210.7,301.3L210.7,301.3z"},"children":[{"name":"path","attribs":{"d":"M210.7,301.3c-12.5-12.5-32.8-12.5-45.3,0l-67.9,67.9c-12.5,12.5-12.5,32.8,0,45.3c12.5,12.5,32.8,12.5,45.3,0l67.9-67.9\r\n\t\tC223.2,334,223.2,313.8,210.7,301.3L210.7,301.3z"},"children":[]}]},{"name":"path","attribs":{"d":"M414.4,369.1l-67.9-67.9c-12.5-12.5-32.8-12.5-45.3,0c-12.5,12.5-12.5,32.8,0,45.3l67.9,67.9c12.5,12.5,32.8,12.5,45.3,0\r\n\t\tC426.9,401.9,426.9,381.6,414.4,369.1L414.4,369.1z"},"children":[{"name":"path","attribs":{"d":"M414.4,369.1l-67.9-67.9c-12.5-12.5-32.8-12.5-45.3,0c-12.5,12.5-12.5,32.8,0,45.3l67.9,67.9c12.5,12.5,32.8,12.5,45.3,0\r\n\t\tC426.9,401.9,426.9,381.6,414.4,369.1L414.4,369.1z"},"children":[]}]},{"name":"path","attribs":{"d":"M210.7,165.5l-67.9-67.9c-12.5-12.5-32.8-12.5-45.3,0c-12.5,12.5-12.5,32.8,0,45.3l67.9,67.9c12.5,12.5,32.8,12.5,45.3,0\r\n\t\tS223.2,178,210.7,165.5L210.7,165.5z"},"children":[{"name":"path","attribs":{"d":"M210.7,165.5l-67.9-67.9c-12.5-12.5-32.8-12.5-45.3,0c-12.5,12.5-12.5,32.8,0,45.3l67.9,67.9c12.5,12.5,32.8,12.5,45.3,0\r\n\t\tS223.2,178,210.7,165.5L210.7,165.5z"},"children":[]}]}]}]};exports.loadB=loadB;var loadC={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M479.8,226.1c-1.4-8.7-3.1-17.3-5.3-25.8c-2.8-10.8-6.4-21.5-10.8-31.8c-8.9-21.2-21.1-41-35.9-58.6\r\n\tc-16-18.9-35.3-35.2-56.7-47.7C350,49.8,327,41,303,36.1c-12.4-2.5-24.9-4-37.6-4.1c-9.9-0.1-19.8,0.3-29.6,1.2\r\n\tc-25.5,2.5-50.7,9.6-73.9,20.5c-19.9,9.4-38.4,21.6-54.8,36.2c-16.4,14.6-30.7,31.6-42.2,50.3c-12.7,20.8-22.2,43.5-27.4,67.3\r\n\tc-4.2,19-6.2,38.6-5.2,58.1c0.9,18.9,3.8,37.8,9.5,55.9c3.6,11.5,7.9,22.7,13.3,33.6c5.3,10.7,11.5,21,18.4,30.7\r\n\tc13.8,19.3,30.6,36.4,49.8,50.5c19.6,14.5,41.7,25.7,64.9,33.1c24.2,7.7,49.9,11.3,75.3,10.4c24.8-0.8,49.4-5.6,72.6-14.5\r\n\tc22.3-8.6,43.2-20.9,61.5-36.3c9.2-7.8,17.4-16.6,25.1-25.9c7.8-9.4,14.8-19.3,20.6-30c5-9.2,9.2-18.8,12.8-28.5\r\n\tc1.8-4.8,3.5-9.6,4.9-14.6c1.5-5.3,2.6-10.8,3.6-16.2c1.5-8.5,2.1-17.3,1.3-25.9c-0.7,3.8-1.3,7.5-2.2,11.2\r\n\tc-1.1,4.3-2.5,8.5-4.1,12.6c-3.2,8.7-7.2,17.1-11,25.5c-4.9,10.7-10.6,20.9-16.8,30.8c-3.2,5.1-6.5,10.1-10.1,14.9\r\n\tc-3.6,4.8-7.7,9.4-11.8,13.9c-8.2,9.1-17.1,17.2-27,24.4c-10.1,7.4-20.8,13.9-32.1,19.3c-22.6,11-47.3,17.6-72.3,19.8\r\n\tc-25.6,2.2-51.7-0.3-76.3-7.6c-23.4-6.9-45.6-18.1-65.1-32.8c-18.9-14.3-35.3-31.9-48.2-51.8C75.4,347.8,66.1,324.9,61,301\r\n\tc-1.3-6.2-2.3-12.6-3-18.9c-0.6-5.4-1.1-10.9-1.3-16.4c-0.3-11.3,0.4-23,2.1-34.2c3.7-24.6,11.7-48.3,24.1-69.9\r\n\tc11-19.3,25.3-36.7,42.1-51.4c16.8-14.8,36-26.7,56.8-35.1c12-4.9,24.6-8.5,37.4-10.9c6.5-1.2,13-2.2,19.5-2.7\r\n\tc3.2-0.3,6.3-0.3,9.5-0.6c1.3,0,2.6,0.1,3.9,0.1c21.7-0.4,43.5,2.4,64.2,8.9c22.3,7,43.3,18.3,61.5,33c19.1,15.4,35,34.4,47,55.8\r\n\tc10.2,18.2,17.5,37.8,21.9,58.2c1,4.7,1.8,9.4,2.6,14.1c0.7,4.3,3.1,8.3,6.8,10.7c7.8,5.2,18.7,1.7,22.5-6.7\r\n\tC479.9,232.1,480.3,229,479.8,226.1z"},"children":[]}]};exports.loadC=loadC;var loadD={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M432,240h-80c-8.8,0-16,7.2-16,16s7.2,16,16,16h80c8.8,0,16-7.2,16-16S440.8,240,432,240z"},"children":[{"name":"path","attribs":{"d":"M432,240h-80c-8.8,0-16,7.2-16,16s7.2,16,16,16h80c8.8,0,16-7.2,16-16S440.8,240,432,240z"},"children":[]}]},{"name":"path","attribs":{"d":"M176,256c0-8.8-7.2-16-16-16H80c-8.8,0-16,7.2-16,16s7.2,16,16,16h80C168.8,272,176,264.8,176,256z"},"children":[{"name":"path","attribs":{"d":"M176,256c0-8.8-7.2-16-16-16H80c-8.8,0-16,7.2-16,16s7.2,16,16,16h80C168.8,272,176,264.8,176,256z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,336c-8.8,0-16,7.2-16,16v80c0,8.8,7.2,16,16,16s16-7.2,16-16v-80C272,343.2,264.8,336,256,336z"},"children":[{"name":"path","attribs":{"d":"M256,336c-8.8,0-16,7.2-16,16v80c0,8.8,7.2,16,16,16s16-7.2,16-16v-80C272,343.2,264.8,336,256,336z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,64c-8.8,0-16,7.2-16,16v80c0,8.8,7.2,16,16,16s16-7.2,16-16V80C272,71.2,264.8,64,256,64z"},"children":[{"name":"path","attribs":{"d":"M256,64c-8.8,0-16,7.2-16,16v80c0,8.8,7.2,16,16,16s16-7.2,16-16V80C272,71.2,264.8,64,256,64z"},"children":[]}]},{"name":"path","attribs":{"d":"M325.3,216c4.4,7.7,14.2,10.3,21.9,5.9l69.3-40c7.7-4.4,10.3-14.2,5.9-21.9s-14.2-10.3-21.9-5.9l-69.3,40\r\n\t\tC323.5,198.6,320.9,208.3,325.3,216z"},"children":[{"name":"path","attribs":{"d":"M325.3,216c4.4,7.7,14.2,10.3,21.9,5.9l69.3-40c7.7-4.4,10.3-14.2,5.9-21.9s-14.2-10.3-21.9-5.9l-69.3,40\r\n\t\tC323.5,198.6,320.9,208.3,325.3,216z"},"children":[]}]},{"name":"path","attribs":{"d":"M186.7,296c-4.4-7.7-14.2-10.3-21.9-5.9l-69.3,40c-7.7,4.4-10.3,14.2-5.9,21.9s14.2,10.3,21.9,5.9l69.3-40\r\n\t\tC188.5,313.4,191.1,303.7,186.7,296z"},"children":[{"name":"path","attribs":{"d":"M186.7,296c-4.4-7.7-14.2-10.3-21.9-5.9l-69.3,40c-7.7,4.4-10.3,14.2-5.9,21.9s14.2,10.3,21.9,5.9l69.3-40\r\n\t\tC188.5,313.4,191.1,303.7,186.7,296z"},"children":[]}]},{"name":"path","attribs":{"d":"M317.9,331.1c-4.4-7.7-14.2-10.3-21.9-5.9s-10.3,14.2-5.9,21.9l40,69.3c4.4,7.7,14.2,10.3,21.9,5.9\r\n\t\tc7.7-4.4,10.3-14.2,5.9-21.9L317.9,331.1z"},"children":[{"name":"path","attribs":{"d":"M317.9,331.1c-4.4-7.7-14.2-10.3-21.9-5.9s-10.3,14.2-5.9,21.9l40,69.3c4.4,7.7,14.2,10.3,21.9,5.9\r\n\t\tc7.7-4.4,10.3-14.2,5.9-21.9L317.9,331.1z"},"children":[]}]},{"name":"path","attribs":{"d":"M181.9,95.6c-4.4-7.7-14.2-10.3-21.9-5.9c-7.7,4.4-10.3,14.2-5.9,21.9l40,69.3c4.4,7.7,14.2,10.3,21.9,5.9\r\n\t\ts10.3-14.2,5.9-21.9L181.9,95.6z"},"children":[{"name":"path","attribs":{"d":"M181.9,95.6c-4.4-7.7-14.2-10.3-21.9-5.9c-7.7,4.4-10.3,14.2-5.9,21.9l40,69.3c4.4,7.7,14.2,10.3,21.9,5.9\r\n\t\ts10.3-14.2,5.9-21.9L181.9,95.6z"},"children":[]}]},{"name":"path","attribs":{"d":"M296,186.7c7.7,4.4,17.4,1.8,21.9-5.9l40-69.3c4.4-7.7,1.8-17.4-5.9-21.9c-7.7-4.4-17.4-1.8-21.9,5.9l-40,69.3\r\n\t\tC285.7,172.5,288.3,182.3,296,186.7z"},"children":[{"name":"path","attribs":{"d":"M296,186.7c7.7,4.4,17.4,1.8,21.9-5.9l40-69.3c4.4-7.7,1.8-17.4-5.9-21.9c-7.7-4.4-17.4-1.8-21.9,5.9l-40,69.3\r\n\t\tC285.7,172.5,288.3,182.3,296,186.7z"},"children":[]}]},{"name":"path","attribs":{"d":"M216,325.3c-7.7-4.4-17.4-1.8-21.9,5.9l-40,69.3c-4.4,7.7-1.8,17.4,5.9,21.9c7.7,4.4,17.4,1.8,21.9-5.9l40-69.3\r\n\t\tC226.3,339.5,223.7,329.7,216,325.3z"},"children":[{"name":"path","attribs":{"d":"M216,325.3c-7.7-4.4-17.4-1.8-21.9,5.9l-40,69.3c-4.4,7.7-1.8,17.4,5.9,21.9c7.7,4.4,17.4,1.8,21.9-5.9l40-69.3\r\n\t\tC226.3,339.5,223.7,329.7,216,325.3z"},"children":[]}]},{"name":"path","attribs":{"d":"M416.4,330.1l-69.3-40c-7.7-4.4-17.4-1.8-21.9,5.9c-4.4,7.7-1.8,17.4,5.9,21.9l69.3,40c7.7,4.4,17.4,1.8,21.9-5.9\r\n\t\tC426.7,344.3,424.1,334.6,416.4,330.1z"},"children":[{"name":"path","attribs":{"d":"M416.4,330.1l-69.3-40c-7.7-4.4-17.4-1.8-21.9,5.9c-4.4,7.7-1.8,17.4,5.9,21.9l69.3,40c7.7,4.4,17.4,1.8,21.9-5.9\r\n\t\tC426.7,344.3,424.1,334.6,416.4,330.1z"},"children":[]}]},{"name":"path","attribs":{"d":"M95.6,181.9l69.3,40c7.7,4.4,17.4,1.8,21.9-5.9s1.8-17.4-5.9-21.9l-69.3-40c-7.7-4.4-17.4-1.8-21.9,5.9\r\n\t\tC85.3,167.7,87.9,177.4,95.6,181.9z"},"children":[{"name":"path","attribs":{"d":"M95.6,181.9l69.3,40c7.7,4.4,17.4,1.8,21.9-5.9s1.8-17.4-5.9-21.9l-69.3-40c-7.7-4.4-17.4-1.8-21.9,5.9\r\n\t\tC85.3,167.7,87.9,177.4,95.6,181.9z"},"children":[]}]}]}]};exports.loadD=loadD;var location={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,64c-65.9,0-119.3,53.7-119.3,120c0,114.6,119.3,264,119.3,264s119.3-149.4,119.3-264C375.3,117.7,321.9,64,256,64z\r\n\t\t M256,242.2c-31.2,0-56.4-25.4-56.4-56.7c0-31.3,25.3-56.8,56.4-56.8c31.2,0,56.4,25.4,56.4,56.8\r\n\t\tC312.4,216.8,287.2,242.2,256,242.2z"},"children":[{"name":"path","attribs":{"d":"M256,64c-65.9,0-119.3,53.7-119.3,120c0,114.6,119.3,264,119.3,264s119.3-149.4,119.3-264C375.3,117.7,321.9,64,256,64z\r\n\t\t M256,242.2c-31.2,0-56.4-25.4-56.4-56.7c0-31.3,25.3-56.8,56.4-56.8c31.2,0,56.4,25.4,56.4,56.8\r\n\t\tC312.4,216.8,287.2,242.2,256,242.2z"},"children":[]}]}]}]};exports.location=location;var lockCombination={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M384,176.905V128C384,57.308,326.692,0,256,0S128,57.308,128,128v48.906C88.725,212.062,64,263.141,64,320\r\n\t\tc0,106.039,85.962,192,192,192c106.039,0,192-85.961,192-192C448,263.141,423.275,212.062,384,176.905z M160,128\r\n\t\tc0-52.935,43.065-96,96-96s96,43.065,96,96v25.692C323.759,137.355,290.973,128,256,128s-67.759,9.355-96,25.693V128z M256,480\r\n\t\tc-88.366,0-160-71.634-160-160s71.634-160,160-160s160,71.634,160,160S344.366,480,256,480z"},"children":[{"name":"path","attribs":{"d":"M384,176.905V128C384,57.308,326.692,0,256,0S128,57.308,128,128v48.906C88.725,212.062,64,263.141,64,320\r\n\t\tc0,106.039,85.962,192,192,192c106.039,0,192-85.961,192-192C448,263.141,423.275,212.062,384,176.905z M160,128\r\n\t\tc0-52.935,43.065-96,96-96s96,43.065,96,96v25.692C323.759,137.355,290.973,128,256,128s-67.759,9.355-96,25.693V128z M256,480\r\n\t\tc-88.366,0-160-71.634-160-160s71.634-160,160-160s160,71.634,160,160S344.366,480,256,480z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,176c-79.529,0-144,64.472-144,144s64.471,144,144,144s144-64.472,144-144S335.529,176,256,176z M378.533,353.487\r\n\t\tl-24.12-7.896l-3.926,12.19l24.161,7.912c-3.661,9.776-8.462,18.965-14.252,27.409l-10.56-7.737l-3.74,5.184l10.555,7.734\r\n\t\tc-6.129,8.047-13.189,15.324-21.028,21.682l-14.982-20.787l-10.284,7.532l14.976,20.776c-8.479,5.556-17.657,10.12-27.398,13.532\r\n\t\tl-3.96-12.294l-6.049,1.982l4.924,12.262C283.335,445.77,273,447.497,264,448v-12.659V429h-16v6.341V448\r\n\t\tc-11-0.506-19.705-2.244-29.243-5.065l3.948-11.206l-6.25-2.106l-3.539,11.224c-9.557-3.393-18.531-7.895-26.864-13.359\r\n\t\tl14.997-20.774l-10.27-7.534l-14.977,20.787c-7.809-6.333-14.841-13.575-20.953-21.583l9.556-6.998l-3.971-5.507l-9.562,7\r\n\t\tc-5.718-8.381-10.469-17.497-14.093-27.186l24.162-7.914l-3.926-12.188l-24.121,7.897c-2.49-9.431-3.954-18.488-4.258-29.487H134\r\n\t\tv-6.805l-5.993-0.002c0.223-10.606,0.672-20.88,3.266-30.682l24.921,7.9l4.347-12.188l-23.966-7.914\r\n\t\tc3.585-9.57,8.36-18.583,13.985-26.879l10.339,7.533l3.759-5.184l-10.292-7.545c6.221-8.253,13.424-15.707,21.434-22.197\r\n\t\tl14.984,20.787l10.284-7.536l-14.975-20.774c8.405-5.514,17.512-10.05,27.16-13.449l3.955,12.247l6.044-1.98l-4.62-12.231\r\n\t\tC228.21,194.258,237,192.508,248,192v12.66V211h16v-6.34V192c9,0.498,19.159,2.198,28.585,4.951l-4.761,13.28l6.182,2.106\r\n\t\tl4.174-13.312c9.696,3.408,18.778,7.957,27.208,13.491l-15.002,20.775l10.267,7.535l14.975-20.787\r\n\t\tc7.935,6.432,15.069,13.812,21.255,21.977l-11.299,8.268l3.975,5.512l11.276-8.26c5.595,8.271,10.247,17.243,13.816,26.775\r\n\t\tl-24.165,7.914l3.928,12.188l24.12-7.9c2.586,9.802,5.251,20.075,5.47,30.683L376,317.192V324h6.789\r\n\t\tC382.486,334.999,381.02,344.057,378.533,353.487z"},"children":[{"name":"path","attribs":{"d":"M256,176c-79.529,0-144,64.472-144,144s64.471,144,144,144s144-64.472,144-144S335.529,176,256,176z M378.533,353.487\r\n\t\tl-24.12-7.896l-3.926,12.19l24.161,7.912c-3.661,9.776-8.462,18.965-14.252,27.409l-10.56-7.737l-3.74,5.184l10.555,7.734\r\n\t\tc-6.129,8.047-13.189,15.324-21.028,21.682l-14.982-20.787l-10.284,7.532l14.976,20.776c-8.479,5.556-17.657,10.12-27.398,13.532\r\n\t\tl-3.96-12.294l-6.049,1.982l4.924,12.262C283.335,445.77,273,447.497,264,448v-12.659V429h-16v6.341V448\r\n\t\tc-11-0.506-19.705-2.244-29.243-5.065l3.948-11.206l-6.25-2.106l-3.539,11.224c-9.557-3.393-18.531-7.895-26.864-13.359\r\n\t\tl14.997-20.774l-10.27-7.534l-14.977,20.787c-7.809-6.333-14.841-13.575-20.953-21.583l9.556-6.998l-3.971-5.507l-9.562,7\r\n\t\tc-5.718-8.381-10.469-17.497-14.093-27.186l24.162-7.914l-3.926-12.188l-24.121,7.897c-2.49-9.431-3.954-18.488-4.258-29.487H134\r\n\t\tv-6.805l-5.993-0.002c0.223-10.606,0.672-20.88,3.266-30.682l24.921,7.9l4.347-12.188l-23.966-7.914\r\n\t\tc3.585-9.57,8.36-18.583,13.985-26.879l10.339,7.533l3.759-5.184l-10.292-7.545c6.221-8.253,13.424-15.707,21.434-22.197\r\n\t\tl14.984,20.787l10.284-7.536l-14.975-20.774c8.405-5.514,17.512-10.05,27.16-13.449l3.955,12.247l6.044-1.98l-4.62-12.231\r\n\t\tC228.21,194.258,237,192.508,248,192v12.66V211h16v-6.34V192c9,0.498,19.159,2.198,28.585,4.951l-4.761,13.28l6.182,2.106\r\n\t\tl4.174-13.312c9.696,3.408,18.778,7.957,27.208,13.491l-15.002,20.775l10.267,7.535l14.975-20.787\r\n\t\tc7.935,6.432,15.069,13.812,21.255,21.977l-11.299,8.268l3.975,5.512l11.276-8.26c5.595,8.271,10.247,17.243,13.816,26.775\r\n\t\tl-24.165,7.914l3.928,12.188l24.12-7.9c2.586,9.802,5.251,20.075,5.47,30.683L376,317.192V324h6.789\r\n\t\tC382.486,334.999,381.02,344.057,378.533,353.487z"},"children":[]}]},{"name":"circle","attribs":{"cx":"256","cy":"320","r":"81"},"children":[{"name":"circle","attribs":{"cx":"256","cy":"320","r":"81"},"children":[]}]}]}]};exports.lockCombination=lockCombination;var locked={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M86.4,480h339.2c12.3,0,22.4-9.9,22.4-22.1V246c0-12.2-10-22-22.4-22H404v-30.9c0-41.5-16.2-87.6-42.6-115.4\r\n\tC335.1,49.9,297.4,32,256.1,32c-0.1,0-0.1,0-0.1,0c0,0-0.1,0-0.1,0c-41.3,0-79,17.9-105.3,45.6c-26.4,27.8-42.6,73.9-42.6,115.4V224\r\n\tH89h-2.6C74,224,64,233.9,64,246v211.9C64,470.1,74,480,86.4,480z M161,193.1c0-27.3,9.9-61.1,28.1-80.3l0,0l0-0.3\r\n\tC206.7,93.9,231,83,255.9,83h0.1h0.1c24.9,0,49.2,10.9,66.8,29.5l0,0.2l-0.1,0.1c18.3,19.2,28.1,53,28.1,80.3V224h-17.5h-155H161\r\n\tV193.1z"},"children":[]}]};exports.locked=locked;var logIn={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M255.988,32C160.473,32,78.934,91.804,46.727,176h34.639c9.396-20.484,22.457-39.35,38.868-55.762\r\n\t\tC156.497,83.973,204.709,64,255.988,64c51.286,0,99.504,19.973,135.771,56.239C428.027,156.505,448,204.719,448,256\r\n\t\tc0,51.285-19.973,99.501-56.239,135.765C355.494,428.029,307.275,448,255.988,448c-51.281,0-99.493-19.971-135.755-56.234\r\n\t\tC103.821,375.354,90.76,356.486,81.362,336H46.725c32.206,84.201,113.746,144,209.264,144C379.703,480,480,379.715,480,256\r\n\t\tC480,132.298,379.703,32,255.988,32z"},"children":[{"name":"path","attribs":{"d":"M255.988,32C160.473,32,78.934,91.804,46.727,176h34.639c9.396-20.484,22.457-39.35,38.868-55.762\r\n\t\tC156.497,83.973,204.709,64,255.988,64c51.286,0,99.504,19.973,135.771,56.239C428.027,156.505,448,204.719,448,256\r\n\t\tc0,51.285-19.973,99.501-56.239,135.765C355.494,428.029,307.275,448,255.988,448c-51.281,0-99.493-19.971-135.755-56.234\r\n\t\tC103.821,375.354,90.76,356.486,81.362,336H46.725c32.206,84.201,113.746,144,209.264,144C379.703,480,480,379.715,480,256\r\n\t\tC480,132.298,379.703,32,255.988,32z"},"children":[]}]},{"name":"polygon","attribs":{"points":"206.863,323.883 229.49,346.51 320,256 229.49,165.49 206.862,188.118 258.745,240 32,240 32,272 258.745,272 \t"},"children":[{"name":"polygon","attribs":{"points":"206.863,323.883 229.49,346.51 320,256 229.49,165.49 206.862,188.118 258.745,240 32,240 32,272 258.745,272 \t"},"children":[]}]}]}]};exports.logIn=logIn;var logOut={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"366.863,323.883 389.49,346.51 480,256 389.49,165.49 366.862,188.118 418.745,240 192,240 192,272 418.745,272 \t\r\n\t\t"},"children":[{"name":"polygon","attribs":{"points":"366.863,323.883 389.49,346.51 480,256 389.49,165.49 366.862,188.118 418.745,240 192,240 192,272 418.745,272 \t\r\n\t\t"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M391.491,391.766C355.229,428.029,307.018,448,255.736,448c-51.287,0-99.506-19.971-135.772-56.235\r\n\t\t\tC83.697,355.501,64,307.285,64,256c0-51.281,19.697-99.495,55.965-135.761C156.232,83.973,204.45,64,255.736,64\r\n\t\t\tc51.279,0,99.491,19.973,135.755,56.238c2.527,2.528,4.966,5.121,7.333,7.762h40.731c-40.474-58.028-107.709-96-183.819-96\r\n\t\t\tC132.021,32,32,132.298,32,256c0,123.715,100.021,224,223.736,224c76.112,0,143.35-37.97,183.822-96h-40.73\r\n\t\t\tC396.46,386.643,394.021,389.236,391.491,391.766z"},"children":[{"name":"path","attribs":{"d":"M391.491,391.766C355.229,428.029,307.018,448,255.736,448c-51.287,0-99.506-19.971-135.772-56.235\r\n\t\t\tC83.697,355.501,64,307.285,64,256c0-51.281,19.697-99.495,55.965-135.761C156.232,83.973,204.45,64,255.736,64\r\n\t\t\tc51.279,0,99.491,19.973,135.755,56.238c2.527,2.528,4.966,5.121,7.333,7.762h40.731c-40.474-58.028-107.709-96-183.819-96\r\n\t\t\tC132.021,32,32,132.298,32,256c0,123.715,100.021,224,223.736,224c76.112,0,143.35-37.97,183.822-96h-40.73\r\n\t\t\tC396.46,386.643,394.021,389.236,391.491,391.766z"},"children":[]}]}]}]}]}]};exports.logOut=logOut;var loop={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M273.4,300.5l-0.3,58c48.9-8.2,86.3-51,86.3-102.5c0-15.9-3.6-31-10-44.5c-2.8-5.8-6-11.3-9.8-16.5l47.1-43.5\r\n\t\tc1.1,1.3,2.1,2.7,3.1,4c20.9,28,33.2,62.8,33.2,100.5c0,1.2,0,2.5,0,3.7c-1.5,71.5-47.6,132-111.4,154.6\r\n\t\tc-12.3,4.3-25.2,7.3-38.5,8.7l-0.1,57l-76.2-67L170.6,390l44.4-38.7L273.4,300.5z"},"children":[{"name":"path","attribs":{"d":"M273.4,300.5l-0.3,58c48.9-8.2,86.3-51,86.3-102.5c0-15.9-3.6-31-10-44.5c-2.8-5.8-6-11.3-9.8-16.5l47.1-43.5\r\n\t\tc1.1,1.3,2.1,2.7,3.1,4c20.9,28,33.2,62.8,33.2,100.5c0,1.2,0,2.5,0,3.7c-1.5,71.5-47.6,132-111.4,154.6\r\n\t\tc-12.3,4.3-25.2,7.3-38.5,8.7l-0.1,57l-76.2-67L170.6,390l44.4-38.7L273.4,300.5z"},"children":[]}]},{"name":"path","attribs":{"d":"M89,252.3c1.6-72.1,48.3-133,112.9-155.2c11.7-4,24-6.8,36.8-8.1l0.1-57l76.1,66.9l26.2,23.1l-44.3,38.6l-58.4,50.9\r\n\t\tl0.2-57.9c-48.8,8.3-86,51.1-86,102.4c0,16,3.6,31.1,10.1,44.7c2.7,5.8,6,11.2,9.7,16.3l-47,43.6c-1.3-1.6-2.6-3.3-3.8-5\r\n\t\tC101.1,327.7,89,293.3,89,256C89,254.8,89,253.5,89,252.3z"},"children":[{"name":"path","attribs":{"d":"M89,252.3c1.6-72.1,48.3-133,112.9-155.2c11.7-4,24-6.8,36.8-8.1l0.1-57l76.1,66.9l26.2,23.1l-44.3,38.6l-58.4,50.9\r\n\t\tl0.2-57.9c-48.8,8.3-86,51.1-86,102.4c0,16,3.6,31.1,10.1,44.7c2.7,5.8,6,11.2,9.7,16.3l-47,43.6c-1.3-1.6-2.6-3.3-3.8-5\r\n\t\tC101.1,327.7,89,293.3,89,256C89,254.8,89,253.5,89,252.3z"},"children":[]}]}]}]};exports.loop=loop;var magnet={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,32C141,32.5,64,109.6,64,231.8c0,48.8,2.1,76.8,14.5,127.8c15.9,65.7,39.1,113.3,39.1,113.3l0.6,1.3\r\n\tc1.9,3.4,5.5,5.8,9.8,5.8c1.4,0,2.7-0.2,4-0.7l1.7-0.8l50.3-20.7l1.8-0.8c3.3-1.9,5.5-5.3,5.5-9.3c-0.2-1.4-0.4-2.8-1-4\r\n\tc-0.1-0.1-0.1-0.2-0.2-0.4c-7-16-27.2-59.2-37-101.1c-9.9-41.9-13.5-62.4-13.5-107.7C139.6,163.4,192,112,256,112\r\n\tc64,0,116.4,51.4,116.4,122.5c0,45.3-3.7,65.8-13.6,107.7c-9.9,41.9-30,85.2-37,101.1c-0.1,0.2-0.1,0.3-0.2,0.4\r\n\tc-0.6,1.2-0.8,2.6-1,4c0,4,2.2,7.4,5.5,9.3l1.8,0.8l50.3,20.7l1.7,0.8c1.3,0.5,2.6,0.7,4,0.7c4.3,0,7.9-2.4,9.8-5.8l0.6-1.3\r\n\tc0,0,23.2-47.6,39.1-113.3c12.4-51,14.5-79,14.5-127.8C448,109.6,371,32.5,256,32z M173,444.2c0.1,0.2,0.2,0.5,0.3,0.7l-42.8,17.6\r\n\tc-5.4-11.8-22.7-51-35.7-104.4l42.5-12.3C146.5,385,164.4,425,173,444.2z M381.4,462.5l-42.8-17.6c0.1-0.2,0.2-0.4,0.3-0.7\r\n\tc8.6-19.2,26.4-59.2,35.6-98.4l42.5,12.3C404.1,411.5,386.8,450.7,381.4,462.5z"},"children":[]}]};exports.magnet=magnet;var male={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M480,192V32H320l63,63l-68.7,68.7C284.8,141.3,247.9,128,208,128c-97.2,0-176,78.8-176,176s78.8,176,176,176\r\n\ts176-78.8,176-176c0-39.9-13.3-76.8-35.7-106.3L417,129L480,192z M298.5,394.5C274.3,418.7,242.2,432,208,432s-66.3-13.3-90.5-37.5\r\n\tC93.3,370.3,80,338.2,80,304s13.3-66.3,37.5-90.5c24.2-24.2,56.3-37.5,90.5-37.5s66.3,13.3,90.5,37.5S336,269.8,336,304\r\n\tS322.7,370.3,298.5,394.5z"},"children":[]}]};exports.male=male;var man={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,106.6c20.6,0.1,37.3-16.6,37.3-37.3c0-20.6-16.7-37.3-37.3-37.3c-20.6,0-37.3,16.7-37.3,37.3\r\n\tC218.7,89.9,235.4,106.6,256,106.6z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M293.4,115H256h-37.4c-28.2,0-46.6,24.8-46.6,48.4V277c0,22,31,22,31,0V172h6v285.6c0,30.4,42,29.4,43,0V293h7h1v164.7\r\n\t\tc1.7,31.2,43,28.2,43-0.1V172h5v105c0,22,32,22,32,0V163.4C340,139.9,321.5,115,293.4,115z"},"children":[{"name":"path","attribs":{"d":"M293.4,115H256h-37.4c-28.2,0-46.6,24.8-46.6,48.4V277c0,22,31,22,31,0V172h6v285.6c0,30.4,42,29.4,43,0V293h7h1v164.7\r\n\t\tc1.7,31.2,43,28.2,43-0.1V172h5v105c0,22,32,22,32,0V163.4C340,139.9,321.5,115,293.4,115z"},"children":[]}]}]}]};exports.man=man;var map={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M473.152,136.58L368.594,66.307c-4.644-3.076-10.365-3.076-15.031,0l-97.094,65.195l-97.109-65.195\r\n\t\tc-4.643-3.076-10.444-3.076-15.062,0L39.344,136.58c-4.399,2.949-7.344,8.272-7.344,14.05V431.6c0,5.904,3.07,11.347,7.663,14.271\r\n\t\tc4.62,2.877,10.382,2.829,14.904-0.223l97.188-65.197l97.181,65.197c4.666,3.1,10.44,3.1,15.084,0l97.158-65.197l97.151,65.197\r\n\t\tc2.311,1.55,4.912,2.353,7.538,2.353c2.455,0,4.709-0.747,6.969-2.13c4.594-2.924,7.165-8.366,7.165-14.271v-280.97\r\n\t\tC480,144.852,477.575,139.529,473.152,136.58z M135,353.248l-71,49.404v-241.75l71-49.428V353.248z M167,352.766v-122.7\r\n\t\tc1.167,0.756,2.31,1.526,3.389,2.301l9.333-12.996c-3.904-2.804-8.292-5.501-12.722-7.705V110.992l73,48.992v108.574\r\n\t\tc-5.372-1.855-10.586-4.37-15.893-7.682l-8.471,13.574c6.848,4.273,13.621,7.467,20.704,9.765l3.66-11.286v128.806L167,352.766z\r\n\t\t M272,401.734V288.369c0.349-0.021,0.693-0.03,1.043-0.054c2.91-0.198,5.777-0.517,8.518-0.946l-2.479-15.807\r\n\t\tc-2.268,0.355-4.65,0.619-7.082,0.786V159.984l73-48.992V229.78l-4.844-4.372c-2.997,3.319-5.833,6.575-8.575,9.725\r\n\t\tc-1.806,2.073-3.578,4.108-5.339,6.095l11.974,10.613c1.791-2.021,3.595-4.091,5.431-6.2c0.443-0.509,0.905-1.035,1.354-1.549\r\n\t\tv108.675L272,401.734z M448,401.652l-71-48.438v-136.91c3.785-1.715,7.679-2.992,11.639-3.792l-3.166-15.683\r\n\t\tc-2.858,0.577-5.687,1.339-8.473,2.281v-87.671l71,48.461V401.652z"},"children":[{"name":"path","attribs":{"d":"M473.152,136.58L368.594,66.307c-4.644-3.076-10.365-3.076-15.031,0l-97.094,65.195l-97.109-65.195\r\n\t\tc-4.643-3.076-10.444-3.076-15.062,0L39.344,136.58c-4.399,2.949-7.344,8.272-7.344,14.05V431.6c0,5.904,3.07,11.347,7.663,14.271\r\n\t\tc4.62,2.877,10.382,2.829,14.904-0.223l97.188-65.197l97.181,65.197c4.666,3.1,10.44,3.1,15.084,0l97.158-65.197l97.151,65.197\r\n\t\tc2.311,1.55,4.912,2.353,7.538,2.353c2.455,0,4.709-0.747,6.969-2.13c4.594-2.924,7.165-8.366,7.165-14.271v-280.97\r\n\t\tC480,144.852,477.575,139.529,473.152,136.58z M135,353.248l-71,49.404v-241.75l71-49.428V353.248z M167,352.766v-122.7\r\n\t\tc1.167,0.756,2.31,1.526,3.389,2.301l9.333-12.996c-3.904-2.804-8.292-5.501-12.722-7.705V110.992l73,48.992v108.574\r\n\t\tc-5.372-1.855-10.586-4.37-15.893-7.682l-8.471,13.574c6.848,4.273,13.621,7.467,20.704,9.765l3.66-11.286v128.806L167,352.766z\r\n\t\t M272,401.734V288.369c0.349-0.021,0.693-0.03,1.043-0.054c2.91-0.198,5.777-0.517,8.518-0.946l-2.479-15.807\r\n\t\tc-2.268,0.355-4.65,0.619-7.082,0.786V159.984l73-48.992V229.78l-4.844-4.372c-2.997,3.319-5.833,6.575-8.575,9.725\r\n\t\tc-1.806,2.073-3.578,4.108-5.339,6.095l11.974,10.613c1.791-2.021,3.595-4.091,5.431-6.2c0.443-0.509,0.905-1.035,1.354-1.549\r\n\t\tv108.675L272,401.734z M448,401.652l-71-48.438v-136.91c3.785-1.715,7.679-2.992,11.639-3.792l-3.166-15.683\r\n\t\tc-2.858,0.577-5.687,1.339-8.473,2.281v-87.671l71,48.461V401.652z"},"children":[]}]},{"name":"path","attribs":{"d":"M129.285,221.111c2.218-1.195-1.353-1.071,1.012-1.837l-4.928-15.222c-3.282,1.062-6.502,2.439-9.571,4.093\r\n\t\tc-3.824,2.062-7.745,4.916-11.339,8.253l10.888,11.724C117.963,225.694,126.639,222.538,129.285,221.111z"},"children":[{"name":"path","attribs":{"d":"M129.285,221.111c2.218-1.195-1.353-1.071,1.012-1.837l-4.928-15.222c-3.282,1.062-6.502,2.439-9.571,4.093\r\n\t\tc-3.824,2.062-7.745,4.916-11.339,8.253l10.888,11.724C117.963,225.694,126.639,222.538,129.285,221.111z"},"children":[]}]},{"name":"path","attribs":{"d":"M296.802,266.127l6.985,14.395c6.596-3.201,12.842-7.445,19.095-12.974l-10.599-11.987\r\n\t\tC307.135,260.113,302.071,263.569,296.802,266.127z"},"children":[{"name":"path","attribs":{"d":"M296.802,266.127l6.985,14.395c6.596-3.201,12.842-7.445,19.095-12.974l-10.599-11.987\r\n\t\tC307.135,260.113,302.071,263.569,296.802,266.127z"},"children":[]}]},{"name":"path","attribs":{"d":"M99.364,256.006c1.893-5.926,3.528-11.044,7.129-16.304l-13.204-9.037c-4.924,7.194-7.081,13.944-9.167,20.471\r\n\t\tl-0.242,0.758l15.238,4.879L99.364,256.006z"},"children":[{"name":"path","attribs":{"d":"M99.364,256.006c1.893-5.926,3.528-11.044,7.129-16.304l-13.204-9.037c-4.924,7.194-7.081,13.944-9.167,20.471\r\n\t\tl-0.242,0.758l15.238,4.879L99.364,256.006z"},"children":[]}]},{"name":"path","attribs":{"d":"M198.311,237.753c-1.007-1.204-2.014-2.408-3.032-3.603l-12.178,10.379c0.986,1.156,1.961,2.322,2.936,3.488\r\n\t\tc3.593,4.296,7.308,8.739,11.61,12.809l10.996-11.624C205.02,245.775,201.761,241.878,198.311,237.753z"},"children":[{"name":"path","attribs":{"d":"M198.311,237.753c-1.007-1.204-2.014-2.408-3.032-3.603l-12.178,10.379c0.986,1.156,1.961,2.322,2.936,3.488\r\n\t\tc3.593,4.296,7.308,8.739,11.61,12.809l10.996-11.624C205.02,245.775,201.761,241.878,198.311,237.753z"},"children":[]}]},{"name":"polygon","attribs":{"points":"408.156,229.657 418.5,219.314 428.844,229.657 440.156,218.342 429.814,208 440.156,197.657 428.844,186.342 \r\n\t\t418.5,196.685 408.156,186.342 396.844,197.657 407.186,208 396.844,218.342 \t"},"children":[{"name":"polygon","attribs":{"points":"408.156,229.657 418.5,219.314 428.844,229.657 440.156,218.342 429.814,208 440.156,197.657 428.844,186.342 \r\n\t\t418.5,196.685 408.156,186.342 396.844,197.657 407.186,208 396.844,218.342 \t"},"children":[]}]}]}]};exports.map=map;var medkit={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M472.2,144H352v-30.7C351,85.1,330.3,64,300.8,64H256h-44.8c-29.4,0-50.2,21.1-51.2,49.3V144H39.8c-4.4,0-7.8,3.6-7.8,8\r\n\t\tv288c0,4.4,3.3,8,7.8,8h432.5c4.4,0,7.8-3.6,7.8-8V152C480,147.6,476.7,144,472.2,144z M192,117.2c0-0.4,0-0.7,0-1s0-0.6,0-1\r\n\t\tc0-9.7,8.6-19.3,18.8-19.3H256h45.2c10.1,0,18.8,9.5,18.8,19.3c0,0.3,0,0.6,0,1s0,0.6,0,1V144H192V117.2z M352,320h-64v64h-64v-64\r\n\t\th-64v-64h64v-64h64v64h64V320z"},"children":[{"name":"path","attribs":{"d":"M472.2,144H352v-30.7C351,85.1,330.3,64,300.8,64H256h-44.8c-29.4,0-50.2,21.1-51.2,49.3V144H39.8c-4.4,0-7.8,3.6-7.8,8\r\n\t\tv288c0,4.4,3.3,8,7.8,8h432.5c4.4,0,7.8-3.6,7.8-8V152C480,147.6,476.7,144,472.2,144z M192,117.2c0-0.4,0-0.7,0-1s0-0.6,0-1\r\n\t\tc0-9.7,8.6-19.3,18.8-19.3H256h45.2c10.1,0,18.8,9.5,18.8,19.3c0,0.3,0,0.6,0,1s0,0.6,0,1V144H192V117.2z M352,320h-64v64h-64v-64\r\n\t\th-64v-64h64v-64h64v64h64V320z"},"children":[]}]}]}]};exports.medkit=medkit;var merge={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M384,224c-23.637,0-44.307,12.89-55.391,32H319c-42.464,0-79.99-17.904-111.535-53.214\r\n\tc-20.356-22.787-33.493-48.869-37.856-58.218C183.301,132.822,192,115.413,192,96c0-35.29-28.71-64-64-64S64,60.71,64,96\r\n\tc0,23.637,12.89,44.307,32,55.391v209.219C76.89,371.693,64,392.363,64,416c0,35.29,28.71,64,64,64s64-28.71,64-64\r\n\tc0-23.637-12.89-44.307-32-55.391V245.692C203.553,294.307,258.468,320,319,320h9.609c11.084,19.11,31.754,32,55.391,32\r\n\tc35.29,0,64-28.71,64-64S419.29,224,384,224z M128,64c17.673,0,32,14.327,32,32s-14.327,32-32,32s-32-14.327-32-32\r\n\tS110.327,64,128,64z M128,448c-17.673,0-32-14.327-32-32s14.327-32,32-32s32,14.327,32,32S145.673,448,128,448z M384,320\r\n\tc-17.673,0-32-14.327-32-32s14.327-32,32-32s32,14.327,32,32S401.673,320,384,320z"},"children":[]}]};exports.merge=merge;var micA={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M112.1,238.1l-0.1,13.6c0.1,65.6,46,120.6,108.1,136.2c1.3,0.1,2.6,0.5,3.8,0.9c5.9,2,10.1,6.9,12.1,12.8v58.7\r\n\t\tc0,10.9,8.9,19.7,20,19.7h0.1c11.1,0,19.9-8.8,19.9-19.7v-58.8c2-5.9,6.1-10.7,12-12.7c1.2-0.4,2.5-0.8,3.9-0.9\r\n\t\tC354,372.3,400,317.3,400,251.7v-13.6c0-10.4-8.9-18.9-19.5-18.9c-10.6,0-19.5,8.4-19.5,18.9v13.6c0,28.5-11.5,54.1-30.6,72.8\r\n\t\tc-19.2,18.6-45.3,30.2-74.5,30.2c-29.2,0-55.1-11.5-74.2-30.2c-19.1-18.7-30.7-44.4-30.7-72.8v-13.6c0-10.4-8.8-18.9-19.5-18.9\r\n\t\tC120.9,219.2,112.1,227.7,112.1,238.1z"},"children":[{"name":"path","attribs":{"d":"M112.1,238.1l-0.1,13.6c0.1,65.6,46,120.6,108.1,136.2c1.3,0.1,2.6,0.5,3.8,0.9c5.9,2,10.1,6.9,12.1,12.8v58.7\r\n\t\tc0,10.9,8.9,19.7,20,19.7h0.1c11.1,0,19.9-8.8,19.9-19.7v-58.8c2-5.9,6.1-10.7,12-12.7c1.2-0.4,2.5-0.8,3.9-0.9\r\n\t\tC354,372.3,400,317.3,400,251.7v-13.6c0-10.4-8.9-18.9-19.5-18.9c-10.6,0-19.5,8.4-19.5,18.9v13.6c0,28.5-11.5,54.1-30.6,72.8\r\n\t\tc-19.2,18.6-45.3,30.2-74.5,30.2c-29.2,0-55.1-11.5-74.2-30.2c-19.1-18.7-30.7-44.4-30.7-72.8v-13.6c0-10.4-8.8-18.9-19.5-18.9\r\n\t\tC120.9,219.2,112.1,227.7,112.1,238.1z"},"children":[]}]},{"name":"path","attribs":{"d":"M179,107.7v143.8c0,41.8,34.7,75.7,77.5,75.7c42.8,0,77.5-33.9,77.5-75.7V107.7c0-41.8-34.7-75.7-77.5-75.7\r\n\t\tC213.7,32,179,65.9,179,107.7z"},"children":[{"name":"path","attribs":{"d":"M179,107.7v143.8c0,41.8,34.7,75.7,77.5,75.7c42.8,0,77.5-33.9,77.5-75.7V107.7c0-41.8-34.7-75.7-77.5-75.7\r\n\t\tC213.7,32,179,65.9,179,107.7z"},"children":[]}]}]}]};exports.micA=micA;var micB={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256.4,32c-35.1,0.1-65.8,23.2-76.8,59.3c-5.6,18.5-3.5,44.8-1.2,54.5c2.3,9.7,7.3,19.9,13.2,28.3\r\n\t\tc2.8,4.2,6.7,7.4,11.2,9.2c0.6,0.3,1.3,0.5,2,0.8c3.3,1.1,6.5,2.2,10.1,3.1c11.8,3,27.1,4.7,41.1,4.8v0c0,0,0.6,0,0.7,0\r\n\t\tc0.3,0,0.3,0,1.3,0v-0.1c14-0.1,27.3-1.7,39.1-4.8c3.6-0.9,6.9-2,10.2-3.1c0.7-0.2,1.3-0.5,1.9-0.8c4.5-1.8,8.4-5,11.2-9.2\r\n\t\tc5.9-8.4,10.8-18.6,13.2-28.3c2.3-9.7,4.4-36-1.2-54.5C321.4,55.2,291.6,32.1,256.4,32z"},"children":[{"name":"path","attribs":{"d":"M256.4,32c-35.1,0.1-65.8,23.2-76.8,59.3c-5.6,18.5-3.5,44.8-1.2,54.5c2.3,9.7,7.3,19.9,13.2,28.3\r\n\t\tc2.8,4.2,6.7,7.4,11.2,9.2c0.6,0.3,1.3,0.5,2,0.8c3.3,1.1,6.5,2.2,10.1,3.1c11.8,3,27.1,4.7,41.1,4.8v0c0,0,0.6,0,0.7,0\r\n\t\tc0.3,0,0.3,0,1.3,0v-0.1c14-0.1,27.3-1.7,39.1-4.8c3.6-0.9,6.9-2,10.2-3.1c0.7-0.2,1.3-0.5,1.9-0.8c4.5-1.8,8.4-5,11.2-9.2\r\n\t\tc5.9-8.4,10.8-18.6,13.2-28.3c2.3-9.7,4.4-36-1.2-54.5C321.4,55.2,291.6,32.1,256.4,32z"},"children":[]}]},{"name":"path","attribs":{"d":"M295.3,201.1c-0.4,0-0.7,0-1.1,0.1c-0.6,0.1-1.3,0.3-1.9,0.4c-2,0.4-4.1,0.8-6.1,1.2c-9.2,1.5-18.9,2.3-29,2.4\r\n\t\tc-10.1-0.1-22.3-0.9-31-2.4c-2.1-0.4-4.2-0.8-6.2-1.2c-0.6-0.1-1.3-0.3-1.9-0.4c-0.4-0.1-0.8-0.1-1.1-0.1c-6.1,0-11,5.3-11.2,11.9\r\n\t\tc0.1,0.8,0.2,1.6,0.2,2.4c4.8,67.2,16.8,240.7,18.2,252c0,0,2.8,12.7,32.1,12.6c0,0,0,0,0,0c29.2,0.1,32.1-12.6,32.1-12.6\r\n\t\tc1.4-11.3,13.4-184.8,18.2-252c0-0.8,0.1-1.6,0.2-2.4C306.3,206.4,301.4,201.1,295.3,201.1z M266,281.7c0,6-4.5,10.9-10,10.9\r\n\t\tc-5.5,0-10-4.9-10-10.9V249c0-6,4.5-10.9,10-10.9c5.5,0,10,4.9,10,10.9V281.7z"},"children":[{"name":"path","attribs":{"d":"M295.3,201.1c-0.4,0-0.7,0-1.1,0.1c-0.6,0.1-1.3,0.3-1.9,0.4c-2,0.4-4.1,0.8-6.1,1.2c-9.2,1.5-18.9,2.3-29,2.4\r\n\t\tc-10.1-0.1-22.3-0.9-31-2.4c-2.1-0.4-4.2-0.8-6.2-1.2c-0.6-0.1-1.3-0.3-1.9-0.4c-0.4-0.1-0.8-0.1-1.1-0.1c-6.1,0-11,5.3-11.2,11.9\r\n\t\tc0.1,0.8,0.2,1.6,0.2,2.4c4.8,67.2,16.8,240.7,18.2,252c0,0,2.8,12.7,32.1,12.6c0,0,0,0,0,0c29.2,0.1,32.1-12.6,32.1-12.6\r\n\t\tc1.4-11.3,13.4-184.8,18.2-252c0-0.8,0.1-1.6,0.2-2.4C306.3,206.4,301.4,201.1,295.3,201.1z M266,281.7c0,6-4.5,10.9-10,10.9\r\n\t\tc-5.5,0-10-4.9-10-10.9V249c0-6,4.5-10.9,10-10.9c5.5,0,10,4.9,10,10.9V281.7z"},"children":[]}]}]}]};exports.micB=micB;var micC={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M329.2,32H182.9C152.5,32,128,55.4,128,84.4V112h152v37H128v43h152v37H128v43h152v37H128v41.8c0,29,24.5,52.2,54.9,52.2H213\r\n\tv77h86v-77h30.2c30.3,0,54.8-23.2,54.8-52.2V309h-59v-37h59v-43h-59v-37h59v-43h-59v-37h59V84.4C384,55.4,359.5,32,329.2,32z"},"children":[]}]};exports.micC=micC;var minusCircled={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,32C132.3,32,32,132.3,32,256s100.3,224,224,224s224-100.3,224-224S379.7,32,256,32z M384,272H128v-32h256V272z"},"children":[{"name":"path","attribs":{"d":"M256,32C132.3,32,32,132.3,32,256s100.3,224,224,224s224-100.3,224-224S379.7,32,256,32z M384,272H128v-32h256V272z"},"children":[]}]}]}]};exports.minusCircled=minusCircled;var minusRound={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M417.4,224H94.6C77.7,224,64,238.3,64,256c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32\r\n\tC448,238.3,434.3,224,417.4,224z"},"children":[]}]};exports.minusRound=minusRound;var minus={"viewBox":"0 0 512 512","children":[{"name":"rect","attribs":{"x":"64","y":"224","width":"384","height":"64"},"children":[]}]};exports.minus=minus;var modelS={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M508.8,390.9c-0.6,4.1-1.6,8.1-3.1,11.2c-2.7,5.5-5.3,6-15.5,5.5c-13.2-0.6-32.1,0-52.1,0.8c0,5.5,0.2,8.1,0.2,8.1\r\n\t\tc1.3,15.1,8.1,15.6,10.8,15.6c3,0,39.2,0,43,0s7.3,0,10-1.8c3.5-2.3,5-9,6.3-20.7c0.2-1.7,0.3-3.9,0.4-6.5c0,0,0-0.1,0-0.1\r\n\t\tc0-0.8,0.1-1.8,0.1-2.9c0-0.4,0-0.8,0-1.1c0,0,0,0,0,0C508.9,396.3,508.9,393.3,508.8,390.9z"},"children":[{"name":"path","attribs":{"d":"M508.8,390.9c-0.6,4.1-1.6,8.1-3.1,11.2c-2.7,5.5-5.3,6-15.5,5.5c-13.2-0.6-32.1,0-52.1,0.8c0,5.5,0.2,8.1,0.2,8.1\r\n\t\tc1.3,15.1,8.1,15.6,10.8,15.6c3,0,39.2,0,43,0s7.3,0,10-1.8c3.5-2.3,5-9,6.3-20.7c0.2-1.7,0.3-3.9,0.4-6.5c0,0,0-0.1,0-0.1\r\n\t\tc0-0.8,0.1-1.8,0.1-2.9c0-0.4,0-0.8,0-1.1c0,0,0,0,0,0C508.9,396.3,508.9,393.3,508.8,390.9z"},"children":[]}]},{"name":"path","attribs":{"d":"M3,390.9c0.6,4.1,1.6,8.1,3.1,11.2c2.7,5.5,5.3,6,15.5,5.5c13.2-0.6,32.1,0,52.1,0.8c0,5.5-0.2,8.1-0.2,8.1\r\n\t\tc-1.3,15.1-8.1,15.6-10.8,15.6c-3,0-39.2,0-43,0s-7,0-10-1.8c-3.6-2.1-5-9-6.3-20.7c-0.2-1.7-0.3-3.9-0.4-6.5c0,0,0-0.1,0-0.1\r\n\t\tc0-0.8-0.1-1.8-0.1-2.9c0-0.4,0-0.8,0-1.1c0,0,0,0,0,0C3,396.3,3,393.3,3,390.9z"},"children":[{"name":"path","attribs":{"d":"M3,390.9c0.6,4.1,1.6,8.1,3.1,11.2c2.7,5.5,5.3,6,15.5,5.5c13.2-0.6,32.1,0,52.1,0.8c0,5.5-0.2,8.1-0.2,8.1\r\n\t\tc-1.3,15.1-8.1,15.6-10.8,15.6c-3,0-39.2,0-43,0s-7,0-10-1.8c-3.6-2.1-5-9-6.3-20.7c-0.2-1.7-0.3-3.9-0.4-6.5c0,0,0-0.1,0-0.1\r\n\t\tc0-0.8-0.1-1.8-0.1-2.9c0-0.4,0-0.8,0-1.1c0,0,0,0,0,0C3,396.3,3,393.3,3,390.9z"},"children":[]}]},{"name":"path","attribs":{"d":"M512,296.6c0-30.7-4-60.7-5.6-64c-1.2-2.4-8.9-8.7-26.4-20.6c-17.7-12.1-17.3-10.3-20.5-18.2c2.9-0.9,5.7-2.6,7.4-2.8\r\n\t\tc3.8-0.4,4,3.2,11.9,3.2s25-2.1,28.5-5.6c3.5-3.5,4.6-4.7,4.6-7.8s-1.8-9.5-5.2-13.3s-17.9-5.7-26.4-6.8s-9.7,0-11.9,1.4\r\n\t\tc-3.5,2.2-3.7,22.3-3.7,22.3l-8.3,0.2c-5.4-13.3-12.9-40.1-24.6-61.2c-12.8-23-26.2-30.2-31.8-32c-5.5-1.7-10.5-2.9-48-6.7\r\n\t\tc-38.3-4-68.8-4.5-96-4.5s-57.7,0.6-96,4.5c-37.5,3.9-42.5,5-48,6.7c-5.5,1.7-19,9-31.8,32c-11.7,21.1-19.2,47.9-24.6,61.2\r\n\t\tl-8.3-0.2c0,0-0.1-20.1-3.7-22.3c-2.2-1.4-3.4-2.6-11.9-1.4s-23,3-26.4,6.8s-5.2,10.2-5.2,13.3s1.1,4.4,4.6,7.8\r\n\t\tc3.5,3.5,20.6,5.6,28.5,5.6s8.1-3.6,11.9-3.2c1.7,0.2,4.6,1.9,7.4,2.8c-3.3,7.9-2.8,6.1-20.5,18.2c-17.5,12-25.3,18.2-26.4,20.6\r\n\t\tC4,235.9,0,265.9,0,296.6s2.2,58.3,2.2,68.1c0,4.1,0,11.3,0.9,18.2c0.6,4.1,1.5,8.1,3.1,11.2c2.7,5.5,5.2,6,15.5,5.5\r\n\t\tc13.2-0.6,32.3,0,52,0.8c13.2,0.5,26.7,1,38.7,1.3c30,0.6,21.2-4.4,34-4.2c12.8,0.2,63.3,2.3,109.5,2.3s96.8-2.1,109.5-2.3\r\n\t\tc12.8-0.2,4,4.8,34,4.2c12-0.2,25.5-0.8,38.7-1.3c19.7-0.7,38.9-1.4,52-0.8c10.3,0.5,12.8,0,15.5-5.5c1.5-3.1,2.5-7.1,3.1-11.2\r\n\t\tc1-6.9,0.9-14.1,0.9-18.2C509.8,355,512,327.3,512,296.6z M86.2,145.2c4.8-11.2,19.2-33.7,26.2-37.7c1.7-1,16.6-5.7,53.9-8.2\r\n\t\tc34.3-2.3,72.2-3.2,89.8-3.2s55.5,0.9,89.8,3.2c37.2,2.5,52.3,7.1,53.9,8.2c9,6.2,21.4,26.5,26.2,37.7c4.8,11.2,11.2,33.2,10,36.2\r\n\t\tc-1.2,3,1.2,4.5-15,3.2c-16.1-1.2-117.2-2.5-164.8-2.5c-47.5,0-148.6,1.3-164.8,2.5c-16.2,1.2-13.8-0.2-15-3.2\r\n\t\tC75,178.4,81.4,156.5,86.2,145.2z M123,270.4c-7.2,1.8-11.5,5.7-20.5,5.6c-9,0-33.3-4.1-38.5-4.3c-5.2-0.2-9.8,3.5-12.5,4.2\r\n\t\ts-8-1.2-16-3.7s-12.7-1.8-15.3-12.7c-2.7-10.8,0-26.3,0-26.3c17.3-0.8,34,0.8,65.3,9.6c31.3,8.8,48.7,25.7,48.7,25.7\r\n\t\tS130.2,268.6,123,270.4z M358.2,349.2c-14.3,1.9-74.2,2.4-102.2,2.4c-28,0-87.9-0.6-102.2-2.4c-14.6-1.9-33.6-19.4-20.5-33.3\r\n\t\tc17.7-18.9,14.4-18.3,54.6-23.5c34.8-4.5,61.2-4.7,68.1-4.7c6.8,0,33.3,0.3,68.1,4.7c40.2,5.2,36.9,4.6,54.6,23.5\r\n\t\tC391.8,329.8,372.8,347.3,358.2,349.2z M491.8,259.6c-2.7,10.8-7.3,10.2-15.3,12.7s-13.3,4.3-16,3.7s-7.3-4.3-12.5-4.2\r\n\t\tc-5.2,0.2-29.5,4.3-38.5,4.3c-9,0-13.3-3.8-20.5-5.6c-7.2-1.8-11.2-1.8-11.2-1.8s17.3-17,48.7-25.7c31.3-8.8,48-10.4,65.3-9.6\r\n\t\tC491.8,233.2,494.5,248.7,491.8,259.6z"},"children":[{"name":"path","attribs":{"d":"M512,296.6c0-30.7-4-60.7-5.6-64c-1.2-2.4-8.9-8.7-26.4-20.6c-17.7-12.1-17.3-10.3-20.5-18.2c2.9-0.9,5.7-2.6,7.4-2.8\r\n\t\tc3.8-0.4,4,3.2,11.9,3.2s25-2.1,28.5-5.6c3.5-3.5,4.6-4.7,4.6-7.8s-1.8-9.5-5.2-13.3s-17.9-5.7-26.4-6.8s-9.7,0-11.9,1.4\r\n\t\tc-3.5,2.2-3.7,22.3-3.7,22.3l-8.3,0.2c-5.4-13.3-12.9-40.1-24.6-61.2c-12.8-23-26.2-30.2-31.8-32c-5.5-1.7-10.5-2.9-48-6.7\r\n\t\tc-38.3-4-68.8-4.5-96-4.5s-57.7,0.6-96,4.5c-37.5,3.9-42.5,5-48,6.7c-5.5,1.7-19,9-31.8,32c-11.7,21.1-19.2,47.9-24.6,61.2\r\n\t\tl-8.3-0.2c0,0-0.1-20.1-3.7-22.3c-2.2-1.4-3.4-2.6-11.9-1.4s-23,3-26.4,6.8s-5.2,10.2-5.2,13.3s1.1,4.4,4.6,7.8\r\n\t\tc3.5,3.5,20.6,5.6,28.5,5.6s8.1-3.6,11.9-3.2c1.7,0.2,4.6,1.9,7.4,2.8c-3.3,7.9-2.8,6.1-20.5,18.2c-17.5,12-25.3,18.2-26.4,20.6\r\n\t\tC4,235.9,0,265.9,0,296.6s2.2,58.3,2.2,68.1c0,4.1,0,11.3,0.9,18.2c0.6,4.1,1.5,8.1,3.1,11.2c2.7,5.5,5.2,6,15.5,5.5\r\n\t\tc13.2-0.6,32.3,0,52,0.8c13.2,0.5,26.7,1,38.7,1.3c30,0.6,21.2-4.4,34-4.2c12.8,0.2,63.3,2.3,109.5,2.3s96.8-2.1,109.5-2.3\r\n\t\tc12.8-0.2,4,4.8,34,4.2c12-0.2,25.5-0.8,38.7-1.3c19.7-0.7,38.9-1.4,52-0.8c10.3,0.5,12.8,0,15.5-5.5c1.5-3.1,2.5-7.1,3.1-11.2\r\n\t\tc1-6.9,0.9-14.1,0.9-18.2C509.8,355,512,327.3,512,296.6z M86.2,145.2c4.8-11.2,19.2-33.7,26.2-37.7c1.7-1,16.6-5.7,53.9-8.2\r\n\t\tc34.3-2.3,72.2-3.2,89.8-3.2s55.5,0.9,89.8,3.2c37.2,2.5,52.3,7.1,53.9,8.2c9,6.2,21.4,26.5,26.2,37.7c4.8,11.2,11.2,33.2,10,36.2\r\n\t\tc-1.2,3,1.2,4.5-15,3.2c-16.1-1.2-117.2-2.5-164.8-2.5c-47.5,0-148.6,1.3-164.8,2.5c-16.2,1.2-13.8-0.2-15-3.2\r\n\t\tC75,178.4,81.4,156.5,86.2,145.2z M123,270.4c-7.2,1.8-11.5,5.7-20.5,5.6c-9,0-33.3-4.1-38.5-4.3c-5.2-0.2-9.8,3.5-12.5,4.2\r\n\t\ts-8-1.2-16-3.7s-12.7-1.8-15.3-12.7c-2.7-10.8,0-26.3,0-26.3c17.3-0.8,34,0.8,65.3,9.6c31.3,8.8,48.7,25.7,48.7,25.7\r\n\t\tS130.2,268.6,123,270.4z M358.2,349.2c-14.3,1.9-74.2,2.4-102.2,2.4c-28,0-87.9-0.6-102.2-2.4c-14.6-1.9-33.6-19.4-20.5-33.3\r\n\t\tc17.7-18.9,14.4-18.3,54.6-23.5c34.8-4.5,61.2-4.7,68.1-4.7c6.8,0,33.3,0.3,68.1,4.7c40.2,5.2,36.9,4.6,54.6,23.5\r\n\t\tC391.8,329.8,372.8,347.3,358.2,349.2z M491.8,259.6c-2.7,10.8-7.3,10.2-15.3,12.7s-13.3,4.3-16,3.7s-7.3-4.3-12.5-4.2\r\n\t\tc-5.2,0.2-29.5,4.3-38.5,4.3c-9,0-13.3-3.8-20.5-5.6c-7.2-1.8-11.2-1.8-11.2-1.8s17.3-17,48.7-25.7c31.3-8.8,48-10.4,65.3-9.6\r\n\t\tC491.8,233.2,494.5,248.7,491.8,259.6z"},"children":[]}]}]}]};exports.modelS=modelS;var monitor={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M468.7,64H43.3c-6,0-11.3,5-11.3,11.1v265.7c0,6.2,5.2,11.1,11.3,11.1h425.4c6,0,11.3-5,11.3-11.1V75.1\r\n\t\tC480,69,474.8,64,468.7,64z M448,320H64V96h384V320z"},"children":[{"name":"path","attribs":{"d":"M468.7,64H43.3c-6,0-11.3,5-11.3,11.1v265.7c0,6.2,5.2,11.1,11.3,11.1h425.4c6,0,11.3-5,11.3-11.1V75.1\r\n\t\tC480,69,474.8,64,468.7,64z M448,320H64V96h384V320z"},"children":[]}]},{"name":"path","attribs":{"d":"M302.5,448c28-0.5,41.5-3.9,29-12.5c-12.5-8.7-28.5-15.3-29-22.5c-0.3-3.7-1.7-45-1.7-45H256h-44.8c0,0-1.5,41.3-1.7,45\r\n\t\tc-0.5,7.1-16.5,13.8-29,22.5c-12.5,8.7,1,12,29,12.5H302.5z"},"children":[{"name":"path","attribs":{"d":"M302.5,448c28-0.5,41.5-3.9,29-12.5c-12.5-8.7-28.5-15.3-29-22.5c-0.3-3.7-1.7-45-1.7-45H256h-44.8c0,0-1.5,41.3-1.7,45\r\n\t\tc-0.5,7.1-16.5,13.8-29,22.5c-12.5,8.7,1,12,29,12.5H302.5z"},"children":[]}]}]}]};exports.monitor=monitor;var more={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M113.7,304C86.2,304,64,282.6,64,256c0-26.5,22.2-48,49.7-48c27.6,0,49.8,21.5,49.8,48C163.5,282.6,141.3,304,113.7,304z"},"children":[{"name":"path","attribs":{"d":"M113.7,304C86.2,304,64,282.6,64,256c0-26.5,22.2-48,49.7-48c27.6,0,49.8,21.5,49.8,48C163.5,282.6,141.3,304,113.7,304z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,304c-27.5,0-49.8-21.4-49.8-48c0-26.5,22.3-48,49.8-48c27.5,0,49.7,21.5,49.7,48C305.7,282.6,283.5,304,256,304z"},"children":[{"name":"path","attribs":{"d":"M256,304c-27.5,0-49.8-21.4-49.8-48c0-26.5,22.3-48,49.8-48c27.5,0,49.7,21.5,49.7,48C305.7,282.6,283.5,304,256,304z"},"children":[]}]},{"name":"path","attribs":{"d":"M398.2,304c-27.5,0-49.8-21.4-49.8-48c0-26.5,22.2-48,49.8-48c27.5,0,49.8,21.5,49.8,48C448,282.6,425.8,304,398.2,304z"},"children":[{"name":"path","attribs":{"d":"M398.2,304c-27.5,0-49.8-21.4-49.8-48c0-26.5,22.2-48,49.8-48c27.5,0,49.8,21.5,49.8,48C448,282.6,425.8,304,398.2,304z"},"children":[]}]}]}]};exports.more=more;var mouse={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,32c-0.46,0-0.917,0.011-1.376,0.015l5.747,0.057C258.92,32.029,257.464,32,256,32z"},"children":[{"name":"path","attribs":{"d":"M256,32c-0.46,0-0.917,0.011-1.376,0.015l5.747,0.057C258.92,32.029,257.464,32,256,32z"},"children":[]}]},{"name":"path","attribs":{"d":"M378.553,193.211c-0.195,0.064-0.414,0.16-0.619,0.269c-34.234,13.289-76.337,22.52-121.886,22.475\r\n\t\tc-45.52-0.076-87.626-9.398-121.81-22.772c-0.19-0.104-0.429-0.192-0.647-0.265c-1.531-0.554-3.146-0.897-4.841-0.917\r\n\t\tc-0.254-0.001-0.5-0.013-0.75,0v176.012C128,429.892,185.308,480,256,480c21.992,0,42.687-4.803,60.766-13.355\r\n\t\tc0.095-0.045,0.191-0.087,0.286-0.133c0.026-0.013,0.054-0.026,0.08-0.039c4.87-2.344,9.581-4.963,14.122-7.828\r\n\t\tC363.219,438.275,384,405.271,384,368.012V192c-0.191-0.008-0.496,0-0.689,0C381.584,192.014,380.092,192.651,378.553,193.211z\r\n\t\t M317.132,466.424c-0.026,0.013-0.054,0.026-0.08,0.039c-0.095,0.045-0.191,0.088-0.286,0.133c0.095-0.045,0.191-0.088,0.286-0.133\r\n\t\tC317.078,466.45,317.105,466.437,317.132,466.424c4.87-2.342,9.581-4.961,14.122-7.825\r\n\t\tC326.758,461.463,322.044,464.083,317.132,466.424z"},"children":[{"name":"path","attribs":{"d":"M378.553,193.211c-0.195,0.064-0.414,0.16-0.619,0.269c-34.234,13.289-76.337,22.52-121.886,22.475\r\n\t\tc-45.52-0.076-87.626-9.398-121.81-22.772c-0.19-0.104-0.429-0.192-0.647-0.265c-1.531-0.554-3.146-0.897-4.841-0.917\r\n\t\tc-0.254-0.001-0.5-0.013-0.75,0v176.012C128,429.892,185.308,480,256,480c21.992,0,42.687-4.803,60.766-13.355\r\n\t\tc0.095-0.045,0.191-0.087,0.286-0.133c0.026-0.013,0.054-0.026,0.08-0.039c4.87-2.344,9.581-4.963,14.122-7.828\r\n\t\tC363.219,438.275,384,405.271,384,368.012V192c-0.191-0.008-0.496,0-0.689,0C381.584,192.014,380.092,192.651,378.553,193.211z\r\n\t\t M317.132,466.424c-0.026,0.013-0.054,0.026-0.08,0.039c-0.095,0.045-0.191,0.088-0.286,0.133c0.095-0.045,0.191-0.088,0.286-0.133\r\n\t\tC317.078,466.45,317.105,466.437,317.132,466.424c4.87-2.342,9.581-4.961,14.122-7.825\r\n\t\tC326.758,461.463,322.044,464.083,317.132,466.424z"},"children":[]}]},{"name":"path","attribs":{"d":"M331.254,458.599c-4.541,2.864-9.252,5.483-14.122,7.825C322.044,464.083,326.758,461.463,331.254,458.599z"},"children":[{"name":"path","attribs":{"d":"M331.254,458.599c-4.541,2.864-9.252,5.483-14.122,7.825C322.044,464.083,326.758,461.463,331.254,458.599z"},"children":[]}]},{"name":"path","attribs":{"d":"M260.371,32.072l-5.747-0.057C184.566,32.662,128,82.547,128,144v22.708c2.158,2.024,4.593,3.755,7.251,5.115\r\n\t\tc0.673,0.337,1.386,0.659,2.059,0.996c0.032,0.027,0.077,0.01,0.109,0.036c22.757,10.35,51.429,15.801,83.415,19.006\r\n\t\tc0.694,0.078,1.397,0.107,2.148,0.12C234.24,191.997,239.996,192,240,181.411V96c0-8.836,7.164-16,16-16c8.836,0,16,7.164,16,16\r\n\t\tv86.328c-0.088,9.672,5.926,9.72,17.2,9.749c0.717-0.016,1.415-0.045,2.081-0.105c0.062-0.003,0.141,0.005,0.244-0.02\r\n\t\tc31.682-3.119,60.143-8.405,82.808-18.59c1.162-0.545,2.291-1.056,3.407-1.581c2.271-1.232,4.365-2.743,6.26-4.466V144\r\n\t\tC384,83.425,329.039,34.09,260.371,32.072z"},"children":[{"name":"path","attribs":{"d":"M260.371,32.072l-5.747-0.057C184.566,32.662,128,82.547,128,144v22.708c2.158,2.024,4.593,3.755,7.251,5.115\r\n\t\tc0.673,0.337,1.386,0.659,2.059,0.996c0.032,0.027,0.077,0.01,0.109,0.036c22.757,10.35,51.429,15.801,83.415,19.006\r\n\t\tc0.694,0.078,1.397,0.107,2.148,0.12C234.24,191.997,239.996,192,240,181.411V96c0-8.836,7.164-16,16-16c8.836,0,16,7.164,16,16\r\n\t\tv86.328c-0.088,9.672,5.926,9.72,17.2,9.749c0.717-0.016,1.415-0.045,2.081-0.105c0.062-0.003,0.141,0.005,0.244-0.02\r\n\t\tc31.682-3.119,60.143-8.405,82.808-18.59c1.162-0.545,2.291-1.056,3.407-1.581c2.271-1.232,4.365-2.743,6.26-4.466V144\r\n\t\tC384,83.425,329.039,34.09,260.371,32.072z"},"children":[]}]}]}]};exports.mouse=mouse;var musicNote={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M426,32.1c-2.2,0-5.1,0.6-5.1,0.6L203.3,65.9C189.5,69.6,177,83,176,97.5V384h-61v-0.1c-28,0-51.1,20-51.1,48\r\n\ts23.1,48,51.3,48h36.2c15.3,0,28.9-6.9,38.3-17.5c0.1-0.1,0.3-0.1,0.4-0.2c0.6-0.6,1-1.5,1.5-2.1c1.3-1.6,2.4-3.2,3.4-5\r\n\tC204.6,441,208,422.3,208,414V182l208-38c0,0,0,136,0,192h-60.5c-28.3,0-51.2,19.9-51.2,48s22.9,48,51.2,48h37.2\r\n\tc18.2,0,34.1-6,43.2-21c0,0,0.1,0,0.2,0c9-12,12-30.2,12-54.9c0-24.8,0-302.8,0-302.8C448,41.6,438.1,32.1,426,32.1z"},"children":[]}]};exports.musicNote=musicNote;var naviconRound={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M417.4,224H94.6C77.7,224,64,238.3,64,256c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32\r\n\t\tC448,238.3,434.3,224,417.4,224z"},"children":[{"name":"path","attribs":{"d":"M417.4,224H94.6C77.7,224,64,238.3,64,256c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32\r\n\t\tC448,238.3,434.3,224,417.4,224z"},"children":[]}]},{"name":"path","attribs":{"d":"M417.4,96H94.6C77.7,96,64,110.3,64,128c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32\r\n\t\tC448,110.3,434.3,96,417.4,96z"},"children":[{"name":"path","attribs":{"d":"M417.4,96H94.6C77.7,96,64,110.3,64,128c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32\r\n\t\tC448,110.3,434.3,96,417.4,96z"},"children":[]}]},{"name":"path","attribs":{"d":"M417.4,352H94.6C77.7,352,64,366.3,64,384c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32\r\n\t\tC448,366.3,434.3,352,417.4,352z"},"children":[{"name":"path","attribs":{"d":"M417.4,352H94.6C77.7,352,64,366.3,64,384c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32\r\n\t\tC448,366.3,434.3,352,417.4,352z"},"children":[]}]}]}]};exports.naviconRound=naviconRound;var navicon={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"96","y":"241","width":"320","height":"32"},"children":[{"name":"rect","attribs":{"x":"96","y":"241","width":"320","height":"32"},"children":[]}]},{"name":"rect","attribs":{"x":"96","y":"145","width":"320","height":"32"},"children":[{"name":"rect","attribs":{"x":"96","y":"145","width":"320","height":"32"},"children":[]}]},{"name":"rect","attribs":{"x":"96","y":"337","width":"320","height":"32"},"children":[{"name":"rect","attribs":{"x":"96","y":"337","width":"320","height":"32"},"children":[]}]}]}]};exports.navicon=navicon;var navigate={"viewBox":"0 0 512 512","children":[{"name":"polygon","attribs":{"points":"480,32 32,224 288,224 288,480 "},"children":[]}]};exports.navigate=navigate;var network={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M448,96c0-35.29-28.71-64-64-64s-64,28.71-64,64c0,23.637,12.89,44.307,32,55.391v52.832l-96,48l-96-48v-52.832\r\n\tc19.11-11.084,32-31.754,32-55.391c0-35.29-28.71-64-64-64S64,60.71,64,96c0,23.637,12.89,44.307,32,55.391v92.387l128,64v52.832\r\n\tc-19.11,11.084-32,31.754-32,55.391c0,35.29,28.71,64,64,64s64-28.71,64-64c0-23.637-12.89-44.307-32-55.391v-52.832l128-64v-92.387\r\n\tC435.11,140.307,448,119.637,448,96z M128,64c17.673,0,32,14.327,32,32s-14.327,32-32,32s-32-14.327-32-32S110.327,64,128,64z\r\n\t M256,448c-17.673,0-32-14.327-32-32s14.327-32,32-32s32,14.327,32,32S273.673,448,256,448z M384,128c-17.673,0-32-14.327-32-32\r\n\ts14.327-32,32-32s32,14.327,32,32S401.673,128,384,128z"},"children":[]}]};exports.network=network;var noSmoking={"viewBox":"0 0 512 512","children":[{"name":"style","attribs":{"type":"text/css"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"360","y":"256","class":"st0","width":"16","height":"48"},"children":[{"name":"rect","attribs":{"x":"360","y":"256","class":"st0","width":"16","height":"48"},"children":[]}]},{"name":"polygon","attribs":{"class":"st0","points":"112,304 249.6,304 201.6,256 112,256 \t"},"children":[{"name":"polygon","attribs":{"class":"st0","points":"112,304 249.6,304 201.6,256 112,256 \t"},"children":[]}]},{"name":"path","attribs":{"class":"st0","d":"M364.5,60.1c-0.4-0.2-0.7-0.4-1-0.6c-10.9-6-22.5-10.7-34.4-14.8c-1.8-0.6-3.6-1.2-5.4-1.8\r\n\t\tC302.3,36.1,279.6,32,256,32C132.3,32,32,132.3,32,256c0,84.3,46.6,157.6,115.4,195.8c0.4,0.2,0.7,0.5,1.1,0.7\r\n\t\tc10.9,6,22.5,10.7,34.4,14.8c1.8,0.6,3.6,1.2,5.4,1.8c21.4,6.8,44,10.9,67.7,10.9c123.7,0,224-100.3,224-224\r\n\t\tC480,171.7,433.4,98.3,364.5,60.1z M256,426.4c-9.3,0-18.4-0.9-27.2-2.4c-9.8-1.6-19.3-4.1-28.5-7.3c-1.9-0.6-3.8-1.2-5.6-1.9\r\n\t\tc-6.5-2.5-12.9-5.3-19-8.6c-53.6-28.7-90.1-85.2-90.1-150.3c0-37.2,12.4-71.4,32.7-99.4l237.2,237.2\r\n\t\tC327.4,414,293.2,426.4,256,426.4z M393.8,355.4L156.6,118.2c28-20.2,62.1-32.6,99.4-32.6c9.3,0,18.3,0.9,27.2,2.4\r\n\t\tc9.8,1.6,19.3,4.1,28.5,7.3c1.8,0.6,3.7,1.2,5.6,1.9c6.2,2.4,12.2,5,18,8.1c54.2,28.5,91.2,85.3,91.2,150.8\r\n\t\tC426.4,293.3,414,327.4,393.8,355.4z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M364.5,60.1c-0.4-0.2-0.7-0.4-1-0.6c-10.9-6-22.5-10.7-34.4-14.8c-1.8-0.6-3.6-1.2-5.4-1.8\r\n\t\tC302.3,36.1,279.6,32,256,32C132.3,32,32,132.3,32,256c0,84.3,46.6,157.6,115.4,195.8c0.4,0.2,0.7,0.5,1.1,0.7\r\n\t\tc10.9,6,22.5,10.7,34.4,14.8c1.8,0.6,3.6,1.2,5.4,1.8c21.4,6.8,44,10.9,67.7,10.9c123.7,0,224-100.3,224-224\r\n\t\tC480,171.7,433.4,98.3,364.5,60.1z M256,426.4c-9.3,0-18.4-0.9-27.2-2.4c-9.8-1.6-19.3-4.1-28.5-7.3c-1.9-0.6-3.8-1.2-5.6-1.9\r\n\t\tc-6.5-2.5-12.9-5.3-19-8.6c-53.6-28.7-90.1-85.2-90.1-150.3c0-37.2,12.4-71.4,32.7-99.4l237.2,237.2\r\n\t\tC327.4,414,293.2,426.4,256,426.4z M393.8,355.4L156.6,118.2c28-20.2,62.1-32.6,99.4-32.6c9.3,0,18.3,0.9,27.2,2.4\r\n\t\tc9.8,1.6,19.3,4.1,28.5,7.3c1.8,0.6,3.7,1.2,5.6,1.9c6.2,2.4,12.2,5,18,8.1c54.2,28.5,91.2,85.3,91.2,150.8\r\n\t\tC426.4,293.3,414,327.4,393.8,355.4z"},"children":[]}]},{"name":"polygon","attribs":{"class":"st0","points":"352,298 352,256 310,256 \t"},"children":[{"name":"polygon","attribs":{"class":"st0","points":"352,298 352,256 310,256 \t"},"children":[]}]},{"name":"rect","attribs":{"x":"384","y":"256","class":"st0","width":"16","height":"48"},"children":[{"name":"rect","attribs":{"x":"384","y":"256","class":"st0","width":"16","height":"48"},"children":[]}]},{"name":"path","attribs":{"class":"st0","d":"M360.1,212.7c-8.8-4.1-22-5.7-45.6-5.7c-1.2,0-2.4,0-3.6,0c-12.7,0.1-15.9-0.1-20-6.1\r\n\t\tc-2.8-4.2-1-14.8,3.7-21.9c1.6-2.4,1.8-5.6,0.4-8.2c-1.4-2.6-4.1-4.2-7-4.3c-0.1,0-9.4-0.1-18.3-3.9c-10.6-4.5-15.6-12.1-15.6-23.1\r\n\t\tc0-25.8,21.8-27.7,22.8-27.7v-16c-12,0-38.8,11-38.8,43.7c0,17.5,9,31,25.7,38c4.2,1.7,8.4,2.9,12,3.6c-3.3,9.8-3.6,20.9,1.7,28.7\r\n\t\tc9,13.3,20.3,13.2,33.3,13.1c1.1,0,2.3,0,3.5,0c26.3,0,34.6,2.3,38.9,4.3c5.7,2.6,6.8,11.5,6.6,19.7c0,0.7,0,0.4,0,1h16\r\n\t\tc0-0.4,0-0.4,0-1C375.8,239.8,376.1,220.1,360.1,212.7z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M360.1,212.7c-8.8-4.1-22-5.7-45.6-5.7c-1.2,0-2.4,0-3.6,0c-12.7,0.1-15.9-0.1-20-6.1\r\n\t\tc-2.8-4.2-1-14.8,3.7-21.9c1.6-2.4,1.8-5.6,0.4-8.2c-1.4-2.6-4.1-4.2-7-4.3c-0.1,0-9.4-0.1-18.3-3.9c-10.6-4.5-15.6-12.1-15.6-23.1\r\n\t\tc0-25.8,21.8-27.7,22.8-27.7v-16c-12,0-38.8,11-38.8,43.7c0,17.5,9,31,25.7,38c4.2,1.7,8.4,2.9,12,3.6c-3.3,9.8-3.6,20.9,1.7,28.7\r\n\t\tc9,13.3,20.3,13.2,33.3,13.1c1.1,0,2.3,0,3.5,0c26.3,0,34.6,2.3,38.9,4.3c5.7,2.6,6.8,11.5,6.6,19.7c0,0.7,0,0.4,0,1h16\r\n\t\tc0-0.4,0-0.4,0-1C375.8,239.8,376.1,220.1,360.1,212.7z"},"children":[]}]},{"name":"path","attribs":{"class":"st0","d":"M400,248c0-25.7-3-43.2-9.1-53.6C382.3,180,368.5,172,352,172h-17.4c2.9-8.3,5.4-19.8,3.5-30.9\r\n\t\tc-3.2-18.8-19.1-30-43.1-30v16c21,0,26.1,9.1,27.4,16.7c2.5,14.5-6.8,32.1-6.9,32.3c-1.4,2.5-1.3,5.5,0.1,7.9\r\n\t\tc1.4,2.4,4.1,3.9,6.9,3.9H352c10.9,0,19.4,4.9,25.1,14.6c3.1,5.3,6.9,17.5,6.9,45.4H400z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M400,248c0-25.7-3-43.2-9.1-53.6C382.3,180,368.5,172,352,172h-17.4c2.9-8.3,5.4-19.8,3.5-30.9\r\n\t\tc-3.2-18.8-19.1-30-43.1-30v16c21,0,26.1,9.1,27.4,16.7c2.5,14.5-6.8,32.1-6.9,32.3c-1.4,2.5-1.3,5.5,0.1,7.9\r\n\t\tc1.4,2.4,4.1,3.9,6.9,3.9H352c10.9,0,19.4,4.9,25.1,14.6c3.1,5.3,6.9,17.5,6.9,45.4H400z"},"children":[]}]}]}]};exports.noSmoking=noSmoking;var nuclear={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"cx":"256","cy":"272","r":"48"},"children":[{"name":"circle","attribs":{"cx":"256","cy":"272","r":"48"},"children":[]}]},{"name":"circle","attribs":{"cx":"256","cy":"272","r":"48"},"children":[{"name":"circle","attribs":{"cx":"256","cy":"272","r":"48"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M480,272H320c0,23.9-13.1,44.7-32.6,55.7L365.6,464C433.1,425.4,480,355.3,480,272z"},"children":[{"name":"path","attribs":{"d":"M480,272H320c0,23.9-13.1,44.7-32.6,55.7L365.6,464C433.1,425.4,480,355.3,480,272z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,208c11.7,0,22.7,3.2,32.1,8.7l80.6-138.3C335.6,59.1,297.1,48,256,48c-41.2,0-79.9,11.2-113.1,30.6l79.8,138.8\r\n\t\t\tC232.4,211.4,243.8,208,256,208z"},"children":[{"name":"path","attribs":{"d":"M256,208c11.7,0,22.7,3.2,32.1,8.7l80.6-138.3C335.6,59.1,297.1,48,256,48c-41.2,0-79.9,11.2-113.1,30.6l79.8,138.8\r\n\t\t\tC232.4,211.4,243.8,208,256,208z"},"children":[]}]},{"name":"path","attribs":{"d":"M192,272H32c0,83.3,46.9,153.4,114.4,192l78.2-136.3C205.1,316.7,192,295.9,192,272z"},"children":[{"name":"path","attribs":{"d":"M192,272H32c0,83.3,46.9,153.4,114.4,192l78.2-136.3C205.1,316.7,192,295.9,192,272z"},"children":[]}]}]}]}]}]};exports.nuclear=nuclear;var outlet={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M369.541,32H142.359C81.521,32,32,82.574,32,144.604v222.79C32,429.426,81.521,480,142.359,480h227.182\r\n\t\tC430.479,480,480,429.426,480,367.395v-222.79C480,82.574,430.479,32,369.541,32z M175,250.954v0.67\r\n\t\tc0,10.882-9.09,20.376-19.875,20.376h-23.27C121.073,272,112,262.506,112,251.624v-0.67V149.512v-1.351\r\n\t\tc1-10.768,9.193-20.161,19.855-20.161h23.27c10.886,0,19.875,9.847,19.875,20.831V250.954z M297,395.74v2.68\r\n\t\tc0,11.439-8.872,17.58-20.1,17.58H256h-20.898C223.872,416,215,407.859,215,396.42v-0.68v-28.637\r\n\t\tc0-23.33,18.118-42.287,40.999-42.287c22.883,0,41.001,18.957,41.001,42.287V395.74z M400,250.954v0.67\r\n\t\tc0,10.882-9.071,20.376-19.855,20.376h-24.27C345.093,272,336,262.506,336,251.624v-0.67V149.512v-1.351\r\n\t\tc1-10.768,9.215-20.161,19.875-20.161h24.27c10.784,0,19.855,9.847,19.855,20.831V250.954z"},"children":[{"name":"path","attribs":{"d":"M369.541,32H142.359C81.521,32,32,82.574,32,144.604v222.79C32,429.426,81.521,480,142.359,480h227.182\r\n\t\tC430.479,480,480,429.426,480,367.395v-222.79C480,82.574,430.479,32,369.541,32z M175,250.954v0.67\r\n\t\tc0,10.882-9.09,20.376-19.875,20.376h-23.27C121.073,272,112,262.506,112,251.624v-0.67V149.512v-1.351\r\n\t\tc1-10.768,9.193-20.161,19.855-20.161h23.27c10.886,0,19.875,9.847,19.875,20.831V250.954z M297,395.74v2.68\r\n\t\tc0,11.439-8.872,17.58-20.1,17.58H256h-20.898C223.872,416,215,407.859,215,396.42v-0.68v-28.637\r\n\t\tc0-23.33,18.118-42.287,40.999-42.287c22.883,0,41.001,18.957,41.001,42.287V395.74z M400,250.954v0.67\r\n\t\tc0,10.882-9.071,20.376-19.855,20.376h-24.27C345.093,272,336,262.506,336,251.624v-0.67V149.512v-1.351\r\n\t\tc1-10.768,9.215-20.161,19.875-20.161h24.27c10.784,0,19.855,9.847,19.855,20.831V250.954z"},"children":[]}]}]}]};exports.outlet=outlet;var paintbrush={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M149.515,283.349c-51.921,0-83.939,45.661-83.939,95.085c0,22.691-10.071,39.153-33.575,48.104\r\n\t\tc17.907,34.678,87.777,41.157,117.515,35.797c35.642-6.426,80.077-24.873,90.654-76.969\r\n\t\tC252.48,324.739,201.434,283.349,149.515,283.349z"},"children":[{"name":"path","attribs":{"d":"M149.515,283.349c-51.921,0-83.939,45.661-83.939,95.085c0,22.691-10.071,39.153-33.575,48.104\r\n\t\tc17.907,34.678,87.777,41.157,117.515,35.797c35.642-6.426,80.077-24.873,90.654-76.969\r\n\t\tC252.48,324.739,201.434,283.349,149.515,283.349z"},"children":[]}]},{"name":"path","attribs":{"d":"M467.638,60.356c-12.955-12.948-29.964-17.292-44.92-5.35L247.598,209.1c-8.648-2.371-16.525-1.869-22.909,2.346\r\n\t\tL165.896,260.4c-1.611,1.611-1.545,4.304,0.066,5.914c0.499,0.501,1.064,0.79,1.697,0.98c0.642,0.034,1.264,0.059,1.899,0.103\r\n\t\tc0.019-0.002,0.036-0.01,0.054-0.014c47.938,3.432,91.034,36.754,89.3,89.506c-0.016,0.505-0.029,1.007-0.054,1.516\r\n\t\tc0.123,0.848,0.5,1.664,1.149,2.315c1.595,1.593,4.168,1.605,5.781,0.044c0.018-0.018,0.037-0.027,0.055-0.044\r\n\t\tc0.063-0.063,0.106-0.137,0.164-0.2l50.457-57.342c4.216-6.374,4.72-14.24,2.355-22.875l154.169-175.047\r\n\t\tC484.939,90.308,480.592,73.308,467.638,60.356z"},"children":[{"name":"path","attribs":{"d":"M467.638,60.356c-12.955-12.948-29.964-17.292-44.92-5.35L247.598,209.1c-8.648-2.371-16.525-1.869-22.909,2.346\r\n\t\tL165.896,260.4c-1.611,1.611-1.545,4.304,0.066,5.914c0.499,0.501,1.064,0.79,1.697,0.98c0.642,0.034,1.264,0.059,1.899,0.103\r\n\t\tc0.019-0.002,0.036-0.01,0.054-0.014c47.938,3.432,91.034,36.754,89.3,89.506c-0.016,0.505-0.029,1.007-0.054,1.516\r\n\t\tc0.123,0.848,0.5,1.664,1.149,2.315c1.595,1.593,4.168,1.605,5.781,0.044c0.018-0.018,0.037-0.027,0.055-0.044\r\n\t\tc0.063-0.063,0.106-0.137,0.164-0.2l50.457-57.342c4.216-6.374,4.72-14.24,2.355-22.875l154.169-175.047\r\n\t\tC484.939,90.308,480.592,73.308,467.638,60.356z"},"children":[]}]},{"name":"polygon","attribs":{"points":"165.887,260.409 165.896,260.4 165.888,260.407 \t"},"children":[{"name":"polygon","attribs":{"points":"165.887,260.409 165.896,260.4 165.888,260.407 \t"},"children":[]}]}]}]};exports.paintbrush=paintbrush;var paintbucket={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M128,64l39.667,72.102L16,288l197.604,192l163.328-160l58.33-12.307L160,32L128,64z M325.131,288H104.857L215,177.863\r\n\t\tL325.131,288z"},"children":[{"name":"path","attribs":{"d":"M128,64l39.667,72.102L16,288l197.604,192l163.328-160l58.33-12.307L160,32L128,64z M325.131,288H104.857L215,177.863\r\n\t\tL325.131,288z"},"children":[]}]},{"name":"path","attribs":{"d":"M435.262,307.693c0,0-60.734,66.179-60.732,99.207c0,33.028,27.192,59.803,60.731,59.801\r\n\t\tc33.548,0.002,60.74-26.772,60.739-59.801C496.001,373.872,435.262,307.693,435.262,307.693z"},"children":[{"name":"path","attribs":{"d":"M435.262,307.693c0,0-60.734,66.179-60.732,99.207c0,33.028,27.192,59.803,60.731,59.801\r\n\t\tc33.548,0.002,60.74-26.772,60.739-59.801C496.001,373.872,435.262,307.693,435.262,307.693z"},"children":[]}]}]}]};exports.paintbucket=paintbucket;var paperAirplane={"viewBox":"0 0 512 512","children":[{"name":"style","attribs":{"type":"text/css"},"children":[]},{"name":"path","attribs":{"class":"st0","d":"M32,272l128,48l16,160l80-112l112,112L480,32L32,272z M350.7,417.4L256,320l128-176L192,297.8l-82.6-31\r\n\tl322-172.5L350.7,417.4z"},"children":[]}]};exports.paperAirplane=paperAirplane;var paperclip={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M324.6,154.9c-6.3-0.1-11.4,5.1-11.4,11.6L313,361.3c-0.1,43.8-29.7,63.4-57.2,63.2c-27.5-0.3-57.1-20.4-57-64.1\r\n\tc0-33.5,0.2-167.7,0.3-234.8c0-15.4,6-27.4,16.8-33.7c10.6-6.2,24.4-6.1,35,0.3c10.8,6.5,16.7,18.6,16.7,34l-0.3,224.5\r\n\tc0,7.3-1.7,13.3-4.7,17.1c-1.9,2.4-4.4,3.8-6.9,3.8c-5.6-0.1-11.4-7.3-11.3-20.8c0,0,0.2-166.3,0.3-172.7c0-6.5-5.1-11.8-11.4-11.8\r\n\tc-6.3,0-11.4,5.2-11.4,11.7l-0.3,172.7c0,29,17.2,44.3,34.2,44.5c9.4,0.1,18.3-4.4,24.6-12.4c6.3-8,9.7-19,9.7-31.8l0.3-224.5\r\n\tc0-23.8-10.2-43.6-28.1-54.3c-17.5-10.6-40.3-10.8-57.9-0.5c-17.9,10.5-28.2,30.1-28.3,53.9c-0.1,67-0.2,201.2-0.3,234.8\r\n\tc-0.1,57.2,40.1,87.4,79.8,87.8c20.5,0.2,41.1-7.7,56.3-23.1c14.2-14.5,23.7-35.7,23.7-63.4l0.1-194.9\r\n\tC336,160.2,330.9,154.9,324.6,154.9z"},"children":[]}]};exports.paperclip=paperclip;var pause={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M224,435.8V76.1c0-6.7-5.4-12.1-12.2-12.1h-71.6c-6.8,0-12.2,5.4-12.2,12.1v359.7c0,6.7,5.4,12.2,12.2,12.2h71.6\r\n\t\tC218.6,448,224,442.6,224,435.8z"},"children":[{"name":"path","attribs":{"d":"M224,435.8V76.1c0-6.7-5.4-12.1-12.2-12.1h-71.6c-6.8,0-12.2,5.4-12.2,12.1v359.7c0,6.7,5.4,12.2,12.2,12.2h71.6\r\n\t\tC218.6,448,224,442.6,224,435.8z"},"children":[]}]},{"name":"path","attribs":{"d":"M371.8,64h-71.6c-6.7,0-12.2,5.4-12.2,12.1v359.7c0,6.7,5.4,12.2,12.2,12.2h71.6c6.7,0,12.2-5.4,12.2-12.2V76.1\r\n\t\tC384,69.4,378.6,64,371.8,64z"},"children":[{"name":"path","attribs":{"d":"M371.8,64h-71.6c-6.7,0-12.2,5.4-12.2,12.1v359.7c0,6.7,5.4,12.2,12.2,12.2h71.6c6.7,0,12.2-5.4,12.2-12.2V76.1\r\n\t\tC384,69.4,378.6,64,371.8,64z"},"children":[]}]}]}]};exports.pause=pause;var personAdd={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"429,328 429,277 480,277 480,235 429,235 429,184 387,184 387,235 336,235 336,277 387,277 387,328 \t"},"children":[{"name":"polygon","attribs":{"points":"429,328 429,277 480,277 480,235 429,235 429,184 387,184 387,235 336,235 336,277 387,277 387,328 \t"},"children":[]}]},{"name":"path","attribs":{"d":"M416,448c0,0,0-26.4-2.2-40.2c-1.8-10.9-16.9-25.3-81.1-48.9c-63.2-23.2-59.3-11.9-59.3-54.6c0-27.7,14.1-11.6,23.1-64.2\r\n\t\tc3.5-20.7,6.3-6.9,13.9-40.1c4-17.4-2.7-18.7-1.9-27c0.8-8.3,1.6-15.7,3.1-32.7C313.4,119.3,293.9,64,224,64\r\n\t\tc-69.9,0-89.4,55.3-87.5,76.4c1.5,16.9,2.3,24.4,3.1,32.7c0.8,8.3-5.9,9.6-1.9,27c7.6,33.1,10.4,19.3,13.9,40.1\r\n\t\tc9,52.6,23.1,36.5,23.1,64.2c0,42.8,3.9,31.5-59.3,54.6c-64.2,23.5-79.4,38-81.1,48.9C32,421.6,32,448,32,448h192H416z"},"children":[{"name":"path","attribs":{"d":"M416,448c0,0,0-26.4-2.2-40.2c-1.8-10.9-16.9-25.3-81.1-48.9c-63.2-23.2-59.3-11.9-59.3-54.6c0-27.7,14.1-11.6,23.1-64.2\r\n\t\tc3.5-20.7,6.3-6.9,13.9-40.1c4-17.4-2.7-18.7-1.9-27c0.8-8.3,1.6-15.7,3.1-32.7C313.4,119.3,293.9,64,224,64\r\n\t\tc-69.9,0-89.4,55.3-87.5,76.4c1.5,16.9,2.3,24.4,3.1,32.7c0.8,8.3-5.9,9.6-1.9,27c7.6,33.1,10.4,19.3,13.9,40.1\r\n\t\tc9,52.6,23.1,36.5,23.1,64.2c0,42.8,3.9,31.5-59.3,54.6c-64.2,23.5-79.4,38-81.1,48.9C32,421.6,32,448,32,448h192H416z"},"children":[]}]}]}]};exports.personAdd=personAdd;var personStalker={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M425.3,324.8c-41.4-15.7-38.9-9.4-38.9-38.5c0-18.8,9.3-11.9,15.2-47.7c2.3-14.1,4.2-4.7,9.1-27.3\r\n\t\tc2.6-11.8-1.8-12.7-1.2-18.3c0.5-5.6,1-10.7,2-22.2c1.2-14.4-11.6-52-57.4-52c-45.8,0-58.6,37.6-57.4,52c0.9,11.6,1.5,16.6,2,22.2\r\n\t\tc0.5,5.6-3.8,6.5-1.2,18.3c4.9,22.6,6.8,13.1,9.1,27.3c5.9,35.8,15.1,29,15.1,47.7c0,13.4,3.1,19-14.9,27.5\r\n\t\tc5.4,1.9,11.7,4.2,19.3,7.1c54.4,20.7,53.1,40.8,54.5,50.3c1,6.5,1.5,58.3,1.7,76.8H480c0,0,0-80.5-1.5-89.9\r\n\t\tC477.4,350.7,467.5,340.9,425.3,324.8z"},"children":[{"name":"path","attribs":{"d":"M425.3,324.8c-41.4-15.7-38.9-9.4-38.9-38.5c0-18.8,9.3-11.9,15.2-47.7c2.3-14.1,4.2-4.7,9.1-27.3\r\n\t\tc2.6-11.8-1.8-12.7-1.2-18.3c0.5-5.6,1-10.7,2-22.2c1.2-14.4-11.6-52-57.4-52c-45.8,0-58.6,37.6-57.4,52c0.9,11.6,1.5,16.6,2,22.2\r\n\t\tc0.5,5.6-3.8,6.5-1.2,18.3c4.9,22.6,6.8,13.1,9.1,27.3c5.9,35.8,15.1,29,15.1,47.7c0,13.4,3.1,19-14.9,27.5\r\n\t\tc5.4,1.9,11.7,4.2,19.3,7.1c54.4,20.7,53.1,40.8,54.5,50.3c1,6.5,1.5,58.3,1.7,76.8H480c0,0,0-80.5-1.5-89.9\r\n\t\tC477.4,350.7,467.5,340.9,425.3,324.8z"},"children":[]}]},{"name":"path","attribs":{"d":"M357,448c0,0,0-14.1-0.2-30.4c-0.2-18.6-0.7-40-1.7-46.4c-1.5-9.5-14.3-22.2-68.6-42.9c-7.5-2.8-13.8-5.1-19.3-7.1\r\n\t\tc-33.3-11.8-30.9-15.7-30.9-48c0-24.3,12-8.5,19.6-54.6c3-18.2,5.4-6.1,11.7-35.2c3.4-15.2-2.3-16.4-1.6-23.7\r\n\t\tc0.7-7.3,1.4-13.8,2.6-28.7c1.6-18.5-14.9-67.1-74.1-67.1c-59.2,0-75.6,48.5-74.1,67.1c1.2,14.9,1.9,21.4,2.7,28.7\r\n\t\tc0.7,7.3-5,8.4-1.6,23.7c6.4,29.1,8.8,17,11.8,35.2c7.6,46.1,19.5,30.3,19.5,54.6c0,37.6,3.3,34.8-50.2,55.1\r\n\t\tc-54.3,20.7-67.1,33.4-68.6,42.9C32,383.3,32,448,32,448h162.5H357z"},"children":[{"name":"path","attribs":{"d":"M357,448c0,0,0-14.1-0.2-30.4c-0.2-18.6-0.7-40-1.7-46.4c-1.5-9.5-14.3-22.2-68.6-42.9c-7.5-2.8-13.8-5.1-19.3-7.1\r\n\t\tc-33.3-11.8-30.9-15.7-30.9-48c0-24.3,12-8.5,19.6-54.6c3-18.2,5.4-6.1,11.7-35.2c3.4-15.2-2.3-16.4-1.6-23.7\r\n\t\tc0.7-7.3,1.4-13.8,2.6-28.7c1.6-18.5-14.9-67.1-74.1-67.1c-59.2,0-75.6,48.5-74.1,67.1c1.2,14.9,1.9,21.4,2.7,28.7\r\n\t\tc0.7,7.3-5,8.4-1.6,23.7c6.4,29.1,8.8,17,11.8,35.2c7.6,46.1,19.5,30.3,19.5,54.6c0,37.6,3.3,34.8-50.2,55.1\r\n\t\tc-54.3,20.7-67.1,33.4-68.6,42.9C32,383.3,32,448,32,448h162.5H357z"},"children":[]}]}]}]};exports.personStalker=personStalker;var person={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M448,448c0,0,0-26.4-2.2-40.2c-1.8-10.9-16.9-25.3-81.1-48.9c-63.2-23.2-59.3-11.9-59.3-54.6c0-27.7,14.1-11.6,23.1-64.2\r\n\tc3.5-20.7,6.3-6.9,13.9-40.1c4-17.4-2.7-18.7-1.9-27c0.8-8.3,1.6-15.7,3.1-32.7C345.4,119.3,325.9,64,256,64\r\n\tc-69.9,0-89.4,55.3-87.5,76.4c1.5,16.9,2.3,24.4,3.1,32.7c0.8,8.3-5.9,9.6-1.9,27c7.6,33.1,10.4,19.3,13.9,40.1\r\n\tc9,52.6,23.1,36.5,23.1,64.2c0,42.8,3.9,31.5-59.3,54.6c-64.2,23.5-79.4,38-81.1,48.9C64,421.6,64,448,64,448h192H448z"},"children":[]}]};exports.person=person;var pieGraph={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M32.6,256h32H256V64.6v-32c-5-0.4-10.6-0.6-16-0.6C125.1,32,32,125.1,32,240C32,245.4,32.2,251,32.6,256z"},"children":[{"name":"path","attribs":{"d":"M32.6,256h32H256V64.6v-32c-5-0.4-10.6-0.6-16-0.6C125.1,32,32,125.1,32,240C32,245.4,32.2,251,32.6,256z"},"children":[]}]},{"name":"path","attribs":{"d":"M109.8,402.2C147.9,449.6,206.4,480,272,480c114.9,0,208-93.1,208-208c0-65.6-30.4-124.1-77.8-162.2\r\n\t\tC370.5,84.3,331,67.9,288,64.6V288H64.6C67.9,331,84.3,370.5,109.8,402.2z"},"children":[{"name":"path","attribs":{"d":"M109.8,402.2C147.9,449.6,206.4,480,272,480c114.9,0,208-93.1,208-208c0-65.6-30.4-124.1-77.8-162.2\r\n\t\tC370.5,84.3,331,67.9,288,64.6V288H64.6C67.9,331,84.3,370.5,109.8,402.2z"},"children":[]}]}]}]};exports.pieGraph=pieGraph;var pin={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M331.8,228C331.8,228,331.8,228,331.8,228c-1.2-0.5-2.4-1-3.5-1.7c-7-4-12.2-10.9-13.9-19.2L295.9,89.4l-0.2-5.8\r\n\tc0-7.1,4.1-10.2,10-13l0,0c0.7-0.3,1.4-0.6,2.1-0.9c7.2-3.4,12.1-7.8,12.1-16.3c0-20.1-6.5-21.4-18.2-21.4h-91.3\r\n\tc-11.7,0-18.2,1.2-18.2,21.4c0,8.5,4.9,12.9,12.1,16.3c0.7,0.3,1.4,0.5,2.1,0.9c0,0,0,0,0,0c5.9,2.9,10,6,10,13l-0.2,5.8\r\n\tl-18.5,117.7c-1.7,8.3-6.9,15.2-13.9,19.2c-1.1,0.7-2.3,1.2-3.5,1.7c0,0,0,0,0,0c-19.7,10.2-36.2,30.8-36.2,54.7\r\n\tc0,15.9,3.5,21.3,15.2,21.3H240l12,176h8l12-176h80.8c11.7,0,15.2-4.7,15.2-21.3C368,258.8,351.5,238.2,331.8,228z"},"children":[]}]};exports.pin=pin;var pinpoint={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,32C132.3,32,32,132.3,32,256c0,123.7,100.3,224,224,224c123.7,0,224-100.3,224-224C480,132.3,379.7,32,256,32z\r\n\t M391.8,391.8c-32.5,32.5-74.6,51.9-119.8,55.6L264,384h-16l-7.9,63.3c-45.3-3.7-87.4-23.1-119.8-55.6\r\n\tc-32.5-32.5-51.9-74.6-55.6-119.8L128,264v-16l-63.3-7.9c3.7-45.3,23.1-87.4,55.6-119.8c32.5-32.5,74.6-51.9,119.8-55.6L248,128h16\r\n\tl7.9-63.3c45.3,3.7,87.4,23.1,119.8,55.6c32.5,32.5,51.9,74.6,55.6,119.8L384,248v16l63.3,7.9C443.6,317.2,424.2,359.3,391.8,391.8z\r\n\t"},"children":[]}]};exports.pinpoint=pinpoint;var pizza={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M394.619,130.445c-42.658-18.924-89.266-28.472-138.649-28.425c-49.373-0.047-99.27,10.262-138.641,27.979\r\n\t\tc-7.396,3.312-14.004,8.957-9.296,19.479S255.941,480,255.941,480l147.621-329.874C406.452,143.25,404.318,134.748,394.619,130.445\r\n\t\tz M191.983,192.015c-17.67,0-31.995-14.323-31.995-31.993c0-17.669,14.325-31.992,31.995-31.992\r\n\t\tc17.671,0,31.996,14.323,31.996,31.992C223.979,177.691,209.654,192.015,191.983,192.015z M255.975,338.981\r\n\t\tc-17.671,0-31.995-14.323-31.995-31.993s14.324-31.992,31.995-31.992c17.67,0,31.995,14.322,31.995,31.992\r\n\t\tS273.645,338.981,255.975,338.981z M319.965,224.007c-17.67,0-31.995-14.322-31.995-31.992s14.325-31.993,31.995-31.993\r\n\t\tc17.671,0,31.996,14.323,31.996,31.993S337.636,224.007,319.965,224.007z"},"children":[{"name":"path","attribs":{"d":"M394.619,130.445c-42.658-18.924-89.266-28.472-138.649-28.425c-49.373-0.047-99.27,10.262-138.641,27.979\r\n\t\tc-7.396,3.312-14.004,8.957-9.296,19.479S255.941,480,255.941,480l147.621-329.874C406.452,143.25,404.318,134.748,394.619,130.445\r\n\t\tz M191.983,192.015c-17.67,0-31.995-14.323-31.995-31.993c0-17.669,14.325-31.992,31.995-31.992\r\n\t\tc17.671,0,31.996,14.323,31.996,31.992C223.979,177.691,209.654,192.015,191.983,192.015z M255.975,338.981\r\n\t\tc-17.671,0-31.995-14.323-31.995-31.993s14.324-31.992,31.995-31.992c17.67,0,31.995,14.322,31.995,31.992\r\n\t\tS273.645,338.981,255.975,338.981z M319.965,224.007c-17.67,0-31.995-14.322-31.995-31.992s14.325-31.993,31.995-31.993\r\n\t\tc17.671,0,31.996,14.323,31.996,31.993S337.636,224.007,319.965,224.007z"},"children":[]}]},{"name":"path","attribs":{"d":"M421.79,66c-47.808-20.603-106.867-33.977-165.811-34c-58.931,0-116.944,12.136-165.82,33.446\r\n\t\tC85.83,67.334,80,71.016,80,79.227c0,2.523,0.907,4.922,0.907,4.922l7.98,19.194c2.531,4.865,7.944,8.18,13.798,8.18\r\n\t\tc1.645,0,3.936-0.331,6.65-1.476c44.9-18.929,94.471-29.588,146.644-29.564c52.175-0.023,105.63,11.64,146.634,29.561\r\n\t\tc3.296,1.44,5.173,1.472,6.663,1.472c6.009,0,11.158-3.274,13.727-8.053l8.04-19.342c0.577-1.558,0.957-3.287,0.957-4.768\r\n\t\tC432,72,427.614,68.51,421.79,66z"},"children":[{"name":"path","attribs":{"d":"M421.79,66c-47.808-20.603-106.867-33.977-165.811-34c-58.931,0-116.944,12.136-165.82,33.446\r\n\t\tC85.83,67.334,80,71.016,80,79.227c0,2.523,0.907,4.922,0.907,4.922l7.98,19.194c2.531,4.865,7.944,8.18,13.798,8.18\r\n\t\tc1.645,0,3.936-0.331,6.65-1.476c44.9-18.929,94.471-29.588,146.644-29.564c52.175-0.023,105.63,11.64,146.634,29.561\r\n\t\tc3.296,1.44,5.173,1.472,6.663,1.472c6.009,0,11.158-3.274,13.727-8.053l8.04-19.342c0.577-1.558,0.957-3.287,0.957-4.768\r\n\t\tC432,72,427.614,68.51,421.79,66z"},"children":[]}]}]}]};exports.pizza=pizza;var plane={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M281.7,311.9c0.4-6.9,8.3-4.5,8.3-4.5l62,12.6l128,48.7c0-24-3.8-26.5-9.4-30.7L288,207c0,0-4.9-60-4.9-112.9\r\n\tc0-24.5-11.8-78.1-27.1-78.1s-27.1,54.4-27.1,78.1c0,50.2-4.9,112.9-4.9,112.9L41.4,338c-7.1,5-9.4,7.7-9.4,30.7L160,320l61.9-12.6\r\n\tc0,0,7.9-2.4,8.3,4.5c0.4,6.9-1.2,69.1,5.9,102.1c0.9,4.4-2.5,4.7-4.8,7.4l-51.9,32.8c-1.7,1.9-2.5,7.3-2.5,7.3l-1,18.5l68-16l12,32\r\n\tl12-32l68,16l-1-18.5c0.1,0-0.7-5.4-2.4-7.3l-51.9-32.8c-2.3-2.7-5.7-3-4.8-7.4C282.7,381,281.3,318.8,281.7,311.9z"},"children":[]}]};exports.plane=plane;var planet={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M96.298,265.705C101.315,349.55,170.887,416,255.988,416c37.957,0,72.818-13.227,100.25-35.311\r\n\t\tC317.23,369.554,274,353.922,229.562,334.617C180.731,313.404,134.957,289.677,96.298,265.705z"},"children":[{"name":"path","attribs":{"d":"M96.298,265.705C101.315,349.55,170.887,416,255.988,416c37.957,0,72.818-13.227,100.25-35.311\r\n\t\tC317.23,369.554,274,353.922,229.562,334.617C180.731,313.404,134.957,289.677,96.298,265.705z"},"children":[]}]},{"name":"path","attribs":{"d":"M107.381,196.629c39.911,27.11,92.07,55.13,147.679,79.287c43.591,18.938,87.113,34.555,125.859,45.164\r\n\t\tc6.496,1.779,12.834,3.406,18.988,4.883c1.685-3.462,3.249-6.994,4.688-10.591c7.341-18.358,11.386-38.393,11.386-59.372\r\n\t\tc0-3.26-0.109-6.493-0.301-9.705C410.661,162.45,341.09,96,255.988,96c-37.956,0-72.817,13.227-100.248,35.311\r\n\t\tc-18.296,14.729-33.284,33.398-43.67,54.726C110.383,189.499,108.819,193.032,107.381,196.629z"},"children":[{"name":"path","attribs":{"d":"M107.381,196.629c39.911,27.11,92.07,55.13,147.679,79.287c43.591,18.938,87.113,34.555,125.859,45.164\r\n\t\tc6.496,1.779,12.834,3.406,18.988,4.883c1.685-3.462,3.249-6.994,4.688-10.591c7.341-18.358,11.386-38.393,11.386-59.372\r\n\t\tc0-3.26-0.109-6.493-0.301-9.705C410.661,162.45,341.09,96,255.988,96c-37.956,0-72.817,13.227-100.248,35.311\r\n\t\tc-18.296,14.729-33.284,33.398-43.67,54.726C110.383,189.499,108.819,193.032,107.381,196.629z"},"children":[]}]},{"name":"path","attribs":{"d":"M429.667,284.531c-1.256,11.562-2.377,13.627-5.891,24.695c16.878,12.039,31.032,23.706,41.137,33.938\r\n\t\tc3.285,3.328,5.875,6.225,7.912,8.702c-1.684,0.084-3.557,0.133-5.631,0.133c-21.886,0-54.026-5.5-90.501-15.488\r\n\t\tc-39.467-10.806-83.73-26.685-128.008-45.92c-58.931-25.6-114.158-55.541-155.51-84.307c-19.081-13.275-35.027-26.226-46.113-37.45\r\n\t\tc-3.285-3.328-5.875-6.225-7.912-8.702c1.683-0.084,3.556-0.133,5.632-0.133c15.308,0,35.637,2.694,58.952,7.729\r\n\t\tc5.825-10.004,6.979-12.701,14.663-21.409C92.663,137,66.625,130.522,44.784,128c-24.403-2.818-40.34,5.521-43.984,17.14\r\n\t\tC-10.274,180.457,95,258.718,235.936,319.942C330.498,361.022,417.104,384,467.194,384c24.565,0,40.338-5.521,43.982-17.141\r\n\t\tC517.516,346.643,486.965,320,429.667,284.531z"},"children":[{"name":"path","attribs":{"d":"M429.667,284.531c-1.256,11.562-2.377,13.627-5.891,24.695c16.878,12.039,31.032,23.706,41.137,33.938\r\n\t\tc3.285,3.328,5.875,6.225,7.912,8.702c-1.684,0.084-3.557,0.133-5.631,0.133c-21.886,0-54.026-5.5-90.501-15.488\r\n\t\tc-39.467-10.806-83.73-26.685-128.008-45.92c-58.931-25.6-114.158-55.541-155.51-84.307c-19.081-13.275-35.027-26.226-46.113-37.45\r\n\t\tc-3.285-3.328-5.875-6.225-7.912-8.702c1.683-0.084,3.556-0.133,5.632-0.133c15.308,0,35.637,2.694,58.952,7.729\r\n\t\tc5.825-10.004,6.979-12.701,14.663-21.409C92.663,137,66.625,130.522,44.784,128c-24.403-2.818-40.34,5.521-43.984,17.14\r\n\t\tC-10.274,180.457,95,258.718,235.936,319.942C330.498,361.022,417.104,384,467.194,384c24.565,0,40.338-5.521,43.982-17.141\r\n\t\tC517.516,346.643,486.965,320,429.667,284.531z"},"children":[]}]}]}]};exports.planet=planet;var play={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M405.2,232.9L126.8,67.2c-3.4-2-6.9-3.2-10.9-3.2c-10.9,0-19.8,9-19.8,20H96v344h0.1c0,11,8.9,20,19.8,20\r\n\tc4.1,0,7.5-1.4,11.2-3.4l278.1-165.5c6.6-5.5,10.8-13.8,10.8-23.1C416,246.7,411.8,238.5,405.2,232.9z"},"children":[]}]};exports.play=play;var playstation={"viewBox":"0 0 512 512","children":[{"name":"style","attribs":{"type":"text/css"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"class":"st0","d":"M399.8,203c-0.8-17.1-3.3-34.5-10.8-50.1c-4.1-8.6-9.7-16.5-16.5-23.2c-6.3-6.4-13.6-11.7-21.3-16.3\r\n\t\tc-17.1-10.2-37.5-17-84.4-31S192,64,192,64v358.3l79.9,25.7c0,0,0.1-198.8,0.1-299.5v-3.8c0-9.3,7.5-16.8,16.1-16.8h0.5\r\n\t\tc8.5,0,15.5,7.5,15.5,16.8v2.2v131.1c11,5.3,29.2,9.3,41.8,9.1c8.3,0.2,16.7-1.7,24-5.7c7.6-4.1,13.9-10.4,18.4-17.8\r\n\t\tc5.1-8.3,8.2-17.8,9.9-27.3C400.1,225.5,400.2,214.2,399.8,203z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M399.8,203c-0.8-17.1-3.3-34.5-10.8-50.1c-4.1-8.6-9.7-16.5-16.5-23.2c-6.3-6.4-13.6-11.7-21.3-16.3\r\n\t\tc-17.1-10.2-37.5-17-84.4-31S192,64,192,64v358.3l79.9,25.7c0,0,0.1-198.8,0.1-299.5v-3.8c0-9.3,7.5-16.8,16.1-16.8h0.5\r\n\t\tc8.5,0,15.5,7.5,15.5,16.8v2.2v131.1c11,5.3,29.2,9.3,41.8,9.1c8.3,0.2,16.7-1.7,24-5.7c7.6-4.1,13.9-10.4,18.4-17.8\r\n\t\tc5.1-8.3,8.2-17.8,9.9-27.3C400.1,225.5,400.2,214.2,399.8,203z"},"children":[]}]},{"name":"path","attribs":{"class":"st0","d":"M86.7,357.8c27.4-9.8,89.3-29.5,89.3-29.5v-47.2c0,0-76.5,24.8-111.3,37.1c-8.6,3.1-17.3,5.9-25.7,9.5\r\n\t\tc-9.8,4.1-19.4,8.7-28.1,14.8c-3.8,2.6-7.2,5.9-9.2,10.1c-2,4.2-2.2,9.2-0.5,13.6c2,5.1,5.8,9.3,10.1,12.6\r\n\t\tc7.8,5.9,17.1,9.5,26.4,12.2c28.4,9.4,58.4,14,88.4,13.3c14.5-0.2,36-1.9,50-4.4v-42c0,0-11,2.5-41.3,12.5c-4.6,1.5-9.2,3.3-14,4.3\r\n\t\tc-7.1,1.6-14.4,2.1-21.6,2.2c-6.5-0.3-13.2-0.7-19.3-3.1c-2.2-1-4.6-2.2-5.5-4.6c-0.8-2,0.3-4,1.7-5.4\r\n\t\tC78.9,360.9,82.9,359.3,86.7,357.8z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M86.7,357.8c27.4-9.8,89.3-29.5,89.3-29.5v-47.2c0,0-76.5,24.8-111.3,37.1c-8.6,3.1-17.3,5.9-25.7,9.5\r\n\t\tc-9.8,4.1-19.4,8.7-28.1,14.8c-3.8,2.6-7.2,5.9-9.2,10.1c-2,4.2-2.2,9.2-0.5,13.6c2,5.1,5.8,9.3,10.1,12.6\r\n\t\tc7.8,5.9,17.1,9.5,26.4,12.2c28.4,9.4,58.4,14,88.4,13.3c14.5-0.2,36-1.9,50-4.4v-42c0,0-11,2.5-41.3,12.5c-4.6,1.5-9.2,3.3-14,4.3\r\n\t\tc-7.1,1.6-14.4,2.1-21.6,2.2c-6.5-0.3-13.2-0.7-19.3-3.1c-2.2-1-4.6-2.2-5.5-4.6c-0.8-2,0.3-4,1.7-5.4\r\n\t\tC78.9,360.9,82.9,359.3,86.7,357.8z"},"children":[]}]},{"name":"path","attribs":{"class":"st0","d":"M512,345.9c-0.1-6-3.7-11.2-7.9-15c-7.1-6.3-15.9-10.3-24.7-13.5c-5.5-1.9-9.3-3.3-14.7-5\r\n\t\tc-25.2-8.2-51.9-11.2-78.3-11.3c-8,0.3-23.1,0.5-31,1.4c-21.9,2.5-67.3,15.4-67.3,15.4v48.8c0,0,67.5-21.6,96.5-31.8\r\n\t\tc9.7-3.3,20.1-4.6,30.3-4.6c6.5,0.2,13.2,0.7,19.4,3.1c2.2,0.9,4.5,2.2,5.5,4.5c0.9,2.6-0.9,5-2.9,6.5c-4.7,3.8-10.7,5.3-16.2,7.4\r\n\t\tC379.7,366.3,288,396.5,288,396.5v47c0,0,117.2-39.6,170.8-58.8c8.9-3.3,17.9-6.1,26.4-10.4c7.9-4,15.8-8.6,21.8-15.3\r\n\t\tC510.1,355.4,512,351,512,345.9z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M512,345.9c-0.1-6-3.7-11.2-7.9-15c-7.1-6.3-15.9-10.3-24.7-13.5c-5.5-1.9-9.3-3.3-14.7-5\r\n\t\tc-25.2-8.2-51.9-11.2-78.3-11.3c-8,0.3-23.1,0.5-31,1.4c-21.9,2.5-67.3,15.4-67.3,15.4v48.8c0,0,67.5-21.6,96.5-31.8\r\n\t\tc9.7-3.3,20.1-4.6,30.3-4.6c6.5,0.2,13.2,0.7,19.4,3.1c2.2,0.9,4.5,2.2,5.5,4.5c0.9,2.6-0.9,5-2.9,6.5c-4.7,3.8-10.7,5.3-16.2,7.4\r\n\t\tC379.7,366.3,288,396.5,288,396.5v47c0,0,117.2-39.6,170.8-58.8c8.9-3.3,17.9-6.1,26.4-10.4c7.9-4,15.8-8.6,21.8-15.3\r\n\t\tC510.1,355.4,512,351,512,345.9z"},"children":[]}]}]}]};exports.playstation=playstation;var plusCircled={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,32C132.3,32,32,132.3,32,256s100.3,224,224,224s224-100.3,224-224S379.7,32,256,32z M384,272H272v112h-32V272H128v-32\r\n\t\th112V128h32v112h112V272z"},"children":[{"name":"path","attribs":{"d":"M256,32C132.3,32,32,132.3,32,256s100.3,224,224,224s224-100.3,224-224S379.7,32,256,32z M384,272H272v112h-32V272H128v-32\r\n\t\th112V128h32v112h112V272z"},"children":[]}]}]}]};exports.plusCircled=plusCircled;var plusRound={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M417.4,224H288V94.6c0-16.9-14.3-30.6-32-30.6c-17.7,0-32,13.7-32,30.6V224H94.6C77.7,224,64,238.3,64,256\r\n\tc0,17.7,13.7,32,30.6,32H224v129.4c0,16.9,14.3,30.6,32,30.6c17.7,0,32-13.7,32-30.6V288h129.4c16.9,0,30.6-14.3,30.6-32\r\n\tC448,238.3,434.3,224,417.4,224z"},"children":[]}]};exports.plusRound=plusRound;var plus={"viewBox":"0 0 512 512","children":[{"name":"polygon","attribs":{"points":"448,224 288,224 288,64 224,64 224,224 64,224 64,288 224,288 224,448 288,448 288,288 448,288 "},"children":[]}]};exports.plus=plus;var podium={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"32","y":"256","width":"128","height":"192"},"children":[{"name":"rect","attribs":{"x":"32","y":"256","width":"128","height":"192"},"children":[]}]},{"name":"rect","attribs":{"x":"192","y":"160","width":"128","height":"288"},"children":[{"name":"rect","attribs":{"x":"192","y":"160","width":"128","height":"288"},"children":[]}]},{"name":"rect","attribs":{"x":"352","y":"320","width":"128","height":"128"},"children":[{"name":"rect","attribs":{"x":"352","y":"320","width":"128","height":"128"},"children":[]}]}]}]};exports.podium=podium;var pound={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M125.2,352.3H32v-54.6h101.2l13.1-83.3H47v-54.6h107.2L176,32h63.9l-21.8,127.7h105.6L345.5,32h63.1l-21.8,127.7H480v54.6\r\n\t\tH378.1l-12.3,83.3H465v54.6H358.5L336,480h-63.1l21.8-127.7H188.3L166.5,480h-63.1L125.2,352.3z M209.4,214.3L197,297.7h105.6\r\n\t\tl12.3-83.3H209.4z"},"children":[{"name":"path","attribs":{"d":"M125.2,352.3H32v-54.6h101.2l13.1-83.3H47v-54.6h107.2L176,32h63.9l-21.8,127.7h105.6L345.5,32h63.1l-21.8,127.7H480v54.6\r\n\t\tH378.1l-12.3,83.3H465v54.6H358.5L336,480h-63.1l21.8-127.7H188.3L166.5,480h-63.1L125.2,352.3z M209.4,214.3L197,297.7h105.6\r\n\t\tl12.3-83.3H209.4z"},"children":[]}]}]}]};exports.pound=pound;var power={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,256c-17.7,0-32-14.3-32-32V64c0-17.7,14.3-32,32-32s32,14.3,32,32v160C288,241.7,273.7,256,256,256z"},"children":[{"name":"path","attribs":{"d":"M256,256c-17.7,0-32-14.3-32-32V64c0-17.7,14.3-32,32-32s32,14.3,32,32v160C288,241.7,273.7,256,256,256z"},"children":[]}]},{"name":"path","attribs":{"d":"M379,68.8L379,68.8c-5-3-10.8-4.8-17-4.8c-17.7,0-32,14.3-32,32c0,6.2,1.8,12,4.8,16.9c2,3.2,4.6,6.1,7.6,8.4\r\n\t\tc1.2,0.9,2.4,1.7,3.7,2.5c8.1,5.6,15.8,11.9,23,19.1C399.4,173.1,416,213.3,416,256c0,42.7-16.6,82.9-46.9,113.1\r\n\t\tC338.9,399.4,298.7,416,256,416c-42.7,0-82.9-16.6-113.1-46.9C112.6,338.9,96,298.7,96,256c0-42.7,16.6-82.9,46.9-113.1\r\n\t\tc7.1-7.1,14.8-13.5,22.9-19c1.4-0.8,2.6-1.6,3.9-2.6c3-2.3,5.5-5.1,7.5-8.3c3.1-4.9,4.8-10.7,4.8-16.9c0-17.7-14.3-32-32-32\r\n\t\tc-6.2,0-12,1.8-16.9,4.8l-0.1-0.1C72.2,108.8,32,177.7,32,256c0,123.7,100.3,224,224,224c123.7,0,224-100.3,224-224\r\n\t\tC480,177.7,439.8,108.8,379,68.8z"},"children":[{"name":"path","attribs":{"d":"M379,68.8L379,68.8c-5-3-10.8-4.8-17-4.8c-17.7,0-32,14.3-32,32c0,6.2,1.8,12,4.8,16.9c2,3.2,4.6,6.1,7.6,8.4\r\n\t\tc1.2,0.9,2.4,1.7,3.7,2.5c8.1,5.6,15.8,11.9,23,19.1C399.4,173.1,416,213.3,416,256c0,42.7-16.6,82.9-46.9,113.1\r\n\t\tC338.9,399.4,298.7,416,256,416c-42.7,0-82.9-16.6-113.1-46.9C112.6,338.9,96,298.7,96,256c0-42.7,16.6-82.9,46.9-113.1\r\n\t\tc7.1-7.1,14.8-13.5,22.9-19c1.4-0.8,2.6-1.6,3.9-2.6c3-2.3,5.5-5.1,7.5-8.3c3.1-4.9,4.8-10.7,4.8-16.9c0-17.7-14.3-32-32-32\r\n\t\tc-6.2,0-12,1.8-16.9,4.8l-0.1-0.1C72.2,108.8,32,177.7,32,256c0,123.7,100.3,224,224,224c123.7,0,224-100.3,224-224\r\n\t\tC480,177.7,439.8,108.8,379,68.8z"},"children":[]}]}]}]};exports.power=power;var pricetag={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M471,261.4L471,261.4C471,261.4,471,261.4,471,261.4L260.9,49.8c0,0,0,0,0,0l-1.5-1.5c0,0-0.4,0-0.4,0\r\n\t\tc-8.3-7.9-17.9-12-29.9-12.3v0l-99.7-3.7l-4.4-0.2c-11.2,0.2-22.2,4.5-30.7,13.1L45.1,94.3c-9,9-13.1,20.9-13.1,32.7c0,0,0,0,0,0.1\r\n\t\tl0.3,4.2l6.7,97.3c0,0.1,0,0.2,0,0.2v1.9c0,0,0,0,0,0c1,8.7,4.5,17.3,10.4,24.4l5.5,5.4l206.3,208.8l3.1,3.1\r\n\t\tc11.9,10.5,30,10,41.3-1.4l165.4-166.6C482.8,292.6,483,273.3,471,261.4z M144,192c-26.5,0-48-21.5-48-48s21.5-48,48-48\r\n\t\ts48,21.5,48,48S170.5,192,144,192z"},"children":[{"name":"path","attribs":{"d":"M471,261.4L471,261.4C471,261.4,471,261.4,471,261.4L260.9,49.8c0,0,0,0,0,0l-1.5-1.5c0,0-0.4,0-0.4,0\r\n\t\tc-8.3-7.9-17.9-12-29.9-12.3v0l-99.7-3.7l-4.4-0.2c-11.2,0.2-22.2,4.5-30.7,13.1L45.1,94.3c-9,9-13.1,20.9-13.1,32.7c0,0,0,0,0,0.1\r\n\t\tl0.3,4.2l6.7,97.3c0,0.1,0,0.2,0,0.2v1.9c0,0,0,0,0,0c1,8.7,4.5,17.3,10.4,24.4l5.5,5.4l206.3,208.8l3.1,3.1\r\n\t\tc11.9,10.5,30,10,41.3-1.4l165.4-166.6C482.8,292.6,483,273.3,471,261.4z M144,192c-26.5,0-48-21.5-48-48s21.5-48,48-48\r\n\t\ts48,21.5,48,48S170.5,192,144,192z"},"children":[]}]}]}]};exports.pricetag=pricetag;var pricetags={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M472,239.2L472,239.2C472,239.2,471.9,239.2,472,239.2L282.1,48.1c0,0,0,0,0,0l-1.4-1.4c0,0-0.5,0-0.5,0\r\n\t\tc-7.5-7.2-16.1-10.9-27.1-11.1v0l-89.9-3.3l-3.9-0.1c-10.1,0.1-20,4.1-27.7,11.8l-27.1,27.2c7.4-6.6,16.6-10,26-10.1l3.8,0.1\r\n\t\tl89.8,3.3v0c11,0.2,19.7,3.9,27.2,11.1c0,0,0.4,0,0.5,0l1.4,1.4c0,0,0,0,0,0L443,268.1c0,0,0,0,0,0v0c10,10.8,10.7,28.2,0,38.9\r\n\t\tl29-28.9C482.6,267.4,482,250,472,239.2z"},"children":[{"name":"path","attribs":{"d":"M472,239.2L472,239.2C472,239.2,471.9,239.2,472,239.2L282.1,48.1c0,0,0,0,0,0l-1.4-1.4c0,0-0.5,0-0.5,0\r\n\t\tc-7.5-7.2-16.1-10.9-27.1-11.1v0l-89.9-3.3l-3.9-0.1c-10.1,0.1-20,4.1-27.7,11.8l-27.1,27.2c7.4-6.6,16.6-10,26-10.1l3.8,0.1\r\n\t\tl89.8,3.3v0c11,0.2,19.7,3.9,27.2,11.1c0,0,0.4,0,0.5,0l1.4,1.4c0,0,0,0,0,0L443,268.1c0,0,0,0,0,0v0c10,10.8,10.7,28.2,0,38.9\r\n\t\tl29-28.9C482.6,267.4,482,250,472,239.2z"},"children":[]}]},{"name":"path","attribs":{"d":"M428,282.5c0,0,0.3,0,0.3,0L238.6,91.4c0,0,0,0,0,0l-1.3-1.4c0,0-0.3,0-0.3,0c-7.5-7.2-15.9-10.9-26.9-11.1v0l-90.1-3.3\r\n\t\tl-4-0.1c-9.2,0.1-18.2,3.4-25.6,9.8c-0.3,0.3-0.7,0.6-1,0.9c-0.4,0.4-0.8,0.8-1.2,1.2l-44.3,44.5c-8.1,8.1-11.9,18.9-11.9,29.5\r\n\t\tc0,0,0,0,0,0.1l0.1,3.8l5.9,87.9c0,0.1,0,0.1,0,0.2v1.7c0,0,0,0,0,0c1,7.9,4.2,15.6,9.6,22l5.1,4.9L239,470.4l2.8,2.8\r\n\t\tc10.7,9.4,27.1,9,37.3-1.3l13.1-13.2c0.5-0.4,0.9-0.8,1.4-1.3l26.9-27c-0.2,0.1-0.3,0.2-0.5,0.4l108.3-109.3\r\n\t\tC438.9,310.8,439,293.3,428,282.5L428,282.5z M110.6,139.5c6.6-4,14.3-6.3,22.6-6.3c23.9,0,43.4,19.4,43.4,43.4\r\n\t\tc0,8.3-2.3,16-6.3,22.6c-7.6,12.5-21.3,20.8-37,20.8c-23.9,0-43.4-19.4-43.4-43.4C89.8,160.8,98.1,147.1,110.6,139.5z"},"children":[{"name":"path","attribs":{"d":"M428,282.5c0,0,0.3,0,0.3,0L238.6,91.4c0,0,0,0,0,0l-1.3-1.4c0,0-0.3,0-0.3,0c-7.5-7.2-15.9-10.9-26.9-11.1v0l-90.1-3.3\r\n\t\tl-4-0.1c-9.2,0.1-18.2,3.4-25.6,9.8c-0.3,0.3-0.7,0.6-1,0.9c-0.4,0.4-0.8,0.8-1.2,1.2l-44.3,44.5c-8.1,8.1-11.9,18.9-11.9,29.5\r\n\t\tc0,0,0,0,0,0.1l0.1,3.8l5.9,87.9c0,0.1,0,0.1,0,0.2v1.7c0,0,0,0,0,0c1,7.9,4.2,15.6,9.6,22l5.1,4.9L239,470.4l2.8,2.8\r\n\t\tc10.7,9.4,27.1,9,37.3-1.3l13.1-13.2c0.5-0.4,0.9-0.8,1.4-1.3l26.9-27c-0.2,0.1-0.3,0.2-0.5,0.4l108.3-109.3\r\n\t\tC438.9,310.8,439,293.3,428,282.5L428,282.5z M110.6,139.5c6.6-4,14.3-6.3,22.6-6.3c23.9,0,43.4,19.4,43.4,43.4\r\n\t\tc0,8.3-2.3,16-6.3,22.6c-7.6,12.5-21.3,20.8-37,20.8c-23.9,0-43.4-19.4-43.4-43.4C89.8,160.8,98.1,147.1,110.6,139.5z"},"children":[]}]}]}]};exports.pricetags=pricetags;var printer={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M423.8,128H384V64H128v64H88.2C60.3,128,32,144.9,32,182.6v123.8c0,38,28.3,61.6,56.2,61.6c0,0,30.4,0,39.8,0v112h5h11h224\r\n\t\th8h8V368c10.3,0,39.8,0,39.8,0c27.9,0,56.2-22.6,56.2-53.6V182.6C480,146.9,451.8,128,423.8,128z M368,464H144V288h224V464z\r\n\t\t M368,128H144V80h224V128z M416,192h-17v-16h17V192z"},"children":[{"name":"path","attribs":{"d":"M423.8,128H384V64H128v64H88.2C60.3,128,32,144.9,32,182.6v123.8c0,38,28.3,61.6,56.2,61.6c0,0,30.4,0,39.8,0v112h5h11h224\r\n\t\th8h8V368c10.3,0,39.8,0,39.8,0c27.9,0,56.2-22.6,56.2-53.6V182.6C480,146.9,451.8,128,423.8,128z M368,464H144V288h224V464z\r\n\t\t M368,128H144V80h224V128z M416,192h-17v-16h17V192z"},"children":[]}]},{"name":"rect","attribs":{"x":"160","y":"320","width":"192","height":"16"},"children":[{"name":"rect","attribs":{"x":"160","y":"320","width":"192","height":"16"},"children":[]}]},{"name":"rect","attribs":{"x":"160","y":"368","width":"192","height":"16"},"children":[{"name":"rect","attribs":{"x":"160","y":"368","width":"192","height":"16"},"children":[]}]},{"name":"rect","attribs":{"x":"160","y":"416","width":"192","height":"16"},"children":[{"name":"rect","attribs":{"x":"160","y":"416","width":"192","height":"16"},"children":[]}]}]}]};exports.printer=printer;var pullRequest={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M128,64c-35.29,0-64,28.71-64,64c0,23.637,12.89,44.307,32,55.391v177.219C76.89,371.693,64,392.363,64,416\r\n\t\tc0,35.29,28.71,64,64,64s64-28.71,64-64c0-23.637-12.89-44.307-32-55.391V183.391c19.11-11.084,32-31.754,32-55.391\r\n\t\tC192,92.71,163.29,64,128,64z M128,448c-17.673,0-32-14.327-32-32s14.327-32,32-32s32,14.327,32,32S145.673,448,128,448z M128,160\r\n\t\tc-17.673,0-32-14.327-32-32s14.327-32,32-32s32,14.327,32,32S145.673,160,128,160z"},"children":[{"name":"path","attribs":{"d":"M128,64c-35.29,0-64,28.71-64,64c0,23.637,12.89,44.307,32,55.391v177.219C76.89,371.693,64,392.363,64,416\r\n\t\tc0,35.29,28.71,64,64,64s64-28.71,64-64c0-23.637-12.89-44.307-32-55.391V183.391c19.11-11.084,32-31.754,32-55.391\r\n\t\tC192,92.71,163.29,64,128,64z M128,448c-17.673,0-32-14.327-32-32s14.327-32,32-32s32,14.327,32,32S145.673,448,128,448z M128,160\r\n\t\tc-17.673,0-32-14.327-32-32s14.327-32,32-32s32,14.327,32,32S145.673,160,128,160z"},"children":[]}]},{"name":"path","attribs":{"d":"M415,360.034V204.989c0-33.987-10.49-61.002-31.18-80.294c-22.111-20.618-54.314-30.388-95.82-29.106V32l-96,96l96,96v-64\r\n\t\tc26.5,0,42.67,2.642,52.175,11.504c7.183,6.698,10.825,17.964,10.825,33.485v156.196c-18.562,11.217-31,31.589-31,54.814\r\n\t\tc0,35.29,28.71,64,64,64s64-28.71,64-64C448,391.951,434.662,370.969,415,360.034z M384,448c-17.673,0-32-14.327-32-32\r\n\t\ts14.327-32,32-32s32,14.327,32,32S401.673,448,384,448z"},"children":[{"name":"path","attribs":{"d":"M415,360.034V204.989c0-33.987-10.49-61.002-31.18-80.294c-22.111-20.618-54.314-30.388-95.82-29.106V32l-96,96l96,96v-64\r\n\t\tc26.5,0,42.67,2.642,52.175,11.504c7.183,6.698,10.825,17.964,10.825,33.485v156.196c-18.562,11.217-31,31.589-31,54.814\r\n\t\tc0,35.29,28.71,64,64,64s64-28.71,64-64C448,391.951,434.662,370.969,415,360.034z M384,448c-17.673,0-32-14.327-32-32\r\n\t\ts14.327-32,32-32s32,14.327,32,32S401.673,448,384,448z"},"children":[]}]}]}]};exports.pullRequest=pullRequest;var qrScanner={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M96,124.171c0-6.938,5.232-12.171,12.171-12.171H176V64h-66.829C75.717,64,48,90.717,48,124.171V192h48V124.171z"},"children":[{"name":"path","attribs":{"d":"M96,124.171c0-6.938,5.232-12.171,12.171-12.171H176V64h-66.829C75.717,64,48,90.717,48,124.171V192h48V124.171z"},"children":[]}]},{"name":"path","attribs":{"d":"M403.579,64H336v48h67.219c6.938,0,12.781,5.232,12.781,12.171V192h48v-67.829C464,90.717,437.033,64,403.579,64z"},"children":[{"name":"path","attribs":{"d":"M403.579,64H336v48h67.219c6.938,0,12.781,5.232,12.781,12.171V192h48v-67.829C464,90.717,437.033,64,403.579,64z"},"children":[]}]},{"name":"path","attribs":{"d":"M416,386.829c0,6.938-5.232,12.171-12.171,12.171H336v49h67.829C437.283,448,464,420.283,464,386.829V320h-48V386.829z"},"children":[{"name":"path","attribs":{"d":"M416,386.829c0,6.938-5.232,12.171-12.171,12.171H336v49h67.829C437.283,448,464,420.283,464,386.829V320h-48V386.829z"},"children":[]}]},{"name":"path","attribs":{"d":"M108.171,399C101.232,399,96,393.768,96,386.829V320H48v66.829C48,420.283,75.717,448,109.171,448H176v-49H108.171z"},"children":[{"name":"path","attribs":{"d":"M108.171,399C101.232,399,96,393.768,96,386.829V320H48v66.829C48,420.283,75.717,448,109.171,448H176v-49H108.171z"},"children":[]}]}]}]};exports.qrScanner=qrScanner;var quote={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M192,64c-40.646,0-72.483,11.229-94.627,33.373C75.229,119.517,64,151.354,64,192v256h160V192h-96\r\n\t\t\tc0-23.056,4.922-39.666,14.627-49.373C152.334,132.922,168.944,128,192,128"},"children":[{"name":"path","attribs":{"d":"M192,64c-40.646,0-72.483,11.229-94.627,33.373C75.229,119.517,64,151.354,64,192v256h160V192h-96\r\n\t\t\tc0-23.056,4.922-39.666,14.627-49.373C152.334,132.922,168.944,128,192,128"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M416,64c-40.646,0-72.483,11.229-94.627,33.373C299.229,119.517,288,151.354,288,192v256h160V192h-96\r\n\t\t\tc0-23.056,4.922-39.666,14.627-49.373C376.334,132.922,392.944,128,416,128"},"children":[{"name":"path","attribs":{"d":"M416,64c-40.646,0-72.483,11.229-94.627,33.373C299.229,119.517,288,151.354,288,192v256h160V192h-96\r\n\t\t\tc0-23.056,4.922-39.666,14.627-49.373C376.334,132.922,392.944,128,416,128"},"children":[]}]}]}]}]}]};exports.quote=quote;var radioWaves={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"cx":"256","cy":"256","r":"64"},"children":[{"name":"circle","attribs":{"cx":"256","cy":"256","r":"64"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M144,256c0-36.9,18.553-69.208,46.314-87.034l-23.141-24.512c-6.26,4.608-12.18,9.833-17.684,15.663\r\n\t\t\tC125.314,185.729,112,219.781,112,256c0,36.219,13.314,70.271,37.49,95.883c5.504,5.829,11.424,11.055,17.684,15.662\r\n\t\t\tl23.141-24.511C162.553,325.208,144,292.9,144,256z"},"children":[{"name":"path","attribs":{"d":"M144,256c0-36.9,18.553-69.208,46.314-87.034l-23.141-24.512c-6.26,4.608-12.18,9.833-17.684,15.663\r\n\t\t\tC125.314,185.729,112,219.781,112,256c0,36.219,13.314,70.271,37.49,95.883c5.504,5.829,11.424,11.055,17.684,15.662\r\n\t\t\tl23.141-24.511C162.553,325.208,144,292.9,144,256z"},"children":[]}]},{"name":"path","attribs":{"d":"M368,256c0,36.9-18.553,69.208-46.314,87.034l23.141,24.511c6.26-4.607,12.18-9.833,17.684-15.662\r\n\t\t\tC386.686,326.271,400,292.219,400,256c0-36.219-13.314-70.271-37.49-95.882c-5.504-5.83-11.424-11.055-17.684-15.663\r\n\t\t\tl-23.141,24.512C349.447,186.792,368,219.1,368,256z"},"children":[{"name":"path","attribs":{"d":"M368,256c0,36.9-18.553,69.208-46.314,87.034l23.141,24.511c6.26-4.607,12.18-9.833,17.684-15.662\r\n\t\t\tC386.686,326.271,400,292.219,400,256c0-36.219-13.314-70.271-37.49-95.882c-5.504-5.83-11.424-11.055-17.684-15.663\r\n\t\t\tl-23.141,24.512C349.447,186.792,368,219.1,368,256z"},"children":[]}]},{"name":"path","attribs":{"d":"M64,256c0-55.578,25.251-104.907,64.263-135.817L105.433,96c-5.999,5-11.739,10.396-17.197,16.178\r\n\t\t\tc-17.622,18.669-31.462,40.417-41.134,64.641C37.081,201.917,32,228.556,32,256c0,27.443,5.081,54.084,15.102,79.181\r\n\t\t\tc9.672,24.226,23.512,45.973,41.134,64.642c5.458,5.781,11.198,11.177,17.197,16.178l22.829-24.183\r\n\t\t\tC89.251,360.907,64,311.578,64,256z"},"children":[{"name":"path","attribs":{"d":"M64,256c0-55.578,25.251-104.907,64.263-135.817L105.433,96c-5.999,5-11.739,10.396-17.197,16.178\r\n\t\t\tc-17.622,18.669-31.462,40.417-41.134,64.641C37.081,201.917,32,228.556,32,256c0,27.443,5.081,54.084,15.102,79.181\r\n\t\t\tc9.672,24.226,23.512,45.973,41.134,64.642c5.458,5.781,11.198,11.177,17.197,16.178l22.829-24.183\r\n\t\t\tC89.251,360.907,64,311.578,64,256z"},"children":[]}]},{"name":"path","attribs":{"d":"M448,256c0,55.578-25.251,104.907-64.262,135.817l22.828,23.848c6-5.001,11.74-10.062,17.198-15.843\r\n\t\t\tc17.622-18.669,31.462-40.416,41.134-64.642C474.918,310.084,480,283.443,480,256c0-27.444-5.082-54.083-15.102-79.181\r\n\t\t\tc-9.672-24.225-23.512-45.972-41.134-64.641C418.307,106.396,412.566,101,406.566,96l-22.829,24.183\r\n\t\t\tC422.749,151.093,448,200.422,448,256z"},"children":[{"name":"path","attribs":{"d":"M448,256c0,55.578-25.251,104.907-64.262,135.817l22.828,23.848c6-5.001,11.74-10.062,17.198-15.843\r\n\t\t\tc17.622-18.669,31.462-40.416,41.134-64.642C474.918,310.084,480,283.443,480,256c0-27.444-5.082-54.083-15.102-79.181\r\n\t\t\tc-9.672-24.225-23.512-45.972-41.134-64.641C418.307,106.396,412.566,101,406.566,96l-22.829,24.183\r\n\t\t\tC422.749,151.093,448,200.422,448,256z"},"children":[]}]}]}]}]}]};exports.radioWaves=radioWaves;var record={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,464c114.9,0,208-93.1,208-208c0-114.9-93.1-208-208-208C141.1,48,48,141.1,48,256C48,370.9,141.1,464,256,464z"},"children":[]}]};exports.record=record;var refresh={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M416,352l96-111.9h-64.7c-2.3-27.9-10.5-54-23.5-77.3c-27.4-49.2-75.8-85.1-133-95.6c-0.7-0.1-1.5-0.3-2.2-0.4\r\n\tc-0.5-0.1-0.9-0.2-1.4-0.2C277.1,64.9,266.6,64,256,64c-0.1,0-0.3,0-0.4,0c0,0,0,0,0,0c-90.9,0.2-167,63.6-186.7,148.6\r\n\tc0,0,0,0.1,0,0.1c-0.3,1.1-0.5,2.2-0.7,3.3c-0.1,0.5-0.2,0.9-0.3,1.4c-0.1,0.7-0.3,1.4-0.4,2.1c-0.2,0.9-0.3,1.7-0.5,2.6\r\n\tc-0.1,0.4-0.1,0.7-0.2,1.1c-0.2,1.2-0.4,2.4-0.6,3.6c0,0.1,0,0.1,0,0.2c-1,6.3-1.6,12.7-1.9,19.1c0,0.3,0,0.6,0,0.8\r\n\tc-0.1,1.4-0.1,2.7-0.2,4.1c0,1.6-0.1,3.3-0.1,5c0,1.7,0,3.3,0.1,5c0,1.4,0.1,2.7,0.2,4.1c0,0.3,0,0.6,0,0.9c0.3,6.5,1,12.9,1.9,19.1\r\n\tc0,0.1,0,0.1,0,0.2c0.2,1.2,0.4,2.4,0.6,3.6c0.1,0.4,0.1,0.7,0.2,1.1c0.2,0.9,0.3,1.8,0.5,2.6c0.1,0.7,0.3,1.4,0.4,2.1\r\n\tc0.1,0.5,0.2,1,0.3,1.4c0.2,1.1,0.5,2.2,0.7,3.2c0,0,0,0.1,0,0.1c19.7,85,96.1,148.4,187.1,148.6c42.9-0.1,83.1-14.2,116.9-40.7\r\n\tl7.5-5.9l-43.2-46.2l-6.2,4.6c-22.1,16.3-47.5,24.2-75,24.2c-70.6,0-128-57-128-128c0-71,57.4-128,128-128\r\n\tc66.4,0,122.8,46.6,129.5,112H312L416,352z"},"children":[]}]};exports.refresh=refresh;var replyAll={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M304.5,192v-80L152.7,255.8L304.5,390v-91.9c68,0,107.9,8.9,159.1,101.9C463.6,400,457.5,192,304.5,192z"},"children":[{"name":"path","attribs":{"d":"M304.5,192v-80L152.7,255.8L304.5,390v-91.9c68,0,107.9,8.9,159.1,101.9C463.6,400,457.5,192,304.5,192z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"47.5,256 191.5,382.5 191.5,324 109.3,256 191.5,177.4 191.5,120.4 \t\t"},"children":[{"name":"polygon","attribs":{"points":"47.5,256 191.5,382.5 191.5,324 109.3,256 191.5,177.4 191.5,120.4 \t\t"},"children":[]}]}]}]}]}]};exports.replyAll=replyAll;var reply={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M448,400c0,0-36.8-208-224-208v-80L64,256l160,134.4v-92.3C325.6,298.1,395,307,448,400z"},"children":[{"name":"path","attribs":{"d":"M448,400c0,0-36.8-208-224-208v-80L64,256l160,134.4v-92.3C325.6,298.1,395,307,448,400z"},"children":[]}]}]}]};exports.reply=reply;var ribbonA={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M352,32l-82.9,176.612c39.996,3.608,75.273,23.554,99.096,53.128L432,128L352,32z"},"children":[{"name":"path","attribs":{"d":"M352,32l-82.9,176.612c39.996,3.608,75.273,23.554,99.096,53.128L432,128L352,32z"},"children":[]}]},{"name":"path","attribs":{"d":"M160,32l82.9,176.612c-39.996,3.608-75.273,23.554-99.096,53.128L80,128L160,32z"},"children":[{"name":"path","attribs":{"d":"M160,32l82.9,176.612c-39.996,3.608-75.273,23.554-99.096,53.128L80,128L160,32z"},"children":[]}]},{"name":"polygon","attribs":{"points":"269.092,32 256,32 176,32 228.572,144 256,144 283.428,144 336,32 \t"},"children":[{"name":"polygon","attribs":{"points":"269.092,32 256,32 176,32 228.572,144 256,144 283.428,144 336,32 \t"},"children":[]}]},{"name":"path","attribs":{"d":"M256,224c-70.692,0-128,57.308-128,128s57.308,128,128,128s128-57.308,128-128S326.692,224,256,224z M256,448\r\n\t\tc-53.02,0-96-42.98-96-96s42.98-96,96-96s96,42.98,96,96S309.02,448,256,448z"},"children":[{"name":"path","attribs":{"d":"M256,224c-70.692,0-128,57.308-128,128s57.308,128,128,128s128-57.308,128-128S326.692,224,256,224z M256,448\r\n\t\tc-53.02,0-96-42.98-96-96s42.98-96,96-96s96,42.98,96,96S309.02,448,256,448z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,264c-48.523,0-88,39.477-88,88s39.477,88,88,88s88-39.477,88-88S304.523,264,256,264z"},"children":[{"name":"path","attribs":{"d":"M256,264c-48.523,0-88,39.477-88,88s39.477,88,88,88s88-39.477,88-88S304.523,264,256,264z"},"children":[]}]}]}]};exports.ribbonA=ribbonA;var ribbonB={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,72c-48.523,0-88,39.477-88,88s39.477,88,88,88s88-39.477,88-88S304.523,72,256,72z"},"children":[{"name":"path","attribs":{"d":"M256,72c-48.523,0-88,39.477-88,88s39.477,88,88,88s88-39.477,88-88S304.523,72,256,72z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,32c-70.692,0-128,57.308-128,128s57.308,128,128,128s128-57.308,128-128S326.692,32,256,32z M256,256\r\n\t\t\tc-53.02,0-96-42.98-96-96s42.98-96,96-96s96,42.98,96,96S309.02,256,256,256z"},"children":[{"name":"path","attribs":{"d":"M256,32c-70.692,0-128,57.308-128,128s57.308,128,128,128s128-57.308,128-128S326.692,32,256,32z M256,256\r\n\t\t\tc-53.02,0-96-42.98-96-96s42.98-96,96-96s96,42.98,96,96S309.02,256,256,256z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M147.092,254.21L64,400h96l48,80l48-105.807l33.641-74.154C278.848,302.623,267.585,304,256,304\r\n\t\t\tC212.495,304,173.497,284.707,147.092,254.21z"},"children":[{"name":"path","attribs":{"d":"M147.092,254.21L64,400h96l48,80l48-105.807l33.641-74.154C278.848,302.623,267.585,304,256,304\r\n\t\t\tC212.495,304,173.497,284.707,147.092,254.21z"},"children":[]}]},{"name":"path","attribs":{"d":"M364.908,254.211c-15.077,17.412-34.26,31.172-56.043,39.774l-44.752,98.092L304,480l48-80h96L364.908,254.211z"},"children":[{"name":"path","attribs":{"d":"M364.908,254.211c-15.077,17.412-34.26,31.172-56.043,39.774l-44.752,98.092L304,480l48-80h96L364.908,254.211z"},"children":[]}]}]}]}]}]};exports.ribbonB=ribbonB;var sadOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M399.283,283.797c-5.1-16.379-14.22-29.995-33.802-37.263s-35.265-2.877-49.868,6.15\r\n\t\t\t\tc-7.615,4.707-10.029,14.019-4.214,22.123c2.049,2.854,5.019,4.717,8.376,5.963c5.059,1.876,10.584,1.678,14.965-1.036\r\n\t\t\t\tc4.778-2.957,10.644-6.526,19.607-3.199c9.01,3.343,11.103,9.839,12.752,15.161c1.551,4.952,5.62,8.724,10.693,10.606\r\n\t\t\t\tc3.357,1.246,6.816,1.774,10.236,0.938C396.895,301.056,401.944,292.333,399.283,283.797z"},"children":[{"name":"path","attribs":{"d":"M399.283,283.797c-5.1-16.379-14.22-29.995-33.802-37.263s-35.265-2.877-49.868,6.15\r\n\t\t\t\tc-7.615,4.707-10.029,14.019-4.214,22.123c2.049,2.854,5.019,4.717,8.376,5.963c5.059,1.876,10.584,1.678,14.965-1.036\r\n\t\t\t\tc4.778-2.957,10.644-6.526,19.607-3.199c9.01,3.343,11.103,9.839,12.752,15.161c1.551,4.952,5.62,8.724,10.693,10.606\r\n\t\t\t\tc3.357,1.246,6.816,1.774,10.236,0.938C396.895,301.056,401.944,292.333,399.283,283.797z"},"children":[]}]},{"name":"path","attribs":{"d":"M196.549,252.685c-14.603-9.027-30.286-13.418-49.868-6.15s-28.702,20.884-33.802,37.263\r\n\t\t\t\tc-2.661,8.536,2.389,17.259,11.255,19.443c3.42,0.837,6.878,0.309,10.236-0.938c5.073-1.883,9.143-5.654,10.693-10.606\r\n\t\t\t\tc1.649-5.322,3.743-11.818,12.752-15.161c8.964-3.327,14.829,0.242,19.607,3.199c4.381,2.714,9.907,2.912,14.965,1.036\r\n\t\t\t\tc3.357-1.246,6.327-3.108,8.376-5.963C206.578,266.703,204.164,257.392,196.549,252.685z"},"children":[{"name":"path","attribs":{"d":"M196.549,252.685c-14.603-9.027-30.286-13.418-49.868-6.15s-28.702,20.884-33.802,37.263\r\n\t\t\t\tc-2.661,8.536,2.389,17.259,11.255,19.443c3.42,0.837,6.878,0.309,10.236-0.938c5.073-1.883,9.143-5.654,10.693-10.606\r\n\t\t\t\tc1.649-5.322,3.743-11.818,12.752-15.161c8.964-3.327,14.829,0.242,19.607,3.199c4.381,2.714,9.907,2.912,14.965,1.036\r\n\t\t\t\tc3.357-1.246,6.327-3.108,8.376-5.963C206.578,266.703,204.164,257.392,196.549,252.685z"},"children":[]}]}]}]},{"name":"path","attribs":{"d":"M256,32C132.288,32,32,132.288,32,256s100.288,224,224,224s224-100.288,224-224S379.712,32,256,32z M391.765,391.765\r\n\t\t\tC355.5,428.028,307.285,448,256,448s-99.5-19.972-135.765-56.235C83.972,355.5,64,307.285,64,256s19.972-99.5,56.235-135.765\r\n\t\t\tC156.5,83.972,204.715,64,256,64s99.5,19.972,135.765,56.235C428.028,156.5,448,204.715,448,256S428.028,355.5,391.765,391.765z"},"children":[{"name":"path","attribs":{"d":"M256,32C132.288,32,32,132.288,32,256s100.288,224,224,224s224-100.288,224-224S379.712,32,256,32z M391.765,391.765\r\n\t\t\tC355.5,428.028,307.285,448,256,448s-99.5-19.972-135.765-56.235C83.972,355.5,64,307.285,64,256s19.972-99.5,56.235-135.765\r\n\t\t\tC156.5,83.972,204.715,64,256,64s99.5,19.972,135.765,56.235C428.028,156.5,448,204.715,448,256S428.028,355.5,391.765,391.765z"},"children":[]}]}]}]},{"name":"path","attribs":{"d":"M349.119,359.176C348.013,357.59,321,320,256,320c-65.261,0-92.014,37.59-93.121,39.176\r\n\t\tc-5.057,7.247-3.283,17.221,3.963,22.278c2.789,1.946,5.982,2.881,9.143,2.881c5.052,0,10.024-2.388,13.135-6.845\r\n\t\tC189.296,377.239,208.02,352,256,352c48,0,66.703,25.239,66.879,25.49c3.11,4.457,8.081,6.845,13.134,6.845\r\n\t\tc3.161,0,6.354-0.935,9.144-2.881C352.402,376.396,354.177,366.423,349.119,359.176z"},"children":[{"name":"path","attribs":{"d":"M349.119,359.176C348.013,357.59,321,320,256,320c-65.261,0-92.014,37.59-93.121,39.176\r\n\t\tc-5.057,7.247-3.283,17.221,3.963,22.278c2.789,1.946,5.982,2.881,9.143,2.881c5.052,0,10.024-2.388,13.135-6.845\r\n\t\tC189.296,377.239,208.02,352,256,352c48,0,66.703,25.239,66.879,25.49c3.11,4.457,8.081,6.845,13.134,6.845\r\n\t\tc3.161,0,6.354-0.935,9.144-2.881C352.402,376.396,354.177,366.423,349.119,359.176z"},"children":[]}]}]}]};exports.sadOutline=sadOutline;var sad={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,32C132.288,32,32,132.288,32,256s100.288,224,224,224s224-100.288,224-224S379.712,32,256,32z M145.062,291.696\r\n\t\tc-1.551,4.952-5.62,8.724-10.693,10.606c-3.358,1.246-6.816,1.774-10.236,0.938c-8.866-2.185-13.916-10.907-11.255-19.443\r\n\t\tc5.101-16.379,14.22-29.995,33.802-37.263s35.265-2.877,49.868,6.15c7.615,4.707,10.029,14.019,4.214,22.123\r\n\t\tc-2.049,2.854-5.019,4.717-8.376,5.963c-5.059,1.876-10.584,1.678-14.965-1.036c-4.778-2.957-10.643-6.526-19.607-3.199\r\n\t\tC148.805,279.878,146.712,286.374,145.062,291.696z M345.156,381.454c-2.789,1.946-5.982,2.881-9.144,2.881\r\n\t\tc-5.053,0-10.023-2.388-13.134-6.845C322.703,377.239,304,352,256,352c-47.98,0-66.704,25.239-66.879,25.49\r\n\t\tc-3.111,4.457-8.083,6.845-13.135,6.845c-3.161,0-6.354-0.935-9.143-2.881c-7.246-5.058-9.021-15.031-3.963-22.278\r\n\t\tC163.986,357.59,190.739,320,256,320c65,0,92.013,37.59,93.119,39.176C354.177,366.423,352.402,376.396,345.156,381.454z\r\n\t\t M388.029,303.24c-3.42,0.837-6.879,0.309-10.236-0.938c-5.073-1.883-9.143-5.654-10.693-10.606\r\n\t\tc-1.649-5.322-3.742-11.818-12.752-15.161c-8.964-3.327-14.829,0.242-19.607,3.199c-4.381,2.714-9.906,2.912-14.965,1.036\r\n\t\tc-3.357-1.246-6.327-3.108-8.376-5.963c-5.815-8.104-3.401-17.416,4.214-22.123c14.604-9.027,30.286-13.418,49.868-6.15\r\n\t\ts28.702,20.884,33.802,37.263C401.944,292.333,396.895,301.056,388.029,303.24z"},"children":[{"name":"path","attribs":{"d":"M256,32C132.288,32,32,132.288,32,256s100.288,224,224,224s224-100.288,224-224S379.712,32,256,32z M145.062,291.696\r\n\t\tc-1.551,4.952-5.62,8.724-10.693,10.606c-3.358,1.246-6.816,1.774-10.236,0.938c-8.866-2.185-13.916-10.907-11.255-19.443\r\n\t\tc5.101-16.379,14.22-29.995,33.802-37.263s35.265-2.877,49.868,6.15c7.615,4.707,10.029,14.019,4.214,22.123\r\n\t\tc-2.049,2.854-5.019,4.717-8.376,5.963c-5.059,1.876-10.584,1.678-14.965-1.036c-4.778-2.957-10.643-6.526-19.607-3.199\r\n\t\tC148.805,279.878,146.712,286.374,145.062,291.696z M345.156,381.454c-2.789,1.946-5.982,2.881-9.144,2.881\r\n\t\tc-5.053,0-10.023-2.388-13.134-6.845C322.703,377.239,304,352,256,352c-47.98,0-66.704,25.239-66.879,25.49\r\n\t\tc-3.111,4.457-8.083,6.845-13.135,6.845c-3.161,0-6.354-0.935-9.143-2.881c-7.246-5.058-9.021-15.031-3.963-22.278\r\n\t\tC163.986,357.59,190.739,320,256,320c65,0,92.013,37.59,93.119,39.176C354.177,366.423,352.402,376.396,345.156,381.454z\r\n\t\t M388.029,303.24c-3.42,0.837-6.879,0.309-10.236-0.938c-5.073-1.883-9.143-5.654-10.693-10.606\r\n\t\tc-1.649-5.322-3.742-11.818-12.752-15.161c-8.964-3.327-14.829,0.242-19.607,3.199c-4.381,2.714-9.906,2.912-14.965,1.036\r\n\t\tc-3.357-1.246-6.327-3.108-8.376-5.963c-5.815-8.104-3.401-17.416,4.214-22.123c14.604-9.027,30.286-13.418,49.868-6.15\r\n\t\ts28.702,20.884,33.802,37.263C401.944,292.333,396.895,301.056,388.029,303.24z"},"children":[]}]}]}]};exports.sad=sad;var scissors={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M405.178,115.667c13.314-32.667,17.309-64-5.326-83.667L255.726,224l-16.976,23c0,0-27.627,40.011-37.28,58.667\r\n\t\ts-19.306,39.333-27.294,54c-7.01,12.871-10.438,15.221-14.322,11.548c-0.506-0.591-1.026-1.168-1.553-1.736\r\n\t\tc-0.037-0.047-0.073-0.09-0.11-0.138c-1.143-1.472-2.75-3.002-4.635-4.467C144.195,356.795,132.548,352,119.92,352\r\n\t\tC89.037,352,64,380.653,64,416s25.037,64,55.92,64c25.282,0,46.635-19.205,53.553-45.561l-0.004,0.043\r\n\t\tc0,0,13.355-41.482,32.661-71.482c19.306-30,49.596-43,49.596-43l31.954-32C287.68,288,391.863,148.334,405.178,115.667z\r\n\t\t M119.92,448c-15.418,0-27.918-14.353-27.918-32s12.5-32,27.918-32c15.419,0,27.918,14.353,27.918,32S135.339,448,119.92,448z\r\n\t\t M256,288c-8.836,0-16-7.163-16-16c0-8.836,7.164-16,16-16c8.837,0,16,7.164,16,16C272,280.837,264.837,288,256,288z"},"children":[{"name":"path","attribs":{"d":"M405.178,115.667c13.314-32.667,17.309-64-5.326-83.667L255.726,224l-16.976,23c0,0-27.627,40.011-37.28,58.667\r\n\t\ts-19.306,39.333-27.294,54c-7.01,12.871-10.438,15.221-14.322,11.548c-0.506-0.591-1.026-1.168-1.553-1.736\r\n\t\tc-0.037-0.047-0.073-0.09-0.11-0.138c-1.143-1.472-2.75-3.002-4.635-4.467C144.195,356.795,132.548,352,119.92,352\r\n\t\tC89.037,352,64,380.653,64,416s25.037,64,55.92,64c25.282,0,46.635-19.205,53.553-45.561l-0.004,0.043\r\n\t\tc0,0,13.355-41.482,32.661-71.482c19.306-30,49.596-43,49.596-43l31.954-32C287.68,288,391.863,148.334,405.178,115.667z\r\n\t\t M119.92,448c-15.418,0-27.918-14.353-27.918-32s12.5-32,27.918-32c15.419,0,27.918,14.353,27.918,32S135.339,448,119.92,448z\r\n\t\t M256,288c-8.836,0-16-7.163-16-16c0-8.836,7.164-16,16-16c8.837,0,16,7.164,16,16C272,280.837,264.837,288,256,288z"},"children":[]}]},{"name":"path","attribs":{"d":"M207.28,265.255c9.18-14.114,17.671-26.43,18.304-27.346l0.143-0.208l0.15-0.203l16.976-23l0.038-0.052l0.039-0.052\r\n\t\tl2.941-3.918L111.896,32c-22.634,19.667-18.64,51-5.326,83.667C116.523,140.087,177.249,224.29,207.28,265.255z"},"children":[{"name":"path","attribs":{"d":"M207.28,265.255c9.18-14.114,17.671-26.43,18.304-27.346l0.143-0.208l0.15-0.203l16.976-23l0.038-0.052l0.039-0.052\r\n\t\tl2.941-3.918L111.896,32c-22.634,19.667-18.64,51-5.326,83.667C116.523,140.087,177.249,224.29,207.28,265.255z"},"children":[]}]},{"name":"path","attribs":{"d":"M391.828,352c-12.628,0-24.275,4.795-33.637,12.874c-1.885,1.465-3.492,2.995-4.635,4.467\r\n\t\tc-0.037,0.048-0.072,0.091-0.109,0.138c-0.526,0.568-1.047,1.146-1.553,1.736c-3.884,3.673-7.312,1.323-14.322-11.548\r\n\t\tc-7.988-14.667-17.641-35.344-27.294-54c-1.77-3.421-4.146-7.561-6.843-12.038c-1.272,1.712-2.264,3.043-2.932,3.938l-0.688,0.924\r\n\t\tl-0.813,0.815l-28.688,28.729c10.433,6.855,24.565,18.276,35.306,34.965c19.305,30,32.66,71.482,32.66,71.482l-0.004-0.043\r\n\t\tC345.193,460.795,366.546,480,391.828,480C422.711,480,448,451.347,448,416S422.711,352,391.828,352z M391.828,448\r\n\t\tc-15.42,0-27.918-14.353-27.918-32s12.498-32,27.918-32c15.418,0,27.918,14.353,27.918,32S407.246,448,391.828,448z"},"children":[{"name":"path","attribs":{"d":"M391.828,352c-12.628,0-24.275,4.795-33.637,12.874c-1.885,1.465-3.492,2.995-4.635,4.467\r\n\t\tc-0.037,0.048-0.072,0.091-0.109,0.138c-0.526,0.568-1.047,1.146-1.553,1.736c-3.884,3.673-7.312,1.323-14.322-11.548\r\n\t\tc-7.988-14.667-17.641-35.344-27.294-54c-1.77-3.421-4.146-7.561-6.843-12.038c-1.272,1.712-2.264,3.043-2.932,3.938l-0.688,0.924\r\n\t\tl-0.813,0.815l-28.688,28.729c10.433,6.855,24.565,18.276,35.306,34.965c19.305,30,32.66,71.482,32.66,71.482l-0.004-0.043\r\n\t\tC345.193,460.795,366.546,480,391.828,480C422.711,480,448,451.347,448,416S422.711,352,391.828,352z M391.828,448\r\n\t\tc-15.42,0-27.918-14.353-27.918-32s12.498-32,27.918-32c15.418,0,27.918,14.353,27.918,32S407.246,448,391.828,448z"},"children":[]}]}]}]};exports.scissors=scissors;var search={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M445,386.7l-84.8-85.9c13.8-24.1,21-50.9,21-77.9c0-87.6-71.2-158.9-158.6-158.9C135.2,64,64,135.3,64,222.9\r\n\tc0,87.6,71.2,158.9,158.6,158.9c27.9,0,55.5-7.7,80.1-22.4l84.4,85.6c1.9,1.9,4.6,3.1,7.3,3.1c2.7,0,5.4-1.1,7.3-3.1l43.3-43.8\r\n\tC449,397.1,449,390.7,445,386.7z M222.6,125.9c53.4,0,96.8,43.5,96.8,97c0,53.5-43.4,97-96.8,97c-53.4,0-96.8-43.5-96.8-97\r\n\tC125.8,169.4,169.2,125.9,222.6,125.9z"},"children":[]}]};exports.search=search;var settings={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M450,138.3l-47.7,48.5l-2.7,2.8l-1.6,1.7c-1.1,0.8-2.4,1.2-3.9,1.2c-1.6,0-3.1-0.6-4.3-1.6l-0.9-0.9l-2.7-2.7l-41.3-42.1\r\n\tl-2.2-2.2l-1.7-1.7c-1-1.5-1.6-3.4-1.6-5.3c0-1.7,0.6-3.2,1.6-4.4l0.7-0.8l2.6-2.6l47.9-48.7c-5.1-10.1-24.7-14.9-35.1-14.1\r\n\tc-17.1,1.3-34.7,7-52.8,25.5c-0.7,0.8-1.5,1.6-2.2,2.3C277.5,120,272.6,156,282.6,189c0.7,1.4,1.3,3.1,1.6,4.6\r\n\tc1.1,5.5-0.4,10.2-4,13.5l-37.9,36.4c-11.8-12-13.5-13.6-13.5-13.6c-2-2-6-3.3-9.5-1.2l-5.9,3.6c-22.7-23.1-32.3-32.4-35.4-43.6\r\n\tc-3.2-11.7-0.3-27.3,2.7-33.1c2.5-4.6,10.3-8.9,16.9-9.4l8.6,8.8c2,2,5.1,2,7.1,0l30.9-31.4c2-2,2-5.3,0-7.3l-49.9-50.7\r\n\tc-2-2-5.2-2-7.1,0l-30.9,31.4c-2,2-2,5.3,0,7.3l3.3,3.4c0,4.9-0.7,12.5-4.7,16.6c-6.2,6.3-18.5-1-26.5,4.7\r\n\tc-7.9,5.6-17.9,14.6-24.3,21c-6.3,6.4-30.5,31.8-47.8,74.6c-17.3,42.8-4,82.5,5.4,92.9c5,5.5,14.1,11.1,12.5,0.7\r\n\tc-1.6-10.5-4.2-46.9,7.7-61.8c11.9-14.9,27.6-27.1,48-28.1c19.6-1,30.9,5.7,56.3,31.5l-2.8,5.2c-1.8,3.4-0.8,7.7,1.2,9.7\r\n\tc0,0,1.5,1.6,12.1,12.4l-97.2,93.2c-16.2,14.3-15.3,40.5-0.3,56c15.2,15.2,41.1,16.3,55.2-0.2l91.4-98.6\r\n\tc49.1,52.3,93.3,107.4,93.3,107.4c2,2,5.2,2,7.1,0l49.9-50.7c2-2,2-5.2,0-7.3c0,0-55.2-45.7-107-96.2l35.5-38.3\r\n\tc3.3-3.7,7.9-5.2,13.3-4.1c1.5,0.3,3.1,1,4.5,1.7c32.4,10.2,67.8,5.2,94-19.8c0.8-0.7,1.5-1.5,2.3-2.3c18.1-18.4,23.7-36.4,25-53.8\r\n\tC464.7,163.5,460.2,143.8,450,138.3z"},"children":[]}]};exports.settings=settings;var share={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M352,377.9H102.4V198.2h57.5c0,0,14.1-19.7,42.7-38.2H83.2c-10.6,0-19.2,8.5-19.2,19.1v217.9c0,10.5,8.6,19.1,19.2,19.1\r\n\t\th288c10.6,0,19.2-8.5,19.2-19.1V288L352,319.4V377.9z M320,224v63.9l128-95.5L320,96v59.7C165.2,155.7,160,320,160,320\r\n\t\tC203.8,248.5,236,224,320,224z"},"children":[{"name":"path","attribs":{"d":"M352,377.9H102.4V198.2h57.5c0,0,14.1-19.7,42.7-38.2H83.2c-10.6,0-19.2,8.5-19.2,19.1v217.9c0,10.5,8.6,19.1,19.2,19.1\r\n\t\th288c10.6,0,19.2-8.5,19.2-19.1V288L352,319.4V377.9z M320,224v63.9l128-95.5L320,96v59.7C165.2,155.7,160,320,160,320\r\n\t\tC203.8,248.5,236,224,320,224z"},"children":[]}]}]}]};exports.share=share;var shuffle={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M370.1,181.3H399v47.3l81-83.2L399,64v54h-28.9c-82.7,0-129.4,61.9-170.6,116.5c-37,49.1-69,95.4-120.6,95.4H32v63.3h46.9\r\n\tc82.7,0,129.4-65.8,170.6-120.4C286.5,223.7,318.4,181.3,370.1,181.3z M153.2,217.5c3.5-4.6,7.1-9.3,10.7-14.1\r\n\tc8.8-11.6,18-23.9,28-36.1c-29.6-27.9-65.3-48.5-113-48.5H32v63.3c0,0,13.3-0.6,46.9,0C111.4,182.8,131.8,196.2,153.2,217.5z\r\n\t M399,330.4h-28.9c-31.5,0-55.7-15.8-78.2-39.3c-2.2,3-4.5,6-6.8,9c-9.9,13.1-20.5,27.2-32.2,41.1c30.4,29.9,67.2,52.5,117.2,52.5\r\n\tH399V448l81-81.4l-81-83.2V330.4z"},"children":[]}]};exports.shuffle=shuffle;var skipBackward={"viewBox":"0 0 512 512","children":[{"name":"style","attribs":{"type":"text/css"},"children":[]},{"name":"path","attribs":{"class":"st0","d":"M75.7,96h8.1c6.7,0,12.2,5,12.2,11.7v113.5L283.1,98.7c2.5-1.7,5.1-2.3,8.1-2.3c8.3,0,15.4,7,15.4,17v63.1\r\n\tl118.5-78.2c2.5-1.7,5-2.3,8.1-2.3c8.3,0,14.9,7.4,14.9,17.4v286c0,10-6.7,16.5-15,16.5c-3.1,0-5.4-1.2-8.2-2.9l-118.3-77.6v64\r\n\tc0,10-7.2,16.5-15.5,16.5c-3.1,0-5.5-1.2-8.2-2.9L96,290.8v113c0,6.7-5.4,12.2-12.2,12.2h-8.1c-6.7,0-11.7-5.5-11.7-12.2V107.7\r\n\tC64,101,68.9,96,75.7,96z"},"children":[]}]};exports.skipBackward=skipBackward;var skipForward={"viewBox":"0 0 512 512","children":[{"name":"style","attribs":{"type":"text/css"},"children":[]},{"name":"path","attribs":{"class":"st0","d":"M436.3,96h-8.1c-6.7,0-12.2,5-12.2,11.7v113.5L228.9,98.7c-2.5-1.7-5.1-2.3-8.1-2.3c-8.3,0-15.4,7-15.4,17v63.1\r\n\tL86.9,98.3c-2.5-1.7-5.1-2.3-8.1-2.3c-8.3,0-14.9,7.4-14.9,17.4v286c0,10,6.7,16.5,15,16.5c3.1,0,5.4-1.2,8.2-2.9l118.3-77.6v64\r\n\tc0,10,7.2,16.5,15.5,16.5c3.1,0,5.5-1.2,8.2-2.9L416,290.8v113c0,6.7,5.4,12.2,12.2,12.2h8.1c6.7,0,11.7-5.5,11.7-12.2V107.7\r\n\tC448,101,443.1,96,436.3,96z"},"children":[]}]};exports.skipForward=skipForward;var socialAndroidOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M352,208v60.5V357h-22.5H313v15.5V424c0,4.4-3,7.9-7.3,8l0,0l-0.1,0c-0.1,0-0.2,0-0.3,0c-1.6,0-3.1-0.6-4.3-1.6l-0.1-0.1\r\n\t\t\tl-0.4-0.1c-2-1.6-3.4-4-3.4-6.2v-51.5V357h-15.5h-49H216v15.5V424c0,4.4-3.6,8-8,8s-8-3.6-8-8v-51.5V357h-15.5H160v-88.6V208H352\r\n\t\t\t M368,192H144v76.4V358c0,6.9,5.5,15,12.4,15H184v51c0,13.3,10.7,24,24,24s24-10.7,24-24v-51h49v51c0,7.5,3.9,14.2,9.3,18.6\r\n\t\t\tc3.9,3.4,9.3,5.4,15,5.4c0.1,0,0.3,0,0.4,0c0.1,0-0.3,0-0.2,0c13.3,0,23.6-10.7,23.6-24v-51h28.6c7,0,10.4-8.1,10.4-14.9v-89.6\r\n\t\t\tV192L368,192z"},"children":[{"name":"path","attribs":{"d":"M352,208v60.5V357h-22.5H313v15.5V424c0,4.4-3,7.9-7.3,8l0,0l-0.1,0c-0.1,0-0.2,0-0.3,0c-1.6,0-3.1-0.6-4.3-1.6l-0.1-0.1\r\n\t\t\tl-0.4-0.1c-2-1.6-3.4-4-3.4-6.2v-51.5V357h-15.5h-49H216v15.5V424c0,4.4-3.6,8-8,8s-8-3.6-8-8v-51.5V357h-15.5H160v-88.6V208H352\r\n\t\t\t M368,192H144v76.4V358c0,6.9,5.5,15,12.4,15H184v51c0,13.3,10.7,24,24,24s24-10.7,24-24v-51h49v51c0,7.5,3.9,14.2,9.3,18.6\r\n\t\t\tc3.9,3.4,9.3,5.4,15,5.4c0.1,0,0.3,0,0.4,0c0.1,0-0.3,0-0.2,0c13.3,0,23.6-10.7,23.6-24v-51h28.6c7,0,10.4-8.1,10.4-14.9v-89.6\r\n\t\t\tV192L368,192z"},"children":[]}]},{"name":"path","attribs":{"d":"M408,192c4.4,0,8,3.6,8,8v96c0,4.4-3.6,8-8,8s-8-3.6-8-8v-96C400,195.6,403.6,192,408,192 M408,176c-13.3,0-24,10.7-24,24\r\n\t\t\tv96c0,13.3,10.7,24,24,24s24-10.7,24-24v-96C432,186.7,421.3,176,408,176L408,176z"},"children":[{"name":"path","attribs":{"d":"M408,192c4.4,0,8,3.6,8,8v96c0,4.4-3.6,8-8,8s-8-3.6-8-8v-96C400,195.6,403.6,192,408,192 M408,176c-13.3,0-24,10.7-24,24\r\n\t\t\tv96c0,13.3,10.7,24,24,24s24-10.7,24-24v-96C432,186.7,421.3,176,408,176L408,176z"},"children":[]}]},{"name":"path","attribs":{"d":"M104,192c4.4,0,8,3.6,8,8v96c0,4.4-3.6,8-8,8s-8-3.6-8-8v-96C96,195.6,99.6,192,104,192 M104,176c-13.3,0-24,10.7-24,24\r\n\t\t\tv96c0,13.3,10.7,24,24,24s24-10.7,24-24v-96C128,186.7,117.3,176,104,176L104,176z"},"children":[{"name":"path","attribs":{"d":"M104,192c4.4,0,8,3.6,8,8v96c0,4.4-3.6,8-8,8s-8-3.6-8-8v-96C96,195.6,99.6,192,104,192 M104,176c-13.3,0-24,10.7-24,24\r\n\t\t\tv96c0,13.3,10.7,24,24,24s24-10.7,24-24v-96C128,186.7,117.3,176,104,176L104,176z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M255,94.3l0.9,0h0h0c14.2,0,27.3,1.9,38.8,5.6l10,4.4c28.7,12.6,39.9,37.4,44.4,55.7H162.8c4.4-18.6,15.6-43.6,44.1-56\r\n\t\t\tl10.3-4.5C228.5,96.1,241.2,94.3,255,94.3 M185.4,64c-0.5,0-1.2,0.2-1.8,0.8c-1.1,0.8-1.7,1.8-1.3,2.5l18.3,22.1\r\n\t\t\tc-48.2,20.9-55.4,71.7-56.4,86.7h223.6c-1.1-15-8.2-65.1-56.6-86.4l18.5-22.2c0.4-0.5-0.2-1.7-1.3-2.6c-0.7-0.5-1.5-0.8-2-0.8\r\n\t\t\tc-0.3,0-0.5,0.1-0.7,0.3l-19.2,22.7c-13.6-5.4-30.2-8.8-50.6-8.8c-0.3,0-0.6,0-1,0c-20,0-36.4,3.3-49.8,8.5l-19-22.5\r\n\t\t\tC186.1,64.1,185.8,64,185.4,64L185.4,64z"},"children":[{"name":"path","attribs":{"d":"M255,94.3l0.9,0h0h0c14.2,0,27.3,1.9,38.8,5.6l10,4.4c28.7,12.6,39.9,37.4,44.4,55.7H162.8c4.4-18.6,15.6-43.6,44.1-56\r\n\t\t\tl10.3-4.5C228.5,96.1,241.2,94.3,255,94.3 M185.4,64c-0.5,0-1.2,0.2-1.8,0.8c-1.1,0.8-1.7,1.8-1.3,2.5l18.3,22.1\r\n\t\t\tc-48.2,20.9-55.4,71.7-56.4,86.7h223.6c-1.1-15-8.2-65.1-56.6-86.4l18.5-22.2c0.4-0.5-0.2-1.7-1.3-2.6c-0.7-0.5-1.5-0.8-2-0.8\r\n\t\t\tc-0.3,0-0.5,0.1-0.7,0.3l-19.2,22.7c-13.6-5.4-30.2-8.8-50.6-8.8c-0.3,0-0.6,0-1,0c-20,0-36.4,3.3-49.8,8.5l-19-22.5\r\n\t\t\tC186.1,64.1,185.8,64,185.4,64L185.4,64z"},"children":[]}]}]}]}]},{"name":"path","attribs":{"d":"M206.6,138.9c-7.4,0-13.5-6-13.5-13.3c0-7.3,6-13.3,13.5-13.3c7.4,0,13.5,6,13.5,13.3C220.1,132.9,214.1,138.9,206.6,138.9z\r\n\t"},"children":[]},{"name":"path","attribs":{"d":"M305,138.9c-7.4,0-13.5-6-13.5-13.3c0-7.3,6-13.3,13.5-13.3c7.4,0,13.5,6,13.5,13.3C318.5,132.9,312.4,138.9,305,138.9z"},"children":[]}]};exports.socialAndroidOutline=socialAndroidOutline;var socialAndroid={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M144,268.4V358c0,6.9,4.5,14,11.4,14H184v52c0,13.3,10.7,24,24,24s24-10.7,24-24v-52h49v52c0,7.5,3.4,14.2,8.8,18.6\r\n\t\t\tc3.9,3.4,9.1,5.4,14.7,5.4c0.1,0,0.2,0,0.3,0c0.1,0,0.1,0,0.2,0c13.3,0,24-10.7,24-24v-52h27.6c7,0,11.4-7.1,11.4-13.9v-89.6V192\r\n\t\t\tH144V268.4z"},"children":[{"name":"path","attribs":{"d":"M144,268.4V358c0,6.9,4.5,14,11.4,14H184v52c0,13.3,10.7,24,24,24s24-10.7,24-24v-52h49v52c0,7.5,3.4,14.2,8.8,18.6\r\n\t\t\tc3.9,3.4,9.1,5.4,14.7,5.4c0.1,0,0.2,0,0.3,0c0.1,0,0.1,0,0.2,0c13.3,0,24-10.7,24-24v-52h27.6c7,0,11.4-7.1,11.4-13.9v-89.6V192\r\n\t\t\tH144V268.4z"},"children":[]}]},{"name":"path","attribs":{"d":"M408,176c-13.3,0-24,10.7-24,24v96c0,13.3,10.7,24,24,24s24-10.7,24-24v-96C432,186.7,421.3,176,408,176z"},"children":[{"name":"path","attribs":{"d":"M408,176c-13.3,0-24,10.7-24,24v96c0,13.3,10.7,24,24,24s24-10.7,24-24v-96C432,186.7,421.3,176,408,176z"},"children":[]}]},{"name":"path","attribs":{"d":"M104,176c-13.3,0-24,10.7-24,24v96c0,13.3,10.7,24,24,24s24-10.7,24-24v-96C128,186.7,117.3,176,104,176z"},"children":[{"name":"path","attribs":{"d":"M104,176c-13.3,0-24,10.7-24,24v96c0,13.3,10.7,24,24,24s24-10.7,24-24v-96C128,186.7,117.3,176,104,176z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M311.2,89.1l18.5-21.9c0.4-0.5-0.2-1.6-1.3-2.5c-1.1-0.8-2.4-1-2.7-0.4l-19.2,22.8c-13.6-5.4-30.2-8.8-50.6-8.8\r\n\t\t\tc-20.5-0.1-37.2,3.2-50.8,8.5l-19-22.4c-0.4-0.5-1.6-0.4-2.7,0.4c-1.1,0.8-1.7,1.8-1.3,2.5l18.3,21.6\r\n\t\t\tc-48.2,20.9-55.4,72.2-56.4,87.2h223.6C366.7,161,359.6,110.4,311.2,89.1z M206.8,138.9c-7.4,0-13.5-6-13.5-13.3\r\n\t\t\tc0-7.3,6-13.3,13.5-13.3c7.4,0,13.5,6,13.5,13.3C220.3,132.9,214.3,138.9,206.8,138.9z M305.2,138.9c-7.4,0-13.5-6-13.5-13.3\r\n\t\t\tc0-7.3,6-13.3,13.5-13.3c7.4,0,13.5,6,13.5,13.3C318.7,132.9,312.6,138.9,305.2,138.9z"},"children":[{"name":"path","attribs":{"d":"M311.2,89.1l18.5-21.9c0.4-0.5-0.2-1.6-1.3-2.5c-1.1-0.8-2.4-1-2.7-0.4l-19.2,22.8c-13.6-5.4-30.2-8.8-50.6-8.8\r\n\t\t\tc-20.5-0.1-37.2,3.2-50.8,8.5l-19-22.4c-0.4-0.5-1.6-0.4-2.7,0.4c-1.1,0.8-1.7,1.8-1.3,2.5l18.3,21.6\r\n\t\t\tc-48.2,20.9-55.4,72.2-56.4,87.2h223.6C366.7,161,359.6,110.4,311.2,89.1z M206.8,138.9c-7.4,0-13.5-6-13.5-13.3\r\n\t\t\tc0-7.3,6-13.3,13.5-13.3c7.4,0,13.5,6,13.5,13.3C220.3,132.9,214.3,138.9,206.8,138.9z M305.2,138.9c-7.4,0-13.5-6-13.5-13.3\r\n\t\t\tc0-7.3,6-13.3,13.5-13.3c7.4,0,13.5,6,13.5,13.3C318.7,132.9,312.6,138.9,305.2,138.9z"},"children":[]}]}]}]}]}]};exports.socialAndroid=socialAndroid;var socialAngularOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M255.982,64l187.967,69.105l-39.17,230.389l-148.881,79.949l-148.812-80.051L68.031,133.11L255.982,64 M255.981,32L32,112\r\n\t\tl46.12,272L256,480l177.75-96L480,112L255.981,32L255.981,32z"},"children":[{"name":"path","attribs":{"d":"M255.982,64l187.967,69.105l-39.17,230.389l-148.881,79.949l-148.812-80.051L68.031,133.11L255.982,64 M255.981,32L32,112\r\n\t\tl46.12,272L256,480l177.75-96L480,112L255.981,32L255.981,32z"},"children":[]}]},{"name":"path","attribs":{"d":"M344,352h40L256,72L128,352h40l26.584-56h122.827L344,352z M213.573,256l42.419-89.356L298.419,256H213.573z"},"children":[{"name":"path","attribs":{"d":"M344,352h40L256,72L128,352h40l26.584-56h122.827L344,352z M213.573,256l42.419-89.356L298.419,256H213.573z"},"children":[]}]}]}]};exports.socialAngularOutline=socialAngularOutline;var socialAngular={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"213.573,256 298.419,256 255.992,166.644 \t"},"children":[{"name":"polygon","attribs":{"points":"213.573,256 298.419,256 255.992,166.644 \t"},"children":[]}]},{"name":"path","attribs":{"d":"M255.981,32L32,112l46.12,272L256,480l177.75-96L480,112L255.981,32z M344,352l-26.589-56H194.584L168,352h-40L256,72\r\n\t\tl128,280H344z"},"children":[{"name":"path","attribs":{"d":"M255.981,32L32,112l46.12,272L256,480l177.75-96L480,112L255.981,32z M344,352l-26.589-56H194.584L168,352h-40L256,72\r\n\t\tl128,280H344z"},"children":[]}]}]}]};exports.socialAngular=socialAngular;var socialAppleOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M333.6,169.9c16.3,0,33.2,7.4,47.4,20.4c-9.9,8.5-17.9,18.7-23.7,30.2c-8,16-11.6,34.3-10.2,52.7\r\n\t\tc1.3,18.7,7.6,36.6,18,51.8c8,11.6,18.2,21.2,30,28.3c-5,10.7-9.2,18.4-16.8,30.5c-8.4,13.1-30.5,48-52,48.2l-0.4,0\r\n\t\tc-7.4,0-12.2-2.2-19.3-5.6c-10-4.7-22.3-10.6-43.4-10.6l-0.6,0c-21.1,0.1-33.8,5.9-43.9,10.6c-7.4,3.4-12.3,5.7-19.9,5.7l-0.4,0\r\n\t\tc-19.6-0.2-37.5-24.3-50.8-45.2c-19.3-30.4-31.7-65.6-34.9-99.1c-2.9-30.5,2-58.5,13.5-76.7c8-12.7,18.5-23.3,30.4-30.6\r\n\t\tc11.2-6.8,23-10.4,34.2-10.4c12.4,0,22.7,3.8,33.7,7.8c11.5,4.2,23.5,8.6,37.7,8.6c13.6,0,24.3-4.2,34.6-8.2\r\n\t\tC308,173.9,318.2,169.9,333.6,169.9 M333.6,153.9c-33.6,0-47.8,16.5-71.2,16.5c-24,0-42.3-16.4-71.4-16.4\r\n\t\tc-28.5,0-58.9,17.9-78.2,48.4c-27.1,43-22.5,124,21.4,193c15.7,24.7,36.7,52.4,64.2,52.7c0.2,0,0.3,0,0.5,0\r\n\t\tc23.9,0,31-16.1,63.9-16.3c0.2,0,0.3,0,0.5,0c32.4,0,38.9,16.2,62.7,16.2c0.2,0,0.3,0,0.5,0c27.5-0.3,49.6-31,65.3-55.6\r\n\t\tc11.3-17.7,15.5-26.6,24.2-46.6c-63.5-24.8-73.7-117.4-10.9-152.9C385.9,168.2,359,153.9,333.6,153.9L333.6,153.9z"},"children":[{"name":"path","attribs":{"d":"M333.6,169.9c16.3,0,33.2,7.4,47.4,20.4c-9.9,8.5-17.9,18.7-23.7,30.2c-8,16-11.6,34.3-10.2,52.7\r\n\t\tc1.3,18.7,7.6,36.6,18,51.8c8,11.6,18.2,21.2,30,28.3c-5,10.7-9.2,18.4-16.8,30.5c-8.4,13.1-30.5,48-52,48.2l-0.4,0\r\n\t\tc-7.4,0-12.2-2.2-19.3-5.6c-10-4.7-22.3-10.6-43.4-10.6l-0.6,0c-21.1,0.1-33.8,5.9-43.9,10.6c-7.4,3.4-12.3,5.7-19.9,5.7l-0.4,0\r\n\t\tc-19.6-0.2-37.5-24.3-50.8-45.2c-19.3-30.4-31.7-65.6-34.9-99.1c-2.9-30.5,2-58.5,13.5-76.7c8-12.7,18.5-23.3,30.4-30.6\r\n\t\tc11.2-6.8,23-10.4,34.2-10.4c12.4,0,22.7,3.8,33.7,7.8c11.5,4.2,23.5,8.6,37.7,8.6c13.6,0,24.3-4.2,34.6-8.2\r\n\t\tC308,173.9,318.2,169.9,333.6,169.9 M333.6,153.9c-33.6,0-47.8,16.5-71.2,16.5c-24,0-42.3-16.4-71.4-16.4\r\n\t\tc-28.5,0-58.9,17.9-78.2,48.4c-27.1,43-22.5,124,21.4,193c15.7,24.7,36.7,52.4,64.2,52.7c0.2,0,0.3,0,0.5,0\r\n\t\tc23.9,0,31-16.1,63.9-16.3c0.2,0,0.3,0,0.5,0c32.4,0,38.9,16.2,62.7,16.2c0.2,0,0.3,0,0.5,0c27.5-0.3,49.6-31,65.3-55.6\r\n\t\tc11.3-17.7,15.5-26.6,24.2-46.6c-63.5-24.8-73.7-117.4-10.9-152.9C385.9,168.2,359,153.9,333.6,153.9L333.6,153.9z"},"children":[]}]},{"name":"path","attribs":{"d":"M309.9,84.5c-2.7,14.9-10.5,26.8-14.6,32.2c-7.4,9.8-18,17.4-28.8,21.1c0.5-3,1.3-6.1,2.4-9.2c3.5-10.2,8.9-18.2,12.8-23.1\r\n\t\tC288.8,96.7,299.3,89.1,309.9,84.5 M326.2,64c-20,1.4-43.3,14.5-57,31.6c-12.4,15.5-22.6,38.5-18.6,60.8c0.5,0,1,0,1.6,0\r\n\t\tc21.3,0,43.1-13.2,55.8-30.1C320.3,110.2,329.6,87.4,326.2,64L326.2,64z"},"children":[{"name":"path","attribs":{"d":"M309.9,84.5c-2.7,14.9-10.5,26.8-14.6,32.2c-7.4,9.8-18,17.4-28.8,21.1c0.5-3,1.3-6.1,2.4-9.2c3.5-10.2,8.9-18.2,12.8-23.1\r\n\t\tC288.8,96.7,299.3,89.1,309.9,84.5 M326.2,64c-20,1.4-43.3,14.5-57,31.6c-12.4,15.5-22.6,38.5-18.6,60.8c0.5,0,1,0,1.6,0\r\n\t\tc21.3,0,43.1-13.2,55.8-30.1C320.3,110.2,329.6,87.4,326.2,64L326.2,64z"},"children":[]}]}]}]};exports.socialAppleOutline=socialAppleOutline;var socialApple={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M333.6,153.9c-33.6,0-47.8,16.5-71.2,16.5c-24,0-42.3-16.4-71.4-16.4c-28.5,0-58.9,17.9-78.2,48.4\r\n\t\tc-27.1,43-22.5,124,21.4,193c15.7,24.7,36.7,52.4,64.2,52.7c0.2,0,0.3,0,0.5,0c23.9,0,31-16.1,63.9-16.3c0.2,0,0.3,0,0.5,0\r\n\t\tc32.4,0,38.9,16.2,62.7,16.2c0.2,0,0.3,0,0.5,0c27.5-0.3,49.6-31,65.3-55.6c11.3-17.7,15.5-26.6,24.2-46.6\r\n\t\tc-63.5-24.8-73.7-117.4-10.9-152.9C385.9,168.2,359,153.9,333.6,153.9L333.6,153.9z"},"children":[{"name":"path","attribs":{"d":"M333.6,153.9c-33.6,0-47.8,16.5-71.2,16.5c-24,0-42.3-16.4-71.4-16.4c-28.5,0-58.9,17.9-78.2,48.4\r\n\t\tc-27.1,43-22.5,124,21.4,193c15.7,24.7,36.7,52.4,64.2,52.7c0.2,0,0.3,0,0.5,0c23.9,0,31-16.1,63.9-16.3c0.2,0,0.3,0,0.5,0\r\n\t\tc32.4,0,38.9,16.2,62.7,16.2c0.2,0,0.3,0,0.5,0c27.5-0.3,49.6-31,65.3-55.6c11.3-17.7,15.5-26.6,24.2-46.6\r\n\t\tc-63.5-24.8-73.7-117.4-10.9-152.9C385.9,168.2,359,153.9,333.6,153.9L333.6,153.9z"},"children":[]}]},{"name":"path","attribs":{"d":"M326.2,64c-20,1.4-43.3,14.5-57,31.6c-12.4,15.5-22.6,38.5-18.6,60.8c0.5,0,1,0,1.6,0c21.3,0,43.1-13.2,55.8-30.1\r\n\t\tC320.3,110.2,329.6,87.4,326.2,64L326.2,64z"},"children":[{"name":"path","attribs":{"d":"M326.2,64c-20,1.4-43.3,14.5-57,31.6c-12.4,15.5-22.6,38.5-18.6,60.8c0.5,0,1,0,1.6,0c21.3,0,43.1-13.2,55.8-30.1\r\n\t\tC320.3,110.2,329.6,87.4,326.2,64L326.2,64z"},"children":[]}]}]}]};exports.socialApple=socialApple;var socialBitcoinOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M279.7,48v47v15.1l15.1,0.8c16.9,0.9,28.8,3.3,40.7,7.9c13.8,5.3,24.2,12.6,31.1,21.7c5.7,7.6,9,19.4,10,36.2\r\n\t\tc0.6,8.8-1,17.1-2.6,22c-1.5,4.4-5.3,11.3-11.1,16.4c-5.4,4.8-8.6,6.7-12.3,8.4l-42.1,19.3l45,10.8c7.4,1.8,14,4.4,21.4,8.5\r\n\t\tc13.2,7.3,18,15.1,21.2,22.5c2.9,6.7,4.6,22.2,3.9,36.2c-0.7,13.4-4.4,31.5-12.6,42.3c-8.6,11.2-21.3,20.1-37.8,26.3\r\n\t\tc-13.6,5.1-31.1,8.1-54.5,9.3l-15.2,0.7v15.2V464h-8v-48v-16h-16H224h-16v16v48h-9v-48v-16h-16h-67.2l3-16h12.8\r\n\t\tc8.6,0,12.1-0.4,17.5-3c0.2-0.1,0.4-0.2,0.7-0.3c8.1-3.7,11-10.6,12.2-13.6c0.1-0.3,0.3-0.7,0.3-0.8c2.9-5.9,3-13.1,3-24.4v-178\r\n\t\tc0-11.7-0.1-13.6-3.1-19.5c-2.9-5.8-7.3-10.1-13.4-13c-5.9-2.8-13.2-3.4-24.5-3.4h-12.9v-16h71.6h16V96V48h9v48v16h16h31.8h16V96\r\n\t\tV48H279.7 M295.7,32h-39.9v64H224V32h-40.9v64H96v48h28.4c8.7,0,14.5,0.3,17.6,1.8c3.1,1.5,4.7,3.3,6,5.8c1.3,2.5,1.4,3.1,1.4,12.3\r\n\t\tv178c0,9-0.1,14.7-0.9,17.6c-1.2,2.7-2.2,5.2-5.3,6.6c-3.1,1.4-2.9,1.9-11.6,1.9h-27.4L96,416h87.1v64H224v-64h31.8v64h39.9v-65.4\r\n\t\tc26-1.3,44.4-4.7,59.3-10.3c19.3-7.2,34.3-17.7,44.9-31.5c10.5-13.8,15-34.9,15.9-51.2c0.8-14.5-0.7-33.2-5.2-43.4\r\n\t\tc-5-11.5-12.7-21.6-28.1-30.1c-8.1-4.5-16.1-7.8-25.4-10c5.4-2.5,9.9-5.4,16.3-11c7.5-6.6,13-15.7,15.6-23.3\r\n\t\tc2.6-7.5,4.1-18,3.5-28.2c-1.1-16.8-4.4-33.1-13.2-44.8c-8.8-11.7-21.7-20.7-38.1-27c-12.6-4.8-25.5-7.8-45.5-8.9V32L295.7,32z"},"children":[{"name":"path","attribs":{"d":"M279.7,48v47v15.1l15.1,0.8c16.9,0.9,28.8,3.3,40.7,7.9c13.8,5.3,24.2,12.6,31.1,21.7c5.7,7.6,9,19.4,10,36.2\r\n\t\tc0.6,8.8-1,17.1-2.6,22c-1.5,4.4-5.3,11.3-11.1,16.4c-5.4,4.8-8.6,6.7-12.3,8.4l-42.1,19.3l45,10.8c7.4,1.8,14,4.4,21.4,8.5\r\n\t\tc13.2,7.3,18,15.1,21.2,22.5c2.9,6.7,4.6,22.2,3.9,36.2c-0.7,13.4-4.4,31.5-12.6,42.3c-8.6,11.2-21.3,20.1-37.8,26.3\r\n\t\tc-13.6,5.1-31.1,8.1-54.5,9.3l-15.2,0.7v15.2V464h-8v-48v-16h-16H224h-16v16v48h-9v-48v-16h-16h-67.2l3-16h12.8\r\n\t\tc8.6,0,12.1-0.4,17.5-3c0.2-0.1,0.4-0.2,0.7-0.3c8.1-3.7,11-10.6,12.2-13.6c0.1-0.3,0.3-0.7,0.3-0.8c2.9-5.9,3-13.1,3-24.4v-178\r\n\t\tc0-11.7-0.1-13.6-3.1-19.5c-2.9-5.8-7.3-10.1-13.4-13c-5.9-2.8-13.2-3.4-24.5-3.4h-12.9v-16h71.6h16V96V48h9v48v16h16h31.8h16V96\r\n\t\tV48H279.7 M295.7,32h-39.9v64H224V32h-40.9v64H96v48h28.4c8.7,0,14.5,0.3,17.6,1.8c3.1,1.5,4.7,3.3,6,5.8c1.3,2.5,1.4,3.1,1.4,12.3\r\n\t\tv178c0,9-0.1,14.7-0.9,17.6c-1.2,2.7-2.2,5.2-5.3,6.6c-3.1,1.4-2.9,1.9-11.6,1.9h-27.4L96,416h87.1v64H224v-64h31.8v64h39.9v-65.4\r\n\t\tc26-1.3,44.4-4.7,59.3-10.3c19.3-7.2,34.3-17.7,44.9-31.5c10.5-13.8,15-34.9,15.9-51.2c0.8-14.5-0.7-33.2-5.2-43.4\r\n\t\tc-5-11.5-12.7-21.6-28.1-30.1c-8.1-4.5-16.1-7.8-25.4-10c5.4-2.5,9.9-5.4,16.3-11c7.5-6.6,13-15.7,15.6-23.3\r\n\t\tc2.6-7.5,4.1-18,3.5-28.2c-1.1-16.8-4.4-33.1-13.2-44.8c-8.8-11.7-21.7-20.7-38.1-27c-12.6-4.8-25.5-7.8-45.5-8.9V32L295.7,32z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"256,150 224,150 224,224 256,224 256,150 \t\t"},"children":[{"name":"polygon","attribs":{"points":"256,150 224,150 224,224 256,224 256,150 \t\t"},"children":[]}]},{"name":"path","attribs":{"d":"M256,272h-32v90h32V272L256,272z"},"children":[{"name":"path","attribs":{"d":"M256,272h-32v90h32V272L256,272z"},"children":[]}]},{"name":"path","attribs":{"d":"M296,153.9v65.6c6-2.9,9.5-6.8,13.3-11.7c4.6-6,7-12.9,7-20.7c0-8.1-2.4-15-6.7-20.8C305.7,161.2,302,156.4,296,153.9\r\n\t\t\tL296,153.9z"},"children":[{"name":"path","attribs":{"d":"M296,153.9v65.6c6-2.9,9.5-6.8,13.3-11.7c4.6-6,7-12.9,7-20.7c0-8.1-2.4-15-6.7-20.8C305.7,161.2,302,156.4,296,153.9\r\n\t\t\tL296,153.9z"},"children":[]}]},{"name":"path","attribs":{"d":"M296,273.6v82.8c2-0.6,3.8-0.8,5.8-1.6c9.8-3.8,15.8-7.9,23.6-14.7c7.5-6.6,9.7-15.9,9.7-26.6c0-9.1-3.3-16.9-7.9-23.2\r\n\t\t\tc-4.6-6.3-11.7-9.9-19.4-13.2C304.1,275.4,301,274.4,296,273.6L296,273.6z"},"children":[{"name":"path","attribs":{"d":"M296,273.6v82.8c2-0.6,3.8-0.8,5.8-1.6c9.8-3.8,15.8-7.9,23.6-14.7c7.5-6.6,9.7-15.9,9.7-26.6c0-9.1-3.3-16.9-7.9-23.2\r\n\t\t\tc-4.6-6.3-11.7-9.9-19.4-13.2C304.1,275.4,301,274.4,296,273.6L296,273.6z"},"children":[]}]}]}]}]}]};exports.socialBitcoinOutline=socialBitcoinOutline;var socialBitcoin={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M410.5,279.2c-5-11.5-12.7-21.6-28.1-30.1c-8.2-4.5-16.1-7.8-25.4-10c5.4-2.5,10-5.4,16.3-11c7.5-6.6,13.1-15.7,15.6-23.3\r\n\tc2.6-7.5,4.1-18,3.5-28.2c-1.1-16.8-4.4-33.1-13.2-44.8c-8.8-11.7-21.2-20.7-37.6-27c-12.6-4.8-25.5-7.8-45.5-8.9V32h-40v64h-32V32\r\n\th-41v64H96v48h27.9c8.7,0,14.6,0.8,17.6,2.3c3.1,1.5,5.3,3.5,6.5,6c1.3,2.5,1.9,8.4,1.9,17.5V343c0,9-0.6,14.8-1.9,17.4\r\n\tc-1.3,2.6-2,4.9-5.1,6.3c-3.1,1.4-3.2,1.3-11.8,1.3h-26.4L96,416h87v64h41v-64h32v64h40v-64.4c26-1.3,44.5-4.7,59.4-10.3\r\n\tc19.3-7.2,34.1-17.7,44.7-31.5c10.6-13.8,14.9-34.9,15.8-51.2C416.6,308.1,415,289.4,410.5,279.2z M224,150h32v74h-32V150z M224,362\r\n\tv-90h32v90H224z M296,153.9c6,2.5,9.9,7.5,13.8,12.7c4.3,5.7,6.5,13.3,6.5,21.4c0,7.8-2.9,14.5-7.5,20.5c-3.8,4.9-6.8,8.3-12.8,11.1\r\n\tV153.9z M324.8,340.6c-7.8,6.9-12.3,10.1-22.1,13.8c-2,0.8-4.7,1.4-6.7,1.9v-82.8c5,0.8,7.6,1.8,11.3,3.4\r\n\tc7.8,3.3,15.2,6.9,19.8,13.2c4.6,6.3,8,15.6,8,24.7C335.1,325.7,332.3,334,324.8,340.6z"},"children":[]}]};exports.socialBitcoin=socialBitcoin;var socialBufferOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M70.7,164.5l169.2,81.7c4.4,2.1,10.3,3.2,16.1,3.2s11.7-1.1,16.1-3.2l169.2-81.7c8.9-4.3,8.9-11.3,0-15.6L272.1,67.2\r\n\t\t\tc-4.4-2.1-10.3-3.2-16.1-3.2s-11.7,1.1-16.1,3.2L70.7,148.9C61.8,153.2,61.8,160.2,70.7,164.5z M246.8,81.6\r\n\t\t\tc1.6-0.8,4.9-1.6,9.2-1.6c4.3,0,7.5,0.8,9.2,1.6l155.5,75.1l-155.5,75.1c-1.6,0.8-4.9,1.6-9.2,1.6c-4.3,0-7.5-0.8-9.2-1.6\r\n\t\t\tL91.3,156.7L246.8,81.6z"},"children":[{"name":"path","attribs":{"d":"M70.7,164.5l169.2,81.7c4.4,2.1,10.3,3.2,16.1,3.2s11.7-1.1,16.1-3.2l169.2-81.7c8.9-4.3,8.9-11.3,0-15.6L272.1,67.2\r\n\t\t\tc-4.4-2.1-10.3-3.2-16.1-3.2s-11.7,1.1-16.1,3.2L70.7,148.9C61.8,153.2,61.8,160.2,70.7,164.5z M246.8,81.6\r\n\t\t\tc1.6-0.8,4.9-1.6,9.2-1.6c4.3,0,7.5,0.8,9.2,1.6l155.5,75.1l-155.5,75.1c-1.6,0.8-4.9,1.6-9.2,1.6c-4.3,0-7.5-0.8-9.2-1.6\r\n\t\t\tL91.3,156.7L246.8,81.6z"},"children":[]}]},{"name":"path","attribs":{"d":"M441.3,248.2c0,0-30.9-14.9-35-16.9s-5.2-1.9-9.5,0.1s-124.8,60.2-124.8,60.2c-4.5,2.1-10.3,3.2-16.1,3.2\r\n\t\t\ts-11.7-1.1-16.1-3.2c0,0-117.3-56.6-122.8-59.3c-6-2.9-7.7-2.9-13.1-0.3c-5.6,2.7-33.4,16.1-33.4,16.1c-8.9,4.3-8.9,11.3,0,15.6\r\n\t\t\tl169.2,81.7c4.4,2.1,10.3,3.2,16.1,3.2s11.7-1.1,16.1-3.2l169.2-81.7C450.2,259.5,450.2,252.5,441.3,248.2z M265.2,331.1\r\n\t\t\tc-1.6,0.8-4.9,1.6-9.2,1.6c-4.3,0-7.5-0.8-9.2-1.6L91.3,256l18.9-9.1l122.7,59.3c6.4,3.1,14.6,4.8,23.1,4.8s16.6-1.7,23.1-4.8\r\n\t\t\tl122.7-59.3l18.9,9.1L265.2,331.1z"},"children":[{"name":"path","attribs":{"d":"M441.3,248.2c0,0-30.9-14.9-35-16.9s-5.2-1.9-9.5,0.1s-124.8,60.2-124.8,60.2c-4.5,2.1-10.3,3.2-16.1,3.2\r\n\t\t\ts-11.7-1.1-16.1-3.2c0,0-117.3-56.6-122.8-59.3c-6-2.9-7.7-2.9-13.1-0.3c-5.6,2.7-33.4,16.1-33.4,16.1c-8.9,4.3-8.9,11.3,0,15.6\r\n\t\t\tl169.2,81.7c4.4,2.1,10.3,3.2,16.1,3.2s11.7-1.1,16.1-3.2l169.2-81.7C450.2,259.5,450.2,252.5,441.3,248.2z M265.2,331.1\r\n\t\t\tc-1.6,0.8-4.9,1.6-9.2,1.6c-4.3,0-7.5-0.8-9.2-1.6L91.3,256l18.9-9.1l122.7,59.3c6.4,3.1,14.6,4.8,23.1,4.8s16.6-1.7,23.1-4.8\r\n\t\t\tl122.7-59.3l18.9,9.1L265.2,331.1z"},"children":[]}]}]}]},{"name":"path","attribs":{"d":"M441.3,347.5c0,0-30.9-14.9-35-16.9s-5.2-1.9-9.5,0.1S272.1,391,272.1,391c-4.5,2.1-10.3,3.2-16.1,3.2s-11.7-1.1-16.1-3.2\r\n\t\tc0,0-117.3-56.6-122.8-59.3c-6-2.9-7.7-2.9-13.1-0.3c-5.6,2.7-33.4,16.1-33.4,16.1c-8.9,4.3-8.9,11.3,0,15.6l169.2,81.7\r\n\t\tc4.4,2.2,10.3,3.2,16.1,3.2s11.7-1.1,16.1-3.2l169.2-81.7C450.2,358.8,450.2,351.8,441.3,347.5z M265.2,430.4\r\n\t\tc-1.6,0.8-4.9,1.6-9.2,1.6c-4.3,0-7.5-0.8-9.2-1.6L91.3,355.3l18.9-9.1l122.7,59.3c6.4,3.1,14.6,4.8,23.1,4.8s16.6-1.7,23.1-4.8\r\n\t\tl122.7-59.3l18.9,9.1L265.2,430.4z"},"children":[{"name":"path","attribs":{"d":"M441.3,347.5c0,0-30.9-14.9-35-16.9s-5.2-1.9-9.5,0.1S272.1,391,272.1,391c-4.5,2.1-10.3,3.2-16.1,3.2s-11.7-1.1-16.1-3.2\r\n\t\tc0,0-117.3-56.6-122.8-59.3c-6-2.9-7.7-2.9-13.1-0.3c-5.6,2.7-33.4,16.1-33.4,16.1c-8.9,4.3-8.9,11.3,0,15.6l169.2,81.7\r\n\t\tc4.4,2.2,10.3,3.2,16.1,3.2s11.7-1.1,16.1-3.2l169.2-81.7C450.2,358.8,450.2,351.8,441.3,347.5z M265.2,430.4\r\n\t\tc-1.6,0.8-4.9,1.6-9.2,1.6c-4.3,0-7.5-0.8-9.2-1.6L91.3,355.3l18.9-9.1l122.7,59.3c6.4,3.1,14.6,4.8,23.1,4.8s16.6-1.7,23.1-4.8\r\n\t\tl122.7-59.3l18.9,9.1L265.2,430.4z"},"children":[]}]}]}]};exports.socialBufferOutline=socialBufferOutline;var socialBuffer={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M70.7,164.5l169.2,81.7c4.4,2.1,10.3,3.2,16.1,3.2s11.7-1.1,16.1-3.2l169.2-81.7c8.9-4.3,8.9-11.3,0-15.6L272.1,67.2\r\n\t\t\tc-4.4-2.1-10.3-3.2-16.1-3.2s-11.7,1.1-16.1,3.2L70.7,148.9C61.8,153.2,61.8,160.2,70.7,164.5z"},"children":[{"name":"path","attribs":{"d":"M70.7,164.5l169.2,81.7c4.4,2.1,10.3,3.2,16.1,3.2s11.7-1.1,16.1-3.2l169.2-81.7c8.9-4.3,8.9-11.3,0-15.6L272.1,67.2\r\n\t\t\tc-4.4-2.1-10.3-3.2-16.1-3.2s-11.7,1.1-16.1,3.2L70.7,148.9C61.8,153.2,61.8,160.2,70.7,164.5z"},"children":[]}]},{"name":"path","attribs":{"d":"M441.3,248.2c0,0-30.9-14.9-35-16.9s-5.2-1.9-9.5,0.1s-124.8,60.2-124.8,60.2c-4.5,2.1-10.3,3.2-16.1,3.2\r\n\t\t\ts-11.7-1.1-16.1-3.2c0,0-117.3-56.6-122.8-59.3c-6-2.9-7.7-2.9-13.1-0.3c-5.6,2.7-33.4,16.1-33.4,16.1c-8.9,4.3-8.9,11.3,0,15.6\r\n\t\t\tl169.2,81.7c4.4,2.1,10.3,3.2,16.1,3.2s11.7-1.1,16.1-3.2l169.2-81.7C450.2,259.5,450.2,252.5,441.3,248.2z"},"children":[{"name":"path","attribs":{"d":"M441.3,248.2c0,0-30.9-14.9-35-16.9s-5.2-1.9-9.5,0.1s-124.8,60.2-124.8,60.2c-4.5,2.1-10.3,3.2-16.1,3.2\r\n\t\t\ts-11.7-1.1-16.1-3.2c0,0-117.3-56.6-122.8-59.3c-6-2.9-7.7-2.9-13.1-0.3c-5.6,2.7-33.4,16.1-33.4,16.1c-8.9,4.3-8.9,11.3,0,15.6\r\n\t\t\tl169.2,81.7c4.4,2.1,10.3,3.2,16.1,3.2s11.7-1.1,16.1-3.2l169.2-81.7C450.2,259.5,450.2,252.5,441.3,248.2z"},"children":[]}]}]}]},{"name":"path","attribs":{"d":"M441.3,347.5c0,0-30.9-14.9-35-16.9s-5.2-1.9-9.5,0.1S272.1,391,272.1,391c-4.5,2.1-10.3,3.2-16.1,3.2s-11.7-1.1-16.1-3.2\r\n\t\tc0,0-117.3-56.6-122.8-59.3c-6-2.9-7.7-2.9-13.1-0.3c-5.6,2.7-33.4,16.1-33.4,16.1c-8.9,4.3-8.9,11.3,0,15.6l169.2,81.7\r\n\t\tc4.4,2.2,10.3,3.2,16.1,3.2s11.7-1.1,16.1-3.2l169.2-81.7C450.2,358.8,450.2,351.8,441.3,347.5z"},"children":[{"name":"path","attribs":{"d":"M441.3,347.5c0,0-30.9-14.9-35-16.9s-5.2-1.9-9.5,0.1S272.1,391,272.1,391c-4.5,2.1-10.3,3.2-16.1,3.2s-11.7-1.1-16.1-3.2\r\n\t\tc0,0-117.3-56.6-122.8-59.3c-6-2.9-7.7-2.9-13.1-0.3c-5.6,2.7-33.4,16.1-33.4,16.1c-8.9,4.3-8.9,11.3,0,15.6l169.2,81.7\r\n\t\tc4.4,2.2,10.3,3.2,16.1,3.2s11.7-1.1,16.1-3.2l169.2-81.7C450.2,358.8,450.2,351.8,441.3,347.5z"},"children":[]}]}]}]};exports.socialBuffer=socialBuffer;var socialChromeOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,32C132.8,32,32,132.8,32,256s100.8,224,224,224s224-100.8,224-224S379.2,32,256,32z M256,76.799\r\n\t\t\tc66.084,0,124.315,35.843,154.558,89.602H256c-43.685,0-79.517,31.358-87.358,71.684l-53.758-92.969\r\n\t\t\tC147.358,103.685,198.884,76.799,256,76.799z M323.2,256c0,36.957-30.243,67.2-67.2,67.2s-67.2-30.243-67.2-67.2\r\n\t\t\ts30.243-67.2,67.2-67.2S323.2,219.043,323.2,256z M76.799,256c0-32.484,8.958-62.716,24.644-89.6L178.715,300.8l0,0\r\n\t\t\tc15.685,26.885,43.685,44.8,77.285,44.8c10.085,0,20.157-2.241,29.116-5.6l-53.758,92.958C144,421.758,76.799,346.715,76.799,256z\r\n\t\t\t M256,435.201L333.285,300.8l0,0c7.831-13.442,12.314-28,12.314-44.8c0-26.885-12.314-50.399-31.358-67.2h107.517\r\n\t\t\tc8.957,21.284,13.443,43.685,13.443,67.2C435.201,354.557,354.557,435.201,256,435.201z"},"children":[{"name":"path","attribs":{"d":"M256,32C132.8,32,32,132.8,32,256s100.8,224,224,224s224-100.8,224-224S379.2,32,256,32z M256,76.799\r\n\t\t\tc66.084,0,124.315,35.843,154.558,89.602H256c-43.685,0-79.517,31.358-87.358,71.684l-53.758-92.969\r\n\t\t\tC147.358,103.685,198.884,76.799,256,76.799z M323.2,256c0,36.957-30.243,67.2-67.2,67.2s-67.2-30.243-67.2-67.2\r\n\t\t\ts30.243-67.2,67.2-67.2S323.2,219.043,323.2,256z M76.799,256c0-32.484,8.958-62.716,24.644-89.6L178.715,300.8l0,0\r\n\t\t\tc15.685,26.885,43.685,44.8,77.285,44.8c10.085,0,20.157-2.241,29.116-5.6l-53.758,92.958C144,421.758,76.799,346.715,76.799,256z\r\n\t\t\t M256,435.201L333.285,300.8l0,0c7.831-13.442,12.314-28,12.314-44.8c0-26.885-12.314-50.399-31.358-67.2h107.517\r\n\t\t\tc8.957,21.284,13.443,43.685,13.443,67.2C435.201,354.557,354.557,435.201,256,435.201z"},"children":[]}]}]}]}]}]};exports.socialChromeOutline=socialChromeOutline;var socialChrome={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M188.8,255.925c0,36.946,30.243,67.178,67.2,67.178s67.199-30.231,67.199-67.178c0-36.945-30.242-67.179-67.199-67.179\r\n\t\tS188.8,218.98,188.8,255.925z"},"children":[{"name":"path","attribs":{"d":"M188.8,255.925c0,36.946,30.243,67.178,67.2,67.178s67.199-30.231,67.199-67.178c0-36.945-30.242-67.179-67.199-67.179\r\n\t\tS188.8,218.98,188.8,255.925z"},"children":[]}]},{"name":"path","attribs":{"d":"M476.752,217.795c-0.009,0.005-0.016,0.038-0.024,0.042c-1.701-9.877-4.04-19.838-6.989-28.838h-0.107\r\n\t\tc2.983,9,5.352,19,7.072,29h-0.002c-1.719-10-4.088-20-7.07-29h-155.39c19.044,17,31.358,40.175,31.358,67.052\r\n\t\tc0,16.796-4.484,31.284-12.314,44.724L231.044,478.452c0,0-0.009,0.264-0.014,0.264l-0.01,0.284c0.005,0,0.009,0,0.015,0\r\n\t\tl-0.005-0.262c8.203,0.92,16.531,1.262,24.97,1.262c6.842,0,13.609-0.393,20.299-1.002c10.135-0.911,20.077-2.519,29.777-4.733\r\n\t\tC405.68,451.525,480,362.404,480,255.941C480,242.942,478.879,230.188,476.752,217.795z"},"children":[{"name":"path","attribs":{"d":"M476.752,217.795c-0.009,0.005-0.016,0.038-0.024,0.042c-1.701-9.877-4.04-19.838-6.989-28.838h-0.107\r\n\t\tc2.983,9,5.352,19,7.072,29h-0.002c-1.719-10-4.088-20-7.07-29h-155.39c19.044,17,31.358,40.175,31.358,67.052\r\n\t\tc0,16.796-4.484,31.284-12.314,44.724L231.044,478.452c0,0-0.009,0.264-0.014,0.264l-0.01,0.284c0.005,0,0.009,0,0.015,0\r\n\t\tl-0.005-0.262c8.203,0.92,16.531,1.262,24.97,1.262c6.842,0,13.609-0.393,20.299-1.002c10.135-0.911,20.077-2.519,29.777-4.733\r\n\t\tC405.68,451.525,480,362.404,480,255.941C480,242.942,478.879,230.188,476.752,217.795z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,345.496c-33.601,0-61.601-17.91-77.285-44.785L76.006,123.047l-0.137-0.236\r\n\t\tc-10.293,13.896-19.015,29.022-25.903,45.123C38.407,194.945,32,224.686,32,255.925c0,62.695,25.784,119.36,67.316,160.009\r\n\t\tc29.342,28.719,66.545,49.433,108.088,58.619l0.029-0.051l77.683-134.604C276.157,343.256,266.085,345.496,256,345.496z"},"children":[{"name":"path","attribs":{"d":"M256,345.496c-33.601,0-61.601-17.91-77.285-44.785L76.006,123.047l-0.137-0.236\r\n\t\tc-10.293,13.896-19.015,29.022-25.903,45.123C38.407,194.945,32,224.686,32,255.925c0,62.695,25.784,119.36,67.316,160.009\r\n\t\tc29.342,28.719,66.545,49.433,108.088,58.619l0.029-0.051l77.683-134.604C276.157,343.256,266.085,345.496,256,345.496z"},"children":[]}]},{"name":"path","attribs":{"d":"M91.292,104.575l77.35,133.25C176.483,197.513,212.315,166,256,166h205.172c-6.921-15-15.594-30.324-25.779-43.938\r\n\t\tc0.039,0.021,0.078,0.053,0.117,0.074C445.644,135.712,454.278,151,461.172,166h0.172c-6.884-15-15.514-30.38-25.668-43.99\r\n\t\tc-0.115-0.06-0.229-0.168-0.342-0.257C394.475,67.267,329.359,32,256,32c-26.372,0-51.673,4.569-75.172,12.936\r\n\t\tc-34.615,12.327-65.303,32.917-89.687,59.406l0.142,0.243C91.286,104.581,91.289,104.578,91.292,104.575z"},"children":[{"name":"path","attribs":{"d":"M91.292,104.575l77.35,133.25C176.483,197.513,212.315,166,256,166h205.172c-6.921-15-15.594-30.324-25.779-43.938\r\n\t\tc0.039,0.021,0.078,0.053,0.117,0.074C445.644,135.712,454.278,151,461.172,166h0.172c-6.884-15-15.514-30.38-25.668-43.99\r\n\t\tc-0.115-0.06-0.229-0.168-0.342-0.257C394.475,67.267,329.359,32,256,32c-26.372,0-51.673,4.569-75.172,12.936\r\n\t\tc-34.615,12.327-65.303,32.917-89.687,59.406l0.142,0.243C91.286,104.581,91.289,104.578,91.292,104.575z"},"children":[]}]}]}]};exports.socialChrome=socialChrome;var socialCodepenOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M387.547,203.724c-41.135-27.326-82.225-54.721-123.261-82.195\r\n\t\tc-5.844-3.912-11.12-3.802-16.938,0.095c-40.785,27.313-81.818,54.546-122.724,81.676c-5.103,3.384-7.624,7.575-7.624,13.716\r\n\t\tv79.729c0,6.174,2.484,10.342,7.594,13.73c40.906,27.13,81.841,54.361,122.625,81.676c5.81,3.891,11.131,4.055,16.984,0.137\r\n\t\tc41.035-27.474,82.145-54.873,123.286-82.188c4.858-3.226,7.511-7.309,7.511-13.094v-80.623\r\n\t\tC395,210.667,392.225,206.83,387.547,203.724z M268,152.484l93.055,62.218l-39.751,26.467c-0.919,0.603-2.923,0.604-3.839,0\r\n\t\tc-15.944-10.501-31.816-21.113-47.627-31.815c-1.033-0.699-1.828-2.319-1.838-3.52V152.484z M244,152.765v51.706\r\n\t\tc-0.024,1.825-1.313,4.316-2.799,5.334c-15.258,10.451-30.655,20.701-46.109,30.86c-1.17,0.77-3.547,1.148-4.566,0.485\r\n\t\tc-13.116-8.531-26.087-17.284-39.787-26.443C181.967,193.889,244,152.765,244,152.765z M141,237.116l29.622,19.771L141,276.725\r\n\t\tV237.116z M244,361.317c0,0-62.034-41.412-93.196-62.187l38.871-26.154c2.072-1.442,3.473-1.344,5.502,0.029\r\n\t\tc15.32,10.36,30.74,20.572,46.062,30.93c1.208,0.815,2.749,2.371,2.761,3.596V361.317z M258.949,282.892\r\n\t\tc-1.824,1.108-4.512,1.046-6.26-0.111l-38.842-25.865c0,0,17.108-11.493,25.356-17.023c4.701-3.152,9.346-6.393,14.164-9.355\r\n\t\tc1.132-0.696,3.532-0.97,4.743-0.168c5.773,3.829,39.854,26.53,39.854,26.53L258.949,282.892z M268,361.102v-51.346\r\n\t\tc-0.026-2.871,0.449-4.602,2.861-6.189c15.198-10.006,30.332-20.11,45.386-30.332c2.335-1.586,3.92-1.623,6.265-0.019\r\n\t\tl38.527,25.882L268,361.102z M370,276.676l-29.59-19.743L370,237.06V276.676z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M387.547,203.724c-41.135-27.326-82.225-54.721-123.261-82.195\r\n\t\tc-5.844-3.912-11.12-3.802-16.938,0.095c-40.785,27.313-81.818,54.546-122.724,81.676c-5.103,3.384-7.624,7.575-7.624,13.716\r\n\t\tv79.729c0,6.174,2.484,10.342,7.594,13.73c40.906,27.13,81.841,54.361,122.625,81.676c5.81,3.891,11.131,4.055,16.984,0.137\r\n\t\tc41.035-27.474,82.145-54.873,123.286-82.188c4.858-3.226,7.511-7.309,7.511-13.094v-80.623\r\n\t\tC395,210.667,392.225,206.83,387.547,203.724z M268,152.484l93.055,62.218l-39.751,26.467c-0.919,0.603-2.923,0.604-3.839,0\r\n\t\tc-15.944-10.501-31.816-21.113-47.627-31.815c-1.033-0.699-1.828-2.319-1.838-3.52V152.484z M244,152.765v51.706\r\n\t\tc-0.024,1.825-1.313,4.316-2.799,5.334c-15.258,10.451-30.655,20.701-46.109,30.86c-1.17,0.77-3.547,1.148-4.566,0.485\r\n\t\tc-13.116-8.531-26.087-17.284-39.787-26.443C181.967,193.889,244,152.765,244,152.765z M141,237.116l29.622,19.771L141,276.725\r\n\t\tV237.116z M244,361.317c0,0-62.034-41.412-93.196-62.187l38.871-26.154c2.072-1.442,3.473-1.344,5.502,0.029\r\n\t\tc15.32,10.36,30.74,20.572,46.062,30.93c1.208,0.815,2.749,2.371,2.761,3.596V361.317z M258.949,282.892\r\n\t\tc-1.824,1.108-4.512,1.046-6.26-0.111l-38.842-25.865c0,0,17.108-11.493,25.356-17.023c4.701-3.152,9.346-6.393,14.164-9.355\r\n\t\tc1.132-0.696,3.532-0.97,4.743-0.168c5.773,3.829,39.854,26.53,39.854,26.53L258.949,282.892z M268,361.102v-51.346\r\n\t\tc-0.026-2.871,0.449-4.602,2.861-6.189c15.198-10.006,30.332-20.11,45.386-30.332c2.335-1.586,3.92-1.623,6.265-0.019\r\n\t\tl38.527,25.882L268,361.102z M370,276.676l-29.59-19.743L370,237.06V276.676z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,64c51.285,0,99.5,19.972,135.765,56.235C428.028,156.5,448,204.715,448,256s-19.972,99.5-56.235,135.765\r\n\t\tC355.5,428.028,307.285,448,256,448s-99.5-19.972-135.765-56.235C83.972,355.5,64,307.285,64,256s19.972-99.5,56.235-135.765\r\n\t\tC156.5,83.972,204.715,64,256,64 M256,32C132.288,32,32,132.288,32,256s100.288,224,224,224s224-100.288,224-224S379.712,32,256,32\r\n\t\tL256,32z"},"children":[{"name":"path","attribs":{"d":"M256,64c51.285,0,99.5,19.972,135.765,56.235C428.028,156.5,448,204.715,448,256s-19.972,99.5-56.235,135.765\r\n\t\tC355.5,428.028,307.285,448,256,448s-99.5-19.972-135.765-56.235C83.972,355.5,64,307.285,64,256s19.972-99.5,56.235-135.765\r\n\t\tC156.5,83.972,204.715,64,256,64 M256,32C132.288,32,32,132.288,32,256s100.288,224,224,224s224-100.288,224-224S379.712,32,256,32\r\n\t\tL256,32z"},"children":[]}]}]}]};exports.socialCodepenOutline=socialCodepenOutline;var socialCodepen={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M241.239,303.936c-15.322-10.357-30.742-20.569-46.062-30.93c-2.03-1.373-3.43-1.472-5.502-0.029l-38.871,26.154\r\n\t\tC181.966,319.905,244,361.317,244,361.317v-53.786C243.988,306.307,242.447,304.751,241.239,303.936z"},"children":[{"name":"path","attribs":{"d":"M241.239,303.936c-15.322-10.357-30.742-20.569-46.062-30.93c-2.03-1.373-3.43-1.472-5.502-0.029l-38.871,26.154\r\n\t\tC181.966,319.905,244,361.317,244,361.317v-53.786C243.988,306.307,242.447,304.751,241.239,303.936z"},"children":[]}]},{"name":"path","attribs":{"d":"M195.092,240.666c15.454-10.16,30.851-20.409,46.109-30.86c1.486-1.018,2.775-3.509,2.799-5.334v-51.706\r\n\t\tc0,0-62.033,41.124-93.262,61.942c13.7,9.159,26.671,17.913,39.787,26.443C191.545,241.813,193.921,241.435,195.092,240.666z"},"children":[{"name":"path","attribs":{"d":"M195.092,240.666c15.454-10.16,30.851-20.409,46.109-30.86c1.486-1.018,2.775-3.509,2.799-5.334v-51.706\r\n\t\tc0,0-62.033,41.124-93.262,61.942c13.7,9.159,26.671,17.913,39.787,26.443C191.545,241.813,193.921,241.435,195.092,240.666z"},"children":[]}]},{"name":"path","attribs":{"d":"M269.838,209.354c15.811,10.703,31.683,21.314,47.627,31.815c0.916,0.604,2.92,0.602,3.839,0l39.751-26.467L268,152.484\r\n\t\tv53.35C268.01,207.035,268.805,208.655,269.838,209.354z"},"children":[{"name":"path","attribs":{"d":"M269.838,209.354c15.811,10.703,31.683,21.314,47.627,31.815c0.916,0.604,2.92,0.602,3.839,0l39.751-26.467L268,152.484\r\n\t\tv53.35C268.01,207.035,268.805,208.655,269.838,209.354z"},"children":[]}]},{"name":"path","attribs":{"d":"M258.109,230.369c-1.21-0.802-3.611-0.528-4.743,0.168c-4.817,2.962-9.463,6.203-14.164,9.355\r\n\t\tc-8.248,5.53-25.356,17.023-25.356,17.023l38.842,25.865c1.748,1.157,4.436,1.22,6.26,0.111l39.014-25.993\r\n\t\tC297.963,256.898,263.883,234.197,258.109,230.369z"},"children":[{"name":"path","attribs":{"d":"M258.109,230.369c-1.21-0.802-3.611-0.528-4.743,0.168c-4.817,2.962-9.463,6.203-14.164,9.355\r\n\t\tc-8.248,5.53-25.356,17.023-25.356,17.023l38.842,25.865c1.748,1.157,4.436,1.22,6.26,0.111l39.014-25.993\r\n\t\tC297.963,256.898,263.883,234.197,258.109,230.369z"},"children":[]}]},{"name":"polygon","attribs":{"points":"141,237.116 141,276.725 170.622,256.887 \t"},"children":[{"name":"polygon","attribs":{"points":"141,237.116 141,276.725 170.622,256.887 \t"},"children":[]}]},{"name":"path","attribs":{"d":"M256,32C132.288,32,32,132.288,32,256s100.288,224,224,224s224-100.288,224-224S379.712,32,256,32z M395,297.006\r\n\t\tc0,5.785-2.652,9.868-7.511,13.094c-41.142,27.314-82.251,54.714-123.286,82.188c-5.854,3.918-11.174,3.754-16.984-0.137\r\n\t\tc-40.783-27.314-81.719-54.546-122.625-81.676c-5.11-3.389-7.594-7.557-7.594-13.73v-79.729c0-6.141,2.521-10.332,7.624-13.716\r\n\t\tc40.906-27.13,81.939-54.363,122.724-81.676c5.818-3.896,11.094-4.007,16.938-0.095c41.036,27.474,82.126,54.869,123.261,82.195\r\n\t\tc4.678,3.106,7.453,6.943,7.453,12.66V297.006z"},"children":[{"name":"path","attribs":{"d":"M256,32C132.288,32,32,132.288,32,256s100.288,224,224,224s224-100.288,224-224S379.712,32,256,32z M395,297.006\r\n\t\tc0,5.785-2.652,9.868-7.511,13.094c-41.142,27.314-82.251,54.714-123.286,82.188c-5.854,3.918-11.174,3.754-16.984-0.137\r\n\t\tc-40.783-27.314-81.719-54.546-122.625-81.676c-5.11-3.389-7.594-7.557-7.594-13.73v-79.729c0-6.141,2.521-10.332,7.624-13.716\r\n\t\tc40.906-27.13,81.939-54.363,122.724-81.676c5.818-3.896,11.094-4.007,16.938-0.095c41.036,27.474,82.126,54.869,123.261,82.195\r\n\t\tc4.678,3.106,7.453,6.943,7.453,12.66V297.006z"},"children":[]}]},{"name":"path","attribs":{"d":"M316.247,273.234c-15.054,10.222-30.188,20.326-45.386,30.332c-2.412,1.588-2.888,3.318-2.861,6.189v51.346l93.039-62.004\r\n\t\tl-38.527-25.882C320.167,271.611,318.582,271.648,316.247,273.234z"},"children":[{"name":"path","attribs":{"d":"M316.247,273.234c-15.054,10.222-30.188,20.326-45.386,30.332c-2.412,1.588-2.888,3.318-2.861,6.189v51.346l93.039-62.004\r\n\t\tl-38.527-25.882C320.167,271.611,318.582,271.648,316.247,273.234z"},"children":[]}]},{"name":"polygon","attribs":{"points":"370,276.676 370,237.06 340.41,256.933 \t"},"children":[{"name":"polygon","attribs":{"points":"370,276.676 370,237.06 340.41,256.933 \t"},"children":[]}]}]}]};exports.socialCodepen=socialCodepen;var socialCss3Outline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M354.676,366.898l-98.608,28.125l-98.458-28.248L150.864,289h48.253l3.433,39.563l53.586,15.163l0.132,0.273h0.034\r\n\t\tl53.467-14.852L315.381,265H203l-4-50h120.646l4.396-51H140l-4-49h240.58L354.676,366.898z"},"children":[{"name":"path","attribs":{"d":"M354.676,366.898l-98.608,28.125l-98.458-28.248L150.864,289h48.253l3.433,39.563l53.586,15.163l0.132,0.273h0.034\r\n\t\tl53.467-14.852L315.381,265H203l-4-50h120.646l4.396-51H140l-4-49h240.58L354.676,366.898z"},"children":[]}]},{"name":"path","attribs":{"d":"M64,32l34.936,403.301L255.769,480l157.245-44.705L448,32H64z M383.041,410.51l-127.262,36.187l-126.867-36.169L98.896,64\r\n\t\tH413.1L383.041,410.51z"},"children":[{"name":"path","attribs":{"d":"M64,32l34.936,403.301L255.769,480l157.245-44.705L448,32H64z M383.041,410.51l-127.262,36.187l-126.867-36.169L98.896,64\r\n\t\tH413.1L383.041,410.51z"},"children":[]}]}]}]};exports.socialCss3Outline=socialCss3Outline;var socialCss3={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"transform":"translate(336 96)"},"children":[{"name":"g","attribs":{"id":"icon-css3"},"children":[{"name":"g","attribs":{"id":"icon-css3"},"children":[{"name":"path","attribs":{"d":"M-79.718,243.488L-79.718,243.488z"},"children":[{"name":"path","attribs":{"d":"M-79.718,243.488L-79.718,243.488z"},"children":[]}]},{"name":"path","attribs":{"d":"M-272-64l34.946,403.219L-80.233,384l157.259-44.85L112-64H-272z M18.676,270.898l-98.607,28.125l-98.458-28.248\r\n\t\t\tL-185.136,193h48.253l3.433,39.562l53.586,15.163l0.132,0.273h0.034l53.467-14.852L-20.619,169H-133l-4-50h120.646l4.396-51H-196\r\n\t\t\tl-4-49H40.58L18.676,270.898z"},"children":[{"name":"path","attribs":{"d":"M-272-64l34.946,403.219L-80.233,384l157.259-44.85L112-64H-272z M18.676,270.898l-98.607,28.125l-98.458-28.248\r\n\t\t\tL-185.136,193h48.253l3.433,39.562l53.586,15.163l0.132,0.273h0.034l53.467-14.852L-20.619,169H-133l-4-50h120.646l4.396-51H-196\r\n\t\t\tl-4-49H40.58L18.676,270.898z"},"children":[]}]}]}]}]}]};exports.socialCss3=socialCss3;var socialDesignernewsOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"290.9,145.9 226.5,96 291.1,198.8 \t"},"children":[{"name":"polygon","attribs":{"points":"290.9,145.9 226.5,96 291.1,198.8 \t"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M32.5,260"},"children":[{"name":"path","attribs":{"d":"M32.5,260"},"children":[]}]},{"name":"path","attribs":{"d":"M329,96v80.3V260h-35.9l-63.2-98l1.7,98H191V152.9l-37.1-29.1c1,1.2,2.1,2.4,3,3.6c10,13.8,15,30.7,15,50.5\r\n\t\t\tc0,48.9-30.5,82-76.8,82H32l200.1,156H480V214.7L329,96z M464,400H237.7L78.6,276h16.5c13.5,0,26.2-2.7,37.7-7.4\r\n\t\t\tc11.5-4.7,21.4-11.8,29.8-20.7c4.8-5.1,9.4-11,12.4-17.1v28.7V276h16.2h40.4H248l-0.3-16.5l-0.7-41.9l32.6,50.7l4.7,7.6h8.8h36.8\r\n\t\t\tH345v-16.5v-83.1v-47l0.2,0.3L464,222.4V400z"},"children":[{"name":"path","attribs":{"d":"M329,96v80.3V260h-35.9l-63.2-98l1.7,98H191V152.9l-37.1-29.1c1,1.2,2.1,2.4,3,3.6c10,13.8,15,30.7,15,50.5\r\n\t\t\tc0,48.9-30.5,82-76.8,82H32l200.1,156H480V214.7L329,96z M464,400H237.7L78.6,276h16.5c13.5,0,26.2-2.7,37.7-7.4\r\n\t\t\tc11.5-4.7,21.4-11.8,29.8-20.7c4.8-5.1,9.4-11,12.4-17.1v28.7V276h16.2h40.4H248l-0.3-16.5l-0.7-41.9l32.6,50.7l4.7,7.6h8.8h36.8\r\n\t\t\tH345v-16.5v-83.1v-47l0.2,0.3L464,222.4V400z"},"children":[]}]}]}]},{"name":"path","attribs":{"d":"M90.6,150.4c11,0,23.7,3.2,23.7,28.8c0,6.9-1,16.3-6,21.8c-3.6,3.9-9.6,6-17.7,6H87v-57h3 M90.7,134H71v89h19.5\r\n\t\tc26,0,39.9-15.6,39.9-43.9C130.4,150.3,116.1,134,90.7,134L90.7,134z"},"children":[{"name":"path","attribs":{"d":"M90.6,150.4c11,0,23.7,3.2,23.7,28.8c0,6.9-1,16.3-6,21.8c-3.6,3.9-9.6,6-17.7,6H87v-57h3 M90.7,134H71v89h19.5\r\n\t\tc26,0,39.9-15.6,39.9-43.9C130.4,150.3,116.1,134,90.7,134L90.7,134z"},"children":[]}]}]}]};exports.socialDesignernewsOutline=socialDesignernewsOutline;var socialDesignernews={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"290.4,145 227,96 290.6,198.2 \t\t"},"children":[{"name":"polygon","attribs":{"points":"290.4,145 227,96 290.6,198.2 \t\t"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M329,96v79.6V259h-36.4l-63.2-98.6l1.7,98.6H191V152l-37.3-29.3c1,1.2,2,2.4,2.9,3.7c10,13.9,15,30.5,15,50.5\r\n\t\t\tc0,49.2-30.6,82.1-76.9,82.1H32v0.4L231.6,416H480V214.1L329,96z"},"children":[{"name":"path","attribs":{"d":"M329,96v79.6V259h-36.4l-63.2-98.6l1.7,98.6H191V152l-37.3-29.3c1,1.2,2,2.4,2.9,3.7c10,13.9,15,30.5,15,50.5\r\n\t\t\tc0,49.2-30.6,82.1-76.9,82.1H32v0.4L231.6,416H480V214.1L329,96z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M129.9,178.1c0-29-14.2-45.1-39.7-45.1H71v89h19C116,222,129.9,206.6,129.9,178.1z"},"children":[{"name":"path","attribs":{"d":"M129.9,178.1c0-29-14.2-45.1-39.7-45.1H71v89h19C116,222,129.9,206.6,129.9,178.1z"},"children":[]}]}]}]}]}]};exports.socialDesignernews=socialDesignernews;var socialDribbbleOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,64C150,64,64,150,64,256c0,106.1,86,192,192,192s192-85.9,192-192C448,150,362,64,256,64z M377.9,152.5\r\n\tc21.6,25.4,35.3,57.6,37.7,92.9c-34.6-1.8-76-1.8-109.2,1.3c-4.2-10.6-8.5-21-13.2-31C331.5,199.1,361,177.3,377.9,152.5z M256,96\r\n\tc38.8,0,74.4,13.8,102.1,36.8c-17.4,22-44.7,41.1-78.7,55.6c-18.6-34.4-40-64-62.8-87.3C229.3,97.9,242.4,96,256,96z M183.6,113.5\r\n\tc23.1,23,44.8,52.3,63.8,86.6c-36.1,11-77.5,17.3-121.7,17.3c-8.4,0-16.6-0.3-24.7-0.8C112.5,171.5,143,134.1,183.6,113.5z\r\n\t M96.3,248.4c9.1,0.4,18.3,0.6,27.6,0.5c50.4-0.6,97.3-8.5,137.6-21.4c3.8,7.9,7.4,16,10.8,24.3c-5.5,1.3-10.4,2.7-14.3,4.3\r\n\tc-55.1,23.1-98.5,60.4-122,105.5c-24.8-28.2-40-65.1-40-105.6C96,253.4,96.1,250.9,96.3,248.4z M256,416c-37,0-71-12.6-98.1-33.7\r\n\tc21.3-42.2,59.3-77.1,107.2-98.8c4.5-2.1,10.5-3.8,17.4-5.3c5.7,15.8,10.8,32.2,15.3,49.2c6.9,26.5,11.8,52.7,14.8,78.1\r\n\tC295,412.2,276,416,256,416z M342.5,390.5c-3-25.7-7.9-52.1-14.9-78.9c-3.4-13-7.3-25.6-11.5-37.9c31.4-2.6,69-2.2,98.9,0\r\n\tC409.6,322.8,382,365,342.5,390.5z"},"children":[]}]};exports.socialDribbbleOutline=socialDribbbleOutline;var socialDribbble={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,64C150,64,64,150,64,256c0,106.1,86,192,192,192s192-85.9,192-192C448,150,362,64,256,64z M256,415.5\r\n\t\t\tc-88.1,0-159.5-71.4-159.5-159.5c0-88.1,71.4-159.5,159.5-159.5c88.1,0,159.5,71.4,159.5,159.5C415.5,344.1,344.1,415.5,256,415.5\r\n\t\t\tz"},"children":[{"name":"path","attribs":{"d":"M256,64C150,64,64,150,64,256c0,106.1,86,192,192,192s192-85.9,192-192C448,150,362,64,256,64z M256,415.5\r\n\t\t\tc-88.1,0-159.5-71.4-159.5-159.5c0-88.1,71.4-159.5,159.5-159.5c88.1,0,159.5,71.4,159.5,159.5C415.5,344.1,344.1,415.5,256,415.5\r\n\t\t\tz"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M306.3,246.7c23.4-2.2,50.9-2.9,77.2-2.4c-2.3-25.4-12-48.7-27-67.6c-16.5,14.9-38,28.1-63.3,39\r\n\t\t\tC297.8,225.7,302.1,236.1,306.3,246.7z"},"children":[{"name":"path","attribs":{"d":"M306.3,246.7c23.4-2.2,50.9-2.9,77.2-2.4c-2.3-25.4-12-48.7-27-67.6c-16.5,14.9-38,28.1-63.3,39\r\n\t\t\tC297.8,225.7,302.1,236.1,306.3,246.7z"},"children":[]}]},{"name":"path","attribs":{"d":"M335.4,155.6C313.6,138.3,286,128,256,128c-5.1,0-10.2,0.3-15.2,0.9c13.8,17.7,26.7,37.6,38.6,59.5\r\n\t\t\tC301.1,179.2,320,168.1,335.4,155.6z"},"children":[{"name":"path","attribs":{"d":"M335.4,155.6C313.6,138.3,286,128,256,128c-5.1,0-10.2,0.3-15.2,0.9c13.8,17.7,26.7,37.6,38.6,59.5\r\n\t\t\tC301.1,179.2,320,168.1,335.4,155.6z"},"children":[]}]},{"name":"path","attribs":{"d":"M205.9,138.2c-34.1,14.5-60.7,43.4-72,79.1c41.1-0.7,79.6-7,113.4-17.3C234.7,177,220.7,156.3,205.9,138.2z"},"children":[{"name":"path","attribs":{"d":"M205.9,138.2c-34.1,14.5-60.7,43.4-72,79.1c41.1-0.7,79.6-7,113.4-17.3C234.7,177,220.7,156.3,205.9,138.2z"},"children":[]}]},{"name":"path","attribs":{"d":"M383,272.2c-22.3-0.6-46-0.2-66.9,1.5c4.1,12.3,8.1,24.9,11.5,37.9c3.8,14.6,7,29.1,9.6,43.4\r\n\t\t\tC361.8,334.7,378.8,305.4,383,272.2z"},"children":[{"name":"path","attribs":{"d":"M383,272.2c-22.3-0.6-46-0.2-66.9,1.5c4.1,12.3,8.1,24.9,11.5,37.9c3.8,14.6,7,29.1,9.6,43.4\r\n\t\t\tC361.8,334.7,378.8,305.4,383,272.2z"},"children":[]}]},{"name":"path","attribs":{"d":"M258,256.1c3.9-1.6,8.8-3,14.3-4.3c-3.4-8.3-7.1-16.4-10.8-24.3c-39.1,12.6-84.6,20.3-133.3,21.3\r\n\t\t\tc-0.1,2.4-0.2,4.8-0.2,7.3c0,29.1,9.7,55.9,26,77.4C178.9,301,214.9,274.2,258,256.1z"},"children":[{"name":"path","attribs":{"d":"M258,256.1c3.9-1.6,8.8-3,14.3-4.3c-3.4-8.3-7.1-16.4-10.8-24.3c-39.1,12.6-84.6,20.3-133.3,21.3\r\n\t\t\tc-0.1,2.4-0.2,4.8-0.2,7.3c0,29.1,9.7,55.9,26,77.4C178.9,301,214.9,274.2,258,256.1z"},"children":[]}]},{"name":"path","attribs":{"d":"M282.6,278.2c-6.9,1.5-12.9,3.2-17.4,5.3c-37.1,16.8-68.3,41.6-90.4,71.5c22.1,18.2,50.4,29,81.2,29\r\n\t\t\tc18.5,0,36-3.9,51.8-10.9c-2.7-15.1-6-30.3-10-45.7C293.4,310.5,288.2,294,282.6,278.2z"},"children":[{"name":"path","attribs":{"d":"M282.6,278.2c-6.9,1.5-12.9,3.2-17.4,5.3c-37.1,16.8-68.3,41.6-90.4,71.5c22.1,18.2,50.4,29,81.2,29\r\n\t\t\tc18.5,0,36-3.9,51.8-10.9c-2.7-15.1-6-30.3-10-45.7C293.4,310.5,288.2,294,282.6,278.2z"},"children":[]}]}]}]}]}]};exports.socialDribbble=socialDribbble;var socialDropboxOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M177,77.1L64,151l78.3,63L256,143.2L177,77.1z M91.4,153.3l84.5-56.8l52.9,46L143.4,195L91.4,153.3z"},"children":[{"name":"path","attribs":{"d":"M177,77.1L64,151l78.3,63L256,143.2L177,77.1z M91.4,153.3l84.5-56.8l52.9,46L143.4,195L91.4,153.3z"},"children":[]}]},{"name":"path","attribs":{"d":"M369.8,213L256,284.1l79,66.1l19-12.6v20.2L256,417l-98-58.5V338l19,12.2l79-66.1L142.2,213L64,276.3l78,51.5v39.4\r\n\t\tl114,67.8l114-68.5v-39.2l78-51.2L369.8,213z M143.4,230.9l85.4,55.4l-52.9,44.1l-84.5-55.8L143.4,230.9z M283.2,286.3l85.4-55.4\r\n\t\tl52.1,43.6l-84.5,55.8L283.2,286.3z"},"children":[{"name":"path","attribs":{"d":"M369.8,213L256,284.1l79,66.1l19-12.6v20.2L256,417l-98-58.5V338l19,12.2l79-66.1L142.2,213L64,276.3l78,51.5v39.4\r\n\t\tl114,67.8l114-68.5v-39.2l78-51.2L369.8,213z M143.4,230.9l85.4,55.4l-52.9,44.1l-84.5-55.8L143.4,230.9z M283.2,286.3l85.4-55.4\r\n\t\tl52.1,43.6l-84.5,55.8L283.2,286.3z"},"children":[]}]},{"name":"path","attribs":{"d":"M448,151L335,77.1l-79,66.1l113.8,70.8L448,151z M283.2,142.6l52.9-46l84.5,56.8L368.6,195L283.2,142.6z"},"children":[{"name":"path","attribs":{"d":"M448,151L335,77.1l-79,66.1l113.8,70.8L448,151z M283.2,142.6l52.9-46l84.5,56.8L368.6,195L283.2,142.6z"},"children":[]}]}]}]};exports.socialDropboxOutline=socialDropboxOutline;var socialDropbox={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"177,77 64,150.9 142.1,213.6 256,143.1 \t"},"children":[{"name":"polygon","attribs":{"points":"177,77 64,150.9 142.1,213.6 256,143.1 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"64,276.3 177,350.2 256,284.1 142.1,213.6 \t"},"children":[{"name":"polygon","attribs":{"points":"64,276.3 177,350.2 256,284.1 142.1,213.6 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"256,284.1 335,350.2 448,276.3 369.9,213.6 \t"},"children":[{"name":"polygon","attribs":{"points":"256,284.1 335,350.2 448,276.3 369.9,213.6 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"448,150.9 335,77 256,143.1 369.9,213.6 \t"},"children":[{"name":"polygon","attribs":{"points":"448,150.9 335,77 256,143.1 369.9,213.6 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"256.2,298.3 176.4,364.3 142,342.1 142,367 256,435 370,367 370,342.1 335.8,364.3 \t"},"children":[{"name":"polygon","attribs":{"points":"256.2,298.3 176.4,364.3 142,342.1 142,367 256,435 370,367 370,342.1 335.8,364.3 \t"},"children":[]}]}]}]};exports.socialDropbox=socialDropbox;var socialEuroOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M310.143,64c31.337,0,59.096,2.607,88.137,8.364l-5.06,34.148c-29.405-4.319-55.659-6.429-79.853-6.429\r\n\t\tc-35.025,0-58.535,6.153-74.129,19.365C220.142,135.627,218,158.428,218,174.17v2.33V193h15.867h120.184l-2.383,16H233.867H218\r\n\t\tv15.5v48V289h15.867h105.885l-2.384,16H233.867H218v15.5v12.33c0,19.546,2.338,44.061,21.084,60.274\r\n\t\tc15.042,13.01,37.921,18.812,74.258,18.812c24.534,0,50.197-2.055,79.771-6.42l5.014,34.138\r\n\t\tc-29.031,5.759-56.741,8.366-87.977,8.366c-52.591,0-91.43-9.08-115.565-26.987C172.615,404.711,162,380.361,162,346.57V320.5V305\r\n\t\th-16.133H112v-16h33.867H162v-16.5v-48V209h-16.133H112v-16h33.867H162v-16.5v-11.07c0-33.791,10.613-58.142,32.582-74.442\r\n\t\tC218.715,73.08,257.552,64,310.143,64 M310.209,48C195.479,48,146,89.225,146,165.43V177H96v48h50v48H96v48h50v25.57\r\n\t\tC146,422.774,195.481,464,310.211,464c35.25,0,67.777-3.123,105.789-11.866l-9.411-64.96c-37.323,6.244-66.942,8.742-93.206,8.742\r\n\t\tc-64.275,0-79.383-18.739-79.383-63.086V321h117.162l7.148-48H234v-48h131.461l7.149-48H234v-2.83\r\n\t\tc0-35.92,15.159-58.086,79.434-58.086c26.264,0,55.959,2.498,93.281,8.742L416,60C377.988,51.257,345.458,48,310.209,48L310.209,48\r\n\t\tz"},"children":[{"name":"path","attribs":{"d":"M310.143,64c31.337,0,59.096,2.607,88.137,8.364l-5.06,34.148c-29.405-4.319-55.659-6.429-79.853-6.429\r\n\t\tc-35.025,0-58.535,6.153-74.129,19.365C220.142,135.627,218,158.428,218,174.17v2.33V193h15.867h120.184l-2.383,16H233.867H218\r\n\t\tv15.5v48V289h15.867h105.885l-2.384,16H233.867H218v15.5v12.33c0,19.546,2.338,44.061,21.084,60.274\r\n\t\tc15.042,13.01,37.921,18.812,74.258,18.812c24.534,0,50.197-2.055,79.771-6.42l5.014,34.138\r\n\t\tc-29.031,5.759-56.741,8.366-87.977,8.366c-52.591,0-91.43-9.08-115.565-26.987C172.615,404.711,162,380.361,162,346.57V320.5V305\r\n\t\th-16.133H112v-16h33.867H162v-16.5v-48V209h-16.133H112v-16h33.867H162v-16.5v-11.07c0-33.791,10.613-58.142,32.582-74.442\r\n\t\tC218.715,73.08,257.552,64,310.143,64 M310.209,48C195.479,48,146,89.225,146,165.43V177H96v48h50v48H96v48h50v25.57\r\n\t\tC146,422.774,195.481,464,310.211,464c35.25,0,67.777-3.123,105.789-11.866l-9.411-64.96c-37.323,6.244-66.942,8.742-93.206,8.742\r\n\t\tc-64.275,0-79.383-18.739-79.383-63.086V321h117.162l7.148-48H234v-48h131.461l7.149-48H234v-2.83\r\n\t\tc0-35.92,15.159-58.086,79.434-58.086c26.264,0,55.959,2.498,93.281,8.742L416,60C377.988,51.257,345.458,48,310.209,48L310.209,48\r\n\t\tz"},"children":[]}]}]}]};exports.socialEuroOutline=socialEuroOutline;var socialEuro={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M234,272v-48h131.094l7.149-48H234v-1.83c0-35.92,14.975-58.086,79.25-58.086c26.264,0,55.867,2.498,93.189,8.742\r\n\t\tL416,59.866C377.988,51.123,345.306,48,310.057,48C195.326,48,146,89.225,146,165.43V176H96v48h50v48H96v48h50v26.57\r\n\t\tC146,422.774,195.297,464,310.027,464c35.25,0,67.848-3.123,105.859-11.866l-9.619-64.96c-37.322,6.244-66.781,8.742-93.045,8.742\r\n\t\tc-64.276,0-79.223-18.739-79.223-63.086V320h116.795l7.148-48H234z"},"children":[{"name":"path","attribs":{"d":"M234,272v-48h131.094l7.149-48H234v-1.83c0-35.92,14.975-58.086,79.25-58.086c26.264,0,55.867,2.498,93.189,8.742\r\n\t\tL416,59.866C377.988,51.123,345.306,48,310.057,48C195.326,48,146,89.225,146,165.43V176H96v48h50v48H96v48h50v26.57\r\n\t\tC146,422.774,195.297,464,310.027,464c35.25,0,67.848-3.123,105.859-11.866l-9.619-64.96c-37.322,6.244-66.781,8.742-93.045,8.742\r\n\t\tc-64.276,0-79.223-18.739-79.223-63.086V320h116.795l7.148-48H234z"},"children":[]}]}]}]};exports.socialEuro=socialEuro;var socialFacebookOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M288,192v-38.1c0-17.2,3.8-25.9,30.5-25.9H352V64h-55.9c-68.5,0-91.1,31.4-91.1,85.3V192h-45v64h45v192h83V256h56.4l7.6-64\r\n\tH288z M330.2,240h-41.1H272v15.5V432h-51V255.5V240h-14.9H176v-32h30.1H221v-16.5v-42.2c0-24.5,5.4-41.2,15.5-51.8\r\n\tC247.7,85.5,267.6,80,296.1,80H336v32h-17.5c-12,0-27.5,1.1-37.1,11.7c-8.1,9-9.4,20.1-9.4,30.1v37.6V208h17.1H334L330.2,240z"},"children":[]}]};exports.socialFacebookOutline=socialFacebookOutline;var socialFacebook={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M288,192v-38.1c0-17.2,3.8-25.9,30.5-25.9H352V64h-55.9c-68.5,0-91.1,31.4-91.1,85.3V192h-45v64h45v192h83V256h56.4l7.6-64\r\n\tH288z"},"children":[]}]};exports.socialFacebook=socialFacebook;var socialFoursquareOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M398.484,164.452l-27.399,137.185C372.848,294.486,386.545,224.793,398.484,164.452z"},"children":[{"name":"path","attribs":{"d":"M398.484,164.452l-27.399,137.185C372.848,294.486,386.545,224.793,398.484,164.452z"},"children":[]}]},{"name":"path","attribs":{"d":"M376.764,32c0,0-205.353,0-238.223,0C105.666,32,96,56.798,96,72.414c0,15.627,0,379.64,0,379.64\r\n\t\tc0,17.591,9.425,24.117,14.718,26.267c5.299,2.155,19.916,3.971,28.673-6.168c0,0,112.469-131.09,114.4-133.027\r\n\t\tc2.921-2.931,2.921-3.125,5.844-3.125c5.843,0,49.192,0,72.766,0c30.575,0,35.49-21.676,38.684-34.559l27.399-137.087\r\n\t\tc6.074-30.702,11.693-58.938,15.053-75.325C421.143,51.944,411.744,32,376.764,32z M376.426,96c0,0-31.575,156.209-36.034,176.834\r\n\t\tC335,297.771,332.75,304,307,304c-17.605,0-62.375,0-62.375,0c-2.747,0-3.868-0.147-6.049,2.041\r\n\t\tc-1.443,1.447-78.168,89.562-78.168,89.562c-19.034,23.396-26.909,31.795-29.033,31.795s-3.375,0-3.375-38.408V91.708\r\n\t\tC128,67.034,128.3,64,157.198,64C181.748,64,352,64,352,64C382,64,382.834,64.833,376.426,96z"},"children":[{"name":"path","attribs":{"d":"M376.764,32c0,0-205.353,0-238.223,0C105.666,32,96,56.798,96,72.414c0,15.627,0,379.64,0,379.64\r\n\t\tc0,17.591,9.425,24.117,14.718,26.267c5.299,2.155,19.916,3.971,28.673-6.168c0,0,112.469-131.09,114.4-133.027\r\n\t\tc2.921-2.931,2.921-3.125,5.844-3.125c5.843,0,49.192,0,72.766,0c30.575,0,35.49-21.676,38.684-34.559l27.399-137.087\r\n\t\tc6.074-30.702,11.693-58.938,15.053-75.325C421.143,51.944,411.744,32,376.764,32z M376.426,96c0,0-31.575,156.209-36.034,176.834\r\n\t\tC335,297.771,332.75,304,307,304c-17.605,0-62.375,0-62.375,0c-2.747,0-3.868-0.147-6.049,2.041\r\n\t\tc-1.443,1.447-78.168,89.562-78.168,89.562c-19.034,23.396-26.909,31.795-29.033,31.795s-3.375,0-3.375-38.408V91.708\r\n\t\tC128,67.034,128.3,64,157.198,64C181.748,64,352,64,352,64C382,64,382.834,64.833,376.426,96z"},"children":[]}]},{"name":"path","attribs":{"d":"M398.484,164.452l15.053-75.374C410.178,105.466,404.559,133.75,398.484,164.452z"},"children":[{"name":"path","attribs":{"d":"M398.484,164.452l15.053-75.374C410.178,105.466,404.559,133.75,398.484,164.452z"},"children":[]}]},{"name":"path","attribs":{"d":"M328.573,96c-5.571,0-157.995,0-157.995,0C164.091,96,160,101.594,160,106.586v231.255c0,0.67,0.402,0.975,0.935,0.36\r\n\t\tc0,0,48.202-55.725,54.056-63.021c5.848-7.289,8.491-8.182,17.233-8.182c0,0,56.695,0,62.212,0c6.549,0,10.24-5.75,10.913-8.982\r\n\t\tc0.671-3.228,10.536-48.213,11.732-54.119c1.191-5.897-4.214-11.898-9.722-11.898c-5.5,0-64.805,0-64.805,0\r\n\t\tc-7.803,0-7.554-5.653-7.554-13.476v-5.512c0-7.815-0.282-13.012,7.516-13.012c0,0,70.403,0,75.313,0\r\n\t\tc4.911,0,10.208-4.442,11.102-8.662l8.468-44.042C338.739,100.823,333.828,96,328.573,96z"},"children":[{"name":"path","attribs":{"d":"M328.573,96c-5.571,0-157.995,0-157.995,0C164.091,96,160,101.594,160,106.586v231.255c0,0.67,0.402,0.975,0.935,0.36\r\n\t\tc0,0,48.202-55.725,54.056-63.021c5.848-7.289,8.491-8.182,17.233-8.182c0,0,56.695,0,62.212,0c6.549,0,10.24-5.75,10.913-8.982\r\n\t\tc0.671-3.228,10.536-48.213,11.732-54.119c1.191-5.897-4.214-11.898-9.722-11.898c-5.5,0-64.805,0-64.805,0\r\n\t\tc-7.803,0-7.554-5.653-7.554-13.476v-5.512c0-7.815-0.282-13.012,7.516-13.012c0,0,70.403,0,75.313,0\r\n\t\tc4.911,0,10.208-4.442,11.102-8.662l8.468-44.042C338.739,100.823,333.828,96,328.573,96z"},"children":[]}]}]}]};exports.socialFoursquareOutline=socialFoursquareOutline;var socialFoursquare={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M376.764,32c0,0-205.353,0-238.223,0C105.666,32,96,56.798,96,72.414c0,15.627,0,379.64,0,379.64\r\n\t\t\tc0,17.591,9.425,24.117,14.718,26.267c5.299,2.155,19.916,3.971,28.673-6.168c0,0,112.469-130.895,114.4-132.834\r\n\t\t\tc2.921-2.93,2.921-2.93,5.844-2.93c5.844,0,49.192,0,72.767,0c30.574,0,35.49-21.869,38.684-34.752\r\n\t\t\tc2.659-10.789,32.489-163.962,42.452-212.559C421.143,51.993,411.745,32,376.764,32z M371.086,301.637\r\n\t\t\tc2.659-10.789,32.489-163.962,42.452-212.559 M362.692,96.67l-9.999,51.734c-1.195,5.65-8.287,11.595-14.863,11.595\r\n\t\t\tc-6.575,0-95.917,0-95.917,0C231.473,160,224,166.138,224,176.602v13.448c0,10.473,7.519,17.894,17.965,17.894\r\n\t\t\tc0,0,74.482,0,81.848,0c7.374,0,14.61,8.109,13.016,16.005c-1.602,7.908-9.086,46.569-9.984,50.89\r\n\t\t\tc-0.902,4.328-5.845,11.725-14.611,11.725c-7.388,0-64.269,0-64.269,0c-11.705,0-15.244,1.533-23.074,11.293\r\n\t\t\tc-7.837,9.77-78.256,94.592-78.256,94.592c-0.713,0.822-1.41,0.584-1.41-0.312V95.896c0-6.684,5.793-14.523,14.479-14.523\r\n\t\t\tc0,0,183.713,0,191.173,0C357.912,81.372,364.488,88.004,362.692,96.67z"},"children":[{"name":"path","attribs":{"d":"M376.764,32c0,0-205.353,0-238.223,0C105.666,32,96,56.798,96,72.414c0,15.627,0,379.64,0,379.64\r\n\t\t\tc0,17.591,9.425,24.117,14.718,26.267c5.299,2.155,19.916,3.971,28.673-6.168c0,0,112.469-130.895,114.4-132.834\r\n\t\t\tc2.921-2.93,2.921-2.93,5.844-2.93c5.844,0,49.192,0,72.767,0c30.574,0,35.49-21.869,38.684-34.752\r\n\t\t\tc2.659-10.789,32.489-163.962,42.452-212.559C421.143,51.993,411.745,32,376.764,32z M371.086,301.637\r\n\t\t\tc2.659-10.789,32.489-163.962,42.452-212.559 M362.692,96.67l-9.999,51.734c-1.195,5.65-8.287,11.595-14.863,11.595\r\n\t\t\tc-6.575,0-95.917,0-95.917,0C231.473,160,224,166.138,224,176.602v13.448c0,10.473,7.519,17.894,17.965,17.894\r\n\t\t\tc0,0,74.482,0,81.848,0c7.374,0,14.61,8.109,13.016,16.005c-1.602,7.908-9.086,46.569-9.984,50.89\r\n\t\t\tc-0.902,4.328-5.845,11.725-14.611,11.725c-7.388,0-64.269,0-64.269,0c-11.705,0-15.244,1.533-23.074,11.293\r\n\t\t\tc-7.837,9.77-78.256,94.592-78.256,94.592c-0.713,0.822-1.41,0.584-1.41-0.312V95.896c0-6.684,5.793-14.523,14.479-14.523\r\n\t\t\tc0,0,183.713,0,191.173,0C357.912,81.372,364.488,88.004,362.692,96.67z"},"children":[]}]}]}]}]}]};exports.socialFoursquare=socialFoursquare;var socialFreebsdDevil={"viewBox":"0 0 512 512","children":[{"name":"style","attribs":{"type":"text/css"},"children":[]},{"name":"path","attribs":{"class":"st0","d":"M502.6,115c-22.5-43.7-58-51-58-51s15.5,32,16,51c0.4,16.1-5.5,28-27.2,33.5s-30.8-2-47.8-17.5\r\n\tS344,104.5,313,103c-40-2-77,9-77,9c-20-25,20-80,20-80c-74.5,29.5-93.7,83.3-96,113.7c-1.9,24.1,8.5,40.8,8.5,40.8s-0.5,27.8-5,42\r\n\tc-3.1,9.8-16.9,25-26,34.5c-12.2,12.7-12.5,38.5,0,57s44,27.5,67,39.5s31.5,21,31.5,21s1,8.3,0.5,15.3s-3.2,14-9,18.2\r\n\tc-5.5,3.9-15.5,0.5-20.5-2s-5-6.2-10.5-8s-7.3-4-6.5-11s2-9-3.5-18.5s-18.5-9.5-29.5-8s-17.3,6.8-17.3,6.8l-16.3-10\r\n\tc0,0,8.5-15.6,5.2-35.6c-7.3-43.8-50-62.8-50-62.8l10.4,44.4c0,0,1.1-2.6,6.4-6.4s8.1-3.6,8.1-3.6s6.6,7.6,9.1,25.3\r\n\tc2.5,18-6.7,27.2-6.7,27.2l-28.3-18l1-14.5L39.8,309L56,345.7l15-4l24,22.7c0,0-15.7,11.7-33,11.7c-11,0-22-6-22-6s-1.4-1-0.8-5.5\r\n\tc0.7-5,6.8-12.5,6.8-12.5H0c0,0,27.3,38.7,65,38.7c31,0,44.2-12.5,44.2-12.5L128,397c0,0,3,5.5,0,7s-7,3.5-9,15s18,29,18,29\r\n\tc21.8,17.8,7,32,7,32h272c-9-13-22.5-18-32-32c0,0-44.8-58.4-1.8-90.4c57.4-42.7,42.8-69.4,41.2-101.4c0,0,31.8-6.6,59.3-33.6\r\n\tS521.6,151.8,502.6,115z M195,203c-16.9,4.5-22.5,35.5-22.5,35.5c1.5-63,57.5-93,65-89s-6.5,39-21,64\r\n\tC216.5,213.5,208.5,199.4,195,203z M232,218c0,0,18-56,37.5-59.5s41.5,21,41.5,62s-26,65.4-42.8,69.2c-16.5,3.8-23,2-23,2\r\n\ts27.5-21.6,23.5-56.8C265.9,210.2,237.3,210.7,232,218z"},"children":[]}]};exports.socialFreebsdDevil=socialFreebsdDevil;var socialGithubOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,32C132.3,32,32,134.9,32,261.7c0,101.5,64.2,187.5,153.2,217.9c1.4,0.3,2.6,0.4,3.8,0.4c8.3,0,11.5-6.1,11.5-11.4\r\n\tc0-5.5-0.2-19.9-0.3-39.1c-8.4,1.9-15.9,2.7-22.6,2.7c-43.1,0-52.9-33.5-52.9-33.5c-10.2-26.5-24.9-33.6-24.9-33.6\r\n\tc-19.5-13.7-0.1-14.1,1.4-14.1c0.1,0,0.1,0,0.1,0c22.5,2,34.3,23.8,34.3,23.8c11.2,19.6,26.2,25.1,39.6,25.1c10.5,0,20-3.4,25.6-6\r\n\tc2-14.8,7.8-24.9,14.2-30.7c-49.7-5.8-102-25.5-102-113.5c0-25.1,8.7-45.6,23-61.6c-2.3-5.8-10-29.2,2.2-60.8c0,0,1.6-0.5,5-0.5\r\n\tc8.1,0,26.4,3.1,56.6,24.1c17.9-5.1,37-7.6,56.1-7.7c19,0.1,38.2,2.6,56.1,7.7c30.2-21,48.5-24.1,56.6-24.1c3.4,0,5,0.5,5,0.5\r\n\tc12.2,31.6,4.5,55,2.2,60.8c14.3,16.1,23,36.6,23,61.6c0,88.2-52.4,107.6-102.3,113.3c8,7.1,15.2,21.1,15.2,42.5\r\n\tc0,30.7-0.3,55.5-0.3,63c0,5.4,3.1,11.5,11.4,11.5c1.2,0,2.6-0.1,4-0.4C415.9,449.2,480,363.1,480,261.7C480,134.9,379.7,32,256,32z\r\n\t M177.6,448.1c2.2,0,4.4-0.1,6.7-0.2c0,2.8,0,5.5,0.1,7.9c0,2.4,0,4.6,0.1,6.5c-15.6-5.8-30.3-13.5-44.1-23\r\n\tC150.2,444.6,162.5,448.1,177.6,448.1z M189,375.2c-0.8,2.2-1.5,4.5-2.1,6.9c-3.4,1-7.5,1.8-11.7,1.8c-10.9,0-19-5.4-25.6-16.9\r\n\tc-2.4-4.6-6.8-10.7-12.9-16.3C153.5,364.8,173,371.6,189,375.2z M379,434.1c-15.8,11.9-33,21.3-51,28.2c0-1.9,0-4.1,0-6.5\r\n\tc0-11.9,0-29.8,0-50.4c0-12.4-2.1-22.5-5-30.5c37.2-8.3,92-33.7,92-125.4c0-24.6-7.1-46.5-21.2-65.1c3.1-12.9,5.5-35.6-5.1-63\r\n\tl-2.7-7.1l-7.2-2.4c-1.5-0.5-4.8-1.3-10-1.3c-11.5,0-30.9,4.1-59.5,22.8c-17-4.2-34.8-6.4-53.1-6.4H256h-0.1\r\n\tc-18.3,0-36.2,2.2-53.1,6.4c-28.6-18.7-48-22.8-59.5-22.8c-5.2,0-8.5,0.9-10,1.4l-7.2,2.4l-2.7,7.1c-10.6,27.5-8.2,50.2-5.1,63\r\n\tc-14.1,18.7-21.2,40.6-21.2,65.1c0,49.6,16,79.9,36.6,98.5c-8.1-6.6-18.6-12.1-31.2-13H102h-0.5h-0.3c-13.1,0-22.3,5.4-25.2,14.7\r\n\tc-4.7,14.8,9.8,25,14.6,28.4l0.5,0.6l1.5,0.6c1.6,1,10.1,7,16.9,24.5c2,6.2,6.3,14.5,13.6,22.2c-13.1-11.2-24.8-24-34.9-38.1\r\n\tC61.9,351.2,48,307.5,48,261.7c0-28.9,5.5-56.9,16.4-83.3c10.5-25.5,25.5-48.3,44.7-67.9c19.1-19.6,41.4-35,66.1-45.7\r\n\tC200.8,53.7,228,48,256,48s55.2,5.6,80.8,16.7c24.8,10.7,47,26.1,66.1,45.7c19.1,19.6,34.2,42.5,44.7,67.9\r\n\tc10.9,26.4,16.4,54.4,16.4,83.3c0,45.8-13.8,89.5-40.1,126.3C411.3,405.6,396.2,421.1,379,434.1z"},"children":[]}]};exports.socialGithubOutline=socialGithubOutline;var socialGithub={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,32C132.3,32,32,134.9,32,261.7c0,101.5,64.2,187.5,153.2,217.9c1.4,0.3,2.6,0.4,3.8,0.4c8.3,0,11.5-6.1,11.5-11.4\r\n\tc0-5.5-0.2-19.9-0.3-39.1c-8.4,1.9-15.9,2.7-22.6,2.7c-43.1,0-52.9-33.5-52.9-33.5c-10.2-26.5-24.9-33.6-24.9-33.6\r\n\tc-19.5-13.7-0.1-14.1,1.4-14.1c0.1,0,0.1,0,0.1,0c22.5,2,34.3,23.8,34.3,23.8c11.2,19.6,26.2,25.1,39.6,25.1c10.5,0,20-3.4,25.6-6\r\n\tc2-14.8,7.8-24.9,14.2-30.7c-49.7-5.8-102-25.5-102-113.5c0-25.1,8.7-45.6,23-61.6c-2.3-5.8-10-29.2,2.2-60.8c0,0,1.6-0.5,5-0.5\r\n\tc8.1,0,26.4,3.1,56.6,24.1c17.9-5.1,37-7.6,56.1-7.7c19,0.1,38.2,2.6,56.1,7.7c30.2-21,48.5-24.1,56.6-24.1c3.4,0,5,0.5,5,0.5\r\n\tc12.2,31.6,4.5,55,2.2,60.8c14.3,16.1,23,36.6,23,61.6c0,88.2-52.4,107.6-102.3,113.3c8,7.1,15.2,21.1,15.2,42.5\r\n\tc0,30.7-0.3,55.5-0.3,63c0,5.4,3.1,11.5,11.4,11.5c1.2,0,2.6-0.1,4-0.4C415.9,449.2,480,363.1,480,261.7C480,134.9,379.7,32,256,32z\r\n\t"},"children":[]}]};exports.socialGithub=socialGithub;var socialGoogleOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M319.408,82.141c11.779,9.576,36.43,29.718,36.43,68.043c0,37.295-21.547,54.934-43.094,71.545\r\n\t\tc-6.695,6.561-14.385,13.608-14.385,24.701c0,11.092,7.689,17.153,13.336,21.671l18.473,14.108\r\n\t\tc22.598,18.641,43.125,35.795,43.125,70.559c0,47.373-46.721,95.232-135.003,95.232c-74.428,0-110.343-34.766-110.343-72.061\r\n\t\tc0-18.139,9.245-43.827,39.525-61.48c31.798-19.142,74.952-21.657,98.023-23.172c-7.178-9.078-15.382-18.67-15.382-34.265\r\n\t\tc0-8.577,2.557-13.609,5.12-19.655c-5.648,0.5-11.283,1-16.42,1c-54.408,0-85.214-39.811-85.214-79.107\r\n\t\tc0-23.186,10.802-48.902,32.856-67.543C215.724,68.031,250.637,64,278.328,64h105.725l-32.846,18.141H319.408z M282.955,305.896\r\n\t\tc-4.137-0.501-6.684-0.501-11.793-0.501c-4.629,0-32.348,1.002-53.895,8.049c-11.3,4.046-44.146,16.125-44.146,51.918\r\n\t\tc0,35.78,35.393,61.467,90.339,61.467c49.283,0,75.432-23.156,75.432-54.404C338.893,346.707,321.971,333.113,282.955,305.896\r\n\t\t M297.834,210.148c11.824-11.592,12.844-27.73,12.844-36.793c0-36.281-22.086-92.73-64.671-92.73\r\n\t\tc-13.339,0-27.724,6.547-35.948,16.639c-8.722,10.593-11.284,24.188-11.284,37.281c0,33.764,20.005,89.727,64.163,89.727\r\n\t\tC275.764,224.271,289.594,218.212,297.834,210.148"},"children":[{"name":"path","attribs":{"d":"M319.408,82.141c11.779,9.576,36.43,29.718,36.43,68.043c0,37.295-21.547,54.934-43.094,71.545\r\n\t\tc-6.695,6.561-14.385,13.608-14.385,24.701c0,11.092,7.689,17.153,13.336,21.671l18.473,14.108\r\n\t\tc22.598,18.641,43.125,35.795,43.125,70.559c0,47.373-46.721,95.232-135.003,95.232c-74.428,0-110.343-34.766-110.343-72.061\r\n\t\tc0-18.139,9.245-43.827,39.525-61.48c31.798-19.142,74.952-21.657,98.023-23.172c-7.178-9.078-15.382-18.67-15.382-34.265\r\n\t\tc0-8.577,2.557-13.609,5.12-19.655c-5.648,0.5-11.283,1-16.42,1c-54.408,0-85.214-39.811-85.214-79.107\r\n\t\tc0-23.186,10.802-48.902,32.856-67.543C215.724,68.031,250.637,64,278.328,64h105.725l-32.846,18.141H319.408z M282.955,305.896\r\n\t\tc-4.137-0.501-6.684-0.501-11.793-0.501c-4.629,0-32.348,1.002-53.895,8.049c-11.3,4.046-44.146,16.125-44.146,51.918\r\n\t\tc0,35.78,35.393,61.467,90.339,61.467c49.283,0,75.432-23.156,75.432-54.404C338.893,346.707,321.971,333.113,282.955,305.896\r\n\t\t M297.834,210.148c11.824-11.592,12.844-27.73,12.844-36.793c0-36.281-22.086-92.73-64.671-92.73\r\n\t\tc-13.339,0-27.724,6.547-35.948,16.639c-8.722,10.593-11.284,24.188-11.284,37.281c0,33.764,20.005,89.727,64.163,89.727\r\n\t\tC275.764,224.271,289.594,218.212,297.834,210.148"},"children":[]}]}]}]};exports.socialGoogleOutline=socialGoogleOutline;var socialGoogle={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M325.862,275.558l-18.187-13.653l-0.063-0.051c-5.827-4.579-9.952-8.313-9.952-14.685c0-6.979,5.049-11.824,10.896-17.436\r\n\t\tl0.466-0.449c20.025-15.171,44.726-34.286,44.726-74.556c0-26.934-11.916-44.729-23.28-57.729h12.969l60.322-33H270.308\r\n\t\tc-25.324,0-62.68,3.225-94.561,28.576l-0.128,0.25c-21.809,18.111-34.828,44.584-34.828,70.691\r\n\t\tc0,21.197,8.706,42.159,23.885,57.447c21.428,21.579,48.302,26.127,67.074,26.127c1.462,0,2.956-0.028,4.47-0.093\r\n\t\tc-0.759,2.969-1.25,6.321-1.25,10.321c0,10.926,3.628,19.301,8.083,26.195c-23.963,1.932-58.148,6.477-84.897,22.278\r\n\t\tc-39.335,22.562-42.396,55.875-42.396,65.551c0,38.207,35.707,76.762,115.479,76.762c91.611,0,139.543-49.792,139.543-98.979\r\n\t\tC370.781,311.966,347.945,293.457,325.862,275.558z M200.485,139.894c0-13.359,3.02-23.457,9.255-30.9\r\n\t\tc6.514-7.852,18.18-13.129,29.028-13.129c19.881,0,32.938,15.008,40.388,27.598c9.199,15.539,14.913,36.095,14.913,53.643\r\n\t\tc0,4.942,0,19.983-10.188,29.796c-6.951,6.686-18.707,11.353-28.59,11.353c-20.503,0-33.453-14.705-40.707-27.041\r\n\t\tC204.189,173.53,200.485,153.109,200.485,139.894z M321.6,367.974c0,27.444-25.212,44.493-65.799,44.493\r\n\t\tc-48.058,0-80.347-20.603-80.347-51.265c0-26.14,21.54-36.789,37.8-42.521c18.944-6.064,44.297-7.305,50.062-7.305\r\n\t\tc3.907,0,6.087,0,8.683,0.229C308.7,336.816,321.6,347.733,321.6,367.974z"},"children":[{"name":"path","attribs":{"d":"M325.862,275.558l-18.187-13.653l-0.063-0.051c-5.827-4.579-9.952-8.313-9.952-14.685c0-6.979,5.049-11.824,10.896-17.436\r\n\t\tl0.466-0.449c20.025-15.171,44.726-34.286,44.726-74.556c0-26.934-11.916-44.729-23.28-57.729h12.969l60.322-33H270.308\r\n\t\tc-25.324,0-62.68,3.225-94.561,28.576l-0.128,0.25c-21.809,18.111-34.828,44.584-34.828,70.691\r\n\t\tc0,21.197,8.706,42.159,23.885,57.447c21.428,21.579,48.302,26.127,67.074,26.127c1.462,0,2.956-0.028,4.47-0.093\r\n\t\tc-0.759,2.969-1.25,6.321-1.25,10.321c0,10.926,3.628,19.301,8.083,26.195c-23.963,1.932-58.148,6.477-84.897,22.278\r\n\t\tc-39.335,22.562-42.396,55.875-42.396,65.551c0,38.207,35.707,76.762,115.479,76.762c91.611,0,139.543-49.792,139.543-98.979\r\n\t\tC370.781,311.966,347.945,293.457,325.862,275.558z M200.485,139.894c0-13.359,3.02-23.457,9.255-30.9\r\n\t\tc6.514-7.852,18.18-13.129,29.028-13.129c19.881,0,32.938,15.008,40.388,27.598c9.199,15.539,14.913,36.095,14.913,53.643\r\n\t\tc0,4.942,0,19.983-10.188,29.796c-6.951,6.686-18.707,11.353-28.59,11.353c-20.503,0-33.453-14.705-40.707-27.041\r\n\t\tC204.189,173.53,200.485,153.109,200.485,139.894z M321.6,367.974c0,27.444-25.212,44.493-65.799,44.493\r\n\t\tc-48.058,0-80.347-20.603-80.347-51.265c0-26.14,21.54-36.789,37.8-42.521c18.944-6.064,44.297-7.305,50.062-7.305\r\n\t\tc3.907,0,6.087,0,8.683,0.229C308.7,336.816,321.6,347.733,321.6,367.974z"},"children":[]}]}]}]};exports.socialGoogle=socialGoogle;var socialGoogleplusOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M223.5,82.1c11.8,9.6,36.4,29.7,36.4,68c0,37.3-21.5,54.9-43.1,71.5c-6.7,6.6-14.4,13.6-14.4,24.7\r\n\t\tc0,11.1,7.7,17.2,13.3,21.7l18.5,14.1c22.6,18.6,43.1,35.8,43.1,70.6c0,47.4-46.7,95.2-135,95.2C67.9,448,32,413.2,32,375.9\r\n\t\tc0-18.1,9.2-43.8,39.5-61.5c31.8-19.1,75-21.7,98-23.2c-7.2-9.1-15.4-18.7-15.4-34.3c0-8.6,2.6-13.6,5.1-19.7\r\n\t\tc-5.6,0.5-11.3,1-16.4,1c-54.4,0-85.2-39.8-85.2-79.1c0-23.2,10.8-48.9,32.9-67.5C119.8,68,154.7,64,182.4,64h105.7l-32.8,18.1\r\n\t\tH223.5z M187,305.9c-4.1-0.5-6.7-0.5-11.8-0.5c-4.6,0-32.3,1-53.9,8c-11.3,4-44.1,16.1-44.1,51.9c0,35.8,35.4,61.5,90.3,61.5\r\n\t\tc49.3,0,75.4-23.2,75.4-54.4C242.9,346.7,226,333.1,187,305.9 M201.9,210.1c11.8-11.6,12.8-27.7,12.8-36.8\r\n\t\tc0-36.3-22.1-92.7-64.7-92.7c-13.3,0-27.7,6.5-35.9,16.6c-8.7,10.6-11.3,24.2-11.3,37.3c0,33.8,20,89.7,64.2,89.7\r\n\t\tC179.8,224.3,193.6,218.2,201.9,210.1"},"children":[{"name":"path","attribs":{"d":"M223.5,82.1c11.8,9.6,36.4,29.7,36.4,68c0,37.3-21.5,54.9-43.1,71.5c-6.7,6.6-14.4,13.6-14.4,24.7\r\n\t\tc0,11.1,7.7,17.2,13.3,21.7l18.5,14.1c22.6,18.6,43.1,35.8,43.1,70.6c0,47.4-46.7,95.2-135,95.2C67.9,448,32,413.2,32,375.9\r\n\t\tc0-18.1,9.2-43.8,39.5-61.5c31.8-19.1,75-21.7,98-23.2c-7.2-9.1-15.4-18.7-15.4-34.3c0-8.6,2.6-13.6,5.1-19.7\r\n\t\tc-5.6,0.5-11.3,1-16.4,1c-54.4,0-85.2-39.8-85.2-79.1c0-23.2,10.8-48.9,32.9-67.5C119.8,68,154.7,64,182.4,64h105.7l-32.8,18.1\r\n\t\tH223.5z M187,305.9c-4.1-0.5-6.7-0.5-11.8-0.5c-4.6,0-32.3,1-53.9,8c-11.3,4-44.1,16.1-44.1,51.9c0,35.8,35.4,61.5,90.3,61.5\r\n\t\tc49.3,0,75.4-23.2,75.4-54.4C242.9,346.7,226,333.1,187,305.9 M201.9,210.1c11.8-11.6,12.8-27.7,12.8-36.8\r\n\t\tc0-36.3-22.1-92.7-64.7-92.7c-13.3,0-27.7,6.5-35.9,16.6c-8.7,10.6-11.3,24.2-11.3,37.3c0,33.8,20,89.7,64.2,89.7\r\n\t\tC179.8,224.3,193.6,218.2,201.9,210.1"},"children":[]}]},{"name":"polygon","attribs":{"points":"480,142.3 401.7,142.3 401.7,64.1 384,64.1 384,142.3 304.3,142.3 304.3,160.1 384,160.1 384,241 401.7,241 \r\n\t\t401.7,160.1 480,160.1 \t"},"children":[{"name":"polygon","attribs":{"points":"480,142.3 401.7,142.3 401.7,64.1 384,64.1 384,142.3 304.3,142.3 304.3,160.1 384,160.1 384,241 401.7,241 \r\n\t\t401.7,160.1 480,160.1 \t"},"children":[]}]}]}]};exports.socialGoogleplusOutline=socialGoogleplusOutline;var socialGoogleplus={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M242.1,275.6l-18.2-13.7l-0.1-0.1c-5.8-4.6-10-8.3-10-14.7c0-7,5-11.8,10.9-17.4l0.5-0.4c20-15.2,44.7-34.3,44.7-74.6\r\n\t\tc0-26.9-11.9-44.7-23.3-57.7h13L320,64H186.5c-25.3,0-62.7,3.2-94.6,28.6l-0.1,0.3C70,110.9,57,137.4,57,163.5\r\n\t\tc0,21.2,8.7,42.2,23.9,57.4c21.4,21.6,48.3,26.1,67.1,26.1c1.5,0,3,0,4.5-0.1c-0.8,3-1.2,6.3-1.2,10.3c0,10.9,3.6,19.3,8.1,26.2\r\n\t\tc-24,1.9-58.1,6.5-84.9,22.3C35.1,328.4,32,361.7,32,371.3c0,38.2,35.7,76.8,115.5,76.8c91.6,0,139.5-49.8,139.5-99\r\n\t\tC287,312,264.2,293.5,242.1,275.6z M116.7,139.9c0-13.4,3-23.5,9.3-30.9c6.5-7.9,18.2-13.1,29-13.1c19.9,0,32.9,15,40.4,27.6\r\n\t\tc9.2,15.5,14.9,36.1,14.9,53.6c0,4.9,0,20-10.2,29.8c-7,6.7-18.7,11.4-28.6,11.4c-20.5,0-33.5-14.7-40.7-27\r\n\t\tC120.4,173.5,116.7,153.1,116.7,139.9z M237.8,368c0,27.4-25.2,44.5-65.8,44.5c-48.1,0-80.3-20.6-80.3-51.3\r\n\t\tc0-26.1,21.5-36.8,37.8-42.5c18.9-6.1,44.3-7.3,50.1-7.3c3.9,0,6.1,0,8.7,0.2C224.9,336.8,237.8,347.7,237.8,368z"},"children":[{"name":"path","attribs":{"d":"M242.1,275.6l-18.2-13.7l-0.1-0.1c-5.8-4.6-10-8.3-10-14.7c0-7,5-11.8,10.9-17.4l0.5-0.4c20-15.2,44.7-34.3,44.7-74.6\r\n\t\tc0-26.9-11.9-44.7-23.3-57.7h13L320,64H186.5c-25.3,0-62.7,3.2-94.6,28.6l-0.1,0.3C70,110.9,57,137.4,57,163.5\r\n\t\tc0,21.2,8.7,42.2,23.9,57.4c21.4,21.6,48.3,26.1,67.1,26.1c1.5,0,3,0,4.5-0.1c-0.8,3-1.2,6.3-1.2,10.3c0,10.9,3.6,19.3,8.1,26.2\r\n\t\tc-24,1.9-58.1,6.5-84.9,22.3C35.1,328.4,32,361.7,32,371.3c0,38.2,35.7,76.8,115.5,76.8c91.6,0,139.5-49.8,139.5-99\r\n\t\tC287,312,264.2,293.5,242.1,275.6z M116.7,139.9c0-13.4,3-23.5,9.3-30.9c6.5-7.9,18.2-13.1,29-13.1c19.9,0,32.9,15,40.4,27.6\r\n\t\tc9.2,15.5,14.9,36.1,14.9,53.6c0,4.9,0,20-10.2,29.8c-7,6.7-18.7,11.4-28.6,11.4c-20.5,0-33.5-14.7-40.7-27\r\n\t\tC120.4,173.5,116.7,153.1,116.7,139.9z M237.8,368c0,27.4-25.2,44.5-65.8,44.5c-48.1,0-80.3-20.6-80.3-51.3\r\n\t\tc0-26.1,21.5-36.8,37.8-42.5c18.9-6.1,44.3-7.3,50.1-7.3c3.9,0,6.1,0,8.7,0.2C224.9,336.8,237.8,347.7,237.8,368z"},"children":[]}]},{"name":"polygon","attribs":{"points":"402,142 402,64 368,64 368,142 288,142 288,176 368,176 368,257 402,257 402,176 480,176 480,142 \t"},"children":[{"name":"polygon","attribs":{"points":"402,142 402,64 368,64 368,142 288,142 288,176 368,176 368,257 402,257 402,176 480,176 480,142 \t"},"children":[]}]}]}]};exports.socialGoogleplus=socialGoogleplus;var socialHackernewsOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M416,96v320H96V96H416 M448,64H64v384h384V64L448,64z"},"children":[{"name":"path","attribs":{"d":"M416,96v320H96V96H416 M448,64H64v384h384V64L448,64z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M296.7,159H342l-63.9,120v72h-39.9v-72L172,159h47.1l39.7,83.6L296.7,159z"},"children":[{"name":"path","attribs":{"d":"M296.7,159H342l-63.9,120v72h-39.9v-72L172,159h47.1l39.7,83.6L296.7,159z"},"children":[]}]}]}]}]}]};exports.socialHackernewsOutline=socialHackernewsOutline;var socialHackernews={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M64,64v384h384V64H64z M278,279v72h-40v-72l-66-120h47.1l39.7,83.6l38-83.6H342L278,279z"},"children":[{"name":"path","attribs":{"d":"M64,64v384h384V64H64z M278,279v72h-40v-72l-66-120h47.1l39.7,83.6l38-83.6H342L278,279z"},"children":[]}]}]}]};exports.socialHackernews=socialHackernews;var socialHtml5Outline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M64,32l34.936,403.301L255.769,480l157.245-44.705L448,32H64z M383.041,410.51l-127.262,36.187l-126.867-36.169L98.896,64\r\n\t\tH413.1L383.041,410.51z"},"children":[{"name":"path","attribs":{"d":"M64,32l34.936,403.301L255.769,480l157.245-44.705L448,32H64z M383.041,410.51l-127.262,36.187l-126.867-36.169L98.896,64\r\n\t\tH413.1L383.041,410.51z"},"children":[]}]},{"name":"polygon","attribs":{"points":"147.991,264 314.984,264 309.411,327.986 255.991,342.734 202.225,328.064 198.801,289 150.55,289 \r\n\t\t157.313,366.336 255.991,394.146 354.486,366.163 367.991,215 191.991,215 188,164 371.991,164 376.199,114.316 135.421,114.188 \t\r\n\t\t"},"children":[{"name":"polygon","attribs":{"points":"147.991,264 314.984,264 309.411,327.986 255.991,342.734 202.225,328.064 198.801,289 150.55,289 \r\n\t\t157.313,366.336 255.991,394.146 354.486,366.163 367.991,215 191.991,215 188,164 371.991,164 376.199,114.316 135.421,114.188 \t\r\n\t\t"},"children":[]}]}]}]};exports.socialHtml5Outline=socialHtml5Outline;var socialHtml5={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M64,32l34.936,403.213L255.769,480l157.245-44.854L448,32H64z M371.997,164h-184l3.991,51h176.008l-13.505,151.386\r\n\tl-98.5,28.094l-98.682-27.976L150.545,289h48.254l3.423,39.287l53.769,14.781l53.422-14.915L314.987,264H147.986l-12.571-149.589\r\n\tl240.789,0.016L371.997,164z"},"children":[]}]};exports.socialHtml5=socialHtml5;var socialInstagramOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"fill":"#231F20","d":"M448.5,112c0-26.233-21.267-47.5-47.5-47.5H112c-26.233,0-47.5,21.267-47.5,47.5v289\r\n\tc0,26.233,21.267,47.5,47.5,47.5h289c26.233,0,47.5-21.267,47.5-47.5V112z M257,175.833c44.182,0,80,35.816,80,80s-35.818,80-80,80\r\n\ts-80-35.816-80-80S212.818,175.833,257,175.833z M416.5,160.5c0,8.836-7.163,16-16,16h-48c-8.837,0-16-7.164-16-16v-48\r\n\tc0-8.836,7.163-16,16-16h48c8.837,0,16,7.164,16,16V160.5z M401.5,416.5h-288c-8.822,0-17-8.178-17-17v-175h53.072\r\n\tc-3.008,10-4.572,20.647-4.572,31.583C145,286,156.65,314,177.805,335.154s49.279,32.741,79.195,32.741s58.041-11.681,79.195-32.835\r\n\tS369,286.016,369,256.099c0-10.936-1.563-21.599-4.572-31.599H416.5v175C416.5,408.322,410.322,416.5,401.5,416.5z"},"children":[]}]};exports.socialInstagramOutline=socialInstagramOutline;var socialInstagram={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"cx":"256","cy":"255.833","r":"80"},"children":[{"name":"circle","attribs":{"cx":"256","cy":"255.833","r":"80"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M177.805,176.887c21.154-21.154,49.279-32.929,79.195-32.929s58.041,11.837,79.195,32.991\r\n\t\tc13.422,13.422,23.011,29.551,28.232,47.551H448.5v-113c0-26.51-20.49-47-47-47h-288c-26.51,0-49,20.49-49,47v113h85.072\r\n\t\tC154.794,206.5,164.383,190.309,177.805,176.887z M416.5,147.7c0,7.069-5.73,12.8-12.8,12.8h-38.4c-7.069,0-12.8-5.73-12.8-12.8\r\n\t\tv-38.4c0-7.069,5.73-12.8,12.8-12.8h38.4c7.069,0,12.8,5.73,12.8,12.8V147.7z"},"children":[{"name":"path","attribs":{"d":"M177.805,176.887c21.154-21.154,49.279-32.929,79.195-32.929s58.041,11.837,79.195,32.991\r\n\t\tc13.422,13.422,23.011,29.551,28.232,47.551H448.5v-113c0-26.51-20.49-47-47-47h-288c-26.51,0-49,20.49-49,47v113h85.072\r\n\t\tC154.794,206.5,164.383,190.309,177.805,176.887z M416.5,147.7c0,7.069-5.73,12.8-12.8,12.8h-38.4c-7.069,0-12.8-5.73-12.8-12.8\r\n\t\tv-38.4c0-7.069,5.73-12.8,12.8-12.8h38.4c7.069,0,12.8,5.73,12.8,12.8V147.7z"},"children":[]}]},{"name":"path","attribs":{"d":"M336.195,335.279c-21.154,21.154-49.279,32.679-79.195,32.679s-58.041-11.462-79.195-32.616\r\n\t\tc-21.115-21.115-32.759-49.842-32.803-78.842H64.5v143c0,26.51,22.49,49,49,49h288c26.51,0,47-22.49,47-49v-143h-79.502\r\n\t\tC368.955,285.5,357.311,314.164,336.195,335.279z"},"children":[{"name":"path","attribs":{"d":"M336.195,335.279c-21.154,21.154-49.279,32.679-79.195,32.679s-58.041-11.462-79.195-32.616\r\n\t\tc-21.115-21.115-32.759-49.842-32.803-78.842H64.5v143c0,26.51,22.49,49,49,49h288c26.51,0,47-22.49,47-49v-143h-79.502\r\n\t\tC368.955,285.5,357.311,314.164,336.195,335.279z"},"children":[]}]}]}]};exports.socialInstagram=socialInstagram;var socialJavascriptOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"transform":"translate(384 48)"},"children":[{"name":"g","attribs":{"id":"icon-javascript_1_1_"},"children":[{"name":"g","attribs":{"id":"icon-javascript_1_1_"},"children":[{"name":"path","attribs":{"d":"M-192,56.001v197.017c0,41.567-9.644,71.988-28.662,90.417c-17.06,16.53-42.061,24.565-76.431,24.565\r\n\t\t\tc-12.002,0-25.78-1.496-37.185-3.886l4.09-30.505c7.146,1.269,15.465,2.149,24.774,2.149c21.92,0,37.892-6.459,48.827-19.745\r\n\t\t\tC-245.27,302.268-240,282.085-240,252.499V56.001H-192 M-176,40.001h-80v212.498c0,52.58-18.032,67.261-49.412,67.261\r\n\t\t\tc-14.705,0-27.948-2.521-38.25-6.063L-352,375.904c14.7,5.062,37.259,8.096,54.907,8.096C-225.045,384-176,350.129-176,253.02\r\n\t\t\tV40.001L-176,40.001z"},"children":[{"name":"path","attribs":{"d":"M-192,56.001v197.017c0,41.567-9.644,71.988-28.662,90.417c-17.06,16.53-42.061,24.565-76.431,24.565\r\n\t\t\tc-12.002,0-25.78-1.496-37.185-3.886l4.09-30.505c7.146,1.269,15.465,2.149,24.774,2.149c21.92,0,37.892-6.459,48.827-19.745\r\n\t\t\tC-245.27,302.268-240,282.085-240,252.499V56.001H-192 M-176,40.001h-80v212.498c0,52.58-18.032,67.261-49.412,67.261\r\n\t\t\tc-14.705,0-27.948-2.521-38.25-6.063L-352,375.904c14.7,5.062,37.259,8.096,54.907,8.096C-225.045,384-176,350.129-176,253.02\r\n\t\t\tV40.001L-176,40.001z"},"children":[]}]},{"name":"path","attribs":{"d":"M-1.537,48c24.458,0,45.898,3.146,65.1,9.585l-9.581,32.062C40.37,84.142,21.446,78.71-2.504,78.71\r\n\t\t\tc-18.607,0-34.462,4.584-45.849,13.256c-11.732,8.936-18.194,21.583-18.194,35.613c0,34.974,33.062,48.149,71.347,63.405\r\n\t\t\tl0.107,0.043l0.108,0.041c26.977,10.299,45.938,22.261,57.969,36.572C74.593,241.451,80,257.543,80,278.284\r\n\t\t\tc0,25.177-9.333,46.71-26.99,62.274C32.66,358.497,1.593,367.98-36.833,367.98c-28.052,0-54.698-6.427-72.615-13.979l7.593-31.603\r\n\t\t\tc17.579,7.248,41.882,14.382,69.438,14.382c20.28,0,36.629-4.478,48.591-13.306c12.807-9.45,19.857-23.697,19.857-40.119\r\n\t\t\tc0-15.348-6.041-27.922-18.469-38.444c-10.157-8.603-24.801-16.048-47.467-24.136c-26.86-9.904-47.359-21.947-60.934-35.795\r\n\t\t\tC-105.078,170.455-112,153.829-112,134.154c0-24.149,9.831-45.101,28.43-60.591C-63.49,56.839-35.124,48-1.537,48 M-1.537,32\r\n\t\t\tC-78.98,32-128,75.998-128,134.154c0,50.083,37.751,81.44,92.641,101.665c39.7,14.158,55.392,26.808,55.392,47.539\r\n\t\t\tc0,22.756-18.139,37.425-52.448,37.425c-31.863,0-60.789-10.64-80.394-21.255v-0.021L-128,362.727\r\n\t\t\tc18.639,10.638,53.441,21.255,91.167,21.255C53.854,383.98,96,335.43,96,278.284c0-48.55-26.958-79.9-85.278-102.163\r\n\t\t\tc-43.139-17.191-61.27-26.795-61.27-48.542c0-17.2,15.688-32.869,48.043-32.869c31.846,0,53.744,10.707,66.505,17.291l19.125-64\r\n\t\t\tC63.125,39.22,36.188,32-1.537,32L-1.537,32z"},"children":[{"name":"path","attribs":{"d":"M-1.537,48c24.458,0,45.898,3.146,65.1,9.585l-9.581,32.062C40.37,84.142,21.446,78.71-2.504,78.71\r\n\t\t\tc-18.607,0-34.462,4.584-45.849,13.256c-11.732,8.936-18.194,21.583-18.194,35.613c0,34.974,33.062,48.149,71.347,63.405\r\n\t\t\tl0.107,0.043l0.108,0.041c26.977,10.299,45.938,22.261,57.969,36.572C74.593,241.451,80,257.543,80,278.284\r\n\t\t\tc0,25.177-9.333,46.71-26.99,62.274C32.66,358.497,1.593,367.98-36.833,367.98c-28.052,0-54.698-6.427-72.615-13.979l7.593-31.603\r\n\t\t\tc17.579,7.248,41.882,14.382,69.438,14.382c20.28,0,36.629-4.478,48.591-13.306c12.807-9.45,19.857-23.697,19.857-40.119\r\n\t\t\tc0-15.348-6.041-27.922-18.469-38.444c-10.157-8.603-24.801-16.048-47.467-24.136c-26.86-9.904-47.359-21.947-60.934-35.795\r\n\t\t\tC-105.078,170.455-112,153.829-112,134.154c0-24.149,9.831-45.101,28.43-60.591C-63.49,56.839-35.124,48-1.537,48 M-1.537,32\r\n\t\t\tC-78.98,32-128,75.998-128,134.154c0,50.083,37.751,81.44,92.641,101.665c39.7,14.158,55.392,26.808,55.392,47.539\r\n\t\t\tc0,22.756-18.139,37.425-52.448,37.425c-31.863,0-60.789-10.64-80.394-21.255v-0.021L-128,362.727\r\n\t\t\tc18.639,10.638,53.441,21.255,91.167,21.255C53.854,383.98,96,335.43,96,278.284c0-48.55-26.958-79.9-85.278-102.163\r\n\t\t\tc-43.139-17.191-61.27-26.795-61.27-48.542c0-17.2,15.688-32.869,48.043-32.869c31.846,0,53.744,10.707,66.505,17.291l19.125-64\r\n\t\t\tC63.125,39.22,36.188,32-1.537,32L-1.537,32z"},"children":[]}]}]}]}]}]};exports.socialJavascriptOutline=socialJavascriptOutline;var socialJavascript={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"transform":"translate(384 48)"},"children":[{"name":"g","attribs":{"id":"icon-javascript_1_1_"},"children":[{"name":"g","attribs":{"id":"icon-javascript_1_1_"},"children":[{"name":"path","attribs":{"d":"M-176,40.001h-80v212.498c0,52.58-18.032,67.261-49.412,67.261c-14.705,0-27.948-2.521-38.25-6.063L-352,375.904\r\n\t\t\tc14.7,5.062,37.259,8.096,54.907,8.096C-225.045,384-176,350.129-176,253.02V40.001L-176,40.001z"},"children":[{"name":"path","attribs":{"d":"M-176,40.001h-80v212.498c0,52.58-18.032,67.261-49.412,67.261c-14.705,0-27.948-2.521-38.25-6.063L-352,375.904\r\n\t\t\tc14.7,5.062,37.259,8.096,54.907,8.096C-225.045,384-176,350.129-176,253.02V40.001L-176,40.001z"},"children":[]}]},{"name":"path","attribs":{"d":"M-1.537,32C-78.98,32-128,75.998-128,134.154c0,50.083,37.751,81.44,92.641,101.665\r\n\t\t\tc39.7,14.158,55.392,26.808,55.392,47.539c0,22.756-18.139,37.425-52.448,37.425c-31.863,0-60.789-10.64-80.394-21.255v-0.021\r\n\t\t\tL-128,362.727c18.639,10.638,53.441,21.255,91.167,21.255C53.854,383.98,96,335.43,96,278.284c0-48.55-26.958-79.9-85.278-102.163\r\n\t\t\tc-43.139-17.191-61.27-26.795-61.27-48.542c0-17.2,15.688-32.869,48.043-32.869c31.846,0,53.744,10.707,66.505,17.291l19.125-64\r\n\t\t\tC63.125,39.22,36.188,32-1.537,32L-1.537,32z"},"children":[{"name":"path","attribs":{"d":"M-1.537,32C-78.98,32-128,75.998-128,134.154c0,50.083,37.751,81.44,92.641,101.665\r\n\t\t\tc39.7,14.158,55.392,26.808,55.392,47.539c0,22.756-18.139,37.425-52.448,37.425c-31.863,0-60.789-10.64-80.394-21.255v-0.021\r\n\t\t\tL-128,362.727c18.639,10.638,53.441,21.255,91.167,21.255C53.854,383.98,96,335.43,96,278.284c0-48.55-26.958-79.9-85.278-102.163\r\n\t\t\tc-43.139-17.191-61.27-26.795-61.27-48.542c0-17.2,15.688-32.869,48.043-32.869c31.846,0,53.744,10.707,66.505,17.291l19.125-64\r\n\t\t\tC63.125,39.22,36.188,32-1.537,32L-1.537,32z"},"children":[]}]}]}]}]}]};exports.socialJavascript=socialJavascript;var socialLinkedinOutline={"viewBox":"0 0 512 512","children":[{"name":"style","attribs":{"type":"text/css"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"class":"st0","d":"M182.8,384V212.9h-54.9V384H182.8L182.8,384z M157.4,187c18.3,0,29.7-13.1,29.7-29.5\r\n\t\t\tc-0.3-16.7-11.4-29.5-29.4-29.5c-18,0-29.7,12.8-29.7,29.5c0,16.4,11.4,29.5,29,29.5H157.4L157.4,187z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M182.8,384V212.9h-54.9V384H182.8L182.8,384z M157.4,187c18.3,0,29.7-13.1,29.7-29.5\r\n\t\t\tc-0.3-16.7-11.4-29.5-29.4-29.5c-18,0-29.7,12.8-29.7,29.5c0,16.4,11.4,29.5,29,29.5H157.4L157.4,187z"},"children":[]}]},{"name":"path","attribs":{"class":"st0","d":"M320.6,209c-29.1,0-41.6,16.4-49.6,27.8V213h-55v171h55v-97.4c0-5,0.4-10,1.9-13.5c4-10,13-20.3,28.2-20.3\r\n\t\t\tc19.9,0,27.9,15.3,27.9,37.7V384h55v-99.9C384,232.8,356.8,209,320.6,209z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M320.6,209c-29.1,0-41.6,16.4-49.6,27.8V213h-55v171h55v-97.4c0-5,0.4-10,1.9-13.5c4-10,13-20.3,28.2-20.3\r\n\t\t\tc19.9,0,27.9,15.3,27.9,37.7V384h55v-99.9C384,232.8,356.8,209,320.6,209z"},"children":[]}]}]}]},{"name":"path","attribs":{"d":"M417.2,64H96.8C79.3,64,64,76.6,64,93.9v321.1c0,17.4,15.3,32.9,32.8,32.9h320.3c17.6,0,30.8-15.6,30.8-32.9V93.9\r\n\t\tC448,76.6,434.7,64,417.2,64z M414,416c-1.1,0-313.1,0-314.9,0s-3.1-1.4-3.1-3.1S96,99.1,96,98s1-2,2-2s315,0,316,0s2,1,2,2\r\n\t\tc0,23.3,0,314.9,0,316C416,414.9,415.1,416,414,416z"},"children":[{"name":"path","attribs":{"d":"M417.2,64H96.8C79.3,64,64,76.6,64,93.9v321.1c0,17.4,15.3,32.9,32.8,32.9h320.3c17.6,0,30.8-15.6,30.8-32.9V93.9\r\n\t\tC448,76.6,434.7,64,417.2,64z M414,416c-1.1,0-313.1,0-314.9,0s-3.1-1.4-3.1-3.1S96,99.1,96,98s1-2,2-2s315,0,316,0s2,1,2,2\r\n\t\tc0,23.3,0,314.9,0,316C416,414.9,415.1,416,414,416z"},"children":[]}]}]}]};exports.socialLinkedinOutline=socialLinkedinOutline;var socialLinkedin={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M417.2,64H96.8C79.3,64,64,76.6,64,93.9v321.1c0,17.4,15.3,32.9,32.8,32.9h320.3c17.6,0,30.8-15.6,30.8-32.9V93.9\r\n\t\tC448,76.6,434.7,64,417.2,64z M183,384h-55V213h55V384z M157.4,187H157c-17.6,0-29-13.1-29-29.5c0-16.7,11.7-29.5,29.7-29.5\r\n\t\tc18,0,29,12.7,29.4,29.5C187.1,173.9,175.7,187,157.4,187z M384,384h-55v-93.5c0-22.4-8-37.7-27.9-37.7\r\n\t\tc-15.2,0-24.2,10.3-28.2,20.3c-1.5,3.6-1.9,8.5-1.9,13.5V384h-55V213h55v23.8c8-11.4,20.5-27.8,49.6-27.8\r\n\t\tc36.1,0,63.4,23.8,63.4,75.1V384z"},"children":[{"name":"path","attribs":{"d":"M417.2,64H96.8C79.3,64,64,76.6,64,93.9v321.1c0,17.4,15.3,32.9,32.8,32.9h320.3c17.6,0,30.8-15.6,30.8-32.9V93.9\r\n\t\tC448,76.6,434.7,64,417.2,64z M183,384h-55V213h55V384z M157.4,187H157c-17.6,0-29-13.1-29-29.5c0-16.7,11.7-29.5,29.7-29.5\r\n\t\tc18,0,29,12.7,29.4,29.5C187.1,173.9,175.7,187,157.4,187z M384,384h-55v-93.5c0-22.4-8-37.7-27.9-37.7\r\n\t\tc-15.2,0-24.2,10.3-28.2,20.3c-1.5,3.6-1.9,8.5-1.9,13.5V384h-55V213h55v23.8c8-11.4,20.5-27.8,49.6-27.8\r\n\t\tc36.1,0,63.4,23.8,63.4,75.1V384z"},"children":[]}]}]}]};exports.socialLinkedin=socialLinkedin;var socialMarkdown={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"transform":"translate(96 48)"},"children":[{"name":"g","attribs":{"id":"icon-markdown"},"children":[{"name":"g","attribs":{"id":"icon-markdown"},"children":[{"name":"path","attribs":{"fill":"#231F20","d":"M351.659,48H-31.659C-49.496,48-64,62.484-64,80.308v255.349C-64,353.493-49.496,368-31.659,368h383.318\r\n\t\t\tC369.496,368,384,353.493,384,335.656V80.308C384,62.484,369.496,48,351.659,48z M188.023,304h-56.048v-96l-42.04,53.878\r\n\t\t\tL47.913,208v96H-8.131V112h56.044l42.022,67.98l42.04-67.98h56.048V304L188.023,304z M271.68,304l-69.635-96h42v-96h56.043v96\r\n\t\t\th42.027l-70.453,96H271.68z"},"children":[{"name":"path","attribs":{"fill":"#231F20","d":"M351.659,48H-31.659C-49.496,48-64,62.484-64,80.308v255.349C-64,353.493-49.496,368-31.659,368h383.318\r\n\t\t\tC369.496,368,384,353.493,384,335.656V80.308C384,62.484,369.496,48,351.659,48z M188.023,304h-56.048v-96l-42.04,53.878\r\n\t\t\tL47.913,208v96H-8.131V112h56.044l42.022,67.98l42.04-67.98h56.048V304L188.023,304z M271.68,304l-69.635-96h42v-96h56.043v96\r\n\t\t\th42.027l-70.453,96H271.68z"},"children":[]}]}]}]}]}]};exports.socialMarkdown=socialMarkdown;var socialNodejs={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"transform":"translate(96 96)"},"children":[{"name":"g","attribs":{"id":"icon-nodejs_small"},"children":[{"name":"g","attribs":{"id":"icon-nodejs_small"},"children":[{"name":"path","attribs":{"d":"M159.917,384c-5.77,0-11.536-1.562-16.633-4.599l-52.985-32.44c-7.914-4.562-4.023-6.203-1.443-7.141\r\n\t\t\tc10.565-3.781,13.713-5.657,24.947-12.285c1.206-0.667,2.747-0.424,3.955,0.322l39.71,23.504c1.476,0.85,3.557,0.85,4.931,0\r\n\t\t\tl155.188-92.246c1.475-0.877,2.415-2.646,2.415-4.441V67.869c0-1.85-0.94-3.592-2.449-4.528L162.433-31.331\r\n\t\t\tc-1.478-0.894-3.421-0.894-4.898,0L2.516,63.374C0.972,64.277,0,66.072,0,67.869v186.805c0,1.813,0.972,3.513,2.481,4.389\r\n\t\t\tl39.929,23.972C66.02,295.239,80,282.865,80,268.424V84.725c0-2.652,2.047-4.727,4.596-4.727h22.809\r\n\t\t\tc2.515,0,4.597,2.072,4.597,4.727v183.698c0,32.563-19.353,51.248-49.199,51.248c-9.156,0-16.397,0-36.552-10.279l-41.584-24.781\r\n\t\t\tC-25.629,278.459-32,266.965-32,254.656V65.191c0-12.316,6.371-23.784,16.665-29.917L143.35-59.59\r\n\t\t\tc10.027-5.88,23.374-5.88,33.332,0l158.65,94.864C345.63,41.423,352,52.899,352,65.191v189.465c0,12.309-6.37,23.75-16.668,29.953\r\n\t\t\tl-158.65,94.774c-5.097,3.036-10.832,4.599-16.698,4.599L159.917,384z"},"children":[{"name":"path","attribs":{"d":"M159.917,384c-5.77,0-11.536-1.562-16.633-4.599l-52.985-32.44c-7.914-4.562-4.023-6.203-1.443-7.141\r\n\t\t\tc10.565-3.781,13.713-5.657,24.947-12.285c1.206-0.667,2.747-0.424,3.955,0.322l39.71,23.504c1.476,0.85,3.557,0.85,4.931,0\r\n\t\t\tl155.188-92.246c1.475-0.877,2.415-2.646,2.415-4.441V67.869c0-1.85-0.94-3.592-2.449-4.528L162.433-31.331\r\n\t\t\tc-1.478-0.894-3.421-0.894-4.898,0L2.516,63.374C0.972,64.277,0,66.072,0,67.869v186.805c0,1.813,0.972,3.513,2.481,4.389\r\n\t\t\tl39.929,23.972C66.02,295.239,80,282.865,80,268.424V84.725c0-2.652,2.047-4.727,4.596-4.727h22.809\r\n\t\t\tc2.515,0,4.597,2.072,4.597,4.727v183.698c0,32.563-19.353,51.248-49.199,51.248c-9.156,0-16.397,0-36.552-10.279l-41.584-24.781\r\n\t\t\tC-25.629,278.459-32,266.965-32,254.656V65.191c0-12.316,6.371-23.784,16.665-29.917L143.35-59.59\r\n\t\t\tc10.027-5.88,23.374-5.88,33.332,0l158.65,94.864C345.63,41.423,352,52.899,352,65.191v189.465c0,12.309-6.37,23.75-16.668,29.953\r\n\t\t\tl-158.65,94.774c-5.097,3.036-10.832,4.599-16.698,4.599L159.917,384z"},"children":[]}]},{"name":"path","attribs":{"d":"M208.943,255.998c-64.61,0-84.006-31.61-84.006-59.271c0-2.629,2.048-4.729,4.562-4.729h20.521\r\n\t\t\tc2.282,0,4.227,1.7,4.562,4.016c3.084,21.602,16.748,31.15,54.324,31.15c33.399,0,47.091-10.346,47.091-28.684\r\n\t\t\tc0-10.592-3.463-18.424-55.407-23.697c-43.427-4.441-70.288-14.373-70.288-50.295c0-33.135,26.996-52.49,72.234-52.49\r\n\t\t\tc46.128,0,76.462,14,79.173,50.829c0.102,1.337-0.368,2.629-1.241,3.644c-0.871,0.965-2.078,1.527-3.353,1.527h-20.591\r\n\t\t\tc-2.146,0-4.024-1.562-4.459-3.713c-4.401-16.953-16.97-23.402-49.563-23.402c-36.486,0-40.746,12.753-40.746,22.607\r\n\t\t\tc0,11.963,5.031,15.441,54.294,22.172c48.761,6.663,71.933,16.117,71.933,51.552c0,35.781-28.808,58.783-79.075,58.783\r\n\t\t\tL208.943,255.998L208.943,255.998z"},"children":[{"name":"path","attribs":{"d":"M208.943,255.998c-64.61,0-84.006-31.61-84.006-59.271c0-2.629,2.048-4.729,4.562-4.729h20.521\r\n\t\t\tc2.282,0,4.227,1.7,4.562,4.016c3.084,21.602,16.748,31.15,54.324,31.15c33.399,0,47.091-10.346,47.091-28.684\r\n\t\t\tc0-10.592-3.463-18.424-55.407-23.697c-43.427-4.441-70.288-14.373-70.288-50.295c0-33.135,26.996-52.49,72.234-52.49\r\n\t\t\tc46.128,0,76.462,14,79.173,50.829c0.102,1.337-0.368,2.629-1.241,3.644c-0.871,0.965-2.078,1.527-3.353,1.527h-20.591\r\n\t\t\tc-2.146,0-4.024-1.562-4.459-3.713c-4.401-16.953-16.97-23.402-49.563-23.402c-36.486,0-40.746,12.753-40.746,22.607\r\n\t\t\tc0,11.963,5.031,15.441,54.294,22.172c48.761,6.663,71.933,16.117,71.933,51.552c0,35.781-28.808,58.783-79.075,58.783\r\n\t\t\tL208.943,255.998L208.943,255.998z"},"children":[]}]}]}]}]}]};exports.socialNodejs=socialNodejs;var socialOctocat={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill":"#231F20","d":"M178.354,287.478c-9.123,0-16.928,4.207-23.201,12.833c-6.291,8.478-9.398,18.973-9.398,31.431\r\n\t\tc0,12.474,3.166,23.008,9.398,31.509c6.273,8.54,14.039,12.771,23.201,12.771c8.494,0,15.889-4.27,22.121-12.771\r\n\t\tc6.271-8.501,9.398-19.035,9.398-31.509c0-12.419-3.166-22.93-9.398-31.431C194.242,291.724,186.908,287.478,178.354,287.478z"},"children":[{"name":"path","attribs":{"fill":"#231F20","d":"M178.354,287.478c-9.123,0-16.928,4.207-23.201,12.833c-6.291,8.478-9.398,18.973-9.398,31.431\r\n\t\tc0,12.474,3.166,23.008,9.398,31.509c6.273,8.54,14.039,12.771,23.201,12.771c8.494,0,15.889-4.27,22.121-12.771\r\n\t\tc6.271-8.501,9.398-19.035,9.398-31.509c0-12.419-3.166-22.93-9.398-31.431C194.242,291.724,186.908,287.478,178.354,287.478z"},"children":[]}]},{"name":"path","attribs":{"fill":"#231F20","d":"M334.668,287.478c-9.045,0-16.891,4.207-23.182,12.833c-6.271,8.478-9.359,18.973-9.359,31.431\r\n\t\tc0,12.474,3.186,23.008,9.359,31.509c6.291,8.54,14.098,12.771,23.182,12.771c8.533,0,15.906-4.27,22.178-12.771\r\n\t\tc6.293-8.501,9.418-19.035,9.418-31.509c0-12.419-3.164-22.93-9.418-31.431C350.574,291.724,343.299,287.478,334.668,287.478z"},"children":[{"name":"path","attribs":{"fill":"#231F20","d":"M334.668,287.478c-9.045,0-16.891,4.207-23.182,12.833c-6.271,8.478-9.359,18.973-9.359,31.431\r\n\t\tc0,12.474,3.186,23.008,9.359,31.509c6.291,8.54,14.098,12.771,23.182,12.771c8.533,0,15.906-4.27,22.178-12.771\r\n\t\tc6.293-8.501,9.418-19.035,9.418-31.509c0-12.419-3.164-22.93-9.418-31.431C350.574,291.724,343.299,287.478,334.668,287.478z"},"children":[]}]},{"name":"path","attribs":{"fill":"#231F20","d":"M445.777,172h-0.059c0,0,2.793-14.264,0.314-39.18c-2.182-24.916-7.471-47.838-16.123-68.82\r\n\t\tc0,0-4.422,0.76-12.76,2.896s-22.08,6.299-40.938,14.768c-18.541,8.54-37.986,19.788-58.297,33.505\r\n\t\tc-13.803-3.934-34.408-5.939-61.994-5.939c-26.289,0-46.914,2.012-61.977,5.945c-44.592-30.859-81.832-47.945-112.092-51.175\r\n\t\tc-8.594,20.982-13.883,43.991-16.045,68.97c-2.398,24.939,0.432,39.329,0.432,39.329C41.979,198.551,32,236.541,32,267.793\r\n\t\tc0,24.244,0.658,46.078,6.125,65.48c5.564,19.31,12.662,35.13,21.098,47.221c8.611,12.121,19.012,22.788,31.576,31.938\r\n\t\tc12.467,9.314,23.988,15.962,34.389,20.216c10.461,4.372,22.375,7.602,35.982,9.861c13.33,2.386,23.438,3.645,30.477,3.996\r\n\t\tc0,0,28,1.494,64.354,1.494c36.354,0,64.295-1.494,64.295-1.494c7.02-0.352,17.145-1.634,30.535-3.996\r\n\t\tc13.547-2.299,25.521-5.607,35.941-9.861c10.402-4.293,21.943-10.901,34.469-20.216c12.523-9.032,22.906-19.739,31.518-31.938\r\n\t\tc8.436-12.091,15.494-27.911,21.098-47.221c5.486-19.402,6.145-41.385,6.145-65.629C480,237.389,469.982,199,445.777,172z\r\n\t\t M380.383,405.645C352.521,418.736,311.486,424,257.061,424l-2.143-0.039c-54.443,0-95.361-5.248-122.848-18.41\r\n\t\tc-27.508-13.092-41.271-40.057-41.271-80.738c0-24.33,8.572-43.99,25.482-59.107c7.354-6.515,16.438-11.019,27.645-13.717\r\n\t\tc11.129-2.558,21.354-2.762,30.969-2.465c9.398,0.415,22.551,2.196,39.344,3.464C231.029,254.285,243.535,256,256,256\r\n\t\tc11.698,0,27.213-1.957,52.104-3.959c24.99-1.971,43.494-2.971,55.467-1c12.289,2.002,22.986,6.202,32.129,14.742\r\n\t\tc17.734,15.751,26.602,35.505,26.602,59.084C422.301,365.533,408.164,392.537,380.383,405.645z"},"children":[{"name":"path","attribs":{"fill":"#231F20","d":"M445.777,172h-0.059c0,0,2.793-14.264,0.314-39.18c-2.182-24.916-7.471-47.838-16.123-68.82\r\n\t\tc0,0-4.422,0.76-12.76,2.896s-22.08,6.299-40.938,14.768c-18.541,8.54-37.986,19.788-58.297,33.505\r\n\t\tc-13.803-3.934-34.408-5.939-61.994-5.939c-26.289,0-46.914,2.012-61.977,5.945c-44.592-30.859-81.832-47.945-112.092-51.175\r\n\t\tc-8.594,20.982-13.883,43.991-16.045,68.97c-2.398,24.939,0.432,39.329,0.432,39.329C41.979,198.551,32,236.541,32,267.793\r\n\t\tc0,24.244,0.658,46.078,6.125,65.48c5.564,19.31,12.662,35.13,21.098,47.221c8.611,12.121,19.012,22.788,31.576,31.938\r\n\t\tc12.467,9.314,23.988,15.962,34.389,20.216c10.461,4.372,22.375,7.602,35.982,9.861c13.33,2.386,23.438,3.645,30.477,3.996\r\n\t\tc0,0,28,1.494,64.354,1.494c36.354,0,64.295-1.494,64.295-1.494c7.02-0.352,17.145-1.634,30.535-3.996\r\n\t\tc13.547-2.299,25.521-5.607,35.941-9.861c10.402-4.293,21.943-10.901,34.469-20.216c12.523-9.032,22.906-19.739,31.518-31.938\r\n\t\tc8.436-12.091,15.494-27.911,21.098-47.221c5.486-19.402,6.145-41.385,6.145-65.629C480,237.389,469.982,199,445.777,172z\r\n\t\t M380.383,405.645C352.521,418.736,311.486,424,257.061,424l-2.143-0.039c-54.443,0-95.361-5.248-122.848-18.41\r\n\t\tc-27.508-13.092-41.271-40.057-41.271-80.738c0-24.33,8.572-43.99,25.482-59.107c7.354-6.515,16.438-11.019,27.645-13.717\r\n\t\tc11.129-2.558,21.354-2.762,30.969-2.465c9.398,0.415,22.551,2.196,39.344,3.464C231.029,254.285,243.535,256,256,256\r\n\t\tc11.698,0,27.213-1.957,52.104-3.959c24.99-1.971,43.494-2.971,55.467-1c12.289,2.002,22.986,6.202,32.129,14.742\r\n\t\tc17.734,15.751,26.602,35.505,26.602,59.084C422.301,365.533,408.164,392.537,380.383,405.645z"},"children":[]}]}]}]};exports.socialOctocat=socialOctocat;var socialPinterestOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,32C132.3,32,32,132.3,32,256s100.3,224,224,224s224-100.3,224-224S379.7,32,256,32z M391.8,391.8\r\n\tC355.5,428,307.3,448,256,448c-16.2,0-32.1-2-47.4-5.9c2.8-6.3,5.2-12.8,7-19.3c2.8-10,15.8-61.6,15.8-61.6\r\n\tc7.8,14.8,30.5,27.9,54.7,27.9c72,0,120.9-65.6,120.9-153.5c0-66.4-56.3-128.3-141.8-128.3c-106.4,0-160.1,76.3-160.1,139.9\r\n\tc0,38.5,14.6,72.8,45.9,85.6c5.1,2.1,9.7,0.1,11.2-5.6c1-3.9,3.5-13.9,4.6-18c1.5-5.6,0.9-7.6-3.2-12.5c-9-10.7-14.8-24.4-14.8-43.9\r\n\tc0-56.6,42.3-107.3,110.3-107.3c60.1,0,93.2,36.7,93.2,85.8c0,64.6-28.6,119.1-71,119.1c-23.4,0-41-19.4-35.4-43.1\r\n\tc6.7-28.4,19.8-59,19.8-79.5c0-18.3-9.8-33.6-30.2-33.6c-24,0-43.2,24.8-43.2,58c0,21.1,7.2,35.4,7.2,35.4s-24.5,103.9-28.8,122.1\r\n\tc-1.3,5.5-2.2,11.1-2.9,16.8c-17.3-9-33.3-20.6-47.4-34.8C84,355.5,64,307.3,64,256s20-99.5,56.2-135.8C156.5,84,204.7,64,256,64\r\n\ts99.5,20,135.8,56.2C428,156.5,448,204.7,448,256S428,355.5,391.8,391.8z"},"children":[]}]};exports.socialPinterestOutline=socialPinterestOutline;var socialPinterest={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,32C132.3,32,32,132.3,32,256c0,91.7,55.2,170.5,134.1,205.2c-0.6-15.6-0.1-34.4,3.9-51.4\r\n\t\tc4.3-18.2,28.8-122.1,28.8-122.1s-7.2-14.3-7.2-35.4c0-33.2,19.2-58,43.2-58c20.4,0,30.2,15.3,30.2,33.6\r\n\t\tc0,20.5-13.1,51.1-19.8,79.5c-5.6,23.8,11.9,43.1,35.4,43.1c42.4,0,71-54.5,71-119.1c0-49.1-33.1-85.8-93.2-85.8\r\n\t\tc-67.9,0-110.3,50.7-110.3,107.3c0,19.5,5.8,33.3,14.8,43.9c4.1,4.9,4.7,6.9,3.2,12.5c-1.1,4.1-3.5,14-4.6,18\r\n\t\tc-1.5,5.7-6.1,7.7-11.2,5.6c-31.3-12.8-45.9-47-45.9-85.6c0-63.6,53.7-139.9,160.1-139.9c85.5,0,141.8,61.9,141.8,128.3\r\n\t\tc0,87.9-48.9,153.5-120.9,153.5c-24.2,0-46.9-13.1-54.7-27.9c0,0-13,51.6-15.8,61.6c-4.7,17.3-14,34.5-22.5,48\r\n\t\tc20.1,5.9,41.4,9.2,63.5,9.2c123.7,0,224-100.3,224-224C480,132.3,379.7,32,256,32z"},"children":[{"name":"path","attribs":{"d":"M256,32C132.3,32,32,132.3,32,256c0,91.7,55.2,170.5,134.1,205.2c-0.6-15.6-0.1-34.4,3.9-51.4\r\n\t\tc4.3-18.2,28.8-122.1,28.8-122.1s-7.2-14.3-7.2-35.4c0-33.2,19.2-58,43.2-58c20.4,0,30.2,15.3,30.2,33.6\r\n\t\tc0,20.5-13.1,51.1-19.8,79.5c-5.6,23.8,11.9,43.1,35.4,43.1c42.4,0,71-54.5,71-119.1c0-49.1-33.1-85.8-93.2-85.8\r\n\t\tc-67.9,0-110.3,50.7-110.3,107.3c0,19.5,5.8,33.3,14.8,43.9c4.1,4.9,4.7,6.9,3.2,12.5c-1.1,4.1-3.5,14-4.6,18\r\n\t\tc-1.5,5.7-6.1,7.7-11.2,5.6c-31.3-12.8-45.9-47-45.9-85.6c0-63.6,53.7-139.9,160.1-139.9c85.5,0,141.8,61.9,141.8,128.3\r\n\t\tc0,87.9-48.9,153.5-120.9,153.5c-24.2,0-46.9-13.1-54.7-27.9c0,0-13,51.6-15.8,61.6c-4.7,17.3-14,34.5-22.5,48\r\n\t\tc20.1,5.9,41.4,9.2,63.5,9.2c123.7,0,224-100.3,224-224C480,132.3,379.7,32,256,32z"},"children":[]}]}]}]};exports.socialPinterest=socialPinterest;var socialPython={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M193.46,249.056c3.723-0.67,7.589-1.041,11.586-1.041L201.924,248h103.823c4.503,0,8.806-0.617,12.908-1.754\r\n\t\tc19.37-5.363,33.345-22.537,33.345-43.663v-30.822v-56.402c0-24.832-21.15-43.484-46.289-47.606\r\n\t\tc-15.931-2.624-39.258-3.827-55.089-3.749c-15.829,0.086-30.981,1.404-44.277,3.749C167.143,74.576,160,88.928,160,115.359V144h96\r\n\t\tv16H128.82c-35.628,0-64.538,42.571-64.813,95.242C64.005,255.495,64,255.747,64,256c0,9.523,0.94,18.72,2.685,27.404\r\n\t\tC74.648,323.07,99.451,352,128.82,352H144v-2.662v-43.273C144,279.238,164.146,254.332,193.46,249.056z M203.656,127.002\r\n\t\tc-9.592,0-17.384-7.785-17.384-17.403c0-9.664,7.774-17.52,17.384-17.52c9.574,0,17.399,7.855,17.399,17.52\r\n\t\tC221.056,119.217,213.246,127.002,203.656,127.002z"},"children":[{"name":"path","attribs":{"d":"M193.46,249.056c3.723-0.67,7.589-1.041,11.586-1.041L201.924,248h103.823c4.503,0,8.806-0.617,12.908-1.754\r\n\t\tc19.37-5.363,33.345-22.537,33.345-43.663v-30.822v-56.402c0-24.832-21.15-43.484-46.289-47.606\r\n\t\tc-15.931-2.624-39.258-3.827-55.089-3.749c-15.829,0.086-30.981,1.404-44.277,3.749C167.143,74.576,160,88.928,160,115.359V144h96\r\n\t\tv16H128.82c-35.628,0-64.538,42.571-64.813,95.242C64.005,255.495,64,255.747,64,256c0,9.523,0.94,18.72,2.685,27.404\r\n\t\tC74.648,323.07,99.451,352,128.82,352H144v-2.662v-43.273C144,279.238,164.146,254.332,193.46,249.056z M203.656,127.002\r\n\t\tc-9.592,0-17.384-7.785-17.384-17.403c0-9.664,7.774-17.52,17.384-17.52c9.574,0,17.399,7.855,17.399,17.52\r\n\t\tC221.056,119.217,213.246,127.002,203.656,127.002z"},"children":[]}]},{"name":"path","attribs":{"d":"M443.951,222.543C434.78,186.021,411.033,160,383.18,160H368v2.626v38.046c0,33.915-22.286,58.474-49.489,62.681\r\n\t\tc-2.737,0.424-5.483,0.646-8.301,0.646H206.351c-4.518,0-8.904,0.584-13.049,1.672C174.18,270.689,160,286.6,160,307.236v32.922\r\n\t\tv54.305c0,24.832,24.977,39.426,49.481,46.551c29.327,8.531,61.267,10.068,96.366,0C329.15,434.354,352,420.893,352,394.463V368\r\n\t\th-96v-16h127.18c25.24,0,47.107-21.365,57.814-52.549C445.474,286.404,448,271.641,448,256\r\n\t\tC448,244.232,446.567,232.962,443.951,222.543z M307.867,382.82c9.59,0,17.381,7.785,17.381,17.4\r\n\t\tc0,9.65-7.791,17.521-17.381,17.521c-9.577,0-17.399-7.871-17.399-17.521C290.468,390.59,298.274,382.82,307.867,382.82z"},"children":[{"name":"path","attribs":{"d":"M443.951,222.543C434.78,186.021,411.033,160,383.18,160H368v2.626v38.046c0,33.915-22.286,58.474-49.489,62.681\r\n\t\tc-2.737,0.424-5.483,0.646-8.301,0.646H206.351c-4.518,0-8.904,0.584-13.049,1.672C174.18,270.689,160,286.6,160,307.236v32.922\r\n\t\tv54.305c0,24.832,24.977,39.426,49.481,46.551c29.327,8.531,61.267,10.068,96.366,0C329.15,434.354,352,420.893,352,394.463V368\r\n\t\th-96v-16h127.18c25.24,0,47.107-21.365,57.814-52.549C445.474,286.404,448,271.641,448,256\r\n\t\tC448,244.232,446.567,232.962,443.951,222.543z M307.867,382.82c9.59,0,17.381,7.785,17.381,17.4\r\n\t\tc0,9.65-7.791,17.521-17.381,17.521c-9.577,0-17.399-7.871-17.399-17.521C290.468,390.59,298.274,382.82,307.867,382.82z"},"children":[]}]}]}]};exports.socialPython=socialPython;var socialRedditOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"cx":"322.3","cy":"288.4","r":"31.8"},"children":[{"name":"circle","attribs":{"cx":"322.3","cy":"288.4","r":"31.8"},"children":[]}]},{"name":"circle","attribs":{"cx":"190.3","cy":"288.4","r":"31.8"},"children":[{"name":"circle","attribs":{"cx":"190.3","cy":"288.4","r":"31.8"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M480.5,251c0-27.7-22.2-50.2-49.5-50.2c-13,0-24.7,5-33.6,13.3c-33.2-23.4-78.4-38.5-128.7-40.7L292,95.7l69.6,13.9\r\n\t\t\tc0.2,24.7,20.1,44.7,44.5,44.7c24.6,0,44.5-20.2,44.5-45.1S430.7,64,406.1,64c-18.6,0-34.5,11.6-41.2,28l-85.2-17l-29.4,98.2\r\n\t\t\tl-7.1,0.2c-50.3,2.2-95.5,17.4-128.7,40.7c-8.8-8.3-20.6-13.3-33.6-13.3c-27.3,0-49.5,22.5-49.5,50.2c0,19.6,11,36.5,27.1,44.8\r\n\t\t\tc-0.8,4.9-1.2,9.8-1.2,14.8C57.5,386.4,146.4,448,256,448s198.5-61.6,198.5-137.5c0-5-0.4-9.9-1.1-14.8\r\n\t\t\tC469.5,287.4,480.5,270.5,480.5,251z M406.1,81.9c14.8,0,26.8,12.2,26.8,27.2c0,15-12,27.2-26.8,27.2c-14.8,0-26.8-12.2-26.8-27.2\r\n\t\t\tC379.3,94.1,391.3,81.9,406.1,81.9z M49.2,251c0-17.8,14.3-32.2,31.8-32.2c7.2,0,13.9,2.5,19.2,6.6c-17.3,15.2-30.1,33-37,52.4\r\n\t\t\tC54.8,271.9,49.2,262.1,49.2,251z M386.4,392.9c-34.6,23.9-80.9,37.1-130.4,37.1s-95.8-13.2-130.4-37.1\r\n\t\t\tc-32.5-22.5-50.4-51.8-50.4-82.4c0-3.2,0.2-6.5,0.6-9.7c0.7-6,2.2-11.9,4.3-17.7c5.6-15.6,16-30.3,30.7-43.4\r\n\t\t\tc4.4-3.9,9.2-7.7,14.4-11.3c0.1-0.1,0.3-0.2,0.4-0.3C160.2,204.2,206.5,191,256,191c49.5,0,95.8,13.2,130.4,37.1\r\n\t\t\tc0.1,0.1,0.3,0.2,0.4,0.3c5.2,3.6,10,7.4,14.4,11.3c14.7,13.1,25.1,27.8,30.7,43.4c2.1,5.8,3.5,11.7,4.3,17.7\r\n\t\t\tc0.4,3.2,0.6,6.4,0.6,9.7C436.8,341.1,418.9,370.4,386.4,392.9z M448.8,277.7c-6.9-19.4-19.7-37.2-37-52.4\r\n\t\t\tc5.3-4.1,12-6.6,19.2-6.6c17.5,0,31.8,14.5,31.8,32.2C462.8,262.1,457.2,271.9,448.8,277.7z"},"children":[{"name":"path","attribs":{"d":"M480.5,251c0-27.7-22.2-50.2-49.5-50.2c-13,0-24.7,5-33.6,13.3c-33.2-23.4-78.4-38.5-128.7-40.7L292,95.7l69.6,13.9\r\n\t\t\tc0.2,24.7,20.1,44.7,44.5,44.7c24.6,0,44.5-20.2,44.5-45.1S430.7,64,406.1,64c-18.6,0-34.5,11.6-41.2,28l-85.2-17l-29.4,98.2\r\n\t\t\tl-7.1,0.2c-50.3,2.2-95.5,17.4-128.7,40.7c-8.8-8.3-20.6-13.3-33.6-13.3c-27.3,0-49.5,22.5-49.5,50.2c0,19.6,11,36.5,27.1,44.8\r\n\t\t\tc-0.8,4.9-1.2,9.8-1.2,14.8C57.5,386.4,146.4,448,256,448s198.5-61.6,198.5-137.5c0-5-0.4-9.9-1.1-14.8\r\n\t\t\tC469.5,287.4,480.5,270.5,480.5,251z M406.1,81.9c14.8,0,26.8,12.2,26.8,27.2c0,15-12,27.2-26.8,27.2c-14.8,0-26.8-12.2-26.8-27.2\r\n\t\t\tC379.3,94.1,391.3,81.9,406.1,81.9z M49.2,251c0-17.8,14.3-32.2,31.8-32.2c7.2,0,13.9,2.5,19.2,6.6c-17.3,15.2-30.1,33-37,52.4\r\n\t\t\tC54.8,271.9,49.2,262.1,49.2,251z M386.4,392.9c-34.6,23.9-80.9,37.1-130.4,37.1s-95.8-13.2-130.4-37.1\r\n\t\t\tc-32.5-22.5-50.4-51.8-50.4-82.4c0-3.2,0.2-6.5,0.6-9.7c0.7-6,2.2-11.9,4.3-17.7c5.6-15.6,16-30.3,30.7-43.4\r\n\t\t\tc4.4-3.9,9.2-7.7,14.4-11.3c0.1-0.1,0.3-0.2,0.4-0.3C160.2,204.2,206.5,191,256,191c49.5,0,95.8,13.2,130.4,37.1\r\n\t\t\tc0.1,0.1,0.3,0.2,0.4,0.3c5.2,3.6,10,7.4,14.4,11.3c14.7,13.1,25.1,27.8,30.7,43.4c2.1,5.8,3.5,11.7,4.3,17.7\r\n\t\t\tc0.4,3.2,0.6,6.4,0.6,9.7C436.8,341.1,418.9,370.4,386.4,392.9z M448.8,277.7c-6.9-19.4-19.7-37.2-37-52.4\r\n\t\t\tc5.3-4.1,12-6.6,19.2-6.6c17.5,0,31.8,14.5,31.8,32.2C462.8,262.1,457.2,271.9,448.8,277.7z"},"children":[]}]},{"name":"path","attribs":{"d":"M320.5,357.9c-0.2,0.2-24.2,24.2-64.5,24.4c-40.9-0.2-64.4-24.2-64.6-24.4l-12.6,12.4c1.2,1.2,29.6,29.5,77.2,29.7\r\n\t\t\tc47.6-0.2,75.9-28.5,77.1-29.7L320.5,357.9z"},"children":[{"name":"path","attribs":{"d":"M320.5,357.9c-0.2,0.2-24.2,24.2-64.5,24.4c-40.9-0.2-64.4-24.2-64.6-24.4l-12.6,12.4c1.2,1.2,29.6,29.5,77.2,29.7\r\n\t\t\tc47.6-0.2,75.9-28.5,77.1-29.7L320.5,357.9z"},"children":[]}]}]}]}]}]};exports.socialRedditOutline=socialRedditOutline;var socialReddit={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M480.5,251c0-27.7-22.2-50.2-49.5-50.2c-13,0-24.7,5-33.6,13.3c-32.4-22.8-76.1-37.8-124.9-40.6l21.9-73.2l67.1,13.5\r\n\tc2.3,22.7,21.2,40.4,44.3,40.4c0.1,0,0.1,0,0.2,0c0.1,0,0.1,0,0.2,0c24.6,0,44.5-20.2,44.5-45.1S430.7,64,406.1,64\r\n\tc-0.1,0-0.1,0-0.2,0c0,0-0.1,0-0.1,0c-17.2,0-32,9.8-39.5,24.3l-89.7-18l-30.8,103l-2.5,0.1c-50.3,2.2-95.5,17.4-128.7,40.7\r\n\tc-8.8-8.3-20.6-13.3-33.6-13.3c-27.3,0-49.5,22.5-49.5,50.2c0,19.6,11,36.5,27.1,44.8c-0.8,4.9-1.2,9.8-1.2,14.8\r\n\tC57.5,386.4,146.4,448,256,448s198.5-61.6,198.5-137.5c0-5-0.4-9.9-1.1-14.8C469.5,287.4,480.5,270.5,480.5,251z M65.8,271.1\r\n\tc-6.6-4.5-10.9-12.1-10.9-20.8c0-13.8,11.1-25.1,24.7-25.1c5.6,0,10.8,1.9,15,5.1C81.1,242.2,71.1,256,65.8,271.1z M389.3,109.1\r\n\tc0-9.2,7.4-16.8,16.5-16.8s16.5,7.5,16.5,16.8c0,9.2-7.4,16.8-16.5,16.8S389.3,118.4,389.3,109.1z M158.5,288.4\r\n\tc0-17.6,14.2-31.8,31.8-31.8s31.8,14.2,31.8,31.8c0,17.6-14.2,31.8-31.8,31.8S158.5,306,158.5,288.4z M256,400\r\n\tc-47.6-0.2-76-28.5-77.2-29.7l12.6-12.4c0.2,0.2,23.7,24.2,64.6,24.4c40.3-0.2,64.2-24.2,64.5-24.4l12.6,12.4\r\n\tC331.9,371.5,303.6,399.8,256,400z M322.3,320.2c-17.6,0-31.8-14.2-31.8-31.8c0-17.6,14.2-31.8,31.8-31.8s31.8,14.2,31.8,31.8\r\n\tC354.1,306,339.8,320.2,322.3,320.2z M446.4,271.5c-5.4-15.3-15.6-29.4-29.3-41.4c4.2-3.3,9.5-5.2,15.2-5.2\r\n\tc13.9,0,25.1,11.4,25.1,25.5C457.5,259.2,453.1,266.9,446.4,271.5z"},"children":[]}]};exports.socialReddit=socialReddit;var socialRssOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M119.9,336.1c-30.8,0-55.9,25.1-55.9,55.8c0,30.8,25.1,55.6,55.9,55.6c30.9,0,55.9-24.9,55.9-55.6\r\n\t\tC175.8,361.2,150.8,336.1,119.9,336.1z M119.9,431.5c-22,0-39.9-17.8-39.9-39.6c0-21.9,17.9-39.8,39.9-39.8\r\n\t\tc22,0,39.9,17.9,39.9,39.8C159.8,413.7,141.9,431.5,119.9,431.5z"},"children":[{"name":"path","attribs":{"d":"M119.9,336.1c-30.8,0-55.9,25.1-55.9,55.8c0,30.8,25.1,55.6,55.9,55.6c30.9,0,55.9-24.9,55.9-55.6\r\n\t\tC175.8,361.2,150.8,336.1,119.9,336.1z M119.9,431.5c-22,0-39.9-17.8-39.9-39.6c0-21.9,17.9-39.8,39.9-39.8\r\n\t\tc22,0,39.9,17.9,39.9,39.8C159.8,413.7,141.9,431.5,119.9,431.5z"},"children":[]}]},{"name":"path","attribs":{"d":"M64,192v79.9c48,0,94.1,14.2,128,48.1c33.9,33.9,48,79.9,48,128h80C320,308.1,204,192,64,192z M303.5,432h-48\r\n\t\tc-3.1-49.7-21-92.1-52.2-123.3C172.1,277.4,130,259.5,80,256.4v-47.8c26,1.8,52.1,8,76.7,18.5c28.5,12.2,54.2,29.6,76.4,51.8\r\n\t\tc22.2,22.2,39.6,47.9,51.8,76.4C295.5,379.9,301.7,405.6,303.5,432z"},"children":[{"name":"path","attribs":{"d":"M64,192v79.9c48,0,94.1,14.2,128,48.1c33.9,33.9,48,79.9,48,128h80C320,308.1,204,192,64,192z M303.5,432h-48\r\n\t\tc-3.1-49.7-21-92.1-52.2-123.3C172.1,277.4,130,259.5,80,256.4v-47.8c26,1.8,52.1,8,76.7,18.5c28.5,12.2,54.2,29.6,76.4,51.8\r\n\t\tc22.2,22.2,39.6,47.9,51.8,76.4C295.5,379.9,301.7,405.6,303.5,432z"},"children":[]}]},{"name":"path","attribs":{"d":"M64,64v79.9c171,0,303.9,133,303.9,304.1H448C448,236.3,276,64,64,64z M291.4,220.5C235.4,164.4,161,132,80,128.2V80.3\r\n\t\tC270,88.5,423.5,241.8,431.7,432h-48.2C379.7,351.1,347.3,276.5,291.4,220.5z"},"children":[{"name":"path","attribs":{"d":"M64,64v79.9c171,0,303.9,133,303.9,304.1H448C448,236.3,276,64,64,64z M291.4,220.5C235.4,164.4,161,132,80,128.2V80.3\r\n\t\tC270,88.5,423.5,241.8,431.7,432h-48.2C379.7,351.1,347.3,276.5,291.4,220.5z"},"children":[]}]}]}]};exports.socialRssOutline=socialRssOutline;var socialRss={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M119.9,336.1c-30.8,0-55.9,25.1-55.9,55.8c0,30.8,25.1,55.6,55.9,55.6c30.9,0,55.9-24.9,55.9-55.6\r\n\t\tC175.8,361.2,150.8,336.1,119.9,336.1z"},"children":[{"name":"path","attribs":{"d":"M119.9,336.1c-30.8,0-55.9,25.1-55.9,55.8c0,30.8,25.1,55.6,55.9,55.6c30.9,0,55.9-24.9,55.9-55.6\r\n\t\tC175.8,361.2,150.8,336.1,119.9,336.1z"},"children":[]}]},{"name":"path","attribs":{"d":"M64,192v79.9c48,0,94.1,14.2,128,48.1c33.9,33.9,48,79.9,48,128h80C320,308.1,204,192,64,192z"},"children":[{"name":"path","attribs":{"d":"M64,192v79.9c48,0,94.1,14.2,128,48.1c33.9,33.9,48,79.9,48,128h80C320,308.1,204,192,64,192z"},"children":[]}]},{"name":"path","attribs":{"d":"M64,64v79.9c171,0,303.9,133,303.9,304.1H448C448,236.3,276,64,64,64z"},"children":[{"name":"path","attribs":{"d":"M64,64v79.9c171,0,303.9,133,303.9,304.1H448C448,236.3,276,64,64,64z"},"children":[]}]}]}]};exports.socialRss=socialRss;var socialSass={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"fill":"#231F20","d":"M511.784,329.108c-1.67-13.599-9.236-24.146-20.795-32.416c2.857,2.04,5.275,3.766-0.055-0.041\r\n\tc-7.189-5.131-3.38-2.411-0.047-0.032c-28.5-20.301-65.676-15.789-96.733-4.511c-12.447-20.295-12.987-35.783-5.816-57.937\r\n\tc0.929-2.8,0.295-4.354-2.624-5.604c-7.086-3.03-17.291-1.427-24.422,0.463c-2.462,0.646-4.254,1.9-4.8,4.381\r\n\tc-5.154,24.243-21.009,46.448-34.828,66.886c-9.731-18.652-8.96-33.087-2.414-52.516c0.798-2.366,0.431-3.624-1.937-4.879\r\n\tc-7.26-3.757-18.401-1.912-25.8,0.276c-8.509,2.482-21.29,44.594-25.372,52.946c-8.531,17.442-16.091,44.665-30.585,58.502\r\n\tc-12.3-15.807,22.526-51.517,10.882-65.851c-3.938-4.848-11.063-4.723-15.586-0.616c1.085-7.608,1.648-12.609-0.32-19.063\r\n\tc-2.081-6.79-7.361-10.687-15.09-10.49c-17.995,0.527-33.843,13.815-44.641,26.397c-10.277,12.105-37.381,19.627-51.953,26.927\r\n\tc-25.032-21.807-79.221-44.947-80.632-82.081c-1.528-41.846,48.319-70.245,81.597-87.228\r\n\tc43.28-22.104,109.961-49.608,159.138-25.436c13.049,6.414,18.299,20.171,14.707,33.348c-9.368,34.366-47.198,57.293-80.103,67.807\r\n\tc-16.189,5.175-33.969,9.027-51.1,8.026c-22.955-1.343-40.83-15.224-43.281-16.086c-2.049-0.389-1.888,2.261-1.347,3.664\r\n\tc23.816,62.433,144.417,16.681,175.956-15.371c15.189-15.421,24.413-30.365,28.351-53.894c4.616-27.583-15.634-44.842-31.004-51.957\r\n\tC213.212,56.65,105.494,103.89,46.577,152.049c-25.568,20.901-57.552,54.11-42.874,88.946c15.93,37.805,64.736,57.19,96.503,80.312\r\n\tC74.502,334.08,42.344,347.29,25.688,371.24c-9.524,13.729-12.903,28.359-5.811,43.966c12.572,27.568,58.285,15.622,77.573,3.471\r\n\tc17.67-11.13,29.563-26.07,34.7-45.228c4.455-16.609,3.541-33.866-3.856-49.512l28.585-14.458\r\n\tc-7.697,23.076-11.097,52.003,4.881,72.855c6.402,8.338,23.017,8.675,29.817,0.311c8.816-10.943,14.664-24.655,20.503-37.206\r\n\tc-0.682,9.373-1.856,19.996,1.377,28.165c3.71,9.373,12.126,11.291,20.792,5.343c26.52-18.203,43.398-68.652,56.463-98.062\r\n\tc3.552,12.829,7.473,24.548,13.957,36.376c1.602,2.903,1.407,4.774-0.796,7.195c-9.685,10.675-32.826,28.479-35.069,42.899\r\n\tc-0.524,3.371,1.713,6.599,5.686,7.37c15.573,3.108,32.838-2.531,45.482-11.078c13.188-8.922,17.446-21.087,14.245-35.515\r\n\tc-4.576-20.771,10.993-43.98,25.801-61.03c2.719,12.908,6.816,25.331,14.143,36.606c-13.075,11.483-32.58,27.764-29.779,46.939\r\n\tc0.988,6.865,7.135,11.301,14.514,9.736c15.783-3.324,29.416-10.113,39.37-22.146c9.023-10.855,5.792-22.701,1.856-34.635\r\n\tc23.872-6.815,48.022-8.177,71.831-0.027c11.495,3.91,20.755,10.5,26.248,20.818c6.726,12.644,2.939,24.292-10.05,32.604\r\n\tc-3.287,2.104-5.562,3.833-4.45,4.743c1.112,0.911,4.9,2.113,13.284-3.152c8.384-5.267,13.51-12.383,14.823-21.725\r\n\tC512.071,334.28,512.063,331.696,511.784,329.108z M112.946,354.367c-1.358,16.673-9.636,30.193-23.175,41.114\r\n\tc-7.617,6.158-17.102,11.176-26.52,12.092c-9.418,0.917-16.751-1.461-17.378-11.23c-1.764-27.493,40.923-54.424,64.625-62.533\r\n\tc2.02,6.86,3.011,13.666,2.432,20.587L112.946,354.367z M216.048,281.914c-3.903,22.309-14.83,62.347-32.314,78.336\r\n\tc-2.356,2.143-4.61,2.018-5.809-0.771c-10.345-24.059,3.671-73.669,33.082-81.328C214.464,277.262,216.609,278.733,216.048,281.914z\r\n\t M286.359,363.682c8.422-8.962,16.834-17.916,25.269-26.927C312.671,346.776,294.057,366.719,286.359,363.682z M367.073,345.986\r\n\tc-2.348,1.273-7.621,2.515-7.827,0.835c-1.482-12.085,11.816-24.874,20.067-30.867C383.766,327.297,378.495,339.788,367.073,345.986\r\n\tz"},"children":[]}]};exports.socialSass=socialSass;var socialSkypeOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M170.2,96c14,0,27.7,3.9,39.6,11.3l10.3,6.4l12-2c8.5-1.5,17.2-2.2,25.9-2.2c40.5,0,78.5,15.5,107,43.7\r\n\t\tc28.4,28,44.1,65.3,44.1,104.9c0,10.7-1.2,21.4-3.5,31.8l-2.5,11.1l5.1,10.2c5.1,10.1,7.7,20.9,7.7,32.2\r\n\t\tc0,40.1-33.3,72.7-74.2,72.7c-12.5,0-24.3-2.9-35.2-8.7l-9.8-5.2l-10.9,2c-9.1,1.7-18.5,2.5-27.8,2.5c-40.5,0-78.5-15.5-107-43.7\r\n\t\tc-28.4-28-44.1-65.3-44.1-104.9c0-10,1-20.1,3-29.9l2.5-12.2l-6.4-10.7C99.5,194.2,96,181.6,96,168.7C96,128.6,129.3,96,170.2,96\r\n\t\t M170.2,64C111.6,64,64,110.9,64,168.7c0,19.4,5.3,37.5,14.6,53c-2.4,11.7-3.7,23.9-3.7,36.3c0,99.8,82,180.6,183.1,180.6\r\n\t\tc11.5,0,22.7-1,33.5-3c15,7.9,32.1,12.4,50.2,12.4c58.7,0,106.2-46.9,106.2-104.7c0-16.7-4-32.5-11.1-46.5\r\n\t\tc2.8-12.5,4.2-25.4,4.2-38.7c0-99.7-82-180.6-183.2-180.6c-10.7,0-21.1,0.9-31.3,2.6C210.3,69.9,191,64,170.2,64L170.2,64z"},"children":[{"name":"path","attribs":{"d":"M170.2,96c14,0,27.7,3.9,39.6,11.3l10.3,6.4l12-2c8.5-1.5,17.2-2.2,25.9-2.2c40.5,0,78.5,15.5,107,43.7\r\n\t\tc28.4,28,44.1,65.3,44.1,104.9c0,10.7-1.2,21.4-3.5,31.8l-2.5,11.1l5.1,10.2c5.1,10.1,7.7,20.9,7.7,32.2\r\n\t\tc0,40.1-33.3,72.7-74.2,72.7c-12.5,0-24.3-2.9-35.2-8.7l-9.8-5.2l-10.9,2c-9.1,1.7-18.5,2.5-27.8,2.5c-40.5,0-78.5-15.5-107-43.7\r\n\t\tc-28.4-28-44.1-65.3-44.1-104.9c0-10,1-20.1,3-29.9l2.5-12.2l-6.4-10.7C99.5,194.2,96,181.6,96,168.7C96,128.6,129.3,96,170.2,96\r\n\t\t M170.2,64C111.6,64,64,110.9,64,168.7c0,19.4,5.3,37.5,14.6,53c-2.4,11.7-3.7,23.9-3.7,36.3c0,99.8,82,180.6,183.1,180.6\r\n\t\tc11.5,0,22.7-1,33.5-3c15,7.9,32.1,12.4,50.2,12.4c58.7,0,106.2-46.9,106.2-104.7c0-16.7-4-32.5-11.1-46.5\r\n\t\tc2.8-12.5,4.2-25.4,4.2-38.7c0-99.7-82-180.6-183.2-180.6c-10.7,0-21.1,0.9-31.3,2.6C210.3,69.9,191,64,170.2,64L170.2,64z"},"children":[]}]},{"name":"path","attribs":{"d":"M351.9,344.1c-8.5,11.8-21,21.2-37.2,27.8c-16.1,6.6-35.3,9.9-57.3,9.9c-26.3,0-48.3-4.6-65.6-13.6\r\n\t\tc-12.3-6.6-22.4-15.4-30.2-26.4c-7.8-11-11.7-22-11.7-32.6c0-6.6,2.6-12.3,7.6-17.1c5-4.6,11.5-7,19.1-7c6.3,0,11.7,1.8,16.1,5.5\r\n\t\tc4.2,3.5,7.8,8.7,10.7,15.5c3.3,7.3,6.8,13.5,10.6,18.4c3.6,4.7,8.7,8.6,15.3,11.7c6.7,3.1,15.6,4.7,26.6,4.7\r\n\t\tc15.1,0,27.5-3.2,36.8-9.5c9.2-6.1,13.6-13.5,13.6-22.5c0-7.1-2.3-12.7-7.1-17.1c-5-4.6-11.5-8.2-19.6-10.6\r\n\t\tc-8.3-2.6-19.6-5.3-33.6-8.2c-19-4-35.1-8.8-48-14.2c-13.1-5.5-23.7-13.2-31.5-22.7C159,226.5,155,214.3,155,200\r\n\t\tc0-13.7,4.2-25.9,12.4-36.5c8.2-10.5,20.1-18.7,35.6-24.3c15.2-5.6,33.3-8.4,53.7-8.4c16.4,0,30.7,1.9,42.7,5.5\r\n\t\tc12.1,3.7,22.2,8.7,30.3,14.9c8,6.2,14,12.8,17.8,19.7c3.8,7,5.7,13.9,5.7,20.6c0,6.4-2.5,12.3-7.5,17.4c-5,5.1-11.3,7.8-18.8,7.8\r\n\t\tc-6.8,0-12.1-1.6-15.8-4.8c-3.4-3-7-7.6-10.9-14.3c-4.6-8.5-10.1-15.3-16.4-20.1c-6.2-4.6-16.4-7-30.6-7c-13.1,0-23.8,2.6-31.7,7.7\r\n\t\tc-7.6,4.9-11.3,10.6-11.3,17.3c0,4.1,1.2,7.5,3.7,10.5c2.6,3.1,6.2,5.9,10.9,8.2c4.8,2.4,9.8,4.3,14.7,5.6\r\n\t\tc5.1,1.4,13.6,3.5,25.3,6.1c14.9,3.1,28.5,6.7,40.5,10.4c12.2,3.9,22.7,8.6,31.3,14.1c8.8,5.6,15.7,12.9,20.7,21.5\r\n\t\tc4.9,8.6,7.4,19.4,7.4,31.8C364.7,318.7,360.4,332.3,351.9,344.1z"},"children":[{"name":"path","attribs":{"d":"M351.9,344.1c-8.5,11.8-21,21.2-37.2,27.8c-16.1,6.6-35.3,9.9-57.3,9.9c-26.3,0-48.3-4.6-65.6-13.6\r\n\t\tc-12.3-6.6-22.4-15.4-30.2-26.4c-7.8-11-11.7-22-11.7-32.6c0-6.6,2.6-12.3,7.6-17.1c5-4.6,11.5-7,19.1-7c6.3,0,11.7,1.8,16.1,5.5\r\n\t\tc4.2,3.5,7.8,8.7,10.7,15.5c3.3,7.3,6.8,13.5,10.6,18.4c3.6,4.7,8.7,8.6,15.3,11.7c6.7,3.1,15.6,4.7,26.6,4.7\r\n\t\tc15.1,0,27.5-3.2,36.8-9.5c9.2-6.1,13.6-13.5,13.6-22.5c0-7.1-2.3-12.7-7.1-17.1c-5-4.6-11.5-8.2-19.6-10.6\r\n\t\tc-8.3-2.6-19.6-5.3-33.6-8.2c-19-4-35.1-8.8-48-14.2c-13.1-5.5-23.7-13.2-31.5-22.7C159,226.5,155,214.3,155,200\r\n\t\tc0-13.7,4.2-25.9,12.4-36.5c8.2-10.5,20.1-18.7,35.6-24.3c15.2-5.6,33.3-8.4,53.7-8.4c16.4,0,30.7,1.9,42.7,5.5\r\n\t\tc12.1,3.7,22.2,8.7,30.3,14.9c8,6.2,14,12.8,17.8,19.7c3.8,7,5.7,13.9,5.7,20.6c0,6.4-2.5,12.3-7.5,17.4c-5,5.1-11.3,7.8-18.8,7.8\r\n\t\tc-6.8,0-12.1-1.6-15.8-4.8c-3.4-3-7-7.6-10.9-14.3c-4.6-8.5-10.1-15.3-16.4-20.1c-6.2-4.6-16.4-7-30.6-7c-13.1,0-23.8,2.6-31.7,7.7\r\n\t\tc-7.6,4.9-11.3,10.6-11.3,17.3c0,4.1,1.2,7.5,3.7,10.5c2.6,3.1,6.2,5.9,10.9,8.2c4.8,2.4,9.8,4.3,14.7,5.6\r\n\t\tc5.1,1.4,13.6,3.5,25.3,6.1c14.9,3.1,28.5,6.7,40.5,10.4c12.2,3.9,22.7,8.6,31.3,14.1c8.8,5.6,15.7,12.9,20.7,21.5\r\n\t\tc4.9,8.6,7.4,19.4,7.4,31.8C364.7,318.7,360.4,332.3,351.9,344.1z"},"children":[]}]}]}]};exports.socialSkypeOutline=socialSkypeOutline;var socialSkype={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M436.9,296.8c2.8-12.5,4.2-25.4,4.2-38.7c0-99.7-82-180.6-183.2-180.6c-10.7,0-21.1,0.9-31.3,2.6\r\n\tC210.3,69.9,191,64,170.2,64C111.6,64,64,110.9,64,168.7c0,19.4,5.3,37.5,14.6,53c-2.4,11.7-3.7,23.9-3.7,36.3\r\n\tc0,99.8,82,180.6,183.1,180.6c11.5,0,22.7-1,33.5-3c15,7.9,32.1,12.4,50.2,12.4c58.7,0,106.2-46.9,106.2-104.7\r\n\tC448,326.6,444,310.8,436.9,296.8z M351.9,344.3c-8.5,11.8-21,21.2-37.2,27.8c-16.1,6.6-35.3,9.9-57.3,9.9\r\n\tc-26.3,0-48.3-4.6-65.6-13.6c-12.3-6.6-22.4-15.4-30.2-26.4c-7.8-11-11.7-22-11.7-32.6c0-6.6,2.6-12.3,7.6-17.1c5-4.6,11.5-7,19.1-7\r\n\tc6.3,0,11.7,1.8,16.1,5.5c4.2,3.5,7.8,8.7,10.7,15.5c3.3,7.3,6.8,13.5,10.6,18.4c3.6,4.7,8.7,8.6,15.3,11.7\r\n\tc6.7,3.1,15.6,4.7,26.6,4.7c15.1,0,27.5-3.2,36.8-9.5c9.2-6.1,13.6-13.5,13.6-22.5c0-7.1-2.3-12.7-7.1-17.1\r\n\tc-5-4.6-11.5-8.2-19.6-10.6c-8.3-2.6-19.6-5.3-33.6-8.2c-19-4-35.1-8.8-48-14.2c-13.1-5.5-23.7-13.2-31.5-22.7\r\n\tc-7.9-9.7-11.8-21.9-11.8-36.2c0-13.7,4.2-25.9,12.4-36.5c8.2-10.5,20.1-18.7,35.6-24.3c15.2-5.6,33.3-8.4,53.7-8.4\r\n\tc16.4,0,30.7,1.9,42.7,5.5c12.1,3.7,22.2,8.7,30.3,14.9c8,6.2,14,12.8,17.8,19.7c3.8,7,5.7,13.9,5.7,20.6c0,6.4-2.5,12.3-7.5,17.4\r\n\tc-5,5.1-11.3,7.8-18.8,7.8c-6.8,0-12.1-1.6-15.8-4.8c-3.4-3-7-7.6-10.9-14.3c-4.6-8.5-10.1-15.3-16.4-20.1c-6.2-4.6-16.4-7-30.6-7\r\n\tc-13.1,0-23.8,2.6-31.7,7.7c-7.6,4.9-11.3,10.6-11.3,17.3c0,4.1,1.2,7.5,3.7,10.5c2.6,3.1,6.2,5.9,10.9,8.2\r\n\tc4.8,2.4,9.8,4.3,14.7,5.6c5.1,1.4,13.6,3.5,25.3,6.1c14.9,3.1,28.5,6.7,40.5,10.4c12.2,3.9,22.7,8.6,31.3,14.1\r\n\tc8.8,5.6,15.7,12.9,20.7,21.5c4.9,8.6,7.4,19.4,7.4,31.8C364.8,318.9,360.5,332.5,351.9,344.3z"},"children":[]}]};exports.socialSkype=socialSkype;var socialSnapchatOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256.283,47.553c70.693,0,128,54.682,118,128.931c-2.072,15.388-3.422,31.483-4.26,44.759c0,0,2.402,4.253,12.664,4.253\r\n\t\tc6.071,0,14.895-1.543,27.596-6.354c2.236-0.847,4.377-1.241,6.377-1.241c7.918,0,13.615,5.931,14.123,12.271\r\n\t\tc0.426,5.31-4.564,11.199-8.371,13.009c-13.766,6.542-46.991,10.063-46.991,32.638c0,22.576,22.362,46.656,40.862,63.713\r\n\t\tS480,360.602,480,360.602s0.283,21.57-31.717,29.097c-32,7.524-32.1,5.712-33.25,13.796c-2.133,14.979-1.535,21.378-11.248,21.378\r\n\t\tc-1.672,0-3.651-0.19-6.002-0.558c-8.23-1.291-19.239-3.644-31.121-3.644c-11.216,0-23.21,2.097-34.379,9.161\r\n\t\tc-23,14.549-41.283,34.114-76.283,34.114s-53-19.565-76-34.114c-11.17-7.065-23.162-9.161-34.379-9.161\r\n\t\tc-11.88,0-22.892,2.353-31.121,3.644c-2.352,0.367-4.33,0.558-6.002,0.558c-9.71,0-9.115-6.399-11.248-21.378\r\n\t\tc-1.151-8.084-1.25-6.27-33.25-13.795s-32-29.097-32-29.097s45.5-4.012,64-21.068c18.5-17.058,40.862-41.134,40.862-63.71\r\n\t\tc0-22.575-33.226-26.09-46.991-32.632c-3.807-1.81-8.796-7.687-8.371-12.997c0.507-6.336,6.196-12.251,14.107-12.25\r\n\t\tc2.004,0,4.152,0.38,6.393,1.229c12.749,4.829,21.588,6.342,27.662,6.342c10.204,0,12.598-4.273,12.598-4.273\r\n\t\tc-0.837-13.275-2.187-29.371-4.259-44.759c-10-74.249,47.307-128.931,118-128.931l0,0 M256.283,32H256\r\n\t\tc-41.093,0-79.215,16.208-104.591,45.341c-23.982,27.534-34.375,63.345-29.265,101.292c1.416,10.51,2.46,21.231,3.21,30.618\r\n\t\tc-3.97-0.559-9.686-1.998-17.703-5.034c-3.965-1.502-8.017-2.295-12.043-2.295c-15.641-0.001-28.844,11.852-30.057,27.003\r\n\t\tc-1.027,12.818,8.235,24.393,17.47,28.783c4.251,2.02,9.181,3.578,14.4,5.232c6.707,2.125,14.309,4.532,19.293,7.703\r\n\t\tc4.147,2.639,4.147,4.168,4.147,5.182c0,8.66-6.191,24.691-35.688,51.888c-10.499,9.681-39.055,15.501-54.588,16.897l-14.572,1.311\r\n\t\tL16,360.603c0,1.679,0.312,10.546,6.485,20.319c5.246,8.306,16.073,19.283,37.863,24.407c6.179,1.453,11.186,2.563,15.208,3.454\r\n\t\tc2.306,0.512,4.555,1.01,6.454,1.453c0.027,0.209,0.054,0.417,0.081,0.623c0.9,7.004,1.611,12.535,4.392,17.75\r\n\t\tc2.453,4.6,8.574,12.316,22.015,12.316c2.478,0,5.249-0.246,8.472-0.751c1.672-0.263,3.386-0.554,5.2-0.863\r\n\t\tc7.116-1.212,15.182-2.587,23.451-2.587c10.277,0,18.732,2.188,25.846,6.688c4.531,2.867,8.892,5.972,13.509,9.26\r\n\t\tC202.967,465.481,223.358,480,256,480c32.726,0,53.293-14.582,71.439-27.446c4.576-3.244,8.898-6.309,13.377-9.142\r\n\t\tc7.113-4.5,15.568-6.688,25.846-6.688c8.27,0,16.334,1.375,23.449,2.586c1.814,0.311,3.529,0.602,5.202,0.864\r\n\t\tc3.223,0.505,5.993,0.751,8.472,0.751c13.44,0,19.562-7.715,22.015-12.313c2.781-5.214,3.492-10.746,4.392-17.749\r\n\t\tc0.027-0.208,0.055-0.418,0.082-0.629c1.898-0.441,4.148-0.941,6.455-1.452c4.023-0.892,9.029-2.001,15.206-3.454\r\n\t\tc21.851-5.139,32.611-16.17,37.79-24.518c6.098-9.828,6.296-18.736,6.273-20.422l-0.189-14.501l-14.398-1.278\r\n\t\tc-15.413-1.396-43.8-7.219-54.301-16.9c-16.281-15.011-35.688-36.199-35.688-51.893c0-1.014,0-2.546,4.15-5.186\r\n\t\tc4.985-3.174,12.589-5.584,19.297-7.71c5.217-1.654,10.144-3.217,14.394-5.236c9.236-4.39,18.498-15.978,17.471-28.807\r\n\t\tc-1.215-15.166-14.424-27.046-30.072-27.046c-4.021,0-8.068,0.76-12.027,2.259c-8.027,3.041-13.743,4.41-17.705,4.962\r\n\t\tc0.747-9.319,1.791-20.12,3.211-30.67c5.111-37.948-5.281-73.509-29.264-101.042C335.498,48.208,297.376,32,256.283,32L256.283,32z\r\n\t\t"},"children":[{"name":"path","attribs":{"d":"M256.283,47.553c70.693,0,128,54.682,118,128.931c-2.072,15.388-3.422,31.483-4.26,44.759c0,0,2.402,4.253,12.664,4.253\r\n\t\tc6.071,0,14.895-1.543,27.596-6.354c2.236-0.847,4.377-1.241,6.377-1.241c7.918,0,13.615,5.931,14.123,12.271\r\n\t\tc0.426,5.31-4.564,11.199-8.371,13.009c-13.766,6.542-46.991,10.063-46.991,32.638c0,22.576,22.362,46.656,40.862,63.713\r\n\t\tS480,360.602,480,360.602s0.283,21.57-31.717,29.097c-32,7.524-32.1,5.712-33.25,13.796c-2.133,14.979-1.535,21.378-11.248,21.378\r\n\t\tc-1.672,0-3.651-0.19-6.002-0.558c-8.23-1.291-19.239-3.644-31.121-3.644c-11.216,0-23.21,2.097-34.379,9.161\r\n\t\tc-23,14.549-41.283,34.114-76.283,34.114s-53-19.565-76-34.114c-11.17-7.065-23.162-9.161-34.379-9.161\r\n\t\tc-11.88,0-22.892,2.353-31.121,3.644c-2.352,0.367-4.33,0.558-6.002,0.558c-9.71,0-9.115-6.399-11.248-21.378\r\n\t\tc-1.151-8.084-1.25-6.27-33.25-13.795s-32-29.097-32-29.097s45.5-4.012,64-21.068c18.5-17.058,40.862-41.134,40.862-63.71\r\n\t\tc0-22.575-33.226-26.09-46.991-32.632c-3.807-1.81-8.796-7.687-8.371-12.997c0.507-6.336,6.196-12.251,14.107-12.25\r\n\t\tc2.004,0,4.152,0.38,6.393,1.229c12.749,4.829,21.588,6.342,27.662,6.342c10.204,0,12.598-4.273,12.598-4.273\r\n\t\tc-0.837-13.275-2.187-29.371-4.259-44.759c-10-74.249,47.307-128.931,118-128.931l0,0 M256.283,32H256\r\n\t\tc-41.093,0-79.215,16.208-104.591,45.341c-23.982,27.534-34.375,63.345-29.265,101.292c1.416,10.51,2.46,21.231,3.21,30.618\r\n\t\tc-3.97-0.559-9.686-1.998-17.703-5.034c-3.965-1.502-8.017-2.295-12.043-2.295c-15.641-0.001-28.844,11.852-30.057,27.003\r\n\t\tc-1.027,12.818,8.235,24.393,17.47,28.783c4.251,2.02,9.181,3.578,14.4,5.232c6.707,2.125,14.309,4.532,19.293,7.703\r\n\t\tc4.147,2.639,4.147,4.168,4.147,5.182c0,8.66-6.191,24.691-35.688,51.888c-10.499,9.681-39.055,15.501-54.588,16.897l-14.572,1.311\r\n\t\tL16,360.603c0,1.679,0.312,10.546,6.485,20.319c5.246,8.306,16.073,19.283,37.863,24.407c6.179,1.453,11.186,2.563,15.208,3.454\r\n\t\tc2.306,0.512,4.555,1.01,6.454,1.453c0.027,0.209,0.054,0.417,0.081,0.623c0.9,7.004,1.611,12.535,4.392,17.75\r\n\t\tc2.453,4.6,8.574,12.316,22.015,12.316c2.478,0,5.249-0.246,8.472-0.751c1.672-0.263,3.386-0.554,5.2-0.863\r\n\t\tc7.116-1.212,15.182-2.587,23.451-2.587c10.277,0,18.732,2.188,25.846,6.688c4.531,2.867,8.892,5.972,13.509,9.26\r\n\t\tC202.967,465.481,223.358,480,256,480c32.726,0,53.293-14.582,71.439-27.446c4.576-3.244,8.898-6.309,13.377-9.142\r\n\t\tc7.113-4.5,15.568-6.688,25.846-6.688c8.27,0,16.334,1.375,23.449,2.586c1.814,0.311,3.529,0.602,5.202,0.864\r\n\t\tc3.223,0.505,5.993,0.751,8.472,0.751c13.44,0,19.562-7.715,22.015-12.313c2.781-5.214,3.492-10.746,4.392-17.749\r\n\t\tc0.027-0.208,0.055-0.418,0.082-0.629c1.898-0.441,4.148-0.941,6.455-1.452c4.023-0.892,9.029-2.001,15.206-3.454\r\n\t\tc21.851-5.139,32.611-16.17,37.79-24.518c6.098-9.828,6.296-18.736,6.273-20.422l-0.189-14.501l-14.398-1.278\r\n\t\tc-15.413-1.396-43.8-7.219-54.301-16.9c-16.281-15.011-35.688-36.199-35.688-51.893c0-1.014,0-2.546,4.15-5.186\r\n\t\tc4.985-3.174,12.589-5.584,19.297-7.71c5.217-1.654,10.144-3.217,14.394-5.236c9.236-4.39,18.498-15.978,17.471-28.807\r\n\t\tc-1.215-15.166-14.424-27.046-30.072-27.046c-4.021,0-8.068,0.76-12.027,2.259c-8.027,3.041-13.743,4.41-17.705,4.962\r\n\t\tc0.747-9.319,1.791-20.12,3.211-30.67c5.111-37.948-5.281-73.509-29.264-101.042C335.498,48.208,297.376,32,256.283,32L256.283,32z\r\n\t\t"},"children":[]}]},{"name":"path","attribs":{"d":"M256,229c-20.838,0-40.604-8.29-55.657-23.343c-3.125-3.124-3.124-8.189,0-11.313c3.125-3.124,8.19-3.124,11.313,0\r\n\t\tC223.688,206.374,239.436,213,256,213c16.387,0,32.15-6.64,44.385-18.698c3.148-3.102,8.213-3.063,11.312,0.082\r\n\t\tc3.102,3.147,3.064,8.212-0.082,11.313C296.368,220.725,276.617,229,256,229z"},"children":[{"name":"path","attribs":{"d":"M256,229c-20.838,0-40.604-8.29-55.657-23.343c-3.125-3.124-3.124-8.189,0-11.313c3.125-3.124,8.19-3.124,11.313,0\r\n\t\tC223.688,206.374,239.436,213,256,213c16.387,0,32.15-6.64,44.385-18.698c3.148-3.102,8.213-3.063,11.312,0.082\r\n\t\tc3.102,3.147,3.064,8.212-0.082,11.313C296.368,220.725,276.617,229,256,229z"},"children":[]}]},{"name":"ellipse","attribs":{"cx":"208","cy":"152","rx":"16","ry":"24"},"children":[{"name":"ellipse","attribs":{"cx":"208","cy":"152","rx":"16","ry":"24"},"children":[]}]},{"name":"ellipse","attribs":{"cx":"304","cy":"152","rx":"16","ry":"24"},"children":[{"name":"ellipse","attribs":{"cx":"304","cy":"152","rx":"16","ry":"24"},"children":[]}]}]}]};exports.socialSnapchatOutline=socialSnapchatOutline;var socialSnapchat={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M495.998,360.389l-0.189-14.501l-14.398-1.278c-15.413-1.396-43.8-7.219-54.301-16.9\r\n\t\tc-16.281-15.011-35.688-36.199-35.688-51.893c0-1.014,0-2.546,4.15-5.186c4.985-3.174,12.589-5.584,19.297-7.71\r\n\t\tc5.217-1.654,10.144-3.217,14.394-5.236c9.236-4.39,18.498-15.978,17.471-28.807c-1.215-15.166-14.424-27.046-30.072-27.046\r\n\t\tc-4.021,0-8.068,0.76-12.027,2.259c-8.027,3.041-13.743,4.41-17.705,4.962c0.747-9.319,1.791-20.12,3.211-30.67\r\n\t\tc5.111-37.948-5.281-73.509-29.264-101.042C335.498,48.208,297.376,32,256.283,32H256c-41.093,0-79.215,16.208-104.591,45.341\r\n\t\tc-23.982,27.534-34.375,63.345-29.265,101.292c1.416,10.51,2.46,21.231,3.21,30.618c-3.97-0.559-9.686-1.998-17.703-5.034\r\n\t\tc-3.965-1.502-8.017-2.295-12.043-2.295c-15.641-0.001-28.844,11.852-30.057,27.003c-1.027,12.818,8.235,24.393,17.47,28.783\r\n\t\tc4.251,2.02,9.181,3.578,14.4,5.232c6.707,2.125,14.309,4.532,19.293,7.703c4.147,2.639,4.147,4.168,4.147,5.182\r\n\t\tc0,8.66-6.191,24.691-35.688,51.888c-10.499,9.681-39.055,15.501-54.588,16.897l-14.572,1.311L16,360.603\r\n\t\tc0,1.679,0.312,10.546,6.485,20.319c5.246,8.306,16.073,19.283,37.863,24.407c6.179,1.453,11.186,2.563,15.208,3.454\r\n\t\tc2.306,0.512,4.555,1.01,6.454,1.453c0.027,0.209,0.054,0.417,0.081,0.623c0.9,7.004,1.611,12.535,4.392,17.75\r\n\t\tc2.453,4.6,8.574,12.316,22.015,12.316c2.478,0,5.249-0.246,8.472-0.751c1.672-0.263,3.386-0.554,5.2-0.863\r\n\t\tc7.116-1.212,15.182-2.587,23.451-2.587c10.277,0,18.732,2.188,25.846,6.688c4.531,2.867,8.892,5.972,13.509,9.26\r\n\t\tC202.967,465.481,223.358,480,256,480c32.726,0,53.293-14.582,71.439-27.446c4.576-3.244,8.898-6.309,13.377-9.142\r\n\t\tc7.113-4.5,15.568-6.688,25.846-6.688c8.27,0,16.334,1.375,23.449,2.586c1.814,0.311,3.529,0.602,5.202,0.864\r\n\t\tc3.223,0.505,5.993,0.751,8.472,0.751c13.44,0,19.562-7.715,22.015-12.313c2.781-5.214,3.492-10.746,4.392-17.749\r\n\t\tc0.027-0.208,0.055-0.418,0.082-0.629c1.898-0.441,4.148-0.941,6.455-1.452c4.023-0.892,9.029-2.001,15.206-3.454\r\n\t\tc21.851-5.139,32.611-16.17,37.79-24.518C495.822,370.982,496.021,362.074,495.998,360.389z M208,128c8.836,0,16,10.745,16,24\r\n\t\ts-7.164,24-16,24s-16-10.745-16-24S199.164,128,208,128z M311.615,205.698C296.368,220.725,276.617,229,256,229\r\n\t\tc-20.838,0-40.604-8.29-55.657-23.343c-3.125-3.124-3.124-8.189,0-11.313c3.125-3.124,8.19-3.124,11.313,0\r\n\t\tC223.688,206.374,239.436,213,256,213c16.387,0,32.15-6.64,44.385-18.698c3.148-3.102,8.213-3.063,11.312,0.082\r\n\t\tC314.799,197.531,314.762,202.597,311.615,205.698z M304,176c-8.836,0-16-10.746-16-24s7.164-24,16-24s16,10.746,16,24\r\n\t\tS312.836,176,304,176z"},"children":[{"name":"path","attribs":{"d":"M495.998,360.389l-0.189-14.501l-14.398-1.278c-15.413-1.396-43.8-7.219-54.301-16.9\r\n\t\tc-16.281-15.011-35.688-36.199-35.688-51.893c0-1.014,0-2.546,4.15-5.186c4.985-3.174,12.589-5.584,19.297-7.71\r\n\t\tc5.217-1.654,10.144-3.217,14.394-5.236c9.236-4.39,18.498-15.978,17.471-28.807c-1.215-15.166-14.424-27.046-30.072-27.046\r\n\t\tc-4.021,0-8.068,0.76-12.027,2.259c-8.027,3.041-13.743,4.41-17.705,4.962c0.747-9.319,1.791-20.12,3.211-30.67\r\n\t\tc5.111-37.948-5.281-73.509-29.264-101.042C335.498,48.208,297.376,32,256.283,32H256c-41.093,0-79.215,16.208-104.591,45.341\r\n\t\tc-23.982,27.534-34.375,63.345-29.265,101.292c1.416,10.51,2.46,21.231,3.21,30.618c-3.97-0.559-9.686-1.998-17.703-5.034\r\n\t\tc-3.965-1.502-8.017-2.295-12.043-2.295c-15.641-0.001-28.844,11.852-30.057,27.003c-1.027,12.818,8.235,24.393,17.47,28.783\r\n\t\tc4.251,2.02,9.181,3.578,14.4,5.232c6.707,2.125,14.309,4.532,19.293,7.703c4.147,2.639,4.147,4.168,4.147,5.182\r\n\t\tc0,8.66-6.191,24.691-35.688,51.888c-10.499,9.681-39.055,15.501-54.588,16.897l-14.572,1.311L16,360.603\r\n\t\tc0,1.679,0.312,10.546,6.485,20.319c5.246,8.306,16.073,19.283,37.863,24.407c6.179,1.453,11.186,2.563,15.208,3.454\r\n\t\tc2.306,0.512,4.555,1.01,6.454,1.453c0.027,0.209,0.054,0.417,0.081,0.623c0.9,7.004,1.611,12.535,4.392,17.75\r\n\t\tc2.453,4.6,8.574,12.316,22.015,12.316c2.478,0,5.249-0.246,8.472-0.751c1.672-0.263,3.386-0.554,5.2-0.863\r\n\t\tc7.116-1.212,15.182-2.587,23.451-2.587c10.277,0,18.732,2.188,25.846,6.688c4.531,2.867,8.892,5.972,13.509,9.26\r\n\t\tC202.967,465.481,223.358,480,256,480c32.726,0,53.293-14.582,71.439-27.446c4.576-3.244,8.898-6.309,13.377-9.142\r\n\t\tc7.113-4.5,15.568-6.688,25.846-6.688c8.27,0,16.334,1.375,23.449,2.586c1.814,0.311,3.529,0.602,5.202,0.864\r\n\t\tc3.223,0.505,5.993,0.751,8.472,0.751c13.44,0,19.562-7.715,22.015-12.313c2.781-5.214,3.492-10.746,4.392-17.749\r\n\t\tc0.027-0.208,0.055-0.418,0.082-0.629c1.898-0.441,4.148-0.941,6.455-1.452c4.023-0.892,9.029-2.001,15.206-3.454\r\n\t\tc21.851-5.139,32.611-16.17,37.79-24.518C495.822,370.982,496.021,362.074,495.998,360.389z M208,128c8.836,0,16,10.745,16,24\r\n\t\ts-7.164,24-16,24s-16-10.745-16-24S199.164,128,208,128z M311.615,205.698C296.368,220.725,276.617,229,256,229\r\n\t\tc-20.838,0-40.604-8.29-55.657-23.343c-3.125-3.124-3.124-8.189,0-11.313c3.125-3.124,8.19-3.124,11.313,0\r\n\t\tC223.688,206.374,239.436,213,256,213c16.387,0,32.15-6.64,44.385-18.698c3.148-3.102,8.213-3.063,11.312,0.082\r\n\t\tC314.799,197.531,314.762,202.597,311.615,205.698z M304,176c-8.836,0-16-10.746-16-24s7.164-24,16-24s16,10.746,16,24\r\n\t\tS312.836,176,304,176z"},"children":[]}]}]}]};exports.socialSnapchat=socialSnapchat;var socialTumblrOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M321.2,396.3c-11.8,0-22.4-2.8-31.5-8.3c-6.9-4.1-11.5-9.6-14-16.4c-2.6-6.9-3.6-22.3-3.6-46.4V224h96v-64h-96V48h-61.9\r\n\tc-2.7,21.5-7.5,44.7-14.5,58.6s-14,25.8-25.6,35.7c-11.6,9.9-25.6,17.9-41.9,23.3V224h48v140.4c0,19,2,33.5,5.9,43.5\r\n\tc4,10,11.1,19.5,21.4,28.4c10.3,8.9,22.8,15.7,37.3,20.5c14.6,4.8,31.4,7.2,50.4,7.2c16.7,0,30.3-1.7,44.7-5.1\r\n\tc14.4-3.4,30.5-9.3,48.2-17.6v-65.6C363.2,389.4,342.3,396.3,321.2,396.3z M368,431c-13.1,5.7-25.1,9.9-35.9,12.4\r\n\tc-13.1,3.1-25.6,4.6-41.1,4.6c-17.2,0-32.5-2.2-45.4-6.4c-12.5-4.1-23.2-10-31.9-17.5c-8.3-7.2-14-14.6-17-22.2\r\n\tc-2.2-5.5-4.8-16.6-4.8-37.6V208H144v-31.3c13.4-5.6,25.5-13,36.3-22.2c13.2-11.2,21.6-24.9,29.6-40.7c7.1-14,11.6-34,14.1-49.8h32\r\n\tv112h96v32h-96v117.1c0,34.6,2.4,46,4.6,52c3.8,10.3,10.8,18.6,21,24.6c11.7,7,25,10.5,39.7,10.5c15.7,0,31.3-3.3,46.7-9.8V431z"},"children":[]}]};exports.socialTumblrOutline=socialTumblrOutline;var socialTumblr={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M321.2,396.3c-11.8,0-22.4-2.8-31.5-8.3c-6.9-4.1-11.5-9.6-14-16.4c-2.6-6.9-3.6-22.3-3.6-46.4V224h96v-64h-96V48h-61.9\r\n\tc-2.7,21.5-7.5,44.7-14.5,58.6c-7,13.9-14,25.8-25.6,35.7c-11.6,9.9-25.6,17.9-41.9,23.3V224h48v140.4c0,19,2,33.5,5.9,43.5\r\n\tc4,10,11.1,19.5,21.4,28.4c10.3,8.9,22.8,15.7,37.3,20.5c14.6,4.8,31.4,7.2,50.4,7.2c16.7,0,30.3-1.7,44.7-5.1\r\n\tc14.4-3.4,30.5-9.3,48.2-17.6v-65.6C363.2,389.4,342.3,396.3,321.2,396.3z"},"children":[]}]};exports.socialTumblr=socialTumblr;var socialTux={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill":"#010101","d":"M254.7,101.3c-0.6,1-1.2,2-1.7,3.1c1.8-3.5,4.3-6.5,7.4-8.7C258.3,97,256.3,98.8,254.7,101.3\r\n\t\tC254.1,102.3,256.3,98.8,254.7,101.3z"},"children":[{"name":"path","attribs":{"fill":"#010101","d":"M254.7,101.3c-0.6,1-1.2,2-1.7,3.1c1.8-3.5,4.3-6.5,7.4-8.7C258.3,97,256.3,98.8,254.7,101.3\r\n\t\tC254.1,102.3,256.3,98.8,254.7,101.3z"},"children":[]}]},{"name":"path","attribs":{"fill":"#010101","d":"M426.3,396c-6.7-4-13.2-11-12-18.8c2.3-15.3,2.5-21.5-0.2-25.8c-1.899-3.2-5.5-5-8.6-5.801\r\n\t\tc2-2.5,3.1-5.399,3.8-10.899c1.842-14.168-3.239-30.67-6.61-44.243c-4.445-17.9-10.319-34.014-20.432-49.522\r\n\t\tc-16.489-25.288-37.253-46.804-51.857-73.435c-9.7-29-4.301-47.1-4.801-66.2C324.7,64,298.7,32,261,32h-14c-37.5,0-58,26.9-58,60\r\n\t\tc0.697,16.666,1.352,33.333,2,50c0.769,19.756,1.98,37.667-8,55.3c-7.033,12.488-19.571,22.43-28.592,33.478\r\n\t\tc-9.525,11.665-13.06,23.669-17.859,37.619c-5.987,17.401-21.275,30.906-24.886,48.929c-1.658,8.271,2.726,17.857-0.83,24.693\r\n\t\tc-3.698,7.109-0.813,14.469-2.833,21.682c-3.505,11.729-20.731,10.729-30.215,11.508c-17.602,1.443-11.051,17.988-7.843,29.701\r\n\t\tc5.598,20.435-19.54,42.078,11.032,50.471c13.989,3.84,28.586,5.13,42.727,8.32c13.981,3.154,26.917,8.612,40.396,13.262\r\n\t\tc10.469,3.611,20.262,4.146,30.323-1.232c10.982-5.87,18.947-15.083,31.691-17c24.707-3.716,54.829-4.169,79.373,0.63\r\n\t\tc7.507,1.468,10.075,6.525,14.905,11.766c8.145,8.838,21.514,10.125,32.794,8.22c11.89-2.01,20.846-9.466,29.686-17.112\r\n\t\tc12.526-10.835,26.137-17.996,40.791-25.547c7.439-3.833,22.178-9.388,24.159-18.903C450.151,406.573,433.642,400.383,426.3,396z\r\n\t\t M202,451.3c-1.3,13-13.9,20.3-25.4,19.3c-19.502-1.649-37.86-12.237-57.164-15.75c-9.393-1.709-47.351-3.173-46.943-17.079\r\n\t\tc0.215-7.361,5.751-11.666,7.567-18.415c2.811-10.449-5.753-19.932-6.32-30.16c-0.447-8.081,10.73-7.607,16.288-8.053\r\n\t\tc8.761-0.702,19.157-2.012,23.572-11.043c1.6-3.3-0.5-15,1.9-21.8c3.527-10.155,15.489-8.949,23.3-4.899\r\n\t\tc17.762,9.067,28.943,35.546,38.533,51.821C187.058,411.728,204.045,430.843,202,451.3z M318.3,385.7\r\n\t\tc2.289,11.787,4.224,24.387,1.7,36.3c-2.016,9.516-8.562,15.614-12.7,24c-2.2-6.8,11.3-16.7,9.8-33.7\r\n\t\tc-0.042-0.475-0.947-10.882-1.036-10.834c-1.979,1.082-3.825,5.075-5.304,6.73c-4.809,5.383-10.771,9.658-16.729,13.677\r\n\t\tc-13.797,9.306-29.221,15.058-45.83,16.627c-21,2-38-10.5-38-10.5c2.517,8.305,8.992,21,1.1,28.3\r\n\t\tc1.743-15.648-4.876-28.06-11.6-41.7c46.374-24.639-41.363-64.397-53-79.8c-10.476-13.896-5.553-31.83-2.7-43.5\r\n\t\tc-3.443,13.775-3.959,41.956,14,46.8c7.922,2.169,5.605-37.071,5.984-41.463c1.58-18.312,7.721-35.997,18.343-51.015\r\n\t\tc3.399-4.806,1.863-9.533,2.673-15.322c1.693-10.668,7.295-20.547,13.488-29.225c5.169-7.243,1.735-12.618,3.014-21.055\r\n\t\tc0.727-4.795,5.118,3.193,5.798,4.279c4,6.5,16.7,22.7,24.7,22c13.277-1.161,24.692-15.938,36.015-22.046\r\n\t\tc3.591-1.937,14.41-5.242,15.866-9.632c1.768-5.33-12.666-0.161-14.114,0.583c-10.782,5.535-31.018,21.448-43.867,15.295\r\n\t\tc-8.762-4.195-10.691-14.994-17.2-20.5c15.4,13.6,21.5,10.5,27.6,9.1c9.665-2.182,18.797-6.486,27.8-10.5\r\n\t\tc4.217-1.88,20.107-4.041,22.301-8.7c2.745-5.834-5.05-6.726-8.068-3.58c-6.251,6.515-15.853,8.981-24.097,11.787\r\n\t\tc-18.885,6.427-37.644,9.131-51.835-8.607c-8.354-10.212,15.558-22.504,22.2-28.8c0,0,1-7.2-0.6-12.7c-1.9-6.5-7.8-9.3-11.9-8.1\r\n\t\tc-4.1,1.1-8,5.5-6.8,14.8c1,8.3,7,11,7,11s-2.7,3.5-5.2,4.7c0,0-0.8-0.3-3.5-6.3c-2.7-6-6.6-19.5-0.3-31.1\r\n\t\tc6.3-11.6,19.6-5.2,23.8,3.8c3.9,8.3,2.4,22.7,2.4,22.7c3.358-0.843,6.835-1.3,10.3-1.3c4.242,0,6.814,4.563,10.6,4.8\r\n\t\tc-0.635,0-0.564-18.124-0.233-20.078c1.099-6.49,4.112-13.619,9.933-17.222c16.087-11.491,34.6,3.916,34.6,21.2\r\n\t\tc0.024,4.486-0.137,9.215-1.199,13.6c-0.659,2.637-1.582,8.469-5.114,9.177c-1.145,0.23-10.683-0.431-7.985-3.277\r\n\t\tc12.807-12.812-1.822-38.207-17.4-24.5c-5.601,4.199-5.483,13.833-4.801,20c1.098,9.141,20.51,11.541,26.852,13.78\r\n\t\tc8.224,2.903,7.943,9.626,6.679,17.116c-1.9,11.26-2.815,18.792,4.381,28.214c7.344,9.616,12.929,20.086,15.915,31.878\r\n\t\tc1.483,5.859,1.665,10.843,5.621,15.57c5.983,7.151,10.619,14.805,13.291,23.817c5.225,17.621,6.513,35.422,6.162,53.625\r\n\t\tc-0.5,8.199-2.1,15,8.3,9.699c4-2,6.5-2.899,11-3.699c3.101-6.301,4.4-18.301,4.5-24.301c0.2-13.5-0.3-41.5-27.699-71.5\r\n\t\tc0,0,28.5,21.7,33,62c2.5,22.301-2,34.4-2,34.4c5.3,1.3,10.8,5.3,13.6,9.8c-0.133-0.22,1.038,1.748,1.179,1.864\r\n\t\tc-9.811-8.171-31.708-12.859-39.679,0.236c-2,3.3-3.1,7.6-3.2,11.699c-7.1-1.199-12.399,0-16.8,4.9\r\n\t\tC313.5,358.1,316.3,375.3,318.3,385.7C320.3,396,316.3,375.3,318.3,385.7z M220.6,124.9c-0.2-4.9-2.1-9-4.7-10.8\r\n\t\tc0.3-0.3,0.8-0.7,1.7-0.4c1.4,0.4,3.5,2.7,4.3,6.3c0.7,2.9,0.4,7.7-1.4,7.7C220.498,126.766,220.531,125.833,220.6,124.9\r\n\t\tC220.4,120,220.6,125.8,220.6,124.9z M275.3,112.9c0.4-0.3,1.101-0.6,2.3-0.3c1.801,0.4,4.4,2.8,5.301,6.2\r\n\t\tc0.699,2.8,0.1,7.4-2.2,7.3c-0.005-0.903,0.062-1.803,0.2-2.7C280.8,118.8,278.6,114.8,275.3,112.9\r\n\t\tC275.7,112.6,278.6,114.8,275.3,112.9z M412.4,432.9c-17.504,7.553-31.304,19.968-47.117,30.19\r\n\t\tc-13.824,8.937-38.156,8.313-40.022-12.879c-1.565-17.776,4.184-35.288,1.84-53.357c-1.587-12.239-8.534-28.906-2.301-40.854\r\n\t\tc2.7-5.1,8.101-5.5,12.5-4c3.193,13.267,13.932,23.6,28,23.6c17.031,0,23.542-14.008,34-24.5c3.4,0.2,7.4,1.101,8.8,4.801\r\n\t\tc2.301,5.8-1.899,17.5-1.8,22.3c0.3,15.7,9,19.2,26.4,29C448,416,436.9,422.3,412.4,432.9C388.3,443.3,436.9,422.3,412.4,432.9z"},"children":[{"name":"path","attribs":{"fill":"#010101","d":"M426.3,396c-6.7-4-13.2-11-12-18.8c2.3-15.3,2.5-21.5-0.2-25.8c-1.899-3.2-5.5-5-8.6-5.801\r\n\t\tc2-2.5,3.1-5.399,3.8-10.899c1.842-14.168-3.239-30.67-6.61-44.243c-4.445-17.9-10.319-34.014-20.432-49.522\r\n\t\tc-16.489-25.288-37.253-46.804-51.857-73.435c-9.7-29-4.301-47.1-4.801-66.2C324.7,64,298.7,32,261,32h-14c-37.5,0-58,26.9-58,60\r\n\t\tc0.697,16.666,1.352,33.333,2,50c0.769,19.756,1.98,37.667-8,55.3c-7.033,12.488-19.571,22.43-28.592,33.478\r\n\t\tc-9.525,11.665-13.06,23.669-17.859,37.619c-5.987,17.401-21.275,30.906-24.886,48.929c-1.658,8.271,2.726,17.857-0.83,24.693\r\n\t\tc-3.698,7.109-0.813,14.469-2.833,21.682c-3.505,11.729-20.731,10.729-30.215,11.508c-17.602,1.443-11.051,17.988-7.843,29.701\r\n\t\tc5.598,20.435-19.54,42.078,11.032,50.471c13.989,3.84,28.586,5.13,42.727,8.32c13.981,3.154,26.917,8.612,40.396,13.262\r\n\t\tc10.469,3.611,20.262,4.146,30.323-1.232c10.982-5.87,18.947-15.083,31.691-17c24.707-3.716,54.829-4.169,79.373,0.63\r\n\t\tc7.507,1.468,10.075,6.525,14.905,11.766c8.145,8.838,21.514,10.125,32.794,8.22c11.89-2.01,20.846-9.466,29.686-17.112\r\n\t\tc12.526-10.835,26.137-17.996,40.791-25.547c7.439-3.833,22.178-9.388,24.159-18.903C450.151,406.573,433.642,400.383,426.3,396z\r\n\t\t M202,451.3c-1.3,13-13.9,20.3-25.4,19.3c-19.502-1.649-37.86-12.237-57.164-15.75c-9.393-1.709-47.351-3.173-46.943-17.079\r\n\t\tc0.215-7.361,5.751-11.666,7.567-18.415c2.811-10.449-5.753-19.932-6.32-30.16c-0.447-8.081,10.73-7.607,16.288-8.053\r\n\t\tc8.761-0.702,19.157-2.012,23.572-11.043c1.6-3.3-0.5-15,1.9-21.8c3.527-10.155,15.489-8.949,23.3-4.899\r\n\t\tc17.762,9.067,28.943,35.546,38.533,51.821C187.058,411.728,204.045,430.843,202,451.3z M318.3,385.7\r\n\t\tc2.289,11.787,4.224,24.387,1.7,36.3c-2.016,9.516-8.562,15.614-12.7,24c-2.2-6.8,11.3-16.7,9.8-33.7\r\n\t\tc-0.042-0.475-0.947-10.882-1.036-10.834c-1.979,1.082-3.825,5.075-5.304,6.73c-4.809,5.383-10.771,9.658-16.729,13.677\r\n\t\tc-13.797,9.306-29.221,15.058-45.83,16.627c-21,2-38-10.5-38-10.5c2.517,8.305,8.992,21,1.1,28.3\r\n\t\tc1.743-15.648-4.876-28.06-11.6-41.7c46.374-24.639-41.363-64.397-53-79.8c-10.476-13.896-5.553-31.83-2.7-43.5\r\n\t\tc-3.443,13.775-3.959,41.956,14,46.8c7.922,2.169,5.605-37.071,5.984-41.463c1.58-18.312,7.721-35.997,18.343-51.015\r\n\t\tc3.399-4.806,1.863-9.533,2.673-15.322c1.693-10.668,7.295-20.547,13.488-29.225c5.169-7.243,1.735-12.618,3.014-21.055\r\n\t\tc0.727-4.795,5.118,3.193,5.798,4.279c4,6.5,16.7,22.7,24.7,22c13.277-1.161,24.692-15.938,36.015-22.046\r\n\t\tc3.591-1.937,14.41-5.242,15.866-9.632c1.768-5.33-12.666-0.161-14.114,0.583c-10.782,5.535-31.018,21.448-43.867,15.295\r\n\t\tc-8.762-4.195-10.691-14.994-17.2-20.5c15.4,13.6,21.5,10.5,27.6,9.1c9.665-2.182,18.797-6.486,27.8-10.5\r\n\t\tc4.217-1.88,20.107-4.041,22.301-8.7c2.745-5.834-5.05-6.726-8.068-3.58c-6.251,6.515-15.853,8.981-24.097,11.787\r\n\t\tc-18.885,6.427-37.644,9.131-51.835-8.607c-8.354-10.212,15.558-22.504,22.2-28.8c0,0,1-7.2-0.6-12.7c-1.9-6.5-7.8-9.3-11.9-8.1\r\n\t\tc-4.1,1.1-8,5.5-6.8,14.8c1,8.3,7,11,7,11s-2.7,3.5-5.2,4.7c0,0-0.8-0.3-3.5-6.3c-2.7-6-6.6-19.5-0.3-31.1\r\n\t\tc6.3-11.6,19.6-5.2,23.8,3.8c3.9,8.3,2.4,22.7,2.4,22.7c3.358-0.843,6.835-1.3,10.3-1.3c4.242,0,6.814,4.563,10.6,4.8\r\n\t\tc-0.635,0-0.564-18.124-0.233-20.078c1.099-6.49,4.112-13.619,9.933-17.222c16.087-11.491,34.6,3.916,34.6,21.2\r\n\t\tc0.024,4.486-0.137,9.215-1.199,13.6c-0.659,2.637-1.582,8.469-5.114,9.177c-1.145,0.23-10.683-0.431-7.985-3.277\r\n\t\tc12.807-12.812-1.822-38.207-17.4-24.5c-5.601,4.199-5.483,13.833-4.801,20c1.098,9.141,20.51,11.541,26.852,13.78\r\n\t\tc8.224,2.903,7.943,9.626,6.679,17.116c-1.9,11.26-2.815,18.792,4.381,28.214c7.344,9.616,12.929,20.086,15.915,31.878\r\n\t\tc1.483,5.859,1.665,10.843,5.621,15.57c5.983,7.151,10.619,14.805,13.291,23.817c5.225,17.621,6.513,35.422,6.162,53.625\r\n\t\tc-0.5,8.199-2.1,15,8.3,9.699c4-2,6.5-2.899,11-3.699c3.101-6.301,4.4-18.301,4.5-24.301c0.2-13.5-0.3-41.5-27.699-71.5\r\n\t\tc0,0,28.5,21.7,33,62c2.5,22.301-2,34.4-2,34.4c5.3,1.3,10.8,5.3,13.6,9.8c-0.133-0.22,1.038,1.748,1.179,1.864\r\n\t\tc-9.811-8.171-31.708-12.859-39.679,0.236c-2,3.3-3.1,7.6-3.2,11.699c-7.1-1.199-12.399,0-16.8,4.9\r\n\t\tC313.5,358.1,316.3,375.3,318.3,385.7C320.3,396,316.3,375.3,318.3,385.7z M220.6,124.9c-0.2-4.9-2.1-9-4.7-10.8\r\n\t\tc0.3-0.3,0.8-0.7,1.7-0.4c1.4,0.4,3.5,2.7,4.3,6.3c0.7,2.9,0.4,7.7-1.4,7.7C220.498,126.766,220.531,125.833,220.6,124.9\r\n\t\tC220.4,120,220.6,125.8,220.6,124.9z M275.3,112.9c0.4-0.3,1.101-0.6,2.3-0.3c1.801,0.4,4.4,2.8,5.301,6.2\r\n\t\tc0.699,2.8,0.1,7.4-2.2,7.3c-0.005-0.903,0.062-1.803,0.2-2.7C280.8,118.8,278.6,114.8,275.3,112.9\r\n\t\tC275.7,112.6,278.6,114.8,275.3,112.9z M412.4,432.9c-17.504,7.553-31.304,19.968-47.117,30.19\r\n\t\tc-13.824,8.937-38.156,8.313-40.022-12.879c-1.565-17.776,4.184-35.288,1.84-53.357c-1.587-12.239-8.534-28.906-2.301-40.854\r\n\t\tc2.7-5.1,8.101-5.5,12.5-4c3.193,13.267,13.932,23.6,28,23.6c17.031,0,23.542-14.008,34-24.5c3.4,0.2,7.4,1.101,8.8,4.801\r\n\t\tc2.301,5.8-1.899,17.5-1.8,22.3c0.3,15.7,9,19.2,26.4,29C448,416,436.9,422.3,412.4,432.9C388.3,443.3,436.9,422.3,412.4,432.9z"},"children":[]}]}]}]};exports.socialTux=socialTux;var socialTwitchOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M80,32l-32,80v304h96v64h64l64-64h80l112-112V32H80z M416,288l-64,64h-96.001L192,416v-64h-80V80h304V288z"},"children":[{"name":"path","attribs":{"d":"M80,32l-32,80v304h96v64h64l64-64h80l112-112V32H80z M416,288l-64,64h-96.001L192,416v-64h-80V80h304V288z"},"children":[]}]}]}]},{"name":"rect","attribs":{"x":"320","y":"143","width":"48","height":"129"},"children":[{"name":"rect","attribs":{"x":"320","y":"143","width":"48","height":"129"},"children":[]}]},{"name":"rect","attribs":{"x":"208","y":"143","width":"48","height":"129"},"children":[{"name":"rect","attribs":{"x":"208","y":"143","width":"48","height":"129"},"children":[]}]}]}]};exports.socialTwitchOutline=socialTwitchOutline;var socialTwitch={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M80,32l-32,80v304h96v64h64l64-64h80l112-112V32H80z M256,272h-48V143h48V272z M368,272h-48V143h48V272z"},"children":[{"name":"path","attribs":{"d":"M80,32l-32,80v304h96v64h64l64-64h80l112-112V32H80z M256,272h-48V143h48V272z M368,272h-48V143h48V272z"},"children":[]}]}]}]};exports.socialTwitch=socialTwitch;var socialTwitterOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M492,109.5c-17.4,7.7-36,12.9-55.6,15.3c20-12,35.4-31,42.6-53.6c-18.7,11.1-39.4,19.2-61.5,23.5\r\n\tC399.8,75.8,374.5,64,346.8,64c-53.5,0-96.8,43.4-96.8,96.9c0,7.6,0.8,15,2.5,22.1C172,179,100.5,140.4,52.8,81.7\r\n\tc-8.3,14.3-13.1,31-13.1,48.7c0,33.6,17.1,63.3,43.1,80.7C67,210.7,52,206.3,39,199c0,0.4,0,0.8,0,1.2c0,47,33.4,86.1,77.7,95\r\n\tc-8.1,2.2-16.7,3.4-25.5,3.4c-6.2,0-12.3-0.6-18.2-1.8c12.3,38.5,48.1,66.5,90.5,67.3c-33.1,26-74.9,41.5-120.3,41.5\r\n\tc-7.8,0-15.5-0.5-23.1-1.4C62.8,432,113.7,448,168.3,448C346.5,448,444,300.3,444,172.2c0-4.2-0.1-8.4-0.3-12.5\r\n\tC462.5,146,479,129,492,109.5z M434.2,146.7l-7,5.1l0.4,8.6c0.2,3.8,0.3,7.8,0.3,11.8c0,30.2-5.9,61.8-17,91.5\r\n\tc-11.7,31.2-28.5,59.4-50,83.8c-23,26.1-50.2,46.5-81.1,60.8c-33.8,15.7-71.3,23.6-111.5,23.6c-28.9,0-57.4-4.8-84.5-14.2\r\n\tc9.9-1.9,19.6-4.6,29.1-7.9c21.7-7.6,41.9-18.7,60.1-33l35.3-27.7l-44.9-0.8c-26.1-0.5-49.7-13.4-64.3-33.9\r\n\tc7.3-0.5,14.5-1.8,21.5-3.7l60.7-20.2l-61.7-10.9c-29.6-5.9-52.8-27.9-61.3-55.8c7.8,2,15.4,2.8,23.9,3.3c0,0,31.8,1.4,55.8-0.1\r\n\tc-13-6.2-46.4-29.2-46.4-29.2c-22.5-15.1-36-40.2-36-67.4c0-6.4,0.8-12.8,2.2-19c21.9,22.4,47,41.1,75.1,55.5\r\n\tc37,19.1,76.9,29.8,118.6,31.9l21.2,1.1l-4.8-20.7c-1.4-5.9-2.1-12.1-2.1-18.5c0-44.4,36.3-80.7,80.9-80.7c22.3,0,43.8,9.3,59,25.6\r\n\tl6.1,6.5l8.7-1.7c4.5-0.9,8.9-1.9,13.3-3.1c-1,1.4-5.7,6.1-11,10.8c-4.5,4-17.8,16.5-17.8,16.5s13,4.1,21.1,5\r\n\tc8.1,0.9,17.4-0.6,18.9-0.8C442.2,141.1,437.2,144.6,434.2,146.7z"},"children":[]}]};exports.socialTwitterOutline=socialTwitterOutline;var socialTwitter={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M492,109.5c-17.4,7.7-36,12.9-55.6,15.3c20-12,35.4-31,42.6-53.6c-18.7,11.1-39.4,19.2-61.5,23.5\r\n\tC399.8,75.8,374.6,64,346.8,64c-53.5,0-96.8,43.4-96.8,96.9c0,7.6,0.8,15,2.5,22.1c-80.5-4-151.9-42.6-199.6-101.3\r\n\tc-8.3,14.3-13.1,31-13.1,48.7c0,33.6,17.2,63.3,43.2,80.7C67,210.7,52,206.3,39,199c0,0.4,0,0.8,0,1.2c0,47,33.4,86.1,77.7,95\r\n\tc-8.1,2.2-16.7,3.4-25.5,3.4c-6.2,0-12.3-0.6-18.2-1.8c12.3,38.5,48.1,66.5,90.5,67.3c-33.1,26-74.9,41.5-120.3,41.5\r\n\tc-7.8,0-15.5-0.5-23.1-1.4C62.8,432,113.7,448,168.3,448C346.6,448,444,300.3,444,172.2c0-4.2-0.1-8.4-0.3-12.5\r\n\tC462.6,146,479,129,492,109.5z"},"children":[]}]};exports.socialTwitter=socialTwitter;var socialUsdOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M220.746,102.625c-7.788,1.683-17.44,4.813-24.641,8.529c-9.018,4.649-16.411,10.965-22.604,19.295\r\n\t\tc-6.706,9.002-10.105,19.989-10.105,32.657c0,17.916,6.197,32.288,18.405,42.702c9.334,7.983,21.504,14.431,36.687,19.165\r\n\t\tL240,230.667V100.244C240,100.244,231.766,100.244,220.746,102.625z M224,209.699c-12-3.743-23.912-9.088-32.051-16.048\r\n\t\tc-8.621-7.355-12.673-17.534-12.673-30.545c0-9.241,2.414-16.94,7.004-23.102c4.58-6.161,9.912-11.038,16.88-14.631\r\n\t\tc6.18-3.189,13.84-5.565,20.84-7.138V209.699z"},"children":[{"name":"path","attribs":{"d":"M220.746,102.625c-7.788,1.683-17.44,4.813-24.641,8.529c-9.018,4.649-16.411,10.965-22.604,19.295\r\n\t\tc-6.706,9.002-10.105,19.989-10.105,32.657c0,17.916,6.197,32.288,18.405,42.702c9.334,7.983,21.504,14.431,36.687,19.165\r\n\t\tL240,230.667V100.244C240,100.244,231.766,100.244,220.746,102.625z M224,209.699c-12-3.743-23.912-9.088-32.051-16.048\r\n\t\tc-8.621-7.355-12.673-17.534-12.673-30.545c0-9.241,2.414-16.94,7.004-23.102c4.58-6.161,9.912-11.038,16.88-14.631\r\n\t\tc6.18-3.189,13.84-5.565,20.84-7.138V209.699z"},"children":[]}]},{"name":"path","attribs":{"d":"M348.217,296.725c-8.432-8.289-18.002-14.296-28.414-17.84c-8.949-3.075-17.441-5.848-27.465-8.477L272,265.145v145.188\r\n\t\tc0,0,12.051-0.642,18.371-1.476s10.703-1.971,16.67-3.798c12.727-3.89,23.309-9.02,31.32-15.25\r\n\t\tc8.678-6.747,15.145-14.785,19.164-23.907c3.775-8.595,5.706-17.581,5.706-26.711C363.231,320.822,358.188,306.536,348.217,296.725\r\n\t\tz M342.902,359.471c-2.939,6.673-7.699,12.576-14.303,17.711c-6.602,5.133-15.744,9.328-26.377,12.577\r\n\t\tc-4.5,1.378-8.223,2.444-14.223,3.236v-107.11c10,2.624,18.18,5.332,26.326,8.131c8.062,2.744,15.748,7.443,22.537,14.116\r\n\t\tc6.785,6.676,10.309,17.03,10.309,31.06C347.172,346.042,345.834,352.797,342.902,359.471z"},"children":[{"name":"path","attribs":{"d":"M348.217,296.725c-8.432-8.289-18.002-14.296-28.414-17.84c-8.949-3.075-17.441-5.848-27.465-8.477L272,265.145v145.188\r\n\t\tc0,0,12.051-0.642,18.371-1.476s10.703-1.971,16.67-3.798c12.727-3.89,23.309-9.02,31.32-15.25\r\n\t\tc8.678-6.747,15.145-14.785,19.164-23.907c3.775-8.595,5.706-17.581,5.706-26.711C363.231,320.822,358.188,306.536,348.217,296.725\r\n\t\tz M342.902,359.471c-2.939,6.673-7.699,12.576-14.303,17.711c-6.602,5.133-15.744,9.328-26.377,12.577\r\n\t\tc-4.5,1.378-8.223,2.444-14.223,3.236v-107.11c10,2.624,18.18,5.332,26.326,8.131c8.062,2.744,15.748,7.443,22.537,14.116\r\n\t\tc6.785,6.676,10.309,17.03,10.309,31.06C347.172,346.042,345.834,352.797,342.902,359.471z"},"children":[]}]},{"name":"path","attribs":{"d":"M411.387,303.256c-3.119-9.577-7.891-18.561-14.301-26.952c-6.422-8.382-14.396-15.826-23.93-22.331\r\n\t\tc-9.539-6.498-20.721-11.63-33.553-15.4c-5.143-1.363-14.189-3.506-26.104-6.418c-8.516-2.074-16.5-4.2-25.5-6.367V120.065\r\n\t\tc9,2.396,15.252,6.202,21.926,10.43c14.279,9.04,23.232,24.505,25.855,45.505h69.174c-0.654-18-4.65-32.76-11.996-46.02\r\n\t\tc-8.07-14.543-18.977-27.024-32.73-36.956c-13.75-9.922-30.225-17.49-48.377-22.455C303.967,68.416,297,66.605,288,65.386V32h-64\r\n\t\tv33.167c-7,1.044-15.148,2.445-22.426,4.25c-17.242,4.283-32.388,10.868-45.951,19.764c-13.571,8.905-24.352,20.112-32.604,33.627\r\n\t\tc-8.251,13.523-12.312,29.52-12.312,48c0,9.585,1.407,18.993,4.157,28.235c2.752,9.241,7.442,17.967,14.042,26.181\r\n\t\tc6.603,8.214,15.495,15.658,26.687,22.332c11.183,6.672,24.705,12.064,41.576,16.171c9.287,2.345,18.83,4.534,26.83,6.576v119.586\r\n\t\tc-11-2.919-21.889-7.399-30.678-13.479c-9.17-6.327-16.066-13.953-21.198-23.884c-4.779-9.229-7.073-20.526-7.407-32.526H96\r\n\t\tc0.695,21,5.25,39.494,13.672,55.371c8.799,16.604,20.533,29.96,35.204,40.562c14.662,10.613,31.393,18.356,51.198,23.491\r\n\t\tc8.885,2.304,18.926,3.96,27.926,5.23V480h64v-34.54c10-1.069,18.957-2.69,28.527-4.879c18.701-4.273,35.645-11.036,50.316-20.276\r\n\t\tc14.662-9.24,26.621-21.128,35.611-35.681c8.98-14.541,13.545-32.085,13.545-52.619C416,322.427,414.498,312.841,411.387,303.256z\r\n\t\t M388.904,376.218c-7.623,12.34-17.873,22.619-30.457,30.55c-13.035,8.21-28.248,14.339-45.219,18.217\r\n\t\tc-9.059,2.071-17.285,3.564-26.654,4.566L272,431.08V464h-32v-33.244l-13.508-1.943c-9.256-1.307-18.671-2.968-26.271-4.938\r\n\t\tc-17.865-4.633-32.876-11.51-46.031-21.032c-12.845-9.283-22.77-20.551-30.408-34.967c-5.004-9.437-8.418-20.876-10.268-31.876\r\n\t\th36.714c1.529,8,4.162,16.837,7.804,23.869c6.324,12.239,14.979,21.914,26.441,29.823c10.145,7.017,23.81,12.64,35.676,15.724\r\n\t\tS240,408.667,240,408.667V257.874l-11.786-3.074c-4.952-1.263-11.074-2.583-16.558-3.96c-3.395-0.854-6.814-1.729-10.37-2.626\r\n\t\tl-0.033-0.017l-0.051-0.017c-14.952-3.64-27.533-8.472-37.411-14.365c-9.487-5.657-17.021-11.92-22.399-18.611\r\n\t\tc-5.271-6.56-9.029-13.533-11.17-20.722c-2.307-7.755-3.476-15.721-3.476-23.675c0-15.66,3.274-28.636,10.002-39.665\r\n\t\tc7.097-11.622,16.187-20.973,27.786-28.585c12.201-8.003,25.666-13.764,41.155-17.611c6.334-1.571,12.865-2.901,19.926-3.954\r\n\t\tL240,78.958V48h32v31.363l13.127,1.877c7.371,0.999,14.236,2.404,22.637,4.699c16.389,4.482,30.91,11.189,43.023,19.929\r\n\t\tc11.691,8.443,21.182,19.333,28.133,31.862c3.805,6.865,6.504,14.27,8.137,22.27h-38.119c-5.078-19-15.352-33.637-30.172-43.021\r\n\t\tc-9.254-5.861-17.561-9.215-27.373-12.251C281.766,101.75,272,101.25,272,101.25v137.142l12.529,2.951\r\n\t\tc7.631,1.837,14.184,3.644,21.453,5.415l3.92,0.938l0.812,0.19c11.373,2.78,19.651,4.799,24.558,6.096\r\n\t\tc11.084,3.275,20.8,7.721,28.851,13.204c8.078,5.513,14.895,11.853,20.236,18.828c5.291,6.925,9.264,14.393,11.801,22.179\r\n\t\tc2.562,7.898,3.863,15.91,3.863,23.812C400.023,349.395,396.283,364.271,388.904,376.218z"},"children":[{"name":"path","attribs":{"d":"M411.387,303.256c-3.119-9.577-7.891-18.561-14.301-26.952c-6.422-8.382-14.396-15.826-23.93-22.331\r\n\t\tc-9.539-6.498-20.721-11.63-33.553-15.4c-5.143-1.363-14.189-3.506-26.104-6.418c-8.516-2.074-16.5-4.2-25.5-6.367V120.065\r\n\t\tc9,2.396,15.252,6.202,21.926,10.43c14.279,9.04,23.232,24.505,25.855,45.505h69.174c-0.654-18-4.65-32.76-11.996-46.02\r\n\t\tc-8.07-14.543-18.977-27.024-32.73-36.956c-13.75-9.922-30.225-17.49-48.377-22.455C303.967,68.416,297,66.605,288,65.386V32h-64\r\n\t\tv33.167c-7,1.044-15.148,2.445-22.426,4.25c-17.242,4.283-32.388,10.868-45.951,19.764c-13.571,8.905-24.352,20.112-32.604,33.627\r\n\t\tc-8.251,13.523-12.312,29.52-12.312,48c0,9.585,1.407,18.993,4.157,28.235c2.752,9.241,7.442,17.967,14.042,26.181\r\n\t\tc6.603,8.214,15.495,15.658,26.687,22.332c11.183,6.672,24.705,12.064,41.576,16.171c9.287,2.345,18.83,4.534,26.83,6.576v119.586\r\n\t\tc-11-2.919-21.889-7.399-30.678-13.479c-9.17-6.327-16.066-13.953-21.198-23.884c-4.779-9.229-7.073-20.526-7.407-32.526H96\r\n\t\tc0.695,21,5.25,39.494,13.672,55.371c8.799,16.604,20.533,29.96,35.204,40.562c14.662,10.613,31.393,18.356,51.198,23.491\r\n\t\tc8.885,2.304,18.926,3.96,27.926,5.23V480h64v-34.54c10-1.069,18.957-2.69,28.527-4.879c18.701-4.273,35.645-11.036,50.316-20.276\r\n\t\tc14.662-9.24,26.621-21.128,35.611-35.681c8.98-14.541,13.545-32.085,13.545-52.619C416,322.427,414.498,312.841,411.387,303.256z\r\n\t\t M388.904,376.218c-7.623,12.34-17.873,22.619-30.457,30.55c-13.035,8.21-28.248,14.339-45.219,18.217\r\n\t\tc-9.059,2.071-17.285,3.564-26.654,4.566L272,431.08V464h-32v-33.244l-13.508-1.943c-9.256-1.307-18.671-2.968-26.271-4.938\r\n\t\tc-17.865-4.633-32.876-11.51-46.031-21.032c-12.845-9.283-22.77-20.551-30.408-34.967c-5.004-9.437-8.418-20.876-10.268-31.876\r\n\t\th36.714c1.529,8,4.162,16.837,7.804,23.869c6.324,12.239,14.979,21.914,26.441,29.823c10.145,7.017,23.81,12.64,35.676,15.724\r\n\t\tS240,408.667,240,408.667V257.874l-11.786-3.074c-4.952-1.263-11.074-2.583-16.558-3.96c-3.395-0.854-6.814-1.729-10.37-2.626\r\n\t\tl-0.033-0.017l-0.051-0.017c-14.952-3.64-27.533-8.472-37.411-14.365c-9.487-5.657-17.021-11.92-22.399-18.611\r\n\t\tc-5.271-6.56-9.029-13.533-11.17-20.722c-2.307-7.755-3.476-15.721-3.476-23.675c0-15.66,3.274-28.636,10.002-39.665\r\n\t\tc7.097-11.622,16.187-20.973,27.786-28.585c12.201-8.003,25.666-13.764,41.155-17.611c6.334-1.571,12.865-2.901,19.926-3.954\r\n\t\tL240,78.958V48h32v31.363l13.127,1.877c7.371,0.999,14.236,2.404,22.637,4.699c16.389,4.482,30.91,11.189,43.023,19.929\r\n\t\tc11.691,8.443,21.182,19.333,28.133,31.862c3.805,6.865,6.504,14.27,8.137,22.27h-38.119c-5.078-19-15.352-33.637-30.172-43.021\r\n\t\tc-9.254-5.861-17.561-9.215-27.373-12.251C281.766,101.75,272,101.25,272,101.25v137.142l12.529,2.951\r\n\t\tc7.631,1.837,14.184,3.644,21.453,5.415l3.92,0.938l0.812,0.19c11.373,2.78,19.651,4.799,24.558,6.096\r\n\t\tc11.084,3.275,20.8,7.721,28.851,13.204c8.078,5.513,14.895,11.853,20.236,18.828c5.291,6.925,9.264,14.393,11.801,22.179\r\n\t\tc2.562,7.898,3.863,15.91,3.863,23.812C400.023,349.395,396.283,364.271,388.904,376.218z"},"children":[]}]}]}]};exports.socialUsdOutline=socialUsdOutline;var socialUsd={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M411.387,303.256c-3.119-9.577-7.891-18.561-14.301-26.952c-6.422-8.382-14.396-15.826-23.93-22.331\r\n\t\tc-9.539-6.498-20.721-11.63-33.553-15.4c-5.143-1.363-14.189-3.506-26.104-6.418c-8.516-2.074-16.5-4.2-25.5-6.367V120.065\r\n\t\tc9,2.396,15.252,6.202,21.926,10.43c14.279,9.04,23.232,24.505,25.855,45.505h69.174c-0.654-18-4.65-32.76-11.996-46.02\r\n\t\tc-8.07-14.543-18.977-27.024-32.73-36.956c-13.75-9.922-30.225-17.49-48.377-22.455C303.967,68.416,297,66.605,288,65.386V32h-64\r\n\t\tv33.167c-7,1.044-15.148,2.445-22.426,4.25c-17.242,4.283-32.388,10.868-45.951,19.764c-13.571,8.905-24.352,20.112-32.604,33.627\r\n\t\tc-8.251,13.523-12.312,29.52-12.312,48c0,9.585,1.407,18.993,4.157,28.235c2.752,9.241,7.442,17.967,14.042,26.181\r\n\t\tc6.603,8.214,15.495,15.658,26.687,22.332c11.183,6.672,24.705,12.064,41.576,16.171c9.287,2.345,18.83,4.534,26.83,6.576v119.586\r\n\t\tc-11-2.919-21.889-7.399-30.678-13.479c-9.17-6.327-16.066-13.953-21.198-23.884c-4.779-9.229-7.073-20.526-7.407-32.526H96\r\n\t\tc0.695,21,5.25,39.494,13.672,55.371c8.799,16.604,20.533,29.96,35.204,40.562c14.662,10.613,31.393,18.356,51.198,23.491\r\n\t\tc8.885,2.304,18.926,3.96,27.926,5.23V480h64v-34.54c10-1.069,18.957-2.69,28.527-4.879c18.701-4.273,35.645-11.036,50.316-20.276\r\n\t\tc14.662-9.24,26.621-21.128,35.611-35.681c8.98-14.541,13.545-32.085,13.545-52.619C416,322.427,414.498,312.841,411.387,303.256z\r\n\t\t M224,209.699c-12-3.743-23.912-9.088-32.051-16.048c-8.621-7.355-12.673-17.534-12.673-30.545c0-9.241,2.414-16.94,7.004-23.102\r\n\t\tc4.58-6.161,9.912-11.038,16.88-14.631c6.18-3.189,13.84-5.565,20.84-7.138V209.699z M342.902,359.471\r\n\t\tc-2.939,6.673-7.699,12.576-14.303,17.711c-6.602,5.133-15.744,9.328-26.377,12.577c-4.5,1.378-8.223,2.444-14.223,3.236v-107.11\r\n\t\tc10,2.624,18.18,5.332,26.326,8.131c8.062,2.744,15.748,7.443,22.537,14.116c6.785,6.676,10.309,17.03,10.309,31.06\r\n\t\tC347.172,346.042,345.834,352.797,342.902,359.471z"},"children":[{"name":"path","attribs":{"d":"M411.387,303.256c-3.119-9.577-7.891-18.561-14.301-26.952c-6.422-8.382-14.396-15.826-23.93-22.331\r\n\t\tc-9.539-6.498-20.721-11.63-33.553-15.4c-5.143-1.363-14.189-3.506-26.104-6.418c-8.516-2.074-16.5-4.2-25.5-6.367V120.065\r\n\t\tc9,2.396,15.252,6.202,21.926,10.43c14.279,9.04,23.232,24.505,25.855,45.505h69.174c-0.654-18-4.65-32.76-11.996-46.02\r\n\t\tc-8.07-14.543-18.977-27.024-32.73-36.956c-13.75-9.922-30.225-17.49-48.377-22.455C303.967,68.416,297,66.605,288,65.386V32h-64\r\n\t\tv33.167c-7,1.044-15.148,2.445-22.426,4.25c-17.242,4.283-32.388,10.868-45.951,19.764c-13.571,8.905-24.352,20.112-32.604,33.627\r\n\t\tc-8.251,13.523-12.312,29.52-12.312,48c0,9.585,1.407,18.993,4.157,28.235c2.752,9.241,7.442,17.967,14.042,26.181\r\n\t\tc6.603,8.214,15.495,15.658,26.687,22.332c11.183,6.672,24.705,12.064,41.576,16.171c9.287,2.345,18.83,4.534,26.83,6.576v119.586\r\n\t\tc-11-2.919-21.889-7.399-30.678-13.479c-9.17-6.327-16.066-13.953-21.198-23.884c-4.779-9.229-7.073-20.526-7.407-32.526H96\r\n\t\tc0.695,21,5.25,39.494,13.672,55.371c8.799,16.604,20.533,29.96,35.204,40.562c14.662,10.613,31.393,18.356,51.198,23.491\r\n\t\tc8.885,2.304,18.926,3.96,27.926,5.23V480h64v-34.54c10-1.069,18.957-2.69,28.527-4.879c18.701-4.273,35.645-11.036,50.316-20.276\r\n\t\tc14.662-9.24,26.621-21.128,35.611-35.681c8.98-14.541,13.545-32.085,13.545-52.619C416,322.427,414.498,312.841,411.387,303.256z\r\n\t\t M224,209.699c-12-3.743-23.912-9.088-32.051-16.048c-8.621-7.355-12.673-17.534-12.673-30.545c0-9.241,2.414-16.94,7.004-23.102\r\n\t\tc4.58-6.161,9.912-11.038,16.88-14.631c6.18-3.189,13.84-5.565,20.84-7.138V209.699z M342.902,359.471\r\n\t\tc-2.939,6.673-7.699,12.576-14.303,17.711c-6.602,5.133-15.744,9.328-26.377,12.577c-4.5,1.378-8.223,2.444-14.223,3.236v-107.11\r\n\t\tc10,2.624,18.18,5.332,26.326,8.131c8.062,2.744,15.748,7.443,22.537,14.116c6.785,6.676,10.309,17.03,10.309,31.06\r\n\t\tC347.172,346.042,345.834,352.797,342.902,359.471z"},"children":[]}]}]}]};exports.socialUsd=socialUsd;var socialVimeoOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M476.9,114c-5-23.4-17.5-38.8-40.6-46.3c-7.4-2.4-16.7-3.7-26.9-3.7c-21.7,0-47.4,6-67.2,20.5\r\n\tc-29.9,21.8-47.6,59.7-53.8,83.8c12.2-5.3,20.8-7.1,31.9-7.1c2.2,0,4.6,0.1,7.1,0.2c15,0.8,24.5,12,24.9,25.3\r\n\tc0.3,9.8-0.2,18.7-3.6,27.7c-10.8,28.7-27.7,56.5-47.6,80.8c-2.9,3.6-6.4,6.9-10,9.9c-4.1,3.4-8,5-11.6,5c-5.2,0-9.9-3.5-13.8-10.2\r\n\tc-5.4-9.3-9-18.9-12.2-29.1c-12.4-39.7-16.8-80.9-23.8-121.6c-3.3-19.5-7-39.8-18-56.9c-10-15.4-24-22.6-41.5-22.6\r\n\tc-2.8,0-5.6,0.2-8.6,0.5c-14.7,1.8-36.9,17.5-47.8,26.4c0,0-56,46.9-81.8,71.4l21.2,27c0,0,17.9-12.5,27.5-18.3\r\n\tc2.9-1.8,6.1-2.8,9.2-2.8c2.9,0,5.7,0.9,8,3c4.5,3.9,9.6,9,12.3,14.1c5.7,10.7,11.2,21.9,14.7,33.4c13.2,44.3,25.5,88.7,37.8,133.3\r\n\tc6.3,22.8,13.9,44.2,28,63.6c13.2,18.2,26.9,26.8,44.3,26.8c8,0,16.8-1.8,26.6-5.4c25.4-9.1,46.6-26.2,66-43.9\r\n\tc33.1-30.2,59.1-65.4,85.5-101.2c20.4-27.7,37.3-55.7,51.4-87C478.5,179.8,484,147.3,476.9,114z M450,203.9\r\n\tc-13.3,29.4-29.1,56.2-49.7,84.1l-0.3,0.4c-26.4,35.7-51.3,69.5-83.1,98.5c-17.8,16.3-37.5,32.4-60.6,40.7c-8.3,3-15.2,4.4-21.2,4.4\r\n\tc-8.2,0-18.4-2.4-31.4-20.2c-13.4-18.4-20.2-39-25.5-58.4c-12.4-45.1-24.6-89.2-37.9-133.6c-3.9-13.2-10.2-25.8-15.9-36.4\r\n\tc-3.2-5.9-8.4-12-15.9-18.6c-5.2-4.5-11.6-6.9-18.6-6.9c-5.9,0-12,1.8-17.5,5.1c-4.5,2.7-10.5,6.7-15.9,10.3l-2.8-3.6\r\n\tc26.9-24.4,68.3-59.1,70.3-60.8C138.8,96.8,155.8,87,163.5,86c2.3-0.3,4.5-0.4,6.6-0.4c12.4,0,21.3,4.9,28.1,15.3\r\n\tc9.5,14.7,12.8,33.9,15.7,50.9c1.6,9.7,3.2,19.6,4.7,29.1c4.8,31.1,9.8,63.3,19.6,94.6c3,9.7,7,21.2,13.6,32.5\r\n\tc8.8,15,19.9,18.1,27.6,18.1c7.4,0,14.7-2.9,21.7-8.6c4.6-3.7,8.7-7.8,12.3-12.2c21.9-26.8,39.3-56.3,50.2-85.3\r\n\tc4.5-12,4.9-23.3,4.6-33.8c-0.6-22.4-17.4-39.6-40-40.9c-2.9-0.2-5.5-0.2-8-0.2c-2.2,0-4.3,0.1-6.3,0.2\r\n\tc8.8-18.1,21.7-36.3,37.7-47.9c15-10.9,36.6-17.5,57.8-17.5c8.3,0,16.1,1,21.9,2.9c17,5.5,26,15.8,29.9,34.4\r\n\tC467.2,145.1,463.4,174.2,450,203.9z"},"children":[]}]};exports.socialVimeoOutline=socialVimeoOutline;var socialVimeo={"viewBox":"0 0 512 512","children":[{"name":"style","attribs":{"type":"text/css"},"children":[]},{"name":"path","attribs":{"class":"st0","d":"M476.9,114c-5-23.4-17.5-38.8-40.6-46.3c-23.1-7.5-64.9-4.5-94.1,16.8c-29.9,21.8-47.6,59.7-53.8,83.8\r\n\tc14.7-6.3,24-7.7,39-6.9c15,0.8,24.5,12,24.9,25.3c0.3,9.8-0.2,18.7-3.6,27.7c-10.8,28.7-27.7,56.5-47.6,80.8\r\n\tc-2.9,3.6-6.4,6.9-10,9.9c-10.2,8.3-18.8,6.1-25.4-5.2c-5.4-9.3-9-18.9-12.2-29.1c-12.4-39.7-16.8-80.9-23.8-121.6\r\n\tc-3.3-19.5-7-39.8-18-56.9c-11.6-17.8-28.6-24.6-50-22c-14.7,1.8-36.9,17.5-47.8,26.4c0,0-56,46.9-81.8,71.4l21.2,27\r\n\tc0,0,17.9-12.5,27.5-18.3c5.7-3.4,12.4-4.1,17.2,0.2c4.5,3.9,9.6,9,12.3,14.1c5.7,10.7,11.2,21.9,14.7,33.4\r\n\tc13.2,44.3,25.5,88.7,37.8,133.3c6.3,22.8,13.9,44.2,28,63.6c19.3,26.6,39.6,32.7,70.9,21.5c25.4-9.1,46.6-26.2,66-43.9\r\n\tc33.1-30.2,59.1-65.4,85.5-101.2c20.4-27.7,37.3-55.7,51.4-87C478.5,179.8,484,147.3,476.9,114z"},"children":[]}]};exports.socialVimeo=socialVimeo;var socialWhatsappOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M209.877,154.114c-4.258-11.323-9.176-10.515-12.45-10.639\r\n\t\tc-3.277-0.121-6.146-0.061-10.573,0.011c-3.746,0.061-9.882,1.026-15.232,6.413c-5.357,5.378-20.366,18.312-21.404,45.725\r\n\t\tc-1.031,27.408,18.08,54.643,20.749,58.455c2.667,3.826,36.494,63.236,92.719,87.67c56.231,24.427,56.525,16.981,66.84,16.435\r\n\t\tc10.325-0.54,33.726-12.246,38.899-25.073c5.172-12.827,5.588-23.979,4.271-26.358c-1.316-2.371-5-3.911-10.51-6.9\r\n\t\tc-5.516-2.995-32.595-17.498-37.673-19.55c-5.081-2.044-8.787-3.108-12.742,2.329c-3.957,5.422-15.191,17.569-18.596,21.168\r\n\t\tc-3.42,3.6-6.711,3.934-12.226,0.93c-5.5-2.988-23.373-9.548-44.098-29.317c-16.126-15.38-26.711-34.043-29.779-39.736\r\n\t\tc-3.069-5.697-0.02-8.604,2.9-11.269c2.618-2.407,5.857-6.301,8.792-9.449c2.919-3.148,3.949-5.43,5.961-9.083\r\n\t\tc2.007-3.645,1.2-6.932-0.102-9.771C224.32,193.267,214.133,165.437,209.877,154.114z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M209.877,154.114c-4.258-11.323-9.176-10.515-12.45-10.639\r\n\t\tc-3.277-0.121-6.146-0.061-10.573,0.011c-3.746,0.061-9.882,1.026-15.232,6.413c-5.357,5.378-20.366,18.312-21.404,45.725\r\n\t\tc-1.031,27.408,18.08,54.643,20.749,58.455c2.667,3.826,36.494,63.236,92.719,87.67c56.231,24.427,56.525,16.981,66.84,16.435\r\n\t\tc10.325-0.54,33.726-12.246,38.899-25.073c5.172-12.827,5.588-23.979,4.271-26.358c-1.316-2.371-5-3.911-10.51-6.9\r\n\t\tc-5.516-2.995-32.595-17.498-37.673-19.55c-5.081-2.044-8.787-3.108-12.742,2.329c-3.957,5.422-15.191,17.569-18.596,21.168\r\n\t\tc-3.42,3.6-6.711,3.934-12.226,0.93c-5.5-2.988-23.373-9.548-44.098-29.317c-16.126-15.38-26.711-34.043-29.779-39.736\r\n\t\tc-3.069-5.697-0.02-8.604,2.9-11.269c2.618-2.407,5.857-6.301,8.792-9.449c2.919-3.148,3.949-5.43,5.961-9.083\r\n\t\tc2.007-3.645,1.2-6.932-0.102-9.771C224.32,193.267,214.133,165.437,209.877,154.114z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M260.062,64c50.249,0,97.478,19.402,132.982,54.632C428.482,153.796,448,200.533,448,250.232\r\n\t\t\tc0,49.694-19.518,96.43-54.956,131.596c-35.507,35.232-82.735,54.637-132.982,54.637c-31.806,0-63.24-8.023-90.906-23.201\r\n\t\t\tl-12.017-6.593l-13.063,4.149l-61.452,19.522l19.375-57.149l4.798-14.151l-7.771-12.763\r\n\t\t\tc-17.593-28.898-26.892-62.111-26.892-96.047c0-49.699,19.518-96.436,54.957-131.601C162.596,83.402,209.819,64,260.062,64\r\n\t\t\t M260.062,32C138.605,32,40.134,129.701,40.134,250.232c0,41.229,11.532,79.791,31.559,112.687L32,480l121.764-38.682\r\n\t\t\tc31.508,17.285,67.745,27.146,106.298,27.146C381.535,468.464,480,370.749,480,250.232C480,129.701,381.535,32,260.062,32\r\n\t\t\tL260.062,32z"},"children":[{"name":"path","attribs":{"d":"M260.062,64c50.249,0,97.478,19.402,132.982,54.632C428.482,153.796,448,200.533,448,250.232\r\n\t\t\tc0,49.694-19.518,96.43-54.956,131.596c-35.507,35.232-82.735,54.637-132.982,54.637c-31.806,0-63.24-8.023-90.906-23.201\r\n\t\t\tl-12.017-6.593l-13.063,4.149l-61.452,19.522l19.375-57.149l4.798-14.151l-7.771-12.763\r\n\t\t\tc-17.593-28.898-26.892-62.111-26.892-96.047c0-49.699,19.518-96.436,54.957-131.601C162.596,83.402,209.819,64,260.062,64\r\n\t\t\t M260.062,32C138.605,32,40.134,129.701,40.134,250.232c0,41.229,11.532,79.791,31.559,112.687L32,480l121.764-38.682\r\n\t\t\tc31.508,17.285,67.745,27.146,106.298,27.146C381.535,468.464,480,370.749,480,250.232C480,129.701,381.535,32,260.062,32\r\n\t\t\tL260.062,32z"},"children":[]}]}]}]}]}]};exports.socialWhatsappOutline=socialWhatsappOutline;var socialWhatsapp={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M260.062,32C138.605,32,40.134,129.701,40.134,250.232c0,41.23,11.532,79.79,31.559,112.687L32,480l121.764-38.682\r\n\t\tc31.508,17.285,67.745,27.146,106.298,27.146C381.535,468.464,480,370.749,480,250.232C480,129.701,381.535,32,260.062,32z\r\n\t\t M369.424,333.11c-5.174,12.827-28.574,24.533-38.899,25.072c-10.314,0.547-10.608,7.994-66.84-16.434\r\n\t\tc-56.225-24.434-90.052-83.844-92.719-87.67c-2.669-3.812-21.78-31.047-20.749-58.455c1.038-27.413,16.047-40.346,21.404-45.725\r\n\t\tc5.351-5.387,11.486-6.352,15.232-6.413c4.428-0.072,7.296-0.132,10.573-0.011c3.274,0.124,8.192-0.685,12.45,10.639\r\n\t\tc4.256,11.323,14.443,39.153,15.746,41.989c1.302,2.839,2.108,6.126,0.102,9.771c-2.012,3.653-3.042,5.935-5.961,9.083\r\n\t\tc-2.935,3.148-6.174,7.042-8.792,9.449c-2.92,2.665-5.97,5.572-2.9,11.269c3.068,5.693,13.653,24.356,29.779,39.736\r\n\t\tc20.725,19.771,38.598,26.329,44.098,29.317c5.515,3.004,8.806,2.67,12.226-0.929c3.404-3.599,14.639-15.746,18.596-21.169\r\n\t\tc3.955-5.438,7.661-4.373,12.742-2.329c5.078,2.052,32.157,16.556,37.673,19.551c5.51,2.989,9.193,4.529,10.51,6.9\r\n\t\tC375.012,309.131,374.596,320.282,369.424,333.11z"},"children":[{"name":"path","attribs":{"d":"M260.062,32C138.605,32,40.134,129.701,40.134,250.232c0,41.23,11.532,79.79,31.559,112.687L32,480l121.764-38.682\r\n\t\tc31.508,17.285,67.745,27.146,106.298,27.146C381.535,468.464,480,370.749,480,250.232C480,129.701,381.535,32,260.062,32z\r\n\t\t M369.424,333.11c-5.174,12.827-28.574,24.533-38.899,25.072c-10.314,0.547-10.608,7.994-66.84-16.434\r\n\t\tc-56.225-24.434-90.052-83.844-92.719-87.67c-2.669-3.812-21.78-31.047-20.749-58.455c1.038-27.413,16.047-40.346,21.404-45.725\r\n\t\tc5.351-5.387,11.486-6.352,15.232-6.413c4.428-0.072,7.296-0.132,10.573-0.011c3.274,0.124,8.192-0.685,12.45,10.639\r\n\t\tc4.256,11.323,14.443,39.153,15.746,41.989c1.302,2.839,2.108,6.126,0.102,9.771c-2.012,3.653-3.042,5.935-5.961,9.083\r\n\t\tc-2.935,3.148-6.174,7.042-8.792,9.449c-2.92,2.665-5.97,5.572-2.9,11.269c3.068,5.693,13.653,24.356,29.779,39.736\r\n\t\tc20.725,19.771,38.598,26.329,44.098,29.317c5.515,3.004,8.806,2.67,12.226-0.929c3.404-3.599,14.639-15.746,18.596-21.169\r\n\t\tc3.955-5.438,7.661-4.373,12.742-2.329c5.078,2.052,32.157,16.556,37.673,19.551c5.51,2.989,9.193,4.529,10.51,6.9\r\n\t\tC375.012,309.131,374.596,320.282,369.424,333.11z"},"children":[]}]}]}]};exports.socialWhatsapp=socialWhatsapp;var socialWindowsOutline={"viewBox":"0 0 512 512","children":[{"name":"style","attribs":{"type":"text/css"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"class":"st0","d":"M464,281v180.5l-216-31.3V281H464 M480,265H232v179l248,36V265L480,265z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M464,281v180.5l-216-31.3V281H464 M480,265H232v179l248,36V265L480,265z"},"children":[]}]},{"name":"path","attribs":{"class":"st0","d":"M200,281v142.2L48,401.2V281H200 M216,265H32v150l184,26.7V265L216,265z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M200,281v142.2L48,401.2V281H200 M216,265H32v150l184,26.7V265L216,265z"},"children":[]}]},{"name":"path","attribs":{"class":"st0","d":"M464,50v183H248V81.3l216-30.9 M480,32L232,67.4V249h248V32L480,32z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M464,50v183H248V81.3l216-30.9 M480,32L232,67.4V249h248V32L480,32z"},"children":[]}]},{"name":"path","attribs":{"class":"st0","d":"M200,88v145H48V109.9l152-21.7 M216,69.7L32,96v153h184V69.7L216,69.7z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M200,88v145H48V109.9l152-21.7 M216,69.7L32,96v153h184V69.7L216,69.7z"},"children":[]}]}]}]};exports.socialWindowsOutline=socialWindowsOutline;var socialWindows={"viewBox":"0 0 512 512","children":[{"name":"style","attribs":{"type":"text/css"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"class":"st0","d":"M480,265H232v179l248,36V265L480,265z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M480,265H232v179l248,36V265L480,265z"},"children":[]}]},{"name":"path","attribs":{"class":"st0","d":"M216,265H32v150l184,26.7V265L216,265z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M216,265H32v150l184,26.7V265L216,265z"},"children":[]}]},{"name":"path","attribs":{"class":"st0","d":"M480,32L232,67.4V249h248V32L480,32z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M480,32L232,67.4V249h248V32L480,32z"},"children":[]}]},{"name":"path","attribs":{"class":"st0","d":"M216,69.7L32,96v153h184V69.7L216,69.7z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M216,69.7L32,96v153h184V69.7L216,69.7z"},"children":[]}]}]}]};exports.socialWindows=socialWindows;var socialWordpressOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M255.9,64C150.2,64,64,150.2,64,256.1C64,361.9,150.2,448,255.9,448c8.5,0,16.8-0.5,24.9-1.8\r\n\tc85.7-11,153.8-78.7,165.3-164.1c1.3-8.5,1.9-17.2,1.9-26C448,150.2,361.8,64,255.9,64z M83.4,256.1c0-25,5.4-48.8,15-70.2\r\n\tl82.3,225.5C123.1,383.4,83.4,324.3,83.4,256.1z M278.3,427.3c-7.3,0.9-14.8,1.4-22.4,1.4c-16.9,0-33.2-2.5-48.6-7.1l18.8-55h0.1\r\n\tl32.7-95.5L312,416.5c0.4,0.8,0.9,1.6,1.3,2.3C302.1,422.8,290.4,425.6,278.3,427.3z M279.8,175.1c10.4-0.5,19.7-1.6,19.7-1.6\r\n\tc9.4-1,8.2-14.8-1.1-14.2c0,0-28,2.2-46,2.2c-16.9,0-45.5-2.2-45.5-2.2c-9.2-0.6-10.4,13.7-1,14.2c0,0,8.7,1.1,18.1,1.6l26.9,73.7\r\n\tl-37.8,113.3l-62.9-187c10.5-0.5,19.8-1.6,19.8-1.6c9.2-1,8.2-14.8-1.1-14.2c0,0-27.9,2.2-46,2.2c-3.3,0-7.1-0.1-11.1-0.2\r\n\tc30.8-46.8,83.9-77.7,144.1-77.7c45,0,85.9,17.2,116.6,45.2c-0.8,0-1.5-0.1-2.3-0.1c-17,0-29,14.8-29,30.7\r\n\tc0,14.2,8.2,26.2,16.9,40.4c6.6,11.5,14.3,26.3,14.3,47.6c0,14.8-4.4,33.4-13.1,55.7l-17.3,57.6L279.8,175.1z M342.7,405.3\r\n\tl13.7-39.7l39-112.8c9.9-24.6,13.1-44.3,13.1-61.8c0-6.3-0.4-12.3-1.1-17.8c13.5,24.6,21.2,52.8,21.2,82.9c0,8-0.5,15.8-1.5,23.5\r\n\tC419.7,333.3,387.6,379.2,342.7,405.3z"},"children":[]}]};exports.socialWordpressOutline=socialWordpressOutline;var socialWordpress={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M259,271.3L226.2,367h-0.1l-25.4,73.1c1.8,0.5,3.5,0.9,5.3,1.4c0.1,0,0.2,0,0.3,0c15.8,4.2,32.4,6.5,49.5,6.5\r\n\t\tc8.5,0,16.8-0.5,24.9-1.8c11.2-1.4,22-3.8,32.5-7.1c0,0,0,0,0,0c2.6-0.8,5.2-1.7,7.8-2.6c-2.8-6-8.8-19.3-9.1-19.9L259,271.3z"},"children":[{"name":"path","attribs":{"d":"M259,271.3L226.2,367h-0.1l-25.4,73.1c1.8,0.5,3.5,0.9,5.3,1.4c0.1,0,0.2,0,0.3,0c15.8,4.2,32.4,6.5,49.5,6.5\r\n\t\tc8.5,0,16.8-0.5,24.9-1.8c11.2-1.4,22-3.8,32.5-7.1c0,0,0,0,0,0c2.6-0.8,5.2-1.7,7.8-2.6c-2.8-6-8.8-19.3-9.1-19.9L259,271.3z"},"children":[]}]},{"name":"path","attribs":{"d":"M80.8,180.5c-10,22.6-16.8,50.4-16.8,75.5c0,6.3,0.3,12.6,0.9,18.8c6.9,71.2,52.9,131,116.1,157.9c2.6,1.1,5.3,2.2,8,3.2\r\n\t\tL96,180.6C88,180.3,86.5,180.8,80.8,180.5z"},"children":[{"name":"path","attribs":{"d":"M80.8,180.5c-10,22.6-16.8,50.4-16.8,75.5c0,6.3,0.3,12.6,0.9,18.8c6.9,71.2,52.9,131,116.1,157.9c2.6,1.1,5.3,2.2,8,3.2\r\n\t\tL96,180.6C88,180.3,86.5,180.8,80.8,180.5z"},"children":[]}]},{"name":"path","attribs":{"d":"M430.2,175.4c-4.3-9.3-9.4-18.2-15.1-26.6c-1.6-2.4-3.4-4.8-5.1-7.2c-21.5-28.8-50.8-51.4-84.9-64.6\r\n\t\tC303.7,68.6,280.3,64,255.9,64c-60.3,0-114.2,28-149.4,71.7c-6.5,8-12.3,16.6-17.5,25.6c14.2,0.1,31.8,0.1,33.8,0.1\r\n\t\tc18.1,0,46-2.2,46-2.2c9.4-0.6,10.4,13.1,1.1,14.2c0,0-9.4,1.1-19.8,1.6l62.9,187l37.8-113.3L224,175.1c-9.4-0.5-18.1-1.6-18.1-1.6\r\n\t\tc-9.4-0.5-8.2-14.8,1-14.2c0,0,28.5,2.2,45.5,2.2c18.1,0,46-2.2,46-2.2c9.3-0.6,10.5,13.1,1.1,14.2c0,0-9.3,1.1-19.7,1.6\r\n\t\tl62.3,185.6l17.3-57.6c8.7-22.4,13.1-40.9,13.1-55.7c0-21.3-7.7-36.1-14.3-47.6c-8.7-14.3-16.9-26.3-16.9-40.4\r\n\t\tc0-15.9,12-30.7,29-30.7c0.7,0,1.5,0,2.2,0c26.2-0.7,34.8,25.3,35.9,43c0,0,0,0.4,0,0.6c0.4,7.2,0.1,12.5,0.1,18.8\r\n\t\tc0,17.4-3.3,37.1-13.1,61.8l-39,112.8l-22.3,65.7c1.8-0.8,3.5-1.6,5.3-2.5c56.7-27.4,98-82,106.7-146.7c1.3-8.5,1.9-17.2,1.9-26\r\n\t\tC448,227.3,441.6,199.9,430.2,175.4z"},"children":[{"name":"path","attribs":{"d":"M430.2,175.4c-4.3-9.3-9.4-18.2-15.1-26.6c-1.6-2.4-3.4-4.8-5.1-7.2c-21.5-28.8-50.8-51.4-84.9-64.6\r\n\t\tC303.7,68.6,280.3,64,255.9,64c-60.3,0-114.2,28-149.4,71.7c-6.5,8-12.3,16.6-17.5,25.6c14.2,0.1,31.8,0.1,33.8,0.1\r\n\t\tc18.1,0,46-2.2,46-2.2c9.4-0.6,10.4,13.1,1.1,14.2c0,0-9.4,1.1-19.8,1.6l62.9,187l37.8-113.3L224,175.1c-9.4-0.5-18.1-1.6-18.1-1.6\r\n\t\tc-9.4-0.5-8.2-14.8,1-14.2c0,0,28.5,2.2,45.5,2.2c18.1,0,46-2.2,46-2.2c9.3-0.6,10.5,13.1,1.1,14.2c0,0-9.3,1.1-19.7,1.6\r\n\t\tl62.3,185.6l17.3-57.6c8.7-22.4,13.1-40.9,13.1-55.7c0-21.3-7.7-36.1-14.3-47.6c-8.7-14.3-16.9-26.3-16.9-40.4\r\n\t\tc0-15.9,12-30.7,29-30.7c0.7,0,1.5,0,2.2,0c26.2-0.7,34.8,25.3,35.9,43c0,0,0,0.4,0,0.6c0.4,7.2,0.1,12.5,0.1,18.8\r\n\t\tc0,17.4-3.3,37.1-13.1,61.8l-39,112.8l-22.3,65.7c1.8-0.8,3.5-1.6,5.3-2.5c56.7-27.4,98-82,106.7-146.7c1.3-8.5,1.9-17.2,1.9-26\r\n\t\tC448,227.3,441.6,199.9,430.2,175.4z"},"children":[]}]}]}]};exports.socialWordpress=socialWordpress;var socialYahooOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M384.6,68.4c-11.3,0-22.5-0.8-32.6-4.4l-96,160L160,64c-10.1,3.6-20.7,4.4-32,4.4c-11.1,0-22.1-0.9-32-4.4l128,212.7V448\r\n\tc10-3.5,20.8-4.4,32-4.4s22,0.9,32,4.4V277L416,64C406.1,67.4,395.7,68.4,384.6,68.4z M274.2,268.5l-2.2,4v4.4v151.3\r\n\tc-5-0.6-11.2-0.7-16-0.7c-4.8,0-10,0.1-16,0.7V276.7v-4.4l-2.4-3.8L127,84.4c0.3,0,0.7,0,1,0c7.6,0,16-0.3,24.7-1.9l89.8,149.8\r\n\tl13.4,22.8l14-22.9l89.8-149.9c9,1.6,17.6,1.7,24.8,1.7c0.2,0,0.3,0,0.5,0L274.2,268.5z"},"children":[]}]};exports.socialYahooOutline=socialYahooOutline;var socialYahoo={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M384.6,68.4c-11.3,0-22.5-0.8-32.6-4.4l-96,160L160,64c-10.1,3.6-20.7,4.4-32,4.4c-11.1,0-22.1-0.9-32-4.4l128,212.7V448\r\n\tc10-3.5,20.8-4.4,32-4.4s22,0.9,32,4.4V277L416,64C406.1,67.4,395.7,68.4,384.6,68.4z"},"children":[]}]};exports.socialYahoo=socialYahoo;var socialYenOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M448,32h-80L256,253.128L144,32H64l112.368,208H128v48h73.564L216,319v17h-88v48h88v96h80v-96h88v-48h-88v-17l14.891-31H384\r\n\tv-48h-48.289L448,32z M368,256v16h-67l-21,43v37h88v16h-88v96h-48v-96h-88v-16h88v-35.75L212,272h-68v-16h59.197l-12.752-23.605\r\n\tL90.829,48H134l122,240L378,48h43h0.18l-99.548,184.399L308.891,256H368z"},"children":[]}]};exports.socialYenOutline=socialYenOutline;var socialYen={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M448,32h-80L256,253.128L144,32H64l112.368,208H128v48h73.564L216,319v17h-88v48h88v96h80v-96h88v-48h-88v-17l14.891-31H384\r\n\tv-48h-48.289L448,32z"},"children":[]}]};exports.socialYen=socialYen;var socialYoutubeOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M265,96c65.3,0,118.7,1.1,168.1,3.3l0.7,0h0.7c23.1,0,42,22,42,49.1v1.1l0.1,1.1c2.3,34,3.4,69.3,3.4,104.9v0v0\r\n\t\t\tc0.1,35.6-1.1,70.9-3.4,104.9l-0.1,1.1v1.1c0,13.8-4.7,26.6-13.4,36.1c-7.8,8.6-18,13.4-28.6,13.4h-0.8l-0.8,0\r\n\t\t\tc-52.9,2.5-108.8,3.8-166.4,3.8c-3.5,0-7.1,0-10.6,0H256h-0.1c-3.6,0-7.2,0-10.8,0c-57.8,0-113.7-1.3-166.2-3.7l-0.8,0h-0.8\r\n\t\t\tc-10.6,0-20.7-4.8-28.5-13.4c-8.6-9.5-13.4-22.3-13.4-36.1v-1.1l-0.1-1.1c-2.4-34.1-3.5-69.4-3.3-104.7v-0.1v-0.1\r\n\t\t\tc-0.1-35.3,1-70.5,3.3-104.6l0.1-1.1v-1.1c0-27.2,18.8-49.3,41.9-49.3H78l0.7,0c49.5-2.3,102.9-3.3,168.2-3.3h9H265 M265,64\r\n\t\t\tc-3,0-6,0-9,0s-6,0-9,0c-57.6,0-114.2,0.8-169.6,3.3c-40.8,0-73.9,36.3-73.9,81.3C1,184.4-0.1,220,0,255.7\r\n\t\t\tc-0.1,35.7,0.9,71.3,3.4,107c0,45,33.1,81.6,73.9,81.6c54.8,2.6,110.7,3.8,167.8,3.8c3.6,0,7.3,0,10.9,0c3.6,0,7.2,0,10.7,0\r\n\t\t\tc57.1,0,113-1.2,167.9-3.8c40.9,0,74-36.6,74-81.6c2.4-35.7,3.5-71.4,3.4-107.1c0.1-35.7-1-71.3-3.4-107.1c0-45-33.1-81.1-74-81.1\r\n\t\t\tC379.2,64.8,322.7,64,265,64L265,64z"},"children":[{"name":"path","attribs":{"d":"M265,96c65.3,0,118.7,1.1,168.1,3.3l0.7,0h0.7c23.1,0,42,22,42,49.1v1.1l0.1,1.1c2.3,34,3.4,69.3,3.4,104.9v0v0\r\n\t\t\tc0.1,35.6-1.1,70.9-3.4,104.9l-0.1,1.1v1.1c0,13.8-4.7,26.6-13.4,36.1c-7.8,8.6-18,13.4-28.6,13.4h-0.8l-0.8,0\r\n\t\t\tc-52.9,2.5-108.8,3.8-166.4,3.8c-3.5,0-7.1,0-10.6,0H256h-0.1c-3.6,0-7.2,0-10.8,0c-57.8,0-113.7-1.3-166.2-3.7l-0.8,0h-0.8\r\n\t\t\tc-10.6,0-20.7-4.8-28.5-13.4c-8.6-9.5-13.4-22.3-13.4-36.1v-1.1l-0.1-1.1c-2.4-34.1-3.5-69.4-3.3-104.7v-0.1v-0.1\r\n\t\t\tc-0.1-35.3,1-70.5,3.3-104.6l0.1-1.1v-1.1c0-27.2,18.8-49.3,41.9-49.3H78l0.7,0c49.5-2.3,102.9-3.3,168.2-3.3h9H265 M265,64\r\n\t\t\tc-3,0-6,0-9,0s-6,0-9,0c-57.6,0-114.2,0.8-169.6,3.3c-40.8,0-73.9,36.3-73.9,81.3C1,184.4-0.1,220,0,255.7\r\n\t\t\tc-0.1,35.7,0.9,71.3,3.4,107c0,45,33.1,81.6,73.9,81.6c54.8,2.6,110.7,3.8,167.8,3.8c3.6,0,7.3,0,10.9,0c3.6,0,7.2,0,10.7,0\r\n\t\t\tc57.1,0,113-1.2,167.9-3.8c40.9,0,74-36.6,74-81.6c2.4-35.7,3.5-71.4,3.4-107.1c0.1-35.7-1-71.3-3.4-107.1c0-45-33.1-81.1-74-81.1\r\n\t\t\tC379.2,64.8,322.7,64,265,64L265,64z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M207,353.8V157.4l145,98.2L207,353.8z"},"children":[{"name":"path","attribs":{"d":"M207,353.8V157.4l145,98.2L207,353.8z"},"children":[]}]}]}]}]}]};exports.socialYoutubeOutline=socialYoutubeOutline;var socialYoutube={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M508.6,148.8c0-45-33.1-81.2-74-81.2C379.2,65,322.7,64,265,64c-3,0-6,0-9,0s-6,0-9,0c-57.6,0-114.2,1-169.6,3.6\r\n\t\tc-40.8,0-73.9,36.4-73.9,81.4C1,184.6-0.1,220.2,0,255.8C-0.1,291.4,1,327,3.4,362.7c0,45,33.1,81.5,73.9,81.5\r\n\t\tc58.2,2.7,117.9,3.9,178.6,3.8c60.8,0.2,120.3-1,178.6-3.8c40.9,0,74-36.5,74-81.5c2.4-35.7,3.5-71.3,3.4-107\r\n\t\tC512.1,220.1,511,184.5,508.6,148.8z M207,353.9V157.4l145,98.2L207,353.9z"},"children":[{"name":"path","attribs":{"d":"M508.6,148.8c0-45-33.1-81.2-74-81.2C379.2,65,322.7,64,265,64c-3,0-6,0-9,0s-6,0-9,0c-57.6,0-114.2,1-169.6,3.6\r\n\t\tc-40.8,0-73.9,36.4-73.9,81.4C1,184.6-0.1,220.2,0,255.8C-0.1,291.4,1,327,3.4,362.7c0,45,33.1,81.5,73.9,81.5\r\n\t\tc58.2,2.7,117.9,3.9,178.6,3.8c60.8,0.2,120.3-1,178.6-3.8c40.9,0,74-36.5,74-81.5c2.4-35.7,3.5-71.3,3.4-107\r\n\t\tC512.1,220.1,511,184.5,508.6,148.8z M207,353.9V157.4l145,98.2L207,353.9z"},"children":[]}]}]}]};exports.socialYoutube=socialYoutube;var soupCanOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M255.82,144c88.269,0,159.824-28.654,159.824-64S344.089,16,255.82,16C167.552,16,95.997,44.654,95.997,80\r\n\t\tS167.552,144,255.82,144z M255.82,33.041c69.729,0,126.26,19.234,126.26,42.959s-56.531,42.959-126.26,42.959\r\n\t\tc-69.729,0-126.258-19.234-126.258-42.959S186.091,33.041,255.82,33.041z"},"children":[{"name":"path","attribs":{"d":"M255.82,144c88.269,0,159.824-28.654,159.824-64S344.089,16,255.82,16C167.552,16,95.997,44.654,95.997,80\r\n\t\tS167.552,144,255.82,144z M255.82,33.041c69.729,0,126.26,19.234,126.26,42.959s-56.531,42.959-126.26,42.959\r\n\t\tc-69.729,0-126.258-19.234-126.258-42.959S186.091,33.041,255.82,33.041z"},"children":[]}]},{"name":"path","attribs":{"d":"M256.57,160c-88.269,0-160.567-28.654-160.567-64c0,0-0.003,33.999,7.997,40v240c0,35.346,63.732,64,152,64\r\n\t\tc88.269,0,152-28.654,152-64V136c8-7.438,7.708-34.853,7.817-40C414.665,130.946,344.116,160,256.57,160z M376,375.588\r\n\t\tc0,2.232-7.961,10.682-29.423,18.688C322.853,403.126,290.812,408,256.273,408c-34.539,0-66.83-4.874-90.554-13.725\r\n\t\tC144.257,386.27,137,377.82,136,375.588v-79.564c18,9.721,42.742,17.115,72.156,20.979l1.588,0.237\r\n\t\tC215.487,337.308,233.936,352,255.826,352c21.89,0,40.338-14.689,46.084-34.754l1.755-0.244\r\n\t\tC333.08,313.139,358,305.744,376,296.023V375.588z M376,264.023c-18,9.831-43.476,17.284-73.325,21.11l-2.61,0.195\r\n\t\tC292.791,268.097,275.723,256,255.859,256c-19.867,0-36.919,12.102-44.19,29.34l-2.514-0.206\r\n\t\tc-29.85-3.826-55.155-11.279-73.155-21.11v-91.265C170,185.25,211.923,192,256.499,192C300.665,192,343,185.287,376,173.045\r\n\t\tV264.023z"},"children":[{"name":"path","attribs":{"d":"M256.57,160c-88.269,0-160.567-28.654-160.567-64c0,0-0.003,33.999,7.997,40v240c0,35.346,63.732,64,152,64\r\n\t\tc88.269,0,152-28.654,152-64V136c8-7.438,7.708-34.853,7.817-40C414.665,130.946,344.116,160,256.57,160z M376,375.588\r\n\t\tc0,2.232-7.961,10.682-29.423,18.688C322.853,403.126,290.812,408,256.273,408c-34.539,0-66.83-4.874-90.554-13.725\r\n\t\tC144.257,386.27,137,377.82,136,375.588v-79.564c18,9.721,42.742,17.115,72.156,20.979l1.588,0.237\r\n\t\tC215.487,337.308,233.936,352,255.826,352c21.89,0,40.338-14.689,46.084-34.754l1.755-0.244\r\n\t\tC333.08,313.139,358,305.744,376,296.023V375.588z M376,264.023c-18,9.831-43.476,17.284-73.325,21.11l-2.61,0.195\r\n\t\tC292.791,268.097,275.723,256,255.859,256c-19.867,0-36.919,12.102-44.19,29.34l-2.514-0.206\r\n\t\tc-29.85-3.826-55.155-11.279-73.155-21.11v-91.265C170,185.25,211.923,192,256.499,192C300.665,192,343,185.287,376,173.045\r\n\t\tV264.023z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M274.002,463.58"},"children":[{"name":"path","attribs":{"d":"M274.002,463.58"},"children":[]}]},{"name":"path","attribs":{"d":"M256.272,464c0.293,0,0.583-0.006,0.876-0.007c-0.351,0.001-0.699,0.005-1.051,0.005\r\n\t\t\tC256.156,463.998,256.214,464,256.272,464z"},"children":[{"name":"path","attribs":{"d":"M256.272,464c0.293,0,0.583-0.006,0.876-0.007c-0.351,0.001-0.699,0.005-1.051,0.005\r\n\t\t\tC256.156,463.998,256.214,464,256.272,464z"},"children":[]}]},{"name":"path","attribs":{"d":"M408,415.999V400c0,36.001-63.432,64-152,64c-88.569,0-152-28.654-152-64v15.999L96.261,432\r\n\t\t\tc0,6.994,2.938,13.725,8.117,20.025C125.37,477.562,185.471,496,256.273,496c70.801,0,130.87-18.438,151.863-43.975\r\n\t\t\tc5.18-6.301,7.923-13.031,7.923-20.025L408,415.999z"},"children":[{"name":"path","attribs":{"d":"M408,415.999V400c0,36.001-63.432,64-152,64c-88.569,0-152-28.654-152-64v15.999L96.261,432\r\n\t\t\tc0,6.994,2.938,13.725,8.117,20.025C125.37,477.562,185.471,496,256.273,496c70.801,0,130.87-18.438,151.863-43.975\r\n\t\t\tc5.18-6.301,7.923-13.031,7.923-20.025L408,415.999z"},"children":[]}]}]}]}]}]};exports.soupCanOutline=soupCanOutline;var soupCan={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"ellipse","attribs":{"cx":"256","cy":"80","rx":"160","ry":"64"},"children":[{"name":"ellipse","attribs":{"cx":"256","cy":"80","rx":"160","ry":"64"},"children":[]}]},{"name":"path","attribs":{"d":"M256,440c88.365,0,152-28.654,152-64V248c0,28.581-41.612,52.783-104.26,61.002C301.238,333.16,280.82,352,256,352\r\n\t\ts-45.238-18.84-47.74-42.998C145.612,300.783,104,276.581,104,248v128C104,411.346,167.634,440,256,440z"},"children":[{"name":"path","attribs":{"d":"M256,440c88.365,0,152-28.654,152-64V248c0,28.581-41.612,52.783-104.26,61.002C301.238,333.16,280.82,352,256,352\r\n\t\ts-45.238-18.84-47.74-42.998C145.612,300.783,104,276.581,104,248v128C104,411.346,167.634,440,256,440z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,160c-88.366,0-160-28.654-160-64c0,0,0,32.834,8,40v96c0,28.732,42.049,53.042,105.25,61.134\r\n\t\tC214.176,271.861,233.229,256,256,256s41.824,15.861,46.75,37.134C365.951,285.042,408,260.732,408,232v-96c8-8.25,8-40,8-40\r\n\t\tC416,131.346,344.365,160,256,160z"},"children":[{"name":"path","attribs":{"d":"M256,160c-88.366,0-160-28.654-160-64c0,0,0,32.834,8,40v96c0,28.732,42.049,53.042,105.25,61.134\r\n\t\tC214.176,271.861,233.229,256,256,256s41.824,15.861,46.75,37.134C365.951,285.042,408,260.732,408,232v-96c8-8.25,8-40,8-40\r\n\t\tC416,131.346,344.365,160,256,160z"},"children":[]}]},{"name":"path","attribs":{"d":"M408,392c0,35.346-63.635,64-152,64c-88.366,0-152-28.654-152-64v23.999L96,432c0,6.994,2.815,13.725,8,20.025\r\n\t\tC125.016,477.562,185.121,496,256,496c70.879,0,130.984-18.438,152-43.975c5.186-6.301,8-13.031,8-20.025l-8-16.001V392z"},"children":[{"name":"path","attribs":{"d":"M408,392c0,35.346-63.635,64-152,64c-88.366,0-152-28.654-152-64v23.999L96,432c0,6.994,2.815,13.725,8,20.025\r\n\t\tC125.016,477.562,185.121,496,256,496c70.879,0,130.984-18.438,152-43.975c5.186-6.301,8-13.031,8-20.025l-8-16.001V392z"},"children":[]}]}]}]};exports.soupCan=soupCan;var speakerphone={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M70.9,181.5c0-41,25-76.5,60.6-91.5h-7.7c-41.1,0-75.1,32.8-81.1,75.2c-6,1-10.7,7.9-10.7,16.1c0,8.6,5.1,15.4,11.6,15.9\r\n\t\tc7.2,36.4,35.1,65.8,69.7,68.8c0,0,0.1,0,0.1,0c1.4,0,2.8,0.6,4.2,0.9c1.1,0.2,2.2,0.4,3.3,0.7C91,250.5,70.9,218.4,70.9,181.5z"},"children":[{"name":"path","attribs":{"d":"M70.9,181.5c0-41,25-76.5,60.6-91.5h-7.7c-41.1,0-75.1,32.8-81.1,75.2c-6,1-10.7,7.9-10.7,16.1c0,8.6,5.1,15.4,11.6,15.9\r\n\t\tc7.2,36.4,35.1,65.8,69.7,68.8c0,0,0.1,0,0.1,0c1.4,0,2.8,0.6,4.2,0.9c1.1,0.2,2.2,0.4,3.3,0.7C91,250.5,70.9,218.4,70.9,181.5z"},"children":[]}]},{"name":"path","attribs":{"d":"M465.1,91c-1.1-2.9-2.3-5.6-3.5-8.3c-6.5-14.4-14.4-26-23.4-34.6C427,37.6,414.1,32,400.8,32c-8.3,0-16.4,2.2-24.1,6.4\r\n\t\tc0,0,0,0-0.1,0c-1.2,0.7-2.4,1.3-3.6,2c-49,29-104.1,46.2-162.6,49.4c-6.5,0.4-13,0.2-19.5,0.2h-42.3c-34,15-59,50.5-59,91.5\r\n\t\tc0,36.8,19.2,69.1,47.8,86.1c13,10.9,41.7,11.7,40,23.9c-1.9,13.2-5.5,21.9-7.8,30.7c-1.3,4.8-23.6,72.9-25.3,144.7\r\n\t\tc0,2,0,3.7,0.2,6.6c0.2,2.9,2.2,6.4,8.5,6.4h76.8c6.6,0,9.7-3.3,9.3-9.3c-0.2-1.9-0.6-4.3-0.8-6.5c-2.4-23.1-4.6-49.8-3.3-81.6\r\n\t\tc1.3-34,5.2-51.9,7-61.3c2.1-10.4,7.6-22.4,12.1-30.3c30.8,0.9,92.9,19.3,115.1,28.9c0,0,7.2,3.4,10.1,5.2c7,3.4,14.2,5.1,21.6,5.1\r\n\t\tc0.9,0,1.8,0,2.7-0.1c12.3-0.7,24.2-9.7,34.7-19.5c9.1-8.5,16.9-20.2,23.4-34.6c1.2-2.8,2.4-5.6,3.5-8.6\r\n\t\tc9.6-25,14.8-55.9,14.8-88.1C480,147,474.8,116,465.1,91z M442,267.5c-7.8,18.5-18.2,33.3-29.5,33.3c-11.3,0-21.6-14.7-29.4-33.3\r\n\t\tc-9.1-21.6-14.9-53.1-14.9-88.1c0-35.2,5.8-66.8,15-88.4c7.8-18.4,18.1-29.5,29.3-29.5c11.3,0,21.5,11.2,29.4,29.5\r\n\t\tc9.2,21.6,15,53.2,15,88.4C456.9,214.4,451.1,245.9,442,267.5z"},"children":[{"name":"path","attribs":{"d":"M465.1,91c-1.1-2.9-2.3-5.6-3.5-8.3c-6.5-14.4-14.4-26-23.4-34.6C427,37.6,414.1,32,400.8,32c-8.3,0-16.4,2.2-24.1,6.4\r\n\t\tc0,0,0,0-0.1,0c-1.2,0.7-2.4,1.3-3.6,2c-49,29-104.1,46.2-162.6,49.4c-6.5,0.4-13,0.2-19.5,0.2h-42.3c-34,15-59,50.5-59,91.5\r\n\t\tc0,36.8,19.2,69.1,47.8,86.1c13,10.9,41.7,11.7,40,23.9c-1.9,13.2-5.5,21.9-7.8,30.7c-1.3,4.8-23.6,72.9-25.3,144.7\r\n\t\tc0,2,0,3.7,0.2,6.6c0.2,2.9,2.2,6.4,8.5,6.4h76.8c6.6,0,9.7-3.3,9.3-9.3c-0.2-1.9-0.6-4.3-0.8-6.5c-2.4-23.1-4.6-49.8-3.3-81.6\r\n\t\tc1.3-34,5.2-51.9,7-61.3c2.1-10.4,7.6-22.4,12.1-30.3c30.8,0.9,92.9,19.3,115.1,28.9c0,0,7.2,3.4,10.1,5.2c7,3.4,14.2,5.1,21.6,5.1\r\n\t\tc0.9,0,1.8,0,2.7-0.1c12.3-0.7,24.2-9.7,34.7-19.5c9.1-8.5,16.9-20.2,23.4-34.6c1.2-2.8,2.4-5.6,3.5-8.6\r\n\t\tc9.6-25,14.8-55.9,14.8-88.1C480,147,474.8,116,465.1,91z M442,267.5c-7.8,18.5-18.2,33.3-29.5,33.3c-11.3,0-21.6-14.7-29.4-33.3\r\n\t\tc-9.1-21.6-14.9-53.1-14.9-88.1c0-35.2,5.8-66.8,15-88.4c7.8-18.4,18.1-29.5,29.3-29.5c11.3,0,21.5,11.2,29.4,29.5\r\n\t\tc9.2,21.6,15,53.2,15,88.4C456.9,214.4,451.1,245.9,442,267.5z"},"children":[]}]}]}]};exports.speakerphone=speakerphone;var speedometer={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M344,256l-84.4,64.2c-1.2-0.1-2.4-0.2-3.6-0.2c-17.7,0-32,14.3-32,32c0,17.7,14.3,32,32,32c17.7,0,32-14.3,32-32\r\n\t\tc0-1.2-0.1-2.4-0.2-3.6L352,264L344,256z"},"children":[{"name":"path","attribs":{"d":"M344,256l-84.4,64.2c-1.2-0.1-2.4-0.2-3.6-0.2c-17.7,0-32,14.3-32,32c0,17.7,14.3,32,32,32c17.7,0,32-14.3,32-32\r\n\t\tc0-1.2-0.1-2.4-0.2-3.6L352,264L344,256z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,96C132.3,96,32,196.3,32,320c0,34.4,7.8,66.9,21.6,96h36.1c-15.4-26.6-24.2-56.6-25.5-88H96v-16H64.2\r\n\t\tc1.2-28.8,8.7-56.5,21.8-81.4l27.5,15.9l8-13.9L94,216.8c7.4-11.6,16.2-22.6,26.2-32.6c10.2-10.1,21.3-19,33.1-26.5l15.8,27.3\r\n\t\tl13.9-8l-15.8-27.3c24.8-13,52.2-20.3,80.8-21.5V160h16v-31.8c28.6,1.2,56,8.6,80.8,21.5L329.1,177l13.9,8l15.8-27.3\r\n\t\tc11.8,7.5,22.9,16.4,33.1,26.5c10,10,18.7,20.9,26.2,32.6l-27.4,15.8l8,13.9l27.5-15.9c13.1,24.9,20.6,52.6,21.8,81.4H416v16h31.8\r\n\t\tc-1.3,31.4-10.1,61.4-25.5,88h36.1c13.8-29.1,21.6-61.6,21.6-96C480,196.3,379.7,96,256,96z"},"children":[{"name":"path","attribs":{"d":"M256,96C132.3,96,32,196.3,32,320c0,34.4,7.8,66.9,21.6,96h36.1c-15.4-26.6-24.2-56.6-25.5-88H96v-16H64.2\r\n\t\tc1.2-28.8,8.7-56.5,21.8-81.4l27.5,15.9l8-13.9L94,216.8c7.4-11.6,16.2-22.6,26.2-32.6c10.2-10.1,21.3-19,33.1-26.5l15.8,27.3\r\n\t\tl13.9-8l-15.8-27.3c24.8-13,52.2-20.3,80.8-21.5V160h16v-31.8c28.6,1.2,56,8.6,80.8,21.5L329.1,177l13.9,8l15.8-27.3\r\n\t\tc11.8,7.5,22.9,16.4,33.1,26.5c10,10,18.7,20.9,26.2,32.6l-27.4,15.8l8,13.9l27.5-15.9c13.1,24.9,20.6,52.6,21.8,81.4H416v16h31.8\r\n\t\tc-1.3,31.4-10.1,61.4-25.5,88h36.1c13.8-29.1,21.6-61.6,21.6-96C480,196.3,379.7,96,256,96z"},"children":[]}]}]}]};exports.speedometer=speedometer;var spoon={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M320,160C320,96,293.5,32,256,32s-64,64-64,128l0,0c0.9,25,15.7,54.3,36.6,64.3c0.5,0.2,0.9,0.4,1.4,0.6c0,0,0,0,0.1,0\r\n\tc3.4,1.9,9.8,5.5,9.8,9.7c0,0-16,198.7-16,210.1s5,20.5,10.5,26c5.5,5.5,13.1,9.2,21.3,9.2c0.1,0,0.1,0,0.2,0c0.1,0,0.1,0,0.2,0\r\n\tc8.2,0,15.8-3.7,21.4-9.2c5.5-5.5,10.3-12.9,10.3-26s-16-210.1-16-210.1c0-4.2,6.4-7.9,9.8-9.8l1.7-0.9C304.9,214,320,186,320,160"},"children":[]}]};exports.spoon=spoon;var star={"viewBox":"0 0 512 512","children":[{"name":"polygon","attribs":{"points":"480,200 308.519,200 256.029,32 203.519,200 32,200 170.946,304.209 116,480 256,368 396,480 341.073,304.195 "},"children":[]}]};exports.star=star;var statsBars={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"176","y":"96","width":"64","height":"320"},"children":[{"name":"rect","attribs":{"x":"176","y":"96","width":"64","height":"320"},"children":[]}]},{"name":"rect","attribs":{"x":"80","y":"320","width":"64","height":"96"},"children":[{"name":"rect","attribs":{"x":"80","y":"320","width":"64","height":"96"},"children":[]}]},{"name":"rect","attribs":{"x":"272","y":"256","width":"64","height":"160"},"children":[{"name":"rect","attribs":{"x":"272","y":"256","width":"64","height":"160"},"children":[]}]},{"name":"rect","attribs":{"x":"368","y":"192","width":"64","height":"224"},"children":[{"name":"rect","attribs":{"x":"368","y":"192","width":"64","height":"224"},"children":[]}]}]}]};exports.statsBars=statsBars;var steam={"viewBox":"0 0 512 512","children":[{"name":"style","attribs":{"type":"text/css"},"children":[]},{"name":"path","attribs":{"id":"Gears","class":"st0","d":"M480,208.2c0,20.5-16.6,37.2-37.2,37.2c-20.5,0-37.2-16.6-37.2-37.2c0-20.5,16.6-37.2,37.2-37.2\r\n\tC463.3,171,480,187.7,480,208.2z M442.6,139c-38.1,0-69,30.7-69.4,68.7L330,269.7c-1.8-0.2-3.6-0.3-5.4-0.3\r\n\tc-9.7,0-18.7,2.7-26.4,7.3l-195.8-78.7c-5.1-23.2-25.9-40.7-50.6-40.7C23.3,157.2,0,180.6,0,209.1c0,28.5,23.3,51.8,51.8,51.8\r\n\tc9.7,0,18.7-2.7,26.4-7.3L274,332.2c5.1,23.3,25.8,40.8,50.6,40.8c26.8,0,49-20.6,51.5-46.7l66.5-48.6c38.3,0,69.4-31,69.4-69.3\r\n\tC512,170.1,480.9,139,442.6,139z M442.6,161.9c25.7,0,46.5,20.9,46.5,46.5c0,25.7-20.9,46.4-46.5,46.4c-25.7,0-46.5-20.8-46.5-46.4\r\n\tC396.1,182.7,416.9,161.9,442.6,161.9z M51.8,170.9c14.6,0,27.3,8.2,33.7,20.2l-18.9-7.6v0.1c-15.3-5.5-32.2,2-38.3,17.1\r\n\tc-6.1,15.2,0.9,32.3,15.7,38.9v0.1l16.1,6.4c-2.6,0.6-5.4,0.9-8.2,0.9c-21.1,0-38.1-17-38.1-38.1C13.7,188,30.7,170.9,51.8,170.9z\r\n\t M324.6,283.1c21.1,0,38.1,17,38.1,38.1c0,21.1-17,38.1-38.1,38.1c-14.7,0-27.4-8.2-33.7-20.3c6.3,2.5,12.5,5,18.8,7.6\r\n\tc15.5,6.2,33.2-1.3,39.4-16.8c6.2-15.5-1.3-33.1-16.9-39.4l-15.9-6.4C319.1,283.5,321.8,283.1,324.6,283.1z"},"children":[]}]};exports.steam=steam;var stop={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M437.4,64H74.6C68.7,64,64,68.7,64,74.6v362.8c0,5.9,4.7,10.6,10.6,10.6h362.8c5.8,0,10.6-4.7,10.6-10.6V74.6\r\n\tC448,68.7,443.2,64,437.4,64z"},"children":[]}]};exports.stop=stop;var thermometer={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M303,335.6V78.4c0-25.7-21-46.5-47-46.5c-26,0-47,20.8-47,46.5v256.8c-20,14.5-32.9,38.2-32.9,64.9c0,44.2,36,80,80.2,80\r\n\t\tc44.2,0,79.8-35.8,79.8-80C336,373.6,323,350.1,303,335.6z M241,78.4c0-8,6.7-14.5,15-14.5s15,6.5,15,14.5V128h-30V78.4z M272,288\r\n\t\th-16v-16h16V288z M272,256h-16v-64h16V256z"},"children":[{"name":"path","attribs":{"d":"M303,335.6V78.4c0-25.7-21-46.5-47-46.5c-26,0-47,20.8-47,46.5v256.8c-20,14.5-32.9,38.2-32.9,64.9c0,44.2,36,80,80.2,80\r\n\t\tc44.2,0,79.8-35.8,79.8-80C336,373.6,323,350.1,303,335.6z M241,78.4c0-8,6.7-14.5,15-14.5s15,6.5,15,14.5V128h-30V78.4z M272,288\r\n\t\th-16v-16h16V288z M272,256h-16v-64h16V256z"},"children":[]}]}]}]};exports.thermometer=thermometer;var thumbsdown={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M87.8,252.7C74,257.2,64,270.2,64,285.5c0,19,15.4,34.5,34.5,34.5h102.6c-2,25-10,53.6-1.1,87.3\r\n\t\tc7.5,28.4,39.4,49.7,52.4,36.8c5-4.9,3.5-15.2,3.5-33.8c0-42.8,17.8-86.1,39.8-108.7c9.4-9.7,25.2-13,40.2-13.6v16h112V64H336v32\r\n\t\tc-20.6,0.5-52.6-5.2-75.8-6.6c-52-3.1-102,2.4-126.3,8.1c-24.3,5.7-35,13-35,30.6c0,6.4,1.9,12.3,5.1,17.3\r\n\t\tc-11.8,4.7-20.1,16.2-20.1,29.7c0,7.2,2.4,13.8,6.4,19.2c-11.9,4.6-20.4,16.2-20.4,29.8C70,236.6,77.3,247.5,87.8,252.7z M400,96.3\r\n\t\tc8.8,0,16,7.1,16,16c0,8.8-7.2,16-16,16s-16-7.1-16-16C384,103.5,391.2,96.3,400,96.3z"},"children":[{"name":"path","attribs":{"d":"M87.8,252.7C74,257.2,64,270.2,64,285.5c0,19,15.4,34.5,34.5,34.5h102.6c-2,25-10,53.6-1.1,87.3\r\n\t\tc7.5,28.4,39.4,49.7,52.4,36.8c5-4.9,3.5-15.2,3.5-33.8c0-42.8,17.8-86.1,39.8-108.7c9.4-9.7,25.2-13,40.2-13.6v16h112V64H336v32\r\n\t\tc-20.6,0.5-52.6-5.2-75.8-6.6c-52-3.1-102,2.4-126.3,8.1c-24.3,5.7-35,13-35,30.6c0,6.4,1.9,12.3,5.1,17.3\r\n\t\tc-11.8,4.7-20.1,16.2-20.1,29.7c0,7.2,2.4,13.8,6.4,19.2c-11.9,4.6-20.4,16.2-20.4,29.8C70,236.6,77.3,247.5,87.8,252.7z M400,96.3\r\n\t\tc8.8,0,16,7.1,16,16c0,8.8-7.2,16-16,16s-16-7.1-16-16C384,103.5,391.2,96.3,400,96.3z"},"children":[]}]}]}]};exports.thumbsdown=thumbsdown;var thumbsup={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M424.2,259.3c13.8-4.5,23.8-17.5,23.8-32.8c0-19-15.4-34.5-34.5-34.5H310.9c2-25,10-53.6,1.1-87.3\r\n\t\tc-7.5-28.4-39.4-49.7-52.4-36.8c-5,4.9-3.5,15.2-3.5,33.8c0,42.8-17.8,86.1-39.8,108.7c-9.4,9.7-25.2,13-40.2,13.6v-16H64v240h112\r\n\t\tv-32c20.6-0.5,52.6,5.2,75.8,6.6c52,3.1,102-2.4,126.3-8.1c24.3-5.7,35-13,35-30.6c0-6.4-1.9-12.3-5.1-17.3\r\n\t\tc11.8-4.7,20.1-16.2,20.1-29.7c0-7.2-2.4-13.8-6.4-19.2c11.9-4.6,20.4-16.2,20.4-29.8C442,275.4,434.7,264.5,424.2,259.3z\r\n\t\t M112,415.7c-8.8,0-16-7.1-16-16c0-8.8,7.2-16,16-16s16,7.1,16,16C128,408.5,120.8,415.7,112,415.7z"},"children":[{"name":"path","attribs":{"d":"M424.2,259.3c13.8-4.5,23.8-17.5,23.8-32.8c0-19-15.4-34.5-34.5-34.5H310.9c2-25,10-53.6,1.1-87.3\r\n\t\tc-7.5-28.4-39.4-49.7-52.4-36.8c-5,4.9-3.5,15.2-3.5,33.8c0,42.8-17.8,86.1-39.8,108.7c-9.4,9.7-25.2,13-40.2,13.6v-16H64v240h112\r\n\t\tv-32c20.6-0.5,52.6,5.2,75.8,6.6c52,3.1,102-2.4,126.3-8.1c24.3-5.7,35-13,35-30.6c0-6.4-1.9-12.3-5.1-17.3\r\n\t\tc11.8-4.7,20.1-16.2,20.1-29.7c0-7.2-2.4-13.8-6.4-19.2c11.9-4.6,20.4-16.2,20.4-29.8C442,275.4,434.7,264.5,424.2,259.3z\r\n\t\t M112,415.7c-8.8,0-16-7.1-16-16c0-8.8,7.2-16,16-16s16,7.1,16,16C128,408.5,120.8,415.7,112,415.7z"},"children":[]}]}]}]};exports.thumbsup=thumbsup;var toggleFilled={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M352,208c-26.467,0-48,21.533-48,48c0,26.467,21.533,48,48,48s48-21.533,48-48C400,229.533,378.467,208,352,208z"},"children":[{"name":"path","attribs":{"d":"M352,208c-26.467,0-48,21.533-48,48c0,26.467,21.533,48,48,48s48-21.533,48-48C400,229.533,378.467,208,352,208z"},"children":[]}]},{"name":"path","attribs":{"d":"M352,128H160c-70.692,0-128,57.308-128,128s57.308,128,128,128h192c70.692,0,128-57.308,128-128S422.692,128,352,128z\r\n\t\t M352,336c-44.183,0-80-35.817-80-80s35.817-80,80-80s80,35.817,80,80S396.183,336,352,336z"},"children":[{"name":"path","attribs":{"d":"M352,128H160c-70.692,0-128,57.308-128,128s57.308,128,128,128h192c70.692,0,128-57.308,128-128S422.692,128,352,128z\r\n\t\t M352,336c-44.183,0-80-35.817-80-80s35.817-80,80-80s80,35.817,80,80S396.183,336,352,336z"},"children":[]}]}]}]};exports.toggleFilled=toggleFilled;var toggle={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M352,160c52.934,0,96,43.065,96,96s-43.066,96-96,96H160c-52.935,0-96-43.065-96-96s43.065-96,96-96H352 M352,128H160\r\n\t\tc-70.692,0-128,57.308-128,128s57.308,128,128,128h192c70.692,0,128-57.308,128-128S422.692,128,352,128L352,128z"},"children":[{"name":"path","attribs":{"d":"M352,160c52.934,0,96,43.065,96,96s-43.066,96-96,96H160c-52.935,0-96-43.065-96-96s43.065-96,96-96H352 M352,128H160\r\n\t\tc-70.692,0-128,57.308-128,128s57.308,128,128,128h192c70.692,0,128-57.308,128-128S422.692,128,352,128L352,128z"},"children":[]}]},{"name":"path","attribs":{"d":"M160,208c26.467,0,48,21.533,48,48c0,26.467-21.533,48-48,48s-48-21.533-48-48C112,229.533,133.533,208,160,208 M160,176\r\n\t\tc-44.183,0-80,35.817-80,80s35.817,80,80,80s80-35.817,80-80S204.183,176,160,176L160,176z"},"children":[{"name":"path","attribs":{"d":"M160,208c26.467,0,48,21.533,48,48c0,26.467-21.533,48-48,48s-48-21.533-48-48C112,229.533,133.533,208,160,208 M160,176\r\n\t\tc-44.183,0-80,35.817-80,80s35.817,80,80,80s80-35.817,80-80S204.183,176,160,176L160,176z"},"children":[]}]}]}]};exports.toggle=toggle;var transgender={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M368,0v40h69.873l-93.046,91.97c-8.529-8.249-15.132-12.586-15.132-12.586C308.841,104.694,283.422,96,256,96\r\n\tc-34.525,0-65.86,13.669-88.903,35.894l-17.333-17.131l35.833-35.833L153.07,46.403l-36.022,36.021L74.127,40H144V0H0v144h40V67.806\r\n\tl46.085,45.582L50.402,149.07l32.526,32.526l35.862-35.861l22.185,21.942c-8.395,17.065-13.118,36.267-13.118,56.578\r\n\tC127.857,286.884,173,338.989,232,350.25V402h-72v46h72v64h48v-64h72v-46h-72v-51.75c58-11.261,104.222-63.397,104.222-126.025\r\n\tc0-20.202-4.794-39.738-13.094-56.649L472,67.806V144h40V0H368z M255.929,304.402c-44.156,0-80.079-35.968-80.079-80.178\r\n\tc0-44.211,35.923-80.18,80.079-80.18c44.155,0,80.078,35.969,80.078,80.18C336.007,268.435,300.084,304.402,255.929,304.402z"},"children":[]}]};exports.transgender=transgender;var trashA={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M341,128V99c0-19.1-14.5-35-34.5-35H205.4C185.5,64,171,79.9,171,99v29H80v32h9.2c0,0,5.4,0.6,8.2,3.4c2.8,2.8,3.9,9,3.9,9\r\n\tl19,241.7c1.5,29.4,1.5,33.9,36,33.9h199.4c34.5,0,34.5-4.4,36-33.8l19-241.6c0,0,1.1-6.3,3.9-9.1c2.8-2.8,8.2-3.4,8.2-3.4h9.2v-32\r\n\th-91V128z M192,99c0-9.6,7.8-15,17.7-15h91.7c9.9,0,18.6,5.5,18.6,15v29H192V99z M183.5,384l-10.3-192h20.3L204,384H183.5z\r\n\t M267.1,384h-22V192h22V384z M328.7,384h-20.4l10.5-192h20.3L328.7,384z"},"children":[]}]};exports.trashA=trashA;var trashB={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M413.7,133.4c-2.4-9-4-14-4-14c-2.6-9.3-9.2-9.3-19-10.9l-53.1-6.7c-6.6-1.1-6.6-1.1-9.2-6.8c-8.7-19.6-11.4-31-20.9-31\r\n\t\th-103c-9.5,0-12.1,11.4-20.8,31.1c-2.6,5.6-2.6,5.6-9.2,6.8l-53.2,6.7c-9.7,1.6-16.7,2.5-19.3,11.8c0,0-1.2,4.1-3.7,13\r\n\t\tc-3.2,11.9-4.5,10.6,6.5,10.6h302.4C418.2,144.1,417,145.3,413.7,133.4z"},"children":[{"name":"path","attribs":{"d":"M413.7,133.4c-2.4-9-4-14-4-14c-2.6-9.3-9.2-9.3-19-10.9l-53.1-6.7c-6.6-1.1-6.6-1.1-9.2-6.8c-8.7-19.6-11.4-31-20.9-31\r\n\t\th-103c-9.5,0-12.1,11.4-20.8,31.1c-2.6,5.6-2.6,5.6-9.2,6.8l-53.2,6.7c-9.7,1.6-16.7,2.5-19.3,11.8c0,0-1.2,4.1-3.7,13\r\n\t\tc-3.2,11.9-4.5,10.6,6.5,10.6h302.4C418.2,144.1,417,145.3,413.7,133.4z"},"children":[]}]},{"name":"path","attribs":{"d":"M379.4,176H132.6c-16.6,0-17.4,2.2-16.4,14.7l18.7,242.6c1.6,12.3,2.8,14.8,17.5,14.8h207.2c14.7,0,15.9-2.5,17.5-14.8\r\n\t\tl18.7-242.6C396.8,178.1,396,176,379.4,176z"},"children":[{"name":"path","attribs":{"d":"M379.4,176H132.6c-16.6,0-17.4,2.2-16.4,14.7l18.7,242.6c1.6,12.3,2.8,14.8,17.5,14.8h207.2c14.7,0,15.9-2.5,17.5-14.8\r\n\t\tl18.7-242.6C396.8,178.1,396,176,379.4,176z"},"children":[]}]}]}]};exports.trashB=trashB;var trophy={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M479.863,103.342c-0.051-2.833-0.096-5.279-0.096-7.342h-80.835c1.56-34.617,0.512-64,0.512-64s-95.591,0-142.568,0\r\n\tc-0.337,0-0.669,0.022-1,0.056c-0.33-0.034-0.662-0.056-1-0.056c-46.977,0-142.931,0-142.931,0s-1.048,29.383,0.512,64H32.232H32\r\n\tv20.548c0,0.114,0,0.228,0,0.342V128h0.161c0.811,26.096,4.98,60.999,22.333,96.729c14.718,30.307,35.912,55.664,62.996,75.367\r\n\tc22.422,16.312,48.041,28.064,76.205,35.084C209.96,352.539,226,362.109,240,365.957v35.625C238,412.165,225.86,448,141.234,448H128\r\n\tv32h256v-32h-13.178C271.538,448,272,398.666,272,398.666v-32.714c14-3.843,29.73-13.374,45.91-30.644\r\n\tc28.369-7.004,54.072-18.801,76.633-35.213c27.082-19.703,48.262-45.06,62.98-75.367\r\n\tC481.203,175.967,480.326,128.723,479.863,103.342z M83.262,210.745C68.802,180.966,65.018,150.996,64.187,128h50.487\r\n\tc0.868,8.914,1.966,17.701,3.356,25.98c8.513,50.709,20.213,95.493,42.354,135.009C126.546,271.848,99.97,245.149,83.262,210.745z\r\n\t M428.737,210.745c-16.807,34.61-43.603,61.421-77.729,78.55c22.215-39.591,33.816-84.475,42.352-135.314\r\n\tc1.39-8.28,2.488-17.067,3.356-25.98h51.096C446.981,150.996,443.198,180.966,428.737,210.745z"},"children":[]}]};exports.trophy=trophy;var tshirtOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M178.249,85.534c18.761,22.976,43.909,34.009,77.445,34.572l0.269-0.106h0.269c22.638,0,41.169-4.861,56.653-15.091\r\n\tc7.801-5.154,14.721-11.47,21.029-19.382l104.461,31.367L426.59,149.41l-38.743-4.685l-37.912-4.589l2.114,38.133L366.176,433\r\n\tH145.824l14.127-254.729l2.106-37.981l-37.782,4.428l-38.854,4.553l-11.767-32.358L178.249,85.534 M320,48\r\n\tc-13.988,27.227-30.771,40.223-63.769,40.223C223.723,87.676,205.722,75,192,48L32,96l32,88l64-7.5L112,465h288l-16-288.5l64,7.75\r\n\tL480,96L320,48L320,48z"},"children":[]}]};exports.tshirtOutline=tshirtOutline;var tshirt={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M480,96L320,48c-13.988,27.227-30.771,40.223-63.769,40.223C223.723,87.676,205.722,75,192,48L32,96l32,88l64-8l-16,288h288\r\n\tl-16-288l64,8L480,96z"},"children":[]}]};exports.tshirt=tshirt;var umbrella={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M376.2,288c0,0.1,0,0.2,0,0.4C376.2,288.2,376.2,288.1,376.2,288L376.2,288z"},"children":[{"name":"path","attribs":{"d":"M376.2,288c0,0.1,0,0.2,0,0.4C376.2,288.2,376.2,288.1,376.2,288L376.2,288z"},"children":[]}]},{"name":"path","attribs":{"d":"M136.2,288c0,0.1,0,0.2,0,0.4C136.2,288.2,136.2,288.1,136.2,288L136.2,288z"},"children":[{"name":"path","attribs":{"d":"M136.2,288c0,0.1,0,0.2,0,0.4C136.2,288.2,136.2,288.1,136.2,288L136.2,288z"},"children":[]}]}]}]},{"name":"path","attribs":{"d":"M272,48.8c0-0.3,0-0.5,0-0.8c0-8.8-7.2-16-16-16c-8.8,0-16,7.2-16,16c0,0.2,0,0.5,0,0.7c-116.3,8-208,103.1-208,221.4\r\n\t\tc0,3.6,0.2,14.2,0.4,17.8c2.7-26.3,24.7-51.7,51.7-51.7c28.7,0,51.9,23.1,52.1,51.7h0c0.2-28.6,23.4-51.7,52.1-51.7\r\n\t\tc26.5,0,50.9,21.1,51.7,45.5V416c0,17.9-14.1,32-32,32c-17.1,0-31-14.4-31-32c0-8.8-7.2-16-16-16s-16,7.2-16,16\r\n\t\tc0,35.3,28.3,64,63,64c17.3,0,33.5-6.7,45.5-18.8c11.9-12,18.5-28.1,18.5-45.2l0-135.3c3.3-32.7,23.4-44.4,52.1-44.4\r\n\t\tc28.7,0,51.9,23.1,52.1,51.7h0c0.2-28.6,23.4-51.7,52.1-51.7c26.1,0,47.6,26.7,51.4,51.7c0.1-2.8,0.2-9.1,0.2-11.8\r\n\t\tC480,157.8,388.2,57.3,272,48.8z"},"children":[{"name":"path","attribs":{"d":"M272,48.8c0-0.3,0-0.5,0-0.8c0-8.8-7.2-16-16-16c-8.8,0-16,7.2-16,16c0,0.2,0,0.5,0,0.7c-116.3,8-208,103.1-208,221.4\r\n\t\tc0,3.6,0.2,14.2,0.4,17.8c2.7-26.3,24.7-51.7,51.7-51.7c28.7,0,51.9,23.1,52.1,51.7h0c0.2-28.6,23.4-51.7,52.1-51.7\r\n\t\tc26.5,0,50.9,21.1,51.7,45.5V416c0,17.9-14.1,32-32,32c-17.1,0-31-14.4-31-32c0-8.8-7.2-16-16-16s-16,7.2-16,16\r\n\t\tc0,35.3,28.3,64,63,64c17.3,0,33.5-6.7,45.5-18.8c11.9-12,18.5-28.1,18.5-45.2l0-135.3c3.3-32.7,23.4-44.4,52.1-44.4\r\n\t\tc28.7,0,51.9,23.1,52.1,51.7h0c0.2-28.6,23.4-51.7,52.1-51.7c26.1,0,47.6,26.7,51.4,51.7c0.1-2.8,0.2-9.1,0.2-11.8\r\n\t\tC480,157.8,388.2,57.3,272,48.8z"},"children":[]}]}]}]};exports.umbrella=umbrella;var university={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"256,64 32,176.295 64,197.367 64,400 96,416 96,217.849 255.852,320 387.996,234.549 480,174.727 \t"},"children":[{"name":"polygon","attribs":{"points":"256,64 32,176.295 64,197.367 64,400 96,416 96,217.849 255.852,320 387.996,234.549 480,174.727 \t"},"children":[]}]},{"name":"path","attribs":{"d":"M390.13,256L256,343.768L120.531,256L112,337.529C128,349.984,224,416,256.002,448C288,416,384,350.031,400,337.561\r\n\t\tL390.13,256z"},"children":[{"name":"path","attribs":{"d":"M390.13,256L256,343.768L120.531,256L112,337.529C128,349.984,224,416,256.002,448C288,416,384,350.031,400,337.561\r\n\t\tL390.13,256z"},"children":[]}]}]}]};exports.university=university;var unlocked={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M86.4,480h339.2c12.3,0,22.4-9.9,22.4-22.1V246c0-12.2-10-22-22.4-22H161v-30.9c0-27.3,9.9-61.1,28.1-80.3l0,0l0-0.3\r\n\tC206.7,93.9,231,83,255.9,83h0.1h0.1c24.9,0,49.2,10.9,66.8,29.5l0,0.2l0,0.1c11.3,11.9,19.4,29.3,24,47.3h53.4\r\n\tc-5.9-31.3-19.7-61.8-39.2-82.4C334.9,49.9,297.4,32,256.1,32c-0.1,0-0.1,0-0.1,0c0,0-0.1,0-0.1,0c-41.3,0-79,17.9-105.3,45.6\r\n\tc-26.4,27.8-42.6,73.9-42.6,115.4V224H89h-2.6C74,224,64,233.9,64,246v211.9C64,470.1,74,480,86.4,480z"},"children":[]}]};exports.unlocked=unlocked;var upload={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M398.1,233.2c0-1.2,0.2-2.4,0.2-3.6c0-65-51.8-117.6-115.7-117.6c-46.1,0-85.7,27.4-104.3,67c-8.1-4.1-17.2-6.5-26.8-6.5\r\n\tc-29.5,0-54.1,21.9-58.8,50.5C57.3,235.2,32,269.1,32,309c0,50.2,40.1,91,89.5,91H224v-80l-48.2,0l80.2-83.7l80.2,83.6l-48.2,0v80\r\n\th110.3c45.2,0,81.7-37.5,81.7-83.4C480,270.6,443.3,233.3,398.1,233.2z"},"children":[]}]};exports.upload=upload;var usb={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M144,220C144,220,144.1,220.1,144,220L144,220z"},"children":[{"name":"path","attribs":{"d":"M144,220C144,220,144.1,220.1,144,220L144,220z"},"children":[]}]},{"name":"path","attribs":{"d":"M384,128.3c0-17.8-14.4-32.2-32.1-32.2c-17.7,0-32.1,14.4-32.1,32.1c0,12.1,6.7,22.7,16.6,28.2c1.3,1.5,2.2,4.5,2.2,6\r\n\t\tc0,0.1,0,0.2,0,0.4c-0.8,17.6-3.8,31.9-7.1,41.7c-4.3,12.6-38.2,39.6-51.5,42.2c-5.8,1.2-7.9-0.6-7.9-10.2c0,0,0-138.9,0-140.4\r\n\t\ts0.2-3.5,1.9-5c0,0,0,0,0,0c8.6-5.8,14.3-15.6,14.3-26.8c0-17.8-14.4-32.2-32.1-32.2c-17.7,0-32.1,14.4-32.1,32.2\r\n\t\tc0,11.3,5.8,21.3,14.6,27c0,0,0.1,0.1,0.1,0.1c0.1,0.1,0.2,0.1,0.4,0.2c0.2,0.1,0.4,0.2,0.6,0.4c2.3,1.5,3.3,3,3.3,4.2\r\n\t\tc0,1.3,0,189.3,0,196.3s-1.1,12.3-8.4,11.8s-41.7-23.5-51.4-44.1c-4.5-9.5-6.8-18.8-6.8-28h0c0,0,0-0.4,0-0.5\r\n\t\tc0-3.1,0-11.3,3.2-13.6c7.8-5.9,12.8-15.2,12.8-25.7c0-17.8-14.4-32.2-32.1-32.2S128,174.4,128,192.2c0,11.9,6.5,22.3,16,27.8\r\n\t\tc2.4,1.5,3,2.9,3.8,10.6s3,24.6,9.1,39.9c7.3,18.6,20.9,32.6,39.7,45.2c13.6,9.3,25.3,16.6,32.1,26.4s10.2,13.5,10.2,27\r\n\t\tc0,0,0-0.9,0,0c0,12.8-4,14-9.3,17.8c-14.1,8.7-23.5,24.2-23.5,42c0,0.1,0,0.3,0,0.4c0,0.2,0,0.5,0,0.7c0,27.5,22.3,49.8,49.8,49.8\r\n\t\tc27.5,0,49.8-22.3,49.8-49.8c0-13.3-5.2-25.4-13.7-34.3c-2.9-3.2-6-6-9.6-8.3c-7.5-5.2-10.3-11.5-10.3-18.1v-24.1\r\n\t\tc0-25.1,4.1-41.1,11.1-53.3c7.3-12.7,18.3-22.6,35.4-34.2c18.8-12.6,32.2-26.6,39.6-45.2c5.7-14.4,7.6-31,8.6-50.9\r\n\t\tc0.1-1.8,1.4-5.8,3.3-6.8h0C378.4,149,384,139.3,384,128.3z M160.1,208.3c-8.9,0-16.1-7.3-16.1-16.2s7.2-16.2,16.1-16.2\r\n\t\ts16.1,7.3,16.1,16.2S169,208.3,160.1,208.3z M256,80.3c-8.9,0-16.1-7.3-16.1-16.2S247.1,48,256,48s16.1,7.3,16.1,16.2\r\n\t\tS264.9,80.3,256,80.3z M351.9,144.3c-8.9,0-16.1-7.3-16.1-16.2S343,112,351.9,112s16.1,7.3,16.1,16.2S360.8,144.3,351.9,144.3z"},"children":[{"name":"path","attribs":{"d":"M384,128.3c0-17.8-14.4-32.2-32.1-32.2c-17.7,0-32.1,14.4-32.1,32.1c0,12.1,6.7,22.7,16.6,28.2c1.3,1.5,2.2,4.5,2.2,6\r\n\t\tc0,0.1,0,0.2,0,0.4c-0.8,17.6-3.8,31.9-7.1,41.7c-4.3,12.6-38.2,39.6-51.5,42.2c-5.8,1.2-7.9-0.6-7.9-10.2c0,0,0-138.9,0-140.4\r\n\t\ts0.2-3.5,1.9-5c0,0,0,0,0,0c8.6-5.8,14.3-15.6,14.3-26.8c0-17.8-14.4-32.2-32.1-32.2c-17.7,0-32.1,14.4-32.1,32.2\r\n\t\tc0,11.3,5.8,21.3,14.6,27c0,0,0.1,0.1,0.1,0.1c0.1,0.1,0.2,0.1,0.4,0.2c0.2,0.1,0.4,0.2,0.6,0.4c2.3,1.5,3.3,3,3.3,4.2\r\n\t\tc0,1.3,0,189.3,0,196.3s-1.1,12.3-8.4,11.8s-41.7-23.5-51.4-44.1c-4.5-9.5-6.8-18.8-6.8-28h0c0,0,0-0.4,0-0.5\r\n\t\tc0-3.1,0-11.3,3.2-13.6c7.8-5.9,12.8-15.2,12.8-25.7c0-17.8-14.4-32.2-32.1-32.2S128,174.4,128,192.2c0,11.9,6.5,22.3,16,27.8\r\n\t\tc2.4,1.5,3,2.9,3.8,10.6s3,24.6,9.1,39.9c7.3,18.6,20.9,32.6,39.7,45.2c13.6,9.3,25.3,16.6,32.1,26.4s10.2,13.5,10.2,27\r\n\t\tc0,0,0-0.9,0,0c0,12.8-4,14-9.3,17.8c-14.1,8.7-23.5,24.2-23.5,42c0,0.1,0,0.3,0,0.4c0,0.2,0,0.5,0,0.7c0,27.5,22.3,49.8,49.8,49.8\r\n\t\tc27.5,0,49.8-22.3,49.8-49.8c0-13.3-5.2-25.4-13.7-34.3c-2.9-3.2-6-6-9.6-8.3c-7.5-5.2-10.3-11.5-10.3-18.1v-24.1\r\n\t\tc0-25.1,4.1-41.1,11.1-53.3c7.3-12.7,18.3-22.6,35.4-34.2c18.8-12.6,32.2-26.6,39.6-45.2c5.7-14.4,7.6-31,8.6-50.9\r\n\t\tc0.1-1.8,1.4-5.8,3.3-6.8h0C378.4,149,384,139.3,384,128.3z M160.1,208.3c-8.9,0-16.1-7.3-16.1-16.2s7.2-16.2,16.1-16.2\r\n\t\ts16.1,7.3,16.1,16.2S169,208.3,160.1,208.3z M256,80.3c-8.9,0-16.1-7.3-16.1-16.2S247.1,48,256,48s16.1,7.3,16.1,16.2\r\n\t\tS264.9,80.3,256,80.3z M351.9,144.3c-8.9,0-16.1-7.3-16.1-16.2S343,112,351.9,112s16.1,7.3,16.1,16.2S360.8,144.3,351.9,144.3z"},"children":[]}]}]}]};exports.usb=usb;var videocamera={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M367,185.3c0-5.1-4-9.3-9.2-9.3H306v-32.2c0-35.2-29.3-63.8-64.9-63.8H63v48h176.1c4.5,0,9.9,5.6,9.9,10.1V176H41.4\r\n\tc-5.2,0-9.4,4.2-9.4,9.3v170.4v55.7v11.3c0,5.1,4.2,9.3,9.4,9.3h316.4c5.2,0,9.2-4.2,9.2-9.3v-64.5l113,34.7v-88.2v-88.2l-113,34.7\r\n\tV185.3z M258.2,341h-10.9H152h-11.9c-19.8,0-35.9-16-35.9-35.8s16.1-35.8,35.9-35.8c19.8,0,35.9,16.2,35.9,36\r\n\tc0,10-4.2,18.6-10.8,25.6h67.9c-6.6-7-10.8-15.6-10.8-25.6c0-19.8,16.1-35.9,35.9-35.9c19.8,0,35.9,15.9,35.9,35.7\r\n\tS278,341,258.2,341z"},"children":[]}]};exports.videocamera=videocamera;var volumeHigh={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"231,407.8 231,104.3 136.1,192 32,192 32,320 136.1,320 \t"},"children":[{"name":"polygon","attribs":{"points":"231,407.8 231,104.3 136.1,192 32,192 32,320 136.1,320 \t"},"children":[]}]},{"name":"path","attribs":{"d":"M287.1,355.7c20.5-27.9,32.8-62.3,32.8-99.7c0-37.4-12.3-71.8-32.8-99.7l-20.4,15.3c17.4,23.6,27.8,52.7,27.8,84.4\r\n\t\tc0,31.6-10.4,60.8-27.8,84.3L287.1,355.7z"},"children":[{"name":"path","attribs":{"d":"M287.1,355.7c20.5-27.9,32.8-62.3,32.8-99.7c0-37.4-12.3-71.8-32.8-99.7l-20.4,15.3c17.4,23.6,27.8,52.7,27.8,84.4\r\n\t\tc0,31.6-10.4,60.8-27.8,84.3L287.1,355.7z"},"children":[]}]},{"name":"path","attribs":{"d":"M353.7,401.7c30-40.7,48-91.1,48-145.7s-18-104.9-48-145.7l-20.4,15.3c26.9,36.4,43,81.5,43,130.4\r\n\t\tc0,48.9-16.1,93.9-43,130.3L353.7,401.7z"},"children":[{"name":"path","attribs":{"d":"M353.7,401.7c30-40.7,48-91.1,48-145.7s-18-104.9-48-145.7l-20.4,15.3c26.9,36.4,43,81.5,43,130.4\r\n\t\tc0,48.9-16.1,93.9-43,130.3L353.7,401.7z"},"children":[]}]},{"name":"path","attribs":{"d":"M396.7,79.4c36.4,49.3,57.9,110.5,57.9,176.6c0,66.1-21.5,127.2-57.9,176.6l20.5,15.4c39.4-53.6,62.8-120,62.8-192\r\n\t\tc0-72-23.4-138.4-62.8-192L396.7,79.4z"},"children":[{"name":"path","attribs":{"d":"M396.7,79.4c36.4,49.3,57.9,110.5,57.9,176.6c0,66.1-21.5,127.2-57.9,176.6l20.5,15.4c39.4-53.6,62.8-120,62.8-192\r\n\t\tc0-72-23.4-138.4-62.8-192L396.7,79.4z"},"children":[]}]}]}]};exports.volumeHigh=volumeHigh;var volumeLow={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"311,407.7 311,104.4 216.2,192 112,192 112,320 216.2,320 \t"},"children":[{"name":"polygon","attribs":{"points":"311,407.7 311,104.4 216.2,192 112,192 112,320 216.2,320 \t"},"children":[]}]},{"name":"path","attribs":{"d":"M367.2,355.6c20.5-27.8,32.8-62.3,32.8-99.6c0-37.4-12.3-71.8-32.8-99.6l-20.4,15.3c17.4,23.6,27.8,52.7,27.8,84.3\r\n\t\tc0,31.6-10.4,60.7-27.8,84.3L367.2,355.6z"},"children":[{"name":"path","attribs":{"d":"M367.2,355.6c20.5-27.8,32.8-62.3,32.8-99.6c0-37.4-12.3-71.8-32.8-99.6l-20.4,15.3c17.4,23.6,27.8,52.7,27.8,84.3\r\n\t\tc0,31.6-10.4,60.7-27.8,84.3L367.2,355.6z"},"children":[]}]}]}]};exports.volumeLow=volumeLow;var volumeMedium={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"270,407.7 270,104.4 175.3,192 71,192 71,320 175.3,320 \t"},"children":[{"name":"polygon","attribs":{"points":"270,407.7 270,104.4 175.3,192 71,192 71,320 175.3,320 \t"},"children":[]}]},{"name":"path","attribs":{"d":"M326.3,355.6c20.5-27.8,32.8-62.3,32.8-99.6c0-37.4-12.3-71.8-32.8-99.6l-20.4,15.3c17.4,23.6,27.8,52.7,27.8,84.3\r\n\t\tc0,31.6-10.4,60.7-27.8,84.3L326.3,355.6z"},"children":[{"name":"path","attribs":{"d":"M326.3,355.6c20.5-27.8,32.8-62.3,32.8-99.6c0-37.4-12.3-71.8-32.8-99.6l-20.4,15.3c17.4,23.6,27.8,52.7,27.8,84.3\r\n\t\tc0,31.6-10.4,60.7-27.8,84.3L326.3,355.6z"},"children":[]}]},{"name":"path","attribs":{"d":"M392.8,401.6c30-40.7,48-91,48-145.6s-18-104.9-48-145.6l-20.4,15.3c26.9,36.4,43,81.4,43,130.3c0,48.9-16.1,93.8-43,130.3\r\n\t\tL392.8,401.6z"},"children":[{"name":"path","attribs":{"d":"M392.8,401.6c30-40.7,48-91,48-145.6s-18-104.9-48-145.6l-20.4,15.3c26.9,36.4,43,81.4,43,130.3c0,48.9-16.1,93.8-43,130.3\r\n\t\tL392.8,401.6z"},"children":[]}]}]}]};exports.volumeMedium=volumeMedium;var volumeMute={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"255.9,217 191,217 191,295 255.9,295 303,346.3 303,165.7 \t"},"children":[{"name":"polygon","attribs":{"points":"255.9,217 191,217 191,295 255.9,295 303,346.3 303,165.7 \t"},"children":[]}]},{"name":"path","attribs":{"d":"M364.5,60.1c-0.4-0.2-0.7-0.4-1.1-0.6C331.5,42,294.9,32,256,32C132.3,32,32,132.3,32,256c0,84.3,46.6,157.6,115.4,195.9\r\n\t\tc0.4,0.2,0.7,0.5,1.1,0.7C180.5,470,217.1,480,256,480c123.7,0,224-100.3,224-224C480,171.7,433.4,98.3,364.5,60.1z M393.9,355.4\r\n\t\tL336,297.1v76.7l19.6,19.9c-28,20.3-62.3,32.7-99.5,32.7c-21.6,0-42.3-4.2-61.3-11.5c-6.5-2.5-12.9-5.3-19-8.6\r\n\t\tc-53.6-28.7-90.1-85.2-90.1-150.3c0-37.2,12.4-71.4,32.7-99.4l35.3,35.4h76.7l-73.6-73.8c28-20.2,62.1-32.6,99.4-32.6\r\n\t\tc21.6,0,42.2,4.2,61.3,11.5c6.1,2.4,12.2,5,17.9,8c54.2,28.5,91.3,85.3,91.3,150.8C426.5,293.3,414.2,327.4,393.9,355.4z"},"children":[{"name":"path","attribs":{"d":"M364.5,60.1c-0.4-0.2-0.7-0.4-1.1-0.6C331.5,42,294.9,32,256,32C132.3,32,32,132.3,32,256c0,84.3,46.6,157.6,115.4,195.9\r\n\t\tc0.4,0.2,0.7,0.5,1.1,0.7C180.5,470,217.1,480,256,480c123.7,0,224-100.3,224-224C480,171.7,433.4,98.3,364.5,60.1z M393.9,355.4\r\n\t\tL336,297.1v76.7l19.6,19.9c-28,20.3-62.3,32.7-99.5,32.7c-21.6,0-42.3-4.2-61.3-11.5c-6.5-2.5-12.9-5.3-19-8.6\r\n\t\tc-53.6-28.7-90.1-85.2-90.1-150.3c0-37.2,12.4-71.4,32.7-99.4l35.3,35.4h76.7l-73.6-73.8c28-20.2,62.1-32.6,99.4-32.6\r\n\t\tc21.6,0,42.2,4.2,61.3,11.5c6.1,2.4,12.2,5,17.9,8c54.2,28.5,91.3,85.3,91.3,150.8C426.5,293.3,414.2,327.4,393.9,355.4z"},"children":[]}]}]}]};exports.volumeMute=volumeMute;var wand={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"238.059","y":"206.059","transform":"matrix(0.7071 0.7071 -0.7071 0.7071 249.3726 -122.0387)","width":"67.882","height":"67.882"},"children":[{"name":"rect","attribs":{"x":"238.059","y":"206.059","transform":"matrix(0.7071 0.7071 -0.7071 0.7071 249.3726 -122.0387)","width":"67.882","height":"67.882"},"children":[]}]},{"name":"rect","attribs":{"x":"110.058","y":"243.549","transform":"matrix(0.7071 0.7071 -0.7071 0.7071 302.3989 5.9646)","width":"67.884","height":"248.901"},"children":[{"name":"rect","attribs":{"x":"110.058","y":"243.549","transform":"matrix(0.7071 0.7071 -0.7071 0.7071 302.3989 5.9646)","width":"67.884","height":"248.901"},"children":[]}]},{"name":"rect","attribs":{"x":"256","y":"32","width":"32","height":"64"},"children":[{"name":"rect","attribs":{"x":"256","y":"32","width":"32","height":"64"},"children":[]}]},{"name":"rect","attribs":{"x":"380.451","y":"83.55","transform":"matrix(-0.7071 -0.7071 0.7071 -0.7071 595.0701 477.5923)","width":"32","height":"63.999"},"children":[{"name":"rect","attribs":{"x":"380.451","y":"83.55","transform":"matrix(-0.7071 -0.7071 0.7071 -0.7071 595.0701 477.5923)","width":"32","height":"63.999"},"children":[]}]},{"name":"rect","attribs":{"x":"131.549","y":"83.549","transform":"matrix(0.7071 -0.7071 0.7071 0.7071 -38.4898 138.1746)","width":"32","height":"64"},"children":[{"name":"rect","attribs":{"x":"131.549","y":"83.549","transform":"matrix(0.7071 -0.7071 0.7071 0.7071 -38.4898 138.1746)","width":"32","height":"64"},"children":[]}]},{"name":"rect","attribs":{"x":"380.451","y":"332.451","transform":"matrix(0.7071 -0.7071 0.7071 0.7071 -141.5881 387.0668)","width":"32","height":"64"},"children":[{"name":"rect","attribs":{"x":"380.451","y":"332.451","transform":"matrix(0.7071 -0.7071 0.7071 0.7071 -141.5881 387.0668)","width":"32","height":"64"},"children":[]}]},{"name":"rect","attribs":{"x":"416","y":"224","width":"64","height":"32"},"children":[{"name":"rect","attribs":{"x":"416","y":"224","width":"64","height":"32"},"children":[]}]}]}]};exports.wand=wand;var waterdrop={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M271,38.6c-0.3-0.4-0.7-0.7-0.9-1c0,0-0.1-0.1-0.1-0.1c-3.6-3.4-8.5-5.5-13.9-5.5c-5.5,0-10.4,2.1-13.9,5.5\r\n\tc0,0-0.1,0.1-0.1,0.1c-0.3,0.3-0.6,0.6-0.9,1c-6.1,6.3-13.8,14.4-22.4,24.1c-17.4,19.7-38.6,46-58.5,76.8\r\n\tc-33.4,51.8-62.9,116.1-64.1,183.1c0,1.3-0.1,2.7-0.1,4c0,19.7,3.9,38.5,10.9,55.8c4.1,10,9.2,19.4,15.2,28.2\r\n\tC150.7,452.4,200,480,256,480c88.4,0,160-68.7,160-153.4C416,198.7,310.8,79.2,271,38.6z M256,424c-15.8,0-30.7-3.7-43.9-10.1\r\n\tc65.9-14.4,118.4-64.7,135.8-129.5c5.2,12.1,8.2,25.5,8.2,39.6C356,379.2,311.2,424,256,424z"},"children":[]}]};exports.waterdrop=waterdrop;var wifi={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256.1,96L256.1,96c-79.9,0-155.7,29.9-213.9,84.1L32,189.6l9.9,9.8l32.3,32l9.3,9.2l9.6-8.8\r\n\t\tc44.5-40.9,102.3-63.5,162.8-63.5c60.5,0,118.4,22.6,162.8,63.5l9.6,8.8l9.3-9.2l32.3-32l9.9-9.8l-10.2-9.5\r\n\t\tC411.6,125.9,335.7,96,256.1,96z"},"children":[{"name":"path","attribs":{"d":"M256.1,96L256.1,96c-79.9,0-155.7,29.9-213.9,84.1L32,189.6l9.9,9.8l32.3,32l9.3,9.2l9.6-8.8\r\n\t\tc44.5-40.9,102.3-63.5,162.8-63.5c60.5,0,118.4,22.6,162.8,63.5l9.6,8.8l9.3-9.2l32.3-32l9.9-9.8l-10.2-9.5\r\n\t\tC411.6,125.9,335.7,96,256.1,96z"},"children":[]}]},{"name":"path","attribs":{"d":"M397.4,256.4c-38.8-35.1-88.9-54.4-141.1-54.4h-0.1h-0.3h-8.5l-0.1,0.2c-49.2,2-96,21.1-132.6,54.2l-10.5,9.5l10.1,10\r\n\t\tl32.7,32.4l9.1,9l9.6-8.4c25.3-22.2,57.4-34.5,90.3-34.5c33.1,0,65.2,12.3,90.5,34.5l9.6,8.4l9.1-9l32.7-32.4l10.1-10L397.4,256.4z\r\n\t\t"},"children":[{"name":"path","attribs":{"d":"M397.4,256.4c-38.8-35.1-88.9-54.4-141.1-54.4h-0.1h-0.3h-8.5l-0.1,0.2c-49.2,2-96,21.1-132.6,54.2l-10.5,9.5l10.1,10\r\n\t\tl32.7,32.4l9.1,9l9.6-8.4c25.3-22.2,57.4-34.5,90.3-34.5c33.1,0,65.2,12.3,90.5,34.5l9.6,8.4l9.1-9l32.7-32.4l10.1-10L397.4,256.4z\r\n\t\t"},"children":[]}]},{"name":"path","attribs":{"d":"M256.2,416l9.6-9.5l52.8-52.2l10.6-10.5l-11.6-9.5c-15.4-11.4-32.4-20-61.5-20c-29,0-44.9,9.4-61.5,20l-11.5,9.5l10.6,10.5\r\n\t\tl52.8,52.2L256.2,416z"},"children":[{"name":"path","attribs":{"d":"M256.2,416l9.6-9.5l52.8-52.2l10.6-10.5l-11.6-9.5c-15.4-11.4-32.4-20-61.5-20c-29,0-44.9,9.4-61.5,20l-11.5,9.5l10.6,10.5\r\n\t\tl52.8,52.2L256.2,416z"},"children":[]}]}]}]};exports.wifi=wifi;var wineglass={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M294.9,295.4c11-4.1,18-6.9,26.2-11.7c12-6.9,22.8-15.8,31.9-26.1c20.4-22.9,31-51.1,31-86.1c0-49.9-3.7-101.1-8.1-114.7\r\n\t\tC371.5,43,362.4,32,345.2,32H166.7c-17.1,0-26.2,11.1-30.6,24.6c-4.4,13.5-8.1,64.9-8.1,114.8c0,35.1,10.6,63.2,30.9,86.1\r\n\t\tc9.1,10.3,19.9,19.1,31.8,26c8.2,4.8,15.1,7.8,26,11.7s22.3,7.5,22.3,31.8v94.2c0,10.7-2.9,19-11.1,24.8c-2.8,2.1-6.3,4.3-14.3,6.5\r\n\t\tc-31.5,8.6-46.9,15.6-49.2,17.2c-2,1.4-4.5,3.6-4.5,7.1c0,0,13.8,3.1,96.2,3.1c82.4,0,96-3.1,96-3.1c0-3.5-2.5-5.7-4.6-7.1\r\n\t\tc-2.3-1.6-17.8-8.6-49.4-17.2c-8-2.2-12.2-4.4-15.1-6.5C275,440.3,271,432,271,421.3v-94.2C271,303.1,283.9,299.4,294.9,295.4z\r\n\t\t M255.9,270.3c-25.4,0-48.5-10-65.5-26.3c-2.7-2.4-5.2-5-7.6-7.7c-15.6-17.5-22.4-36.7-23.1-64.8C159,143.3,159.6,99,167,64h177\r\n\t\tc6.3,24,9.1,76.8,7.7,107.2c-1.4,30.5-7.2,47.3-22.8,64.9c-2,2.2-3.9,4.3-6.1,6.4C305.7,259.7,282,270.3,255.9,270.3z"},"children":[{"name":"path","attribs":{"d":"M294.9,295.4c11-4.1,18-6.9,26.2-11.7c12-6.9,22.8-15.8,31.9-26.1c20.4-22.9,31-51.1,31-86.1c0-49.9-3.7-101.1-8.1-114.7\r\n\t\tC371.5,43,362.4,32,345.2,32H166.7c-17.1,0-26.2,11.1-30.6,24.6c-4.4,13.5-8.1,64.9-8.1,114.8c0,35.1,10.6,63.2,30.9,86.1\r\n\t\tc9.1,10.3,19.9,19.1,31.8,26c8.2,4.8,15.1,7.8,26,11.7s22.3,7.5,22.3,31.8v94.2c0,10.7-2.9,19-11.1,24.8c-2.8,2.1-6.3,4.3-14.3,6.5\r\n\t\tc-31.5,8.6-46.9,15.6-49.2,17.2c-2,1.4-4.5,3.6-4.5,7.1c0,0,13.8,3.1,96.2,3.1c82.4,0,96-3.1,96-3.1c0-3.5-2.5-5.7-4.6-7.1\r\n\t\tc-2.3-1.6-17.8-8.6-49.4-17.2c-8-2.2-12.2-4.4-15.1-6.5C275,440.3,271,432,271,421.3v-94.2C271,303.1,283.9,299.4,294.9,295.4z\r\n\t\t M255.9,270.3c-25.4,0-48.5-10-65.5-26.3c-2.7-2.4-5.2-5-7.6-7.7c-15.6-17.5-22.4-36.7-23.1-64.8C159,143.3,159.6,99,167,64h177\r\n\t\tc6.3,24,9.1,76.8,7.7,107.2c-1.4,30.5-7.2,47.3-22.8,64.9c-2,2.2-3.9,4.3-6.1,6.4C305.7,259.7,282,270.3,255.9,270.3z"},"children":[]}]},{"name":"path","attribs":{"d":"M336.2,170.6c0-7.5-0.1-31.9-1.3-52.6c-0.5-8.4-1.2-16-2.1-22h-153c-0.9,3-1.8,11.6-2.5,22c-1.3,18.9-2.1,43.9-1.5,52.9\r\n\t\tc0.9,13.8,1.5,20.6,4.5,29.4c3.1,9.1,8,17.3,14.6,24.7c2,2.3,4.1,4.4,6.4,6.4c14.2,13.6,33.5,22,54.7,22c21.8,0,41.5-8.8,55.9-23.1\r\n\t\tc1.8-1.7,3.5-3.5,5.2-5.3c6.6-7.4,11.4-15.5,14.5-24.6C334.7,191.4,336.2,181.1,336.2,170.6z M320,179c0,5-3.9,8.1-8.3,8.1\r\n\t\tc-1.6,0-3-0.5-4.3-1.3c-2.2-1.4-3.5-3.9-3.5-6.7v-26c0-4.4,3.6-8,8-8s8,3.6,8,8V179z M318.9,131.8c-1.2,1.8-3,3-5.1,3.5\r\n\t\tc-2.1,0.4-4.3,0-6-1.1c-1.8-1.2-3-3-3.5-5.1c-0.4-2.1,0-4.3,1.1-6c1.2-1.8,3-3,5.1-3.5c2.1-0.4,4.3,0,6,1.1c1.8,1.2,3,3,3.5,5.1\r\n\t\tC320.5,127.8,320.1,130,318.9,131.8z"},"children":[{"name":"path","attribs":{"d":"M336.2,170.6c0-7.5-0.1-31.9-1.3-52.6c-0.5-8.4-1.2-16-2.1-22h-153c-0.9,3-1.8,11.6-2.5,22c-1.3,18.9-2.1,43.9-1.5,52.9\r\n\t\tc0.9,13.8,1.5,20.6,4.5,29.4c3.1,9.1,8,17.3,14.6,24.7c2,2.3,4.1,4.4,6.4,6.4c14.2,13.6,33.5,22,54.7,22c21.8,0,41.5-8.8,55.9-23.1\r\n\t\tc1.8-1.7,3.5-3.5,5.2-5.3c6.6-7.4,11.4-15.5,14.5-24.6C334.7,191.4,336.2,181.1,336.2,170.6z M320,179c0,5-3.9,8.1-8.3,8.1\r\n\t\tc-1.6,0-3-0.5-4.3-1.3c-2.2-1.4-3.5-3.9-3.5-6.7v-26c0-4.4,3.6-8,8-8s8,3.6,8,8V179z M318.9,131.8c-1.2,1.8-3,3-5.1,3.5\r\n\t\tc-2.1,0.4-4.3,0-6-1.1c-1.8-1.2-3-3-3.5-5.1c-0.4-2.1,0-4.3,1.1-6c1.2-1.8,3-3,5.1-3.5c2.1-0.4,4.3,0,6,1.1c1.8,1.2,3,3,3.5,5.1\r\n\t\tC320.5,127.8,320.1,130,318.9,131.8z"},"children":[]}]}]}]};exports.wineglass=wineglass;var woman={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M190.4,148.6L161,252.9c-6.3,22.8,20.7,31.7,27.3,10.3l26.3-96.2h7.4l-45.2,169H219v127c0,23,32,23,32,0V336h10v127\r\n\t\tc0,23,31,23,31,0V336h43.4l-46.2-169h8.4l26.3,96.2c6.5,21.9,33.3,12.5,27.3-10.2l-29.4-104.4c-4-11.8-18.2-32.6-42-33.6h-47.3\r\n\t\tC207.9,116,193.8,136.6,190.4,148.6z"},"children":[{"name":"path","attribs":{"d":"M190.4,148.6L161,252.9c-6.3,22.8,20.7,31.7,27.3,10.3l26.3-96.2h7.4l-45.2,169H219v127c0,23,32,23,32,0V336h10v127\r\n\t\tc0,23,31,23,31,0V336h43.4l-46.2-169h8.4l26.3,96.2c6.5,21.9,33.3,12.5,27.3-10.2l-29.4-104.4c-4-11.8-18.2-32.6-42-33.6h-47.3\r\n\t\tC207.9,116,193.8,136.6,190.4,148.6z"},"children":[]}]},{"name":"path","attribs":{"d":"M292.6,69.2c0-20.6-16.4-37.3-36.6-37.3c-20.2,0-36.6,16.7-36.6,37.3c0,20.6,16.4,37.3,36.6,37.3\r\n\t\tC276.2,106.5,292.6,89.8,292.6,69.2z"},"children":[{"name":"path","attribs":{"d":"M292.6,69.2c0-20.6-16.4-37.3-36.6-37.3c-20.2,0-36.6,16.7-36.6,37.3c0,20.6,16.4,37.3,36.6,37.3\r\n\t\tC276.2,106.5,292.6,89.8,292.6,69.2z"},"children":[]}]}]}]};exports.woman=woman;var wrench={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M461.9,114.9l-56.5,56.7l-55.1-10l-9.9-55.1l56.5-56.7c-12.7-12.7-30.8-18.5-44.2-17.8c-13.5,0.7-42.3,8.3-64.6,32\r\n\tc-21.6,22.8-44.3,65.3-24.2,112.5c2.4,5.7,5.1,13.2-2.9,21.2c-8.1,8-215,202.8-215,202.8c-19.4,16.7-18,47.6-0.1,65.6\r\n\tc18.2,17.9,48.9,19,65.6-0.3c0,0,193.2-205.8,202.7-215.1c8.5-8.3,16.1-5.5,21.2-2.9c35.6,18.4,86.3,2.4,112.6-23.9\r\n\tc26.3-26.3,31.1-51.7,31.9-64.7C480.7,146.3,476.2,129.2,461.9,114.9z M91.3,443.2c-6.3,6.2-16.5,6.2-22.7,0\r\n\tc-6.2-6.3-6.2-16.5,0-22.7c6.3-6.2,16.5-6.2,22.7,0C97.5,426.8,97.5,437,91.3,443.2z"},"children":[]}]};exports.wrench=wrench;var xbox={"viewBox":"0 0 512 512","children":[{"name":"style","attribs":{"type":"text/css"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"class":"st0","d":"M126.8,248.3c39.7-58.6,77.9-92.8,77.9-92.8s-42.1-48.9-92.8-67.4l-3.3-0.8C61.7,128.4,32,188.7,32,256\r\n\t\tc0,50.7,16.9,97.5,45.2,135C77.2,386.6,77.8,320.7,126.8,248.3z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M126.8,248.3c39.7-58.6,77.9-92.8,77.9-92.8s-42.1-48.9-92.8-67.4l-3.3-0.8C61.7,128.4,32,188.7,32,256\r\n\t\tc0,50.7,16.9,97.5,45.2,135C77.2,386.6,77.8,320.7,126.8,248.3z"},"children":[]}]},{"name":"path","attribs":{"class":"st0","d":"M480,256c0-67.3-29.7-127.6-76.6-168.7l-3.2,0.9c-50.7,18.5-92.9,67.4-92.9,67.4s38.2,34.2,77.9,92.8\r\n\t\tc49,72.4,49.6,138.3,49.5,142.7C463.2,353.5,480,306.7,480,256z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M480,256c0-67.3-29.7-127.6-76.6-168.7l-3.2,0.9c-50.7,18.5-92.9,67.4-92.9,67.4s38.2,34.2,77.9,92.8\r\n\t\tc49,72.4,49.6,138.3,49.5,142.7C463.2,353.5,480,306.7,480,256z"},"children":[]}]},{"name":"path","attribs":{"class":"st0","d":"M201.2,80.9c29.3,13.1,54.6,34.6,54.6,34.6s25.5-21.4,54.8-34.6c36.8-16.5,64.9-11.3,72.3-9.5\r\n\t\tC346.8,46.6,303.1,32,256,32c-47.1,0-90.8,14.6-126.9,39.4C136.3,69.6,164.3,64.3,201.2,80.9z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M201.2,80.9c29.3,13.1,54.6,34.6,54.6,34.6s25.5-21.4,54.8-34.6c36.8-16.5,64.9-11.3,72.3-9.5\r\n\t\tC346.8,46.6,303.1,32,256,32c-47.1,0-90.8,14.6-126.9,39.4C136.3,69.6,164.3,64.3,201.2,80.9z"},"children":[]}]},{"name":"path","attribs":{"class":"st0","d":"M358.7,292.9C312.4,236,255.8,199,255.8,199s-56.3,37-102.7,93.9c-39.8,48.9-54.6,84.8-62.6,107.8l-1.3,4.8\r\n\t\tc41,45.7,100.5,74.5,166.8,74.5c66.3,0,125.8-28.8,166.8-74.5l-1.4-4.8C413.4,377.7,398.5,341.8,358.7,292.9z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M358.7,292.9C312.4,236,255.8,199,255.8,199s-56.3,37-102.7,93.9c-39.8,48.9-54.6,84.8-62.6,107.8l-1.3,4.8\r\n\t\tc41,45.7,100.5,74.5,166.8,74.5c66.3,0,125.8-28.8,166.8-74.5l-1.4-4.8C413.4,377.7,398.5,341.8,358.7,292.9z"},"children":[]}]}]}]};exports.xbox=xbox; \ No newline at end of file diff --git a/dist/ionicons/information.js b/dist/ionicons/information.js new file mode 100644 index 000000000..ae432e5fd --- /dev/null +++ b/dist/ionicons/information.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.information = void 0; +var information = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "288,448 288,192 192,192 192,208 224,208 224,448 192,448 192,464 320,464 320,448 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "288,448 288,192 192,192 192,208 224,208 224,448 192,448 192,464 320,464 320,448 \t" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M255.8,144.5c26.6,0,48.2-21.6,48.2-48.2s-21.6-48.2-48.2-48.2c-26.6,0-48.2,21.6-48.2,48.2S229.2,144.5,255.8,144.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M255.8,144.5c26.6,0,48.2-21.6,48.2-48.2s-21.6-48.2-48.2-48.2c-26.6,0-48.2,21.6-48.2,48.2S229.2,144.5,255.8,144.5z" + }, + "children": [] + }] + }] + }] +}; +exports.information = information; \ No newline at end of file diff --git a/dist/ionicons/informationCircled.js b/dist/ionicons/informationCircled.js new file mode 100644 index 000000000..4d30936fd --- /dev/null +++ b/dist/ionicons/informationCircled.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.informationCircled = void 0; +var informationCircled = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M480,253C478.3,129.3,376.7,30.4,253,32S30.4,135.3,32,259c1.7,123.7,103.3,222.6,227,221C382.7,478.3,481.7,376.7,480,253\r\n\t\tz M256,111.9c17.7,0,32,14.3,32,32s-14.3,32-32,32c-17.7,0-32-14.3-32-32S238.3,111.9,256,111.9z M300,395h-88v-11h22V224h-22v-12\r\n\t\th66v172h22V395z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M480,253C478.3,129.3,376.7,30.4,253,32S30.4,135.3,32,259c1.7,123.7,103.3,222.6,227,221C382.7,478.3,481.7,376.7,480,253\r\n\t\tz M256,111.9c17.7,0,32,14.3,32,32s-14.3,32-32,32c-17.7,0-32-14.3-32-32S238.3,111.9,256,111.9z M300,395h-88v-11h22V224h-22v-12\r\n\t\th66v172h22V395z" + }, + "children": [] + }] + }] + }] +}; +exports.informationCircled = informationCircled; \ No newline at end of file diff --git a/dist/ionicons/ionic.js b/dist/ionicons/ionic.js new file mode 100644 index 000000000..0d20abe4c --- /dev/null +++ b/dist/ionicons/ionic.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ionic = void 0; +var ionic = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M423.592,132.804C427.006,127.714,429,121.59,429,115c0-17.675-14.33-32-32-32c-6.59,0-12.714,1.994-17.805,5.409\r\n\t\tC344.709,63.015,302.11,48,256,48C141.125,48,48,141.125,48,256c0,114.877,93.125,208,208,208c114.873,0,208-93.123,208-208\r\n\t\tC464,209.889,448.984,167.29,423.592,132.804z M391.83,391.832c-17.646,17.646-38.191,31.499-61.064,41.174\r\n\t\tc-23.672,10.012-48.826,15.089-74.766,15.089c-25.94,0-51.095-5.077-74.767-15.089c-22.873-9.675-43.417-23.527-61.064-41.174\r\n\t\ts-31.5-38.191-41.174-61.064C68.982,307.096,63.905,281.94,63.905,256c0-25.94,5.077-51.095,15.089-74.767\r\n\t\tc9.674-22.873,23.527-43.417,41.174-61.064s38.191-31.5,61.064-41.174C204.905,68.982,230.06,63.905,256,63.905\r\n\t\tc25.939,0,51.094,5.077,74.766,15.089c13.446,5.687,26.08,12.83,37.802,21.327C366.293,104.719,365,109.707,365,115\r\n\t\tc0,17.675,14.327,32,32,32c5.293,0,10.28-1.293,14.678-3.568c8.498,11.721,15.641,24.355,21.327,37.801\r\n\t\tc10.013,23.672,15.09,48.827,15.09,74.767c0,25.939-5.077,51.096-15.09,74.768C423.33,353.641,409.478,374.186,391.83,391.832z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M423.592,132.804C427.006,127.714,429,121.59,429,115c0-17.675-14.33-32-32-32c-6.59,0-12.714,1.994-17.805,5.409\r\n\t\tC344.709,63.015,302.11,48,256,48C141.125,48,48,141.125,48,256c0,114.877,93.125,208,208,208c114.873,0,208-93.123,208-208\r\n\t\tC464,209.889,448.984,167.29,423.592,132.804z M391.83,391.832c-17.646,17.646-38.191,31.499-61.064,41.174\r\n\t\tc-23.672,10.012-48.826,15.089-74.766,15.089c-25.94,0-51.095-5.077-74.767-15.089c-22.873-9.675-43.417-23.527-61.064-41.174\r\n\t\ts-31.5-38.191-41.174-61.064C68.982,307.096,63.905,281.94,63.905,256c0-25.94,5.077-51.095,15.089-74.767\r\n\t\tc9.674-22.873,23.527-43.417,41.174-61.064s38.191-31.5,61.064-41.174C204.905,68.982,230.06,63.905,256,63.905\r\n\t\tc25.939,0,51.094,5.077,74.766,15.089c13.446,5.687,26.08,12.83,37.802,21.327C366.293,104.719,365,109.707,365,115\r\n\t\tc0,17.675,14.327,32,32,32c5.293,0,10.28-1.293,14.678-3.568c8.498,11.721,15.641,24.355,21.327,37.801\r\n\t\tc10.013,23.672,15.09,48.827,15.09,74.767c0,25.939-5.077,51.096-15.09,74.768C423.33,353.641,409.478,374.186,391.83,391.832z" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "256.003", + "cy": "256", + "r": "96" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "256.003", + "cy": "256", + "r": "96" + }, + "children": [] + }] + }] + }] +}; +exports.ionic = ionic; \ No newline at end of file diff --git a/dist/ionicons/iosAlarm.js b/dist/ionicons/iosAlarm.js new file mode 100644 index 000000000..ff85452f3 --- /dev/null +++ b/dist/ionicons/iosAlarm.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosAlarm = void 0; +var iosAlarm = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M438.4,192.4c12.2-14.2,19.6-32.3,19.6-52.2c0.1-43.8-35.5-79.6-80.4-82.1c-1.6-0.1-3.1-0.1-4.8-0.1\r\n\t\tc-20.4-0.1-39.1,6.8-53.8,18.1l53.8,52.4l-10.6,10.4c-25.7-19.4-57.2-32-91.2-34.9v-0.1c0-8.5-7-15.5-15.5-15.5s-15.5,7-15.5,15.5\r\n\t\tv0.1c-34,2.9-65,15.5-90.6,34.9L139,128.6l53.8-52.4c-14.7-11.4-33.4-18.2-53.7-18.1c-1.6,0-3.2,0.1-4.8,0.1\r\n\t\tc-45,2.5-80.6,38.3-80.4,82.1c0,19.8,7.4,38,19.6,52.2l54-52.6l9.5,9.5c-35.1,31.9-57.1,78-57.1,129.2c0,43.9,16.2,84,43,114.7\r\n\t\tl-36.4,44.6L99,448l35.2-42.9c31.6,30.2,74.4,48.9,121.6,48.9h0.1c0,0,0.2,0,0.3,0c47.2,0,90.2-18.7,121.8-48.9l35.2,43l12.3-10.1\r\n\t\tL389,393.3c26.8-30.8,43-70.9,43-114.7c0-51.1-22-97.3-57.2-129.3l9.5-9.5L438.4,192.4z M272,304H160v-16h96V160h16V304z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M438.4,192.4c12.2-14.2,19.6-32.3,19.6-52.2c0.1-43.8-35.5-79.6-80.4-82.1c-1.6-0.1-3.1-0.1-4.8-0.1\r\n\t\tc-20.4-0.1-39.1,6.8-53.8,18.1l53.8,52.4l-10.6,10.4c-25.7-19.4-57.2-32-91.2-34.9v-0.1c0-8.5-7-15.5-15.5-15.5s-15.5,7-15.5,15.5\r\n\t\tv0.1c-34,2.9-65,15.5-90.6,34.9L139,128.6l53.8-52.4c-14.7-11.4-33.4-18.2-53.7-18.1c-1.6,0-3.2,0.1-4.8,0.1\r\n\t\tc-45,2.5-80.6,38.3-80.4,82.1c0,19.8,7.4,38,19.6,52.2l54-52.6l9.5,9.5c-35.1,31.9-57.1,78-57.1,129.2c0,43.9,16.2,84,43,114.7\r\n\t\tl-36.4,44.6L99,448l35.2-42.9c31.6,30.2,74.4,48.9,121.6,48.9h0.1c0,0,0.2,0,0.3,0c47.2,0,90.2-18.7,121.8-48.9l35.2,43l12.3-10.1\r\n\t\tL389,393.3c26.8-30.8,43-70.9,43-114.7c0-51.1-22-97.3-57.2-129.3l9.5-9.5L438.4,192.4z M272,304H160v-16h96V160h16V304z" + }, + "children": [] + }] + }] + }] +}; +exports.iosAlarm = iosAlarm; \ No newline at end of file diff --git a/dist/ionicons/iosAlarmOutline.js b/dist/ionicons/iosAlarmOutline.js new file mode 100644 index 000000000..ae48f35e2 --- /dev/null +++ b/dist/ionicons/iosAlarmOutline.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosAlarmOutline = void 0; +var iosAlarmOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M438.4,192.4c12.2-14.2,19.6-32.3,19.6-52.2c0.1-43.8-35.5-79.6-80.4-82.1c-1.6-0.1-3.1-0.1-4.8-0.1\r\n\t\t\tc-20.4-0.1-39.1,6.8-53.8,18.1l53.8,52.4l-10.5,10.4c-25.7-19.4-57-32-91-34.9v-0.1c0-8.5-7-15.5-15.5-15.5\r\n\t\t\tc-8.5,0-15.5,7-15.5,15.5v0.1c-33.9,2.9-65.1,15.5-90.7,34.9l-10.4-10.4l53.8-52.4c-14.7-11.4-33.4-18.2-53.7-18.1\r\n\t\t\tc-1.6,0-3.2,0.1-4.8,0.1c-45,2.5-80.6,38.3-80.4,82.1c0,19.8,7.4,38,19.6,52.2l54-52.6l9.5,9.5c-35.1,31.9-57.1,78-57.1,129.2\r\n\t\t\tc0,43.9,16.2,84,43,114.7l-36.4,44.6L99,448l35.2-42.9c31.6,30.2,74.4,48.9,121.6,48.9h0.1c0,0,0.2,0,0.3,0\r\n\t\t\tc47.2,0,90.2-18.7,121.8-48.9l35.2,43l12.3-10.1L389,393.3c26.8-30.8,43-70.9,43-114.7c0-51.1-22-97.3-57.2-129.3l9.5-9.5\r\n\t\t\tL438.4,192.4z M76.2,167.8c-4.2-8.6-6.4-18.4-6.5-28c-0.1-35.1,28.4-64.6,65.5-66.8c12.7-0.7,23.1,1.4,32.1,6.1L76.2,167.8z\r\n\t\t\t M415.9,276.5c0,87.7-72,157.1-160.1,157.1C167.8,433.6,96,364.2,96,276.5c0-87.7,71.8-158.7,159.9-158.7\r\n\t\t\tC344,117.8,415.9,188.7,415.9,276.5z M344.7,79.2c8.8-4.8,19.3-6.8,32.1-6.1c37.2,2,65.6,31.5,65.5,66.8c0,9.6-2.3,19.4-6.5,28.1\r\n\t\t\tL344.7,79.2z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M438.4,192.4c12.2-14.2,19.6-32.3,19.6-52.2c0.1-43.8-35.5-79.6-80.4-82.1c-1.6-0.1-3.1-0.1-4.8-0.1\r\n\t\t\tc-20.4-0.1-39.1,6.8-53.8,18.1l53.8,52.4l-10.5,10.4c-25.7-19.4-57-32-91-34.9v-0.1c0-8.5-7-15.5-15.5-15.5\r\n\t\t\tc-8.5,0-15.5,7-15.5,15.5v0.1c-33.9,2.9-65.1,15.5-90.7,34.9l-10.4-10.4l53.8-52.4c-14.7-11.4-33.4-18.2-53.7-18.1\r\n\t\t\tc-1.6,0-3.2,0.1-4.8,0.1c-45,2.5-80.6,38.3-80.4,82.1c0,19.8,7.4,38,19.6,52.2l54-52.6l9.5,9.5c-35.1,31.9-57.1,78-57.1,129.2\r\n\t\t\tc0,43.9,16.2,84,43,114.7l-36.4,44.6L99,448l35.2-42.9c31.6,30.2,74.4,48.9,121.6,48.9h0.1c0,0,0.2,0,0.3,0\r\n\t\t\tc47.2,0,90.2-18.7,121.8-48.9l35.2,43l12.3-10.1L389,393.3c26.8-30.8,43-70.9,43-114.7c0-51.1-22-97.3-57.2-129.3l9.5-9.5\r\n\t\t\tL438.4,192.4z M76.2,167.8c-4.2-8.6-6.4-18.4-6.5-28c-0.1-35.1,28.4-64.6,65.5-66.8c12.7-0.7,23.1,1.4,32.1,6.1L76.2,167.8z\r\n\t\t\t M415.9,276.5c0,87.7-72,157.1-160.1,157.1C167.8,433.6,96,364.2,96,276.5c0-87.7,71.8-158.7,159.9-158.7\r\n\t\t\tC344,117.8,415.9,188.7,415.9,276.5z M344.7,79.2c8.8-4.8,19.3-6.8,32.1-6.1c37.2,2,65.6,31.5,65.5,66.8c0,9.6-2.3,19.4-6.5,28.1\r\n\t\t\tL344.7,79.2z" + }, + "children": [] + }] + }] + }] + }, { + "name": "polygon", + "attribs": { + "points": "256,160 256,288 160,288 160,304 272,304 272,160 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "256,160 256,288 160,288 160,304 272,304 272,160 \t" + }, + "children": [] + }] + }] + }] +}; +exports.iosAlarmOutline = iosAlarmOutline; \ No newline at end of file diff --git a/dist/ionicons/iosAlbums.js b/dist/ionicons/iosAlbums.js new file mode 100644 index 000000000..ccfa5d5b7 --- /dev/null +++ b/dist/ionicons/iosAlbums.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosAlbums = void 0; +var iosAlbums = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M480,128H32v320h448V128L480,128z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M480,128H32v320h448V128L480,128z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "72", + "y": "96", + "width": "368", + "height": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "72", + "y": "96", + "width": "368", + "height": "16" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "104", + "y": "64", + "width": "304", + "height": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "104", + "y": "64", + "width": "304", + "height": "16" + }, + "children": [] + }] + }] + }] +}; +exports.iosAlbums = iosAlbums; \ No newline at end of file diff --git a/dist/ionicons/iosAlbumsOutline.js b/dist/ionicons/iosAlbumsOutline.js new file mode 100644 index 000000000..13e671f89 --- /dev/null +++ b/dist/ionicons/iosAlbumsOutline.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosAlbumsOutline = void 0; +var iosAlbumsOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M464,144v288H48V144H464 M480,128H32v320h448V128L480,128z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M464,144v288H48V144H464 M480,128H32v320h448V128L480,128z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "72", + "y": "96", + "width": "368", + "height": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "72", + "y": "96", + "width": "368", + "height": "16" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "104", + "y": "64", + "width": "304", + "height": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "104", + "y": "64", + "width": "304", + "height": "16" + }, + "children": [] + }] + }] + }] +}; +exports.iosAlbumsOutline = iosAlbumsOutline; \ No newline at end of file diff --git a/dist/ionicons/iosAmericanfootball.js b/dist/ionicons/iosAmericanfootball.js new file mode 100644 index 000000000..22823084e --- /dev/null +++ b/dist/ionicons/iosAmericanfootball.js @@ -0,0 +1,35 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosAmericanfootball = void 0; +var iosAmericanfootball = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M378.605,133.395C305.902,60.691,189.381,47.998,116.85,48c-38.926,0.001-65.191,3.658-65.191,3.658\r\n\t\t\ts-29.984,215.227,81.736,326.947C206.099,451.309,322.617,464,395.148,464c38.927,0,65.193-3.658,65.193-3.658\r\n\t\t\tS490.327,245.116,378.605,133.395z M68.124,194.728L194.707,68.146c6.123,0.861,12.164,1.825,18.112,2.899L71.025,212.838\r\n\t\t\tC69.955,206.901,68.987,200.862,68.124,194.728z M267.312,335.195l28.688-28.688l-22.627-22.628l-28.688,28.688l-11.313-11.312\r\n\t\t\tl28.688-28.688l-22.627-22.627l-28.688,28.688l-11.313-11.312l28.688-28.688l-22.628-22.628l-28.688,28.688l-11.313-11.312\r\n\t\t\tl28.689-28.689l-22.628-22.627l-28.688,28.688l-11.314-11.313l67.884-67.883l11.313,11.314l-28.688,28.688l22.628,22.627\r\n\t\t\tl28.688-28.688l11.313,11.313l-28.688,28.688l22.628,22.628l28.688-28.688l11.314,11.313l-28.688,28.688l22.627,22.627\r\n\t\t\tl28.688-28.688l11.313,11.312l-28.688,28.688l22.628,22.628l28.688-28.688l11.312,11.313l-28.688,28.688l22.627,22.627\r\n\t\t\tl28.688-28.688l11.314,11.312l-67.883,67.884l-11.313-11.313l28.688-28.688l-22.628-22.628l-28.688,28.688L267.312,335.195z\r\n\t\t\t M317.259,443.891c-6.121-0.863-12.159-1.83-18.104-2.906L440.979,299.16c1.071,5.938,2.038,11.977,2.901,18.111L317.259,443.891z\r\n\t\t\t" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M378.605,133.395C305.902,60.691,189.381,47.998,116.85,48c-38.926,0.001-65.191,3.658-65.191,3.658\r\n\t\t\ts-29.984,215.227,81.736,326.947C206.099,451.309,322.617,464,395.148,464c38.927,0,65.193-3.658,65.193-3.658\r\n\t\t\tS490.327,245.116,378.605,133.395z M68.124,194.728L194.707,68.146c6.123,0.861,12.164,1.825,18.112,2.899L71.025,212.838\r\n\t\t\tC69.955,206.901,68.987,200.862,68.124,194.728z M267.312,335.195l28.688-28.688l-22.627-22.628l-28.688,28.688l-11.313-11.312\r\n\t\t\tl28.688-28.688l-22.627-22.627l-28.688,28.688l-11.313-11.312l28.688-28.688l-22.628-22.628l-28.688,28.688l-11.313-11.312\r\n\t\t\tl28.689-28.689l-22.628-22.627l-28.688,28.688l-11.314-11.313l67.884-67.883l11.313,11.314l-28.688,28.688l22.628,22.627\r\n\t\t\tl28.688-28.688l11.313,11.313l-28.688,28.688l22.628,22.628l28.688-28.688l11.314,11.313l-28.688,28.688l22.627,22.627\r\n\t\t\tl28.688-28.688l11.313,11.312l-28.688,28.688l22.628,22.628l28.688-28.688l11.312,11.313l-28.688,28.688l22.627,22.627\r\n\t\t\tl28.688-28.688l11.314,11.312l-67.883,67.884l-11.313-11.313l28.688-28.688l-22.628-22.628l-28.688,28.688L267.312,335.195z\r\n\t\t\t M317.259,443.891c-6.121-0.863-12.159-1.83-18.104-2.906L440.979,299.16c1.071,5.938,2.038,11.977,2.901,18.111L317.259,443.891z\r\n\t\t\t" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.iosAmericanfootball = iosAmericanfootball; \ No newline at end of file diff --git a/dist/ionicons/iosAmericanfootballOutline.js b/dist/ionicons/iosAmericanfootballOutline.js new file mode 100644 index 000000000..20534b7ba --- /dev/null +++ b/dist/ionicons/iosAmericanfootballOutline.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosAmericanfootballOutline = void 0; +var iosAmericanfootballOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M378.605,133.395C305.902,60.691,189.38,47.998,116.85,48c-38.926,0.001-65.191,3.658-65.191,3.658\r\n\t\ts-29.984,215.227,81.736,326.947C206.099,451.309,322.617,464,395.149,464c38.926,0,65.192-3.658,65.192-3.658\r\n\t\tS490.326,245.116,378.605,133.395z M65.142,65.208C76.137,64.194,94.374,63,116.856,63H117l-0.068-0.071\r\n\t\tc27.167,0,53.167,1.754,77.792,5.22l-126.6,126.581c-1.025-7.283-1.91-14.697-2.64-22.246\r\n\t\tC60.898,125.049,63.398,84.256,65.142,65.208z M143.9,368.102c-23.85-23.852-42.793-54.938-56.304-92.396\r\n\t\tc-6.973-19.332-12.51-40.373-16.57-62.866L212.838,71.05c10.672,1.929,21.064,4.191,31.141,6.804\r\n\t\tc52.027,13.492,93.783,35.708,124.139,66.064c23.851,23.85,42.786,54.928,56.297,92.386c6.974,19.333,12.509,40.375,16.567,62.871\r\n\t\tL299.17,440.986c-10.66-1.93-21.041-4.191-31.104-6.801C216.036,420.696,174.26,398.459,143.9,368.102z M446.861,446.868\r\n\t\tc-10.994,1.012-29.23,2.275-51.71,2.275c-27.192,0-53.225-1.77-77.876-5.25l126.607-126.607c1.024,7.279,1.908,14.688,2.638,22.233\r\n\t\tC451.108,386.956,448.606,427.817,446.861,446.868z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M378.605,133.395C305.902,60.691,189.38,47.998,116.85,48c-38.926,0.001-65.191,3.658-65.191,3.658\r\n\t\ts-29.984,215.227,81.736,326.947C206.099,451.309,322.617,464,395.149,464c38.926,0,65.192-3.658,65.192-3.658\r\n\t\tS490.326,245.116,378.605,133.395z M65.142,65.208C76.137,64.194,94.374,63,116.856,63H117l-0.068-0.071\r\n\t\tc27.167,0,53.167,1.754,77.792,5.22l-126.6,126.581c-1.025-7.283-1.91-14.697-2.64-22.246\r\n\t\tC60.898,125.049,63.398,84.256,65.142,65.208z M143.9,368.102c-23.85-23.852-42.793-54.938-56.304-92.396\r\n\t\tc-6.973-19.332-12.51-40.373-16.57-62.866L212.838,71.05c10.672,1.929,21.064,4.191,31.141,6.804\r\n\t\tc52.027,13.492,93.783,35.708,124.139,66.064c23.851,23.85,42.786,54.928,56.297,92.386c6.974,19.333,12.509,40.375,16.567,62.871\r\n\t\tL299.17,440.986c-10.66-1.93-21.041-4.191-31.104-6.801C216.036,420.696,174.26,398.459,143.9,368.102z M446.861,446.868\r\n\t\tc-10.994,1.012-29.23,2.275-51.71,2.275c-27.192,0-53.225-1.77-77.876-5.25l126.607-126.607c1.024,7.279,1.908,14.688,2.638,22.233\r\n\t\tC451.108,386.956,448.606,427.817,446.861,446.868z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "307.304,317.847 329.929,340.479 301.275,369.131 312.59,380.445 380.471,312.564 369.157,301.25 340.436,329.971 \r\n\t\t317.811,307.34 346.527,278.623 335.214,267.31 306.499,296.024 283.866,273.386 312.568,244.684 301.255,233.37 272.555,262.07 \r\n\t\t249.929,239.439 278.626,210.742 267.312,199.429 238.618,228.124 215.987,205.487 244.674,176.8 233.361,165.487 204.676,194.172 \r\n\t\t182.052,171.542 210.734,142.86 199.421,131.547 131.538,199.429 142.852,210.743 171.545,182.049 194.169,204.679 165.478,233.37 \r\n\t\t176.791,244.683 205.48,215.994 228.11,238.631 199.432,267.31 210.745,278.623 239.422,249.946 262.048,272.577 233.374,301.251 \r\n\t\t244.688,312.564 273.359,283.893 295.992,306.531 267.332,335.191 278.646,346.505 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "307.304,317.847 329.929,340.479 301.275,369.131 312.59,380.445 380.471,312.564 369.157,301.25 340.436,329.971 \r\n\t\t317.811,307.34 346.527,278.623 335.214,267.31 306.499,296.024 283.866,273.386 312.568,244.684 301.255,233.37 272.555,262.07 \r\n\t\t249.929,239.439 278.626,210.742 267.312,199.429 238.618,228.124 215.987,205.487 244.674,176.8 233.361,165.487 204.676,194.172 \r\n\t\t182.052,171.542 210.734,142.86 199.421,131.547 131.538,199.429 142.852,210.743 171.545,182.049 194.169,204.679 165.478,233.37 \r\n\t\t176.791,244.683 205.48,215.994 228.11,238.631 199.432,267.31 210.745,278.623 239.422,249.946 262.048,272.577 233.374,301.251 \r\n\t\t244.688,312.564 273.359,283.893 295.992,306.531 267.332,335.191 278.646,346.505 \t" + }, + "children": [] + }] + }] + }] +}; +exports.iosAmericanfootballOutline = iosAmericanfootballOutline; \ No newline at end of file diff --git a/dist/ionicons/iosAnalytics.js b/dist/ionicons/iosAnalytics.js new file mode 100644 index 000000000..2536f1928 --- /dev/null +++ b/dist/ionicons/iosAnalytics.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosAnalytics = void 0; +var iosAnalytics = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,32C141.174,32,46.544,118.404,33.54,229.739C32.534,238.354,32,247.114,32,256c0,1.783,0.026,3.561,0.067,5.333\r\n\tC34.901,382.581,134.071,480,256,480c105.255,0,193.537-72.602,217.542-170.454c1.337-5.451,2.474-10.979,3.404-16.579\r\n\tC478.943,280.939,480,268.594,480,256C480,132.288,379.712,32,256,32z M462.585,280.352c-7.265-7.807-13.064-16.09-15.702-20.429\r\n\tc-0.871-1.47-21.682-35.994-52.828-35.994c-27.937,0-42.269,26.269-51.751,43.65c-1.415,2.593-2.75,5.041-3.978,7.118\r\n\tc-11.566,19.587-27.693,30.608-43.105,29.541c-13.586-0.959-25.174-11.403-32.628-29.41c-9.331-22.54-29.551-46.812-53.689-50.229\r\n\tc-11.428-1.619-28.553,0.866-45.325,21.876c-3.293,4.124-6.964,9.612-11.215,15.967c-10.572,15.804-26.549,39.686-38.653,41.663\r\n\tc-21.02,3.438-35.021-12.596-35.583-13.249l-0.487-0.58l-0.587-0.479c-0.208-0.17-15.041-12.417-29.047-33.334\r\n\tc0-0.155-0.006-0.31-0.006-0.464c0-28.087,5.497-55.325,16.339-80.958c10.476-24.767,25.476-47.013,44.583-66.12\r\n\ts41.354-34.107,66.12-44.583C200.675,53.497,227.913,48,256,48s55.325,5.497,80.958,16.339\r\n\tc24.767,10.476,47.013,25.476,66.12,44.583s34.107,41.354,44.583,66.12C458.503,200.675,464,227.913,464,256\r\n\tC464,264.197,463.518,272.318,462.585,280.352z" + }, + "children": [] + }] +}; +exports.iosAnalytics = iosAnalytics; \ No newline at end of file diff --git a/dist/ionicons/iosAnalyticsOutline.js b/dist/ionicons/iosAnalyticsOutline.js new file mode 100644 index 000000000..0c33119bc --- /dev/null +++ b/dist/ionicons/iosAnalyticsOutline.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosAnalyticsOutline = void 0; +var iosAnalyticsOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48c28.087,0,55.325,5.497,80.958,16.339c24.767,10.476,47.013,25.476,66.12,44.583s34.107,41.354,44.583,66.12\r\n\t\tC458.503,200.675,464,227.913,464,256s-5.497,55.325-16.339,80.958c-10.476,24.767-25.476,47.013-44.583,66.12\r\n\t\ts-41.354,34.107-66.12,44.583C311.325,458.503,284.087,464,256,464s-55.325-5.497-80.958-16.339\r\n\t\tc-24.767-10.476-47.013-25.476-66.12-44.583s-34.107-41.354-44.583-66.12C53.497,311.325,48,284.087,48,256\r\n\t\ts5.497-55.325,16.339-80.958c10.476-24.767,25.476-47.013,44.583-66.12s41.354-34.107,66.12-44.583\r\n\t\tC200.675,53.497,227.913,48,256,48 M256,32C132.288,32,32,132.288,32,256s100.288,224,224,224s224-100.288,224-224\r\n\t\tS379.712,32,256,32L256,32z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48c28.087,0,55.325,5.497,80.958,16.339c24.767,10.476,47.013,25.476,66.12,44.583s34.107,41.354,44.583,66.12\r\n\t\tC458.503,200.675,464,227.913,464,256s-5.497,55.325-16.339,80.958c-10.476,24.767-25.476,47.013-44.583,66.12\r\n\t\ts-41.354,34.107-66.12,44.583C311.325,458.503,284.087,464,256,464s-55.325-5.497-80.958-16.339\r\n\t\tc-24.767-10.476-47.013-25.476-66.12-44.583s-34.107-41.354-44.583-66.12C53.497,311.325,48,284.087,48,256\r\n\t\ts5.497-55.325,16.339-80.958c10.476-24.767,25.476-47.013,44.583-66.12s41.354-34.107,66.12-44.583\r\n\t\tC200.675,53.497,227.913,48,256,48 M256,32C132.288,32,32,132.288,32,256s100.288,224,224,224s224-100.288,224-224\r\n\t\tS379.712,32,256,32L256,32z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M107.776,320c-25.252,0-41.168-18.448-41.902-19.317c-2.841-3.359-2.401-8.371,0.982-11.192\r\n\t\tc3.374-2.813,8.401-2.388,11.248,0.948c0.604,0.701,14.606,16.597,35.606,13.186c12.104-1.964,28.08-25.681,38.652-41.376\r\n\t\tc4.251-6.311,7.922-11.761,11.215-15.856c16.773-20.865,33.899-23.333,45.325-21.726c24.139,3.394,44.358,27.498,53.689,49.882\r\n\t\tc7.454,17.884,19.042,28.256,32.628,29.208c15.408,1.061,31.539-9.885,43.105-29.336c1.228-2.064,2.562-4.496,3.978-7.07\r\n\t\tc9.482-17.262,23.814-43.35,51.75-43.35c31.146,0,51.957,34.286,52.828,35.746c2.252,3.774,0.996,8.648-2.806,10.885\r\n\t\tc-3.8,2.237-8.708,0.988-10.96-2.786c-0.037-0.062-4.493-7.413-11.859-14.568c-6.286-6.107-16.108-13.387-27.203-13.387\r\n\t\tc-18.438,0-29.121,19.445-37.705,35.07c-1.48,2.696-2.88,5.243-4.245,7.538c-14.718,24.751-36.4,38.635-58.01,37.108\r\n\t\tc-19.951-1.398-36.389-15.242-46.284-38.98c-10.013-24.02-28.279-38.417-41.149-40.228c-10.6-1.494-20.895,3.861-30.578,15.906\r\n\t\tc-2.872,3.573-6.539,9.017-10.421,14.779c-13.549,20.114-30.411,45.146-49.37,48.223C113.349,319.784,110.507,320,107.776,320z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M107.776,320c-25.252,0-41.168-18.448-41.902-19.317c-2.841-3.359-2.401-8.371,0.982-11.192\r\n\t\tc3.374-2.813,8.401-2.388,11.248,0.948c0.604,0.701,14.606,16.597,35.606,13.186c12.104-1.964,28.08-25.681,38.652-41.376\r\n\t\tc4.251-6.311,7.922-11.761,11.215-15.856c16.773-20.865,33.899-23.333,45.325-21.726c24.139,3.394,44.358,27.498,53.689,49.882\r\n\t\tc7.454,17.884,19.042,28.256,32.628,29.208c15.408,1.061,31.539-9.885,43.105-29.336c1.228-2.064,2.562-4.496,3.978-7.07\r\n\t\tc9.482-17.262,23.814-43.35,51.75-43.35c31.146,0,51.957,34.286,52.828,35.746c2.252,3.774,0.996,8.648-2.806,10.885\r\n\t\tc-3.8,2.237-8.708,0.988-10.96-2.786c-0.037-0.062-4.493-7.413-11.859-14.568c-6.286-6.107-16.108-13.387-27.203-13.387\r\n\t\tc-18.438,0-29.121,19.445-37.705,35.07c-1.48,2.696-2.88,5.243-4.245,7.538c-14.718,24.751-36.4,38.635-58.01,37.108\r\n\t\tc-19.951-1.398-36.389-15.242-46.284-38.98c-10.013-24.02-28.279-38.417-41.149-40.228c-10.6-1.494-20.895,3.861-30.578,15.906\r\n\t\tc-2.872,3.573-6.539,9.017-10.421,14.779c-13.549,20.114-30.411,45.146-49.37,48.223C113.349,319.784,110.507,320,107.776,320z" + }, + "children": [] + }] + }] + }] +}; +exports.iosAnalyticsOutline = iosAnalyticsOutline; \ No newline at end of file diff --git a/dist/ionicons/iosArrowBack.js b/dist/ionicons/iosArrowBack.js new file mode 100644 index 000000000..169310034 --- /dev/null +++ b/dist/ionicons/iosArrowBack.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosArrowBack = void 0; +var iosArrowBack = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "polygon", + "attribs": { + "points": "352,128.4 319.7,96 160,256 160,256 160,256 319.7,416 352,383.6 224.7,256 " + }, + "children": [] + }] +}; +exports.iosArrowBack = iosArrowBack; \ No newline at end of file diff --git a/dist/ionicons/iosArrowDown.js b/dist/ionicons/iosArrowDown.js new file mode 100644 index 000000000..e9b677cce --- /dev/null +++ b/dist/ionicons/iosArrowDown.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosArrowDown = void 0; +var iosArrowDown = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "polygon", + "attribs": { + "points": "396.6,160 416,180.7 256,352 96,180.7 115.3,160 256,310.5 " + }, + "children": [] + }] +}; +exports.iosArrowDown = iosArrowDown; \ No newline at end of file diff --git a/dist/ionicons/iosArrowForward.js b/dist/ionicons/iosArrowForward.js new file mode 100644 index 000000000..ffa025f45 --- /dev/null +++ b/dist/ionicons/iosArrowForward.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosArrowForward = void 0; +var iosArrowForward = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "polygon", + "attribs": { + "points": "160,128.4 192.3,96 352,256 352,256 352,256 192.3,416 160,383.6 287.3,256 " + }, + "children": [] + }] +}; +exports.iosArrowForward = iosArrowForward; \ No newline at end of file diff --git a/dist/ionicons/iosArrowLeft.js b/dist/ionicons/iosArrowLeft.js new file mode 100644 index 000000000..d534c1538 --- /dev/null +++ b/dist/ionicons/iosArrowLeft.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosArrowLeft = void 0; +var iosArrowLeft = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "polygon", + "attribs": { + "points": "352,115.4 331.3,96 160,256 331.3,416 352,396.7 201.5,256 " + }, + "children": [] + }] +}; +exports.iosArrowLeft = iosArrowLeft; \ No newline at end of file diff --git a/dist/ionicons/iosArrowRight.js b/dist/ionicons/iosArrowRight.js new file mode 100644 index 000000000..69337c984 --- /dev/null +++ b/dist/ionicons/iosArrowRight.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosArrowRight = void 0; +var iosArrowRight = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "polygon", + "attribs": { + "points": "160,115.4 180.7,96 352,256 180.7,416 160,396.7 310.5,256 " + }, + "children": [] + }] +}; +exports.iosArrowRight = iosArrowRight; \ No newline at end of file diff --git a/dist/ionicons/iosArrowThinDown.js b/dist/ionicons/iosArrowThinDown.js new file mode 100644 index 000000000..00df8ad62 --- /dev/null +++ b/dist/ionicons/iosArrowThinDown.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosArrowThinDown = void 0; +var iosArrowThinDown = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M349.7,322.2c-3.1-3.1-8-3-11.3,0L264,388.6V104c0-4.4-3.6-8-8-8c-4.4,0-8,3.6-8,8v284.6l-74.4-66.3\r\n\tc-3.4-2.9-8.1-3.2-11.2-0.1c-3.1,3.1-3.3,8.5-0.1,11.4c0,0,87,79.2,88,80s2.8,2.4,5.7,2.4s4.9-1.6,5.7-2.4s88-80,88-80\r\n\tc1.5-1.5,2.3-3.6,2.3-5.7C352,325.8,351.2,323.8,349.7,322.2z" + }, + "children": [] + }] +}; +exports.iosArrowThinDown = iosArrowThinDown; \ No newline at end of file diff --git a/dist/ionicons/iosArrowThinLeft.js b/dist/ionicons/iosArrowThinLeft.js new file mode 100644 index 000000000..66a9cabb3 --- /dev/null +++ b/dist/ionicons/iosArrowThinLeft.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosArrowThinLeft = void 0; +var iosArrowThinLeft = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M189.8,349.7c3.1-3.1,3-8,0-11.3L123.4,264H408c4.4,0,8-3.6,8-8c0-4.4-3.6-8-8-8H123.4l66.3-74.4c2.9-3.4,3.2-8.1,0.1-11.2\r\n\tc-3.1-3.1-8.5-3.3-11.4-0.1c0,0-79.2,87-80,88S96,253.1,96,256s1.6,4.9,2.4,5.7s80,88,80,88c1.5,1.5,3.6,2.3,5.7,2.3\r\n\tC186.2,352,188.2,351.2,189.8,349.7z" + }, + "children": [] + }] +}; +exports.iosArrowThinLeft = iosArrowThinLeft; \ No newline at end of file diff --git a/dist/ionicons/iosArrowThinRight.js b/dist/ionicons/iosArrowThinRight.js new file mode 100644 index 000000000..9e6301f4b --- /dev/null +++ b/dist/ionicons/iosArrowThinRight.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosArrowThinRight = void 0; +var iosArrowThinRight = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M322.2,349.7c-3.1-3.1-3-8,0-11.3l66.4-74.4H104c-4.4,0-8-3.6-8-8c0-4.4,3.6-8,8-8h284.6l-66.3-74.4\r\n\tc-2.9-3.4-3.2-8.1-0.1-11.2c3.1-3.1,8.5-3.3,11.4-0.1c0,0,79.2,87,80,88s2.4,2.8,2.4,5.7s-1.6,4.9-2.4,5.7s-80,88-80,88\r\n\tc-1.5,1.5-3.6,2.3-5.7,2.3C325.8,352,323.8,351.2,322.2,349.7z" + }, + "children": [] + }] +}; +exports.iosArrowThinRight = iosArrowThinRight; \ No newline at end of file diff --git a/dist/ionicons/iosArrowThinUp.js b/dist/ionicons/iosArrowThinUp.js new file mode 100644 index 000000000..5d0354ebd --- /dev/null +++ b/dist/ionicons/iosArrowThinUp.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosArrowThinUp = void 0; +var iosArrowThinUp = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M349.7,189.8c-3.1,3.1-8,3-11.3,0L264,123.4V408c0,4.4-3.6,8-8,8c-4.4,0-8-3.6-8-8V123.4l-74.4,66.3\r\n\tc-3.4,2.9-8.1,3.2-11.2,0.1c-3.1-3.1-3.3-8.5-0.1-11.4c0,0,87-79.2,88-80s2.8-2.4,5.7-2.4s4.9,1.6,5.7,2.4s88,80,88,80\r\n\tc1.5,1.5,2.3,3.6,2.3,5.7C352,186.2,351.2,188.2,349.7,189.8z" + }, + "children": [] + }] +}; +exports.iosArrowThinUp = iosArrowThinUp; \ No newline at end of file diff --git a/dist/ionicons/iosArrowUp.js b/dist/ionicons/iosArrowUp.js new file mode 100644 index 000000000..e0195db39 --- /dev/null +++ b/dist/ionicons/iosArrowUp.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosArrowUp = void 0; +var iosArrowUp = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "polygon", + "attribs": { + "points": "396.6,352 416,331.3 256,160 96,331.3 115.3,352 256,201.5 " + }, + "children": [] + }] +}; +exports.iosArrowUp = iosArrowUp; \ No newline at end of file diff --git a/dist/ionicons/iosAt.js b/dist/ionicons/iosAt.js new file mode 100644 index 000000000..e711044e2 --- /dev/null +++ b/dist/ionicons/iosAt.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosAt = void 0; +var iosAt = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M356,320c-9.7,13.3-29.9,28.5-38.1,33.1s-16.9,8.3-26,10.8c-9,2.5-18.6,3.9-28.4,3.9c-14.9,0-29.4-2.4-43-7.2\r\n\tc-13.3-4.7-25.2-11.8-35.1-21c-9.9-9-20.3-24.2-26.5-38.5c-5.3-12.4-7.6-25.8-7.6-46.5c0-14.7,3.4-30.9,9.2-44.7\r\n\tc5.6-13.2,13.5-24.9,23.3-34.6c9.7-9.6,21.6-17.5,35.3-23.3c12.3-5.1,26.7-7.7,44.4-7.7c13.9,0,27.2,2.2,39.4,6.6\r\n\tc11.9,4.3,22.3,10.4,30.9,18.3c8,7.3,12.9,16.1,18.2,28.1c4.6,10.2,6.3,19.2,6.3,33.3c0,11.5-2,22.4-6,32.4c-4,9.8-7,15.8-13,23.3\r\n\tc-6.3,7.6-9.8,11.8-16.5,15.6c-7.8,4.6-13.7,6.7-18.5,6.7c-3.8,0-5-0.9-5.1-1c-0.6-0.5-1.1-1.2-1.4-2.8c-0.3-2.2,0-5.2,0.9-8.6\r\n\tc1-3.9,2.4-7.7,4.6-12.9L342.3,179h-25.6l-4.5,12c-3.5-4.1-7.7-7.5-12.4-10.2c-11.1-6.4-20.4-9-32.3-9c-13.8,0-26.7,3.6-38.2,10.7\r\n\tc-11.2,6.9-20.8,15.8-28.5,26.5c-7.6,10.5-9.5,16.1-13,26.5l-0.6,1.8c-4.2,12.4-6.3,24.7-6.3,36.4c0,7.9,1.5,15.5,4.3,22.6\r\n\tc2.8,7.2,6.7,13.4,11.6,18.5c4.8,5.2,10.7,9.4,17.7,12.6c6.8,3.1,14.3,4.8,22.4,4.8c8.9,0,17.1-1.5,26.7-4.8\r\n\tc5.3-1.8,9.9-4.5,14.4-8.3c1,1.7,2.2,3.1,3.7,4.5c5.6,5.6,13.1,8.5,22.1,8.5c8.9,0,18.6-3,30.2-9.5c10.3-5.8,16.3-12.5,23.7-21.4\r\n\tc8.4-10,12.5-18.6,17-29.9c5.1-12.5,7.6-26.2,7.6-40.6c0-18.1-2.4-30.4-8.7-44c-6.6-14.4-13.3-25.9-24.3-35.6\r\n\tc-10.9-9.7-23.9-17.2-38.7-22.4c-14.6-5.1-30.3-7.7-46.7-7.7c-20,0-37.2,3-52.2,9.1c-16.3,6.6-30.8,15.9-43.1,27.6\r\n\tc-12.3,11.8-22.1,26-29.1,42c-7.3,16.5-11.4,36.5-11.4,55.1c0,25,3.1,42.4,10.4,58.4c8.1,17.5,21.2,35.5,33.4,45.9\r\n\tc12.7,11.1,27.3,19.2,43.4,24.3c15.9,5.1,32.3,7.7,48.6,7.7c11.2,0,22.7-1.6,34.1-4.6c11.6-3.2,22.4-7.6,32.1-13.1\r\n\tc9.9-5.5,19.5-12.4,28.2-20.6c8.8-8.2,19.4-20.9,22.9-27.1c1.2-2.3,2.2-4.2,2.8-5.6H356z M271.9,290.6c-4.4,5.5-7.2,8.9-10.6,11.2\r\n\tc-3.8,2.6-6.8,4.2-10.7,5.2h-0.1c-3.9,1-8.1,1.5-12.4,1.5c-5,0-9.4-0.9-13.4-2.7c-4.1-1.7-7.5-4.1-10.5-7.3\r\n\tc-2.9-3.1-5.4-6.8-7.1-11.1c-1.7-4.3-2.5-9-2.5-14.1c0-8.7,1.7-18.3,5-28.2c0.4-1.2,0.8-2.4,1.1-3.3c2.6-8.1,4-10.6,8.9-18.6\r\n\tc4.5-7.4,11.5-14.2,21.2-20.7c7.7-5.1,16.2-7.8,25.6-7.8c3.8,0,7.8,0.5,12,1.4c3,0.7,4.6,1.6,7.6,3.3l0.2,0.1\r\n\tc0.4,0.2,0.8,0.4,1.3,0.7l0.3,0.2c3.4,1.9,6.4,4.5,9,7.6c2,2.4,3.7,5.5,5,9.4L282,272.2C279,279.6,275.6,285.8,271.9,290.6z" + }, + "children": [] + }] +}; +exports.iosAt = iosAt; \ No newline at end of file diff --git a/dist/ionicons/iosAtOutline.js b/dist/ionicons/iosAtOutline.js new file mode 100644 index 000000000..cc8cacfb7 --- /dev/null +++ b/dist/ionicons/iosAtOutline.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosAtOutline = void 0; +var iosAtOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M364.4,320.9c-5.3,7.5-11.6,14.7-18.8,21.4c-7.1,6.6-15.1,12.5-23.7,17.4c-8.6,4.9-17.9,8.8-27.5,11.5s-19.8,4.1-30.3,4.1\r\n\t\tc-15.9,0-31.2-2.6-45.5-7.6c-14.2-5-26.8-12.5-37.5-22.4c-10.7-9.8-21.7-25.9-28.2-41c-5.8-13.4-8.1-27.8-8.1-49.5\r\n\t\tc0-15.6,3.6-33,9.8-47.6c6-14,14.3-26.4,24.9-36.9c10.4-10.3,23-18.6,37.6-24.8c13.1-5.5,28.5-8.2,47.1-8.2c14.9,0,29,2.4,41.9,7\r\n\t\tc12.8,4.6,23.9,11.2,33.1,19.6c8.7,7.9,14,17.4,19.7,30.2c5,11.2,6.8,20.9,6.8,35.9c0,12.4-2.2,24.1-6.5,34.9\r\n\t\tc-4.3,10.6-7.5,17-14,25c-6.6,7.9-10.6,12.7-18.1,17.1c-8.6,5-15.3,7.4-21,7.4c-3.6,0-6.3-0.7-7.8-2c-1.5-1.3-2.4-3-2.7-5.4\r\n\t\tc-0.4-2.8-0.1-6.3,1-10.4c1.1-4.4,2.8-8.6,4.9-13.7L339.4,181h-17.8l-6.2,16.5c-3.8-6.1-9.1-11.5-15.9-15.5\r\n\t\tc-10.5-6.1-19.5-8.8-31.2-8.8c-13.5,0-26,3.5-37.2,10.4c-11,6.8-20.5,15.6-28.2,26.3c-7.5,10.3-9.3,15.7-12.9,26.4l-0.6,1.7\r\n\t\tc-4.2,12.4-6.3,24.6-6.3,36.2c0,7.7,1.4,15,4.1,21.8c2.7,6.8,6.4,12.8,11.1,17.8c4.7,5.1,10.4,9.1,16.9,12.1s13.7,4.5,21.3,4.5\r\n\t\tc8.5,0,16.6-1.4,26.1-4.7c6.3-2.2,11.9-5.8,17.4-11.4c1,3.2,2.7,6,5.3,8.5c5,5,11.7,7.6,19.9,7.6c8.6,0,17.8-3,29-9.3\r\n\t\tc9.9-5.6,15.7-12,23.3-21.1c8.2-9.8,12.3-18,16.9-29.7c5-12.5,7.5-26,7.5-40.3c0-18-2.4-30.2-8.5-43.6c-6.6-14.3-13.2-25.8-24-35.4\r\n\t\tc-10.9-9.6-23.9-17.1-38.5-22.3c-14.5-5.1-30.3-7.7-46.7-7.7c-20.1,0-37.2,3-52.2,9.1c-16.5,6.7-30.9,16-43,27.6\r\n\t\tc-12.2,11.8-22,25.9-29,41.9c-7.3,16.6-11.4,36.7-11.4,55.1c0,25.1,3.1,42.6,10.3,58.4c8,17.3,21,35.4,33.3,46\r\n\t\tc12.6,10.9,27.1,19.1,43.2,24.2c15.9,5.1,32.3,7.7,48.8,7.7c11.4,0,22.8-1.6,34-4.6c11.2-3.1,22-7.4,32.1-13.1\r\n\t\tc10.1-5.6,19.5-12.5,28.2-20.6c8.6-8.1,18.6-20.8,22-26.9c1.3-2.4,2.2-4.3,2.9-5.8h-18.5L364.4,320.9z M275.8,294.4\r\n\t\tc-4.4,5.6-7.7,9.5-11.8,12.2c-4.4,3-7.9,4.9-12.4,5.9c-4.6,1.2-9.3,1.7-13.7,1.7c-5.6,0-10.8-1-15.4-3c-4.7-2-8.7-4.8-12.1-8.4\r\n\t\tc-3.4-3.6-6.1-7.9-8.1-12.7c-1.9-4.8-2.9-10.2-2.9-16c0-9.5,1.8-19.7,5.3-30.3c0.4-1.2,0.8-2.4,1.1-3.4c2.8-8.6,4.3-11.5,9.5-20\r\n\t\tc5.7-9.4,14.1-16.6,23-22.5c8.6-5.8,18.2-8.7,28.5-8.7c4.2,0,8.6,0.5,13.2,1.5c3.6,0.8,5.6,1.9,9,3.9c0.6,0.3,1.1,0.6,1.7,1\r\n\t\tc3.9,2.2,7.4,5.1,10.4,8.7c2.7,3.2,4.8,7.4,6.3,12.3l-20.6,57.8C283.6,282.5,279.9,289.2,275.8,294.4z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M364.4,320.9c-5.3,7.5-11.6,14.7-18.8,21.4c-7.1,6.6-15.1,12.5-23.7,17.4c-8.6,4.9-17.9,8.8-27.5,11.5s-19.8,4.1-30.3,4.1\r\n\t\tc-15.9,0-31.2-2.6-45.5-7.6c-14.2-5-26.8-12.5-37.5-22.4c-10.7-9.8-21.7-25.9-28.2-41c-5.8-13.4-8.1-27.8-8.1-49.5\r\n\t\tc0-15.6,3.6-33,9.8-47.6c6-14,14.3-26.4,24.9-36.9c10.4-10.3,23-18.6,37.6-24.8c13.1-5.5,28.5-8.2,47.1-8.2c14.9,0,29,2.4,41.9,7\r\n\t\tc12.8,4.6,23.9,11.2,33.1,19.6c8.7,7.9,14,17.4,19.7,30.2c5,11.2,6.8,20.9,6.8,35.9c0,12.4-2.2,24.1-6.5,34.9\r\n\t\tc-4.3,10.6-7.5,17-14,25c-6.6,7.9-10.6,12.7-18.1,17.1c-8.6,5-15.3,7.4-21,7.4c-3.6,0-6.3-0.7-7.8-2c-1.5-1.3-2.4-3-2.7-5.4\r\n\t\tc-0.4-2.8-0.1-6.3,1-10.4c1.1-4.4,2.8-8.6,4.9-13.7L339.4,181h-17.8l-6.2,16.5c-3.8-6.1-9.1-11.5-15.9-15.5\r\n\t\tc-10.5-6.1-19.5-8.8-31.2-8.8c-13.5,0-26,3.5-37.2,10.4c-11,6.8-20.5,15.6-28.2,26.3c-7.5,10.3-9.3,15.7-12.9,26.4l-0.6,1.7\r\n\t\tc-4.2,12.4-6.3,24.6-6.3,36.2c0,7.7,1.4,15,4.1,21.8c2.7,6.8,6.4,12.8,11.1,17.8c4.7,5.1,10.4,9.1,16.9,12.1s13.7,4.5,21.3,4.5\r\n\t\tc8.5,0,16.6-1.4,26.1-4.7c6.3-2.2,11.9-5.8,17.4-11.4c1,3.2,2.7,6,5.3,8.5c5,5,11.7,7.6,19.9,7.6c8.6,0,17.8-3,29-9.3\r\n\t\tc9.9-5.6,15.7-12,23.3-21.1c8.2-9.8,12.3-18,16.9-29.7c5-12.5,7.5-26,7.5-40.3c0-18-2.4-30.2-8.5-43.6c-6.6-14.3-13.2-25.8-24-35.4\r\n\t\tc-10.9-9.6-23.9-17.1-38.5-22.3c-14.5-5.1-30.3-7.7-46.7-7.7c-20.1,0-37.2,3-52.2,9.1c-16.5,6.7-30.9,16-43,27.6\r\n\t\tc-12.2,11.8-22,25.9-29,41.9c-7.3,16.6-11.4,36.7-11.4,55.1c0,25.1,3.1,42.6,10.3,58.4c8,17.3,21,35.4,33.3,46\r\n\t\tc12.6,10.9,27.1,19.1,43.2,24.2c15.9,5.1,32.3,7.7,48.8,7.7c11.4,0,22.8-1.6,34-4.6c11.2-3.1,22-7.4,32.1-13.1\r\n\t\tc10.1-5.6,19.5-12.5,28.2-20.6c8.6-8.1,18.6-20.8,22-26.9c1.3-2.4,2.2-4.3,2.9-5.8h-18.5L364.4,320.9z M275.8,294.4\r\n\t\tc-4.4,5.6-7.7,9.5-11.8,12.2c-4.4,3-7.9,4.9-12.4,5.9c-4.6,1.2-9.3,1.7-13.7,1.7c-5.6,0-10.8-1-15.4-3c-4.7-2-8.7-4.8-12.1-8.4\r\n\t\tc-3.4-3.6-6.1-7.9-8.1-12.7c-1.9-4.8-2.9-10.2-2.9-16c0-9.5,1.8-19.7,5.3-30.3c0.4-1.2,0.8-2.4,1.1-3.4c2.8-8.6,4.3-11.5,9.5-20\r\n\t\tc5.7-9.4,14.1-16.6,23-22.5c8.6-5.8,18.2-8.7,28.5-8.7c4.2,0,8.6,0.5,13.2,1.5c3.6,0.8,5.6,1.9,9,3.9c0.6,0.3,1.1,0.6,1.7,1\r\n\t\tc3.9,2.2,7.4,5.1,10.4,8.7c2.7,3.2,4.8,7.4,6.3,12.3l-20.6,57.8C283.6,282.5,279.9,289.2,275.8,294.4z" + }, + "children": [] + }] + }] + }] +}; +exports.iosAtOutline = iosAtOutline; \ No newline at end of file diff --git a/dist/ionicons/iosBarcode.js b/dist/ionicons/iosBarcode.js new file mode 100644 index 000000000..9999091dc --- /dev/null +++ b/dist/ionicons/iosBarcode.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosBarcode = void 0; +var iosBarcode = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M48,128v256h416V128H48z M128,320h-16V192h16V320z M192,352h-16V160h16V352z M263,336h-16V176h16V336z M336,352h-16V160h16\r\n\t\tV352z M400,320h-16V192h16V320z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M48,128v256h416V128H48z M128,320h-16V192h16V320z M192,352h-16V160h16V352z M263,336h-16V176h16V336z M336,352h-16V160h16\r\n\t\tV352z M400,320h-16V192h16V320z" + }, + "children": [] + }] + }] + }] +}; +exports.iosBarcode = iosBarcode; \ No newline at end of file diff --git a/dist/ionicons/iosBarcodeOutline.js b/dist/ionicons/iosBarcodeOutline.js new file mode 100644 index 000000000..2b34a05b9 --- /dev/null +++ b/dist/ionicons/iosBarcodeOutline.js @@ -0,0 +1,129 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosBarcodeOutline = void 0; +var iosBarcodeOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "48,384 128,384 128,368 64,368 64,144 128,144 128,128 48,128 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "48,384 128,384 128,368 64,368 64,144 128,144 128,128 48,128 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "384,128 384,144 448,144 448,368 384,368 384,384 464,384 464,128 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "384,128 384,144 448,144 448,368 384,368 384,384 464,384 464,128 \t" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "112", + "y": "192", + "width": "16", + "height": "128" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "112", + "y": "192", + "width": "16", + "height": "128" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "384", + "y": "192", + "width": "16", + "height": "128" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "384", + "y": "192", + "width": "16", + "height": "128" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "320", + "y": "160", + "width": "16", + "height": "192" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "320", + "y": "160", + "width": "16", + "height": "192" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "176", + "y": "160", + "width": "16", + "height": "192" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "176", + "y": "160", + "width": "16", + "height": "192" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "247", + "y": "176", + "width": "16", + "height": "160" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "247", + "y": "176", + "width": "16", + "height": "160" + }, + "children": [] + }] + }] + }] +}; +exports.iosBarcodeOutline = iosBarcodeOutline; \ No newline at end of file diff --git a/dist/ionicons/iosBaseball.js b/dist/ionicons/iosBaseball.js new file mode 100644 index 000000000..5e05e02a8 --- /dev/null +++ b/dist/ionicons/iosBaseball.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosBaseball = void 0; +var iosBaseball = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48c-8.044,0-15.975,0.473-23.782,1.361l0,0l0,0C128.555,61.166,48,149.18,48,256c0,114.863,93.137,208,208,208\r\n\tc106.827,0,194.833-80.553,206.638-184.218l0,0l0,0C463.527,271.977,464,264.045,464,256C464,141.137,370.87,48,256,48z\r\n\t M259.939,446.614c-0.539-8.693-1.605-17.305-3.209-25.804l-21.511,6.896l-4.885-15.234l22.812-7.314\r\n\tc-2.183-8.056-4.856-15.994-8.02-23.794c-1.943-4.794-4.061-9.497-6.341-14.105l-19.464,13.186l-8.972-13.247l20.744-14.054\r\n\tc-7.416-12.429-16.149-24.057-26.119-34.803l-16.852,16.853l-11.313-11.313l16.852-16.852c-10.442-9.689-21.721-18.202-33.757-25.48\r\n\tl-14.216,20.988l-13.247-8.973l13.403-19.788c-4.96-2.491-10.027-4.799-15.206-6.9c-7.455-3.021-15.038-5.59-22.725-7.717\r\n\tl-7.5,23.392l-15.236-4.885l7.115-22.192c-8.856-1.723-17.835-2.853-26.904-3.412c0.109-5.373,0.438-10.695,0.984-15.953\r\n\tc10.339,0.647,20.639,1.998,30.827,4.068l7.518-23.454l15.237,4.886l-7.159,22.328c14.433,4.027,28.542,9.521,42.09,16.494\r\n\tl13.449-19.854l13.248,8.973l-12.7,18.748c12.712,7.754,24.815,16.892,36.1,27.411l17.082-17.082l11.314,11.314l-17.083,17.082\r\n\tc10.809,11.595,20.156,24.055,28.044,37.151l18.999-12.869l8.973,13.248l-20.183,13.67c6.878,13.546,12.289,27.642,16.232,42.058\r\n\tl22.919-7.349l4.885,15.236l-24.122,7.734c1.947,9.828,3.231,19.761,3.854,29.727C270.637,446.177,265.314,446.504,259.939,446.614z\r\n\t M410.961,275.293l-8.529,26.604l-15.236-4.885l8.174-25.493c-14.124-3.964-27.94-9.329-41.218-16.116l-15.335,22.641l-13.248-8.973\r\n\tl14.564-21.499c-12.912-7.826-25.199-17.077-36.644-27.746l-19.205,19.204l-11.312-11.314l19.202-19.203\r\n\tc-10.381-11.135-19.427-23.062-27.114-35.59l-21.248,14.393l-8.974-13.248l22.335-15.127c-6.881-13.278-12.339-27.099-16.384-41.241\r\n\tl-24.918,7.99l-4.885-15.237l25.951-8.321c-2.447-11.663-3.943-23.482-4.522-35.337c5.189-0.644,10.446-1.068,15.754-1.284\r\n\tc0.507,10.743,1.859,21.334,3.972,31.807l19.744-6.359l4.907,15.212l-20.789,6.658c2.051,7.218,4.491,14.338,7.333,21.348\r\n\tc2.176,5.363,4.578,10.603,7.174,15.731l17.315-11.729l8.973,13.246l-18.477,12.516c7.209,11.846,15.619,22.957,25.174,33.254\r\n\tl14.729-14.731l11.314,11.313l-14.732,14.731c10.602,9.836,22.062,18.463,34.302,25.813l12.352-18.235l13.248,8.973l-11.512,16.994\r\n\tc4.777,2.383,9.656,4.589,14.635,6.608c7.354,2.982,14.837,5.521,22.421,7.631l6.484-20.22l15.233,4.885l-6.104,19.043\r\n\tc10.116,1.984,20.286,3.311,30.626,3.824c-0.215,5.312-0.643,10.572-1.285,15.768C433.72,279.028,422.269,277.607,410.961,275.293z" + }, + "children": [] + }] +}; +exports.iosBaseball = iosBaseball; \ No newline at end of file diff --git a/dist/ionicons/iosBaseballOutline.js b/dist/ionicons/iosBaseballOutline.js new file mode 100644 index 000000000..a0bad75c3 --- /dev/null +++ b/dist/ionicons/iosBaseballOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosBaseballOutline = void 0; +var iosBaseballOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M462.686,279.369c0.132-1.182,0.257-2.365,0.369-3.554c0.004-0.038,0.007-0.078,0.011-0.117\r\n\tC463.675,269.213,464,262.645,464,256c0-114.863-93.13-208-208-208c-7.951,0-15.792,0.462-23.512,1.331\r\n\tc-0.089,0.01-0.18,0.018-0.27,0.028c0,0.001,0,0.002,0,0.003C135.207,60.409,58.442,138.199,48.989,235.687\r\n\tc-0.001,0-0.003,0-0.004,0c-0.072,0.748-0.131,1.497-0.195,2.246c-0.136,1.576-0.253,3.157-0.353,4.743\r\n\tc-0.026,0.418-0.056,0.835-0.08,1.254c-0.064,1.121-0.116,2.245-0.163,3.371c-0.011,0.281-0.021,0.562-0.032,0.843\r\n\tC48.065,250.751,48,253.368,48,256c0,114.863,93.137,208,208,208c2.627,0,5.239-0.065,7.843-0.162\r\n\tc0.293-0.011,0.586-0.021,0.878-0.033c1.11-0.046,2.219-0.098,3.324-0.16c0.454-0.025,0.906-0.058,1.359-0.086\r\n\tc1.604-0.103,3.201-0.222,4.795-0.36c0.704-0.061,1.41-0.115,2.113-0.184c0-0.001,0-0.003,0-0.004\r\n\tc97.494-9.452,175.279-86.216,186.326-183.229c0.001,0,0.002,0,0.004,0C462.658,279.645,462.67,279.507,462.686,279.369z\r\n\t M446.665,256c0,2.568-0.066,5.122-0.167,7.666c-10.334-0.468-20.552-1.69-30.614-3.664l6.11-19.056l-15.232-4.884l-6.488,20.235\r\n\tc-7.591-2.112-15.08-4.651-22.442-7.638c-4.976-2.018-9.851-4.223-14.625-6.604l11.518-17.003l-13.247-8.974l-12.359,18.246\r\n\tc-12.241-7.35-23.703-15.977-34.305-25.812l14.73-14.73l-11.313-11.313l-14.73,14.73c-9.555-10.297-17.964-21.408-25.175-33.254\r\n\tl18.487-12.522l-8.972-13.246l-17.324,11.735c-2.597-5.131-4.998-10.375-7.174-15.74c-2.843-7.009-5.276-14.134-7.327-21.352\r\n\tl20.812-6.673l-4.885-15.234l-19.711,6.32c-2.104-10.423-3.41-21.014-3.896-31.729c2.544-0.101,5.097-0.167,7.665-0.167\r\n\tC361.132,65.335,446.665,150.869,446.665,256z M65.337,256c0-1.317,0.023-2.629,0.05-3.939c9.064,0.559,18.039,1.687,26.891,3.409\r\n\tl-7.115,22.191l15.235,4.885l7.5-23.391c7.692,2.128,15.28,4.696,22.738,7.721c5.175,2.099,10.239,4.404,15.197,6.896l-13.405,19.79\r\n\tl13.246,8.973l14.219-20.992c12.038,7.279,23.32,15.793,33.765,25.483l-16.853,16.853l11.313,11.314l16.854-16.854\r\n\tc9.968,10.744,18.7,22.369,26.114,34.796l-20.753,14.058l8.972,13.246l19.473-13.19c2.283,4.611,4.4,9.317,6.347,14.116\r\n\tc3.161,7.795,5.834,15.729,8.016,23.778l-22.832,7.32l4.884,15.233l21.531-6.903c1.608,8.506,2.679,17.122,3.215,25.822\r\n\tc-1.311,0.026-2.622,0.05-3.939,0.05C150.87,446.664,65.336,361.13,65.337,256z M275.893,445.629\r\n\tc-0.621-9.974-1.911-19.911-3.859-29.746l24.1-7.727l-4.884-15.232l-22.896,7.341c-3.946-14.415-9.356-28.51-16.234-42.054\r\n\tl20.172-13.664l-8.973-13.246l-18.988,12.862c-7.888-13.094-17.233-25.552-28.04-37.145l17.081-17.081l-11.313-11.313\r\n\tl-17.082,17.081c-11.288-10.521-23.393-19.66-36.108-27.414l12.696-18.743l-13.246-8.972l-13.446,19.85\r\n\tc-13.548-6.974-27.659-12.467-42.094-16.494l7.158-22.325l-15.235-4.885l-7.52,23.452c-10.181-2.068-20.477-3.424-30.81-4.067\r\n\tc9.168-88.037,78.492-158.454,166.023-169.311c0.574,11.858,2.095,23.676,4.543,35.339l-25.935,8.316l4.885,15.234l24.903-7.985\r\n\tc4.045,14.144,9.504,27.967,16.386,41.246l-22.322,15.121l8.973,13.246l21.236-14.385c7.688,12.528,16.735,24.455,27.116,35.59\r\n\tl-19.204,19.204l11.313,11.314l19.204-19.205c11.447,10.669,23.735,19.921,36.647,27.745l-14.555,21.486l13.248,8.974l15.328-22.628\r\n\tc13.28,6.789,27.1,12.155,41.229,16.118l-8.168,25.477l15.232,4.884l8.525-26.59c11.301,2.312,22.744,3.754,34.224,4.31\r\n\tC434.347,367.137,363.93,436.46,275.893,445.629z" + }, + "children": [] + }] +}; +exports.iosBaseballOutline = iosBaseballOutline; \ No newline at end of file diff --git a/dist/ionicons/iosBasketball.js b/dist/ionicons/iosBasketball.js new file mode 100644 index 000000000..82556ec59 --- /dev/null +++ b/dist/ionicons/iosBasketball.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosBasketball = void 0; +var iosBasketball = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48C141.137,48,48,141.136,48,256s93.137,208,208,208c114.871,0,208-93.138,208-208S370.871,48,256,48z\r\n\t M380.797,400.032c-4.158,3.608-8.48,7.029-12.942,10.272c-21.704-50.015-50.938-95.795-87.168-136.465\r\n\tc-15.118,15.728-31.203,30.518-48.156,44.28c27.659,35.364,44.916,79.254,47.189,127.069c-5.252,0.655-10.571,1.086-15.944,1.303\r\n\tc-1.103-24.727-6.5-48.721-16.114-71.45c-7.158-16.922-16.431-32.665-27.68-47.037c-31.104,23.733-64.923,44.093-100.91,60.526\r\n\tc-3.883-4.011-7.592-8.191-11.115-12.529c36.28-16.134,70.291-36.271,101.705-60.186c-2.139-2.34-4.33-4.641-6.584-6.895\r\n\tc-19.107-19.107-41.354-34.107-66.12-44.583c-22.015-9.312-46.212-14.964-71.45-16.108c0.217-5.379,0.648-10.703,1.303-15.959\r\n\tc61.62,2.929,116.713,30.753,155.45,73.638c13.802-11.208,27.075-23.167,39.778-35.87c2.638-2.638,5.238-5.303,7.812-7.988\r\n\tc-3.223-3.4-6.489-6.767-9.812-10.09c-45.887-45.886-99.137-82.145-158.332-107.832c3.243-4.461,6.665-8.782,10.272-12.939\r\n\tc63.951,28.387,121.212,69.101,168.767,119.132c10.711-11.889,20.824-24.216,30.319-36.965\r\n\tc-40.347-37.271-66.956-89.188-71.388-147.312c5.273-0.449,10.604-0.692,15.99-0.702c1.738,22.238,6.974,43.838,15.671,64.401\r\n\tc10.476,24.767,25.476,47.013,44.583,66.12c1.5,1.5,3.025,2.965,4.562,4.413c20.226-29.031,37.379-60.104,51.287-92.987\r\n\tc0.285-0.674,0.555-1.353,0.835-2.028c4.419,3.426,8.681,7.042,12.779,10.835c-14.383,33.502-32.132,65.215-52.822,94.716\r\n\tc15.026,12.13,31.591,22.068,49.479,29.635c20.631,8.727,42.305,13.978,64.62,15.698c-0.004,5.387-0.243,10.717-0.688,15.991\r\n\tc-46.278-3.479-88.631-21.018-122.801-48.359c-9.922,13.275-20.455,26.067-31.556,38.336\r\n\tC328.091,302.883,358.307,349.36,380.797,400.032z" + }, + "children": [] + }] +}; +exports.iosBasketball = iosBasketball; \ No newline at end of file diff --git a/dist/ionicons/iosBasketballOutline.js b/dist/ionicons/iosBasketballOutline.js new file mode 100644 index 000000000..05875aa8a --- /dev/null +++ b/dist/ionicons/iosBasketballOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosBasketballOutline = void 0; +var iosBasketballOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48C141.137,48,48,141.136,48,256s93.137,208,208,208c114.871,0,208-93.138,208-208S370.871,48,256,48z M446.664,256\r\n\tc0,0.048-0.002,0.097-0.002,0.145c-22.315-1.721-43.989-6.972-64.62-15.699c-17.888-7.566-34.453-17.505-49.479-29.634\r\n\tc20.69-29.501,38.442-61.212,52.824-94.715C423.045,150.95,446.664,200.766,446.664,256z M372.606,105.261\r\n\tc-0.28,0.676-0.55,1.354-0.835,2.028c-13.908,32.883-31.062,63.956-51.286,92.987c-1.538-1.449-3.063-2.914-4.563-4.413\r\n\tc-19.107-19.107-34.107-41.354-44.583-66.12c-8.697-20.563-13.933-42.163-15.671-64.401c0.111,0,0.221-0.004,0.332-0.004\r\n\tC299.884,65.337,340.347,80.249,372.606,105.261z M239.675,66.044c4.431,58.126,31.044,110.041,71.391,147.312\r\n\tc-9.495,12.749-19.609,25.076-30.319,36.965c-47.554-50.032-104.815-90.746-168.767-119.132\r\n\tC143.616,94.733,188.833,70.375,239.675,66.044z M280.687,273.84c36.229,40.67,65.48,86.438,87.185,136.453\r\n\tc-25.4,18.467-55.51,30.829-88.162,34.898c-2.272-47.816-19.521-91.707-47.179-127.071\r\n\tC249.483,304.357,265.568,289.567,280.687,273.84z M262.039,270.039c-12.704,12.703-25.977,24.662-39.778,35.87\r\n\tc-38.737-42.885-93.831-70.706-155.45-73.635c4.07-32.646,16.432-62.75,34.896-88.146c59.195,25.688,112.445,61.947,158.332,107.833\r\n\tc3.323,3.323,6.59,6.689,9.812,10.089C267.277,264.736,264.677,267.401,262.039,270.039z M65.508,248.23\r\n\tc25.238,1.145,49.436,6.797,71.45,16.109c24.767,10.476,47.013,25.476,66.12,44.583c2.254,2.254,4.445,4.555,6.584,6.895\r\n\tc-31.414,23.915-65.427,44.049-101.708,60.182C81.322,343.205,65.336,301.437,65.336,256\r\n\tC65.336,253.396,65.404,250.809,65.508,248.23z M119.067,388.526c35.988-16.434,69.81-36.787,100.914-60.521\r\n\tc11.249,14.372,20.522,30.115,27.68,47.037c9.614,22.729,15.013,46.724,16.114,71.45c-2.58,0.104-5.17,0.172-7.775,0.172\r\n\tC202.317,446.664,153.751,424.353,119.067,388.526z M380.81,400.021c-22.489-50.671-52.72-97.14-89.191-137.909\r\n\tc11.101-12.269,21.634-25.061,31.556-38.336c34.171,27.342,76.521,44.885,122.801,48.363\r\n\tC441.686,323.058,417.311,368.347,380.81,400.021z" + }, + "children": [] + }] +}; +exports.iosBasketballOutline = iosBasketballOutline; \ No newline at end of file diff --git a/dist/ionicons/iosBell.js b/dist/ionicons/iosBell.js new file mode 100644 index 000000000..10e78eb2c --- /dev/null +++ b/dist/ionicons/iosBell.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosBell = void 0; +var iosBell = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M381.7,225.9c0-97.6-52.5-130.8-101.6-138.2c0-0.5,0.1-1,0.1-1.6c0-12.3-10.9-22.1-24.2-22.1c-13.3,0-23.8,9.8-23.8,22.1\r\n\t\tc0,0.6,0,1.1,0.1,1.6c-49.2,7.5-102,40.8-102,138.4c0,113.8-28.3,126-66.3,158h384C410.2,352,381.7,339.7,381.7,225.9z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M381.7,225.9c0-97.6-52.5-130.8-101.6-138.2c0-0.5,0.1-1,0.1-1.6c0-12.3-10.9-22.1-24.2-22.1c-13.3,0-23.8,9.8-23.8,22.1\r\n\t\tc0,0.6,0,1.1,0.1,1.6c-49.2,7.5-102,40.8-102,138.4c0,113.8-28.3,126-66.3,158h384C410.2,352,381.7,339.7,381.7,225.9z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256.2,448c26.8,0,48.8-19.9,51.7-43H204.5C207.3,428.1,229.4,448,256.2,448z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256.2,448c26.8,0,48.8-19.9,51.7-43H204.5C207.3,428.1,229.4,448,256.2,448z" + }, + "children": [] + }] + }] + }] +}; +exports.iosBell = iosBell; \ No newline at end of file diff --git a/dist/ionicons/iosBellOutline.js b/dist/ionicons/iosBellOutline.js new file mode 100644 index 000000000..591a98f44 --- /dev/null +++ b/dist/ionicons/iosBellOutline.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosBellOutline = void 0; +var iosBellOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M381.7,225.9c0-97.6-52.5-130.8-101.6-138.2c0-0.5,0.1-1,0.1-1.6c0-12.3-10.9-22.1-24.2-22.1c-13.3,0-23.8,9.8-23.8,22.1\r\n\t\tc0,0.6,0,1.1,0.1,1.6c-49.2,7.5-102,40.8-102,138.4c0,113.8-28.3,126-66.3,158h384C410.2,352,381.7,339.7,381.7,225.9z M107.2,368\r\n\t\tc8.6-9,16.4-18.4,22.7-31.8c12-25.3,17.4-59.2,17.4-110.2c0-46.4,12.5-80.4,37.1-101.2c22.9-19.3,51.7-23.3,71.8-23.3\r\n\t\tc20.1,0,48.9,4,71.6,23.3c24.5,20.7,37,54.5,37,100.9c0,83.8,14.9,117.3,40.3,142.3H107.2z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M381.7,225.9c0-97.6-52.5-130.8-101.6-138.2c0-0.5,0.1-1,0.1-1.6c0-12.3-10.9-22.1-24.2-22.1c-13.3,0-23.8,9.8-23.8,22.1\r\n\t\tc0,0.6,0,1.1,0.1,1.6c-49.2,7.5-102,40.8-102,138.4c0,113.8-28.3,126-66.3,158h384C410.2,352,381.7,339.7,381.7,225.9z M107.2,368\r\n\t\tc8.6-9,16.4-18.4,22.7-31.8c12-25.3,17.4-59.2,17.4-110.2c0-46.4,12.5-80.4,37.1-101.2c22.9-19.3,51.7-23.3,71.8-23.3\r\n\t\tc20.1,0,48.9,4,71.6,23.3c24.5,20.7,37,54.5,37,100.9c0,83.8,14.9,117.3,40.3,142.3H107.2z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256.2,448c26.8,0,48.8-19.9,51.7-43H204.5C207.3,428.1,229.4,448,256.2,448z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256.2,448c26.8,0,48.8-19.9,51.7-43H204.5C207.3,428.1,229.4,448,256.2,448z" + }, + "children": [] + }] + }] + }] +}; +exports.iosBellOutline = iosBellOutline; \ No newline at end of file diff --git a/dist/ionicons/iosBody.js b/dist/ionicons/iosBody.js new file mode 100644 index 000000000..8f1a6034f --- /dev/null +++ b/dist/ionicons/iosBody.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosBody = void 0; +var iosBody = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "cx": "256", + "cy": "79.838", + "r": "48" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "256", + "cy": "79.838", + "r": "48" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M424,144H88c-13.255,0-24,10.745-24,24s10.745,24,24,24h98.451c5.579,1,13.197,3.837,17.216,14.252\r\n\t\tc4.651,12.056,2.37,33.606-0.539,51.727l-3.775,21.395c-0.019,0.104-0.039,0.207-0.058,0.311c-0.002,0.008-0.002,0.012-0.004,0.02\r\n\t\tl-30.375,172.268c-2.303,13.053,6.414,25.5,19.467,27.803c13.055,2.301,25.333-6.416,27.634-19.471L237,340.348v0.167\r\n\t\tc0,0,6.25-32.515,18.452-32.515h1.096C269,308,275,340.515,275,340.515v-0.083l20.983,119.913\r\n\t\tc2.301,13.055,14.663,21.749,27.718,19.448c13.053-2.303,21.728-14.762,19.425-27.814L312.73,279.703\r\n\t\tc-0.002-0.008-0.013-0.02-0.015-0.027c-0.019-0.104-0.044-0.217-0.063-0.322l-3.777-21.414\r\n\t\tc-2.909-18.121-5.191-39.631-0.541-51.688C312.354,195.838,319.97,193,325.549,192H424c13.255,0,24-10.745,24-24\r\n\t\tS437.255,144,424,144z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M424,144H88c-13.255,0-24,10.745-24,24s10.745,24,24,24h98.451c5.579,1,13.197,3.837,17.216,14.252\r\n\t\tc4.651,12.056,2.37,33.606-0.539,51.727l-3.775,21.395c-0.019,0.104-0.039,0.207-0.058,0.311c-0.002,0.008-0.002,0.012-0.004,0.02\r\n\t\tl-30.375,172.268c-2.303,13.053,6.414,25.5,19.467,27.803c13.055,2.301,25.333-6.416,27.634-19.471L237,340.348v0.167\r\n\t\tc0,0,6.25-32.515,18.452-32.515h1.096C269,308,275,340.515,275,340.515v-0.083l20.983,119.913\r\n\t\tc2.301,13.055,14.663,21.749,27.718,19.448c13.053-2.303,21.728-14.762,19.425-27.814L312.73,279.703\r\n\t\tc-0.002-0.008-0.013-0.02-0.015-0.027c-0.019-0.104-0.044-0.217-0.063-0.322l-3.777-21.414\r\n\t\tc-2.909-18.121-5.191-39.631-0.541-51.688C312.354,195.838,319.97,193,325.549,192H424c13.255,0,24-10.745,24-24\r\n\t\tS437.255,144,424,144z" + }, + "children": [] + }] + }] + }] +}; +exports.iosBody = iosBody; \ No newline at end of file diff --git a/dist/ionicons/iosBodyOutline.js b/dist/ionicons/iosBodyOutline.js new file mode 100644 index 000000000..585d99d22 --- /dev/null +++ b/dist/ionicons/iosBodyOutline.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosBodyOutline = void 0; +var iosBodyOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,47.959c17.645,0,32,14.351,32,31.991c0,17.64-14.355,31.99-32,31.99s-32-14.351-32-31.99\r\n\t\tC224,62.31,238.355,47.959,256,47.959 M256,31.964c-26.51,0-48,21.483-48,47.986c0,26.502,21.49,47.985,48,47.985\r\n\t\ts48-21.483,48-47.985C304,53.447,282.51,31.964,256,31.964L256,31.964z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,47.959c17.645,0,32,14.351,32,31.991c0,17.64-14.355,31.99-32,31.99s-32-14.351-32-31.99\r\n\t\tC224,62.31,238.355,47.959,256,47.959 M256,31.964c-26.51,0-48,21.483-48,47.986c0,26.502,21.49,47.985,48,47.985\r\n\t\ts48-21.483,48-47.985C304,53.447,282.51,31.964,256,31.964L256,31.964z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M424,144H88c-13.255,0-24,10.747-24,24s10.745,24,24,24h100.451c5.549,0,13.197,4.295,17.216,14.708\r\n\t\tc4.651,12.055,2.37,33.33-0.539,51.444l-3.923,21.26c-0.019,0.104-0.205,0.1-0.205,0.203l-32.229,172.238\r\n\t\tc-2.303,13.051,6.487,25.494,19.54,27.797c1.408,0.248,2.844,0.367,4.218,0.367c11.357,0,20.917-8.19,22.97-19.836L236,340.242\r\n\t\tv0.166c0,0,7.25-31.408,19.452-31.408h1.096C269,309,274,340.408,274,340.408v-0.082l21.483,119.895\r\n\t\tc2.052,11.642,12.331,19.815,23.763,19.815c1.387,0,2.855-0.121,4.268-0.368c13.053-2.303,21.821-14.76,19.519-27.811\r\n\t\tl-32.349-172.251c-0.002-0.008,0.011-0.02,0.009-0.027c-0.019-0.104-0.032-0.217-0.052-0.322l-3.771-21.411\r\n\t\tc-2.909-18.119-5.188-39.083-0.538-51.137C310.351,196.295,318.5,192,323.549,192H424c13.255,0,24-10.747,24-24\r\n\t\tS437.255,144,424,144z M88,176.113c-4.411,0-8-3.646-8-8.057c0-4.411,3.589-8.057,8-8.057h336c4.411,0,8,3.59,8,8s-3.589,8-8,8\r\n\t\tH322.5c-15.538,0-27.438,14.738-30.982,23.922c-4.846,12.557-5.004,31.942-0.388,60.688l-0.009,0.104l0.006,0.11l3.367,19.138\r\n\t\tl0.562,3.241l32.252,171.628c0.5,2.834-0.62,4.961-1.332,5.977c-0.713,1.017-2.335,2.799-5.179,3.301\r\n\t\tc-0.476,0.083-0.955,0.126-1.427,0.126c-3.893,0-7.207-2.639-7.883-6.472L290.255,338h-0.015c-0.271-2-1.828-10.05-5.022-18.771\r\n\t\tc-2.278-6.217-4.844-11.034-7.844-15.005C270.283,294.836,262.135,293,256.548,293h-1.096c-5.47,0-13.503,1.731-20.71,10.938\r\n\t\tc-3.05,3.896-5.729,8.671-8.19,14.802c-3.628,9.037-5.505,17.654-5.708,18.613l-0.11,0.369l-20.728,119.9\r\n\t\tc-0.693,3.886-3.75,6.596-7.441,6.596c-0.459,0-0.932-0.043-1.403-0.127c-2.84-0.5-4.455-2.275-5.165-3.288\r\n\t\tc-0.709-1.013-1.824-3.136-1.323-5.975l32.257-171.562l0.004-0.019l0.174-0.927l3.775-21.33l0.022-0.125l0.021-0.126\r\n\t\tc4.629-28.829,4.527-48.3-0.332-60.891c-3.543-9.181-13.576-23.737-31.76-23.737" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M424,144H88c-13.255,0-24,10.747-24,24s10.745,24,24,24h100.451c5.549,0,13.197,4.295,17.216,14.708\r\n\t\tc4.651,12.055,2.37,33.33-0.539,51.444l-3.923,21.26c-0.019,0.104-0.205,0.1-0.205,0.203l-32.229,172.238\r\n\t\tc-2.303,13.051,6.487,25.494,19.54,27.797c1.408,0.248,2.844,0.367,4.218,0.367c11.357,0,20.917-8.19,22.97-19.836L236,340.242\r\n\t\tv0.166c0,0,7.25-31.408,19.452-31.408h1.096C269,309,274,340.408,274,340.408v-0.082l21.483,119.895\r\n\t\tc2.052,11.642,12.331,19.815,23.763,19.815c1.387,0,2.855-0.121,4.268-0.368c13.053-2.303,21.821-14.76,19.519-27.811\r\n\t\tl-32.349-172.251c-0.002-0.008,0.011-0.02,0.009-0.027c-0.019-0.104-0.032-0.217-0.052-0.322l-3.771-21.411\r\n\t\tc-2.909-18.119-5.188-39.083-0.538-51.137C310.351,196.295,318.5,192,323.549,192H424c13.255,0,24-10.747,24-24\r\n\t\tS437.255,144,424,144z M88,176.113c-4.411,0-8-3.646-8-8.057c0-4.411,3.589-8.057,8-8.057h336c4.411,0,8,3.59,8,8s-3.589,8-8,8\r\n\t\tH322.5c-15.538,0-27.438,14.738-30.982,23.922c-4.846,12.557-5.004,31.942-0.388,60.688l-0.009,0.104l0.006,0.11l3.367,19.138\r\n\t\tl0.562,3.241l32.252,171.628c0.5,2.834-0.62,4.961-1.332,5.977c-0.713,1.017-2.335,2.799-5.179,3.301\r\n\t\tc-0.476,0.083-0.955,0.126-1.427,0.126c-3.893,0-7.207-2.639-7.883-6.472L290.255,338h-0.015c-0.271-2-1.828-10.05-5.022-18.771\r\n\t\tc-2.278-6.217-4.844-11.034-7.844-15.005C270.283,294.836,262.135,293,256.548,293h-1.096c-5.47,0-13.503,1.731-20.71,10.938\r\n\t\tc-3.05,3.896-5.729,8.671-8.19,14.802c-3.628,9.037-5.505,17.654-5.708,18.613l-0.11,0.369l-20.728,119.9\r\n\t\tc-0.693,3.886-3.75,6.596-7.441,6.596c-0.459,0-0.932-0.043-1.403-0.127c-2.84-0.5-4.455-2.275-5.165-3.288\r\n\t\tc-0.709-1.013-1.824-3.136-1.323-5.975l32.257-171.562l0.004-0.019l0.174-0.927l3.775-21.33l0.022-0.125l0.021-0.126\r\n\t\tc4.629-28.829,4.527-48.3-0.332-60.891c-3.543-9.181-13.576-23.737-31.76-23.737" + }, + "children": [] + }] + }] + }] +}; +exports.iosBodyOutline = iosBodyOutline; \ No newline at end of file diff --git a/dist/ionicons/iosBolt.js b/dist/ionicons/iosBolt.js new file mode 100644 index 000000000..3dfa11531 --- /dev/null +++ b/dist/ionicons/iosBolt.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosBolt = void 0; +var iosBolt = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M302.7,64L143,288h95.8l-29.5,160L369,224h-95.8L302.7,64L302.7,64z" + }, + "children": [] + }] +}; +exports.iosBolt = iosBolt; \ No newline at end of file diff --git a/dist/ionicons/iosBoltOutline.js b/dist/ionicons/iosBoltOutline.js new file mode 100644 index 000000000..cb4fdcc4a --- /dev/null +++ b/dist/ionicons/iosBoltOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosBoltOutline = void 0; +var iosBoltOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M273.9,132l-16.5,89.1L254,240h19.2h64.8l-99.8,140l16.5-89.1L258,272h-19.2h-64.7L273.9,132 M302.7,64L143,288h95.8\r\n\tl-29.5,160L369,224h-95.8L302.7,64L302.7,64z" + }, + "children": [] + }] +}; +exports.iosBoltOutline = iosBoltOutline; \ No newline at end of file diff --git a/dist/ionicons/iosBook.js b/dist/ionicons/iosBook.js new file mode 100644 index 000000000..90961b6db --- /dev/null +++ b/dist/ionicons/iosBook.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosBook = void 0; +var iosBook = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M164.466,64C109.266,64,64,89.98,64,143v1v8.994V417v9h6.215h10.959h4.967c12.86-26.334,44.238-42,78.325-42\r\n\t\tc40.224,0,73.877,27.528,81.616,64H248V95.346C230.76,73.951,198.981,64,164.466,64z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M164.466,64C109.266,64,64,89.98,64,143v1v8.994V417v9h6.215h10.959h4.967c12.86-26.334,44.238-42,78.325-42\r\n\t\tc40.224,0,73.877,27.528,81.616,64H248V95.346C230.76,73.951,198.981,64,164.466,64z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M347.621,64c-34.332,0-66.713,9.851-83.621,31.011V448h1.797c7.739-36.472,41.495-64,81.722-64\r\n\t\tc34.085,0,61.149,11.666,78.429,42h4.967h10.959H448v-17V148v-4v-1C448,89.98,402.823,64,347.621,64z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M347.621,64c-34.332,0-66.713,9.851-83.621,31.011V448h1.797c7.739-36.472,41.495-64,81.722-64\r\n\t\tc34.085,0,61.149,11.666,78.429,42h4.967h10.959H448v-17V148v-4v-1C448,89.98,402.823,64,347.621,64z" + }, + "children": [] + }] + }] + }] +}; +exports.iosBook = iosBook; \ No newline at end of file diff --git a/dist/ionicons/iosBookOutline.js b/dist/ionicons/iosBookOutline.js new file mode 100644 index 000000000..f17aafc11 --- /dev/null +++ b/dist/ionicons/iosBookOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosBookOutline = void 0; +var iosBookOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M347.621,64c-40.941,0-79.121,14-91.578,44.495C242.5,78,205.408,64,164.466,64C109.265,64,64,89.98,64,143v1v8.995V417v9\r\n\th6.215h10.958h4.967c12.86-26.334,44.238-42,78.325-42c40.224,0,73.877,27.528,81.617,64h19.714c7.739-36.472,41.495-64,81.722-64\r\n\tc34.085,0,61.149,11.666,78.429,42h4.967h10.959H448v-17V148v-4v-1C448,89.98,402.823,64,347.621,64z M248,410.926\r\n\tC230,385.055,199.27,368,164.5,368c-34.769,0-64.5,10.055-83.5,35.926l-1,0.537V142l0,0v-1c3-41.825,40.089-61,84.293-61\r\n\tc45.162,0,82.145,18.708,83.363,61.808c-0.017,0.729,0.016,1.459,0.016,2.192L248,157.103V410.926z M432,148v255.926\r\n\tC414,378.055,382.269,368,347.5,368c-34.77,0-65.5,17.055-83.5,42.926V145v-1c0-44.112,37.659-64,83.587-64\r\n\tC391.79,80,429,91.175,432,133v1V148z" + }, + "children": [] + }] +}; +exports.iosBookOutline = iosBookOutline; \ No newline at end of file diff --git a/dist/ionicons/iosBookmarks.js b/dist/ionicons/iosBookmarks.js new file mode 100644 index 000000000..73db98c6d --- /dev/null +++ b/dist/ionicons/iosBookmarks.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosBookmarks = void 0; +var iosBookmarks = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M342.9,165.4l9.1-6.4l9.1,6.4l22.9,14.5V64c-20.7,0-44.5,0-64,0v115.9L342.9,165.4z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M342.9,165.4l9.1-6.4l9.1,6.4l22.9,14.5V64c-20.7,0-44.5,0-64,0v115.9L342.9,165.4z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M432,64c0,0-13.3,0-32,0v146.5l-48-32l-48,32V64c-12.1,0-20.6,0-22.4,0c-8.1,0-17.6,7.2-17.6,15s0,329,0,329l-8,5.5l-8-5.5\r\n\t\tc0,0,0-322,0-329s-9.2-15-17.6-15S80,64,80,64c-18.8,0-33,13.3-33,32v286.1c0,18.8,14.2,33.9,33,33.9c0,0,129.5,0,143.3,0\r\n\t\tc13.8,0,24.7,4.2,24.7,19.4c0,9.1,0,12.6,0,12.6h8h8c0,0,0-3.4,0-12.6c0-15.3,10.9-19.4,24.7-19.4s143.3,0,143.3,0\r\n\t\tc18.8,0,33-15.1,33-33.9V96C465,77.3,450.8,64,432,64z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M432,64c0,0-13.3,0-32,0v146.5l-48-32l-48,32V64c-12.1,0-20.6,0-22.4,0c-8.1,0-17.6,7.2-17.6,15s0,329,0,329l-8,5.5l-8-5.5\r\n\t\tc0,0,0-322,0-329s-9.2-15-17.6-15S80,64,80,64c-18.8,0-33,13.3-33,32v286.1c0,18.8,14.2,33.9,33,33.9c0,0,129.5,0,143.3,0\r\n\t\tc13.8,0,24.7,4.2,24.7,19.4c0,9.1,0,12.6,0,12.6h8h8c0,0,0-3.4,0-12.6c0-15.3,10.9-19.4,24.7-19.4s143.3,0,143.3,0\r\n\t\tc18.8,0,33-15.1,33-33.9V96C465,77.3,450.8,64,432,64z" + }, + "children": [] + }] + }] + }] +}; +exports.iosBookmarks = iosBookmarks; \ No newline at end of file diff --git a/dist/ionicons/iosBookmarksOutline.js b/dist/ionicons/iosBookmarksOutline.js new file mode 100644 index 000000000..dcea3bbf0 --- /dev/null +++ b/dist/ionicons/iosBookmarksOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosBookmarksOutline = void 0; +var iosBookmarksOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M432,64H281.6c-10.3,0-19.3,4.6-25.6,11.7l0,0l0,0c-6.2-7.2-15.3-11.7-25.6-11.7H80c-18.8,0-33,13.3-33,32v286.1\r\n\tc0,18.8,14.2,33.9,33,33.9c0,0,129.5,0,143.3,0c13.8,0,24.7,4.2,24.7,19.4c0,9.1,0,12.6,0,12.6h8h8c0,0,0-3.4,0-12.6\r\n\tc0-15.3,10.9-19.4,24.7-19.4s143.3,0,143.3,0c18.8,0,33-15.1,33-33.9V96C465,77.3,450.8,64,432,64z M248,411.1\r\n\tc-4.7-7.8-13.5-11.1-23.8-11.1H80c-9.4,0-16-8.5-16-17.9V96c0-9.4,6.6-16,16-16c0,0,130.6,0,143.3,0c12.8,0,24.7,12.8,24.7,22.2\r\n\tV411.1z M320,80c18.8,0,43,0,64,0v100.4l-22.9-14.5l-9.1-6.4l-9.1,6.4L320,180.4V80z M448,382.1c0,9.4-6.6,17.9-16,17.9H287.8\r\n\tc-10.3,0-19.1,2.3-23.8,11.1V102.2c0-9.4,11.9-22.2,24.7-22.2c2.2,0,7.7,0,15.3,0v131l48-32l48,32V80c18.6,0,32,0,32,0\r\n\tc9.4,0,16,6.7,16,16V382.1z" + }, + "children": [] + }] +}; +exports.iosBookmarksOutline = iosBookmarksOutline; \ No newline at end of file diff --git a/dist/ionicons/iosBox.js b/dist/ionicons/iosBox.js new file mode 100644 index 000000000..a0469380e --- /dev/null +++ b/dist/ionicons/iosBox.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosBox = void 0; +var iosBox = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M112,400h288V208H112V400z M224,240h64c8.8,0,16,7.2,16,16s-7.2,16-16,16h-64c-8.8,0-16-7.2-16-16S215.2,240,224,240z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M112,400h288V208H112V400z M224,240h64c8.8,0,16,7.2,16,16s-7.2,16-16,16h-64c-8.8,0-16-7.2-16-16S215.2,240,224,240z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "96,112 96,192 112,192 400,192 416,192 416,112 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "96,112 96,192 112,192 400,192 416,192 416,112 \t" + }, + "children": [] + }] + }] + }] +}; +exports.iosBox = iosBox; \ No newline at end of file diff --git a/dist/ionicons/iosBoxOutline.js b/dist/ionicons/iosBoxOutline.js new file mode 100644 index 000000000..4c3e363aa --- /dev/null +++ b/dist/ionicons/iosBoxOutline.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosBoxOutline = void 0; +var iosBoxOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M287.8,240c8.8,0,16.1,7.2,16.1,16s-7,16-15.9,16h-64c-8.8,0-16-7.2-16-16s7.2-16,16-16h63 M288,224h-64\r\n\t\tc-17.6,0-32,14.4-32,32s14.4,32,32,32h64c17.6,0,32-14.4,32-32S305.6,224,288,224L288,224z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M287.8,240c8.8,0,16.1,7.2,16.1,16s-7,16-15.9,16h-64c-8.8,0-16-7.2-16-16s7.2-16,16-16h63 M288,224h-64\r\n\t\tc-17.6,0-32,14.4-32,32s14.4,32,32,32h64c17.6,0,32-14.4,32-32S305.6,224,288,224L288,224z" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M416,112H96v80h16v208h288V192h16V112z M384,384H128V192h256V384z M400,176H112v-48h288V176z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M416,112H96v80h16v208h288V192h16V112z M384,384H128V192h256V384z M400,176H112v-48h288V176z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.iosBoxOutline = iosBoxOutline; \ No newline at end of file diff --git a/dist/ionicons/iosBriefcase.js b/dist/ionicons/iosBriefcase.js new file mode 100644 index 000000000..6f5cc3f29 --- /dev/null +++ b/dist/ionicons/iosBriefcase.js @@ -0,0 +1,81 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosBriefcase = void 0; +var iosBriefcase = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "96", + "y": "112", + "width": "32", + "height": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "96", + "y": "112", + "width": "32", + "height": "16" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "48", + "y": "208", + "width": "416", + "height": "240" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "48", + "y": "208", + "width": "416", + "height": "240" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "384", + "y": "112", + "width": "32", + "height": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "384", + "y": "112", + "width": "32", + "height": "16" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M416,128v32h-32v-32h-48V98.1V96c-0.5-18.2-13.6-32-32.2-32h-99.1C186.1,64,176,77.7,176,96v2.1V128h-48v32H96v-32H48v64\r\n\t\th416v-64H416z M320,127.5v0.5H192v-0.5V98.1c0-10.2,2.9-18.1,13.7-18.1h97.1c10.4,0,17.2,7.7,17.2,18.1V127.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M416,128v32h-32v-32h-48V98.1V96c-0.5-18.2-13.6-32-32.2-32h-99.1C186.1,64,176,77.7,176,96v2.1V128h-48v32H96v-32H48v64\r\n\t\th416v-64H416z M320,127.5v0.5H192v-0.5V98.1c0-10.2,2.9-18.1,13.7-18.1h97.1c10.4,0,17.2,7.7,17.2,18.1V127.5z" + }, + "children": [] + }] + }] + }] +}; +exports.iosBriefcase = iosBriefcase; \ No newline at end of file diff --git a/dist/ionicons/iosBriefcaseOutline.js b/dist/ionicons/iosBriefcaseOutline.js new file mode 100644 index 000000000..add8fbace --- /dev/null +++ b/dist/ionicons/iosBriefcaseOutline.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosBriefcaseOutline = void 0; +var iosBriefcaseOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M416,128v-16h-32v16h-48V98.1V96c-0.5-18.2-13.6-32-32.2-32h-99.1C186.1,64,176,77.7,176,96v2.1V128h-48v-16H96v16H48v320\r\n\t\th416V128H416z M192,127.5V98.1c0-10.2,2.9-18.1,13.7-18.1h97.1c10.4,0,17.2,7.7,17.2,18.1v29.4v0.5H192V127.5z M448,432H64V208h384\r\n\t\tV432z M448,192H64v-48h32v16h32v-16h256v16h32v-16h32V192z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M416,128v-16h-32v16h-48V98.1V96c-0.5-18.2-13.6-32-32.2-32h-99.1C186.1,64,176,77.7,176,96v2.1V128h-48v-16H96v16H48v320\r\n\t\th416V128H416z M192,127.5V98.1c0-10.2,2.9-18.1,13.7-18.1h97.1c10.4,0,17.2,7.7,17.2,18.1v29.4v0.5H192V127.5z M448,432H64V208h384\r\n\t\tV432z M448,192H64v-48h32v16h32v-16h256v16h32v-16h32V192z" + }, + "children": [] + }] + }] + }] +}; +exports.iosBriefcaseOutline = iosBriefcaseOutline; \ No newline at end of file diff --git a/dist/ionicons/iosBrowsers.js b/dist/ionicons/iosBrowsers.js new file mode 100644 index 000000000..f7f98b71e --- /dev/null +++ b/dist/ionicons/iosBrowsers.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosBrowsers = void 0; +var iosBrowsers = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M64,144v304h303.9V144H64z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M64,144v304h303.9V144H64z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "144,64 144,128 384,128 384,368 448,368 448,64 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "144,64 144,128 384,128 384,368 448,368 448,64 \t" + }, + "children": [] + }] + }] + }] +}; +exports.iosBrowsers = iosBrowsers; \ No newline at end of file diff --git a/dist/ionicons/iosBrowsersOutline.js b/dist/ionicons/iosBrowsersOutline.js new file mode 100644 index 000000000..4fe31fa9b --- /dev/null +++ b/dist/ionicons/iosBrowsersOutline.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosBrowsersOutline = void 0; +var iosBrowsersOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M64,144v304h303.9V144H64z M351.9,432H80V160h271.9V432z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M64,144v304h303.9V144H64z M351.9,432H80V160h271.9V432z" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "448,64 144,64 144,128 160,128 160,80 432,80 432,352 384,352 384,368 448,368 \t\t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "448,64 144,64 144,128 160,128 160,80 432,80 432,352 384,352 384,368 448,368 \t\t" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.iosBrowsersOutline = iosBrowsersOutline; \ No newline at end of file diff --git a/dist/ionicons/iosCalculator.js b/dist/ionicons/iosCalculator.js new file mode 100644 index 000000000..8836566de --- /dev/null +++ b/dist/ionicons/iosCalculator.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosCalculator = void 0; +var iosCalculator = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M368,64H144c-17.7,0-32,14.3-32,32v320c0,17.7,14.3,32,32,32h224c17.7,0,32-14.3,32-32V96C400,78.3,385.7,64,368,64z\r\n\t M360,280v128h-48V280H360z M360,200v48h-48v-48H360z M280,360v48h-48v-48H280z M280,280v48h-48v-48H280z M280,200v48h-48v-48H280z\r\n\t M200,360v48h-48v-48H200z M200,280v48h-48v-48H200z M200,200v48h-48v-48H200z M152,152v-48h208v48H152z" + }, + "children": [] + }] +}; +exports.iosCalculator = iosCalculator; \ No newline at end of file diff --git a/dist/ionicons/iosCalculatorOutline.js b/dist/ionicons/iosCalculatorOutline.js new file mode 100644 index 000000000..068717f12 --- /dev/null +++ b/dist/ionicons/iosCalculatorOutline.js @@ -0,0 +1,135 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosCalculatorOutline = void 0; +var iosCalculatorOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M144,160h224V96H144V160z M160,112h192v32H160V112z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M144,160h224V96H144V160z M160,112h192v32H160V112z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M368,64H144c-17.7,0-32,14.3-32,32v320c0,17.7,14.3,32,32,32h224c17.7,0,32-14.3,32-32V96C400,78.3,385.7,64,368,64z\r\n\t\t M384,416c0,8.8-7.2,16-16,16H144c-8.8,0-16-7.2-16-16V96c0-8.8,7.2-16,16-16h224c8.8,0,16,7.2,16,16V416z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M368,64H144c-17.7,0-32,14.3-32,32v320c0,17.7,14.3,32,32,32h224c17.7,0,32-14.3,32-32V96C400,78.3,385.7,64,368,64z\r\n\t\t M384,416c0,8.8-7.2,16-16,16H144c-8.8,0-16-7.2-16-16V96c0-8.8,7.2-16,16-16h224c8.8,0,16,7.2,16,16V416z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "160,240 160,208 160,192 144,192 144,256 208,256 208,240 192,240 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "160,240 160,208 160,192 144,192 144,256 208,256 208,240 192,240 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "160,320 160,288 160,272 144,272 144,336 208,336 208,320 192,320 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "160,320 160,288 160,272 144,272 144,336 208,336 208,320 192,320 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "160,400 160,368 160,352 144,352 144,416 208,416 208,400 192,400 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "160,400 160,368 160,352 144,352 144,416 208,416 208,400 192,400 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "240,240 240,208 240,192 224,192 224,256 288,256 288,240 272,240 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "240,240 240,208 240,192 224,192 224,256 288,256 288,240 272,240 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "320,240 320,208 320,192 304,192 304,256 368,256 368,240 352,240 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "320,240 320,208 320,192 304,192 304,256 368,256 368,240 352,240 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "240,320 240,288 240,272 224,272 224,336 288,336 288,320 272,320 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "240,320 240,288 240,272 224,272 224,336 288,336 288,320 272,320 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "240,400 240,368 240,352 224,352 224,416 288,416 288,400 272,400 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "240,400 240,368 240,352 224,352 224,416 288,416 288,400 272,400 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "320,400 320,368 320,272 304,272 304,416 368,416 368,400 352,400 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "320,400 320,368 320,272 304,272 304,416 368,416 368,400 352,400 \t" + }, + "children": [] + }] + }] + }] +}; +exports.iosCalculatorOutline = iosCalculatorOutline; \ No newline at end of file diff --git a/dist/ionicons/iosCalendar.js b/dist/ionicons/iosCalendar.js new file mode 100644 index 000000000..08224d486 --- /dev/null +++ b/dist/ionicons/iosCalendar.js @@ -0,0 +1,81 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosCalendar = void 0; +var iosCalendar = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "64", + "y": "192", + "width": "384", + "height": "256" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "64", + "y": "192", + "width": "384", + "height": "256" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "448,96 352,96 352,144 336,144 336,96 176,96 176,144 160,144 160,96 64,96 64,176 448,176 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "448,96 352,96 352,144 336,144 336,96 176,96 176,144 160,144 160,96 64,96 64,176 448,176 \t" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "160", + "y": "64", + "width": "16", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "160", + "y": "64", + "width": "16", + "height": "32" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "336", + "y": "64", + "width": "16", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "336", + "y": "64", + "width": "16", + "height": "32" + }, + "children": [] + }] + }] + }] +}; +exports.iosCalendar = iosCalendar; \ No newline at end of file diff --git a/dist/ionicons/iosCalendarOutline.js b/dist/ionicons/iosCalendarOutline.js new file mode 100644 index 000000000..225f93c23 --- /dev/null +++ b/dist/ionicons/iosCalendarOutline.js @@ -0,0 +1,30 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosCalendarOutline = void 0; +var iosCalendarOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "style", + "attribs": { + "type": "text/css" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "class": "st0", + "points": "80,112 80,176 432,176 432,112 " + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M352,96V64h-16v32H176V64h-16v32H64v352h384V96H352z M432,432H80V192h352V432z M432,176H80v-64h80v32h16v-32h160v32h16v-32\r\n\th80V176z" + }, + "children": [] + }] +}; +exports.iosCalendarOutline = iosCalendarOutline; \ No newline at end of file diff --git a/dist/ionicons/iosCamera.js b/dist/ionicons/iosCamera.js new file mode 100644 index 000000000..7d43708c2 --- /dev/null +++ b/dist/ionicons/iosCamera.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosCamera = void 0; +var iosCamera = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M417.5,160h-61.7c-32.1-36-42.2-48-54.5-48h-88.5c-12.3,0-22.2,12-54.5,48H145v-16h-34v16H97.5C79.9,160,64,173.2,64,190.7\r\n\t\tv176c0,17.5,15.9,33.3,33.5,33.3h320c17.6,0,30.5-15.8,30.5-33.3v-176C448,173.2,435.1,160,417.5,160z M256,360.5\r\n\t\tc-47.1,0-85.5-38.4-85.5-85.5s38.4-85.5,85.5-85.5s85.5,38.4,85.5,85.5S303.1,360.5,256,360.5z M369,209h-17v-17h17V209z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M417.5,160h-61.7c-32.1-36-42.2-48-54.5-48h-88.5c-12.3,0-22.2,12-54.5,48H145v-16h-34v16H97.5C79.9,160,64,173.2,64,190.7\r\n\t\tv176c0,17.5,15.9,33.3,33.5,33.3h320c17.6,0,30.5-15.8,30.5-33.3v-176C448,173.2,435.1,160,417.5,160z M256,360.5\r\n\t\tc-47.1,0-85.5-38.4-85.5-85.5s38.4-85.5,85.5-85.5s85.5,38.4,85.5,85.5S303.1,360.5,256,360.5z M369,209h-17v-17h17V209z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,205.5c-38.4,0-69.5,31.1-69.5,69.5s31.1,69.5,69.5,69.5s69.5-31.1,69.5-69.5S294.4,205.5,256,205.5z M256,307\r\n\t\tc-17.7,0-32-14.3-32-32s14.3-32,32-32s32,14.3,32,32S273.7,307,256,307z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,205.5c-38.4,0-69.5,31.1-69.5,69.5s31.1,69.5,69.5,69.5s69.5-31.1,69.5-69.5S294.4,205.5,256,205.5z M256,307\r\n\t\tc-17.7,0-32-14.3-32-32s14.3-32,32-32s32,14.3,32,32S273.7,307,256,307z" + }, + "children": [] + }] + }] + }] +}; +exports.iosCamera = iosCamera; \ No newline at end of file diff --git a/dist/ionicons/iosCameraOutline.js b/dist/ionicons/iosCameraOutline.js new file mode 100644 index 000000000..1163fca94 --- /dev/null +++ b/dist/ionicons/iosCameraOutline.js @@ -0,0 +1,73 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosCameraOutline = void 0; +var iosCameraOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M417.5,160h-61.7c-32.1-36-42.2-48-54.5-48h-88.5c-12.3,0-22.2,12-54.5,48H145v-16h-34v16H97.5C79.9,160,64,173.2,64,190.7\r\n\t\tv176c0,17.5,15.9,33.3,33.5,33.3h320c17.6,0,30.5-15.8,30.5-33.3v-176C448,173.2,435.1,160,417.5,160z M432,366.7\r\n\t\tc0,9.3-6.2,17.3-14.5,17.3h-320c-8.7,0-17.5-8.7-17.5-17.3v-176c0-8.2,8.1-14.7,17.5-14.7h60.7h7.1l4.8-3.2c4-4.5,7.7-10,11.1-13.8\r\n\t\tc11.3-12.7,19.5-21.7,25.3-26.9c4.7-4.2,6.2-4.1,6.2-4.1h88.5c0,0,1.6-0.1,6.7,4.5c6.1,5.5,14.7,16.5,26.6,29.8\r\n\t\tc2.9,3.3,6,6.8,9.3,10.5l4.8,3.2h7.2h61.7c8.8,0,14.5,6,14.5,14.7V366.7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M417.5,160h-61.7c-32.1-36-42.2-48-54.5-48h-88.5c-12.3,0-22.2,12-54.5,48H145v-16h-34v16H97.5C79.9,160,64,173.2,64,190.7\r\n\t\tv176c0,17.5,15.9,33.3,33.5,33.3h320c17.6,0,30.5-15.8,30.5-33.3v-176C448,173.2,435.1,160,417.5,160z M432,366.7\r\n\t\tc0,9.3-6.2,17.3-14.5,17.3h-320c-8.7,0-17.5-8.7-17.5-17.3v-176c0-8.2,8.1-14.7,17.5-14.7h60.7h7.1l4.8-3.2c4-4.5,7.7-10,11.1-13.8\r\n\t\tc11.3-12.7,19.5-21.7,25.3-26.9c4.7-4.2,6.2-4.1,6.2-4.1h88.5c0,0,1.6-0.1,6.7,4.5c6.1,5.5,14.7,16.5,26.6,29.8\r\n\t\tc2.9,3.3,6,6.8,9.3,10.5l4.8,3.2h7.2h61.7c8.8,0,14.5,6,14.5,14.7V366.7z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,189.5c-47.1,0-85.5,38.4-85.5,85.5s38.4,85.5,85.5,85.5s85.5-38.4,85.5-85.5S303.1,189.5,256,189.5z M256,344.5\r\n\t\tc-38.4,0-69.5-31.1-69.5-69.5s31.1-69.5,69.5-69.5s69.5,31.1,69.5,69.5S294.4,344.5,256,344.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,189.5c-47.1,0-85.5,38.4-85.5,85.5s38.4,85.5,85.5,85.5s85.5-38.4,85.5-85.5S303.1,189.5,256,189.5z M256,344.5\r\n\t\tc-38.4,0-69.5-31.1-69.5-69.5s31.1-69.5,69.5-69.5s69.5,31.1,69.5,69.5S294.4,344.5,256,344.5z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "352", + "y": "192", + "width": "17", + "height": "17" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "352", + "y": "192", + "width": "17", + "height": "17" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "256", + "cy": "275", + "r": "32" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "256", + "cy": "275", + "r": "32" + }, + "children": [] + }] + }] + }] +}; +exports.iosCameraOutline = iosCameraOutline; \ No newline at end of file diff --git a/dist/ionicons/iosCart.js b/dist/ionicons/iosCart.js new file mode 100644 index 000000000..c1c08bc21 --- /dev/null +++ b/dist/ionicons/iosCart.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosCart = void 0; +var iosCart = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M160,400c-13.248,0-24,10.752-24,24s10.752,24,24,24s24-10.752,24-24S173.248,400,160,400z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M160,400c-13.248,0-24,10.752-24,24s10.752,24,24,24s24-10.752,24-24S173.248,400,160,400z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M384.5,400c-13.248,0-24,10.752-24,24s10.752,24,24,24s24-10.752,24-24S397.748,400,384.5,400z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M384.5,400c-13.248,0-24,10.752-24,24s10.752,24,24,24s24-10.752,24-24S397.748,400,384.5,400z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M448,128L123.177,95.646c-1.628-6.972-4.369-14.66-11.838-20.667C102.025,67.489,86.982,64,64,64v16.001\r\n\t\tc18.614,0,31.167,2.506,37.312,7.447c4.458,3.585,5.644,8.423,7.165,15.989l-0.024,0.004l42.052,233.638\r\n\t\tc2.413,14.422,7.194,25.209,13.291,32.986C171.043,379.312,180.533,384,192,384h240v-16H192c-4.727,0-19.136,0.123-25.749-33.755\r\n\t\tl-5.429-30.16L432,256L448,128z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M448,128L123.177,95.646c-1.628-6.972-4.369-14.66-11.838-20.667C102.025,67.489,86.982,64,64,64v16.001\r\n\t\tc18.614,0,31.167,2.506,37.312,7.447c4.458,3.585,5.644,8.423,7.165,15.989l-0.024,0.004l42.052,233.638\r\n\t\tc2.413,14.422,7.194,25.209,13.291,32.986C171.043,379.312,180.533,384,192,384h240v-16H192c-4.727,0-19.136,0.123-25.749-33.755\r\n\t\tl-5.429-30.16L432,256L448,128z" + }, + "children": [] + }] + }] + }] +}; +exports.iosCart = iosCart; \ No newline at end of file diff --git a/dist/ionicons/iosCartOutline.js b/dist/ionicons/iosCartOutline.js new file mode 100644 index 000000000..415591877 --- /dev/null +++ b/dist/ionicons/iosCartOutline.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosCartOutline = void 0; +var iosCartOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M160,400c-13.248,0-24,10.752-24,24s10.752,24,24,24s24-10.752,24-24S173.248,400,160,400z M160,432c-4.411,0-8-3.589-8-8\r\n\t\ts3.589-8,8-8s8,3.589,8,8S164.411,432,160,432z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M160,400c-13.248,0-24,10.752-24,24s10.752,24,24,24s24-10.752,24-24S173.248,400,160,400z M160,432c-4.411,0-8-3.589-8-8\r\n\t\ts3.589-8,8-8s8,3.589,8,8S164.411,432,160,432z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M384.5,400c-13.248,0-24,10.752-24,24s10.752,24,24,24s24-10.752,24-24S397.748,400,384.5,400z M384.5,432\r\n\t\tc-4.411,0-8-3.589-8-8s3.589-8,8-8s8,3.589,8,8S388.911,432,384.5,432z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M384.5,400c-13.248,0-24,10.752-24,24s10.752,24,24,24s24-10.752,24-24S397.748,400,384.5,400z M384.5,432\r\n\t\tc-4.411,0-8-3.589-8-8s3.589-8,8-8s8,3.589,8,8S388.911,432,384.5,432z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M448,128L123.177,95.646c-1.628-6.972-4.369-14.66-11.838-20.667C102.025,67.489,86.982,64,64,64v16.001\r\n\t\tc18.614,0,31.167,2.506,37.312,7.447c4.458,3.585,5.644,8.423,7.165,15.989l-0.024,0.004l42.052,233.638\r\n\t\tc2.413,14.422,7.194,25.209,13.291,32.986C171.043,379.312,180.533,384,192,384h240v-16H192c-4.727,0-19.136,0.123-25.749-33.755\r\n\t\tl-5.429-30.16L432,256L448,128z M418.59,242.348l-260.601,45.99l-31.732-176.3l303.869,30.608L418.59,242.348z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M448,128L123.177,95.646c-1.628-6.972-4.369-14.66-11.838-20.667C102.025,67.489,86.982,64,64,64v16.001\r\n\t\tc18.614,0,31.167,2.506,37.312,7.447c4.458,3.585,5.644,8.423,7.165,15.989l-0.024,0.004l42.052,233.638\r\n\t\tc2.413,14.422,7.194,25.209,13.291,32.986C171.043,379.312,180.533,384,192,384h240v-16H192c-4.727,0-19.136,0.123-25.749-33.755\r\n\t\tl-5.429-30.16L432,256L448,128z M418.59,242.348l-260.601,45.99l-31.732-176.3l303.869,30.608L418.59,242.348z" + }, + "children": [] + }] + }] + }] +}; +exports.iosCartOutline = iosCartOutline; \ No newline at end of file diff --git a/dist/ionicons/iosChatboxes.js b/dist/ionicons/iosChatboxes.js new file mode 100644 index 000000000..ec72179cb --- /dev/null +++ b/dist/ionicons/iosChatboxes.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosChatboxes = void 0; +var iosChatboxes = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "336,48 48,48 48,272 160,272 160,160 336,160 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "336,48 48,48 48,272 160,272 160,160 336,160 \t" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M176,176v224h162.6l64,64H416v-64h48V176H176z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M176,176v224h162.6l64,64H416v-64h48V176H176z" + }, + "children": [] + }] + }] + }] +}; +exports.iosChatboxes = iosChatboxes; \ No newline at end of file diff --git a/dist/ionicons/iosChatboxesOutline.js b/dist/ionicons/iosChatboxesOutline.js new file mode 100644 index 000000000..f2a14a338 --- /dev/null +++ b/dist/ionicons/iosChatboxesOutline.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosChatboxesOutline = void 0; +var iosChatboxesOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "64,64 320,64 320,160 336,160 336,48 48,48 48,272 160,272 160,256 64,256 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "64,64 320,64 320,160 336,160 336,48 48,48 48,272 160,272 160,256 64,256 \t" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M176,176v224h162.6l64,64H416v-64h48V176H176z M448,384h-48v54.6L345,384H192V192h256V384z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M176,176v224h162.6l64,64H416v-64h48V176H176z M448,384h-48v54.6L345,384H192V192h256V384z" + }, + "children": [] + }] + }] + }] +}; +exports.iosChatboxesOutline = iosChatboxesOutline; \ No newline at end of file diff --git a/dist/ionicons/iosChatbubble.js b/dist/ionicons/iosChatbubble.js new file mode 100644 index 000000000..a689ddcd5 --- /dev/null +++ b/dist/ionicons/iosChatbubble.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosChatbubble = void 0; +var iosChatbubble = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,96C149.9,96,64,165.1,64,250.3c0,30.7,11.2,59.3,30.4,83.3c0.9,0.9,2.9,3.8,3.6,4.9c0,0-1-1.6-1.1-1.9c0,0,0,0,0,0l0,0\r\n\tc0,0,0,0,0,0c2.3,3.3,3.6,7.1,3.6,11.2c0,1.4-17.9,58-17.9,58l0,0c-1.3,4.4,2.1,8.9,7.6,10c0.8,0.2,1.6,0.2,2.4,0.2\r\n\tc1.3,0,2.5-0.2,3.7-0.5l1.6-0.6l50.6-22c0.9-0.4,9-3.5,10-3.9c0,0,0.6-0.2,0.6-0.2c0,0-0.1,0-0.6,0.2c3.4-1.2,7.2-1.8,11.2-1.8\r\n\tc3.6,0,7.1,0.5,10.3,1.5c0.1,0,0.2,0,0.2,0.1c0.5,0.2,1,0.3,1.5,0.5c23.1,7.9,48.4,10.3,75.1,10.3c106,0,191-64.1,191-149.3\r\n\tC448,165.1,362,96,256,96L256,96z" + }, + "children": [] + }] +}; +exports.iosChatbubble = iosChatbubble; \ No newline at end of file diff --git a/dist/ionicons/iosChatbubbleOutline.js b/dist/ionicons/iosChatbubbleOutline.js new file mode 100644 index 000000000..b0e01ebd4 --- /dev/null +++ b/dist/ionicons/iosChatbubbleOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosChatbubbleOutline = void 0; +var iosChatbubbleOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,112c97,0,176,62,176,138.3c0,35.9-17.6,69.2-49.5,93.9c-32.8,25.4-77.4,39.3-125.5,39.3c-28.9,0-51-3-69.7-9.3\r\n\tc-0.6-0.2-1.3-0.5-2-0.7c-0.3-0.1-0.6-0.2-0.8-0.2c-4.7-1.4-9.7-2.1-14.7-2.1c-5.6,0-11.1,0.9-16.3,2.6l0,0l-0.3,0.1\r\n\tc-0.6,0.2-8.9,3.3-11,4.3l0,0l-39.6,17.2c13.8-43.9,13.8-44.8,13.8-47.6c0-7.1-2.2-14.1-6.3-20.2c-0.5-0.7-1-1.4-1.6-2.1\r\n\tc-0.7-0.9-1.3-1.7-1.8-2.3c-17.4-21.9-26.6-47.1-26.6-73C80,174,159,112,256,112 M256,96C149.9,96,64,165.1,64,250.3\r\n\tc0,30.7,11.2,59.3,30.4,83.3c0.9,0.9,2.9,3.8,3.6,4.9c0,0-1-1.6-1.1-1.9c0,0,0,0,0,0l0,0c0,0,0,0,0,0c2.3,3.3,3.6,7.1,3.6,11.2\r\n\tc0,1.4-17.9,58-17.9,58l0,0c-1.3,4.4,2.1,8.9,7.6,10c0.8,0.2,1.6,0.2,2.4,0.2c1.3,0,2.5-0.2,3.7-0.5l1.6-0.6l50.6-22\r\n\tc0.9-0.4,9-3.5,10-3.9c0,0,0.6-0.2,0.6-0.2c0,0-0.1,0-0.6,0.2c3.4-1.2,7.2-1.8,11.2-1.8c3.6,0,7.1,0.5,10.3,1.5c0.1,0,0.2,0,0.2,0.1\r\n\tc0.5,0.2,1,0.3,1.5,0.5c23.1,7.9,48.4,10.3,75.1,10.3c106,0,191-64.1,191-149.3C448,165.1,362,96,256,96L256,96z" + }, + "children": [] + }] +}; +exports.iosChatbubbleOutline = iosChatbubbleOutline; \ No newline at end of file diff --git a/dist/ionicons/iosCheckmark.js b/dist/ionicons/iosCheckmark.js new file mode 100644 index 000000000..6cd45b717 --- /dev/null +++ b/dist/ionicons/iosCheckmark.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosCheckmark = void 0; +var iosCheckmark = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M223.9,329.7\r\n\t\tc-2.4,2.4-5.8,4.4-8.8,4.4s-6.4-2.1-8.9-4.5l-56-56l17.8-17.8l47.2,47.2l124.8-125.7l17.5,18.1L223.9,329.7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M223.9,329.7\r\n\t\tc-2.4,2.4-5.8,4.4-8.8,4.4s-6.4-2.1-8.9-4.5l-56-56l17.8-17.8l47.2,47.2l124.8-125.7l17.5,18.1L223.9,329.7z" + }, + "children": [] + }] + }] + }] +}; +exports.iosCheckmark = iosCheckmark; \ No newline at end of file diff --git a/dist/ionicons/iosCheckmarkEmpty.js b/dist/ionicons/iosCheckmarkEmpty.js new file mode 100644 index 000000000..46b889ab1 --- /dev/null +++ b/dist/ionicons/iosCheckmarkEmpty.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosCheckmarkEmpty = void 0; +var iosCheckmarkEmpty = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M223.9,329.7c-2.4,2.4-5.8,4.4-8.8,4.4s-6.4-2.1-8.9-4.5l-56-56l17.8-17.8l47.2,47.2l124.8-125.7l17.5,18.1L223.9,329.7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M223.9,329.7c-2.4,2.4-5.8,4.4-8.8,4.4s-6.4-2.1-8.9-4.5l-56-56l17.8-17.8l47.2,47.2l124.8-125.7l17.5,18.1L223.9,329.7z" + }, + "children": [] + }] + }] + }] +}; +exports.iosCheckmarkEmpty = iosCheckmarkEmpty; \ No newline at end of file diff --git a/dist/ionicons/iosCheckmarkOutline.js b/dist/ionicons/iosCheckmarkOutline.js new file mode 100644 index 000000000..ab807ec69 --- /dev/null +++ b/dist/ionicons/iosCheckmarkOutline.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosCheckmarkOutline = void 0; +var iosCheckmarkOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M340.1,177.3L215.3,303l-47.2-47.2l-17.8,17.8l56,56c2.5,2.5,5.9,4.5,8.9,4.5s6.3-2,8.8-4.4l133.7-134.4L340.1,177.3z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M340.1,177.3L215.3,303l-47.2-47.2l-17.8,17.8l56,56c2.5,2.5,5.9,4.5,8.9,4.5s6.3-2,8.8-4.4l133.7-134.4L340.1,177.3z" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M256,446.7\r\n\t\t\tc-105.1,0-190.7-85.5-190.7-190.7c0-105.1,85.5-190.7,190.7-190.7c105.1,0,190.7,85.5,190.7,190.7\r\n\t\t\tC446.7,361.1,361.1,446.7,256,446.7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M256,446.7\r\n\t\t\tc-105.1,0-190.7-85.5-190.7-190.7c0-105.1,85.5-190.7,190.7-190.7c105.1,0,190.7,85.5,190.7,190.7\r\n\t\t\tC446.7,361.1,361.1,446.7,256,446.7z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.iosCheckmarkOutline = iosCheckmarkOutline; \ No newline at end of file diff --git a/dist/ionicons/iosCircleFilled.js b/dist/ionicons/iosCircleFilled.js new file mode 100644 index 000000000..eb9db09c8 --- /dev/null +++ b/dist/ionicons/iosCircleFilled.js @@ -0,0 +1,59 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosCircleFilled = void 0; +var iosCircleFilled = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M256,446.7\r\n\t\t\tc-105.1,0-190.7-85.5-190.7-190.7c0-105.1,85.5-190.7,190.7-190.7c105.1,0,190.7,85.5,190.7,190.7\r\n\t\t\tC446.7,361.1,361.1,446.7,256,446.7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M256,446.7\r\n\t\t\tc-105.1,0-190.7-85.5-190.7-190.7c0-105.1,85.5-190.7,190.7-190.7c105.1,0,190.7,85.5,190.7,190.7\r\n\t\t\tC446.7,361.1,361.1,446.7,256,446.7z" + }, + "children": [] + }] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,96c-88.4,0-160,71.6-160,160c0,88.4,71.6,160,160,160c88.4,0,160-71.6,160-160C416,167.6,344.4,96,256,96z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,96c-88.4,0-160,71.6-160,160c0,88.4,71.6,160,160,160c88.4,0,160-71.6,160-160C416,167.6,344.4,96,256,96z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.iosCircleFilled = iosCircleFilled; \ No newline at end of file diff --git a/dist/ionicons/iosCircleOutline.js b/dist/ionicons/iosCircleOutline.js new file mode 100644 index 000000000..9dabcbcc4 --- /dev/null +++ b/dist/ionicons/iosCircleOutline.js @@ -0,0 +1,35 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosCircleOutline = void 0; +var iosCircleOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M256,446.7\r\n\t\t\tc-105.1,0-190.7-85.5-190.7-190.7c0-105.1,85.5-190.7,190.7-190.7c105.1,0,190.7,85.5,190.7,190.7\r\n\t\t\tC446.7,361.1,361.1,446.7,256,446.7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M256,446.7\r\n\t\t\tc-105.1,0-190.7-85.5-190.7-190.7c0-105.1,85.5-190.7,190.7-190.7c105.1,0,190.7,85.5,190.7,190.7\r\n\t\t\tC446.7,361.1,361.1,446.7,256,446.7z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.iosCircleOutline = iosCircleOutline; \ No newline at end of file diff --git a/dist/ionicons/iosClock.js b/dist/ionicons/iosClock.js new file mode 100644 index 000000000..f9c3aa939 --- /dev/null +++ b/dist/ionicons/iosClock.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosClock = void 0; +var iosClock = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M273,273H160v-17h96V128h17\r\n\t\tV273z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M273,273H160v-17h96V128h17\r\n\t\tV273z" + }, + "children": [] + }] + }] + }] +}; +exports.iosClock = iosClock; \ No newline at end of file diff --git a/dist/ionicons/iosClockOutline.js b/dist/ionicons/iosClockOutline.js new file mode 100644 index 000000000..88576e59e --- /dev/null +++ b/dist/ionicons/iosClockOutline.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosClockOutline = void 0; +var iosClockOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M256,446.7\r\n\t\tc-105.1,0-190.7-85.5-190.7-190.7c0-105.1,85.5-190.7,190.7-190.7c105.1,0,190.7,85.5,190.7,190.7\r\n\t\tC446.7,361.1,361.1,446.7,256,446.7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M256,446.7\r\n\t\tc-105.1,0-190.7-85.5-190.7-190.7c0-105.1,85.5-190.7,190.7-190.7c105.1,0,190.7,85.5,190.7,190.7\r\n\t\tC446.7,361.1,361.1,446.7,256,446.7z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "256,256 160,256 160,273.3 273.3,273.3 273.3,128 256,128 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "256,256 160,256 160,273.3 273.3,273.3 273.3,128 256,128 \t" + }, + "children": [] + }] + }] + }] +}; +exports.iosClockOutline = iosClockOutline; \ No newline at end of file diff --git a/dist/ionicons/iosClose.js b/dist/ionicons/iosClose.js new file mode 100644 index 000000000..b499a7fa6 --- /dev/null +++ b/dist/ionicons/iosClose.js @@ -0,0 +1,35 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosClose = void 0; +var iosClose = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "style", + "attribs": { + "type": "text/css" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "class": "st0", + "d": "M403.1,108.9c-81.2-81.2-212.9-81.2-294.2,0s-81.2,212.9,0,294.2c81.2,81.2,212.9,81.2,294.2,0\r\n\t\tS484.3,190.1,403.1,108.9z M352,340.2L340.2,352l-84.4-84.2l-84,83.8L160,339.8l84-83.8l-84-83.8l11.8-11.8l84,83.8l84.4-84.2\r\n\t\tl11.8,11.8L267.6,256L352,340.2z" + }, + "children": [{ + "name": "path", + "attribs": { + "class": "st0", + "d": "M403.1,108.9c-81.2-81.2-212.9-81.2-294.2,0s-81.2,212.9,0,294.2c81.2,81.2,212.9,81.2,294.2,0\r\n\t\tS484.3,190.1,403.1,108.9z M352,340.2L340.2,352l-84.4-84.2l-84,83.8L160,339.8l84-83.8l-84-83.8l11.8-11.8l84,83.8l84.4-84.2\r\n\t\tl11.8,11.8L267.6,256L352,340.2z" + }, + "children": [] + }] + }] + }] +}; +exports.iosClose = iosClose; \ No newline at end of file diff --git a/dist/ionicons/iosCloseEmpty.js b/dist/ionicons/iosCloseEmpty.js new file mode 100644 index 000000000..185a31e82 --- /dev/null +++ b/dist/ionicons/iosCloseEmpty.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosCloseEmpty = void 0; +var iosCloseEmpty = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "style", + "attribs": { + "type": "text/css" + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "class": "st0", + "points": "340.2,160 255.8,244.3 171.8,160.4 160,172.2 244,256 160,339.9 171.8,351.6 255.8,267.8 340.2,352 \r\n\t352,340.3 267.6,256 352,171.8 " + }, + "children": [] + }] +}; +exports.iosCloseEmpty = iosCloseEmpty; \ No newline at end of file diff --git a/dist/ionicons/iosCloseOutline.js b/dist/ionicons/iosCloseOutline.js new file mode 100644 index 000000000..621dcad3e --- /dev/null +++ b/dist/ionicons/iosCloseOutline.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosCloseOutline = void 0; +var iosCloseOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "style", + "attribs": { + "type": "text/css" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "class": "st0", + "d": "M403.1,108.9c-81.2-81.2-212.9-81.2-294.2,0s-81.2,212.9,0,294.2c81.2,81.2,212.9,81.2,294.2,0\r\n\t\t\tS484.3,190.1,403.1,108.9z M390.8,390.8c-74.3,74.3-195.3,74.3-269.6,0c-74.3-74.3-74.3-195.3,0-269.6s195.3-74.3,269.6,0\r\n\t\t\tC465.2,195.5,465.2,316.5,390.8,390.8z" + }, + "children": [{ + "name": "path", + "attribs": { + "class": "st0", + "d": "M403.1,108.9c-81.2-81.2-212.9-81.2-294.2,0s-81.2,212.9,0,294.2c81.2,81.2,212.9,81.2,294.2,0\r\n\t\t\tS484.3,190.1,403.1,108.9z M390.8,390.8c-74.3,74.3-195.3,74.3-269.6,0c-74.3-74.3-74.3-195.3,0-269.6s195.3-74.3,269.6,0\r\n\t\t\tC465.2,195.5,465.2,316.5,390.8,390.8z" + }, + "children": [] + }] + }] + }] + }, { + "name": "polygon", + "attribs": { + "class": "st0", + "points": "340.2,160 255.8,244.2 171.8,160.4 160,172.2 244,256 160,339.8 171.8,351.6 255.8,267.8 340.2,352 \r\n\t\t352,340.2 267.6,256 352,171.8 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "class": "st0", + "points": "340.2,160 255.8,244.2 171.8,160.4 160,172.2 244,256 160,339.8 171.8,351.6 255.8,267.8 340.2,352 \r\n\t\t352,340.2 267.6,256 352,171.8 \t" + }, + "children": [] + }] + }] + }] +}; +exports.iosCloseOutline = iosCloseOutline; \ No newline at end of file diff --git a/dist/ionicons/iosCloud.js b/dist/ionicons/iosCloud.js new file mode 100644 index 000000000..b169e8c82 --- /dev/null +++ b/dist/ionicons/iosCloud.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosCloud = void 0; +var iosCloud = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M399.3,232.8c0-1.2,0.2-2.4,0.2-3.6c0-64.3-52.8-117.2-116.8-117.2c-46.1,0-85.8,27.9-104.4,67c-8.1-4.1-17.1-6.4-26.8-6.4\r\n\tc-29.6,0-54.1,23.7-58.9,52C57.4,236.8,32,268.8,32,308.4c0,49.8,40.1,91.6,89.6,91.6H398c45,0,82-38.9,82-84.3\r\n\tC480,270.1,444.6,232.9,399.3,232.8z" + }, + "children": [] + }] +}; +exports.iosCloud = iosCloud; \ No newline at end of file diff --git a/dist/ionicons/iosCloudDownload.js b/dist/ionicons/iosCloudDownload.js new file mode 100644 index 000000000..f52116199 --- /dev/null +++ b/dist/ionicons/iosCloudDownload.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosCloudDownload = void 0; +var iosCloudDownload = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "248,435 193.3,381.2 181.6,392.6 256.1,466 330.6,392.6 318.8,381.2 264,435 264,328 248,328 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "248,435 193.3,381.2 181.6,392.6 256.1,466 330.6,392.6 318.8,381.2 264,435 264,328 248,328 \t" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M399.2,164.4c0-1.2,0.2-2.3,0.2-3.5C399.4,97.4,346.5,46,282.6,46c-46.1,0-85.8,26.8-104.4,65.4c-8.1-4-17.1-6.3-26.8-6.3\r\n\t\tc-29.6,0-54.1,23.3-58.9,51.3c-35.2,12-60.6,43.4-60.6,82.4c0,49.1,40.1,89.2,89.6,89.2H192h21h35V193h16v135h134\r\n\t\tc45,0,81.9-37.2,81.9-82.1C479.9,201,444.5,164.5,399.2,164.4z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M399.2,164.4c0-1.2,0.2-2.3,0.2-3.5C399.4,97.4,346.5,46,282.6,46c-46.1,0-85.8,26.8-104.4,65.4c-8.1-4-17.1-6.3-26.8-6.3\r\n\t\tc-29.6,0-54.1,23.3-58.9,51.3c-35.2,12-60.6,43.4-60.6,82.4c0,49.1,40.1,89.2,89.6,89.2H192h21h35V193h16v135h134\r\n\t\tc45,0,81.9-37.2,81.9-82.1C479.9,201,444.5,164.5,399.2,164.4z" + }, + "children": [] + }] + }] + }] +}; +exports.iosCloudDownload = iosCloudDownload; \ No newline at end of file diff --git a/dist/ionicons/iosCloudDownloadOutline.js b/dist/ionicons/iosCloudDownloadOutline.js new file mode 100644 index 000000000..b220b58a8 --- /dev/null +++ b/dist/ionicons/iosCloudDownloadOutline.js @@ -0,0 +1,55 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosCloudDownloadOutline = void 0; +var iosCloudDownloadOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "193.2,381.2 181.6,392.6 256.1,466 330.6,392.6 319,381.2 264.3,435 264.3,192.9 247.9,192.9 247.9,435 \t\t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "193.2,381.2 181.6,392.6 256.1,466 330.6,392.6 319,381.2 264.3,435 264.3,192.9 247.9,192.9 247.9,435 \t\t" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M399.2,164.4c0-1.2,0.2-2.3,0.2-3.5C399.4,97.4,346.5,46,282.6,46c-46.1,0-85.8,26.8-104.4,65.4c-8.1-4-17.1-6.3-26.8-6.3\r\n\t\t\tc-29.6,0-54.1,23.3-58.9,51.3c-35.2,12-60.6,43.4-60.6,82.4c0,49.1,40.1,89.2,89.6,89.2H213v-16h-90.7\r\n\t\t\tc-40.9,0-74.2-33.2-74.2-73.7c0-31.4,20.2-57.5,50.2-67.7l8.4-2.8l1.5-8.7c3.6-21.3,22.1-38.8,43.9-38.8c6.9,0,13.7,1.6,19.9,4.7\r\n\t\t\tl13.5,6.7l6.5-13.6c16.6-34.4,52.1-56.6,90.4-56.6c55.3,0,100.9,42.8,100.9,97.6c0,13.1-0.2,20.1-0.2,20.1l15.2,0.1\r\n\t\t\tc36.7,0.5,65.6,30,65.6,66.4c0,36.3-29.8,66.1-66.5,66.3l-3.2,0.1H297v16h101h0c45,0,81.9-37.2,81.9-82.1\r\n\t\t\tC479.9,201,444.5,164.5,399.2,164.4z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M399.2,164.4c0-1.2,0.2-2.3,0.2-3.5C399.4,97.4,346.5,46,282.6,46c-46.1,0-85.8,26.8-104.4,65.4c-8.1-4-17.1-6.3-26.8-6.3\r\n\t\t\tc-29.6,0-54.1,23.3-58.9,51.3c-35.2,12-60.6,43.4-60.6,82.4c0,49.1,40.1,89.2,89.6,89.2H213v-16h-90.7\r\n\t\t\tc-40.9,0-74.2-33.2-74.2-73.7c0-31.4,20.2-57.5,50.2-67.7l8.4-2.8l1.5-8.7c3.6-21.3,22.1-38.8,43.9-38.8c6.9,0,13.7,1.6,19.9,4.7\r\n\t\t\tl13.5,6.7l6.5-13.6c16.6-34.4,52.1-56.6,90.4-56.6c55.3,0,100.9,42.8,100.9,97.6c0,13.1-0.2,20.1-0.2,20.1l15.2,0.1\r\n\t\t\tc36.7,0.5,65.6,30,65.6,66.4c0,36.3-29.8,66.1-66.5,66.3l-3.2,0.1H297v16h101h0c45,0,81.9-37.2,81.9-82.1\r\n\t\t\tC479.9,201,444.5,164.5,399.2,164.4z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.iosCloudDownloadOutline = iosCloudDownloadOutline; \ No newline at end of file diff --git a/dist/ionicons/iosCloudOutline.js b/dist/ionicons/iosCloudOutline.js new file mode 100644 index 000000000..f6796668d --- /dev/null +++ b/dist/ionicons/iosCloudOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosCloudOutline = void 0; +var iosCloudOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M399.3,232.8c0-1.2,0.2-2.4,0.2-3.6c0-64.3-52.8-117.2-116.8-117.2c-46.1,0-85.8,27.9-104.4,67c-8.1-4.1-17.1-6.4-26.8-6.4\r\n\tc-29.6,0-54.1,23.7-58.9,52C57.4,236.8,32,268.8,32,308.4c0,49.8,40.1,91.6,89.6,91.6H398c45,0,82-38.9,82-84.3\r\n\tC480,270.1,444.6,232.9,399.3,232.8z M397.5,383.6l-3.2,0.4H122.4c-40.9,0-74.2-34.9-74.2-76.1c0-31.9,20.2-58.4,50.2-68.8l8.4-3\r\n\tl1.5-8.8c3.6-21.6,22.1-39.3,43.9-39.3c6.9,0,13.7,1.6,19.9,4.8l13.5,6.8l6.5-13.7c16.6-34.9,52.1-58.2,90.4-58.2\r\n\tc55.3,0,100.9,44.1,100.9,99.7c0,13.3-0.2,20.3-0.2,20.3l15.2,0.1c36.7,0.5,65.6,30.5,65.6,67.4C464,352.1,434.2,383.4,397.5,383.6z\r\n\t" + }, + "children": [] + }] +}; +exports.iosCloudOutline = iosCloudOutline; \ No newline at end of file diff --git a/dist/ionicons/iosCloudUpload.js b/dist/ionicons/iosCloudUpload.js new file mode 100644 index 000000000..c8d2f4869 --- /dev/null +++ b/dist/ionicons/iosCloudUpload.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosCloudUpload = void 0; +var iosCloudUpload = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "248", + "y": "352", + "width": "16", + "height": "96" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "248", + "y": "352", + "width": "16", + "height": "96" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M399.3,183.6c0-1.2,0.2-2.4,0.2-3.6c0-64.3-52.8-116.4-116.8-116.4c-46.1,0-85.8,27.1-104.4,66.3\r\n\t\tc-8.1-4.1-17.1-6.4-26.8-6.4c-29.6,0-54.1,23.6-58.9,52C57.4,187.6,32,222.2,32,261.8c0,49.7,40.1,90.2,89.6,90.2H182h31h35V205.8\r\n\t\tl-54.7,54.5l-11.6-11.6l74.5-74.3l74.5,74.3l-11.8,11.6L264,205.8V352h134c45,0,82-37.3,82-82.8C480,223.7,444.5,183.7,399.3,183.6\r\n\t\tz" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M399.3,183.6c0-1.2,0.2-2.4,0.2-3.6c0-64.3-52.8-116.4-116.8-116.4c-46.1,0-85.8,27.1-104.4,66.3\r\n\t\tc-8.1-4.1-17.1-6.4-26.8-6.4c-29.6,0-54.1,23.6-58.9,52C57.4,187.6,32,222.2,32,261.8c0,49.7,40.1,90.2,89.6,90.2H182h31h35V205.8\r\n\t\tl-54.7,54.5l-11.6-11.6l74.5-74.3l74.5,74.3l-11.8,11.6L264,205.8V352h134c45,0,82-37.3,82-82.8C480,223.7,444.5,183.7,399.3,183.6\r\n\t\tz" + }, + "children": [] + }] + }] + }] +}; +exports.iosCloudUpload = iosCloudUpload; \ No newline at end of file diff --git a/dist/ionicons/iosCloudUploadOutline.js b/dist/ionicons/iosCloudUploadOutline.js new file mode 100644 index 000000000..7bf04f6c7 --- /dev/null +++ b/dist/ionicons/iosCloudUploadOutline.js @@ -0,0 +1,55 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosCloudUploadOutline = void 0; +var iosCloudUploadOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "193.3,260.4 181.7,248.8 256.2,174.5 330.7,248.8 319,260.4 264.4,205.8 264.4,447.6 247.9,447.6 247.9,205.8 \t\t\r\n\t\t\t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "193.3,260.4 181.7,248.8 256.2,174.5 330.7,248.8 319,260.4 264.4,205.8 264.4,447.6 247.9,447.6 247.9,205.8 \t\t\r\n\t\t\t" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M399.3,183.6c0-1.2,0.2-2.4,0.2-3.6c0-64.3-52.8-116.4-116.8-116.4c-46.1,0-85.8,27.1-104.4,66.3\r\n\t\t\tc-8.1-4.1-17.1-6.4-26.8-6.4c-29.6,0-54.1,23.6-58.9,52C57.4,187.6,32,222.2,32,261.8c0,49.7,40.1,90.2,89.6,90.2H213v-16h-90.6\r\n\t\t\tc-40.9,0-74.2-33.5-74.2-74.6c0-31.8,20.2-61.2,50.2-71.6l8.4-2.9l1.5-8.8c3.6-21.6,22.1-39.3,43.9-39.3c6.9,0,13.7,1.6,19.9,4.8\r\n\t\t\tl13.5,6.8l6.5-13.7c16.6-34.9,52.1-57.4,90.4-57.4c55.3,0,100.9,43.3,100.9,98.9c0,13.3-0.2,20.3-0.2,20.3l15.2,0.1\r\n\t\t\tC435,199.1,464,232,464,268.9c0,36.8-29.8,66.9-66.5,67.1l-3.2,0H297v16h101h0c45,0,82-37.3,82-82.8\r\n\t\t\tC480,223.7,444.5,183.7,399.3,183.6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M399.3,183.6c0-1.2,0.2-2.4,0.2-3.6c0-64.3-52.8-116.4-116.8-116.4c-46.1,0-85.8,27.1-104.4,66.3\r\n\t\t\tc-8.1-4.1-17.1-6.4-26.8-6.4c-29.6,0-54.1,23.6-58.9,52C57.4,187.6,32,222.2,32,261.8c0,49.7,40.1,90.2,89.6,90.2H213v-16h-90.6\r\n\t\t\tc-40.9,0-74.2-33.5-74.2-74.6c0-31.8,20.2-61.2,50.2-71.6l8.4-2.9l1.5-8.8c3.6-21.6,22.1-39.3,43.9-39.3c6.9,0,13.7,1.6,19.9,4.8\r\n\t\t\tl13.5,6.8l6.5-13.7c16.6-34.9,52.1-57.4,90.4-57.4c55.3,0,100.9,43.3,100.9,98.9c0,13.3-0.2,20.3-0.2,20.3l15.2,0.1\r\n\t\t\tC435,199.1,464,232,464,268.9c0,36.8-29.8,66.9-66.5,67.1l-3.2,0H297v16h101h0c45,0,82-37.3,82-82.8\r\n\t\t\tC480,223.7,444.5,183.7,399.3,183.6z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.iosCloudUploadOutline = iosCloudUploadOutline; \ No newline at end of file diff --git a/dist/ionicons/iosCloudy.js b/dist/ionicons/iosCloudy.js new file mode 100644 index 000000000..67a86e61f --- /dev/null +++ b/dist/ionicons/iosCloudy.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosCloudy = void 0; +var iosCloudy = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "style", + "attribs": { + "type": "text/css" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "class": "st0", + "d": "M244,160c-43,0-78.3,35.2-78.3,78.5c0,2.6,0.1,5.2,0.4,7.8c-26.4,2.3-47.1,25.5-47.1,52.6\r\n\tc0,28.6,23.2,53.1,51.7,53.1h157.7c35.7,0,64.6-29.9,64.6-65.7S364.1,221,328.4,221c-2.7,0-5.4,0-8,0.3C312.5,186.3,281,160,244,160\r\n\tL244,160z" + }, + "children": [] + }] +}; +exports.iosCloudy = iosCloudy; \ No newline at end of file diff --git a/dist/ionicons/iosCloudyNight.js b/dist/ionicons/iosCloudyNight.js new file mode 100644 index 000000000..93810b58a --- /dev/null +++ b/dist/ionicons/iosCloudyNight.js @@ -0,0 +1,42 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosCloudyNight = void 0; +var iosCloudyNight = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "style", + "attribs": { + "type": "text/css" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "class": "st0", + "d": "M424.6,305.6c-2,0.1-3.9,0.1-5.9,0.1c-32.3,0-62.7-12.6-85.5-35.5c-22.8-22.9-35.4-53.3-35.4-85.7\r\n\t\tc0-18.4,4.1-36.2,11.8-52.4c3.4-7.1,7.5-13.9,12.3-20.2c-8.4,0.9-16.6,2.7-24.4,5.1c-37.2,11.8-67.1,40.2-81,76.5\r\n\t\tc-0.3,0.8-0.6,1.5-0.9,2.3c11.9,3.5,23.1,9.4,32.8,17.3c13,10.6,22.9,24.5,28.8,40.1c20.1,0.9,38.9,9.4,53.3,24\r\n\t\tc15.2,15.4,23.5,35.9,23.5,57.4c0,11.4-2.4,22.5-6.8,32.8c0.8-0.1,1.6-0.1,2.5-0.2c33.6-3.6,63.3-20.1,84-44.6\r\n\t\tc5.4-6.3,10.2-13.2,14.2-20.5C440.4,304.1,432.6,305.2,424.6,305.6z" + }, + "children": [{ + "name": "path", + "attribs": { + "class": "st0", + "d": "M424.6,305.6c-2,0.1-3.9,0.1-5.9,0.1c-32.3,0-62.7-12.6-85.5-35.5c-22.8-22.9-35.4-53.3-35.4-85.7\r\n\t\tc0-18.4,4.1-36.2,11.8-52.4c3.4-7.1,7.5-13.9,12.3-20.2c-8.4,0.9-16.6,2.7-24.4,5.1c-37.2,11.8-67.1,40.2-81,76.5\r\n\t\tc-0.3,0.8-0.6,1.5-0.9,2.3c11.9,3.5,23.1,9.4,32.8,17.3c13,10.6,22.9,24.5,28.8,40.1c20.1,0.9,38.9,9.4,53.3,24\r\n\t\tc15.2,15.4,23.5,35.9,23.5,57.4c0,11.4-2.4,22.5-6.8,32.8c0.8-0.1,1.6-0.1,2.5-0.2c33.6-3.6,63.3-20.1,84-44.6\r\n\t\tc5.4-6.3,10.2-13.2,14.2-20.5C440.4,304.1,432.6,305.2,424.6,305.6z" + }, + "children": [] + }] + }] + }, { + "name": "path", + "attribs": { + "class": "st0", + "d": "M189,209c-43.3,0-78.3,35.2-78.3,78.5c0,2.6,0.1,5.2,0.4,7.8C84.7,297.7,64,320.8,64,347.9\r\n\tc0,28.6,23.2,53.1,51.7,53.1h157.7c35.7,0,64.6-29.9,64.6-65.7c0-35.8-28.9-65.3-64.6-65.3c-2.7,0-5.4,0-8,0.3\r\n\tC257.5,235.3,226.3,209,189,209L189,209z" + }, + "children": [] + }] +}; +exports.iosCloudyNight = iosCloudyNight; \ No newline at end of file diff --git a/dist/ionicons/iosCloudyNightOutline.js b/dist/ionicons/iosCloudyNightOutline.js new file mode 100644 index 000000000..a53dc0adb --- /dev/null +++ b/dist/ionicons/iosCloudyNightOutline.js @@ -0,0 +1,49 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosCloudyNightOutline = void 0; +var iosCloudyNightOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "style", + "attribs": { + "type": "text/css" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "class": "st0", + "d": "M189,223.8c14.5,0,28.1,4.8,39.3,13.9c10.9,8.9,18.6,21.3,21.7,34.9l3.1,14l14.2-1.8c2.1-0.3,4.1-0.4,6.1-0.4\r\n\t\tc26.9,0,48.8,22.1,48.8,49.2c0,27.1-21.9,49.2-48.8,49.2H115.7c-9.5,0-18.5-3.9-25.4-10.8c-6.8-7-10.6-16.2-10.6-25.9\r\n\t\tc0-18.6,14.5-33.8,33.2-36.9c1.6-0.3,8.8-1.2,14.2-1.7c0,0-0.5-5.3-0.6-9.6c-0.1-4.3-0.1-9.4-0.1-11.5\r\n\t\tC126.5,252,154.5,223.8,189,223.8 M189,208c-43.3,0-78.3,35.2-78.3,78.5c0,2.6,0.1,5.2,0.4,7.8C84.7,296.7,64,319.8,64,346.9\r\n\t\tc0,28.6,23.2,53.1,51.7,53.1h157.7c35.7,0,64.6-29.9,64.6-65.7c0-35.8-28.9-65.3-64.6-65.3c-2.7,0-5.4,0-8,0.3\r\n\t\tC257.5,234.3,226.3,208,189,208L189,208z" + }, + "children": [{ + "name": "path", + "attribs": { + "class": "st0", + "d": "M189,223.8c14.5,0,28.1,4.8,39.3,13.9c10.9,8.9,18.6,21.3,21.7,34.9l3.1,14l14.2-1.8c2.1-0.3,4.1-0.4,6.1-0.4\r\n\t\tc26.9,0,48.8,22.1,48.8,49.2c0,27.1-21.9,49.2-48.8,49.2H115.7c-9.5,0-18.5-3.9-25.4-10.8c-6.8-7-10.6-16.2-10.6-25.9\r\n\t\tc0-18.6,14.5-33.8,33.2-36.9c1.6-0.3,8.8-1.2,14.2-1.7c0,0-0.5-5.3-0.6-9.6c-0.1-4.3-0.1-9.4-0.1-11.5\r\n\t\tC126.5,252,154.5,223.8,189,223.8 M189,208c-43.3,0-78.3,35.2-78.3,78.5c0,2.6,0.1,5.2,0.4,7.8C84.7,296.7,64,319.8,64,346.9\r\n\t\tc0,28.6,23.2,53.1,51.7,53.1h157.7c35.7,0,64.6-29.9,64.6-65.7c0-35.8-28.9-65.3-64.6-65.3c-2.7,0-5.4,0-8,0.3\r\n\t\tC257.5,234.3,226.3,208,189,208L189,208z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "class": "st0", + "d": "M424.6,305.6c-2,0.1-3.9,0.1-5.9,0.1c-32.3,0-62.7-12.6-85.5-35.5c-22.8-22.9-35.4-53.3-35.4-85.7\r\n\t\tc0-18.4,4.1-36.2,11.8-52.4c3.4-7.1,7.5-13.9,12.3-20.2c-8.4,0.9-16.6,2.7-24.4,5.1c-37.2,11.8-67.1,40.2-81,76.5\r\n\t\tc5.9,1.2,11.6,3,17,5.4c10.1-25.5,29.4-46.4,53.8-58.6c-4.6,13.9-7.1,28.7-7.1,44.1c0,27.3,7.9,52.8,21.4,74.2\r\n\t\tc13.8,21.8,33.5,39.5,56.8,50.9c15.3,7.4,32.2,12.1,50,13.5c-14,12.2-31.2,20.9-50,24.8c-1.9,6.9-4.9,13.4-8.6,19.3\r\n\t\tc33.6-3.6,63.3-20.1,84-44.6c5.4-6.3,10.2-13.2,14.2-20.5C440.4,304.1,432.6,305.2,424.6,305.6z" + }, + "children": [{ + "name": "path", + "attribs": { + "class": "st0", + "d": "M424.6,305.6c-2,0.1-3.9,0.1-5.9,0.1c-32.3,0-62.7-12.6-85.5-35.5c-22.8-22.9-35.4-53.3-35.4-85.7\r\n\t\tc0-18.4,4.1-36.2,11.8-52.4c3.4-7.1,7.5-13.9,12.3-20.2c-8.4,0.9-16.6,2.7-24.4,5.1c-37.2,11.8-67.1,40.2-81,76.5\r\n\t\tc5.9,1.2,11.6,3,17,5.4c10.1-25.5,29.4-46.4,53.8-58.6c-4.6,13.9-7.1,28.7-7.1,44.1c0,27.3,7.9,52.8,21.4,74.2\r\n\t\tc13.8,21.8,33.5,39.5,56.8,50.9c15.3,7.4,32.2,12.1,50,13.5c-14,12.2-31.2,20.9-50,24.8c-1.9,6.9-4.9,13.4-8.6,19.3\r\n\t\tc33.6-3.6,63.3-20.1,84-44.6c5.4-6.3,10.2-13.2,14.2-20.5C440.4,304.1,432.6,305.2,424.6,305.6z" + }, + "children": [] + }] + }] + }] +}; +exports.iosCloudyNightOutline = iosCloudyNightOutline; \ No newline at end of file diff --git a/dist/ionicons/iosCloudyOutline.js b/dist/ionicons/iosCloudyOutline.js new file mode 100644 index 000000000..85fc654ea --- /dev/null +++ b/dist/ionicons/iosCloudyOutline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosCloudyOutline = void 0; +var iosCloudyOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "style", + "attribs": { + "type": "text/css" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "class": "st0", + "d": "M244,175.8c14.5,0,28.1,4.8,39.3,13.9c10.9,8.9,18.6,21.3,21.7,34.9l3.1,14l14.2-1.8c2.1-0.3,4.1-0.4,6.1-0.4\r\n\tc26.9,0,48.8,22.1,48.8,49.2c0,27.1-21.9,49.2-48.8,49.2H170.7c-9.5,0-18.5-3.9-25.4-10.8c-6.8-7-10.6-16.2-10.6-25.9\r\n\tc0-18.6,14.5-33.8,33.2-36.9c1.6-0.3,8.7-1.2,14.2-1.7c0,0-0.5-5.3-0.6-9.6c-0.1-4.3-0.1-9.4-0.1-11.5\r\n\tC181.5,204,209.5,175.8,244,175.8 M244,160c-43,0-78.3,35.2-78.3,78.5c0,2.6,0.1,5.2,0.4,7.8c-26.4,2.3-47.1,25.5-47.1,52.6\r\n\tc0,28.6,23.2,53.1,51.7,53.1h157.7c35.7,0,64.6-29.9,64.6-65.7S364.1,221,328.4,221c-2.7,0-5.4,0-8,0.3C312.5,186.3,281,160,244,160\r\n\tL244,160z" + }, + "children": [] + }] +}; +exports.iosCloudyOutline = iosCloudyOutline; \ No newline at end of file diff --git a/dist/ionicons/iosCog.js b/dist/ionicons/iosCog.js new file mode 100644 index 000000000..3f6dffdba --- /dev/null +++ b/dist/ionicons/iosCog.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosCog = void 0; +var iosCog = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M293.25,150.32L265.2,254.9l74.954,75C358.159,309.457,368,283.486,368,256c0-29.916-11.65-58.042-32.805-79.196\r\n\t\tC323.154,164.763,308.854,155.807,293.25,150.32z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M293.25,150.32L265.2,254.9l74.954,75C358.159,309.457,368,283.486,368,256c0-29.916-11.65-58.042-32.805-79.196\r\n\t\tC323.154,164.763,308.854,155.807,293.25,150.32z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M278.068,146.161C270.88,144.732,263.496,144,256,144c-29.916,0-58.042,11.65-79.196,32.805\r\n\t\tC155.65,197.958,144,226.084,144,256c0,7.468,0.727,14.824,2.145,21.988L250.3,250.1L278.068,146.161z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M278.068,146.161C270.88,144.732,263.496,144,256,144c-29.916,0-58.042,11.65-79.196,32.805\r\n\t\tC155.65,197.958,144,226.084,144,256c0,7.468,0.727,14.824,2.145,21.988L250.3,250.1L278.068,146.161z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M150.473,293.697c5.5,15.43,14.404,29.572,26.331,41.498C197.958,356.35,226.083,368,256,368\r\n\t\tc27.009,0,52.558-9.499,72.835-26.911L253.9,266.2L150.473,293.697z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M150.473,293.697c5.5,15.43,14.404,29.572,26.331,41.498C197.958,356.35,226.083,368,256,368\r\n\t\tc27.009,0,52.558-9.499,72.835-26.911L253.9,266.2L150.473,293.697z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M448,272.754v-32.008l-33.291-8.703l-2.601-13.204l27.594-20.905l-12.197-29.608l-34.392,4.802l-7.498-10.603\r\n\t\tl17.695-29.708l-22.594-22.605l-30.191,17.404l-10.697-7.302l5.298-35.009l-29.492-12.303L294.04,101.31l-12.297-2.601L273.045,64\r\n\t\th-31.991l-9.197,34.909l-12.098,2.4l-21.494-29.008l-29.592,12.304l4.799,35.709l-11.697,7.202l-31.292-18.705l-22.594,22.606\r\n\t\tl18.795,31.508l-6.698,10.502l-35.49-5.001l-12.197,29.608l28.893,21.706l-2.399,12.203L64,240.846v32.007l34.69,8.903l2.4,12.503\r\n\t\tl-28.394,21.307l12.297,29.508l34.991-5.002l7.099,11.303l-17.896,30.607l22.595,22.605l30.192-18.204l11.196,7.302l-4.498,34.311\r\n\t\tl29.592,12.202l20.595-27.808l13.396,2.5L241.054,448h31.991l8.298-33.109l13.597-2.601l20.694,27.106l29.593-12.203l-4.998-33.709\r\n\t\tl10.196-7.4l28.992,16.904l22.595-22.606l-16.795-28.907l7.896-11.402l33.791,4.802l12.298-29.508l-27.193-20.507l2.7-13.502\r\n\t\tL448,272.754z M256,384c-70.692,0-128-57.307-128-128c0-70.692,57.308-128,128-128c70.692,0,128,57.308,128,128\r\n\t\tC384,326.693,326.692,384,256,384z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M448,272.754v-32.008l-33.291-8.703l-2.601-13.204l27.594-20.905l-12.197-29.608l-34.392,4.802l-7.498-10.603\r\n\t\tl17.695-29.708l-22.594-22.605l-30.191,17.404l-10.697-7.302l5.298-35.009l-29.492-12.303L294.04,101.31l-12.297-2.601L273.045,64\r\n\t\th-31.991l-9.197,34.909l-12.098,2.4l-21.494-29.008l-29.592,12.304l4.799,35.709l-11.697,7.202l-31.292-18.705l-22.594,22.606\r\n\t\tl18.795,31.508l-6.698,10.502l-35.49-5.001l-12.197,29.608l28.893,21.706l-2.399,12.203L64,240.846v32.007l34.69,8.903l2.4,12.503\r\n\t\tl-28.394,21.307l12.297,29.508l34.991-5.002l7.099,11.303l-17.896,30.607l22.595,22.605l30.192-18.204l11.196,7.302l-4.498,34.311\r\n\t\tl29.592,12.202l20.595-27.808l13.396,2.5L241.054,448h31.991l8.298-33.109l13.597-2.601l20.694,27.106l29.593-12.203l-4.998-33.709\r\n\t\tl10.196-7.4l28.992,16.904l22.595-22.606l-16.795-28.907l7.896-11.402l33.791,4.802l12.298-29.508l-27.193-20.507l2.7-13.502\r\n\t\tL448,272.754z M256,384c-70.692,0-128-57.307-128-128c0-70.692,57.308-128,128-128c70.692,0,128,57.308,128,128\r\n\t\tC384,326.693,326.692,384,256,384z" + }, + "children": [] + }] + }] + }] +}; +exports.iosCog = iosCog; \ No newline at end of file diff --git a/dist/ionicons/iosCogOutline.js b/dist/ionicons/iosCogOutline.js new file mode 100644 index 000000000..5f00c0498 --- /dev/null +++ b/dist/ionicons/iosCogOutline.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosCogOutline = void 0; +var iosCogOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M448,272.754v-32.008l-33.291-8.703l-2.601-13.204l27.594-20.905l-12.197-29.608l-34.392,4.802l-7.498-10.603\r\n\t\tl17.696-29.708l-22.594-22.605l-30.192,17.404l-10.697-7.302l5.298-35.009l-29.492-12.303L294.04,101.31l-12.297-2.601L273.045,64\r\n\t\th-31.991l-9.197,34.909l-12.098,2.4l-21.494-29.008l-29.592,12.304l4.799,35.709l-11.697,7.202l-31.292-18.705l-22.594,22.606\r\n\t\tl18.795,31.508l-6.698,10.502l-35.49-5.001l-12.197,29.608l28.893,21.706l-2.399,12.203L64,240.846v32.008l34.69,8.903l2.4,12.503\r\n\t\tl-28.394,21.306l12.297,29.508l34.991-5.002l7.099,11.303l-17.896,30.608l22.595,22.605l30.192-18.204l11.196,7.302l-4.498,34.31\r\n\t\tl29.592,12.202l20.595-27.807l13.396,2.5L241.054,448h31.991l8.298-33.109l13.597-2.601l20.694,27.107l29.593-12.204l-4.998-33.708\r\n\t\tl10.196-7.401l28.992,16.904l22.595-22.606l-16.795-28.907l7.896-11.403l33.791,4.802l12.298-29.508l-27.193-20.506l2.7-13.503\r\n\t\tL448,272.754z M419.707,320.767l-2.8,6.702l-31.891-4.501l-18.896,27.807l15.695,27.106l-5.198,5.202l-27.293-15.904\r\n\t\tl-26.593,18.204l4.799,31.809l-6.698,2.802l-19.595-25.607l-32.892,6.501l-7.798,31.209h-7.198l-8.397-31.309l-32.592-6.501\r\n\t\tl-19.495,26.406l-6.698-2.801l4.399-32.509l-27.493-18.304l-28.793,17.504l-5.099-5.101l16.996-29.108l-18.096-27.606\r\n\t\tl-33.191,4.701l-2.699-6.603l26.894-20.205l-6.199-31.809l-32.991-8.502v-7.202l32.991-8.402l6.299-31.608l-27.293-20.505\r\n\t\tl2.699-6.602l33.691,4.801l17.796-26.807l-17.996-30.008l4.999-5.001l20.595,12.303l9.197,5.501l27.893-18.205l-4.499-33.809\r\n\t\tl6.699-2.8l20.294,27.407l31.492-6.102l8.798-33.208h7.198l8.298,33.008l31.691,6.301l20.095-26.807l6.598,2.801l-4.999,33.108\r\n\t\tl27.193,18.105l28.292-16.205l5.1,5.102l-16.695,28.007l18.396,27.007l32.491-4.601l2.799,6.702l-26.193,19.705l6.498,32.508\r\n\t\tl31.292,8.102v7.202l-31.391,8.103l-6.499,32.709L419.707,320.767z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M448,272.754v-32.008l-33.291-8.703l-2.601-13.204l27.594-20.905l-12.197-29.608l-34.392,4.802l-7.498-10.603\r\n\t\tl17.696-29.708l-22.594-22.605l-30.192,17.404l-10.697-7.302l5.298-35.009l-29.492-12.303L294.04,101.31l-12.297-2.601L273.045,64\r\n\t\th-31.991l-9.197,34.909l-12.098,2.4l-21.494-29.008l-29.592,12.304l4.799,35.709l-11.697,7.202l-31.292-18.705l-22.594,22.606\r\n\t\tl18.795,31.508l-6.698,10.502l-35.49-5.001l-12.197,29.608l28.893,21.706l-2.399,12.203L64,240.846v32.008l34.69,8.903l2.4,12.503\r\n\t\tl-28.394,21.306l12.297,29.508l34.991-5.002l7.099,11.303l-17.896,30.608l22.595,22.605l30.192-18.204l11.196,7.302l-4.498,34.31\r\n\t\tl29.592,12.202l20.595-27.807l13.396,2.5L241.054,448h31.991l8.298-33.109l13.597-2.601l20.694,27.107l29.593-12.204l-4.998-33.708\r\n\t\tl10.196-7.401l28.992,16.904l22.595-22.606l-16.795-28.907l7.896-11.403l33.791,4.802l12.298-29.508l-27.193-20.506l2.7-13.503\r\n\t\tL448,272.754z M419.707,320.767l-2.8,6.702l-31.891-4.501l-18.896,27.807l15.695,27.106l-5.198,5.202l-27.293-15.904\r\n\t\tl-26.593,18.204l4.799,31.809l-6.698,2.802l-19.595-25.607l-32.892,6.501l-7.798,31.209h-7.198l-8.397-31.309l-32.592-6.501\r\n\t\tl-19.495,26.406l-6.698-2.801l4.399-32.509l-27.493-18.304l-28.793,17.504l-5.099-5.101l16.996-29.108l-18.096-27.606\r\n\t\tl-33.191,4.701l-2.699-6.603l26.894-20.205l-6.199-31.809l-32.991-8.502v-7.202l32.991-8.402l6.299-31.608l-27.293-20.505\r\n\t\tl2.699-6.602l33.691,4.801l17.796-26.807l-17.996-30.008l4.999-5.001l20.595,12.303l9.197,5.501l27.893-18.205l-4.499-33.809\r\n\t\tl6.699-2.8l20.294,27.407l31.492-6.102l8.798-33.208h7.198l8.298,33.008l31.691,6.301l20.095-26.807l6.598,2.801l-4.999,33.108\r\n\t\tl27.193,18.105l28.292-16.205l5.1,5.102l-16.695,28.007l18.396,27.007l32.491-4.601l2.799,6.702l-26.193,19.705l6.498,32.508\r\n\t\tl31.292,8.102v7.202l-31.391,8.103l-6.499,32.709L419.707,320.767z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,128c-70.692,0-128,57.308-128,128c0,70.693,57.308,128,128,128s128-57.307,128-128C384,185.308,326.692,128,256,128z\r\n\t\t M144,256c0-29.916,11.65-58.042,32.804-79.195C197.958,155.65,226.084,144,256,144c7.496,0,14.88,0.732,22.069,2.161L250.3,250.1\r\n\t\tl-104.155,27.888C144.727,270.824,144,263.468,144,256z M256,368c-29.917,0-58.042-11.65-79.196-32.804\r\n\t\tc-11.927-11.926-20.831-26.069-26.331-41.499L253.9,266.2l74.935,74.889C308.558,358.501,283.009,368,256,368z M340.154,329.901\r\n\t\tL265.2,254.9l28.05-104.58c15.604,5.487,29.904,14.443,41.945,26.484C356.35,197.958,368,226.084,368,256\r\n\t\tC368,283.486,358.159,309.457,340.154,329.901z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,128c-70.692,0-128,57.308-128,128c0,70.693,57.308,128,128,128s128-57.307,128-128C384,185.308,326.692,128,256,128z\r\n\t\t M144,256c0-29.916,11.65-58.042,32.804-79.195C197.958,155.65,226.084,144,256,144c7.496,0,14.88,0.732,22.069,2.161L250.3,250.1\r\n\t\tl-104.155,27.888C144.727,270.824,144,263.468,144,256z M256,368c-29.917,0-58.042-11.65-79.196-32.804\r\n\t\tc-11.927-11.926-20.831-26.069-26.331-41.499L253.9,266.2l74.935,74.889C308.558,358.501,283.009,368,256,368z M340.154,329.901\r\n\t\tL265.2,254.9l28.05-104.58c15.604,5.487,29.904,14.443,41.945,26.484C356.35,197.958,368,226.084,368,256\r\n\t\tC368,283.486,358.159,309.457,340.154,329.901z" + }, + "children": [] + }] + }] + }] +}; +exports.iosCogOutline = iosCogOutline; \ No newline at end of file diff --git a/dist/ionicons/iosColorFilter.js b/dist/ionicons/iosColorFilter.js new file mode 100644 index 000000000..1925b39a8 --- /dev/null +++ b/dist/ionicons/iosColorFilter.js @@ -0,0 +1,75 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosColorFilter = void 0; +var iosColorFilter = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M366.194,212.122c1.185-6.528,1.807-13.252,1.807-20.122c0-61.856-50.146-112-112.001-112\r\n\t\tc-61.857,0-112.001,50.144-112.001,112c0,6.87,0.622,13.594,1.806,20.122C98.618,225.302,64,268.606,64,320\r\n\t\tc0,61.855,50.144,112,112,112c31.341,0,59.67-12.879,80-33.627C276.328,419.121,304.658,432,335.999,432\r\n\t\tC397.854,432,448,381.855,448,320C448,268.606,413.381,225.303,366.194,212.122z M255.998,395.373\r\n\t\tc-0.484,0.495-0.979,0.982-1.475,1.469c-3.201-3.394-6.189-6.987-8.951-10.759c-13.561-18.525-21.574-41.366-21.574-66.083\r\n\t\tc0-6.869,0.622-13.594,1.807-20.121c-35.749-9.986-64.281-37.26-76.014-72.243c-1.594-4.752-2.872-9.647-3.822-14.659\r\n\t\tc0.942-0.29,1.882-0.589,2.835-0.854c-0.046-0.252-0.085-0.507-0.129-0.759c4.186-1.049,8.463-1.867,12.82-2.43\r\n\t\tC166.243,208.319,171.084,208,176,208c31.341,0,59.67,12.878,80,33.626C276.328,220.878,304.658,208,335.999,208\r\n\t\tc4.916,0,9.757,0.319,14.506,0.934c4.355,0.563,8.633,1.38,12.816,2.429c-0.043,0.253-0.082,0.507-0.129,0.76\r\n\t\tc0.955,0.267,1.895,0.564,2.838,0.855c-0.949,5.012-2.229,9.907-3.822,14.658c-11.732,34.983-40.266,62.257-76.013,72.242\r\n\t\tc1.185,6.528,1.807,13.253,1.807,20.122c0,24.717-8.014,47.558-21.574,66.083c-2.762,3.772-5.752,7.367-8.953,10.76\r\n\t\tC256.979,396.356,256.484,395.869,255.998,395.373z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M366.194,212.122c1.185-6.528,1.807-13.252,1.807-20.122c0-61.856-50.146-112-112.001-112\r\n\t\tc-61.857,0-112.001,50.144-112.001,112c0,6.87,0.622,13.594,1.806,20.122C98.618,225.302,64,268.606,64,320\r\n\t\tc0,61.855,50.144,112,112,112c31.341,0,59.67-12.879,80-33.627C276.328,419.121,304.658,432,335.999,432\r\n\t\tC397.854,432,448,381.855,448,320C448,268.606,413.381,225.303,366.194,212.122z M255.998,395.373\r\n\t\tc-0.484,0.495-0.979,0.982-1.475,1.469c-3.201-3.394-6.189-6.987-8.951-10.759c-13.561-18.525-21.574-41.366-21.574-66.083\r\n\t\tc0-6.869,0.622-13.594,1.807-20.121c-35.749-9.986-64.281-37.26-76.014-72.243c-1.594-4.752-2.872-9.647-3.822-14.659\r\n\t\tc0.942-0.29,1.882-0.589,2.835-0.854c-0.046-0.252-0.085-0.507-0.129-0.759c4.186-1.049,8.463-1.867,12.82-2.43\r\n\t\tC166.243,208.319,171.084,208,176,208c31.341,0,59.67,12.878,80,33.626C276.328,220.878,304.658,208,335.999,208\r\n\t\tc4.916,0,9.757,0.319,14.506,0.934c4.355,0.563,8.633,1.38,12.816,2.429c-0.043,0.253-0.082,0.507-0.129,0.76\r\n\t\tc0.955,0.267,1.895,0.564,2.838,0.855c-0.949,5.012-2.229,9.907-3.822,14.658c-11.732,34.983-40.266,62.257-76.013,72.242\r\n\t\tc1.185,6.528,1.807,13.253,1.807,20.122c0,24.717-8.014,47.558-21.574,66.083c-2.762,3.772-5.752,7.367-8.953,10.76\r\n\t\tC256.979,396.356,256.484,395.869,255.998,395.373z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M270.506,303.067c-4.749,0.614-9.59,0.934-14.506,0.934s-9.758-0.319-14.506-0.934c-0.982,5.498-1.496,11.156-1.496,16.933\r\n\t\tc0,19.58,5.898,37.806,16.002,53.005c10.104-15.199,16.002-33.425,16.002-53.005C272.002,314.224,271.488,308.565,270.506,303.067z\r\n\t\t" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M270.506,303.067c-4.749,0.614-9.59,0.934-14.506,0.934s-9.758-0.319-14.506-0.934c-0.982,5.498-1.496,11.156-1.496,16.933\r\n\t\tc0,19.58,5.898,37.806,16.002,53.005c10.104-15.199,16.002-33.425,16.002-53.005C272.002,314.224,271.488,308.565,270.506,303.067z\r\n\t\t" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M346.313,224.555c-3.39-0.364-6.83-0.556-10.314-0.556c-27.354,0-52.069,11.5-69.571,29.917\r\n\t\tc6.725,9.188,12.088,19.434,15.781,30.448C311.964,275.909,335.874,253.428,346.313,224.555z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M346.313,224.555c-3.39-0.364-6.83-0.556-10.314-0.556c-27.354,0-52.069,11.5-69.571,29.917\r\n\t\tc6.725,9.188,12.088,19.434,15.781,30.448C311.964,275.909,335.874,253.428,346.313,224.555z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M266.314,287.445c-2.625-7.262-6.105-14.119-10.314-20.451c-4.209,6.332-7.689,13.189-10.314,20.451\r\n\t\tc3.389,0.364,6.83,0.556,10.314,0.556S262.925,287.81,266.314,287.445z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M266.314,287.445c-2.625-7.262-6.105-14.119-10.314-20.451c-4.209,6.332-7.689,13.189-10.314,20.451\r\n\t\tc3.389,0.364,6.83,0.556,10.314,0.556S262.925,287.81,266.314,287.445z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M176,223.999c-3.484,0-6.925,0.191-10.314,0.556c10.439,28.873,34.349,51.354,64.106,59.81\r\n\t\tc3.693-11.015,9.055-21.261,15.781-30.448C228.07,235.499,203.353,223.999,176,223.999z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M176,223.999c-3.484,0-6.925,0.191-10.314,0.556c10.439,28.873,34.349,51.354,64.106,59.81\r\n\t\tc3.693-11.015,9.055-21.261,15.781-30.448C228.07,235.499,203.353,223.999,176,223.999z" + }, + "children": [] + }] + }] + }] +}; +exports.iosColorFilter = iosColorFilter; \ No newline at end of file diff --git a/dist/ionicons/iosColorFilterOutline.js b/dist/ionicons/iosColorFilterOutline.js new file mode 100644 index 000000000..856aae45c --- /dev/null +++ b/dist/ionicons/iosColorFilterOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosColorFilterOutline = void 0; +var iosColorFilterOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M366.195,212.122c1.185-6.528,1.806-13.252,1.806-20.122c0-61.856-50.145-112.001-112.001-112.001\r\n\tS143.999,130.144,143.999,192c0,6.87,0.621,13.594,1.806,20.122C98.616,225.302,63.999,268.606,63.999,320\r\n\tc0,61.856,50.145,112.001,112.001,112.001c31.342,0,59.671-12.879,80-33.627c20.329,20.748,48.658,33.627,80,33.627\r\n\tc61.856,0,112.001-50.145,112.001-112.001C448.001,268.606,413.384,225.303,366.195,212.122z M159.999,192\r\n\tc0-52.935,43.065-96.001,96.001-96.001s96.001,43.066,96.001,96.001c0,5.776-0.513,11.435-1.495,16.933\r\n\tc-4.749-0.614-9.59-0.934-14.506-0.934c-31.342,0-59.671,12.879-80,33.627c-20.329-20.748-48.658-33.627-80-33.627\r\n\tc-4.916,0-9.757,0.319-14.506,0.934C160.512,203.435,159.999,197.776,159.999,192z M272.001,320c0,19.58-5.896,37.806-16.001,53.006\r\n\tc-10.104-15.2-16.001-33.426-16.001-53.006c0-5.776,0.513-11.435,1.495-16.933c4.749,0.614,9.59,0.934,14.506,0.934\r\n\ts9.757-0.319,14.506-0.934C271.488,308.565,272.001,314.224,272.001,320z M256,288.001c-3.484,0-6.925-0.191-10.314-0.556\r\n\tc2.626-7.262,6.105-14.119,10.314-20.451c4.21,6.332,7.688,13.189,10.314,20.451C262.925,287.81,259.484,288.001,256,288.001z\r\n\t M229.791,284.364c-29.756-8.455-53.666-30.937-64.105-59.81c3.39-0.364,6.83-0.556,10.314-0.556\r\n\tc27.353,0,52.069,11.5,69.572,29.917C238.847,263.104,233.484,273.351,229.791,284.364z M266.428,253.917\r\n\tc17.503-18.418,42.219-29.918,69.572-29.918c3.484,0,6.925,0.191,10.314,0.556c-10.439,28.873-34.35,51.354-64.105,59.81\r\n\tC278.516,273.351,273.153,263.104,266.428,253.917z M176,416.001c-52.936,0-96.001-43.065-96.001-96.001\r\n\tc0-43.852,29.555-80.931,69.792-92.364c11.732,34.983,40.265,62.257,76.014,72.243c-1.185,6.527-1.806,13.252-1.806,20.121\r\n\tc0,24.717,8.013,47.559,21.573,66.084C228.069,404.501,203.353,416.001,176,416.001z M336,416.001\r\n\tc-27.354,0-52.069-11.5-69.572-29.918c13.561-18.524,21.573-41.366,21.573-66.083c0-6.869-0.621-13.594-1.806-20.121\r\n\tc35.749-9.986,64.281-37.26,76.014-72.243c40.237,11.434,69.792,48.513,69.792,92.364C432.001,372.936,388.936,416.001,336,416.001z\r\n\t" + }, + "children": [] + }] +}; +exports.iosColorFilterOutline = iosColorFilterOutline; \ No newline at end of file diff --git a/dist/ionicons/iosColorWand.js b/dist/ionicons/iosColorWand.js new file mode 100644 index 000000000..78d7fcc58 --- /dev/null +++ b/dist/ionicons/iosColorWand.js @@ -0,0 +1,135 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosColorWand = void 0; +var iosColorWand = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "198.011,159.22 163.968,193.337 420.064,450 454,415.883 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "198.011,159.22 163.968,193.337 420.064,450 454,415.883 \t" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "182", + "y": "62", + "width": "32", + "height": "64" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "182", + "y": "62", + "width": "32", + "height": "64" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "182", + "y": "266", + "width": "32", + "height": "64" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "182", + "y": "266", + "width": "32", + "height": "64" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "274", + "y": "178", + "width": "64", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "274", + "y": "178", + "width": "64", + "height": "32" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "303.941,112.143 281.314,89.465 236.06,134.82 258.687,157.498 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "303.941,112.143 281.314,89.465 236.06,134.82 258.687,157.498 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "92.06,112.143 137.314,157.498 159.941,134.82 114.687,89.465 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "92.06,112.143 137.314,157.498 159.941,134.82 114.687,89.465 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "92.06,279.141 114.687,301.816 159.941,256.462 137.314,233.784 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "92.06,279.141 114.687,301.816 159.941,256.462 137.314,233.784 \t" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "58", + "y": "178", + "width": "64", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "58", + "y": "178", + "width": "64", + "height": "32" + }, + "children": [] + }] + }] + }] +}; +exports.iosColorWand = iosColorWand; \ No newline at end of file diff --git a/dist/ionicons/iosColorWandOutline.js b/dist/ionicons/iosColorWandOutline.js new file mode 100644 index 000000000..c2d5d1dcd --- /dev/null +++ b/dist/ionicons/iosColorWandOutline.js @@ -0,0 +1,159 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosColorWandOutline = void 0; +var iosColorWandOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M192.011,149.661l-34.043,34.041l256.097,256.096L448,405.757L192.011,149.661z M212.596,215.702l11.415-11.414\r\n\t\tl201.468,201.469l-11.414,11.414L212.596,215.702z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M192.011,149.661l-34.043,34.041l256.097,256.096L448,405.757L192.011,149.661z M212.596,215.702l11.415-11.414\r\n\t\tl201.468,201.469l-11.414,11.414L212.596,215.702z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "184", + "y": "64", + "width": "16", + "height": "40" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "184", + "y": "64", + "width": "16", + "height": "40" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "184", + "y": "268", + "width": "16", + "height": "40" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "184", + "y": "268", + "width": "16", + "height": "40" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "280", + "y": "176", + "width": "40", + "height": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "280", + "y": "176", + "width": "40", + "height": "16" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "64", + "y": "176", + "width": "40", + "height": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "64", + "y": "176", + "width": "40", + "height": "16" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "111.875", + "y": "94.077", + "transform": "matrix(-0.7071 0.7071 -0.7071 -0.7071 285.3039 109.9734)", + "width": "16", + "height": "40" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "111.875", + "y": "94.077", + "transform": "matrix(-0.7071 0.7071 -0.7071 -0.7071 285.3039 109.9734)", + "width": "16", + "height": "40" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "111.877", + "y": "238.327", + "transform": "matrix(-0.7071 -0.7071 0.7071 -0.7071 21.9762 525.7571)", + "width": "15.998", + "height": "40" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "111.877", + "y": "238.327", + "transform": "matrix(-0.7071 -0.7071 0.7071 -0.7071 21.9762 525.7571)", + "width": "15.998", + "height": "40" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "256.126", + "y": "94.077", + "transform": "matrix(-0.7071 -0.7071 0.7071 -0.7071 370.226 381.506)", + "width": "16", + "height": "39.999" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "256.126", + "y": "94.077", + "transform": "matrix(-0.7071 -0.7071 0.7071 -0.7071 370.226 381.506)", + "width": "16", + "height": "39.999" + }, + "children": [] + }] + }] + }] +}; +exports.iosColorWandOutline = iosColorWandOutline; \ No newline at end of file diff --git a/dist/ionicons/iosCompose.js b/dist/ionicons/iosCompose.js new file mode 100644 index 000000000..e8dbd1c9f --- /dev/null +++ b/dist/ionicons/iosCompose.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosCompose = void 0; +var iosCompose = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "256,320 192,320 192,256 320,128 64,128 64,432 384,432 384,192 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "256,320 192,320 192,256 320,128 64,128 64,432 384,432 384,192 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "387.927,91.74 208,271.651 208,304 240.216,304 420.261,124.016 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "387.927,91.74 208,271.651 208,304 240.216,304 420.261,124.016 \t" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M444.213,80.312l-12.465-12.466C429.084,65.467,425.556,64,421.746,64c-3.812,0-7.304,1.468-9.929,3.85L399.666,80\r\n\t\tl0.08,0.08l11.293,11.293l21.02,21.02l12.15-12.15c2.383-2.625,3.791-6.117,3.791-9.929C448,86.504,446.592,82.975,444.213,80.312z\r\n\t\t" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M444.213,80.312l-12.465-12.466C429.084,65.467,425.556,64,421.746,64c-3.812,0-7.304,1.468-9.929,3.85L399.666,80\r\n\t\tl0.08,0.08l11.293,11.293l21.02,21.02l12.15-12.15c2.383-2.625,3.791-6.117,3.791-9.929C448,86.504,446.592,82.975,444.213,80.312z\r\n\t\t" + }, + "children": [] + }] + }] + }] +}; +exports.iosCompose = iosCompose; \ No newline at end of file diff --git a/dist/ionicons/iosComposeOutline.js b/dist/ionicons/iosComposeOutline.js new file mode 100644 index 000000000..b9b5059ec --- /dev/null +++ b/dist/ionicons/iosComposeOutline.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosComposeOutline = void 0; +var iosComposeOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "368,416 80,416 80,144 304.117,144 320.117,128 64,128 64,432 384,432 384,191.883 368,207.883 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "368,416 80,416 80,144 304.117,144 320.117,128 64,128 64,432 384,432 384,191.883 368,207.883 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "237.623,284.084 227.917,274.377 399.24,103.054 387.927,91.74 208,271.651 208,304 240.216,304 420.261,124.016 \r\n\t\t408.947,112.73 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "237.623,284.084 227.917,274.377 399.24,103.054 387.927,91.74 208,271.651 208,304 240.216,304 420.261,124.016 \r\n\t\t408.947,112.73 \t" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M444.213,80.312l-12.465-12.466C429.084,65.467,425.556,64,421.746,64c-3.812,0-7.304,1.468-9.929,3.85L399.666,80\r\n\t\tl0.08,0.08l11.293,11.293l21.02,21.02l12.15-12.15c2.383-2.625,3.791-6.117,3.791-9.929C448,86.504,446.592,82.975,444.213,80.312z\r\n\t\t" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M444.213,80.312l-12.465-12.466C429.084,65.467,425.556,64,421.746,64c-3.812,0-7.304,1.468-9.929,3.85L399.666,80\r\n\t\tl0.08,0.08l11.293,11.293l21.02,21.02l12.15-12.15c2.383-2.625,3.791-6.117,3.791-9.929C448,86.504,446.592,82.975,444.213,80.312z\r\n\t\t" + }, + "children": [] + }] + }] + }] +}; +exports.iosComposeOutline = iosComposeOutline; \ No newline at end of file diff --git a/dist/ionicons/iosContact.js b/dist/ionicons/iosContact.js new file mode 100644 index 000000000..d27a4ca58 --- /dev/null +++ b/dist/ionicons/iosContact.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosContact = void 0; +var iosContact = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48C141.1,48,48,141.1,48,256c0,114.9,93.1,208,208,208c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48z\r\n\t M256,446.7c-58.6,0-111.1-26.6-146.1-68.3c17.8-7.7,62.2-23.7,90.3-31.9c2.2-0.7,2.6-0.8,2.6-10.7c0-10.6-1.2-18.1-3.8-23.6\r\n\tc-3.5-7.5-7.7-20.2-9.2-31.6c-4.2-4.9-9.9-14.5-13.6-32.9c-3.2-16.2-1.7-22.1,0.4-27.6c0.2-0.6,0.5-1.2,0.6-1.8\r\n\tc0.8-3.7-0.3-23.5-3.1-38.8c-1.9-10.5,0.5-32.8,15-51.3c9.1-11.7,26.6-26,58-28l17.5,0c31.9,2,49.4,16.3,58.5,28\r\n\tc14.5,18.5,16.9,40.8,14.9,51.3c-2.8,15.3-3.9,35-3.1,38.8c0.1,0.6,0.4,1.2,0.6,1.7c2.1,5.5,3.7,11.4,0.4,27.6\r\n\tc-3.7,18.4-9.4,28-13.6,32.9c-1.5,11.4-5.7,24-9.2,31.6c-3.3,6.9-6.6,15.1-6.6,23.3c0,9.9,0.4,10,2.7,10.7\r\n\tc26.7,7.9,72.7,23.8,93,32.1C367.2,420,314.7,446.7,256,446.7z" + }, + "children": [] + }] +}; +exports.iosContact = iosContact; \ No newline at end of file diff --git a/dist/ionicons/iosContactOutline.js b/dist/ionicons/iosContactOutline.js new file mode 100644 index 000000000..7618c1905 --- /dev/null +++ b/dist/ionicons/iosContactOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosContactOutline = void 0; +var iosContactOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48C141.1,48,48,141.1,48,256c0,114.9,93.1,208,208,208c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48z M256,65.3\r\n\tc105.1,0,190.7,85.5,190.7,190.7c0,46.5-16.7,89.1-44.4,122.2c-20-8.2-65.9-24.1-92.9-32.1c-2.4-0.7-2.7-0.9-2.7-10.7\r\n\tc0-8.1,3.3-16.3,6.6-23.3c3.6-7.5,7.7-20.2,9.2-31.6c4.2-4.9,10-14.5,13.6-32.9c3.2-16.2,1.7-22.1-0.4-27.6\r\n\tc-0.2-0.6-0.5-1.2-0.6-1.7c-0.8-3.8,0.3-23.5,3.1-38.8c1.9-10.5-0.5-32.8-14.9-51.3c-9.1-11.7-26.6-26-58.5-28l-17.5,0\r\n\tc-31.4,2-48.8,16.3-58,28c-14.5,18.5-16.9,40.8-15,51.3c2.8,15.3,3.9,35,3.1,38.8c-0.2,0.7-0.4,1.2-0.6,1.8\r\n\tc-2.1,5.5-3.7,11.4-0.4,27.6c3.7,18.4,9.4,28,13.6,32.9c1.5,11.4,5.7,24,9.2,31.6c2.6,5.5,3.8,13,3.8,23.6c0,9.9-0.4,10-2.6,10.7\r\n\tc-28.1,8.3-72.6,24.3-90.4,32C82.1,345.3,65.3,302.6,65.3,256C65.3,150.9,150.9,65.3,256,65.3z" + }, + "children": [] + }] +}; +exports.iosContactOutline = iosContactOutline; \ No newline at end of file diff --git a/dist/ionicons/iosCopy.js b/dist/ionicons/iosCopy.js new file mode 100644 index 000000000..ce7f45779 --- /dev/null +++ b/dist/ionicons/iosCopy.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosCopy = void 0; +var iosCopy = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "144,416 144,400 144,112 112,112 112,448 352,448 352,416 160,416 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "144,416 144,400 144,112 112,112 112,448 352,448 352,416 160,416 \t" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M325.3,64H160v48v288h192h48V139L325.3,64z M368,176h-80V96h16v64h64V176z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M325.3,64H160v48v288h192h48V139L325.3,64z M368,176h-80V96h16v64h64V176z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.iosCopy = iosCopy; \ No newline at end of file diff --git a/dist/ionicons/iosCopyOutline.js b/dist/ionicons/iosCopyOutline.js new file mode 100644 index 000000000..4604796db --- /dev/null +++ b/dist/ionicons/iosCopyOutline.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosCopyOutline = void 0; +var iosCopyOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "304,96 288,96 288,176 368,176 368,160 304,160 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "304,96 288,96 288,176 368,176 368,160 304,160 \t" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M325.3,64H160v48h-48v336h240v-48h48V139L325.3,64z M336,432H128V128h32v272h176V432z M384,384H176V80h142.7l65.3,65.6V384\r\n\t\tz" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M325.3,64H160v48h-48v336h240v-48h48V139L325.3,64z M336,432H128V128h32v272h176V432z M384,384H176V80h142.7l65.3,65.6V384\r\n\t\tz" + }, + "children": [] + }] + }] + }] +}; +exports.iosCopyOutline = iosCopyOutline; \ No newline at end of file diff --git a/dist/ionicons/iosCrop.js b/dist/ionicons/iosCrop.js new file mode 100644 index 000000000..aa673b926 --- /dev/null +++ b/dist/ionicons/iosCrop.js @@ -0,0 +1,75 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosCrop = void 0; +var iosCrop = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "128", + "y": "64", + "width": "16", + "height": "48" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "128", + "y": "64", + "width": "16", + "height": "48" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "144,368 144,160 128,160 128,384 352,384 352,368 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "144,368 144,160 128,160 128,384 352,384 352,368 \t" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "400", + "y": "368", + "width": "48", + "height": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "400", + "y": "368", + "width": "48", + "height": "16" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "64,128 64,144 368,144 368,448 384,448 384,128 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "64,128 64,144 368,144 368,448 384,448 384,128 \t" + }, + "children": [] + }] + }] + }] +}; +exports.iosCrop = iosCrop; \ No newline at end of file diff --git a/dist/ionicons/iosCropStrong.js b/dist/ionicons/iosCropStrong.js new file mode 100644 index 000000000..be28393a9 --- /dev/null +++ b/dist/ionicons/iosCropStrong.js @@ -0,0 +1,75 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosCropStrong = void 0; +var iosCropStrong = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "128", + "y": "64", + "width": "32", + "height": "48" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "128", + "y": "64", + "width": "32", + "height": "48" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "160,352 160,176 128,176 128,384 336,384 336,352 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "160,352 160,176 128,176 128,384 336,384 336,352 \t" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "400", + "y": "352", + "width": "48", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "400", + "y": "352", + "width": "48", + "height": "32" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "64,128 64,160 352,160 352,448 384,448 384,128 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "64,128 64,160 352,160 352,448 384,448 384,128 \t" + }, + "children": [] + }] + }] + }] +}; +exports.iosCropStrong = iosCropStrong; \ No newline at end of file diff --git a/dist/ionicons/iosDownload.js b/dist/ionicons/iosDownload.js new file mode 100644 index 000000000..a4ffd9486 --- /dev/null +++ b/dist/ionicons/iosDownload.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosDownload = void 0; +var iosDownload = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "264,144 264,307 318.8,252.3 330.4,263.9 256,338.4 181.5,263.9 193.2,252.3 248,307 248,144 96,144 96,448 \r\n\t\t416,448 416,144 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "264,144 264,307 318.8,252.3 330.4,263.9 256,338.4 181.5,263.9 193.2,252.3 248,307 248,144 96,144 96,448 \r\n\t\t416,448 416,144 \t" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "248", + "y": "64", + "width": "16", + "height": "80" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "248", + "y": "64", + "width": "16", + "height": "80" + }, + "children": [] + }] + }] + }] +}; +exports.iosDownload = iosDownload; \ No newline at end of file diff --git a/dist/ionicons/iosDownloadOutline.js b/dist/ionicons/iosDownloadOutline.js new file mode 100644 index 000000000..44e9a8ec2 --- /dev/null +++ b/dist/ionicons/iosDownloadOutline.js @@ -0,0 +1,55 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosDownloadOutline = void 0; +var iosDownloadOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "288,144 288,160 400,160 400,432 112,432 112,160 224,160 224,144 96,144 96,448 416,448 416,144 \t\t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "288,144 288,160 400,160 400,432 112,432 112,160 224,160 224,144 96,144 96,448 416,448 416,144 \t\t" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "193.1,252.3 181.5,263.9 256,338.4 330.5,263.9 318.9,252.3 264.2,307 264.2,64 247.8,64 247.8,307 \t\t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "193.1,252.3 181.5,263.9 256,338.4 330.5,263.9 318.9,252.3 264.2,307 264.2,64 247.8,64 247.8,307 \t\t" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.iosDownloadOutline = iosDownloadOutline; \ No newline at end of file diff --git a/dist/ionicons/iosDrag.js b/dist/ionicons/iosDrag.js new file mode 100644 index 000000000..b233ef4c5 --- /dev/null +++ b/dist/ionicons/iosDrag.js @@ -0,0 +1,69 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosDrag = void 0; +var iosDrag = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "80", + "y": "304", + "width": "352", + "height": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "80", + "y": "304", + "width": "352", + "height": "16" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "80", + "y": "248", + "width": "352", + "height": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "80", + "y": "248", + "width": "352", + "height": "16" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "80", + "y": "192", + "width": "352", + "height": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "80", + "y": "192", + "width": "352", + "height": "16" + }, + "children": [] + }] + }] + }] +}; +exports.iosDrag = iosDrag; \ No newline at end of file diff --git a/dist/ionicons/iosEmail.js b/dist/ionicons/iosEmail.js new file mode 100644 index 000000000..bd9fe47ee --- /dev/null +++ b/dist/ionicons/iosEmail.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosEmail = void 0; +var iosEmail = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "448,384 448,141.8 316.9,241.6 385,319 383,321 304.1,251.4 256,288 207.9,251.4 129,321 127,319 195,241.6 \r\n\t\t64,142 64,384 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "448,384 448,141.8 316.9,241.6 385,319 383,321 304.1,251.4 256,288 207.9,251.4 129,321 127,319 195,241.6 \r\n\t\t64,142 64,384 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "439.7,128 72,128 256,267.9 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "439.7,128 72,128 256,267.9 \t" + }, + "children": [] + }] + }] + }] +}; +exports.iosEmail = iosEmail; \ No newline at end of file diff --git a/dist/ionicons/iosEmailOutline.js b/dist/ionicons/iosEmailOutline.js new file mode 100644 index 000000000..c502f5295 --- /dev/null +++ b/dist/ionicons/iosEmailOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosEmailOutline = void 0; +var iosEmailOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M64,128v256h384V128H64z M256,267.9L93.2,144h325.6L256,267.9z M80,368V154.1l115.1,87.6L127,319l2,2l78.9-69.6L256,288\r\n\tl48.1-36.6L383,321l2-2l-68.1-77.4L432,154.1V368H80z" + }, + "children": [] + }] +}; +exports.iosEmailOutline = iosEmailOutline; \ No newline at end of file diff --git a/dist/ionicons/iosEye.js b/dist/ionicons/iosEye.js new file mode 100644 index 000000000..41ddff241 --- /dev/null +++ b/dist/ionicons/iosEye.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosEye = void 0; +var iosEye = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M447.1,256.2C401.8,204,339.2,144,256,144c-33.6,0-64.4,9.5-96.9,29.8C131.7,191,103.6,215.2,65,255l-1,1l6.7,6.9\r\n\t\tC125.8,319.3,173.4,368,256,368c36.5,0,71.9-11.9,108.2-36.4c30.9-20.9,57.2-47.4,78.3-68.8l5.5-5.5L447.1,256.2z M256,336\r\n\t\tc-44.1,0-80-35.9-80-80c0-44.1,35.9-80,80-80c44.1,0,80,35.9,80,80C336,300.1,300.1,336,256,336z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M447.1,256.2C401.8,204,339.2,144,256,144c-33.6,0-64.4,9.5-96.9,29.8C131.7,191,103.6,215.2,65,255l-1,1l6.7,6.9\r\n\t\tC125.8,319.3,173.4,368,256,368c36.5,0,71.9-11.9,108.2-36.4c30.9-20.9,57.2-47.4,78.3-68.8l5.5-5.5L447.1,256.2z M256,336\r\n\t\tc-44.1,0-80-35.9-80-80c0-44.1,35.9-80,80-80c44.1,0,80,35.9,80,80C336,300.1,300.1,336,256,336z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M250.4,226.8c0-6.9,2-13.4,5.5-18.8c-26.5,0-47.9,21.6-47.9,48.2c0,26.6,21.5,48.1,47.9,48.1s48-21.5,48-48.1v0\r\n\t\tc-5.4,3.5-11.9,5.5-18.8,5.5C266,261.6,250.4,246,250.4,226.8z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M250.4,226.8c0-6.9,2-13.4,5.5-18.8c-26.5,0-47.9,21.6-47.9,48.2c0,26.6,21.5,48.1,47.9,48.1s48-21.5,48-48.1v0\r\n\t\tc-5.4,3.5-11.9,5.5-18.8,5.5C266,261.6,250.4,246,250.4,226.8z" + }, + "children": [] + }] + }] + }] +}; +exports.iosEye = iosEye; \ No newline at end of file diff --git a/dist/ionicons/iosEyeOutline.js b/dist/ionicons/iosEyeOutline.js new file mode 100644 index 000000000..8a86a43f9 --- /dev/null +++ b/dist/ionicons/iosEyeOutline.js @@ -0,0 +1,59 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosEyeOutline = void 0; +var iosEyeOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M447.1,256.2C401.8,204,339.2,144,256,144c-33.6,0-64.4,9.5-96.9,29.8C131.7,191,103.6,215.2,65,255l-1,1l6.7,6.9\r\n\t\t\tC125.8,319.3,173.4,368,256,368c36.5,0,71.9-11.9,108.2-36.4c30.9-20.9,57.2-47.4,78.3-68.8l5.5-5.5L447.1,256.2z M256,160\r\n\t\t\tc33.1,0,64.9,9.5,97.2,30.6c23.9,15.6,47.4,36.7,73.7,66.1C388.6,295.4,331.1,352,256,352c-34.2,0-64.2-8.4-94.2-28.2\r\n\t\t\tc-27.5-18.1-52.3-43.3-76.2-67.8C144.7,196.3,194,160,256,160z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M447.1,256.2C401.8,204,339.2,144,256,144c-33.6,0-64.4,9.5-96.9,29.8C131.7,191,103.6,215.2,65,255l-1,1l6.7,6.9\r\n\t\t\tC125.8,319.3,173.4,368,256,368c36.5,0,71.9-11.9,108.2-36.4c30.9-20.9,57.2-47.4,78.3-68.8l5.5-5.5L447.1,256.2z M256,160\r\n\t\t\tc33.1,0,64.9,9.5,97.2,30.6c23.9,15.6,47.4,36.7,73.7,66.1C388.6,295.4,331.1,352,256,352c-34.2,0-64.2-8.4-94.2-28.2\r\n\t\t\tc-27.5-18.1-52.3-43.3-76.2-67.8C144.7,196.3,194,160,256,160z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,336c44.1,0,80-35.9,80-80c0-44.1-35.9-80-80-80c-44.1,0-80,35.9-80,80C176,300.1,211.9,336,256,336z M256,192.3\r\n\t\t\tc35.2,0,64,28.6,64,63.7c0,35.1-28.8,63.7-64,63.7c-35.2,0-63.9-28.6-63.9-63.7C192.1,220.9,220.8,192.3,256,192.3z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,336c44.1,0,80-35.9,80-80c0-44.1-35.9-80-80-80c-44.1,0-80,35.9-80,80C176,300.1,211.9,336,256,336z M256,192.3\r\n\t\t\tc35.2,0,64,28.6,64,63.7c0,35.1-28.8,63.7-64,63.7c-35.2,0-63.9-28.6-63.9-63.7C192.1,220.9,220.8,192.3,256,192.3z" + }, + "children": [] + }] + }] + }] + }, { + "name": "path", + "attribs": { + "d": "M288,256L288,256c0,17.5-14.4,32-31.8,32S224,272.8,224,255.3s15.8-31.3,32-31.3l0-16c-26.5,0-47.9,21.6-47.9,48.2\r\n\t\tc0,26.6,21.5,48.1,47.9,48.1s48-21.6,48-48.1V256H288z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M288,256L288,256c0,17.5-14.4,32-31.8,32S224,272.8,224,255.3s15.8-31.3,32-31.3l0-16c-26.5,0-47.9,21.6-47.9,48.2\r\n\t\tc0,26.6,21.5,48.1,47.9,48.1s48-21.6,48-48.1V256H288z" + }, + "children": [] + }] + }] + }] +}; +exports.iosEyeOutline = iosEyeOutline; \ No newline at end of file diff --git a/dist/ionicons/iosFastforward.js b/dist/ionicons/iosFastforward.js new file mode 100644 index 000000000..3de5f2fa1 --- /dev/null +++ b/dist/ionicons/iosFastforward.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosFastforward = void 0; +var iosFastforward = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,128v123.2L32,128v256l224-123.2V384l224-128L256,128L256,128z" + }, + "children": [] + }] +}; +exports.iosFastforward = iosFastforward; \ No newline at end of file diff --git a/dist/ionicons/iosFastforwardOutline.js b/dist/ionicons/iosFastforwardOutline.js new file mode 100644 index 000000000..0d027d723 --- /dev/null +++ b/dist/ionicons/iosFastforwardOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosFastforwardOutline = void 0; +var iosFastforwardOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M48,155l183.5,101L48,356.9V155 M272,155.8L448,256L272,356.4v-95.6v-27.1V156 M256,128v123.2L32,128v256l224-123.2V384\r\n\tl224-128L256,128L256,128z" + }, + "children": [] + }] +}; +exports.iosFastforwardOutline = iosFastforwardOutline; \ No newline at end of file diff --git a/dist/ionicons/iosFiling.js b/dist/ionicons/iosFiling.js new file mode 100644 index 000000000..6db12578f --- /dev/null +++ b/dist/ionicons/iosFiling.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosFiling = void 0; +var iosFiling = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,288c-29.8,0-54.9-20.4-62-48H80v144h176h176V240H318C310.9,267.6,285.8,288,256,288z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,288c-29.8,0-54.9-20.4-62-48H80v144h176h176V240H318C310.9,267.6,285.8,288,256,288z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M144,224h16h9h39c0,26.5,21.5,48,48,48s48-21.5,48-48h40h8h16h8h56l-63.5-96H368v80h-16v-80H160v80h-16v-80h-0.5L80,224h57\r\n\t\tH144z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M144,224h16h9h39c0,26.5,21.5,48,48,48s48-21.5,48-48h40h8h16h8h56l-63.5-96H368v80h-16v-80H160v80h-16v-80h-0.5L80,224h57\r\n\t\tH144z" + }, + "children": [] + }] + }] + }] +}; +exports.iosFiling = iosFiling; \ No newline at end of file diff --git a/dist/ionicons/iosFilingOutline.js b/dist/ionicons/iosFilingOutline.js new file mode 100644 index 000000000..1632e1b4e --- /dev/null +++ b/dist/ionicons/iosFilingOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosFilingOutline = void 0; +var iosFilingOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M368.5,128h-225L80,224v160h176h176V224L368.5,128z M413.4,224H368v-68L413.4,224z M160,144h192v80h-48\r\n\tc0,26.5-21.5,48-48,48s-48-21.5-48-48h-48V144z M144,156v68H98.6L144,156z M416,368H256H96V240h98c7.1,27.6,32.2,48,62,48\r\n\ts54.9-20.4,62-48h98V368z" + }, + "children": [] + }] +}; +exports.iosFilingOutline = iosFilingOutline; \ No newline at end of file diff --git a/dist/ionicons/iosFilm.js b/dist/ionicons/iosFilm.js new file mode 100644 index 000000000..ac61ad96a --- /dev/null +++ b/dist/ionicons/iosFilm.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosFilm = void 0; +var iosFilm = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M56,88v336h400V88H56z M128,408H72v-48h56V408z M128,344H72v-48h56V344z M128,280H72v-48h56V280z M128,216H72v-48h56V216z\r\n\t\t M128,152H72v-48h56V152z M368,264H144v-16h224V264z M440,408h-56v-48h56V408z M440,344h-56v-48h56V344z M440,280h-56v-48h56V280z\r\n\t\t M440,216h-56v-48h56V216z M440,152h-56v-48h56V152z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M56,88v336h400V88H56z M128,408H72v-48h56V408z M128,344H72v-48h56V344z M128,280H72v-48h56V280z M128,216H72v-48h56V216z\r\n\t\t M128,152H72v-48h56V152z M368,264H144v-16h224V264z M440,408h-56v-48h56V408z M440,344h-56v-48h56V344z M440,280h-56v-48h56V280z\r\n\t\t M440,216h-56v-48h56V216z M440,152h-56v-48h56V152z" + }, + "children": [] + }] + }] + }] +}; +exports.iosFilm = iosFilm; \ No newline at end of file diff --git a/dist/ionicons/iosFilmOutline.js b/dist/ionicons/iosFilmOutline.js new file mode 100644 index 000000000..aa0282252 --- /dev/null +++ b/dist/ionicons/iosFilmOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosFilmOutline = void 0; +var iosFilmOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M56,88v336h400V88H56z M128,408H72v-48h56V408z M128,344H72v-48h56V344z M128,280H72v-48h56V280z M128,216H72v-48h56V216z\r\n\t M128,152H72v-48h56V152z M368,408H144V264h224V408z M368,248H144V104h224V248z M440,408h-56v-48h56V408z M440,344h-56v-48h56V344z\r\n\t M440,280h-56v-48h56V280z M440,216h-56v-48h56V216z M440,152h-56v-48h56V152z" + }, + "children": [] + }] +}; +exports.iosFilmOutline = iosFilmOutline; \ No newline at end of file diff --git a/dist/ionicons/iosFlag.js b/dist/ionicons/iosFlag.js new file mode 100644 index 000000000..5f4de9544 --- /dev/null +++ b/dist/ionicons/iosFlag.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosFlag = void 0; +var iosFlag = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M368,112c-11,1.4-24.9,3.5-39.7,3.5c-23.1,0-44-5.7-65.2-10.2c-21.5-4.6-43.7-9.3-67.2-9.3c-46.9,0-62.8,10.1-64.4,11.2\r\n\t\tl-3.4,2.4v2.6v161.7V416h16V272.7c6-2.5,21.8-6.9,51.9-6.9c21.8,0,42.2,8.3,63.9,13c22,4.7,44.8,9.6,69.5,9.6\r\n\t\tc14.7,0,27.7-2,38.7-3.3c6-0.7,11.3-1.4,16-2.2V126v-16.5C379.4,110.4,374,111.2,368,112z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M368,112c-11,1.4-24.9,3.5-39.7,3.5c-23.1,0-44-5.7-65.2-10.2c-21.5-4.6-43.7-9.3-67.2-9.3c-46.9,0-62.8,10.1-64.4,11.2\r\n\t\tl-3.4,2.4v2.6v161.7V416h16V272.7c6-2.5,21.8-6.9,51.9-6.9c21.8,0,42.2,8.3,63.9,13c22,4.7,44.8,9.6,69.5,9.6\r\n\t\tc14.7,0,27.7-2,38.7-3.3c6-0.7,11.3-1.4,16-2.2V126v-16.5C379.4,110.4,374,111.2,368,112z" + }, + "children": [] + }] + }] + }] +}; +exports.iosFlag = iosFlag; \ No newline at end of file diff --git a/dist/ionicons/iosFlagOutline.js b/dist/ionicons/iosFlagOutline.js new file mode 100644 index 000000000..2e9911c8e --- /dev/null +++ b/dist/ionicons/iosFlagOutline.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosFlagOutline = void 0; +var iosFlagOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M368,112c-11,1.4-24.9,3.5-39.7,3.5c-23.1,0-44-5.7-65.2-10.2c-21.5-4.6-43.7-9.3-67.2-9.3c-46.9,0-62.8,10.1-64.4,11.2\r\n\t\tl-3.4,2.4v2.6v161.7V416h16V272.7c6-2.5,21.8-6.9,51.9-6.9c21.8,0,42.2,8.3,63.9,13c22,4.7,44.8,9.6,69.5,9.6\r\n\t\tc14.7,0,27.7-2,38.7-3.3c6-0.7,11.3-1.4,16-2.2V126v-16.5C379.4,110.4,374,111.2,368,112z M368,269c-11,1.4-23.9,3.5-38.7,3.5\r\n\t\tc-23.1,0-45-4.7-66.2-9.2c-21.5-4.6-43.6-13.3-67.1-13.3c-25.7,0-41.9,3-51.9,6V118.7c6-2.5,21.9-6.8,51.9-6.8\r\n\t\tc21.8,0,42.2,4.3,63.9,9c22,4.7,43.8,10.6,68.5,10.6c14.7,0,28.7-2,39.7-3.3L368,269L368,269z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M368,112c-11,1.4-24.9,3.5-39.7,3.5c-23.1,0-44-5.7-65.2-10.2c-21.5-4.6-43.7-9.3-67.2-9.3c-46.9,0-62.8,10.1-64.4,11.2\r\n\t\tl-3.4,2.4v2.6v161.7V416h16V272.7c6-2.5,21.8-6.9,51.9-6.9c21.8,0,42.2,8.3,63.9,13c22,4.7,44.8,9.6,69.5,9.6\r\n\t\tc14.7,0,27.7-2,38.7-3.3c6-0.7,11.3-1.4,16-2.2V126v-16.5C379.4,110.4,374,111.2,368,112z M368,269c-11,1.4-23.9,3.5-38.7,3.5\r\n\t\tc-23.1,0-45-4.7-66.2-9.2c-21.5-4.6-43.6-13.3-67.1-13.3c-25.7,0-41.9,3-51.9,6V118.7c6-2.5,21.9-6.8,51.9-6.8\r\n\t\tc21.8,0,42.2,4.3,63.9,9c22,4.7,43.8,10.6,68.5,10.6c14.7,0,28.7-2,39.7-3.3L368,269L368,269z" + }, + "children": [] + }] + }] + }] +}; +exports.iosFlagOutline = iosFlagOutline; \ No newline at end of file diff --git a/dist/ionicons/iosFlame.js b/dist/ionicons/iosFlame.js new file mode 100644 index 000000000..382a01e7e --- /dev/null +++ b/dist/ionicons/iosFlame.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosFlame = void 0; +var iosFlame = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M223.899,32c25.691,145-96.732,142-95.895,288c0.686,119.51,104.975,160,128.143,160c23.166,0,113.88-26,126.931-160\r\n\t\tC393.711,210.816,310.572,96,223.899,32z M256.147,472c0,0-40.701-35.816-40.701-80c0-44.183,40.555-80,40.555-80\r\n\t\ts40.332,35.817,40.332,80C296.332,436.184,256.147,472,256.147,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M223.899,32c25.691,145-96.732,142-95.895,288c0.686,119.51,104.975,160,128.143,160c23.166,0,113.88-26,126.931-160\r\n\t\tC393.711,210.816,310.572,96,223.899,32z M256.147,472c0,0-40.701-35.816-40.701-80c0-44.183,40.555-80,40.555-80\r\n\t\ts40.332,35.817,40.332,80C296.332,436.184,256.147,472,256.147,472z" + }, + "children": [] + }] + }] + }] +}; +exports.iosFlame = iosFlame; \ No newline at end of file diff --git a/dist/ionicons/iosFlameOutline.js b/dist/ionicons/iosFlameOutline.js new file mode 100644 index 000000000..ba322fa81 --- /dev/null +++ b/dist/ionicons/iosFlameOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosFlameOutline = void 0; +var iosFlameOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M223.899,32c25.691,145-96.732,142-95.895,288c0.686,119.51,104.975,160,128.143,160c23.166,0,113.88-26,126.931-160\r\n\tC393.711,210.816,310.572,96,223.899,32z M256.147,472c0,0-40.701-35.816-40.701-80c0-44.183,40.555-80,40.555-80\r\n\ts40.332,35.817,40.332,80C296.332,436.184,256.147,472,256.147,472z M367.153,318.449c-2.823,28.988-9.704,54.523-20.45,75.894\r\n\tc-8.749,17.397-20.084,32.114-33.692,43.743c-6.522,5.575-13.255,10.115-19.771,13.749c10.039-15.938,19.093-36.72,19.093-59.835\r\n\tc0-50.788-43.842-90.307-45.708-91.963l-10.594-9.41l-10.621,9.381c-1.877,1.657-45.963,41.178-45.963,91.992\r\n\tc0,21.842,8.168,41.594,17.636,57.152c-7.381-4.326-15.215-9.748-22.986-16.451c-14.688-12.67-26.365-27.608-34.708-44.402\r\n\tc-10.063-20.255-15.239-43.265-15.383-68.391c-0.367-63.986,24.09-95.746,49.983-129.369c24.568-31.903,49.829-64.7,49.458-122.113\r\n\tc32.513,28.827,61.257,63.03,82.822,98.877C357.576,219.35,371.715,271.615,367.153,318.449z" + }, + "children": [] + }] +}; +exports.iosFlameOutline = iosFlameOutline; \ No newline at end of file diff --git a/dist/ionicons/iosFlask.js b/dist/ionicons/iosFlask.js new file mode 100644 index 000000000..9b83fa131 --- /dev/null +++ b/dist/ionicons/iosFlask.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosFlask = void 0; +var iosFlask = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M391.016,382.994l-0.15-0.124L323.7,272H188.554l-66.549,110.855l-0.166,0.042l-0.177,0.302\r\n\t\tc-5.461,8.334-8.319,18.773-8.319,24.717c0,12.945,4.481,16.848,5.954,18.088c4.46,3.76,12.667,5.996,23.731,5.996H368.96\r\n\t\tc10.278,0,18.232-2.521,23.007-6.85c4.205-3.814,6.454-9.956,6.683-17.795c0.172-5.904-2.093-15.968-7.476-24.18L391.016,382.994z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M391.016,382.994l-0.15-0.124L323.7,272H188.554l-66.549,110.855l-0.166,0.042l-0.177,0.302\r\n\t\tc-5.461,8.334-8.319,18.773-8.319,24.717c0,12.945,4.481,16.848,5.954,18.088c4.46,3.76,12.667,5.996,23.731,5.996H368.96\r\n\t\tc10.278,0,18.232-2.521,23.007-6.85c4.205-3.814,6.454-9.956,6.683-17.795c0.172-5.904-2.093-15.968-7.476-24.18L391.016,382.994z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M436.912,370.441L320,175V48h16V32H176v16h16v127L76.125,370.441C67.715,386.268,63.616,401.814,64.028,416\r\n\t\tc1.061,36.511,28.701,64,65.065,64h255.888c36.292,0,62.132-27.598,62.993-64C448.312,401.756,445.367,386.349,436.912,370.441z\r\n\t\t M208,64h48v16h-48V64z M208,112h32v16h-32V112z M208,160h48v16h-48V160z M191.261,208H240v16h-58.179L191.261,208z\r\n\t\t M414.64,408.041C413.934,432.289,398.763,448,368.96,448H143.027c-29.862,0-45.682-12.25-45.682-39.834\r\n\t\tc0-9.455,4.029-23.008,10.937-33.55L179.49,256h153.228l71.836,118.717C411.497,385.312,414.916,398.553,414.64,408.041z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M436.912,370.441L320,175V48h16V32H176v16h16v127L76.125,370.441C67.715,386.268,63.616,401.814,64.028,416\r\n\t\tc1.061,36.511,28.701,64,65.065,64h255.888c36.292,0,62.132-27.598,62.993-64C448.312,401.756,445.367,386.349,436.912,370.441z\r\n\t\t M208,64h48v16h-48V64z M208,112h32v16h-32V112z M208,160h48v16h-48V160z M191.261,208H240v16h-58.179L191.261,208z\r\n\t\t M414.64,408.041C413.934,432.289,398.763,448,368.96,448H143.027c-29.862,0-45.682-12.25-45.682-39.834\r\n\t\tc0-9.455,4.029-23.008,10.937-33.55L179.49,256h153.228l71.836,118.717C411.497,385.312,414.916,398.553,414.64,408.041z" + }, + "children": [] + }] + }] + }] +}; +exports.iosFlask = iosFlask; \ No newline at end of file diff --git a/dist/ionicons/iosFlaskOutline.js b/dist/ionicons/iosFlaskOutline.js new file mode 100644 index 000000000..2006bf4b7 --- /dev/null +++ b/dist/ionicons/iosFlaskOutline.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosFlaskOutline = void 0; +var iosFlaskOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M436.912,370.441L320,175V48h16V32h-16.009H304v16v131.418l2.514,3.791l116.575,194.834\r\n\t\tc6.75,12.818,9.314,25.95,9.001,37.957c-0.243,9.339-1.958,17.938-6.545,25.569C417.076,455.666,402.33,464,384.981,464H129.093\r\n\t\tc-17.504,0-32.461-8.435-41.035-22.705c-11.897-19.801-10.889-38.145,2.275-63.139L181.821,224H240v-16h-48.683l14.687-24.756\r\n\t\tL208,179.4V176h48v-16h-48v-32h32v-16h-32V80h48V64h-48V48V32h-15.989H176v16h16v127L76.126,370.441\r\n\t\tC67.714,386.268,63.615,401.814,64.027,416c1.061,36.511,28.702,64,65.065,64h255.889c36.291,0,62.131-27.598,62.992-64\r\n\t\tC448.311,401.756,445.367,386.349,436.912,370.441z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M436.912,370.441L320,175V48h16V32h-16.009H304v16v131.418l2.514,3.791l116.575,194.834\r\n\t\tc6.75,12.818,9.314,25.95,9.001,37.957c-0.243,9.339-1.958,17.938-6.545,25.569C417.076,455.666,402.33,464,384.981,464H129.093\r\n\t\tc-17.504,0-32.461-8.435-41.035-22.705c-11.897-19.801-10.889-38.145,2.275-63.139L181.821,224H240v-16h-48.683l14.687-24.756\r\n\t\tL208,179.4V176h48v-16h-48v-32h32v-16h-32V80h48V64h-48V48V32h-15.989H176v16h16v127L76.126,370.441\r\n\t\tC67.714,386.268,63.615,401.814,64.027,416c1.061,36.511,28.702,64,65.065,64h255.889c36.291,0,62.131-27.598,62.992-64\r\n\t\tC448.311,401.756,445.367,386.349,436.912,370.441z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M108.292,374.616c-6.907,10.542-10.936,24.095-10.936,33.55c0,27.584,15.82,39.834,45.682,39.834h225.932\r\n\t\tc29.804,0,44.975-15.711,45.681-39.959c0.277-9.488-3.143-22.729-10.086-33.324L332.729,256H179.5L108.292,374.616z M323.705,272\r\n\t\tl67.168,110.87l0.151,0.124l0.159,0.182c5.382,8.212,7.647,18.275,7.476,24.18c-0.229,7.839-2.477,13.98-6.683,17.795\r\n\t\tc-4.774,4.328-12.729,6.85-23.008,6.85H143.037c-11.064,0-19.27-2.236-23.73-5.996c-1.472-1.24-5.954-5.143-5.954-18.088\r\n\t\tc0-5.943,2.857-16.383,8.319-24.717l0.177-0.302l0.166-0.042L188.564,272H323.705z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M108.292,374.616c-6.907,10.542-10.936,24.095-10.936,33.55c0,27.584,15.82,39.834,45.682,39.834h225.932\r\n\t\tc29.804,0,44.975-15.711,45.681-39.959c0.277-9.488-3.143-22.729-10.086-33.324L332.729,256H179.5L108.292,374.616z M323.705,272\r\n\t\tl67.168,110.87l0.151,0.124l0.159,0.182c5.382,8.212,7.647,18.275,7.476,24.18c-0.229,7.839-2.477,13.98-6.683,17.795\r\n\t\tc-4.774,4.328-12.729,6.85-23.008,6.85H143.037c-11.064,0-19.27-2.236-23.73-5.996c-1.472-1.24-5.954-5.143-5.954-18.088\r\n\t\tc0-5.943,2.857-16.383,8.319-24.717l0.177-0.302l0.166-0.042L188.564,272H323.705z" + }, + "children": [] + }] + }] + }] +}; +exports.iosFlaskOutline = iosFlaskOutline; \ No newline at end of file diff --git a/dist/ionicons/iosFlower.js b/dist/ionicons/iosFlower.js new file mode 100644 index 000000000..b87fa9cb0 --- /dev/null +++ b/dist/ionicons/iosFlower.js @@ -0,0 +1,123 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosFlower = void 0; +var iosFlower = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M395.057,228.247c-28.651,0-64.502,7.35-92.66,14.518c-0.98-3.443-2.321-6.734-4.001-9.817\r\n\t\tc24.97-14.84,55.487-34.98,75.733-55.224c39.547-39.547,52.023-68.458,40.44-80.042c-11.584-11.583-40.495,0.893-80.042,40.44\r\n\t\tc-20.225,20.225-40.343,50.698-55.178,75.654c-3.082-1.708-6.373-3.083-9.822-4.089c7.156-28.133,14.475-63.897,14.475-92.492\r\n\t\tC284.002,61.266,272.382,32,256,32s-28.002,29.266-28.002,85.194c0,28.595,7.319,64.359,14.475,92.492\r\n\t\tc-3.449,1.006-6.74,2.381-9.822,4.089c-14.835-24.956-34.953-55.43-55.176-75.653c-39.548-39.547-68.458-52.024-80.042-40.44\r\n\t\tc-11.584,11.583,0.894,40.494,40.44,80.041c20.246,20.244,50.762,40.384,75.732,55.224c-1.68,3.083-3.021,6.374-4.001,9.817\r\n\t\tc-28.158-7.168-64.008-14.518-92.659-14.518C61.016,228.247,32,239.618,32,256s29.016,28.252,84.944,28.252\r\n\t\tc28.697,0,64.613-7.371,92.792-14.551c1.01,3.414,2.384,6.671,4.083,9.724c-25.009,14.852-55.645,35.049-75.946,55.351\r\n\t\tc-39.547,39.548-52.023,68.459-40.44,80.043c11.584,11.584,40.495-0.895,80.042-40.441c20.323-20.323,40.542-51.001,55.398-76.024\r\n\t\tc3.053,1.671,6.31,3.01,9.718,3.995c-7.192,28.203-14.592,64.207-14.592,92.959c0,55.929,11.62,84.693,28.002,84.693\r\n\t\ts28.002-28.766,28.002-84.693c0-28.752-7.4-64.756-14.592-92.959c3.408-0.985,6.665-2.324,9.718-3.995\r\n\t\tc14.855,25.023,35.073,55.701,55.399,76.025c39.547,39.547,68.457,52.024,80.041,40.44s-0.894-40.495-40.439-80.043\r\n\t\tc-20.304-20.302-50.938-40.499-75.947-55.351c1.699-3.053,3.073-6.31,4.083-9.724c28.18,7.18,64.096,14.551,92.792,14.551\r\n\t\tc55.929,0,84.943-11.62,84.943-28.002S450.984,228.247,395.057,228.247z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M395.057,228.247c-28.651,0-64.502,7.35-92.66,14.518c-0.98-3.443-2.321-6.734-4.001-9.817\r\n\t\tc24.97-14.84,55.487-34.98,75.733-55.224c39.547-39.547,52.023-68.458,40.44-80.042c-11.584-11.583-40.495,0.893-80.042,40.44\r\n\t\tc-20.225,20.225-40.343,50.698-55.178,75.654c-3.082-1.708-6.373-3.083-9.822-4.089c7.156-28.133,14.475-63.897,14.475-92.492\r\n\t\tC284.002,61.266,272.382,32,256,32s-28.002,29.266-28.002,85.194c0,28.595,7.319,64.359,14.475,92.492\r\n\t\tc-3.449,1.006-6.74,2.381-9.822,4.089c-14.835-24.956-34.953-55.43-55.176-75.653c-39.548-39.547-68.458-52.024-80.042-40.44\r\n\t\tc-11.584,11.583,0.894,40.494,40.44,80.041c20.246,20.244,50.762,40.384,75.732,55.224c-1.68,3.083-3.021,6.374-4.001,9.817\r\n\t\tc-28.158-7.168-64.008-14.518-92.659-14.518C61.016,228.247,32,239.618,32,256s29.016,28.252,84.944,28.252\r\n\t\tc28.697,0,64.613-7.371,92.792-14.551c1.01,3.414,2.384,6.671,4.083,9.724c-25.009,14.852-55.645,35.049-75.946,55.351\r\n\t\tc-39.547,39.548-52.023,68.459-40.44,80.043c11.584,11.584,40.495-0.895,80.042-40.441c20.323-20.323,40.542-51.001,55.398-76.024\r\n\t\tc3.053,1.671,6.31,3.01,9.718,3.995c-7.192,28.203-14.592,64.207-14.592,92.959c0,55.929,11.62,84.693,28.002,84.693\r\n\t\ts28.002-28.766,28.002-84.693c0-28.752-7.4-64.756-14.592-92.959c3.408-0.985,6.665-2.324,9.718-3.995\r\n\t\tc14.855,25.023,35.073,55.701,55.399,76.025c39.547,39.547,68.457,52.024,80.041,40.44s-0.894-40.495-40.439-80.043\r\n\t\tc-20.304-20.302-50.938-40.499-75.947-55.351c1.699-3.053,3.073-6.31,4.083-9.724c28.18,7.18,64.096,14.551,92.792,14.551\r\n\t\tc55.929,0,84.943-11.62,84.943-28.002S450.984,228.247,395.057,228.247z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M296.467,353.945c0,0,7.031,41.059,1.854,75.946c11.678,21.779,26.139,35.253,36.643,35.253\r\n\t\tc1.749,0,3.432-0.324,5.042-0.976c11.874-4.797,14.385-24.984,4.855-58.491C320.331,388.004,296.467,353.945,296.467,353.945z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M296.467,353.945c0,0,7.031,41.059,1.854,75.946c11.678,21.779,26.139,35.253,36.643,35.253\r\n\t\tc1.749,0,3.432-0.324,5.042-0.976c11.874-4.797,14.385-24.984,4.855-58.491C320.331,388.004,296.467,353.945,296.467,353.945z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M215.497,158.32c0,0-7.747-40.82-1.818-75.712c-13.292-23.51-26.139-35.255-36.644-35.255\r\n\t\tc-1.749,0-3.431,0.325-5.042,0.976c-11.868,4.795-14.497,23.211-4.87,58.441C188.375,122.75,215.497,158.32,215.497,158.32z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M215.497,158.32c0,0-7.747-40.82-1.818-75.712c-13.292-23.51-26.139-35.255-36.644-35.255\r\n\t\tc-1.749,0-3.431,0.325-5.042,0.976c-11.868,4.795-14.497,23.211-4.87,58.441C188.375,122.75,215.497,158.32,215.497,158.32z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M158.306,296.717c0,0-41.308,6.119-75.949,1.852c-27.422,15.505-38.836,30.402-34.277,41.687\r\n\t\tc2.806,6.944,10.913,10.675,23.842,10.675c9.182,0,22.434-1.559,34.672-5.826C123.999,321.17,158.306,296.717,158.306,296.717z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M158.306,296.717c0,0-41.308,6.119-75.949,1.852c-27.422,15.505-38.836,30.402-34.277,41.687\r\n\t\tc2.806,6.944,10.913,10.675,23.842,10.675c9.182,0,22.434-1.559,34.672-5.826C123.999,321.17,158.306,296.717,158.306,296.717z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M353.723,215.779c0,0,40.778-7.28,75.918-1.849c27.424-15.504,38.838-30.402,34.279-41.685\r\n\t\tc-2.806-6.945-10.914-10.675-23.844-10.675c-9.178,0-21.4,1.715-34.654,5.822C387.334,191.166,353.723,215.779,353.723,215.779z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M353.723,215.779c0,0,40.778-7.28,75.918-1.849c27.424-15.504,38.838-30.402,34.279-41.685\r\n\t\tc-2.806-6.945-10.914-10.675-23.844-10.675c-9.178,0-21.4,1.715-34.654,5.822C387.334,191.166,353.723,215.779,353.723,215.779z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M163.135,408.98c-8.42,30.34-5.956,48.938,5.244,53.69c1.674,0.711,3.437,1.066,5.275,1.066\r\n\t\tc11.107,0,24.698-13.124,39.528-39.015c-4.184-32.22,2.351-70.779,2.351-70.779S193.999,385.336,163.135,408.98z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M163.135,408.98c-8.42,30.34-5.956,48.938,5.244,53.69c1.674,0.711,3.437,1.066,5.275,1.066\r\n\t\tc11.107,0,24.698-13.124,39.528-39.015c-4.184-32.22,2.351-70.779,2.351-70.779S193.999,385.336,163.135,408.98z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M348.77,103.87c8.397-31.87,6.096-49.271-5.147-54.044c-1.674-0.71-3.438-1.066-5.274-1.066\r\n\t\tc-11.105,0-26.207,14.287-39.527,39.013c4.514,22.894-2.393,71.053-2.393,71.053S319.667,124.5,348.77,103.87z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M348.77,103.87c8.397-31.87,6.096-49.271-5.147-54.044c-1.674-0.71-3.438-1.066-5.274-1.066\r\n\t\tc-11.105,0-26.207,14.287-39.527,39.013c4.514,22.894-2.393,71.053-2.393,71.053S319.667,124.5,348.77,103.87z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M87.524,213.432c29.726-3.932,70.688,2.336,70.688,2.336S121,187.067,103.209,163.367\r\n\t\tC93,159.5,80.717,158.366,72.457,158.366c-12.267,0-20.042,3.573-22.881,10.261C44.572,180.419,59.546,198.612,87.524,213.432z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M87.524,213.432c29.726-3.932,70.688,2.336,70.688,2.336S121,187.067,103.209,163.367\r\n\t\tC93,159.5,80.717,158.366,72.457,158.366c-12.267,0-20.042,3.573-22.881,10.261C44.572,180.419,59.546,198.612,87.524,213.432z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M424.477,299.066c-25.307,5.6-70.78-2.35-70.78-2.35s34.638,25.615,55.014,52.393c11.959,4.223,22.555,5.022,30.833,5.022\r\n\t\tc12.266,0,20.041-3.573,22.88-10.261C467.428,332.08,454.283,315.801,424.477,299.066z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M424.477,299.066c-25.307,5.6-70.78-2.35-70.78-2.35s34.638,25.615,55.014,52.393c11.959,4.223,22.555,5.022,30.833,5.022\r\n\t\tc12.266,0,20.041-3.573,22.88-10.261C467.428,332.08,454.283,315.801,424.477,299.066z" + }, + "children": [] + }] + }] + }] +}; +exports.iosFlower = iosFlower; \ No newline at end of file diff --git a/dist/ionicons/iosFlowerOutline.js b/dist/ionicons/iosFlowerOutline.js new file mode 100644 index 000000000..9da45d145 --- /dev/null +++ b/dist/ionicons/iosFlowerOutline.js @@ -0,0 +1,123 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosFlowerOutline = void 0; +var iosFlowerOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M395.057,284.252c55.929,0,84.943-11.62,84.943-28.002s-29.016-28.003-84.943-28.003c-28.732,0-64.708,7.391-92.902,14.578\r\n\t\tc-0.975-3.419-2.305-6.688-3.973-9.75c25.009-14.852,55.645-35.05,75.947-55.353c39.547-39.547,52.023-68.458,40.44-80.042\r\n\t\tc-2.747-2.748-6.472-4.142-11.079-4.142c-14.818,0-38.796,14.415-68.963,44.582c-20.282,20.282-40.459,50.873-55.307,75.869\r\n\t\tc-3.062-1.696-6.33-3.062-9.755-4.062c7.175-28.17,14.535-64.059,14.535-92.735C284.002,61.266,272.382,32,256,32\r\n\t\ts-28.002,29.266-28.002,85.194c0,28.676,7.362,64.565,14.536,92.735c-3.425,1-6.693,2.365-9.755,4.062\r\n\t\tc-14.847-24.996-35.023-55.587-55.305-75.869C147.309,107.957,123.33,93.54,108.51,93.54c-4.609,0-8.331,1.394-11.079,4.142\r\n\t\tc-11.584,11.583,0.894,40.494,40.44,80.041c20.303,20.303,50.938,40.501,75.947,55.353c-1.668,3.062-2.999,6.331-3.974,9.75\r\n\t\tc-28.194-7.188-64.169-14.578-92.901-14.578C61.016,228.247,32,239.618,32,256s29.016,28.252,84.944,28.252\r\n\t\tc28.777,0,64.82-7.413,93.034-14.611c1.003,3.392,2.368,6.625,4.055,9.656c-25.048,14.863-55.801,35.119-76.161,55.479\r\n\t\tc-39.547,39.548-52.023,68.459-40.44,80.043c2.748,2.748,6.471,4.142,11.078,4.142c14.819,0,38.796-14.415,68.963-44.583\r\n\t\tc20.382-20.381,40.659-51.177,55.526-76.238c3.032,1.657,6.267,2.988,9.651,3.967c-7.211,28.238-14.654,64.367-14.654,93.201\r\n\t\tC227.998,451.234,239.618,480,256,480s28.002-28.766,28.002-84.693c0-28.834-7.441-64.963-14.652-93.201\r\n\t\tc3.385-0.979,6.618-2.31,9.65-3.967c14.867,25.062,35.145,55.857,55.527,76.239c30.164,30.165,54.144,44.582,68.963,44.582\r\n\t\tc4.608,0,8.33-1.394,11.078-4.142c11.584-11.584-0.894-40.495-40.439-80.043c-20.361-20.359-51.114-40.615-76.162-55.479\r\n\t\tc1.688-3.031,3.053-6.266,4.055-9.656C330.237,276.839,366.28,284.252,395.057,284.252z M319.992,254.941\r\n\t\tc30.144-7.014,55.893-10.694,75.064-10.694c21.329,0,39.453,1.806,52.41,5.222c9.705,2.559,14.005,5.317,15.736,6.781\r\n\t\tc-1.731,1.463-6.031,4.221-15.736,6.779c-12.958,3.416-31.081,5.223-52.41,5.223c-19.176,0-44.927-3.68-75.075-10.695\r\n\t\tL319.992,254.941z M345.841,149.436c35.382-35.383,52.682-39.412,56.818-39.846c-0.211,2.305-1.343,7.326-6.404,15.991\r\n\t\tc-6.786,11.62-18.35,25.738-33.439,40.828c-13.533,13.534-34.3,29.111-60.513,45.438c-0.619-0.648-1.25-1.283-1.895-1.904\r\n\t\tC316.732,183.729,332.309,162.968,345.841,149.436z M209.698,211.846c-26.213-16.326-46.979-31.904-60.512-45.437\r\n\t\tc-15.09-15.091-26.653-29.208-33.439-40.828c-5.061-8.665-6.194-13.687-6.404-15.992c4.138,0.435,21.436,4.463,56.818,39.845\r\n\t\tc13.533,13.533,29.108,34.295,45.433,60.507C210.948,210.563,210.316,211.198,209.698,211.846z M116.944,268.252\r\n\t\tc-21.339,0-39.483-1.845-52.471-5.335c-9.689-2.604-13.961-5.394-15.675-6.87c1.75-1.451,6.077-4.177,15.796-6.689\r\n\t\tc12.927-3.343,31.029-5.11,52.351-5.11c19.172,0,44.922,3.68,75.064,10.694l0.01,2.615\r\n\t\tC161.87,264.572,136.12,268.252,116.944,268.252z M166.16,363.064c-35.383,35.382-52.68,39.41-56.818,39.846\r\n\t\tc0.21-2.305,1.343-7.326,6.404-15.992c6.786-11.619,18.349-25.736,33.439-40.828c13.587-13.586,34.457-29.229,60.815-45.625\r\n\t\tc0.584,0.604,1.181,1.197,1.789,1.779C195.394,328.604,179.749,349.475,166.16,363.064z M302,300.465\r\n\t\tc26.356,16.395,47.227,32.037,60.814,45.625c15.091,15.092,26.653,29.209,33.439,40.828c5.062,8.666,6.193,13.688,6.403,15.992\r\n\t\tc-4.138-0.436-21.436-4.464-56.817-39.846c-13.589-13.59-29.234-34.463-45.63-60.82C300.818,301.663,301.415,301.068,302,300.465z\r\n\t\t M249.222,64.678c2.548-9.703,5.297-14.055,6.778-15.834c1.48,1.78,4.23,6.131,6.777,15.834\r\n\t\tc3.418,13.015,5.225,31.174,5.225,52.516c0,19.117-3.66,44.781-10.637,74.821h-2.73c-6.977-30.04-10.638-55.704-10.638-74.821\r\n\t\tC243.998,95.853,245.804,77.693,249.222,64.678z M262.782,447.612c-2.569,9.707-5.339,13.954-6.782,15.636\r\n\t\tc-1.444-1.682-4.212-5.929-6.782-15.636c-3.415-12.901-5.22-30.988-5.22-52.308c0-19.228,3.701-45.066,10.752-75.316h2.5\r\n\t\tc7.052,30.25,10.752,56.089,10.752,75.316C268.002,416.624,266.197,434.711,262.782,447.612z M256,288c-17.673,0-32-14.327-32-32\r\n\t\ts14.327-32,32-32s32,14.327,32,32S273.673,288,256,288z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M395.057,284.252c55.929,0,84.943-11.62,84.943-28.002s-29.016-28.003-84.943-28.003c-28.732,0-64.708,7.391-92.902,14.578\r\n\t\tc-0.975-3.419-2.305-6.688-3.973-9.75c25.009-14.852,55.645-35.05,75.947-55.353c39.547-39.547,52.023-68.458,40.44-80.042\r\n\t\tc-2.747-2.748-6.472-4.142-11.079-4.142c-14.818,0-38.796,14.415-68.963,44.582c-20.282,20.282-40.459,50.873-55.307,75.869\r\n\t\tc-3.062-1.696-6.33-3.062-9.755-4.062c7.175-28.17,14.535-64.059,14.535-92.735C284.002,61.266,272.382,32,256,32\r\n\t\ts-28.002,29.266-28.002,85.194c0,28.676,7.362,64.565,14.536,92.735c-3.425,1-6.693,2.365-9.755,4.062\r\n\t\tc-14.847-24.996-35.023-55.587-55.305-75.869C147.309,107.957,123.33,93.54,108.51,93.54c-4.609,0-8.331,1.394-11.079,4.142\r\n\t\tc-11.584,11.583,0.894,40.494,40.44,80.041c20.303,20.303,50.938,40.501,75.947,55.353c-1.668,3.062-2.999,6.331-3.974,9.75\r\n\t\tc-28.194-7.188-64.169-14.578-92.901-14.578C61.016,228.247,32,239.618,32,256s29.016,28.252,84.944,28.252\r\n\t\tc28.777,0,64.82-7.413,93.034-14.611c1.003,3.392,2.368,6.625,4.055,9.656c-25.048,14.863-55.801,35.119-76.161,55.479\r\n\t\tc-39.547,39.548-52.023,68.459-40.44,80.043c2.748,2.748,6.471,4.142,11.078,4.142c14.819,0,38.796-14.415,68.963-44.583\r\n\t\tc20.382-20.381,40.659-51.177,55.526-76.238c3.032,1.657,6.267,2.988,9.651,3.967c-7.211,28.238-14.654,64.367-14.654,93.201\r\n\t\tC227.998,451.234,239.618,480,256,480s28.002-28.766,28.002-84.693c0-28.834-7.441-64.963-14.652-93.201\r\n\t\tc3.385-0.979,6.618-2.31,9.65-3.967c14.867,25.062,35.145,55.857,55.527,76.239c30.164,30.165,54.144,44.582,68.963,44.582\r\n\t\tc4.608,0,8.33-1.394,11.078-4.142c11.584-11.584-0.894-40.495-40.439-80.043c-20.361-20.359-51.114-40.615-76.162-55.479\r\n\t\tc1.688-3.031,3.053-6.266,4.055-9.656C330.237,276.839,366.28,284.252,395.057,284.252z M319.992,254.941\r\n\t\tc30.144-7.014,55.893-10.694,75.064-10.694c21.329,0,39.453,1.806,52.41,5.222c9.705,2.559,14.005,5.317,15.736,6.781\r\n\t\tc-1.731,1.463-6.031,4.221-15.736,6.779c-12.958,3.416-31.081,5.223-52.41,5.223c-19.176,0-44.927-3.68-75.075-10.695\r\n\t\tL319.992,254.941z M345.841,149.436c35.382-35.383,52.682-39.412,56.818-39.846c-0.211,2.305-1.343,7.326-6.404,15.991\r\n\t\tc-6.786,11.62-18.35,25.738-33.439,40.828c-13.533,13.534-34.3,29.111-60.513,45.438c-0.619-0.648-1.25-1.283-1.895-1.904\r\n\t\tC316.732,183.729,332.309,162.968,345.841,149.436z M209.698,211.846c-26.213-16.326-46.979-31.904-60.512-45.437\r\n\t\tc-15.09-15.091-26.653-29.208-33.439-40.828c-5.061-8.665-6.194-13.687-6.404-15.992c4.138,0.435,21.436,4.463,56.818,39.845\r\n\t\tc13.533,13.533,29.108,34.295,45.433,60.507C210.948,210.563,210.316,211.198,209.698,211.846z M116.944,268.252\r\n\t\tc-21.339,0-39.483-1.845-52.471-5.335c-9.689-2.604-13.961-5.394-15.675-6.87c1.75-1.451,6.077-4.177,15.796-6.689\r\n\t\tc12.927-3.343,31.029-5.11,52.351-5.11c19.172,0,44.922,3.68,75.064,10.694l0.01,2.615\r\n\t\tC161.87,264.572,136.12,268.252,116.944,268.252z M166.16,363.064c-35.383,35.382-52.68,39.41-56.818,39.846\r\n\t\tc0.21-2.305,1.343-7.326,6.404-15.992c6.786-11.619,18.349-25.736,33.439-40.828c13.587-13.586,34.457-29.229,60.815-45.625\r\n\t\tc0.584,0.604,1.181,1.197,1.789,1.779C195.394,328.604,179.749,349.475,166.16,363.064z M302,300.465\r\n\t\tc26.356,16.395,47.227,32.037,60.814,45.625c15.091,15.092,26.653,29.209,33.439,40.828c5.062,8.666,6.193,13.688,6.403,15.992\r\n\t\tc-4.138-0.436-21.436-4.464-56.817-39.846c-13.589-13.59-29.234-34.463-45.63-60.82C300.818,301.663,301.415,301.068,302,300.465z\r\n\t\t M249.222,64.678c2.548-9.703,5.297-14.055,6.778-15.834c1.48,1.78,4.23,6.131,6.777,15.834\r\n\t\tc3.418,13.015,5.225,31.174,5.225,52.516c0,19.117-3.66,44.781-10.637,74.821h-2.73c-6.977-30.04-10.638-55.704-10.638-74.821\r\n\t\tC243.998,95.853,245.804,77.693,249.222,64.678z M262.782,447.612c-2.569,9.707-5.339,13.954-6.782,15.636\r\n\t\tc-1.444-1.682-4.212-5.929-6.782-15.636c-3.415-12.901-5.22-30.988-5.22-52.308c0-19.228,3.701-45.066,10.752-75.316h2.5\r\n\t\tc7.052,30.25,10.752,56.089,10.752,75.316C268.002,416.624,266.197,434.711,262.782,447.612z M256,288c-17.673,0-32-14.327-32-32\r\n\t\ts14.327-32,32-32s32,14.327,32,32S273.673,288,256,288z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M344.86,405.678c-24.529-17.674-48.394-51.732-48.394-51.732s7.031,41.059,1.854,75.946\r\n\t\tc11.678,21.779,26.139,35.253,36.643,35.253c1.749,0,3.432-0.324,5.042-0.976C351.879,459.372,354.39,439.185,344.86,405.678z\r\n\t\t M333.738,448.566c-2.738-1.46-9.407-6.369-18.992-22.27c0.688-7.872,1.098-16.337,1.219-25.282\r\n\t\tc5.012,4.88,9.947,9.437,14.747,13.613C335.816,434.408,334.954,444.779,333.738,448.566z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M344.86,405.678c-24.529-17.674-48.394-51.732-48.394-51.732s7.031,41.059,1.854,75.946\r\n\t\tc11.678,21.779,26.139,35.253,36.643,35.253c1.749,0,3.432-0.324,5.042-0.976C351.879,459.372,354.39,439.185,344.86,405.678z\r\n\t\t M333.738,448.566c-2.738-1.46-9.407-6.369-18.992-22.27c0.688-7.872,1.098-16.337,1.219-25.282\r\n\t\tc5.012,4.88,9.947,9.437,14.747,13.613C335.816,434.408,334.954,444.779,333.738,448.566z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M213.679,82.608c-13.292-23.51-26.139-35.255-36.644-35.255c-1.749,0-3.431,0.325-5.042,0.976\r\n\t\tc-11.868,4.795-14.497,23.211-4.87,58.441c21.252,15.98,48.374,51.55,48.374,51.55S207.75,117.5,213.679,82.608z M196.038,111.369\r\n\t\tc-5.001-4.856-9.943-9.398-14.769-13.574c-5.084-19.731-4.223-30.082-3.008-33.863c2.737,1.459,9.407,6.369,18.994,22.27\r\n\t\tC196.568,94.04,196.161,102.466,196.038,111.369z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M213.679,82.608c-13.292-23.51-26.139-35.255-36.644-35.255c-1.749,0-3.431,0.325-5.042,0.976\r\n\t\tc-11.868,4.795-14.497,23.211-4.87,58.441c21.252,15.98,48.374,51.55,48.374,51.55S207.75,117.5,213.679,82.608z M196.038,111.369\r\n\t\tc-5.001-4.856-9.943-9.398-14.769-13.574c-5.084-19.731-4.223-30.082-3.008-33.863c2.737,1.459,9.407,6.369,18.994,22.27\r\n\t\tC196.568,94.04,196.161,102.466,196.038,111.369z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M82.357,298.568c-27.422,15.505-38.836,30.402-34.277,41.687c2.806,6.944,10.913,10.675,23.842,10.675\r\n\t\tc9.182,0,22.434-1.559,34.672-5.826c17.405-23.934,51.712-48.387,51.712-48.387S116.999,302.836,82.357,298.568z M97.637,330.956\r\n\t\tc-10.088,2.606-18.909,3.974-25.716,3.974c-4.092,0-6.733-0.502-8.223-0.97c1.477-2.755,6.407-9.411,22.253-18.966\r\n\t\tc7.872,0.689,16.338,1.099,25.284,1.22C106.365,321.218,101.815,326.15,97.637,330.956z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M82.357,298.568c-27.422,15.505-38.836,30.402-34.277,41.687c2.806,6.944,10.913,10.675,23.842,10.675\r\n\t\tc9.182,0,22.434-1.559,34.672-5.826c17.405-23.934,51.712-48.387,51.712-48.387S116.999,302.836,82.357,298.568z M97.637,330.956\r\n\t\tc-10.088,2.606-18.909,3.974-25.716,3.974c-4.092,0-6.733-0.502-8.223-0.97c1.477-2.755,6.407-9.411,22.253-18.966\r\n\t\tc7.872,0.689,16.338,1.099,25.284,1.22C106.365,321.218,101.815,326.15,97.637,330.956z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M463.92,172.245c-2.806-6.945-10.914-10.675-23.844-10.675c-9.178,0-21.4,1.715-34.654,5.822\r\n\t\tc-18.088,23.774-51.699,48.387-51.699,48.387s40.778-7.28,75.918-1.849C457.064,198.426,468.479,183.528,463.92,172.245z\r\n\t\t M426.047,197.504c-7.867-0.689-16.327-1.097-25.267-1.218c4.869-5.004,9.42-9.939,13.6-14.749\r\n\t\tc10.081-2.602,18.895-3.968,25.697-3.968c4.093,0,6.733,0.502,8.225,0.97C446.824,181.294,441.893,187.951,426.047,197.504z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M463.92,172.245c-2.806-6.945-10.914-10.675-23.844-10.675c-9.178,0-21.4,1.715-34.654,5.822\r\n\t\tc-18.088,23.774-51.699,48.387-51.699,48.387s40.778-7.28,75.918-1.849C457.064,198.426,468.479,183.528,463.92,172.245z\r\n\t\t M426.047,197.504c-7.867-0.689-16.327-1.097-25.267-1.218c4.869-5.004,9.42-9.939,13.6-14.749\r\n\t\tc10.081-2.602,18.895-3.968,25.697-3.968c4.093,0,6.733,0.502,8.225,0.97C446.824,181.294,441.893,187.951,426.047,197.504z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M163.135,408.98c-8.42,30.34-5.956,48.938,5.244,53.69c1.674,0.711,3.437,1.066,5.275,1.066\r\n\t\tc11.107,0,24.698-13.124,39.528-39.015c-4.184-32.22,2.351-70.779,2.351-70.779S193.999,385.336,163.135,408.98z M174.981,447.207\r\n\t\tc-0.904-2.966-2.147-11.15,2.312-29.159c6.048-5.079,12.323-10.782,18.743-17.032c0.095,6.979,0.366,13.687,0.81,20.039\r\n\t\tC186.466,438.66,178.52,445.39,174.981,447.207z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M163.135,408.98c-8.42,30.34-5.956,48.938,5.244,53.69c1.674,0.711,3.437,1.066,5.275,1.066\r\n\t\tc11.107,0,24.698-13.124,39.528-39.015c-4.184-32.22,2.351-70.779,2.351-70.779S193.999,385.336,163.135,408.98z M174.981,447.207\r\n\t\tc-0.904-2.966-2.147-11.15,2.312-29.159c6.048-5.079,12.323-10.782,18.743-17.032c0.095,6.979,0.366,13.687,0.81,20.039\r\n\t\tC186.466,438.66,178.52,445.39,174.981,447.207z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M343.622,49.826c-1.674-0.71-3.438-1.066-5.274-1.066c-11.105,0-26.207,14.287-39.527,39.013\r\n\t\tc4.514,22.894-2.393,71.053-2.393,71.053s23.239-34.326,52.342-54.956C357.167,72,354.865,54.599,343.622,49.826z M334.627,94.781\r\n\t\tc-6.029,5.051-12.277,10.72-18.66,16.931c-0.092-7.062-0.364-13.846-0.812-20.269c10.379-17.607,18.327-24.336,21.864-26.153\r\n\t\tC337.93,68.274,339.186,76.541,334.627,94.781z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M343.622,49.826c-1.674-0.71-3.438-1.066-5.274-1.066c-11.105,0-26.207,14.287-39.527,39.013\r\n\t\tc4.514,22.894-2.393,71.053-2.393,71.053s23.239-34.326,52.342-54.956C357.167,72,354.865,54.599,343.622,49.826z M334.627,94.781\r\n\t\tc-6.029,5.051-12.277,10.72-18.66,16.931c-0.092-7.062-0.364-13.846-0.812-20.269c10.379-17.607,18.327-24.336,21.864-26.153\r\n\t\tC337.93,68.274,339.186,76.541,334.627,94.781z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M103.209,163.367C93,159.5,80.717,158.366,72.457,158.366c-12.267,0-20.042,3.573-22.881,10.261\r\n\t\tc-5.004,11.792,9.97,29.985,37.948,44.805c29.726-3.932,70.688,2.336,70.688,2.336S121,187.067,103.209,163.367z M65.034,175.215\r\n\t\tc1.381-0.414,3.775-0.848,7.424-0.848c5.815,0,13.242,1.088,21.687,3.165c5.077,6.049,10.781,12.33,17.034,18.754\r\n\t\tc-6.959,0.096-13.648,0.367-19.984,0.81C73.563,186.7,66.84,178.745,65.034,175.215z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M103.209,163.367C93,159.5,80.717,158.366,72.457,158.366c-12.267,0-20.042,3.573-22.881,10.261\r\n\t\tc-5.004,11.792,9.97,29.985,37.948,44.805c29.726-3.932,70.688,2.336,70.688,2.336S121,187.067,103.209,163.367z M65.034,175.215\r\n\t\tc1.381-0.414,3.775-0.848,7.424-0.848c5.815,0,13.242,1.088,21.687,3.165c5.077,6.049,10.781,12.33,17.034,18.754\r\n\t\tc-6.959,0.096-13.648,0.367-19.984,0.81C73.563,186.7,66.84,178.745,65.034,175.215z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M424.477,299.066c-25.307,5.6-70.78-2.35-70.78-2.35s34.638,25.615,55.014,52.393c11.959,4.223,22.555,5.022,30.833,5.022\r\n\t\tc12.266,0,20.041-3.573,22.88-10.261C467.428,332.08,454.283,315.801,424.477,299.066z M439.542,338.132\r\n\t\tc-5.833,0-13.287-1.095-21.765-3.185c-5.078-6.053-10.774-12.326-17.013-18.734c6.98-0.095,13.688-0.365,20.041-0.811\r\n\t\tc17.631,10.396,24.354,18.352,26.158,21.882C445.585,337.697,443.19,338.132,439.542,338.132z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M424.477,299.066c-25.307,5.6-70.78-2.35-70.78-2.35s34.638,25.615,55.014,52.393c11.959,4.223,22.555,5.022,30.833,5.022\r\n\t\tc12.266,0,20.041-3.573,22.88-10.261C467.428,332.08,454.283,315.801,424.477,299.066z M439.542,338.132\r\n\t\tc-5.833,0-13.287-1.095-21.765-3.185c-5.078-6.053-10.774-12.326-17.013-18.734c6.98-0.095,13.688-0.365,20.041-0.811\r\n\t\tc17.631,10.396,24.354,18.352,26.158,21.882C445.585,337.697,443.19,338.132,439.542,338.132z" + }, + "children": [] + }] + }] + }] +}; +exports.iosFlowerOutline = iosFlowerOutline; \ No newline at end of file diff --git a/dist/ionicons/iosFolder.js b/dist/ionicons/iosFolder.js new file mode 100644 index 000000000..f83dce7e8 --- /dev/null +++ b/dist/ionicons/iosFolder.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosFolder = void 0; +var iosFolder = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M472,176H40c-4.411,0-8,3.589-8,8v239c0,13.317,11.683,25,25,25h400c12.683,0,23-11.215,23-25V184\r\n\t\tC480,179.589,476.411,176,472,176z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M472,176H40c-4.411,0-8,3.589-8,8v239c0,13.317,11.683,25,25,25h400c12.683,0,23-11.215,23-25V184\r\n\t\tC480,179.589,476.411,176,472,176z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M457,96H215c-2.791,0-4.271-0.585-6.094-2.408l-22.501-22.501l-0.168-0.162C181.365,66.333,177.361,64,169,64H57\r\n\t\tc-13.785,0-25,10.317-25,23v74.376c2.504-0.888,5.195-1.376,8-1.376h432c2.805,0,5.496,0.488,8,1.376V119\r\n\t\tC480,105.673,470.327,96,457,96z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M457,96H215c-2.791,0-4.271-0.585-6.094-2.408l-22.501-22.501l-0.168-0.162C181.365,66.333,177.361,64,169,64H57\r\n\t\tc-13.785,0-25,10.317-25,23v74.376c2.504-0.888,5.195-1.376,8-1.376h432c2.805,0,5.496,0.488,8,1.376V119\r\n\t\tC480,105.673,470.327,96,457,96z" + }, + "children": [] + }] + }] + }] +}; +exports.iosFolder = iosFolder; \ No newline at end of file diff --git a/dist/ionicons/iosFolderOutline.js b/dist/ionicons/iosFolderOutline.js new file mode 100644 index 000000000..f45617105 --- /dev/null +++ b/dist/ionicons/iosFolderOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosFolderOutline = void 0; +var iosFolderOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M457,96H215c-2.791,0-4.271-0.585-6.094-2.408l-22.501-22.501l-0.168-0.162C181.365,66.333,177.361,64,169,64H57\r\n\tc-13.785,0-25,10.317-25,23v336c0,13.317,11.683,25,25,25h400c12.683,0,23-11.215,23-25V119C480,105.673,470.327,96,457,96z M57,80\r\n\th112c3.497,0,3.737,0.189,6.175,2.488l22.417,22.418c4.84,4.84,10.372,7.094,17.408,7.094h242c4.448,0,7,2.552,7,7v42.376\r\n\tc-2.504-0.888-5.195-1.376-8-1.376H56c-2.805,0-5.496,0.488-8,1.376V87C48,82.677,52.672,80,57,80z M464,423c0,4.328-2.677,9-7,9H57\r\n\tc-4.458,0-9-4.542-9-9V184c0-4.411,3.589-8,8-8h400c4.411,0,8,3.589,8,8V423z" + }, + "children": [] + }] +}; +exports.iosFolderOutline = iosFolderOutline; \ No newline at end of file diff --git a/dist/ionicons/iosFootball.js b/dist/ionicons/iosFootball.js new file mode 100644 index 000000000..a6e640c15 --- /dev/null +++ b/dist/ionicons/iosFootball.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosFootball = void 0; +var iosFootball = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48C141.137,48,48,141.136,48,256c0,114.864,93.137,208,208,208c114.872,0,208-93.138,208-208\r\n\tC464,141.138,370.87,48,256,48z M297.151,442.179c-13.514,2.657-30.327,4.187-44,4.45c-13.198-0.195-26.074-1.735-38.5-4.493\r\n\tc-2.144-0.549-4.383-1.138-6.805-1.777l-24.417-65.435L203.074,336h105.854l0.57,1.076l19.34,38.852L305.22,440.21\r\n\tC302.553,440.924,299.862,441.579,297.151,442.179z M189.578,77.28L247,116.576v58.147l-70.997,60.067L126.6,212.28l-4.167-1.899\r\n\tl-22.332-64.019C122.11,115.158,153.239,90.83,189.578,77.28z M411.564,146.067l-22.432,64.483l-53.992,24.388L264,174.723v-58.147\r\n\tl57.596-39.415C357.958,90.644,389.501,114.913,411.564,146.067z M66.144,273.414l53.756-46.518l49.539,22.599l0.559,0.255\r\n\tl19.718,77.287l-20.433,38.529l-69.86-0.915C81.075,338.291,69.209,307.105,66.144,273.414z M342.719,365.565l-20.434-38.529\r\n\tl19.752-77.416l49.997-22.781l53.822,46.575c-3.065,33.691-14.932,64.877-33.277,91.236L342.719,365.565z" + }, + "children": [] + }] +}; +exports.iosFootball = iosFootball; \ No newline at end of file diff --git a/dist/ionicons/iosFootballOutline.js b/dist/ionicons/iosFootballOutline.js new file mode 100644 index 000000000..4b603d5c9 --- /dev/null +++ b/dist/ionicons/iosFootballOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosFootballOutline = void 0; +var iosFootballOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48C141.137,48,48,141.136,48,256c0,114.864,93.137,208,208,208c114.872,0,208-93.138,208-208\r\n\tC464,141.138,370.87,48,256,48z M297.151,442.179c-13.514,2.657-30.327,4.187-44,4.45c-13.198-0.195-26.074-1.735-38.5-4.493\r\n\tc-2.144-0.549-4.383-1.138-6.805-1.777l-24.417-65.435L203.074,336h105.854l0.57,1.076l19.34,38.852L305.22,440.21\r\n\tC302.553,440.924,299.862,441.579,297.151,442.179z M89.317,163.522l18.188,52.284l0.175,0.504L65.376,252.92\r\n\tC65.892,220.535,74.52,190.088,89.317,163.522z M189.578,77.28L247,116.576v58.147l-70.997,60.067L126.6,212.28l-4.167-1.899\r\n\tl-22.332-64.019C122.11,115.158,153.239,90.83,189.578,77.28z M325.025,247.206l0.921,0.765L307.569,320H204.431l-18.485-72.453\r\n\tl0.445-0.376l68.873-58.27L325.025,247.206z M446.626,252.921l-42.454-36.738l0.127-0.364l18.298-52.451\r\n\tC437.447,189.972,446.109,220.473,446.626,252.921z M411.564,146.067l-22.432,64.483l-53.992,24.388L264,174.723v-58.147\r\n\tl57.596-39.415C357.958,90.644,389.501,114.913,411.564,146.067z M66.144,273.414l53.756-46.518l49.539,22.599l0.559,0.255\r\n\tl19.718,77.287l-20.433,38.529l-69.86-0.915C81.075,338.291,69.209,307.105,66.144,273.414z M342.719,365.565l-20.434-38.529\r\n\tl19.752-77.416l49.997-22.781l53.822,46.575c-3.065,33.691-14.932,64.877-33.277,91.236L342.719,365.565z M255.257,102.67\r\n\tl-46.126-31.498c15-3.806,30.701-5.836,46.869-5.835c15.961,0,31.466,1.982,46.293,5.694L255.257,102.67z M166.423,381.529\r\n\tl0.848,2.511l19.946,49.781c-29.239-11.351-55.011-29.704-75.232-53.006L166.423,381.529z M324.563,433.904l17.934-48.608\r\n\tl1.627-3.748l55.892-0.732C379.744,404.175,353.893,422.562,324.563,433.904z" + }, + "children": [] + }] +}; +exports.iosFootballOutline = iosFootballOutline; \ No newline at end of file diff --git a/dist/ionicons/iosGameControllerA.js b/dist/ionicons/iosGameControllerA.js new file mode 100644 index 000000000..4fbd67c14 --- /dev/null +++ b/dist/ionicons/iosGameControllerA.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosGameControllerA = void 0; +var iosGameControllerA = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M369.269,146H142.739C81.541,146,32,191.458,32,255.418C32,319.419,81.541,366,142.739,366h226.529\r\n\t\tC430.49,366,480,319.419,480,255.418C480,191.458,430.49,146,369.269,146z M200,266.697c0,2.698-2.421,5.303-5.238,5.303H160\r\n\t\tv35.139c0,2.83-3.104,4.861-5.803,4.861h-21.427c-2.628,0-4.771-1.918-4.771-4.533V272H92.861c-2.83,0-4.861-3.104-4.861-5.803\r\n\t\tv-21.427c0-2.628,1.918-4.771,4.533-4.771H128v-34.822c0-2.806,1.854-5.178,4.553-5.178h22.145c2.698,0,5.303,2.421,5.303,5.238\r\n\t\tV240h34.822c2.806,0,5.178,1.854,5.178,4.553V266.697z M319.766,275.486c-10.736,0-19.451-8.587-19.451-19.153\r\n\t\tc0-10.565,8.715-19.168,19.451-19.168c10.783,0,19.498,8.603,19.498,19.168C339.264,266.899,330.549,275.486,319.766,275.486z\r\n\t\t M362.314,317.301c-10.736,0-19.451-8.529-19.451-19.084c0-10.639,8.715-19.153,19.451-19.153c10.783,0,19.498,8.515,19.498,19.153\r\n\t\tC381.812,308.771,373.098,317.301,362.314,317.301z M362.314,233.615c-10.736,0-19.451-8.579-19.451-19.146\r\n\t\tc0-10.567,8.715-19.169,19.451-19.169c10.783,0,19.498,8.602,19.498,19.169C381.812,225.036,373.098,233.615,362.314,233.615z\r\n\t\t M404.862,275.486c-10.729,0-19.442-8.587-19.442-19.153c0-10.565,8.714-19.168,19.442-19.168c10.737,0,19.452,8.603,19.452,19.168\r\n\t\tC424.314,266.899,415.6,275.486,404.862,275.486z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M369.269,146H142.739C81.541,146,32,191.458,32,255.418C32,319.419,81.541,366,142.739,366h226.529\r\n\t\tC430.49,366,480,319.419,480,255.418C480,191.458,430.49,146,369.269,146z M200,266.697c0,2.698-2.421,5.303-5.238,5.303H160\r\n\t\tv35.139c0,2.83-3.104,4.861-5.803,4.861h-21.427c-2.628,0-4.771-1.918-4.771-4.533V272H92.861c-2.83,0-4.861-3.104-4.861-5.803\r\n\t\tv-21.427c0-2.628,1.918-4.771,4.533-4.771H128v-34.822c0-2.806,1.854-5.178,4.553-5.178h22.145c2.698,0,5.303,2.421,5.303,5.238\r\n\t\tV240h34.822c2.806,0,5.178,1.854,5.178,4.553V266.697z M319.766,275.486c-10.736,0-19.451-8.587-19.451-19.153\r\n\t\tc0-10.565,8.715-19.168,19.451-19.168c10.783,0,19.498,8.603,19.498,19.168C339.264,266.899,330.549,275.486,319.766,275.486z\r\n\t\t M362.314,317.301c-10.736,0-19.451-8.529-19.451-19.084c0-10.639,8.715-19.153,19.451-19.153c10.783,0,19.498,8.515,19.498,19.153\r\n\t\tC381.812,308.771,373.098,317.301,362.314,317.301z M362.314,233.615c-10.736,0-19.451-8.579-19.451-19.146\r\n\t\tc0-10.567,8.715-19.169,19.451-19.169c10.783,0,19.498,8.602,19.498,19.169C381.812,225.036,373.098,233.615,362.314,233.615z\r\n\t\t M404.862,275.486c-10.729,0-19.442-8.587-19.442-19.153c0-10.565,8.714-19.168,19.442-19.168c10.737,0,19.452,8.603,19.452,19.168\r\n\t\tC424.314,266.899,415.6,275.486,404.862,275.486z" + }, + "children": [] + }] + }] + }] +}; +exports.iosGameControllerA = iosGameControllerA; \ No newline at end of file diff --git a/dist/ionicons/iosGameControllerAOutline.js b/dist/ionicons/iosGameControllerAOutline.js new file mode 100644 index 000000000..9d7c1b4a5 --- /dev/null +++ b/dist/ionicons/iosGameControllerAOutline.js @@ -0,0 +1,95 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosGameControllerAOutline = void 0; +var iosGameControllerAOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M194.822,240H160v-34.762c0-2.817-2.604-5.238-5.303-5.238h-22.145c-2.698,0-4.552,2.372-4.552,5.178V240H92.533\r\n\t\t\tc-2.615,0-4.533,2.143-4.533,4.771v21.427c0,2.698,2.031,5.803,4.861,5.803H128v35.467c0,2.615,2.143,4.533,4.771,4.533h21.427\r\n\t\t\tc2.698,0,5.803-2.031,5.803-4.861V272h34.762c2.817,0,5.238-2.604,5.238-5.303v-22.145C200,241.854,197.628,240,194.822,240z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M194.822,240H160v-34.762c0-2.817-2.604-5.238-5.303-5.238h-22.145c-2.698,0-4.552,2.372-4.552,5.178V240H92.533\r\n\t\t\tc-2.615,0-4.533,2.143-4.533,4.771v21.427c0,2.698,2.031,5.803,4.861,5.803H128v35.467c0,2.615,2.143,4.533,4.771,4.533h21.427\r\n\t\t\tc2.698,0,5.803-2.031,5.803-4.861V272h34.762c2.817,0,5.238-2.604,5.238-5.303v-22.145C200,241.854,197.628,240,194.822,240z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M362.314,279.063c-10.736,0-19.451,8.515-19.451,19.153c0,10.555,8.715,19.084,19.451,19.084\r\n\t\t\tc10.783,0,19.498-8.529,19.498-19.084C381.812,287.578,373.098,279.063,362.314,279.063z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M362.314,279.063c-10.736,0-19.451,8.515-19.451,19.153c0,10.555,8.715,19.084,19.451,19.084\r\n\t\t\tc10.783,0,19.498-8.529,19.498-19.084C381.812,287.578,373.098,279.063,362.314,279.063z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M319.766,237.165c-10.736,0-19.451,8.603-19.451,19.168c0,10.566,8.715,19.153,19.451,19.153\r\n\t\t\tc10.783,0,19.498-8.587,19.498-19.153C339.264,245.768,330.549,237.165,319.766,237.165z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M319.766,237.165c-10.736,0-19.451,8.603-19.451,19.168c0,10.566,8.715,19.153,19.451,19.153\r\n\t\t\tc10.783,0,19.498-8.587,19.498-19.153C339.264,245.768,330.549,237.165,319.766,237.165z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M404.862,237.165c-10.729,0-19.442,8.603-19.442,19.168c0,10.566,8.714,19.153,19.442,19.153\r\n\t\t\tc10.737,0,19.452-8.587,19.452-19.153C424.314,245.768,415.6,237.165,404.862,237.165z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M404.862,237.165c-10.729,0-19.442,8.603-19.442,19.168c0,10.566,8.714,19.153,19.442,19.153\r\n\t\t\tc10.737,0,19.452-8.587,19.452-19.153C424.314,245.768,415.6,237.165,404.862,237.165z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M362.314,195.301c-10.736,0-19.451,8.602-19.451,19.169c0,10.566,8.715,19.146,19.451,19.146\r\n\t\t\tc10.783,0,19.498-8.579,19.498-19.146C381.812,203.902,373.098,195.301,362.314,195.301z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M362.314,195.301c-10.736,0-19.451,8.602-19.451,19.169c0,10.566,8.715,19.146,19.451,19.146\r\n\t\t\tc10.783,0,19.498-8.579,19.498-19.146C381.812,203.902,373.098,195.301,362.314,195.301z" + }, + "children": [] + }] + }] + }] + }, { + "name": "path", + "attribs": { + "d": "M369.269,162c25.838,0,49.704,9.314,67.204,26.229C454.225,205.386,464,229.247,464,255.418\r\n\t\tc0,26.303-9.806,50.405-27.611,67.869c-17.563,17.226-41.4,26.713-67.12,26.713H142.739c-25.712,0-49.548-9.487-67.117-26.715\r\n\t\tC57.81,305.818,48,281.717,48,255.418c0-26.167,9.78-50.028,27.539-67.188C93.043,171.315,116.909,162,142.739,162H369.269\r\n\t\t M369.269,146H142.739C81.541,146,32,191.458,32,255.418C32,319.419,81.541,366,142.739,366h226.529\r\n\t\tC430.49,366,480,319.419,480,255.418C480,191.458,430.49,146,369.269,146L369.269,146z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M369.269,162c25.838,0,49.704,9.314,67.204,26.229C454.225,205.386,464,229.247,464,255.418\r\n\t\tc0,26.303-9.806,50.405-27.611,67.869c-17.563,17.226-41.4,26.713-67.12,26.713H142.739c-25.712,0-49.548-9.487-67.117-26.715\r\n\t\tC57.81,305.818,48,281.717,48,255.418c0-26.167,9.78-50.028,27.539-67.188C93.043,171.315,116.909,162,142.739,162H369.269\r\n\t\t M369.269,146H142.739C81.541,146,32,191.458,32,255.418C32,319.419,81.541,366,142.739,366h226.529\r\n\t\tC430.49,366,480,319.419,480,255.418C480,191.458,430.49,146,369.269,146L369.269,146z" + }, + "children": [] + }] + }] + }] +}; +exports.iosGameControllerAOutline = iosGameControllerAOutline; \ No newline at end of file diff --git a/dist/ionicons/iosGameControllerB.js b/dist/ionicons/iosGameControllerB.js new file mode 100644 index 000000000..91e0fe04a --- /dev/null +++ b/dist/ionicons/iosGameControllerB.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosGameControllerB = void 0; +var iosGameControllerB = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M135.123,204.568c-10.688,0-19.343,8.717-19.343,19.441c0,10.727,8.655,19.447,19.343,19.447\r\n\t\tc10.641,0,19.297-8.721,19.297-19.447C154.42,213.285,145.764,204.568,135.123,204.568z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M135.123,204.568c-10.688,0-19.343,8.717-19.343,19.441c0,10.727,8.655,19.447,19.343,19.447\r\n\t\tc10.641,0,19.297-8.721,19.297-19.447C154.42,213.285,145.764,204.568,135.123,204.568z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M466.279,248.866c-21.157-88.471-43.631-135.489-88.454-148.83C368.06,97.135,359.748,96,352.076,96\r\n\t\tc-27.598,0-46.938,14.683-96.08,14.683c-49.174,0-68.502-14.681-96.062-14.683c-7.665,0-15.963,1.135-25.721,4.036\r\n\t\tc-44.869,13.341-67.342,60.359-88.461,148.83c-21.181,88.473-17.334,152.363,7.679,164.289C57.502,415.1,61.662,416,65.885,416\r\n\t\tc21.694,0,45.139-23.838,67.659-52.047C159.198,331.848,165.658,331,243.822,331h24.343c78.147,0,84.628,0.846,110.282,32.953\r\n\t\tc22.526,28.207,45.97,52.004,67.665,52.004c4.226,0,8.384-0.879,12.457-2.823C483.574,401.208,487.421,337.339,466.279,248.866z\r\n\t\t M135.234,263.633C113.594,263.633,96,245.875,96,224.01c0-21.84,17.594-39.643,39.234-39.643\r\n\t\tc21.655,0,39.249,17.803,39.249,39.643C174.483,245.875,156.89,263.633,135.234,263.633z M308.076,244.14\r\n\t\tc-11.058,0-20.076-9.019-20.076-20.107c0-11.09,9.019-20.104,20.076-20.104c11.131,0,20.148,9.014,20.148,20.104\r\n\t\tC328.225,235.121,319.207,244.14,308.076,244.14z M351.988,288c-11.058,0-20.053-8.951-20.053-20.016\r\n\t\tc0-11.157,8.995-20.106,20.053-20.106c11.146,0,20.148,8.949,20.148,20.106C372.137,279.049,363.134,288,351.988,288z\r\n\t\t M351.988,200.19c-11.058,0-20.053-8.993-20.053-20.083c0-11.094,8.995-20.107,20.053-20.107c11.146,0,20.148,9.014,20.148,20.107\r\n\t\tC372.137,191.197,363.134,200.19,351.988,200.19z M395.947,244.14c-11.105,0-20.101-9.019-20.101-20.107\r\n\t\tc0-11.09,8.995-20.104,20.101-20.104c11.059,0,20.053,9.014,20.053,20.104C416,235.121,407.006,244.14,395.947,244.14z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M466.279,248.866c-21.157-88.471-43.631-135.489-88.454-148.83C368.06,97.135,359.748,96,352.076,96\r\n\t\tc-27.598,0-46.938,14.683-96.08,14.683c-49.174,0-68.502-14.681-96.062-14.683c-7.665,0-15.963,1.135-25.721,4.036\r\n\t\tc-44.869,13.341-67.342,60.359-88.461,148.83c-21.181,88.473-17.334,152.363,7.679,164.289C57.502,415.1,61.662,416,65.885,416\r\n\t\tc21.694,0,45.139-23.838,67.659-52.047C159.198,331.848,165.658,331,243.822,331h24.343c78.147,0,84.628,0.846,110.282,32.953\r\n\t\tc22.526,28.207,45.97,52.004,67.665,52.004c4.226,0,8.384-0.879,12.457-2.823C483.574,401.208,487.421,337.339,466.279,248.866z\r\n\t\t M135.234,263.633C113.594,263.633,96,245.875,96,224.01c0-21.84,17.594-39.643,39.234-39.643\r\n\t\tc21.655,0,39.249,17.803,39.249,39.643C174.483,245.875,156.89,263.633,135.234,263.633z M308.076,244.14\r\n\t\tc-11.058,0-20.076-9.019-20.076-20.107c0-11.09,9.019-20.104,20.076-20.104c11.131,0,20.148,9.014,20.148,20.104\r\n\t\tC328.225,235.121,319.207,244.14,308.076,244.14z M351.988,288c-11.058,0-20.053-8.951-20.053-20.016\r\n\t\tc0-11.157,8.995-20.106,20.053-20.106c11.146,0,20.148,8.949,20.148,20.106C372.137,279.049,363.134,288,351.988,288z\r\n\t\t M351.988,200.19c-11.058,0-20.053-8.993-20.053-20.083c0-11.094,8.995-20.107,20.053-20.107c11.146,0,20.148,9.014,20.148,20.107\r\n\t\tC372.137,191.197,363.134,200.19,351.988,200.19z M395.947,244.14c-11.105,0-20.101-9.019-20.101-20.107\r\n\t\tc0-11.09,8.995-20.104,20.101-20.104c11.059,0,20.053,9.014,20.053,20.104C416,235.121,407.006,244.14,395.947,244.14z" + }, + "children": [] + }] + }] + }] +}; +exports.iosGameControllerB = iosGameControllerB; \ No newline at end of file diff --git a/dist/ionicons/iosGameControllerBOutline.js b/dist/ionicons/iosGameControllerBOutline.js new file mode 100644 index 000000000..18dc161bc --- /dev/null +++ b/dist/ionicons/iosGameControllerBOutline.js @@ -0,0 +1,95 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosGameControllerBOutline = void 0; +var iosGameControllerBOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M308.076,203.929c-11.058,0-20.076,9.014-20.076,20.104c0,11.089,9.019,20.107,20.076,20.107\r\n\t\t\tc11.131,0,20.148-9.019,20.148-20.107C328.225,212.942,319.207,203.929,308.076,203.929z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M308.076,203.929c-11.058,0-20.076,9.014-20.076,20.104c0,11.089,9.019,20.107,20.076,20.107\r\n\t\t\tc11.131,0,20.148-9.019,20.148-20.107C328.225,212.942,319.207,203.929,308.076,203.929z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M351.988,247.878c-11.058,0-20.053,8.949-20.053,20.106c0,11.064,8.995,20.016,20.053,20.016\r\n\t\t\tc11.146,0,20.148-8.951,20.148-20.016C372.137,256.827,363.134,247.878,351.988,247.878z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M351.988,247.878c-11.058,0-20.053,8.949-20.053,20.106c0,11.064,8.995,20.016,20.053,20.016\r\n\t\t\tc11.146,0,20.148-8.951,20.148-20.016C372.137,256.827,363.134,247.878,351.988,247.878z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M135.234,184.367C113.594,184.367,96,202.17,96,224.01c0,21.865,17.594,39.623,39.234,39.623\r\n\t\t\tc21.655,0,39.249-17.758,39.249-39.623C174.483,202.17,156.89,184.367,135.234,184.367z M135.123,243.457\r\n\t\t\tc-10.688,0-19.343-8.721-19.343-19.447c0-10.725,8.655-19.441,19.343-19.441c10.641,0,19.297,8.717,19.297,19.441\r\n\t\t\tC154.42,234.736,145.764,243.457,135.123,243.457z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M135.234,184.367C113.594,184.367,96,202.17,96,224.01c0,21.865,17.594,39.623,39.234,39.623\r\n\t\t\tc21.655,0,39.249-17.758,39.249-39.623C174.483,202.17,156.89,184.367,135.234,184.367z M135.123,243.457\r\n\t\t\tc-10.688,0-19.343-8.721-19.343-19.447c0-10.725,8.655-19.441,19.343-19.441c10.641,0,19.297,8.717,19.297,19.441\r\n\t\t\tC154.42,234.736,145.764,243.457,135.123,243.457z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M351.988,160c-11.058,0-20.053,9.014-20.053,20.107c0,11.09,8.995,20.083,20.053,20.083\r\n\t\t\tc11.146,0,20.148-8.993,20.148-20.083C372.137,169.014,363.134,160,351.988,160z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M351.988,160c-11.058,0-20.053,9.014-20.053,20.107c0,11.09,8.995,20.083,20.053,20.083\r\n\t\t\tc11.146,0,20.148-8.993,20.148-20.083C372.137,169.014,363.134,160,351.988,160z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M395.947,203.929c-11.105,0-20.101,9.014-20.101,20.104c0,11.089,8.995,20.107,20.101,20.107\r\n\t\t\tc11.059,0,20.053-9.019,20.053-20.107C416,212.942,407.006,203.929,395.947,203.929z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M395.947,203.929c-11.105,0-20.101,9.014-20.101,20.104c0,11.089,8.995,20.107,20.101,20.107\r\n\t\t\tc11.059,0,20.053-9.019,20.053-20.107C416,212.942,407.006,203.929,395.947,203.929z" + }, + "children": [] + }] + }] + }] + }, { + "name": "path", + "attribs": { + "d": "M466.279,248.866c-21.157-88.471-43.631-135.489-88.454-148.83C368.06,97.135,359.748,96,352.076,96\r\n\t\tc-27.598,0-46.938,14.683-96.08,14.683c-49.174,0-68.502-14.681-96.062-14.683c-7.665,0-15.963,1.135-25.721,4.036\r\n\t\tc-44.869,13.341-67.342,60.359-88.461,148.83c-21.181,88.473-17.334,152.363,7.679,164.289C57.502,415.1,61.662,416,65.885,416\r\n\t\tc21.694,0,45.139-23.838,67.659-52.047C159.198,331.848,165.658,331,243.822,331h24.343c78.147,0,84.628,0.846,110.282,32.953\r\n\t\tc22.526,28.207,45.97,52.004,67.665,52.004c4.226,0,8.384-0.879,12.457-2.823C483.574,401.208,487.421,337.339,466.279,248.866z\r\n\t\t M451.677,398.716c-1.835,0.876-3.604,1.284-5.564,1.284c-6.022,0-14.077-4.049-23.295-11.708\r\n\t\tc-9.181-7.63-19.307-18.509-31.87-34.239c-12.959-16.22-23.667-28.229-43.528-33.949c-16.647-4.793-38.624-5.104-79.254-5.104\r\n\t\th-24.343c-40.633,0-62.611,0.311-79.259,5.105c-19.853,5.719-30.56,17.685-43.523,33.908\r\n\t\tc-12.556,15.727-22.68,26.627-31.862,34.258c-9.216,7.658-17.27,11.718-23.293,11.718c-1.932,0-3.751-0.415-5.568-1.282\r\n\t\tc-9.556-4.557-22.572-47.673,0.998-146.129c21.387-89.591,42.381-126.777,77.459-137.207c7.633-2.27,14.554-3.372,21.159-3.372\r\n\t\tc9.742,0,18.599,2.317,29.812,5.249c16.07,4.203,36.072,9.435,66.252,9.435c30.148,0,50.146-5.228,66.215-9.429\r\n\t\tc11.229-2.936,20.1-5.254,29.865-5.254c6.618,0,13.551,1.104,21.185,3.371c35.037,10.428,56.03,47.617,77.456,137.214\r\n\t\tC474.244,351.041,461.23,394.16,451.677,398.716z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M466.279,248.866c-21.157-88.471-43.631-135.489-88.454-148.83C368.06,97.135,359.748,96,352.076,96\r\n\t\tc-27.598,0-46.938,14.683-96.08,14.683c-49.174,0-68.502-14.681-96.062-14.683c-7.665,0-15.963,1.135-25.721,4.036\r\n\t\tc-44.869,13.341-67.342,60.359-88.461,148.83c-21.181,88.473-17.334,152.363,7.679,164.289C57.502,415.1,61.662,416,65.885,416\r\n\t\tc21.694,0,45.139-23.838,67.659-52.047C159.198,331.848,165.658,331,243.822,331h24.343c78.147,0,84.628,0.846,110.282,32.953\r\n\t\tc22.526,28.207,45.97,52.004,67.665,52.004c4.226,0,8.384-0.879,12.457-2.823C483.574,401.208,487.421,337.339,466.279,248.866z\r\n\t\t M451.677,398.716c-1.835,0.876-3.604,1.284-5.564,1.284c-6.022,0-14.077-4.049-23.295-11.708\r\n\t\tc-9.181-7.63-19.307-18.509-31.87-34.239c-12.959-16.22-23.667-28.229-43.528-33.949c-16.647-4.793-38.624-5.104-79.254-5.104\r\n\t\th-24.343c-40.633,0-62.611,0.311-79.259,5.105c-19.853,5.719-30.56,17.685-43.523,33.908\r\n\t\tc-12.556,15.727-22.68,26.627-31.862,34.258c-9.216,7.658-17.27,11.718-23.293,11.718c-1.932,0-3.751-0.415-5.568-1.282\r\n\t\tc-9.556-4.557-22.572-47.673,0.998-146.129c21.387-89.591,42.381-126.777,77.459-137.207c7.633-2.27,14.554-3.372,21.159-3.372\r\n\t\tc9.742,0,18.599,2.317,29.812,5.249c16.07,4.203,36.072,9.435,66.252,9.435c30.148,0,50.146-5.228,66.215-9.429\r\n\t\tc11.229-2.936,20.1-5.254,29.865-5.254c6.618,0,13.551,1.104,21.185,3.371c35.037,10.428,56.03,47.617,77.456,137.214\r\n\t\tC474.244,351.041,461.23,394.16,451.677,398.716z" + }, + "children": [] + }] + }] + }] +}; +exports.iosGameControllerBOutline = iosGameControllerBOutline; \ No newline at end of file diff --git a/dist/ionicons/iosGear.js b/dist/ionicons/iosGear.js new file mode 100644 index 000000000..5cb3018c6 --- /dev/null +++ b/dist/ionicons/iosGear.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosGear = void 0; +var iosGear = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M416.349,256.046c-0.001-21.013,13.143-38.948,31.651-46.062c-4.887-20.466-12.957-39.7-23.664-57.139\r\n\tc-6.375,2.836-13.23,4.254-20.082,4.254c-12.621,0-25.238-4.811-34.871-14.442c-14.863-14.863-18.248-36.846-10.18-54.97\r\n\tC341.768,76.973,322.54,68.895,302.074,64C294.971,82.529,277.027,95.69,256,95.69c-21.025,0-38.969-13.161-46.073-31.69\r\n\tc-20.466,4.895-39.693,12.973-57.128,23.688c8.068,18.122,4.683,40.104-10.181,54.97c-9.631,9.631-22.25,14.443-34.871,14.443\r\n\tc-6.854,0-13.706-1.419-20.083-4.255C76.958,170.284,68.886,189.517,64,209.984c18.509,7.112,31.652,25.049,31.652,46.062\r\n\tc0,21.008-13.132,38.936-31.63,46.054c4.898,20.466,12.976,39.692,23.692,57.128c6.361-2.821,13.198-4.232,20.032-4.232\r\n\tc12.622,0,25.239,4.812,34.871,14.443c14.841,14.841,18.239,36.781,10.215,54.889c17.438,10.71,36.664,18.783,57.13,23.673\r\n\tc7.128-18.479,25.046-31.596,46.038-31.596c20.992,0,38.91,13.115,46.037,31.596c20.468-4.89,39.693-12.964,57.132-23.675\r\n\tc-8.023-18.106-4.626-40.046,10.216-54.887c9.629-9.632,22.248-14.444,34.868-14.444c6.836,0,13.67,1.411,20.033,4.233\r\n\tc10.716-17.436,18.794-36.662,23.692-57.128C429.48,294.981,416.349,277.052,416.349,256.046z M256.9,335.9c-44.3,0-80-35.9-80-80\r\n\tc0-44.101,35.7-80,80-80c44.299,0,80,35.899,80,80C336.9,300,301.199,335.9,256.9,335.9z" + }, + "children": [] + }] +}; +exports.iosGear = iosGear; \ No newline at end of file diff --git a/dist/ionicons/iosGearOutline.js b/dist/ionicons/iosGearOutline.js new file mode 100644 index 000000000..9189fbf32 --- /dev/null +++ b/dist/ionicons/iosGearOutline.js @@ -0,0 +1,55 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosGearOutline = void 0; +var iosGearOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256.9,159.9c-25.701,0-49.801,10-67.9,28.1s-28.1,42.199-28.1,67.9c0,25.699,10,49.699,28.1,67.9\r\n\t\t\tc18.1,18.1,42.301,28.1,67.9,28.1c25.699,0,49.799-10,67.9-28.1c18.1-18.102,28.1-42.201,28.1-67.9c0-25.701-10-49.701-28.1-67.9\r\n\t\t\tC306.699,169.9,282.6,159.9,256.9,159.9z M256.9,335.9c-44.301,0-80-35.9-80-80c0-44.101,35.699-80,80-80\r\n\t\t\tc44.299,0,80,35.899,80,80C336.9,300,301.199,335.9,256.9,335.9z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256.9,159.9c-25.701,0-49.801,10-67.9,28.1s-28.1,42.199-28.1,67.9c0,25.699,10,49.699,28.1,67.9\r\n\t\t\tc18.1,18.1,42.301,28.1,67.9,28.1c25.699,0,49.799-10,67.9-28.1c18.1-18.102,28.1-42.201,28.1-67.9c0-25.701-10-49.701-28.1-67.9\r\n\t\t\tC306.699,169.9,282.6,159.9,256.9,159.9z M256.9,335.9c-44.301,0-80-35.9-80-80c0-44.101,35.699-80,80-80\r\n\t\t\tc44.299,0,80,35.899,80,80C336.9,300,301.199,335.9,256.9,335.9z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M201.787,82.828c4.458,6.628,10.119,12.406,16.775,17.069c11.012,7.715,23.957,11.793,37.438,11.793\r\n\t\t\tc13.481,0,26.428-4.078,37.439-11.793c6.654-4.663,12.316-10.441,16.773-17.068c10.326,3.228,20.334,7.378,29.927,12.411\r\n\t\t\tc-1.532,7.84-1.614,15.93-0.203,23.933c2.333,13.235,8.604,25.269,18.133,34.798c12.335,12.336,28.737,19.129,46.185,19.129\r\n\t\t\tc4.242,0,8.424-0.399,12.52-1.195c5.032,9.6,9.181,19.613,12.405,29.947c-6.622,4.46-12.396,10.121-17.054,16.776\r\n\t\t\tc-7.705,11.008-11.777,23.946-11.776,37.418c0,13.467,4.069,26.401,11.768,37.406c4.653,6.651,10.421,12.312,17.036,16.771\r\n\t\t\tc-3.232,10.34-7.387,20.354-12.428,29.957c-4.081-0.789-8.246-1.187-12.472-1.187c-17.448,0-33.85,6.795-46.183,19.131\r\n\t\t\tc-9.515,9.514-15.781,21.527-18.123,34.74c-1.415,7.988-1.343,16.065,0.176,23.895c-9.607,5.04-19.627,9.192-29.967,12.421\r\n\t\t\tc-4.461-6.61-10.121-12.374-16.771-17.022c-11-7.689-23.928-11.754-37.386-11.754c-13.457,0-26.385,4.064-37.385,11.755\r\n\t\t\tc-6.649,4.648-12.31,10.412-16.771,17.021c-10.339-3.228-20.359-7.381-29.966-12.42c1.519-7.829,1.591-15.906,0.176-23.895\r\n\t\t\tc-2.342-13.214-8.608-25.228-18.123-34.741c-12.335-12.336-28.737-19.13-46.185-19.13c-4.226,0-8.39,0.396-12.471,1.187\r\n\t\t\tc-5.04-9.602-9.195-19.618-12.428-29.958c6.615-4.46,12.383-10.119,17.036-16.771c7.699-11.004,11.769-23.939,11.769-37.408\r\n\t\t\tc0-13.471-4.072-26.41-11.777-37.418c-4.658-6.654-10.432-12.316-17.054-16.776c3.225-10.333,7.372-20.346,12.405-29.946\r\n\t\t\tc4.096,0.796,8.277,1.196,12.521,1.196c17.446,0,33.849-6.794,46.185-19.13c9.529-9.53,15.799-21.563,18.133-34.799\r\n\t\t\tc1.411-8.003,1.33-16.093-0.203-23.932C181.455,90.207,191.461,86.057,201.787,82.828 M302.074,64\r\n\t\t\tC294.971,82.529,277.027,95.69,256,95.69c-21.025,0-38.969-13.161-46.073-31.69c-20.466,4.895-39.692,12.973-57.128,23.688\r\n\t\t\tc8.068,18.122,4.682,40.104-10.182,54.97c-9.631,9.631-22.25,14.443-34.87,14.443c-6.854,0-13.706-1.419-20.083-4.255\r\n\t\t\tC76.958,170.284,68.887,189.517,64,209.984c18.51,7.112,31.652,25.049,31.652,46.062c0,21.008-13.133,38.936-31.631,46.054\r\n\t\t\tc4.898,20.466,12.977,39.692,23.693,57.128c6.36-2.821,13.197-4.232,20.031-4.232c12.621,0,25.238,4.812,34.871,14.443\r\n\t\t\tc14.841,14.841,18.238,36.781,10.215,54.889c17.438,10.71,36.664,18.783,57.131,23.673c7.127-18.479,25.046-31.596,46.037-31.596\r\n\t\t\tc20.992,0,38.91,13.115,46.037,31.596c20.468-4.89,39.693-12.964,57.132-23.675c-8.023-18.106-4.626-40.046,10.216-54.887\r\n\t\t\tc9.629-9.632,22.248-14.444,34.868-14.444c6.836,0,13.67,1.411,20.033,4.233c10.716-17.436,18.794-36.662,23.692-57.128\r\n\t\t\tc-18.498-7.118-31.63-25.048-31.63-46.054c-0.001-21.013,13.143-38.948,31.651-46.062c-4.887-20.466-12.957-39.7-23.664-57.139\r\n\t\t\tc-6.375,2.836-13.23,4.254-20.082,4.254c-12.621,0-25.238-4.811-34.871-14.442c-14.863-14.863-18.248-36.846-10.18-54.97\r\n\t\t\tC341.768,76.973,322.54,68.895,302.074,64L302.074,64z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M201.787,82.828c4.458,6.628,10.119,12.406,16.775,17.069c11.012,7.715,23.957,11.793,37.438,11.793\r\n\t\t\tc13.481,0,26.428-4.078,37.439-11.793c6.654-4.663,12.316-10.441,16.773-17.068c10.326,3.228,20.334,7.378,29.927,12.411\r\n\t\t\tc-1.532,7.84-1.614,15.93-0.203,23.933c2.333,13.235,8.604,25.269,18.133,34.798c12.335,12.336,28.737,19.129,46.185,19.129\r\n\t\t\tc4.242,0,8.424-0.399,12.52-1.195c5.032,9.6,9.181,19.613,12.405,29.947c-6.622,4.46-12.396,10.121-17.054,16.776\r\n\t\t\tc-7.705,11.008-11.777,23.946-11.776,37.418c0,13.467,4.069,26.401,11.768,37.406c4.653,6.651,10.421,12.312,17.036,16.771\r\n\t\t\tc-3.232,10.34-7.387,20.354-12.428,29.957c-4.081-0.789-8.246-1.187-12.472-1.187c-17.448,0-33.85,6.795-46.183,19.131\r\n\t\t\tc-9.515,9.514-15.781,21.527-18.123,34.74c-1.415,7.988-1.343,16.065,0.176,23.895c-9.607,5.04-19.627,9.192-29.967,12.421\r\n\t\t\tc-4.461-6.61-10.121-12.374-16.771-17.022c-11-7.689-23.928-11.754-37.386-11.754c-13.457,0-26.385,4.064-37.385,11.755\r\n\t\t\tc-6.649,4.648-12.31,10.412-16.771,17.021c-10.339-3.228-20.359-7.381-29.966-12.42c1.519-7.829,1.591-15.906,0.176-23.895\r\n\t\t\tc-2.342-13.214-8.608-25.228-18.123-34.741c-12.335-12.336-28.737-19.13-46.185-19.13c-4.226,0-8.39,0.396-12.471,1.187\r\n\t\t\tc-5.04-9.602-9.195-19.618-12.428-29.958c6.615-4.46,12.383-10.119,17.036-16.771c7.699-11.004,11.769-23.939,11.769-37.408\r\n\t\t\tc0-13.471-4.072-26.41-11.777-37.418c-4.658-6.654-10.432-12.316-17.054-16.776c3.225-10.333,7.372-20.346,12.405-29.946\r\n\t\t\tc4.096,0.796,8.277,1.196,12.521,1.196c17.446,0,33.849-6.794,46.185-19.13c9.529-9.53,15.799-21.563,18.133-34.799\r\n\t\t\tc1.411-8.003,1.33-16.093-0.203-23.932C181.455,90.207,191.461,86.057,201.787,82.828 M302.074,64\r\n\t\t\tC294.971,82.529,277.027,95.69,256,95.69c-21.025,0-38.969-13.161-46.073-31.69c-20.466,4.895-39.692,12.973-57.128,23.688\r\n\t\t\tc8.068,18.122,4.682,40.104-10.182,54.97c-9.631,9.631-22.25,14.443-34.87,14.443c-6.854,0-13.706-1.419-20.083-4.255\r\n\t\t\tC76.958,170.284,68.887,189.517,64,209.984c18.51,7.112,31.652,25.049,31.652,46.062c0,21.008-13.133,38.936-31.631,46.054\r\n\t\t\tc4.898,20.466,12.977,39.692,23.693,57.128c6.36-2.821,13.197-4.232,20.031-4.232c12.621,0,25.238,4.812,34.871,14.443\r\n\t\t\tc14.841,14.841,18.238,36.781,10.215,54.889c17.438,10.71,36.664,18.783,57.131,23.673c7.127-18.479,25.046-31.596,46.037-31.596\r\n\t\t\tc20.992,0,38.91,13.115,46.037,31.596c20.468-4.89,39.693-12.964,57.132-23.675c-8.023-18.106-4.626-40.046,10.216-54.887\r\n\t\t\tc9.629-9.632,22.248-14.444,34.868-14.444c6.836,0,13.67,1.411,20.033,4.233c10.716-17.436,18.794-36.662,23.692-57.128\r\n\t\t\tc-18.498-7.118-31.63-25.048-31.63-46.054c-0.001-21.013,13.143-38.948,31.651-46.062c-4.887-20.466-12.957-39.7-23.664-57.139\r\n\t\t\tc-6.375,2.836-13.23,4.254-20.082,4.254c-12.621,0-25.238-4.811-34.871-14.442c-14.863-14.863-18.248-36.846-10.18-54.97\r\n\t\t\tC341.768,76.973,322.54,68.895,302.074,64L302.074,64z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.iosGearOutline = iosGearOutline; \ No newline at end of file diff --git a/dist/ionicons/iosGlasses.js b/dist/ionicons/iosGlasses.js new file mode 100644 index 000000000..ec670655b --- /dev/null +++ b/dist/ionicons/iosGlasses.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosGlasses = void 0; +var iosGlasses = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M465.4,247c-2.2-22-12.4-43-28.9-58.4c-17.1-15.9-39.3-24.7-62.7-24.7c-41.5,0-77.3,27.4-88.5,67c-7-7-18.5-11.7-29.3-11.7\r\n\tc-10.8,0-22.3,4.7-29.3,11.7c-11.2-39.6-47-67-88.5-67c-23.3,0-45.6,8.7-62.7,24.6C59,204,48.8,225,46.6,247H32v18h14.6\r\n\tc2.2,22,12.4,43,28.9,58.4c17.1,15.9,39.3,24.7,62.7,24.7c50.8,0,92.1-41.2,92.1-92c0-0.1,0-0.1,0-0.1h0c0-9.9,11.5-21.6,25.7-21.6\r\n\ts25.7,11.7,25.7,21.6h0c0,0,0,0,0,0.1c0,50.8,41.3,92,92.1,92c23.3,0,45.6-8.7,62.7-24.7c16.5-15.4,26.7-36.5,28.9-58.5H480v-18\r\n\tH465.4z" + }, + "children": [] + }] +}; +exports.iosGlasses = iosGlasses; \ No newline at end of file diff --git a/dist/ionicons/iosGlassesOutline.js b/dist/ionicons/iosGlassesOutline.js new file mode 100644 index 000000000..fcaa114ec --- /dev/null +++ b/dist/ionicons/iosGlassesOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosGlassesOutline = void 0; +var iosGlassesOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M465.4,247c-2.2-22-12.4-43-28.9-58.4c-17.1-15.9-39.3-24.7-62.7-24.7c-41.5,0-77.3,27.4-88.5,67c-7-7-18.5-11.7-29.3-11.7\r\n\tc-10.8,0-22.3,4.7-29.3,11.7c-11.2-39.6-47-67-88.5-67c-23.3,0-45.6,8.7-62.7,24.6C59,204,48.8,225,46.6,247H32v18h14.6\r\n\tc2.2,22,12.4,43,28.9,58.4c17.1,15.9,39.3,24.7,62.7,24.7c50.8,0,92.1-41.2,92.1-92c0-0.1,0-0.1,0-0.1h0c0-9.9,11.5-21.6,25.7-21.6\r\n\ts25.7,11.7,25.7,21.6h0c0,0,0,0,0,0.1c0,50.8,41.3,92,92.1,92c23.3,0,45.6-8.7,62.7-24.7c16.5-15.4,26.7-36.5,28.9-58.5H480v-18\r\n\tH465.4z M373.8,333c-42.5,0-77-34.6-77-77c0-42.5,34.6-77,77-77c42.5,0,77,34.6,77,77C450.8,298.5,416.3,333,373.8,333z M138.2,333\r\n\tc-42.5,0-77-34.6-77-77c0-42.5,34.6-77,77-77c42.5,0,77,34.6,77,77C215.2,298.5,180.7,333,138.2,333z" + }, + "children": [] + }] +}; +exports.iosGlassesOutline = iosGlassesOutline; \ No newline at end of file diff --git a/dist/ionicons/iosGridView.js b/dist/ionicons/iosGridView.js new file mode 100644 index 000000000..cae25a582 --- /dev/null +++ b/dist/ionicons/iosGridView.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosGridView = void 0; +var iosGridView = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "192", + "y": "192", + "width": "128", + "height": "128" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "192", + "y": "192", + "width": "128", + "height": "128" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M64,64v384h384V64H64z M416,192h-80v128h80v16h-80v80h-16v-80H192v80h-16v-80H96v-16h80V192H96v-16h80V96h16v80h128V96h16\r\n\t\tv80h80V192z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M64,64v384h384V64H64z M416,192h-80v128h80v16h-80v80h-16v-80H192v80h-16v-80H96v-16h80V192H96v-16h80V96h16v80h128V96h16\r\n\t\tv80h80V192z" + }, + "children": [] + }] + }] + }] +}; +exports.iosGridView = iosGridView; \ No newline at end of file diff --git a/dist/ionicons/iosGridViewOutline.js b/dist/ionicons/iosGridViewOutline.js new file mode 100644 index 000000000..b6b556dd1 --- /dev/null +++ b/dist/ionicons/iosGridViewOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosGridViewOutline = void 0; +var iosGridViewOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M448,192v-16H336V64h-16v112H192V64h-16v112H64v16h112v128H64v16h112v112h16V336h128v112h16V336h112v-16H336V192H448z\r\n\t M320,320H192V192h128V320z" + }, + "children": [] + }] +}; +exports.iosGridViewOutline = iosGridViewOutline; \ No newline at end of file diff --git a/dist/ionicons/iosHeart.js b/dist/ionicons/iosHeart.js new file mode 100644 index 000000000..55b373869 --- /dev/null +++ b/dist/ionicons/iosHeart.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosHeart = void 0; +var iosHeart = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M359.385,80C319.966,80,277.171,97.599,256,132.8C234.83,97.599,192.034,80,152.615,80C83.647,80,32,123.238,32,195.779\r\n\tc0,31.288,12.562,71.924,40.923,105.657c28.359,33.735,45.229,51.7,100.153,88C228,425.738,256,432,256,432s28-6.262,82.924-42.564\r\n\tc54.923-36.3,71.794-54.265,100.153-88C467.438,267.703,480,227.067,480,195.779C480,123.238,428.353,80,359.385,80z" + }, + "children": [] + }] +}; +exports.iosHeart = iosHeart; \ No newline at end of file diff --git a/dist/ionicons/iosHeartOutline.js b/dist/ionicons/iosHeartOutline.js new file mode 100644 index 000000000..da241b078 --- /dev/null +++ b/dist/ionicons/iosHeartOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosHeartOutline = void 0; +var iosHeartOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M359.385,80C319.966,80,277.171,97.599,256,132.8C234.83,97.599,192.034,80,152.615,80C83.647,80,32,123.238,32,195.779\r\n\tc0,31.288,12.562,71.924,40.923,105.657c28.359,33.735,45.229,51.7,100.153,88C228,425.738,256,432,256,432s28-6.262,82.924-42.564\r\n\tc54.923-36.3,71.794-54.265,100.153-88C467.438,267.703,480,227.067,480,195.779C480,123.238,428.353,80,359.385,80z\r\n\t M426.83,291.141c-26.852,31.94-42.18,48.895-96.729,84.947c-40.237,26.596-65.252,36.301-74.102,39.233\r\n\tc-8.85-2.933-33.864-12.639-74.102-39.233c-54.548-36.052-69.876-53.006-96.729-84.948c-12.065-14.351-21.857-31.274-28.316-48.943\r\n\tC51.062,226.355,48,210.304,48,195.779c0-30.284,10.131-55.643,29.297-73.335c9.14-8.437,20.158-14.992,32.752-19.484\r\n\tC122.994,98.341,137.315,96,152.615,96c38.018,0,73.217,17.682,89.674,45.046L256,163.844l13.711-22.798\r\n\tC286.169,113.682,321.368,96,359.385,96c15.3,0,29.621,2.341,42.566,6.959c12.594,4.493,23.612,11.048,32.752,19.484\r\n\tC453.869,140.136,464,165.495,464,195.779c0,14.525-3.062,30.576-8.854,46.418C448.688,259.865,438.896,276.789,426.83,291.141z" + }, + "children": [] + }] +}; +exports.iosHeartOutline = iosHeartOutline; \ No newline at end of file diff --git a/dist/ionicons/iosHelp.js b/dist/ionicons/iosHelp.js new file mode 100644 index 000000000..2b7852b7c --- /dev/null +++ b/dist/ionicons/iosHelp.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosHelp = void 0; +var iosHelp = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48C141.1,48,48,141.1,48,256c0,114.9,93.1,208,208,208c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48z\r\n\t\t M260.3,366c-9.4,0-17-7.5-17-16.9c0-9.3,7.6-16.8,17-16.8c9.4,0,17,7.5,17,16.8C277.3,358.5,269.7,366,260.3,366z M294.1,250.7\r\n\t\tc-22.8,22.5-22.2,27.4-23.3,53.3h-19c1.1-28.5,7.5-43.7,30.1-64.5c11-10.3,19.4-22.7,19.4-38.1c0-23.6-19.4-39.9-42.6-39.9\r\n\t\tc-32.4,0-48.5,16.4-47.9,46.4H192c0.3-42,24.4-62.1,67.6-62.1c33,0,60.4,20.4,60.4,54.6C320,222.3,309.3,236.6,294.1,250.7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48C141.1,48,48,141.1,48,256c0,114.9,93.1,208,208,208c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48z\r\n\t\t M260.3,366c-9.4,0-17-7.5-17-16.9c0-9.3,7.6-16.8,17-16.8c9.4,0,17,7.5,17,16.8C277.3,358.5,269.7,366,260.3,366z M294.1,250.7\r\n\t\tc-22.8,22.5-22.2,27.4-23.3,53.3h-19c1.1-28.5,7.5-43.7,30.1-64.5c11-10.3,19.4-22.7,19.4-38.1c0-23.6-19.4-39.9-42.6-39.9\r\n\t\tc-32.4,0-48.5,16.4-47.9,46.4H192c0.3-42,24.4-62.1,67.6-62.1c33,0,60.4,20.4,60.4,54.6C320,222.3,309.3,236.6,294.1,250.7z" + }, + "children": [] + }] + }] + }] +}; +exports.iosHelp = iosHelp; \ No newline at end of file diff --git a/dist/ionicons/iosHelpEmpty.js b/dist/ionicons/iosHelpEmpty.js new file mode 100644 index 000000000..c9f8231dd --- /dev/null +++ b/dist/ionicons/iosHelpEmpty.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosHelpEmpty = void 0; +var iosHelpEmpty = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M260.3,366c-9.4,0-17-7.5-17-16.9c0-9.3,7.6-16.8,17-16.8c9.4,0,17,7.5,17,16.8C277.3,358.5,269.7,366,260.3,366z\r\n\t\t M294.1,250.7c-22.8,22.5-22.2,27.4-23.3,53.3h-19c1.1-28.5,7.5-43.7,30.1-64.5c11-10.3,19.4-22.7,19.4-38.1\r\n\t\tc0-23.6-19.4-39.9-42.6-39.9c-32.4,0-48.5,16.4-47.9,46.4H192c0.3-42,24.4-62.1,67.6-62.1c33,0,60.4,20.4,60.4,54.6\r\n\t\tC320,222.3,309.3,236.6,294.1,250.7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M260.3,366c-9.4,0-17-7.5-17-16.9c0-9.3,7.6-16.8,17-16.8c9.4,0,17,7.5,17,16.8C277.3,358.5,269.7,366,260.3,366z\r\n\t\t M294.1,250.7c-22.8,22.5-22.2,27.4-23.3,53.3h-19c1.1-28.5,7.5-43.7,30.1-64.5c11-10.3,19.4-22.7,19.4-38.1\r\n\t\tc0-23.6-19.4-39.9-42.6-39.9c-32.4,0-48.5,16.4-47.9,46.4H192c0.3-42,24.4-62.1,67.6-62.1c33,0,60.4,20.4,60.4,54.6\r\n\t\tC320,222.3,309.3,236.6,294.1,250.7z" + }, + "children": [] + }] + }] + }] +}; +exports.iosHelpEmpty = iosHelpEmpty; \ No newline at end of file diff --git a/dist/ionicons/iosHelpOutline.js b/dist/ionicons/iosHelpOutline.js new file mode 100644 index 000000000..940f0a21f --- /dev/null +++ b/dist/ionicons/iosHelpOutline.js @@ -0,0 +1,75 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosHelpOutline = void 0; +var iosHelpOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48C141.1,48,48,141.1,48,256c0,114.9,93.1,208,208,208c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48z\r\n\t\t\t\t M256,446.7c-105.1,0-190.7-85.5-190.7-190.7c0-105.1,85.5-190.7,190.7-190.7c105.1,0,190.7,85.5,190.7,190.7\r\n\t\t\t\tC446.7,361.1,361.1,446.7,256,446.7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48C141.1,48,48,141.1,48,256c0,114.9,93.1,208,208,208c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48z\r\n\t\t\t\t M256,446.7c-105.1,0-190.7-85.5-190.7-190.7c0-105.1,85.5-190.7,190.7-190.7c105.1,0,190.7,85.5,190.7,190.7\r\n\t\t\t\tC446.7,361.1,361.1,446.7,256,446.7z" + }, + "children": [] + }] + }] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M259.6,146c-43.2,0-67.3,20.3-67.6,62.2h18.8c-0.6-30.4,15.5-46.5,47.9-46.5c23.2,0,42.6,16.2,42.6,39.8\r\n\t\t\tc0,15.3-8.3,27.7-19.4,38.1c-22.6,20.8-29,36-30.1,64.5h19c1.1-25.8,0.5-30.7,23.3-53.3c15.2-14.2,25.9-28.3,25.9-50.2\r\n\t\t\tC320,166.4,292.6,146,259.6,146z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M259.6,146c-43.2,0-67.3,20.3-67.6,62.2h18.8c-0.6-30.4,15.5-46.5,47.9-46.5c23.2,0,42.6,16.2,42.6,39.8\r\n\t\t\tc0,15.3-8.3,27.7-19.4,38.1c-22.6,20.8-29,36-30.1,64.5h19c1.1-25.8,0.5-30.7,23.3-53.3c15.2-14.2,25.9-28.3,25.9-50.2\r\n\t\t\tC320,166.4,292.6,146,259.6,146z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M260.3,332.3c-9.4,0-17,7.5-17,16.8c0,9.3,7.6,16.9,17,16.9c9.4,0,17-7.5,17-16.9C277.3,339.8,269.7,332.3,260.3,332.3z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M260.3,332.3c-9.4,0-17,7.5-17,16.8c0,9.3,7.6,16.9,17,16.9c9.4,0,17-7.5,17-16.9C277.3,339.8,269.7,332.3,260.3,332.3z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.iosHelpOutline = iosHelpOutline; \ No newline at end of file diff --git a/dist/ionicons/iosHome.js b/dist/ionicons/iosHome.js new file mode 100644 index 000000000..59ab8fe17 --- /dev/null +++ b/dist/ionicons/iosHome.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosHome = void 0; +var iosHome = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,112L96,240v208h112V320h96v128h112V240L256,112z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,112L96,240v208h112V320h96v128h112V240L256,112z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,64l-96,76.8V96H96v95.999l-32,25.499l11.51,11.384L256,84.49l180.49,144.393L448,217.498L256,64z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,64l-96,76.8V96H96v95.999l-32,25.499l11.51,11.384L256,84.49l180.49,144.393L448,217.498L256,64z" + }, + "children": [] + }] + }] + }] +}; +exports.iosHome = iosHome; \ No newline at end of file diff --git a/dist/ionicons/iosHomeOutline.js b/dist/ionicons/iosHomeOutline.js new file mode 100644 index 000000000..5e70d67af --- /dev/null +++ b/dist/ionicons/iosHomeOutline.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosHomeOutline = void 0; +var iosHomeOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,112L96,240v208h112V320h96v128h112V240L256,112z M400,432h-80V304H192v128h-80V247.69l144-115.2l144,115.2V432z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,112L96,240v208h112V320h96v128h112V240L256,112z M400,432h-80V304H192v128h-80V247.69l144-115.2l144,115.2V432z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,64l-96,76.8V96H96v95.999l-32,25.499l11.51,11.384L256,84.49l180.49,144.393L448,217.498L256,64z M144,153.599\r\n\t\tl-32,25.6V112h32V153.599z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,64l-96,76.8V96H96v95.999l-32,25.499l11.51,11.384L256,84.49l180.49,144.393L448,217.498L256,64z M144,153.599\r\n\t\tl-32,25.6V112h32V153.599z" + }, + "children": [] + }] + }] + }] +}; +exports.iosHomeOutline = iosHomeOutline; \ No newline at end of file diff --git a/dist/ionicons/iosInfinite.js b/dist/ionicons/iosInfinite.js new file mode 100644 index 000000000..6006d9e51 --- /dev/null +++ b/dist/ionicons/iosInfinite.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosInfinite = void 0; +var iosInfinite = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M456.821,182.377C436.782,162.788,410.062,152,381.585,152c-28.477,0-55.195,10.788-75.21,30.354l-39.106,37.885\r\n\tl25.06,24.689l38.843-37.769c13.458-13.095,31.321-20.307,50.299-20.307c18.979,0,36.841,7.212,50.282,20.291\r\n\tc13.363,13.077,20.712,30.468,20.693,48.97c-0.019,18.443-7.363,35.75-20.677,48.728c-13.458,13.095-31.32,20.307-50.299,20.307\r\n\tc-18.978,0-36.841-7.212-50.291-20.299L205.646,182.359C185.491,162.782,158.778,152,130.427,152\r\n\tc-28.477,0-55.195,10.788-75.23,30.373C35.103,201.986,24.023,228.132,24,255.993c-0.024,27.822,11.055,53.973,31.192,73.63\r\n\tC75.232,349.212,101.951,360,130.427,360c28.475,0,55.194-10.788,75.223-30.363l38.994-37.909l-25.088-24.502l-38.829,37.615\r\n\tc-13.458,13.095-31.321,20.307-50.3,20.307c-18.977,0-36.839-7.212-50.28-20.291c-13.364-13.077-20.714-30.469-20.694-48.971\r\n\tc0.019-18.443,7.363-35.749,20.678-48.727c13.458-13.095,31.32-20.307,50.297-20.307c18.979,0,36.842,7.212,50.292,20.299\r\n\tl125.532,122.489C326.406,349.218,353.119,360,381.47,360c28.476,0,55.194-10.788,75.213-30.355\r\n\tc20.179-19.573,31.301-45.727,31.317-73.64C488.017,228.167,476.942,202.018,456.821,182.377z" + }, + "children": [] + }] +}; +exports.iosInfinite = iosInfinite; \ No newline at end of file diff --git a/dist/ionicons/iosInfiniteOutline.js b/dist/ionicons/iosInfiniteOutline.js new file mode 100644 index 000000000..825093e1f --- /dev/null +++ b/dist/ionicons/iosInfiniteOutline.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosInfiniteOutline = void 0; +var iosInfiniteOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M451.229,188.098C432.682,169.967,407.95,160,381.585,160c-26.363,0-51.095,9.967-69.642,28.098l-42.229,41.187\r\n\t\tl13.649,13.447l42.229-41.306c14.933-14.529,34.764-22.573,55.878-22.573c21.113,0,40.946,8.044,55.878,22.573\r\n\t\tc30.797,30.139,30.797,79.13,0,109.148c-14.932,14.529-34.765,22.573-55.878,22.573c-21.114,0-40.945-8.044-55.878-22.573\r\n\t\tL200.071,188.098C181.406,169.967,156.675,160,130.427,160c-26.363,0-51.095,9.967-69.643,28.098\r\n\t\tC41.615,206.809,32.021,231.441,32,256c-0.021,24.611,9.573,49.149,28.784,67.902C79.332,342.032,104.063,352,130.427,352\r\n\t\tc26.365,0,51.095-9.968,69.645-28.098l42.111-41.186l-13.647-13.329l-42.229,41.187c-14.932,14.529-34.764,22.573-55.879,22.573\r\n\t\tc-21.113,0-40.944-8.044-55.876-22.573c-30.799-30.14-30.799-79.13,0-109.148c14.932-14.529,34.763-22.573,55.876-22.573\r\n\t\tc21.115,0,40.947,8.044,55.879,22.573l125.52,122.477C330.49,342.032,355.222,352,381.47,352c26.363,0,51.095-9.968,69.643-28.098\r\n\t\tC470.361,305.23,479.985,280.6,480,256C480.015,231.399,470.42,206.83,451.229,188.098z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M451.229,188.098C432.682,169.967,407.95,160,381.585,160c-26.363,0-51.095,9.967-69.642,28.098l-42.229,41.187\r\n\t\tl13.649,13.447l42.229-41.306c14.933-14.529,34.764-22.573,55.878-22.573c21.113,0,40.946,8.044,55.878,22.573\r\n\t\tc30.797,30.139,30.797,79.13,0,109.148c-14.932,14.529-34.765,22.573-55.878,22.573c-21.114,0-40.945-8.044-55.878-22.573\r\n\t\tL200.071,188.098C181.406,169.967,156.675,160,130.427,160c-26.363,0-51.095,9.967-69.643,28.098\r\n\t\tC41.615,206.809,32.021,231.441,32,256c-0.021,24.611,9.573,49.149,28.784,67.902C79.332,342.032,104.063,352,130.427,352\r\n\t\tc26.365,0,51.095-9.968,69.645-28.098l42.111-41.186l-13.647-13.329l-42.229,41.187c-14.932,14.529-34.764,22.573-55.879,22.573\r\n\t\tc-21.113,0-40.944-8.044-55.876-22.573c-30.799-30.14-30.799-79.13,0-109.148c14.932-14.529,34.763-22.573,55.876-22.573\r\n\t\tc21.115,0,40.947,8.044,55.879,22.573l125.52,122.477C330.49,342.032,355.222,352,381.47,352c26.363,0,51.095-9.968,69.643-28.098\r\n\t\tC470.361,305.23,479.985,280.6,480,256C480.015,231.399,470.42,206.83,451.229,188.098z" + }, + "children": [] + }] + }] + }] +}; +exports.iosInfiniteOutline = iosInfiniteOutline; \ No newline at end of file diff --git a/dist/ionicons/iosInformation.js b/dist/ionicons/iosInformation.js new file mode 100644 index 000000000..39e7045fb --- /dev/null +++ b/dist/ionicons/iosInformation.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosInformation = void 0; +var iosInformation = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48C141.1,48,48,141.1,48,256c0,114.9,93.1,208,208,208c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48z\r\n\t\t M251.5,152c11.1,0,20,9,20,20s-9,20-20,20c-11,0-20-9-20-20S240.4,152,251.5,152z M288,352h-64v-8h16V224h-16v-8h48v128h16V352z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48C141.1,48,48,141.1,48,256c0,114.9,93.1,208,208,208c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48z\r\n\t\t M251.5,152c11.1,0,20,9,20,20s-9,20-20,20c-11,0-20-9-20-20S240.4,152,251.5,152z M288,352h-64v-8h16V224h-16v-8h48v128h16V352z" + }, + "children": [] + }] + }] + }] +}; +exports.iosInformation = iosInformation; \ No newline at end of file diff --git a/dist/ionicons/iosInformationEmpty.js b/dist/ionicons/iosInformationEmpty.js new file mode 100644 index 000000000..91397f60b --- /dev/null +++ b/dist/ionicons/iosInformationEmpty.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosInformationEmpty = void 0; +var iosInformationEmpty = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "cx": "251.5", + "cy": "172", + "r": "20" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "251.5", + "cy": "172", + "r": "20" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "272,344 272,216 224,216 224,224 240,224 240,344 224,344 224,352 288,352 288,344 \t\t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "272,344 272,216 224,216 224,224 240,224 240,344 224,344 224,352 288,352 288,344 \t\t" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.iosInformationEmpty = iosInformationEmpty; \ No newline at end of file diff --git a/dist/ionicons/iosInformationOutline.js b/dist/ionicons/iosInformationOutline.js new file mode 100644 index 000000000..79fe486b4 --- /dev/null +++ b/dist/ionicons/iosInformationOutline.js @@ -0,0 +1,71 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosInformationOutline = void 0; +var iosInformationOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "cx": "251.5", + "cy": "172", + "r": "20" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "251.5", + "cy": "172", + "r": "20" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "272,344 272,216 224,216 224,224 240,224 240,344 224,344 224,352 288,352 288,344 \t\t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "272,344 272,216 224,216 224,224 240,224 240,344 224,344 224,352 288,352 288,344 \t\t" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48C141.1,48,48,141.1,48,256c0,114.9,93.1,208,208,208c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48z\r\n\t\t\t M256,446.7c-105.1,0-190.7-85.5-190.7-190.7c0-105.1,85.5-190.7,190.7-190.7c105.1,0,190.7,85.5,190.7,190.7\r\n\t\t\tC446.7,361.1,361.1,446.7,256,446.7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48C141.1,48,48,141.1,48,256c0,114.9,93.1,208,208,208c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48z\r\n\t\t\t M256,446.7c-105.1,0-190.7-85.5-190.7-190.7c0-105.1,85.5-190.7,190.7-190.7c105.1,0,190.7,85.5,190.7,190.7\r\n\t\t\tC446.7,361.1,361.1,446.7,256,446.7z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.iosInformationOutline = iosInformationOutline; \ No newline at end of file diff --git a/dist/ionicons/iosIonicOutline.js b/dist/ionicons/iosIonicOutline.js new file mode 100644 index 000000000..cae945771 --- /dev/null +++ b/dist/ionicons/iosIonicOutline.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosIonicOutline = void 0; +var iosIonicOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M425.5,134.8c4.7-5.9,7.5-13.5,7.5-21.6c0-19.2-15.6-34.9-34.8-34.9c-8.2,0-15.7,2.8-21.6,7.5c-34-24.2-75-37.8-119.9-37.8\r\n\t\tC141.8,48,48,140.5,48,255.6C48,370.7,141.7,464,256.6,464C371.5,464,464,370.7,464,255.6C464,210.6,449.7,168.9,425.5,134.8z\r\n\t\t M398,91.3c12.2,0,22,9.9,22,22c0,12.2-9.9,22-22,22c-12.2,0-22-9.9-22-22C376,101.2,385.8,91.3,398,91.3z M391.8,391.7\r\n\t\tc-17.6,17.6-38.2,31.6-61.1,41.3c-23.7,10-48.2,15.2-74.2,15.2c-25.9,0-51.7-5.1-75.4-15.2c-22.9-9.7-43.4-23.5-61.1-41.3\r\n\t\tc-17.6-17.6-31.5-38.3-41.2-61.2c-10-23.7-15.1-48.9-15.1-74.9c0-25.9,5.1-51.2,15.1-74.9c9.7-22.9,23.5-43.5,41.2-61.2\r\n\t\ts38.2-31.6,61.1-41.3c23.7-10,49.4-14.1,75.4-14.1c25.9,0,50.5,4,74.2,14.1c12.7,5.4,24.7,12.1,35.9,20c-2.1,4.5-3.3,9.5-3.3,14.9\r\n\t\tc0,19.2,15.6,34.9,34.8,34.9c5.3,0,10.3-1.2,14.9-3.3c7.9,11.2,14.6,23.2,20,36c10,23.7,15.1,48.9,15.1,74.9\r\n\t\tc0,25.9-5.1,51.2-15.1,74.9C423.3,353.4,409.5,374,391.8,391.7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M425.5,134.8c4.7-5.9,7.5-13.5,7.5-21.6c0-19.2-15.6-34.9-34.8-34.9c-8.2,0-15.7,2.8-21.6,7.5c-34-24.2-75-37.8-119.9-37.8\r\n\t\tC141.8,48,48,140.5,48,255.6C48,370.7,141.7,464,256.6,464C371.5,464,464,370.7,464,255.6C464,210.6,449.7,168.9,425.5,134.8z\r\n\t\t M398,91.3c12.2,0,22,9.9,22,22c0,12.2-9.9,22-22,22c-12.2,0-22-9.9-22-22C376,101.2,385.8,91.3,398,91.3z M391.8,391.7\r\n\t\tc-17.6,17.6-38.2,31.6-61.1,41.3c-23.7,10-48.2,15.2-74.2,15.2c-25.9,0-51.7-5.1-75.4-15.2c-22.9-9.7-43.4-23.5-61.1-41.3\r\n\t\tc-17.6-17.6-31.5-38.3-41.2-61.2c-10-23.7-15.1-48.9-15.1-74.9c0-25.9,5.1-51.2,15.1-74.9c9.7-22.9,23.5-43.5,41.2-61.2\r\n\t\ts38.2-31.6,61.1-41.3c23.7-10,49.4-14.1,75.4-14.1c25.9,0,50.5,4,74.2,14.1c12.7,5.4,24.7,12.1,35.9,20c-2.1,4.5-3.3,9.5-3.3,14.9\r\n\t\tc0,19.2,15.6,34.9,34.8,34.9c5.3,0,10.3-1.2,14.9-3.3c7.9,11.2,14.6,23.2,20,36c10,23.7,15.1,48.9,15.1,74.9\r\n\t\tc0,25.9-5.1,51.2-15.1,74.9C423.3,353.4,409.5,374,391.8,391.7z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256.5,160.1c-53,0-96,42.8-96,95.9s42.9,96.1,96,96.1c53,0,96-43,96-96.1S309.5,160.1,256.5,160.1z M256.5,335.8\r\n\t\tc-44.1,0-79.7-35.8-79.7-79.8c0-44.1,35.6-79.6,79.7-79.6s79.7,35.6,79.7,79.6C336.2,300.1,300.5,335.8,256.5,335.8z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256.5,160.1c-53,0-96,42.8-96,95.9s42.9,96.1,96,96.1c53,0,96-43,96-96.1S309.5,160.1,256.5,160.1z M256.5,335.8\r\n\t\tc-44.1,0-79.7-35.8-79.7-79.8c0-44.1,35.6-79.6,79.7-79.6s79.7,35.6,79.7,79.6C336.2,300.1,300.5,335.8,256.5,335.8z" + }, + "children": [] + }] + }] + }] +}; +exports.iosIonicOutline = iosIonicOutline; \ No newline at end of file diff --git a/dist/ionicons/iosKeypad.js b/dist/ionicons/iosKeypad.js new file mode 100644 index 000000000..a1784c6f1 --- /dev/null +++ b/dist/ionicons/iosKeypad.js @@ -0,0 +1,123 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosKeypad = void 0; +var iosKeypad = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M394.6,341.2c-29.5,0-53.4,23.9-53.4,53.4s23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4S424.1,341.2,394.6,341.2z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M394.6,341.2c-29.5,0-53.4,23.9-53.4,53.4s23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4S424.1,341.2,394.6,341.2z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,341.2c-29.5,0-53.4,23.9-53.4,53.4S226.5,448,256,448c29.5,0,53.4-23.9,53.4-53.4S285.5,341.2,256,341.2z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,341.2c-29.5,0-53.4,23.9-53.4,53.4S226.5,448,256,448c29.5,0,53.4-23.9,53.4-53.4S285.5,341.2,256,341.2z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M117.4,341.2c-29.5,0-53.4,23.9-53.4,53.4S87.9,448,117.4,448c29.5,0,53.4-23.9,53.4-53.4S146.9,341.2,117.4,341.2z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M117.4,341.2c-29.5,0-53.4,23.9-53.4,53.4S87.9,448,117.4,448c29.5,0,53.4-23.9,53.4-53.4S146.9,341.2,117.4,341.2z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M394.6,202.6c-29.5,0-53.4,23.9-53.4,53.4s23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4S424.1,202.6,394.6,202.6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M394.6,202.6c-29.5,0-53.4,23.9-53.4,53.4s23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4S424.1,202.6,394.6,202.6z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,202.6c-29.5,0-53.4,23.9-53.4,53.4s23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4S285.5,202.6,256,202.6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,202.6c-29.5,0-53.4,23.9-53.4,53.4s23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4S285.5,202.6,256,202.6z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M117.4,202.6C87.9,202.6,64,226.5,64,256s23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4S146.9,202.6,117.4,202.6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M117.4,202.6C87.9,202.6,64,226.5,64,256s23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4S146.9,202.6,117.4,202.6z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M394.6,170.8c29.5,0,53.4-23.9,53.4-53.4c0-29.5-23.9-53.4-53.4-53.4c-29.5,0-53.4,23.9-53.4,53.4\r\n\t\tC341.2,146.9,365.1,170.8,394.6,170.8z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M394.6,170.8c29.5,0,53.4-23.9,53.4-53.4c0-29.5-23.9-53.4-53.4-53.4c-29.5,0-53.4,23.9-53.4,53.4\r\n\t\tC341.2,146.9,365.1,170.8,394.6,170.8z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,64c-29.5,0-53.4,23.9-53.4,53.4c0,29.5,23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4C309.4,87.9,285.5,64,256,64z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,64c-29.5,0-53.4,23.9-53.4,53.4c0,29.5,23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4C309.4,87.9,285.5,64,256,64z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M117.4,64C87.9,64,64,87.9,64,117.4c0,29.5,23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4C170.8,87.9,146.9,64,117.4,64z\r\n\t\t" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M117.4,64C87.9,64,64,87.9,64,117.4c0,29.5,23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4C170.8,87.9,146.9,64,117.4,64z\r\n\t\t" + }, + "children": [] + }] + }] + }] +}; +exports.iosKeypad = iosKeypad; \ No newline at end of file diff --git a/dist/ionicons/iosKeypadOutline.js b/dist/ionicons/iosKeypadOutline.js new file mode 100644 index 000000000..4e1c2fe11 --- /dev/null +++ b/dist/ionicons/iosKeypadOutline.js @@ -0,0 +1,123 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosKeypadOutline = void 0; +var iosKeypadOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M394.6,341.2c-29.5,0-53.4,23.9-53.4,53.4s23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4S424.1,341.2,394.6,341.2z\r\n\t\t M394.6,432c-20.6,0-37.4-16.8-37.4-37.4c0-20.6,16.8-37.4,37.4-37.4s37.4,16.8,37.4,37.4C432,415.2,415.2,432,394.6,432z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M394.6,341.2c-29.5,0-53.4,23.9-53.4,53.4s23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4S424.1,341.2,394.6,341.2z\r\n\t\t M394.6,432c-20.6,0-37.4-16.8-37.4-37.4c0-20.6,16.8-37.4,37.4-37.4s37.4,16.8,37.4,37.4C432,415.2,415.2,432,394.6,432z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,341.2c-29.5,0-53.4,23.9-53.4,53.4S226.5,448,256,448c29.5,0,53.4-23.9,53.4-53.4S285.5,341.2,256,341.2z M256,432\r\n\t\tc-20.6,0-37.4-16.8-37.4-37.4c0-20.6,16.8-37.4,37.4-37.4s37.4,16.8,37.4,37.4C293.4,415.2,276.6,432,256,432z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,341.2c-29.5,0-53.4,23.9-53.4,53.4S226.5,448,256,448c29.5,0,53.4-23.9,53.4-53.4S285.5,341.2,256,341.2z M256,432\r\n\t\tc-20.6,0-37.4-16.8-37.4-37.4c0-20.6,16.8-37.4,37.4-37.4s37.4,16.8,37.4,37.4C293.4,415.2,276.6,432,256,432z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M117.4,341.2c-29.5,0-53.4,23.9-53.4,53.4S87.9,448,117.4,448c29.5,0,53.4-23.9,53.4-53.4S146.9,341.2,117.4,341.2z\r\n\t\t M117.4,432C96.8,432,80,415.2,80,394.6c0-20.6,16.8-37.4,37.4-37.4s37.4,16.8,37.4,37.4C154.8,415.2,138.1,432,117.4,432z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M117.4,341.2c-29.5,0-53.4,23.9-53.4,53.4S87.9,448,117.4,448c29.5,0,53.4-23.9,53.4-53.4S146.9,341.2,117.4,341.2z\r\n\t\t M117.4,432C96.8,432,80,415.2,80,394.6c0-20.6,16.8-37.4,37.4-37.4s37.4,16.8,37.4,37.4C154.8,415.2,138.1,432,117.4,432z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M394.6,202.6c-29.5,0-53.4,23.9-53.4,53.4s23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4S424.1,202.6,394.6,202.6z\r\n\t\t M394.6,293.4c-20.6,0-37.4-16.8-37.4-37.4c0-20.6,16.8-37.4,37.4-37.4S432,235.4,432,256C432,276.6,415.2,293.4,394.6,293.4z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M394.6,202.6c-29.5,0-53.4,23.9-53.4,53.4s23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4S424.1,202.6,394.6,202.6z\r\n\t\t M394.6,293.4c-20.6,0-37.4-16.8-37.4-37.4c0-20.6,16.8-37.4,37.4-37.4S432,235.4,432,256C432,276.6,415.2,293.4,394.6,293.4z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,202.6c-29.5,0-53.4,23.9-53.4,53.4s23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4S285.5,202.6,256,202.6z\r\n\t\t M256,293.4c-20.6,0-37.4-16.8-37.4-37.4c0-20.6,16.8-37.4,37.4-37.4s37.4,16.8,37.4,37.4C293.4,276.6,276.6,293.4,256,293.4z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,202.6c-29.5,0-53.4,23.9-53.4,53.4s23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4S285.5,202.6,256,202.6z\r\n\t\t M256,293.4c-20.6,0-37.4-16.8-37.4-37.4c0-20.6,16.8-37.4,37.4-37.4s37.4,16.8,37.4,37.4C293.4,276.6,276.6,293.4,256,293.4z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M117.4,202.6C87.9,202.6,64,226.5,64,256s23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4S146.9,202.6,117.4,202.6z\r\n\t\t M117.4,293.4C96.8,293.4,80,276.6,80,256c0-20.6,16.8-37.4,37.4-37.4s37.4,16.8,37.4,37.4C154.8,276.6,138.1,293.4,117.4,293.4z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M117.4,202.6C87.9,202.6,64,226.5,64,256s23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4S146.9,202.6,117.4,202.6z\r\n\t\t M117.4,293.4C96.8,293.4,80,276.6,80,256c0-20.6,16.8-37.4,37.4-37.4s37.4,16.8,37.4,37.4C154.8,276.6,138.1,293.4,117.4,293.4z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M394.6,170.8c29.5,0,53.4-23.9,53.4-53.4c0-29.5-23.9-53.4-53.4-53.4c-29.5,0-53.4,23.9-53.4,53.4\r\n\t\tC341.2,146.9,365.1,170.8,394.6,170.8z M394.6,80c20.6,0,37.4,16.8,37.4,37.4c0,20.6-16.8,37.4-37.4,37.4s-37.4-16.8-37.4-37.4\r\n\t\tC357.2,96.8,373.9,80,394.6,80z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M394.6,170.8c29.5,0,53.4-23.9,53.4-53.4c0-29.5-23.9-53.4-53.4-53.4c-29.5,0-53.4,23.9-53.4,53.4\r\n\t\tC341.2,146.9,365.1,170.8,394.6,170.8z M394.6,80c20.6,0,37.4,16.8,37.4,37.4c0,20.6-16.8,37.4-37.4,37.4s-37.4-16.8-37.4-37.4\r\n\t\tC357.2,96.8,373.9,80,394.6,80z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,64c-29.5,0-53.4,23.9-53.4,53.4c0,29.5,23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4C309.4,87.9,285.5,64,256,64z\r\n\t\t M256,154.8c-20.6,0-37.4-16.8-37.4-37.4c0-20.6,16.8-37.4,37.4-37.4s37.4,16.8,37.4,37.4C293.4,138,276.6,154.8,256,154.8z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,64c-29.5,0-53.4,23.9-53.4,53.4c0,29.5,23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4C309.4,87.9,285.5,64,256,64z\r\n\t\t M256,154.8c-20.6,0-37.4-16.8-37.4-37.4c0-20.6,16.8-37.4,37.4-37.4s37.4,16.8,37.4,37.4C293.4,138,276.6,154.8,256,154.8z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M117.4,64C87.9,64,64,87.9,64,117.4c0,29.5,23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4C170.8,87.9,146.9,64,117.4,64z\r\n\t\t M117.4,154.8C96.8,154.8,80,138,80,117.4C80,96.8,96.8,80,117.4,80s37.4,16.8,37.4,37.4C154.8,138,138.1,154.8,117.4,154.8z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M117.4,64C87.9,64,64,87.9,64,117.4c0,29.5,23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4C170.8,87.9,146.9,64,117.4,64z\r\n\t\t M117.4,154.8C96.8,154.8,80,138,80,117.4C80,96.8,96.8,80,117.4,80s37.4,16.8,37.4,37.4C154.8,138,138.1,154.8,117.4,154.8z" + }, + "children": [] + }] + }] + }] +}; +exports.iosKeypadOutline = iosKeypadOutline; \ No newline at end of file diff --git a/dist/ionicons/iosLightbulb.js b/dist/ionicons/iosLightbulb.js new file mode 100644 index 000000000..8907c5e77 --- /dev/null +++ b/dist/ionicons/iosLightbulb.js @@ -0,0 +1,89 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosLightbulb = void 0; +var iosLightbulb = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M400,172.9C400,95.1,333.9,32,256,32c-77.9,0-144,63.1-144,141c0,31,13.2,59,30.2,83h-0.3c10.9,15,21.4,27.7,31.5,45\r\n\t\t\tc22,37.8,18.6,74.3,18.7,81.6v1.4h32V256l-32-64h16.6l31.4,64v128h32V256l31.4-64H320l-32,64v128h32v-1.4\r\n\t\t\tc0-8.9-3.6-43.8,18.4-81.6c10.1-17.3,20.6-30,31.5-45h-0.1C386.8,232,400,204,400,172.9z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M400,172.9C400,95.1,333.9,32,256,32c-77.9,0-144,63.1-144,141c0,31,13.2,59,30.2,83h-0.3c10.9,15,21.4,27.7,31.5,45\r\n\t\t\tc22,37.8,18.6,74.3,18.7,81.6v1.4h32V256l-32-64h16.6l31.4,64v128h32V256l31.4-64H320l-32,64v128h32v-1.4\r\n\t\t\tc0-8.9-3.6-43.8,18.4-81.6c10.1-17.3,20.6-30,31.5-45h-0.1C386.8,232,400,204,400,172.9z" + }, + "children": [] + }] + }] + }] + }, { + "name": "rect", + "attribs": { + "x": "224", + "y": "464", + "width": "64", + "height": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "224", + "y": "464", + "width": "64", + "height": "16" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "208", + "y": "432", + "width": "96", + "height": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "208", + "y": "432", + "width": "96", + "height": "16" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "208", + "y": "400", + "width": "96", + "height": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "208", + "y": "400", + "width": "96", + "height": "16" + }, + "children": [] + }] + }] + }] +}; +exports.iosLightbulb = iosLightbulb; \ No newline at end of file diff --git a/dist/ionicons/iosLightbulbOutline.js b/dist/ionicons/iosLightbulbOutline.js new file mode 100644 index 000000000..d9712541d --- /dev/null +++ b/dist/ionicons/iosLightbulbOutline.js @@ -0,0 +1,81 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosLightbulbOutline = void 0; +var iosLightbulbOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M400,172.9C400,95.1,333.9,32,256,32c-77.9,0-144,63.1-144,141c0,31,13.2,59,30.2,83h-0.3c10.9,15,21.4,27.7,31.5,45\r\n\t\tc22,37.8,18.6,74.3,18.7,81.6v1.4h128v-1.4c0-8.9-3.6-43.8,18.4-81.6c10.1-17.3,20.6-30,31.5-45h-0.1C386.8,232,400,204,400,172.9z\r\n\t\t M351,254.4c-0.6,0.8-1.1,1.5-1.7,2.3c-8.1,10.9-16.5,22.2-24.7,36.1c-17.3,29.7-20.4,57.9-20.8,75.1H288V256l32-64h-16.6L272,256\r\n\t\tv112h-32V256l-31.4-64H192l32,64v112h-15.9c-0.5-17.2-3.9-45.7-20.9-75c-4.5-7.7-9.1-15-13.7-21h0.2l-18.6-25.6\r\n\t\tc-15.8-21.6-27.1-47.1-27.1-73.6c0-33.4,16-64.8,39.6-88.4s55-36.7,88.4-36.7c33.4,0,64.8,13.1,88.4,36.7\r\n\t\tc23.6,23.6,39.6,55,39.6,88.4c0,26.5-11.3,51.9-27.1,73.5L351,254.4z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M400,172.9C400,95.1,333.9,32,256,32c-77.9,0-144,63.1-144,141c0,31,13.2,59,30.2,83h-0.3c10.9,15,21.4,27.7,31.5,45\r\n\t\tc22,37.8,18.6,74.3,18.7,81.6v1.4h128v-1.4c0-8.9-3.6-43.8,18.4-81.6c10.1-17.3,20.6-30,31.5-45h-0.1C386.8,232,400,204,400,172.9z\r\n\t\t M351,254.4c-0.6,0.8-1.1,1.5-1.7,2.3c-8.1,10.9-16.5,22.2-24.7,36.1c-17.3,29.7-20.4,57.9-20.8,75.1H288V256l32-64h-16.6L272,256\r\n\t\tv112h-32V256l-31.4-64H192l32,64v112h-15.9c-0.5-17.2-3.9-45.7-20.9-75c-4.5-7.7-9.1-15-13.7-21h0.2l-18.6-25.6\r\n\t\tc-15.8-21.6-27.1-47.1-27.1-73.6c0-33.4,16-64.8,39.6-88.4s55-36.7,88.4-36.7c33.4,0,64.8,13.1,88.4,36.7\r\n\t\tc23.6,23.6,39.6,55,39.6,88.4c0,26.5-11.3,51.9-27.1,73.5L351,254.4z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "224", + "y": "464", + "width": "64", + "height": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "224", + "y": "464", + "width": "64", + "height": "16" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "208", + "y": "432", + "width": "96", + "height": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "208", + "y": "432", + "width": "96", + "height": "16" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "208", + "y": "400", + "width": "96", + "height": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "208", + "y": "400", + "width": "96", + "height": "16" + }, + "children": [] + }] + }] + }] +}; +exports.iosLightbulbOutline = iosLightbulbOutline; \ No newline at end of file diff --git a/dist/ionicons/iosList.js b/dist/ionicons/iosList.js new file mode 100644 index 000000000..2e53e0978 --- /dev/null +++ b/dist/ionicons/iosList.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosList = void 0; +var iosList = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M64,64v384h384V64H64z M144,368c-8.836,0-16-7.164-16-16s7.164-16,16-16s16,7.164,16,16S152.836,368,144,368z M144,272\r\n\t\tc-8.836,0-16-7.164-16-16s7.164-16,16-16s16,7.164,16,16S152.836,272,144,272z M144,176c-8.836,0-16-7.164-16-16s7.164-16,16-16\r\n\t\ts16,7.164,16,16S152.836,176,144,176z M384,360H192v-16h192V360z M384,264H192v-16h192V264z M384,168H192v-16h192V168z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M64,64v384h384V64H64z M144,368c-8.836,0-16-7.164-16-16s7.164-16,16-16s16,7.164,16,16S152.836,368,144,368z M144,272\r\n\t\tc-8.836,0-16-7.164-16-16s7.164-16,16-16s16,7.164,16,16S152.836,272,144,272z M144,176c-8.836,0-16-7.164-16-16s7.164-16,16-16\r\n\t\ts16,7.164,16,16S152.836,176,144,176z M384,360H192v-16h192V360z M384,264H192v-16h192V264z M384,168H192v-16h192V168z" + }, + "children": [] + }] + }] + }] +}; +exports.iosList = iosList; \ No newline at end of file diff --git a/dist/ionicons/iosListOutline.js b/dist/ionicons/iosListOutline.js new file mode 100644 index 000000000..4bbe2a1dc --- /dev/null +++ b/dist/ionicons/iosListOutline.js @@ -0,0 +1,161 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosListOutline = void 0; +var iosListOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M432,80v352H80V80H432 M448,64H64v384h384V64L448,64z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M432,80v352H80V80H432 M448,64H64v384h384V64L448,64z" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "192", + "y": "152", + "width": "192", + "height": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "192", + "y": "152", + "width": "192", + "height": "16" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "192", + "y": "248", + "width": "192", + "height": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "192", + "y": "248", + "width": "192", + "height": "16" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "192", + "y": "344", + "width": "192", + "height": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "192", + "y": "344", + "width": "192", + "height": "16" + }, + "children": [] + }] + }] + }] + }] + }] + }, { + "name": "circle", + "attribs": { + "cx": "144", + "cy": "160", + "r": "16" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "144", + "cy": "160", + "r": "16" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "144", + "cy": "256", + "r": "16" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "144", + "cy": "256", + "r": "16" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "144", + "cy": "352", + "r": "16" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "144", + "cy": "352", + "r": "16" + }, + "children": [] + }] + }] + }] +}; +exports.iosListOutline = iosListOutline; \ No newline at end of file diff --git a/dist/ionicons/iosLocation.js b/dist/ionicons/iosLocation.js new file mode 100644 index 000000000..84d26bae1 --- /dev/null +++ b/dist/ionicons/iosLocation.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosLocation = void 0; +var iosLocation = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,32c-79.529,0-144,64.471-144,144c0,112,144,304,144,304s144-192,144-304C400,96.471,335.529,32,256,32z M256,222.9\r\n\tc-25.9,0-46.9-21-46.9-46.9s21-46.9,46.9-46.9s46.9,21,46.9,46.9S281.9,222.9,256,222.9z" + }, + "children": [] + }] +}; +exports.iosLocation = iosLocation; \ No newline at end of file diff --git a/dist/ionicons/iosLocationOutline.js b/dist/ionicons/iosLocationOutline.js new file mode 100644 index 000000000..45d492bf9 --- /dev/null +++ b/dist/ionicons/iosLocationOutline.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosLocationOutline = void 0; +var iosLocationOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48c34.19,0,66.334,13.314,90.51,37.49S384,141.81,384,176c0,42.92-24.092,107.127-69.67,185.68\r\n\t\tc-22.279,38.396-44.771,71.634-58.332,90.931c-13.518-19.232-35.912-52.327-58.161-90.645C152.149,283.281,128,218.976,128,176\r\n\t\tc0-34.19,13.314-66.334,37.49-90.51S221.81,48,256,48 M256,32c-79.529,0-144,64.471-144,144c0,112,144,304,144,304s144-192,144-304\r\n\t\tC400,96.471,335.529,32,256,32L256,32z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48c34.19,0,66.334,13.314,90.51,37.49S384,141.81,384,176c0,42.92-24.092,107.127-69.67,185.68\r\n\t\tc-22.279,38.396-44.771,71.634-58.332,90.931c-13.518-19.232-35.912-52.327-58.161-90.645C152.149,283.281,128,218.976,128,176\r\n\t\tc0-34.19,13.314-66.334,37.49-90.51S221.81,48,256,48 M256,32c-79.529,0-144,64.471-144,144c0,112,144,304,144,304s144-192,144-304\r\n\t\tC400,96.471,335.529,32,256,32L256,32z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,112c-35.3,0-64,28.7-64,64s28.7,64,64,64s64-28.7,64-64S291.3,112,256,112z M256,222.9c-25.9,0-46.9-21-46.9-46.9\r\n\t\ts21-46.9,46.9-46.9s46.9,21,46.9,46.9S281.9,222.9,256,222.9z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,112c-35.3,0-64,28.7-64,64s28.7,64,64,64s64-28.7,64-64S291.3,112,256,112z M256,222.9c-25.9,0-46.9-21-46.9-46.9\r\n\t\ts21-46.9,46.9-46.9s46.9,21,46.9,46.9S281.9,222.9,256,222.9z" + }, + "children": [] + }] + }] + }] +}; +exports.iosLocationOutline = iosLocationOutline; \ No newline at end of file diff --git a/dist/ionicons/iosLocked.js b/dist/ionicons/iosLocked.js new file mode 100644 index 000000000..7fa9efee1 --- /dev/null +++ b/dist/ionicons/iosLocked.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosLocked = void 0; +var iosLocked = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M360,224v-72c0-57.43-46.562-104-103.984-104C198.562,48,152,94.57,152,152v72H96v240h320V224H360z M264,350.992V384h-16\r\n\t\tv-33.008c-13.802-3.553-24-16.082-24-30.992c0-17.673,14.327-32,32-32s32,14.327,32,32C288,334.91,277.802,347.439,264,350.992z\r\n\t\t M344,224H168v-72c0-48.523,39.484-88,88.016-88C304.531,64,344,103.477,344,152V224z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M360,224v-72c0-57.43-46.562-104-103.984-104C198.562,48,152,94.57,152,152v72H96v240h320V224H360z M264,350.992V384h-16\r\n\t\tv-33.008c-13.802-3.553-24-16.082-24-30.992c0-17.673,14.327-32,32-32s32,14.327,32,32C288,334.91,277.802,347.439,264,350.992z\r\n\t\t M344,224H168v-72c0-48.523,39.484-88,88.016-88C304.531,64,344,103.477,344,152V224z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,304c-8.822,0-16,7.178-16,16s7.178,16,16,16s16-7.178,16-16S264.822,304,256,304z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,304c-8.822,0-16,7.178-16,16s7.178,16,16,16s16-7.178,16-16S264.822,304,256,304z" + }, + "children": [] + }] + }] + }] +}; +exports.iosLocked = iosLocked; \ No newline at end of file diff --git a/dist/ionicons/iosLockedOutline.js b/dist/ionicons/iosLockedOutline.js new file mode 100644 index 000000000..401e68d97 --- /dev/null +++ b/dist/ionicons/iosLockedOutline.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosLockedOutline = void 0; +var iosLockedOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M360,224v-72c0-57.43-46.562-104-103.984-104C198.562,48,152,94.57,152,152v72H96v240h320V224H360z M168,152\r\n\t\t\tc0-48.523,39.484-88,88.016-88C304.531,64,344,103.477,344,152v72H168V152z M400,448H112V240h288V448z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M360,224v-72c0-57.43-46.562-104-103.984-104C198.562,48,152,94.57,152,152v72H96v240h320V224H360z M168,152\r\n\t\t\tc0-48.523,39.484-88,88.016-88C304.531,64,344,103.477,344,152v72H168V152z M400,448H112V240h288V448z" + }, + "children": [] + }] + }] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,288c-17.673,0-32,14.327-32,32c0,14.91,10.198,27.439,24,30.992V384h16v-33.008c13.802-3.553,24-16.082,24-30.992\r\n\t\tC288,302.327,273.673,288,256,288z M256,336c-8.822,0-16-7.178-16-16s7.178-16,16-16s16,7.178,16,16S264.822,336,256,336z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,288c-17.673,0-32,14.327-32,32c0,14.91,10.198,27.439,24,30.992V384h16v-33.008c13.802-3.553,24-16.082,24-30.992\r\n\t\tC288,302.327,273.673,288,256,288z M256,336c-8.822,0-16-7.178-16-16s7.178-16,16-16s16,7.178,16,16S264.822,336,256,336z" + }, + "children": [] + }] + }] + }] +}; +exports.iosLockedOutline = iosLockedOutline; \ No newline at end of file diff --git a/dist/ionicons/iosLoop.js b/dist/ionicons/iosLoop.js new file mode 100644 index 000000000..5e6bd2b9a --- /dev/null +++ b/dist/ionicons/iosLoop.js @@ -0,0 +1,79 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosLoop = void 0; +var iosLoop = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "489.373,256 448,297.373 405.627,256 394.813,266.813 448,320 500.687,267.313 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "489.373,256 448,297.373 405.627,256 394.813,266.813 448,320 500.687,267.313 \t" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M459.994,255.509c-0.002-0.577,0.013-1.157,0.007-1.733l-0.029-0.003C458.771,142.311,367.742,52,256,52\r\n\t\t\tc-73.59,0-141.753,39.878-177.888,104.071l13.943,7.848C125.359,104.754,188.18,68,256,68\r\n\t\t\tc103.273,0,187.355,83.708,187.985,186.836c0.038,6.882-0.281,13.83-1.017,20.831l15.912,1.674\r\n\t\t\tc0.755-7.168,1.105-14.286,1.111-21.341H460C460,255.836,459.994,255.673,459.994,255.509z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M459.994,255.509c-0.002-0.577,0.013-1.157,0.007-1.733l-0.029-0.003C458.771,142.311,367.742,52,256,52\r\n\t\t\tc-73.59,0-141.753,39.878-177.888,104.071l13.943,7.848C125.359,104.754,188.18,68,256,68\r\n\t\t\tc103.273,0,187.355,83.708,187.985,186.836c0.038,6.882-0.281,13.83-1.017,20.831l15.912,1.674\r\n\t\t\tc0.755-7.168,1.105-14.286,1.111-21.341H460C460,255.836,459.994,255.673,459.994,255.509z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M419.944,348.081C386.641,407.246,323.82,444,256,444c-103.475,0-187.688-84.032-187.993-187.437\r\n\t\t\tc-0.015-6.686,0.31-13.434,1.024-20.23l-15.912-1.674c-0.754,7.168-1.104,14.286-1.108,21.341H52c0,0.472,0.015,0.939,0.018,1.41\r\n\t\t\tc0.006,0.975-0.006,1.952,0.015,2.924l0.022-0.003C54.369,370.825,144.962,460,256,460c73.59,0,141.753-39.878,177.888-104.071\r\n\t\t\tL419.944,348.081z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M419.944,348.081C386.641,407.246,323.82,444,256,444c-103.475,0-187.688-84.032-187.993-187.437\r\n\t\t\tc-0.015-6.686,0.31-13.434,1.024-20.23l-15.912-1.674c-0.754,7.168-1.104,14.286-1.108,21.341H52c0,0.472,0.015,0.939,0.018,1.41\r\n\t\t\tc0.006,0.975-0.006,1.952,0.015,2.924l0.022-0.003C54.369,370.825,144.962,460,256,460c73.59,0,141.753-39.878,177.888-104.071\r\n\t\t\tL419.944,348.081z" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "64,192 11.313,244.687 22.627,256 64,214.627 105.373,256 116.687,244.687 \t\t\t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "64,192 11.313,244.687 22.627,256 64,214.627 105.373,256 116.687,244.687 \t\t\t" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.iosLoop = iosLoop; \ No newline at end of file diff --git a/dist/ionicons/iosLoopStrong.js b/dist/ionicons/iosLoopStrong.js new file mode 100644 index 000000000..114ec5737 --- /dev/null +++ b/dist/ionicons/iosLoopStrong.js @@ -0,0 +1,71 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosLoopStrong = void 0; +var iosLoopStrong = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48c-75.033,0-144.531,40.658-181.373,106.107l-1.963,3.485l20.915,11.771l1.962-3.485\r\n\t\t\tC128.138,107.973,189.621,72,256,72c101.458,0,184,82.542,184,184c0,12.509-1.262,25.007-3.749,37.147l-0.803,3.918l23.511,4.819\r\n\t\t\tl0.804-3.919C462.574,284.244,464,270.125,464,256C464,141.309,370.691,48,256,48z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48c-75.033,0-144.531,40.658-181.373,106.107l-1.963,3.485l20.915,11.771l1.962-3.485\r\n\t\t\tC128.138,107.973,189.621,72,256,72c101.458,0,184,82.542,184,184c0,12.509-1.262,25.007-3.749,37.147l-0.803,3.918l23.511,4.819\r\n\t\t\tl0.804-3.919C462.574,284.244,464,270.125,464,256C464,141.309,370.691,48,256,48z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M416.459,346.119C383.862,404.027,322.379,440,256,440c-101.458,0-184-82.542-184-184c0-12.512,1.262-25.011,3.75-37.15\r\n\t\t\tl0.803-3.918l-23.511-4.819l-0.804,3.918C49.426,227.75,48,241.87,48,256c0,114.691,93.309,208,208,208\r\n\t\t\tc75.033,0,144.531-40.658,181.373-106.109l1.963-3.485l-20.915-11.771L416.459,346.119z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M416.459,346.119C383.862,404.027,322.379,440,256,440c-101.458,0-184-82.542-184-184c0-12.512,1.262-25.011,3.75-37.15\r\n\t\t\tl0.803-3.918l-23.511-4.819l-0.804,3.918C49.426,227.75,48,241.87,48,256c0,114.691,93.309,208,208,208\r\n\t\t\tc75.033,0,144.531-40.658,181.373-106.109l1.963-3.485l-20.915-11.771L416.459,346.119z" + }, + "children": [] + }] + }] + }] + }, { + "name": "polygon", + "attribs": { + "points": "384,256 448,320 512,256 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "384,256 448,320 512,256 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "0,256 64,192 128,256 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "0,256 64,192 128,256 \t" + }, + "children": [] + }] + }] + }] +}; +exports.iosLoopStrong = iosLoopStrong; \ No newline at end of file diff --git a/dist/ionicons/iosMedical.js b/dist/ionicons/iosMedical.js new file mode 100644 index 000000000..12904aedd --- /dev/null +++ b/dist/ionicons/iosMedical.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosMedical = void 0; +var iosMedical = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M438,187.713l-31.927-55.426L288,200.574V64h-64v136.574l-118.073-68.287l-31.938,55.426L192.092,256L73.998,324.287\r\n\tl31.928,55.426L224,311.426V448h64V311.426l118.072,68.287l31.939-55.426L319.908,256L438,187.713z" + }, + "children": [] + }] +}; +exports.iosMedical = iosMedical; \ No newline at end of file diff --git a/dist/ionicons/iosMedicalOutline.js b/dist/ionicons/iosMedicalOutline.js new file mode 100644 index 000000000..16219e5dc --- /dev/null +++ b/dist/ionicons/iosMedicalOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosMedicalOutline = void 0; +var iosMedicalOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M438,187.713l-31.927-55.426L288,200.574V64h-64v136.574l-118.073-68.287l-31.938,55.426L192.092,256L73.998,324.287\r\n\tl31.928,55.426L224,311.426V448h64V311.426l118.072,68.287l31.939-55.426L319.908,256L438,187.713z M416.176,330.125l-15.963,27.866\r\n\tL272,284v148h-32V284l-128.213,74l-15.969-27.785l128.228-74.197L95.822,181.861l15.964-27.859L240,228V80h32v148l128.213-74\r\n\tl15.969,27.785l-128.228,74.179L416.176,330.125z" + }, + "children": [] + }] +}; +exports.iosMedicalOutline = iosMedicalOutline; \ No newline at end of file diff --git a/dist/ionicons/iosMedkit.js b/dist/ionicons/iosMedkit.js new file mode 100644 index 000000000..d5de2c782 --- /dev/null +++ b/dist/ionicons/iosMedkit.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosMedkit = void 0; +var iosMedkit = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "272,272 272,256 272,208 240,208 240,256 240,272 224,272 176,272 176,304 224,304 240,304 240,320 240,368 \r\n\t\t272,368 272,320 272,304 288,304 336,304 336,272 288,272 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "272,272 272,256 272,208 240,208 240,256 240,272 224,272 176,272 176,304 224,304 240,304 240,320 240,368 \r\n\t\t272,368 272,320 272,304 288,304 336,304 336,272 288,272 \t" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M336,128V96c-0.5-18.2-13.6-32-32.2-32h-99.1C186.1,64,176,77.7,176,96v32H48v320h416V128H336z M192,98.1\r\n\t\tc0-10.2,2.9-18.1,13.7-18.1h97.1c10.4,0,17.2,7.7,17.2,18.1V128H192V98.1z M352,320h-64v64h-64v-64h-64v-64h64v-64h64v64h64V320z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M336,128V96c-0.5-18.2-13.6-32-32.2-32h-99.1C186.1,64,176,77.7,176,96v32H48v320h416V128H336z M192,98.1\r\n\t\tc0-10.2,2.9-18.1,13.7-18.1h97.1c10.4,0,17.2,7.7,17.2,18.1V128H192V98.1z M352,320h-64v64h-64v-64h-64v-64h64v-64h64v64h64V320z" + }, + "children": [] + }] + }] + }] +}; +exports.iosMedkit = iosMedkit; \ No newline at end of file diff --git a/dist/ionicons/iosMedkitOutline.js b/dist/ionicons/iosMedkitOutline.js new file mode 100644 index 000000000..3e48047ca --- /dev/null +++ b/dist/ionicons/iosMedkitOutline.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosMedkitOutline = void 0; +var iosMedkitOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M272,208v48v16h16h48v32h-48h-16v16v48h-32v-48v-16h-16h-48v-32h48h16v-16v-48H272 M288,192h-64v64h-64v64h64v64h64v-64\r\n\t\t\th64v-64h-64V192L288,192z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M272,208v48v16h16h48v32h-48h-16v16v48h-32v-48v-16h-16h-48v-32h48h16v-16v-48H272 M288,192h-64v64h-64v64h64v64h64v-64\r\n\t\t\th64v-64h-64V192L288,192z" + }, + "children": [] + }] + }] + }] + }, { + "name": "path", + "attribs": { + "d": "M336,128V96c-0.5-18.2-13.6-32-32.2-32h-99.1C186.1,64,176,77.7,176,96v32H48v320h416V128H336z M192,98.1\r\n\t\tc0-10.2,2.9-18.1,13.7-18.1h97.1c10.4,0,17.2,7.7,17.2,18.1V128H192V98.1z M448,432H64V144h384V432z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M336,128V96c-0.5-18.2-13.6-32-32.2-32h-99.1C186.1,64,176,77.7,176,96v32H48v320h416V128H336z M192,98.1\r\n\t\tc0-10.2,2.9-18.1,13.7-18.1h97.1c10.4,0,17.2,7.7,17.2,18.1V128H192V98.1z M448,432H64V144h384V432z" + }, + "children": [] + }] + }] + }] +}; +exports.iosMedkitOutline = iosMedkitOutline; \ No newline at end of file diff --git a/dist/ionicons/iosMic.js b/dist/ionicons/iosMic.js new file mode 100644 index 000000000..6555e26b5 --- /dev/null +++ b/dist/ionicons/iosMic.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosMic = void 0; +var iosMic = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,353.5c43.7,0,79-37.5,79-83.5V115.5c0-46-35.3-83.5-79-83.5c-43.7,0-79,37.5-79,83.5V270\r\n\t\tC177,316,212.3,353.5,256,353.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,353.5c43.7,0,79-37.5,79-83.5V115.5c0-46-35.3-83.5-79-83.5c-43.7,0-79,37.5-79,83.5V270\r\n\t\tC177,316,212.3,353.5,256,353.5z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M367,192v79.7c0,60.2-49.8,109.2-110,109.2c-60.2,0-110-49-110-109.2V192h-19v79.7c0,67.2,53,122.6,120,127.5V462h-73v18\r\n\t\th161v-18h-69v-62.8c66-4.9,117-60.3,117-127.5V192H367z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M367,192v79.7c0,60.2-49.8,109.2-110,109.2c-60.2,0-110-49-110-109.2V192h-19v79.7c0,67.2,53,122.6,120,127.5V462h-73v18\r\n\t\th161v-18h-69v-62.8c66-4.9,117-60.3,117-127.5V192H367z" + }, + "children": [] + }] + }] + }] +}; +exports.iosMic = iosMic; \ No newline at end of file diff --git a/dist/ionicons/iosMicOff.js b/dist/ionicons/iosMicOff.js new file mode 100644 index 000000000..d61f53e56 --- /dev/null +++ b/dist/ionicons/iosMicOff.js @@ -0,0 +1,83 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosMicOff = void 0; +var iosMicOff = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "264.2", + "y": "1.1", + "transform": "matrix(0.8629 -0.5053 0.5053 0.8629 -92.0515 172.66)", + "width": "16", + "height": "509.8" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "264.2", + "y": "1.1", + "transform": "matrix(0.8629 -0.5053 0.5053 0.8629 -92.0515 172.66)", + "width": "16", + "height": "509.8" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256.2,353.4c12.3,0,23.8-2.9,34.2-8.2L177,152.4V270C177,316,212.4,353.4,256.2,353.4z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256.2,353.4c12.3,0,23.8-2.9,34.2-8.2L177,152.4V270C177,316,212.4,353.4,256.2,353.4z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M335,270V115.5c0-46-35.2-83.5-79-83.5c-25.4,0-47.8,12.6-62.3,32.2l136.9,233.3C333.5,288.9,335,279.6,335,270z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M335,270V115.5c0-46-35.2-83.5-79-83.5c-25.4,0-47.8,12.6-62.3,32.2l136.9,233.3C333.5,288.9,335,279.6,335,270z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M384,271.7V192h-17v79.7c0,21.5-6.2,41.6-17.1,58.5l9.9,17C375.1,326,384,299.9,384,271.7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M384,271.7V192h-17v79.7c0,21.5-6.2,41.6-17.1,58.5l9.9,17C375.1,326,384,299.9,384,271.7z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M267,399.2c17-1.2,33-5.8,47.3-13l-9.4-16.1c-14.5,7-30.7,10.9-47.7,10.9c-60.3,0-110.1-49-110.1-109.1V192h-19v79.7\r\n\t\tc0,67.2,53,122.6,120,127.4V462h-73v18h161v-18h-69V399.2z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M267,399.2c17-1.2,33-5.8,47.3-13l-9.4-16.1c-14.5,7-30.7,10.9-47.7,10.9c-60.3,0-110.1-49-110.1-109.1V192h-19v79.7\r\n\t\tc0,67.2,53,122.6,120,127.4V462h-73v18h161v-18h-69V399.2z" + }, + "children": [] + }] + }] + }] +}; +exports.iosMicOff = iosMicOff; \ No newline at end of file diff --git a/dist/ionicons/iosMicOutline.js b/dist/ionicons/iosMicOutline.js new file mode 100644 index 000000000..2dd810387 --- /dev/null +++ b/dist/ionicons/iosMicOutline.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosMicOutline = void 0; +var iosMicOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,32c-43.7,0-79,37.5-79,83.5V270c0,46,35.3,83.5,79,83.5c43.7,0,79-37.5,79-83.5V115.5C335,69.5,299.7,32,256,32z\r\n\t\t M319,270c0,37.2-28.3,67.5-63,67.5c-34.7,0-63-30.3-63-67.5V115.5c0-37.2,28.3-67.5,63-67.5c34.7,0,63,30.3,63,67.5V270z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,32c-43.7,0-79,37.5-79,83.5V270c0,46,35.3,83.5,79,83.5c43.7,0,79-37.5,79-83.5V115.5C335,69.5,299.7,32,256,32z\r\n\t\t M319,270c0,37.2-28.3,67.5-63,67.5c-34.7,0-63-30.3-63-67.5V115.5c0-37.2,28.3-67.5,63-67.5c34.7,0,63,30.3,63,67.5V270z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M367,192v79.7c0,60.2-49.8,109.2-110,109.2c-60.2,0-110-49-110-109.2V192h-19v79.7c0,67.2,53,122.6,120,127.5V462h-73v18\r\n\t\th161v-18h-69v-62.8c66-4.9,117-60.3,117-127.5V192H367z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M367,192v79.7c0,60.2-49.8,109.2-110,109.2c-60.2,0-110-49-110-109.2V192h-19v79.7c0,67.2,53,122.6,120,127.5V462h-73v18\r\n\t\th161v-18h-69v-62.8c66-4.9,117-60.3,117-127.5V192H367z" + }, + "children": [] + }] + }] + }] +}; +exports.iosMicOutline = iosMicOutline; \ No newline at end of file diff --git a/dist/ionicons/iosMinus.js b/dist/ionicons/iosMinus.js new file mode 100644 index 000000000..13c8f0981 --- /dev/null +++ b/dist/ionicons/iosMinus.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosMinus = void 0; +var iosMinus = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M384,265H128v-17h256V265z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M384,265H128v-17h256V265z" + }, + "children": [] + }] + }] + }] +}; +exports.iosMinus = iosMinus; \ No newline at end of file diff --git a/dist/ionicons/iosMinusEmpty.js b/dist/ionicons/iosMinusEmpty.js new file mode 100644 index 000000000..307873c14 --- /dev/null +++ b/dist/ionicons/iosMinusEmpty.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosMinusEmpty = void 0; +var iosMinusEmpty = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M384,265H128v-17h256V265z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M384,265H128v-17h256V265z" + }, + "children": [] + }] + }] + }] +}; +exports.iosMinusEmpty = iosMinusEmpty; \ No newline at end of file diff --git a/dist/ionicons/iosMinusOutline.js b/dist/ionicons/iosMinusOutline.js new file mode 100644 index 000000000..2a31a2f34 --- /dev/null +++ b/dist/ionicons/iosMinusOutline.js @@ -0,0 +1,61 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosMinusOutline = void 0; +var iosMinusOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M256,446.7\r\n\t\t\t\tc-105.1,0-190.7-85.5-190.7-190.7c0-105.1,85.5-190.7,190.7-190.7c105.1,0,190.7,85.5,190.7,190.7\r\n\t\t\t\tC446.7,361.1,361.1,446.7,256,446.7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M256,446.7\r\n\t\t\t\tc-105.1,0-190.7-85.5-190.7-190.7c0-105.1,85.5-190.7,190.7-190.7c105.1,0,190.7,85.5,190.7,190.7\r\n\t\t\t\tC446.7,361.1,361.1,446.7,256,446.7z" + }, + "children": [] + }] + }] + }] + }] + }] + }, { + "name": "rect", + "attribs": { + "x": "128", + "y": "248", + "width": "256", + "height": "17" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "128", + "y": "248", + "width": "256", + "height": "17" + }, + "children": [] + }] + }] + }] +}; +exports.iosMinusOutline = iosMinusOutline; \ No newline at end of file diff --git a/dist/ionicons/iosMonitor.js b/dist/ionicons/iosMonitor.js new file mode 100644 index 000000000..55da6ed77 --- /dev/null +++ b/dist/ionicons/iosMonitor.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosMonitor = void 0; +var iosMonitor = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M496,384V96H16v288h175v16h-64v16h257v-16h-64v-16H496z M32,112h448v256H32V112z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "48", + "y": "128", + "width": "416", + "height": "224" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "48", + "y": "128", + "width": "416", + "height": "224" + }, + "children": [] + }] + }] + }] +}; +exports.iosMonitor = iosMonitor; \ No newline at end of file diff --git a/dist/ionicons/iosMonitorOutline.js b/dist/ionicons/iosMonitorOutline.js new file mode 100644 index 000000000..503f19b72 --- /dev/null +++ b/dist/ionicons/iosMonitorOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosMonitorOutline = void 0; +var iosMonitorOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M496,384V96H16v288h175v16h-64v16h257v-16h-64v-16H496z M32,112h448v256H32V112z" + }, + "children": [] + }] +}; +exports.iosMonitorOutline = iosMonitorOutline; \ No newline at end of file diff --git a/dist/ionicons/iosMoon.js b/dist/ionicons/iosMoon.js new file mode 100644 index 000000000..fc5dee4b6 --- /dev/null +++ b/dist/ionicons/iosMoon.js @@ -0,0 +1,35 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosMoon = void 0; +var iosMoon = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M343.1,315c-1.8,0.1-3.5,0.1-5.3,0.1c-29.1,0-56.5-11.3-77.1-31.9c-20.6-20.6-31.9-48-31.9-77.1\r\n\t\t\tc0-16.6,3.7-32.6,10.6-47.1c3.1-6.4,6.8-12.5,11.1-18.2c-7.6,0.8-14.9,2.4-22,4.6c-46.8,14.8-80.7,58.5-80.7,110.2\r\n\t\t\tc0,63.8,51.7,115.5,115.5,115.5c35.3,0,66.8-15.8,88-40.7c4.8-5.7,9.2-11.9,12.8-18.5C357.3,313.6,350.3,314.7,343.1,315z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M343.1,315c-1.8,0.1-3.5,0.1-5.3,0.1c-29.1,0-56.5-11.3-77.1-31.9c-20.6-20.6-31.9-48-31.9-77.1\r\n\t\t\tc0-16.6,3.7-32.6,10.6-47.1c3.1-6.4,6.8-12.5,11.1-18.2c-7.6,0.8-14.9,2.4-22,4.6c-46.8,14.8-80.7,58.5-80.7,110.2\r\n\t\t\tc0,63.8,51.7,115.5,115.5,115.5c35.3,0,66.8-15.8,88-40.7c4.8-5.7,9.2-11.9,12.8-18.5C357.3,313.6,350.3,314.7,343.1,315z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.iosMoon = iosMoon; \ No newline at end of file diff --git a/dist/ionicons/iosMoonOutline.js b/dist/ionicons/iosMoonOutline.js new file mode 100644 index 000000000..789ff9755 --- /dev/null +++ b/dist/ionicons/iosMoonOutline.js @@ -0,0 +1,35 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosMoonOutline = void 0; +var iosMoonOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M343.1,315c-1.8,0.1-3.5,0.1-5.3,0.1c-29.1,0-56.5-11.3-77.1-31.9c-20.6-20.6-31.9-48-31.9-77.1\r\n\t\t\tc0-16.6,3.7-32.6,10.6-47.1c3.1-6.4,6.8-12.5,11.1-18.2c-7.6,0.8-14.9,2.4-22,4.6c-46.8,14.8-80.7,58.5-80.7,110.2\r\n\t\t\tc0,63.8,51.7,115.5,115.5,115.5c35.3,0,66.8-15.8,88-40.7c4.8-5.7,9.2-11.9,12.8-18.5C357.3,313.6,350.3,314.7,343.1,315z\r\n\t\t\t M263.3,355.1c-54.9,0-99.5-44.6-99.5-99.5c0-39.1,22.6-72.9,55.4-89.2c-4.2,12.5-6.4,25.8-6.4,39.7c0,65.9,51,119.9,115.6,124.7\r\n\t\t\tC311,346,288.2,355.1,263.3,355.1z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M343.1,315c-1.8,0.1-3.5,0.1-5.3,0.1c-29.1,0-56.5-11.3-77.1-31.9c-20.6-20.6-31.9-48-31.9-77.1\r\n\t\t\tc0-16.6,3.7-32.6,10.6-47.1c3.1-6.4,6.8-12.5,11.1-18.2c-7.6,0.8-14.9,2.4-22,4.6c-46.8,14.8-80.7,58.5-80.7,110.2\r\n\t\t\tc0,63.8,51.7,115.5,115.5,115.5c35.3,0,66.8-15.8,88-40.7c4.8-5.7,9.2-11.9,12.8-18.5C357.3,313.6,350.3,314.7,343.1,315z\r\n\t\t\t M263.3,355.1c-54.9,0-99.5-44.6-99.5-99.5c0-39.1,22.6-72.9,55.4-89.2c-4.2,12.5-6.4,25.8-6.4,39.7c0,65.9,51,119.9,115.6,124.7\r\n\t\t\tC311,346,288.2,355.1,263.3,355.1z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.iosMoonOutline = iosMoonOutline; \ No newline at end of file diff --git a/dist/ionicons/iosMore.js b/dist/ionicons/iosMore.js new file mode 100644 index 000000000..fa92c7293 --- /dev/null +++ b/dist/ionicons/iosMore.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosMore = void 0; +var iosMore = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,224c-17.7,0-32,14.3-32,32s14.3,32,32,32c17.7,0,32-14.3,32-32S273.7,224,256,224L256,224z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,224c-17.7,0-32,14.3-32,32s14.3,32,32,32c17.7,0,32-14.3,32-32S273.7,224,256,224L256,224z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M128.4,224c-17.7,0-32,14.3-32,32s14.3,32,32,32c17.7,0,32-14.3,32-32S146,224,128.4,224L128.4,224z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M128.4,224c-17.7,0-32,14.3-32,32s14.3,32,32,32c17.7,0,32-14.3,32-32S146,224,128.4,224L128.4,224z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M384,224c-17.7,0-32,14.3-32,32s14.3,32,32,32s32-14.3,32-32S401.7,224,384,224L384,224z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M384,224c-17.7,0-32,14.3-32,32s14.3,32,32,32s32-14.3,32-32S401.7,224,384,224L384,224z" + }, + "children": [] + }] + }] + }] +}; +exports.iosMore = iosMore; \ No newline at end of file diff --git a/dist/ionicons/iosMoreOutline.js b/dist/ionicons/iosMoreOutline.js new file mode 100644 index 000000000..90eb1c626 --- /dev/null +++ b/dist/ionicons/iosMoreOutline.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosMoreOutline = void 0; +var iosMoreOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,238c9.9,0,18,8.1,18,18s-8.1,18-18,18s-18-8.1-18-18S246.1,238,256,238 M256,224c-17.7,0-32,14.3-32,32s14.3,32,32,32\r\n\t\tc17.7,0,32-14.3,32-32S273.7,224,256,224L256,224z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,238c9.9,0,18,8.1,18,18s-8.1,18-18,18s-18-8.1-18-18S246.1,238,256,238 M256,224c-17.7,0-32,14.3-32,32s14.3,32,32,32\r\n\t\tc17.7,0,32-14.3,32-32S273.7,224,256,224L256,224z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M128.4,238c9.9,0,18,8.1,18,18s-8.1,18-18,18c-9.9,0-18-8.1-18-18S118.5,238,128.4,238 M128.4,224c-17.7,0-32,14.3-32,32\r\n\t\ts14.3,32,32,32c17.7,0,32-14.3,32-32S146,224,128.4,224L128.4,224z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M128.4,238c9.9,0,18,8.1,18,18s-8.1,18-18,18c-9.9,0-18-8.1-18-18S118.5,238,128.4,238 M128.4,224c-17.7,0-32,14.3-32,32\r\n\t\ts14.3,32,32,32c17.7,0,32-14.3,32-32S146,224,128.4,224L128.4,224z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M384,238c9.9,0,18,8.1,18,18s-8.1,18-18,18s-18-8.1-18-18S374.1,238,384,238 M384,224c-17.7,0-32,14.3-32,32s14.3,32,32,32\r\n\t\ts32-14.3,32-32S401.7,224,384,224L384,224z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M384,238c9.9,0,18,8.1,18,18s-8.1,18-18,18s-18-8.1-18-18S374.1,238,384,238 M384,224c-17.7,0-32,14.3-32,32s14.3,32,32,32\r\n\t\ts32-14.3,32-32S401.7,224,384,224L384,224z" + }, + "children": [] + }] + }] + }] +}; +exports.iosMoreOutline = iosMoreOutline; \ No newline at end of file diff --git a/dist/ionicons/iosMusicalNote.js b/dist/ionicons/iosMusicalNote.js new file mode 100644 index 000000000..ab54192be --- /dev/null +++ b/dist/ionicons/iosMusicalNote.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosMusicalNote = void 0; +var iosMusicalNote = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M352.1,102.3c0-0.1,0-0.2,0-0.2c-0.1-0.3-0.1-0.5-0.2-0.8c0,0,0-0.1,0-0.1c-0.6-1.5-1.8-3-3.5-3.4l-2-0.4L256,78v272.6\r\n\tc-8,0-22.4,0.4-44.5,1.3c-41.8,1.6-51.4,21.6-51.4,40.9c0,24.6,13.2,43.1,61.5,41c51.8-2.3,51.4-48.5,51.4-81.7V159.6l73.6,13.5l0,0\r\n\tc3,0.6,5.4-2.3,5.4-5.3v-64.4C352,103,352.1,102.6,352.1,102.3z" + }, + "children": [] + }] +}; +exports.iosMusicalNote = iosMusicalNote; \ No newline at end of file diff --git a/dist/ionicons/iosMusicalNotes.js b/dist/ionicons/iosMusicalNotes.js new file mode 100644 index 000000000..81c050815 --- /dev/null +++ b/dist/ionicons/iosMusicalNotes.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosMusicalNotes = void 0; +var iosMusicalNotes = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M416,319.9V78l-224,34.6v237.2c-9,0-20.9,0.4-43.5,1.3c-42.6,1.6-52.5,21.8-52.5,41.3c0,24.9,13.5,43.5,62.6,41.4\r\n\tc52.8-2.3,50.3-49,50.3-82.5V189.8l191-32v160.6c-9,0-19.9,0.4-42.6,1.3c-42.6,1.6-52.5,21.8-52.5,41.3c0,24.9,13,43.5,62.2,41.4\r\n\tC420,400.1,416,353.4,416,319.9z" + }, + "children": [] + }] +}; +exports.iosMusicalNotes = iosMusicalNotes; \ No newline at end of file diff --git a/dist/ionicons/iosNavigate.js b/dist/ionicons/iosNavigate.js new file mode 100644 index 000000000..ff3cf8d5b --- /dev/null +++ b/dist/ionicons/iosNavigate.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosNavigate = void 0; +var iosNavigate = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48C141.1,48,48,141.1,48,256c0,114.9,93.1,208,208,208c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48z M256,384\r\n\t\tV256H128.3L352,160L256,384z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48C141.1,48,48,141.1,48,256c0,114.9,93.1,208,208,208c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48z M256,384\r\n\t\tV256H128.3L352,160L256,384z" + }, + "children": [] + }] + }] + }] +}; +exports.iosNavigate = iosNavigate; \ No newline at end of file diff --git a/dist/ionicons/iosNavigateOutline.js b/dist/ionicons/iosNavigateOutline.js new file mode 100644 index 000000000..520942796 --- /dev/null +++ b/dist/ionicons/iosNavigateOutline.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosNavigateOutline = void 0; +var iosNavigateOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,64.5c51.1,0,99.2,19.9,135.4,56.1s56.1,84.2,56.1,135.4s-19.9,99.2-56.1,135.4s-84.2,56.1-135.4,56.1\r\n\t\ts-99.2-19.9-135.4-56.1C84.5,355.2,64.5,307.1,64.5,256s19.9-99.2,56.1-135.4C156.8,84.5,204.9,64.5,256,64.5 M256,48\r\n\t\tC141.1,48,48,141.1,48,256c0,114.9,93.1,208,208,208c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48L256,48z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,64.5c51.1,0,99.2,19.9,135.4,56.1s56.1,84.2,56.1,135.4s-19.9,99.2-56.1,135.4s-84.2,56.1-135.4,56.1\r\n\t\ts-99.2-19.9-135.4-56.1C84.5,355.2,64.5,307.1,64.5,256s19.9-99.2,56.1-135.4C156.8,84.5,204.9,64.5,256,64.5 M256,48\r\n\t\tC141.1,48,48,141.1,48,256c0,114.9,93.1,208,208,208c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48L256,48z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "352,160 128.3,256 256,256 256,384 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "352,160 128.3,256 256,256 256,384 \t" + }, + "children": [] + }] + }] + }] +}; +exports.iosNavigateOutline = iosNavigateOutline; \ No newline at end of file diff --git a/dist/ionicons/iosNutrition.js b/dist/ionicons/iosNutrition.js new file mode 100644 index 000000000..1413d3eaf --- /dev/null +++ b/dist/ionicons/iosNutrition.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosNutrition = void 0; +var iosNutrition = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M359,233.62l-0.106-0.039c-0.136-0.138-0.306-0.443-0.444-0.579L279.551,154h-0.004c-5.848-6-14.23-10.168-23.547-10.168\r\n\t\tc-11.842,0-22.174,6.168-27.708,16.168h-0.007c0,0-7.109,11.351-18.318,29.249l32.617,39.85c2.947,3.772,3.305,7.895,1.414,9.785\r\n\t\tl-0.114,0.114c-2.296,2.296-5.894,1.535-9.785-1.414l-35.967-29.439c-23.608,37.693-56.827,90.731-83.671,133.592l19.123,23.362\r\n\t\tc2.947,3.772,3.305,7.895,1.414,9.785l-0.114,0.114c-2.296,2.296-5.894,1.535-9.785-1.414l-20.22-16.55\r\n\t\tC84.874,388.974,70.194,412.411,69,414.315v0.003c-3,5.066-5,11.144-5,17.682c0,17.674,14.244,32,31.918,32\r\n\t\tc7.842,0,14.383-3.398,20.628-7.508l114.842-84.195l-28.971-35.395c-2.947-3.772-3.305-7.895-1.414-9.785l0.114-0.114\r\n\t\tc2.296-2.296,5.894-1.534,9.785,1.415l37.963,31.215C303.85,319.348,355.035,282,355.035,282h0.005\r\n\t\tc7.859-6,13.024-15.319,13.024-25.857c0-8.713-3.064-16.75-9.064-22.521V233.62z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M359,233.62l-0.106-0.039c-0.136-0.138-0.306-0.443-0.444-0.579L279.551,154h-0.004c-5.848-6-14.23-10.168-23.547-10.168\r\n\t\tc-11.842,0-22.174,6.168-27.708,16.168h-0.007c0,0-7.109,11.351-18.318,29.249l32.617,39.85c2.947,3.772,3.305,7.895,1.414,9.785\r\n\t\tl-0.114,0.114c-2.296,2.296-5.894,1.535-9.785-1.414l-35.967-29.439c-23.608,37.693-56.827,90.731-83.671,133.592l19.123,23.362\r\n\t\tc2.947,3.772,3.305,7.895,1.414,9.785l-0.114,0.114c-2.296,2.296-5.894,1.535-9.785-1.414l-20.22-16.55\r\n\t\tC84.874,388.974,70.194,412.411,69,414.315v0.003c-3,5.066-5,11.144-5,17.682c0,17.674,14.244,32,31.918,32\r\n\t\tc7.842,0,14.383-3.398,20.628-7.508l114.842-84.195l-28.971-35.395c-2.947-3.772-3.305-7.895-1.414-9.785l0.114-0.114\r\n\t\tc2.296-2.296,5.894-1.534,9.785,1.415l37.963,31.215C303.85,319.348,355.035,282,355.035,282h0.005\r\n\t\tc7.859-6,13.024-15.319,13.024-25.857c0-8.713-3.064-16.75-9.064-22.521V233.62z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "448,138.781 431.514,111.087 365.284,149.299 414.515,64.086 386.896,48 316.897,169.084 345.485,197.672 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "448,138.781 431.514,111.087 365.284,149.299 414.515,64.086 386.896,48 316.897,169.084 345.485,197.672 \t" + }, + "children": [] + }] + }] + }] +}; +exports.iosNutrition = iosNutrition; \ No newline at end of file diff --git a/dist/ionicons/iosNutritionOutline.js b/dist/ionicons/iosNutritionOutline.js new file mode 100644 index 000000000..a13a9a248 --- /dev/null +++ b/dist/ionicons/iosNutritionOutline.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosNutritionOutline = void 0; +var iosNutritionOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M358,233.855l0.413-0.039c-0.137-0.137-0.046-0.101-0.185-0.237L279.798,155h-0.004c-5.833-6-14.193-10.154-23.485-10.154\r\n\t\tc-11.811,0-22.115,6.154-27.635,16.154h-0.007c0,0-7.09,10.994-18.27,28.874l32.531,39.637c2.939,3.769,3.296,7.801,1.411,9.689\r\n\t\tl-0.114,0.071c-0.909,0.909-2.021,1.33-3.274,1.33c-1.908,0-4.142-0.99-6.485-2.768l-35.872-29.418\r\n\t\tc-23.546,37.655-56.677,90.634-83.45,133.451l19.072,23.337c2.939,3.77,3.296,7.884,1.41,9.772l-0.114,0.114\r\n\t\tc-0.911,0.913-2.028,1.342-3.287,1.342c-1.905,0-4.136-0.981-6.472-2.755l-21.067-16.533C84.734,389.051,70,412.464,68,414.366\r\n\t\tv0.003c-3,5.062-4.085,11.132-4.085,17.664c0,17.655,14.657,31.967,32.285,31.967c7.821,0,14.57-3.395,20.799-7.5l114.651-84.109\r\n\t\tl-28.838-35.358c-2.94-3.769-3.268-7.887-1.382-9.775l0.128-0.114c0.912-0.912,2.034-1.341,3.294-1.341\r\n\t\tc1.905,0,4.14,0.981,6.476,2.755l37.864,31.59C304.03,319.902,355.082,283,355.082,283h0.005c7.839-6,12.473-15.711,12.473-26.238\r\n\t\tc0-8.704-3.56-17.14-9.56-22.904V233.855z M345.531,269.834c-2.664,1.934-46.692,33.932-95.764,69.899l-28.272-23.483l-0.26-0.223\r\n\t\tl-0.274-0.211c-5.245-3.981-10.663-5.998-16.108-5.998c-5.465,0-10.592,2.097-14.458,5.909l-0.064,0.062l-0.083,0.082l-0.083,0.083\r\n\t\tc-7.808,7.821-7.761,20.823,0.111,30.917l0.11,0.143l0.113,0.138l18.223,22.312l-100.656,73.896\r\n\t\tc-5.066,3.304-8.427,4.657-11.542,4.657c-8.822,0-16-7.171-16-15.983c0-3.086,0.694-6.045,2.017-8.623\r\n\t\tc2.391-3.161,6.6-9.876,18.655-29.351c2.543-4.108,5.252-8.487,8.134-13.129l6.39,5.176l0.195,0.156l0.2,0.152\r\n\t\tc5.245,3.981,10.665,6,16.111,6c5.517,0,10.692-2.139,14.571-6.023l0.114-0.113c7.806-7.817,7.756-20.82-0.118-30.916l-0.113-0.144\r\n\t\tl-0.115-0.142l-11.814-14.455l43.693-69.872l24.059-38.474l21.855,17.922l0.231,0.19l0.24,0.181\r\n\t\tc5.254,3.988,10.678,6.01,16.123,6.01c4.954,0,9.631-1.725,13.339-4.89l0.461-0.337l0.871-0.874\r\n\t\tc7.79-7.803,7.74-20.778-0.118-30.854l-0.12-0.153l-0.124-0.15l-25.239-30.539c2.957-4.703,5.457-8.491,7.405-11.488l5.209-8.494\r\n\t\tc2.777-5.025,7.761-8.157,13.673-8.157c4.367,0,8.76,2.042,12.057,5.43l4.701,4.928h0.122L342,240.286v0.376l5.186,4.716\r\n\t\tc2.793,2.69,4.539,6.782,4.539,11.227C351.725,261.801,349.467,266.728,345.531,269.834z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M358,233.855l0.413-0.039c-0.137-0.137-0.046-0.101-0.185-0.237L279.798,155h-0.004c-5.833-6-14.193-10.154-23.485-10.154\r\n\t\tc-11.811,0-22.115,6.154-27.635,16.154h-0.007c0,0-7.09,10.994-18.27,28.874l32.531,39.637c2.939,3.769,3.296,7.801,1.411,9.689\r\n\t\tl-0.114,0.071c-0.909,0.909-2.021,1.33-3.274,1.33c-1.908,0-4.142-0.99-6.485-2.768l-35.872-29.418\r\n\t\tc-23.546,37.655-56.677,90.634-83.45,133.451l19.072,23.337c2.939,3.77,3.296,7.884,1.41,9.772l-0.114,0.114\r\n\t\tc-0.911,0.913-2.028,1.342-3.287,1.342c-1.905,0-4.136-0.981-6.472-2.755l-21.067-16.533C84.734,389.051,70,412.464,68,414.366\r\n\t\tv0.003c-3,5.062-4.085,11.132-4.085,17.664c0,17.655,14.657,31.967,32.285,31.967c7.821,0,14.57-3.395,20.799-7.5l114.651-84.109\r\n\t\tl-28.838-35.358c-2.94-3.769-3.268-7.887-1.382-9.775l0.128-0.114c0.912-0.912,2.034-1.341,3.294-1.341\r\n\t\tc1.905,0,4.14,0.981,6.476,2.755l37.864,31.59C304.03,319.902,355.082,283,355.082,283h0.005c7.839-6,12.473-15.711,12.473-26.238\r\n\t\tc0-8.704-3.56-17.14-9.56-22.904V233.855z M345.531,269.834c-2.664,1.934-46.692,33.932-95.764,69.899l-28.272-23.483l-0.26-0.223\r\n\t\tl-0.274-0.211c-5.245-3.981-10.663-5.998-16.108-5.998c-5.465,0-10.592,2.097-14.458,5.909l-0.064,0.062l-0.083,0.082l-0.083,0.083\r\n\t\tc-7.808,7.821-7.761,20.823,0.111,30.917l0.11,0.143l0.113,0.138l18.223,22.312l-100.656,73.896\r\n\t\tc-5.066,3.304-8.427,4.657-11.542,4.657c-8.822,0-16-7.171-16-15.983c0-3.086,0.694-6.045,2.017-8.623\r\n\t\tc2.391-3.161,6.6-9.876,18.655-29.351c2.543-4.108,5.252-8.487,8.134-13.129l6.39,5.176l0.195,0.156l0.2,0.152\r\n\t\tc5.245,3.981,10.665,6,16.111,6c5.517,0,10.692-2.139,14.571-6.023l0.114-0.113c7.806-7.817,7.756-20.82-0.118-30.916l-0.113-0.144\r\n\t\tl-0.115-0.142l-11.814-14.455l43.693-69.872l24.059-38.474l21.855,17.922l0.231,0.19l0.24,0.181\r\n\t\tc5.254,3.988,10.678,6.01,16.123,6.01c4.954,0,9.631-1.725,13.339-4.89l0.461-0.337l0.871-0.874\r\n\t\tc7.79-7.803,7.74-20.778-0.118-30.854l-0.12-0.153l-0.124-0.15l-25.239-30.539c2.957-4.703,5.457-8.491,7.405-11.488l5.209-8.494\r\n\t\tc2.777-5.025,7.761-8.157,13.673-8.157c4.367,0,8.76,2.042,12.057,5.43l4.701,4.928h0.122L342,240.286v0.376l5.186,4.716\r\n\t\tc2.793,2.69,4.539,6.782,4.539,11.227C351.725,261.801,349.467,266.728,345.531,269.834z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "439.994,115.175 435.216,117.938 343.578,170.93 407.313,60.358 409.83,55.992 396.011,48 393.523,52.313 \r\n\t\t322.748,175.098 339.418,191.794 443.38,131.674 447.974,129.018 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "439.994,115.175 435.216,117.938 343.578,170.93 407.313,60.358 409.83,55.992 396.011,48 393.523,52.313 \r\n\t\t322.748,175.098 339.418,191.794 443.38,131.674 447.974,129.018 \t" + }, + "children": [] + }] + }] + }] +}; +exports.iosNutritionOutline = iosNutritionOutline; \ No newline at end of file diff --git a/dist/ionicons/iosPaper.js b/dist/ionicons/iosPaper.js new file mode 100644 index 000000000..1401f7c9d --- /dev/null +++ b/dist/ionicons/iosPaper.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosPaper = void 0; +var iosPaper = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M112,64v16v32v288H96V112H64v305.143C64,434.157,77.843,448,94.857,448h322.285C434.157,448,448,434.157,448,417.143V64H112\r\n\tz M160,112h128v16H160V112z M160,272h192v16H160V272z M400,368H160v-16h240V368z M400,208H160v-16h240V208z" + }, + "children": [] + }] +}; +exports.iosPaper = iosPaper; \ No newline at end of file diff --git a/dist/ionicons/iosPaperOutline.js b/dist/ionicons/iosPaperOutline.js new file mode 100644 index 000000000..860ab0e8a --- /dev/null +++ b/dist/ionicons/iosPaperOutline.js @@ -0,0 +1,99 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosPaperOutline = void 0; +var iosPaperOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M112,64v16v320h16V80h304v337.143c0,8.205-6.652,14.857-14.857,14.857H94.857C86.652,432,80,425.348,80,417.143V128h16v-16\r\n\t\tH64v305.143C64,434.157,77.843,448,94.857,448h322.285C434.157,448,448,434.157,448,417.143V64H112z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M112,64v16v320h16V80h304v337.143c0,8.205-6.652,14.857-14.857,14.857H94.857C86.652,432,80,425.348,80,417.143V128h16v-16\r\n\t\tH64v305.143C64,434.157,77.843,448,94.857,448h322.285C434.157,448,448,434.157,448,417.143V64H112z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "160", + "y": "112", + "width": "128", + "height": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "160", + "y": "112", + "width": "128", + "height": "16" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "160", + "y": "192", + "width": "240", + "height": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "160", + "y": "192", + "width": "240", + "height": "16" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "160", + "y": "272", + "width": "192", + "height": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "160", + "y": "272", + "width": "192", + "height": "16" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "160", + "y": "352", + "width": "240", + "height": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "160", + "y": "352", + "width": "240", + "height": "16" + }, + "children": [] + }] + }] + }] +}; +exports.iosPaperOutline = iosPaperOutline; \ No newline at end of file diff --git a/dist/ionicons/iosPaperplane.js b/dist/ionicons/iosPaperplane.js new file mode 100644 index 000000000..b3ff60462 --- /dev/null +++ b/dist/ionicons/iosPaperplane.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosPaperplane = void 0; +var iosPaperplane = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "96,249.6 202,296.3 416,96 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "96,249.6 202,296.3 416,96 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "416,96 217.9,311.7 269.8,416 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "416,96 217.9,311.7 269.8,416 \t" + }, + "children": [] + }] + }] + }] +}; +exports.iosPaperplane = iosPaperplane; \ No newline at end of file diff --git a/dist/ionicons/iosPaperplaneOutline.js b/dist/ionicons/iosPaperplaneOutline.js new file mode 100644 index 000000000..d4f52db41 --- /dev/null +++ b/dist/ionicons/iosPaperplaneOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosPaperplaneOutline = void 0; +var iosPaperplaneOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M96,249.6l116.6,51.3L269.8,416L416,96L96,249.6z M228.1,296.5l155.7-166.2L269.2,379.2L228.1,296.5z M381.8,128.3\r\n\tL216.8,285.4L134,249L381.8,128.3z" + }, + "children": [] + }] +}; +exports.iosPaperplaneOutline = iosPaperplaneOutline; \ No newline at end of file diff --git a/dist/ionicons/iosPartlysunny.js b/dist/ionicons/iosPartlysunny.js new file mode 100644 index 000000000..4cae99513 --- /dev/null +++ b/dist/ionicons/iosPartlysunny.js @@ -0,0 +1,147 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosPartlysunny = void 0; +var iosPartlysunny = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "style", + "attribs": { + "type": "text/css" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "208", + "y": "96", + "class": "st0", + "width": "16", + "height": "54" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "208", + "y": "96", + "class": "st0", + "width": "16", + "height": "54" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "64", + "y": "240", + "class": "st0", + "width": "55", + "height": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "64", + "y": "240", + "class": "st0", + "width": "55", + "height": "16" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "class": "st0", + "points": "107.5,149.1 118.5,138 149.9,169.6 138.9,180.7 \t\t\t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "class": "st0", + "points": "107.5,149.1 118.5,138 149.9,169.6 138.9,180.7 \t\t\t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "class": "st0", + "points": "287.4,179.7 276.4,168.6 307.7,137 318.8,148.1 \t\t\t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "class": "st0", + "points": "287.4,179.7 276.4,168.6 307.7,137 318.8,148.1 \t\t\t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "class": "st0", + "points": "120.5,352.5 109.5,341.4 140.9,309.8 151.9,320.9 \t\t\t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "class": "st0", + "points": "120.5,352.5 109.5,341.4 140.9,309.8 151.9,320.9 \t\t\t" + }, + "children": [] + }] + }] + }] + }, { + "name": "path", + "attribs": { + "class": "st0", + "d": "M299,224c-43.3,0-78.3,35.2-78.3,78.5c0,2.6,0.1,5.2,0.4,7.8c-26.4,2.3-47.1,25.5-47.1,52.6\r\n\t\t\tc0,28.6,23.2,53.1,51.7,53.1h157.7c35.7,0,64.6-29.9,64.6-65.7c0-35.8-28.9-65.3-64.6-65.3c-2.7,0-5.4,0-8,0.3\r\n\t\t\tC367.5,250.3,336.3,224,299,224L299,224z" + }, + "children": [{ + "name": "path", + "attribs": { + "class": "st0", + "d": "M299,224c-43.3,0-78.3,35.2-78.3,78.5c0,2.6,0.1,5.2,0.4,7.8c-26.4,2.3-47.1,25.5-47.1,52.6\r\n\t\t\tc0,28.6,23.2,53.1,51.7,53.1h157.7c35.7,0,64.6-29.9,64.6-65.7c0-35.8-28.9-65.3-64.6-65.3c-2.7,0-5.4,0-8,0.3\r\n\t\t\tC367.5,250.3,336.3,224,299,224L299,224z" + }, + "children": [] + }] + }] + }] + }, { + "name": "path", + "attribs": { + "class": "st0", + "d": "M264.7,196.3c-12.9-14.3-31.4-23.3-52-23.3c-38.7,0-70.3,31.7-70.3,70.7c0,27.4,15.6,51.2,38.3,62.9\r\n\t\tc0,0,0-0.1,0-0.1c0,0,0.1,0.1,0.1,0.1c4.5-12.1,11.4-19.8,22.6-25.6c0.2-0.1,0.4-0.2,0.7-0.4c0.2-0.1,0.5-0.2,0.7-0.3\r\n\t\tc-0.2-2.3-0.3-4.7-0.3-7c-0.3-31.9,30.2-70.5,61-75.4c0.1-0.1,0.3-0.1,0.4-0.2C265.5,197.3,265.1,196.8,264.7,196.3z" + }, + "children": [{ + "name": "path", + "attribs": { + "class": "st0", + "d": "M264.7,196.3c-12.9-14.3-31.4-23.3-52-23.3c-38.7,0-70.3,31.7-70.3,70.7c0,27.4,15.6,51.2,38.3,62.9\r\n\t\tc0,0,0-0.1,0-0.1c0,0,0.1,0.1,0.1,0.1c4.5-12.1,11.4-19.8,22.6-25.6c0.2-0.1,0.4-0.2,0.7-0.4c0.2-0.1,0.5-0.2,0.7-0.3\r\n\t\tc-0.2-2.3-0.3-4.7-0.3-7c-0.3-31.9,30.2-70.5,61-75.4c0.1-0.1,0.3-0.1,0.4-0.2C265.5,197.3,265.1,196.8,264.7,196.3z" + }, + "children": [] + }] + }] + }] +}; +exports.iosPartlysunny = iosPartlysunny; \ No newline at end of file diff --git a/dist/ionicons/iosPartlysunnyOutline.js b/dist/ionicons/iosPartlysunnyOutline.js new file mode 100644 index 000000000..6f5222833 --- /dev/null +++ b/dist/ionicons/iosPartlysunnyOutline.js @@ -0,0 +1,155 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosPartlysunnyOutline = void 0; +var iosPartlysunnyOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "style", + "attribs": { + "type": "text/css" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "208", + "y": "96", + "class": "st0", + "width": "16", + "height": "54" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "208", + "y": "96", + "class": "st0", + "width": "16", + "height": "54" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "64", + "y": "240", + "class": "st0", + "width": "55", + "height": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "64", + "y": "240", + "class": "st0", + "width": "55", + "height": "16" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "class": "st0", + "points": "107.5,149.1 118.5,138 149.9,169.6 138.9,180.7 \t\t\t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "class": "st0", + "points": "107.5,149.1 118.5,138 149.9,169.6 138.9,180.7 \t\t\t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "class": "st0", + "points": "287.4,179.7 276.4,168.6 307.7,137 318.8,148.1 \t\t\t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "class": "st0", + "points": "287.4,179.7 276.4,168.6 307.7,137 318.8,148.1 \t\t\t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "class": "st0", + "points": "120.5,352.5 109.5,341.4 140.9,309.8 151.9,320.9 \t\t\t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "class": "st0", + "points": "120.5,352.5 109.5,341.4 140.9,309.8 151.9,320.9 \t\t\t" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "class": "st0", + "d": "M192.6,294.9c-20.2-8.1-34.6-27.9-34.6-51.1c0-30.3,24.5-55,54.7-55c15.6,0,29.7,6.6,39.6,17.2\r\n\t\t\t\tc4.8-3.5,9.5-6.2,13.6-8.2c-12.9-15.1-32-24.7-53.3-24.7c-38.7,0-70.3,31.7-70.3,70.7c0,27.4,15.6,51.2,38.3,62.9\r\n\t\t\t\tC184.3,301.5,188.5,297.7,192.6,294.9z" + }, + "children": [{ + "name": "path", + "attribs": { + "class": "st0", + "d": "M192.6,294.9c-20.2-8.1-34.6-27.9-34.6-51.1c0-30.3,24.5-55,54.7-55c15.6,0,29.7,6.6,39.6,17.2\r\n\t\t\t\tc4.8-3.5,9.5-6.2,13.6-8.2c-12.9-15.1-32-24.7-53.3-24.7c-38.7,0-70.3,31.7-70.3,70.7c0,27.4,15.6,51.2,38.3,62.9\r\n\t\t\t\tC184.3,301.5,188.5,297.7,192.6,294.9z" + }, + "children": [] + }] + }] + }] + }] + }] + }, { + "name": "path", + "attribs": { + "class": "st0", + "d": "M299,239.8c14.5,0,28.1,4.8,39.3,13.9c10.9,8.9,18.6,21.3,21.7,34.9l3.1,14l14.2-1.8c2.1-0.3,4.1-0.4,6.1-0.4\r\n\t\tc26.9,0,48.8,22.1,48.8,49.2c0,27.1-21.9,49.2-48.8,49.2H225.7c-9.5,0-18.5-3.9-25.4-10.8c-6.8-7-10.6-16.2-10.6-25.9\r\n\t\tc0-18.6,14.5-33.8,33.2-36.9c1.6-0.3,8.8-1.2,14.2-1.7c0,0-0.5-5.3-0.6-9.6c-0.1-4.3-0.1-9.4-0.1-11.5\r\n\t\tC236.5,268,264.5,239.8,299,239.8 M299,224c-43.3,0-78.3,35.2-78.3,78.5c0,2.6,0.1,5.2,0.4,7.8c-26.4,2.3-47.1,25.5-47.1,52.6\r\n\t\tc0,28.6,23.2,53.1,51.7,53.1h157.7c35.7,0,64.6-29.9,64.6-65.7c0-35.8-28.9-65.3-64.6-65.3c-2.7,0-5.4,0-8,0.3\r\n\t\tC367.5,250.3,336.3,224,299,224L299,224z" + }, + "children": [{ + "name": "path", + "attribs": { + "class": "st0", + "d": "M299,239.8c14.5,0,28.1,4.8,39.3,13.9c10.9,8.9,18.6,21.3,21.7,34.9l3.1,14l14.2-1.8c2.1-0.3,4.1-0.4,6.1-0.4\r\n\t\tc26.9,0,48.8,22.1,48.8,49.2c0,27.1-21.9,49.2-48.8,49.2H225.7c-9.5,0-18.5-3.9-25.4-10.8c-6.8-7-10.6-16.2-10.6-25.9\r\n\t\tc0-18.6,14.5-33.8,33.2-36.9c1.6-0.3,8.8-1.2,14.2-1.7c0,0-0.5-5.3-0.6-9.6c-0.1-4.3-0.1-9.4-0.1-11.5\r\n\t\tC236.5,268,264.5,239.8,299,239.8 M299,224c-43.3,0-78.3,35.2-78.3,78.5c0,2.6,0.1,5.2,0.4,7.8c-26.4,2.3-47.1,25.5-47.1,52.6\r\n\t\tc0,28.6,23.2,53.1,51.7,53.1h157.7c35.7,0,64.6-29.9,64.6-65.7c0-35.8-28.9-65.3-64.6-65.3c-2.7,0-5.4,0-8,0.3\r\n\t\tC367.5,250.3,336.3,224,299,224L299,224z" + }, + "children": [] + }] + }] + }] +}; +exports.iosPartlysunnyOutline = iosPartlysunnyOutline; \ No newline at end of file diff --git a/dist/ionicons/iosPause.js b/dist/ionicons/iosPause.js new file mode 100644 index 000000000..efae00463 --- /dev/null +++ b/dist/ionicons/iosPause.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosPause = void 0; +var iosPause = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "128", + "y": "96", + "width": "79", + "height": "320" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "128", + "y": "96", + "width": "79", + "height": "320" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "305", + "y": "96", + "width": "79", + "height": "320" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "305", + "y": "96", + "width": "79", + "height": "320" + }, + "children": [] + }] + }] + }] +}; +exports.iosPause = iosPause; \ No newline at end of file diff --git a/dist/ionicons/iosPauseOutline.js b/dist/ionicons/iosPauseOutline.js new file mode 100644 index 000000000..3d9810318 --- /dev/null +++ b/dist/ionicons/iosPauseOutline.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosPauseOutline = void 0; +var iosPauseOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M191,112v288h-47V112H191 M207,96h-79v320h79V96L207,96z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M191,112v288h-47V112H191 M207,96h-79v320h79V96L207,96z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M368,112v288h-47V112H368 M384,96h-79v320h79V96L384,96z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M368,112v288h-47V112H368 M384,96h-79v320h79V96L384,96z" + }, + "children": [] + }] + }] + }] +}; +exports.iosPauseOutline = iosPauseOutline; \ No newline at end of file diff --git a/dist/ionicons/iosPaw.js b/dist/ionicons/iosPaw.js new file mode 100644 index 000000000..83de2489a --- /dev/null +++ b/dist/ionicons/iosPaw.js @@ -0,0 +1,75 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosPaw = void 0; +var iosPaw = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M443.827,195.5c-4.383-11.73-11.753-20.212-21.317-24.524c-4.389-1.975-8.995-2.976-13.688-2.976\r\n\t\tc-20.025,0-40.372,18.667-50.632,46.454c-12.698,34.42-5.315,68.135,17.173,78.423c4.522,2.071,9.365,3.123,14.394,3.123\r\n\t\tc20.396,0,41.126-17.119,51.581-42.596C449.238,234.121,450.168,212.477,443.827,195.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M443.827,195.5c-4.383-11.73-11.753-20.212-21.317-24.524c-4.389-1.975-8.995-2.976-13.688-2.976\r\n\t\tc-20.025,0-40.372,18.667-50.632,46.454c-12.698,34.42-5.315,68.135,17.173,78.423c4.522,2.071,9.365,3.123,14.394,3.123\r\n\t\tc20.396,0,41.126-17.119,51.581-42.596C449.238,234.121,450.168,212.477,443.827,195.5z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M153.811,214.454C143.551,186.667,123.204,168,103.179,168c-4.693,0-9.3,1.001-13.689,2.976\r\n\t\tc-9.565,4.312-16.934,12.794-21.317,24.524c-6.341,16.977-5.411,38.621,2.49,57.904C81.118,278.881,101.848,296,122.244,296\r\n\t\tc5.028,0,9.871-1.052,14.394-3.123C159.126,282.589,166.509,248.874,153.811,214.454z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M153.811,214.454C143.551,186.667,123.204,168,103.179,168c-4.693,0-9.3,1.001-13.689,2.976\r\n\t\tc-9.565,4.312-16.934,12.794-21.317,24.524c-6.341,16.977-5.411,38.621,2.49,57.904C81.118,278.881,101.848,296,122.244,296\r\n\t\tc5.028,0,9.871-1.052,14.394-3.123C159.126,282.589,166.509,248.874,153.811,214.454z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M198.347,210.601c1.855,0.081,3.727,0.03,5.563-0.151c10.787-1.059,20.54-6.594,28.207-16.008\r\n\t\tc12.371-15.191,15.806-38.974,13.201-63.439C241.336,93.3,221.469,65.161,194.776,64c0,0-3.811,0.008-5.75,0.193\r\n\t\tc-11.776,1.164-22.481,7.283-30.957,17.695c-12.291,15.101-18.198,37.57-15.803,60.104\r\n\t\tC146.202,179.269,170.836,209.404,198.347,210.601z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M198.347,210.601c1.855,0.081,3.727,0.03,5.563-0.151c10.787-1.059,20.54-6.594,28.207-16.008\r\n\t\tc12.371-15.191,15.806-38.974,13.201-63.439C241.336,93.3,221.469,65.161,194.776,64c0,0-3.811,0.008-5.75,0.193\r\n\t\tc-11.776,1.164-22.481,7.283-30.957,17.695c-12.291,15.101-18.198,37.57-15.803,60.104\r\n\t\tC146.202,179.269,170.836,209.404,198.347,210.601z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,240c-64,0-128,76.074-128,149.128c0,21.798,10.932,39.331,21.667,46.517C162.925,444.516,172.269,448,191.704,448\r\n\t\tc23.093,0,29.325-8.078,40.136-15.205c7.819-5.152,14.572-9.605,24.161-9.605s16.342,4.453,24.16,9.605\r\n\t\tC290.972,439.922,297.203,448,320.297,448c19.434,0,28.778-3.484,42.036-12.355C373.068,428.459,384,410.926,384,389.128\r\n\t\tC384,316.074,320,240,256,240z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,240c-64,0-128,76.074-128,149.128c0,21.798,10.932,39.331,21.667,46.517C162.925,444.516,172.269,448,191.704,448\r\n\t\tc23.093,0,29.325-8.078,40.136-15.205c7.819-5.152,14.572-9.605,24.161-9.605s16.342,4.453,24.16,9.605\r\n\t\tC290.972,439.922,297.203,448,320.297,448c19.434,0,28.778-3.484,42.036-12.355C373.068,428.459,384,410.926,384,389.128\r\n\t\tC384,316.074,320,240,256,240z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M308.281,210.265c1.836,0.182,3.709,0.232,5.563,0.151c27.511-1.196,52.146-31.332,56.081-68.607\r\n\t\tc2.395-22.534-3.514-45.004-15.804-60.104c-8.476-10.412-18.783-16.228-30.56-17.392c-1.939-0.186-6.146-0.312-6.146-0.312\r\n\t\tc-26.693,1.161-46.561,29.115-50.542,66.817c-2.604,24.466,0.83,48.248,13.2,63.439\r\n\t\tC287.741,203.671,297.494,209.206,308.281,210.265z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M308.281,210.265c1.836,0.182,3.709,0.232,5.563,0.151c27.511-1.196,52.146-31.332,56.081-68.607\r\n\t\tc2.395-22.534-3.514-45.004-15.804-60.104c-8.476-10.412-18.783-16.228-30.56-17.392c-1.939-0.186-6.146-0.312-6.146-0.312\r\n\t\tc-26.693,1.161-46.561,29.115-50.542,66.817c-2.604,24.466,0.83,48.248,13.2,63.439\r\n\t\tC287.741,203.671,297.494,209.206,308.281,210.265z" + }, + "children": [] + }] + }] + }] +}; +exports.iosPaw = iosPaw; \ No newline at end of file diff --git a/dist/ionicons/iosPawOutline.js b/dist/ionicons/iosPawOutline.js new file mode 100644 index 000000000..faac3b852 --- /dev/null +++ b/dist/ionicons/iosPawOutline.js @@ -0,0 +1,75 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosPawOutline = void 0; +var iosPawOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M443.827,195.5c-4.383-11.73-11.753-20.212-21.317-24.524c-4.389-1.975-8.995-2.976-13.688-2.976\r\n\t\tc-20.025,0-40.372,18.667-50.632,46.454c-12.698,34.42-5.315,68.135,17.173,78.423c4.522,2.071,9.365,3.123,14.394,3.123\r\n\t\tc20.396,0,41.126-17.119,51.581-42.596C449.238,234.121,450.168,212.477,443.827,195.5z M426.214,246.295\r\n\t\tc-7.836,18.898-22.994,32.098-36.862,32.098c-2.809,0-5.488-0.569-7.968-1.694c-14.121-6.394-17.862-31.059-8.518-56.152\r\n\t\tc7.775-20.817,22.448-35.355,35.683-35.355c2.51,0,4.979,0.533,7.34,1.588c6.88,3.067,10.622,9.712,12.551,14.745\r\n\t\tC433.35,214.332,432.518,231.068,426.214,246.295z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M443.827,195.5c-4.383-11.73-11.753-20.212-21.317-24.524c-4.389-1.975-8.995-2.976-13.688-2.976\r\n\t\tc-20.025,0-40.372,18.667-50.632,46.454c-12.698,34.42-5.315,68.135,17.173,78.423c4.522,2.071,9.365,3.123,14.394,3.123\r\n\t\tc20.396,0,41.126-17.119,51.581-42.596C449.238,234.121,450.168,212.477,443.827,195.5z M426.214,246.295\r\n\t\tc-7.836,18.898-22.994,32.098-36.862,32.098c-2.809,0-5.488-0.569-7.968-1.694c-14.121-6.394-17.862-31.059-8.518-56.152\r\n\t\tc7.775-20.817,22.448-35.355,35.683-35.355c2.51,0,4.979,0.533,7.34,1.588c6.88,3.067,10.622,9.712,12.551,14.745\r\n\t\tC433.35,214.332,432.518,231.068,426.214,246.295z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M153.811,214.454C143.551,186.667,123.204,168,103.179,168c-4.693,0-9.3,1.001-13.689,2.976\r\n\t\tc-9.565,4.312-16.934,12.794-21.317,24.524c-6.341,16.977-5.411,38.621,2.49,57.904C81.118,278.881,101.848,296,122.244,296\r\n\t\tc5.028,0,9.871-1.052,14.394-3.123C159.126,282.589,166.509,248.874,153.811,214.454z M130.616,276.698\r\n\t\tc-2.479,1.125-5.16,1.694-7.968,1.694c-13.868,0-29.026-13.199-36.862-32.098c-6.304-15.227-7.136-31.963-2.226-44.771\r\n\t\tc1.929-5.033,5.671-11.678,12.551-14.745c2.361-1.055,4.83-1.588,7.34-1.588c13.234,0,27.907,14.538,35.683,35.355\r\n\t\tC148.479,245.64,144.737,270.305,130.616,276.698z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M153.811,214.454C143.551,186.667,123.204,168,103.179,168c-4.693,0-9.3,1.001-13.689,2.976\r\n\t\tc-9.565,4.312-16.934,12.794-21.317,24.524c-6.341,16.977-5.411,38.621,2.49,57.904C81.118,278.881,101.848,296,122.244,296\r\n\t\tc5.028,0,9.871-1.052,14.394-3.123C159.126,282.589,166.509,248.874,153.811,214.454z M130.616,276.698\r\n\t\tc-2.479,1.125-5.16,1.694-7.968,1.694c-13.868,0-29.026-13.199-36.862-32.098c-6.304-15.227-7.136-31.963-2.226-44.771\r\n\t\tc1.929-5.033,5.671-11.678,12.551-14.745c2.361-1.055,4.83-1.588,7.34-1.588c13.234,0,27.907,14.538,35.683,35.355\r\n\t\tC148.479,245.64,144.737,270.305,130.616,276.698z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M198.347,210.601c1.855,0.081,3.727,0.03,5.563-0.151c10.787-1.059,20.54-6.594,28.207-16.008\r\n\t\tc12.371-15.191,15.806-38.974,13.201-63.439C241.336,93.3,221.469,65.161,194.776,64c0,0-3.811,0.008-5.75,0.193\r\n\t\tc-11.776,1.164-22.481,7.283-30.957,17.695c-12.291,15.101-18.198,37.57-15.803,60.104\r\n\t\tC146.202,179.269,170.836,209.404,198.347,210.601z M171.047,91.831c3.923-4.739,10.51-10.577,19.62-11.476\r\n\t\tc1.143-0.113,2.288-0.146,3.404-0.098c18.207,0.792,31.859,23.271,34.936,52.428c2.146,20.15-0.148,40.055-9.845,51.779\r\n\t\tc-4.874,5.898-10.556,9.204-16.881,9.825c-1.081,0.104-2.167,0.133-3.229,0.087c-19.257-0.838-37.414-25.091-40.473-54.067\r\n\t\tC156.611,121.779,161.273,103.656,171.047,91.831z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M198.347,210.601c1.855,0.081,3.727,0.03,5.563-0.151c10.787-1.059,20.54-6.594,28.207-16.008\r\n\t\tc12.371-15.191,15.806-38.974,13.201-63.439C241.336,93.3,221.469,65.161,194.776,64c0,0-3.811,0.008-5.75,0.193\r\n\t\tc-11.776,1.164-22.481,7.283-30.957,17.695c-12.291,15.101-18.198,37.57-15.803,60.104\r\n\t\tC146.202,179.269,170.836,209.404,198.347,210.601z M171.047,91.831c3.923-4.739,10.51-10.577,19.62-11.476\r\n\t\tc1.143-0.113,2.288-0.146,3.404-0.098c18.207,0.792,31.859,23.271,34.936,52.428c2.146,20.15-0.148,40.055-9.845,51.779\r\n\t\tc-4.874,5.898-10.556,9.204-16.881,9.825c-1.081,0.104-2.167,0.133-3.229,0.087c-19.257-0.838-37.414-25.091-40.473-54.067\r\n\t\tC156.611,121.779,161.273,103.656,171.047,91.831z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,240c-64,0-128,76.074-128,149.128c0,21.798,10.932,39.331,21.667,46.517C162.925,444.516,172.269,448,191.704,448\r\n\t\tc23.093,0,29.325-8.078,40.136-15.205c7.819-5.152,14.572-9.605,24.161-9.605s16.342,4.453,24.16,9.605\r\n\t\tC290.972,439.922,297.203,448,320.297,448c19.434,0,28.778-3.484,42.036-12.355C373.068,428.459,384,410.926,384,389.128\r\n\t\tC384,316.074,320,240,256,240z M353.963,420.776c-10.964,7.337-17.366,9.778-33.666,9.778c-14.225,0-18.624-3.201-25.911-8.51\r\n\t\tc-1.848-1.344-3.759-2.736-5.946-4.177c-8.619-5.682-18.39-12.123-32.439-12.123s-23.82,6.441-32.438,12.121\r\n\t\tc-2.189,1.442-4.1,2.835-5.947,4.179c-7.287,5.309-11.686,8.51-25.911,8.51c-16.3,0-22.703-2.441-33.667-9.778\r\n\t\tC152.395,417,144,405.456,144,389.128c0-30.277,13.377-64.231,35.783-90.823c10.886-12.921,23.517-23.6,36.526-30.885\r\n\t\tC229.713,259.917,243.067,256,256,256c12.934,0,26.287,3.917,39.691,11.42c13.01,7.285,25.64,17.964,36.525,30.885\r\n\t\tC354.623,324.896,368,358.851,368,389.128C368,405.456,359.605,417,353.963,420.776z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,240c-64,0-128,76.074-128,149.128c0,21.798,10.932,39.331,21.667,46.517C162.925,444.516,172.269,448,191.704,448\r\n\t\tc23.093,0,29.325-8.078,40.136-15.205c7.819-5.152,14.572-9.605,24.161-9.605s16.342,4.453,24.16,9.605\r\n\t\tC290.972,439.922,297.203,448,320.297,448c19.434,0,28.778-3.484,42.036-12.355C373.068,428.459,384,410.926,384,389.128\r\n\t\tC384,316.074,320,240,256,240z M353.963,420.776c-10.964,7.337-17.366,9.778-33.666,9.778c-14.225,0-18.624-3.201-25.911-8.51\r\n\t\tc-1.848-1.344-3.759-2.736-5.946-4.177c-8.619-5.682-18.39-12.123-32.439-12.123s-23.82,6.441-32.438,12.121\r\n\t\tc-2.189,1.442-4.1,2.835-5.947,4.179c-7.287,5.309-11.686,8.51-25.911,8.51c-16.3,0-22.703-2.441-33.667-9.778\r\n\t\tC152.395,417,144,405.456,144,389.128c0-30.277,13.377-64.231,35.783-90.823c10.886-12.921,23.517-23.6,36.526-30.885\r\n\t\tC229.713,259.917,243.067,256,256,256c12.934,0,26.287,3.917,39.691,11.42c13.01,7.285,25.64,17.964,36.525,30.885\r\n\t\tC354.623,324.896,368,358.851,368,389.128C368,405.456,359.605,417,353.963,420.776z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M308.281,210.265c1.836,0.182,3.709,0.232,5.563,0.151c27.511-1.196,52.146-31.332,56.081-68.607\r\n\t\tc2.395-22.534-3.514-45.004-15.804-60.104c-8.476-10.412-18.783-16.228-30.56-17.392c-1.939-0.186-6.146-0.312-6.146-0.312\r\n\t\tc-26.693,1.161-46.561,29.115-50.542,66.817c-2.604,24.466,0.83,48.248,13.2,63.439\r\n\t\tC287.741,203.671,297.494,209.206,308.281,210.265z M283.186,132.501c3.076-29.156,16.729-51.636,34.936-52.428\r\n\t\tc1.115-0.048,2.261-0.016,3.404,0.098c9.109,0.898,15.696,6.736,19.619,11.476c9.774,11.825,14.436,29.948,12.468,48.479\r\n\t\tc-3.06,28.977-21.216,53.229-40.474,54.067c-1.061,0.046-2.146,0.017-3.229-0.087c-6.324-0.621-12.007-3.927-16.881-9.825\r\n\t\tC283.334,172.556,281.039,152.651,283.186,132.501z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M308.281,210.265c1.836,0.182,3.709,0.232,5.563,0.151c27.511-1.196,52.146-31.332,56.081-68.607\r\n\t\tc2.395-22.534-3.514-45.004-15.804-60.104c-8.476-10.412-18.783-16.228-30.56-17.392c-1.939-0.186-6.146-0.312-6.146-0.312\r\n\t\tc-26.693,1.161-46.561,29.115-50.542,66.817c-2.604,24.466,0.83,48.248,13.2,63.439\r\n\t\tC287.741,203.671,297.494,209.206,308.281,210.265z M283.186,132.501c3.076-29.156,16.729-51.636,34.936-52.428\r\n\t\tc1.115-0.048,2.261-0.016,3.404,0.098c9.109,0.898,15.696,6.736,19.619,11.476c9.774,11.825,14.436,29.948,12.468,48.479\r\n\t\tc-3.06,28.977-21.216,53.229-40.474,54.067c-1.061,0.046-2.146,0.017-3.229-0.087c-6.324-0.621-12.007-3.927-16.881-9.825\r\n\t\tC283.334,172.556,281.039,152.651,283.186,132.501z" + }, + "children": [] + }] + }] + }] +}; +exports.iosPawOutline = iosPawOutline; \ No newline at end of file diff --git a/dist/ionicons/iosPeople.js b/dist/ionicons/iosPeople.js new file mode 100644 index 000000000..50e412358 --- /dev/null +++ b/dist/ionicons/iosPeople.js @@ -0,0 +1,75 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosPeople = void 0; +var iosPeople = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M349.2,334.8C360.5,338.7,338,330.9,349.2,334.8L349.2,334.8z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M349.2,334.8C360.5,338.7,338,330.9,349.2,334.8L349.2,334.8z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M349.2,334.8c-13.5-4.7-28.1-5-41.6-9.7c-4.1-1.4-12.2-3.1-13.9-7.8c-1.6-4.6-1.6-10-1.9-14.8c-0.2-3.8-0.3-7.6-0.3-11.4\r\n\t\tc0-2.5,6.4-7.8,7.8-10.1c5.4-9,5.9-21.1,6.9-31.3c8.7,2.4,9.8-13.7,11.3-18.6c1.1-3.4,7.8-26.8-2.6-23.6c2.5-4.4,3.5-9.8,4.2-14.7\r\n\t\tc2-12.8,2.8-26.8-1.1-39.3c-8.1-26-33-40.6-59.3-41.4c-26.7-0.9-53.5,11.9-63.5,37.8c-4.8,12.6-4.4,26.3-2.8,39.5\r\n\t\tc0.7,6,1.7,12.7,4.7,18.1c-9.7-2.9-4.5,17.7-3.4,21.3c1.6,5.1,3,23.4,12.1,20.9c0.8,8.1,1.7,16.4,3.9,24.3\r\n\t\tc1.5,5.3,4.6,9.8,8.2,13.9c1.8,2,2.7,2.2,2.6,4.8c-0.1,7.8,0.1,16.2-1.9,23.8c-2,7.6-18.7,10.8-25.4,12.2\r\n\t\tc-18,3.7-34.6,5.4-49.6,16.6C126.1,358.2,117,378.3,117,400c83.3,0,166.6,0,249.9,0c9.4,0,18.7,0,28.1,0\r\n\t\tC395,370.5,377.2,344.5,349.2,334.8z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M349.2,334.8c-13.5-4.7-28.1-5-41.6-9.7c-4.1-1.4-12.2-3.1-13.9-7.8c-1.6-4.6-1.6-10-1.9-14.8c-0.2-3.8-0.3-7.6-0.3-11.4\r\n\t\tc0-2.5,6.4-7.8,7.8-10.1c5.4-9,5.9-21.1,6.9-31.3c8.7,2.4,9.8-13.7,11.3-18.6c1.1-3.4,7.8-26.8-2.6-23.6c2.5-4.4,3.5-9.8,4.2-14.7\r\n\t\tc2-12.8,2.8-26.8-1.1-39.3c-8.1-26-33-40.6-59.3-41.4c-26.7-0.9-53.5,11.9-63.5,37.8c-4.8,12.6-4.4,26.3-2.8,39.5\r\n\t\tc0.7,6,1.7,12.7,4.7,18.1c-9.7-2.9-4.5,17.7-3.4,21.3c1.6,5.1,3,23.4,12.1,20.9c0.8,8.1,1.7,16.4,3.9,24.3\r\n\t\tc1.5,5.3,4.6,9.8,8.2,13.9c1.8,2,2.7,2.2,2.6,4.8c-0.1,7.8,0.1,16.2-1.9,23.8c-2,7.6-18.7,10.8-25.4,12.2\r\n\t\tc-18,3.7-34.6,5.4-49.6,16.6C126.1,358.2,117,378.3,117,400c83.3,0,166.6,0,249.9,0c9.4,0,18.7,0,28.1,0\r\n\t\tC395,370.5,377.2,344.5,349.2,334.8z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M143.3,322.5c0.6-0.3,1.2-0.6,1.6-0.8c-0.3,0.1-0.6,0.3-0.8,0.4C143.8,322.2,143.6,322.3,143.3,322.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M143.3,322.5c0.6-0.3,1.2-0.6,1.6-0.8c-0.3,0.1-0.6,0.3-0.8,0.4C143.8,322.2,143.6,322.3,143.3,322.5z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M143.3,322.5c-3.4,1.7-7.5,3.8,0.8-0.4c3-1.5,2.4-1.2,0.8-0.4c6.8-3.2,14.1-4,21.4-4.7c2.8-0.3,4.1-2.2,2-4.9\r\n\t\tc-4-5.1-17.8-6.1-23.6-8.4c-3.6-1.4-4.6-2.7-4.9-6.7c-0.1-1.8-1.1-9.8,0.3-11.1c1-1,7.3-0.6,8.7-0.8c5.7-0.7,11.5-1.9,16.9-4\r\n\t\tc2.3-0.9,4.5-2,6.5-3.4c2.4-1.8-1.8-6.2-2.9-8.6c-3.4-7.5-4.9-15.7-5.4-23.9c-1-16.1,1.5-32.3-1.5-48.3\r\n\t\tc-4.5-24.5-23.4-36.8-47.5-36.8c-14.9,0-29.6,5.1-37.9,18.1c-9.2,14.3-8.7,32.1-8.2,48.4c0.3,9.3,0.7,18.7-0.6,28\r\n\t\tc-0.6,4-1.5,7.9-2.9,11.7c-1.1,2.9-6.7,10.1-4.5,11.6c8.3,5.9,22.3,7.9,32.3,7.1c0.3,4.9,1.2,11.2-0.6,15.8\r\n\t\tc-2.8,7.2-23.7,9.1-30,11.2C45,317.8,32,332,32,352c18.3,0,36.5,0,54.8,0c8.2,0,16.4,0,24.7,0c1.3,0,6.3-9.3,7.7-10.8\r\n\t\tC126,333.7,134.3,327.2,143.3,322.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M143.3,322.5c-3.4,1.7-7.5,3.8,0.8-0.4c3-1.5,2.4-1.2,0.8-0.4c6.8-3.2,14.1-4,21.4-4.7c2.8-0.3,4.1-2.2,2-4.9\r\n\t\tc-4-5.1-17.8-6.1-23.6-8.4c-3.6-1.4-4.6-2.7-4.9-6.7c-0.1-1.8-1.1-9.8,0.3-11.1c1-1,7.3-0.6,8.7-0.8c5.7-0.7,11.5-1.9,16.9-4\r\n\t\tc2.3-0.9,4.5-2,6.5-3.4c2.4-1.8-1.8-6.2-2.9-8.6c-3.4-7.5-4.9-15.7-5.4-23.9c-1-16.1,1.5-32.3-1.5-48.3\r\n\t\tc-4.5-24.5-23.4-36.8-47.5-36.8c-14.9,0-29.6,5.1-37.9,18.1c-9.2,14.3-8.7,32.1-8.2,48.4c0.3,9.3,0.7,18.7-0.6,28\r\n\t\tc-0.6,4-1.5,7.9-2.9,11.7c-1.1,2.9-6.7,10.1-4.5,11.6c8.3,5.9,22.3,7.9,32.3,7.1c0.3,4.9,1.2,11.2-0.6,15.8\r\n\t\tc-2.8,7.2-23.7,9.1-30,11.2C45,317.8,32,332,32,352c18.3,0,36.5,0,54.8,0c8.2,0,16.4,0,24.7,0c1.3,0,6.3-9.3,7.7-10.8\r\n\t\tC126,333.7,134.3,327.2,143.3,322.5z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M449.3,311.9c-8.1-2.6-23.7-3.4-29.5-10.4c-2.9-3.5-1.3-12.4-1-16.6c4.4,0.4,9.2-0.3,13.7-0.9c4.1-0.6,8.1-1.4,12-2.8\r\n\t\tc1.8-0.7,3.6-1.4,5.3-2.4c3.9-2.3,2.1-2.7,0.1-6.1c-10.9-18.3-6-41.5-6.5-61.6c-0.4-16.7-4.8-35-20-44.4c-13.7-8.5-34-8.8-48.7-2.8\r\n\t\tc-42.4,17-17.4,73.2-31.9,105.4c-2.5,5.4-6.1,7.3,0.2,10.5c3.5,1.8,7.3,3,11.1,3.9c5.8,1.4,11.8,2.2,17.8,2.4c1,0,0.3,12.6,0,13.9\r\n\t\tc-1.1,4.9-11.8,6.3-15.8,7.4c-4.1,1.1-10.9,1.4-12.9,5.7c-3,6.4,9.9,4.8,13.1,5.4c10.3,1.9,19.4,7.6,27.4,14.1\r\n\t\tc6,4.9,14.1,11.5,16.3,19.5c26.7,0,53.5,0,80.2,0C480,332,466.9,317.7,449.3,311.9z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M449.3,311.9c-8.1-2.6-23.7-3.4-29.5-10.4c-2.9-3.5-1.3-12.4-1-16.6c4.4,0.4,9.2-0.3,13.7-0.9c4.1-0.6,8.1-1.4,12-2.8\r\n\t\tc1.8-0.7,3.6-1.4,5.3-2.4c3.9-2.3,2.1-2.7,0.1-6.1c-10.9-18.3-6-41.5-6.5-61.6c-0.4-16.7-4.8-35-20-44.4c-13.7-8.5-34-8.8-48.7-2.8\r\n\t\tc-42.4,17-17.4,73.2-31.9,105.4c-2.5,5.4-6.1,7.3,0.2,10.5c3.5,1.8,7.3,3,11.1,3.9c5.8,1.4,11.8,2.2,17.8,2.4c1,0,0.3,12.6,0,13.9\r\n\t\tc-1.1,4.9-11.8,6.3-15.8,7.4c-4.1,1.1-10.9,1.4-12.9,5.7c-3,6.4,9.9,4.8,13.1,5.4c10.3,1.9,19.4,7.6,27.4,14.1\r\n\t\tc6,4.9,14.1,11.5,16.3,19.5c26.7,0,53.5,0,80.2,0C480,332,466.9,317.7,449.3,311.9z" + }, + "children": [] + }] + }] + }] +}; +exports.iosPeople = iosPeople; \ No newline at end of file diff --git a/dist/ionicons/iosPeopleOutline.js b/dist/ionicons/iosPeopleOutline.js new file mode 100644 index 000000000..3db292b83 --- /dev/null +++ b/dist/ionicons/iosPeopleOutline.js @@ -0,0 +1,71 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosPeopleOutline = void 0; +var iosPeopleOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,112L256,112L256,112z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,112L256,112L256,112z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M349.2,334.8c-13.5-4.7-28.1-5-41.6-9.7c-4.1-1.4-12.2-3.1-13.9-7.8c-1.6-4.6-1.6-10-1.9-14.8c-0.2-3.8-0.3-7.6-0.3-11.4\r\n\t\t\tc0-2.5,6.4-7.8,7.8-10.1c5.4-9,5.9-21.1,6.9-31.3c8.7,2.4,9.8-13.7,11.3-18.6c1.1-3.4,7.8-26.8-2.6-23.6c2.5-4.4,3.5-9.8,4.2-14.7\r\n\t\t\tc2-12.8,2.8-26.8-1.1-39.3c-8.1-26-33-40.6-59.3-41.4c-26.7-0.9-53.5,11.9-63.5,37.8c-4.8,12.6-4.4,26.3-2.8,39.5\r\n\t\t\tc0.7,6,1.7,12.7,4.7,18.1c-9.7-2.9-4.5,17.7-3.4,21.3c1.6,5.1,3,23.4,12.1,20.9c0.8,8.1,1.7,16.4,3.9,24.3\r\n\t\t\tc1.5,5.3,4.6,9.8,8.2,13.9c1.8,2,2.7,2.2,2.6,4.8c-0.1,7.8,0.1,16.2-1.9,23.8c-2,7.6-18.7,10.8-25.4,12.2\r\n\t\t\tc-18,3.7-34.6,5.4-49.6,16.6C126.1,358.2,117,378.3,117,400c83.3,0,166.6,0,249.9,0c9.4,0,18.7,0,28.1,0\r\n\t\t\tC395,370.5,377.2,344.5,349.2,334.8C338,330.9,360.5,338.7,349.2,334.8z M147.1,363.6c5.6-5.9,12.7-11.1,20.4-14\r\n\t\t\tc10.5-4,22.4-3.8,33.3-6.6c9-2.3,20.2-5.9,27.2-12.4c6.4-6,7.1-15.2,7.7-23.5c0.5-7,0.4-13.9,0.4-20.9c0-4.9-5.7-7.7-8.5-11.6\r\n\t\t\tc-4.5-6.1-4.7-15.2-5.6-22.5c-0.4-3.2-0.5-7.3-3.2-9.5c-3-2.4-5.2-3.7-6.7-7.5c-2-5.2-2.7-10.8-4.3-16.2c-1-3.5,2.5-6.8,3.9-9.7\r\n\t\t\tc2.6-5.3-1.9-13.5-2.8-19c-2.8-16.4-2.7-34.3,9.1-47.3c23.7-26.2,78-17.9,85.8,18.9c2.4,11.5,0.9,24.9-2.3,36.1\r\n\t\t\tc-1.4,4.8-3,8.3-0.2,13c4.2,6.8,2.4,11.2,0.4,18.8c-1.6,6.3-3.6,9.1-8.4,13c-4,3.2-3.4,11.2-4.1,15.8c-0.8,5.6-1.3,11.5-4.7,16.2\r\n\t\t\tc-1.3,1.8-8.4,7.4-8.4,9.3c0,11-0.5,22.2,1.4,33.1c2.6,15.5,15.6,19.2,28.6,24.5c13.2,5.1,28.5,3.2,41.3,9.5\r\n\t\t\tc13.2,6.5,25.9,18.4,29.7,33.1c-79.3,0-158.6,0-237.9,0c-1.4,0-2.8,0-4.2,0C136.9,375.9,141.5,369.6,147.1,363.6\r\n\t\t\tC156.3,353.9,141.2,369.9,147.1,363.6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M349.2,334.8c-13.5-4.7-28.1-5-41.6-9.7c-4.1-1.4-12.2-3.1-13.9-7.8c-1.6-4.6-1.6-10-1.9-14.8c-0.2-3.8-0.3-7.6-0.3-11.4\r\n\t\t\tc0-2.5,6.4-7.8,7.8-10.1c5.4-9,5.9-21.1,6.9-31.3c8.7,2.4,9.8-13.7,11.3-18.6c1.1-3.4,7.8-26.8-2.6-23.6c2.5-4.4,3.5-9.8,4.2-14.7\r\n\t\t\tc2-12.8,2.8-26.8-1.1-39.3c-8.1-26-33-40.6-59.3-41.4c-26.7-0.9-53.5,11.9-63.5,37.8c-4.8,12.6-4.4,26.3-2.8,39.5\r\n\t\t\tc0.7,6,1.7,12.7,4.7,18.1c-9.7-2.9-4.5,17.7-3.4,21.3c1.6,5.1,3,23.4,12.1,20.9c0.8,8.1,1.7,16.4,3.9,24.3\r\n\t\t\tc1.5,5.3,4.6,9.8,8.2,13.9c1.8,2,2.7,2.2,2.6,4.8c-0.1,7.8,0.1,16.2-1.9,23.8c-2,7.6-18.7,10.8-25.4,12.2\r\n\t\t\tc-18,3.7-34.6,5.4-49.6,16.6C126.1,358.2,117,378.3,117,400c83.3,0,166.6,0,249.9,0c9.4,0,18.7,0,28.1,0\r\n\t\t\tC395,370.5,377.2,344.5,349.2,334.8C338,330.9,360.5,338.7,349.2,334.8z M147.1,363.6c5.6-5.9,12.7-11.1,20.4-14\r\n\t\t\tc10.5-4,22.4-3.8,33.3-6.6c9-2.3,20.2-5.9,27.2-12.4c6.4-6,7.1-15.2,7.7-23.5c0.5-7,0.4-13.9,0.4-20.9c0-4.9-5.7-7.7-8.5-11.6\r\n\t\t\tc-4.5-6.1-4.7-15.2-5.6-22.5c-0.4-3.2-0.5-7.3-3.2-9.5c-3-2.4-5.2-3.7-6.7-7.5c-2-5.2-2.7-10.8-4.3-16.2c-1-3.5,2.5-6.8,3.9-9.7\r\n\t\t\tc2.6-5.3-1.9-13.5-2.8-19c-2.8-16.4-2.7-34.3,9.1-47.3c23.7-26.2,78-17.9,85.8,18.9c2.4,11.5,0.9,24.9-2.3,36.1\r\n\t\t\tc-1.4,4.8-3,8.3-0.2,13c4.2,6.8,2.4,11.2,0.4,18.8c-1.6,6.3-3.6,9.1-8.4,13c-4,3.2-3.4,11.2-4.1,15.8c-0.8,5.6-1.3,11.5-4.7,16.2\r\n\t\t\tc-1.3,1.8-8.4,7.4-8.4,9.3c0,11-0.5,22.2,1.4,33.1c2.6,15.5,15.6,19.2,28.6,24.5c13.2,5.1,28.5,3.2,41.3,9.5\r\n\t\t\tc13.2,6.5,25.9,18.4,29.7,33.1c-79.3,0-158.6,0-237.9,0c-1.4,0-2.8,0-4.2,0C136.9,375.9,141.5,369.6,147.1,363.6\r\n\t\t\tC156.3,353.9,141.2,369.9,147.1,363.6z" + }, + "children": [] + }] + }] + }] + }, { + "name": "path", + "attribs": { + "d": "M144.1,322c7-3.5,14.6-4.3,22.3-5.1c2.8-0.3,4.1-2.2,2-4.9c-4-5.1-17.8-6.1-23.6-8.4c-3.6-1.4-4.6-2.7-4.9-6.7\r\n\t\tc-0.1-1.8-1.1-9.8,0.3-11.1c1-1,7.3-0.6,8.7-0.8c5.7-0.7,11.5-1.9,16.9-4c2.3-0.9,4.5-2,6.5-3.4c2.4-1.8-1.8-6.2-2.9-8.6\r\n\t\tc-3.4-7.5-4.9-15.7-5.4-23.9c-1-16.1,1.5-32.3-1.5-48.3c-4.5-24.5-23.4-36.8-47.5-36.8c-14.9,0-29.6,5.1-37.9,18.1\r\n\t\tc-9.2,14.3-8.7,32.1-8.2,48.4c0.3,9.3,0.7,18.7-0.6,28c-0.6,4-1.5,7.9-2.9,11.7c-1.1,2.9-6.7,10.1-4.5,11.6\r\n\t\tc8.3,5.9,22.3,7.9,32.3,7.1c0.3,4.9,1.2,11.2-0.6,15.8c-2.8,7.2-23.7,9.1-30,11.2C45,317.8,32,332.5,32,352c18.3,0,36.5,0,54.8,0\r\n\t\tc8.2,0,16.4,0,24.7,0c1.3,0,6.3-9.3,7.7-10.8C126.2,333.4,134.8,326.7,144.1,322C153.1,317.5,129.5,329.4,144.1,322z M102.8,336\r\n\t\tc-16.3,0-32.6,0-48.9,0c7.1-11.8,24.9-11,36.6-15.2c10.8-3.9,17.7-10.5,18.8-22c0.1-1.3,0.2-29.2-0.9-29.2\r\n\t\tc-8.7-0.3-17.8-0.1-26.5-1.4c6.9-22.3,0.3-45.3,4-67.8c2.7-16.3,13.1-25.3,29.7-25.3c15.9,0,27.7,7.4,31.1,23.4\r\n\t\tc4.8,23.2-2,46.9,5.4,69.9c-5.5,1.4-11.3,1.6-17,1.8c-2.8,0.1-5.7,0.2-8.5,0.3c-1.8,0.1-1.2,3.2-1.3,4.7c-1,10.9-5,28.1,3.7,36.9\r\n\t\tC119.4,318.1,109,326.4,102.8,336z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M144.1,322c7-3.5,14.6-4.3,22.3-5.1c2.8-0.3,4.1-2.2,2-4.9c-4-5.1-17.8-6.1-23.6-8.4c-3.6-1.4-4.6-2.7-4.9-6.7\r\n\t\tc-0.1-1.8-1.1-9.8,0.3-11.1c1-1,7.3-0.6,8.7-0.8c5.7-0.7,11.5-1.9,16.9-4c2.3-0.9,4.5-2,6.5-3.4c2.4-1.8-1.8-6.2-2.9-8.6\r\n\t\tc-3.4-7.5-4.9-15.7-5.4-23.9c-1-16.1,1.5-32.3-1.5-48.3c-4.5-24.5-23.4-36.8-47.5-36.8c-14.9,0-29.6,5.1-37.9,18.1\r\n\t\tc-9.2,14.3-8.7,32.1-8.2,48.4c0.3,9.3,0.7,18.7-0.6,28c-0.6,4-1.5,7.9-2.9,11.7c-1.1,2.9-6.7,10.1-4.5,11.6\r\n\t\tc8.3,5.9,22.3,7.9,32.3,7.1c0.3,4.9,1.2,11.2-0.6,15.8c-2.8,7.2-23.7,9.1-30,11.2C45,317.8,32,332.5,32,352c18.3,0,36.5,0,54.8,0\r\n\t\tc8.2,0,16.4,0,24.7,0c1.3,0,6.3-9.3,7.7-10.8C126.2,333.4,134.8,326.7,144.1,322C153.1,317.5,129.5,329.4,144.1,322z M102.8,336\r\n\t\tc-16.3,0-32.6,0-48.9,0c7.1-11.8,24.9-11,36.6-15.2c10.8-3.9,17.7-10.5,18.8-22c0.1-1.3,0.2-29.2-0.9-29.2\r\n\t\tc-8.7-0.3-17.8-0.1-26.5-1.4c6.9-22.3,0.3-45.3,4-67.8c2.7-16.3,13.1-25.3,29.7-25.3c15.9,0,27.7,7.4,31.1,23.4\r\n\t\tc4.8,23.2-2,46.9,5.4,69.9c-5.5,1.4-11.3,1.6-17,1.8c-2.8,0.1-5.7,0.2-8.5,0.3c-1.8,0.1-1.2,3.2-1.3,4.7c-1,10.9-5,28.1,3.7,36.9\r\n\t\tC119.4,318.1,109,326.4,102.8,336z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M399.8,352c26.7,0,53.5,0,80.2,0c0-19.5-13.1-34.3-30.7-40.1c-8.1-2.6-23.7-3.4-29.5-10.4c-2.9-3.5-1.3-12.4-1-16.6\r\n\t\tc4.4,0.4,9.2-0.3,13.7-0.9c4.1-0.6,8.1-1.4,12-2.8c1.8-0.7,3.6-1.4,5.3-2.4c3.9-2.3,2.1-2.7,0.1-6.1c-10.9-18.3-6-41.5-6.5-61.6\r\n\t\tc-0.4-16.7-4.8-35-20-44.4c-13.7-8.5-34-8.8-48.7-2.8c-42.4,17-17.4,73.2-31.9,105.4c-2.5,5.4-6.1,7.3,0.2,10.5\r\n\t\tc3.5,1.8,7.3,3,11.1,3.9c5.8,1.4,11.8,2.2,17.8,2.4c1,0,0.3,12.6,0,13.9c-1.1,4.9-11.8,6.3-15.8,7.4c-4.1,1.1-10.9,1.4-12.9,5.7\r\n\t\tc-3,6.4,9.9,4.8,13.1,5.4c10.3,1.9,19.4,7.6,27.4,14.1C389.6,337.4,397.6,344.2,399.8,352z M399.4,324.9c-5.1-4.7-10.4-9.3-16.3-13\r\n\t\tc8.8-8.8,4.7-25.9,3.7-36.9c-0.6-6.3-2-4.7-8.3-4.9c-6-0.2-12.8,0.1-18.5-1.8c7.2-22.3,1.3-45.2,5-67.9\r\n\t\tc2.8-17.1,14.5-25.5,31.5-25.5c15.4,0,26,7.7,29.2,23c4.9,23.1-2.6,47,4.5,70c-8.5,1.3-17.3,1-25.9,1.3c-2.1,0.1-1.9,25.1-1.7,27.3\r\n\t\tc0.7,11.7,6.1,18.8,17.2,23.3c12.1,4.9,31,3.6,38.4,15.9c-9.3,0-18.5,0-27.8,0c-5.6,0-11.2,0-16.9,0\r\n\t\tC406.4,335.8,404.6,329.6,399.4,324.9C394.4,320.3,403.4,328.5,399.4,324.9z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M399.8,352c26.7,0,53.5,0,80.2,0c0-19.5-13.1-34.3-30.7-40.1c-8.1-2.6-23.7-3.4-29.5-10.4c-2.9-3.5-1.3-12.4-1-16.6\r\n\t\tc4.4,0.4,9.2-0.3,13.7-0.9c4.1-0.6,8.1-1.4,12-2.8c1.8-0.7,3.6-1.4,5.3-2.4c3.9-2.3,2.1-2.7,0.1-6.1c-10.9-18.3-6-41.5-6.5-61.6\r\n\t\tc-0.4-16.7-4.8-35-20-44.4c-13.7-8.5-34-8.8-48.7-2.8c-42.4,17-17.4,73.2-31.9,105.4c-2.5,5.4-6.1,7.3,0.2,10.5\r\n\t\tc3.5,1.8,7.3,3,11.1,3.9c5.8,1.4,11.8,2.2,17.8,2.4c1,0,0.3,12.6,0,13.9c-1.1,4.9-11.8,6.3-15.8,7.4c-4.1,1.1-10.9,1.4-12.9,5.7\r\n\t\tc-3,6.4,9.9,4.8,13.1,5.4c10.3,1.9,19.4,7.6,27.4,14.1C389.6,337.4,397.6,344.2,399.8,352z M399.4,324.9c-5.1-4.7-10.4-9.3-16.3-13\r\n\t\tc8.8-8.8,4.7-25.9,3.7-36.9c-0.6-6.3-2-4.7-8.3-4.9c-6-0.2-12.8,0.1-18.5-1.8c7.2-22.3,1.3-45.2,5-67.9\r\n\t\tc2.8-17.1,14.5-25.5,31.5-25.5c15.4,0,26,7.7,29.2,23c4.9,23.1-2.6,47,4.5,70c-8.5,1.3-17.3,1-25.9,1.3c-2.1,0.1-1.9,25.1-1.7,27.3\r\n\t\tc0.7,11.7,6.1,18.8,17.2,23.3c12.1,4.9,31,3.6,38.4,15.9c-9.3,0-18.5,0-27.8,0c-5.6,0-11.2,0-16.9,0\r\n\t\tC406.4,335.8,404.6,329.6,399.4,324.9C394.4,320.3,403.4,328.5,399.4,324.9z" + }, + "children": [] + }] + }] + }] +}; +exports.iosPeopleOutline = iosPeopleOutline; \ No newline at end of file diff --git a/dist/ionicons/iosPerson.js b/dist/ionicons/iosPerson.js new file mode 100644 index 000000000..2e295e441 --- /dev/null +++ b/dist/ionicons/iosPerson.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosPerson = void 0; +var iosPerson = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M363.3,363.9c-12.9-4.6-31.4-6.2-43.2-8.8c-6.8-1.5-16.7-5.3-20-9.2c-3.3-4-1.3-40.9-1.3-40.9s6.1-9.6,9.4-18\r\n\t\ts6.9-31.4,6.9-31.4s6.8,0,9.2-11.9c2.6-13,6.6-18.4,6.1-28.1c-0.5-9-5.2-9.5-5.7-9.5l0,0c0,0,4.9-13.6,5.6-42.4\r\n\t\tC331.1,129.6,305,96,256,96s-75,33.5-74.3,67.6c0.6,28.7,5.6,42.4,5.6,42.4l0,0c-0.5,0-5.2,0.5-5.7,9.5c-0.5,9.7,3.6,14.9,6.1,27.9\r\n\t\tc2.4,11.9,9.2,12,9.2,12s3.6,23.1,6.9,31.5c3.3,8.5,9.4,18,9.4,18s2,36.9-1.3,40.9c-3.3,4-13.2,7.7-20,9.2\r\n\t\tc-11.9,2.6-30.3,4.3-43.2,8.9C135.8,368.5,96,384,96,416h160h160C416,384,376.2,368.5,363.3,363.9z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M363.3,363.9c-12.9-4.6-31.4-6.2-43.2-8.8c-6.8-1.5-16.7-5.3-20-9.2c-3.3-4-1.3-40.9-1.3-40.9s6.1-9.6,9.4-18\r\n\t\ts6.9-31.4,6.9-31.4s6.8,0,9.2-11.9c2.6-13,6.6-18.4,6.1-28.1c-0.5-9-5.2-9.5-5.7-9.5l0,0c0,0,4.9-13.6,5.6-42.4\r\n\t\tC331.1,129.6,305,96,256,96s-75,33.5-74.3,67.6c0.6,28.7,5.6,42.4,5.6,42.4l0,0c-0.5,0-5.2,0.5-5.7,9.5c-0.5,9.7,3.6,14.9,6.1,27.9\r\n\t\tc2.4,11.9,9.2,12,9.2,12s3.6,23.1,6.9,31.5c3.3,8.5,9.4,18,9.4,18s2,36.9-1.3,40.9c-3.3,4-13.2,7.7-20,9.2\r\n\t\tc-11.9,2.6-30.3,4.3-43.2,8.9C135.8,368.5,96,384,96,416h160h160C416,384,376.2,368.5,363.3,363.9z" + }, + "children": [] + }] + }] + }] +}; +exports.iosPerson = iosPerson; \ No newline at end of file diff --git a/dist/ionicons/iosPersonOutline.js b/dist/ionicons/iosPersonOutline.js new file mode 100644 index 000000000..636dd1af8 --- /dev/null +++ b/dist/ionicons/iosPersonOutline.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosPersonOutline = void 0; +var iosPersonOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M202.4,201.7L202.4,201.7L202.4,201.7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M202.4,201.7L202.4,201.7L202.4,201.7z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M363.3,363.9c-12.9-4.6-31.4-6.2-43.2-8.8c-6.8-1.5-16.7-5.3-20-9.2c-3.3-4-1.3-40.9-1.3-40.9s6.1-9.6,9.4-18\r\n\t\ts6.9-31.4,6.9-31.4s6.8,0,9.2-11.9c2.6-13,6.6-18.4,6.1-28.1c-0.5-9-5.2-9.5-5.7-9.5l0,0c0,0,4.9-13.6,5.6-42.4\r\n\t\tC331.1,129.6,305,96,256,96s-75,33.5-74.3,67.6c0.6,28.7,5.6,42.4,5.6,42.4l0,0c-0.5,0-5.2,0.5-5.7,9.5c-0.5,9.7,3.6,14.9,6.1,27.9\r\n\t\tc2.4,11.9,9.2,12,9.2,12s3.6,23.1,6.9,31.5c3.3,8.5,9.4,18,9.4,18s2,36.9-1.3,40.9c-3.3,4-13.2,7.7-20,9.2\r\n\t\tc-11.9,2.6-30.3,4.3-43.2,8.9C135.8,368.5,96,384,96,416h160h160C416,384,376.2,368.5,363.3,363.9z M256,400H118.7\r\n\t\tc2-3,4.7-5.1,8.2-7.6c7-5.1,16.1-9.8,27.1-13.6c6.8-2.4,16.7-4,25.4-5.3c5.7-0.9,11.1-1.7,15.9-2.8c3.4-0.8,20.8-5,28.8-14.6\r\n\t\tc4.5-5.4,5.8-12.7,5.6-32.3c-0.1-10-0.6-19.3-0.6-19.7l-0.2-4.2l-2.3-3.5c-1.5-2.3-5.8-9.5-8-15.3c-1.8-4.7-4.6-19.2-6-28.1\r\n\t\tc0,0,0.4,1-0.5-3.7c-0.9-4.7-8.4-4.3-9.4-8c-0.9-3.6-1.8-6.9-4.3-18.2c-2.5-11.3,2.8-11.2,3.9-16.2c0.6-3.1,0-5.7,0-5.8l0,0\r\n\t\tc-0.3-1-4.1-13.4-4.7-37.7c-0.3-13.2,4.6-25.6,13.8-34.9c10.6-10.8,26-16.5,44.5-16.5c19,0,34,5.7,44.6,16.5\r\n\t\tc9.2,9.3,14.1,21.7,13.8,34.9c-0.5,24.2-4.3,36.6-4.7,37.7l0,0c0,0.1-0.6,1.7-0.4,5.2c0.2,5.4,6.8,5.5,4.3,16.8\r\n\t\tc-2.5,11.3-3.4,14.6-4.3,18.2c-0.9,3.6-8.5,3.3-9.4,8c-0.9,4.7-0.5,3.7-0.5,3.7c-1.4,8.9-4.2,23.4-6,28.1c-2.3,5.8-6.6,13-8,15.3\r\n\t\tl-2.3,3.5l-0.2,4.2c0,0.4-0.5,9.7-0.6,19.7c-0.2,19.6,1.1,26.9,5.6,32.3c8,9.5,25.4,13.8,28.8,14.6c4.8,1.1,10.2,1.9,15.9,2.8\r\n\t\tc8.7,1.3,18.6,2.9,25.4,5.3c11,3.9,20.2,8.6,27.1,13.7c3.5,2.5,6.2,4.6,8.2,7.6L256,400L256,400z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M363.3,363.9c-12.9-4.6-31.4-6.2-43.2-8.8c-6.8-1.5-16.7-5.3-20-9.2c-3.3-4-1.3-40.9-1.3-40.9s6.1-9.6,9.4-18\r\n\t\ts6.9-31.4,6.9-31.4s6.8,0,9.2-11.9c2.6-13,6.6-18.4,6.1-28.1c-0.5-9-5.2-9.5-5.7-9.5l0,0c0,0,4.9-13.6,5.6-42.4\r\n\t\tC331.1,129.6,305,96,256,96s-75,33.5-74.3,67.6c0.6,28.7,5.6,42.4,5.6,42.4l0,0c-0.5,0-5.2,0.5-5.7,9.5c-0.5,9.7,3.6,14.9,6.1,27.9\r\n\t\tc2.4,11.9,9.2,12,9.2,12s3.6,23.1,6.9,31.5c3.3,8.5,9.4,18,9.4,18s2,36.9-1.3,40.9c-3.3,4-13.2,7.7-20,9.2\r\n\t\tc-11.9,2.6-30.3,4.3-43.2,8.9C135.8,368.5,96,384,96,416h160h160C416,384,376.2,368.5,363.3,363.9z M256,400H118.7\r\n\t\tc2-3,4.7-5.1,8.2-7.6c7-5.1,16.1-9.8,27.1-13.6c6.8-2.4,16.7-4,25.4-5.3c5.7-0.9,11.1-1.7,15.9-2.8c3.4-0.8,20.8-5,28.8-14.6\r\n\t\tc4.5-5.4,5.8-12.7,5.6-32.3c-0.1-10-0.6-19.3-0.6-19.7l-0.2-4.2l-2.3-3.5c-1.5-2.3-5.8-9.5-8-15.3c-1.8-4.7-4.6-19.2-6-28.1\r\n\t\tc0,0,0.4,1-0.5-3.7c-0.9-4.7-8.4-4.3-9.4-8c-0.9-3.6-1.8-6.9-4.3-18.2c-2.5-11.3,2.8-11.2,3.9-16.2c0.6-3.1,0-5.7,0-5.8l0,0\r\n\t\tc-0.3-1-4.1-13.4-4.7-37.7c-0.3-13.2,4.6-25.6,13.8-34.9c10.6-10.8,26-16.5,44.5-16.5c19,0,34,5.7,44.6,16.5\r\n\t\tc9.2,9.3,14.1,21.7,13.8,34.9c-0.5,24.2-4.3,36.6-4.7,37.7l0,0c0,0.1-0.6,1.7-0.4,5.2c0.2,5.4,6.8,5.5,4.3,16.8\r\n\t\tc-2.5,11.3-3.4,14.6-4.3,18.2c-0.9,3.6-8.5,3.3-9.4,8c-0.9,4.7-0.5,3.7-0.5,3.7c-1.4,8.9-4.2,23.4-6,28.1c-2.3,5.8-6.6,13-8,15.3\r\n\t\tl-2.3,3.5l-0.2,4.2c0,0.4-0.5,9.7-0.6,19.7c-0.2,19.6,1.1,26.9,5.6,32.3c8,9.5,25.4,13.8,28.8,14.6c4.8,1.1,10.2,1.9,15.9,2.8\r\n\t\tc8.7,1.3,18.6,2.9,25.4,5.3c11,3.9,20.2,8.6,27.1,13.7c3.5,2.5,6.2,4.6,8.2,7.6L256,400L256,400z" + }, + "children": [] + }] + }] + }] +}; +exports.iosPersonOutline = iosPersonOutline; \ No newline at end of file diff --git a/dist/ionicons/iosPersonadd.js b/dist/ionicons/iosPersonadd.js new file mode 100644 index 000000000..eba57c610 --- /dev/null +++ b/dist/ionicons/iosPersonadd.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosPersonadd = void 0; +var iosPersonadd = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "416,153 391,153 391,128 377,128 377,153 352,153 352,167 377,167 377,192 391,192 391,167 416,167 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "416,153 391,153 391,128 377,128 377,153 352,153 352,167 377,167 377,192 391,192 391,167 416,167 \t" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M363.3,363.9c-12.9-4.6-31.4-6.2-43.2-8.8c-6.8-1.5-16.7-5.3-20-9.2c-3.3-4-1.3-40.9-1.3-40.9s6.1-9.6,9.4-18\r\n\t\t\tc3.3-8.4,6.9-31.4,6.9-31.4s6.8,0,9.2-11.9c2.6-13,6.6-18.4,6.1-28.1c-0.5-9-5.2-9.5-5.7-9.5c0,0,0,0,0,0s4.9-13.6,5.6-42.4\r\n\t\t\tC331.1,129.6,305,96,256,96c-49,0-75,33.5-74.3,67.6c0.6,28.7,5.6,42.4,5.6,42.4s0,0,0,0c-0.5,0-5.2,0.5-5.7,9.5\r\n\t\t\tc-0.5,9.7,3.6,14.9,6.1,27.9c2.4,11.9,9.2,12,9.2,12s3.6,23.1,6.9,31.5c3.3,8.5,9.4,18,9.4,18s2,36.9-1.3,40.9\r\n\t\t\tc-3.3,4-13.2,7.7-20,9.2c-11.9,2.6-30.3,4.3-43.2,8.9C135.8,368.5,96,384,96,416h160h160C416,384,376.2,368.5,363.3,363.9z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M363.3,363.9c-12.9-4.6-31.4-6.2-43.2-8.8c-6.8-1.5-16.7-5.3-20-9.2c-3.3-4-1.3-40.9-1.3-40.9s6.1-9.6,9.4-18\r\n\t\t\tc3.3-8.4,6.9-31.4,6.9-31.4s6.8,0,9.2-11.9c2.6-13,6.6-18.4,6.1-28.1c-0.5-9-5.2-9.5-5.7-9.5c0,0,0,0,0,0s4.9-13.6,5.6-42.4\r\n\t\t\tC331.1,129.6,305,96,256,96c-49,0-75,33.5-74.3,67.6c0.6,28.7,5.6,42.4,5.6,42.4s0,0,0,0c-0.5,0-5.2,0.5-5.7,9.5\r\n\t\t\tc-0.5,9.7,3.6,14.9,6.1,27.9c2.4,11.9,9.2,12,9.2,12s3.6,23.1,6.9,31.5c3.3,8.5,9.4,18,9.4,18s2,36.9-1.3,40.9\r\n\t\t\tc-3.3,4-13.2,7.7-20,9.2c-11.9,2.6-30.3,4.3-43.2,8.9C135.8,368.5,96,384,96,416h160h160C416,384,376.2,368.5,363.3,363.9z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.iosPersonadd = iosPersonadd; \ No newline at end of file diff --git a/dist/ionicons/iosPersonaddOutline.js b/dist/ionicons/iosPersonaddOutline.js new file mode 100644 index 000000000..b739be6ec --- /dev/null +++ b/dist/ionicons/iosPersonaddOutline.js @@ -0,0 +1,59 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosPersonaddOutline = void 0; +var iosPersonaddOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "416,153 391,153 391,128 377,128 377,153 352,153 352,167 377,167 377,192 391,192 391,167 416,167 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "416,153 391,153 391,128 377,128 377,153 352,153 352,167 377,167 377,192 391,192 391,167 416,167 \t" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M202.4,201.7C202.4,201.7,202.4,201.7,202.4,201.7L202.4,201.7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M202.4,201.7C202.4,201.7,202.4,201.7,202.4,201.7L202.4,201.7z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M363.3,363.9c-12.9-4.6-31.4-6.2-43.2-8.8c-6.8-1.5-16.7-5.3-20-9.2c-3.3-4-1.3-40.9-1.3-40.9s6.1-9.6,9.4-18\r\n\t\t\tc3.3-8.4,6.9-31.4,6.9-31.4s6.8,0,9.2-11.9c2.6-13,6.6-18.4,6.1-28.1c-0.5-9-5.2-9.5-5.7-9.5c0,0,0,0,0,0s4.9-13.6,5.6-42.4\r\n\t\t\tC331.1,129.6,305,96,256,96c-49,0-75,33.5-74.3,67.6c0.6,28.7,5.6,42.4,5.6,42.4s0,0,0,0c-0.5,0-5.2,0.5-5.7,9.5\r\n\t\t\tc-0.5,9.7,3.6,14.9,6.1,27.9c2.4,11.9,9.2,12,9.2,12s3.6,23.1,6.9,31.5c3.3,8.5,9.4,18,9.4,18s2,36.9-1.3,40.9\r\n\t\t\tc-3.3,4-13.2,7.7-20,9.2c-11.9,2.6-30.3,4.3-43.2,8.9C135.8,368.5,96,384,96,416h160h160C416,384,376.2,368.5,363.3,363.9z\r\n\t\t\t M256,400H118.7c2-3,4.7-5.1,8.2-7.6c7-5.1,16.1-9.8,27.1-13.6c6.8-2.4,16.7-4,25.4-5.3c5.7-0.9,11.1-1.7,15.9-2.8\r\n\t\t\tc3.4-0.8,20.8-5,28.8-14.6c4.5-5.4,5.8-12.7,5.6-32.3c-0.1-10-0.6-19.3-0.6-19.7l-0.2-4.2l-2.3-3.5c-1.5-2.3-5.8-9.5-8-15.3\r\n\t\t\tc-1.8-4.7-4.6-19.2-6-28.1c0,0,0.4,1-0.5-3.7c-0.9-4.7-8.4-4.3-9.4-8c-0.9-3.6-1.8-6.9-4.3-18.2c-2.5-11.3,2.8-11.2,3.9-16.2\r\n\t\t\tc0.6-3.1,0-5.7,0-5.8c0,0,0,0,0,0c-0.3-1-4.1-13.4-4.7-37.7c-0.3-13.2,4.6-25.6,13.8-34.9c10.6-10.8,26-16.5,44.5-16.5\r\n\t\t\tc19,0,34,5.7,44.6,16.5c9.2,9.3,14.1,21.7,13.8,34.9c-0.5,24.2-4.3,36.6-4.7,37.7c0,0,0,0,0,0c0,0.1-0.6,1.7-0.4,5.2\r\n\t\t\tc0.2,5.4,6.8,5.5,4.3,16.8c-2.5,11.3-3.4,14.6-4.3,18.2c-0.9,3.6-8.5,3.3-9.4,8s-0.5,3.7-0.5,3.7c-1.4,8.9-4.2,23.4-6,28.1\r\n\t\t\tc-2.3,5.8-6.6,13-8,15.3l-2.3,3.5l-0.2,4.2c0,0.4-0.5,9.7-0.6,19.7c-0.2,19.6,1.1,26.9,5.6,32.3c8,9.5,25.4,13.8,28.8,14.6\r\n\t\t\tc4.8,1.1,10.2,1.9,15.9,2.8c8.7,1.3,18.6,2.9,25.4,5.3c11,3.9,20.2,8.6,27.1,13.7c3.5,2.5,6.2,4.6,8.2,7.6H256z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M363.3,363.9c-12.9-4.6-31.4-6.2-43.2-8.8c-6.8-1.5-16.7-5.3-20-9.2c-3.3-4-1.3-40.9-1.3-40.9s6.1-9.6,9.4-18\r\n\t\t\tc3.3-8.4,6.9-31.4,6.9-31.4s6.8,0,9.2-11.9c2.6-13,6.6-18.4,6.1-28.1c-0.5-9-5.2-9.5-5.7-9.5c0,0,0,0,0,0s4.9-13.6,5.6-42.4\r\n\t\t\tC331.1,129.6,305,96,256,96c-49,0-75,33.5-74.3,67.6c0.6,28.7,5.6,42.4,5.6,42.4s0,0,0,0c-0.5,0-5.2,0.5-5.7,9.5\r\n\t\t\tc-0.5,9.7,3.6,14.9,6.1,27.9c2.4,11.9,9.2,12,9.2,12s3.6,23.1,6.9,31.5c3.3,8.5,9.4,18,9.4,18s2,36.9-1.3,40.9\r\n\t\t\tc-3.3,4-13.2,7.7-20,9.2c-11.9,2.6-30.3,4.3-43.2,8.9C135.8,368.5,96,384,96,416h160h160C416,384,376.2,368.5,363.3,363.9z\r\n\t\t\t M256,400H118.7c2-3,4.7-5.1,8.2-7.6c7-5.1,16.1-9.8,27.1-13.6c6.8-2.4,16.7-4,25.4-5.3c5.7-0.9,11.1-1.7,15.9-2.8\r\n\t\t\tc3.4-0.8,20.8-5,28.8-14.6c4.5-5.4,5.8-12.7,5.6-32.3c-0.1-10-0.6-19.3-0.6-19.7l-0.2-4.2l-2.3-3.5c-1.5-2.3-5.8-9.5-8-15.3\r\n\t\t\tc-1.8-4.7-4.6-19.2-6-28.1c0,0,0.4,1-0.5-3.7c-0.9-4.7-8.4-4.3-9.4-8c-0.9-3.6-1.8-6.9-4.3-18.2c-2.5-11.3,2.8-11.2,3.9-16.2\r\n\t\t\tc0.6-3.1,0-5.7,0-5.8c0,0,0,0,0,0c-0.3-1-4.1-13.4-4.7-37.7c-0.3-13.2,4.6-25.6,13.8-34.9c10.6-10.8,26-16.5,44.5-16.5\r\n\t\t\tc19,0,34,5.7,44.6,16.5c9.2,9.3,14.1,21.7,13.8,34.9c-0.5,24.2-4.3,36.6-4.7,37.7c0,0,0,0,0,0c0,0.1-0.6,1.7-0.4,5.2\r\n\t\t\tc0.2,5.4,6.8,5.5,4.3,16.8c-2.5,11.3-3.4,14.6-4.3,18.2c-0.9,3.6-8.5,3.3-9.4,8s-0.5,3.7-0.5,3.7c-1.4,8.9-4.2,23.4-6,28.1\r\n\t\t\tc-2.3,5.8-6.6,13-8,15.3l-2.3,3.5l-0.2,4.2c0,0.4-0.5,9.7-0.6,19.7c-0.2,19.6,1.1,26.9,5.6,32.3c8,9.5,25.4,13.8,28.8,14.6\r\n\t\t\tc4.8,1.1,10.2,1.9,15.9,2.8c8.7,1.3,18.6,2.9,25.4,5.3c11,3.9,20.2,8.6,27.1,13.7c3.5,2.5,6.2,4.6,8.2,7.6H256z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.iosPersonaddOutline = iosPersonaddOutline; \ No newline at end of file diff --git a/dist/ionicons/iosPhotos.js b/dist/ionicons/iosPhotos.js new file mode 100644 index 000000000..1758b7993 --- /dev/null +++ b/dist/ionicons/iosPhotos.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosPhotos = void 0; +var iosPhotos = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M96,128v320h384V128H96z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M96,128v320h384V128H96z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "416,64 32,64 32,384 80,384 80,112 416,112 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "416,64 32,64 32,384 80,384 80,112 416,112 \t" + }, + "children": [] + }] + }] + }] +}; +exports.iosPhotos = iosPhotos; \ No newline at end of file diff --git a/dist/ionicons/iosPhotosOutline.js b/dist/ionicons/iosPhotosOutline.js new file mode 100644 index 000000000..2943173ce --- /dev/null +++ b/dist/ionicons/iosPhotosOutline.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosPhotosOutline = void 0; +var iosPhotosOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M96,128v320h384V128H96z M464,432H112V144h352V432z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M96,128v320h384V128H96z M464,432H112V144h352V432z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "32,64 32,384 80,384 80,368 48,368 48,80 400,80 400,112 416,112 416,64 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "32,64 32,384 80,384 80,368 48,368 48,80 400,80 400,112 416,112 416,64 \t" + }, + "children": [] + }] + }] + }] +}; +exports.iosPhotosOutline = iosPhotosOutline; \ No newline at end of file diff --git a/dist/ionicons/iosPie.js b/dist/ionicons/iosPie.js new file mode 100644 index 000000000..856f493a6 --- /dev/null +++ b/dist/ionicons/iosPie.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosPie = void 0; +var iosPie = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M272,64v224L74.245,337.376C101.653,420.221,179.841,480,271.875,480C386.75,480,480,386.875,480,272S387,64,272,64L272,64\r\n\t\tz" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M272,64v224L74.245,337.376C101.653,420.221,179.841,480,271.875,480C386.75,480,480,386.875,480,272S387,64,272,64L272,64\r\n\t\tz" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,32h-5.5C90.5,32,32,148.25,32,239.287c0,0,0.25,56.666,18.91,88.291L256,275.573V32L256,32z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,32h-5.5C90.5,32,32,148.25,32,239.287c0,0,0.25,56.666,18.91,88.291L256,275.573V32L256,32z" + }, + "children": [] + }] + }] + }] +}; +exports.iosPie = iosPie; \ No newline at end of file diff --git a/dist/ionicons/iosPieOutline.js b/dist/ionicons/iosPieOutline.js new file mode 100644 index 000000000..51482c8f6 --- /dev/null +++ b/dist/ionicons/iosPieOutline.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosPieOutline = void 0; +var iosPieOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M288,80.826c45.293,3.705,87.354,23.024,119.809,55.494C444.044,172.57,464,220.744,464,272.043\r\n\t\tc0,25.924-5.08,51.042-15.099,74.703c-9.68,22.859-23.54,43.384-41.194,61.024c-17.654,17.639-38.204,31.481-61.08,41.151\r\n\t\tc-23.673,10.01-48.823,15.081-74.752,15.081c-41.193,0-80.47-12.847-113.584-37.146c-15.95-11.705-29.957-25.733-41.633-41.692\r\n\t\tc-8.378-11.453-15.422-23.724-21.041-36.634l180.259-45.008L288,300.496V288V81 M272,64v224L74.245,337.376\r\n\t\tC101.653,420.221,179.841,480,271.875,480C386.75,480,480,386.875,480,272S387,64,272,64L272,64z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M288,80.826c45.293,3.705,87.354,23.024,119.809,55.494C444.044,172.57,464,220.744,464,272.043\r\n\t\tc0,25.924-5.08,51.042-15.099,74.703c-9.68,22.859-23.54,43.384-41.194,61.024c-17.654,17.639-38.204,31.481-61.08,41.151\r\n\t\tc-23.673,10.01-48.823,15.081-74.752,15.081c-41.193,0-80.47-12.847-113.584-37.146c-15.95-11.705-29.957-25.733-41.633-41.692\r\n\t\tc-8.378-11.453-15.422-23.724-21.041-36.634l180.259-45.008L288,300.496V288V81 M272,64v224L74.245,337.376\r\n\t\tC101.653,420.221,179.841,480,271.875,480C386.75,480,480,386.875,480,272S387,64,272,64L272,64z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M240,48.181v214.943L59.658,308.854c-9.117-23.568-11.197-56.973-11.158-69.496v-0.036v-0.035\r\n\t\tc0-47.311,16.465-93.746,45.173-127.398c16.735-19.618,37.502-34.981,61.721-45.663C180.099,55.331,208.519,49.274,240,48.181\r\n\t\t M256,32h-5.5C90.5,32,32,148.25,32,239.287c0,0,0.25,56.666,18.91,88.291L256,275.573V32L256,32z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M240,48.181v214.943L59.658,308.854c-9.117-23.568-11.197-56.973-11.158-69.496v-0.036v-0.035\r\n\t\tc0-47.311,16.465-93.746,45.173-127.398c16.735-19.618,37.502-34.981,61.721-45.663C180.099,55.331,208.519,49.274,240,48.181\r\n\t\t M256,32h-5.5C90.5,32,32,148.25,32,239.287c0,0,0.25,56.666,18.91,88.291L256,275.573V32L256,32z" + }, + "children": [] + }] + }] + }] +}; +exports.iosPieOutline = iosPieOutline; \ No newline at end of file diff --git a/dist/ionicons/iosPint.js b/dist/ionicons/iosPint.js new file mode 100644 index 000000000..297fc644c --- /dev/null +++ b/dist/ionicons/iosPint.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosPint = void 0; +var iosPint = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M368,170.085c0-21.022-0.973-88.554-19.308-125.013C344.244,36.228,336.25,32,316.999,32H195.001\r\n\tc-19.25,0-27.246,4.197-31.693,13.041C144.973,81.5,144,149.25,144,170.272c0,98,32,100.353,32,180.853c0,39.5-16,71.402-16,99.402\r\n\tc0,27,9,29.473,32,29.473h128c23,0,32-2.535,32-29.535c0-28-16-59.715-16-99.215C336,270.75,368,268.085,368,170.085z\r\n\t M177.602,51.983c0.778-1.546,1.339-1.763,2.53-2.295c1.977-0.884,6.161-1.688,14.869-1.688h121.998\r\n\tc8.708,0,12.893,0.803,14.869,1.687c1.19,0.532,1.752,0.872,2.53,2.418c8.029,15.967,13.601,42.611,16.105,75.896H161.496\r\n\tC164.001,94.653,169.572,67.951,177.602,51.983z" + }, + "children": [] + }] +}; +exports.iosPint = iosPint; \ No newline at end of file diff --git a/dist/ionicons/iosPintOutline.js b/dist/ionicons/iosPintOutline.js new file mode 100644 index 000000000..7360e1cb8 --- /dev/null +++ b/dist/ionicons/iosPintOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosPintOutline = void 0; +var iosPintOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M368,170.085c0-21.022-0.973-88.554-19.308-125.013C344.244,36.228,336.25,32,316.999,32H195.001\r\n\tc-19.25,0-27.246,4.197-31.693,13.041C144.973,81.5,144,149.25,144,170.272c0,98,32,100.353,32,180.853c0,39.5-16,71.402-16,99.402\r\n\tc0,27,9,29.473,32,29.473h128c23,0,32-2.535,32-29.535c0-28-16-59.715-16-99.215C336,270.75,368,268.085,368,170.085z\r\n\t M177.602,51.983c0.778-1.546,1.339-1.763,2.53-2.295c1.977-0.884,6.161-1.688,14.869-1.688h121.998\r\n\tc8.708,0,12.893,0.803,14.869,1.687c1.19,0.532,1.752,0.872,2.53,2.418c8.029,15.967,13.601,42.611,16.105,75.896H161.496\r\n\tC164.001,94.653,169.572,67.951,177.602,51.983z M334.631,462.636C332.76,463.377,327.844,464,320,464H192\r\n\tc-7.844,0-12.761-0.623-14.639-1.359c-0.394-0.93-1.361-4.166-1.361-12.27c0-10.856,3.016-23.16,6.508-37.334\r\n\tc4.449-18.059,9.492-38.557,9.492-61.943c0-40.997-7.993-63.802-15.724-85.842C168.274,242.438,160,218.838,160,170.155\r\n\tc0-9.025,0.191-17.756,0.558-26.155h190.886c0.365,8.376,0.557,17.083,0.557,26.085c0,48.688-8.276,72.302-16.28,95.169\r\n\tc-7.728,22.079-15.72,44.895-15.72,85.887c0,23.39,5.043,43.822,9.493,61.856c3.491,14.15,6.507,26.368,6.507,37.222\r\n\tC336,458.355,335.024,461.713,334.631,462.636z" + }, + "children": [] + }] +}; +exports.iosPintOutline = iosPintOutline; \ No newline at end of file diff --git a/dist/ionicons/iosPlay.js b/dist/ionicons/iosPlay.js new file mode 100644 index 000000000..96c7fe162 --- /dev/null +++ b/dist/ionicons/iosPlay.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosPlay = void 0; +var iosPlay = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M128,96v320l256-160L128,96L128,96z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M128,96v320l256-160L128,96L128,96z" + }, + "children": [] + }] + }] + }] +}; +exports.iosPlay = iosPlay; \ No newline at end of file diff --git a/dist/ionicons/iosPlayOutline.js b/dist/ionicons/iosPlayOutline.js new file mode 100644 index 000000000..0a495ac5e --- /dev/null +++ b/dist/ionicons/iosPlayOutline.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosPlayOutline = void 0; +var iosPlayOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M144,124.9L353.8,256L144,387.1V124.9 M128,96v320l256-160L128,96L128,96z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M144,124.9L353.8,256L144,387.1V124.9 M128,96v320l256-160L128,96L128,96z" + }, + "children": [] + }] + }] + }] +}; +exports.iosPlayOutline = iosPlayOutline; \ No newline at end of file diff --git a/dist/ionicons/iosPlus.js b/dist/ionicons/iosPlus.js new file mode 100644 index 000000000..c7eb1d950 --- /dev/null +++ b/dist/ionicons/iosPlus.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosPlus = void 0; +var iosPlus = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M384,265H264v119h-17V265\r\n\t\tH128v-17h119V128h17v120h120V265z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M384,265H264v119h-17V265\r\n\t\tH128v-17h119V128h17v120h120V265z" + }, + "children": [] + }] + }] + }] +}; +exports.iosPlus = iosPlus; \ No newline at end of file diff --git a/dist/ionicons/iosPlusEmpty.js b/dist/ionicons/iosPlusEmpty.js new file mode 100644 index 000000000..aa1f253bd --- /dev/null +++ b/dist/ionicons/iosPlusEmpty.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosPlusEmpty = void 0; +var iosPlusEmpty = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M384,265H264v119h-17V265H128v-17h119V128h17v120h120V265z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M384,265H264v119h-17V265H128v-17h119V128h17v120h120V265z" + }, + "children": [] + }] + }] + }] +}; +exports.iosPlusEmpty = iosPlusEmpty; \ No newline at end of file diff --git a/dist/ionicons/iosPlusOutline.js b/dist/ionicons/iosPlusOutline.js new file mode 100644 index 000000000..73357efda --- /dev/null +++ b/dist/ionicons/iosPlusOutline.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosPlusOutline = void 0; +var iosPlusOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M256,446.7\r\n\t\t\t\tc-105.1,0-190.7-85.5-190.7-190.7S150.9,65.3,256,65.3S446.7,150.9,446.7,256S361.1,446.7,256,446.7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M256,446.7\r\n\t\t\t\tc-105.1,0-190.7-85.5-190.7-190.7S150.9,65.3,256,65.3S446.7,150.9,446.7,256S361.1,446.7,256,446.7z" + }, + "children": [] + }] + }] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "264.1,128 247.3,128 247.3,247.9 128,247.9 128,264.7 247.3,264.7 247.3,384 264.1,384 264.1,264.7 384,264.7 \r\n\t\t\t384,247.9 264.1,247.9 \t\t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "264.1,128 247.3,128 247.3,247.9 128,247.9 128,264.7 247.3,264.7 247.3,384 264.1,384 264.1,264.7 384,264.7 \r\n\t\t\t384,247.9 264.1,247.9 \t\t" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.iosPlusOutline = iosPlusOutline; \ No newline at end of file diff --git a/dist/ionicons/iosPricetag.js b/dist/ionicons/iosPricetag.js new file mode 100644 index 000000000..b47f6ebd3 --- /dev/null +++ b/dist/ionicons/iosPricetag.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosPricetag = void 0; +var iosPricetag = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "cx": "368", + "cy": "128", + "r": "16" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "368", + "cy": "128", + "r": "16" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M304,32L48,320l160,160l256-288V32H304z M368,160c-17.645,0-32-14.355-32-32s14.355-32,32-32s32,14.355,32,32\r\n\t\tS385.645,160,368,160z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M304,32L48,320l160,160l256-288V32H304z M368,160c-17.645,0-32-14.355-32-32s14.355-32,32-32s32,14.355,32,32\r\n\t\tS385.645,160,368,160z" + }, + "children": [] + }] + }] + }] +}; +exports.iosPricetag = iosPricetag; \ No newline at end of file diff --git a/dist/ionicons/iosPricetagOutline.js b/dist/ionicons/iosPricetagOutline.js new file mode 100644 index 000000000..ac5dce6b8 --- /dev/null +++ b/dist/ionicons/iosPricetagOutline.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosPricetagOutline = void 0; +var iosPricetagOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M464,32H304L48,320l160,160l256-288V32z M448,184L208.125,456L72.062,320L311.587,48H448V184z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M464,32H304L48,320l160,160l256-288V32z M448,184L208.125,456L72.062,320L311.587,48H448V184z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M368,160c17.645,0,32-14.355,32-32s-14.355-32-32-32s-32,14.355-32,32S350.355,160,368,160z M368,112\r\n\t\tc8.836,0,16,7.163,16,16s-7.164,16-16,16s-16-7.163-16-16S359.164,112,368,112z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M368,160c17.645,0,32-14.355,32-32s-14.355-32-32-32s-32,14.355-32,32S350.355,160,368,160z M368,112\r\n\t\tc8.836,0,16,7.163,16,16s-7.164,16-16,16s-16-7.163-16-16S359.164,112,368,112z" + }, + "children": [] + }] + }] + }] +}; +exports.iosPricetagOutline = iosPricetagOutline; \ No newline at end of file diff --git a/dist/ionicons/iosPricetags.js b/dist/ionicons/iosPricetags.js new file mode 100644 index 000000000..60472fb81 --- /dev/null +++ b/dist/ionicons/iosPricetags.js @@ -0,0 +1,71 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosPricetags = void 0; +var iosPricetags = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "464,64 464,201.377 227.153,467.48 240,480 480,208 480,64 \t\t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "464,64 464,201.377 227.153,467.48 240,480 480,208 480,64 \t\t" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M288,32L32,320l160,160l23.471-23.904l11.348-11.375L448,192V80V64V32H288z M352,160c-17.645,0-32-14.355-32-32\r\n\t\t\ts14.355-32,32-32s32,14.355,32,32S369.645,160,352,160z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M288,32L32,320l160,160l23.471-23.904l11.348-11.375L448,192V80V64V32H288z M352,160c-17.645,0-32-14.355-32-32\r\n\t\t\ts14.355-32,32-32s32,14.355,32,32S369.645,160,352,160z" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "352", + "cy": "128", + "r": "16" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "352", + "cy": "128", + "r": "16" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.iosPricetags = iosPricetags; \ No newline at end of file diff --git a/dist/ionicons/iosPricetagsOutline.js b/dist/ionicons/iosPricetagsOutline.js new file mode 100644 index 000000000..f5c93a673 --- /dev/null +++ b/dist/ionicons/iosPricetagsOutline.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosPricetagsOutline = void 0; +var iosPricetagsOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M448,64V32H288L32,320l160,160l23.471-23.904L240,480l240-272V64H448z M192,457.371L54.39,320L294.621,48H432v16v16\r\n\t\tv105.377l-216.555,247.99l-11.34,11.363L192,457.371z M464,201.377L240,457.371l-13.182-12.65L448,192V80h16V201.377z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M448,64V32H288L32,320l160,160l23.471-23.904L240,480l240-272V64H448z M192,457.371L54.39,320L294.621,48H432v16v16\r\n\t\tv105.377l-216.555,247.99l-11.34,11.363L192,457.371z M464,201.377L240,457.371l-13.182-12.65L448,192V80h16V201.377z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M352,160c17.645,0,32-14.355,32-32s-14.355-32-32-32s-32,14.355-32,32S334.355,160,352,160z M352,112\r\n\t\tc8.836,0,16,7.163,16,16s-7.164,16-16,16s-16-7.163-16-16S343.164,112,352,112z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M352,160c17.645,0,32-14.355,32-32s-14.355-32-32-32s-32,14.355-32,32S334.355,160,352,160z M352,112\r\n\t\tc8.836,0,16,7.163,16,16s-7.164,16-16,16s-16-7.163-16-16S343.164,112,352,112z" + }, + "children": [] + }] + }] + }] +}; +exports.iosPricetagsOutline = iosPricetagsOutline; \ No newline at end of file diff --git a/dist/ionicons/iosPrinter.js b/dist/ionicons/iosPrinter.js new file mode 100644 index 000000000..e6888cb04 --- /dev/null +++ b/dist/ionicons/iosPrinter.js @@ -0,0 +1,93 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosPrinter = void 0; +var iosPrinter = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "128", + "y": "224", + "width": "256", + "height": "224" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "128", + "y": "224", + "width": "256", + "height": "224" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "127.5", + "y": "224.5", + "width": "256", + "height": "224" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "127.5", + "y": "224.5", + "width": "256", + "height": "224" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "111.5", + "y": "64.5", + "width": "288", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "111.5", + "y": "64.5", + "width": "288", + "height": "32" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M432.5,112.5h-352c-17.645,0-33,12.842-33,30.309v158.393c0,17.468,15.355,33.299,33,33.299h31v-126h288v126h33\r\n\t\t\tc17.645,0,31-15.831,31-33.299V142.809C463.5,125.342,450.145,112.5,432.5,112.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M432.5,112.5h-352c-17.645,0-33,12.842-33,30.309v158.393c0,17.468,15.355,33.299,33,33.299h31v-126h288v126h33\r\n\t\t\tc17.645,0,31-15.831,31-33.299V142.809C463.5,125.342,450.145,112.5,432.5,112.5z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.iosPrinter = iosPrinter; \ No newline at end of file diff --git a/dist/ionicons/iosPrinterOutline.js b/dist/ionicons/iosPrinterOutline.js new file mode 100644 index 000000000..6f662b395 --- /dev/null +++ b/dist/ionicons/iosPrinterOutline.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosPrinterOutline = void 0; +var iosPrinterOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M432.5,112H400V64H112v48H80.5C62.9,112,48,125.8,48,143.3v158.4c0,17.5,14.9,32.3,32.5,32.3H128v114h256V334h48.5\r\n\t\tc17.6,0,31.5-14.8,31.5-32.3V143.3C464,125.8,450.1,112,432.5,112z M128,80h256v32H128V80z M368,432H144V240h224V432z M448,301.7\r\n\t\tc0,8.7-6.7,16.3-15.5,16.3H384v-94H128v94H80.5c-8.8,0-16.5-7.6-16.5-16.3V143.3c0-8.7,7.7-15.3,16.5-15.3H432h0.5\r\n\t\tc8.8,0,15.5,6.6,15.5,15.3V301.7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M432.5,112H400V64H112v48H80.5C62.9,112,48,125.8,48,143.3v158.4c0,17.5,14.9,32.3,32.5,32.3H128v114h256V334h48.5\r\n\t\tc17.6,0,31.5-14.8,31.5-32.3V143.3C464,125.8,450.1,112,432.5,112z M128,80h256v32H128V80z M368,432H144V240h224V432z M448,301.7\r\n\t\tc0,8.7-6.7,16.3-15.5,16.3H384v-94H128v94H80.5c-8.8,0-16.5-7.6-16.5-16.3V143.3c0-8.7,7.7-15.3,16.5-15.3H432h0.5\r\n\t\tc8.8,0,15.5,6.6,15.5,15.3V301.7z" + }, + "children": [] + }] + }] + }] +}; +exports.iosPrinterOutline = iosPrinterOutline; \ No newline at end of file diff --git a/dist/ionicons/iosPulse.js b/dist/ionicons/iosPulse.js new file mode 100644 index 000000000..63264d3ee --- /dev/null +++ b/dist/ionicons/iosPulse.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosPulse = void 0; +var iosPulse = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M448,288c-15.268,0-28.029,10.695-31.223,25h-59.004l-30.181-90.896c-1.105-3.329-4.246-5.543-7.759-5.478\r\n\tc-3.508,0.072-6.559,2.422-7.524,5.795L258.067,411.74L199.892,62.685c-0.624-3.74-3.787-6.528-7.576-6.679\r\n\tc-3.809-0.139-7.161,2.382-8.078,6.061L121.748,313H32v16h96c3.674,0,6.875-2.502,7.763-6.066l54.685-219.591l57.661,345.973\r\n\tc0.615,3.688,3.703,6.459,7.437,6.672c0.153,0.009,0.307,0.013,0.459,0.013c3.549,0,6.699-2.35,7.687-5.797l56.872-198.496\r\n\tl23.845,71.813c1.087,3.271,4.146,5.479,7.593,5.479h65.292c3.89,13.289,16.161,23,30.708,23c17.674,0,32-14.327,32-32\r\n\tS465.674,288,448,288z" + }, + "children": [] + }] +}; +exports.iosPulse = iosPulse; \ No newline at end of file diff --git a/dist/ionicons/iosPulseStrong.js b/dist/ionicons/iosPulseStrong.js new file mode 100644 index 000000000..2ba642d7c --- /dev/null +++ b/dist/ionicons/iosPulseStrong.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosPulseStrong = void 0; +var iosPulseStrong = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M448,273.001c-21.27,0-39.296,13.999-45.596,32.999h-38.857l-28.361-85.417c-2.176-6.553-8.303-10.956-15.183-10.956\r\n\tc-0.112,0-0.224,0-0.335,0.004c-7.016,0.145-13.117,4.844-15.049,11.588l-44.484,155.262L207.782,62.373\r\n\tC206.535,54.893,200.333,48,192,48s-13.693,5.776-15.525,13.135L115.496,306H16v31.999h112c7.348,0,13.75-5.003,15.525-12.134\r\n\tl45.368-182.177l51.324,307.94c1.229,7.377,7.397,11.92,14.864,12.344C255.389,463.99,255.695,464,256,464\r\n\tc7.097,0,13.406-3.701,15.381-10.594l49.744-173.617l15.689,47.252c2.173,6.543,8.292,10.958,15.186,10.958h51.108\r\n\tC409.973,355.999,427.477,369,448,369c26.511,0,48-22.492,48-49C496,293.491,474.511,273.001,448,273.001z" + }, + "children": [] + }] +}; +exports.iosPulseStrong = iosPulseStrong; \ No newline at end of file diff --git a/dist/ionicons/iosRainy.js b/dist/ionicons/iosRainy.js new file mode 100644 index 000000000..2d48c1033 --- /dev/null +++ b/dist/ionicons/iosRainy.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosRainy = void 0; +var iosRainy = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "style", + "attribs": { + "type": "text/css" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "class": "st0", + "d": "M332.1,179.4c-2.8,0-5.7-0.1-8.4,0.3c-8.3-36.8-35.2-67.6-80.3-67.6c-50.9,0-82.3,38-82.3,83.6\r\n\tc0,2.8,0.1,5.5,0.4,8.2c-27.7,2.5-49.5,31.3-49.5,59.8c0,29.2,22.9,54.6,51.6,56.2l-24.5,34.4c-1.1,1.6-2,3.4-2,5.5\r\n\tc0,4.6,3.7,8.3,8.3,8.3c3,0,5.6-1.6,7.1-4l31-43.8h36.1l-46.1,65.8c-1.2,1.6-2.1,3.6-2.1,5.6c0,4.6,3.7,8.3,8.3,8.3\r\n\tc3,0,5.6-1.8,7.2-4.3l52.6-75.5h37.9l-24.9,34.4c-1.2,1.6-2.2,3.8-2.2,5.6c0,4.6,3.7,8.3,8.3,8.3c3.1,0,5.4-1.7,7.2-4.1l31.6-44.3\r\n\th34.7c0.1,0,0.3-0.1,0.4-0.1l-46.1,65.9c-1.3,1.7-2.3,3.6-2.3,5.8c0,4.6,3.7,8.3,8.3,8.3c3.2,0,5.5-2,7.4-4.5l55.5-79.8\r\n\tc26-9.9,44.6-35.8,44.6-65.2C400,212.8,369.6,179.4,332.1,179.4z" + }, + "children": [] + }] +}; +exports.iosRainy = iosRainy; \ No newline at end of file diff --git a/dist/ionicons/iosRainyOutline.js b/dist/ionicons/iosRainyOutline.js new file mode 100644 index 000000000..5f7210821 --- /dev/null +++ b/dist/ionicons/iosRainyOutline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosRainyOutline = void 0; +var iosRainyOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "style", + "attribs": { + "type": "text/css" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "class": "st0", + "d": "M332.1,179.4c-2.8,0-5.7-0.1-8.4,0.3c-8.3-36.8-35.2-67.6-80.3-67.6c-50.9,0-82.3,38-82.3,83.6\r\n\tc0,2.8,0.1,5.5,0.4,8.2c-27.7,2.5-49.5,31.3-49.5,59.8c0,29.2,22.9,54.6,51.6,56.2l-24.5,34.4c-1.1,1.6-2,3.4-2,5.5\r\n\tc0,4.6,3.7,8.3,8.3,8.3c3,0,5.6-1.6,7.1-4l31-43.8h36.1l-46.1,65.8c-1.2,1.6-2.1,3.6-2.1,5.6c0,4.6,3.7,8.3,8.3,8.3\r\n\tc3,0,5.6-1.8,7.2-4.3l52.6-75.5h37.9l-24.9,34.4c-1.2,1.6-2.2,3.8-2.2,5.6c0,4.6,3.7,8.3,8.3,8.3c3.1,0,5.4-1.7,7.2-4.1l31.6-44.3\r\n\th34.7c0.1,0,0.3-0.1,0.4-0.1l-46.1,65.9c-1.3,1.7-2.3,3.6-2.3,5.8c0,4.6,3.7,8.3,8.3,8.3c3.2,0,5.5-2,7.4-4.5l55.5-79.8\r\n\tc26-9.9,44.6-35.8,44.6-65.2C400,212.8,369.6,179.4,332.1,179.4z M332.1,302.1H290l-0.1-0.1l-0.1,0.1H166.4\r\n\tc-10,0-19.5-4.6-26.7-11.9c-7.2-7.3-11.1-17.2-11.1-27.4c0-19.6,15.2-39.8,34.9-43c1.7-0.3,9.2-1.4,15-1.9c0,0-0.5-5.6-0.7-10.2\r\n\tc-0.1-4.6-0.1-9.9-0.1-12.1c0-36.4,29.5-66.9,65.8-66.9c15.2,0,29.5,5.1,41.3,14.7c11.5,9.3,19.6,25.4,22.8,39.7l3.3,14.7l14.9-1.9\r\n\tc2.2-0.3,4.3-0.4,6.4-0.4c28.3,0,51.3,25.9,51.3,54.4C383.4,278.3,360.4,302.1,332.1,302.1z" + }, + "children": [] + }] +}; +exports.iosRainyOutline = iosRainyOutline; \ No newline at end of file diff --git a/dist/ionicons/iosRecording.js b/dist/ionicons/iosRecording.js new file mode 100644 index 000000000..8ce09863a --- /dev/null +++ b/dist/ionicons/iosRecording.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosRecording = void 0; +var iosRecording = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M386.2,144c-60.6,0-109.8,49.9-109.8,111.8c0,40.4,21,76.2,52.5,95.2H183.1c31.5-19,52.5-54.8,52.5-95.2\r\n\t\tc0-61.9-49.2-111.9-109.8-111.9C65.2,143.9,16,194.1,16,255.9C16,317.8,65.2,368,125.8,368h260.4c60.6,0,109.8-50.1,109.8-112\r\n\t\tC496,194.1,446.8,144,386.2,144z M128,320c-35.3,0-64-28.7-64-64c0-35.3,28.7-64,64-64s64,28.7,64,64C192,291.3,163.3,320,128,320z\r\n\t\t M384,320c-35.3,0-64-28.7-64-64c0-35.3,28.7-64,64-64s64,28.7,64,64C448,291.3,419.3,320,384,320z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M386.2,144c-60.6,0-109.8,49.9-109.8,111.8c0,40.4,21,76.2,52.5,95.2H183.1c31.5-19,52.5-54.8,52.5-95.2\r\n\t\tc0-61.9-49.2-111.9-109.8-111.9C65.2,143.9,16,194.1,16,255.9C16,317.8,65.2,368,125.8,368h260.4c60.6,0,109.8-50.1,109.8-112\r\n\t\tC496,194.1,446.8,144,386.2,144z M128,320c-35.3,0-64-28.7-64-64c0-35.3,28.7-64,64-64s64,28.7,64,64C192,291.3,163.3,320,128,320z\r\n\t\t M384,320c-35.3,0-64-28.7-64-64c0-35.3,28.7-64,64-64s64,28.7,64,64C448,291.3,419.3,320,384,320z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M384,208c-26.5,0-48,21.5-48,48c0,26.5,21.5,48,48,48s48-21.5,48-48C432,229.5,410.5,208,384,208z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M384,208c-26.5,0-48,21.5-48,48c0,26.5,21.5,48,48,48s48-21.5,48-48C432,229.5,410.5,208,384,208z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M128,208c-26.5,0-48,21.5-48,48c0,26.5,21.5,48,48,48s48-21.5,48-48C176,229.5,154.5,208,128,208z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M128,208c-26.5,0-48,21.5-48,48c0,26.5,21.5,48,48,48s48-21.5,48-48C176,229.5,154.5,208,128,208z" + }, + "children": [] + }] + }] + }] +}; +exports.iosRecording = iosRecording; \ No newline at end of file diff --git a/dist/ionicons/iosRecordingOutline.js b/dist/ionicons/iosRecordingOutline.js new file mode 100644 index 000000000..168fc480f --- /dev/null +++ b/dist/ionicons/iosRecordingOutline.js @@ -0,0 +1,29 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosRecordingOutline = void 0; +var iosRecordingOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M386.2,144c-60.6,0-109.8,50.1-109.8,112c0,40.4,21,75.7,52.5,95.4H183.1c31.5-19.7,52.5-55,52.5-95.4\r\n\tc0-61.9-49.2-112-109.8-112C65.2,144,16,194.1,16,256c0,61.9,49.2,112,109.8,112h260.4c60.6,0,109.8-50.1,109.8-112\r\n\tC496,194.1,446.8,144,386.2,144z M32.3,256c0-52.6,42-95.4,93.5-95.4c51.6,0,93.5,42.8,93.5,95.4s-42,95.4-93.5,95.4\r\n\tC74.2,351.4,32.3,308.6,32.3,256z M386.2,351.4c-51.6,0-93.5-42.8-93.5-95.4s42-95.4,93.5-95.4s93.5,42.8,93.5,95.4\r\n\tS437.8,351.4,386.2,351.4z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M384,208c26.5,0,48,21.5,48,48c0,26.5-21.5,48-48,48s-48-21.5-48-48C336,229.5,357.5,208,384,208 M384,192\r\n\tc-35.3,0-64,28.7-64,64c0,35.3,28.7,64,64,64s64-28.7,64-64C448,220.7,419.3,192,384,192L384,192z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M128,208c26.5,0,48,21.5,48,48c0,26.5-21.5,48-48,48s-48-21.5-48-48C80,229.5,101.5,208,128,208 M128,192\r\n\tc-35.3,0-64,28.7-64,64c0,35.3,28.7,64,64,64s64-28.7,64-64C192,220.7,163.3,192,128,192L128,192z" + }, + "children": [] + }] +}; +exports.iosRecordingOutline = iosRecordingOutline; \ No newline at end of file diff --git a/dist/ionicons/iosRedo.js b/dist/ionicons/iosRedo.js new file mode 100644 index 000000000..e81ad5950 --- /dev/null +++ b/dist/ionicons/iosRedo.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosRedo = void 0; +var iosRedo = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M64,400h10.3l19.2-31.2c20.5-32.7,44.9-62.8,75.8-76.6c24.4-10.9,46.7-18.9,86.7-20V352l192-128L256,96v80.3\r\n\t\tc-63,2.8-108.1,20.7-143.3,56.2c-52.3,52.7-48.7,119-48.7,135.7C64.1,377.1,64,389.9,64,400z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M64,400h10.3l19.2-31.2c20.5-32.7,44.9-62.8,75.8-76.6c24.4-10.9,46.7-18.9,86.7-20V352l192-128L256,96v80.3\r\n\t\tc-63,2.8-108.1,20.7-143.3,56.2c-52.3,52.7-48.7,119-48.7,135.7C64.1,377.1,64,389.9,64,400z" + }, + "children": [] + }] + }] + }] +}; +exports.iosRedo = iosRedo; \ No newline at end of file diff --git a/dist/ionicons/iosRedoOutline.js b/dist/ionicons/iosRedoOutline.js new file mode 100644 index 000000000..7dfa9ed39 --- /dev/null +++ b/dist/ionicons/iosRedoOutline.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosRedoOutline = void 0; +var iosRedoOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M64,400h10.3l19.2-31.2c20.5-32.7,44.9-62.8,75.8-76.6c24.4-10.9,46.7-18.9,86.7-20V352l192-128L256,96v80.3\r\n\t\tc-63,2.8-108.1,20.7-143.3,56.2c-52.3,52.7-48.7,119-48.7,135.7C64.1,377.1,64,389.9,64,400z M272,192v-64.7l148.1,96.8L272,320.8\r\n\t\tV256c-91,0-144.6,24.6-192.2,105.4C79.8,361.4,71,192,272,192z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M64,400h10.3l19.2-31.2c20.5-32.7,44.9-62.8,75.8-76.6c24.4-10.9,46.7-18.9,86.7-20V352l192-128L256,96v80.3\r\n\t\tc-63,2.8-108.1,20.7-143.3,56.2c-52.3,52.7-48.7,119-48.7,135.7C64.1,377.1,64,389.9,64,400z M272,192v-64.7l148.1,96.8L272,320.8\r\n\t\tV256c-91,0-144.6,24.6-192.2,105.4C79.8,361.4,71,192,272,192z" + }, + "children": [] + }] + }] + }] +}; +exports.iosRedoOutline = iosRedoOutline; \ No newline at end of file diff --git a/dist/ionicons/iosRefresh.js b/dist/ionicons/iosRefresh.js new file mode 100644 index 000000000..59fb8a7e5 --- /dev/null +++ b/dist/ionicons/iosRefresh.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosRefresh = void 0; +var iosRefresh = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M256,384.1\r\n\t\tc-70.7,0-128-57.3-128-128.1c0-70.8,57.3-128.1,128-128.1V84l96,64l-96,55.7v-55.8c-59.6,0-108.1,48.5-108.1,108.1\r\n\t\tc0,59.6,48.5,108.1,108.1,108.1S364.1,316,364.1,256H384C384,327,326.7,384.1,256,384.1z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M256,384.1\r\n\t\tc-70.7,0-128-57.3-128-128.1c0-70.8,57.3-128.1,128-128.1V84l96,64l-96,55.7v-55.8c-59.6,0-108.1,48.5-108.1,108.1\r\n\t\tc0,59.6,48.5,108.1,108.1,108.1S364.1,316,364.1,256H384C384,327,326.7,384.1,256,384.1z" + }, + "children": [] + }] + }] + }] +}; +exports.iosRefresh = iosRefresh; \ No newline at end of file diff --git a/dist/ionicons/iosRefreshEmpty.js b/dist/ionicons/iosRefreshEmpty.js new file mode 100644 index 000000000..41fe2d7ba --- /dev/null +++ b/dist/ionicons/iosRefreshEmpty.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosRefreshEmpty = void 0; +var iosRefreshEmpty = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,384.1c-70.7,0-128-57.3-128-128.1c0-70.8,57.3-128.1,128-128.1V84l96,64l-96,55.7v-55.8\r\n\t\tc-59.6,0-108.1,48.5-108.1,108.1c0,59.6,48.5,108.1,108.1,108.1S364.1,316,364.1,256H384C384,327,326.7,384.1,256,384.1z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,384.1c-70.7,0-128-57.3-128-128.1c0-70.8,57.3-128.1,128-128.1V84l96,64l-96,55.7v-55.8\r\n\t\tc-59.6,0-108.1,48.5-108.1,108.1c0,59.6,48.5,108.1,108.1,108.1S364.1,316,364.1,256H384C384,327,326.7,384.1,256,384.1z" + }, + "children": [] + }] + }] + }] +}; +exports.iosRefreshEmpty = iosRefreshEmpty; \ No newline at end of file diff --git a/dist/ionicons/iosRefreshOutline.js b/dist/ionicons/iosRefreshOutline.js new file mode 100644 index 000000000..584758823 --- /dev/null +++ b/dist/ionicons/iosRefreshOutline.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosRefreshOutline = void 0; +var iosRefreshOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M364.1,256c0,60-48.5,108.2-108.1,108.2S147.9,315.7,147.9,256c0-59.6,48.5-108.1,108.1-108.1v55.8l96-55.7l-96-64v44\r\n\tc-70.7,0-128,57.4-128,128.1c0,70.8,57.3,128.1,128,128.1c70.7,0,128-57.1,128-128.1H364.1z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M256,446.7\r\n\t\t\tc-105.1,0-190.7-85.5-190.7-190.7c0-105.1,85.5-190.7,190.7-190.7c105.1,0,190.7,85.5,190.7,190.7\r\n\t\t\tC446.7,361.1,361.1,446.7,256,446.7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M256,446.7\r\n\t\t\tc-105.1,0-190.7-85.5-190.7-190.7c0-105.1,85.5-190.7,190.7-190.7c105.1,0,190.7,85.5,190.7,190.7\r\n\t\t\tC446.7,361.1,361.1,446.7,256,446.7z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.iosRefreshOutline = iosRefreshOutline; \ No newline at end of file diff --git a/dist/ionicons/iosReload.js b/dist/ionicons/iosReload.js new file mode 100644 index 000000000..b7c1c6b89 --- /dev/null +++ b/dist/ionicons/iosReload.js @@ -0,0 +1,29 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosReload = void 0; +var iosReload = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": { + "id": "PL_x5F_Reset_1_" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,64c105.9,0,191.7,85.7,191.9,191.5l55-52.5l9,9.1L441.6,280L375,212.1l9-9.1l51.1,52.4\r\n\t\tC434.8,156.9,354.6,76.8,256,76.8c-98.8,0-179.2,80.4-179.2,179.2c0,98.8,80.4,179.2,179.2,179.2c78.6,0,145.5-51,169.5-121.6\r\n\t\tl12.4,3.5C412.3,393.2,340.6,448,256,448c-106,0-192-86-192-192S150,64,256,64z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,64c105.9,0,191.7,85.7,191.9,191.5l55-52.5l9,9.1L441.6,280L375,212.1l9-9.1l51.1,52.4\r\n\t\tC434.8,156.9,354.6,76.8,256,76.8c-98.8,0-179.2,80.4-179.2,179.2c0,98.8,80.4,179.2,179.2,179.2c78.6,0,145.5-51,169.5-121.6\r\n\t\tl12.4,3.5C412.3,393.2,340.6,448,256,448c-106,0-192-86-192-192S150,64,256,64z" + }, + "children": [] + }] + }] + }] +}; +exports.iosReload = iosReload; \ No newline at end of file diff --git a/dist/ionicons/iosReverseCamera.js b/dist/ionicons/iosReverseCamera.js new file mode 100644 index 000000000..22573cde8 --- /dev/null +++ b/dist/ionicons/iosReverseCamera.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosReverseCamera = void 0; +var iosReverseCamera = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M417.5,160h-61.725c-32.105-36-42.219-48-54.525-48h-88.5c-12.314,0-22.167,12-54.521,48H145v-16h-34v16H97.5\r\n\t\tC79.855,160,64,173.217,64,190.684v176.018C64,384.169,79.855,400,97.5,400h320c17.645,0,30.5-15.831,30.5-33.299V190.684\r\n\t\tC448,173.217,435.145,160,417.5,160z M313.076,330.782C297.17,344.434,276.9,352,256,352c-45.487,0-82.509-36-87.205-78h-29.479\r\n\t\tl37.534-50l38.87,50h-30.61c4.604,33,34.53,61.965,70.89,61.965c16.859,0,32.701-6.327,45.815-17.356l2.032-1.647l11.599,11.662\r\n\t\tL313.076,330.782z M335.094,307.225L296.248,256h30.644c-4.617-35-34.548-63.797-70.891-63.797\r\n\t\tc-16.618,0-32.888,6.133-45.814,17.005l-2.033,1.706l-11.599-11.61l2.371-2.052c15.905-13.65,36.175-21.206,57.075-21.206\r\n\t\tc22.333,0,43.548,8.063,59.736,22.839C331.275,213.064,340.966,236,343.207,256h29.512L335.094,307.225z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M417.5,160h-61.725c-32.105-36-42.219-48-54.525-48h-88.5c-12.314,0-22.167,12-54.521,48H145v-16h-34v16H97.5\r\n\t\tC79.855,160,64,173.217,64,190.684v176.018C64,384.169,79.855,400,97.5,400h320c17.645,0,30.5-15.831,30.5-33.299V190.684\r\n\t\tC448,173.217,435.145,160,417.5,160z M313.076,330.782C297.17,344.434,276.9,352,256,352c-45.487,0-82.509-36-87.205-78h-29.479\r\n\t\tl37.534-50l38.87,50h-30.61c4.604,33,34.53,61.965,70.89,61.965c16.859,0,32.701-6.327,45.815-17.356l2.032-1.647l11.599,11.662\r\n\t\tL313.076,330.782z M335.094,307.225L296.248,256h30.644c-4.617-35-34.548-63.797-70.891-63.797\r\n\t\tc-16.618,0-32.888,6.133-45.814,17.005l-2.033,1.706l-11.599-11.61l2.371-2.052c15.905-13.65,36.175-21.206,57.075-21.206\r\n\t\tc22.333,0,43.548,8.063,59.736,22.839C331.275,213.064,340.966,236,343.207,256h29.512L335.094,307.225z" + }, + "children": [] + }] + }] + }] +}; +exports.iosReverseCamera = iosReverseCamera; \ No newline at end of file diff --git a/dist/ionicons/iosReverseCameraOutline.js b/dist/ionicons/iosReverseCameraOutline.js new file mode 100644 index 000000000..d4cf000ba --- /dev/null +++ b/dist/ionicons/iosReverseCameraOutline.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosReverseCameraOutline = void 0; +var iosReverseCameraOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M301.815,318.608c-13.114,11.029-28.956,17.356-45.815,17.356c-36.36,0-66.286-28.965-70.89-61.965h30.61l-38.87-50\r\n\t\tl-37.534,50h29.479c4.696,42,41.717,78,87.205,78c20.9,0,41.17-7.566,57.076-21.218l2.37-2.159l-11.599-11.662L301.815,318.608z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M301.815,318.608c-13.114,11.029-28.956,17.356-45.815,17.356c-36.36,0-66.286-28.965-70.89-61.965h30.61l-38.87-50\r\n\t\tl-37.534,50h29.479c4.696,42,41.717,78,87.205,78c20.9,0,41.17-7.566,57.076-21.218l2.37-2.159l-11.599-11.662L301.815,318.608z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M315.736,198.885c-16.188-14.775-37.402-22.839-59.736-22.839c-20.9,0-41.169,7.556-57.075,21.206l-2.371,2.052\r\n\t\tl11.599,11.61l2.033-1.706c12.927-10.872,29.197-17.005,45.814-17.005c36.343,0,66.274,28.797,70.891,63.797h-30.644l38.846,51.225\r\n\t\tL372.719,256h-29.512C340.966,236,331.275,213.064,315.736,198.885z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M315.736,198.885c-16.188-14.775-37.402-22.839-59.736-22.839c-20.9,0-41.169,7.556-57.075,21.206l-2.371,2.052\r\n\t\tl11.599,11.61l2.033-1.706c12.927-10.872,29.197-17.005,45.814-17.005c36.343,0,66.274,28.797,70.891,63.797h-30.644l38.846,51.225\r\n\t\tL372.719,256h-29.512C340.966,236,331.275,213.064,315.736,198.885z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M417.5,160h-61.725c-32.105-36-42.219-48-54.525-48h-88.5c-12.314,0-22.167,12-54.521,48H145v-16h-34v16H97.5\r\n\t\tC79.855,160,64,173.217,64,190.684v176.018C64,384.169,79.855,400,97.5,400h320c17.645,0,30.5-15.831,30.5-33.299V190.684\r\n\t\tC448,173.217,435.145,160,417.5,160z M432,366.701c0,9.263-6.229,17.299-14.5,17.299h-320c-8.738,0-17.5-8.664-17.5-17.299V190.684\r\n\t\tC80,182.518,88.126,176,97.5,176h60.729c0,0,4.124,0,6.133,0s3.225-0.199,5.768-3.2s7.702-10.008,11.08-13.795\r\n\t\tc11.296-12.666,19.457-21.915,25.316-27.132c4.746-4.225,6.211-3.873,6.225-3.873h88.5c0.016,0,1.611-0.363,6.709,4.219\r\n\t\tc6.141,5.521,14.705,16.84,26.558,30.198c2.888,3.255,7.214,8.11,9.317,10.44s4.252,3.143,5.771,3.143s6.17,0,6.17,0H417.5\r\n\t\tc8.832,0,14.5,5.965,14.5,14.684V366.701z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M417.5,160h-61.725c-32.105-36-42.219-48-54.525-48h-88.5c-12.314,0-22.167,12-54.521,48H145v-16h-34v16H97.5\r\n\t\tC79.855,160,64,173.217,64,190.684v176.018C64,384.169,79.855,400,97.5,400h320c17.645,0,30.5-15.831,30.5-33.299V190.684\r\n\t\tC448,173.217,435.145,160,417.5,160z M432,366.701c0,9.263-6.229,17.299-14.5,17.299h-320c-8.738,0-17.5-8.664-17.5-17.299V190.684\r\n\t\tC80,182.518,88.126,176,97.5,176h60.729c0,0,4.124,0,6.133,0s3.225-0.199,5.768-3.2s7.702-10.008,11.08-13.795\r\n\t\tc11.296-12.666,19.457-21.915,25.316-27.132c4.746-4.225,6.211-3.873,6.225-3.873h88.5c0.016,0,1.611-0.363,6.709,4.219\r\n\t\tc6.141,5.521,14.705,16.84,26.558,30.198c2.888,3.255,7.214,8.11,9.317,10.44s4.252,3.143,5.771,3.143s6.17,0,6.17,0H417.5\r\n\t\tc8.832,0,14.5,5.965,14.5,14.684V366.701z" + }, + "children": [] + }] + }] + }] +}; +exports.iosReverseCameraOutline = iosReverseCameraOutline; \ No newline at end of file diff --git a/dist/ionicons/iosRewind.js b/dist/ionicons/iosRewind.js new file mode 100644 index 000000000..f1c2c3cd7 --- /dev/null +++ b/dist/ionicons/iosRewind.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosRewind = void 0; +var iosRewind = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,128L32,256l224,128V260.8L480,384V128L256,251.2V128L256,128z" + }, + "children": [] + }] +}; +exports.iosRewind = iosRewind; \ No newline at end of file diff --git a/dist/ionicons/iosRewindOutline.js b/dist/ionicons/iosRewindOutline.js new file mode 100644 index 000000000..08a323edb --- /dev/null +++ b/dist/ionicons/iosRewindOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosRewindOutline = void 0; +var iosRewindOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M464,155v201.9L280.5,256L464,155 M240,156v77.7v27.1v95.6L64,256l176-100.2 M256,128L32,256l224,128V260.8L480,384V128\r\n\tL256,251.2V128L256,128z" + }, + "children": [] + }] +}; +exports.iosRewindOutline = iosRewindOutline; \ No newline at end of file diff --git a/dist/ionicons/iosRose.js b/dist/ionicons/iosRose.js new file mode 100644 index 000000000..71ac5ca99 --- /dev/null +++ b/dist/ionicons/iosRose.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosRose = void 0; +var iosRose = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M416,128c-18.863,4.163-36.75,8.786-53.697,13.753c-40.457,11.858-75.509,25.693-105.445,40.015\r\n\t\tc-19.271,9.219-26.236,13.393-51.522,27.859C147.001,243,112,278.926,112,351.889S167.635,480,256,480s144-55.148,144-128.111\r\n\t\tS338.999,224,416,128L416,128z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M416,128c-18.863,4.163-36.75,8.786-53.697,13.753c-40.457,11.858-75.509,25.693-105.445,40.015\r\n\t\tc-19.271,9.219-26.236,13.393-51.522,27.859C147.001,243,112,278.926,112,351.889S167.635,480,256,480s144-55.148,144-128.111\r\n\t\tS338.999,224,416,128L416,128z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M96,96c41.475,47.079,44.624,103.891,39.382,144.741c12.772-11.274,31.177-25.734,56.144-41.389\r\n\t\tc6.442-4.041,13.312-8.158,20.645-12.322c11.578-6.575,23.538-12.822,35.834-18.765c-9.113-10.898-22.07-20.606-36.631-29.095\r\n\t\tC162.631,110.756,96,96,96,96L96,96z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M96,96c41.475,47.079,44.624,103.891,39.382,144.741c12.772-11.274,31.177-25.734,56.144-41.389\r\n\t\tc6.442-4.041,13.312-8.158,20.645-12.322c11.578-6.575,23.538-12.822,35.834-18.765c-9.113-10.898-22.07-20.606-36.631-29.095\r\n\t\tC162.631,110.756,96,96,96,96L96,96z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M352,64c0,0-78.623,2.321-130.681,62.469c16.629,9.903,29.735,20.503,38.959,31.533l2.724,3.257\r\n\t\tc37.152-16.794,88.131-34.085,120.998-42.009C377.617,95.827,352,64,352,64L352,64z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M352,64c0,0-78.623,2.321-130.681,62.469c16.629,9.903,29.735,20.503,38.959,31.533l2.724,3.257\r\n\t\tc37.152-16.794,88.131-34.085,120.998-42.009C377.617,95.827,352,64,352,64L352,64z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M176,32c-15.256,22.406-25.684,45.299-30.336,59.997c21.111,6.355,35.475,13.215,61.389,26.574\r\n\t\tc9.505-11.4,20.415-21.626,32.605-30.543C210.342,47.655,176,32,176,32L176,32z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M176,32c-15.256,22.406-25.684,45.299-30.336,59.997c21.111,6.355,35.475,13.215,61.389,26.574\r\n\t\tc9.505-11.4,20.415-21.626,32.605-30.543C210.342,47.655,176,32,176,32L176,32z" + }, + "children": [] + }] + }] + }] +}; +exports.iosRose = iosRose; \ No newline at end of file diff --git a/dist/ionicons/iosRoseOutline.js b/dist/ionicons/iosRoseOutline.js new file mode 100644 index 000000000..b5d92dcac --- /dev/null +++ b/dist/ionicons/iosRoseOutline.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosRoseOutline = void 0; +var iosRoseOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M379.769,153.431c-29.777,55.586-17.604,99.504-6.645,139.039C378.717,312.648,384,331.708,384,351.889\r\n\t\tc0,15.897-2.956,30.873-8.785,44.51c-5.727,13.396-14.104,25.212-24.898,35.12C327.169,452.768,294.555,464,256,464\r\n\t\ts-71.169-11.232-94.316-32.481c-10.795-9.908-19.172-21.725-24.898-35.12c-5.829-13.637-8.785-28.612-8.785-44.51\r\n\t\tc0-31.65,6.92-55.999,21.775-76.626c13.061-18.134,32.646-34.094,63.505-51.749l6.506-3.725\r\n\t\tc20.197-11.57,27.001-15.467,43.976-23.588c31.845-15.234,66.513-28.387,103.041-39.094\r\n\t\tC371.088,155.851,375.412,154.625,379.769,153.431 M416,128c-18.863,4.163-36.75,8.786-53.697,13.753\r\n\t\tc-40.457,11.858-75.509,25.693-105.445,40.015c-19.271,9.219-26.236,13.393-51.522,27.859C147.001,243,112,278.926,112,351.889\r\n\t\tS167.635,480,256,480s144-55.148,144-128.111S338.999,224,416,128L416,128z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M379.769,153.431c-29.777,55.586-17.604,99.504-6.645,139.039C378.717,312.648,384,331.708,384,351.889\r\n\t\tc0,15.897-2.956,30.873-8.785,44.51c-5.727,13.396-14.104,25.212-24.898,35.12C327.169,452.768,294.555,464,256,464\r\n\t\ts-71.169-11.232-94.316-32.481c-10.795-9.908-19.172-21.725-24.898-35.12c-5.829-13.637-8.785-28.612-8.785-44.51\r\n\t\tc0-31.65,6.92-55.999,21.775-76.626c13.061-18.134,32.646-34.094,63.505-51.749l6.506-3.725\r\n\t\tc20.197-11.57,27.001-15.467,43.976-23.588c31.845-15.234,66.513-28.387,103.041-39.094\r\n\t\tC371.088,155.851,375.412,154.625,379.769,153.431 M416,128c-18.863,4.163-36.75,8.786-53.697,13.753\r\n\t\tc-40.457,11.858-75.509,25.693-105.445,40.015c-19.271,9.219-26.236,13.393-51.522,27.859C147.001,243,112,278.926,112,351.889\r\n\t\tS167.635,480,256,480s144-55.148,144-128.111S338.999,224,416,128L416,128z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M133.516,123.147c21.432,6.955,47.724,16.977,69.799,29.846c6.385,3.723,12.092,7.493,17.092,11.291\r\n\t\tc-5.504,2.905-10.895,5.855-16.138,8.833c-7.212,4.096-14.359,8.362-21.243,12.679c-10.484,6.574-20.435,13.308-29.789,20.156\r\n\t\tC152.637,180.034,147.555,151.15,133.516,123.147 M96,96c41.475,47.079,44.624,103.891,39.382,144.741\r\n\t\tc12.772-11.274,31.177-25.734,56.144-41.389c6.442-4.041,13.312-8.158,20.645-12.322c11.578-6.575,23.538-12.822,35.834-18.765\r\n\t\tc-9.113-10.898-22.07-20.606-36.631-29.095C162.631,110.756,96,96,96,96L96,96z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M133.516,123.147c21.432,6.955,47.724,16.977,69.799,29.846c6.385,3.723,12.092,7.493,17.092,11.291\r\n\t\tc-5.504,2.905-10.895,5.855-16.138,8.833c-7.212,4.096-14.359,8.362-21.243,12.679c-10.484,6.574-20.435,13.308-29.789,20.156\r\n\t\tC152.637,180.034,147.555,151.15,133.516,123.147 M96,96c41.475,47.079,44.624,103.891,39.382,144.741\r\n\t\tc12.772-11.274,31.177-25.734,56.144-41.389c6.442-4.041,13.312-8.158,20.645-12.322c11.578-6.575,23.538-12.822,35.834-18.765\r\n\t\tc-9.113-10.898-22.07-20.606-36.631-29.095C162.631,110.756,96,96,96,96L96,96z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M344.629,80.697c5.309,7.227,12.393,17.661,17.66,27.726c-29.863,8.433-65.994,21.145-94.967,33.476\r\n\t\tc-5.963-6.235-12.982-12.294-21.006-18.135c17.437-15.757,38.773-27.668,63.652-35.506\r\n\t\tC324.518,83.675,337.016,81.612,344.629,80.697 M352,64c0,0-78.623,2.321-130.681,62.469c16.629,9.903,29.735,20.503,38.959,31.533\r\n\t\tl2.724,3.257c37.152-16.794,88.131-34.085,120.998-42.009C377.617,95.827,352,64,352,64L352,64z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M344.629,80.697c5.309,7.227,12.393,17.661,17.66,27.726c-29.863,8.433-65.994,21.145-94.967,33.476\r\n\t\tc-5.963-6.235-12.982-12.294-21.006-18.135c17.437-15.757,38.773-27.668,63.652-35.506\r\n\t\tC324.518,83.675,337.016,81.612,344.629,80.697 M352,64c0,0-78.623,2.321-130.681,62.469c16.629,9.903,29.735,20.503,38.959,31.533\r\n\t\tl2.724,3.257c37.152-16.794,88.131-34.085,120.998-42.009C377.617,95.827,352,64,352,64L352,64z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M181.229,53.532c9.241,6.122,22.68,16.481,35.999,31.924c-4.851,4.201-9.487,8.623-13.888,13.247\r\n\t\tc-14.024-7.088-24.951-12.192-36.826-16.602C170.174,73.63,175.095,63.788,181.229,53.532 M176,32\r\n\t\tc-15.256,22.406-25.684,45.299-30.336,59.997c21.111,6.355,35.475,13.215,61.389,26.574c9.505-11.4,20.415-21.626,32.605-30.543\r\n\t\tC210.342,47.655,176,32,176,32L176,32z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M181.229,53.532c9.241,6.122,22.68,16.481,35.999,31.924c-4.851,4.201-9.487,8.623-13.888,13.247\r\n\t\tc-14.024-7.088-24.951-12.192-36.826-16.602C170.174,73.63,175.095,63.788,181.229,53.532 M176,32\r\n\t\tc-15.256,22.406-25.684,45.299-30.336,59.997c21.111,6.355,35.475,13.215,61.389,26.574c9.505-11.4,20.415-21.626,32.605-30.543\r\n\t\tC210.342,47.655,176,32,176,32L176,32z" + }, + "children": [] + }] + }] + }] +}; +exports.iosRoseOutline = iosRoseOutline; \ No newline at end of file diff --git a/dist/ionicons/iosSearch.js b/dist/ionicons/iosSearch.js new file mode 100644 index 000000000..d55427c59 --- /dev/null +++ b/dist/ionicons/iosSearch.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosSearch = void 0; +var iosSearch = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M448.3,424.7L335,311.3c20.8-26,33.3-59.1,33.3-95.1c0-84.1-68.1-152.2-152-152.2c-84,0-152,68.2-152,152.2\r\n\ts68.1,152.2,152,152.2c36.2,0,69.4-12.7,95.5-33.8L425,448L448.3,424.7z M120.1,312.6c-25.7-25.7-39.8-59.9-39.8-96.3\r\n\ts14.2-70.6,39.8-96.3S180,80,216.3,80c36.3,0,70.5,14.2,96.2,39.9s39.8,59.9,39.8,96.3s-14.2,70.6-39.8,96.3\r\n\tc-25.7,25.7-59.9,39.9-96.2,39.9C180,352.5,145.8,338.3,120.1,312.6z" + }, + "children": [] + }] +}; +exports.iosSearch = iosSearch; \ No newline at end of file diff --git a/dist/ionicons/iosSearchStrong.js b/dist/ionicons/iosSearchStrong.js new file mode 100644 index 000000000..cf1fb5a51 --- /dev/null +++ b/dist/ionicons/iosSearchStrong.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosSearchStrong = void 0; +var iosSearchStrong = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M344.5,298c15-23.6,23.8-51.6,23.8-81.7c0-84.1-68.1-152.3-152.1-152.3C132.1,64,64,132.2,64,216.3\r\n\tc0,84.1,68.1,152.3,152.1,152.3c30.5,0,58.9-9,82.7-24.4l6.9-4.8L414.3,448l33.7-34.3L339.5,305.1L344.5,298z M301.4,131.2\r\n\tc22.7,22.7,35.2,52.9,35.2,85c0,32.1-12.5,62.3-35.2,85c-22.7,22.7-52.9,35.2-85,35.2c-32.1,0-62.3-12.5-85-35.2\r\n\tc-22.7-22.7-35.2-52.9-35.2-85c0-32.1,12.5-62.3,35.2-85c22.7-22.7,52.9-35.2,85-35.2C248.5,96,278.7,108.5,301.4,131.2z" + }, + "children": [] + }] +}; +exports.iosSearchStrong = iosSearchStrong; \ No newline at end of file diff --git a/dist/ionicons/iosSettings.js b/dist/ionicons/iosSettings.js new file mode 100644 index 000000000..113d84043 --- /dev/null +++ b/dist/ionicons/iosSettings.js @@ -0,0 +1,139 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosSettings = void 0; +var iosSettings = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M352,104c8.837,0,16,7.163,16,16s-7.163,16-16,16s-16-7.163-16-16S343.163,104,352,104 M352,88c-17.645,0-32,14.355-32,32\r\n\t\ts14.355,32,32,32s32-14.355,32-32S369.645,88,352,88L352,88z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M352,104c8.837,0,16,7.163,16,16s-7.163,16-16,16s-16-7.163-16-16S343.163,104,352,104 M352,88c-17.645,0-32,14.355-32,32\r\n\t\ts14.355,32,32,32s32-14.355,32-32S369.645,88,352,88L352,88z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M352,376c8.837,0,16,7.163,16,16s-7.163,16-16,16s-16-7.163-16-16S343.163,376,352,376 M352,360c-17.645,0-32,14.355-32,32\r\n\t\ts14.355,32,32,32s32-14.355,32-32S369.645,360,352,360L352,360z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M352,376c8.837,0,16,7.163,16,16s-7.163,16-16,16s-16-7.163-16-16S343.163,376,352,376 M352,360c-17.645,0-32,14.355-32,32\r\n\t\ts14.355,32,32,32s32-14.355,32-32S369.645,360,352,360L352,360z" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M160,240c8.837,0,16,7.163,16,16s-7.163,16-16,16s-16-7.163-16-16S151.163,240,160,240 M160,224\r\n\t\t\tc-17.645,0-32,14.355-32,32s14.355,32,32,32s32-14.355,32-32S177.645,224,160,224L160,224z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M160,240c8.837,0,16,7.163,16,16s-7.163,16-16,16s-16-7.163-16-16S151.163,240,160,240 M160,224\r\n\t\t\tc-17.645,0-32,14.355-32,32s14.355,32,32,32s32-14.355,32-32S177.645,224,160,224L160,224z" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M207.32,248H480v16H207.32c0.439-2.604,0.68-5.273,0.68-8S207.76,250.604,207.32,248z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M207.32,248H480v16H207.32c0.439-2.604,0.68-5.273,0.68-8S207.76,250.604,207.32,248z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M112,256c0,2.727,0.24,5.396,0.68,8H32v-16h80.68C112.24,250.604,112,253.273,112,256z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M112,256c0,2.727,0.24,5.396,0.68,8H32v-16h80.68C112.24,250.604,112,253.273,112,256z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M399.32,384H480v16h-80.68c0.439-2.604,0.68-5.273,0.68-8S399.76,386.604,399.32,384z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M399.32,384H480v16h-80.68c0.439-2.604,0.68-5.273,0.68-8S399.76,386.604,399.32,384z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M304,392c0,2.727,0.24,5.396,0.68,8H32v-16h272.68C304.24,386.604,304,389.273,304,392z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M304,392c0,2.727,0.24,5.396,0.68,8H32v-16h272.68C304.24,386.604,304,389.273,304,392z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M399.32,112H480v16h-80.68c0.439-2.604,0.68-5.273,0.68-8S399.76,114.604,399.32,112z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M399.32,112H480v16h-80.68c0.439-2.604,0.68-5.273,0.68-8S399.76,114.604,399.32,112z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M304.68,112c-0.439,2.604-0.68,5.273-0.68,8s0.24,5.396,0.68,8H32v-16H304.68z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M304.68,112c-0.439,2.604-0.68,5.273-0.68,8s0.24,5.396,0.68,8H32v-16H304.68z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.iosSettings = iosSettings; \ No newline at end of file diff --git a/dist/ionicons/iosSettingsStrong.js b/dist/ionicons/iosSettingsStrong.js new file mode 100644 index 000000000..5f439922c --- /dev/null +++ b/dist/ionicons/iosSettingsStrong.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosSettingsStrong = void 0; +var iosSettingsStrong = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M32,376h283.35c6.186-14.112,20.281-24,36.65-24s30.465,9.888,36.65,24H480v32h-91.35c-6.186,14.112-20.281,24-36.65,24\r\n\t\ts-30.465-9.888-36.65-24H32" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M32,376h283.35c6.186-14.112,20.281-24,36.65-24s30.465,9.888,36.65,24H480v32h-91.35c-6.186,14.112-20.281,24-36.65,24\r\n\t\ts-30.465-9.888-36.65-24H32" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M32,240h91.35c6.186-14.112,20.281-24,36.65-24s30.465,9.888,36.65,24H480v32H196.65c-6.186,14.112-20.281,24-36.65,24\r\n\t\ts-30.465-9.888-36.65-24H32" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M32,240h91.35c6.186-14.112,20.281-24,36.65-24s30.465,9.888,36.65,24H480v32H196.65c-6.186,14.112-20.281,24-36.65,24\r\n\t\ts-30.465-9.888-36.65-24H32" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M32,104h283.35c6.186-14.112,20.281-24,36.65-24s30.465,9.888,36.65,24H480v32h-91.35c-6.186,14.112-20.281,24-36.65,24\r\n\t\ts-30.465-9.888-36.65-24H32" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M32,104h283.35c6.186-14.112,20.281-24,36.65-24s30.465,9.888,36.65,24H480v32h-91.35c-6.186,14.112-20.281,24-36.65,24\r\n\t\ts-30.465-9.888-36.65-24H32" + }, + "children": [] + }] + }] + }] +}; +exports.iosSettingsStrong = iosSettingsStrong; \ No newline at end of file diff --git a/dist/ionicons/iosShuffle.js b/dist/ionicons/iosShuffle.js new file mode 100644 index 000000000..e015f6722 --- /dev/null +++ b/dist/ionicons/iosShuffle.js @@ -0,0 +1,59 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosShuffle = void 0; +var iosShuffle = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M362.121,207.146L352,194.854L413.784,144h-46.117c-93.327,0-129.147,74.511-163.787,138.832\r\n\t\tc-1.62,3.008-3.233,6.004-4.846,8.979c-19.836,36.607-40.979,61.242-64.64,75.314C120.573,375.346,101.401,384,64,384v-16.25\r\n\t\tc47.937,0,83.098-13.673,120.966-83.561c1.606-2.965,3.214-5.949,4.827-8.944C224.943,209.977,264.784,128,367.667,128h46.28\r\n\t\tL352,76.146L362.121,64L448,136L362.121,207.146z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M362.121,207.146L352,194.854L413.784,144h-46.117c-93.327,0-129.147,74.511-163.787,138.832\r\n\t\tc-1.62,3.008-3.233,6.004-4.846,8.979c-19.836,36.607-40.979,61.242-64.64,75.314C120.573,375.346,101.401,384,64,384v-16.25\r\n\t\tc47.937,0,83.098-13.673,120.966-83.561c1.606-2.965,3.214-5.949,4.827-8.944C224.943,209.977,264.784,128,367.667,128h46.28\r\n\t\tL352,76.146L362.121,64L448,136L362.121,207.146z" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M199.034,220.189c-19.836-36.607-40.979-61.242-64.64-75.314C120.573,136.654,101.401,128,64,128v16.25\r\n\t\t\tc47.937,0,83.098,13.673,120.966,83.561c1.606,2.964,3.214,5.948,4.827,8.944c0.438,0.812,0.875,1.627,1.314,2.444\r\n\t\t\tc3.01-5.438,6.107-10.917,9.339-16.394C199.977,221.935,199.504,221.056,199.034,220.189z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M199.034,220.189c-19.836-36.607-40.979-61.242-64.64-75.314C120.573,136.654,101.401,128,64,128v16.25\r\n\t\t\tc47.937,0,83.098,13.673,120.966,83.561c1.606,2.964,3.214,5.948,4.827,8.944c0.438,0.812,0.875,1.627,1.314,2.444\r\n\t\t\tc3.01-5.438,6.107-10.917,9.339-16.394C199.977,221.935,199.504,221.056,199.034,220.189z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M362.121,304.854L352,317.146L413.784,368h-46.117c-72.693,0-110.496-45.207-140.028-95.592\r\n\t\t\tc-1.768,3.275-3.525,6.551-5.273,9.814c-1.175,2.192-2.344,4.37-3.513,6.545C249.621,338.777,291.254,384,367.667,384h46.28\r\n\t\t\tL352,435.854L362.121,448L448,376L362.121,304.854z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M362.121,304.854L352,317.146L413.784,368h-46.117c-72.693,0-110.496-45.207-140.028-95.592\r\n\t\t\tc-1.768,3.275-3.525,6.551-5.273,9.814c-1.175,2.192-2.344,4.37-3.513,6.545C249.621,338.777,291.254,384,367.667,384h46.28\r\n\t\t\tL352,435.854L362.121,448L448,376L362.121,304.854z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.iosShuffle = iosShuffle; \ No newline at end of file diff --git a/dist/ionicons/iosShuffleStrong.js b/dist/ionicons/iosShuffleStrong.js new file mode 100644 index 000000000..f0b4d2b16 --- /dev/null +++ b/dist/ionicons/iosShuffleStrong.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosShuffleStrong = void 0; +var iosShuffleStrong = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M365.419,152h13.81l-50.738,41.584l20.308,24.572L448,136l-99.136-84l-20.368,24.978L379.679,120h-14.26\r\n\t\tc-103.727,0-146.494,79.62-180.857,143.727c-1.362,2.542-2.715,4.99-4.06,7.488l-0.059,0.095c-1.591,2.953-3.176,6.114-4.76,9.038\r\n\t\tc-35.562,65.63-66.893,83.214-111.684,83.641V396c37.625,0,57.563-9.451,72.236-18.178c24.935-14.831,47.042-44.559,67.583-82.467\r\n\t\tc1.541-2.844,3.083-5.752,4.632-8.626l0.225-0.438c1.459-2.711,2.922-5.273,4.39-8.014C246.369,216.113,280.808,152,365.419,152z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M365.419,152h13.81l-50.738,41.584l20.308,24.572L448,136l-99.136-84l-20.368,24.978L379.679,120h-14.26\r\n\t\tc-103.727,0-146.494,79.62-180.857,143.727c-1.362,2.542-2.715,4.99-4.06,7.488l-0.059,0.095c-1.591,2.953-3.176,6.114-4.76,9.038\r\n\t\tc-35.562,65.63-66.893,83.214-111.684,83.641V396c37.625,0,57.563-9.451,72.236-18.178c24.935-14.831,47.042-44.559,67.583-82.467\r\n\t\tc1.541-2.844,3.083-5.752,4.632-8.626l0.225-0.438c1.459-2.711,2.922-5.273,4.39-8.014C246.369,216.113,280.808,152,365.419,152z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M348.798,293.844l-20.308,24.572L379.229,360h-13.81c-70.728,0-106.396-44.801-135.649-95.812l-17.648,32.618\r\n\t\tC243.556,346.626,287.116,392,365.419,392h14.26l-51.183,43.022L348.864,460L448,376L348.798,293.844z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M348.798,293.844l-20.308,24.572L379.229,360h-13.81c-70.728,0-106.396-44.801-135.649-95.812l-17.648,32.618\r\n\t\tC243.556,346.626,287.116,392,365.419,392h14.26l-51.183,43.022L348.864,460L448,376L348.798,293.844z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M175.684,231.652c1.584,2.924,3.169,6.085,4.76,9.038l0.059,0.095c1.218,2.262,2.442,4.49,3.675,6.777\r\n\t\tc5.82-10.73,11.98-21.748,18.695-32.649c-20.273-37.079-42.083-66.132-66.636-80.735C121.563,125.451,101.625,116,64,116v32.011\r\n\t\tC108.791,148.438,140.122,166.022,175.684,231.652z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M175.684,231.652c1.584,2.924,3.169,6.085,4.76,9.038l0.059,0.095c1.218,2.262,2.442,4.49,3.675,6.777\r\n\t\tc5.82-10.73,11.98-21.748,18.695-32.649c-20.273-37.079-42.083-66.132-66.636-80.735C121.563,125.451,101.625,116,64,116v32.011\r\n\t\tC108.791,148.438,140.122,166.022,175.684,231.652z" + }, + "children": [] + }] + }] + }] +}; +exports.iosShuffleStrong = iosShuffleStrong; \ No newline at end of file diff --git a/dist/ionicons/iosSkipbackward.js b/dist/ionicons/iosSkipbackward.js new file mode 100644 index 000000000..fc4c8dac8 --- /dev/null +++ b/dist/ionicons/iosSkipbackward.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosSkipbackward = void 0; +var iosSkipbackward = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M96,96v320h79V274.2L416,416V96L175,237.8V96H96z" + }, + "children": [] + }] +}; +exports.iosSkipbackward = iosSkipbackward; \ No newline at end of file diff --git a/dist/ionicons/iosSkipbackwardOutline.js b/dist/ionicons/iosSkipbackwardOutline.js new file mode 100644 index 000000000..17adc49df --- /dev/null +++ b/dist/ionicons/iosSkipbackwardOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosSkipbackwardOutline = void 0; +var iosSkipbackwardOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M96,96v320h79V274.2L416,416V96L175,237.8V96H96z M175.6,256l7.6-4.4L400,124v0v264L183.1,260.4L175.6,256z M112,112h47\r\n\tv125.8v28v8.5V400h-47V112z" + }, + "children": [] + }] +}; +exports.iosSkipbackwardOutline = iosSkipbackwardOutline; \ No newline at end of file diff --git a/dist/ionicons/iosSkipforward.js b/dist/ionicons/iosSkipforward.js new file mode 100644 index 000000000..6fb13bf85 --- /dev/null +++ b/dist/ionicons/iosSkipforward.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosSkipforward = void 0; +var iosSkipforward = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M337,96v141.8L96,96v320l241-141.8V416h79V96H337z" + }, + "children": [] + }] +}; +exports.iosSkipforward = iosSkipforward; \ No newline at end of file diff --git a/dist/ionicons/iosSkipforwardOutline.js b/dist/ionicons/iosSkipforwardOutline.js new file mode 100644 index 000000000..d45d718bf --- /dev/null +++ b/dist/ionicons/iosSkipforwardOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosSkipforwardOutline = void 0; +var iosSkipforwardOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M337,96v141.8L96,96v320l241-141.8V416h79V96H337z M328.9,260.4L112,388V124v0l216.9,127.6l7.6,4.4L328.9,260.4z M400,400\r\n\th-47V274.2v-8.5v-28V112h47V400z" + }, + "children": [] + }] +}; +exports.iosSkipforwardOutline = iosSkipforwardOutline; \ No newline at end of file diff --git a/dist/ionicons/iosSnowy.js b/dist/ionicons/iosSnowy.js new file mode 100644 index 000000000..e03d16dde --- /dev/null +++ b/dist/ionicons/iosSnowy.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosSnowy = void 0; +var iosSnowy = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "style", + "attribs": { + "type": "text/css" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "class": "st0", + "d": "M379.9,317l-28.7-16.3c6.1-5.8,13-9.7,20.7-12.3c4.3-1.4,6.5-5.9,5.1-10.1c-1.4-4.2-6-6.5-10.3-5.1\r\n\tc-11.6,3.8-22.2,11-30.1,19.2L272.3,256l64.2-36.4c8.4,9.1,18.6,15.4,30.2,19.2c4.3,1.4,8.9-0.8,10.3-5c1.4-4.2-0.8-8.7-5.1-10.1\r\n\tc-7.8-2.6-14.8-6.5-20.9-12.3l28.8-16.3c3.9-2.2,5.2-7.1,3-10.9s-7.2-5.1-11.1-2.9L343,197.3c-2-8.1-2.1-15.9-0.5-23.8\r\n\tc0.9-4.3-2-8.5-6.4-9.4c-4.4-0.9-8.7,1.9-9.6,6.2c-2.4,11.8-1.4,24.4,1.8,35.2L264,242.2v-73c11-2.7,22.4-8.1,31.5-16.1\r\n\tc3.3-2.9,3.6-8,0.7-11.3c-2.9-3.3-7.9-3.6-11.3-0.7c-6,5.3-12.9,9.2-20.9,11.5V120c0-4.4-3.6-8-8-8c-4.4,0-8,3.6-8,8v32.7\r\n\tc-8-2.3-14.8-6.2-20.9-11.6c-3.3-2.9-8.4-2.6-11.3,0.7c-2.9,3.3-2.6,8.4,0.7,11.3c9.1,8,19.5,13.5,31.5,16.1v73l-64.5-36.6\r\n\tc3.2-10.9,4.2-23.5,1.9-35.2c-0.9-4.3-5.2-7.1-9.6-6.2c-4.4,0.9-7.2,5-6.4,9.4c1.6,7.9,1.6,15.7-0.5,23.8L140.3,181\r\n\tc-3.9-2.2-8.9-0.9-11.1,2.9c-2.2,3.8-0.9,8.7,3,10.9l28.8,16.3c-6.1,5.8-13,9.7-20.8,12.3c-4.3,1.4-6.5,6-5.1,10.1\r\n\tc1.4,4.2,6.1,6.4,10.3,5c11.6-3.9,21.8-10.1,30.2-19.2l64.3,36.5l-64.4,36.5c-7.9-8.2-18.6-15.3-30.1-19.2\r\n\tc-4.3-1.4-8.8,0.9-10.3,5.1c-1.4,4.2,0.8,8.7,5.1,10.1c7.7,2.6,14.6,6.5,20.7,12.3l-28.7,16.3c-3.9,2.2-5.2,7.1-3,10.9\r\n\ts7.2,5.1,11.1,2.9l28.8-16.3c2.1,8.1,2.1,15.9,0.4,23.9c-0.9,4.3,2,8.5,6.4,9.4c4.4,0.9,8.7-1.9,9.6-6.3c2.4-11.8,1.9-23.6-1.9-35.3\r\n\tl64.5-36.6v73.1c-12,2.6-22.4,8.1-31.5,16.1c-3.3,2.9-3.6,8-0.7,11.3c2.9,3.3,7.9,3.6,11.3,0.7c6.1-5.4,12.9-9.3,20.9-11.6V392\r\n\tc0,4.4,3.6,8,8,8c4.4,0,8-3.6,8-8v-32.6c8,2.3,14.8,6.2,20.9,11.5c3.3,2.9,8.3,2.6,11.3-0.7c2.9-3.3,2.6-8.4-0.7-11.3\r\n\tc-9-7.9-20.4-13.4-31.4-16.1v-73.1l64.4,36.5c-3.8,11.7-4.2,23.5-1.8,35.3c0.9,4.3,5.2,7.1,9.6,6.3c4.4-0.9,7.3-5.1,6.4-9.4\r\n\tc-1.6-8-1.6-15.8,0.4-23.9l28.8,16.3c3.9,2.2,8.9,0.9,11.1-2.9C385.2,324.1,383.8,319.2,379.9,317z" + }, + "children": [] + }] +}; +exports.iosSnowy = iosSnowy; \ No newline at end of file diff --git a/dist/ionicons/iosSpeedometer.js b/dist/ionicons/iosSpeedometer.js new file mode 100644 index 000000000..302f67402 --- /dev/null +++ b/dist/ionicons/iosSpeedometer.js @@ -0,0 +1,55 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosSpeedometer = void 0; +var iosSpeedometer = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M417,278.742V278h29.814c-0.931-23-6.056-45.609-14.831-66.151c-8.643-20.228-20.503-38.665-35.257-54.562l-24.867,24.646\r\n\t\tl-11.229-10.992l24.788-24.679c-16.187-14.836-34.86-26.742-55.515-35.392C308.479,101.897,286,97.092,263,96.186V130h-1.008H248\r\n\t\tV96.186c-23,0.894-44.95,5.699-66.404,14.685c-20.353,8.523-38.958,20.457-55.315,35.471l24.796,24.583l-0.549,0.549l0.001,0.006\r\n\t\tl-0.29,0.335l-10.27,10.203l-24.779-24.479c-14.77,15.932-26.604,34.243-35.176,54.309C71.241,232.388,66.117,255,65.187,278H94v16\r\n\t\th-0.776H65.187c0.926,22,5.915,44.432,14.829,65.297c7.689,18.001,18.398,34.664,31.831,49.926\r\n\t\tc38.785-37.377,89.958-57.928,144.154-57.928c54.113,0,105.286,20.676,144.154,58.135c13.354-15.175,24.061-31.979,31.83-50.166\r\n\t\tC440.9,338.396,445.889,316,446.814,294H417V278.742z M304,287.938c0,26.467-21.533,48-48,48c-10.223,0-19.701-3.223-27.496-8.691\r\n\t\tl-12.033,12.033l-11.312-11.313l11.948-11.948c-5.722-7.902-9.106-17.602-9.106-28.08c0-26.467,21.533-48,48-48\r\n\t\tc10.002,0,19.297,3.079,26.994,8.334l73.484-65.727l1.414,1.414l-62.849,76.11C300.673,267.933,304,277.551,304,287.938z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M417,278.742V278h29.814c-0.931-23-6.056-45.609-14.831-66.151c-8.643-20.228-20.503-38.665-35.257-54.562l-24.867,24.646\r\n\t\tl-11.229-10.992l24.788-24.679c-16.187-14.836-34.86-26.742-55.515-35.392C308.479,101.897,286,97.092,263,96.186V130h-1.008H248\r\n\t\tV96.186c-23,0.894-44.95,5.699-66.404,14.685c-20.353,8.523-38.958,20.457-55.315,35.471l24.796,24.583l-0.549,0.549l0.001,0.006\r\n\t\tl-0.29,0.335l-10.27,10.203l-24.779-24.479c-14.77,15.932-26.604,34.243-35.176,54.309C71.241,232.388,66.117,255,65.187,278H94v16\r\n\t\th-0.776H65.187c0.926,22,5.915,44.432,14.829,65.297c7.689,18.001,18.398,34.664,31.831,49.926\r\n\t\tc38.785-37.377,89.958-57.928,144.154-57.928c54.113,0,105.286,20.676,144.154,58.135c13.354-15.175,24.061-31.979,31.83-50.166\r\n\t\tC440.9,338.396,445.889,316,446.814,294H417V278.742z M304,287.938c0,26.467-21.533,48-48,48c-10.223,0-19.701-3.223-27.496-8.691\r\n\t\tl-12.033,12.033l-11.312-11.313l11.948-11.948c-5.722-7.902-9.106-17.602-9.106-28.08c0-26.467,21.533-48,48-48\r\n\t\tc10.002,0,19.297,3.079,26.994,8.334l73.484-65.727l1.414,1.414l-62.849,76.11C300.673,267.933,304,277.551,304,287.938z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,64C132.288,64,32,164.226,32,287.938c0,56.975,21.283,108.97,56.316,148.5c3.551,4.006,7.241,7.82,11.066,11.562\r\n\t\th22.193c31.713-39.103,80.144-64.096,134.424-64.096S358.711,408.897,390.424,448h22.193c3.825-3.742,7.516-7.557,11.066-11.562\r\n\t\tc35.033-39.53,56.316-91.525,56.316-148.5C480,164.226,379.712,64,256,64z M410.744,420.797\r\n\t\tc-3.051,3.408-6.392,6.863-10.213,10.564l-0.376,0.365l-0.348-0.393c-2.629-2.97-5.493-5.985-8.759-9.22\r\n\t\tc-0.275-0.271-0.555-0.539-0.834-0.807l-0.504-0.485c-17.258-16.766-37.234-29.967-59.375-39.238\r\n\t\tc-23.535-9.856-48.545-14.854-74.336-14.854c-25.791,0-50.801,4.998-74.336,14.854c-22.14,9.271-42.117,22.473-59.375,39.238\r\n\t\tl-0.504,0.485c-0.279,0.268-0.558,0.535-0.833,0.807c-3.266,3.234-6.13,6.25-8.759,9.22l-0.348,0.393l-0.377-0.365\r\n\t\tc-3.821-3.701-7.162-7.156-10.212-10.564c-33.514-37.441-51.971-85.629-51.971-135.685c0-54.666,21.502-106.053,60.545-144.694\r\n\t\tC148.87,101.779,200.781,80.5,256,80.5c55.22,0,107.13,21.279,146.17,59.918c39.043,38.642,60.545,90.029,60.545,144.694\r\n\t\tC462.715,335.168,444.259,383.355,410.744,420.797z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,64C132.288,64,32,164.226,32,287.938c0,56.975,21.283,108.97,56.316,148.5c3.551,4.006,7.241,7.82,11.066,11.562\r\n\t\th22.193c31.713-39.103,80.144-64.096,134.424-64.096S358.711,408.897,390.424,448h22.193c3.825-3.742,7.516-7.557,11.066-11.562\r\n\t\tc35.033-39.53,56.316-91.525,56.316-148.5C480,164.226,379.712,64,256,64z M410.744,420.797\r\n\t\tc-3.051,3.408-6.392,6.863-10.213,10.564l-0.376,0.365l-0.348-0.393c-2.629-2.97-5.493-5.985-8.759-9.22\r\n\t\tc-0.275-0.271-0.555-0.539-0.834-0.807l-0.504-0.485c-17.258-16.766-37.234-29.967-59.375-39.238\r\n\t\tc-23.535-9.856-48.545-14.854-74.336-14.854c-25.791,0-50.801,4.998-74.336,14.854c-22.14,9.271-42.117,22.473-59.375,39.238\r\n\t\tl-0.504,0.485c-0.279,0.268-0.558,0.535-0.833,0.807c-3.266,3.234-6.13,6.25-8.759,9.22l-0.348,0.393l-0.377-0.365\r\n\t\tc-3.821-3.701-7.162-7.156-10.212-10.564c-33.514-37.441-51.971-85.629-51.971-135.685c0-54.666,21.502-106.053,60.545-144.694\r\n\t\tC148.87,101.779,200.781,80.5,256,80.5c55.22,0,107.13,21.279,146.17,59.918c39.043,38.642,60.545,90.029,60.545,144.694\r\n\t\tC462.715,335.168,444.259,383.355,410.744,420.797z" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "256", + "cy": "287.938", + "r": "32" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "256", + "cy": "287.938", + "r": "32" + }, + "children": [] + }] + }] + }] +}; +exports.iosSpeedometer = iosSpeedometer; \ No newline at end of file diff --git a/dist/ionicons/iosSpeedometerOutline.js b/dist/ionicons/iosSpeedometerOutline.js new file mode 100644 index 000000000..f147f117b --- /dev/null +++ b/dist/ionicons/iosSpeedometerOutline.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosSpeedometerOutline = void 0; +var iosSpeedometerOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,64C132.288,64,32,164.226,32,287.938c0,56.975,21.283,108.97,56.316,148.5c3.551,4.006,7.241,7.82,11.066,11.562\r\n\t\tc3.059-3.49,6.232-6.834,9.539-10.141c0.48-0.48,0.972-0.947,1.456-1.422c18.78-18.426,40.521-32.949,64.664-43.161\r\n\t\tc25.633-10.842,52.871-16.339,80.958-16.339s55.325,5.497,80.958,16.339c24.144,10.212,45.884,24.735,64.664,43.161\r\n\t\tc0.484,0.475,0.976,0.941,1.456,1.422c3.307,3.307,6.48,6.65,9.539,10.141c3.825-3.742,7.516-7.557,11.066-11.562\r\n\t\tc35.033-39.53,56.316-91.525,56.316-148.5C480,164.226,379.712,64,256,64z M447.661,369.177\r\n\t\tc-8.663,20.481-20.429,39.092-35.044,55.776c-40.39-39.51-95.653-63.945-156.617-63.945s-116.228,24.33-156.617,63.84\r\n\t\tc-14.615-16.685-26.381-35.172-35.044-55.653c-9.81-23.19-15.228-47.694-16.173-72.694H79.5v-16H48.166\r\n\t\tc0.945-25,6.363-50.048,16.173-73.239c9.372-22.157,22.376-42.431,38.692-60.11l26.932,26.893l5.496-5.538l5.277-5.264l-0.02-0.027\r\n\t\tl0.547-0.552l-26.951-26.984c17.862-16.647,38.004-29.894,60.479-39.4c23.191-9.81,47.708-15.229,72.708-16.174V117.5h16V80.104\r\n\t\tc26,0.945,50.017,6.363,73.208,16.173c22.437,9.49,42.921,22.706,60.762,39.312l-26.975,27.069l0.577,0.547l-0.004,0.019\r\n\t\tl5.285,5.246l5.5,5.503l27.026-27.057c16.356,17.703,29.392,38.148,38.78,60.345c9.81,23.191,15.229,48.239,16.174,73.239H431.5v16\r\n\t\th32.334C462.889,321.5,457.471,345.986,447.661,369.177z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,64C132.288,64,32,164.226,32,287.938c0,56.975,21.283,108.97,56.316,148.5c3.551,4.006,7.241,7.82,11.066,11.562\r\n\t\tc3.059-3.49,6.232-6.834,9.539-10.141c0.48-0.48,0.972-0.947,1.456-1.422c18.78-18.426,40.521-32.949,64.664-43.161\r\n\t\tc25.633-10.842,52.871-16.339,80.958-16.339s55.325,5.497,80.958,16.339c24.144,10.212,45.884,24.735,64.664,43.161\r\n\t\tc0.484,0.475,0.976,0.941,1.456,1.422c3.307,3.307,6.48,6.65,9.539,10.141c3.825-3.742,7.516-7.557,11.066-11.562\r\n\t\tc35.033-39.53,56.316-91.525,56.316-148.5C480,164.226,379.712,64,256,64z M447.661,369.177\r\n\t\tc-8.663,20.481-20.429,39.092-35.044,55.776c-40.39-39.51-95.653-63.945-156.617-63.945s-116.228,24.33-156.617,63.84\r\n\t\tc-14.615-16.685-26.381-35.172-35.044-55.653c-9.81-23.19-15.228-47.694-16.173-72.694H79.5v-16H48.166\r\n\t\tc0.945-25,6.363-50.048,16.173-73.239c9.372-22.157,22.376-42.431,38.692-60.11l26.932,26.893l5.496-5.538l5.277-5.264l-0.02-0.027\r\n\t\tl0.547-0.552l-26.951-26.984c17.862-16.647,38.004-29.894,60.479-39.4c23.191-9.81,47.708-15.229,72.708-16.174V117.5h16V80.104\r\n\t\tc26,0.945,50.017,6.363,73.208,16.173c22.437,9.49,42.921,22.706,60.762,39.312l-26.975,27.069l0.577,0.547l-0.004,0.019\r\n\t\tl5.285,5.246l5.5,5.503l27.026-27.057c16.356,17.703,29.392,38.148,38.78,60.345c9.81,23.191,15.229,48.239,16.174,73.239H431.5v16\r\n\t\th32.334C462.889,321.5,457.471,345.986,447.661,369.177z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M368.479,174.545l-85.484,73.727c-7.697-5.255-16.992-8.334-26.994-8.334c-26.467,0-48,21.533-48,48\r\n\t\tc0,10.479,3.385,20.178,9.106,28.08l-11.948,11.948l11.312,11.313l12.033-12.033c7.795,5.469,17.273,8.691,27.496,8.691\r\n\t\tc26.467,0,48-21.533,48-48c0-10.387-3.327-20.005-8.956-27.868l74.849-84.11L368.479,174.545z M256,319.938\r\n\t\tc-17.673,0-32-14.326-32-32c0-17.673,14.327-32,32-32s32,14.327,32,32C288,305.611,273.673,319.938,256,319.938z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M368.479,174.545l-85.484,73.727c-7.697-5.255-16.992-8.334-26.994-8.334c-26.467,0-48,21.533-48,48\r\n\t\tc0,10.479,3.385,20.178,9.106,28.08l-11.948,11.948l11.312,11.313l12.033-12.033c7.795,5.469,17.273,8.691,27.496,8.691\r\n\t\tc26.467,0,48-21.533,48-48c0-10.387-3.327-20.005-8.956-27.868l74.849-84.11L368.479,174.545z M256,319.938\r\n\t\tc-17.673,0-32-14.326-32-32c0-17.673,14.327-32,32-32s32,14.327,32,32C288,305.611,273.673,319.938,256,319.938z" + }, + "children": [] + }] + }] + }] +}; +exports.iosSpeedometerOutline = iosSpeedometerOutline; \ No newline at end of file diff --git a/dist/ionicons/iosStar.js b/dist/ionicons/iosStar.js new file mode 100644 index 000000000..c13e16dbf --- /dev/null +++ b/dist/ionicons/iosStar.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosStar = void 0; +var iosStar = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M480,207H308.6L256,47.9L203.4,207H32l140.2,97.9L117.6,464L256,365.4L394.4,464l-54.7-159.1L480,207z" + }, + "children": [] + }] +}; +exports.iosStar = iosStar; \ No newline at end of file diff --git a/dist/ionicons/iosStarHalf.js b/dist/ionicons/iosStarHalf.js new file mode 100644 index 000000000..b3efc4b1c --- /dev/null +++ b/dist/ionicons/iosStarHalf.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosStarHalf = void 0; +var iosStarHalf = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M172.248,304.931l-54.677,159.073L256,365.37l138.445,98.634L339.76,304.937L480,207H308.613L256,48.005L203.402,207H32\r\n\tL172.248,304.931z M256,100.75L297,224h131l-108,74.711l42.623,122.481L256,345.257V100.75z" + }, + "children": [] + }] +}; +exports.iosStarHalf = iosStarHalf; \ No newline at end of file diff --git a/dist/ionicons/iosStarOutline.js b/dist/ionicons/iosStarOutline.js new file mode 100644 index 000000000..2ad42259e --- /dev/null +++ b/dist/ionicons/iosStarOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosStarOutline = void 0; +var iosStarOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M480,207H308.6L256,47.9L203.4,207H32l140.2,97.9L117.6,464L256,365.4L394.4,464l-54.7-159.1L480,207z M362.6,421.2\r\n\tl-106.6-76l-106.6,76L192,298.7L84,224h131l41-123.3L297,224h131l-108,74.6L362.6,421.2z" + }, + "children": [] + }] +}; +exports.iosStarOutline = iosStarOutline; \ No newline at end of file diff --git a/dist/ionicons/iosStopwatch.js b/dist/ionicons/iosStopwatch.js new file mode 100644 index 000000000..995df060b --- /dev/null +++ b/dist/ionicons/iosStopwatch.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosStopwatch = void 0; +var iosStopwatch = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M397.6,146.7l-1.8-1.7h18.4l8.5,7.8l22.5-22.8l-40.8-40.3L381.2,112l8.8,9.2v18.6l-5-4.7c-31.3-28.3-70-45.2-113-48.9V48\r\n\t\th-32v38h-2c-43.7,3-85,22.5-116,53v-17.8l8.9-9.2L108,89.8L67.2,130l22.5,22.8l8.5-7.8H116c-0.3,0-0.7,0.7-1,1.1\r\n\t\tC82.2,181.2,64,227,64,274.6C64,379,150.1,464,256.1,464C361.9,464,448,379.1,448,274.7C448,227.1,430,181.6,397.6,146.7z\r\n\t\t M264,318.2l-8,17.8l-8-17.8c-14-3.5-24-15.8-24-30.5c0-13.8,11.5-26,24-30.3V128h16v129.3c13.5,3.7,24,15.9,24,30.4\r\n\t\tC288,302.4,278,314.7,264,318.2z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M397.6,146.7l-1.8-1.7h18.4l8.5,7.8l22.5-22.8l-40.8-40.3L381.2,112l8.8,9.2v18.6l-5-4.7c-31.3-28.3-70-45.2-113-48.9V48\r\n\t\th-32v38h-2c-43.7,3-85,22.5-116,53v-17.8l8.9-9.2L108,89.8L67.2,130l22.5,22.8l8.5-7.8H116c-0.3,0-0.7,0.7-1,1.1\r\n\t\tC82.2,181.2,64,227,64,274.6C64,379,150.1,464,256.1,464C361.9,464,448,379.1,448,274.7C448,227.1,430,181.6,397.6,146.7z\r\n\t\t M264,318.2l-8,17.8l-8-17.8c-14-3.5-24-15.8-24-30.5c0-13.8,11.5-26,24-30.3V128h16v129.3c13.5,3.7,24,15.9,24,30.4\r\n\t\tC288,302.4,278,314.7,264,318.2z" + }, + "children": [] + }] + }] + }] +}; +exports.iosStopwatch = iosStopwatch; \ No newline at end of file diff --git a/dist/ionicons/iosStopwatchOutline.js b/dist/ionicons/iosStopwatchOutline.js new file mode 100644 index 000000000..603dd289a --- /dev/null +++ b/dist/ionicons/iosStopwatchOutline.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosStopwatchOutline = void 0; +var iosStopwatchOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M397.6,146.7l-1.8-1.7h18.4l8.5,7.8l22.5-22.8l-40.8-40.3L381.2,112l8.8,9.2v18.6l-5-4.7c-31.3-28.3-70-45.2-113-48.9V48\r\n\t\th-32v38h-2c-43.7,3-85,22.5-116,53v-17.8l8.9-9.2L108,89.8L67.2,130l22.5,22.8l8.5-7.8H116c-0.3,0-0.7,0.7-1,1.1\r\n\t\tC82.2,181.2,64,227,64,274.6C64,379,150.1,464,256.1,464C361.9,464,448,379.1,448,274.7C448,227.1,430,181.6,397.6,146.7z\r\n\t\t M256.3,445.7c-95.5,0-173.1-76.7-173.1-170.9c0-94.3,77.7-170.9,173.1-170.9c95.5,0,173.1,76.7,173.1,170.9\r\n\t\tC429.5,369,351.8,445.7,256.3,445.7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M397.6,146.7l-1.8-1.7h18.4l8.5,7.8l22.5-22.8l-40.8-40.3L381.2,112l8.8,9.2v18.6l-5-4.7c-31.3-28.3-70-45.2-113-48.9V48\r\n\t\th-32v38h-2c-43.7,3-85,22.5-116,53v-17.8l8.9-9.2L108,89.8L67.2,130l22.5,22.8l8.5-7.8H116c-0.3,0-0.7,0.7-1,1.1\r\n\t\tC82.2,181.2,64,227,64,274.6C64,379,150.1,464,256.1,464C361.9,464,448,379.1,448,274.7C448,227.1,430,181.6,397.6,146.7z\r\n\t\t M256.3,445.7c-95.5,0-173.1-76.7-173.1-170.9c0-94.3,77.7-170.9,173.1-170.9c95.5,0,173.1,76.7,173.1,170.9\r\n\t\tC429.5,369,351.8,445.7,256.3,445.7z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M264,257.3V128h-16v129.4c-12.5,4.3-24,16.5-24,30.3c0,14.7,10,27,24,30.5l8,17.8l0,0l8-17.8c14-3.5,24-15.8,24-30.5\r\n\t\tC288,273.2,277.5,261,264,257.3z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M264,257.3V128h-16v129.4c-12.5,4.3-24,16.5-24,30.3c0,14.7,10,27,24,30.5l8,17.8l0,0l8-17.8c14-3.5,24-15.8,24-30.5\r\n\t\tC288,273.2,277.5,261,264,257.3z" + }, + "children": [] + }] + }] + }] +}; +exports.iosStopwatchOutline = iosStopwatchOutline; \ No newline at end of file diff --git a/dist/ionicons/iosSunny.js b/dist/ionicons/iosSunny.js new file mode 100644 index 000000000..21239eb79 --- /dev/null +++ b/dist/ionicons/iosSunny.js @@ -0,0 +1,203 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosSunny = void 0; +var iosSunny = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "style", + "attribs": { + "type": "text/css" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "247", + "y": "96", + "class": "st0", + "width": "18", + "height": "56" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "247", + "y": "96", + "class": "st0", + "width": "18", + "height": "56" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "247", + "y": "356", + "class": "st0", + "width": "18", + "height": "60" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "247", + "y": "356", + "class": "st0", + "width": "18", + "height": "60" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "360", + "y": "247", + "class": "st0", + "width": "56", + "height": "18" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "360", + "y": "247", + "class": "st0", + "width": "56", + "height": "18" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "96", + "y": "247", + "class": "st0", + "width": "60", + "height": "18" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "96", + "y": "247", + "class": "st0", + "width": "60", + "height": "18" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "339", + "y": "317.4", + "transform": "matrix(-0.7071 0.7071 -0.7071 -0.7071 834.4009 337.0126)", + "class": "st0", + "width": "16.8", + "height": "47.8" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "339", + "y": "317.4", + "transform": "matrix(-0.7071 0.7071 -0.7071 -0.7071 834.4009 337.0126)", + "class": "st0", + "width": "16.8", + "height": "47.8" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "162.2", + "y": "140.7", + "transform": "matrix(-0.7071 0.7071 -0.7071 -0.7071 407.7248 160.277)", + "class": "st0", + "width": "16.8", + "height": "47.9" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "162.2", + "y": "140.7", + "transform": "matrix(-0.7071 0.7071 -0.7071 -0.7071 407.7248 160.277)", + "class": "st0", + "width": "16.8", + "height": "47.9" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "339", + "y": "140.7", + "transform": "matrix(0.7071 0.7071 -0.7071 0.7071 218.1171 -197.4504)", + "class": "st0", + "width": "16.8", + "height": "47.8" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "339", + "y": "140.7", + "transform": "matrix(0.7071 0.7071 -0.7071 0.7071 218.1171 -197.4504)", + "class": "st0", + "width": "16.8", + "height": "47.8" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "162.2", + "y": "317.4", + "transform": "matrix(0.707 0.7072 -0.7072 0.707 291.3531 -20.7056)", + "class": "st0", + "width": "16.8", + "height": "47.9" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "162.2", + "y": "317.4", + "transform": "matrix(0.707 0.7072 -0.7072 0.707 291.3531 -20.7056)", + "class": "st0", + "width": "16.8", + "height": "47.9" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "class": "st0", + "d": "M256,331.8c-41.8,0-75.8-34-75.8-75.8s34-75.8,75.8-75.8c41.8,0,75.8,34,75.8,75.8S297.8,331.8,256,331.8z" + }, + "children": [{ + "name": "path", + "attribs": { + "class": "st0", + "d": "M256,331.8c-41.8,0-75.8-34-75.8-75.8s34-75.8,75.8-75.8c41.8,0,75.8,34,75.8,75.8S297.8,331.8,256,331.8z" + }, + "children": [] + }] + }] + }] +}; +exports.iosSunny = iosSunny; \ No newline at end of file diff --git a/dist/ionicons/iosSunnyOutline.js b/dist/ionicons/iosSunnyOutline.js new file mode 100644 index 000000000..1e23159b9 --- /dev/null +++ b/dist/ionicons/iosSunnyOutline.js @@ -0,0 +1,203 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosSunnyOutline = void 0; +var iosSunnyOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "style", + "attribs": { + "type": "text/css" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "247", + "y": "96", + "class": "st0", + "width": "18", + "height": "56" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "247", + "y": "96", + "class": "st0", + "width": "18", + "height": "56" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "247", + "y": "356", + "class": "st0", + "width": "18", + "height": "60" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "247", + "y": "356", + "class": "st0", + "width": "18", + "height": "60" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "360", + "y": "247", + "class": "st0", + "width": "56", + "height": "18" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "360", + "y": "247", + "class": "st0", + "width": "56", + "height": "18" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "96", + "y": "247", + "class": "st0", + "width": "60", + "height": "18" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "96", + "y": "247", + "class": "st0", + "width": "60", + "height": "18" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "339", + "y": "317.4", + "transform": "matrix(-0.7071 0.7071 -0.7071 -0.7071 834.4009 337.0126)", + "class": "st0", + "width": "16.8", + "height": "47.8" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "339", + "y": "317.4", + "transform": "matrix(-0.7071 0.7071 -0.7071 -0.7071 834.4009 337.0126)", + "class": "st0", + "width": "16.8", + "height": "47.8" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "162.2", + "y": "140.7", + "transform": "matrix(-0.7071 0.7071 -0.7071 -0.7071 407.7248 160.277)", + "class": "st0", + "width": "16.8", + "height": "47.9" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "162.2", + "y": "140.7", + "transform": "matrix(-0.7071 0.7071 -0.7071 -0.7071 407.7248 160.277)", + "class": "st0", + "width": "16.8", + "height": "47.9" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "339", + "y": "140.7", + "transform": "matrix(0.7071 0.7071 -0.7071 0.7071 218.1171 -197.4504)", + "class": "st0", + "width": "16.8", + "height": "47.8" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "339", + "y": "140.7", + "transform": "matrix(0.7071 0.7071 -0.7071 0.7071 218.1171 -197.4504)", + "class": "st0", + "width": "16.8", + "height": "47.8" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "162.2", + "y": "317.4", + "transform": "matrix(0.707 0.7072 -0.7072 0.707 291.3531 -20.7056)", + "class": "st0", + "width": "16.8", + "height": "47.9" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "162.2", + "y": "317.4", + "transform": "matrix(0.707 0.7072 -0.7072 0.707 291.3531 -20.7056)", + "class": "st0", + "width": "16.8", + "height": "47.9" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "class": "st0", + "d": "M256,331.8c-41.8,0-75.8-34-75.8-75.8s34-75.8,75.8-75.8c41.8,0,75.8,34,75.8,75.8S297.8,331.8,256,331.8z\r\n\t\t M256,197.1c-32.5,0-58.9,26.4-58.9,58.9s26.4,58.9,58.9,58.9c32.5,0,58.9-26.4,58.9-58.9S288.5,197.1,256,197.1z" + }, + "children": [{ + "name": "path", + "attribs": { + "class": "st0", + "d": "M256,331.8c-41.8,0-75.8-34-75.8-75.8s34-75.8,75.8-75.8c41.8,0,75.8,34,75.8,75.8S297.8,331.8,256,331.8z\r\n\t\t M256,197.1c-32.5,0-58.9,26.4-58.9,58.9s26.4,58.9,58.9,58.9c32.5,0,58.9-26.4,58.9-58.9S288.5,197.1,256,197.1z" + }, + "children": [] + }] + }] + }] +}; +exports.iosSunnyOutline = iosSunnyOutline; \ No newline at end of file diff --git a/dist/ionicons/iosTelephone.js b/dist/ionicons/iosTelephone.js new file mode 100644 index 000000000..4e7b71fb3 --- /dev/null +++ b/dist/ionicons/iosTelephone.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosTelephone = void 0; +var iosTelephone = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M415.9,335.5c-14.6-15-56.1-43.1-83.3-43.1c-6.3,0-11.8,1.4-16.3,4.3c-13.3,8.5-23.9,15.1-29,15.1c-2.8,0-5.8-2.5-12.4-8.2\r\n\tl-1.1-1c-18.3-15.9-22.2-20-29.3-27.4l-1.8-1.9c-1.3-1.3-2.4-2.5-3.5-3.6c-6.2-6.4-10.7-11-26.6-29l-0.7-0.8\r\n\tc-7.6-8.6-12.6-14.2-12.9-18.3c-0.3-4,3.2-10.5,12.1-22.6c10.8-14.6,11.2-32.6,1.3-53.5c-7.9-16.5-20.8-32.3-32.2-46.2l-1-1.2\r\n\tc-9.8-12-21.2-18-33.9-18c-14.1,0-25.8,7.6-32,11.6c-0.5,0.3-1,0.7-1.5,1c-13.9,8.8-24,20.9-27.8,33.2c-5.7,18.5-9.5,42.5,17.8,92.4\r\n\tc23.6,43.2,45,72.2,79,107.1c32,32.8,46.2,43.4,78,66.4c35.4,25.6,69.4,40.3,93.2,40.3c22.1,0,39.5,0,64.3-29.9\r\n\tC442.3,370.8,431.5,351.6,415.9,335.5z" + }, + "children": [] + }] +}; +exports.iosTelephone = iosTelephone; \ No newline at end of file diff --git a/dist/ionicons/iosTelephoneOutline.js b/dist/ionicons/iosTelephoneOutline.js new file mode 100644 index 000000000..8c2c46187 --- /dev/null +++ b/dist/ionicons/iosTelephoneOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosTelephoneOutline = void 0; +var iosTelephoneOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M415.9,335.5c-14.6-15-56.1-43.1-83.3-43.1c-6.3,0-11.8,1.4-16.3,4.3c-13.3,8.5-23.9,15.1-29,15.1c-2.8,0-5.8-2.5-12.4-8.2\r\n\tl-1.1-1c-18.3-15.9-22.2-20-29.3-27.4l-1.8-1.9c-1.3-1.3-2.4-2.5-3.5-3.6c-6.2-6.4-10.7-11-26.6-29l-0.7-0.8\r\n\tc-7.6-8.6-12.6-14.2-12.9-18.3c-0.3-4,3.2-10.5,12.1-22.6c10.8-14.6,11.2-32.6,1.3-53.5c-7.9-16.5-20.8-32.3-32.2-46.2l-1-1.2\r\n\tc-9.8-12-21.2-18-33.9-18c-14.1,0-25.8,7.6-32,11.6c-0.5,0.3-1,0.7-1.5,1c-13.9,8.8-24,20.9-27.8,33.2c-5.7,18.5-9.5,42.5,17.8,92.4\r\n\tc23.6,43.2,45,72.2,79,107.1c32,32.8,46.2,43.4,78,66.4c35.4,25.6,69.4,40.3,93.2,40.3c22.1,0,39.5,0,64.3-29.9\r\n\tC442.3,370.8,431.5,351.6,415.9,335.5z M404.4,391.4c-20,24.2-31.5,24.2-52.3,24.2c-20.3,0-51.8-14-84.2-37.3\r\n\tc-31-22.4-44.8-32.7-75.9-64.6c-32.9-33.7-53.6-61.8-76.4-103.5c-24.1-44.1-21.4-63.4-16.5-79.3c2.6-8.5,10.4-17.6,21-24.2\r\n\tc0.5-0.3,1-0.7,1.6-1c5.3-3.4,14.1-9.1,23.7-9.1c8,0,15.1,4,21.9,12.3l1,1.2c25.5,31.2,45.4,58.8,30.4,79.2\r\n\tc-10.6,14.3-16.2,24-15.3,34c0.8,9.7,7.3,17,17.1,28l0.7,0.8c16.1,18.2,20.7,23,27.1,29.5c1.1,1.1,2.2,2.3,3.5,3.6l1.8,1.9\r\n\tc7.4,7.7,11.5,11.9,30.3,28.4l1.1,1c8,7,13.9,12.1,22.5,12.1c8.9,0,18.7-5.6,37.3-17.5c1.9-1.2,4.6-1.9,8-1.9\r\n\tc21.7,0,59.1,24.8,72.2,38.3C417,359.7,423,368.9,404.4,391.4z" + }, + "children": [] + }] +}; +exports.iosTelephoneOutline = iosTelephoneOutline; \ No newline at end of file diff --git a/dist/ionicons/iosTennisball.js b/dist/ionicons/iosTennisball.js new file mode 100644 index 000000000..fb9ca4b7d --- /dev/null +++ b/dist/ionicons/iosTennisball.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosTennisball = void 0; +var iosTennisball = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M48.05,251.556c-0.001,0.039-0.003,0.077-0.004,0.116c0,0,0.002,0,0.003,0C48.049,251.634,48.049,251.595,48.05,251.556z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M48.05,251.556c-0.001,0.039-0.003,0.077-0.004,0.116c0,0,0.002,0,0.003,0C48.049,251.634,48.049,251.595,48.05,251.556z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M260.311,463.915c0.066-0.002,0.133-0.006,0.199-0.007c-0.066,0.001-0.133,0.001-0.199,0.004\r\n\t\tC260.311,463.912,260.311,463.913,260.311,463.915z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M260.311,463.915c0.066-0.002,0.133-0.006,0.199-0.007c-0.066,0.001-0.133,0.001-0.199,0.004\r\n\t\tC260.311,463.912,260.311,463.913,260.311,463.915z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,48.001c-2.586,0-5.29,0.064-7.852,0.158L248,48.153c0,0.003,0,0.004,0,0.006c-5,0.199-10,0.602-16,1.205\r\n\t\tc0-0.002,0-0.004,0-0.008c0,0.005,0.083,0.008,0.072,0.012c-96.974,11.061-173.654,88.975-183.13,186.41\r\n\t\tc-0.004,0.018,0.045,0.222,0.042,0.222c0.003,0,0.004,0,0.007,0c-0.513,5-0.826,10-0.936,16c-0.001,0-0.003,0-0.004,0l0.003-0.152\r\n\t\tc-0.028,1.43-0.054,2.777-0.054,4.215c0,114.852,92.977,207.938,207.841,207.938c6.856,0,14.159-0.383,20.159-1.031\r\n\t\tc0,0.002,0,0.006,0,0.006c0-0.004,0.213-0.008,0.24-0.014c97.436-9.486,175.247-86.086,186.312-183.036\r\n\t\tc0.004-0.014,0.088,0.074,0.092,0.074c-0.002,0-0.006,0-0.008,0c0.889-8,1.363-15.859,1.363-23.904\r\n\t\tC464,141.245,370.87,48.001,256,48.001z M130.63,266.853c-20.895-8.474-42.788-13.43-65.244-14.816\r\n\t\tc0.11-5.374,0.438-10.695,0.986-15.952c52.568,3.275,104.203,24.977,144.375,65.146c40.172,40.169,61.876,91.797,65.152,144.359\r\n\t\tc-5.257,0.548-10.579,0.876-15.954,0.985c-1.385-22.453-6.342-44.344-14.816-65.236c-10.459-25.79-25.834-48.937-45.696-68.795\r\n\t\tC179.572,292.684,156.423,277.311,130.63,266.853z M297.722,214.265c-40.964-40.959-62.731-93.835-65.332-147.467\r\n\t\tc5.25-0.652,10.568-1.08,15.941-1.293c1.073,23.65,6.105,46.702,15.007,68.654c10.461,25.79,25.835,48.936,45.696,68.795\r\n\t\tc19.862,19.859,43.01,35.232,68.803,45.691c21.954,8.901,45.008,13.933,68.66,15.007c-0.213,5.37-0.643,10.689-1.293,15.939\r\n\t\tC391.564,276.989,338.686,255.225,297.722,214.265z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48.001c-2.586,0-5.29,0.064-7.852,0.158L248,48.153c0,0.003,0,0.004,0,0.006c-5,0.199-10,0.602-16,1.205\r\n\t\tc0-0.002,0-0.004,0-0.008c0,0.005,0.083,0.008,0.072,0.012c-96.974,11.061-173.654,88.975-183.13,186.41\r\n\t\tc-0.004,0.018,0.045,0.222,0.042,0.222c0.003,0,0.004,0,0.007,0c-0.513,5-0.826,10-0.936,16c-0.001,0-0.003,0-0.004,0l0.003-0.152\r\n\t\tc-0.028,1.43-0.054,2.777-0.054,4.215c0,114.852,92.977,207.938,207.841,207.938c6.856,0,14.159-0.383,20.159-1.031\r\n\t\tc0,0.002,0,0.006,0,0.006c0-0.004,0.213-0.008,0.24-0.014c97.436-9.486,175.247-86.086,186.312-183.036\r\n\t\tc0.004-0.014,0.088,0.074,0.092,0.074c-0.002,0-0.006,0-0.008,0c0.889-8,1.363-15.859,1.363-23.904\r\n\t\tC464,141.245,370.87,48.001,256,48.001z M130.63,266.853c-20.895-8.474-42.788-13.43-65.244-14.816\r\n\t\tc0.11-5.374,0.438-10.695,0.986-15.952c52.568,3.275,104.203,24.977,144.375,65.146c40.172,40.169,61.876,91.797,65.152,144.359\r\n\t\tc-5.257,0.548-10.579,0.876-15.954,0.985c-1.385-22.453-6.342-44.344-14.816-65.236c-10.459-25.79-25.834-48.937-45.696-68.795\r\n\t\tC179.572,292.684,156.423,277.311,130.63,266.853z M297.722,214.265c-40.964-40.959-62.731-93.835-65.332-147.467\r\n\t\tc5.25-0.652,10.568-1.08,15.941-1.293c1.073,23.65,6.105,46.702,15.007,68.654c10.461,25.79,25.835,48.936,45.696,68.795\r\n\t\tc19.862,19.859,43.01,35.232,68.803,45.691c21.954,8.901,45.008,13.933,68.66,15.007c-0.213,5.37-0.643,10.689-1.293,15.939\r\n\t\tC391.564,276.989,338.686,255.225,297.722,214.265z" + }, + "children": [] + }] + }] + }] +}; +exports.iosTennisball = iosTennisball; \ No newline at end of file diff --git a/dist/ionicons/iosTennisballOutline.js b/dist/ionicons/iosTennisballOutline.js new file mode 100644 index 000000000..06b6b18cf --- /dev/null +++ b/dist/ionicons/iosTennisballOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosTennisballOutline = void 0; +var iosTennisballOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M464,256c0-114.863-93.13-208-208-208C141.137,48,48,141.136,48,256c0,114.863,93.137,208,208,208\r\n\tc2.541,0,5.068-0.062,7.587-0.152c0.479-0.017,0.957-0.034,1.435-0.055c0.942-0.04,1.884-0.083,2.823-0.136\r\n\tc0.85-0.047,1.698-0.104,2.547-0.161c0.639-0.044,1.279-0.08,1.917-0.13c1.354-0.104,2.705-0.221,4.055-0.352\r\n\tc0-0.003,0-0.006,0-0.009c97.47-9.474,175.229-86.229,186.274-183.223c0.02-0.001,0.038,0,0.057-0.001\r\n\tc0.604-5.315,1.002-10.667,1.196-16.05c-0.016,0.001-0.032,0.001-0.049,0.001C463.937,261.166,464,258.591,464,256z M446.665,256\r\n\tc0,2.568-0.066,5.121-0.167,7.664c-23.639-1.076-46.677-6.106-68.616-15.005c-25.791-10.458-48.938-25.831-68.797-45.691\r\n\tc-19.86-19.86-35.233-43.007-45.692-68.797c-8.903-21.956-13.935-45.014-15.006-68.67c2.527-0.1,5.063-0.165,7.614-0.165\r\n\tC361.13,65.335,446.665,150.869,446.665,256z M65.337,256c0-1.318,0.023-2.631,0.05-3.942c22.476,1.379,44.388,6.337,65.3,14.817\r\n\tc25.791,10.458,48.938,25.831,68.798,45.691c19.86,19.859,35.232,43.007,45.691,68.798c8.474,20.896,13.43,42.792,14.814,65.249\r\n\tc-1.328,0.027-2.656,0.051-3.99,0.051C150.87,446.664,65.336,361.13,65.337,256z M275.943,445.623\r\n\tc-3.273-52.566-24.974-104.198-65.145-144.369c-40.186-40.186-91.84-61.889-144.427-65.15\r\n\tc9.172-88.053,78.52-158.478,166.074-169.313c2.595,53.64,24.36,106.525,65.326,147.49c40.949,40.952,93.811,62.713,147.433,65.322\r\n\tC434.351,367.118,363.957,436.432,275.943,445.623z" + }, + "children": [] + }] +}; +exports.iosTennisballOutline = iosTennisballOutline; \ No newline at end of file diff --git a/dist/ionicons/iosThunderstorm.js b/dist/ionicons/iosThunderstorm.js new file mode 100644 index 000000000..af5c19ee7 --- /dev/null +++ b/dist/ionicons/iosThunderstorm.js @@ -0,0 +1,49 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosThunderstorm = void 0; +var iosThunderstorm = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "style", + "attribs": { + "type": "text/css" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "class": "st0", + "points": "272,272 288,224 216,224 201,304 253.3,304 224,400 290,304 312,272 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "class": "st0", + "points": "272,272 288,224 216,224 201,304 253.3,304 224,400 290,304 312,272 \t" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "class": "st0", + "d": "M202.7,208l107.5,0l-16,48H312h30.4l-33,48h19c35.7,0,64.6-30.1,64.6-65.9c0-35.8-28.9-65.5-64.6-65.5\r\n\t\tc-2.7,0-5.4,0-8,0.3c-7.9-35-39.1-61.4-76.4-61.4c-43.3,0-78.3,35.2-78.3,78.5c0,2.6,0.1,5.2,0.4,7.8\r\n\t\tc-26.4,2.3-47.1,25.7-47.1,52.8c0,28.6,23.2,53.3,51.7,53.3h14" + }, + "children": [{ + "name": "path", + "attribs": { + "class": "st0", + "d": "M202.7,208l107.5,0l-16,48H312h30.4l-33,48h19c35.7,0,64.6-30.1,64.6-65.9c0-35.8-28.9-65.5-64.6-65.5\r\n\t\tc-2.7,0-5.4,0-8,0.3c-7.9-35-39.1-61.4-76.4-61.4c-43.3,0-78.3,35.2-78.3,78.5c0,2.6,0.1,5.2,0.4,7.8\r\n\t\tc-26.4,2.3-47.1,25.7-47.1,52.8c0,28.6,23.2,53.3,51.7,53.3h14" + }, + "children": [] + }] + }] + }] +}; +exports.iosThunderstorm = iosThunderstorm; \ No newline at end of file diff --git a/dist/ionicons/iosThunderstormOutline.js b/dist/ionicons/iosThunderstormOutline.js new file mode 100644 index 000000000..7e8be1272 --- /dev/null +++ b/dist/ionicons/iosThunderstormOutline.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosThunderstormOutline = void 0; +var iosThunderstormOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "style", + "attribs": { + "type": "text/css" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "class": "st0", + "points": "312,272 272,272 288,224 216,224 201,304 253.3,304 224,400 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "class": "st0", + "points": "312,272 272,272 288,224 216,224 201,304 253.3,304 224,400 \t" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "class": "st0", + "d": "M328.4,172.7c-2.7,0-5.4,0-8,0.3c-7.9-35-39.1-61.4-76.4-61.4c-43.3,0-78.3,35.2-78.3,78.5\r\n\t\t\tc0,2.6,0.1,5.2,0.4,7.8c-26.4,2.3-47.1,25.7-47.1,52.8c0,28.6,23.2,53.3,51.7,53.3H182v-17h-11.3c-9.5,0-18.5-4.1-25.4-11\r\n\t\t\tc-6.8-7-10.6-16.3-10.6-26c0-18.6,14.5-33.8,33.2-36.9c1.6-0.3,8.8-1.3,14.2-1.8c0,0-0.5-5.3-0.6-9.6c-0.1-4.3-0.1-9.4-0.1-11.5\r\n\t\t\tc0-34.6,28.1-62.7,62.6-62.7c14.5,0,28.1,4.8,39.3,13.9c10.9,8.9,18.6,21.3,21.7,34.9l3.1,14l14.2-1.8c2.1-0.3,4.1-0.4,6.1-0.4\r\n\t\t\tc26.9,0,48.8,22.3,48.8,49.4c0,27.1-21.9,49.4-48.8,49.4H320v17h8.4c35.7,0,64.6-30.1,64.6-65.9\r\n\t\t\tC393,202.4,364.1,172.7,328.4,172.7z" + }, + "children": [{ + "name": "path", + "attribs": { + "class": "st0", + "d": "M328.4,172.7c-2.7,0-5.4,0-8,0.3c-7.9-35-39.1-61.4-76.4-61.4c-43.3,0-78.3,35.2-78.3,78.5\r\n\t\t\tc0,2.6,0.1,5.2,0.4,7.8c-26.4,2.3-47.1,25.7-47.1,52.8c0,28.6,23.2,53.3,51.7,53.3H182v-17h-11.3c-9.5,0-18.5-4.1-25.4-11\r\n\t\t\tc-6.8-7-10.6-16.3-10.6-26c0-18.6,14.5-33.8,33.2-36.9c1.6-0.3,8.8-1.3,14.2-1.8c0,0-0.5-5.3-0.6-9.6c-0.1-4.3-0.1-9.4-0.1-11.5\r\n\t\t\tc0-34.6,28.1-62.7,62.6-62.7c14.5,0,28.1,4.8,39.3,13.9c10.9,8.9,18.6,21.3,21.7,34.9l3.1,14l14.2-1.8c2.1-0.3,4.1-0.4,6.1-0.4\r\n\t\t\tc26.9,0,48.8,22.3,48.8,49.4c0,27.1-21.9,49.4-48.8,49.4H320v17h8.4c35.7,0,64.6-30.1,64.6-65.9\r\n\t\t\tC393,202.4,364.1,172.7,328.4,172.7z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.iosThunderstormOutline = iosThunderstormOutline; \ No newline at end of file diff --git a/dist/ionicons/iosTime.js b/dist/ionicons/iosTime.js new file mode 100644 index 000000000..fc5513889 --- /dev/null +++ b/dist/ionicons/iosTime.js @@ -0,0 +1,35 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosTime = void 0; +var iosTime = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "style", + "attribs": { + "type": "text/css" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "class": "st0", + "d": "M256,32C132.3,32,32,132.3,32,256c0,123.7,100.3,224,224,224c123.7,0,224-100.3,224-224\r\n\t\tC480,132.3,379.7,32,256,32z M256,72c4.4,0,8,3.6,8,8s-3.6,8-8,8s-8-3.6-8-8S251.6,72,256,72z M80,264c-4.4,0-8-3.6-8-8\r\n\t\tc0-4.4,3.6-8,8-8s8,3.6,8,8C88,260.4,84.4,264,80,264z M107.6,350.9c-3.8,2.2-8.7,0.9-10.9-2.9c-2.2-3.8-0.9-8.7,2.9-10.9\r\n\t\tc3.8-2.2,8.7-0.9,10.9,2.9C112.7,343.8,111.4,348.7,107.6,350.9z M110.5,172c-2.2,3.8-7.1,5.1-10.9,2.9c-3.8-2.2-5.1-7.1-2.9-10.9\r\n\t\ts7.1-5.1,10.9-2.9C111.4,163.3,112.7,168.2,110.5,172z M164,96.7c3.8-2.2,8.7-0.9,10.9,2.9c2.2,3.8,0.9,8.7-2.9,10.9\r\n\t\tc-3.8,2.2-8.7,0.9-10.9-2.9C158.9,103.8,160.2,98.9,164,96.7z M174.9,412.4c-2.2,3.8-7.1,5.1-10.9,2.9c-3.8-2.2-5.1-7.1-2.9-10.9\r\n\t\tc2.2-3.8,7.1-5.1,10.9-2.9S177.1,408.6,174.9,412.4z M256,440c-4.4,0-8-3.6-8-8s3.6-8,8-8s8,3.6,8,8S260.4,440,256,440z M264,269.9\r\n\t\tV392c0,4.4-3.6,8-8,8c-4.4,0-8-3.6-8-8V269.8c-2.4-1.4-4.4-3.3-5.9-5.8c-3-5.2-2.7-11.5,0.2-16.3l-37.6-62.9c-2.3-3.8-1-8.7,2.7-11\r\n\t\tc3.8-2.3,8.7-1,11,2.7l38,63.4c5.4,0.1,10.6,3,13.4,8C274.3,255.7,271.7,265.4,264,269.9z M348,415.3c-3.8,2.2-8.7,0.9-10.9-2.9\r\n\t\tc-2.2-3.8-0.9-8.7,2.9-10.9c3.8-2.2,8.7-0.9,10.9,2.9C353.1,408.2,351.8,413.1,348,415.3z M350.9,107.6c-2.2,3.8-7.1,5.1-10.9,2.9\r\n\t\tc-3.8-2.2-5.1-7.1-2.9-10.9c2.2-3.8,7.1-5.1,10.9-2.9C351.8,98.9,353.1,103.8,350.9,107.6z M415.3,348c-2.2,3.8-7.1,5.1-10.9,2.9\r\n\t\tc-3.8-2.2-5.1-7.1-2.9-10.9c2.2-3.8,7.1-5.1,10.9-2.9C416.2,339.3,417.6,344.2,415.3,348z M412.4,174.9c-3.8,2.2-8.7,0.9-10.9-2.9\r\n\t\tc-2.2-3.8-0.9-8.7,2.9-10.9c3.8-2.2,8.7-0.9,10.9,2.9C417.6,167.8,416.2,172.7,412.4,174.9z M432,264c-4.4,0-8-3.6-8-8\r\n\t\tc0-4.4,3.6-8,8-8s8,3.6,8,8C440,260.4,436.4,264,432,264z" + }, + "children": [{ + "name": "path", + "attribs": { + "class": "st0", + "d": "M256,32C132.3,32,32,132.3,32,256c0,123.7,100.3,224,224,224c123.7,0,224-100.3,224-224\r\n\t\tC480,132.3,379.7,32,256,32z M256,72c4.4,0,8,3.6,8,8s-3.6,8-8,8s-8-3.6-8-8S251.6,72,256,72z M80,264c-4.4,0-8-3.6-8-8\r\n\t\tc0-4.4,3.6-8,8-8s8,3.6,8,8C88,260.4,84.4,264,80,264z M107.6,350.9c-3.8,2.2-8.7,0.9-10.9-2.9c-2.2-3.8-0.9-8.7,2.9-10.9\r\n\t\tc3.8-2.2,8.7-0.9,10.9,2.9C112.7,343.8,111.4,348.7,107.6,350.9z M110.5,172c-2.2,3.8-7.1,5.1-10.9,2.9c-3.8-2.2-5.1-7.1-2.9-10.9\r\n\t\ts7.1-5.1,10.9-2.9C111.4,163.3,112.7,168.2,110.5,172z M164,96.7c3.8-2.2,8.7-0.9,10.9,2.9c2.2,3.8,0.9,8.7-2.9,10.9\r\n\t\tc-3.8,2.2-8.7,0.9-10.9-2.9C158.9,103.8,160.2,98.9,164,96.7z M174.9,412.4c-2.2,3.8-7.1,5.1-10.9,2.9c-3.8-2.2-5.1-7.1-2.9-10.9\r\n\t\tc2.2-3.8,7.1-5.1,10.9-2.9S177.1,408.6,174.9,412.4z M256,440c-4.4,0-8-3.6-8-8s3.6-8,8-8s8,3.6,8,8S260.4,440,256,440z M264,269.9\r\n\t\tV392c0,4.4-3.6,8-8,8c-4.4,0-8-3.6-8-8V269.8c-2.4-1.4-4.4-3.3-5.9-5.8c-3-5.2-2.7-11.5,0.2-16.3l-37.6-62.9c-2.3-3.8-1-8.7,2.7-11\r\n\t\tc3.8-2.3,8.7-1,11,2.7l38,63.4c5.4,0.1,10.6,3,13.4,8C274.3,255.7,271.7,265.4,264,269.9z M348,415.3c-3.8,2.2-8.7,0.9-10.9-2.9\r\n\t\tc-2.2-3.8-0.9-8.7,2.9-10.9c3.8-2.2,8.7-0.9,10.9,2.9C353.1,408.2,351.8,413.1,348,415.3z M350.9,107.6c-2.2,3.8-7.1,5.1-10.9,2.9\r\n\t\tc-3.8-2.2-5.1-7.1-2.9-10.9c2.2-3.8,7.1-5.1,10.9-2.9C351.8,98.9,353.1,103.8,350.9,107.6z M415.3,348c-2.2,3.8-7.1,5.1-10.9,2.9\r\n\t\tc-3.8-2.2-5.1-7.1-2.9-10.9c2.2-3.8,7.1-5.1,10.9-2.9C416.2,339.3,417.6,344.2,415.3,348z M412.4,174.9c-3.8,2.2-8.7,0.9-10.9-2.9\r\n\t\tc-2.2-3.8-0.9-8.7,2.9-10.9c3.8-2.2,8.7-0.9,10.9,2.9C417.6,167.8,416.2,172.7,412.4,174.9z M432,264c-4.4,0-8-3.6-8-8\r\n\t\tc0-4.4,3.6-8,8-8s8,3.6,8,8C440,260.4,436.4,264,432,264z" + }, + "children": [] + }] + }] + }] +}; +exports.iosTime = iosTime; \ No newline at end of file diff --git a/dist/ionicons/iosTimeOutline.js b/dist/ionicons/iosTimeOutline.js new file mode 100644 index 000000000..2e57a7e4f --- /dev/null +++ b/dist/ionicons/iosTimeOutline.js @@ -0,0 +1,273 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosTimeOutline = void 0; +var iosTimeOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "style", + "attribs": { + "type": "text/css" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "class": "st0", + "d": "M256,32C132.3,32,32,132.3,32,256c0,123.7,100.3,224,224,224c123.7,0,224-100.3,224-224\r\n\t\t\tC480,132.3,379.7,32,256,32z M403.1,403.1c-19.1,19.1-41.4,34.1-66.1,44.6c-25.6,10.8-52.9,16.3-81,16.3c-28.1,0-55.3-5.5-81-16.3\r\n\t\t\tc-24.8-10.5-47-25.5-66.1-44.6C89.8,384,74.8,361.7,64.3,337C53.5,311.3,48,284.1,48,256c0-28.1,5.5-55.3,16.3-81\r\n\t\t\tc10.5-24.8,25.5-47,44.6-66.1C128,89.8,150.3,74.8,175,64.3C200.7,53.5,227.9,48,256,48c28.1,0,55.3,5.5,81,16.3\r\n\t\t\tc24.8,10.5,47,25.5,66.1,44.6c19.1,19.1,34.1,41.4,44.6,66.1c10.8,25.6,16.3,52.9,16.3,81c0,28.1-5.5,55.3-16.3,81\r\n\t\t\tC437.2,361.7,422.2,384,403.1,403.1z" + }, + "children": [{ + "name": "path", + "attribs": { + "class": "st0", + "d": "M256,32C132.3,32,32,132.3,32,256c0,123.7,100.3,224,224,224c123.7,0,224-100.3,224-224\r\n\t\t\tC480,132.3,379.7,32,256,32z M403.1,403.1c-19.1,19.1-41.4,34.1-66.1,44.6c-25.6,10.8-52.9,16.3-81,16.3c-28.1,0-55.3-5.5-81-16.3\r\n\t\t\tc-24.8-10.5-47-25.5-66.1-44.6C89.8,384,74.8,361.7,64.3,337C53.5,311.3,48,284.1,48,256c0-28.1,5.5-55.3,16.3-81\r\n\t\t\tc10.5-24.8,25.5-47,44.6-66.1C128,89.8,150.3,74.8,175,64.3C200.7,53.5,227.9,48,256,48c28.1,0,55.3,5.5,81,16.3\r\n\t\t\tc24.8,10.5,47,25.5,66.1,44.6c19.1,19.1,34.1,41.4,44.6,66.1c10.8,25.6,16.3,52.9,16.3,81c0,28.1-5.5,55.3-16.3,81\r\n\t\t\tC437.2,361.7,422.2,384,403.1,403.1z" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "class": "st0", + "cx": "256", + "cy": "80", + "r": "8" + }, + "children": [{ + "name": "circle", + "attribs": { + "class": "st0", + "cx": "256", + "cy": "80", + "r": "8" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "class": "st0", + "cx": "256", + "cy": "432", + "r": "8" + }, + "children": [{ + "name": "circle", + "attribs": { + "class": "st0", + "cx": "256", + "cy": "432", + "r": "8" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "class": "st0", + "cx": "432", + "cy": "256", + "r": "8" + }, + "children": [{ + "name": "circle", + "attribs": { + "class": "st0", + "cx": "432", + "cy": "256", + "r": "8" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "class": "st0", + "cx": "80", + "cy": "256", + "r": "8" + }, + "children": [{ + "name": "circle", + "attribs": { + "class": "st0", + "cx": "80", + "cy": "256", + "r": "8" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "class": "st0", + "cx": "168", + "cy": "103.6", + "r": "8" + }, + "children": [{ + "name": "circle", + "attribs": { + "class": "st0", + "cx": "168", + "cy": "103.6", + "r": "8" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "class": "st0", + "cx": "344", + "cy": "408.4", + "r": "8" + }, + "children": [{ + "name": "circle", + "attribs": { + "class": "st0", + "cx": "344", + "cy": "408.4", + "r": "8" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "class": "st0", + "cx": "408.4", + "cy": "168", + "r": "8" + }, + "children": [{ + "name": "circle", + "attribs": { + "class": "st0", + "cx": "408.4", + "cy": "168", + "r": "8" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "class": "st0", + "cx": "103.6", + "cy": "344", + "r": "8" + }, + "children": [{ + "name": "circle", + "attribs": { + "class": "st0", + "cx": "103.6", + "cy": "344", + "r": "8" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "class": "st0", + "cx": "103.6", + "cy": "168", + "r": "8" + }, + "children": [{ + "name": "circle", + "attribs": { + "class": "st0", + "cx": "103.6", + "cy": "168", + "r": "8" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "class": "st0", + "cx": "408.4", + "cy": "344", + "r": "8" + }, + "children": [{ + "name": "circle", + "attribs": { + "class": "st0", + "cx": "408.4", + "cy": "344", + "r": "8" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "class": "st0", + "cx": "344", + "cy": "103.6", + "r": "8" + }, + "children": [{ + "name": "circle", + "attribs": { + "class": "st0", + "cx": "344", + "cy": "103.6", + "r": "8" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "class": "st0", + "cx": "168", + "cy": "408.4", + "r": "8" + }, + "children": [{ + "name": "circle", + "attribs": { + "class": "st0", + "cx": "168", + "cy": "408.4", + "r": "8" + }, + "children": [] + }] + }] + }] + }, { + "name": "path", + "attribs": { + "class": "st0", + "d": "M269.9,248c-2.9-5-8.1-7.8-13.4-8l-38-63.4c-2.3-3.8-7.2-5-11-2.7c-3.8,2.3-5,7.2-2.7,11l37.6,62.9\r\n\t\tc-2.9,4.8-3.2,11.1-0.2,16.3c1.5,2.5,3.5,4.5,5.9,5.8V392c0,4.4,3.6,8,8,8c4.4,0,8-3.6,8-8V269.9\r\n\t\tC271.7,265.4,274.3,255.7,269.9,248z" + }, + "children": [{ + "name": "path", + "attribs": { + "class": "st0", + "d": "M269.9,248c-2.9-5-8.1-7.8-13.4-8l-38-63.4c-2.3-3.8-7.2-5-11-2.7c-3.8,2.3-5,7.2-2.7,11l37.6,62.9\r\n\t\tc-2.9,4.8-3.2,11.1-0.2,16.3c1.5,2.5,3.5,4.5,5.9,5.8V392c0,4.4,3.6,8,8,8c4.4,0,8-3.6,8-8V269.9\r\n\t\tC271.7,265.4,274.3,255.7,269.9,248z" + }, + "children": [] + }] + }] + }] +}; +exports.iosTimeOutline = iosTimeOutline; \ No newline at end of file diff --git a/dist/ionicons/iosTimer.js b/dist/ionicons/iosTimer.js new file mode 100644 index 000000000..d8340190c --- /dev/null +++ b/dist/ionicons/iosTimer.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosTimer = void 0; +var iosTimer = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48C141.1,48,48,141.1,48,256c0,114.9,93.1,208,208,208c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48z\r\n\t M150.5,150.5c2.6-2.3,119.9,84.9,119.9,84.9c1,0.7,1.6,1.5,2.2,2.2c5,4.6,8.2,11,8.2,18.3c0,13.7-11.1,24.9-24.9,24.9\r\n\tc-7.8,0-14.7-3.7-19.3-9.4c-0.4-0.4-0.8-0.7-1.1-1.1C235.6,270.4,148,152.9,150.5,150.5z M256.1,447.2\r\n\tc-105.7,0-191.4-85.7-191.4-191.4c0-52.8,21.4-100.7,56-135.3l11.8,11.8c-31.6,31.6-51.2,75.3-51.2,123.5\r\n\tc0,96.3,78.4,174.7,174.7,174.7s174.5-78.4,174.5-174.7c0-90.3-70.5-165.1-158.5-174V160h-16V64.4c105.7,0,191.5,85.7,191.5,191.4\r\n\tC447.5,361.5,361.7,447.2,256.1,447.2z" + }, + "children": [] + }] +}; +exports.iosTimer = iosTimer; \ No newline at end of file diff --git a/dist/ionicons/iosTimerOutline.js b/dist/ionicons/iosTimerOutline.js new file mode 100644 index 000000000..900774dca --- /dev/null +++ b/dist/ionicons/iosTimerOutline.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosTimerOutline = void 0; +var iosTimerOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M236.6,271.6c4.6,5.7,11.5,9.4,19.4,9.4c13.8,0,25-11.2,25-25c0-7.3-3.2-13.8-8.2-18.4c-0.6-0.7-1.3-1.5-2.2-2.2\r\n\tc0,0-117.7-87.5-120.3-85.2c-2.6,2.3,85.3,120.2,85.3,120.2C235.8,270.8,236.3,271.2,236.6,271.6z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M256.2,48L256.2,48H256v112h16V65.3c97.8,8.3,175.3,90.5,175.3,190.5c0,105.5-85.7,191.4-191.2,191.4\r\n\tc-105.5,0-191.3-85.8-191.3-191.3c0-52.8,21.5-100.6,56.1-135.2L109,108.9C71.3,146.6,48,198.6,48,256c0,114.9,93.1,208,208,208\r\n\tc114.9,0,208-93.1,208-208C464,141.1,371,48,256.2,48z" + }, + "children": [] + }] +}; +exports.iosTimerOutline = iosTimerOutline; \ No newline at end of file diff --git a/dist/ionicons/iosToggle.js b/dist/ionicons/iosToggle.js new file mode 100644 index 000000000..79a3a59ff --- /dev/null +++ b/dist/ionicons/iosToggle.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosToggle = void 0; +var iosToggle = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M128,320c-26.467,0-48,21.533-48,48s21.533,48,48,48s48-21.533,48-48S154.467,320,128,320z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M128,320c-26.467,0-48,21.533-48,48s21.533,48,48,48s48-21.533,48-48S154.467,320,128,320z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M383.5,272h-255C75.205,272,32,315.205,32,368.5S75.205,464,128.5,464h255c53.295,0,96.5-42.205,96.5-95.5\r\n\t\tS436.795,272,383.5,272z M128,432c-35.346,0-64-28.653-64-64c0-35.346,28.654-64,64-64s64,28.654,64,64\r\n\t\tC192,403.347,163.346,432,128,432z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M383.5,272h-255C75.205,272,32,315.205,32,368.5S75.205,464,128.5,464h255c53.295,0,96.5-42.205,96.5-95.5\r\n\t\tS436.795,272,383.5,272z M128,432c-35.346,0-64-28.653-64-64c0-35.346,28.654-64,64-64s64,28.654,64,64\r\n\t\tC192,403.347,163.346,432,128,432z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M384,192c26.467,0,48-21.533,48-48s-21.533-48-48-48s-48,21.533-48,48S357.533,192,384,192z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M384,192c26.467,0,48-21.533,48-48s-21.533-48-48-48s-48,21.533-48,48S357.533,192,384,192z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M128.5,240h255c53.295,0,96.5-42.205,96.5-95.5S436.795,48,383.5,48h-255C75.205,48,32,91.205,32,144.5\r\n\t\tS75.205,240,128.5,240z M384,80c35.346,0,64,28.654,64,64c0,35.347-28.654,64-64,64s-64-28.653-64-64\r\n\t\tC320,108.654,348.654,80,384,80z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M128.5,240h255c53.295,0,96.5-42.205,96.5-95.5S436.795,48,383.5,48h-255C75.205,48,32,91.205,32,144.5\r\n\t\tS75.205,240,128.5,240z M384,80c35.346,0,64,28.654,64,64c0,35.347-28.654,64-64,64s-64-28.653-64-64\r\n\t\tC320,108.654,348.654,80,384,80z" + }, + "children": [] + }] + }] + }] +}; +exports.iosToggle = iosToggle; \ No newline at end of file diff --git a/dist/ionicons/iosToggleOutline.js b/dist/ionicons/iosToggleOutline.js new file mode 100644 index 000000000..216038f7e --- /dev/null +++ b/dist/ionicons/iosToggleOutline.js @@ -0,0 +1,79 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosToggleOutline = void 0; +var iosToggleOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M128,320c26.467,0,48,21.533,48,48s-21.533,48-48,48s-48-21.533-48-48S101.533,320,128,320 M128,304\r\n\t\t\tc-35.346,0-64,28.654-64,64c0,35.347,28.654,64,64,64s64-28.653,64-64C192,332.654,163.346,304,128,304L128,304z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M128,320c26.467,0,48,21.533,48,48s-21.533,48-48,48s-48-21.533-48-48S101.533,320,128,320 M128,304\r\n\t\t\tc-35.346,0-64,28.654-64,64c0,35.347,28.654,64,64,64s64-28.653,64-64C192,332.654,163.346,304,128,304L128,304z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M383.25,288c44.388,0,80.625,36.112,80.625,80.5S427.888,448,383.5,448h-255C84.112,448,48,412.888,48,368.5\r\n\t\t\tS84.112,288,128.5,288H383 M383.5,272h-255C75.205,272,32,315.205,32,368.5S75.205,464,128.5,464h255\r\n\t\t\tc53.295,0,96.5-42.205,96.5-95.5S436.795,272,383.5,272L383.5,272z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M383.25,288c44.388,0,80.625,36.112,80.625,80.5S427.888,448,383.5,448h-255C84.112,448,48,412.888,48,368.5\r\n\t\t\tS84.112,288,128.5,288H383 M383.5,272h-255C75.205,272,32,315.205,32,368.5S75.205,464,128.5,464h255\r\n\t\t\tc53.295,0,96.5-42.205,96.5-95.5S436.795,272,383.5,272L383.5,272z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M384,96c26.467,0,48,21.533,48,48s-21.533,48-48,48s-48-21.533-48-48S357.533,96,384,96 M384,80\r\n\t\t\tc-35.346,0-64,28.654-64,64c0,35.347,28.654,64,64,64s64-28.653,64-64C448,108.654,419.346,80,384,80L384,80z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M384,96c26.467,0,48,21.533,48,48s-21.533,48-48,48s-48-21.533-48-48S357.533,96,384,96 M384,80\r\n\t\t\tc-35.346,0-64,28.654-64,64c0,35.347,28.654,64,64,64s64-28.653,64-64C448,108.654,419.346,80,384,80L384,80z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M129,64h254.5c44.388,0,80.5,36.112,80.5,80.5S427.888,224,383.5,224h-255c-44.388,0-80.375-35.112-80.375-79.5\r\n\t\t\tS84.362,64,128.75,64 M128.5,48C75.205,48,32,91.205,32,144.5S75.205,240,128.5,240h255c53.295,0,96.5-42.205,96.5-95.5\r\n\t\t\tS436.795,48,383.5,48H128.5L128.5,48z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M129,64h254.5c44.388,0,80.5,36.112,80.5,80.5S427.888,224,383.5,224h-255c-44.388,0-80.375-35.112-80.375-79.5\r\n\t\t\tS84.362,64,128.75,64 M128.5,48C75.205,48,32,91.205,32,144.5S75.205,240,128.5,240h255c53.295,0,96.5-42.205,96.5-95.5\r\n\t\t\tS436.795,48,383.5,48H128.5L128.5,48z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.iosToggleOutline = iosToggleOutline; \ No newline at end of file diff --git a/dist/ionicons/iosTrash.js b/dist/ionicons/iosTrash.js new file mode 100644 index 000000000..df78d2b79 --- /dev/null +++ b/dist/ionicons/iosTrash.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosTrash = void 0; +var iosTrash = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M320,113V93.3c0-16.2-13.1-29.3-29.3-29.3h-69.5C205.1,64,192,77.1,192,93.3V113h-80v15h21.1l23.6,290.7\r\n\t\tc0,16.2,13.1,29.3,29.3,29.3h141c16.2,0,29.3-13.1,29.3-29.3L379.6,128H400v-15H320z M207,93.3c0-8.1,6.2-14.3,14.3-14.3h69.5\r\n\t\tc8.1,0,14.3,6.2,14.3,14.3V113h-98V93.3H207z M202.7,401L192,160h14.5l10.9,241H202.7z M263,401h-14V160h14V401z M309.3,401h-14.6\r\n\t\tl10.8-241H320L309.3,401z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M320,113V93.3c0-16.2-13.1-29.3-29.3-29.3h-69.5C205.1,64,192,77.1,192,93.3V113h-80v15h21.1l23.6,290.7\r\n\t\tc0,16.2,13.1,29.3,29.3,29.3h141c16.2,0,29.3-13.1,29.3-29.3L379.6,128H400v-15H320z M207,93.3c0-8.1,6.2-14.3,14.3-14.3h69.5\r\n\t\tc8.1,0,14.3,6.2,14.3,14.3V113h-98V93.3H207z M202.7,401L192,160h14.5l10.9,241H202.7z M263,401h-14V160h14V401z M309.3,401h-14.6\r\n\t\tl10.8-241H320L309.3,401z" + }, + "children": [] + }] + }] + }] +}; +exports.iosTrash = iosTrash; \ No newline at end of file diff --git a/dist/ionicons/iosTrashOutline.js b/dist/ionicons/iosTrashOutline.js new file mode 100644 index 000000000..aa4c9de41 --- /dev/null +++ b/dist/ionicons/iosTrashOutline.js @@ -0,0 +1,77 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosTrashOutline = void 0; +var iosTrashOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M400,113.3h-80v-20c0-16.2-13.1-29.3-29.3-29.3h-69.5C205.1,64,192,77.1,192,93.3v20h-80V128h21.1l23.6,290.7\r\n\t\tc0,16.2,13.1,29.3,29.3,29.3h141c16.2,0,29.3-13.1,29.3-29.3L379.6,128H400V113.3z M206.6,93.3c0-8.1,6.6-14.7,14.6-14.7h69.5\r\n\t\tc8.1,0,14.6,6.6,14.6,14.7v20h-98.7V93.3z M341.6,417.9l0,0.4v0.4c0,8.1-6.6,14.7-14.6,14.7H186c-8.1,0-14.6-6.6-14.6-14.7v-0.4\r\n\t\tl0-0.4L147.7,128h217.2L341.6,417.9z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M400,113.3h-80v-20c0-16.2-13.1-29.3-29.3-29.3h-69.5C205.1,64,192,77.1,192,93.3v20h-80V128h21.1l23.6,290.7\r\n\t\tc0,16.2,13.1,29.3,29.3,29.3h141c16.2,0,29.3-13.1,29.3-29.3L379.6,128H400V113.3z M206.6,93.3c0-8.1,6.6-14.7,14.6-14.7h69.5\r\n\t\tc8.1,0,14.6,6.6,14.6,14.7v20h-98.7V93.3z M341.6,417.9l0,0.4v0.4c0,8.1-6.6,14.7-14.6,14.7H186c-8.1,0-14.6-6.6-14.6-14.7v-0.4\r\n\t\tl0-0.4L147.7,128h217.2L341.6,417.9z" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "249", + "y": "160", + "width": "14", + "height": "241" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "249", + "y": "160", + "width": "14", + "height": "241" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "320,160 305.4,160 294.7,401 309.3,401 \t\t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "320,160 305.4,160 294.7,401 309.3,401 \t\t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "206.5,160 192,160 202.7,401 217.3,401 \t\t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "206.5,160 192,160 202.7,401 217.3,401 \t\t" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.iosTrashOutline = iosTrashOutline; \ No newline at end of file diff --git a/dist/ionicons/iosUndo.js b/dist/ionicons/iosUndo.js new file mode 100644 index 000000000..e19bc1c55 --- /dev/null +++ b/dist/ionicons/iosUndo.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosUndo = void 0; +var iosUndo = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M447.9,368.2c0-16.8,3.6-83.1-48.7-135.7c-35.2-35.4-80.3-53.4-143.3-56.2V96L64,224l192,128v-79.8\r\n\t\tc40,1.1,62.4,9.1,86.7,20c30.9,13.8,55.3,44,75.8,76.6l19.2,31.2H448C448,389.9,447.9,377.1,447.9,368.2z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M447.9,368.2c0-16.8,3.6-83.1-48.7-135.7c-35.2-35.4-80.3-53.4-143.3-56.2V96L64,224l192,128v-79.8\r\n\t\tc40,1.1,62.4,9.1,86.7,20c30.9,13.8,55.3,44,75.8,76.6l19.2,31.2H448C448,389.9,447.9,377.1,447.9,368.2z" + }, + "children": [] + }] + }] + }] +}; +exports.iosUndo = iosUndo; \ No newline at end of file diff --git a/dist/ionicons/iosUndoOutline.js b/dist/ionicons/iosUndoOutline.js new file mode 100644 index 000000000..483fd54a5 --- /dev/null +++ b/dist/ionicons/iosUndoOutline.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosUndoOutline = void 0; +var iosUndoOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M447.9,368.2c0-16.8,3.6-83.1-48.7-135.7c-35.2-35.4-80.3-53.4-143.3-56.2V96L64,224l192,128v-79.8\r\n\t\tc40,1.1,62.4,9.1,86.7,20c30.9,13.8,55.3,44,75.8,76.6l19.2,31.2H448C448,389.9,447.9,377.1,447.9,368.2z M432.2,361.4\r\n\t\tC384.6,280.6,331,256,240,256v64.8L91.9,224.1L240,127.3V192C441,192,432.2,361.4,432.2,361.4z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M447.9,368.2c0-16.8,3.6-83.1-48.7-135.7c-35.2-35.4-80.3-53.4-143.3-56.2V96L64,224l192,128v-79.8\r\n\t\tc40,1.1,62.4,9.1,86.7,20c30.9,13.8,55.3,44,75.8,76.6l19.2,31.2H448C448,389.9,447.9,377.1,447.9,368.2z M432.2,361.4\r\n\t\tC384.6,280.6,331,256,240,256v64.8L91.9,224.1L240,127.3V192C441,192,432.2,361.4,432.2,361.4z" + }, + "children": [] + }] + }] + }] +}; +exports.iosUndoOutline = iosUndoOutline; \ No newline at end of file diff --git a/dist/ionicons/iosUnlocked.js b/dist/ionicons/iosUnlocked.js new file mode 100644 index 000000000..024dff1db --- /dev/null +++ b/dist/ionicons/iosUnlocked.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosUnlocked = void 0; +var iosUnlocked = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,304c-8.822,0-16,7.178-16,16s7.178,16,16,16s16-7.178,16-16S264.822,304,256,304z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,304c-8.822,0-16,7.178-16,16s7.178,16,16,16s16-7.178,16-16S264.822,304,256,304z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M168,224v-72c0-48.523,39.484-88,88.016-88C304.531,64,344,103.477,344,152v8h16v-8c0-57.43-46.562-104-103.984-104\r\n\t\tC198.562,48,152,94.57,152,152v72H96v240h320V224H168z M264,350.992V384h-16v-33.008c-13.802-3.553-24-16.082-24-30.992\r\n\t\tc0-17.673,14.327-32,32-32s32,14.327,32,32C288,334.91,277.802,347.439,264,350.992z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M168,224v-72c0-48.523,39.484-88,88.016-88C304.531,64,344,103.477,344,152v8h16v-8c0-57.43-46.562-104-103.984-104\r\n\t\tC198.562,48,152,94.57,152,152v72H96v240h320V224H168z M264,350.992V384h-16v-33.008c-13.802-3.553-24-16.082-24-30.992\r\n\t\tc0-17.673,14.327-32,32-32s32,14.327,32,32C288,334.91,277.802,347.439,264,350.992z" + }, + "children": [] + }] + }] + }] +}; +exports.iosUnlocked = iosUnlocked; \ No newline at end of file diff --git a/dist/ionicons/iosUnlockedOutline.js b/dist/ionicons/iosUnlockedOutline.js new file mode 100644 index 000000000..327e191c4 --- /dev/null +++ b/dist/ionicons/iosUnlockedOutline.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosUnlockedOutline = void 0; +var iosUnlockedOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,288c-17.673,0-32,14.327-32,32c0,14.91,10.198,27.439,24,30.992V384h16v-33.008c13.802-3.553,24-16.082,24-30.992\r\n\t\tC288,302.327,273.673,288,256,288z M256,336c-8.822,0-16-7.178-16-16s7.178-16,16-16s16,7.178,16,16S264.822,336,256,336z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,288c-17.673,0-32,14.327-32,32c0,14.91,10.198,27.439,24,30.992V384h16v-33.008c13.802-3.553,24-16.082,24-30.992\r\n\t\tC288,302.327,273.673,288,256,288z M256,336c-8.822,0-16-7.178-16-16s7.178-16,16-16s16,7.178,16,16S264.822,336,256,336z" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M168,224v-72c0-48.523,39.484-88,88.016-88C304.531,64,344,103.477,344,152v8h16v-8c0-57.43-46.562-104-103.984-104\r\n\t\t\tC198.562,48,152,94.57,152,152v72H96v240h320V224H168z M400,448H112V240h288V448z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M168,224v-72c0-48.523,39.484-88,88.016-88C304.531,64,344,103.477,344,152v8h16v-8c0-57.43-46.562-104-103.984-104\r\n\t\t\tC198.562,48,152,94.57,152,152v72H96v240h320V224H168z M400,448H112V240h288V448z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.iosUnlockedOutline = iosUnlockedOutline; \ No newline at end of file diff --git a/dist/ionicons/iosUpload.js b/dist/ionicons/iosUpload.js new file mode 100644 index 000000000..c4ed32fa5 --- /dev/null +++ b/dist/ionicons/iosUpload.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosUpload = void 0; +var iosUpload = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "264,144 264,306 248,306 248,144 96,144 96,448 416,448 416,144 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "264,144 264,306 248,306 248,144 96,144 96,448 416,448 416,144 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "264,63.4 318.8,118.1 330.4,106.5 256,32 181.5,106.5 193.2,118.1 248,63.4 248,144 264,144 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "264,63.4 318.8,118.1 330.4,106.5 256,32 181.5,106.5 193.2,118.1 248,63.4 248,144 264,144 \t" + }, + "children": [] + }] + }] + }] +}; +exports.iosUpload = iosUpload; \ No newline at end of file diff --git a/dist/ionicons/iosUploadOutline.js b/dist/ionicons/iosUploadOutline.js new file mode 100644 index 000000000..076c043ea --- /dev/null +++ b/dist/ionicons/iosUploadOutline.js @@ -0,0 +1,55 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosUploadOutline = void 0; +var iosUploadOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "288,144 288,160 400,160 400,432 112,432 112,160 224,160 224,144 96,144 96,448 416,448 416,144 \t\t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "288,144 288,160 400,160 400,432 112,432 112,160 224,160 224,144 96,144 96,448 416,448 416,144 \t\t" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "193.1,118.1 181.5,106.5 256,32 330.5,106.5 318.9,118.1 264.2,63.4 264.2,306.4 247.8,306.4 247.8,63.4 \t\t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "193.1,118.1 181.5,106.5 256,32 330.5,106.5 318.9,118.1 264.2,63.4 264.2,306.4 247.8,306.4 247.8,63.4 \t\t" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.iosUploadOutline = iosUploadOutline; \ No newline at end of file diff --git a/dist/ionicons/iosVideocam.js b/dist/ionicons/iosVideocam.js new file mode 100644 index 000000000..0ea4f15ff --- /dev/null +++ b/dist/ionicons/iosVideocam.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosVideocam = void 0; +var iosVideocam = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M303.7,128h-221C63.9,128,47,142.1,47,160.7v187.9c0,18.6,16.9,35.4,35.7,35.4h221c18.8,0,33.3-16.8,33.3-35.4V160.7\r\n\t\tC337,142.1,322.5,128,303.7,128z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M303.7,128h-221C63.9,128,47,142.1,47,160.7v187.9c0,18.6,16.9,35.4,35.7,35.4h221c18.8,0,33.3-16.8,33.3-35.4V160.7\r\n\t\tC337,142.1,322.5,128,303.7,128z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M367,213v85.6l98,53.4V160L367,213z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M367,213v85.6l98,53.4V160L367,213z" + }, + "children": [] + }] + }] + }] +}; +exports.iosVideocam = iosVideocam; \ No newline at end of file diff --git a/dist/ionicons/iosVideocamOutline.js b/dist/ionicons/iosVideocamOutline.js new file mode 100644 index 000000000..f6ad8ddb5 --- /dev/null +++ b/dist/ionicons/iosVideocamOutline.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosVideocamOutline = void 0; +var iosVideocamOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M303.7,128h-221C63.9,128,47,142.1,47,160.7v187.9c0,18.6,16.9,35.4,35.7,35.4h221c18.8,0,33.3-16.8,33.3-35.4V160.7\r\n\t\tC337,142.1,322.5,128,303.7,128z M320,348.6c0,9.3-6.9,18.4-16.3,18.4h-221c-9.4,0-18.7-9.1-18.7-18.4V160.7\r\n\t\tc0-9.3,9-15.5,18.4-15.5l221,0.1c9.4,0,16.6,6.1,16.6,15.4V348.6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M303.7,128h-221C63.9,128,47,142.1,47,160.7v187.9c0,18.6,16.9,35.4,35.7,35.4h221c18.8,0,33.3-16.8,33.3-35.4V160.7\r\n\t\tC337,142.1,322.5,128,303.7,128z M320,348.6c0,9.3-6.9,18.4-16.3,18.4h-221c-9.4,0-18.7-9.1-18.7-18.4V160.7\r\n\t\tc0-9.3,9-15.5,18.4-15.5l221,0.1c9.4,0,16.6,6.1,16.6,15.4V348.6z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M367,213v85.6l98,53.4V160L367,213z M448,190v132.3l-64-33.5v-65.6l64.1-33.6L448,190z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M367,213v85.6l98,53.4V160L367,213z M448,190v132.3l-64-33.5v-65.6l64.1-33.6L448,190z" + }, + "children": [] + }] + }] + }] +}; +exports.iosVideocamOutline = iosVideocamOutline; \ No newline at end of file diff --git a/dist/ionicons/iosVolumeHigh.js b/dist/ionicons/iosVolumeHigh.js new file mode 100644 index 000000000..f7843adaf --- /dev/null +++ b/dist/ionicons/iosVolumeHigh.js @@ -0,0 +1,79 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosVolumeHigh = void 0; +var iosVolumeHigh = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M374.1,128l-13.6,10.3C384.6,171.2,399,211.9,399,256c0,44.1-14.4,84.8-38.6,117.7l13.6,10.3c26.3-35.7,41.9-80,41.9-128\r\n\t\t\t\tC415.9,208,400.4,163.7,374.1,128z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M374.1,128l-13.6,10.3C384.6,171.2,399,211.9,399,256c0,44.1-14.4,84.8-38.6,117.7l13.6,10.3c26.3-35.7,41.9-80,41.9-128\r\n\t\t\t\tC415.9,208,400.4,163.7,374.1,128z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M320,351.8c20-26.8,32-59.9,32-95.8s-12-69-32-95.8l-13.6,10.1c17.9,24,28.6,53.6,28.6,85.7s-10.7,61.7-28.6,85.7\r\n\t\t\t\tL320,351.8z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M320,351.8c20-26.8,32-59.9,32-95.8s-12-69-32-95.8l-13.6,10.1c17.9,24,28.6,53.6,28.6,85.7s-10.7,61.7-28.6,85.7\r\n\t\t\t\tL320,351.8z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M273.1,319.9c13.7-17.9,21.9-39.9,21.9-63.9c0-24-8.2-46-21.9-63.9l-13.5,9.8c11.6,15.1,18.5,33.8,18.5,54.1\r\n\t\t\t\ts-6.9,38.9-18.5,54.1L273.1,319.9z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M273.1,319.9c13.7-17.9,21.9-39.9,21.9-63.9c0-24-8.2-46-21.9-63.9l-13.5,9.8c11.6,15.1,18.5,33.8,18.5,54.1\r\n\t\t\t\ts-6.9,38.9-18.5,54.1L273.1,319.9z" + }, + "children": [] + }] + }] + }] + }] + }] + }, { + "name": "polygon", + "attribs": { + "points": "153.9,216 96,216 96,296 153.9,296 224,352 224,160 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "153.9,216 96,216 96,296 153.9,296 224,352 224,160 \t" + }, + "children": [] + }] + }] + }] +}; +exports.iosVolumeHigh = iosVolumeHigh; \ No newline at end of file diff --git a/dist/ionicons/iosVolumeLow.js b/dist/ionicons/iosVolumeLow.js new file mode 100644 index 000000000..9d6c42a6c --- /dev/null +++ b/dist/ionicons/iosVolumeLow.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosVolumeLow = void 0; +var iosVolumeLow = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "polygon", + "attribs": { + "points": "249.9,216 192,216 192,296 249.9,296 320,352 320,160 " + }, + "children": [] + }] +}; +exports.iosVolumeLow = iosVolumeLow; \ No newline at end of file diff --git a/dist/ionicons/iosWineglass.js b/dist/ionicons/iosWineglass.js new file mode 100644 index 000000000..2b6295a53 --- /dev/null +++ b/dist/ionicons/iosWineglass.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosWineglass = void 0; +var iosWineglass = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M264,308.988c0-21.975,20.458-38.674,40.247-54.824c7.907-6.453,15.37-12.547,21.519-18.962\r\n\tC352.313,207.505,352,183.458,352,164.144V160c0-44.25-30.816-124.558-32.02-128H256h-64c-1.203,3.442-32,83.5-32,128v4.144\r\n\tc0,19.273-0.323,43.361,26.225,71.059c6.148,6.415,13.617,12.509,21.523,18.962c19.789,16.15,40.252,32.85,40.252,54.824V464h-72v16\r\n\th80h80v-16h-72V308.988z M202.729,48H256h53.251c5.359,15.99,19.509,62.712,24.836,96H177.894\r\n\tC183.221,110.712,197.37,63.99,202.729,48z" + }, + "children": [] + }] +}; +exports.iosWineglass = iosWineglass; \ No newline at end of file diff --git a/dist/ionicons/iosWineglassOutline.js b/dist/ionicons/iosWineglassOutline.js new file mode 100644 index 000000000..486ce1108 --- /dev/null +++ b/dist/ionicons/iosWineglassOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosWineglassOutline = void 0; +var iosWineglassOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M264,308.988c0-21.975,20.458-38.674,40.247-54.824c7.907-6.453,15.37-12.547,21.519-18.962\r\n\tC352.313,207.505,352,183.458,352,164.144V160c0-44.25-30.816-124.558-32.02-128H256h-64c-1.203,3.442-32,83.5-32,128v4.144\r\n\tc0,19.273-0.323,43.361,26.225,71.059c6.148,6.415,13.617,12.509,21.523,18.962c19.789,16.15,40.252,32.85,40.252,54.824V464h-72v16\r\n\th80h80v-16h-72V308.988z M202.729,48H256h53.251c5.359,15.99,19.509,62.712,24.836,96H177.894\r\n\tC183.221,110.712,197.37,63.99,202.729,48z M256,273.416c-2.968,0-5.248-0.92-7.17-2.754c0.001,0.009,0.003,0.018,0.005,0.026\r\n\tc-8.804-10.807-20.234-20.158-30.971-28.92c-7.517-6.135-14.617-11.929-20.089-17.637c-22.054-23.008-21.928-40.916-21.795-59.875\r\n\tc0.01-1.428-0.068-2.849,0.02-4.255h159.98c0.088,1.406,0.01,2.828,0.021,4.255c0.133,18.959,0.259,36.867-21.795,59.875\r\n\tc-5.472,5.708-12.57,11.502-20.087,17.637c-10.737,8.762-22.165,18.114-30.969,28.92c0.002-0.009,0.009-0.018,0.01-0.026\r\n\tC261.238,272.496,259,273.416,256,273.416z" + }, + "children": [] + }] +}; +exports.iosWineglassOutline = iosWineglassOutline; \ No newline at end of file diff --git a/dist/ionicons/iosWorld.js b/dist/ionicons/iosWorld.js new file mode 100644 index 000000000..8a1a54d76 --- /dev/null +++ b/dist/ionicons/iosWorld.js @@ -0,0 +1,219 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosWorld = void 0; +var iosWorld = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48c-0.1,0-0.1,0-0.2,0c0,0,0,0-0.1,0c-0.1,0-0.2,0-0.2,0C140.8,48.3,48,141.3,48,256c0,114.7,92.8,207.7,207.5,208\r\n\t\tc0.1,0,0.2,0,0.2,0c0,0,0.1,0,0.1,0c0.1,0,0.1,0,0.2,0c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48z M256,447.4\r\n\t\tc-0.1,0-0.1,0-0.2,0c0,0,0,0-0.1,0c-0.1,0-0.2,0-0.2,0C150.1,447.1,64.6,361.5,64.6,256c0-105.5,85.4-191.1,190.9-191.3\r\n\t\tc0.1,0,0.1,0,0.2,0c0,0,0.1,0,0.1,0c0.1,0,0.1,0,0.2,0c105.7,0,191.4,85.7,191.4,191.4C447.4,361.7,361.7,447.4,256,447.4z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48c-0.1,0-0.1,0-0.2,0c0,0,0,0-0.1,0c-0.1,0-0.2,0-0.2,0C140.8,48.3,48,141.3,48,256c0,114.7,92.8,207.7,207.5,208\r\n\t\tc0.1,0,0.2,0,0.2,0c0,0,0.1,0,0.1,0c0.1,0,0.1,0,0.2,0c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48z M256,447.4\r\n\t\tc-0.1,0-0.1,0-0.2,0c0,0,0,0-0.1,0c-0.1,0-0.2,0-0.2,0C150.1,447.1,64.6,361.5,64.6,256c0-105.5,85.4-191.1,190.9-191.3\r\n\t\tc0.1,0,0.1,0,0.2,0c0,0,0.1,0,0.1,0c0.1,0,0.1,0,0.2,0c105.7,0,191.4,85.7,191.4,191.4C447.4,361.7,361.7,447.4,256,447.4z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M322.3,171.8c-18.7,4.5-38,7.2-57.9,7.8v68.1H332C331.4,219.6,327.9,194.1,322.3,171.8z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M322.3,171.8c-18.7,4.5-38,7.2-57.9,7.8v68.1H332C331.4,219.6,327.9,194.1,322.3,171.8z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M264.3,82.5v81.9c18.5-0.6,36.5-3,53.8-7.2C305,115.8,284.6,88.6,264.3,82.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M264.3,82.5v81.9c18.5-0.6,36.5-3,53.8-7.2C305,115.8,284.6,88.6,264.3,82.5z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M193.4,157.1c17.5,4.2,35.6,6.7,54.2,7.3V82.3C227.3,88.2,206.6,115.4,193.4,157.1z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M193.4,157.1c17.5,4.2,35.6,6.7,54.2,7.3V82.3C227.3,88.2,206.6,115.4,193.4,157.1z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M380.6,133.4c-22.6-23-51.5-39.8-83.9-47.5c14.8,15.3,27.2,38.7,36.1,67.3C349.5,148.1,365.5,141.5,380.6,133.4z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M380.6,133.4c-22.6-23-51.5-39.8-83.9-47.5c14.8,15.3,27.2,38.7,36.1,67.3C349.5,148.1,365.5,141.5,380.6,133.4z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M347.3,247.7h83.3c-1.8-38.8-16.3-74.4-39.5-102.6c-17.1,9.4-35.2,17.1-54.1,22.8C343.1,191.9,346.7,219,347.3,247.7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M347.3,247.7h83.3c-1.8-38.8-16.3-74.4-39.5-102.6c-17.1,9.4-35.2,17.1-54.1,22.8C343.1,191.9,346.7,219,347.3,247.7z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M179.5,247.7h68.2v-68.1c-20.1-0.6-39.6-3.3-58.4-7.9C183.6,194,180.1,219.6,179.5,247.7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M179.5,247.7h68.2v-68.1c-20.1-0.6-39.6-3.3-58.4-7.9C183.6,194,180.1,219.6,179.5,247.7z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M332,264.3h-67.7v68c19.9,0.6,39.3,3.2,58,7.8C327.9,317.9,331.4,292.3,332,264.3z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M332,264.3h-67.7v68c19.9,0.6,39.3,3.2,58,7.8C327.9,317.9,331.4,292.3,332,264.3z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M189.3,340.2c18.8-4.6,38.3-7.3,58.4-7.9v-68h-68.2C180.1,292.4,183.6,318,189.3,340.2z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M189.3,340.2c18.8-4.6,38.3-7.3,58.4-7.9v-68h-68.2C180.1,292.4,183.6,318,189.3,340.2z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M247.7,429.6v-82.1c-18.6,0.6-36.8,3.1-54.3,7.3C206.6,396.5,227.3,423.8,247.7,429.6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M247.7,429.6v-82.1c-18.6,0.6-36.8,3.1-54.3,7.3C206.6,396.5,227.3,423.8,247.7,429.6z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M296.7,426.1c32.4-7.8,61.3-24.5,84-47.6c-15.1-8.1-31.1-14.7-47.8-19.8C324,387.4,311.5,410.7,296.7,426.1z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M296.7,426.1c32.4-7.8,61.3-24.5,84-47.6c-15.1-8.1-31.1-14.7-47.8-19.8C324,387.4,311.5,410.7,296.7,426.1z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M214.7,86.1c-32.1,7.8-60.8,24.5-83.3,47.4c15,8,30.8,14.6,47.3,19.6C187.6,124.6,200,101.4,214.7,86.1z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M214.7,86.1c-32.1,7.8-60.8,24.5-83.3,47.4c15,8,30.8,14.6,47.3,19.6C187.6,124.6,200,101.4,214.7,86.1z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M337,344.1c19,5.7,37.1,13.4,54.2,22.8c23.2-28.2,37.7-63.8,39.5-102.6h-83.3C346.7,293,343.1,320,337,344.1z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M337,344.1c19,5.7,37.1,13.4,54.2,22.8c23.2-28.2,37.7-63.8,39.5-102.6h-83.3C346.7,293,343.1,320,337,344.1z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M264.3,347.5v82c20.3-6.1,40.7-33.3,53.8-74.8C300.8,350.5,282.8,348.1,264.3,347.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M264.3,347.5v82c20.3-6.1,40.7-33.3,53.8-74.8C300.8,350.5,282.8,348.1,264.3,347.5z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M174.6,167.8c-18.8-5.7-36.8-13.3-53.7-22.7c-23.2,28.2-37.7,63.8-39.5,102.6h82.9C164.8,218.9,168.5,191.8,174.6,167.8z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M174.6,167.8c-18.8-5.7-36.8-13.3-53.7-22.7c-23.2,28.2-37.7,63.8-39.5,102.6h82.9C164.8,218.9,168.5,191.8,174.6,167.8z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M164.2,264.3H81.3c1.8,38.8,16.3,74.4,39.5,102.6c16.9-9.3,34.9-17,53.7-22.7C168.5,320.2,164.8,293.1,164.2,264.3z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M164.2,264.3H81.3c1.8,38.8,16.3,74.4,39.5,102.6c16.9-9.3,34.9-17,53.7-22.7C168.5,320.2,164.8,293.1,164.2,264.3z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M131.3,378.5c22.5,22.9,51.2,39.6,83.4,47.4c-14.7-15.3-27.1-38.6-36-67.1C162.2,363.9,146.3,370.5,131.3,378.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M131.3,378.5c22.5,22.9,51.2,39.6,83.4,47.4c-14.7-15.3-27.1-38.6-36-67.1C162.2,363.9,146.3,370.5,131.3,378.5z" + }, + "children": [] + }] + }] + }] +}; +exports.iosWorld = iosWorld; \ No newline at end of file diff --git a/dist/ionicons/iosWorldOutline.js b/dist/ionicons/iosWorldOutline.js new file mode 100644 index 000000000..51672d525 --- /dev/null +++ b/dist/ionicons/iosWorldOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iosWorldOutline = void 0; +var iosWorldOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,48c-0.1,0-0.1,0-0.2,0c0,0,0,0-0.1,0c-0.1,0-0.2,0-0.2,0C140.8,48.3,48,141.3,48,256c0,114.7,92.8,207.7,207.5,208\r\n\tc0.1,0,0.2,0,0.2,0c0,0,0.1,0,0.1,0c0.1,0,0.1,0,0.2,0c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48z M264.3,172.5\r\n\tc22.1-0.6,43.5-3.5,64.2-8.5c6.2,24.5,10.1,52.8,10.7,83.8h-74.9V172.5z M264.3,155.8V66c22.4,6.2,45.2,36.1,59.6,82\r\n\tC304.7,152.6,284.8,155.2,264.3,155.8z M247.7,65.8v90.1c-20.7-0.6-40.8-3.3-60.1-8C202.2,101.7,225.1,71.6,247.7,65.8z\r\n\t M247.7,172.5v75.2h-75.4c0.6-31,4.5-59.3,10.7-83.8C203.8,168.9,225.5,171.9,247.7,172.5z M155.5,247.7H64.9\r\n\tc1.8-42.8,17.8-82,43.3-113c18.5,10.2,38.2,18.6,58.8,24.8C160.2,186,156.2,215.9,155.5,247.7z M155.5,264.3\r\n\tc0.6,31.7,4.6,61.7,11.4,88.2c-20.6,6.3-40.2,14.6-58.8,24.8c-25.5-31-41.4-70.2-43.3-113H155.5z M172.3,264.3h75.4v75.1\r\n\tc-22.2,0.6-43.9,3.6-64.7,8.7C176.8,323.6,172.9,295.3,172.3,264.3z M247.7,356.1v90.2c-22.6-5.9-45.5-35.9-60.1-82.1\r\n\tC206.9,359.4,227,356.7,247.7,356.1z M264.3,446v-90c20.5,0.6,40.4,3.3,59.7,7.9C309.5,409.9,286.8,439.8,264.3,446z M264.3,339.4\r\n\tv-75.1h74.9c-0.6,30.9-4.5,59.2-10.7,83.7C307.8,343,286.4,340,264.3,339.4z M355.9,264.3h91.2c-1.8,42.8-17.8,81.9-43.3,113\r\n\tc-18.7-10.3-38.5-18.7-59.3-25C351.3,325.8,355.3,296,355.9,264.3z M355.9,247.7c-0.6-31.7-4.6-61.6-11.3-88.1\r\n\tc20.8-6.3,40.6-14.7,59.2-24.9c25.5,31,41.5,70.2,43.3,113.1H355.9z M392.4,121.9c-16.6,8.8-34,16.1-52.3,21.6\r\n\tc-9.7-31.3-23.4-56.8-39.5-73.6C336,78.4,367.6,96.8,392.4,121.9z M210.8,70.1c-16.1,16.7-29.7,42.2-39.3,73.3\r\n\tc-18.1-5.5-35.4-12.7-51.8-21.5C144.2,96.9,175.6,78.6,210.8,70.1z M119.6,390c16.4-8.8,33.8-16,51.8-21.5\r\n\tc9.7,31.2,23.3,56.6,39.4,73.4C175.6,433.4,144.2,415.1,119.6,390z M300.6,442.1c16.2-16.8,29.8-42.3,39.6-73.7\r\n\tc18.3,5.5,35.7,12.8,52.3,21.6C367.7,415.2,336,433.6,300.6,442.1z" + }, + "children": [] + }] +}; +exports.iosWorldOutline = iosWorldOutline; \ No newline at end of file diff --git a/dist/ionicons/ipad.js b/dist/ionicons/ipad.js new file mode 100644 index 000000000..9a507dd45 --- /dev/null +++ b/dist/ionicons/ipad.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ipad = void 0; +var ipad = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M112,72.8v366.4c0,4.9,3.9,8.8,8.8,8.8h270.4c4.9,0,8.8-3.9,8.8-8.8V72.8c0-4.9-3.9-8.8-8.8-8.8H120.8\r\n\tC115.9,64,112,67.9,112,72.8z M256,437.6c-7.5,0-13.6-6-13.6-13.5c0-7.5,6.1-13.6,13.6-13.6c7.4,0,13.5,6.1,13.5,13.6\r\n\tC269.6,431.6,263.5,437.6,256,437.6z M144,118.6c0-3.5,2.7-6.6,6-6.6h211.2c3.4,0,6.8,3.1,6.8,6.6v275.2c0,3.5-3.4,6.3-6.8,6.3H150\r\n\tc-3.4,0-6-2.8-6-6.3V118.6z" + }, + "children": [] + }] +}; +exports.ipad = ipad; \ No newline at end of file diff --git a/dist/ionicons/iphone.js b/dist/ionicons/iphone.js new file mode 100644 index 000000000..f2f6abf84 --- /dev/null +++ b/dist/ionicons/iphone.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.iphone = void 0; +var iphone = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M328.2,64H183.8C170.7,64,160,74.7,160,87.9v336.3c0,13.1,10.7,23.8,23.8,23.8h144.3c13.1,0,23.8-10.7,23.8-23.8V87.9\r\n\t\tC352,74.7,341.3,64,328.2,64z M240,99.9c0-2.1,1.7-3.9,3.9-3.9h24.3c2.1,0,3.9,1.7,3.9,3.9v0.3c0,2.1-1.7,3.9-3.9,3.9h-24.3\r\n\t\tc-2.1,0-3.9-1.7-3.9-3.9V99.9z M228,96c2.2,0,4,1.8,4,4c0,2.2-1.8,4-4,4s-4-1.8-4-4C224,97.8,225.8,96,228,96z M256,432.1\r\n\t\tc-8.9,0-16.1-7.2-16.1-16.1c0-8.9,7.2-16.1,16.1-16.1c8.9,0,16.1,7.2,16.1,16.1C272.1,424.9,264.8,432.1,256,432.1z M336,384H176\r\n\t\tV128h160V384z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M328.2,64H183.8C170.7,64,160,74.7,160,87.9v336.3c0,13.1,10.7,23.8,23.8,23.8h144.3c13.1,0,23.8-10.7,23.8-23.8V87.9\r\n\t\tC352,74.7,341.3,64,328.2,64z M240,99.9c0-2.1,1.7-3.9,3.9-3.9h24.3c2.1,0,3.9,1.7,3.9,3.9v0.3c0,2.1-1.7,3.9-3.9,3.9h-24.3\r\n\t\tc-2.1,0-3.9-1.7-3.9-3.9V99.9z M228,96c2.2,0,4,1.8,4,4c0,2.2-1.8,4-4,4s-4-1.8-4-4C224,97.8,225.8,96,228,96z M256,432.1\r\n\t\tc-8.9,0-16.1-7.2-16.1-16.1c0-8.9,7.2-16.1,16.1-16.1c8.9,0,16.1,7.2,16.1,16.1C272.1,424.9,264.8,432.1,256,432.1z M336,384H176\r\n\t\tV128h160V384z" + }, + "children": [] + }] + }] + }] +}; +exports.iphone = iphone; \ No newline at end of file diff --git a/dist/ionicons/ipod.js b/dist/ionicons/ipod.js new file mode 100644 index 000000000..6967f6613 --- /dev/null +++ b/dist/ionicons/ipod.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ipod = void 0; +var ipod = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,311c-17.7,0-32,14.3-32,32c0,17.6,14.3,32,32,32c17.6,0,32-14.3,32-32C288,325.3,273.7,311,256,311z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,311c-17.7,0-32,14.3-32,32c0,17.6,14.3,32,32,32c17.6,0,32-14.3,32-32C288,325.3,273.7,311,256,311z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M340.4,64H171.6C156.4,64,144,76.2,144,91.7v328.7c0,15.5,12.4,27.7,27.6,27.7h168.8c15.2,0,27.6-12.2,27.6-27.7V91.7\r\n\t\tC368,76.2,355.6,64,340.4,64z M256.1,416.1c-39.8,0-72.1-32.2-72.1-72c0-39.7,32.3-72,72.1-72c39.7,0,71.9,32.3,71.9,72\r\n\t\tC328,383.9,295.8,416.1,256.1,416.1z M335.9,226.8c-0.8,7.6-7,13.2-14.7,13.2h-131c-8.2,0-14.2-6.2-14.2-14.6V110.9\r\n\t\tc0-7.5,5-13.7,12-14.9l135.8,0c6.5,1.2,11.5,6.6,12.2,13.3L335.9,226.8z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M340.4,64H171.6C156.4,64,144,76.2,144,91.7v328.7c0,15.5,12.4,27.7,27.6,27.7h168.8c15.2,0,27.6-12.2,27.6-27.7V91.7\r\n\t\tC368,76.2,355.6,64,340.4,64z M256.1,416.1c-39.8,0-72.1-32.2-72.1-72c0-39.7,32.3-72,72.1-72c39.7,0,71.9,32.3,71.9,72\r\n\t\tC328,383.9,295.8,416.1,256.1,416.1z M335.9,226.8c-0.8,7.6-7,13.2-14.7,13.2h-131c-8.2,0-14.2-6.2-14.2-14.6V110.9\r\n\t\tc0-7.5,5-13.7,12-14.9l135.8,0c6.5,1.2,11.5,6.6,12.2,13.3L335.9,226.8z" + }, + "children": [] + }] + }] + }] +}; +exports.ipod = ipod; \ No newline at end of file diff --git a/dist/ionicons/jet.js b/dist/ionicons/jet.js new file mode 100644 index 000000000..fd727bf6a --- /dev/null +++ b/dist/ionicons/jet.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.jet = void 0; +var jet = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "style", + "attribs": { + "type": "text/css" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "class": "st0", + "d": "M314.8,368.5L419,403l-3-52.7L302,247c0,0-25.9-173.7-28.2-192.3C268.5,14.4,255.9,0,255.9,0\r\n\ts-12.5,14.4-17.6,54.6C235.9,73.3,210,247,210,247L96,350.3L93,403l104.2-34.5l1.4,12.3l-52.7,58.3l18.3,27.4l73.3-9.1l18.3,54.6\r\n\tl18.5-54.6l73.4,9.1l18.3-27.4l-52.7-58.3L314.8,368.5z" + }, + "children": [] + }] +}; +exports.jet = jet; \ No newline at end of file diff --git a/dist/ionicons/key.js b/dist/ionicons/key.js new file mode 100644 index 000000000..27cfb2bed --- /dev/null +++ b/dist/ionicons/key.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.key = void 0; +var key = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M304.3,301c0,0-5.4-28-7.3-90c-1.9-62-9-142.5-9-142.5c-2.5-28-11.8-36.5-32-36.5c-9.4,0-20.5,2.3-23.3,3.3\r\n\tc-9.4,3.6-8.7,11.6-8.7,22.5l0,17.8c0,3.2,1.2,6,3.2,8.2l0.8,0.8l4.1,4.1c0.4,0.3,0.1,0.7,0.4,1c1.9,2.2,3.1,5,3.1,8.1l0,24.5\r\n\tc0,3.2-1.2,3.2-3.2,5.3c-0.2,0.3-0.5,0.6-0.8,0.8l-4.4,4.4c-0.1,0.1-0.3,0.3-0.4,0.4c-2.1,2.2-3.4,5.2-3.4,8.4l0,7.2\r\n\tc0,3.1,1.1,5.9,3.1,8.1c0,0,0.1,0.1,0.1,0.1l0.8,0.8c0,0,0.1,0.1,0.1,0.1l4,4c0.4,0.3,0.7,0.7,1,1c1.9,2.2,3.1,5,3.1,8.1\r\n\tc0,0.7-0.1,8.1-0.2,8.8c-0.4,2.3-1.5,4.4-3,6.1c-0.2,0.3-0.5,0.6-0.8,0.8l-3.9,3.9l-1.4,1.5c-0.5,0.6-0.7,1.3-1.1,2.1\r\n\tc-0.9,1.7-1.2,3.7-1.2,5.9v7.8c0,2.9-0.1,5.7-0.2,8.6c0.2,2.4,7.2,5.7,7.2,10.5v20.4c0,6.2-10.5,7-11,11.3\r\n\tc-4.7,25.4-11.9,41.8-11.9,41.8c-28.7,16.6-48,47.6-48,83.2c0,53,43,96,96,96s96-43,96-96C352,348.6,332.8,317.7,304.3,301z\r\n\t M256,448c-17.7,0-32-14.3-32-32s14.3-32,32-32s32,14.3,32,32S273.7,448,256,448z" + }, + "children": [] + }] +}; +exports.key = key; \ No newline at end of file diff --git a/dist/ionicons/knife.js b/dist/ionicons/knife.js new file mode 100644 index 000000000..a7af173f2 --- /dev/null +++ b/dist/ionicons/knife.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.knife = void 0; +var knife = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M285.7,32c-3.3,0-6,1.4-8,3.8C259,58.7,224,116.1,224,250.1c0,39.2,33,39.2,32,69.4c0,0.1,0,0.3,0,0.4\r\n\tc-2,47.1-14.9,111.1-16,130.3c-0.4,15.2,9.7,29.8,24.1,29.8c0.1,0,0.1,0,0.2,0c0,0,0.1,0,0.2,0c14.4,0,23.5-14.4,23.5-29.6V38.3\r\n\tC288,33.3,287.5,32,285.7,32z" + }, + "children": [] + }] +}; +exports.knife = knife; \ No newline at end of file diff --git a/dist/ionicons/laptop.js b/dist/ionicons/laptop.js new file mode 100644 index 000000000..ddc5a25c8 --- /dev/null +++ b/dist/ionicons/laptop.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.laptop = void 0; +var laptop = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M480,106.3c0-5.6-4.1-10.3-9.6-10.3H42.2c-5.5,0-10.2,4.6-10.2,10.3V368h448V106.3z M448,336H64V128h384V336z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M480,106.3c0-5.6-4.1-10.3-9.6-10.3H42.2c-5.5,0-10.2,4.6-10.2,10.3V368h448V106.3z M448,336H64V128h384V336z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M0,388.7C70.2,408.6,115.8,416,256,416c140.2,0,185.8-7.3,256-27.3V384H0V388.7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M0,388.7C70.2,408.6,115.8,416,256,416c140.2,0,185.8-7.3,256-27.3V384H0V388.7z" + }, + "children": [] + }] + }] + }] +}; +exports.laptop = laptop; \ No newline at end of file diff --git a/dist/ionicons/leaf.js b/dist/ionicons/leaf.js new file mode 100644 index 000000000..49c947669 --- /dev/null +++ b/dist/ionicons/leaf.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.leaf = void 0; +var leaf = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M456.7,378.7c-52.5-8-56.5-15.7-56.5-15.7c10.8-64.9-22.7-147.1-77.4-191.6c-72.8-59.2-183.5-16.2-269.7-106.2\r\n\t\tc-20.1-21-8.4,235.5,99.5,332.7c78.9,71,171.8,49.2,197.3,37.6c23.1-10.6,39.3-29.9,39.3-29.9c42.1,13,62.9,12.2,62.9,12.2\r\n\t\tC466.9,419.6,474.4,381.4,456.7,378.7z M360.6,383.1c-138.2-40.9-242.1-184.5-242.1-184.5s91.2,107.7,252,160.2\r\n\t\tC370.7,366.9,365.9,378.5,360.6,383.1z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M456.7,378.7c-52.5-8-56.5-15.7-56.5-15.7c10.8-64.9-22.7-147.1-77.4-191.6c-72.8-59.2-183.5-16.2-269.7-106.2\r\n\t\tc-20.1-21-8.4,235.5,99.5,332.7c78.9,71,171.8,49.2,197.3,37.6c23.1-10.6,39.3-29.9,39.3-29.9c42.1,13,62.9,12.2,62.9,12.2\r\n\t\tC466.9,419.6,474.4,381.4,456.7,378.7z M360.6,383.1c-138.2-40.9-242.1-184.5-242.1-184.5s91.2,107.7,252,160.2\r\n\t\tC370.7,366.9,365.9,378.5,360.6,383.1z" + }, + "children": [] + }] + }] + }] +}; +exports.leaf = leaf; \ No newline at end of file diff --git a/dist/ionicons/levels.js b/dist/ionicons/levels.js new file mode 100644 index 000000000..64aebd0fe --- /dev/null +++ b/dist/ionicons/levels.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.levels = void 0; +var levels = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M127,99.2V80c0-8.8-7.2-16-16-16s-16,7.2-16,16v21.5c-8.5,5.8-14,15.5-14,26.5s5.5,20.7,14,26.5V432c0,8.8,7.2,16,16,16\r\n\t\ts16-7.2,16-16V156.8c10.7-5.2,18-16.1,18-28.8S137.7,104.4,127,99.2z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M127,99.2V80c0-8.8-7.2-16-16-16s-16,7.2-16,16v21.5c-8.5,5.8-14,15.5-14,26.5s5.5,20.7,14,26.5V432c0,8.8,7.2,16,16,16\r\n\t\ts16-7.2,16-16V156.8c10.7-5.2,18-16.1,18-28.8S137.7,104.4,127,99.2z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M223,292.9V80c0-8.8-7.2-16-16-16s-16,7.2-16,16v211.7c-10.1,5.4-17,16-17,28.3s6.9,22.9,17,28.3V432c0,8.8,7.2,16,16,16\r\n\t\ts16-7.2,16-16v-84.9c9-5.7,15-15.7,15-27.1S232,298.6,223,292.9z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M223,292.9V80c0-8.8-7.2-16-16-16s-16,7.2-16,16v211.7c-10.1,5.4-17,16-17,28.3s6.9,22.9,17,28.3V432c0,8.8,7.2,16,16,16\r\n\t\ts16-7.2,16-16v-84.9c9-5.7,15-15.7,15-27.1S232,298.6,223,292.9z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M319,163.3V80c0-8.8-7.2-16-16-16s-16,7.2-16,16v83.3c-9.6,5.5-16,15.9-16,27.7s6.4,22.2,16,27.7V432c0,8.8,7.2,16,16,16\r\n\t\ts16-7.2,16-16V218.7c9.6-5.5,16-15.9,16-27.7S328.6,168.8,319,163.3z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M319,163.3V80c0-8.8-7.2-16-16-16s-16,7.2-16,16v83.3c-9.6,5.5-16,15.9-16,27.7s6.4,22.2,16,27.7V432c0,8.8,7.2,16,16,16\r\n\t\ts16-7.2,16-16V218.7c9.6-5.5,16-15.9,16-27.7S328.6,168.8,319,163.3z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M431,383c0-11.8-6.4-22.2-16-27.7V80c0-8.8-7.2-16-16-16s-16,7.2-16,16v275.3c-9.6,5.5-16,15.9-16,27.7s6.4,22.2,16,27.7\r\n\t\tV432c0,8.8,7.2,16,16,16s16-7.2,16-16v-21.3C424.6,405.2,431,394.8,431,383z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M431,383c0-11.8-6.4-22.2-16-27.7V80c0-8.8-7.2-16-16-16s-16,7.2-16,16v275.3c-9.6,5.5-16,15.9-16,27.7s6.4,22.2,16,27.7\r\n\t\tV432c0,8.8,7.2,16,16,16s16-7.2,16-16v-21.3C424.6,405.2,431,394.8,431,383z" + }, + "children": [] + }] + }] + }] +}; +exports.levels = levels; \ No newline at end of file diff --git a/dist/ionicons/lightbulb.js b/dist/ionicons/lightbulb.js new file mode 100644 index 000000000..4a5f90106 --- /dev/null +++ b/dist/ionicons/lightbulb.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.lightbulb = void 0; +var lightbulb = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,32c-70.7,0-128,55.4-128,123.8c0,4.9,0.3,9.7,0.9,14.5c0.6,5.4,1.6,10.6,3,15.7c0.1,0.5,0.3,1.1,0.4,1.6\r\n\t\tc16.6,62.8,45.3,71.5,58.9,167.6c0,0.2,0.1,0.4,0.1,0.5c1.5,9.2,9.8,12.3,19.8,12.3H301c10,0,18.2-3.1,19.7-12.3\r\n\t\tc0-0.2,0.1-0.4,0.1-0.5c13.6-96.1,42.3-104.7,58.9-167.6c0.2-0.5,0.3-1,0.4-1.6c1.3-5.1,2.3-10.4,3-15.7c0.6-4.7,0.9-9.6,0.9-14.5\r\n\t\tC384,87.4,326.7,32,256,32z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,32c-70.7,0-128,55.4-128,123.8c0,4.9,0.3,9.7,0.9,14.5c0.6,5.4,1.6,10.6,3,15.7c0.1,0.5,0.3,1.1,0.4,1.6\r\n\t\tc16.6,62.8,45.3,71.5,58.9,167.6c0,0.2,0.1,0.4,0.1,0.5c1.5,9.2,9.8,12.3,19.8,12.3H301c10,0,18.2-3.1,19.7-12.3\r\n\t\tc0-0.2,0.1-0.4,0.1-0.5c13.6-96.1,42.3-104.7,58.9-167.6c0.2-0.5,0.3-1,0.4-1.6c1.3-5.1,2.3-10.4,3-15.7c0.6-4.7,0.9-9.6,0.9-14.5\r\n\t\tC384,87.4,326.7,32,256,32z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M317.8,396.5c0.1-0.2,0.3-0.4,0.4-0.6c1.1-1.7,1.7-3.6,1.7-5.7c0-3.5,1.6-6.2-6.5-6.2H198.6c-8.1,0-6.5,2.1-6.5,6.2\r\n\t\tc0,2.1,0.6,4,1.7,5.7c0.1,0.2,0.3,0.4,0.5,0.6c0,0.1,0.1,0.1,0.1,0.2c1.7,2.6,2.7,4.4,2.7,7.6c0,3.1-0.9,4.9-2.6,7.5\r\n\t\tc-0.3,0.4-0.5,0.7-0.7,1c-1,1.7-1.6,3.6-1.6,5.6c0,2.1,0.6,4,1.7,5.8c0.1,0.2,0.3,0.4,0.4,0.6c1.8,2.7,2.8,4.5,2.8,7.8\r\n\t\tc0,3.1-0.9,4.9-2.6,7.4c-0.2,0.4-0.5,0.7-0.8,1.1c-1,1.7-1.6,3.6-1.6,5.6c0,5.4,4.3,10.1,10.2,11.6c0.3,0.1,0.6,0.1,0.9,0.2\r\n\t\tc6,1.4,12.2,1.6,18.5,2.5c0.7,0.1,1.4,0.2,2.2,0.3c5.6,1,10.3,3.9,13.4,7.7l0,0c3.8,5.3,10.8,11,18.8,11c7.6,0,14.3-5.4,18.2-10.4\r\n\t\th0c3-4.2,8-7.3,13.9-8.4c0.7-0.1,1.4-0.3,2.2-0.3c6.3-0.9,12.5-1.1,18.5-2.5c0.3-0.1,0.6-0.1,0.9-0.2c5.9-1.6,10.2-6.2,10.2-11.6\r\n\t\tc0-2-0.6-3.9-1.6-5.6c-0.3-0.4-0.5-0.7-0.8-1.1c-1.6-2.6-2.6-4.3-2.6-7.4c0-3.2,1-5.1,2.8-7.8c0.1-0.2,0.3-0.4,0.4-0.6\r\n\t\tc1.1-1.7,1.7-3.7,1.7-5.8c0-2-0.6-3.9-1.6-5.6c-0.3-0.3-0.5-0.7-0.7-1c-1.6-2.6-2.6-4.3-2.6-7.5c0-3.2,1-5,2.7-7.6\r\n\t\tC317.7,396.7,317.7,396.6,317.8,396.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M317.8,396.5c0.1-0.2,0.3-0.4,0.4-0.6c1.1-1.7,1.7-3.6,1.7-5.7c0-3.5,1.6-6.2-6.5-6.2H198.6c-8.1,0-6.5,2.1-6.5,6.2\r\n\t\tc0,2.1,0.6,4,1.7,5.7c0.1,0.2,0.3,0.4,0.5,0.6c0,0.1,0.1,0.1,0.1,0.2c1.7,2.6,2.7,4.4,2.7,7.6c0,3.1-0.9,4.9-2.6,7.5\r\n\t\tc-0.3,0.4-0.5,0.7-0.7,1c-1,1.7-1.6,3.6-1.6,5.6c0,2.1,0.6,4,1.7,5.8c0.1,0.2,0.3,0.4,0.4,0.6c1.8,2.7,2.8,4.5,2.8,7.8\r\n\t\tc0,3.1-0.9,4.9-2.6,7.4c-0.2,0.4-0.5,0.7-0.8,1.1c-1,1.7-1.6,3.6-1.6,5.6c0,5.4,4.3,10.1,10.2,11.6c0.3,0.1,0.6,0.1,0.9,0.2\r\n\t\tc6,1.4,12.2,1.6,18.5,2.5c0.7,0.1,1.4,0.2,2.2,0.3c5.6,1,10.3,3.9,13.4,7.7l0,0c3.8,5.3,10.8,11,18.8,11c7.6,0,14.3-5.4,18.2-10.4\r\n\t\th0c3-4.2,8-7.3,13.9-8.4c0.7-0.1,1.4-0.3,2.2-0.3c6.3-0.9,12.5-1.1,18.5-2.5c0.3-0.1,0.6-0.1,0.9-0.2c5.9-1.6,10.2-6.2,10.2-11.6\r\n\t\tc0-2-0.6-3.9-1.6-5.6c-0.3-0.4-0.5-0.7-0.8-1.1c-1.6-2.6-2.6-4.3-2.6-7.4c0-3.2,1-5.1,2.8-7.8c0.1-0.2,0.3-0.4,0.4-0.6\r\n\t\tc1.1-1.7,1.7-3.7,1.7-5.8c0-2-0.6-3.9-1.6-5.6c-0.3-0.3-0.5-0.7-0.7-1c-1.6-2.6-2.6-4.3-2.6-7.5c0-3.2,1-5,2.7-7.6\r\n\t\tC317.7,396.7,317.7,396.6,317.8,396.5z" + }, + "children": [] + }] + }] + }] +}; +exports.lightbulb = lightbulb; \ No newline at end of file diff --git a/dist/ionicons/link.js b/dist/ionicons/link.js new file mode 100644 index 000000000..c02d4576b --- /dev/null +++ b/dist/ionicons/link.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.link = void 0; +var link = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256.5,208H256v0C256.2,208,256.3,208,256.5,208z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256.5,208H256v0C256.2,208,256.3,208,256.5,208z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M368.5,160H320c0,0,26,17,31.6,48H368h0.5c17.6,0,31.5,13.9,31.5,31.5v32c0,17.6-13.9,32.5-31.5,32.5h-112\r\n\t\tc-17.6,0-32.5-14.9-32.5-32.5V240h-48v31.5c0,11.5,2.5,22.5,6.9,32.5c12.6,28.2,40.9,48,73.6,48h112c44.2,0,79.5-36.3,79.5-80.5\r\n\t\tv-32C448,195.3,412.7,160,368.5,160z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M368.5,160H320c0,0,26,17,31.6,48H368h0.5c17.6,0,31.5,13.9,31.5,31.5v32c0,17.6-13.9,32.5-31.5,32.5h-112\r\n\t\tc-17.6,0-32.5-14.9-32.5-32.5V240h-48v31.5c0,11.5,2.5,22.5,6.9,32.5c12.6,28.2,40.9,48,73.6,48h112c44.2,0,79.5-36.3,79.5-80.5\r\n\t\tv-32C448,195.3,412.7,160,368.5,160z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M329.6,208c-12.1-28.3-40.1-48-73.1-48h-112c-44.2,0-80.5,35.3-80.5,79.5v32c0,44.2,36.3,80.5,80.5,80.5H192\r\n\t\tc0,0-25.8-17-32.1-48h-15.4c-17.6,0-32.5-14.9-32.5-32.5v-32c0-17.6,14.9-31.5,32.5-31.5H256h0.5c17.6,0,31.5,13.9,31.5,31.5v32\r\n\t\tc0,0.2,0,0.3,0,0.5h48c0-0.2,0-0.3,0-0.5v-32C336,228.3,333.7,217.6,329.6,208z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M329.6,208c-12.1-28.3-40.1-48-73.1-48h-112c-44.2,0-80.5,35.3-80.5,79.5v32c0,44.2,36.3,80.5,80.5,80.5H192\r\n\t\tc0,0-25.8-17-32.1-48h-15.4c-17.6,0-32.5-14.9-32.5-32.5v-32c0-17.6,14.9-31.5,32.5-31.5H256h0.5c17.6,0,31.5,13.9,31.5,31.5v32\r\n\t\tc0,0.2,0,0.3,0,0.5h48c0-0.2,0-0.3,0-0.5v-32C336,228.3,333.7,217.6,329.6,208z" + }, + "children": [] + }] + }] + }] +}; +exports.link = link; \ No newline at end of file diff --git a/dist/ionicons/loadA.js b/dist/ionicons/loadA.js new file mode 100644 index 000000000..7762a1c2e --- /dev/null +++ b/dist/ionicons/loadA.js @@ -0,0 +1,139 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.loadA = void 0; +var loadA = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "cx": "256", + "cy": "96", + "r": "64" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "256", + "cy": "96", + "r": "64" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "96", + "cy": "256", + "r": "48" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "96", + "cy": "256", + "r": "48" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "368", + "cy": "144", + "r": "8" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "368", + "cy": "144", + "r": "8" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M180.1,107.6c-19.9-20.1-52.2-20.1-72.1,0c-19.9,20.1-19.9,52.7,0,72.8c19.9,20.1,52.2,20.1,72.1,0\r\n\t\tC200,160.3,200,127.7,180.1,107.6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M180.1,107.6c-19.9-20.1-52.2-20.1-72.1,0c-19.9,20.1-19.9,52.7,0,72.8c19.9,20.1,52.2,20.1,72.1,0\r\n\t\tC200,160.3,200,127.7,180.1,107.6z" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "416", + "cy": "256", + "r": "16" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "416", + "cy": "256", + "r": "16" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "369", + "cy": "369", + "r": "24" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "369", + "cy": "369", + "r": "24" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "256", + "cy": "416", + "r": "32" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "256", + "cy": "416", + "r": "32" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "144", + "cy": "368", + "r": "40" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "144", + "cy": "368", + "r": "40" + }, + "children": [] + }] + }] + }] +}; +exports.loadA = loadA; \ No newline at end of file diff --git a/dist/ionicons/loadB.js b/dist/ionicons/loadB.js new file mode 100644 index 000000000..18dcd8664 --- /dev/null +++ b/dist/ionicons/loadB.js @@ -0,0 +1,111 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.loadB = void 0; +var loadB = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M288,160c0,17.7-14.3,32-32,32l0,0c-17.7,0-32-14.3-32-32V64c0-17.7,14.3-32,32-32l0,0c17.7,0,32,14.3,32,32V160z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M288,160c0,17.7-14.3,32-32,32l0,0c-17.7,0-32-14.3-32-32V64c0-17.7,14.3-32,32-32l0,0c17.7,0,32,14.3,32,32V160z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,320c-17.7,0-32,14.3-32,32v96c0,17.7,14.3,32,32,32s32-14.3,32-32v-96C288,334.3,273.7,320,256,320L256,320z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,320c-17.7,0-32,14.3-32,32v96c0,17.7,14.3,32,32,32s32-14.3,32-32v-96C288,334.3,273.7,320,256,320L256,320z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M448,224h-96c-17.7,0-32,14.3-32,32s14.3,32,32,32h96c17.7,0,32-14.3,32-32S465.7,224,448,224L448,224z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M448,224h-96c-17.7,0-32,14.3-32,32s14.3,32,32,32h96c17.7,0,32-14.3,32-32S465.7,224,448,224L448,224z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M160,224H64c-17.7,0-32,14.3-32,32s14.3,32,32,32h96c17.7,0,32-14.3,32-32S177.7,224,160,224L160,224z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M160,224H64c-17.7,0-32,14.3-32,32s14.3,32,32,32h96c17.7,0,32-14.3,32-32S177.7,224,160,224L160,224z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M346.5,210.7c-12.5,12.5-32.8,12.5-45.3,0l0,0c-12.5-12.5-12.5-32.8,0-45.3l67.9-67.9c12.5-12.5,32.8-12.5,45.3,0l0,0\r\n\t\tc12.5,12.5,12.5,32.8,0,45.3L346.5,210.7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M346.5,210.7c-12.5,12.5-32.8,12.5-45.3,0l0,0c-12.5-12.5-12.5-32.8,0-45.3l67.9-67.9c12.5-12.5,32.8-12.5,45.3,0l0,0\r\n\t\tc12.5,12.5,12.5,32.8,0,45.3L346.5,210.7z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M210.7,301.3c-12.5-12.5-32.8-12.5-45.3,0l-67.9,67.9c-12.5,12.5-12.5,32.8,0,45.3c12.5,12.5,32.8,12.5,45.3,0l67.9-67.9\r\n\t\tC223.2,334,223.2,313.8,210.7,301.3L210.7,301.3z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M210.7,301.3c-12.5-12.5-32.8-12.5-45.3,0l-67.9,67.9c-12.5,12.5-12.5,32.8,0,45.3c12.5,12.5,32.8,12.5,45.3,0l67.9-67.9\r\n\t\tC223.2,334,223.2,313.8,210.7,301.3L210.7,301.3z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M414.4,369.1l-67.9-67.9c-12.5-12.5-32.8-12.5-45.3,0c-12.5,12.5-12.5,32.8,0,45.3l67.9,67.9c12.5,12.5,32.8,12.5,45.3,0\r\n\t\tC426.9,401.9,426.9,381.6,414.4,369.1L414.4,369.1z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M414.4,369.1l-67.9-67.9c-12.5-12.5-32.8-12.5-45.3,0c-12.5,12.5-12.5,32.8,0,45.3l67.9,67.9c12.5,12.5,32.8,12.5,45.3,0\r\n\t\tC426.9,401.9,426.9,381.6,414.4,369.1L414.4,369.1z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M210.7,165.5l-67.9-67.9c-12.5-12.5-32.8-12.5-45.3,0c-12.5,12.5-12.5,32.8,0,45.3l67.9,67.9c12.5,12.5,32.8,12.5,45.3,0\r\n\t\tS223.2,178,210.7,165.5L210.7,165.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M210.7,165.5l-67.9-67.9c-12.5-12.5-32.8-12.5-45.3,0c-12.5,12.5-12.5,32.8,0,45.3l67.9,67.9c12.5,12.5,32.8,12.5,45.3,0\r\n\t\tS223.2,178,210.7,165.5L210.7,165.5z" + }, + "children": [] + }] + }] + }] +}; +exports.loadB = loadB; \ No newline at end of file diff --git a/dist/ionicons/loadC.js b/dist/ionicons/loadC.js new file mode 100644 index 000000000..fe75ea97c --- /dev/null +++ b/dist/ionicons/loadC.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.loadC = void 0; +var loadC = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M479.8,226.1c-1.4-8.7-3.1-17.3-5.3-25.8c-2.8-10.8-6.4-21.5-10.8-31.8c-8.9-21.2-21.1-41-35.9-58.6\r\n\tc-16-18.9-35.3-35.2-56.7-47.7C350,49.8,327,41,303,36.1c-12.4-2.5-24.9-4-37.6-4.1c-9.9-0.1-19.8,0.3-29.6,1.2\r\n\tc-25.5,2.5-50.7,9.6-73.9,20.5c-19.9,9.4-38.4,21.6-54.8,36.2c-16.4,14.6-30.7,31.6-42.2,50.3c-12.7,20.8-22.2,43.5-27.4,67.3\r\n\tc-4.2,19-6.2,38.6-5.2,58.1c0.9,18.9,3.8,37.8,9.5,55.9c3.6,11.5,7.9,22.7,13.3,33.6c5.3,10.7,11.5,21,18.4,30.7\r\n\tc13.8,19.3,30.6,36.4,49.8,50.5c19.6,14.5,41.7,25.7,64.9,33.1c24.2,7.7,49.9,11.3,75.3,10.4c24.8-0.8,49.4-5.6,72.6-14.5\r\n\tc22.3-8.6,43.2-20.9,61.5-36.3c9.2-7.8,17.4-16.6,25.1-25.9c7.8-9.4,14.8-19.3,20.6-30c5-9.2,9.2-18.8,12.8-28.5\r\n\tc1.8-4.8,3.5-9.6,4.9-14.6c1.5-5.3,2.6-10.8,3.6-16.2c1.5-8.5,2.1-17.3,1.3-25.9c-0.7,3.8-1.3,7.5-2.2,11.2\r\n\tc-1.1,4.3-2.5,8.5-4.1,12.6c-3.2,8.7-7.2,17.1-11,25.5c-4.9,10.7-10.6,20.9-16.8,30.8c-3.2,5.1-6.5,10.1-10.1,14.9\r\n\tc-3.6,4.8-7.7,9.4-11.8,13.9c-8.2,9.1-17.1,17.2-27,24.4c-10.1,7.4-20.8,13.9-32.1,19.3c-22.6,11-47.3,17.6-72.3,19.8\r\n\tc-25.6,2.2-51.7-0.3-76.3-7.6c-23.4-6.9-45.6-18.1-65.1-32.8c-18.9-14.3-35.3-31.9-48.2-51.8C75.4,347.8,66.1,324.9,61,301\r\n\tc-1.3-6.2-2.3-12.6-3-18.9c-0.6-5.4-1.1-10.9-1.3-16.4c-0.3-11.3,0.4-23,2.1-34.2c3.7-24.6,11.7-48.3,24.1-69.9\r\n\tc11-19.3,25.3-36.7,42.1-51.4c16.8-14.8,36-26.7,56.8-35.1c12-4.9,24.6-8.5,37.4-10.9c6.5-1.2,13-2.2,19.5-2.7\r\n\tc3.2-0.3,6.3-0.3,9.5-0.6c1.3,0,2.6,0.1,3.9,0.1c21.7-0.4,43.5,2.4,64.2,8.9c22.3,7,43.3,18.3,61.5,33c19.1,15.4,35,34.4,47,55.8\r\n\tc10.2,18.2,17.5,37.8,21.9,58.2c1,4.7,1.8,9.4,2.6,14.1c0.7,4.3,3.1,8.3,6.8,10.7c7.8,5.2,18.7,1.7,22.5-6.7\r\n\tC479.9,232.1,480.3,229,479.8,226.1z" + }, + "children": [] + }] +}; +exports.loadC = loadC; \ No newline at end of file diff --git a/dist/ionicons/loadD.js b/dist/ionicons/loadD.js new file mode 100644 index 000000000..481f1d9af --- /dev/null +++ b/dist/ionicons/loadD.js @@ -0,0 +1,159 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.loadD = void 0; +var loadD = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M432,240h-80c-8.8,0-16,7.2-16,16s7.2,16,16,16h80c8.8,0,16-7.2,16-16S440.8,240,432,240z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M432,240h-80c-8.8,0-16,7.2-16,16s7.2,16,16,16h80c8.8,0,16-7.2,16-16S440.8,240,432,240z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M176,256c0-8.8-7.2-16-16-16H80c-8.8,0-16,7.2-16,16s7.2,16,16,16h80C168.8,272,176,264.8,176,256z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M176,256c0-8.8-7.2-16-16-16H80c-8.8,0-16,7.2-16,16s7.2,16,16,16h80C168.8,272,176,264.8,176,256z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,336c-8.8,0-16,7.2-16,16v80c0,8.8,7.2,16,16,16s16-7.2,16-16v-80C272,343.2,264.8,336,256,336z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,336c-8.8,0-16,7.2-16,16v80c0,8.8,7.2,16,16,16s16-7.2,16-16v-80C272,343.2,264.8,336,256,336z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,64c-8.8,0-16,7.2-16,16v80c0,8.8,7.2,16,16,16s16-7.2,16-16V80C272,71.2,264.8,64,256,64z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,64c-8.8,0-16,7.2-16,16v80c0,8.8,7.2,16,16,16s16-7.2,16-16V80C272,71.2,264.8,64,256,64z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M325.3,216c4.4,7.7,14.2,10.3,21.9,5.9l69.3-40c7.7-4.4,10.3-14.2,5.9-21.9s-14.2-10.3-21.9-5.9l-69.3,40\r\n\t\tC323.5,198.6,320.9,208.3,325.3,216z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M325.3,216c4.4,7.7,14.2,10.3,21.9,5.9l69.3-40c7.7-4.4,10.3-14.2,5.9-21.9s-14.2-10.3-21.9-5.9l-69.3,40\r\n\t\tC323.5,198.6,320.9,208.3,325.3,216z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M186.7,296c-4.4-7.7-14.2-10.3-21.9-5.9l-69.3,40c-7.7,4.4-10.3,14.2-5.9,21.9s14.2,10.3,21.9,5.9l69.3-40\r\n\t\tC188.5,313.4,191.1,303.7,186.7,296z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M186.7,296c-4.4-7.7-14.2-10.3-21.9-5.9l-69.3,40c-7.7,4.4-10.3,14.2-5.9,21.9s14.2,10.3,21.9,5.9l69.3-40\r\n\t\tC188.5,313.4,191.1,303.7,186.7,296z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M317.9,331.1c-4.4-7.7-14.2-10.3-21.9-5.9s-10.3,14.2-5.9,21.9l40,69.3c4.4,7.7,14.2,10.3,21.9,5.9\r\n\t\tc7.7-4.4,10.3-14.2,5.9-21.9L317.9,331.1z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M317.9,331.1c-4.4-7.7-14.2-10.3-21.9-5.9s-10.3,14.2-5.9,21.9l40,69.3c4.4,7.7,14.2,10.3,21.9,5.9\r\n\t\tc7.7-4.4,10.3-14.2,5.9-21.9L317.9,331.1z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M181.9,95.6c-4.4-7.7-14.2-10.3-21.9-5.9c-7.7,4.4-10.3,14.2-5.9,21.9l40,69.3c4.4,7.7,14.2,10.3,21.9,5.9\r\n\t\ts10.3-14.2,5.9-21.9L181.9,95.6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M181.9,95.6c-4.4-7.7-14.2-10.3-21.9-5.9c-7.7,4.4-10.3,14.2-5.9,21.9l40,69.3c4.4,7.7,14.2,10.3,21.9,5.9\r\n\t\ts10.3-14.2,5.9-21.9L181.9,95.6z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M296,186.7c7.7,4.4,17.4,1.8,21.9-5.9l40-69.3c4.4-7.7,1.8-17.4-5.9-21.9c-7.7-4.4-17.4-1.8-21.9,5.9l-40,69.3\r\n\t\tC285.7,172.5,288.3,182.3,296,186.7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M296,186.7c7.7,4.4,17.4,1.8,21.9-5.9l40-69.3c4.4-7.7,1.8-17.4-5.9-21.9c-7.7-4.4-17.4-1.8-21.9,5.9l-40,69.3\r\n\t\tC285.7,172.5,288.3,182.3,296,186.7z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M216,325.3c-7.7-4.4-17.4-1.8-21.9,5.9l-40,69.3c-4.4,7.7-1.8,17.4,5.9,21.9c7.7,4.4,17.4,1.8,21.9-5.9l40-69.3\r\n\t\tC226.3,339.5,223.7,329.7,216,325.3z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M216,325.3c-7.7-4.4-17.4-1.8-21.9,5.9l-40,69.3c-4.4,7.7-1.8,17.4,5.9,21.9c7.7,4.4,17.4,1.8,21.9-5.9l40-69.3\r\n\t\tC226.3,339.5,223.7,329.7,216,325.3z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M416.4,330.1l-69.3-40c-7.7-4.4-17.4-1.8-21.9,5.9c-4.4,7.7-1.8,17.4,5.9,21.9l69.3,40c7.7,4.4,17.4,1.8,21.9-5.9\r\n\t\tC426.7,344.3,424.1,334.6,416.4,330.1z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M416.4,330.1l-69.3-40c-7.7-4.4-17.4-1.8-21.9,5.9c-4.4,7.7-1.8,17.4,5.9,21.9l69.3,40c7.7,4.4,17.4,1.8,21.9-5.9\r\n\t\tC426.7,344.3,424.1,334.6,416.4,330.1z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M95.6,181.9l69.3,40c7.7,4.4,17.4,1.8,21.9-5.9s1.8-17.4-5.9-21.9l-69.3-40c-7.7-4.4-17.4-1.8-21.9,5.9\r\n\t\tC85.3,167.7,87.9,177.4,95.6,181.9z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M95.6,181.9l69.3,40c7.7,4.4,17.4,1.8,21.9-5.9s1.8-17.4-5.9-21.9l-69.3-40c-7.7-4.4-17.4-1.8-21.9,5.9\r\n\t\tC85.3,167.7,87.9,177.4,95.6,181.9z" + }, + "children": [] + }] + }] + }] +}; +exports.loadD = loadD; \ No newline at end of file diff --git a/dist/ionicons/location.js b/dist/ionicons/location.js new file mode 100644 index 000000000..9c5f2a7a6 --- /dev/null +++ b/dist/ionicons/location.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.location = void 0; +var location = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,64c-65.9,0-119.3,53.7-119.3,120c0,114.6,119.3,264,119.3,264s119.3-149.4,119.3-264C375.3,117.7,321.9,64,256,64z\r\n\t\t M256,242.2c-31.2,0-56.4-25.4-56.4-56.7c0-31.3,25.3-56.8,56.4-56.8c31.2,0,56.4,25.4,56.4,56.8\r\n\t\tC312.4,216.8,287.2,242.2,256,242.2z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,64c-65.9,0-119.3,53.7-119.3,120c0,114.6,119.3,264,119.3,264s119.3-149.4,119.3-264C375.3,117.7,321.9,64,256,64z\r\n\t\t M256,242.2c-31.2,0-56.4-25.4-56.4-56.7c0-31.3,25.3-56.8,56.4-56.8c31.2,0,56.4,25.4,56.4,56.8\r\n\t\tC312.4,216.8,287.2,242.2,256,242.2z" + }, + "children": [] + }] + }] + }] +}; +exports.location = location; \ No newline at end of file diff --git a/dist/ionicons/lockCombination.js b/dist/ionicons/lockCombination.js new file mode 100644 index 000000000..9155c7259 --- /dev/null +++ b/dist/ionicons/lockCombination.js @@ -0,0 +1,55 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.lockCombination = void 0; +var lockCombination = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M384,176.905V128C384,57.308,326.692,0,256,0S128,57.308,128,128v48.906C88.725,212.062,64,263.141,64,320\r\n\t\tc0,106.039,85.962,192,192,192c106.039,0,192-85.961,192-192C448,263.141,423.275,212.062,384,176.905z M160,128\r\n\t\tc0-52.935,43.065-96,96-96s96,43.065,96,96v25.692C323.759,137.355,290.973,128,256,128s-67.759,9.355-96,25.693V128z M256,480\r\n\t\tc-88.366,0-160-71.634-160-160s71.634-160,160-160s160,71.634,160,160S344.366,480,256,480z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M384,176.905V128C384,57.308,326.692,0,256,0S128,57.308,128,128v48.906C88.725,212.062,64,263.141,64,320\r\n\t\tc0,106.039,85.962,192,192,192c106.039,0,192-85.961,192-192C448,263.141,423.275,212.062,384,176.905z M160,128\r\n\t\tc0-52.935,43.065-96,96-96s96,43.065,96,96v25.692C323.759,137.355,290.973,128,256,128s-67.759,9.355-96,25.693V128z M256,480\r\n\t\tc-88.366,0-160-71.634-160-160s71.634-160,160-160s160,71.634,160,160S344.366,480,256,480z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,176c-79.529,0-144,64.472-144,144s64.471,144,144,144s144-64.472,144-144S335.529,176,256,176z M378.533,353.487\r\n\t\tl-24.12-7.896l-3.926,12.19l24.161,7.912c-3.661,9.776-8.462,18.965-14.252,27.409l-10.56-7.737l-3.74,5.184l10.555,7.734\r\n\t\tc-6.129,8.047-13.189,15.324-21.028,21.682l-14.982-20.787l-10.284,7.532l14.976,20.776c-8.479,5.556-17.657,10.12-27.398,13.532\r\n\t\tl-3.96-12.294l-6.049,1.982l4.924,12.262C283.335,445.77,273,447.497,264,448v-12.659V429h-16v6.341V448\r\n\t\tc-11-0.506-19.705-2.244-29.243-5.065l3.948-11.206l-6.25-2.106l-3.539,11.224c-9.557-3.393-18.531-7.895-26.864-13.359\r\n\t\tl14.997-20.774l-10.27-7.534l-14.977,20.787c-7.809-6.333-14.841-13.575-20.953-21.583l9.556-6.998l-3.971-5.507l-9.562,7\r\n\t\tc-5.718-8.381-10.469-17.497-14.093-27.186l24.162-7.914l-3.926-12.188l-24.121,7.897c-2.49-9.431-3.954-18.488-4.258-29.487H134\r\n\t\tv-6.805l-5.993-0.002c0.223-10.606,0.672-20.88,3.266-30.682l24.921,7.9l4.347-12.188l-23.966-7.914\r\n\t\tc3.585-9.57,8.36-18.583,13.985-26.879l10.339,7.533l3.759-5.184l-10.292-7.545c6.221-8.253,13.424-15.707,21.434-22.197\r\n\t\tl14.984,20.787l10.284-7.536l-14.975-20.774c8.405-5.514,17.512-10.05,27.16-13.449l3.955,12.247l6.044-1.98l-4.62-12.231\r\n\t\tC228.21,194.258,237,192.508,248,192v12.66V211h16v-6.34V192c9,0.498,19.159,2.198,28.585,4.951l-4.761,13.28l6.182,2.106\r\n\t\tl4.174-13.312c9.696,3.408,18.778,7.957,27.208,13.491l-15.002,20.775l10.267,7.535l14.975-20.787\r\n\t\tc7.935,6.432,15.069,13.812,21.255,21.977l-11.299,8.268l3.975,5.512l11.276-8.26c5.595,8.271,10.247,17.243,13.816,26.775\r\n\t\tl-24.165,7.914l3.928,12.188l24.12-7.9c2.586,9.802,5.251,20.075,5.47,30.683L376,317.192V324h6.789\r\n\t\tC382.486,334.999,381.02,344.057,378.533,353.487z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,176c-79.529,0-144,64.472-144,144s64.471,144,144,144s144-64.472,144-144S335.529,176,256,176z M378.533,353.487\r\n\t\tl-24.12-7.896l-3.926,12.19l24.161,7.912c-3.661,9.776-8.462,18.965-14.252,27.409l-10.56-7.737l-3.74,5.184l10.555,7.734\r\n\t\tc-6.129,8.047-13.189,15.324-21.028,21.682l-14.982-20.787l-10.284,7.532l14.976,20.776c-8.479,5.556-17.657,10.12-27.398,13.532\r\n\t\tl-3.96-12.294l-6.049,1.982l4.924,12.262C283.335,445.77,273,447.497,264,448v-12.659V429h-16v6.341V448\r\n\t\tc-11-0.506-19.705-2.244-29.243-5.065l3.948-11.206l-6.25-2.106l-3.539,11.224c-9.557-3.393-18.531-7.895-26.864-13.359\r\n\t\tl14.997-20.774l-10.27-7.534l-14.977,20.787c-7.809-6.333-14.841-13.575-20.953-21.583l9.556-6.998l-3.971-5.507l-9.562,7\r\n\t\tc-5.718-8.381-10.469-17.497-14.093-27.186l24.162-7.914l-3.926-12.188l-24.121,7.897c-2.49-9.431-3.954-18.488-4.258-29.487H134\r\n\t\tv-6.805l-5.993-0.002c0.223-10.606,0.672-20.88,3.266-30.682l24.921,7.9l4.347-12.188l-23.966-7.914\r\n\t\tc3.585-9.57,8.36-18.583,13.985-26.879l10.339,7.533l3.759-5.184l-10.292-7.545c6.221-8.253,13.424-15.707,21.434-22.197\r\n\t\tl14.984,20.787l10.284-7.536l-14.975-20.774c8.405-5.514,17.512-10.05,27.16-13.449l3.955,12.247l6.044-1.98l-4.62-12.231\r\n\t\tC228.21,194.258,237,192.508,248,192v12.66V211h16v-6.34V192c9,0.498,19.159,2.198,28.585,4.951l-4.761,13.28l6.182,2.106\r\n\t\tl4.174-13.312c9.696,3.408,18.778,7.957,27.208,13.491l-15.002,20.775l10.267,7.535l14.975-20.787\r\n\t\tc7.935,6.432,15.069,13.812,21.255,21.977l-11.299,8.268l3.975,5.512l11.276-8.26c5.595,8.271,10.247,17.243,13.816,26.775\r\n\t\tl-24.165,7.914l3.928,12.188l24.12-7.9c2.586,9.802,5.251,20.075,5.47,30.683L376,317.192V324h6.789\r\n\t\tC382.486,334.999,381.02,344.057,378.533,353.487z" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "256", + "cy": "320", + "r": "81" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "256", + "cy": "320", + "r": "81" + }, + "children": [] + }] + }] + }] +}; +exports.lockCombination = lockCombination; \ No newline at end of file diff --git a/dist/ionicons/locked.js b/dist/ionicons/locked.js new file mode 100644 index 000000000..9d0440aac --- /dev/null +++ b/dist/ionicons/locked.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.locked = void 0; +var locked = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M86.4,480h339.2c12.3,0,22.4-9.9,22.4-22.1V246c0-12.2-10-22-22.4-22H404v-30.9c0-41.5-16.2-87.6-42.6-115.4\r\n\tC335.1,49.9,297.4,32,256.1,32c-0.1,0-0.1,0-0.1,0c0,0-0.1,0-0.1,0c-41.3,0-79,17.9-105.3,45.6c-26.4,27.8-42.6,73.9-42.6,115.4V224\r\n\tH89h-2.6C74,224,64,233.9,64,246v211.9C64,470.1,74,480,86.4,480z M161,193.1c0-27.3,9.9-61.1,28.1-80.3l0,0l0-0.3\r\n\tC206.7,93.9,231,83,255.9,83h0.1h0.1c24.9,0,49.2,10.9,66.8,29.5l0,0.2l-0.1,0.1c18.3,19.2,28.1,53,28.1,80.3V224h-17.5h-155H161\r\n\tV193.1z" + }, + "children": [] + }] +}; +exports.locked = locked; \ No newline at end of file diff --git a/dist/ionicons/logIn.js b/dist/ionicons/logIn.js new file mode 100644 index 000000000..47f62f884 --- /dev/null +++ b/dist/ionicons/logIn.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.logIn = void 0; +var logIn = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M255.988,32C160.473,32,78.934,91.804,46.727,176h34.639c9.396-20.484,22.457-39.35,38.868-55.762\r\n\t\tC156.497,83.973,204.709,64,255.988,64c51.286,0,99.504,19.973,135.771,56.239C428.027,156.505,448,204.719,448,256\r\n\t\tc0,51.285-19.973,99.501-56.239,135.765C355.494,428.029,307.275,448,255.988,448c-51.281,0-99.493-19.971-135.755-56.234\r\n\t\tC103.821,375.354,90.76,356.486,81.362,336H46.725c32.206,84.201,113.746,144,209.264,144C379.703,480,480,379.715,480,256\r\n\t\tC480,132.298,379.703,32,255.988,32z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M255.988,32C160.473,32,78.934,91.804,46.727,176h34.639c9.396-20.484,22.457-39.35,38.868-55.762\r\n\t\tC156.497,83.973,204.709,64,255.988,64c51.286,0,99.504,19.973,135.771,56.239C428.027,156.505,448,204.719,448,256\r\n\t\tc0,51.285-19.973,99.501-56.239,135.765C355.494,428.029,307.275,448,255.988,448c-51.281,0-99.493-19.971-135.755-56.234\r\n\t\tC103.821,375.354,90.76,356.486,81.362,336H46.725c32.206,84.201,113.746,144,209.264,144C379.703,480,480,379.715,480,256\r\n\t\tC480,132.298,379.703,32,255.988,32z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "206.863,323.883 229.49,346.51 320,256 229.49,165.49 206.862,188.118 258.745,240 32,240 32,272 258.745,272 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "206.863,323.883 229.49,346.51 320,256 229.49,165.49 206.862,188.118 258.745,240 32,240 32,272 258.745,272 \t" + }, + "children": [] + }] + }] + }] +}; +exports.logIn = logIn; \ No newline at end of file diff --git a/dist/ionicons/logOut.js b/dist/ionicons/logOut.js new file mode 100644 index 000000000..e49bdce0b --- /dev/null +++ b/dist/ionicons/logOut.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.logOut = void 0; +var logOut = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "366.863,323.883 389.49,346.51 480,256 389.49,165.49 366.862,188.118 418.745,240 192,240 192,272 418.745,272 \t\r\n\t\t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "366.863,323.883 389.49,346.51 480,256 389.49,165.49 366.862,188.118 418.745,240 192,240 192,272 418.745,272 \t\r\n\t\t" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M391.491,391.766C355.229,428.029,307.018,448,255.736,448c-51.287,0-99.506-19.971-135.772-56.235\r\n\t\t\tC83.697,355.501,64,307.285,64,256c0-51.281,19.697-99.495,55.965-135.761C156.232,83.973,204.45,64,255.736,64\r\n\t\t\tc51.279,0,99.491,19.973,135.755,56.238c2.527,2.528,4.966,5.121,7.333,7.762h40.731c-40.474-58.028-107.709-96-183.819-96\r\n\t\t\tC132.021,32,32,132.298,32,256c0,123.715,100.021,224,223.736,224c76.112,0,143.35-37.97,183.822-96h-40.73\r\n\t\t\tC396.46,386.643,394.021,389.236,391.491,391.766z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M391.491,391.766C355.229,428.029,307.018,448,255.736,448c-51.287,0-99.506-19.971-135.772-56.235\r\n\t\t\tC83.697,355.501,64,307.285,64,256c0-51.281,19.697-99.495,55.965-135.761C156.232,83.973,204.45,64,255.736,64\r\n\t\t\tc51.279,0,99.491,19.973,135.755,56.238c2.527,2.528,4.966,5.121,7.333,7.762h40.731c-40.474-58.028-107.709-96-183.819-96\r\n\t\t\tC132.021,32,32,132.298,32,256c0,123.715,100.021,224,223.736,224c76.112,0,143.35-37.97,183.822-96h-40.73\r\n\t\t\tC396.46,386.643,394.021,389.236,391.491,391.766z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.logOut = logOut; \ No newline at end of file diff --git a/dist/ionicons/loop.js b/dist/ionicons/loop.js new file mode 100644 index 000000000..87ceb98d9 --- /dev/null +++ b/dist/ionicons/loop.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.loop = void 0; +var loop = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M273.4,300.5l-0.3,58c48.9-8.2,86.3-51,86.3-102.5c0-15.9-3.6-31-10-44.5c-2.8-5.8-6-11.3-9.8-16.5l47.1-43.5\r\n\t\tc1.1,1.3,2.1,2.7,3.1,4c20.9,28,33.2,62.8,33.2,100.5c0,1.2,0,2.5,0,3.7c-1.5,71.5-47.6,132-111.4,154.6\r\n\t\tc-12.3,4.3-25.2,7.3-38.5,8.7l-0.1,57l-76.2-67L170.6,390l44.4-38.7L273.4,300.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M273.4,300.5l-0.3,58c48.9-8.2,86.3-51,86.3-102.5c0-15.9-3.6-31-10-44.5c-2.8-5.8-6-11.3-9.8-16.5l47.1-43.5\r\n\t\tc1.1,1.3,2.1,2.7,3.1,4c20.9,28,33.2,62.8,33.2,100.5c0,1.2,0,2.5,0,3.7c-1.5,71.5-47.6,132-111.4,154.6\r\n\t\tc-12.3,4.3-25.2,7.3-38.5,8.7l-0.1,57l-76.2-67L170.6,390l44.4-38.7L273.4,300.5z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M89,252.3c1.6-72.1,48.3-133,112.9-155.2c11.7-4,24-6.8,36.8-8.1l0.1-57l76.1,66.9l26.2,23.1l-44.3,38.6l-58.4,50.9\r\n\t\tl0.2-57.9c-48.8,8.3-86,51.1-86,102.4c0,16,3.6,31.1,10.1,44.7c2.7,5.8,6,11.2,9.7,16.3l-47,43.6c-1.3-1.6-2.6-3.3-3.8-5\r\n\t\tC101.1,327.7,89,293.3,89,256C89,254.8,89,253.5,89,252.3z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M89,252.3c1.6-72.1,48.3-133,112.9-155.2c11.7-4,24-6.8,36.8-8.1l0.1-57l76.1,66.9l26.2,23.1l-44.3,38.6l-58.4,50.9\r\n\t\tl0.2-57.9c-48.8,8.3-86,51.1-86,102.4c0,16,3.6,31.1,10.1,44.7c2.7,5.8,6,11.2,9.7,16.3l-47,43.6c-1.3-1.6-2.6-3.3-3.8-5\r\n\t\tC101.1,327.7,89,293.3,89,256C89,254.8,89,253.5,89,252.3z" + }, + "children": [] + }] + }] + }] +}; +exports.loop = loop; \ No newline at end of file diff --git a/dist/ionicons/magnet.js b/dist/ionicons/magnet.js new file mode 100644 index 000000000..d2af0d019 --- /dev/null +++ b/dist/ionicons/magnet.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.magnet = void 0; +var magnet = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,32C141,32.5,64,109.6,64,231.8c0,48.8,2.1,76.8,14.5,127.8c15.9,65.7,39.1,113.3,39.1,113.3l0.6,1.3\r\n\tc1.9,3.4,5.5,5.8,9.8,5.8c1.4,0,2.7-0.2,4-0.7l1.7-0.8l50.3-20.7l1.8-0.8c3.3-1.9,5.5-5.3,5.5-9.3c-0.2-1.4-0.4-2.8-1-4\r\n\tc-0.1-0.1-0.1-0.2-0.2-0.4c-7-16-27.2-59.2-37-101.1c-9.9-41.9-13.5-62.4-13.5-107.7C139.6,163.4,192,112,256,112\r\n\tc64,0,116.4,51.4,116.4,122.5c0,45.3-3.7,65.8-13.6,107.7c-9.9,41.9-30,85.2-37,101.1c-0.1,0.2-0.1,0.3-0.2,0.4\r\n\tc-0.6,1.2-0.8,2.6-1,4c0,4,2.2,7.4,5.5,9.3l1.8,0.8l50.3,20.7l1.7,0.8c1.3,0.5,2.6,0.7,4,0.7c4.3,0,7.9-2.4,9.8-5.8l0.6-1.3\r\n\tc0,0,23.2-47.6,39.1-113.3c12.4-51,14.5-79,14.5-127.8C448,109.6,371,32.5,256,32z M173,444.2c0.1,0.2,0.2,0.5,0.3,0.7l-42.8,17.6\r\n\tc-5.4-11.8-22.7-51-35.7-104.4l42.5-12.3C146.5,385,164.4,425,173,444.2z M381.4,462.5l-42.8-17.6c0.1-0.2,0.2-0.4,0.3-0.7\r\n\tc8.6-19.2,26.4-59.2,35.6-98.4l42.5,12.3C404.1,411.5,386.8,450.7,381.4,462.5z" + }, + "children": [] + }] +}; +exports.magnet = magnet; \ No newline at end of file diff --git a/dist/ionicons/male.js b/dist/ionicons/male.js new file mode 100644 index 000000000..d3afce8ab --- /dev/null +++ b/dist/ionicons/male.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.male = void 0; +var male = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M480,192V32H320l63,63l-68.7,68.7C284.8,141.3,247.9,128,208,128c-97.2,0-176,78.8-176,176s78.8,176,176,176\r\n\ts176-78.8,176-176c0-39.9-13.3-76.8-35.7-106.3L417,129L480,192z M298.5,394.5C274.3,418.7,242.2,432,208,432s-66.3-13.3-90.5-37.5\r\n\tC93.3,370.3,80,338.2,80,304s13.3-66.3,37.5-90.5c24.2-24.2,56.3-37.5,90.5-37.5s66.3,13.3,90.5,37.5S336,269.8,336,304\r\n\tS322.7,370.3,298.5,394.5z" + }, + "children": [] + }] +}; +exports.male = male; \ No newline at end of file diff --git a/dist/ionicons/man.js b/dist/ionicons/man.js new file mode 100644 index 000000000..57998a64f --- /dev/null +++ b/dist/ionicons/man.js @@ -0,0 +1,33 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.man = void 0; +var man = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,106.6c20.6,0.1,37.3-16.6,37.3-37.3c0-20.6-16.7-37.3-37.3-37.3c-20.6,0-37.3,16.7-37.3,37.3\r\n\tC218.7,89.9,235.4,106.6,256,106.6z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M293.4,115H256h-37.4c-28.2,0-46.6,24.8-46.6,48.4V277c0,22,31,22,31,0V172h6v285.6c0,30.4,42,29.4,43,0V293h7h1v164.7\r\n\t\tc1.7,31.2,43,28.2,43-0.1V172h5v105c0,22,32,22,32,0V163.4C340,139.9,321.5,115,293.4,115z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M293.4,115H256h-37.4c-28.2,0-46.6,24.8-46.6,48.4V277c0,22,31,22,31,0V172h6v285.6c0,30.4,42,29.4,43,0V293h7h1v164.7\r\n\t\tc1.7,31.2,43,28.2,43-0.1V172h5v105c0,22,32,22,32,0V163.4C340,139.9,321.5,115,293.4,115z" + }, + "children": [] + }] + }] + }] +}; +exports.man = man; \ No newline at end of file diff --git a/dist/ionicons/map.js b/dist/ionicons/map.js new file mode 100644 index 000000000..48d0f4992 --- /dev/null +++ b/dist/ionicons/map.js @@ -0,0 +1,87 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.map = void 0; +var map = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M473.152,136.58L368.594,66.307c-4.644-3.076-10.365-3.076-15.031,0l-97.094,65.195l-97.109-65.195\r\n\t\tc-4.643-3.076-10.444-3.076-15.062,0L39.344,136.58c-4.399,2.949-7.344,8.272-7.344,14.05V431.6c0,5.904,3.07,11.347,7.663,14.271\r\n\t\tc4.62,2.877,10.382,2.829,14.904-0.223l97.188-65.197l97.181,65.197c4.666,3.1,10.44,3.1,15.084,0l97.158-65.197l97.151,65.197\r\n\t\tc2.311,1.55,4.912,2.353,7.538,2.353c2.455,0,4.709-0.747,6.969-2.13c4.594-2.924,7.165-8.366,7.165-14.271v-280.97\r\n\t\tC480,144.852,477.575,139.529,473.152,136.58z M135,353.248l-71,49.404v-241.75l71-49.428V353.248z M167,352.766v-122.7\r\n\t\tc1.167,0.756,2.31,1.526,3.389,2.301l9.333-12.996c-3.904-2.804-8.292-5.501-12.722-7.705V110.992l73,48.992v108.574\r\n\t\tc-5.372-1.855-10.586-4.37-15.893-7.682l-8.471,13.574c6.848,4.273,13.621,7.467,20.704,9.765l3.66-11.286v128.806L167,352.766z\r\n\t\t M272,401.734V288.369c0.349-0.021,0.693-0.03,1.043-0.054c2.91-0.198,5.777-0.517,8.518-0.946l-2.479-15.807\r\n\t\tc-2.268,0.355-4.65,0.619-7.082,0.786V159.984l73-48.992V229.78l-4.844-4.372c-2.997,3.319-5.833,6.575-8.575,9.725\r\n\t\tc-1.806,2.073-3.578,4.108-5.339,6.095l11.974,10.613c1.791-2.021,3.595-4.091,5.431-6.2c0.443-0.509,0.905-1.035,1.354-1.549\r\n\t\tv108.675L272,401.734z M448,401.652l-71-48.438v-136.91c3.785-1.715,7.679-2.992,11.639-3.792l-3.166-15.683\r\n\t\tc-2.858,0.577-5.687,1.339-8.473,2.281v-87.671l71,48.461V401.652z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M473.152,136.58L368.594,66.307c-4.644-3.076-10.365-3.076-15.031,0l-97.094,65.195l-97.109-65.195\r\n\t\tc-4.643-3.076-10.444-3.076-15.062,0L39.344,136.58c-4.399,2.949-7.344,8.272-7.344,14.05V431.6c0,5.904,3.07,11.347,7.663,14.271\r\n\t\tc4.62,2.877,10.382,2.829,14.904-0.223l97.188-65.197l97.181,65.197c4.666,3.1,10.44,3.1,15.084,0l97.158-65.197l97.151,65.197\r\n\t\tc2.311,1.55,4.912,2.353,7.538,2.353c2.455,0,4.709-0.747,6.969-2.13c4.594-2.924,7.165-8.366,7.165-14.271v-280.97\r\n\t\tC480,144.852,477.575,139.529,473.152,136.58z M135,353.248l-71,49.404v-241.75l71-49.428V353.248z M167,352.766v-122.7\r\n\t\tc1.167,0.756,2.31,1.526,3.389,2.301l9.333-12.996c-3.904-2.804-8.292-5.501-12.722-7.705V110.992l73,48.992v108.574\r\n\t\tc-5.372-1.855-10.586-4.37-15.893-7.682l-8.471,13.574c6.848,4.273,13.621,7.467,20.704,9.765l3.66-11.286v128.806L167,352.766z\r\n\t\t M272,401.734V288.369c0.349-0.021,0.693-0.03,1.043-0.054c2.91-0.198,5.777-0.517,8.518-0.946l-2.479-15.807\r\n\t\tc-2.268,0.355-4.65,0.619-7.082,0.786V159.984l73-48.992V229.78l-4.844-4.372c-2.997,3.319-5.833,6.575-8.575,9.725\r\n\t\tc-1.806,2.073-3.578,4.108-5.339,6.095l11.974,10.613c1.791-2.021,3.595-4.091,5.431-6.2c0.443-0.509,0.905-1.035,1.354-1.549\r\n\t\tv108.675L272,401.734z M448,401.652l-71-48.438v-136.91c3.785-1.715,7.679-2.992,11.639-3.792l-3.166-15.683\r\n\t\tc-2.858,0.577-5.687,1.339-8.473,2.281v-87.671l71,48.461V401.652z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M129.285,221.111c2.218-1.195-1.353-1.071,1.012-1.837l-4.928-15.222c-3.282,1.062-6.502,2.439-9.571,4.093\r\n\t\tc-3.824,2.062-7.745,4.916-11.339,8.253l10.888,11.724C117.963,225.694,126.639,222.538,129.285,221.111z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M129.285,221.111c2.218-1.195-1.353-1.071,1.012-1.837l-4.928-15.222c-3.282,1.062-6.502,2.439-9.571,4.093\r\n\t\tc-3.824,2.062-7.745,4.916-11.339,8.253l10.888,11.724C117.963,225.694,126.639,222.538,129.285,221.111z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M296.802,266.127l6.985,14.395c6.596-3.201,12.842-7.445,19.095-12.974l-10.599-11.987\r\n\t\tC307.135,260.113,302.071,263.569,296.802,266.127z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M296.802,266.127l6.985,14.395c6.596-3.201,12.842-7.445,19.095-12.974l-10.599-11.987\r\n\t\tC307.135,260.113,302.071,263.569,296.802,266.127z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M99.364,256.006c1.893-5.926,3.528-11.044,7.129-16.304l-13.204-9.037c-4.924,7.194-7.081,13.944-9.167,20.471\r\n\t\tl-0.242,0.758l15.238,4.879L99.364,256.006z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M99.364,256.006c1.893-5.926,3.528-11.044,7.129-16.304l-13.204-9.037c-4.924,7.194-7.081,13.944-9.167,20.471\r\n\t\tl-0.242,0.758l15.238,4.879L99.364,256.006z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M198.311,237.753c-1.007-1.204-2.014-2.408-3.032-3.603l-12.178,10.379c0.986,1.156,1.961,2.322,2.936,3.488\r\n\t\tc3.593,4.296,7.308,8.739,11.61,12.809l10.996-11.624C205.02,245.775,201.761,241.878,198.311,237.753z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M198.311,237.753c-1.007-1.204-2.014-2.408-3.032-3.603l-12.178,10.379c0.986,1.156,1.961,2.322,2.936,3.488\r\n\t\tc3.593,4.296,7.308,8.739,11.61,12.809l10.996-11.624C205.02,245.775,201.761,241.878,198.311,237.753z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "408.156,229.657 418.5,219.314 428.844,229.657 440.156,218.342 429.814,208 440.156,197.657 428.844,186.342 \r\n\t\t418.5,196.685 408.156,186.342 396.844,197.657 407.186,208 396.844,218.342 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "408.156,229.657 418.5,219.314 428.844,229.657 440.156,218.342 429.814,208 440.156,197.657 428.844,186.342 \r\n\t\t418.5,196.685 408.156,186.342 396.844,197.657 407.186,208 396.844,218.342 \t" + }, + "children": [] + }] + }] + }] +}; +exports.map = map; \ No newline at end of file diff --git a/dist/ionicons/medkit.js b/dist/ionicons/medkit.js new file mode 100644 index 000000000..5fbfbbedb --- /dev/null +++ b/dist/ionicons/medkit.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.medkit = void 0; +var medkit = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M472.2,144H352v-30.7C351,85.1,330.3,64,300.8,64H256h-44.8c-29.4,0-50.2,21.1-51.2,49.3V144H39.8c-4.4,0-7.8,3.6-7.8,8\r\n\t\tv288c0,4.4,3.3,8,7.8,8h432.5c4.4,0,7.8-3.6,7.8-8V152C480,147.6,476.7,144,472.2,144z M192,117.2c0-0.4,0-0.7,0-1s0-0.6,0-1\r\n\t\tc0-9.7,8.6-19.3,18.8-19.3H256h45.2c10.1,0,18.8,9.5,18.8,19.3c0,0.3,0,0.6,0,1s0,0.6,0,1V144H192V117.2z M352,320h-64v64h-64v-64\r\n\t\th-64v-64h64v-64h64v64h64V320z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M472.2,144H352v-30.7C351,85.1,330.3,64,300.8,64H256h-44.8c-29.4,0-50.2,21.1-51.2,49.3V144H39.8c-4.4,0-7.8,3.6-7.8,8\r\n\t\tv288c0,4.4,3.3,8,7.8,8h432.5c4.4,0,7.8-3.6,7.8-8V152C480,147.6,476.7,144,472.2,144z M192,117.2c0-0.4,0-0.7,0-1s0-0.6,0-1\r\n\t\tc0-9.7,8.6-19.3,18.8-19.3H256h45.2c10.1,0,18.8,9.5,18.8,19.3c0,0.3,0,0.6,0,1s0,0.6,0,1V144H192V117.2z M352,320h-64v64h-64v-64\r\n\t\th-64v-64h64v-64h64v64h64V320z" + }, + "children": [] + }] + }] + }] +}; +exports.medkit = medkit; \ No newline at end of file diff --git a/dist/ionicons/merge.js b/dist/ionicons/merge.js new file mode 100644 index 000000000..7955d80af --- /dev/null +++ b/dist/ionicons/merge.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.merge = void 0; +var merge = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M384,224c-23.637,0-44.307,12.89-55.391,32H319c-42.464,0-79.99-17.904-111.535-53.214\r\n\tc-20.356-22.787-33.493-48.869-37.856-58.218C183.301,132.822,192,115.413,192,96c0-35.29-28.71-64-64-64S64,60.71,64,96\r\n\tc0,23.637,12.89,44.307,32,55.391v209.219C76.89,371.693,64,392.363,64,416c0,35.29,28.71,64,64,64s64-28.71,64-64\r\n\tc0-23.637-12.89-44.307-32-55.391V245.692C203.553,294.307,258.468,320,319,320h9.609c11.084,19.11,31.754,32,55.391,32\r\n\tc35.29,0,64-28.71,64-64S419.29,224,384,224z M128,64c17.673,0,32,14.327,32,32s-14.327,32-32,32s-32-14.327-32-32\r\n\tS110.327,64,128,64z M128,448c-17.673,0-32-14.327-32-32s14.327-32,32-32s32,14.327,32,32S145.673,448,128,448z M384,320\r\n\tc-17.673,0-32-14.327-32-32s14.327-32,32-32s32,14.327,32,32S401.673,320,384,320z" + }, + "children": [] + }] +}; +exports.merge = merge; \ No newline at end of file diff --git a/dist/ionicons/micA.js b/dist/ionicons/micA.js new file mode 100644 index 000000000..fb55f416b --- /dev/null +++ b/dist/ionicons/micA.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.micA = void 0; +var micA = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M112.1,238.1l-0.1,13.6c0.1,65.6,46,120.6,108.1,136.2c1.3,0.1,2.6,0.5,3.8,0.9c5.9,2,10.1,6.9,12.1,12.8v58.7\r\n\t\tc0,10.9,8.9,19.7,20,19.7h0.1c11.1,0,19.9-8.8,19.9-19.7v-58.8c2-5.9,6.1-10.7,12-12.7c1.2-0.4,2.5-0.8,3.9-0.9\r\n\t\tC354,372.3,400,317.3,400,251.7v-13.6c0-10.4-8.9-18.9-19.5-18.9c-10.6,0-19.5,8.4-19.5,18.9v13.6c0,28.5-11.5,54.1-30.6,72.8\r\n\t\tc-19.2,18.6-45.3,30.2-74.5,30.2c-29.2,0-55.1-11.5-74.2-30.2c-19.1-18.7-30.7-44.4-30.7-72.8v-13.6c0-10.4-8.8-18.9-19.5-18.9\r\n\t\tC120.9,219.2,112.1,227.7,112.1,238.1z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M112.1,238.1l-0.1,13.6c0.1,65.6,46,120.6,108.1,136.2c1.3,0.1,2.6,0.5,3.8,0.9c5.9,2,10.1,6.9,12.1,12.8v58.7\r\n\t\tc0,10.9,8.9,19.7,20,19.7h0.1c11.1,0,19.9-8.8,19.9-19.7v-58.8c2-5.9,6.1-10.7,12-12.7c1.2-0.4,2.5-0.8,3.9-0.9\r\n\t\tC354,372.3,400,317.3,400,251.7v-13.6c0-10.4-8.9-18.9-19.5-18.9c-10.6,0-19.5,8.4-19.5,18.9v13.6c0,28.5-11.5,54.1-30.6,72.8\r\n\t\tc-19.2,18.6-45.3,30.2-74.5,30.2c-29.2,0-55.1-11.5-74.2-30.2c-19.1-18.7-30.7-44.4-30.7-72.8v-13.6c0-10.4-8.8-18.9-19.5-18.9\r\n\t\tC120.9,219.2,112.1,227.7,112.1,238.1z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M179,107.7v143.8c0,41.8,34.7,75.7,77.5,75.7c42.8,0,77.5-33.9,77.5-75.7V107.7c0-41.8-34.7-75.7-77.5-75.7\r\n\t\tC213.7,32,179,65.9,179,107.7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M179,107.7v143.8c0,41.8,34.7,75.7,77.5,75.7c42.8,0,77.5-33.9,77.5-75.7V107.7c0-41.8-34.7-75.7-77.5-75.7\r\n\t\tC213.7,32,179,65.9,179,107.7z" + }, + "children": [] + }] + }] + }] +}; +exports.micA = micA; \ No newline at end of file diff --git a/dist/ionicons/micB.js b/dist/ionicons/micB.js new file mode 100644 index 000000000..3c3467cc1 --- /dev/null +++ b/dist/ionicons/micB.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.micB = void 0; +var micB = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256.4,32c-35.1,0.1-65.8,23.2-76.8,59.3c-5.6,18.5-3.5,44.8-1.2,54.5c2.3,9.7,7.3,19.9,13.2,28.3\r\n\t\tc2.8,4.2,6.7,7.4,11.2,9.2c0.6,0.3,1.3,0.5,2,0.8c3.3,1.1,6.5,2.2,10.1,3.1c11.8,3,27.1,4.7,41.1,4.8v0c0,0,0.6,0,0.7,0\r\n\t\tc0.3,0,0.3,0,1.3,0v-0.1c14-0.1,27.3-1.7,39.1-4.8c3.6-0.9,6.9-2,10.2-3.1c0.7-0.2,1.3-0.5,1.9-0.8c4.5-1.8,8.4-5,11.2-9.2\r\n\t\tc5.9-8.4,10.8-18.6,13.2-28.3c2.3-9.7,4.4-36-1.2-54.5C321.4,55.2,291.6,32.1,256.4,32z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256.4,32c-35.1,0.1-65.8,23.2-76.8,59.3c-5.6,18.5-3.5,44.8-1.2,54.5c2.3,9.7,7.3,19.9,13.2,28.3\r\n\t\tc2.8,4.2,6.7,7.4,11.2,9.2c0.6,0.3,1.3,0.5,2,0.8c3.3,1.1,6.5,2.2,10.1,3.1c11.8,3,27.1,4.7,41.1,4.8v0c0,0,0.6,0,0.7,0\r\n\t\tc0.3,0,0.3,0,1.3,0v-0.1c14-0.1,27.3-1.7,39.1-4.8c3.6-0.9,6.9-2,10.2-3.1c0.7-0.2,1.3-0.5,1.9-0.8c4.5-1.8,8.4-5,11.2-9.2\r\n\t\tc5.9-8.4,10.8-18.6,13.2-28.3c2.3-9.7,4.4-36-1.2-54.5C321.4,55.2,291.6,32.1,256.4,32z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M295.3,201.1c-0.4,0-0.7,0-1.1,0.1c-0.6,0.1-1.3,0.3-1.9,0.4c-2,0.4-4.1,0.8-6.1,1.2c-9.2,1.5-18.9,2.3-29,2.4\r\n\t\tc-10.1-0.1-22.3-0.9-31-2.4c-2.1-0.4-4.2-0.8-6.2-1.2c-0.6-0.1-1.3-0.3-1.9-0.4c-0.4-0.1-0.8-0.1-1.1-0.1c-6.1,0-11,5.3-11.2,11.9\r\n\t\tc0.1,0.8,0.2,1.6,0.2,2.4c4.8,67.2,16.8,240.7,18.2,252c0,0,2.8,12.7,32.1,12.6c0,0,0,0,0,0c29.2,0.1,32.1-12.6,32.1-12.6\r\n\t\tc1.4-11.3,13.4-184.8,18.2-252c0-0.8,0.1-1.6,0.2-2.4C306.3,206.4,301.4,201.1,295.3,201.1z M266,281.7c0,6-4.5,10.9-10,10.9\r\n\t\tc-5.5,0-10-4.9-10-10.9V249c0-6,4.5-10.9,10-10.9c5.5,0,10,4.9,10,10.9V281.7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M295.3,201.1c-0.4,0-0.7,0-1.1,0.1c-0.6,0.1-1.3,0.3-1.9,0.4c-2,0.4-4.1,0.8-6.1,1.2c-9.2,1.5-18.9,2.3-29,2.4\r\n\t\tc-10.1-0.1-22.3-0.9-31-2.4c-2.1-0.4-4.2-0.8-6.2-1.2c-0.6-0.1-1.3-0.3-1.9-0.4c-0.4-0.1-0.8-0.1-1.1-0.1c-6.1,0-11,5.3-11.2,11.9\r\n\t\tc0.1,0.8,0.2,1.6,0.2,2.4c4.8,67.2,16.8,240.7,18.2,252c0,0,2.8,12.7,32.1,12.6c0,0,0,0,0,0c29.2,0.1,32.1-12.6,32.1-12.6\r\n\t\tc1.4-11.3,13.4-184.8,18.2-252c0-0.8,0.1-1.6,0.2-2.4C306.3,206.4,301.4,201.1,295.3,201.1z M266,281.7c0,6-4.5,10.9-10,10.9\r\n\t\tc-5.5,0-10-4.9-10-10.9V249c0-6,4.5-10.9,10-10.9c5.5,0,10,4.9,10,10.9V281.7z" + }, + "children": [] + }] + }] + }] +}; +exports.micB = micB; \ No newline at end of file diff --git a/dist/ionicons/micC.js b/dist/ionicons/micC.js new file mode 100644 index 000000000..4f7d150eb --- /dev/null +++ b/dist/ionicons/micC.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.micC = void 0; +var micC = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M329.2,32H182.9C152.5,32,128,55.4,128,84.4V112h152v37H128v43h152v37H128v43h152v37H128v41.8c0,29,24.5,52.2,54.9,52.2H213\r\n\tv77h86v-77h30.2c30.3,0,54.8-23.2,54.8-52.2V309h-59v-37h59v-43h-59v-37h59v-43h-59v-37h59V84.4C384,55.4,359.5,32,329.2,32z" + }, + "children": [] + }] +}; +exports.micC = micC; \ No newline at end of file diff --git a/dist/ionicons/minus.js b/dist/ionicons/minus.js new file mode 100644 index 000000000..6eba7d5ce --- /dev/null +++ b/dist/ionicons/minus.js @@ -0,0 +1,20 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.minus = void 0; +var minus = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "rect", + "attribs": { + "x": "64", + "y": "224", + "width": "384", + "height": "64" + }, + "children": [] + }] +}; +exports.minus = minus; \ No newline at end of file diff --git a/dist/ionicons/minusCircled.js b/dist/ionicons/minusCircled.js new file mode 100644 index 000000000..6da717378 --- /dev/null +++ b/dist/ionicons/minusCircled.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.minusCircled = void 0; +var minusCircled = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,32C132.3,32,32,132.3,32,256s100.3,224,224,224s224-100.3,224-224S379.7,32,256,32z M384,272H128v-32h256V272z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,32C132.3,32,32,132.3,32,256s100.3,224,224,224s224-100.3,224-224S379.7,32,256,32z M384,272H128v-32h256V272z" + }, + "children": [] + }] + }] + }] +}; +exports.minusCircled = minusCircled; \ No newline at end of file diff --git a/dist/ionicons/minusRound.js b/dist/ionicons/minusRound.js new file mode 100644 index 000000000..0582b7760 --- /dev/null +++ b/dist/ionicons/minusRound.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.minusRound = void 0; +var minusRound = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M417.4,224H94.6C77.7,224,64,238.3,64,256c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32\r\n\tC448,238.3,434.3,224,417.4,224z" + }, + "children": [] + }] +}; +exports.minusRound = minusRound; \ No newline at end of file diff --git a/dist/ionicons/modelS.js b/dist/ionicons/modelS.js new file mode 100644 index 000000000..d0eaa9c53 --- /dev/null +++ b/dist/ionicons/modelS.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.modelS = void 0; +var modelS = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M508.8,390.9c-0.6,4.1-1.6,8.1-3.1,11.2c-2.7,5.5-5.3,6-15.5,5.5c-13.2-0.6-32.1,0-52.1,0.8c0,5.5,0.2,8.1,0.2,8.1\r\n\t\tc1.3,15.1,8.1,15.6,10.8,15.6c3,0,39.2,0,43,0s7.3,0,10-1.8c3.5-2.3,5-9,6.3-20.7c0.2-1.7,0.3-3.9,0.4-6.5c0,0,0-0.1,0-0.1\r\n\t\tc0-0.8,0.1-1.8,0.1-2.9c0-0.4,0-0.8,0-1.1c0,0,0,0,0,0C508.9,396.3,508.9,393.3,508.8,390.9z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M508.8,390.9c-0.6,4.1-1.6,8.1-3.1,11.2c-2.7,5.5-5.3,6-15.5,5.5c-13.2-0.6-32.1,0-52.1,0.8c0,5.5,0.2,8.1,0.2,8.1\r\n\t\tc1.3,15.1,8.1,15.6,10.8,15.6c3,0,39.2,0,43,0s7.3,0,10-1.8c3.5-2.3,5-9,6.3-20.7c0.2-1.7,0.3-3.9,0.4-6.5c0,0,0-0.1,0-0.1\r\n\t\tc0-0.8,0.1-1.8,0.1-2.9c0-0.4,0-0.8,0-1.1c0,0,0,0,0,0C508.9,396.3,508.9,393.3,508.8,390.9z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M3,390.9c0.6,4.1,1.6,8.1,3.1,11.2c2.7,5.5,5.3,6,15.5,5.5c13.2-0.6,32.1,0,52.1,0.8c0,5.5-0.2,8.1-0.2,8.1\r\n\t\tc-1.3,15.1-8.1,15.6-10.8,15.6c-3,0-39.2,0-43,0s-7,0-10-1.8c-3.6-2.1-5-9-6.3-20.7c-0.2-1.7-0.3-3.9-0.4-6.5c0,0,0-0.1,0-0.1\r\n\t\tc0-0.8-0.1-1.8-0.1-2.9c0-0.4,0-0.8,0-1.1c0,0,0,0,0,0C3,396.3,3,393.3,3,390.9z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M3,390.9c0.6,4.1,1.6,8.1,3.1,11.2c2.7,5.5,5.3,6,15.5,5.5c13.2-0.6,32.1,0,52.1,0.8c0,5.5-0.2,8.1-0.2,8.1\r\n\t\tc-1.3,15.1-8.1,15.6-10.8,15.6c-3,0-39.2,0-43,0s-7,0-10-1.8c-3.6-2.1-5-9-6.3-20.7c-0.2-1.7-0.3-3.9-0.4-6.5c0,0,0-0.1,0-0.1\r\n\t\tc0-0.8-0.1-1.8-0.1-2.9c0-0.4,0-0.8,0-1.1c0,0,0,0,0,0C3,396.3,3,393.3,3,390.9z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M512,296.6c0-30.7-4-60.7-5.6-64c-1.2-2.4-8.9-8.7-26.4-20.6c-17.7-12.1-17.3-10.3-20.5-18.2c2.9-0.9,5.7-2.6,7.4-2.8\r\n\t\tc3.8-0.4,4,3.2,11.9,3.2s25-2.1,28.5-5.6c3.5-3.5,4.6-4.7,4.6-7.8s-1.8-9.5-5.2-13.3s-17.9-5.7-26.4-6.8s-9.7,0-11.9,1.4\r\n\t\tc-3.5,2.2-3.7,22.3-3.7,22.3l-8.3,0.2c-5.4-13.3-12.9-40.1-24.6-61.2c-12.8-23-26.2-30.2-31.8-32c-5.5-1.7-10.5-2.9-48-6.7\r\n\t\tc-38.3-4-68.8-4.5-96-4.5s-57.7,0.6-96,4.5c-37.5,3.9-42.5,5-48,6.7c-5.5,1.7-19,9-31.8,32c-11.7,21.1-19.2,47.9-24.6,61.2\r\n\t\tl-8.3-0.2c0,0-0.1-20.1-3.7-22.3c-2.2-1.4-3.4-2.6-11.9-1.4s-23,3-26.4,6.8s-5.2,10.2-5.2,13.3s1.1,4.4,4.6,7.8\r\n\t\tc3.5,3.5,20.6,5.6,28.5,5.6s8.1-3.6,11.9-3.2c1.7,0.2,4.6,1.9,7.4,2.8c-3.3,7.9-2.8,6.1-20.5,18.2c-17.5,12-25.3,18.2-26.4,20.6\r\n\t\tC4,235.9,0,265.9,0,296.6s2.2,58.3,2.2,68.1c0,4.1,0,11.3,0.9,18.2c0.6,4.1,1.5,8.1,3.1,11.2c2.7,5.5,5.2,6,15.5,5.5\r\n\t\tc13.2-0.6,32.3,0,52,0.8c13.2,0.5,26.7,1,38.7,1.3c30,0.6,21.2-4.4,34-4.2c12.8,0.2,63.3,2.3,109.5,2.3s96.8-2.1,109.5-2.3\r\n\t\tc12.8-0.2,4,4.8,34,4.2c12-0.2,25.5-0.8,38.7-1.3c19.7-0.7,38.9-1.4,52-0.8c10.3,0.5,12.8,0,15.5-5.5c1.5-3.1,2.5-7.1,3.1-11.2\r\n\t\tc1-6.9,0.9-14.1,0.9-18.2C509.8,355,512,327.3,512,296.6z M86.2,145.2c4.8-11.2,19.2-33.7,26.2-37.7c1.7-1,16.6-5.7,53.9-8.2\r\n\t\tc34.3-2.3,72.2-3.2,89.8-3.2s55.5,0.9,89.8,3.2c37.2,2.5,52.3,7.1,53.9,8.2c9,6.2,21.4,26.5,26.2,37.7c4.8,11.2,11.2,33.2,10,36.2\r\n\t\tc-1.2,3,1.2,4.5-15,3.2c-16.1-1.2-117.2-2.5-164.8-2.5c-47.5,0-148.6,1.3-164.8,2.5c-16.2,1.2-13.8-0.2-15-3.2\r\n\t\tC75,178.4,81.4,156.5,86.2,145.2z M123,270.4c-7.2,1.8-11.5,5.7-20.5,5.6c-9,0-33.3-4.1-38.5-4.3c-5.2-0.2-9.8,3.5-12.5,4.2\r\n\t\ts-8-1.2-16-3.7s-12.7-1.8-15.3-12.7c-2.7-10.8,0-26.3,0-26.3c17.3-0.8,34,0.8,65.3,9.6c31.3,8.8,48.7,25.7,48.7,25.7\r\n\t\tS130.2,268.6,123,270.4z M358.2,349.2c-14.3,1.9-74.2,2.4-102.2,2.4c-28,0-87.9-0.6-102.2-2.4c-14.6-1.9-33.6-19.4-20.5-33.3\r\n\t\tc17.7-18.9,14.4-18.3,54.6-23.5c34.8-4.5,61.2-4.7,68.1-4.7c6.8,0,33.3,0.3,68.1,4.7c40.2,5.2,36.9,4.6,54.6,23.5\r\n\t\tC391.8,329.8,372.8,347.3,358.2,349.2z M491.8,259.6c-2.7,10.8-7.3,10.2-15.3,12.7s-13.3,4.3-16,3.7s-7.3-4.3-12.5-4.2\r\n\t\tc-5.2,0.2-29.5,4.3-38.5,4.3c-9,0-13.3-3.8-20.5-5.6c-7.2-1.8-11.2-1.8-11.2-1.8s17.3-17,48.7-25.7c31.3-8.8,48-10.4,65.3-9.6\r\n\t\tC491.8,233.2,494.5,248.7,491.8,259.6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M512,296.6c0-30.7-4-60.7-5.6-64c-1.2-2.4-8.9-8.7-26.4-20.6c-17.7-12.1-17.3-10.3-20.5-18.2c2.9-0.9,5.7-2.6,7.4-2.8\r\n\t\tc3.8-0.4,4,3.2,11.9,3.2s25-2.1,28.5-5.6c3.5-3.5,4.6-4.7,4.6-7.8s-1.8-9.5-5.2-13.3s-17.9-5.7-26.4-6.8s-9.7,0-11.9,1.4\r\n\t\tc-3.5,2.2-3.7,22.3-3.7,22.3l-8.3,0.2c-5.4-13.3-12.9-40.1-24.6-61.2c-12.8-23-26.2-30.2-31.8-32c-5.5-1.7-10.5-2.9-48-6.7\r\n\t\tc-38.3-4-68.8-4.5-96-4.5s-57.7,0.6-96,4.5c-37.5,3.9-42.5,5-48,6.7c-5.5,1.7-19,9-31.8,32c-11.7,21.1-19.2,47.9-24.6,61.2\r\n\t\tl-8.3-0.2c0,0-0.1-20.1-3.7-22.3c-2.2-1.4-3.4-2.6-11.9-1.4s-23,3-26.4,6.8s-5.2,10.2-5.2,13.3s1.1,4.4,4.6,7.8\r\n\t\tc3.5,3.5,20.6,5.6,28.5,5.6s8.1-3.6,11.9-3.2c1.7,0.2,4.6,1.9,7.4,2.8c-3.3,7.9-2.8,6.1-20.5,18.2c-17.5,12-25.3,18.2-26.4,20.6\r\n\t\tC4,235.9,0,265.9,0,296.6s2.2,58.3,2.2,68.1c0,4.1,0,11.3,0.9,18.2c0.6,4.1,1.5,8.1,3.1,11.2c2.7,5.5,5.2,6,15.5,5.5\r\n\t\tc13.2-0.6,32.3,0,52,0.8c13.2,0.5,26.7,1,38.7,1.3c30,0.6,21.2-4.4,34-4.2c12.8,0.2,63.3,2.3,109.5,2.3s96.8-2.1,109.5-2.3\r\n\t\tc12.8-0.2,4,4.8,34,4.2c12-0.2,25.5-0.8,38.7-1.3c19.7-0.7,38.9-1.4,52-0.8c10.3,0.5,12.8,0,15.5-5.5c1.5-3.1,2.5-7.1,3.1-11.2\r\n\t\tc1-6.9,0.9-14.1,0.9-18.2C509.8,355,512,327.3,512,296.6z M86.2,145.2c4.8-11.2,19.2-33.7,26.2-37.7c1.7-1,16.6-5.7,53.9-8.2\r\n\t\tc34.3-2.3,72.2-3.2,89.8-3.2s55.5,0.9,89.8,3.2c37.2,2.5,52.3,7.1,53.9,8.2c9,6.2,21.4,26.5,26.2,37.7c4.8,11.2,11.2,33.2,10,36.2\r\n\t\tc-1.2,3,1.2,4.5-15,3.2c-16.1-1.2-117.2-2.5-164.8-2.5c-47.5,0-148.6,1.3-164.8,2.5c-16.2,1.2-13.8-0.2-15-3.2\r\n\t\tC75,178.4,81.4,156.5,86.2,145.2z M123,270.4c-7.2,1.8-11.5,5.7-20.5,5.6c-9,0-33.3-4.1-38.5-4.3c-5.2-0.2-9.8,3.5-12.5,4.2\r\n\t\ts-8-1.2-16-3.7s-12.7-1.8-15.3-12.7c-2.7-10.8,0-26.3,0-26.3c17.3-0.8,34,0.8,65.3,9.6c31.3,8.8,48.7,25.7,48.7,25.7\r\n\t\tS130.2,268.6,123,270.4z M358.2,349.2c-14.3,1.9-74.2,2.4-102.2,2.4c-28,0-87.9-0.6-102.2-2.4c-14.6-1.9-33.6-19.4-20.5-33.3\r\n\t\tc17.7-18.9,14.4-18.3,54.6-23.5c34.8-4.5,61.2-4.7,68.1-4.7c6.8,0,33.3,0.3,68.1,4.7c40.2,5.2,36.9,4.6,54.6,23.5\r\n\t\tC391.8,329.8,372.8,347.3,358.2,349.2z M491.8,259.6c-2.7,10.8-7.3,10.2-15.3,12.7s-13.3,4.3-16,3.7s-7.3-4.3-12.5-4.2\r\n\t\tc-5.2,0.2-29.5,4.3-38.5,4.3c-9,0-13.3-3.8-20.5-5.6c-7.2-1.8-11.2-1.8-11.2-1.8s17.3-17,48.7-25.7c31.3-8.8,48-10.4,65.3-9.6\r\n\t\tC491.8,233.2,494.5,248.7,491.8,259.6z" + }, + "children": [] + }] + }] + }] +}; +exports.modelS = modelS; \ No newline at end of file diff --git a/dist/ionicons/monitor.js b/dist/ionicons/monitor.js new file mode 100644 index 000000000..0d1b8d531 --- /dev/null +++ b/dist/ionicons/monitor.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.monitor = void 0; +var monitor = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M468.7,64H43.3c-6,0-11.3,5-11.3,11.1v265.7c0,6.2,5.2,11.1,11.3,11.1h425.4c6,0,11.3-5,11.3-11.1V75.1\r\n\t\tC480,69,474.8,64,468.7,64z M448,320H64V96h384V320z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M468.7,64H43.3c-6,0-11.3,5-11.3,11.1v265.7c0,6.2,5.2,11.1,11.3,11.1h425.4c6,0,11.3-5,11.3-11.1V75.1\r\n\t\tC480,69,474.8,64,468.7,64z M448,320H64V96h384V320z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M302.5,448c28-0.5,41.5-3.9,29-12.5c-12.5-8.7-28.5-15.3-29-22.5c-0.3-3.7-1.7-45-1.7-45H256h-44.8c0,0-1.5,41.3-1.7,45\r\n\t\tc-0.5,7.1-16.5,13.8-29,22.5c-12.5,8.7,1,12,29,12.5H302.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M302.5,448c28-0.5,41.5-3.9,29-12.5c-12.5-8.7-28.5-15.3-29-22.5c-0.3-3.7-1.7-45-1.7-45H256h-44.8c0,0-1.5,41.3-1.7,45\r\n\t\tc-0.5,7.1-16.5,13.8-29,22.5c-12.5,8.7,1,12,29,12.5H302.5z" + }, + "children": [] + }] + }] + }] +}; +exports.monitor = monitor; \ No newline at end of file diff --git a/dist/ionicons/more.js b/dist/ionicons/more.js new file mode 100644 index 000000000..e4c5b588a --- /dev/null +++ b/dist/ionicons/more.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.more = void 0; +var more = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M113.7,304C86.2,304,64,282.6,64,256c0-26.5,22.2-48,49.7-48c27.6,0,49.8,21.5,49.8,48C163.5,282.6,141.3,304,113.7,304z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M113.7,304C86.2,304,64,282.6,64,256c0-26.5,22.2-48,49.7-48c27.6,0,49.8,21.5,49.8,48C163.5,282.6,141.3,304,113.7,304z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,304c-27.5,0-49.8-21.4-49.8-48c0-26.5,22.3-48,49.8-48c27.5,0,49.7,21.5,49.7,48C305.7,282.6,283.5,304,256,304z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,304c-27.5,0-49.8-21.4-49.8-48c0-26.5,22.3-48,49.8-48c27.5,0,49.7,21.5,49.7,48C305.7,282.6,283.5,304,256,304z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M398.2,304c-27.5,0-49.8-21.4-49.8-48c0-26.5,22.2-48,49.8-48c27.5,0,49.8,21.5,49.8,48C448,282.6,425.8,304,398.2,304z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M398.2,304c-27.5,0-49.8-21.4-49.8-48c0-26.5,22.2-48,49.8-48c27.5,0,49.8,21.5,49.8,48C448,282.6,425.8,304,398.2,304z" + }, + "children": [] + }] + }] + }] +}; +exports.more = more; \ No newline at end of file diff --git a/dist/ionicons/mouse.js b/dist/ionicons/mouse.js new file mode 100644 index 000000000..4b7b816bb --- /dev/null +++ b/dist/ionicons/mouse.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.mouse = void 0; +var mouse = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,32c-0.46,0-0.917,0.011-1.376,0.015l5.747,0.057C258.92,32.029,257.464,32,256,32z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,32c-0.46,0-0.917,0.011-1.376,0.015l5.747,0.057C258.92,32.029,257.464,32,256,32z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M378.553,193.211c-0.195,0.064-0.414,0.16-0.619,0.269c-34.234,13.289-76.337,22.52-121.886,22.475\r\n\t\tc-45.52-0.076-87.626-9.398-121.81-22.772c-0.19-0.104-0.429-0.192-0.647-0.265c-1.531-0.554-3.146-0.897-4.841-0.917\r\n\t\tc-0.254-0.001-0.5-0.013-0.75,0v176.012C128,429.892,185.308,480,256,480c21.992,0,42.687-4.803,60.766-13.355\r\n\t\tc0.095-0.045,0.191-0.087,0.286-0.133c0.026-0.013,0.054-0.026,0.08-0.039c4.87-2.344,9.581-4.963,14.122-7.828\r\n\t\tC363.219,438.275,384,405.271,384,368.012V192c-0.191-0.008-0.496,0-0.689,0C381.584,192.014,380.092,192.651,378.553,193.211z\r\n\t\t M317.132,466.424c-0.026,0.013-0.054,0.026-0.08,0.039c-0.095,0.045-0.191,0.088-0.286,0.133c0.095-0.045,0.191-0.088,0.286-0.133\r\n\t\tC317.078,466.45,317.105,466.437,317.132,466.424c4.87-2.342,9.581-4.961,14.122-7.825\r\n\t\tC326.758,461.463,322.044,464.083,317.132,466.424z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M378.553,193.211c-0.195,0.064-0.414,0.16-0.619,0.269c-34.234,13.289-76.337,22.52-121.886,22.475\r\n\t\tc-45.52-0.076-87.626-9.398-121.81-22.772c-0.19-0.104-0.429-0.192-0.647-0.265c-1.531-0.554-3.146-0.897-4.841-0.917\r\n\t\tc-0.254-0.001-0.5-0.013-0.75,0v176.012C128,429.892,185.308,480,256,480c21.992,0,42.687-4.803,60.766-13.355\r\n\t\tc0.095-0.045,0.191-0.087,0.286-0.133c0.026-0.013,0.054-0.026,0.08-0.039c4.87-2.344,9.581-4.963,14.122-7.828\r\n\t\tC363.219,438.275,384,405.271,384,368.012V192c-0.191-0.008-0.496,0-0.689,0C381.584,192.014,380.092,192.651,378.553,193.211z\r\n\t\t M317.132,466.424c-0.026,0.013-0.054,0.026-0.08,0.039c-0.095,0.045-0.191,0.088-0.286,0.133c0.095-0.045,0.191-0.088,0.286-0.133\r\n\t\tC317.078,466.45,317.105,466.437,317.132,466.424c4.87-2.342,9.581-4.961,14.122-7.825\r\n\t\tC326.758,461.463,322.044,464.083,317.132,466.424z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M331.254,458.599c-4.541,2.864-9.252,5.483-14.122,7.825C322.044,464.083,326.758,461.463,331.254,458.599z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M331.254,458.599c-4.541,2.864-9.252,5.483-14.122,7.825C322.044,464.083,326.758,461.463,331.254,458.599z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M260.371,32.072l-5.747-0.057C184.566,32.662,128,82.547,128,144v22.708c2.158,2.024,4.593,3.755,7.251,5.115\r\n\t\tc0.673,0.337,1.386,0.659,2.059,0.996c0.032,0.027,0.077,0.01,0.109,0.036c22.757,10.35,51.429,15.801,83.415,19.006\r\n\t\tc0.694,0.078,1.397,0.107,2.148,0.12C234.24,191.997,239.996,192,240,181.411V96c0-8.836,7.164-16,16-16c8.836,0,16,7.164,16,16\r\n\t\tv86.328c-0.088,9.672,5.926,9.72,17.2,9.749c0.717-0.016,1.415-0.045,2.081-0.105c0.062-0.003,0.141,0.005,0.244-0.02\r\n\t\tc31.682-3.119,60.143-8.405,82.808-18.59c1.162-0.545,2.291-1.056,3.407-1.581c2.271-1.232,4.365-2.743,6.26-4.466V144\r\n\t\tC384,83.425,329.039,34.09,260.371,32.072z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M260.371,32.072l-5.747-0.057C184.566,32.662,128,82.547,128,144v22.708c2.158,2.024,4.593,3.755,7.251,5.115\r\n\t\tc0.673,0.337,1.386,0.659,2.059,0.996c0.032,0.027,0.077,0.01,0.109,0.036c22.757,10.35,51.429,15.801,83.415,19.006\r\n\t\tc0.694,0.078,1.397,0.107,2.148,0.12C234.24,191.997,239.996,192,240,181.411V96c0-8.836,7.164-16,16-16c8.836,0,16,7.164,16,16\r\n\t\tv86.328c-0.088,9.672,5.926,9.72,17.2,9.749c0.717-0.016,1.415-0.045,2.081-0.105c0.062-0.003,0.141,0.005,0.244-0.02\r\n\t\tc31.682-3.119,60.143-8.405,82.808-18.59c1.162-0.545,2.291-1.056,3.407-1.581c2.271-1.232,4.365-2.743,6.26-4.466V144\r\n\t\tC384,83.425,329.039,34.09,260.371,32.072z" + }, + "children": [] + }] + }] + }] +}; +exports.mouse = mouse; \ No newline at end of file diff --git a/dist/ionicons/musicNote.js b/dist/ionicons/musicNote.js new file mode 100644 index 000000000..ec582f4c1 --- /dev/null +++ b/dist/ionicons/musicNote.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.musicNote = void 0; +var musicNote = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M426,32.1c-2.2,0-5.1,0.6-5.1,0.6L203.3,65.9C189.5,69.6,177,83,176,97.5V384h-61v-0.1c-28,0-51.1,20-51.1,48\r\n\ts23.1,48,51.3,48h36.2c15.3,0,28.9-6.9,38.3-17.5c0.1-0.1,0.3-0.1,0.4-0.2c0.6-0.6,1-1.5,1.5-2.1c1.3-1.6,2.4-3.2,3.4-5\r\n\tC204.6,441,208,422.3,208,414V182l208-38c0,0,0,136,0,192h-60.5c-28.3,0-51.2,19.9-51.2,48s22.9,48,51.2,48h37.2\r\n\tc18.2,0,34.1-6,43.2-21c0,0,0.1,0,0.2,0c9-12,12-30.2,12-54.9c0-24.8,0-302.8,0-302.8C448,41.6,438.1,32.1,426,32.1z" + }, + "children": [] + }] +}; +exports.musicNote = musicNote; \ No newline at end of file diff --git a/dist/ionicons/navicon.js b/dist/ionicons/navicon.js new file mode 100644 index 000000000..76b90c626 --- /dev/null +++ b/dist/ionicons/navicon.js @@ -0,0 +1,69 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.navicon = void 0; +var navicon = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "96", + "y": "241", + "width": "320", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "96", + "y": "241", + "width": "320", + "height": "32" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "96", + "y": "145", + "width": "320", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "96", + "y": "145", + "width": "320", + "height": "32" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "96", + "y": "337", + "width": "320", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "96", + "y": "337", + "width": "320", + "height": "32" + }, + "children": [] + }] + }] + }] +}; +exports.navicon = navicon; \ No newline at end of file diff --git a/dist/ionicons/naviconRound.js b/dist/ionicons/naviconRound.js new file mode 100644 index 000000000..0b1c3f1e8 --- /dev/null +++ b/dist/ionicons/naviconRound.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.naviconRound = void 0; +var naviconRound = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M417.4,224H94.6C77.7,224,64,238.3,64,256c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32\r\n\t\tC448,238.3,434.3,224,417.4,224z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M417.4,224H94.6C77.7,224,64,238.3,64,256c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32\r\n\t\tC448,238.3,434.3,224,417.4,224z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M417.4,96H94.6C77.7,96,64,110.3,64,128c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32\r\n\t\tC448,110.3,434.3,96,417.4,96z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M417.4,96H94.6C77.7,96,64,110.3,64,128c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32\r\n\t\tC448,110.3,434.3,96,417.4,96z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M417.4,352H94.6C77.7,352,64,366.3,64,384c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32\r\n\t\tC448,366.3,434.3,352,417.4,352z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M417.4,352H94.6C77.7,352,64,366.3,64,384c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32\r\n\t\tC448,366.3,434.3,352,417.4,352z" + }, + "children": [] + }] + }] + }] +}; +exports.naviconRound = naviconRound; \ No newline at end of file diff --git a/dist/ionicons/navigate.js b/dist/ionicons/navigate.js new file mode 100644 index 000000000..b95ff557b --- /dev/null +++ b/dist/ionicons/navigate.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.navigate = void 0; +var navigate = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "polygon", + "attribs": { + "points": "480,32 32,224 288,224 288,480 " + }, + "children": [] + }] +}; +exports.navigate = navigate; \ No newline at end of file diff --git a/dist/ionicons/network.js b/dist/ionicons/network.js new file mode 100644 index 000000000..298485625 --- /dev/null +++ b/dist/ionicons/network.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.network = void 0; +var network = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M448,96c0-35.29-28.71-64-64-64s-64,28.71-64,64c0,23.637,12.89,44.307,32,55.391v52.832l-96,48l-96-48v-52.832\r\n\tc19.11-11.084,32-31.754,32-55.391c0-35.29-28.71-64-64-64S64,60.71,64,96c0,23.637,12.89,44.307,32,55.391v92.387l128,64v52.832\r\n\tc-19.11,11.084-32,31.754-32,55.391c0,35.29,28.71,64,64,64s64-28.71,64-64c0-23.637-12.89-44.307-32-55.391v-52.832l128-64v-92.387\r\n\tC435.11,140.307,448,119.637,448,96z M128,64c17.673,0,32,14.327,32,32s-14.327,32-32,32s-32-14.327-32-32S110.327,64,128,64z\r\n\t M256,448c-17.673,0-32-14.327-32-32s14.327-32,32-32s32,14.327,32,32S273.673,448,256,448z M384,128c-17.673,0-32-14.327-32-32\r\n\ts14.327-32,32-32s32,14.327,32,32S401.673,128,384,128z" + }, + "children": [] + }] +}; +exports.network = network; \ No newline at end of file diff --git a/dist/ionicons/noSmoking.js b/dist/ionicons/noSmoking.js new file mode 100644 index 000000000..2db931ffa --- /dev/null +++ b/dist/ionicons/noSmoking.js @@ -0,0 +1,131 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.noSmoking = void 0; +var noSmoking = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "style", + "attribs": { + "type": "text/css" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "360", + "y": "256", + "class": "st0", + "width": "16", + "height": "48" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "360", + "y": "256", + "class": "st0", + "width": "16", + "height": "48" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "class": "st0", + "points": "112,304 249.6,304 201.6,256 112,256 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "class": "st0", + "points": "112,304 249.6,304 201.6,256 112,256 \t" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "class": "st0", + "d": "M364.5,60.1c-0.4-0.2-0.7-0.4-1-0.6c-10.9-6-22.5-10.7-34.4-14.8c-1.8-0.6-3.6-1.2-5.4-1.8\r\n\t\tC302.3,36.1,279.6,32,256,32C132.3,32,32,132.3,32,256c0,84.3,46.6,157.6,115.4,195.8c0.4,0.2,0.7,0.5,1.1,0.7\r\n\t\tc10.9,6,22.5,10.7,34.4,14.8c1.8,0.6,3.6,1.2,5.4,1.8c21.4,6.8,44,10.9,67.7,10.9c123.7,0,224-100.3,224-224\r\n\t\tC480,171.7,433.4,98.3,364.5,60.1z M256,426.4c-9.3,0-18.4-0.9-27.2-2.4c-9.8-1.6-19.3-4.1-28.5-7.3c-1.9-0.6-3.8-1.2-5.6-1.9\r\n\t\tc-6.5-2.5-12.9-5.3-19-8.6c-53.6-28.7-90.1-85.2-90.1-150.3c0-37.2,12.4-71.4,32.7-99.4l237.2,237.2\r\n\t\tC327.4,414,293.2,426.4,256,426.4z M393.8,355.4L156.6,118.2c28-20.2,62.1-32.6,99.4-32.6c9.3,0,18.3,0.9,27.2,2.4\r\n\t\tc9.8,1.6,19.3,4.1,28.5,7.3c1.8,0.6,3.7,1.2,5.6,1.9c6.2,2.4,12.2,5,18,8.1c54.2,28.5,91.2,85.3,91.2,150.8\r\n\t\tC426.4,293.3,414,327.4,393.8,355.4z" + }, + "children": [{ + "name": "path", + "attribs": { + "class": "st0", + "d": "M364.5,60.1c-0.4-0.2-0.7-0.4-1-0.6c-10.9-6-22.5-10.7-34.4-14.8c-1.8-0.6-3.6-1.2-5.4-1.8\r\n\t\tC302.3,36.1,279.6,32,256,32C132.3,32,32,132.3,32,256c0,84.3,46.6,157.6,115.4,195.8c0.4,0.2,0.7,0.5,1.1,0.7\r\n\t\tc10.9,6,22.5,10.7,34.4,14.8c1.8,0.6,3.6,1.2,5.4,1.8c21.4,6.8,44,10.9,67.7,10.9c123.7,0,224-100.3,224-224\r\n\t\tC480,171.7,433.4,98.3,364.5,60.1z M256,426.4c-9.3,0-18.4-0.9-27.2-2.4c-9.8-1.6-19.3-4.1-28.5-7.3c-1.9-0.6-3.8-1.2-5.6-1.9\r\n\t\tc-6.5-2.5-12.9-5.3-19-8.6c-53.6-28.7-90.1-85.2-90.1-150.3c0-37.2,12.4-71.4,32.7-99.4l237.2,237.2\r\n\t\tC327.4,414,293.2,426.4,256,426.4z M393.8,355.4L156.6,118.2c28-20.2,62.1-32.6,99.4-32.6c9.3,0,18.3,0.9,27.2,2.4\r\n\t\tc9.8,1.6,19.3,4.1,28.5,7.3c1.8,0.6,3.7,1.2,5.6,1.9c6.2,2.4,12.2,5,18,8.1c54.2,28.5,91.2,85.3,91.2,150.8\r\n\t\tC426.4,293.3,414,327.4,393.8,355.4z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "class": "st0", + "points": "352,298 352,256 310,256 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "class": "st0", + "points": "352,298 352,256 310,256 \t" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "384", + "y": "256", + "class": "st0", + "width": "16", + "height": "48" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "384", + "y": "256", + "class": "st0", + "width": "16", + "height": "48" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "class": "st0", + "d": "M360.1,212.7c-8.8-4.1-22-5.7-45.6-5.7c-1.2,0-2.4,0-3.6,0c-12.7,0.1-15.9-0.1-20-6.1\r\n\t\tc-2.8-4.2-1-14.8,3.7-21.9c1.6-2.4,1.8-5.6,0.4-8.2c-1.4-2.6-4.1-4.2-7-4.3c-0.1,0-9.4-0.1-18.3-3.9c-10.6-4.5-15.6-12.1-15.6-23.1\r\n\t\tc0-25.8,21.8-27.7,22.8-27.7v-16c-12,0-38.8,11-38.8,43.7c0,17.5,9,31,25.7,38c4.2,1.7,8.4,2.9,12,3.6c-3.3,9.8-3.6,20.9,1.7,28.7\r\n\t\tc9,13.3,20.3,13.2,33.3,13.1c1.1,0,2.3,0,3.5,0c26.3,0,34.6,2.3,38.9,4.3c5.7,2.6,6.8,11.5,6.6,19.7c0,0.7,0,0.4,0,1h16\r\n\t\tc0-0.4,0-0.4,0-1C375.8,239.8,376.1,220.1,360.1,212.7z" + }, + "children": [{ + "name": "path", + "attribs": { + "class": "st0", + "d": "M360.1,212.7c-8.8-4.1-22-5.7-45.6-5.7c-1.2,0-2.4,0-3.6,0c-12.7,0.1-15.9-0.1-20-6.1\r\n\t\tc-2.8-4.2-1-14.8,3.7-21.9c1.6-2.4,1.8-5.6,0.4-8.2c-1.4-2.6-4.1-4.2-7-4.3c-0.1,0-9.4-0.1-18.3-3.9c-10.6-4.5-15.6-12.1-15.6-23.1\r\n\t\tc0-25.8,21.8-27.7,22.8-27.7v-16c-12,0-38.8,11-38.8,43.7c0,17.5,9,31,25.7,38c4.2,1.7,8.4,2.9,12,3.6c-3.3,9.8-3.6,20.9,1.7,28.7\r\n\t\tc9,13.3,20.3,13.2,33.3,13.1c1.1,0,2.3,0,3.5,0c26.3,0,34.6,2.3,38.9,4.3c5.7,2.6,6.8,11.5,6.6,19.7c0,0.7,0,0.4,0,1h16\r\n\t\tc0-0.4,0-0.4,0-1C375.8,239.8,376.1,220.1,360.1,212.7z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "class": "st0", + "d": "M400,248c0-25.7-3-43.2-9.1-53.6C382.3,180,368.5,172,352,172h-17.4c2.9-8.3,5.4-19.8,3.5-30.9\r\n\t\tc-3.2-18.8-19.1-30-43.1-30v16c21,0,26.1,9.1,27.4,16.7c2.5,14.5-6.8,32.1-6.9,32.3c-1.4,2.5-1.3,5.5,0.1,7.9\r\n\t\tc1.4,2.4,4.1,3.9,6.9,3.9H352c10.9,0,19.4,4.9,25.1,14.6c3.1,5.3,6.9,17.5,6.9,45.4H400z" + }, + "children": [{ + "name": "path", + "attribs": { + "class": "st0", + "d": "M400,248c0-25.7-3-43.2-9.1-53.6C382.3,180,368.5,172,352,172h-17.4c2.9-8.3,5.4-19.8,3.5-30.9\r\n\t\tc-3.2-18.8-19.1-30-43.1-30v16c21,0,26.1,9.1,27.4,16.7c2.5,14.5-6.8,32.1-6.9,32.3c-1.4,2.5-1.3,5.5,0.1,7.9\r\n\t\tc1.4,2.4,4.1,3.9,6.9,3.9H352c10.9,0,19.4,4.9,25.1,14.6c3.1,5.3,6.9,17.5,6.9,45.4H400z" + }, + "children": [] + }] + }] + }] +}; +exports.noSmoking = noSmoking; \ No newline at end of file diff --git a/dist/ionicons/nuclear.js b/dist/ionicons/nuclear.js new file mode 100644 index 000000000..66834c3e5 --- /dev/null +++ b/dist/ionicons/nuclear.js @@ -0,0 +1,99 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.nuclear = void 0; +var nuclear = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "cx": "256", + "cy": "272", + "r": "48" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "256", + "cy": "272", + "r": "48" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "256", + "cy": "272", + "r": "48" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "256", + "cy": "272", + "r": "48" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M480,272H320c0,23.9-13.1,44.7-32.6,55.7L365.6,464C433.1,425.4,480,355.3,480,272z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M480,272H320c0,23.9-13.1,44.7-32.6,55.7L365.6,464C433.1,425.4,480,355.3,480,272z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,208c11.7,0,22.7,3.2,32.1,8.7l80.6-138.3C335.6,59.1,297.1,48,256,48c-41.2,0-79.9,11.2-113.1,30.6l79.8,138.8\r\n\t\t\tC232.4,211.4,243.8,208,256,208z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,208c11.7,0,22.7,3.2,32.1,8.7l80.6-138.3C335.6,59.1,297.1,48,256,48c-41.2,0-79.9,11.2-113.1,30.6l79.8,138.8\r\n\t\t\tC232.4,211.4,243.8,208,256,208z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M192,272H32c0,83.3,46.9,153.4,114.4,192l78.2-136.3C205.1,316.7,192,295.9,192,272z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M192,272H32c0,83.3,46.9,153.4,114.4,192l78.2-136.3C205.1,316.7,192,295.9,192,272z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.nuclear = nuclear; \ No newline at end of file diff --git a/dist/ionicons/outlet.js b/dist/ionicons/outlet.js new file mode 100644 index 000000000..e331ac70b --- /dev/null +++ b/dist/ionicons/outlet.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.outlet = void 0; +var outlet = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M369.541,32H142.359C81.521,32,32,82.574,32,144.604v222.79C32,429.426,81.521,480,142.359,480h227.182\r\n\t\tC430.479,480,480,429.426,480,367.395v-222.79C480,82.574,430.479,32,369.541,32z M175,250.954v0.67\r\n\t\tc0,10.882-9.09,20.376-19.875,20.376h-23.27C121.073,272,112,262.506,112,251.624v-0.67V149.512v-1.351\r\n\t\tc1-10.768,9.193-20.161,19.855-20.161h23.27c10.886,0,19.875,9.847,19.875,20.831V250.954z M297,395.74v2.68\r\n\t\tc0,11.439-8.872,17.58-20.1,17.58H256h-20.898C223.872,416,215,407.859,215,396.42v-0.68v-28.637\r\n\t\tc0-23.33,18.118-42.287,40.999-42.287c22.883,0,41.001,18.957,41.001,42.287V395.74z M400,250.954v0.67\r\n\t\tc0,10.882-9.071,20.376-19.855,20.376h-24.27C345.093,272,336,262.506,336,251.624v-0.67V149.512v-1.351\r\n\t\tc1-10.768,9.215-20.161,19.875-20.161h24.27c10.784,0,19.855,9.847,19.855,20.831V250.954z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M369.541,32H142.359C81.521,32,32,82.574,32,144.604v222.79C32,429.426,81.521,480,142.359,480h227.182\r\n\t\tC430.479,480,480,429.426,480,367.395v-222.79C480,82.574,430.479,32,369.541,32z M175,250.954v0.67\r\n\t\tc0,10.882-9.09,20.376-19.875,20.376h-23.27C121.073,272,112,262.506,112,251.624v-0.67V149.512v-1.351\r\n\t\tc1-10.768,9.193-20.161,19.855-20.161h23.27c10.886,0,19.875,9.847,19.875,20.831V250.954z M297,395.74v2.68\r\n\t\tc0,11.439-8.872,17.58-20.1,17.58H256h-20.898C223.872,416,215,407.859,215,396.42v-0.68v-28.637\r\n\t\tc0-23.33,18.118-42.287,40.999-42.287c22.883,0,41.001,18.957,41.001,42.287V395.74z M400,250.954v0.67\r\n\t\tc0,10.882-9.071,20.376-19.855,20.376h-24.27C345.093,272,336,262.506,336,251.624v-0.67V149.512v-1.351\r\n\t\tc1-10.768,9.215-20.161,19.875-20.161h24.27c10.784,0,19.855,9.847,19.855,20.831V250.954z" + }, + "children": [] + }] + }] + }] +}; +exports.outlet = outlet; \ No newline at end of file diff --git a/dist/ionicons/paintbrush.js b/dist/ionicons/paintbrush.js new file mode 100644 index 000000000..5655a004e --- /dev/null +++ b/dist/ionicons/paintbrush.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.paintbrush = void 0; +var paintbrush = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M149.515,283.349c-51.921,0-83.939,45.661-83.939,95.085c0,22.691-10.071,39.153-33.575,48.104\r\n\t\tc17.907,34.678,87.777,41.157,117.515,35.797c35.642-6.426,80.077-24.873,90.654-76.969\r\n\t\tC252.48,324.739,201.434,283.349,149.515,283.349z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M149.515,283.349c-51.921,0-83.939,45.661-83.939,95.085c0,22.691-10.071,39.153-33.575,48.104\r\n\t\tc17.907,34.678,87.777,41.157,117.515,35.797c35.642-6.426,80.077-24.873,90.654-76.969\r\n\t\tC252.48,324.739,201.434,283.349,149.515,283.349z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M467.638,60.356c-12.955-12.948-29.964-17.292-44.92-5.35L247.598,209.1c-8.648-2.371-16.525-1.869-22.909,2.346\r\n\t\tL165.896,260.4c-1.611,1.611-1.545,4.304,0.066,5.914c0.499,0.501,1.064,0.79,1.697,0.98c0.642,0.034,1.264,0.059,1.899,0.103\r\n\t\tc0.019-0.002,0.036-0.01,0.054-0.014c47.938,3.432,91.034,36.754,89.3,89.506c-0.016,0.505-0.029,1.007-0.054,1.516\r\n\t\tc0.123,0.848,0.5,1.664,1.149,2.315c1.595,1.593,4.168,1.605,5.781,0.044c0.018-0.018,0.037-0.027,0.055-0.044\r\n\t\tc0.063-0.063,0.106-0.137,0.164-0.2l50.457-57.342c4.216-6.374,4.72-14.24,2.355-22.875l154.169-175.047\r\n\t\tC484.939,90.308,480.592,73.308,467.638,60.356z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M467.638,60.356c-12.955-12.948-29.964-17.292-44.92-5.35L247.598,209.1c-8.648-2.371-16.525-1.869-22.909,2.346\r\n\t\tL165.896,260.4c-1.611,1.611-1.545,4.304,0.066,5.914c0.499,0.501,1.064,0.79,1.697,0.98c0.642,0.034,1.264,0.059,1.899,0.103\r\n\t\tc0.019-0.002,0.036-0.01,0.054-0.014c47.938,3.432,91.034,36.754,89.3,89.506c-0.016,0.505-0.029,1.007-0.054,1.516\r\n\t\tc0.123,0.848,0.5,1.664,1.149,2.315c1.595,1.593,4.168,1.605,5.781,0.044c0.018-0.018,0.037-0.027,0.055-0.044\r\n\t\tc0.063-0.063,0.106-0.137,0.164-0.2l50.457-57.342c4.216-6.374,4.72-14.24,2.355-22.875l154.169-175.047\r\n\t\tC484.939,90.308,480.592,73.308,467.638,60.356z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "165.887,260.409 165.896,260.4 165.888,260.407 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "165.887,260.409 165.896,260.4 165.888,260.407 \t" + }, + "children": [] + }] + }] + }] +}; +exports.paintbrush = paintbrush; \ No newline at end of file diff --git a/dist/ionicons/paintbucket.js b/dist/ionicons/paintbucket.js new file mode 100644 index 000000000..26adbe631 --- /dev/null +++ b/dist/ionicons/paintbucket.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.paintbucket = void 0; +var paintbucket = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M128,64l39.667,72.102L16,288l197.604,192l163.328-160l58.33-12.307L160,32L128,64z M325.131,288H104.857L215,177.863\r\n\t\tL325.131,288z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M128,64l39.667,72.102L16,288l197.604,192l163.328-160l58.33-12.307L160,32L128,64z M325.131,288H104.857L215,177.863\r\n\t\tL325.131,288z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M435.262,307.693c0,0-60.734,66.179-60.732,99.207c0,33.028,27.192,59.803,60.731,59.801\r\n\t\tc33.548,0.002,60.74-26.772,60.739-59.801C496.001,373.872,435.262,307.693,435.262,307.693z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M435.262,307.693c0,0-60.734,66.179-60.732,99.207c0,33.028,27.192,59.803,60.731,59.801\r\n\t\tc33.548,0.002,60.74-26.772,60.739-59.801C496.001,373.872,435.262,307.693,435.262,307.693z" + }, + "children": [] + }] + }] + }] +}; +exports.paintbucket = paintbucket; \ No newline at end of file diff --git a/dist/ionicons/paperAirplane.js b/dist/ionicons/paperAirplane.js new file mode 100644 index 000000000..befd74c11 --- /dev/null +++ b/dist/ionicons/paperAirplane.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.paperAirplane = void 0; +var paperAirplane = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "style", + "attribs": { + "type": "text/css" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "class": "st0", + "d": "M32,272l128,48l16,160l80-112l112,112L480,32L32,272z M350.7,417.4L256,320l128-176L192,297.8l-82.6-31\r\n\tl322-172.5L350.7,417.4z" + }, + "children": [] + }] +}; +exports.paperAirplane = paperAirplane; \ No newline at end of file diff --git a/dist/ionicons/paperclip.js b/dist/ionicons/paperclip.js new file mode 100644 index 000000000..af94aed81 --- /dev/null +++ b/dist/ionicons/paperclip.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.paperclip = void 0; +var paperclip = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M324.6,154.9c-6.3-0.1-11.4,5.1-11.4,11.6L313,361.3c-0.1,43.8-29.7,63.4-57.2,63.2c-27.5-0.3-57.1-20.4-57-64.1\r\n\tc0-33.5,0.2-167.7,0.3-234.8c0-15.4,6-27.4,16.8-33.7c10.6-6.2,24.4-6.1,35,0.3c10.8,6.5,16.7,18.6,16.7,34l-0.3,224.5\r\n\tc0,7.3-1.7,13.3-4.7,17.1c-1.9,2.4-4.4,3.8-6.9,3.8c-5.6-0.1-11.4-7.3-11.3-20.8c0,0,0.2-166.3,0.3-172.7c0-6.5-5.1-11.8-11.4-11.8\r\n\tc-6.3,0-11.4,5.2-11.4,11.7l-0.3,172.7c0,29,17.2,44.3,34.2,44.5c9.4,0.1,18.3-4.4,24.6-12.4c6.3-8,9.7-19,9.7-31.8l0.3-224.5\r\n\tc0-23.8-10.2-43.6-28.1-54.3c-17.5-10.6-40.3-10.8-57.9-0.5c-17.9,10.5-28.2,30.1-28.3,53.9c-0.1,67-0.2,201.2-0.3,234.8\r\n\tc-0.1,57.2,40.1,87.4,79.8,87.8c20.5,0.2,41.1-7.7,56.3-23.1c14.2-14.5,23.7-35.7,23.7-63.4l0.1-194.9\r\n\tC336,160.2,330.9,154.9,324.6,154.9z" + }, + "children": [] + }] +}; +exports.paperclip = paperclip; \ No newline at end of file diff --git a/dist/ionicons/pause.js b/dist/ionicons/pause.js new file mode 100644 index 000000000..2ca2ffa41 --- /dev/null +++ b/dist/ionicons/pause.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pause = void 0; +var pause = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M224,435.8V76.1c0-6.7-5.4-12.1-12.2-12.1h-71.6c-6.8,0-12.2,5.4-12.2,12.1v359.7c0,6.7,5.4,12.2,12.2,12.2h71.6\r\n\t\tC218.6,448,224,442.6,224,435.8z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M224,435.8V76.1c0-6.7-5.4-12.1-12.2-12.1h-71.6c-6.8,0-12.2,5.4-12.2,12.1v359.7c0,6.7,5.4,12.2,12.2,12.2h71.6\r\n\t\tC218.6,448,224,442.6,224,435.8z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M371.8,64h-71.6c-6.7,0-12.2,5.4-12.2,12.1v359.7c0,6.7,5.4,12.2,12.2,12.2h71.6c6.7,0,12.2-5.4,12.2-12.2V76.1\r\n\t\tC384,69.4,378.6,64,371.8,64z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M371.8,64h-71.6c-6.7,0-12.2,5.4-12.2,12.1v359.7c0,6.7,5.4,12.2,12.2,12.2h71.6c6.7,0,12.2-5.4,12.2-12.2V76.1\r\n\t\tC384,69.4,378.6,64,371.8,64z" + }, + "children": [] + }] + }] + }] +}; +exports.pause = pause; \ No newline at end of file diff --git a/dist/ionicons/person.js b/dist/ionicons/person.js new file mode 100644 index 000000000..176322611 --- /dev/null +++ b/dist/ionicons/person.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.person = void 0; +var person = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M448,448c0,0,0-26.4-2.2-40.2c-1.8-10.9-16.9-25.3-81.1-48.9c-63.2-23.2-59.3-11.9-59.3-54.6c0-27.7,14.1-11.6,23.1-64.2\r\n\tc3.5-20.7,6.3-6.9,13.9-40.1c4-17.4-2.7-18.7-1.9-27c0.8-8.3,1.6-15.7,3.1-32.7C345.4,119.3,325.9,64,256,64\r\n\tc-69.9,0-89.4,55.3-87.5,76.4c1.5,16.9,2.3,24.4,3.1,32.7c0.8,8.3-5.9,9.6-1.9,27c7.6,33.1,10.4,19.3,13.9,40.1\r\n\tc9,52.6,23.1,36.5,23.1,64.2c0,42.8,3.9,31.5-59.3,54.6c-64.2,23.5-79.4,38-81.1,48.9C64,421.6,64,448,64,448h192H448z" + }, + "children": [] + }] +}; +exports.person = person; \ No newline at end of file diff --git a/dist/ionicons/personAdd.js b/dist/ionicons/personAdd.js new file mode 100644 index 000000000..23dac797d --- /dev/null +++ b/dist/ionicons/personAdd.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.personAdd = void 0; +var personAdd = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "429,328 429,277 480,277 480,235 429,235 429,184 387,184 387,235 336,235 336,277 387,277 387,328 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "429,328 429,277 480,277 480,235 429,235 429,184 387,184 387,235 336,235 336,277 387,277 387,328 \t" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M416,448c0,0,0-26.4-2.2-40.2c-1.8-10.9-16.9-25.3-81.1-48.9c-63.2-23.2-59.3-11.9-59.3-54.6c0-27.7,14.1-11.6,23.1-64.2\r\n\t\tc3.5-20.7,6.3-6.9,13.9-40.1c4-17.4-2.7-18.7-1.9-27c0.8-8.3,1.6-15.7,3.1-32.7C313.4,119.3,293.9,64,224,64\r\n\t\tc-69.9,0-89.4,55.3-87.5,76.4c1.5,16.9,2.3,24.4,3.1,32.7c0.8,8.3-5.9,9.6-1.9,27c7.6,33.1,10.4,19.3,13.9,40.1\r\n\t\tc9,52.6,23.1,36.5,23.1,64.2c0,42.8,3.9,31.5-59.3,54.6c-64.2,23.5-79.4,38-81.1,48.9C32,421.6,32,448,32,448h192H416z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M416,448c0,0,0-26.4-2.2-40.2c-1.8-10.9-16.9-25.3-81.1-48.9c-63.2-23.2-59.3-11.9-59.3-54.6c0-27.7,14.1-11.6,23.1-64.2\r\n\t\tc3.5-20.7,6.3-6.9,13.9-40.1c4-17.4-2.7-18.7-1.9-27c0.8-8.3,1.6-15.7,3.1-32.7C313.4,119.3,293.9,64,224,64\r\n\t\tc-69.9,0-89.4,55.3-87.5,76.4c1.5,16.9,2.3,24.4,3.1,32.7c0.8,8.3-5.9,9.6-1.9,27c7.6,33.1,10.4,19.3,13.9,40.1\r\n\t\tc9,52.6,23.1,36.5,23.1,64.2c0,42.8,3.9,31.5-59.3,54.6c-64.2,23.5-79.4,38-81.1,48.9C32,421.6,32,448,32,448h192H416z" + }, + "children": [] + }] + }] + }] +}; +exports.personAdd = personAdd; \ No newline at end of file diff --git a/dist/ionicons/personStalker.js b/dist/ionicons/personStalker.js new file mode 100644 index 000000000..0e97b4c6c --- /dev/null +++ b/dist/ionicons/personStalker.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.personStalker = void 0; +var personStalker = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M425.3,324.8c-41.4-15.7-38.9-9.4-38.9-38.5c0-18.8,9.3-11.9,15.2-47.7c2.3-14.1,4.2-4.7,9.1-27.3\r\n\t\tc2.6-11.8-1.8-12.7-1.2-18.3c0.5-5.6,1-10.7,2-22.2c1.2-14.4-11.6-52-57.4-52c-45.8,0-58.6,37.6-57.4,52c0.9,11.6,1.5,16.6,2,22.2\r\n\t\tc0.5,5.6-3.8,6.5-1.2,18.3c4.9,22.6,6.8,13.1,9.1,27.3c5.9,35.8,15.1,29,15.1,47.7c0,13.4,3.1,19-14.9,27.5\r\n\t\tc5.4,1.9,11.7,4.2,19.3,7.1c54.4,20.7,53.1,40.8,54.5,50.3c1,6.5,1.5,58.3,1.7,76.8H480c0,0,0-80.5-1.5-89.9\r\n\t\tC477.4,350.7,467.5,340.9,425.3,324.8z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M425.3,324.8c-41.4-15.7-38.9-9.4-38.9-38.5c0-18.8,9.3-11.9,15.2-47.7c2.3-14.1,4.2-4.7,9.1-27.3\r\n\t\tc2.6-11.8-1.8-12.7-1.2-18.3c0.5-5.6,1-10.7,2-22.2c1.2-14.4-11.6-52-57.4-52c-45.8,0-58.6,37.6-57.4,52c0.9,11.6,1.5,16.6,2,22.2\r\n\t\tc0.5,5.6-3.8,6.5-1.2,18.3c4.9,22.6,6.8,13.1,9.1,27.3c5.9,35.8,15.1,29,15.1,47.7c0,13.4,3.1,19-14.9,27.5\r\n\t\tc5.4,1.9,11.7,4.2,19.3,7.1c54.4,20.7,53.1,40.8,54.5,50.3c1,6.5,1.5,58.3,1.7,76.8H480c0,0,0-80.5-1.5-89.9\r\n\t\tC477.4,350.7,467.5,340.9,425.3,324.8z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M357,448c0,0,0-14.1-0.2-30.4c-0.2-18.6-0.7-40-1.7-46.4c-1.5-9.5-14.3-22.2-68.6-42.9c-7.5-2.8-13.8-5.1-19.3-7.1\r\n\t\tc-33.3-11.8-30.9-15.7-30.9-48c0-24.3,12-8.5,19.6-54.6c3-18.2,5.4-6.1,11.7-35.2c3.4-15.2-2.3-16.4-1.6-23.7\r\n\t\tc0.7-7.3,1.4-13.8,2.6-28.7c1.6-18.5-14.9-67.1-74.1-67.1c-59.2,0-75.6,48.5-74.1,67.1c1.2,14.9,1.9,21.4,2.7,28.7\r\n\t\tc0.7,7.3-5,8.4-1.6,23.7c6.4,29.1,8.8,17,11.8,35.2c7.6,46.1,19.5,30.3,19.5,54.6c0,37.6,3.3,34.8-50.2,55.1\r\n\t\tc-54.3,20.7-67.1,33.4-68.6,42.9C32,383.3,32,448,32,448h162.5H357z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M357,448c0,0,0-14.1-0.2-30.4c-0.2-18.6-0.7-40-1.7-46.4c-1.5-9.5-14.3-22.2-68.6-42.9c-7.5-2.8-13.8-5.1-19.3-7.1\r\n\t\tc-33.3-11.8-30.9-15.7-30.9-48c0-24.3,12-8.5,19.6-54.6c3-18.2,5.4-6.1,11.7-35.2c3.4-15.2-2.3-16.4-1.6-23.7\r\n\t\tc0.7-7.3,1.4-13.8,2.6-28.7c1.6-18.5-14.9-67.1-74.1-67.1c-59.2,0-75.6,48.5-74.1,67.1c1.2,14.9,1.9,21.4,2.7,28.7\r\n\t\tc0.7,7.3-5,8.4-1.6,23.7c6.4,29.1,8.8,17,11.8,35.2c7.6,46.1,19.5,30.3,19.5,54.6c0,37.6,3.3,34.8-50.2,55.1\r\n\t\tc-54.3,20.7-67.1,33.4-68.6,42.9C32,383.3,32,448,32,448h162.5H357z" + }, + "children": [] + }] + }] + }] +}; +exports.personStalker = personStalker; \ No newline at end of file diff --git a/dist/ionicons/pieGraph.js b/dist/ionicons/pieGraph.js new file mode 100644 index 000000000..79b0dc45f --- /dev/null +++ b/dist/ionicons/pieGraph.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pieGraph = void 0; +var pieGraph = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M32.6,256h32H256V64.6v-32c-5-0.4-10.6-0.6-16-0.6C125.1,32,32,125.1,32,240C32,245.4,32.2,251,32.6,256z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M32.6,256h32H256V64.6v-32c-5-0.4-10.6-0.6-16-0.6C125.1,32,32,125.1,32,240C32,245.4,32.2,251,32.6,256z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M109.8,402.2C147.9,449.6,206.4,480,272,480c114.9,0,208-93.1,208-208c0-65.6-30.4-124.1-77.8-162.2\r\n\t\tC370.5,84.3,331,67.9,288,64.6V288H64.6C67.9,331,84.3,370.5,109.8,402.2z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M109.8,402.2C147.9,449.6,206.4,480,272,480c114.9,0,208-93.1,208-208c0-65.6-30.4-124.1-77.8-162.2\r\n\t\tC370.5,84.3,331,67.9,288,64.6V288H64.6C67.9,331,84.3,370.5,109.8,402.2z" + }, + "children": [] + }] + }] + }] +}; +exports.pieGraph = pieGraph; \ No newline at end of file diff --git a/dist/ionicons/pin.js b/dist/ionicons/pin.js new file mode 100644 index 000000000..c8b87afe5 --- /dev/null +++ b/dist/ionicons/pin.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pin = void 0; +var pin = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M331.8,228C331.8,228,331.8,228,331.8,228c-1.2-0.5-2.4-1-3.5-1.7c-7-4-12.2-10.9-13.9-19.2L295.9,89.4l-0.2-5.8\r\n\tc0-7.1,4.1-10.2,10-13l0,0c0.7-0.3,1.4-0.6,2.1-0.9c7.2-3.4,12.1-7.8,12.1-16.3c0-20.1-6.5-21.4-18.2-21.4h-91.3\r\n\tc-11.7,0-18.2,1.2-18.2,21.4c0,8.5,4.9,12.9,12.1,16.3c0.7,0.3,1.4,0.5,2.1,0.9c0,0,0,0,0,0c5.9,2.9,10,6,10,13l-0.2,5.8\r\n\tl-18.5,117.7c-1.7,8.3-6.9,15.2-13.9,19.2c-1.1,0.7-2.3,1.2-3.5,1.7c0,0,0,0,0,0c-19.7,10.2-36.2,30.8-36.2,54.7\r\n\tc0,15.9,3.5,21.3,15.2,21.3H240l12,176h8l12-176h80.8c11.7,0,15.2-4.7,15.2-21.3C368,258.8,351.5,238.2,331.8,228z" + }, + "children": [] + }] +}; +exports.pin = pin; \ No newline at end of file diff --git a/dist/ionicons/pinpoint.js b/dist/ionicons/pinpoint.js new file mode 100644 index 000000000..59ab1add3 --- /dev/null +++ b/dist/ionicons/pinpoint.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pinpoint = void 0; +var pinpoint = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,32C132.3,32,32,132.3,32,256c0,123.7,100.3,224,224,224c123.7,0,224-100.3,224-224C480,132.3,379.7,32,256,32z\r\n\t M391.8,391.8c-32.5,32.5-74.6,51.9-119.8,55.6L264,384h-16l-7.9,63.3c-45.3-3.7-87.4-23.1-119.8-55.6\r\n\tc-32.5-32.5-51.9-74.6-55.6-119.8L128,264v-16l-63.3-7.9c3.7-45.3,23.1-87.4,55.6-119.8c32.5-32.5,74.6-51.9,119.8-55.6L248,128h16\r\n\tl7.9-63.3c45.3,3.7,87.4,23.1,119.8,55.6c32.5,32.5,51.9,74.6,55.6,119.8L384,248v16l63.3,7.9C443.6,317.2,424.2,359.3,391.8,391.8z\r\n\t" + }, + "children": [] + }] +}; +exports.pinpoint = pinpoint; \ No newline at end of file diff --git a/dist/ionicons/pizza.js b/dist/ionicons/pizza.js new file mode 100644 index 000000000..5b5921a85 --- /dev/null +++ b/dist/ionicons/pizza.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pizza = void 0; +var pizza = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M394.619,130.445c-42.658-18.924-89.266-28.472-138.649-28.425c-49.373-0.047-99.27,10.262-138.641,27.979\r\n\t\tc-7.396,3.312-14.004,8.957-9.296,19.479S255.941,480,255.941,480l147.621-329.874C406.452,143.25,404.318,134.748,394.619,130.445\r\n\t\tz M191.983,192.015c-17.67,0-31.995-14.323-31.995-31.993c0-17.669,14.325-31.992,31.995-31.992\r\n\t\tc17.671,0,31.996,14.323,31.996,31.992C223.979,177.691,209.654,192.015,191.983,192.015z M255.975,338.981\r\n\t\tc-17.671,0-31.995-14.323-31.995-31.993s14.324-31.992,31.995-31.992c17.67,0,31.995,14.322,31.995,31.992\r\n\t\tS273.645,338.981,255.975,338.981z M319.965,224.007c-17.67,0-31.995-14.322-31.995-31.992s14.325-31.993,31.995-31.993\r\n\t\tc17.671,0,31.996,14.323,31.996,31.993S337.636,224.007,319.965,224.007z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M394.619,130.445c-42.658-18.924-89.266-28.472-138.649-28.425c-49.373-0.047-99.27,10.262-138.641,27.979\r\n\t\tc-7.396,3.312-14.004,8.957-9.296,19.479S255.941,480,255.941,480l147.621-329.874C406.452,143.25,404.318,134.748,394.619,130.445\r\n\t\tz M191.983,192.015c-17.67,0-31.995-14.323-31.995-31.993c0-17.669,14.325-31.992,31.995-31.992\r\n\t\tc17.671,0,31.996,14.323,31.996,31.992C223.979,177.691,209.654,192.015,191.983,192.015z M255.975,338.981\r\n\t\tc-17.671,0-31.995-14.323-31.995-31.993s14.324-31.992,31.995-31.992c17.67,0,31.995,14.322,31.995,31.992\r\n\t\tS273.645,338.981,255.975,338.981z M319.965,224.007c-17.67,0-31.995-14.322-31.995-31.992s14.325-31.993,31.995-31.993\r\n\t\tc17.671,0,31.996,14.323,31.996,31.993S337.636,224.007,319.965,224.007z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M421.79,66c-47.808-20.603-106.867-33.977-165.811-34c-58.931,0-116.944,12.136-165.82,33.446\r\n\t\tC85.83,67.334,80,71.016,80,79.227c0,2.523,0.907,4.922,0.907,4.922l7.98,19.194c2.531,4.865,7.944,8.18,13.798,8.18\r\n\t\tc1.645,0,3.936-0.331,6.65-1.476c44.9-18.929,94.471-29.588,146.644-29.564c52.175-0.023,105.63,11.64,146.634,29.561\r\n\t\tc3.296,1.44,5.173,1.472,6.663,1.472c6.009,0,11.158-3.274,13.727-8.053l8.04-19.342c0.577-1.558,0.957-3.287,0.957-4.768\r\n\t\tC432,72,427.614,68.51,421.79,66z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M421.79,66c-47.808-20.603-106.867-33.977-165.811-34c-58.931,0-116.944,12.136-165.82,33.446\r\n\t\tC85.83,67.334,80,71.016,80,79.227c0,2.523,0.907,4.922,0.907,4.922l7.98,19.194c2.531,4.865,7.944,8.18,13.798,8.18\r\n\t\tc1.645,0,3.936-0.331,6.65-1.476c44.9-18.929,94.471-29.588,146.644-29.564c52.175-0.023,105.63,11.64,146.634,29.561\r\n\t\tc3.296,1.44,5.173,1.472,6.663,1.472c6.009,0,11.158-3.274,13.727-8.053l8.04-19.342c0.577-1.558,0.957-3.287,0.957-4.768\r\n\t\tC432,72,427.614,68.51,421.79,66z" + }, + "children": [] + }] + }] + }] +}; +exports.pizza = pizza; \ No newline at end of file diff --git a/dist/ionicons/plane.js b/dist/ionicons/plane.js new file mode 100644 index 000000000..66510764b --- /dev/null +++ b/dist/ionicons/plane.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.plane = void 0; +var plane = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M281.7,311.9c0.4-6.9,8.3-4.5,8.3-4.5l62,12.6l128,48.7c0-24-3.8-26.5-9.4-30.7L288,207c0,0-4.9-60-4.9-112.9\r\n\tc0-24.5-11.8-78.1-27.1-78.1s-27.1,54.4-27.1,78.1c0,50.2-4.9,112.9-4.9,112.9L41.4,338c-7.1,5-9.4,7.7-9.4,30.7L160,320l61.9-12.6\r\n\tc0,0,7.9-2.4,8.3,4.5c0.4,6.9-1.2,69.1,5.9,102.1c0.9,4.4-2.5,4.7-4.8,7.4l-51.9,32.8c-1.7,1.9-2.5,7.3-2.5,7.3l-1,18.5l68-16l12,32\r\n\tl12-32l68,16l-1-18.5c0.1,0-0.7-5.4-2.4-7.3l-51.9-32.8c-2.3-2.7-5.7-3-4.8-7.4C282.7,381,281.3,318.8,281.7,311.9z" + }, + "children": [] + }] +}; +exports.plane = plane; \ No newline at end of file diff --git a/dist/ionicons/planet.js b/dist/ionicons/planet.js new file mode 100644 index 000000000..b1cb4ba7b --- /dev/null +++ b/dist/ionicons/planet.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.planet = void 0; +var planet = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M96.298,265.705C101.315,349.55,170.887,416,255.988,416c37.957,0,72.818-13.227,100.25-35.311\r\n\t\tC317.23,369.554,274,353.922,229.562,334.617C180.731,313.404,134.957,289.677,96.298,265.705z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M96.298,265.705C101.315,349.55,170.887,416,255.988,416c37.957,0,72.818-13.227,100.25-35.311\r\n\t\tC317.23,369.554,274,353.922,229.562,334.617C180.731,313.404,134.957,289.677,96.298,265.705z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M107.381,196.629c39.911,27.11,92.07,55.13,147.679,79.287c43.591,18.938,87.113,34.555,125.859,45.164\r\n\t\tc6.496,1.779,12.834,3.406,18.988,4.883c1.685-3.462,3.249-6.994,4.688-10.591c7.341-18.358,11.386-38.393,11.386-59.372\r\n\t\tc0-3.26-0.109-6.493-0.301-9.705C410.661,162.45,341.09,96,255.988,96c-37.956,0-72.817,13.227-100.248,35.311\r\n\t\tc-18.296,14.729-33.284,33.398-43.67,54.726C110.383,189.499,108.819,193.032,107.381,196.629z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M107.381,196.629c39.911,27.11,92.07,55.13,147.679,79.287c43.591,18.938,87.113,34.555,125.859,45.164\r\n\t\tc6.496,1.779,12.834,3.406,18.988,4.883c1.685-3.462,3.249-6.994,4.688-10.591c7.341-18.358,11.386-38.393,11.386-59.372\r\n\t\tc0-3.26-0.109-6.493-0.301-9.705C410.661,162.45,341.09,96,255.988,96c-37.956,0-72.817,13.227-100.248,35.311\r\n\t\tc-18.296,14.729-33.284,33.398-43.67,54.726C110.383,189.499,108.819,193.032,107.381,196.629z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M429.667,284.531c-1.256,11.562-2.377,13.627-5.891,24.695c16.878,12.039,31.032,23.706,41.137,33.938\r\n\t\tc3.285,3.328,5.875,6.225,7.912,8.702c-1.684,0.084-3.557,0.133-5.631,0.133c-21.886,0-54.026-5.5-90.501-15.488\r\n\t\tc-39.467-10.806-83.73-26.685-128.008-45.92c-58.931-25.6-114.158-55.541-155.51-84.307c-19.081-13.275-35.027-26.226-46.113-37.45\r\n\t\tc-3.285-3.328-5.875-6.225-7.912-8.702c1.683-0.084,3.556-0.133,5.632-0.133c15.308,0,35.637,2.694,58.952,7.729\r\n\t\tc5.825-10.004,6.979-12.701,14.663-21.409C92.663,137,66.625,130.522,44.784,128c-24.403-2.818-40.34,5.521-43.984,17.14\r\n\t\tC-10.274,180.457,95,258.718,235.936,319.942C330.498,361.022,417.104,384,467.194,384c24.565,0,40.338-5.521,43.982-17.141\r\n\t\tC517.516,346.643,486.965,320,429.667,284.531z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M429.667,284.531c-1.256,11.562-2.377,13.627-5.891,24.695c16.878,12.039,31.032,23.706,41.137,33.938\r\n\t\tc3.285,3.328,5.875,6.225,7.912,8.702c-1.684,0.084-3.557,0.133-5.631,0.133c-21.886,0-54.026-5.5-90.501-15.488\r\n\t\tc-39.467-10.806-83.73-26.685-128.008-45.92c-58.931-25.6-114.158-55.541-155.51-84.307c-19.081-13.275-35.027-26.226-46.113-37.45\r\n\t\tc-3.285-3.328-5.875-6.225-7.912-8.702c1.683-0.084,3.556-0.133,5.632-0.133c15.308,0,35.637,2.694,58.952,7.729\r\n\t\tc5.825-10.004,6.979-12.701,14.663-21.409C92.663,137,66.625,130.522,44.784,128c-24.403-2.818-40.34,5.521-43.984,17.14\r\n\t\tC-10.274,180.457,95,258.718,235.936,319.942C330.498,361.022,417.104,384,467.194,384c24.565,0,40.338-5.521,43.982-17.141\r\n\t\tC517.516,346.643,486.965,320,429.667,284.531z" + }, + "children": [] + }] + }] + }] +}; +exports.planet = planet; \ No newline at end of file diff --git a/dist/ionicons/play.js b/dist/ionicons/play.js new file mode 100644 index 000000000..efbe6adfc --- /dev/null +++ b/dist/ionicons/play.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.play = void 0; +var play = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M405.2,232.9L126.8,67.2c-3.4-2-6.9-3.2-10.9-3.2c-10.9,0-19.8,9-19.8,20H96v344h0.1c0,11,8.9,20,19.8,20\r\n\tc4.1,0,7.5-1.4,11.2-3.4l278.1-165.5c6.6-5.5,10.8-13.8,10.8-23.1C416,246.7,411.8,238.5,405.2,232.9z" + }, + "children": [] + }] +}; +exports.play = play; \ No newline at end of file diff --git a/dist/ionicons/playstation.js b/dist/ionicons/playstation.js new file mode 100644 index 000000000..27474ff56 --- /dev/null +++ b/dist/ionicons/playstation.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.playstation = void 0; +var playstation = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "style", + "attribs": { + "type": "text/css" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "class": "st0", + "d": "M399.8,203c-0.8-17.1-3.3-34.5-10.8-50.1c-4.1-8.6-9.7-16.5-16.5-23.2c-6.3-6.4-13.6-11.7-21.3-16.3\r\n\t\tc-17.1-10.2-37.5-17-84.4-31S192,64,192,64v358.3l79.9,25.7c0,0,0.1-198.8,0.1-299.5v-3.8c0-9.3,7.5-16.8,16.1-16.8h0.5\r\n\t\tc8.5,0,15.5,7.5,15.5,16.8v2.2v131.1c11,5.3,29.2,9.3,41.8,9.1c8.3,0.2,16.7-1.7,24-5.7c7.6-4.1,13.9-10.4,18.4-17.8\r\n\t\tc5.1-8.3,8.2-17.8,9.9-27.3C400.1,225.5,400.2,214.2,399.8,203z" + }, + "children": [{ + "name": "path", + "attribs": { + "class": "st0", + "d": "M399.8,203c-0.8-17.1-3.3-34.5-10.8-50.1c-4.1-8.6-9.7-16.5-16.5-23.2c-6.3-6.4-13.6-11.7-21.3-16.3\r\n\t\tc-17.1-10.2-37.5-17-84.4-31S192,64,192,64v358.3l79.9,25.7c0,0,0.1-198.8,0.1-299.5v-3.8c0-9.3,7.5-16.8,16.1-16.8h0.5\r\n\t\tc8.5,0,15.5,7.5,15.5,16.8v2.2v131.1c11,5.3,29.2,9.3,41.8,9.1c8.3,0.2,16.7-1.7,24-5.7c7.6-4.1,13.9-10.4,18.4-17.8\r\n\t\tc5.1-8.3,8.2-17.8,9.9-27.3C400.1,225.5,400.2,214.2,399.8,203z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "class": "st0", + "d": "M86.7,357.8c27.4-9.8,89.3-29.5,89.3-29.5v-47.2c0,0-76.5,24.8-111.3,37.1c-8.6,3.1-17.3,5.9-25.7,9.5\r\n\t\tc-9.8,4.1-19.4,8.7-28.1,14.8c-3.8,2.6-7.2,5.9-9.2,10.1c-2,4.2-2.2,9.2-0.5,13.6c2,5.1,5.8,9.3,10.1,12.6\r\n\t\tc7.8,5.9,17.1,9.5,26.4,12.2c28.4,9.4,58.4,14,88.4,13.3c14.5-0.2,36-1.9,50-4.4v-42c0,0-11,2.5-41.3,12.5c-4.6,1.5-9.2,3.3-14,4.3\r\n\t\tc-7.1,1.6-14.4,2.1-21.6,2.2c-6.5-0.3-13.2-0.7-19.3-3.1c-2.2-1-4.6-2.2-5.5-4.6c-0.8-2,0.3-4,1.7-5.4\r\n\t\tC78.9,360.9,82.9,359.3,86.7,357.8z" + }, + "children": [{ + "name": "path", + "attribs": { + "class": "st0", + "d": "M86.7,357.8c27.4-9.8,89.3-29.5,89.3-29.5v-47.2c0,0-76.5,24.8-111.3,37.1c-8.6,3.1-17.3,5.9-25.7,9.5\r\n\t\tc-9.8,4.1-19.4,8.7-28.1,14.8c-3.8,2.6-7.2,5.9-9.2,10.1c-2,4.2-2.2,9.2-0.5,13.6c2,5.1,5.8,9.3,10.1,12.6\r\n\t\tc7.8,5.9,17.1,9.5,26.4,12.2c28.4,9.4,58.4,14,88.4,13.3c14.5-0.2,36-1.9,50-4.4v-42c0,0-11,2.5-41.3,12.5c-4.6,1.5-9.2,3.3-14,4.3\r\n\t\tc-7.1,1.6-14.4,2.1-21.6,2.2c-6.5-0.3-13.2-0.7-19.3-3.1c-2.2-1-4.6-2.2-5.5-4.6c-0.8-2,0.3-4,1.7-5.4\r\n\t\tC78.9,360.9,82.9,359.3,86.7,357.8z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "class": "st0", + "d": "M512,345.9c-0.1-6-3.7-11.2-7.9-15c-7.1-6.3-15.9-10.3-24.7-13.5c-5.5-1.9-9.3-3.3-14.7-5\r\n\t\tc-25.2-8.2-51.9-11.2-78.3-11.3c-8,0.3-23.1,0.5-31,1.4c-21.9,2.5-67.3,15.4-67.3,15.4v48.8c0,0,67.5-21.6,96.5-31.8\r\n\t\tc9.7-3.3,20.1-4.6,30.3-4.6c6.5,0.2,13.2,0.7,19.4,3.1c2.2,0.9,4.5,2.2,5.5,4.5c0.9,2.6-0.9,5-2.9,6.5c-4.7,3.8-10.7,5.3-16.2,7.4\r\n\t\tC379.7,366.3,288,396.5,288,396.5v47c0,0,117.2-39.6,170.8-58.8c8.9-3.3,17.9-6.1,26.4-10.4c7.9-4,15.8-8.6,21.8-15.3\r\n\t\tC510.1,355.4,512,351,512,345.9z" + }, + "children": [{ + "name": "path", + "attribs": { + "class": "st0", + "d": "M512,345.9c-0.1-6-3.7-11.2-7.9-15c-7.1-6.3-15.9-10.3-24.7-13.5c-5.5-1.9-9.3-3.3-14.7-5\r\n\t\tc-25.2-8.2-51.9-11.2-78.3-11.3c-8,0.3-23.1,0.5-31,1.4c-21.9,2.5-67.3,15.4-67.3,15.4v48.8c0,0,67.5-21.6,96.5-31.8\r\n\t\tc9.7-3.3,20.1-4.6,30.3-4.6c6.5,0.2,13.2,0.7,19.4,3.1c2.2,0.9,4.5,2.2,5.5,4.5c0.9,2.6-0.9,5-2.9,6.5c-4.7,3.8-10.7,5.3-16.2,7.4\r\n\t\tC379.7,366.3,288,396.5,288,396.5v47c0,0,117.2-39.6,170.8-58.8c8.9-3.3,17.9-6.1,26.4-10.4c7.9-4,15.8-8.6,21.8-15.3\r\n\t\tC510.1,355.4,512,351,512,345.9z" + }, + "children": [] + }] + }] + }] +}; +exports.playstation = playstation; \ No newline at end of file diff --git a/dist/ionicons/plus.js b/dist/ionicons/plus.js new file mode 100644 index 000000000..129fae190 --- /dev/null +++ b/dist/ionicons/plus.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.plus = void 0; +var plus = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "polygon", + "attribs": { + "points": "448,224 288,224 288,64 224,64 224,224 64,224 64,288 224,288 224,448 288,448 288,288 448,288 " + }, + "children": [] + }] +}; +exports.plus = plus; \ No newline at end of file diff --git a/dist/ionicons/plusCircled.js b/dist/ionicons/plusCircled.js new file mode 100644 index 000000000..8bad8ebbd --- /dev/null +++ b/dist/ionicons/plusCircled.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.plusCircled = void 0; +var plusCircled = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,32C132.3,32,32,132.3,32,256s100.3,224,224,224s224-100.3,224-224S379.7,32,256,32z M384,272H272v112h-32V272H128v-32\r\n\t\th112V128h32v112h112V272z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,32C132.3,32,32,132.3,32,256s100.3,224,224,224s224-100.3,224-224S379.7,32,256,32z M384,272H272v112h-32V272H128v-32\r\n\t\th112V128h32v112h112V272z" + }, + "children": [] + }] + }] + }] +}; +exports.plusCircled = plusCircled; \ No newline at end of file diff --git a/dist/ionicons/plusRound.js b/dist/ionicons/plusRound.js new file mode 100644 index 000000000..15e94a6db --- /dev/null +++ b/dist/ionicons/plusRound.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.plusRound = void 0; +var plusRound = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M417.4,224H288V94.6c0-16.9-14.3-30.6-32-30.6c-17.7,0-32,13.7-32,30.6V224H94.6C77.7,224,64,238.3,64,256\r\n\tc0,17.7,13.7,32,30.6,32H224v129.4c0,16.9,14.3,30.6,32,30.6c17.7,0,32-13.7,32-30.6V288h129.4c16.9,0,30.6-14.3,30.6-32\r\n\tC448,238.3,434.3,224,417.4,224z" + }, + "children": [] + }] +}; +exports.plusRound = plusRound; \ No newline at end of file diff --git a/dist/ionicons/podium.js b/dist/ionicons/podium.js new file mode 100644 index 000000000..bf53d3fd3 --- /dev/null +++ b/dist/ionicons/podium.js @@ -0,0 +1,69 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.podium = void 0; +var podium = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "32", + "y": "256", + "width": "128", + "height": "192" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "32", + "y": "256", + "width": "128", + "height": "192" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "192", + "y": "160", + "width": "128", + "height": "288" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "192", + "y": "160", + "width": "128", + "height": "288" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "352", + "y": "320", + "width": "128", + "height": "128" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "352", + "y": "320", + "width": "128", + "height": "128" + }, + "children": [] + }] + }] + }] +}; +exports.podium = podium; \ No newline at end of file diff --git a/dist/ionicons/pound.js b/dist/ionicons/pound.js new file mode 100644 index 000000000..68ba2efad --- /dev/null +++ b/dist/ionicons/pound.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pound = void 0; +var pound = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M125.2,352.3H32v-54.6h101.2l13.1-83.3H47v-54.6h107.2L176,32h63.9l-21.8,127.7h105.6L345.5,32h63.1l-21.8,127.7H480v54.6\r\n\t\tH378.1l-12.3,83.3H465v54.6H358.5L336,480h-63.1l21.8-127.7H188.3L166.5,480h-63.1L125.2,352.3z M209.4,214.3L197,297.7h105.6\r\n\t\tl12.3-83.3H209.4z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M125.2,352.3H32v-54.6h101.2l13.1-83.3H47v-54.6h107.2L176,32h63.9l-21.8,127.7h105.6L345.5,32h63.1l-21.8,127.7H480v54.6\r\n\t\tH378.1l-12.3,83.3H465v54.6H358.5L336,480h-63.1l21.8-127.7H188.3L166.5,480h-63.1L125.2,352.3z M209.4,214.3L197,297.7h105.6\r\n\t\tl12.3-83.3H209.4z" + }, + "children": [] + }] + }] + }] +}; +exports.pound = pound; \ No newline at end of file diff --git a/dist/ionicons/power.js b/dist/ionicons/power.js new file mode 100644 index 000000000..b1074bb21 --- /dev/null +++ b/dist/ionicons/power.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.power = void 0; +var power = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,256c-17.7,0-32-14.3-32-32V64c0-17.7,14.3-32,32-32s32,14.3,32,32v160C288,241.7,273.7,256,256,256z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,256c-17.7,0-32-14.3-32-32V64c0-17.7,14.3-32,32-32s32,14.3,32,32v160C288,241.7,273.7,256,256,256z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M379,68.8L379,68.8c-5-3-10.8-4.8-17-4.8c-17.7,0-32,14.3-32,32c0,6.2,1.8,12,4.8,16.9c2,3.2,4.6,6.1,7.6,8.4\r\n\t\tc1.2,0.9,2.4,1.7,3.7,2.5c8.1,5.6,15.8,11.9,23,19.1C399.4,173.1,416,213.3,416,256c0,42.7-16.6,82.9-46.9,113.1\r\n\t\tC338.9,399.4,298.7,416,256,416c-42.7,0-82.9-16.6-113.1-46.9C112.6,338.9,96,298.7,96,256c0-42.7,16.6-82.9,46.9-113.1\r\n\t\tc7.1-7.1,14.8-13.5,22.9-19c1.4-0.8,2.6-1.6,3.9-2.6c3-2.3,5.5-5.1,7.5-8.3c3.1-4.9,4.8-10.7,4.8-16.9c0-17.7-14.3-32-32-32\r\n\t\tc-6.2,0-12,1.8-16.9,4.8l-0.1-0.1C72.2,108.8,32,177.7,32,256c0,123.7,100.3,224,224,224c123.7,0,224-100.3,224-224\r\n\t\tC480,177.7,439.8,108.8,379,68.8z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M379,68.8L379,68.8c-5-3-10.8-4.8-17-4.8c-17.7,0-32,14.3-32,32c0,6.2,1.8,12,4.8,16.9c2,3.2,4.6,6.1,7.6,8.4\r\n\t\tc1.2,0.9,2.4,1.7,3.7,2.5c8.1,5.6,15.8,11.9,23,19.1C399.4,173.1,416,213.3,416,256c0,42.7-16.6,82.9-46.9,113.1\r\n\t\tC338.9,399.4,298.7,416,256,416c-42.7,0-82.9-16.6-113.1-46.9C112.6,338.9,96,298.7,96,256c0-42.7,16.6-82.9,46.9-113.1\r\n\t\tc7.1-7.1,14.8-13.5,22.9-19c1.4-0.8,2.6-1.6,3.9-2.6c3-2.3,5.5-5.1,7.5-8.3c3.1-4.9,4.8-10.7,4.8-16.9c0-17.7-14.3-32-32-32\r\n\t\tc-6.2,0-12,1.8-16.9,4.8l-0.1-0.1C72.2,108.8,32,177.7,32,256c0,123.7,100.3,224,224,224c123.7,0,224-100.3,224-224\r\n\t\tC480,177.7,439.8,108.8,379,68.8z" + }, + "children": [] + }] + }] + }] +}; +exports.power = power; \ No newline at end of file diff --git a/dist/ionicons/pricetag.js b/dist/ionicons/pricetag.js new file mode 100644 index 000000000..100147208 --- /dev/null +++ b/dist/ionicons/pricetag.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pricetag = void 0; +var pricetag = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M471,261.4L471,261.4C471,261.4,471,261.4,471,261.4L260.9,49.8c0,0,0,0,0,0l-1.5-1.5c0,0-0.4,0-0.4,0\r\n\t\tc-8.3-7.9-17.9-12-29.9-12.3v0l-99.7-3.7l-4.4-0.2c-11.2,0.2-22.2,4.5-30.7,13.1L45.1,94.3c-9,9-13.1,20.9-13.1,32.7c0,0,0,0,0,0.1\r\n\t\tl0.3,4.2l6.7,97.3c0,0.1,0,0.2,0,0.2v1.9c0,0,0,0,0,0c1,8.7,4.5,17.3,10.4,24.4l5.5,5.4l206.3,208.8l3.1,3.1\r\n\t\tc11.9,10.5,30,10,41.3-1.4l165.4-166.6C482.8,292.6,483,273.3,471,261.4z M144,192c-26.5,0-48-21.5-48-48s21.5-48,48-48\r\n\t\ts48,21.5,48,48S170.5,192,144,192z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M471,261.4L471,261.4C471,261.4,471,261.4,471,261.4L260.9,49.8c0,0,0,0,0,0l-1.5-1.5c0,0-0.4,0-0.4,0\r\n\t\tc-8.3-7.9-17.9-12-29.9-12.3v0l-99.7-3.7l-4.4-0.2c-11.2,0.2-22.2,4.5-30.7,13.1L45.1,94.3c-9,9-13.1,20.9-13.1,32.7c0,0,0,0,0,0.1\r\n\t\tl0.3,4.2l6.7,97.3c0,0.1,0,0.2,0,0.2v1.9c0,0,0,0,0,0c1,8.7,4.5,17.3,10.4,24.4l5.5,5.4l206.3,208.8l3.1,3.1\r\n\t\tc11.9,10.5,30,10,41.3-1.4l165.4-166.6C482.8,292.6,483,273.3,471,261.4z M144,192c-26.5,0-48-21.5-48-48s21.5-48,48-48\r\n\t\ts48,21.5,48,48S170.5,192,144,192z" + }, + "children": [] + }] + }] + }] +}; +exports.pricetag = pricetag; \ No newline at end of file diff --git a/dist/ionicons/pricetags.js b/dist/ionicons/pricetags.js new file mode 100644 index 000000000..90e8ea28a --- /dev/null +++ b/dist/ionicons/pricetags.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pricetags = void 0; +var pricetags = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M472,239.2L472,239.2C472,239.2,471.9,239.2,472,239.2L282.1,48.1c0,0,0,0,0,0l-1.4-1.4c0,0-0.5,0-0.5,0\r\n\t\tc-7.5-7.2-16.1-10.9-27.1-11.1v0l-89.9-3.3l-3.9-0.1c-10.1,0.1-20,4.1-27.7,11.8l-27.1,27.2c7.4-6.6,16.6-10,26-10.1l3.8,0.1\r\n\t\tl89.8,3.3v0c11,0.2,19.7,3.9,27.2,11.1c0,0,0.4,0,0.5,0l1.4,1.4c0,0,0,0,0,0L443,268.1c0,0,0,0,0,0v0c10,10.8,10.7,28.2,0,38.9\r\n\t\tl29-28.9C482.6,267.4,482,250,472,239.2z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M472,239.2L472,239.2C472,239.2,471.9,239.2,472,239.2L282.1,48.1c0,0,0,0,0,0l-1.4-1.4c0,0-0.5,0-0.5,0\r\n\t\tc-7.5-7.2-16.1-10.9-27.1-11.1v0l-89.9-3.3l-3.9-0.1c-10.1,0.1-20,4.1-27.7,11.8l-27.1,27.2c7.4-6.6,16.6-10,26-10.1l3.8,0.1\r\n\t\tl89.8,3.3v0c11,0.2,19.7,3.9,27.2,11.1c0,0,0.4,0,0.5,0l1.4,1.4c0,0,0,0,0,0L443,268.1c0,0,0,0,0,0v0c10,10.8,10.7,28.2,0,38.9\r\n\t\tl29-28.9C482.6,267.4,482,250,472,239.2z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M428,282.5c0,0,0.3,0,0.3,0L238.6,91.4c0,0,0,0,0,0l-1.3-1.4c0,0-0.3,0-0.3,0c-7.5-7.2-15.9-10.9-26.9-11.1v0l-90.1-3.3\r\n\t\tl-4-0.1c-9.2,0.1-18.2,3.4-25.6,9.8c-0.3,0.3-0.7,0.6-1,0.9c-0.4,0.4-0.8,0.8-1.2,1.2l-44.3,44.5c-8.1,8.1-11.9,18.9-11.9,29.5\r\n\t\tc0,0,0,0,0,0.1l0.1,3.8l5.9,87.9c0,0.1,0,0.1,0,0.2v1.7c0,0,0,0,0,0c1,7.9,4.2,15.6,9.6,22l5.1,4.9L239,470.4l2.8,2.8\r\n\t\tc10.7,9.4,27.1,9,37.3-1.3l13.1-13.2c0.5-0.4,0.9-0.8,1.4-1.3l26.9-27c-0.2,0.1-0.3,0.2-0.5,0.4l108.3-109.3\r\n\t\tC438.9,310.8,439,293.3,428,282.5L428,282.5z M110.6,139.5c6.6-4,14.3-6.3,22.6-6.3c23.9,0,43.4,19.4,43.4,43.4\r\n\t\tc0,8.3-2.3,16-6.3,22.6c-7.6,12.5-21.3,20.8-37,20.8c-23.9,0-43.4-19.4-43.4-43.4C89.8,160.8,98.1,147.1,110.6,139.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M428,282.5c0,0,0.3,0,0.3,0L238.6,91.4c0,0,0,0,0,0l-1.3-1.4c0,0-0.3,0-0.3,0c-7.5-7.2-15.9-10.9-26.9-11.1v0l-90.1-3.3\r\n\t\tl-4-0.1c-9.2,0.1-18.2,3.4-25.6,9.8c-0.3,0.3-0.7,0.6-1,0.9c-0.4,0.4-0.8,0.8-1.2,1.2l-44.3,44.5c-8.1,8.1-11.9,18.9-11.9,29.5\r\n\t\tc0,0,0,0,0,0.1l0.1,3.8l5.9,87.9c0,0.1,0,0.1,0,0.2v1.7c0,0,0,0,0,0c1,7.9,4.2,15.6,9.6,22l5.1,4.9L239,470.4l2.8,2.8\r\n\t\tc10.7,9.4,27.1,9,37.3-1.3l13.1-13.2c0.5-0.4,0.9-0.8,1.4-1.3l26.9-27c-0.2,0.1-0.3,0.2-0.5,0.4l108.3-109.3\r\n\t\tC438.9,310.8,439,293.3,428,282.5L428,282.5z M110.6,139.5c6.6-4,14.3-6.3,22.6-6.3c23.9,0,43.4,19.4,43.4,43.4\r\n\t\tc0,8.3-2.3,16-6.3,22.6c-7.6,12.5-21.3,20.8-37,20.8c-23.9,0-43.4-19.4-43.4-43.4C89.8,160.8,98.1,147.1,110.6,139.5z" + }, + "children": [] + }] + }] + }] +}; +exports.pricetags = pricetags; \ No newline at end of file diff --git a/dist/ionicons/printer.js b/dist/ionicons/printer.js new file mode 100644 index 000000000..585784e0a --- /dev/null +++ b/dist/ionicons/printer.js @@ -0,0 +1,81 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.printer = void 0; +var printer = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M423.8,128H384V64H128v64H88.2C60.3,128,32,144.9,32,182.6v123.8c0,38,28.3,61.6,56.2,61.6c0,0,30.4,0,39.8,0v112h5h11h224\r\n\t\th8h8V368c10.3,0,39.8,0,39.8,0c27.9,0,56.2-22.6,56.2-53.6V182.6C480,146.9,451.8,128,423.8,128z M368,464H144V288h224V464z\r\n\t\t M368,128H144V80h224V128z M416,192h-17v-16h17V192z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M423.8,128H384V64H128v64H88.2C60.3,128,32,144.9,32,182.6v123.8c0,38,28.3,61.6,56.2,61.6c0,0,30.4,0,39.8,0v112h5h11h224\r\n\t\th8h8V368c10.3,0,39.8,0,39.8,0c27.9,0,56.2-22.6,56.2-53.6V182.6C480,146.9,451.8,128,423.8,128z M368,464H144V288h224V464z\r\n\t\t M368,128H144V80h224V128z M416,192h-17v-16h17V192z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "160", + "y": "320", + "width": "192", + "height": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "160", + "y": "320", + "width": "192", + "height": "16" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "160", + "y": "368", + "width": "192", + "height": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "160", + "y": "368", + "width": "192", + "height": "16" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "160", + "y": "416", + "width": "192", + "height": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "160", + "y": "416", + "width": "192", + "height": "16" + }, + "children": [] + }] + }] + }] +}; +exports.printer = printer; \ No newline at end of file diff --git a/dist/ionicons/pullRequest.js b/dist/ionicons/pullRequest.js new file mode 100644 index 000000000..cf602a6c1 --- /dev/null +++ b/dist/ionicons/pullRequest.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pullRequest = void 0; +var pullRequest = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M128,64c-35.29,0-64,28.71-64,64c0,23.637,12.89,44.307,32,55.391v177.219C76.89,371.693,64,392.363,64,416\r\n\t\tc0,35.29,28.71,64,64,64s64-28.71,64-64c0-23.637-12.89-44.307-32-55.391V183.391c19.11-11.084,32-31.754,32-55.391\r\n\t\tC192,92.71,163.29,64,128,64z M128,448c-17.673,0-32-14.327-32-32s14.327-32,32-32s32,14.327,32,32S145.673,448,128,448z M128,160\r\n\t\tc-17.673,0-32-14.327-32-32s14.327-32,32-32s32,14.327,32,32S145.673,160,128,160z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M128,64c-35.29,0-64,28.71-64,64c0,23.637,12.89,44.307,32,55.391v177.219C76.89,371.693,64,392.363,64,416\r\n\t\tc0,35.29,28.71,64,64,64s64-28.71,64-64c0-23.637-12.89-44.307-32-55.391V183.391c19.11-11.084,32-31.754,32-55.391\r\n\t\tC192,92.71,163.29,64,128,64z M128,448c-17.673,0-32-14.327-32-32s14.327-32,32-32s32,14.327,32,32S145.673,448,128,448z M128,160\r\n\t\tc-17.673,0-32-14.327-32-32s14.327-32,32-32s32,14.327,32,32S145.673,160,128,160z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M415,360.034V204.989c0-33.987-10.49-61.002-31.18-80.294c-22.111-20.618-54.314-30.388-95.82-29.106V32l-96,96l96,96v-64\r\n\t\tc26.5,0,42.67,2.642,52.175,11.504c7.183,6.698,10.825,17.964,10.825,33.485v156.196c-18.562,11.217-31,31.589-31,54.814\r\n\t\tc0,35.29,28.71,64,64,64s64-28.71,64-64C448,391.951,434.662,370.969,415,360.034z M384,448c-17.673,0-32-14.327-32-32\r\n\t\ts14.327-32,32-32s32,14.327,32,32S401.673,448,384,448z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M415,360.034V204.989c0-33.987-10.49-61.002-31.18-80.294c-22.111-20.618-54.314-30.388-95.82-29.106V32l-96,96l96,96v-64\r\n\t\tc26.5,0,42.67,2.642,52.175,11.504c7.183,6.698,10.825,17.964,10.825,33.485v156.196c-18.562,11.217-31,31.589-31,54.814\r\n\t\tc0,35.29,28.71,64,64,64s64-28.71,64-64C448,391.951,434.662,370.969,415,360.034z M384,448c-17.673,0-32-14.327-32-32\r\n\t\ts14.327-32,32-32s32,14.327,32,32S401.673,448,384,448z" + }, + "children": [] + }] + }] + }] +}; +exports.pullRequest = pullRequest; \ No newline at end of file diff --git a/dist/ionicons/qrScanner.js b/dist/ionicons/qrScanner.js new file mode 100644 index 000000000..0c99e0b8a --- /dev/null +++ b/dist/ionicons/qrScanner.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.qrScanner = void 0; +var qrScanner = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M96,124.171c0-6.938,5.232-12.171,12.171-12.171H176V64h-66.829C75.717,64,48,90.717,48,124.171V192h48V124.171z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M96,124.171c0-6.938,5.232-12.171,12.171-12.171H176V64h-66.829C75.717,64,48,90.717,48,124.171V192h48V124.171z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M403.579,64H336v48h67.219c6.938,0,12.781,5.232,12.781,12.171V192h48v-67.829C464,90.717,437.033,64,403.579,64z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M403.579,64H336v48h67.219c6.938,0,12.781,5.232,12.781,12.171V192h48v-67.829C464,90.717,437.033,64,403.579,64z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M416,386.829c0,6.938-5.232,12.171-12.171,12.171H336v49h67.829C437.283,448,464,420.283,464,386.829V320h-48V386.829z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M416,386.829c0,6.938-5.232,12.171-12.171,12.171H336v49h67.829C437.283,448,464,420.283,464,386.829V320h-48V386.829z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M108.171,399C101.232,399,96,393.768,96,386.829V320H48v66.829C48,420.283,75.717,448,109.171,448H176v-49H108.171z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M108.171,399C101.232,399,96,393.768,96,386.829V320H48v66.829C48,420.283,75.717,448,109.171,448H176v-49H108.171z" + }, + "children": [] + }] + }] + }] +}; +exports.qrScanner = qrScanner; \ No newline at end of file diff --git a/dist/ionicons/quote.js b/dist/ionicons/quote.js new file mode 100644 index 000000000..2d8a099f1 --- /dev/null +++ b/dist/ionicons/quote.js @@ -0,0 +1,55 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.quote = void 0; +var quote = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M192,64c-40.646,0-72.483,11.229-94.627,33.373C75.229,119.517,64,151.354,64,192v256h160V192h-96\r\n\t\t\tc0-23.056,4.922-39.666,14.627-49.373C152.334,132.922,168.944,128,192,128" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M192,64c-40.646,0-72.483,11.229-94.627,33.373C75.229,119.517,64,151.354,64,192v256h160V192h-96\r\n\t\t\tc0-23.056,4.922-39.666,14.627-49.373C152.334,132.922,168.944,128,192,128" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M416,64c-40.646,0-72.483,11.229-94.627,33.373C299.229,119.517,288,151.354,288,192v256h160V192h-96\r\n\t\t\tc0-23.056,4.922-39.666,14.627-49.373C376.334,132.922,392.944,128,416,128" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M416,64c-40.646,0-72.483,11.229-94.627,33.373C299.229,119.517,288,151.354,288,192v256h160V192h-96\r\n\t\t\tc0-23.056,4.922-39.666,14.627-49.373C376.334,132.922,392.944,128,416,128" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.quote = quote; \ No newline at end of file diff --git a/dist/ionicons/radioWaves.js b/dist/ionicons/radioWaves.js new file mode 100644 index 000000000..684630ba9 --- /dev/null +++ b/dist/ionicons/radioWaves.js @@ -0,0 +1,87 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.radioWaves = void 0; +var radioWaves = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "cx": "256", + "cy": "256", + "r": "64" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "256", + "cy": "256", + "r": "64" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M144,256c0-36.9,18.553-69.208,46.314-87.034l-23.141-24.512c-6.26,4.608-12.18,9.833-17.684,15.663\r\n\t\t\tC125.314,185.729,112,219.781,112,256c0,36.219,13.314,70.271,37.49,95.883c5.504,5.829,11.424,11.055,17.684,15.662\r\n\t\t\tl23.141-24.511C162.553,325.208,144,292.9,144,256z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M144,256c0-36.9,18.553-69.208,46.314-87.034l-23.141-24.512c-6.26,4.608-12.18,9.833-17.684,15.663\r\n\t\t\tC125.314,185.729,112,219.781,112,256c0,36.219,13.314,70.271,37.49,95.883c5.504,5.829,11.424,11.055,17.684,15.662\r\n\t\t\tl23.141-24.511C162.553,325.208,144,292.9,144,256z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M368,256c0,36.9-18.553,69.208-46.314,87.034l23.141,24.511c6.26-4.607,12.18-9.833,17.684-15.662\r\n\t\t\tC386.686,326.271,400,292.219,400,256c0-36.219-13.314-70.271-37.49-95.882c-5.504-5.83-11.424-11.055-17.684-15.663\r\n\t\t\tl-23.141,24.512C349.447,186.792,368,219.1,368,256z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M368,256c0,36.9-18.553,69.208-46.314,87.034l23.141,24.511c6.26-4.607,12.18-9.833,17.684-15.662\r\n\t\t\tC386.686,326.271,400,292.219,400,256c0-36.219-13.314-70.271-37.49-95.882c-5.504-5.83-11.424-11.055-17.684-15.663\r\n\t\t\tl-23.141,24.512C349.447,186.792,368,219.1,368,256z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M64,256c0-55.578,25.251-104.907,64.263-135.817L105.433,96c-5.999,5-11.739,10.396-17.197,16.178\r\n\t\t\tc-17.622,18.669-31.462,40.417-41.134,64.641C37.081,201.917,32,228.556,32,256c0,27.443,5.081,54.084,15.102,79.181\r\n\t\t\tc9.672,24.226,23.512,45.973,41.134,64.642c5.458,5.781,11.198,11.177,17.197,16.178l22.829-24.183\r\n\t\t\tC89.251,360.907,64,311.578,64,256z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M64,256c0-55.578,25.251-104.907,64.263-135.817L105.433,96c-5.999,5-11.739,10.396-17.197,16.178\r\n\t\t\tc-17.622,18.669-31.462,40.417-41.134,64.641C37.081,201.917,32,228.556,32,256c0,27.443,5.081,54.084,15.102,79.181\r\n\t\t\tc9.672,24.226,23.512,45.973,41.134,64.642c5.458,5.781,11.198,11.177,17.197,16.178l22.829-24.183\r\n\t\t\tC89.251,360.907,64,311.578,64,256z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M448,256c0,55.578-25.251,104.907-64.262,135.817l22.828,23.848c6-5.001,11.74-10.062,17.198-15.843\r\n\t\t\tc17.622-18.669,31.462-40.416,41.134-64.642C474.918,310.084,480,283.443,480,256c0-27.444-5.082-54.083-15.102-79.181\r\n\t\t\tc-9.672-24.225-23.512-45.972-41.134-64.641C418.307,106.396,412.566,101,406.566,96l-22.829,24.183\r\n\t\t\tC422.749,151.093,448,200.422,448,256z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M448,256c0,55.578-25.251,104.907-64.262,135.817l22.828,23.848c6-5.001,11.74-10.062,17.198-15.843\r\n\t\t\tc17.622-18.669,31.462-40.416,41.134-64.642C474.918,310.084,480,283.443,480,256c0-27.444-5.082-54.083-15.102-79.181\r\n\t\t\tc-9.672-24.225-23.512-45.972-41.134-64.641C418.307,106.396,412.566,101,406.566,96l-22.829,24.183\r\n\t\t\tC422.749,151.093,448,200.422,448,256z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.radioWaves = radioWaves; \ No newline at end of file diff --git a/dist/ionicons/record.js b/dist/ionicons/record.js new file mode 100644 index 000000000..79322ae32 --- /dev/null +++ b/dist/ionicons/record.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.record = void 0; +var record = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,464c114.9,0,208-93.1,208-208c0-114.9-93.1-208-208-208C141.1,48,48,141.1,48,256C48,370.9,141.1,464,256,464z" + }, + "children": [] + }] +}; +exports.record = record; \ No newline at end of file diff --git a/dist/ionicons/refresh.js b/dist/ionicons/refresh.js new file mode 100644 index 000000000..3a852d93f --- /dev/null +++ b/dist/ionicons/refresh.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.refresh = void 0; +var refresh = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M416,352l96-111.9h-64.7c-2.3-27.9-10.5-54-23.5-77.3c-27.4-49.2-75.8-85.1-133-95.6c-0.7-0.1-1.5-0.3-2.2-0.4\r\n\tc-0.5-0.1-0.9-0.2-1.4-0.2C277.1,64.9,266.6,64,256,64c-0.1,0-0.3,0-0.4,0c0,0,0,0,0,0c-90.9,0.2-167,63.6-186.7,148.6\r\n\tc0,0,0,0.1,0,0.1c-0.3,1.1-0.5,2.2-0.7,3.3c-0.1,0.5-0.2,0.9-0.3,1.4c-0.1,0.7-0.3,1.4-0.4,2.1c-0.2,0.9-0.3,1.7-0.5,2.6\r\n\tc-0.1,0.4-0.1,0.7-0.2,1.1c-0.2,1.2-0.4,2.4-0.6,3.6c0,0.1,0,0.1,0,0.2c-1,6.3-1.6,12.7-1.9,19.1c0,0.3,0,0.6,0,0.8\r\n\tc-0.1,1.4-0.1,2.7-0.2,4.1c0,1.6-0.1,3.3-0.1,5c0,1.7,0,3.3,0.1,5c0,1.4,0.1,2.7,0.2,4.1c0,0.3,0,0.6,0,0.9c0.3,6.5,1,12.9,1.9,19.1\r\n\tc0,0.1,0,0.1,0,0.2c0.2,1.2,0.4,2.4,0.6,3.6c0.1,0.4,0.1,0.7,0.2,1.1c0.2,0.9,0.3,1.8,0.5,2.6c0.1,0.7,0.3,1.4,0.4,2.1\r\n\tc0.1,0.5,0.2,1,0.3,1.4c0.2,1.1,0.5,2.2,0.7,3.2c0,0,0,0.1,0,0.1c19.7,85,96.1,148.4,187.1,148.6c42.9-0.1,83.1-14.2,116.9-40.7\r\n\tl7.5-5.9l-43.2-46.2l-6.2,4.6c-22.1,16.3-47.5,24.2-75,24.2c-70.6,0-128-57-128-128c0-71,57.4-128,128-128\r\n\tc66.4,0,122.8,46.6,129.5,112H312L416,352z" + }, + "children": [] + }] +}; +exports.refresh = refresh; \ No newline at end of file diff --git a/dist/ionicons/reply.js b/dist/ionicons/reply.js new file mode 100644 index 000000000..891c36e0a --- /dev/null +++ b/dist/ionicons/reply.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.reply = void 0; +var reply = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M448,400c0,0-36.8-208-224-208v-80L64,256l160,134.4v-92.3C325.6,298.1,395,307,448,400z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M448,400c0,0-36.8-208-224-208v-80L64,256l160,134.4v-92.3C325.6,298.1,395,307,448,400z" + }, + "children": [] + }] + }] + }] +}; +exports.reply = reply; \ No newline at end of file diff --git a/dist/ionicons/replyAll.js b/dist/ionicons/replyAll.js new file mode 100644 index 000000000..d09dd0b6e --- /dev/null +++ b/dist/ionicons/replyAll.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.replyAll = void 0; +var replyAll = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M304.5,192v-80L152.7,255.8L304.5,390v-91.9c68,0,107.9,8.9,159.1,101.9C463.6,400,457.5,192,304.5,192z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M304.5,192v-80L152.7,255.8L304.5,390v-91.9c68,0,107.9,8.9,159.1,101.9C463.6,400,457.5,192,304.5,192z" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "47.5,256 191.5,382.5 191.5,324 109.3,256 191.5,177.4 191.5,120.4 \t\t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "47.5,256 191.5,382.5 191.5,324 109.3,256 191.5,177.4 191.5,120.4 \t\t" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.replyAll = replyAll; \ No newline at end of file diff --git a/dist/ionicons/ribbonA.js b/dist/ionicons/ribbonA.js new file mode 100644 index 000000000..e653270bf --- /dev/null +++ b/dist/ionicons/ribbonA.js @@ -0,0 +1,75 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ribbonA = void 0; +var ribbonA = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M352,32l-82.9,176.612c39.996,3.608,75.273,23.554,99.096,53.128L432,128L352,32z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M352,32l-82.9,176.612c39.996,3.608,75.273,23.554,99.096,53.128L432,128L352,32z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M160,32l82.9,176.612c-39.996,3.608-75.273,23.554-99.096,53.128L80,128L160,32z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M160,32l82.9,176.612c-39.996,3.608-75.273,23.554-99.096,53.128L80,128L160,32z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "269.092,32 256,32 176,32 228.572,144 256,144 283.428,144 336,32 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "269.092,32 256,32 176,32 228.572,144 256,144 283.428,144 336,32 \t" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,224c-70.692,0-128,57.308-128,128s57.308,128,128,128s128-57.308,128-128S326.692,224,256,224z M256,448\r\n\t\tc-53.02,0-96-42.98-96-96s42.98-96,96-96s96,42.98,96,96S309.02,448,256,448z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,224c-70.692,0-128,57.308-128,128s57.308,128,128,128s128-57.308,128-128S326.692,224,256,224z M256,448\r\n\t\tc-53.02,0-96-42.98-96-96s42.98-96,96-96s96,42.98,96,96S309.02,448,256,448z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,264c-48.523,0-88,39.477-88,88s39.477,88,88,88s88-39.477,88-88S304.523,264,256,264z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,264c-48.523,0-88,39.477-88,88s39.477,88,88,88s88-39.477,88-88S304.523,264,256,264z" + }, + "children": [] + }] + }] + }] +}; +exports.ribbonA = ribbonA; \ No newline at end of file diff --git a/dist/ionicons/ribbonB.js b/dist/ionicons/ribbonB.js new file mode 100644 index 000000000..b8aa99df6 --- /dev/null +++ b/dist/ionicons/ribbonB.js @@ -0,0 +1,79 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ribbonB = void 0; +var ribbonB = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,72c-48.523,0-88,39.477-88,88s39.477,88,88,88s88-39.477,88-88S304.523,72,256,72z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,72c-48.523,0-88,39.477-88,88s39.477,88,88,88s88-39.477,88-88S304.523,72,256,72z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,32c-70.692,0-128,57.308-128,128s57.308,128,128,128s128-57.308,128-128S326.692,32,256,32z M256,256\r\n\t\t\tc-53.02,0-96-42.98-96-96s42.98-96,96-96s96,42.98,96,96S309.02,256,256,256z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,32c-70.692,0-128,57.308-128,128s57.308,128,128,128s128-57.308,128-128S326.692,32,256,32z M256,256\r\n\t\t\tc-53.02,0-96-42.98-96-96s42.98-96,96-96s96,42.98,96,96S309.02,256,256,256z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M147.092,254.21L64,400h96l48,80l48-105.807l33.641-74.154C278.848,302.623,267.585,304,256,304\r\n\t\t\tC212.495,304,173.497,284.707,147.092,254.21z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M147.092,254.21L64,400h96l48,80l48-105.807l33.641-74.154C278.848,302.623,267.585,304,256,304\r\n\t\t\tC212.495,304,173.497,284.707,147.092,254.21z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M364.908,254.211c-15.077,17.412-34.26,31.172-56.043,39.774l-44.752,98.092L304,480l48-80h96L364.908,254.211z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M364.908,254.211c-15.077,17.412-34.26,31.172-56.043,39.774l-44.752,98.092L304,480l48-80h96L364.908,254.211z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ribbonB = ribbonB; \ No newline at end of file diff --git a/dist/ionicons/sad.js b/dist/ionicons/sad.js new file mode 100644 index 000000000..57998148e --- /dev/null +++ b/dist/ionicons/sad.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.sad = void 0; +var sad = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,32C132.288,32,32,132.288,32,256s100.288,224,224,224s224-100.288,224-224S379.712,32,256,32z M145.062,291.696\r\n\t\tc-1.551,4.952-5.62,8.724-10.693,10.606c-3.358,1.246-6.816,1.774-10.236,0.938c-8.866-2.185-13.916-10.907-11.255-19.443\r\n\t\tc5.101-16.379,14.22-29.995,33.802-37.263s35.265-2.877,49.868,6.15c7.615,4.707,10.029,14.019,4.214,22.123\r\n\t\tc-2.049,2.854-5.019,4.717-8.376,5.963c-5.059,1.876-10.584,1.678-14.965-1.036c-4.778-2.957-10.643-6.526-19.607-3.199\r\n\t\tC148.805,279.878,146.712,286.374,145.062,291.696z M345.156,381.454c-2.789,1.946-5.982,2.881-9.144,2.881\r\n\t\tc-5.053,0-10.023-2.388-13.134-6.845C322.703,377.239,304,352,256,352c-47.98,0-66.704,25.239-66.879,25.49\r\n\t\tc-3.111,4.457-8.083,6.845-13.135,6.845c-3.161,0-6.354-0.935-9.143-2.881c-7.246-5.058-9.021-15.031-3.963-22.278\r\n\t\tC163.986,357.59,190.739,320,256,320c65,0,92.013,37.59,93.119,39.176C354.177,366.423,352.402,376.396,345.156,381.454z\r\n\t\t M388.029,303.24c-3.42,0.837-6.879,0.309-10.236-0.938c-5.073-1.883-9.143-5.654-10.693-10.606\r\n\t\tc-1.649-5.322-3.742-11.818-12.752-15.161c-8.964-3.327-14.829,0.242-19.607,3.199c-4.381,2.714-9.906,2.912-14.965,1.036\r\n\t\tc-3.357-1.246-6.327-3.108-8.376-5.963c-5.815-8.104-3.401-17.416,4.214-22.123c14.604-9.027,30.286-13.418,49.868-6.15\r\n\t\ts28.702,20.884,33.802,37.263C401.944,292.333,396.895,301.056,388.029,303.24z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,32C132.288,32,32,132.288,32,256s100.288,224,224,224s224-100.288,224-224S379.712,32,256,32z M145.062,291.696\r\n\t\tc-1.551,4.952-5.62,8.724-10.693,10.606c-3.358,1.246-6.816,1.774-10.236,0.938c-8.866-2.185-13.916-10.907-11.255-19.443\r\n\t\tc5.101-16.379,14.22-29.995,33.802-37.263s35.265-2.877,49.868,6.15c7.615,4.707,10.029,14.019,4.214,22.123\r\n\t\tc-2.049,2.854-5.019,4.717-8.376,5.963c-5.059,1.876-10.584,1.678-14.965-1.036c-4.778-2.957-10.643-6.526-19.607-3.199\r\n\t\tC148.805,279.878,146.712,286.374,145.062,291.696z M345.156,381.454c-2.789,1.946-5.982,2.881-9.144,2.881\r\n\t\tc-5.053,0-10.023-2.388-13.134-6.845C322.703,377.239,304,352,256,352c-47.98,0-66.704,25.239-66.879,25.49\r\n\t\tc-3.111,4.457-8.083,6.845-13.135,6.845c-3.161,0-6.354-0.935-9.143-2.881c-7.246-5.058-9.021-15.031-3.963-22.278\r\n\t\tC163.986,357.59,190.739,320,256,320c65,0,92.013,37.59,93.119,39.176C354.177,366.423,352.402,376.396,345.156,381.454z\r\n\t\t M388.029,303.24c-3.42,0.837-6.879,0.309-10.236-0.938c-5.073-1.883-9.143-5.654-10.693-10.606\r\n\t\tc-1.649-5.322-3.742-11.818-12.752-15.161c-8.964-3.327-14.829,0.242-19.607,3.199c-4.381,2.714-9.906,2.912-14.965,1.036\r\n\t\tc-3.357-1.246-6.327-3.108-8.376-5.963c-5.815-8.104-3.401-17.416,4.214-22.123c14.604-9.027,30.286-13.418,49.868-6.15\r\n\t\ts28.702,20.884,33.802,37.263C401.944,292.333,396.895,301.056,388.029,303.24z" + }, + "children": [] + }] + }] + }] +}; +exports.sad = sad; \ No newline at end of file diff --git a/dist/ionicons/sadOutline.js b/dist/ionicons/sadOutline.js new file mode 100644 index 000000000..0d8bfe740 --- /dev/null +++ b/dist/ionicons/sadOutline.js @@ -0,0 +1,79 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.sadOutline = void 0; +var sadOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M399.283,283.797c-5.1-16.379-14.22-29.995-33.802-37.263s-35.265-2.877-49.868,6.15\r\n\t\t\t\tc-7.615,4.707-10.029,14.019-4.214,22.123c2.049,2.854,5.019,4.717,8.376,5.963c5.059,1.876,10.584,1.678,14.965-1.036\r\n\t\t\t\tc4.778-2.957,10.644-6.526,19.607-3.199c9.01,3.343,11.103,9.839,12.752,15.161c1.551,4.952,5.62,8.724,10.693,10.606\r\n\t\t\t\tc3.357,1.246,6.816,1.774,10.236,0.938C396.895,301.056,401.944,292.333,399.283,283.797z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M399.283,283.797c-5.1-16.379-14.22-29.995-33.802-37.263s-35.265-2.877-49.868,6.15\r\n\t\t\t\tc-7.615,4.707-10.029,14.019-4.214,22.123c2.049,2.854,5.019,4.717,8.376,5.963c5.059,1.876,10.584,1.678,14.965-1.036\r\n\t\t\t\tc4.778-2.957,10.644-6.526,19.607-3.199c9.01,3.343,11.103,9.839,12.752,15.161c1.551,4.952,5.62,8.724,10.693,10.606\r\n\t\t\t\tc3.357,1.246,6.816,1.774,10.236,0.938C396.895,301.056,401.944,292.333,399.283,283.797z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M196.549,252.685c-14.603-9.027-30.286-13.418-49.868-6.15s-28.702,20.884-33.802,37.263\r\n\t\t\t\tc-2.661,8.536,2.389,17.259,11.255,19.443c3.42,0.837,6.878,0.309,10.236-0.938c5.073-1.883,9.143-5.654,10.693-10.606\r\n\t\t\t\tc1.649-5.322,3.743-11.818,12.752-15.161c8.964-3.327,14.829,0.242,19.607,3.199c4.381,2.714,9.907,2.912,14.965,1.036\r\n\t\t\t\tc3.357-1.246,6.327-3.108,8.376-5.963C206.578,266.703,204.164,257.392,196.549,252.685z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M196.549,252.685c-14.603-9.027-30.286-13.418-49.868-6.15s-28.702,20.884-33.802,37.263\r\n\t\t\t\tc-2.661,8.536,2.389,17.259,11.255,19.443c3.42,0.837,6.878,0.309,10.236-0.938c5.073-1.883,9.143-5.654,10.693-10.606\r\n\t\t\t\tc1.649-5.322,3.743-11.818,12.752-15.161c8.964-3.327,14.829,0.242,19.607,3.199c4.381,2.714,9.907,2.912,14.965,1.036\r\n\t\t\t\tc3.357-1.246,6.327-3.108,8.376-5.963C206.578,266.703,204.164,257.392,196.549,252.685z" + }, + "children": [] + }] + }] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,32C132.288,32,32,132.288,32,256s100.288,224,224,224s224-100.288,224-224S379.712,32,256,32z M391.765,391.765\r\n\t\t\tC355.5,428.028,307.285,448,256,448s-99.5-19.972-135.765-56.235C83.972,355.5,64,307.285,64,256s19.972-99.5,56.235-135.765\r\n\t\t\tC156.5,83.972,204.715,64,256,64s99.5,19.972,135.765,56.235C428.028,156.5,448,204.715,448,256S428.028,355.5,391.765,391.765z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,32C132.288,32,32,132.288,32,256s100.288,224,224,224s224-100.288,224-224S379.712,32,256,32z M391.765,391.765\r\n\t\t\tC355.5,428.028,307.285,448,256,448s-99.5-19.972-135.765-56.235C83.972,355.5,64,307.285,64,256s19.972-99.5,56.235-135.765\r\n\t\t\tC156.5,83.972,204.715,64,256,64s99.5,19.972,135.765,56.235C428.028,156.5,448,204.715,448,256S428.028,355.5,391.765,391.765z" + }, + "children": [] + }] + }] + }] + }, { + "name": "path", + "attribs": { + "d": "M349.119,359.176C348.013,357.59,321,320,256,320c-65.261,0-92.014,37.59-93.121,39.176\r\n\t\tc-5.057,7.247-3.283,17.221,3.963,22.278c2.789,1.946,5.982,2.881,9.143,2.881c5.052,0,10.024-2.388,13.135-6.845\r\n\t\tC189.296,377.239,208.02,352,256,352c48,0,66.703,25.239,66.879,25.49c3.11,4.457,8.081,6.845,13.134,6.845\r\n\t\tc3.161,0,6.354-0.935,9.144-2.881C352.402,376.396,354.177,366.423,349.119,359.176z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M349.119,359.176C348.013,357.59,321,320,256,320c-65.261,0-92.014,37.59-93.121,39.176\r\n\t\tc-5.057,7.247-3.283,17.221,3.963,22.278c2.789,1.946,5.982,2.881,9.143,2.881c5.052,0,10.024-2.388,13.135-6.845\r\n\t\tC189.296,377.239,208.02,352,256,352c48,0,66.703,25.239,66.879,25.49c3.11,4.457,8.081,6.845,13.134,6.845\r\n\t\tc3.161,0,6.354-0.935,9.144-2.881C352.402,376.396,354.177,366.423,349.119,359.176z" + }, + "children": [] + }] + }] + }] +}; +exports.sadOutline = sadOutline; \ No newline at end of file diff --git a/dist/ionicons/scissors.js b/dist/ionicons/scissors.js new file mode 100644 index 000000000..10742d9a3 --- /dev/null +++ b/dist/ionicons/scissors.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.scissors = void 0; +var scissors = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M405.178,115.667c13.314-32.667,17.309-64-5.326-83.667L255.726,224l-16.976,23c0,0-27.627,40.011-37.28,58.667\r\n\t\ts-19.306,39.333-27.294,54c-7.01,12.871-10.438,15.221-14.322,11.548c-0.506-0.591-1.026-1.168-1.553-1.736\r\n\t\tc-0.037-0.047-0.073-0.09-0.11-0.138c-1.143-1.472-2.75-3.002-4.635-4.467C144.195,356.795,132.548,352,119.92,352\r\n\t\tC89.037,352,64,380.653,64,416s25.037,64,55.92,64c25.282,0,46.635-19.205,53.553-45.561l-0.004,0.043\r\n\t\tc0,0,13.355-41.482,32.661-71.482c19.306-30,49.596-43,49.596-43l31.954-32C287.68,288,391.863,148.334,405.178,115.667z\r\n\t\t M119.92,448c-15.418,0-27.918-14.353-27.918-32s12.5-32,27.918-32c15.419,0,27.918,14.353,27.918,32S135.339,448,119.92,448z\r\n\t\t M256,288c-8.836,0-16-7.163-16-16c0-8.836,7.164-16,16-16c8.837,0,16,7.164,16,16C272,280.837,264.837,288,256,288z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M405.178,115.667c13.314-32.667,17.309-64-5.326-83.667L255.726,224l-16.976,23c0,0-27.627,40.011-37.28,58.667\r\n\t\ts-19.306,39.333-27.294,54c-7.01,12.871-10.438,15.221-14.322,11.548c-0.506-0.591-1.026-1.168-1.553-1.736\r\n\t\tc-0.037-0.047-0.073-0.09-0.11-0.138c-1.143-1.472-2.75-3.002-4.635-4.467C144.195,356.795,132.548,352,119.92,352\r\n\t\tC89.037,352,64,380.653,64,416s25.037,64,55.92,64c25.282,0,46.635-19.205,53.553-45.561l-0.004,0.043\r\n\t\tc0,0,13.355-41.482,32.661-71.482c19.306-30,49.596-43,49.596-43l31.954-32C287.68,288,391.863,148.334,405.178,115.667z\r\n\t\t M119.92,448c-15.418,0-27.918-14.353-27.918-32s12.5-32,27.918-32c15.419,0,27.918,14.353,27.918,32S135.339,448,119.92,448z\r\n\t\t M256,288c-8.836,0-16-7.163-16-16c0-8.836,7.164-16,16-16c8.837,0,16,7.164,16,16C272,280.837,264.837,288,256,288z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M207.28,265.255c9.18-14.114,17.671-26.43,18.304-27.346l0.143-0.208l0.15-0.203l16.976-23l0.038-0.052l0.039-0.052\r\n\t\tl2.941-3.918L111.896,32c-22.634,19.667-18.64,51-5.326,83.667C116.523,140.087,177.249,224.29,207.28,265.255z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M207.28,265.255c9.18-14.114,17.671-26.43,18.304-27.346l0.143-0.208l0.15-0.203l16.976-23l0.038-0.052l0.039-0.052\r\n\t\tl2.941-3.918L111.896,32c-22.634,19.667-18.64,51-5.326,83.667C116.523,140.087,177.249,224.29,207.28,265.255z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M391.828,352c-12.628,0-24.275,4.795-33.637,12.874c-1.885,1.465-3.492,2.995-4.635,4.467\r\n\t\tc-0.037,0.048-0.072,0.091-0.109,0.138c-0.526,0.568-1.047,1.146-1.553,1.736c-3.884,3.673-7.312,1.323-14.322-11.548\r\n\t\tc-7.988-14.667-17.641-35.344-27.294-54c-1.77-3.421-4.146-7.561-6.843-12.038c-1.272,1.712-2.264,3.043-2.932,3.938l-0.688,0.924\r\n\t\tl-0.813,0.815l-28.688,28.729c10.433,6.855,24.565,18.276,35.306,34.965c19.305,30,32.66,71.482,32.66,71.482l-0.004-0.043\r\n\t\tC345.193,460.795,366.546,480,391.828,480C422.711,480,448,451.347,448,416S422.711,352,391.828,352z M391.828,448\r\n\t\tc-15.42,0-27.918-14.353-27.918-32s12.498-32,27.918-32c15.418,0,27.918,14.353,27.918,32S407.246,448,391.828,448z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M391.828,352c-12.628,0-24.275,4.795-33.637,12.874c-1.885,1.465-3.492,2.995-4.635,4.467\r\n\t\tc-0.037,0.048-0.072,0.091-0.109,0.138c-0.526,0.568-1.047,1.146-1.553,1.736c-3.884,3.673-7.312,1.323-14.322-11.548\r\n\t\tc-7.988-14.667-17.641-35.344-27.294-54c-1.77-3.421-4.146-7.561-6.843-12.038c-1.272,1.712-2.264,3.043-2.932,3.938l-0.688,0.924\r\n\t\tl-0.813,0.815l-28.688,28.729c10.433,6.855,24.565,18.276,35.306,34.965c19.305,30,32.66,71.482,32.66,71.482l-0.004-0.043\r\n\t\tC345.193,460.795,366.546,480,391.828,480C422.711,480,448,451.347,448,416S422.711,352,391.828,352z M391.828,448\r\n\t\tc-15.42,0-27.918-14.353-27.918-32s12.498-32,27.918-32c15.418,0,27.918,14.353,27.918,32S407.246,448,391.828,448z" + }, + "children": [] + }] + }] + }] +}; +exports.scissors = scissors; \ No newline at end of file diff --git a/dist/ionicons/search.js b/dist/ionicons/search.js new file mode 100644 index 000000000..d7784617d --- /dev/null +++ b/dist/ionicons/search.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.search = void 0; +var search = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M445,386.7l-84.8-85.9c13.8-24.1,21-50.9,21-77.9c0-87.6-71.2-158.9-158.6-158.9C135.2,64,64,135.3,64,222.9\r\n\tc0,87.6,71.2,158.9,158.6,158.9c27.9,0,55.5-7.7,80.1-22.4l84.4,85.6c1.9,1.9,4.6,3.1,7.3,3.1c2.7,0,5.4-1.1,7.3-3.1l43.3-43.8\r\n\tC449,397.1,449,390.7,445,386.7z M222.6,125.9c53.4,0,96.8,43.5,96.8,97c0,53.5-43.4,97-96.8,97c-53.4,0-96.8-43.5-96.8-97\r\n\tC125.8,169.4,169.2,125.9,222.6,125.9z" + }, + "children": [] + }] +}; +exports.search = search; \ No newline at end of file diff --git a/dist/ionicons/settings.js b/dist/ionicons/settings.js new file mode 100644 index 000000000..1a93db71c --- /dev/null +++ b/dist/ionicons/settings.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.settings = void 0; +var settings = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M450,138.3l-47.7,48.5l-2.7,2.8l-1.6,1.7c-1.1,0.8-2.4,1.2-3.9,1.2c-1.6,0-3.1-0.6-4.3-1.6l-0.9-0.9l-2.7-2.7l-41.3-42.1\r\n\tl-2.2-2.2l-1.7-1.7c-1-1.5-1.6-3.4-1.6-5.3c0-1.7,0.6-3.2,1.6-4.4l0.7-0.8l2.6-2.6l47.9-48.7c-5.1-10.1-24.7-14.9-35.1-14.1\r\n\tc-17.1,1.3-34.7,7-52.8,25.5c-0.7,0.8-1.5,1.6-2.2,2.3C277.5,120,272.6,156,282.6,189c0.7,1.4,1.3,3.1,1.6,4.6\r\n\tc1.1,5.5-0.4,10.2-4,13.5l-37.9,36.4c-11.8-12-13.5-13.6-13.5-13.6c-2-2-6-3.3-9.5-1.2l-5.9,3.6c-22.7-23.1-32.3-32.4-35.4-43.6\r\n\tc-3.2-11.7-0.3-27.3,2.7-33.1c2.5-4.6,10.3-8.9,16.9-9.4l8.6,8.8c2,2,5.1,2,7.1,0l30.9-31.4c2-2,2-5.3,0-7.3l-49.9-50.7\r\n\tc-2-2-5.2-2-7.1,0l-30.9,31.4c-2,2-2,5.3,0,7.3l3.3,3.4c0,4.9-0.7,12.5-4.7,16.6c-6.2,6.3-18.5-1-26.5,4.7\r\n\tc-7.9,5.6-17.9,14.6-24.3,21c-6.3,6.4-30.5,31.8-47.8,74.6c-17.3,42.8-4,82.5,5.4,92.9c5,5.5,14.1,11.1,12.5,0.7\r\n\tc-1.6-10.5-4.2-46.9,7.7-61.8c11.9-14.9,27.6-27.1,48-28.1c19.6-1,30.9,5.7,56.3,31.5l-2.8,5.2c-1.8,3.4-0.8,7.7,1.2,9.7\r\n\tc0,0,1.5,1.6,12.1,12.4l-97.2,93.2c-16.2,14.3-15.3,40.5-0.3,56c15.2,15.2,41.1,16.3,55.2-0.2l91.4-98.6\r\n\tc49.1,52.3,93.3,107.4,93.3,107.4c2,2,5.2,2,7.1,0l49.9-50.7c2-2,2-5.2,0-7.3c0,0-55.2-45.7-107-96.2l35.5-38.3\r\n\tc3.3-3.7,7.9-5.2,13.3-4.1c1.5,0.3,3.1,1,4.5,1.7c32.4,10.2,67.8,5.2,94-19.8c0.8-0.7,1.5-1.5,2.3-2.3c18.1-18.4,23.7-36.4,25-53.8\r\n\tC464.7,163.5,460.2,143.8,450,138.3z" + }, + "children": [] + }] +}; +exports.settings = settings; \ No newline at end of file diff --git a/dist/ionicons/share.js b/dist/ionicons/share.js new file mode 100644 index 000000000..78ed19f19 --- /dev/null +++ b/dist/ionicons/share.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.share = void 0; +var share = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M352,377.9H102.4V198.2h57.5c0,0,14.1-19.7,42.7-38.2H83.2c-10.6,0-19.2,8.5-19.2,19.1v217.9c0,10.5,8.6,19.1,19.2,19.1\r\n\t\th288c10.6,0,19.2-8.5,19.2-19.1V288L352,319.4V377.9z M320,224v63.9l128-95.5L320,96v59.7C165.2,155.7,160,320,160,320\r\n\t\tC203.8,248.5,236,224,320,224z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M352,377.9H102.4V198.2h57.5c0,0,14.1-19.7,42.7-38.2H83.2c-10.6,0-19.2,8.5-19.2,19.1v217.9c0,10.5,8.6,19.1,19.2,19.1\r\n\t\th288c10.6,0,19.2-8.5,19.2-19.1V288L352,319.4V377.9z M320,224v63.9l128-95.5L320,96v59.7C165.2,155.7,160,320,160,320\r\n\t\tC203.8,248.5,236,224,320,224z" + }, + "children": [] + }] + }] + }] +}; +exports.share = share; \ No newline at end of file diff --git a/dist/ionicons/shuffle.js b/dist/ionicons/shuffle.js new file mode 100644 index 000000000..c2cb92137 --- /dev/null +++ b/dist/ionicons/shuffle.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.shuffle = void 0; +var shuffle = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M370.1,181.3H399v47.3l81-83.2L399,64v54h-28.9c-82.7,0-129.4,61.9-170.6,116.5c-37,49.1-69,95.4-120.6,95.4H32v63.3h46.9\r\n\tc82.7,0,129.4-65.8,170.6-120.4C286.5,223.7,318.4,181.3,370.1,181.3z M153.2,217.5c3.5-4.6,7.1-9.3,10.7-14.1\r\n\tc8.8-11.6,18-23.9,28-36.1c-29.6-27.9-65.3-48.5-113-48.5H32v63.3c0,0,13.3-0.6,46.9,0C111.4,182.8,131.8,196.2,153.2,217.5z\r\n\t M399,330.4h-28.9c-31.5,0-55.7-15.8-78.2-39.3c-2.2,3-4.5,6-6.8,9c-9.9,13.1-20.5,27.2-32.2,41.1c30.4,29.9,67.2,52.5,117.2,52.5\r\n\tH399V448l81-81.4l-81-83.2V330.4z" + }, + "children": [] + }] +}; +exports.shuffle = shuffle; \ No newline at end of file diff --git a/dist/ionicons/skipBackward.js b/dist/ionicons/skipBackward.js new file mode 100644 index 000000000..3d126f3c4 --- /dev/null +++ b/dist/ionicons/skipBackward.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.skipBackward = void 0; +var skipBackward = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "style", + "attribs": { + "type": "text/css" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "class": "st0", + "d": "M75.7,96h8.1c6.7,0,12.2,5,12.2,11.7v113.5L283.1,98.7c2.5-1.7,5.1-2.3,8.1-2.3c8.3,0,15.4,7,15.4,17v63.1\r\n\tl118.5-78.2c2.5-1.7,5-2.3,8.1-2.3c8.3,0,14.9,7.4,14.9,17.4v286c0,10-6.7,16.5-15,16.5c-3.1,0-5.4-1.2-8.2-2.9l-118.3-77.6v64\r\n\tc0,10-7.2,16.5-15.5,16.5c-3.1,0-5.5-1.2-8.2-2.9L96,290.8v113c0,6.7-5.4,12.2-12.2,12.2h-8.1c-6.7,0-11.7-5.5-11.7-12.2V107.7\r\n\tC64,101,68.9,96,75.7,96z" + }, + "children": [] + }] +}; +exports.skipBackward = skipBackward; \ No newline at end of file diff --git a/dist/ionicons/skipForward.js b/dist/ionicons/skipForward.js new file mode 100644 index 000000000..41d4282a6 --- /dev/null +++ b/dist/ionicons/skipForward.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.skipForward = void 0; +var skipForward = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "style", + "attribs": { + "type": "text/css" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "class": "st0", + "d": "M436.3,96h-8.1c-6.7,0-12.2,5-12.2,11.7v113.5L228.9,98.7c-2.5-1.7-5.1-2.3-8.1-2.3c-8.3,0-15.4,7-15.4,17v63.1\r\n\tL86.9,98.3c-2.5-1.7-5.1-2.3-8.1-2.3c-8.3,0-14.9,7.4-14.9,17.4v286c0,10,6.7,16.5,15,16.5c3.1,0,5.4-1.2,8.2-2.9l118.3-77.6v64\r\n\tc0,10,7.2,16.5,15.5,16.5c3.1,0,5.5-1.2,8.2-2.9L416,290.8v113c0,6.7,5.4,12.2,12.2,12.2h8.1c6.7,0,11.7-5.5,11.7-12.2V107.7\r\n\tC448,101,443.1,96,436.3,96z" + }, + "children": [] + }] +}; +exports.skipForward = skipForward; \ No newline at end of file diff --git a/dist/ionicons/socialAndroid.js b/dist/ionicons/socialAndroid.js new file mode 100644 index 000000000..248bc4eb0 --- /dev/null +++ b/dist/ionicons/socialAndroid.js @@ -0,0 +1,79 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialAndroid = void 0; +var socialAndroid = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M144,268.4V358c0,6.9,4.5,14,11.4,14H184v52c0,13.3,10.7,24,24,24s24-10.7,24-24v-52h49v52c0,7.5,3.4,14.2,8.8,18.6\r\n\t\t\tc3.9,3.4,9.1,5.4,14.7,5.4c0.1,0,0.2,0,0.3,0c0.1,0,0.1,0,0.2,0c13.3,0,24-10.7,24-24v-52h27.6c7,0,11.4-7.1,11.4-13.9v-89.6V192\r\n\t\t\tH144V268.4z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M144,268.4V358c0,6.9,4.5,14,11.4,14H184v52c0,13.3,10.7,24,24,24s24-10.7,24-24v-52h49v52c0,7.5,3.4,14.2,8.8,18.6\r\n\t\t\tc3.9,3.4,9.1,5.4,14.7,5.4c0.1,0,0.2,0,0.3,0c0.1,0,0.1,0,0.2,0c13.3,0,24-10.7,24-24v-52h27.6c7,0,11.4-7.1,11.4-13.9v-89.6V192\r\n\t\t\tH144V268.4z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M408,176c-13.3,0-24,10.7-24,24v96c0,13.3,10.7,24,24,24s24-10.7,24-24v-96C432,186.7,421.3,176,408,176z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M408,176c-13.3,0-24,10.7-24,24v96c0,13.3,10.7,24,24,24s24-10.7,24-24v-96C432,186.7,421.3,176,408,176z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M104,176c-13.3,0-24,10.7-24,24v96c0,13.3,10.7,24,24,24s24-10.7,24-24v-96C128,186.7,117.3,176,104,176z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M104,176c-13.3,0-24,10.7-24,24v96c0,13.3,10.7,24,24,24s24-10.7,24-24v-96C128,186.7,117.3,176,104,176z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M311.2,89.1l18.5-21.9c0.4-0.5-0.2-1.6-1.3-2.5c-1.1-0.8-2.4-1-2.7-0.4l-19.2,22.8c-13.6-5.4-30.2-8.8-50.6-8.8\r\n\t\t\tc-20.5-0.1-37.2,3.2-50.8,8.5l-19-22.4c-0.4-0.5-1.6-0.4-2.7,0.4c-1.1,0.8-1.7,1.8-1.3,2.5l18.3,21.6\r\n\t\t\tc-48.2,20.9-55.4,72.2-56.4,87.2h223.6C366.7,161,359.6,110.4,311.2,89.1z M206.8,138.9c-7.4,0-13.5-6-13.5-13.3\r\n\t\t\tc0-7.3,6-13.3,13.5-13.3c7.4,0,13.5,6,13.5,13.3C220.3,132.9,214.3,138.9,206.8,138.9z M305.2,138.9c-7.4,0-13.5-6-13.5-13.3\r\n\t\t\tc0-7.3,6-13.3,13.5-13.3c7.4,0,13.5,6,13.5,13.3C318.7,132.9,312.6,138.9,305.2,138.9z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M311.2,89.1l18.5-21.9c0.4-0.5-0.2-1.6-1.3-2.5c-1.1-0.8-2.4-1-2.7-0.4l-19.2,22.8c-13.6-5.4-30.2-8.8-50.6-8.8\r\n\t\t\tc-20.5-0.1-37.2,3.2-50.8,8.5l-19-22.4c-0.4-0.5-1.6-0.4-2.7,0.4c-1.1,0.8-1.7,1.8-1.3,2.5l18.3,21.6\r\n\t\t\tc-48.2,20.9-55.4,72.2-56.4,87.2h223.6C366.7,161,359.6,110.4,311.2,89.1z M206.8,138.9c-7.4,0-13.5-6-13.5-13.3\r\n\t\t\tc0-7.3,6-13.3,13.5-13.3c7.4,0,13.5,6,13.5,13.3C220.3,132.9,214.3,138.9,206.8,138.9z M305.2,138.9c-7.4,0-13.5-6-13.5-13.3\r\n\t\t\tc0-7.3,6-13.3,13.5-13.3c7.4,0,13.5,6,13.5,13.3C318.7,132.9,312.6,138.9,305.2,138.9z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.socialAndroid = socialAndroid; \ No newline at end of file diff --git a/dist/ionicons/socialAndroidOutline.js b/dist/ionicons/socialAndroidOutline.js new file mode 100644 index 000000000..3383b6f76 --- /dev/null +++ b/dist/ionicons/socialAndroidOutline.js @@ -0,0 +1,91 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialAndroidOutline = void 0; +var socialAndroidOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M352,208v60.5V357h-22.5H313v15.5V424c0,4.4-3,7.9-7.3,8l0,0l-0.1,0c-0.1,0-0.2,0-0.3,0c-1.6,0-3.1-0.6-4.3-1.6l-0.1-0.1\r\n\t\t\tl-0.4-0.1c-2-1.6-3.4-4-3.4-6.2v-51.5V357h-15.5h-49H216v15.5V424c0,4.4-3.6,8-8,8s-8-3.6-8-8v-51.5V357h-15.5H160v-88.6V208H352\r\n\t\t\t M368,192H144v76.4V358c0,6.9,5.5,15,12.4,15H184v51c0,13.3,10.7,24,24,24s24-10.7,24-24v-51h49v51c0,7.5,3.9,14.2,9.3,18.6\r\n\t\t\tc3.9,3.4,9.3,5.4,15,5.4c0.1,0,0.3,0,0.4,0c0.1,0-0.3,0-0.2,0c13.3,0,23.6-10.7,23.6-24v-51h28.6c7,0,10.4-8.1,10.4-14.9v-89.6\r\n\t\t\tV192L368,192z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M352,208v60.5V357h-22.5H313v15.5V424c0,4.4-3,7.9-7.3,8l0,0l-0.1,0c-0.1,0-0.2,0-0.3,0c-1.6,0-3.1-0.6-4.3-1.6l-0.1-0.1\r\n\t\t\tl-0.4-0.1c-2-1.6-3.4-4-3.4-6.2v-51.5V357h-15.5h-49H216v15.5V424c0,4.4-3.6,8-8,8s-8-3.6-8-8v-51.5V357h-15.5H160v-88.6V208H352\r\n\t\t\t M368,192H144v76.4V358c0,6.9,5.5,15,12.4,15H184v51c0,13.3,10.7,24,24,24s24-10.7,24-24v-51h49v51c0,7.5,3.9,14.2,9.3,18.6\r\n\t\t\tc3.9,3.4,9.3,5.4,15,5.4c0.1,0,0.3,0,0.4,0c0.1,0-0.3,0-0.2,0c13.3,0,23.6-10.7,23.6-24v-51h28.6c7,0,10.4-8.1,10.4-14.9v-89.6\r\n\t\t\tV192L368,192z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M408,192c4.4,0,8,3.6,8,8v96c0,4.4-3.6,8-8,8s-8-3.6-8-8v-96C400,195.6,403.6,192,408,192 M408,176c-13.3,0-24,10.7-24,24\r\n\t\t\tv96c0,13.3,10.7,24,24,24s24-10.7,24-24v-96C432,186.7,421.3,176,408,176L408,176z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M408,192c4.4,0,8,3.6,8,8v96c0,4.4-3.6,8-8,8s-8-3.6-8-8v-96C400,195.6,403.6,192,408,192 M408,176c-13.3,0-24,10.7-24,24\r\n\t\t\tv96c0,13.3,10.7,24,24,24s24-10.7,24-24v-96C432,186.7,421.3,176,408,176L408,176z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M104,192c4.4,0,8,3.6,8,8v96c0,4.4-3.6,8-8,8s-8-3.6-8-8v-96C96,195.6,99.6,192,104,192 M104,176c-13.3,0-24,10.7-24,24\r\n\t\t\tv96c0,13.3,10.7,24,24,24s24-10.7,24-24v-96C128,186.7,117.3,176,104,176L104,176z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M104,192c4.4,0,8,3.6,8,8v96c0,4.4-3.6,8-8,8s-8-3.6-8-8v-96C96,195.6,99.6,192,104,192 M104,176c-13.3,0-24,10.7-24,24\r\n\t\t\tv96c0,13.3,10.7,24,24,24s24-10.7,24-24v-96C128,186.7,117.3,176,104,176L104,176z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M255,94.3l0.9,0h0h0c14.2,0,27.3,1.9,38.8,5.6l10,4.4c28.7,12.6,39.9,37.4,44.4,55.7H162.8c4.4-18.6,15.6-43.6,44.1-56\r\n\t\t\tl10.3-4.5C228.5,96.1,241.2,94.3,255,94.3 M185.4,64c-0.5,0-1.2,0.2-1.8,0.8c-1.1,0.8-1.7,1.8-1.3,2.5l18.3,22.1\r\n\t\t\tc-48.2,20.9-55.4,71.7-56.4,86.7h223.6c-1.1-15-8.2-65.1-56.6-86.4l18.5-22.2c0.4-0.5-0.2-1.7-1.3-2.6c-0.7-0.5-1.5-0.8-2-0.8\r\n\t\t\tc-0.3,0-0.5,0.1-0.7,0.3l-19.2,22.7c-13.6-5.4-30.2-8.8-50.6-8.8c-0.3,0-0.6,0-1,0c-20,0-36.4,3.3-49.8,8.5l-19-22.5\r\n\t\t\tC186.1,64.1,185.8,64,185.4,64L185.4,64z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M255,94.3l0.9,0h0h0c14.2,0,27.3,1.9,38.8,5.6l10,4.4c28.7,12.6,39.9,37.4,44.4,55.7H162.8c4.4-18.6,15.6-43.6,44.1-56\r\n\t\t\tl10.3-4.5C228.5,96.1,241.2,94.3,255,94.3 M185.4,64c-0.5,0-1.2,0.2-1.8,0.8c-1.1,0.8-1.7,1.8-1.3,2.5l18.3,22.1\r\n\t\t\tc-48.2,20.9-55.4,71.7-56.4,86.7h223.6c-1.1-15-8.2-65.1-56.6-86.4l18.5-22.2c0.4-0.5-0.2-1.7-1.3-2.6c-0.7-0.5-1.5-0.8-2-0.8\r\n\t\t\tc-0.3,0-0.5,0.1-0.7,0.3l-19.2,22.7c-13.6-5.4-30.2-8.8-50.6-8.8c-0.3,0-0.6,0-1,0c-20,0-36.4,3.3-49.8,8.5l-19-22.5\r\n\t\t\tC186.1,64.1,185.8,64,185.4,64L185.4,64z" + }, + "children": [] + }] + }] + }] + }] + }, { + "name": "path", + "attribs": { + "d": "M206.6,138.9c-7.4,0-13.5-6-13.5-13.3c0-7.3,6-13.3,13.5-13.3c7.4,0,13.5,6,13.5,13.3C220.1,132.9,214.1,138.9,206.6,138.9z\r\n\t" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M305,138.9c-7.4,0-13.5-6-13.5-13.3c0-7.3,6-13.3,13.5-13.3c7.4,0,13.5,6,13.5,13.3C318.5,132.9,312.4,138.9,305,138.9z" + }, + "children": [] + }] +}; +exports.socialAndroidOutline = socialAndroidOutline; \ No newline at end of file diff --git a/dist/ionicons/socialAngular.js b/dist/ionicons/socialAngular.js new file mode 100644 index 000000000..c1e2486e3 --- /dev/null +++ b/dist/ionicons/socialAngular.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialAngular = void 0; +var socialAngular = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "213.573,256 298.419,256 255.992,166.644 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "213.573,256 298.419,256 255.992,166.644 \t" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M255.981,32L32,112l46.12,272L256,480l177.75-96L480,112L255.981,32z M344,352l-26.589-56H194.584L168,352h-40L256,72\r\n\t\tl128,280H344z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M255.981,32L32,112l46.12,272L256,480l177.75-96L480,112L255.981,32z M344,352l-26.589-56H194.584L168,352h-40L256,72\r\n\t\tl128,280H344z" + }, + "children": [] + }] + }] + }] +}; +exports.socialAngular = socialAngular; \ No newline at end of file diff --git a/dist/ionicons/socialAngularOutline.js b/dist/ionicons/socialAngularOutline.js new file mode 100644 index 000000000..c22efa576 --- /dev/null +++ b/dist/ionicons/socialAngularOutline.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialAngularOutline = void 0; +var socialAngularOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M255.982,64l187.967,69.105l-39.17,230.389l-148.881,79.949l-148.812-80.051L68.031,133.11L255.982,64 M255.981,32L32,112\r\n\t\tl46.12,272L256,480l177.75-96L480,112L255.981,32L255.981,32z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M255.982,64l187.967,69.105l-39.17,230.389l-148.881,79.949l-148.812-80.051L68.031,133.11L255.982,64 M255.981,32L32,112\r\n\t\tl46.12,272L256,480l177.75-96L480,112L255.981,32L255.981,32z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M344,352h40L256,72L128,352h40l26.584-56h122.827L344,352z M213.573,256l42.419-89.356L298.419,256H213.573z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M344,352h40L256,72L128,352h40l26.584-56h122.827L344,352z M213.573,256l42.419-89.356L298.419,256H213.573z" + }, + "children": [] + }] + }] + }] +}; +exports.socialAngularOutline = socialAngularOutline; \ No newline at end of file diff --git a/dist/ionicons/socialApple.js b/dist/ionicons/socialApple.js new file mode 100644 index 000000000..343a8a76e --- /dev/null +++ b/dist/ionicons/socialApple.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialApple = void 0; +var socialApple = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M333.6,153.9c-33.6,0-47.8,16.5-71.2,16.5c-24,0-42.3-16.4-71.4-16.4c-28.5,0-58.9,17.9-78.2,48.4\r\n\t\tc-27.1,43-22.5,124,21.4,193c15.7,24.7,36.7,52.4,64.2,52.7c0.2,0,0.3,0,0.5,0c23.9,0,31-16.1,63.9-16.3c0.2,0,0.3,0,0.5,0\r\n\t\tc32.4,0,38.9,16.2,62.7,16.2c0.2,0,0.3,0,0.5,0c27.5-0.3,49.6-31,65.3-55.6c11.3-17.7,15.5-26.6,24.2-46.6\r\n\t\tc-63.5-24.8-73.7-117.4-10.9-152.9C385.9,168.2,359,153.9,333.6,153.9L333.6,153.9z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M333.6,153.9c-33.6,0-47.8,16.5-71.2,16.5c-24,0-42.3-16.4-71.4-16.4c-28.5,0-58.9,17.9-78.2,48.4\r\n\t\tc-27.1,43-22.5,124,21.4,193c15.7,24.7,36.7,52.4,64.2,52.7c0.2,0,0.3,0,0.5,0c23.9,0,31-16.1,63.9-16.3c0.2,0,0.3,0,0.5,0\r\n\t\tc32.4,0,38.9,16.2,62.7,16.2c0.2,0,0.3,0,0.5,0c27.5-0.3,49.6-31,65.3-55.6c11.3-17.7,15.5-26.6,24.2-46.6\r\n\t\tc-63.5-24.8-73.7-117.4-10.9-152.9C385.9,168.2,359,153.9,333.6,153.9L333.6,153.9z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M326.2,64c-20,1.4-43.3,14.5-57,31.6c-12.4,15.5-22.6,38.5-18.6,60.8c0.5,0,1,0,1.6,0c21.3,0,43.1-13.2,55.8-30.1\r\n\t\tC320.3,110.2,329.6,87.4,326.2,64L326.2,64z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M326.2,64c-20,1.4-43.3,14.5-57,31.6c-12.4,15.5-22.6,38.5-18.6,60.8c0.5,0,1,0,1.6,0c21.3,0,43.1-13.2,55.8-30.1\r\n\t\tC320.3,110.2,329.6,87.4,326.2,64L326.2,64z" + }, + "children": [] + }] + }] + }] +}; +exports.socialApple = socialApple; \ No newline at end of file diff --git a/dist/ionicons/socialAppleOutline.js b/dist/ionicons/socialAppleOutline.js new file mode 100644 index 000000000..25f010819 --- /dev/null +++ b/dist/ionicons/socialAppleOutline.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialAppleOutline = void 0; +var socialAppleOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M333.6,169.9c16.3,0,33.2,7.4,47.4,20.4c-9.9,8.5-17.9,18.7-23.7,30.2c-8,16-11.6,34.3-10.2,52.7\r\n\t\tc1.3,18.7,7.6,36.6,18,51.8c8,11.6,18.2,21.2,30,28.3c-5,10.7-9.2,18.4-16.8,30.5c-8.4,13.1-30.5,48-52,48.2l-0.4,0\r\n\t\tc-7.4,0-12.2-2.2-19.3-5.6c-10-4.7-22.3-10.6-43.4-10.6l-0.6,0c-21.1,0.1-33.8,5.9-43.9,10.6c-7.4,3.4-12.3,5.7-19.9,5.7l-0.4,0\r\n\t\tc-19.6-0.2-37.5-24.3-50.8-45.2c-19.3-30.4-31.7-65.6-34.9-99.1c-2.9-30.5,2-58.5,13.5-76.7c8-12.7,18.5-23.3,30.4-30.6\r\n\t\tc11.2-6.8,23-10.4,34.2-10.4c12.4,0,22.7,3.8,33.7,7.8c11.5,4.2,23.5,8.6,37.7,8.6c13.6,0,24.3-4.2,34.6-8.2\r\n\t\tC308,173.9,318.2,169.9,333.6,169.9 M333.6,153.9c-33.6,0-47.8,16.5-71.2,16.5c-24,0-42.3-16.4-71.4-16.4\r\n\t\tc-28.5,0-58.9,17.9-78.2,48.4c-27.1,43-22.5,124,21.4,193c15.7,24.7,36.7,52.4,64.2,52.7c0.2,0,0.3,0,0.5,0\r\n\t\tc23.9,0,31-16.1,63.9-16.3c0.2,0,0.3,0,0.5,0c32.4,0,38.9,16.2,62.7,16.2c0.2,0,0.3,0,0.5,0c27.5-0.3,49.6-31,65.3-55.6\r\n\t\tc11.3-17.7,15.5-26.6,24.2-46.6c-63.5-24.8-73.7-117.4-10.9-152.9C385.9,168.2,359,153.9,333.6,153.9L333.6,153.9z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M333.6,169.9c16.3,0,33.2,7.4,47.4,20.4c-9.9,8.5-17.9,18.7-23.7,30.2c-8,16-11.6,34.3-10.2,52.7\r\n\t\tc1.3,18.7,7.6,36.6,18,51.8c8,11.6,18.2,21.2,30,28.3c-5,10.7-9.2,18.4-16.8,30.5c-8.4,13.1-30.5,48-52,48.2l-0.4,0\r\n\t\tc-7.4,0-12.2-2.2-19.3-5.6c-10-4.7-22.3-10.6-43.4-10.6l-0.6,0c-21.1,0.1-33.8,5.9-43.9,10.6c-7.4,3.4-12.3,5.7-19.9,5.7l-0.4,0\r\n\t\tc-19.6-0.2-37.5-24.3-50.8-45.2c-19.3-30.4-31.7-65.6-34.9-99.1c-2.9-30.5,2-58.5,13.5-76.7c8-12.7,18.5-23.3,30.4-30.6\r\n\t\tc11.2-6.8,23-10.4,34.2-10.4c12.4,0,22.7,3.8,33.7,7.8c11.5,4.2,23.5,8.6,37.7,8.6c13.6,0,24.3-4.2,34.6-8.2\r\n\t\tC308,173.9,318.2,169.9,333.6,169.9 M333.6,153.9c-33.6,0-47.8,16.5-71.2,16.5c-24,0-42.3-16.4-71.4-16.4\r\n\t\tc-28.5,0-58.9,17.9-78.2,48.4c-27.1,43-22.5,124,21.4,193c15.7,24.7,36.7,52.4,64.2,52.7c0.2,0,0.3,0,0.5,0\r\n\t\tc23.9,0,31-16.1,63.9-16.3c0.2,0,0.3,0,0.5,0c32.4,0,38.9,16.2,62.7,16.2c0.2,0,0.3,0,0.5,0c27.5-0.3,49.6-31,65.3-55.6\r\n\t\tc11.3-17.7,15.5-26.6,24.2-46.6c-63.5-24.8-73.7-117.4-10.9-152.9C385.9,168.2,359,153.9,333.6,153.9L333.6,153.9z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M309.9,84.5c-2.7,14.9-10.5,26.8-14.6,32.2c-7.4,9.8-18,17.4-28.8,21.1c0.5-3,1.3-6.1,2.4-9.2c3.5-10.2,8.9-18.2,12.8-23.1\r\n\t\tC288.8,96.7,299.3,89.1,309.9,84.5 M326.2,64c-20,1.4-43.3,14.5-57,31.6c-12.4,15.5-22.6,38.5-18.6,60.8c0.5,0,1,0,1.6,0\r\n\t\tc21.3,0,43.1-13.2,55.8-30.1C320.3,110.2,329.6,87.4,326.2,64L326.2,64z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M309.9,84.5c-2.7,14.9-10.5,26.8-14.6,32.2c-7.4,9.8-18,17.4-28.8,21.1c0.5-3,1.3-6.1,2.4-9.2c3.5-10.2,8.9-18.2,12.8-23.1\r\n\t\tC288.8,96.7,299.3,89.1,309.9,84.5 M326.2,64c-20,1.4-43.3,14.5-57,31.6c-12.4,15.5-22.6,38.5-18.6,60.8c0.5,0,1,0,1.6,0\r\n\t\tc21.3,0,43.1-13.2,55.8-30.1C320.3,110.2,329.6,87.4,326.2,64L326.2,64z" + }, + "children": [] + }] + }] + }] +}; +exports.socialAppleOutline = socialAppleOutline; \ No newline at end of file diff --git a/dist/ionicons/socialBitcoin.js b/dist/ionicons/socialBitcoin.js new file mode 100644 index 000000000..2904a3bb3 --- /dev/null +++ b/dist/ionicons/socialBitcoin.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialBitcoin = void 0; +var socialBitcoin = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M410.5,279.2c-5-11.5-12.7-21.6-28.1-30.1c-8.2-4.5-16.1-7.8-25.4-10c5.4-2.5,10-5.4,16.3-11c7.5-6.6,13.1-15.7,15.6-23.3\r\n\tc2.6-7.5,4.1-18,3.5-28.2c-1.1-16.8-4.4-33.1-13.2-44.8c-8.8-11.7-21.2-20.7-37.6-27c-12.6-4.8-25.5-7.8-45.5-8.9V32h-40v64h-32V32\r\n\th-41v64H96v48h27.9c8.7,0,14.6,0.8,17.6,2.3c3.1,1.5,5.3,3.5,6.5,6c1.3,2.5,1.9,8.4,1.9,17.5V343c0,9-0.6,14.8-1.9,17.4\r\n\tc-1.3,2.6-2,4.9-5.1,6.3c-3.1,1.4-3.2,1.3-11.8,1.3h-26.4L96,416h87v64h41v-64h32v64h40v-64.4c26-1.3,44.5-4.7,59.4-10.3\r\n\tc19.3-7.2,34.1-17.7,44.7-31.5c10.6-13.8,14.9-34.9,15.8-51.2C416.6,308.1,415,289.4,410.5,279.2z M224,150h32v74h-32V150z M224,362\r\n\tv-90h32v90H224z M296,153.9c6,2.5,9.9,7.5,13.8,12.7c4.3,5.7,6.5,13.3,6.5,21.4c0,7.8-2.9,14.5-7.5,20.5c-3.8,4.9-6.8,8.3-12.8,11.1\r\n\tV153.9z M324.8,340.6c-7.8,6.9-12.3,10.1-22.1,13.8c-2,0.8-4.7,1.4-6.7,1.9v-82.8c5,0.8,7.6,1.8,11.3,3.4\r\n\tc7.8,3.3,15.2,6.9,19.8,13.2c4.6,6.3,8,15.6,8,24.7C335.1,325.7,332.3,334,324.8,340.6z" + }, + "children": [] + }] +}; +exports.socialBitcoin = socialBitcoin; \ No newline at end of file diff --git a/dist/ionicons/socialBitcoinOutline.js b/dist/ionicons/socialBitcoinOutline.js new file mode 100644 index 000000000..1fba9ad8c --- /dev/null +++ b/dist/ionicons/socialBitcoinOutline.js @@ -0,0 +1,83 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialBitcoinOutline = void 0; +var socialBitcoinOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M279.7,48v47v15.1l15.1,0.8c16.9,0.9,28.8,3.3,40.7,7.9c13.8,5.3,24.2,12.6,31.1,21.7c5.7,7.6,9,19.4,10,36.2\r\n\t\tc0.6,8.8-1,17.1-2.6,22c-1.5,4.4-5.3,11.3-11.1,16.4c-5.4,4.8-8.6,6.7-12.3,8.4l-42.1,19.3l45,10.8c7.4,1.8,14,4.4,21.4,8.5\r\n\t\tc13.2,7.3,18,15.1,21.2,22.5c2.9,6.7,4.6,22.2,3.9,36.2c-0.7,13.4-4.4,31.5-12.6,42.3c-8.6,11.2-21.3,20.1-37.8,26.3\r\n\t\tc-13.6,5.1-31.1,8.1-54.5,9.3l-15.2,0.7v15.2V464h-8v-48v-16h-16H224h-16v16v48h-9v-48v-16h-16h-67.2l3-16h12.8\r\n\t\tc8.6,0,12.1-0.4,17.5-3c0.2-0.1,0.4-0.2,0.7-0.3c8.1-3.7,11-10.6,12.2-13.6c0.1-0.3,0.3-0.7,0.3-0.8c2.9-5.9,3-13.1,3-24.4v-178\r\n\t\tc0-11.7-0.1-13.6-3.1-19.5c-2.9-5.8-7.3-10.1-13.4-13c-5.9-2.8-13.2-3.4-24.5-3.4h-12.9v-16h71.6h16V96V48h9v48v16h16h31.8h16V96\r\n\t\tV48H279.7 M295.7,32h-39.9v64H224V32h-40.9v64H96v48h28.4c8.7,0,14.5,0.3,17.6,1.8c3.1,1.5,4.7,3.3,6,5.8c1.3,2.5,1.4,3.1,1.4,12.3\r\n\t\tv178c0,9-0.1,14.7-0.9,17.6c-1.2,2.7-2.2,5.2-5.3,6.6c-3.1,1.4-2.9,1.9-11.6,1.9h-27.4L96,416h87.1v64H224v-64h31.8v64h39.9v-65.4\r\n\t\tc26-1.3,44.4-4.7,59.3-10.3c19.3-7.2,34.3-17.7,44.9-31.5c10.5-13.8,15-34.9,15.9-51.2c0.8-14.5-0.7-33.2-5.2-43.4\r\n\t\tc-5-11.5-12.7-21.6-28.1-30.1c-8.1-4.5-16.1-7.8-25.4-10c5.4-2.5,9.9-5.4,16.3-11c7.5-6.6,13-15.7,15.6-23.3\r\n\t\tc2.6-7.5,4.1-18,3.5-28.2c-1.1-16.8-4.4-33.1-13.2-44.8c-8.8-11.7-21.7-20.7-38.1-27c-12.6-4.8-25.5-7.8-45.5-8.9V32L295.7,32z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M279.7,48v47v15.1l15.1,0.8c16.9,0.9,28.8,3.3,40.7,7.9c13.8,5.3,24.2,12.6,31.1,21.7c5.7,7.6,9,19.4,10,36.2\r\n\t\tc0.6,8.8-1,17.1-2.6,22c-1.5,4.4-5.3,11.3-11.1,16.4c-5.4,4.8-8.6,6.7-12.3,8.4l-42.1,19.3l45,10.8c7.4,1.8,14,4.4,21.4,8.5\r\n\t\tc13.2,7.3,18,15.1,21.2,22.5c2.9,6.7,4.6,22.2,3.9,36.2c-0.7,13.4-4.4,31.5-12.6,42.3c-8.6,11.2-21.3,20.1-37.8,26.3\r\n\t\tc-13.6,5.1-31.1,8.1-54.5,9.3l-15.2,0.7v15.2V464h-8v-48v-16h-16H224h-16v16v48h-9v-48v-16h-16h-67.2l3-16h12.8\r\n\t\tc8.6,0,12.1-0.4,17.5-3c0.2-0.1,0.4-0.2,0.7-0.3c8.1-3.7,11-10.6,12.2-13.6c0.1-0.3,0.3-0.7,0.3-0.8c2.9-5.9,3-13.1,3-24.4v-178\r\n\t\tc0-11.7-0.1-13.6-3.1-19.5c-2.9-5.8-7.3-10.1-13.4-13c-5.9-2.8-13.2-3.4-24.5-3.4h-12.9v-16h71.6h16V96V48h9v48v16h16h31.8h16V96\r\n\t\tV48H279.7 M295.7,32h-39.9v64H224V32h-40.9v64H96v48h28.4c8.7,0,14.5,0.3,17.6,1.8c3.1,1.5,4.7,3.3,6,5.8c1.3,2.5,1.4,3.1,1.4,12.3\r\n\t\tv178c0,9-0.1,14.7-0.9,17.6c-1.2,2.7-2.2,5.2-5.3,6.6c-3.1,1.4-2.9,1.9-11.6,1.9h-27.4L96,416h87.1v64H224v-64h31.8v64h39.9v-65.4\r\n\t\tc26-1.3,44.4-4.7,59.3-10.3c19.3-7.2,34.3-17.7,44.9-31.5c10.5-13.8,15-34.9,15.9-51.2c0.8-14.5-0.7-33.2-5.2-43.4\r\n\t\tc-5-11.5-12.7-21.6-28.1-30.1c-8.1-4.5-16.1-7.8-25.4-10c5.4-2.5,9.9-5.4,16.3-11c7.5-6.6,13-15.7,15.6-23.3\r\n\t\tc2.6-7.5,4.1-18,3.5-28.2c-1.1-16.8-4.4-33.1-13.2-44.8c-8.8-11.7-21.7-20.7-38.1-27c-12.6-4.8-25.5-7.8-45.5-8.9V32L295.7,32z" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "256,150 224,150 224,224 256,224 256,150 \t\t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "256,150 224,150 224,224 256,224 256,150 \t\t" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,272h-32v90h32V272L256,272z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,272h-32v90h32V272L256,272z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M296,153.9v65.6c6-2.9,9.5-6.8,13.3-11.7c4.6-6,7-12.9,7-20.7c0-8.1-2.4-15-6.7-20.8C305.7,161.2,302,156.4,296,153.9\r\n\t\t\tL296,153.9z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M296,153.9v65.6c6-2.9,9.5-6.8,13.3-11.7c4.6-6,7-12.9,7-20.7c0-8.1-2.4-15-6.7-20.8C305.7,161.2,302,156.4,296,153.9\r\n\t\t\tL296,153.9z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M296,273.6v82.8c2-0.6,3.8-0.8,5.8-1.6c9.8-3.8,15.8-7.9,23.6-14.7c7.5-6.6,9.7-15.9,9.7-26.6c0-9.1-3.3-16.9-7.9-23.2\r\n\t\t\tc-4.6-6.3-11.7-9.9-19.4-13.2C304.1,275.4,301,274.4,296,273.6L296,273.6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M296,273.6v82.8c2-0.6,3.8-0.8,5.8-1.6c9.8-3.8,15.8-7.9,23.6-14.7c7.5-6.6,9.7-15.9,9.7-26.6c0-9.1-3.3-16.9-7.9-23.2\r\n\t\t\tc-4.6-6.3-11.7-9.9-19.4-13.2C304.1,275.4,301,274.4,296,273.6L296,273.6z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.socialBitcoinOutline = socialBitcoinOutline; \ No newline at end of file diff --git a/dist/ionicons/socialBuffer.js b/dist/ionicons/socialBuffer.js new file mode 100644 index 000000000..c0fb5c354 --- /dev/null +++ b/dist/ionicons/socialBuffer.js @@ -0,0 +1,59 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialBuffer = void 0; +var socialBuffer = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M70.7,164.5l169.2,81.7c4.4,2.1,10.3,3.2,16.1,3.2s11.7-1.1,16.1-3.2l169.2-81.7c8.9-4.3,8.9-11.3,0-15.6L272.1,67.2\r\n\t\t\tc-4.4-2.1-10.3-3.2-16.1-3.2s-11.7,1.1-16.1,3.2L70.7,148.9C61.8,153.2,61.8,160.2,70.7,164.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M70.7,164.5l169.2,81.7c4.4,2.1,10.3,3.2,16.1,3.2s11.7-1.1,16.1-3.2l169.2-81.7c8.9-4.3,8.9-11.3,0-15.6L272.1,67.2\r\n\t\t\tc-4.4-2.1-10.3-3.2-16.1-3.2s-11.7,1.1-16.1,3.2L70.7,148.9C61.8,153.2,61.8,160.2,70.7,164.5z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M441.3,248.2c0,0-30.9-14.9-35-16.9s-5.2-1.9-9.5,0.1s-124.8,60.2-124.8,60.2c-4.5,2.1-10.3,3.2-16.1,3.2\r\n\t\t\ts-11.7-1.1-16.1-3.2c0,0-117.3-56.6-122.8-59.3c-6-2.9-7.7-2.9-13.1-0.3c-5.6,2.7-33.4,16.1-33.4,16.1c-8.9,4.3-8.9,11.3,0,15.6\r\n\t\t\tl169.2,81.7c4.4,2.1,10.3,3.2,16.1,3.2s11.7-1.1,16.1-3.2l169.2-81.7C450.2,259.5,450.2,252.5,441.3,248.2z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M441.3,248.2c0,0-30.9-14.9-35-16.9s-5.2-1.9-9.5,0.1s-124.8,60.2-124.8,60.2c-4.5,2.1-10.3,3.2-16.1,3.2\r\n\t\t\ts-11.7-1.1-16.1-3.2c0,0-117.3-56.6-122.8-59.3c-6-2.9-7.7-2.9-13.1-0.3c-5.6,2.7-33.4,16.1-33.4,16.1c-8.9,4.3-8.9,11.3,0,15.6\r\n\t\t\tl169.2,81.7c4.4,2.1,10.3,3.2,16.1,3.2s11.7-1.1,16.1-3.2l169.2-81.7C450.2,259.5,450.2,252.5,441.3,248.2z" + }, + "children": [] + }] + }] + }] + }, { + "name": "path", + "attribs": { + "d": "M441.3,347.5c0,0-30.9-14.9-35-16.9s-5.2-1.9-9.5,0.1S272.1,391,272.1,391c-4.5,2.1-10.3,3.2-16.1,3.2s-11.7-1.1-16.1-3.2\r\n\t\tc0,0-117.3-56.6-122.8-59.3c-6-2.9-7.7-2.9-13.1-0.3c-5.6,2.7-33.4,16.1-33.4,16.1c-8.9,4.3-8.9,11.3,0,15.6l169.2,81.7\r\n\t\tc4.4,2.2,10.3,3.2,16.1,3.2s11.7-1.1,16.1-3.2l169.2-81.7C450.2,358.8,450.2,351.8,441.3,347.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M441.3,347.5c0,0-30.9-14.9-35-16.9s-5.2-1.9-9.5,0.1S272.1,391,272.1,391c-4.5,2.1-10.3,3.2-16.1,3.2s-11.7-1.1-16.1-3.2\r\n\t\tc0,0-117.3-56.6-122.8-59.3c-6-2.9-7.7-2.9-13.1-0.3c-5.6,2.7-33.4,16.1-33.4,16.1c-8.9,4.3-8.9,11.3,0,15.6l169.2,81.7\r\n\t\tc4.4,2.2,10.3,3.2,16.1,3.2s11.7-1.1,16.1-3.2l169.2-81.7C450.2,358.8,450.2,351.8,441.3,347.5z" + }, + "children": [] + }] + }] + }] +}; +exports.socialBuffer = socialBuffer; \ No newline at end of file diff --git a/dist/ionicons/socialBufferOutline.js b/dist/ionicons/socialBufferOutline.js new file mode 100644 index 000000000..eb42cd1be --- /dev/null +++ b/dist/ionicons/socialBufferOutline.js @@ -0,0 +1,59 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialBufferOutline = void 0; +var socialBufferOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M70.7,164.5l169.2,81.7c4.4,2.1,10.3,3.2,16.1,3.2s11.7-1.1,16.1-3.2l169.2-81.7c8.9-4.3,8.9-11.3,0-15.6L272.1,67.2\r\n\t\t\tc-4.4-2.1-10.3-3.2-16.1-3.2s-11.7,1.1-16.1,3.2L70.7,148.9C61.8,153.2,61.8,160.2,70.7,164.5z M246.8,81.6\r\n\t\t\tc1.6-0.8,4.9-1.6,9.2-1.6c4.3,0,7.5,0.8,9.2,1.6l155.5,75.1l-155.5,75.1c-1.6,0.8-4.9,1.6-9.2,1.6c-4.3,0-7.5-0.8-9.2-1.6\r\n\t\t\tL91.3,156.7L246.8,81.6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M70.7,164.5l169.2,81.7c4.4,2.1,10.3,3.2,16.1,3.2s11.7-1.1,16.1-3.2l169.2-81.7c8.9-4.3,8.9-11.3,0-15.6L272.1,67.2\r\n\t\t\tc-4.4-2.1-10.3-3.2-16.1-3.2s-11.7,1.1-16.1,3.2L70.7,148.9C61.8,153.2,61.8,160.2,70.7,164.5z M246.8,81.6\r\n\t\t\tc1.6-0.8,4.9-1.6,9.2-1.6c4.3,0,7.5,0.8,9.2,1.6l155.5,75.1l-155.5,75.1c-1.6,0.8-4.9,1.6-9.2,1.6c-4.3,0-7.5-0.8-9.2-1.6\r\n\t\t\tL91.3,156.7L246.8,81.6z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M441.3,248.2c0,0-30.9-14.9-35-16.9s-5.2-1.9-9.5,0.1s-124.8,60.2-124.8,60.2c-4.5,2.1-10.3,3.2-16.1,3.2\r\n\t\t\ts-11.7-1.1-16.1-3.2c0,0-117.3-56.6-122.8-59.3c-6-2.9-7.7-2.9-13.1-0.3c-5.6,2.7-33.4,16.1-33.4,16.1c-8.9,4.3-8.9,11.3,0,15.6\r\n\t\t\tl169.2,81.7c4.4,2.1,10.3,3.2,16.1,3.2s11.7-1.1,16.1-3.2l169.2-81.7C450.2,259.5,450.2,252.5,441.3,248.2z M265.2,331.1\r\n\t\t\tc-1.6,0.8-4.9,1.6-9.2,1.6c-4.3,0-7.5-0.8-9.2-1.6L91.3,256l18.9-9.1l122.7,59.3c6.4,3.1,14.6,4.8,23.1,4.8s16.6-1.7,23.1-4.8\r\n\t\t\tl122.7-59.3l18.9,9.1L265.2,331.1z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M441.3,248.2c0,0-30.9-14.9-35-16.9s-5.2-1.9-9.5,0.1s-124.8,60.2-124.8,60.2c-4.5,2.1-10.3,3.2-16.1,3.2\r\n\t\t\ts-11.7-1.1-16.1-3.2c0,0-117.3-56.6-122.8-59.3c-6-2.9-7.7-2.9-13.1-0.3c-5.6,2.7-33.4,16.1-33.4,16.1c-8.9,4.3-8.9,11.3,0,15.6\r\n\t\t\tl169.2,81.7c4.4,2.1,10.3,3.2,16.1,3.2s11.7-1.1,16.1-3.2l169.2-81.7C450.2,259.5,450.2,252.5,441.3,248.2z M265.2,331.1\r\n\t\t\tc-1.6,0.8-4.9,1.6-9.2,1.6c-4.3,0-7.5-0.8-9.2-1.6L91.3,256l18.9-9.1l122.7,59.3c6.4,3.1,14.6,4.8,23.1,4.8s16.6-1.7,23.1-4.8\r\n\t\t\tl122.7-59.3l18.9,9.1L265.2,331.1z" + }, + "children": [] + }] + }] + }] + }, { + "name": "path", + "attribs": { + "d": "M441.3,347.5c0,0-30.9-14.9-35-16.9s-5.2-1.9-9.5,0.1S272.1,391,272.1,391c-4.5,2.1-10.3,3.2-16.1,3.2s-11.7-1.1-16.1-3.2\r\n\t\tc0,0-117.3-56.6-122.8-59.3c-6-2.9-7.7-2.9-13.1-0.3c-5.6,2.7-33.4,16.1-33.4,16.1c-8.9,4.3-8.9,11.3,0,15.6l169.2,81.7\r\n\t\tc4.4,2.2,10.3,3.2,16.1,3.2s11.7-1.1,16.1-3.2l169.2-81.7C450.2,358.8,450.2,351.8,441.3,347.5z M265.2,430.4\r\n\t\tc-1.6,0.8-4.9,1.6-9.2,1.6c-4.3,0-7.5-0.8-9.2-1.6L91.3,355.3l18.9-9.1l122.7,59.3c6.4,3.1,14.6,4.8,23.1,4.8s16.6-1.7,23.1-4.8\r\n\t\tl122.7-59.3l18.9,9.1L265.2,430.4z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M441.3,347.5c0,0-30.9-14.9-35-16.9s-5.2-1.9-9.5,0.1S272.1,391,272.1,391c-4.5,2.1-10.3,3.2-16.1,3.2s-11.7-1.1-16.1-3.2\r\n\t\tc0,0-117.3-56.6-122.8-59.3c-6-2.9-7.7-2.9-13.1-0.3c-5.6,2.7-33.4,16.1-33.4,16.1c-8.9,4.3-8.9,11.3,0,15.6l169.2,81.7\r\n\t\tc4.4,2.2,10.3,3.2,16.1,3.2s11.7-1.1,16.1-3.2l169.2-81.7C450.2,358.8,450.2,351.8,441.3,347.5z M265.2,430.4\r\n\t\tc-1.6,0.8-4.9,1.6-9.2,1.6c-4.3,0-7.5-0.8-9.2-1.6L91.3,355.3l18.9-9.1l122.7,59.3c6.4,3.1,14.6,4.8,23.1,4.8s16.6-1.7,23.1-4.8\r\n\t\tl122.7-59.3l18.9,9.1L265.2,430.4z" + }, + "children": [] + }] + }] + }] +}; +exports.socialBufferOutline = socialBufferOutline; \ No newline at end of file diff --git a/dist/ionicons/socialChrome.js b/dist/ionicons/socialChrome.js new file mode 100644 index 000000000..97f0e3b93 --- /dev/null +++ b/dist/ionicons/socialChrome.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialChrome = void 0; +var socialChrome = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M188.8,255.925c0,36.946,30.243,67.178,67.2,67.178s67.199-30.231,67.199-67.178c0-36.945-30.242-67.179-67.199-67.179\r\n\t\tS188.8,218.98,188.8,255.925z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M188.8,255.925c0,36.946,30.243,67.178,67.2,67.178s67.199-30.231,67.199-67.178c0-36.945-30.242-67.179-67.199-67.179\r\n\t\tS188.8,218.98,188.8,255.925z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M476.752,217.795c-0.009,0.005-0.016,0.038-0.024,0.042c-1.701-9.877-4.04-19.838-6.989-28.838h-0.107\r\n\t\tc2.983,9,5.352,19,7.072,29h-0.002c-1.719-10-4.088-20-7.07-29h-155.39c19.044,17,31.358,40.175,31.358,67.052\r\n\t\tc0,16.796-4.484,31.284-12.314,44.724L231.044,478.452c0,0-0.009,0.264-0.014,0.264l-0.01,0.284c0.005,0,0.009,0,0.015,0\r\n\t\tl-0.005-0.262c8.203,0.92,16.531,1.262,24.97,1.262c6.842,0,13.609-0.393,20.299-1.002c10.135-0.911,20.077-2.519,29.777-4.733\r\n\t\tC405.68,451.525,480,362.404,480,255.941C480,242.942,478.879,230.188,476.752,217.795z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M476.752,217.795c-0.009,0.005-0.016,0.038-0.024,0.042c-1.701-9.877-4.04-19.838-6.989-28.838h-0.107\r\n\t\tc2.983,9,5.352,19,7.072,29h-0.002c-1.719-10-4.088-20-7.07-29h-155.39c19.044,17,31.358,40.175,31.358,67.052\r\n\t\tc0,16.796-4.484,31.284-12.314,44.724L231.044,478.452c0,0-0.009,0.264-0.014,0.264l-0.01,0.284c0.005,0,0.009,0,0.015,0\r\n\t\tl-0.005-0.262c8.203,0.92,16.531,1.262,24.97,1.262c6.842,0,13.609-0.393,20.299-1.002c10.135-0.911,20.077-2.519,29.777-4.733\r\n\t\tC405.68,451.525,480,362.404,480,255.941C480,242.942,478.879,230.188,476.752,217.795z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,345.496c-33.601,0-61.601-17.91-77.285-44.785L76.006,123.047l-0.137-0.236\r\n\t\tc-10.293,13.896-19.015,29.022-25.903,45.123C38.407,194.945,32,224.686,32,255.925c0,62.695,25.784,119.36,67.316,160.009\r\n\t\tc29.342,28.719,66.545,49.433,108.088,58.619l0.029-0.051l77.683-134.604C276.157,343.256,266.085,345.496,256,345.496z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,345.496c-33.601,0-61.601-17.91-77.285-44.785L76.006,123.047l-0.137-0.236\r\n\t\tc-10.293,13.896-19.015,29.022-25.903,45.123C38.407,194.945,32,224.686,32,255.925c0,62.695,25.784,119.36,67.316,160.009\r\n\t\tc29.342,28.719,66.545,49.433,108.088,58.619l0.029-0.051l77.683-134.604C276.157,343.256,266.085,345.496,256,345.496z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M91.292,104.575l77.35,133.25C176.483,197.513,212.315,166,256,166h205.172c-6.921-15-15.594-30.324-25.779-43.938\r\n\t\tc0.039,0.021,0.078,0.053,0.117,0.074C445.644,135.712,454.278,151,461.172,166h0.172c-6.884-15-15.514-30.38-25.668-43.99\r\n\t\tc-0.115-0.06-0.229-0.168-0.342-0.257C394.475,67.267,329.359,32,256,32c-26.372,0-51.673,4.569-75.172,12.936\r\n\t\tc-34.615,12.327-65.303,32.917-89.687,59.406l0.142,0.243C91.286,104.581,91.289,104.578,91.292,104.575z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M91.292,104.575l77.35,133.25C176.483,197.513,212.315,166,256,166h205.172c-6.921-15-15.594-30.324-25.779-43.938\r\n\t\tc0.039,0.021,0.078,0.053,0.117,0.074C445.644,135.712,454.278,151,461.172,166h0.172c-6.884-15-15.514-30.38-25.668-43.99\r\n\t\tc-0.115-0.06-0.229-0.168-0.342-0.257C394.475,67.267,329.359,32,256,32c-26.372,0-51.673,4.569-75.172,12.936\r\n\t\tc-34.615,12.327-65.303,32.917-89.687,59.406l0.142,0.243C91.286,104.581,91.289,104.578,91.292,104.575z" + }, + "children": [] + }] + }] + }] +}; +exports.socialChrome = socialChrome; \ No newline at end of file diff --git a/dist/ionicons/socialChromeOutline.js b/dist/ionicons/socialChromeOutline.js new file mode 100644 index 000000000..134f4135b --- /dev/null +++ b/dist/ionicons/socialChromeOutline.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialChromeOutline = void 0; +var socialChromeOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": { + "id": "Icon" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,32C132.8,32,32,132.8,32,256s100.8,224,224,224s224-100.8,224-224S379.2,32,256,32z M256,76.799\r\n\t\t\tc66.084,0,124.315,35.843,154.558,89.602H256c-43.685,0-79.517,31.358-87.358,71.684l-53.758-92.969\r\n\t\t\tC147.358,103.685,198.884,76.799,256,76.799z M323.2,256c0,36.957-30.243,67.2-67.2,67.2s-67.2-30.243-67.2-67.2\r\n\t\t\ts30.243-67.2,67.2-67.2S323.2,219.043,323.2,256z M76.799,256c0-32.484,8.958-62.716,24.644-89.6L178.715,300.8l0,0\r\n\t\t\tc15.685,26.885,43.685,44.8,77.285,44.8c10.085,0,20.157-2.241,29.116-5.6l-53.758,92.958C144,421.758,76.799,346.715,76.799,256z\r\n\t\t\t M256,435.201L333.285,300.8l0,0c7.831-13.442,12.314-28,12.314-44.8c0-26.885-12.314-50.399-31.358-67.2h107.517\r\n\t\t\tc8.957,21.284,13.443,43.685,13.443,67.2C435.201,354.557,354.557,435.201,256,435.201z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,32C132.8,32,32,132.8,32,256s100.8,224,224,224s224-100.8,224-224S379.2,32,256,32z M256,76.799\r\n\t\t\tc66.084,0,124.315,35.843,154.558,89.602H256c-43.685,0-79.517,31.358-87.358,71.684l-53.758-92.969\r\n\t\t\tC147.358,103.685,198.884,76.799,256,76.799z M323.2,256c0,36.957-30.243,67.2-67.2,67.2s-67.2-30.243-67.2-67.2\r\n\t\t\ts30.243-67.2,67.2-67.2S323.2,219.043,323.2,256z M76.799,256c0-32.484,8.958-62.716,24.644-89.6L178.715,300.8l0,0\r\n\t\t\tc15.685,26.885,43.685,44.8,77.285,44.8c10.085,0,20.157-2.241,29.116-5.6l-53.758,92.958C144,421.758,76.799,346.715,76.799,256z\r\n\t\t\t M256,435.201L333.285,300.8l0,0c7.831-13.442,12.314-28,12.314-44.8c0-26.885-12.314-50.399-31.358-67.2h107.517\r\n\t\t\tc8.957,21.284,13.443,43.685,13.443,67.2C435.201,354.557,354.557,435.201,256,435.201z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.socialChromeOutline = socialChromeOutline; \ No newline at end of file diff --git a/dist/ionicons/socialCodepen.js b/dist/ionicons/socialCodepen.js new file mode 100644 index 000000000..699362461 --- /dev/null +++ b/dist/ionicons/socialCodepen.js @@ -0,0 +1,111 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialCodepen = void 0; +var socialCodepen = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M241.239,303.936c-15.322-10.357-30.742-20.569-46.062-30.93c-2.03-1.373-3.43-1.472-5.502-0.029l-38.871,26.154\r\n\t\tC181.966,319.905,244,361.317,244,361.317v-53.786C243.988,306.307,242.447,304.751,241.239,303.936z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M241.239,303.936c-15.322-10.357-30.742-20.569-46.062-30.93c-2.03-1.373-3.43-1.472-5.502-0.029l-38.871,26.154\r\n\t\tC181.966,319.905,244,361.317,244,361.317v-53.786C243.988,306.307,242.447,304.751,241.239,303.936z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M195.092,240.666c15.454-10.16,30.851-20.409,46.109-30.86c1.486-1.018,2.775-3.509,2.799-5.334v-51.706\r\n\t\tc0,0-62.033,41.124-93.262,61.942c13.7,9.159,26.671,17.913,39.787,26.443C191.545,241.813,193.921,241.435,195.092,240.666z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M195.092,240.666c15.454-10.16,30.851-20.409,46.109-30.86c1.486-1.018,2.775-3.509,2.799-5.334v-51.706\r\n\t\tc0,0-62.033,41.124-93.262,61.942c13.7,9.159,26.671,17.913,39.787,26.443C191.545,241.813,193.921,241.435,195.092,240.666z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M269.838,209.354c15.811,10.703,31.683,21.314,47.627,31.815c0.916,0.604,2.92,0.602,3.839,0l39.751-26.467L268,152.484\r\n\t\tv53.35C268.01,207.035,268.805,208.655,269.838,209.354z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M269.838,209.354c15.811,10.703,31.683,21.314,47.627,31.815c0.916,0.604,2.92,0.602,3.839,0l39.751-26.467L268,152.484\r\n\t\tv53.35C268.01,207.035,268.805,208.655,269.838,209.354z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M258.109,230.369c-1.21-0.802-3.611-0.528-4.743,0.168c-4.817,2.962-9.463,6.203-14.164,9.355\r\n\t\tc-8.248,5.53-25.356,17.023-25.356,17.023l38.842,25.865c1.748,1.157,4.436,1.22,6.26,0.111l39.014-25.993\r\n\t\tC297.963,256.898,263.883,234.197,258.109,230.369z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M258.109,230.369c-1.21-0.802-3.611-0.528-4.743,0.168c-4.817,2.962-9.463,6.203-14.164,9.355\r\n\t\tc-8.248,5.53-25.356,17.023-25.356,17.023l38.842,25.865c1.748,1.157,4.436,1.22,6.26,0.111l39.014-25.993\r\n\t\tC297.963,256.898,263.883,234.197,258.109,230.369z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "141,237.116 141,276.725 170.622,256.887 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "141,237.116 141,276.725 170.622,256.887 \t" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,32C132.288,32,32,132.288,32,256s100.288,224,224,224s224-100.288,224-224S379.712,32,256,32z M395,297.006\r\n\t\tc0,5.785-2.652,9.868-7.511,13.094c-41.142,27.314-82.251,54.714-123.286,82.188c-5.854,3.918-11.174,3.754-16.984-0.137\r\n\t\tc-40.783-27.314-81.719-54.546-122.625-81.676c-5.11-3.389-7.594-7.557-7.594-13.73v-79.729c0-6.141,2.521-10.332,7.624-13.716\r\n\t\tc40.906-27.13,81.939-54.363,122.724-81.676c5.818-3.896,11.094-4.007,16.938-0.095c41.036,27.474,82.126,54.869,123.261,82.195\r\n\t\tc4.678,3.106,7.453,6.943,7.453,12.66V297.006z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,32C132.288,32,32,132.288,32,256s100.288,224,224,224s224-100.288,224-224S379.712,32,256,32z M395,297.006\r\n\t\tc0,5.785-2.652,9.868-7.511,13.094c-41.142,27.314-82.251,54.714-123.286,82.188c-5.854,3.918-11.174,3.754-16.984-0.137\r\n\t\tc-40.783-27.314-81.719-54.546-122.625-81.676c-5.11-3.389-7.594-7.557-7.594-13.73v-79.729c0-6.141,2.521-10.332,7.624-13.716\r\n\t\tc40.906-27.13,81.939-54.363,122.724-81.676c5.818-3.896,11.094-4.007,16.938-0.095c41.036,27.474,82.126,54.869,123.261,82.195\r\n\t\tc4.678,3.106,7.453,6.943,7.453,12.66V297.006z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M316.247,273.234c-15.054,10.222-30.188,20.326-45.386,30.332c-2.412,1.588-2.888,3.318-2.861,6.189v51.346l93.039-62.004\r\n\t\tl-38.527-25.882C320.167,271.611,318.582,271.648,316.247,273.234z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M316.247,273.234c-15.054,10.222-30.188,20.326-45.386,30.332c-2.412,1.588-2.888,3.318-2.861,6.189v51.346l93.039-62.004\r\n\t\tl-38.527-25.882C320.167,271.611,318.582,271.648,316.247,273.234z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "370,276.676 370,237.06 340.41,256.933 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "370,276.676 370,237.06 340.41,256.933 \t" + }, + "children": [] + }] + }] + }] +}; +exports.socialCodepen = socialCodepen; \ No newline at end of file diff --git a/dist/ionicons/socialCodepenOutline.js b/dist/ionicons/socialCodepenOutline.js new file mode 100644 index 000000000..aafb5abf4 --- /dev/null +++ b/dist/ionicons/socialCodepenOutline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialCodepenOutline = void 0; +var socialCodepenOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M387.547,203.724c-41.135-27.326-82.225-54.721-123.261-82.195\r\n\t\tc-5.844-3.912-11.12-3.802-16.938,0.095c-40.785,27.313-81.818,54.546-122.724,81.676c-5.103,3.384-7.624,7.575-7.624,13.716\r\n\t\tv79.729c0,6.174,2.484,10.342,7.594,13.73c40.906,27.13,81.841,54.361,122.625,81.676c5.81,3.891,11.131,4.055,16.984,0.137\r\n\t\tc41.035-27.474,82.145-54.873,123.286-82.188c4.858-3.226,7.511-7.309,7.511-13.094v-80.623\r\n\t\tC395,210.667,392.225,206.83,387.547,203.724z M268,152.484l93.055,62.218l-39.751,26.467c-0.919,0.603-2.923,0.604-3.839,0\r\n\t\tc-15.944-10.501-31.816-21.113-47.627-31.815c-1.033-0.699-1.828-2.319-1.838-3.52V152.484z M244,152.765v51.706\r\n\t\tc-0.024,1.825-1.313,4.316-2.799,5.334c-15.258,10.451-30.655,20.701-46.109,30.86c-1.17,0.77-3.547,1.148-4.566,0.485\r\n\t\tc-13.116-8.531-26.087-17.284-39.787-26.443C181.967,193.889,244,152.765,244,152.765z M141,237.116l29.622,19.771L141,276.725\r\n\t\tV237.116z M244,361.317c0,0-62.034-41.412-93.196-62.187l38.871-26.154c2.072-1.442,3.473-1.344,5.502,0.029\r\n\t\tc15.32,10.36,30.74,20.572,46.062,30.93c1.208,0.815,2.749,2.371,2.761,3.596V361.317z M258.949,282.892\r\n\t\tc-1.824,1.108-4.512,1.046-6.26-0.111l-38.842-25.865c0,0,17.108-11.493,25.356-17.023c4.701-3.152,9.346-6.393,14.164-9.355\r\n\t\tc1.132-0.696,3.532-0.97,4.743-0.168c5.773,3.829,39.854,26.53,39.854,26.53L258.949,282.892z M268,361.102v-51.346\r\n\t\tc-0.026-2.871,0.449-4.602,2.861-6.189c15.198-10.006,30.332-20.11,45.386-30.332c2.335-1.586,3.92-1.623,6.265-0.019\r\n\t\tl38.527,25.882L268,361.102z M370,276.676l-29.59-19.743L370,237.06V276.676z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M387.547,203.724c-41.135-27.326-82.225-54.721-123.261-82.195\r\n\t\tc-5.844-3.912-11.12-3.802-16.938,0.095c-40.785,27.313-81.818,54.546-122.724,81.676c-5.103,3.384-7.624,7.575-7.624,13.716\r\n\t\tv79.729c0,6.174,2.484,10.342,7.594,13.73c40.906,27.13,81.841,54.361,122.625,81.676c5.81,3.891,11.131,4.055,16.984,0.137\r\n\t\tc41.035-27.474,82.145-54.873,123.286-82.188c4.858-3.226,7.511-7.309,7.511-13.094v-80.623\r\n\t\tC395,210.667,392.225,206.83,387.547,203.724z M268,152.484l93.055,62.218l-39.751,26.467c-0.919,0.603-2.923,0.604-3.839,0\r\n\t\tc-15.944-10.501-31.816-21.113-47.627-31.815c-1.033-0.699-1.828-2.319-1.838-3.52V152.484z M244,152.765v51.706\r\n\t\tc-0.024,1.825-1.313,4.316-2.799,5.334c-15.258,10.451-30.655,20.701-46.109,30.86c-1.17,0.77-3.547,1.148-4.566,0.485\r\n\t\tc-13.116-8.531-26.087-17.284-39.787-26.443C181.967,193.889,244,152.765,244,152.765z M141,237.116l29.622,19.771L141,276.725\r\n\t\tV237.116z M244,361.317c0,0-62.034-41.412-93.196-62.187l38.871-26.154c2.072-1.442,3.473-1.344,5.502,0.029\r\n\t\tc15.32,10.36,30.74,20.572,46.062,30.93c1.208,0.815,2.749,2.371,2.761,3.596V361.317z M258.949,282.892\r\n\t\tc-1.824,1.108-4.512,1.046-6.26-0.111l-38.842-25.865c0,0,17.108-11.493,25.356-17.023c4.701-3.152,9.346-6.393,14.164-9.355\r\n\t\tc1.132-0.696,3.532-0.97,4.743-0.168c5.773,3.829,39.854,26.53,39.854,26.53L258.949,282.892z M268,361.102v-51.346\r\n\t\tc-0.026-2.871,0.449-4.602,2.861-6.189c15.198-10.006,30.332-20.11,45.386-30.332c2.335-1.586,3.92-1.623,6.265-0.019\r\n\t\tl38.527,25.882L268,361.102z M370,276.676l-29.59-19.743L370,237.06V276.676z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,64c51.285,0,99.5,19.972,135.765,56.235C428.028,156.5,448,204.715,448,256s-19.972,99.5-56.235,135.765\r\n\t\tC355.5,428.028,307.285,448,256,448s-99.5-19.972-135.765-56.235C83.972,355.5,64,307.285,64,256s19.972-99.5,56.235-135.765\r\n\t\tC156.5,83.972,204.715,64,256,64 M256,32C132.288,32,32,132.288,32,256s100.288,224,224,224s224-100.288,224-224S379.712,32,256,32\r\n\t\tL256,32z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,64c51.285,0,99.5,19.972,135.765,56.235C428.028,156.5,448,204.715,448,256s-19.972,99.5-56.235,135.765\r\n\t\tC355.5,428.028,307.285,448,256,448s-99.5-19.972-135.765-56.235C83.972,355.5,64,307.285,64,256s19.972-99.5,56.235-135.765\r\n\t\tC156.5,83.972,204.715,64,256,64 M256,32C132.288,32,32,132.288,32,256s100.288,224,224,224s224-100.288,224-224S379.712,32,256,32\r\n\t\tL256,32z" + }, + "children": [] + }] + }] + }] +}; +exports.socialCodepenOutline = socialCodepenOutline; \ No newline at end of file diff --git a/dist/ionicons/socialCss3.js b/dist/ionicons/socialCss3.js new file mode 100644 index 000000000..9afc76729 --- /dev/null +++ b/dist/ionicons/socialCss3.js @@ -0,0 +1,53 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialCss3 = void 0; +var socialCss3 = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": { + "transform": "translate(336 96)" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "icon-css3" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "icon-css3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M-79.718,243.488L-79.718,243.488z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M-79.718,243.488L-79.718,243.488z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M-272-64l34.946,403.219L-80.233,384l157.259-44.85L112-64H-272z M18.676,270.898l-98.607,28.125l-98.458-28.248\r\n\t\t\tL-185.136,193h48.253l3.433,39.562l53.586,15.163l0.132,0.273h0.034l53.467-14.852L-20.619,169H-133l-4-50h120.646l4.396-51H-196\r\n\t\t\tl-4-49H40.58L18.676,270.898z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M-272-64l34.946,403.219L-80.233,384l157.259-44.85L112-64H-272z M18.676,270.898l-98.607,28.125l-98.458-28.248\r\n\t\t\tL-185.136,193h48.253l3.433,39.562l53.586,15.163l0.132,0.273h0.034l53.467-14.852L-20.619,169H-133l-4-50h120.646l4.396-51H-196\r\n\t\t\tl-4-49H40.58L18.676,270.898z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.socialCss3 = socialCss3; \ No newline at end of file diff --git a/dist/ionicons/socialCss3Outline.js b/dist/ionicons/socialCss3Outline.js new file mode 100644 index 000000000..d5d101cbe --- /dev/null +++ b/dist/ionicons/socialCss3Outline.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialCss3Outline = void 0; +var socialCss3Outline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M354.676,366.898l-98.608,28.125l-98.458-28.248L150.864,289h48.253l3.433,39.563l53.586,15.163l0.132,0.273h0.034\r\n\t\tl53.467-14.852L315.381,265H203l-4-50h120.646l4.396-51H140l-4-49h240.58L354.676,366.898z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M354.676,366.898l-98.608,28.125l-98.458-28.248L150.864,289h48.253l3.433,39.563l53.586,15.163l0.132,0.273h0.034\r\n\t\tl53.467-14.852L315.381,265H203l-4-50h120.646l4.396-51H140l-4-49h240.58L354.676,366.898z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M64,32l34.936,403.301L255.769,480l157.245-44.705L448,32H64z M383.041,410.51l-127.262,36.187l-126.867-36.169L98.896,64\r\n\t\tH413.1L383.041,410.51z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M64,32l34.936,403.301L255.769,480l157.245-44.705L448,32H64z M383.041,410.51l-127.262,36.187l-126.867-36.169L98.896,64\r\n\t\tH413.1L383.041,410.51z" + }, + "children": [] + }] + }] + }] +}; +exports.socialCss3Outline = socialCss3Outline; \ No newline at end of file diff --git a/dist/ionicons/socialDesignernews.js b/dist/ionicons/socialDesignernews.js new file mode 100644 index 000000000..298e2759d --- /dev/null +++ b/dist/ionicons/socialDesignernews.js @@ -0,0 +1,75 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialDesignernews = void 0; +var socialDesignernews = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "290.4,145 227,96 290.6,198.2 \t\t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "290.4,145 227,96 290.6,198.2 \t\t" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M329,96v79.6V259h-36.4l-63.2-98.6l1.7,98.6H191V152l-37.3-29.3c1,1.2,2,2.4,2.9,3.7c10,13.9,15,30.5,15,50.5\r\n\t\t\tc0,49.2-30.6,82.1-76.9,82.1H32v0.4L231.6,416H480V214.1L329,96z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M329,96v79.6V259h-36.4l-63.2-98.6l1.7,98.6H191V152l-37.3-29.3c1,1.2,2,2.4,2.9,3.7c10,13.9,15,30.5,15,50.5\r\n\t\t\tc0,49.2-30.6,82.1-76.9,82.1H32v0.4L231.6,416H480V214.1L329,96z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M129.9,178.1c0-29-14.2-45.1-39.7-45.1H71v89h19C116,222,129.9,206.6,129.9,178.1z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M129.9,178.1c0-29-14.2-45.1-39.7-45.1H71v89h19C116,222,129.9,206.6,129.9,178.1z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.socialDesignernews = socialDesignernews; \ No newline at end of file diff --git a/dist/ionicons/socialDesignernewsOutline.js b/dist/ionicons/socialDesignernewsOutline.js new file mode 100644 index 000000000..a8f09b30d --- /dev/null +++ b/dist/ionicons/socialDesignernewsOutline.js @@ -0,0 +1,71 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialDesignernewsOutline = void 0; +var socialDesignernewsOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "290.9,145.9 226.5,96 291.1,198.8 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "290.9,145.9 226.5,96 291.1,198.8 \t" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M32.5,260" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M32.5,260" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M329,96v80.3V260h-35.9l-63.2-98l1.7,98H191V152.9l-37.1-29.1c1,1.2,2.1,2.4,3,3.6c10,13.8,15,30.7,15,50.5\r\n\t\t\tc0,48.9-30.5,82-76.8,82H32l200.1,156H480V214.7L329,96z M464,400H237.7L78.6,276h16.5c13.5,0,26.2-2.7,37.7-7.4\r\n\t\t\tc11.5-4.7,21.4-11.8,29.8-20.7c4.8-5.1,9.4-11,12.4-17.1v28.7V276h16.2h40.4H248l-0.3-16.5l-0.7-41.9l32.6,50.7l4.7,7.6h8.8h36.8\r\n\t\t\tH345v-16.5v-83.1v-47l0.2,0.3L464,222.4V400z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M329,96v80.3V260h-35.9l-63.2-98l1.7,98H191V152.9l-37.1-29.1c1,1.2,2.1,2.4,3,3.6c10,13.8,15,30.7,15,50.5\r\n\t\t\tc0,48.9-30.5,82-76.8,82H32l200.1,156H480V214.7L329,96z M464,400H237.7L78.6,276h16.5c13.5,0,26.2-2.7,37.7-7.4\r\n\t\t\tc11.5-4.7,21.4-11.8,29.8-20.7c4.8-5.1,9.4-11,12.4-17.1v28.7V276h16.2h40.4H248l-0.3-16.5l-0.7-41.9l32.6,50.7l4.7,7.6h8.8h36.8\r\n\t\t\tH345v-16.5v-83.1v-47l0.2,0.3L464,222.4V400z" + }, + "children": [] + }] + }] + }] + }, { + "name": "path", + "attribs": { + "d": "M90.6,150.4c11,0,23.7,3.2,23.7,28.8c0,6.9-1,16.3-6,21.8c-3.6,3.9-9.6,6-17.7,6H87v-57h3 M90.7,134H71v89h19.5\r\n\t\tc26,0,39.9-15.6,39.9-43.9C130.4,150.3,116.1,134,90.7,134L90.7,134z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M90.6,150.4c11,0,23.7,3.2,23.7,28.8c0,6.9-1,16.3-6,21.8c-3.6,3.9-9.6,6-17.7,6H87v-57h3 M90.7,134H71v89h19.5\r\n\t\tc26,0,39.9-15.6,39.9-43.9C130.4,150.3,116.1,134,90.7,134L90.7,134z" + }, + "children": [] + }] + }] + }] +}; +exports.socialDesignernewsOutline = socialDesignernewsOutline; \ No newline at end of file diff --git a/dist/ionicons/socialDribbble.js b/dist/ionicons/socialDribbble.js new file mode 100644 index 000000000..0d083a63a --- /dev/null +++ b/dist/ionicons/socialDribbble.js @@ -0,0 +1,115 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialDribbble = void 0; +var socialDribbble = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,64C150,64,64,150,64,256c0,106.1,86,192,192,192s192-85.9,192-192C448,150,362,64,256,64z M256,415.5\r\n\t\t\tc-88.1,0-159.5-71.4-159.5-159.5c0-88.1,71.4-159.5,159.5-159.5c88.1,0,159.5,71.4,159.5,159.5C415.5,344.1,344.1,415.5,256,415.5\r\n\t\t\tz" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,64C150,64,64,150,64,256c0,106.1,86,192,192,192s192-85.9,192-192C448,150,362,64,256,64z M256,415.5\r\n\t\t\tc-88.1,0-159.5-71.4-159.5-159.5c0-88.1,71.4-159.5,159.5-159.5c88.1,0,159.5,71.4,159.5,159.5C415.5,344.1,344.1,415.5,256,415.5\r\n\t\t\tz" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M306.3,246.7c23.4-2.2,50.9-2.9,77.2-2.4c-2.3-25.4-12-48.7-27-67.6c-16.5,14.9-38,28.1-63.3,39\r\n\t\t\tC297.8,225.7,302.1,236.1,306.3,246.7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M306.3,246.7c23.4-2.2,50.9-2.9,77.2-2.4c-2.3-25.4-12-48.7-27-67.6c-16.5,14.9-38,28.1-63.3,39\r\n\t\t\tC297.8,225.7,302.1,236.1,306.3,246.7z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M335.4,155.6C313.6,138.3,286,128,256,128c-5.1,0-10.2,0.3-15.2,0.9c13.8,17.7,26.7,37.6,38.6,59.5\r\n\t\t\tC301.1,179.2,320,168.1,335.4,155.6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M335.4,155.6C313.6,138.3,286,128,256,128c-5.1,0-10.2,0.3-15.2,0.9c13.8,17.7,26.7,37.6,38.6,59.5\r\n\t\t\tC301.1,179.2,320,168.1,335.4,155.6z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M205.9,138.2c-34.1,14.5-60.7,43.4-72,79.1c41.1-0.7,79.6-7,113.4-17.3C234.7,177,220.7,156.3,205.9,138.2z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M205.9,138.2c-34.1,14.5-60.7,43.4-72,79.1c41.1-0.7,79.6-7,113.4-17.3C234.7,177,220.7,156.3,205.9,138.2z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M383,272.2c-22.3-0.6-46-0.2-66.9,1.5c4.1,12.3,8.1,24.9,11.5,37.9c3.8,14.6,7,29.1,9.6,43.4\r\n\t\t\tC361.8,334.7,378.8,305.4,383,272.2z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M383,272.2c-22.3-0.6-46-0.2-66.9,1.5c4.1,12.3,8.1,24.9,11.5,37.9c3.8,14.6,7,29.1,9.6,43.4\r\n\t\t\tC361.8,334.7,378.8,305.4,383,272.2z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M258,256.1c3.9-1.6,8.8-3,14.3-4.3c-3.4-8.3-7.1-16.4-10.8-24.3c-39.1,12.6-84.6,20.3-133.3,21.3\r\n\t\t\tc-0.1,2.4-0.2,4.8-0.2,7.3c0,29.1,9.7,55.9,26,77.4C178.9,301,214.9,274.2,258,256.1z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M258,256.1c3.9-1.6,8.8-3,14.3-4.3c-3.4-8.3-7.1-16.4-10.8-24.3c-39.1,12.6-84.6,20.3-133.3,21.3\r\n\t\t\tc-0.1,2.4-0.2,4.8-0.2,7.3c0,29.1,9.7,55.9,26,77.4C178.9,301,214.9,274.2,258,256.1z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M282.6,278.2c-6.9,1.5-12.9,3.2-17.4,5.3c-37.1,16.8-68.3,41.6-90.4,71.5c22.1,18.2,50.4,29,81.2,29\r\n\t\t\tc18.5,0,36-3.9,51.8-10.9c-2.7-15.1-6-30.3-10-45.7C293.4,310.5,288.2,294,282.6,278.2z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M282.6,278.2c-6.9,1.5-12.9,3.2-17.4,5.3c-37.1,16.8-68.3,41.6-90.4,71.5c22.1,18.2,50.4,29,81.2,29\r\n\t\t\tc18.5,0,36-3.9,51.8-10.9c-2.7-15.1-6-30.3-10-45.7C293.4,310.5,288.2,294,282.6,278.2z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.socialDribbble = socialDribbble; \ No newline at end of file diff --git a/dist/ionicons/socialDribbbleOutline.js b/dist/ionicons/socialDribbbleOutline.js new file mode 100644 index 000000000..d295a3da6 --- /dev/null +++ b/dist/ionicons/socialDribbbleOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialDribbbleOutline = void 0; +var socialDribbbleOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,64C150,64,64,150,64,256c0,106.1,86,192,192,192s192-85.9,192-192C448,150,362,64,256,64z M377.9,152.5\r\n\tc21.6,25.4,35.3,57.6,37.7,92.9c-34.6-1.8-76-1.8-109.2,1.3c-4.2-10.6-8.5-21-13.2-31C331.5,199.1,361,177.3,377.9,152.5z M256,96\r\n\tc38.8,0,74.4,13.8,102.1,36.8c-17.4,22-44.7,41.1-78.7,55.6c-18.6-34.4-40-64-62.8-87.3C229.3,97.9,242.4,96,256,96z M183.6,113.5\r\n\tc23.1,23,44.8,52.3,63.8,86.6c-36.1,11-77.5,17.3-121.7,17.3c-8.4,0-16.6-0.3-24.7-0.8C112.5,171.5,143,134.1,183.6,113.5z\r\n\t M96.3,248.4c9.1,0.4,18.3,0.6,27.6,0.5c50.4-0.6,97.3-8.5,137.6-21.4c3.8,7.9,7.4,16,10.8,24.3c-5.5,1.3-10.4,2.7-14.3,4.3\r\n\tc-55.1,23.1-98.5,60.4-122,105.5c-24.8-28.2-40-65.1-40-105.6C96,253.4,96.1,250.9,96.3,248.4z M256,416c-37,0-71-12.6-98.1-33.7\r\n\tc21.3-42.2,59.3-77.1,107.2-98.8c4.5-2.1,10.5-3.8,17.4-5.3c5.7,15.8,10.8,32.2,15.3,49.2c6.9,26.5,11.8,52.7,14.8,78.1\r\n\tC295,412.2,276,416,256,416z M342.5,390.5c-3-25.7-7.9-52.1-14.9-78.9c-3.4-13-7.3-25.6-11.5-37.9c31.4-2.6,69-2.2,98.9,0\r\n\tC409.6,322.8,382,365,342.5,390.5z" + }, + "children": [] + }] +}; +exports.socialDribbbleOutline = socialDribbbleOutline; \ No newline at end of file diff --git a/dist/ionicons/socialDropbox.js b/dist/ionicons/socialDropbox.js new file mode 100644 index 000000000..543575c4c --- /dev/null +++ b/dist/ionicons/socialDropbox.js @@ -0,0 +1,75 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialDropbox = void 0; +var socialDropbox = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "177,77 64,150.9 142.1,213.6 256,143.1 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "177,77 64,150.9 142.1,213.6 256,143.1 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "64,276.3 177,350.2 256,284.1 142.1,213.6 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "64,276.3 177,350.2 256,284.1 142.1,213.6 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "256,284.1 335,350.2 448,276.3 369.9,213.6 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "256,284.1 335,350.2 448,276.3 369.9,213.6 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "448,150.9 335,77 256,143.1 369.9,213.6 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "448,150.9 335,77 256,143.1 369.9,213.6 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "256.2,298.3 176.4,364.3 142,342.1 142,367 256,435 370,367 370,342.1 335.8,364.3 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "256.2,298.3 176.4,364.3 142,342.1 142,367 256,435 370,367 370,342.1 335.8,364.3 \t" + }, + "children": [] + }] + }] + }] +}; +exports.socialDropbox = socialDropbox; \ No newline at end of file diff --git a/dist/ionicons/socialDropboxOutline.js b/dist/ionicons/socialDropboxOutline.js new file mode 100644 index 000000000..9576dc78c --- /dev/null +++ b/dist/ionicons/socialDropboxOutline.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialDropboxOutline = void 0; +var socialDropboxOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M177,77.1L64,151l78.3,63L256,143.2L177,77.1z M91.4,153.3l84.5-56.8l52.9,46L143.4,195L91.4,153.3z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M177,77.1L64,151l78.3,63L256,143.2L177,77.1z M91.4,153.3l84.5-56.8l52.9,46L143.4,195L91.4,153.3z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M369.8,213L256,284.1l79,66.1l19-12.6v20.2L256,417l-98-58.5V338l19,12.2l79-66.1L142.2,213L64,276.3l78,51.5v39.4\r\n\t\tl114,67.8l114-68.5v-39.2l78-51.2L369.8,213z M143.4,230.9l85.4,55.4l-52.9,44.1l-84.5-55.8L143.4,230.9z M283.2,286.3l85.4-55.4\r\n\t\tl52.1,43.6l-84.5,55.8L283.2,286.3z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M369.8,213L256,284.1l79,66.1l19-12.6v20.2L256,417l-98-58.5V338l19,12.2l79-66.1L142.2,213L64,276.3l78,51.5v39.4\r\n\t\tl114,67.8l114-68.5v-39.2l78-51.2L369.8,213z M143.4,230.9l85.4,55.4l-52.9,44.1l-84.5-55.8L143.4,230.9z M283.2,286.3l85.4-55.4\r\n\t\tl52.1,43.6l-84.5,55.8L283.2,286.3z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M448,151L335,77.1l-79,66.1l113.8,70.8L448,151z M283.2,142.6l52.9-46l84.5,56.8L368.6,195L283.2,142.6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M448,151L335,77.1l-79,66.1l113.8,70.8L448,151z M283.2,142.6l52.9-46l84.5,56.8L368.6,195L283.2,142.6z" + }, + "children": [] + }] + }] + }] +}; +exports.socialDropboxOutline = socialDropboxOutline; \ No newline at end of file diff --git a/dist/ionicons/socialEuro.js b/dist/ionicons/socialEuro.js new file mode 100644 index 000000000..e955cfde7 --- /dev/null +++ b/dist/ionicons/socialEuro.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialEuro = void 0; +var socialEuro = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M234,272v-48h131.094l7.149-48H234v-1.83c0-35.92,14.975-58.086,79.25-58.086c26.264,0,55.867,2.498,93.189,8.742\r\n\t\tL416,59.866C377.988,51.123,345.306,48,310.057,48C195.326,48,146,89.225,146,165.43V176H96v48h50v48H96v48h50v26.57\r\n\t\tC146,422.774,195.297,464,310.027,464c35.25,0,67.848-3.123,105.859-11.866l-9.619-64.96c-37.322,6.244-66.781,8.742-93.045,8.742\r\n\t\tc-64.276,0-79.223-18.739-79.223-63.086V320h116.795l7.148-48H234z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M234,272v-48h131.094l7.149-48H234v-1.83c0-35.92,14.975-58.086,79.25-58.086c26.264,0,55.867,2.498,93.189,8.742\r\n\t\tL416,59.866C377.988,51.123,345.306,48,310.057,48C195.326,48,146,89.225,146,165.43V176H96v48h50v48H96v48h50v26.57\r\n\t\tC146,422.774,195.297,464,310.027,464c35.25,0,67.848-3.123,105.859-11.866l-9.619-64.96c-37.322,6.244-66.781,8.742-93.045,8.742\r\n\t\tc-64.276,0-79.223-18.739-79.223-63.086V320h116.795l7.148-48H234z" + }, + "children": [] + }] + }] + }] +}; +exports.socialEuro = socialEuro; \ No newline at end of file diff --git a/dist/ionicons/socialEuroOutline.js b/dist/ionicons/socialEuroOutline.js new file mode 100644 index 000000000..912af12b7 --- /dev/null +++ b/dist/ionicons/socialEuroOutline.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialEuroOutline = void 0; +var socialEuroOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M310.143,64c31.337,0,59.096,2.607,88.137,8.364l-5.06,34.148c-29.405-4.319-55.659-6.429-79.853-6.429\r\n\t\tc-35.025,0-58.535,6.153-74.129,19.365C220.142,135.627,218,158.428,218,174.17v2.33V193h15.867h120.184l-2.383,16H233.867H218\r\n\t\tv15.5v48V289h15.867h105.885l-2.384,16H233.867H218v15.5v12.33c0,19.546,2.338,44.061,21.084,60.274\r\n\t\tc15.042,13.01,37.921,18.812,74.258,18.812c24.534,0,50.197-2.055,79.771-6.42l5.014,34.138\r\n\t\tc-29.031,5.759-56.741,8.366-87.977,8.366c-52.591,0-91.43-9.08-115.565-26.987C172.615,404.711,162,380.361,162,346.57V320.5V305\r\n\t\th-16.133H112v-16h33.867H162v-16.5v-48V209h-16.133H112v-16h33.867H162v-16.5v-11.07c0-33.791,10.613-58.142,32.582-74.442\r\n\t\tC218.715,73.08,257.552,64,310.143,64 M310.209,48C195.479,48,146,89.225,146,165.43V177H96v48h50v48H96v48h50v25.57\r\n\t\tC146,422.774,195.481,464,310.211,464c35.25,0,67.777-3.123,105.789-11.866l-9.411-64.96c-37.323,6.244-66.942,8.742-93.206,8.742\r\n\t\tc-64.275,0-79.383-18.739-79.383-63.086V321h117.162l7.148-48H234v-48h131.461l7.149-48H234v-2.83\r\n\t\tc0-35.92,15.159-58.086,79.434-58.086c26.264,0,55.959,2.498,93.281,8.742L416,60C377.988,51.257,345.458,48,310.209,48L310.209,48\r\n\t\tz" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M310.143,64c31.337,0,59.096,2.607,88.137,8.364l-5.06,34.148c-29.405-4.319-55.659-6.429-79.853-6.429\r\n\t\tc-35.025,0-58.535,6.153-74.129,19.365C220.142,135.627,218,158.428,218,174.17v2.33V193h15.867h120.184l-2.383,16H233.867H218\r\n\t\tv15.5v48V289h15.867h105.885l-2.384,16H233.867H218v15.5v12.33c0,19.546,2.338,44.061,21.084,60.274\r\n\t\tc15.042,13.01,37.921,18.812,74.258,18.812c24.534,0,50.197-2.055,79.771-6.42l5.014,34.138\r\n\t\tc-29.031,5.759-56.741,8.366-87.977,8.366c-52.591,0-91.43-9.08-115.565-26.987C172.615,404.711,162,380.361,162,346.57V320.5V305\r\n\t\th-16.133H112v-16h33.867H162v-16.5v-48V209h-16.133H112v-16h33.867H162v-16.5v-11.07c0-33.791,10.613-58.142,32.582-74.442\r\n\t\tC218.715,73.08,257.552,64,310.143,64 M310.209,48C195.479,48,146,89.225,146,165.43V177H96v48h50v48H96v48h50v25.57\r\n\t\tC146,422.774,195.481,464,310.211,464c35.25,0,67.777-3.123,105.789-11.866l-9.411-64.96c-37.323,6.244-66.942,8.742-93.206,8.742\r\n\t\tc-64.275,0-79.383-18.739-79.383-63.086V321h117.162l7.148-48H234v-48h131.461l7.149-48H234v-2.83\r\n\t\tc0-35.92,15.159-58.086,79.434-58.086c26.264,0,55.959,2.498,93.281,8.742L416,60C377.988,51.257,345.458,48,310.209,48L310.209,48\r\n\t\tz" + }, + "children": [] + }] + }] + }] +}; +exports.socialEuroOutline = socialEuroOutline; \ No newline at end of file diff --git a/dist/ionicons/socialFacebook.js b/dist/ionicons/socialFacebook.js new file mode 100644 index 000000000..0f9764709 --- /dev/null +++ b/dist/ionicons/socialFacebook.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialFacebook = void 0; +var socialFacebook = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M288,192v-38.1c0-17.2,3.8-25.9,30.5-25.9H352V64h-55.9c-68.5,0-91.1,31.4-91.1,85.3V192h-45v64h45v192h83V256h56.4l7.6-64\r\n\tH288z" + }, + "children": [] + }] +}; +exports.socialFacebook = socialFacebook; \ No newline at end of file diff --git a/dist/ionicons/socialFacebookOutline.js b/dist/ionicons/socialFacebookOutline.js new file mode 100644 index 000000000..4dd2b2c4d --- /dev/null +++ b/dist/ionicons/socialFacebookOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialFacebookOutline = void 0; +var socialFacebookOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M288,192v-38.1c0-17.2,3.8-25.9,30.5-25.9H352V64h-55.9c-68.5,0-91.1,31.4-91.1,85.3V192h-45v64h45v192h83V256h56.4l7.6-64\r\n\tH288z M330.2,240h-41.1H272v15.5V432h-51V255.5V240h-14.9H176v-32h30.1H221v-16.5v-42.2c0-24.5,5.4-41.2,15.5-51.8\r\n\tC247.7,85.5,267.6,80,296.1,80H336v32h-17.5c-12,0-27.5,1.1-37.1,11.7c-8.1,9-9.4,20.1-9.4,30.1v37.6V208h17.1H334L330.2,240z" + }, + "children": [] + }] +}; +exports.socialFacebookOutline = socialFacebookOutline; \ No newline at end of file diff --git a/dist/ionicons/socialFoursquare.js b/dist/ionicons/socialFoursquare.js new file mode 100644 index 000000000..611f63034 --- /dev/null +++ b/dist/ionicons/socialFoursquare.js @@ -0,0 +1,35 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialFoursquare = void 0; +var socialFoursquare = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M376.764,32c0,0-205.353,0-238.223,0C105.666,32,96,56.798,96,72.414c0,15.627,0,379.64,0,379.64\r\n\t\t\tc0,17.591,9.425,24.117,14.718,26.267c5.299,2.155,19.916,3.971,28.673-6.168c0,0,112.469-130.895,114.4-132.834\r\n\t\t\tc2.921-2.93,2.921-2.93,5.844-2.93c5.844,0,49.192,0,72.767,0c30.574,0,35.49-21.869,38.684-34.752\r\n\t\t\tc2.659-10.789,32.489-163.962,42.452-212.559C421.143,51.993,411.745,32,376.764,32z M371.086,301.637\r\n\t\t\tc2.659-10.789,32.489-163.962,42.452-212.559 M362.692,96.67l-9.999,51.734c-1.195,5.65-8.287,11.595-14.863,11.595\r\n\t\t\tc-6.575,0-95.917,0-95.917,0C231.473,160,224,166.138,224,176.602v13.448c0,10.473,7.519,17.894,17.965,17.894\r\n\t\t\tc0,0,74.482,0,81.848,0c7.374,0,14.61,8.109,13.016,16.005c-1.602,7.908-9.086,46.569-9.984,50.89\r\n\t\t\tc-0.902,4.328-5.845,11.725-14.611,11.725c-7.388,0-64.269,0-64.269,0c-11.705,0-15.244,1.533-23.074,11.293\r\n\t\t\tc-7.837,9.77-78.256,94.592-78.256,94.592c-0.713,0.822-1.41,0.584-1.41-0.312V95.896c0-6.684,5.793-14.523,14.479-14.523\r\n\t\t\tc0,0,183.713,0,191.173,0C357.912,81.372,364.488,88.004,362.692,96.67z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M376.764,32c0,0-205.353,0-238.223,0C105.666,32,96,56.798,96,72.414c0,15.627,0,379.64,0,379.64\r\n\t\t\tc0,17.591,9.425,24.117,14.718,26.267c5.299,2.155,19.916,3.971,28.673-6.168c0,0,112.469-130.895,114.4-132.834\r\n\t\t\tc2.921-2.93,2.921-2.93,5.844-2.93c5.844,0,49.192,0,72.767,0c30.574,0,35.49-21.869,38.684-34.752\r\n\t\t\tc2.659-10.789,32.489-163.962,42.452-212.559C421.143,51.993,411.745,32,376.764,32z M371.086,301.637\r\n\t\t\tc2.659-10.789,32.489-163.962,42.452-212.559 M362.692,96.67l-9.999,51.734c-1.195,5.65-8.287,11.595-14.863,11.595\r\n\t\t\tc-6.575,0-95.917,0-95.917,0C231.473,160,224,166.138,224,176.602v13.448c0,10.473,7.519,17.894,17.965,17.894\r\n\t\t\tc0,0,74.482,0,81.848,0c7.374,0,14.61,8.109,13.016,16.005c-1.602,7.908-9.086,46.569-9.984,50.89\r\n\t\t\tc-0.902,4.328-5.845,11.725-14.611,11.725c-7.388,0-64.269,0-64.269,0c-11.705,0-15.244,1.533-23.074,11.293\r\n\t\t\tc-7.837,9.77-78.256,94.592-78.256,94.592c-0.713,0.822-1.41,0.584-1.41-0.312V95.896c0-6.684,5.793-14.523,14.479-14.523\r\n\t\t\tc0,0,183.713,0,191.173,0C357.912,81.372,364.488,88.004,362.692,96.67z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.socialFoursquare = socialFoursquare; \ No newline at end of file diff --git a/dist/ionicons/socialFoursquareOutline.js b/dist/ionicons/socialFoursquareOutline.js new file mode 100644 index 000000000..0c699b46d --- /dev/null +++ b/dist/ionicons/socialFoursquareOutline.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialFoursquareOutline = void 0; +var socialFoursquareOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M398.484,164.452l-27.399,137.185C372.848,294.486,386.545,224.793,398.484,164.452z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M398.484,164.452l-27.399,137.185C372.848,294.486,386.545,224.793,398.484,164.452z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M376.764,32c0,0-205.353,0-238.223,0C105.666,32,96,56.798,96,72.414c0,15.627,0,379.64,0,379.64\r\n\t\tc0,17.591,9.425,24.117,14.718,26.267c5.299,2.155,19.916,3.971,28.673-6.168c0,0,112.469-131.09,114.4-133.027\r\n\t\tc2.921-2.931,2.921-3.125,5.844-3.125c5.843,0,49.192,0,72.766,0c30.575,0,35.49-21.676,38.684-34.559l27.399-137.087\r\n\t\tc6.074-30.702,11.693-58.938,15.053-75.325C421.143,51.944,411.744,32,376.764,32z M376.426,96c0,0-31.575,156.209-36.034,176.834\r\n\t\tC335,297.771,332.75,304,307,304c-17.605,0-62.375,0-62.375,0c-2.747,0-3.868-0.147-6.049,2.041\r\n\t\tc-1.443,1.447-78.168,89.562-78.168,89.562c-19.034,23.396-26.909,31.795-29.033,31.795s-3.375,0-3.375-38.408V91.708\r\n\t\tC128,67.034,128.3,64,157.198,64C181.748,64,352,64,352,64C382,64,382.834,64.833,376.426,96z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M376.764,32c0,0-205.353,0-238.223,0C105.666,32,96,56.798,96,72.414c0,15.627,0,379.64,0,379.64\r\n\t\tc0,17.591,9.425,24.117,14.718,26.267c5.299,2.155,19.916,3.971,28.673-6.168c0,0,112.469-131.09,114.4-133.027\r\n\t\tc2.921-2.931,2.921-3.125,5.844-3.125c5.843,0,49.192,0,72.766,0c30.575,0,35.49-21.676,38.684-34.559l27.399-137.087\r\n\t\tc6.074-30.702,11.693-58.938,15.053-75.325C421.143,51.944,411.744,32,376.764,32z M376.426,96c0,0-31.575,156.209-36.034,176.834\r\n\t\tC335,297.771,332.75,304,307,304c-17.605,0-62.375,0-62.375,0c-2.747,0-3.868-0.147-6.049,2.041\r\n\t\tc-1.443,1.447-78.168,89.562-78.168,89.562c-19.034,23.396-26.909,31.795-29.033,31.795s-3.375,0-3.375-38.408V91.708\r\n\t\tC128,67.034,128.3,64,157.198,64C181.748,64,352,64,352,64C382,64,382.834,64.833,376.426,96z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M398.484,164.452l15.053-75.374C410.178,105.466,404.559,133.75,398.484,164.452z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M398.484,164.452l15.053-75.374C410.178,105.466,404.559,133.75,398.484,164.452z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M328.573,96c-5.571,0-157.995,0-157.995,0C164.091,96,160,101.594,160,106.586v231.255c0,0.67,0.402,0.975,0.935,0.36\r\n\t\tc0,0,48.202-55.725,54.056-63.021c5.848-7.289,8.491-8.182,17.233-8.182c0,0,56.695,0,62.212,0c6.549,0,10.24-5.75,10.913-8.982\r\n\t\tc0.671-3.228,10.536-48.213,11.732-54.119c1.191-5.897-4.214-11.898-9.722-11.898c-5.5,0-64.805,0-64.805,0\r\n\t\tc-7.803,0-7.554-5.653-7.554-13.476v-5.512c0-7.815-0.282-13.012,7.516-13.012c0,0,70.403,0,75.313,0\r\n\t\tc4.911,0,10.208-4.442,11.102-8.662l8.468-44.042C338.739,100.823,333.828,96,328.573,96z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M328.573,96c-5.571,0-157.995,0-157.995,0C164.091,96,160,101.594,160,106.586v231.255c0,0.67,0.402,0.975,0.935,0.36\r\n\t\tc0,0,48.202-55.725,54.056-63.021c5.848-7.289,8.491-8.182,17.233-8.182c0,0,56.695,0,62.212,0c6.549,0,10.24-5.75,10.913-8.982\r\n\t\tc0.671-3.228,10.536-48.213,11.732-54.119c1.191-5.897-4.214-11.898-9.722-11.898c-5.5,0-64.805,0-64.805,0\r\n\t\tc-7.803,0-7.554-5.653-7.554-13.476v-5.512c0-7.815-0.282-13.012,7.516-13.012c0,0,70.403,0,75.313,0\r\n\t\tc4.911,0,10.208-4.442,11.102-8.662l8.468-44.042C338.739,100.823,333.828,96,328.573,96z" + }, + "children": [] + }] + }] + }] +}; +exports.socialFoursquareOutline = socialFoursquareOutline; \ No newline at end of file diff --git a/dist/ionicons/socialFreebsdDevil.js b/dist/ionicons/socialFreebsdDevil.js new file mode 100644 index 000000000..aba45dbab --- /dev/null +++ b/dist/ionicons/socialFreebsdDevil.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialFreebsdDevil = void 0; +var socialFreebsdDevil = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "style", + "attribs": { + "type": "text/css" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "class": "st0", + "d": "M502.6,115c-22.5-43.7-58-51-58-51s15.5,32,16,51c0.4,16.1-5.5,28-27.2,33.5s-30.8-2-47.8-17.5\r\n\tS344,104.5,313,103c-40-2-77,9-77,9c-20-25,20-80,20-80c-74.5,29.5-93.7,83.3-96,113.7c-1.9,24.1,8.5,40.8,8.5,40.8s-0.5,27.8-5,42\r\n\tc-3.1,9.8-16.9,25-26,34.5c-12.2,12.7-12.5,38.5,0,57s44,27.5,67,39.5s31.5,21,31.5,21s1,8.3,0.5,15.3s-3.2,14-9,18.2\r\n\tc-5.5,3.9-15.5,0.5-20.5-2s-5-6.2-10.5-8s-7.3-4-6.5-11s2-9-3.5-18.5s-18.5-9.5-29.5-8s-17.3,6.8-17.3,6.8l-16.3-10\r\n\tc0,0,8.5-15.6,5.2-35.6c-7.3-43.8-50-62.8-50-62.8l10.4,44.4c0,0,1.1-2.6,6.4-6.4s8.1-3.6,8.1-3.6s6.6,7.6,9.1,25.3\r\n\tc2.5,18-6.7,27.2-6.7,27.2l-28.3-18l1-14.5L39.8,309L56,345.7l15-4l24,22.7c0,0-15.7,11.7-33,11.7c-11,0-22-6-22-6s-1.4-1-0.8-5.5\r\n\tc0.7-5,6.8-12.5,6.8-12.5H0c0,0,27.3,38.7,65,38.7c31,0,44.2-12.5,44.2-12.5L128,397c0,0,3,5.5,0,7s-7,3.5-9,15s18,29,18,29\r\n\tc21.8,17.8,7,32,7,32h272c-9-13-22.5-18-32-32c0,0-44.8-58.4-1.8-90.4c57.4-42.7,42.8-69.4,41.2-101.4c0,0,31.8-6.6,59.3-33.6\r\n\tS521.6,151.8,502.6,115z M195,203c-16.9,4.5-22.5,35.5-22.5,35.5c1.5-63,57.5-93,65-89s-6.5,39-21,64\r\n\tC216.5,213.5,208.5,199.4,195,203z M232,218c0,0,18-56,37.5-59.5s41.5,21,41.5,62s-26,65.4-42.8,69.2c-16.5,3.8-23,2-23,2\r\n\ts27.5-21.6,23.5-56.8C265.9,210.2,237.3,210.7,232,218z" + }, + "children": [] + }] +}; +exports.socialFreebsdDevil = socialFreebsdDevil; \ No newline at end of file diff --git a/dist/ionicons/socialGithub.js b/dist/ionicons/socialGithub.js new file mode 100644 index 000000000..6a9ea64e8 --- /dev/null +++ b/dist/ionicons/socialGithub.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialGithub = void 0; +var socialGithub = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,32C132.3,32,32,134.9,32,261.7c0,101.5,64.2,187.5,153.2,217.9c1.4,0.3,2.6,0.4,3.8,0.4c8.3,0,11.5-6.1,11.5-11.4\r\n\tc0-5.5-0.2-19.9-0.3-39.1c-8.4,1.9-15.9,2.7-22.6,2.7c-43.1,0-52.9-33.5-52.9-33.5c-10.2-26.5-24.9-33.6-24.9-33.6\r\n\tc-19.5-13.7-0.1-14.1,1.4-14.1c0.1,0,0.1,0,0.1,0c22.5,2,34.3,23.8,34.3,23.8c11.2,19.6,26.2,25.1,39.6,25.1c10.5,0,20-3.4,25.6-6\r\n\tc2-14.8,7.8-24.9,14.2-30.7c-49.7-5.8-102-25.5-102-113.5c0-25.1,8.7-45.6,23-61.6c-2.3-5.8-10-29.2,2.2-60.8c0,0,1.6-0.5,5-0.5\r\n\tc8.1,0,26.4,3.1,56.6,24.1c17.9-5.1,37-7.6,56.1-7.7c19,0.1,38.2,2.6,56.1,7.7c30.2-21,48.5-24.1,56.6-24.1c3.4,0,5,0.5,5,0.5\r\n\tc12.2,31.6,4.5,55,2.2,60.8c14.3,16.1,23,36.6,23,61.6c0,88.2-52.4,107.6-102.3,113.3c8,7.1,15.2,21.1,15.2,42.5\r\n\tc0,30.7-0.3,55.5-0.3,63c0,5.4,3.1,11.5,11.4,11.5c1.2,0,2.6-0.1,4-0.4C415.9,449.2,480,363.1,480,261.7C480,134.9,379.7,32,256,32z\r\n\t" + }, + "children": [] + }] +}; +exports.socialGithub = socialGithub; \ No newline at end of file diff --git a/dist/ionicons/socialGithubOutline.js b/dist/ionicons/socialGithubOutline.js new file mode 100644 index 000000000..735c88104 --- /dev/null +++ b/dist/ionicons/socialGithubOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialGithubOutline = void 0; +var socialGithubOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,32C132.3,32,32,134.9,32,261.7c0,101.5,64.2,187.5,153.2,217.9c1.4,0.3,2.6,0.4,3.8,0.4c8.3,0,11.5-6.1,11.5-11.4\r\n\tc0-5.5-0.2-19.9-0.3-39.1c-8.4,1.9-15.9,2.7-22.6,2.7c-43.1,0-52.9-33.5-52.9-33.5c-10.2-26.5-24.9-33.6-24.9-33.6\r\n\tc-19.5-13.7-0.1-14.1,1.4-14.1c0.1,0,0.1,0,0.1,0c22.5,2,34.3,23.8,34.3,23.8c11.2,19.6,26.2,25.1,39.6,25.1c10.5,0,20-3.4,25.6-6\r\n\tc2-14.8,7.8-24.9,14.2-30.7c-49.7-5.8-102-25.5-102-113.5c0-25.1,8.7-45.6,23-61.6c-2.3-5.8-10-29.2,2.2-60.8c0,0,1.6-0.5,5-0.5\r\n\tc8.1,0,26.4,3.1,56.6,24.1c17.9-5.1,37-7.6,56.1-7.7c19,0.1,38.2,2.6,56.1,7.7c30.2-21,48.5-24.1,56.6-24.1c3.4,0,5,0.5,5,0.5\r\n\tc12.2,31.6,4.5,55,2.2,60.8c14.3,16.1,23,36.6,23,61.6c0,88.2-52.4,107.6-102.3,113.3c8,7.1,15.2,21.1,15.2,42.5\r\n\tc0,30.7-0.3,55.5-0.3,63c0,5.4,3.1,11.5,11.4,11.5c1.2,0,2.6-0.1,4-0.4C415.9,449.2,480,363.1,480,261.7C480,134.9,379.7,32,256,32z\r\n\t M177.6,448.1c2.2,0,4.4-0.1,6.7-0.2c0,2.8,0,5.5,0.1,7.9c0,2.4,0,4.6,0.1,6.5c-15.6-5.8-30.3-13.5-44.1-23\r\n\tC150.2,444.6,162.5,448.1,177.6,448.1z M189,375.2c-0.8,2.2-1.5,4.5-2.1,6.9c-3.4,1-7.5,1.8-11.7,1.8c-10.9,0-19-5.4-25.6-16.9\r\n\tc-2.4-4.6-6.8-10.7-12.9-16.3C153.5,364.8,173,371.6,189,375.2z M379,434.1c-15.8,11.9-33,21.3-51,28.2c0-1.9,0-4.1,0-6.5\r\n\tc0-11.9,0-29.8,0-50.4c0-12.4-2.1-22.5-5-30.5c37.2-8.3,92-33.7,92-125.4c0-24.6-7.1-46.5-21.2-65.1c3.1-12.9,5.5-35.6-5.1-63\r\n\tl-2.7-7.1l-7.2-2.4c-1.5-0.5-4.8-1.3-10-1.3c-11.5,0-30.9,4.1-59.5,22.8c-17-4.2-34.8-6.4-53.1-6.4H256h-0.1\r\n\tc-18.3,0-36.2,2.2-53.1,6.4c-28.6-18.7-48-22.8-59.5-22.8c-5.2,0-8.5,0.9-10,1.4l-7.2,2.4l-2.7,7.1c-10.6,27.5-8.2,50.2-5.1,63\r\n\tc-14.1,18.7-21.2,40.6-21.2,65.1c0,49.6,16,79.9,36.6,98.5c-8.1-6.6-18.6-12.1-31.2-13H102h-0.5h-0.3c-13.1,0-22.3,5.4-25.2,14.7\r\n\tc-4.7,14.8,9.8,25,14.6,28.4l0.5,0.6l1.5,0.6c1.6,1,10.1,7,16.9,24.5c2,6.2,6.3,14.5,13.6,22.2c-13.1-11.2-24.8-24-34.9-38.1\r\n\tC61.9,351.2,48,307.5,48,261.7c0-28.9,5.5-56.9,16.4-83.3c10.5-25.5,25.5-48.3,44.7-67.9c19.1-19.6,41.4-35,66.1-45.7\r\n\tC200.8,53.7,228,48,256,48s55.2,5.6,80.8,16.7c24.8,10.7,47,26.1,66.1,45.7c19.1,19.6,34.2,42.5,44.7,67.9\r\n\tc10.9,26.4,16.4,54.4,16.4,83.3c0,45.8-13.8,89.5-40.1,126.3C411.3,405.6,396.2,421.1,379,434.1z" + }, + "children": [] + }] +}; +exports.socialGithubOutline = socialGithubOutline; \ No newline at end of file diff --git a/dist/ionicons/socialGoogle.js b/dist/ionicons/socialGoogle.js new file mode 100644 index 000000000..8393928b5 --- /dev/null +++ b/dist/ionicons/socialGoogle.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialGoogle = void 0; +var socialGoogle = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M325.862,275.558l-18.187-13.653l-0.063-0.051c-5.827-4.579-9.952-8.313-9.952-14.685c0-6.979,5.049-11.824,10.896-17.436\r\n\t\tl0.466-0.449c20.025-15.171,44.726-34.286,44.726-74.556c0-26.934-11.916-44.729-23.28-57.729h12.969l60.322-33H270.308\r\n\t\tc-25.324,0-62.68,3.225-94.561,28.576l-0.128,0.25c-21.809,18.111-34.828,44.584-34.828,70.691\r\n\t\tc0,21.197,8.706,42.159,23.885,57.447c21.428,21.579,48.302,26.127,67.074,26.127c1.462,0,2.956-0.028,4.47-0.093\r\n\t\tc-0.759,2.969-1.25,6.321-1.25,10.321c0,10.926,3.628,19.301,8.083,26.195c-23.963,1.932-58.148,6.477-84.897,22.278\r\n\t\tc-39.335,22.562-42.396,55.875-42.396,65.551c0,38.207,35.707,76.762,115.479,76.762c91.611,0,139.543-49.792,139.543-98.979\r\n\t\tC370.781,311.966,347.945,293.457,325.862,275.558z M200.485,139.894c0-13.359,3.02-23.457,9.255-30.9\r\n\t\tc6.514-7.852,18.18-13.129,29.028-13.129c19.881,0,32.938,15.008,40.388,27.598c9.199,15.539,14.913,36.095,14.913,53.643\r\n\t\tc0,4.942,0,19.983-10.188,29.796c-6.951,6.686-18.707,11.353-28.59,11.353c-20.503,0-33.453-14.705-40.707-27.041\r\n\t\tC204.189,173.53,200.485,153.109,200.485,139.894z M321.6,367.974c0,27.444-25.212,44.493-65.799,44.493\r\n\t\tc-48.058,0-80.347-20.603-80.347-51.265c0-26.14,21.54-36.789,37.8-42.521c18.944-6.064,44.297-7.305,50.062-7.305\r\n\t\tc3.907,0,6.087,0,8.683,0.229C308.7,336.816,321.6,347.733,321.6,367.974z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M325.862,275.558l-18.187-13.653l-0.063-0.051c-5.827-4.579-9.952-8.313-9.952-14.685c0-6.979,5.049-11.824,10.896-17.436\r\n\t\tl0.466-0.449c20.025-15.171,44.726-34.286,44.726-74.556c0-26.934-11.916-44.729-23.28-57.729h12.969l60.322-33H270.308\r\n\t\tc-25.324,0-62.68,3.225-94.561,28.576l-0.128,0.25c-21.809,18.111-34.828,44.584-34.828,70.691\r\n\t\tc0,21.197,8.706,42.159,23.885,57.447c21.428,21.579,48.302,26.127,67.074,26.127c1.462,0,2.956-0.028,4.47-0.093\r\n\t\tc-0.759,2.969-1.25,6.321-1.25,10.321c0,10.926,3.628,19.301,8.083,26.195c-23.963,1.932-58.148,6.477-84.897,22.278\r\n\t\tc-39.335,22.562-42.396,55.875-42.396,65.551c0,38.207,35.707,76.762,115.479,76.762c91.611,0,139.543-49.792,139.543-98.979\r\n\t\tC370.781,311.966,347.945,293.457,325.862,275.558z M200.485,139.894c0-13.359,3.02-23.457,9.255-30.9\r\n\t\tc6.514-7.852,18.18-13.129,29.028-13.129c19.881,0,32.938,15.008,40.388,27.598c9.199,15.539,14.913,36.095,14.913,53.643\r\n\t\tc0,4.942,0,19.983-10.188,29.796c-6.951,6.686-18.707,11.353-28.59,11.353c-20.503,0-33.453-14.705-40.707-27.041\r\n\t\tC204.189,173.53,200.485,153.109,200.485,139.894z M321.6,367.974c0,27.444-25.212,44.493-65.799,44.493\r\n\t\tc-48.058,0-80.347-20.603-80.347-51.265c0-26.14,21.54-36.789,37.8-42.521c18.944-6.064,44.297-7.305,50.062-7.305\r\n\t\tc3.907,0,6.087,0,8.683,0.229C308.7,336.816,321.6,347.733,321.6,367.974z" + }, + "children": [] + }] + }] + }] +}; +exports.socialGoogle = socialGoogle; \ No newline at end of file diff --git a/dist/ionicons/socialGoogleOutline.js b/dist/ionicons/socialGoogleOutline.js new file mode 100644 index 000000000..549a3fa94 --- /dev/null +++ b/dist/ionicons/socialGoogleOutline.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialGoogleOutline = void 0; +var socialGoogleOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M319.408,82.141c11.779,9.576,36.43,29.718,36.43,68.043c0,37.295-21.547,54.934-43.094,71.545\r\n\t\tc-6.695,6.561-14.385,13.608-14.385,24.701c0,11.092,7.689,17.153,13.336,21.671l18.473,14.108\r\n\t\tc22.598,18.641,43.125,35.795,43.125,70.559c0,47.373-46.721,95.232-135.003,95.232c-74.428,0-110.343-34.766-110.343-72.061\r\n\t\tc0-18.139,9.245-43.827,39.525-61.48c31.798-19.142,74.952-21.657,98.023-23.172c-7.178-9.078-15.382-18.67-15.382-34.265\r\n\t\tc0-8.577,2.557-13.609,5.12-19.655c-5.648,0.5-11.283,1-16.42,1c-54.408,0-85.214-39.811-85.214-79.107\r\n\t\tc0-23.186,10.802-48.902,32.856-67.543C215.724,68.031,250.637,64,278.328,64h105.725l-32.846,18.141H319.408z M282.955,305.896\r\n\t\tc-4.137-0.501-6.684-0.501-11.793-0.501c-4.629,0-32.348,1.002-53.895,8.049c-11.3,4.046-44.146,16.125-44.146,51.918\r\n\t\tc0,35.78,35.393,61.467,90.339,61.467c49.283,0,75.432-23.156,75.432-54.404C338.893,346.707,321.971,333.113,282.955,305.896\r\n\t\t M297.834,210.148c11.824-11.592,12.844-27.73,12.844-36.793c0-36.281-22.086-92.73-64.671-92.73\r\n\t\tc-13.339,0-27.724,6.547-35.948,16.639c-8.722,10.593-11.284,24.188-11.284,37.281c0,33.764,20.005,89.727,64.163,89.727\r\n\t\tC275.764,224.271,289.594,218.212,297.834,210.148" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M319.408,82.141c11.779,9.576,36.43,29.718,36.43,68.043c0,37.295-21.547,54.934-43.094,71.545\r\n\t\tc-6.695,6.561-14.385,13.608-14.385,24.701c0,11.092,7.689,17.153,13.336,21.671l18.473,14.108\r\n\t\tc22.598,18.641,43.125,35.795,43.125,70.559c0,47.373-46.721,95.232-135.003,95.232c-74.428,0-110.343-34.766-110.343-72.061\r\n\t\tc0-18.139,9.245-43.827,39.525-61.48c31.798-19.142,74.952-21.657,98.023-23.172c-7.178-9.078-15.382-18.67-15.382-34.265\r\n\t\tc0-8.577,2.557-13.609,5.12-19.655c-5.648,0.5-11.283,1-16.42,1c-54.408,0-85.214-39.811-85.214-79.107\r\n\t\tc0-23.186,10.802-48.902,32.856-67.543C215.724,68.031,250.637,64,278.328,64h105.725l-32.846,18.141H319.408z M282.955,305.896\r\n\t\tc-4.137-0.501-6.684-0.501-11.793-0.501c-4.629,0-32.348,1.002-53.895,8.049c-11.3,4.046-44.146,16.125-44.146,51.918\r\n\t\tc0,35.78,35.393,61.467,90.339,61.467c49.283,0,75.432-23.156,75.432-54.404C338.893,346.707,321.971,333.113,282.955,305.896\r\n\t\t M297.834,210.148c11.824-11.592,12.844-27.73,12.844-36.793c0-36.281-22.086-92.73-64.671-92.73\r\n\t\tc-13.339,0-27.724,6.547-35.948,16.639c-8.722,10.593-11.284,24.188-11.284,37.281c0,33.764,20.005,89.727,64.163,89.727\r\n\t\tC275.764,224.271,289.594,218.212,297.834,210.148" + }, + "children": [] + }] + }] + }] +}; +exports.socialGoogleOutline = socialGoogleOutline; \ No newline at end of file diff --git a/dist/ionicons/socialGoogleplus.js b/dist/ionicons/socialGoogleplus.js new file mode 100644 index 000000000..603108860 --- /dev/null +++ b/dist/ionicons/socialGoogleplus.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialGoogleplus = void 0; +var socialGoogleplus = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M242.1,275.6l-18.2-13.7l-0.1-0.1c-5.8-4.6-10-8.3-10-14.7c0-7,5-11.8,10.9-17.4l0.5-0.4c20-15.2,44.7-34.3,44.7-74.6\r\n\t\tc0-26.9-11.9-44.7-23.3-57.7h13L320,64H186.5c-25.3,0-62.7,3.2-94.6,28.6l-0.1,0.3C70,110.9,57,137.4,57,163.5\r\n\t\tc0,21.2,8.7,42.2,23.9,57.4c21.4,21.6,48.3,26.1,67.1,26.1c1.5,0,3,0,4.5-0.1c-0.8,3-1.2,6.3-1.2,10.3c0,10.9,3.6,19.3,8.1,26.2\r\n\t\tc-24,1.9-58.1,6.5-84.9,22.3C35.1,328.4,32,361.7,32,371.3c0,38.2,35.7,76.8,115.5,76.8c91.6,0,139.5-49.8,139.5-99\r\n\t\tC287,312,264.2,293.5,242.1,275.6z M116.7,139.9c0-13.4,3-23.5,9.3-30.9c6.5-7.9,18.2-13.1,29-13.1c19.9,0,32.9,15,40.4,27.6\r\n\t\tc9.2,15.5,14.9,36.1,14.9,53.6c0,4.9,0,20-10.2,29.8c-7,6.7-18.7,11.4-28.6,11.4c-20.5,0-33.5-14.7-40.7-27\r\n\t\tC120.4,173.5,116.7,153.1,116.7,139.9z M237.8,368c0,27.4-25.2,44.5-65.8,44.5c-48.1,0-80.3-20.6-80.3-51.3\r\n\t\tc0-26.1,21.5-36.8,37.8-42.5c18.9-6.1,44.3-7.3,50.1-7.3c3.9,0,6.1,0,8.7,0.2C224.9,336.8,237.8,347.7,237.8,368z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M242.1,275.6l-18.2-13.7l-0.1-0.1c-5.8-4.6-10-8.3-10-14.7c0-7,5-11.8,10.9-17.4l0.5-0.4c20-15.2,44.7-34.3,44.7-74.6\r\n\t\tc0-26.9-11.9-44.7-23.3-57.7h13L320,64H186.5c-25.3,0-62.7,3.2-94.6,28.6l-0.1,0.3C70,110.9,57,137.4,57,163.5\r\n\t\tc0,21.2,8.7,42.2,23.9,57.4c21.4,21.6,48.3,26.1,67.1,26.1c1.5,0,3,0,4.5-0.1c-0.8,3-1.2,6.3-1.2,10.3c0,10.9,3.6,19.3,8.1,26.2\r\n\t\tc-24,1.9-58.1,6.5-84.9,22.3C35.1,328.4,32,361.7,32,371.3c0,38.2,35.7,76.8,115.5,76.8c91.6,0,139.5-49.8,139.5-99\r\n\t\tC287,312,264.2,293.5,242.1,275.6z M116.7,139.9c0-13.4,3-23.5,9.3-30.9c6.5-7.9,18.2-13.1,29-13.1c19.9,0,32.9,15,40.4,27.6\r\n\t\tc9.2,15.5,14.9,36.1,14.9,53.6c0,4.9,0,20-10.2,29.8c-7,6.7-18.7,11.4-28.6,11.4c-20.5,0-33.5-14.7-40.7-27\r\n\t\tC120.4,173.5,116.7,153.1,116.7,139.9z M237.8,368c0,27.4-25.2,44.5-65.8,44.5c-48.1,0-80.3-20.6-80.3-51.3\r\n\t\tc0-26.1,21.5-36.8,37.8-42.5c18.9-6.1,44.3-7.3,50.1-7.3c3.9,0,6.1,0,8.7,0.2C224.9,336.8,237.8,347.7,237.8,368z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "402,142 402,64 368,64 368,142 288,142 288,176 368,176 368,257 402,257 402,176 480,176 480,142 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "402,142 402,64 368,64 368,142 288,142 288,176 368,176 368,257 402,257 402,176 480,176 480,142 \t" + }, + "children": [] + }] + }] + }] +}; +exports.socialGoogleplus = socialGoogleplus; \ No newline at end of file diff --git a/dist/ionicons/socialGoogleplusOutline.js b/dist/ionicons/socialGoogleplusOutline.js new file mode 100644 index 000000000..2d6adc480 --- /dev/null +++ b/dist/ionicons/socialGoogleplusOutline.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialGoogleplusOutline = void 0; +var socialGoogleplusOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M223.5,82.1c11.8,9.6,36.4,29.7,36.4,68c0,37.3-21.5,54.9-43.1,71.5c-6.7,6.6-14.4,13.6-14.4,24.7\r\n\t\tc0,11.1,7.7,17.2,13.3,21.7l18.5,14.1c22.6,18.6,43.1,35.8,43.1,70.6c0,47.4-46.7,95.2-135,95.2C67.9,448,32,413.2,32,375.9\r\n\t\tc0-18.1,9.2-43.8,39.5-61.5c31.8-19.1,75-21.7,98-23.2c-7.2-9.1-15.4-18.7-15.4-34.3c0-8.6,2.6-13.6,5.1-19.7\r\n\t\tc-5.6,0.5-11.3,1-16.4,1c-54.4,0-85.2-39.8-85.2-79.1c0-23.2,10.8-48.9,32.9-67.5C119.8,68,154.7,64,182.4,64h105.7l-32.8,18.1\r\n\t\tH223.5z M187,305.9c-4.1-0.5-6.7-0.5-11.8-0.5c-4.6,0-32.3,1-53.9,8c-11.3,4-44.1,16.1-44.1,51.9c0,35.8,35.4,61.5,90.3,61.5\r\n\t\tc49.3,0,75.4-23.2,75.4-54.4C242.9,346.7,226,333.1,187,305.9 M201.9,210.1c11.8-11.6,12.8-27.7,12.8-36.8\r\n\t\tc0-36.3-22.1-92.7-64.7-92.7c-13.3,0-27.7,6.5-35.9,16.6c-8.7,10.6-11.3,24.2-11.3,37.3c0,33.8,20,89.7,64.2,89.7\r\n\t\tC179.8,224.3,193.6,218.2,201.9,210.1" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M223.5,82.1c11.8,9.6,36.4,29.7,36.4,68c0,37.3-21.5,54.9-43.1,71.5c-6.7,6.6-14.4,13.6-14.4,24.7\r\n\t\tc0,11.1,7.7,17.2,13.3,21.7l18.5,14.1c22.6,18.6,43.1,35.8,43.1,70.6c0,47.4-46.7,95.2-135,95.2C67.9,448,32,413.2,32,375.9\r\n\t\tc0-18.1,9.2-43.8,39.5-61.5c31.8-19.1,75-21.7,98-23.2c-7.2-9.1-15.4-18.7-15.4-34.3c0-8.6,2.6-13.6,5.1-19.7\r\n\t\tc-5.6,0.5-11.3,1-16.4,1c-54.4,0-85.2-39.8-85.2-79.1c0-23.2,10.8-48.9,32.9-67.5C119.8,68,154.7,64,182.4,64h105.7l-32.8,18.1\r\n\t\tH223.5z M187,305.9c-4.1-0.5-6.7-0.5-11.8-0.5c-4.6,0-32.3,1-53.9,8c-11.3,4-44.1,16.1-44.1,51.9c0,35.8,35.4,61.5,90.3,61.5\r\n\t\tc49.3,0,75.4-23.2,75.4-54.4C242.9,346.7,226,333.1,187,305.9 M201.9,210.1c11.8-11.6,12.8-27.7,12.8-36.8\r\n\t\tc0-36.3-22.1-92.7-64.7-92.7c-13.3,0-27.7,6.5-35.9,16.6c-8.7,10.6-11.3,24.2-11.3,37.3c0,33.8,20,89.7,64.2,89.7\r\n\t\tC179.8,224.3,193.6,218.2,201.9,210.1" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "480,142.3 401.7,142.3 401.7,64.1 384,64.1 384,142.3 304.3,142.3 304.3,160.1 384,160.1 384,241 401.7,241 \r\n\t\t401.7,160.1 480,160.1 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "480,142.3 401.7,142.3 401.7,64.1 384,64.1 384,142.3 304.3,142.3 304.3,160.1 384,160.1 384,241 401.7,241 \r\n\t\t401.7,160.1 480,160.1 \t" + }, + "children": [] + }] + }] + }] +}; +exports.socialGoogleplusOutline = socialGoogleplusOutline; \ No newline at end of file diff --git a/dist/ionicons/socialHackernews.js b/dist/ionicons/socialHackernews.js new file mode 100644 index 000000000..d5e682692 --- /dev/null +++ b/dist/ionicons/socialHackernews.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialHackernews = void 0; +var socialHackernews = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M64,64v384h384V64H64z M278,279v72h-40v-72l-66-120h47.1l39.7,83.6l38-83.6H342L278,279z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M64,64v384h384V64H64z M278,279v72h-40v-72l-66-120h47.1l39.7,83.6l38-83.6H342L278,279z" + }, + "children": [] + }] + }] + }] +}; +exports.socialHackernews = socialHackernews; \ No newline at end of file diff --git a/dist/ionicons/socialHackernewsOutline.js b/dist/ionicons/socialHackernewsOutline.js new file mode 100644 index 000000000..8524052f5 --- /dev/null +++ b/dist/ionicons/socialHackernewsOutline.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialHackernewsOutline = void 0; +var socialHackernewsOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M416,96v320H96V96H416 M448,64H64v384h384V64L448,64z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M416,96v320H96V96H416 M448,64H64v384h384V64L448,64z" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M296.7,159H342l-63.9,120v72h-39.9v-72L172,159h47.1l39.7,83.6L296.7,159z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M296.7,159H342l-63.9,120v72h-39.9v-72L172,159h47.1l39.7,83.6L296.7,159z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.socialHackernewsOutline = socialHackernewsOutline; \ No newline at end of file diff --git a/dist/ionicons/socialHtml5.js b/dist/ionicons/socialHtml5.js new file mode 100644 index 000000000..1c7dbfc1c --- /dev/null +++ b/dist/ionicons/socialHtml5.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialHtml5 = void 0; +var socialHtml5 = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M64,32l34.936,403.213L255.769,480l157.245-44.854L448,32H64z M371.997,164h-184l3.991,51h176.008l-13.505,151.386\r\n\tl-98.5,28.094l-98.682-27.976L150.545,289h48.254l3.423,39.287l53.769,14.781l53.422-14.915L314.987,264H147.986l-12.571-149.589\r\n\tl240.789,0.016L371.997,164z" + }, + "children": [] + }] +}; +exports.socialHtml5 = socialHtml5; \ No newline at end of file diff --git a/dist/ionicons/socialHtml5Outline.js b/dist/ionicons/socialHtml5Outline.js new file mode 100644 index 000000000..65d8d6a1b --- /dev/null +++ b/dist/ionicons/socialHtml5Outline.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialHtml5Outline = void 0; +var socialHtml5Outline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M64,32l34.936,403.301L255.769,480l157.245-44.705L448,32H64z M383.041,410.51l-127.262,36.187l-126.867-36.169L98.896,64\r\n\t\tH413.1L383.041,410.51z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M64,32l34.936,403.301L255.769,480l157.245-44.705L448,32H64z M383.041,410.51l-127.262,36.187l-126.867-36.169L98.896,64\r\n\t\tH413.1L383.041,410.51z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "147.991,264 314.984,264 309.411,327.986 255.991,342.734 202.225,328.064 198.801,289 150.55,289 \r\n\t\t157.313,366.336 255.991,394.146 354.486,366.163 367.991,215 191.991,215 188,164 371.991,164 376.199,114.316 135.421,114.188 \t\r\n\t\t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "147.991,264 314.984,264 309.411,327.986 255.991,342.734 202.225,328.064 198.801,289 150.55,289 \r\n\t\t157.313,366.336 255.991,394.146 354.486,366.163 367.991,215 191.991,215 188,164 371.991,164 376.199,114.316 135.421,114.188 \t\r\n\t\t" + }, + "children": [] + }] + }] + }] +}; +exports.socialHtml5Outline = socialHtml5Outline; \ No newline at end of file diff --git a/dist/ionicons/socialInstagram.js b/dist/ionicons/socialInstagram.js new file mode 100644 index 000000000..20f9faff2 --- /dev/null +++ b/dist/ionicons/socialInstagram.js @@ -0,0 +1,59 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialInstagram = void 0; +var socialInstagram = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "cx": "256", + "cy": "255.833", + "r": "80" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "256", + "cy": "255.833", + "r": "80" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M177.805,176.887c21.154-21.154,49.279-32.929,79.195-32.929s58.041,11.837,79.195,32.991\r\n\t\tc13.422,13.422,23.011,29.551,28.232,47.551H448.5v-113c0-26.51-20.49-47-47-47h-288c-26.51,0-49,20.49-49,47v113h85.072\r\n\t\tC154.794,206.5,164.383,190.309,177.805,176.887z M416.5,147.7c0,7.069-5.73,12.8-12.8,12.8h-38.4c-7.069,0-12.8-5.73-12.8-12.8\r\n\t\tv-38.4c0-7.069,5.73-12.8,12.8-12.8h38.4c7.069,0,12.8,5.73,12.8,12.8V147.7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M177.805,176.887c21.154-21.154,49.279-32.929,79.195-32.929s58.041,11.837,79.195,32.991\r\n\t\tc13.422,13.422,23.011,29.551,28.232,47.551H448.5v-113c0-26.51-20.49-47-47-47h-288c-26.51,0-49,20.49-49,47v113h85.072\r\n\t\tC154.794,206.5,164.383,190.309,177.805,176.887z M416.5,147.7c0,7.069-5.73,12.8-12.8,12.8h-38.4c-7.069,0-12.8-5.73-12.8-12.8\r\n\t\tv-38.4c0-7.069,5.73-12.8,12.8-12.8h38.4c7.069,0,12.8,5.73,12.8,12.8V147.7z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M336.195,335.279c-21.154,21.154-49.279,32.679-79.195,32.679s-58.041-11.462-79.195-32.616\r\n\t\tc-21.115-21.115-32.759-49.842-32.803-78.842H64.5v143c0,26.51,22.49,49,49,49h288c26.51,0,47-22.49,47-49v-143h-79.502\r\n\t\tC368.955,285.5,357.311,314.164,336.195,335.279z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M336.195,335.279c-21.154,21.154-49.279,32.679-79.195,32.679s-58.041-11.462-79.195-32.616\r\n\t\tc-21.115-21.115-32.759-49.842-32.803-78.842H64.5v143c0,26.51,22.49,49,49,49h288c26.51,0,47-22.49,47-49v-143h-79.502\r\n\t\tC368.955,285.5,357.311,314.164,336.195,335.279z" + }, + "children": [] + }] + }] + }] +}; +exports.socialInstagram = socialInstagram; \ No newline at end of file diff --git a/dist/ionicons/socialInstagramOutline.js b/dist/ionicons/socialInstagramOutline.js new file mode 100644 index 000000000..65efc1bf9 --- /dev/null +++ b/dist/ionicons/socialInstagramOutline.js @@ -0,0 +1,18 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialInstagramOutline = void 0; +var socialInstagramOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "fill": "#231F20", + "d": "M448.5,112c0-26.233-21.267-47.5-47.5-47.5H112c-26.233,0-47.5,21.267-47.5,47.5v289\r\n\tc0,26.233,21.267,47.5,47.5,47.5h289c26.233,0,47.5-21.267,47.5-47.5V112z M257,175.833c44.182,0,80,35.816,80,80s-35.818,80-80,80\r\n\ts-80-35.816-80-80S212.818,175.833,257,175.833z M416.5,160.5c0,8.836-7.163,16-16,16h-48c-8.837,0-16-7.164-16-16v-48\r\n\tc0-8.836,7.163-16,16-16h48c8.837,0,16,7.164,16,16V160.5z M401.5,416.5h-288c-8.822,0-17-8.178-17-17v-175h53.072\r\n\tc-3.008,10-4.572,20.647-4.572,31.583C145,286,156.65,314,177.805,335.154s49.279,32.741,79.195,32.741s58.041-11.681,79.195-32.835\r\n\tS369,286.016,369,256.099c0-10.936-1.563-21.599-4.572-31.599H416.5v175C416.5,408.322,410.322,416.5,401.5,416.5z" + }, + "children": [] + }] +}; +exports.socialInstagramOutline = socialInstagramOutline; \ No newline at end of file diff --git a/dist/ionicons/socialJavascript.js b/dist/ionicons/socialJavascript.js new file mode 100644 index 000000000..ea04eab4c --- /dev/null +++ b/dist/ionicons/socialJavascript.js @@ -0,0 +1,53 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialJavascript = void 0; +var socialJavascript = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": { + "transform": "translate(384 48)" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "icon-javascript_1_1_" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "icon-javascript_1_1_" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M-176,40.001h-80v212.498c0,52.58-18.032,67.261-49.412,67.261c-14.705,0-27.948-2.521-38.25-6.063L-352,375.904\r\n\t\t\tc14.7,5.062,37.259,8.096,54.907,8.096C-225.045,384-176,350.129-176,253.02V40.001L-176,40.001z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M-176,40.001h-80v212.498c0,52.58-18.032,67.261-49.412,67.261c-14.705,0-27.948-2.521-38.25-6.063L-352,375.904\r\n\t\t\tc14.7,5.062,37.259,8.096,54.907,8.096C-225.045,384-176,350.129-176,253.02V40.001L-176,40.001z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M-1.537,32C-78.98,32-128,75.998-128,134.154c0,50.083,37.751,81.44,92.641,101.665\r\n\t\t\tc39.7,14.158,55.392,26.808,55.392,47.539c0,22.756-18.139,37.425-52.448,37.425c-31.863,0-60.789-10.64-80.394-21.255v-0.021\r\n\t\t\tL-128,362.727c18.639,10.638,53.441,21.255,91.167,21.255C53.854,383.98,96,335.43,96,278.284c0-48.55-26.958-79.9-85.278-102.163\r\n\t\t\tc-43.139-17.191-61.27-26.795-61.27-48.542c0-17.2,15.688-32.869,48.043-32.869c31.846,0,53.744,10.707,66.505,17.291l19.125-64\r\n\t\t\tC63.125,39.22,36.188,32-1.537,32L-1.537,32z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M-1.537,32C-78.98,32-128,75.998-128,134.154c0,50.083,37.751,81.44,92.641,101.665\r\n\t\t\tc39.7,14.158,55.392,26.808,55.392,47.539c0,22.756-18.139,37.425-52.448,37.425c-31.863,0-60.789-10.64-80.394-21.255v-0.021\r\n\t\t\tL-128,362.727c18.639,10.638,53.441,21.255,91.167,21.255C53.854,383.98,96,335.43,96,278.284c0-48.55-26.958-79.9-85.278-102.163\r\n\t\t\tc-43.139-17.191-61.27-26.795-61.27-48.542c0-17.2,15.688-32.869,48.043-32.869c31.846,0,53.744,10.707,66.505,17.291l19.125-64\r\n\t\t\tC63.125,39.22,36.188,32-1.537,32L-1.537,32z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.socialJavascript = socialJavascript; \ No newline at end of file diff --git a/dist/ionicons/socialJavascriptOutline.js b/dist/ionicons/socialJavascriptOutline.js new file mode 100644 index 000000000..b86b2f55f --- /dev/null +++ b/dist/ionicons/socialJavascriptOutline.js @@ -0,0 +1,53 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialJavascriptOutline = void 0; +var socialJavascriptOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": { + "transform": "translate(384 48)" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "icon-javascript_1_1_" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "icon-javascript_1_1_" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M-192,56.001v197.017c0,41.567-9.644,71.988-28.662,90.417c-17.06,16.53-42.061,24.565-76.431,24.565\r\n\t\t\tc-12.002,0-25.78-1.496-37.185-3.886l4.09-30.505c7.146,1.269,15.465,2.149,24.774,2.149c21.92,0,37.892-6.459,48.827-19.745\r\n\t\t\tC-245.27,302.268-240,282.085-240,252.499V56.001H-192 M-176,40.001h-80v212.498c0,52.58-18.032,67.261-49.412,67.261\r\n\t\t\tc-14.705,0-27.948-2.521-38.25-6.063L-352,375.904c14.7,5.062,37.259,8.096,54.907,8.096C-225.045,384-176,350.129-176,253.02\r\n\t\t\tV40.001L-176,40.001z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M-192,56.001v197.017c0,41.567-9.644,71.988-28.662,90.417c-17.06,16.53-42.061,24.565-76.431,24.565\r\n\t\t\tc-12.002,0-25.78-1.496-37.185-3.886l4.09-30.505c7.146,1.269,15.465,2.149,24.774,2.149c21.92,0,37.892-6.459,48.827-19.745\r\n\t\t\tC-245.27,302.268-240,282.085-240,252.499V56.001H-192 M-176,40.001h-80v212.498c0,52.58-18.032,67.261-49.412,67.261\r\n\t\t\tc-14.705,0-27.948-2.521-38.25-6.063L-352,375.904c14.7,5.062,37.259,8.096,54.907,8.096C-225.045,384-176,350.129-176,253.02\r\n\t\t\tV40.001L-176,40.001z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M-1.537,48c24.458,0,45.898,3.146,65.1,9.585l-9.581,32.062C40.37,84.142,21.446,78.71-2.504,78.71\r\n\t\t\tc-18.607,0-34.462,4.584-45.849,13.256c-11.732,8.936-18.194,21.583-18.194,35.613c0,34.974,33.062,48.149,71.347,63.405\r\n\t\t\tl0.107,0.043l0.108,0.041c26.977,10.299,45.938,22.261,57.969,36.572C74.593,241.451,80,257.543,80,278.284\r\n\t\t\tc0,25.177-9.333,46.71-26.99,62.274C32.66,358.497,1.593,367.98-36.833,367.98c-28.052,0-54.698-6.427-72.615-13.979l7.593-31.603\r\n\t\t\tc17.579,7.248,41.882,14.382,69.438,14.382c20.28,0,36.629-4.478,48.591-13.306c12.807-9.45,19.857-23.697,19.857-40.119\r\n\t\t\tc0-15.348-6.041-27.922-18.469-38.444c-10.157-8.603-24.801-16.048-47.467-24.136c-26.86-9.904-47.359-21.947-60.934-35.795\r\n\t\t\tC-105.078,170.455-112,153.829-112,134.154c0-24.149,9.831-45.101,28.43-60.591C-63.49,56.839-35.124,48-1.537,48 M-1.537,32\r\n\t\t\tC-78.98,32-128,75.998-128,134.154c0,50.083,37.751,81.44,92.641,101.665c39.7,14.158,55.392,26.808,55.392,47.539\r\n\t\t\tc0,22.756-18.139,37.425-52.448,37.425c-31.863,0-60.789-10.64-80.394-21.255v-0.021L-128,362.727\r\n\t\t\tc18.639,10.638,53.441,21.255,91.167,21.255C53.854,383.98,96,335.43,96,278.284c0-48.55-26.958-79.9-85.278-102.163\r\n\t\t\tc-43.139-17.191-61.27-26.795-61.27-48.542c0-17.2,15.688-32.869,48.043-32.869c31.846,0,53.744,10.707,66.505,17.291l19.125-64\r\n\t\t\tC63.125,39.22,36.188,32-1.537,32L-1.537,32z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M-1.537,48c24.458,0,45.898,3.146,65.1,9.585l-9.581,32.062C40.37,84.142,21.446,78.71-2.504,78.71\r\n\t\t\tc-18.607,0-34.462,4.584-45.849,13.256c-11.732,8.936-18.194,21.583-18.194,35.613c0,34.974,33.062,48.149,71.347,63.405\r\n\t\t\tl0.107,0.043l0.108,0.041c26.977,10.299,45.938,22.261,57.969,36.572C74.593,241.451,80,257.543,80,278.284\r\n\t\t\tc0,25.177-9.333,46.71-26.99,62.274C32.66,358.497,1.593,367.98-36.833,367.98c-28.052,0-54.698-6.427-72.615-13.979l7.593-31.603\r\n\t\t\tc17.579,7.248,41.882,14.382,69.438,14.382c20.28,0,36.629-4.478,48.591-13.306c12.807-9.45,19.857-23.697,19.857-40.119\r\n\t\t\tc0-15.348-6.041-27.922-18.469-38.444c-10.157-8.603-24.801-16.048-47.467-24.136c-26.86-9.904-47.359-21.947-60.934-35.795\r\n\t\t\tC-105.078,170.455-112,153.829-112,134.154c0-24.149,9.831-45.101,28.43-60.591C-63.49,56.839-35.124,48-1.537,48 M-1.537,32\r\n\t\t\tC-78.98,32-128,75.998-128,134.154c0,50.083,37.751,81.44,92.641,101.665c39.7,14.158,55.392,26.808,55.392,47.539\r\n\t\t\tc0,22.756-18.139,37.425-52.448,37.425c-31.863,0-60.789-10.64-80.394-21.255v-0.021L-128,362.727\r\n\t\t\tc18.639,10.638,53.441,21.255,91.167,21.255C53.854,383.98,96,335.43,96,278.284c0-48.55-26.958-79.9-85.278-102.163\r\n\t\t\tc-43.139-17.191-61.27-26.795-61.27-48.542c0-17.2,15.688-32.869,48.043-32.869c31.846,0,53.744,10.707,66.505,17.291l19.125-64\r\n\t\t\tC63.125,39.22,36.188,32-1.537,32L-1.537,32z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.socialJavascriptOutline = socialJavascriptOutline; \ No newline at end of file diff --git a/dist/ionicons/socialLinkedin.js b/dist/ionicons/socialLinkedin.js new file mode 100644 index 000000000..109ef55f5 --- /dev/null +++ b/dist/ionicons/socialLinkedin.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialLinkedin = void 0; +var socialLinkedin = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M417.2,64H96.8C79.3,64,64,76.6,64,93.9v321.1c0,17.4,15.3,32.9,32.8,32.9h320.3c17.6,0,30.8-15.6,30.8-32.9V93.9\r\n\t\tC448,76.6,434.7,64,417.2,64z M183,384h-55V213h55V384z M157.4,187H157c-17.6,0-29-13.1-29-29.5c0-16.7,11.7-29.5,29.7-29.5\r\n\t\tc18,0,29,12.7,29.4,29.5C187.1,173.9,175.7,187,157.4,187z M384,384h-55v-93.5c0-22.4-8-37.7-27.9-37.7\r\n\t\tc-15.2,0-24.2,10.3-28.2,20.3c-1.5,3.6-1.9,8.5-1.9,13.5V384h-55V213h55v23.8c8-11.4,20.5-27.8,49.6-27.8\r\n\t\tc36.1,0,63.4,23.8,63.4,75.1V384z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M417.2,64H96.8C79.3,64,64,76.6,64,93.9v321.1c0,17.4,15.3,32.9,32.8,32.9h320.3c17.6,0,30.8-15.6,30.8-32.9V93.9\r\n\t\tC448,76.6,434.7,64,417.2,64z M183,384h-55V213h55V384z M157.4,187H157c-17.6,0-29-13.1-29-29.5c0-16.7,11.7-29.5,29.7-29.5\r\n\t\tc18,0,29,12.7,29.4,29.5C187.1,173.9,175.7,187,157.4,187z M384,384h-55v-93.5c0-22.4-8-37.7-27.9-37.7\r\n\t\tc-15.2,0-24.2,10.3-28.2,20.3c-1.5,3.6-1.9,8.5-1.9,13.5V384h-55V213h55v23.8c8-11.4,20.5-27.8,49.6-27.8\r\n\t\tc36.1,0,63.4,23.8,63.4,75.1V384z" + }, + "children": [] + }] + }] + }] +}; +exports.socialLinkedin = socialLinkedin; \ No newline at end of file diff --git a/dist/ionicons/socialLinkedinOutline.js b/dist/ionicons/socialLinkedinOutline.js new file mode 100644 index 000000000..f35997cf7 --- /dev/null +++ b/dist/ionicons/socialLinkedinOutline.js @@ -0,0 +1,69 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialLinkedinOutline = void 0; +var socialLinkedinOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "style", + "attribs": { + "type": "text/css" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "class": "st0", + "d": "M182.8,384V212.9h-54.9V384H182.8L182.8,384z M157.4,187c18.3,0,29.7-13.1,29.7-29.5\r\n\t\t\tc-0.3-16.7-11.4-29.5-29.4-29.5c-18,0-29.7,12.8-29.7,29.5c0,16.4,11.4,29.5,29,29.5H157.4L157.4,187z" + }, + "children": [{ + "name": "path", + "attribs": { + "class": "st0", + "d": "M182.8,384V212.9h-54.9V384H182.8L182.8,384z M157.4,187c18.3,0,29.7-13.1,29.7-29.5\r\n\t\t\tc-0.3-16.7-11.4-29.5-29.4-29.5c-18,0-29.7,12.8-29.7,29.5c0,16.4,11.4,29.5,29,29.5H157.4L157.4,187z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "class": "st0", + "d": "M320.6,209c-29.1,0-41.6,16.4-49.6,27.8V213h-55v171h55v-97.4c0-5,0.4-10,1.9-13.5c4-10,13-20.3,28.2-20.3\r\n\t\t\tc19.9,0,27.9,15.3,27.9,37.7V384h55v-99.9C384,232.8,356.8,209,320.6,209z" + }, + "children": [{ + "name": "path", + "attribs": { + "class": "st0", + "d": "M320.6,209c-29.1,0-41.6,16.4-49.6,27.8V213h-55v171h55v-97.4c0-5,0.4-10,1.9-13.5c4-10,13-20.3,28.2-20.3\r\n\t\t\tc19.9,0,27.9,15.3,27.9,37.7V384h55v-99.9C384,232.8,356.8,209,320.6,209z" + }, + "children": [] + }] + }] + }] + }, { + "name": "path", + "attribs": { + "d": "M417.2,64H96.8C79.3,64,64,76.6,64,93.9v321.1c0,17.4,15.3,32.9,32.8,32.9h320.3c17.6,0,30.8-15.6,30.8-32.9V93.9\r\n\t\tC448,76.6,434.7,64,417.2,64z M414,416c-1.1,0-313.1,0-314.9,0s-3.1-1.4-3.1-3.1S96,99.1,96,98s1-2,2-2s315,0,316,0s2,1,2,2\r\n\t\tc0,23.3,0,314.9,0,316C416,414.9,415.1,416,414,416z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M417.2,64H96.8C79.3,64,64,76.6,64,93.9v321.1c0,17.4,15.3,32.9,32.8,32.9h320.3c17.6,0,30.8-15.6,30.8-32.9V93.9\r\n\t\tC448,76.6,434.7,64,417.2,64z M414,416c-1.1,0-313.1,0-314.9,0s-3.1-1.4-3.1-3.1S96,99.1,96,98s1-2,2-2s315,0,316,0s2,1,2,2\r\n\t\tc0,23.3,0,314.9,0,316C416,414.9,415.1,416,414,416z" + }, + "children": [] + }] + }] + }] +}; +exports.socialLinkedinOutline = socialLinkedinOutline; \ No newline at end of file diff --git a/dist/ionicons/socialMarkdown.js b/dist/ionicons/socialMarkdown.js new file mode 100644 index 000000000..25c193452 --- /dev/null +++ b/dist/ionicons/socialMarkdown.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialMarkdown = void 0; +var socialMarkdown = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": { + "transform": "translate(96 48)" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "icon-markdown" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "icon-markdown" + }, + "children": [{ + "name": "path", + "attribs": { + "fill": "#231F20", + "d": "M351.659,48H-31.659C-49.496,48-64,62.484-64,80.308v255.349C-64,353.493-49.496,368-31.659,368h383.318\r\n\t\t\tC369.496,368,384,353.493,384,335.656V80.308C384,62.484,369.496,48,351.659,48z M188.023,304h-56.048v-96l-42.04,53.878\r\n\t\t\tL47.913,208v96H-8.131V112h56.044l42.022,67.98l42.04-67.98h56.048V304L188.023,304z M271.68,304l-69.635-96h42v-96h56.043v96\r\n\t\t\th42.027l-70.453,96H271.68z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill": "#231F20", + "d": "M351.659,48H-31.659C-49.496,48-64,62.484-64,80.308v255.349C-64,353.493-49.496,368-31.659,368h383.318\r\n\t\t\tC369.496,368,384,353.493,384,335.656V80.308C384,62.484,369.496,48,351.659,48z M188.023,304h-56.048v-96l-42.04,53.878\r\n\t\t\tL47.913,208v96H-8.131V112h56.044l42.022,67.98l42.04-67.98h56.048V304L188.023,304z M271.68,304l-69.635-96h42v-96h56.043v96\r\n\t\t\th42.027l-70.453,96H271.68z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.socialMarkdown = socialMarkdown; \ No newline at end of file diff --git a/dist/ionicons/socialNodejs.js b/dist/ionicons/socialNodejs.js new file mode 100644 index 000000000..ef5ff78b8 --- /dev/null +++ b/dist/ionicons/socialNodejs.js @@ -0,0 +1,53 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialNodejs = void 0; +var socialNodejs = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": { + "transform": "translate(96 96)" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "icon-nodejs_small" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "icon-nodejs_small" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M159.917,384c-5.77,0-11.536-1.562-16.633-4.599l-52.985-32.44c-7.914-4.562-4.023-6.203-1.443-7.141\r\n\t\t\tc10.565-3.781,13.713-5.657,24.947-12.285c1.206-0.667,2.747-0.424,3.955,0.322l39.71,23.504c1.476,0.85,3.557,0.85,4.931,0\r\n\t\t\tl155.188-92.246c1.475-0.877,2.415-2.646,2.415-4.441V67.869c0-1.85-0.94-3.592-2.449-4.528L162.433-31.331\r\n\t\t\tc-1.478-0.894-3.421-0.894-4.898,0L2.516,63.374C0.972,64.277,0,66.072,0,67.869v186.805c0,1.813,0.972,3.513,2.481,4.389\r\n\t\t\tl39.929,23.972C66.02,295.239,80,282.865,80,268.424V84.725c0-2.652,2.047-4.727,4.596-4.727h22.809\r\n\t\t\tc2.515,0,4.597,2.072,4.597,4.727v183.698c0,32.563-19.353,51.248-49.199,51.248c-9.156,0-16.397,0-36.552-10.279l-41.584-24.781\r\n\t\t\tC-25.629,278.459-32,266.965-32,254.656V65.191c0-12.316,6.371-23.784,16.665-29.917L143.35-59.59\r\n\t\t\tc10.027-5.88,23.374-5.88,33.332,0l158.65,94.864C345.63,41.423,352,52.899,352,65.191v189.465c0,12.309-6.37,23.75-16.668,29.953\r\n\t\t\tl-158.65,94.774c-5.097,3.036-10.832,4.599-16.698,4.599L159.917,384z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M159.917,384c-5.77,0-11.536-1.562-16.633-4.599l-52.985-32.44c-7.914-4.562-4.023-6.203-1.443-7.141\r\n\t\t\tc10.565-3.781,13.713-5.657,24.947-12.285c1.206-0.667,2.747-0.424,3.955,0.322l39.71,23.504c1.476,0.85,3.557,0.85,4.931,0\r\n\t\t\tl155.188-92.246c1.475-0.877,2.415-2.646,2.415-4.441V67.869c0-1.85-0.94-3.592-2.449-4.528L162.433-31.331\r\n\t\t\tc-1.478-0.894-3.421-0.894-4.898,0L2.516,63.374C0.972,64.277,0,66.072,0,67.869v186.805c0,1.813,0.972,3.513,2.481,4.389\r\n\t\t\tl39.929,23.972C66.02,295.239,80,282.865,80,268.424V84.725c0-2.652,2.047-4.727,4.596-4.727h22.809\r\n\t\t\tc2.515,0,4.597,2.072,4.597,4.727v183.698c0,32.563-19.353,51.248-49.199,51.248c-9.156,0-16.397,0-36.552-10.279l-41.584-24.781\r\n\t\t\tC-25.629,278.459-32,266.965-32,254.656V65.191c0-12.316,6.371-23.784,16.665-29.917L143.35-59.59\r\n\t\t\tc10.027-5.88,23.374-5.88,33.332,0l158.65,94.864C345.63,41.423,352,52.899,352,65.191v189.465c0,12.309-6.37,23.75-16.668,29.953\r\n\t\t\tl-158.65,94.774c-5.097,3.036-10.832,4.599-16.698,4.599L159.917,384z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M208.943,255.998c-64.61,0-84.006-31.61-84.006-59.271c0-2.629,2.048-4.729,4.562-4.729h20.521\r\n\t\t\tc2.282,0,4.227,1.7,4.562,4.016c3.084,21.602,16.748,31.15,54.324,31.15c33.399,0,47.091-10.346,47.091-28.684\r\n\t\t\tc0-10.592-3.463-18.424-55.407-23.697c-43.427-4.441-70.288-14.373-70.288-50.295c0-33.135,26.996-52.49,72.234-52.49\r\n\t\t\tc46.128,0,76.462,14,79.173,50.829c0.102,1.337-0.368,2.629-1.241,3.644c-0.871,0.965-2.078,1.527-3.353,1.527h-20.591\r\n\t\t\tc-2.146,0-4.024-1.562-4.459-3.713c-4.401-16.953-16.97-23.402-49.563-23.402c-36.486,0-40.746,12.753-40.746,22.607\r\n\t\t\tc0,11.963,5.031,15.441,54.294,22.172c48.761,6.663,71.933,16.117,71.933,51.552c0,35.781-28.808,58.783-79.075,58.783\r\n\t\t\tL208.943,255.998L208.943,255.998z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M208.943,255.998c-64.61,0-84.006-31.61-84.006-59.271c0-2.629,2.048-4.729,4.562-4.729h20.521\r\n\t\t\tc2.282,0,4.227,1.7,4.562,4.016c3.084,21.602,16.748,31.15,54.324,31.15c33.399,0,47.091-10.346,47.091-28.684\r\n\t\t\tc0-10.592-3.463-18.424-55.407-23.697c-43.427-4.441-70.288-14.373-70.288-50.295c0-33.135,26.996-52.49,72.234-52.49\r\n\t\t\tc46.128,0,76.462,14,79.173,50.829c0.102,1.337-0.368,2.629-1.241,3.644c-0.871,0.965-2.078,1.527-3.353,1.527h-20.591\r\n\t\t\tc-2.146,0-4.024-1.562-4.459-3.713c-4.401-16.953-16.97-23.402-49.563-23.402c-36.486,0-40.746,12.753-40.746,22.607\r\n\t\t\tc0,11.963,5.031,15.441,54.294,22.172c48.761,6.663,71.933,16.117,71.933,51.552c0,35.781-28.808,58.783-79.075,58.783\r\n\t\t\tL208.943,255.998L208.943,255.998z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.socialNodejs = socialNodejs; \ No newline at end of file diff --git a/dist/ionicons/socialOctocat.js b/dist/ionicons/socialOctocat.js new file mode 100644 index 000000000..d1181142e --- /dev/null +++ b/dist/ionicons/socialOctocat.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialOctocat = void 0; +var socialOctocat = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill": "#231F20", + "d": "M178.354,287.478c-9.123,0-16.928,4.207-23.201,12.833c-6.291,8.478-9.398,18.973-9.398,31.431\r\n\t\tc0,12.474,3.166,23.008,9.398,31.509c6.273,8.54,14.039,12.771,23.201,12.771c8.494,0,15.889-4.27,22.121-12.771\r\n\t\tc6.271-8.501,9.398-19.035,9.398-31.509c0-12.419-3.166-22.93-9.398-31.431C194.242,291.724,186.908,287.478,178.354,287.478z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill": "#231F20", + "d": "M178.354,287.478c-9.123,0-16.928,4.207-23.201,12.833c-6.291,8.478-9.398,18.973-9.398,31.431\r\n\t\tc0,12.474,3.166,23.008,9.398,31.509c6.273,8.54,14.039,12.771,23.201,12.771c8.494,0,15.889-4.27,22.121-12.771\r\n\t\tc6.271-8.501,9.398-19.035,9.398-31.509c0-12.419-3.166-22.93-9.398-31.431C194.242,291.724,186.908,287.478,178.354,287.478z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "fill": "#231F20", + "d": "M334.668,287.478c-9.045,0-16.891,4.207-23.182,12.833c-6.271,8.478-9.359,18.973-9.359,31.431\r\n\t\tc0,12.474,3.186,23.008,9.359,31.509c6.291,8.54,14.098,12.771,23.182,12.771c8.533,0,15.906-4.27,22.178-12.771\r\n\t\tc6.293-8.501,9.418-19.035,9.418-31.509c0-12.419-3.164-22.93-9.418-31.431C350.574,291.724,343.299,287.478,334.668,287.478z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill": "#231F20", + "d": "M334.668,287.478c-9.045,0-16.891,4.207-23.182,12.833c-6.271,8.478-9.359,18.973-9.359,31.431\r\n\t\tc0,12.474,3.186,23.008,9.359,31.509c6.291,8.54,14.098,12.771,23.182,12.771c8.533,0,15.906-4.27,22.178-12.771\r\n\t\tc6.293-8.501,9.418-19.035,9.418-31.509c0-12.419-3.164-22.93-9.418-31.431C350.574,291.724,343.299,287.478,334.668,287.478z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "fill": "#231F20", + "d": "M445.777,172h-0.059c0,0,2.793-14.264,0.314-39.18c-2.182-24.916-7.471-47.838-16.123-68.82\r\n\t\tc0,0-4.422,0.76-12.76,2.896s-22.08,6.299-40.938,14.768c-18.541,8.54-37.986,19.788-58.297,33.505\r\n\t\tc-13.803-3.934-34.408-5.939-61.994-5.939c-26.289,0-46.914,2.012-61.977,5.945c-44.592-30.859-81.832-47.945-112.092-51.175\r\n\t\tc-8.594,20.982-13.883,43.991-16.045,68.97c-2.398,24.939,0.432,39.329,0.432,39.329C41.979,198.551,32,236.541,32,267.793\r\n\t\tc0,24.244,0.658,46.078,6.125,65.48c5.564,19.31,12.662,35.13,21.098,47.221c8.611,12.121,19.012,22.788,31.576,31.938\r\n\t\tc12.467,9.314,23.988,15.962,34.389,20.216c10.461,4.372,22.375,7.602,35.982,9.861c13.33,2.386,23.438,3.645,30.477,3.996\r\n\t\tc0,0,28,1.494,64.354,1.494c36.354,0,64.295-1.494,64.295-1.494c7.02-0.352,17.145-1.634,30.535-3.996\r\n\t\tc13.547-2.299,25.521-5.607,35.941-9.861c10.402-4.293,21.943-10.901,34.469-20.216c12.523-9.032,22.906-19.739,31.518-31.938\r\n\t\tc8.436-12.091,15.494-27.911,21.098-47.221c5.486-19.402,6.145-41.385,6.145-65.629C480,237.389,469.982,199,445.777,172z\r\n\t\t M380.383,405.645C352.521,418.736,311.486,424,257.061,424l-2.143-0.039c-54.443,0-95.361-5.248-122.848-18.41\r\n\t\tc-27.508-13.092-41.271-40.057-41.271-80.738c0-24.33,8.572-43.99,25.482-59.107c7.354-6.515,16.438-11.019,27.645-13.717\r\n\t\tc11.129-2.558,21.354-2.762,30.969-2.465c9.398,0.415,22.551,2.196,39.344,3.464C231.029,254.285,243.535,256,256,256\r\n\t\tc11.698,0,27.213-1.957,52.104-3.959c24.99-1.971,43.494-2.971,55.467-1c12.289,2.002,22.986,6.202,32.129,14.742\r\n\t\tc17.734,15.751,26.602,35.505,26.602,59.084C422.301,365.533,408.164,392.537,380.383,405.645z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill": "#231F20", + "d": "M445.777,172h-0.059c0,0,2.793-14.264,0.314-39.18c-2.182-24.916-7.471-47.838-16.123-68.82\r\n\t\tc0,0-4.422,0.76-12.76,2.896s-22.08,6.299-40.938,14.768c-18.541,8.54-37.986,19.788-58.297,33.505\r\n\t\tc-13.803-3.934-34.408-5.939-61.994-5.939c-26.289,0-46.914,2.012-61.977,5.945c-44.592-30.859-81.832-47.945-112.092-51.175\r\n\t\tc-8.594,20.982-13.883,43.991-16.045,68.97c-2.398,24.939,0.432,39.329,0.432,39.329C41.979,198.551,32,236.541,32,267.793\r\n\t\tc0,24.244,0.658,46.078,6.125,65.48c5.564,19.31,12.662,35.13,21.098,47.221c8.611,12.121,19.012,22.788,31.576,31.938\r\n\t\tc12.467,9.314,23.988,15.962,34.389,20.216c10.461,4.372,22.375,7.602,35.982,9.861c13.33,2.386,23.438,3.645,30.477,3.996\r\n\t\tc0,0,28,1.494,64.354,1.494c36.354,0,64.295-1.494,64.295-1.494c7.02-0.352,17.145-1.634,30.535-3.996\r\n\t\tc13.547-2.299,25.521-5.607,35.941-9.861c10.402-4.293,21.943-10.901,34.469-20.216c12.523-9.032,22.906-19.739,31.518-31.938\r\n\t\tc8.436-12.091,15.494-27.911,21.098-47.221c5.486-19.402,6.145-41.385,6.145-65.629C480,237.389,469.982,199,445.777,172z\r\n\t\t M380.383,405.645C352.521,418.736,311.486,424,257.061,424l-2.143-0.039c-54.443,0-95.361-5.248-122.848-18.41\r\n\t\tc-27.508-13.092-41.271-40.057-41.271-80.738c0-24.33,8.572-43.99,25.482-59.107c7.354-6.515,16.438-11.019,27.645-13.717\r\n\t\tc11.129-2.558,21.354-2.762,30.969-2.465c9.398,0.415,22.551,2.196,39.344,3.464C231.029,254.285,243.535,256,256,256\r\n\t\tc11.698,0,27.213-1.957,52.104-3.959c24.99-1.971,43.494-2.971,55.467-1c12.289,2.002,22.986,6.202,32.129,14.742\r\n\t\tc17.734,15.751,26.602,35.505,26.602,59.084C422.301,365.533,408.164,392.537,380.383,405.645z" + }, + "children": [] + }] + }] + }] +}; +exports.socialOctocat = socialOctocat; \ No newline at end of file diff --git a/dist/ionicons/socialPinterest.js b/dist/ionicons/socialPinterest.js new file mode 100644 index 000000000..d6790a00d --- /dev/null +++ b/dist/ionicons/socialPinterest.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialPinterest = void 0; +var socialPinterest = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,32C132.3,32,32,132.3,32,256c0,91.7,55.2,170.5,134.1,205.2c-0.6-15.6-0.1-34.4,3.9-51.4\r\n\t\tc4.3-18.2,28.8-122.1,28.8-122.1s-7.2-14.3-7.2-35.4c0-33.2,19.2-58,43.2-58c20.4,0,30.2,15.3,30.2,33.6\r\n\t\tc0,20.5-13.1,51.1-19.8,79.5c-5.6,23.8,11.9,43.1,35.4,43.1c42.4,0,71-54.5,71-119.1c0-49.1-33.1-85.8-93.2-85.8\r\n\t\tc-67.9,0-110.3,50.7-110.3,107.3c0,19.5,5.8,33.3,14.8,43.9c4.1,4.9,4.7,6.9,3.2,12.5c-1.1,4.1-3.5,14-4.6,18\r\n\t\tc-1.5,5.7-6.1,7.7-11.2,5.6c-31.3-12.8-45.9-47-45.9-85.6c0-63.6,53.7-139.9,160.1-139.9c85.5,0,141.8,61.9,141.8,128.3\r\n\t\tc0,87.9-48.9,153.5-120.9,153.5c-24.2,0-46.9-13.1-54.7-27.9c0,0-13,51.6-15.8,61.6c-4.7,17.3-14,34.5-22.5,48\r\n\t\tc20.1,5.9,41.4,9.2,63.5,9.2c123.7,0,224-100.3,224-224C480,132.3,379.7,32,256,32z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,32C132.3,32,32,132.3,32,256c0,91.7,55.2,170.5,134.1,205.2c-0.6-15.6-0.1-34.4,3.9-51.4\r\n\t\tc4.3-18.2,28.8-122.1,28.8-122.1s-7.2-14.3-7.2-35.4c0-33.2,19.2-58,43.2-58c20.4,0,30.2,15.3,30.2,33.6\r\n\t\tc0,20.5-13.1,51.1-19.8,79.5c-5.6,23.8,11.9,43.1,35.4,43.1c42.4,0,71-54.5,71-119.1c0-49.1-33.1-85.8-93.2-85.8\r\n\t\tc-67.9,0-110.3,50.7-110.3,107.3c0,19.5,5.8,33.3,14.8,43.9c4.1,4.9,4.7,6.9,3.2,12.5c-1.1,4.1-3.5,14-4.6,18\r\n\t\tc-1.5,5.7-6.1,7.7-11.2,5.6c-31.3-12.8-45.9-47-45.9-85.6c0-63.6,53.7-139.9,160.1-139.9c85.5,0,141.8,61.9,141.8,128.3\r\n\t\tc0,87.9-48.9,153.5-120.9,153.5c-24.2,0-46.9-13.1-54.7-27.9c0,0-13,51.6-15.8,61.6c-4.7,17.3-14,34.5-22.5,48\r\n\t\tc20.1,5.9,41.4,9.2,63.5,9.2c123.7,0,224-100.3,224-224C480,132.3,379.7,32,256,32z" + }, + "children": [] + }] + }] + }] +}; +exports.socialPinterest = socialPinterest; \ No newline at end of file diff --git a/dist/ionicons/socialPinterestOutline.js b/dist/ionicons/socialPinterestOutline.js new file mode 100644 index 000000000..27e0815d7 --- /dev/null +++ b/dist/ionicons/socialPinterestOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialPinterestOutline = void 0; +var socialPinterestOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,32C132.3,32,32,132.3,32,256s100.3,224,224,224s224-100.3,224-224S379.7,32,256,32z M391.8,391.8\r\n\tC355.5,428,307.3,448,256,448c-16.2,0-32.1-2-47.4-5.9c2.8-6.3,5.2-12.8,7-19.3c2.8-10,15.8-61.6,15.8-61.6\r\n\tc7.8,14.8,30.5,27.9,54.7,27.9c72,0,120.9-65.6,120.9-153.5c0-66.4-56.3-128.3-141.8-128.3c-106.4,0-160.1,76.3-160.1,139.9\r\n\tc0,38.5,14.6,72.8,45.9,85.6c5.1,2.1,9.7,0.1,11.2-5.6c1-3.9,3.5-13.9,4.6-18c1.5-5.6,0.9-7.6-3.2-12.5c-9-10.7-14.8-24.4-14.8-43.9\r\n\tc0-56.6,42.3-107.3,110.3-107.3c60.1,0,93.2,36.7,93.2,85.8c0,64.6-28.6,119.1-71,119.1c-23.4,0-41-19.4-35.4-43.1\r\n\tc6.7-28.4,19.8-59,19.8-79.5c0-18.3-9.8-33.6-30.2-33.6c-24,0-43.2,24.8-43.2,58c0,21.1,7.2,35.4,7.2,35.4s-24.5,103.9-28.8,122.1\r\n\tc-1.3,5.5-2.2,11.1-2.9,16.8c-17.3-9-33.3-20.6-47.4-34.8C84,355.5,64,307.3,64,256s20-99.5,56.2-135.8C156.5,84,204.7,64,256,64\r\n\ts99.5,20,135.8,56.2C428,156.5,448,204.7,448,256S428,355.5,391.8,391.8z" + }, + "children": [] + }] +}; +exports.socialPinterestOutline = socialPinterestOutline; \ No newline at end of file diff --git a/dist/ionicons/socialPython.js b/dist/ionicons/socialPython.js new file mode 100644 index 000000000..439941072 --- /dev/null +++ b/dist/ionicons/socialPython.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialPython = void 0; +var socialPython = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M193.46,249.056c3.723-0.67,7.589-1.041,11.586-1.041L201.924,248h103.823c4.503,0,8.806-0.617,12.908-1.754\r\n\t\tc19.37-5.363,33.345-22.537,33.345-43.663v-30.822v-56.402c0-24.832-21.15-43.484-46.289-47.606\r\n\t\tc-15.931-2.624-39.258-3.827-55.089-3.749c-15.829,0.086-30.981,1.404-44.277,3.749C167.143,74.576,160,88.928,160,115.359V144h96\r\n\t\tv16H128.82c-35.628,0-64.538,42.571-64.813,95.242C64.005,255.495,64,255.747,64,256c0,9.523,0.94,18.72,2.685,27.404\r\n\t\tC74.648,323.07,99.451,352,128.82,352H144v-2.662v-43.273C144,279.238,164.146,254.332,193.46,249.056z M203.656,127.002\r\n\t\tc-9.592,0-17.384-7.785-17.384-17.403c0-9.664,7.774-17.52,17.384-17.52c9.574,0,17.399,7.855,17.399,17.52\r\n\t\tC221.056,119.217,213.246,127.002,203.656,127.002z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M193.46,249.056c3.723-0.67,7.589-1.041,11.586-1.041L201.924,248h103.823c4.503,0,8.806-0.617,12.908-1.754\r\n\t\tc19.37-5.363,33.345-22.537,33.345-43.663v-30.822v-56.402c0-24.832-21.15-43.484-46.289-47.606\r\n\t\tc-15.931-2.624-39.258-3.827-55.089-3.749c-15.829,0.086-30.981,1.404-44.277,3.749C167.143,74.576,160,88.928,160,115.359V144h96\r\n\t\tv16H128.82c-35.628,0-64.538,42.571-64.813,95.242C64.005,255.495,64,255.747,64,256c0,9.523,0.94,18.72,2.685,27.404\r\n\t\tC74.648,323.07,99.451,352,128.82,352H144v-2.662v-43.273C144,279.238,164.146,254.332,193.46,249.056z M203.656,127.002\r\n\t\tc-9.592,0-17.384-7.785-17.384-17.403c0-9.664,7.774-17.52,17.384-17.52c9.574,0,17.399,7.855,17.399,17.52\r\n\t\tC221.056,119.217,213.246,127.002,203.656,127.002z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M443.951,222.543C434.78,186.021,411.033,160,383.18,160H368v2.626v38.046c0,33.915-22.286,58.474-49.489,62.681\r\n\t\tc-2.737,0.424-5.483,0.646-8.301,0.646H206.351c-4.518,0-8.904,0.584-13.049,1.672C174.18,270.689,160,286.6,160,307.236v32.922\r\n\t\tv54.305c0,24.832,24.977,39.426,49.481,46.551c29.327,8.531,61.267,10.068,96.366,0C329.15,434.354,352,420.893,352,394.463V368\r\n\t\th-96v-16h127.18c25.24,0,47.107-21.365,57.814-52.549C445.474,286.404,448,271.641,448,256\r\n\t\tC448,244.232,446.567,232.962,443.951,222.543z M307.867,382.82c9.59,0,17.381,7.785,17.381,17.4\r\n\t\tc0,9.65-7.791,17.521-17.381,17.521c-9.577,0-17.399-7.871-17.399-17.521C290.468,390.59,298.274,382.82,307.867,382.82z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M443.951,222.543C434.78,186.021,411.033,160,383.18,160H368v2.626v38.046c0,33.915-22.286,58.474-49.489,62.681\r\n\t\tc-2.737,0.424-5.483,0.646-8.301,0.646H206.351c-4.518,0-8.904,0.584-13.049,1.672C174.18,270.689,160,286.6,160,307.236v32.922\r\n\t\tv54.305c0,24.832,24.977,39.426,49.481,46.551c29.327,8.531,61.267,10.068,96.366,0C329.15,434.354,352,420.893,352,394.463V368\r\n\t\th-96v-16h127.18c25.24,0,47.107-21.365,57.814-52.549C445.474,286.404,448,271.641,448,256\r\n\t\tC448,244.232,446.567,232.962,443.951,222.543z M307.867,382.82c9.59,0,17.381,7.785,17.381,17.4\r\n\t\tc0,9.65-7.791,17.521-17.381,17.521c-9.577,0-17.399-7.871-17.399-17.521C290.468,390.59,298.274,382.82,307.867,382.82z" + }, + "children": [] + }] + }] + }] +}; +exports.socialPython = socialPython; \ No newline at end of file diff --git a/dist/ionicons/socialReddit.js b/dist/ionicons/socialReddit.js new file mode 100644 index 000000000..c468d3def --- /dev/null +++ b/dist/ionicons/socialReddit.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialReddit = void 0; +var socialReddit = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M480.5,251c0-27.7-22.2-50.2-49.5-50.2c-13,0-24.7,5-33.6,13.3c-32.4-22.8-76.1-37.8-124.9-40.6l21.9-73.2l67.1,13.5\r\n\tc2.3,22.7,21.2,40.4,44.3,40.4c0.1,0,0.1,0,0.2,0c0.1,0,0.1,0,0.2,0c24.6,0,44.5-20.2,44.5-45.1S430.7,64,406.1,64\r\n\tc-0.1,0-0.1,0-0.2,0c0,0-0.1,0-0.1,0c-17.2,0-32,9.8-39.5,24.3l-89.7-18l-30.8,103l-2.5,0.1c-50.3,2.2-95.5,17.4-128.7,40.7\r\n\tc-8.8-8.3-20.6-13.3-33.6-13.3c-27.3,0-49.5,22.5-49.5,50.2c0,19.6,11,36.5,27.1,44.8c-0.8,4.9-1.2,9.8-1.2,14.8\r\n\tC57.5,386.4,146.4,448,256,448s198.5-61.6,198.5-137.5c0-5-0.4-9.9-1.1-14.8C469.5,287.4,480.5,270.5,480.5,251z M65.8,271.1\r\n\tc-6.6-4.5-10.9-12.1-10.9-20.8c0-13.8,11.1-25.1,24.7-25.1c5.6,0,10.8,1.9,15,5.1C81.1,242.2,71.1,256,65.8,271.1z M389.3,109.1\r\n\tc0-9.2,7.4-16.8,16.5-16.8s16.5,7.5,16.5,16.8c0,9.2-7.4,16.8-16.5,16.8S389.3,118.4,389.3,109.1z M158.5,288.4\r\n\tc0-17.6,14.2-31.8,31.8-31.8s31.8,14.2,31.8,31.8c0,17.6-14.2,31.8-31.8,31.8S158.5,306,158.5,288.4z M256,400\r\n\tc-47.6-0.2-76-28.5-77.2-29.7l12.6-12.4c0.2,0.2,23.7,24.2,64.6,24.4c40.3-0.2,64.2-24.2,64.5-24.4l12.6,12.4\r\n\tC331.9,371.5,303.6,399.8,256,400z M322.3,320.2c-17.6,0-31.8-14.2-31.8-31.8c0-17.6,14.2-31.8,31.8-31.8s31.8,14.2,31.8,31.8\r\n\tC354.1,306,339.8,320.2,322.3,320.2z M446.4,271.5c-5.4-15.3-15.6-29.4-29.3-41.4c4.2-3.3,9.5-5.2,15.2-5.2\r\n\tc13.9,0,25.1,11.4,25.1,25.5C457.5,259.2,453.1,266.9,446.4,271.5z" + }, + "children": [] + }] +}; +exports.socialReddit = socialReddit; \ No newline at end of file diff --git a/dist/ionicons/socialRedditOutline.js b/dist/ionicons/socialRedditOutline.js new file mode 100644 index 000000000..2fa433eb6 --- /dev/null +++ b/dist/ionicons/socialRedditOutline.js @@ -0,0 +1,79 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialRedditOutline = void 0; +var socialRedditOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "cx": "322.3", + "cy": "288.4", + "r": "31.8" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "322.3", + "cy": "288.4", + "r": "31.8" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "190.3", + "cy": "288.4", + "r": "31.8" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "190.3", + "cy": "288.4", + "r": "31.8" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M480.5,251c0-27.7-22.2-50.2-49.5-50.2c-13,0-24.7,5-33.6,13.3c-33.2-23.4-78.4-38.5-128.7-40.7L292,95.7l69.6,13.9\r\n\t\t\tc0.2,24.7,20.1,44.7,44.5,44.7c24.6,0,44.5-20.2,44.5-45.1S430.7,64,406.1,64c-18.6,0-34.5,11.6-41.2,28l-85.2-17l-29.4,98.2\r\n\t\t\tl-7.1,0.2c-50.3,2.2-95.5,17.4-128.7,40.7c-8.8-8.3-20.6-13.3-33.6-13.3c-27.3,0-49.5,22.5-49.5,50.2c0,19.6,11,36.5,27.1,44.8\r\n\t\t\tc-0.8,4.9-1.2,9.8-1.2,14.8C57.5,386.4,146.4,448,256,448s198.5-61.6,198.5-137.5c0-5-0.4-9.9-1.1-14.8\r\n\t\t\tC469.5,287.4,480.5,270.5,480.5,251z M406.1,81.9c14.8,0,26.8,12.2,26.8,27.2c0,15-12,27.2-26.8,27.2c-14.8,0-26.8-12.2-26.8-27.2\r\n\t\t\tC379.3,94.1,391.3,81.9,406.1,81.9z M49.2,251c0-17.8,14.3-32.2,31.8-32.2c7.2,0,13.9,2.5,19.2,6.6c-17.3,15.2-30.1,33-37,52.4\r\n\t\t\tC54.8,271.9,49.2,262.1,49.2,251z M386.4,392.9c-34.6,23.9-80.9,37.1-130.4,37.1s-95.8-13.2-130.4-37.1\r\n\t\t\tc-32.5-22.5-50.4-51.8-50.4-82.4c0-3.2,0.2-6.5,0.6-9.7c0.7-6,2.2-11.9,4.3-17.7c5.6-15.6,16-30.3,30.7-43.4\r\n\t\t\tc4.4-3.9,9.2-7.7,14.4-11.3c0.1-0.1,0.3-0.2,0.4-0.3C160.2,204.2,206.5,191,256,191c49.5,0,95.8,13.2,130.4,37.1\r\n\t\t\tc0.1,0.1,0.3,0.2,0.4,0.3c5.2,3.6,10,7.4,14.4,11.3c14.7,13.1,25.1,27.8,30.7,43.4c2.1,5.8,3.5,11.7,4.3,17.7\r\n\t\t\tc0.4,3.2,0.6,6.4,0.6,9.7C436.8,341.1,418.9,370.4,386.4,392.9z M448.8,277.7c-6.9-19.4-19.7-37.2-37-52.4\r\n\t\t\tc5.3-4.1,12-6.6,19.2-6.6c17.5,0,31.8,14.5,31.8,32.2C462.8,262.1,457.2,271.9,448.8,277.7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M480.5,251c0-27.7-22.2-50.2-49.5-50.2c-13,0-24.7,5-33.6,13.3c-33.2-23.4-78.4-38.5-128.7-40.7L292,95.7l69.6,13.9\r\n\t\t\tc0.2,24.7,20.1,44.7,44.5,44.7c24.6,0,44.5-20.2,44.5-45.1S430.7,64,406.1,64c-18.6,0-34.5,11.6-41.2,28l-85.2-17l-29.4,98.2\r\n\t\t\tl-7.1,0.2c-50.3,2.2-95.5,17.4-128.7,40.7c-8.8-8.3-20.6-13.3-33.6-13.3c-27.3,0-49.5,22.5-49.5,50.2c0,19.6,11,36.5,27.1,44.8\r\n\t\t\tc-0.8,4.9-1.2,9.8-1.2,14.8C57.5,386.4,146.4,448,256,448s198.5-61.6,198.5-137.5c0-5-0.4-9.9-1.1-14.8\r\n\t\t\tC469.5,287.4,480.5,270.5,480.5,251z M406.1,81.9c14.8,0,26.8,12.2,26.8,27.2c0,15-12,27.2-26.8,27.2c-14.8,0-26.8-12.2-26.8-27.2\r\n\t\t\tC379.3,94.1,391.3,81.9,406.1,81.9z M49.2,251c0-17.8,14.3-32.2,31.8-32.2c7.2,0,13.9,2.5,19.2,6.6c-17.3,15.2-30.1,33-37,52.4\r\n\t\t\tC54.8,271.9,49.2,262.1,49.2,251z M386.4,392.9c-34.6,23.9-80.9,37.1-130.4,37.1s-95.8-13.2-130.4-37.1\r\n\t\t\tc-32.5-22.5-50.4-51.8-50.4-82.4c0-3.2,0.2-6.5,0.6-9.7c0.7-6,2.2-11.9,4.3-17.7c5.6-15.6,16-30.3,30.7-43.4\r\n\t\t\tc4.4-3.9,9.2-7.7,14.4-11.3c0.1-0.1,0.3-0.2,0.4-0.3C160.2,204.2,206.5,191,256,191c49.5,0,95.8,13.2,130.4,37.1\r\n\t\t\tc0.1,0.1,0.3,0.2,0.4,0.3c5.2,3.6,10,7.4,14.4,11.3c14.7,13.1,25.1,27.8,30.7,43.4c2.1,5.8,3.5,11.7,4.3,17.7\r\n\t\t\tc0.4,3.2,0.6,6.4,0.6,9.7C436.8,341.1,418.9,370.4,386.4,392.9z M448.8,277.7c-6.9-19.4-19.7-37.2-37-52.4\r\n\t\t\tc5.3-4.1,12-6.6,19.2-6.6c17.5,0,31.8,14.5,31.8,32.2C462.8,262.1,457.2,271.9,448.8,277.7z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M320.5,357.9c-0.2,0.2-24.2,24.2-64.5,24.4c-40.9-0.2-64.4-24.2-64.6-24.4l-12.6,12.4c1.2,1.2,29.6,29.5,77.2,29.7\r\n\t\t\tc47.6-0.2,75.9-28.5,77.1-29.7L320.5,357.9z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M320.5,357.9c-0.2,0.2-24.2,24.2-64.5,24.4c-40.9-0.2-64.4-24.2-64.6-24.4l-12.6,12.4c1.2,1.2,29.6,29.5,77.2,29.7\r\n\t\t\tc47.6-0.2,75.9-28.5,77.1-29.7L320.5,357.9z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.socialRedditOutline = socialRedditOutline; \ No newline at end of file diff --git a/dist/ionicons/socialRss.js b/dist/ionicons/socialRss.js new file mode 100644 index 000000000..74e3cd980 --- /dev/null +++ b/dist/ionicons/socialRss.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialRss = void 0; +var socialRss = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M119.9,336.1c-30.8,0-55.9,25.1-55.9,55.8c0,30.8,25.1,55.6,55.9,55.6c30.9,0,55.9-24.9,55.9-55.6\r\n\t\tC175.8,361.2,150.8,336.1,119.9,336.1z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M119.9,336.1c-30.8,0-55.9,25.1-55.9,55.8c0,30.8,25.1,55.6,55.9,55.6c30.9,0,55.9-24.9,55.9-55.6\r\n\t\tC175.8,361.2,150.8,336.1,119.9,336.1z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M64,192v79.9c48,0,94.1,14.2,128,48.1c33.9,33.9,48,79.9,48,128h80C320,308.1,204,192,64,192z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M64,192v79.9c48,0,94.1,14.2,128,48.1c33.9,33.9,48,79.9,48,128h80C320,308.1,204,192,64,192z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M64,64v79.9c171,0,303.9,133,303.9,304.1H448C448,236.3,276,64,64,64z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M64,64v79.9c171,0,303.9,133,303.9,304.1H448C448,236.3,276,64,64,64z" + }, + "children": [] + }] + }] + }] +}; +exports.socialRss = socialRss; \ No newline at end of file diff --git a/dist/ionicons/socialRssOutline.js b/dist/ionicons/socialRssOutline.js new file mode 100644 index 000000000..3837b7272 --- /dev/null +++ b/dist/ionicons/socialRssOutline.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialRssOutline = void 0; +var socialRssOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M119.9,336.1c-30.8,0-55.9,25.1-55.9,55.8c0,30.8,25.1,55.6,55.9,55.6c30.9,0,55.9-24.9,55.9-55.6\r\n\t\tC175.8,361.2,150.8,336.1,119.9,336.1z M119.9,431.5c-22,0-39.9-17.8-39.9-39.6c0-21.9,17.9-39.8,39.9-39.8\r\n\t\tc22,0,39.9,17.9,39.9,39.8C159.8,413.7,141.9,431.5,119.9,431.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M119.9,336.1c-30.8,0-55.9,25.1-55.9,55.8c0,30.8,25.1,55.6,55.9,55.6c30.9,0,55.9-24.9,55.9-55.6\r\n\t\tC175.8,361.2,150.8,336.1,119.9,336.1z M119.9,431.5c-22,0-39.9-17.8-39.9-39.6c0-21.9,17.9-39.8,39.9-39.8\r\n\t\tc22,0,39.9,17.9,39.9,39.8C159.8,413.7,141.9,431.5,119.9,431.5z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M64,192v79.9c48,0,94.1,14.2,128,48.1c33.9,33.9,48,79.9,48,128h80C320,308.1,204,192,64,192z M303.5,432h-48\r\n\t\tc-3.1-49.7-21-92.1-52.2-123.3C172.1,277.4,130,259.5,80,256.4v-47.8c26,1.8,52.1,8,76.7,18.5c28.5,12.2,54.2,29.6,76.4,51.8\r\n\t\tc22.2,22.2,39.6,47.9,51.8,76.4C295.5,379.9,301.7,405.6,303.5,432z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M64,192v79.9c48,0,94.1,14.2,128,48.1c33.9,33.9,48,79.9,48,128h80C320,308.1,204,192,64,192z M303.5,432h-48\r\n\t\tc-3.1-49.7-21-92.1-52.2-123.3C172.1,277.4,130,259.5,80,256.4v-47.8c26,1.8,52.1,8,76.7,18.5c28.5,12.2,54.2,29.6,76.4,51.8\r\n\t\tc22.2,22.2,39.6,47.9,51.8,76.4C295.5,379.9,301.7,405.6,303.5,432z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M64,64v79.9c171,0,303.9,133,303.9,304.1H448C448,236.3,276,64,64,64z M291.4,220.5C235.4,164.4,161,132,80,128.2V80.3\r\n\t\tC270,88.5,423.5,241.8,431.7,432h-48.2C379.7,351.1,347.3,276.5,291.4,220.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M64,64v79.9c171,0,303.9,133,303.9,304.1H448C448,236.3,276,64,64,64z M291.4,220.5C235.4,164.4,161,132,80,128.2V80.3\r\n\t\tC270,88.5,423.5,241.8,431.7,432h-48.2C379.7,351.1,347.3,276.5,291.4,220.5z" + }, + "children": [] + }] + }] + }] +}; +exports.socialRssOutline = socialRssOutline; \ No newline at end of file diff --git a/dist/ionicons/socialSass.js b/dist/ionicons/socialSass.js new file mode 100644 index 000000000..b4665becd --- /dev/null +++ b/dist/ionicons/socialSass.js @@ -0,0 +1,18 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialSass = void 0; +var socialSass = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "fill": "#231F20", + "d": "M511.784,329.108c-1.67-13.599-9.236-24.146-20.795-32.416c2.857,2.04,5.275,3.766-0.055-0.041\r\n\tc-7.189-5.131-3.38-2.411-0.047-0.032c-28.5-20.301-65.676-15.789-96.733-4.511c-12.447-20.295-12.987-35.783-5.816-57.937\r\n\tc0.929-2.8,0.295-4.354-2.624-5.604c-7.086-3.03-17.291-1.427-24.422,0.463c-2.462,0.646-4.254,1.9-4.8,4.381\r\n\tc-5.154,24.243-21.009,46.448-34.828,66.886c-9.731-18.652-8.96-33.087-2.414-52.516c0.798-2.366,0.431-3.624-1.937-4.879\r\n\tc-7.26-3.757-18.401-1.912-25.8,0.276c-8.509,2.482-21.29,44.594-25.372,52.946c-8.531,17.442-16.091,44.665-30.585,58.502\r\n\tc-12.3-15.807,22.526-51.517,10.882-65.851c-3.938-4.848-11.063-4.723-15.586-0.616c1.085-7.608,1.648-12.609-0.32-19.063\r\n\tc-2.081-6.79-7.361-10.687-15.09-10.49c-17.995,0.527-33.843,13.815-44.641,26.397c-10.277,12.105-37.381,19.627-51.953,26.927\r\n\tc-25.032-21.807-79.221-44.947-80.632-82.081c-1.528-41.846,48.319-70.245,81.597-87.228\r\n\tc43.28-22.104,109.961-49.608,159.138-25.436c13.049,6.414,18.299,20.171,14.707,33.348c-9.368,34.366-47.198,57.293-80.103,67.807\r\n\tc-16.189,5.175-33.969,9.027-51.1,8.026c-22.955-1.343-40.83-15.224-43.281-16.086c-2.049-0.389-1.888,2.261-1.347,3.664\r\n\tc23.816,62.433,144.417,16.681,175.956-15.371c15.189-15.421,24.413-30.365,28.351-53.894c4.616-27.583-15.634-44.842-31.004-51.957\r\n\tC213.212,56.65,105.494,103.89,46.577,152.049c-25.568,20.901-57.552,54.11-42.874,88.946c15.93,37.805,64.736,57.19,96.503,80.312\r\n\tC74.502,334.08,42.344,347.29,25.688,371.24c-9.524,13.729-12.903,28.359-5.811,43.966c12.572,27.568,58.285,15.622,77.573,3.471\r\n\tc17.67-11.13,29.563-26.07,34.7-45.228c4.455-16.609,3.541-33.866-3.856-49.512l28.585-14.458\r\n\tc-7.697,23.076-11.097,52.003,4.881,72.855c6.402,8.338,23.017,8.675,29.817,0.311c8.816-10.943,14.664-24.655,20.503-37.206\r\n\tc-0.682,9.373-1.856,19.996,1.377,28.165c3.71,9.373,12.126,11.291,20.792,5.343c26.52-18.203,43.398-68.652,56.463-98.062\r\n\tc3.552,12.829,7.473,24.548,13.957,36.376c1.602,2.903,1.407,4.774-0.796,7.195c-9.685,10.675-32.826,28.479-35.069,42.899\r\n\tc-0.524,3.371,1.713,6.599,5.686,7.37c15.573,3.108,32.838-2.531,45.482-11.078c13.188-8.922,17.446-21.087,14.245-35.515\r\n\tc-4.576-20.771,10.993-43.98,25.801-61.03c2.719,12.908,6.816,25.331,14.143,36.606c-13.075,11.483-32.58,27.764-29.779,46.939\r\n\tc0.988,6.865,7.135,11.301,14.514,9.736c15.783-3.324,29.416-10.113,39.37-22.146c9.023-10.855,5.792-22.701,1.856-34.635\r\n\tc23.872-6.815,48.022-8.177,71.831-0.027c11.495,3.91,20.755,10.5,26.248,20.818c6.726,12.644,2.939,24.292-10.05,32.604\r\n\tc-3.287,2.104-5.562,3.833-4.45,4.743c1.112,0.911,4.9,2.113,13.284-3.152c8.384-5.267,13.51-12.383,14.823-21.725\r\n\tC512.071,334.28,512.063,331.696,511.784,329.108z M112.946,354.367c-1.358,16.673-9.636,30.193-23.175,41.114\r\n\tc-7.617,6.158-17.102,11.176-26.52,12.092c-9.418,0.917-16.751-1.461-17.378-11.23c-1.764-27.493,40.923-54.424,64.625-62.533\r\n\tc2.02,6.86,3.011,13.666,2.432,20.587L112.946,354.367z M216.048,281.914c-3.903,22.309-14.83,62.347-32.314,78.336\r\n\tc-2.356,2.143-4.61,2.018-5.809-0.771c-10.345-24.059,3.671-73.669,33.082-81.328C214.464,277.262,216.609,278.733,216.048,281.914z\r\n\t M286.359,363.682c8.422-8.962,16.834-17.916,25.269-26.927C312.671,346.776,294.057,366.719,286.359,363.682z M367.073,345.986\r\n\tc-2.348,1.273-7.621,2.515-7.827,0.835c-1.482-12.085,11.816-24.874,20.067-30.867C383.766,327.297,378.495,339.788,367.073,345.986\r\n\tz" + }, + "children": [] + }] +}; +exports.socialSass = socialSass; \ No newline at end of file diff --git a/dist/ionicons/socialSkype.js b/dist/ionicons/socialSkype.js new file mode 100644 index 000000000..fb813efcc --- /dev/null +++ b/dist/ionicons/socialSkype.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialSkype = void 0; +var socialSkype = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M436.9,296.8c2.8-12.5,4.2-25.4,4.2-38.7c0-99.7-82-180.6-183.2-180.6c-10.7,0-21.1,0.9-31.3,2.6\r\n\tC210.3,69.9,191,64,170.2,64C111.6,64,64,110.9,64,168.7c0,19.4,5.3,37.5,14.6,53c-2.4,11.7-3.7,23.9-3.7,36.3\r\n\tc0,99.8,82,180.6,183.1,180.6c11.5,0,22.7-1,33.5-3c15,7.9,32.1,12.4,50.2,12.4c58.7,0,106.2-46.9,106.2-104.7\r\n\tC448,326.6,444,310.8,436.9,296.8z M351.9,344.3c-8.5,11.8-21,21.2-37.2,27.8c-16.1,6.6-35.3,9.9-57.3,9.9\r\n\tc-26.3,0-48.3-4.6-65.6-13.6c-12.3-6.6-22.4-15.4-30.2-26.4c-7.8-11-11.7-22-11.7-32.6c0-6.6,2.6-12.3,7.6-17.1c5-4.6,11.5-7,19.1-7\r\n\tc6.3,0,11.7,1.8,16.1,5.5c4.2,3.5,7.8,8.7,10.7,15.5c3.3,7.3,6.8,13.5,10.6,18.4c3.6,4.7,8.7,8.6,15.3,11.7\r\n\tc6.7,3.1,15.6,4.7,26.6,4.7c15.1,0,27.5-3.2,36.8-9.5c9.2-6.1,13.6-13.5,13.6-22.5c0-7.1-2.3-12.7-7.1-17.1\r\n\tc-5-4.6-11.5-8.2-19.6-10.6c-8.3-2.6-19.6-5.3-33.6-8.2c-19-4-35.1-8.8-48-14.2c-13.1-5.5-23.7-13.2-31.5-22.7\r\n\tc-7.9-9.7-11.8-21.9-11.8-36.2c0-13.7,4.2-25.9,12.4-36.5c8.2-10.5,20.1-18.7,35.6-24.3c15.2-5.6,33.3-8.4,53.7-8.4\r\n\tc16.4,0,30.7,1.9,42.7,5.5c12.1,3.7,22.2,8.7,30.3,14.9c8,6.2,14,12.8,17.8,19.7c3.8,7,5.7,13.9,5.7,20.6c0,6.4-2.5,12.3-7.5,17.4\r\n\tc-5,5.1-11.3,7.8-18.8,7.8c-6.8,0-12.1-1.6-15.8-4.8c-3.4-3-7-7.6-10.9-14.3c-4.6-8.5-10.1-15.3-16.4-20.1c-6.2-4.6-16.4-7-30.6-7\r\n\tc-13.1,0-23.8,2.6-31.7,7.7c-7.6,4.9-11.3,10.6-11.3,17.3c0,4.1,1.2,7.5,3.7,10.5c2.6,3.1,6.2,5.9,10.9,8.2\r\n\tc4.8,2.4,9.8,4.3,14.7,5.6c5.1,1.4,13.6,3.5,25.3,6.1c14.9,3.1,28.5,6.7,40.5,10.4c12.2,3.9,22.7,8.6,31.3,14.1\r\n\tc8.8,5.6,15.7,12.9,20.7,21.5c4.9,8.6,7.4,19.4,7.4,31.8C364.8,318.9,360.5,332.5,351.9,344.3z" + }, + "children": [] + }] +}; +exports.socialSkype = socialSkype; \ No newline at end of file diff --git a/dist/ionicons/socialSkypeOutline.js b/dist/ionicons/socialSkypeOutline.js new file mode 100644 index 000000000..6c44d37c8 --- /dev/null +++ b/dist/ionicons/socialSkypeOutline.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialSkypeOutline = void 0; +var socialSkypeOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M170.2,96c14,0,27.7,3.9,39.6,11.3l10.3,6.4l12-2c8.5-1.5,17.2-2.2,25.9-2.2c40.5,0,78.5,15.5,107,43.7\r\n\t\tc28.4,28,44.1,65.3,44.1,104.9c0,10.7-1.2,21.4-3.5,31.8l-2.5,11.1l5.1,10.2c5.1,10.1,7.7,20.9,7.7,32.2\r\n\t\tc0,40.1-33.3,72.7-74.2,72.7c-12.5,0-24.3-2.9-35.2-8.7l-9.8-5.2l-10.9,2c-9.1,1.7-18.5,2.5-27.8,2.5c-40.5,0-78.5-15.5-107-43.7\r\n\t\tc-28.4-28-44.1-65.3-44.1-104.9c0-10,1-20.1,3-29.9l2.5-12.2l-6.4-10.7C99.5,194.2,96,181.6,96,168.7C96,128.6,129.3,96,170.2,96\r\n\t\t M170.2,64C111.6,64,64,110.9,64,168.7c0,19.4,5.3,37.5,14.6,53c-2.4,11.7-3.7,23.9-3.7,36.3c0,99.8,82,180.6,183.1,180.6\r\n\t\tc11.5,0,22.7-1,33.5-3c15,7.9,32.1,12.4,50.2,12.4c58.7,0,106.2-46.9,106.2-104.7c0-16.7-4-32.5-11.1-46.5\r\n\t\tc2.8-12.5,4.2-25.4,4.2-38.7c0-99.7-82-180.6-183.2-180.6c-10.7,0-21.1,0.9-31.3,2.6C210.3,69.9,191,64,170.2,64L170.2,64z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M170.2,96c14,0,27.7,3.9,39.6,11.3l10.3,6.4l12-2c8.5-1.5,17.2-2.2,25.9-2.2c40.5,0,78.5,15.5,107,43.7\r\n\t\tc28.4,28,44.1,65.3,44.1,104.9c0,10.7-1.2,21.4-3.5,31.8l-2.5,11.1l5.1,10.2c5.1,10.1,7.7,20.9,7.7,32.2\r\n\t\tc0,40.1-33.3,72.7-74.2,72.7c-12.5,0-24.3-2.9-35.2-8.7l-9.8-5.2l-10.9,2c-9.1,1.7-18.5,2.5-27.8,2.5c-40.5,0-78.5-15.5-107-43.7\r\n\t\tc-28.4-28-44.1-65.3-44.1-104.9c0-10,1-20.1,3-29.9l2.5-12.2l-6.4-10.7C99.5,194.2,96,181.6,96,168.7C96,128.6,129.3,96,170.2,96\r\n\t\t M170.2,64C111.6,64,64,110.9,64,168.7c0,19.4,5.3,37.5,14.6,53c-2.4,11.7-3.7,23.9-3.7,36.3c0,99.8,82,180.6,183.1,180.6\r\n\t\tc11.5,0,22.7-1,33.5-3c15,7.9,32.1,12.4,50.2,12.4c58.7,0,106.2-46.9,106.2-104.7c0-16.7-4-32.5-11.1-46.5\r\n\t\tc2.8-12.5,4.2-25.4,4.2-38.7c0-99.7-82-180.6-183.2-180.6c-10.7,0-21.1,0.9-31.3,2.6C210.3,69.9,191,64,170.2,64L170.2,64z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M351.9,344.1c-8.5,11.8-21,21.2-37.2,27.8c-16.1,6.6-35.3,9.9-57.3,9.9c-26.3,0-48.3-4.6-65.6-13.6\r\n\t\tc-12.3-6.6-22.4-15.4-30.2-26.4c-7.8-11-11.7-22-11.7-32.6c0-6.6,2.6-12.3,7.6-17.1c5-4.6,11.5-7,19.1-7c6.3,0,11.7,1.8,16.1,5.5\r\n\t\tc4.2,3.5,7.8,8.7,10.7,15.5c3.3,7.3,6.8,13.5,10.6,18.4c3.6,4.7,8.7,8.6,15.3,11.7c6.7,3.1,15.6,4.7,26.6,4.7\r\n\t\tc15.1,0,27.5-3.2,36.8-9.5c9.2-6.1,13.6-13.5,13.6-22.5c0-7.1-2.3-12.7-7.1-17.1c-5-4.6-11.5-8.2-19.6-10.6\r\n\t\tc-8.3-2.6-19.6-5.3-33.6-8.2c-19-4-35.1-8.8-48-14.2c-13.1-5.5-23.7-13.2-31.5-22.7C159,226.5,155,214.3,155,200\r\n\t\tc0-13.7,4.2-25.9,12.4-36.5c8.2-10.5,20.1-18.7,35.6-24.3c15.2-5.6,33.3-8.4,53.7-8.4c16.4,0,30.7,1.9,42.7,5.5\r\n\t\tc12.1,3.7,22.2,8.7,30.3,14.9c8,6.2,14,12.8,17.8,19.7c3.8,7,5.7,13.9,5.7,20.6c0,6.4-2.5,12.3-7.5,17.4c-5,5.1-11.3,7.8-18.8,7.8\r\n\t\tc-6.8,0-12.1-1.6-15.8-4.8c-3.4-3-7-7.6-10.9-14.3c-4.6-8.5-10.1-15.3-16.4-20.1c-6.2-4.6-16.4-7-30.6-7c-13.1,0-23.8,2.6-31.7,7.7\r\n\t\tc-7.6,4.9-11.3,10.6-11.3,17.3c0,4.1,1.2,7.5,3.7,10.5c2.6,3.1,6.2,5.9,10.9,8.2c4.8,2.4,9.8,4.3,14.7,5.6\r\n\t\tc5.1,1.4,13.6,3.5,25.3,6.1c14.9,3.1,28.5,6.7,40.5,10.4c12.2,3.9,22.7,8.6,31.3,14.1c8.8,5.6,15.7,12.9,20.7,21.5\r\n\t\tc4.9,8.6,7.4,19.4,7.4,31.8C364.7,318.7,360.4,332.3,351.9,344.1z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M351.9,344.1c-8.5,11.8-21,21.2-37.2,27.8c-16.1,6.6-35.3,9.9-57.3,9.9c-26.3,0-48.3-4.6-65.6-13.6\r\n\t\tc-12.3-6.6-22.4-15.4-30.2-26.4c-7.8-11-11.7-22-11.7-32.6c0-6.6,2.6-12.3,7.6-17.1c5-4.6,11.5-7,19.1-7c6.3,0,11.7,1.8,16.1,5.5\r\n\t\tc4.2,3.5,7.8,8.7,10.7,15.5c3.3,7.3,6.8,13.5,10.6,18.4c3.6,4.7,8.7,8.6,15.3,11.7c6.7,3.1,15.6,4.7,26.6,4.7\r\n\t\tc15.1,0,27.5-3.2,36.8-9.5c9.2-6.1,13.6-13.5,13.6-22.5c0-7.1-2.3-12.7-7.1-17.1c-5-4.6-11.5-8.2-19.6-10.6\r\n\t\tc-8.3-2.6-19.6-5.3-33.6-8.2c-19-4-35.1-8.8-48-14.2c-13.1-5.5-23.7-13.2-31.5-22.7C159,226.5,155,214.3,155,200\r\n\t\tc0-13.7,4.2-25.9,12.4-36.5c8.2-10.5,20.1-18.7,35.6-24.3c15.2-5.6,33.3-8.4,53.7-8.4c16.4,0,30.7,1.9,42.7,5.5\r\n\t\tc12.1,3.7,22.2,8.7,30.3,14.9c8,6.2,14,12.8,17.8,19.7c3.8,7,5.7,13.9,5.7,20.6c0,6.4-2.5,12.3-7.5,17.4c-5,5.1-11.3,7.8-18.8,7.8\r\n\t\tc-6.8,0-12.1-1.6-15.8-4.8c-3.4-3-7-7.6-10.9-14.3c-4.6-8.5-10.1-15.3-16.4-20.1c-6.2-4.6-16.4-7-30.6-7c-13.1,0-23.8,2.6-31.7,7.7\r\n\t\tc-7.6,4.9-11.3,10.6-11.3,17.3c0,4.1,1.2,7.5,3.7,10.5c2.6,3.1,6.2,5.9,10.9,8.2c4.8,2.4,9.8,4.3,14.7,5.6\r\n\t\tc5.1,1.4,13.6,3.5,25.3,6.1c14.9,3.1,28.5,6.7,40.5,10.4c12.2,3.9,22.7,8.6,31.3,14.1c8.8,5.6,15.7,12.9,20.7,21.5\r\n\t\tc4.9,8.6,7.4,19.4,7.4,31.8C364.7,318.7,360.4,332.3,351.9,344.1z" + }, + "children": [] + }] + }] + }] +}; +exports.socialSkypeOutline = socialSkypeOutline; \ No newline at end of file diff --git a/dist/ionicons/socialSnapchat.js b/dist/ionicons/socialSnapchat.js new file mode 100644 index 000000000..d6e5c0cbe --- /dev/null +++ b/dist/ionicons/socialSnapchat.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialSnapchat = void 0; +var socialSnapchat = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M495.998,360.389l-0.189-14.501l-14.398-1.278c-15.413-1.396-43.8-7.219-54.301-16.9\r\n\t\tc-16.281-15.011-35.688-36.199-35.688-51.893c0-1.014,0-2.546,4.15-5.186c4.985-3.174,12.589-5.584,19.297-7.71\r\n\t\tc5.217-1.654,10.144-3.217,14.394-5.236c9.236-4.39,18.498-15.978,17.471-28.807c-1.215-15.166-14.424-27.046-30.072-27.046\r\n\t\tc-4.021,0-8.068,0.76-12.027,2.259c-8.027,3.041-13.743,4.41-17.705,4.962c0.747-9.319,1.791-20.12,3.211-30.67\r\n\t\tc5.111-37.948-5.281-73.509-29.264-101.042C335.498,48.208,297.376,32,256.283,32H256c-41.093,0-79.215,16.208-104.591,45.341\r\n\t\tc-23.982,27.534-34.375,63.345-29.265,101.292c1.416,10.51,2.46,21.231,3.21,30.618c-3.97-0.559-9.686-1.998-17.703-5.034\r\n\t\tc-3.965-1.502-8.017-2.295-12.043-2.295c-15.641-0.001-28.844,11.852-30.057,27.003c-1.027,12.818,8.235,24.393,17.47,28.783\r\n\t\tc4.251,2.02,9.181,3.578,14.4,5.232c6.707,2.125,14.309,4.532,19.293,7.703c4.147,2.639,4.147,4.168,4.147,5.182\r\n\t\tc0,8.66-6.191,24.691-35.688,51.888c-10.499,9.681-39.055,15.501-54.588,16.897l-14.572,1.311L16,360.603\r\n\t\tc0,1.679,0.312,10.546,6.485,20.319c5.246,8.306,16.073,19.283,37.863,24.407c6.179,1.453,11.186,2.563,15.208,3.454\r\n\t\tc2.306,0.512,4.555,1.01,6.454,1.453c0.027,0.209,0.054,0.417,0.081,0.623c0.9,7.004,1.611,12.535,4.392,17.75\r\n\t\tc2.453,4.6,8.574,12.316,22.015,12.316c2.478,0,5.249-0.246,8.472-0.751c1.672-0.263,3.386-0.554,5.2-0.863\r\n\t\tc7.116-1.212,15.182-2.587,23.451-2.587c10.277,0,18.732,2.188,25.846,6.688c4.531,2.867,8.892,5.972,13.509,9.26\r\n\t\tC202.967,465.481,223.358,480,256,480c32.726,0,53.293-14.582,71.439-27.446c4.576-3.244,8.898-6.309,13.377-9.142\r\n\t\tc7.113-4.5,15.568-6.688,25.846-6.688c8.27,0,16.334,1.375,23.449,2.586c1.814,0.311,3.529,0.602,5.202,0.864\r\n\t\tc3.223,0.505,5.993,0.751,8.472,0.751c13.44,0,19.562-7.715,22.015-12.313c2.781-5.214,3.492-10.746,4.392-17.749\r\n\t\tc0.027-0.208,0.055-0.418,0.082-0.629c1.898-0.441,4.148-0.941,6.455-1.452c4.023-0.892,9.029-2.001,15.206-3.454\r\n\t\tc21.851-5.139,32.611-16.17,37.79-24.518C495.822,370.982,496.021,362.074,495.998,360.389z M208,128c8.836,0,16,10.745,16,24\r\n\t\ts-7.164,24-16,24s-16-10.745-16-24S199.164,128,208,128z M311.615,205.698C296.368,220.725,276.617,229,256,229\r\n\t\tc-20.838,0-40.604-8.29-55.657-23.343c-3.125-3.124-3.124-8.189,0-11.313c3.125-3.124,8.19-3.124,11.313,0\r\n\t\tC223.688,206.374,239.436,213,256,213c16.387,0,32.15-6.64,44.385-18.698c3.148-3.102,8.213-3.063,11.312,0.082\r\n\t\tC314.799,197.531,314.762,202.597,311.615,205.698z M304,176c-8.836,0-16-10.746-16-24s7.164-24,16-24s16,10.746,16,24\r\n\t\tS312.836,176,304,176z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M495.998,360.389l-0.189-14.501l-14.398-1.278c-15.413-1.396-43.8-7.219-54.301-16.9\r\n\t\tc-16.281-15.011-35.688-36.199-35.688-51.893c0-1.014,0-2.546,4.15-5.186c4.985-3.174,12.589-5.584,19.297-7.71\r\n\t\tc5.217-1.654,10.144-3.217,14.394-5.236c9.236-4.39,18.498-15.978,17.471-28.807c-1.215-15.166-14.424-27.046-30.072-27.046\r\n\t\tc-4.021,0-8.068,0.76-12.027,2.259c-8.027,3.041-13.743,4.41-17.705,4.962c0.747-9.319,1.791-20.12,3.211-30.67\r\n\t\tc5.111-37.948-5.281-73.509-29.264-101.042C335.498,48.208,297.376,32,256.283,32H256c-41.093,0-79.215,16.208-104.591,45.341\r\n\t\tc-23.982,27.534-34.375,63.345-29.265,101.292c1.416,10.51,2.46,21.231,3.21,30.618c-3.97-0.559-9.686-1.998-17.703-5.034\r\n\t\tc-3.965-1.502-8.017-2.295-12.043-2.295c-15.641-0.001-28.844,11.852-30.057,27.003c-1.027,12.818,8.235,24.393,17.47,28.783\r\n\t\tc4.251,2.02,9.181,3.578,14.4,5.232c6.707,2.125,14.309,4.532,19.293,7.703c4.147,2.639,4.147,4.168,4.147,5.182\r\n\t\tc0,8.66-6.191,24.691-35.688,51.888c-10.499,9.681-39.055,15.501-54.588,16.897l-14.572,1.311L16,360.603\r\n\t\tc0,1.679,0.312,10.546,6.485,20.319c5.246,8.306,16.073,19.283,37.863,24.407c6.179,1.453,11.186,2.563,15.208,3.454\r\n\t\tc2.306,0.512,4.555,1.01,6.454,1.453c0.027,0.209,0.054,0.417,0.081,0.623c0.9,7.004,1.611,12.535,4.392,17.75\r\n\t\tc2.453,4.6,8.574,12.316,22.015,12.316c2.478,0,5.249-0.246,8.472-0.751c1.672-0.263,3.386-0.554,5.2-0.863\r\n\t\tc7.116-1.212,15.182-2.587,23.451-2.587c10.277,0,18.732,2.188,25.846,6.688c4.531,2.867,8.892,5.972,13.509,9.26\r\n\t\tC202.967,465.481,223.358,480,256,480c32.726,0,53.293-14.582,71.439-27.446c4.576-3.244,8.898-6.309,13.377-9.142\r\n\t\tc7.113-4.5,15.568-6.688,25.846-6.688c8.27,0,16.334,1.375,23.449,2.586c1.814,0.311,3.529,0.602,5.202,0.864\r\n\t\tc3.223,0.505,5.993,0.751,8.472,0.751c13.44,0,19.562-7.715,22.015-12.313c2.781-5.214,3.492-10.746,4.392-17.749\r\n\t\tc0.027-0.208,0.055-0.418,0.082-0.629c1.898-0.441,4.148-0.941,6.455-1.452c4.023-0.892,9.029-2.001,15.206-3.454\r\n\t\tc21.851-5.139,32.611-16.17,37.79-24.518C495.822,370.982,496.021,362.074,495.998,360.389z M208,128c8.836,0,16,10.745,16,24\r\n\t\ts-7.164,24-16,24s-16-10.745-16-24S199.164,128,208,128z M311.615,205.698C296.368,220.725,276.617,229,256,229\r\n\t\tc-20.838,0-40.604-8.29-55.657-23.343c-3.125-3.124-3.124-8.189,0-11.313c3.125-3.124,8.19-3.124,11.313,0\r\n\t\tC223.688,206.374,239.436,213,256,213c16.387,0,32.15-6.64,44.385-18.698c3.148-3.102,8.213-3.063,11.312,0.082\r\n\t\tC314.799,197.531,314.762,202.597,311.615,205.698z M304,176c-8.836,0-16-10.746-16-24s7.164-24,16-24s16,10.746,16,24\r\n\t\tS312.836,176,304,176z" + }, + "children": [] + }] + }] + }] +}; +exports.socialSnapchat = socialSnapchat; \ No newline at end of file diff --git a/dist/ionicons/socialSnapchatOutline.js b/dist/ionicons/socialSnapchatOutline.js new file mode 100644 index 000000000..ccb3a8662 --- /dev/null +++ b/dist/ionicons/socialSnapchatOutline.js @@ -0,0 +1,75 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialSnapchatOutline = void 0; +var socialSnapchatOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256.283,47.553c70.693,0,128,54.682,118,128.931c-2.072,15.388-3.422,31.483-4.26,44.759c0,0,2.402,4.253,12.664,4.253\r\n\t\tc6.071,0,14.895-1.543,27.596-6.354c2.236-0.847,4.377-1.241,6.377-1.241c7.918,0,13.615,5.931,14.123,12.271\r\n\t\tc0.426,5.31-4.564,11.199-8.371,13.009c-13.766,6.542-46.991,10.063-46.991,32.638c0,22.576,22.362,46.656,40.862,63.713\r\n\t\tS480,360.602,480,360.602s0.283,21.57-31.717,29.097c-32,7.524-32.1,5.712-33.25,13.796c-2.133,14.979-1.535,21.378-11.248,21.378\r\n\t\tc-1.672,0-3.651-0.19-6.002-0.558c-8.23-1.291-19.239-3.644-31.121-3.644c-11.216,0-23.21,2.097-34.379,9.161\r\n\t\tc-23,14.549-41.283,34.114-76.283,34.114s-53-19.565-76-34.114c-11.17-7.065-23.162-9.161-34.379-9.161\r\n\t\tc-11.88,0-22.892,2.353-31.121,3.644c-2.352,0.367-4.33,0.558-6.002,0.558c-9.71,0-9.115-6.399-11.248-21.378\r\n\t\tc-1.151-8.084-1.25-6.27-33.25-13.795s-32-29.097-32-29.097s45.5-4.012,64-21.068c18.5-17.058,40.862-41.134,40.862-63.71\r\n\t\tc0-22.575-33.226-26.09-46.991-32.632c-3.807-1.81-8.796-7.687-8.371-12.997c0.507-6.336,6.196-12.251,14.107-12.25\r\n\t\tc2.004,0,4.152,0.38,6.393,1.229c12.749,4.829,21.588,6.342,27.662,6.342c10.204,0,12.598-4.273,12.598-4.273\r\n\t\tc-0.837-13.275-2.187-29.371-4.259-44.759c-10-74.249,47.307-128.931,118-128.931l0,0 M256.283,32H256\r\n\t\tc-41.093,0-79.215,16.208-104.591,45.341c-23.982,27.534-34.375,63.345-29.265,101.292c1.416,10.51,2.46,21.231,3.21,30.618\r\n\t\tc-3.97-0.559-9.686-1.998-17.703-5.034c-3.965-1.502-8.017-2.295-12.043-2.295c-15.641-0.001-28.844,11.852-30.057,27.003\r\n\t\tc-1.027,12.818,8.235,24.393,17.47,28.783c4.251,2.02,9.181,3.578,14.4,5.232c6.707,2.125,14.309,4.532,19.293,7.703\r\n\t\tc4.147,2.639,4.147,4.168,4.147,5.182c0,8.66-6.191,24.691-35.688,51.888c-10.499,9.681-39.055,15.501-54.588,16.897l-14.572,1.311\r\n\t\tL16,360.603c0,1.679,0.312,10.546,6.485,20.319c5.246,8.306,16.073,19.283,37.863,24.407c6.179,1.453,11.186,2.563,15.208,3.454\r\n\t\tc2.306,0.512,4.555,1.01,6.454,1.453c0.027,0.209,0.054,0.417,0.081,0.623c0.9,7.004,1.611,12.535,4.392,17.75\r\n\t\tc2.453,4.6,8.574,12.316,22.015,12.316c2.478,0,5.249-0.246,8.472-0.751c1.672-0.263,3.386-0.554,5.2-0.863\r\n\t\tc7.116-1.212,15.182-2.587,23.451-2.587c10.277,0,18.732,2.188,25.846,6.688c4.531,2.867,8.892,5.972,13.509,9.26\r\n\t\tC202.967,465.481,223.358,480,256,480c32.726,0,53.293-14.582,71.439-27.446c4.576-3.244,8.898-6.309,13.377-9.142\r\n\t\tc7.113-4.5,15.568-6.688,25.846-6.688c8.27,0,16.334,1.375,23.449,2.586c1.814,0.311,3.529,0.602,5.202,0.864\r\n\t\tc3.223,0.505,5.993,0.751,8.472,0.751c13.44,0,19.562-7.715,22.015-12.313c2.781-5.214,3.492-10.746,4.392-17.749\r\n\t\tc0.027-0.208,0.055-0.418,0.082-0.629c1.898-0.441,4.148-0.941,6.455-1.452c4.023-0.892,9.029-2.001,15.206-3.454\r\n\t\tc21.851-5.139,32.611-16.17,37.79-24.518c6.098-9.828,6.296-18.736,6.273-20.422l-0.189-14.501l-14.398-1.278\r\n\t\tc-15.413-1.396-43.8-7.219-54.301-16.9c-16.281-15.011-35.688-36.199-35.688-51.893c0-1.014,0-2.546,4.15-5.186\r\n\t\tc4.985-3.174,12.589-5.584,19.297-7.71c5.217-1.654,10.144-3.217,14.394-5.236c9.236-4.39,18.498-15.978,17.471-28.807\r\n\t\tc-1.215-15.166-14.424-27.046-30.072-27.046c-4.021,0-8.068,0.76-12.027,2.259c-8.027,3.041-13.743,4.41-17.705,4.962\r\n\t\tc0.747-9.319,1.791-20.12,3.211-30.67c5.111-37.948-5.281-73.509-29.264-101.042C335.498,48.208,297.376,32,256.283,32L256.283,32z\r\n\t\t" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256.283,47.553c70.693,0,128,54.682,118,128.931c-2.072,15.388-3.422,31.483-4.26,44.759c0,0,2.402,4.253,12.664,4.253\r\n\t\tc6.071,0,14.895-1.543,27.596-6.354c2.236-0.847,4.377-1.241,6.377-1.241c7.918,0,13.615,5.931,14.123,12.271\r\n\t\tc0.426,5.31-4.564,11.199-8.371,13.009c-13.766,6.542-46.991,10.063-46.991,32.638c0,22.576,22.362,46.656,40.862,63.713\r\n\t\tS480,360.602,480,360.602s0.283,21.57-31.717,29.097c-32,7.524-32.1,5.712-33.25,13.796c-2.133,14.979-1.535,21.378-11.248,21.378\r\n\t\tc-1.672,0-3.651-0.19-6.002-0.558c-8.23-1.291-19.239-3.644-31.121-3.644c-11.216,0-23.21,2.097-34.379,9.161\r\n\t\tc-23,14.549-41.283,34.114-76.283,34.114s-53-19.565-76-34.114c-11.17-7.065-23.162-9.161-34.379-9.161\r\n\t\tc-11.88,0-22.892,2.353-31.121,3.644c-2.352,0.367-4.33,0.558-6.002,0.558c-9.71,0-9.115-6.399-11.248-21.378\r\n\t\tc-1.151-8.084-1.25-6.27-33.25-13.795s-32-29.097-32-29.097s45.5-4.012,64-21.068c18.5-17.058,40.862-41.134,40.862-63.71\r\n\t\tc0-22.575-33.226-26.09-46.991-32.632c-3.807-1.81-8.796-7.687-8.371-12.997c0.507-6.336,6.196-12.251,14.107-12.25\r\n\t\tc2.004,0,4.152,0.38,6.393,1.229c12.749,4.829,21.588,6.342,27.662,6.342c10.204,0,12.598-4.273,12.598-4.273\r\n\t\tc-0.837-13.275-2.187-29.371-4.259-44.759c-10-74.249,47.307-128.931,118-128.931l0,0 M256.283,32H256\r\n\t\tc-41.093,0-79.215,16.208-104.591,45.341c-23.982,27.534-34.375,63.345-29.265,101.292c1.416,10.51,2.46,21.231,3.21,30.618\r\n\t\tc-3.97-0.559-9.686-1.998-17.703-5.034c-3.965-1.502-8.017-2.295-12.043-2.295c-15.641-0.001-28.844,11.852-30.057,27.003\r\n\t\tc-1.027,12.818,8.235,24.393,17.47,28.783c4.251,2.02,9.181,3.578,14.4,5.232c6.707,2.125,14.309,4.532,19.293,7.703\r\n\t\tc4.147,2.639,4.147,4.168,4.147,5.182c0,8.66-6.191,24.691-35.688,51.888c-10.499,9.681-39.055,15.501-54.588,16.897l-14.572,1.311\r\n\t\tL16,360.603c0,1.679,0.312,10.546,6.485,20.319c5.246,8.306,16.073,19.283,37.863,24.407c6.179,1.453,11.186,2.563,15.208,3.454\r\n\t\tc2.306,0.512,4.555,1.01,6.454,1.453c0.027,0.209,0.054,0.417,0.081,0.623c0.9,7.004,1.611,12.535,4.392,17.75\r\n\t\tc2.453,4.6,8.574,12.316,22.015,12.316c2.478,0,5.249-0.246,8.472-0.751c1.672-0.263,3.386-0.554,5.2-0.863\r\n\t\tc7.116-1.212,15.182-2.587,23.451-2.587c10.277,0,18.732,2.188,25.846,6.688c4.531,2.867,8.892,5.972,13.509,9.26\r\n\t\tC202.967,465.481,223.358,480,256,480c32.726,0,53.293-14.582,71.439-27.446c4.576-3.244,8.898-6.309,13.377-9.142\r\n\t\tc7.113-4.5,15.568-6.688,25.846-6.688c8.27,0,16.334,1.375,23.449,2.586c1.814,0.311,3.529,0.602,5.202,0.864\r\n\t\tc3.223,0.505,5.993,0.751,8.472,0.751c13.44,0,19.562-7.715,22.015-12.313c2.781-5.214,3.492-10.746,4.392-17.749\r\n\t\tc0.027-0.208,0.055-0.418,0.082-0.629c1.898-0.441,4.148-0.941,6.455-1.452c4.023-0.892,9.029-2.001,15.206-3.454\r\n\t\tc21.851-5.139,32.611-16.17,37.79-24.518c6.098-9.828,6.296-18.736,6.273-20.422l-0.189-14.501l-14.398-1.278\r\n\t\tc-15.413-1.396-43.8-7.219-54.301-16.9c-16.281-15.011-35.688-36.199-35.688-51.893c0-1.014,0-2.546,4.15-5.186\r\n\t\tc4.985-3.174,12.589-5.584,19.297-7.71c5.217-1.654,10.144-3.217,14.394-5.236c9.236-4.39,18.498-15.978,17.471-28.807\r\n\t\tc-1.215-15.166-14.424-27.046-30.072-27.046c-4.021,0-8.068,0.76-12.027,2.259c-8.027,3.041-13.743,4.41-17.705,4.962\r\n\t\tc0.747-9.319,1.791-20.12,3.211-30.67c5.111-37.948-5.281-73.509-29.264-101.042C335.498,48.208,297.376,32,256.283,32L256.283,32z\r\n\t\t" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,229c-20.838,0-40.604-8.29-55.657-23.343c-3.125-3.124-3.124-8.189,0-11.313c3.125-3.124,8.19-3.124,11.313,0\r\n\t\tC223.688,206.374,239.436,213,256,213c16.387,0,32.15-6.64,44.385-18.698c3.148-3.102,8.213-3.063,11.312,0.082\r\n\t\tc3.102,3.147,3.064,8.212-0.082,11.313C296.368,220.725,276.617,229,256,229z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,229c-20.838,0-40.604-8.29-55.657-23.343c-3.125-3.124-3.124-8.189,0-11.313c3.125-3.124,8.19-3.124,11.313,0\r\n\t\tC223.688,206.374,239.436,213,256,213c16.387,0,32.15-6.64,44.385-18.698c3.148-3.102,8.213-3.063,11.312,0.082\r\n\t\tc3.102,3.147,3.064,8.212-0.082,11.313C296.368,220.725,276.617,229,256,229z" + }, + "children": [] + }] + }, { + "name": "ellipse", + "attribs": { + "cx": "208", + "cy": "152", + "rx": "16", + "ry": "24" + }, + "children": [{ + "name": "ellipse", + "attribs": { + "cx": "208", + "cy": "152", + "rx": "16", + "ry": "24" + }, + "children": [] + }] + }, { + "name": "ellipse", + "attribs": { + "cx": "304", + "cy": "152", + "rx": "16", + "ry": "24" + }, + "children": [{ + "name": "ellipse", + "attribs": { + "cx": "304", + "cy": "152", + "rx": "16", + "ry": "24" + }, + "children": [] + }] + }] + }] +}; +exports.socialSnapchatOutline = socialSnapchatOutline; \ No newline at end of file diff --git a/dist/ionicons/socialTumblr.js b/dist/ionicons/socialTumblr.js new file mode 100644 index 000000000..2ef703b5b --- /dev/null +++ b/dist/ionicons/socialTumblr.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialTumblr = void 0; +var socialTumblr = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M321.2,396.3c-11.8,0-22.4-2.8-31.5-8.3c-6.9-4.1-11.5-9.6-14-16.4c-2.6-6.9-3.6-22.3-3.6-46.4V224h96v-64h-96V48h-61.9\r\n\tc-2.7,21.5-7.5,44.7-14.5,58.6c-7,13.9-14,25.8-25.6,35.7c-11.6,9.9-25.6,17.9-41.9,23.3V224h48v140.4c0,19,2,33.5,5.9,43.5\r\n\tc4,10,11.1,19.5,21.4,28.4c10.3,8.9,22.8,15.7,37.3,20.5c14.6,4.8,31.4,7.2,50.4,7.2c16.7,0,30.3-1.7,44.7-5.1\r\n\tc14.4-3.4,30.5-9.3,48.2-17.6v-65.6C363.2,389.4,342.3,396.3,321.2,396.3z" + }, + "children": [] + }] +}; +exports.socialTumblr = socialTumblr; \ No newline at end of file diff --git a/dist/ionicons/socialTumblrOutline.js b/dist/ionicons/socialTumblrOutline.js new file mode 100644 index 000000000..1b0b04755 --- /dev/null +++ b/dist/ionicons/socialTumblrOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialTumblrOutline = void 0; +var socialTumblrOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M321.2,396.3c-11.8,0-22.4-2.8-31.5-8.3c-6.9-4.1-11.5-9.6-14-16.4c-2.6-6.9-3.6-22.3-3.6-46.4V224h96v-64h-96V48h-61.9\r\n\tc-2.7,21.5-7.5,44.7-14.5,58.6s-14,25.8-25.6,35.7c-11.6,9.9-25.6,17.9-41.9,23.3V224h48v140.4c0,19,2,33.5,5.9,43.5\r\n\tc4,10,11.1,19.5,21.4,28.4c10.3,8.9,22.8,15.7,37.3,20.5c14.6,4.8,31.4,7.2,50.4,7.2c16.7,0,30.3-1.7,44.7-5.1\r\n\tc14.4-3.4,30.5-9.3,48.2-17.6v-65.6C363.2,389.4,342.3,396.3,321.2,396.3z M368,431c-13.1,5.7-25.1,9.9-35.9,12.4\r\n\tc-13.1,3.1-25.6,4.6-41.1,4.6c-17.2,0-32.5-2.2-45.4-6.4c-12.5-4.1-23.2-10-31.9-17.5c-8.3-7.2-14-14.6-17-22.2\r\n\tc-2.2-5.5-4.8-16.6-4.8-37.6V208H144v-31.3c13.4-5.6,25.5-13,36.3-22.2c13.2-11.2,21.6-24.9,29.6-40.7c7.1-14,11.6-34,14.1-49.8h32\r\n\tv112h96v32h-96v117.1c0,34.6,2.4,46,4.6,52c3.8,10.3,10.8,18.6,21,24.6c11.7,7,25,10.5,39.7,10.5c15.7,0,31.3-3.3,46.7-9.8V431z" + }, + "children": [] + }] +}; +exports.socialTumblrOutline = socialTumblrOutline; \ No newline at end of file diff --git a/dist/ionicons/socialTux.js b/dist/ionicons/socialTux.js new file mode 100644 index 000000000..184505043 --- /dev/null +++ b/dist/ionicons/socialTux.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialTux = void 0; +var socialTux = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill": "#010101", + "d": "M254.7,101.3c-0.6,1-1.2,2-1.7,3.1c1.8-3.5,4.3-6.5,7.4-8.7C258.3,97,256.3,98.8,254.7,101.3\r\n\t\tC254.1,102.3,256.3,98.8,254.7,101.3z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill": "#010101", + "d": "M254.7,101.3c-0.6,1-1.2,2-1.7,3.1c1.8-3.5,4.3-6.5,7.4-8.7C258.3,97,256.3,98.8,254.7,101.3\r\n\t\tC254.1,102.3,256.3,98.8,254.7,101.3z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "fill": "#010101", + "d": "M426.3,396c-6.7-4-13.2-11-12-18.8c2.3-15.3,2.5-21.5-0.2-25.8c-1.899-3.2-5.5-5-8.6-5.801\r\n\t\tc2-2.5,3.1-5.399,3.8-10.899c1.842-14.168-3.239-30.67-6.61-44.243c-4.445-17.9-10.319-34.014-20.432-49.522\r\n\t\tc-16.489-25.288-37.253-46.804-51.857-73.435c-9.7-29-4.301-47.1-4.801-66.2C324.7,64,298.7,32,261,32h-14c-37.5,0-58,26.9-58,60\r\n\t\tc0.697,16.666,1.352,33.333,2,50c0.769,19.756,1.98,37.667-8,55.3c-7.033,12.488-19.571,22.43-28.592,33.478\r\n\t\tc-9.525,11.665-13.06,23.669-17.859,37.619c-5.987,17.401-21.275,30.906-24.886,48.929c-1.658,8.271,2.726,17.857-0.83,24.693\r\n\t\tc-3.698,7.109-0.813,14.469-2.833,21.682c-3.505,11.729-20.731,10.729-30.215,11.508c-17.602,1.443-11.051,17.988-7.843,29.701\r\n\t\tc5.598,20.435-19.54,42.078,11.032,50.471c13.989,3.84,28.586,5.13,42.727,8.32c13.981,3.154,26.917,8.612,40.396,13.262\r\n\t\tc10.469,3.611,20.262,4.146,30.323-1.232c10.982-5.87,18.947-15.083,31.691-17c24.707-3.716,54.829-4.169,79.373,0.63\r\n\t\tc7.507,1.468,10.075,6.525,14.905,11.766c8.145,8.838,21.514,10.125,32.794,8.22c11.89-2.01,20.846-9.466,29.686-17.112\r\n\t\tc12.526-10.835,26.137-17.996,40.791-25.547c7.439-3.833,22.178-9.388,24.159-18.903C450.151,406.573,433.642,400.383,426.3,396z\r\n\t\t M202,451.3c-1.3,13-13.9,20.3-25.4,19.3c-19.502-1.649-37.86-12.237-57.164-15.75c-9.393-1.709-47.351-3.173-46.943-17.079\r\n\t\tc0.215-7.361,5.751-11.666,7.567-18.415c2.811-10.449-5.753-19.932-6.32-30.16c-0.447-8.081,10.73-7.607,16.288-8.053\r\n\t\tc8.761-0.702,19.157-2.012,23.572-11.043c1.6-3.3-0.5-15,1.9-21.8c3.527-10.155,15.489-8.949,23.3-4.899\r\n\t\tc17.762,9.067,28.943,35.546,38.533,51.821C187.058,411.728,204.045,430.843,202,451.3z M318.3,385.7\r\n\t\tc2.289,11.787,4.224,24.387,1.7,36.3c-2.016,9.516-8.562,15.614-12.7,24c-2.2-6.8,11.3-16.7,9.8-33.7\r\n\t\tc-0.042-0.475-0.947-10.882-1.036-10.834c-1.979,1.082-3.825,5.075-5.304,6.73c-4.809,5.383-10.771,9.658-16.729,13.677\r\n\t\tc-13.797,9.306-29.221,15.058-45.83,16.627c-21,2-38-10.5-38-10.5c2.517,8.305,8.992,21,1.1,28.3\r\n\t\tc1.743-15.648-4.876-28.06-11.6-41.7c46.374-24.639-41.363-64.397-53-79.8c-10.476-13.896-5.553-31.83-2.7-43.5\r\n\t\tc-3.443,13.775-3.959,41.956,14,46.8c7.922,2.169,5.605-37.071,5.984-41.463c1.58-18.312,7.721-35.997,18.343-51.015\r\n\t\tc3.399-4.806,1.863-9.533,2.673-15.322c1.693-10.668,7.295-20.547,13.488-29.225c5.169-7.243,1.735-12.618,3.014-21.055\r\n\t\tc0.727-4.795,5.118,3.193,5.798,4.279c4,6.5,16.7,22.7,24.7,22c13.277-1.161,24.692-15.938,36.015-22.046\r\n\t\tc3.591-1.937,14.41-5.242,15.866-9.632c1.768-5.33-12.666-0.161-14.114,0.583c-10.782,5.535-31.018,21.448-43.867,15.295\r\n\t\tc-8.762-4.195-10.691-14.994-17.2-20.5c15.4,13.6,21.5,10.5,27.6,9.1c9.665-2.182,18.797-6.486,27.8-10.5\r\n\t\tc4.217-1.88,20.107-4.041,22.301-8.7c2.745-5.834-5.05-6.726-8.068-3.58c-6.251,6.515-15.853,8.981-24.097,11.787\r\n\t\tc-18.885,6.427-37.644,9.131-51.835-8.607c-8.354-10.212,15.558-22.504,22.2-28.8c0,0,1-7.2-0.6-12.7c-1.9-6.5-7.8-9.3-11.9-8.1\r\n\t\tc-4.1,1.1-8,5.5-6.8,14.8c1,8.3,7,11,7,11s-2.7,3.5-5.2,4.7c0,0-0.8-0.3-3.5-6.3c-2.7-6-6.6-19.5-0.3-31.1\r\n\t\tc6.3-11.6,19.6-5.2,23.8,3.8c3.9,8.3,2.4,22.7,2.4,22.7c3.358-0.843,6.835-1.3,10.3-1.3c4.242,0,6.814,4.563,10.6,4.8\r\n\t\tc-0.635,0-0.564-18.124-0.233-20.078c1.099-6.49,4.112-13.619,9.933-17.222c16.087-11.491,34.6,3.916,34.6,21.2\r\n\t\tc0.024,4.486-0.137,9.215-1.199,13.6c-0.659,2.637-1.582,8.469-5.114,9.177c-1.145,0.23-10.683-0.431-7.985-3.277\r\n\t\tc12.807-12.812-1.822-38.207-17.4-24.5c-5.601,4.199-5.483,13.833-4.801,20c1.098,9.141,20.51,11.541,26.852,13.78\r\n\t\tc8.224,2.903,7.943,9.626,6.679,17.116c-1.9,11.26-2.815,18.792,4.381,28.214c7.344,9.616,12.929,20.086,15.915,31.878\r\n\t\tc1.483,5.859,1.665,10.843,5.621,15.57c5.983,7.151,10.619,14.805,13.291,23.817c5.225,17.621,6.513,35.422,6.162,53.625\r\n\t\tc-0.5,8.199-2.1,15,8.3,9.699c4-2,6.5-2.899,11-3.699c3.101-6.301,4.4-18.301,4.5-24.301c0.2-13.5-0.3-41.5-27.699-71.5\r\n\t\tc0,0,28.5,21.7,33,62c2.5,22.301-2,34.4-2,34.4c5.3,1.3,10.8,5.3,13.6,9.8c-0.133-0.22,1.038,1.748,1.179,1.864\r\n\t\tc-9.811-8.171-31.708-12.859-39.679,0.236c-2,3.3-3.1,7.6-3.2,11.699c-7.1-1.199-12.399,0-16.8,4.9\r\n\t\tC313.5,358.1,316.3,375.3,318.3,385.7C320.3,396,316.3,375.3,318.3,385.7z M220.6,124.9c-0.2-4.9-2.1-9-4.7-10.8\r\n\t\tc0.3-0.3,0.8-0.7,1.7-0.4c1.4,0.4,3.5,2.7,4.3,6.3c0.7,2.9,0.4,7.7-1.4,7.7C220.498,126.766,220.531,125.833,220.6,124.9\r\n\t\tC220.4,120,220.6,125.8,220.6,124.9z M275.3,112.9c0.4-0.3,1.101-0.6,2.3-0.3c1.801,0.4,4.4,2.8,5.301,6.2\r\n\t\tc0.699,2.8,0.1,7.4-2.2,7.3c-0.005-0.903,0.062-1.803,0.2-2.7C280.8,118.8,278.6,114.8,275.3,112.9\r\n\t\tC275.7,112.6,278.6,114.8,275.3,112.9z M412.4,432.9c-17.504,7.553-31.304,19.968-47.117,30.19\r\n\t\tc-13.824,8.937-38.156,8.313-40.022-12.879c-1.565-17.776,4.184-35.288,1.84-53.357c-1.587-12.239-8.534-28.906-2.301-40.854\r\n\t\tc2.7-5.1,8.101-5.5,12.5-4c3.193,13.267,13.932,23.6,28,23.6c17.031,0,23.542-14.008,34-24.5c3.4,0.2,7.4,1.101,8.8,4.801\r\n\t\tc2.301,5.8-1.899,17.5-1.8,22.3c0.3,15.7,9,19.2,26.4,29C448,416,436.9,422.3,412.4,432.9C388.3,443.3,436.9,422.3,412.4,432.9z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill": "#010101", + "d": "M426.3,396c-6.7-4-13.2-11-12-18.8c2.3-15.3,2.5-21.5-0.2-25.8c-1.899-3.2-5.5-5-8.6-5.801\r\n\t\tc2-2.5,3.1-5.399,3.8-10.899c1.842-14.168-3.239-30.67-6.61-44.243c-4.445-17.9-10.319-34.014-20.432-49.522\r\n\t\tc-16.489-25.288-37.253-46.804-51.857-73.435c-9.7-29-4.301-47.1-4.801-66.2C324.7,64,298.7,32,261,32h-14c-37.5,0-58,26.9-58,60\r\n\t\tc0.697,16.666,1.352,33.333,2,50c0.769,19.756,1.98,37.667-8,55.3c-7.033,12.488-19.571,22.43-28.592,33.478\r\n\t\tc-9.525,11.665-13.06,23.669-17.859,37.619c-5.987,17.401-21.275,30.906-24.886,48.929c-1.658,8.271,2.726,17.857-0.83,24.693\r\n\t\tc-3.698,7.109-0.813,14.469-2.833,21.682c-3.505,11.729-20.731,10.729-30.215,11.508c-17.602,1.443-11.051,17.988-7.843,29.701\r\n\t\tc5.598,20.435-19.54,42.078,11.032,50.471c13.989,3.84,28.586,5.13,42.727,8.32c13.981,3.154,26.917,8.612,40.396,13.262\r\n\t\tc10.469,3.611,20.262,4.146,30.323-1.232c10.982-5.87,18.947-15.083,31.691-17c24.707-3.716,54.829-4.169,79.373,0.63\r\n\t\tc7.507,1.468,10.075,6.525,14.905,11.766c8.145,8.838,21.514,10.125,32.794,8.22c11.89-2.01,20.846-9.466,29.686-17.112\r\n\t\tc12.526-10.835,26.137-17.996,40.791-25.547c7.439-3.833,22.178-9.388,24.159-18.903C450.151,406.573,433.642,400.383,426.3,396z\r\n\t\t M202,451.3c-1.3,13-13.9,20.3-25.4,19.3c-19.502-1.649-37.86-12.237-57.164-15.75c-9.393-1.709-47.351-3.173-46.943-17.079\r\n\t\tc0.215-7.361,5.751-11.666,7.567-18.415c2.811-10.449-5.753-19.932-6.32-30.16c-0.447-8.081,10.73-7.607,16.288-8.053\r\n\t\tc8.761-0.702,19.157-2.012,23.572-11.043c1.6-3.3-0.5-15,1.9-21.8c3.527-10.155,15.489-8.949,23.3-4.899\r\n\t\tc17.762,9.067,28.943,35.546,38.533,51.821C187.058,411.728,204.045,430.843,202,451.3z M318.3,385.7\r\n\t\tc2.289,11.787,4.224,24.387,1.7,36.3c-2.016,9.516-8.562,15.614-12.7,24c-2.2-6.8,11.3-16.7,9.8-33.7\r\n\t\tc-0.042-0.475-0.947-10.882-1.036-10.834c-1.979,1.082-3.825,5.075-5.304,6.73c-4.809,5.383-10.771,9.658-16.729,13.677\r\n\t\tc-13.797,9.306-29.221,15.058-45.83,16.627c-21,2-38-10.5-38-10.5c2.517,8.305,8.992,21,1.1,28.3\r\n\t\tc1.743-15.648-4.876-28.06-11.6-41.7c46.374-24.639-41.363-64.397-53-79.8c-10.476-13.896-5.553-31.83-2.7-43.5\r\n\t\tc-3.443,13.775-3.959,41.956,14,46.8c7.922,2.169,5.605-37.071,5.984-41.463c1.58-18.312,7.721-35.997,18.343-51.015\r\n\t\tc3.399-4.806,1.863-9.533,2.673-15.322c1.693-10.668,7.295-20.547,13.488-29.225c5.169-7.243,1.735-12.618,3.014-21.055\r\n\t\tc0.727-4.795,5.118,3.193,5.798,4.279c4,6.5,16.7,22.7,24.7,22c13.277-1.161,24.692-15.938,36.015-22.046\r\n\t\tc3.591-1.937,14.41-5.242,15.866-9.632c1.768-5.33-12.666-0.161-14.114,0.583c-10.782,5.535-31.018,21.448-43.867,15.295\r\n\t\tc-8.762-4.195-10.691-14.994-17.2-20.5c15.4,13.6,21.5,10.5,27.6,9.1c9.665-2.182,18.797-6.486,27.8-10.5\r\n\t\tc4.217-1.88,20.107-4.041,22.301-8.7c2.745-5.834-5.05-6.726-8.068-3.58c-6.251,6.515-15.853,8.981-24.097,11.787\r\n\t\tc-18.885,6.427-37.644,9.131-51.835-8.607c-8.354-10.212,15.558-22.504,22.2-28.8c0,0,1-7.2-0.6-12.7c-1.9-6.5-7.8-9.3-11.9-8.1\r\n\t\tc-4.1,1.1-8,5.5-6.8,14.8c1,8.3,7,11,7,11s-2.7,3.5-5.2,4.7c0,0-0.8-0.3-3.5-6.3c-2.7-6-6.6-19.5-0.3-31.1\r\n\t\tc6.3-11.6,19.6-5.2,23.8,3.8c3.9,8.3,2.4,22.7,2.4,22.7c3.358-0.843,6.835-1.3,10.3-1.3c4.242,0,6.814,4.563,10.6,4.8\r\n\t\tc-0.635,0-0.564-18.124-0.233-20.078c1.099-6.49,4.112-13.619,9.933-17.222c16.087-11.491,34.6,3.916,34.6,21.2\r\n\t\tc0.024,4.486-0.137,9.215-1.199,13.6c-0.659,2.637-1.582,8.469-5.114,9.177c-1.145,0.23-10.683-0.431-7.985-3.277\r\n\t\tc12.807-12.812-1.822-38.207-17.4-24.5c-5.601,4.199-5.483,13.833-4.801,20c1.098,9.141,20.51,11.541,26.852,13.78\r\n\t\tc8.224,2.903,7.943,9.626,6.679,17.116c-1.9,11.26-2.815,18.792,4.381,28.214c7.344,9.616,12.929,20.086,15.915,31.878\r\n\t\tc1.483,5.859,1.665,10.843,5.621,15.57c5.983,7.151,10.619,14.805,13.291,23.817c5.225,17.621,6.513,35.422,6.162,53.625\r\n\t\tc-0.5,8.199-2.1,15,8.3,9.699c4-2,6.5-2.899,11-3.699c3.101-6.301,4.4-18.301,4.5-24.301c0.2-13.5-0.3-41.5-27.699-71.5\r\n\t\tc0,0,28.5,21.7,33,62c2.5,22.301-2,34.4-2,34.4c5.3,1.3,10.8,5.3,13.6,9.8c-0.133-0.22,1.038,1.748,1.179,1.864\r\n\t\tc-9.811-8.171-31.708-12.859-39.679,0.236c-2,3.3-3.1,7.6-3.2,11.699c-7.1-1.199-12.399,0-16.8,4.9\r\n\t\tC313.5,358.1,316.3,375.3,318.3,385.7C320.3,396,316.3,375.3,318.3,385.7z M220.6,124.9c-0.2-4.9-2.1-9-4.7-10.8\r\n\t\tc0.3-0.3,0.8-0.7,1.7-0.4c1.4,0.4,3.5,2.7,4.3,6.3c0.7,2.9,0.4,7.7-1.4,7.7C220.498,126.766,220.531,125.833,220.6,124.9\r\n\t\tC220.4,120,220.6,125.8,220.6,124.9z M275.3,112.9c0.4-0.3,1.101-0.6,2.3-0.3c1.801,0.4,4.4,2.8,5.301,6.2\r\n\t\tc0.699,2.8,0.1,7.4-2.2,7.3c-0.005-0.903,0.062-1.803,0.2-2.7C280.8,118.8,278.6,114.8,275.3,112.9\r\n\t\tC275.7,112.6,278.6,114.8,275.3,112.9z M412.4,432.9c-17.504,7.553-31.304,19.968-47.117,30.19\r\n\t\tc-13.824,8.937-38.156,8.313-40.022-12.879c-1.565-17.776,4.184-35.288,1.84-53.357c-1.587-12.239-8.534-28.906-2.301-40.854\r\n\t\tc2.7-5.1,8.101-5.5,12.5-4c3.193,13.267,13.932,23.6,28,23.6c17.031,0,23.542-14.008,34-24.5c3.4,0.2,7.4,1.101,8.8,4.801\r\n\t\tc2.301,5.8-1.899,17.5-1.8,22.3c0.3,15.7,9,19.2,26.4,29C448,416,436.9,422.3,412.4,432.9C388.3,443.3,436.9,422.3,412.4,432.9z" + }, + "children": [] + }] + }] + }] +}; +exports.socialTux = socialTux; \ No newline at end of file diff --git a/dist/ionicons/socialTwitch.js b/dist/ionicons/socialTwitch.js new file mode 100644 index 000000000..4acc0fcef --- /dev/null +++ b/dist/ionicons/socialTwitch.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialTwitch = void 0; +var socialTwitch = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M80,32l-32,80v304h96v64h64l64-64h80l112-112V32H80z M256,272h-48V143h48V272z M368,272h-48V143h48V272z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M80,32l-32,80v304h96v64h64l64-64h80l112-112V32H80z M256,272h-48V143h48V272z M368,272h-48V143h48V272z" + }, + "children": [] + }] + }] + }] +}; +exports.socialTwitch = socialTwitch; \ No newline at end of file diff --git a/dist/ionicons/socialTwitchOutline.js b/dist/ionicons/socialTwitchOutline.js new file mode 100644 index 000000000..419f27025 --- /dev/null +++ b/dist/ionicons/socialTwitchOutline.js @@ -0,0 +1,71 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialTwitchOutline = void 0; +var socialTwitchOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M80,32l-32,80v304h96v64h64l64-64h80l112-112V32H80z M416,288l-64,64h-96.001L192,416v-64h-80V80h304V288z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M80,32l-32,80v304h96v64h64l64-64h80l112-112V32H80z M416,288l-64,64h-96.001L192,416v-64h-80V80h304V288z" + }, + "children": [] + }] + }] + }] + }, { + "name": "rect", + "attribs": { + "x": "320", + "y": "143", + "width": "48", + "height": "129" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "320", + "y": "143", + "width": "48", + "height": "129" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "208", + "y": "143", + "width": "48", + "height": "129" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "208", + "y": "143", + "width": "48", + "height": "129" + }, + "children": [] + }] + }] + }] +}; +exports.socialTwitchOutline = socialTwitchOutline; \ No newline at end of file diff --git a/dist/ionicons/socialTwitter.js b/dist/ionicons/socialTwitter.js new file mode 100644 index 000000000..e3b74f43b --- /dev/null +++ b/dist/ionicons/socialTwitter.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialTwitter = void 0; +var socialTwitter = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M492,109.5c-17.4,7.7-36,12.9-55.6,15.3c20-12,35.4-31,42.6-53.6c-18.7,11.1-39.4,19.2-61.5,23.5\r\n\tC399.8,75.8,374.6,64,346.8,64c-53.5,0-96.8,43.4-96.8,96.9c0,7.6,0.8,15,2.5,22.1c-80.5-4-151.9-42.6-199.6-101.3\r\n\tc-8.3,14.3-13.1,31-13.1,48.7c0,33.6,17.2,63.3,43.2,80.7C67,210.7,52,206.3,39,199c0,0.4,0,0.8,0,1.2c0,47,33.4,86.1,77.7,95\r\n\tc-8.1,2.2-16.7,3.4-25.5,3.4c-6.2,0-12.3-0.6-18.2-1.8c12.3,38.5,48.1,66.5,90.5,67.3c-33.1,26-74.9,41.5-120.3,41.5\r\n\tc-7.8,0-15.5-0.5-23.1-1.4C62.8,432,113.7,448,168.3,448C346.6,448,444,300.3,444,172.2c0-4.2-0.1-8.4-0.3-12.5\r\n\tC462.6,146,479,129,492,109.5z" + }, + "children": [] + }] +}; +exports.socialTwitter = socialTwitter; \ No newline at end of file diff --git a/dist/ionicons/socialTwitterOutline.js b/dist/ionicons/socialTwitterOutline.js new file mode 100644 index 000000000..2f477468d --- /dev/null +++ b/dist/ionicons/socialTwitterOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialTwitterOutline = void 0; +var socialTwitterOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M492,109.5c-17.4,7.7-36,12.9-55.6,15.3c20-12,35.4-31,42.6-53.6c-18.7,11.1-39.4,19.2-61.5,23.5\r\n\tC399.8,75.8,374.5,64,346.8,64c-53.5,0-96.8,43.4-96.8,96.9c0,7.6,0.8,15,2.5,22.1C172,179,100.5,140.4,52.8,81.7\r\n\tc-8.3,14.3-13.1,31-13.1,48.7c0,33.6,17.1,63.3,43.1,80.7C67,210.7,52,206.3,39,199c0,0.4,0,0.8,0,1.2c0,47,33.4,86.1,77.7,95\r\n\tc-8.1,2.2-16.7,3.4-25.5,3.4c-6.2,0-12.3-0.6-18.2-1.8c12.3,38.5,48.1,66.5,90.5,67.3c-33.1,26-74.9,41.5-120.3,41.5\r\n\tc-7.8,0-15.5-0.5-23.1-1.4C62.8,432,113.7,448,168.3,448C346.5,448,444,300.3,444,172.2c0-4.2-0.1-8.4-0.3-12.5\r\n\tC462.5,146,479,129,492,109.5z M434.2,146.7l-7,5.1l0.4,8.6c0.2,3.8,0.3,7.8,0.3,11.8c0,30.2-5.9,61.8-17,91.5\r\n\tc-11.7,31.2-28.5,59.4-50,83.8c-23,26.1-50.2,46.5-81.1,60.8c-33.8,15.7-71.3,23.6-111.5,23.6c-28.9,0-57.4-4.8-84.5-14.2\r\n\tc9.9-1.9,19.6-4.6,29.1-7.9c21.7-7.6,41.9-18.7,60.1-33l35.3-27.7l-44.9-0.8c-26.1-0.5-49.7-13.4-64.3-33.9\r\n\tc7.3-0.5,14.5-1.8,21.5-3.7l60.7-20.2l-61.7-10.9c-29.6-5.9-52.8-27.9-61.3-55.8c7.8,2,15.4,2.8,23.9,3.3c0,0,31.8,1.4,55.8-0.1\r\n\tc-13-6.2-46.4-29.2-46.4-29.2c-22.5-15.1-36-40.2-36-67.4c0-6.4,0.8-12.8,2.2-19c21.9,22.4,47,41.1,75.1,55.5\r\n\tc37,19.1,76.9,29.8,118.6,31.9l21.2,1.1l-4.8-20.7c-1.4-5.9-2.1-12.1-2.1-18.5c0-44.4,36.3-80.7,80.9-80.7c22.3,0,43.8,9.3,59,25.6\r\n\tl6.1,6.5l8.7-1.7c4.5-0.9,8.9-1.9,13.3-3.1c-1,1.4-5.7,6.1-11,10.8c-4.5,4-17.8,16.5-17.8,16.5s13,4.1,21.1,5\r\n\tc8.1,0.9,17.4-0.6,18.9-0.8C442.2,141.1,437.2,144.6,434.2,146.7z" + }, + "children": [] + }] +}; +exports.socialTwitterOutline = socialTwitterOutline; \ No newline at end of file diff --git a/dist/ionicons/socialUsd.js b/dist/ionicons/socialUsd.js new file mode 100644 index 000000000..0de118579 --- /dev/null +++ b/dist/ionicons/socialUsd.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialUsd = void 0; +var socialUsd = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M411.387,303.256c-3.119-9.577-7.891-18.561-14.301-26.952c-6.422-8.382-14.396-15.826-23.93-22.331\r\n\t\tc-9.539-6.498-20.721-11.63-33.553-15.4c-5.143-1.363-14.189-3.506-26.104-6.418c-8.516-2.074-16.5-4.2-25.5-6.367V120.065\r\n\t\tc9,2.396,15.252,6.202,21.926,10.43c14.279,9.04,23.232,24.505,25.855,45.505h69.174c-0.654-18-4.65-32.76-11.996-46.02\r\n\t\tc-8.07-14.543-18.977-27.024-32.73-36.956c-13.75-9.922-30.225-17.49-48.377-22.455C303.967,68.416,297,66.605,288,65.386V32h-64\r\n\t\tv33.167c-7,1.044-15.148,2.445-22.426,4.25c-17.242,4.283-32.388,10.868-45.951,19.764c-13.571,8.905-24.352,20.112-32.604,33.627\r\n\t\tc-8.251,13.523-12.312,29.52-12.312,48c0,9.585,1.407,18.993,4.157,28.235c2.752,9.241,7.442,17.967,14.042,26.181\r\n\t\tc6.603,8.214,15.495,15.658,26.687,22.332c11.183,6.672,24.705,12.064,41.576,16.171c9.287,2.345,18.83,4.534,26.83,6.576v119.586\r\n\t\tc-11-2.919-21.889-7.399-30.678-13.479c-9.17-6.327-16.066-13.953-21.198-23.884c-4.779-9.229-7.073-20.526-7.407-32.526H96\r\n\t\tc0.695,21,5.25,39.494,13.672,55.371c8.799,16.604,20.533,29.96,35.204,40.562c14.662,10.613,31.393,18.356,51.198,23.491\r\n\t\tc8.885,2.304,18.926,3.96,27.926,5.23V480h64v-34.54c10-1.069,18.957-2.69,28.527-4.879c18.701-4.273,35.645-11.036,50.316-20.276\r\n\t\tc14.662-9.24,26.621-21.128,35.611-35.681c8.98-14.541,13.545-32.085,13.545-52.619C416,322.427,414.498,312.841,411.387,303.256z\r\n\t\t M224,209.699c-12-3.743-23.912-9.088-32.051-16.048c-8.621-7.355-12.673-17.534-12.673-30.545c0-9.241,2.414-16.94,7.004-23.102\r\n\t\tc4.58-6.161,9.912-11.038,16.88-14.631c6.18-3.189,13.84-5.565,20.84-7.138V209.699z M342.902,359.471\r\n\t\tc-2.939,6.673-7.699,12.576-14.303,17.711c-6.602,5.133-15.744,9.328-26.377,12.577c-4.5,1.378-8.223,2.444-14.223,3.236v-107.11\r\n\t\tc10,2.624,18.18,5.332,26.326,8.131c8.062,2.744,15.748,7.443,22.537,14.116c6.785,6.676,10.309,17.03,10.309,31.06\r\n\t\tC347.172,346.042,345.834,352.797,342.902,359.471z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M411.387,303.256c-3.119-9.577-7.891-18.561-14.301-26.952c-6.422-8.382-14.396-15.826-23.93-22.331\r\n\t\tc-9.539-6.498-20.721-11.63-33.553-15.4c-5.143-1.363-14.189-3.506-26.104-6.418c-8.516-2.074-16.5-4.2-25.5-6.367V120.065\r\n\t\tc9,2.396,15.252,6.202,21.926,10.43c14.279,9.04,23.232,24.505,25.855,45.505h69.174c-0.654-18-4.65-32.76-11.996-46.02\r\n\t\tc-8.07-14.543-18.977-27.024-32.73-36.956c-13.75-9.922-30.225-17.49-48.377-22.455C303.967,68.416,297,66.605,288,65.386V32h-64\r\n\t\tv33.167c-7,1.044-15.148,2.445-22.426,4.25c-17.242,4.283-32.388,10.868-45.951,19.764c-13.571,8.905-24.352,20.112-32.604,33.627\r\n\t\tc-8.251,13.523-12.312,29.52-12.312,48c0,9.585,1.407,18.993,4.157,28.235c2.752,9.241,7.442,17.967,14.042,26.181\r\n\t\tc6.603,8.214,15.495,15.658,26.687,22.332c11.183,6.672,24.705,12.064,41.576,16.171c9.287,2.345,18.83,4.534,26.83,6.576v119.586\r\n\t\tc-11-2.919-21.889-7.399-30.678-13.479c-9.17-6.327-16.066-13.953-21.198-23.884c-4.779-9.229-7.073-20.526-7.407-32.526H96\r\n\t\tc0.695,21,5.25,39.494,13.672,55.371c8.799,16.604,20.533,29.96,35.204,40.562c14.662,10.613,31.393,18.356,51.198,23.491\r\n\t\tc8.885,2.304,18.926,3.96,27.926,5.23V480h64v-34.54c10-1.069,18.957-2.69,28.527-4.879c18.701-4.273,35.645-11.036,50.316-20.276\r\n\t\tc14.662-9.24,26.621-21.128,35.611-35.681c8.98-14.541,13.545-32.085,13.545-52.619C416,322.427,414.498,312.841,411.387,303.256z\r\n\t\t M224,209.699c-12-3.743-23.912-9.088-32.051-16.048c-8.621-7.355-12.673-17.534-12.673-30.545c0-9.241,2.414-16.94,7.004-23.102\r\n\t\tc4.58-6.161,9.912-11.038,16.88-14.631c6.18-3.189,13.84-5.565,20.84-7.138V209.699z M342.902,359.471\r\n\t\tc-2.939,6.673-7.699,12.576-14.303,17.711c-6.602,5.133-15.744,9.328-26.377,12.577c-4.5,1.378-8.223,2.444-14.223,3.236v-107.11\r\n\t\tc10,2.624,18.18,5.332,26.326,8.131c8.062,2.744,15.748,7.443,22.537,14.116c6.785,6.676,10.309,17.03,10.309,31.06\r\n\t\tC347.172,346.042,345.834,352.797,342.902,359.471z" + }, + "children": [] + }] + }] + }] +}; +exports.socialUsd = socialUsd; \ No newline at end of file diff --git a/dist/ionicons/socialUsdOutline.js b/dist/ionicons/socialUsdOutline.js new file mode 100644 index 000000000..612e69f27 --- /dev/null +++ b/dist/ionicons/socialUsdOutline.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialUsdOutline = void 0; +var socialUsdOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M220.746,102.625c-7.788,1.683-17.44,4.813-24.641,8.529c-9.018,4.649-16.411,10.965-22.604,19.295\r\n\t\tc-6.706,9.002-10.105,19.989-10.105,32.657c0,17.916,6.197,32.288,18.405,42.702c9.334,7.983,21.504,14.431,36.687,19.165\r\n\t\tL240,230.667V100.244C240,100.244,231.766,100.244,220.746,102.625z M224,209.699c-12-3.743-23.912-9.088-32.051-16.048\r\n\t\tc-8.621-7.355-12.673-17.534-12.673-30.545c0-9.241,2.414-16.94,7.004-23.102c4.58-6.161,9.912-11.038,16.88-14.631\r\n\t\tc6.18-3.189,13.84-5.565,20.84-7.138V209.699z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M220.746,102.625c-7.788,1.683-17.44,4.813-24.641,8.529c-9.018,4.649-16.411,10.965-22.604,19.295\r\n\t\tc-6.706,9.002-10.105,19.989-10.105,32.657c0,17.916,6.197,32.288,18.405,42.702c9.334,7.983,21.504,14.431,36.687,19.165\r\n\t\tL240,230.667V100.244C240,100.244,231.766,100.244,220.746,102.625z M224,209.699c-12-3.743-23.912-9.088-32.051-16.048\r\n\t\tc-8.621-7.355-12.673-17.534-12.673-30.545c0-9.241,2.414-16.94,7.004-23.102c4.58-6.161,9.912-11.038,16.88-14.631\r\n\t\tc6.18-3.189,13.84-5.565,20.84-7.138V209.699z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M348.217,296.725c-8.432-8.289-18.002-14.296-28.414-17.84c-8.949-3.075-17.441-5.848-27.465-8.477L272,265.145v145.188\r\n\t\tc0,0,12.051-0.642,18.371-1.476s10.703-1.971,16.67-3.798c12.727-3.89,23.309-9.02,31.32-15.25\r\n\t\tc8.678-6.747,15.145-14.785,19.164-23.907c3.775-8.595,5.706-17.581,5.706-26.711C363.231,320.822,358.188,306.536,348.217,296.725\r\n\t\tz M342.902,359.471c-2.939,6.673-7.699,12.576-14.303,17.711c-6.602,5.133-15.744,9.328-26.377,12.577\r\n\t\tc-4.5,1.378-8.223,2.444-14.223,3.236v-107.11c10,2.624,18.18,5.332,26.326,8.131c8.062,2.744,15.748,7.443,22.537,14.116\r\n\t\tc6.785,6.676,10.309,17.03,10.309,31.06C347.172,346.042,345.834,352.797,342.902,359.471z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M348.217,296.725c-8.432-8.289-18.002-14.296-28.414-17.84c-8.949-3.075-17.441-5.848-27.465-8.477L272,265.145v145.188\r\n\t\tc0,0,12.051-0.642,18.371-1.476s10.703-1.971,16.67-3.798c12.727-3.89,23.309-9.02,31.32-15.25\r\n\t\tc8.678-6.747,15.145-14.785,19.164-23.907c3.775-8.595,5.706-17.581,5.706-26.711C363.231,320.822,358.188,306.536,348.217,296.725\r\n\t\tz M342.902,359.471c-2.939,6.673-7.699,12.576-14.303,17.711c-6.602,5.133-15.744,9.328-26.377,12.577\r\n\t\tc-4.5,1.378-8.223,2.444-14.223,3.236v-107.11c10,2.624,18.18,5.332,26.326,8.131c8.062,2.744,15.748,7.443,22.537,14.116\r\n\t\tc6.785,6.676,10.309,17.03,10.309,31.06C347.172,346.042,345.834,352.797,342.902,359.471z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M411.387,303.256c-3.119-9.577-7.891-18.561-14.301-26.952c-6.422-8.382-14.396-15.826-23.93-22.331\r\n\t\tc-9.539-6.498-20.721-11.63-33.553-15.4c-5.143-1.363-14.189-3.506-26.104-6.418c-8.516-2.074-16.5-4.2-25.5-6.367V120.065\r\n\t\tc9,2.396,15.252,6.202,21.926,10.43c14.279,9.04,23.232,24.505,25.855,45.505h69.174c-0.654-18-4.65-32.76-11.996-46.02\r\n\t\tc-8.07-14.543-18.977-27.024-32.73-36.956c-13.75-9.922-30.225-17.49-48.377-22.455C303.967,68.416,297,66.605,288,65.386V32h-64\r\n\t\tv33.167c-7,1.044-15.148,2.445-22.426,4.25c-17.242,4.283-32.388,10.868-45.951,19.764c-13.571,8.905-24.352,20.112-32.604,33.627\r\n\t\tc-8.251,13.523-12.312,29.52-12.312,48c0,9.585,1.407,18.993,4.157,28.235c2.752,9.241,7.442,17.967,14.042,26.181\r\n\t\tc6.603,8.214,15.495,15.658,26.687,22.332c11.183,6.672,24.705,12.064,41.576,16.171c9.287,2.345,18.83,4.534,26.83,6.576v119.586\r\n\t\tc-11-2.919-21.889-7.399-30.678-13.479c-9.17-6.327-16.066-13.953-21.198-23.884c-4.779-9.229-7.073-20.526-7.407-32.526H96\r\n\t\tc0.695,21,5.25,39.494,13.672,55.371c8.799,16.604,20.533,29.96,35.204,40.562c14.662,10.613,31.393,18.356,51.198,23.491\r\n\t\tc8.885,2.304,18.926,3.96,27.926,5.23V480h64v-34.54c10-1.069,18.957-2.69,28.527-4.879c18.701-4.273,35.645-11.036,50.316-20.276\r\n\t\tc14.662-9.24,26.621-21.128,35.611-35.681c8.98-14.541,13.545-32.085,13.545-52.619C416,322.427,414.498,312.841,411.387,303.256z\r\n\t\t M388.904,376.218c-7.623,12.34-17.873,22.619-30.457,30.55c-13.035,8.21-28.248,14.339-45.219,18.217\r\n\t\tc-9.059,2.071-17.285,3.564-26.654,4.566L272,431.08V464h-32v-33.244l-13.508-1.943c-9.256-1.307-18.671-2.968-26.271-4.938\r\n\t\tc-17.865-4.633-32.876-11.51-46.031-21.032c-12.845-9.283-22.77-20.551-30.408-34.967c-5.004-9.437-8.418-20.876-10.268-31.876\r\n\t\th36.714c1.529,8,4.162,16.837,7.804,23.869c6.324,12.239,14.979,21.914,26.441,29.823c10.145,7.017,23.81,12.64,35.676,15.724\r\n\t\tS240,408.667,240,408.667V257.874l-11.786-3.074c-4.952-1.263-11.074-2.583-16.558-3.96c-3.395-0.854-6.814-1.729-10.37-2.626\r\n\t\tl-0.033-0.017l-0.051-0.017c-14.952-3.64-27.533-8.472-37.411-14.365c-9.487-5.657-17.021-11.92-22.399-18.611\r\n\t\tc-5.271-6.56-9.029-13.533-11.17-20.722c-2.307-7.755-3.476-15.721-3.476-23.675c0-15.66,3.274-28.636,10.002-39.665\r\n\t\tc7.097-11.622,16.187-20.973,27.786-28.585c12.201-8.003,25.666-13.764,41.155-17.611c6.334-1.571,12.865-2.901,19.926-3.954\r\n\t\tL240,78.958V48h32v31.363l13.127,1.877c7.371,0.999,14.236,2.404,22.637,4.699c16.389,4.482,30.91,11.189,43.023,19.929\r\n\t\tc11.691,8.443,21.182,19.333,28.133,31.862c3.805,6.865,6.504,14.27,8.137,22.27h-38.119c-5.078-19-15.352-33.637-30.172-43.021\r\n\t\tc-9.254-5.861-17.561-9.215-27.373-12.251C281.766,101.75,272,101.25,272,101.25v137.142l12.529,2.951\r\n\t\tc7.631,1.837,14.184,3.644,21.453,5.415l3.92,0.938l0.812,0.19c11.373,2.78,19.651,4.799,24.558,6.096\r\n\t\tc11.084,3.275,20.8,7.721,28.851,13.204c8.078,5.513,14.895,11.853,20.236,18.828c5.291,6.925,9.264,14.393,11.801,22.179\r\n\t\tc2.562,7.898,3.863,15.91,3.863,23.812C400.023,349.395,396.283,364.271,388.904,376.218z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M411.387,303.256c-3.119-9.577-7.891-18.561-14.301-26.952c-6.422-8.382-14.396-15.826-23.93-22.331\r\n\t\tc-9.539-6.498-20.721-11.63-33.553-15.4c-5.143-1.363-14.189-3.506-26.104-6.418c-8.516-2.074-16.5-4.2-25.5-6.367V120.065\r\n\t\tc9,2.396,15.252,6.202,21.926,10.43c14.279,9.04,23.232,24.505,25.855,45.505h69.174c-0.654-18-4.65-32.76-11.996-46.02\r\n\t\tc-8.07-14.543-18.977-27.024-32.73-36.956c-13.75-9.922-30.225-17.49-48.377-22.455C303.967,68.416,297,66.605,288,65.386V32h-64\r\n\t\tv33.167c-7,1.044-15.148,2.445-22.426,4.25c-17.242,4.283-32.388,10.868-45.951,19.764c-13.571,8.905-24.352,20.112-32.604,33.627\r\n\t\tc-8.251,13.523-12.312,29.52-12.312,48c0,9.585,1.407,18.993,4.157,28.235c2.752,9.241,7.442,17.967,14.042,26.181\r\n\t\tc6.603,8.214,15.495,15.658,26.687,22.332c11.183,6.672,24.705,12.064,41.576,16.171c9.287,2.345,18.83,4.534,26.83,6.576v119.586\r\n\t\tc-11-2.919-21.889-7.399-30.678-13.479c-9.17-6.327-16.066-13.953-21.198-23.884c-4.779-9.229-7.073-20.526-7.407-32.526H96\r\n\t\tc0.695,21,5.25,39.494,13.672,55.371c8.799,16.604,20.533,29.96,35.204,40.562c14.662,10.613,31.393,18.356,51.198,23.491\r\n\t\tc8.885,2.304,18.926,3.96,27.926,5.23V480h64v-34.54c10-1.069,18.957-2.69,28.527-4.879c18.701-4.273,35.645-11.036,50.316-20.276\r\n\t\tc14.662-9.24,26.621-21.128,35.611-35.681c8.98-14.541,13.545-32.085,13.545-52.619C416,322.427,414.498,312.841,411.387,303.256z\r\n\t\t M388.904,376.218c-7.623,12.34-17.873,22.619-30.457,30.55c-13.035,8.21-28.248,14.339-45.219,18.217\r\n\t\tc-9.059,2.071-17.285,3.564-26.654,4.566L272,431.08V464h-32v-33.244l-13.508-1.943c-9.256-1.307-18.671-2.968-26.271-4.938\r\n\t\tc-17.865-4.633-32.876-11.51-46.031-21.032c-12.845-9.283-22.77-20.551-30.408-34.967c-5.004-9.437-8.418-20.876-10.268-31.876\r\n\t\th36.714c1.529,8,4.162,16.837,7.804,23.869c6.324,12.239,14.979,21.914,26.441,29.823c10.145,7.017,23.81,12.64,35.676,15.724\r\n\t\tS240,408.667,240,408.667V257.874l-11.786-3.074c-4.952-1.263-11.074-2.583-16.558-3.96c-3.395-0.854-6.814-1.729-10.37-2.626\r\n\t\tl-0.033-0.017l-0.051-0.017c-14.952-3.64-27.533-8.472-37.411-14.365c-9.487-5.657-17.021-11.92-22.399-18.611\r\n\t\tc-5.271-6.56-9.029-13.533-11.17-20.722c-2.307-7.755-3.476-15.721-3.476-23.675c0-15.66,3.274-28.636,10.002-39.665\r\n\t\tc7.097-11.622,16.187-20.973,27.786-28.585c12.201-8.003,25.666-13.764,41.155-17.611c6.334-1.571,12.865-2.901,19.926-3.954\r\n\t\tL240,78.958V48h32v31.363l13.127,1.877c7.371,0.999,14.236,2.404,22.637,4.699c16.389,4.482,30.91,11.189,43.023,19.929\r\n\t\tc11.691,8.443,21.182,19.333,28.133,31.862c3.805,6.865,6.504,14.27,8.137,22.27h-38.119c-5.078-19-15.352-33.637-30.172-43.021\r\n\t\tc-9.254-5.861-17.561-9.215-27.373-12.251C281.766,101.75,272,101.25,272,101.25v137.142l12.529,2.951\r\n\t\tc7.631,1.837,14.184,3.644,21.453,5.415l3.92,0.938l0.812,0.19c11.373,2.78,19.651,4.799,24.558,6.096\r\n\t\tc11.084,3.275,20.8,7.721,28.851,13.204c8.078,5.513,14.895,11.853,20.236,18.828c5.291,6.925,9.264,14.393,11.801,22.179\r\n\t\tc2.562,7.898,3.863,15.91,3.863,23.812C400.023,349.395,396.283,364.271,388.904,376.218z" + }, + "children": [] + }] + }] + }] +}; +exports.socialUsdOutline = socialUsdOutline; \ No newline at end of file diff --git a/dist/ionicons/socialVimeo.js b/dist/ionicons/socialVimeo.js new file mode 100644 index 000000000..853407596 --- /dev/null +++ b/dist/ionicons/socialVimeo.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialVimeo = void 0; +var socialVimeo = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "style", + "attribs": { + "type": "text/css" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "class": "st0", + "d": "M476.9,114c-5-23.4-17.5-38.8-40.6-46.3c-23.1-7.5-64.9-4.5-94.1,16.8c-29.9,21.8-47.6,59.7-53.8,83.8\r\n\tc14.7-6.3,24-7.7,39-6.9c15,0.8,24.5,12,24.9,25.3c0.3,9.8-0.2,18.7-3.6,27.7c-10.8,28.7-27.7,56.5-47.6,80.8\r\n\tc-2.9,3.6-6.4,6.9-10,9.9c-10.2,8.3-18.8,6.1-25.4-5.2c-5.4-9.3-9-18.9-12.2-29.1c-12.4-39.7-16.8-80.9-23.8-121.6\r\n\tc-3.3-19.5-7-39.8-18-56.9c-11.6-17.8-28.6-24.6-50-22c-14.7,1.8-36.9,17.5-47.8,26.4c0,0-56,46.9-81.8,71.4l21.2,27\r\n\tc0,0,17.9-12.5,27.5-18.3c5.7-3.4,12.4-4.1,17.2,0.2c4.5,3.9,9.6,9,12.3,14.1c5.7,10.7,11.2,21.9,14.7,33.4\r\n\tc13.2,44.3,25.5,88.7,37.8,133.3c6.3,22.8,13.9,44.2,28,63.6c19.3,26.6,39.6,32.7,70.9,21.5c25.4-9.1,46.6-26.2,66-43.9\r\n\tc33.1-30.2,59.1-65.4,85.5-101.2c20.4-27.7,37.3-55.7,51.4-87C478.5,179.8,484,147.3,476.9,114z" + }, + "children": [] + }] +}; +exports.socialVimeo = socialVimeo; \ No newline at end of file diff --git a/dist/ionicons/socialVimeoOutline.js b/dist/ionicons/socialVimeoOutline.js new file mode 100644 index 000000000..31071d12c --- /dev/null +++ b/dist/ionicons/socialVimeoOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialVimeoOutline = void 0; +var socialVimeoOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M476.9,114c-5-23.4-17.5-38.8-40.6-46.3c-7.4-2.4-16.7-3.7-26.9-3.7c-21.7,0-47.4,6-67.2,20.5\r\n\tc-29.9,21.8-47.6,59.7-53.8,83.8c12.2-5.3,20.8-7.1,31.9-7.1c2.2,0,4.6,0.1,7.1,0.2c15,0.8,24.5,12,24.9,25.3\r\n\tc0.3,9.8-0.2,18.7-3.6,27.7c-10.8,28.7-27.7,56.5-47.6,80.8c-2.9,3.6-6.4,6.9-10,9.9c-4.1,3.4-8,5-11.6,5c-5.2,0-9.9-3.5-13.8-10.2\r\n\tc-5.4-9.3-9-18.9-12.2-29.1c-12.4-39.7-16.8-80.9-23.8-121.6c-3.3-19.5-7-39.8-18-56.9c-10-15.4-24-22.6-41.5-22.6\r\n\tc-2.8,0-5.6,0.2-8.6,0.5c-14.7,1.8-36.9,17.5-47.8,26.4c0,0-56,46.9-81.8,71.4l21.2,27c0,0,17.9-12.5,27.5-18.3\r\n\tc2.9-1.8,6.1-2.8,9.2-2.8c2.9,0,5.7,0.9,8,3c4.5,3.9,9.6,9,12.3,14.1c5.7,10.7,11.2,21.9,14.7,33.4c13.2,44.3,25.5,88.7,37.8,133.3\r\n\tc6.3,22.8,13.9,44.2,28,63.6c13.2,18.2,26.9,26.8,44.3,26.8c8,0,16.8-1.8,26.6-5.4c25.4-9.1,46.6-26.2,66-43.9\r\n\tc33.1-30.2,59.1-65.4,85.5-101.2c20.4-27.7,37.3-55.7,51.4-87C478.5,179.8,484,147.3,476.9,114z M450,203.9\r\n\tc-13.3,29.4-29.1,56.2-49.7,84.1l-0.3,0.4c-26.4,35.7-51.3,69.5-83.1,98.5c-17.8,16.3-37.5,32.4-60.6,40.7c-8.3,3-15.2,4.4-21.2,4.4\r\n\tc-8.2,0-18.4-2.4-31.4-20.2c-13.4-18.4-20.2-39-25.5-58.4c-12.4-45.1-24.6-89.2-37.9-133.6c-3.9-13.2-10.2-25.8-15.9-36.4\r\n\tc-3.2-5.9-8.4-12-15.9-18.6c-5.2-4.5-11.6-6.9-18.6-6.9c-5.9,0-12,1.8-17.5,5.1c-4.5,2.7-10.5,6.7-15.9,10.3l-2.8-3.6\r\n\tc26.9-24.4,68.3-59.1,70.3-60.8C138.8,96.8,155.8,87,163.5,86c2.3-0.3,4.5-0.4,6.6-0.4c12.4,0,21.3,4.9,28.1,15.3\r\n\tc9.5,14.7,12.8,33.9,15.7,50.9c1.6,9.7,3.2,19.6,4.7,29.1c4.8,31.1,9.8,63.3,19.6,94.6c3,9.7,7,21.2,13.6,32.5\r\n\tc8.8,15,19.9,18.1,27.6,18.1c7.4,0,14.7-2.9,21.7-8.6c4.6-3.7,8.7-7.8,12.3-12.2c21.9-26.8,39.3-56.3,50.2-85.3\r\n\tc4.5-12,4.9-23.3,4.6-33.8c-0.6-22.4-17.4-39.6-40-40.9c-2.9-0.2-5.5-0.2-8-0.2c-2.2,0-4.3,0.1-6.3,0.2\r\n\tc8.8-18.1,21.7-36.3,37.7-47.9c15-10.9,36.6-17.5,57.8-17.5c8.3,0,16.1,1,21.9,2.9c17,5.5,26,15.8,29.9,34.4\r\n\tC467.2,145.1,463.4,174.2,450,203.9z" + }, + "children": [] + }] +}; +exports.socialVimeoOutline = socialVimeoOutline; \ No newline at end of file diff --git a/dist/ionicons/socialWhatsapp.js b/dist/ionicons/socialWhatsapp.js new file mode 100644 index 000000000..caaf07f2b --- /dev/null +++ b/dist/ionicons/socialWhatsapp.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialWhatsapp = void 0; +var socialWhatsapp = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M260.062,32C138.605,32,40.134,129.701,40.134,250.232c0,41.23,11.532,79.79,31.559,112.687L32,480l121.764-38.682\r\n\t\tc31.508,17.285,67.745,27.146,106.298,27.146C381.535,468.464,480,370.749,480,250.232C480,129.701,381.535,32,260.062,32z\r\n\t\t M369.424,333.11c-5.174,12.827-28.574,24.533-38.899,25.072c-10.314,0.547-10.608,7.994-66.84-16.434\r\n\t\tc-56.225-24.434-90.052-83.844-92.719-87.67c-2.669-3.812-21.78-31.047-20.749-58.455c1.038-27.413,16.047-40.346,21.404-45.725\r\n\t\tc5.351-5.387,11.486-6.352,15.232-6.413c4.428-0.072,7.296-0.132,10.573-0.011c3.274,0.124,8.192-0.685,12.45,10.639\r\n\t\tc4.256,11.323,14.443,39.153,15.746,41.989c1.302,2.839,2.108,6.126,0.102,9.771c-2.012,3.653-3.042,5.935-5.961,9.083\r\n\t\tc-2.935,3.148-6.174,7.042-8.792,9.449c-2.92,2.665-5.97,5.572-2.9,11.269c3.068,5.693,13.653,24.356,29.779,39.736\r\n\t\tc20.725,19.771,38.598,26.329,44.098,29.317c5.515,3.004,8.806,2.67,12.226-0.929c3.404-3.599,14.639-15.746,18.596-21.169\r\n\t\tc3.955-5.438,7.661-4.373,12.742-2.329c5.078,2.052,32.157,16.556,37.673,19.551c5.51,2.989,9.193,4.529,10.51,6.9\r\n\t\tC375.012,309.131,374.596,320.282,369.424,333.11z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M260.062,32C138.605,32,40.134,129.701,40.134,250.232c0,41.23,11.532,79.79,31.559,112.687L32,480l121.764-38.682\r\n\t\tc31.508,17.285,67.745,27.146,106.298,27.146C381.535,468.464,480,370.749,480,250.232C480,129.701,381.535,32,260.062,32z\r\n\t\t M369.424,333.11c-5.174,12.827-28.574,24.533-38.899,25.072c-10.314,0.547-10.608,7.994-66.84-16.434\r\n\t\tc-56.225-24.434-90.052-83.844-92.719-87.67c-2.669-3.812-21.78-31.047-20.749-58.455c1.038-27.413,16.047-40.346,21.404-45.725\r\n\t\tc5.351-5.387,11.486-6.352,15.232-6.413c4.428-0.072,7.296-0.132,10.573-0.011c3.274,0.124,8.192-0.685,12.45,10.639\r\n\t\tc4.256,11.323,14.443,39.153,15.746,41.989c1.302,2.839,2.108,6.126,0.102,9.771c-2.012,3.653-3.042,5.935-5.961,9.083\r\n\t\tc-2.935,3.148-6.174,7.042-8.792,9.449c-2.92,2.665-5.97,5.572-2.9,11.269c3.068,5.693,13.653,24.356,29.779,39.736\r\n\t\tc20.725,19.771,38.598,26.329,44.098,29.317c5.515,3.004,8.806,2.67,12.226-0.929c3.404-3.599,14.639-15.746,18.596-21.169\r\n\t\tc3.955-5.438,7.661-4.373,12.742-2.329c5.078,2.052,32.157,16.556,37.673,19.551c5.51,2.989,9.193,4.529,10.51,6.9\r\n\t\tC375.012,309.131,374.596,320.282,369.424,333.11z" + }, + "children": [] + }] + }] + }] +}; +exports.socialWhatsapp = socialWhatsapp; \ No newline at end of file diff --git a/dist/ionicons/socialWhatsappOutline.js b/dist/ionicons/socialWhatsappOutline.js new file mode 100644 index 000000000..8d5e42bec --- /dev/null +++ b/dist/ionicons/socialWhatsappOutline.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialWhatsappOutline = void 0; +var socialWhatsappOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M209.877,154.114c-4.258-11.323-9.176-10.515-12.45-10.639\r\n\t\tc-3.277-0.121-6.146-0.061-10.573,0.011c-3.746,0.061-9.882,1.026-15.232,6.413c-5.357,5.378-20.366,18.312-21.404,45.725\r\n\t\tc-1.031,27.408,18.08,54.643,20.749,58.455c2.667,3.826,36.494,63.236,92.719,87.67c56.231,24.427,56.525,16.981,66.84,16.435\r\n\t\tc10.325-0.54,33.726-12.246,38.899-25.073c5.172-12.827,5.588-23.979,4.271-26.358c-1.316-2.371-5-3.911-10.51-6.9\r\n\t\tc-5.516-2.995-32.595-17.498-37.673-19.55c-5.081-2.044-8.787-3.108-12.742,2.329c-3.957,5.422-15.191,17.569-18.596,21.168\r\n\t\tc-3.42,3.6-6.711,3.934-12.226,0.93c-5.5-2.988-23.373-9.548-44.098-29.317c-16.126-15.38-26.711-34.043-29.779-39.736\r\n\t\tc-3.069-5.697-0.02-8.604,2.9-11.269c2.618-2.407,5.857-6.301,8.792-9.449c2.919-3.148,3.949-5.43,5.961-9.083\r\n\t\tc2.007-3.645,1.2-6.932-0.102-9.771C224.32,193.267,214.133,165.437,209.877,154.114z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M209.877,154.114c-4.258-11.323-9.176-10.515-12.45-10.639\r\n\t\tc-3.277-0.121-6.146-0.061-10.573,0.011c-3.746,0.061-9.882,1.026-15.232,6.413c-5.357,5.378-20.366,18.312-21.404,45.725\r\n\t\tc-1.031,27.408,18.08,54.643,20.749,58.455c2.667,3.826,36.494,63.236,92.719,87.67c56.231,24.427,56.525,16.981,66.84,16.435\r\n\t\tc10.325-0.54,33.726-12.246,38.899-25.073c5.172-12.827,5.588-23.979,4.271-26.358c-1.316-2.371-5-3.911-10.51-6.9\r\n\t\tc-5.516-2.995-32.595-17.498-37.673-19.55c-5.081-2.044-8.787-3.108-12.742,2.329c-3.957,5.422-15.191,17.569-18.596,21.168\r\n\t\tc-3.42,3.6-6.711,3.934-12.226,0.93c-5.5-2.988-23.373-9.548-44.098-29.317c-16.126-15.38-26.711-34.043-29.779-39.736\r\n\t\tc-3.069-5.697-0.02-8.604,2.9-11.269c2.618-2.407,5.857-6.301,8.792-9.449c2.919-3.148,3.949-5.43,5.961-9.083\r\n\t\tc2.007-3.645,1.2-6.932-0.102-9.771C224.32,193.267,214.133,165.437,209.877,154.114z" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M260.062,64c50.249,0,97.478,19.402,132.982,54.632C428.482,153.796,448,200.533,448,250.232\r\n\t\t\tc0,49.694-19.518,96.43-54.956,131.596c-35.507,35.232-82.735,54.637-132.982,54.637c-31.806,0-63.24-8.023-90.906-23.201\r\n\t\t\tl-12.017-6.593l-13.063,4.149l-61.452,19.522l19.375-57.149l4.798-14.151l-7.771-12.763\r\n\t\t\tc-17.593-28.898-26.892-62.111-26.892-96.047c0-49.699,19.518-96.436,54.957-131.601C162.596,83.402,209.819,64,260.062,64\r\n\t\t\t M260.062,32C138.605,32,40.134,129.701,40.134,250.232c0,41.229,11.532,79.791,31.559,112.687L32,480l121.764-38.682\r\n\t\t\tc31.508,17.285,67.745,27.146,106.298,27.146C381.535,468.464,480,370.749,480,250.232C480,129.701,381.535,32,260.062,32\r\n\t\t\tL260.062,32z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M260.062,64c50.249,0,97.478,19.402,132.982,54.632C428.482,153.796,448,200.533,448,250.232\r\n\t\t\tc0,49.694-19.518,96.43-54.956,131.596c-35.507,35.232-82.735,54.637-132.982,54.637c-31.806,0-63.24-8.023-90.906-23.201\r\n\t\t\tl-12.017-6.593l-13.063,4.149l-61.452,19.522l19.375-57.149l4.798-14.151l-7.771-12.763\r\n\t\t\tc-17.593-28.898-26.892-62.111-26.892-96.047c0-49.699,19.518-96.436,54.957-131.601C162.596,83.402,209.819,64,260.062,64\r\n\t\t\t M260.062,32C138.605,32,40.134,129.701,40.134,250.232c0,41.229,11.532,79.791,31.559,112.687L32,480l121.764-38.682\r\n\t\t\tc31.508,17.285,67.745,27.146,106.298,27.146C381.535,468.464,480,370.749,480,250.232C480,129.701,381.535,32,260.062,32\r\n\t\t\tL260.062,32z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.socialWhatsappOutline = socialWhatsappOutline; \ No newline at end of file diff --git a/dist/ionicons/socialWindows.js b/dist/ionicons/socialWindows.js new file mode 100644 index 000000000..b23d46057 --- /dev/null +++ b/dist/ionicons/socialWindows.js @@ -0,0 +1,77 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialWindows = void 0; +var socialWindows = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "style", + "attribs": { + "type": "text/css" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "class": "st0", + "d": "M480,265H232v179l248,36V265L480,265z" + }, + "children": [{ + "name": "path", + "attribs": { + "class": "st0", + "d": "M480,265H232v179l248,36V265L480,265z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "class": "st0", + "d": "M216,265H32v150l184,26.7V265L216,265z" + }, + "children": [{ + "name": "path", + "attribs": { + "class": "st0", + "d": "M216,265H32v150l184,26.7V265L216,265z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "class": "st0", + "d": "M480,32L232,67.4V249h248V32L480,32z" + }, + "children": [{ + "name": "path", + "attribs": { + "class": "st0", + "d": "M480,32L232,67.4V249h248V32L480,32z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "class": "st0", + "d": "M216,69.7L32,96v153h184V69.7L216,69.7z" + }, + "children": [{ + "name": "path", + "attribs": { + "class": "st0", + "d": "M216,69.7L32,96v153h184V69.7L216,69.7z" + }, + "children": [] + }] + }] + }] +}; +exports.socialWindows = socialWindows; \ No newline at end of file diff --git a/dist/ionicons/socialWindowsOutline.js b/dist/ionicons/socialWindowsOutline.js new file mode 100644 index 000000000..fb86c094a --- /dev/null +++ b/dist/ionicons/socialWindowsOutline.js @@ -0,0 +1,77 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialWindowsOutline = void 0; +var socialWindowsOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "style", + "attribs": { + "type": "text/css" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "class": "st0", + "d": "M464,281v180.5l-216-31.3V281H464 M480,265H232v179l248,36V265L480,265z" + }, + "children": [{ + "name": "path", + "attribs": { + "class": "st0", + "d": "M464,281v180.5l-216-31.3V281H464 M480,265H232v179l248,36V265L480,265z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "class": "st0", + "d": "M200,281v142.2L48,401.2V281H200 M216,265H32v150l184,26.7V265L216,265z" + }, + "children": [{ + "name": "path", + "attribs": { + "class": "st0", + "d": "M200,281v142.2L48,401.2V281H200 M216,265H32v150l184,26.7V265L216,265z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "class": "st0", + "d": "M464,50v183H248V81.3l216-30.9 M480,32L232,67.4V249h248V32L480,32z" + }, + "children": [{ + "name": "path", + "attribs": { + "class": "st0", + "d": "M464,50v183H248V81.3l216-30.9 M480,32L232,67.4V249h248V32L480,32z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "class": "st0", + "d": "M200,88v145H48V109.9l152-21.7 M216,69.7L32,96v153h184V69.7L216,69.7z" + }, + "children": [{ + "name": "path", + "attribs": { + "class": "st0", + "d": "M200,88v145H48V109.9l152-21.7 M216,69.7L32,96v153h184V69.7L216,69.7z" + }, + "children": [] + }] + }] + }] +}; +exports.socialWindowsOutline = socialWindowsOutline; \ No newline at end of file diff --git a/dist/ionicons/socialWordpress.js b/dist/ionicons/socialWordpress.js new file mode 100644 index 000000000..9d715ff1a --- /dev/null +++ b/dist/ionicons/socialWordpress.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialWordpress = void 0; +var socialWordpress = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M259,271.3L226.2,367h-0.1l-25.4,73.1c1.8,0.5,3.5,0.9,5.3,1.4c0.1,0,0.2,0,0.3,0c15.8,4.2,32.4,6.5,49.5,6.5\r\n\t\tc8.5,0,16.8-0.5,24.9-1.8c11.2-1.4,22-3.8,32.5-7.1c0,0,0,0,0,0c2.6-0.8,5.2-1.7,7.8-2.6c-2.8-6-8.8-19.3-9.1-19.9L259,271.3z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M259,271.3L226.2,367h-0.1l-25.4,73.1c1.8,0.5,3.5,0.9,5.3,1.4c0.1,0,0.2,0,0.3,0c15.8,4.2,32.4,6.5,49.5,6.5\r\n\t\tc8.5,0,16.8-0.5,24.9-1.8c11.2-1.4,22-3.8,32.5-7.1c0,0,0,0,0,0c2.6-0.8,5.2-1.7,7.8-2.6c-2.8-6-8.8-19.3-9.1-19.9L259,271.3z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M80.8,180.5c-10,22.6-16.8,50.4-16.8,75.5c0,6.3,0.3,12.6,0.9,18.8c6.9,71.2,52.9,131,116.1,157.9c2.6,1.1,5.3,2.2,8,3.2\r\n\t\tL96,180.6C88,180.3,86.5,180.8,80.8,180.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M80.8,180.5c-10,22.6-16.8,50.4-16.8,75.5c0,6.3,0.3,12.6,0.9,18.8c6.9,71.2,52.9,131,116.1,157.9c2.6,1.1,5.3,2.2,8,3.2\r\n\t\tL96,180.6C88,180.3,86.5,180.8,80.8,180.5z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M430.2,175.4c-4.3-9.3-9.4-18.2-15.1-26.6c-1.6-2.4-3.4-4.8-5.1-7.2c-21.5-28.8-50.8-51.4-84.9-64.6\r\n\t\tC303.7,68.6,280.3,64,255.9,64c-60.3,0-114.2,28-149.4,71.7c-6.5,8-12.3,16.6-17.5,25.6c14.2,0.1,31.8,0.1,33.8,0.1\r\n\t\tc18.1,0,46-2.2,46-2.2c9.4-0.6,10.4,13.1,1.1,14.2c0,0-9.4,1.1-19.8,1.6l62.9,187l37.8-113.3L224,175.1c-9.4-0.5-18.1-1.6-18.1-1.6\r\n\t\tc-9.4-0.5-8.2-14.8,1-14.2c0,0,28.5,2.2,45.5,2.2c18.1,0,46-2.2,46-2.2c9.3-0.6,10.5,13.1,1.1,14.2c0,0-9.3,1.1-19.7,1.6\r\n\t\tl62.3,185.6l17.3-57.6c8.7-22.4,13.1-40.9,13.1-55.7c0-21.3-7.7-36.1-14.3-47.6c-8.7-14.3-16.9-26.3-16.9-40.4\r\n\t\tc0-15.9,12-30.7,29-30.7c0.7,0,1.5,0,2.2,0c26.2-0.7,34.8,25.3,35.9,43c0,0,0,0.4,0,0.6c0.4,7.2,0.1,12.5,0.1,18.8\r\n\t\tc0,17.4-3.3,37.1-13.1,61.8l-39,112.8l-22.3,65.7c1.8-0.8,3.5-1.6,5.3-2.5c56.7-27.4,98-82,106.7-146.7c1.3-8.5,1.9-17.2,1.9-26\r\n\t\tC448,227.3,441.6,199.9,430.2,175.4z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M430.2,175.4c-4.3-9.3-9.4-18.2-15.1-26.6c-1.6-2.4-3.4-4.8-5.1-7.2c-21.5-28.8-50.8-51.4-84.9-64.6\r\n\t\tC303.7,68.6,280.3,64,255.9,64c-60.3,0-114.2,28-149.4,71.7c-6.5,8-12.3,16.6-17.5,25.6c14.2,0.1,31.8,0.1,33.8,0.1\r\n\t\tc18.1,0,46-2.2,46-2.2c9.4-0.6,10.4,13.1,1.1,14.2c0,0-9.4,1.1-19.8,1.6l62.9,187l37.8-113.3L224,175.1c-9.4-0.5-18.1-1.6-18.1-1.6\r\n\t\tc-9.4-0.5-8.2-14.8,1-14.2c0,0,28.5,2.2,45.5,2.2c18.1,0,46-2.2,46-2.2c9.3-0.6,10.5,13.1,1.1,14.2c0,0-9.3,1.1-19.7,1.6\r\n\t\tl62.3,185.6l17.3-57.6c8.7-22.4,13.1-40.9,13.1-55.7c0-21.3-7.7-36.1-14.3-47.6c-8.7-14.3-16.9-26.3-16.9-40.4\r\n\t\tc0-15.9,12-30.7,29-30.7c0.7,0,1.5,0,2.2,0c26.2-0.7,34.8,25.3,35.9,43c0,0,0,0.4,0,0.6c0.4,7.2,0.1,12.5,0.1,18.8\r\n\t\tc0,17.4-3.3,37.1-13.1,61.8l-39,112.8l-22.3,65.7c1.8-0.8,3.5-1.6,5.3-2.5c56.7-27.4,98-82,106.7-146.7c1.3-8.5,1.9-17.2,1.9-26\r\n\t\tC448,227.3,441.6,199.9,430.2,175.4z" + }, + "children": [] + }] + }] + }] +}; +exports.socialWordpress = socialWordpress; \ No newline at end of file diff --git a/dist/ionicons/socialWordpressOutline.js b/dist/ionicons/socialWordpressOutline.js new file mode 100644 index 000000000..ab0a6ad8e --- /dev/null +++ b/dist/ionicons/socialWordpressOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialWordpressOutline = void 0; +var socialWordpressOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M255.9,64C150.2,64,64,150.2,64,256.1C64,361.9,150.2,448,255.9,448c8.5,0,16.8-0.5,24.9-1.8\r\n\tc85.7-11,153.8-78.7,165.3-164.1c1.3-8.5,1.9-17.2,1.9-26C448,150.2,361.8,64,255.9,64z M83.4,256.1c0-25,5.4-48.8,15-70.2\r\n\tl82.3,225.5C123.1,383.4,83.4,324.3,83.4,256.1z M278.3,427.3c-7.3,0.9-14.8,1.4-22.4,1.4c-16.9,0-33.2-2.5-48.6-7.1l18.8-55h0.1\r\n\tl32.7-95.5L312,416.5c0.4,0.8,0.9,1.6,1.3,2.3C302.1,422.8,290.4,425.6,278.3,427.3z M279.8,175.1c10.4-0.5,19.7-1.6,19.7-1.6\r\n\tc9.4-1,8.2-14.8-1.1-14.2c0,0-28,2.2-46,2.2c-16.9,0-45.5-2.2-45.5-2.2c-9.2-0.6-10.4,13.7-1,14.2c0,0,8.7,1.1,18.1,1.6l26.9,73.7\r\n\tl-37.8,113.3l-62.9-187c10.5-0.5,19.8-1.6,19.8-1.6c9.2-1,8.2-14.8-1.1-14.2c0,0-27.9,2.2-46,2.2c-3.3,0-7.1-0.1-11.1-0.2\r\n\tc30.8-46.8,83.9-77.7,144.1-77.7c45,0,85.9,17.2,116.6,45.2c-0.8,0-1.5-0.1-2.3-0.1c-17,0-29,14.8-29,30.7\r\n\tc0,14.2,8.2,26.2,16.9,40.4c6.6,11.5,14.3,26.3,14.3,47.6c0,14.8-4.4,33.4-13.1,55.7l-17.3,57.6L279.8,175.1z M342.7,405.3\r\n\tl13.7-39.7l39-112.8c9.9-24.6,13.1-44.3,13.1-61.8c0-6.3-0.4-12.3-1.1-17.8c13.5,24.6,21.2,52.8,21.2,82.9c0,8-0.5,15.8-1.5,23.5\r\n\tC419.7,333.3,387.6,379.2,342.7,405.3z" + }, + "children": [] + }] +}; +exports.socialWordpressOutline = socialWordpressOutline; \ No newline at end of file diff --git a/dist/ionicons/socialYahoo.js b/dist/ionicons/socialYahoo.js new file mode 100644 index 000000000..5b30b3ec0 --- /dev/null +++ b/dist/ionicons/socialYahoo.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialYahoo = void 0; +var socialYahoo = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M384.6,68.4c-11.3,0-22.5-0.8-32.6-4.4l-96,160L160,64c-10.1,3.6-20.7,4.4-32,4.4c-11.1,0-22.1-0.9-32-4.4l128,212.7V448\r\n\tc10-3.5,20.8-4.4,32-4.4s22,0.9,32,4.4V277L416,64C406.1,67.4,395.7,68.4,384.6,68.4z" + }, + "children": [] + }] +}; +exports.socialYahoo = socialYahoo; \ No newline at end of file diff --git a/dist/ionicons/socialYahooOutline.js b/dist/ionicons/socialYahooOutline.js new file mode 100644 index 000000000..224bce71e --- /dev/null +++ b/dist/ionicons/socialYahooOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialYahooOutline = void 0; +var socialYahooOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M384.6,68.4c-11.3,0-22.5-0.8-32.6-4.4l-96,160L160,64c-10.1,3.6-20.7,4.4-32,4.4c-11.1,0-22.1-0.9-32-4.4l128,212.7V448\r\n\tc10-3.5,20.8-4.4,32-4.4s22,0.9,32,4.4V277L416,64C406.1,67.4,395.7,68.4,384.6,68.4z M274.2,268.5l-2.2,4v4.4v151.3\r\n\tc-5-0.6-11.2-0.7-16-0.7c-4.8,0-10,0.1-16,0.7V276.7v-4.4l-2.4-3.8L127,84.4c0.3,0,0.7,0,1,0c7.6,0,16-0.3,24.7-1.9l89.8,149.8\r\n\tl13.4,22.8l14-22.9l89.8-149.9c9,1.6,17.6,1.7,24.8,1.7c0.2,0,0.3,0,0.5,0L274.2,268.5z" + }, + "children": [] + }] +}; +exports.socialYahooOutline = socialYahooOutline; \ No newline at end of file diff --git a/dist/ionicons/socialYen.js b/dist/ionicons/socialYen.js new file mode 100644 index 000000000..6f15d7f3e --- /dev/null +++ b/dist/ionicons/socialYen.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialYen = void 0; +var socialYen = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M448,32h-80L256,253.128L144,32H64l112.368,208H128v48h73.564L216,319v17h-88v48h88v96h80v-96h88v-48h-88v-17l14.891-31H384\r\n\tv-48h-48.289L448,32z" + }, + "children": [] + }] +}; +exports.socialYen = socialYen; \ No newline at end of file diff --git a/dist/ionicons/socialYenOutline.js b/dist/ionicons/socialYenOutline.js new file mode 100644 index 000000000..f0674dde0 --- /dev/null +++ b/dist/ionicons/socialYenOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialYenOutline = void 0; +var socialYenOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M448,32h-80L256,253.128L144,32H64l112.368,208H128v48h73.564L216,319v17h-88v48h88v96h80v-96h88v-48h-88v-17l14.891-31H384\r\n\tv-48h-48.289L448,32z M368,256v16h-67l-21,43v37h88v16h-88v96h-48v-96h-88v-16h88v-35.75L212,272h-68v-16h59.197l-12.752-23.605\r\n\tL90.829,48H134l122,240L378,48h43h0.18l-99.548,184.399L308.891,256H368z" + }, + "children": [] + }] +}; +exports.socialYenOutline = socialYenOutline; \ No newline at end of file diff --git a/dist/ionicons/socialYoutube.js b/dist/ionicons/socialYoutube.js new file mode 100644 index 000000000..191ff42aa --- /dev/null +++ b/dist/ionicons/socialYoutube.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialYoutube = void 0; +var socialYoutube = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M508.6,148.8c0-45-33.1-81.2-74-81.2C379.2,65,322.7,64,265,64c-3,0-6,0-9,0s-6,0-9,0c-57.6,0-114.2,1-169.6,3.6\r\n\t\tc-40.8,0-73.9,36.4-73.9,81.4C1,184.6-0.1,220.2,0,255.8C-0.1,291.4,1,327,3.4,362.7c0,45,33.1,81.5,73.9,81.5\r\n\t\tc58.2,2.7,117.9,3.9,178.6,3.8c60.8,0.2,120.3-1,178.6-3.8c40.9,0,74-36.5,74-81.5c2.4-35.7,3.5-71.3,3.4-107\r\n\t\tC512.1,220.1,511,184.5,508.6,148.8z M207,353.9V157.4l145,98.2L207,353.9z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M508.6,148.8c0-45-33.1-81.2-74-81.2C379.2,65,322.7,64,265,64c-3,0-6,0-9,0s-6,0-9,0c-57.6,0-114.2,1-169.6,3.6\r\n\t\tc-40.8,0-73.9,36.4-73.9,81.4C1,184.6-0.1,220.2,0,255.8C-0.1,291.4,1,327,3.4,362.7c0,45,33.1,81.5,73.9,81.5\r\n\t\tc58.2,2.7,117.9,3.9,178.6,3.8c60.8,0.2,120.3-1,178.6-3.8c40.9,0,74-36.5,74-81.5c2.4-35.7,3.5-71.3,3.4-107\r\n\t\tC512.1,220.1,511,184.5,508.6,148.8z M207,353.9V157.4l145,98.2L207,353.9z" + }, + "children": [] + }] + }] + }] +}; +exports.socialYoutube = socialYoutube; \ No newline at end of file diff --git a/dist/ionicons/socialYoutubeOutline.js b/dist/ionicons/socialYoutubeOutline.js new file mode 100644 index 000000000..c63eceb79 --- /dev/null +++ b/dist/ionicons/socialYoutubeOutline.js @@ -0,0 +1,55 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialYoutubeOutline = void 0; +var socialYoutubeOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M265,96c65.3,0,118.7,1.1,168.1,3.3l0.7,0h0.7c23.1,0,42,22,42,49.1v1.1l0.1,1.1c2.3,34,3.4,69.3,3.4,104.9v0v0\r\n\t\t\tc0.1,35.6-1.1,70.9-3.4,104.9l-0.1,1.1v1.1c0,13.8-4.7,26.6-13.4,36.1c-7.8,8.6-18,13.4-28.6,13.4h-0.8l-0.8,0\r\n\t\t\tc-52.9,2.5-108.8,3.8-166.4,3.8c-3.5,0-7.1,0-10.6,0H256h-0.1c-3.6,0-7.2,0-10.8,0c-57.8,0-113.7-1.3-166.2-3.7l-0.8,0h-0.8\r\n\t\t\tc-10.6,0-20.7-4.8-28.5-13.4c-8.6-9.5-13.4-22.3-13.4-36.1v-1.1l-0.1-1.1c-2.4-34.1-3.5-69.4-3.3-104.7v-0.1v-0.1\r\n\t\t\tc-0.1-35.3,1-70.5,3.3-104.6l0.1-1.1v-1.1c0-27.2,18.8-49.3,41.9-49.3H78l0.7,0c49.5-2.3,102.9-3.3,168.2-3.3h9H265 M265,64\r\n\t\t\tc-3,0-6,0-9,0s-6,0-9,0c-57.6,0-114.2,0.8-169.6,3.3c-40.8,0-73.9,36.3-73.9,81.3C1,184.4-0.1,220,0,255.7\r\n\t\t\tc-0.1,35.7,0.9,71.3,3.4,107c0,45,33.1,81.6,73.9,81.6c54.8,2.6,110.7,3.8,167.8,3.8c3.6,0,7.3,0,10.9,0c3.6,0,7.2,0,10.7,0\r\n\t\t\tc57.1,0,113-1.2,167.9-3.8c40.9,0,74-36.6,74-81.6c2.4-35.7,3.5-71.4,3.4-107.1c0.1-35.7-1-71.3-3.4-107.1c0-45-33.1-81.1-74-81.1\r\n\t\t\tC379.2,64.8,322.7,64,265,64L265,64z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M265,96c65.3,0,118.7,1.1,168.1,3.3l0.7,0h0.7c23.1,0,42,22,42,49.1v1.1l0.1,1.1c2.3,34,3.4,69.3,3.4,104.9v0v0\r\n\t\t\tc0.1,35.6-1.1,70.9-3.4,104.9l-0.1,1.1v1.1c0,13.8-4.7,26.6-13.4,36.1c-7.8,8.6-18,13.4-28.6,13.4h-0.8l-0.8,0\r\n\t\t\tc-52.9,2.5-108.8,3.8-166.4,3.8c-3.5,0-7.1,0-10.6,0H256h-0.1c-3.6,0-7.2,0-10.8,0c-57.8,0-113.7-1.3-166.2-3.7l-0.8,0h-0.8\r\n\t\t\tc-10.6,0-20.7-4.8-28.5-13.4c-8.6-9.5-13.4-22.3-13.4-36.1v-1.1l-0.1-1.1c-2.4-34.1-3.5-69.4-3.3-104.7v-0.1v-0.1\r\n\t\t\tc-0.1-35.3,1-70.5,3.3-104.6l0.1-1.1v-1.1c0-27.2,18.8-49.3,41.9-49.3H78l0.7,0c49.5-2.3,102.9-3.3,168.2-3.3h9H265 M265,64\r\n\t\t\tc-3,0-6,0-9,0s-6,0-9,0c-57.6,0-114.2,0.8-169.6,3.3c-40.8,0-73.9,36.3-73.9,81.3C1,184.4-0.1,220,0,255.7\r\n\t\t\tc-0.1,35.7,0.9,71.3,3.4,107c0,45,33.1,81.6,73.9,81.6c54.8,2.6,110.7,3.8,167.8,3.8c3.6,0,7.3,0,10.9,0c3.6,0,7.2,0,10.7,0\r\n\t\t\tc57.1,0,113-1.2,167.9-3.8c40.9,0,74-36.6,74-81.6c2.4-35.7,3.5-71.4,3.4-107.1c0.1-35.7-1-71.3-3.4-107.1c0-45-33.1-81.1-74-81.1\r\n\t\t\tC379.2,64.8,322.7,64,265,64L265,64z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M207,353.8V157.4l145,98.2L207,353.8z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M207,353.8V157.4l145,98.2L207,353.8z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.socialYoutubeOutline = socialYoutubeOutline; \ No newline at end of file diff --git a/dist/ionicons/soupCan.js b/dist/ionicons/soupCan.js new file mode 100644 index 000000000..500516f3e --- /dev/null +++ b/dist/ionicons/soupCan.js @@ -0,0 +1,69 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.soupCan = void 0; +var soupCan = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "ellipse", + "attribs": { + "cx": "256", + "cy": "80", + "rx": "160", + "ry": "64" + }, + "children": [{ + "name": "ellipse", + "attribs": { + "cx": "256", + "cy": "80", + "rx": "160", + "ry": "64" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,440c88.365,0,152-28.654,152-64V248c0,28.581-41.612,52.783-104.26,61.002C301.238,333.16,280.82,352,256,352\r\n\t\ts-45.238-18.84-47.74-42.998C145.612,300.783,104,276.581,104,248v128C104,411.346,167.634,440,256,440z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,440c88.365,0,152-28.654,152-64V248c0,28.581-41.612,52.783-104.26,61.002C301.238,333.16,280.82,352,256,352\r\n\t\ts-45.238-18.84-47.74-42.998C145.612,300.783,104,276.581,104,248v128C104,411.346,167.634,440,256,440z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,160c-88.366,0-160-28.654-160-64c0,0,0,32.834,8,40v96c0,28.732,42.049,53.042,105.25,61.134\r\n\t\tC214.176,271.861,233.229,256,256,256s41.824,15.861,46.75,37.134C365.951,285.042,408,260.732,408,232v-96c8-8.25,8-40,8-40\r\n\t\tC416,131.346,344.365,160,256,160z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,160c-88.366,0-160-28.654-160-64c0,0,0,32.834,8,40v96c0,28.732,42.049,53.042,105.25,61.134\r\n\t\tC214.176,271.861,233.229,256,256,256s41.824,15.861,46.75,37.134C365.951,285.042,408,260.732,408,232v-96c8-8.25,8-40,8-40\r\n\t\tC416,131.346,344.365,160,256,160z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M408,392c0,35.346-63.635,64-152,64c-88.366,0-152-28.654-152-64v23.999L96,432c0,6.994,2.815,13.725,8,20.025\r\n\t\tC125.016,477.562,185.121,496,256,496c70.879,0,130.984-18.438,152-43.975c5.186-6.301,8-13.031,8-20.025l-8-16.001V392z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M408,392c0,35.346-63.635,64-152,64c-88.366,0-152-28.654-152-64v23.999L96,432c0,6.994,2.815,13.725,8,20.025\r\n\t\tC125.016,477.562,185.121,496,256,496c70.879,0,130.984-18.438,152-43.975c5.186-6.301,8-13.031,8-20.025l-8-16.001V392z" + }, + "children": [] + }] + }] + }] +}; +exports.soupCan = soupCan; \ No newline at end of file diff --git a/dist/ionicons/soupCanOutline.js b/dist/ionicons/soupCanOutline.js new file mode 100644 index 000000000..02e779d1b --- /dev/null +++ b/dist/ionicons/soupCanOutline.js @@ -0,0 +1,83 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.soupCanOutline = void 0; +var soupCanOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M255.82,144c88.269,0,159.824-28.654,159.824-64S344.089,16,255.82,16C167.552,16,95.997,44.654,95.997,80\r\n\t\tS167.552,144,255.82,144z M255.82,33.041c69.729,0,126.26,19.234,126.26,42.959s-56.531,42.959-126.26,42.959\r\n\t\tc-69.729,0-126.258-19.234-126.258-42.959S186.091,33.041,255.82,33.041z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M255.82,144c88.269,0,159.824-28.654,159.824-64S344.089,16,255.82,16C167.552,16,95.997,44.654,95.997,80\r\n\t\tS167.552,144,255.82,144z M255.82,33.041c69.729,0,126.26,19.234,126.26,42.959s-56.531,42.959-126.26,42.959\r\n\t\tc-69.729,0-126.258-19.234-126.258-42.959S186.091,33.041,255.82,33.041z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256.57,160c-88.269,0-160.567-28.654-160.567-64c0,0-0.003,33.999,7.997,40v240c0,35.346,63.732,64,152,64\r\n\t\tc88.269,0,152-28.654,152-64V136c8-7.438,7.708-34.853,7.817-40C414.665,130.946,344.116,160,256.57,160z M376,375.588\r\n\t\tc0,2.232-7.961,10.682-29.423,18.688C322.853,403.126,290.812,408,256.273,408c-34.539,0-66.83-4.874-90.554-13.725\r\n\t\tC144.257,386.27,137,377.82,136,375.588v-79.564c18,9.721,42.742,17.115,72.156,20.979l1.588,0.237\r\n\t\tC215.487,337.308,233.936,352,255.826,352c21.89,0,40.338-14.689,46.084-34.754l1.755-0.244\r\n\t\tC333.08,313.139,358,305.744,376,296.023V375.588z M376,264.023c-18,9.831-43.476,17.284-73.325,21.11l-2.61,0.195\r\n\t\tC292.791,268.097,275.723,256,255.859,256c-19.867,0-36.919,12.102-44.19,29.34l-2.514-0.206\r\n\t\tc-29.85-3.826-55.155-11.279-73.155-21.11v-91.265C170,185.25,211.923,192,256.499,192C300.665,192,343,185.287,376,173.045\r\n\t\tV264.023z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256.57,160c-88.269,0-160.567-28.654-160.567-64c0,0-0.003,33.999,7.997,40v240c0,35.346,63.732,64,152,64\r\n\t\tc88.269,0,152-28.654,152-64V136c8-7.438,7.708-34.853,7.817-40C414.665,130.946,344.116,160,256.57,160z M376,375.588\r\n\t\tc0,2.232-7.961,10.682-29.423,18.688C322.853,403.126,290.812,408,256.273,408c-34.539,0-66.83-4.874-90.554-13.725\r\n\t\tC144.257,386.27,137,377.82,136,375.588v-79.564c18,9.721,42.742,17.115,72.156,20.979l1.588,0.237\r\n\t\tC215.487,337.308,233.936,352,255.826,352c21.89,0,40.338-14.689,46.084-34.754l1.755-0.244\r\n\t\tC333.08,313.139,358,305.744,376,296.023V375.588z M376,264.023c-18,9.831-43.476,17.284-73.325,21.11l-2.61,0.195\r\n\t\tC292.791,268.097,275.723,256,255.859,256c-19.867,0-36.919,12.102-44.19,29.34l-2.514-0.206\r\n\t\tc-29.85-3.826-55.155-11.279-73.155-21.11v-91.265C170,185.25,211.923,192,256.499,192C300.665,192,343,185.287,376,173.045\r\n\t\tV264.023z" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M274.002,463.58" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M274.002,463.58" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256.272,464c0.293,0,0.583-0.006,0.876-0.007c-0.351,0.001-0.699,0.005-1.051,0.005\r\n\t\t\tC256.156,463.998,256.214,464,256.272,464z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256.272,464c0.293,0,0.583-0.006,0.876-0.007c-0.351,0.001-0.699,0.005-1.051,0.005\r\n\t\t\tC256.156,463.998,256.214,464,256.272,464z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M408,415.999V400c0,36.001-63.432,64-152,64c-88.569,0-152-28.654-152-64v15.999L96.261,432\r\n\t\t\tc0,6.994,2.938,13.725,8.117,20.025C125.37,477.562,185.471,496,256.273,496c70.801,0,130.87-18.438,151.863-43.975\r\n\t\t\tc5.18-6.301,7.923-13.031,7.923-20.025L408,415.999z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M408,415.999V400c0,36.001-63.432,64-152,64c-88.569,0-152-28.654-152-64v15.999L96.261,432\r\n\t\t\tc0,6.994,2.938,13.725,8.117,20.025C125.37,477.562,185.471,496,256.273,496c70.801,0,130.87-18.438,151.863-43.975\r\n\t\t\tc5.18-6.301,7.923-13.031,7.923-20.025L408,415.999z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.soupCanOutline = soupCanOutline; \ No newline at end of file diff --git a/dist/ionicons/speakerphone.js b/dist/ionicons/speakerphone.js new file mode 100644 index 000000000..d1453f722 --- /dev/null +++ b/dist/ionicons/speakerphone.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.speakerphone = void 0; +var speakerphone = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M70.9,181.5c0-41,25-76.5,60.6-91.5h-7.7c-41.1,0-75.1,32.8-81.1,75.2c-6,1-10.7,7.9-10.7,16.1c0,8.6,5.1,15.4,11.6,15.9\r\n\t\tc7.2,36.4,35.1,65.8,69.7,68.8c0,0,0.1,0,0.1,0c1.4,0,2.8,0.6,4.2,0.9c1.1,0.2,2.2,0.4,3.3,0.7C91,250.5,70.9,218.4,70.9,181.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M70.9,181.5c0-41,25-76.5,60.6-91.5h-7.7c-41.1,0-75.1,32.8-81.1,75.2c-6,1-10.7,7.9-10.7,16.1c0,8.6,5.1,15.4,11.6,15.9\r\n\t\tc7.2,36.4,35.1,65.8,69.7,68.8c0,0,0.1,0,0.1,0c1.4,0,2.8,0.6,4.2,0.9c1.1,0.2,2.2,0.4,3.3,0.7C91,250.5,70.9,218.4,70.9,181.5z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M465.1,91c-1.1-2.9-2.3-5.6-3.5-8.3c-6.5-14.4-14.4-26-23.4-34.6C427,37.6,414.1,32,400.8,32c-8.3,0-16.4,2.2-24.1,6.4\r\n\t\tc0,0,0,0-0.1,0c-1.2,0.7-2.4,1.3-3.6,2c-49,29-104.1,46.2-162.6,49.4c-6.5,0.4-13,0.2-19.5,0.2h-42.3c-34,15-59,50.5-59,91.5\r\n\t\tc0,36.8,19.2,69.1,47.8,86.1c13,10.9,41.7,11.7,40,23.9c-1.9,13.2-5.5,21.9-7.8,30.7c-1.3,4.8-23.6,72.9-25.3,144.7\r\n\t\tc0,2,0,3.7,0.2,6.6c0.2,2.9,2.2,6.4,8.5,6.4h76.8c6.6,0,9.7-3.3,9.3-9.3c-0.2-1.9-0.6-4.3-0.8-6.5c-2.4-23.1-4.6-49.8-3.3-81.6\r\n\t\tc1.3-34,5.2-51.9,7-61.3c2.1-10.4,7.6-22.4,12.1-30.3c30.8,0.9,92.9,19.3,115.1,28.9c0,0,7.2,3.4,10.1,5.2c7,3.4,14.2,5.1,21.6,5.1\r\n\t\tc0.9,0,1.8,0,2.7-0.1c12.3-0.7,24.2-9.7,34.7-19.5c9.1-8.5,16.9-20.2,23.4-34.6c1.2-2.8,2.4-5.6,3.5-8.6\r\n\t\tc9.6-25,14.8-55.9,14.8-88.1C480,147,474.8,116,465.1,91z M442,267.5c-7.8,18.5-18.2,33.3-29.5,33.3c-11.3,0-21.6-14.7-29.4-33.3\r\n\t\tc-9.1-21.6-14.9-53.1-14.9-88.1c0-35.2,5.8-66.8,15-88.4c7.8-18.4,18.1-29.5,29.3-29.5c11.3,0,21.5,11.2,29.4,29.5\r\n\t\tc9.2,21.6,15,53.2,15,88.4C456.9,214.4,451.1,245.9,442,267.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M465.1,91c-1.1-2.9-2.3-5.6-3.5-8.3c-6.5-14.4-14.4-26-23.4-34.6C427,37.6,414.1,32,400.8,32c-8.3,0-16.4,2.2-24.1,6.4\r\n\t\tc0,0,0,0-0.1,0c-1.2,0.7-2.4,1.3-3.6,2c-49,29-104.1,46.2-162.6,49.4c-6.5,0.4-13,0.2-19.5,0.2h-42.3c-34,15-59,50.5-59,91.5\r\n\t\tc0,36.8,19.2,69.1,47.8,86.1c13,10.9,41.7,11.7,40,23.9c-1.9,13.2-5.5,21.9-7.8,30.7c-1.3,4.8-23.6,72.9-25.3,144.7\r\n\t\tc0,2,0,3.7,0.2,6.6c0.2,2.9,2.2,6.4,8.5,6.4h76.8c6.6,0,9.7-3.3,9.3-9.3c-0.2-1.9-0.6-4.3-0.8-6.5c-2.4-23.1-4.6-49.8-3.3-81.6\r\n\t\tc1.3-34,5.2-51.9,7-61.3c2.1-10.4,7.6-22.4,12.1-30.3c30.8,0.9,92.9,19.3,115.1,28.9c0,0,7.2,3.4,10.1,5.2c7,3.4,14.2,5.1,21.6,5.1\r\n\t\tc0.9,0,1.8,0,2.7-0.1c12.3-0.7,24.2-9.7,34.7-19.5c9.1-8.5,16.9-20.2,23.4-34.6c1.2-2.8,2.4-5.6,3.5-8.6\r\n\t\tc9.6-25,14.8-55.9,14.8-88.1C480,147,474.8,116,465.1,91z M442,267.5c-7.8,18.5-18.2,33.3-29.5,33.3c-11.3,0-21.6-14.7-29.4-33.3\r\n\t\tc-9.1-21.6-14.9-53.1-14.9-88.1c0-35.2,5.8-66.8,15-88.4c7.8-18.4,18.1-29.5,29.3-29.5c11.3,0,21.5,11.2,29.4,29.5\r\n\t\tc9.2,21.6,15,53.2,15,88.4C456.9,214.4,451.1,245.9,442,267.5z" + }, + "children": [] + }] + }] + }] +}; +exports.speakerphone = speakerphone; \ No newline at end of file diff --git a/dist/ionicons/speedometer.js b/dist/ionicons/speedometer.js new file mode 100644 index 000000000..10bd53229 --- /dev/null +++ b/dist/ionicons/speedometer.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.speedometer = void 0; +var speedometer = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M344,256l-84.4,64.2c-1.2-0.1-2.4-0.2-3.6-0.2c-17.7,0-32,14.3-32,32c0,17.7,14.3,32,32,32c17.7,0,32-14.3,32-32\r\n\t\tc0-1.2-0.1-2.4-0.2-3.6L352,264L344,256z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M344,256l-84.4,64.2c-1.2-0.1-2.4-0.2-3.6-0.2c-17.7,0-32,14.3-32,32c0,17.7,14.3,32,32,32c17.7,0,32-14.3,32-32\r\n\t\tc0-1.2-0.1-2.4-0.2-3.6L352,264L344,256z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,96C132.3,96,32,196.3,32,320c0,34.4,7.8,66.9,21.6,96h36.1c-15.4-26.6-24.2-56.6-25.5-88H96v-16H64.2\r\n\t\tc1.2-28.8,8.7-56.5,21.8-81.4l27.5,15.9l8-13.9L94,216.8c7.4-11.6,16.2-22.6,26.2-32.6c10.2-10.1,21.3-19,33.1-26.5l15.8,27.3\r\n\t\tl13.9-8l-15.8-27.3c24.8-13,52.2-20.3,80.8-21.5V160h16v-31.8c28.6,1.2,56,8.6,80.8,21.5L329.1,177l13.9,8l15.8-27.3\r\n\t\tc11.8,7.5,22.9,16.4,33.1,26.5c10,10,18.7,20.9,26.2,32.6l-27.4,15.8l8,13.9l27.5-15.9c13.1,24.9,20.6,52.6,21.8,81.4H416v16h31.8\r\n\t\tc-1.3,31.4-10.1,61.4-25.5,88h36.1c13.8-29.1,21.6-61.6,21.6-96C480,196.3,379.7,96,256,96z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,96C132.3,96,32,196.3,32,320c0,34.4,7.8,66.9,21.6,96h36.1c-15.4-26.6-24.2-56.6-25.5-88H96v-16H64.2\r\n\t\tc1.2-28.8,8.7-56.5,21.8-81.4l27.5,15.9l8-13.9L94,216.8c7.4-11.6,16.2-22.6,26.2-32.6c10.2-10.1,21.3-19,33.1-26.5l15.8,27.3\r\n\t\tl13.9-8l-15.8-27.3c24.8-13,52.2-20.3,80.8-21.5V160h16v-31.8c28.6,1.2,56,8.6,80.8,21.5L329.1,177l13.9,8l15.8-27.3\r\n\t\tc11.8,7.5,22.9,16.4,33.1,26.5c10,10,18.7,20.9,26.2,32.6l-27.4,15.8l8,13.9l27.5-15.9c13.1,24.9,20.6,52.6,21.8,81.4H416v16h31.8\r\n\t\tc-1.3,31.4-10.1,61.4-25.5,88h36.1c13.8-29.1,21.6-61.6,21.6-96C480,196.3,379.7,96,256,96z" + }, + "children": [] + }] + }] + }] +}; +exports.speedometer = speedometer; \ No newline at end of file diff --git a/dist/ionicons/spoon.js b/dist/ionicons/spoon.js new file mode 100644 index 000000000..c745eeb3c --- /dev/null +++ b/dist/ionicons/spoon.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.spoon = void 0; +var spoon = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M320,160C320,96,293.5,32,256,32s-64,64-64,128l0,0c0.9,25,15.7,54.3,36.6,64.3c0.5,0.2,0.9,0.4,1.4,0.6c0,0,0,0,0.1,0\r\n\tc3.4,1.9,9.8,5.5,9.8,9.7c0,0-16,198.7-16,210.1s5,20.5,10.5,26c5.5,5.5,13.1,9.2,21.3,9.2c0.1,0,0.1,0,0.2,0c0.1,0,0.1,0,0.2,0\r\n\tc8.2,0,15.8-3.7,21.4-9.2c5.5-5.5,10.3-12.9,10.3-26s-16-210.1-16-210.1c0-4.2,6.4-7.9,9.8-9.8l1.7-0.9C304.9,214,320,186,320,160" + }, + "children": [] + }] +}; +exports.spoon = spoon; \ No newline at end of file diff --git a/dist/ionicons/star.js b/dist/ionicons/star.js new file mode 100644 index 000000000..c80c59ca8 --- /dev/null +++ b/dist/ionicons/star.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.star = void 0; +var star = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "polygon", + "attribs": { + "points": "480,200 308.519,200 256.029,32 203.519,200 32,200 170.946,304.209 116,480 256,368 396,480 341.073,304.195 " + }, + "children": [] + }] +}; +exports.star = star; \ No newline at end of file diff --git a/dist/ionicons/statsBars.js b/dist/ionicons/statsBars.js new file mode 100644 index 000000000..50e2e08fc --- /dev/null +++ b/dist/ionicons/statsBars.js @@ -0,0 +1,87 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.statsBars = void 0; +var statsBars = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "176", + "y": "96", + "width": "64", + "height": "320" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "176", + "y": "96", + "width": "64", + "height": "320" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "80", + "y": "320", + "width": "64", + "height": "96" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "80", + "y": "320", + "width": "64", + "height": "96" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "272", + "y": "256", + "width": "64", + "height": "160" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "272", + "y": "256", + "width": "64", + "height": "160" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "368", + "y": "192", + "width": "64", + "height": "224" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "368", + "y": "192", + "width": "64", + "height": "224" + }, + "children": [] + }] + }] + }] +}; +exports.statsBars = statsBars; \ No newline at end of file diff --git a/dist/ionicons/steam.js b/dist/ionicons/steam.js new file mode 100644 index 000000000..b5f4a6a0b --- /dev/null +++ b/dist/ionicons/steam.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.steam = void 0; +var steam = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "style", + "attribs": { + "type": "text/css" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "id": "Gears", + "class": "st0", + "d": "M480,208.2c0,20.5-16.6,37.2-37.2,37.2c-20.5,0-37.2-16.6-37.2-37.2c0-20.5,16.6-37.2,37.2-37.2\r\n\tC463.3,171,480,187.7,480,208.2z M442.6,139c-38.1,0-69,30.7-69.4,68.7L330,269.7c-1.8-0.2-3.6-0.3-5.4-0.3\r\n\tc-9.7,0-18.7,2.7-26.4,7.3l-195.8-78.7c-5.1-23.2-25.9-40.7-50.6-40.7C23.3,157.2,0,180.6,0,209.1c0,28.5,23.3,51.8,51.8,51.8\r\n\tc9.7,0,18.7-2.7,26.4-7.3L274,332.2c5.1,23.3,25.8,40.8,50.6,40.8c26.8,0,49-20.6,51.5-46.7l66.5-48.6c38.3,0,69.4-31,69.4-69.3\r\n\tC512,170.1,480.9,139,442.6,139z M442.6,161.9c25.7,0,46.5,20.9,46.5,46.5c0,25.7-20.9,46.4-46.5,46.4c-25.7,0-46.5-20.8-46.5-46.4\r\n\tC396.1,182.7,416.9,161.9,442.6,161.9z M51.8,170.9c14.6,0,27.3,8.2,33.7,20.2l-18.9-7.6v0.1c-15.3-5.5-32.2,2-38.3,17.1\r\n\tc-6.1,15.2,0.9,32.3,15.7,38.9v0.1l16.1,6.4c-2.6,0.6-5.4,0.9-8.2,0.9c-21.1,0-38.1-17-38.1-38.1C13.7,188,30.7,170.9,51.8,170.9z\r\n\t M324.6,283.1c21.1,0,38.1,17,38.1,38.1c0,21.1-17,38.1-38.1,38.1c-14.7,0-27.4-8.2-33.7-20.3c6.3,2.5,12.5,5,18.8,7.6\r\n\tc15.5,6.2,33.2-1.3,39.4-16.8c6.2-15.5-1.3-33.1-16.9-39.4l-15.9-6.4C319.1,283.5,321.8,283.1,324.6,283.1z" + }, + "children": [] + }] +}; +exports.steam = steam; \ No newline at end of file diff --git a/dist/ionicons/stop.js b/dist/ionicons/stop.js new file mode 100644 index 000000000..aea4b1243 --- /dev/null +++ b/dist/ionicons/stop.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.stop = void 0; +var stop = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M437.4,64H74.6C68.7,64,64,68.7,64,74.6v362.8c0,5.9,4.7,10.6,10.6,10.6h362.8c5.8,0,10.6-4.7,10.6-10.6V74.6\r\n\tC448,68.7,443.2,64,437.4,64z" + }, + "children": [] + }] +}; +exports.stop = stop; \ No newline at end of file diff --git a/dist/ionicons/thermometer.js b/dist/ionicons/thermometer.js new file mode 100644 index 000000000..2e295e68c --- /dev/null +++ b/dist/ionicons/thermometer.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.thermometer = void 0; +var thermometer = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M303,335.6V78.4c0-25.7-21-46.5-47-46.5c-26,0-47,20.8-47,46.5v256.8c-20,14.5-32.9,38.2-32.9,64.9c0,44.2,36,80,80.2,80\r\n\t\tc44.2,0,79.8-35.8,79.8-80C336,373.6,323,350.1,303,335.6z M241,78.4c0-8,6.7-14.5,15-14.5s15,6.5,15,14.5V128h-30V78.4z M272,288\r\n\t\th-16v-16h16V288z M272,256h-16v-64h16V256z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M303,335.6V78.4c0-25.7-21-46.5-47-46.5c-26,0-47,20.8-47,46.5v256.8c-20,14.5-32.9,38.2-32.9,64.9c0,44.2,36,80,80.2,80\r\n\t\tc44.2,0,79.8-35.8,79.8-80C336,373.6,323,350.1,303,335.6z M241,78.4c0-8,6.7-14.5,15-14.5s15,6.5,15,14.5V128h-30V78.4z M272,288\r\n\t\th-16v-16h16V288z M272,256h-16v-64h16V256z" + }, + "children": [] + }] + }] + }] +}; +exports.thermometer = thermometer; \ No newline at end of file diff --git a/dist/ionicons/thumbsdown.js b/dist/ionicons/thumbsdown.js new file mode 100644 index 000000000..c1afbfb95 --- /dev/null +++ b/dist/ionicons/thumbsdown.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.thumbsdown = void 0; +var thumbsdown = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M87.8,252.7C74,257.2,64,270.2,64,285.5c0,19,15.4,34.5,34.5,34.5h102.6c-2,25-10,53.6-1.1,87.3\r\n\t\tc7.5,28.4,39.4,49.7,52.4,36.8c5-4.9,3.5-15.2,3.5-33.8c0-42.8,17.8-86.1,39.8-108.7c9.4-9.7,25.2-13,40.2-13.6v16h112V64H336v32\r\n\t\tc-20.6,0.5-52.6-5.2-75.8-6.6c-52-3.1-102,2.4-126.3,8.1c-24.3,5.7-35,13-35,30.6c0,6.4,1.9,12.3,5.1,17.3\r\n\t\tc-11.8,4.7-20.1,16.2-20.1,29.7c0,7.2,2.4,13.8,6.4,19.2c-11.9,4.6-20.4,16.2-20.4,29.8C70,236.6,77.3,247.5,87.8,252.7z M400,96.3\r\n\t\tc8.8,0,16,7.1,16,16c0,8.8-7.2,16-16,16s-16-7.1-16-16C384,103.5,391.2,96.3,400,96.3z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M87.8,252.7C74,257.2,64,270.2,64,285.5c0,19,15.4,34.5,34.5,34.5h102.6c-2,25-10,53.6-1.1,87.3\r\n\t\tc7.5,28.4,39.4,49.7,52.4,36.8c5-4.9,3.5-15.2,3.5-33.8c0-42.8,17.8-86.1,39.8-108.7c9.4-9.7,25.2-13,40.2-13.6v16h112V64H336v32\r\n\t\tc-20.6,0.5-52.6-5.2-75.8-6.6c-52-3.1-102,2.4-126.3,8.1c-24.3,5.7-35,13-35,30.6c0,6.4,1.9,12.3,5.1,17.3\r\n\t\tc-11.8,4.7-20.1,16.2-20.1,29.7c0,7.2,2.4,13.8,6.4,19.2c-11.9,4.6-20.4,16.2-20.4,29.8C70,236.6,77.3,247.5,87.8,252.7z M400,96.3\r\n\t\tc8.8,0,16,7.1,16,16c0,8.8-7.2,16-16,16s-16-7.1-16-16C384,103.5,391.2,96.3,400,96.3z" + }, + "children": [] + }] + }] + }] +}; +exports.thumbsdown = thumbsdown; \ No newline at end of file diff --git a/dist/ionicons/thumbsup.js b/dist/ionicons/thumbsup.js new file mode 100644 index 000000000..4f1b6e619 --- /dev/null +++ b/dist/ionicons/thumbsup.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.thumbsup = void 0; +var thumbsup = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M424.2,259.3c13.8-4.5,23.8-17.5,23.8-32.8c0-19-15.4-34.5-34.5-34.5H310.9c2-25,10-53.6,1.1-87.3\r\n\t\tc-7.5-28.4-39.4-49.7-52.4-36.8c-5,4.9-3.5,15.2-3.5,33.8c0,42.8-17.8,86.1-39.8,108.7c-9.4,9.7-25.2,13-40.2,13.6v-16H64v240h112\r\n\t\tv-32c20.6-0.5,52.6,5.2,75.8,6.6c52,3.1,102-2.4,126.3-8.1c24.3-5.7,35-13,35-30.6c0-6.4-1.9-12.3-5.1-17.3\r\n\t\tc11.8-4.7,20.1-16.2,20.1-29.7c0-7.2-2.4-13.8-6.4-19.2c11.9-4.6,20.4-16.2,20.4-29.8C442,275.4,434.7,264.5,424.2,259.3z\r\n\t\t M112,415.7c-8.8,0-16-7.1-16-16c0-8.8,7.2-16,16-16s16,7.1,16,16C128,408.5,120.8,415.7,112,415.7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M424.2,259.3c13.8-4.5,23.8-17.5,23.8-32.8c0-19-15.4-34.5-34.5-34.5H310.9c2-25,10-53.6,1.1-87.3\r\n\t\tc-7.5-28.4-39.4-49.7-52.4-36.8c-5,4.9-3.5,15.2-3.5,33.8c0,42.8-17.8,86.1-39.8,108.7c-9.4,9.7-25.2,13-40.2,13.6v-16H64v240h112\r\n\t\tv-32c20.6-0.5,52.6,5.2,75.8,6.6c52,3.1,102-2.4,126.3-8.1c24.3-5.7,35-13,35-30.6c0-6.4-1.9-12.3-5.1-17.3\r\n\t\tc11.8-4.7,20.1-16.2,20.1-29.7c0-7.2-2.4-13.8-6.4-19.2c11.9-4.6,20.4-16.2,20.4-29.8C442,275.4,434.7,264.5,424.2,259.3z\r\n\t\t M112,415.7c-8.8,0-16-7.1-16-16c0-8.8,7.2-16,16-16s16,7.1,16,16C128,408.5,120.8,415.7,112,415.7z" + }, + "children": [] + }] + }] + }] +}; +exports.thumbsup = thumbsup; \ No newline at end of file diff --git a/dist/ionicons/toggle.js b/dist/ionicons/toggle.js new file mode 100644 index 000000000..3f61c8f10 --- /dev/null +++ b/dist/ionicons/toggle.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.toggle = void 0; +var toggle = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M352,160c52.934,0,96,43.065,96,96s-43.066,96-96,96H160c-52.935,0-96-43.065-96-96s43.065-96,96-96H352 M352,128H160\r\n\t\tc-70.692,0-128,57.308-128,128s57.308,128,128,128h192c70.692,0,128-57.308,128-128S422.692,128,352,128L352,128z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M352,160c52.934,0,96,43.065,96,96s-43.066,96-96,96H160c-52.935,0-96-43.065-96-96s43.065-96,96-96H352 M352,128H160\r\n\t\tc-70.692,0-128,57.308-128,128s57.308,128,128,128h192c70.692,0,128-57.308,128-128S422.692,128,352,128L352,128z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M160,208c26.467,0,48,21.533,48,48c0,26.467-21.533,48-48,48s-48-21.533-48-48C112,229.533,133.533,208,160,208 M160,176\r\n\t\tc-44.183,0-80,35.817-80,80s35.817,80,80,80s80-35.817,80-80S204.183,176,160,176L160,176z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M160,208c26.467,0,48,21.533,48,48c0,26.467-21.533,48-48,48s-48-21.533-48-48C112,229.533,133.533,208,160,208 M160,176\r\n\t\tc-44.183,0-80,35.817-80,80s35.817,80,80,80s80-35.817,80-80S204.183,176,160,176L160,176z" + }, + "children": [] + }] + }] + }] +}; +exports.toggle = toggle; \ No newline at end of file diff --git a/dist/ionicons/toggleFilled.js b/dist/ionicons/toggleFilled.js new file mode 100644 index 000000000..06cbd7fb8 --- /dev/null +++ b/dist/ionicons/toggleFilled.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.toggleFilled = void 0; +var toggleFilled = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M352,208c-26.467,0-48,21.533-48,48c0,26.467,21.533,48,48,48s48-21.533,48-48C400,229.533,378.467,208,352,208z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M352,208c-26.467,0-48,21.533-48,48c0,26.467,21.533,48,48,48s48-21.533,48-48C400,229.533,378.467,208,352,208z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M352,128H160c-70.692,0-128,57.308-128,128s57.308,128,128,128h192c70.692,0,128-57.308,128-128S422.692,128,352,128z\r\n\t\t M352,336c-44.183,0-80-35.817-80-80s35.817-80,80-80s80,35.817,80,80S396.183,336,352,336z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M352,128H160c-70.692,0-128,57.308-128,128s57.308,128,128,128h192c70.692,0,128-57.308,128-128S422.692,128,352,128z\r\n\t\t M352,336c-44.183,0-80-35.817-80-80s35.817-80,80-80s80,35.817,80,80S396.183,336,352,336z" + }, + "children": [] + }] + }] + }] +}; +exports.toggleFilled = toggleFilled; \ No newline at end of file diff --git a/dist/ionicons/transgender.js b/dist/ionicons/transgender.js new file mode 100644 index 000000000..35643ec6d --- /dev/null +++ b/dist/ionicons/transgender.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.transgender = void 0; +var transgender = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M368,0v40h69.873l-93.046,91.97c-8.529-8.249-15.132-12.586-15.132-12.586C308.841,104.694,283.422,96,256,96\r\n\tc-34.525,0-65.86,13.669-88.903,35.894l-17.333-17.131l35.833-35.833L153.07,46.403l-36.022,36.021L74.127,40H144V0H0v144h40V67.806\r\n\tl46.085,45.582L50.402,149.07l32.526,32.526l35.862-35.861l22.185,21.942c-8.395,17.065-13.118,36.267-13.118,56.578\r\n\tC127.857,286.884,173,338.989,232,350.25V402h-72v46h72v64h48v-64h72v-46h-72v-51.75c58-11.261,104.222-63.397,104.222-126.025\r\n\tc0-20.202-4.794-39.738-13.094-56.649L472,67.806V144h40V0H368z M255.929,304.402c-44.156,0-80.079-35.968-80.079-80.178\r\n\tc0-44.211,35.923-80.18,80.079-80.18c44.155,0,80.078,35.969,80.078,80.18C336.007,268.435,300.084,304.402,255.929,304.402z" + }, + "children": [] + }] +}; +exports.transgender = transgender; \ No newline at end of file diff --git a/dist/ionicons/trashA.js b/dist/ionicons/trashA.js new file mode 100644 index 000000000..cf6d448ba --- /dev/null +++ b/dist/ionicons/trashA.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.trashA = void 0; +var trashA = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M341,128V99c0-19.1-14.5-35-34.5-35H205.4C185.5,64,171,79.9,171,99v29H80v32h9.2c0,0,5.4,0.6,8.2,3.4c2.8,2.8,3.9,9,3.9,9\r\n\tl19,241.7c1.5,29.4,1.5,33.9,36,33.9h199.4c34.5,0,34.5-4.4,36-33.8l19-241.6c0,0,1.1-6.3,3.9-9.1c2.8-2.8,8.2-3.4,8.2-3.4h9.2v-32\r\n\th-91V128z M192,99c0-9.6,7.8-15,17.7-15h91.7c9.9,0,18.6,5.5,18.6,15v29H192V99z M183.5,384l-10.3-192h20.3L204,384H183.5z\r\n\t M267.1,384h-22V192h22V384z M328.7,384h-20.4l10.5-192h20.3L328.7,384z" + }, + "children": [] + }] +}; +exports.trashA = trashA; \ No newline at end of file diff --git a/dist/ionicons/trashB.js b/dist/ionicons/trashB.js new file mode 100644 index 000000000..a3f1df136 --- /dev/null +++ b/dist/ionicons/trashB.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.trashB = void 0; +var trashB = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M413.7,133.4c-2.4-9-4-14-4-14c-2.6-9.3-9.2-9.3-19-10.9l-53.1-6.7c-6.6-1.1-6.6-1.1-9.2-6.8c-8.7-19.6-11.4-31-20.9-31\r\n\t\th-103c-9.5,0-12.1,11.4-20.8,31.1c-2.6,5.6-2.6,5.6-9.2,6.8l-53.2,6.7c-9.7,1.6-16.7,2.5-19.3,11.8c0,0-1.2,4.1-3.7,13\r\n\t\tc-3.2,11.9-4.5,10.6,6.5,10.6h302.4C418.2,144.1,417,145.3,413.7,133.4z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M413.7,133.4c-2.4-9-4-14-4-14c-2.6-9.3-9.2-9.3-19-10.9l-53.1-6.7c-6.6-1.1-6.6-1.1-9.2-6.8c-8.7-19.6-11.4-31-20.9-31\r\n\t\th-103c-9.5,0-12.1,11.4-20.8,31.1c-2.6,5.6-2.6,5.6-9.2,6.8l-53.2,6.7c-9.7,1.6-16.7,2.5-19.3,11.8c0,0-1.2,4.1-3.7,13\r\n\t\tc-3.2,11.9-4.5,10.6,6.5,10.6h302.4C418.2,144.1,417,145.3,413.7,133.4z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M379.4,176H132.6c-16.6,0-17.4,2.2-16.4,14.7l18.7,242.6c1.6,12.3,2.8,14.8,17.5,14.8h207.2c14.7,0,15.9-2.5,17.5-14.8\r\n\t\tl18.7-242.6C396.8,178.1,396,176,379.4,176z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M379.4,176H132.6c-16.6,0-17.4,2.2-16.4,14.7l18.7,242.6c1.6,12.3,2.8,14.8,17.5,14.8h207.2c14.7,0,15.9-2.5,17.5-14.8\r\n\t\tl18.7-242.6C396.8,178.1,396,176,379.4,176z" + }, + "children": [] + }] + }] + }] +}; +exports.trashB = trashB; \ No newline at end of file diff --git a/dist/ionicons/trophy.js b/dist/ionicons/trophy.js new file mode 100644 index 000000000..9ab0a275f --- /dev/null +++ b/dist/ionicons/trophy.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.trophy = void 0; +var trophy = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M479.863,103.342c-0.051-2.833-0.096-5.279-0.096-7.342h-80.835c1.56-34.617,0.512-64,0.512-64s-95.591,0-142.568,0\r\n\tc-0.337,0-0.669,0.022-1,0.056c-0.33-0.034-0.662-0.056-1-0.056c-46.977,0-142.931,0-142.931,0s-1.048,29.383,0.512,64H32.232H32\r\n\tv20.548c0,0.114,0,0.228,0,0.342V128h0.161c0.811,26.096,4.98,60.999,22.333,96.729c14.718,30.307,35.912,55.664,62.996,75.367\r\n\tc22.422,16.312,48.041,28.064,76.205,35.084C209.96,352.539,226,362.109,240,365.957v35.625C238,412.165,225.86,448,141.234,448H128\r\n\tv32h256v-32h-13.178C271.538,448,272,398.666,272,398.666v-32.714c14-3.843,29.73-13.374,45.91-30.644\r\n\tc28.369-7.004,54.072-18.801,76.633-35.213c27.082-19.703,48.262-45.06,62.98-75.367\r\n\tC481.203,175.967,480.326,128.723,479.863,103.342z M83.262,210.745C68.802,180.966,65.018,150.996,64.187,128h50.487\r\n\tc0.868,8.914,1.966,17.701,3.356,25.98c8.513,50.709,20.213,95.493,42.354,135.009C126.546,271.848,99.97,245.149,83.262,210.745z\r\n\t M428.737,210.745c-16.807,34.61-43.603,61.421-77.729,78.55c22.215-39.591,33.816-84.475,42.352-135.314\r\n\tc1.39-8.28,2.488-17.067,3.356-25.98h51.096C446.981,150.996,443.198,180.966,428.737,210.745z" + }, + "children": [] + }] +}; +exports.trophy = trophy; \ No newline at end of file diff --git a/dist/ionicons/tshirt.js b/dist/ionicons/tshirt.js new file mode 100644 index 000000000..90412b07c --- /dev/null +++ b/dist/ionicons/tshirt.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.tshirt = void 0; +var tshirt = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M480,96L320,48c-13.988,27.227-30.771,40.223-63.769,40.223C223.723,87.676,205.722,75,192,48L32,96l32,88l64-8l-16,288h288\r\n\tl-16-288l64,8L480,96z" + }, + "children": [] + }] +}; +exports.tshirt = tshirt; \ No newline at end of file diff --git a/dist/ionicons/tshirtOutline.js b/dist/ionicons/tshirtOutline.js new file mode 100644 index 000000000..173d81aea --- /dev/null +++ b/dist/ionicons/tshirtOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.tshirtOutline = void 0; +var tshirtOutline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M178.249,85.534c18.761,22.976,43.909,34.009,77.445,34.572l0.269-0.106h0.269c22.638,0,41.169-4.861,56.653-15.091\r\n\tc7.801-5.154,14.721-11.47,21.029-19.382l104.461,31.367L426.59,149.41l-38.743-4.685l-37.912-4.589l2.114,38.133L366.176,433\r\n\tH145.824l14.127-254.729l2.106-37.981l-37.782,4.428l-38.854,4.553l-11.767-32.358L178.249,85.534 M320,48\r\n\tc-13.988,27.227-30.771,40.223-63.769,40.223C223.723,87.676,205.722,75,192,48L32,96l32,88l64-7.5L112,465h288l-16-288.5l64,7.75\r\n\tL480,96L320,48L320,48z" + }, + "children": [] + }] +}; +exports.tshirtOutline = tshirtOutline; \ No newline at end of file diff --git a/dist/ionicons/umbrella.js b/dist/ionicons/umbrella.js new file mode 100644 index 000000000..aa47623b8 --- /dev/null +++ b/dist/ionicons/umbrella.js @@ -0,0 +1,59 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.umbrella = void 0; +var umbrella = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M376.2,288c0,0.1,0,0.2,0,0.4C376.2,288.2,376.2,288.1,376.2,288L376.2,288z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M376.2,288c0,0.1,0,0.2,0,0.4C376.2,288.2,376.2,288.1,376.2,288L376.2,288z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M136.2,288c0,0.1,0,0.2,0,0.4C136.2,288.2,136.2,288.1,136.2,288L136.2,288z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M136.2,288c0,0.1,0,0.2,0,0.4C136.2,288.2,136.2,288.1,136.2,288L136.2,288z" + }, + "children": [] + }] + }] + }] + }, { + "name": "path", + "attribs": { + "d": "M272,48.8c0-0.3,0-0.5,0-0.8c0-8.8-7.2-16-16-16c-8.8,0-16,7.2-16,16c0,0.2,0,0.5,0,0.7c-116.3,8-208,103.1-208,221.4\r\n\t\tc0,3.6,0.2,14.2,0.4,17.8c2.7-26.3,24.7-51.7,51.7-51.7c28.7,0,51.9,23.1,52.1,51.7h0c0.2-28.6,23.4-51.7,52.1-51.7\r\n\t\tc26.5,0,50.9,21.1,51.7,45.5V416c0,17.9-14.1,32-32,32c-17.1,0-31-14.4-31-32c0-8.8-7.2-16-16-16s-16,7.2-16,16\r\n\t\tc0,35.3,28.3,64,63,64c17.3,0,33.5-6.7,45.5-18.8c11.9-12,18.5-28.1,18.5-45.2l0-135.3c3.3-32.7,23.4-44.4,52.1-44.4\r\n\t\tc28.7,0,51.9,23.1,52.1,51.7h0c0.2-28.6,23.4-51.7,52.1-51.7c26.1,0,47.6,26.7,51.4,51.7c0.1-2.8,0.2-9.1,0.2-11.8\r\n\t\tC480,157.8,388.2,57.3,272,48.8z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M272,48.8c0-0.3,0-0.5,0-0.8c0-8.8-7.2-16-16-16c-8.8,0-16,7.2-16,16c0,0.2,0,0.5,0,0.7c-116.3,8-208,103.1-208,221.4\r\n\t\tc0,3.6,0.2,14.2,0.4,17.8c2.7-26.3,24.7-51.7,51.7-51.7c28.7,0,51.9,23.1,52.1,51.7h0c0.2-28.6,23.4-51.7,52.1-51.7\r\n\t\tc26.5,0,50.9,21.1,51.7,45.5V416c0,17.9-14.1,32-32,32c-17.1,0-31-14.4-31-32c0-8.8-7.2-16-16-16s-16,7.2-16,16\r\n\t\tc0,35.3,28.3,64,63,64c17.3,0,33.5-6.7,45.5-18.8c11.9-12,18.5-28.1,18.5-45.2l0-135.3c3.3-32.7,23.4-44.4,52.1-44.4\r\n\t\tc28.7,0,51.9,23.1,52.1,51.7h0c0.2-28.6,23.4-51.7,52.1-51.7c26.1,0,47.6,26.7,51.4,51.7c0.1-2.8,0.2-9.1,0.2-11.8\r\n\t\tC480,157.8,388.2,57.3,272,48.8z" + }, + "children": [] + }] + }] + }] +}; +exports.umbrella = umbrella; \ No newline at end of file diff --git a/dist/ionicons/university.js b/dist/ionicons/university.js new file mode 100644 index 000000000..b48cff765 --- /dev/null +++ b/dist/ionicons/university.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.university = void 0; +var university = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "256,64 32,176.295 64,197.367 64,400 96,416 96,217.849 255.852,320 387.996,234.549 480,174.727 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "256,64 32,176.295 64,197.367 64,400 96,416 96,217.849 255.852,320 387.996,234.549 480,174.727 \t" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M390.13,256L256,343.768L120.531,256L112,337.529C128,349.984,224,416,256.002,448C288,416,384,350.031,400,337.561\r\n\t\tL390.13,256z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M390.13,256L256,343.768L120.531,256L112,337.529C128,349.984,224,416,256.002,448C288,416,384,350.031,400,337.561\r\n\t\tL390.13,256z" + }, + "children": [] + }] + }] + }] +}; +exports.university = university; \ No newline at end of file diff --git a/dist/ionicons/unlocked.js b/dist/ionicons/unlocked.js new file mode 100644 index 000000000..7ba653450 --- /dev/null +++ b/dist/ionicons/unlocked.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.unlocked = void 0; +var unlocked = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M86.4,480h339.2c12.3,0,22.4-9.9,22.4-22.1V246c0-12.2-10-22-22.4-22H161v-30.9c0-27.3,9.9-61.1,28.1-80.3l0,0l0-0.3\r\n\tC206.7,93.9,231,83,255.9,83h0.1h0.1c24.9,0,49.2,10.9,66.8,29.5l0,0.2l0,0.1c11.3,11.9,19.4,29.3,24,47.3h53.4\r\n\tc-5.9-31.3-19.7-61.8-39.2-82.4C334.9,49.9,297.4,32,256.1,32c-0.1,0-0.1,0-0.1,0c0,0-0.1,0-0.1,0c-41.3,0-79,17.9-105.3,45.6\r\n\tc-26.4,27.8-42.6,73.9-42.6,115.4V224H89h-2.6C74,224,64,233.9,64,246v211.9C64,470.1,74,480,86.4,480z" + }, + "children": [] + }] +}; +exports.unlocked = unlocked; \ No newline at end of file diff --git a/dist/ionicons/upload.js b/dist/ionicons/upload.js new file mode 100644 index 000000000..3b21aaca8 --- /dev/null +++ b/dist/ionicons/upload.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.upload = void 0; +var upload = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M398.1,233.2c0-1.2,0.2-2.4,0.2-3.6c0-65-51.8-117.6-115.7-117.6c-46.1,0-85.7,27.4-104.3,67c-8.1-4.1-17.2-6.5-26.8-6.5\r\n\tc-29.5,0-54.1,21.9-58.8,50.5C57.3,235.2,32,269.1,32,309c0,50.2,40.1,91,89.5,91H224v-80l-48.2,0l80.2-83.7l80.2,83.6l-48.2,0v80\r\n\th110.3c45.2,0,81.7-37.5,81.7-83.4C480,270.6,443.3,233.3,398.1,233.2z" + }, + "children": [] + }] +}; +exports.upload = upload; \ No newline at end of file diff --git a/dist/ionicons/usb.js b/dist/ionicons/usb.js new file mode 100644 index 000000000..752ec72f7 --- /dev/null +++ b/dist/ionicons/usb.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.usb = void 0; +var usb = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M144,220C144,220,144.1,220.1,144,220L144,220z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M144,220C144,220,144.1,220.1,144,220L144,220z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M384,128.3c0-17.8-14.4-32.2-32.1-32.2c-17.7,0-32.1,14.4-32.1,32.1c0,12.1,6.7,22.7,16.6,28.2c1.3,1.5,2.2,4.5,2.2,6\r\n\t\tc0,0.1,0,0.2,0,0.4c-0.8,17.6-3.8,31.9-7.1,41.7c-4.3,12.6-38.2,39.6-51.5,42.2c-5.8,1.2-7.9-0.6-7.9-10.2c0,0,0-138.9,0-140.4\r\n\t\ts0.2-3.5,1.9-5c0,0,0,0,0,0c8.6-5.8,14.3-15.6,14.3-26.8c0-17.8-14.4-32.2-32.1-32.2c-17.7,0-32.1,14.4-32.1,32.2\r\n\t\tc0,11.3,5.8,21.3,14.6,27c0,0,0.1,0.1,0.1,0.1c0.1,0.1,0.2,0.1,0.4,0.2c0.2,0.1,0.4,0.2,0.6,0.4c2.3,1.5,3.3,3,3.3,4.2\r\n\t\tc0,1.3,0,189.3,0,196.3s-1.1,12.3-8.4,11.8s-41.7-23.5-51.4-44.1c-4.5-9.5-6.8-18.8-6.8-28h0c0,0,0-0.4,0-0.5\r\n\t\tc0-3.1,0-11.3,3.2-13.6c7.8-5.9,12.8-15.2,12.8-25.7c0-17.8-14.4-32.2-32.1-32.2S128,174.4,128,192.2c0,11.9,6.5,22.3,16,27.8\r\n\t\tc2.4,1.5,3,2.9,3.8,10.6s3,24.6,9.1,39.9c7.3,18.6,20.9,32.6,39.7,45.2c13.6,9.3,25.3,16.6,32.1,26.4s10.2,13.5,10.2,27\r\n\t\tc0,0,0-0.9,0,0c0,12.8-4,14-9.3,17.8c-14.1,8.7-23.5,24.2-23.5,42c0,0.1,0,0.3,0,0.4c0,0.2,0,0.5,0,0.7c0,27.5,22.3,49.8,49.8,49.8\r\n\t\tc27.5,0,49.8-22.3,49.8-49.8c0-13.3-5.2-25.4-13.7-34.3c-2.9-3.2-6-6-9.6-8.3c-7.5-5.2-10.3-11.5-10.3-18.1v-24.1\r\n\t\tc0-25.1,4.1-41.1,11.1-53.3c7.3-12.7,18.3-22.6,35.4-34.2c18.8-12.6,32.2-26.6,39.6-45.2c5.7-14.4,7.6-31,8.6-50.9\r\n\t\tc0.1-1.8,1.4-5.8,3.3-6.8h0C378.4,149,384,139.3,384,128.3z M160.1,208.3c-8.9,0-16.1-7.3-16.1-16.2s7.2-16.2,16.1-16.2\r\n\t\ts16.1,7.3,16.1,16.2S169,208.3,160.1,208.3z M256,80.3c-8.9,0-16.1-7.3-16.1-16.2S247.1,48,256,48s16.1,7.3,16.1,16.2\r\n\t\tS264.9,80.3,256,80.3z M351.9,144.3c-8.9,0-16.1-7.3-16.1-16.2S343,112,351.9,112s16.1,7.3,16.1,16.2S360.8,144.3,351.9,144.3z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M384,128.3c0-17.8-14.4-32.2-32.1-32.2c-17.7,0-32.1,14.4-32.1,32.1c0,12.1,6.7,22.7,16.6,28.2c1.3,1.5,2.2,4.5,2.2,6\r\n\t\tc0,0.1,0,0.2,0,0.4c-0.8,17.6-3.8,31.9-7.1,41.7c-4.3,12.6-38.2,39.6-51.5,42.2c-5.8,1.2-7.9-0.6-7.9-10.2c0,0,0-138.9,0-140.4\r\n\t\ts0.2-3.5,1.9-5c0,0,0,0,0,0c8.6-5.8,14.3-15.6,14.3-26.8c0-17.8-14.4-32.2-32.1-32.2c-17.7,0-32.1,14.4-32.1,32.2\r\n\t\tc0,11.3,5.8,21.3,14.6,27c0,0,0.1,0.1,0.1,0.1c0.1,0.1,0.2,0.1,0.4,0.2c0.2,0.1,0.4,0.2,0.6,0.4c2.3,1.5,3.3,3,3.3,4.2\r\n\t\tc0,1.3,0,189.3,0,196.3s-1.1,12.3-8.4,11.8s-41.7-23.5-51.4-44.1c-4.5-9.5-6.8-18.8-6.8-28h0c0,0,0-0.4,0-0.5\r\n\t\tc0-3.1,0-11.3,3.2-13.6c7.8-5.9,12.8-15.2,12.8-25.7c0-17.8-14.4-32.2-32.1-32.2S128,174.4,128,192.2c0,11.9,6.5,22.3,16,27.8\r\n\t\tc2.4,1.5,3,2.9,3.8,10.6s3,24.6,9.1,39.9c7.3,18.6,20.9,32.6,39.7,45.2c13.6,9.3,25.3,16.6,32.1,26.4s10.2,13.5,10.2,27\r\n\t\tc0,0,0-0.9,0,0c0,12.8-4,14-9.3,17.8c-14.1,8.7-23.5,24.2-23.5,42c0,0.1,0,0.3,0,0.4c0,0.2,0,0.5,0,0.7c0,27.5,22.3,49.8,49.8,49.8\r\n\t\tc27.5,0,49.8-22.3,49.8-49.8c0-13.3-5.2-25.4-13.7-34.3c-2.9-3.2-6-6-9.6-8.3c-7.5-5.2-10.3-11.5-10.3-18.1v-24.1\r\n\t\tc0-25.1,4.1-41.1,11.1-53.3c7.3-12.7,18.3-22.6,35.4-34.2c18.8-12.6,32.2-26.6,39.6-45.2c5.7-14.4,7.6-31,8.6-50.9\r\n\t\tc0.1-1.8,1.4-5.8,3.3-6.8h0C378.4,149,384,139.3,384,128.3z M160.1,208.3c-8.9,0-16.1-7.3-16.1-16.2s7.2-16.2,16.1-16.2\r\n\t\ts16.1,7.3,16.1,16.2S169,208.3,160.1,208.3z M256,80.3c-8.9,0-16.1-7.3-16.1-16.2S247.1,48,256,48s16.1,7.3,16.1,16.2\r\n\t\tS264.9,80.3,256,80.3z M351.9,144.3c-8.9,0-16.1-7.3-16.1-16.2S343,112,351.9,112s16.1,7.3,16.1,16.2S360.8,144.3,351.9,144.3z" + }, + "children": [] + }] + }] + }] +}; +exports.usb = usb; \ No newline at end of file diff --git a/dist/ionicons/videocamera.js b/dist/ionicons/videocamera.js new file mode 100644 index 000000000..4bff1f367 --- /dev/null +++ b/dist/ionicons/videocamera.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.videocamera = void 0; +var videocamera = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M367,185.3c0-5.1-4-9.3-9.2-9.3H306v-32.2c0-35.2-29.3-63.8-64.9-63.8H63v48h176.1c4.5,0,9.9,5.6,9.9,10.1V176H41.4\r\n\tc-5.2,0-9.4,4.2-9.4,9.3v170.4v55.7v11.3c0,5.1,4.2,9.3,9.4,9.3h316.4c5.2,0,9.2-4.2,9.2-9.3v-64.5l113,34.7v-88.2v-88.2l-113,34.7\r\n\tV185.3z M258.2,341h-10.9H152h-11.9c-19.8,0-35.9-16-35.9-35.8s16.1-35.8,35.9-35.8c19.8,0,35.9,16.2,35.9,36\r\n\tc0,10-4.2,18.6-10.8,25.6h67.9c-6.6-7-10.8-15.6-10.8-25.6c0-19.8,16.1-35.9,35.9-35.9c19.8,0,35.9,15.9,35.9,35.7\r\n\tS278,341,258.2,341z" + }, + "children": [] + }] +}; +exports.videocamera = videocamera; \ No newline at end of file diff --git a/dist/ionicons/volumeHigh.js b/dist/ionicons/volumeHigh.js new file mode 100644 index 000000000..a457802a1 --- /dev/null +++ b/dist/ionicons/volumeHigh.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.volumeHigh = void 0; +var volumeHigh = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "231,407.8 231,104.3 136.1,192 32,192 32,320 136.1,320 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "231,407.8 231,104.3 136.1,192 32,192 32,320 136.1,320 \t" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M287.1,355.7c20.5-27.9,32.8-62.3,32.8-99.7c0-37.4-12.3-71.8-32.8-99.7l-20.4,15.3c17.4,23.6,27.8,52.7,27.8,84.4\r\n\t\tc0,31.6-10.4,60.8-27.8,84.3L287.1,355.7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M287.1,355.7c20.5-27.9,32.8-62.3,32.8-99.7c0-37.4-12.3-71.8-32.8-99.7l-20.4,15.3c17.4,23.6,27.8,52.7,27.8,84.4\r\n\t\tc0,31.6-10.4,60.8-27.8,84.3L287.1,355.7z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M353.7,401.7c30-40.7,48-91.1,48-145.7s-18-104.9-48-145.7l-20.4,15.3c26.9,36.4,43,81.5,43,130.4\r\n\t\tc0,48.9-16.1,93.9-43,130.3L353.7,401.7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M353.7,401.7c30-40.7,48-91.1,48-145.7s-18-104.9-48-145.7l-20.4,15.3c26.9,36.4,43,81.5,43,130.4\r\n\t\tc0,48.9-16.1,93.9-43,130.3L353.7,401.7z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M396.7,79.4c36.4,49.3,57.9,110.5,57.9,176.6c0,66.1-21.5,127.2-57.9,176.6l20.5,15.4c39.4-53.6,62.8-120,62.8-192\r\n\t\tc0-72-23.4-138.4-62.8-192L396.7,79.4z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M396.7,79.4c36.4,49.3,57.9,110.5,57.9,176.6c0,66.1-21.5,127.2-57.9,176.6l20.5,15.4c39.4-53.6,62.8-120,62.8-192\r\n\t\tc0-72-23.4-138.4-62.8-192L396.7,79.4z" + }, + "children": [] + }] + }] + }] +}; +exports.volumeHigh = volumeHigh; \ No newline at end of file diff --git a/dist/ionicons/volumeLow.js b/dist/ionicons/volumeLow.js new file mode 100644 index 000000000..89e7e5086 --- /dev/null +++ b/dist/ionicons/volumeLow.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.volumeLow = void 0; +var volumeLow = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "311,407.7 311,104.4 216.2,192 112,192 112,320 216.2,320 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "311,407.7 311,104.4 216.2,192 112,192 112,320 216.2,320 \t" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M367.2,355.6c20.5-27.8,32.8-62.3,32.8-99.6c0-37.4-12.3-71.8-32.8-99.6l-20.4,15.3c17.4,23.6,27.8,52.7,27.8,84.3\r\n\t\tc0,31.6-10.4,60.7-27.8,84.3L367.2,355.6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M367.2,355.6c20.5-27.8,32.8-62.3,32.8-99.6c0-37.4-12.3-71.8-32.8-99.6l-20.4,15.3c17.4,23.6,27.8,52.7,27.8,84.3\r\n\t\tc0,31.6-10.4,60.7-27.8,84.3L367.2,355.6z" + }, + "children": [] + }] + }] + }] +}; +exports.volumeLow = volumeLow; \ No newline at end of file diff --git a/dist/ionicons/volumeMedium.js b/dist/ionicons/volumeMedium.js new file mode 100644 index 000000000..564a4d332 --- /dev/null +++ b/dist/ionicons/volumeMedium.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.volumeMedium = void 0; +var volumeMedium = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "270,407.7 270,104.4 175.3,192 71,192 71,320 175.3,320 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "270,407.7 270,104.4 175.3,192 71,192 71,320 175.3,320 \t" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M326.3,355.6c20.5-27.8,32.8-62.3,32.8-99.6c0-37.4-12.3-71.8-32.8-99.6l-20.4,15.3c17.4,23.6,27.8,52.7,27.8,84.3\r\n\t\tc0,31.6-10.4,60.7-27.8,84.3L326.3,355.6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M326.3,355.6c20.5-27.8,32.8-62.3,32.8-99.6c0-37.4-12.3-71.8-32.8-99.6l-20.4,15.3c17.4,23.6,27.8,52.7,27.8,84.3\r\n\t\tc0,31.6-10.4,60.7-27.8,84.3L326.3,355.6z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M392.8,401.6c30-40.7,48-91,48-145.6s-18-104.9-48-145.6l-20.4,15.3c26.9,36.4,43,81.4,43,130.3c0,48.9-16.1,93.8-43,130.3\r\n\t\tL392.8,401.6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M392.8,401.6c30-40.7,48-91,48-145.6s-18-104.9-48-145.6l-20.4,15.3c26.9,36.4,43,81.4,43,130.3c0,48.9-16.1,93.8-43,130.3\r\n\t\tL392.8,401.6z" + }, + "children": [] + }] + }] + }] +}; +exports.volumeMedium = volumeMedium; \ No newline at end of file diff --git a/dist/ionicons/volumeMute.js b/dist/ionicons/volumeMute.js new file mode 100644 index 000000000..be925049e --- /dev/null +++ b/dist/ionicons/volumeMute.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.volumeMute = void 0; +var volumeMute = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "255.9,217 191,217 191,295 255.9,295 303,346.3 303,165.7 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "255.9,217 191,217 191,295 255.9,295 303,346.3 303,165.7 \t" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M364.5,60.1c-0.4-0.2-0.7-0.4-1.1-0.6C331.5,42,294.9,32,256,32C132.3,32,32,132.3,32,256c0,84.3,46.6,157.6,115.4,195.9\r\n\t\tc0.4,0.2,0.7,0.5,1.1,0.7C180.5,470,217.1,480,256,480c123.7,0,224-100.3,224-224C480,171.7,433.4,98.3,364.5,60.1z M393.9,355.4\r\n\t\tL336,297.1v76.7l19.6,19.9c-28,20.3-62.3,32.7-99.5,32.7c-21.6,0-42.3-4.2-61.3-11.5c-6.5-2.5-12.9-5.3-19-8.6\r\n\t\tc-53.6-28.7-90.1-85.2-90.1-150.3c0-37.2,12.4-71.4,32.7-99.4l35.3,35.4h76.7l-73.6-73.8c28-20.2,62.1-32.6,99.4-32.6\r\n\t\tc21.6,0,42.2,4.2,61.3,11.5c6.1,2.4,12.2,5,17.9,8c54.2,28.5,91.3,85.3,91.3,150.8C426.5,293.3,414.2,327.4,393.9,355.4z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M364.5,60.1c-0.4-0.2-0.7-0.4-1.1-0.6C331.5,42,294.9,32,256,32C132.3,32,32,132.3,32,256c0,84.3,46.6,157.6,115.4,195.9\r\n\t\tc0.4,0.2,0.7,0.5,1.1,0.7C180.5,470,217.1,480,256,480c123.7,0,224-100.3,224-224C480,171.7,433.4,98.3,364.5,60.1z M393.9,355.4\r\n\t\tL336,297.1v76.7l19.6,19.9c-28,20.3-62.3,32.7-99.5,32.7c-21.6,0-42.3-4.2-61.3-11.5c-6.5-2.5-12.9-5.3-19-8.6\r\n\t\tc-53.6-28.7-90.1-85.2-90.1-150.3c0-37.2,12.4-71.4,32.7-99.4l35.3,35.4h76.7l-73.6-73.8c28-20.2,62.1-32.6,99.4-32.6\r\n\t\tc21.6,0,42.2,4.2,61.3,11.5c6.1,2.4,12.2,5,17.9,8c54.2,28.5,91.3,85.3,91.3,150.8C426.5,293.3,414.2,327.4,393.9,355.4z" + }, + "children": [] + }] + }] + }] +}; +exports.volumeMute = volumeMute; \ No newline at end of file diff --git a/dist/ionicons/wand.js b/dist/ionicons/wand.js new file mode 100644 index 000000000..f91ce7411 --- /dev/null +++ b/dist/ionicons/wand.js @@ -0,0 +1,151 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.wand = void 0; +var wand = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "238.059", + "y": "206.059", + "transform": "matrix(0.7071 0.7071 -0.7071 0.7071 249.3726 -122.0387)", + "width": "67.882", + "height": "67.882" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "238.059", + "y": "206.059", + "transform": "matrix(0.7071 0.7071 -0.7071 0.7071 249.3726 -122.0387)", + "width": "67.882", + "height": "67.882" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "110.058", + "y": "243.549", + "transform": "matrix(0.7071 0.7071 -0.7071 0.7071 302.3989 5.9646)", + "width": "67.884", + "height": "248.901" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "110.058", + "y": "243.549", + "transform": "matrix(0.7071 0.7071 -0.7071 0.7071 302.3989 5.9646)", + "width": "67.884", + "height": "248.901" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "256", + "y": "32", + "width": "32", + "height": "64" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "256", + "y": "32", + "width": "32", + "height": "64" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "380.451", + "y": "83.55", + "transform": "matrix(-0.7071 -0.7071 0.7071 -0.7071 595.0701 477.5923)", + "width": "32", + "height": "63.999" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "380.451", + "y": "83.55", + "transform": "matrix(-0.7071 -0.7071 0.7071 -0.7071 595.0701 477.5923)", + "width": "32", + "height": "63.999" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "131.549", + "y": "83.549", + "transform": "matrix(0.7071 -0.7071 0.7071 0.7071 -38.4898 138.1746)", + "width": "32", + "height": "64" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "131.549", + "y": "83.549", + "transform": "matrix(0.7071 -0.7071 0.7071 0.7071 -38.4898 138.1746)", + "width": "32", + "height": "64" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "380.451", + "y": "332.451", + "transform": "matrix(0.7071 -0.7071 0.7071 0.7071 -141.5881 387.0668)", + "width": "32", + "height": "64" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "380.451", + "y": "332.451", + "transform": "matrix(0.7071 -0.7071 0.7071 0.7071 -141.5881 387.0668)", + "width": "32", + "height": "64" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "416", + "y": "224", + "width": "64", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "416", + "y": "224", + "width": "64", + "height": "32" + }, + "children": [] + }] + }] + }] +}; +exports.wand = wand; \ No newline at end of file diff --git a/dist/ionicons/waterdrop.js b/dist/ionicons/waterdrop.js new file mode 100644 index 000000000..641e56fb3 --- /dev/null +++ b/dist/ionicons/waterdrop.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.waterdrop = void 0; +var waterdrop = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M271,38.6c-0.3-0.4-0.7-0.7-0.9-1c0,0-0.1-0.1-0.1-0.1c-3.6-3.4-8.5-5.5-13.9-5.5c-5.5,0-10.4,2.1-13.9,5.5\r\n\tc0,0-0.1,0.1-0.1,0.1c-0.3,0.3-0.6,0.6-0.9,1c-6.1,6.3-13.8,14.4-22.4,24.1c-17.4,19.7-38.6,46-58.5,76.8\r\n\tc-33.4,51.8-62.9,116.1-64.1,183.1c0,1.3-0.1,2.7-0.1,4c0,19.7,3.9,38.5,10.9,55.8c4.1,10,9.2,19.4,15.2,28.2\r\n\tC150.7,452.4,200,480,256,480c88.4,0,160-68.7,160-153.4C416,198.7,310.8,79.2,271,38.6z M256,424c-15.8,0-30.7-3.7-43.9-10.1\r\n\tc65.9-14.4,118.4-64.7,135.8-129.5c5.2,12.1,8.2,25.5,8.2,39.6C356,379.2,311.2,424,256,424z" + }, + "children": [] + }] +}; +exports.waterdrop = waterdrop; \ No newline at end of file diff --git a/dist/ionicons/wifi.js b/dist/ionicons/wifi.js new file mode 100644 index 000000000..4756e1960 --- /dev/null +++ b/dist/ionicons/wifi.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.wifi = void 0; +var wifi = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256.1,96L256.1,96c-79.9,0-155.7,29.9-213.9,84.1L32,189.6l9.9,9.8l32.3,32l9.3,9.2l9.6-8.8\r\n\t\tc44.5-40.9,102.3-63.5,162.8-63.5c60.5,0,118.4,22.6,162.8,63.5l9.6,8.8l9.3-9.2l32.3-32l9.9-9.8l-10.2-9.5\r\n\t\tC411.6,125.9,335.7,96,256.1,96z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256.1,96L256.1,96c-79.9,0-155.7,29.9-213.9,84.1L32,189.6l9.9,9.8l32.3,32l9.3,9.2l9.6-8.8\r\n\t\tc44.5-40.9,102.3-63.5,162.8-63.5c60.5,0,118.4,22.6,162.8,63.5l9.6,8.8l9.3-9.2l32.3-32l9.9-9.8l-10.2-9.5\r\n\t\tC411.6,125.9,335.7,96,256.1,96z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M397.4,256.4c-38.8-35.1-88.9-54.4-141.1-54.4h-0.1h-0.3h-8.5l-0.1,0.2c-49.2,2-96,21.1-132.6,54.2l-10.5,9.5l10.1,10\r\n\t\tl32.7,32.4l9.1,9l9.6-8.4c25.3-22.2,57.4-34.5,90.3-34.5c33.1,0,65.2,12.3,90.5,34.5l9.6,8.4l9.1-9l32.7-32.4l10.1-10L397.4,256.4z\r\n\t\t" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M397.4,256.4c-38.8-35.1-88.9-54.4-141.1-54.4h-0.1h-0.3h-8.5l-0.1,0.2c-49.2,2-96,21.1-132.6,54.2l-10.5,9.5l10.1,10\r\n\t\tl32.7,32.4l9.1,9l9.6-8.4c25.3-22.2,57.4-34.5,90.3-34.5c33.1,0,65.2,12.3,90.5,34.5l9.6,8.4l9.1-9l32.7-32.4l10.1-10L397.4,256.4z\r\n\t\t" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256.2,416l9.6-9.5l52.8-52.2l10.6-10.5l-11.6-9.5c-15.4-11.4-32.4-20-61.5-20c-29,0-44.9,9.4-61.5,20l-11.5,9.5l10.6,10.5\r\n\t\tl52.8,52.2L256.2,416z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256.2,416l9.6-9.5l52.8-52.2l10.6-10.5l-11.6-9.5c-15.4-11.4-32.4-20-61.5-20c-29,0-44.9,9.4-61.5,20l-11.5,9.5l10.6,10.5\r\n\t\tl52.8,52.2L256.2,416z" + }, + "children": [] + }] + }] + }] +}; +exports.wifi = wifi; \ No newline at end of file diff --git a/dist/ionicons/wineglass.js b/dist/ionicons/wineglass.js new file mode 100644 index 000000000..dc8cd121e --- /dev/null +++ b/dist/ionicons/wineglass.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.wineglass = void 0; +var wineglass = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M294.9,295.4c11-4.1,18-6.9,26.2-11.7c12-6.9,22.8-15.8,31.9-26.1c20.4-22.9,31-51.1,31-86.1c0-49.9-3.7-101.1-8.1-114.7\r\n\t\tC371.5,43,362.4,32,345.2,32H166.7c-17.1,0-26.2,11.1-30.6,24.6c-4.4,13.5-8.1,64.9-8.1,114.8c0,35.1,10.6,63.2,30.9,86.1\r\n\t\tc9.1,10.3,19.9,19.1,31.8,26c8.2,4.8,15.1,7.8,26,11.7s22.3,7.5,22.3,31.8v94.2c0,10.7-2.9,19-11.1,24.8c-2.8,2.1-6.3,4.3-14.3,6.5\r\n\t\tc-31.5,8.6-46.9,15.6-49.2,17.2c-2,1.4-4.5,3.6-4.5,7.1c0,0,13.8,3.1,96.2,3.1c82.4,0,96-3.1,96-3.1c0-3.5-2.5-5.7-4.6-7.1\r\n\t\tc-2.3-1.6-17.8-8.6-49.4-17.2c-8-2.2-12.2-4.4-15.1-6.5C275,440.3,271,432,271,421.3v-94.2C271,303.1,283.9,299.4,294.9,295.4z\r\n\t\t M255.9,270.3c-25.4,0-48.5-10-65.5-26.3c-2.7-2.4-5.2-5-7.6-7.7c-15.6-17.5-22.4-36.7-23.1-64.8C159,143.3,159.6,99,167,64h177\r\n\t\tc6.3,24,9.1,76.8,7.7,107.2c-1.4,30.5-7.2,47.3-22.8,64.9c-2,2.2-3.9,4.3-6.1,6.4C305.7,259.7,282,270.3,255.9,270.3z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M294.9,295.4c11-4.1,18-6.9,26.2-11.7c12-6.9,22.8-15.8,31.9-26.1c20.4-22.9,31-51.1,31-86.1c0-49.9-3.7-101.1-8.1-114.7\r\n\t\tC371.5,43,362.4,32,345.2,32H166.7c-17.1,0-26.2,11.1-30.6,24.6c-4.4,13.5-8.1,64.9-8.1,114.8c0,35.1,10.6,63.2,30.9,86.1\r\n\t\tc9.1,10.3,19.9,19.1,31.8,26c8.2,4.8,15.1,7.8,26,11.7s22.3,7.5,22.3,31.8v94.2c0,10.7-2.9,19-11.1,24.8c-2.8,2.1-6.3,4.3-14.3,6.5\r\n\t\tc-31.5,8.6-46.9,15.6-49.2,17.2c-2,1.4-4.5,3.6-4.5,7.1c0,0,13.8,3.1,96.2,3.1c82.4,0,96-3.1,96-3.1c0-3.5-2.5-5.7-4.6-7.1\r\n\t\tc-2.3-1.6-17.8-8.6-49.4-17.2c-8-2.2-12.2-4.4-15.1-6.5C275,440.3,271,432,271,421.3v-94.2C271,303.1,283.9,299.4,294.9,295.4z\r\n\t\t M255.9,270.3c-25.4,0-48.5-10-65.5-26.3c-2.7-2.4-5.2-5-7.6-7.7c-15.6-17.5-22.4-36.7-23.1-64.8C159,143.3,159.6,99,167,64h177\r\n\t\tc6.3,24,9.1,76.8,7.7,107.2c-1.4,30.5-7.2,47.3-22.8,64.9c-2,2.2-3.9,4.3-6.1,6.4C305.7,259.7,282,270.3,255.9,270.3z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M336.2,170.6c0-7.5-0.1-31.9-1.3-52.6c-0.5-8.4-1.2-16-2.1-22h-153c-0.9,3-1.8,11.6-2.5,22c-1.3,18.9-2.1,43.9-1.5,52.9\r\n\t\tc0.9,13.8,1.5,20.6,4.5,29.4c3.1,9.1,8,17.3,14.6,24.7c2,2.3,4.1,4.4,6.4,6.4c14.2,13.6,33.5,22,54.7,22c21.8,0,41.5-8.8,55.9-23.1\r\n\t\tc1.8-1.7,3.5-3.5,5.2-5.3c6.6-7.4,11.4-15.5,14.5-24.6C334.7,191.4,336.2,181.1,336.2,170.6z M320,179c0,5-3.9,8.1-8.3,8.1\r\n\t\tc-1.6,0-3-0.5-4.3-1.3c-2.2-1.4-3.5-3.9-3.5-6.7v-26c0-4.4,3.6-8,8-8s8,3.6,8,8V179z M318.9,131.8c-1.2,1.8-3,3-5.1,3.5\r\n\t\tc-2.1,0.4-4.3,0-6-1.1c-1.8-1.2-3-3-3.5-5.1c-0.4-2.1,0-4.3,1.1-6c1.2-1.8,3-3,5.1-3.5c2.1-0.4,4.3,0,6,1.1c1.8,1.2,3,3,3.5,5.1\r\n\t\tC320.5,127.8,320.1,130,318.9,131.8z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M336.2,170.6c0-7.5-0.1-31.9-1.3-52.6c-0.5-8.4-1.2-16-2.1-22h-153c-0.9,3-1.8,11.6-2.5,22c-1.3,18.9-2.1,43.9-1.5,52.9\r\n\t\tc0.9,13.8,1.5,20.6,4.5,29.4c3.1,9.1,8,17.3,14.6,24.7c2,2.3,4.1,4.4,6.4,6.4c14.2,13.6,33.5,22,54.7,22c21.8,0,41.5-8.8,55.9-23.1\r\n\t\tc1.8-1.7,3.5-3.5,5.2-5.3c6.6-7.4,11.4-15.5,14.5-24.6C334.7,191.4,336.2,181.1,336.2,170.6z M320,179c0,5-3.9,8.1-8.3,8.1\r\n\t\tc-1.6,0-3-0.5-4.3-1.3c-2.2-1.4-3.5-3.9-3.5-6.7v-26c0-4.4,3.6-8,8-8s8,3.6,8,8V179z M318.9,131.8c-1.2,1.8-3,3-5.1,3.5\r\n\t\tc-2.1,0.4-4.3,0-6-1.1c-1.8-1.2-3-3-3.5-5.1c-0.4-2.1,0-4.3,1.1-6c1.2-1.8,3-3,5.1-3.5c2.1-0.4,4.3,0,6,1.1c1.8,1.2,3,3,3.5,5.1\r\n\t\tC320.5,127.8,320.1,130,318.9,131.8z" + }, + "children": [] + }] + }] + }] +}; +exports.wineglass = wineglass; \ No newline at end of file diff --git a/dist/ionicons/woman.js b/dist/ionicons/woman.js new file mode 100644 index 000000000..cd18cd3c2 --- /dev/null +++ b/dist/ionicons/woman.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.woman = void 0; +var woman = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M190.4,148.6L161,252.9c-6.3,22.8,20.7,31.7,27.3,10.3l26.3-96.2h7.4l-45.2,169H219v127c0,23,32,23,32,0V336h10v127\r\n\t\tc0,23,31,23,31,0V336h43.4l-46.2-169h8.4l26.3,96.2c6.5,21.9,33.3,12.5,27.3-10.2l-29.4-104.4c-4-11.8-18.2-32.6-42-33.6h-47.3\r\n\t\tC207.9,116,193.8,136.6,190.4,148.6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M190.4,148.6L161,252.9c-6.3,22.8,20.7,31.7,27.3,10.3l26.3-96.2h7.4l-45.2,169H219v127c0,23,32,23,32,0V336h10v127\r\n\t\tc0,23,31,23,31,0V336h43.4l-46.2-169h8.4l26.3,96.2c6.5,21.9,33.3,12.5,27.3-10.2l-29.4-104.4c-4-11.8-18.2-32.6-42-33.6h-47.3\r\n\t\tC207.9,116,193.8,136.6,190.4,148.6z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M292.6,69.2c0-20.6-16.4-37.3-36.6-37.3c-20.2,0-36.6,16.7-36.6,37.3c0,20.6,16.4,37.3,36.6,37.3\r\n\t\tC276.2,106.5,292.6,89.8,292.6,69.2z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M292.6,69.2c0-20.6-16.4-37.3-36.6-37.3c-20.2,0-36.6,16.7-36.6,37.3c0,20.6,16.4,37.3,36.6,37.3\r\n\t\tC276.2,106.5,292.6,89.8,292.6,69.2z" + }, + "children": [] + }] + }] + }] +}; +exports.woman = woman; \ No newline at end of file diff --git a/dist/ionicons/wrench.js b/dist/ionicons/wrench.js new file mode 100644 index 000000000..88f6ed566 --- /dev/null +++ b/dist/ionicons/wrench.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.wrench = void 0; +var wrench = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M461.9,114.9l-56.5,56.7l-55.1-10l-9.9-55.1l56.5-56.7c-12.7-12.7-30.8-18.5-44.2-17.8c-13.5,0.7-42.3,8.3-64.6,32\r\n\tc-21.6,22.8-44.3,65.3-24.2,112.5c2.4,5.7,5.1,13.2-2.9,21.2c-8.1,8-215,202.8-215,202.8c-19.4,16.7-18,47.6-0.1,65.6\r\n\tc18.2,17.9,48.9,19,65.6-0.3c0,0,193.2-205.8,202.7-215.1c8.5-8.3,16.1-5.5,21.2-2.9c35.6,18.4,86.3,2.4,112.6-23.9\r\n\tc26.3-26.3,31.1-51.7,31.9-64.7C480.7,146.3,476.2,129.2,461.9,114.9z M91.3,443.2c-6.3,6.2-16.5,6.2-22.7,0\r\n\tc-6.2-6.3-6.2-16.5,0-22.7c6.3-6.2,16.5-6.2,22.7,0C97.5,426.8,97.5,437,91.3,443.2z" + }, + "children": [] + }] +}; +exports.wrench = wrench; \ No newline at end of file diff --git a/dist/ionicons/xbox.js b/dist/ionicons/xbox.js new file mode 100644 index 000000000..e4d8c2966 --- /dev/null +++ b/dist/ionicons/xbox.js @@ -0,0 +1,77 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.xbox = void 0; +var xbox = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "style", + "attribs": { + "type": "text/css" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "class": "st0", + "d": "M126.8,248.3c39.7-58.6,77.9-92.8,77.9-92.8s-42.1-48.9-92.8-67.4l-3.3-0.8C61.7,128.4,32,188.7,32,256\r\n\t\tc0,50.7,16.9,97.5,45.2,135C77.2,386.6,77.8,320.7,126.8,248.3z" + }, + "children": [{ + "name": "path", + "attribs": { + "class": "st0", + "d": "M126.8,248.3c39.7-58.6,77.9-92.8,77.9-92.8s-42.1-48.9-92.8-67.4l-3.3-0.8C61.7,128.4,32,188.7,32,256\r\n\t\tc0,50.7,16.9,97.5,45.2,135C77.2,386.6,77.8,320.7,126.8,248.3z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "class": "st0", + "d": "M480,256c0-67.3-29.7-127.6-76.6-168.7l-3.2,0.9c-50.7,18.5-92.9,67.4-92.9,67.4s38.2,34.2,77.9,92.8\r\n\t\tc49,72.4,49.6,138.3,49.5,142.7C463.2,353.5,480,306.7,480,256z" + }, + "children": [{ + "name": "path", + "attribs": { + "class": "st0", + "d": "M480,256c0-67.3-29.7-127.6-76.6-168.7l-3.2,0.9c-50.7,18.5-92.9,67.4-92.9,67.4s38.2,34.2,77.9,92.8\r\n\t\tc49,72.4,49.6,138.3,49.5,142.7C463.2,353.5,480,306.7,480,256z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "class": "st0", + "d": "M201.2,80.9c29.3,13.1,54.6,34.6,54.6,34.6s25.5-21.4,54.8-34.6c36.8-16.5,64.9-11.3,72.3-9.5\r\n\t\tC346.8,46.6,303.1,32,256,32c-47.1,0-90.8,14.6-126.9,39.4C136.3,69.6,164.3,64.3,201.2,80.9z" + }, + "children": [{ + "name": "path", + "attribs": { + "class": "st0", + "d": "M201.2,80.9c29.3,13.1,54.6,34.6,54.6,34.6s25.5-21.4,54.8-34.6c36.8-16.5,64.9-11.3,72.3-9.5\r\n\t\tC346.8,46.6,303.1,32,256,32c-47.1,0-90.8,14.6-126.9,39.4C136.3,69.6,164.3,64.3,201.2,80.9z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "class": "st0", + "d": "M358.7,292.9C312.4,236,255.8,199,255.8,199s-56.3,37-102.7,93.9c-39.8,48.9-54.6,84.8-62.6,107.8l-1.3,4.8\r\n\t\tc41,45.7,100.5,74.5,166.8,74.5c66.3,0,125.8-28.8,166.8-74.5l-1.4-4.8C413.4,377.7,398.5,341.8,358.7,292.9z" + }, + "children": [{ + "name": "path", + "attribs": { + "class": "st0", + "d": "M358.7,292.9C312.4,236,255.8,199,255.8,199s-56.3,37-102.7,93.9c-39.8,48.9-54.6,84.8-62.6,107.8l-1.3,4.8\r\n\t\tc41,45.7,100.5,74.5,166.8,74.5c66.3,0,125.8-28.8,166.8-74.5l-1.4-4.8C413.4,377.7,398.5,341.8,358.7,292.9z" + }, + "children": [] + }] + }] + }] +}; +exports.xbox = xbox; \ No newline at end of file diff --git a/dist/linea/arrows_anticlockwise.js b/dist/linea/arrows_anticlockwise.js new file mode 100644 index 000000000..09aa42dab --- /dev/null +++ b/dist/linea/arrows_anticlockwise.js @@ -0,0 +1,42 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_anticlockwise = void 0; +var arrows_anticlockwise = { + 'viewBox': '0 0 64 64', + 'children': [{ + 'name': 'path', + 'attribs': { + 'fill': 'none', + 'stroke': '#000000', + 'stroke-width': '2', + 'stroke-miterlimit': '10', + 'd': 'M32,1c17.121,0,31,13.879,31,31S49.121,63,32,63' + }, + 'children': [] + }, { + 'name': 'path', + 'attribs': { + 'fill': 'none', + 'stroke': '#000000', + 'stroke-width': '2', + 'stroke-miterlimit': '10', + 'd': 'M32,1C14.879,1,1,14.879,1,32\r\n\tc0,6.713,2.134,12.926,5.759,18l5.62,5.621' + }, + 'children': [] + }, { + 'name': 'polyline', + 'attribs': { + 'fill': 'none', + 'stroke': '#000000', + 'stroke-width': '2', + 'stroke-linejoin': 'bevel', + 'stroke-miterlimit': '10', + 'points': '13,45 13,56 2,56 \r\n\t' + }, + 'children': [] + }] +}; +exports.arrows_anticlockwise = arrows_anticlockwise; \ No newline at end of file diff --git a/dist/linea/arrows_anticlockwise_dashed.js b/dist/linea/arrows_anticlockwise_dashed.js new file mode 100644 index 000000000..b94fda211 --- /dev/null +++ b/dist/linea/arrows_anticlockwise_dashed.js @@ -0,0 +1,106 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_anticlockwise_dashed = void 0; +var arrows_anticlockwise_dashed = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M32,1c0.672,0,1.339,0.021,2,0.063" + }, + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M32,1c0.672,0,1.339,0.021,2,0.063" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4.0593,2.0296", + "d": "M36.021,1.258\r\n\t\t\tC51.242,3.229,63,16.241,63,32c0,16.104-12.279,29.34-27.986,30.855" + }, + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4.0593,2.0296", + "d": "M36.021,1.258\r\n\t\t\tC51.242,3.229,63,16.241,63,32c0,16.104-12.279,29.34-27.986,30.855" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M34,62.937C33.339,62.979,32.672,63,32,63" + }, + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M34,62.937C33.339,62.979,32.672,63,32,63" + }, + "children": [] + }] + }] + }] + }] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M32,1C14.879,1,1,14.879,1,32\r\n\tc0,6.713,2.134,12.926,5.759,18l5.62,5.621" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "13,45 13,56 2,56 \r\n\t" + }, + "children": [] + }] +}; +exports.arrows_anticlockwise_dashed = arrows_anticlockwise_dashed; \ No newline at end of file diff --git a/dist/linea/arrows_button_down.js b/dist/linea/arrows_button_down.js new file mode 100644 index 000000000..fa360399a --- /dev/null +++ b/dist/linea/arrows_button_down.js @@ -0,0 +1,33 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_button_down = void 0; +var arrows_button_down = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M48,17c0-8.837-7.163-16-16-16S16,8.163,16,17v30\r\n\tc0,8.837,7.163,16,16,16s16-7.163,16-16V17z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "47", + "r": "12" + }, + "children": [] + }] +}; +exports.arrows_button_down = arrows_button_down; \ No newline at end of file diff --git a/dist/linea/arrows_button_off.js b/dist/linea/arrows_button_off.js new file mode 100644 index 000000000..632912b09 --- /dev/null +++ b/dist/linea/arrows_button_off.js @@ -0,0 +1,33 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_button_off = void 0; +var arrows_button_off = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M47,48c8.837,0,16-7.163,16-16s-7.163-16-16-16H17\r\n\tC8.163,16,1,23.163,1,32s7.163,16,16,16H47z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "17", + "cy": "32", + "r": "12" + }, + "children": [] + }] +}; +exports.arrows_button_off = arrows_button_off; \ No newline at end of file diff --git a/dist/linea/arrows_button_on.js b/dist/linea/arrows_button_on.js new file mode 100644 index 000000000..c848307f5 --- /dev/null +++ b/dist/linea/arrows_button_on.js @@ -0,0 +1,33 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_button_on = void 0; +var arrows_button_on = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M47,48c8.837,0,16-7.163,16-16s-7.163-16-16-16H17\r\n\tC8.163,16,1,23.163,1,32s7.163,16,16,16H47z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "47", + "cy": "32", + "r": "12" + }, + "children": [] + }] +}; +exports.arrows_button_on = arrows_button_on; \ No newline at end of file diff --git a/dist/linea/arrows_button_up.js b/dist/linea/arrows_button_up.js new file mode 100644 index 000000000..20fbba702 --- /dev/null +++ b/dist/linea/arrows_button_up.js @@ -0,0 +1,33 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_button_up = void 0; +var arrows_button_up = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M48,17c0-8.837-7.163-16-16-16S16,8.163,16,17v30\r\n\tc0,8.837,7.163,16,16,16s16-7.163,16-16V17z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "17", + "r": "12" + }, + "children": [] + }] +}; +exports.arrows_button_up = arrows_button_up; \ No newline at end of file diff --git a/dist/linea/arrows_check.js b/dist/linea/arrows_check.js new file mode 100644 index 000000000..be82f9c85 --- /dev/null +++ b/dist/linea/arrows_check.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_check = void 0; +var arrows_check = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "13,33 25,45 \r\n\t\t49,21 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "13,33 25,45 \r\n\t\t49,21 \t" + }, + "children": [] + }] + }] + }] +}; +exports.arrows_check = arrows_check; \ No newline at end of file diff --git a/dist/linea/arrows_circle_check.js b/dist/linea/arrows_circle_check.js new file mode 100644 index 000000000..8175e80f4 --- /dev/null +++ b/dist/linea/arrows_circle_check.js @@ -0,0 +1,65 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_circle_check = void 0; +var arrows_circle_check = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "13,33 25,45 \r\n\t\t49,21 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "13,33 25,45 \r\n\t\t49,21 \t" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "30.999" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "30.999" + }, + "children": [] + }] + }] + }] +}; +exports.arrows_circle_check = arrows_circle_check; \ No newline at end of file diff --git a/dist/linea/arrows_circle_down.js b/dist/linea/arrows_circle_down.js new file mode 100644 index 000000000..14bf7ae91 --- /dev/null +++ b/dist/linea/arrows_circle_down.js @@ -0,0 +1,65 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_circle_down = void 0; +var arrows_circle_down = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "15,24 32,41 \r\n\t\t49,24 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "15,24 32,41 \r\n\t\t49,24 \t" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "30.999" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "30.999" + }, + "children": [] + }] + }] + }] +}; +exports.arrows_circle_down = arrows_circle_down; \ No newline at end of file diff --git a/dist/linea/arrows_circle_downleft.js b/dist/linea/arrows_circle_downleft.js new file mode 100644 index 000000000..162510c5c --- /dev/null +++ b/dist/linea/arrows_circle_downleft.js @@ -0,0 +1,65 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_circle_downleft = void 0; +var arrows_circle_downleft = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "30.999" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "30.999" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "47,41 23,41 \r\n\t\t23,17 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "47,41 23,41 \r\n\t\t23,17 \t" + }, + "children": [] + }] + }] + }] +}; +exports.arrows_circle_downleft = arrows_circle_downleft; \ No newline at end of file diff --git a/dist/linea/arrows_circle_downright.js b/dist/linea/arrows_circle_downright.js new file mode 100644 index 000000000..db9fb180f --- /dev/null +++ b/dist/linea/arrows_circle_downright.js @@ -0,0 +1,65 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_circle_downright = void 0; +var arrows_circle_downright = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "30.999" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "30.999" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "41,17 41,41 \r\n\t\t17,41 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "41,17 41,41 \r\n\t\t17,41 \t" + }, + "children": [] + }] + }] + }] +}; +exports.arrows_circle_downright = arrows_circle_downright; \ No newline at end of file diff --git a/dist/linea/arrows_circle_left.js b/dist/linea/arrows_circle_left.js new file mode 100644 index 000000000..b065cb7a1 --- /dev/null +++ b/dist/linea/arrows_circle_left.js @@ -0,0 +1,65 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_circle_left = void 0; +var arrows_circle_left = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "27,15 44,32 \r\n\t\t27,49 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "27,15 44,32 \r\n\t\t27,49 \t" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "30.999" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "30.999" + }, + "children": [] + }] + }] + }] +}; +exports.arrows_circle_left = arrows_circle_left; \ No newline at end of file diff --git a/dist/linea/arrows_circle_minus.js b/dist/linea/arrows_circle_minus.js new file mode 100644 index 000000000..3881e1a81 --- /dev/null +++ b/dist/linea/arrows_circle_minus.js @@ -0,0 +1,69 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_circle_minus = void 0; +var arrows_circle_minus = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "14", + "y1": "31", + "x2": "50", + "y2": "31" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "14", + "y1": "31", + "x2": "50", + "y2": "31" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "30.999" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "30.999" + }, + "children": [] + }] + }] + }] +}; +exports.arrows_circle_minus = arrows_circle_minus; \ No newline at end of file diff --git a/dist/linea/arrows_circle_plus.js b/dist/linea/arrows_circle_plus.js new file mode 100644 index 000000000..741b634cd --- /dev/null +++ b/dist/linea/arrows_circle_plus.js @@ -0,0 +1,95 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_circle_plus = void 0; +var arrows_circle_plus = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "50", + "x2": "32", + "y2": "14" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "50", + "x2": "32", + "y2": "14" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "14", + "y1": "32", + "x2": "50", + "y2": "32" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "14", + "y1": "32", + "x2": "50", + "y2": "32" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "30.999" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "30.999" + }, + "children": [] + }] + }] + }] +}; +exports.arrows_circle_plus = arrows_circle_plus; \ No newline at end of file diff --git a/dist/linea/arrows_circle_remove.js b/dist/linea/arrows_circle_remove.js new file mode 100644 index 000000000..162c5fe3b --- /dev/null +++ b/dist/linea/arrows_circle_remove.js @@ -0,0 +1,99 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_circle_remove = void 0; +var arrows_circle_remove = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "18.947", + "y1": "17.153", + "x2": "45.045", + "y2": "43.056" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "18.947", + "y1": "17.153", + "x2": "45.045", + "y2": "43.056" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "19.045", + "y1": "43.153", + "x2": "44.947", + "y2": "17.056" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "19.045", + "y1": "43.153", + "x2": "44.947", + "y2": "17.056" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "30.999" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "30.999" + }, + "children": [] + }] + }] + }] +}; +exports.arrows_circle_remove = arrows_circle_remove; \ No newline at end of file diff --git a/dist/linea/arrows_circle_right.js b/dist/linea/arrows_circle_right.js new file mode 100644 index 000000000..56a071a8f --- /dev/null +++ b/dist/linea/arrows_circle_right.js @@ -0,0 +1,65 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_circle_right = void 0; +var arrows_circle_right = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "37,15 20,32 \r\n\t\t37,49 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "37,15 20,32 \r\n\t\t37,49 \t" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "30.999" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "30.999" + }, + "children": [] + }] + }] + }] +}; +exports.arrows_circle_right = arrows_circle_right; \ No newline at end of file diff --git a/dist/linea/arrows_circle_up.js b/dist/linea/arrows_circle_up.js new file mode 100644 index 000000000..e0a1d0390 --- /dev/null +++ b/dist/linea/arrows_circle_up.js @@ -0,0 +1,65 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_circle_up = void 0; +var arrows_circle_up = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "15,40 32,23 \r\n\t\t49,40 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "15,40 32,23 \r\n\t\t49,40 \t" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "30.999" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "30.999" + }, + "children": [] + }] + }] + }] +}; +exports.arrows_circle_up = arrows_circle_up; \ No newline at end of file diff --git a/dist/linea/arrows_circle_upleft.js b/dist/linea/arrows_circle_upleft.js new file mode 100644 index 000000000..32be30d3d --- /dev/null +++ b/dist/linea/arrows_circle_upleft.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_circle_upleft = void 0; +var arrows_circle_upleft = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "30.999" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "30.999" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,47 23,23 47,23 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,47 23,23 47,23 \t" + }, + "children": [] + }] + }] + }] +}; +exports.arrows_circle_upleft = arrows_circle_upleft; \ No newline at end of file diff --git a/dist/linea/arrows_circle_upright.js b/dist/linea/arrows_circle_upright.js new file mode 100644 index 000000000..3388f6a07 --- /dev/null +++ b/dist/linea/arrows_circle_upright.js @@ -0,0 +1,65 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_circle_upright = void 0; +var arrows_circle_upright = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "30.999" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "30.999" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "17,23 41,23 \r\n\t\t41,47 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "17,23 41,23 \r\n\t\t41,47 \t" + }, + "children": [] + }] + }] + }] +}; +exports.arrows_circle_upright = arrows_circle_upright; \ No newline at end of file diff --git a/dist/linea/arrows_clockwise.js b/dist/linea/arrows_clockwise.js new file mode 100644 index 000000000..e604d2946 --- /dev/null +++ b/dist/linea/arrows_clockwise.js @@ -0,0 +1,42 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_clockwise = void 0; +var arrows_clockwise = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M32,1C14.879,1,1,14.879,1,32s13.879,31,31,31" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M32,1c17.121,0,31,13.879,31,31\r\n\tc0,6.713-2.134,12.926-5.759,18l-5.62,5.621" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "51,45 51,56 \r\n\t62,56 " + }, + "children": [] + }] +}; +exports.arrows_clockwise = arrows_clockwise; \ No newline at end of file diff --git a/dist/linea/arrows_clockwise_dashed.js b/dist/linea/arrows_clockwise_dashed.js new file mode 100644 index 000000000..85fc45723 --- /dev/null +++ b/dist/linea/arrows_clockwise_dashed.js @@ -0,0 +1,106 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_clockwise_dashed = void 0; +var arrows_clockwise_dashed = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M32,1c-0.672,0-1.339,0.021-2,0.063" + }, + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M32,1c-0.672,0-1.339,0.021-2,0.063" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4.0593,2.0296", + "d": "M27.979,1.258\r\n\t\t\tC12.758,3.229,1,16.241,1,32c0,16.104,12.279,29.34,27.986,30.855" + }, + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4.0593,2.0296", + "d": "M27.979,1.258\r\n\t\t\tC12.758,3.229,1,16.241,1,32c0,16.104,12.279,29.34,27.986,30.855" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M30,62.937C30.661,62.979,31.328,63,32,63" + }, + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M30,62.937C30.661,62.979,31.328,63,32,63" + }, + "children": [] + }] + }] + }] + }] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M32,1c17.121,0,31,13.879,31,31\r\n\tc0,6.713-2.134,12.926-5.759,18l-5.62,5.621" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "51,45 51,56 \r\n\t62,56 " + }, + "children": [] + }] +}; +exports.arrows_clockwise_dashed = arrows_clockwise_dashed; \ No newline at end of file diff --git a/dist/linea/arrows_compress.js b/dist/linea/arrows_compress.js new file mode 100644 index 000000000..5185f3f81 --- /dev/null +++ b/dist/linea/arrows_compress.js @@ -0,0 +1,107 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_compress = void 0; +var arrows_compress = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "47,25 40,32 \r\n\t47,39 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "17,39 24,32 \r\n\t17,25 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "24", + "y1": "32", + "x2": "0", + "y2": "32" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "64", + "y1": "32", + "x2": "40", + "y2": "32" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "25,17 32,24 \r\n\t39,17 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "39,47 32,40 \r\n\t25,47 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "40", + "x2": "32", + "y2": "64" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "0", + "x2": "32", + "y2": "24" + }, + "children": [] + }] +}; +exports.arrows_compress = arrows_compress; \ No newline at end of file diff --git a/dist/linea/arrows_deny.js b/dist/linea/arrows_deny.js new file mode 100644 index 000000000..bf106cce0 --- /dev/null +++ b/dist/linea/arrows_deny.js @@ -0,0 +1,34 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_deny = void 0; +var arrows_deny = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M53.919,10.08c12.108,12.106,12.108,31.733,0,43.84\r\n\tc-12.105,12.107-31.732,12.107-43.838,0c-12.108-12.106-12.108-31.733,0-43.84C22.187-2.027,41.813-2.027,53.919,10.08z" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "10.08", + "y1": "10.08", + "x2": "53.92", + "y2": "53.92" + }, + "children": [] + }] +}; +exports.arrows_deny = arrows_deny; \ No newline at end of file diff --git a/dist/linea/arrows_diagonal.js b/dist/linea/arrows_diagonal.js new file mode 100644 index 000000000..797d7ee1e --- /dev/null +++ b/dist/linea/arrows_diagonal.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_diagonal = void 0; +var arrows_diagonal = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "63,12 63,1 52,1 \r\n\t" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "1,52 1,63 12,63 \r\n\t" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "x1": "1", + "y1": "63", + "x2": "63", + "y2": "1" + }, + "children": [] + }] +}; +exports.arrows_diagonal = arrows_diagonal; \ No newline at end of file diff --git a/dist/linea/arrows_diagonal2.js b/dist/linea/arrows_diagonal2.js new file mode 100644 index 000000000..67d384ce8 --- /dev/null +++ b/dist/linea/arrows_diagonal2.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_diagonal2 = void 0; +var arrows_diagonal2 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "52,63 63,63 \r\n\t63,52 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "12,1 1,1 1,12 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "x1": "1", + "y1": "1", + "x2": "63", + "y2": "63" + }, + "children": [] + }] +}; +exports.arrows_diagonal2 = arrows_diagonal2; \ No newline at end of file diff --git a/dist/linea/arrows_down.js b/dist/linea/arrows_down.js new file mode 100644 index 000000000..053da006d --- /dev/null +++ b/dist/linea/arrows_down.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_down = void 0; +var arrows_down = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "15,24 32,41 \r\n\t\t49,24 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "15,24 32,41 \r\n\t\t49,24 \t" + }, + "children": [] + }] + }] + }] +}; +exports.arrows_down = arrows_down; \ No newline at end of file diff --git a/dist/linea/arrows_downleft.js b/dist/linea/arrows_downleft.js new file mode 100644 index 000000000..0486565b6 --- /dev/null +++ b/dist/linea/arrows_downleft.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_downleft = void 0; +var arrows_downleft = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "47,41 23,41 \r\n\t\t23,17 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "47,41 23,41 \r\n\t\t23,17 \t" + }, + "children": [] + }] + }] + }] +}; +exports.arrows_downleft = arrows_downleft; \ No newline at end of file diff --git a/dist/linea/arrows_downright.js b/dist/linea/arrows_downright.js new file mode 100644 index 000000000..26f660293 --- /dev/null +++ b/dist/linea/arrows_downright.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_downright = void 0; +var arrows_downright = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "41,17 41,41 \r\n\t\t17,41 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "41,17 41,41 \r\n\t\t17,41 \t" + }, + "children": [] + }] + }] + }] +}; +exports.arrows_downright = arrows_downright; \ No newline at end of file diff --git a/dist/linea/arrows_drag_down.js b/dist/linea/arrows_drag_down.js new file mode 100644 index 000000000..53a80e532 --- /dev/null +++ b/dist/linea/arrows_drag_down.js @@ -0,0 +1,64 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_drag_down = void 0; +var arrows_drag_down = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "31", + "x2": "32", + "y2": "63" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "31", + "x2": "32", + "y2": "63" + }, + "children": [] + }] + }] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "16", + "r": "15" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "23,54 32,63 \r\n\t41,54 " + }, + "children": [] + }] +}; +exports.arrows_drag_down = arrows_drag_down; \ No newline at end of file diff --git a/dist/linea/arrows_drag_down_dashed.js b/dist/linea/arrows_drag_down_dashed.js new file mode 100644 index 000000000..85c41515c --- /dev/null +++ b/dist/linea/arrows_drag_down_dashed.js @@ -0,0 +1,66 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_drag_down_dashed = void 0; +var arrows_drag_down_dashed = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "32", + "y1": "31", + "x2": "32", + "y2": "63" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "32", + "y1": "31", + "x2": "32", + "y2": "63" + }, + "children": [] + }] + }] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "16", + "r": "15" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "23,54 32,63 \r\n\t41,54 " + }, + "children": [] + }] +}; +exports.arrows_drag_down_dashed = arrows_drag_down_dashed; \ No newline at end of file diff --git a/dist/linea/arrows_drag_horiz.js b/dist/linea/arrows_drag_horiz.js new file mode 100644 index 000000000..e5ab00652 --- /dev/null +++ b/dist/linea/arrows_drag_horiz.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_drag_horiz = void 0; +var arrows_drag_horiz = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "24", + "y1": "0", + "x2": "24", + "y2": "64" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "0", + "x2": "32", + "y2": "64" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "40", + "y1": "0", + "x2": "40", + "y2": "64" + }, + "children": [] + }] +}; +exports.arrows_drag_horiz = arrows_drag_horiz; \ No newline at end of file diff --git a/dist/linea/arrows_drag_left.js b/dist/linea/arrows_drag_left.js new file mode 100644 index 000000000..012ad3442 --- /dev/null +++ b/dist/linea/arrows_drag_left.js @@ -0,0 +1,64 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_drag_left = void 0; +var arrows_drag_left = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "33", + "y1": "32", + "x2": "1", + "y2": "32" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "33", + "y1": "32", + "x2": "1", + "y2": "32" + }, + "children": [] + }] + }] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "48", + "cy": "32", + "r": "15" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "10,23 1,32 10,41 \r\n\t" + }, + "children": [] + }] +}; +exports.arrows_drag_left = arrows_drag_left; \ No newline at end of file diff --git a/dist/linea/arrows_drag_left_dashed.js b/dist/linea/arrows_drag_left_dashed.js new file mode 100644 index 000000000..1506765b0 --- /dev/null +++ b/dist/linea/arrows_drag_left_dashed.js @@ -0,0 +1,66 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_drag_left_dashed = void 0; +var arrows_drag_left_dashed = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "33", + "y1": "32", + "x2": "1", + "y2": "32" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "33", + "y1": "32", + "x2": "1", + "y2": "32" + }, + "children": [] + }] + }] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "48", + "cy": "32", + "r": "15" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "10,23 1,32 10,41 \r\n\t" + }, + "children": [] + }] +}; +exports.arrows_drag_left_dashed = arrows_drag_left_dashed; \ No newline at end of file diff --git a/dist/linea/arrows_drag_right.js b/dist/linea/arrows_drag_right.js new file mode 100644 index 000000000..f2fa3b810 --- /dev/null +++ b/dist/linea/arrows_drag_right.js @@ -0,0 +1,64 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_drag_right = void 0; +var arrows_drag_right = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "31", + "y1": "32", + "x2": "63", + "y2": "32" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "31", + "y1": "32", + "x2": "63", + "y2": "32" + }, + "children": [] + }] + }] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "16", + "cy": "32", + "r": "15" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "54,41 63,32 \r\n\t54,23 " + }, + "children": [] + }] +}; +exports.arrows_drag_right = arrows_drag_right; \ No newline at end of file diff --git a/dist/linea/arrows_drag_right_dashed.js b/dist/linea/arrows_drag_right_dashed.js new file mode 100644 index 000000000..c9ebdddac --- /dev/null +++ b/dist/linea/arrows_drag_right_dashed.js @@ -0,0 +1,66 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_drag_right_dashed = void 0; +var arrows_drag_right_dashed = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "31", + "y1": "32", + "x2": "63", + "y2": "32" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "31", + "y1": "32", + "x2": "63", + "y2": "32" + }, + "children": [] + }] + }] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "16", + "cy": "32", + "r": "15" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "54,41 63,32 \r\n\t54,23 " + }, + "children": [] + }] +}; +exports.arrows_drag_right_dashed = arrows_drag_right_dashed; \ No newline at end of file diff --git a/dist/linea/arrows_drag_up.js b/dist/linea/arrows_drag_up.js new file mode 100644 index 000000000..903f63d01 --- /dev/null +++ b/dist/linea/arrows_drag_up.js @@ -0,0 +1,64 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_drag_up = void 0; +var arrows_drag_up = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "33", + "x2": "32", + "y2": "1" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "33", + "x2": "32", + "y2": "1" + }, + "children": [] + }] + }] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "48", + "r": "15" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "41,10 32,1 23,10 \r\n\t" + }, + "children": [] + }] +}; +exports.arrows_drag_up = arrows_drag_up; \ No newline at end of file diff --git a/dist/linea/arrows_drag_up_dashed.js b/dist/linea/arrows_drag_up_dashed.js new file mode 100644 index 000000000..c365fcbd6 --- /dev/null +++ b/dist/linea/arrows_drag_up_dashed.js @@ -0,0 +1,66 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_drag_up_dashed = void 0; +var arrows_drag_up_dashed = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "32", + "y1": "33", + "x2": "32", + "y2": "1" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "32", + "y1": "33", + "x2": "32", + "y2": "1" + }, + "children": [] + }] + }] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "48", + "r": "15" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "41,10 32,1 23,10 \r\n\t" + }, + "children": [] + }] +}; +exports.arrows_drag_up_dashed = arrows_drag_up_dashed; \ No newline at end of file diff --git a/dist/linea/arrows_drag_vert.js b/dist/linea/arrows_drag_vert.js new file mode 100644 index 000000000..6eb4a7941 --- /dev/null +++ b/dist/linea/arrows_drag_vert.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_drag_vert = void 0; +var arrows_drag_vert = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "0", + "y1": "40", + "x2": "64", + "y2": "40" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "0", + "y1": "32", + "x2": "64", + "y2": "32" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "0", + "y1": "24", + "x2": "64", + "y2": "24" + }, + "children": [] + }] +}; +exports.arrows_drag_vert = arrows_drag_vert; \ No newline at end of file diff --git a/dist/linea/arrows_exclamation.js b/dist/linea/arrows_exclamation.js new file mode 100644 index 000000000..c83813694 --- /dev/null +++ b/dist/linea/arrows_exclamation.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_exclamation = void 0; +var arrows_exclamation = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "17", + "x2": "32", + "y2": "39" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "43", + "x2": "32", + "y2": "47" + }, + "children": [] + }] +}; +exports.arrows_exclamation = arrows_exclamation; \ No newline at end of file diff --git a/dist/linea/arrows_expand.js b/dist/linea/arrows_expand.js new file mode 100644 index 000000000..b641b0782 --- /dev/null +++ b/dist/linea/arrows_expand.js @@ -0,0 +1,207 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_expand = void 0; +var arrows_expand = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "1,12 1,1 12,1 \t\r\n\t\t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "1,12 1,1 12,1 \t\r\n\t\t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "12,63 1,63 1,52 \r\n\t\t\t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "12,63 1,63 1,52 \r\n\t\t\t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "63,52 63,63 \r\n\t\t52,63 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "63,52 63,63 \r\n\t\t52,63 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "52,1 63,1 63,12 \r\n\t\t\t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "52,1 63,1 63,12 \r\n\t\t\t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "2", + "y1": "2", + "x2": "22", + "y2": "22" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "2", + "y1": "2", + "x2": "22", + "y2": "22" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "42", + "y1": "42", + "x2": "62", + "y2": "62" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "42", + "y1": "42", + "x2": "62", + "y2": "62" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "2", + "y1": "62", + "x2": "22", + "y2": "42" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "2", + "y1": "62", + "x2": "22", + "y2": "42" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "42", + "y1": "22", + "x2": "62", + "y2": "2" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "42", + "y1": "22", + "x2": "62", + "y2": "2" + }, + "children": [] + }] + }] + }] +}; +exports.arrows_expand = arrows_expand; \ No newline at end of file diff --git a/dist/linea/arrows_expand_diagonal1.js b/dist/linea/arrows_expand_diagonal1.js new file mode 100644 index 000000000..640aa5622 --- /dev/null +++ b/dist/linea/arrows_expand_diagonal1.js @@ -0,0 +1,87 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_expand_diagonal1 = void 0; +var arrows_expand_diagonal1 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "13", + "y1": "1", + "x2": "63", + "y2": "51" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "1", + "y1": "13", + "x2": "51.166", + "y2": "63.166" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "63,12 63,1 52,1 \r\n\t" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "1,52 1,63 12,63 \r\n\t" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "x1": "1", + "y1": "63", + "x2": "26", + "y2": "38" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "x1": "38", + "y1": "26", + "x2": "63", + "y2": "1" + }, + "children": [] + }] +}; +exports.arrows_expand_diagonal1 = arrows_expand_diagonal1; \ No newline at end of file diff --git a/dist/linea/arrows_expand_horizontal1.js b/dist/linea/arrows_expand_horizontal1.js new file mode 100644 index 000000000..4973258e9 --- /dev/null +++ b/dist/linea/arrows_expand_horizontal1.js @@ -0,0 +1,85 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_expand_horizontal1 = void 0; +var arrows_expand_horizontal1 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "21", + "y1": "0", + "x2": "21", + "y2": "64" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "43", + "y1": "64", + "x2": "43", + "y2": "0" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "8,25 1,32 8,39 \r\n\t" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "1", + "y1": "32", + "x2": "21", + "y2": "32" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "56,39 63,32 \r\n\t56,25 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "63", + "y1": "32", + "x2": "43", + "y2": "32" + }, + "children": [] + }] +}; +exports.arrows_expand_horizontal1 = arrows_expand_horizontal1; \ No newline at end of file diff --git a/dist/linea/arrows_expand_vertical1.js b/dist/linea/arrows_expand_vertical1.js new file mode 100644 index 000000000..d99605bfd --- /dev/null +++ b/dist/linea/arrows_expand_vertical1.js @@ -0,0 +1,85 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_expand_vertical1 = void 0; +var arrows_expand_vertical1 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "64", + "y1": "21", + "x2": "0", + "y2": "21" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "0", + "y1": "43", + "x2": "64", + "y2": "43" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "39,8 32,1 25,8 \r\n\t" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "1", + "x2": "32", + "y2": "21" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "25,56 32,63 \r\n\t39,56 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "63", + "x2": "32", + "y2": "43" + }, + "children": [] + }] +}; +exports.arrows_expand_vertical1 = arrows_expand_vertical1; \ No newline at end of file diff --git a/dist/linea/arrows_fit_horizontal.js b/dist/linea/arrows_fit_horizontal.js new file mode 100644 index 000000000..a7e70e8b4 --- /dev/null +++ b/dist/linea/arrows_fit_horizontal.js @@ -0,0 +1,69 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_fit_horizontal = void 0; +var arrows_fit_horizontal = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "16,25 9,32 16,39 \r\n\t" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "48,39 55,32 \r\n\t48,25 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "55,32 43,32 9,32 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "63", + "y1": "0", + "x2": "63", + "y2": "64" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "1", + "y1": "0", + "x2": "1", + "y2": "64" + }, + "children": [] + }] +}; +exports.arrows_fit_horizontal = arrows_fit_horizontal; \ No newline at end of file diff --git a/dist/linea/arrows_fit_vertical.js b/dist/linea/arrows_fit_vertical.js new file mode 100644 index 000000000..201f4eb3a --- /dev/null +++ b/dist/linea/arrows_fit_vertical.js @@ -0,0 +1,69 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_fit_vertical = void 0; +var arrows_fit_vertical = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "39,16 32,9 25,16 \r\n\t" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "25,48 32,55 \r\n\t39,48 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "32,55 32,43 32,9 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "0", + "y1": "1", + "x2": "64", + "y2": "1" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "0", + "y1": "63", + "x2": "64", + "y2": "63" + }, + "children": [] + }] +}; +exports.arrows_fit_vertical = arrows_fit_vertical; \ No newline at end of file diff --git a/dist/linea/arrows_glide.js b/dist/linea/arrows_glide.js new file mode 100644 index 000000000..3e1f54cc7 --- /dev/null +++ b/dist/linea/arrows_glide.js @@ -0,0 +1,128 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_glide = void 0; +var arrows_glide = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "45.968,48.968 \r\n\t\t31.967,62.968 18,49 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "45.968,48.968 \r\n\t\t31.967,62.968 18,49 \t" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "18,15 \r\n\t\t32.032,0.968 46.032,14.968 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "18,15 \r\n\t\t32.032,0.968 46.032,14.968 \t" + }, + "children": [] + }] + }] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "cx": "31.968", + "cy": "31.968", + "r": "5" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "49,18 63,32 \r\n\t\t49,46 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "49,18 63,32 \r\n\t\t49,46 \t" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "15.032,45.968 \r\n\t\t1,31.935 14.968,17.968 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "15.032,45.968 \r\n\t\t1,31.935 14.968,17.968 \t" + }, + "children": [] + }] + }] + }] +}; +exports.arrows_glide = arrows_glide; \ No newline at end of file diff --git a/dist/linea/arrows_glide_horizontal.js b/dist/linea/arrows_glide_horizontal.js new file mode 100644 index 000000000..c6480e75c --- /dev/null +++ b/dist/linea/arrows_glide_horizontal.js @@ -0,0 +1,76 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_glide_horizontal = void 0; +var arrows_glide_horizontal = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "46,15 63,32 \r\n\t\t46,49 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "46,15 63,32 \r\n\t\t46,49 \t" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "18,48.935 \r\n\t\t1,31.935 18,14.935 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "18,48.935 \r\n\t\t1,31.935 18,14.935 \t" + }, + "children": [] + }] + }] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "5" + }, + "children": [] + }] +}; +exports.arrows_glide_horizontal = arrows_glide_horizontal; \ No newline at end of file diff --git a/dist/linea/arrows_glide_vertical.js b/dist/linea/arrows_glide_vertical.js new file mode 100644 index 000000000..cf10fa5f5 --- /dev/null +++ b/dist/linea/arrows_glide_vertical.js @@ -0,0 +1,76 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_glide_vertical = void 0; +var arrows_glide_vertical = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "48.968,45.968 \r\n\t\t31.967,62.968 14.968,45.967 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "48.968,45.968 \r\n\t\t31.967,62.968 14.968,45.967 \t" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "15.032,17.967 \r\n\t\t32.032,0.968 49.032,17.968 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "15.032,17.967 \r\n\t\t32.032,0.968 49.032,17.968 \t" + }, + "children": [] + }] + }] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "cx": "31.968", + "cy": "31.968", + "r": "5" + }, + "children": [] + }] +}; +exports.arrows_glide_vertical = arrows_glide_vertical; \ No newline at end of file diff --git a/dist/linea/arrows_hamburger1.js b/dist/linea/arrows_hamburger1.js new file mode 100644 index 000000000..a69c4d64e --- /dev/null +++ b/dist/linea/arrows_hamburger1.js @@ -0,0 +1,89 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_hamburger1 = void 0; +var arrows_hamburger1 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "0", + "y1": "21", + "x2": "6", + "y2": "21" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "16", + "y1": "21", + "x2": "64", + "y2": "21" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "0", + "y1": "33", + "x2": "6", + "y2": "33" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "16", + "y1": "33", + "x2": "64", + "y2": "33" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "0", + "y1": "45", + "x2": "6", + "y2": "45" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "16", + "y1": "45", + "x2": "64", + "y2": "45" + }, + "children": [] + }] +}; +exports.arrows_hamburger1 = arrows_hamburger1; \ No newline at end of file diff --git a/dist/linea/arrows_horizontal.js b/dist/linea/arrows_horizontal.js new file mode 100644 index 000000000..6a27b5c67 --- /dev/null +++ b/dist/linea/arrows_horizontal.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_horizontal = void 0; +var arrows_horizontal = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "8,25 1,32 8,39 \r\n\t" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "56,39 63,32 \r\n\t56,25 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "63,32 43,32 1,32 " + }, + "children": [] + }] +}; +exports.arrows_horizontal = arrows_horizontal; \ No newline at end of file diff --git a/dist/linea/arrows_info.js b/dist/linea/arrows_info.js new file mode 100644 index 000000000..3b0985202 --- /dev/null +++ b/dist/linea/arrows_info.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_info = void 0; +var arrows_info = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "47", + "x2": "32", + "y2": "25" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "21", + "x2": "32", + "y2": "17" + }, + "children": [] + }] +}; +exports.arrows_info = arrows_info; \ No newline at end of file diff --git a/dist/linea/arrows_keyboard_alt.js b/dist/linea/arrows_keyboard_alt.js new file mode 100644 index 000000000..dd52fc2af --- /dev/null +++ b/dist/linea/arrows_keyboard_alt.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_keyboard_alt = void 0; +var arrows_keyboard_alt = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "1", + "fill": "none", + "stroke": "#231F20", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "width": "62", + "height": "62" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#231F20", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "6,24 18,24 30,42 \r\n\t58,42 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#231F20", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "x1": "58", + "y1": "24", + "x2": "30", + "y2": "24" + }, + "children": [] + }] +}; +exports.arrows_keyboard_alt = arrows_keyboard_alt; \ No newline at end of file diff --git a/dist/linea/arrows_keyboard_delete.js b/dist/linea/arrows_keyboard_delete.js new file mode 100644 index 000000000..eb7a1b2c2 --- /dev/null +++ b/dist/linea/arrows_keyboard_delete.js @@ -0,0 +1,61 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_keyboard_delete = void 0; +var arrows_keyboard_delete = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "1", + "fill": "none", + "stroke": "#231F20", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "width": "62", + "height": "62" + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#231F20", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "55,44 19,44 9,32 19,20 55,20 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#231F20", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "27", + "y1": "39", + "x2": "41", + "y2": "25" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#231F20", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "27", + "y1": "25", + "x2": "41", + "y2": "39" + }, + "children": [] + }] +}; +exports.arrows_keyboard_delete = arrows_keyboard_delete; \ No newline at end of file diff --git a/dist/linea/arrows_keyboard_left.js b/dist/linea/arrows_keyboard_left.js new file mode 100644 index 000000000..fe807b6bd --- /dev/null +++ b/dist/linea/arrows_keyboard_left.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_keyboard_left = void 0; +var arrows_keyboard_left = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "1", + "fill": "none", + "stroke": "#231F20", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "width": "62", + "height": "62" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "38,21 22,32 \r\n\t\t38,43 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "38,21 22,32 \r\n\t\t38,43 \t" + }, + "children": [] + }] + }] + }] +}; +exports.arrows_keyboard_left = arrows_keyboard_left; \ No newline at end of file diff --git a/dist/linea/arrows_keyboard_return.js b/dist/linea/arrows_keyboard_return.js new file mode 100644 index 000000000..74a3c7e10 --- /dev/null +++ b/dist/linea/arrows_keyboard_return.js @@ -0,0 +1,60 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_keyboard_return = void 0; +var arrows_keyboard_return = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "1", + "fill": "none", + "stroke": "#231F20", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "width": "62", + "height": "62" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "9,37 55,37 55,18 44,18 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "9,37 55,37 55,18 44,18 \t" + }, + "children": [] + }] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "18,46 9,37 18,28 \r\n\t" + }, + "children": [] + }] +}; +exports.arrows_keyboard_return = arrows_keyboard_return; \ No newline at end of file diff --git a/dist/linea/arrows_keyboard_right.js b/dist/linea/arrows_keyboard_right.js new file mode 100644 index 000000000..f5c1ce491 --- /dev/null +++ b/dist/linea/arrows_keyboard_right.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_keyboard_right = void 0; +var arrows_keyboard_right = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "1", + "fill": "none", + "stroke": "#231F20", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "width": "62", + "height": "62" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "26,21 42,32 \r\n\t\t26,43 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "26,21 42,32 \r\n\t\t26,43 \t" + }, + "children": [] + }] + }] + }] +}; +exports.arrows_keyboard_right = arrows_keyboard_right; \ No newline at end of file diff --git a/dist/linea/arrows_keyboard_shift.js b/dist/linea/arrows_keyboard_shift.js new file mode 100644 index 000000000..9acc59e97 --- /dev/null +++ b/dist/linea/arrows_keyboard_shift.js @@ -0,0 +1,65 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_keyboard_shift = void 0; +var arrows_keyboard_shift = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "1", + "fill": "none", + "stroke": "#231F20", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "width": "62", + "height": "62" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "1", + "y": "1", + "fill": "none", + "stroke": "#231F20", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "width": "62", + "height": "62" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "17,36 32,18 \r\n\t\t47,36 39,36 39.001,46 25,46 25,36 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "17,36 32,18 \r\n\t\t47,36 39,36 39.001,46 25,46 25,36 \t" + }, + "children": [] + }] + }] + }] +}; +exports.arrows_keyboard_shift = arrows_keyboard_shift; \ No newline at end of file diff --git a/dist/linea/arrows_keyboard_tab.js b/dist/linea/arrows_keyboard_tab.js new file mode 100644 index 000000000..5b30f3730 --- /dev/null +++ b/dist/linea/arrows_keyboard_tab.js @@ -0,0 +1,59 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_keyboard_tab = void 0; +var arrows_keyboard_tab = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "1", + "fill": "none", + "stroke": "#231F20", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "width": "62", + "height": "62" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "39,25 46,32 \r\n\t39,39 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,32 12,32 46,32 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "50", + "y1": "23", + "x2": "50", + "y2": "41" + }, + "children": [] + }] +}; +exports.arrows_keyboard_tab = arrows_keyboard_tab; \ No newline at end of file diff --git a/dist/linea/arrows_keyboard_up.js b/dist/linea/arrows_keyboard_up.js new file mode 100644 index 000000000..741de7172 --- /dev/null +++ b/dist/linea/arrows_keyboard_up.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_keyboard_up = void 0; +var arrows_keyboard_up = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "1", + "fill": "none", + "stroke": "#231F20", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "width": "62", + "height": "62" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "21,40 32,24 \r\n\t\t43,40 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "21,40 32,24 \r\n\t\t43,40 \t" + }, + "children": [] + }] + }] + }] +}; +exports.arrows_keyboard_up = arrows_keyboard_up; \ No newline at end of file diff --git a/dist/linea/arrows_left.js b/dist/linea/arrows_left.js new file mode 100644 index 000000000..d23cfaa18 --- /dev/null +++ b/dist/linea/arrows_left.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_left = void 0; +var arrows_left = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "37,15 20,32 \r\n\t\t37,49 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "37,15 20,32 \r\n\t\t37,49 \t" + }, + "children": [] + }] + }] + }] +}; +exports.arrows_left = arrows_left; \ No newline at end of file diff --git a/dist/linea/arrows_minus.js b/dist/linea/arrows_minus.js new file mode 100644 index 000000000..4a508e3f1 --- /dev/null +++ b/dist/linea/arrows_minus.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_minus = void 0; +var arrows_minus = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "14", + "y1": "31", + "x2": "50", + "y2": "31" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "14", + "y1": "31", + "x2": "50", + "y2": "31" + }, + "children": [] + }] + }] + }] +}; +exports.arrows_minus = arrows_minus; \ No newline at end of file diff --git a/dist/linea/arrows_move.js b/dist/linea/arrows_move.js new file mode 100644 index 000000000..edc4bc162 --- /dev/null +++ b/dist/linea/arrows_move.js @@ -0,0 +1,107 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_move = void 0; +var arrows_move = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "56,39 63,32 \r\n\t56,25 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "8,25 1,32 8,39 \r\n\t" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "1", + "y1": "32", + "x2": "27", + "y2": "32" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "37", + "y1": "32", + "x2": "63", + "y2": "32" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "39,8 32,1 25,8 \r\n\t" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "25,56 32,63 \r\n\t39,56 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "63", + "x2": "32", + "y2": "37" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "27", + "x2": "32", + "y2": "1" + }, + "children": [] + }] +}; +exports.arrows_move = arrows_move; \ No newline at end of file diff --git a/dist/linea/arrows_move2.js b/dist/linea/arrows_move2.js new file mode 100644 index 000000000..05fbd052f --- /dev/null +++ b/dist/linea/arrows_move2.js @@ -0,0 +1,107 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_move2 = void 0; +var arrows_move2 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "56,39 63,32 \r\n\t56,25 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "8,25 1,32 8,39 \r\n\t" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "1", + "y1": "32", + "x2": "32", + "y2": "32" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "32", + "x2": "63", + "y2": "32" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "39,8 32,1 25,8 \r\n\t" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "25,56 32,63 \r\n\t39,56 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "63", + "x2": "32", + "y2": "32" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "32", + "x2": "32", + "y2": "1" + }, + "children": [] + }] +}; +exports.arrows_move2 = arrows_move2; \ No newline at end of file diff --git a/dist/linea/arrows_move_bottom.js b/dist/linea/arrows_move_bottom.js new file mode 100644 index 000000000..93eb054b4 --- /dev/null +++ b/dist/linea/arrows_move_bottom.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_move_bottom = void 0; +var arrows_move_bottom = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "25,44 32,51 \r\n\t39,44 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "32,51 32,39 32,5 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "0", + "y1": "59", + "x2": "64", + "y2": "59" + }, + "children": [] + }] +}; +exports.arrows_move_bottom = arrows_move_bottom; \ No newline at end of file diff --git a/dist/linea/arrows_move_left.js b/dist/linea/arrows_move_left.js new file mode 100644 index 000000000..5bbb708ec --- /dev/null +++ b/dist/linea/arrows_move_left.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_move_left = void 0; +var arrows_move_left = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "20,25 13,32 \r\n\t20,39 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "59,32 47,32 13,32 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "5", + "y1": "0", + "x2": "5", + "y2": "64" + }, + "children": [] + }] +}; +exports.arrows_move_left = arrows_move_left; \ No newline at end of file diff --git a/dist/linea/arrows_move_right.js b/dist/linea/arrows_move_right.js new file mode 100644 index 000000000..364621dc6 --- /dev/null +++ b/dist/linea/arrows_move_right.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_move_right = void 0; +var arrows_move_right = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "44,39 51,32 \r\n\t44,25 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "51,32 39,32 5,32 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "59", + "y1": "0", + "x2": "59", + "y2": "64" + }, + "children": [] + }] +}; +exports.arrows_move_right = arrows_move_right; \ No newline at end of file diff --git a/dist/linea/arrows_move_top.js b/dist/linea/arrows_move_top.js new file mode 100644 index 000000000..c6dca19ff --- /dev/null +++ b/dist/linea/arrows_move_top.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_move_top = void 0; +var arrows_move_top = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "39,20 32,13 \r\n\t25,20 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "32,59 32,47 32,13 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "0", + "y1": "5", + "x2": "64", + "y2": "5" + }, + "children": [] + }] +}; +exports.arrows_move_top = arrows_move_top; \ No newline at end of file diff --git a/dist/linea/arrows_plus.js b/dist/linea/arrows_plus.js new file mode 100644 index 000000000..a373df864 --- /dev/null +++ b/dist/linea/arrows_plus.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_plus = void 0; +var arrows_plus = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "50", + "x2": "32", + "y2": "14" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "50", + "x2": "32", + "y2": "14" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "14", + "y1": "32", + "x2": "50", + "y2": "32" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "14", + "y1": "32", + "x2": "50", + "y2": "32" + }, + "children": [] + }] + }] + }] +}; +exports.arrows_plus = arrows_plus; \ No newline at end of file diff --git a/dist/linea/arrows_question.js b/dist/linea/arrows_question.js new file mode 100644 index 000000000..9df9d2ec5 --- /dev/null +++ b/dist/linea/arrows_question.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_question = void 0; +var arrows_question = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "30", + "y1": "43", + "x2": "30", + "y2": "47" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M24,21c0-3,2-5,8-5c5,0,8,3,8,7s-6,7-6,7s-4,2-4,8v1\r\n\t" + }, + "children": [] + }] +}; +exports.arrows_question = arrows_question; \ No newline at end of file diff --git a/dist/linea/arrows_remove.js b/dist/linea/arrows_remove.js new file mode 100644 index 000000000..fa75e0a8a --- /dev/null +++ b/dist/linea/arrows_remove.js @@ -0,0 +1,71 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_remove = void 0; +var arrows_remove = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "18.947", + "y1": "17.153", + "x2": "45.045", + "y2": "43.056" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "18.947", + "y1": "17.153", + "x2": "45.045", + "y2": "43.056" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "19.045", + "y1": "43.153", + "x2": "44.947", + "y2": "17.056" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "19.045", + "y1": "43.153", + "x2": "44.947", + "y2": "17.056" + }, + "children": [] + }] + }] + }] +}; +exports.arrows_remove = arrows_remove; \ No newline at end of file diff --git a/dist/linea/arrows_right.js b/dist/linea/arrows_right.js new file mode 100644 index 000000000..8628c6c8c --- /dev/null +++ b/dist/linea/arrows_right.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_right = void 0; +var arrows_right = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "27,15 44,32 \r\n\t\t27,49 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "27,15 44,32 \r\n\t\t27,49 \t" + }, + "children": [] + }] + }] + }] +}; +exports.arrows_right = arrows_right; \ No newline at end of file diff --git a/dist/linea/arrows_rotate.js b/dist/linea/arrows_rotate.js new file mode 100644 index 000000000..847caac51 --- /dev/null +++ b/dist/linea/arrows_rotate.js @@ -0,0 +1,81 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_rotate = void 0; +var arrows_rotate = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M33,1c7.678,0,15.354,2.929,21.212,8.787\r\n\t\tC64.91,20.484,65.841,37.248,57.003,49l-6.001,6.002" + }, + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M33,1c7.678,0,15.354,2.929,21.212,8.787\r\n\t\tC64.91,20.484,65.841,37.248,57.003,49l-6.001,6.002" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M31,63c-7.678,0-15.354-2.929-21.212-8.787\r\n\t\tC-0.91,43.516-1.841,26.752,6.997,15l6.001-6.002" + }, + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M31,63c-7.678,0-15.354-2.929-21.212-8.787\r\n\t\tC-0.91,43.516-1.841,26.752,6.997,15l6.001-6.002" + }, + "children": [] + }] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "51,44 51,55 \r\n\t62,55 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "13,20 13,9 2,9 \r\n\t" + }, + "children": [] + }] +}; +exports.arrows_rotate = arrows_rotate; \ No newline at end of file diff --git a/dist/linea/arrows_rotate_anti.js b/dist/linea/arrows_rotate_anti.js new file mode 100644 index 000000000..9e7939bb1 --- /dev/null +++ b/dist/linea/arrows_rotate_anti.js @@ -0,0 +1,81 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_rotate_anti = void 0; +var arrows_rotate_anti = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M31,1C23.322,1,15.646,3.929,9.788,9.787\r\n\t\tC-0.91,20.484-1.841,37.248,6.997,49l6.001,6.002" + }, + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M31,1C23.322,1,15.646,3.929,9.788,9.787\r\n\t\tC-0.91,20.484-1.841,37.248,6.997,49l6.001,6.002" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M33,63c7.678,0,15.354-2.929,21.212-8.787\r\n\t\tC64.91,43.516,65.841,26.752,57.003,15l-6.001-6.002" + }, + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M33,63c7.678,0,15.354-2.929,21.212-8.787\r\n\t\tC64.91,43.516,65.841,26.752,57.003,15l-6.001-6.002" + }, + "children": [] + }] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "13,44 13,55 2,55 \r\n\t" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "51,20 51,9 62,9 \r\n\t" + }, + "children": [] + }] +}; +exports.arrows_rotate_anti = arrows_rotate_anti; \ No newline at end of file diff --git a/dist/linea/arrows_rotate_anti_dashed.js b/dist/linea/arrows_rotate_anti_dashed.js new file mode 100644 index 000000000..5b6e0ac00 --- /dev/null +++ b/dist/linea/arrows_rotate_anti_dashed.js @@ -0,0 +1,209 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_rotate_anti_dashed = void 0; +var arrows_rotate_anti_dashed = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M31,1c-0.667,0-1.333,0.022-1.998,0.066" + }, + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M31,1c-0.667,0-1.333,0.022-1.998,0.066" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4.1705,2.0853", + "d": "M26.929,1.275\r\n\t\t\t\tC20.659,2.13,14.607,4.967,9.788,9.787C-0.91,20.484-1.841,37.248,6.997,49l3.846,3.847" + }, + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4.1705,2.0853", + "d": "M26.929,1.275\r\n\t\t\t\tC20.659,2.13,14.607,4.967,9.788,9.787C-0.91,20.484-1.841,37.248,6.997,49l3.846,3.847" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "11.584", + "y1": "53.588", + "x2": "12.998", + "y2": "55.002" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "11.584", + "y1": "53.588", + "x2": "12.998", + "y2": "55.002" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M33,63c0.667,0,1.333-0.022,1.998-0.066" + }, + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M33,63c0.667,0,1.333-0.022,1.998-0.066" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4.1705,2.0853", + "d": "M37.071,62.725\r\n\t\t\t\tc6.27-0.854,12.321-3.691,17.141-8.512C64.91,43.516,65.841,26.752,57.003,15l-3.846-3.847" + }, + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4.1705,2.0853", + "d": "M37.071,62.725\r\n\t\t\t\tc6.27-0.854,12.321-3.691,17.141-8.512C64.91,43.516,65.841,26.752,57.003,15l-3.846-3.847" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "52.416", + "y1": "10.412", + "x2": "51.002", + "y2": "8.998" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "52.416", + "y1": "10.412", + "x2": "51.002", + "y2": "8.998" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "13,44 13,55 2,55 \r\n\t" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "51,20 51,9 62,9 \r\n\t" + }, + "children": [] + }] +}; +exports.arrows_rotate_anti_dashed = arrows_rotate_anti_dashed; \ No newline at end of file diff --git a/dist/linea/arrows_rotate_dashed.js b/dist/linea/arrows_rotate_dashed.js new file mode 100644 index 000000000..af02f1da6 --- /dev/null +++ b/dist/linea/arrows_rotate_dashed.js @@ -0,0 +1,209 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_rotate_dashed = void 0; +var arrows_rotate_dashed = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M33,1c0.666,0,1.333,0.022,1.998,0.066" + }, + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M33,1c0.666,0,1.333,0.022,1.998,0.066" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4.1705,2.0853", + "d": "M37.071,1.276\r\n\t\t\t\tc6.27,0.854,12.321,3.691,17.141,8.511C64.91,20.484,65.841,37.248,57.003,49l-3.846,3.846" + }, + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4.1705,2.0853", + "d": "M37.071,1.276\r\n\t\t\t\tc6.27,0.854,12.321,3.691,17.141,8.511C64.91,20.484,65.841,37.248,57.003,49l-3.846,3.846" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "52.416", + "y1": "53.588", + "x2": "51.002", + "y2": "55.002" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "52.416", + "y1": "53.588", + "x2": "51.002", + "y2": "55.002" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M31,63c-0.666,0-1.333-0.022-1.998-0.066" + }, + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M31,63c-0.666,0-1.333-0.022-1.998-0.066" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4.1705,2.0853", + "d": "M26.929,62.724\r\n\t\t\t\tc-6.27-0.854-12.321-3.691-17.141-8.511C-0.91,43.516-1.841,26.752,6.997,15l3.846-3.846" + }, + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4.1705,2.0853", + "d": "M26.929,62.724\r\n\t\t\t\tc-6.27-0.854-12.321-3.691-17.141-8.511C-0.91,43.516-1.841,26.752,6.997,15l3.846-3.846" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "11.584", + "y1": "10.412", + "x2": "12.998", + "y2": "8.998" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "11.584", + "y1": "10.412", + "x2": "12.998", + "y2": "8.998" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "51,44 51,55 \r\n\t62,55 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "13,20 13,9 2,9 \r\n\t" + }, + "children": [] + }] +}; +exports.arrows_rotate_dashed = arrows_rotate_dashed; \ No newline at end of file diff --git a/dist/linea/arrows_shrink.js b/dist/linea/arrows_shrink.js new file mode 100644 index 000000000..1262762c0 --- /dev/null +++ b/dist/linea/arrows_shrink.js @@ -0,0 +1,219 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_shrink = void 0; +var arrows_shrink = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "1", + "y1": "63", + "x2": "23", + "y2": "41" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "1", + "y1": "63", + "x2": "23", + "y2": "41" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "12,41 23,41 \r\n\t\t23,52 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "12,41 23,41 \r\n\t\t23,52 \t" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "63", + "y1": "63", + "x2": "41", + "y2": "41" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "63", + "y1": "63", + "x2": "41", + "y2": "41" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "41,52 41,41 \r\n\t\t52,41 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "41,52 41,41 \r\n\t\t52,41 \t" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "63", + "y1": "1", + "x2": "41", + "y2": "23" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "63", + "y1": "1", + "x2": "41", + "y2": "23" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "52,23 41,23 \r\n\t\t41,12 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "52,23 41,23 \r\n\t\t41,12 \t" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "1", + "y1": "1", + "x2": "23", + "y2": "23" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "1", + "y1": "1", + "x2": "23", + "y2": "23" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "23,12 23,23 \r\n\t\t12,23 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "23,12 23,23 \r\n\t\t12,23 \t" + }, + "children": [] + }] + }] + }] +}; +exports.arrows_shrink = arrows_shrink; \ No newline at end of file diff --git a/dist/linea/arrows_shrink_diagonal1.js b/dist/linea/arrows_shrink_diagonal1.js new file mode 100644 index 000000000..95e438de4 --- /dev/null +++ b/dist/linea/arrows_shrink_diagonal1.js @@ -0,0 +1,85 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_shrink_diagonal1 = void 0; +var arrows_shrink_diagonal1 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "37", + "y1": "1", + "x2": "63", + "y2": "27" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "1", + "y1": "37", + "x2": "27", + "y2": "63" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "35,18 35,29 \r\n\t46,29 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "28.771,45.771 \r\n\t28.771,34.771 17.771,34.771 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "14", + "y1": "50", + "x2": "29", + "y2": "35" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "35", + "y1": "29", + "x2": "50.5", + "y2": "13.5" + }, + "children": [] + }] +}; +exports.arrows_shrink_diagonal1 = arrows_shrink_diagonal1; \ No newline at end of file diff --git a/dist/linea/arrows_shrink_diagonal2.js b/dist/linea/arrows_shrink_diagonal2.js new file mode 100644 index 000000000..0098fbe54 --- /dev/null +++ b/dist/linea/arrows_shrink_diagonal2.js @@ -0,0 +1,59 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_shrink_diagonal2 = void 0; +var arrows_shrink_diagonal2 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "35,18 35,29 \r\n\t46,29 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "28.771,45.771 \r\n\t28.771,34.771 17.771,34.771 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "1", + "y1": "63", + "x2": "29", + "y2": "35" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "35", + "y1": "29", + "x2": "63", + "y2": "1" + }, + "children": [] + }] +}; +exports.arrows_shrink_diagonal2 = arrows_shrink_diagonal2; \ No newline at end of file diff --git a/dist/linea/arrows_shrink_horizonal2.js b/dist/linea/arrows_shrink_horizonal2.js new file mode 100644 index 000000000..df4a38ea2 --- /dev/null +++ b/dist/linea/arrows_shrink_horizonal2.js @@ -0,0 +1,59 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_shrink_horizonal2 = void 0; +var arrows_shrink_horizonal2 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "45,25 38,32 \r\n\t45,39 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "38", + "y1": "32", + "x2": "64", + "y2": "32" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "19,39 26,32 \r\n\t19,25 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "26", + "y1": "32", + "x2": "0", + "y2": "32" + }, + "children": [] + }] +}; +exports.arrows_shrink_horizonal2 = arrows_shrink_horizonal2; \ No newline at end of file diff --git a/dist/linea/arrows_shrink_horizontal1.js b/dist/linea/arrows_shrink_horizontal1.js new file mode 100644 index 000000000..7f564c182 --- /dev/null +++ b/dist/linea/arrows_shrink_horizontal1.js @@ -0,0 +1,85 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_shrink_horizontal1 = void 0; +var arrows_shrink_horizontal1 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "5", + "y1": "0", + "x2": "5", + "y2": "64" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "59", + "y1": "0", + "x2": "59", + "y2": "64" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "45,25 38,32 \r\n\t45,39 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "38", + "y1": "32", + "x2": "59", + "y2": "32" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "19,39 26,32 \r\n\t19,25 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "26", + "y1": "32", + "x2": "5", + "y2": "32" + }, + "children": [] + }] +}; +exports.arrows_shrink_horizontal1 = arrows_shrink_horizontal1; \ No newline at end of file diff --git a/dist/linea/arrows_shrink_vertical1.js b/dist/linea/arrows_shrink_vertical1.js new file mode 100644 index 000000000..73c78c5e2 --- /dev/null +++ b/dist/linea/arrows_shrink_vertical1.js @@ -0,0 +1,85 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_shrink_vertical1 = void 0; +var arrows_shrink_vertical1 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "64", + "y1": "5", + "x2": "0", + "y2": "5" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "64", + "y1": "59", + "x2": "0", + "y2": "59" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "25,19 32,26 \r\n\t39,19 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "26", + "x2": "32", + "y2": "5" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "39,45 32,38 \r\n\t25,45 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "38", + "x2": "32", + "y2": "59" + }, + "children": [] + }] +}; +exports.arrows_shrink_vertical1 = arrows_shrink_vertical1; \ No newline at end of file diff --git a/dist/linea/arrows_shrink_vertical2.js b/dist/linea/arrows_shrink_vertical2.js new file mode 100644 index 000000000..65c7f240b --- /dev/null +++ b/dist/linea/arrows_shrink_vertical2.js @@ -0,0 +1,59 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_shrink_vertical2 = void 0; +var arrows_shrink_vertical2 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "25,19 32,26 \r\n\t39,19 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "26", + "x2": "32", + "y2": "0" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "39,45 32,38 \r\n\t25,45 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "38", + "x2": "32", + "y2": "64" + }, + "children": [] + }] +}; +exports.arrows_shrink_vertical2 = arrows_shrink_vertical2; \ No newline at end of file diff --git a/dist/linea/arrows_sign_down.js b/dist/linea/arrows_sign_down.js new file mode 100644 index 000000000..2fc3f83d1 --- /dev/null +++ b/dist/linea/arrows_sign_down.js @@ -0,0 +1,21 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_sign_down = void 0; +var arrows_sign_down = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "15,45 15,1 49,1 49,45 31.999,63 " + }, + "children": [] + }] +}; +exports.arrows_sign_down = arrows_sign_down; \ No newline at end of file diff --git a/dist/linea/arrows_sign_left.js b/dist/linea/arrows_sign_left.js new file mode 100644 index 000000000..40be347a0 --- /dev/null +++ b/dist/linea/arrows_sign_left.js @@ -0,0 +1,21 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_sign_left = void 0; +var arrows_sign_left = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "19,15 63,15 63,49 19,49 1,31.999 " + }, + "children": [] + }] +}; +exports.arrows_sign_left = arrows_sign_left; \ No newline at end of file diff --git a/dist/linea/arrows_sign_right.js b/dist/linea/arrows_sign_right.js new file mode 100644 index 000000000..c426191e4 --- /dev/null +++ b/dist/linea/arrows_sign_right.js @@ -0,0 +1,21 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_sign_right = void 0; +var arrows_sign_right = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "45,49 1,49 1,15 45,15 63,32.001 " + }, + "children": [] + }] +}; +exports.arrows_sign_right = arrows_sign_right; \ No newline at end of file diff --git a/dist/linea/arrows_sign_up.js b/dist/linea/arrows_sign_up.js new file mode 100644 index 000000000..3e1c2ba91 --- /dev/null +++ b/dist/linea/arrows_sign_up.js @@ -0,0 +1,21 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_sign_up = void 0; +var arrows_sign_up = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "49,19 49,63 15,63 15,19 32.001,1 " + }, + "children": [] + }] +}; +exports.arrows_sign_up = arrows_sign_up; \ No newline at end of file diff --git a/dist/linea/arrows_slide_down1.js b/dist/linea/arrows_slide_down1.js new file mode 100644 index 000000000..2e6dc3118 --- /dev/null +++ b/dist/linea/arrows_slide_down1.js @@ -0,0 +1,46 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_slide_down1 = void 0; +var arrows_slide_down1 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "27,63 27,1 46,1 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "27,63 27,1 46,1 \t" + }, + "children": [] + }] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "18,54 27,63 \r\n\t36,54 " + }, + "children": [] + }] +}; +exports.arrows_slide_down1 = arrows_slide_down1; \ No newline at end of file diff --git a/dist/linea/arrows_slide_down2.js b/dist/linea/arrows_slide_down2.js new file mode 100644 index 000000000..4b5e628e4 --- /dev/null +++ b/dist/linea/arrows_slide_down2.js @@ -0,0 +1,46 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_slide_down2 = void 0; +var arrows_slide_down2 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "37,63 37,1 18,1 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "37,63 37,1 18,1 \t" + }, + "children": [] + }] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "46,54 37,63 \r\n\t28,54 " + }, + "children": [] + }] +}; +exports.arrows_slide_down2 = arrows_slide_down2; \ No newline at end of file diff --git a/dist/linea/arrows_slide_left1.js b/dist/linea/arrows_slide_left1.js new file mode 100644 index 000000000..170348299 --- /dev/null +++ b/dist/linea/arrows_slide_left1.js @@ -0,0 +1,46 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_slide_left1 = void 0; +var arrows_slide_left1 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,27 63,27 63,46 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,27 63,27 63,46 \t" + }, + "children": [] + }] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "10,18 1,27 10,36 \r\n\t" + }, + "children": [] + }] +}; +exports.arrows_slide_left1 = arrows_slide_left1; \ No newline at end of file diff --git a/dist/linea/arrows_slide_left2.js b/dist/linea/arrows_slide_left2.js new file mode 100644 index 000000000..6e6f0af8b --- /dev/null +++ b/dist/linea/arrows_slide_left2.js @@ -0,0 +1,46 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_slide_left2 = void 0; +var arrows_slide_left2 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,37 63,37 63,18 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,37 63,37 63,18 \t" + }, + "children": [] + }] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "10,46 1,37 10,28 \r\n\t" + }, + "children": [] + }] +}; +exports.arrows_slide_left2 = arrows_slide_left2; \ No newline at end of file diff --git a/dist/linea/arrows_slide_right1.js b/dist/linea/arrows_slide_right1.js new file mode 100644 index 000000000..0bf2cc426 --- /dev/null +++ b/dist/linea/arrows_slide_right1.js @@ -0,0 +1,46 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_slide_right1 = void 0; +var arrows_slide_right1 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "63,27 1,27 1,46 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "63,27 1,27 1,46 \t" + }, + "children": [] + }] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "54,18 63,27 \r\n\t54,36 " + }, + "children": [] + }] +}; +exports.arrows_slide_right1 = arrows_slide_right1; \ No newline at end of file diff --git a/dist/linea/arrows_slide_right2.js b/dist/linea/arrows_slide_right2.js new file mode 100644 index 000000000..14d0abb16 --- /dev/null +++ b/dist/linea/arrows_slide_right2.js @@ -0,0 +1,46 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_slide_right2 = void 0; +var arrows_slide_right2 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "63,37 1,37 1,18 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "63,37 1,37 1,18 \t" + }, + "children": [] + }] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "54,46 63,37 \r\n\t54,28 " + }, + "children": [] + }] +}; +exports.arrows_slide_right2 = arrows_slide_right2; \ No newline at end of file diff --git a/dist/linea/arrows_slide_up1.js b/dist/linea/arrows_slide_up1.js new file mode 100644 index 000000000..fcf4e7bc8 --- /dev/null +++ b/dist/linea/arrows_slide_up1.js @@ -0,0 +1,46 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_slide_up1 = void 0; +var arrows_slide_up1 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "37,1 37,63 18,63 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "37,1 37,63 18,63 \t" + }, + "children": [] + }] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "46,10 37,1 28,10 \r\n\t" + }, + "children": [] + }] +}; +exports.arrows_slide_up1 = arrows_slide_up1; \ No newline at end of file diff --git a/dist/linea/arrows_slide_up2.js b/dist/linea/arrows_slide_up2.js new file mode 100644 index 000000000..627dcce69 --- /dev/null +++ b/dist/linea/arrows_slide_up2.js @@ -0,0 +1,46 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_slide_up2 = void 0; +var arrows_slide_up2 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "27,1 27,63 46,63 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "27,1 27,63 46,63 \t" + }, + "children": [] + }] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "18,10 27,1 36,10 \r\n\t" + }, + "children": [] + }] +}; +exports.arrows_slide_up2 = arrows_slide_up2; \ No newline at end of file diff --git a/dist/linea/arrows_slim_down.js b/dist/linea/arrows_slim_down.js new file mode 100644 index 000000000..7af9cd677 --- /dev/null +++ b/dist/linea/arrows_slim_down.js @@ -0,0 +1,52 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_slim_down = void 0; +var arrows_slim_down = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "0", + "x2": "32", + "y2": "63" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "0", + "x2": "32", + "y2": "63" + }, + "children": [] + }] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "41,54 32,63 \r\n\t23,54 " + }, + "children": [] + }] +}; +exports.arrows_slim_down = arrows_slim_down; \ No newline at end of file diff --git a/dist/linea/arrows_slim_down_dashed.js b/dist/linea/arrows_slim_down_dashed.js new file mode 100644 index 000000000..aa7045463 --- /dev/null +++ b/dist/linea/arrows_slim_down_dashed.js @@ -0,0 +1,54 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_slim_down_dashed = void 0; +var arrows_slim_down_dashed = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "32", + "y1": "0", + "x2": "32", + "y2": "55" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "32", + "y1": "0", + "x2": "32", + "y2": "55" + }, + "children": [] + }] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "41,54 32,63 \r\n\t23,54 " + }, + "children": [] + }] +}; +exports.arrows_slim_down_dashed = arrows_slim_down_dashed; \ No newline at end of file diff --git a/dist/linea/arrows_slim_left.js b/dist/linea/arrows_slim_left.js new file mode 100644 index 000000000..3e47304a2 --- /dev/null +++ b/dist/linea/arrows_slim_left.js @@ -0,0 +1,52 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_slim_left = void 0; +var arrows_slim_left = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "64", + "y1": "32", + "x2": "1", + "y2": "32" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "64", + "y1": "32", + "x2": "1", + "y2": "32" + }, + "children": [] + }] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "10,23 1,32 10,41 \r\n\t" + }, + "children": [] + }] +}; +exports.arrows_slim_left = arrows_slim_left; \ No newline at end of file diff --git a/dist/linea/arrows_slim_left_dashed.js b/dist/linea/arrows_slim_left_dashed.js new file mode 100644 index 000000000..ed4459c1f --- /dev/null +++ b/dist/linea/arrows_slim_left_dashed.js @@ -0,0 +1,54 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_slim_left_dashed = void 0; +var arrows_slim_left_dashed = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "64", + "y1": "32", + "x2": "1", + "y2": "32" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "64", + "y1": "32", + "x2": "1", + "y2": "32" + }, + "children": [] + }] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "10,23 1,32 10,41 \r\n\t" + }, + "children": [] + }] +}; +exports.arrows_slim_left_dashed = arrows_slim_left_dashed; \ No newline at end of file diff --git a/dist/linea/arrows_slim_right.js b/dist/linea/arrows_slim_right.js new file mode 100644 index 000000000..6c9497158 --- /dev/null +++ b/dist/linea/arrows_slim_right.js @@ -0,0 +1,52 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_slim_right = void 0; +var arrows_slim_right = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "0", + "y1": "32", + "x2": "63", + "y2": "32" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "0", + "y1": "32", + "x2": "63", + "y2": "32" + }, + "children": [] + }] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "54,41 63,32 \r\n\t54,23 " + }, + "children": [] + }] +}; +exports.arrows_slim_right = arrows_slim_right; \ No newline at end of file diff --git a/dist/linea/arrows_slim_right_dashed.js b/dist/linea/arrows_slim_right_dashed.js new file mode 100644 index 000000000..93482a632 --- /dev/null +++ b/dist/linea/arrows_slim_right_dashed.js @@ -0,0 +1,54 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_slim_right_dashed = void 0; +var arrows_slim_right_dashed = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "0", + "y1": "32", + "x2": "63", + "y2": "32" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "0", + "y1": "32", + "x2": "63", + "y2": "32" + }, + "children": [] + }] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "54,41 63,32 \r\n\t54,23 " + }, + "children": [] + }] +}; +exports.arrows_slim_right_dashed = arrows_slim_right_dashed; \ No newline at end of file diff --git a/dist/linea/arrows_slim_up.js b/dist/linea/arrows_slim_up.js new file mode 100644 index 000000000..5f5ae128f --- /dev/null +++ b/dist/linea/arrows_slim_up.js @@ -0,0 +1,52 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_slim_up = void 0; +var arrows_slim_up = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "64", + "x2": "32", + "y2": "1" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "64", + "x2": "32", + "y2": "1" + }, + "children": [] + }] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "41,10 32,1 23,10 \r\n\t" + }, + "children": [] + }] +}; +exports.arrows_slim_up = arrows_slim_up; \ No newline at end of file diff --git a/dist/linea/arrows_slim_up_dashed.js b/dist/linea/arrows_slim_up_dashed.js new file mode 100644 index 000000000..18375c304 --- /dev/null +++ b/dist/linea/arrows_slim_up_dashed.js @@ -0,0 +1,54 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_slim_up_dashed = void 0; +var arrows_slim_up_dashed = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "32", + "y1": "64", + "x2": "32", + "y2": "2" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "32", + "y1": "64", + "x2": "32", + "y2": "2" + }, + "children": [] + }] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "41,10 32,1 23,10 \r\n\t" + }, + "children": [] + }] +}; +exports.arrows_slim_up_dashed = arrows_slim_up_dashed; \ No newline at end of file diff --git a/dist/linea/arrows_square_check.js b/dist/linea/arrows_square_check.js new file mode 100644 index 000000000..cf846bc86 --- /dev/null +++ b/dist/linea/arrows_square_check.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_square_check = void 0; +var arrows_square_check = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "13,33 25,45 \r\n\t\t49,21 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "13,33 25,45 \r\n\t\t49,21 \t" + }, + "children": [] + }] + }] + }, { + "name": "rect", + "attribs": { + "x": "1", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "62" + }, + "children": [] + }] +}; +exports.arrows_square_check = arrows_square_check; \ No newline at end of file diff --git a/dist/linea/arrows_square_down.js b/dist/linea/arrows_square_down.js new file mode 100644 index 000000000..3d07b88a2 --- /dev/null +++ b/dist/linea/arrows_square_down.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_square_down = void 0; +var arrows_square_down = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "15,24 32,41 \r\n\t\t49,24 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "15,24 32,41 \r\n\t\t49,24 \t" + }, + "children": [] + }] + }] + }, { + "name": "rect", + "attribs": { + "x": "1", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "62" + }, + "children": [] + }] +}; +exports.arrows_square_down = arrows_square_down; \ No newline at end of file diff --git a/dist/linea/arrows_square_downleft.js b/dist/linea/arrows_square_downleft.js new file mode 100644 index 000000000..1aac48bc8 --- /dev/null +++ b/dist/linea/arrows_square_downleft.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_square_downleft = void 0; +var arrows_square_downleft = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "47,41 23,41 \r\n\t\t23,17 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "47,41 23,41 \r\n\t\t23,17 \t" + }, + "children": [] + }] + }] + }, { + "name": "rect", + "attribs": { + "x": "1", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "62" + }, + "children": [] + }] +}; +exports.arrows_square_downleft = arrows_square_downleft; \ No newline at end of file diff --git a/dist/linea/arrows_square_downright.js b/dist/linea/arrows_square_downright.js new file mode 100644 index 000000000..9df5c3ad1 --- /dev/null +++ b/dist/linea/arrows_square_downright.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_square_downright = void 0; +var arrows_square_downright = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "41,17 41,41 \r\n\t\t17,41 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "41,17 41,41 \r\n\t\t17,41 \t" + }, + "children": [] + }] + }] + }, { + "name": "rect", + "attribs": { + "x": "1", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "62" + }, + "children": [] + }] +}; +exports.arrows_square_downright = arrows_square_downright; \ No newline at end of file diff --git a/dist/linea/arrows_square_left.js b/dist/linea/arrows_square_left.js new file mode 100644 index 000000000..b529da660 --- /dev/null +++ b/dist/linea/arrows_square_left.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_square_left = void 0; +var arrows_square_left = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "37,15 20,32 \r\n\t\t37,49 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "37,15 20,32 \r\n\t\t37,49 \t" + }, + "children": [] + }] + }] + }, { + "name": "rect", + "attribs": { + "x": "1", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "62" + }, + "children": [] + }] +}; +exports.arrows_square_left = arrows_square_left; \ No newline at end of file diff --git a/dist/linea/arrows_square_minus.js b/dist/linea/arrows_square_minus.js new file mode 100644 index 000000000..15f954d1a --- /dev/null +++ b/dist/linea/arrows_square_minus.js @@ -0,0 +1,54 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_square_minus = void 0; +var arrows_square_minus = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "14", + "y1": "31", + "x2": "50", + "y2": "31" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "14", + "y1": "31", + "x2": "50", + "y2": "31" + }, + "children": [] + }] + }] + }, { + "name": "rect", + "attribs": { + "x": "1", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "62" + }, + "children": [] + }] +}; +exports.arrows_square_minus = arrows_square_minus; \ No newline at end of file diff --git a/dist/linea/arrows_square_plus.js b/dist/linea/arrows_square_plus.js new file mode 100644 index 000000000..ff6d3ab73 --- /dev/null +++ b/dist/linea/arrows_square_plus.js @@ -0,0 +1,80 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_square_plus = void 0; +var arrows_square_plus = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "50", + "x2": "32", + "y2": "14" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "50", + "x2": "32", + "y2": "14" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "14", + "y1": "32", + "x2": "50", + "y2": "32" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "14", + "y1": "32", + "x2": "50", + "y2": "32" + }, + "children": [] + }] + }] + }, { + "name": "rect", + "attribs": { + "x": "1", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "62" + }, + "children": [] + }] +}; +exports.arrows_square_plus = arrows_square_plus; \ No newline at end of file diff --git a/dist/linea/arrows_square_remove.js b/dist/linea/arrows_square_remove.js new file mode 100644 index 000000000..82ec94633 --- /dev/null +++ b/dist/linea/arrows_square_remove.js @@ -0,0 +1,84 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_square_remove = void 0; +var arrows_square_remove = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "18.947", + "y1": "17.153", + "x2": "45.045", + "y2": "43.056" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "18.947", + "y1": "17.153", + "x2": "45.045", + "y2": "43.056" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "19.045", + "y1": "43.153", + "x2": "44.947", + "y2": "17.056" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "19.045", + "y1": "43.153", + "x2": "44.947", + "y2": "17.056" + }, + "children": [] + }] + }] + }, { + "name": "rect", + "attribs": { + "x": "1", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "62" + }, + "children": [] + }] +}; +exports.arrows_square_remove = arrows_square_remove; \ No newline at end of file diff --git a/dist/linea/arrows_square_right.js b/dist/linea/arrows_square_right.js new file mode 100644 index 000000000..68a700117 --- /dev/null +++ b/dist/linea/arrows_square_right.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_square_right = void 0; +var arrows_square_right = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "27,15 44,32 \r\n\t\t27,49 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "27,15 44,32 \r\n\t\t27,49 \t" + }, + "children": [] + }] + }] + }, { + "name": "rect", + "attribs": { + "x": "1", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "62" + }, + "children": [] + }] +}; +exports.arrows_square_right = arrows_square_right; \ No newline at end of file diff --git a/dist/linea/arrows_square_up.js b/dist/linea/arrows_square_up.js new file mode 100644 index 000000000..b84890d96 --- /dev/null +++ b/dist/linea/arrows_square_up.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_square_up = void 0; +var arrows_square_up = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "15,40 32,23 \r\n\t\t49,40 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "15,40 32,23 \r\n\t\t49,40 \t" + }, + "children": [] + }] + }] + }, { + "name": "rect", + "attribs": { + "x": "1", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "62" + }, + "children": [] + }] +}; +exports.arrows_square_up = arrows_square_up; \ No newline at end of file diff --git a/dist/linea/arrows_square_upleft.js b/dist/linea/arrows_square_upleft.js new file mode 100644 index 000000000..03035b7c2 --- /dev/null +++ b/dist/linea/arrows_square_upleft.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_square_upleft = void 0; +var arrows_square_upleft = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "23,47 23,23 \r\n\t\t47,23 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "23,47 23,23 \r\n\t\t47,23 \t" + }, + "children": [] + }] + }] + }, { + "name": "rect", + "attribs": { + "x": "1", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "62" + }, + "children": [] + }] +}; +exports.arrows_square_upleft = arrows_square_upleft; \ No newline at end of file diff --git a/dist/linea/arrows_square_upright.js b/dist/linea/arrows_square_upright.js new file mode 100644 index 000000000..77fd0ad65 --- /dev/null +++ b/dist/linea/arrows_square_upright.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_square_upright = void 0; +var arrows_square_upright = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "17,23 41,23 \r\n\t\t41,47 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "17,23 41,23 \r\n\t\t41,47 \t" + }, + "children": [] + }] + }] + }, { + "name": "rect", + "attribs": { + "x": "1", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "62" + }, + "children": [] + }] +}; +exports.arrows_square_upright = arrows_square_upright; \ No newline at end of file diff --git a/dist/linea/arrows_squares.js b/dist/linea/arrows_squares.js new file mode 100644 index 000000000..9147a5e23 --- /dev/null +++ b/dist/linea/arrows_squares.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_squares = void 0; +var arrows_squares = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "27", + "height": "27" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "36", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "27", + "height": "27" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "1", + "y": "36", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "27", + "height": "27" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "36", + "y": "36", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "27", + "height": "27" + }, + "children": [] + }] +}; +exports.arrows_squares = arrows_squares; \ No newline at end of file diff --git a/dist/linea/arrows_stretch_diagonal1.js b/dist/linea/arrows_stretch_diagonal1.js new file mode 100644 index 000000000..d870d11a5 --- /dev/null +++ b/dist/linea/arrows_stretch_diagonal1.js @@ -0,0 +1,75 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_stretch_diagonal1 = void 0; +var arrows_stretch_diagonal1 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "63,12 63,1 52,1 \r\n\t" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "1,52 1,63 12,63 \r\n\t" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "x1": "1", + "y1": "63", + "x2": "26", + "y2": "38" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "x1": "38", + "y1": "26", + "x2": "63", + "y2": "1" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "x1": "24", + "y1": "24", + "x2": "40", + "y2": "40" + }, + "children": [] + }] +}; +exports.arrows_stretch_diagonal1 = arrows_stretch_diagonal1; \ No newline at end of file diff --git a/dist/linea/arrows_stretch_diagonal2.js b/dist/linea/arrows_stretch_diagonal2.js new file mode 100644 index 000000000..25e198653 --- /dev/null +++ b/dist/linea/arrows_stretch_diagonal2.js @@ -0,0 +1,75 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_stretch_diagonal2 = void 0; +var arrows_stretch_diagonal2 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "1,12 1,1 12,1 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "63,52 63,63 \r\n\t52,63 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "x1": "63", + "y1": "63", + "x2": "38", + "y2": "38" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "x1": "26", + "y1": "26", + "x2": "1", + "y2": "1" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "x1": "40", + "y1": "24", + "x2": "24", + "y2": "40" + }, + "children": [] + }] +}; +exports.arrows_stretch_diagonal2 = arrows_stretch_diagonal2; \ No newline at end of file diff --git a/dist/linea/arrows_stretch_diagonal3.js b/dist/linea/arrows_stretch_diagonal3.js new file mode 100644 index 000000000..283d653ef --- /dev/null +++ b/dist/linea/arrows_stretch_diagonal3.js @@ -0,0 +1,75 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_stretch_diagonal3 = void 0; +var arrows_stretch_diagonal3 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "63,12 63,1 52,1 \r\n\t" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "1,52 1,63 12,63 \r\n\t" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "x1": "1", + "y1": "63", + "x2": "32", + "y2": "32" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "32", + "x2": "63", + "y2": "1" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "x1": "1", + "y1": "1", + "x2": "63", + "y2": "63" + }, + "children": [] + }] +}; +exports.arrows_stretch_diagonal3 = arrows_stretch_diagonal3; \ No newline at end of file diff --git a/dist/linea/arrows_stretch_diagonal4.js b/dist/linea/arrows_stretch_diagonal4.js new file mode 100644 index 000000000..d60ca680e --- /dev/null +++ b/dist/linea/arrows_stretch_diagonal4.js @@ -0,0 +1,75 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_stretch_diagonal4 = void 0; +var arrows_stretch_diagonal4 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "1,12 1,1 12,1 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "63,52 63,63 \r\n\t52,63 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "x1": "63", + "y1": "63", + "x2": "32", + "y2": "32" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "32", + "x2": "1", + "y2": "1" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "x1": "63", + "y1": "1", + "x2": "1", + "y2": "63" + }, + "children": [] + }] +}; +exports.arrows_stretch_diagonal4 = arrows_stretch_diagonal4; \ No newline at end of file diff --git a/dist/linea/arrows_stretch_horizontal1.js b/dist/linea/arrows_stretch_horizontal1.js new file mode 100644 index 000000000..4588d4daf --- /dev/null +++ b/dist/linea/arrows_stretch_horizontal1.js @@ -0,0 +1,66 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_stretch_horizontal1 = void 0; +var arrows_stretch_horizontal1 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "55,40 63,32 \r\n\t55,24 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "9,24 1,32 9,40 \r\n\t" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "2,32 11.677,32 26,32 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "38,32 41.677,32 62,32 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "21", + "x2": "32", + "y2": "43" + }, + "children": [] + }] +}; +exports.arrows_stretch_horizontal1 = arrows_stretch_horizontal1; \ No newline at end of file diff --git a/dist/linea/arrows_stretch_horizontal2.js b/dist/linea/arrows_stretch_horizontal2.js new file mode 100644 index 000000000..de4181477 --- /dev/null +++ b/dist/linea/arrows_stretch_horizontal2.js @@ -0,0 +1,66 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_stretch_horizontal2 = void 0; +var arrows_stretch_horizontal2 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "55,40 63,32 \r\n\t55,24 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "9,24 1,32 9,40 \r\n\t" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "2,32 11.677,32 32,32 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "32,32 41.677,32 62,32 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "0", + "x2": "32", + "y2": "64" + }, + "children": [] + }] +}; +exports.arrows_stretch_horizontal2 = arrows_stretch_horizontal2; \ No newline at end of file diff --git a/dist/linea/arrows_stretch_vertical1.js b/dist/linea/arrows_stretch_vertical1.js new file mode 100644 index 000000000..0b044a91d --- /dev/null +++ b/dist/linea/arrows_stretch_vertical1.js @@ -0,0 +1,66 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_stretch_vertical1 = void 0; +var arrows_stretch_vertical1 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "40,9 32,1 24,9 \r\n\t" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "24,55 32,63 \r\n\t40,55 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "32,62 32,52.323 32,38 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "32,26 32,22.323 32,2 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "21", + "y1": "32", + "x2": "43", + "y2": "32" + }, + "children": [] + }] +}; +exports.arrows_stretch_vertical1 = arrows_stretch_vertical1; \ No newline at end of file diff --git a/dist/linea/arrows_stretch_vertical2.js b/dist/linea/arrows_stretch_vertical2.js new file mode 100644 index 000000000..b8c649155 --- /dev/null +++ b/dist/linea/arrows_stretch_vertical2.js @@ -0,0 +1,66 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_stretch_vertical2 = void 0; +var arrows_stretch_vertical2 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "40,9 32,1 24,9 \r\n\t" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "24,55 32,63 \r\n\t40,55 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "32,62 32,52.323 32,32 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "32,32 32,22.323 32,2 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "0", + "y1": "32", + "x2": "64", + "y2": "32" + }, + "children": [] + }] +}; +exports.arrows_stretch_vertical2 = arrows_stretch_vertical2; \ No newline at end of file diff --git a/dist/linea/arrows_switch_horizontal.js b/dist/linea/arrows_switch_horizontal.js new file mode 100644 index 000000000..ac343044b --- /dev/null +++ b/dist/linea/arrows_switch_horizontal.js @@ -0,0 +1,59 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_switch_horizontal = void 0; +var arrows_switch_horizontal = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "54.083,51 \r\n\t63.083,42 54.083,33 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "63", + "y1": "42", + "x2": "9", + "y2": "42" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "10.083,13 \r\n\t1.083,22 10.083,31 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "1", + "y1": "22", + "x2": "55", + "y2": "22" + }, + "children": [] + }] +}; +exports.arrows_switch_horizontal = arrows_switch_horizontal; \ No newline at end of file diff --git a/dist/linea/arrows_switch_vertical.js b/dist/linea/arrows_switch_vertical.js new file mode 100644 index 000000000..c6a9cb5f8 --- /dev/null +++ b/dist/linea/arrows_switch_vertical.js @@ -0,0 +1,59 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_switch_vertical = void 0; +var arrows_switch_vertical = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "51.083,10 \r\n\t42.083,1 33.083,10 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "42.083", + "y1": "1", + "x2": "42", + "y2": "55" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "13.083,54 \r\n\t22.083,63 31.083,54 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22.083", + "y1": "63", + "x2": "22", + "y2": "9" + }, + "children": [] + }] +}; +exports.arrows_switch_vertical = arrows_switch_vertical; \ No newline at end of file diff --git a/dist/linea/arrows_up.js b/dist/linea/arrows_up.js new file mode 100644 index 000000000..cd0e9016a --- /dev/null +++ b/dist/linea/arrows_up.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_up = void 0; +var arrows_up = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "15,40 32,23 \r\n\t\t49,40 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "15,40 32,23 \r\n\t\t49,40 \t" + }, + "children": [] + }] + }] + }] +}; +exports.arrows_up = arrows_up; \ No newline at end of file diff --git a/dist/linea/arrows_up_double.js b/dist/linea/arrows_up_double.js new file mode 100644 index 000000000..107f86698 --- /dev/null +++ b/dist/linea/arrows_up_double.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_up_double = void 0; +var arrows_up_double = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "15,32.936 \r\n\t\t32,15.936 49,32.936 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "15,32.936 \r\n\t\t32,15.936 49,32.936 \t" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "15,47.936 \r\n\t\t32,30.936 49,47.936 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "15,47.936 \r\n\t\t32,30.936 49,47.936 \t" + }, + "children": [] + }] + }] + }] +}; +exports.arrows_up_double = arrows_up_double; \ No newline at end of file diff --git a/dist/linea/arrows_upright.js b/dist/linea/arrows_upright.js new file mode 100644 index 000000000..05fb417e2 --- /dev/null +++ b/dist/linea/arrows_upright.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_upright = void 0; +var arrows_upright = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "17,23 41,23 \r\n\t\t41,47 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "17,23 41,23 \r\n\t\t41,47 \t" + }, + "children": [] + }] + }] + }] +}; +exports.arrows_upright = arrows_upright; \ No newline at end of file diff --git a/dist/linea/arrows_vertical.js b/dist/linea/arrows_vertical.js new file mode 100644 index 000000000..12b7afa5b --- /dev/null +++ b/dist/linea/arrows_vertical.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrows_vertical = void 0; +var arrows_vertical = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "39,8 32,1 25,8 \r\n\t" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "25,56 32,63 \r\n\t39,56 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "32,63 32,43 32,1 " + }, + "children": [] + }] +}; +exports.arrows_vertical = arrows_vertical; \ No newline at end of file diff --git a/dist/linea/basic_accelerator.js b/dist/linea/basic_accelerator.js new file mode 100644 index 000000000..fe200b1c9 --- /dev/null +++ b/dist/linea/basic_accelerator.js @@ -0,0 +1,56 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_accelerator = void 0; +var basic_accelerator = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M32.001,0.887c17.184,0,31.113,13.929,31.112,31.113\r\n\tC63.114,49.185,49.184,63.115,32,63.113C14.815,63.114,0.887,49.185,0.888,32.001C0.885,14.816,14.815,0.887,32.001,0.887z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M10,32c0-5.63,2.148-11.26,6.444-15.556\r\n\tc8.591-8.593,22.521-8.593,31.112,0C51.852,20.74,54,26.37,54,32" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "24", + "y1": "26", + "x2": "30.333", + "y2": "33.333" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "35", + "r": "2" + }, + "children": [] + }] +}; +exports.basic_accelerator = basic_accelerator; \ No newline at end of file diff --git a/dist/linea/basic_alarm.js b/dist/linea/basic_alarm.js new file mode 100644 index 000000000..05c19c2bb --- /dev/null +++ b/dist/linea/basic_alarm.js @@ -0,0 +1,79 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_alarm = void 0; +var basic_alarm = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "26" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "32,20 32,32 40,36 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "21.995", + "y1": "56.005", + "x2": "15", + "y2": "63" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "49", + "y1": "63", + "x2": "42.005", + "y2": "56.005" + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,8 5,4 15,6 3,18 " + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "59,4 63,8 61,18 49,6 " + }, + "children": [] + }] +}; +exports.basic_alarm = basic_alarm; \ No newline at end of file diff --git a/dist/linea/basic_anchor.js b/dist/linea/basic_anchor.js new file mode 100644 index 000000000..122ab10a5 --- /dev/null +++ b/dist/linea/basic_anchor.js @@ -0,0 +1,83 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_anchor = void 0; +var basic_anchor = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "13", + "x2": "32", + "y2": "63" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "19,50 9,47 6,57 \r\n\t" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "45,50 55,47 \r\n\t59,57 " + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "d": "M54.752,47\r\n\tC51.555,56.301,42.576,63,32,63c-10.575,0-19.553-6.698-22.751-15.998" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "x1": "23", + "y1": "17", + "x2": "41", + "y2": "17" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "7", + "r": "6" + }, + "children": [] + }] +}; +exports.basic_anchor = basic_anchor; \ No newline at end of file diff --git a/dist/linea/basic_anticlockwise.js b/dist/linea/basic_anticlockwise.js new file mode 100644 index 000000000..5908d4cb5 --- /dev/null +++ b/dist/linea/basic_anticlockwise.js @@ -0,0 +1,104 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_anticlockwise = void 0; +var basic_anticlockwise = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "32,12 32,32 41,41 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "4", + "y1": "32", + "x2": "8", + "y2": "32" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "56", + "y1": "32", + "x2": "60", + "y2": "32" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "60", + "x2": "32", + "y2": "56" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "8", + "x2": "32", + "y2": "4" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M32,63C14.879,63,1,49.121,1,32S14.879,1,32,1" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M32,63c17.121,0,31-13.879,31-31\r\n\tc0-6.713-2.134-12.926-5.759-18l-5.62-5.621" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "51,19 51,8 62,8 \r\n\t" + }, + "children": [] + }] +}; +exports.basic_anticlockwise = basic_anticlockwise; \ No newline at end of file diff --git a/dist/linea/basic_archive.js b/dist/linea/basic_archive.js new file mode 100644 index 000000000..ea911cc14 --- /dev/null +++ b/dist/linea/basic_archive.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_archive = void 0; +var basic_archive = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "5,41 11,1 53,1 59,41 " + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M21,41c0,6.075,4.925,11,11,11s11-4.925,11-11h16v22\r\n\tH5V41H21z" + }, + "children": [] + }] +}; +exports.basic_archive = basic_archive; \ No newline at end of file diff --git a/dist/linea/basic_archive_full.js b/dist/linea/basic_archive_full.js new file mode 100644 index 000000000..71b67173e --- /dev/null +++ b/dist/linea/basic_archive_full.js @@ -0,0 +1,70 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_archive_full = void 0; +var basic_archive_full = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "5,41 11,1 53,1 59,41 " + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M21,41c0,6.075,4.925,11,11,11s11-4.925,11-11h16v22\r\n\tH5V41H21z" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "12", + "y1": "31", + "x2": "52", + "y2": "31" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "14", + "y1": "21", + "x2": "50", + "y2": "21" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "16", + "y1": "11", + "x2": "48", + "y2": "11" + }, + "children": [] + }] +}; +exports.basic_archive_full = basic_archive_full; \ No newline at end of file diff --git a/dist/linea/basic_ban.js b/dist/linea/basic_ban.js new file mode 100644 index 000000000..3d7323eb4 --- /dev/null +++ b/dist/linea/basic_ban.js @@ -0,0 +1,34 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_ban = void 0; +var basic_ban = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M53.919,10.08c12.108,12.106,12.108,31.733,0,43.84\r\n\tc-12.105,12.107-31.732,12.107-43.838,0c-12.108-12.106-12.108-31.733,0-43.84C22.187-2.027,41.813-2.027,53.919,10.08z" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "10.08", + "y1": "10.08", + "x2": "53.92", + "y2": "53.92" + }, + "children": [] + }] +}; +exports.basic_ban = basic_ban; \ No newline at end of file diff --git a/dist/linea/basic_battery_charge.js b/dist/linea/basic_battery_charge.js new file mode 100644 index 000000000..444236231 --- /dev/null +++ b/dist/linea/basic_battery_charge.js @@ -0,0 +1,97 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_battery_charge = void 0; +var basic_battery_charge = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "21", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "58", + "height": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "21", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "58", + "height": "24" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "59,27 63,27 63,39 59,39 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "59,27 63,27 63,39 59,39 \t" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "5", + "y": "25", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "50", + "height": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "5", + "y": "25", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "50", + "height": "16" + }, + "children": [] + }] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "22,33 29,30 29,36 36,33 " + }, + "children": [] + }] +}; +exports.basic_battery_charge = basic_battery_charge; \ No newline at end of file diff --git a/dist/linea/basic_battery_empty.js b/dist/linea/basic_battery_empty.js new file mode 100644 index 000000000..127d4f8cf --- /dev/null +++ b/dist/linea/basic_battery_empty.js @@ -0,0 +1,81 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_battery_empty = void 0; +var basic_battery_empty = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "21", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "58", + "height": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "21", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "58", + "height": "24" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "59,27 63,27 63,39 59,39 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "59,27 63,27 63,39 59,39 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "18,41 5,41 5,25 14,25 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "18,41 5,41 5,25 14,25 \t" + }, + "children": [] + }] + }] + }] +}; +exports.basic_battery_empty = basic_battery_empty; \ No newline at end of file diff --git a/dist/linea/basic_battery_full.js b/dist/linea/basic_battery_full.js new file mode 100644 index 000000000..ed0f3abd1 --- /dev/null +++ b/dist/linea/basic_battery_full.js @@ -0,0 +1,87 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_battery_full = void 0; +var basic_battery_full = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "21", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "58", + "height": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "21", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "58", + "height": "24" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "59,27 63,27 63,39 59,39 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "59,27 63,27 63,39 59,39 \t" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "5", + "y": "25", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "50", + "height": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "5", + "y": "25", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "50", + "height": "16" + }, + "children": [] + }] + }] + }] +}; +exports.basic_battery_full = basic_battery_full; \ No newline at end of file diff --git a/dist/linea/basic_battery_half.js b/dist/linea/basic_battery_half.js new file mode 100644 index 000000000..1025430dc --- /dev/null +++ b/dist/linea/basic_battery_half.js @@ -0,0 +1,81 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_battery_half = void 0; +var basic_battery_half = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "21", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "58", + "height": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "21", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "58", + "height": "24" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "59,27 63,27 63,39 59,39 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "59,27 63,27 63,39 59,39 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "33,41 5,41 5,25 29,25 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "33,41 5,41 5,25 29,25 \t" + }, + "children": [] + }] + }] + }] +}; +exports.basic_battery_half = basic_battery_half; \ No newline at end of file diff --git a/dist/linea/basic_bolt.js b/dist/linea/basic_bolt.js new file mode 100644 index 000000000..6ef7f967d --- /dev/null +++ b/dist/linea/basic_bolt.js @@ -0,0 +1,22 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_bolt = void 0; +var basic_bolt = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "40,1 17,37 31,37 \r\n\t24,63 50,27 36,27 " + }, + "children": [] + }] +}; +exports.basic_bolt = basic_bolt; \ No newline at end of file diff --git a/dist/linea/basic_book.js b/dist/linea/basic_book.js new file mode 100644 index 000000000..3d9f474c4 --- /dev/null +++ b/dist/linea/basic_book.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_book = void 0; +var basic_book = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "7", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "46", + "height": "62" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "15", + "y1": "63", + "x2": "15", + "y2": "2" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "20", + "y1": "15", + "x2": "48", + "y2": "15" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "20", + "y1": "21", + "x2": "48", + "y2": "21" + }, + "children": [] + }] +}; +exports.basic_book = basic_book; \ No newline at end of file diff --git a/dist/linea/basic_book_pen.js b/dist/linea/basic_book_pen.js new file mode 100644 index 000000000..344c0f3fd --- /dev/null +++ b/dist/linea/basic_book_pen.js @@ -0,0 +1,83 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_book_pen = void 0; +var basic_book_pen = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "46", + "height": "62" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "9", + "y1": "63", + "x2": "9", + "y2": "2" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "14", + "y1": "15", + "x2": "42", + "y2": "15" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "14", + "y1": "21", + "x2": "42", + "y2": "21" + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "63,3 63,53 59,61 55,53 55,3 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "55,7 51,7 51,17 " + }, + "children": [] + }] +}; +exports.basic_book_pen = basic_book_pen; \ No newline at end of file diff --git a/dist/linea/basic_book_pencil.js b/dist/linea/basic_book_pencil.js new file mode 100644 index 000000000..40c2d9c6f --- /dev/null +++ b/dist/linea/basic_book_pencil.js @@ -0,0 +1,86 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_book_pencil = void 0; +var basic_book_pencil = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "46", + "height": "62" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "9", + "y1": "63", + "x2": "9", + "y2": "2" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "14", + "y1": "15", + "x2": "42", + "y2": "15" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "14", + "y1": "21", + "x2": "42", + "y2": "21" + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "55,1 55,54 59,62 63,54 63,1 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "55", + "y1": "11", + "x2": "63", + "y2": "11" + }, + "children": [] + }] +}; +exports.basic_book_pencil = basic_book_pencil; \ No newline at end of file diff --git a/dist/linea/basic_bookmark.js b/dist/linea/basic_bookmark.js new file mode 100644 index 000000000..1c26c8484 --- /dev/null +++ b/dist/linea/basic_bookmark.js @@ -0,0 +1,21 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_bookmark = void 0; +var basic_bookmark = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "18,1 46,1 46,62 32,48 18,62 " + }, + "children": [] + }] +}; +exports.basic_bookmark = basic_bookmark; \ No newline at end of file diff --git a/dist/linea/basic_calculator.js b/dist/linea/basic_calculator.js new file mode 100644 index 000000000..49ee46cfc --- /dev/null +++ b/dist/linea/basic_calculator.js @@ -0,0 +1,132 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_calculator = void 0; +var basic_calculator = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "62" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "62" + }, + "children": [] + }] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "18", + "y1": "8", + "x2": "18", + "y2": "28" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "28", + "y1": "18", + "x2": "8", + "y2": "18" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "56", + "y1": "18", + "x2": "36", + "y2": "18" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "10", + "y1": "54", + "x2": "26", + "y2": "38" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "10", + "y1": "38", + "x2": "26", + "y2": "54" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "36", + "y1": "43", + "x2": "56", + "y2": "43" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "36", + "y1": "49", + "x2": "56", + "y2": "49" + }, + "children": [] + }] +}; +exports.basic_calculator = basic_calculator; \ No newline at end of file diff --git a/dist/linea/basic_calendar.js b/dist/linea/basic_calendar.js new file mode 100644 index 000000000..ed1ccbee5 --- /dev/null +++ b/dist/linea/basic_calendar.js @@ -0,0 +1,282 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_calendar = void 0; +var basic_calendar = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "46", + "y1": "10", + "x2": "18", + "y2": "10" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "46", + "y1": "10", + "x2": "18", + "y2": "10" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "12", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "12", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "46", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "46", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "10", + "y": "24", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "10", + "height": "10" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "10", + "y": "24", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "10", + "height": "10" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "10", + "y": "42", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "10", + "height": "10" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "10", + "y": "42", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "10", + "height": "10" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "44", + "y": "24", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "10", + "height": "10" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "44", + "y": "24", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "10", + "height": "10" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "44", + "y": "42", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "10", + "height": "10" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "44", + "y": "42", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "10", + "height": "10" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "27", + "y": "24", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "10", + "height": "10" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "27", + "y": "24", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "10", + "height": "10" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "27", + "y": "42", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "10", + "height": "10" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "27", + "y": "42", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "10", + "height": "10" + }, + "children": [] + }] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "1", + "y1": "18", + "x2": "63", + "y2": "18" + }, + "children": [] + }] +}; +exports.basic_calendar = basic_calendar; \ No newline at end of file diff --git a/dist/linea/basic_cards_diamonds.js b/dist/linea/basic_cards_diamonds.js new file mode 100644 index 000000000..99ad71e23 --- /dev/null +++ b/dist/linea/basic_cards_diamonds.js @@ -0,0 +1,80 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_cards_diamonds = void 0; +var basic_cards_diamonds = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "44,59 16,45 36,5 63,19 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "31.899,14.004 28,6 1,20 19,59 32,52.964 \r\n\t" + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "35,41 46,36 45,24 34,29 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "38", + "y1": "9", + "x2": "37", + "y2": "11" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "7", + "y1": "23", + "x2": "6", + "y2": "21" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "43", + "y1": "53", + "x2": "42", + "y2": "55" + }, + "children": [] + }] +}; +exports.basic_cards_diamonds = basic_cards_diamonds; \ No newline at end of file diff --git a/dist/linea/basic_cards_hearts.js b/dist/linea/basic_cards_hearts.js new file mode 100644 index 000000000..7e524dc15 --- /dev/null +++ b/dist/linea/basic_cards_hearts.js @@ -0,0 +1,80 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_cards_hearts = void 0; +var basic_cards_hearts = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "44,59 16,45 36,5 63,19 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "31.899,14.004 28,6 1,20 19,59 32,52.964 \r\n\t" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "38", + "y1": "9", + "x2": "37", + "y2": "11" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "7", + "y1": "23", + "x2": "6", + "y2": "21" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "43", + "y1": "53", + "x2": "42", + "y2": "55" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M33,25c-2.848,5.281,3,15,3,15s11.151,0.28,14-5\r\n\tc1.18-2.188,1.377-5.718-1-7c-2.188-1.18-5.82-1.188-7,1c1.18-2.188,0.188-4.82-2-6C37.624,21.718,34.181,22.813,33,25z" + }, + "children": [] + }] +}; +exports.basic_cards_hearts = basic_cards_hearts; \ No newline at end of file diff --git a/dist/linea/basic_case.js b/dist/linea/basic_case.js new file mode 100644 index 000000000..ad43f37ae --- /dev/null +++ b/dist/linea/basic_case.js @@ -0,0 +1,74 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_case = void 0; +var basic_case = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "18", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "36" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "18", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "36" + }, + "children": [] + }] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "1", + "y1": "30", + "x2": "63", + "y2": "30" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "27,30 27,36 37,36 37,30 " + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M23,18c0,0,0-8,9-8s9,8,9,8" + }, + "children": [] + }] +}; +exports.basic_case = basic_case; \ No newline at end of file diff --git a/dist/linea/basic_chronometer.js b/dist/linea/basic_chronometer.js new file mode 100644 index 000000000..0e30f492d --- /dev/null +++ b/dist/linea/basic_chronometer.js @@ -0,0 +1,339 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_chronometer = void 0; +var basic_chronometer = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M51.799,15.202\r\n\t\tc10.936,10.933,10.936,28.662,0,39.595c-10.935,10.938-28.664,10.938-39.598,0c-10.935-10.933-10.935-28.662,0-39.595\r\n\t\tC23.135,4.266,40.864,4.266,51.799,15.202z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M51.799,15.202\r\n\t\tc10.936,10.933,10.936,28.662,0,39.595c-10.935,10.938-28.664,10.938-39.598,0c-10.935-10.933-10.935-28.662,0-39.595\r\n\t\tC23.135,4.266,40.864,4.266,51.799,15.202z" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "32,7 32,1 38,1 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "32,7 32,1 38,1 \t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "26", + "y1": "1", + "x2": "32", + "y2": "1" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "26", + "y1": "1", + "x2": "32", + "y2": "1" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "63", + "x2": "32", + "y2": "59" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "63", + "x2": "32", + "y2": "59" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "11", + "x2": "32", + "y2": "7" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "11", + "x2": "32", + "y2": "7" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "4", + "y1": "35", + "x2": "8", + "y2": "35" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "4", + "y1": "35", + "x2": "8", + "y2": "35" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "56", + "y1": "35", + "x2": "60", + "y2": "35" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "56", + "y1": "35", + "x2": "60", + "y2": "35" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "14.564", + "y1": "17.565", + "x2": "17.394", + "y2": "20.394" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "14.564", + "y1": "17.565", + "x2": "17.394", + "y2": "20.394" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "46.606", + "y1": "49.606", + "x2": "49.436", + "y2": "52.436" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "46.606", + "y1": "49.606", + "x2": "49.436", + "y2": "52.436" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "49.436", + "y1": "17.565", + "x2": "46.607", + "y2": "20.394" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "49.436", + "y1": "17.565", + "x2": "46.607", + "y2": "20.394" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "17.395", + "y1": "49.606", + "x2": "14.564", + "y2": "52.436" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "17.395", + "y1": "49.606", + "x2": "14.564", + "y2": "52.436" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "21", + "x2": "32", + "y2": "33" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "21", + "x2": "32", + "y2": "33" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "35", + "r": "3" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "35", + "r": "3" + }, + "children": [] + }] + }] + }] +}; +exports.basic_chronometer = basic_chronometer; \ No newline at end of file diff --git a/dist/linea/basic_clessidre.js b/dist/linea/basic_clessidre.js new file mode 100644 index 000000000..7387e1a2e --- /dev/null +++ b/dist/linea/basic_clessidre.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_clessidre = void 0; +var basic_clessidre = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "14", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "36", + "height": "4" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "14", + "y": "59", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "36", + "height": "4" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M18,59c0,0,0-8,0-14s29-19,29-25c0-2,0-15,0-15" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M47,59c0,0,0-8,0-14S18,26,18,20c0-2,0-15,0-15" + }, + "children": [] + }] +}; +exports.basic_clessidre = basic_clessidre; \ No newline at end of file diff --git a/dist/linea/basic_clock.js b/dist/linea/basic_clock.js new file mode 100644 index 000000000..b0ac1a620 --- /dev/null +++ b/dist/linea/basic_clock.js @@ -0,0 +1,159 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_clock = void 0; +var basic_clock = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M53.92,10.081\r\n\t\tc12.107,12.105,12.107,31.732,0,43.838c-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838\r\n\t\tC22.186-2.027,41.813-2.027,53.92,10.081z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M53.92,10.081\r\n\t\tc12.107,12.105,12.107,31.732,0,43.838c-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838\r\n\t\tC22.186-2.027,41.813-2.027,53.92,10.081z" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "32,12 32,32 41,41 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "32,12 32,32 41,41 \t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "4", + "y1": "32", + "x2": "8", + "y2": "32" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "4", + "y1": "32", + "x2": "8", + "y2": "32" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "56", + "y1": "32", + "x2": "60", + "y2": "32" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "56", + "y1": "32", + "x2": "60", + "y2": "32" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "60", + "x2": "32", + "y2": "56" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "60", + "x2": "32", + "y2": "56" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "8", + "x2": "32", + "y2": "4" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "8", + "x2": "32", + "y2": "4" + }, + "children": [] + }] + }] + }] +}; +exports.basic_clock = basic_clock; \ No newline at end of file diff --git a/dist/linea/basic_clockwise.js b/dist/linea/basic_clockwise.js new file mode 100644 index 000000000..830d872cb --- /dev/null +++ b/dist/linea/basic_clockwise.js @@ -0,0 +1,104 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_clockwise = void 0; +var basic_clockwise = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "32,12 32,32 41,41 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "4", + "y1": "32", + "x2": "8", + "y2": "32" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "56", + "y1": "32", + "x2": "60", + "y2": "32" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "60", + "x2": "32", + "y2": "56" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "8", + "x2": "32", + "y2": "4" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M32,63c17.121,0,31-13.879,31-31S49.121,1,32,1" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M32,63C14.879,63,1,49.121,1,32\r\n\tc0-6.713,2.134-12.926,5.759-18l5.62-5.621" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "13,19 13,8 2,8 \r\n\t" + }, + "children": [] + }] +}; +exports.basic_clockwise = basic_clockwise; \ No newline at end of file diff --git a/dist/linea/basic_cloud.js b/dist/linea/basic_cloud.js new file mode 100644 index 000000000..07e5a305c --- /dev/null +++ b/dist/linea/basic_cloud.js @@ -0,0 +1,21 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_cloud = void 0; +var basic_cloud = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M41,50h14c4.565,0,8-3.582,8-8s-3.435-8-8-8\r\n\tc0-11.046-9.52-20-20.934-20C23.966,14,14.8,20.732,13,30c0,0-0.831,0-1.667,0C5.626,30,1,34.477,1,40s4.293,10,10,10H41" + }, + "children": [] + }] +}; +exports.basic_cloud = basic_cloud; \ No newline at end of file diff --git a/dist/linea/basic_clubs.js b/dist/linea/basic_clubs.js new file mode 100644 index 000000000..d93220357 --- /dev/null +++ b/dist/linea/basic_clubs.js @@ -0,0 +1,42 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_clubs = void 0; +var basic_clubs = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M30,38v6c0,0,0,19-7,19h9" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M32,63h9c-7,0-7-19-7-19v-6" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "d": "M34,38\r\n\tc0,7.457,8.044,12.125,15.5,12.125c7.455,0,13.5-6.043,13.5-13.5s-6.045-13.5-13.5-13.5c-2.678,0-5.168,0.789-7.267,2.135\r\n\tc1.995-2.345,3.204-5.378,3.204-8.697c0-7.422-6.017-13.438-13.438-13.438S18.562,9.141,18.562,16.562\r\n\tc0,3.32,1.21,6.353,3.205,8.697c-2.1-1.345-4.59-2.135-7.268-2.135c-7.456,0-13.5,6.043-13.5,13.5s6.044,13.5,13.5,13.5\r\n\tC21.955,50.125,30,45.457,30,38" + }, + "children": [] + }] +}; +exports.basic_clubs = basic_clubs; \ No newline at end of file diff --git a/dist/linea/basic_compass.js b/dist/linea/basic_compass.js new file mode 100644 index 000000000..c042b88fe --- /dev/null +++ b/dist/linea/basic_compass.js @@ -0,0 +1,109 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_compass = void 0; +var basic_compass = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "35", + "r": "28.292" + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "37,40 45,21 26,29 \r\n\t19,47 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "26", + "y1": "29", + "x2": "37", + "y2": "40" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M36.9,7C36.965,6.677,37,6.342,37,6\r\n\tc0-2.761-2.239-5-5-5s-5,2.239-5,5c0,0.342,0.035,0.677,0.1,1" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "7", + "x2": "32", + "y2": "12" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "58", + "x2": "32", + "y2": "63" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "60", + "y1": "35", + "x2": "55", + "y2": "35" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "9", + "y1": "35", + "x2": "4", + "y2": "35" + }, + "children": [] + }] +}; +exports.basic_compass = basic_compass; \ No newline at end of file diff --git a/dist/linea/basic_cup.js b/dist/linea/basic_cup.js new file mode 100644 index 000000000..333e27216 --- /dev/null +++ b/dist/linea/basic_cup.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_cup = void 0; +var basic_cup = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M16,27c0,4.418,6.059,8,16,8s16-3.582,16-8V1H16V27z\r\n\t" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "20", + "y1": "63", + "x2": "44", + "y2": "63" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "35", + "x2": "32", + "y2": "63" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M16,7H7c0,0,0,9,9,9" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M48,7h9c0,0,0,9-9,9" + }, + "children": [] + }] +}; +exports.basic_cup = basic_cup; \ No newline at end of file diff --git a/dist/linea/basic_diamonds.js b/dist/linea/basic_diamonds.js new file mode 100644 index 000000000..f58a3ce73 --- /dev/null +++ b/dist/linea/basic_diamonds.js @@ -0,0 +1,21 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_diamonds = void 0; +var basic_diamonds = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "33,63 56,32 33,1 10,32 " + }, + "children": [] + }] +}; +exports.basic_diamonds = basic_diamonds; \ No newline at end of file diff --git a/dist/linea/basic_display.js b/dist/linea/basic_display.js new file mode 100644 index 000000000..284e8b037 --- /dev/null +++ b/dist/linea/basic_display.js @@ -0,0 +1,106 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_display = void 0; +var basic_display = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "10", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "41" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "10", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "41" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "63", + "x2": "42", + "y2": "63" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "63", + "x2": "42", + "y2": "63" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "63", + "x2": "32", + "y2": "51" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "63", + "x2": "32", + "y2": "51" + }, + "children": [] + }] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "1", + "y1": "43", + "x2": "64", + "y2": "43" + }, + "children": [] + }] +}; +exports.basic_display = basic_display; \ No newline at end of file diff --git a/dist/linea/basic_download.js b/dist/linea/basic_download.js new file mode 100644 index 000000000..6963f326c --- /dev/null +++ b/dist/linea/basic_download.js @@ -0,0 +1,62 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_download = void 0; +var basic_download = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "40,50 32,58 \r\n\t24,50 " + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "58", + "x2": "32", + "y2": "26" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "58", + "x2": "32", + "y2": "26" + }, + "children": [] + }] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "24,42 1,42 1,6 63,6 63,42 40,42 " + }, + "children": [] + }] +}; +exports.basic_download = basic_download; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_bookmark_checck.js b/dist/linea/basic_elaboration_bookmark_checck.js new file mode 100644 index 000000000..78ab0b0b7 --- /dev/null +++ b/dist/linea/basic_elaboration_bookmark_checck.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_bookmark_checck = void 0; +var basic_elaboration_bookmark_checck = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "18,1 46,1 46,62 32,48 18,62 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "23,22 30,29 \r\n\t43,16 " + }, + "children": [] + }] +}; +exports.basic_elaboration_bookmark_checck = basic_elaboration_bookmark_checck; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_bookmark_minus.js b/dist/linea/basic_elaboration_bookmark_minus.js new file mode 100644 index 000000000..70fb94cad --- /dev/null +++ b/dist/linea/basic_elaboration_bookmark_minus.js @@ -0,0 +1,34 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_bookmark_minus = void 0; +var basic_elaboration_bookmark_minus = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "23", + "y1": "22", + "x2": "41", + "y2": "22" + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "18,1 46,1 46,62 32,48 18,62 " + }, + "children": [] + }] +}; +exports.basic_elaboration_bookmark_minus = basic_elaboration_bookmark_minus; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_bookmark_plus.js b/dist/linea/basic_elaboration_bookmark_plus.js new file mode 100644 index 000000000..3ef6ef64c --- /dev/null +++ b/dist/linea/basic_elaboration_bookmark_plus.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_bookmark_plus = void 0; +var basic_elaboration_bookmark_plus = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "23", + "y1": "22", + "x2": "41", + "y2": "22" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "13", + "x2": "32", + "y2": "31" + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "18,1 46,1 46,62 32,48 18,62 " + }, + "children": [] + }] +}; +exports.basic_elaboration_bookmark_plus = basic_elaboration_bookmark_plus; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_bookmark_remove.js b/dist/linea/basic_elaboration_bookmark_remove.js new file mode 100644 index 000000000..fd4b4be76 --- /dev/null +++ b/dist/linea/basic_elaboration_bookmark_remove.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_bookmark_remove = void 0; +var basic_elaboration_bookmark_remove = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "18,1 46,1 46,62 32,48 18,62 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "39", + "y1": "29", + "x2": "25", + "y2": "15" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "25", + "y1": "29", + "x2": "39", + "y2": "15" + }, + "children": [] + }] +}; +exports.basic_elaboration_bookmark_remove = basic_elaboration_bookmark_remove; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_briefcase_check.js b/dist/linea/basic_elaboration_briefcase_check.js new file mode 100644 index 000000000..35575cb7b --- /dev/null +++ b/dist/linea/basic_elaboration_briefcase_check.js @@ -0,0 +1,42 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_briefcase_check = void 0; +var basic_elaboration_briefcase_check = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "5,41 11,1 53,1 59,41 " + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M21,41c0,6.075,4.925,11,11,11s11-4.925,11-11h16v22\r\n\tH5V41H21z" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "23,22 30,29 \r\n\t43,16 " + }, + "children": [] + }] +}; +exports.basic_elaboration_briefcase_check = basic_elaboration_briefcase_check; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_briefcase_download.js b/dist/linea/basic_elaboration_briefcase_download.js new file mode 100644 index 000000000..4ca99154b --- /dev/null +++ b/dist/linea/basic_elaboration_briefcase_download.js @@ -0,0 +1,72 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_briefcase_download = void 0; +var basic_elaboration_briefcase_download = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "5,41 11,1 53,1 59,41 " + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M21,41c0,6.075,4.925,11,11,11s11-4.925,11-11h16v22\r\n\tH5V41H21z" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "40,25 32,33 \r\n\t24,25 " + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "33", + "x2": "32", + "y2": "13" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "33", + "x2": "32", + "y2": "13" + }, + "children": [] + }] + }] + }] +}; +exports.basic_elaboration_briefcase_download = basic_elaboration_briefcase_download; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_briefcase_flagged.js b/dist/linea/basic_elaboration_briefcase_flagged.js new file mode 100644 index 000000000..62f7aea42 --- /dev/null +++ b/dist/linea/basic_elaboration_briefcase_flagged.js @@ -0,0 +1,54 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_briefcase_flagged = void 0; +var basic_elaboration_briefcase_flagged = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "5,41 11,1 53,1 59,41 " + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M21,41c0,6.075,4.925,11,11,11s11-4.925,11-11h16v22\r\n\tH5V41H21z" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "27", + "y1": "11", + "x2": "27", + "y2": "34" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "27,14 42,14 39.484,18 42,22 27,22 " + }, + "children": [] + }] +}; +exports.basic_elaboration_briefcase_flagged = basic_elaboration_briefcase_flagged; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_briefcase_minus.js b/dist/linea/basic_elaboration_briefcase_minus.js new file mode 100644 index 000000000..9e0bc4966 --- /dev/null +++ b/dist/linea/basic_elaboration_briefcase_minus.js @@ -0,0 +1,44 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_briefcase_minus = void 0; +var basic_elaboration_briefcase_minus = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "5,41 11,1 53,1 59,41 " + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M21,41c0,6.075,4.925,11,11,11s11-4.925,11-11h16v22\r\n\tH5V41H21z" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "41", + "y1": "24", + "x2": "23", + "y2": "24" + }, + "children": [] + }] +}; +exports.basic_elaboration_briefcase_minus = basic_elaboration_briefcase_minus; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_briefcase_plus.js b/dist/linea/basic_elaboration_briefcase_plus.js new file mode 100644 index 000000000..99e4d4726 --- /dev/null +++ b/dist/linea/basic_elaboration_briefcase_plus.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_briefcase_plus = void 0; +var basic_elaboration_briefcase_plus = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "5,41 11,1 53,1 59,41 " + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M21,41c0,6.075,4.925,11,11,11s11-4.925,11-11h16v22\r\n\tH5V41H21z" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "15", + "x2": "32", + "y2": "33" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "41", + "y1": "24", + "x2": "23", + "y2": "24" + }, + "children": [] + }] +}; +exports.basic_elaboration_briefcase_plus = basic_elaboration_briefcase_plus; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_briefcase_refresh.js b/dist/linea/basic_elaboration_briefcase_refresh.js new file mode 100644 index 000000000..8ff3a9ab3 --- /dev/null +++ b/dist/linea/basic_elaboration_briefcase_refresh.js @@ -0,0 +1,73 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_briefcase_refresh = void 0; +var basic_elaboration_briefcase_refresh = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "5,41 11,1 53,1 59,41 " + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M21,41c0,6.075,4.925,11,11,11s11-4.925,11-11h16v22\r\n\tH5V41H21z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M24,24c0,4.418,3.582,9,8,9h4" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "33,37 36,33 \r\n\t33,29 " + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M42,24c0-4.418-3.582-9-8-9h-4" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "33,11 30,15 \r\n\t33,19 " + }, + "children": [] + }] +}; +exports.basic_elaboration_briefcase_refresh = basic_elaboration_briefcase_refresh; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_briefcase_remove.js b/dist/linea/basic_elaboration_briefcase_remove.js new file mode 100644 index 000000000..c4733e727 --- /dev/null +++ b/dist/linea/basic_elaboration_briefcase_remove.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_briefcase_remove = void 0; +var basic_elaboration_briefcase_remove = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "5,41 11,1 53,1 59,41 " + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M21,41c0,6.075,4.925,11,11,11s11-4.925,11-11h16v22\r\n\tH5V41H21z" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "39", + "y1": "31", + "x2": "25", + "y2": "17" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "25", + "y1": "31", + "x2": "39", + "y2": "17" + }, + "children": [] + }] +}; +exports.basic_elaboration_briefcase_remove = basic_elaboration_briefcase_remove; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_briefcase_search.js b/dist/linea/basic_elaboration_briefcase_search.js new file mode 100644 index 000000000..bcb846220 --- /dev/null +++ b/dist/linea/basic_elaboration_briefcase_search.js @@ -0,0 +1,85 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_briefcase_search = void 0; +var basic_elaboration_briefcase_search = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "5,41 11,1 53,1 59,41 " + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M21,41c0,6.075,4.925,11,11,11s11-4.925,11-11h16v22\r\n\tH5V41H21z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "29", + "cy": "21", + "r": "6" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "29", + "cy": "21", + "r": "6" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "33", + "y1": "25", + "x2": "41", + "y2": "33" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "33", + "y1": "25", + "x2": "41", + "y2": "33" + }, + "children": [] + }] + }] + }] +}; +exports.basic_elaboration_briefcase_search = basic_elaboration_briefcase_search; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_briefcase_star.js b/dist/linea/basic_elaboration_briefcase_star.js new file mode 100644 index 000000000..73134908a --- /dev/null +++ b/dist/linea/basic_elaboration_briefcase_star.js @@ -0,0 +1,42 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_briefcase_star = void 0; +var basic_elaboration_briefcase_star = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "5,41 11,1 53,1 59,41 " + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M21,41c0,6.075,4.925,11,11,11s11-4.925,11-11h16v22\r\n\tH5V41H21z" + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "round", + "stroke-miterlimit": "10", + "points": "32,27 25.875,31 \r\n\t28,24 22,20 29.213,20 32,12 35,20 42,20 36,24 37.938,31 " + }, + "children": [] + }] +}; +exports.basic_elaboration_briefcase_star = basic_elaboration_briefcase_star; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_briefcase_upload.js b/dist/linea/basic_elaboration_briefcase_upload.js new file mode 100644 index 000000000..44fb01720 --- /dev/null +++ b/dist/linea/basic_elaboration_briefcase_upload.js @@ -0,0 +1,72 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_briefcase_upload = void 0; +var basic_elaboration_briefcase_upload = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "5,41 11,1 53,1 59,41 " + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M21,41c0,6.075,4.925,11,11,11s11-4.925,11-11h16v22\r\n\tH5V41H21z" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "23.998,22 \r\n\t31.998,14 39.998,22 " + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "31.998", + "y1": "14", + "x2": "31.998", + "y2": "34" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "31.998", + "y1": "14", + "x2": "31.998", + "y2": "34" + }, + "children": [] + }] + }] + }] +}; +exports.basic_elaboration_briefcase_upload = basic_elaboration_briefcase_upload; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_browser_check.js b/dist/linea/basic_elaboration_browser_check.js new file mode 100644 index 000000000..a714afbba --- /dev/null +++ b/dist/linea/basic_elaboration_browser_check.js @@ -0,0 +1,87 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_browser_check = void 0; +var basic_elaboration_browser_check = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "7", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "50" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "1", + "y1": "15", + "x2": "63", + "y2": "15" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "10", + "y1": "11", + "x2": "6", + "y2": "11" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "18", + "y1": "11", + "x2": "14", + "y2": "11" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "26", + "y1": "11", + "x2": "22", + "y2": "11" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "23,35 30,42 \r\n\t43,29 " + }, + "children": [] + }] +}; +exports.basic_elaboration_browser_check = basic_elaboration_browser_check; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_browser_download.js b/dist/linea/basic_elaboration_browser_download.js new file mode 100644 index 000000000..72e4e4318 --- /dev/null +++ b/dist/linea/basic_elaboration_browser_download.js @@ -0,0 +1,117 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_browser_download = void 0; +var basic_elaboration_browser_download = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "7", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "50" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "1", + "y1": "15", + "x2": "63", + "y2": "15" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "10", + "y1": "11", + "x2": "6", + "y2": "11" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "18", + "y1": "11", + "x2": "14", + "y2": "11" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "26", + "y1": "11", + "x2": "22", + "y2": "11" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "40,38 32,46 \r\n\t24,38 " + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "46", + "x2": "32", + "y2": "26" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "46", + "x2": "32", + "y2": "26" + }, + "children": [] + }] + }] + }] +}; +exports.basic_elaboration_browser_download = basic_elaboration_browser_download; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_browser_minus.js b/dist/linea/basic_elaboration_browser_minus.js new file mode 100644 index 000000000..270aa128c --- /dev/null +++ b/dist/linea/basic_elaboration_browser_minus.js @@ -0,0 +1,89 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_browser_minus = void 0; +var basic_elaboration_browser_minus = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "7", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "50" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "1", + "y1": "15", + "x2": "63", + "y2": "15" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "10", + "y1": "11", + "x2": "6", + "y2": "11" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "18", + "y1": "11", + "x2": "14", + "y2": "11" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "26", + "y1": "11", + "x2": "22", + "y2": "11" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "41", + "y1": "37", + "x2": "23", + "y2": "37" + }, + "children": [] + }] +}; +exports.basic_elaboration_browser_minus = basic_elaboration_browser_minus; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_browser_plus.js b/dist/linea/basic_elaboration_browser_plus.js new file mode 100644 index 000000000..089659fb2 --- /dev/null +++ b/dist/linea/basic_elaboration_browser_plus.js @@ -0,0 +1,102 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_browser_plus = void 0; +var basic_elaboration_browser_plus = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "7", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "50" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "1", + "y1": "15", + "x2": "63", + "y2": "15" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "10", + "y1": "11", + "x2": "6", + "y2": "11" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "18", + "y1": "11", + "x2": "14", + "y2": "11" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "26", + "y1": "11", + "x2": "22", + "y2": "11" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "28", + "x2": "32", + "y2": "46" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "41", + "y1": "37", + "x2": "23", + "y2": "37" + }, + "children": [] + }] +}; +exports.basic_elaboration_browser_plus = basic_elaboration_browser_plus; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_browser_refresh.js b/dist/linea/basic_elaboration_browser_refresh.js new file mode 100644 index 000000000..8507c5b44 --- /dev/null +++ b/dist/linea/basic_elaboration_browser_refresh.js @@ -0,0 +1,118 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_browser_refresh = void 0; +var basic_elaboration_browser_refresh = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "7", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "50" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M24,37c0,4.418,3.582,9,8,9h4" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "33,50 36,46 \r\n\t33,42 " + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M42,37c0-4.418-3.582-9-8-9h-4" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "33,24 30,28 \r\n\t33,32 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "1", + "y1": "15", + "x2": "63", + "y2": "15" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "10", + "y1": "11", + "x2": "6", + "y2": "11" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "18", + "y1": "11", + "x2": "14", + "y2": "11" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "26", + "y1": "11", + "x2": "22", + "y2": "11" + }, + "children": [] + }] +}; +exports.basic_elaboration_browser_refresh = basic_elaboration_browser_refresh; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_browser_remove.js b/dist/linea/basic_elaboration_browser_remove.js new file mode 100644 index 000000000..7bb287f5a --- /dev/null +++ b/dist/linea/basic_elaboration_browser_remove.js @@ -0,0 +1,102 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_browser_remove = void 0; +var basic_elaboration_browser_remove = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "7", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "50" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "1", + "y1": "15", + "x2": "63", + "y2": "15" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "10", + "y1": "11", + "x2": "6", + "y2": "11" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "18", + "y1": "11", + "x2": "14", + "y2": "11" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "26", + "y1": "11", + "x2": "22", + "y2": "11" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "39", + "y1": "44", + "x2": "25", + "y2": "30" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "25", + "y1": "44", + "x2": "39", + "y2": "30" + }, + "children": [] + }] +}; +exports.basic_elaboration_browser_remove = basic_elaboration_browser_remove; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_browser_search.js b/dist/linea/basic_elaboration_browser_search.js new file mode 100644 index 000000000..fb50f72e1 --- /dev/null +++ b/dist/linea/basic_elaboration_browser_search.js @@ -0,0 +1,130 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_browser_search = void 0; +var basic_elaboration_browser_search = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "7", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "50" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "1", + "y1": "15", + "x2": "63", + "y2": "15" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "10", + "y1": "11", + "x2": "6", + "y2": "11" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "18", + "y1": "11", + "x2": "14", + "y2": "11" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "26", + "y1": "11", + "x2": "22", + "y2": "11" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "29", + "cy": "33", + "r": "6" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "29", + "cy": "33", + "r": "6" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "33", + "y1": "37", + "x2": "41", + "y2": "45" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "33", + "y1": "37", + "x2": "41", + "y2": "45" + }, + "children": [] + }] + }] + }] +}; +exports.basic_elaboration_browser_search = basic_elaboration_browser_search; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_browser_star.js b/dist/linea/basic_elaboration_browser_star.js new file mode 100644 index 000000000..b18842e21 --- /dev/null +++ b/dist/linea/basic_elaboration_browser_star.js @@ -0,0 +1,87 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_browser_star = void 0; +var basic_elaboration_browser_star = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "7", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "50" + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "round", + "stroke-miterlimit": "10", + "points": "32,41 25.875,45 \r\n\t28,38 22,34 29.213,34 32,26 35,34 42,34 36,38 37.938,45 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "1", + "y1": "15", + "x2": "63", + "y2": "15" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "10", + "y1": "11", + "x2": "6", + "y2": "11" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "18", + "y1": "11", + "x2": "14", + "y2": "11" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "26", + "y1": "11", + "x2": "22", + "y2": "11" + }, + "children": [] + }] +}; +exports.basic_elaboration_browser_star = basic_elaboration_browser_star; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_browser_upload.js b/dist/linea/basic_elaboration_browser_upload.js new file mode 100644 index 000000000..bd300158b --- /dev/null +++ b/dist/linea/basic_elaboration_browser_upload.js @@ -0,0 +1,117 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_browser_upload = void 0; +var basic_elaboration_browser_upload = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "7", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "50" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "1", + "y1": "15", + "x2": "63", + "y2": "15" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "10", + "y1": "11", + "x2": "6", + "y2": "11" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "18", + "y1": "11", + "x2": "14", + "y2": "11" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "26", + "y1": "11", + "x2": "22", + "y2": "11" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "23.998,35 \r\n\t31.998,27 39.998,35 " + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "31.998", + "y1": "27", + "x2": "31.998", + "y2": "47" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "31.998", + "y1": "27", + "x2": "31.998", + "y2": "47" + }, + "children": [] + }] + }] + }] +}; +exports.basic_elaboration_browser_upload = basic_elaboration_browser_upload; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_calendar_check.js b/dist/linea/basic_elaboration_calendar_check.js new file mode 100644 index 000000000..dedd24d8e --- /dev/null +++ b/dist/linea/basic_elaboration_calendar_check.js @@ -0,0 +1,137 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_calendar_check = void 0; +var basic_elaboration_calendar_check = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "23,36 30,43 \r\n\t43,30 " + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "46", + "y1": "10", + "x2": "18", + "y2": "10" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "46", + "y1": "10", + "x2": "18", + "y2": "10" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "12", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "12", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "46", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "46", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [] + }] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "1", + "y1": "18", + "x2": "63", + "y2": "18" + }, + "children": [] + }] +}; +exports.basic_elaboration_calendar_check = basic_elaboration_calendar_check; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_calendar_cloud.js b/dist/linea/basic_elaboration_calendar_cloud.js new file mode 100644 index 000000000..4ac21e5ce --- /dev/null +++ b/dist/linea/basic_elaboration_calendar_cloud.js @@ -0,0 +1,136 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_calendar_cloud = void 0; +var basic_elaboration_calendar_cloud = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "46", + "y1": "10", + "x2": "18", + "y2": "10" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "46", + "y1": "10", + "x2": "18", + "y2": "10" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "12", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "12", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "46", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "46", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [] + }] + }] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M34.887,44H39c1.887,0,3-1,3-3c0-1-1-3-3-3\r\n\tc0-3.604-3.277-6-7-6c-3.295,0-6.413,2.978-7,6l0,0c-2,0-3,2-3,3c0,2,1,3,3,3h10.434" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "1", + "y1": "18", + "x2": "63", + "y2": "18" + }, + "children": [] + }] +}; +exports.basic_elaboration_calendar_cloud = basic_elaboration_calendar_cloud; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_calendar_download.js b/dist/linea/basic_elaboration_calendar_download.js new file mode 100644 index 000000000..9abceafef --- /dev/null +++ b/dist/linea/basic_elaboration_calendar_download.js @@ -0,0 +1,167 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_calendar_download = void 0; +var basic_elaboration_calendar_download = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "40,39 32,47 \r\n\t24,39 " + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "47", + "x2": "32", + "y2": "27" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "47", + "x2": "32", + "y2": "27" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "46", + "y1": "10", + "x2": "18", + "y2": "10" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "46", + "y1": "10", + "x2": "18", + "y2": "10" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "12", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "12", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "46", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "46", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [] + }] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "1", + "y1": "18", + "x2": "63", + "y2": "18" + }, + "children": [] + }] +}; +exports.basic_elaboration_calendar_download = basic_elaboration_calendar_download; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_calendar_empty.js b/dist/linea/basic_elaboration_calendar_empty.js new file mode 100644 index 000000000..48f4e2271 --- /dev/null +++ b/dist/linea/basic_elaboration_calendar_empty.js @@ -0,0 +1,126 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_calendar_empty = void 0; +var basic_elaboration_calendar_empty = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "46", + "y1": "10", + "x2": "18", + "y2": "10" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "46", + "y1": "10", + "x2": "18", + "y2": "10" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "12", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "12", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "46", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "46", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [] + }] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "1", + "y1": "18", + "x2": "63", + "y2": "18" + }, + "children": [] + }] +}; +exports.basic_elaboration_calendar_empty = basic_elaboration_calendar_empty; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_calendar_flagged.js b/dist/linea/basic_elaboration_calendar_flagged.js new file mode 100644 index 000000000..5fbf3a5b3 --- /dev/null +++ b/dist/linea/basic_elaboration_calendar_flagged.js @@ -0,0 +1,149 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_calendar_flagged = void 0; +var basic_elaboration_calendar_flagged = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "46", + "y1": "10", + "x2": "18", + "y2": "10" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "46", + "y1": "10", + "x2": "18", + "y2": "10" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "12", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "12", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "46", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "46", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [] + }] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "1", + "y1": "18", + "x2": "63", + "y2": "18" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "27", + "y1": "27", + "x2": "27", + "y2": "50" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "27,30 42,30 39.484,34 42,38 27,38 " + }, + "children": [] + }] +}; +exports.basic_elaboration_calendar_flagged = basic_elaboration_calendar_flagged; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_calendar_heart.js b/dist/linea/basic_elaboration_calendar_heart.js new file mode 100644 index 000000000..96c44370b --- /dev/null +++ b/dist/linea/basic_elaboration_calendar_heart.js @@ -0,0 +1,136 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_calendar_heart = void 0; +var basic_elaboration_calendar_heart = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "46", + "y1": "10", + "x2": "18", + "y2": "10" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "46", + "y1": "10", + "x2": "18", + "y2": "10" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "12", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "12", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "46", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "46", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [] + }] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "1", + "y1": "18", + "x2": "63", + "y2": "18" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M22,35c0,6.666,10,12,10,12s10-5.334,10-12\r\n\tc0-2.762-2-5-5-5c-2.762,0-5,2.238-5,5c0-2.762-2.238-5-5-5C24,30,22,32.238,22,35z" + }, + "children": [] + }] +}; +exports.basic_elaboration_calendar_heart = basic_elaboration_calendar_heart; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_calendar_minus.js b/dist/linea/basic_elaboration_calendar_minus.js new file mode 100644 index 000000000..38149589e --- /dev/null +++ b/dist/linea/basic_elaboration_calendar_minus.js @@ -0,0 +1,139 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_calendar_minus = void 0; +var basic_elaboration_calendar_minus = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "41", + "y1": "38", + "x2": "23", + "y2": "38" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "46", + "y1": "10", + "x2": "18", + "y2": "10" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "46", + "y1": "10", + "x2": "18", + "y2": "10" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "12", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "12", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "46", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "46", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [] + }] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "1", + "y1": "18", + "x2": "63", + "y2": "18" + }, + "children": [] + }] +}; +exports.basic_elaboration_calendar_minus = basic_elaboration_calendar_minus; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_calendar_next.js b/dist/linea/basic_elaboration_calendar_next.js new file mode 100644 index 000000000..cc856f8ee --- /dev/null +++ b/dist/linea/basic_elaboration_calendar_next.js @@ -0,0 +1,167 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_calendar_next = void 0; +var basic_elaboration_calendar_next = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "46", + "y1": "10", + "x2": "18", + "y2": "10" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "46", + "y1": "10", + "x2": "18", + "y2": "10" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "12", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "12", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "46", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "46", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [] + }] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "34,30 42,38 \r\n\t34,46 " + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "42", + "y1": "38", + "x2": "22", + "y2": "38" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "42", + "y1": "38", + "x2": "22", + "y2": "38" + }, + "children": [] + }] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "1", + "y1": "18", + "x2": "63", + "y2": "18" + }, + "children": [] + }] +}; +exports.basic_elaboration_calendar_next = basic_elaboration_calendar_next; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_calendar_noaccess.js b/dist/linea/basic_elaboration_calendar_noaccess.js new file mode 100644 index 000000000..f3205d7b2 --- /dev/null +++ b/dist/linea/basic_elaboration_calendar_noaccess.js @@ -0,0 +1,151 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_calendar_noaccess = void 0; +var basic_elaboration_calendar_noaccess = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "46", + "y1": "10", + "x2": "18", + "y2": "10" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "46", + "y1": "10", + "x2": "18", + "y2": "10" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "12", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "12", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "46", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "46", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [] + }] + }] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "38", + "r": "9" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "25.834", + "y1": "31.834", + "x2": "38.166", + "y2": "44.166" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "1", + "y1": "18", + "x2": "63", + "y2": "18" + }, + "children": [] + }] +}; +exports.basic_elaboration_calendar_noaccess = basic_elaboration_calendar_noaccess; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_calendar_pencil.js b/dist/linea/basic_elaboration_calendar_pencil.js new file mode 100644 index 000000000..325b9657a --- /dev/null +++ b/dist/linea/basic_elaboration_calendar_pencil.js @@ -0,0 +1,176 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_calendar_pencil = void 0; +var basic_elaboration_calendar_pencil = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "46", + "y1": "10", + "x2": "18", + "y2": "10" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "46", + "y1": "10", + "x2": "18", + "y2": "10" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "12", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "12", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "46", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "46", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [] + }] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "1", + "y1": "18", + "x2": "63", + "y2": "18" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,43 22,48 27,47 42,32 38,28 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,43 22,48 27,47 42,32 38,28 \t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "39", + "y1": "35", + "x2": "35", + "y2": "31" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "39", + "y1": "35", + "x2": "35", + "y2": "31" + }, + "children": [] + }] + }] + }] +}; +exports.basic_elaboration_calendar_pencil = basic_elaboration_calendar_pencil; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_calendar_plus.js b/dist/linea/basic_elaboration_calendar_plus.js new file mode 100644 index 000000000..8267908c2 --- /dev/null +++ b/dist/linea/basic_elaboration_calendar_plus.js @@ -0,0 +1,152 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_calendar_plus = void 0; +var basic_elaboration_calendar_plus = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "46", + "y1": "10", + "x2": "18", + "y2": "10" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "46", + "y1": "10", + "x2": "18", + "y2": "10" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "12", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "12", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "46", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "46", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [] + }] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "29", + "x2": "32", + "y2": "47" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "41", + "y1": "38", + "x2": "23", + "y2": "38" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "1", + "y1": "18", + "x2": "63", + "y2": "18" + }, + "children": [] + }] +}; +exports.basic_elaboration_calendar_plus = basic_elaboration_calendar_plus; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_calendar_previous.js b/dist/linea/basic_elaboration_calendar_previous.js new file mode 100644 index 000000000..118ca6d26 --- /dev/null +++ b/dist/linea/basic_elaboration_calendar_previous.js @@ -0,0 +1,150 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_calendar_previous = void 0; +var basic_elaboration_calendar_previous = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "46", + "y1": "10", + "x2": "18", + "y2": "10" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "46", + "y1": "10", + "x2": "18", + "y2": "10" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "12", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "12", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "46", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "46", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [] + }] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "1", + "y1": "18", + "x2": "63", + "y2": "18" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "30.001,46 \r\n\t22.001,38 30.001,30 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22.001", + "y1": "38", + "x2": "42.001", + "y2": "38" + }, + "children": [] + }] +}; +exports.basic_elaboration_calendar_previous = basic_elaboration_calendar_previous; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_calendar_refresh.js b/dist/linea/basic_elaboration_calendar_refresh.js new file mode 100644 index 000000000..f1d497f0d --- /dev/null +++ b/dist/linea/basic_elaboration_calendar_refresh.js @@ -0,0 +1,168 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_calendar_refresh = void 0; +var basic_elaboration_calendar_refresh = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M24,38c0,4.418,3.582,9,8,9h4" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "33,51 36,47 \r\n\t33,43 " + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M42,38c0-4.418-3.582-9-8-9h-4" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "33,25 30,29 \r\n\t33,33 " + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "46", + "y1": "10", + "x2": "18", + "y2": "10" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "46", + "y1": "10", + "x2": "18", + "y2": "10" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "12", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "12", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "46", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "46", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [] + }] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "1", + "y1": "18", + "x2": "63", + "y2": "18" + }, + "children": [] + }] +}; +exports.basic_elaboration_calendar_refresh = basic_elaboration_calendar_refresh; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_calendar_remove.js b/dist/linea/basic_elaboration_calendar_remove.js new file mode 100644 index 000000000..a84dd6361 --- /dev/null +++ b/dist/linea/basic_elaboration_calendar_remove.js @@ -0,0 +1,152 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_calendar_remove = void 0; +var basic_elaboration_calendar_remove = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "39", + "y1": "45", + "x2": "25", + "y2": "31" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "25", + "y1": "45", + "x2": "39", + "y2": "31" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "46", + "y1": "10", + "x2": "18", + "y2": "10" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "46", + "y1": "10", + "x2": "18", + "y2": "10" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "12", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "12", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "46", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "46", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [] + }] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "1", + "y1": "18", + "x2": "63", + "y2": "18" + }, + "children": [] + }] +}; +exports.basic_elaboration_calendar_remove = basic_elaboration_calendar_remove; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_calendar_search.js b/dist/linea/basic_elaboration_calendar_search.js new file mode 100644 index 000000000..5a7ae4cfc --- /dev/null +++ b/dist/linea/basic_elaboration_calendar_search.js @@ -0,0 +1,180 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_calendar_search = void 0; +var basic_elaboration_calendar_search = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "29", + "cy": "35", + "r": "6" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "29", + "cy": "35", + "r": "6" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "33", + "y1": "39", + "x2": "41", + "y2": "47" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "33", + "y1": "39", + "x2": "41", + "y2": "47" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "46", + "y1": "10", + "x2": "18", + "y2": "10" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "46", + "y1": "10", + "x2": "18", + "y2": "10" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "12", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "12", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "46", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "46", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [] + }] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "1", + "y1": "18", + "x2": "63", + "y2": "18" + }, + "children": [] + }] +}; +exports.basic_elaboration_calendar_search = basic_elaboration_calendar_search; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_calendar_star.js b/dist/linea/basic_elaboration_calendar_star.js new file mode 100644 index 000000000..fa464f06d --- /dev/null +++ b/dist/linea/basic_elaboration_calendar_star.js @@ -0,0 +1,137 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_calendar_star = void 0; +var basic_elaboration_calendar_star = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "46", + "y1": "10", + "x2": "18", + "y2": "10" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "46", + "y1": "10", + "x2": "18", + "y2": "10" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "12", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "12", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "46", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "46", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [] + }] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "1", + "y1": "18", + "x2": "63", + "y2": "18" + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "round", + "stroke-miterlimit": "10", + "points": "32,43 25.875,47 \r\n\t28,40 22,36 29.213,36 32,28 35,36 42,36 36,40 37.938,47 " + }, + "children": [] + }] +}; +exports.basic_elaboration_calendar_star = basic_elaboration_calendar_star; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_calendar_upload.js b/dist/linea/basic_elaboration_calendar_upload.js new file mode 100644 index 000000000..c7c7e5a2f --- /dev/null +++ b/dist/linea/basic_elaboration_calendar_upload.js @@ -0,0 +1,167 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_calendar_upload = void 0; +var basic_elaboration_calendar_upload = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "23.998,36 \r\n\t31.998,28 39.998,36 " + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "31.998", + "y1": "28", + "x2": "31.998", + "y2": "48" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "31.998", + "y1": "28", + "x2": "31.998", + "y2": "48" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "46", + "y1": "10", + "x2": "18", + "y2": "10" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "46", + "y1": "10", + "x2": "18", + "y2": "10" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "12", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "12", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "46", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "46", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "8" + }, + "children": [] + }] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "1", + "y1": "18", + "x2": "63", + "y2": "18" + }, + "children": [] + }] +}; +exports.basic_elaboration_calendar_upload = basic_elaboration_calendar_upload; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_cloud_check.js b/dist/linea/basic_elaboration_cloud_check.js new file mode 100644 index 000000000..5ef10c86b --- /dev/null +++ b/dist/linea/basic_elaboration_cloud_check.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_cloud_check = void 0; +var basic_elaboration_cloud_check = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "23,34 30,41 \r\n\t43,28 " + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M41,50h14c4.565,0,8-3.582,8-8s-3.435-8-8-8\r\n\tc0-11.046-9.52-20-20.934-20C23.966,14,14.8,20.732,13,30c0,0-0.831,0-1.667,0C5.626,30,1,34.477,1,40s4.293,10,10,10H41" + }, + "children": [] + }] +}; +exports.basic_elaboration_cloud_check = basic_elaboration_cloud_check; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_cloud_download.js b/dist/linea/basic_elaboration_cloud_download.js new file mode 100644 index 000000000..a1660d322 --- /dev/null +++ b/dist/linea/basic_elaboration_cloud_download.js @@ -0,0 +1,62 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_cloud_download = void 0; +var basic_elaboration_cloud_download = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M41,50h14c4.565,0,8-3.582,8-8s-3.435-8-8-8\r\n\tc0-11.046-9.52-20-20.934-20C23.966,14,14.8,20.732,13,30c0,0-0.831,0-1.667,0C5.626,30,1,34.477,1,40s4.293,10,10,10H41" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "40,37 32,45 \r\n\t24,37 " + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "45", + "x2": "32", + "y2": "25" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "45", + "x2": "32", + "y2": "25" + }, + "children": [] + }] + }] + }] +}; +exports.basic_elaboration_cloud_download = basic_elaboration_cloud_download; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_cloud_minus.js b/dist/linea/basic_elaboration_cloud_minus.js new file mode 100644 index 000000000..02c4da11b --- /dev/null +++ b/dist/linea/basic_elaboration_cloud_minus.js @@ -0,0 +1,34 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_cloud_minus = void 0; +var basic_elaboration_cloud_minus = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M41,50h14c4.565,0,8-3.582,8-8s-3.435-8-8-8\r\n\tc0-11.046-9.52-20-20.934-20C23.966,14,14.8,20.732,13,30c0,0-0.831,0-1.667,0C5.626,30,1,34.477,1,40s4.293,10,10,10H41" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "41", + "y1": "34", + "x2": "23", + "y2": "34" + }, + "children": [] + }] +}; +exports.basic_elaboration_cloud_minus = basic_elaboration_cloud_minus; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_cloud_noaccess.js b/dist/linea/basic_elaboration_cloud_noaccess.js new file mode 100644 index 000000000..7a09a512d --- /dev/null +++ b/dist/linea/basic_elaboration_cloud_noaccess.js @@ -0,0 +1,46 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_cloud_noaccess = void 0; +var basic_elaboration_cloud_noaccess = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M41,50h14c4.565,0,8-3.582,8-8s-3.435-8-8-8\r\n\tc0-11.046-9.52-20-20.934-20C23.966,14,14.8,20.732,13,30c0,0-0.831,0-1.667,0C5.626,30,1,34.477,1,40s4.293,10,10,10H41" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "34", + "r": "9" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "25.834", + "y1": "27.834", + "x2": "38.166", + "y2": "40.166" + }, + "children": [] + }] +}; +exports.basic_elaboration_cloud_noaccess = basic_elaboration_cloud_noaccess; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_cloud_plus.js b/dist/linea/basic_elaboration_cloud_plus.js new file mode 100644 index 000000000..9b2bdec05 --- /dev/null +++ b/dist/linea/basic_elaboration_cloud_plus.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_cloud_plus = void 0; +var basic_elaboration_cloud_plus = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M41,50h14c4.565,0,8-3.582,8-8s-3.435-8-8-8\r\n\tc0-11.046-9.52-20-20.934-20C23.966,14,14.8,20.732,13,30c0,0-0.831,0-1.667,0C5.626,30,1,34.477,1,40s4.293,10,10,10H41" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "25", + "x2": "32", + "y2": "43" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "41", + "y1": "34", + "x2": "23", + "y2": "34" + }, + "children": [] + }] +}; +exports.basic_elaboration_cloud_plus = basic_elaboration_cloud_plus; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_cloud_refresh.js b/dist/linea/basic_elaboration_cloud_refresh.js new file mode 100644 index 000000000..20f6e73f6 --- /dev/null +++ b/dist/linea/basic_elaboration_cloud_refresh.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_cloud_refresh = void 0; +var basic_elaboration_cloud_refresh = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M24,32c0,4.418,3.582,9,8,9h4" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M41,50h14c4.565,0,8-3.582,8-8s-3.435-8-8-8\r\n\tc0-11.046-9.52-20-20.934-20C23.966,14,14.8,20.732,13,30c0,0-0.831,0-1.667,0C5.626,30,1,34.477,1,40s4.293,10,10,10H41" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "33,45 36,41 \r\n\t33,37 " + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M42,32c0-4.418-3.582-9-8-9h-4" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "33,19 30,23 \r\n\t33,27 " + }, + "children": [] + }] +}; +exports.basic_elaboration_cloud_refresh = basic_elaboration_cloud_refresh; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_cloud_remove.js b/dist/linea/basic_elaboration_cloud_remove.js new file mode 100644 index 000000000..8ecc70474 --- /dev/null +++ b/dist/linea/basic_elaboration_cloud_remove.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_cloud_remove = void 0; +var basic_elaboration_cloud_remove = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M41,50h14c4.565,0,8-3.582,8-8s-3.435-8-8-8\r\n\tc0-11.046-9.52-20-20.934-20C23.966,14,14.8,20.732,13,30c0,0-0.831,0-1.667,0C5.626,30,1,34.477,1,40s4.293,10,10,10H41" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "39", + "y1": "41", + "x2": "25", + "y2": "27" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "25", + "y1": "41", + "x2": "39", + "y2": "27" + }, + "children": [] + }] +}; +exports.basic_elaboration_cloud_remove = basic_elaboration_cloud_remove; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_cloud_search.js b/dist/linea/basic_elaboration_cloud_search.js new file mode 100644 index 000000000..3de8f2bb0 --- /dev/null +++ b/dist/linea/basic_elaboration_cloud_search.js @@ -0,0 +1,75 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_cloud_search = void 0; +var basic_elaboration_cloud_search = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M41,50h14c4.565,0,8-3.582,8-8s-3.435-8-8-8\r\n\tc0-11.046-9.52-20-20.934-20C23.966,14,14.8,20.732,13,30c0,0-0.831,0-1.667,0C5.626,30,1,34.477,1,40s4.293,10,10,10H41" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "29", + "cy": "31", + "r": "6" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "29", + "cy": "31", + "r": "6" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "33", + "y1": "35", + "x2": "41", + "y2": "43" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "33", + "y1": "35", + "x2": "41", + "y2": "43" + }, + "children": [] + }] + }] + }] +}; +exports.basic_elaboration_cloud_search = basic_elaboration_cloud_search; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_cloud_upload.js b/dist/linea/basic_elaboration_cloud_upload.js new file mode 100644 index 000000000..545b2bccd --- /dev/null +++ b/dist/linea/basic_elaboration_cloud_upload.js @@ -0,0 +1,62 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_cloud_upload = void 0; +var basic_elaboration_cloud_upload = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M41,50h14c4.565,0,8-3.582,8-8s-3.435-8-8-8\r\n\tc0-11.046-9.52-20-20.934-20C23.966,14,14.8,20.732,13,30c0,0-0.831,0-1.667,0C5.626,30,1,34.477,1,40s4.293,10,10,10H41" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "23.998,34 \r\n\t31.998,26 39.998,34 " + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "31.998", + "y1": "26", + "x2": "31.998", + "y2": "46" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "31.998", + "y1": "26", + "x2": "31.998", + "y2": "46" + }, + "children": [] + }] + }] + }] +}; +exports.basic_elaboration_cloud_upload = basic_elaboration_cloud_upload; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_document_check.js b/dist/linea/basic_elaboration_document_check.js new file mode 100644 index 000000000..25c32af74 --- /dev/null +++ b/dist/linea/basic_elaboration_document_check.js @@ -0,0 +1,66 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_document_check = void 0; +var basic_elaboration_document_check = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,1 55,1 55,63 9,63 9,15 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,1 55,1 55,63 9,63 9,15 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "9,15 23,15 23,1 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "9,15 23,15 23,1 \t" + }, + "children": [] + }] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "23,36 30,43 \r\n\t43,30 " + }, + "children": [] + }] +}; +exports.basic_elaboration_document_check = basic_elaboration_document_check; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_document_cloud.js b/dist/linea/basic_elaboration_document_cloud.js new file mode 100644 index 000000000..1710a5be4 --- /dev/null +++ b/dist/linea/basic_elaboration_document_cloud.js @@ -0,0 +1,65 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_document_cloud = void 0; +var basic_elaboration_document_cloud = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,1 55,1 55,63 9,63 9,15 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,1 55,1 55,63 9,63 9,15 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "9,15 23,15 23,1 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "9,15 23,15 23,1 \t" + }, + "children": [] + }] + }] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M34.887,42H39c1.887,0,3-1,3-3c0-1-1-3-3-3\r\n\tc0-3.604-3.277-6-7-6c-3.295,0-6.413,2.978-7,6l0,0c-2,0-3,2-3,3c0,2,1,3,3,3h10.434" + }, + "children": [] + }] +}; +exports.basic_elaboration_document_cloud = basic_elaboration_document_cloud; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_document_download.js b/dist/linea/basic_elaboration_document_download.js new file mode 100644 index 000000000..ad6d88e0d --- /dev/null +++ b/dist/linea/basic_elaboration_document_download.js @@ -0,0 +1,96 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_document_download = void 0; +var basic_elaboration_document_download = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,1 55,1 55,63 9,63 9,15 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,1 55,1 55,63 9,63 9,15 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "9,15 23,15 23,1 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "9,15 23,15 23,1 \t" + }, + "children": [] + }] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "40,37 32,45 \r\n\t24,37 " + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "45", + "x2": "32", + "y2": "25" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "45", + "x2": "32", + "y2": "25" + }, + "children": [] + }] + }] + }] +}; +exports.basic_elaboration_document_download = basic_elaboration_document_download; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_document_flagged.js b/dist/linea/basic_elaboration_document_flagged.js new file mode 100644 index 000000000..b174641d1 --- /dev/null +++ b/dist/linea/basic_elaboration_document_flagged.js @@ -0,0 +1,78 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_document_flagged = void 0; +var basic_elaboration_document_flagged = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,1 55,1 55,63 9,63 9,15 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,1 55,1 55,63 9,63 9,15 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "9,15 23,15 23,1 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "9,15 23,15 23,1 \t" + }, + "children": [] + }] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "27", + "y1": "21", + "x2": "27", + "y2": "44" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "27,24 42,24 39.484,28 42,32 27,32 " + }, + "children": [] + }] +}; +exports.basic_elaboration_document_flagged = basic_elaboration_document_flagged; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_document_graph.js b/dist/linea/basic_elaboration_document_graph.js new file mode 100644 index 000000000..b2b35c533 --- /dev/null +++ b/dist/linea/basic_elaboration_document_graph.js @@ -0,0 +1,153 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_document_graph = void 0; +var basic_elaboration_document_graph = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,1 55,1 55,63 9,63 9,15 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,1 55,1 55,63 9,63 9,15 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "9,15 23,15 23,1 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "9,15 23,15 23,1 \t" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "27,44 27,37 23,37 23,44 \t\t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "27,44 27,37 23,37 23,44 \t\t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "34,44 34,27 30,27 30,44 \t\t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "34,44 34,27 30,27 30,44 \t\t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "41,44 41,34 37,34 37,44 \t\t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "41,44 41,34 37,34 37,44 \t\t" + }, + "children": [] + }] + }] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "20", + "y1": "45", + "x2": "44", + "y2": "45" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "20", + "y1": "45", + "x2": "44", + "y2": "45" + }, + "children": [] + }] + }] + }] +}; +exports.basic_elaboration_document_graph = basic_elaboration_document_graph; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_document_heart.js b/dist/linea/basic_elaboration_document_heart.js new file mode 100644 index 000000000..0f9876ca8 --- /dev/null +++ b/dist/linea/basic_elaboration_document_heart.js @@ -0,0 +1,65 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_document_heart = void 0; +var basic_elaboration_document_heart = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,1 55,1 55,63 9,63 9,15 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,1 55,1 55,63 9,63 9,15 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "9,15 23,15 23,1 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "9,15 23,15 23,1 \t" + }, + "children": [] + }] + }] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M22,33c0,6.666,10,12,10,12s10-5.334,10-12\r\n\tc0-2.762-2-5-5-5c-2.762,0-5,2.238-5,5c0-2.762-2.238-5-5-5C24,28,22,30.238,22,33z" + }, + "children": [] + }] +}; +exports.basic_elaboration_document_heart = basic_elaboration_document_heart; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_document_minus.js b/dist/linea/basic_elaboration_document_minus.js new file mode 100644 index 000000000..09eb6c294 --- /dev/null +++ b/dist/linea/basic_elaboration_document_minus.js @@ -0,0 +1,68 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_document_minus = void 0; +var basic_elaboration_document_minus = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,1 55,1 55,63 9,63 9,15 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,1 55,1 55,63 9,63 9,15 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "9,15 23,15 23,1 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "9,15 23,15 23,1 \t" + }, + "children": [] + }] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "41", + "y1": "36", + "x2": "23", + "y2": "36" + }, + "children": [] + }] +}; +exports.basic_elaboration_document_minus = basic_elaboration_document_minus; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_document_next.js b/dist/linea/basic_elaboration_document_next.js new file mode 100644 index 000000000..cef1f8d2f --- /dev/null +++ b/dist/linea/basic_elaboration_document_next.js @@ -0,0 +1,96 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_document_next = void 0; +var basic_elaboration_document_next = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,1 55,1 55,63 9,63 9,15 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,1 55,1 55,63 9,63 9,15 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "9,15 23,15 23,1 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "9,15 23,15 23,1 \t" + }, + "children": [] + }] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "34,28 42,36 \r\n\t34,44 " + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "42", + "y1": "36", + "x2": "22", + "y2": "36" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "42", + "y1": "36", + "x2": "22", + "y2": "36" + }, + "children": [] + }] + }] + }] +}; +exports.basic_elaboration_document_next = basic_elaboration_document_next; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_document_noaccess.js b/dist/linea/basic_elaboration_document_noaccess.js new file mode 100644 index 000000000..48868cb0a --- /dev/null +++ b/dist/linea/basic_elaboration_document_noaccess.js @@ -0,0 +1,80 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_document_noaccess = void 0; +var basic_elaboration_document_noaccess = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,1 55,1 55,63 9,63 9,15 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,1 55,1 55,63 9,63 9,15 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "9,15 23,15 23,1 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "9,15 23,15 23,1 \t" + }, + "children": [] + }] + }] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "36", + "r": "9" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "25.834", + "y1": "29.834", + "x2": "38.166", + "y2": "42.166" + }, + "children": [] + }] +}; +exports.basic_elaboration_document_noaccess = basic_elaboration_document_noaccess; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_document_note.js b/dist/linea/basic_elaboration_document_note.js new file mode 100644 index 000000000..22f1d6f2c --- /dev/null +++ b/dist/linea/basic_elaboration_document_note.js @@ -0,0 +1,153 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_document_note = void 0; +var basic_elaboration_document_note = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,1 55,1 55,63 9,63 9,15 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,1 55,1 55,63 9,63 9,15 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "9,15 23,15 23,1 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "9,15 23,15 23,1 \t" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "35", + "cy": "41", + "r": "3" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "35", + "cy": "41", + "r": "3" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "25", + "cy": "43", + "r": "3" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "25", + "cy": "43", + "r": "3" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "38,41 38,26 28,28 28,43 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "38,41 38,26 28,28 28,43 \t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "28", + "y1": "32", + "x2": "38", + "y2": "30" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "28", + "y1": "32", + "x2": "38", + "y2": "30" + }, + "children": [] + }] + }] + }] +}; +exports.basic_elaboration_document_note = basic_elaboration_document_note; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_document_pencil.js b/dist/linea/basic_elaboration_document_pencil.js new file mode 100644 index 000000000..53976f007 --- /dev/null +++ b/dist/linea/basic_elaboration_document_pencil.js @@ -0,0 +1,105 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_document_pencil = void 0; +var basic_elaboration_document_pencil = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,1 55,1 55,63 9,63 9,15 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,1 55,1 55,63 9,63 9,15 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "9,15 23,15 23,1 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "9,15 23,15 23,1 \t" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,41 22,46 27,45 42,30 38,26 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,41 22,46 27,45 42,30 38,26 \t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "39", + "y1": "33", + "x2": "35", + "y2": "29" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "39", + "y1": "33", + "x2": "35", + "y2": "29" + }, + "children": [] + }] + }] + }] +}; +exports.basic_elaboration_document_pencil = basic_elaboration_document_pencil; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_document_picture.js b/dist/linea/basic_elaboration_document_picture.js new file mode 100644 index 000000000..6be3c60b2 --- /dev/null +++ b/dist/linea/basic_elaboration_document_picture.js @@ -0,0 +1,117 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_document_picture = void 0; +var basic_elaboration_document_picture = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,1 55,1 55,63 9,63 9,15 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,1 55,1 55,63 9,63 9,15 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "9,15 23,15 23,1 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "9,15 23,15 23,1 \t" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "22", + "y": "29", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "20", + "height": "14" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "22", + "y": "29", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "20", + "height": "14" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "22,41 29,34 33,39 35,37 41,42 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "22,41 29,34 33,39 35,37 41,42 \t" + }, + "children": [] + }] + }] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "39", + "cy": "32", + "r": "3" + }, + "children": [] + }] +}; +exports.basic_elaboration_document_picture = basic_elaboration_document_picture; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_document_plus.js b/dist/linea/basic_elaboration_document_plus.js new file mode 100644 index 000000000..2c5ebf5ae --- /dev/null +++ b/dist/linea/basic_elaboration_document_plus.js @@ -0,0 +1,81 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_document_plus = void 0; +var basic_elaboration_document_plus = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,1 55,1 55,63 9,63 9,15 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,1 55,1 55,63 9,63 9,15 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "9,15 23,15 23,1 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "9,15 23,15 23,1 \t" + }, + "children": [] + }] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "27", + "x2": "32", + "y2": "45" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "41", + "y1": "36", + "x2": "23", + "y2": "36" + }, + "children": [] + }] +}; +exports.basic_elaboration_document_plus = basic_elaboration_document_plus; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_document_previous.js b/dist/linea/basic_elaboration_document_previous.js new file mode 100644 index 000000000..448e8c040 --- /dev/null +++ b/dist/linea/basic_elaboration_document_previous.js @@ -0,0 +1,96 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_document_previous = void 0; +var basic_elaboration_document_previous = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,1 55,1 55,63 9,63 9,15 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,1 55,1 55,63 9,63 9,15 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "9,15 23,15 23,1 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "9,15 23,15 23,1 \t" + }, + "children": [] + }] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "30.001,44 \r\n\t22.001,36 30.001,28 " + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22.001", + "y1": "36", + "x2": "42.001", + "y2": "36" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22.001", + "y1": "36", + "x2": "42.001", + "y2": "36" + }, + "children": [] + }] + }] + }] +}; +exports.basic_elaboration_document_previous = basic_elaboration_document_previous; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_document_refresh.js b/dist/linea/basic_elaboration_document_refresh.js new file mode 100644 index 000000000..3a7e034ef --- /dev/null +++ b/dist/linea/basic_elaboration_document_refresh.js @@ -0,0 +1,97 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_document_refresh = void 0; +var basic_elaboration_document_refresh = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,1 55,1 55,63 9,63 9,15 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,1 55,1 55,63 9,63 9,15 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "9,15 23,15 23,1 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "9,15 23,15 23,1 \t" + }, + "children": [] + }] + }] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M24,36c0,4.418,3.582,9,8,9h4" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "33,49 36,45 \r\n\t33,41 " + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M42,36c0-4.418-3.582-9-8-9h-4" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "33,23 30,27 \r\n\t33,31 " + }, + "children": [] + }] +}; +exports.basic_elaboration_document_refresh = basic_elaboration_document_refresh; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_document_remove.js b/dist/linea/basic_elaboration_document_remove.js new file mode 100644 index 000000000..e8f5e6a8d --- /dev/null +++ b/dist/linea/basic_elaboration_document_remove.js @@ -0,0 +1,81 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_document_remove = void 0; +var basic_elaboration_document_remove = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,1 55,1 55,63 9,63 9,15 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,1 55,1 55,63 9,63 9,15 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "9,15 23,15 23,1 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "9,15 23,15 23,1 \t" + }, + "children": [] + }] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "39", + "y1": "44", + "x2": "25", + "y2": "30" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "25", + "y1": "44", + "x2": "39", + "y2": "30" + }, + "children": [] + }] +}; +exports.basic_elaboration_document_remove = basic_elaboration_document_remove; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_document_search.js b/dist/linea/basic_elaboration_document_search.js new file mode 100644 index 000000000..e595bdbd4 --- /dev/null +++ b/dist/linea/basic_elaboration_document_search.js @@ -0,0 +1,109 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_document_search = void 0; +var basic_elaboration_document_search = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,1 55,1 55,63 9,63 9,15 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,1 55,1 55,63 9,63 9,15 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "9,15 23,15 23,1 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "9,15 23,15 23,1 \t" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "29", + "cy": "35", + "r": "6" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "29", + "cy": "35", + "r": "6" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "33", + "y1": "39", + "x2": "41", + "y2": "47" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "33", + "y1": "39", + "x2": "41", + "y2": "47" + }, + "children": [] + }] + }] + }] +}; +exports.basic_elaboration_document_search = basic_elaboration_document_search; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_document_star.js b/dist/linea/basic_elaboration_document_star.js new file mode 100644 index 000000000..bc9113bf8 --- /dev/null +++ b/dist/linea/basic_elaboration_document_star.js @@ -0,0 +1,66 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_document_star = void 0; +var basic_elaboration_document_star = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,1 55,1 55,63 9,63 9,15 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,1 55,1 55,63 9,63 9,15 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "9,15 23,15 23,1 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "9,15 23,15 23,1 \t" + }, + "children": [] + }] + }] + }, { + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "round", + "stroke-miterlimit": "10", + "points": "32,39 25.875,43 \r\n\t28,36 22,32 29.213,32 32,24 35,32 42,32 36,36 37.938,43 " + }, + "children": [] + }] +}; +exports.basic_elaboration_document_star = basic_elaboration_document_star; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_document_upload.js b/dist/linea/basic_elaboration_document_upload.js new file mode 100644 index 000000000..31ba6a504 --- /dev/null +++ b/dist/linea/basic_elaboration_document_upload.js @@ -0,0 +1,96 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_document_upload = void 0; +var basic_elaboration_document_upload = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,1 55,1 55,63 9,63 9,15 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,1 55,1 55,63 9,63 9,15 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "9,15 23,15 23,1 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "9,15 23,15 23,1 \t" + }, + "children": [] + }] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "23.998,34 \r\n\t31.998,26 39.998,34 " + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "31.998", + "y1": "26", + "x2": "31.998", + "y2": "46" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "31.998", + "y1": "26", + "x2": "31.998", + "y2": "46" + }, + "children": [] + }] + }] + }] +}; +exports.basic_elaboration_document_upload = basic_elaboration_document_upload; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_folder_check.js b/dist/linea/basic_elaboration_folder_check.js new file mode 100644 index 000000000..dfb47706e --- /dev/null +++ b/dist/linea/basic_elaboration_folder_check.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_folder_check = void 0; +var basic_elaboration_folder_check = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "63,18 63,54 1,54 1,10 22,10 30,18 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "23,36 30,43 \r\n\t43,30 " + }, + "children": [] + }] +}; +exports.basic_elaboration_folder_check = basic_elaboration_folder_check; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_folder_cloud.js b/dist/linea/basic_elaboration_folder_cloud.js new file mode 100644 index 000000000..bbf9ad989 --- /dev/null +++ b/dist/linea/basic_elaboration_folder_cloud.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_folder_cloud = void 0; +var basic_elaboration_folder_cloud = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "63,18 63,54 1,54 1,10 22,10 30,18 " + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M34.887,42H39c1.887,0,3-1,3-3c0-1-1-3-3-3\r\n\tc0-3.604-3.277-6-7-6c-3.295,0-6.413,2.978-7,6l0,0c-2,0-3,2-3,3c0,2,1,3,3,3h10.434" + }, + "children": [] + }] +}; +exports.basic_elaboration_folder_cloud = basic_elaboration_folder_cloud; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_folder_document.js b/dist/linea/basic_elaboration_folder_document.js new file mode 100644 index 000000000..37aa00b1b --- /dev/null +++ b/dist/linea/basic_elaboration_folder_document.js @@ -0,0 +1,65 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_folder_document = void 0; +var basic_elaboration_folder_document = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "63,18 63,54 1,54 1,10 22,10 30,18 " + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "32,26 39,26 39,46 25,46 25,33 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "32,26 39,26 39,46 25,46 25,33 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "25,33 32,33 32,26 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "25,33 32,33 32,26 \t" + }, + "children": [] + }] + }] + }] +}; +exports.basic_elaboration_folder_document = basic_elaboration_folder_document; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_folder_download.js b/dist/linea/basic_elaboration_folder_download.js new file mode 100644 index 000000000..98c5e4db7 --- /dev/null +++ b/dist/linea/basic_elaboration_folder_download.js @@ -0,0 +1,62 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_folder_download = void 0; +var basic_elaboration_folder_download = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "63,18 63,54 1,54 1,10 22,10 30,18 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "40,37 32,45 \r\n\t24,37 " + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "45", + "x2": "32", + "y2": "25" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "45", + "x2": "32", + "y2": "25" + }, + "children": [] + }] + }] + }] +}; +exports.basic_elaboration_folder_download = basic_elaboration_folder_download; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_folder_flagged.js b/dist/linea/basic_elaboration_folder_flagged.js new file mode 100644 index 000000000..42729016c --- /dev/null +++ b/dist/linea/basic_elaboration_folder_flagged.js @@ -0,0 +1,44 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_folder_flagged = void 0; +var basic_elaboration_folder_flagged = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "63,18 63,54 1,54 1,10 22,10 30,18 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "27", + "y1": "23", + "x2": "27", + "y2": "46" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "27,26 42,26 39.484,30 42,34 27,34 " + }, + "children": [] + }] +}; +exports.basic_elaboration_folder_flagged = basic_elaboration_folder_flagged; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_folder_graph.js b/dist/linea/basic_elaboration_folder_graph.js new file mode 100644 index 000000000..300f7a9fc --- /dev/null +++ b/dist/linea/basic_elaboration_folder_graph.js @@ -0,0 +1,119 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_folder_graph = void 0; +var basic_elaboration_folder_graph = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "63,18 63,54 1,54 1,10 22,10 30,18 " + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "27,44 27,37 23,37 23,44 \t\t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "27,44 27,37 23,37 23,44 \t\t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "34,44 34,27 30,27 30,44 \t\t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "34,44 34,27 30,27 30,44 \t\t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "41,44 41,34 37,34 37,44 \t\t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "41,44 41,34 37,34 37,44 \t\t" + }, + "children": [] + }] + }] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "20", + "y1": "45", + "x2": "44", + "y2": "45" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "20", + "y1": "45", + "x2": "44", + "y2": "45" + }, + "children": [] + }] + }] + }] +}; +exports.basic_elaboration_folder_graph = basic_elaboration_folder_graph; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_folder_heart.js b/dist/linea/basic_elaboration_folder_heart.js new file mode 100644 index 000000000..c59a137cc --- /dev/null +++ b/dist/linea/basic_elaboration_folder_heart.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_folder_heart = void 0; +var basic_elaboration_folder_heart = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "63,18 63,54 1,54 1,10 22,10 30,18 " + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M22,33c0,6.666,10,12,10,12s10-5.334,10-12\r\n\tc0-2.762-2-5-5-5c-2.762,0-5,2.238-5,5c0-2.762-2.238-5-5-5C24,28,22,30.238,22,33z" + }, + "children": [] + }] +}; +exports.basic_elaboration_folder_heart = basic_elaboration_folder_heart; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_folder_minus.js b/dist/linea/basic_elaboration_folder_minus.js new file mode 100644 index 000000000..898ab0ebe --- /dev/null +++ b/dist/linea/basic_elaboration_folder_minus.js @@ -0,0 +1,34 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_folder_minus = void 0; +var basic_elaboration_folder_minus = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "63,18 63,54 1,54 1,10 22,10 30,18 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "41", + "y1": "36", + "x2": "23", + "y2": "36" + }, + "children": [] + }] +}; +exports.basic_elaboration_folder_minus = basic_elaboration_folder_minus; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_folder_next.js b/dist/linea/basic_elaboration_folder_next.js new file mode 100644 index 000000000..78123dc98 --- /dev/null +++ b/dist/linea/basic_elaboration_folder_next.js @@ -0,0 +1,62 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_folder_next = void 0; +var basic_elaboration_folder_next = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "63,18 63,54 1,54 1,10 22,10 30,18 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "34,28 42,36 \r\n\t34,44 " + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "42", + "y1": "36", + "x2": "22", + "y2": "36" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "42", + "y1": "36", + "x2": "22", + "y2": "36" + }, + "children": [] + }] + }] + }] +}; +exports.basic_elaboration_folder_next = basic_elaboration_folder_next; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_folder_noaccess.js b/dist/linea/basic_elaboration_folder_noaccess.js new file mode 100644 index 000000000..17c2a978f --- /dev/null +++ b/dist/linea/basic_elaboration_folder_noaccess.js @@ -0,0 +1,46 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_folder_noaccess = void 0; +var basic_elaboration_folder_noaccess = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "63,18 63,54 1,54 1,10 22,10 30,18 " + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "36", + "r": "9" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "25.834", + "y1": "29.834", + "x2": "38.166", + "y2": "42.166" + }, + "children": [] + }] +}; +exports.basic_elaboration_folder_noaccess = basic_elaboration_folder_noaccess; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_folder_note.js b/dist/linea/basic_elaboration_folder_note.js new file mode 100644 index 000000000..5bcba4d06 --- /dev/null +++ b/dist/linea/basic_elaboration_folder_note.js @@ -0,0 +1,119 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_folder_note = void 0; +var basic_elaboration_folder_note = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "63,18 63,54 1,54 1,10 22,10 30,18 " + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "35", + "cy": "41", + "r": "3" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "35", + "cy": "41", + "r": "3" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "25", + "cy": "43", + "r": "3" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "25", + "cy": "43", + "r": "3" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "38,41 38,26 28,28 28,43 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "38,41 38,26 28,28 28,43 \t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "28", + "y1": "32", + "x2": "38", + "y2": "30" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "28", + "y1": "32", + "x2": "38", + "y2": "30" + }, + "children": [] + }] + }] + }] +}; +exports.basic_elaboration_folder_note = basic_elaboration_folder_note; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_folder_pencil.js b/dist/linea/basic_elaboration_folder_pencil.js new file mode 100644 index 000000000..13a059f5b --- /dev/null +++ b/dist/linea/basic_elaboration_folder_pencil.js @@ -0,0 +1,71 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_folder_pencil = void 0; +var basic_elaboration_folder_pencil = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "63,18 63,54 1,54 1,10 22,10 30,18 " + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,41 22,46 27,45 42,30 38,26 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,41 22,46 27,45 42,30 38,26 \t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "39", + "y1": "33", + "x2": "35", + "y2": "29" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "39", + "y1": "33", + "x2": "35", + "y2": "29" + }, + "children": [] + }] + }] + }] +}; +exports.basic_elaboration_folder_pencil = basic_elaboration_folder_pencil; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_folder_picture.js b/dist/linea/basic_elaboration_folder_picture.js new file mode 100644 index 000000000..a607cd9cd --- /dev/null +++ b/dist/linea/basic_elaboration_folder_picture.js @@ -0,0 +1,83 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_folder_picture = void 0; +var basic_elaboration_folder_picture = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "63,18 63,54 1,54 1,10 22,10 30,18 " + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "22", + "y": "29", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "20", + "height": "14" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "22", + "y": "29", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "20", + "height": "14" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "22,41 29,34 33,39 35,37 41,42 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "22,41 29,34 33,39 35,37 41,42 \t" + }, + "children": [] + }] + }] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "39", + "cy": "32", + "r": "3" + }, + "children": [] + }] +}; +exports.basic_elaboration_folder_picture = basic_elaboration_folder_picture; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_folder_plus.js b/dist/linea/basic_elaboration_folder_plus.js new file mode 100644 index 000000000..6a9c0d097 --- /dev/null +++ b/dist/linea/basic_elaboration_folder_plus.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_folder_plus = void 0; +var basic_elaboration_folder_plus = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "27", + "x2": "32", + "y2": "45" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "41", + "y1": "36", + "x2": "23", + "y2": "36" + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "63,18 63,54 1,54 1,10 22,10 30,18 " + }, + "children": [] + }] +}; +exports.basic_elaboration_folder_plus = basic_elaboration_folder_plus; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_folder_previous.js b/dist/linea/basic_elaboration_folder_previous.js new file mode 100644 index 000000000..ec9296632 --- /dev/null +++ b/dist/linea/basic_elaboration_folder_previous.js @@ -0,0 +1,62 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_folder_previous = void 0; +var basic_elaboration_folder_previous = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "63,18 63,54 1,54 1,10 22,10 30,18 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "30.001,44 \r\n\t22.001,36 30.001,28 " + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22.001", + "y1": "36", + "x2": "42.001", + "y2": "36" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22.001", + "y1": "36", + "x2": "42.001", + "y2": "36" + }, + "children": [] + }] + }] + }] +}; +exports.basic_elaboration_folder_previous = basic_elaboration_folder_previous; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_folder_refresh.js b/dist/linea/basic_elaboration_folder_refresh.js new file mode 100644 index 000000000..55caf2d5a --- /dev/null +++ b/dist/linea/basic_elaboration_folder_refresh.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_folder_refresh = void 0; +var basic_elaboration_folder_refresh = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "63,18 63,54 1,54 1,10 22,10 30,18 " + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M24,36c0,4.418,3.582,9,8,9h4" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "33,49 36,45 \r\n\t33,41 " + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M42,36c0-4.418-3.582-9-8-9h-4" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "33,23 30,27 \r\n\t33,31 " + }, + "children": [] + }] +}; +exports.basic_elaboration_folder_refresh = basic_elaboration_folder_refresh; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_folder_remove.js b/dist/linea/basic_elaboration_folder_remove.js new file mode 100644 index 000000000..61ae2b2b5 --- /dev/null +++ b/dist/linea/basic_elaboration_folder_remove.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_folder_remove = void 0; +var basic_elaboration_folder_remove = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "63,18 63,54 1,54 1,10 22,10 30,18 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "39", + "y1": "44", + "x2": "25", + "y2": "30" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "25", + "y1": "44", + "x2": "39", + "y2": "30" + }, + "children": [] + }] +}; +exports.basic_elaboration_folder_remove = basic_elaboration_folder_remove; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_folder_search.js b/dist/linea/basic_elaboration_folder_search.js new file mode 100644 index 000000000..5bf24b7ad --- /dev/null +++ b/dist/linea/basic_elaboration_folder_search.js @@ -0,0 +1,75 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_folder_search = void 0; +var basic_elaboration_folder_search = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "63,18 63,54 1,54 1,10 22,10 30,18 " + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "29", + "cy": "35", + "r": "6" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "29", + "cy": "35", + "r": "6" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "33", + "y1": "39", + "x2": "41", + "y2": "47" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "33", + "y1": "39", + "x2": "41", + "y2": "47" + }, + "children": [] + }] + }] + }] +}; +exports.basic_elaboration_folder_search = basic_elaboration_folder_search; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_folder_star.js b/dist/linea/basic_elaboration_folder_star.js new file mode 100644 index 000000000..403068336 --- /dev/null +++ b/dist/linea/basic_elaboration_folder_star.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_folder_star = void 0; +var basic_elaboration_folder_star = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "63,18 63,54 1,54 1,10 22,10 30,18 " + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "round", + "stroke-miterlimit": "10", + "points": "32,41 25.875,45 \r\n\t28,38 22,34 29.213,34 32,26 35,34 42,34 36,38 37.938,45 " + }, + "children": [] + }] +}; +exports.basic_elaboration_folder_star = basic_elaboration_folder_star; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_folder_upload.js b/dist/linea/basic_elaboration_folder_upload.js new file mode 100644 index 000000000..508766167 --- /dev/null +++ b/dist/linea/basic_elaboration_folder_upload.js @@ -0,0 +1,62 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_folder_upload = void 0; +var basic_elaboration_folder_upload = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "63,18 63,54 1,54 1,10 22,10 30,18 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "23.998,34 \r\n\t31.998,26 39.998,34 " + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "31.998", + "y1": "26", + "x2": "31.998", + "y2": "46" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "31.998", + "y1": "26", + "x2": "31.998", + "y2": "46" + }, + "children": [] + }] + }] + }] +}; +exports.basic_elaboration_folder_upload = basic_elaboration_folder_upload; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_mail_check.js b/dist/linea/basic_elaboration_mail_check.js new file mode 100644 index 000000000..32a43ea4e --- /dev/null +++ b/dist/linea/basic_elaboration_mail_check.js @@ -0,0 +1,86 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_mail_check = void 0; +var basic_elaboration_mail_check = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "23,20 30,27 \r\n\t43,14 " + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,26 32,45.434 63,26 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,26 32,45.434 63,26 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11.333,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.667,21.667 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11.333,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.667,21.667 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11,32 11,1 53,1 53,32 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11,32 11,1 53,1 53,32 \t" + }, + "children": [] + }] + }] + }] +}; +exports.basic_elaboration_mail_check = basic_elaboration_mail_check; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_mail_cloud.js b/dist/linea/basic_elaboration_mail_cloud.js new file mode 100644 index 000000000..8a2f0a3ce --- /dev/null +++ b/dist/linea/basic_elaboration_mail_cloud.js @@ -0,0 +1,85 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_mail_cloud = void 0; +var basic_elaboration_mail_cloud = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M34.887,28H39c1.887,0,3-1,3-3c0-1-1-3-3-3\r\n\tc0-3.604-3.277-6-7-6c-3.295,0-6.413,2.978-7,6l0,0c-2,0-3,2-3,3c0,2,1,3,3,3h10.434" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,26 32,45.434 63,26 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,26 32,45.434 63,26 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11,32 11,1 53,1 53,32 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11,32 11,1 53,1 53,32 \t" + }, + "children": [] + }] + }] + }] +}; +exports.basic_elaboration_mail_cloud = basic_elaboration_mail_cloud; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_mail_document.js b/dist/linea/basic_elaboration_mail_document.js new file mode 100644 index 000000000..1a3750e8f --- /dev/null +++ b/dist/linea/basic_elaboration_mail_document.js @@ -0,0 +1,119 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_mail_document = void 0; +var basic_elaboration_mail_document = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "32,10 39,10 39,30 25,30 25,17 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "32,10 39,10 39,30 25,30 25,17 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "25,17 32,17 32,10 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "25,17 32,17 32,10 \t" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,26 32,45.434 63,26 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,26 32,45.434 63,26 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11,32 11,1 53,1 53,32 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11,32 11,1 53,1 53,32 \t" + }, + "children": [] + }] + }] + }] +}; +exports.basic_elaboration_mail_document = basic_elaboration_mail_document; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_mail_download.js b/dist/linea/basic_elaboration_mail_download.js new file mode 100644 index 000000000..47e1ff4bb --- /dev/null +++ b/dist/linea/basic_elaboration_mail_download.js @@ -0,0 +1,116 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_mail_download = void 0; +var basic_elaboration_mail_download = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "40,23 32,31 \r\n\t24,23 " + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "31", + "x2": "32", + "y2": "11" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "31", + "x2": "32", + "y2": "11" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,26 32,45.434 63,26 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,26 32,45.434 63,26 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11,32 11,1 53,1 53,32 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11,32 11,1 53,1 53,32 \t" + }, + "children": [] + }] + }] + }] +}; +exports.basic_elaboration_mail_download = basic_elaboration_mail_download; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_mail_flagged.js b/dist/linea/basic_elaboration_mail_flagged.js new file mode 100644 index 000000000..1a81ac371 --- /dev/null +++ b/dist/linea/basic_elaboration_mail_flagged.js @@ -0,0 +1,98 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_mail_flagged = void 0; +var basic_elaboration_mail_flagged = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,26 32,45.434 63,26 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,26 32,45.434 63,26 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11,32 11,1 53,1 53,32 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11,32 11,1 53,1 53,32 \t" + }, + "children": [] + }] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "27", + "y1": "9", + "x2": "27", + "y2": "32" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "27,12 42,12 39.484,16 42,20 27,20 " + }, + "children": [] + }] +}; +exports.basic_elaboration_mail_flagged = basic_elaboration_mail_flagged; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_mail_heart.js b/dist/linea/basic_elaboration_mail_heart.js new file mode 100644 index 000000000..2fde4b582 --- /dev/null +++ b/dist/linea/basic_elaboration_mail_heart.js @@ -0,0 +1,85 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_mail_heart = void 0; +var basic_elaboration_mail_heart = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,26 32,45.434 63,26 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,26 32,45.434 63,26 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11,32 11,1 53,1 53,32 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11,32 11,1 53,1 53,32 \t" + }, + "children": [] + }] + }] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M22,19c0,6.666,10,12,10,12s10-5.334,10-12\r\n\tc0-2.762-2-5-5-5c-2.762,0-5,2.238-5,5c0-2.762-2.238-5-5-5C24,14,22,16.238,22,19z" + }, + "children": [] + }] +}; +exports.basic_elaboration_mail_heart = basic_elaboration_mail_heart; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_mail_next.js b/dist/linea/basic_elaboration_mail_next.js new file mode 100644 index 000000000..fb3a77da6 --- /dev/null +++ b/dist/linea/basic_elaboration_mail_next.js @@ -0,0 +1,116 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_mail_next = void 0; +var basic_elaboration_mail_next = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "34,14 42,22 \r\n\t34,30 " + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "42", + "y1": "22", + "x2": "22", + "y2": "22" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "42", + "y1": "22", + "x2": "22", + "y2": "22" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,26 32,45.434 63,26 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,26 32,45.434 63,26 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11,32 11,1 53,1 53,32 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11,32 11,1 53,1 53,32 \t" + }, + "children": [] + }] + }] + }] +}; +exports.basic_elaboration_mail_next = basic_elaboration_mail_next; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_mail_noaccess.js b/dist/linea/basic_elaboration_mail_noaccess.js new file mode 100644 index 000000000..6c8f9e0fe --- /dev/null +++ b/dist/linea/basic_elaboration_mail_noaccess.js @@ -0,0 +1,100 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_mail_noaccess = void 0; +var basic_elaboration_mail_noaccess = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "22", + "r": "9" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "25.834", + "y1": "15.834", + "x2": "38.166", + "y2": "28.166" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,26 32,45.434 63,26 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,26 32,45.434 63,26 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11,32 11,1 53,1 53,32 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11,32 11,1 53,1 53,32 \t" + }, + "children": [] + }] + }] + }] +}; +exports.basic_elaboration_mail_noaccess = basic_elaboration_mail_noaccess; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_mail_note.js b/dist/linea/basic_elaboration_mail_note.js new file mode 100644 index 000000000..0f4d615d3 --- /dev/null +++ b/dist/linea/basic_elaboration_mail_note.js @@ -0,0 +1,173 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_mail_note = void 0; +var basic_elaboration_mail_note = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "35", + "cy": "27", + "r": "3" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "35", + "cy": "27", + "r": "3" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "25", + "cy": "29", + "r": "3" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "25", + "cy": "29", + "r": "3" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "38,27 38,12 28,14 28,29 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "38,27 38,12 28,14 28,29 \t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "28", + "y1": "18", + "x2": "38", + "y2": "16" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "28", + "y1": "18", + "x2": "38", + "y2": "16" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,26 32,45.434 63,26 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,26 32,45.434 63,26 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11,32 11,1 53,1 53,32 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11,32 11,1 53,1 53,32 \t" + }, + "children": [] + }] + }] + }] +}; +exports.basic_elaboration_mail_note = basic_elaboration_mail_note; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_mail_pencil.js b/dist/linea/basic_elaboration_mail_pencil.js new file mode 100644 index 000000000..724f3edf4 --- /dev/null +++ b/dist/linea/basic_elaboration_mail_pencil.js @@ -0,0 +1,125 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_mail_pencil = void 0; +var basic_elaboration_mail_pencil = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,27 22,32 27,31 42,16 38,12 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,27 22,32 27,31 42,16 38,12 \t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "39", + "y1": "19", + "x2": "35", + "y2": "15" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "39", + "y1": "19", + "x2": "35", + "y2": "15" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,26 32,45.434 63,26 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,26 32,45.434 63,26 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11.333,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.667,21.667 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11.333,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.667,21.667 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11,32 11,1 53,1 53,32 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11,32 11,1 53,1 53,32 \t" + }, + "children": [] + }] + }] + }] +}; +exports.basic_elaboration_mail_pencil = basic_elaboration_mail_pencil; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_mail_picture.js b/dist/linea/basic_elaboration_mail_picture.js new file mode 100644 index 000000000..2d435adc0 --- /dev/null +++ b/dist/linea/basic_elaboration_mail_picture.js @@ -0,0 +1,137 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_mail_picture = void 0; +var basic_elaboration_mail_picture = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "22", + "y": "15", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "20", + "height": "14" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "22", + "y": "15", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "20", + "height": "14" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "22,27 29,20 33,25 35,23 41,28 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "22,27 29,20 33,25 35,23 41,28 \t" + }, + "children": [] + }] + }] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "39", + "cy": "18", + "r": "3" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,26 32,45.434 63,26 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,26 32,45.434 63,26 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11,32 11,1 53,1 53,32 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11,32 11,1 53,1 53,32 \t" + }, + "children": [] + }] + }] + }] +}; +exports.basic_elaboration_mail_picture = basic_elaboration_mail_picture; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_mail_previous.js b/dist/linea/basic_elaboration_mail_previous.js new file mode 100644 index 000000000..86de9f952 --- /dev/null +++ b/dist/linea/basic_elaboration_mail_previous.js @@ -0,0 +1,116 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_mail_previous = void 0; +var basic_elaboration_mail_previous = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "30.001,30 \r\n\t22.001,22 30.001,14 " + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22.001", + "y1": "22", + "x2": "42.001", + "y2": "22" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22.001", + "y1": "22", + "x2": "42.001", + "y2": "22" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,26 32,45.434 63,26 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,26 32,45.434 63,26 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11,32 11,1 53,1 53,32 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11,32 11,1 53,1 53,32 \t" + }, + "children": [] + }] + }] + }] +}; +exports.basic_elaboration_mail_previous = basic_elaboration_mail_previous; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_mail_refresh.js b/dist/linea/basic_elaboration_mail_refresh.js new file mode 100644 index 000000000..78fc95465 --- /dev/null +++ b/dist/linea/basic_elaboration_mail_refresh.js @@ -0,0 +1,117 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_mail_refresh = void 0; +var basic_elaboration_mail_refresh = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M24,22c0,4.418,3.582,9,8,9h4" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "33,35 36,31 \r\n\t33,27 " + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M42,22c0-4.418-3.582-9-8-9h-4" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "33,9 30,13 33,17 \r\n\t" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,26 32,45.434 63,26 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,26 32,45.434 63,26 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11,32 11,1 53,1 53,32 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11,32 11,1 53,1 53,32 \t" + }, + "children": [] + }] + }] + }] +}; +exports.basic_elaboration_mail_refresh = basic_elaboration_mail_refresh; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_mail_remove.js b/dist/linea/basic_elaboration_mail_remove.js new file mode 100644 index 000000000..ebe05d031 --- /dev/null +++ b/dist/linea/basic_elaboration_mail_remove.js @@ -0,0 +1,101 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_mail_remove = void 0; +var basic_elaboration_mail_remove = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "39", + "y1": "29", + "x2": "25", + "y2": "15" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "25", + "y1": "29", + "x2": "39", + "y2": "15" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,26 32,45.434 63,26 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,26 32,45.434 63,26 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11.333,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.667,21.667 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11.333,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.667,21.667 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11,32 11,1 53,1 53,32 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11,32 11,1 53,1 53,32 \t" + }, + "children": [] + }] + }] + }] +}; +exports.basic_elaboration_mail_remove = basic_elaboration_mail_remove; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_mail_search.js b/dist/linea/basic_elaboration_mail_search.js new file mode 100644 index 000000000..8ca06b898 --- /dev/null +++ b/dist/linea/basic_elaboration_mail_search.js @@ -0,0 +1,129 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_mail_search = void 0; +var basic_elaboration_mail_search = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "29", + "cy": "19", + "r": "6" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "29", + "cy": "19", + "r": "6" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "33", + "y1": "23", + "x2": "41", + "y2": "31" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "33", + "y1": "23", + "x2": "41", + "y2": "31" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,26 32,45.434 63,26 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,26 32,45.434 63,26 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11,32 11,1 53,1 53,32 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11,32 11,1 53,1 53,32 \t" + }, + "children": [] + }] + }] + }] +}; +exports.basic_elaboration_mail_search = basic_elaboration_mail_search; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_mail_star.js b/dist/linea/basic_elaboration_mail_star.js new file mode 100644 index 000000000..c67cc9078 --- /dev/null +++ b/dist/linea/basic_elaboration_mail_star.js @@ -0,0 +1,86 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_mail_star = void 0; +var basic_elaboration_mail_star = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,26 32,45.434 63,26 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,26 32,45.434 63,26 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11,32 11,1 53,1 53,32 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11,32 11,1 53,1 53,32 \t" + }, + "children": [] + }] + }] + }, { + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "round", + "stroke-miterlimit": "10", + "points": "32,27 25.875,31 \r\n\t28,24 22,20 29.213,20 32,12 35,20 42,20 36,24 37.938,31 " + }, + "children": [] + }] +}; +exports.basic_elaboration_mail_star = basic_elaboration_mail_star; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_mail_upload.js b/dist/linea/basic_elaboration_mail_upload.js new file mode 100644 index 000000000..966cd8588 --- /dev/null +++ b/dist/linea/basic_elaboration_mail_upload.js @@ -0,0 +1,116 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_mail_upload = void 0; +var basic_elaboration_mail_upload = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "23.998,20 \r\n\t31.998,12 39.998,20 " + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "31.998", + "y1": "12", + "x2": "31.998", + "y2": "32" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "31.998", + "y1": "12", + "x2": "31.998", + "y2": "32" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,26 32,45.434 63,26 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,26 32,45.434 63,26 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11,32 11,1 53,1 53,32 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11,32 11,1 53,1 53,32 \t" + }, + "children": [] + }] + }] + }] +}; +exports.basic_elaboration_mail_upload = basic_elaboration_mail_upload; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_message_check.js b/dist/linea/basic_elaboration_message_check.js new file mode 100644 index 000000000..8049db0da --- /dev/null +++ b/dist/linea/basic_elaboration_message_check.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_message_check = void 0; +var basic_elaboration_message_check = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "32,47 63,47 63,5 1,5 1,47 18,47 18,59 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "23,26 30,33 \r\n\t43,20 " + }, + "children": [] + }] +}; +exports.basic_elaboration_message_check = basic_elaboration_message_check; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_message_dots.js b/dist/linea/basic_elaboration_message_dots.js new file mode 100644 index 000000000..8c4895515 --- /dev/null +++ b/dist/linea/basic_elaboration_message_dots.js @@ -0,0 +1,60 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_message_dots = void 0; +var basic_elaboration_message_dots = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "32,47 63,47 63,5 1,5 1,47 18,47 18,59 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "29", + "y1": "26", + "x2": "35", + "y2": "26" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "39", + "y1": "26", + "x2": "45", + "y2": "26" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "19", + "y1": "26", + "x2": "25", + "y2": "26" + }, + "children": [] + }] +}; +exports.basic_elaboration_message_dots = basic_elaboration_message_dots; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_message_happy.js b/dist/linea/basic_elaboration_message_happy.js new file mode 100644 index 000000000..58ecd97a7 --- /dev/null +++ b/dist/linea/basic_elaboration_message_happy.js @@ -0,0 +1,107 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_message_happy = void 0; +var basic_elaboration_message_happy = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M24,30c0,4.418,3.582,8,8,8s8-3.582,8-8" + }, + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M24,30c0,4.418,3.582,8,8,8s8-3.582,8-8" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "18", + "y1": "20", + "x2": "20", + "y2": "20" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "18", + "y1": "20", + "x2": "20", + "y2": "20" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "46", + "y1": "20", + "x2": "44", + "y2": "20" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "46", + "y1": "20", + "x2": "44", + "y2": "20" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "32,47 63,47 63,5 1,5 1,47 18,47 18,59 \t\r\n\t\t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "32,47 63,47 63,5 1,5 1,47 18,47 18,59 \t\r\n\t\t" + }, + "children": [] + }] + }] + }] +}; +exports.basic_elaboration_message_happy = basic_elaboration_message_happy; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_message_heart.js b/dist/linea/basic_elaboration_message_heart.js new file mode 100644 index 000000000..d422055d3 --- /dev/null +++ b/dist/linea/basic_elaboration_message_heart.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_message_heart = void 0; +var basic_elaboration_message_heart = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "32,47 63,47 63,5 1,5 1,47 18,47 18,59 " + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M22,23c0,6.666,10,12,10,12s10-5.334,10-12\r\n\tc0-2.762-2-5-5-5c-2.762,0-5,2.238-5,5c0-2.762-2.238-5-5-5C24,18,22,20.238,22,23z" + }, + "children": [] + }] +}; +exports.basic_elaboration_message_heart = basic_elaboration_message_heart; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_message_minus.js b/dist/linea/basic_elaboration_message_minus.js new file mode 100644 index 000000000..f21a56b47 --- /dev/null +++ b/dist/linea/basic_elaboration_message_minus.js @@ -0,0 +1,34 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_message_minus = void 0; +var basic_elaboration_message_minus = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "41", + "y1": "26", + "x2": "23", + "y2": "26" + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "32,47 63,47 63,5 1,5 1,47 18,47 18,59 " + }, + "children": [] + }] +}; +exports.basic_elaboration_message_minus = basic_elaboration_message_minus; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_message_note.js b/dist/linea/basic_elaboration_message_note.js new file mode 100644 index 000000000..7627642b0 --- /dev/null +++ b/dist/linea/basic_elaboration_message_note.js @@ -0,0 +1,119 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_message_note = void 0; +var basic_elaboration_message_note = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "32,47 63,47 63,5 1,5 1,47 18,47 18,59 " + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "35", + "cy": "31", + "r": "3" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "35", + "cy": "31", + "r": "3" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "25", + "cy": "33", + "r": "3" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "25", + "cy": "33", + "r": "3" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "38,31 38,16 28,18 28,33 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "38,31 38,16 28,18 28,33 \t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "28", + "y1": "22", + "x2": "38", + "y2": "20" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "28", + "y1": "22", + "x2": "38", + "y2": "20" + }, + "children": [] + }] + }] + }] +}; +exports.basic_elaboration_message_note = basic_elaboration_message_note; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_message_plus.js b/dist/linea/basic_elaboration_message_plus.js new file mode 100644 index 000000000..a1b33551e --- /dev/null +++ b/dist/linea/basic_elaboration_message_plus.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_message_plus = void 0; +var basic_elaboration_message_plus = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "17", + "x2": "32", + "y2": "35" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "41", + "y1": "26", + "x2": "23", + "y2": "26" + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "32,47 63,47 63,5 1,5 1,47 18,47 18,59 " + }, + "children": [] + }] +}; +exports.basic_elaboration_message_plus = basic_elaboration_message_plus; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_message_refresh.js b/dist/linea/basic_elaboration_message_refresh.js new file mode 100644 index 000000000..8286f3d15 --- /dev/null +++ b/dist/linea/basic_elaboration_message_refresh.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_message_refresh = void 0; +var basic_elaboration_message_refresh = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "32,47 63,47 63,5 1,5 1,47 18,47 18,59 " + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M24,26c0,4.418,3.582,9,8,9h4" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "33,39 36,35 \r\n\t33,31 " + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M42,26c0-4.418-3.582-9-8-9h-4" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "33,13 30,17 \r\n\t33,21 " + }, + "children": [] + }] +}; +exports.basic_elaboration_message_refresh = basic_elaboration_message_refresh; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_message_remove.js b/dist/linea/basic_elaboration_message_remove.js new file mode 100644 index 000000000..7ffb471a9 --- /dev/null +++ b/dist/linea/basic_elaboration_message_remove.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_message_remove = void 0; +var basic_elaboration_message_remove = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "32,47 63,47 63,5 1,5 1,47 18,47 18,59 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "39", + "y1": "33", + "x2": "25", + "y2": "19" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "25", + "y1": "33", + "x2": "39", + "y2": "19" + }, + "children": [] + }] +}; +exports.basic_elaboration_message_remove = basic_elaboration_message_remove; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_message_sad.js b/dist/linea/basic_elaboration_message_sad.js new file mode 100644 index 000000000..2ccfc2802 --- /dev/null +++ b/dist/linea/basic_elaboration_message_sad.js @@ -0,0 +1,97 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_message_sad = void 0; +var basic_elaboration_message_sad = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "18", + "y1": "20", + "x2": "20", + "y2": "20" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "18", + "y1": "20", + "x2": "20", + "y2": "20" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "46", + "y1": "20", + "x2": "44", + "y2": "20" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "46", + "y1": "20", + "x2": "44", + "y2": "20" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "32,47 63,47 63,5 1,5 1,47 18,47 18,59 \t\r\n\t\t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "32,47 63,47 63,5 1,5 1,47 18,47 18,59 \t\r\n\t\t" + }, + "children": [] + }] + }] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M40,38c0-4.418-3.582-8-8-8s-8,3.582-8,8" + }, + "children": [] + }] +}; +exports.basic_elaboration_message_sad = basic_elaboration_message_sad; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_smartphone_cloud.js b/dist/linea/basic_elaboration_smartphone_cloud.js new file mode 100644 index 000000000..4a02d92b7 --- /dev/null +++ b/dist/linea/basic_elaboration_smartphone_cloud.js @@ -0,0 +1,155 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_smartphone_cloud = void 0; +var basic_elaboration_smartphone_cloud = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "16", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "32", + "height": "62" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "16", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "32", + "height": "62" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "28", + "y1": "5", + "x2": "36", + "y2": "5" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "28", + "y1": "5", + "x2": "36", + "y2": "5" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "16", + "y1": "51", + "x2": "48", + "y2": "51" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "16", + "y1": "51", + "x2": "48", + "y2": "51" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "16", + "y1": "9", + "x2": "48", + "y2": "9" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "16", + "y1": "9", + "x2": "48", + "y2": "9" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "57", + "r": "2" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "57", + "r": "2" + }, + "children": [] + }] + }] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M34.887,36H39c1.887,0,3-1,3-3c0-1-1-3-3-3\r\n\tc0-3.604-3.277-6-7-6c-3.295,0-6.413,2.978-7,6l0,0c-2,0-3,2-3,3c0,2,1,3,3,3h10.434" + }, + "children": [] + }] +}; +exports.basic_elaboration_smartphone_cloud = basic_elaboration_smartphone_cloud; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_smartphone_heart.js b/dist/linea/basic_elaboration_smartphone_heart.js new file mode 100644 index 000000000..52ada2180 --- /dev/null +++ b/dist/linea/basic_elaboration_smartphone_heart.js @@ -0,0 +1,155 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_smartphone_heart = void 0; +var basic_elaboration_smartphone_heart = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "16", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "32", + "height": "62" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "16", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "32", + "height": "62" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "28", + "y1": "5", + "x2": "36", + "y2": "5" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "28", + "y1": "5", + "x2": "36", + "y2": "5" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "16", + "y1": "51", + "x2": "48", + "y2": "51" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "16", + "y1": "51", + "x2": "48", + "y2": "51" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "16", + "y1": "9", + "x2": "48", + "y2": "9" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "16", + "y1": "9", + "x2": "48", + "y2": "9" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "57", + "r": "2" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "57", + "r": "2" + }, + "children": [] + }] + }] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M22,27c0,6.666,10,12,10,12s10-5.334,10-12\r\n\tc0-2.762-2-5-5-5c-2.762,0-5,2.238-5,5c0-2.762-2.238-5-5-5C24,22,22,24.238,22,27z" + }, + "children": [] + }] +}; +exports.basic_elaboration_smartphone_heart = basic_elaboration_smartphone_heart; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_smartphone_noaccess.js b/dist/linea/basic_elaboration_smartphone_noaccess.js new file mode 100644 index 000000000..a7133cc25 --- /dev/null +++ b/dist/linea/basic_elaboration_smartphone_noaccess.js @@ -0,0 +1,170 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_smartphone_noaccess = void 0; +var basic_elaboration_smartphone_noaccess = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "16", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "32", + "height": "62" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "16", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "32", + "height": "62" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "28", + "y1": "5", + "x2": "36", + "y2": "5" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "28", + "y1": "5", + "x2": "36", + "y2": "5" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "16", + "y1": "51", + "x2": "48", + "y2": "51" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "16", + "y1": "51", + "x2": "48", + "y2": "51" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "16", + "y1": "9", + "x2": "48", + "y2": "9" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "16", + "y1": "9", + "x2": "48", + "y2": "9" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "57", + "r": "2" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "57", + "r": "2" + }, + "children": [] + }] + }] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "30", + "r": "9" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "25.834", + "y1": "23.834", + "x2": "38.166", + "y2": "36.166" + }, + "children": [] + }] +}; +exports.basic_elaboration_smartphone_noaccess = basic_elaboration_smartphone_noaccess; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_smartphone_note.js b/dist/linea/basic_elaboration_smartphone_note.js new file mode 100644 index 000000000..12d1e974f --- /dev/null +++ b/dist/linea/basic_elaboration_smartphone_note.js @@ -0,0 +1,243 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_smartphone_note = void 0; +var basic_elaboration_smartphone_note = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "16", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "32", + "height": "62" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "16", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "32", + "height": "62" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "28", + "y1": "5", + "x2": "36", + "y2": "5" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "28", + "y1": "5", + "x2": "36", + "y2": "5" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "16", + "y1": "51", + "x2": "48", + "y2": "51" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "16", + "y1": "51", + "x2": "48", + "y2": "51" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "16", + "y1": "9", + "x2": "48", + "y2": "9" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "16", + "y1": "9", + "x2": "48", + "y2": "9" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "57", + "r": "2" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "57", + "r": "2" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "35", + "cy": "35", + "r": "3" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "35", + "cy": "35", + "r": "3" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "25", + "cy": "37", + "r": "3" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "25", + "cy": "37", + "r": "3" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "38,35 38,20 28,22 28,37 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "38,35 38,20 28,22 28,37 \t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "28", + "y1": "26", + "x2": "38", + "y2": "24" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "28", + "y1": "26", + "x2": "38", + "y2": "24" + }, + "children": [] + }] + }] + }] +}; +exports.basic_elaboration_smartphone_note = basic_elaboration_smartphone_note; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_smartphone_pencil.js b/dist/linea/basic_elaboration_smartphone_pencil.js new file mode 100644 index 000000000..6c37d3fea --- /dev/null +++ b/dist/linea/basic_elaboration_smartphone_pencil.js @@ -0,0 +1,195 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_smartphone_pencil = void 0; +var basic_elaboration_smartphone_pencil = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "16", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "32", + "height": "62" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "16", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "32", + "height": "62" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "28", + "y1": "5", + "x2": "36", + "y2": "5" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "28", + "y1": "5", + "x2": "36", + "y2": "5" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "16", + "y1": "51", + "x2": "48", + "y2": "51" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "16", + "y1": "51", + "x2": "48", + "y2": "51" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "16", + "y1": "9", + "x2": "48", + "y2": "9" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "16", + "y1": "9", + "x2": "48", + "y2": "9" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "57", + "r": "2" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "57", + "r": "2" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,35 22,40 27,39 42,24 38,20 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,35 22,40 27,39 42,24 38,20 \t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "39", + "y1": "27", + "x2": "35", + "y2": "23" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "39", + "y1": "27", + "x2": "35", + "y2": "23" + }, + "children": [] + }] + }] + }] +}; +exports.basic_elaboration_smartphone_pencil = basic_elaboration_smartphone_pencil; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_smartphone_picture.js b/dist/linea/basic_elaboration_smartphone_picture.js new file mode 100644 index 000000000..82f5c687e --- /dev/null +++ b/dist/linea/basic_elaboration_smartphone_picture.js @@ -0,0 +1,207 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_smartphone_picture = void 0; +var basic_elaboration_smartphone_picture = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "16", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "32", + "height": "62" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "16", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "32", + "height": "62" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "28", + "y1": "5", + "x2": "36", + "y2": "5" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "28", + "y1": "5", + "x2": "36", + "y2": "5" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "16", + "y1": "51", + "x2": "48", + "y2": "51" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "16", + "y1": "51", + "x2": "48", + "y2": "51" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "16", + "y1": "9", + "x2": "48", + "y2": "9" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "16", + "y1": "9", + "x2": "48", + "y2": "9" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "57", + "r": "2" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "57", + "r": "2" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "22", + "y": "23", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "20", + "height": "14" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "22", + "y": "23", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "20", + "height": "14" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "22,35 29,28 33,33 35,31 41,36 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "22,35 29,28 33,33 35,31 41,36 \t" + }, + "children": [] + }] + }] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "39", + "cy": "26", + "r": "3" + }, + "children": [] + }] +}; +exports.basic_elaboration_smartphone_picture = basic_elaboration_smartphone_picture; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_smartphone_refresh.js b/dist/linea/basic_elaboration_smartphone_refresh.js new file mode 100644 index 000000000..227947eac --- /dev/null +++ b/dist/linea/basic_elaboration_smartphone_refresh.js @@ -0,0 +1,187 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_smartphone_refresh = void 0; +var basic_elaboration_smartphone_refresh = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "16", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "32", + "height": "62" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "16", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "32", + "height": "62" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "28", + "y1": "5", + "x2": "36", + "y2": "5" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "28", + "y1": "5", + "x2": "36", + "y2": "5" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "16", + "y1": "51", + "x2": "48", + "y2": "51" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "16", + "y1": "51", + "x2": "48", + "y2": "51" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "16", + "y1": "9", + "x2": "48", + "y2": "9" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "16", + "y1": "9", + "x2": "48", + "y2": "9" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "57", + "r": "2" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "57", + "r": "2" + }, + "children": [] + }] + }] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M24,30c0,4.418,3.582,9,8,9h4" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "33,43 36,39 \r\n\t33,35 " + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M42,30c0-4.418-3.582-9-8-9h-4" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "33,17 30,21 \r\n\t33,25 " + }, + "children": [] + }] +}; +exports.basic_elaboration_smartphone_refresh = basic_elaboration_smartphone_refresh; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_smartphone_search.js b/dist/linea/basic_elaboration_smartphone_search.js new file mode 100644 index 000000000..29760a6c6 --- /dev/null +++ b/dist/linea/basic_elaboration_smartphone_search.js @@ -0,0 +1,199 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_smartphone_search = void 0; +var basic_elaboration_smartphone_search = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "16", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "32", + "height": "62" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "16", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "32", + "height": "62" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "28", + "y1": "5", + "x2": "36", + "y2": "5" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "28", + "y1": "5", + "x2": "36", + "y2": "5" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "16", + "y1": "51", + "x2": "48", + "y2": "51" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "16", + "y1": "51", + "x2": "48", + "y2": "51" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "16", + "y1": "9", + "x2": "48", + "y2": "9" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "16", + "y1": "9", + "x2": "48", + "y2": "9" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "57", + "r": "2" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "57", + "r": "2" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "29", + "cy": "27", + "r": "6" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "29", + "cy": "27", + "r": "6" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "33", + "y1": "31", + "x2": "41", + "y2": "39" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "33", + "y1": "31", + "x2": "41", + "y2": "39" + }, + "children": [] + }] + }] + }] +}; +exports.basic_elaboration_smartphone_search = basic_elaboration_smartphone_search; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_tablet_cloud.js b/dist/linea/basic_elaboration_tablet_cloud.js new file mode 100644 index 000000000..d3ff7fd33 --- /dev/null +++ b/dist/linea/basic_elaboration_tablet_cloud.js @@ -0,0 +1,103 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_tablet_cloud = void 0; +var basic_elaboration_tablet_cloud = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M34.887,36H39c1.887,0,3-1,3-3c0-1-1-3-3-3\r\n\tc0-3.604-3.277-6-7-6c-3.295,0-6.413,2.978-7,6l0,0c-2,0-3,2-3,3c0,2,1,3,3,3h10.434" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "11", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "42", + "height": "62" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "11", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "42", + "height": "62" + }, + "children": [] + }] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "28", + "y1": "5", + "x2": "36", + "y2": "5" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "11", + "y1": "51", + "x2": "53", + "y2": "51" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "11", + "y1": "9", + "x2": "53", + "y2": "9" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "57", + "r": "2" + }, + "children": [] + }] +}; +exports.basic_elaboration_tablet_cloud = basic_elaboration_tablet_cloud; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_tablet_heart.js b/dist/linea/basic_elaboration_tablet_heart.js new file mode 100644 index 000000000..5f5e09274 --- /dev/null +++ b/dist/linea/basic_elaboration_tablet_heart.js @@ -0,0 +1,103 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_tablet_heart = void 0; +var basic_elaboration_tablet_heart = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "11", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "42", + "height": "62" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "11", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "42", + "height": "62" + }, + "children": [] + }] + }] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M22,27c0,6.666,10,12,10,12s10-5.334,10-12\r\n\tc0-2.762-2-5-5-5c-2.762,0-5,2.238-5,5c0-2.762-2.238-5-5-5C24,22,22,24.238,22,27z" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "28", + "y1": "5", + "x2": "36", + "y2": "5" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "11", + "y1": "51", + "x2": "53", + "y2": "51" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "11", + "y1": "9", + "x2": "53", + "y2": "9" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "57", + "r": "2" + }, + "children": [] + }] +}; +exports.basic_elaboration_tablet_heart = basic_elaboration_tablet_heart; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_tablet_noaccess.js b/dist/linea/basic_elaboration_tablet_noaccess.js new file mode 100644 index 000000000..c953c6fd4 --- /dev/null +++ b/dist/linea/basic_elaboration_tablet_noaccess.js @@ -0,0 +1,118 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_tablet_noaccess = void 0; +var basic_elaboration_tablet_noaccess = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "30", + "r": "9" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "25.834", + "y1": "23.834", + "x2": "38.166", + "y2": "36.166" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "11", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "42", + "height": "62" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "11", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "42", + "height": "62" + }, + "children": [] + }] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "28", + "y1": "5", + "x2": "36", + "y2": "5" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "11", + "y1": "51", + "x2": "53", + "y2": "51" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "11", + "y1": "9", + "x2": "53", + "y2": "9" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "57", + "r": "2" + }, + "children": [] + }] +}; +exports.basic_elaboration_tablet_noaccess = basic_elaboration_tablet_noaccess; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_tablet_note.js b/dist/linea/basic_elaboration_tablet_note.js new file mode 100644 index 000000000..95b458e2a --- /dev/null +++ b/dist/linea/basic_elaboration_tablet_note.js @@ -0,0 +1,191 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_tablet_note = void 0; +var basic_elaboration_tablet_note = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "35", + "cy": "35", + "r": "3" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "35", + "cy": "35", + "r": "3" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "25", + "cy": "37", + "r": "3" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "25", + "cy": "37", + "r": "3" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "38,35 38,20 28,22 28,37 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "38,35 38,20 28,22 28,37 \t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "28", + "y1": "26", + "x2": "38", + "y2": "24" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "28", + "y1": "26", + "x2": "38", + "y2": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "11", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "42", + "height": "62" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "11", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "42", + "height": "62" + }, + "children": [] + }] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "28", + "y1": "5", + "x2": "36", + "y2": "5" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "11", + "y1": "51", + "x2": "53", + "y2": "51" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "11", + "y1": "9", + "x2": "53", + "y2": "9" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "57", + "r": "2" + }, + "children": [] + }] +}; +exports.basic_elaboration_tablet_note = basic_elaboration_tablet_note; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_tablet_pencil.js b/dist/linea/basic_elaboration_tablet_pencil.js new file mode 100644 index 000000000..32bc0988c --- /dev/null +++ b/dist/linea/basic_elaboration_tablet_pencil.js @@ -0,0 +1,143 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_tablet_pencil = void 0; +var basic_elaboration_tablet_pencil = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,35 22,40 27,39 42,24 38,20 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,35 22,40 27,39 42,24 38,20 \t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "39", + "y1": "27", + "x2": "35", + "y2": "23" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "39", + "y1": "27", + "x2": "35", + "y2": "23" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "11", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "42", + "height": "62" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "11", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "42", + "height": "62" + }, + "children": [] + }] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "28", + "y1": "5", + "x2": "36", + "y2": "5" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "11", + "y1": "51", + "x2": "53", + "y2": "51" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "11", + "y1": "9", + "x2": "53", + "y2": "9" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "57", + "r": "2" + }, + "children": [] + }] +}; +exports.basic_elaboration_tablet_pencil = basic_elaboration_tablet_pencil; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_tablet_picture.js b/dist/linea/basic_elaboration_tablet_picture.js new file mode 100644 index 000000000..4612295ee --- /dev/null +++ b/dist/linea/basic_elaboration_tablet_picture.js @@ -0,0 +1,155 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_tablet_picture = void 0; +var basic_elaboration_tablet_picture = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "22", + "y": "23", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "20", + "height": "14" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "22", + "y": "23", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "20", + "height": "14" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "22,35 29,28 33,33 35,31 41,36 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "22,35 29,28 33,33 35,31 41,36 \t" + }, + "children": [] + }] + }] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "39", + "cy": "26", + "r": "3" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "11", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "42", + "height": "62" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "11", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "42", + "height": "62" + }, + "children": [] + }] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "28", + "y1": "5", + "x2": "36", + "y2": "5" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "11", + "y1": "51", + "x2": "53", + "y2": "51" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "11", + "y1": "9", + "x2": "53", + "y2": "9" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "57", + "r": "2" + }, + "children": [] + }] +}; +exports.basic_elaboration_tablet_picture = basic_elaboration_tablet_picture; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_tablet_refresh.js b/dist/linea/basic_elaboration_tablet_refresh.js new file mode 100644 index 000000000..041e08865 --- /dev/null +++ b/dist/linea/basic_elaboration_tablet_refresh.js @@ -0,0 +1,135 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_tablet_refresh = void 0; +var basic_elaboration_tablet_refresh = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M24,30c0,4.418,3.582,9,8,9h4" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "33,43 36,39 \r\n\t33,35 " + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M42,30c0-4.418-3.582-9-8-9h-4" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "33,17 30,21 \r\n\t33,25 " + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "11", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "42", + "height": "62" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "11", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "42", + "height": "62" + }, + "children": [] + }] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "28", + "y1": "5", + "x2": "36", + "y2": "5" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "11", + "y1": "51", + "x2": "53", + "y2": "51" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "11", + "y1": "9", + "x2": "53", + "y2": "9" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "57", + "r": "2" + }, + "children": [] + }] +}; +exports.basic_elaboration_tablet_refresh = basic_elaboration_tablet_refresh; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_tablet_search.js b/dist/linea/basic_elaboration_tablet_search.js new file mode 100644 index 000000000..2c7b002fe --- /dev/null +++ b/dist/linea/basic_elaboration_tablet_search.js @@ -0,0 +1,147 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_tablet_search = void 0; +var basic_elaboration_tablet_search = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "29", + "cy": "27", + "r": "6" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "29", + "cy": "27", + "r": "6" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "33", + "y1": "31", + "x2": "41", + "y2": "39" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "33", + "y1": "31", + "x2": "41", + "y2": "39" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "11", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "42", + "height": "62" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "11", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "42", + "height": "62" + }, + "children": [] + }] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "28", + "y1": "5", + "x2": "36", + "y2": "5" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "11", + "y1": "51", + "x2": "53", + "y2": "51" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "11", + "y1": "9", + "x2": "53", + "y2": "9" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "57", + "r": "2" + }, + "children": [] + }] +}; +exports.basic_elaboration_tablet_search = basic_elaboration_tablet_search; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_todolist_2.js b/dist/linea/basic_elaboration_todolist_2.js new file mode 100644 index 000000000..ce49b9e8d --- /dev/null +++ b/dist/linea/basic_elaboration_todolist_2.js @@ -0,0 +1,44 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_todolist_2 = void 0; +var basic_elaboration_todolist_2 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,8 10,8 10,63 54,63 54,8 41,8 " + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "36,5 36,1 28,1 28,5 24,5 22,13 42,13 40,5 \r\n\t" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "14", + "y": "13", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "36", + "height": "46" + }, + "children": [] + }] +}; +exports.basic_elaboration_todolist_2 = basic_elaboration_todolist_2; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_todolist_check.js b/dist/linea/basic_elaboration_todolist_check.js new file mode 100644 index 000000000..93f76b617 --- /dev/null +++ b/dist/linea/basic_elaboration_todolist_check.js @@ -0,0 +1,42 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_todolist_check = void 0; +var basic_elaboration_todolist_check = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "23,34 30,41 \r\n\t43,28 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,8 10,8 10,63 54,63 54,8 41,8 " + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "36,5 36,1 28,1 28,5 24,5 22,13 42,13 40,5 \r\n\t" + }, + "children": [] + }] +}; +exports.basic_elaboration_todolist_check = basic_elaboration_todolist_check; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_todolist_cloud.js b/dist/linea/basic_elaboration_todolist_cloud.js new file mode 100644 index 000000000..c4b5dde3f --- /dev/null +++ b/dist/linea/basic_elaboration_todolist_cloud.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_todolist_cloud = void 0; +var basic_elaboration_todolist_cloud = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M34.887,42H39c1.887,0,3-1,3-3c0-1-1-3-3-3\r\n\tc0-3.604-3.277-6-7-6c-3.295,0-6.413,2.978-7,6l0,0c-2,0-3,2-3,3c0,2,1,3,3,3h10.434" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,8 10,8 10,63 54,63 54,8 41,8 " + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "36,5 36,1 28,1 28,5 24,5 22,13 42,13 40,5 \r\n\t" + }, + "children": [] + }] +}; +exports.basic_elaboration_todolist_cloud = basic_elaboration_todolist_cloud; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_todolist_download.js b/dist/linea/basic_elaboration_todolist_download.js new file mode 100644 index 000000000..dfd7caeef --- /dev/null +++ b/dist/linea/basic_elaboration_todolist_download.js @@ -0,0 +1,72 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_todolist_download = void 0; +var basic_elaboration_todolist_download = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "40,37 32,45 \r\n\t24,37 " + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "45", + "x2": "32", + "y2": "25" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "45", + "x2": "32", + "y2": "25" + }, + "children": [] + }] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,8 10,8 10,63 54,63 54,8 41,8 " + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "36,5 36,1 28,1 28,5 24,5 22,13 42,13 40,5 \r\n\t" + }, + "children": [] + }] +}; +exports.basic_elaboration_todolist_download = basic_elaboration_todolist_download; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_todolist_flagged.js b/dist/linea/basic_elaboration_todolist_flagged.js new file mode 100644 index 000000000..321a818a4 --- /dev/null +++ b/dist/linea/basic_elaboration_todolist_flagged.js @@ -0,0 +1,54 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_todolist_flagged = void 0; +var basic_elaboration_todolist_flagged = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,8 10,8 10,63 54,63 54,8 41,8 " + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "36,5 36,1 28,1 28,5 24,5 22,13 42,13 40,5 \r\n\t" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "27", + "y1": "23", + "x2": "27", + "y2": "46" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "27,26 42,26 39.484,30 42,34 27,34 " + }, + "children": [] + }] +}; +exports.basic_elaboration_todolist_flagged = basic_elaboration_todolist_flagged; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_todolist_minus.js b/dist/linea/basic_elaboration_todolist_minus.js new file mode 100644 index 000000000..58a89cfd5 --- /dev/null +++ b/dist/linea/basic_elaboration_todolist_minus.js @@ -0,0 +1,44 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_todolist_minus = void 0; +var basic_elaboration_todolist_minus = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "41", + "y1": "36", + "x2": "23", + "y2": "36" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,8 10,8 10,63 54,63 54,8 41,8 " + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "36,5 36,1 28,1 28,5 24,5 22,13 42,13 40,5 \r\n\t" + }, + "children": [] + }] +}; +exports.basic_elaboration_todolist_minus = basic_elaboration_todolist_minus; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_todolist_noaccess.js b/dist/linea/basic_elaboration_todolist_noaccess.js new file mode 100644 index 000000000..c9d7b0556 --- /dev/null +++ b/dist/linea/basic_elaboration_todolist_noaccess.js @@ -0,0 +1,56 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_todolist_noaccess = void 0; +var basic_elaboration_todolist_noaccess = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "36", + "r": "9" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "25.834", + "y1": "29.834", + "x2": "38.166", + "y2": "42.166" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,8 10,8 10,63 54,63 54,8 41,8 " + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "36,5 36,1 28,1 28,5 24,5 22,13 42,13 40,5 \r\n\t" + }, + "children": [] + }] +}; +exports.basic_elaboration_todolist_noaccess = basic_elaboration_todolist_noaccess; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_todolist_pencil.js b/dist/linea/basic_elaboration_todolist_pencil.js new file mode 100644 index 000000000..31821b9b4 --- /dev/null +++ b/dist/linea/basic_elaboration_todolist_pencil.js @@ -0,0 +1,81 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_todolist_pencil = void 0; +var basic_elaboration_todolist_pencil = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,41 22,46 27,45 42,30 38,26 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,41 22,46 27,45 42,30 38,26 \t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "39", + "y1": "33", + "x2": "35", + "y2": "29" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "39", + "y1": "33", + "x2": "35", + "y2": "29" + }, + "children": [] + }] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,8 10,8 10,63 54,63 54,8 41,8 " + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "36,5 36,1 28,1 28,5 24,5 22,13 42,13 40,5 \r\n\t" + }, + "children": [] + }] +}; +exports.basic_elaboration_todolist_pencil = basic_elaboration_todolist_pencil; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_todolist_plus.js b/dist/linea/basic_elaboration_todolist_plus.js new file mode 100644 index 000000000..567203d1b --- /dev/null +++ b/dist/linea/basic_elaboration_todolist_plus.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_todolist_plus = void 0; +var basic_elaboration_todolist_plus = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "27", + "x2": "32", + "y2": "45" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "41", + "y1": "36", + "x2": "23", + "y2": "36" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,8 10,8 10,63 54,63 54,8 41,8 " + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "36,5 36,1 28,1 28,5 24,5 22,13 42,13 40,5 \r\n\t" + }, + "children": [] + }] +}; +exports.basic_elaboration_todolist_plus = basic_elaboration_todolist_plus; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_todolist_refresh.js b/dist/linea/basic_elaboration_todolist_refresh.js new file mode 100644 index 000000000..c50367332 --- /dev/null +++ b/dist/linea/basic_elaboration_todolist_refresh.js @@ -0,0 +1,73 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_todolist_refresh = void 0; +var basic_elaboration_todolist_refresh = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M24,36c0,4.418,3.582,9,8,9h4" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "33,49 36,45 \r\n\t33,41 " + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M42,36c0-4.418-3.582-9-8-9h-4" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "33,23 30,27 \r\n\t33,31 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,8 10,8 10,63 54,63 54,8 41,8 " + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "36,5 36,1 28,1 28,5 24,5 22,13 42,13 40,5 \r\n\t" + }, + "children": [] + }] +}; +exports.basic_elaboration_todolist_refresh = basic_elaboration_todolist_refresh; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_todolist_remove.js b/dist/linea/basic_elaboration_todolist_remove.js new file mode 100644 index 000000000..72b09d776 --- /dev/null +++ b/dist/linea/basic_elaboration_todolist_remove.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_todolist_remove = void 0; +var basic_elaboration_todolist_remove = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "39", + "y1": "43", + "x2": "25", + "y2": "29" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "25", + "y1": "43", + "x2": "39", + "y2": "29" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,8 10,8 10,63 54,63 54,8 41,8 " + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "36,5 36,1 28,1 28,5 24,5 22,13 42,13 40,5 \r\n\t" + }, + "children": [] + }] +}; +exports.basic_elaboration_todolist_remove = basic_elaboration_todolist_remove; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_todolist_search.js b/dist/linea/basic_elaboration_todolist_search.js new file mode 100644 index 000000000..da6d12b00 --- /dev/null +++ b/dist/linea/basic_elaboration_todolist_search.js @@ -0,0 +1,85 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_todolist_search = void 0; +var basic_elaboration_todolist_search = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "29", + "cy": "33", + "r": "6" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "29", + "cy": "33", + "r": "6" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "33", + "y1": "37", + "x2": "41", + "y2": "45" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "33", + "y1": "37", + "x2": "41", + "y2": "45" + }, + "children": [] + }] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,8 10,8 10,63 54,63 54,8 41,8 " + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "36,5 36,1 28,1 28,5 24,5 22,13 42,13 40,5 \r\n\t" + }, + "children": [] + }] +}; +exports.basic_elaboration_todolist_search = basic_elaboration_todolist_search; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_todolist_star.js b/dist/linea/basic_elaboration_todolist_star.js new file mode 100644 index 000000000..804fe11cb --- /dev/null +++ b/dist/linea/basic_elaboration_todolist_star.js @@ -0,0 +1,42 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_todolist_star = void 0; +var basic_elaboration_todolist_star = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,8 10,8 10,63 54,63 54,8 41,8 " + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "36,5 36,1 28,1 28,5 24,5 22,13 42,13 40,5 \r\n\t" + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "round", + "stroke-miterlimit": "10", + "points": "32,41 25.875,45 \r\n\t28,38 22,34 29.213,34 32,26 35,34 42,34 36,38 37.938,45 " + }, + "children": [] + }] +}; +exports.basic_elaboration_todolist_star = basic_elaboration_todolist_star; \ No newline at end of file diff --git a/dist/linea/basic_elaboration_todolist_upload.js b/dist/linea/basic_elaboration_todolist_upload.js new file mode 100644 index 000000000..a5213be19 --- /dev/null +++ b/dist/linea/basic_elaboration_todolist_upload.js @@ -0,0 +1,72 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_elaboration_todolist_upload = void 0; +var basic_elaboration_todolist_upload = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "23.998,34 \r\n\t31.998,26 39.998,34 " + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "31.998", + "y1": "26", + "x2": "31.998", + "y2": "46" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "31.998", + "y1": "26", + "x2": "31.998", + "y2": "46" + }, + "children": [] + }] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,8 10,8 10,63 54,63 54,8 41,8 " + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "36,5 36,1 28,1 28,5 24,5 22,13 42,13 40,5 \r\n\t" + }, + "children": [] + }] +}; +exports.basic_elaboration_todolist_upload = basic_elaboration_todolist_upload; \ No newline at end of file diff --git a/dist/linea/basic_exclamation.js b/dist/linea/basic_exclamation.js new file mode 100644 index 000000000..9c9a8861c --- /dev/null +++ b/dist/linea/basic_exclamation.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_exclamation = void 0; +var basic_exclamation = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "17", + "x2": "32", + "y2": "39" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "43", + "x2": "32", + "y2": "47" + }, + "children": [] + }] +}; +exports.basic_exclamation = basic_exclamation; \ No newline at end of file diff --git a/dist/linea/basic_eye.js b/dist/linea/basic_eye.js new file mode 100644 index 000000000..052fcecb3 --- /dev/null +++ b/dist/linea/basic_eye.js @@ -0,0 +1,33 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_eye = void 0; +var basic_eye = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M1,32c0,0,11,15,31,15s31-15,31-15S52,17,32,17\r\n\tS1,32,1,32z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "7" + }, + "children": [] + }] +}; +exports.basic_eye = basic_eye; \ No newline at end of file diff --git a/dist/linea/basic_eye_closed.js b/dist/linea/basic_eye_closed.js new file mode 100644 index 000000000..e357efb10 --- /dev/null +++ b/dist/linea/basic_eye_closed.js @@ -0,0 +1,46 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_eye_closed = void 0; +var basic_eye_closed = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M1,32c0,0,11,15,31,15s31-15,31-15S52,17,32,17\r\n\tS1,32,1,32z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "7" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "9", + "y1": "55", + "x2": "55", + "y2": "9" + }, + "children": [] + }] +}; +exports.basic_eye_closed = basic_eye_closed; \ No newline at end of file diff --git a/dist/linea/basic_female.js b/dist/linea/basic_female.js new file mode 100644 index 000000000..54ff0dcba --- /dev/null +++ b/dist/linea/basic_female.js @@ -0,0 +1,49 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_female = void 0; +var basic_female = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "39", + "cy": "25", + "r": "24" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "1", + "y1": "63", + "x2": "22", + "y2": "42" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "1", + "y1": "46", + "x2": "18", + "y2": "63" + }, + "children": [] + }] +}; +exports.basic_female = basic_female; \ No newline at end of file diff --git a/dist/linea/basic_flag1.js b/dist/linea/basic_flag1.js new file mode 100644 index 000000000..5117045a2 --- /dev/null +++ b/dist/linea/basic_flag1.js @@ -0,0 +1,34 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_flag1 = void 0; +var basic_flag1 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "12", + "y1": "0", + "x2": "12", + "y2": "64" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,6 53,6 47,18 53,30 12,30 " + }, + "children": [] + }] +}; +exports.basic_flag1 = basic_flag1; \ No newline at end of file diff --git a/dist/linea/basic_flag2.js b/dist/linea/basic_flag2.js new file mode 100644 index 000000000..f036ecb21 --- /dev/null +++ b/dist/linea/basic_flag2.js @@ -0,0 +1,44 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_flag2 = void 0; +var basic_flag2 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "7", + "y1": "0", + "x2": "7", + "y2": "64" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "32.062,6 26,11 26,35 57,35 51,23 57,11 \r\n\t26,11 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "26,30 7,30 7,6 32,6 32,11 " + }, + "children": [] + }] +}; +exports.basic_flag2 = basic_flag2; \ No newline at end of file diff --git a/dist/linea/basic_floppydisk.js b/dist/linea/basic_floppydisk.js new file mode 100644 index 000000000..e74a9c8d9 --- /dev/null +++ b/dist/linea/basic_floppydisk.js @@ -0,0 +1,113 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_floppydisk = void 0; +var basic_floppydisk = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "63,63 1,63 1,1 51,1 63,13 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "63,63 1,63 1,1 51,1 63,13 \t" + }, + "children": [] + }] + }] + }, { + "name": "rect", + "attribs": { + "x": "7", + "y": "31", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "50", + "height": "32" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "14", + "y1": "39", + "x2": "50", + "y2": "39" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "14", + "y1": "47", + "x2": "50", + "y2": "47" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "14", + "y1": "55", + "x2": "50", + "y2": "55" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "15", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "34", + "height": "19" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "38", + "y": "5", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "5", + "height": "11" + }, + "children": [] + }] +}; +exports.basic_floppydisk = basic_floppydisk; \ No newline at end of file diff --git a/dist/linea/basic_folder.js b/dist/linea/basic_folder.js new file mode 100644 index 000000000..467438436 --- /dev/null +++ b/dist/linea/basic_folder.js @@ -0,0 +1,21 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_folder = void 0; +var basic_folder = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "63,18 63,54 1,54 1,10 22,10 30,18 " + }, + "children": [] + }] +}; +exports.basic_folder = basic_folder; \ No newline at end of file diff --git a/dist/linea/basic_folder_multiple.js b/dist/linea/basic_folder_multiple.js new file mode 100644 index 000000000..87d68b332 --- /dev/null +++ b/dist/linea/basic_folder_multiple.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_folder_multiple = void 0; +var basic_folder_multiple = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "56,22 56,54 1,54 1,15 19.629,15 26.726,22 \r\n\t" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "8,13 8,7 26.629,7 33.726,14 63,14 63,46 \r\n\t58,46 " + }, + "children": [] + }] +}; +exports.basic_folder_multiple = basic_folder_multiple; \ No newline at end of file diff --git a/dist/linea/basic_gear.js b/dist/linea/basic_gear.js new file mode 100644 index 000000000..b3829ea8e --- /dev/null +++ b/dist/linea/basic_gear.js @@ -0,0 +1,59 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_gear = void 0; +var basic_gear = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "32,1 26,1 26,10 20,12 14,6 6,14 12,20 \r\n\t\t10,26 1,26 1,38 10,38 12,44 6,50 14,58 20,52 26,54 26,63 32,63 38,63 38,54 44,52 50,58 58,50 52,44 54,38 63,38 63,26 54,26 \r\n\t\t52,20 58,14 50,6 44,12 38,10 38,1 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "32,1 26,1 26,10 20,12 14,6 6,14 12,20 \r\n\t\t10,26 1,26 1,38 10,38 12,44 6,50 14,58 20,52 26,54 26,63 32,63 38,63 38,54 44,52 50,58 58,50 52,44 54,38 63,38 63,26 54,26 \r\n\t\t52,20 58,14 50,6 44,12 38,10 38,1 \t" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "6" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "6" + }, + "children": [] + }] + }] + }] +}; +exports.basic_gear = basic_gear; \ No newline at end of file diff --git a/dist/linea/basic_globe.js b/dist/linea/basic_globe.js new file mode 100644 index 000000000..051fa847e --- /dev/null +++ b/dist/linea/basic_globe.js @@ -0,0 +1,59 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_globe = void 0; +var basic_globe = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M32,1c14.359,0,27,12.641,27,27S46.359,55,32,55\r\n\tc-10,0-13-4-13-4" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "28", + "r": "20" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "54", + "x2": "32", + "y2": "64" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "63", + "x2": "42", + "y2": "63" + }, + "children": [] + }] +}; +exports.basic_globe = basic_globe; \ No newline at end of file diff --git a/dist/linea/basic_gunsight.js b/dist/linea/basic_gunsight.js new file mode 100644 index 000000000..99f6c8b23 --- /dev/null +++ b/dist/linea/basic_gunsight.js @@ -0,0 +1,75 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_gunsight = void 0; +var basic_gunsight = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "48", + "x2": "32", + "y2": "64" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "0", + "x2": "32", + "y2": "16" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "16", + "y1": "32", + "x2": "0", + "y2": "32" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "64", + "y1": "32", + "x2": "48", + "y2": "32" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "24" + }, + "children": [] + }] +}; +exports.basic_gunsight = basic_gunsight; \ No newline at end of file diff --git a/dist/linea/basic_hammer.js b/dist/linea/basic_hammer.js new file mode 100644 index 000000000..33454bcf9 --- /dev/null +++ b/dist/linea/basic_hammer.js @@ -0,0 +1,48 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_hammer = void 0; +var basic_hammer = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "20", + "x2": "41", + "y2": "39" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "46.257", + "y": "35.065", + "transform": "matrix(-0.7071 0.7071 -0.7071 -0.7071 120.5036 47.0858)", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "8.485", + "height": "26.87" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M1,19L17,3c6,6,13,1,13,1l4,4L12,30L1,19z" + }, + "children": [] + }] +}; +exports.basic_hammer = basic_hammer; \ No newline at end of file diff --git a/dist/linea/basic_headset.js b/dist/linea/basic_headset.js new file mode 100644 index 000000000..40f7931d6 --- /dev/null +++ b/dist/linea/basic_headset.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_headset = void 0; +var basic_headset = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M11,48C5.477,48,1,43.523,1,38s4.477-10,10-10h2v20\r\n\tH11z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M53,28c5.523,0,10,4.477,10,10s-4.477,10-10,10h-2\r\n\tV28H53z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M13,31v-9c0,0,0-16,19-16s19,16,19,16v6" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "51,48 51,53 36,59 28,59 28,55 36,55 \r\n\t36,58 " + }, + "children": [] + }] +}; +exports.basic_headset = basic_headset; \ No newline at end of file diff --git a/dist/linea/basic_heart.js b/dist/linea/basic_heart.js new file mode 100644 index 000000000..637c5b79e --- /dev/null +++ b/dist/linea/basic_heart.js @@ -0,0 +1,21 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_heart = void 0; +var basic_heart = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M1,21c0,20,31,38,31,38s31-18,31-38\r\n\tc0-8.285-6-16-15-16c-8.285,0-16,5.715-16,14c0-8.285-7.715-14-16-14C7,5,1,12.715,1,21z" + }, + "children": [] + }] +}; +exports.basic_heart = basic_heart; \ No newline at end of file diff --git a/dist/linea/basic_heart_broken.js b/dist/linea/basic_heart_broken.js new file mode 100644 index 000000000..fdbeb4cd7 --- /dev/null +++ b/dist/linea/basic_heart_broken.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_heart_broken = void 0; +var basic_heart_broken = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M1,21c0,20,31,38,31,38s31-18,31-38\r\n\tc0-8.285-6-16-15-16c-8.285,0-16,5.715-16,14c0-8.285-7.715-14-16-14C7,5,1,12.715,1,21z" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "29,57 36,50 30,44 36,38 30,32 38,24 \r\n\t32,19 32,17 " + }, + "children": [] + }] +}; +exports.basic_heart_broken = basic_heart_broken; \ No newline at end of file diff --git a/dist/linea/basic_helm.js b/dist/linea/basic_helm.js new file mode 100644 index 000000000..4d5c89161 --- /dev/null +++ b/dist/linea/basic_helm.js @@ -0,0 +1,113 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_helm = void 0; +var basic_helm = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "40", + "x2": "32", + "y2": "64" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "0", + "x2": "32", + "y2": "24" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "38", + "y1": "37", + "x2": "59", + "y2": "54" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "5", + "y1": "10", + "x2": "26", + "y2": "27" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "38", + "y1": "27", + "x2": "59", + "y2": "11" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "5", + "y1": "53", + "x2": "26", + "y2": "37" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "8" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "24" + }, + "children": [] + }] +}; +exports.basic_helm = basic_helm; \ No newline at end of file diff --git a/dist/linea/basic_home.js b/dist/linea/basic_home.js new file mode 100644 index 000000000..f7a0f4fd1 --- /dev/null +++ b/dist/linea/basic_home.js @@ -0,0 +1,21 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_home = void 0; +var basic_home = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "32,3 2,33 11,33 11,63 23,63 23,47 39,47 \r\n\t39,63 51,63 51,33 62,33 " + }, + "children": [] + }] +}; +exports.basic_home = basic_home; \ No newline at end of file diff --git a/dist/linea/basic_info.js b/dist/linea/basic_info.js new file mode 100644 index 000000000..caad2a875 --- /dev/null +++ b/dist/linea/basic_info.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_info = void 0; +var basic_info = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "47", + "x2": "32", + "y2": "25" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "21", + "x2": "32", + "y2": "17" + }, + "children": [] + }] +}; +exports.basic_info = basic_info; \ No newline at end of file diff --git a/dist/linea/basic_ipod.js b/dist/linea/basic_ipod.js new file mode 100644 index 000000000..8c56c5c53 --- /dev/null +++ b/dist/linea/basic_ipod.js @@ -0,0 +1,145 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_ipod = void 0; +var basic_ipod = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "16", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "32", + "height": "62" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "16", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "32", + "height": "62" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "16", + "y1": "36", + "x2": "48", + "y2": "36" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "16", + "y1": "36", + "x2": "48", + "y2": "36" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "16", + "y1": "5", + "x2": "48", + "y2": "5" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "16", + "y1": "5", + "x2": "48", + "y2": "5" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "cx": "31.5", + "cy": "49.5", + "r": "9.5" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "cx": "31.5", + "cy": "49.5", + "r": "9.5" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "cx": "31.5", + "cy": "49.5", + "r": "2.5" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "cx": "31.5", + "cy": "49.5", + "r": "2.5" + }, + "children": [] + }] + }] + }] +}; +exports.basic_ipod = basic_ipod; \ No newline at end of file diff --git a/dist/linea/basic_joypad.js b/dist/linea/basic_joypad.js new file mode 100644 index 000000000..6e6d79994 --- /dev/null +++ b/dist/linea/basic_joypad.js @@ -0,0 +1,100 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_joypad = void 0; +var basic_joypad = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M50,27H14C6.82,27,1,32.82,1,40s5.82,13,13,13\r\n\tc4.6,0,8.632-2.396,10.943-6h14.113C41.368,50.604,45.4,53,50,53c7.18,0,13-5.82,13-13S57.18,27,50,27z" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "x1": "14", + "y1": "32", + "x2": "14", + "y2": "48" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "40", + "x2": "6", + "y2": "40" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "cx": "50", + "cy": "39.99", + "r": "7" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "x1": "50", + "y1": "33", + "x2": "50", + "y2": "47" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "x1": "57", + "y1": "40", + "x2": "43", + "y2": "40" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "32,27 32,21 46,21 46,14 36,14 36,11 " + }, + "children": [] + }] +}; +exports.basic_joypad = basic_joypad; \ No newline at end of file diff --git a/dist/linea/basic_key.js b/dist/linea/basic_key.js new file mode 100644 index 000000000..d6c26710f --- /dev/null +++ b/dist/linea/basic_key.js @@ -0,0 +1,62 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_key = void 0; +var basic_key = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "51", + "cy": "32", + "r": "12" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "0", + "y1": "32", + "x2": "38", + "y2": "32" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "6", + "y1": "32", + "x2": "6", + "y2": "42" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "14", + "y1": "32", + "x2": "14", + "y2": "38" + }, + "children": [] + }] +}; +exports.basic_key = basic_key; \ No newline at end of file diff --git a/dist/linea/basic_keyboard.js b/dist/linea/basic_keyboard.js new file mode 100644 index 000000000..fa583bb74 --- /dev/null +++ b/dist/linea/basic_keyboard.js @@ -0,0 +1,346 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_keyboard = void 0; +var basic_keyboard = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "22", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "30" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "7,22 7,14 21,14 21,7 11,7 11,4 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "4", + "y1": "29", + "x2": "8", + "y2": "29" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "10", + "y1": "29", + "x2": "14", + "y2": "29" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "16", + "y1": "29", + "x2": "20", + "y2": "29" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "29", + "x2": "26", + "y2": "29" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "28", + "y1": "29", + "x2": "32", + "y2": "29" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "34", + "y1": "29", + "x2": "38", + "y2": "29" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "40", + "y1": "29", + "x2": "44", + "y2": "29" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "46", + "y1": "29", + "x2": "50", + "y2": "29" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "52", + "y1": "29", + "x2": "56", + "y2": "29" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "4", + "y1": "45", + "x2": "8", + "y2": "45" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "10", + "y1": "45", + "x2": "14", + "y2": "45" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "16", + "y1": "45", + "x2": "42", + "y2": "45" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "50", + "y1": "45", + "x2": "54", + "y2": "45" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "56", + "y1": "45", + "x2": "60", + "y2": "45" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "44", + "y1": "45", + "x2": "48", + "y2": "45" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "8", + "y1": "37", + "x2": "12", + "y2": "37" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "14", + "y1": "37", + "x2": "18", + "y2": "37" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "20", + "y1": "37", + "x2": "24", + "y2": "37" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "26", + "y1": "37", + "x2": "30", + "y2": "37" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "37", + "x2": "36", + "y2": "37" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "38", + "y1": "37", + "x2": "42", + "y2": "37" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "44", + "y1": "37", + "x2": "48", + "y2": "37" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "50", + "y1": "37", + "x2": "54", + "y2": "37" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "56", + "y1": "37", + "x2": "60", + "y2": "37" + }, + "children": [] + }] +}; +exports.basic_keyboard = basic_keyboard; \ No newline at end of file diff --git a/dist/linea/basic_laptop.js b/dist/linea/basic_laptop.js new file mode 100644 index 000000000..95d435635 --- /dev/null +++ b/dist/linea/basic_laptop.js @@ -0,0 +1,93 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_laptop = void 0; +var basic_laptop = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "8", + "y": "12", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "48", + "height": "34" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "8", + "y": "12", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "48", + "height": "34" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "1", + "y": "46", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "6" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "46", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "6" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "34", + "y1": "16", + "x2": "30", + "y2": "16" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "34", + "y1": "16", + "x2": "30", + "y2": "16" + }, + "children": [] + }] + }] + }] +}; +exports.basic_laptop = basic_laptop; \ No newline at end of file diff --git a/dist/linea/basic_life_buoy.js b/dist/linea/basic_life_buoy.js new file mode 100644 index 000000000..74b161a60 --- /dev/null +++ b/dist/linea/basic_life_buoy.js @@ -0,0 +1,139 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_life_buoy = void 0; +var basic_life_buoy = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "31" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "15" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "26", + "y1": "18", + "x2": "26", + "y2": "1" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "38", + "y1": "18", + "x2": "38", + "y2": "1" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "26", + "y1": "63", + "x2": "26", + "y2": "46" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "38", + "y1": "63", + "x2": "38", + "y2": "46" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "46", + "y1": "26", + "x2": "63", + "y2": "26" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "46", + "y1": "38", + "x2": "63", + "y2": "38" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "1", + "y1": "26", + "x2": "18", + "y2": "26" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "1", + "y1": "38", + "x2": "18", + "y2": "38" + }, + "children": [] + }] +}; +exports.basic_life_buoy = basic_life_buoy; \ No newline at end of file diff --git a/dist/linea/basic_lightbulb.js b/dist/linea/basic_lightbulb.js new file mode 100644 index 000000000..4b942c06b --- /dev/null +++ b/dist/linea/basic_lightbulb.js @@ -0,0 +1,96 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_lightbulb = void 0; +var basic_lightbulb = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M21,40v5h22l0.001-5.107C49,36.195,53,29.564,53,22\r\n\tc0-11.598-9.402-21-21-21s-21,9.402-21,21C11,29.565,14.998,36.304,21,40z" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "28", + "y1": "45", + "x2": "25", + "y2": "25" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "36", + "y1": "45", + "x2": "39", + "y2": "25" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "25,26 29,29 32,26 35,29 39,26 " + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "21", + "y": "45", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "22", + "height": "6" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "23", + "y": "51", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "18", + "height": "6" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "25", + "y": "57", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "14", + "height": "6" + }, + "children": [] + }] +}; +exports.basic_lightbulb = basic_lightbulb; \ No newline at end of file diff --git a/dist/linea/basic_link.js b/dist/linea/basic_link.js new file mode 100644 index 000000000..23d42b70f --- /dev/null +++ b/dist/linea/basic_link.js @@ -0,0 +1,64 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_link = void 0; +var basic_link = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M37.004,32.166c1.224,0.533,2.576,0.829,3.997,0.828\r\n\tc3.271-0.003,6.175-1.576,7.998-4.006L60.99,16.98c1.255-1.673,1.998-3.751,1.996-6.002c-0.003-5.522-4.484-9.997-10.007-9.993\r\n\tc-2.251,0.002-4.327,0.747-5.999,2.004L33.989,15.998c-1.768,1.805-2.997,4.277-2.996,7.003c0.001,1.424,0.3,2.778,0.837,4.003" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M37.004,32.166" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M31.831,27.004c0.053,0.121,0.107,0.24,0.166,0.358" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M26.997,31.836c-1.225-0.535-2.577-0.831-3.998-0.83\r\n\tc-2.251,0.002-4.328,0.747-5.999,2.004L4.01,46.02c-1.768,1.804-2.997,4.276-2.995,7.002c0.003,5.522,4.484,9.997,10.007,9.993\r\n\tc3.271-0.003,6.174-1.576,7.997-4.006L31.01,47.001c1.255-1.673,1.998-3.751,1.996-6.002c-0.001-1.422-0.299-2.774-0.835-3.998" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "23.006", + "y1": "41.006", + "x2": "40.994", + "y2": "22.994" + }, + "children": [] + }] +}; +exports.basic_link = basic_link; \ No newline at end of file diff --git a/dist/linea/basic_lock.js b/dist/linea/basic_lock.js new file mode 100644 index 000000000..36a808fc5 --- /dev/null +++ b/dist/linea/basic_lock.js @@ -0,0 +1,111 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_lock = void 0; +var basic_lock = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "8", + "y": "33", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "48", + "height": "30" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "8", + "y": "33", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "48", + "height": "30" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M16,33V17c0-8.837,7.163-16,16-16s16,7.163,16,16\r\n\t\tv16" + }, + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M16,33V17c0-8.837,7.163-16,16-16s16,7.163,16,16\r\n\t\tv16" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "47", + "r": "4" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "47", + "r": "4" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "51", + "x2": "32", + "y2": "55" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "51", + "x2": "32", + "y2": "55" + }, + "children": [] + }] + }] + }] +}; +exports.basic_lock = basic_lock; \ No newline at end of file diff --git a/dist/linea/basic_lock_open.js b/dist/linea/basic_lock_open.js new file mode 100644 index 000000000..bf08b41ab --- /dev/null +++ b/dist/linea/basic_lock_open.js @@ -0,0 +1,111 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_lock_open = void 0; +var basic_lock_open = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "8", + "y": "33", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "48", + "height": "30" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "8", + "y": "33", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "48", + "height": "30" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M16,33V17c0-8.837,7.163-16,16-16s16,7.163,16,16v3\r\n\t\t" + }, + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M16,33V17c0-8.837,7.163-16,16-16s16,7.163,16,16v3\r\n\t\t" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "47", + "r": "4" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "47", + "r": "4" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "51", + "x2": "32", + "y2": "55" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "51", + "x2": "32", + "y2": "55" + }, + "children": [] + }] + }] + }] +}; +exports.basic_lock_open = basic_lock_open; \ No newline at end of file diff --git a/dist/linea/basic_magic_mouse.js b/dist/linea/basic_magic_mouse.js new file mode 100644 index 000000000..2146bbf40 --- /dev/null +++ b/dist/linea/basic_magic_mouse.js @@ -0,0 +1,34 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_magic_mouse = void 0; +var basic_magic_mouse = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M48,17c0-8.836-7.164-16-16-16S16,8.164,16,17v30\r\n\tc0,8.836,7.164,16,16,16s16-7.164,16-16V17z" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "10", + "x2": "32", + "y2": "18" + }, + "children": [] + }] +}; +exports.basic_magic_mouse = basic_magic_mouse; \ No newline at end of file diff --git a/dist/linea/basic_magnifier.js b/dist/linea/basic_magnifier.js new file mode 100644 index 000000000..c70e6a064 --- /dev/null +++ b/dist/linea/basic_magnifier.js @@ -0,0 +1,93 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_magnifier = void 0; +var basic_magnifier = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "21", + "cy": "21", + "r": "20" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "21", + "cy": "21", + "r": "20" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "35", + "y1": "35", + "x2": "41", + "y2": "41" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "35", + "y1": "35", + "x2": "41", + "y2": "41" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "46.257", + "y": "37.065", + "transform": "matrix(-0.7071 0.7071 -0.7071 -0.7071 121.9178 50.5)", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "8.485", + "height": "26.87" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "46.257", + "y": "37.065", + "transform": "matrix(-0.7071 0.7071 -0.7071 -0.7071 121.9178 50.5)", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "8.485", + "height": "26.87" + }, + "children": [] + }] + }] + }] +}; +exports.basic_magnifier = basic_magnifier; \ No newline at end of file diff --git a/dist/linea/basic_magnifier_minus.js b/dist/linea/basic_magnifier_minus.js new file mode 100644 index 000000000..814bf91d2 --- /dev/null +++ b/dist/linea/basic_magnifier_minus.js @@ -0,0 +1,123 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_magnifier_minus = void 0; +var basic_magnifier_minus = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "12", + "y1": "21", + "x2": "30", + "y2": "21" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "12", + "y1": "21", + "x2": "30", + "y2": "21" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "21", + "cy": "21", + "r": "20" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "21", + "cy": "21", + "r": "20" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "35", + "y1": "35", + "x2": "41", + "y2": "41" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "35", + "y1": "35", + "x2": "41", + "y2": "41" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "46.257", + "y": "37.065", + "transform": "matrix(-0.7071 0.7071 -0.7071 -0.7071 121.9178 50.5)", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "8.485", + "height": "26.87" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "46.257", + "y": "37.065", + "transform": "matrix(-0.7071 0.7071 -0.7071 -0.7071 121.9178 50.5)", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "8.485", + "height": "26.87" + }, + "children": [] + }] + }] + }] +}; +exports.basic_magnifier_minus = basic_magnifier_minus; \ No newline at end of file diff --git a/dist/linea/basic_magnifier_plus.js b/dist/linea/basic_magnifier_plus.js new file mode 100644 index 000000000..035c3bd89 --- /dev/null +++ b/dist/linea/basic_magnifier_plus.js @@ -0,0 +1,149 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_magnifier_plus = void 0; +var basic_magnifier_plus = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "12", + "y1": "21", + "x2": "30", + "y2": "21" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "12", + "y1": "21", + "x2": "30", + "y2": "21" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "21", + "y1": "12", + "x2": "21", + "y2": "30" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "21", + "y1": "12", + "x2": "21", + "y2": "30" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "21", + "cy": "21", + "r": "20" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "21", + "cy": "21", + "r": "20" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "35", + "y1": "35", + "x2": "41", + "y2": "41" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "35", + "y1": "35", + "x2": "41", + "y2": "41" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "46.257", + "y": "37.065", + "transform": "matrix(-0.7071 0.7071 -0.7071 -0.7071 121.9178 50.5)", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "8.485", + "height": "26.87" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "46.257", + "y": "37.065", + "transform": "matrix(-0.7071 0.7071 -0.7071 -0.7071 121.9178 50.5)", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "8.485", + "height": "26.87" + }, + "children": [] + }] + }] + }] +}; +exports.basic_magnifier_plus = basic_magnifier_plus; \ No newline at end of file diff --git a/dist/linea/basic_mail.js b/dist/linea/basic_mail.js new file mode 100644 index 000000000..71fc8162d --- /dev/null +++ b/dist/linea/basic_mail.js @@ -0,0 +1,61 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_mail = void 0; +var basic_mail = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "13", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "37" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "13", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "37" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,13 32,33 63,13 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,13 32,33 63,13 \t" + }, + "children": [] + }] + }] + }] +}; +exports.basic_mail = basic_mail; \ No newline at end of file diff --git a/dist/linea/basic_mail_multiple.js b/dist/linea/basic_mail_multiple.js new file mode 100644 index 000000000..3ef1d8e17 --- /dev/null +++ b/dist/linea/basic_mail_multiple.js @@ -0,0 +1,44 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_mail_multiple = void 0; +var basic_mail_multiple = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "18", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "52", + "height": "32" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "9.887,16 9.887,9 63,9 63,41 55,41 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "0.887,18 27,33.062 53,18 " + }, + "children": [] + }] +}; +exports.basic_mail_multiple = basic_mail_multiple; \ No newline at end of file diff --git a/dist/linea/basic_mail_open.js b/dist/linea/basic_mail_open.js new file mode 100644 index 000000000..b4ba11165 --- /dev/null +++ b/dist/linea/basic_mail_open.js @@ -0,0 +1,75 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_mail_open = void 0; +var basic_mail_open = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,26 32,45.434 63,26 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,26 32,45.434 63,26 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11,32 11,1 53,1 53,32 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11,32 11,1 53,1 53,32 \t" + }, + "children": [] + }] + }] + }] +}; +exports.basic_mail_open = basic_mail_open; \ No newline at end of file diff --git a/dist/linea/basic_mail_open_text.js b/dist/linea/basic_mail_open_text.js new file mode 100644 index 000000000..9b94aa1f3 --- /dev/null +++ b/dist/linea/basic_mail_open_text.js @@ -0,0 +1,161 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_mail_open_text = void 0; +var basic_mail_open_text = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "36", + "y1": "9", + "x2": "45", + "y2": "9" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "36", + "y1": "9", + "x2": "45", + "y2": "9" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "19", + "y1": "17", + "x2": "45", + "y2": "17" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "19", + "y1": "17", + "x2": "45", + "y2": "17" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "19", + "y1": "25", + "x2": "45", + "y2": "25" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "19", + "y1": "25", + "x2": "45", + "y2": "25" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,26 32,45.434 63,26 \t\t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,26 32,45.434 63,26 \t\t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t\t63,26 52.666,21.667 \t\t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t\t63,26 52.666,21.667 \t\t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11,32 11,1 53,1 53,32 \t\t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11,32 11,1 53,1 53,32 \t\t" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.basic_mail_open_text = basic_mail_open_text; \ No newline at end of file diff --git a/dist/linea/basic_male.js b/dist/linea/basic_male.js new file mode 100644 index 000000000..e2168bf44 --- /dev/null +++ b/dist/linea/basic_male.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_male = void 0; +var basic_male = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "25", + "cy": "39", + "r": "24" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "63", + "y1": "1", + "x2": "42", + "y2": "22" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "45,1 63,1 63,19 \r\n\t" + }, + "children": [] + }] +}; +exports.basic_male = basic_male; \ No newline at end of file diff --git a/dist/linea/basic_map.js b/dist/linea/basic_map.js new file mode 100644 index 000000000..6672822b1 --- /dev/null +++ b/dist/linea/basic_map.js @@ -0,0 +1,103 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_map = void 0; +var basic_map = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,59 22,51 42,59 63,51 63,5 42,13 22,5 \r\n\t\t1,13 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,59 22,51 42,59 63,51 63,5 42,13 22,5 \r\n\t\t1,13 \t" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "5", + "x2": "22", + "y2": "51" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "5", + "x2": "22", + "y2": "51" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "42", + "y1": "13", + "x2": "42", + "y2": "59" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "42", + "y1": "13", + "x2": "42", + "y2": "59" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.basic_map = basic_map; \ No newline at end of file diff --git a/dist/linea/basic_message.js b/dist/linea/basic_message.js new file mode 100644 index 000000000..38e0f9d1e --- /dev/null +++ b/dist/linea/basic_message.js @@ -0,0 +1,21 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_message = void 0; +var basic_message = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "32,47 63,47 63,5 1,5 1,47 18,47 18,59 " + }, + "children": [] + }] +}; +exports.basic_message = basic_message; \ No newline at end of file diff --git a/dist/linea/basic_message_multiple.js b/dist/linea/basic_message_multiple.js new file mode 100644 index 000000000..24b7e7209 --- /dev/null +++ b/dist/linea/basic_message_multiple.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_message_multiple = void 0; +var basic_message_multiple = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "26,49.042 54.963,49.042 54.963,11.042 \r\n\t1,11.042 1,49.042 14,49.042 14,59.486 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "57,41.042 62.963,41.042 62.963,3.042 \r\n\t9,3.042 9,9 " + }, + "children": [] + }] +}; +exports.basic_message_multiple = basic_message_multiple; \ No newline at end of file diff --git a/dist/linea/basic_message_txt.js b/dist/linea/basic_message_txt.js new file mode 100644 index 000000000..6f29b861a --- /dev/null +++ b/dist/linea/basic_message_txt.js @@ -0,0 +1,60 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_message_txt = void 0; +var basic_message_txt = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "10", + "y1": "16", + "x2": "54", + "y2": "16" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "10", + "y1": "26", + "x2": "54", + "y2": "26" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "10", + "y1": "36", + "x2": "54", + "y2": "36" + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "32,47 63,47 63,5 1,5 1,47 18,47 18,59 " + }, + "children": [] + }] +}; +exports.basic_message_txt = basic_message_txt; \ No newline at end of file diff --git a/dist/linea/basic_mixer2.js b/dist/linea/basic_mixer2.js new file mode 100644 index 000000000..406c1ec19 --- /dev/null +++ b/dist/linea/basic_mixer2.js @@ -0,0 +1,125 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_mixer2 = void 0; +var basic_mixer2 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "12", + "y1": "19", + "x2": "12", + "y2": "64" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "52", + "y1": "0", + "x2": "52", + "y2": "45" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "38", + "x2": "32", + "y2": "64" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "0", + "x2": "32", + "y2": "26" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "12", + "cy": "13", + "r": "6" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "52", + "cy": "51", + "r": "6" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "6" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "12", + "y1": "0", + "x2": "12", + "y2": "7" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "52", + "y1": "57", + "x2": "52", + "y2": "64" + }, + "children": [] + }] +}; +exports.basic_mixer2 = basic_mixer2; \ No newline at end of file diff --git a/dist/linea/basic_mouse.js b/dist/linea/basic_mouse.js new file mode 100644 index 000000000..fa8a0a8a1 --- /dev/null +++ b/dist/linea/basic_mouse.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_mouse = void 0; +var basic_mouse = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M48,17c0-8.836-7.164-16-16-16S16,8.164,16,17v30\r\n\tc0,8.836,7.164,16,16,16s16-7.164,16-16V17z" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "1", + "x2": "32", + "y2": "21" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "16", + "y1": "21", + "x2": "48", + "y2": "21" + }, + "children": [] + }] +}; +exports.basic_mouse = basic_mouse; \ No newline at end of file diff --git a/dist/linea/basic_notebook.js b/dist/linea/basic_notebook.js new file mode 100644 index 000000000..c49283953 --- /dev/null +++ b/dist/linea/basic_notebook.js @@ -0,0 +1,128 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_notebook = void 0; +var basic_notebook = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "11", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "42", + "height": "62" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "41", + "y1": "1", + "x2": "41", + "y2": "62" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "15", + "y1": "16", + "x2": "7", + "y2": "16" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "15", + "y1": "8", + "x2": "7", + "y2": "8" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "15", + "y1": "24", + "x2": "7", + "y2": "24" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "15", + "y1": "32", + "x2": "7", + "y2": "32" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "15", + "y1": "40", + "x2": "7", + "y2": "40" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "15", + "y1": "48", + "x2": "7", + "y2": "48" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "15", + "y1": "56", + "x2": "7", + "y2": "56" + }, + "children": [] + }] +}; +exports.basic_notebook = basic_notebook; \ No newline at end of file diff --git a/dist/linea/basic_notebook_pen.js b/dist/linea/basic_notebook_pen.js new file mode 100644 index 000000000..8aa9b58c8 --- /dev/null +++ b/dist/linea/basic_notebook_pen.js @@ -0,0 +1,148 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_notebook_pen = void 0; +var basic_notebook_pen = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "63,3 63,53 59,61 55,53 55,3 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "55,7 51,7 51,17 " + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "4", + "y": "3", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "40", + "height": "58" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "34", + "y1": "3", + "x2": "34", + "y2": "60" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "8", + "y1": "16", + "x2": "0", + "y2": "16" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "8", + "y1": "8", + "x2": "0", + "y2": "8" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "8", + "y1": "24", + "x2": "0", + "y2": "24" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "8", + "y1": "32", + "x2": "0", + "y2": "32" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "8", + "y1": "40", + "x2": "0", + "y2": "40" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "8", + "y1": "48", + "x2": "0", + "y2": "48" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "8", + "y1": "56", + "x2": "0", + "y2": "56" + }, + "children": [] + }] +}; +exports.basic_notebook_pen = basic_notebook_pen; \ No newline at end of file diff --git a/dist/linea/basic_notebook_pencil.js b/dist/linea/basic_notebook_pencil.js new file mode 100644 index 000000000..3a1d5fa8b --- /dev/null +++ b/dist/linea/basic_notebook_pencil.js @@ -0,0 +1,151 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_notebook_pencil = void 0; +var basic_notebook_pencil = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "4", + "y": "3", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "40", + "height": "58" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "34", + "y1": "3", + "x2": "34", + "y2": "60" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "8", + "y1": "16", + "x2": "0", + "y2": "16" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "8", + "y1": "8", + "x2": "0", + "y2": "8" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "8", + "y1": "24", + "x2": "0", + "y2": "24" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "8", + "y1": "32", + "x2": "0", + "y2": "32" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "8", + "y1": "40", + "x2": "0", + "y2": "40" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "8", + "y1": "48", + "x2": "0", + "y2": "48" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "8", + "y1": "56", + "x2": "0", + "y2": "56" + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "55,1 55,54 59,62 63,54 63,1 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "55", + "y1": "11", + "x2": "63", + "y2": "11" + }, + "children": [] + }] +}; +exports.basic_notebook_pencil = basic_notebook_pencil; \ No newline at end of file diff --git a/dist/linea/basic_paperplane.js b/dist/linea/basic_paperplane.js new file mode 100644 index 000000000..dfa261923 --- /dev/null +++ b/dist/linea/basic_paperplane.js @@ -0,0 +1,33 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_paperplane = void 0; +var basic_paperplane = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "1,30 63,1 23,41 \r\n\t" + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "34,63 63,1 23,41 \r\n\t" + }, + "children": [] + }] +}; +exports.basic_paperplane = basic_paperplane; \ No newline at end of file diff --git a/dist/linea/basic_pencil_ruler.js b/dist/linea/basic_pencil_ruler.js new file mode 100644 index 000000000..2e19148a4 --- /dev/null +++ b/dist/linea/basic_pencil_ruler.js @@ -0,0 +1,119 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_pencil_ruler = void 0; +var basic_pencil_ruler = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,63 1,2 62,63 " + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "14,54 14,30 38,54 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "8", + "y1": "22", + "x2": "2", + "y2": "22" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "6", + "y1": "30", + "x2": "2", + "y2": "30" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "8", + "y1": "38", + "x2": "2", + "y2": "38" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "6", + "y1": "46", + "x2": "2", + "y2": "46" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "8", + "y1": "54", + "x2": "2", + "y2": "54" + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "25,1 19,7 55,43 63,45 61,37 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "25", + "y1": "13", + "x2": "31", + "y2": "7" + }, + "children": [] + }] +}; +exports.basic_pencil_ruler = basic_pencil_ruler; \ No newline at end of file diff --git a/dist/linea/basic_photo.js b/dist/linea/basic_photo.js new file mode 100644 index 000000000..ad57948c9 --- /dev/null +++ b/dist/linea/basic_photo.js @@ -0,0 +1,111 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_photo = void 0; +var basic_photo = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "46,20 38,10 26,10 18,20 1,20 1,52 63,52 \r\n\t\t63,20 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "46,20 38,10 26,10 18,20 1,20 1,52 63,52 \r\n\t\t63,20 \t" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "36", + "r": "8" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "36", + "r": "8" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "9", + "y1": "20", + "x2": "9", + "y2": "52" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "9", + "y1": "20", + "x2": "9", + "y2": "52" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "54", + "y1": "28", + "x2": "54", + "y2": "28" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "54", + "y1": "28", + "x2": "54", + "y2": "28" + }, + "children": [] + }] + }] + }] +}; +exports.basic_photo = basic_photo; \ No newline at end of file diff --git a/dist/linea/basic_picture.js b/dist/linea/basic_picture.js new file mode 100644 index 000000000..0721a860a --- /dev/null +++ b/dist/linea/basic_picture.js @@ -0,0 +1,85 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_picture = void 0; +var basic_picture = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "11", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "42" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "11", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "42" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,47 24,27 36,39 42,31 63,49 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,47 24,27 36,39 42,31 63,49 \t" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "51", + "cy": "22", + "r": "5" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "51", + "cy": "22", + "r": "5" + }, + "children": [] + }] + }] + }] +}; +exports.basic_picture = basic_picture; \ No newline at end of file diff --git a/dist/linea/basic_picture_multiple.js b/dist/linea/basic_picture_multiple.js new file mode 100644 index 000000000..bde62a1b9 --- /dev/null +++ b/dist/linea/basic_picture_multiple.js @@ -0,0 +1,73 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_picture_multiple = void 0; +var basic_picture_multiple = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "16", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "52", + "height": "40" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "16", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "52", + "height": "40" + }, + "children": [] + }] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "10,14 10,8 63,8 63,48 55,48 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,46 15,32 29,48 39,42 53,54 " + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "40", + "cy": "29", + "r": "5" + }, + "children": [] + }] +}; +exports.basic_picture_multiple = basic_picture_multiple; \ No newline at end of file diff --git a/dist/linea/basic_pin1.js b/dist/linea/basic_pin1.js new file mode 100644 index 000000000..6e9671f15 --- /dev/null +++ b/dist/linea/basic_pin1.js @@ -0,0 +1,46 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_pin1 = void 0; +var basic_pin1 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "16", + "r": "15" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M22.083,16c0-5.477,4.44-9.917,9.917-9.917" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "64", + "x2": "32", + "y2": "31" + }, + "children": [] + }] +}; +exports.basic_pin1 = basic_pin1; \ No newline at end of file diff --git a/dist/linea/basic_pin2.js b/dist/linea/basic_pin2.js new file mode 100644 index 000000000..b718f581b --- /dev/null +++ b/dist/linea/basic_pin2.js @@ -0,0 +1,44 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_pin2 = void 0; +var basic_pin2 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "64", + "x2": "32", + "y2": "36" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "32,1 22,1 22,5 27,9 25,26 16,30 15,36 \r\n\t32,36 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "32,1 42,1 42,5 37,9 39,26 48,30 49,36 \r\n\t32,36 " + }, + "children": [] + }] +}; +exports.basic_pin2 = basic_pin2; \ No newline at end of file diff --git a/dist/linea/basic_postcard.js b/dist/linea/basic_postcard.js new file mode 100644 index 000000000..412fffd47 --- /dev/null +++ b/dist/linea/basic_postcard.js @@ -0,0 +1,106 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_postcard = void 0; +var basic_postcard = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "13", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "41" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "13", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "41" + }, + "children": [] + }] + }] + }, { + "name": "rect", + "attribs": { + "x": "49", + "y": "19", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "8", + "height": "10" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "39", + "y1": "18", + "x2": "39", + "y2": "49" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "6", + "y1": "21", + "x2": "34", + "y2": "21" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "6", + "y1": "27", + "x2": "30", + "y2": "27" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "6", + "y1": "33", + "x2": "32", + "y2": "33" + }, + "children": [] + }] +}; +exports.basic_postcard = basic_postcard; \ No newline at end of file diff --git a/dist/linea/basic_postcard_multiple.js b/dist/linea/basic_postcard_multiple.js new file mode 100644 index 000000000..1e89ece63 --- /dev/null +++ b/dist/linea/basic_postcard_multiple.js @@ -0,0 +1,130 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_postcard_multiple = void 0; +var basic_postcard_multiple = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "20", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "53", + "height": "34" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "20", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "53", + "height": "34" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "10,16.999 10,11 63,11 63,45 57,45 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "10,16.999 10,11 63,11 63,45 57,45 \t" + }, + "children": [] + }] + }] + }, { + "name": "rect", + "attribs": { + "x": "42", + "y": "25", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "7", + "height": "8" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "33", + "y1": "24", + "x2": "33", + "y2": "50" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "5", + "y1": "27", + "x2": "29", + "y2": "27" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "5", + "y1": "32", + "x2": "26", + "y2": "32" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "5", + "y1": "37", + "x2": "27", + "y2": "37" + }, + "children": [] + }] +}; +exports.basic_postcard_multiple = basic_postcard_multiple; \ No newline at end of file diff --git a/dist/linea/basic_printer.js b/dist/linea/basic_printer.js new file mode 100644 index 000000000..33d6c462d --- /dev/null +++ b/dist/linea/basic_printer.js @@ -0,0 +1,247 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_printer = void 0; +var basic_printer = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "16", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "32", + "height": "19" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "16", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "32", + "height": "19" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M16.5,52" + }, + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M16.5,52" + }, + "children": [] + }] + }] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "16,52 1,52 1,20 63,20 63,52 48,52 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "16,52 1,52 1,20 63,20 63,52 48,52 \t" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "16", + "y": "39", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "32", + "height": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "16", + "y": "39", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "32", + "height": "24" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "6", + "y1": "27", + "x2": "10", + "y2": "27" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "6", + "y1": "27", + "x2": "10", + "y2": "27" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "12", + "y1": "27", + "x2": "16", + "y2": "27" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "12", + "y1": "27", + "x2": "16", + "y2": "27" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "47", + "x2": "42", + "y2": "47" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "47", + "x2": "42", + "y2": "47" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "55", + "x2": "42", + "y2": "55" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "55", + "x2": "42", + "y2": "55" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M16,52" + }, + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M16,52" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.basic_printer = basic_printer; \ No newline at end of file diff --git a/dist/linea/basic_question.js b/dist/linea/basic_question.js new file mode 100644 index 000000000..a0d4eb021 --- /dev/null +++ b/dist/linea/basic_question.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_question = void 0; +var basic_question = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "30", + "y1": "43", + "x2": "30", + "y2": "47" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M24,21c0-3,2-5,8-5c5,0,8,3,8,7s-6,7-6,7s-4,2-4,8v1\r\n\t" + }, + "children": [] + }] +}; +exports.basic_question = basic_question; \ No newline at end of file diff --git a/dist/linea/basic_rss.js b/dist/linea/basic_rss.js new file mode 100644 index 000000000..98202858d --- /dev/null +++ b/dist/linea/basic_rss.js @@ -0,0 +1,79 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_rss = void 0; +var basic_rss = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "d": "M63.051,56\r\n\tc0-13.416-4.804-25.711-12.786-35.256" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "d": "M50.265,20.744\r\n\tC40.177,8.677,25.01,1,8.051,1" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "d": "M51.769,56\r\n\tc0-24.145-19.574-43.718-43.718-43.718" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "d": "M40.486,56\r\n\tc0-17.913-14.523-32.436-32.436-32.436" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "d": "M29.205,56\r\n\tc0-11.684-9.472-21.154-21.154-21.154" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "cx": "8.051", + "cy": "56", + "r": "7.051" + }, + "children": [] + }] +}; +exports.basic_rss = basic_rss; \ No newline at end of file diff --git a/dist/linea/basic_server.js b/dist/linea/basic_server.js new file mode 100644 index 000000000..774d5496a --- /dev/null +++ b/dist/linea/basic_server.js @@ -0,0 +1,46 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_server = void 0; +var basic_server = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "5,41 11,1 53,1 59,41 " + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "5", + "y": "41", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "54", + "height": "22" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "48", + "cy": "52", + "r": "3" + }, + "children": [] + }] +}; +exports.basic_server = basic_server; \ No newline at end of file diff --git a/dist/linea/basic_server2.js b/dist/linea/basic_server2.js new file mode 100644 index 000000000..7b2f2c02c --- /dev/null +++ b/dist/linea/basic_server2.js @@ -0,0 +1,86 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_server2 = void 0; +var basic_server2 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "d": "M59,56\r\n\tc0,3.866-11.641,7-26,7S7,59.866,7,56" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "d": "M59,40\r\n\tc0,3.866-11.641,7-26,7S7,43.866,7,40" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "d": "M59,24\r\n\tc0,3.866-11.641,7-26,7S7,27.866,7,24" + }, + "children": [] + }, { + "name": "ellipse", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "cx": "33", + "cy": "8", + "rx": "26", + "ry": "7" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "x1": "7", + "y1": "8", + "x2": "7", + "y2": "56" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "x1": "59", + "y1": "8", + "x2": "59", + "y2": "56" + }, + "children": [] + }] +}; +exports.basic_server2 = basic_server2; \ No newline at end of file diff --git a/dist/linea/basic_server_cloud.js b/dist/linea/basic_server_cloud.js new file mode 100644 index 000000000..c2a6e5acb --- /dev/null +++ b/dist/linea/basic_server_cloud.js @@ -0,0 +1,56 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_server_cloud = void 0; +var basic_server_cloud = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "5,41 11,1 53,1 59,41 " + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "5", + "y": "41", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "54", + "height": "22" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "48", + "cy": "52", + "r": "3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M34.887,27H39c1.887,0,3-1,3-3c0-1-1-3-3-3\r\n\tc0-3.604-3.277-6-7-6c-3.295,0-6.413,2.978-7,6l0,0c-2,0-3,2-3,3c0,2,1,3,3,3h10.434" + }, + "children": [] + }] +}; +exports.basic_server_cloud = basic_server_cloud; \ No newline at end of file diff --git a/dist/linea/basic_server_download.js b/dist/linea/basic_server_download.js new file mode 100644 index 000000000..735d0dd59 --- /dev/null +++ b/dist/linea/basic_server_download.js @@ -0,0 +1,87 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_server_download = void 0; +var basic_server_download = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "5,41 11,1 53,1 59,41 " + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "5", + "y": "41", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "54", + "height": "22" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "48", + "cy": "52", + "r": "3" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "40,23 32,31 \r\n\t24,23 " + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "31", + "x2": "32", + "y2": "11" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "31", + "x2": "32", + "y2": "11" + }, + "children": [] + }] + }] + }] +}; +exports.basic_server_download = basic_server_download; \ No newline at end of file diff --git a/dist/linea/basic_server_upload.js b/dist/linea/basic_server_upload.js new file mode 100644 index 000000000..91b84e0a6 --- /dev/null +++ b/dist/linea/basic_server_upload.js @@ -0,0 +1,87 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_server_upload = void 0; +var basic_server_upload = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "5,41 11,1 53,1 59,41 " + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "5", + "y": "41", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "54", + "height": "22" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "48", + "cy": "52", + "r": "3" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "23.998,20 \r\n\t31.998,12 39.998,20 " + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "31.998", + "y1": "12", + "x2": "31.998", + "y2": "32" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "31.998", + "y1": "12", + "x2": "31.998", + "y2": "32" + }, + "children": [] + }] + }] + }] +}; +exports.basic_server_upload = basic_server_upload; \ No newline at end of file diff --git a/dist/linea/basic_settings.js b/dist/linea/basic_settings.js new file mode 100644 index 000000000..892920058 --- /dev/null +++ b/dist/linea/basic_settings.js @@ -0,0 +1,71 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_settings = void 0; +var basic_settings = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "36", + "y1": "34", + "x2": "41", + "y2": "39" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "46.257", + "y": "35.065", + "transform": "matrix(-0.7071 0.7071 -0.7071 -0.7071 120.5036 47.0858)", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "8.485", + "height": "26.87" + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,16 18,10 8,4 6,6 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "28", + "y1": "26", + "x2": "15", + "y2": "13" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M58,12.5l-8,3.75l-4-4.125l3.5-8.062l0,0\r\n\tC39.5,4.062,37,9,37,14v4L3.5,52l-1.75,6l2.125,2l6.062-1.5L44,25h4C53,25,58,22.5,58,12.5L58,12.5z" + }, + "children": [] + }] +}; +exports.basic_settings = basic_settings; \ No newline at end of file diff --git a/dist/linea/basic_share.js b/dist/linea/basic_share.js new file mode 100644 index 000000000..460d6ad84 --- /dev/null +++ b/dist/linea/basic_share.js @@ -0,0 +1,73 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_share = void 0; +var basic_share = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "51", + "cy": "13", + "r": "12" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "11", + "cy": "42", + "r": "10" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "48", + "cy": "55", + "r": "8" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "40", + "y1": "54", + "x2": "20", + "y2": "46" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "19", + "y1": "35", + "x2": "41", + "y2": "21" + }, + "children": [] + }] +}; +exports.basic_share = basic_share; \ No newline at end of file diff --git a/dist/linea/basic_sheet.js b/dist/linea/basic_sheet.js new file mode 100644 index 000000000..4af05dc25 --- /dev/null +++ b/dist/linea/basic_sheet.js @@ -0,0 +1,55 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_sheet = void 0; +var basic_sheet = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,1 55,1 55,63 9,63 9,15 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,1 55,1 55,63 9,63 9,15 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "9,15 23,15 23,1 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "9,15 23,15 23,1 \t" + }, + "children": [] + }] + }] + }] +}; +exports.basic_sheet = basic_sheet; \ No newline at end of file diff --git a/dist/linea/basic_sheet_pen.js b/dist/linea/basic_sheet_pen.js new file mode 100644 index 000000000..11017ea94 --- /dev/null +++ b/dist/linea/basic_sheet_pen.js @@ -0,0 +1,116 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_sheet_pen = void 0; +var basic_sheet_pen = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "63,3 63,53 59,61 55,53 55,3 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "55,7 51,7 51,17 " + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "42,15 42,61 1,61 1,3 30,3 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "8", + "y1": "13", + "x2": "20", + "y2": "13" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "8", + "y1": "23", + "x2": "35", + "y2": "23" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "8", + "y1": "31", + "x2": "35", + "y2": "31" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "8", + "y1": "39", + "x2": "35", + "y2": "39" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "8", + "y1": "47", + "x2": "35", + "y2": "47" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "42,15 30,15 30,3 " + }, + "children": [] + }] +}; +exports.basic_sheet_pen = basic_sheet_pen; \ No newline at end of file diff --git a/dist/linea/basic_sheet_pencil.js b/dist/linea/basic_sheet_pencil.js new file mode 100644 index 000000000..d1d955fa3 --- /dev/null +++ b/dist/linea/basic_sheet_pencil.js @@ -0,0 +1,119 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_sheet_pencil = void 0; +var basic_sheet_pencil = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "42,15 42,61 1,61 1,3 30,3 " + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "55,1 55,54 59,62 63,54 63,1 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "8", + "y1": "13", + "x2": "20", + "y2": "13" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "8", + "y1": "23", + "x2": "35", + "y2": "23" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "8", + "y1": "31", + "x2": "35", + "y2": "31" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "8", + "y1": "39", + "x2": "35", + "y2": "39" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "8", + "y1": "47", + "x2": "35", + "y2": "47" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "42,15 30,15 30,3 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "55", + "y1": "11", + "x2": "63", + "y2": "11" + }, + "children": [] + }] +}; +exports.basic_sheet_pencil = basic_sheet_pencil; \ No newline at end of file diff --git a/dist/linea/basic_signs.js b/dist/linea/basic_signs.js new file mode 100644 index 000000000..a2265740f --- /dev/null +++ b/dist/linea/basic_signs.js @@ -0,0 +1,83 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_signs = void 0; +var basic_signs = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "55,24 22,24 22,12 55,12 62,18 " + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "9,28 42,28 42,40 9,40 2,34 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "40", + "x2": "32", + "y2": "64" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "28", + "x2": "32", + "y2": "24" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "12", + "x2": "32", + "y2": "7" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "24", + "y1": "63", + "x2": "40", + "y2": "63" + }, + "children": [] + }] +}; +exports.basic_signs = basic_signs; \ No newline at end of file diff --git a/dist/linea/basic_smartphone.js b/dist/linea/basic_smartphone.js new file mode 100644 index 000000000..261ed8ebb --- /dev/null +++ b/dist/linea/basic_smartphone.js @@ -0,0 +1,145 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_smartphone = void 0; +var basic_smartphone = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "16", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "32", + "height": "62" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "16", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "32", + "height": "62" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "28", + "y1": "5", + "x2": "36", + "y2": "5" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "28", + "y1": "5", + "x2": "36", + "y2": "5" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "16", + "y1": "51", + "x2": "48", + "y2": "51" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "16", + "y1": "51", + "x2": "48", + "y2": "51" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "16", + "y1": "9", + "x2": "48", + "y2": "9" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "16", + "y1": "9", + "x2": "48", + "y2": "9" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "57", + "r": "2" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "57", + "r": "2" + }, + "children": [] + }] + }] + }] +}; +exports.basic_smartphone = basic_smartphone; \ No newline at end of file diff --git a/dist/linea/basic_spades.js b/dist/linea/basic_spades.js new file mode 100644 index 000000000..9662a4525 --- /dev/null +++ b/dist/linea/basic_spades.js @@ -0,0 +1,21 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_spades = void 0; +var basic_spades = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M32,63h9c-7,0-7-19-7-19v-6c0,7.671,6,13,13,13\r\n\tc8.334,0,14-7.329,14-15C61,17.48,32,1,32,1S3,17.48,3,36c0,7.671,6.667,15,15,15c7,0,11.395-5.87,12-13v6c0,0,0,19-7,19H32" + }, + "children": [] + }] +}; +exports.basic_spades = basic_spades; \ No newline at end of file diff --git a/dist/linea/basic_spread.js b/dist/linea/basic_spread.js new file mode 100644 index 000000000..0a2b36b99 --- /dev/null +++ b/dist/linea/basic_spread.js @@ -0,0 +1,34 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_spread = void 0; +var basic_spread = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,6 1,54 32,58 63,54 63,6 32,10 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "58", + "x2": "32", + "y2": "10" + }, + "children": [] + }] +}; +exports.basic_spread = basic_spread; \ No newline at end of file diff --git a/dist/linea/basic_spread_bookmark.js b/dist/linea/basic_spread_bookmark.js new file mode 100644 index 000000000..ed88f699f --- /dev/null +++ b/dist/linea/basic_spread_bookmark.js @@ -0,0 +1,44 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_spread_bookmark = void 0; +var basic_spread_bookmark = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,6 1,54 32,58 63,54 63,6 32,10 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "58", + "x2": "32", + "y2": "10" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "43,8 43,27 47,25 51,27 51,7 " + }, + "children": [] + }] +}; +exports.basic_spread_bookmark = basic_spread_bookmark; \ No newline at end of file diff --git a/dist/linea/basic_spread_text.js b/dist/linea/basic_spread_text.js new file mode 100644 index 000000000..2fa1f9840 --- /dev/null +++ b/dist/linea/basic_spread_text.js @@ -0,0 +1,269 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_spread_text = void 0; +var basic_spread_text = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,6 1,54 32,58 63,54 63,6 32,10 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,6 1,54 32,58 63,54 63,6 32,10 \t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "58", + "x2": "32", + "y2": "10" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "58", + "x2": "32", + "y2": "10" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "7", + "y1": "16", + "x2": "26", + "y2": "18" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "7", + "y1": "16", + "x2": "26", + "y2": "18" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "7", + "y1": "26", + "x2": "26", + "y2": "28" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "7", + "y1": "26", + "x2": "26", + "y2": "28" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "7", + "y1": "36", + "x2": "26", + "y2": "38" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "7", + "y1": "36", + "x2": "26", + "y2": "38" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "7", + "y1": "46", + "x2": "26", + "y2": "48" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "7", + "y1": "46", + "x2": "26", + "y2": "48" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "57", + "y1": "16", + "x2": "38", + "y2": "18" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "57", + "y1": "16", + "x2": "38", + "y2": "18" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "57", + "y1": "26", + "x2": "38", + "y2": "28" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "57", + "y1": "26", + "x2": "38", + "y2": "28" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "57", + "y1": "36", + "x2": "38", + "y2": "38" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "57", + "y1": "36", + "x2": "38", + "y2": "38" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "57", + "y1": "46", + "x2": "38", + "y2": "48" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "57", + "y1": "46", + "x2": "38", + "y2": "48" + }, + "children": [] + }] + }] + }] +}; +exports.basic_spread_text = basic_spread_text; \ No newline at end of file diff --git a/dist/linea/basic_spread_text_bookmark.js b/dist/linea/basic_spread_text_bookmark.js new file mode 100644 index 000000000..5a938a269 --- /dev/null +++ b/dist/linea/basic_spread_text_bookmark.js @@ -0,0 +1,122 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_spread_text_bookmark = void 0; +var basic_spread_text_bookmark = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,6 1,54 32,58 63,54 63,6 32,10 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "58", + "x2": "32", + "y2": "10" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "43,8 43,27 47,25 51,27 51,7 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "7", + "y1": "16", + "x2": "26", + "y2": "18" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "7", + "y1": "26", + "x2": "26", + "y2": "28" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "7", + "y1": "36", + "x2": "26", + "y2": "38" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "7", + "y1": "46", + "x2": "26", + "y2": "48" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "57", + "y1": "36", + "x2": "38", + "y2": "38" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "57", + "y1": "46", + "x2": "38", + "y2": "48" + }, + "children": [] + }] +}; +exports.basic_spread_text_bookmark = basic_spread_text_bookmark; \ No newline at end of file diff --git a/dist/linea/basic_star.js b/dist/linea/basic_star.js new file mode 100644 index 000000000..9094eddb7 --- /dev/null +++ b/dist/linea/basic_star.js @@ -0,0 +1,21 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_star = void 0; +var basic_star = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "32,47 12,62 20,38 2,24 24,24 32,1 40,24 \r\n\t62,24 44,38 52,62 " + }, + "children": [] + }] +}; +exports.basic_star = basic_star; \ No newline at end of file diff --git a/dist/linea/basic_tablet.js b/dist/linea/basic_tablet.js new file mode 100644 index 000000000..8b586cf8e --- /dev/null +++ b/dist/linea/basic_tablet.js @@ -0,0 +1,93 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_tablet = void 0; +var basic_tablet = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "11", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "42", + "height": "62" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "11", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "42", + "height": "62" + }, + "children": [] + }] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "28", + "y1": "5", + "x2": "36", + "y2": "5" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "11", + "y1": "51", + "x2": "53", + "y2": "51" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "11", + "y1": "9", + "x2": "53", + "y2": "9" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "57", + "r": "2" + }, + "children": [] + }] +}; +exports.basic_tablet = basic_tablet; \ No newline at end of file diff --git a/dist/linea/basic_target.js b/dist/linea/basic_target.js new file mode 100644 index 000000000..76eb6aa61 --- /dev/null +++ b/dist/linea/basic_target.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_target = void 0; +var basic_target = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "22.999" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "15" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "6.999" + }, + "children": [] + }] +}; +exports.basic_target = basic_target; \ No newline at end of file diff --git a/dist/linea/basic_todo.js b/dist/linea/basic_todo.js new file mode 100644 index 000000000..626d25e41 --- /dev/null +++ b/dist/linea/basic_todo.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_todo = void 0; +var basic_todo = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,8 10,8 10,63 54,63 54,8 41,8 " + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "36,5 36,1 28,1 28,5 24,5 22,13 42,13 40,5 \r\n\t" + }, + "children": [] + }] +}; +exports.basic_todo = basic_todo; \ No newline at end of file diff --git a/dist/linea/basic_todo_pencil.js b/dist/linea/basic_todo_pencil.js new file mode 100644 index 000000000..770186bb1 --- /dev/null +++ b/dist/linea/basic_todo_pencil.js @@ -0,0 +1,54 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_todo_pencil = void 0; +var basic_todo_pencil = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "55,1 55,54 59,62 63,54 63,1 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "55", + "y1": "11", + "x2": "63", + "y2": "11" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "14,8 1,8 1,63 45,63 45,8 32,8 " + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "27,5 27,1 19,1 19,5 15,5 13,13 33,13 31,5 \r\n\t" + }, + "children": [] + }] +}; +exports.basic_todo_pencil = basic_todo_pencil; \ No newline at end of file diff --git a/dist/linea/basic_todo_txt.js b/dist/linea/basic_todo_txt.js new file mode 100644 index 000000000..282abdd2c --- /dev/null +++ b/dist/linea/basic_todo_txt.js @@ -0,0 +1,135 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_todo_txt = void 0; +var basic_todo_txt = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "25", + "y1": "24", + "x2": "47", + "y2": "24" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "25", + "y1": "34", + "x2": "47", + "y2": "34" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "25", + "y1": "44", + "x2": "47", + "y2": "44" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "25", + "y1": "54", + "x2": "47", + "y2": "54" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "21", + "y1": "24", + "x2": "17", + "y2": "24" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "21", + "y1": "34", + "x2": "17", + "y2": "34" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "21", + "y1": "44", + "x2": "17", + "y2": "44" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "21", + "y1": "54", + "x2": "17", + "y2": "54" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,8 10,8 10,63 54,63 54,8 41,8 " + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "36,5 36,1 28,1 28,5 24,5 22,13 42,13 40,5 \r\n\t" + }, + "children": [] + }] +}; +exports.basic_todo_txt = basic_todo_txt; \ No newline at end of file diff --git a/dist/linea/basic_todolist_pen.js b/dist/linea/basic_todolist_pen.js new file mode 100644 index 000000000..ebba7ebd5 --- /dev/null +++ b/dist/linea/basic_todolist_pen.js @@ -0,0 +1,155 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_todolist_pen = void 0; +var basic_todolist_pen = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "16", + "y1": "24", + "x2": "38", + "y2": "24" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "16", + "y1": "34", + "x2": "38", + "y2": "34" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "16", + "y1": "44", + "x2": "38", + "y2": "44" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "16", + "y1": "54", + "x2": "38", + "y2": "54" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "12", + "y1": "24", + "x2": "8", + "y2": "24" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "12", + "y1": "34", + "x2": "8", + "y2": "34" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "12", + "y1": "44", + "x2": "8", + "y2": "44" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "12", + "y1": "54", + "x2": "8", + "y2": "54" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "14,8 1,8 1,63 45,63 45,8 32,8 " + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "27,5 27,1 19,1 19,5 15,5 13,13 33,13 31,5 \r\n\t" + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "63,3 63,53 59,61 55,53 55,3 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "55,7 51,7 51,17 " + }, + "children": [] + }] +}; +exports.basic_todolist_pen = basic_todolist_pen; \ No newline at end of file diff --git a/dist/linea/basic_todolist_pencil.js b/dist/linea/basic_todolist_pencil.js new file mode 100644 index 000000000..1b456f6c5 --- /dev/null +++ b/dist/linea/basic_todolist_pencil.js @@ -0,0 +1,158 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_todolist_pencil = void 0; +var basic_todolist_pencil = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "16", + "y1": "24", + "x2": "38", + "y2": "24" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "16", + "y1": "34", + "x2": "38", + "y2": "34" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "16", + "y1": "44", + "x2": "38", + "y2": "44" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "16", + "y1": "54", + "x2": "38", + "y2": "54" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "12", + "y1": "24", + "x2": "8", + "y2": "24" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "12", + "y1": "34", + "x2": "8", + "y2": "34" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "12", + "y1": "44", + "x2": "8", + "y2": "44" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "12", + "y1": "54", + "x2": "8", + "y2": "54" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "14,8 1,8 1,63 45,63 45,8 32,8 " + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "27,5 27,1 19,1 19,5 15,5 13,13 33,13 31,5 \r\n\t" + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "55,1 55,54 59,62 63,54 63,1 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "55", + "y1": "11", + "x2": "63", + "y2": "11" + }, + "children": [] + }] +}; +exports.basic_todolist_pencil = basic_todolist_pencil; \ No newline at end of file diff --git a/dist/linea/basic_trashcan.js b/dist/linea/basic_trashcan.js new file mode 100644 index 000000000..1d4f88c07 --- /dev/null +++ b/dist/linea/basic_trashcan.js @@ -0,0 +1,133 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_trashcan = void 0; +var basic_trashcan = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "25,8 25,1 39,1 39,8 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "25,8 25,1 39,1 39,8 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "14,10 14,63 50,63 50,10 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "14,10 14,63 50,63 50,10 \t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "26", + "y1": "20", + "x2": "26", + "y2": "54" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "26", + "y1": "20", + "x2": "26", + "y2": "54" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "38", + "y1": "20", + "x2": "38", + "y2": "54" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "38", + "y1": "20", + "x2": "38", + "y2": "54" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "10", + "y1": "9", + "x2": "54", + "y2": "9" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "10", + "y1": "9", + "x2": "54", + "y2": "9" + }, + "children": [] + }] + }] + }] +}; +exports.basic_trashcan = basic_trashcan; \ No newline at end of file diff --git a/dist/linea/basic_trashcan_full.js b/dist/linea/basic_trashcan_full.js new file mode 100644 index 000000000..51abc3f9e --- /dev/null +++ b/dist/linea/basic_trashcan_full.js @@ -0,0 +1,159 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_trashcan_full = void 0; +var basic_trashcan_full = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "52,36 58,34 62,48 56,50 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "52,36 58,34 62,48 56,50 \t" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "10", + "y": "13", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "36", + "height": "50" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "10", + "y": "13", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "36", + "height": "50" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "22", + "x2": "22", + "y2": "56" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "22", + "x2": "22", + "y2": "56" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "34", + "y1": "22", + "x2": "34", + "y2": "56" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "34", + "y1": "22", + "x2": "34", + "y2": "56" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "47.926", + "y1": "21.895", + "x2": "60", + "y2": "63" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "47.926", + "y1": "21.895", + "x2": "60", + "y2": "63" + }, + "children": [] + }] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,13 14,6 22.857,6.143 25,13 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "22.857,6.143 27,1 39,1 44,13 " + }, + "children": [] + }] +}; +exports.basic_trashcan_full = basic_trashcan_full; \ No newline at end of file diff --git a/dist/linea/basic_trashcan_refresh.js b/dist/linea/basic_trashcan_refresh.js new file mode 100644 index 000000000..324c8945b --- /dev/null +++ b/dist/linea/basic_trashcan_refresh.js @@ -0,0 +1,123 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_trashcan_refresh = void 0; +var basic_trashcan_refresh = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "25,8 25,1 39,1 39,8 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "25,8 25,1 39,1 39,8 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "14,10 14,63 50,63 50,10 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "14,10 14,63 50,63 50,10 \t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "10", + "y1": "9", + "x2": "54", + "y2": "9" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "10", + "y1": "9", + "x2": "54", + "y2": "9" + }, + "children": [] + }] + }] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M23,36c0,4.418,3.582,9,8,9h4" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "32,49 35,45 \r\n\t32,41 " + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M41,36c0-4.418-3.582-9-8-9h-4" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "32,23 29,27 \r\n\t32,31 " + }, + "children": [] + }] +}; +exports.basic_trashcan_refresh = basic_trashcan_refresh; \ No newline at end of file diff --git a/dist/linea/basic_trashcan_remove.js b/dist/linea/basic_trashcan_remove.js new file mode 100644 index 000000000..1ff43f87f --- /dev/null +++ b/dist/linea/basic_trashcan_remove.js @@ -0,0 +1,107 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_trashcan_remove = void 0; +var basic_trashcan_remove = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "25,8 25,1 39,1 39,8 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "25,8 25,1 39,1 39,8 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "14,10 14,63 50,63 50,10 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "14,10 14,63 50,63 50,10 \t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "10", + "y1": "9", + "x2": "54", + "y2": "9" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "10", + "y1": "9", + "x2": "54", + "y2": "9" + }, + "children": [] + }] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "39", + "y1": "43", + "x2": "25", + "y2": "29" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "25", + "y1": "43", + "x2": "39", + "y2": "29" + }, + "children": [] + }] +}; +exports.basic_trashcan_remove = basic_trashcan_remove; \ No newline at end of file diff --git a/dist/linea/basic_upload.js b/dist/linea/basic_upload.js new file mode 100644 index 000000000..103a111e9 --- /dev/null +++ b/dist/linea/basic_upload.js @@ -0,0 +1,62 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_upload = void 0; +var basic_upload = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "24,34 32,26 \r\n\t40,34 " + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "26", + "x2": "32", + "y2": "58" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "26", + "x2": "32", + "y2": "58" + }, + "children": [] + }] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "24,42 1,42 1,6 63,6 63,42 40,42 " + }, + "children": [] + }] +}; +exports.basic_upload = basic_upload; \ No newline at end of file diff --git a/dist/linea/basic_usb.js b/dist/linea/basic_usb.js new file mode 100644 index 000000000..4e4cf3776 --- /dev/null +++ b/dist/linea/basic_usb.js @@ -0,0 +1,65 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_usb = void 0; +var basic_usb = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "5.308", + "y": "4.601", + "transform": "matrix(0.7071 -0.7071 0.7071 0.7071 -6.0061 14.5)", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "18.385", + "height": "19.799" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "22.151", + "y": "15.08", + "transform": "matrix(0.7071 -0.7071 0.7071 0.7071 -15.3259 37)", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "29.698", + "height": "43.841" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "7", + "y1": "13", + "x2": "16", + "y2": "22" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "13", + "y1": "7", + "x2": "22", + "y2": "16" + }, + "children": [] + }] +}; +exports.basic_usb = basic_usb; \ No newline at end of file diff --git a/dist/linea/basic_video.js b/dist/linea/basic_video.js new file mode 100644 index 000000000..0cfd0aa1a --- /dev/null +++ b/dist/linea/basic_video.js @@ -0,0 +1,133 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_video = void 0; +var basic_video = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "46,30 63,20 63,52 46,42 46,52 1,52 1,20 \r\n\t\t46,20 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "46,30 63,20 63,52 46,42 46,52 1,52 1,20 \r\n\t\t46,20 \t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "6", + "y1": "28", + "x2": "10", + "y2": "28" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "6", + "y1": "28", + "x2": "10", + "y2": "28" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "14", + "y1": "28", + "x2": "18", + "y2": "28" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "14", + "y1": "28", + "x2": "18", + "y2": "28" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "7", + "y": "36", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "18", + "height": "10" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "7", + "y": "36", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "18", + "height": "10" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "6,12 32,12 40,20 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "6,12 32,12 40,20 \t" + }, + "children": [] + }] + }] + }] +}; +exports.basic_video = basic_video; \ No newline at end of file diff --git a/dist/linea/basic_watch.js b/dist/linea/basic_watch.js new file mode 100644 index 000000000..5fb6a39da --- /dev/null +++ b/dist/linea/basic_watch.js @@ -0,0 +1,53 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_watch = void 0; +var basic_watch = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "20" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "20,15 20,1 44,1 44,15 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "44,49 44,63 20,63 20,49 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "32,20 32,32 40,36 " + }, + "children": [] + }] +}; +exports.basic_watch = basic_watch; \ No newline at end of file diff --git a/dist/linea/basic_webpage.js b/dist/linea/basic_webpage.js new file mode 100644 index 000000000..50cec7328 --- /dev/null +++ b/dist/linea/basic_webpage.js @@ -0,0 +1,76 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_webpage = void 0; +var basic_webpage = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "7", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "50" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "1", + "y1": "15", + "x2": "63", + "y2": "15" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "10", + "y1": "11", + "x2": "6", + "y2": "11" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "18", + "y1": "11", + "x2": "14", + "y2": "11" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "26", + "y1": "11", + "x2": "22", + "y2": "11" + }, + "children": [] + }] +}; +exports.basic_webpage = basic_webpage; \ No newline at end of file diff --git a/dist/linea/basic_webpage_img_txt.js b/dist/linea/basic_webpage_img_txt.js new file mode 100644 index 000000000..8466bad67 --- /dev/null +++ b/dist/linea/basic_webpage_img_txt.js @@ -0,0 +1,128 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_webpage_img_txt = void 0; +var basic_webpage_img_txt = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "7", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "50" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "1", + "y1": "15", + "x2": "63", + "y2": "15" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "10", + "y1": "11", + "x2": "6", + "y2": "11" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "18", + "y1": "11", + "x2": "14", + "y2": "11" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "26", + "y1": "11", + "x2": "22", + "y2": "11" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "6", + "y1": "25", + "x2": "33", + "y2": "25" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "6", + "y1": "33", + "x2": "33", + "y2": "33" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "6", + "y1": "41", + "x2": "33", + "y2": "41" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "38", + "y": "25", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "19", + "height": "16" + }, + "children": [] + }] +}; +exports.basic_webpage_img_txt = basic_webpage_img_txt; \ No newline at end of file diff --git a/dist/linea/basic_webpage_multiple.js b/dist/linea/basic_webpage_multiple.js new file mode 100644 index 000000000..1df382c80 --- /dev/null +++ b/dist/linea/basic_webpage_multiple.js @@ -0,0 +1,165 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_webpage_multiple = void 0; +var basic_webpage_multiple = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "15", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "54", + "height": "42" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "15", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "54", + "height": "42" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11,12 11,7 63,7 63,50 58,50 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11,12 11,7 63,7 63,50 58,50 \t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "1", + "y1": "23", + "x2": "55", + "y2": "23" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "1", + "y1": "23", + "x2": "55", + "y2": "23" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "10", + "y1": "19", + "x2": "6", + "y2": "19" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "10", + "y1": "19", + "x2": "6", + "y2": "19" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "18", + "y1": "19", + "x2": "14", + "y2": "19" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "18", + "y1": "19", + "x2": "14", + "y2": "19" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "26", + "y1": "19", + "x2": "22", + "y2": "19" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "26", + "y1": "19", + "x2": "22", + "y2": "19" + }, + "children": [] + }] + }] + }] +}; +exports.basic_webpage_multiple = basic_webpage_multiple; \ No newline at end of file diff --git a/dist/linea/basic_webpage_txt.js b/dist/linea/basic_webpage_txt.js new file mode 100644 index 000000000..165e32d79 --- /dev/null +++ b/dist/linea/basic_webpage_txt.js @@ -0,0 +1,115 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_webpage_txt = void 0; +var basic_webpage_txt = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "6", + "y1": "25", + "x2": "58", + "y2": "25" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "6", + "y1": "33", + "x2": "58", + "y2": "33" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "6", + "y1": "41", + "x2": "58", + "y2": "41" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "1", + "y": "7", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "50" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "1", + "y1": "15", + "x2": "63", + "y2": "15" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "10", + "y1": "11", + "x2": "6", + "y2": "11" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "18", + "y1": "11", + "x2": "14", + "y2": "11" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "26", + "y1": "11", + "x2": "22", + "y2": "11" + }, + "children": [] + }] +}; +exports.basic_webpage_txt = basic_webpage_txt; \ No newline at end of file diff --git a/dist/linea/basic_world.js b/dist/linea/basic_world.js new file mode 100644 index 000000000..e91ec55df --- /dev/null +++ b/dist/linea/basic_world.js @@ -0,0 +1,87 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.basic_world = void 0; +var basic_world = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M32.001,0.887c17.184,0,31.113,13.929,31.112,31.113\r\n\tC63.114,49.185,49.184,63.115,32,63.113C14.815,63.114,0.887,49.185,0.888,32.001C0.885,14.816,14.815,0.887,32.001,0.887z" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "1", + "x2": "32", + "y2": "63" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "63", + "y1": "32", + "x2": "1", + "y2": "32" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M30,1c0,0-14,11-14,31s14,31,14,31" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M34,1c0,0,14,11,14,31S34,63,34,63" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M8,12c0,0,5,10,24,10s24-10,24-10" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M8,52c0,0,5-10,24-10s24,10,24,10" + }, + "children": [] + }] +}; +exports.basic_world = basic_world; \ No newline at end of file diff --git a/dist/linea/ecommerce_bag.js b/dist/linea/ecommerce_bag.js new file mode 100644 index 000000000..1ac139e19 --- /dev/null +++ b/dist/linea/ecommerce_bag.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_bag = void 0; +var ecommerce_bag = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "44,18 54,18 54,63 10,63 10,18 20,18 " + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M22,24V11c0-5.523,4.477-10,10-10s10,4.477,10,10v13\r\n\t" + }, + "children": [] + }] +}; +exports.ecommerce_bag = ecommerce_bag; \ No newline at end of file diff --git a/dist/linea/ecommerce_bag_check.js b/dist/linea/ecommerce_bag_check.js new file mode 100644 index 000000000..bd2a4f479 --- /dev/null +++ b/dist/linea/ecommerce_bag_check.js @@ -0,0 +1,42 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_bag_check = void 0; +var ecommerce_bag_check = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "44,18 54,18 54,63 10,63 10,18 20,18 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "23,40 30,47 \r\n\t43,34 " + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M22,24V11c0-5.523,4.477-10,10-10s10,4.477,10,10v13\r\n\t" + }, + "children": [] + }] +}; +exports.ecommerce_bag_check = ecommerce_bag_check; \ No newline at end of file diff --git a/dist/linea/ecommerce_bag_cloud.js b/dist/linea/ecommerce_bag_cloud.js new file mode 100644 index 000000000..603824cef --- /dev/null +++ b/dist/linea/ecommerce_bag_cloud.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_bag_cloud = void 0; +var ecommerce_bag_cloud = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "44,18 54,18 54,63 10,63 10,18 20,18 " + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M22,24V11c0-5.523,4.477-10,10-10s10,4.477,10,10v13\r\n\t" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M34.887,48H39c1.887,0,3-1,3-3c0-1-1-3-3-3\r\n\tc0-3.604-3.277-6-7-6c-3.295,0-6.413,2.978-7,6l0,0c-2,0-3,2-3,3c0,2,1,3,3,3h10.434" + }, + "children": [] + }] +}; +exports.ecommerce_bag_cloud = ecommerce_bag_cloud; \ No newline at end of file diff --git a/dist/linea/ecommerce_bag_download.js b/dist/linea/ecommerce_bag_download.js new file mode 100644 index 000000000..b3408cb1c --- /dev/null +++ b/dist/linea/ecommerce_bag_download.js @@ -0,0 +1,72 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_bag_download = void 0; +var ecommerce_bag_download = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "40,43 32,51 \r\n\t24,43 " + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "51", + "x2": "32", + "y2": "31" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "51", + "x2": "32", + "y2": "31" + }, + "children": [] + }] + }] + }, { + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "44,18 54,18 54,63 10,63 10,18 20,18 " + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M22,24V11c0-5.523,4.477-10,10-10s10,4.477,10,10v13\r\n\t" + }, + "children": [] + }] +}; +exports.ecommerce_bag_download = ecommerce_bag_download; \ No newline at end of file diff --git a/dist/linea/ecommerce_bag_minus.js b/dist/linea/ecommerce_bag_minus.js new file mode 100644 index 000000000..1f6ad032d --- /dev/null +++ b/dist/linea/ecommerce_bag_minus.js @@ -0,0 +1,44 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_bag_minus = void 0; +var ecommerce_bag_minus = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "44,18 54,18 54,63 10,63 10,18 20,18 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "41", + "y1": "42", + "x2": "23", + "y2": "42" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M22,24V11c0-5.523,4.477-10,10-10s10,4.477,10,10v13\r\n\t" + }, + "children": [] + }] +}; +exports.ecommerce_bag_minus = ecommerce_bag_minus; \ No newline at end of file diff --git a/dist/linea/ecommerce_bag_plus.js b/dist/linea/ecommerce_bag_plus.js new file mode 100644 index 000000000..1614b7cb1 --- /dev/null +++ b/dist/linea/ecommerce_bag_plus.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_bag_plus = void 0; +var ecommerce_bag_plus = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "33", + "x2": "32", + "y2": "51" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "41", + "y1": "42", + "x2": "23", + "y2": "42" + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "44,18 54,18 54,63 10,63 10,18 20,18 " + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M22,24V11c0-5.523,4.477-10,10-10s10,4.477,10,10v13\r\n\t" + }, + "children": [] + }] +}; +exports.ecommerce_bag_plus = ecommerce_bag_plus; \ No newline at end of file diff --git a/dist/linea/ecommerce_bag_refresh.js b/dist/linea/ecommerce_bag_refresh.js new file mode 100644 index 000000000..321379460 --- /dev/null +++ b/dist/linea/ecommerce_bag_refresh.js @@ -0,0 +1,73 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_bag_refresh = void 0; +var ecommerce_bag_refresh = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M24,42c0,4.418,3.582,9,8,9h4" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "33,55 36,51 \r\n\t33,47 " + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M42,42c0-4.418-3.582-9-8-9h-4" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "33,29 30,33 \r\n\t33,37 " + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "44,18 54,18 54,63 10,63 10,18 20,18 " + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M22,24V11c0-5.523,4.477-10,10-10s10,4.477,10,10v13\r\n\t" + }, + "children": [] + }] +}; +exports.ecommerce_bag_refresh = ecommerce_bag_refresh; \ No newline at end of file diff --git a/dist/linea/ecommerce_bag_remove.js b/dist/linea/ecommerce_bag_remove.js new file mode 100644 index 000000000..a299d4a47 --- /dev/null +++ b/dist/linea/ecommerce_bag_remove.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_bag_remove = void 0; +var ecommerce_bag_remove = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "44,18 54,18 54,63 10,63 10,18 20,18 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "39", + "y1": "49", + "x2": "25", + "y2": "35" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "25", + "y1": "49", + "x2": "39", + "y2": "35" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M22,24V11c0-5.523,4.477-10,10-10s10,4.477,10,10v13\r\n\t" + }, + "children": [] + }] +}; +exports.ecommerce_bag_remove = ecommerce_bag_remove; \ No newline at end of file diff --git a/dist/linea/ecommerce_bag_search.js b/dist/linea/ecommerce_bag_search.js new file mode 100644 index 000000000..08ffc08e8 --- /dev/null +++ b/dist/linea/ecommerce_bag_search.js @@ -0,0 +1,85 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_bag_search = void 0; +var ecommerce_bag_search = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "29", + "cy": "39", + "r": "6" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "29", + "cy": "39", + "r": "6" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "33", + "y1": "43", + "x2": "41", + "y2": "51" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "33", + "y1": "43", + "x2": "41", + "y2": "51" + }, + "children": [] + }] + }] + }, { + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "44,18 54,18 54,63 10,63 10,18 20,18 " + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M22,24V11c0-5.523,4.477-10,10-10s10,4.477,10,10v13\r\n\t" + }, + "children": [] + }] +}; +exports.ecommerce_bag_search = ecommerce_bag_search; \ No newline at end of file diff --git a/dist/linea/ecommerce_bag_upload.js b/dist/linea/ecommerce_bag_upload.js new file mode 100644 index 000000000..5579c9dd2 --- /dev/null +++ b/dist/linea/ecommerce_bag_upload.js @@ -0,0 +1,72 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_bag_upload = void 0; +var ecommerce_bag_upload = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "23.998,40 \r\n\t31.998,32 39.998,40 " + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "31.998", + "y1": "32", + "x2": "31.998", + "y2": "52" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "31.998", + "y1": "32", + "x2": "31.998", + "y2": "52" + }, + "children": [] + }] + }] + }, { + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "44,18 54,18 54,63 10,63 10,18 20,18 " + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M22,24V11c0-5.523,4.477-10,10-10s10,4.477,10,10v13\r\n\t" + }, + "children": [] + }] +}; +exports.ecommerce_bag_upload = ecommerce_bag_upload; \ No newline at end of file diff --git a/dist/linea/ecommerce_banknote.js b/dist/linea/ecommerce_banknote.js new file mode 100644 index 000000000..1bafc653b --- /dev/null +++ b/dist/linea/ecommerce_banknote.js @@ -0,0 +1,46 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_banknote = void 0; +var ecommerce_banknote = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "16", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "32" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M10,44c0-2.762-2.238-5-5-5V25c2.762,0,5-2.238,5-5\r\n\th44c0,2.762,2.238,5,5,5v14c-2.762,0-5,2.238-5,5H10z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "8" + }, + "children": [] + }] +}; +exports.ecommerce_banknote = ecommerce_banknote; \ No newline at end of file diff --git a/dist/linea/ecommerce_banknotes.js b/dist/linea/ecommerce_banknotes.js new file mode 100644 index 000000000..9d9031a44 --- /dev/null +++ b/dist/linea/ecommerce_banknotes.js @@ -0,0 +1,56 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_banknotes = void 0; +var ecommerce_banknotes = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "24", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "52", + "height": "26" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11,22 11,14 63,14 63,40 55,40 " + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M10,46c0-3-2-4-5-4V32c3,0,5-1,5-4h35c0,3,2,4,4,4\r\n\tv10c-2,0-4,1-4,4H10z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "27", + "cy": "37", + "r": "5" + }, + "children": [] + }] +}; +exports.ecommerce_banknotes = ecommerce_banknotes; \ No newline at end of file diff --git a/dist/linea/ecommerce_basket.js b/dist/linea/ecommerce_basket.js new file mode 100644 index 000000000..f5c576986 --- /dev/null +++ b/dist/linea/ecommerce_basket.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_basket = void 0; +var ecommerce_basket = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,25 12,59 52,59 63,25 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "14", + "y1": "25", + "x2": "22", + "y2": "5" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "50", + "y1": "25", + "x2": "42", + "y2": "5" + }, + "children": [] + }] +}; +exports.ecommerce_basket = ecommerce_basket; \ No newline at end of file diff --git a/dist/linea/ecommerce_basket_check.js b/dist/linea/ecommerce_basket_check.js new file mode 100644 index 000000000..7010d1284 --- /dev/null +++ b/dist/linea/ecommerce_basket_check.js @@ -0,0 +1,58 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_basket_check = void 0; +var ecommerce_basket_check = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,25 12,59 52,59 63,25 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "14", + "y1": "25", + "x2": "22", + "y2": "5" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "50", + "y1": "25", + "x2": "42", + "y2": "5" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "23,41 30,48 \r\n\t43,35 " + }, + "children": [] + }] +}; +exports.ecommerce_basket_check = ecommerce_basket_check; \ No newline at end of file diff --git a/dist/linea/ecommerce_basket_cloud.js b/dist/linea/ecommerce_basket_cloud.js new file mode 100644 index 000000000..223531022 --- /dev/null +++ b/dist/linea/ecommerce_basket_cloud.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_basket_cloud = void 0; +var ecommerce_basket_cloud = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,25 12,59 52,59 63,25 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "14", + "y1": "25", + "x2": "22", + "y2": "5" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "50", + "y1": "25", + "x2": "42", + "y2": "5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M34.887,48H39c1.887,0,3-1,3-3c0-1-1-3-3-3\r\n\tc0-3.604-3.277-6-7-6c-3.295,0-6.413,2.978-7,6l0,0c-2,0-3,2-3,3c0,2,1,3,3,3h10.434" + }, + "children": [] + }] +}; +exports.ecommerce_basket_cloud = ecommerce_basket_cloud; \ No newline at end of file diff --git a/dist/linea/ecommerce_basket_download.js b/dist/linea/ecommerce_basket_download.js new file mode 100644 index 000000000..d2e872add --- /dev/null +++ b/dist/linea/ecommerce_basket_download.js @@ -0,0 +1,88 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_basket_download = void 0; +var ecommerce_basket_download = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,25 12,59 52,59 63,25 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "14", + "y1": "25", + "x2": "22", + "y2": "5" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "50", + "y1": "25", + "x2": "42", + "y2": "5" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "40,44 32,52 \r\n\t24,44 " + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "52", + "x2": "32", + "y2": "32" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "52", + "x2": "32", + "y2": "32" + }, + "children": [] + }] + }] + }] +}; +exports.ecommerce_basket_download = ecommerce_basket_download; \ No newline at end of file diff --git a/dist/linea/ecommerce_basket_minus.js b/dist/linea/ecommerce_basket_minus.js new file mode 100644 index 000000000..746e581a1 --- /dev/null +++ b/dist/linea/ecommerce_basket_minus.js @@ -0,0 +1,60 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_basket_minus = void 0; +var ecommerce_basket_minus = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,25 12,59 52,59 63,25 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "14", + "y1": "25", + "x2": "22", + "y2": "5" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "50", + "y1": "25", + "x2": "42", + "y2": "5" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "41", + "y1": "43", + "x2": "23", + "y2": "43" + }, + "children": [] + }] +}; +exports.ecommerce_basket_minus = ecommerce_basket_minus; \ No newline at end of file diff --git a/dist/linea/ecommerce_basket_plus.js b/dist/linea/ecommerce_basket_plus.js new file mode 100644 index 000000000..f7b53d102 --- /dev/null +++ b/dist/linea/ecommerce_basket_plus.js @@ -0,0 +1,73 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_basket_plus = void 0; +var ecommerce_basket_plus = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,25 12,59 52,59 63,25 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "14", + "y1": "25", + "x2": "22", + "y2": "5" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "50", + "y1": "25", + "x2": "42", + "y2": "5" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "34", + "x2": "32", + "y2": "52" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "41", + "y1": "43", + "x2": "23", + "y2": "43" + }, + "children": [] + }] +}; +exports.ecommerce_basket_plus = ecommerce_basket_plus; \ No newline at end of file diff --git a/dist/linea/ecommerce_basket_refresh.js b/dist/linea/ecommerce_basket_refresh.js new file mode 100644 index 000000000..0624b2761 --- /dev/null +++ b/dist/linea/ecommerce_basket_refresh.js @@ -0,0 +1,89 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_basket_refresh = void 0; +var ecommerce_basket_refresh = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,25 12,59 52,59 63,25 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "14", + "y1": "25", + "x2": "22", + "y2": "5" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "50", + "y1": "25", + "x2": "42", + "y2": "5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M23,42c0,4.418,3.582,9,8,9h4" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "32,55 35,51 \r\n\t32,47 " + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M41,42c0-4.418-3.582-9-8-9h-4" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "32,29 29,33 \r\n\t32,37 " + }, + "children": [] + }] +}; +exports.ecommerce_basket_refresh = ecommerce_basket_refresh; \ No newline at end of file diff --git a/dist/linea/ecommerce_basket_remove.js b/dist/linea/ecommerce_basket_remove.js new file mode 100644 index 000000000..d4a581095 --- /dev/null +++ b/dist/linea/ecommerce_basket_remove.js @@ -0,0 +1,73 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_basket_remove = void 0; +var ecommerce_basket_remove = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,25 12,59 52,59 63,25 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "14", + "y1": "25", + "x2": "22", + "y2": "5" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "50", + "y1": "25", + "x2": "42", + "y2": "5" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "39", + "y1": "50", + "x2": "25", + "y2": "36" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "25", + "y1": "50", + "x2": "39", + "y2": "36" + }, + "children": [] + }] +}; +exports.ecommerce_basket_remove = ecommerce_basket_remove; \ No newline at end of file diff --git a/dist/linea/ecommerce_basket_search.js b/dist/linea/ecommerce_basket_search.js new file mode 100644 index 000000000..6af7c799b --- /dev/null +++ b/dist/linea/ecommerce_basket_search.js @@ -0,0 +1,101 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_basket_search = void 0; +var ecommerce_basket_search = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,25 12,59 52,59 63,25 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "14", + "y1": "25", + "x2": "22", + "y2": "5" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "50", + "y1": "25", + "x2": "42", + "y2": "5" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "29", + "cy": "40", + "r": "6" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "29", + "cy": "40", + "r": "6" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "33", + "y1": "44", + "x2": "41", + "y2": "52" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "33", + "y1": "44", + "x2": "41", + "y2": "52" + }, + "children": [] + }] + }] + }] +}; +exports.ecommerce_basket_search = ecommerce_basket_search; \ No newline at end of file diff --git a/dist/linea/ecommerce_basket_upload.js b/dist/linea/ecommerce_basket_upload.js new file mode 100644 index 000000000..186732a42 --- /dev/null +++ b/dist/linea/ecommerce_basket_upload.js @@ -0,0 +1,88 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_basket_upload = void 0; +var ecommerce_basket_upload = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,25 12,59 52,59 63,25 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "14", + "y1": "25", + "x2": "22", + "y2": "5" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "50", + "y1": "25", + "x2": "42", + "y2": "5" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "23.998,41 \r\n\t31.998,33 39.998,41 " + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "31.998", + "y1": "33", + "x2": "31.998", + "y2": "53" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "31.998", + "y1": "33", + "x2": "31.998", + "y2": "53" + }, + "children": [] + }] + }] + }] +}; +exports.ecommerce_basket_upload = ecommerce_basket_upload; \ No newline at end of file diff --git a/dist/linea/ecommerce_bath.js b/dist/linea/ecommerce_bath.js new file mode 100644 index 000000000..3f4214072 --- /dev/null +++ b/dist/linea/ecommerce_bath.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_bath = void 0; +var ecommerce_bath = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "24", + "y1": "48", + "x2": "24", + "y2": "16" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M24,17h5.443c0,0,8.562-0.783,8.562,7\r\n\ts-8.562,7-8.562,7H24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M24,31h6.221c0,0,9.781-0.893,9.781,8\r\n\ts-9.781,8-9.781,8H24" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "29", + "y": "13", + "width": "2", + "height": "39" + }, + "children": [] + }] +}; +exports.ecommerce_bath = ecommerce_bath; \ No newline at end of file diff --git a/dist/linea/ecommerce_cart.js b/dist/linea/ecommerce_cart.js new file mode 100644 index 000000000..61af73dff --- /dev/null +++ b/dist/linea/ecommerce_cart.js @@ -0,0 +1,88 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_cart = void 0; +var ecommerce_cart = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "20", + "cy": "57", + "r": "6" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "44", + "cy": "57", + "r": "6" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "26", + "y1": "57", + "x2": "38", + "y2": "57" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "14,57 10,2 0,2 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "13,43 56,40 63,10 11,10 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "20,10 22,4 32,4 34,10 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "32,4 37,1 53,1 56,10 " + }, + "children": [] + }] +}; +exports.ecommerce_cart = ecommerce_cart; \ No newline at end of file diff --git a/dist/linea/ecommerce_cart_check.js b/dist/linea/ecommerce_cart_check.js new file mode 100644 index 000000000..11700f8d3 --- /dev/null +++ b/dist/linea/ecommerce_cart_check.js @@ -0,0 +1,79 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_cart_check = void 0; +var ecommerce_cart_check = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "20", + "cy": "57", + "r": "6" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "44", + "cy": "57", + "r": "6" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "26", + "y1": "57", + "x2": "38", + "y2": "57" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "14,57 10,2 0,2 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "13,43 56,40 63,10 11,10 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "27,24 34,31 \r\n\t47,18 " + }, + "children": [] + }] +}; +exports.ecommerce_cart_check = ecommerce_cart_check; \ No newline at end of file diff --git a/dist/linea/ecommerce_cart_cloud.js b/dist/linea/ecommerce_cart_cloud.js new file mode 100644 index 000000000..304298b61 --- /dev/null +++ b/dist/linea/ecommerce_cart_cloud.js @@ -0,0 +1,78 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_cart_cloud = void 0; +var ecommerce_cart_cloud = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "20", + "cy": "57", + "r": "6" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "44", + "cy": "57", + "r": "6" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "26", + "y1": "57", + "x2": "38", + "y2": "57" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "14,57 10,2 0,2 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "13,43 56,40 63,10 11,10 " + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M38.887,31H43c1.887,0,3-1,3-3c0-1-1-3-3-3\r\n\tc0-3.604-3.277-6-7-6c-3.295,0-6.413,2.978-7,6l0,0c-2,0-3,2-3,3c0,2,1,3,3,3h10.434" + }, + "children": [] + }] +}; +exports.ecommerce_cart_cloud = ecommerce_cart_cloud; \ No newline at end of file diff --git a/dist/linea/ecommerce_cart_content.js b/dist/linea/ecommerce_cart_content.js new file mode 100644 index 000000000..aeb08d5e2 --- /dev/null +++ b/dist/linea/ecommerce_cart_content.js @@ -0,0 +1,68 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_cart_content = void 0; +var ecommerce_cart_content = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "20", + "cy": "57", + "r": "6" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "44", + "cy": "57", + "r": "6" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "26", + "y1": "57", + "x2": "38", + "y2": "57" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "14,57 10,2 0,2 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "13,43 56,40 63,10 11,10 " + }, + "children": [] + }] +}; +exports.ecommerce_cart_content = ecommerce_cart_content; \ No newline at end of file diff --git a/dist/linea/ecommerce_cart_download.js b/dist/linea/ecommerce_cart_download.js new file mode 100644 index 000000000..901e20a6a --- /dev/null +++ b/dist/linea/ecommerce_cart_download.js @@ -0,0 +1,109 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_cart_download = void 0; +var ecommerce_cart_download = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "20", + "cy": "57", + "r": "6" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "44", + "cy": "57", + "r": "6" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "26", + "y1": "57", + "x2": "38", + "y2": "57" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "14,57 10,2 0,2 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "13,43 56,40 63,10 11,10 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "44,27 36,35 \r\n\t28,27 " + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "36", + "y1": "35", + "x2": "36", + "y2": "15" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "36", + "y1": "35", + "x2": "36", + "y2": "15" + }, + "children": [] + }] + }] + }] +}; +exports.ecommerce_cart_download = ecommerce_cart_download; \ No newline at end of file diff --git a/dist/linea/ecommerce_cart_minus.js b/dist/linea/ecommerce_cart_minus.js new file mode 100644 index 000000000..4fbaaddcf --- /dev/null +++ b/dist/linea/ecommerce_cart_minus.js @@ -0,0 +1,81 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_cart_minus = void 0; +var ecommerce_cart_minus = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "20", + "cy": "57", + "r": "6" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "44", + "cy": "57", + "r": "6" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "26", + "y1": "57", + "x2": "38", + "y2": "57" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "14,57 10,2 0,2 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "13,43 56,40 63,10 11,10 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "45", + "y1": "26", + "x2": "27", + "y2": "26" + }, + "children": [] + }] +}; +exports.ecommerce_cart_minus = ecommerce_cart_minus; \ No newline at end of file diff --git a/dist/linea/ecommerce_cart_plus.js b/dist/linea/ecommerce_cart_plus.js new file mode 100644 index 000000000..642758777 --- /dev/null +++ b/dist/linea/ecommerce_cart_plus.js @@ -0,0 +1,94 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_cart_plus = void 0; +var ecommerce_cart_plus = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "20", + "cy": "57", + "r": "6" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "44", + "cy": "57", + "r": "6" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "26", + "y1": "57", + "x2": "38", + "y2": "57" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "14,57 10,2 0,2 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "13,43 56,40 63,10 11,10 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "36", + "y1": "17", + "x2": "36", + "y2": "35" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "45", + "y1": "26", + "x2": "27", + "y2": "26" + }, + "children": [] + }] +}; +exports.ecommerce_cart_plus = ecommerce_cart_plus; \ No newline at end of file diff --git a/dist/linea/ecommerce_cart_refresh.js b/dist/linea/ecommerce_cart_refresh.js new file mode 100644 index 000000000..305255e1f --- /dev/null +++ b/dist/linea/ecommerce_cart_refresh.js @@ -0,0 +1,110 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_cart_refresh = void 0; +var ecommerce_cart_refresh = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "20", + "cy": "57", + "r": "6" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "44", + "cy": "57", + "r": "6" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "26", + "y1": "57", + "x2": "38", + "y2": "57" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "14,57 10,2 0,2 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "13,43 56,40 63,10 11,10 " + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M28,26c0,4.418,3.582,9,8,9h4" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "37,39 40,35 \r\n\t37,31 " + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M46,26c0-4.418-3.582-9-8-9h-4" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "37,13 34,17 \r\n\t37,21 " + }, + "children": [] + }] +}; +exports.ecommerce_cart_refresh = ecommerce_cart_refresh; \ No newline at end of file diff --git a/dist/linea/ecommerce_cart_remove.js b/dist/linea/ecommerce_cart_remove.js new file mode 100644 index 000000000..d08864f14 --- /dev/null +++ b/dist/linea/ecommerce_cart_remove.js @@ -0,0 +1,94 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_cart_remove = void 0; +var ecommerce_cart_remove = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "20", + "cy": "57", + "r": "6" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "44", + "cy": "57", + "r": "6" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "26", + "y1": "57", + "x2": "38", + "y2": "57" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "14,57 10,2 0,2 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "13,43 56,40 63,10 11,10 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "43", + "y1": "33", + "x2": "29", + "y2": "19" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "29", + "y1": "33", + "x2": "43", + "y2": "19" + }, + "children": [] + }] +}; +exports.ecommerce_cart_remove = ecommerce_cart_remove; \ No newline at end of file diff --git a/dist/linea/ecommerce_cart_search.js b/dist/linea/ecommerce_cart_search.js new file mode 100644 index 000000000..11cee7332 --- /dev/null +++ b/dist/linea/ecommerce_cart_search.js @@ -0,0 +1,122 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_cart_search = void 0; +var ecommerce_cart_search = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "20", + "cy": "57", + "r": "6" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "44", + "cy": "57", + "r": "6" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "26", + "y1": "57", + "x2": "38", + "y2": "57" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "14,57 10,2 0,2 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "13,43 56,40 63,10 11,10 " + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "33", + "cy": "23", + "r": "6" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "33", + "cy": "23", + "r": "6" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "37", + "y1": "27", + "x2": "45", + "y2": "35" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "37", + "y1": "27", + "x2": "45", + "y2": "35" + }, + "children": [] + }] + }] + }] +}; +exports.ecommerce_cart_search = ecommerce_cart_search; \ No newline at end of file diff --git a/dist/linea/ecommerce_cart_upload.js b/dist/linea/ecommerce_cart_upload.js new file mode 100644 index 000000000..8bc436b60 --- /dev/null +++ b/dist/linea/ecommerce_cart_upload.js @@ -0,0 +1,109 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_cart_upload = void 0; +var ecommerce_cart_upload = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "20", + "cy": "57", + "r": "6" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "44", + "cy": "57", + "r": "6" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "26", + "y1": "57", + "x2": "38", + "y2": "57" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "14,57 10,2 0,2 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "13,43 56,40 63,10 11,10 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "27.998,24 \r\n\t35.998,16 43.998,24 " + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "35.998", + "y1": "16", + "x2": "35.998", + "y2": "36" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "35.998", + "y1": "16", + "x2": "35.998", + "y2": "36" + }, + "children": [] + }] + }] + }] +}; +exports.ecommerce_cart_upload = ecommerce_cart_upload; \ No newline at end of file diff --git a/dist/linea/ecommerce_cent.js b/dist/linea/ecommerce_cent.js new file mode 100644 index 000000000..4bbdc7274 --- /dev/null +++ b/dist/linea/ecommerce_cent.js @@ -0,0 +1,44 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_cent = void 0; +var ecommerce_cent = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M42,43c0,0-1,4-10,4s-12-7-12-15s3-15,12-15\r\n\ts10,4,10,4" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "12", + "x2": "32", + "y2": "52" + }, + "children": [] + }] +}; +exports.ecommerce_cent = ecommerce_cent; \ No newline at end of file diff --git a/dist/linea/ecommerce_colon.js b/dist/linea/ecommerce_colon.js new file mode 100644 index 000000000..6c8f28bc0 --- /dev/null +++ b/dist/linea/ecommerce_colon.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_colon = void 0; +var ecommerce_colon = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M42,43c0,0-1,4-10,4s-12-7-12-15s3-15,12-15\r\n\ts10,4,10,4" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "36", + "y1": "14", + "x2": "21", + "y2": "49" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "41", + "y1": "14", + "x2": "26", + "y2": "49" + }, + "children": [] + }] +}; +exports.ecommerce_colon = ecommerce_colon; \ No newline at end of file diff --git a/dist/linea/ecommerce_creditcard.js b/dist/linea/ecommerce_creditcard.js new file mode 100644 index 000000000..bb8a0f441 --- /dev/null +++ b/dist/linea/ecommerce_creditcard.js @@ -0,0 +1,76 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_creditcard = void 0; +var ecommerce_creditcard = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "11", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "42" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "1", + "y1": "17", + "x2": "63", + "y2": "17" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "1", + "y1": "25", + "x2": "63", + "y2": "25" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "6", + "y1": "47", + "x2": "10", + "y2": "47" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "12", + "y1": "47", + "x2": "41", + "y2": "47" + }, + "children": [] + }] +}; +exports.ecommerce_creditcard = ecommerce_creditcard; \ No newline at end of file diff --git a/dist/linea/ecommerce_diamond.js b/dist/linea/ecommerce_diamond.js new file mode 100644 index 000000000..ceaa70739 --- /dev/null +++ b/dist/linea/ecommerce_diamond.js @@ -0,0 +1,101 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_diamond = void 0; +var ecommerce_diamond = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "29,6 46,6 63,27 32,58 1,27 18,6 32,6 \r\n\t\t32,58 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "29,6 46,6 63,27 32,58 1,27 18,6 32,6 \r\n\t\t32,58 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "32,57 18,27 24,6 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "32,57 18,27 24,6 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "32,57 46,27 40,6 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "32,57 46,27 40,6 \t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "1", + "y1": "27", + "x2": "63", + "y2": "27" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "1", + "y1": "27", + "x2": "63", + "y2": "27" + }, + "children": [] + }] + }] + }] +}; +exports.ecommerce_diamond = ecommerce_diamond; \ No newline at end of file diff --git a/dist/linea/ecommerce_dollar.js b/dist/linea/ecommerce_dollar.js new file mode 100644 index 000000000..62fa1de64 --- /dev/null +++ b/dist/linea/ecommerce_dollar.js @@ -0,0 +1,49 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_dollar = void 0; +var ecommerce_dollar = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "29", + "y": "13", + "width": "2", + "height": "39" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "33", + "y": "13", + "width": "2", + "height": "39" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M40.988,23c0,0,0-6-9-6s-8,7-8,7s0,7,8,7\r\n\tc9,0,10.012,6,10.012,7c0,2,0.988,8-10.012,8c-9,0-8.988-4-8.988-5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z" + }, + "children": [] + }] +}; +exports.ecommerce_dollar = ecommerce_dollar; \ No newline at end of file diff --git a/dist/linea/ecommerce_euro.js b/dist/linea/ecommerce_euro.js new file mode 100644 index 000000000..65b91f086 --- /dev/null +++ b/dist/linea/ecommerce_euro.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_euro = void 0; +var ecommerce_euro = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M42,43c0,0-1,4-10,4s-12-7-12-15s3-15,12-15\r\n\ts10,4,10,4" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "15", + "y1": "30", + "x2": "34", + "y2": "30" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "15", + "y1": "34", + "x2": "34", + "y2": "34" + }, + "children": [] + }] +}; +exports.ecommerce_euro = ecommerce_euro; \ No newline at end of file diff --git a/dist/linea/ecommerce_franc.js b/dist/linea/ecommerce_franc.js new file mode 100644 index 000000000..2c19a8e92 --- /dev/null +++ b/dist/linea/ecommerce_franc.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_franc = void 0; +var ecommerce_franc = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "25,48 25,18 41,18 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "25", + "y1": "32", + "x2": "39", + "y2": "32" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "20", + "y1": "38", + "x2": "34", + "y2": "38" + }, + "children": [] + }] +}; +exports.ecommerce_franc = ecommerce_franc; \ No newline at end of file diff --git a/dist/linea/ecommerce_gift.js b/dist/linea/ecommerce_gift.js new file mode 100644 index 000000000..038932576 --- /dev/null +++ b/dist/linea/ecommerce_gift.js @@ -0,0 +1,70 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_gift = void 0; +var ecommerce_gift = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "18", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "9" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "6", + "y": "27", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "52", + "height": "31" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "58", + "x2": "32", + "y2": "18" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M32,18c0,0-13,0.101-13-9c0-7,13-4.068,13,2\r\n\tC32,17.067,32,18,32,18z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M32,18c0,0,13,0.101,13-9c0-7-13-4.068-13,2\r\n\tC32,17.067,32,18,32,18z" + }, + "children": [] + }] +}; +exports.ecommerce_gift = ecommerce_gift; \ No newline at end of file diff --git a/dist/linea/ecommerce_graph1.js b/dist/linea/ecommerce_graph1.js new file mode 100644 index 000000000..569d0bcb5 --- /dev/null +++ b/dist/linea/ecommerce_graph1.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_graph1 = void 0; +var ecommerce_graph1 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M54.999,36.001C55,50.913,42.912,63,28,62.999\r\n\tC13.087,63,1,50.912,1.001,36C1,21.088,13.088,9,28,9.001V36L54.999,36.001z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M63,28C63.001,13.087,50.914,0.998,36.001,1v27H63z" + }, + "children": [] + }] +}; +exports.ecommerce_graph1 = ecommerce_graph1; \ No newline at end of file diff --git a/dist/linea/ecommerce_graph2.js b/dist/linea/ecommerce_graph2.js new file mode 100644 index 000000000..f7aeaa048 --- /dev/null +++ b/dist/linea/ecommerce_graph2.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_graph2 = void 0; +var ecommerce_graph2 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "10", + "y": "29", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "12", + "height": "34" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "42", + "y": "39", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "12", + "height": "24" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "26", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "12", + "height": "62" + }, + "children": [] + }] +}; +exports.ecommerce_graph2 = ecommerce_graph2; \ No newline at end of file diff --git a/dist/linea/ecommerce_graph3.js b/dist/linea/ecommerce_graph3.js new file mode 100644 index 000000000..aed017e97 --- /dev/null +++ b/dist/linea/ecommerce_graph3.js @@ -0,0 +1,111 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_graph3 = void 0; +var ecommerce_graph3 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "56", + "cy": "34", + "r": "3" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "22", + "cy": "4", + "r": "3" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "40", + "cy": "50", + "r": "3" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "7", + "cy": "31", + "r": "3" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "8", + "y1": "28", + "x2": "20", + "y2": "6" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "43", + "y1": "48", + "x2": "54", + "y2": "36" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "1", + "y": "57", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "6" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "24", + "y1": "6", + "x2": "38", + "y2": "47" + }, + "children": [] + }] +}; +exports.ecommerce_graph3 = ecommerce_graph3; \ No newline at end of file diff --git a/dist/linea/ecommerce_graph_decrease.js b/dist/linea/ecommerce_graph_decrease.js new file mode 100644 index 000000000..98a2c9861 --- /dev/null +++ b/dist/linea/ecommerce_graph_decrease.js @@ -0,0 +1,102 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_graph_decrease = void 0; +var ecommerce_graph_decrease = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "10", + "y": "16", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "12", + "height": "47" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "42", + "y": "45", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "12", + "height": "18" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "26", + "y": "32", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "12", + "height": "31" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "16", + "y1": "1", + "x2": "54", + "y2": "39" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "16", + "y1": "1", + "x2": "54", + "y2": "39" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "43,39 54,39 \r\n\t\t54,28 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "43,39 54,39 \r\n\t\t54,28 \t" + }, + "children": [] + }] + }] + }] +}; +exports.ecommerce_graph_decrease = ecommerce_graph_decrease; \ No newline at end of file diff --git a/dist/linea/ecommerce_graph_increase.js b/dist/linea/ecommerce_graph_increase.js new file mode 100644 index 000000000..9105756f7 --- /dev/null +++ b/dist/linea/ecommerce_graph_increase.js @@ -0,0 +1,102 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_graph_increase = void 0; +var ecommerce_graph_increase = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "10", + "y": "45", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "12", + "height": "18" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "42", + "y": "18", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "12", + "height": "45" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "26", + "y": "32", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "12", + "height": "31" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "14", + "y1": "38", + "x2": "51", + "y2": "1" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "14", + "y1": "38", + "x2": "51", + "y2": "1" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "40,1 51,1 51,12 \r\n\t\t\t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "40,1 51,1 51,12 \r\n\t\t\t" + }, + "children": [] + }] + }] + }] +}; +exports.ecommerce_graph_increase = ecommerce_graph_increase; \ No newline at end of file diff --git a/dist/linea/ecommerce_guarani.js b/dist/linea/ecommerce_guarani.js new file mode 100644 index 000000000..cbc64557f --- /dev/null +++ b/dist/linea/ecommerce_guarani.js @@ -0,0 +1,44 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_guarani = void 0; +var ecommerce_guarani = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M42,21c0,0-1-4-10-4s-12,7-12,15s3,15,12,15\r\n\ts10-4,10-4v-7h-6" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "12", + "x2": "32", + "y2": "52" + }, + "children": [] + }] +}; +exports.ecommerce_guarani = ecommerce_guarani; \ No newline at end of file diff --git a/dist/linea/ecommerce_kips.js b/dist/linea/ecommerce_kips.js new file mode 100644 index 000000000..a05977215 --- /dev/null +++ b/dist/linea/ecommerce_kips.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_kips = void 0; +var ecommerce_kips = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "25", + "y1": "16", + "x2": "25", + "y2": "48" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "43,48 26,31 42,16 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "20", + "y1": "31", + "x2": "39", + "y2": "31" + }, + "children": [] + }] +}; +exports.ecommerce_kips = ecommerce_kips; \ No newline at end of file diff --git a/dist/linea/ecommerce_lira.js b/dist/linea/ecommerce_lira.js new file mode 100644 index 000000000..1c58e8077 --- /dev/null +++ b/dist/linea/ecommerce_lira.js @@ -0,0 +1,70 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_lira = void 0; +var ecommerce_lira = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M42,19c0,0-1.059-3-6-3s-9,2-9,7s0,26,0,26h14" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "21", + "y1": "49", + "x2": "27", + "y2": "49" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "21", + "y1": "32", + "x2": "35", + "y2": "32" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "21", + "y1": "38", + "x2": "35", + "y2": "38" + }, + "children": [] + }] +}; +exports.ecommerce_lira = ecommerce_lira; \ No newline at end of file diff --git a/dist/linea/ecommerce_megaphone.js b/dist/linea/ecommerce_megaphone.js new file mode 100644 index 000000000..a1f1730a8 --- /dev/null +++ b/dist/linea/ecommerce_megaphone.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_megaphone = void 0; +var ecommerce_megaphone = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,29 1,35 7,41 45.5,41 61,53 63,53 63,29 \r\n\t63,5 61,5 45.5,17 7,17 1,23 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "19,41 12,59 18,59 28,41 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "43", + "y1": "17", + "x2": "43", + "y2": "41" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "36", + "y1": "41", + "x2": "36", + "y2": "17" + }, + "children": [] + }] +}; +exports.ecommerce_megaphone = ecommerce_megaphone; \ No newline at end of file diff --git a/dist/linea/ecommerce_money.js b/dist/linea/ecommerce_money.js new file mode 100644 index 000000000..bf515f405 --- /dev/null +++ b/dist/linea/ecommerce_money.js @@ -0,0 +1,118 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_money = void 0; +var ecommerce_money = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "44", + "cy": "38", + "r": "19" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "44", + "cy": "38", + "r": "13" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "30,51 1,51 1,57 38,57 38,56 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "27,45 3,45 3,51 30,51 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "26,39 5,39 5,45 27,45 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "26,33 1,33 1,39 26,39 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "29,27 3,27 3,33 26,33 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "35,21 1,21 1,27 29,27 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "40,20 40,15 3,15 3,21 35,21 " + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "1", + "y": "9", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "37", + "height": "6" + }, + "children": [] + }] +}; +exports.ecommerce_money = ecommerce_money; \ No newline at end of file diff --git a/dist/linea/ecommerce_naira.js b/dist/linea/ecommerce_naira.js new file mode 100644 index 000000000..29163d8c8 --- /dev/null +++ b/dist/linea/ecommerce_naira.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_naira = void 0; +var ecommerce_naira = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "22,49 22,18 23,18 39,48 40,48 40,17 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "17", + "y1": "30", + "x2": "45", + "y2": "30" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "17", + "y1": "36", + "x2": "45", + "y2": "36" + }, + "children": [] + }] +}; +exports.ecommerce_naira = ecommerce_naira; \ No newline at end of file diff --git a/dist/linea/ecommerce_pesos.js b/dist/linea/ecommerce_pesos.js new file mode 100644 index 000000000..eb6853ea4 --- /dev/null +++ b/dist/linea/ecommerce_pesos.js @@ -0,0 +1,70 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_pesos = void 0; +var ecommerce_pesos = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "24", + "y1": "48", + "x2": "24", + "y2": "16" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M24,17h7c0,0,11-1,11,9s-11,9-11,9h-7" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "19", + "y1": "24", + "x2": "47", + "y2": "24" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "19", + "y1": "28", + "x2": "47", + "y2": "28" + }, + "children": [] + }] +}; +exports.ecommerce_pesos = ecommerce_pesos; \ No newline at end of file diff --git a/dist/linea/ecommerce_pound.js b/dist/linea/ecommerce_pound.js new file mode 100644 index 000000000..aa0bcdd5f --- /dev/null +++ b/dist/linea/ecommerce_pound.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_pound = void 0; +var ecommerce_pound = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M42,19c0,0-1.059-3-6-3c-4.941,0-9,2-9,7s0,26,0,26\r\n\th14" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "21", + "y1": "49", + "x2": "27", + "y2": "49" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "21", + "y1": "32", + "x2": "35", + "y2": "32" + }, + "children": [] + }] +}; +exports.ecommerce_pound = ecommerce_pound; \ No newline at end of file diff --git a/dist/linea/ecommerce_receipt.js b/dist/linea/ecommerce_receipt.js new file mode 100644 index 000000000..8b2ff7b96 --- /dev/null +++ b/dist/linea/ecommerce_receipt.js @@ -0,0 +1,189 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_receipt = void 0; +var ecommerce_receipt = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "14.999", + "x2": "46", + "y2": "14.999" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "14.999", + "x2": "46", + "y2": "14.999" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "18", + "y1": "23.999", + "x2": "46", + "y2": "23.999" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "18", + "y1": "23.999", + "x2": "46", + "y2": "23.999" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "18", + "y1": "33.999", + "x2": "46", + "y2": "33.999" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "18", + "y1": "33.999", + "x2": "46", + "y2": "33.999" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "18", + "y1": "43.999", + "x2": "46", + "y2": "43.999" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "18", + "y1": "43.999", + "x2": "46", + "y2": "43.999" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "18", + "y1": "53.999", + "x2": "46", + "y2": "53.999" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "18", + "y1": "53.999", + "x2": "46", + "y2": "53.999" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,14.999 26,14.999 26,0.999 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,14.999 26,14.999 26,0.999 \t" + }, + "children": [] + }] + }] + }] +}; +exports.ecommerce_receipt = ecommerce_receipt; \ No newline at end of file diff --git a/dist/linea/ecommerce_receipt_bath.js b/dist/linea/ecommerce_receipt_bath.js new file mode 100644 index 000000000..f9d585f68 --- /dev/null +++ b/dist/linea/ecommerce_receipt_bath.js @@ -0,0 +1,101 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_receipt_bath = void 0; +var ecommerce_receipt_bath = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,14.999 26,14.999 26,0.999 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,14.999 26,14.999 26,0.999 \t" + }, + "children": [] + }] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "26", + "y1": "48", + "x2": "26", + "y2": "22" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M26,23h5c0,0,6,0,6,6c0,5-6,5-6,5h-5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M27,34h5c0,0,7-0.226,7,7c0,6-7,6-7,6h-6" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "20", + "x2": "32", + "y2": "50" + }, + "children": [] + }] +}; +exports.ecommerce_receipt_bath = ecommerce_receipt_bath; \ No newline at end of file diff --git a/dist/linea/ecommerce_receipt_cent.js b/dist/linea/ecommerce_receipt_cent.js new file mode 100644 index 000000000..1211acfb5 --- /dev/null +++ b/dist/linea/ecommerce_receipt_cent.js @@ -0,0 +1,78 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_receipt_cent = void 0; +var ecommerce_receipt_cent = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,14.999 26,14.999 26,0.999 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,14.999 26,14.999 26,0.999 \t" + }, + "children": [] + }] + }] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M42,42c0,0-0.933,4-8,4c-7.066,0-9-5.719-9-12\r\n\ts1.934-11,9-11c7.067,0,8,3,8,3" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "34", + "y1": "20", + "x2": "34", + "y2": "49" + }, + "children": [] + }] +}; +exports.ecommerce_receipt_cent = ecommerce_receipt_cent; \ No newline at end of file diff --git a/dist/linea/ecommerce_receipt_dollar.js b/dist/linea/ecommerce_receipt_dollar.js new file mode 100644 index 000000000..6f0aa95ee --- /dev/null +++ b/dist/linea/ecommerce_receipt_dollar.js @@ -0,0 +1,91 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_receipt_dollar = void 0; +var ecommerce_receipt_dollar = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,14.999 26,14.999 26,0.999 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,14.999 26,14.999 26,0.999 \t" + }, + "children": [] + }] + }] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M38,28c0,0,0.161-4-6-4s-6,3-6,5s0.523,4,6,4\r\n\tc6.161,0,7,4.315,7,5c0,1.369,0.53,6-7,6c-6.161,0-6-3.315-6-4" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "34", + "y1": "21", + "x2": "34", + "y2": "48" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "30", + "y1": "21", + "x2": "30", + "y2": "48" + }, + "children": [] + }] +}; +exports.ecommerce_receipt_dollar = ecommerce_receipt_dollar; \ No newline at end of file diff --git a/dist/linea/ecommerce_receipt_euro.js b/dist/linea/ecommerce_receipt_euro.js new file mode 100644 index 000000000..3e0a69ed0 --- /dev/null +++ b/dist/linea/ecommerce_receipt_euro.js @@ -0,0 +1,91 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_receipt_euro = void 0; +var ecommerce_receipt_euro = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,14.999 26,14.999 26,0.999 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,14.999 26,14.999 26,0.999 \t" + }, + "children": [] + }] + }] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M42,42c0,0-0.933,4-8,4c-7.066,0-9-5.719-9-12\r\n\ts1.934-11,9-11c7.067,0,8,3,8,3" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "21", + "y1": "33", + "x2": "36", + "y2": "33" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "21", + "y1": "37", + "x2": "36", + "y2": "37" + }, + "children": [] + }] +}; +exports.ecommerce_receipt_euro = ecommerce_receipt_euro; \ No newline at end of file diff --git a/dist/linea/ecommerce_receipt_franc.js b/dist/linea/ecommerce_receipt_franc.js new file mode 100644 index 000000000..756f10d67 --- /dev/null +++ b/dist/linea/ecommerce_receipt_franc.js @@ -0,0 +1,91 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_receipt_franc = void 0; +var ecommerce_receipt_franc = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,14.999 26,14.999 26,0.999 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,14.999 26,14.999 26,0.999 \t" + }, + "children": [] + }] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "27,48 27,21 40,21 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "27", + "y1": "34", + "x2": "38", + "y2": "34" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "23", + "y1": "39", + "x2": "34", + "y2": "39" + }, + "children": [] + }] +}; +exports.ecommerce_receipt_franc = ecommerce_receipt_franc; \ No newline at end of file diff --git a/dist/linea/ecommerce_receipt_guarani.js b/dist/linea/ecommerce_receipt_guarani.js new file mode 100644 index 000000000..6406788bb --- /dev/null +++ b/dist/linea/ecommerce_receipt_guarani.js @@ -0,0 +1,78 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_receipt_guarani = void 0; +var ecommerce_receipt_guarani = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,14.999 26,14.999 26,0.999 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,14.999 26,14.999 26,0.999 \t" + }, + "children": [] + }] + }] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M42,26c0,0-0.933-3-8-3c-7.066,0-9,4.719-9,11\r\n\ts1.934,12,9,12c7.067,0,8-4,8-4v-5h-4" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "34", + "y1": "20", + "x2": "34", + "y2": "49" + }, + "children": [] + }] +}; +exports.ecommerce_receipt_guarani = ecommerce_receipt_guarani; \ No newline at end of file diff --git a/dist/linea/ecommerce_receipt_kips.js b/dist/linea/ecommerce_receipt_kips.js new file mode 100644 index 000000000..da8a061f5 --- /dev/null +++ b/dist/linea/ecommerce_receipt_kips.js @@ -0,0 +1,91 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_receipt_kips = void 0; +var ecommerce_receipt_kips = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,14.999 26,14.999 26,0.999 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,14.999 26,14.999 26,0.999 \t" + }, + "children": [] + }] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "27", + "y1": "20", + "x2": "27", + "y2": "48" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "42,48 26.916,33.125 40.024,20 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "33", + "x2": "37", + "y2": "33" + }, + "children": [] + }] +}; +exports.ecommerce_receipt_kips = ecommerce_receipt_kips; \ No newline at end of file diff --git a/dist/linea/ecommerce_receipt_lira.js b/dist/linea/ecommerce_receipt_lira.js new file mode 100644 index 000000000..9d60af1e8 --- /dev/null +++ b/dist/linea/ecommerce_receipt_lira.js @@ -0,0 +1,104 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_receipt_lira = void 0; +var ecommerce_receipt_lira = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,14.999 26,14.999 26,0.999 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,14.999 26,14.999 26,0.999 \t" + }, + "children": [] + }] + }] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M39,23c0,0-1.062-1.916-4.941-1.916\r\n\tC30.178,21.084,27,22.074,27,26c0,3.927,0,21,0,21h11" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "34", + "x2": "34", + "y2": "34" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "38", + "x2": "34", + "y2": "38" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "47", + "x2": "27", + "y2": "47" + }, + "children": [] + }] +}; +exports.ecommerce_receipt_lira = ecommerce_receipt_lira; \ No newline at end of file diff --git a/dist/linea/ecommerce_receipt_naira.js b/dist/linea/ecommerce_receipt_naira.js new file mode 100644 index 000000000..ac3bdcb5d --- /dev/null +++ b/dist/linea/ecommerce_receipt_naira.js @@ -0,0 +1,91 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_receipt_naira = void 0; +var ecommerce_receipt_naira = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,14.999 26,14.999 26,0.999 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,14.999 26,14.999 26,0.999 \t" + }, + "children": [] + }] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "25,48 25,21 25.929,21 39.071,47 40,47 \r\n\t40,20 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "20", + "y1": "31", + "x2": "44", + "y2": "31" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "20", + "y1": "37", + "x2": "44", + "y2": "37" + }, + "children": [] + }] +}; +exports.ecommerce_receipt_naira = ecommerce_receipt_naira; \ No newline at end of file diff --git a/dist/linea/ecommerce_receipt_pesos.js b/dist/linea/ecommerce_receipt_pesos.js new file mode 100644 index 000000000..cbb94e024 --- /dev/null +++ b/dist/linea/ecommerce_receipt_pesos.js @@ -0,0 +1,104 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_receipt_pesos = void 0; +var ecommerce_receipt_pesos = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,14.999 26,14.999 26,0.999 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,14.999 26,14.999 26,0.999 \t" + }, + "children": [] + }] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "24", + "y1": "48", + "x2": "24", + "y2": "20" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M24,21h6c0,0,10.018-0.703,10.018,8S30,37,30,37h-6" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "20", + "y1": "27", + "x2": "44", + "y2": "27" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "20", + "y1": "31", + "x2": "44", + "y2": "31" + }, + "children": [] + }] +}; +exports.ecommerce_receipt_pesos = ecommerce_receipt_pesos; \ No newline at end of file diff --git a/dist/linea/ecommerce_receipt_pound.js b/dist/linea/ecommerce_receipt_pound.js new file mode 100644 index 000000000..10b1d2e40 --- /dev/null +++ b/dist/linea/ecommerce_receipt_pound.js @@ -0,0 +1,91 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_receipt_pound = void 0; +var ecommerce_receipt_pound = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,14.999 26,14.999 26,0.999 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,14.999 26,14.999 26,0.999 \t" + }, + "children": [] + }] + }] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M39,23c0,0-1.062-1.916-4.941-1.916\r\n\tC30.178,21.084,27,22.074,27,26c0,3.927,0,21,0,21h11" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "34", + "x2": "34", + "y2": "34" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "47", + "x2": "27", + "y2": "47" + }, + "children": [] + }] +}; +exports.ecommerce_receipt_pound = ecommerce_receipt_pound; \ No newline at end of file diff --git a/dist/linea/ecommerce_receipt_rublo.js b/dist/linea/ecommerce_receipt_rublo.js new file mode 100644 index 000000000..41deeead2 --- /dev/null +++ b/dist/linea/ecommerce_receipt_rublo.js @@ -0,0 +1,91 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_receipt_rublo = void 0; +var ecommerce_receipt_rublo = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,14.999 26,14.999 26,0.999 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,14.999 26,14.999 26,0.999 \t" + }, + "children": [] + }] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "26", + "y1": "48", + "x2": "26", + "y2": "20" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M26,21h5.953c0,0,10.078-0.723,10.078,8\r\n\ts-10.078,8-10.078,8H22" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "42", + "x2": "33", + "y2": "42" + }, + "children": [] + }] +}; +exports.ecommerce_receipt_rublo = ecommerce_receipt_rublo; \ No newline at end of file diff --git a/dist/linea/ecommerce_receipt_rupee.js b/dist/linea/ecommerce_receipt_rupee.js new file mode 100644 index 000000000..4488995fc --- /dev/null +++ b/dist/linea/ecommerce_receipt_rupee.js @@ -0,0 +1,91 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_receipt_rupee = void 0; +var ecommerce_receipt_rupee = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,14.999 26,14.999 26,0.999 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,14.999 26,14.999 26,0.999 \t" + }, + "children": [] + }] + }] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M35.062,49.938L22,38v-1h6c0,0,10,0.75,10-8\r\n\tc0-7.875-10-8-10-8h-7" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "21", + "y1": "21", + "x2": "43", + "y2": "21" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "21", + "y1": "26", + "x2": "43", + "y2": "26" + }, + "children": [] + }] +}; +exports.ecommerce_receipt_rupee = ecommerce_receipt_rupee; \ No newline at end of file diff --git a/dist/linea/ecommerce_receipt_tugrik.js b/dist/linea/ecommerce_receipt_tugrik.js new file mode 100644 index 000000000..99b5ae2a1 --- /dev/null +++ b/dist/linea/ecommerce_receipt_tugrik.js @@ -0,0 +1,107 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_receipt_tugrik = void 0; +var ecommerce_receipt_tugrik = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,14.999 26,14.999 26,0.999 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,14.999 26,14.999 26,0.999 \t" + }, + "children": [] + }] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "21", + "x2": "32", + "y2": "48" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "21", + "y1": "21", + "x2": "43", + "y2": "21" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "37", + "y1": "26", + "x2": "27", + "y2": "32" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "37", + "y1": "31", + "x2": "27", + "y2": "37" + }, + "children": [] + }] +}; +exports.ecommerce_receipt_tugrik = ecommerce_receipt_tugrik; \ No newline at end of file diff --git a/dist/linea/ecommerce_receipt_won.js b/dist/linea/ecommerce_receipt_won.js new file mode 100644 index 000000000..c2edda9ad --- /dev/null +++ b/dist/linea/ecommerce_receipt_won.js @@ -0,0 +1,91 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_receipt_won = void 0; +var ecommerce_receipt_won = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,14.999 26,14.999 26,0.999 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,14.999 26,14.999 26,0.999 \t" + }, + "children": [] + }] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "18,20 24,47 25,47 31,22 33,22 39,47 \r\n\t40,47 46,20 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "16", + "y1": "32", + "x2": "48", + "y2": "32" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "16", + "y1": "37", + "x2": "48", + "y2": "37" + }, + "children": [] + }] +}; +exports.ecommerce_receipt_won = ecommerce_receipt_won; \ No newline at end of file diff --git a/dist/linea/ecommerce_receipt_yen.js b/dist/linea/ecommerce_receipt_yen.js new file mode 100644 index 000000000..80527b69d --- /dev/null +++ b/dist/linea/ecommerce_receipt_yen.js @@ -0,0 +1,183 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_receipt_yen = void 0; +var ecommerce_receipt_yen = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,14.999 26,14.999 26,0.999 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,14.999 26,14.999 26,0.999 \t" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "22,22 32,36 32,48 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "22,22 32,36 32,48 \t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "42", + "y1": "22", + "x2": "32", + "y2": "36" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "42", + "y1": "22", + "x2": "32", + "y2": "36" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "23", + "y1": "38", + "x2": "41", + "y2": "38" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "23", + "y1": "38", + "x2": "41", + "y2": "38" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "34", + "y1": "33", + "x2": "41", + "y2": "33" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "34", + "y1": "33", + "x2": "41", + "y2": "33" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "23", + "y1": "33", + "x2": "30", + "y2": "33" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "23", + "y1": "33", + "x2": "30", + "y2": "33" + }, + "children": [] + }] + }] + }] +}; +exports.ecommerce_receipt_yen = ecommerce_receipt_yen; \ No newline at end of file diff --git a/dist/linea/ecommerce_receipt_yen2.js b/dist/linea/ecommerce_receipt_yen2.js new file mode 100644 index 000000000..0607b63be --- /dev/null +++ b/dist/linea/ecommerce_receipt_yen2.js @@ -0,0 +1,101 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_receipt_yen2 = void 0; +var ecommerce_receipt_yen2 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,14.999 26,14.999 26,0.999 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,14.999 26,14.999 26,0.999 \t" + }, + "children": [] + }] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "21", + "x2": "42", + "y2": "21" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "19", + "y1": "26", + "x2": "45", + "y2": "26" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M28,27v16c0,0-0.602,4-3.121,4H22" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M36,27v17c0,0,0.637,3,3.997,3H42" + }, + "children": [] + }] +}; +exports.ecommerce_receipt_yen2 = ecommerce_receipt_yen2; \ No newline at end of file diff --git a/dist/linea/ecommerce_recept_colon.js b/dist/linea/ecommerce_recept_colon.js new file mode 100644 index 000000000..153032ce4 --- /dev/null +++ b/dist/linea/ecommerce_recept_colon.js @@ -0,0 +1,91 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_recept_colon = void 0; +var ecommerce_recept_colon = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,14.999 26,14.999 26,0.999 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,14.999 26,14.999 26,0.999 \t" + }, + "children": [] + }] + }] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M42,42c0,0-0.933,4-8,4c-7.066,0-9-5.719-9-12\r\n\ts1.934-11,9-11c7.067,0,8,3,8,3" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "37.869", + "y1": "20", + "x2": "24", + "y2": "47" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "42", + "y1": "21", + "x2": "28", + "y2": "48" + }, + "children": [] + }] +}; +exports.ecommerce_recept_colon = ecommerce_recept_colon; \ No newline at end of file diff --git a/dist/linea/ecommerce_rublo.js b/dist/linea/ecommerce_rublo.js new file mode 100644 index 000000000..afa317c0e --- /dev/null +++ b/dist/linea/ecommerce_rublo.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_rublo = void 0; +var ecommerce_rublo = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "24", + "y1": "48", + "x2": "24", + "y2": "16" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M24,17h7c0,0,11-1,11,9s-11,9-11,9H19" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "19", + "y1": "41", + "x2": "32", + "y2": "41" + }, + "children": [] + }] +}; +exports.ecommerce_rublo = ecommerce_rublo; \ No newline at end of file diff --git a/dist/linea/ecommerce_rupee.js b/dist/linea/ecommerce_rupee.js new file mode 100644 index 000000000..b93127b16 --- /dev/null +++ b/dist/linea/ecommerce_rupee.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_rupee = void 0; +var ecommerce_rupee = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M36,50L21,36v-1h7c0,0,11,1,11-9c0-9-11-9-11-9h-8" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "20", + "y1": "17", + "x2": "44", + "y2": "17" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "20", + "y1": "23", + "x2": "44", + "y2": "23" + }, + "children": [] + }] +}; +exports.ecommerce_rupee = ecommerce_rupee; \ No newline at end of file diff --git a/dist/linea/ecommerce_safe.js b/dist/linea/ecommerce_safe.js new file mode 100644 index 000000000..1ce8df37c --- /dev/null +++ b/dist/linea/ecommerce_safe.js @@ -0,0 +1,217 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_safe = void 0; +var ecommerce_safe = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "5", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "54" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "11", + "y": "11", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "46", + "height": "42" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "6", + "y1": "17", + "x2": "12", + "y2": "17" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "6", + "y1": "27", + "x2": "12", + "y2": "27" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "6", + "y1": "37", + "x2": "12", + "y2": "37" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "6", + "y1": "47", + "x2": "12", + "y2": "47" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "44", + "cy": "32", + "r": "3" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "44", + "cy": "32", + "r": "9" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "35", + "y1": "32", + "x2": "41", + "y2": "32" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "44", + "y1": "29", + "x2": "44", + "y2": "23" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "47", + "y1": "32", + "x2": "53", + "y2": "32" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "44", + "y1": "35", + "x2": "44", + "y2": "41" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "46", + "y1": "34", + "x2": "50", + "y2": "38" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "46", + "y1": "30", + "x2": "50", + "y2": "26" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "42", + "y1": "30", + "x2": "38", + "y2": "26" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "42", + "y1": "34", + "x2": "38.026", + "y2": "38" + }, + "children": [] + }] +}; +exports.ecommerce_safe = ecommerce_safe; \ No newline at end of file diff --git a/dist/linea/ecommerce_sale.js b/dist/linea/ecommerce_sale.js new file mode 100644 index 000000000..1d45161e9 --- /dev/null +++ b/dist/linea/ecommerce_sale.js @@ -0,0 +1,59 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_sale = void 0; +var ecommerce_sale = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "25,1 63,39 39,63 1,25 1,1 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "25,1 63,39 39,63 1,25 1,1 \t" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "17", + "cy": "17", + "r": "6" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "17", + "cy": "17", + "r": "6" + }, + "children": [] + }] + }] + }] +}; +exports.ecommerce_sale = ecommerce_sale; \ No newline at end of file diff --git a/dist/linea/ecommerce_sales.js b/dist/linea/ecommerce_sales.js new file mode 100644 index 000000000..0acf0dff1 --- /dev/null +++ b/dist/linea/ecommerce_sales.js @@ -0,0 +1,79 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_sales = void 0; +var ecommerce_sales = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "21.903,5 55,38.097 34.097,59 1,25.903 \r\n\t\t1,5 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "21.903,5 55,38.097 34.097,59 1,25.903 \r\n\t\t1,5 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "29.903,5 63,38.097 42.097,59 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "29.903,5 63,38.097 42.097,59 \t" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "14", + "cy": "18", + "r": "5" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "14", + "cy": "18", + "r": "5" + }, + "children": [] + }] + }] + }] +}; +exports.ecommerce_sales = ecommerce_sales; \ No newline at end of file diff --git a/dist/linea/ecommerce_ticket.js b/dist/linea/ecommerce_ticket.js new file mode 100644 index 000000000..a75172cb7 --- /dev/null +++ b/dist/linea/ecommerce_ticket.js @@ -0,0 +1,113 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_ticket = void 0; +var ecommerce_ticket = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M57,18c-1.504,1.504-2.705,2-5,2\r\n\t\tc-4.59,0-8-3.41-8-8c0-2.295,0.496-3.496,2-5l-6-6L1,40l6,6c1.504-1.504,2.705-2,5-2c4.59,0,8,3.41,8,8c0,2.295-0.496,3.496-2,5\r\n\t\tl6,6l39-39L57,18z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M57,18c-1.504,1.504-2.705,2-5,2\r\n\t\tc-4.59,0-8-3.41-8-8c0-2.295,0.496-3.496,2-5l-6-6L1,40l6,6c1.504-1.504,2.705-2,5-2c4.59,0,8,3.41,8,8c0,2.295-0.496,3.496-2,5\r\n\t\tl6,6l39-39L57,18z" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "26", + "y1": "15", + "x2": "30", + "y2": "19" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "26", + "y1": "15", + "x2": "30", + "y2": "19" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "45", + "y1": "34", + "x2": "49", + "y2": "38" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "45", + "y1": "34", + "x2": "49", + "y2": "38" + }, + "children": [] + }] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "21", + "x2": "36", + "y2": "25" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "39", + "y1": "28", + "x2": "43", + "y2": "32" + }, + "children": [] + }] +}; +exports.ecommerce_ticket = ecommerce_ticket; \ No newline at end of file diff --git a/dist/linea/ecommerce_tugriks.js b/dist/linea/ecommerce_tugriks.js new file mode 100644 index 000000000..1d715d709 --- /dev/null +++ b/dist/linea/ecommerce_tugriks.js @@ -0,0 +1,73 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_tugriks = void 0; +var ecommerce_tugriks = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "17", + "x2": "32", + "y2": "52" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "18", + "y1": "17", + "x2": "46", + "y2": "17" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "39", + "y1": "24", + "x2": "25", + "y2": "32" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "39", + "y1": "30", + "x2": "25", + "y2": "38" + }, + "children": [] + }] +}; +exports.ecommerce_tugriks = ecommerce_tugriks; \ No newline at end of file diff --git a/dist/linea/ecommerce_wallet.js b/dist/linea/ecommerce_wallet.js new file mode 100644 index 000000000..cdb1e55d8 --- /dev/null +++ b/dist/linea/ecommerce_wallet.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_wallet = void 0; +var ecommerce_wallet = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "61,44 61,55 1,55 1,15 61,15 61,26 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "6,9 54,9 54,15 " + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M6,9c-2.762,0-5,2.239-5,5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M43.125,26c-4.972,0-9,4.029-9,9c0,4.97,4.028,9,9,9\r\n\tH63V26H43.125z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "44", + "cy": "35", + "r": "3" + }, + "children": [] + }] +}; +exports.ecommerce_wallet = ecommerce_wallet; \ No newline at end of file diff --git a/dist/linea/ecommerce_won.js b/dist/linea/ecommerce_won.js new file mode 100644 index 000000000..c10b5276c --- /dev/null +++ b/dist/linea/ecommerce_won.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_won = void 0; +var ecommerce_won = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "15,16 23,48 24,48 31,18 33,18 40,48 \r\n\t41,48 49,16 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "13", + "y1": "30", + "x2": "51", + "y2": "30" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "13", + "y1": "36", + "x2": "51", + "y2": "36" + }, + "children": [] + }] +}; +exports.ecommerce_won = ecommerce_won; \ No newline at end of file diff --git a/dist/linea/ecommerce_yen.js b/dist/linea/ecommerce_yen.js new file mode 100644 index 000000000..99787fa51 --- /dev/null +++ b/dist/linea/ecommerce_yen.js @@ -0,0 +1,149 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_yen = void 0; +var ecommerce_yen = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "20,16 32,33 32,48 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "20,16 32,33 32,48 \t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "44", + "y1": "16", + "x2": "32", + "y2": "33" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "44", + "y1": "16", + "x2": "32", + "y2": "33" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "21", + "y1": "36", + "x2": "43", + "y2": "36" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "21", + "y1": "36", + "x2": "43", + "y2": "36" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "34", + "y1": "30", + "x2": "43", + "y2": "30" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "34", + "y1": "30", + "x2": "43", + "y2": "30" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "21", + "y1": "30", + "x2": "30", + "y2": "30" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "21", + "y1": "30", + "x2": "30", + "y2": "30" + }, + "children": [] + }] + }] + }] +}; +exports.ecommerce_yen = ecommerce_yen; \ No newline at end of file diff --git a/dist/linea/ecommerce_yen2.js b/dist/linea/ecommerce_yen2.js new file mode 100644 index 000000000..a6b32548c --- /dev/null +++ b/dist/linea/ecommerce_yen2.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ecommerce_yen2 = void 0; +var ecommerce_yen2 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "20", + "y1": "17", + "x2": "44", + "y2": "17" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "16", + "y1": "23", + "x2": "48", + "y2": "23" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M26,23v20c0,0,0,5-3,5h-4" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M37,23v21c0,0,0,4,4,4h2" + }, + "children": [] + }] +}; +exports.ecommerce_yen2 = ecommerce_yen2; \ No newline at end of file diff --git a/dist/linea/index.js b/dist/linea/index.js new file mode 100644 index 000000000..a67806bc5 --- /dev/null +++ b/dist/linea/index.js @@ -0,0 +1 @@ +"use strict";Object.defineProperty(exports,"__esModule",{value:true});exports.arrows_slim_right_dashed=exports.arrows_slim_right=exports.arrows_slim_left_dashed=exports.arrows_slim_left=exports.arrows_slim_down_dashed=exports.arrows_slim_down=exports.arrows_slide_up2=exports.arrows_slide_up1=exports.arrows_slide_right2=exports.arrows_slide_right1=exports.arrows_slide_left2=exports.arrows_slide_left1=exports.arrows_slide_down2=exports.arrows_slide_down1=exports.arrows_sign_up=exports.arrows_sign_right=exports.arrows_sign_left=exports.arrows_sign_down=exports.arrows_shrink_vertical2=exports.arrows_shrink_vertical1=exports.arrows_shrink_horizontal1=exports.arrows_shrink_horizonal2=exports.arrows_shrink_diagonal2=exports.arrows_shrink_diagonal1=exports.arrows_shrink=exports.arrows_rotate_dashed=exports.arrows_rotate_anti_dashed=exports.arrows_rotate_anti=exports.arrows_rotate=exports.arrows_right=exports.arrows_remove=exports.arrows_question=exports.arrows_plus=exports.arrows_move_top=exports.arrows_move_right=exports.arrows_move_left=exports.arrows_move_bottom=exports.arrows_move2=exports.arrows_move=exports.arrows_minus=exports.arrows_left=exports.arrows_keyboard_up=exports.arrows_keyboard_tab=exports.arrows_keyboard_shift=exports.arrows_keyboard_right=exports.arrows_keyboard_return=exports.arrows_keyboard_left=exports.arrows_keyboard_delete=exports.arrows_keyboard_alt=exports.arrows_info=exports.arrows_horizontal=exports.arrows_hamburger1=exports.arrows_glide_vertical=exports.arrows_glide_horizontal=exports.arrows_glide=exports.arrows_fit_vertical=exports.arrows_fit_horizontal=exports.arrows_expand_vertical1=exports.arrows_expand_horizontal1=exports.arrows_expand_diagonal1=exports.arrows_expand=exports.arrows_exclamation=exports.arrows_drag_vert=exports.arrows_drag_up_dashed=exports.arrows_drag_up=exports.arrows_drag_right_dashed=exports.arrows_drag_right=exports.arrows_drag_left_dashed=exports.arrows_drag_left=exports.arrows_drag_horiz=exports.arrows_drag_down_dashed=exports.arrows_drag_down=exports.arrows_downright=exports.arrows_downleft=exports.arrows_down=exports.arrows_diagonal2=exports.arrows_diagonal=exports.arrows_deny=exports.arrows_compress=exports.arrows_clockwise_dashed=exports.arrows_clockwise=exports.arrows_circle_upright=exports.arrows_circle_upleft=exports.arrows_circle_up=exports.arrows_circle_right=exports.arrows_circle_remove=exports.arrows_circle_plus=exports.arrows_circle_minus=exports.arrows_circle_left=exports.arrows_circle_downright=exports.arrows_circle_downleft=exports.arrows_circle_down=exports.arrows_circle_check=exports.arrows_check=exports.arrows_button_up=exports.arrows_button_on=exports.arrows_button_off=exports.arrows_button_down=exports.arrows_anticlockwise_dashed=exports.arrows_anticlockwise=void 0;exports.basic_elaboration_calendar_star=exports.basic_elaboration_calendar_search=exports.basic_elaboration_calendar_remove=exports.basic_elaboration_calendar_refresh=exports.basic_elaboration_calendar_previous=exports.basic_elaboration_calendar_plus=exports.basic_elaboration_calendar_pencil=exports.basic_elaboration_calendar_noaccess=exports.basic_elaboration_calendar_next=exports.basic_elaboration_calendar_minus=exports.basic_elaboration_calendar_heart=exports.basic_elaboration_calendar_flagged=exports.basic_elaboration_calendar_empty=exports.basic_elaboration_calendar_download=exports.basic_elaboration_calendar_cloud=exports.basic_elaboration_calendar_check=exports.basic_elaboration_browser_upload=exports.basic_elaboration_browser_star=exports.basic_elaboration_browser_search=exports.basic_elaboration_browser_remove=exports.basic_elaboration_browser_refresh=exports.basic_elaboration_browser_plus=exports.basic_elaboration_browser_minus=exports.basic_elaboration_browser_download=exports.basic_elaboration_browser_check=exports.basic_elaboration_briefcase_upload=exports.basic_elaboration_briefcase_star=exports.basic_elaboration_briefcase_search=exports.basic_elaboration_briefcase_remove=exports.basic_elaboration_briefcase_refresh=exports.basic_elaboration_briefcase_plus=exports.basic_elaboration_briefcase_minus=exports.basic_elaboration_briefcase_flagged=exports.basic_elaboration_briefcase_download=exports.basic_elaboration_briefcase_check=exports.basic_elaboration_bookmark_remove=exports.basic_elaboration_bookmark_plus=exports.basic_elaboration_bookmark_minus=exports.basic_elaboration_bookmark_checck=exports.basic_download=exports.basic_display=exports.basic_diamonds=exports.basic_cup=exports.basic_compass=exports.basic_clubs=exports.basic_cloud=exports.basic_clockwise=exports.basic_clock=exports.basic_clessidre=exports.basic_chronometer=exports.basic_case=exports.basic_cards_hearts=exports.basic_cards_diamonds=exports.basic_calendar=exports.basic_calculator=exports.basic_bookmark=exports.basic_book_pencil=exports.basic_book_pen=exports.basic_book=exports.basic_bolt=exports.basic_battery_half=exports.basic_battery_full=exports.basic_battery_empty=exports.basic_battery_charge=exports.basic_ban=exports.basic_archive_full=exports.basic_archive=exports.basic_anticlockwise=exports.basic_anchor=exports.basic_alarm=exports.basic_accelerator=exports.arrows_vertical=exports.arrows_upright=exports.arrows_up_double=exports.arrows_up=exports.arrows_switch_vertical=exports.arrows_switch_horizontal=exports.arrows_stretch_vertical2=exports.arrows_stretch_vertical1=exports.arrows_stretch_horizontal2=exports.arrows_stretch_horizontal1=exports.arrows_stretch_diagonal4=exports.arrows_stretch_diagonal3=exports.arrows_stretch_diagonal2=exports.arrows_stretch_diagonal1=exports.arrows_squares=exports.arrows_square_upright=exports.arrows_square_upleft=exports.arrows_square_up=exports.arrows_square_right=exports.arrows_square_remove=exports.arrows_square_plus=exports.arrows_square_minus=exports.arrows_square_left=exports.arrows_square_downright=exports.arrows_square_downleft=exports.arrows_square_down=exports.arrows_square_check=exports.arrows_slim_up_dashed=exports.arrows_slim_up=void 0;exports.basic_elaboration_todolist_pencil=exports.basic_elaboration_todolist_noaccess=exports.basic_elaboration_todolist_minus=exports.basic_elaboration_todolist_flagged=exports.basic_elaboration_todolist_download=exports.basic_elaboration_todolist_cloud=exports.basic_elaboration_todolist_check=exports.basic_elaboration_todolist_2=exports.basic_elaboration_tablet_search=exports.basic_elaboration_tablet_refresh=exports.basic_elaboration_tablet_picture=exports.basic_elaboration_tablet_pencil=exports.basic_elaboration_tablet_note=exports.basic_elaboration_tablet_noaccess=exports.basic_elaboration_tablet_heart=exports.basic_elaboration_tablet_cloud=exports.basic_elaboration_smartphone_search=exports.basic_elaboration_smartphone_refresh=exports.basic_elaboration_smartphone_picture=exports.basic_elaboration_smartphone_pencil=exports.basic_elaboration_smartphone_note=exports.basic_elaboration_smartphone_noaccess=exports.basic_elaboration_smartphone_heart=exports.basic_elaboration_smartphone_cloud=exports.basic_elaboration_message_sad=exports.basic_elaboration_message_remove=exports.basic_elaboration_message_refresh=exports.basic_elaboration_message_plus=exports.basic_elaboration_message_note=exports.basic_elaboration_message_minus=exports.basic_elaboration_message_heart=exports.basic_elaboration_message_happy=exports.basic_elaboration_message_dots=exports.basic_elaboration_message_check=exports.basic_elaboration_mail_upload=exports.basic_elaboration_mail_star=exports.basic_elaboration_mail_search=exports.basic_elaboration_mail_remove=exports.basic_elaboration_mail_refresh=exports.basic_elaboration_mail_previous=exports.basic_elaboration_mail_picture=exports.basic_elaboration_mail_pencil=exports.basic_elaboration_mail_note=exports.basic_elaboration_mail_noaccess=exports.basic_elaboration_mail_next=exports.basic_elaboration_mail_heart=exports.basic_elaboration_mail_flagged=exports.basic_elaboration_mail_download=exports.basic_elaboration_mail_document=exports.basic_elaboration_mail_cloud=exports.basic_elaboration_mail_check=exports.basic_elaboration_folder_upload=exports.basic_elaboration_folder_star=exports.basic_elaboration_folder_search=exports.basic_elaboration_folder_remove=exports.basic_elaboration_folder_refresh=exports.basic_elaboration_folder_previous=exports.basic_elaboration_folder_plus=exports.basic_elaboration_folder_picture=exports.basic_elaboration_folder_pencil=exports.basic_elaboration_folder_note=exports.basic_elaboration_folder_noaccess=exports.basic_elaboration_folder_next=exports.basic_elaboration_folder_minus=exports.basic_elaboration_folder_heart=exports.basic_elaboration_folder_graph=exports.basic_elaboration_folder_flagged=exports.basic_elaboration_folder_download=exports.basic_elaboration_folder_document=exports.basic_elaboration_folder_cloud=exports.basic_elaboration_folder_check=exports.basic_elaboration_document_upload=exports.basic_elaboration_document_star=exports.basic_elaboration_document_search=exports.basic_elaboration_document_remove=exports.basic_elaboration_document_refresh=exports.basic_elaboration_document_previous=exports.basic_elaboration_document_plus=exports.basic_elaboration_document_picture=exports.basic_elaboration_document_pencil=exports.basic_elaboration_document_note=exports.basic_elaboration_document_noaccess=exports.basic_elaboration_document_next=exports.basic_elaboration_document_minus=exports.basic_elaboration_document_heart=exports.basic_elaboration_document_graph=exports.basic_elaboration_document_flagged=exports.basic_elaboration_document_download=exports.basic_elaboration_document_cloud=exports.basic_elaboration_document_check=exports.basic_elaboration_cloud_upload=exports.basic_elaboration_cloud_search=exports.basic_elaboration_cloud_remove=exports.basic_elaboration_cloud_refresh=exports.basic_elaboration_cloud_plus=exports.basic_elaboration_cloud_noaccess=exports.basic_elaboration_cloud_minus=exports.basic_elaboration_cloud_download=exports.basic_elaboration_cloud_check=exports.basic_elaboration_calendar_upload=void 0;exports.basic_webpage_img_txt=exports.basic_webpage=exports.basic_watch=exports.basic_video=exports.basic_usb=exports.basic_upload=exports.basic_trashcan_remove=exports.basic_trashcan_refresh=exports.basic_trashcan_full=exports.basic_trashcan=exports.basic_todolist_pencil=exports.basic_todolist_pen=exports.basic_todo_txt=exports.basic_todo_pencil=exports.basic_todo=exports.basic_target=exports.basic_tablet=exports.basic_star=exports.basic_spread_text_bookmark=exports.basic_spread_text=exports.basic_spread_bookmark=exports.basic_spread=exports.basic_spades=exports.basic_smartphone=exports.basic_signs=exports.basic_sheet_pencil=exports.basic_sheet_pen=exports.basic_sheet=exports.basic_share=exports.basic_settings=exports.basic_server_upload=exports.basic_server_download=exports.basic_server_cloud=exports.basic_server2=exports.basic_server=exports.basic_rss=exports.basic_question=exports.basic_printer=exports.basic_postcard_multiple=exports.basic_postcard=exports.basic_pin2=exports.basic_pin1=exports.basic_picture_multiple=exports.basic_picture=exports.basic_photo=exports.basic_pencil_ruler=exports.basic_paperplane=exports.basic_notebook_pencil=exports.basic_notebook_pen=exports.basic_notebook=exports.basic_mouse=exports.basic_mixer2=exports.basic_message_txt=exports.basic_message_multiple=exports.basic_message=exports.basic_map=exports.basic_male=exports.basic_mail_open_text=exports.basic_mail_open=exports.basic_mail_multiple=exports.basic_mail=exports.basic_magnifier_plus=exports.basic_magnifier_minus=exports.basic_magnifier=exports.basic_magic_mouse=exports.basic_lock_open=exports.basic_lock=exports.basic_link=exports.basic_lightbulb=exports.basic_life_buoy=exports.basic_laptop=exports.basic_keyboard=exports.basic_key=exports.basic_joypad=exports.basic_ipod=exports.basic_info=exports.basic_home=exports.basic_helm=exports.basic_heart_broken=exports.basic_heart=exports.basic_headset=exports.basic_hammer=exports.basic_gunsight=exports.basic_globe=exports.basic_gear=exports.basic_folder_multiple=exports.basic_folder=exports.basic_floppydisk=exports.basic_flag2=exports.basic_flag1=exports.basic_female=exports.basic_eye_closed=exports.basic_eye=exports.basic_exclamation=exports.basic_elaboration_todolist_upload=exports.basic_elaboration_todolist_star=exports.basic_elaboration_todolist_search=exports.basic_elaboration_todolist_remove=exports.basic_elaboration_todolist_refresh=exports.basic_elaboration_todolist_plus=void 0;exports.music_microphone_old=exports.music_microphone=exports.music_loudspeaker=exports.music_ipod=exports.music_headphones=exports.music_fastforward_button=exports.music_end_button=exports.music_eject_button=exports.music_diapason=exports.music_cd=exports.music_bell=exports.music_beginning_button=exports.ecommerce_yen2=exports.ecommerce_yen=exports.ecommerce_won=exports.ecommerce_wallet=exports.ecommerce_tugriks=exports.ecommerce_ticket=exports.ecommerce_sales=exports.ecommerce_sale=exports.ecommerce_safe=exports.ecommerce_rupee=exports.ecommerce_rublo=exports.ecommerce_recept_colon=exports.ecommerce_receipt_yen2=exports.ecommerce_receipt_yen=exports.ecommerce_receipt_won=exports.ecommerce_receipt_tugrik=exports.ecommerce_receipt_rupee=exports.ecommerce_receipt_rublo=exports.ecommerce_receipt_pound=exports.ecommerce_receipt_pesos=exports.ecommerce_receipt_naira=exports.ecommerce_receipt_lira=exports.ecommerce_receipt_kips=exports.ecommerce_receipt_guarani=exports.ecommerce_receipt_franc=exports.ecommerce_receipt_euro=exports.ecommerce_receipt_dollar=exports.ecommerce_receipt_cent=exports.ecommerce_receipt_bath=exports.ecommerce_receipt=exports.ecommerce_pound=exports.ecommerce_pesos=exports.ecommerce_naira=exports.ecommerce_money=exports.ecommerce_megaphone=exports.ecommerce_lira=exports.ecommerce_kips=exports.ecommerce_guarani=exports.ecommerce_graph_increase=exports.ecommerce_graph_decrease=exports.ecommerce_graph3=exports.ecommerce_graph2=exports.ecommerce_graph1=exports.ecommerce_gift=exports.ecommerce_franc=exports.ecommerce_euro=exports.ecommerce_dollar=exports.ecommerce_diamond=exports.ecommerce_creditcard=exports.ecommerce_colon=exports.ecommerce_cent=exports.ecommerce_cart_upload=exports.ecommerce_cart_search=exports.ecommerce_cart_remove=exports.ecommerce_cart_refresh=exports.ecommerce_cart_plus=exports.ecommerce_cart_minus=exports.ecommerce_cart_download=exports.ecommerce_cart_content=exports.ecommerce_cart_cloud=exports.ecommerce_cart_check=exports.ecommerce_cart=exports.ecommerce_bath=exports.ecommerce_basket_upload=exports.ecommerce_basket_search=exports.ecommerce_basket_remove=exports.ecommerce_basket_refresh=exports.ecommerce_basket_plus=exports.ecommerce_basket_minus=exports.ecommerce_basket_download=exports.ecommerce_basket_cloud=exports.ecommerce_basket_check=exports.ecommerce_basket=exports.ecommerce_banknotes=exports.ecommerce_banknote=exports.ecommerce_bag_upload=exports.ecommerce_bag_search=exports.ecommerce_bag_remove=exports.ecommerce_bag_refresh=exports.ecommerce_bag_plus=exports.ecommerce_bag_minus=exports.ecommerce_bag_download=exports.ecommerce_bag_cloud=exports.ecommerce_bag_check=exports.ecommerce_bag=exports.basic_world=exports.basic_webpage_txt=exports.basic_webpage_multiple=void 0;exports.software_selection_polygon=exports.software_selection_oval=exports.software_scale_reduce=exports.software_scale_expand=exports.software_remove_vectorpoint=exports.software_reflect_vertical=exports.software_reflect_horizontal=exports.software_polygonallasso=exports.software_pencil=exports.software_pen_remove=exports.software_pen_add=exports.software_pen=exports.software_pathfinder_unite=exports.software_pathfinder_subtract=exports.software_pathfinder_intersect=exports.software_pathfinder_exclude=exports.software_paragraph_space_before=exports.software_paragraph_space_after=exports.software_paragraph_justify_right=exports.software_paragraph_justify_left=exports.software_paragraph_justify_center=exports.software_paragraph_justify_all=exports.software_paragraph_center=exports.software_paragraph_align_right=exports.software_paragraph_align_left=exports.software_paragraph=exports.software_paintroller=exports.software_paintbucket=exports.software_paintbrush=exports.software_pages=exports.software_magnete=exports.software_layout_sidebar_right=exports.software_layout_sidebar_left=exports.software_layout_header_sideright=exports.software_layout_header_sideleft=exports.software_layout_header_complex4=exports.software_layout_header_complex3=exports.software_layout_header_complex2=exports.software_layout_header_complex=exports.software_layout_header_4columns=exports.software_layout_header_4boxes=exports.software_layout_header_3columns=exports.software_layout_header_2columns=exports.software_layout_header=exports.software_layout_4lines=exports.software_layout_4columns=exports.software_layout_4boxes=exports.software_layout_3columns=exports.software_layout_2columns=exports.software_layout=exports.software_layers2=exports.software_layers1=exports.software_lasso=exports.software_indent_right=exports.software_indent_left=exports.software_indent_firstline=exports.software_horizontal_distribute_right=exports.software_horizontal_distribute_left=exports.software_horizontal_distribute_center=exports.software_horizontal_align_right=exports.software_horizontal_align_left=exports.software_horizontal_align_center=exports.software_font_vertical_scale=exports.software_font_underline=exports.software_font_tracking=exports.software_font_strikethrough=exports.software_font_smallcaps=exports.software_font_smallcapital=exports.software_font_size=exports.software_font_leading=exports.software_font_kerning=exports.software_font_horizontal_scale=exports.software_font_baseline_shift=exports.software_font_allcaps=exports.software_eyedropper=exports.software_crop=exports.software_character=exports.software_box_roundedrectangle=exports.software_box_rectangle=exports.software_box_polygon=exports.software_box_oval=exports.software_add_vectorpoint=exports.music_volume_up=exports.music_volume_down=exports.music_tape=exports.music_stop_button=exports.music_shuffle_button=exports.music_rewind_button=exports.music_repeat_button=exports.music_recordplayer=exports.music_record=exports.music_radio_portable=exports.music_radio_ghettoblaster=exports.music_playlist=exports.music_play_button=exports.music_pause_button=exports.music_note_single=exports.music_note_multiple=exports.music_mute=exports.music_mixer=void 0;exports.weather_windgust=exports.weather_wind_sun=exports.weather_wind_halfmoon=exports.weather_wind_fullmoon=exports.weather_wind_W=exports.weather_wind_SW=exports.weather_wind_SE=exports.weather_wind_S=exports.weather_wind_NW=exports.weather_wind_NE=exports.weather_wind_N=exports.weather_wind_E=exports.weather_wind=exports.weather_waxing_gibbous=exports.weather_waxing_cresent=exports.weather_waning_gibbous=exports.weather_waning_cresent=exports.weather_virgo=exports.weather_variable_sun=exports.weather_variable_halfmoon=exports.weather_variable_fullmoon=exports.weather_tempest_sun=exports.weather_tempest_halfmoon=exports.weather_tempest_fullmoon=exports.weather_tempest=exports.weather_taurus=exports.weather_sunset=exports.weather_sundown=exports.weather_sun=exports.weather_storm_sun=exports.weather_storm_halfmoon=exports.weather_storm_fullmoon=exports.weather_star=exports.weather_snowflake=exports.weather_snow_sun=exports.weather_snow_halfmoon=exports.weather_snow_fullmoon=exports.weather_snow=exports.weather_scorpio=exports.weather_sagittarius=exports.weather_rain_sun=exports.weather_rain_halfmoon=exports.weather_rain_fullmoon=exports.weather_rain=exports.weather_pisces=exports.weather_newmoon=exports.weather_move2=exports.weather_moonset_half=exports.weather_moonset_full=exports.weather_moondown_half=exports.weather_moondown_full=exports.weather_moon=exports.weather_mistyrain_sun=exports.weather_mistyrain_halfmoon=exports.weather_mistyrain_fullmoon=exports.weather_mistyrain=exports.weather_lightning=exports.weather_libra=exports.weather_leo=exports.weather_last_quarter=exports.weather_hail_sun=exports.weather_hail_halfmoon=exports.weather_hail_fullmoon=exports.weather_hail=exports.weather_gemini=exports.weather_fullmoon=exports.weather_fog_sun=exports.weather_fog_halfmoon=exports.weather_fog_fullmoon=exports.weather_fog=exports.weather_drop=exports.weather_downpour_sun=exports.weather_downpour_halfmoon=exports.weather_downpour_fullmoon=exports.weather_cloud_snowflake=exports.weather_cloud_lightning=exports.weather_cloud_drop=exports.weather_cloud=exports.weather_capricorn=exports.weather_cancer=exports.weather_aries=exports.weather_aquarius=exports.software_vertical_distribute_top=exports.software_vertical_distribute_center=exports.software_vertical_distribute_bottom=exports.software_vertical_align_top=exports.software_vertical_align_center=exports.software_vertical_align_bottom=exports.software_vector_line=exports.software_vector_composite=exports.software_vector_box=exports.software_transform_bezier=exports.software_slice=exports.software_shape_roundedrectangle=exports.software_shape_rectangle=exports.software_shape_polygon=exports.software_shape_oval=exports.software_selection_roundedrectangle=exports.software_selection_rectangle=void 0;var arrows_anticlockwise={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32,1c17.121,0,31,13.879,31,31S49.121,63,32,63"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32,1C14.879,1,1,14.879,1,32\r\n\tc0,6.713,2.134,12.926,5.759,18l5.62,5.621"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"13,45 13,56 2,56 \r\n\t"},"children":[]}]};exports.arrows_anticlockwise=arrows_anticlockwise;var arrows_anticlockwise_dashed={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32,1c0.672,0,1.339,0.021,2,0.063"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32,1c0.672,0,1.339,0.021,2,0.063"},"children":[]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4.0593,2.0296","d":"M36.021,1.258\r\n\t\t\tC51.242,3.229,63,16.241,63,32c0,16.104-12.279,29.34-27.986,30.855"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4.0593,2.0296","d":"M36.021,1.258\r\n\t\t\tC51.242,3.229,63,16.241,63,32c0,16.104-12.279,29.34-27.986,30.855"},"children":[]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M34,62.937C33.339,62.979,32.672,63,32,63"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M34,62.937C33.339,62.979,32.672,63,32,63"},"children":[]}]}]}]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32,1C14.879,1,1,14.879,1,32\r\n\tc0,6.713,2.134,12.926,5.759,18l5.62,5.621"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"13,45 13,56 2,56 \r\n\t"},"children":[]}]};exports.arrows_anticlockwise_dashed=arrows_anticlockwise_dashed;var arrows_button_down={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M48,17c0-8.837-7.163-16-16-16S16,8.163,16,17v30\r\n\tc0,8.837,7.163,16,16,16s16-7.163,16-16V17z"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"47","r":"12"},"children":[]}]};exports.arrows_button_down=arrows_button_down;var arrows_button_off={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M47,48c8.837,0,16-7.163,16-16s-7.163-16-16-16H17\r\n\tC8.163,16,1,23.163,1,32s7.163,16,16,16H47z"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"17","cy":"32","r":"12"},"children":[]}]};exports.arrows_button_off=arrows_button_off;var arrows_button_on={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M47,48c8.837,0,16-7.163,16-16s-7.163-16-16-16H17\r\n\tC8.163,16,1,23.163,1,32s7.163,16,16,16H47z"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"47","cy":"32","r":"12"},"children":[]}]};exports.arrows_button_on=arrows_button_on;var arrows_button_up={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M48,17c0-8.837-7.163-16-16-16S16,8.163,16,17v30\r\n\tc0,8.837,7.163,16,16,16s16-7.163,16-16V17z"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"17","r":"12"},"children":[]}]};exports.arrows_button_up=arrows_button_up;var arrows_check={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"13,33 25,45 \r\n\t\t49,21 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"13,33 25,45 \r\n\t\t49,21 \t"},"children":[]}]}]}]};exports.arrows_check=arrows_check;var arrows_circle_check={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"13,33 25,45 \r\n\t\t49,21 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"13,33 25,45 \r\n\t\t49,21 \t"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"30.999"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"30.999"},"children":[]}]}]}]};exports.arrows_circle_check=arrows_circle_check;var arrows_circle_down={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"15,24 32,41 \r\n\t\t49,24 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"15,24 32,41 \r\n\t\t49,24 \t"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"30.999"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"30.999"},"children":[]}]}]}]};exports.arrows_circle_down=arrows_circle_down;var arrows_circle_downleft={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"30.999"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"30.999"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"47,41 23,41 \r\n\t\t23,17 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"47,41 23,41 \r\n\t\t23,17 \t"},"children":[]}]}]}]};exports.arrows_circle_downleft=arrows_circle_downleft;var arrows_circle_downright={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"30.999"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"30.999"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"41,17 41,41 \r\n\t\t17,41 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"41,17 41,41 \r\n\t\t17,41 \t"},"children":[]}]}]}]};exports.arrows_circle_downright=arrows_circle_downright;var arrows_circle_left={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"27,15 44,32 \r\n\t\t27,49 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"27,15 44,32 \r\n\t\t27,49 \t"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"30.999"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"30.999"},"children":[]}]}]}]};exports.arrows_circle_left=arrows_circle_left;var arrows_circle_minus={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"31","x2":"50","y2":"31"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"31","x2":"50","y2":"31"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"30.999"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"30.999"},"children":[]}]}]}]};exports.arrows_circle_minus=arrows_circle_minus;var arrows_circle_plus={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"50","x2":"32","y2":"14"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"50","x2":"32","y2":"14"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"32","x2":"50","y2":"32"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"32","x2":"50","y2":"32"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"30.999"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"30.999"},"children":[]}]}]}]};exports.arrows_circle_plus=arrows_circle_plus;var arrows_circle_remove={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"18.947","y1":"17.153","x2":"45.045","y2":"43.056"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"18.947","y1":"17.153","x2":"45.045","y2":"43.056"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"19.045","y1":"43.153","x2":"44.947","y2":"17.056"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"19.045","y1":"43.153","x2":"44.947","y2":"17.056"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"30.999"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"30.999"},"children":[]}]}]}]};exports.arrows_circle_remove=arrows_circle_remove;var arrows_circle_right={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"37,15 20,32 \r\n\t\t37,49 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"37,15 20,32 \r\n\t\t37,49 \t"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"30.999"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"30.999"},"children":[]}]}]}]};exports.arrows_circle_right=arrows_circle_right;var arrows_circle_up={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"15,40 32,23 \r\n\t\t49,40 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"15,40 32,23 \r\n\t\t49,40 \t"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"30.999"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"30.999"},"children":[]}]}]}]};exports.arrows_circle_up=arrows_circle_up;var arrows_circle_upleft={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"30.999"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"30.999"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,47 23,23 47,23 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,47 23,23 47,23 \t"},"children":[]}]}]}]};exports.arrows_circle_upleft=arrows_circle_upleft;var arrows_circle_upright={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"30.999"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"30.999"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"17,23 41,23 \r\n\t\t41,47 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"17,23 41,23 \r\n\t\t41,47 \t"},"children":[]}]}]}]};exports.arrows_circle_upright=arrows_circle_upright;var arrows_clockwise={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32,1C14.879,1,1,14.879,1,32s13.879,31,31,31"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32,1c17.121,0,31,13.879,31,31\r\n\tc0,6.713-2.134,12.926-5.759,18l-5.62,5.621"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"51,45 51,56 \r\n\t62,56 "},"children":[]}]};exports.arrows_clockwise=arrows_clockwise;var arrows_clockwise_dashed={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32,1c-0.672,0-1.339,0.021-2,0.063"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32,1c-0.672,0-1.339,0.021-2,0.063"},"children":[]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4.0593,2.0296","d":"M27.979,1.258\r\n\t\t\tC12.758,3.229,1,16.241,1,32c0,16.104,12.279,29.34,27.986,30.855"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4.0593,2.0296","d":"M27.979,1.258\r\n\t\t\tC12.758,3.229,1,16.241,1,32c0,16.104,12.279,29.34,27.986,30.855"},"children":[]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M30,62.937C30.661,62.979,31.328,63,32,63"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M30,62.937C30.661,62.979,31.328,63,32,63"},"children":[]}]}]}]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32,1c17.121,0,31,13.879,31,31\r\n\tc0,6.713-2.134,12.926-5.759,18l-5.62,5.621"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"51,45 51,56 \r\n\t62,56 "},"children":[]}]};exports.arrows_clockwise_dashed=arrows_clockwise_dashed;var arrows_compress={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"47,25 40,32 \r\n\t47,39 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"17,39 24,32 \r\n\t17,25 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"24","y1":"32","x2":"0","y2":"32"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"32","x2":"40","y2":"32"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"25,17 32,24 \r\n\t39,17 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"39,47 32,40 \r\n\t25,47 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"40","x2":"32","y2":"64"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"0","x2":"32","y2":"24"},"children":[]}]};exports.arrows_compress=arrows_compress;var arrows_deny={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.919,10.08c12.108,12.106,12.108,31.733,0,43.84\r\n\tc-12.105,12.107-31.732,12.107-43.838,0c-12.108-12.106-12.108-31.733,0-43.84C22.187-2.027,41.813-2.027,53.919,10.08z"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10.08","y1":"10.08","x2":"53.92","y2":"53.92"},"children":[]}]};exports.arrows_deny=arrows_deny;var arrows_diagonal={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"63,12 63,1 52,1 \r\n\t"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"1,52 1,63 12,63 \r\n\t"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","x1":"1","y1":"63","x2":"63","y2":"1"},"children":[]}]};exports.arrows_diagonal=arrows_diagonal;var arrows_diagonal2={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"52,63 63,63 \r\n\t63,52 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"12,1 1,1 1,12 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","x1":"1","y1":"1","x2":"63","y2":"63"},"children":[]}]};exports.arrows_diagonal2=arrows_diagonal2;var arrows_down={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"15,24 32,41 \r\n\t\t49,24 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"15,24 32,41 \r\n\t\t49,24 \t"},"children":[]}]}]}]};exports.arrows_down=arrows_down;var arrows_downleft={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"47,41 23,41 \r\n\t\t23,17 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"47,41 23,41 \r\n\t\t23,17 \t"},"children":[]}]}]}]};exports.arrows_downleft=arrows_downleft;var arrows_downright={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"41,17 41,41 \r\n\t\t17,41 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"41,17 41,41 \r\n\t\t17,41 \t"},"children":[]}]}]}]};exports.arrows_downright=arrows_downright;var arrows_drag_down={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"31","x2":"32","y2":"63"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"31","x2":"32","y2":"63"},"children":[]}]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"16","r":"15"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"23,54 32,63 \r\n\t41,54 "},"children":[]}]};exports.arrows_drag_down=arrows_drag_down;var arrows_drag_down_dashed={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"32","y1":"31","x2":"32","y2":"63"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"32","y1":"31","x2":"32","y2":"63"},"children":[]}]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"16","r":"15"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"23,54 32,63 \r\n\t41,54 "},"children":[]}]};exports.arrows_drag_down_dashed=arrows_drag_down_dashed;var arrows_drag_horiz={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"24","y1":"0","x2":"24","y2":"64"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"0","x2":"32","y2":"64"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"40","y1":"0","x2":"40","y2":"64"},"children":[]}]};exports.arrows_drag_horiz=arrows_drag_horiz;var arrows_drag_left={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"33","y1":"32","x2":"1","y2":"32"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"33","y1":"32","x2":"1","y2":"32"},"children":[]}]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"48","cy":"32","r":"15"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"10,23 1,32 10,41 \r\n\t"},"children":[]}]};exports.arrows_drag_left=arrows_drag_left;var arrows_drag_left_dashed={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"33","y1":"32","x2":"1","y2":"32"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"33","y1":"32","x2":"1","y2":"32"},"children":[]}]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"48","cy":"32","r":"15"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"10,23 1,32 10,41 \r\n\t"},"children":[]}]};exports.arrows_drag_left_dashed=arrows_drag_left_dashed;var arrows_drag_right={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"31","y1":"32","x2":"63","y2":"32"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"31","y1":"32","x2":"63","y2":"32"},"children":[]}]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"16","cy":"32","r":"15"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"54,41 63,32 \r\n\t54,23 "},"children":[]}]};exports.arrows_drag_right=arrows_drag_right;var arrows_drag_right_dashed={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"31","y1":"32","x2":"63","y2":"32"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"31","y1":"32","x2":"63","y2":"32"},"children":[]}]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"16","cy":"32","r":"15"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"54,41 63,32 \r\n\t54,23 "},"children":[]}]};exports.arrows_drag_right_dashed=arrows_drag_right_dashed;var arrows_drag_up={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"33","x2":"32","y2":"1"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"33","x2":"32","y2":"1"},"children":[]}]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"48","r":"15"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"41,10 32,1 23,10 \r\n\t"},"children":[]}]};exports.arrows_drag_up=arrows_drag_up;var arrows_drag_up_dashed={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"32","y1":"33","x2":"32","y2":"1"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"32","y1":"33","x2":"32","y2":"1"},"children":[]}]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"48","r":"15"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"41,10 32,1 23,10 \r\n\t"},"children":[]}]};exports.arrows_drag_up_dashed=arrows_drag_up_dashed;var arrows_drag_vert={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"40","x2":"64","y2":"40"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"32","x2":"64","y2":"32"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"24","x2":"64","y2":"24"},"children":[]}]};exports.arrows_drag_vert=arrows_drag_vert;var arrows_exclamation={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[]},{"name":"line","attribs":{"stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"17","x2":"32","y2":"39"},"children":[]},{"name":"line","attribs":{"stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"43","x2":"32","y2":"47"},"children":[]}]};exports.arrows_exclamation=arrows_exclamation;var arrows_expand={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"1,12 1,1 12,1 \t\r\n\t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"1,12 1,1 12,1 \t\r\n\t\t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"12,63 1,63 1,52 \r\n\t\t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"12,63 1,63 1,52 \r\n\t\t\t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"63,52 63,63 \r\n\t\t52,63 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"63,52 63,63 \r\n\t\t52,63 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"52,1 63,1 63,12 \r\n\t\t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"52,1 63,1 63,12 \r\n\t\t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"2","y1":"2","x2":"22","y2":"22"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"2","y1":"2","x2":"22","y2":"22"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"42","x2":"62","y2":"62"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"42","x2":"62","y2":"62"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"2","y1":"62","x2":"22","y2":"42"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"2","y1":"62","x2":"22","y2":"42"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"22","x2":"62","y2":"2"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"22","x2":"62","y2":"2"},"children":[]}]}]}]};exports.arrows_expand=arrows_expand;var arrows_expand_diagonal1={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"13","y1":"1","x2":"63","y2":"51"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"13","x2":"51.166","y2":"63.166"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"63,12 63,1 52,1 \r\n\t"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"1,52 1,63 12,63 \r\n\t"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","x1":"1","y1":"63","x2":"26","y2":"38"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","x1":"38","y1":"26","x2":"63","y2":"1"},"children":[]}]};exports.arrows_expand_diagonal1=arrows_expand_diagonal1;var arrows_expand_horizontal1={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"21","y1":"0","x2":"21","y2":"64"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"43","y1":"64","x2":"43","y2":"0"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"8,25 1,32 8,39 \r\n\t"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"32","x2":"21","y2":"32"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"56,39 63,32 \r\n\t56,25 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"63","y1":"32","x2":"43","y2":"32"},"children":[]}]};exports.arrows_expand_horizontal1=arrows_expand_horizontal1;var arrows_expand_vertical1={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"21","x2":"0","y2":"21"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"43","x2":"64","y2":"43"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"39,8 32,1 25,8 \r\n\t"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"1","x2":"32","y2":"21"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"25,56 32,63 \r\n\t39,56 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"63","x2":"32","y2":"43"},"children":[]}]};exports.arrows_expand_vertical1=arrows_expand_vertical1;var arrows_fit_horizontal={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"16,25 9,32 16,39 \r\n\t"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"48,39 55,32 \r\n\t48,25 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"55,32 43,32 9,32 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"63","y1":"0","x2":"63","y2":"64"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"0","x2":"1","y2":"64"},"children":[]}]};exports.arrows_fit_horizontal=arrows_fit_horizontal;var arrows_fit_vertical={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"39,16 32,9 25,16 \r\n\t"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"25,48 32,55 \r\n\t39,48 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,55 32,43 32,9 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"1","x2":"64","y2":"1"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"63","x2":"64","y2":"63"},"children":[]}]};exports.arrows_fit_vertical=arrows_fit_vertical;var arrows_glide={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"45.968,48.968 \r\n\t\t31.967,62.968 18,49 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"45.968,48.968 \r\n\t\t31.967,62.968 18,49 \t"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"18,15 \r\n\t\t32.032,0.968 46.032,14.968 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"18,15 \r\n\t\t32.032,0.968 46.032,14.968 \t"},"children":[]}]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"31.968","cy":"31.968","r":"5"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"49,18 63,32 \r\n\t\t49,46 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"49,18 63,32 \r\n\t\t49,46 \t"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"15.032,45.968 \r\n\t\t1,31.935 14.968,17.968 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"15.032,45.968 \r\n\t\t1,31.935 14.968,17.968 \t"},"children":[]}]}]}]};exports.arrows_glide=arrows_glide;var arrows_glide_horizontal={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"46,15 63,32 \r\n\t\t46,49 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"46,15 63,32 \r\n\t\t46,49 \t"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"18,48.935 \r\n\t\t1,31.935 18,14.935 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"18,48.935 \r\n\t\t1,31.935 18,14.935 \t"},"children":[]}]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"32","cy":"32","r":"5"},"children":[]}]};exports.arrows_glide_horizontal=arrows_glide_horizontal;var arrows_glide_vertical={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"48.968,45.968 \r\n\t\t31.967,62.968 14.968,45.967 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"48.968,45.968 \r\n\t\t31.967,62.968 14.968,45.967 \t"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"15.032,17.967 \r\n\t\t32.032,0.968 49.032,17.968 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"15.032,17.967 \r\n\t\t32.032,0.968 49.032,17.968 \t"},"children":[]}]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"31.968","cy":"31.968","r":"5"},"children":[]}]};exports.arrows_glide_vertical=arrows_glide_vertical;var arrows_hamburger1={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"21","x2":"6","y2":"21"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"21","x2":"64","y2":"21"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"33","x2":"6","y2":"33"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"33","x2":"64","y2":"33"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"45","x2":"6","y2":"45"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"45","x2":"64","y2":"45"},"children":[]}]};exports.arrows_hamburger1=arrows_hamburger1;var arrows_horizontal={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"8,25 1,32 8,39 \r\n\t"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"56,39 63,32 \r\n\t56,25 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,32 43,32 1,32 "},"children":[]}]};exports.arrows_horizontal=arrows_horizontal;var arrows_info={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[]},{"name":"line","attribs":{"stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"47","x2":"32","y2":"25"},"children":[]},{"name":"line","attribs":{"stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"21","x2":"32","y2":"17"},"children":[]}]};exports.arrows_info=arrows_info;var arrows_keyboard_alt={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#231F20","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","width":"62","height":"62"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#231F20","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"6,24 18,24 30,42 \r\n\t58,42 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#231F20","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","x1":"58","y1":"24","x2":"30","y2":"24"},"children":[]}]};exports.arrows_keyboard_alt=arrows_keyboard_alt;var arrows_keyboard_delete={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#231F20","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","width":"62","height":"62"},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#231F20","stroke-width":"2","stroke-miterlimit":"10","points":"55,44 19,44 9,32 19,20 55,20 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#231F20","stroke-width":"2","stroke-miterlimit":"10","x1":"27","y1":"39","x2":"41","y2":"25"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#231F20","stroke-width":"2","stroke-miterlimit":"10","x1":"27","y1":"25","x2":"41","y2":"39"},"children":[]}]};exports.arrows_keyboard_delete=arrows_keyboard_delete;var arrows_keyboard_left={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#231F20","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","width":"62","height":"62"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"38,21 22,32 \r\n\t\t38,43 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"38,21 22,32 \r\n\t\t38,43 \t"},"children":[]}]}]}]};exports.arrows_keyboard_left=arrows_keyboard_left;var arrows_keyboard_return={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#231F20","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","width":"62","height":"62"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,37 55,37 55,18 44,18 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,37 55,37 55,18 44,18 \t"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"18,46 9,37 18,28 \r\n\t"},"children":[]}]};exports.arrows_keyboard_return=arrows_keyboard_return;var arrows_keyboard_right={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#231F20","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","width":"62","height":"62"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"26,21 42,32 \r\n\t\t26,43 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"26,21 42,32 \r\n\t\t26,43 \t"},"children":[]}]}]}]};exports.arrows_keyboard_right=arrows_keyboard_right;var arrows_keyboard_shift={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#231F20","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","width":"62","height":"62"},"children":[]},{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#231F20","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","width":"62","height":"62"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"17,36 32,18 \r\n\t\t47,36 39,36 39.001,46 25,46 25,36 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"17,36 32,18 \r\n\t\t47,36 39,36 39.001,46 25,46 25,36 \t"},"children":[]}]}]}]};exports.arrows_keyboard_shift=arrows_keyboard_shift;var arrows_keyboard_tab={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#231F20","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","width":"62","height":"62"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"39,25 46,32 \r\n\t39,39 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,32 12,32 46,32 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"50","y1":"23","x2":"50","y2":"41"},"children":[]}]};exports.arrows_keyboard_tab=arrows_keyboard_tab;var arrows_keyboard_up={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#231F20","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","width":"62","height":"62"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"21,40 32,24 \r\n\t\t43,40 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"21,40 32,24 \r\n\t\t43,40 \t"},"children":[]}]}]}]};exports.arrows_keyboard_up=arrows_keyboard_up;var arrows_left={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"37,15 20,32 \r\n\t\t37,49 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"37,15 20,32 \r\n\t\t37,49 \t"},"children":[]}]}]}]};exports.arrows_left=arrows_left;var arrows_minus={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"31","x2":"50","y2":"31"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"31","x2":"50","y2":"31"},"children":[]}]}]}]};exports.arrows_minus=arrows_minus;var arrows_move={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"56,39 63,32 \r\n\t56,25 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"8,25 1,32 8,39 \r\n\t"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"32","x2":"27","y2":"32"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"37","y1":"32","x2":"63","y2":"32"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"39,8 32,1 25,8 \r\n\t"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"25,56 32,63 \r\n\t39,56 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"63","x2":"32","y2":"37"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"27","x2":"32","y2":"1"},"children":[]}]};exports.arrows_move=arrows_move;var arrows_move2={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"56,39 63,32 \r\n\t56,25 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"8,25 1,32 8,39 \r\n\t"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"32","x2":"32","y2":"32"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"32","x2":"63","y2":"32"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"39,8 32,1 25,8 \r\n\t"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"25,56 32,63 \r\n\t39,56 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"63","x2":"32","y2":"32"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"32","x2":"32","y2":"1"},"children":[]}]};exports.arrows_move2=arrows_move2;var arrows_move_bottom={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"25,44 32,51 \r\n\t39,44 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,51 32,39 32,5 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"59","x2":"64","y2":"59"},"children":[]}]};exports.arrows_move_bottom=arrows_move_bottom;var arrows_move_left={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"20,25 13,32 \r\n\t20,39 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"59,32 47,32 13,32 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"5","y1":"0","x2":"5","y2":"64"},"children":[]}]};exports.arrows_move_left=arrows_move_left;var arrows_move_right={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"44,39 51,32 \r\n\t44,25 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"51,32 39,32 5,32 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"59","y1":"0","x2":"59","y2":"64"},"children":[]}]};exports.arrows_move_right=arrows_move_right;var arrows_move_top={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"39,20 32,13 \r\n\t25,20 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,59 32,47 32,13 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"5","x2":"64","y2":"5"},"children":[]}]};exports.arrows_move_top=arrows_move_top;var arrows_plus={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"50","x2":"32","y2":"14"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"50","x2":"32","y2":"14"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"32","x2":"50","y2":"32"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"32","x2":"50","y2":"32"},"children":[]}]}]}]};exports.arrows_plus=arrows_plus;var arrows_question={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[]},{"name":"line","attribs":{"stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"30","y1":"43","x2":"30","y2":"47"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M24,21c0-3,2-5,8-5c5,0,8,3,8,7s-6,7-6,7s-4,2-4,8v1\r\n\t"},"children":[]}]};exports.arrows_question=arrows_question;var arrows_remove={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"18.947","y1":"17.153","x2":"45.045","y2":"43.056"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"18.947","y1":"17.153","x2":"45.045","y2":"43.056"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"19.045","y1":"43.153","x2":"44.947","y2":"17.056"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"19.045","y1":"43.153","x2":"44.947","y2":"17.056"},"children":[]}]}]}]};exports.arrows_remove=arrows_remove;var arrows_right={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"27,15 44,32 \r\n\t\t27,49 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"27,15 44,32 \r\n\t\t27,49 \t"},"children":[]}]}]}]};exports.arrows_right=arrows_right;var arrows_rotate={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M33,1c7.678,0,15.354,2.929,21.212,8.787\r\n\t\tC64.91,20.484,65.841,37.248,57.003,49l-6.001,6.002"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M33,1c7.678,0,15.354,2.929,21.212,8.787\r\n\t\tC64.91,20.484,65.841,37.248,57.003,49l-6.001,6.002"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M31,63c-7.678,0-15.354-2.929-21.212-8.787\r\n\t\tC-0.91,43.516-1.841,26.752,6.997,15l6.001-6.002"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M31,63c-7.678,0-15.354-2.929-21.212-8.787\r\n\t\tC-0.91,43.516-1.841,26.752,6.997,15l6.001-6.002"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"51,44 51,55 \r\n\t62,55 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"13,20 13,9 2,9 \r\n\t"},"children":[]}]};exports.arrows_rotate=arrows_rotate;var arrows_rotate_anti={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M31,1C23.322,1,15.646,3.929,9.788,9.787\r\n\t\tC-0.91,20.484-1.841,37.248,6.997,49l6.001,6.002"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M31,1C23.322,1,15.646,3.929,9.788,9.787\r\n\t\tC-0.91,20.484-1.841,37.248,6.997,49l6.001,6.002"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M33,63c7.678,0,15.354-2.929,21.212-8.787\r\n\t\tC64.91,43.516,65.841,26.752,57.003,15l-6.001-6.002"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M33,63c7.678,0,15.354-2.929,21.212-8.787\r\n\t\tC64.91,43.516,65.841,26.752,57.003,15l-6.001-6.002"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"13,44 13,55 2,55 \r\n\t"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"51,20 51,9 62,9 \r\n\t"},"children":[]}]};exports.arrows_rotate_anti=arrows_rotate_anti;var arrows_rotate_anti_dashed={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M31,1c-0.667,0-1.333,0.022-1.998,0.066"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M31,1c-0.667,0-1.333,0.022-1.998,0.066"},"children":[]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4.1705,2.0853","d":"M26.929,1.275\r\n\t\t\t\tC20.659,2.13,14.607,4.967,9.788,9.787C-0.91,20.484-1.841,37.248,6.997,49l3.846,3.847"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4.1705,2.0853","d":"M26.929,1.275\r\n\t\t\t\tC20.659,2.13,14.607,4.967,9.788,9.787C-0.91,20.484-1.841,37.248,6.997,49l3.846,3.847"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11.584","y1":"53.588","x2":"12.998","y2":"55.002"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11.584","y1":"53.588","x2":"12.998","y2":"55.002"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M33,63c0.667,0,1.333-0.022,1.998-0.066"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M33,63c0.667,0,1.333-0.022,1.998-0.066"},"children":[]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4.1705,2.0853","d":"M37.071,62.725\r\n\t\t\t\tc6.27-0.854,12.321-3.691,17.141-8.512C64.91,43.516,65.841,26.752,57.003,15l-3.846-3.847"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4.1705,2.0853","d":"M37.071,62.725\r\n\t\t\t\tc6.27-0.854,12.321-3.691,17.141-8.512C64.91,43.516,65.841,26.752,57.003,15l-3.846-3.847"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"52.416","y1":"10.412","x2":"51.002","y2":"8.998"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"52.416","y1":"10.412","x2":"51.002","y2":"8.998"},"children":[]}]}]}]}]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"13,44 13,55 2,55 \r\n\t"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"51,20 51,9 62,9 \r\n\t"},"children":[]}]};exports.arrows_rotate_anti_dashed=arrows_rotate_anti_dashed;var arrows_rotate_dashed={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M33,1c0.666,0,1.333,0.022,1.998,0.066"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M33,1c0.666,0,1.333,0.022,1.998,0.066"},"children":[]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4.1705,2.0853","d":"M37.071,1.276\r\n\t\t\t\tc6.27,0.854,12.321,3.691,17.141,8.511C64.91,20.484,65.841,37.248,57.003,49l-3.846,3.846"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4.1705,2.0853","d":"M37.071,1.276\r\n\t\t\t\tc6.27,0.854,12.321,3.691,17.141,8.511C64.91,20.484,65.841,37.248,57.003,49l-3.846,3.846"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"52.416","y1":"53.588","x2":"51.002","y2":"55.002"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"52.416","y1":"53.588","x2":"51.002","y2":"55.002"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M31,63c-0.666,0-1.333-0.022-1.998-0.066"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M31,63c-0.666,0-1.333-0.022-1.998-0.066"},"children":[]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4.1705,2.0853","d":"M26.929,62.724\r\n\t\t\t\tc-6.27-0.854-12.321-3.691-17.141-8.511C-0.91,43.516-1.841,26.752,6.997,15l3.846-3.846"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4.1705,2.0853","d":"M26.929,62.724\r\n\t\t\t\tc-6.27-0.854-12.321-3.691-17.141-8.511C-0.91,43.516-1.841,26.752,6.997,15l3.846-3.846"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11.584","y1":"10.412","x2":"12.998","y2":"8.998"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11.584","y1":"10.412","x2":"12.998","y2":"8.998"},"children":[]}]}]}]}]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"51,44 51,55 \r\n\t62,55 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"13,20 13,9 2,9 \r\n\t"},"children":[]}]};exports.arrows_rotate_dashed=arrows_rotate_dashed;var arrows_shrink={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"63","x2":"23","y2":"41"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"63","x2":"23","y2":"41"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"12,41 23,41 \r\n\t\t23,52 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"12,41 23,41 \r\n\t\t23,52 \t"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"63","y1":"63","x2":"41","y2":"41"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"63","y1":"63","x2":"41","y2":"41"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"41,52 41,41 \r\n\t\t52,41 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"41,52 41,41 \r\n\t\t52,41 \t"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"63","y1":"1","x2":"41","y2":"23"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"63","y1":"1","x2":"41","y2":"23"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"52,23 41,23 \r\n\t\t41,12 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"52,23 41,23 \r\n\t\t41,12 \t"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"1","x2":"23","y2":"23"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"1","x2":"23","y2":"23"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"23,12 23,23 \r\n\t\t12,23 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"23,12 23,23 \r\n\t\t12,23 \t"},"children":[]}]}]}]};exports.arrows_shrink=arrows_shrink;var arrows_shrink_diagonal1={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"37","y1":"1","x2":"63","y2":"27"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"37","x2":"27","y2":"63"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"35,18 35,29 \r\n\t46,29 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"28.771,45.771 \r\n\t28.771,34.771 17.771,34.771 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"50","x2":"29","y2":"35"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"35","y1":"29","x2":"50.5","y2":"13.5"},"children":[]}]};exports.arrows_shrink_diagonal1=arrows_shrink_diagonal1;var arrows_shrink_diagonal2={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"35,18 35,29 \r\n\t46,29 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"28.771,45.771 \r\n\t28.771,34.771 17.771,34.771 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"63","x2":"29","y2":"35"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"35","y1":"29","x2":"63","y2":"1"},"children":[]}]};exports.arrows_shrink_diagonal2=arrows_shrink_diagonal2;var arrows_shrink_horizonal2={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"45,25 38,32 \r\n\t45,39 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"38","y1":"32","x2":"64","y2":"32"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"19,39 26,32 \r\n\t19,25 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"32","x2":"0","y2":"32"},"children":[]}]};exports.arrows_shrink_horizonal2=arrows_shrink_horizonal2;var arrows_shrink_horizontal1={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"5","y1":"0","x2":"5","y2":"64"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"59","y1":"0","x2":"59","y2":"64"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"45,25 38,32 \r\n\t45,39 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"38","y1":"32","x2":"59","y2":"32"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"19,39 26,32 \r\n\t19,25 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"32","x2":"5","y2":"32"},"children":[]}]};exports.arrows_shrink_horizontal1=arrows_shrink_horizontal1;var arrows_shrink_vertical1={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"5","x2":"0","y2":"5"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"59","x2":"0","y2":"59"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"25,19 32,26 \r\n\t39,19 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"26","x2":"32","y2":"5"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"39,45 32,38 \r\n\t25,45 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"38","x2":"32","y2":"59"},"children":[]}]};exports.arrows_shrink_vertical1=arrows_shrink_vertical1;var arrows_shrink_vertical2={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"25,19 32,26 \r\n\t39,19 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"26","x2":"32","y2":"0"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"39,45 32,38 \r\n\t25,45 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"38","x2":"32","y2":"64"},"children":[]}]};exports.arrows_shrink_vertical2=arrows_shrink_vertical2;var arrows_sign_down={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"15,45 15,1 49,1 49,45 31.999,63 "},"children":[]}]};exports.arrows_sign_down=arrows_sign_down;var arrows_sign_left={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"19,15 63,15 63,49 19,49 1,31.999 "},"children":[]}]};exports.arrows_sign_left=arrows_sign_left;var arrows_sign_right={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"45,49 1,49 1,15 45,15 63,32.001 "},"children":[]}]};exports.arrows_sign_right=arrows_sign_right;var arrows_sign_up={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"49,19 49,63 15,63 15,19 32.001,1 "},"children":[]}]};exports.arrows_sign_up=arrows_sign_up;var arrows_slide_down1={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"27,63 27,1 46,1 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"27,63 27,1 46,1 \t"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"18,54 27,63 \r\n\t36,54 "},"children":[]}]};exports.arrows_slide_down1=arrows_slide_down1;var arrows_slide_down2={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"37,63 37,1 18,1 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"37,63 37,1 18,1 \t"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"46,54 37,63 \r\n\t28,54 "},"children":[]}]};exports.arrows_slide_down2=arrows_slide_down2;var arrows_slide_left1={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,27 63,27 63,46 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,27 63,27 63,46 \t"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"10,18 1,27 10,36 \r\n\t"},"children":[]}]};exports.arrows_slide_left1=arrows_slide_left1;var arrows_slide_left2={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,37 63,37 63,18 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,37 63,37 63,18 \t"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"10,46 1,37 10,28 \r\n\t"},"children":[]}]};exports.arrows_slide_left2=arrows_slide_left2;var arrows_slide_right1={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,27 1,27 1,46 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,27 1,27 1,46 \t"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"54,18 63,27 \r\n\t54,36 "},"children":[]}]};exports.arrows_slide_right1=arrows_slide_right1;var arrows_slide_right2={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,37 1,37 1,18 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,37 1,37 1,18 \t"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"54,46 63,37 \r\n\t54,28 "},"children":[]}]};exports.arrows_slide_right2=arrows_slide_right2;var arrows_slide_up1={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"37,1 37,63 18,63 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"37,1 37,63 18,63 \t"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"46,10 37,1 28,10 \r\n\t"},"children":[]}]};exports.arrows_slide_up1=arrows_slide_up1;var arrows_slide_up2={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"27,1 27,63 46,63 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"27,1 27,63 46,63 \t"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"18,10 27,1 36,10 \r\n\t"},"children":[]}]};exports.arrows_slide_up2=arrows_slide_up2;var arrows_slim_down={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"0","x2":"32","y2":"63"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"0","x2":"32","y2":"63"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"41,54 32,63 \r\n\t23,54 "},"children":[]}]};exports.arrows_slim_down=arrows_slim_down;var arrows_slim_down_dashed={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"32","y1":"0","x2":"32","y2":"55"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"32","y1":"0","x2":"32","y2":"55"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"41,54 32,63 \r\n\t23,54 "},"children":[]}]};exports.arrows_slim_down_dashed=arrows_slim_down_dashed;var arrows_slim_left={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"32","x2":"1","y2":"32"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"32","x2":"1","y2":"32"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"10,23 1,32 10,41 \r\n\t"},"children":[]}]};exports.arrows_slim_left=arrows_slim_left;var arrows_slim_left_dashed={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"64","y1":"32","x2":"1","y2":"32"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"64","y1":"32","x2":"1","y2":"32"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"10,23 1,32 10,41 \r\n\t"},"children":[]}]};exports.arrows_slim_left_dashed=arrows_slim_left_dashed;var arrows_slim_right={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"32","x2":"63","y2":"32"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"32","x2":"63","y2":"32"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"54,41 63,32 \r\n\t54,23 "},"children":[]}]};exports.arrows_slim_right=arrows_slim_right;var arrows_slim_right_dashed={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"0","y1":"32","x2":"63","y2":"32"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"0","y1":"32","x2":"63","y2":"32"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"54,41 63,32 \r\n\t54,23 "},"children":[]}]};exports.arrows_slim_right_dashed=arrows_slim_right_dashed;var arrows_slim_up={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"64","x2":"32","y2":"1"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"64","x2":"32","y2":"1"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"41,10 32,1 23,10 \r\n\t"},"children":[]}]};exports.arrows_slim_up=arrows_slim_up;var arrows_slim_up_dashed={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"32","y1":"64","x2":"32","y2":"2"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"32","y1":"64","x2":"32","y2":"2"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"41,10 32,1 23,10 \r\n\t"},"children":[]}]};exports.arrows_slim_up_dashed=arrows_slim_up_dashed;var arrows_square_check={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"13,33 25,45 \r\n\t\t49,21 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"13,33 25,45 \r\n\t\t49,21 \t"},"children":[]}]}]},{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"62"},"children":[]}]};exports.arrows_square_check=arrows_square_check;var arrows_square_down={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"15,24 32,41 \r\n\t\t49,24 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"15,24 32,41 \r\n\t\t49,24 \t"},"children":[]}]}]},{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"62"},"children":[]}]};exports.arrows_square_down=arrows_square_down;var arrows_square_downleft={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"47,41 23,41 \r\n\t\t23,17 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"47,41 23,41 \r\n\t\t23,17 \t"},"children":[]}]}]},{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"62"},"children":[]}]};exports.arrows_square_downleft=arrows_square_downleft;var arrows_square_downright={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"41,17 41,41 \r\n\t\t17,41 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"41,17 41,41 \r\n\t\t17,41 \t"},"children":[]}]}]},{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"62"},"children":[]}]};exports.arrows_square_downright=arrows_square_downright;var arrows_square_left={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"37,15 20,32 \r\n\t\t37,49 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"37,15 20,32 \r\n\t\t37,49 \t"},"children":[]}]}]},{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"62"},"children":[]}]};exports.arrows_square_left=arrows_square_left;var arrows_square_minus={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"31","x2":"50","y2":"31"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"31","x2":"50","y2":"31"},"children":[]}]}]},{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"62"},"children":[]}]};exports.arrows_square_minus=arrows_square_minus;var arrows_square_plus={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"50","x2":"32","y2":"14"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"50","x2":"32","y2":"14"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"32","x2":"50","y2":"32"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"32","x2":"50","y2":"32"},"children":[]}]}]},{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"62"},"children":[]}]};exports.arrows_square_plus=arrows_square_plus;var arrows_square_remove={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"18.947","y1":"17.153","x2":"45.045","y2":"43.056"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"18.947","y1":"17.153","x2":"45.045","y2":"43.056"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"19.045","y1":"43.153","x2":"44.947","y2":"17.056"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"19.045","y1":"43.153","x2":"44.947","y2":"17.056"},"children":[]}]}]},{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"62"},"children":[]}]};exports.arrows_square_remove=arrows_square_remove;var arrows_square_right={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"27,15 44,32 \r\n\t\t27,49 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"27,15 44,32 \r\n\t\t27,49 \t"},"children":[]}]}]},{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"62"},"children":[]}]};exports.arrows_square_right=arrows_square_right;var arrows_square_up={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"15,40 32,23 \r\n\t\t49,40 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"15,40 32,23 \r\n\t\t49,40 \t"},"children":[]}]}]},{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"62"},"children":[]}]};exports.arrows_square_up=arrows_square_up;var arrows_square_upleft={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"23,47 23,23 \r\n\t\t47,23 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"23,47 23,23 \r\n\t\t47,23 \t"},"children":[]}]}]},{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"62"},"children":[]}]};exports.arrows_square_upleft=arrows_square_upleft;var arrows_square_upright={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"17,23 41,23 \r\n\t\t41,47 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"17,23 41,23 \r\n\t\t41,47 \t"},"children":[]}]}]},{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"62"},"children":[]}]};exports.arrows_square_upright=arrows_square_upright;var arrows_squares={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"27","height":"27"},"children":[]},{"name":"rect","attribs":{"x":"36","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"27","height":"27"},"children":[]},{"name":"rect","attribs":{"x":"1","y":"36","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"27","height":"27"},"children":[]},{"name":"rect","attribs":{"x":"36","y":"36","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"27","height":"27"},"children":[]}]};exports.arrows_squares=arrows_squares;var arrows_stretch_diagonal1={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"63,12 63,1 52,1 \r\n\t"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"1,52 1,63 12,63 \r\n\t"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","x1":"1","y1":"63","x2":"26","y2":"38"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","x1":"38","y1":"26","x2":"63","y2":"1"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","x1":"24","y1":"24","x2":"40","y2":"40"},"children":[]}]};exports.arrows_stretch_diagonal1=arrows_stretch_diagonal1;var arrows_stretch_diagonal2={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"1,12 1,1 12,1 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"63,52 63,63 \r\n\t52,63 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","x1":"63","y1":"63","x2":"38","y2":"38"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","x1":"26","y1":"26","x2":"1","y2":"1"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","x1":"40","y1":"24","x2":"24","y2":"40"},"children":[]}]};exports.arrows_stretch_diagonal2=arrows_stretch_diagonal2;var arrows_stretch_diagonal3={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"63,12 63,1 52,1 \r\n\t"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"1,52 1,63 12,63 \r\n\t"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","x1":"1","y1":"63","x2":"32","y2":"32"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","x1":"32","y1":"32","x2":"63","y2":"1"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","x1":"1","y1":"1","x2":"63","y2":"63"},"children":[]}]};exports.arrows_stretch_diagonal3=arrows_stretch_diagonal3;var arrows_stretch_diagonal4={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"1,12 1,1 12,1 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"63,52 63,63 \r\n\t52,63 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","x1":"63","y1":"63","x2":"32","y2":"32"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","x1":"32","y1":"32","x2":"1","y2":"1"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","x1":"63","y1":"1","x2":"1","y2":"63"},"children":[]}]};exports.arrows_stretch_diagonal4=arrows_stretch_diagonal4;var arrows_stretch_horizontal1={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"55,40 63,32 \r\n\t55,24 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"9,24 1,32 9,40 \r\n\t"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"2,32 11.677,32 26,32 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"38,32 41.677,32 62,32 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"21","x2":"32","y2":"43"},"children":[]}]};exports.arrows_stretch_horizontal1=arrows_stretch_horizontal1;var arrows_stretch_horizontal2={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"55,40 63,32 \r\n\t55,24 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"9,24 1,32 9,40 \r\n\t"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"2,32 11.677,32 32,32 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,32 41.677,32 62,32 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"0","x2":"32","y2":"64"},"children":[]}]};exports.arrows_stretch_horizontal2=arrows_stretch_horizontal2;var arrows_stretch_vertical1={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"40,9 32,1 24,9 \r\n\t"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"24,55 32,63 \r\n\t40,55 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,62 32,52.323 32,38 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,26 32,22.323 32,2 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"21","y1":"32","x2":"43","y2":"32"},"children":[]}]};exports.arrows_stretch_vertical1=arrows_stretch_vertical1;var arrows_stretch_vertical2={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"40,9 32,1 24,9 \r\n\t"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"24,55 32,63 \r\n\t40,55 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,62 32,52.323 32,32 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,32 32,22.323 32,2 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"32","x2":"64","y2":"32"},"children":[]}]};exports.arrows_stretch_vertical2=arrows_stretch_vertical2;var arrows_switch_horizontal={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"54.083,51 \r\n\t63.083,42 54.083,33 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"63","y1":"42","x2":"9","y2":"42"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"10.083,13 \r\n\t1.083,22 10.083,31 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"22","x2":"55","y2":"22"},"children":[]}]};exports.arrows_switch_horizontal=arrows_switch_horizontal;var arrows_switch_vertical={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"51.083,10 \r\n\t42.083,1 33.083,10 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42.083","y1":"1","x2":"42","y2":"55"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"13.083,54 \r\n\t22.083,63 31.083,54 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22.083","y1":"63","x2":"22","y2":"9"},"children":[]}]};exports.arrows_switch_vertical=arrows_switch_vertical;var arrows_up={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"15,40 32,23 \r\n\t\t49,40 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"15,40 32,23 \r\n\t\t49,40 \t"},"children":[]}]}]}]};exports.arrows_up=arrows_up;var arrows_up_double={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"15,32.936 \r\n\t\t32,15.936 49,32.936 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"15,32.936 \r\n\t\t32,15.936 49,32.936 \t"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"15,47.936 \r\n\t\t32,30.936 49,47.936 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"15,47.936 \r\n\t\t32,30.936 49,47.936 \t"},"children":[]}]}]}]};exports.arrows_up_double=arrows_up_double;var arrows_upright={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"17,23 41,23 \r\n\t\t41,47 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"17,23 41,23 \r\n\t\t41,47 \t"},"children":[]}]}]}]};exports.arrows_upright=arrows_upright;var arrows_vertical={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"39,8 32,1 25,8 \r\n\t"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"25,56 32,63 \r\n\t39,56 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,63 32,43 32,1 "},"children":[]}]};exports.arrows_vertical=arrows_vertical;var basic_accelerator={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32.001,0.887c17.184,0,31.113,13.929,31.112,31.113\r\n\tC63.114,49.185,49.184,63.115,32,63.113C14.815,63.114,0.887,49.185,0.888,32.001C0.885,14.816,14.815,0.887,32.001,0.887z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M10,32c0-5.63,2.148-11.26,6.444-15.556\r\n\tc8.591-8.593,22.521-8.593,31.112,0C51.852,20.74,54,26.37,54,32"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"24","y1":"26","x2":"30.333","y2":"33.333"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"35","r":"2"},"children":[]}]};exports.basic_accelerator=basic_accelerator;var basic_alarm={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"26"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,20 32,32 40,36 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"21.995","y1":"56.005","x2":"15","y2":"63"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"49","y1":"63","x2":"42.005","y2":"56.005"},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,8 5,4 15,6 3,18 "},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"59,4 63,8 61,18 49,6 "},"children":[]}]};exports.basic_alarm=basic_alarm;var basic_anchor={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"13","x2":"32","y2":"63"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"19,50 9,47 6,57 \r\n\t"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"45,50 55,47 \r\n\t59,57 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","d":"M54.752,47\r\n\tC51.555,56.301,42.576,63,32,63c-10.575,0-19.553-6.698-22.751-15.998"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","x1":"23","y1":"17","x2":"41","y2":"17"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"7","r":"6"},"children":[]}]};exports.basic_anchor=basic_anchor;var basic_anticlockwise={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,12 32,32 41,41 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"4","y1":"32","x2":"8","y2":"32"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"56","y1":"32","x2":"60","y2":"32"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"60","x2":"32","y2":"56"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"8","x2":"32","y2":"4"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32,63C14.879,63,1,49.121,1,32S14.879,1,32,1"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32,63c17.121,0,31-13.879,31-31\r\n\tc0-6.713-2.134-12.926-5.759-18l-5.62-5.621"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"51,19 51,8 62,8 \r\n\t"},"children":[]}]};exports.basic_anticlockwise=basic_anticlockwise;var basic_archive={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"5,41 11,1 53,1 59,41 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M21,41c0,6.075,4.925,11,11,11s11-4.925,11-11h16v22\r\n\tH5V41H21z"},"children":[]}]};exports.basic_archive=basic_archive;var basic_archive_full={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"5,41 11,1 53,1 59,41 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M21,41c0,6.075,4.925,11,11,11s11-4.925,11-11h16v22\r\n\tH5V41H21z"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"12","y1":"31","x2":"52","y2":"31"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"21","x2":"50","y2":"21"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"11","x2":"48","y2":"11"},"children":[]}]};exports.basic_archive_full=basic_archive_full;var basic_ban={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.919,10.08c12.108,12.106,12.108,31.733,0,43.84\r\n\tc-12.105,12.107-31.732,12.107-43.838,0c-12.108-12.106-12.108-31.733,0-43.84C22.187-2.027,41.813-2.027,53.919,10.08z"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10.08","y1":"10.08","x2":"53.92","y2":"53.92"},"children":[]}]};exports.basic_ban=basic_ban;var basic_battery_charge={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"1","y":"21","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"58","height":"24"},"children":[{"name":"rect","attribs":{"x":"1","y":"21","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"58","height":"24"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"59,27 63,27 63,39 59,39 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"59,27 63,27 63,39 59,39 \t"},"children":[]}]},{"name":"rect","attribs":{"x":"5","y":"25","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"50","height":"16"},"children":[{"name":"rect","attribs":{"x":"5","y":"25","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"50","height":"16"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"22,33 29,30 29,36 36,33 "},"children":[]}]};exports.basic_battery_charge=basic_battery_charge;var basic_battery_empty={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"1","y":"21","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"58","height":"24"},"children":[{"name":"rect","attribs":{"x":"1","y":"21","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"58","height":"24"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"59,27 63,27 63,39 59,39 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"59,27 63,27 63,39 59,39 \t"},"children":[]}]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"18,41 5,41 5,25 14,25 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"18,41 5,41 5,25 14,25 \t"},"children":[]}]}]}]};exports.basic_battery_empty=basic_battery_empty;var basic_battery_full={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"1","y":"21","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"58","height":"24"},"children":[{"name":"rect","attribs":{"x":"1","y":"21","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"58","height":"24"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"59,27 63,27 63,39 59,39 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"59,27 63,27 63,39 59,39 \t"},"children":[]}]},{"name":"rect","attribs":{"x":"5","y":"25","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"50","height":"16"},"children":[{"name":"rect","attribs":{"x":"5","y":"25","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"50","height":"16"},"children":[]}]}]}]};exports.basic_battery_full=basic_battery_full;var basic_battery_half={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"1","y":"21","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"58","height":"24"},"children":[{"name":"rect","attribs":{"x":"1","y":"21","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"58","height":"24"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"59,27 63,27 63,39 59,39 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"59,27 63,27 63,39 59,39 \t"},"children":[]}]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"33,41 5,41 5,25 29,25 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"33,41 5,41 5,25 29,25 \t"},"children":[]}]}]}]};exports.basic_battery_half=basic_battery_half;var basic_bolt={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"40,1 17,37 31,37 \r\n\t24,63 50,27 36,27 "},"children":[]}]};exports.basic_bolt=basic_bolt;var basic_book={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"7","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"46","height":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"15","y1":"63","x2":"15","y2":"2"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"15","x2":"48","y2":"15"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"21","x2":"48","y2":"21"},"children":[]}]};exports.basic_book=basic_book;var basic_book_pen={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"46","height":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"9","y1":"63","x2":"9","y2":"2"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"15","x2":"42","y2":"15"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"21","x2":"42","y2":"21"},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,3 63,53 59,61 55,53 55,3 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"55,7 51,7 51,17 "},"children":[]}]};exports.basic_book_pen=basic_book_pen;var basic_book_pencil={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"46","height":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"9","y1":"63","x2":"9","y2":"2"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"15","x2":"42","y2":"15"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"21","x2":"42","y2":"21"},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"55,1 55,54 59,62 63,54 63,1 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"55","y1":"11","x2":"63","y2":"11"},"children":[]}]};exports.basic_book_pencil=basic_book_pencil;var basic_bookmark={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"18,1 46,1 46,62 32,48 18,62 "},"children":[]}]};exports.basic_bookmark=basic_bookmark;var basic_calculator={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"62"},"children":[{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"62"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"18","y1":"8","x2":"18","y2":"28"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"18","x2":"8","y2":"18"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"56","y1":"18","x2":"36","y2":"18"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"54","x2":"26","y2":"38"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"38","x2":"26","y2":"54"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"36","y1":"43","x2":"56","y2":"43"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"36","y1":"49","x2":"56","y2":"49"},"children":[]}]};exports.basic_calculator=basic_calculator;var basic_calendar={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[]}]},{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]},{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]},{"name":"rect","attribs":{"x":"10","y":"24","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"10","height":"10"},"children":[{"name":"rect","attribs":{"x":"10","y":"24","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"10","height":"10"},"children":[]}]},{"name":"rect","attribs":{"x":"10","y":"42","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"10","height":"10"},"children":[{"name":"rect","attribs":{"x":"10","y":"42","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"10","height":"10"},"children":[]}]},{"name":"rect","attribs":{"x":"44","y":"24","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"10","height":"10"},"children":[{"name":"rect","attribs":{"x":"44","y":"24","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"10","height":"10"},"children":[]}]},{"name":"rect","attribs":{"x":"44","y":"42","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"10","height":"10"},"children":[{"name":"rect","attribs":{"x":"44","y":"42","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"10","height":"10"},"children":[]}]},{"name":"rect","attribs":{"x":"27","y":"24","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"10","height":"10"},"children":[{"name":"rect","attribs":{"x":"27","y":"24","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"10","height":"10"},"children":[]}]},{"name":"rect","attribs":{"x":"27","y":"42","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"10","height":"10"},"children":[{"name":"rect","attribs":{"x":"27","y":"42","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"10","height":"10"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"18","x2":"63","y2":"18"},"children":[]}]};exports.basic_calendar=basic_calendar;var basic_cards_diamonds={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"44,59 16,45 36,5 63,19 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"31.899,14.004 28,6 1,20 19,59 32,52.964 \r\n\t"},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"35,41 46,36 45,24 34,29 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"38","y1":"9","x2":"37","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"7","y1":"23","x2":"6","y2":"21"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"43","y1":"53","x2":"42","y2":"55"},"children":[]}]};exports.basic_cards_diamonds=basic_cards_diamonds;var basic_cards_hearts={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"44,59 16,45 36,5 63,19 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"31.899,14.004 28,6 1,20 19,59 32,52.964 \r\n\t"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"38","y1":"9","x2":"37","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"7","y1":"23","x2":"6","y2":"21"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"43","y1":"53","x2":"42","y2":"55"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M33,25c-2.848,5.281,3,15,3,15s11.151,0.28,14-5\r\n\tc1.18-2.188,1.377-5.718-1-7c-2.188-1.18-5.82-1.188-7,1c1.18-2.188,0.188-4.82-2-6C37.624,21.718,34.181,22.813,33,25z"},"children":[]}]};exports.basic_cards_hearts=basic_cards_hearts;var basic_case={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"1","y":"18","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"36"},"children":[{"name":"rect","attribs":{"x":"1","y":"18","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"36"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"30","x2":"63","y2":"30"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"27,30 27,36 37,36 37,30 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M23,18c0,0,0-8,9-8s9,8,9,8"},"children":[]}]};exports.basic_case=basic_case;var basic_chronometer={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M51.799,15.202\r\n\t\tc10.936,10.933,10.936,28.662,0,39.595c-10.935,10.938-28.664,10.938-39.598,0c-10.935-10.933-10.935-28.662,0-39.595\r\n\t\tC23.135,4.266,40.864,4.266,51.799,15.202z"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M51.799,15.202\r\n\t\tc10.936,10.933,10.936,28.662,0,39.595c-10.935,10.938-28.664,10.938-39.598,0c-10.935-10.933-10.935-28.662,0-39.595\r\n\t\tC23.135,4.266,40.864,4.266,51.799,15.202z"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,7 32,1 38,1 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,7 32,1 38,1 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"1","x2":"32","y2":"1"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"1","x2":"32","y2":"1"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"63","x2":"32","y2":"59"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"63","x2":"32","y2":"59"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"11","x2":"32","y2":"7"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"11","x2":"32","y2":"7"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"4","y1":"35","x2":"8","y2":"35"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"4","y1":"35","x2":"8","y2":"35"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"56","y1":"35","x2":"60","y2":"35"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"56","y1":"35","x2":"60","y2":"35"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14.564","y1":"17.565","x2":"17.394","y2":"20.394"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14.564","y1":"17.565","x2":"17.394","y2":"20.394"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46.606","y1":"49.606","x2":"49.436","y2":"52.436"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46.606","y1":"49.606","x2":"49.436","y2":"52.436"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"49.436","y1":"17.565","x2":"46.607","y2":"20.394"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"49.436","y1":"17.565","x2":"46.607","y2":"20.394"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"17.395","y1":"49.606","x2":"14.564","y2":"52.436"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"17.395","y1":"49.606","x2":"14.564","y2":"52.436"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"21","x2":"32","y2":"33"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"21","x2":"32","y2":"33"},"children":[]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"35","r":"3"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"35","r":"3"},"children":[]}]}]}]};exports.basic_chronometer=basic_chronometer;var basic_clessidre={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"14","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"36","height":"4"},"children":[]},{"name":"rect","attribs":{"x":"14","y":"59","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"36","height":"4"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M18,59c0,0,0-8,0-14s29-19,29-25c0-2,0-15,0-15"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M47,59c0,0,0-8,0-14S18,26,18,20c0-2,0-15,0-15"},"children":[]}]};exports.basic_clessidre=basic_clessidre;var basic_clock={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081\r\n\t\tc12.107,12.105,12.107,31.732,0,43.838c-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838\r\n\t\tC22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081\r\n\t\tc12.107,12.105,12.107,31.732,0,43.838c-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838\r\n\t\tC22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,12 32,32 41,41 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,12 32,32 41,41 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"4","y1":"32","x2":"8","y2":"32"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"4","y1":"32","x2":"8","y2":"32"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"56","y1":"32","x2":"60","y2":"32"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"56","y1":"32","x2":"60","y2":"32"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"60","x2":"32","y2":"56"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"60","x2":"32","y2":"56"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"8","x2":"32","y2":"4"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"8","x2":"32","y2":"4"},"children":[]}]}]}]};exports.basic_clock=basic_clock;var basic_clockwise={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,12 32,32 41,41 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"4","y1":"32","x2":"8","y2":"32"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"56","y1":"32","x2":"60","y2":"32"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"60","x2":"32","y2":"56"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"8","x2":"32","y2":"4"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32,63c17.121,0,31-13.879,31-31S49.121,1,32,1"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32,63C14.879,63,1,49.121,1,32\r\n\tc0-6.713,2.134-12.926,5.759-18l5.62-5.621"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"13,19 13,8 2,8 \r\n\t"},"children":[]}]};exports.basic_clockwise=basic_clockwise;var basic_cloud={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M41,50h14c4.565,0,8-3.582,8-8s-3.435-8-8-8\r\n\tc0-11.046-9.52-20-20.934-20C23.966,14,14.8,20.732,13,30c0,0-0.831,0-1.667,0C5.626,30,1,34.477,1,40s4.293,10,10,10H41"},"children":[]}]};exports.basic_cloud=basic_cloud;var basic_clubs={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M30,38v6c0,0,0,19-7,19h9"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32,63h9c-7,0-7-19-7-19v-6"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","d":"M34,38\r\n\tc0,7.457,8.044,12.125,15.5,12.125c7.455,0,13.5-6.043,13.5-13.5s-6.045-13.5-13.5-13.5c-2.678,0-5.168,0.789-7.267,2.135\r\n\tc1.995-2.345,3.204-5.378,3.204-8.697c0-7.422-6.017-13.438-13.438-13.438S18.562,9.141,18.562,16.562\r\n\tc0,3.32,1.21,6.353,3.205,8.697c-2.1-1.345-4.59-2.135-7.268-2.135c-7.456,0-13.5,6.043-13.5,13.5s6.044,13.5,13.5,13.5\r\n\tC21.955,50.125,30,45.457,30,38"},"children":[]}]};exports.basic_clubs=basic_clubs;var basic_compass={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"35","r":"28.292"},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"37,40 45,21 26,29 \r\n\t19,47 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"29","x2":"37","y2":"40"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M36.9,7C36.965,6.677,37,6.342,37,6\r\n\tc0-2.761-2.239-5-5-5s-5,2.239-5,5c0,0.342,0.035,0.677,0.1,1"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"7","x2":"32","y2":"12"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"58","x2":"32","y2":"63"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"60","y1":"35","x2":"55","y2":"35"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"9","y1":"35","x2":"4","y2":"35"},"children":[]}]};exports.basic_compass=basic_compass;var basic_cup={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M16,27c0,4.418,6.059,8,16,8s16-3.582,16-8V1H16V27z\r\n\t"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"63","x2":"44","y2":"63"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"35","x2":"32","y2":"63"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M16,7H7c0,0,0,9,9,9"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M48,7h9c0,0,0,9-9,9"},"children":[]}]};exports.basic_cup=basic_cup;var basic_diamonds={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"33,63 56,32 33,1 10,32 "},"children":[]}]};exports.basic_diamonds=basic_diamonds;var basic_display={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"1","y":"10","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"41"},"children":[{"name":"rect","attribs":{"x":"1","y":"10","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"41"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"63","x2":"42","y2":"63"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"63","x2":"42","y2":"63"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"63","x2":"32","y2":"51"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"63","x2":"32","y2":"51"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"43","x2":"64","y2":"43"},"children":[]}]};exports.basic_display=basic_display;var basic_download={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"40,50 32,58 \r\n\t24,50 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"58","x2":"32","y2":"26"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"58","x2":"32","y2":"26"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"24,42 1,42 1,6 63,6 63,42 40,42 "},"children":[]}]};exports.basic_download=basic_download;var basic_exclamation={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[]},{"name":"line","attribs":{"stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"17","x2":"32","y2":"39"},"children":[]},{"name":"line","attribs":{"stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"43","x2":"32","y2":"47"},"children":[]}]};exports.basic_exclamation=basic_exclamation;var basic_eye={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M1,32c0,0,11,15,31,15s31-15,31-15S52,17,32,17\r\n\tS1,32,1,32z"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"7"},"children":[]}]};exports.basic_eye=basic_eye;var basic_eye_closed={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M1,32c0,0,11,15,31,15s31-15,31-15S52,17,32,17\r\n\tS1,32,1,32z"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"7"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"9","y1":"55","x2":"55","y2":"9"},"children":[]}]};exports.basic_eye_closed=basic_eye_closed;var basic_female={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"39","cy":"25","r":"24"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"63","x2":"22","y2":"42"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"46","x2":"18","y2":"63"},"children":[]}]};exports.basic_female=basic_female;var basic_flag1={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"12","y1":"0","x2":"12","y2":"64"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,6 53,6 47,18 53,30 12,30 "},"children":[]}]};exports.basic_flag1=basic_flag1;var basic_flag2={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"7","y1":"0","x2":"7","y2":"64"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32.062,6 26,11 26,35 57,35 51,23 57,11 \r\n\t26,11 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"26,30 7,30 7,6 32,6 32,11 "},"children":[]}]};exports.basic_flag2=basic_flag2;var basic_floppydisk={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,63 1,63 1,1 51,1 63,13 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,63 1,63 1,1 51,1 63,13 \t"},"children":[]}]}]},{"name":"rect","attribs":{"x":"7","y":"31","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"50","height":"32"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"39","x2":"50","y2":"39"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"47","x2":"50","y2":"47"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"55","x2":"50","y2":"55"},"children":[]},{"name":"rect","attribs":{"x":"15","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"34","height":"19"},"children":[]},{"name":"rect","attribs":{"x":"38","y":"5","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"5","height":"11"},"children":[]}]};exports.basic_floppydisk=basic_floppydisk;var basic_folder={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,18 63,54 1,54 1,10 22,10 30,18 "},"children":[]}]};exports.basic_folder=basic_folder;var basic_folder_multiple={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"56,22 56,54 1,54 1,15 19.629,15 26.726,22 \r\n\t"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"8,13 8,7 26.629,7 33.726,14 63,14 63,46 \r\n\t58,46 "},"children":[]}]};exports.basic_folder_multiple=basic_folder_multiple;var basic_gear={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,1 26,1 26,10 20,12 14,6 6,14 12,20 \r\n\t\t10,26 1,26 1,38 10,38 12,44 6,50 14,58 20,52 26,54 26,63 32,63 38,63 38,54 44,52 50,58 58,50 52,44 54,38 63,38 63,26 54,26 \r\n\t\t52,20 58,14 50,6 44,12 38,10 38,1 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,1 26,1 26,10 20,12 14,6 6,14 12,20 \r\n\t\t10,26 1,26 1,38 10,38 12,44 6,50 14,58 20,52 26,54 26,63 32,63 38,63 38,54 44,52 50,58 58,50 52,44 54,38 63,38 63,26 54,26 \r\n\t\t52,20 58,14 50,6 44,12 38,10 38,1 \t"},"children":[]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"6"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"6"},"children":[]}]}]}]};exports.basic_gear=basic_gear;var basic_globe={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32,1c14.359,0,27,12.641,27,27S46.359,55,32,55\r\n\tc-10,0-13-4-13-4"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"28","r":"20"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"54","x2":"32","y2":"64"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"63","x2":"42","y2":"63"},"children":[]}]};exports.basic_globe=basic_globe;var basic_gunsight={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"48","x2":"32","y2":"64"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"0","x2":"32","y2":"16"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"32","x2":"0","y2":"32"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"32","x2":"48","y2":"32"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"24"},"children":[]}]};exports.basic_gunsight=basic_gunsight;var basic_hammer={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"20","x2":"41","y2":"39"},"children":[]},{"name":"rect","attribs":{"x":"46.257","y":"35.065","transform":"matrix(-0.7071 0.7071 -0.7071 -0.7071 120.5036 47.0858)","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"8.485","height":"26.87"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M1,19L17,3c6,6,13,1,13,1l4,4L12,30L1,19z"},"children":[]}]};exports.basic_hammer=basic_hammer;var basic_headset={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M11,48C5.477,48,1,43.523,1,38s4.477-10,10-10h2v20\r\n\tH11z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53,28c5.523,0,10,4.477,10,10s-4.477,10-10,10h-2\r\n\tV28H53z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M13,31v-9c0,0,0-16,19-16s19,16,19,16v6"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"51,48 51,53 36,59 28,59 28,55 36,55 \r\n\t36,58 "},"children":[]}]};exports.basic_headset=basic_headset;var basic_heart={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M1,21c0,20,31,38,31,38s31-18,31-38\r\n\tc0-8.285-6-16-15-16c-8.285,0-16,5.715-16,14c0-8.285-7.715-14-16-14C7,5,1,12.715,1,21z"},"children":[]}]};exports.basic_heart=basic_heart;var basic_heart_broken={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M1,21c0,20,31,38,31,38s31-18,31-38\r\n\tc0-8.285-6-16-15-16c-8.285,0-16,5.715-16,14c0-8.285-7.715-14-16-14C7,5,1,12.715,1,21z"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"29,57 36,50 30,44 36,38 30,32 38,24 \r\n\t32,19 32,17 "},"children":[]}]};exports.basic_heart_broken=basic_heart_broken;var basic_helm={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"40","x2":"32","y2":"64"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"0","x2":"32","y2":"24"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"38","y1":"37","x2":"59","y2":"54"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"5","y1":"10","x2":"26","y2":"27"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"38","y1":"27","x2":"59","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"5","y1":"53","x2":"26","y2":"37"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"8"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"24"},"children":[]}]};exports.basic_helm=basic_helm;var basic_home={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,3 2,33 11,33 11,63 23,63 23,47 39,47 \r\n\t39,63 51,63 51,33 62,33 "},"children":[]}]};exports.basic_home=basic_home;var basic_info={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[]},{"name":"line","attribs":{"stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"47","x2":"32","y2":"25"},"children":[]},{"name":"line","attribs":{"stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"21","x2":"32","y2":"17"},"children":[]}]};exports.basic_info=basic_info;var basic_ipod={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"16","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"32","height":"62"},"children":[{"name":"rect","attribs":{"x":"16","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"32","height":"62"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"36","x2":"48","y2":"36"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"36","x2":"48","y2":"36"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"5","x2":"48","y2":"5"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"5","x2":"48","y2":"5"},"children":[]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"31.5","cy":"49.5","r":"9.5"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"31.5","cy":"49.5","r":"9.5"},"children":[]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"31.5","cy":"49.5","r":"2.5"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"31.5","cy":"49.5","r":"2.5"},"children":[]}]}]}]};exports.basic_ipod=basic_ipod;var basic_joypad={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M50,27H14C6.82,27,1,32.82,1,40s5.82,13,13,13\r\n\tc4.6,0,8.632-2.396,10.943-6h14.113C41.368,50.604,45.4,53,50,53c7.18,0,13-5.82,13-13S57.18,27,50,27z"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","x1":"14","y1":"32","x2":"14","y2":"48"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","x1":"22","y1":"40","x2":"6","y2":"40"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"50","cy":"39.99","r":"7"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","x1":"50","y1":"33","x2":"50","y2":"47"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","x1":"57","y1":"40","x2":"43","y2":"40"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,27 32,21 46,21 46,14 36,14 36,11 "},"children":[]}]};exports.basic_joypad=basic_joypad;var basic_key={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"51","cy":"32","r":"12"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"32","x2":"38","y2":"32"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"6","y1":"32","x2":"6","y2":"42"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"32","x2":"14","y2":"38"},"children":[]}]};exports.basic_key=basic_key;var basic_keyboard={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"22","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"30"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"7,22 7,14 21,14 21,7 11,7 11,4 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"4","y1":"29","x2":"8","y2":"29"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"29","x2":"14","y2":"29"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"29","x2":"20","y2":"29"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"29","x2":"26","y2":"29"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"29","x2":"32","y2":"29"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"34","y1":"29","x2":"38","y2":"29"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"40","y1":"29","x2":"44","y2":"29"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"29","x2":"50","y2":"29"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"52","y1":"29","x2":"56","y2":"29"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"4","y1":"45","x2":"8","y2":"45"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"45","x2":"14","y2":"45"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"45","x2":"42","y2":"45"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"50","y1":"45","x2":"54","y2":"45"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"56","y1":"45","x2":"60","y2":"45"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"44","y1":"45","x2":"48","y2":"45"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"8","y1":"37","x2":"12","y2":"37"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"37","x2":"18","y2":"37"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"37","x2":"24","y2":"37"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"37","x2":"30","y2":"37"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"37","x2":"36","y2":"37"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"38","y1":"37","x2":"42","y2":"37"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"44","y1":"37","x2":"48","y2":"37"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"50","y1":"37","x2":"54","y2":"37"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"56","y1":"37","x2":"60","y2":"37"},"children":[]}]};exports.basic_keyboard=basic_keyboard;var basic_laptop={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"8","y":"12","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"48","height":"34"},"children":[{"name":"rect","attribs":{"x":"8","y":"12","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"48","height":"34"},"children":[]}]},{"name":"rect","attribs":{"x":"1","y":"46","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"6"},"children":[{"name":"rect","attribs":{"x":"1","y":"46","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"6"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"34","y1":"16","x2":"30","y2":"16"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"34","y1":"16","x2":"30","y2":"16"},"children":[]}]}]}]};exports.basic_laptop=basic_laptop;var basic_life_buoy={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"31"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"15"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"18","x2":"26","y2":"1"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"38","y1":"18","x2":"38","y2":"1"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"63","x2":"26","y2":"46"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"38","y1":"63","x2":"38","y2":"46"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"26","x2":"63","y2":"26"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"38","x2":"63","y2":"38"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"26","x2":"18","y2":"26"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"38","x2":"18","y2":"38"},"children":[]}]};exports.basic_life_buoy=basic_life_buoy;var basic_lightbulb={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M21,40v5h22l0.001-5.107C49,36.195,53,29.564,53,22\r\n\tc0-11.598-9.402-21-21-21s-21,9.402-21,21C11,29.565,14.998,36.304,21,40z"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"45","x2":"25","y2":"25"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"36","y1":"45","x2":"39","y2":"25"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"25,26 29,29 32,26 35,29 39,26 "},"children":[]},{"name":"rect","attribs":{"x":"21","y":"45","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"22","height":"6"},"children":[]},{"name":"rect","attribs":{"x":"23","y":"51","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"18","height":"6"},"children":[]},{"name":"rect","attribs":{"x":"25","y":"57","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"14","height":"6"},"children":[]}]};exports.basic_lightbulb=basic_lightbulb;var basic_link={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M37.004,32.166c1.224,0.533,2.576,0.829,3.997,0.828\r\n\tc3.271-0.003,6.175-1.576,7.998-4.006L60.99,16.98c1.255-1.673,1.998-3.751,1.996-6.002c-0.003-5.522-4.484-9.997-10.007-9.993\r\n\tc-2.251,0.002-4.327,0.747-5.999,2.004L33.989,15.998c-1.768,1.805-2.997,4.277-2.996,7.003c0.001,1.424,0.3,2.778,0.837,4.003"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M37.004,32.166"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M31.831,27.004c0.053,0.121,0.107,0.24,0.166,0.358"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M26.997,31.836c-1.225-0.535-2.577-0.831-3.998-0.83\r\n\tc-2.251,0.002-4.328,0.747-5.999,2.004L4.01,46.02c-1.768,1.804-2.997,4.276-2.995,7.002c0.003,5.522,4.484,9.997,10.007,9.993\r\n\tc3.271-0.003,6.174-1.576,7.997-4.006L31.01,47.001c1.255-1.673,1.998-3.751,1.996-6.002c-0.001-1.422-0.299-2.774-0.835-3.998"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"23.006","y1":"41.006","x2":"40.994","y2":"22.994"},"children":[]}]};exports.basic_link=basic_link;var basic_lock={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"8","y":"33","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"48","height":"30"},"children":[{"name":"rect","attribs":{"x":"8","y":"33","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"48","height":"30"},"children":[]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M16,33V17c0-8.837,7.163-16,16-16s16,7.163,16,16\r\n\t\tv16"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M16,33V17c0-8.837,7.163-16,16-16s16,7.163,16,16\r\n\t\tv16"},"children":[]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"47","r":"4"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"47","r":"4"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"51","x2":"32","y2":"55"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"51","x2":"32","y2":"55"},"children":[]}]}]}]};exports.basic_lock=basic_lock;var basic_lock_open={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"8","y":"33","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"48","height":"30"},"children":[{"name":"rect","attribs":{"x":"8","y":"33","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"48","height":"30"},"children":[]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M16,33V17c0-8.837,7.163-16,16-16s16,7.163,16,16v3\r\n\t\t"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M16,33V17c0-8.837,7.163-16,16-16s16,7.163,16,16v3\r\n\t\t"},"children":[]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"47","r":"4"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"47","r":"4"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"51","x2":"32","y2":"55"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"51","x2":"32","y2":"55"},"children":[]}]}]}]};exports.basic_lock_open=basic_lock_open;var basic_magic_mouse={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M48,17c0-8.836-7.164-16-16-16S16,8.164,16,17v30\r\n\tc0,8.836,7.164,16,16,16s16-7.164,16-16V17z"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"10","x2":"32","y2":"18"},"children":[]}]};exports.basic_magic_mouse=basic_magic_mouse;var basic_magnifier={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"21","cy":"21","r":"20"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"21","cy":"21","r":"20"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"35","y1":"35","x2":"41","y2":"41"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"35","y1":"35","x2":"41","y2":"41"},"children":[]}]},{"name":"rect","attribs":{"x":"46.257","y":"37.065","transform":"matrix(-0.7071 0.7071 -0.7071 -0.7071 121.9178 50.5)","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"8.485","height":"26.87"},"children":[{"name":"rect","attribs":{"x":"46.257","y":"37.065","transform":"matrix(-0.7071 0.7071 -0.7071 -0.7071 121.9178 50.5)","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"8.485","height":"26.87"},"children":[]}]}]}]};exports.basic_magnifier=basic_magnifier;var basic_magnifier_minus={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"12","y1":"21","x2":"30","y2":"21"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"12","y1":"21","x2":"30","y2":"21"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"21","cy":"21","r":"20"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"21","cy":"21","r":"20"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"35","y1":"35","x2":"41","y2":"41"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"35","y1":"35","x2":"41","y2":"41"},"children":[]}]},{"name":"rect","attribs":{"x":"46.257","y":"37.065","transform":"matrix(-0.7071 0.7071 -0.7071 -0.7071 121.9178 50.5)","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"8.485","height":"26.87"},"children":[{"name":"rect","attribs":{"x":"46.257","y":"37.065","transform":"matrix(-0.7071 0.7071 -0.7071 -0.7071 121.9178 50.5)","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"8.485","height":"26.87"},"children":[]}]}]}]};exports.basic_magnifier_minus=basic_magnifier_minus;var basic_magnifier_plus={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"12","y1":"21","x2":"30","y2":"21"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"12","y1":"21","x2":"30","y2":"21"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"21","y1":"12","x2":"21","y2":"30"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"21","y1":"12","x2":"21","y2":"30"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"21","cy":"21","r":"20"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"21","cy":"21","r":"20"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"35","y1":"35","x2":"41","y2":"41"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"35","y1":"35","x2":"41","y2":"41"},"children":[]}]},{"name":"rect","attribs":{"x":"46.257","y":"37.065","transform":"matrix(-0.7071 0.7071 -0.7071 -0.7071 121.9178 50.5)","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"8.485","height":"26.87"},"children":[{"name":"rect","attribs":{"x":"46.257","y":"37.065","transform":"matrix(-0.7071 0.7071 -0.7071 -0.7071 121.9178 50.5)","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"8.485","height":"26.87"},"children":[]}]}]}]};exports.basic_magnifier_plus=basic_magnifier_plus;var basic_mail={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"1","y":"13","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"37"},"children":[{"name":"rect","attribs":{"x":"1","y":"13","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"37"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,13 32,33 63,13 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,13 32,33 63,13 \t"},"children":[]}]}]}]};exports.basic_mail=basic_mail;var basic_mail_multiple={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"18","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"52","height":"32"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9.887,16 9.887,9 63,9 63,41 55,41 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"0.887,18 27,33.062 53,18 "},"children":[]}]};exports.basic_mail_multiple=basic_mail_multiple;var basic_mail_open={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[]}]}]}]};exports.basic_mail_open=basic_mail_open;var basic_mail_open_text={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"36","y1":"9","x2":"45","y2":"9"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"36","y1":"9","x2":"45","y2":"9"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"19","y1":"17","x2":"45","y2":"17"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"19","y1":"17","x2":"45","y2":"17"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"19","y1":"25","x2":"45","y2":"25"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"19","y1":"25","x2":"45","y2":"25"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t\t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t\t63,26 52.666,21.667 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t\t63,26 52.666,21.667 \t\t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t\t"},"children":[]}]}]}]}]}]};exports.basic_mail_open_text=basic_mail_open_text;var basic_male={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"25","cy":"39","r":"24"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"63","y1":"1","x2":"42","y2":"22"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"45,1 63,1 63,19 \r\n\t"},"children":[]}]};exports.basic_male=basic_male;var basic_map={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,59 22,51 42,59 63,51 63,5 42,13 22,5 \r\n\t\t1,13 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,59 22,51 42,59 63,51 63,5 42,13 22,5 \r\n\t\t1,13 \t"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"5","x2":"22","y2":"51"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"5","x2":"22","y2":"51"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"13","x2":"42","y2":"59"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"13","x2":"42","y2":"59"},"children":[]}]}]}]}]}]};exports.basic_map=basic_map;var basic_message={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,47 63,47 63,5 1,5 1,47 18,47 18,59 "},"children":[]}]};exports.basic_message=basic_message;var basic_message_multiple={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"26,49.042 54.963,49.042 54.963,11.042 \r\n\t1,11.042 1,49.042 14,49.042 14,59.486 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"57,41.042 62.963,41.042 62.963,3.042 \r\n\t9,3.042 9,9 "},"children":[]}]};exports.basic_message_multiple=basic_message_multiple;var basic_message_txt={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"16","x2":"54","y2":"16"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"26","x2":"54","y2":"26"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"36","x2":"54","y2":"36"},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,47 63,47 63,5 1,5 1,47 18,47 18,59 "},"children":[]}]};exports.basic_message_txt=basic_message_txt;var basic_mixer2={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"12","y1":"19","x2":"12","y2":"64"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"52","y1":"0","x2":"52","y2":"45"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"38","x2":"32","y2":"64"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"0","x2":"32","y2":"26"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"12","cy":"13","r":"6"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"52","cy":"51","r":"6"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"6"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"12","y1":"0","x2":"12","y2":"7"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"52","y1":"57","x2":"52","y2":"64"},"children":[]}]};exports.basic_mixer2=basic_mixer2;var basic_mouse={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M48,17c0-8.836-7.164-16-16-16S16,8.164,16,17v30\r\n\tc0,8.836,7.164,16,16,16s16-7.164,16-16V17z"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"1","x2":"32","y2":"21"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"21","x2":"48","y2":"21"},"children":[]}]};exports.basic_mouse=basic_mouse;var basic_notebook={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"11","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"42","height":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"41","y1":"1","x2":"41","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"15","y1":"16","x2":"7","y2":"16"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"15","y1":"8","x2":"7","y2":"8"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"15","y1":"24","x2":"7","y2":"24"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"15","y1":"32","x2":"7","y2":"32"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"15","y1":"40","x2":"7","y2":"40"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"15","y1":"48","x2":"7","y2":"48"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"15","y1":"56","x2":"7","y2":"56"},"children":[]}]};exports.basic_notebook=basic_notebook;var basic_notebook_pen={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,3 63,53 59,61 55,53 55,3 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"55,7 51,7 51,17 "},"children":[]},{"name":"rect","attribs":{"x":"4","y":"3","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"40","height":"58"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"34","y1":"3","x2":"34","y2":"60"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"8","y1":"16","x2":"0","y2":"16"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"8","y1":"8","x2":"0","y2":"8"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"8","y1":"24","x2":"0","y2":"24"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"8","y1":"32","x2":"0","y2":"32"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"8","y1":"40","x2":"0","y2":"40"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"8","y1":"48","x2":"0","y2":"48"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"8","y1":"56","x2":"0","y2":"56"},"children":[]}]};exports.basic_notebook_pen=basic_notebook_pen;var basic_notebook_pencil={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"4","y":"3","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"40","height":"58"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"34","y1":"3","x2":"34","y2":"60"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"8","y1":"16","x2":"0","y2":"16"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"8","y1":"8","x2":"0","y2":"8"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"8","y1":"24","x2":"0","y2":"24"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"8","y1":"32","x2":"0","y2":"32"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"8","y1":"40","x2":"0","y2":"40"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"8","y1":"48","x2":"0","y2":"48"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"8","y1":"56","x2":"0","y2":"56"},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"55,1 55,54 59,62 63,54 63,1 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"55","y1":"11","x2":"63","y2":"11"},"children":[]}]};exports.basic_notebook_pencil=basic_notebook_pencil;var basic_paperplane={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"1,30 63,1 23,41 \r\n\t"},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"34,63 63,1 23,41 \r\n\t"},"children":[]}]};exports.basic_paperplane=basic_paperplane;var basic_pencil_ruler={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,63 1,2 62,63 "},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"14,54 14,30 38,54 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"8","y1":"22","x2":"2","y2":"22"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"6","y1":"30","x2":"2","y2":"30"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"8","y1":"38","x2":"2","y2":"38"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"6","y1":"46","x2":"2","y2":"46"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"8","y1":"54","x2":"2","y2":"54"},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"25,1 19,7 55,43 63,45 61,37 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25","y1":"13","x2":"31","y2":"7"},"children":[]}]};exports.basic_pencil_ruler=basic_pencil_ruler;var basic_photo={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"46,20 38,10 26,10 18,20 1,20 1,52 63,52 \r\n\t\t63,20 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"46,20 38,10 26,10 18,20 1,20 1,52 63,52 \r\n\t\t63,20 \t"},"children":[]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"36","r":"8"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"36","r":"8"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"9","y1":"20","x2":"9","y2":"52"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"9","y1":"20","x2":"9","y2":"52"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"54","y1":"28","x2":"54","y2":"28"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"54","y1":"28","x2":"54","y2":"28"},"children":[]}]}]}]};exports.basic_photo=basic_photo;var basic_picture={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"1","y":"11","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"42"},"children":[{"name":"rect","attribs":{"x":"1","y":"11","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"42"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,47 24,27 36,39 42,31 63,49 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,47 24,27 36,39 42,31 63,49 \t"},"children":[]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"51","cy":"22","r":"5"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"51","cy":"22","r":"5"},"children":[]}]}]}]};exports.basic_picture=basic_picture;var basic_picture_multiple={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"1","y":"16","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"52","height":"40"},"children":[{"name":"rect","attribs":{"x":"1","y":"16","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"52","height":"40"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"10,14 10,8 63,8 63,48 55,48 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,46 15,32 29,48 39,42 53,54 "},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"40","cy":"29","r":"5"},"children":[]}]};exports.basic_picture_multiple=basic_picture_multiple;var basic_pin1={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"16","r":"15"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M22.083,16c0-5.477,4.44-9.917,9.917-9.917"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"64","x2":"32","y2":"31"},"children":[]}]};exports.basic_pin1=basic_pin1;var basic_pin2={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"64","x2":"32","y2":"36"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,1 22,1 22,5 27,9 25,26 16,30 15,36 \r\n\t32,36 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,1 42,1 42,5 37,9 39,26 48,30 49,36 \r\n\t32,36 "},"children":[]}]};exports.basic_pin2=basic_pin2;var basic_postcard={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"1","y":"13","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"41"},"children":[{"name":"rect","attribs":{"x":"1","y":"13","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"41"},"children":[]}]}]},{"name":"rect","attribs":{"x":"49","y":"19","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"8","height":"10"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"18","x2":"39","y2":"49"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"6","y1":"21","x2":"34","y2":"21"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"6","y1":"27","x2":"30","y2":"27"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"6","y1":"33","x2":"32","y2":"33"},"children":[]}]};exports.basic_postcard=basic_postcard;var basic_postcard_multiple={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"1","y":"20","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"53","height":"34"},"children":[{"name":"rect","attribs":{"x":"1","y":"20","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"53","height":"34"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"10,16.999 10,11 63,11 63,45 57,45 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"10,16.999 10,11 63,11 63,45 57,45 \t"},"children":[]}]}]},{"name":"rect","attribs":{"x":"42","y":"25","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"7","height":"8"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"33","y1":"24","x2":"33","y2":"50"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"5","y1":"27","x2":"29","y2":"27"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"5","y1":"32","x2":"26","y2":"32"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"5","y1":"37","x2":"27","y2":"37"},"children":[]}]};exports.basic_postcard_multiple=basic_postcard_multiple;var basic_printer={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"16","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"32","height":"19"},"children":[{"name":"rect","attribs":{"x":"16","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"32","height":"19"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M16.5,52"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M16.5,52"},"children":[]}]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"16,52 1,52 1,20 63,20 63,52 48,52 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"16,52 1,52 1,20 63,20 63,52 48,52 \t"},"children":[]}]},{"name":"rect","attribs":{"x":"16","y":"39","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"32","height":"24"},"children":[{"name":"rect","attribs":{"x":"16","y":"39","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"32","height":"24"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"6","y1":"27","x2":"10","y2":"27"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"6","y1":"27","x2":"10","y2":"27"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"12","y1":"27","x2":"16","y2":"27"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"12","y1":"27","x2":"16","y2":"27"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"47","x2":"42","y2":"47"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"47","x2":"42","y2":"47"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"55","x2":"42","y2":"55"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"55","x2":"42","y2":"55"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M16,52"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M16,52"},"children":[]}]}]}]}]}]};exports.basic_printer=basic_printer;var basic_question={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[]},{"name":"line","attribs":{"stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"30","y1":"43","x2":"30","y2":"47"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M24,21c0-3,2-5,8-5c5,0,8,3,8,7s-6,7-6,7s-4,2-4,8v1\r\n\t"},"children":[]}]};exports.basic_question=basic_question;var basic_rss={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","d":"M63.051,56\r\n\tc0-13.416-4.804-25.711-12.786-35.256"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","d":"M50.265,20.744\r\n\tC40.177,8.677,25.01,1,8.051,1"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","d":"M51.769,56\r\n\tc0-24.145-19.574-43.718-43.718-43.718"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","d":"M40.486,56\r\n\tc0-17.913-14.523-32.436-32.436-32.436"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","d":"M29.205,56\r\n\tc0-11.684-9.472-21.154-21.154-21.154"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"8.051","cy":"56","r":"7.051"},"children":[]}]};exports.basic_rss=basic_rss;var basic_server={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"5,41 11,1 53,1 59,41 "},"children":[]},{"name":"rect","attribs":{"x":"5","y":"41","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"54","height":"22"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"48","cy":"52","r":"3"},"children":[]}]};exports.basic_server=basic_server;var basic_server2={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","d":"M59,56\r\n\tc0,3.866-11.641,7-26,7S7,59.866,7,56"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","d":"M59,40\r\n\tc0,3.866-11.641,7-26,7S7,43.866,7,40"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","d":"M59,24\r\n\tc0,3.866-11.641,7-26,7S7,27.866,7,24"},"children":[]},{"name":"ellipse","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"33","cy":"8","rx":"26","ry":"7"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","x1":"7","y1":"8","x2":"7","y2":"56"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","x1":"59","y1":"8","x2":"59","y2":"56"},"children":[]}]};exports.basic_server2=basic_server2;var basic_server_cloud={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"5,41 11,1 53,1 59,41 "},"children":[]},{"name":"rect","attribs":{"x":"5","y":"41","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"54","height":"22"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"48","cy":"52","r":"3"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M34.887,27H39c1.887,0,3-1,3-3c0-1-1-3-3-3\r\n\tc0-3.604-3.277-6-7-6c-3.295,0-6.413,2.978-7,6l0,0c-2,0-3,2-3,3c0,2,1,3,3,3h10.434"},"children":[]}]};exports.basic_server_cloud=basic_server_cloud;var basic_server_download={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"5,41 11,1 53,1 59,41 "},"children":[]},{"name":"rect","attribs":{"x":"5","y":"41","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"54","height":"22"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"48","cy":"52","r":"3"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"40,23 32,31 \r\n\t24,23 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"31","x2":"32","y2":"11"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"31","x2":"32","y2":"11"},"children":[]}]}]}]};exports.basic_server_download=basic_server_download;var basic_server_upload={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"5,41 11,1 53,1 59,41 "},"children":[]},{"name":"rect","attribs":{"x":"5","y":"41","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"54","height":"22"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"48","cy":"52","r":"3"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"23.998,20 \r\n\t31.998,12 39.998,20 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"31.998","y1":"12","x2":"31.998","y2":"32"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"31.998","y1":"12","x2":"31.998","y2":"32"},"children":[]}]}]}]};exports.basic_server_upload=basic_server_upload;var basic_settings={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"36","y1":"34","x2":"41","y2":"39"},"children":[]},{"name":"rect","attribs":{"x":"46.257","y":"35.065","transform":"matrix(-0.7071 0.7071 -0.7071 -0.7071 120.5036 47.0858)","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"8.485","height":"26.87"},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,16 18,10 8,4 6,6 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"26","x2":"15","y2":"13"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M58,12.5l-8,3.75l-4-4.125l3.5-8.062l0,0\r\n\tC39.5,4.062,37,9,37,14v4L3.5,52l-1.75,6l2.125,2l6.062-1.5L44,25h4C53,25,58,22.5,58,12.5L58,12.5z"},"children":[]}]};exports.basic_settings=basic_settings;var basic_share={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"51","cy":"13","r":"12"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"11","cy":"42","r":"10"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"48","cy":"55","r":"8"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"40","y1":"54","x2":"20","y2":"46"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"19","y1":"35","x2":"41","y2":"21"},"children":[]}]};exports.basic_share=basic_share;var basic_sheet={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[]}]}]}]};exports.basic_sheet=basic_sheet;var basic_sheet_pen={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,3 63,53 59,61 55,53 55,3 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"55,7 51,7 51,17 "},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"42,15 42,61 1,61 1,3 30,3 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"8","y1":"13","x2":"20","y2":"13"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"8","y1":"23","x2":"35","y2":"23"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"8","y1":"31","x2":"35","y2":"31"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"8","y1":"39","x2":"35","y2":"39"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"8","y1":"47","x2":"35","y2":"47"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"42,15 30,15 30,3 "},"children":[]}]};exports.basic_sheet_pen=basic_sheet_pen;var basic_sheet_pencil={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"42,15 42,61 1,61 1,3 30,3 "},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"55,1 55,54 59,62 63,54 63,1 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"8","y1":"13","x2":"20","y2":"13"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"8","y1":"23","x2":"35","y2":"23"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"8","y1":"31","x2":"35","y2":"31"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"8","y1":"39","x2":"35","y2":"39"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"8","y1":"47","x2":"35","y2":"47"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"42,15 30,15 30,3 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"55","y1":"11","x2":"63","y2":"11"},"children":[]}]};exports.basic_sheet_pencil=basic_sheet_pencil;var basic_signs={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"55,24 22,24 22,12 55,12 62,18 "},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,28 42,28 42,40 9,40 2,34 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"40","x2":"32","y2":"64"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"28","x2":"32","y2":"24"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"12","x2":"32","y2":"7"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"24","y1":"63","x2":"40","y2":"63"},"children":[]}]};exports.basic_signs=basic_signs;var basic_smartphone={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"16","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"32","height":"62"},"children":[{"name":"rect","attribs":{"x":"16","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"32","height":"62"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"5","x2":"36","y2":"5"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"5","x2":"36","y2":"5"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"51","x2":"48","y2":"51"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"51","x2":"48","y2":"51"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"9","x2":"48","y2":"9"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"9","x2":"48","y2":"9"},"children":[]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"32","cy":"57","r":"2"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"32","cy":"57","r":"2"},"children":[]}]}]}]};exports.basic_smartphone=basic_smartphone;var basic_spades={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32,63h9c-7,0-7-19-7-19v-6c0,7.671,6,13,13,13\r\n\tc8.334,0,14-7.329,14-15C61,17.48,32,1,32,1S3,17.48,3,36c0,7.671,6.667,15,15,15c7,0,11.395-5.87,12-13v6c0,0,0,19-7,19H32"},"children":[]}]};exports.basic_spades=basic_spades;var basic_spread={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,6 1,54 32,58 63,54 63,6 32,10 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"58","x2":"32","y2":"10"},"children":[]}]};exports.basic_spread=basic_spread;var basic_spread_bookmark={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,6 1,54 32,58 63,54 63,6 32,10 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"58","x2":"32","y2":"10"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"43,8 43,27 47,25 51,27 51,7 "},"children":[]}]};exports.basic_spread_bookmark=basic_spread_bookmark;var basic_spread_text={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,6 1,54 32,58 63,54 63,6 32,10 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,6 1,54 32,58 63,54 63,6 32,10 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"58","x2":"32","y2":"10"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"58","x2":"32","y2":"10"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"7","y1":"16","x2":"26","y2":"18"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"7","y1":"16","x2":"26","y2":"18"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"7","y1":"26","x2":"26","y2":"28"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"7","y1":"26","x2":"26","y2":"28"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"7","y1":"36","x2":"26","y2":"38"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"7","y1":"36","x2":"26","y2":"38"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"7","y1":"46","x2":"26","y2":"48"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"7","y1":"46","x2":"26","y2":"48"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"57","y1":"16","x2":"38","y2":"18"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"57","y1":"16","x2":"38","y2":"18"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"57","y1":"26","x2":"38","y2":"28"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"57","y1":"26","x2":"38","y2":"28"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"57","y1":"36","x2":"38","y2":"38"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"57","y1":"36","x2":"38","y2":"38"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"57","y1":"46","x2":"38","y2":"48"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"57","y1":"46","x2":"38","y2":"48"},"children":[]}]}]}]};exports.basic_spread_text=basic_spread_text;var basic_spread_text_bookmark={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,6 1,54 32,58 63,54 63,6 32,10 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"58","x2":"32","y2":"10"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"43,8 43,27 47,25 51,27 51,7 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"7","y1":"16","x2":"26","y2":"18"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"7","y1":"26","x2":"26","y2":"28"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"7","y1":"36","x2":"26","y2":"38"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"7","y1":"46","x2":"26","y2":"48"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"57","y1":"36","x2":"38","y2":"38"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"57","y1":"46","x2":"38","y2":"48"},"children":[]}]};exports.basic_spread_text_bookmark=basic_spread_text_bookmark;var basic_star={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,47 12,62 20,38 2,24 24,24 32,1 40,24 \r\n\t62,24 44,38 52,62 "},"children":[]}]};exports.basic_star=basic_star;var basic_tablet={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"11","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"42","height":"62"},"children":[{"name":"rect","attribs":{"x":"11","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"42","height":"62"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"5","x2":"36","y2":"5"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11","y1":"51","x2":"53","y2":"51"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11","y1":"9","x2":"53","y2":"9"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"32","cy":"57","r":"2"},"children":[]}]};exports.basic_tablet=basic_tablet;var basic_target={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"22.999"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"15"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"6.999"},"children":[]}]};exports.basic_target=basic_target;var basic_todo={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,8 10,8 10,63 54,63 54,8 41,8 "},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"36,5 36,1 28,1 28,5 24,5 22,13 42,13 40,5 \r\n\t"},"children":[]}]};exports.basic_todo=basic_todo;var basic_todo_pencil={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"55,1 55,54 59,62 63,54 63,1 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"55","y1":"11","x2":"63","y2":"11"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"14,8 1,8 1,63 45,63 45,8 32,8 "},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"27,5 27,1 19,1 19,5 15,5 13,13 33,13 31,5 \r\n\t"},"children":[]}]};exports.basic_todo_pencil=basic_todo_pencil;var basic_todo_txt={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25","y1":"24","x2":"47","y2":"24"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25","y1":"34","x2":"47","y2":"34"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25","y1":"44","x2":"47","y2":"44"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25","y1":"54","x2":"47","y2":"54"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"21","y1":"24","x2":"17","y2":"24"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"21","y1":"34","x2":"17","y2":"34"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"21","y1":"44","x2":"17","y2":"44"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"21","y1":"54","x2":"17","y2":"54"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,8 10,8 10,63 54,63 54,8 41,8 "},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"36,5 36,1 28,1 28,5 24,5 22,13 42,13 40,5 \r\n\t"},"children":[]}]};exports.basic_todo_txt=basic_todo_txt;var basic_todolist_pen={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"24","x2":"38","y2":"24"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"34","x2":"38","y2":"34"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"44","x2":"38","y2":"44"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"54","x2":"38","y2":"54"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"12","y1":"24","x2":"8","y2":"24"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"12","y1":"34","x2":"8","y2":"34"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"12","y1":"44","x2":"8","y2":"44"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"12","y1":"54","x2":"8","y2":"54"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"14,8 1,8 1,63 45,63 45,8 32,8 "},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"27,5 27,1 19,1 19,5 15,5 13,13 33,13 31,5 \r\n\t"},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,3 63,53 59,61 55,53 55,3 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"55,7 51,7 51,17 "},"children":[]}]};exports.basic_todolist_pen=basic_todolist_pen;var basic_todolist_pencil={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"24","x2":"38","y2":"24"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"34","x2":"38","y2":"34"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"44","x2":"38","y2":"44"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"54","x2":"38","y2":"54"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"12","y1":"24","x2":"8","y2":"24"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"12","y1":"34","x2":"8","y2":"34"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"12","y1":"44","x2":"8","y2":"44"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"12","y1":"54","x2":"8","y2":"54"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"14,8 1,8 1,63 45,63 45,8 32,8 "},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"27,5 27,1 19,1 19,5 15,5 13,13 33,13 31,5 \r\n\t"},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"55,1 55,54 59,62 63,54 63,1 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"55","y1":"11","x2":"63","y2":"11"},"children":[]}]};exports.basic_todolist_pencil=basic_todolist_pencil;var basic_trashcan={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"25,8 25,1 39,1 39,8 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"25,8 25,1 39,1 39,8 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"14,10 14,63 50,63 50,10 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"14,10 14,63 50,63 50,10 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"20","x2":"26","y2":"54"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"20","x2":"26","y2":"54"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"38","y1":"20","x2":"38","y2":"54"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"38","y1":"20","x2":"38","y2":"54"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"9","x2":"54","y2":"9"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"9","x2":"54","y2":"9"},"children":[]}]}]}]};exports.basic_trashcan=basic_trashcan;var basic_trashcan_full={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,36 58,34 62,48 56,50 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,36 58,34 62,48 56,50 \t"},"children":[]}]},{"name":"rect","attribs":{"x":"10","y":"13","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"36","height":"50"},"children":[{"name":"rect","attribs":{"x":"10","y":"13","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"36","height":"50"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"22","x2":"22","y2":"56"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"22","x2":"22","y2":"56"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"34","y1":"22","x2":"34","y2":"56"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"34","y1":"22","x2":"34","y2":"56"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"47.926","y1":"21.895","x2":"60","y2":"63"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"47.926","y1":"21.895","x2":"60","y2":"63"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,13 14,6 22.857,6.143 25,13 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"22.857,6.143 27,1 39,1 44,13 "},"children":[]}]};exports.basic_trashcan_full=basic_trashcan_full;var basic_trashcan_refresh={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"25,8 25,1 39,1 39,8 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"25,8 25,1 39,1 39,8 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"14,10 14,63 50,63 50,10 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"14,10 14,63 50,63 50,10 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"9","x2":"54","y2":"9"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"9","x2":"54","y2":"9"},"children":[]}]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M23,36c0,4.418,3.582,9,8,9h4"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"32,49 35,45 \r\n\t32,41 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M41,36c0-4.418-3.582-9-8-9h-4"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"32,23 29,27 \r\n\t32,31 "},"children":[]}]};exports.basic_trashcan_refresh=basic_trashcan_refresh;var basic_trashcan_remove={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"25,8 25,1 39,1 39,8 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"25,8 25,1 39,1 39,8 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"14,10 14,63 50,63 50,10 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"14,10 14,63 50,63 50,10 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"9","x2":"54","y2":"9"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"9","x2":"54","y2":"9"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"43","x2":"25","y2":"29"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25","y1":"43","x2":"39","y2":"29"},"children":[]}]};exports.basic_trashcan_remove=basic_trashcan_remove;var basic_upload={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"24,34 32,26 \r\n\t40,34 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"26","x2":"32","y2":"58"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"26","x2":"32","y2":"58"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"24,42 1,42 1,6 63,6 63,42 40,42 "},"children":[]}]};exports.basic_upload=basic_upload;var basic_usb={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"5.308","y":"4.601","transform":"matrix(0.7071 -0.7071 0.7071 0.7071 -6.0061 14.5)","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"18.385","height":"19.799"},"children":[]},{"name":"rect","attribs":{"x":"22.151","y":"15.08","transform":"matrix(0.7071 -0.7071 0.7071 0.7071 -15.3259 37)","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"29.698","height":"43.841"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"7","y1":"13","x2":"16","y2":"22"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"13","y1":"7","x2":"22","y2":"16"},"children":[]}]};exports.basic_usb=basic_usb;var basic_video={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"46,30 63,20 63,52 46,42 46,52 1,52 1,20 \r\n\t\t46,20 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"46,30 63,20 63,52 46,42 46,52 1,52 1,20 \r\n\t\t46,20 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"6","y1":"28","x2":"10","y2":"28"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"6","y1":"28","x2":"10","y2":"28"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"28","x2":"18","y2":"28"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"28","x2":"18","y2":"28"},"children":[]}]},{"name":"rect","attribs":{"x":"7","y":"36","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"18","height":"10"},"children":[{"name":"rect","attribs":{"x":"7","y":"36","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"18","height":"10"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"6,12 32,12 40,20 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"6,12 32,12 40,20 \t"},"children":[]}]}]}]};exports.basic_video=basic_video;var basic_watch={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"20"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"20,15 20,1 44,1 44,15 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"44,49 44,63 20,63 20,49 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,20 32,32 40,36 "},"children":[]}]};exports.basic_watch=basic_watch;var basic_webpage={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"7","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"50"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"15","x2":"63","y2":"15"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"11","x2":"6","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"18","y1":"11","x2":"14","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"11","x2":"22","y2":"11"},"children":[]}]};exports.basic_webpage=basic_webpage;var basic_webpage_img_txt={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"7","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"50"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"15","x2":"63","y2":"15"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"11","x2":"6","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"18","y1":"11","x2":"14","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"11","x2":"22","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"6","y1":"25","x2":"33","y2":"25"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"6","y1":"33","x2":"33","y2":"33"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"6","y1":"41","x2":"33","y2":"41"},"children":[]},{"name":"rect","attribs":{"x":"38","y":"25","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"19","height":"16"},"children":[]}]};exports.basic_webpage_img_txt=basic_webpage_img_txt;var basic_webpage_multiple={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"1","y":"15","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"54","height":"42"},"children":[{"name":"rect","attribs":{"x":"1","y":"15","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"54","height":"42"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,12 11,7 63,7 63,50 58,50 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,12 11,7 63,7 63,50 58,50 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"23","x2":"55","y2":"23"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"23","x2":"55","y2":"23"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"19","x2":"6","y2":"19"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"19","x2":"6","y2":"19"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"18","y1":"19","x2":"14","y2":"19"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"18","y1":"19","x2":"14","y2":"19"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"19","x2":"22","y2":"19"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"19","x2":"22","y2":"19"},"children":[]}]}]}]};exports.basic_webpage_multiple=basic_webpage_multiple;var basic_webpage_txt={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"6","y1":"25","x2":"58","y2":"25"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"6","y1":"33","x2":"58","y2":"33"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"6","y1":"41","x2":"58","y2":"41"},"children":[]},{"name":"rect","attribs":{"x":"1","y":"7","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"50"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"15","x2":"63","y2":"15"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"11","x2":"6","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"18","y1":"11","x2":"14","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"11","x2":"22","y2":"11"},"children":[]}]};exports.basic_webpage_txt=basic_webpage_txt;var basic_world={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32.001,0.887c17.184,0,31.113,13.929,31.112,31.113\r\n\tC63.114,49.185,49.184,63.115,32,63.113C14.815,63.114,0.887,49.185,0.888,32.001C0.885,14.816,14.815,0.887,32.001,0.887z"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"1","x2":"32","y2":"63"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"63","y1":"32","x2":"1","y2":"32"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M30,1c0,0-14,11-14,31s14,31,14,31"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M34,1c0,0,14,11,14,31S34,63,34,63"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M8,12c0,0,5,10,24,10s24-10,24-10"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M8,52c0,0,5-10,24-10s24,10,24,10"},"children":[]}]};exports.basic_world=basic_world;var basic_elaboration_bookmark_checck={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"18,1 46,1 46,62 32,48 18,62 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"23,22 30,29 \r\n\t43,16 "},"children":[]}]};exports.basic_elaboration_bookmark_checck=basic_elaboration_bookmark_checck;var basic_elaboration_bookmark_minus={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"23","y1":"22","x2":"41","y2":"22"},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"18,1 46,1 46,62 32,48 18,62 "},"children":[]}]};exports.basic_elaboration_bookmark_minus=basic_elaboration_bookmark_minus;var basic_elaboration_bookmark_plus={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"23","y1":"22","x2":"41","y2":"22"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"13","x2":"32","y2":"31"},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"18,1 46,1 46,62 32,48 18,62 "},"children":[]}]};exports.basic_elaboration_bookmark_plus=basic_elaboration_bookmark_plus;var basic_elaboration_bookmark_remove={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"18,1 46,1 46,62 32,48 18,62 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"29","x2":"25","y2":"15"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25","y1":"29","x2":"39","y2":"15"},"children":[]}]};exports.basic_elaboration_bookmark_remove=basic_elaboration_bookmark_remove;var basic_elaboration_briefcase_check={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"5,41 11,1 53,1 59,41 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M21,41c0,6.075,4.925,11,11,11s11-4.925,11-11h16v22\r\n\tH5V41H21z"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"23,22 30,29 \r\n\t43,16 "},"children":[]}]};exports.basic_elaboration_briefcase_check=basic_elaboration_briefcase_check;var basic_elaboration_briefcase_download={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"5,41 11,1 53,1 59,41 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M21,41c0,6.075,4.925,11,11,11s11-4.925,11-11h16v22\r\n\tH5V41H21z"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"40,25 32,33 \r\n\t24,25 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"33","x2":"32","y2":"13"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"33","x2":"32","y2":"13"},"children":[]}]}]}]};exports.basic_elaboration_briefcase_download=basic_elaboration_briefcase_download;var basic_elaboration_briefcase_flagged={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"5,41 11,1 53,1 59,41 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M21,41c0,6.075,4.925,11,11,11s11-4.925,11-11h16v22\r\n\tH5V41H21z"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"27","y1":"11","x2":"27","y2":"34"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"27,14 42,14 39.484,18 42,22 27,22 "},"children":[]}]};exports.basic_elaboration_briefcase_flagged=basic_elaboration_briefcase_flagged;var basic_elaboration_briefcase_minus={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"5,41 11,1 53,1 59,41 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M21,41c0,6.075,4.925,11,11,11s11-4.925,11-11h16v22\r\n\tH5V41H21z"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"41","y1":"24","x2":"23","y2":"24"},"children":[]}]};exports.basic_elaboration_briefcase_minus=basic_elaboration_briefcase_minus;var basic_elaboration_briefcase_plus={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"5,41 11,1 53,1 59,41 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M21,41c0,6.075,4.925,11,11,11s11-4.925,11-11h16v22\r\n\tH5V41H21z"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"15","x2":"32","y2":"33"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"41","y1":"24","x2":"23","y2":"24"},"children":[]}]};exports.basic_elaboration_briefcase_plus=basic_elaboration_briefcase_plus;var basic_elaboration_briefcase_refresh={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"5,41 11,1 53,1 59,41 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M21,41c0,6.075,4.925,11,11,11s11-4.925,11-11h16v22\r\n\tH5V41H21z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M24,24c0,4.418,3.582,9,8,9h4"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"33,37 36,33 \r\n\t33,29 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M42,24c0-4.418-3.582-9-8-9h-4"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"33,11 30,15 \r\n\t33,19 "},"children":[]}]};exports.basic_elaboration_briefcase_refresh=basic_elaboration_briefcase_refresh;var basic_elaboration_briefcase_remove={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"5,41 11,1 53,1 59,41 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M21,41c0,6.075,4.925,11,11,11s11-4.925,11-11h16v22\r\n\tH5V41H21z"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"31","x2":"25","y2":"17"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25","y1":"31","x2":"39","y2":"17"},"children":[]}]};exports.basic_elaboration_briefcase_remove=basic_elaboration_briefcase_remove;var basic_elaboration_briefcase_search={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"5,41 11,1 53,1 59,41 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M21,41c0,6.075,4.925,11,11,11s11-4.925,11-11h16v22\r\n\tH5V41H21z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"29","cy":"21","r":"6"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"29","cy":"21","r":"6"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"33","y1":"25","x2":"41","y2":"33"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"33","y1":"25","x2":"41","y2":"33"},"children":[]}]}]}]};exports.basic_elaboration_briefcase_search=basic_elaboration_briefcase_search;var basic_elaboration_briefcase_star={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"5,41 11,1 53,1 59,41 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M21,41c0,6.075,4.925,11,11,11s11-4.925,11-11h16v22\r\n\tH5V41H21z"},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"round","stroke-miterlimit":"10","points":"32,27 25.875,31 \r\n\t28,24 22,20 29.213,20 32,12 35,20 42,20 36,24 37.938,31 "},"children":[]}]};exports.basic_elaboration_briefcase_star=basic_elaboration_briefcase_star;var basic_elaboration_briefcase_upload={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"5,41 11,1 53,1 59,41 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M21,41c0,6.075,4.925,11,11,11s11-4.925,11-11h16v22\r\n\tH5V41H21z"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"23.998,22 \r\n\t31.998,14 39.998,22 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"31.998","y1":"14","x2":"31.998","y2":"34"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"31.998","y1":"14","x2":"31.998","y2":"34"},"children":[]}]}]}]};exports.basic_elaboration_briefcase_upload=basic_elaboration_briefcase_upload;var basic_elaboration_browser_check={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"7","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"50"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"15","x2":"63","y2":"15"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"11","x2":"6","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"18","y1":"11","x2":"14","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"11","x2":"22","y2":"11"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"23,35 30,42 \r\n\t43,29 "},"children":[]}]};exports.basic_elaboration_browser_check=basic_elaboration_browser_check;var basic_elaboration_browser_download={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"7","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"50"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"15","x2":"63","y2":"15"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"11","x2":"6","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"18","y1":"11","x2":"14","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"11","x2":"22","y2":"11"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"40,38 32,46 \r\n\t24,38 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"46","x2":"32","y2":"26"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"46","x2":"32","y2":"26"},"children":[]}]}]}]};exports.basic_elaboration_browser_download=basic_elaboration_browser_download;var basic_elaboration_browser_minus={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"7","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"50"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"15","x2":"63","y2":"15"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"11","x2":"6","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"18","y1":"11","x2":"14","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"11","x2":"22","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"41","y1":"37","x2":"23","y2":"37"},"children":[]}]};exports.basic_elaboration_browser_minus=basic_elaboration_browser_minus;var basic_elaboration_browser_plus={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"7","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"50"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"15","x2":"63","y2":"15"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"11","x2":"6","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"18","y1":"11","x2":"14","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"11","x2":"22","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"28","x2":"32","y2":"46"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"41","y1":"37","x2":"23","y2":"37"},"children":[]}]};exports.basic_elaboration_browser_plus=basic_elaboration_browser_plus;var basic_elaboration_browser_refresh={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"7","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"50"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M24,37c0,4.418,3.582,9,8,9h4"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"33,50 36,46 \r\n\t33,42 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M42,37c0-4.418-3.582-9-8-9h-4"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"33,24 30,28 \r\n\t33,32 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"15","x2":"63","y2":"15"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"11","x2":"6","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"18","y1":"11","x2":"14","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"11","x2":"22","y2":"11"},"children":[]}]};exports.basic_elaboration_browser_refresh=basic_elaboration_browser_refresh;var basic_elaboration_browser_remove={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"7","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"50"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"15","x2":"63","y2":"15"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"11","x2":"6","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"18","y1":"11","x2":"14","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"11","x2":"22","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"44","x2":"25","y2":"30"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25","y1":"44","x2":"39","y2":"30"},"children":[]}]};exports.basic_elaboration_browser_remove=basic_elaboration_browser_remove;var basic_elaboration_browser_search={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"7","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"50"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"15","x2":"63","y2":"15"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"11","x2":"6","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"18","y1":"11","x2":"14","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"11","x2":"22","y2":"11"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"29","cy":"33","r":"6"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"29","cy":"33","r":"6"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"33","y1":"37","x2":"41","y2":"45"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"33","y1":"37","x2":"41","y2":"45"},"children":[]}]}]}]};exports.basic_elaboration_browser_search=basic_elaboration_browser_search;var basic_elaboration_browser_star={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"7","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"50"},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"round","stroke-miterlimit":"10","points":"32,41 25.875,45 \r\n\t28,38 22,34 29.213,34 32,26 35,34 42,34 36,38 37.938,45 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"15","x2":"63","y2":"15"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"11","x2":"6","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"18","y1":"11","x2":"14","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"11","x2":"22","y2":"11"},"children":[]}]};exports.basic_elaboration_browser_star=basic_elaboration_browser_star;var basic_elaboration_browser_upload={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"7","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"50"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"15","x2":"63","y2":"15"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"11","x2":"6","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"18","y1":"11","x2":"14","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"11","x2":"22","y2":"11"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"23.998,35 \r\n\t31.998,27 39.998,35 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"31.998","y1":"27","x2":"31.998","y2":"47"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"31.998","y1":"27","x2":"31.998","y2":"47"},"children":[]}]}]}]};exports.basic_elaboration_browser_upload=basic_elaboration_browser_upload;var basic_elaboration_calendar_check={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"23,36 30,43 \r\n\t43,30 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[]}]},{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]},{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"18","x2":"63","y2":"18"},"children":[]}]};exports.basic_elaboration_calendar_check=basic_elaboration_calendar_check;var basic_elaboration_calendar_cloud={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[]}]},{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]},{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M34.887,44H39c1.887,0,3-1,3-3c0-1-1-3-3-3\r\n\tc0-3.604-3.277-6-7-6c-3.295,0-6.413,2.978-7,6l0,0c-2,0-3,2-3,3c0,2,1,3,3,3h10.434"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"18","x2":"63","y2":"18"},"children":[]}]};exports.basic_elaboration_calendar_cloud=basic_elaboration_calendar_cloud;var basic_elaboration_calendar_download={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"40,39 32,47 \r\n\t24,39 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"47","x2":"32","y2":"27"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"47","x2":"32","y2":"27"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[]}]},{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]},{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"18","x2":"63","y2":"18"},"children":[]}]};exports.basic_elaboration_calendar_download=basic_elaboration_calendar_download;var basic_elaboration_calendar_empty={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[]}]},{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]},{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"18","x2":"63","y2":"18"},"children":[]}]};exports.basic_elaboration_calendar_empty=basic_elaboration_calendar_empty;var basic_elaboration_calendar_flagged={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[]}]},{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]},{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"18","x2":"63","y2":"18"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"27","y1":"27","x2":"27","y2":"50"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"27,30 42,30 39.484,34 42,38 27,38 "},"children":[]}]};exports.basic_elaboration_calendar_flagged=basic_elaboration_calendar_flagged;var basic_elaboration_calendar_heart={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[]}]},{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]},{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"18","x2":"63","y2":"18"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M22,35c0,6.666,10,12,10,12s10-5.334,10-12\r\n\tc0-2.762-2-5-5-5c-2.762,0-5,2.238-5,5c0-2.762-2.238-5-5-5C24,30,22,32.238,22,35z"},"children":[]}]};exports.basic_elaboration_calendar_heart=basic_elaboration_calendar_heart;var basic_elaboration_calendar_minus={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"41","y1":"38","x2":"23","y2":"38"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[]}]},{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]},{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"18","x2":"63","y2":"18"},"children":[]}]};exports.basic_elaboration_calendar_minus=basic_elaboration_calendar_minus;var basic_elaboration_calendar_next={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[]}]},{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]},{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"34,30 42,38 \r\n\t34,46 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"38","x2":"22","y2":"38"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"38","x2":"22","y2":"38"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"18","x2":"63","y2":"18"},"children":[]}]};exports.basic_elaboration_calendar_next=basic_elaboration_calendar_next;var basic_elaboration_calendar_noaccess={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[]}]},{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]},{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"38","r":"9"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25.834","y1":"31.834","x2":"38.166","y2":"44.166"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"18","x2":"63","y2":"18"},"children":[]}]};exports.basic_elaboration_calendar_noaccess=basic_elaboration_calendar_noaccess;var basic_elaboration_calendar_pencil={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[]}]},{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]},{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"18","x2":"63","y2":"18"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,43 22,48 27,47 42,32 38,28 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,43 22,48 27,47 42,32 38,28 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"35","x2":"35","y2":"31"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"35","x2":"35","y2":"31"},"children":[]}]}]}]};exports.basic_elaboration_calendar_pencil=basic_elaboration_calendar_pencil;var basic_elaboration_calendar_plus={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[]}]},{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]},{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"29","x2":"32","y2":"47"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"41","y1":"38","x2":"23","y2":"38"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"18","x2":"63","y2":"18"},"children":[]}]};exports.basic_elaboration_calendar_plus=basic_elaboration_calendar_plus;var basic_elaboration_calendar_previous={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[]}]},{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]},{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"18","x2":"63","y2":"18"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"30.001,46 \r\n\t22.001,38 30.001,30 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22.001","y1":"38","x2":"42.001","y2":"38"},"children":[]}]};exports.basic_elaboration_calendar_previous=basic_elaboration_calendar_previous;var basic_elaboration_calendar_refresh={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M24,38c0,4.418,3.582,9,8,9h4"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"33,51 36,47 \r\n\t33,43 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M42,38c0-4.418-3.582-9-8-9h-4"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"33,25 30,29 \r\n\t33,33 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[]}]},{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]},{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"18","x2":"63","y2":"18"},"children":[]}]};exports.basic_elaboration_calendar_refresh=basic_elaboration_calendar_refresh;var basic_elaboration_calendar_remove={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"45","x2":"25","y2":"31"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25","y1":"45","x2":"39","y2":"31"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[]}]},{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]},{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"18","x2":"63","y2":"18"},"children":[]}]};exports.basic_elaboration_calendar_remove=basic_elaboration_calendar_remove;var basic_elaboration_calendar_search={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"29","cy":"35","r":"6"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"29","cy":"35","r":"6"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"33","y1":"39","x2":"41","y2":"47"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"33","y1":"39","x2":"41","y2":"47"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[]}]},{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]},{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"18","x2":"63","y2":"18"},"children":[]}]};exports.basic_elaboration_calendar_search=basic_elaboration_calendar_search;var basic_elaboration_calendar_star={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[]}]},{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]},{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"18","x2":"63","y2":"18"},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"round","stroke-miterlimit":"10","points":"32,43 25.875,47 \r\n\t28,40 22,36 29.213,36 32,28 35,36 42,36 36,40 37.938,47 "},"children":[]}]};exports.basic_elaboration_calendar_star=basic_elaboration_calendar_star;var basic_elaboration_calendar_upload={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"23.998,36 \r\n\t31.998,28 39.998,36 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"31.998","y1":"28","x2":"31.998","y2":"48"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"31.998","y1":"28","x2":"31.998","y2":"48"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[]}]},{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]},{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"18","x2":"63","y2":"18"},"children":[]}]};exports.basic_elaboration_calendar_upload=basic_elaboration_calendar_upload;var basic_elaboration_cloud_check={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"23,34 30,41 \r\n\t43,28 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M41,50h14c4.565,0,8-3.582,8-8s-3.435-8-8-8\r\n\tc0-11.046-9.52-20-20.934-20C23.966,14,14.8,20.732,13,30c0,0-0.831,0-1.667,0C5.626,30,1,34.477,1,40s4.293,10,10,10H41"},"children":[]}]};exports.basic_elaboration_cloud_check=basic_elaboration_cloud_check;var basic_elaboration_cloud_download={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M41,50h14c4.565,0,8-3.582,8-8s-3.435-8-8-8\r\n\tc0-11.046-9.52-20-20.934-20C23.966,14,14.8,20.732,13,30c0,0-0.831,0-1.667,0C5.626,30,1,34.477,1,40s4.293,10,10,10H41"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"40,37 32,45 \r\n\t24,37 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"45","x2":"32","y2":"25"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"45","x2":"32","y2":"25"},"children":[]}]}]}]};exports.basic_elaboration_cloud_download=basic_elaboration_cloud_download;var basic_elaboration_cloud_minus={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M41,50h14c4.565,0,8-3.582,8-8s-3.435-8-8-8\r\n\tc0-11.046-9.52-20-20.934-20C23.966,14,14.8,20.732,13,30c0,0-0.831,0-1.667,0C5.626,30,1,34.477,1,40s4.293,10,10,10H41"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"41","y1":"34","x2":"23","y2":"34"},"children":[]}]};exports.basic_elaboration_cloud_minus=basic_elaboration_cloud_minus;var basic_elaboration_cloud_noaccess={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M41,50h14c4.565,0,8-3.582,8-8s-3.435-8-8-8\r\n\tc0-11.046-9.52-20-20.934-20C23.966,14,14.8,20.732,13,30c0,0-0.831,0-1.667,0C5.626,30,1,34.477,1,40s4.293,10,10,10H41"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"34","r":"9"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25.834","y1":"27.834","x2":"38.166","y2":"40.166"},"children":[]}]};exports.basic_elaboration_cloud_noaccess=basic_elaboration_cloud_noaccess;var basic_elaboration_cloud_plus={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M41,50h14c4.565,0,8-3.582,8-8s-3.435-8-8-8\r\n\tc0-11.046-9.52-20-20.934-20C23.966,14,14.8,20.732,13,30c0,0-0.831,0-1.667,0C5.626,30,1,34.477,1,40s4.293,10,10,10H41"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"25","x2":"32","y2":"43"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"41","y1":"34","x2":"23","y2":"34"},"children":[]}]};exports.basic_elaboration_cloud_plus=basic_elaboration_cloud_plus;var basic_elaboration_cloud_refresh={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M24,32c0,4.418,3.582,9,8,9h4"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M41,50h14c4.565,0,8-3.582,8-8s-3.435-8-8-8\r\n\tc0-11.046-9.52-20-20.934-20C23.966,14,14.8,20.732,13,30c0,0-0.831,0-1.667,0C5.626,30,1,34.477,1,40s4.293,10,10,10H41"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"33,45 36,41 \r\n\t33,37 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M42,32c0-4.418-3.582-9-8-9h-4"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"33,19 30,23 \r\n\t33,27 "},"children":[]}]};exports.basic_elaboration_cloud_refresh=basic_elaboration_cloud_refresh;var basic_elaboration_cloud_remove={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M41,50h14c4.565,0,8-3.582,8-8s-3.435-8-8-8\r\n\tc0-11.046-9.52-20-20.934-20C23.966,14,14.8,20.732,13,30c0,0-0.831,0-1.667,0C5.626,30,1,34.477,1,40s4.293,10,10,10H41"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"41","x2":"25","y2":"27"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25","y1":"41","x2":"39","y2":"27"},"children":[]}]};exports.basic_elaboration_cloud_remove=basic_elaboration_cloud_remove;var basic_elaboration_cloud_search={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M41,50h14c4.565,0,8-3.582,8-8s-3.435-8-8-8\r\n\tc0-11.046-9.52-20-20.934-20C23.966,14,14.8,20.732,13,30c0,0-0.831,0-1.667,0C5.626,30,1,34.477,1,40s4.293,10,10,10H41"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"29","cy":"31","r":"6"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"29","cy":"31","r":"6"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"33","y1":"35","x2":"41","y2":"43"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"33","y1":"35","x2":"41","y2":"43"},"children":[]}]}]}]};exports.basic_elaboration_cloud_search=basic_elaboration_cloud_search;var basic_elaboration_cloud_upload={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M41,50h14c4.565,0,8-3.582,8-8s-3.435-8-8-8\r\n\tc0-11.046-9.52-20-20.934-20C23.966,14,14.8,20.732,13,30c0,0-0.831,0-1.667,0C5.626,30,1,34.477,1,40s4.293,10,10,10H41"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"23.998,34 \r\n\t31.998,26 39.998,34 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"31.998","y1":"26","x2":"31.998","y2":"46"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"31.998","y1":"26","x2":"31.998","y2":"46"},"children":[]}]}]}]};exports.basic_elaboration_cloud_upload=basic_elaboration_cloud_upload;var basic_elaboration_document_check={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"23,36 30,43 \r\n\t43,30 "},"children":[]}]};exports.basic_elaboration_document_check=basic_elaboration_document_check;var basic_elaboration_document_cloud={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[]}]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M34.887,42H39c1.887,0,3-1,3-3c0-1-1-3-3-3\r\n\tc0-3.604-3.277-6-7-6c-3.295,0-6.413,2.978-7,6l0,0c-2,0-3,2-3,3c0,2,1,3,3,3h10.434"},"children":[]}]};exports.basic_elaboration_document_cloud=basic_elaboration_document_cloud;var basic_elaboration_document_download={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"40,37 32,45 \r\n\t24,37 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"45","x2":"32","y2":"25"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"45","x2":"32","y2":"25"},"children":[]}]}]}]};exports.basic_elaboration_document_download=basic_elaboration_document_download;var basic_elaboration_document_flagged={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"27","y1":"21","x2":"27","y2":"44"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"27,24 42,24 39.484,28 42,32 27,32 "},"children":[]}]};exports.basic_elaboration_document_flagged=basic_elaboration_document_flagged;var basic_elaboration_document_graph={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"27,44 27,37 23,37 23,44 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"27,44 27,37 23,37 23,44 \t\t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"34,44 34,27 30,27 30,44 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"34,44 34,27 30,27 30,44 \t\t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"41,44 41,34 37,34 37,44 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"41,44 41,34 37,34 37,44 \t\t"},"children":[]}]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"45","x2":"44","y2":"45"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"45","x2":"44","y2":"45"},"children":[]}]}]}]};exports.basic_elaboration_document_graph=basic_elaboration_document_graph;var basic_elaboration_document_heart={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[]}]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M22,33c0,6.666,10,12,10,12s10-5.334,10-12\r\n\tc0-2.762-2-5-5-5c-2.762,0-5,2.238-5,5c0-2.762-2.238-5-5-5C24,28,22,30.238,22,33z"},"children":[]}]};exports.basic_elaboration_document_heart=basic_elaboration_document_heart;var basic_elaboration_document_minus={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"41","y1":"36","x2":"23","y2":"36"},"children":[]}]};exports.basic_elaboration_document_minus=basic_elaboration_document_minus;var basic_elaboration_document_next={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"34,28 42,36 \r\n\t34,44 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"36","x2":"22","y2":"36"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"36","x2":"22","y2":"36"},"children":[]}]}]}]};exports.basic_elaboration_document_next=basic_elaboration_document_next;var basic_elaboration_document_noaccess={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[]}]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"36","r":"9"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25.834","y1":"29.834","x2":"38.166","y2":"42.166"},"children":[]}]};exports.basic_elaboration_document_noaccess=basic_elaboration_document_noaccess;var basic_elaboration_document_note={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"35","cy":"41","r":"3"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"35","cy":"41","r":"3"},"children":[]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"25","cy":"43","r":"3"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"25","cy":"43","r":"3"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"38,41 38,26 28,28 28,43 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"38,41 38,26 28,28 28,43 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"32","x2":"38","y2":"30"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"32","x2":"38","y2":"30"},"children":[]}]}]}]};exports.basic_elaboration_document_note=basic_elaboration_document_note;var basic_elaboration_document_pencil={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,41 22,46 27,45 42,30 38,26 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,41 22,46 27,45 42,30 38,26 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"33","x2":"35","y2":"29"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"33","x2":"35","y2":"29"},"children":[]}]}]}]};exports.basic_elaboration_document_pencil=basic_elaboration_document_pencil;var basic_elaboration_document_picture={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"22","y":"29","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"20","height":"14"},"children":[{"name":"rect","attribs":{"x":"22","y":"29","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"20","height":"14"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"22,41 29,34 33,39 35,37 41,42 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"22,41 29,34 33,39 35,37 41,42 \t"},"children":[]}]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"39","cy":"32","r":"3"},"children":[]}]};exports.basic_elaboration_document_picture=basic_elaboration_document_picture;var basic_elaboration_document_plus={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"27","x2":"32","y2":"45"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"41","y1":"36","x2":"23","y2":"36"},"children":[]}]};exports.basic_elaboration_document_plus=basic_elaboration_document_plus;var basic_elaboration_document_previous={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"30.001,44 \r\n\t22.001,36 30.001,28 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22.001","y1":"36","x2":"42.001","y2":"36"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22.001","y1":"36","x2":"42.001","y2":"36"},"children":[]}]}]}]};exports.basic_elaboration_document_previous=basic_elaboration_document_previous;var basic_elaboration_document_refresh={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[]}]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M24,36c0,4.418,3.582,9,8,9h4"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"33,49 36,45 \r\n\t33,41 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M42,36c0-4.418-3.582-9-8-9h-4"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"33,23 30,27 \r\n\t33,31 "},"children":[]}]};exports.basic_elaboration_document_refresh=basic_elaboration_document_refresh;var basic_elaboration_document_remove={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"44","x2":"25","y2":"30"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25","y1":"44","x2":"39","y2":"30"},"children":[]}]};exports.basic_elaboration_document_remove=basic_elaboration_document_remove;var basic_elaboration_document_search={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"29","cy":"35","r":"6"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"29","cy":"35","r":"6"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"33","y1":"39","x2":"41","y2":"47"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"33","y1":"39","x2":"41","y2":"47"},"children":[]}]}]}]};exports.basic_elaboration_document_search=basic_elaboration_document_search;var basic_elaboration_document_star={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[]}]}]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"round","stroke-miterlimit":"10","points":"32,39 25.875,43 \r\n\t28,36 22,32 29.213,32 32,24 35,32 42,32 36,36 37.938,43 "},"children":[]}]};exports.basic_elaboration_document_star=basic_elaboration_document_star;var basic_elaboration_document_upload={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"23.998,34 \r\n\t31.998,26 39.998,34 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"31.998","y1":"26","x2":"31.998","y2":"46"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"31.998","y1":"26","x2":"31.998","y2":"46"},"children":[]}]}]}]};exports.basic_elaboration_document_upload=basic_elaboration_document_upload;var basic_elaboration_folder_check={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,18 63,54 1,54 1,10 22,10 30,18 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"23,36 30,43 \r\n\t43,30 "},"children":[]}]};exports.basic_elaboration_folder_check=basic_elaboration_folder_check;var basic_elaboration_folder_cloud={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,18 63,54 1,54 1,10 22,10 30,18 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M34.887,42H39c1.887,0,3-1,3-3c0-1-1-3-3-3\r\n\tc0-3.604-3.277-6-7-6c-3.295,0-6.413,2.978-7,6l0,0c-2,0-3,2-3,3c0,2,1,3,3,3h10.434"},"children":[]}]};exports.basic_elaboration_folder_cloud=basic_elaboration_folder_cloud;var basic_elaboration_folder_document={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,18 63,54 1,54 1,10 22,10 30,18 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,26 39,26 39,46 25,46 25,33 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,26 39,26 39,46 25,46 25,33 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"25,33 32,33 32,26 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"25,33 32,33 32,26 \t"},"children":[]}]}]}]};exports.basic_elaboration_folder_document=basic_elaboration_folder_document;var basic_elaboration_folder_download={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,18 63,54 1,54 1,10 22,10 30,18 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"40,37 32,45 \r\n\t24,37 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"45","x2":"32","y2":"25"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"45","x2":"32","y2":"25"},"children":[]}]}]}]};exports.basic_elaboration_folder_download=basic_elaboration_folder_download;var basic_elaboration_folder_flagged={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,18 63,54 1,54 1,10 22,10 30,18 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"27","y1":"23","x2":"27","y2":"46"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"27,26 42,26 39.484,30 42,34 27,34 "},"children":[]}]};exports.basic_elaboration_folder_flagged=basic_elaboration_folder_flagged;var basic_elaboration_folder_graph={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,18 63,54 1,54 1,10 22,10 30,18 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"27,44 27,37 23,37 23,44 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"27,44 27,37 23,37 23,44 \t\t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"34,44 34,27 30,27 30,44 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"34,44 34,27 30,27 30,44 \t\t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"41,44 41,34 37,34 37,44 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"41,44 41,34 37,34 37,44 \t\t"},"children":[]}]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"45","x2":"44","y2":"45"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"45","x2":"44","y2":"45"},"children":[]}]}]}]};exports.basic_elaboration_folder_graph=basic_elaboration_folder_graph;var basic_elaboration_folder_heart={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,18 63,54 1,54 1,10 22,10 30,18 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M22,33c0,6.666,10,12,10,12s10-5.334,10-12\r\n\tc0-2.762-2-5-5-5c-2.762,0-5,2.238-5,5c0-2.762-2.238-5-5-5C24,28,22,30.238,22,33z"},"children":[]}]};exports.basic_elaboration_folder_heart=basic_elaboration_folder_heart;var basic_elaboration_folder_minus={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,18 63,54 1,54 1,10 22,10 30,18 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"41","y1":"36","x2":"23","y2":"36"},"children":[]}]};exports.basic_elaboration_folder_minus=basic_elaboration_folder_minus;var basic_elaboration_folder_next={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,18 63,54 1,54 1,10 22,10 30,18 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"34,28 42,36 \r\n\t34,44 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"36","x2":"22","y2":"36"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"36","x2":"22","y2":"36"},"children":[]}]}]}]};exports.basic_elaboration_folder_next=basic_elaboration_folder_next;var basic_elaboration_folder_noaccess={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,18 63,54 1,54 1,10 22,10 30,18 "},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"36","r":"9"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25.834","y1":"29.834","x2":"38.166","y2":"42.166"},"children":[]}]};exports.basic_elaboration_folder_noaccess=basic_elaboration_folder_noaccess;var basic_elaboration_folder_note={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,18 63,54 1,54 1,10 22,10 30,18 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"35","cy":"41","r":"3"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"35","cy":"41","r":"3"},"children":[]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"25","cy":"43","r":"3"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"25","cy":"43","r":"3"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"38,41 38,26 28,28 28,43 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"38,41 38,26 28,28 28,43 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"32","x2":"38","y2":"30"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"32","x2":"38","y2":"30"},"children":[]}]}]}]};exports.basic_elaboration_folder_note=basic_elaboration_folder_note;var basic_elaboration_folder_pencil={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,18 63,54 1,54 1,10 22,10 30,18 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,41 22,46 27,45 42,30 38,26 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,41 22,46 27,45 42,30 38,26 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"33","x2":"35","y2":"29"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"33","x2":"35","y2":"29"},"children":[]}]}]}]};exports.basic_elaboration_folder_pencil=basic_elaboration_folder_pencil;var basic_elaboration_folder_picture={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,18 63,54 1,54 1,10 22,10 30,18 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"22","y":"29","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"20","height":"14"},"children":[{"name":"rect","attribs":{"x":"22","y":"29","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"20","height":"14"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"22,41 29,34 33,39 35,37 41,42 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"22,41 29,34 33,39 35,37 41,42 \t"},"children":[]}]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"39","cy":"32","r":"3"},"children":[]}]};exports.basic_elaboration_folder_picture=basic_elaboration_folder_picture;var basic_elaboration_folder_plus={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"27","x2":"32","y2":"45"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"41","y1":"36","x2":"23","y2":"36"},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,18 63,54 1,54 1,10 22,10 30,18 "},"children":[]}]};exports.basic_elaboration_folder_plus=basic_elaboration_folder_plus;var basic_elaboration_folder_previous={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,18 63,54 1,54 1,10 22,10 30,18 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"30.001,44 \r\n\t22.001,36 30.001,28 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22.001","y1":"36","x2":"42.001","y2":"36"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22.001","y1":"36","x2":"42.001","y2":"36"},"children":[]}]}]}]};exports.basic_elaboration_folder_previous=basic_elaboration_folder_previous;var basic_elaboration_folder_refresh={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,18 63,54 1,54 1,10 22,10 30,18 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M24,36c0,4.418,3.582,9,8,9h4"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"33,49 36,45 \r\n\t33,41 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M42,36c0-4.418-3.582-9-8-9h-4"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"33,23 30,27 \r\n\t33,31 "},"children":[]}]};exports.basic_elaboration_folder_refresh=basic_elaboration_folder_refresh;var basic_elaboration_folder_remove={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,18 63,54 1,54 1,10 22,10 30,18 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"44","x2":"25","y2":"30"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25","y1":"44","x2":"39","y2":"30"},"children":[]}]};exports.basic_elaboration_folder_remove=basic_elaboration_folder_remove;var basic_elaboration_folder_search={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,18 63,54 1,54 1,10 22,10 30,18 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"29","cy":"35","r":"6"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"29","cy":"35","r":"6"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"33","y1":"39","x2":"41","y2":"47"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"33","y1":"39","x2":"41","y2":"47"},"children":[]}]}]}]};exports.basic_elaboration_folder_search=basic_elaboration_folder_search;var basic_elaboration_folder_star={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,18 63,54 1,54 1,10 22,10 30,18 "},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"round","stroke-miterlimit":"10","points":"32,41 25.875,45 \r\n\t28,38 22,34 29.213,34 32,26 35,34 42,34 36,38 37.938,45 "},"children":[]}]};exports.basic_elaboration_folder_star=basic_elaboration_folder_star;var basic_elaboration_folder_upload={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,18 63,54 1,54 1,10 22,10 30,18 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"23.998,34 \r\n\t31.998,26 39.998,34 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"31.998","y1":"26","x2":"31.998","y2":"46"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"31.998","y1":"26","x2":"31.998","y2":"46"},"children":[]}]}]}]};exports.basic_elaboration_folder_upload=basic_elaboration_folder_upload;var basic_elaboration_mail_check={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"23,20 30,27 \r\n\t43,14 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.333,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.667,21.667 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.333,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.667,21.667 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[]}]}]}]};exports.basic_elaboration_mail_check=basic_elaboration_mail_check;var basic_elaboration_mail_cloud={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M34.887,28H39c1.887,0,3-1,3-3c0-1-1-3-3-3\r\n\tc0-3.604-3.277-6-7-6c-3.295,0-6.413,2.978-7,6l0,0c-2,0-3,2-3,3c0,2,1,3,3,3h10.434"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[]}]}]}]};exports.basic_elaboration_mail_cloud=basic_elaboration_mail_cloud;var basic_elaboration_mail_document={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,10 39,10 39,30 25,30 25,17 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,10 39,10 39,30 25,30 25,17 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"25,17 32,17 32,10 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"25,17 32,17 32,10 \t"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[]}]}]}]};exports.basic_elaboration_mail_document=basic_elaboration_mail_document;var basic_elaboration_mail_download={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"40,23 32,31 \r\n\t24,23 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"31","x2":"32","y2":"11"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"31","x2":"32","y2":"11"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[]}]}]}]};exports.basic_elaboration_mail_download=basic_elaboration_mail_download;var basic_elaboration_mail_flagged={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"27","y1":"9","x2":"27","y2":"32"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"27,12 42,12 39.484,16 42,20 27,20 "},"children":[]}]};exports.basic_elaboration_mail_flagged=basic_elaboration_mail_flagged;var basic_elaboration_mail_heart={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[]}]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M22,19c0,6.666,10,12,10,12s10-5.334,10-12\r\n\tc0-2.762-2-5-5-5c-2.762,0-5,2.238-5,5c0-2.762-2.238-5-5-5C24,14,22,16.238,22,19z"},"children":[]}]};exports.basic_elaboration_mail_heart=basic_elaboration_mail_heart;var basic_elaboration_mail_next={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"34,14 42,22 \r\n\t34,30 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"22","x2":"22","y2":"22"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"22","x2":"22","y2":"22"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[]}]}]}]};exports.basic_elaboration_mail_next=basic_elaboration_mail_next;var basic_elaboration_mail_noaccess={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"22","r":"9"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25.834","y1":"15.834","x2":"38.166","y2":"28.166"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[]}]}]}]};exports.basic_elaboration_mail_noaccess=basic_elaboration_mail_noaccess;var basic_elaboration_mail_note={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"35","cy":"27","r":"3"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"35","cy":"27","r":"3"},"children":[]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"25","cy":"29","r":"3"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"25","cy":"29","r":"3"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"38,27 38,12 28,14 28,29 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"38,27 38,12 28,14 28,29 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"18","x2":"38","y2":"16"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"18","x2":"38","y2":"16"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[]}]}]}]};exports.basic_elaboration_mail_note=basic_elaboration_mail_note;var basic_elaboration_mail_pencil={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,27 22,32 27,31 42,16 38,12 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,27 22,32 27,31 42,16 38,12 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"19","x2":"35","y2":"15"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"19","x2":"35","y2":"15"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.333,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.667,21.667 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.333,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.667,21.667 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[]}]}]}]};exports.basic_elaboration_mail_pencil=basic_elaboration_mail_pencil;var basic_elaboration_mail_picture={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"22","y":"15","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"20","height":"14"},"children":[{"name":"rect","attribs":{"x":"22","y":"15","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"20","height":"14"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"22,27 29,20 33,25 35,23 41,28 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"22,27 29,20 33,25 35,23 41,28 \t"},"children":[]}]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"39","cy":"18","r":"3"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[]}]}]}]};exports.basic_elaboration_mail_picture=basic_elaboration_mail_picture;var basic_elaboration_mail_previous={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"30.001,30 \r\n\t22.001,22 30.001,14 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22.001","y1":"22","x2":"42.001","y2":"22"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22.001","y1":"22","x2":"42.001","y2":"22"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[]}]}]}]};exports.basic_elaboration_mail_previous=basic_elaboration_mail_previous;var basic_elaboration_mail_refresh={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M24,22c0,4.418,3.582,9,8,9h4"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"33,35 36,31 \r\n\t33,27 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M42,22c0-4.418-3.582-9-8-9h-4"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"33,9 30,13 33,17 \r\n\t"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[]}]}]}]};exports.basic_elaboration_mail_refresh=basic_elaboration_mail_refresh;var basic_elaboration_mail_remove={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"29","x2":"25","y2":"15"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25","y1":"29","x2":"39","y2":"15"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.333,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.667,21.667 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.333,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.667,21.667 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[]}]}]}]};exports.basic_elaboration_mail_remove=basic_elaboration_mail_remove;var basic_elaboration_mail_search={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"29","cy":"19","r":"6"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"29","cy":"19","r":"6"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"33","y1":"23","x2":"41","y2":"31"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"33","y1":"23","x2":"41","y2":"31"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[]}]}]}]};exports.basic_elaboration_mail_search=basic_elaboration_mail_search;var basic_elaboration_mail_star={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[]}]}]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"round","stroke-miterlimit":"10","points":"32,27 25.875,31 \r\n\t28,24 22,20 29.213,20 32,12 35,20 42,20 36,24 37.938,31 "},"children":[]}]};exports.basic_elaboration_mail_star=basic_elaboration_mail_star;var basic_elaboration_mail_upload={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"23.998,20 \r\n\t31.998,12 39.998,20 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"31.998","y1":"12","x2":"31.998","y2":"32"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"31.998","y1":"12","x2":"31.998","y2":"32"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[]}]}]}]};exports.basic_elaboration_mail_upload=basic_elaboration_mail_upload;var basic_elaboration_message_check={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,47 63,47 63,5 1,5 1,47 18,47 18,59 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"23,26 30,33 \r\n\t43,20 "},"children":[]}]};exports.basic_elaboration_message_check=basic_elaboration_message_check;var basic_elaboration_message_dots={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,47 63,47 63,5 1,5 1,47 18,47 18,59 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"29","y1":"26","x2":"35","y2":"26"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"26","x2":"45","y2":"26"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"19","y1":"26","x2":"25","y2":"26"},"children":[]}]};exports.basic_elaboration_message_dots=basic_elaboration_message_dots;var basic_elaboration_message_happy={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M24,30c0,4.418,3.582,8,8,8s8-3.582,8-8"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M24,30c0,4.418,3.582,8,8,8s8-3.582,8-8"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"18","y1":"20","x2":"20","y2":"20"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"18","y1":"20","x2":"20","y2":"20"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"20","x2":"44","y2":"20"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"20","x2":"44","y2":"20"},"children":[]}]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,47 63,47 63,5 1,5 1,47 18,47 18,59 \t\r\n\t\t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,47 63,47 63,5 1,5 1,47 18,47 18,59 \t\r\n\t\t"},"children":[]}]}]}]};exports.basic_elaboration_message_happy=basic_elaboration_message_happy;var basic_elaboration_message_heart={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,47 63,47 63,5 1,5 1,47 18,47 18,59 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M22,23c0,6.666,10,12,10,12s10-5.334,10-12\r\n\tc0-2.762-2-5-5-5c-2.762,0-5,2.238-5,5c0-2.762-2.238-5-5-5C24,18,22,20.238,22,23z"},"children":[]}]};exports.basic_elaboration_message_heart=basic_elaboration_message_heart;var basic_elaboration_message_minus={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"41","y1":"26","x2":"23","y2":"26"},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,47 63,47 63,5 1,5 1,47 18,47 18,59 "},"children":[]}]};exports.basic_elaboration_message_minus=basic_elaboration_message_minus;var basic_elaboration_message_note={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,47 63,47 63,5 1,5 1,47 18,47 18,59 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"35","cy":"31","r":"3"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"35","cy":"31","r":"3"},"children":[]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"25","cy":"33","r":"3"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"25","cy":"33","r":"3"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"38,31 38,16 28,18 28,33 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"38,31 38,16 28,18 28,33 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"22","x2":"38","y2":"20"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"22","x2":"38","y2":"20"},"children":[]}]}]}]};exports.basic_elaboration_message_note=basic_elaboration_message_note;var basic_elaboration_message_plus={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"17","x2":"32","y2":"35"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"41","y1":"26","x2":"23","y2":"26"},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,47 63,47 63,5 1,5 1,47 18,47 18,59 "},"children":[]}]};exports.basic_elaboration_message_plus=basic_elaboration_message_plus;var basic_elaboration_message_refresh={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,47 63,47 63,5 1,5 1,47 18,47 18,59 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M24,26c0,4.418,3.582,9,8,9h4"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"33,39 36,35 \r\n\t33,31 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M42,26c0-4.418-3.582-9-8-9h-4"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"33,13 30,17 \r\n\t33,21 "},"children":[]}]};exports.basic_elaboration_message_refresh=basic_elaboration_message_refresh;var basic_elaboration_message_remove={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,47 63,47 63,5 1,5 1,47 18,47 18,59 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"33","x2":"25","y2":"19"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25","y1":"33","x2":"39","y2":"19"},"children":[]}]};exports.basic_elaboration_message_remove=basic_elaboration_message_remove;var basic_elaboration_message_sad={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"18","y1":"20","x2":"20","y2":"20"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"18","y1":"20","x2":"20","y2":"20"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"20","x2":"44","y2":"20"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"20","x2":"44","y2":"20"},"children":[]}]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,47 63,47 63,5 1,5 1,47 18,47 18,59 \t\r\n\t\t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,47 63,47 63,5 1,5 1,47 18,47 18,59 \t\r\n\t\t"},"children":[]}]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M40,38c0-4.418-3.582-8-8-8s-8,3.582-8,8"},"children":[]}]};exports.basic_elaboration_message_sad=basic_elaboration_message_sad;var basic_elaboration_smartphone_cloud={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"16","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"32","height":"62"},"children":[{"name":"rect","attribs":{"x":"16","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"32","height":"62"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"5","x2":"36","y2":"5"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"5","x2":"36","y2":"5"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"51","x2":"48","y2":"51"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"51","x2":"48","y2":"51"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"9","x2":"48","y2":"9"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"9","x2":"48","y2":"9"},"children":[]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"32","cy":"57","r":"2"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"32","cy":"57","r":"2"},"children":[]}]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M34.887,36H39c1.887,0,3-1,3-3c0-1-1-3-3-3\r\n\tc0-3.604-3.277-6-7-6c-3.295,0-6.413,2.978-7,6l0,0c-2,0-3,2-3,3c0,2,1,3,3,3h10.434"},"children":[]}]};exports.basic_elaboration_smartphone_cloud=basic_elaboration_smartphone_cloud;var basic_elaboration_smartphone_heart={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"16","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"32","height":"62"},"children":[{"name":"rect","attribs":{"x":"16","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"32","height":"62"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"5","x2":"36","y2":"5"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"5","x2":"36","y2":"5"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"51","x2":"48","y2":"51"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"51","x2":"48","y2":"51"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"9","x2":"48","y2":"9"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"9","x2":"48","y2":"9"},"children":[]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"32","cy":"57","r":"2"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"32","cy":"57","r":"2"},"children":[]}]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M22,27c0,6.666,10,12,10,12s10-5.334,10-12\r\n\tc0-2.762-2-5-5-5c-2.762,0-5,2.238-5,5c0-2.762-2.238-5-5-5C24,22,22,24.238,22,27z"},"children":[]}]};exports.basic_elaboration_smartphone_heart=basic_elaboration_smartphone_heart;var basic_elaboration_smartphone_noaccess={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"16","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"32","height":"62"},"children":[{"name":"rect","attribs":{"x":"16","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"32","height":"62"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"5","x2":"36","y2":"5"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"5","x2":"36","y2":"5"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"51","x2":"48","y2":"51"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"51","x2":"48","y2":"51"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"9","x2":"48","y2":"9"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"9","x2":"48","y2":"9"},"children":[]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"32","cy":"57","r":"2"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"32","cy":"57","r":"2"},"children":[]}]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"30","r":"9"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25.834","y1":"23.834","x2":"38.166","y2":"36.166"},"children":[]}]};exports.basic_elaboration_smartphone_noaccess=basic_elaboration_smartphone_noaccess;var basic_elaboration_smartphone_note={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"16","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"32","height":"62"},"children":[{"name":"rect","attribs":{"x":"16","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"32","height":"62"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"5","x2":"36","y2":"5"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"5","x2":"36","y2":"5"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"51","x2":"48","y2":"51"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"51","x2":"48","y2":"51"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"9","x2":"48","y2":"9"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"9","x2":"48","y2":"9"},"children":[]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"32","cy":"57","r":"2"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"32","cy":"57","r":"2"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"35","cy":"35","r":"3"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"35","cy":"35","r":"3"},"children":[]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"25","cy":"37","r":"3"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"25","cy":"37","r":"3"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"38,35 38,20 28,22 28,37 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"38,35 38,20 28,22 28,37 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"26","x2":"38","y2":"24"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"26","x2":"38","y2":"24"},"children":[]}]}]}]};exports.basic_elaboration_smartphone_note=basic_elaboration_smartphone_note;var basic_elaboration_smartphone_pencil={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"16","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"32","height":"62"},"children":[{"name":"rect","attribs":{"x":"16","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"32","height":"62"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"5","x2":"36","y2":"5"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"5","x2":"36","y2":"5"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"51","x2":"48","y2":"51"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"51","x2":"48","y2":"51"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"9","x2":"48","y2":"9"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"9","x2":"48","y2":"9"},"children":[]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"32","cy":"57","r":"2"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"32","cy":"57","r":"2"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,35 22,40 27,39 42,24 38,20 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,35 22,40 27,39 42,24 38,20 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"27","x2":"35","y2":"23"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"27","x2":"35","y2":"23"},"children":[]}]}]}]};exports.basic_elaboration_smartphone_pencil=basic_elaboration_smartphone_pencil;var basic_elaboration_smartphone_picture={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"16","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"32","height":"62"},"children":[{"name":"rect","attribs":{"x":"16","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"32","height":"62"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"5","x2":"36","y2":"5"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"5","x2":"36","y2":"5"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"51","x2":"48","y2":"51"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"51","x2":"48","y2":"51"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"9","x2":"48","y2":"9"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"9","x2":"48","y2":"9"},"children":[]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"32","cy":"57","r":"2"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"32","cy":"57","r":"2"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"22","y":"23","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"20","height":"14"},"children":[{"name":"rect","attribs":{"x":"22","y":"23","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"20","height":"14"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"22,35 29,28 33,33 35,31 41,36 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"22,35 29,28 33,33 35,31 41,36 \t"},"children":[]}]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"39","cy":"26","r":"3"},"children":[]}]};exports.basic_elaboration_smartphone_picture=basic_elaboration_smartphone_picture;var basic_elaboration_smartphone_refresh={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"16","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"32","height":"62"},"children":[{"name":"rect","attribs":{"x":"16","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"32","height":"62"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"5","x2":"36","y2":"5"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"5","x2":"36","y2":"5"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"51","x2":"48","y2":"51"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"51","x2":"48","y2":"51"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"9","x2":"48","y2":"9"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"9","x2":"48","y2":"9"},"children":[]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"32","cy":"57","r":"2"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"32","cy":"57","r":"2"},"children":[]}]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M24,30c0,4.418,3.582,9,8,9h4"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"33,43 36,39 \r\n\t33,35 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M42,30c0-4.418-3.582-9-8-9h-4"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"33,17 30,21 \r\n\t33,25 "},"children":[]}]};exports.basic_elaboration_smartphone_refresh=basic_elaboration_smartphone_refresh;var basic_elaboration_smartphone_search={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"16","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"32","height":"62"},"children":[{"name":"rect","attribs":{"x":"16","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"32","height":"62"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"5","x2":"36","y2":"5"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"5","x2":"36","y2":"5"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"51","x2":"48","y2":"51"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"51","x2":"48","y2":"51"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"9","x2":"48","y2":"9"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"9","x2":"48","y2":"9"},"children":[]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"32","cy":"57","r":"2"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"32","cy":"57","r":"2"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"29","cy":"27","r":"6"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"29","cy":"27","r":"6"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"33","y1":"31","x2":"41","y2":"39"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"33","y1":"31","x2":"41","y2":"39"},"children":[]}]}]}]};exports.basic_elaboration_smartphone_search=basic_elaboration_smartphone_search;var basic_elaboration_tablet_cloud={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M34.887,36H39c1.887,0,3-1,3-3c0-1-1-3-3-3\r\n\tc0-3.604-3.277-6-7-6c-3.295,0-6.413,2.978-7,6l0,0c-2,0-3,2-3,3c0,2,1,3,3,3h10.434"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"11","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"42","height":"62"},"children":[{"name":"rect","attribs":{"x":"11","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"42","height":"62"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"5","x2":"36","y2":"5"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11","y1":"51","x2":"53","y2":"51"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11","y1":"9","x2":"53","y2":"9"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"32","cy":"57","r":"2"},"children":[]}]};exports.basic_elaboration_tablet_cloud=basic_elaboration_tablet_cloud;var basic_elaboration_tablet_heart={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"11","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"42","height":"62"},"children":[{"name":"rect","attribs":{"x":"11","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"42","height":"62"},"children":[]}]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M22,27c0,6.666,10,12,10,12s10-5.334,10-12\r\n\tc0-2.762-2-5-5-5c-2.762,0-5,2.238-5,5c0-2.762-2.238-5-5-5C24,22,22,24.238,22,27z"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"5","x2":"36","y2":"5"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11","y1":"51","x2":"53","y2":"51"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11","y1":"9","x2":"53","y2":"9"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"32","cy":"57","r":"2"},"children":[]}]};exports.basic_elaboration_tablet_heart=basic_elaboration_tablet_heart;var basic_elaboration_tablet_noaccess={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"30","r":"9"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25.834","y1":"23.834","x2":"38.166","y2":"36.166"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"11","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"42","height":"62"},"children":[{"name":"rect","attribs":{"x":"11","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"42","height":"62"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"5","x2":"36","y2":"5"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11","y1":"51","x2":"53","y2":"51"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11","y1":"9","x2":"53","y2":"9"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"32","cy":"57","r":"2"},"children":[]}]};exports.basic_elaboration_tablet_noaccess=basic_elaboration_tablet_noaccess;var basic_elaboration_tablet_note={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"35","cy":"35","r":"3"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"35","cy":"35","r":"3"},"children":[]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"25","cy":"37","r":"3"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"25","cy":"37","r":"3"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"38,35 38,20 28,22 28,37 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"38,35 38,20 28,22 28,37 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"26","x2":"38","y2":"24"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"26","x2":"38","y2":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"11","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"42","height":"62"},"children":[{"name":"rect","attribs":{"x":"11","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"42","height":"62"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"5","x2":"36","y2":"5"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11","y1":"51","x2":"53","y2":"51"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11","y1":"9","x2":"53","y2":"9"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"32","cy":"57","r":"2"},"children":[]}]};exports.basic_elaboration_tablet_note=basic_elaboration_tablet_note;var basic_elaboration_tablet_pencil={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,35 22,40 27,39 42,24 38,20 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,35 22,40 27,39 42,24 38,20 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"27","x2":"35","y2":"23"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"27","x2":"35","y2":"23"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"11","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"42","height":"62"},"children":[{"name":"rect","attribs":{"x":"11","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"42","height":"62"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"5","x2":"36","y2":"5"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11","y1":"51","x2":"53","y2":"51"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11","y1":"9","x2":"53","y2":"9"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"32","cy":"57","r":"2"},"children":[]}]};exports.basic_elaboration_tablet_pencil=basic_elaboration_tablet_pencil;var basic_elaboration_tablet_picture={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"22","y":"23","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"20","height":"14"},"children":[{"name":"rect","attribs":{"x":"22","y":"23","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"20","height":"14"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"22,35 29,28 33,33 35,31 41,36 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"22,35 29,28 33,33 35,31 41,36 \t"},"children":[]}]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"39","cy":"26","r":"3"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"11","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"42","height":"62"},"children":[{"name":"rect","attribs":{"x":"11","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"42","height":"62"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"5","x2":"36","y2":"5"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11","y1":"51","x2":"53","y2":"51"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11","y1":"9","x2":"53","y2":"9"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"32","cy":"57","r":"2"},"children":[]}]};exports.basic_elaboration_tablet_picture=basic_elaboration_tablet_picture;var basic_elaboration_tablet_refresh={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M24,30c0,4.418,3.582,9,8,9h4"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"33,43 36,39 \r\n\t33,35 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M42,30c0-4.418-3.582-9-8-9h-4"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"33,17 30,21 \r\n\t33,25 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"11","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"42","height":"62"},"children":[{"name":"rect","attribs":{"x":"11","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"42","height":"62"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"5","x2":"36","y2":"5"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11","y1":"51","x2":"53","y2":"51"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11","y1":"9","x2":"53","y2":"9"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"32","cy":"57","r":"2"},"children":[]}]};exports.basic_elaboration_tablet_refresh=basic_elaboration_tablet_refresh;var basic_elaboration_tablet_search={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"29","cy":"27","r":"6"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"29","cy":"27","r":"6"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"33","y1":"31","x2":"41","y2":"39"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"33","y1":"31","x2":"41","y2":"39"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"11","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"42","height":"62"},"children":[{"name":"rect","attribs":{"x":"11","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"42","height":"62"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"5","x2":"36","y2":"5"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11","y1":"51","x2":"53","y2":"51"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11","y1":"9","x2":"53","y2":"9"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"32","cy":"57","r":"2"},"children":[]}]};exports.basic_elaboration_tablet_search=basic_elaboration_tablet_search;var basic_elaboration_todolist_2={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,8 10,8 10,63 54,63 54,8 41,8 "},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"36,5 36,1 28,1 28,5 24,5 22,13 42,13 40,5 \r\n\t"},"children":[]},{"name":"rect","attribs":{"x":"14","y":"13","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"36","height":"46"},"children":[]}]};exports.basic_elaboration_todolist_2=basic_elaboration_todolist_2;var basic_elaboration_todolist_check={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"23,34 30,41 \r\n\t43,28 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,8 10,8 10,63 54,63 54,8 41,8 "},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"36,5 36,1 28,1 28,5 24,5 22,13 42,13 40,5 \r\n\t"},"children":[]}]};exports.basic_elaboration_todolist_check=basic_elaboration_todolist_check;var basic_elaboration_todolist_cloud={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M34.887,42H39c1.887,0,3-1,3-3c0-1-1-3-3-3\r\n\tc0-3.604-3.277-6-7-6c-3.295,0-6.413,2.978-7,6l0,0c-2,0-3,2-3,3c0,2,1,3,3,3h10.434"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,8 10,8 10,63 54,63 54,8 41,8 "},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"36,5 36,1 28,1 28,5 24,5 22,13 42,13 40,5 \r\n\t"},"children":[]}]};exports.basic_elaboration_todolist_cloud=basic_elaboration_todolist_cloud;var basic_elaboration_todolist_download={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"40,37 32,45 \r\n\t24,37 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"45","x2":"32","y2":"25"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"45","x2":"32","y2":"25"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,8 10,8 10,63 54,63 54,8 41,8 "},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"36,5 36,1 28,1 28,5 24,5 22,13 42,13 40,5 \r\n\t"},"children":[]}]};exports.basic_elaboration_todolist_download=basic_elaboration_todolist_download;var basic_elaboration_todolist_flagged={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,8 10,8 10,63 54,63 54,8 41,8 "},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"36,5 36,1 28,1 28,5 24,5 22,13 42,13 40,5 \r\n\t"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"27","y1":"23","x2":"27","y2":"46"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"27,26 42,26 39.484,30 42,34 27,34 "},"children":[]}]};exports.basic_elaboration_todolist_flagged=basic_elaboration_todolist_flagged;var basic_elaboration_todolist_minus={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"41","y1":"36","x2":"23","y2":"36"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,8 10,8 10,63 54,63 54,8 41,8 "},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"36,5 36,1 28,1 28,5 24,5 22,13 42,13 40,5 \r\n\t"},"children":[]}]};exports.basic_elaboration_todolist_minus=basic_elaboration_todolist_minus;var basic_elaboration_todolist_noaccess={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"36","r":"9"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25.834","y1":"29.834","x2":"38.166","y2":"42.166"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,8 10,8 10,63 54,63 54,8 41,8 "},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"36,5 36,1 28,1 28,5 24,5 22,13 42,13 40,5 \r\n\t"},"children":[]}]};exports.basic_elaboration_todolist_noaccess=basic_elaboration_todolist_noaccess;var basic_elaboration_todolist_pencil={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,41 22,46 27,45 42,30 38,26 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,41 22,46 27,45 42,30 38,26 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"33","x2":"35","y2":"29"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"33","x2":"35","y2":"29"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,8 10,8 10,63 54,63 54,8 41,8 "},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"36,5 36,1 28,1 28,5 24,5 22,13 42,13 40,5 \r\n\t"},"children":[]}]};exports.basic_elaboration_todolist_pencil=basic_elaboration_todolist_pencil;var basic_elaboration_todolist_plus={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"27","x2":"32","y2":"45"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"41","y1":"36","x2":"23","y2":"36"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,8 10,8 10,63 54,63 54,8 41,8 "},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"36,5 36,1 28,1 28,5 24,5 22,13 42,13 40,5 \r\n\t"},"children":[]}]};exports.basic_elaboration_todolist_plus=basic_elaboration_todolist_plus;var basic_elaboration_todolist_refresh={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M24,36c0,4.418,3.582,9,8,9h4"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"33,49 36,45 \r\n\t33,41 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M42,36c0-4.418-3.582-9-8-9h-4"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"33,23 30,27 \r\n\t33,31 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,8 10,8 10,63 54,63 54,8 41,8 "},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"36,5 36,1 28,1 28,5 24,5 22,13 42,13 40,5 \r\n\t"},"children":[]}]};exports.basic_elaboration_todolist_refresh=basic_elaboration_todolist_refresh;var basic_elaboration_todolist_remove={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"43","x2":"25","y2":"29"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25","y1":"43","x2":"39","y2":"29"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,8 10,8 10,63 54,63 54,8 41,8 "},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"36,5 36,1 28,1 28,5 24,5 22,13 42,13 40,5 \r\n\t"},"children":[]}]};exports.basic_elaboration_todolist_remove=basic_elaboration_todolist_remove;var basic_elaboration_todolist_search={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"29","cy":"33","r":"6"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"29","cy":"33","r":"6"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"33","y1":"37","x2":"41","y2":"45"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"33","y1":"37","x2":"41","y2":"45"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,8 10,8 10,63 54,63 54,8 41,8 "},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"36,5 36,1 28,1 28,5 24,5 22,13 42,13 40,5 \r\n\t"},"children":[]}]};exports.basic_elaboration_todolist_search=basic_elaboration_todolist_search;var basic_elaboration_todolist_star={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,8 10,8 10,63 54,63 54,8 41,8 "},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"36,5 36,1 28,1 28,5 24,5 22,13 42,13 40,5 \r\n\t"},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"round","stroke-miterlimit":"10","points":"32,41 25.875,45 \r\n\t28,38 22,34 29.213,34 32,26 35,34 42,34 36,38 37.938,45 "},"children":[]}]};exports.basic_elaboration_todolist_star=basic_elaboration_todolist_star;var basic_elaboration_todolist_upload={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"23.998,34 \r\n\t31.998,26 39.998,34 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"31.998","y1":"26","x2":"31.998","y2":"46"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"31.998","y1":"26","x2":"31.998","y2":"46"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,8 10,8 10,63 54,63 54,8 41,8 "},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"36,5 36,1 28,1 28,5 24,5 22,13 42,13 40,5 \r\n\t"},"children":[]}]};exports.basic_elaboration_todolist_upload=basic_elaboration_todolist_upload;var ecommerce_bag={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"44,18 54,18 54,63 10,63 10,18 20,18 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M22,24V11c0-5.523,4.477-10,10-10s10,4.477,10,10v13\r\n\t"},"children":[]}]};exports.ecommerce_bag=ecommerce_bag;var ecommerce_bag_check={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"44,18 54,18 54,63 10,63 10,18 20,18 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"23,40 30,47 \r\n\t43,34 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M22,24V11c0-5.523,4.477-10,10-10s10,4.477,10,10v13\r\n\t"},"children":[]}]};exports.ecommerce_bag_check=ecommerce_bag_check;var ecommerce_bag_cloud={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"44,18 54,18 54,63 10,63 10,18 20,18 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M22,24V11c0-5.523,4.477-10,10-10s10,4.477,10,10v13\r\n\t"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M34.887,48H39c1.887,0,3-1,3-3c0-1-1-3-3-3\r\n\tc0-3.604-3.277-6-7-6c-3.295,0-6.413,2.978-7,6l0,0c-2,0-3,2-3,3c0,2,1,3,3,3h10.434"},"children":[]}]};exports.ecommerce_bag_cloud=ecommerce_bag_cloud;var ecommerce_bag_download={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"40,43 32,51 \r\n\t24,43 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"51","x2":"32","y2":"31"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"51","x2":"32","y2":"31"},"children":[]}]}]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"44,18 54,18 54,63 10,63 10,18 20,18 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M22,24V11c0-5.523,4.477-10,10-10s10,4.477,10,10v13\r\n\t"},"children":[]}]};exports.ecommerce_bag_download=ecommerce_bag_download;var ecommerce_bag_minus={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"44,18 54,18 54,63 10,63 10,18 20,18 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"41","y1":"42","x2":"23","y2":"42"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M22,24V11c0-5.523,4.477-10,10-10s10,4.477,10,10v13\r\n\t"},"children":[]}]};exports.ecommerce_bag_minus=ecommerce_bag_minus;var ecommerce_bag_plus={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"33","x2":"32","y2":"51"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"41","y1":"42","x2":"23","y2":"42"},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"44,18 54,18 54,63 10,63 10,18 20,18 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M22,24V11c0-5.523,4.477-10,10-10s10,4.477,10,10v13\r\n\t"},"children":[]}]};exports.ecommerce_bag_plus=ecommerce_bag_plus;var ecommerce_bag_refresh={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M24,42c0,4.418,3.582,9,8,9h4"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"33,55 36,51 \r\n\t33,47 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M42,42c0-4.418-3.582-9-8-9h-4"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"33,29 30,33 \r\n\t33,37 "},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"44,18 54,18 54,63 10,63 10,18 20,18 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M22,24V11c0-5.523,4.477-10,10-10s10,4.477,10,10v13\r\n\t"},"children":[]}]};exports.ecommerce_bag_refresh=ecommerce_bag_refresh;var ecommerce_bag_remove={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"44,18 54,18 54,63 10,63 10,18 20,18 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"49","x2":"25","y2":"35"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25","y1":"49","x2":"39","y2":"35"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M22,24V11c0-5.523,4.477-10,10-10s10,4.477,10,10v13\r\n\t"},"children":[]}]};exports.ecommerce_bag_remove=ecommerce_bag_remove;var ecommerce_bag_search={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"29","cy":"39","r":"6"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"29","cy":"39","r":"6"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"33","y1":"43","x2":"41","y2":"51"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"33","y1":"43","x2":"41","y2":"51"},"children":[]}]}]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"44,18 54,18 54,63 10,63 10,18 20,18 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M22,24V11c0-5.523,4.477-10,10-10s10,4.477,10,10v13\r\n\t"},"children":[]}]};exports.ecommerce_bag_search=ecommerce_bag_search;var ecommerce_bag_upload={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"23.998,40 \r\n\t31.998,32 39.998,40 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"31.998","y1":"32","x2":"31.998","y2":"52"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"31.998","y1":"32","x2":"31.998","y2":"52"},"children":[]}]}]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"44,18 54,18 54,63 10,63 10,18 20,18 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M22,24V11c0-5.523,4.477-10,10-10s10,4.477,10,10v13\r\n\t"},"children":[]}]};exports.ecommerce_bag_upload=ecommerce_bag_upload;var ecommerce_banknote={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"16","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"32"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M10,44c0-2.762-2.238-5-5-5V25c2.762,0,5-2.238,5-5\r\n\th44c0,2.762,2.238,5,5,5v14c-2.762,0-5,2.238-5,5H10z"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"8"},"children":[]}]};exports.ecommerce_banknote=ecommerce_banknote;var ecommerce_banknotes={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"24","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"52","height":"26"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,22 11,14 63,14 63,40 55,40 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M10,46c0-3-2-4-5-4V32c3,0,5-1,5-4h35c0,3,2,4,4,4\r\n\tv10c-2,0-4,1-4,4H10z"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"27","cy":"37","r":"5"},"children":[]}]};exports.ecommerce_banknotes=ecommerce_banknotes;var ecommerce_basket={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,25 12,59 52,59 63,25 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"25","x2":"22","y2":"5"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"50","y1":"25","x2":"42","y2":"5"},"children":[]}]};exports.ecommerce_basket=ecommerce_basket;var ecommerce_basket_check={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,25 12,59 52,59 63,25 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"25","x2":"22","y2":"5"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"50","y1":"25","x2":"42","y2":"5"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"23,41 30,48 \r\n\t43,35 "},"children":[]}]};exports.ecommerce_basket_check=ecommerce_basket_check;var ecommerce_basket_cloud={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,25 12,59 52,59 63,25 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"25","x2":"22","y2":"5"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"50","y1":"25","x2":"42","y2":"5"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M34.887,48H39c1.887,0,3-1,3-3c0-1-1-3-3-3\r\n\tc0-3.604-3.277-6-7-6c-3.295,0-6.413,2.978-7,6l0,0c-2,0-3,2-3,3c0,2,1,3,3,3h10.434"},"children":[]}]};exports.ecommerce_basket_cloud=ecommerce_basket_cloud;var ecommerce_basket_download={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,25 12,59 52,59 63,25 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"25","x2":"22","y2":"5"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"50","y1":"25","x2":"42","y2":"5"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"40,44 32,52 \r\n\t24,44 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"52","x2":"32","y2":"32"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"52","x2":"32","y2":"32"},"children":[]}]}]}]};exports.ecommerce_basket_download=ecommerce_basket_download;var ecommerce_basket_minus={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,25 12,59 52,59 63,25 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"25","x2":"22","y2":"5"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"50","y1":"25","x2":"42","y2":"5"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"41","y1":"43","x2":"23","y2":"43"},"children":[]}]};exports.ecommerce_basket_minus=ecommerce_basket_minus;var ecommerce_basket_plus={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,25 12,59 52,59 63,25 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"25","x2":"22","y2":"5"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"50","y1":"25","x2":"42","y2":"5"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"34","x2":"32","y2":"52"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"41","y1":"43","x2":"23","y2":"43"},"children":[]}]};exports.ecommerce_basket_plus=ecommerce_basket_plus;var ecommerce_basket_refresh={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,25 12,59 52,59 63,25 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"25","x2":"22","y2":"5"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"50","y1":"25","x2":"42","y2":"5"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M23,42c0,4.418,3.582,9,8,9h4"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"32,55 35,51 \r\n\t32,47 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M41,42c0-4.418-3.582-9-8-9h-4"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"32,29 29,33 \r\n\t32,37 "},"children":[]}]};exports.ecommerce_basket_refresh=ecommerce_basket_refresh;var ecommerce_basket_remove={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,25 12,59 52,59 63,25 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"25","x2":"22","y2":"5"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"50","y1":"25","x2":"42","y2":"5"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"50","x2":"25","y2":"36"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25","y1":"50","x2":"39","y2":"36"},"children":[]}]};exports.ecommerce_basket_remove=ecommerce_basket_remove;var ecommerce_basket_search={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,25 12,59 52,59 63,25 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"25","x2":"22","y2":"5"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"50","y1":"25","x2":"42","y2":"5"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"29","cy":"40","r":"6"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"29","cy":"40","r":"6"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"33","y1":"44","x2":"41","y2":"52"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"33","y1":"44","x2":"41","y2":"52"},"children":[]}]}]}]};exports.ecommerce_basket_search=ecommerce_basket_search;var ecommerce_basket_upload={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,25 12,59 52,59 63,25 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"25","x2":"22","y2":"5"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"50","y1":"25","x2":"42","y2":"5"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"23.998,41 \r\n\t31.998,33 39.998,41 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"31.998","y1":"33","x2":"31.998","y2":"53"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"31.998","y1":"33","x2":"31.998","y2":"53"},"children":[]}]}]}]};exports.ecommerce_basket_upload=ecommerce_basket_upload;var ecommerce_bath={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"24","y1":"48","x2":"24","y2":"16"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M24,17h5.443c0,0,8.562-0.783,8.562,7\r\n\ts-8.562,7-8.562,7H24"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M24,31h6.221c0,0,9.781-0.893,9.781,8\r\n\ts-9.781,8-9.781,8H24"},"children":[]},{"name":"rect","attribs":{"x":"29","y":"13","width":"2","height":"39"},"children":[]}]};exports.ecommerce_bath=ecommerce_bath;var ecommerce_cart={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"20","cy":"57","r":"6"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"44","cy":"57","r":"6"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"57","x2":"38","y2":"57"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"14,57 10,2 0,2 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"13,43 56,40 63,10 11,10 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"20,10 22,4 32,4 34,10 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,4 37,1 53,1 56,10 "},"children":[]}]};exports.ecommerce_cart=ecommerce_cart;var ecommerce_cart_check={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"20","cy":"57","r":"6"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"44","cy":"57","r":"6"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"57","x2":"38","y2":"57"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"14,57 10,2 0,2 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"13,43 56,40 63,10 11,10 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"27,24 34,31 \r\n\t47,18 "},"children":[]}]};exports.ecommerce_cart_check=ecommerce_cart_check;var ecommerce_cart_cloud={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"20","cy":"57","r":"6"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"44","cy":"57","r":"6"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"57","x2":"38","y2":"57"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"14,57 10,2 0,2 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"13,43 56,40 63,10 11,10 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M38.887,31H43c1.887,0,3-1,3-3c0-1-1-3-3-3\r\n\tc0-3.604-3.277-6-7-6c-3.295,0-6.413,2.978-7,6l0,0c-2,0-3,2-3,3c0,2,1,3,3,3h10.434"},"children":[]}]};exports.ecommerce_cart_cloud=ecommerce_cart_cloud;var ecommerce_cart_content={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"20","cy":"57","r":"6"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"44","cy":"57","r":"6"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"57","x2":"38","y2":"57"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"14,57 10,2 0,2 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"13,43 56,40 63,10 11,10 "},"children":[]}]};exports.ecommerce_cart_content=ecommerce_cart_content;var ecommerce_cart_download={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"20","cy":"57","r":"6"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"44","cy":"57","r":"6"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"57","x2":"38","y2":"57"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"14,57 10,2 0,2 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"13,43 56,40 63,10 11,10 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"44,27 36,35 \r\n\t28,27 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"36","y1":"35","x2":"36","y2":"15"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"36","y1":"35","x2":"36","y2":"15"},"children":[]}]}]}]};exports.ecommerce_cart_download=ecommerce_cart_download;var ecommerce_cart_minus={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"20","cy":"57","r":"6"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"44","cy":"57","r":"6"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"57","x2":"38","y2":"57"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"14,57 10,2 0,2 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"13,43 56,40 63,10 11,10 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"45","y1":"26","x2":"27","y2":"26"},"children":[]}]};exports.ecommerce_cart_minus=ecommerce_cart_minus;var ecommerce_cart_plus={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"20","cy":"57","r":"6"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"44","cy":"57","r":"6"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"57","x2":"38","y2":"57"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"14,57 10,2 0,2 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"13,43 56,40 63,10 11,10 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"36","y1":"17","x2":"36","y2":"35"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"45","y1":"26","x2":"27","y2":"26"},"children":[]}]};exports.ecommerce_cart_plus=ecommerce_cart_plus;var ecommerce_cart_refresh={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"20","cy":"57","r":"6"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"44","cy":"57","r":"6"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"57","x2":"38","y2":"57"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"14,57 10,2 0,2 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"13,43 56,40 63,10 11,10 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M28,26c0,4.418,3.582,9,8,9h4"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"37,39 40,35 \r\n\t37,31 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M46,26c0-4.418-3.582-9-8-9h-4"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"37,13 34,17 \r\n\t37,21 "},"children":[]}]};exports.ecommerce_cart_refresh=ecommerce_cart_refresh;var ecommerce_cart_remove={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"20","cy":"57","r":"6"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"44","cy":"57","r":"6"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"57","x2":"38","y2":"57"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"14,57 10,2 0,2 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"13,43 56,40 63,10 11,10 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"43","y1":"33","x2":"29","y2":"19"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"29","y1":"33","x2":"43","y2":"19"},"children":[]}]};exports.ecommerce_cart_remove=ecommerce_cart_remove;var ecommerce_cart_search={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"20","cy":"57","r":"6"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"44","cy":"57","r":"6"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"57","x2":"38","y2":"57"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"14,57 10,2 0,2 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"13,43 56,40 63,10 11,10 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"33","cy":"23","r":"6"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"33","cy":"23","r":"6"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"37","y1":"27","x2":"45","y2":"35"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"37","y1":"27","x2":"45","y2":"35"},"children":[]}]}]}]};exports.ecommerce_cart_search=ecommerce_cart_search;var ecommerce_cart_upload={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"20","cy":"57","r":"6"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"44","cy":"57","r":"6"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"57","x2":"38","y2":"57"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"14,57 10,2 0,2 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"13,43 56,40 63,10 11,10 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"27.998,24 \r\n\t35.998,16 43.998,24 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"35.998","y1":"16","x2":"35.998","y2":"36"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"35.998","y1":"16","x2":"35.998","y2":"36"},"children":[]}]}]}]};exports.ecommerce_cart_upload=ecommerce_cart_upload;var ecommerce_cent={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M42,43c0,0-1,4-10,4s-12-7-12-15s3-15,12-15\r\n\ts10,4,10,4"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"12","x2":"32","y2":"52"},"children":[]}]};exports.ecommerce_cent=ecommerce_cent;var ecommerce_colon={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M42,43c0,0-1,4-10,4s-12-7-12-15s3-15,12-15\r\n\ts10,4,10,4"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"36","y1":"14","x2":"21","y2":"49"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"41","y1":"14","x2":"26","y2":"49"},"children":[]}]};exports.ecommerce_colon=ecommerce_colon;var ecommerce_creditcard={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"11","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"42"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"17","x2":"63","y2":"17"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"25","x2":"63","y2":"25"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"6","y1":"47","x2":"10","y2":"47"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"12","y1":"47","x2":"41","y2":"47"},"children":[]}]};exports.ecommerce_creditcard=ecommerce_creditcard;var ecommerce_diamond={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"29,6 46,6 63,27 32,58 1,27 18,6 32,6 \r\n\t\t32,58 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"29,6 46,6 63,27 32,58 1,27 18,6 32,6 \r\n\t\t32,58 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,57 18,27 24,6 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,57 18,27 24,6 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,57 46,27 40,6 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,57 46,27 40,6 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"27","x2":"63","y2":"27"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"27","x2":"63","y2":"27"},"children":[]}]}]}]};exports.ecommerce_diamond=ecommerce_diamond;var ecommerce_dollar={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"29","y":"13","width":"2","height":"39"},"children":[]},{"name":"rect","attribs":{"x":"33","y":"13","width":"2","height":"39"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M40.988,23c0,0,0-6-9-6s-8,7-8,7s0,7,8,7\r\n\tc9,0,10.012,6,10.012,7c0,2,0.988,8-10.012,8c-9,0-8.988-4-8.988-5"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[]}]};exports.ecommerce_dollar=ecommerce_dollar;var ecommerce_euro={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M42,43c0,0-1,4-10,4s-12-7-12-15s3-15,12-15\r\n\ts10,4,10,4"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"15","y1":"30","x2":"34","y2":"30"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"15","y1":"34","x2":"34","y2":"34"},"children":[]}]};exports.ecommerce_euro=ecommerce_euro;var ecommerce_franc={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"25,48 25,18 41,18 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25","y1":"32","x2":"39","y2":"32"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"38","x2":"34","y2":"38"},"children":[]}]};exports.ecommerce_franc=ecommerce_franc;var ecommerce_gift={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"18","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"9"},"children":[]},{"name":"rect","attribs":{"x":"6","y":"27","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"52","height":"31"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"58","x2":"32","y2":"18"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32,18c0,0-13,0.101-13-9c0-7,13-4.068,13,2\r\n\tC32,17.067,32,18,32,18z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32,18c0,0,13,0.101,13-9c0-7-13-4.068-13,2\r\n\tC32,17.067,32,18,32,18z"},"children":[]}]};exports.ecommerce_gift=ecommerce_gift;var ecommerce_graph1={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M54.999,36.001C55,50.913,42.912,63,28,62.999\r\n\tC13.087,63,1,50.912,1.001,36C1,21.088,13.088,9,28,9.001V36L54.999,36.001z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M63,28C63.001,13.087,50.914,0.998,36.001,1v27H63z"},"children":[]}]};exports.ecommerce_graph1=ecommerce_graph1;var ecommerce_graph2={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"10","y":"29","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"12","height":"34"},"children":[]},{"name":"rect","attribs":{"x":"42","y":"39","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"12","height":"24"},"children":[]},{"name":"rect","attribs":{"x":"26","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"12","height":"62"},"children":[]}]};exports.ecommerce_graph2=ecommerce_graph2;var ecommerce_graph3={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"56","cy":"34","r":"3"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"22","cy":"4","r":"3"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"40","cy":"50","r":"3"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"7","cy":"31","r":"3"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"8","y1":"28","x2":"20","y2":"6"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"43","y1":"48","x2":"54","y2":"36"},"children":[]},{"name":"rect","attribs":{"x":"1","y":"57","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"6"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"24","y1":"6","x2":"38","y2":"47"},"children":[]}]};exports.ecommerce_graph3=ecommerce_graph3;var ecommerce_graph_decrease={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"10","y":"16","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"12","height":"47"},"children":[]},{"name":"rect","attribs":{"x":"42","y":"45","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"12","height":"18"},"children":[]},{"name":"rect","attribs":{"x":"26","y":"32","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"12","height":"31"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"1","x2":"54","y2":"39"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"1","x2":"54","y2":"39"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"43,39 54,39 \r\n\t\t54,28 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"43,39 54,39 \r\n\t\t54,28 \t"},"children":[]}]}]}]};exports.ecommerce_graph_decrease=ecommerce_graph_decrease;var ecommerce_graph_increase={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"10","y":"45","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"12","height":"18"},"children":[]},{"name":"rect","attribs":{"x":"42","y":"18","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"12","height":"45"},"children":[]},{"name":"rect","attribs":{"x":"26","y":"32","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"12","height":"31"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"38","x2":"51","y2":"1"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"38","x2":"51","y2":"1"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"40,1 51,1 51,12 \r\n\t\t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"40,1 51,1 51,12 \r\n\t\t\t"},"children":[]}]}]}]};exports.ecommerce_graph_increase=ecommerce_graph_increase;var ecommerce_guarani={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M42,21c0,0-1-4-10-4s-12,7-12,15s3,15,12,15\r\n\ts10-4,10-4v-7h-6"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"12","x2":"32","y2":"52"},"children":[]}]};exports.ecommerce_guarani=ecommerce_guarani;var ecommerce_kips={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25","y1":"16","x2":"25","y2":"48"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"43,48 26,31 42,16 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"31","x2":"39","y2":"31"},"children":[]}]};exports.ecommerce_kips=ecommerce_kips;var ecommerce_lira={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M42,19c0,0-1.059-3-6-3s-9,2-9,7s0,26,0,26h14"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"21","y1":"49","x2":"27","y2":"49"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"21","y1":"32","x2":"35","y2":"32"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"21","y1":"38","x2":"35","y2":"38"},"children":[]}]};exports.ecommerce_lira=ecommerce_lira;var ecommerce_megaphone={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,29 1,35 7,41 45.5,41 61,53 63,53 63,29 \r\n\t63,5 61,5 45.5,17 7,17 1,23 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"19,41 12,59 18,59 28,41 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"43","y1":"17","x2":"43","y2":"41"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"36","y1":"41","x2":"36","y2":"17"},"children":[]}]};exports.ecommerce_megaphone=ecommerce_megaphone;var ecommerce_money={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"44","cy":"38","r":"19"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"44","cy":"38","r":"13"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"30,51 1,51 1,57 38,57 38,56 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"27,45 3,45 3,51 30,51 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"26,39 5,39 5,45 27,45 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"26,33 1,33 1,39 26,39 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"29,27 3,27 3,33 26,33 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"35,21 1,21 1,27 29,27 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"40,20 40,15 3,15 3,21 35,21 "},"children":[]},{"name":"rect","attribs":{"x":"1","y":"9","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"37","height":"6"},"children":[]}]};exports.ecommerce_money=ecommerce_money;var ecommerce_naira={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"22,49 22,18 23,18 39,48 40,48 40,17 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"17","y1":"30","x2":"45","y2":"30"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"17","y1":"36","x2":"45","y2":"36"},"children":[]}]};exports.ecommerce_naira=ecommerce_naira;var ecommerce_pesos={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"24","y1":"48","x2":"24","y2":"16"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M24,17h7c0,0,11-1,11,9s-11,9-11,9h-7"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"19","y1":"24","x2":"47","y2":"24"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"19","y1":"28","x2":"47","y2":"28"},"children":[]}]};exports.ecommerce_pesos=ecommerce_pesos;var ecommerce_pound={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M42,19c0,0-1.059-3-6-3c-4.941,0-9,2-9,7s0,26,0,26\r\n\th14"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"21","y1":"49","x2":"27","y2":"49"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"21","y1":"32","x2":"35","y2":"32"},"children":[]}]};exports.ecommerce_pound=ecommerce_pound;var ecommerce_receipt={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"14.999","x2":"46","y2":"14.999"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"14.999","x2":"46","y2":"14.999"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"18","y1":"23.999","x2":"46","y2":"23.999"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"18","y1":"23.999","x2":"46","y2":"23.999"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"18","y1":"33.999","x2":"46","y2":"33.999"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"18","y1":"33.999","x2":"46","y2":"33.999"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"18","y1":"43.999","x2":"46","y2":"43.999"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"18","y1":"43.999","x2":"46","y2":"43.999"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"18","y1":"53.999","x2":"46","y2":"53.999"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"18","y1":"53.999","x2":"46","y2":"53.999"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[]}]}]}]};exports.ecommerce_receipt=ecommerce_receipt;var ecommerce_receipt_bath={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"48","x2":"26","y2":"22"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M26,23h5c0,0,6,0,6,6c0,5-6,5-6,5h-5"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M27,34h5c0,0,7-0.226,7,7c0,6-7,6-7,6h-6"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"20","x2":"32","y2":"50"},"children":[]}]};exports.ecommerce_receipt_bath=ecommerce_receipt_bath;var ecommerce_receipt_cent={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[]}]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M42,42c0,0-0.933,4-8,4c-7.066,0-9-5.719-9-12\r\n\ts1.934-11,9-11c7.067,0,8,3,8,3"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"34","y1":"20","x2":"34","y2":"49"},"children":[]}]};exports.ecommerce_receipt_cent=ecommerce_receipt_cent;var ecommerce_receipt_dollar={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[]}]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M38,28c0,0,0.161-4-6-4s-6,3-6,5s0.523,4,6,4\r\n\tc6.161,0,7,4.315,7,5c0,1.369,0.53,6-7,6c-6.161,0-6-3.315-6-4"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"34","y1":"21","x2":"34","y2":"48"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"30","y1":"21","x2":"30","y2":"48"},"children":[]}]};exports.ecommerce_receipt_dollar=ecommerce_receipt_dollar;var ecommerce_receipt_euro={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[]}]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M42,42c0,0-0.933,4-8,4c-7.066,0-9-5.719-9-12\r\n\ts1.934-11,9-11c7.067,0,8,3,8,3"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"21","y1":"33","x2":"36","y2":"33"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"21","y1":"37","x2":"36","y2":"37"},"children":[]}]};exports.ecommerce_receipt_euro=ecommerce_receipt_euro;var ecommerce_receipt_franc={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"27,48 27,21 40,21 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"27","y1":"34","x2":"38","y2":"34"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"23","y1":"39","x2":"34","y2":"39"},"children":[]}]};exports.ecommerce_receipt_franc=ecommerce_receipt_franc;var ecommerce_receipt_guarani={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[]}]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M42,26c0,0-0.933-3-8-3c-7.066,0-9,4.719-9,11\r\n\ts1.934,12,9,12c7.067,0,8-4,8-4v-5h-4"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"34","y1":"20","x2":"34","y2":"49"},"children":[]}]};exports.ecommerce_receipt_guarani=ecommerce_receipt_guarani;var ecommerce_receipt_kips={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"27","y1":"20","x2":"27","y2":"48"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"42,48 26.916,33.125 40.024,20 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"33","x2":"37","y2":"33"},"children":[]}]};exports.ecommerce_receipt_kips=ecommerce_receipt_kips;var ecommerce_receipt_lira={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[]}]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M39,23c0,0-1.062-1.916-4.941-1.916\r\n\tC30.178,21.084,27,22.074,27,26c0,3.927,0,21,0,21h11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"34","x2":"34","y2":"34"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"38","x2":"34","y2":"38"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"47","x2":"27","y2":"47"},"children":[]}]};exports.ecommerce_receipt_lira=ecommerce_receipt_lira;var ecommerce_receipt_naira={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"25,48 25,21 25.929,21 39.071,47 40,47 \r\n\t40,20 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"31","x2":"44","y2":"31"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"37","x2":"44","y2":"37"},"children":[]}]};exports.ecommerce_receipt_naira=ecommerce_receipt_naira;var ecommerce_receipt_pesos={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"24","y1":"48","x2":"24","y2":"20"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M24,21h6c0,0,10.018-0.703,10.018,8S30,37,30,37h-6"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"27","x2":"44","y2":"27"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"31","x2":"44","y2":"31"},"children":[]}]};exports.ecommerce_receipt_pesos=ecommerce_receipt_pesos;var ecommerce_receipt_pound={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[]}]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M39,23c0,0-1.062-1.916-4.941-1.916\r\n\tC30.178,21.084,27,22.074,27,26c0,3.927,0,21,0,21h11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"34","x2":"34","y2":"34"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"47","x2":"27","y2":"47"},"children":[]}]};exports.ecommerce_receipt_pound=ecommerce_receipt_pound;var ecommerce_receipt_rublo={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"48","x2":"26","y2":"20"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M26,21h5.953c0,0,10.078-0.723,10.078,8\r\n\ts-10.078,8-10.078,8H22"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"42","x2":"33","y2":"42"},"children":[]}]};exports.ecommerce_receipt_rublo=ecommerce_receipt_rublo;var ecommerce_receipt_rupee={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[]}]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M35.062,49.938L22,38v-1h6c0,0,10,0.75,10-8\r\n\tc0-7.875-10-8-10-8h-7"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"21","y1":"21","x2":"43","y2":"21"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"21","y1":"26","x2":"43","y2":"26"},"children":[]}]};exports.ecommerce_receipt_rupee=ecommerce_receipt_rupee;var ecommerce_receipt_tugrik={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"21","x2":"32","y2":"48"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"21","y1":"21","x2":"43","y2":"21"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"37","y1":"26","x2":"27","y2":"32"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"37","y1":"31","x2":"27","y2":"37"},"children":[]}]};exports.ecommerce_receipt_tugrik=ecommerce_receipt_tugrik;var ecommerce_receipt_won={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"18,20 24,47 25,47 31,22 33,22 39,47 \r\n\t40,47 46,20 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"32","x2":"48","y2":"32"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"37","x2":"48","y2":"37"},"children":[]}]};exports.ecommerce_receipt_won=ecommerce_receipt_won;var ecommerce_receipt_yen={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"22,22 32,36 32,48 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"22,22 32,36 32,48 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"22","x2":"32","y2":"36"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"22","x2":"32","y2":"36"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"23","y1":"38","x2":"41","y2":"38"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"23","y1":"38","x2":"41","y2":"38"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"34","y1":"33","x2":"41","y2":"33"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"34","y1":"33","x2":"41","y2":"33"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"23","y1":"33","x2":"30","y2":"33"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"23","y1":"33","x2":"30","y2":"33"},"children":[]}]}]}]};exports.ecommerce_receipt_yen=ecommerce_receipt_yen;var ecommerce_receipt_yen2={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"21","x2":"42","y2":"21"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"19","y1":"26","x2":"45","y2":"26"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M28,27v16c0,0-0.602,4-3.121,4H22"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M36,27v17c0,0,0.637,3,3.997,3H42"},"children":[]}]};exports.ecommerce_receipt_yen2=ecommerce_receipt_yen2;var ecommerce_recept_colon={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[]}]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M42,42c0,0-0.933,4-8,4c-7.066,0-9-5.719-9-12\r\n\ts1.934-11,9-11c7.067,0,8,3,8,3"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"37.869","y1":"20","x2":"24","y2":"47"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"21","x2":"28","y2":"48"},"children":[]}]};exports.ecommerce_recept_colon=ecommerce_recept_colon;var ecommerce_rublo={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"24","y1":"48","x2":"24","y2":"16"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M24,17h7c0,0,11-1,11,9s-11,9-11,9H19"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"19","y1":"41","x2":"32","y2":"41"},"children":[]}]};exports.ecommerce_rublo=ecommerce_rublo;var ecommerce_rupee={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M36,50L21,36v-1h7c0,0,11,1,11-9c0-9-11-9-11-9h-8"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"17","x2":"44","y2":"17"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"23","x2":"44","y2":"23"},"children":[]}]};exports.ecommerce_rupee=ecommerce_rupee;var ecommerce_safe={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"5","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"54"},"children":[]},{"name":"rect","attribs":{"x":"11","y":"11","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"46","height":"42"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"6","y1":"17","x2":"12","y2":"17"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"6","y1":"27","x2":"12","y2":"27"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"6","y1":"37","x2":"12","y2":"37"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"6","y1":"47","x2":"12","y2":"47"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"44","cy":"32","r":"3"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"44","cy":"32","r":"9"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"35","y1":"32","x2":"41","y2":"32"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"44","y1":"29","x2":"44","y2":"23"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"47","y1":"32","x2":"53","y2":"32"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"44","y1":"35","x2":"44","y2":"41"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"34","x2":"50","y2":"38"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"30","x2":"50","y2":"26"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"30","x2":"38","y2":"26"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"34","x2":"38.026","y2":"38"},"children":[]}]};exports.ecommerce_safe=ecommerce_safe;var ecommerce_sale={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"25,1 63,39 39,63 1,25 1,1 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"25,1 63,39 39,63 1,25 1,1 \t"},"children":[]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"17","cy":"17","r":"6"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"17","cy":"17","r":"6"},"children":[]}]}]}]};exports.ecommerce_sale=ecommerce_sale;var ecommerce_sales={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"21.903,5 55,38.097 34.097,59 1,25.903 \r\n\t\t1,5 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"21.903,5 55,38.097 34.097,59 1,25.903 \r\n\t\t1,5 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"29.903,5 63,38.097 42.097,59 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"29.903,5 63,38.097 42.097,59 \t"},"children":[]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"14","cy":"18","r":"5"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"14","cy":"18","r":"5"},"children":[]}]}]}]};exports.ecommerce_sales=ecommerce_sales;var ecommerce_ticket={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M57,18c-1.504,1.504-2.705,2-5,2\r\n\t\tc-4.59,0-8-3.41-8-8c0-2.295,0.496-3.496,2-5l-6-6L1,40l6,6c1.504-1.504,2.705-2,5-2c4.59,0,8,3.41,8,8c0,2.295-0.496,3.496-2,5\r\n\t\tl6,6l39-39L57,18z"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M57,18c-1.504,1.504-2.705,2-5,2\r\n\t\tc-4.59,0-8-3.41-8-8c0-2.295,0.496-3.496,2-5l-6-6L1,40l6,6c1.504-1.504,2.705-2,5-2c4.59,0,8,3.41,8,8c0,2.295-0.496,3.496-2,5\r\n\t\tl6,6l39-39L57,18z"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"15","x2":"30","y2":"19"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"15","x2":"30","y2":"19"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"45","y1":"34","x2":"49","y2":"38"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"45","y1":"34","x2":"49","y2":"38"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"21","x2":"36","y2":"25"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"28","x2":"43","y2":"32"},"children":[]}]};exports.ecommerce_ticket=ecommerce_ticket;var ecommerce_tugriks={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"17","x2":"32","y2":"52"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"18","y1":"17","x2":"46","y2":"17"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"24","x2":"25","y2":"32"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"30","x2":"25","y2":"38"},"children":[]}]};exports.ecommerce_tugriks=ecommerce_tugriks;var ecommerce_wallet={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"61,44 61,55 1,55 1,15 61,15 61,26 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"6,9 54,9 54,15 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M6,9c-2.762,0-5,2.239-5,5"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M43.125,26c-4.972,0-9,4.029-9,9c0,4.97,4.028,9,9,9\r\n\tH63V26H43.125z"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"44","cy":"35","r":"3"},"children":[]}]};exports.ecommerce_wallet=ecommerce_wallet;var ecommerce_won={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"15,16 23,48 24,48 31,18 33,18 40,48 \r\n\t41,48 49,16 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"13","y1":"30","x2":"51","y2":"30"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"13","y1":"36","x2":"51","y2":"36"},"children":[]}]};exports.ecommerce_won=ecommerce_won;var ecommerce_yen={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"20,16 32,33 32,48 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"20,16 32,33 32,48 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"44","y1":"16","x2":"32","y2":"33"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"44","y1":"16","x2":"32","y2":"33"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"21","y1":"36","x2":"43","y2":"36"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"21","y1":"36","x2":"43","y2":"36"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"34","y1":"30","x2":"43","y2":"30"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"34","y1":"30","x2":"43","y2":"30"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"21","y1":"30","x2":"30","y2":"30"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"21","y1":"30","x2":"30","y2":"30"},"children":[]}]}]}]};exports.ecommerce_yen=ecommerce_yen;var ecommerce_yen2={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"17","x2":"44","y2":"17"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"23","x2":"48","y2":"23"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M26,23v20c0,0,0,5-3,5h-4"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M37,23v21c0,0,0,4,4,4h2"},"children":[]}]};exports.ecommerce_yen2=ecommerce_yen2;var music_beginning_button={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"32,43 18,32 \r\n\t\t32,21 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"32,43 18,32 \r\n\t\t32,21 \t"},"children":[]}]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"52,43 38,32 \r\n\t\t52,21 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"52,43 38,32 \r\n\t\t52,21 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"12","y1":"41","x2":"12","y2":"23"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"12","y1":"41","x2":"12","y2":"23"},"children":[]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081\r\n\t\tc12.107,12.105,12.107,31.732,0,43.838c-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838\r\n\t\tC22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081\r\n\t\tc12.107,12.105,12.107,31.732,0,43.838c-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838\r\n\t\tC22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[]}]}]}]};exports.music_beginning_button=music_beginning_button;var music_bell={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32,55h25v-4l-7-7V25c0-9.941-8.059-18-18-18\r\n\ts-18,8.059-18,18v19l-7,7v4H32z"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"41","x2":"50","y2":"41"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"35","x2":"50","y2":"35"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M39,55c0,4.418-3.582,8-8,8s-8-3.582-8-8"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"28,7 28,1 36,1 36,7 "},"children":[]}]};exports.music_bell=music_bell;var music_cd={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"31"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"31"},"children":[]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"6"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"6"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"30","x2":"5","y2":"17"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"30","x2":"5","y2":"17"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"30","y1":"26","x2":"18","y2":"5"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"30","y1":"26","x2":"18","y2":"5"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"38","y1":"34","x2":"59","y2":"47"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"38","y1":"34","x2":"59","y2":"47"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"34","y1":"38","x2":"47","y2":"59"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"34","y1":"38","x2":"47","y2":"59"},"children":[]}]}]}]};exports.music_cd=music_cd;var music_diapason={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"5","cy":"59","r":"4"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M23,29c-3.124,3.124-3.124,8.876,0,12\r\n\tc3.124,3.124,8.876,2.124,12-1"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"23","y1":"29","x2":"51","y2":"1"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"35","y1":"40","x2":"63","y2":"12"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"23","y1":"41","x2":"8","y2":"56"},"children":[]}]};exports.music_diapason=music_diapason;var music_eject_button={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"21,34 32,20 \r\n\t\t43,34 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"21,34 32,20 \r\n\t\t43,34 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"40","x2":"42","y2":"40"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"40","x2":"42","y2":"40"},"children":[]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081\r\n\t\tc12.107,12.105,12.107,31.732,0,43.838c-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838\r\n\t\tC22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081\r\n\t\tc12.107,12.105,12.107,31.732,0,43.838c-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838\r\n\t\tC22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[]}]}]}]};exports.music_eject_button=music_eject_button;var music_end_button={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"32,21 46,32 \r\n\t\t32,43 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"32,21 46,32 \r\n\t\t32,43 \t"},"children":[]}]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"12,21 26,32 \r\n\t\t12,43 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"12,21 26,32 \r\n\t\t12,43 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"52","y1":"23","x2":"52","y2":"41"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"52","y1":"23","x2":"52","y2":"41"},"children":[]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081\r\n\t\tc12.107,12.105,12.107,31.732,0,43.838c-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838\r\n\t\tC22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081\r\n\t\tc12.107,12.105,12.107,31.732,0,43.838c-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838\r\n\t\tC22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[]}]}]}]};exports.music_end_button=music_end_button;var music_fastforward_button={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"36,21 50,32 \r\n\t\t36,43 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"36,21 50,32 \r\n\t\t36,43 \t"},"children":[]}]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"16,21 30,32 \r\n\t\t16,43 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"16,21 30,32 \r\n\t\t16,43 \t"},"children":[]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081\r\n\t\tc12.107,12.105,12.107,31.732,0,43.838c-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838\r\n\t\tC22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081\r\n\t\tc12.107,12.105,12.107,31.732,0,43.838c-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838\r\n\t\tC22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[]}]}]}]};exports.music_fastforward_button=music_fastforward_button;var music_headphones={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M11,53C5.477,53,1,48.523,1,43s4.477-10,10-10h2v20\r\n\tH11z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53,33c5.523,0,10,4.477,10,10s-4.477,10-10,10h-2\r\n\tV33H53z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M13,36v-9c0,0,0-16,19-16s19,16,19,16v6"},"children":[]}]};exports.music_headphones=music_headphones;var music_ipod={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"16","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"32","height":"62"},"children":[{"name":"rect","attribs":{"x":"16","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"32","height":"62"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"36","x2":"48","y2":"36"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"36","x2":"48","y2":"36"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"5","x2":"48","y2":"5"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"5","x2":"48","y2":"5"},"children":[]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"31.5","cy":"49.5","r":"9.5"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"31.5","cy":"49.5","r":"9.5"},"children":[]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"31.5","cy":"49.5","r":"2.5"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"31.5","cy":"49.5","r":"2.5"},"children":[]}]}]}]};exports.music_ipod=music_ipod;var music_loudspeaker={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"12","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"40","height":"62"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"42","r":"12"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"16","r":"6"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"42","r":"2.5"},"children":[]}]};exports.music_loudspeaker=music_loudspeaker;var music_microphone={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"45","cy":"15","r":"14"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,20 6,46 14,54 40,28 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"24","y1":"28","x2":"32","y2":"36"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"10,50 6,54 15,63 20,63 42,41 47,46 40,53 \r\n\t"},"children":[]}]};exports.music_microphone=music_microphone;var music_microphone_old={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"17","y1":"63","x2":"47","y2":"63"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"62","x2":"32","y2":"42"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M48,26c0,8-8,16-16,16s-16-8-16-16"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M40,27c0,4.418-3.582,8-8,8s-8-3.582-8-8V9\r\n\tc0-4.418,3.582-8,8-8s8,3.582,8,8V27z"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"29","y1":"13","x2":"24","y2":"13"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"29","y1":"23","x2":"24","y2":"23"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"40","y1":"13","x2":"35","y2":"13"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"40","y1":"23","x2":"35","y2":"23"},"children":[]}]};exports.music_microphone_old=music_microphone_old;var music_mixer={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"10","x2":"16","y2":"54"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"48","y1":"10","x2":"48","y2":"54"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"10","x2":"32","y2":"54"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"14","x2":"22","y2":"14"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"50","x2":"54","y2":"50"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"32","x2":"38","y2":"32"},"children":[]}]};exports.music_mixer=music_mixer;var music_mute={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"4,32 4,20 16,20 34,2 34,32 34,62 16,44 \r\n\t\t4,44 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"4,32 4,20 16,20 34,2 34,32 34,62 16,44 \r\n\t\t4,44 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"23","x2":"60","y2":"41"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"23","x2":"60","y2":"41"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"41","x2":"60","y2":"23"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"41","x2":"60","y2":"23"},"children":[]}]}]}]};exports.music_mute=music_mute;var music_note_multiple={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"18","cy":"55","r":"8"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"18","cy":"55","r":"8"},"children":[]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"46","cy":"49","r":"8"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"46","cy":"49","r":"8"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"54,49 54,1 26,7 26,55 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"54,49 54,1 26,7 26,55 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"23","x2":"54","y2":"17"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"23","x2":"54","y2":"17"},"children":[]}]}]}]};exports.music_note_multiple=music_note_multiple;var music_note_single={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"22","cy":"55","r":"8"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"22","cy":"55","r":"8"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"30,55 30,7 50,1 50,15 30,21 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"30,55 30,7 50,1 50,15 30,21 \t"},"children":[]}]}]}]};exports.music_note_single=music_note_single;var music_pause_button={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25","y1":"23","x2":"25","y2":"41"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25","y1":"23","x2":"25","y2":"41"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"38","y1":"23","x2":"38","y2":"41"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"38","y1":"23","x2":"38","y2":"41"},"children":[]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081\r\n\t\tc12.107,12.105,12.107,31.732,0,43.838c-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838\r\n\t\tC22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081\r\n\t\tc12.107,12.105,12.107,31.732,0,43.838c-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838\r\n\t\tC22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[]}]}]}]};exports.music_pause_button=music_pause_button;var music_play_button={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"27,21 41,32 \r\n\t\t27,43 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"27,21 41,32 \r\n\t\t27,43 \t"},"children":[]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081\r\n\t\tc12.107,12.105,12.107,31.732,0,43.838c-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838\r\n\t\tC22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081\r\n\t\tc12.107,12.105,12.107,31.732,0,43.838c-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838\r\n\t\tC22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[]}]}]}]};exports.music_play_button=music_play_button;var music_playlist={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"35","cy":"55","r":"8"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"35","cy":"55","r":"8"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"43,55 43,7 63,1 63,15 43,21 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"43,55 43,7 63,1 63,15 43,21 \t"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"4","y1":"16","x2":"38","y2":"16"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"4","y1":"26","x2":"38","y2":"26"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"4","y1":"36","x2":"38","y2":"36"},"children":[]}]};exports.music_playlist=music_playlist;var music_radio_ghettoblaster={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"21","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"35"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"17.5","cy":"38.5","r":"10.5"},"children":[]},{"name":"rect","attribs":{"x":"34","y":"35","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"23","height":"15"},"children":[]},{"name":"rect","attribs":{"x":"52","y":"27","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"5","height":"4"},"children":[]},{"name":"rect","attribs":{"x":"43","y":"27","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"5","height":"4"},"children":[]},{"name":"rect","attribs":{"x":"34","y":"27","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"5","height":"4"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"5,21 5,8 59,8 59,21 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"5","y1":"12","x2":"59","y2":"12"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"48","x2":"14","y2":"29"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"21","y1":"48","x2":"21","y2":"29"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"8","y1":"35","x2":"27","y2":"35"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"8","y1":"42","x2":"27","y2":"42"},"children":[]}]};exports.music_radio_ghettoblaster=music_radio_ghettoblaster;var music_radio_portable={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"22","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"38"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"20","cy":"41","r":"13"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"8","y1":"36","x2":"32","y2":"36"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"8","y1":"46","x2":"32","y2":"46"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25","y1":"29","x2":"25","y2":"53"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"15","y1":"29","x2":"15","y2":"53"},"children":[]},{"name":"rect","attribs":{"x":"43","y":"28","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"5","height":"4"},"children":[]},{"name":"rect","attribs":{"x":"52","y":"28","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"5","height":"4"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"52","cy":"49","r":"5"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"52","y1":"44","x2":"52","y2":"48"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"3,22 3,18 9,18 9,22 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"53,4 6,16 6,18 "},"children":[]}]};exports.music_radio_portable=music_radio_portable;var music_record={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"31"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"31"},"children":[]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"8"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"8"},"children":[]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32,48c-8.838,0-16-7.16-16-16"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32,48c-8.838,0-16-7.16-16-16"},"children":[]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32.002,48"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32.002,48"},"children":[]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32,16c8.838,0,16,7.162,16,16"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32,16c8.838,0,16,7.162,16,16"},"children":[]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32,9"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32,9"},"children":[]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32.003,55C19.299,55,9,44.707,9,32"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32.003,55C19.299,55,9,44.707,9,32"},"children":[]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32.003,55"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32.003,55"},"children":[]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M55,32.002"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M55,32.002"},"children":[]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32,9c12.704,0,23,10.295,23,23"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32,9c12.704,0,23,10.295,23,23"},"children":[]}]}]}]};exports.music_record=music_record;var music_recordplayer={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"62"},"children":[]},{"name":"rect","attribs":{"x":"53","y":"7","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"4","height":"8"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"27.5","cy":"27.5","r":"22.5"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"27.5","cy":"27.5","r":"6"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"57","y1":"15","x2":"57","y2":"48"},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"57,49 51,52 51,48 \r\n\t57,45 "},"children":[]},{"name":"rect","attribs":{"x":"5","y":"56","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"3"},"children":[]},{"name":"rect","attribs":{"x":"15","y":"56","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"3"},"children":[]}]};exports.music_recordplayer=music_recordplayer;var music_repeat_button={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"56,48 8,48 8,24 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"8,16 56,16 56,40 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"49,33 56,40 \r\n\t63,33 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"15,31 8,24 1,31 \r\n\t"},"children":[]}]};exports.music_repeat_button=music_repeat_button;var music_rewind_button={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"28,43 14,32 \r\n\t\t28,21 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"28,43 14,32 \r\n\t\t28,21 \t"},"children":[]}]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"48,43 34,32 \r\n\t\t48,21 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"48,43 34,32 \r\n\t\t48,21 \t"},"children":[]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081\r\n\t\tc12.107,12.105,12.107,31.732,0,43.838c-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838\r\n\t\tC22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081\r\n\t\tc12.107,12.105,12.107,31.732,0,43.838c-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838\r\n\t\tC22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[]}]}]}]};exports.music_rewind_button=music_rewind_button;var music_shuffle_button={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"0,48 15,48 47,16 63,16 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"37,38 47,48 63,48 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"0,16 15,16 25,26 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","d":"M56,23"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"56,23 63,16 56,9 \r\n\t"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"56,55 63,48 \r\n\t56,41 "},"children":[]}]};exports.music_shuffle_button=music_shuffle_button;var music_stop_button={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"22","y":"22","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"20","height":"20"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[]}]};exports.music_stop_button=music_stop_button;var music_tape={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"11","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"42"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"16","cy":"31","r":"6"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"48","cy":"31","r":"6"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"57,53 54,43 32,43 10,43 7,53 "},"children":[]},{"name":"rect","attribs":{"x":"5","y":"15","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"55","height":"4"},"children":[]},{"name":"rect","attribs":{"x":"26","y":"28","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"12","height":"6"},"children":[]}]};exports.music_tape=music_tape;var music_volume_down={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"8,32 8,20 20,20 38,2 38,32 38,62 20,44 \r\n\t\t8,44 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"8,32 8,20 20,20 38,2 38,32 38,62 20,44 \r\n\t\t8,44 \t"},"children":[]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M46,42c5.522,0,10-4.478,10-10s-4.478-10-10-10"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M46,42c5.522,0,10-4.478,10-10s-4.478-10-10-10"},"children":[]}]}]}]};exports.music_volume_down=music_volume_down;var music_volume_up={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"3,32 3,20 15,20 33,2 33,32 33,62 15,44 \r\n\t\t3,44 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"3,32 3,20 15,20 33,2 33,32 33,62 15,44 \r\n\t\t3,44 \t"},"children":[]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M41,42c5.522,0,10-4.478,10-10s-4.478-10-10-10"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M41,42c5.522,0,10-4.478,10-10s-4.478-10-10-10"},"children":[]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M41,12c11.046,0,20,8.954,20,20s-8.954,20-20,20"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M41,12c11.046,0,20,8.954,20,20s-8.954,20-20,20"},"children":[]}]}]}]};exports.music_volume_up=music_volume_up;var software_add_vectorpoint={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"53","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"10","height":"10"},"children":[]},{"name":"rect","attribs":{"x":"53","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"10","height":"10"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"44,22 44,20 42,20 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"44,22 44,20 42,20 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"40","y1":"20","x2":"23","y2":"20"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"40","y1":"20","x2":"23","y2":"20"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"22,20 20,20 20,22 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"22,20 20,20 20,22 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"20","y1":"24","x2":"20","y2":"41"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"20","y1":"24","x2":"20","y2":"41"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"20,42 20,44 22,44 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"20,42 20,44 22,44 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"24","y1":"44","x2":"41","y2":"44"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"24","y1":"44","x2":"41","y2":"44"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"42,44 44,44 44,42 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"42,44 44,44 44,42 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"44","y1":"40","x2":"44","y2":"23"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"44","y1":"40","x2":"44","y2":"23"},"children":[]}]}]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11","y1":"53","x2":"20","y2":"44"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"44","y1":"20","x2":"53","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"25","x2":"32","y2":"39"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"32","x2":"25","y2":"32"},"children":[]}]};exports.software_add_vectorpoint=software_add_vectorpoint;var software_box_oval={"viewBox":"0 0 64 64","children":[{"name":"ellipse","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","rx":"31","ry":"20"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"32","x2":"63","y2":"32"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"12","x2":"32","y2":"52"},"children":[]}]};exports.software_box_oval=software_box_oval;var software_box_polygon={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"16.676,59 1.351,32 16.676,5 47.324,5 \r\n\t62.649,32 47.324,59 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"17","y1":"5","x2":"47","y2":"59"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"47","y1":"5","x2":"17","y2":"59"},"children":[]}]};exports.software_box_polygon=software_box_polygon;var software_box_rectangle={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"12","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"40"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"12","x2":"63","y2":"52"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"63","y1":"12","x2":"1","y2":"52"},"children":[]}]};exports.software_box_rectangle=software_box_rectangle;var software_box_roundedrectangle={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M63,40c0,6.627-5.373,12-12,12H13\r\n\tC6.373,52,1,46.627,1,40V24c0-6.627,5.373-12,12-12h38c6.627,0,12,5.373,12,12V40z"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"5","y1":"15","x2":"59","y2":"49"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"59","y1":"15","x2":"5","y2":"49"},"children":[]}]};exports.software_box_roundedrectangle=software_box_roundedrectangle;var software_character={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,52.5 27,10 28,10 43,52.75 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,52.5 27,10 28,10 43,52.75 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"17","y1":"38","x2":"38","y2":"38"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"17","y1":"38","x2":"38","y2":"38"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"52","y1":"0","x2":"52","y2":"64"},"children":[]}]};exports.software_character=software_character;var software_crop={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"0,11 53,11 53,64 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,0 11,53 64,53 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11","y1":"53","x2":"63","y2":"1"},"children":[]}]};exports.software_crop=software_crop;var software_eyedropper={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M47,26l12-12l4-4c0-4.371-4.628-9-9-9\r\n\tc0,0-2.563,2.533-4,4L38,17"},"children":[]},{"name":"rect","attribs":{"x":"28.479","y":"20.672","transform":"matrix(-0.7071 -0.7071 0.7071 -0.7071 52.5208 68.7548)","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"24.042","height":"5.657"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"34,22 4,54 4,56 1,59 5,63 8,60 10,60 \r\n\t42,30 "},"children":[]}]};exports.software_eyedropper=software_eyedropper;var software_font_allcaps={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"31,50.987 18,16 17,16 4,51 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"31,50.987 18,16 17,16 4,51 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"27","y1":"39","x2":"8","y2":"39"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"27","y1":"39","x2":"8","y2":"39"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"60,50.987 47,16 46,16 33,51 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"60,50.987 47,16 46,16 33,51 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"56","y1":"39","x2":"37","y2":"39"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"56","y1":"39","x2":"37","y2":"39"},"children":[]}]}]},{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"62"},"children":[]}]};exports.software_font_allcaps=software_font_allcaps;var software_font_baseline_shift={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"36,43 21,1 20,1 5,43 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"36,43 21,1 20,1 5,43 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"31","y1":"29","x2":"10","y2":"29"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"31","y1":"29","x2":"10","y2":"29"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"59,31 51,8 50,8 42,31 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"59,31 51,8 50,8 42,31 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"57","y1":"24","x2":"44","y2":"24"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"57","y1":"24","x2":"44","y2":"24"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"38","y1":"47","x2":"2","y2":"47"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"62","y1":"35","x2":"40","y2":"35"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"58,47 51,40 \r\n\t44,47 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"51","y1":"64","x2":"51","y2":"40"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"51","y1":"64","x2":"51","y2":"40"},"children":[]}]}]}]};exports.software_font_baseline_shift=software_font_baseline_shift;var software_font_horizontal_scale={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"17,44 32,2 33,2 48,44 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"17,44 32,2 33,2 48,44 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"30","x2":"43","y2":"30"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"30","x2":"43","y2":"30"},"children":[]}]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","d":"M55,63"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"55,63 62,56 \r\n\t55,49 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"9,49 2,56 9,63 \r\n\t"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"62","y1":"56","x2":"2","y2":"56"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"62","y1":"56","x2":"2","y2":"56"},"children":[]}]}]}]};exports.software_font_horizontal_scale=software_font_horizontal_scale;var software_font_kerning={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"5,35 13,12 14,12 22,35 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"5,35 13,12 14,12 22,35 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"7","y1":"28","x2":"20","y2":"28"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"7","y1":"28","x2":"20","y2":"28"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"42,35 50,12 51,12 59,35 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"42,35 50,12 51,12 59,35 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"44","y1":"28","x2":"57","y2":"28"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"44","y1":"28","x2":"57","y2":"28"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"6","x2":"32","y2":"8"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"6","x2":"32","y2":"8"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"32","y1":"10","x2":"32","y2":"39"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"32","y1":"10","x2":"32","y2":"39"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"40","x2":"32","y2":"42"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"40","x2":"32","y2":"42"},"children":[]}]}]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"55,63 62,56 \r\n\t55,49 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"9,49 2,56 9,63 \r\n\t"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"62","y1":"56","x2":"2","y2":"56"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"62","y1":"56","x2":"2","y2":"56"},"children":[]}]}]}]};exports.software_font_kerning=software_font_kerning;var software_font_leading={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"36,24 44,1 45,1 53,24 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"36,24 44,1 45,1 53,24 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"38","y1":"17","x2":"51","y2":"17"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"38","y1":"17","x2":"51","y2":"17"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"27","y1":"28","x2":"61","y2":"28"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"36,57 44,34 45,34 53,57 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"36,57 44,34 45,34 53,57 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"38","y1":"50","x2":"51","y2":"50"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"38","y1":"50","x2":"51","y2":"50"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"27","y1":"61","x2":"61","y2":"61"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"5,55 12,62 19,55 \r\n\t"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"19,34 12,27 5,34 \r\n\t"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"12","y1":"62","x2":"12","y2":"27"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"12","y1":"62","x2":"12","y2":"27"},"children":[]}]}]}]};exports.software_font_leading=software_font_leading;var software_font_size={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"28,43 43,1 44,1 59,43 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"28,43 43,1 44,1 59,43 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"33","y1":"29","x2":"54","y2":"29"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"33","y1":"29","x2":"54","y2":"29"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"5,43 13,20 14,20 22,43 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"5,43 13,20 14,20 22,43 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"7","y1":"36","x2":"20","y2":"36"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"7","y1":"36","x2":"20","y2":"36"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"56,63 63,56 \r\n\t56,49 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"8,49 1,56 8,63 \r\n\t"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"63","y1":"56","x2":"1","y2":"56"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"63","y1":"56","x2":"1","y2":"56"},"children":[]}]}]}]};exports.software_font_size=software_font_size;var software_font_smallcapital={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"37,51 22,9 21,9 6,51 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"37,51 22,9 21,9 6,51 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"37","x2":"11","y2":"37"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"37","x2":"11","y2":"37"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"58,51 50,28 49,28 41,51 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"58,51 50,28 49,28 41,51 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"56","y1":"44","x2":"43","y2":"44"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"56","y1":"44","x2":"43","y2":"44"},"children":[]}]}]},{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"62"},"children":[]}]};exports.software_font_smallcapital=software_font_smallcapital;var software_font_smallcaps={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"38,51 23,9 22,9 7,51 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"38,51 23,9 22,9 7,51 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"33","y1":"37","x2":"12","y2":"37"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"33","y1":"37","x2":"12","y2":"37"},"children":[]}]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M44,34c0,0,1.5-2,5.5-2s5.5,3,5.5,5s0,10,0,10\r\n\ts0,3,2.5,3"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M55,40h-5c0,0-7,0-7,5s4,5,5,5s7,0,7-7"},"children":[]},{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"62"},"children":[]}]};exports.software_font_smallcaps=software_font_smallcaps;var software_font_strikethrough={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"38,51 23,9 22,9 7,51 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"38,51 23,9 22,9 7,51 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"35","x2":"13","y2":"35"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"35","x2":"13","y2":"35"},"children":[]}]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M44,34c0,0,1.5-2,5.5-2s5.5,3,5.5,5s0,10,0,10\r\n\ts0,3,2.5,3"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M55,40h-5c0,0-7,0-7,5s4,5,5,5s7,0,7-7"},"children":[]},{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"6","y1":"44","x2":"58","y2":"44"},"children":[]}]};exports.software_font_strikethrough=software_font_strikethrough;var software_font_tracking={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,35 17,12 18,12 26,35 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,35 17,12 18,12 26,35 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11","y1":"28","x2":"24","y2":"28"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11","y1":"28","x2":"24","y2":"28"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"38,35 46,12 47,12 55,35 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"38,35 46,12 47,12 55,35 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"40","y1":"28","x2":"53","y2":"28"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"40","y1":"28","x2":"53","y2":"28"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"6","x2":"32","y2":"8"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"6","x2":"32","y2":"8"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"32","y1":"10","x2":"32","y2":"39"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"32","y1":"10","x2":"32","y2":"39"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"40","x2":"32","y2":"42"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"40","x2":"32","y2":"42"},"children":[]}]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"4","y1":"6","x2":"4","y2":"8"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"4","y1":"6","x2":"4","y2":"8"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"4","y1":"10","x2":"4","y2":"39"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"4","y1":"10","x2":"4","y2":"39"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"4","y1":"40","x2":"4","y2":"42"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"4","y1":"40","x2":"4","y2":"42"},"children":[]}]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"60","y1":"6","x2":"60","y2":"8"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"60","y1":"6","x2":"60","y2":"8"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"60","y1":"10","x2":"60","y2":"39"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"60","y1":"10","x2":"60","y2":"39"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"60","y1":"40","x2":"60","y2":"42"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"60","y1":"40","x2":"60","y2":"42"},"children":[]}]}]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"55,63 62,56 \r\n\t55,49 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"9,49 2,56 9,63 \r\n\t"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"62","y1":"56","x2":"2","y2":"56"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"62","y1":"56","x2":"2","y2":"56"},"children":[]}]}]}]};exports.software_font_tracking=software_font_tracking;var software_font_underline={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"38,51 23,9 22,9 7,51 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"38,51 23,9 22,9 7,51 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"35","x2":"13","y2":"35"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"35","x2":"13","y2":"35"},"children":[]}]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M44,34c0,0,1.5-2,5.5-2s5.5,3,5.5,5s0,10,0,10\r\n\ts0,3,2.5,3"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M55,40h-5c0,0-7,0-7,5s4,5,5,5s7,0,7-7"},"children":[]},{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"6","y1":"55","x2":"58","y2":"55"},"children":[]}]};exports.software_font_underline=software_font_underline;var software_font_vertical_scale={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"29,53 44,11 45,11 60,53 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"29,53 44,11 45,11 60,53 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"34","y1":"39","x2":"55","y2":"39"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"34","y1":"39","x2":"55","y2":"39"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"5,55 12,62 19,55 \r\n\t"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"19,9 12,2 5,9 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"12","y1":"62","x2":"12","y2":"2"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"12","y1":"62","x2":"12","y2":"2"},"children":[]}]}]}]};exports.software_font_vertical_scale=software_font_vertical_scale;var software_horizontal_align_center={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"51","x2":"32","y2":"64"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"0","x2":"32","y2":"13"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"29","x2":"32","y2":"35"},"children":[]},{"name":"rect","attribs":{"x":"6","y":"35","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"52","height":"16"},"children":[]},{"name":"rect","attribs":{"x":"12","y":"13","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"40","height":"16"},"children":[]}]};exports.software_horizontal_align_center=software_horizontal_align_center;var software_horizontal_align_left={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"0","x2":"1","y2":"64"},"children":[]},{"name":"rect","attribs":{"x":"7","y":"35","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"52","height":"16"},"children":[]},{"name":"rect","attribs":{"x":"7","y":"13","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"40","height":"16"},"children":[]}]};exports.software_horizontal_align_left=software_horizontal_align_left;var software_horizontal_align_right={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"63","y1":"0","x2":"63","y2":"64"},"children":[]},{"name":"rect","attribs":{"x":"5","y":"35","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"52","height":"16"},"children":[]},{"name":"rect","attribs":{"x":"17","y":"13","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"40","height":"16"},"children":[]}]};exports.software_horizontal_align_right=software_horizontal_align_right;var software_horizontal_distribute_center={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"43","y1":"0","x2":"43","y2":"12"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"43","y1":"52","x2":"43","y2":"64"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"21","y1":"0","x2":"21","y2":"6"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"21","y1":"58","x2":"21","y2":"64"},"children":[]},{"name":"rect","attribs":{"x":"35","y":"12","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"16","height":"40"},"children":[]},{"name":"rect","attribs":{"x":"13","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"16","height":"52"},"children":[]}]};exports.software_horizontal_distribute_center=software_horizontal_distribute_center;var software_horizontal_distribute_left={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"35","y1":"0","x2":"35","y2":"64"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"13","y1":"0","x2":"13","y2":"64"},"children":[]},{"name":"rect","attribs":{"x":"35","y":"12","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"16","height":"40"},"children":[]},{"name":"rect","attribs":{"x":"13","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"16","height":"52"},"children":[]}]};exports.software_horizontal_distribute_left=software_horizontal_distribute_left;var software_horizontal_distribute_right={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"29","y1":"64","x2":"29","y2":"0"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"51","y1":"64","x2":"51","y2":"0"},"children":[]},{"name":"rect","attribs":{"x":"13","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"16","height":"52"},"children":[]},{"name":"rect","attribs":{"x":"35","y":"12","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"16","height":"40"},"children":[]}]};exports.software_horizontal_distribute_right=software_horizontal_distribute_right;var software_indent_firstline={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"30","y1":"10","x2":"64","y2":"10"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"20","x2":"53","y2":"20"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"30","x2":"64","y2":"30"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"40","x2":"56","y2":"40"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"50","x2":"64","y2":"50"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"60","x2":"58","y2":"60"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"16,17 23,10 \r\n\t\t16,3 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"16,17 23,10 \r\n\t\t16,3 \t"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"23","y1":"10","x2":"0","y2":"10"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"23","y1":"10","x2":"0","y2":"10"},"children":[]}]}]}]}]}]};exports.software_indent_firstline=software_indent_firstline;var software_indent_left={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"30","y1":"7","x2":"64","y2":"7"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"30","y1":"17","x2":"52","y2":"17"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"30","y1":"27","x2":"64","y2":"27"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"30","y1":"37","x2":"55","y2":"37"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"30","y1":"47","x2":"64","y2":"47"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"30","y1":"57","x2":"57","y2":"57"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25","y1":"0","x2":"25","y2":"64"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"12,39 19,32 \r\n\t12,25 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"19","y1":"32","x2":"0","y2":"32"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"19","y1":"32","x2":"0","y2":"32"},"children":[]}]}]}]};exports.software_indent_left=software_indent_left;var software_indent_right={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"34","y1":"7","x2":"0","y2":"7"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"34","y1":"17","x2":"12","y2":"17"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"34","y1":"27","x2":"0","y2":"27"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"34","y1":"37","x2":"9","y2":"37"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"34","y1":"47","x2":"0","y2":"47"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"34","y1":"57","x2":"7","y2":"57"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"0","x2":"39","y2":"64"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"52,25 45,32 \r\n\t52,39 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"45","y1":"32","x2":"64","y2":"32"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"45","y1":"32","x2":"64","y2":"32"},"children":[]}]}]}]};exports.software_indent_right=software_indent_right;var software_lasso={"viewBox":"0 0 64 64","children":[{"name":"ellipse","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"25.5","rx":"31","ry":"19.5"},"children":[]},{"name":"ellipse","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"21","cy":"48","rx":"6","ry":"4"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M25,51c0,0,2,1,2,4s-2,3-2,3"},"children":[]}]};exports.software_lasso=software_lasso;var software_layers1={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"18,32.066 2,39 32,51 62,39 46,32.067 "},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,38 62,26 32,13 2,26 "},"children":[]}]};exports.software_layers1=software_layers1;var software_layers2={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"18,26.066 2,33 32,45 62,33 46,26.067 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"18,39.066 2,46 32,58 62,46 46,39.067 "},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,32 62,20 32,7 2,20 "},"children":[]}]};exports.software_layers2=software_layers2;var software_layout={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"62"},"children":[]}]};exports.software_layout=software_layout;var software_layout_2columns={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"31","height":"62"},"children":[]},{"name":"rect","attribs":{"x":"32","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"31","height":"62"},"children":[]}]};exports.software_layout_2columns=software_layout_2columns;var software_layout_3columns={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"20","height":"62"},"children":[]},{"name":"rect","attribs":{"x":"43","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"20","height":"62"},"children":[]},{"name":"rect","attribs":{"x":"21","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"22","height":"62"},"children":[]}]};exports.software_layout_3columns=software_layout_3columns;var software_layout_4boxes={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"32","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"31","height":"31"},"children":[]},{"name":"rect","attribs":{"x":"32","y":"32","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"31","height":"31"},"children":[]},{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"31","height":"31"},"children":[]},{"name":"rect","attribs":{"x":"32","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"31","height":"31"},"children":[]}]};exports.software_layout_4boxes=software_layout_4boxes;var software_layout_4columns={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"15","height":"62"},"children":[]},{"name":"rect","attribs":{"x":"16","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"16","height":"62"},"children":[]},{"name":"rect","attribs":{"x":"32","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"15","height":"62"},"children":[]},{"name":"rect","attribs":{"x":"47","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"16","height":"62"},"children":[]}]};exports.software_layout_4columns=software_layout_4columns;var software_layout_4lines={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"15"},"children":[]},{"name":"rect","attribs":{"x":"1","y":"16","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"16"},"children":[]},{"name":"rect","attribs":{"x":"1","y":"32","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"15"},"children":[]},{"name":"rect","attribs":{"x":"1","y":"47","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"16"},"children":[]}]};exports.software_layout_4lines=software_layout_4lines;var software_layout_header={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"14"},"children":[]},{"name":"rect","attribs":{"x":"1","y":"15","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"48"},"children":[]}]};exports.software_layout_header=software_layout_header;var software_layout_header_2columns={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"14"},"children":[]},{"name":"rect","attribs":{"x":"1","y":"15","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"31","height":"48"},"children":[]},{"name":"rect","attribs":{"x":"32","y":"15","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"31","height":"48"},"children":[]}]};exports.software_layout_header_2columns=software_layout_header_2columns;var software_layout_header_3columns={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"14"},"children":[]},{"name":"rect","attribs":{"x":"1","y":"15","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"20","height":"48"},"children":[]},{"name":"rect","attribs":{"x":"43","y":"15","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"20","height":"48"},"children":[]},{"name":"rect","attribs":{"x":"21","y":"15","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"22","height":"48"},"children":[]}]};exports.software_layout_header_3columns=software_layout_header_3columns;var software_layout_header_4boxes={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"14"},"children":[]},{"name":"rect","attribs":{"x":"1","y":"39","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"31","height":"24"},"children":[]},{"name":"rect","attribs":{"x":"32","y":"39","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"31","height":"24"},"children":[]},{"name":"rect","attribs":{"x":"1","y":"15","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"31","height":"24"},"children":[]},{"name":"rect","attribs":{"x":"32","y":"15","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"31","height":"24"},"children":[]}]};exports.software_layout_header_4boxes=software_layout_header_4boxes;var software_layout_header_4columns={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"14"},"children":[]},{"name":"rect","attribs":{"x":"1","y":"15","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"15","height":"48"},"children":[]},{"name":"rect","attribs":{"x":"16","y":"15","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"16","height":"48"},"children":[]},{"name":"rect","attribs":{"x":"32","y":"15","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"15","height":"48"},"children":[]},{"name":"rect","attribs":{"x":"47","y":"15","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"16","height":"48"},"children":[]}]};exports.software_layout_header_4columns=software_layout_header_4columns;var software_layout_header_complex={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"14"},"children":[]},{"name":"rect","attribs":{"x":"1","y":"15","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"48"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"15","x2":"22","y2":"63"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"38","x2":"63","y2":"38"},"children":[]}]};exports.software_layout_header_complex=software_layout_header_complex;var software_layout_header_complex2={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"14"},"children":[]},{"name":"rect","attribs":{"x":"1","y":"15","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"48"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"15","x2":"42","y2":"63"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"38","x2":"42","y2":"38"},"children":[]}]};exports.software_layout_header_complex2=software_layout_header_complex2;var software_layout_header_complex3={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"14"},"children":[]},{"name":"rect","attribs":{"x":"1","y":"15","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"31","height":"48"},"children":[]},{"name":"rect","attribs":{"x":"32","y":"15","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"15","height":"48"},"children":[]},{"name":"rect","attribs":{"x":"47","y":"15","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"16","height":"48"},"children":[]}]};exports.software_layout_header_complex3=software_layout_header_complex3;var software_layout_header_complex4={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"14"},"children":[]},{"name":"rect","attribs":{"x":"1","y":"15","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"31","height":"48"},"children":[]},{"name":"rect","attribs":{"x":"32","y":"15","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"15","height":"48"},"children":[]},{"name":"rect","attribs":{"x":"47","y":"15","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"16","height":"48"},"children":[]}]};exports.software_layout_header_complex4=software_layout_header_complex4;var software_layout_header_sideleft={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"14"},"children":[]},{"name":"rect","attribs":{"x":"1","y":"15","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"48"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"15","x2":"22","y2":"63"},"children":[]}]};exports.software_layout_header_sideleft=software_layout_header_sideleft;var software_layout_header_sideright={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"14"},"children":[]},{"name":"rect","attribs":{"x":"1","y":"15","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"48"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"15","x2":"42","y2":"63"},"children":[]}]};exports.software_layout_header_sideright=software_layout_header_sideright;var software_layout_sidebar_left={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"20","height":"62"},"children":[]},{"name":"rect","attribs":{"x":"21","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"42","height":"62"},"children":[]}]};exports.software_layout_sidebar_left=software_layout_sidebar_left;var software_layout_sidebar_right={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"43","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"20","height":"62"},"children":[]},{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"42","height":"62"},"children":[]}]};exports.software_layout_sidebar_right=software_layout_sidebar_right;var software_magnete={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M24,42c0,4.418,3.582,8,8,8s8-3.582,8-8V1h13v41\r\n\tc0,11.598-9.402,21-21,21s-21-9.402-21-21V1h13V42z"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11","y1":"10","x2":"24","y2":"10"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"40","y1":"10","x2":"53","y2":"10"},"children":[]}]};exports.software_magnete=software_magnete;var software_pages={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,11 32,11 32,53 1,53 1,21 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,11 32,11 32,53 1,53 1,21 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,21 11,21 11,11 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,21 11,21 11,11 \t"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"53,11 32,11 32,53 63,53 63,21 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"53,11 32,11 32,53 63,53 63,21 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,21 53,21 53,11 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,21 53,21 53,11 \t"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"6","x2":"32","y2":"58"},"children":[]}]};exports.software_pages=software_pages;var software_paintbrush={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"30,42 26,46 18,38 22,34 62,1 63,2 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"34","x2":"30","y2":"42"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M26,46c0,0-8,17-25,17c0,0,2.752-16.314,9-21\r\n\tc4-3,8-4,8-4"},"children":[]}]};exports.software_paintbrush=software_paintbrush;var software_paintbucket={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"3,38 28,63 54,37 \r\n\t61,36 33,8 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","d":"M32,27V6\r\n\tc0-2.762-2.238-5-5-5s-5,2.238-5,5v13"},"children":[]}]};exports.software_paintbucket=software_paintbucket;var software_paintroller={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"7","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"48","height":"17"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"2","y1":"9","x2":"7","y2":"9"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"55,9 61,9 61,24 32,24 32,41 "},"children":[]},{"name":"rect","attribs":{"x":"28","y":"42","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"8","height":"21"},"children":[]}]};exports.software_paintroller=software_paintroller;var software_paragraph={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"51,64 51,1 41,1 41,64 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"29","y1":"33","x2":"41","y2":"33"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M29,33c0,0-16,0-16-16S29,1,29,1h12"},"children":[]}]};exports.software_paragraph=software_paragraph;var software_paragraph_align_left={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"7","x2":"64","y2":"7"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"17","x2":"46","y2":"17"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"27","x2":"64","y2":"27"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"37","x2":"50","y2":"37"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"47","x2":"64","y2":"47"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"57","x2":"54","y2":"57"},"children":[]}]};exports.software_paragraph_align_left=software_paragraph_align_left;var software_paragraph_align_right={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"7","x2":"0","y2":"7"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"17","x2":"18","y2":"17"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"27","x2":"0","y2":"27"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"37","x2":"14","y2":"37"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"47","x2":"0","y2":"47"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"57","x2":"10","y2":"57"},"children":[]}]};exports.software_paragraph_align_right=software_paragraph_align_right;var software_paragraph_center={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"7","x2":"64","y2":"7"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"9","y1":"17","x2":"55","y2":"17"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"27","x2":"64","y2":"27"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"7","y1":"37","x2":"57","y2":"37"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"47","x2":"64","y2":"47"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"5","y1":"57","x2":"59","y2":"57"},"children":[]}]};exports.software_paragraph_center=software_paragraph_center;var software_paragraph_justify_all={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"7","x2":"0","y2":"7"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"17","x2":"0","y2":"17"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"27","x2":"0","y2":"27"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"37","x2":"0","y2":"37"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"47","x2":"0","y2":"47"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"57","x2":"0","y2":"57"},"children":[]}]};exports.software_paragraph_justify_all=software_paragraph_justify_all;var software_paragraph_justify_center={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"7","x2":"0","y2":"7"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"17","x2":"0","y2":"17"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"27","x2":"0","y2":"27"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"37","x2":"0","y2":"37"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"47","x2":"0","y2":"47"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"54","y1":"57","x2":"10","y2":"57"},"children":[]}]};exports.software_paragraph_justify_center=software_paragraph_justify_center;var software_paragraph_justify_left={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"7","x2":"64","y2":"7"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"17","x2":"64","y2":"17"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"27","x2":"64","y2":"27"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"37","x2":"64","y2":"37"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"47","x2":"64","y2":"47"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"57","x2":"44","y2":"57"},"children":[]}]};exports.software_paragraph_justify_left=software_paragraph_justify_left;var software_paragraph_justify_right={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"7","x2":"0","y2":"7"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"17","x2":"0","y2":"17"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"27","x2":"0","y2":"27"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"37","x2":"0","y2":"37"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"47","x2":"0","y2":"47"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"57","x2":"20","y2":"57"},"children":[]}]};exports.software_paragraph_justify_right=software_paragraph_justify_right;var software_paragraph_space_after={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"6","x2":"64","y2":"6"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"16","x2":"56","y2":"16"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"26","x2":"64","y2":"26"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"36","x2":"58","y2":"36"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"59,48 59,46 57,46 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"59,48 59,46 57,46 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"55","y1":"46","x2":"26","y2":"46"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"55","y1":"46","x2":"26","y2":"46"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"25,46 23,46 23,48 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"25,46 23,46 23,48 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"3,2","x1":"23","y1":"50","x2":"23","y2":"53"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"3,2","x1":"23","y1":"50","x2":"23","y2":"53"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,54 23,56 25,56 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,54 23,56 25,56 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"27","y1":"56","x2":"56","y2":"56"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"27","y1":"56","x2":"56","y2":"56"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"57,56 59,56 59,54 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"57,56 59,56 59,54 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"3,2","x1":"59","y1":"53","x2":"59","y2":"49"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"3,2","x1":"59","y1":"53","x2":"59","y2":"49"},"children":[]}]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"10,58 17,51 \r\n\t\t10,44 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"10,58 17,51 \r\n\t\t10,44 \t"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"17","y1":"51","x2":"0","y2":"51"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"17","y1":"51","x2":"0","y2":"51"},"children":[]}]}]}]}]}]};exports.software_paragraph_space_after=software_paragraph_space_after;var software_paragraph_space_before={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"29","x2":"64","y2":"29"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"39","x2":"56","y2":"39"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"49","x2":"64","y2":"49"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"59","x2":"58","y2":"59"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"59,11 59,9 57,9 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"59,11 59,9 57,9 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"55","y1":"9","x2":"26","y2":"9"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"55","y1":"9","x2":"26","y2":"9"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"25,9 23,9 23,11 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"25,9 23,9 23,11 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"3,2","x1":"23","y1":"13","x2":"23","y2":"16"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"3,2","x1":"23","y1":"13","x2":"23","y2":"16"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,17 23,19 25,19 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,17 23,19 25,19 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"27","y1":"19","x2":"56","y2":"19"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"27","y1":"19","x2":"56","y2":"19"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"57,19 59,19 59,17 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"57,19 59,19 59,17 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"3,2","x1":"59","y1":"16","x2":"59","y2":"12"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"3,2","x1":"59","y1":"16","x2":"59","y2":"12"},"children":[]}]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"10,21 17,14 \r\n\t\t10,7 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"10,21 17,14 \r\n\t\t10,7 \t"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"17","y1":"14","x2":"0","y2":"14"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"17","y1":"14","x2":"0","y2":"14"},"children":[]}]}]}]}]}]};exports.software_paragraph_space_before=software_paragraph_space_before;var software_pathfinder_exclude={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"41,23 41,41 23,41 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,41 1,41 1,1 41,1 41,23 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"41,23 63,23 63,63 23,63 23,41 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,41 23,23 41,23 "},"children":[]}]};exports.software_pathfinder_exclude=software_pathfinder_exclude;var software_pathfinder_intersect={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"41,23 41,41 23,41 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","points":"23,41 1,41 1,1 \r\n\t41,1 41,23 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","points":"41,23 63,23 63,63 \r\n\t23,63 23,41 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,41 23,23 41,23 "},"children":[]}]};exports.software_pathfinder_intersect=software_pathfinder_intersect;var software_pathfinder_subtract={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,41 1,41 1,1 41,1 41,23 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"41","y1":"23","x2":"43","y2":"23"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"41","y1":"23","x2":"43","y2":"23"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"45","y1":"23","x2":"60","y2":"23"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"45","y1":"23","x2":"60","y2":"23"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"61,23 63,23 63,25 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"61,23 63,23 63,25 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"63","y1":"27","x2":"63","y2":"60"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"63","y1":"27","x2":"63","y2":"60"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,61 63,63 61,63 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,61 63,63 61,63 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"59","y1":"63","x2":"26","y2":"63"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"59","y1":"63","x2":"26","y2":"63"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"25,63 23,63 23,61 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"25,63 23,63 23,61 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"23","y1":"59","x2":"23","y2":"44"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"23","y1":"59","x2":"23","y2":"44"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"23","y1":"43","x2":"23","y2":"41"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"23","y1":"43","x2":"23","y2":"41"},"children":[]}]}]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,41 23,23 41,23 "},"children":[]}]};exports.software_pathfinder_subtract=software_pathfinder_subtract;var software_pathfinder_unite={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"41","y1":"23","x2":"41","y2":"25"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"41","y1":"23","x2":"41","y2":"25"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"41","y1":"27","x2":"41","y2":"38"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"41","y1":"27","x2":"41","y2":"38"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"41,39 41,41 39,41 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"41,39 41,41 39,41 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"37","y1":"41","x2":"26","y2":"41"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"37","y1":"41","x2":"26","y2":"41"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25","y1":"41","x2":"23","y2":"41"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25","y1":"41","x2":"23","y2":"41"},"children":[]}]}]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,41 1,41 1,1 41,1 41,23 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"41,23 63,23 63,63 23,63 23,41 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"23","y1":"41","x2":"23","y2":"39"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"23","y1":"41","x2":"23","y2":"39"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"23","y1":"37","x2":"23","y2":"26"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"23","y1":"37","x2":"23","y2":"26"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,25 23,23 25,23 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,25 23,23 25,23 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"27","y1":"23","x2":"38","y2":"23"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"27","y1":"23","x2":"38","y2":"23"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"23","x2":"41","y2":"23"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"23","x2":"41","y2":"23"},"children":[]}]}]}]}]}]};exports.software_pathfinder_unite=software_pathfinder_unite;var software_pen={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"23","y":"57","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"18","height":"6"},"children":[]},{"name":"rect","attribs":{"x":"19","y":"47","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"26","height":"10"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"41,47 41,43 48,30 32,1 16,30 23,43 23,47 \r\n\t"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"28.875","r":"4"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"1","x2":"32","y2":"25"},"children":[]}]};exports.software_pen=software_pen;var software_pen_add={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"23","y":"57","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"18","height":"6"},"children":[]},{"name":"rect","attribs":{"x":"19","y":"47","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"26","height":"10"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"41,47 41,43 48,30 32,1 16,30 23,43 23,47 \r\n\t"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"23","x2":"32","y2":"37"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"30","x2":"25","y2":"30"},"children":[]}]};exports.software_pen_add=software_pen_add;var software_pen_remove={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"23","y":"57","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"18","height":"6"},"children":[]},{"name":"rect","attribs":{"x":"19","y":"47","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"26","height":"10"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"41,47 41,43 48,30 32,1 16,30 23,43 23,47 \r\n\t"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"30","x2":"25","y2":"30"},"children":[]}]};exports.software_pen_remove=software_pen_remove;var software_pencil={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"54","x2":"10","y2":"44"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"54","x2":"10","y2":"44"},"children":[]}]}]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"10,44 1,62 2,63 20,54 63,11 53,1 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"54","y1":"20","x2":"44","y2":"10"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"58","y1":"16","x2":"48","y2":"6"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"5,54 9,55 10,59 "},"children":[]}]};exports.software_pencil=software_pencil;var software_polygonallasso={"viewBox":"0 0 64 64","children":[{"name":"ellipse","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"21","cy":"53","rx":"6","ry":"4"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M25,56c0,0,2,1,2,4s-2,3-2,3"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"22,49 5,12 40,18 59,1 59,41 26,51 "},"children":[]}]};exports.software_polygonallasso=software_polygonallasso;var software_reflect_horizontal={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,17 1,57 21,37 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"61.586,55.586 63,57 63,55 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"61.586,55.586 63,57 63,55 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"63","y1":"53","x2":"63","y2":"20"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"63","y1":"53","x2":"63","y2":"20"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,19 63,17 61.586,18.414 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,19 63,17 61.586,18.414 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"3.736,1.868","x1":"60.265","y1":"19.735","x2":"45.075","y2":"34.925"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"3.736,1.868","x1":"60.265","y1":"19.735","x2":"45.075","y2":"34.925"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"44.414,35.586 43,37 44.414,38.414 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"44.414,35.586 43,37 44.414,38.414 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"3.736,1.868","x1":"45.735","y1":"39.735","x2":"60.925","y2":"54.925"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"3.736,1.868","x1":"45.735","y1":"39.735","x2":"60.925","y2":"54.925"},"children":[]}]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"61","x2":"32","y2":"59"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"61","x2":"32","y2":"59"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"32","y1":"57","x2":"32","y2":"16"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"32","y1":"57","x2":"32","y2":"16"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"15","x2":"32","y2":"13"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"15","x2":"32","y2":"13"},"children":[]}]}]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"46,13 57,13 57,2 \r\n\t"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M57,13C51.378,5.132,42.408,1,32,1\r\n\tC21.591,1,12.622,5.13,7,13"},"children":[]}]};exports.software_reflect_horizontal=software_reflect_horizontal;var software_reflect_vertical={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"46,1 6,1 26,21 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"7.414,61.586 6,63 8,63 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"7.414,61.586 6,63 8,63 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"10","y1":"63","x2":"43","y2":"63"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"10","y1":"63","x2":"43","y2":"63"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"44,63 46,63 44.586,61.586 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"44,63 46,63 44.586,61.586 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"3.736,1.868","x1":"43.265","y1":"60.265","x2":"28.075","y2":"45.075"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"3.736,1.868","x1":"43.265","y1":"60.265","x2":"28.075","y2":"45.075"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"27.414,44.414 26,43 24.586,44.414 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"27.414,44.414 26,43 24.586,44.414 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"3.736,1.868","x1":"23.265","y1":"45.735","x2":"8.075","y2":"60.925"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"3.736,1.868","x1":"23.265","y1":"45.735","x2":"8.075","y2":"60.925"},"children":[]}]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"2","y1":"32","x2":"4","y2":"32"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"2","y1":"32","x2":"4","y2":"32"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"6","y1":"32","x2":"47","y2":"32"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"6","y1":"32","x2":"47","y2":"32"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"48","y1":"32","x2":"50","y2":"32"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"48","y1":"32","x2":"50","y2":"32"},"children":[]}]}]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"51,46 51,57 \r\n\t62,57 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M51,57c7.868-5.622,12-14.592,12-25\r\n\tc0-10.409-4.13-19.378-12-25"},"children":[]}]};exports.software_reflect_vertical=software_reflect_vertical;var software_remove_vectorpoint={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"53","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"10","height":"10"},"children":[]},{"name":"rect","attribs":{"x":"53","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"10","height":"10"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"44,22 44,20 42,20 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"44,22 44,20 42,20 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"40","y1":"20","x2":"23","y2":"20"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"40","y1":"20","x2":"23","y2":"20"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"22,20 20,20 20,22 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"22,20 20,20 20,22 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"20","y1":"24","x2":"20","y2":"41"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"20","y1":"24","x2":"20","y2":"41"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"20,42 20,44 22,44 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"20,42 20,44 22,44 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"24","y1":"44","x2":"41","y2":"44"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"24","y1":"44","x2":"41","y2":"44"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"42,44 44,44 44,42 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"42,44 44,44 44,42 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"44","y1":"40","x2":"44","y2":"23"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"44","y1":"40","x2":"44","y2":"23"},"children":[]}]}]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11","y1":"53","x2":"20","y2":"44"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"44","y1":"20","x2":"53","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"32","x2":"25","y2":"32"},"children":[]}]};exports.software_remove_vectorpoint=software_remove_vectorpoint;var software_scale_expand={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","points":"1,28 1,1 63,1 \r\n\t63,63 36,63 "},"children":[]},{"name":"rect","attribs":{"x":"1","y":"33","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"30","height":"30"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"57,18 57,7 46,7 \r\n\t"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"57","y1":"7","x2":"41","y2":"23"},"children":[]}]};exports.software_scale_expand=software_scale_expand;var software_scale_reduce={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,30 1,1 63,1 63,63 34,63 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"31,35 31,33 29,33 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"31,35 31,33 29,33 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"27","y1":"33","x2":"4","y2":"33"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"27","y1":"33","x2":"4","y2":"33"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"3,33 1,33 1,35 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"3,33 1,33 1,35 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"1","y1":"37","x2":"1","y2":"60"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"1","y1":"37","x2":"1","y2":"60"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,61 1,63 3,63 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,61 1,63 3,63 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"5","y1":"63","x2":"28","y2":"63"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"5","y1":"63","x2":"28","y2":"63"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"29,63 31,63 31,61 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"29,63 31,63 31,61 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"31","y1":"59","x2":"31","y2":"36"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"31","y1":"59","x2":"31","y2":"36"},"children":[]}]}]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"41,12 41,23 \r\n\t52,23 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"41","y1":"23","x2":"57","y2":"7"},"children":[]}]};exports.software_scale_reduce=software_scale_reduce;var software_selection_oval={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"ellipse","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4.0012,2.0006","cx":"32","cy":"32","rx":"31","ry":"20"},"children":[{"name":"ellipse","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4.0012,2.0006","cx":"32","cy":"32","rx":"31","ry":"20"},"children":[]}]}]}]};exports.software_selection_oval=software_selection_oval;var software_selection_polygon={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"19,59 16.675,59 15.851,57.261 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"19,59 16.675,59 15.851,57.261 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4.1609,2.0805","x1":"14.661","y1":"55.451","x2":"2.851","y2":"34.644"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4.1609,2.0805","x1":"14.661","y1":"55.451","x2":"2.851","y2":"34.644"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"2.338,33.739 1.351,32 2.338,30.261 \t\t\r\n\t\t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"2.338,33.739 1.351,32 2.338,30.261 \t\t\r\n\t\t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4.1609,2.0805","x1":"3.365","y1":"28.451","x2":"15.175","y2":"7.644"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4.1609,2.0805","x1":"3.365","y1":"28.451","x2":"15.175","y2":"7.644"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"15.851,6.739 16.675,5 19,5 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"15.851,6.739 16.675,5 19,5 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"21","y1":"5","x2":"44","y2":"5"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"21","y1":"5","x2":"44","y2":"5"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"45,5 47.325,5 48.149,6.739 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"45,5 47.325,5 48.149,6.739 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4.1609,2.0805","x1":"49.339","y1":"8.549","x2":"61.149","y2":"29.356"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4.1609,2.0805","x1":"49.339","y1":"8.549","x2":"61.149","y2":"29.356"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"61.662,30.261 62.649,32 61.662,33.739 \r\n\t\t\t\t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"61.662,30.261 62.649,32 61.662,33.739 \r\n\t\t\t\t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4.1609,2.0805","x1":"60.635","y1":"35.549","x2":"48.825","y2":"56.356"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4.1609,2.0805","x1":"60.635","y1":"35.549","x2":"48.825","y2":"56.356"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"48.149,57.261 47.325,59 45,59 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"48.149,57.261 47.325,59 45,59 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"43","y1":"59","x2":"20","y2":"59"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"43","y1":"59","x2":"20","y2":"59"},"children":[]}]}]}]}]}]};exports.software_selection_polygon=software_selection_polygon;var software_selection_rectangle={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,50 63,52 61,52 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,50 63,52 61,52 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"59","y1":"52","x2":"4","y2":"52"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"59","y1":"52","x2":"4","y2":"52"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"3,52 1,52 1,50 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"3,52 1,52 1,50 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"1","y1":"48","x2":"1","y2":"15"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"1","y1":"48","x2":"1","y2":"15"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,14 1,12 3,12 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,14 1,12 3,12 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"5","y1":"12","x2":"60","y2":"12"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"5","y1":"12","x2":"60","y2":"12"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"61,12 63,12 63,14 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"61,12 63,12 63,14 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"63","y1":"16","x2":"63","y2":"49"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"63","y1":"16","x2":"63","y2":"49"},"children":[]}]}]}]}]}]};exports.software_selection_rectangle=software_selection_rectangle;var software_selection_roundedrectangle={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"3.9436,1.9718","d":"M63,40\r\n\t\tc0,6.627-5.373,12-12,12H13C6.373,52,1,46.627,1,40V24c0-6.627,5.373-12,12-12h38c6.627,0,12,5.373,12,12V40z"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"3.9436,1.9718","d":"M63,40\r\n\t\tc0,6.627-5.373,12-12,12H13C6.373,52,1,46.627,1,40V24c0-6.627,5.373-12,12-12h38c6.627,0,12,5.373,12,12V40z"},"children":[]}]}]}]};exports.software_selection_roundedrectangle=software_selection_roundedrectangle;var software_shape_oval={"viewBox":"0 0 64 64","children":[{"name":"ellipse","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","rx":"31","ry":"20"},"children":[]}]};exports.software_shape_oval=software_shape_oval;var software_shape_polygon={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"16.675,59 1.351,32 16.675,5 47.325,5 \r\n\t62.649,32 47.325,59 "},"children":[]}]};exports.software_shape_polygon=software_shape_polygon;var software_shape_rectangle={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"12","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"40"},"children":[]}]};exports.software_shape_rectangle=software_shape_rectangle;var software_shape_roundedrectangle={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M63,40c0,6.627-5.373,12-12,12H13\r\n\tC6.373,52,1,46.627,1,40V24c0-6.627,5.373-12,12-12h38c6.627,0,12,5.373,12,12V40z"},"children":[]}]};exports.software_shape_roundedrectangle=software_shape_roundedrectangle;var software_slice={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"1,59 37,23 44,30 \r\n\t36,45 "},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"40,20 57,3 63,9 \r\n\t47,27 "},"children":[]}]};exports.software_slice=software_slice;var software_transform_bezier={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"41","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"10","height":"10"},"children":[]},{"name":"rect","attribs":{"x":"53","y":"41","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"10","height":"10"},"children":[]},{"name":"rect","attribs":{"x":"27","y":"13","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"10","height":"10"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"4","cy":"18","r":"3"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"60","cy":"18","r":"3"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M7,18h20C6,18,6,41,6,41"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M57,18H37c21,0,21,23,21,23"},"children":[]}]};exports.software_transform_bezier=software_transform_bezier;var software_vector_box={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"53","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"10","height":"10"},"children":[]},{"name":"rect","attribs":{"x":"53","y":"53","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"10","height":"10"},"children":[]},{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"10","height":"10"},"children":[]},{"name":"rect","attribs":{"x":"53","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"10","height":"10"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"6","y1":"11","x2":"6","y2":"53"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"58","y1":"11","x2":"58","y2":"53"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"53","y1":"6","x2":"11","y2":"6"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"53","y1":"58","x2":"11","y2":"58"},"children":[]}]};exports.software_vector_box=software_vector_box;var software_vector_composite={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"53","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"10","height":"10"},"children":[]},{"name":"rect","attribs":{"x":"53","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"10","height":"10"},"children":[]},{"name":"rect","attribs":{"x":"27","y":"27","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"10","height":"10"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11","y1":"53","x2":"27","y2":"37"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"37","y1":"27","x2":"53","y2":"11"},"children":[]}]};exports.software_vector_composite=software_vector_composite;var software_vector_line={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"53","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"10","height":"10"},"children":[]},{"name":"rect","attribs":{"x":"53","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"10","height":"10"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11","y1":"53","x2":"53","y2":"11"},"children":[]}]};exports.software_vector_line=software_vector_line;var software_vertical_align_bottom={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"63","x2":"0","y2":"63"},"children":[]},{"name":"rect","attribs":{"x":"13","y":"5","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"16","height":"52"},"children":[]},{"name":"rect","attribs":{"x":"35","y":"17","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"16","height":"40"},"children":[]}]};exports.software_vertical_align_bottom=software_vertical_align_bottom;var software_vertical_align_center={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"13","y1":"32","x2":"0","y2":"32"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"32","x2":"51","y2":"32"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"35","y1":"32","x2":"29","y2":"32"},"children":[]},{"name":"rect","attribs":{"x":"13","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"16","height":"52"},"children":[]},{"name":"rect","attribs":{"x":"35","y":"12","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"16","height":"40"},"children":[]}]};exports.software_vertical_align_center=software_vertical_align_center;var software_vertical_align_top={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"1","x2":"64","y2":"1"},"children":[]},{"name":"rect","attribs":{"x":"13","y":"7","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"16","height":"52"},"children":[]},{"name":"rect","attribs":{"x":"35","y":"7","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"16","height":"40"},"children":[]}]};exports.software_vertical_align_top=software_vertical_align_top;var software_vertical_distribute_bottom={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"29","x2":"64","y2":"29"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"51","x2":"64","y2":"51"},"children":[]},{"name":"rect","attribs":{"x":"12","y":"13","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"40","height":"16"},"children":[]},{"name":"rect","attribs":{"x":"6","y":"35","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"52","height":"16"},"children":[]}]};exports.software_vertical_distribute_bottom=software_vertical_distribute_bottom;var software_vertical_distribute_center={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"21","x2":"12","y2":"21"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"52","y1":"21","x2":"64","y2":"21"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"43","x2":"6","y2":"43"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"58","y1":"43","x2":"64","y2":"43"},"children":[]},{"name":"rect","attribs":{"x":"12","y":"13","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"40","height":"16"},"children":[]},{"name":"rect","attribs":{"x":"6","y":"35","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"52","height":"16"},"children":[]}]};exports.software_vertical_distribute_center=software_vertical_distribute_center;var software_vertical_distribute_top={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"35","x2":"0","y2":"35"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"13","x2":"0","y2":"13"},"children":[]},{"name":"rect","attribs":{"x":"6","y":"35","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"52","height":"16"},"children":[]},{"name":"rect","attribs":{"x":"12","y":"13","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"40","height":"16"},"children":[]}]};exports.software_vertical_distribute_top=software_vertical_distribute_top;var weather_aquarius={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"0,28 16,16 20,28 36,16 40,28 55,16 63,28 \r\n\t"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"0,48 16,36 20,48 36,36 40,48 55,36 63,48 \r\n\t"},"children":[]}]};exports.weather_aquarius=weather_aquarius;var weather_aries={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M6,25c0,0-5-5-5-11S3,1,13,1c13.25,0,19,22,19,63"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M58,25c0,0,5-5,5-11S61,1,51,1C37.75,1,32,23,32,64"},"children":[]}]};exports.weather_aries=weather_aries;var weather_cancer={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"11","cy":"27","r":"10"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M5,19c0,0,7-6,28-6c15,0,31,10,31,10"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"53","cy":"37","r":"10"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M59,45c0,0-7,6-28,6C16,51,0,41,0,41"},"children":[]}]};exports.weather_cancer=weather_cancer;var weather_capricorn={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M9,5c0,0,0-4,6-4c5,0,4,10,4,10v29"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M19,11c0,0,0-10,7-10s7,10,7,10v29c0,0-1,14,15,14"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M48,40c-3,0-12,1-12,12c0,1,1,11-12,11"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M48,54c3.866,0,7-3.134,7-7s-3.134-7-7-7"},"children":[]}]};exports.weather_capricorn=weather_capricorn;var weather_cloud={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M55,50c4.565,0,8-3.435,8-8c0-4.565-3.435-9-8-9\r\n\tc0-11.414-9.586-20-21-20c-10.102,0-19.2,6.423-21,16c0,0-1.165,0-2,0C5.292,29,1,34.292,1,40s4.292,10,10,10H55z"},"children":[]}]};exports.weather_cloud=weather_cloud;var weather_cloud_drop={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M18,40h-7C5.292,40,1,35.708,1,30s4.292-11,10-11\r\n\tc0.835,0,2,0,2,0C14.8,9.423,23.898,3,34,3c11.414,0,21,8.586,21,20c4.565,0,8,4.435,8,9c0,4.565-3.435,8-8,8H45"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M23,42c0,5.034,4.136,8,9,8c4.864,0,8-2.966,8-8\r\n\t\tc0-7-8-17-8-17S23,35,23,42z"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M23,42c0,5.034,4.136,8,9,8c4.864,0,8-2.966,8-8\r\n\t\tc0-7-8-17-8-17S23,35,23,42z"},"children":[]}]}]}]};exports.weather_cloud_drop=weather_cloud_drop;var weather_cloud_lightning={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"37,23 23,42 29,42 \r\n\t27,55 41,36 35,36 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M18,40h-7C5.292,40,1,35.708,1,30s4.292-11,10-11\r\n\tc0.835,0,2,0,2,0C14.8,9.423,23.898,3,34,3c11.414,0,21,8.586,21,20c4.565,0,8,4.435,8,9c0,4.565-3.435,8-8,8h-9"},"children":[]}]};exports.weather_cloud_lightning=weather_cloud_lightning;var weather_cloud_snowflake={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M18,40h-7C5.292,40,1,35.708,1,30s4.292-11,10-11\r\n\tc0.835,0,2,0,2,0C14.8,9.423,23.898,3,34,3c11.414,0,21,8.586,21,20c4.565,0,8,4.435,8,9c0,4.565-3.435,8-8,8h-9"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"21,37 23,40 21,43 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"43,43 41,40 43,37 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"30","y1":"40","x2":"23","y2":"40"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"41","y1":"40","x2":"34","y2":"40"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"29,51 32,49 35,51 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"35,29 32,31 29,29 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"42","x2":"32","y2":"49"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"31","x2":"32","y2":"38"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"26.343,30.101 25.636,33.636 \r\n\t22.101,34.343 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"37.657,49.899 38.364,46.364 \r\n\t41.899,45.657 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"30","y1":"38","x2":"25.636","y2":"33.636"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"38.364","y1":"46.364","x2":"34","y2":"42"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"22.101,45.657 25.636,46.364 \r\n\t26.343,49.899 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"41.899,34.343 38.364,33.636 \r\n\t37.657,30.101 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"30","y1":"42","x2":"25.636","y2":"46.364"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"38.364","y1":"33.636","x2":"34","y2":"38"},"children":[]}]};exports.weather_cloud_snowflake=weather_cloud_snowflake;var weather_downpour_fullmoon={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M7.004,32.959c-1.59-1.017-2.943-2.37-3.961-3.96\r\n\tC1.75,26.979,1,24.577,1,22C1,14.82,6.82,9,14,9c4.604,0,8.646,2.392,10.957,6.001"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"48","x2":"12","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"30","y1":"48","x2":"22","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"40","y1":"48","x2":"32","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"50","y1":"48","x2":"42","y2":"62"},"children":[]}]};exports.weather_downpour_fullmoon=weather_downpour_fullmoon;var weather_downpour_halfmoon={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M24.957,15.001C22.646,11.392,18.604,9,14,9\r\n\tc-0.826,0-1.631,0.085-2.414,0.233c0.891,1.396,1.414,3.05,1.414,4.83c0,4.971-4.029,9-9,9c-1.046,0-2.046-0.188-2.98-0.516\r\n\tc0.099,2.368,0.822,4.576,2.023,6.452c1.018,1.59,2.371,2.943,3.961,3.96"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"48","x2":"12","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"30","y1":"48","x2":"22","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"40","y1":"48","x2":"32","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"50","y1":"48","x2":"42","y2":"62"},"children":[]}]};exports.weather_downpour_halfmoon=weather_downpour_halfmoon;var weather_downpour_sun={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M29.999,11.752C27.793,10.028,25.017,9,22,9\r\n\tC14.82,9,9,14.82,9,22c0,2.577,0.707,3.979,2,6"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"6","y1":"22","x2":"0","y2":"22"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"6","x2":"22","y2":"0"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"10","x2":"4","y2":"4"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"48","x2":"12","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"30","y1":"48","x2":"22","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"40","y1":"48","x2":"32","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"50","y1":"48","x2":"42","y2":"62"},"children":[]}]};exports.weather_downpour_sun=weather_downpour_sun;var weather_drop={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M11,41.265C11.052,53.27,20.401,63,32,63\r\n\t\ts21-9.73,21-21.735C53,25.729,32.035,1,32.035,1S10.931,25.729,11,41.265z"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M11,41.265C11.052,53.27,20.401,63,32,63\r\n\t\ts21-9.73,21-21.735C53,25.729,32.035,1,32.035,1S10.931,25.729,11,41.265z"},"children":[]}]}]}]};exports.weather_drop=weather_drop;var weather_fog={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M55,40c4.565,0,8-3.435,8-8c0-4.565-3.435-9-8-9\r\n\tc0-11.414-9.586-20-21-20C23.898,3,14.8,9.423,13,19c0,0-1.165,0-2,0C5.292,19,1,24.292,1,30s4.292,10,10,10"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"13","y1":"40","x2":"53","y2":"40"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"13","y1":"48","x2":"53","y2":"48"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"13","y1":"56","x2":"53","y2":"56"},"children":[]}]};exports.weather_fog=weather_fog;var weather_fog_fullmoon={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M7.004,32.959c-1.59-1.017-2.943-2.37-3.961-3.96\r\n\tC1.75,26.979,1,24.577,1,22C1,14.82,6.82,9,14,9c4.604,0,8.646,2.392,10.957,6.001"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"17","y1":"45","x2":"54","y2":"45"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"17","y1":"51","x2":"54","y2":"51"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"17","y1":"57","x2":"54","y2":"57"},"children":[]}]};exports.weather_fog_fullmoon=weather_fog_fullmoon;var weather_fog_halfmoon={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M24.957,15.001C22.646,11.392,18.604,9,14,9\r\n\tc-0.826,0-1.631,0.085-2.414,0.233c0.891,1.396,1.414,3.05,1.414,4.83c0,4.971-4.029,9-9,9c-1.046,0-2.046-0.188-2.98-0.516\r\n\tc0.099,2.368,0.822,4.576,2.023,6.452c1.018,1.59,2.371,2.943,3.961,3.96"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"17","y1":"45","x2":"54","y2":"45"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"17","y1":"51","x2":"54","y2":"51"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"17","y1":"57","x2":"54","y2":"57"},"children":[]}]};exports.weather_fog_halfmoon=weather_fog_halfmoon;var weather_fog_sun={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.233,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M29.999,11.752C27.793,10.028,25.017,9,22,9\r\n\tC14.82,9,9,14.82,9,22c0,2.577,0.707,3.979,2,6"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"6","y1":"22","x2":"0","y2":"22"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"6","x2":"22","y2":"0"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"10","x2":"4","y2":"4"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"17","y1":"45","x2":"54","y2":"45"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"17","y1":"51","x2":"54","y2":"51"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"17","y1":"57","x2":"54","y2":"57"},"children":[]}]};exports.weather_fog_sun=weather_fog_sun;var weather_fullmoon={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"31"},"children":[]}]};exports.weather_fullmoon=weather_fullmoon;var weather_gemini={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M0,8c0,0,16,4,32,4s32-4,32-4"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M64,56c0,0-16-4-32-4S0,56,0,56"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"21","y1":"12","x2":"21","y2":"52"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"43","y1":"12","x2":"43","y2":"52"},"children":[]}]};exports.weather_gemini=weather_gemini;var weather_hail={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M55,40c4.565,0,8-3.435,8-8c0-4.565-3.435-9-8-9\r\n\tc0-11.414-9.586-20-21-20C23.898,3,14.8,9.423,13,19c0,0-1.165,0-2,0C5.292,19,1,24.292,1,30s4.292,10,10,10H55z"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"24","y1":"45","x2":"19","y2":"56"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"45","x2":"9","y2":"56"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"34","y1":"45","x2":"29","y2":"56"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"44","y1":"45","x2":"39","y2":"56"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"54","y1":"45","x2":"49","y2":"56"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"17","y1":"59","x2":"16","y2":"61"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"7","y1":"59","x2":"6","y2":"61"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"27","y1":"59","x2":"26","y2":"61"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"37","y1":"59","x2":"36","y2":"61"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"47","y1":"59","x2":"46","y2":"61"},"children":[]}]};exports.weather_hail=weather_hail;var weather_hail_fullmoon={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M7.004,32.959c-1.59-1.017-2.943-2.37-3.961-3.96\r\n\tC1.75,26.979,1,24.577,1,22C1,14.82,6.82,9,14,9c4.604,0,8.646,2.392,10.957,6.001"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"48","x2":"16","y2":"57"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"30","y1":"48","x2":"26","y2":"57"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"40","y1":"48","x2":"36","y2":"57"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"50","y1":"48","x2":"46","y2":"57"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"15","y1":"60","x2":"14","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25","y1":"60","x2":"24","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"35","y1":"60","x2":"34","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"45","y1":"60","x2":"44","y2":"62"},"children":[]}]};exports.weather_hail_fullmoon=weather_hail_fullmoon;var weather_hail_halfmoon={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M24.957,15.001C22.646,11.392,18.604,9,14,9\r\n\tc-0.826,0-1.631,0.085-2.414,0.233c0.891,1.396,1.414,3.05,1.414,4.83c0,4.971-4.029,9-9,9c-1.046,0-2.046-0.188-2.98-0.516\r\n\tc0.099,2.368,0.822,4.576,2.023,6.452c1.018,1.59,2.371,2.943,3.961,3.96"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"48","x2":"16","y2":"57"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"30","y1":"48","x2":"26","y2":"57"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"40","y1":"48","x2":"36","y2":"57"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"50","y1":"48","x2":"46","y2":"57"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"15","y1":"60","x2":"14","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25","y1":"60","x2":"24","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"35","y1":"60","x2":"34","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"45","y1":"60","x2":"44","y2":"62"},"children":[]}]};exports.weather_hail_halfmoon=weather_hail_halfmoon;var weather_hail_sun={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M29.999,11.752C27.793,10.028,25.017,9,22,9\r\n\tC14.82,9,9,14.82,9,22c0,2.577,0.707,3.979,2,6"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"6","y1":"22","x2":"0","y2":"22"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"6","x2":"22","y2":"0"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"10","x2":"4","y2":"4"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"48","x2":"16","y2":"57"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"30","y1":"48","x2":"26","y2":"57"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"40","y1":"48","x2":"36","y2":"57"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"50","y1":"48","x2":"46","y2":"57"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"15","y1":"60","x2":"14","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25","y1":"60","x2":"24","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"35","y1":"60","x2":"34","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"45","y1":"60","x2":"44","y2":"62"},"children":[]}]};exports.weather_hail_sun=weather_hail_sun;var weather_last_quarter={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"31"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"59","x2":"47","y2":"59"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"53","x2":"55","y2":"53"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"47","x2":"59","y2":"47"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"41","x2":"62","y2":"41"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"35","x2":"63","y2":"35"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"1","x2":"32","y2":"63"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"29","x2":"63","y2":"29"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"23","x2":"62","y2":"23"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"17","x2":"59","y2":"17"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"11","x2":"55","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"5","x2":"47","y2":"5"},"children":[]}]};exports.weather_last_quarter=weather_last_quarter;var weather_leo={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M22.649,33.597\r\n\tc-8.337-4.888-11.134-15.608-6.247-23.946C21.29,1.312,32.012-1.485,40.35,3.403c8.337,4.888,11.134,15.608,6.247,23.946\r\n\tC46.597,27.35,36,46,36,54"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"19","cy":"42","r":"9"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.064,58c-1.473,2.963-4.531,5-8.064,5\r\n\tc-4.971,0-9-4.029-9-9"},"children":[]}]};exports.weather_leo=weather_leo;var weather_libra={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M41.667,38.002\r\n\tc3.913-2.939,6.444-7.619,6.444-12.891C48.111,16.213,40.897,9,32,9s-16.111,7.213-16.111,16.111c0,5.27,2.53,9.948,6.442,12.889"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"38","x2":"23","y2":"38"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"41","y1":"38","x2":"64","y2":"38"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"55","x2":"64","y2":"55"},"children":[]}]};exports.weather_libra=weather_libra;var weather_lightning={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"40,1 17,37 31,37 \r\n\t24,63 50,27 36,27 "},"children":[]}]};exports.weather_lightning=weather_lightning;var weather_mistyrain={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M55,40c4.565,0,8-3.435,8-8c0-4.565-3.435-9-8-9\r\n\tc0-11.414-9.586-20-21-20C23.898,3,14.8,9.423,13,19c0,0-1.165,0-2,0C5.292,19,1,24.292,1,30s4.292,10,10,10H55z"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"17","y1":"59","x2":"16","y2":"61"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"7","y1":"59","x2":"6","y2":"61"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"27","y1":"59","x2":"26","y2":"61"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"37","y1":"59","x2":"36","y2":"61"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"47","y1":"59","x2":"46","y2":"61"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"24","y1":"52","x2":"23","y2":"54"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"52","x2":"13","y2":"54"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"34","y1":"52","x2":"33","y2":"54"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"44","y1":"52","x2":"43","y2":"54"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"54","y1":"52","x2":"53","y2":"54"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"19","y1":"44","x2":"18","y2":"46"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"9","y1":"44","x2":"8","y2":"46"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"29","y1":"44","x2":"28","y2":"46"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"44","x2":"38","y2":"46"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"49","y1":"44","x2":"48","y2":"46"},"children":[]}]};exports.weather_mistyrain=weather_mistyrain;var weather_mistyrain_fullmoon={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M7.004,32.959c-1.59-1.017-2.943-2.37-3.961-3.96\r\n\tC1.75,26.979,1,24.577,1,22C1,14.82,6.82,9,14,9c4.604,0,8.646,2.392,10.957,6.001"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"15","y1":"60","x2":"14","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25","y1":"60","x2":"24","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"35","y1":"60","x2":"34","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"45","y1":"60","x2":"44","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"19","y1":"48","x2":"18","y2":"50"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"29","y1":"48","x2":"28","y2":"50"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"48","x2":"38","y2":"50"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"49","y1":"48","x2":"48","y2":"50"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11","y1":"54","x2":"10","y2":"56"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"21","y1":"54","x2":"20","y2":"56"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"31","y1":"54","x2":"30","y2":"56"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"41","y1":"54","x2":"40","y2":"56"},"children":[]}]};exports.weather_mistyrain_fullmoon=weather_mistyrain_fullmoon;var weather_mistyrain_halfmoon={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M24.957,15.001C22.646,11.392,18.604,9,14,9\r\n\tc-0.826,0-1.631,0.085-2.414,0.233c0.891,1.396,1.414,3.05,1.414,4.83c0,4.971-4.029,9-9,9c-1.046,0-2.046-0.188-2.98-0.516\r\n\tc0.099,2.368,0.822,4.576,2.023,6.452c1.018,1.59,2.371,2.943,3.961,3.96"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"15","y1":"60","x2":"14","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25","y1":"60","x2":"24","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"35","y1":"60","x2":"34","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"45","y1":"60","x2":"44","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"19","y1":"48","x2":"18","y2":"50"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"29","y1":"48","x2":"28","y2":"50"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"48","x2":"38","y2":"50"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"49","y1":"48","x2":"48","y2":"50"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11","y1":"54","x2":"10","y2":"56"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"21","y1":"54","x2":"20","y2":"56"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"31","y1":"54","x2":"30","y2":"56"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"41","y1":"54","x2":"40","y2":"56"},"children":[]}]};exports.weather_mistyrain_halfmoon=weather_mistyrain_halfmoon;var weather_mistyrain_sun={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M29.999,11.752C27.793,10.028,25.017,9,22,9\r\n\tC14.82,9,9,14.82,9,22c0,2.577,0.707,3.979,2,6"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"6","y1":"22","x2":"0","y2":"22"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"6","x2":"22","y2":"0"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"10","x2":"4","y2":"4"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"15","y1":"60","x2":"14","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25","y1":"60","x2":"24","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"35","y1":"60","x2":"34","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"45","y1":"60","x2":"44","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"19","y1":"48","x2":"18","y2":"50"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"29","y1":"48","x2":"28","y2":"50"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"48","x2":"38","y2":"50"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"49","y1":"48","x2":"48","y2":"50"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11","y1":"54","x2":"10","y2":"56"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"21","y1":"54","x2":"20","y2":"56"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"31","y1":"54","x2":"30","y2":"56"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"41","y1":"54","x2":"40","y2":"56"},"children":[]}]};exports.weather_mistyrain_sun=weather_mistyrain_sun;var weather_moon={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M6,52c14.359,0,26-11.641,26-26\r\n\tc0-9.994-6.729-18.648-15-23c3.396-1.277,8.158-2,12-2c17.121,0,31,13.879,31,31S46.121,63,29,63c-9.505,0-18.313-4.265-24-11\r\n\tC5.23,52.006,5.768,52,6,52z"},"children":[]}]};exports.weather_moon=weather_moon;var weather_moondown_full={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"47","x2":"64","y2":"47"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"25,53 32,60 \r\n\t39,53 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M48.159,47C49.96,44.096,51,40.669,51,37\r\n\tc0-10.493-8.506-19-19-19s-19,8.507-19,19c0,3.668,1.04,7.094,2.841,9.998"},"children":[]}]};exports.weather_moondown_full=weather_moondown_full;var weather_moondown_half={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"47","x2":"64","y2":"47"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"25,53 32,60 \r\n\t39,53 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M48.158,47C49.96,44.096,51,40.669,51,37\r\n\tc0-10.493-8.506-19-19-19c-0.059,0-0.115,0.008-0.175,0.009C32.574,19.688,33,21.543,33,23.5C33,30.956,26.956,37,19.5,37\r\n\tc-2.323,0-4.51-0.588-6.418-1.621C13.037,35.914,13,36.453,13,37c0,3.668,1.039,7.094,2.841,9.998"},"children":[]}]};exports.weather_moondown_half=weather_moondown_half;var weather_moonset_full={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"47","x2":"64","y2":"47"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"39,60 32,53 \r\n\t25,60 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M48.159,47C49.96,44.096,51,40.669,51,37\r\n\tc0-10.493-8.506-19-19-19s-19,8.507-19,19c0,3.668,1.04,7.094,2.841,9.998"},"children":[]}]};exports.weather_moonset_full=weather_moonset_full;var weather_moonset_half={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#010101","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"47","x2":"64","y2":"47"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#010101","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"25,53 32,60 \r\n\t39,53 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#010101","stroke-width":"2","stroke-miterlimit":"10","d":"M48.158,47C49.96,44.096,51,40.669,51,37\r\n\tc0-10.493-8.506-19-19-19c-0.059,0-0.115,0.008-0.175,0.009C32.574,19.688,33,21.543,33,23.5C33,30.956,26.956,37,19.5,37\r\n\tc-2.323,0-4.51-0.588-6.418-1.621C13.037,35.914,13,36.453,13,37c0,3.668,1.039,7.094,2.841,9.998"},"children":[]}]};exports.weather_moonset_half=weather_moonset_half;var weather_move2={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"31"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"5","x2":"17","y2":"5"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"11","x2":"9","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"17","x2":"5","y2":"17"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"23","x2":"2","y2":"23"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"29","x2":"1","y2":"29"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"63","x2":"32","y2":"1"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"35","x2":"1","y2":"35"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"41","x2":"2","y2":"41"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"47","x2":"5","y2":"47"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"53","x2":"9","y2":"53"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"59","x2":"17","y2":"59"},"children":[]}]};exports.weather_move2=weather_move2;var weather_newmoon={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"31"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"47","y1":"5","x2":"17","y2":"5"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"55","y1":"11","x2":"9","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"59","y1":"17","x2":"5","y2":"17"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"62","y1":"23","x2":"2","y2":"23"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"63","y1":"29","x2":"1","y2":"29"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"63","y1":"35","x2":"1","y2":"35"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"62","y1":"41","x2":"2","y2":"41"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"59","y1":"47","x2":"5","y2":"47"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"55","y1":"53","x2":"9","y2":"53"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"47","y1":"59","x2":"17","y2":"59"},"children":[]}]};exports.weather_newmoon=weather_newmoon;var weather_pisces={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M54,0c0,0-10,16-10,32s10,32,10,32"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M10,64c0,0,10-16,10-32S10,0,10,0"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"7","y1":"32","x2":"57","y2":"32"},"children":[]}]};exports.weather_pisces=weather_pisces;var weather_rain={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M55,40c4.565,0,8-3.435,8-8c0-4.565-3.435-9-8-9\r\n\tc0-11.414-9.586-20-21-20C23.898,3,14.8,9.423,13,19c0,0-1.165,0-2,0C5.292,19,1,24.292,1,30s4.292,10,10,10H55z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"46","x2":"22","y2":"60"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"46","x2":"22","y2":"60"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"12","y1":"46","x2":"12","y2":"60"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"12","y1":"46","x2":"12","y2":"60"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"46","x2":"32","y2":"60"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"46","x2":"32","y2":"60"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"46","x2":"42","y2":"60"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"46","x2":"42","y2":"60"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"52","y1":"46","x2":"52","y2":"60"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"52","y1":"46","x2":"52","y2":"60"},"children":[]}]}]}]};exports.weather_rain=weather_rain;var weather_rain_fullmoon={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M7.004,32.959c-1.59-1.017-2.943-2.37-3.961-3.96\r\n\tC1.75,26.979,1,24.577,1,22C1,14.82,6.82,9,14,9c4.604,0,8.646,2.392,10.957,6.001"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"48","x2":"20","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"30","y1":"48","x2":"30","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"40","y1":"48","x2":"40","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"50","y1":"48","x2":"50","y2":"62"},"children":[]}]};exports.weather_rain_fullmoon=weather_rain_fullmoon;var weather_rain_halfmoon={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M24.957,15.001C22.646,11.392,18.604,9,14,9\r\n\tc-0.826,0-1.631,0.085-2.414,0.233c0.891,1.396,1.414,3.05,1.414,4.83c0,4.971-4.029,9-9,9c-1.046,0-2.046-0.188-2.98-0.516\r\n\tc0.099,2.368,0.822,4.576,2.023,6.452c1.018,1.59,2.371,2.943,3.961,3.96"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"48","x2":"20","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"30","y1":"48","x2":"30","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"40","y1":"48","x2":"40","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"50","y1":"48","x2":"50","y2":"62"},"children":[]}]};exports.weather_rain_halfmoon=weather_rain_halfmoon;var weather_rain_sun={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.233,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M29.999,11.752C27.793,10.028,25.017,9,22,9\r\n\tC14.82,9,9,14.82,9,22c0,2.577,0.707,3.979,2,6"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"6","y1":"22","x2":"0","y2":"22"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"6","x2":"22","y2":"0"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"10","x2":"4","y2":"4"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"48","x2":"20","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"30","y1":"48","x2":"30","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"40","y1":"48","x2":"40","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"50","y1":"48","x2":"50","y2":"62"},"children":[]}]};exports.weather_rain_sun=weather_rain_sun;var weather_sagittarius={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"63","y1":"1","x2":"0","y2":"64"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"36,1 63,1 63,28 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"28","x2":"36","y2":"63"},"children":[]}]};exports.weather_sagittarius=weather_sagittarius;var weather_scorpio={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M30,52V12c0,0,0-11,8-11s8,11,8,11s0,33,0,40\r\n\tc0,0,0,6,6,6h5"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M14,52V12c0,0,0.083-11,8-11s8,11,8,11"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M14,12c0,0,0-10-8-10"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"52,53 57,58 \r\n\t52,63 "},"children":[]}]};exports.weather_scorpio=weather_scorpio;var weather_snow={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M55,40c4.565,0,8-3.435,8-8c0-4.565-3.435-9-8-9\r\n\tc0-11.414-9.586-20-21-20C23.898,3,14.8,9.423,13,19c0,0-1.165,0-2,0C5.292,19,1,24.292,1,30s4.292,10,10,10H55z"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"43","x2":"22","y2":"48"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"52","x2":"22","y2":"57"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"27","y1":"45","x2":"24","y2":"48"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"52","x2":"17","y2":"55"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"27","y1":"55","x2":"24","y2":"52"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"48","x2":"17","y2":"45"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"29","y1":"50","x2":"24","y2":"50"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"50","x2":"15","y2":"50"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"48","x2":"42","y2":"53"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"57","x2":"42","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"47","y1":"50","x2":"44","y2":"53"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"40","y1":"57","x2":"37","y2":"60"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"47","y1":"60","x2":"44","y2":"57"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"40","y1":"53","x2":"37","y2":"50"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"49","y1":"55","x2":"44","y2":"55"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"40","y1":"55","x2":"35","y2":"55"},"children":[]}]};exports.weather_snow=weather_snow;var weather_snow_fullmoon={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M7.004,32.959c-1.59-1.017-2.943-2.37-3.961-3.96\r\n\tC1.75,26.979,1,24.577,1,22C1,14.82,6.82,9,14,9c4.604,0,8.646,2.392,10.957,6.001"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"24","y1":"48","x2":"24","y2":"52"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"24","y1":"56","x2":"24","y2":"60"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"50","x2":"26","y2":"52"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"56","x2":"20","y2":"58"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"58","x2":"26","y2":"56"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"52","x2":"20","y2":"50"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"30","y1":"54","x2":"26","y2":"54"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"54","x2":"18","y2":"54"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"44","y1":"50","x2":"44","y2":"54"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"44","y1":"58","x2":"44","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"48","y1":"52","x2":"46","y2":"54"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"58","x2":"40","y2":"60"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"48","y1":"60","x2":"46","y2":"58"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"54","x2":"40","y2":"52"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"50","y1":"56","x2":"46","y2":"56"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"56","x2":"38","y2":"56"},"children":[]}]};exports.weather_snow_fullmoon=weather_snow_fullmoon;var weather_snow_halfmoon={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M24.957,15.001C22.646,11.392,18.604,9,14,9\r\n\tc-0.826,0-1.631,0.085-2.414,0.233c0.891,1.396,1.414,3.05,1.414,4.83c0,4.971-4.029,9-9,9c-1.046,0-2.046-0.188-2.98-0.516\r\n\tc0.099,2.368,0.822,4.576,2.023,6.452c1.018,1.59,2.371,2.943,3.961,3.96"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"24","y1":"48","x2":"24","y2":"52"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"24","y1":"56","x2":"24","y2":"60"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"50","x2":"26","y2":"52"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"56","x2":"20","y2":"58"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"58","x2":"26","y2":"56"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"52","x2":"20","y2":"50"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"30","y1":"54","x2":"26","y2":"54"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"54","x2":"18","y2":"54"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"44","y1":"50","x2":"44","y2":"54"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"44","y1":"58","x2":"44","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"48","y1":"52","x2":"46","y2":"54"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"58","x2":"40","y2":"60"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"48","y1":"60","x2":"46","y2":"58"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"54","x2":"40","y2":"52"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"50","y1":"56","x2":"46","y2":"56"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"56","x2":"38","y2":"56"},"children":[]}]};exports.weather_snow_halfmoon=weather_snow_halfmoon;var weather_snow_sun={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M29.999,11.752C27.793,10.028,25.017,9,22,9\r\n\tC14.82,9,9,14.82,9,22c0,2.577,0.707,3.979,2,6"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"6","y1":"22","x2":"0","y2":"22"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"6","x2":"22","y2":"0"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"10","x2":"4","y2":"4"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"24","y1":"48","x2":"24","y2":"52"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"24","y1":"56","x2":"24","y2":"60"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"50","x2":"26","y2":"52"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"56","x2":"20","y2":"58"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"58","x2":"26","y2":"56"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"52","x2":"20","y2":"50"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"30","y1":"54","x2":"26","y2":"54"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"54","x2":"18","y2":"54"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"44","y1":"50","x2":"44","y2":"54"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"44","y1":"58","x2":"44","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"48","y1":"52","x2":"46","y2":"54"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"58","x2":"40","y2":"60"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"48","y1":"60","x2":"46","y2":"58"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"54","x2":"40","y2":"52"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"50","y1":"56","x2":"46","y2":"56"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"56","x2":"38","y2":"56"},"children":[]}]};exports.weather_snow_sun=weather_snow_sun;var weather_snowflake={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,24 9,32 1,40 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,40 55,32 63,24 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"24,63 32,55 40,63 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"40,1 32,9 24,1 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"5,49 15,49 15,59 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"59,15 49,15 49,5 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"38","y1":"26","x2":"49","y2":"15"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"15","y1":"49","x2":"26","y2":"38"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"15,5 15,15 5,15 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"49,59 49,49 59,49 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"38","y1":"38","x2":"49","y2":"49"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"15","y1":"15","x2":"26","y2":"26"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"40","y1":"32","x2":"55","y2":"32"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"9","y1":"32","x2":"24","y2":"32"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"40","x2":"32","y2":"55"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"9","x2":"32","y2":"24"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"8"},"children":[]}]};exports.weather_snowflake=weather_snowflake;var weather_star={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,47 12,62 20,38 2,24 24,24 32,1 40,24 \r\n\t62,24 44,38 52,62 "},"children":[]}]};exports.weather_star=weather_star;var weather_storm_fullmoon={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M7.004,32.959c-1.59-1.017-2.943-2.37-3.961-3.96\r\n\tC1.75,26.979,1,24.577,1,22C1,14.82,6.82,9,14,9c4.604,0,8.646,2.392,10.957,6.001"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,48 29,55 34,55 30,62 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"42,48 39,55 44,55 40,62 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"22,48 19,55 24,55 20,62 "},"children":[]}]};exports.weather_storm_fullmoon=weather_storm_fullmoon;var weather_storm_halfmoon={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M24.957,15.001C22.646,11.392,18.604,9,14,9\r\n\tc-0.826,0-1.631,0.085-2.414,0.233c0.891,1.396,1.414,3.05,1.414,4.83c0,4.971-4.029,9-9,9c-1.046,0-2.046-0.188-2.98-0.516\r\n\tc0.099,2.368,0.822,4.576,2.023,6.452c1.018,1.59,2.371,2.943,3.961,3.96"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,48 29,55 34,55 30,62 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"42,48 39,55 44,55 40,62 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"22,48 19,55 24,55 20,62 "},"children":[]}]};exports.weather_storm_halfmoon=weather_storm_halfmoon;var weather_storm_sun={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M29.999,11.752C27.793,10.028,25.017,9,22,9\r\n\tC14.82,9,9,14.82,9,22c0,2.577,0.707,3.979,2,6"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"6","y1":"22","x2":"0","y2":"22"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"6","x2":"22","y2":"0"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"10","x2":"4","y2":"4"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,48 29,55 34,55 30,62 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"42,48 39,55 44,55 40,62 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"22,48 19,55 24,55 20,62 "},"children":[]}]};exports.weather_storm_sun=weather_storm_sun;var weather_sun={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"16"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"16"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"10","x2":"32","y2":"0"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"10","x2":"32","y2":"0"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"64","x2":"32","y2":"54"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"64","x2":"32","y2":"54"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"54","y1":"32","x2":"64","y2":"32"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"54","y1":"32","x2":"64","y2":"32"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"32","x2":"10","y2":"32"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"32","x2":"10","y2":"32"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"48","y1":"16","x2":"53","y2":"11"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"48","y1":"16","x2":"53","y2":"11"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11","y1":"53","x2":"16","y2":"48"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11","y1":"53","x2":"16","y2":"48"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"48","y1":"48","x2":"53","y2":"53"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"48","y1":"48","x2":"53","y2":"53"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11","y1":"11","x2":"16","y2":"16"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11","y1":"11","x2":"16","y2":"16"},"children":[]}]}]}]};exports.weather_sun=weather_sun;var weather_sundown={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"47","x2":"64","y2":"47"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"37","x2":"0","y2":"37"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"37","x2":"54","y2":"37"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"15","x2":"32","y2":"4"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"23","x2":"6","y2":"15"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"50","y1":"23","x2":"58","y2":"15"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"25,53 32,60 \r\n\t39,53 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M48.159,47C49.96,44.096,51,40.669,51,37\r\n\tc0-10.493-8.506-19-19-19s-19,8.507-19,19c0,3.668,1.04,7.094,2.841,9.998"},"children":[]}]};exports.weather_sundown=weather_sundown;var weather_sunset={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"47","x2":"64","y2":"47"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"37","x2":"0","y2":"37"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"37","x2":"54","y2":"37"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"15","x2":"32","y2":"4"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"23","x2":"6","y2":"15"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"50","y1":"23","x2":"58","y2":"15"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"39,60 32,53 \r\n\t25,60 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M48.159,47C49.96,44.096,51,40.669,51,37\r\n\tc0-10.493-8.506-19-19-19s-19,8.507-19,19c0,3.668,1.04,7.094,2.841,9.998"},"children":[]}]};exports.weather_sunset=weather_sunset;var weather_taurus={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"43","r":"18"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M0,3c14,0,15,12,15,12s0,10,17,10"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M64,3C50,3,49,15,49,15s0,10-17,10"},"children":[]}]};exports.weather_taurus=weather_taurus;var weather_tempest={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M55,40c4.565,0,8-3.435,8-8c0-4.565-3.435-9-8-9\r\n\tc0-11.414-9.586-20-21-20C23.898,3,14.8,9.423,13,19c0,0-1.165,0-2,0C5.292,19,1,24.292,1,30s4.292,10,10,10H55z"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,46 29,53 33,53 29,60 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"47","y1":"46","x2":"39","y2":"60"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"46","x2":"14","y2":"60"},"children":[]}]};exports.weather_tempest=weather_tempest;var weather_tempest_fullmoon={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M7.004,32.959c-1.59-1.017-2.943-2.37-3.961-3.96\r\n\tC1.75,26.979,1,24.577,1,22C1,14.82,6.82,9,14,9c4.604,0,8.646,2.392,10.957,6.001"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,48 29,55 33,55 29,62 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"23","y1":"48","x2":"15","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"47","y1":"48","x2":"39","y2":"62"},"children":[]}]};exports.weather_tempest_fullmoon=weather_tempest_fullmoon;var weather_tempest_halfmoon={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M24.957,15.001C22.646,11.392,18.604,9,14,9\r\n\tc-0.826,0-1.631,0.085-2.414,0.233c0.891,1.396,1.414,3.05,1.414,4.83c0,4.971-4.029,9-9,9c-1.046,0-2.046-0.188-2.98-0.516\r\n\tc0.099,2.368,0.822,4.576,2.023,6.452c1.018,1.59,2.371,2.943,3.961,3.96"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,48 29,55 33,55 29,62 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"23","y1":"48","x2":"15","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"47","y1":"48","x2":"39","y2":"62"},"children":[]}]};exports.weather_tempest_halfmoon=weather_tempest_halfmoon;var weather_tempest_sun={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M29.999,11.752C27.793,10.028,25.017,9,22,9\r\n\tC14.82,9,9,14.82,9,22c0,2.577,0.707,3.979,2,6"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"6","y1":"22","x2":"0","y2":"22"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"6","x2":"22","y2":"0"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"10","x2":"4","y2":"4"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,48 29,55 33,55 29,62 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"23","y1":"48","x2":"15","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"47","y1":"48","x2":"39","y2":"62"},"children":[]}]};exports.weather_tempest_sun=weather_tempest_sun;var weather_variable_fullmoon={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M56,50c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M7.004,37.959c-1.59-1.017-2.943-2.37-3.961-3.96\r\n\tC1.75,31.979,1,29.577,1,27c0-7.18,5.82-13,13-13c4.604,0,8.646,2.392,10.957,6.001"},"children":[]}]};exports.weather_variable_fullmoon=weather_variable_fullmoon;var weather_variable_halfmoon={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M56,50c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M24.957,20.001C22.646,16.392,18.604,14,14,14\r\n\tc-0.826,0-1.631,0.085-2.414,0.233c0.891,1.396,1.414,3.05,1.414,4.83c0,4.971-4.029,9-9,9c-1.046,0-2.046-0.188-2.98-0.516\r\n\tc0.099,2.368,0.822,4.576,2.023,6.452c1.018,1.59,2.371,2.943,3.961,3.96"},"children":[]}]};exports.weather_variable_halfmoon=weather_variable_halfmoon;var weather_variable_sun={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M56,50c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.233,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M29.999,16.752C27.793,15.028,25.017,14,22,14\r\n\tc-7.18,0-13,5.82-13,13c0,2.577,0.707,3.979,2,6"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"6","y1":"27","x2":"0","y2":"27"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"11","x2":"22","y2":"5"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"15","x2":"4","y2":"9"},"children":[]}]};exports.weather_variable_sun=weather_variable_sun;var weather_virgo={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M54,64c0,0-6-5-6-12s0-40,0-40s0-11-8-11s-8,11-8,11\r\n\tv40"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M16,52V12c0,0,0.083-11,8-11s8,11,8,11"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M16,12c0,0,0-10-8-10"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M48,24c0,0,0-14,6-14s6,14,6,14s-1,34-27,34"},"children":[]}]};exports.weather_virgo=weather_virgo;var weather_waning_cresent={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32.002","cy":"31.999","r":"31"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M41.002,61.999c-13.242-3.528-22-15.646-22-30\r\n\tc0-14.355,8.756-26.473,22-30"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"34","y1":"5","x2":"47","y2":"5"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"27","y1":"11","x2":"55","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"17","x2":"59","y2":"17"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"23","x2":"62","y2":"23"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"19","y1":"29","x2":"63","y2":"29"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"19","y1":"35","x2":"63","y2":"35"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"41","x2":"62","y2":"41"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"23","y1":"47","x2":"59","y2":"47"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"27","y1":"53","x2":"55","y2":"53"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"34","y1":"59","x2":"47","y2":"59"},"children":[]}]};exports.weather_waning_cresent=weather_waning_cresent;var weather_waning_gibbous={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"31"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M23,2c13.242,3.528,22,15.646,22,30\r\n\tc0,14.355-8.756,26.473-22,30"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"30","y1":"59","x2":"47","y2":"59"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"37","y1":"53","x2":"55","y2":"53"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"47","x2":"59","y2":"47"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"44","y1":"41","x2":"62","y2":"41"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"45","y1":"35","x2":"63","y2":"35"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"45","y1":"29","x2":"63","y2":"29"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"44","y1":"23","x2":"62","y2":"23"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"41","y1":"17","x2":"59","y2":"17"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"37","y1":"11","x2":"55","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"30","y1":"5","x2":"47","y2":"5"},"children":[]}]};exports.weather_waning_gibbous=weather_waning_gibbous;var weather_waxing_cresent={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"31"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M23,2c13.243,3.528,22,15.646,22,30\r\n\tc0,14.355-8.756,26.473-22,30"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"30","y1":"59","x2":"17","y2":"59"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"37","y1":"53","x2":"9","y2":"53"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"47","x2":"5","y2":"47"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"44","y1":"41","x2":"2","y2":"41"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"45","y1":"35","x2":"1","y2":"35"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"45","y1":"29","x2":"1","y2":"29"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"44","y1":"23","x2":"2","y2":"23"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"41","y1":"17","x2":"5","y2":"17"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"37","y1":"11","x2":"9","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"30","y1":"5","x2":"17","y2":"5"},"children":[]}]};exports.weather_waxing_cresent=weather_waxing_cresent;var weather_waxing_gibbous={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"31"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M41,62c-13.243-3.528-22-15.646-22-30\r\n\tc0-14.355,8.756-26.473,22-30"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"34","y1":"5","x2":"17","y2":"5"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"27","y1":"11","x2":"9","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"17","x2":"5","y2":"17"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"23","x2":"2","y2":"23"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"19","y1":"29","x2":"1","y2":"29"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"19","y1":"35","x2":"1","y2":"35"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"41","x2":"2","y2":"41"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"23","y1":"47","x2":"5","y2":"47"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"27","y1":"53","x2":"9","y2":"53"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"34","y1":"59","x2":"17","y2":"59"},"children":[]}]};exports.weather_waxing_gibbous=weather_waxing_gibbous;var weather_wind={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M55,40c4.565,0,8-3.435,8-8c0-4.565-3.435-9-8-9\r\n\tc0-11.414-9.586-20-21-20C23.898,3,14.8,9.423,13,19c0,0-1.165,0-2,0C5.292,19,1,24.292,1,30s4.292,10,10,10"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M27,58c0,2.761,2.238,5,5,5s5-2.239,5-5\r\n\ts-2.238-5-5-5H2"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M40,42c0-2.761,2.238-5,5-5s5,2.239,5,5\r\n\ts-2.238,5-5,5H4"},"children":[]}]};exports.weather_wind=weather_wind;var weather_wind_E={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"31"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"4"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32,44c6.628,0,25-12,25-12S38.628,20,32,20\r\n\ts-12,5.373-12,12S25.372,44,32,44z"},"children":[]}]};exports.weather_wind_E=weather_wind_E;var weather_wind_N={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"31"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"4"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M44,32c0-6.628-12-25-12-25S20,25.372,20,32\r\n\ts5.373,12,12,12S44,38.628,44,32z"},"children":[]}]};exports.weather_wind_N=weather_wind_N;var weather_wind_NE={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"31"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"4"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M40.485,40.484C45.172,35.798,49,15,49,15\r\n\ts-20.799,3.827-25.485,8.514c-4.687,4.688-4.686,12.285,0,16.971C28.2,45.171,35.799,45.172,40.485,40.484z"},"children":[]}]};exports.weather_wind_NE=weather_wind_NE;var weather_wind_NW={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"31"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"4"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M40.484,23.514C35.798,18.828,15,15,15,15\r\n\ts3.827,20.799,8.514,25.484c4.688,4.688,12.285,4.686,16.971,0C45.171,35.799,45.172,28.201,40.484,23.514z"},"children":[]}]};exports.weather_wind_NW=weather_wind_NW;var weather_wind_S={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"31"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"4"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M20,32c0,6.628,12,25,12,25s12-18.372,12-25\r\n\ts-5.373-12-12-12S20,25.372,20,32z"},"children":[]}]};exports.weather_wind_S=weather_wind_S;var weather_wind_SE={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"31.999","r":"31"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"31.999","r":"4"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M23.515,40.484\r\n\tc4.687,4.687,25.484,8.515,25.484,8.515S45.172,28.2,40.485,23.514c-4.688-4.687-12.285-4.686-16.971,0\r\n\tC18.828,28.199,18.827,35.798,23.515,40.484z"},"children":[]}]};exports.weather_wind_SE=weather_wind_SE;var weather_wind_SW={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"31"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"4"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M23.515,23.515C18.828,28.201,15,48.999,15,48.999\r\n\ts20.799-3.827,25.485-8.514c4.687-4.688,4.686-12.285,0-16.971C35.8,18.828,28.201,18.827,23.515,23.515z"},"children":[]}]};exports.weather_wind_SW=weather_wind_SW;var weather_wind_W={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"31.999","cy":"31.999","r":"31"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"31.999","cy":"31.999","r":"4"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M31.999,19.999c-6.628,0-25,12-25,12\r\n\ts18.372,12,25,12s12-5.373,12-12S38.627,19.999,31.999,19.999z"},"children":[]}]};exports.weather_wind_W=weather_wind_W;var weather_wind_fullmoon={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M7.004,32.959c-1.59-1.017-2.943-2.37-3.961-3.96\r\n\tC1.75,26.979,1,24.577,1,22C1,14.82,6.82,9,14,9c4.604,0,8.646,2.392,10.957,6.001"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M27,58c0,2.761,2.238,5,5,5s5-2.239,5-5\r\n\ts-2.238-5-5-5H2"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M40,44c0-2.761,2.238-5,5-5s5,2.239,5,5\r\n\ts-2.238,5-5,5H4"},"children":[]}]};exports.weather_wind_fullmoon=weather_wind_fullmoon;var weather_wind_halfmoon={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M24.957,15.001C22.646,11.392,18.604,9,14,9\r\n\tc-0.826,0-1.631,0.085-2.414,0.233c0.891,1.396,1.414,3.05,1.414,4.83c0,4.971-4.029,9-9,9c-1.046,0-2.046-0.188-2.98-0.516\r\n\tc0.099,2.368,0.822,4.576,2.023,6.452c1.018,1.59,2.371,2.943,3.961,3.96"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M27,58c0,2.761,2.238,5,5,5s5-2.239,5-5\r\n\ts-2.238-5-5-5H2"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M40,44c0-2.761,2.238-5,5-5s5,2.239,5,5\r\n\ts-2.238,5-5,5H4"},"children":[]}]};exports.weather_wind_halfmoon=weather_wind_halfmoon;var weather_wind_sun={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M29.999,11.752C27.793,10.028,25.017,9,22,9\r\n\tC14.82,9,9,14.82,9,22c0,2.577,0.707,3.979,2,6"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"6","y1":"22","x2":"0","y2":"22"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"6","x2":"22","y2":"0"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"10","x2":"4","y2":"4"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M27,58c0,2.761,2.238,5,5,5s5-2.239,5-5\r\n\ts-2.238-5-5-5H2"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M40,44c0-2.761,2.238-5,5-5s5,2.239,5,5\r\n\ts-2.238,5-5,5H4"},"children":[]}]};exports.weather_wind_sun=weather_wind_sun;var weather_windgust={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M44,40c0,3.866,3.134,7,7,7s7-3.134,7-7\r\n\ts-3.134-7-7-7H0"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M49,19c0-3.866,3.134-7,7-7s7,3.134,7,7\r\n\ts-3.134,7-7,7H0"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M27,45c0,2.761,2.239,5,5,5s5-2.239,5-5\r\n\ts-2.239-5-5-5H0"},"children":[]}]};exports.weather_windgust=weather_windgust; \ No newline at end of file diff --git a/dist/linea/music_beginning_button.js b/dist/linea/music_beginning_button.js new file mode 100644 index 000000000..25b4a48f2 --- /dev/null +++ b/dist/linea/music_beginning_button.js @@ -0,0 +1,105 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.music_beginning_button = void 0; +var music_beginning_button = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "32,43 18,32 \r\n\t\t32,21 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "32,43 18,32 \r\n\t\t32,21 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "52,43 38,32 \r\n\t\t52,21 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "52,43 38,32 \r\n\t\t52,21 \t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "12", + "y1": "41", + "x2": "12", + "y2": "23" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "12", + "y1": "41", + "x2": "12", + "y2": "23" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M53.92,10.081\r\n\t\tc12.107,12.105,12.107,31.732,0,43.838c-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838\r\n\t\tC22.186-2.027,41.813-2.027,53.92,10.081z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M53.92,10.081\r\n\t\tc12.107,12.105,12.107,31.732,0,43.838c-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838\r\n\t\tC22.186-2.027,41.813-2.027,53.92,10.081z" + }, + "children": [] + }] + }] + }] +}; +exports.music_beginning_button = music_beginning_button; \ No newline at end of file diff --git a/dist/linea/music_bell.js b/dist/linea/music_bell.js new file mode 100644 index 000000000..aeb7f6381 --- /dev/null +++ b/dist/linea/music_bell.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.music_bell = void 0; +var music_bell = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M32,55h25v-4l-7-7V25c0-9.941-8.059-18-18-18\r\n\ts-18,8.059-18,18v19l-7,7v4H32z" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "14", + "y1": "41", + "x2": "50", + "y2": "41" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "14", + "y1": "35", + "x2": "50", + "y2": "35" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M39,55c0,4.418-3.582,8-8,8s-8-3.582-8-8" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "28,7 28,1 36,1 36,7 " + }, + "children": [] + }] +}; +exports.music_bell = music_bell; \ No newline at end of file diff --git a/dist/linea/music_cd.js b/dist/linea/music_cd.js new file mode 100644 index 000000000..8f70e082f --- /dev/null +++ b/dist/linea/music_cd.js @@ -0,0 +1,167 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.music_cd = void 0; +var music_cd = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "31" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "31" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "6" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "6" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "26", + "y1": "30", + "x2": "5", + "y2": "17" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "26", + "y1": "30", + "x2": "5", + "y2": "17" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "30", + "y1": "26", + "x2": "18", + "y2": "5" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "30", + "y1": "26", + "x2": "18", + "y2": "5" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "38", + "y1": "34", + "x2": "59", + "y2": "47" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "38", + "y1": "34", + "x2": "59", + "y2": "47" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "34", + "y1": "38", + "x2": "47", + "y2": "59" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "34", + "y1": "38", + "x2": "47", + "y2": "59" + }, + "children": [] + }] + }] + }] +}; +exports.music_cd = music_cd; \ No newline at end of file diff --git a/dist/linea/music_diapason.js b/dist/linea/music_diapason.js new file mode 100644 index 000000000..68a091f0c --- /dev/null +++ b/dist/linea/music_diapason.js @@ -0,0 +1,72 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.music_diapason = void 0; +var music_diapason = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "5", + "cy": "59", + "r": "4" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M23,29c-3.124,3.124-3.124,8.876,0,12\r\n\tc3.124,3.124,8.876,2.124,12-1" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "23", + "y1": "29", + "x2": "51", + "y2": "1" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "35", + "y1": "40", + "x2": "63", + "y2": "12" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "23", + "y1": "41", + "x2": "8", + "y2": "56" + }, + "children": [] + }] +}; +exports.music_diapason = music_diapason; \ No newline at end of file diff --git a/dist/linea/music_eject_button.js b/dist/linea/music_eject_button.js new file mode 100644 index 000000000..492bccb4f --- /dev/null +++ b/dist/linea/music_eject_button.js @@ -0,0 +1,83 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.music_eject_button = void 0; +var music_eject_button = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "21,34 32,20 \r\n\t\t43,34 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "21,34 32,20 \r\n\t\t43,34 \t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "40", + "x2": "42", + "y2": "40" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "40", + "x2": "42", + "y2": "40" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M53.92,10.081\r\n\t\tc12.107,12.105,12.107,31.732,0,43.838c-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838\r\n\t\tC22.186-2.027,41.813-2.027,53.92,10.081z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M53.92,10.081\r\n\t\tc12.107,12.105,12.107,31.732,0,43.838c-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838\r\n\t\tC22.186-2.027,41.813-2.027,53.92,10.081z" + }, + "children": [] + }] + }] + }] +}; +exports.music_eject_button = music_eject_button; \ No newline at end of file diff --git a/dist/linea/music_end_button.js b/dist/linea/music_end_button.js new file mode 100644 index 000000000..479944180 --- /dev/null +++ b/dist/linea/music_end_button.js @@ -0,0 +1,105 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.music_end_button = void 0; +var music_end_button = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "32,21 46,32 \r\n\t\t32,43 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "32,21 46,32 \r\n\t\t32,43 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "12,21 26,32 \r\n\t\t12,43 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "12,21 26,32 \r\n\t\t12,43 \t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "52", + "y1": "23", + "x2": "52", + "y2": "41" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "52", + "y1": "23", + "x2": "52", + "y2": "41" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M53.92,10.081\r\n\t\tc12.107,12.105,12.107,31.732,0,43.838c-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838\r\n\t\tC22.186-2.027,41.813-2.027,53.92,10.081z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M53.92,10.081\r\n\t\tc12.107,12.105,12.107,31.732,0,43.838c-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838\r\n\t\tC22.186-2.027,41.813-2.027,53.92,10.081z" + }, + "children": [] + }] + }] + }] +}; +exports.music_end_button = music_end_button; \ No newline at end of file diff --git a/dist/linea/music_fastforward_button.js b/dist/linea/music_fastforward_button.js new file mode 100644 index 000000000..d8de9eaf1 --- /dev/null +++ b/dist/linea/music_fastforward_button.js @@ -0,0 +1,79 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.music_fastforward_button = void 0; +var music_fastforward_button = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "36,21 50,32 \r\n\t\t36,43 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "36,21 50,32 \r\n\t\t36,43 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "16,21 30,32 \r\n\t\t16,43 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "16,21 30,32 \r\n\t\t16,43 \t" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M53.92,10.081\r\n\t\tc12.107,12.105,12.107,31.732,0,43.838c-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838\r\n\t\tC22.186-2.027,41.813-2.027,53.92,10.081z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M53.92,10.081\r\n\t\tc12.107,12.105,12.107,31.732,0,43.838c-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838\r\n\t\tC22.186-2.027,41.813-2.027,53.92,10.081z" + }, + "children": [] + }] + }] + }] +}; +exports.music_fastforward_button = music_fastforward_button; \ No newline at end of file diff --git a/dist/linea/music_headphones.js b/dist/linea/music_headphones.js new file mode 100644 index 000000000..df2505983 --- /dev/null +++ b/dist/linea/music_headphones.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.music_headphones = void 0; +var music_headphones = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M11,53C5.477,53,1,48.523,1,43s4.477-10,10-10h2v20\r\n\tH11z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M53,33c5.523,0,10,4.477,10,10s-4.477,10-10,10h-2\r\n\tV33H53z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M13,36v-9c0,0,0-16,19-16s19,16,19,16v6" + }, + "children": [] + }] +}; +exports.music_headphones = music_headphones; \ No newline at end of file diff --git a/dist/linea/music_ipod.js b/dist/linea/music_ipod.js new file mode 100644 index 000000000..4f4ff84e0 --- /dev/null +++ b/dist/linea/music_ipod.js @@ -0,0 +1,145 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.music_ipod = void 0; +var music_ipod = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "16", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "32", + "height": "62" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "16", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "32", + "height": "62" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "16", + "y1": "36", + "x2": "48", + "y2": "36" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "16", + "y1": "36", + "x2": "48", + "y2": "36" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "16", + "y1": "5", + "x2": "48", + "y2": "5" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "16", + "y1": "5", + "x2": "48", + "y2": "5" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "cx": "31.5", + "cy": "49.5", + "r": "9.5" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "cx": "31.5", + "cy": "49.5", + "r": "9.5" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "cx": "31.5", + "cy": "49.5", + "r": "2.5" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "cx": "31.5", + "cy": "49.5", + "r": "2.5" + }, + "children": [] + }] + }] + }] +}; +exports.music_ipod = music_ipod; \ No newline at end of file diff --git a/dist/linea/music_loudspeaker.js b/dist/linea/music_loudspeaker.js new file mode 100644 index 000000000..5702f9981 --- /dev/null +++ b/dist/linea/music_loudspeaker.js @@ -0,0 +1,60 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.music_loudspeaker = void 0; +var music_loudspeaker = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "12", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "40", + "height": "62" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "42", + "r": "12" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "16", + "r": "6" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "42", + "r": "2.5" + }, + "children": [] + }] +}; +exports.music_loudspeaker = music_loudspeaker; \ No newline at end of file diff --git a/dist/linea/music_microphone.js b/dist/linea/music_microphone.js new file mode 100644 index 000000000..6ae58f889 --- /dev/null +++ b/dist/linea/music_microphone.js @@ -0,0 +1,56 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.music_microphone = void 0; +var music_microphone = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "45", + "cy": "15", + "r": "14" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "32,20 6,46 14,54 40,28 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "24", + "y1": "28", + "x2": "32", + "y2": "36" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "10,50 6,54 15,63 20,63 42,41 47,46 40,53 \r\n\t" + }, + "children": [] + }] +}; +exports.music_microphone = music_microphone; \ No newline at end of file diff --git a/dist/linea/music_microphone_old.js b/dist/linea/music_microphone_old.js new file mode 100644 index 000000000..3e42a0137 --- /dev/null +++ b/dist/linea/music_microphone_old.js @@ -0,0 +1,109 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.music_microphone_old = void 0; +var music_microphone_old = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "17", + "y1": "63", + "x2": "47", + "y2": "63" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "62", + "x2": "32", + "y2": "42" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M48,26c0,8-8,16-16,16s-16-8-16-16" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M40,27c0,4.418-3.582,8-8,8s-8-3.582-8-8V9\r\n\tc0-4.418,3.582-8,8-8s8,3.582,8,8V27z" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "29", + "y1": "13", + "x2": "24", + "y2": "13" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "29", + "y1": "23", + "x2": "24", + "y2": "23" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "40", + "y1": "13", + "x2": "35", + "y2": "13" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "40", + "y1": "23", + "x2": "35", + "y2": "23" + }, + "children": [] + }] +}; +exports.music_microphone_old = music_microphone_old; \ No newline at end of file diff --git a/dist/linea/music_mixer.js b/dist/linea/music_mixer.js new file mode 100644 index 000000000..3496ec5ee --- /dev/null +++ b/dist/linea/music_mixer.js @@ -0,0 +1,102 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.music_mixer = void 0; +var music_mixer = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "62" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "16", + "y1": "10", + "x2": "16", + "y2": "54" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "48", + "y1": "10", + "x2": "48", + "y2": "54" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "10", + "x2": "32", + "y2": "54" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "10", + "y1": "14", + "x2": "22", + "y2": "14" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "42", + "y1": "50", + "x2": "54", + "y2": "50" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "26", + "y1": "32", + "x2": "38", + "y2": "32" + }, + "children": [] + }] +}; +exports.music_mixer = music_mixer; \ No newline at end of file diff --git a/dist/linea/music_mute.js b/dist/linea/music_mute.js new file mode 100644 index 000000000..5e1b53f8f --- /dev/null +++ b/dist/linea/music_mute.js @@ -0,0 +1,87 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.music_mute = void 0; +var music_mute = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "4,32 4,20 16,20 34,2 34,32 34,62 16,44 \r\n\t\t4,44 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "4,32 4,20 16,20 34,2 34,32 34,62 16,44 \r\n\t\t4,44 \t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "42", + "y1": "23", + "x2": "60", + "y2": "41" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "42", + "y1": "23", + "x2": "60", + "y2": "41" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "42", + "y1": "41", + "x2": "60", + "y2": "23" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "42", + "y1": "41", + "x2": "60", + "y2": "23" + }, + "children": [] + }] + }] + }] +}; +exports.music_mute = music_mute; \ No newline at end of file diff --git a/dist/linea/music_note_multiple.js b/dist/linea/music_note_multiple.js new file mode 100644 index 000000000..a33a2ec28 --- /dev/null +++ b/dist/linea/music_note_multiple.js @@ -0,0 +1,109 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.music_note_multiple = void 0; +var music_note_multiple = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "18", + "cy": "55", + "r": "8" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "18", + "cy": "55", + "r": "8" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "46", + "cy": "49", + "r": "8" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "46", + "cy": "49", + "r": "8" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "54,49 54,1 26,7 26,55 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "54,49 54,1 26,7 26,55 \t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "26", + "y1": "23", + "x2": "54", + "y2": "17" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "26", + "y1": "23", + "x2": "54", + "y2": "17" + }, + "children": [] + }] + }] + }] +}; +exports.music_note_multiple = music_note_multiple; \ No newline at end of file diff --git a/dist/linea/music_note_single.js b/dist/linea/music_note_single.js new file mode 100644 index 000000000..265a0e6c0 --- /dev/null +++ b/dist/linea/music_note_single.js @@ -0,0 +1,59 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.music_note_single = void 0; +var music_note_single = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "22", + "cy": "55", + "r": "8" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "22", + "cy": "55", + "r": "8" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "30,55 30,7 50,1 50,15 30,21 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "30,55 30,7 50,1 50,15 30,21 \t" + }, + "children": [] + }] + }] + }] +}; +exports.music_note_single = music_note_single; \ No newline at end of file diff --git a/dist/linea/music_pause_button.js b/dist/linea/music_pause_button.js new file mode 100644 index 000000000..343144e1b --- /dev/null +++ b/dist/linea/music_pause_button.js @@ -0,0 +1,87 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.music_pause_button = void 0; +var music_pause_button = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "25", + "y1": "23", + "x2": "25", + "y2": "41" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "25", + "y1": "23", + "x2": "25", + "y2": "41" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "38", + "y1": "23", + "x2": "38", + "y2": "41" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "38", + "y1": "23", + "x2": "38", + "y2": "41" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M53.92,10.081\r\n\t\tc12.107,12.105,12.107,31.732,0,43.838c-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838\r\n\t\tC22.186-2.027,41.813-2.027,53.92,10.081z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M53.92,10.081\r\n\t\tc12.107,12.105,12.107,31.732,0,43.838c-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838\r\n\t\tC22.186-2.027,41.813-2.027,53.92,10.081z" + }, + "children": [] + }] + }] + }] +}; +exports.music_pause_button = music_pause_button; \ No newline at end of file diff --git a/dist/linea/music_play_button.js b/dist/linea/music_play_button.js new file mode 100644 index 000000000..8399e95cf --- /dev/null +++ b/dist/linea/music_play_button.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.music_play_button = void 0; +var music_play_button = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "27,21 41,32 \r\n\t\t27,43 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "27,21 41,32 \r\n\t\t27,43 \t" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M53.92,10.081\r\n\t\tc12.107,12.105,12.107,31.732,0,43.838c-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838\r\n\t\tC22.186-2.027,41.813-2.027,53.92,10.081z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M53.92,10.081\r\n\t\tc12.107,12.105,12.107,31.732,0,43.838c-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838\r\n\t\tC22.186-2.027,41.813-2.027,53.92,10.081z" + }, + "children": [] + }] + }] + }] +}; +exports.music_play_button = music_play_button; \ No newline at end of file diff --git a/dist/linea/music_playlist.js b/dist/linea/music_playlist.js new file mode 100644 index 000000000..105a44798 --- /dev/null +++ b/dist/linea/music_playlist.js @@ -0,0 +1,98 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.music_playlist = void 0; +var music_playlist = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "35", + "cy": "55", + "r": "8" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "35", + "cy": "55", + "r": "8" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "43,55 43,7 63,1 63,15 43,21 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "43,55 43,7 63,1 63,15 43,21 \t" + }, + "children": [] + }] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "4", + "y1": "16", + "x2": "38", + "y2": "16" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "4", + "y1": "26", + "x2": "38", + "y2": "26" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "4", + "y1": "36", + "x2": "38", + "y2": "36" + }, + "children": [] + }] +}; +exports.music_playlist = music_playlist; \ No newline at end of file diff --git a/dist/linea/music_radio_ghettoblaster.js b/dist/linea/music_radio_ghettoblaster.js new file mode 100644 index 000000000..e0337be5a --- /dev/null +++ b/dist/linea/music_radio_ghettoblaster.js @@ -0,0 +1,163 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.music_radio_ghettoblaster = void 0; +var music_radio_ghettoblaster = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "21", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "35" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "17.5", + "cy": "38.5", + "r": "10.5" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "34", + "y": "35", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "23", + "height": "15" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "52", + "y": "27", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "5", + "height": "4" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "43", + "y": "27", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "5", + "height": "4" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "34", + "y": "27", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "5", + "height": "4" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "5,21 5,8 59,8 59,21 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "5", + "y1": "12", + "x2": "59", + "y2": "12" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "14", + "y1": "48", + "x2": "14", + "y2": "29" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "21", + "y1": "48", + "x2": "21", + "y2": "29" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "8", + "y1": "35", + "x2": "27", + "y2": "35" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "8", + "y1": "42", + "x2": "27", + "y2": "42" + }, + "children": [] + }] +}; +exports.music_radio_ghettoblaster = music_radio_ghettoblaster; \ No newline at end of file diff --git a/dist/linea/music_radio_portable.js b/dist/linea/music_radio_portable.js new file mode 100644 index 000000000..dd68e8e9f --- /dev/null +++ b/dist/linea/music_radio_portable.js @@ -0,0 +1,159 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.music_radio_portable = void 0; +var music_radio_portable = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "22", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "38" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "20", + "cy": "41", + "r": "13" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "8", + "y1": "36", + "x2": "32", + "y2": "36" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "8", + "y1": "46", + "x2": "32", + "y2": "46" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "25", + "y1": "29", + "x2": "25", + "y2": "53" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "15", + "y1": "29", + "x2": "15", + "y2": "53" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "43", + "y": "28", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "5", + "height": "4" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "52", + "y": "28", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "5", + "height": "4" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "52", + "cy": "49", + "r": "5" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "52", + "y1": "44", + "x2": "52", + "y2": "48" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "3,22 3,18 9,18 9,22 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "53,4 6,16 6,18 " + }, + "children": [] + }] +}; +exports.music_radio_portable = music_radio_portable; \ No newline at end of file diff --git a/dist/linea/music_record.js b/dist/linea/music_record.js new file mode 100644 index 000000000..c9f2d02e7 --- /dev/null +++ b/dist/linea/music_record.js @@ -0,0 +1,223 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.music_record = void 0; +var music_record = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "31" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "31" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "8" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "8" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M32,48c-8.838,0-16-7.16-16-16" + }, + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M32,48c-8.838,0-16-7.16-16-16" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M32.002,48" + }, + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M32.002,48" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M32,16c8.838,0,16,7.162,16,16" + }, + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M32,16c8.838,0,16,7.162,16,16" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M32,9" + }, + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M32,9" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M32.003,55C19.299,55,9,44.707,9,32" + }, + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M32.003,55C19.299,55,9,44.707,9,32" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M32.003,55" + }, + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M32.003,55" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M55,32.002" + }, + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M55,32.002" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M32,9c12.704,0,23,10.295,23,23" + }, + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M32,9c12.704,0,23,10.295,23,23" + }, + "children": [] + }] + }] + }] +}; +exports.music_record = music_record; \ No newline at end of file diff --git a/dist/linea/music_recordplayer.js b/dist/linea/music_recordplayer.js new file mode 100644 index 000000000..962b8220f --- /dev/null +++ b/dist/linea/music_recordplayer.js @@ -0,0 +1,111 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.music_recordplayer = void 0; +var music_recordplayer = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "62" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "53", + "y": "7", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "4", + "height": "8" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "27.5", + "cy": "27.5", + "r": "22.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "27.5", + "cy": "27.5", + "r": "6" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "57", + "y1": "15", + "x2": "57", + "y2": "48" + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "57,49 51,52 51,48 \r\n\t57,45 " + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "5", + "y": "56", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "3" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "15", + "y": "56", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "6", + "height": "3" + }, + "children": [] + }] +}; +exports.music_recordplayer = music_recordplayer; \ No newline at end of file diff --git a/dist/linea/music_repeat_button.js b/dist/linea/music_repeat_button.js new file mode 100644 index 000000000..959da9287 --- /dev/null +++ b/dist/linea/music_repeat_button.js @@ -0,0 +1,53 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.music_repeat_button = void 0; +var music_repeat_button = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "56,48 8,48 8,24 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "8,16 56,16 56,40 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "49,33 56,40 \r\n\t63,33 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "15,31 8,24 1,31 \r\n\t" + }, + "children": [] + }] +}; +exports.music_repeat_button = music_repeat_button; \ No newline at end of file diff --git a/dist/linea/music_rewind_button.js b/dist/linea/music_rewind_button.js new file mode 100644 index 000000000..974661534 --- /dev/null +++ b/dist/linea/music_rewind_button.js @@ -0,0 +1,79 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.music_rewind_button = void 0; +var music_rewind_button = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "28,43 14,32 \r\n\t\t28,21 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "28,43 14,32 \r\n\t\t28,21 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "48,43 34,32 \r\n\t\t48,21 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "48,43 34,32 \r\n\t\t48,21 \t" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M53.92,10.081\r\n\t\tc12.107,12.105,12.107,31.732,0,43.838c-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838\r\n\t\tC22.186-2.027,41.813-2.027,53.92,10.081z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M53.92,10.081\r\n\t\tc12.107,12.105,12.107,31.732,0,43.838c-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838\r\n\t\tC22.186-2.027,41.813-2.027,53.92,10.081z" + }, + "children": [] + }] + }] + }] +}; +exports.music_rewind_button = music_rewind_button; \ No newline at end of file diff --git a/dist/linea/music_shuffle_button.js b/dist/linea/music_shuffle_button.js new file mode 100644 index 000000000..f92154f10 --- /dev/null +++ b/dist/linea/music_shuffle_button.js @@ -0,0 +1,74 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.music_shuffle_button = void 0; +var music_shuffle_button = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "0,48 15,48 47,16 63,16 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "37,38 47,48 63,48 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "0,16 15,16 25,26 " + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "d": "M56,23" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "56,23 63,16 56,9 \r\n\t" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "56,55 63,48 \r\n\t56,41 " + }, + "children": [] + }] +}; +exports.music_shuffle_button = music_shuffle_button; \ No newline at end of file diff --git a/dist/linea/music_stop_button.js b/dist/linea/music_stop_button.js new file mode 100644 index 000000000..1a2188b26 --- /dev/null +++ b/dist/linea/music_stop_button.js @@ -0,0 +1,34 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.music_stop_button = void 0; +var music_stop_button = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "22", + "y": "22", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "20", + "height": "20" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z" + }, + "children": [] + }] +}; +exports.music_stop_button = music_stop_button; \ No newline at end of file diff --git a/dist/linea/music_tape.js b/dist/linea/music_tape.js new file mode 100644 index 000000000..e4f9137c9 --- /dev/null +++ b/dist/linea/music_tape.js @@ -0,0 +1,84 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.music_tape = void 0; +var music_tape = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "11", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "42" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "16", + "cy": "31", + "r": "6" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "48", + "cy": "31", + "r": "6" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "57,53 54,43 32,43 10,43 7,53 " + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "5", + "y": "15", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "55", + "height": "4" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "26", + "y": "28", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "12", + "height": "6" + }, + "children": [] + }] +}; +exports.music_tape = music_tape; \ No newline at end of file diff --git a/dist/linea/music_volume_down.js b/dist/linea/music_volume_down.js new file mode 100644 index 000000000..3939de18d --- /dev/null +++ b/dist/linea/music_volume_down.js @@ -0,0 +1,55 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.music_volume_down = void 0; +var music_volume_down = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "8,32 8,20 20,20 38,2 38,32 38,62 20,44 \r\n\t\t8,44 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "8,32 8,20 20,20 38,2 38,32 38,62 20,44 \r\n\t\t8,44 \t" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M46,42c5.522,0,10-4.478,10-10s-4.478-10-10-10" + }, + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M46,42c5.522,0,10-4.478,10-10s-4.478-10-10-10" + }, + "children": [] + }] + }] + }] +}; +exports.music_volume_down = music_volume_down; \ No newline at end of file diff --git a/dist/linea/music_volume_up.js b/dist/linea/music_volume_up.js new file mode 100644 index 000000000..85de36290 --- /dev/null +++ b/dist/linea/music_volume_up.js @@ -0,0 +1,75 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.music_volume_up = void 0; +var music_volume_up = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "3,32 3,20 15,20 33,2 33,32 33,62 15,44 \r\n\t\t3,44 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "3,32 3,20 15,20 33,2 33,32 33,62 15,44 \r\n\t\t3,44 \t" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M41,42c5.522,0,10-4.478,10-10s-4.478-10-10-10" + }, + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M41,42c5.522,0,10-4.478,10-10s-4.478-10-10-10" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M41,12c11.046,0,20,8.954,20,20s-8.954,20-20,20" + }, + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M41,12c11.046,0,20,8.954,20,20s-8.954,20-20,20" + }, + "children": [] + }] + }] + }] +}; +exports.music_volume_up = music_volume_up; \ No newline at end of file diff --git a/dist/linea/software_add_vectorpoint.js b/dist/linea/software_add_vectorpoint.js new file mode 100644 index 000000000..818c91c6b --- /dev/null +++ b/dist/linea/software_add_vectorpoint.js @@ -0,0 +1,293 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_add_vectorpoint = void 0; +var software_add_vectorpoint = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "53", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "10", + "height": "10" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "53", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "10", + "height": "10" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "44,22 44,20 42,20 \t\t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "44,22 44,20 42,20 \t\t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "40", + "y1": "20", + "x2": "23", + "y2": "20" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "40", + "y1": "20", + "x2": "23", + "y2": "20" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "22,20 20,20 20,22 \t\t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "22,20 20,20 20,22 \t\t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "20", + "y1": "24", + "x2": "20", + "y2": "41" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "20", + "y1": "24", + "x2": "20", + "y2": "41" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "20,42 20,44 22,44 \t\t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "20,42 20,44 22,44 \t\t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "24", + "y1": "44", + "x2": "41", + "y2": "44" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "24", + "y1": "44", + "x2": "41", + "y2": "44" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "42,44 44,44 44,42 \t\t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "42,44 44,44 44,42 \t\t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "44", + "y1": "40", + "x2": "44", + "y2": "23" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "44", + "y1": "40", + "x2": "44", + "y2": "23" + }, + "children": [] + }] + }] + }] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "11", + "y1": "53", + "x2": "20", + "y2": "44" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "44", + "y1": "20", + "x2": "53", + "y2": "11" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "25", + "x2": "32", + "y2": "39" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "39", + "y1": "32", + "x2": "25", + "y2": "32" + }, + "children": [] + }] +}; +exports.software_add_vectorpoint = software_add_vectorpoint; \ No newline at end of file diff --git a/dist/linea/software_box_oval.js b/dist/linea/software_box_oval.js new file mode 100644 index 000000000..104db0155 --- /dev/null +++ b/dist/linea/software_box_oval.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_box_oval = void 0; +var software_box_oval = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "ellipse", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "rx": "31", + "ry": "20" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "1", + "y1": "32", + "x2": "63", + "y2": "32" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "12", + "x2": "32", + "y2": "52" + }, + "children": [] + }] +}; +exports.software_box_oval = software_box_oval; \ No newline at end of file diff --git a/dist/linea/software_box_polygon.js b/dist/linea/software_box_polygon.js new file mode 100644 index 000000000..041b4d1fa --- /dev/null +++ b/dist/linea/software_box_polygon.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_box_polygon = void 0; +var software_box_polygon = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "16.676,59 1.351,32 16.676,5 47.324,5 \r\n\t62.649,32 47.324,59 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "17", + "y1": "5", + "x2": "47", + "y2": "59" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "47", + "y1": "5", + "x2": "17", + "y2": "59" + }, + "children": [] + }] +}; +exports.software_box_polygon = software_box_polygon; \ No newline at end of file diff --git a/dist/linea/software_box_rectangle.js b/dist/linea/software_box_rectangle.js new file mode 100644 index 000000000..15734249e --- /dev/null +++ b/dist/linea/software_box_rectangle.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_box_rectangle = void 0; +var software_box_rectangle = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "12", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "40" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "1", + "y1": "12", + "x2": "63", + "y2": "52" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "63", + "y1": "12", + "x2": "1", + "y2": "52" + }, + "children": [] + }] +}; +exports.software_box_rectangle = software_box_rectangle; \ No newline at end of file diff --git a/dist/linea/software_box_roundedrectangle.js b/dist/linea/software_box_roundedrectangle.js new file mode 100644 index 000000000..a1b2ca90b --- /dev/null +++ b/dist/linea/software_box_roundedrectangle.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_box_roundedrectangle = void 0; +var software_box_roundedrectangle = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M63,40c0,6.627-5.373,12-12,12H13\r\n\tC6.373,52,1,46.627,1,40V24c0-6.627,5.373-12,12-12h38c6.627,0,12,5.373,12,12V40z" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "5", + "y1": "15", + "x2": "59", + "y2": "49" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "59", + "y1": "15", + "x2": "5", + "y2": "49" + }, + "children": [] + }] +}; +exports.software_box_roundedrectangle = software_box_roundedrectangle; \ No newline at end of file diff --git a/dist/linea/software_character.js b/dist/linea/software_character.js new file mode 100644 index 000000000..fffb53d43 --- /dev/null +++ b/dist/linea/software_character.js @@ -0,0 +1,74 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_character = void 0; +var software_character = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,52.5 27,10 28,10 43,52.75 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "12,52.5 27,10 28,10 43,52.75 \t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "17", + "y1": "38", + "x2": "38", + "y2": "38" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "17", + "y1": "38", + "x2": "38", + "y2": "38" + }, + "children": [] + }] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "52", + "y1": "0", + "x2": "52", + "y2": "64" + }, + "children": [] + }] +}; +exports.software_character = software_character; \ No newline at end of file diff --git a/dist/linea/software_crop.js b/dist/linea/software_crop.js new file mode 100644 index 000000000..73d9927ca --- /dev/null +++ b/dist/linea/software_crop.js @@ -0,0 +1,44 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_crop = void 0; +var software_crop = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "0,11 53,11 53,64 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11,0 11,53 64,53 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "11", + "y1": "53", + "x2": "63", + "y2": "1" + }, + "children": [] + }] +}; +exports.software_crop = software_crop; \ No newline at end of file diff --git a/dist/linea/software_eyedropper.js b/dist/linea/software_eyedropper.js new file mode 100644 index 000000000..bea8d42f2 --- /dev/null +++ b/dist/linea/software_eyedropper.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_eyedropper = void 0; +var software_eyedropper = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M47,26l12-12l4-4c0-4.371-4.628-9-9-9\r\n\tc0,0-2.563,2.533-4,4L38,17" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "28.479", + "y": "20.672", + "transform": "matrix(-0.7071 -0.7071 0.7071 -0.7071 52.5208 68.7548)", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "24.042", + "height": "5.657" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "34,22 4,54 4,56 1,59 5,63 8,60 10,60 \r\n\t42,30 " + }, + "children": [] + }] +}; +exports.software_eyedropper = software_eyedropper; \ No newline at end of file diff --git a/dist/linea/software_font_allcaps.js b/dist/linea/software_font_allcaps.js new file mode 100644 index 000000000..fd789625c --- /dev/null +++ b/dist/linea/software_font_allcaps.js @@ -0,0 +1,124 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_font_allcaps = void 0; +var software_font_allcaps = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "31,50.987 18,16 17,16 4,51 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "31,50.987 18,16 17,16 4,51 \t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "27", + "y1": "39", + "x2": "8", + "y2": "39" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "27", + "y1": "39", + "x2": "8", + "y2": "39" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "60,50.987 47,16 46,16 33,51 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "60,50.987 47,16 46,16 33,51 \t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "56", + "y1": "39", + "x2": "37", + "y2": "39" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "56", + "y1": "39", + "x2": "37", + "y2": "39" + }, + "children": [] + }] + }] + }, { + "name": "rect", + "attribs": { + "x": "1", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "62" + }, + "children": [] + }] +}; +exports.software_font_allcaps = software_font_allcaps; \ No newline at end of file diff --git a/dist/linea/software_font_baseline_shift.js b/dist/linea/software_font_baseline_shift.js new file mode 100644 index 000000000..1daa35e8f --- /dev/null +++ b/dist/linea/software_font_baseline_shift.js @@ -0,0 +1,178 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_font_baseline_shift = void 0; +var software_font_baseline_shift = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "36,43 21,1 20,1 5,43 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "36,43 21,1 20,1 5,43 \t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "31", + "y1": "29", + "x2": "10", + "y2": "29" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "31", + "y1": "29", + "x2": "10", + "y2": "29" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "59,31 51,8 50,8 42,31 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "59,31 51,8 50,8 42,31 \t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "57", + "y1": "24", + "x2": "44", + "y2": "24" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "57", + "y1": "24", + "x2": "44", + "y2": "24" + }, + "children": [] + }] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "38", + "y1": "47", + "x2": "2", + "y2": "47" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "62", + "y1": "35", + "x2": "40", + "y2": "35" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "58,47 51,40 \r\n\t44,47 " + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "51", + "y1": "64", + "x2": "51", + "y2": "40" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "51", + "y1": "64", + "x2": "51", + "y2": "40" + }, + "children": [] + }] + }] + }] +}; +exports.software_font_baseline_shift = software_font_baseline_shift; \ No newline at end of file diff --git a/dist/linea/software_font_horizontal_scale.js b/dist/linea/software_font_horizontal_scale.js new file mode 100644 index 000000000..2a05d259a --- /dev/null +++ b/dist/linea/software_font_horizontal_scale.js @@ -0,0 +1,124 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_font_horizontal_scale = void 0; +var software_font_horizontal_scale = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "17,44 32,2 33,2 48,44 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "17,44 32,2 33,2 48,44 \t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "30", + "x2": "43", + "y2": "30" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "30", + "x2": "43", + "y2": "30" + }, + "children": [] + }] + }] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "d": "M55,63" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "55,63 62,56 \r\n\t55,49 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "9,49 2,56 9,63 \r\n\t" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "62", + "y1": "56", + "x2": "2", + "y2": "56" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "62", + "y1": "56", + "x2": "2", + "y2": "56" + }, + "children": [] + }] + }] + }] +}; +exports.software_font_horizontal_scale = software_font_horizontal_scale; \ No newline at end of file diff --git a/dist/linea/software_font_kerning.js b/dist/linea/software_font_kerning.js new file mode 100644 index 000000000..59d58f86d --- /dev/null +++ b/dist/linea/software_font_kerning.js @@ -0,0 +1,255 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_font_kerning = void 0; +var software_font_kerning = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "5,35 13,12 14,12 22,35 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "5,35 13,12 14,12 22,35 \t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "7", + "y1": "28", + "x2": "20", + "y2": "28" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "7", + "y1": "28", + "x2": "20", + "y2": "28" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "42,35 50,12 51,12 59,35 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "42,35 50,12 51,12 59,35 \t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "44", + "y1": "28", + "x2": "57", + "y2": "28" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "44", + "y1": "28", + "x2": "57", + "y2": "28" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "6", + "x2": "32", + "y2": "8" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "6", + "x2": "32", + "y2": "8" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "32", + "y1": "10", + "x2": "32", + "y2": "39" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "32", + "y1": "10", + "x2": "32", + "y2": "39" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "40", + "x2": "32", + "y2": "42" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "40", + "x2": "32", + "y2": "42" + }, + "children": [] + }] + }] + }] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "55,63 62,56 \r\n\t55,49 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "9,49 2,56 9,63 \r\n\t" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "62", + "y1": "56", + "x2": "2", + "y2": "56" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "62", + "y1": "56", + "x2": "2", + "y2": "56" + }, + "children": [] + }] + }] + }] +}; +exports.software_font_kerning = software_font_kerning; \ No newline at end of file diff --git a/dist/linea/software_font_leading.js b/dist/linea/software_font_leading.js new file mode 100644 index 000000000..701b1eda7 --- /dev/null +++ b/dist/linea/software_font_leading.js @@ -0,0 +1,189 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_font_leading = void 0; +var software_font_leading = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "36,24 44,1 45,1 53,24 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "36,24 44,1 45,1 53,24 \t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "38", + "y1": "17", + "x2": "51", + "y2": "17" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "38", + "y1": "17", + "x2": "51", + "y2": "17" + }, + "children": [] + }] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "27", + "y1": "28", + "x2": "61", + "y2": "28" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "36,57 44,34 45,34 53,57 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "36,57 44,34 45,34 53,57 \t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "38", + "y1": "50", + "x2": "51", + "y2": "50" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "38", + "y1": "50", + "x2": "51", + "y2": "50" + }, + "children": [] + }] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "27", + "y1": "61", + "x2": "61", + "y2": "61" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "5,55 12,62 19,55 \r\n\t" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "19,34 12,27 5,34 \r\n\t" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "12", + "y1": "62", + "x2": "12", + "y2": "27" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "12", + "y1": "62", + "x2": "12", + "y2": "27" + }, + "children": [] + }] + }] + }] +}; +exports.software_font_leading = software_font_leading; \ No newline at end of file diff --git a/dist/linea/software_font_size.js b/dist/linea/software_font_size.js new file mode 100644 index 000000000..5dd4f6622 --- /dev/null +++ b/dist/linea/software_font_size.js @@ -0,0 +1,163 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_font_size = void 0; +var software_font_size = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "28,43 43,1 44,1 59,43 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "28,43 43,1 44,1 59,43 \t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "33", + "y1": "29", + "x2": "54", + "y2": "29" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "33", + "y1": "29", + "x2": "54", + "y2": "29" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "5,43 13,20 14,20 22,43 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "5,43 13,20 14,20 22,43 \t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "7", + "y1": "36", + "x2": "20", + "y2": "36" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "7", + "y1": "36", + "x2": "20", + "y2": "36" + }, + "children": [] + }] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "56,63 63,56 \r\n\t56,49 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "8,49 1,56 8,63 \r\n\t" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "63", + "y1": "56", + "x2": "1", + "y2": "56" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "63", + "y1": "56", + "x2": "1", + "y2": "56" + }, + "children": [] + }] + }] + }] +}; +exports.software_font_size = software_font_size; \ No newline at end of file diff --git a/dist/linea/software_font_smallcapital.js b/dist/linea/software_font_smallcapital.js new file mode 100644 index 000000000..36581cc67 --- /dev/null +++ b/dist/linea/software_font_smallcapital.js @@ -0,0 +1,124 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_font_smallcapital = void 0; +var software_font_smallcapital = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "37,51 22,9 21,9 6,51 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "37,51 22,9 21,9 6,51 \t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "37", + "x2": "11", + "y2": "37" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "37", + "x2": "11", + "y2": "37" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "58,51 50,28 49,28 41,51 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "58,51 50,28 49,28 41,51 \t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "56", + "y1": "44", + "x2": "43", + "y2": "44" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "56", + "y1": "44", + "x2": "43", + "y2": "44" + }, + "children": [] + }] + }] + }, { + "name": "rect", + "attribs": { + "x": "1", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "62" + }, + "children": [] + }] +}; +exports.software_font_smallcapital = software_font_smallcapital; \ No newline at end of file diff --git a/dist/linea/software_font_smallcaps.js b/dist/linea/software_font_smallcaps.js new file mode 100644 index 000000000..b4a5ea59a --- /dev/null +++ b/dist/linea/software_font_smallcaps.js @@ -0,0 +1,94 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_font_smallcaps = void 0; +var software_font_smallcaps = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "38,51 23,9 22,9 7,51 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "38,51 23,9 22,9 7,51 \t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "33", + "y1": "37", + "x2": "12", + "y2": "37" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "33", + "y1": "37", + "x2": "12", + "y2": "37" + }, + "children": [] + }] + }] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M44,34c0,0,1.5-2,5.5-2s5.5,3,5.5,5s0,10,0,10\r\n\ts0,3,2.5,3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M55,40h-5c0,0-7,0-7,5s4,5,5,5s7,0,7-7" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "1", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "62" + }, + "children": [] + }] +}; +exports.software_font_smallcaps = software_font_smallcaps; \ No newline at end of file diff --git a/dist/linea/software_font_strikethrough.js b/dist/linea/software_font_strikethrough.js new file mode 100644 index 000000000..19a3f2bcc --- /dev/null +++ b/dist/linea/software_font_strikethrough.js @@ -0,0 +1,107 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_font_strikethrough = void 0; +var software_font_strikethrough = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "38,51 23,9 22,9 7,51 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "38,51 23,9 22,9 7,51 \t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "35", + "x2": "13", + "y2": "35" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "35", + "x2": "13", + "y2": "35" + }, + "children": [] + }] + }] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M44,34c0,0,1.5-2,5.5-2s5.5,3,5.5,5s0,10,0,10\r\n\ts0,3,2.5,3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M55,40h-5c0,0-7,0-7,5s4,5,5,5s7,0,7-7" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "1", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "62" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "6", + "y1": "44", + "x2": "58", + "y2": "44" + }, + "children": [] + }] +}; +exports.software_font_strikethrough = software_font_strikethrough; \ No newline at end of file diff --git a/dist/linea/software_font_tracking.js b/dist/linea/software_font_tracking.js new file mode 100644 index 000000000..629efe8f3 --- /dev/null +++ b/dist/linea/software_font_tracking.js @@ -0,0 +1,439 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_font_tracking = void 0; +var software_font_tracking = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "9,35 17,12 18,12 26,35 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "9,35 17,12 18,12 26,35 \t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "11", + "y1": "28", + "x2": "24", + "y2": "28" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "11", + "y1": "28", + "x2": "24", + "y2": "28" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "38,35 46,12 47,12 55,35 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "38,35 46,12 47,12 55,35 \t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "40", + "y1": "28", + "x2": "53", + "y2": "28" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "40", + "y1": "28", + "x2": "53", + "y2": "28" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "6", + "x2": "32", + "y2": "8" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "6", + "x2": "32", + "y2": "8" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "32", + "y1": "10", + "x2": "32", + "y2": "39" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "32", + "y1": "10", + "x2": "32", + "y2": "39" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "40", + "x2": "32", + "y2": "42" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "40", + "x2": "32", + "y2": "42" + }, + "children": [] + }] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "4", + "y1": "6", + "x2": "4", + "y2": "8" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "4", + "y1": "6", + "x2": "4", + "y2": "8" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "4", + "y1": "10", + "x2": "4", + "y2": "39" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "4", + "y1": "10", + "x2": "4", + "y2": "39" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "4", + "y1": "40", + "x2": "4", + "y2": "42" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "4", + "y1": "40", + "x2": "4", + "y2": "42" + }, + "children": [] + }] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "60", + "y1": "6", + "x2": "60", + "y2": "8" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "60", + "y1": "6", + "x2": "60", + "y2": "8" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "60", + "y1": "10", + "x2": "60", + "y2": "39" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "60", + "y1": "10", + "x2": "60", + "y2": "39" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "60", + "y1": "40", + "x2": "60", + "y2": "42" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "60", + "y1": "40", + "x2": "60", + "y2": "42" + }, + "children": [] + }] + }] + }] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "55,63 62,56 \r\n\t55,49 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "9,49 2,56 9,63 \r\n\t" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "62", + "y1": "56", + "x2": "2", + "y2": "56" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "62", + "y1": "56", + "x2": "2", + "y2": "56" + }, + "children": [] + }] + }] + }] +}; +exports.software_font_tracking = software_font_tracking; \ No newline at end of file diff --git a/dist/linea/software_font_underline.js b/dist/linea/software_font_underline.js new file mode 100644 index 000000000..294982823 --- /dev/null +++ b/dist/linea/software_font_underline.js @@ -0,0 +1,107 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_font_underline = void 0; +var software_font_underline = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "38,51 23,9 22,9 7,51 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "38,51 23,9 22,9 7,51 \t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "35", + "x2": "13", + "y2": "35" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "35", + "x2": "13", + "y2": "35" + }, + "children": [] + }] + }] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M44,34c0,0,1.5-2,5.5-2s5.5,3,5.5,5s0,10,0,10\r\n\ts0,3,2.5,3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M55,40h-5c0,0-7,0-7,5s4,5,5,5s7,0,7-7" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "1", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "62" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "6", + "y1": "55", + "x2": "58", + "y2": "55" + }, + "children": [] + }] +}; +exports.software_font_underline = software_font_underline; \ No newline at end of file diff --git a/dist/linea/software_font_vertical_scale.js b/dist/linea/software_font_vertical_scale.js new file mode 100644 index 000000000..5674c345f --- /dev/null +++ b/dist/linea/software_font_vertical_scale.js @@ -0,0 +1,113 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_font_vertical_scale = void 0; +var software_font_vertical_scale = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "29,53 44,11 45,11 60,53 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "29,53 44,11 45,11 60,53 \t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "34", + "y1": "39", + "x2": "55", + "y2": "39" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "34", + "y1": "39", + "x2": "55", + "y2": "39" + }, + "children": [] + }] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "5,55 12,62 19,55 \r\n\t" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "19,9 12,2 5,9 " + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "12", + "y1": "62", + "x2": "12", + "y2": "2" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "12", + "y1": "62", + "x2": "12", + "y2": "2" + }, + "children": [] + }] + }] + }] +}; +exports.software_font_vertical_scale = software_font_vertical_scale; \ No newline at end of file diff --git a/dist/linea/software_horizontal_align_center.js b/dist/linea/software_horizontal_align_center.js new file mode 100644 index 000000000..38b995c16 --- /dev/null +++ b/dist/linea/software_horizontal_align_center.js @@ -0,0 +1,76 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_horizontal_align_center = void 0; +var software_horizontal_align_center = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "51", + "x2": "32", + "y2": "64" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "0", + "x2": "32", + "y2": "13" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "29", + "x2": "32", + "y2": "35" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "6", + "y": "35", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "52", + "height": "16" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "12", + "y": "13", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "40", + "height": "16" + }, + "children": [] + }] +}; +exports.software_horizontal_align_center = software_horizontal_align_center; \ No newline at end of file diff --git a/dist/linea/software_horizontal_align_left.js b/dist/linea/software_horizontal_align_left.js new file mode 100644 index 000000000..8d1ef3680 --- /dev/null +++ b/dist/linea/software_horizontal_align_left.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_horizontal_align_left = void 0; +var software_horizontal_align_left = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "1", + "y1": "0", + "x2": "1", + "y2": "64" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "7", + "y": "35", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "52", + "height": "16" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "7", + "y": "13", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "40", + "height": "16" + }, + "children": [] + }] +}; +exports.software_horizontal_align_left = software_horizontal_align_left; \ No newline at end of file diff --git a/dist/linea/software_horizontal_align_right.js b/dist/linea/software_horizontal_align_right.js new file mode 100644 index 000000000..e3e184e30 --- /dev/null +++ b/dist/linea/software_horizontal_align_right.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_horizontal_align_right = void 0; +var software_horizontal_align_right = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "63", + "y1": "0", + "x2": "63", + "y2": "64" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "5", + "y": "35", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "52", + "height": "16" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "17", + "y": "13", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "40", + "height": "16" + }, + "children": [] + }] +}; +exports.software_horizontal_align_right = software_horizontal_align_right; \ No newline at end of file diff --git a/dist/linea/software_horizontal_distribute_center.js b/dist/linea/software_horizontal_distribute_center.js new file mode 100644 index 000000000..eac76162b --- /dev/null +++ b/dist/linea/software_horizontal_distribute_center.js @@ -0,0 +1,89 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_horizontal_distribute_center = void 0; +var software_horizontal_distribute_center = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "43", + "y1": "0", + "x2": "43", + "y2": "12" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "43", + "y1": "52", + "x2": "43", + "y2": "64" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "21", + "y1": "0", + "x2": "21", + "y2": "6" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "21", + "y1": "58", + "x2": "21", + "y2": "64" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "35", + "y": "12", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "16", + "height": "40" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "13", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "16", + "height": "52" + }, + "children": [] + }] +}; +exports.software_horizontal_distribute_center = software_horizontal_distribute_center; \ No newline at end of file diff --git a/dist/linea/software_horizontal_distribute_left.js b/dist/linea/software_horizontal_distribute_left.js new file mode 100644 index 000000000..f61e1508c --- /dev/null +++ b/dist/linea/software_horizontal_distribute_left.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_horizontal_distribute_left = void 0; +var software_horizontal_distribute_left = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "35", + "y1": "0", + "x2": "35", + "y2": "64" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "13", + "y1": "0", + "x2": "13", + "y2": "64" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "35", + "y": "12", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "16", + "height": "40" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "13", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "16", + "height": "52" + }, + "children": [] + }] +}; +exports.software_horizontal_distribute_left = software_horizontal_distribute_left; \ No newline at end of file diff --git a/dist/linea/software_horizontal_distribute_right.js b/dist/linea/software_horizontal_distribute_right.js new file mode 100644 index 000000000..62c785dd1 --- /dev/null +++ b/dist/linea/software_horizontal_distribute_right.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_horizontal_distribute_right = void 0; +var software_horizontal_distribute_right = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "29", + "y1": "64", + "x2": "29", + "y2": "0" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "51", + "y1": "64", + "x2": "51", + "y2": "0" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "13", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "16", + "height": "52" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "35", + "y": "12", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "16", + "height": "40" + }, + "children": [] + }] +}; +exports.software_horizontal_distribute_right = software_horizontal_distribute_right; \ No newline at end of file diff --git a/dist/linea/software_indent_firstline.js b/dist/linea/software_indent_firstline.js new file mode 100644 index 000000000..84ef9f2f7 --- /dev/null +++ b/dist/linea/software_indent_firstline.js @@ -0,0 +1,149 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_indent_firstline = void 0; +var software_indent_firstline = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "30", + "y1": "10", + "x2": "64", + "y2": "10" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "20", + "x2": "53", + "y2": "20" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "30", + "x2": "64", + "y2": "30" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "40", + "x2": "56", + "y2": "40" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "50", + "x2": "64", + "y2": "50" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "60", + "x2": "58", + "y2": "60" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "16,17 23,10 \r\n\t\t16,3 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "16,17 23,10 \r\n\t\t16,3 \t" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "23", + "y1": "10", + "x2": "0", + "y2": "10" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "23", + "y1": "10", + "x2": "0", + "y2": "10" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.software_indent_firstline = software_indent_firstline; \ No newline at end of file diff --git a/dist/linea/software_indent_left.js b/dist/linea/software_indent_left.js new file mode 100644 index 000000000..acea5ec0e --- /dev/null +++ b/dist/linea/software_indent_left.js @@ -0,0 +1,143 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_indent_left = void 0; +var software_indent_left = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "30", + "y1": "7", + "x2": "64", + "y2": "7" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "30", + "y1": "17", + "x2": "52", + "y2": "17" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "30", + "y1": "27", + "x2": "64", + "y2": "27" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "30", + "y1": "37", + "x2": "55", + "y2": "37" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "30", + "y1": "47", + "x2": "64", + "y2": "47" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "30", + "y1": "57", + "x2": "57", + "y2": "57" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "25", + "y1": "0", + "x2": "25", + "y2": "64" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "12,39 19,32 \r\n\t12,25 " + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "19", + "y1": "32", + "x2": "0", + "y2": "32" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "19", + "y1": "32", + "x2": "0", + "y2": "32" + }, + "children": [] + }] + }] + }] +}; +exports.software_indent_left = software_indent_left; \ No newline at end of file diff --git a/dist/linea/software_indent_right.js b/dist/linea/software_indent_right.js new file mode 100644 index 000000000..81f0a1e83 --- /dev/null +++ b/dist/linea/software_indent_right.js @@ -0,0 +1,143 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_indent_right = void 0; +var software_indent_right = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "34", + "y1": "7", + "x2": "0", + "y2": "7" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "34", + "y1": "17", + "x2": "12", + "y2": "17" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "34", + "y1": "27", + "x2": "0", + "y2": "27" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "34", + "y1": "37", + "x2": "9", + "y2": "37" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "34", + "y1": "47", + "x2": "0", + "y2": "47" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "34", + "y1": "57", + "x2": "7", + "y2": "57" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "39", + "y1": "0", + "x2": "39", + "y2": "64" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "52,25 45,32 \r\n\t52,39 " + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "45", + "y1": "32", + "x2": "64", + "y2": "32" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "45", + "y1": "32", + "x2": "64", + "y2": "32" + }, + "children": [] + }] + }] + }] +}; +exports.software_indent_right = software_indent_right; \ No newline at end of file diff --git a/dist/linea/software_lasso.js b/dist/linea/software_lasso.js new file mode 100644 index 000000000..d6f6b6586 --- /dev/null +++ b/dist/linea/software_lasso.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_lasso = void 0; +var software_lasso = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "ellipse", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "25.5", + "rx": "31", + "ry": "19.5" + }, + "children": [] + }, { + "name": "ellipse", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "21", + "cy": "48", + "rx": "6", + "ry": "4" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M25,51c0,0,2,1,2,4s-2,3-2,3" + }, + "children": [] + }] +}; +exports.software_lasso = software_lasso; \ No newline at end of file diff --git a/dist/linea/software_layers1.js b/dist/linea/software_layers1.js new file mode 100644 index 000000000..c9a6b9eb2 --- /dev/null +++ b/dist/linea/software_layers1.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_layers1 = void 0; +var software_layers1 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "18,32.066 2,39 32,51 62,39 46,32.067 " + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "32,38 62,26 32,13 2,26 " + }, + "children": [] + }] +}; +exports.software_layers1 = software_layers1; \ No newline at end of file diff --git a/dist/linea/software_layers2.js b/dist/linea/software_layers2.js new file mode 100644 index 000000000..a1bf891a8 --- /dev/null +++ b/dist/linea/software_layers2.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_layers2 = void 0; +var software_layers2 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "18,26.066 2,33 32,45 62,33 46,26.067 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "18,39.066 2,46 32,58 62,46 46,39.067 " + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "32,32 62,20 32,7 2,20 " + }, + "children": [] + }] +}; +exports.software_layers2 = software_layers2; \ No newline at end of file diff --git a/dist/linea/software_layout.js b/dist/linea/software_layout.js new file mode 100644 index 000000000..e909e38e6 --- /dev/null +++ b/dist/linea/software_layout.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_layout = void 0; +var software_layout = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "62" + }, + "children": [] + }] +}; +exports.software_layout = software_layout; \ No newline at end of file diff --git a/dist/linea/software_layout_2columns.js b/dist/linea/software_layout_2columns.js new file mode 100644 index 000000000..f573c3d8c --- /dev/null +++ b/dist/linea/software_layout_2columns.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_layout_2columns = void 0; +var software_layout_2columns = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "31", + "height": "62" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "32", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "31", + "height": "62" + }, + "children": [] + }] +}; +exports.software_layout_2columns = software_layout_2columns; \ No newline at end of file diff --git a/dist/linea/software_layout_3columns.js b/dist/linea/software_layout_3columns.js new file mode 100644 index 000000000..e03b3a26d --- /dev/null +++ b/dist/linea/software_layout_3columns.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_layout_3columns = void 0; +var software_layout_3columns = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "20", + "height": "62" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "43", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "20", + "height": "62" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "21", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "22", + "height": "62" + }, + "children": [] + }] +}; +exports.software_layout_3columns = software_layout_3columns; \ No newline at end of file diff --git a/dist/linea/software_layout_4boxes.js b/dist/linea/software_layout_4boxes.js new file mode 100644 index 000000000..79b1224b6 --- /dev/null +++ b/dist/linea/software_layout_4boxes.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_layout_4boxes = void 0; +var software_layout_4boxes = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "32", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "31", + "height": "31" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "32", + "y": "32", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "31", + "height": "31" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "1", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "31", + "height": "31" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "32", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "31", + "height": "31" + }, + "children": [] + }] +}; +exports.software_layout_4boxes = software_layout_4boxes; \ No newline at end of file diff --git a/dist/linea/software_layout_4columns.js b/dist/linea/software_layout_4columns.js new file mode 100644 index 000000000..501586891 --- /dev/null +++ b/dist/linea/software_layout_4columns.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_layout_4columns = void 0; +var software_layout_4columns = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "15", + "height": "62" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "16", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "16", + "height": "62" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "32", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "15", + "height": "62" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "47", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "16", + "height": "62" + }, + "children": [] + }] +}; +exports.software_layout_4columns = software_layout_4columns; \ No newline at end of file diff --git a/dist/linea/software_layout_4lines.js b/dist/linea/software_layout_4lines.js new file mode 100644 index 000000000..a29b53de7 --- /dev/null +++ b/dist/linea/software_layout_4lines.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_layout_4lines = void 0; +var software_layout_4lines = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "15" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "1", + "y": "16", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "16" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "1", + "y": "32", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "15" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "1", + "y": "47", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "16" + }, + "children": [] + }] +}; +exports.software_layout_4lines = software_layout_4lines; \ No newline at end of file diff --git a/dist/linea/software_layout_header.js b/dist/linea/software_layout_header.js new file mode 100644 index 000000000..5dc24be41 --- /dev/null +++ b/dist/linea/software_layout_header.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_layout_header = void 0; +var software_layout_header = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "14" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "1", + "y": "15", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "48" + }, + "children": [] + }] +}; +exports.software_layout_header = software_layout_header; \ No newline at end of file diff --git a/dist/linea/software_layout_header_2columns.js b/dist/linea/software_layout_header_2columns.js new file mode 100644 index 000000000..5add6eeaa --- /dev/null +++ b/dist/linea/software_layout_header_2columns.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_layout_header_2columns = void 0; +var software_layout_header_2columns = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "14" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "1", + "y": "15", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "31", + "height": "48" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "32", + "y": "15", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "31", + "height": "48" + }, + "children": [] + }] +}; +exports.software_layout_header_2columns = software_layout_header_2columns; \ No newline at end of file diff --git a/dist/linea/software_layout_header_3columns.js b/dist/linea/software_layout_header_3columns.js new file mode 100644 index 000000000..afeef9c99 --- /dev/null +++ b/dist/linea/software_layout_header_3columns.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_layout_header_3columns = void 0; +var software_layout_header_3columns = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "14" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "1", + "y": "15", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "20", + "height": "48" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "43", + "y": "15", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "20", + "height": "48" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "21", + "y": "15", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "22", + "height": "48" + }, + "children": [] + }] +}; +exports.software_layout_header_3columns = software_layout_header_3columns; \ No newline at end of file diff --git a/dist/linea/software_layout_header_4boxes.js b/dist/linea/software_layout_header_4boxes.js new file mode 100644 index 000000000..d1bc4a4f1 --- /dev/null +++ b/dist/linea/software_layout_header_4boxes.js @@ -0,0 +1,76 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_layout_header_4boxes = void 0; +var software_layout_header_4boxes = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "14" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "1", + "y": "39", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "31", + "height": "24" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "32", + "y": "39", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "31", + "height": "24" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "1", + "y": "15", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "31", + "height": "24" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "32", + "y": "15", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "31", + "height": "24" + }, + "children": [] + }] +}; +exports.software_layout_header_4boxes = software_layout_header_4boxes; \ No newline at end of file diff --git a/dist/linea/software_layout_header_4columns.js b/dist/linea/software_layout_header_4columns.js new file mode 100644 index 000000000..8306ea086 --- /dev/null +++ b/dist/linea/software_layout_header_4columns.js @@ -0,0 +1,76 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_layout_header_4columns = void 0; +var software_layout_header_4columns = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "14" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "1", + "y": "15", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "15", + "height": "48" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "16", + "y": "15", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "16", + "height": "48" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "32", + "y": "15", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "15", + "height": "48" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "47", + "y": "15", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "16", + "height": "48" + }, + "children": [] + }] +}; +exports.software_layout_header_4columns = software_layout_header_4columns; \ No newline at end of file diff --git a/dist/linea/software_layout_header_complex.js b/dist/linea/software_layout_header_complex.js new file mode 100644 index 000000000..ba5368651 --- /dev/null +++ b/dist/linea/software_layout_header_complex.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_layout_header_complex = void 0; +var software_layout_header_complex = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "14" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "1", + "y": "15", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "48" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "15", + "x2": "22", + "y2": "63" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "38", + "x2": "63", + "y2": "38" + }, + "children": [] + }] +}; +exports.software_layout_header_complex = software_layout_header_complex; \ No newline at end of file diff --git a/dist/linea/software_layout_header_complex2.js b/dist/linea/software_layout_header_complex2.js new file mode 100644 index 000000000..4d5bf8556 --- /dev/null +++ b/dist/linea/software_layout_header_complex2.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_layout_header_complex2 = void 0; +var software_layout_header_complex2 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "14" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "1", + "y": "15", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "48" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "42", + "y1": "15", + "x2": "42", + "y2": "63" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "1", + "y1": "38", + "x2": "42", + "y2": "38" + }, + "children": [] + }] +}; +exports.software_layout_header_complex2 = software_layout_header_complex2; \ No newline at end of file diff --git a/dist/linea/software_layout_header_complex3.js b/dist/linea/software_layout_header_complex3.js new file mode 100644 index 000000000..4d399d1a7 --- /dev/null +++ b/dist/linea/software_layout_header_complex3.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_layout_header_complex3 = void 0; +var software_layout_header_complex3 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "14" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "1", + "y": "15", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "31", + "height": "48" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "32", + "y": "15", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "15", + "height": "48" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "47", + "y": "15", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "16", + "height": "48" + }, + "children": [] + }] +}; +exports.software_layout_header_complex3 = software_layout_header_complex3; \ No newline at end of file diff --git a/dist/linea/software_layout_header_complex4.js b/dist/linea/software_layout_header_complex4.js new file mode 100644 index 000000000..490d27f9e --- /dev/null +++ b/dist/linea/software_layout_header_complex4.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_layout_header_complex4 = void 0; +var software_layout_header_complex4 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "14" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "1", + "y": "15", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "31", + "height": "48" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "32", + "y": "15", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "15", + "height": "48" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "47", + "y": "15", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "16", + "height": "48" + }, + "children": [] + }] +}; +exports.software_layout_header_complex4 = software_layout_header_complex4; \ No newline at end of file diff --git a/dist/linea/software_layout_header_sideleft.js b/dist/linea/software_layout_header_sideleft.js new file mode 100644 index 000000000..b0e38cd42 --- /dev/null +++ b/dist/linea/software_layout_header_sideleft.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_layout_header_sideleft = void 0; +var software_layout_header_sideleft = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "14" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "1", + "y": "15", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "48" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "15", + "x2": "22", + "y2": "63" + }, + "children": [] + }] +}; +exports.software_layout_header_sideleft = software_layout_header_sideleft; \ No newline at end of file diff --git a/dist/linea/software_layout_header_sideright.js b/dist/linea/software_layout_header_sideright.js new file mode 100644 index 000000000..81f46b47f --- /dev/null +++ b/dist/linea/software_layout_header_sideright.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_layout_header_sideright = void 0; +var software_layout_header_sideright = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "14" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "1", + "y": "15", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "48" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "42", + "y1": "15", + "x2": "42", + "y2": "63" + }, + "children": [] + }] +}; +exports.software_layout_header_sideright = software_layout_header_sideright; \ No newline at end of file diff --git a/dist/linea/software_layout_sidebar_left.js b/dist/linea/software_layout_sidebar_left.js new file mode 100644 index 000000000..3b96ff9f9 --- /dev/null +++ b/dist/linea/software_layout_sidebar_left.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_layout_sidebar_left = void 0; +var software_layout_sidebar_left = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "20", + "height": "62" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "21", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "42", + "height": "62" + }, + "children": [] + }] +}; +exports.software_layout_sidebar_left = software_layout_sidebar_left; \ No newline at end of file diff --git a/dist/linea/software_layout_sidebar_right.js b/dist/linea/software_layout_sidebar_right.js new file mode 100644 index 000000000..1888bf8a7 --- /dev/null +++ b/dist/linea/software_layout_sidebar_right.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_layout_sidebar_right = void 0; +var software_layout_sidebar_right = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "43", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "20", + "height": "62" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "1", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "42", + "height": "62" + }, + "children": [] + }] +}; +exports.software_layout_sidebar_right = software_layout_sidebar_right; \ No newline at end of file diff --git a/dist/linea/software_magnete.js b/dist/linea/software_magnete.js new file mode 100644 index 000000000..22eda8b68 --- /dev/null +++ b/dist/linea/software_magnete.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_magnete = void 0; +var software_magnete = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M24,42c0,4.418,3.582,8,8,8s8-3.582,8-8V1h13v41\r\n\tc0,11.598-9.402,21-21,21s-21-9.402-21-21V1h13V42z" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "11", + "y1": "10", + "x2": "24", + "y2": "10" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "40", + "y1": "10", + "x2": "53", + "y2": "10" + }, + "children": [] + }] +}; +exports.software_magnete = software_magnete; \ No newline at end of file diff --git a/dist/linea/software_pages.js b/dist/linea/software_pages.js new file mode 100644 index 000000000..02a4da473 --- /dev/null +++ b/dist/linea/software_pages.js @@ -0,0 +1,112 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_pages = void 0; +var software_pages = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11,11 32,11 32,53 1,53 1,21 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "11,11 32,11 32,53 1,53 1,21 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,21 11,21 11,11 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,21 11,21 11,11 \t" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "53,11 32,11 32,53 63,53 63,21 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "53,11 32,11 32,53 63,53 63,21 \t" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "63,21 53,21 53,11 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "63,21 53,21 53,11 \t" + }, + "children": [] + }] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "6", + "x2": "32", + "y2": "58" + }, + "children": [] + }] +}; +exports.software_pages = software_pages; \ No newline at end of file diff --git a/dist/linea/software_paintbrush.js b/dist/linea/software_paintbrush.js new file mode 100644 index 000000000..5a0ed5730 --- /dev/null +++ b/dist/linea/software_paintbrush.js @@ -0,0 +1,44 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_paintbrush = void 0; +var software_paintbrush = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "30,42 26,46 18,38 22,34 62,1 63,2 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "34", + "x2": "30", + "y2": "42" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M26,46c0,0-8,17-25,17c0,0,2.752-16.314,9-21\r\n\tc4-3,8-4,8-4" + }, + "children": [] + }] +}; +exports.software_paintbrush = software_paintbrush; \ No newline at end of file diff --git a/dist/linea/software_paintbucket.js b/dist/linea/software_paintbucket.js new file mode 100644 index 000000000..b089fd3b0 --- /dev/null +++ b/dist/linea/software_paintbucket.js @@ -0,0 +1,33 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_paintbucket = void 0; +var software_paintbucket = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "3,38 28,63 54,37 \r\n\t61,36 33,8 " + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "d": "M32,27V6\r\n\tc0-2.762-2.238-5-5-5s-5,2.238-5,5v13" + }, + "children": [] + }] +}; +exports.software_paintbucket = software_paintbucket; \ No newline at end of file diff --git a/dist/linea/software_paintroller.js b/dist/linea/software_paintroller.js new file mode 100644 index 000000000..3be8a0441 --- /dev/null +++ b/dist/linea/software_paintroller.js @@ -0,0 +1,60 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_paintroller = void 0; +var software_paintroller = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "7", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "48", + "height": "17" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "2", + "y1": "9", + "x2": "7", + "y2": "9" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "55,9 61,9 61,24 32,24 32,41 " + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "28", + "y": "42", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "8", + "height": "21" + }, + "children": [] + }] +}; +exports.software_paintroller = software_paintroller; \ No newline at end of file diff --git a/dist/linea/software_paragraph.js b/dist/linea/software_paragraph.js new file mode 100644 index 000000000..486bfeeb5 --- /dev/null +++ b/dist/linea/software_paragraph.js @@ -0,0 +1,44 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_paragraph = void 0; +var software_paragraph = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "51,64 51,1 41,1 41,64 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "29", + "y1": "33", + "x2": "41", + "y2": "33" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M29,33c0,0-16,0-16-16S29,1,29,1h12" + }, + "children": [] + }] +}; +exports.software_paragraph = software_paragraph; \ No newline at end of file diff --git a/dist/linea/software_paragraph_align_left.js b/dist/linea/software_paragraph_align_left.js new file mode 100644 index 000000000..9e724badf --- /dev/null +++ b/dist/linea/software_paragraph_align_left.js @@ -0,0 +1,89 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_paragraph_align_left = void 0; +var software_paragraph_align_left = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "0", + "y1": "7", + "x2": "64", + "y2": "7" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "0", + "y1": "17", + "x2": "46", + "y2": "17" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "0", + "y1": "27", + "x2": "64", + "y2": "27" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "0", + "y1": "37", + "x2": "50", + "y2": "37" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "0", + "y1": "47", + "x2": "64", + "y2": "47" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "0", + "y1": "57", + "x2": "54", + "y2": "57" + }, + "children": [] + }] +}; +exports.software_paragraph_align_left = software_paragraph_align_left; \ No newline at end of file diff --git a/dist/linea/software_paragraph_align_right.js b/dist/linea/software_paragraph_align_right.js new file mode 100644 index 000000000..668741b25 --- /dev/null +++ b/dist/linea/software_paragraph_align_right.js @@ -0,0 +1,89 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_paragraph_align_right = void 0; +var software_paragraph_align_right = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "64", + "y1": "7", + "x2": "0", + "y2": "7" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "64", + "y1": "17", + "x2": "18", + "y2": "17" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "64", + "y1": "27", + "x2": "0", + "y2": "27" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "64", + "y1": "37", + "x2": "14", + "y2": "37" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "64", + "y1": "47", + "x2": "0", + "y2": "47" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "64", + "y1": "57", + "x2": "10", + "y2": "57" + }, + "children": [] + }] +}; +exports.software_paragraph_align_right = software_paragraph_align_right; \ No newline at end of file diff --git a/dist/linea/software_paragraph_center.js b/dist/linea/software_paragraph_center.js new file mode 100644 index 000000000..6e2abf810 --- /dev/null +++ b/dist/linea/software_paragraph_center.js @@ -0,0 +1,89 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_paragraph_center = void 0; +var software_paragraph_center = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "0", + "y1": "7", + "x2": "64", + "y2": "7" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "9", + "y1": "17", + "x2": "55", + "y2": "17" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "0", + "y1": "27", + "x2": "64", + "y2": "27" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "7", + "y1": "37", + "x2": "57", + "y2": "37" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "0", + "y1": "47", + "x2": "64", + "y2": "47" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "5", + "y1": "57", + "x2": "59", + "y2": "57" + }, + "children": [] + }] +}; +exports.software_paragraph_center = software_paragraph_center; \ No newline at end of file diff --git a/dist/linea/software_paragraph_justify_all.js b/dist/linea/software_paragraph_justify_all.js new file mode 100644 index 000000000..a7396370c --- /dev/null +++ b/dist/linea/software_paragraph_justify_all.js @@ -0,0 +1,89 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_paragraph_justify_all = void 0; +var software_paragraph_justify_all = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "64", + "y1": "7", + "x2": "0", + "y2": "7" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "64", + "y1": "17", + "x2": "0", + "y2": "17" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "64", + "y1": "27", + "x2": "0", + "y2": "27" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "64", + "y1": "37", + "x2": "0", + "y2": "37" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "64", + "y1": "47", + "x2": "0", + "y2": "47" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "64", + "y1": "57", + "x2": "0", + "y2": "57" + }, + "children": [] + }] +}; +exports.software_paragraph_justify_all = software_paragraph_justify_all; \ No newline at end of file diff --git a/dist/linea/software_paragraph_justify_center.js b/dist/linea/software_paragraph_justify_center.js new file mode 100644 index 000000000..8d99fc046 --- /dev/null +++ b/dist/linea/software_paragraph_justify_center.js @@ -0,0 +1,89 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_paragraph_justify_center = void 0; +var software_paragraph_justify_center = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "64", + "y1": "7", + "x2": "0", + "y2": "7" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "64", + "y1": "17", + "x2": "0", + "y2": "17" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "64", + "y1": "27", + "x2": "0", + "y2": "27" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "64", + "y1": "37", + "x2": "0", + "y2": "37" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "64", + "y1": "47", + "x2": "0", + "y2": "47" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "54", + "y1": "57", + "x2": "10", + "y2": "57" + }, + "children": [] + }] +}; +exports.software_paragraph_justify_center = software_paragraph_justify_center; \ No newline at end of file diff --git a/dist/linea/software_paragraph_justify_left.js b/dist/linea/software_paragraph_justify_left.js new file mode 100644 index 000000000..515a60247 --- /dev/null +++ b/dist/linea/software_paragraph_justify_left.js @@ -0,0 +1,89 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_paragraph_justify_left = void 0; +var software_paragraph_justify_left = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "0", + "y1": "7", + "x2": "64", + "y2": "7" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "0", + "y1": "17", + "x2": "64", + "y2": "17" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "0", + "y1": "27", + "x2": "64", + "y2": "27" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "0", + "y1": "37", + "x2": "64", + "y2": "37" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "0", + "y1": "47", + "x2": "64", + "y2": "47" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "0", + "y1": "57", + "x2": "44", + "y2": "57" + }, + "children": [] + }] +}; +exports.software_paragraph_justify_left = software_paragraph_justify_left; \ No newline at end of file diff --git a/dist/linea/software_paragraph_justify_right.js b/dist/linea/software_paragraph_justify_right.js new file mode 100644 index 000000000..e2115b213 --- /dev/null +++ b/dist/linea/software_paragraph_justify_right.js @@ -0,0 +1,89 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_paragraph_justify_right = void 0; +var software_paragraph_justify_right = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "64", + "y1": "7", + "x2": "0", + "y2": "7" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "64", + "y1": "17", + "x2": "0", + "y2": "17" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "64", + "y1": "27", + "x2": "0", + "y2": "27" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "64", + "y1": "37", + "x2": "0", + "y2": "37" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "64", + "y1": "47", + "x2": "0", + "y2": "47" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "64", + "y1": "57", + "x2": "20", + "y2": "57" + }, + "children": [] + }] +}; +exports.software_paragraph_justify_right = software_paragraph_justify_right; \ No newline at end of file diff --git a/dist/linea/software_paragraph_space_after.js b/dist/linea/software_paragraph_space_after.js new file mode 100644 index 000000000..9584a76e6 --- /dev/null +++ b/dist/linea/software_paragraph_space_after.js @@ -0,0 +1,327 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_paragraph_space_after = void 0; +var software_paragraph_space_after = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "6", + "x2": "64", + "y2": "6" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "16", + "x2": "56", + "y2": "16" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "26", + "x2": "64", + "y2": "26" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "36", + "x2": "58", + "y2": "36" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "59,48 59,46 57,46 \t\t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "59,48 59,46 57,46 \t\t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "55", + "y1": "46", + "x2": "26", + "y2": "46" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "55", + "y1": "46", + "x2": "26", + "y2": "46" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "25,46 23,46 23,48 \t\t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "25,46 23,46 23,48 \t\t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "3,2", + "x1": "23", + "y1": "50", + "x2": "23", + "y2": "53" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "3,2", + "x1": "23", + "y1": "50", + "x2": "23", + "y2": "53" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,54 23,56 25,56 \t\t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,54 23,56 25,56 \t\t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "27", + "y1": "56", + "x2": "56", + "y2": "56" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "27", + "y1": "56", + "x2": "56", + "y2": "56" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "57,56 59,56 59,54 \t\t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "57,56 59,56 59,54 \t\t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "3,2", + "x1": "59", + "y1": "53", + "x2": "59", + "y2": "49" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "3,2", + "x1": "59", + "y1": "53", + "x2": "59", + "y2": "49" + }, + "children": [] + }] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "10,58 17,51 \r\n\t\t10,44 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "10,58 17,51 \r\n\t\t10,44 \t" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "17", + "y1": "51", + "x2": "0", + "y2": "51" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "17", + "y1": "51", + "x2": "0", + "y2": "51" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.software_paragraph_space_after = software_paragraph_space_after; \ No newline at end of file diff --git a/dist/linea/software_paragraph_space_before.js b/dist/linea/software_paragraph_space_before.js new file mode 100644 index 000000000..14ca1a84b --- /dev/null +++ b/dist/linea/software_paragraph_space_before.js @@ -0,0 +1,327 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_paragraph_space_before = void 0; +var software_paragraph_space_before = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "29", + "x2": "64", + "y2": "29" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "39", + "x2": "56", + "y2": "39" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "49", + "x2": "64", + "y2": "49" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "59", + "x2": "58", + "y2": "59" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "59,11 59,9 57,9 \t\t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "59,11 59,9 57,9 \t\t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "55", + "y1": "9", + "x2": "26", + "y2": "9" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "55", + "y1": "9", + "x2": "26", + "y2": "9" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "25,9 23,9 23,11 \t\t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "25,9 23,9 23,11 \t\t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "3,2", + "x1": "23", + "y1": "13", + "x2": "23", + "y2": "16" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "3,2", + "x1": "23", + "y1": "13", + "x2": "23", + "y2": "16" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,17 23,19 25,19 \t\t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,17 23,19 25,19 \t\t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "27", + "y1": "19", + "x2": "56", + "y2": "19" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "27", + "y1": "19", + "x2": "56", + "y2": "19" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "57,19 59,19 59,17 \t\t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "57,19 59,19 59,17 \t\t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "3,2", + "x1": "59", + "y1": "16", + "x2": "59", + "y2": "12" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "3,2", + "x1": "59", + "y1": "16", + "x2": "59", + "y2": "12" + }, + "children": [] + }] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "10,21 17,14 \r\n\t\t10,7 \t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "10,21 17,14 \r\n\t\t10,7 \t" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "17", + "y1": "14", + "x2": "0", + "y2": "14" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "17", + "y1": "14", + "x2": "0", + "y2": "14" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.software_paragraph_space_before = software_paragraph_space_before; \ No newline at end of file diff --git a/dist/linea/software_pathfinder_exclude.js b/dist/linea/software_pathfinder_exclude.js new file mode 100644 index 000000000..ef2374065 --- /dev/null +++ b/dist/linea/software_pathfinder_exclude.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_pathfinder_exclude = void 0; +var software_pathfinder_exclude = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "41,23 41,41 23,41 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,41 1,41 1,1 41,1 41,23 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "41,23 63,23 63,63 23,63 23,41 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,41 23,23 41,23 " + }, + "children": [] + }] +}; +exports.software_pathfinder_exclude = software_pathfinder_exclude; \ No newline at end of file diff --git a/dist/linea/software_pathfinder_intersect.js b/dist/linea/software_pathfinder_intersect.js new file mode 100644 index 000000000..4bfb04f82 --- /dev/null +++ b/dist/linea/software_pathfinder_intersect.js @@ -0,0 +1,53 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_pathfinder_intersect = void 0; +var software_pathfinder_intersect = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "41,23 41,41 23,41 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "points": "23,41 1,41 1,1 \r\n\t41,1 41,23 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "points": "41,23 63,23 63,63 \r\n\t23,63 23,41 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,41 23,23 41,23 " + }, + "children": [] + }] +}; +exports.software_pathfinder_intersect = software_pathfinder_intersect; \ No newline at end of file diff --git a/dist/linea/software_pathfinder_subtract.js b/dist/linea/software_pathfinder_subtract.js new file mode 100644 index 000000000..827c2b514 --- /dev/null +++ b/dist/linea/software_pathfinder_subtract.js @@ -0,0 +1,267 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_pathfinder_subtract = void 0; +var software_pathfinder_subtract = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,41 1,41 1,1 41,1 41,23 " + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "41", + "y1": "23", + "x2": "43", + "y2": "23" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "41", + "y1": "23", + "x2": "43", + "y2": "23" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "45", + "y1": "23", + "x2": "60", + "y2": "23" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "45", + "y1": "23", + "x2": "60", + "y2": "23" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "61,23 63,23 63,25 \t\t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "61,23 63,23 63,25 \t\t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "63", + "y1": "27", + "x2": "63", + "y2": "60" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "63", + "y1": "27", + "x2": "63", + "y2": "60" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "63,61 63,63 61,63 \t\t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "63,61 63,63 61,63 \t\t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "59", + "y1": "63", + "x2": "26", + "y2": "63" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "59", + "y1": "63", + "x2": "26", + "y2": "63" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "25,63 23,63 23,61 \t\t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "25,63 23,63 23,61 \t\t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "23", + "y1": "59", + "x2": "23", + "y2": "44" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "23", + "y1": "59", + "x2": "23", + "y2": "44" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "23", + "y1": "43", + "x2": "23", + "y2": "41" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "23", + "y1": "43", + "x2": "23", + "y2": "41" + }, + "children": [] + }] + }] + }] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,41 23,23 41,23 " + }, + "children": [] + }] +}; +exports.software_pathfinder_subtract = software_pathfinder_subtract; \ No newline at end of file diff --git a/dist/linea/software_pathfinder_unite.js b/dist/linea/software_pathfinder_unite.js new file mode 100644 index 000000000..6cb45c392 --- /dev/null +++ b/dist/linea/software_pathfinder_unite.js @@ -0,0 +1,311 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_pathfinder_unite = void 0; +var software_pathfinder_unite = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "41", + "y1": "23", + "x2": "41", + "y2": "25" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "41", + "y1": "23", + "x2": "41", + "y2": "25" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "41", + "y1": "27", + "x2": "41", + "y2": "38" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "41", + "y1": "27", + "x2": "41", + "y2": "38" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "41,39 41,41 39,41 \t\t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "41,39 41,41 39,41 \t\t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "37", + "y1": "41", + "x2": "26", + "y2": "41" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "37", + "y1": "41", + "x2": "26", + "y2": "41" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "25", + "y1": "41", + "x2": "23", + "y2": "41" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "25", + "y1": "41", + "x2": "23", + "y2": "41" + }, + "children": [] + }] + }] + }] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,41 1,41 1,1 41,1 41,23 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "41,23 63,23 63,63 23,63 23,41 " + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "23", + "y1": "41", + "x2": "23", + "y2": "39" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "23", + "y1": "41", + "x2": "23", + "y2": "39" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "23", + "y1": "37", + "x2": "23", + "y2": "26" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "23", + "y1": "37", + "x2": "23", + "y2": "26" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,25 23,23 25,23 \t\t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "23,25 23,23 25,23 \t\t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "27", + "y1": "23", + "x2": "38", + "y2": "23" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "27", + "y1": "23", + "x2": "38", + "y2": "23" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "39", + "y1": "23", + "x2": "41", + "y2": "23" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "39", + "y1": "23", + "x2": "41", + "y2": "23" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.software_pathfinder_unite = software_pathfinder_unite; \ No newline at end of file diff --git a/dist/linea/software_pen.js b/dist/linea/software_pen.js new file mode 100644 index 000000000..565d3c3bb --- /dev/null +++ b/dist/linea/software_pen.js @@ -0,0 +1,72 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_pen = void 0; +var software_pen = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "23", + "y": "57", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "18", + "height": "6" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "19", + "y": "47", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "26", + "height": "10" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "41,47 41,43 48,30 32,1 16,30 23,43 23,47 \r\n\t" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "28.875", + "r": "4" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "1", + "x2": "32", + "y2": "25" + }, + "children": [] + }] +}; +exports.software_pen = software_pen; \ No newline at end of file diff --git a/dist/linea/software_pen_add.js b/dist/linea/software_pen_add.js new file mode 100644 index 000000000..b8bd9034b --- /dev/null +++ b/dist/linea/software_pen_add.js @@ -0,0 +1,73 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_pen_add = void 0; +var software_pen_add = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "23", + "y": "57", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "18", + "height": "6" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "19", + "y": "47", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "26", + "height": "10" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "41,47 41,43 48,30 32,1 16,30 23,43 23,47 \r\n\t" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "23", + "x2": "32", + "y2": "37" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "39", + "y1": "30", + "x2": "25", + "y2": "30" + }, + "children": [] + }] +}; +exports.software_pen_add = software_pen_add; \ No newline at end of file diff --git a/dist/linea/software_pen_remove.js b/dist/linea/software_pen_remove.js new file mode 100644 index 000000000..6d35a7061 --- /dev/null +++ b/dist/linea/software_pen_remove.js @@ -0,0 +1,60 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_pen_remove = void 0; +var software_pen_remove = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "23", + "y": "57", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "18", + "height": "6" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "19", + "y": "47", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "26", + "height": "10" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "41,47 41,43 48,30 32,1 16,30 23,43 23,47 \r\n\t" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "39", + "y1": "30", + "x2": "25", + "y2": "30" + }, + "children": [] + }] +}; +exports.software_pen_remove = software_pen_remove; \ No newline at end of file diff --git a/dist/linea/software_pencil.js b/dist/linea/software_pencil.js new file mode 100644 index 000000000..1eecc5553 --- /dev/null +++ b/dist/linea/software_pencil.js @@ -0,0 +1,87 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_pencil = void 0; +var software_pencil = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "20", + "y1": "54", + "x2": "10", + "y2": "44" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "20", + "y1": "54", + "x2": "10", + "y2": "44" + }, + "children": [] + }] + }] + }, { + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "10,44 1,62 2,63 20,54 63,11 53,1 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "54", + "y1": "20", + "x2": "44", + "y2": "10" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "58", + "y1": "16", + "x2": "48", + "y2": "6" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "5,54 9,55 10,59 " + }, + "children": [] + }] +}; +exports.software_pencil = software_pencil; \ No newline at end of file diff --git a/dist/linea/software_polygonallasso.js b/dist/linea/software_polygonallasso.js new file mode 100644 index 000000000..73e4c88dc --- /dev/null +++ b/dist/linea/software_polygonallasso.js @@ -0,0 +1,44 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_polygonallasso = void 0; +var software_polygonallasso = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "ellipse", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "21", + "cy": "53", + "rx": "6", + "ry": "4" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M25,56c0,0,2,1,2,4s-2,3-2,3" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "22,49 5,12 40,18 59,1 59,41 26,51 " + }, + "children": [] + }] +}; +exports.software_polygonallasso = software_polygonallasso; \ No newline at end of file diff --git a/dist/linea/software_reflect_horizontal.js b/dist/linea/software_reflect_horizontal.js new file mode 100644 index 000000000..bb192c795 --- /dev/null +++ b/dist/linea/software_reflect_horizontal.js @@ -0,0 +1,290 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_reflect_horizontal = void 0; +var software_reflect_horizontal = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,17 1,57 21,37 " + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "61.586,55.586 63,57 63,55 \t\t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "61.586,55.586 63,57 63,55 \t\t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "63", + "y1": "53", + "x2": "63", + "y2": "20" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "63", + "y1": "53", + "x2": "63", + "y2": "20" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "63,19 63,17 61.586,18.414 \t\t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "63,19 63,17 61.586,18.414 \t\t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "3.736,1.868", + "x1": "60.265", + "y1": "19.735", + "x2": "45.075", + "y2": "34.925" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "3.736,1.868", + "x1": "60.265", + "y1": "19.735", + "x2": "45.075", + "y2": "34.925" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "44.414,35.586 43,37 44.414,38.414 \t\t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "44.414,35.586 43,37 44.414,38.414 \t\t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "3.736,1.868", + "x1": "45.735", + "y1": "39.735", + "x2": "60.925", + "y2": "54.925" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "3.736,1.868", + "x1": "45.735", + "y1": "39.735", + "x2": "60.925", + "y2": "54.925" + }, + "children": [] + }] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "61", + "x2": "32", + "y2": "59" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "61", + "x2": "32", + "y2": "59" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "32", + "y1": "57", + "x2": "32", + "y2": "16" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "32", + "y1": "57", + "x2": "32", + "y2": "16" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "15", + "x2": "32", + "y2": "13" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "15", + "x2": "32", + "y2": "13" + }, + "children": [] + }] + }] + }] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "46,13 57,13 57,2 \r\n\t" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M57,13C51.378,5.132,42.408,1,32,1\r\n\tC21.591,1,12.622,5.13,7,13" + }, + "children": [] + }] +}; +exports.software_reflect_horizontal = software_reflect_horizontal; \ No newline at end of file diff --git a/dist/linea/software_reflect_vertical.js b/dist/linea/software_reflect_vertical.js new file mode 100644 index 000000000..dd7e64a0c --- /dev/null +++ b/dist/linea/software_reflect_vertical.js @@ -0,0 +1,290 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_reflect_vertical = void 0; +var software_reflect_vertical = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "46,1 6,1 26,21 " + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "7.414,61.586 6,63 8,63 \t\t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "7.414,61.586 6,63 8,63 \t\t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "10", + "y1": "63", + "x2": "43", + "y2": "63" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "10", + "y1": "63", + "x2": "43", + "y2": "63" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "44,63 46,63 44.586,61.586 \t\t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "44,63 46,63 44.586,61.586 \t\t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "3.736,1.868", + "x1": "43.265", + "y1": "60.265", + "x2": "28.075", + "y2": "45.075" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "3.736,1.868", + "x1": "43.265", + "y1": "60.265", + "x2": "28.075", + "y2": "45.075" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "27.414,44.414 26,43 24.586,44.414 \t\t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "27.414,44.414 26,43 24.586,44.414 \t\t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "3.736,1.868", + "x1": "23.265", + "y1": "45.735", + "x2": "8.075", + "y2": "60.925" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "3.736,1.868", + "x1": "23.265", + "y1": "45.735", + "x2": "8.075", + "y2": "60.925" + }, + "children": [] + }] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "2", + "y1": "32", + "x2": "4", + "y2": "32" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "2", + "y1": "32", + "x2": "4", + "y2": "32" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "6", + "y1": "32", + "x2": "47", + "y2": "32" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "6", + "y1": "32", + "x2": "47", + "y2": "32" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "48", + "y1": "32", + "x2": "50", + "y2": "32" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "48", + "y1": "32", + "x2": "50", + "y2": "32" + }, + "children": [] + }] + }] + }] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "51,46 51,57 \r\n\t62,57 " + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M51,57c7.868-5.622,12-14.592,12-25\r\n\tc0-10.409-4.13-19.378-12-25" + }, + "children": [] + }] +}; +exports.software_reflect_vertical = software_reflect_vertical; \ No newline at end of file diff --git a/dist/linea/software_remove_vectorpoint.js b/dist/linea/software_remove_vectorpoint.js new file mode 100644 index 000000000..c82955f72 --- /dev/null +++ b/dist/linea/software_remove_vectorpoint.js @@ -0,0 +1,280 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_remove_vectorpoint = void 0; +var software_remove_vectorpoint = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "53", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "10", + "height": "10" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "53", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "10", + "height": "10" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "44,22 44,20 42,20 \t\t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "44,22 44,20 42,20 \t\t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "40", + "y1": "20", + "x2": "23", + "y2": "20" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "40", + "y1": "20", + "x2": "23", + "y2": "20" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "22,20 20,20 20,22 \t\t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "22,20 20,20 20,22 \t\t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "20", + "y1": "24", + "x2": "20", + "y2": "41" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "20", + "y1": "24", + "x2": "20", + "y2": "41" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "20,42 20,44 22,44 \t\t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "20,42 20,44 22,44 \t\t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "24", + "y1": "44", + "x2": "41", + "y2": "44" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "24", + "y1": "44", + "x2": "41", + "y2": "44" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "42,44 44,44 44,42 \t\t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "42,44 44,44 44,42 \t\t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "44", + "y1": "40", + "x2": "44", + "y2": "23" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "44", + "y1": "40", + "x2": "44", + "y2": "23" + }, + "children": [] + }] + }] + }] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "11", + "y1": "53", + "x2": "20", + "y2": "44" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "44", + "y1": "20", + "x2": "53", + "y2": "11" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "39", + "y1": "32", + "x2": "25", + "y2": "32" + }, + "children": [] + }] +}; +exports.software_remove_vectorpoint = software_remove_vectorpoint; \ No newline at end of file diff --git a/dist/linea/software_scale_expand.js b/dist/linea/software_scale_expand.js new file mode 100644 index 000000000..213b722c5 --- /dev/null +++ b/dist/linea/software_scale_expand.js @@ -0,0 +1,59 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_scale_expand = void 0; +var software_scale_expand = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "points": "1,28 1,1 63,1 \r\n\t63,63 36,63 " + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "1", + "y": "33", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "30", + "height": "30" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "57,18 57,7 46,7 \r\n\t" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "57", + "y1": "7", + "x2": "41", + "y2": "23" + }, + "children": [] + }] +}; +exports.software_scale_expand = software_scale_expand; \ No newline at end of file diff --git a/dist/linea/software_scale_reduce.js b/dist/linea/software_scale_reduce.js new file mode 100644 index 000000000..5fd45f95b --- /dev/null +++ b/dist/linea/software_scale_reduce.js @@ -0,0 +1,249 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_scale_reduce = void 0; +var software_scale_reduce = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,30 1,1 63,1 63,63 34,63 " + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "31,35 31,33 29,33 \t\t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "31,35 31,33 29,33 \t\t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "27", + "y1": "33", + "x2": "4", + "y2": "33" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "27", + "y1": "33", + "x2": "4", + "y2": "33" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "3,33 1,33 1,35 \t\t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "3,33 1,33 1,35 \t\t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "1", + "y1": "37", + "x2": "1", + "y2": "60" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "1", + "y1": "37", + "x2": "1", + "y2": "60" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,61 1,63 3,63 \t\t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,61 1,63 3,63 \t\t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "5", + "y1": "63", + "x2": "28", + "y2": "63" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "5", + "y1": "63", + "x2": "28", + "y2": "63" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "29,63 31,63 31,61 \t\t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "29,63 31,63 31,61 \t\t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "31", + "y1": "59", + "x2": "31", + "y2": "36" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "31", + "y1": "59", + "x2": "31", + "y2": "36" + }, + "children": [] + }] + }] + }] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "41,12 41,23 \r\n\t52,23 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "41", + "y1": "23", + "x2": "57", + "y2": "7" + }, + "children": [] + }] +}; +exports.software_scale_reduce = software_scale_reduce; \ No newline at end of file diff --git a/dist/linea/software_selection_oval.js b/dist/linea/software_selection_oval.js new file mode 100644 index 000000000..f263b831b --- /dev/null +++ b/dist/linea/software_selection_oval.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_selection_oval = void 0; +var software_selection_oval = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "ellipse", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4.0012,2.0006", + "cx": "32", + "cy": "32", + "rx": "31", + "ry": "20" + }, + "children": [{ + "name": "ellipse", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4.0012,2.0006", + "cx": "32", + "cy": "32", + "rx": "31", + "ry": "20" + }, + "children": [] + }] + }] + }] +}; +exports.software_selection_oval = software_selection_oval; \ No newline at end of file diff --git a/dist/linea/software_selection_polygon.js b/dist/linea/software_selection_polygon.js new file mode 100644 index 000000000..8468e0bfc --- /dev/null +++ b/dist/linea/software_selection_polygon.js @@ -0,0 +1,311 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_selection_polygon = void 0; +var software_selection_polygon = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "19,59 16.675,59 15.851,57.261 \t\t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "19,59 16.675,59 15.851,57.261 \t\t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4.1609,2.0805", + "x1": "14.661", + "y1": "55.451", + "x2": "2.851", + "y2": "34.644" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4.1609,2.0805", + "x1": "14.661", + "y1": "55.451", + "x2": "2.851", + "y2": "34.644" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "2.338,33.739 1.351,32 2.338,30.261 \t\t\r\n\t\t\t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "2.338,33.739 1.351,32 2.338,30.261 \t\t\r\n\t\t\t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4.1609,2.0805", + "x1": "3.365", + "y1": "28.451", + "x2": "15.175", + "y2": "7.644" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4.1609,2.0805", + "x1": "3.365", + "y1": "28.451", + "x2": "15.175", + "y2": "7.644" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "15.851,6.739 16.675,5 19,5 \t\t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "15.851,6.739 16.675,5 19,5 \t\t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "21", + "y1": "5", + "x2": "44", + "y2": "5" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "21", + "y1": "5", + "x2": "44", + "y2": "5" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "45,5 47.325,5 48.149,6.739 \t\t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "45,5 47.325,5 48.149,6.739 \t\t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4.1609,2.0805", + "x1": "49.339", + "y1": "8.549", + "x2": "61.149", + "y2": "29.356" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4.1609,2.0805", + "x1": "49.339", + "y1": "8.549", + "x2": "61.149", + "y2": "29.356" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "61.662,30.261 62.649,32 61.662,33.739 \r\n\t\t\t\t\t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "61.662,30.261 62.649,32 61.662,33.739 \r\n\t\t\t\t\t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4.1609,2.0805", + "x1": "60.635", + "y1": "35.549", + "x2": "48.825", + "y2": "56.356" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4.1609,2.0805", + "x1": "60.635", + "y1": "35.549", + "x2": "48.825", + "y2": "56.356" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "48.149,57.261 47.325,59 45,59 \t\t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "48.149,57.261 47.325,59 45,59 \t\t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "43", + "y1": "59", + "x2": "20", + "y2": "59" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "43", + "y1": "59", + "x2": "20", + "y2": "59" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.software_selection_polygon = software_selection_polygon; \ No newline at end of file diff --git a/dist/linea/software_selection_rectangle.js b/dist/linea/software_selection_rectangle.js new file mode 100644 index 000000000..809780126 --- /dev/null +++ b/dist/linea/software_selection_rectangle.js @@ -0,0 +1,215 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_selection_rectangle = void 0; +var software_selection_rectangle = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "63,50 63,52 61,52 \t\t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "63,50 63,52 61,52 \t\t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "59", + "y1": "52", + "x2": "4", + "y2": "52" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "59", + "y1": "52", + "x2": "4", + "y2": "52" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "3,52 1,52 1,50 \t\t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "3,52 1,52 1,50 \t\t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "1", + "y1": "48", + "x2": "1", + "y2": "15" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "1", + "y1": "48", + "x2": "1", + "y2": "15" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,14 1,12 3,12 \t\t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,14 1,12 3,12 \t\t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "5", + "y1": "12", + "x2": "60", + "y2": "12" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "5", + "y1": "12", + "x2": "60", + "y2": "12" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "61,12 63,12 63,14 \t\t" + }, + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "61,12 63,12 63,14 \t\t" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "63", + "y1": "16", + "x2": "63", + "y2": "49" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "4,2", + "x1": "63", + "y1": "16", + "x2": "63", + "y2": "49" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.software_selection_rectangle = software_selection_rectangle; \ No newline at end of file diff --git a/dist/linea/software_selection_roundedrectangle.js b/dist/linea/software_selection_roundedrectangle.js new file mode 100644 index 000000000..b89b0bb2e --- /dev/null +++ b/dist/linea/software_selection_roundedrectangle.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_selection_roundedrectangle = void 0; +var software_selection_roundedrectangle = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "3.9436,1.9718", + "d": "M63,40\r\n\t\tc0,6.627-5.373,12-12,12H13C6.373,52,1,46.627,1,40V24c0-6.627,5.373-12,12-12h38c6.627,0,12,5.373,12,12V40z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "stroke-dasharray": "3.9436,1.9718", + "d": "M63,40\r\n\t\tc0,6.627-5.373,12-12,12H13C6.373,52,1,46.627,1,40V24c0-6.627,5.373-12,12-12h38c6.627,0,12,5.373,12,12V40z" + }, + "children": [] + }] + }] + }] +}; +exports.software_selection_roundedrectangle = software_selection_roundedrectangle; \ No newline at end of file diff --git a/dist/linea/software_shape_oval.js b/dist/linea/software_shape_oval.js new file mode 100644 index 000000000..e902c3066 --- /dev/null +++ b/dist/linea/software_shape_oval.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_shape_oval = void 0; +var software_shape_oval = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "ellipse", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "rx": "31", + "ry": "20" + }, + "children": [] + }] +}; +exports.software_shape_oval = software_shape_oval; \ No newline at end of file diff --git a/dist/linea/software_shape_polygon.js b/dist/linea/software_shape_polygon.js new file mode 100644 index 000000000..77e08b9df --- /dev/null +++ b/dist/linea/software_shape_polygon.js @@ -0,0 +1,21 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_shape_polygon = void 0; +var software_shape_polygon = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "16.675,59 1.351,32 16.675,5 47.325,5 \r\n\t62.649,32 47.325,59 " + }, + "children": [] + }] +}; +exports.software_shape_polygon = software_shape_polygon; \ No newline at end of file diff --git a/dist/linea/software_shape_rectangle.js b/dist/linea/software_shape_rectangle.js new file mode 100644 index 000000000..08ae9765e --- /dev/null +++ b/dist/linea/software_shape_rectangle.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_shape_rectangle = void 0; +var software_shape_rectangle = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "12", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "62", + "height": "40" + }, + "children": [] + }] +}; +exports.software_shape_rectangle = software_shape_rectangle; \ No newline at end of file diff --git a/dist/linea/software_shape_roundedrectangle.js b/dist/linea/software_shape_roundedrectangle.js new file mode 100644 index 000000000..9daadd3da --- /dev/null +++ b/dist/linea/software_shape_roundedrectangle.js @@ -0,0 +1,21 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_shape_roundedrectangle = void 0; +var software_shape_roundedrectangle = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M63,40c0,6.627-5.373,12-12,12H13\r\n\tC6.373,52,1,46.627,1,40V24c0-6.627,5.373-12,12-12h38c6.627,0,12,5.373,12,12V40z" + }, + "children": [] + }] +}; +exports.software_shape_roundedrectangle = software_shape_roundedrectangle; \ No newline at end of file diff --git a/dist/linea/software_slice.js b/dist/linea/software_slice.js new file mode 100644 index 000000000..24c00d368 --- /dev/null +++ b/dist/linea/software_slice.js @@ -0,0 +1,33 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_slice = void 0; +var software_slice = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "1,59 37,23 44,30 \r\n\t36,45 " + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "40,20 57,3 63,9 \r\n\t47,27 " + }, + "children": [] + }] +}; +exports.software_slice = software_slice; \ No newline at end of file diff --git a/dist/linea/software_transform_bezier.js b/dist/linea/software_transform_bezier.js new file mode 100644 index 000000000..f751572a2 --- /dev/null +++ b/dist/linea/software_transform_bezier.js @@ -0,0 +1,94 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_transform_bezier = void 0; +var software_transform_bezier = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "41", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "10", + "height": "10" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "53", + "y": "41", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "10", + "height": "10" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "27", + "y": "13", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "10", + "height": "10" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "4", + "cy": "18", + "r": "3" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "60", + "cy": "18", + "r": "3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M7,18h20C6,18,6,41,6,41" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M57,18H37c21,0,21,23,21,23" + }, + "children": [] + }] +}; +exports.software_transform_bezier = software_transform_bezier; \ No newline at end of file diff --git a/dist/linea/software_vector_box.js b/dist/linea/software_vector_box.js new file mode 100644 index 000000000..212c56a23 --- /dev/null +++ b/dist/linea/software_vector_box.js @@ -0,0 +1,115 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_vector_box = void 0; +var software_vector_box = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "53", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "10", + "height": "10" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "53", + "y": "53", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "10", + "height": "10" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "1", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "10", + "height": "10" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "53", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "10", + "height": "10" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "6", + "y1": "11", + "x2": "6", + "y2": "53" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "58", + "y1": "11", + "x2": "58", + "y2": "53" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "53", + "y1": "6", + "x2": "11", + "y2": "6" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "53", + "y1": "58", + "x2": "11", + "y2": "58" + }, + "children": [] + }] +}; +exports.software_vector_box = software_vector_box; \ No newline at end of file diff --git a/dist/linea/software_vector_composite.js b/dist/linea/software_vector_composite.js new file mode 100644 index 000000000..2f6745746 --- /dev/null +++ b/dist/linea/software_vector_composite.js @@ -0,0 +1,76 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_vector_composite = void 0; +var software_vector_composite = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "53", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "10", + "height": "10" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "53", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "10", + "height": "10" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "27", + "y": "27", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "10", + "height": "10" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "11", + "y1": "53", + "x2": "27", + "y2": "37" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "37", + "y1": "27", + "x2": "53", + "y2": "11" + }, + "children": [] + }] +}; +exports.software_vector_composite = software_vector_composite; \ No newline at end of file diff --git a/dist/linea/software_vector_line.js b/dist/linea/software_vector_line.js new file mode 100644 index 000000000..3f675620e --- /dev/null +++ b/dist/linea/software_vector_line.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_vector_line = void 0; +var software_vector_line = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "rect", + "attribs": { + "x": "1", + "y": "53", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "10", + "height": "10" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "53", + "y": "1", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "10", + "height": "10" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "11", + "y1": "53", + "x2": "53", + "y2": "11" + }, + "children": [] + }] +}; +exports.software_vector_line = software_vector_line; \ No newline at end of file diff --git a/dist/linea/software_vertical_align_bottom.js b/dist/linea/software_vertical_align_bottom.js new file mode 100644 index 000000000..f9d8ed537 --- /dev/null +++ b/dist/linea/software_vertical_align_bottom.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_vertical_align_bottom = void 0; +var software_vertical_align_bottom = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "64", + "y1": "63", + "x2": "0", + "y2": "63" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "13", + "y": "5", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "16", + "height": "52" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "35", + "y": "17", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "16", + "height": "40" + }, + "children": [] + }] +}; +exports.software_vertical_align_bottom = software_vertical_align_bottom; \ No newline at end of file diff --git a/dist/linea/software_vertical_align_center.js b/dist/linea/software_vertical_align_center.js new file mode 100644 index 000000000..21a420dd6 --- /dev/null +++ b/dist/linea/software_vertical_align_center.js @@ -0,0 +1,76 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_vertical_align_center = void 0; +var software_vertical_align_center = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "13", + "y1": "32", + "x2": "0", + "y2": "32" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "64", + "y1": "32", + "x2": "51", + "y2": "32" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "35", + "y1": "32", + "x2": "29", + "y2": "32" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "13", + "y": "6", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "16", + "height": "52" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "35", + "y": "12", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "16", + "height": "40" + }, + "children": [] + }] +}; +exports.software_vertical_align_center = software_vertical_align_center; \ No newline at end of file diff --git a/dist/linea/software_vertical_align_top.js b/dist/linea/software_vertical_align_top.js new file mode 100644 index 000000000..2582e294b --- /dev/null +++ b/dist/linea/software_vertical_align_top.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_vertical_align_top = void 0; +var software_vertical_align_top = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "0", + "y1": "1", + "x2": "64", + "y2": "1" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "13", + "y": "7", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "16", + "height": "52" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "35", + "y": "7", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "16", + "height": "40" + }, + "children": [] + }] +}; +exports.software_vertical_align_top = software_vertical_align_top; \ No newline at end of file diff --git a/dist/linea/software_vertical_distribute_bottom.js b/dist/linea/software_vertical_distribute_bottom.js new file mode 100644 index 000000000..9b9037944 --- /dev/null +++ b/dist/linea/software_vertical_distribute_bottom.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_vertical_distribute_bottom = void 0; +var software_vertical_distribute_bottom = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "0", + "y1": "29", + "x2": "64", + "y2": "29" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "0", + "y1": "51", + "x2": "64", + "y2": "51" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "12", + "y": "13", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "40", + "height": "16" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "6", + "y": "35", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "52", + "height": "16" + }, + "children": [] + }] +}; +exports.software_vertical_distribute_bottom = software_vertical_distribute_bottom; \ No newline at end of file diff --git a/dist/linea/software_vertical_distribute_center.js b/dist/linea/software_vertical_distribute_center.js new file mode 100644 index 000000000..90a3a156f --- /dev/null +++ b/dist/linea/software_vertical_distribute_center.js @@ -0,0 +1,89 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_vertical_distribute_center = void 0; +var software_vertical_distribute_center = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "0", + "y1": "21", + "x2": "12", + "y2": "21" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "52", + "y1": "21", + "x2": "64", + "y2": "21" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "0", + "y1": "43", + "x2": "6", + "y2": "43" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "58", + "y1": "43", + "x2": "64", + "y2": "43" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "12", + "y": "13", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "40", + "height": "16" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "6", + "y": "35", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "52", + "height": "16" + }, + "children": [] + }] +}; +exports.software_vertical_distribute_center = software_vertical_distribute_center; \ No newline at end of file diff --git a/dist/linea/software_vertical_distribute_top.js b/dist/linea/software_vertical_distribute_top.js new file mode 100644 index 000000000..9ef70e08b --- /dev/null +++ b/dist/linea/software_vertical_distribute_top.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.software_vertical_distribute_top = void 0; +var software_vertical_distribute_top = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "64", + "y1": "35", + "x2": "0", + "y2": "35" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "64", + "y1": "13", + "x2": "0", + "y2": "13" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "6", + "y": "35", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "52", + "height": "16" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "x": "12", + "y": "13", + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "width": "40", + "height": "16" + }, + "children": [] + }] +}; +exports.software_vertical_distribute_top = software_vertical_distribute_top; \ No newline at end of file diff --git a/dist/linea/weather_aquarius.js b/dist/linea/weather_aquarius.js new file mode 100644 index 000000000..20c9699fc --- /dev/null +++ b/dist/linea/weather_aquarius.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_aquarius = void 0; +var weather_aquarius = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "0,28 16,16 20,28 36,16 40,28 55,16 63,28 \r\n\t" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "0,48 16,36 20,48 36,36 40,48 55,36 63,48 \r\n\t" + }, + "children": [] + }] +}; +exports.weather_aquarius = weather_aquarius; \ No newline at end of file diff --git a/dist/linea/weather_aries.js b/dist/linea/weather_aries.js new file mode 100644 index 000000000..8baadf83e --- /dev/null +++ b/dist/linea/weather_aries.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_aries = void 0; +var weather_aries = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M6,25c0,0-5-5-5-11S3,1,13,1c13.25,0,19,22,19,63" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M58,25c0,0,5-5,5-11S61,1,51,1C37.75,1,32,23,32,64" + }, + "children": [] + }] +}; +exports.weather_aries = weather_aries; \ No newline at end of file diff --git a/dist/linea/weather_cancer.js b/dist/linea/weather_cancer.js new file mode 100644 index 000000000..fc4c7c19e --- /dev/null +++ b/dist/linea/weather_cancer.js @@ -0,0 +1,55 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_cancer = void 0; +var weather_cancer = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "11", + "cy": "27", + "r": "10" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M5,19c0,0,7-6,28-6c15,0,31,10,31,10" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "53", + "cy": "37", + "r": "10" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M59,45c0,0-7,6-28,6C16,51,0,41,0,41" + }, + "children": [] + }] +}; +exports.weather_cancer = weather_cancer; \ No newline at end of file diff --git a/dist/linea/weather_capricorn.js b/dist/linea/weather_capricorn.js new file mode 100644 index 000000000..95e0bdc66 --- /dev/null +++ b/dist/linea/weather_capricorn.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_capricorn = void 0; +var weather_capricorn = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M9,5c0,0,0-4,6-4c5,0,4,10,4,10v29" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M19,11c0,0,0-10,7-10s7,10,7,10v29c0,0-1,14,15,14" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M48,40c-3,0-12,1-12,12c0,1,1,11-12,11" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M48,54c3.866,0,7-3.134,7-7s-3.134-7-7-7" + }, + "children": [] + }] +}; +exports.weather_capricorn = weather_capricorn; \ No newline at end of file diff --git a/dist/linea/weather_cloud.js b/dist/linea/weather_cloud.js new file mode 100644 index 000000000..2472184ae --- /dev/null +++ b/dist/linea/weather_cloud.js @@ -0,0 +1,21 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_cloud = void 0; +var weather_cloud = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M55,50c4.565,0,8-3.435,8-8c0-4.565-3.435-9-8-9\r\n\tc0-11.414-9.586-20-21-20c-10.102,0-19.2,6.423-21,16c0,0-1.165,0-2,0C5.292,29,1,34.292,1,40s4.292,10,10,10H55z" + }, + "children": [] + }] +}; +exports.weather_cloud = weather_cloud; \ No newline at end of file diff --git a/dist/linea/weather_cloud_drop.js b/dist/linea/weather_cloud_drop.js new file mode 100644 index 000000000..b9e84465d --- /dev/null +++ b/dist/linea/weather_cloud_drop.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_cloud_drop = void 0; +var weather_cloud_drop = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M18,40h-7C5.292,40,1,35.708,1,30s4.292-11,10-11\r\n\tc0.835,0,2,0,2,0C14.8,9.423,23.898,3,34,3c11.414,0,21,8.586,21,20c4.565,0,8,4.435,8,9c0,4.565-3.435,8-8,8H45" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M23,42c0,5.034,4.136,8,9,8c4.864,0,8-2.966,8-8\r\n\t\tc0-7-8-17-8-17S23,35,23,42z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M23,42c0,5.034,4.136,8,9,8c4.864,0,8-2.966,8-8\r\n\t\tc0-7-8-17-8-17S23,35,23,42z" + }, + "children": [] + }] + }] + }] +}; +exports.weather_cloud_drop = weather_cloud_drop; \ No newline at end of file diff --git a/dist/linea/weather_cloud_lightning.js b/dist/linea/weather_cloud_lightning.js new file mode 100644 index 000000000..36c0e15fc --- /dev/null +++ b/dist/linea/weather_cloud_lightning.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_cloud_lightning = void 0; +var weather_cloud_lightning = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "37,23 23,42 29,42 \r\n\t27,55 41,36 35,36 " + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M18,40h-7C5.292,40,1,35.708,1,30s4.292-11,10-11\r\n\tc0.835,0,2,0,2,0C14.8,9.423,23.898,3,34,3c11.414,0,21,8.586,21,20c4.565,0,8,4.435,8,9c0,4.565-3.435,8-8,8h-9" + }, + "children": [] + }] +}; +exports.weather_cloud_lightning = weather_cloud_lightning; \ No newline at end of file diff --git a/dist/linea/weather_cloud_snowflake.js b/dist/linea/weather_cloud_snowflake.js new file mode 100644 index 000000000..e7a29eddd --- /dev/null +++ b/dist/linea/weather_cloud_snowflake.js @@ -0,0 +1,205 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_cloud_snowflake = void 0; +var weather_cloud_snowflake = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M18,40h-7C5.292,40,1,35.708,1,30s4.292-11,10-11\r\n\tc0.835,0,2,0,2,0C14.8,9.423,23.898,3,34,3c11.414,0,21,8.586,21,20c4.565,0,8,4.435,8,9c0,4.565-3.435,8-8,8h-9" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "21,37 23,40 21,43 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "43,43 41,40 43,37 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "30", + "y1": "40", + "x2": "23", + "y2": "40" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "41", + "y1": "40", + "x2": "34", + "y2": "40" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "29,51 32,49 35,51 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "35,29 32,31 29,29 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "42", + "x2": "32", + "y2": "49" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "31", + "x2": "32", + "y2": "38" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "26.343,30.101 25.636,33.636 \r\n\t22.101,34.343 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "37.657,49.899 38.364,46.364 \r\n\t41.899,45.657 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "30", + "y1": "38", + "x2": "25.636", + "y2": "33.636" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "38.364", + "y1": "46.364", + "x2": "34", + "y2": "42" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "22.101,45.657 25.636,46.364 \r\n\t26.343,49.899 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "41.899,34.343 38.364,33.636 \r\n\t37.657,30.101 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "30", + "y1": "42", + "x2": "25.636", + "y2": "46.364" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "38.364", + "y1": "33.636", + "x2": "34", + "y2": "38" + }, + "children": [] + }] +}; +exports.weather_cloud_snowflake = weather_cloud_snowflake; \ No newline at end of file diff --git a/dist/linea/weather_downpour_fullmoon.js b/dist/linea/weather_downpour_fullmoon.js new file mode 100644 index 000000000..a11afb0bc --- /dev/null +++ b/dist/linea/weather_downpour_fullmoon.js @@ -0,0 +1,83 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_downpour_fullmoon = void 0; +var weather_downpour_fullmoon = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M7.004,32.959c-1.59-1.017-2.943-2.37-3.961-3.96\r\n\tC1.75,26.979,1,24.577,1,22C1,14.82,6.82,9,14,9c4.604,0,8.646,2.392,10.957,6.001" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "20", + "y1": "48", + "x2": "12", + "y2": "62" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "30", + "y1": "48", + "x2": "22", + "y2": "62" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "40", + "y1": "48", + "x2": "32", + "y2": "62" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "50", + "y1": "48", + "x2": "42", + "y2": "62" + }, + "children": [] + }] +}; +exports.weather_downpour_fullmoon = weather_downpour_fullmoon; \ No newline at end of file diff --git a/dist/linea/weather_downpour_halfmoon.js b/dist/linea/weather_downpour_halfmoon.js new file mode 100644 index 000000000..82e84b885 --- /dev/null +++ b/dist/linea/weather_downpour_halfmoon.js @@ -0,0 +1,83 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_downpour_halfmoon = void 0; +var weather_downpour_halfmoon = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M24.957,15.001C22.646,11.392,18.604,9,14,9\r\n\tc-0.826,0-1.631,0.085-2.414,0.233c0.891,1.396,1.414,3.05,1.414,4.83c0,4.971-4.029,9-9,9c-1.046,0-2.046-0.188-2.98-0.516\r\n\tc0.099,2.368,0.822,4.576,2.023,6.452c1.018,1.59,2.371,2.943,3.961,3.96" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "20", + "y1": "48", + "x2": "12", + "y2": "62" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "30", + "y1": "48", + "x2": "22", + "y2": "62" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "40", + "y1": "48", + "x2": "32", + "y2": "62" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "50", + "y1": "48", + "x2": "42", + "y2": "62" + }, + "children": [] + }] +}; +exports.weather_downpour_halfmoon = weather_downpour_halfmoon; \ No newline at end of file diff --git a/dist/linea/weather_downpour_sun.js b/dist/linea/weather_downpour_sun.js new file mode 100644 index 000000000..23ce76b20 --- /dev/null +++ b/dist/linea/weather_downpour_sun.js @@ -0,0 +1,122 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_downpour_sun = void 0; +var weather_downpour_sun = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M29.999,11.752C27.793,10.028,25.017,9,22,9\r\n\tC14.82,9,9,14.82,9,22c0,2.577,0.707,3.979,2,6" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "6", + "y1": "22", + "x2": "0", + "y2": "22" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "6", + "x2": "22", + "y2": "0" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "10", + "y1": "10", + "x2": "4", + "y2": "4" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "20", + "y1": "48", + "x2": "12", + "y2": "62" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "30", + "y1": "48", + "x2": "22", + "y2": "62" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "40", + "y1": "48", + "x2": "32", + "y2": "62" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "50", + "y1": "48", + "x2": "42", + "y2": "62" + }, + "children": [] + }] +}; +exports.weather_downpour_sun = weather_downpour_sun; \ No newline at end of file diff --git a/dist/linea/weather_drop.js b/dist/linea/weather_drop.js new file mode 100644 index 000000000..89a6f7c4d --- /dev/null +++ b/dist/linea/weather_drop.js @@ -0,0 +1,35 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_drop = void 0; +var weather_drop = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M11,41.265C11.052,53.27,20.401,63,32,63\r\n\t\ts21-9.73,21-21.735C53,25.729,32.035,1,32.035,1S10.931,25.729,11,41.265z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M11,41.265C11.052,53.27,20.401,63,32,63\r\n\t\ts21-9.73,21-21.735C53,25.729,32.035,1,32.035,1S10.931,25.729,11,41.265z" + }, + "children": [] + }] + }] + }] +}; +exports.weather_drop = weather_drop; \ No newline at end of file diff --git a/dist/linea/weather_fog.js b/dist/linea/weather_fog.js new file mode 100644 index 000000000..606994ecc --- /dev/null +++ b/dist/linea/weather_fog.js @@ -0,0 +1,60 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_fog = void 0; +var weather_fog = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M55,40c4.565,0,8-3.435,8-8c0-4.565-3.435-9-8-9\r\n\tc0-11.414-9.586-20-21-20C23.898,3,14.8,9.423,13,19c0,0-1.165,0-2,0C5.292,19,1,24.292,1,30s4.292,10,10,10" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "13", + "y1": "40", + "x2": "53", + "y2": "40" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "13", + "y1": "48", + "x2": "53", + "y2": "48" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "13", + "y1": "56", + "x2": "53", + "y2": "56" + }, + "children": [] + }] +}; +exports.weather_fog = weather_fog; \ No newline at end of file diff --git a/dist/linea/weather_fog_fullmoon.js b/dist/linea/weather_fog_fullmoon.js new file mode 100644 index 000000000..689912eaf --- /dev/null +++ b/dist/linea/weather_fog_fullmoon.js @@ -0,0 +1,70 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_fog_fullmoon = void 0; +var weather_fog_fullmoon = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M7.004,32.959c-1.59-1.017-2.943-2.37-3.961-3.96\r\n\tC1.75,26.979,1,24.577,1,22C1,14.82,6.82,9,14,9c4.604,0,8.646,2.392,10.957,6.001" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "17", + "y1": "45", + "x2": "54", + "y2": "45" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "17", + "y1": "51", + "x2": "54", + "y2": "51" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "17", + "y1": "57", + "x2": "54", + "y2": "57" + }, + "children": [] + }] +}; +exports.weather_fog_fullmoon = weather_fog_fullmoon; \ No newline at end of file diff --git a/dist/linea/weather_fog_halfmoon.js b/dist/linea/weather_fog_halfmoon.js new file mode 100644 index 000000000..8affe022e --- /dev/null +++ b/dist/linea/weather_fog_halfmoon.js @@ -0,0 +1,70 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_fog_halfmoon = void 0; +var weather_fog_halfmoon = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M24.957,15.001C22.646,11.392,18.604,9,14,9\r\n\tc-0.826,0-1.631,0.085-2.414,0.233c0.891,1.396,1.414,3.05,1.414,4.83c0,4.971-4.029,9-9,9c-1.046,0-2.046-0.188-2.98-0.516\r\n\tc0.099,2.368,0.822,4.576,2.023,6.452c1.018,1.59,2.371,2.943,3.961,3.96" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "17", + "y1": "45", + "x2": "54", + "y2": "45" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "17", + "y1": "51", + "x2": "54", + "y2": "51" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "17", + "y1": "57", + "x2": "54", + "y2": "57" + }, + "children": [] + }] +}; +exports.weather_fog_halfmoon = weather_fog_halfmoon; \ No newline at end of file diff --git a/dist/linea/weather_fog_sun.js b/dist/linea/weather_fog_sun.js new file mode 100644 index 000000000..b45a45721 --- /dev/null +++ b/dist/linea/weather_fog_sun.js @@ -0,0 +1,109 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_fog_sun = void 0; +var weather_fog_sun = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.233,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M29.999,11.752C27.793,10.028,25.017,9,22,9\r\n\tC14.82,9,9,14.82,9,22c0,2.577,0.707,3.979,2,6" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "6", + "y1": "22", + "x2": "0", + "y2": "22" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "6", + "x2": "22", + "y2": "0" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "10", + "y1": "10", + "x2": "4", + "y2": "4" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "17", + "y1": "45", + "x2": "54", + "y2": "45" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "17", + "y1": "51", + "x2": "54", + "y2": "51" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "17", + "y1": "57", + "x2": "54", + "y2": "57" + }, + "children": [] + }] +}; +exports.weather_fog_sun = weather_fog_sun; \ No newline at end of file diff --git a/dist/linea/weather_fullmoon.js b/dist/linea/weather_fullmoon.js new file mode 100644 index 000000000..d83ff4163 --- /dev/null +++ b/dist/linea/weather_fullmoon.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_fullmoon = void 0; +var weather_fullmoon = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "31" + }, + "children": [] + }] +}; +exports.weather_fullmoon = weather_fullmoon; \ No newline at end of file diff --git a/dist/linea/weather_gemini.js b/dist/linea/weather_gemini.js new file mode 100644 index 000000000..e1782f86e --- /dev/null +++ b/dist/linea/weather_gemini.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_gemini = void 0; +var weather_gemini = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M0,8c0,0,16,4,32,4s32-4,32-4" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M64,56c0,0-16-4-32-4S0,56,0,56" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "21", + "y1": "12", + "x2": "21", + "y2": "52" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "43", + "y1": "12", + "x2": "43", + "y2": "52" + }, + "children": [] + }] +}; +exports.weather_gemini = weather_gemini; \ No newline at end of file diff --git a/dist/linea/weather_hail.js b/dist/linea/weather_hail.js new file mode 100644 index 000000000..8e74f9d83 --- /dev/null +++ b/dist/linea/weather_hail.js @@ -0,0 +1,151 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_hail = void 0; +var weather_hail = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M55,40c4.565,0,8-3.435,8-8c0-4.565-3.435-9-8-9\r\n\tc0-11.414-9.586-20-21-20C23.898,3,14.8,9.423,13,19c0,0-1.165,0-2,0C5.292,19,1,24.292,1,30s4.292,10,10,10H55z" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "24", + "y1": "45", + "x2": "19", + "y2": "56" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "14", + "y1": "45", + "x2": "9", + "y2": "56" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "34", + "y1": "45", + "x2": "29", + "y2": "56" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "44", + "y1": "45", + "x2": "39", + "y2": "56" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "54", + "y1": "45", + "x2": "49", + "y2": "56" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "17", + "y1": "59", + "x2": "16", + "y2": "61" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "7", + "y1": "59", + "x2": "6", + "y2": "61" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "27", + "y1": "59", + "x2": "26", + "y2": "61" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "37", + "y1": "59", + "x2": "36", + "y2": "61" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "47", + "y1": "59", + "x2": "46", + "y2": "61" + }, + "children": [] + }] +}; +exports.weather_hail = weather_hail; \ No newline at end of file diff --git a/dist/linea/weather_hail_fullmoon.js b/dist/linea/weather_hail_fullmoon.js new file mode 100644 index 000000000..45238dee5 --- /dev/null +++ b/dist/linea/weather_hail_fullmoon.js @@ -0,0 +1,135 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_hail_fullmoon = void 0; +var weather_hail_fullmoon = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M7.004,32.959c-1.59-1.017-2.943-2.37-3.961-3.96\r\n\tC1.75,26.979,1,24.577,1,22C1,14.82,6.82,9,14,9c4.604,0,8.646,2.392,10.957,6.001" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "20", + "y1": "48", + "x2": "16", + "y2": "57" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "30", + "y1": "48", + "x2": "26", + "y2": "57" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "40", + "y1": "48", + "x2": "36", + "y2": "57" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "50", + "y1": "48", + "x2": "46", + "y2": "57" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "15", + "y1": "60", + "x2": "14", + "y2": "62" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "25", + "y1": "60", + "x2": "24", + "y2": "62" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "35", + "y1": "60", + "x2": "34", + "y2": "62" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "45", + "y1": "60", + "x2": "44", + "y2": "62" + }, + "children": [] + }] +}; +exports.weather_hail_fullmoon = weather_hail_fullmoon; \ No newline at end of file diff --git a/dist/linea/weather_hail_halfmoon.js b/dist/linea/weather_hail_halfmoon.js new file mode 100644 index 000000000..061b91f3e --- /dev/null +++ b/dist/linea/weather_hail_halfmoon.js @@ -0,0 +1,135 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_hail_halfmoon = void 0; +var weather_hail_halfmoon = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M24.957,15.001C22.646,11.392,18.604,9,14,9\r\n\tc-0.826,0-1.631,0.085-2.414,0.233c0.891,1.396,1.414,3.05,1.414,4.83c0,4.971-4.029,9-9,9c-1.046,0-2.046-0.188-2.98-0.516\r\n\tc0.099,2.368,0.822,4.576,2.023,6.452c1.018,1.59,2.371,2.943,3.961,3.96" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "20", + "y1": "48", + "x2": "16", + "y2": "57" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "30", + "y1": "48", + "x2": "26", + "y2": "57" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "40", + "y1": "48", + "x2": "36", + "y2": "57" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "50", + "y1": "48", + "x2": "46", + "y2": "57" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "15", + "y1": "60", + "x2": "14", + "y2": "62" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "25", + "y1": "60", + "x2": "24", + "y2": "62" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "35", + "y1": "60", + "x2": "34", + "y2": "62" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "45", + "y1": "60", + "x2": "44", + "y2": "62" + }, + "children": [] + }] +}; +exports.weather_hail_halfmoon = weather_hail_halfmoon; \ No newline at end of file diff --git a/dist/linea/weather_hail_sun.js b/dist/linea/weather_hail_sun.js new file mode 100644 index 000000000..d5be6ebaa --- /dev/null +++ b/dist/linea/weather_hail_sun.js @@ -0,0 +1,174 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_hail_sun = void 0; +var weather_hail_sun = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M29.999,11.752C27.793,10.028,25.017,9,22,9\r\n\tC14.82,9,9,14.82,9,22c0,2.577,0.707,3.979,2,6" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "6", + "y1": "22", + "x2": "0", + "y2": "22" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "6", + "x2": "22", + "y2": "0" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "10", + "y1": "10", + "x2": "4", + "y2": "4" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "20", + "y1": "48", + "x2": "16", + "y2": "57" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "30", + "y1": "48", + "x2": "26", + "y2": "57" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "40", + "y1": "48", + "x2": "36", + "y2": "57" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "50", + "y1": "48", + "x2": "46", + "y2": "57" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "15", + "y1": "60", + "x2": "14", + "y2": "62" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "25", + "y1": "60", + "x2": "24", + "y2": "62" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "35", + "y1": "60", + "x2": "34", + "y2": "62" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "45", + "y1": "60", + "x2": "44", + "y2": "62" + }, + "children": [] + }] +}; +exports.weather_hail_sun = weather_hail_sun; \ No newline at end of file diff --git a/dist/linea/weather_last_quarter.js b/dist/linea/weather_last_quarter.js new file mode 100644 index 000000000..0c9c0008e --- /dev/null +++ b/dist/linea/weather_last_quarter.js @@ -0,0 +1,166 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_last_quarter = void 0; +var weather_last_quarter = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "31" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "59", + "x2": "47", + "y2": "59" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "53", + "x2": "55", + "y2": "53" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "47", + "x2": "59", + "y2": "47" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "41", + "x2": "62", + "y2": "41" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "35", + "x2": "63", + "y2": "35" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "1", + "x2": "32", + "y2": "63" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "29", + "x2": "63", + "y2": "29" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "23", + "x2": "62", + "y2": "23" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "17", + "x2": "59", + "y2": "17" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "11", + "x2": "55", + "y2": "11" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "5", + "x2": "47", + "y2": "5" + }, + "children": [] + }] +}; +exports.weather_last_quarter = weather_last_quarter; \ No newline at end of file diff --git a/dist/linea/weather_leo.js b/dist/linea/weather_leo.js new file mode 100644 index 000000000..bf50176a6 --- /dev/null +++ b/dist/linea/weather_leo.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_leo = void 0; +var weather_leo = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M22.649,33.597\r\n\tc-8.337-4.888-11.134-15.608-6.247-23.946C21.29,1.312,32.012-1.485,40.35,3.403c8.337,4.888,11.134,15.608,6.247,23.946\r\n\tC46.597,27.35,36,46,36,54" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "19", + "cy": "42", + "r": "9" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M53.064,58c-1.473,2.963-4.531,5-8.064,5\r\n\tc-4.971,0-9-4.029-9-9" + }, + "children": [] + }] +}; +exports.weather_leo = weather_leo; \ No newline at end of file diff --git a/dist/linea/weather_libra.js b/dist/linea/weather_libra.js new file mode 100644 index 000000000..b02900cce --- /dev/null +++ b/dist/linea/weather_libra.js @@ -0,0 +1,60 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_libra = void 0; +var weather_libra = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M41.667,38.002\r\n\tc3.913-2.939,6.444-7.619,6.444-12.891C48.111,16.213,40.897,9,32,9s-16.111,7.213-16.111,16.111c0,5.27,2.53,9.948,6.442,12.889" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "0", + "y1": "38", + "x2": "23", + "y2": "38" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "41", + "y1": "38", + "x2": "64", + "y2": "38" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "0", + "y1": "55", + "x2": "64", + "y2": "55" + }, + "children": [] + }] +}; +exports.weather_libra = weather_libra; \ No newline at end of file diff --git a/dist/linea/weather_lightning.js b/dist/linea/weather_lightning.js new file mode 100644 index 000000000..ed71b46fa --- /dev/null +++ b/dist/linea/weather_lightning.js @@ -0,0 +1,22 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_lightning = void 0; +var weather_lightning = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "40,1 17,37 31,37 \r\n\t24,63 50,27 36,27 " + }, + "children": [] + }] +}; +exports.weather_lightning = weather_lightning; \ No newline at end of file diff --git a/dist/linea/weather_mistyrain.js b/dist/linea/weather_mistyrain.js new file mode 100644 index 000000000..e36e48f9e --- /dev/null +++ b/dist/linea/weather_mistyrain.js @@ -0,0 +1,216 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_mistyrain = void 0; +var weather_mistyrain = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M55,40c4.565,0,8-3.435,8-8c0-4.565-3.435-9-8-9\r\n\tc0-11.414-9.586-20-21-20C23.898,3,14.8,9.423,13,19c0,0-1.165,0-2,0C5.292,19,1,24.292,1,30s4.292,10,10,10H55z" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "17", + "y1": "59", + "x2": "16", + "y2": "61" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "7", + "y1": "59", + "x2": "6", + "y2": "61" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "27", + "y1": "59", + "x2": "26", + "y2": "61" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "37", + "y1": "59", + "x2": "36", + "y2": "61" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "47", + "y1": "59", + "x2": "46", + "y2": "61" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "24", + "y1": "52", + "x2": "23", + "y2": "54" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "14", + "y1": "52", + "x2": "13", + "y2": "54" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "34", + "y1": "52", + "x2": "33", + "y2": "54" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "44", + "y1": "52", + "x2": "43", + "y2": "54" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "54", + "y1": "52", + "x2": "53", + "y2": "54" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "19", + "y1": "44", + "x2": "18", + "y2": "46" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "9", + "y1": "44", + "x2": "8", + "y2": "46" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "29", + "y1": "44", + "x2": "28", + "y2": "46" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "39", + "y1": "44", + "x2": "38", + "y2": "46" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "49", + "y1": "44", + "x2": "48", + "y2": "46" + }, + "children": [] + }] +}; +exports.weather_mistyrain = weather_mistyrain; \ No newline at end of file diff --git a/dist/linea/weather_mistyrain_fullmoon.js b/dist/linea/weather_mistyrain_fullmoon.js new file mode 100644 index 000000000..6f8c57cac --- /dev/null +++ b/dist/linea/weather_mistyrain_fullmoon.js @@ -0,0 +1,187 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_mistyrain_fullmoon = void 0; +var weather_mistyrain_fullmoon = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M7.004,32.959c-1.59-1.017-2.943-2.37-3.961-3.96\r\n\tC1.75,26.979,1,24.577,1,22C1,14.82,6.82,9,14,9c4.604,0,8.646,2.392,10.957,6.001" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "15", + "y1": "60", + "x2": "14", + "y2": "62" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "25", + "y1": "60", + "x2": "24", + "y2": "62" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "35", + "y1": "60", + "x2": "34", + "y2": "62" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "45", + "y1": "60", + "x2": "44", + "y2": "62" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "19", + "y1": "48", + "x2": "18", + "y2": "50" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "29", + "y1": "48", + "x2": "28", + "y2": "50" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "39", + "y1": "48", + "x2": "38", + "y2": "50" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "49", + "y1": "48", + "x2": "48", + "y2": "50" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "11", + "y1": "54", + "x2": "10", + "y2": "56" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "21", + "y1": "54", + "x2": "20", + "y2": "56" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "31", + "y1": "54", + "x2": "30", + "y2": "56" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "41", + "y1": "54", + "x2": "40", + "y2": "56" + }, + "children": [] + }] +}; +exports.weather_mistyrain_fullmoon = weather_mistyrain_fullmoon; \ No newline at end of file diff --git a/dist/linea/weather_mistyrain_halfmoon.js b/dist/linea/weather_mistyrain_halfmoon.js new file mode 100644 index 000000000..bd5be354c --- /dev/null +++ b/dist/linea/weather_mistyrain_halfmoon.js @@ -0,0 +1,187 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_mistyrain_halfmoon = void 0; +var weather_mistyrain_halfmoon = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M24.957,15.001C22.646,11.392,18.604,9,14,9\r\n\tc-0.826,0-1.631,0.085-2.414,0.233c0.891,1.396,1.414,3.05,1.414,4.83c0,4.971-4.029,9-9,9c-1.046,0-2.046-0.188-2.98-0.516\r\n\tc0.099,2.368,0.822,4.576,2.023,6.452c1.018,1.59,2.371,2.943,3.961,3.96" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "15", + "y1": "60", + "x2": "14", + "y2": "62" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "25", + "y1": "60", + "x2": "24", + "y2": "62" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "35", + "y1": "60", + "x2": "34", + "y2": "62" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "45", + "y1": "60", + "x2": "44", + "y2": "62" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "19", + "y1": "48", + "x2": "18", + "y2": "50" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "29", + "y1": "48", + "x2": "28", + "y2": "50" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "39", + "y1": "48", + "x2": "38", + "y2": "50" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "49", + "y1": "48", + "x2": "48", + "y2": "50" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "11", + "y1": "54", + "x2": "10", + "y2": "56" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "21", + "y1": "54", + "x2": "20", + "y2": "56" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "31", + "y1": "54", + "x2": "30", + "y2": "56" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "41", + "y1": "54", + "x2": "40", + "y2": "56" + }, + "children": [] + }] +}; +exports.weather_mistyrain_halfmoon = weather_mistyrain_halfmoon; \ No newline at end of file diff --git a/dist/linea/weather_mistyrain_sun.js b/dist/linea/weather_mistyrain_sun.js new file mode 100644 index 000000000..cf6dfc04a --- /dev/null +++ b/dist/linea/weather_mistyrain_sun.js @@ -0,0 +1,226 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_mistyrain_sun = void 0; +var weather_mistyrain_sun = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M29.999,11.752C27.793,10.028,25.017,9,22,9\r\n\tC14.82,9,9,14.82,9,22c0,2.577,0.707,3.979,2,6" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "6", + "y1": "22", + "x2": "0", + "y2": "22" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "6", + "x2": "22", + "y2": "0" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "10", + "y1": "10", + "x2": "4", + "y2": "4" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "15", + "y1": "60", + "x2": "14", + "y2": "62" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "25", + "y1": "60", + "x2": "24", + "y2": "62" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "35", + "y1": "60", + "x2": "34", + "y2": "62" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "45", + "y1": "60", + "x2": "44", + "y2": "62" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "19", + "y1": "48", + "x2": "18", + "y2": "50" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "29", + "y1": "48", + "x2": "28", + "y2": "50" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "39", + "y1": "48", + "x2": "38", + "y2": "50" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "49", + "y1": "48", + "x2": "48", + "y2": "50" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "11", + "y1": "54", + "x2": "10", + "y2": "56" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "21", + "y1": "54", + "x2": "20", + "y2": "56" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "31", + "y1": "54", + "x2": "30", + "y2": "56" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "41", + "y1": "54", + "x2": "40", + "y2": "56" + }, + "children": [] + }] +}; +exports.weather_mistyrain_sun = weather_mistyrain_sun; \ No newline at end of file diff --git a/dist/linea/weather_moon.js b/dist/linea/weather_moon.js new file mode 100644 index 000000000..ac9a56c59 --- /dev/null +++ b/dist/linea/weather_moon.js @@ -0,0 +1,21 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_moon = void 0; +var weather_moon = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M6,52c14.359,0,26-11.641,26-26\r\n\tc0-9.994-6.729-18.648-15-23c3.396-1.277,8.158-2,12-2c17.121,0,31,13.879,31,31S46.121,63,29,63c-9.505,0-18.313-4.265-24-11\r\n\tC5.23,52.006,5.768,52,6,52z" + }, + "children": [] + }] +}; +exports.weather_moon = weather_moon; \ No newline at end of file diff --git a/dist/linea/weather_moondown_full.js b/dist/linea/weather_moondown_full.js new file mode 100644 index 000000000..f041346af --- /dev/null +++ b/dist/linea/weather_moondown_full.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_moondown_full = void 0; +var weather_moondown_full = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "0", + "y1": "47", + "x2": "64", + "y2": "47" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "25,53 32,60 \r\n\t39,53 " + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M48.159,47C49.96,44.096,51,40.669,51,37\r\n\tc0-10.493-8.506-19-19-19s-19,8.507-19,19c0,3.668,1.04,7.094,2.841,9.998" + }, + "children": [] + }] +}; +exports.weather_moondown_full = weather_moondown_full; \ No newline at end of file diff --git a/dist/linea/weather_moondown_half.js b/dist/linea/weather_moondown_half.js new file mode 100644 index 000000000..44adebf80 --- /dev/null +++ b/dist/linea/weather_moondown_half.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_moondown_half = void 0; +var weather_moondown_half = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "0", + "y1": "47", + "x2": "64", + "y2": "47" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "25,53 32,60 \r\n\t39,53 " + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M48.158,47C49.96,44.096,51,40.669,51,37\r\n\tc0-10.493-8.506-19-19-19c-0.059,0-0.115,0.008-0.175,0.009C32.574,19.688,33,21.543,33,23.5C33,30.956,26.956,37,19.5,37\r\n\tc-2.323,0-4.51-0.588-6.418-1.621C13.037,35.914,13,36.453,13,37c0,3.668,1.039,7.094,2.841,9.998" + }, + "children": [] + }] +}; +exports.weather_moondown_half = weather_moondown_half; \ No newline at end of file diff --git a/dist/linea/weather_moonset_full.js b/dist/linea/weather_moonset_full.js new file mode 100644 index 000000000..2cde4f439 --- /dev/null +++ b/dist/linea/weather_moonset_full.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_moonset_full = void 0; +var weather_moonset_full = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "0", + "y1": "47", + "x2": "64", + "y2": "47" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "39,60 32,53 \r\n\t25,60 " + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M48.159,47C49.96,44.096,51,40.669,51,37\r\n\tc0-10.493-8.506-19-19-19s-19,8.507-19,19c0,3.668,1.04,7.094,2.841,9.998" + }, + "children": [] + }] +}; +exports.weather_moonset_full = weather_moonset_full; \ No newline at end of file diff --git a/dist/linea/weather_moonset_half.js b/dist/linea/weather_moonset_half.js new file mode 100644 index 000000000..3035de842 --- /dev/null +++ b/dist/linea/weather_moonset_half.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_moonset_half = void 0; +var weather_moonset_half = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#010101", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "0", + "y1": "47", + "x2": "64", + "y2": "47" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#010101", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "25,53 32,60 \r\n\t39,53 " + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#010101", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M48.158,47C49.96,44.096,51,40.669,51,37\r\n\tc0-10.493-8.506-19-19-19c-0.059,0-0.115,0.008-0.175,0.009C32.574,19.688,33,21.543,33,23.5C33,30.956,26.956,37,19.5,37\r\n\tc-2.323,0-4.51-0.588-6.418-1.621C13.037,35.914,13,36.453,13,37c0,3.668,1.039,7.094,2.841,9.998" + }, + "children": [] + }] +}; +exports.weather_moonset_half = weather_moonset_half; \ No newline at end of file diff --git a/dist/linea/weather_move2.js b/dist/linea/weather_move2.js new file mode 100644 index 000000000..f7bd70f18 --- /dev/null +++ b/dist/linea/weather_move2.js @@ -0,0 +1,166 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_move2 = void 0; +var weather_move2 = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "31" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "5", + "x2": "17", + "y2": "5" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "11", + "x2": "9", + "y2": "11" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "17", + "x2": "5", + "y2": "17" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "23", + "x2": "2", + "y2": "23" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "29", + "x2": "1", + "y2": "29" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "63", + "x2": "32", + "y2": "1" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "35", + "x2": "1", + "y2": "35" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "41", + "x2": "2", + "y2": "41" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "47", + "x2": "5", + "y2": "47" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "53", + "x2": "9", + "y2": "53" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "59", + "x2": "17", + "y2": "59" + }, + "children": [] + }] +}; +exports.weather_move2 = weather_move2; \ No newline at end of file diff --git a/dist/linea/weather_newmoon.js b/dist/linea/weather_newmoon.js new file mode 100644 index 000000000..3af4203f7 --- /dev/null +++ b/dist/linea/weather_newmoon.js @@ -0,0 +1,153 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_newmoon = void 0; +var weather_newmoon = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "31" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "47", + "y1": "5", + "x2": "17", + "y2": "5" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "55", + "y1": "11", + "x2": "9", + "y2": "11" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "59", + "y1": "17", + "x2": "5", + "y2": "17" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "62", + "y1": "23", + "x2": "2", + "y2": "23" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "63", + "y1": "29", + "x2": "1", + "y2": "29" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "63", + "y1": "35", + "x2": "1", + "y2": "35" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "62", + "y1": "41", + "x2": "2", + "y2": "41" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "59", + "y1": "47", + "x2": "5", + "y2": "47" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "55", + "y1": "53", + "x2": "9", + "y2": "53" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "47", + "y1": "59", + "x2": "17", + "y2": "59" + }, + "children": [] + }] +}; +exports.weather_newmoon = weather_newmoon; \ No newline at end of file diff --git a/dist/linea/weather_pisces.js b/dist/linea/weather_pisces.js new file mode 100644 index 000000000..a86812e01 --- /dev/null +++ b/dist/linea/weather_pisces.js @@ -0,0 +1,44 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_pisces = void 0; +var weather_pisces = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M54,0c0,0-10,16-10,32s10,32,10,32" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M10,64c0,0,10-16,10-32S10,0,10,0" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "7", + "y1": "32", + "x2": "57", + "y2": "32" + }, + "children": [] + }] +}; +exports.weather_pisces = weather_pisces; \ No newline at end of file diff --git a/dist/linea/weather_rain.js b/dist/linea/weather_rain.js new file mode 100644 index 000000000..64ae2d29d --- /dev/null +++ b/dist/linea/weather_rain.js @@ -0,0 +1,155 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_rain = void 0; +var weather_rain = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M55,40c4.565,0,8-3.435,8-8c0-4.565-3.435-9-8-9\r\n\tc0-11.414-9.586-20-21-20C23.898,3,14.8,9.423,13,19c0,0-1.165,0-2,0C5.292,19,1,24.292,1,30s4.292,10,10,10H55z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "46", + "x2": "22", + "y2": "60" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "46", + "x2": "22", + "y2": "60" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "12", + "y1": "46", + "x2": "12", + "y2": "60" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "12", + "y1": "46", + "x2": "12", + "y2": "60" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "46", + "x2": "32", + "y2": "60" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "46", + "x2": "32", + "y2": "60" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "42", + "y1": "46", + "x2": "42", + "y2": "60" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "42", + "y1": "46", + "x2": "42", + "y2": "60" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "52", + "y1": "46", + "x2": "52", + "y2": "60" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "52", + "y1": "46", + "x2": "52", + "y2": "60" + }, + "children": [] + }] + }] + }] +}; +exports.weather_rain = weather_rain; \ No newline at end of file diff --git a/dist/linea/weather_rain_fullmoon.js b/dist/linea/weather_rain_fullmoon.js new file mode 100644 index 000000000..75faad754 --- /dev/null +++ b/dist/linea/weather_rain_fullmoon.js @@ -0,0 +1,83 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_rain_fullmoon = void 0; +var weather_rain_fullmoon = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M7.004,32.959c-1.59-1.017-2.943-2.37-3.961-3.96\r\n\tC1.75,26.979,1,24.577,1,22C1,14.82,6.82,9,14,9c4.604,0,8.646,2.392,10.957,6.001" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "20", + "y1": "48", + "x2": "20", + "y2": "62" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "30", + "y1": "48", + "x2": "30", + "y2": "62" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "40", + "y1": "48", + "x2": "40", + "y2": "62" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "50", + "y1": "48", + "x2": "50", + "y2": "62" + }, + "children": [] + }] +}; +exports.weather_rain_fullmoon = weather_rain_fullmoon; \ No newline at end of file diff --git a/dist/linea/weather_rain_halfmoon.js b/dist/linea/weather_rain_halfmoon.js new file mode 100644 index 000000000..b3e8ed0b7 --- /dev/null +++ b/dist/linea/weather_rain_halfmoon.js @@ -0,0 +1,83 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_rain_halfmoon = void 0; +var weather_rain_halfmoon = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M24.957,15.001C22.646,11.392,18.604,9,14,9\r\n\tc-0.826,0-1.631,0.085-2.414,0.233c0.891,1.396,1.414,3.05,1.414,4.83c0,4.971-4.029,9-9,9c-1.046,0-2.046-0.188-2.98-0.516\r\n\tc0.099,2.368,0.822,4.576,2.023,6.452c1.018,1.59,2.371,2.943,3.961,3.96" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "20", + "y1": "48", + "x2": "20", + "y2": "62" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "30", + "y1": "48", + "x2": "30", + "y2": "62" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "40", + "y1": "48", + "x2": "40", + "y2": "62" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "50", + "y1": "48", + "x2": "50", + "y2": "62" + }, + "children": [] + }] +}; +exports.weather_rain_halfmoon = weather_rain_halfmoon; \ No newline at end of file diff --git a/dist/linea/weather_rain_sun.js b/dist/linea/weather_rain_sun.js new file mode 100644 index 000000000..1223c35b9 --- /dev/null +++ b/dist/linea/weather_rain_sun.js @@ -0,0 +1,122 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_rain_sun = void 0; +var weather_rain_sun = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.233,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M29.999,11.752C27.793,10.028,25.017,9,22,9\r\n\tC14.82,9,9,14.82,9,22c0,2.577,0.707,3.979,2,6" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "6", + "y1": "22", + "x2": "0", + "y2": "22" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "6", + "x2": "22", + "y2": "0" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "10", + "y1": "10", + "x2": "4", + "y2": "4" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "20", + "y1": "48", + "x2": "20", + "y2": "62" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "30", + "y1": "48", + "x2": "30", + "y2": "62" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "40", + "y1": "48", + "x2": "40", + "y2": "62" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "50", + "y1": "48", + "x2": "50", + "y2": "62" + }, + "children": [] + }] +}; +exports.weather_rain_sun = weather_rain_sun; \ No newline at end of file diff --git a/dist/linea/weather_sagittarius.js b/dist/linea/weather_sagittarius.js new file mode 100644 index 000000000..ce5d03804 --- /dev/null +++ b/dist/linea/weather_sagittarius.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_sagittarius = void 0; +var weather_sagittarius = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "63", + "y1": "1", + "x2": "0", + "y2": "64" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "36,1 63,1 63,28 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "1", + "y1": "28", + "x2": "36", + "y2": "63" + }, + "children": [] + }] +}; +exports.weather_sagittarius = weather_sagittarius; \ No newline at end of file diff --git a/dist/linea/weather_scorpio.js b/dist/linea/weather_scorpio.js new file mode 100644 index 000000000..2b1fbe344 --- /dev/null +++ b/dist/linea/weather_scorpio.js @@ -0,0 +1,52 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_scorpio = void 0; +var weather_scorpio = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M30,52V12c0,0,0-11,8-11s8,11,8,11s0,33,0,40\r\n\tc0,0,0,6,6,6h5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M14,52V12c0,0,0.083-11,8-11s8,11,8,11" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M14,12c0,0,0-10-8-10" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "52,53 57,58 \r\n\t52,63 " + }, + "children": [] + }] +}; +exports.weather_scorpio = weather_scorpio; \ No newline at end of file diff --git a/dist/linea/weather_snow.js b/dist/linea/weather_snow.js new file mode 100644 index 000000000..9383b2d5b --- /dev/null +++ b/dist/linea/weather_snow.js @@ -0,0 +1,229 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_snow = void 0; +var weather_snow = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M55,40c4.565,0,8-3.435,8-8c0-4.565-3.435-9-8-9\r\n\tc0-11.414-9.586-20-21-20C23.898,3,14.8,9.423,13,19c0,0-1.165,0-2,0C5.292,19,1,24.292,1,30s4.292,10,10,10H55z" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "43", + "x2": "22", + "y2": "48" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "52", + "x2": "22", + "y2": "57" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "27", + "y1": "45", + "x2": "24", + "y2": "48" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "20", + "y1": "52", + "x2": "17", + "y2": "55" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "27", + "y1": "55", + "x2": "24", + "y2": "52" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "20", + "y1": "48", + "x2": "17", + "y2": "45" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "29", + "y1": "50", + "x2": "24", + "y2": "50" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "20", + "y1": "50", + "x2": "15", + "y2": "50" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "42", + "y1": "48", + "x2": "42", + "y2": "53" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "42", + "y1": "57", + "x2": "42", + "y2": "62" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "47", + "y1": "50", + "x2": "44", + "y2": "53" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "40", + "y1": "57", + "x2": "37", + "y2": "60" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "47", + "y1": "60", + "x2": "44", + "y2": "57" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "40", + "y1": "53", + "x2": "37", + "y2": "50" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "49", + "y1": "55", + "x2": "44", + "y2": "55" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "40", + "y1": "55", + "x2": "35", + "y2": "55" + }, + "children": [] + }] +}; +exports.weather_snow = weather_snow; \ No newline at end of file diff --git a/dist/linea/weather_snow_fullmoon.js b/dist/linea/weather_snow_fullmoon.js new file mode 100644 index 000000000..e63200991 --- /dev/null +++ b/dist/linea/weather_snow_fullmoon.js @@ -0,0 +1,239 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_snow_fullmoon = void 0; +var weather_snow_fullmoon = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M7.004,32.959c-1.59-1.017-2.943-2.37-3.961-3.96\r\n\tC1.75,26.979,1,24.577,1,22C1,14.82,6.82,9,14,9c4.604,0,8.646,2.392,10.957,6.001" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "24", + "y1": "48", + "x2": "24", + "y2": "52" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "24", + "y1": "56", + "x2": "24", + "y2": "60" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "28", + "y1": "50", + "x2": "26", + "y2": "52" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "56", + "x2": "20", + "y2": "58" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "28", + "y1": "58", + "x2": "26", + "y2": "56" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "52", + "x2": "20", + "y2": "50" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "30", + "y1": "54", + "x2": "26", + "y2": "54" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "54", + "x2": "18", + "y2": "54" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "44", + "y1": "50", + "x2": "44", + "y2": "54" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "44", + "y1": "58", + "x2": "44", + "y2": "62" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "48", + "y1": "52", + "x2": "46", + "y2": "54" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "42", + "y1": "58", + "x2": "40", + "y2": "60" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "48", + "y1": "60", + "x2": "46", + "y2": "58" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "42", + "y1": "54", + "x2": "40", + "y2": "52" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "50", + "y1": "56", + "x2": "46", + "y2": "56" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "42", + "y1": "56", + "x2": "38", + "y2": "56" + }, + "children": [] + }] +}; +exports.weather_snow_fullmoon = weather_snow_fullmoon; \ No newline at end of file diff --git a/dist/linea/weather_snow_halfmoon.js b/dist/linea/weather_snow_halfmoon.js new file mode 100644 index 000000000..2b9980d1c --- /dev/null +++ b/dist/linea/weather_snow_halfmoon.js @@ -0,0 +1,239 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_snow_halfmoon = void 0; +var weather_snow_halfmoon = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M24.957,15.001C22.646,11.392,18.604,9,14,9\r\n\tc-0.826,0-1.631,0.085-2.414,0.233c0.891,1.396,1.414,3.05,1.414,4.83c0,4.971-4.029,9-9,9c-1.046,0-2.046-0.188-2.98-0.516\r\n\tc0.099,2.368,0.822,4.576,2.023,6.452c1.018,1.59,2.371,2.943,3.961,3.96" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "24", + "y1": "48", + "x2": "24", + "y2": "52" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "24", + "y1": "56", + "x2": "24", + "y2": "60" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "28", + "y1": "50", + "x2": "26", + "y2": "52" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "56", + "x2": "20", + "y2": "58" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "28", + "y1": "58", + "x2": "26", + "y2": "56" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "52", + "x2": "20", + "y2": "50" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "30", + "y1": "54", + "x2": "26", + "y2": "54" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "54", + "x2": "18", + "y2": "54" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "44", + "y1": "50", + "x2": "44", + "y2": "54" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "44", + "y1": "58", + "x2": "44", + "y2": "62" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "48", + "y1": "52", + "x2": "46", + "y2": "54" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "42", + "y1": "58", + "x2": "40", + "y2": "60" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "48", + "y1": "60", + "x2": "46", + "y2": "58" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "42", + "y1": "54", + "x2": "40", + "y2": "52" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "50", + "y1": "56", + "x2": "46", + "y2": "56" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "42", + "y1": "56", + "x2": "38", + "y2": "56" + }, + "children": [] + }] +}; +exports.weather_snow_halfmoon = weather_snow_halfmoon; \ No newline at end of file diff --git a/dist/linea/weather_snow_sun.js b/dist/linea/weather_snow_sun.js new file mode 100644 index 000000000..1b7f1f819 --- /dev/null +++ b/dist/linea/weather_snow_sun.js @@ -0,0 +1,278 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_snow_sun = void 0; +var weather_snow_sun = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M29.999,11.752C27.793,10.028,25.017,9,22,9\r\n\tC14.82,9,9,14.82,9,22c0,2.577,0.707,3.979,2,6" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "6", + "y1": "22", + "x2": "0", + "y2": "22" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "6", + "x2": "22", + "y2": "0" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "10", + "y1": "10", + "x2": "4", + "y2": "4" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "24", + "y1": "48", + "x2": "24", + "y2": "52" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "24", + "y1": "56", + "x2": "24", + "y2": "60" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "28", + "y1": "50", + "x2": "26", + "y2": "52" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "56", + "x2": "20", + "y2": "58" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "28", + "y1": "58", + "x2": "26", + "y2": "56" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "52", + "x2": "20", + "y2": "50" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "30", + "y1": "54", + "x2": "26", + "y2": "54" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "54", + "x2": "18", + "y2": "54" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "44", + "y1": "50", + "x2": "44", + "y2": "54" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "44", + "y1": "58", + "x2": "44", + "y2": "62" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "48", + "y1": "52", + "x2": "46", + "y2": "54" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "42", + "y1": "58", + "x2": "40", + "y2": "60" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "48", + "y1": "60", + "x2": "46", + "y2": "58" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "42", + "y1": "54", + "x2": "40", + "y2": "52" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "50", + "y1": "56", + "x2": "46", + "y2": "56" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "42", + "y1": "56", + "x2": "38", + "y2": "56" + }, + "children": [] + }] +}; +exports.weather_snow_sun = weather_snow_sun; \ No newline at end of file diff --git a/dist/linea/weather_snowflake.js b/dist/linea/weather_snowflake.js new file mode 100644 index 000000000..99f5db2a7 --- /dev/null +++ b/dist/linea/weather_snowflake.js @@ -0,0 +1,207 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_snowflake = void 0; +var weather_snowflake = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "1,24 9,32 1,40 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "63,40 55,32 63,24 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "24,63 32,55 40,63 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "40,1 32,9 24,1 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "5,49 15,49 15,59 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "59,15 49,15 49,5 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "38", + "y1": "26", + "x2": "49", + "y2": "15" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "15", + "y1": "49", + "x2": "26", + "y2": "38" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "15,5 15,15 5,15 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "49,59 49,49 59,49 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "38", + "y1": "38", + "x2": "49", + "y2": "49" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "15", + "y1": "15", + "x2": "26", + "y2": "26" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "40", + "y1": "32", + "x2": "55", + "y2": "32" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "9", + "y1": "32", + "x2": "24", + "y2": "32" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "40", + "x2": "32", + "y2": "55" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "9", + "x2": "32", + "y2": "24" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "8" + }, + "children": [] + }] +}; +exports.weather_snowflake = weather_snowflake; \ No newline at end of file diff --git a/dist/linea/weather_star.js b/dist/linea/weather_star.js new file mode 100644 index 000000000..3a781d277 --- /dev/null +++ b/dist/linea/weather_star.js @@ -0,0 +1,21 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_star = void 0; +var weather_star = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "32,47 12,62 20,38 2,24 24,24 32,1 40,24 \r\n\t62,24 44,38 52,62 " + }, + "children": [] + }] +}; +exports.weather_star = weather_star; \ No newline at end of file diff --git a/dist/linea/weather_storm_fullmoon.js b/dist/linea/weather_storm_fullmoon.js new file mode 100644 index 000000000..bb8c700e7 --- /dev/null +++ b/dist/linea/weather_storm_fullmoon.js @@ -0,0 +1,61 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_storm_fullmoon = void 0; +var weather_storm_fullmoon = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M7.004,32.959c-1.59-1.017-2.943-2.37-3.961-3.96\r\n\tC1.75,26.979,1,24.577,1,22C1,14.82,6.82,9,14,9c4.604,0,8.646,2.392,10.957,6.001" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "32,48 29,55 34,55 30,62 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "42,48 39,55 44,55 40,62 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "22,48 19,55 24,55 20,62 " + }, + "children": [] + }] +}; +exports.weather_storm_fullmoon = weather_storm_fullmoon; \ No newline at end of file diff --git a/dist/linea/weather_storm_halfmoon.js b/dist/linea/weather_storm_halfmoon.js new file mode 100644 index 000000000..758b81f63 --- /dev/null +++ b/dist/linea/weather_storm_halfmoon.js @@ -0,0 +1,61 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_storm_halfmoon = void 0; +var weather_storm_halfmoon = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M24.957,15.001C22.646,11.392,18.604,9,14,9\r\n\tc-0.826,0-1.631,0.085-2.414,0.233c0.891,1.396,1.414,3.05,1.414,4.83c0,4.971-4.029,9-9,9c-1.046,0-2.046-0.188-2.98-0.516\r\n\tc0.099,2.368,0.822,4.576,2.023,6.452c1.018,1.59,2.371,2.943,3.961,3.96" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "32,48 29,55 34,55 30,62 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "42,48 39,55 44,55 40,62 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "22,48 19,55 24,55 20,62 " + }, + "children": [] + }] +}; +exports.weather_storm_halfmoon = weather_storm_halfmoon; \ No newline at end of file diff --git a/dist/linea/weather_storm_sun.js b/dist/linea/weather_storm_sun.js new file mode 100644 index 000000000..5dbe24660 --- /dev/null +++ b/dist/linea/weather_storm_sun.js @@ -0,0 +1,100 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_storm_sun = void 0; +var weather_storm_sun = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M29.999,11.752C27.793,10.028,25.017,9,22,9\r\n\tC14.82,9,9,14.82,9,22c0,2.577,0.707,3.979,2,6" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "6", + "y1": "22", + "x2": "0", + "y2": "22" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "6", + "x2": "22", + "y2": "0" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "10", + "y1": "10", + "x2": "4", + "y2": "4" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "32,48 29,55 34,55 30,62 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "42,48 39,55 44,55 40,62 " + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "22,48 19,55 24,55 20,62 " + }, + "children": [] + }] +}; +exports.weather_storm_sun = weather_storm_sun; \ No newline at end of file diff --git a/dist/linea/weather_sun.js b/dist/linea/weather_sun.js new file mode 100644 index 000000000..5784c6c6f --- /dev/null +++ b/dist/linea/weather_sun.js @@ -0,0 +1,247 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_sun = void 0; +var weather_sun = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "16" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "16" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "10", + "x2": "32", + "y2": "0" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "10", + "x2": "32", + "y2": "0" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "64", + "x2": "32", + "y2": "54" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "64", + "x2": "32", + "y2": "54" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "54", + "y1": "32", + "x2": "64", + "y2": "32" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "54", + "y1": "32", + "x2": "64", + "y2": "32" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "0", + "y1": "32", + "x2": "10", + "y2": "32" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "0", + "y1": "32", + "x2": "10", + "y2": "32" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "48", + "y1": "16", + "x2": "53", + "y2": "11" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "48", + "y1": "16", + "x2": "53", + "y2": "11" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "11", + "y1": "53", + "x2": "16", + "y2": "48" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "11", + "y1": "53", + "x2": "16", + "y2": "48" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "48", + "y1": "48", + "x2": "53", + "y2": "53" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "48", + "y1": "48", + "x2": "53", + "y2": "53" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "11", + "y1": "11", + "x2": "16", + "y2": "16" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "11", + "y1": "11", + "x2": "16", + "y2": "16" + }, + "children": [] + }] + }] + }] +}; +exports.weather_sun = weather_sun; \ No newline at end of file diff --git a/dist/linea/weather_sundown.js b/dist/linea/weather_sundown.js new file mode 100644 index 000000000..71fad3e24 --- /dev/null +++ b/dist/linea/weather_sundown.js @@ -0,0 +1,110 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_sundown = void 0; +var weather_sundown = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "0", + "y1": "47", + "x2": "64", + "y2": "47" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "10", + "y1": "37", + "x2": "0", + "y2": "37" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "64", + "y1": "37", + "x2": "54", + "y2": "37" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "15", + "x2": "32", + "y2": "4" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "14", + "y1": "23", + "x2": "6", + "y2": "15" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "50", + "y1": "23", + "x2": "58", + "y2": "15" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "25,53 32,60 \r\n\t39,53 " + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M48.159,47C49.96,44.096,51,40.669,51,37\r\n\tc0-10.493-8.506-19-19-19s-19,8.507-19,19c0,3.668,1.04,7.094,2.841,9.998" + }, + "children": [] + }] +}; +exports.weather_sundown = weather_sundown; \ No newline at end of file diff --git a/dist/linea/weather_sunset.js b/dist/linea/weather_sunset.js new file mode 100644 index 000000000..c97f45940 --- /dev/null +++ b/dist/linea/weather_sunset.js @@ -0,0 +1,110 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_sunset = void 0; +var weather_sunset = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "0", + "y1": "47", + "x2": "64", + "y2": "47" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "10", + "y1": "37", + "x2": "0", + "y2": "37" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "64", + "y1": "37", + "x2": "54", + "y2": "37" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "32", + "y1": "15", + "x2": "32", + "y2": "4" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "14", + "y1": "23", + "x2": "6", + "y2": "15" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "50", + "y1": "23", + "x2": "58", + "y2": "15" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-linejoin": "bevel", + "stroke-miterlimit": "10", + "points": "39,60 32,53 \r\n\t25,60 " + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M48.159,47C49.96,44.096,51,40.669,51,37\r\n\tc0-10.493-8.506-19-19-19s-19,8.507-19,19c0,3.668,1.04,7.094,2.841,9.998" + }, + "children": [] + }] +}; +exports.weather_sunset = weather_sunset; \ No newline at end of file diff --git a/dist/linea/weather_taurus.js b/dist/linea/weather_taurus.js new file mode 100644 index 000000000..050f42b57 --- /dev/null +++ b/dist/linea/weather_taurus.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_taurus = void 0; +var weather_taurus = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "43", + "r": "18" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M0,3c14,0,15,12,15,12s0,10,17,10" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M64,3C50,3,49,15,49,15s0,10-17,10" + }, + "children": [] + }] +}; +exports.weather_taurus = weather_taurus; \ No newline at end of file diff --git a/dist/linea/weather_tempest.js b/dist/linea/weather_tempest.js new file mode 100644 index 000000000..5f209ed51 --- /dev/null +++ b/dist/linea/weather_tempest.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_tempest = void 0; +var weather_tempest = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M55,40c4.565,0,8-3.435,8-8c0-4.565-3.435-9-8-9\r\n\tc0-11.414-9.586-20-21-20C23.898,3,14.8,9.423,13,19c0,0-1.165,0-2,0C5.292,19,1,24.292,1,30s4.292,10,10,10H55z" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "32,46 29,53 33,53 29,60 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "47", + "y1": "46", + "x2": "39", + "y2": "60" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "46", + "x2": "14", + "y2": "60" + }, + "children": [] + }] +}; +exports.weather_tempest = weather_tempest; \ No newline at end of file diff --git a/dist/linea/weather_tempest_fullmoon.js b/dist/linea/weather_tempest_fullmoon.js new file mode 100644 index 000000000..67f6771f6 --- /dev/null +++ b/dist/linea/weather_tempest_fullmoon.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_tempest_fullmoon = void 0; +var weather_tempest_fullmoon = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M7.004,32.959c-1.59-1.017-2.943-2.37-3.961-3.96\r\n\tC1.75,26.979,1,24.577,1,22C1,14.82,6.82,9,14,9c4.604,0,8.646,2.392,10.957,6.001" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "32,48 29,55 33,55 29,62 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "23", + "y1": "48", + "x2": "15", + "y2": "62" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "47", + "y1": "48", + "x2": "39", + "y2": "62" + }, + "children": [] + }] +}; +exports.weather_tempest_fullmoon = weather_tempest_fullmoon; \ No newline at end of file diff --git a/dist/linea/weather_tempest_halfmoon.js b/dist/linea/weather_tempest_halfmoon.js new file mode 100644 index 000000000..1a9bb58ce --- /dev/null +++ b/dist/linea/weather_tempest_halfmoon.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_tempest_halfmoon = void 0; +var weather_tempest_halfmoon = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M24.957,15.001C22.646,11.392,18.604,9,14,9\r\n\tc-0.826,0-1.631,0.085-2.414,0.233c0.891,1.396,1.414,3.05,1.414,4.83c0,4.971-4.029,9-9,9c-1.046,0-2.046-0.188-2.98-0.516\r\n\tc0.099,2.368,0.822,4.576,2.023,6.452c1.018,1.59,2.371,2.943,3.961,3.96" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "32,48 29,55 33,55 29,62 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "23", + "y1": "48", + "x2": "15", + "y2": "62" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "47", + "y1": "48", + "x2": "39", + "y2": "62" + }, + "children": [] + }] +}; +exports.weather_tempest_halfmoon = weather_tempest_halfmoon; \ No newline at end of file diff --git a/dist/linea/weather_tempest_sun.js b/dist/linea/weather_tempest_sun.js new file mode 100644 index 000000000..515d6853d --- /dev/null +++ b/dist/linea/weather_tempest_sun.js @@ -0,0 +1,106 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_tempest_sun = void 0; +var weather_tempest_sun = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M29.999,11.752C27.793,10.028,25.017,9,22,9\r\n\tC14.82,9,9,14.82,9,22c0,2.577,0.707,3.979,2,6" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "6", + "y1": "22", + "x2": "0", + "y2": "22" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "6", + "x2": "22", + "y2": "0" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "10", + "y1": "10", + "x2": "4", + "y2": "4" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "points": "32,48 29,55 33,55 29,62 " + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "23", + "y1": "48", + "x2": "15", + "y2": "62" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "47", + "y1": "48", + "x2": "39", + "y2": "62" + }, + "children": [] + }] +}; +exports.weather_tempest_sun = weather_tempest_sun; \ No newline at end of file diff --git a/dist/linea/weather_variable_fullmoon.js b/dist/linea/weather_variable_fullmoon.js new file mode 100644 index 000000000..7cab324bc --- /dev/null +++ b/dist/linea/weather_variable_fullmoon.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_variable_fullmoon = void 0; +var weather_variable_fullmoon = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M56,50c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M7.004,37.959c-1.59-1.017-2.943-2.37-3.961-3.96\r\n\tC1.75,31.979,1,29.577,1,27c0-7.18,5.82-13,13-13c4.604,0,8.646,2.392,10.957,6.001" + }, + "children": [] + }] +}; +exports.weather_variable_fullmoon = weather_variable_fullmoon; \ No newline at end of file diff --git a/dist/linea/weather_variable_halfmoon.js b/dist/linea/weather_variable_halfmoon.js new file mode 100644 index 000000000..e30d2df8c --- /dev/null +++ b/dist/linea/weather_variable_halfmoon.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_variable_halfmoon = void 0; +var weather_variable_halfmoon = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M56,50c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M24.957,20.001C22.646,16.392,18.604,14,14,14\r\n\tc-0.826,0-1.631,0.085-2.414,0.233c0.891,1.396,1.414,3.05,1.414,4.83c0,4.971-4.029,9-9,9c-1.046,0-2.046-0.188-2.98-0.516\r\n\tc0.099,2.368,0.822,4.576,2.023,6.452c1.018,1.59,2.371,2.943,3.961,3.96" + }, + "children": [] + }] +}; +exports.weather_variable_halfmoon = weather_variable_halfmoon; \ No newline at end of file diff --git a/dist/linea/weather_variable_sun.js b/dist/linea/weather_variable_sun.js new file mode 100644 index 000000000..bbcf551ca --- /dev/null +++ b/dist/linea/weather_variable_sun.js @@ -0,0 +1,70 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_variable_sun = void 0; +var weather_variable_sun = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M56,50c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.233,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M29.999,16.752C27.793,15.028,25.017,14,22,14\r\n\tc-7.18,0-13,5.82-13,13c0,2.577,0.707,3.979,2,6" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "6", + "y1": "27", + "x2": "0", + "y2": "27" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "11", + "x2": "22", + "y2": "5" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "10", + "y1": "15", + "x2": "4", + "y2": "9" + }, + "children": [] + }] +}; +exports.weather_variable_sun = weather_variable_sun; \ No newline at end of file diff --git a/dist/linea/weather_virgo.js b/dist/linea/weather_virgo.js new file mode 100644 index 000000000..443734b0d --- /dev/null +++ b/dist/linea/weather_virgo.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_virgo = void 0; +var weather_virgo = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M54,64c0,0-6-5-6-12s0-40,0-40s0-11-8-11s-8,11-8,11\r\n\tv40" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M16,52V12c0,0,0.083-11,8-11s8,11,8,11" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M16,12c0,0,0-10-8-10" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M48,24c0,0,0-14,6-14s6,14,6,14s-1,34-27,34" + }, + "children": [] + }] +}; +exports.weather_virgo = weather_virgo; \ No newline at end of file diff --git a/dist/linea/weather_waning_cresent.js b/dist/linea/weather_waning_cresent.js new file mode 100644 index 000000000..da90d6380 --- /dev/null +++ b/dist/linea/weather_waning_cresent.js @@ -0,0 +1,163 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_waning_cresent = void 0; +var weather_waning_cresent = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32.002", + "cy": "31.999", + "r": "31" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M41.002,61.999c-13.242-3.528-22-15.646-22-30\r\n\tc0-14.355,8.756-26.473,22-30" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "34", + "y1": "5", + "x2": "47", + "y2": "5" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "27", + "y1": "11", + "x2": "55", + "y2": "11" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "17", + "x2": "59", + "y2": "17" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "20", + "y1": "23", + "x2": "62", + "y2": "23" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "19", + "y1": "29", + "x2": "63", + "y2": "29" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "19", + "y1": "35", + "x2": "63", + "y2": "35" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "20", + "y1": "41", + "x2": "62", + "y2": "41" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "23", + "y1": "47", + "x2": "59", + "y2": "47" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "27", + "y1": "53", + "x2": "55", + "y2": "53" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "34", + "y1": "59", + "x2": "47", + "y2": "59" + }, + "children": [] + }] +}; +exports.weather_waning_cresent = weather_waning_cresent; \ No newline at end of file diff --git a/dist/linea/weather_waning_gibbous.js b/dist/linea/weather_waning_gibbous.js new file mode 100644 index 000000000..ada6fe6b9 --- /dev/null +++ b/dist/linea/weather_waning_gibbous.js @@ -0,0 +1,163 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_waning_gibbous = void 0; +var weather_waning_gibbous = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "31" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M23,2c13.242,3.528,22,15.646,22,30\r\n\tc0,14.355-8.756,26.473-22,30" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "30", + "y1": "59", + "x2": "47", + "y2": "59" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "37", + "y1": "53", + "x2": "55", + "y2": "53" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "42", + "y1": "47", + "x2": "59", + "y2": "47" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "44", + "y1": "41", + "x2": "62", + "y2": "41" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "45", + "y1": "35", + "x2": "63", + "y2": "35" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "45", + "y1": "29", + "x2": "63", + "y2": "29" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "44", + "y1": "23", + "x2": "62", + "y2": "23" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "41", + "y1": "17", + "x2": "59", + "y2": "17" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "37", + "y1": "11", + "x2": "55", + "y2": "11" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "30", + "y1": "5", + "x2": "47", + "y2": "5" + }, + "children": [] + }] +}; +exports.weather_waning_gibbous = weather_waning_gibbous; \ No newline at end of file diff --git a/dist/linea/weather_waxing_cresent.js b/dist/linea/weather_waxing_cresent.js new file mode 100644 index 000000000..4e2481da6 --- /dev/null +++ b/dist/linea/weather_waxing_cresent.js @@ -0,0 +1,163 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_waxing_cresent = void 0; +var weather_waxing_cresent = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "31" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M23,2c13.243,3.528,22,15.646,22,30\r\n\tc0,14.355-8.756,26.473-22,30" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "30", + "y1": "59", + "x2": "17", + "y2": "59" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "37", + "y1": "53", + "x2": "9", + "y2": "53" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "42", + "y1": "47", + "x2": "5", + "y2": "47" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "44", + "y1": "41", + "x2": "2", + "y2": "41" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "45", + "y1": "35", + "x2": "1", + "y2": "35" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "45", + "y1": "29", + "x2": "1", + "y2": "29" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "44", + "y1": "23", + "x2": "2", + "y2": "23" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "41", + "y1": "17", + "x2": "5", + "y2": "17" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "37", + "y1": "11", + "x2": "9", + "y2": "11" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "30", + "y1": "5", + "x2": "17", + "y2": "5" + }, + "children": [] + }] +}; +exports.weather_waxing_cresent = weather_waxing_cresent; \ No newline at end of file diff --git a/dist/linea/weather_waxing_gibbous.js b/dist/linea/weather_waxing_gibbous.js new file mode 100644 index 000000000..5584de151 --- /dev/null +++ b/dist/linea/weather_waxing_gibbous.js @@ -0,0 +1,163 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_waxing_gibbous = void 0; +var weather_waxing_gibbous = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "31" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M41,62c-13.243-3.528-22-15.646-22-30\r\n\tc0-14.355,8.756-26.473,22-30" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "34", + "y1": "5", + "x2": "17", + "y2": "5" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "27", + "y1": "11", + "x2": "9", + "y2": "11" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "17", + "x2": "5", + "y2": "17" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "20", + "y1": "23", + "x2": "2", + "y2": "23" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "19", + "y1": "29", + "x2": "1", + "y2": "29" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "19", + "y1": "35", + "x2": "1", + "y2": "35" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "20", + "y1": "41", + "x2": "2", + "y2": "41" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "23", + "y1": "47", + "x2": "5", + "y2": "47" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "27", + "y1": "53", + "x2": "9", + "y2": "53" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "34", + "y1": "59", + "x2": "17", + "y2": "59" + }, + "children": [] + }] +}; +exports.weather_waxing_gibbous = weather_waxing_gibbous; \ No newline at end of file diff --git a/dist/linea/weather_wind.js b/dist/linea/weather_wind.js new file mode 100644 index 000000000..67aee523e --- /dev/null +++ b/dist/linea/weather_wind.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_wind = void 0; +var weather_wind = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M55,40c4.565,0,8-3.435,8-8c0-4.565-3.435-9-8-9\r\n\tc0-11.414-9.586-20-21-20C23.898,3,14.8,9.423,13,19c0,0-1.165,0-2,0C5.292,19,1,24.292,1,30s4.292,10,10,10" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M27,58c0,2.761,2.238,5,5,5s5-2.239,5-5\r\n\ts-2.238-5-5-5H2" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M40,42c0-2.761,2.238-5,5-5s5,2.239,5,5\r\n\ts-2.238,5-5,5H4" + }, + "children": [] + }] +}; +exports.weather_wind = weather_wind; \ No newline at end of file diff --git a/dist/linea/weather_wind_E.js b/dist/linea/weather_wind_E.js new file mode 100644 index 000000000..114eef584 --- /dev/null +++ b/dist/linea/weather_wind_E.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_wind_E = void 0; +var weather_wind_E = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "31" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "4" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M32,44c6.628,0,25-12,25-12S38.628,20,32,20\r\n\ts-12,5.373-12,12S25.372,44,32,44z" + }, + "children": [] + }] +}; +exports.weather_wind_E = weather_wind_E; \ No newline at end of file diff --git a/dist/linea/weather_wind_N.js b/dist/linea/weather_wind_N.js new file mode 100644 index 000000000..c77b599d0 --- /dev/null +++ b/dist/linea/weather_wind_N.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_wind_N = void 0; +var weather_wind_N = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "31" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "4" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M44,32c0-6.628-12-25-12-25S20,25.372,20,32\r\n\ts5.373,12,12,12S44,38.628,44,32z" + }, + "children": [] + }] +}; +exports.weather_wind_N = weather_wind_N; \ No newline at end of file diff --git a/dist/linea/weather_wind_NE.js b/dist/linea/weather_wind_NE.js new file mode 100644 index 000000000..ae90b2496 --- /dev/null +++ b/dist/linea/weather_wind_NE.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_wind_NE = void 0; +var weather_wind_NE = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "31" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "4" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M40.485,40.484C45.172,35.798,49,15,49,15\r\n\ts-20.799,3.827-25.485,8.514c-4.687,4.688-4.686,12.285,0,16.971C28.2,45.171,35.799,45.172,40.485,40.484z" + }, + "children": [] + }] +}; +exports.weather_wind_NE = weather_wind_NE; \ No newline at end of file diff --git a/dist/linea/weather_wind_NW.js b/dist/linea/weather_wind_NW.js new file mode 100644 index 000000000..3e6249c70 --- /dev/null +++ b/dist/linea/weather_wind_NW.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_wind_NW = void 0; +var weather_wind_NW = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "31" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "4" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M40.484,23.514C35.798,18.828,15,15,15,15\r\n\ts3.827,20.799,8.514,25.484c4.688,4.688,12.285,4.686,16.971,0C45.171,35.799,45.172,28.201,40.484,23.514z" + }, + "children": [] + }] +}; +exports.weather_wind_NW = weather_wind_NW; \ No newline at end of file diff --git a/dist/linea/weather_wind_S.js b/dist/linea/weather_wind_S.js new file mode 100644 index 000000000..a6b927107 --- /dev/null +++ b/dist/linea/weather_wind_S.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_wind_S = void 0; +var weather_wind_S = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "31" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "4" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M20,32c0,6.628,12,25,12,25s12-18.372,12-25\r\n\ts-5.373-12-12-12S20,25.372,20,32z" + }, + "children": [] + }] +}; +exports.weather_wind_S = weather_wind_S; \ No newline at end of file diff --git a/dist/linea/weather_wind_SE.js b/dist/linea/weather_wind_SE.js new file mode 100644 index 000000000..8ae392555 --- /dev/null +++ b/dist/linea/weather_wind_SE.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_wind_SE = void 0; +var weather_wind_SE = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "31.999", + "r": "31" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "31.999", + "r": "4" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M23.515,40.484\r\n\tc4.687,4.687,25.484,8.515,25.484,8.515S45.172,28.2,40.485,23.514c-4.688-4.687-12.285-4.686-16.971,0\r\n\tC18.828,28.199,18.827,35.798,23.515,40.484z" + }, + "children": [] + }] +}; +exports.weather_wind_SE = weather_wind_SE; \ No newline at end of file diff --git a/dist/linea/weather_wind_SW.js b/dist/linea/weather_wind_SW.js new file mode 100644 index 000000000..e62453b41 --- /dev/null +++ b/dist/linea/weather_wind_SW.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_wind_SW = void 0; +var weather_wind_SW = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "31" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "32", + "cy": "32", + "r": "4" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M23.515,23.515C18.828,28.201,15,48.999,15,48.999\r\n\ts20.799-3.827,25.485-8.514c4.687-4.688,4.686-12.285,0-16.971C35.8,18.828,28.201,18.827,23.515,23.515z" + }, + "children": [] + }] +}; +exports.weather_wind_SW = weather_wind_SW; \ No newline at end of file diff --git a/dist/linea/weather_wind_W.js b/dist/linea/weather_wind_W.js new file mode 100644 index 000000000..e8b7f1f06 --- /dev/null +++ b/dist/linea/weather_wind_W.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_wind_W = void 0; +var weather_wind_W = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "31.999", + "cy": "31.999", + "r": "31" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "cx": "31.999", + "cy": "31.999", + "r": "4" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M31.999,19.999c-6.628,0-25,12-25,12\r\n\ts18.372,12,25,12s12-5.373,12-12S38.627,19.999,31.999,19.999z" + }, + "children": [] + }] +}; +exports.weather_wind_W = weather_wind_W; \ No newline at end of file diff --git a/dist/linea/weather_wind_fullmoon.js b/dist/linea/weather_wind_fullmoon.js new file mode 100644 index 000000000..cb240da45 --- /dev/null +++ b/dist/linea/weather_wind_fullmoon.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_wind_fullmoon = void 0; +var weather_wind_fullmoon = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M7.004,32.959c-1.59-1.017-2.943-2.37-3.961-3.96\r\n\tC1.75,26.979,1,24.577,1,22C1,14.82,6.82,9,14,9c4.604,0,8.646,2.392,10.957,6.001" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M27,58c0,2.761,2.238,5,5,5s5-2.239,5-5\r\n\ts-2.238-5-5-5H2" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M40,44c0-2.761,2.238-5,5-5s5,2.239,5,5\r\n\ts-2.238,5-5,5H4" + }, + "children": [] + }] +}; +exports.weather_wind_fullmoon = weather_wind_fullmoon; \ No newline at end of file diff --git a/dist/linea/weather_wind_halfmoon.js b/dist/linea/weather_wind_halfmoon.js new file mode 100644 index 000000000..888f6636a --- /dev/null +++ b/dist/linea/weather_wind_halfmoon.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_wind_halfmoon = void 0; +var weather_wind_halfmoon = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M24.957,15.001C22.646,11.392,18.604,9,14,9\r\n\tc-0.826,0-1.631,0.085-2.414,0.233c0.891,1.396,1.414,3.05,1.414,4.83c0,4.971-4.029,9-9,9c-1.046,0-2.046-0.188-2.98-0.516\r\n\tc0.099,2.368,0.822,4.576,2.023,6.452c1.018,1.59,2.371,2.943,3.961,3.96" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M27,58c0,2.761,2.238,5,5,5s5-2.239,5-5\r\n\ts-2.238-5-5-5H2" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M40,44c0-2.761,2.238-5,5-5s5,2.239,5,5\r\n\ts-2.238,5-5,5H4" + }, + "children": [] + }] +}; +exports.weather_wind_halfmoon = weather_wind_halfmoon; \ No newline at end of file diff --git a/dist/linea/weather_wind_sun.js b/dist/linea/weather_wind_sun.js new file mode 100644 index 000000000..d831d8697 --- /dev/null +++ b/dist/linea/weather_wind_sun.js @@ -0,0 +1,90 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_wind_sun = void 0; +var weather_wind_sun = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M29.999,11.752C27.793,10.028,25.017,9,22,9\r\n\tC14.82,9,9,14.82,9,22c0,2.577,0.707,3.979,2,6" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "6", + "y1": "22", + "x2": "0", + "y2": "22" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "22", + "y1": "6", + "x2": "22", + "y2": "0" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "x1": "10", + "y1": "10", + "x2": "4", + "y2": "4" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M27,58c0,2.761,2.238,5,5,5s5-2.239,5-5\r\n\ts-2.238-5-5-5H2" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M40,44c0-2.761,2.238-5,5-5s5,2.239,5,5\r\n\ts-2.238,5-5,5H4" + }, + "children": [] + }] +}; +exports.weather_wind_sun = weather_wind_sun; \ No newline at end of file diff --git a/dist/linea/weather_windgust.js b/dist/linea/weather_windgust.js new file mode 100644 index 000000000..a169f3629 --- /dev/null +++ b/dist/linea/weather_windgust.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weather_windgust = void 0; +var weather_windgust = { + "viewBox": "0 0 64 64", + "children": [{ + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M44,40c0,3.866,3.134,7,7,7s7-3.134,7-7\r\n\ts-3.134-7-7-7H0" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M49,19c0-3.866,3.134-7,7-7s7,3.134,7,7\r\n\ts-3.134,7-7,7H0" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill": "none", + "stroke": "#000000", + "stroke-width": "2", + "stroke-miterlimit": "10", + "d": "M27,45c0,2.761,2.239,5,5,5s5-2.239,5-5\r\n\ts-2.239-5-5-5H0" + }, + "children": [] + }] +}; +exports.weather_windgust = weather_windgust; \ No newline at end of file diff --git a/dist/md/ic_10k.js b/dist/md/ic_10k.js new file mode 100644 index 000000000..31fdde8fa --- /dev/null +++ b/dist/md/ic_10k.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_10k = void 0; +var ic_10k = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 10.5h1.5v3H10zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM7.5 15H6v-4.5H4.5V9h3v6zm5.5-1c0 .55-.45 1-1 1H9.5c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1H12c.55 0 1 .45 1 1v4zm6.5 1h-1.75L16 12.75V15h-1.5V9H16v2.25L17.75 9h1.75l-2.25 3 2.25 3z" + }, + "children": [] + }] +}; +exports.ic_10k = ic_10k; \ No newline at end of file diff --git a/dist/md/ic_10mp.js b/dist/md/ic_10mp.js new file mode 100644 index 000000000..c2104ed7c --- /dev/null +++ b/dist/md/ic_10mp.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_10mp = void 0; +var ic_10mp = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13.5 7H15v3h-1.5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 5.5v6H8.5V7H7V5.5h3zm6.5 5c0 .55-.45 1-1 1H13c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4zm-1 3.5H17v1.5h-1.5z" + }, + "children": [] + }] +}; +exports.ic_10mp = ic_10mp; \ No newline at end of file diff --git a/dist/md/ic_11mp.js b/dist/md/ic_11mp.js new file mode 100644 index 000000000..65b16c8e0 --- /dev/null +++ b/dist/md/ic_11mp.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_11mp = void 0; +var ic_11mp = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM11 5.5v6H9.5V7H8V5.5h3zm5 0v6h-1.5V7H13V5.5h3zm-.5 8.5H17v1.5h-1.5z" + }, + "children": [] + }] +}; +exports.ic_11mp = ic_11mp; \ No newline at end of file diff --git a/dist/md/ic_12mp.js b/dist/md/ic_12mp.js new file mode 100644 index 000000000..e0f03c45d --- /dev/null +++ b/dist/md/ic_12mp.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_12mp = void 0; +var ic_12mp = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 5.5v6H8.5V7H7V5.5h3zM15.5 9h-2v1h3v1.5H12V9c0-.55.45-1 1-1h2V7h-3V5.5h3.5c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1zm0 5H17v1.5h-1.5z" + }, + "children": [] + }] +}; +exports.ic_12mp = ic_12mp; \ No newline at end of file diff --git a/dist/md/ic_13mp.js b/dist/md/ic_13mp.js new file mode 100644 index 000000000..6838ac0ae --- /dev/null +++ b/dist/md/ic_13mp.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_13mp = void 0; +var ic_13mp = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 5.5v6H8.5V7H7V5.5h3zm6.5 5c0 .55-.45 1-1 1H12V10h3V9h-2V8h2V7h-3V5.5h3.5c.55 0 1 .45 1 1v4zm-1 3.5H17v1.5h-1.5z" + }, + "children": [] + }] +}; +exports.ic_13mp = ic_13mp; \ No newline at end of file diff --git a/dist/md/ic_14mp.js b/dist/md/ic_14mp.js new file mode 100644 index 000000000..8bac454aa --- /dev/null +++ b/dist/md/ic_14mp.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_14mp = void 0; +var ic_14mp = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 5.5v6H8.5V7H7V5.5h3zm7.5 4.5h-1v1.5H15V10h-3V5.5h1.5v3H15v-3h1.5v3h1V10zm-2 4H17v1.5h-1.5z" + }, + "children": [] + }] +}; +exports.ic_14mp = ic_14mp; \ No newline at end of file diff --git a/dist/md/ic_15mp.js b/dist/md/ic_15mp.js new file mode 100644 index 000000000..51c20349e --- /dev/null +++ b/dist/md/ic_15mp.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_15mp = void 0; +var ic_15mp = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 5.5v6H8.5V7H7V5.5h3zM16.5 7h-3v1h2c.55 0 1 .45 1 1v1.5c0 .55-.45 1-1 1H12V10h3V9h-3V5.5h4.5V7zm-1 7H17v1.5h-1.5z" + }, + "children": [] + }] +}; +exports.ic_15mp = ic_15mp; \ No newline at end of file diff --git a/dist/md/ic_16mp.js b/dist/md/ic_16mp.js new file mode 100644 index 000000000..7b2732c40 --- /dev/null +++ b/dist/md/ic_16mp.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_16mp = void 0; +var ic_16mp = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13.5 9H15v1.5h-1.5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 5.5v6H8.5V7H7V5.5h3zm3 6c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3.5V7h-3v1h2c.55 0 1 .45 1 1v1.5c0 .55-.45 1-1 1H13zm2.5 2.5H17v1.5h-1.5z" + }, + "children": [] + }] +}; +exports.ic_16mp = ic_16mp; \ No newline at end of file diff --git a/dist/md/ic_17mp.js b/dist/md/ic_17mp.js new file mode 100644 index 000000000..ee536205a --- /dev/null +++ b/dist/md/ic_17mp.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_17mp = void 0; +var ic_17mp = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 5.5v6H8.5V7H7V5.5h3zm5 6h-1.75L14.62 7H12V5.5h3.5c.67 0 1.15.65.96 1.29L15 11.5zm.5 2.5H17v1.5h-1.5z" + }, + "children": [] + }] +}; +exports.ic_17mp = ic_17mp; \ No newline at end of file diff --git a/dist/md/ic_18mp.js b/dist/md/ic_18mp.js new file mode 100644 index 000000000..f8b7502c5 --- /dev/null +++ b/dist/md/ic_18mp.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_18mp = void 0; +var ic_18mp = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 5.5v6H8.5V7H7V5.5h3zm6.5 5c0 .55-.45 1-1 1H13c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4zm-3 0H15V9h-1.5v1.5zm0-2.5H15V6.5h-1.5V8zm2 6H17v1.5h-1.5z" + }, + "children": [] + }] +}; +exports.ic_18mp = ic_18mp; \ No newline at end of file diff --git a/dist/md/ic_19mp.js b/dist/md/ic_19mp.js new file mode 100644 index 000000000..dcc3cc191 --- /dev/null +++ b/dist/md/ic_19mp.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_19mp = void 0; +var ic_19mp = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 7h3V9h-2c-.55 0-1-.45-1-1V6.5c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1H12V10zm1.5-2H15V6.5h-1.5V8zM7 5.5h3v6H8.5V7H7V5.5zm5 13h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm6.5-2.5c0 .55-.45 1-1 1h-2v1.5H14v-6h3.5c.55 0 1 .45 1 1V16zm-3-2H17v1.5h-1.5z" + }, + "children": [] + }] +}; +exports.ic_19mp = ic_19mp; \ No newline at end of file diff --git a/dist/md/ic_1k.js b/dist/md/ic_1k.js new file mode 100644 index 000000000..bd13888af --- /dev/null +++ b/dist/md/ic_1k.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_1k = void 0; +var ic_1k = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8.5 12H9v-4.5H7.5V9h3v6zm7 0h-1.75L14 12.75V15h-1.5V9H14v2.25L15.75 9h1.75l-2.25 3 2.25 3z" + }, + "children": [] + }] +}; +exports.ic_1k = ic_1k; \ No newline at end of file diff --git a/dist/md/ic_1k_plus.js b/dist/md/ic_1k_plus.js new file mode 100644 index 000000000..5a0b4208a --- /dev/null +++ b/dist/md/ic_1k_plus.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_1k_plus = void 0; +var ic_1k_plus = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 15H7.5v-4.5H6V9h3v6zm4.75 0L12 12.75V15h-1.5V9H12v2.25L13.75 9h1.75l-2.25 3 2.25 3h-1.75zm5.75-2.5H18V14h-1v-1.5h-1.5v-1H17V10h1v1.5h1.5v1z" + }, + "children": [] + }] +}; +exports.ic_1k_plus = ic_1k_plus; \ No newline at end of file diff --git a/dist/md/ic_20mp.js b/dist/md/ic_20mp.js new file mode 100644 index 000000000..0b67cfd4a --- /dev/null +++ b/dist/md/ic_20mp.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_20mp = void 0; +var ic_20mp = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14.5 7H16v3h-1.5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zm2-8c0 .55-.45 1-1 1H14c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4zM10 9H8v1h3v1.5H6.5V9c0-.55.45-1 1-1h2V7h-3V5.5H10c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1zm5.5 5H17v1.5h-1.5z" + }, + "children": [] + }] +}; +exports.ic_20mp = ic_20mp; \ No newline at end of file diff --git a/dist/md/ic_21mp.js b/dist/md/ic_21mp.js new file mode 100644 index 000000000..8bd001e33 --- /dev/null +++ b/dist/md/ic_21mp.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_21mp = void 0; +var ic_21mp = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM11 9H9v1h3v1.5H7.5V9c0-.55.45-1 1-1h2V7h-3V5.5H11c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1zm3-3.5h3v6h-1.5V7H14V5.5zm1.5 8.5H17v1.5h-1.5z" + }, + "children": [] + }] +}; +exports.ic_21mp = ic_21mp; \ No newline at end of file diff --git a/dist/md/ic_22mp.js b/dist/md/ic_22mp.js new file mode 100644 index 000000000..fbe7accae --- /dev/null +++ b/dist/md/ic_22mp.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_22mp = void 0; +var ic_22mp = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 9H8v1h3v1.5H6.5V9c0-.55.45-1 1-1h2V7h-3V5.5H10c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1zm6.5 0h-2v1h3v1.5H13V9c0-.55.45-1 1-1h2V7h-3V5.5h3.5c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1zm-1 5H17v1.5h-1.5z" + }, + "children": [] + }] +}; +exports.ic_22mp = ic_22mp; \ No newline at end of file diff --git a/dist/md/ic_23mp.js b/dist/md/ic_23mp.js new file mode 100644 index 000000000..5c99d576e --- /dev/null +++ b/dist/md/ic_23mp.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_23mp = void 0; +var ic_23mp = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 9H8v1h3v1.5H6.5V9c0-.55.45-1 1-1h2V7h-3V5.5H10c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1zm7.5 1.5c0 .55-.45 1-1 1H13V10h3V9h-2V8h2V7h-3V5.5h3.5c.55 0 1 .45 1 1v4zm-2 3.5H17v1.5h-1.5z" + }, + "children": [] + }] +}; +exports.ic_23mp = ic_23mp; \ No newline at end of file diff --git a/dist/md/ic_24mp.js b/dist/md/ic_24mp.js new file mode 100644 index 000000000..1ffc1397e --- /dev/null +++ b/dist/md/ic_24mp.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_24mp = void 0; +var ic_24mp = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 9H8v1h3v1.5H6.5V9c0-.55.45-1 1-1h2V7h-3V5.5H10c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1zm8.5 1h-1v1.5H16V10h-3V5.5h1.5v3H16v-3h1.5v3h1V10zm-3 4H17v1.5h-1.5z" + }, + "children": [] + }] +}; +exports.ic_24mp = ic_24mp; \ No newline at end of file diff --git a/dist/md/ic_2k.js b/dist/md/ic_2k.js new file mode 100644 index 000000000..04c1010e4 --- /dev/null +++ b/dist/md/ic_2k.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_2k = void 0; +var ic_2k = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 9.5H8v1h3V15H6.5v-2.5c0-.55.45-1 1-1h2v-1h-3V9H10c.55 0 1 .45 1 1v1.5c0 .55-.45 1-1 1zm8 2.5h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z" + }, + "children": [] + }] +}; +exports.ic_2k = ic_2k; \ No newline at end of file diff --git a/dist/md/ic_2k_plus.js b/dist/md/ic_2k_plus.js new file mode 100644 index 000000000..a980f4bff --- /dev/null +++ b/dist/md/ic_2k_plus.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_2k_plus = void 0; +var ic_2k_plus = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9.5 8.5c0 .55-.45 1-1 1h-2v1h3V15H5v-2.5c0-.55.45-1 1-1h2v-1H5V9h3.5c.55 0 1 .45 1 1v1.5zm4.75 3.5l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15h-1.75zM20 12.5h-1.5V14h-1v-1.5H16v-1h1.5V10h1v1.5H20v1z" + }, + "children": [] + }] +}; +exports.ic_2k_plus = ic_2k_plus; \ No newline at end of file diff --git a/dist/md/ic_2mp.js b/dist/md/ic_2mp.js new file mode 100644 index 000000000..b74593f57 --- /dev/null +++ b/dist/md/ic_2mp.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_2mp = void 0; +var ic_2mp = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zm-2-9.5h-2v1h3v1.5H10V9c0-.55.45-1 1-1h2V7h-3V5.5h3.5c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1zm2 5H17v1.5h-1.5z" + }, + "children": [] + }] +}; +exports.ic_2mp = ic_2mp; \ No newline at end of file diff --git a/dist/md/ic_360.js b/dist/md/ic_360.js new file mode 100644 index 000000000..14eff3ec6 --- /dev/null +++ b/dist/md/ic_360.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_360 = void 0; +var ic_360 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 7C6.48 7 2 9.24 2 12c0 2.24 2.94 4.13 7 4.77V20l4-4-4-4v2.73c-3.15-.56-5-1.9-5-2.73 0-1.06 3.04-3 8-3s8 1.94 8 3c0 .73-1.46 1.89-4 2.53v2.05c3.53-.77 6-2.53 6-4.58 0-2.76-4.48-5-10-5z" + }, + "children": [] + }] +}; +exports.ic_360 = ic_360; \ No newline at end of file diff --git a/dist/md/ic_360_outline.js b/dist/md/ic_360_outline.js new file mode 100644 index 000000000..a81c78bc6 --- /dev/null +++ b/dist/md/ic_360_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_360_outline = void 0; +var ic_360_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 7C6.48 7 2 9.24 2 12c0 2.24 2.94 4.13 7 4.77V20l4-4-4-4v2.73c-3.15-.56-5-1.9-5-2.73 0-1.06 3.04-3 8-3s8 1.94 8 3c0 .73-1.46 1.89-4 2.53v2.05c3.53-.77 6-2.53 6-4.58 0-2.76-4.48-5-10-5z" + }, + "children": [] + }] +}; +exports.ic_360_outline = ic_360_outline; \ No newline at end of file diff --git a/dist/md/ic_360_twotone.js b/dist/md/ic_360_twotone.js new file mode 100644 index 000000000..09d4b63e5 --- /dev/null +++ b/dist/md/ic_360_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_360_twotone = void 0; +var ic_360_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 16.77V20l4-4-4-4v2.73c-3.15-.56-5-1.9-5-2.73 0-1.06 3.04-3 8-3s8 1.94 8 3c0 .73-1.46 1.89-4 2.53v2.05c3.53-.77 6-2.53 6-4.58 0-2.76-4.48-5-10-5S2 9.24 2 12c0 2.24 2.94 4.13 7 4.77z" + }, + "children": [] + }] +}; +exports.ic_360_twotone = ic_360_twotone; \ No newline at end of file diff --git a/dist/md/ic_3d_rotation.js b/dist/md/ic_3d_rotation.js new file mode 100644 index 000000000..0212f5795 --- /dev/null +++ b/dist/md/ic_3d_rotation.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_3d_rotation = void 0; +var ic_3d_rotation = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7.52 21.48C4.25 19.94 1.91 16.76 1.55 13H.05C.56 19.16 5.71 24 12 24l.66-.03-3.81-3.81-1.33 1.32zm.89-6.52c-.19 0-.37-.03-.52-.08-.16-.06-.29-.13-.4-.24-.11-.1-.2-.22-.26-.37-.06-.14-.09-.3-.09-.47h-1.3c0 .36.07.68.21.95.14.27.33.5.56.69.24.18.51.32.82.41.3.1.62.15.96.15.37 0 .72-.05 1.03-.15.32-.1.6-.25.83-.44s.42-.43.55-.72c.13-.29.2-.61.2-.97 0-.19-.02-.38-.07-.56-.05-.18-.12-.35-.23-.51-.1-.16-.24-.3-.4-.43-.17-.13-.37-.23-.61-.31.2-.09.37-.2.52-.33.15-.13.27-.27.37-.42.1-.15.17-.3.22-.46.05-.16.07-.32.07-.48 0-.36-.06-.68-.18-.96-.12-.28-.29-.51-.51-.69-.2-.19-.47-.33-.77-.43C9.1 8.05 8.76 8 8.39 8c-.36 0-.69.05-1 .16-.3.11-.57.26-.79.45-.21.19-.38.41-.51.67-.12.26-.18.54-.18.85h1.3c0-.17.03-.32.09-.45s.14-.25.25-.34c.11-.09.23-.17.38-.22.15-.05.3-.08.48-.08.4 0 .7.1.89.31.19.2.29.49.29.86 0 .18-.03.34-.08.49-.05.15-.14.27-.25.37-.11.1-.25.18-.41.24-.16.06-.36.09-.58.09H7.5v1.03h.77c.22 0 .42.02.6.07s.33.13.45.23c.12.11.22.24.29.4.07.16.1.35.1.57 0 .41-.12.72-.35.93-.23.23-.55.33-.95.33zm8.55-5.92c-.32-.33-.7-.59-1.14-.77-.43-.18-.92-.27-1.46-.27H12v8h2.3c.55 0 1.06-.09 1.51-.27.45-.18.84-.43 1.16-.76.32-.33.57-.73.74-1.19.17-.47.26-.99.26-1.57v-.4c0-.58-.09-1.1-.26-1.57-.18-.47-.43-.87-.75-1.2zm-.39 3.16c0 .42-.05.79-.14 1.13-.1.33-.24.62-.43.85-.19.23-.43.41-.71.53-.29.12-.62.18-.99.18h-.91V9.12h.97c.72 0 1.27.23 1.64.69.38.46.57 1.12.57 1.99v.4zM12 0l-.66.03 3.81 3.81 1.33-1.33c3.27 1.55 5.61 4.72 5.96 8.48h1.5C23.44 4.84 18.29 0 12 0z" + }, + "children": [] + }] +}; +exports.ic_3d_rotation = ic_3d_rotation; \ No newline at end of file diff --git a/dist/md/ic_3d_rotation_outline.js b/dist/md/ic_3d_rotation_outline.js new file mode 100644 index 000000000..46b1b95c9 --- /dev/null +++ b/dist/md/ic_3d_rotation_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_3d_rotation_outline = void 0; +var ic_3d_rotation_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7.53 21.48C4.26 19.94 1.92 16.76 1.56 13H.06c.51 6.16 5.66 11 11.95 11l.66-.03-3.81-3.81-1.33 1.32zm.89-6.52c-.19 0-.37-.03-.52-.08-.16-.06-.29-.13-.4-.24-.11-.1-.2-.22-.26-.37-.06-.14-.09-.3-.09-.47h-1.3c0 .36.07.68.21.95.14.27.33.5.56.69.24.18.51.32.82.41.3.1.62.15.96.15.37 0 .72-.05 1.03-.15.32-.1.6-.25.83-.44s.42-.43.55-.72.2-.61.2-.97c0-.19-.02-.38-.07-.56-.05-.18-.12-.35-.23-.51-.1-.16-.24-.3-.4-.43-.17-.13-.37-.23-.61-.31.2-.09.37-.2.52-.33.15-.13.27-.27.37-.42.1-.15.17-.3.22-.46s.07-.32.07-.48c0-.36-.06-.68-.18-.96s-.29-.51-.51-.69c-.2-.19-.47-.33-.77-.43C9.11 8.05 8.77 8 8.4 8c-.36 0-.69.05-1 .16-.3.11-.57.26-.79.45-.21.19-.38.41-.51.67-.12.26-.18.54-.18.85h1.3c0-.17.03-.32.09-.45s.14-.25.25-.34.23-.17.38-.22.3-.08.48-.08c.4 0 .7.1.89.31.19.2.29.49.29.86 0 .18-.03.34-.08.49s-.14.27-.25.37c-.11.1-.25.18-.41.24-.16.06-.36.09-.58.09h-.77v1.03h.77c.22 0 .42.02.6.07s.33.13.45.23c.12.11.22.24.29.4s.1.35.1.57c0 .41-.12.72-.35.93-.23.23-.55.33-.95.33zm8.55-5.92c-.32-.33-.7-.59-1.14-.77-.44-.18-.93-.27-1.47-.27H12v8h2.3c.55 0 1.06-.09 1.51-.27s.84-.43 1.16-.76c.32-.33.57-.73.74-1.19.17-.47.26-.99.26-1.57v-.4c0-.58-.09-1.1-.26-1.57s-.42-.87-.74-1.2zm-.39 3.16c0 .42-.05.79-.14 1.13-.1.33-.24.62-.43.85-.19.23-.43.41-.71.53-.29.12-.62.18-.99.18h-.91V9.12h.97c.72 0 1.27.23 1.64.69.38.46.57 1.12.57 1.99v.4zM12.01 0l-.66.03 3.81 3.81 1.33-1.33c3.27 1.55 5.61 4.72 5.96 8.48h1.5C23.45 4.84 18.3 0 12.01 0z" + }, + "children": [] + }] +}; +exports.ic_3d_rotation_outline = ic_3d_rotation_outline; \ No newline at end of file diff --git a/dist/md/ic_3d_rotation_twotone.js b/dist/md/ic_3d_rotation_twotone.js new file mode 100644 index 000000000..21bfdcdbc --- /dev/null +++ b/dist/md/ic_3d_rotation_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_3d_rotation_twotone = void 0; +var ic_3d_rotation_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7.53 21.48C4.26 19.94 1.92 16.76 1.56 13H.06c.51 6.16 5.66 11 11.95 11l.66-.03-3.81-3.81-1.33 1.32zm.89-6.52c-.19 0-.37-.03-.52-.08-.16-.06-.29-.13-.4-.24-.11-.1-.2-.22-.26-.37-.06-.14-.09-.3-.09-.47h-1.3c0 .36.07.68.21.95.14.27.33.5.56.69.24.18.51.32.82.41.3.1.62.15.96.15.37 0 .72-.05 1.03-.15.32-.1.6-.25.83-.44s.42-.43.55-.72.2-.61.2-.97c0-.19-.02-.38-.07-.56-.05-.18-.12-.35-.23-.51-.1-.16-.24-.3-.4-.43-.17-.13-.37-.23-.61-.31.2-.09.37-.2.52-.33.15-.13.27-.27.37-.42.1-.15.17-.3.22-.46s.07-.32.07-.48c0-.36-.06-.68-.18-.96s-.29-.51-.51-.69c-.2-.19-.47-.33-.77-.43C9.11 8.05 8.77 8 8.4 8c-.36 0-.69.05-1 .16-.3.11-.57.26-.79.45-.21.19-.38.41-.51.67-.12.26-.18.54-.18.85h1.3c0-.17.03-.32.09-.45s.14-.25.25-.34.23-.17.38-.22.3-.08.48-.08c.4 0 .7.1.89.31.19.2.29.49.29.86 0 .18-.03.34-.08.49s-.14.27-.25.37c-.11.1-.25.18-.41.24-.16.06-.36.09-.58.09h-.77v1.03h.77c.22 0 .42.02.6.07s.33.13.45.23c.12.11.22.24.29.4s.1.35.1.57c0 .41-.12.72-.35.93-.23.23-.55.33-.95.33zm8.55-5.92c-.32-.33-.7-.59-1.14-.77-.44-.18-.93-.27-1.47-.27H12v8h2.3c.55 0 1.06-.09 1.51-.27s.84-.43 1.16-.76c.32-.33.57-.73.74-1.19.17-.47.26-.99.26-1.57v-.4c0-.58-.09-1.1-.26-1.57s-.42-.87-.74-1.2zm-.39 3.16c0 .42-.05.79-.14 1.13-.1.33-.24.62-.43.85-.19.23-.43.41-.71.53-.29.12-.62.18-.99.18h-.91V9.12h.97c.72 0 1.27.23 1.64.69.38.46.57 1.12.57 1.99v.4zM12.01 0l-.66.03 3.81 3.81 1.33-1.33c3.27 1.55 5.61 4.72 5.96 8.48h1.5C23.45 4.84 18.3 0 12.01 0z" + }, + "children": [] + }] +}; +exports.ic_3d_rotation_twotone = ic_3d_rotation_twotone; \ No newline at end of file diff --git a/dist/md/ic_3k.js b/dist/md/ic_3k.js new file mode 100644 index 000000000..b3968f6de --- /dev/null +++ b/dist/md/ic_3k.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_3k = void 0; +var ic_3k = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8 11c0 .55-.45 1-1 1H6.5v-1.5h3v-1h-2v-1h2v-1h-3V9H10c.55 0 1 .45 1 1v4zm7 1h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z" + }, + "children": [] + }] +}; +exports.ic_3k = ic_3k; \ No newline at end of file diff --git a/dist/md/ic_3k_plus.js b/dist/md/ic_3k_plus.js new file mode 100644 index 000000000..7a53d7af2 --- /dev/null +++ b/dist/md/ic_3k_plus.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_3k_plus = void 0; +var ic_3k_plus = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9.5 14c0 .55-.45 1-1 1H5v-1.5h3v-1H6v-1h2v-1H5V9h3.5c.55 0 1 .45 1 1v4zm6.5 1h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15zm4-2.5h-1.5V14h-1v-1.5H16v-1h1.5V10h1v1.5H20v1z" + }, + "children": [] + }] +}; +exports.ic_3k_plus = ic_3k_plus; \ No newline at end of file diff --git a/dist/md/ic_3mp.js b/dist/md/ic_3mp.js new file mode 100644 index 000000000..62de764a3 --- /dev/null +++ b/dist/md/ic_3mp.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_3mp = void 0; +var ic_3mp = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zm-1-8c0 .55-.45 1-1 1H10V10h3V9h-2V8h2V7h-3V5.5h3.5c.55 0 1 .45 1 1v4zm1 3.5H17v1.5h-1.5z" + }, + "children": [] + }] +}; +exports.ic_3mp = ic_3mp; \ No newline at end of file diff --git a/dist/md/ic_4k.js b/dist/md/ic_4k.js new file mode 100644 index 000000000..180fd4caf --- /dev/null +++ b/dist/md/ic_4k.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_4k = void 0; +var ic_4k = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 10.5h-1V15H9.5v-1.5h-3V9H8v3h1.5V9H11v3h1v1.5zm6 1.5h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z" + }, + "children": [] + }] +}; +exports.ic_4k = ic_4k; \ No newline at end of file diff --git a/dist/md/ic_4k_outline.js b/dist/md/ic_4k_outline.js new file mode 100644 index 000000000..ad80b9e7b --- /dev/null +++ b/dist/md/ic_4k_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_4k_outline = void 0; +var ic_4k_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm0 16H5V5h14v14zm-9.5-4H11v-1.49h1V12h-1V9H9.5v3H8V9H6.5v4.5h3zm8.7 0l-2-3 2-3h-1.7l-2 3 2 3zm-3.7-3V9H13v6h1.5z" + }, + "children": [] + }] +}; +exports.ic_4k_outline = ic_4k_outline; \ No newline at end of file diff --git a/dist/md/ic_4k_plus.js b/dist/md/ic_4k_plus.js new file mode 100644 index 000000000..70ebd33e8 --- /dev/null +++ b/dist/md/ic_4k_plus.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_4k_plus = void 0; +var ic_4k_plus = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8.5 10.5h-1V15H8v-1.5H5V9h1.5v3H8V9h1.5v3h1v1.5zM16 15h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15zm4-2.5h-1.5V14h-1v-1.5H16v-1h1.5V10h1v1.5H20v1z" + }, + "children": [] + }] +}; +exports.ic_4k_plus = ic_4k_plus; \ No newline at end of file diff --git a/dist/md/ic_4k_twotone.js b/dist/md/ic_4k_twotone.js new file mode 100644 index 000000000..ae233fe03 --- /dev/null +++ b/dist/md/ic_4k_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_4k_twotone = void 0; +var ic_4k_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 5H5v14h14V5zm-7 8.51h-1V15H9.5v-1.5h-3V9H8v3h1.5V9H11v3h1v1.51zM18.2 15h-1.7l-2-3v3H13V9h1.5v3l2-3h1.7l-2 3 2 3z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 21h14c1.1 0 2-.9 2-2V5c0-1.1-.89-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.89 2 2 2zM5 5h14v14H5V5zm6 4H9.5v3H8V9H6.5v4.5h3V15H11v-1.49h1V12h-1zm5.5 0l-2 3 2 3h1.7l-2-3 2-3zM13 9v6h1.5V9z" + }, + "children": [] + }] +}; +exports.ic_4k_twotone = ic_4k_twotone; \ No newline at end of file diff --git a/dist/md/ic_4mp.js b/dist/md/ic_4mp.js new file mode 100644 index 000000000..9c740f61b --- /dev/null +++ b/dist/md/ic_4mp.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_4mp = void 0; +var ic_4mp = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3-8.5h-1v1.5h-1.5V10h-3V5.5H11v3h1.5v-3H14v3h1V10zm.5 8.5H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zm0-4.5H17v1.5h-1.5z" + }, + "children": [] + }] +}; +exports.ic_4mp = ic_4mp; \ No newline at end of file diff --git a/dist/md/ic_5g.js b/dist/md/ic_5g.js new file mode 100644 index 000000000..2caa51312 --- /dev/null +++ b/dist/md/ic_5g.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_5g = void 0; +var ic_5g = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,13h2v2h-5V9h7c0-1.1-0.9-2-2-2h-5c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h5c1.1,0,2-0.9,2-2v-4h-4V13z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,13h2v2h-5V9h7c0-1.1-0.9-2-2-2h-5c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h5c1.1,0,2-0.9,2-2v-4h-4V13z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M3,13h5v2H3v2h5c1.1,0,2-0.9,2-2v-2c0-1.1-0.9-2-2-2H5V9h5V7H3V13z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M3,13h5v2H3v2h5c1.1,0,2-0.9,2-2v-2c0-1.1-0.9-2-2-2H5V9h5V7H3V13z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_5g = ic_5g; \ No newline at end of file diff --git a/dist/md/ic_5g_outline.js b/dist/md/ic_5g_outline.js new file mode 100644 index 000000000..e7de11e3f --- /dev/null +++ b/dist/md/ic_5g_outline.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_5g_outline = void 0; +var ic_5g_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M16.5,13H19v2h-5V9h7c0-1.1-0.9-2-2-2h-5c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h5c1.1,0,2-0.9,2-2v-4h-4.5V13z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M16.5,13H19v2h-5V9h7c0-1.1-0.9-2-2-2h-5c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h5c1.1,0,2-0.9,2-2v-4h-4.5V13z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M3,13h5v2H3v2h5c1.1,0,2-0.9,2-2v-2c0-1.1-0.9-2-2-2H5V9h5V7H3V13z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M3,13h5v2H3v2h5c1.1,0,2-0.9,2-2v-2c0-1.1-0.9-2-2-2H5V9h5V7H3V13z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_5g_outline = ic_5g_outline; \ No newline at end of file diff --git a/dist/md/ic_5g_twotone.js b/dist/md/ic_5g_twotone.js new file mode 100644 index 000000000..988f9e944 --- /dev/null +++ b/dist/md/ic_5g_twotone.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_5g_twotone = void 0; +var ic_5g_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M16.5,13H19v2h-5V9h7c0-1.1-0.9-2-2-2h-5c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h5c1.1,0,2-0.9,2-2v-4h-4.5V13z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M16.5,13H19v2h-5V9h7c0-1.1-0.9-2-2-2h-5c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h5c1.1,0,2-0.9,2-2v-4h-4.5V13z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M3,13h5v2H3v2h5c1.1,0,2-0.9,2-2v-2c0-1.1-0.9-2-2-2H5V9h5V7H3V13z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M3,13h5v2H3v2h5c1.1,0,2-0.9,2-2v-2c0-1.1-0.9-2-2-2H5V9h5V7H3V13z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_5g_twotone = ic_5g_twotone; \ No newline at end of file diff --git a/dist/md/ic_5k.js b/dist/md/ic_5k.js new file mode 100644 index 000000000..f4899958c --- /dev/null +++ b/dist/md/ic_5k.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_5k = void 0; +var ic_5k = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8 7.5H8v1h2c.55 0 1 .45 1 1V14c0 .55-.45 1-1 1H6.5v-1.5h3v-1h-3V9H11v1.5zm7 4.5h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z" + }, + "children": [] + }] +}; +exports.ic_5k = ic_5k; \ No newline at end of file diff --git a/dist/md/ic_5k_plus.js b/dist/md/ic_5k_plus.js new file mode 100644 index 000000000..1acef951e --- /dev/null +++ b/dist/md/ic_5k_plus.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_5k_plus = void 0; +var ic_5k_plus = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9.5 7.5h-3v1h2c.55 0 1 .45 1 1V14c0 .55-.45 1-1 1H5v-1.5h3v-1H5V9h4.5v1.5zM16 15h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15zm4-2.5h-1.5V14h-1v-1.5H16v-1h1.5V10h1v1.5H20v1z" + }, + "children": [] + }] +}; +exports.ic_5k_plus = ic_5k_plus; \ No newline at end of file diff --git a/dist/md/ic_5mp.js b/dist/md/ic_5mp.js new file mode 100644 index 000000000..37d7e9bd4 --- /dev/null +++ b/dist/md/ic_5mp.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_5mp = void 0; +var ic_5mp = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM14.5 7h-3v1h2c.55 0 1 .45 1 1v1.5c0 .55-.45 1-1 1H10V10h3V9h-3V5.5h4.5V7zm1 7H17v1.5h-1.5z" + }, + "children": [] + }] +}; +exports.ic_5mp = ic_5mp; \ No newline at end of file diff --git a/dist/md/ic_6_ft_apart.js b/dist/md/ic_6_ft_apart.js new file mode 100644 index 000000000..8cfbd012a --- /dev/null +++ b/dist/md/ic_6_ft_apart.js @@ -0,0 +1,26 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_6_ft_apart = void 0; +var ic_6_ft_apart = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6,6c1.1,0,2-0.9,2-2S7.1,2,6,2S4,2.9,4,4S4.9,6,6,6z M10,9.43c0-0.81-0.48-1.53-1.22-1.85C7.93,7.21,6.99,7,6,7 C5.01,7,4.07,7.21,3.22,7.58C2.48,7.9,2,8.62,2,9.43V10h8V9.43z M18,6c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S16.9,6,18,6z M22,9.43 c0-0.81-0.48-1.53-1.22-1.85C19.93,7.21,18.99,7,18,7c-0.99,0-1.93,0.21-2.78,0.58C14.48,7.9,14,8.62,14,9.43V10h8V9.43z M19,17 v-2.01L5,15v2l-3-3l3-3v2.01L19,13v-2l3,3L19,17z M10,19v-1H7.5C7.22,18,7,18.22,7,18.5v3C7,21.78,7.22,22,7.5,22h2 c0.28,0,0.5-0.22,0.5-0.5V20c0-0.28-0.22-0.5-0.5-0.5H8V19H10z M9,20.5V21H8v-0.5H9z M17.5,19h-1v3h-1v-3h-1v-1h3V19z M12.5,19v0.5 h1v1h-1V22h-1v-4H14v1H12.5z" + }, + "children": [] + }] +}; +exports.ic_6_ft_apart = ic_6_ft_apart; \ No newline at end of file diff --git a/dist/md/ic_6_ft_apart_outline.js b/dist/md/ic_6_ft_apart_outline.js new file mode 100644 index 000000000..3ad681d2f --- /dev/null +++ b/dist/md/ic_6_ft_apart_outline.js @@ -0,0 +1,26 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_6_ft_apart_outline = void 0; +var ic_6_ft_apart_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6,6c1.1,0,2-0.9,2-2S7.1,2,6,2S4,2.9,4,4S4.9,6,6,6z M10,9.43c0-0.81-0.48-1.53-1.22-1.85C7.93,7.21,6.99,7,6,7 C5.01,7,4.07,7.21,3.22,7.58C2.48,7.9,2,8.62,2,9.43V10h8V9.43z M18,6c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S16.9,6,18,6z M22,9.43 c0-0.81-0.48-1.53-1.22-1.85C19.93,7.21,18.99,7,18,7c-0.99,0-1.93,0.21-2.78,0.58C14.48,7.9,14,8.62,14,9.43V10h8V9.43z M19,17 v-2.01L5,15v2l-3-3l3-3v2.01L19,13v-2l3,3L19,17z M10,19v-1H7.5C7.22,18,7,18.22,7,18.5v3C7,21.78,7.22,22,7.5,22h2 c0.28,0,0.5-0.22,0.5-0.5V20c0-0.28-0.22-0.5-0.5-0.5H8V19H10z M9,20.5V21H8v-0.5H9z M17.5,19h-1v3h-1v-3h-1v-1h3V19z M12.5,19v0.5 h1v1h-1V22h-1v-4H14v1H12.5z" + }, + "children": [] + }] +}; +exports.ic_6_ft_apart_outline = ic_6_ft_apart_outline; \ No newline at end of file diff --git a/dist/md/ic_6_ft_apart_twotone.js b/dist/md/ic_6_ft_apart_twotone.js new file mode 100644 index 000000000..b6914515b --- /dev/null +++ b/dist/md/ic_6_ft_apart_twotone.js @@ -0,0 +1,26 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_6_ft_apart_twotone = void 0; +var ic_6_ft_apart_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6,6c1.1,0,2-0.9,2-2S7.1,2,6,2S4,2.9,4,4S4.9,6,6,6z M10,9.43c0-0.81-0.48-1.53-1.22-1.85C7.93,7.21,6.99,7,6,7 C5.01,7,4.07,7.21,3.22,7.58C2.48,7.9,2,8.62,2,9.43V10h8V9.43z M18,6c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S16.9,6,18,6z M22,9.43 c0-0.81-0.48-1.53-1.22-1.85C19.93,7.21,18.99,7,18,7c-0.99,0-1.93,0.21-2.78,0.58C14.48,7.9,14,8.62,14,9.43V10h8V9.43z M19,17 v-2.01L5,15v2l-3-3l3-3v2.01L19,13v-2l3,3L19,17z M10,19v-1H7.5C7.22,18,7,18.22,7,18.5v3C7,21.78,7.22,22,7.5,22h2 c0.28,0,0.5-0.22,0.5-0.5V20c0-0.28-0.22-0.5-0.5-0.5H8V19H10z M9,20.5V21H8v-0.5H9z M17.5,19h-1v3h-1v-3h-1v-1h3V19z M12.5,19v0.5 h1v1h-1V22h-1v-4H14v1H12.5z" + }, + "children": [] + }] +}; +exports.ic_6_ft_apart_twotone = ic_6_ft_apart_twotone; \ No newline at end of file diff --git a/dist/md/ic_6k.js b/dist/md/ic_6k.js new file mode 100644 index 000000000..f202e7c1b --- /dev/null +++ b/dist/md/ic_6k.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_6k = void 0; +var ic_6k = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8 12.5h1.5V14H8zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8 7.5H8v1h2c.55 0 1 .45 1 1V14c0 .55-.45 1-1 1H7.5c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1H11v1.5zm7 4.5h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z" + }, + "children": [] + }] +}; +exports.ic_6k = ic_6k; \ No newline at end of file diff --git a/dist/md/ic_6k_plus.js b/dist/md/ic_6k_plus.js new file mode 100644 index 000000000..9c7abb204 --- /dev/null +++ b/dist/md/ic_6k_plus.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_6k_plus = void 0; +var ic_6k_plus = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6.5 12.5H8V14H6.5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9.5 7.5h-3v1h2c.55 0 1 .45 1 1V14c0 .55-.45 1-1 1H6c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3.5v1.5zM16 15h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15zm4-2.5h-1.5V14h-1v-1.5H16v-1h1.5V10h1v1.5H20v1z" + }, + "children": [] + }] +}; +exports.ic_6k_plus = ic_6k_plus; \ No newline at end of file diff --git a/dist/md/ic_6mp.js b/dist/md/ic_6mp.js new file mode 100644 index 000000000..c0d2cad8d --- /dev/null +++ b/dist/md/ic_6mp.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_6mp = void 0; +var ic_6mp = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.5 9H13v1.5h-1.5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm-1-7c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3.5V7h-3v1h2c.55 0 1 .45 1 1v1.5c0 .55-.45 1-1 1H11zm4.5 7H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zm0-4.5H17v1.5h-1.5z" + }, + "children": [] + }] +}; +exports.ic_6mp = ic_6mp; \ No newline at end of file diff --git a/dist/md/ic_7k.js b/dist/md/ic_7k.js new file mode 100644 index 000000000..ffc94fcc2 --- /dev/null +++ b/dist/md/ic_7k.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_7k = void 0; +var ic_7k = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9.5 15H7.75l1.38-4.5H6.5V9H10c.67 0 1.15.65.96 1.29L9.5 15zm8.5 0h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z" + }, + "children": [] + }] +}; +exports.ic_7k = ic_7k; \ No newline at end of file diff --git a/dist/md/ic_7k_plus.js b/dist/md/ic_7k_plus.js new file mode 100644 index 000000000..c19289bd2 --- /dev/null +++ b/dist/md/ic_7k_plus.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_7k_plus = void 0; +var ic_7k_plus = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM8 15H6.25l1.38-4.5H5V9h3.5c.67 0 1.15.65.96 1.29L8 15zm8 0h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15zm4-2.5h-1.5V14h-1v-1.5H16v-1h1.5V10h1v1.5H20v1z" + }, + "children": [] + }] +}; +exports.ic_7k_plus = ic_7k_plus; \ No newline at end of file diff --git a/dist/md/ic_7mp.js b/dist/md/ic_7mp.js new file mode 100644 index 000000000..c8021abaa --- /dev/null +++ b/dist/md/ic_7mp.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_7mp = void 0; +var ic_7mp = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zm-2.5-7h-1.75L12.62 7H10V5.5h3.5c.67 0 1.15.65.96 1.29L13 11.5zm2.5 2.5H17v1.5h-1.5z" + }, + "children": [] + }] +}; +exports.ic_7mp = ic_7mp; \ No newline at end of file diff --git a/dist/md/ic_8k.js b/dist/md/ic_8k.js new file mode 100644 index 000000000..e80bd5157 --- /dev/null +++ b/dist/md/ic_8k.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_8k = void 0; +var ic_8k = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8 12.5h1.5V14H8zM8 10h1.5v1.5H8zm11-7H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8 11c0 .55-.45 1-1 1H7.5c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1H10c.55 0 1 .45 1 1v4zm7 1h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z" + }, + "children": [] + }] +}; +exports.ic_8k = ic_8k; \ No newline at end of file diff --git a/dist/md/ic_8k_plus.js b/dist/md/ic_8k_plus.js new file mode 100644 index 000000000..a0e7dcfe2 --- /dev/null +++ b/dist/md/ic_8k_plus.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_8k_plus = void 0; +var ic_8k_plus = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6.5 12.5H8V14H6.5zm0-2.5H8v1.5H6.5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9.5 14c0 .55-.45 1-1 1H6c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4zm6.5 1h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15zm4-2.5h-1.5V14h-1v-1.5H16v-1h1.5V10h1v1.5H20v1z" + }, + "children": [] + }] +}; +exports.ic_8k_plus = ic_8k_plus; \ No newline at end of file diff --git a/dist/md/ic_8mp.js b/dist/md/ic_8mp.js new file mode 100644 index 000000000..81845512a --- /dev/null +++ b/dist/md/ic_8mp.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_8mp = void 0; +var ic_8mp = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.5 9H13v1.5h-1.5zm0-2.5H13V8h-1.5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zm-1-8c0 .55-.45 1-1 1H11c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4zm1 3.5H17v1.5h-1.5z" + }, + "children": [] + }] +}; +exports.ic_8mp = ic_8mp; \ No newline at end of file diff --git a/dist/md/ic_9k.js b/dist/md/ic_9k.js new file mode 100644 index 000000000..896d70ca9 --- /dev/null +++ b/dist/md/ic_9k.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_9k = void 0; +var ic_9k = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8 10h1.5v1.5H8zm11-7H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8 11c0 .55-.45 1-1 1H6.5v-1.5h3v-1h-2c-.55 0-1-.45-1-1V10c0-.55.45-1 1-1H10c.55 0 1 .45 1 1v4zm7 1h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z" + }, + "children": [] + }] +}; +exports.ic_9k = ic_9k; \ No newline at end of file diff --git a/dist/md/ic_9k_plus.js b/dist/md/ic_9k_plus.js new file mode 100644 index 000000000..fe2a782f5 --- /dev/null +++ b/dist/md/ic_9k_plus.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_9k_plus = void 0; +var ic_9k_plus = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6.5 10H8v1.5H6.5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9.5 14c0 .55-.45 1-1 1H5v-1.5h3v-1H6c-.55 0-1-.45-1-1V10c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4zm6.5 1h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15zm4-2.5h-1.5V14h-1v-1.5H16v-1h1.5V10h1v1.5H20v1z" + }, + "children": [] + }] +}; +exports.ic_9k_plus = ic_9k_plus; \ No newline at end of file diff --git a/dist/md/ic_9mp.js b/dist/md/ic_9mp.js new file mode 100644 index 000000000..8bc993c58 --- /dev/null +++ b/dist/md/ic_9mp.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_9mp = void 0; +var ic_9mp = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.5 6.5H13V8h-1.5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zm-1-8c0 .55-.45 1-1 1H10V10h3V9h-2c-.55 0-1-.45-1-1V6.5c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4zm1 3.5H17v1.5h-1.5z" + }, + "children": [] + }] +}; +exports.ic_9mp = ic_9mp; \ No newline at end of file diff --git a/dist/md/ic_ac_unit.js b/dist/md/ic_ac_unit.js new file mode 100644 index 000000000..51b5e6ddc --- /dev/null +++ b/dist/md/ic_ac_unit.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_ac_unit = void 0; +var ic_ac_unit = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 11h-4.17l3.24-3.24-1.41-1.42L15 11h-2V9l4.66-4.66-1.42-1.41L13 6.17V2h-2v4.17L7.76 2.93 6.34 4.34 11 9v2H9L4.34 6.34 2.93 7.76 6.17 11H2v2h4.17l-3.24 3.24 1.41 1.42L9 13h2v2l-4.66 4.66 1.42 1.41L11 17.83V22h2v-4.17l3.24 3.24 1.42-1.41L13 15v-2h2l4.66 4.66 1.41-1.42L17.83 13H22z" + }, + "children": [] + }] +}; +exports.ic_ac_unit = ic_ac_unit; \ No newline at end of file diff --git a/dist/md/ic_ac_unit_outline.js b/dist/md/ic_ac_unit_outline.js new file mode 100644 index 000000000..4f1287211 --- /dev/null +++ b/dist/md/ic_ac_unit_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_ac_unit_outline = void 0; +var ic_ac_unit_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 11h-4.17l3.24-3.24-1.41-1.42L15 11h-2V9l4.66-4.66-1.42-1.41L13 6.17V2h-2v4.17L7.76 2.93 6.34 4.34 11 9v2H9L4.34 6.34 2.93 7.76 6.17 11H2v2h4.17l-3.24 3.24 1.41 1.42L9 13h2v2l-4.66 4.66 1.42 1.41L11 17.83V22h2v-4.17l3.24 3.24 1.42-1.41L13 15v-2h2l4.66 4.66 1.41-1.42L17.83 13H22v-2z" + }, + "children": [] + }] +}; +exports.ic_ac_unit_outline = ic_ac_unit_outline; \ No newline at end of file diff --git a/dist/md/ic_ac_unit_twotone.js b/dist/md/ic_ac_unit_twotone.js new file mode 100644 index 000000000..ccc27c192 --- /dev/null +++ b/dist/md/ic_ac_unit_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_ac_unit_twotone = void 0; +var ic_ac_unit_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 11h-4.17l3.24-3.24-1.41-1.42L15 11h-2V9l4.66-4.66-1.42-1.41L13 6.17V2h-2v4.17L7.76 2.93 6.34 4.34 11 9v2H9L4.34 6.34 2.93 7.76 6.17 11H2v2h4.17l-3.24 3.24 1.41 1.42L9 13h2v2l-4.66 4.66 1.42 1.41L11 17.83V22h2v-4.17l3.24 3.24 1.42-1.41L13 15v-2h2l4.66 4.66 1.41-1.42L17.83 13H22v-2z" + }, + "children": [] + }] +}; +exports.ic_ac_unit_twotone = ic_ac_unit_twotone; \ No newline at end of file diff --git a/dist/md/ic_access_alarm.js b/dist/md/ic_access_alarm.js new file mode 100644 index 000000000..7784e15ea --- /dev/null +++ b/dist/md/ic_access_alarm.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_access_alarm = void 0; +var ic_access_alarm = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM7.88 3.39L6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM12.5 8H11v6l4.75 2.85.75-1.23-4-2.37V8zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" + }, + "children": [] + }] +}; +exports.ic_access_alarm = ic_access_alarm; \ No newline at end of file diff --git a/dist/md/ic_access_alarm_outline.js b/dist/md/ic_access_alarm_outline.js new file mode 100644 index 000000000..461bc8825 --- /dev/null +++ b/dist/md/ic_access_alarm_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_access_alarm_outline = void 0; +var ic_access_alarm_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM7.88 3.39L6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM12.5 8H11v6l4.75 2.85.75-1.23-4-2.37V8zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" + }, + "children": [] + }] +}; +exports.ic_access_alarm_outline = ic_access_alarm_outline; \ No newline at end of file diff --git a/dist/md/ic_access_alarm_twotone.js b/dist/md/ic_access_alarm_twotone.js new file mode 100644 index 000000000..e797c9e5c --- /dev/null +++ b/dist/md/ic_access_alarm_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_access_alarm_twotone = void 0; +var ic_access_alarm_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 6c-3.87 0-7 3.13-7 7s3.13 7 7 7 7-3.13 7-7-3.13-7-7-7zm3.75 10.85L11 14V8h1.5v5.25l4 2.37-.75 1.23z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm.5-12H11v6l4.75 2.85.75-1.23-4-2.37zM22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86zM7.88 3.39L6.6 1.86 2 5.71l1.29 1.53z" + }, + "children": [] + }] +}; +exports.ic_access_alarm_twotone = ic_access_alarm_twotone; \ No newline at end of file diff --git a/dist/md/ic_access_alarms.js b/dist/md/ic_access_alarms.js new file mode 100644 index 000000000..a55f4e5ce --- /dev/null +++ b/dist/md/ic_access_alarms.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_access_alarms = void 0; +var ic_access_alarms = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M-618-568H782v3600H-618zM0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 5.7l-4.6-3.9-1.3 1.5 4.6 3.9L22 5.7zM7.9 3.4L6.6 1.9 2 5.7l1.3 1.5 4.6-3.8zM12.5 8H11v6l4.7 2.9.8-1.2-4-2.4V8zM12 4c-5 0-9 4-9 9s4 9 9 9 9-4 9-9-4-9-9-9zm0 16c-3.9 0-7-3.1-7-7s3.1-7 7-7 7 3.1 7 7-3.1 7-7 7z" + }, + "children": [] + }] +}; +exports.ic_access_alarms = ic_access_alarms; \ No newline at end of file diff --git a/dist/md/ic_access_alarms_outline.js b/dist/md/ic_access_alarms_outline.js new file mode 100644 index 000000000..5c7dfbd4e --- /dev/null +++ b/dist/md/ic_access_alarms_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_access_alarms_outline = void 0; +var ic_access_alarms_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 5.7l-4.6-3.9-1.3 1.5 4.6 3.9L22 5.7zM7.9 3.4L6.6 1.9 2 5.7l1.3 1.5 4.6-3.8zM12.5 8H11v6l4.7 2.9.8-1.2-4-2.4V8zM12 4c-5 0-9 4-9 9s4 9 9 9 9-4 9-9-4-9-9-9zm0 16c-3.9 0-7-3.1-7-7s3.1-7 7-7 7 3.1 7 7-3.1 7-7 7z" + }, + "children": [] + }] +}; +exports.ic_access_alarms_outline = ic_access_alarms_outline; \ No newline at end of file diff --git a/dist/md/ic_access_alarms_twotone.js b/dist/md/ic_access_alarms_twotone.js new file mode 100644 index 000000000..04cf73100 --- /dev/null +++ b/dist/md/ic_access_alarms_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_access_alarms_twotone = void 0; +var ic_access_alarms_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 6c-3.9 0-7 3.1-7 7s3.1 7 7 7 7-3.1 7-7-3.1-7-7-7zm3.7 10.9L11 14V8h1.5v5.3l4 2.4-.8 1.2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 5.7l-4.6-3.9-1.3 1.5 4.6 3.9zM12.5 8H11v6l4.7 2.9.8-1.2-4-2.4zM12 4c-5 0-9 4-9 9s4 9 9 9 9-4 9-9-4-9-9-9zm0 16c-3.9 0-7-3.1-7-7s3.1-7 7-7 7 3.1 7 7-3.1 7-7 7zM7.9 3.4L6.6 1.9 2 5.7l1.3 1.5z" + }, + "children": [] + }] +}; +exports.ic_access_alarms_twotone = ic_access_alarms_twotone; \ No newline at end of file diff --git a/dist/md/ic_access_time.js b/dist/md/ic_access_time.js new file mode 100644 index 000000000..d06bb70a7 --- /dev/null +++ b/dist/md/ic_access_time.js @@ -0,0 +1,30 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_access_time = void 0; +var ic_access_time = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12.5 7H11v6l5.25 3.15.75-1.23-4.5-2.67z" + }, + "children": [] + }] +}; +exports.ic_access_time = ic_access_time; \ No newline at end of file diff --git a/dist/md/ic_access_time_outline.js b/dist/md/ic_access_time_outline.js new file mode 100644 index 000000000..36b1b0c4b --- /dev/null +++ b/dist/md/ic_access_time_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_access_time_outline = void 0; +var ic_access_time_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z" + }, + "children": [] + }] +}; +exports.ic_access_time_outline = ic_access_time_outline; \ No newline at end of file diff --git a/dist/md/ic_access_time_twotone.js b/dist/md/ic_access_time_twotone.js new file mode 100644 index 000000000..0999b8189 --- /dev/null +++ b/dist/md/ic_access_time_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_access_time_twotone = void 0; +var ic_access_time_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm4.25 12.15L11 13V7h1.5v5.25l4.5 2.67-.75 1.23z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z" + }, + "children": [] + }] +}; +exports.ic_access_time_twotone = ic_access_time_twotone; \ No newline at end of file diff --git a/dist/md/ic_accessibility.js b/dist/md/ic_accessibility.js new file mode 100644 index 000000000..ceb23f181 --- /dev/null +++ b/dist/md/ic_accessibility.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_accessibility = void 0; +var ic_accessibility = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm9 7h-6v13h-2v-6h-2v6H9V9H3V7h18v2z" + }, + "children": [] + }] +}; +exports.ic_accessibility = ic_accessibility; \ No newline at end of file diff --git a/dist/md/ic_accessibility_new.js b/dist/md/ic_accessibility_new.js new file mode 100644 index 000000000..f29588e79 --- /dev/null +++ b/dist/md/ic_accessibility_new.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_accessibility_new = void 0; +var ic_accessibility_new = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20.5 6c-2.61.7-5.67 1-8.5 1s-5.89-.3-8.5-1L3 8c1.86.5 4 .83 6 1v13h2v-6h2v6h2V9c2-.17 4.14-.5 6-1l-.5-2zM12 6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z" + }, + "children": [] + }] +}; +exports.ic_accessibility_new = ic_accessibility_new; \ No newline at end of file diff --git a/dist/md/ic_accessibility_new_outline.js b/dist/md/ic_accessibility_new_outline.js new file mode 100644 index 000000000..c673fb33e --- /dev/null +++ b/dist/md/ic_accessibility_new_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_accessibility_new_outline = void 0; +var ic_accessibility_new_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20.5 6c-2.61.7-5.67 1-8.5 1s-5.89-.3-8.5-1L3 8c1.86.5 4 .83 6 1v13h2v-6h2v6h2V9c2-.17 4.14-.5 6-1l-.5-2zM12 6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z" + }, + "children": [] + }] +}; +exports.ic_accessibility_new_outline = ic_accessibility_new_outline; \ No newline at end of file diff --git a/dist/md/ic_accessibility_new_twotone.js b/dist/md/ic_accessibility_new_twotone.js new file mode 100644 index 000000000..c1c6ff2d8 --- /dev/null +++ b/dist/md/ic_accessibility_new_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_accessibility_new_twotone = void 0; +var ic_accessibility_new_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20.5 6c-2.61.7-5.67 1-8.5 1s-5.89-.3-8.5-1L3 8c1.86.5 4 .83 6 1v13h2v-6h2v6h2V9c2-.17 4.14-.5 6-1l-.5-2zM12 6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z" + }, + "children": [] + }] +}; +exports.ic_accessibility_new_twotone = ic_accessibility_new_twotone; \ No newline at end of file diff --git a/dist/md/ic_accessibility_outline.js b/dist/md/ic_accessibility_outline.js new file mode 100644 index 000000000..3043bda06 --- /dev/null +++ b/dist/md/ic_accessibility_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_accessibility_outline = void 0; +var ic_accessibility_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm9 7h-6v13h-2v-6h-2v6H9V9H3V7h18v2z" + }, + "children": [] + }] +}; +exports.ic_accessibility_outline = ic_accessibility_outline; \ No newline at end of file diff --git a/dist/md/ic_accessibility_twotone.js b/dist/md/ic_accessibility_twotone.js new file mode 100644 index 000000000..f73dc160a --- /dev/null +++ b/dist/md/ic_accessibility_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_accessibility_twotone = void 0; +var ic_accessibility_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm9 7h-6v13h-2v-6h-2v6H9V9H3V7h18v2z" + }, + "children": [] + }] +}; +exports.ic_accessibility_twotone = ic_accessibility_twotone; \ No newline at end of file diff --git a/dist/md/ic_accessible.js b/dist/md/ic_accessible.js new file mode 100644 index 000000000..337101736 --- /dev/null +++ b/dist/md/ic_accessible.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_accessible = void 0; +var ic_accessible = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "4", + "r": "2" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 13v-2c-1.54.02-3.09-.75-4.07-1.83l-1.29-1.43c-.17-.19-.38-.34-.61-.45-.01 0-.01-.01-.02-.01H13c-.35-.2-.75-.3-1.19-.26C10.76 7.11 10 8.04 10 9.09V15c0 1.1.9 2 2 2h5v5h2v-5.5c0-1.1-.9-2-2-2h-3v-3.45c1.29 1.07 3.25 1.94 5 1.95zm-6.17 5c-.41 1.16-1.52 2-2.83 2-1.66 0-3-1.34-3-3 0-1.31.84-2.41 2-2.83V12.1c-2.28.46-4 2.48-4 4.9 0 2.76 2.24 5 5 5 2.42 0 4.44-1.72 4.9-4h-2.07z" + }, + "children": [] + }] +}; +exports.ic_accessible = ic_accessible; \ No newline at end of file diff --git a/dist/md/ic_accessible_forward.js b/dist/md/ic_accessible_forward.js new file mode 100644 index 000000000..edb82715b --- /dev/null +++ b/dist/md/ic_accessible_forward.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_accessible_forward = void 0; +var ic_accessible_forward = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "17", + "cy": "4.54", + "r": "2" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 17h-2c0 1.65-1.35 3-3 3s-3-1.35-3-3 1.35-3 3-3v-2c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5zm3-3.5h-1.86l1.67-3.67C17.42 8.5 16.44 7 14.96 7h-5.2c-.81 0-1.54.47-1.87 1.2L7.22 10l1.92.53L9.79 9H12l-1.83 4.1c-.6 1.33.39 2.9 1.85 2.9H17v5h2v-5.5c0-1.1-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_accessible_forward = ic_accessible_forward; \ No newline at end of file diff --git a/dist/md/ic_accessible_forward_outline.js b/dist/md/ic_accessible_forward_outline.js new file mode 100644 index 000000000..c16c71397 --- /dev/null +++ b/dist/md/ic_accessible_forward_outline.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_accessible_forward_outline = void 0; +var ic_accessible_forward_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "18", + "cy": "4.54", + "r": "2" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 17h-2c0 1.65-1.35 3-3 3s-3-1.35-3-3 1.35-3 3-3v-2c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5zm3-3.5h-1.86l1.67-3.67C18.42 8.5 17.44 7 15.96 7h-5.2c-.81 0-1.54.47-1.87 1.2L8.22 10l1.92.53.65-1.53H13l-1.83 4.1c-.6 1.33.39 2.9 1.85 2.9H18v5h2v-5.5c0-1.1-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_accessible_forward_outline = ic_accessible_forward_outline; \ No newline at end of file diff --git a/dist/md/ic_accessible_forward_twotone.js b/dist/md/ic_accessible_forward_twotone.js new file mode 100644 index 000000000..609150b9e --- /dev/null +++ b/dist/md/ic_accessible_forward_twotone.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_accessible_forward_twotone = void 0; +var ic_accessible_forward_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "18", + "cy": "4.54", + "r": "2" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 17h-2c0 1.65-1.35 3-3 3s-3-1.35-3-3 1.35-3 3-3v-2c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5zm3-3.5h-1.86l1.67-3.67C18.42 8.5 17.44 7 15.96 7h-5.2c-.81 0-1.54.47-1.87 1.2L8.22 10l1.92.53.65-1.53H13l-1.83 4.1c-.6 1.33.39 2.9 1.85 2.9H18v5h2v-5.5c0-1.1-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_accessible_forward_twotone = ic_accessible_forward_twotone; \ No newline at end of file diff --git a/dist/md/ic_accessible_outline.js b/dist/md/ic_accessible_outline.js new file mode 100644 index 000000000..c94ceadbc --- /dev/null +++ b/dist/md/ic_accessible_outline.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_accessible_outline = void 0; +var ic_accessible_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "4", + "r": "2" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 13v-2c-1.54.02-3.09-.75-4.07-1.83l-1.29-1.43c-.17-.19-.38-.34-.61-.45-.01 0-.01-.01-.02-.01H13c-.35-.2-.75-.3-1.19-.26C10.76 7.11 10 8.04 10 9.09V15c0 1.1.9 2 2 2h5v5h2v-5.5c0-1.1-.9-2-2-2h-3v-3.45c1.29 1.07 3.25 1.94 5 1.95zm-9 7c-1.66 0-3-1.34-3-3 0-1.31.84-2.41 2-2.83V12.1c-2.28.46-4 2.48-4 4.9 0 2.76 2.24 5 5 5 2.42 0 4.44-1.72 4.9-4h-2.07c-.41 1.16-1.52 2-2.83 2z" + }, + "children": [] + }] +}; +exports.ic_accessible_outline = ic_accessible_outline; \ No newline at end of file diff --git a/dist/md/ic_accessible_twotone.js b/dist/md/ic_accessible_twotone.js new file mode 100644 index 000000000..b4a3bbc78 --- /dev/null +++ b/dist/md/ic_accessible_twotone.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_accessible_twotone = void 0; +var ic_accessible_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "4", + "r": "2" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 13v-2c-1.54.02-3.09-.75-4.07-1.83l-1.29-1.43c-.17-.19-.38-.34-.61-.45-.01 0-.01-.01-.02-.01H13c-.35-.2-.75-.3-1.19-.26C10.76 7.11 10 8.04 10 9.09V15c0 1.1.9 2 2 2h5v5h2v-5.5c0-1.1-.9-2-2-2h-3v-3.45c1.29 1.07 3.25 1.94 5 1.95zm-6.17 5c-.41 1.16-1.52 2-2.83 2-1.66 0-3-1.34-3-3 0-1.31.84-2.41 2-2.83V12.1c-2.28.46-4 2.48-4 4.9 0 2.76 2.24 5 5 5 2.42 0 4.44-1.72 4.9-4h-2.07z" + }, + "children": [] + }] +}; +exports.ic_accessible_twotone = ic_accessible_twotone; \ No newline at end of file diff --git a/dist/md/ic_account_balance.js b/dist/md/ic_account_balance.js new file mode 100644 index 000000000..c152a3f6a --- /dev/null +++ b/dist/md/ic_account_balance.js @@ -0,0 +1,127 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_account_balance = void 0; +var ic_account_balance = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "height": "7", + "width": "3", + "x": "4", + "y": "10" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "7", + "width": "3", + "x": "4", + "y": "10" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "7", + "width": "3", + "x": "10.5", + "y": "10" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "7", + "width": "3", + "x": "10.5", + "y": "10" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "3", + "width": "20", + "x": "2", + "y": "19" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "3", + "width": "20", + "x": "2", + "y": "19" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "7", + "width": "3", + "x": "17", + "y": "10" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "7", + "width": "3", + "x": "17", + "y": "10" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "12,1 2,6 2,8 22,8 22,6" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "12,1 2,6 2,8 22,8 22,6" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_account_balance = ic_account_balance; \ No newline at end of file diff --git a/dist/md/ic_account_balance_outline.js b/dist/md/ic_account_balance_outline.js new file mode 100644 index 000000000..13293acda --- /dev/null +++ b/dist/md/ic_account_balance_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_account_balance_outline = void 0; +var ic_account_balance_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6.5 10h-2v7h2v-7zm6 0h-2v7h2v-7zm8.5 9H2v2h19v-2zm-2.5-9h-2v7h2v-7zm-7-6.74L16.71 6H6.29l5.21-2.74m0-2.26L2 6v2h19V6l-9.5-5z" + }, + "children": [] + }] +}; +exports.ic_account_balance_outline = ic_account_balance_outline; \ No newline at end of file diff --git a/dist/md/ic_account_balance_twotone.js b/dist/md/ic_account_balance_twotone.js new file mode 100644 index 000000000..4fcab5be4 --- /dev/null +++ b/dist/md/ic_account_balance_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_account_balance_twotone = void 0; +var ic_account_balance_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6.29 6l5.21-2.74L16.71 6z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6.5 10h-2v7h2v-7zm6 0h-2v7h2v-7zm8.5 9H2v2h19v-2zm-2.5-9h-2v7h2v-7zm-7-9L2 6v2h19V6l-9.5-5zM6.29 6l5.21-2.74L16.71 6H6.29z" + }, + "children": [] + }] +}; +exports.ic_account_balance_twotone = ic_account_balance_twotone; \ No newline at end of file diff --git a/dist/md/ic_account_balance_wallet.js b/dist/md/ic_account_balance_wallet.js new file mode 100644 index 000000000..5fe29782b --- /dev/null +++ b/dist/md/ic_account_balance_wallet.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_account_balance_wallet = void 0; +var ic_account_balance_wallet = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 18v1c0 1.1-.9 2-2 2H5c-1.11 0-2-.9-2-2V5c0-1.1.89-2 2-2h14c1.1 0 2 .9 2 2v1h-9c-1.11 0-2 .9-2 2v8c0 1.1.89 2 2 2h9zm-9-2h10V8H12v8zm4-2.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" + }, + "children": [] + }] +}; +exports.ic_account_balance_wallet = ic_account_balance_wallet; \ No newline at end of file diff --git a/dist/md/ic_account_balance_wallet_outline.js b/dist/md/ic_account_balance_wallet_outline.js new file mode 100644 index 000000000..d6d2c02db --- /dev/null +++ b/dist/md/ic_account_balance_wallet_outline.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_account_balance_wallet_outline = void 0; +var ic_account_balance_wallet_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 7.28V5c0-1.1-.9-2-2-2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2v-2.28c.59-.35 1-.98 1-1.72V9c0-.74-.41-1.37-1-1.72zM20 9v6h-7V9h7zM5 19V5h14v2h-6c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h6v2H5z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "16", + "cy": "12", + "r": "1.5" + }, + "children": [] + }] +}; +exports.ic_account_balance_wallet_outline = ic_account_balance_wallet_outline; \ No newline at end of file diff --git a/dist/md/ic_account_balance_wallet_twotone.js b/dist/md/ic_account_balance_wallet_twotone.js new file mode 100644 index 000000000..784e3742e --- /dev/null +++ b/dist/md/ic_account_balance_wallet_twotone.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_account_balance_wallet_twotone = void 0; +var ic_account_balance_wallet_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 17c-1.1 0-2-.9-2-2V9c0-1.1.9-2 2-2h6V5H5v14h14v-2h-6z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 7.28V5c0-1.1-.9-2-2-2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2v-2.28c.59-.35 1-.98 1-1.72V9c0-.74-.41-1.38-1-1.72zM20 9v6h-7V9h7zM5 19V5h14v2h-6c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h6v2H5z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "16", + "cy": "12", + "r": "1.5" + }, + "children": [] + }] +}; +exports.ic_account_balance_wallet_twotone = ic_account_balance_wallet_twotone; \ No newline at end of file diff --git a/dist/md/ic_account_box.js b/dist/md/ic_account_box.js new file mode 100644 index 000000000..4fc745c41 --- /dev/null +++ b/dist/md/ic_account_box.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_account_box = void 0; +var ic_account_box = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 5v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.11 0-2 .9-2 2zm12 4c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3 3 1.34 3 3zm-9 8c0-2 4-3.1 6-3.1s6 1.1 6 3.1v1H6v-1z" + }, + "children": [] + }] +}; +exports.ic_account_box = ic_account_box; \ No newline at end of file diff --git a/dist/md/ic_account_box_outline.js b/dist/md/ic_account_box_outline.js new file mode 100644 index 000000000..8451f4901 --- /dev/null +++ b/dist/md/ic_account_box_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_account_box_outline = void 0; +var ic_account_box_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 5v14H5V5h14m0-2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 9c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3zm0-4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm6 10H6v-1.53c0-2.5 3.97-3.58 6-3.58s6 1.08 6 3.58V18zm-9.69-2h7.38c-.69-.56-2.38-1.12-3.69-1.12s-3.01.56-3.69 1.12z" + }, + "children": [] + }] +}; +exports.ic_account_box_outline = ic_account_box_outline; \ No newline at end of file diff --git a/dist/md/ic_account_box_twotone.js b/dist/md/ic_account_box_twotone.js new file mode 100644 index 000000000..ffd4453b6 --- /dev/null +++ b/dist/md/ic_account_box_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_account_box_twotone = void 0; +var ic_account_box_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 19h14V5H5v14zm7-13c1.65 0 3 1.35 3 3s-1.35 3-3 3-3-1.35-3-3 1.35-3 3-3zM6 16.47c0-2.5 3.97-3.58 6-3.58s6 1.08 6 3.58V18H6v-1.53z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 12c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm7-5H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-1-2.53c0-2.5-3.97-3.58-6-3.58s-6 1.08-6 3.58V18h12v-1.53zM8.31 16c.69-.56 2.38-1.12 3.69-1.12s3.01.56 3.69 1.12H8.31z" + }, + "children": [] + }] +}; +exports.ic_account_box_twotone = ic_account_box_twotone; \ No newline at end of file diff --git a/dist/md/ic_account_circle.js b/dist/md/ic_account_circle.js new file mode 100644 index 000000000..bdeb59271 --- /dev/null +++ b/dist/md/ic_account_circle.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_account_circle = void 0; +var ic_account_circle = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 3c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm0 14.2c-2.5 0-4.71-1.28-6-3.22.03-1.99 4-3.08 6-3.08 1.99 0 5.97 1.09 6 3.08-1.29 1.94-3.5 3.22-6 3.22z" + }, + "children": [] + }] +}; +exports.ic_account_circle = ic_account_circle; \ No newline at end of file diff --git a/dist/md/ic_account_circle_outline.js b/dist/md/ic_account_circle_outline.js new file mode 100644 index 000000000..dc7f3e523 --- /dev/null +++ b/dist/md/ic_account_circle_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_account_circle_outline = void 0; +var ic_account_circle_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM7.07 18.28c.43-.9 3.05-1.78 4.93-1.78s4.51.88 4.93 1.78C15.57 19.36 13.86 20 12 20s-3.57-.64-4.93-1.72zm11.29-1.45c-1.43-1.74-4.9-2.33-6.36-2.33s-4.93.59-6.36 2.33C4.62 15.49 4 13.82 4 12c0-4.41 3.59-8 8-8s8 3.59 8 8c0 1.82-.62 3.49-1.64 4.83zM12 6c-1.94 0-3.5 1.56-3.5 3.5S10.06 13 12 13s3.5-1.56 3.5-3.5S13.94 6 12 6zm0 5c-.83 0-1.5-.67-1.5-1.5S11.17 8 12 8s1.5.67 1.5 1.5S12.83 11 12 11z" + }, + "children": [] + }] +}; +exports.ic_account_circle_outline = ic_account_circle_outline; \ No newline at end of file diff --git a/dist/md/ic_account_circle_twotone.js b/dist/md/ic_account_circle_twotone.js new file mode 100644 index 000000000..ab14a5fb1 --- /dev/null +++ b/dist/md/ic_account_circle_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_account_circle_twotone = void 0; +var ic_account_circle_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4c-4.41 0-8 3.59-8 8 0 1.82.62 3.49 1.64 4.83 1.43-1.74 4.9-2.33 6.36-2.33s4.93.59 6.36 2.33C19.38 15.49 20 13.82 20 12c0-4.41-3.59-8-8-8zm0 9c-1.94 0-3.5-1.56-3.5-3.5S10.06 6 12 6s3.5 1.56 3.5 3.5S13.94 13 12 13z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM7.07 18.28c.43-.9 3.05-1.78 4.93-1.78s4.51.88 4.93 1.78C15.57 19.36 13.86 20 12 20s-3.57-.64-4.93-1.72zm11.29-1.45c-1.43-1.74-4.9-2.33-6.36-2.33s-4.93.59-6.36 2.33C4.62 15.49 4 13.82 4 12c0-4.41 3.59-8 8-8s8 3.59 8 8c0 1.82-.62 3.49-1.64 4.83zM12 6c-1.94 0-3.5 1.56-3.5 3.5S10.06 13 12 13s3.5-1.56 3.5-3.5S13.94 6 12 6zm0 5c-.83 0-1.5-.67-1.5-1.5S11.17 8 12 8s1.5.67 1.5 1.5S12.83 11 12 11z" + }, + "children": [] + }] +}; +exports.ic_account_circle_twotone = ic_account_circle_twotone; \ No newline at end of file diff --git a/dist/md/ic_account_tree.js b/dist/md/ic_account_tree.js new file mode 100644 index 000000000..64dc4818e --- /dev/null +++ b/dist/md/ic_account_tree.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_account_tree = void 0; +var ic_account_tree = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 11V3h-7v3H9V3H2v8h7V8h2v10h4v3h7v-8h-7v3h-2V8h2v3z" + }, + "children": [] + }] +}; +exports.ic_account_tree = ic_account_tree; \ No newline at end of file diff --git a/dist/md/ic_account_tree_outline.js b/dist/md/ic_account_tree_outline.js new file mode 100644 index 000000000..e7f19708b --- /dev/null +++ b/dist/md/ic_account_tree_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_account_tree_outline = void 0; +var ic_account_tree_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22,11V3h-7v3H9V3H2v8h7V8h2v10h4v3h7v-8h-7v3h-2V8h2v3H22z M7,9H4V5h3V9z M17,15h3v4h-3V15z M17,5h3v4h-3V5z" + }, + "children": [] + }] +}; +exports.ic_account_tree_outline = ic_account_tree_outline; \ No newline at end of file diff --git a/dist/md/ic_account_tree_twotone.js b/dist/md/ic_account_tree_twotone.js new file mode 100644 index 000000000..876824cfe --- /dev/null +++ b/dist/md/ic_account_tree_twotone.js @@ -0,0 +1,77 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_account_tree_twotone = void 0; +var ic_account_tree_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,11V3h-7v3H9V3H2v8h7V8h2v10h4v3h7v-8h-7v3h-2V8h2v3H22z M7,9H4V5h3V9z M17,15h3v4h-3V15z M17,5h3v4h-3V5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,11V3h-7v3H9V3H2v8h7V8h2v10h4v3h7v-8h-7v3h-2V8h2v3H22z M7,9H4V5h3V9z M17,15h3v4h-3V15z M17,5h3v4h-3V5z" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "opacity": ".3", + "points": "7,5 7,9 4,9 4,5 7,5" + }, + "children": [{ + "name": "polyline", + "attribs": { + "opacity": ".3", + "points": "7,5 7,9 4,9 4,5 7,5" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "opacity": ".3", + "points": "20,5 20,9 17,9 17,5 20,5" + }, + "children": [{ + "name": "polyline", + "attribs": { + "opacity": ".3", + "points": "20,5 20,9 17,9 17,5 20,5" + }, + "children": [] + }] + }, { + "name": "polyline", + "attribs": { + "opacity": ".3", + "points": "20,15 20,19 17,19 17,15 20,15" + }, + "children": [{ + "name": "polyline", + "attribs": { + "opacity": ".3", + "points": "20,15 20,19 17,19 17,15 20,15" + }, + "children": [] + }] + }] + }] +}; +exports.ic_account_tree_twotone = ic_account_tree_twotone; \ No newline at end of file diff --git a/dist/md/ic_ad_units.js b/dist/md/ic_ad_units.js new file mode 100644 index 000000000..cd4df45bf --- /dev/null +++ b/dist/md/ic_ad_units.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_ad_units = void 0; +var ic_ad_units = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 1H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 18H7V5h10v14zM8 6h8v2H8z" + }, + "children": [] + }] +}; +exports.ic_ad_units = ic_ad_units; \ No newline at end of file diff --git a/dist/md/ic_ad_units_outline.js b/dist/md/ic_ad_units_outline.js new file mode 100644 index 000000000..af1e21d5a --- /dev/null +++ b/dist/md/ic_ad_units_outline.js @@ -0,0 +1,79 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_ad_units_outline = void 0; +var ic_ad_units_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,1H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1,17,1L17,1z M7,4V3h10v1H7L7,4z M7,18V6 h10v12H7L7,18z M7,21v-1h10v1H7L7,21z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,1H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1,17,1L17,1z M7,4V3h10v1H7L7,4z M7,18V6 h10v12H7L7,18z M7,21v-1h10v1H7L7,21z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "16,7 8,7 8,9 16,9 16,7" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "16,7 8,7 8,9 16,9 16,7" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_ad_units_outline = ic_ad_units_outline; \ No newline at end of file diff --git a/dist/md/ic_ad_units_twotone.js b/dist/md/ic_ad_units_twotone.js new file mode 100644 index 000000000..ba6249a14 --- /dev/null +++ b/dist/md/ic_ad_units_twotone.js @@ -0,0 +1,119 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_ad_units_twotone = void 0; +var ic_ad_units_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "1", + "opacity": ".3", + "width": "10", + "x": "7", + "y": "3" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "1", + "opacity": ".3", + "width": "10", + "x": "7", + "y": "3" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "1", + "opacity": ".3", + "width": "10", + "x": "7", + "y": "20" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "1", + "opacity": ".3", + "width": "10", + "x": "7", + "y": "20" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,1H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1,17,1L17,1z M7,4V3h10v1H7L7,4z M7,18V6 h10v12H7L7,18z M7,21v-1h10v1H7L7,21z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,1H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1,17,1L17,1z M7,4V3h10v1H7L7,4z M7,18V6 h10v12H7L7,18z M7,21v-1h10v1H7L7,21z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "16,7 8,7 8,9 16,9 16,7" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "16,7 8,7 8,9 16,9 16,7" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_ad_units_twotone = ic_ad_units_twotone; \ No newline at end of file diff --git a/dist/md/ic_adb.js b/dist/md/ic_adb.js new file mode 100644 index 000000000..14a80a27f --- /dev/null +++ b/dist/md/ic_adb.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_adb = void 0; +var ic_adb = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 16c0 3.87 3.13 7 7 7s7-3.13 7-7v-4H5v4zM16.12 4.37l2.1-2.1-.82-.83-2.3 2.31C14.16 3.28 13.12 3 12 3s-2.16.28-3.09.75L6.6 1.44l-.82.83 2.1 2.1C6.14 5.64 5 7.68 5 10v1h14v-1c0-2.32-1.14-4.36-2.88-5.63zM9 9c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" + }, + "children": [] + }] +}; +exports.ic_adb = ic_adb; \ No newline at end of file diff --git a/dist/md/ic_adb_outline.js b/dist/md/ic_adb_outline.js new file mode 100644 index 000000000..1ebb14a7d --- /dev/null +++ b/dist/md/ic_adb_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_adb_outline = void 0; +var ic_adb_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 16c0 3.87 3.13 7 7 7s7-3.13 7-7v-4H5v4zM16.12 4.37l2.1-2.1-.82-.83-2.3 2.31C14.16 3.28 13.12 3 12 3s-2.16.28-3.09.75L6.6 1.44l-.82.83 2.1 2.1C6.14 5.64 5 7.68 5 10v1h14v-1c0-2.32-1.14-4.36-2.88-5.63zM9 9c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" + }, + "children": [] + }] +}; +exports.ic_adb_outline = ic_adb_outline; \ No newline at end of file diff --git a/dist/md/ic_adb_twotone.js b/dist/md/ic_adb_twotone.js new file mode 100644 index 000000000..bd33c4913 --- /dev/null +++ b/dist/md/ic_adb_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_adb_twotone = void 0; +var ic_adb_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 16c0 3.87 3.13 7 7 7s7-3.13 7-7v-4H5v4zM16.12 4.37l2.1-2.1-.82-.83-2.3 2.31C14.16 3.28 13.12 3 12 3s-2.16.28-3.09.75L6.6 1.44l-.82.83 2.1 2.1C6.14 5.64 5 7.68 5 10v1h14v-1c0-2.32-1.14-4.36-2.88-5.63zM9 9c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" + }, + "children": [] + }] +}; +exports.ic_adb_twotone = ic_adb_twotone; \ No newline at end of file diff --git a/dist/md/ic_add.js b/dist/md/ic_add.js new file mode 100644 index 000000000..1446157f3 --- /dev/null +++ b/dist/md/ic_add.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_add = void 0; +var ic_add = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z" + }, + "children": [] + }] +}; +exports.ic_add = ic_add; \ No newline at end of file diff --git a/dist/md/ic_add_a_photo.js b/dist/md/ic_add_a_photo.js new file mode 100644 index 000000000..d98d059e1 --- /dev/null +++ b/dist/md/ic_add_a_photo.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_add_a_photo = void 0; +var ic_add_a_photo = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3,4V1h2v3h3v2H5v3H3V6H0V4H3z M6,10V7h3V4h7l1.83,2H21c1.1,0,2,0.9,2,2v12c0,1.1-0.9,2-2,2H5c-1.1,0-2-0.9-2-2V10H6z M13,19c2.76,0,5-2.24,5-5s-2.24-5-5-5s-5,2.24-5,5S10.24,19,13,19z M9.8,14c0,1.77,1.43,3.2,3.2,3.2s3.2-1.43,3.2-3.2 s-1.43-3.2-3.2-3.2S9.8,12.23,9.8,14z" + }, + "children": [] + }] +}; +exports.ic_add_a_photo = ic_add_a_photo; \ No newline at end of file diff --git a/dist/md/ic_add_a_photo_outline.js b/dist/md/ic_add_a_photo_outline.js new file mode 100644 index 000000000..c57882ff3 --- /dev/null +++ b/dist/md/ic_add_a_photo_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_add_a_photo_outline = void 0; +var ic_add_a_photo_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 6h-3.17L16 4h-6v2h5.12l1.83 2H21v12H5v-9H3v9c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zM8 14c0 2.76 2.24 5 5 5s5-2.24 5-5-2.24-5-5-5-5 2.24-5 5zm5-3c1.65 0 3 1.35 3 3s-1.35 3-3 3-3-1.35-3-3 1.35-3 3-3zM5 6h3V4H5V1H3v3H0v2h3v3h2z" + }, + "children": [] + }] +}; +exports.ic_add_a_photo_outline = ic_add_a_photo_outline; \ No newline at end of file diff --git a/dist/md/ic_add_a_photo_twotone.js b/dist/md/ic_add_a_photo_twotone.js new file mode 100644 index 000000000..f4729cc3d --- /dev/null +++ b/dist/md/ic_add_a_photo_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_add_a_photo_twotone = void 0; +var ic_add_a_photo_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 7v3H5v10h16V8h-4.05l-1.83-2H9v1H6zm7 2c2.76 0 5 2.24 5 5s-2.24 5-5 5-5-2.24-5-5 2.24-5 5-5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 6h-3.17L16 4H9v2h6.12l1.83 2H21v12H5V10H3v10c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zM8 14c0 2.76 2.24 5 5 5s5-2.24 5-5-2.24-5-5-5-5 2.24-5 5zm5-3c1.65 0 3 1.35 3 3s-1.35 3-3 3-3-1.35-3-3 1.35-3 3-3zM5 9V6h3V4H5V1H3v3H0v2h3v3z" + }, + "children": [] + }] +}; +exports.ic_add_a_photo_twotone = ic_add_a_photo_twotone; \ No newline at end of file diff --git a/dist/md/ic_add_alarm.js b/dist/md/ic_add_alarm.js new file mode 100644 index 000000000..668a85dc8 --- /dev/null +++ b/dist/md/ic_add_alarm.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_add_alarm = void 0; +var ic_add_alarm = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7.88 3.39L6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm1-11h-2v3H8v2h3v3h2v-3h3v-2h-3V9z" + }, + "children": [] + }] +}; +exports.ic_add_alarm = ic_add_alarm; \ No newline at end of file diff --git a/dist/md/ic_add_alarm_outline.js b/dist/md/ic_add_alarm_outline.js new file mode 100644 index 000000000..fda92c7c0 --- /dev/null +++ b/dist/md/ic_add_alarm_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_add_alarm_outline = void 0; +var ic_add_alarm_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7.88 3.39L6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm1-11h-2v3H8v2h3v3h2v-3h3v-2h-3V9z" + }, + "children": [] + }] +}; +exports.ic_add_alarm_outline = ic_add_alarm_outline; \ No newline at end of file diff --git a/dist/md/ic_add_alarm_twotone.js b/dist/md/ic_add_alarm_twotone.js new file mode 100644 index 000000000..249bb5206 --- /dev/null +++ b/dist/md/ic_add_alarm_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_add_alarm_twotone = void 0; +var ic_add_alarm_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 6c-3.87 0-7 3.13-7 7s3.13 7 7 7 7-3.13 7-7-3.13-7-7-7zm4 8h-3v3h-2v-3H8v-2h3V9h2v3h3v2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm1-11h-2v3H8v2h3v3h2v-3h3v-2h-3zm9-3.28l-4.6-3.86-1.29 1.53 4.6 3.86zM7.88 3.39L6.6 1.86 2 5.71l1.29 1.53z" + }, + "children": [] + }] +}; +exports.ic_add_alarm_twotone = ic_add_alarm_twotone; \ No newline at end of file diff --git a/dist/md/ic_add_alert.js b/dist/md/ic_add_alert.js new file mode 100644 index 000000000..8f64a248a --- /dev/null +++ b/dist/md/ic_add_alert.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_add_alert = void 0; +var ic_add_alert = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10.01 21.01c0 1.1.89 1.99 1.99 1.99s1.99-.89 1.99-1.99h-3.98zm8.87-4.19V11c0-3.25-2.25-5.97-5.29-6.69v-.72C13.59 2.71 12.88 2 12 2s-1.59.71-1.59 1.59v.72C7.37 5.03 5.12 7.75 5.12 11v5.82L3 18.94V20h18v-1.06l-2.12-2.12zM16 13.01h-3v3h-2v-3H8V11h3V8h2v3h3v2.01z" + }, + "children": [] + }] +}; +exports.ic_add_alert = ic_add_alert; \ No newline at end of file diff --git a/dist/md/ic_add_alert_outline.js b/dist/md/ic_add_alert_outline.js new file mode 100644 index 000000000..95d3251b4 --- /dev/null +++ b/dist/md/ic_add_alert_outline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_add_alert_outline = void 0; +var ic_add_alert_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M10.01 21.01c0 1.1.89 1.99 1.99 1.99s1.99-.89 1.99-1.99h-3.98zM12 6c2.76 0 5 2.24 5 5v7H7v-7c0-2.76 2.24-5 5-5zm0-4.5c-.83 0-1.5.67-1.5 1.5v1.17C7.36 4.85 5 7.65 5 11v6l-2 2v1h18v-1l-2-2v-6c0-3.35-2.36-6.15-5.5-6.83V3c0-.83-.67-1.5-1.5-1.5zM13 8h-2v3H8v2h3v3h2v-3h3v-2h-3z" + }, + "children": [] + }] +}; +exports.ic_add_alert_outline = ic_add_alert_outline; \ No newline at end of file diff --git a/dist/md/ic_add_alert_twotone.js b/dist/md/ic_add_alert_twotone.js new file mode 100644 index 000000000..8e3390fb0 --- /dev/null +++ b/dist/md/ic_add_alert_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_add_alert_twotone = void 0; +var ic_add_alert_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 6c-2.76 0-5 2.24-5 5v7h10v-7c0-2.76-2.24-5-5-5zm4 7h-3v3h-2v-3H8v-2h3V8h2v3h3v2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 23c1.1 0 1.99-.89 1.99-1.99h-3.98c0 1.1.89 1.99 1.99 1.99zm7-6v-6c0-3.35-2.36-6.15-5.5-6.83V3c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v1.17C7.36 4.85 5 7.65 5 11v6l-2 2v1h18v-1l-2-2zm-2 1H7v-7c0-2.76 2.24-5 5-5s5 2.24 5 5v7zm-4-7V8h-2v3H8v2h3v3h2v-3h3v-2z" + }, + "children": [] + }] +}; +exports.ic_add_alert_twotone = ic_add_alert_twotone; \ No newline at end of file diff --git a/dist/md/ic_add_box.js b/dist/md/ic_add_box.js new file mode 100644 index 000000000..5fa4d7ff9 --- /dev/null +++ b/dist/md/ic_add_box.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_add_box = void 0; +var ic_add_box = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-2 10h-4v4h-2v-4H7v-2h4V7h2v4h4v2z" + }, + "children": [] + }] +}; +exports.ic_add_box = ic_add_box; \ No newline at end of file diff --git a/dist/md/ic_add_box_outline.js b/dist/md/ic_add_box_outline.js new file mode 100644 index 000000000..2b2f672d5 --- /dev/null +++ b/dist/md/ic_add_box_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_add_box_outline = void 0; +var ic_add_box_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-8-2h2v-4h4v-2h-4V7h-2v4H7v2h4z" + }, + "children": [] + }] +}; +exports.ic_add_box_outline = ic_add_box_outline; \ No newline at end of file diff --git a/dist/md/ic_add_box_twotone.js b/dist/md/ic_add_box_twotone.js new file mode 100644 index 000000000..a77e54f40 --- /dev/null +++ b/dist/md/ic_add_box_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_add_box_twotone = void 0; +var ic_add_box_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 19h14V5H5v14zm2-8h4V7h2v4h4v2h-4v4h-2v-4H7v-2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-8-2h2v-4h4v-2h-4V7h-2v4H7v2h4z" + }, + "children": [] + }] +}; +exports.ic_add_box_twotone = ic_add_box_twotone; \ No newline at end of file diff --git a/dist/md/ic_add_business.js b/dist/md/ic_add_business.js new file mode 100644 index 000000000..28ecc4ade --- /dev/null +++ b/dist/md/ic_add_business.js @@ -0,0 +1,85 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_add_business = void 0; +var ic_add_business = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M15,17h2v-3h1v-2l-1-5H2l-1,5v2h1v6h9v-6h4V17z M9,18H4v-4h5V18z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15,17h2v-3h1v-2l-1-5H2l-1,5v2h1v6h9v-6h4V17z M9,18H4v-4h5V18z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "15", + "x": "2", + "y": "4" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "15", + "x": "2", + "y": "4" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "20,18 20,15 18,15 18,18 15,18 15,20 18,20 18,23 20,23 20,20 23,20 23,18" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "20,18 20,15 18,15 18,18 15,18 15,20 18,20 18,23 20,23 20,20 23,20 23,18" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_add_business = ic_add_business; \ No newline at end of file diff --git a/dist/md/ic_add_business_outline.js b/dist/md/ic_add_business_outline.js new file mode 100644 index 000000000..ee1eb6364 --- /dev/null +++ b/dist/md/ic_add_business_outline.js @@ -0,0 +1,85 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_add_business_outline = void 0; +var ic_add_business_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "15", + "x": "2", + "y": "4" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "15", + "x": "2", + "y": "4" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M15,17h2v-3h1v-2l-1-5H2l-1,5v2h1v6h9v-6h4V17z M9,18H4v-4h5V18z M3.04,12l0.6-3h11.72l0.6,3H3.04z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15,17h2v-3h1v-2l-1-5H2l-1,5v2h1v6h9v-6h4V17z M9,18H4v-4h5V18z M3.04,12l0.6-3h11.72l0.6,3H3.04z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "23,18 20,18 20,15 18,15 18,18 15,18 15,20 18,20 18,23 20,23 20,20 23,20" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "23,18 20,18 20,15 18,15 18,18 15,18 15,20 18,20 18,23 20,23 20,20 23,20" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_add_business_outline = ic_add_business_outline; \ No newline at end of file diff --git a/dist/md/ic_add_business_twotone.js b/dist/md/ic_add_business_twotone.js new file mode 100644 index 000000000..18c665688 --- /dev/null +++ b/dist/md/ic_add_business_twotone.js @@ -0,0 +1,99 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_add_business_twotone = void 0; +var ic_add_business_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "opacity": ".3", + "points": "15.36,9 3.64,9 3.04,12 15.96,12" + }, + "children": [{ + "name": "polygon", + "attribs": { + "opacity": ".3", + "points": "15.36,9 3.64,9 3.04,12 15.96,12" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "15", + "x": "2", + "y": "4" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "15", + "x": "2", + "y": "4" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M15,17h2v-3h1v-2l-1-5H2l-1,5v2h1v6h9v-6h4V17z M9,18H4v-4h5V18z M3.04,12l0.6-3h11.72l0.6,3H3.04z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15,17h2v-3h1v-2l-1-5H2l-1,5v2h1v6h9v-6h4V17z M9,18H4v-4h5V18z M3.04,12l0.6-3h11.72l0.6,3H3.04z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "20,18 20,15 18,15 18,18 15,18 15,20 18,20 18,23 20,23 20,20 23,20 23,18" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "20,18 20,15 18,15 18,18 15,18 15,20 18,20 18,23 20,23 20,20 23,20 23,18" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_add_business_twotone = ic_add_business_twotone; \ No newline at end of file diff --git a/dist/md/ic_add_call.js b/dist/md/ic_add_call.js new file mode 100644 index 000000000..dbaf4009e --- /dev/null +++ b/dist/md/ic_add_call.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_add_call = void 0; +var ic_add_call = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M20 15.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM21 6h-3V3h-2v3h-3v2h3v3h2V8h3z" + }, + "children": [] + }] +}; +exports.ic_add_call = ic_add_call; \ No newline at end of file diff --git a/dist/md/ic_add_chart.js b/dist/md/ic_add_chart.js new file mode 100644 index 000000000..fc5131ca9 --- /dev/null +++ b/dist/md/ic_add_chart.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_add_chart = void 0; +var ic_add_chart = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 9.99h2v7H6zm8 3h2v4h-2zm-4-6h2v10h-2zM20 7V4h-2v3h-3v2h3v3h2V9h3V7zm-2 12H4V5h12V3H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-5h-2v5z" + }, + "children": [] + }] +}; +exports.ic_add_chart = ic_add_chart; \ No newline at end of file diff --git a/dist/md/ic_add_circle.js b/dist/md/ic_add_circle.js new file mode 100644 index 000000000..f4e9908cc --- /dev/null +++ b/dist/md/ic_add_circle.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_add_circle = void 0; +var ic_add_circle = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5 11h-4v4h-2v-4H7v-2h4V7h2v4h4v2z" + }, + "children": [] + }] +}; +exports.ic_add_circle = ic_add_circle; \ No newline at end of file diff --git a/dist/md/ic_add_circle_outline.js b/dist/md/ic_add_circle_outline.js new file mode 100644 index 000000000..ae7382250 --- /dev/null +++ b/dist/md/ic_add_circle_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_add_circle_outline = void 0; +var ic_add_circle_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5 11h-4v4h-2v-4H7v-2h4V7h2v4h4v2z" + }, + "children": [] + }] +}; +exports.ic_add_circle_outline = ic_add_circle_outline; \ No newline at end of file diff --git a/dist/md/ic_add_circle_outline_outline.js b/dist/md/ic_add_circle_outline_outline.js new file mode 100644 index 000000000..10e134e78 --- /dev/null +++ b/dist/md/ic_add_circle_outline_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_add_circle_outline_outline = void 0; +var ic_add_circle_outline_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" + }, + "children": [] + }] +}; +exports.ic_add_circle_outline_outline = ic_add_circle_outline_outline; \ No newline at end of file diff --git a/dist/md/ic_add_circle_outline_twotone.js b/dist/md/ic_add_circle_outline_twotone.js new file mode 100644 index 000000000..940452fc7 --- /dev/null +++ b/dist/md/ic_add_circle_outline_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_add_circle_outline_twotone = void 0; +var ic_add_circle_outline_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4zm-1-5C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" + }, + "children": [] + }] +}; +exports.ic_add_circle_outline_twotone = ic_add_circle_outline_twotone; \ No newline at end of file diff --git a/dist/md/ic_add_circle_twotone.js b/dist/md/ic_add_circle_twotone.js new file mode 100644 index 000000000..8759f0c87 --- /dev/null +++ b/dist/md/ic_add_circle_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_add_circle_twotone = void 0; +var ic_add_circle_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm5 9h-4v4h-2v-4H7v-2h4V7h2v4h4v2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4zm-1-5C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" + }, + "children": [] + }] +}; +exports.ic_add_circle_twotone = ic_add_circle_twotone; \ No newline at end of file diff --git a/dist/md/ic_add_comment.js b/dist/md/ic_add_comment.js new file mode 100644 index 000000000..424625be8 --- /dev/null +++ b/dist/md/ic_add_comment.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_add_comment = void 0; +var ic_add_comment = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21.99 4c0-1.1-.89-2-1.99-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4-.01-18zM17 11h-4v4h-2v-4H7V9h4V5h2v4h4v2z" + }, + "children": [] + }] +}; +exports.ic_add_comment = ic_add_comment; \ No newline at end of file diff --git a/dist/md/ic_add_comment_outline.js b/dist/md/ic_add_comment_outline.js new file mode 100644 index 000000000..4d8cf3300 --- /dev/null +++ b/dist/md/ic_add_comment_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_add_comment_outline = void 0; +var ic_add_comment_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 4c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4V4zm-2 13.17L18.83 16H4V4h16v13.17zM13 5h-2v4H7v2h4v4h2v-4h4V9h-4z" + }, + "children": [] + }] +}; +exports.ic_add_comment_outline = ic_add_comment_outline; \ No newline at end of file diff --git a/dist/md/ic_add_comment_twotone.js b/dist/md/ic_add_comment_twotone.js new file mode 100644 index 000000000..4650fc8d3 --- /dev/null +++ b/dist/md/ic_add_comment_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_add_comment_twotone = void 0; +var ic_add_comment_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4V4c0-1.1-.9-2-2-2zm0 15.17L18.83 16H4V4h16v13.17zM13 5h-2v4H7v2h4v4h2v-4h4V9h-4z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 4v12h14.83L20 17.17V4H4zm13 7h-4v4h-2v-4H7V9h4V5h2v4h4v2z", + "opacity": ".3" + }, + "children": [] + }] +}; +exports.ic_add_comment_twotone = ic_add_comment_twotone; \ No newline at end of file diff --git a/dist/md/ic_add_ic_call.js b/dist/md/ic_add_ic_call.js new file mode 100644 index 000000000..c47962b7c --- /dev/null +++ b/dist/md/ic_add_ic_call.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_add_ic_call = void 0; +var ic_add_ic_call = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 15.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM21 6h-3V3h-2v3h-3v2h3v3h2V8h3z" + }, + "children": [] + }] +}; +exports.ic_add_ic_call = ic_add_ic_call; \ No newline at end of file diff --git a/dist/md/ic_add_ic_call_outline.js b/dist/md/ic_add_ic_call_outline.js new file mode 100644 index 000000000..e8d4409f6 --- /dev/null +++ b/dist/md/ic_add_ic_call_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_add_ic_call_outline = void 0; +var ic_add_ic_call_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 15.45c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.4 8.5 5.2 8.5 3.95c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 4.95h1.5c.07.88.22 1.75.45 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79zM19 18.92c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM18 5.95v-3h-2v3h-3v2h3v3h2v-3h3v-2z" + }, + "children": [] + }] +}; +exports.ic_add_ic_call_outline = ic_add_ic_call_outline; \ No newline at end of file diff --git a/dist/md/ic_add_ic_call_twotone.js b/dist/md/ic_add_ic_call_twotone.js new file mode 100644 index 000000000..6f5bf263a --- /dev/null +++ b/dist/md/ic_add_ic_call_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_add_ic_call_twotone = void 0; +var ic_add_ic_call_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 17.41c-.88-.07-1.75-.22-2.6-.45l-1.2 1.2c1.21.41 2.48.67 3.8.76v-1.51zM6.54 4.95h-1.5c.09 1.32.34 2.58.75 3.79l1.2-1.21c-.24-.83-.39-1.7-.45-2.58z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 20.95c.55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.4 8.5 5.2 8.5 3.95c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17zm-3.6-3.99c.85.24 1.72.39 2.6.45v1.5c-1.32-.09-2.6-.35-3.8-.76l1.2-1.19zM5.03 4.95h1.5c.07.88.22 1.75.45 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79zm10.97 6h2v-3h3v-2h-3v-3h-2v3h-3v2h3z" + }, + "children": [] + }] +}; +exports.ic_add_ic_call_twotone = ic_add_ic_call_twotone; \ No newline at end of file diff --git a/dist/md/ic_add_link.js b/dist/md/ic_add_link.js new file mode 100644 index 000000000..2c651222e --- /dev/null +++ b/dist/md/ic_add_link.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_add_link = void 0; +var ic_add_link = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8 11h8v2H8zm12.1 1H22c0-2.76-2.24-5-5-5h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1zM3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM19 12h-2v3h-3v2h3v3h2v-3h3v-2h-3z" + }, + "children": [] + }] +}; +exports.ic_add_link = ic_add_link; \ No newline at end of file diff --git a/dist/md/ic_add_location.js b/dist/md/ic_add_location.js new file mode 100644 index 000000000..7e75278ce --- /dev/null +++ b/dist/md/ic_add_location.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_add_location = void 0; +var ic_add_location = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C8.14 2 5 5.14 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.86-3.14-7-7-7zm4 8h-3v3h-2v-3H8V8h3V5h2v3h3v2z" + }, + "children": [] + }] +}; +exports.ic_add_location = ic_add_location; \ No newline at end of file diff --git a/dist/md/ic_add_location_alt.js b/dist/md/ic_add_location_alt.js new file mode 100644 index 000000000..7b95ba170 --- /dev/null +++ b/dist/md/ic_add_location_alt.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_add_location_alt = void 0; +var ic_add_location_alt = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 1v3h3v2h-3v3h-2V6h-3V4h3V1h2zm-8 12c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm2-9.75V7h3v3h2.92c.05.39.08.79.08 1.2 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8C4 6.22 7.8 3 12 3c.68 0 1.35.08 2 .25z" + }, + "children": [] + }] +}; +exports.ic_add_location_alt = ic_add_location_alt; \ No newline at end of file diff --git a/dist/md/ic_add_location_alt_outline.js b/dist/md/ic_add_location_alt_outline.js new file mode 100644 index 000000000..8021cbb4f --- /dev/null +++ b/dist/md/ic_add_location_alt_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_add_location_alt_outline = void 0; +var ic_add_location_alt_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 1v3h3v2h-3v3h-2V6h-3V4h3V1h2zm-8 12c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm1-9.94v2.02A6.53 6.53 0 0 0 12 5c-3.35 0-6 2.57-6 6.2 0 2.34 1.95 5.44 6 9.14 4.05-3.7 6-6.79 6-9.14V11h2v.2c0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8C4 6.22 7.8 3 12 3c.34 0 .67.02 1 .06z" + }, + "children": [] + }] +}; +exports.ic_add_location_alt_outline = ic_add_location_alt_outline; \ No newline at end of file diff --git a/dist/md/ic_add_location_alt_twotone.js b/dist/md/ic_add_location_alt_twotone.js new file mode 100644 index 000000000..acd620d3f --- /dev/null +++ b/dist/md/ic_add_location_alt_twotone.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_add_location_alt_twotone = void 0; +var ic_add_location_alt_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14,4.8V7h3v3h1.41c0.06,0.39,0.09,0.79,0.09,1.2c0,2.57-2.1,5.79-6.16,9.51L12,21.01l-0.34-0.31 C7.6,16.99,5.5,13.77,5.5,11.2c0-3.84,2.82-6.7,6.5-6.7C12.7,4.5,13.37,4.6,14,4.8z", + "fill-opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20,1v3h3v2h-3v3h-2V6h-3V4h3V1H20z M12,13c-1.1,0-2-0.9-2-2s0.9-2,2-2s2,0.9,2,2S13.1,13,12,13z M14,3.25v2.08 C13.38,5.11,12.7,5,12,5c-3.35,0-6,2.57-6,6.2c0,2.34,1.95,5.44,6,9.14c4.05-3.7,6-6.79,6-9.14c0-0.41-0.03-0.81-0.1-1.2h2.02 c0.05,0.39,0.08,0.79,0.08,1.2c0,3.32-2.67,7.25-8,11.8c-5.33-4.55-8-8.48-8-11.8C4,6.22,7.8,3,12,3C12.68,3,13.35,3.08,14,3.25z" + }, + "children": [] + }] +}; +exports.ic_add_location_alt_twotone = ic_add_location_alt_twotone; \ No newline at end of file diff --git a/dist/md/ic_add_location_outline.js b/dist/md/ic_add_location_outline.js new file mode 100644 index 000000000..49f11c57e --- /dev/null +++ b/dist/md/ic_add_location_outline.js @@ -0,0 +1,71 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_add_location_outline = void 0; +var ic_add_location_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M13,6v3h3v2h-3v3h-2v-3H8V9h3V6H13z M18,10.2C18,6.57,15.35,4,12,4s-6,2.57-6,6.2 c0,2.34,1.95,5.44,6,9.14C16.05,15.64,18,12.54,18,10.2z M12,2c4.2,0,8,3.22,8,8.2c0,3.32-2.67,7.25-8,11.8 c-5.33-4.55-8-8.48-8-11.8C4,5.22,7.8,2,12,2z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M13,6v3h3v2h-3v3h-2v-3H8V9h3V6H13z M18,10.2C18,6.57,15.35,4,12,4s-6,2.57-6,6.2 c0,2.34,1.95,5.44,6,9.14C16.05,15.64,18,12.54,18,10.2z M12,2c4.2,0,8,3.22,8,8.2c0,3.32-2.67,7.25-8,11.8 c-5.33-4.55-8-8.48-8-11.8C4,5.22,7.8,2,12,2z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_add_location_outline = ic_add_location_outline; \ No newline at end of file diff --git a/dist/md/ic_add_location_twotone.js b/dist/md/ic_add_location_twotone.js new file mode 100644 index 000000000..73341e8ce --- /dev/null +++ b/dist/md/ic_add_location_twotone.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_add_location_twotone = void 0; +var ic_add_location_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18.5,10.2c0,2.57-2.1,5.79-6.16,9.51L12,20.01l-0.34-0.31 C7.6,15.99,5.5,12.77,5.5,10.2c0-3.84,2.82-6.7,6.5-6.7S18.5,6.35,18.5,10.2z", + "enable-background": "new", + "opacity": ".3" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M13,6v3h3v2h-3v3h-2v-3H8V9h3V6H13z M18,10.2C18,6.57,15.35,4,12,4s-6,2.57-6,6.2c0,2.34,1.95,5.44,6,9.14 C16.05,15.64,18,12.54,18,10.2z M12,2c4.2,0,8,3.22,8,8.2c0,3.32-2.67,7.25-8,11.8c-5.33-4.55-8-8.48-8-11.8C4,5.22,7.8,2,12,2z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M13,6v3h3v2h-3v3h-2v-3H8V9h3V6H13z M18,10.2C18,6.57,15.35,4,12,4s-6,2.57-6,6.2c0,2.34,1.95,5.44,6,9.14 C16.05,15.64,18,12.54,18,10.2z M12,2c4.2,0,8,3.22,8,8.2c0,3.32-2.67,7.25-8,11.8c-5.33-4.55-8-8.48-8-11.8C4,5.22,7.8,2,12,2z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_add_location_twotone = ic_add_location_twotone; \ No newline at end of file diff --git a/dist/md/ic_add_moderator.js b/dist/md/ic_add_moderator.js new file mode 100644 index 000000000..362f548c4 --- /dev/null +++ b/dist/md/ic_add_moderator.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_add_moderator = void 0; +var ic_add_moderator = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13.22 22.61c-.4.15-.8.29-1.22.39-5.16-1.26-9-6.45-9-12V5l9-4 9 4v6c0 .9-.11 1.78-.3 2.65-.81-.41-1.73-.65-2.7-.65-3.31 0-6 2.69-6 6 0 1.36.46 2.61 1.22 3.61zM19 20v2.99s-1.99.01-2 0V20h-3v-2h3v-3h2v3h3v2h-3z" + }, + "children": [] + }] +}; +exports.ic_add_moderator = ic_add_moderator; \ No newline at end of file diff --git a/dist/md/ic_add_outline.js b/dist/md/ic_add_outline.js new file mode 100644 index 000000000..c80760444 --- /dev/null +++ b/dist/md/ic_add_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_add_outline = void 0; +var ic_add_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z" + }, + "children": [] + }] +}; +exports.ic_add_outline = ic_add_outline; \ No newline at end of file diff --git a/dist/md/ic_add_photo_alternate.js b/dist/md/ic_add_photo_alternate.js new file mode 100644 index 000000000..a4ba8d484 --- /dev/null +++ b/dist/md/ic_add_photo_alternate.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_add_photo_alternate = void 0; +var ic_add_photo_alternate = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 7v2.99s-1.99.01-2 0V7h-3s.01-1.99 0-2h3V2h2v3h3v2h-3zm-3 4V8h-3V5H5c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-8h-3zM5 19l3-4 2 3 3-4 4 5H5z" + }, + "children": [] + }] +}; +exports.ic_add_photo_alternate = ic_add_photo_alternate; \ No newline at end of file diff --git a/dist/md/ic_add_photo_alternate_outline.js b/dist/md/ic_add_photo_alternate_outline.js new file mode 100644 index 000000000..759c6d7f6 --- /dev/null +++ b/dist/md/ic_add_photo_alternate_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_add_photo_alternate_outline = void 0; +var ic_add_photo_alternate_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 20H4V6h9V4H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-9h-2v9zm-7.79-3.17l-1.96-2.36L5.5 18h11l-3.54-4.71zM20 4V1h-2v3h-3c.01.01 0 2 0 2h3v2.99c.01.01 2 0 2 0V6h3V4h-3z" + }, + "children": [] + }] +}; +exports.ic_add_photo_alternate_outline = ic_add_photo_alternate_outline; \ No newline at end of file diff --git a/dist/md/ic_add_photo_alternate_twotone.js b/dist/md/ic_add_photo_alternate_twotone.js new file mode 100644 index 000000000..836ea0456 --- /dev/null +++ b/dist/md/ic_add_photo_alternate_twotone.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_add_photo_alternate_twotone = void 0; +var ic_add_photo_alternate_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10.21 16.83l-1.96-2.36L5.5 18h11l-3.54-4.71z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16.5 18h-11l2.75-3.53 1.96 2.36 2.75-3.54L16.5 18zM17 7h-3V6H4v14h14V10h-1V7z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 4V1h-2v3h-3v2h3v2.99h2V6h3V4zm-2 16H4V6h10V4H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V10h-2v10z" + }, + "children": [] + }] +}; +exports.ic_add_photo_alternate_twotone = ic_add_photo_alternate_twotone; \ No newline at end of file diff --git a/dist/md/ic_add_road.js b/dist/md/ic_add_road.js new file mode 100644 index 000000000..8858ef346 --- /dev/null +++ b/dist/md/ic_add_road.js @@ -0,0 +1,145 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_add_road = void 0; +var ic_add_road = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "20,18 20,15 18,15 18,18 15,18 15,20 18,20 18,23 20,23 20,20 23,20 23,18" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "20,18 20,15 18,15 18,18 15,18 15,20 18,20 18,23 20,23 20,20 23,20 23,18" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "9", + "width": "2", + "x": "18", + "y": "4" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "9", + "width": "2", + "x": "18", + "y": "4" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "16", + "width": "2", + "x": "4", + "y": "4" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "16", + "width": "2", + "x": "4", + "y": "4" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "4", + "width": "2", + "x": "11", + "y": "4" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "4", + "width": "2", + "x": "11", + "y": "4" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "4", + "width": "2", + "x": "11", + "y": "10" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "4", + "width": "2", + "x": "11", + "y": "10" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "4", + "width": "2", + "x": "11", + "y": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "4", + "width": "2", + "x": "11", + "y": "16" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_add_road = ic_add_road; \ No newline at end of file diff --git a/dist/md/ic_add_road_outline.js b/dist/md/ic_add_road_outline.js new file mode 100644 index 000000000..a87da3dcf --- /dev/null +++ b/dist/md/ic_add_road_outline.js @@ -0,0 +1,145 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_add_road_outline = void 0; +var ic_add_road_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "20,18 20,15 18,15 18,18 15,18 15,20 18,20 18,23 20,23 20,20 23,20 23,18" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "20,18 20,15 18,15 18,18 15,18 15,20 18,20 18,23 20,23 20,20 23,20 23,18" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "9", + "width": "2", + "x": "18", + "y": "4" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "9", + "width": "2", + "x": "18", + "y": "4" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "16", + "width": "2", + "x": "4", + "y": "4" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "16", + "width": "2", + "x": "4", + "y": "4" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "4", + "width": "2", + "x": "11", + "y": "4" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "4", + "width": "2", + "x": "11", + "y": "4" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "4", + "width": "2", + "x": "11", + "y": "10" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "4", + "width": "2", + "x": "11", + "y": "10" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "4", + "width": "2", + "x": "11", + "y": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "4", + "width": "2", + "x": "11", + "y": "16" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_add_road_outline = ic_add_road_outline; \ No newline at end of file diff --git a/dist/md/ic_add_road_twotone.js b/dist/md/ic_add_road_twotone.js new file mode 100644 index 000000000..1a70f1c4e --- /dev/null +++ b/dist/md/ic_add_road_twotone.js @@ -0,0 +1,145 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_add_road_twotone = void 0; +var ic_add_road_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "20,18 20,15 18,15 18,18 15,18 15,20 18,20 18,23 20,23 20,20 23,20 23,18" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "20,18 20,15 18,15 18,18 15,18 15,20 18,20 18,23 20,23 20,20 23,20 23,18" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "9", + "width": "2", + "x": "18", + "y": "4" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "9", + "width": "2", + "x": "18", + "y": "4" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "16", + "width": "2", + "x": "4", + "y": "4" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "16", + "width": "2", + "x": "4", + "y": "4" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "4", + "width": "2", + "x": "11", + "y": "4" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "4", + "width": "2", + "x": "11", + "y": "4" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "4", + "width": "2", + "x": "11", + "y": "10" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "4", + "width": "2", + "x": "11", + "y": "10" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "4", + "width": "2", + "x": "11", + "y": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "4", + "width": "2", + "x": "11", + "y": "16" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_add_road_twotone = ic_add_road_twotone; \ No newline at end of file diff --git a/dist/md/ic_add_shopping_cart.js b/dist/md/ic_add_shopping_cart.js new file mode 100644 index 000000000..2bccb1f55 --- /dev/null +++ b/dist/md/ic_add_shopping_cart.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_add_shopping_cart = void 0; +var ic_add_shopping_cart = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0zm18.31 6l-2.76 5z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 9h2V6h3V4h-3V1h-2v3H8v2h3v3zm-4 9c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2zm-9.83-3.25l.03-.12.9-1.63h7.45c.75 0 1.41-.41 1.75-1.03l3.86-7.01L19.42 4h-.01l-1.1 2-2.76 5H8.53l-.13-.27L6.16 6l-.95-2-.94-2H1v2h2l3.6 7.59-1.35 2.45c-.16.28-.25.61-.25.96 0 1.1.9 2 2 2h12v-2H7.42c-.13 0-.25-.11-.25-.25z" + }, + "children": [] + }] +}; +exports.ic_add_shopping_cart = ic_add_shopping_cart; \ No newline at end of file diff --git a/dist/md/ic_add_shopping_cart_outline.js b/dist/md/ic_add_shopping_cart_outline.js new file mode 100644 index 000000000..ca5d302d8 --- /dev/null +++ b/dist/md/ic_add_shopping_cart_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_add_shopping_cart_outline = void 0; +var ic_add_shopping_cart_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 9h2V6h3V4h-3V1h-2v3H8v2h3v3zm-4 9c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2zm-8.9-5h7.45c.75 0 1.41-.41 1.75-1.03l3.86-7.01L19.42 4l-3.87 7H8.53L4.27 2H1v2h2l3.6 7.59-1.35 2.44C4.52 15.37 5.48 17 7 17h12v-2H7l1.1-2z" + }, + "children": [] + }] +}; +exports.ic_add_shopping_cart_outline = ic_add_shopping_cart_outline; \ No newline at end of file diff --git a/dist/md/ic_add_shopping_cart_twotone.js b/dist/md/ic_add_shopping_cart_twotone.js new file mode 100644 index 000000000..ccc03ab0e --- /dev/null +++ b/dist/md/ic_add_shopping_cart_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_add_shopping_cart_twotone = void 0; +var ic_add_shopping_cart_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 9h2V6h3V4h-3V1h-2v3H8v2h3v3zm-4 9c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2zm-8.9-5h7.45c.75 0 1.41-.41 1.75-1.03l3.86-7.01L19.41 4l-3.86 7H8.53L4.27 2H1v2h2l3.6 7.59-1.35 2.44C4.52 15.37 5.48 17 7 17h12v-2H7l1.1-2z" + }, + "children": [] + }] +}; +exports.ic_add_shopping_cart_twotone = ic_add_shopping_cart_twotone; \ No newline at end of file diff --git a/dist/md/ic_add_task.js b/dist/md/ic_add_task.js new file mode 100644 index 000000000..39ac217ce --- /dev/null +++ b/dist/md/ic_add_task.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_add_task = void 0; +var ic_add_task = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22,5.18L10.59,16.6l-4.24-4.24l1.41-1.41l2.83,2.83l10-10L22,5.18z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8 c1.57,0,3.04,0.46,4.28,1.25l1.45-1.45C16.1,2.67,14.13,2,12,2C6.48,2,2,6.48,2,12s4.48,10,10,10c1.73,0,3.36-0.44,4.78-1.22 l-1.5-1.5C14.28,19.74,13.17,20,12,20z M19,15h-3v2h3v3h2v-3h3v-2h-3v-3h-2V15z" + }, + "children": [] + }] +}; +exports.ic_add_task = ic_add_task; \ No newline at end of file diff --git a/dist/md/ic_add_task_outline.js b/dist/md/ic_add_task_outline.js new file mode 100644 index 000000000..f6d364a13 --- /dev/null +++ b/dist/md/ic_add_task_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_add_task_outline = void 0; +var ic_add_task_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22,5.18L10.59,16.6l-4.24-4.24l1.41-1.41l2.83,2.83l10-10L22,5.18z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8 c1.57,0,3.04,0.46,4.28,1.25l1.45-1.45C16.1,2.67,14.13,2,12,2C6.48,2,2,6.48,2,12s4.48,10,10,10c1.73,0,3.36-0.44,4.78-1.22 l-1.5-1.5C14.28,19.74,13.17,20,12,20z M19,15h-3v2h3v3h2v-3h3v-2h-3v-3h-2V15z" + }, + "children": [] + }] +}; +exports.ic_add_task_outline = ic_add_task_outline; \ No newline at end of file diff --git a/dist/md/ic_add_task_twotone.js b/dist/md/ic_add_task_twotone.js new file mode 100644 index 000000000..8ab6c141d --- /dev/null +++ b/dist/md/ic_add_task_twotone.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_add_task_twotone = void 0; +var ic_add_task_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22,5.18L10.59,16.6l-4.24-4.24l1.41-1.41l2.83,2.83l10-10L22,5.18z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8 c1.57,0,3.04,0.46,4.28,1.25l1.45-1.45C16.1,2.67,14.13,2,12,2C6.48,2,2,6.48,2,12s4.48,10,10,10c1.73,0,3.36-0.44,4.78-1.22 l-1.5-1.5C14.28,19.74,13.17,20,12,20z M19,15h-3v2h3v3h2v-3h3v-2h-3v-3h-2V15z" + }, + "children": [] + }] +}; +exports.ic_add_task_twotone = ic_add_task_twotone; \ No newline at end of file diff --git a/dist/md/ic_add_to_drive.js b/dist/md/ic_add_to_drive.js new file mode 100644 index 000000000..5b50567d5 --- /dev/null +++ b/dist/md/ic_add_to_drive.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_add_to_drive = void 0; +var ic_add_to_drive = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7.71 3.52L1.15 15l3.42 5.99 6.56-11.47-3.42-6zM13.35 15H9.73L6.3 21h8.24c-.96-1.06-1.54-2.46-1.54-4 0-.7.13-1.37.35-2zM20 16v-3h-2v3h-3v2h3v3h2v-3h3v-2h-3zm.71-4.75L15.42 2H8.58v.01l6.15 10.77C15.82 11.68 17.33 11 19 11c.59 0 1.17.09 1.71.25z" + }, + "children": [] + }] +}; +exports.ic_add_to_drive = ic_add_to_drive; \ No newline at end of file diff --git a/dist/md/ic_add_to_home_screen.js b/dist/md/ic_add_to_home_screen.js new file mode 100644 index 000000000..53bedfdf9 --- /dev/null +++ b/dist/md/ic_add_to_home_screen.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_add_to_home_screen = void 0; +var ic_add_to_home_screen = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 1.01L8 1c-1.1 0-2 .9-2 2v3h2V5h10v14H8v-1H6v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM10 15h2V8H5v2h3.59L3 15.59 4.41 17 10 11.41z" + }, + "children": [] + }] +}; +exports.ic_add_to_home_screen = ic_add_to_home_screen; \ No newline at end of file diff --git a/dist/md/ic_add_to_home_screen_outline.js b/dist/md/ic_add_to_home_screen_outline.js new file mode 100644 index 000000000..694884b3a --- /dev/null +++ b/dist/md/ic_add_to_home_screen_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_add_to_home_screen_outline = void 0; +var ic_add_to_home_screen_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 1.01L8 1c-1.1 0-2 .9-2 2v3h2V5h10v14H8v-1H6v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM10 15h2V8H5v2h3.59L3 15.59 4.41 17 10 11.41V15z" + }, + "children": [] + }] +}; +exports.ic_add_to_home_screen_outline = ic_add_to_home_screen_outline; \ No newline at end of file diff --git a/dist/md/ic_add_to_home_screen_twotone.js b/dist/md/ic_add_to_home_screen_twotone.js new file mode 100644 index 000000000..edbf939fc --- /dev/null +++ b/dist/md/ic_add_to_home_screen_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_add_to_home_screen_twotone = void 0; +var ic_add_to_home_screen_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 1.01L8 1c-1.1 0-2 .9-2 2v3h2V5h10v14H8v-1H6v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM10 15h2V8H5v2h3.59L3 15.59 4.41 17 10 11.41V15z" + }, + "children": [] + }] +}; +exports.ic_add_to_home_screen_twotone = ic_add_to_home_screen_twotone; \ No newline at end of file diff --git a/dist/md/ic_add_to_photos.js b/dist/md/ic_add_to_photos.js new file mode 100644 index 000000000..15ce9e9d6 --- /dev/null +++ b/dist/md/ic_add_to_photos.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_add_to_photos = void 0; +var ic_add_to_photos = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-1 9h-4v4h-2v-4H9V9h4V5h2v4h4v2z" + }, + "children": [] + }] +}; +exports.ic_add_to_photos = ic_add_to_photos; \ No newline at end of file diff --git a/dist/md/ic_add_to_photos_outline.js b/dist/md/ic_add_to_photos_outline.js new file mode 100644 index 000000000..4017beccd --- /dev/null +++ b/dist/md/ic_add_to_photos_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_add_to_photos_outline = void 0; +var ic_add_to_photos_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zm-7-1h2v-4h4V9h-4V5h-2v4H9v2h4z" + }, + "children": [] + }] +}; +exports.ic_add_to_photos_outline = ic_add_to_photos_outline; \ No newline at end of file diff --git a/dist/md/ic_add_to_photos_twotone.js b/dist/md/ic_add_to_photos_twotone.js new file mode 100644 index 000000000..d9b4b857d --- /dev/null +++ b/dist/md/ic_add_to_photos_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_add_to_photos_twotone = void 0; +var ic_add_to_photos_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 4H8v12h12V4zm-1 7h-4v4h-2v-4H9V9h4V5h2v4h4v2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 22h14v-2H4V6H2v14c0 1.1.9 2 2 2zm4-4h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2zM8 4h12v12H8V4zm7 1h-2v4H9v2h4v4h2v-4h4V9h-4z" + }, + "children": [] + }] +}; +exports.ic_add_to_photos_twotone = ic_add_to_photos_twotone; \ No newline at end of file diff --git a/dist/md/ic_add_to_queue.js b/dist/md/ic_add_to_queue.js new file mode 100644 index 000000000..906d3af5e --- /dev/null +++ b/dist/md/ic_add_to_queue.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_add_to_queue = void 0; +var ic_add_to_queue = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 3H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.11-.9-2-2-2zm0 14H3V5h18v12zm-5-7v2h-3v3h-2v-3H8v-2h3V7h2v3h3z" + }, + "children": [] + }] +}; +exports.ic_add_to_queue = ic_add_to_queue; \ No newline at end of file diff --git a/dist/md/ic_add_to_queue_outline.js b/dist/md/ic_add_to_queue_outline.js new file mode 100644 index 000000000..7fbc8f354 --- /dev/null +++ b/dist/md/ic_add_to_queue_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_add_to_queue_outline = void 0; +var ic_add_to_queue_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 15h2v-3h3v-2h-3V7h-2v3H8v2h3zM21 3H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5v2h8v-2h5c1.1 0 2-.9 2-2V5c0-1.11-.9-2-2-2zm0 14H3V5h18v12z" + }, + "children": [] + }] +}; +exports.ic_add_to_queue_outline = ic_add_to_queue_outline; \ No newline at end of file diff --git a/dist/md/ic_add_to_queue_twotone.js b/dist/md/ic_add_to_queue_twotone.js new file mode 100644 index 000000000..9982b0c89 --- /dev/null +++ b/dist/md/ic_add_to_queue_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_add_to_queue_twotone = void 0; +var ic_add_to_queue_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 17h18V5H3v12zm5-7h3V7h2v3h3v2h-3v3h-2v-3H8v-2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 15h2v-3h3v-2h-3V7h-2v3H8v2h3zM21 3H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5v2h8v-2h5c1.1 0 2-.9 2-2V5c0-1.11-.9-2-2-2zm0 14H3V5h18v12z" + }, + "children": [] + }] +}; +exports.ic_add_to_queue_twotone = ic_add_to_queue_twotone; \ No newline at end of file diff --git a/dist/md/ic_add_twotone.js b/dist/md/ic_add_twotone.js new file mode 100644 index 000000000..84ec3132b --- /dev/null +++ b/dist/md/ic_add_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_add_twotone = void 0; +var ic_add_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z" + }, + "children": [] + }] +}; +exports.ic_add_twotone = ic_add_twotone; \ No newline at end of file diff --git a/dist/md/ic_addchart.js b/dist/md/ic_addchart.js new file mode 100644 index 000000000..363c16cc2 --- /dev/null +++ b/dist/md/ic_addchart.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_addchart = void 0; +var ic_addchart = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 5v2h-3v3h-2V7h-3V5h3V2h2v3h3zm-3 14H5V5h6V3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-6h-2v6zm-4-6v4h2v-4h-2zm-4 4h2V9h-2v8zm-2 0v-6H7v6h2z" + }, + "children": [] + }] +}; +exports.ic_addchart = ic_addchart; \ No newline at end of file diff --git a/dist/md/ic_addchart_outline.js b/dist/md/ic_addchart_outline.js new file mode 100644 index 000000000..1ac0a5e55 --- /dev/null +++ b/dist/md/ic_addchart_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_addchart_outline = void 0; +var ic_addchart_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M22,5v2h-3v3h-2V7h-3V5h3V2h2v3H22z M19,19H5V5h6V3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2v-6h-2V19z M15,13v4h2v-4H15z M11,17h2V9h-2V17z M9,17v-6H7v6H9z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,5v2h-3v3h-2V7h-3V5h3V2h2v3H22z M19,19H5V5h6V3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2v-6h-2V19z M15,13v4h2v-4H15z M11,17h2V9h-2V17z M9,17v-6H7v6H9z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_addchart_outline = ic_addchart_outline; \ No newline at end of file diff --git a/dist/md/ic_addchart_twotone.js b/dist/md/ic_addchart_twotone.js new file mode 100644 index 000000000..dae58ae11 --- /dev/null +++ b/dist/md/ic_addchart_twotone.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_addchart_twotone = void 0; +var ic_addchart_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M22,5v2h-3v3h-2V7h-3V5h3V2h2v3H22z M19,19H5V5h6V3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2v-6h-2V19z M15,13v4h2v-4H15z M11,17h2V9h-2V17z M9,17v-6H7v6H9z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,5v2h-3v3h-2V7h-3V5h3V2h2v3H22z M19,19H5V5h6V3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2v-6h-2V19z M15,13v4h2v-4H15z M11,17h2V9h-2V17z M9,17v-6H7v6H9z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_addchart_twotone = ic_addchart_twotone; \ No newline at end of file diff --git a/dist/md/ic_adjust.js b/dist/md/ic_adjust.js new file mode 100644 index 000000000..f31e33241 --- /dev/null +++ b/dist/md/ic_adjust.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_adjust = void 0; +var ic_adjust = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm3-8c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3 3 1.34 3 3z" + }, + "children": [] + }] +}; +exports.ic_adjust = ic_adjust; \ No newline at end of file diff --git a/dist/md/ic_adjust_outline.js b/dist/md/ic_adjust_outline.js new file mode 100644 index 000000000..c0fb3c9b6 --- /dev/null +++ b/dist/md/ic_adjust_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_adjust_outline = void 0; +var ic_adjust_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm3-8c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3 3 1.34 3 3z" + }, + "children": [] + }] +}; +exports.ic_adjust_outline = ic_adjust_outline; \ No newline at end of file diff --git a/dist/md/ic_adjust_twotone.js b/dist/md/ic_adjust_twotone.js new file mode 100644 index 000000000..7cc3b1060 --- /dev/null +++ b/dist/md/ic_adjust_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_adjust_twotone = void 0; +var ic_adjust_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 9c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0-7C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" + }, + "children": [] + }] +}; +exports.ic_adjust_twotone = ic_adjust_twotone; \ No newline at end of file diff --git a/dist/md/ic_admin_panel_settings.js b/dist/md/ic_admin_panel_settings.js new file mode 100644 index 000000000..f1b9557a3 --- /dev/null +++ b/dist/md/ic_admin_panel_settings.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_admin_panel_settings = void 0; +var ic_admin_panel_settings = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,11c0.34,0,0.67,0.04,1,0.09V6.27L10.5,3L3,6.27v4.91c0,4.54,3.2,8.79,7.5,9.82c0.55-0.13,1.08-0.32,1.6-0.55 C11.41,19.47,11,18.28,11,17C11,13.69,13.69,11,17,11z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,11c0.34,0,0.67,0.04,1,0.09V6.27L10.5,3L3,6.27v4.91c0,4.54,3.2,8.79,7.5,9.82c0.55-0.13,1.08-0.32,1.6-0.55 C11.41,19.47,11,18.28,11,17C11,13.69,13.69,11,17,11z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M17,13c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C21,14.79,19.21,13,17,13z M17,14.38c0.62,0,1.12,0.51,1.12,1.12 s-0.51,1.12-1.12,1.12s-1.12-0.51-1.12-1.12S16.38,14.38,17,14.38z M17,19.75c-0.93,0-1.74-0.46-2.24-1.17 c0.05-0.72,1.51-1.08,2.24-1.08s2.19,0.36,2.24,1.08C18.74,19.29,17.93,19.75,17,19.75z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,13c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C21,14.79,19.21,13,17,13z M17,14.38c0.62,0,1.12,0.51,1.12,1.12 s-0.51,1.12-1.12,1.12s-1.12-0.51-1.12-1.12S16.38,14.38,17,14.38z M17,19.75c-0.93,0-1.74-0.46-2.24-1.17 c0.05-0.72,1.51-1.08,2.24-1.08s2.19,0.36,2.24,1.08C18.74,19.29,17.93,19.75,17,19.75z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_admin_panel_settings = ic_admin_panel_settings; \ No newline at end of file diff --git a/dist/md/ic_admin_panel_settings_outline.js b/dist/md/ic_admin_panel_settings_outline.js new file mode 100644 index 000000000..bfa6436fb --- /dev/null +++ b/dist/md/ic_admin_panel_settings_outline.js @@ -0,0 +1,89 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_admin_panel_settings_outline = void 0; +var ic_admin_panel_settings_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "cx": "17", + "cy": "15.5", + "fill-rule": "evenodd", + "r": "1.12" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "17", + "cy": "15.5", + "fill-rule": "evenodd", + "r": "1.12" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M17,17.5c-0.73,0-2.19,0.36-2.24,1.08c0.5,0.71,1.32,1.17,2.24,1.17 s1.74-0.46,2.24-1.17C19.19,17.86,17.73,17.5,17,17.5z", + "fill-rule": "evenodd" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,17.5c-0.73,0-2.19,0.36-2.24,1.08c0.5,0.71,1.32,1.17,2.24,1.17 s1.74-0.46,2.24-1.17C19.19,17.86,17.73,17.5,17,17.5z", + "fill-rule": "evenodd" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M18,11.09V6.27L10.5,3L3,6.27v4.91c0,4.54,3.2,8.79,7.5,9.82 c0.55-0.13,1.08-0.32,1.6-0.55C13.18,21.99,14.97,23,17,23c3.31,0,6-2.69,6-6C23,14.03,20.84,11.57,18,11.09z M11,17 c0,0.56,0.08,1.11,0.23,1.62c-0.24,0.11-0.48,0.22-0.73,0.3c-3.17-1-5.5-4.24-5.5-7.74v-3.6l5.5-2.4l5.5,2.4v3.51 C13.16,11.57,11,14.03,11,17z M17,21c-2.21,0-4-1.79-4-4c0-2.21,1.79-4,4-4s4,1.79,4,4C21,19.21,19.21,21,17,21z", + "fill-rule": "evenodd" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18,11.09V6.27L10.5,3L3,6.27v4.91c0,4.54,3.2,8.79,7.5,9.82 c0.55-0.13,1.08-0.32,1.6-0.55C13.18,21.99,14.97,23,17,23c3.31,0,6-2.69,6-6C23,14.03,20.84,11.57,18,11.09z M11,17 c0,0.56,0.08,1.11,0.23,1.62c-0.24,0.11-0.48,0.22-0.73,0.3c-3.17-1-5.5-4.24-5.5-7.74v-3.6l5.5-2.4l5.5,2.4v3.51 C13.16,11.57,11,14.03,11,17z M17,21c-2.21,0-4-1.79-4-4c0-2.21,1.79-4,4-4s4,1.79,4,4C21,19.21,19.21,21,17,21z", + "fill-rule": "evenodd" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_admin_panel_settings_outline = ic_admin_panel_settings_outline; \ No newline at end of file diff --git a/dist/md/ic_admin_panel_settings_twotone.js b/dist/md/ic_admin_panel_settings_twotone.js new file mode 100644 index 000000000..7de3b27b6 --- /dev/null +++ b/dist/md/ic_admin_panel_settings_twotone.js @@ -0,0 +1,111 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_admin_panel_settings_twotone = void 0; +var ic_admin_panel_settings_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M16,7.58l-5.5-2.4L5,7.58v3.6c0,3.5,2.33,6.74,5.5,7.74c0.25-0.08,0.49-0.2,0.73-0.3 C11.08,18.11,11,17.56,11,17c0-2.97,2.16-5.43,5-5.91V7.58z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M16,7.58l-5.5-2.4L5,7.58v3.6c0,3.5,2.33,6.74,5.5,7.74c0.25-0.08,0.49-0.2,0.73-0.3 C11.08,18.11,11,17.56,11,17c0-2.97,2.16-5.43,5-5.91V7.58z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M17,13c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C21,14.79,19.21,13,17,13z M17,14.38 c0.62,0,1.12,0.51,1.12,1.12s-0.51,1.12-1.12,1.12s-1.12-0.51-1.12-1.12S16.38,14.38,17,14.38z M17,19.75 c-0.93,0-1.74-0.46-2.24-1.17c0.05-0.72,1.51-1.08,2.24-1.08s2.19,0.36,2.24,1.08C18.74,19.29,17.93,19.75,17,19.75z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,13c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C21,14.79,19.21,13,17,13z M17,14.38 c0.62,0,1.12,0.51,1.12,1.12s-0.51,1.12-1.12,1.12s-1.12-0.51-1.12-1.12S16.38,14.38,17,14.38z M17,19.75 c-0.93,0-1.74-0.46-2.24-1.17c0.05-0.72,1.51-1.08,2.24-1.08s2.19,0.36,2.24,1.08C18.74,19.29,17.93,19.75,17,19.75z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "17", + "cy": "15.5", + "r": "1.12" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "17", + "cy": "15.5", + "r": "1.12" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M18,11.09V6.27L10.5,3L3,6.27v4.91c0,4.54,3.2,8.79,7.5,9.82c0.55-0.13,1.08-0.32,1.6-0.55C13.18,21.99,14.97,23,17,23 c3.31,0,6-2.69,6-6C23,14.03,20.84,11.57,18,11.09z M11,17c0,0.56,0.08,1.11,0.23,1.62c-0.24,0.11-0.48,0.22-0.73,0.3 c-3.17-1-5.5-4.24-5.5-7.74v-3.6l5.5-2.4l5.5,2.4v3.51C13.16,11.57,11,14.03,11,17z M17,21c-2.21,0-4-1.79-4-4c0-2.21,1.79-4,4-4 s4,1.79,4,4C21,19.21,19.21,21,17,21z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18,11.09V6.27L10.5,3L3,6.27v4.91c0,4.54,3.2,8.79,7.5,9.82c0.55-0.13,1.08-0.32,1.6-0.55C13.18,21.99,14.97,23,17,23 c3.31,0,6-2.69,6-6C23,14.03,20.84,11.57,18,11.09z M11,17c0,0.56,0.08,1.11,0.23,1.62c-0.24,0.11-0.48,0.22-0.73,0.3 c-3.17-1-5.5-4.24-5.5-7.74v-3.6l5.5-2.4l5.5,2.4v3.51C13.16,11.57,11,14.03,11,17z M17,21c-2.21,0-4-1.79-4-4c0-2.21,1.79-4,4-4 s4,1.79,4,4C21,19.21,19.21,21,17,21z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M17,17.5c-0.73,0-2.19,0.36-2.24,1.08c0.5,0.71,1.32,1.17,2.24,1.17s1.74-0.46,2.24-1.17C19.19,17.86,17.73,17.5,17,17.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,17.5c-0.73,0-2.19,0.36-2.24,1.08c0.5,0.71,1.32,1.17,2.24,1.17s1.74-0.46,2.24-1.17C19.19,17.86,17.73,17.5,17,17.5z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_admin_panel_settings_twotone = ic_admin_panel_settings_twotone; \ No newline at end of file diff --git a/dist/md/ic_agriculture.js b/dist/md/ic_agriculture.js new file mode 100644 index 000000000..0b23aa9cf --- /dev/null +++ b/dist/md/ic_agriculture.js @@ -0,0 +1,91 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_agriculture = void 0; +var ic_agriculture = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M19.5,12c0.93,0,1.78,0.28,2.5,0.76V8c0-1.1-0.9-2-2-2h-6.29l-1.06-1.06l1.41-1.41l-0.71-0.71L9.82,6.35l0.71,0.71 l1.41-1.41L13,6.71V9c0,1.1-0.9,2-2,2h-0.54c0.95,1.06,1.54,2.46,1.54,4c0,0.34-0.04,0.67-0.09,1h3.14 C15.3,13.75,17.19,12,19.5,12z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19.5,12c0.93,0,1.78,0.28,2.5,0.76V8c0-1.1-0.9-2-2-2h-6.29l-1.06-1.06l1.41-1.41l-0.71-0.71L9.82,6.35l0.71,0.71 l1.41-1.41L13,6.71V9c0,1.1-0.9,2-2,2h-0.54c0.95,1.06,1.54,2.46,1.54,4c0,0.34-0.04,0.67-0.09,1h3.14 C15.3,13.75,17.19,12,19.5,12z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19.5,13c-1.93,0-3.5,1.57-3.5,3.5s1.57,3.5,3.5,3.5s3.5-1.57,3.5-3.5S21.43,13,19.5,13z M19.5,18 c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S20.33,18,19.5,18z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19.5,13c-1.93,0-3.5,1.57-3.5,3.5s1.57,3.5,3.5,3.5s3.5-1.57,3.5-3.5S21.43,13,19.5,13z M19.5,18 c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S20.33,18,19.5,18z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M4,9h5c0-1.1-0.9-2-2-2H4C3.45,7,3,7.45,3,8C3,8.55,3.45,9,4,9z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M4,9h5c0-1.1-0.9-2-2-2H4C3.45,7,3,7.45,3,8C3,8.55,3.45,9,4,9z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M9.83,13.82l-0.18-0.47L10.58,13c-0.46-1.06-1.28-1.91-2.31-2.43l-0.4,0.89l-0.46-0.21l0.4-0.9C7.26,10.13,6.64,10,6,10 c-0.53,0-1.04,0.11-1.52,0.26l0.34,0.91l-0.47,0.18L4,10.42c-1.06,0.46-1.91,1.28-2.43,2.31l0.89,0.4l-0.21,0.46l-0.9-0.4 C1.13,13.74,1,14.36,1,15c0,0.53,0.11,1.04,0.26,1.52l0.91-0.34l0.18,0.47L1.42,17c0.46,1.06,1.28,1.91,2.31,2.43l0.4-0.89 l0.46,0.21l-0.4,0.9C4.74,19.87,5.36,20,6,20c0.53,0,1.04-0.11,1.52-0.26l-0.34-0.91l0.47-0.18L8,19.58 c1.06-0.46,1.91-1.28,2.43-2.31l-0.89-0.4l0.21-0.46l0.9,0.4C10.87,16.26,11,15.64,11,15c0-0.53-0.11-1.04-0.26-1.52L9.83,13.82z M7.15,17.77c-1.53,0.63-3.29-0.09-3.92-1.62c-0.63-1.53,0.09-3.29,1.62-3.92c1.53-0.63,3.29,0.09,3.92,1.62 C9.41,15.38,8.68,17.14,7.15,17.77z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M9.83,13.82l-0.18-0.47L10.58,13c-0.46-1.06-1.28-1.91-2.31-2.43l-0.4,0.89l-0.46-0.21l0.4-0.9C7.26,10.13,6.64,10,6,10 c-0.53,0-1.04,0.11-1.52,0.26l0.34,0.91l-0.47,0.18L4,10.42c-1.06,0.46-1.91,1.28-2.43,2.31l0.89,0.4l-0.21,0.46l-0.9-0.4 C1.13,13.74,1,14.36,1,15c0,0.53,0.11,1.04,0.26,1.52l0.91-0.34l0.18,0.47L1.42,17c0.46,1.06,1.28,1.91,2.31,2.43l0.4-0.89 l0.46,0.21l-0.4,0.9C4.74,19.87,5.36,20,6,20c0.53,0,1.04-0.11,1.52-0.26l-0.34-0.91l0.47-0.18L8,19.58 c1.06-0.46,1.91-1.28,2.43-2.31l-0.89-0.4l0.21-0.46l0.9,0.4C10.87,16.26,11,15.64,11,15c0-0.53-0.11-1.04-0.26-1.52L9.83,13.82z M7.15,17.77c-1.53,0.63-3.29-0.09-3.92-1.62c-0.63-1.53,0.09-3.29,1.62-3.92c1.53-0.63,3.29,0.09,3.92,1.62 C9.41,15.38,8.68,17.14,7.15,17.77z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_agriculture = ic_agriculture; \ No newline at end of file diff --git a/dist/md/ic_agriculture_outline.js b/dist/md/ic_agriculture_outline.js new file mode 100644 index 000000000..c8058f023 --- /dev/null +++ b/dist/md/ic_agriculture_outline.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_agriculture_outline = void 0; +var ic_agriculture_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M4,9h5c0-1.1-0.9-2-2-2H4C3.45,7,3,7.45,3,8C3,8.55,3.45,9,4,9z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M4,9h5c0-1.1-0.9-2-2-2H4C3.45,7,3,7.45,3,8C3,8.55,3.45,9,4,9z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M22,14.06V8c0-1.1-0.9-2-2-2h-6.29l-1.06-1.06l1.41-1.41l-0.71-0.71L9.82,6.35l0.71,0.71l1.41-1.41L13,6.71V9 c0,1.1-0.9,2-2,2H8.96c-0.22-0.16-0.45-0.3-0.69-0.43l-0.4,0.89l-0.46-0.21l0.4-0.9C7.26,10.13,6.64,10,6,10 c-0.53,0-1.04,0.11-1.52,0.26l0.34,0.91l-0.47,0.18L4,10.42c-1.06,0.46-1.91,1.28-2.43,2.31l0.89,0.4l-0.21,0.46l-0.9-0.4 C1.13,13.74,1,14.36,1,15c0,0.53,0.11,1.04,0.26,1.52l0.91-0.34l0.18,0.47L1.42,17c0.46,1.06,1.28,1.91,2.31,2.43l0.4-0.89 l0.46,0.21l-0.4,0.9C4.74,19.87,5.36,20,6,20c0.53,0,1.04-0.11,1.52-0.26l-0.34-0.91l0.47-0.18L8,19.58 c1.06-0.46,1.91-1.28,2.43-2.31l-0.89-0.4l0.21-0.46l0.9,0.4c0.1-0.26,0.18-0.54,0.24-0.82h5.16C16.03,16.16,16,16.33,16,16.5 c0,1.93,1.57,3.5,3.5,3.5s3.5-1.57,3.5-3.5C23,15.55,22.62,14.69,22,14.06z M6,18c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3 S7.66,18,6,18z M10.87,14c-0.04-0.18-0.08-0.35-0.13-0.52l-0.91,0.34l-0.18-0.47L10.58,13c0,0,0.42,0,0.42,0c2.21,0,4-1.79,4-4V8 h5v5.05C19.84,13.03,19.67,13,19.5,13c-0.95,0-1.81,0.38-2.44,1H10.87z M19.5,18c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5 s1.5,0.67,1.5,1.5S20.33,18,19.5,18z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,14.06V8c0-1.1-0.9-2-2-2h-6.29l-1.06-1.06l1.41-1.41l-0.71-0.71L9.82,6.35l0.71,0.71l1.41-1.41L13,6.71V9 c0,1.1-0.9,2-2,2H8.96c-0.22-0.16-0.45-0.3-0.69-0.43l-0.4,0.89l-0.46-0.21l0.4-0.9C7.26,10.13,6.64,10,6,10 c-0.53,0-1.04,0.11-1.52,0.26l0.34,0.91l-0.47,0.18L4,10.42c-1.06,0.46-1.91,1.28-2.43,2.31l0.89,0.4l-0.21,0.46l-0.9-0.4 C1.13,13.74,1,14.36,1,15c0,0.53,0.11,1.04,0.26,1.52l0.91-0.34l0.18,0.47L1.42,17c0.46,1.06,1.28,1.91,2.31,2.43l0.4-0.89 l0.46,0.21l-0.4,0.9C4.74,19.87,5.36,20,6,20c0.53,0,1.04-0.11,1.52-0.26l-0.34-0.91l0.47-0.18L8,19.58 c1.06-0.46,1.91-1.28,2.43-2.31l-0.89-0.4l0.21-0.46l0.9,0.4c0.1-0.26,0.18-0.54,0.24-0.82h5.16C16.03,16.16,16,16.33,16,16.5 c0,1.93,1.57,3.5,3.5,3.5s3.5-1.57,3.5-3.5C23,15.55,22.62,14.69,22,14.06z M6,18c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3 S7.66,18,6,18z M10.87,14c-0.04-0.18-0.08-0.35-0.13-0.52l-0.91,0.34l-0.18-0.47L10.58,13c0,0,0.42,0,0.42,0c2.21,0,4-1.79,4-4V8 h5v5.05C19.84,13.03,19.67,13,19.5,13c-0.95,0-1.81,0.38-2.44,1H10.87z M19.5,18c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5 s1.5,0.67,1.5,1.5S20.33,18,19.5,18z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_agriculture_outline = ic_agriculture_outline; \ No newline at end of file diff --git a/dist/md/ic_agriculture_twotone.js b/dist/md/ic_agriculture_twotone.js new file mode 100644 index 000000000..e48c49011 --- /dev/null +++ b/dist/md/ic_agriculture_twotone.js @@ -0,0 +1,89 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_agriculture_twotone = void 0; +var ic_agriculture_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M4,9h5c0-1.1-0.9-2-2-2H4C3.45,7,3,7.45,3,8C3,8.55,3.45,9,4,9z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M4,9h5c0-1.1-0.9-2-2-2H4C3.45,7,3,7.45,3,8C3,8.55,3.45,9,4,9z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M22,14.06V8c0-1.1-0.9-2-2-2h-6.29l-1.06-1.06l1.41-1.41l-0.71-0.71L9.82,6.35l0.71,0.71l1.41-1.41L13,6.71V9 c0,1.1-0.9,2-2,2H8.96c-0.22-0.16-0.45-0.3-0.69-0.43l-0.4,0.89l-0.46-0.21l0.4-0.9C7.26,10.13,6.64,10,6,10 c-0.53,0-1.04,0.11-1.52,0.26l0.34,0.91l-0.47,0.18L4,10.42c-1.06,0.46-1.91,1.28-2.43,2.31l0.89,0.4l-0.21,0.46l-0.9-0.4 C1.13,13.74,1,14.36,1,15c0,0.53,0.11,1.04,0.26,1.52l0.91-0.34l0.18,0.47L1.42,17c0.46,1.06,1.28,1.91,2.31,2.43l0.4-0.89 l0.46,0.21l-0.4,0.9C4.74,19.87,5.36,20,6,20c0.53,0,1.04-0.11,1.52-0.26l-0.34-0.91l0.47-0.18L8,19.58 c1.06-0.46,1.91-1.28,2.43-2.31l-0.89-0.4l0.21-0.46l0.9,0.4c0.1-0.26,0.18-0.54,0.24-0.82h5.16C16.03,16.16,16,16.33,16,16.5 c0,1.93,1.57,3.5,3.5,3.5s3.5-1.57,3.5-3.5C23,15.55,22.62,14.69,22,14.06z M6,18c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3 S7.66,18,6,18z M10.87,14c-0.04-0.18-0.08-0.35-0.13-0.52l-0.91,0.34l-0.18-0.47L10.58,13c0,0,0.42,0,0.42,0c2.21,0,4-1.79,4-4V8 h5v5.05C19.84,13.03,19.67,13,19.5,13c-0.95,0-1.81,0.38-2.44,1H10.87z M19.5,18c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5 s1.5,0.67,1.5,1.5S20.33,18,19.5,18z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,14.06V8c0-1.1-0.9-2-2-2h-6.29l-1.06-1.06l1.41-1.41l-0.71-0.71L9.82,6.35l0.71,0.71l1.41-1.41L13,6.71V9 c0,1.1-0.9,2-2,2H8.96c-0.22-0.16-0.45-0.3-0.69-0.43l-0.4,0.89l-0.46-0.21l0.4-0.9C7.26,10.13,6.64,10,6,10 c-0.53,0-1.04,0.11-1.52,0.26l0.34,0.91l-0.47,0.18L4,10.42c-1.06,0.46-1.91,1.28-2.43,2.31l0.89,0.4l-0.21,0.46l-0.9-0.4 C1.13,13.74,1,14.36,1,15c0,0.53,0.11,1.04,0.26,1.52l0.91-0.34l0.18,0.47L1.42,17c0.46,1.06,1.28,1.91,2.31,2.43l0.4-0.89 l0.46,0.21l-0.4,0.9C4.74,19.87,5.36,20,6,20c0.53,0,1.04-0.11,1.52-0.26l-0.34-0.91l0.47-0.18L8,19.58 c1.06-0.46,1.91-1.28,2.43-2.31l-0.89-0.4l0.21-0.46l0.9,0.4c0.1-0.26,0.18-0.54,0.24-0.82h5.16C16.03,16.16,16,16.33,16,16.5 c0,1.93,1.57,3.5,3.5,3.5s3.5-1.57,3.5-3.5C23,15.55,22.62,14.69,22,14.06z M6,18c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3 S7.66,18,6,18z M10.87,14c-0.04-0.18-0.08-0.35-0.13-0.52l-0.91,0.34l-0.18-0.47L10.58,13c0,0,0.42,0,0.42,0c2.21,0,4-1.79,4-4V8 h5v5.05C19.84,13.03,19.67,13,19.5,13c-0.95,0-1.81,0.38-2.44,1H10.87z M19.5,18c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5 s1.5,0.67,1.5,1.5S20.33,18,19.5,18z" + }, + "children": [] + }] + }] + }] + }, { + "name": "path", + "attribs": { + "d": "M20,13.05V8h-5v1c0,2.21-1.79,4-4,4c0,0-0.42,0-0.42,0c0.14,0.32,0.25,0.65,0.32,1h6.16 c0.63-0.62,1.49-1,2.44-1C19.67,13,19.84,13.03,20,13.05z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,13.05V8h-5v1c0,2.21-1.79,4-4,4c0,0-0.42,0-0.42,0c0.14,0.32,0.25,0.65,0.32,1h6.16 c0.63-0.62,1.49-1,2.44-1C19.67,13,19.84,13.03,20,13.05z", + "opacity": ".3" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_agriculture_twotone = ic_agriculture_twotone; \ No newline at end of file diff --git a/dist/md/ic_airline_seat_flat.js b/dist/md/ic_airline_seat_flat.js new file mode 100644 index 000000000..02e781f23 --- /dev/null +++ b/dist/md/ic_airline_seat_flat.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_airline_seat_flat = void 0; +var ic_airline_seat_flat = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 11v2H9V7h9c2.21 0 4 1.79 4 4zM2 14v2h6v2h8v-2h6v-2H2zm5.14-1.9c1.16-1.19 1.14-3.08-.04-4.24-1.19-1.16-3.08-1.14-4.24.04-1.16 1.19-1.14 3.08.04 4.24 1.19 1.16 3.08 1.14 4.24-.04z" + }, + "children": [] + }] +}; +exports.ic_airline_seat_flat = ic_airline_seat_flat; \ No newline at end of file diff --git a/dist/md/ic_airline_seat_flat_angled.js b/dist/md/ic_airline_seat_flat_angled.js new file mode 100644 index 000000000..c12b15c69 --- /dev/null +++ b/dist/md/ic_airline_seat_flat_angled.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_airline_seat_flat_angled = void 0; +var ic_airline_seat_flat_angled = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22.25 14.29l-.69 1.89L9.2 11.71l2.08-5.66 8.56 3.09c2.1.76 3.18 3.06 2.41 5.15zM1.5 12.14L8 14.48V19h8v-1.63L20.52 19l.69-1.89-19.02-6.86-.69 1.89zm5.8-1.94c1.49-.72 2.12-2.51 1.41-4C7.99 4.71 6.2 4.08 4.7 4.8c-1.49.71-2.12 2.5-1.4 4 .71 1.49 2.5 2.12 4 1.4z" + }, + "children": [] + }] +}; +exports.ic_airline_seat_flat_angled = ic_airline_seat_flat_angled; \ No newline at end of file diff --git a/dist/md/ic_airline_seat_flat_angled_outline.js b/dist/md/ic_airline_seat_flat_angled_outline.js new file mode 100644 index 000000000..7c62bc1c2 --- /dev/null +++ b/dist/md/ic_airline_seat_flat_angled_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_airline_seat_flat_angled_outline = void 0; +var ic_airline_seat_flat_angled_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 6.5c.31 0 .7.15.9.56.24.5.02 1.1-.47 1.34-.14.06-.28.1-.43.1-.3 0-.7-.15-.89-.56-.17-.34-.1-.63-.05-.78.05-.14.18-.4.51-.56.14-.06.28-.1.43-.1m6.47 2.11l6.69 2.41c.52.19.93.56 1.15 1.05.22.48.25 1.03.06 1.53l-.01.02-8.59-3.11.7-1.9M10 15.19l4 1.44V17h-4v-1.81M6 4.5c-.44 0-.88.1-1.3.3-1.49.71-2.12 2.5-1.4 4 .51 1.07 1.58 1.7 2.7 1.7.44 0 .88-.1 1.3-.3 1.49-.72 2.12-2.51 1.41-4C8.19 5.13 7.12 4.5 6 4.5zm5.28 1.55L9.2 11.71l12.36 4.47.69-1.89c.77-2.09-.31-4.39-2.41-5.15l-8.56-3.09zm-9.09 4.2l-.69 1.89L8 14.48V19h8v-1.63L20.52 19l.69-1.89-19.02-6.86z" + }, + "children": [] + }] +}; +exports.ic_airline_seat_flat_angled_outline = ic_airline_seat_flat_angled_outline; \ No newline at end of file diff --git a/dist/md/ic_airline_seat_flat_angled_twotone.js b/dist/md/ic_airline_seat_flat_angled_twotone.js new file mode 100644 index 000000000..9540c8866 --- /dev/null +++ b/dist/md/ic_airline_seat_flat_angled_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_airline_seat_flat_angled_twotone = void 0; +var ic_airline_seat_flat_angled_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 16.64l-4-1.45V17h4zM6 8.5c.15 0 .3-.03.44-.1.49-.24.7-.84.46-1.34-.19-.41-.59-.56-.9-.56-.15 0-.3.03-.44.1-.32.16-.45.42-.5.56-.05.15-.12.44.04.77.2.42.59.57.9.57zm13.16 2.52l-6.69-2.41-.7 1.91 8.59 3.11.01-.02c.19-.51.17-1.05-.06-1.53-.23-.5-.63-.87-1.15-1.06z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M1.5 12.14L8 14.48V19h8v-1.63L20.52 19l.69-1.89-19.02-6.86-.69 1.89zm8.5 3.05l4 1.44V17h-4v-1.81zm9.84-6.05l-8.56-3.09-2.08 5.66 12.36 4.47.69-1.89c.77-2.09-.31-4.39-2.41-5.15zm.53 4.46l-.01.02-8.59-3.11.7-1.91 6.69 2.41c.52.19.93.56 1.15 1.05.23.49.25 1.04.06 1.54zM6 10.5c.44 0 .88-.1 1.3-.3 1.49-.72 2.12-2.51 1.41-4C8.19 5.13 7.12 4.5 6 4.5c-.44 0-.88.1-1.3.3-1.49.71-2.12 2.5-1.4 4 .51 1.07 1.58 1.7 2.7 1.7zm-.94-3.34c.05-.14.18-.4.51-.56.14-.06.28-.1.43-.1.31 0 .7.15.9.56.24.5.02 1.1-.47 1.34-.14.06-.28.1-.43.1-.3 0-.7-.15-.89-.56-.17-.34-.1-.63-.05-.78z" + }, + "children": [] + }] +}; +exports.ic_airline_seat_flat_angled_twotone = ic_airline_seat_flat_angled_twotone; \ No newline at end of file diff --git a/dist/md/ic_airline_seat_flat_outline.js b/dist/md/ic_airline_seat_flat_outline.js new file mode 100644 index 000000000..628f66237 --- /dev/null +++ b/dist/md/ic_airline_seat_flat_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_airline_seat_flat_outline = void 0; +var ic_airline_seat_flat_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 13c.78 0 1.55-.3 2.14-.9 1.16-1.19 1.14-3.08-.04-4.24C6.51 7.29 5.75 7 5 7c-.78 0-1.55.3-2.14.9-1.16 1.19-1.14 3.08.04 4.24.59.57 1.35.86 2.1.86zm-.71-3.7c.19-.19.44-.3.71-.3.26 0 .51.1.7.28.4.39.4 1.01.02 1.41-.2.2-.45.31-.72.31-.26 0-.51-.1-.7-.28-.4-.4-.4-1.02-.01-1.42zM18 7H9v6h13v-2c0-2.21-1.79-4-4-4zm-7 4V9h7c1.1 0 2 .9 2 2h-9zm-9 5h6v2h8v-2h6v-2H2z" + }, + "children": [] + }] +}; +exports.ic_airline_seat_flat_outline = ic_airline_seat_flat_outline; \ No newline at end of file diff --git a/dist/md/ic_airline_seat_flat_twotone.js b/dist/md/ic_airline_seat_flat_twotone.js new file mode 100644 index 000000000..677124f43 --- /dev/null +++ b/dist/md/ic_airline_seat_flat_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_airline_seat_flat_twotone = void 0; +var ic_airline_seat_flat_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 11c.27 0 .52-.11.71-.3.39-.4.39-1.02-.01-1.41C5.51 9.11 5.26 9 5 9c-.27 0-.52.11-.71.3-.39.4-.39 1.02.01 1.41.19.18.44.29.7.29zm13-2h-7v2h9c0-1.1-.9-2-2-2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 13c.78 0 1.55-.3 2.14-.9 1.16-1.19 1.14-3.08-.04-4.24C6.51 7.29 5.75 7 5 7c-.78 0-1.55.3-2.14.9-1.16 1.19-1.14 3.08.04 4.24.59.57 1.35.86 2.1.86zm-.71-3.7c.19-.19.44-.3.71-.3.26 0 .51.1.7.28.4.39.4 1.01.02 1.41-.2.2-.45.31-.72.31-.26 0-.51-.1-.7-.28-.4-.4-.4-1.02-.01-1.42zM18 7H9v6h13v-2c0-2.21-1.79-4-4-4zm-7 4V9h7c1.1 0 2 .9 2 2h-9zm-9 5h6v2h8v-2h6v-2H2z" + }, + "children": [] + }] +}; +exports.ic_airline_seat_flat_twotone = ic_airline_seat_flat_twotone; \ No newline at end of file diff --git a/dist/md/ic_airline_seat_individual_suite.js b/dist/md/ic_airline_seat_individual_suite.js new file mode 100644 index 000000000..ac5d50f4c --- /dev/null +++ b/dist/md/ic_airline_seat_individual_suite.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_airline_seat_individual_suite = void 0; +var ic_airline_seat_individual_suite = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 13c1.65 0 3-1.35 3-3S8.65 7 7 7s-3 1.35-3 3 1.35 3 3 3zm12-6h-8v7H3V7H1v10h22v-6c0-2.21-1.79-4-4-4z" + }, + "children": [] + }] +}; +exports.ic_airline_seat_individual_suite = ic_airline_seat_individual_suite; \ No newline at end of file diff --git a/dist/md/ic_airline_seat_individual_suite_outline.js b/dist/md/ic_airline_seat_individual_suite_outline.js new file mode 100644 index 000000000..29b48342a --- /dev/null +++ b/dist/md/ic_airline_seat_individual_suite_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_airline_seat_individual_suite_outline = void 0; +var ic_airline_seat_individual_suite_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 14c1.66 0 3-1.34 3-3S8.66 8 7 8s-3 1.34-3 3 1.34 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm12-3h-8v8H3V7H1v10h22v-6c0-2.21-1.79-4-4-4zm2 8h-8V9h6c1.1 0 2 .9 2 2v4z" + }, + "children": [] + }] +}; +exports.ic_airline_seat_individual_suite_outline = ic_airline_seat_individual_suite_outline; \ No newline at end of file diff --git a/dist/md/ic_airline_seat_individual_suite_twotone.js b/dist/md/ic_airline_seat_individual_suite_twotone.js new file mode 100644 index 000000000..f881c87ff --- /dev/null +++ b/dist/md/ic_airline_seat_individual_suite_twotone.js @@ -0,0 +1,40 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_airline_seat_individual_suite_twotone = void 0; +var ic_airline_seat_individual_suite_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "7", + "cy": "11", + "opacity": ".3", + "r": "1" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 9h-6v6h8v-4c0-1.1-.9-2-2-2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 14c1.66 0 3-1.34 3-3S8.66 8 7 8s-3 1.34-3 3 1.34 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm12-3h-8v8H3V7H1v10h22v-6c0-2.21-1.79-4-4-4zm2 8h-8V9h6c1.1 0 2 .9 2 2v4z" + }, + "children": [] + }] +}; +exports.ic_airline_seat_individual_suite_twotone = ic_airline_seat_individual_suite_twotone; \ No newline at end of file diff --git a/dist/md/ic_airline_seat_legroom_extra.js b/dist/md/ic_airline_seat_legroom_extra.js new file mode 100644 index 000000000..2e172f506 --- /dev/null +++ b/dist/md/ic_airline_seat_legroom_extra.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_airline_seat_legroom_extra = void 0; +var ic_airline_seat_legroom_extra = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 12V3H2v9c0 2.76 2.24 5 5 5h6v-2H7c-1.66 0-3-1.34-3-3zm18.83 5.24c-.38-.72-1.29-.97-2.03-.63l-1.09.5-3.41-6.98c-.34-.68-1.03-1.12-1.79-1.12L11 9V3H5v8c0 1.66 1.34 3 3 3h7l3.41 7 3.72-1.7c.77-.36 1.1-1.3.7-2.06z" + }, + "children": [] + }] +}; +exports.ic_airline_seat_legroom_extra = ic_airline_seat_legroom_extra; \ No newline at end of file diff --git a/dist/md/ic_airline_seat_legroom_extra_outline.js b/dist/md/ic_airline_seat_legroom_extra_outline.js new file mode 100644 index 000000000..cc1bd0027 --- /dev/null +++ b/dist/md/ic_airline_seat_legroom_extra_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_airline_seat_legroom_extra_outline = void 0; +var ic_airline_seat_legroom_extra_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 12V3H2v9c0 2.76 2.24 5 5 5h6v-2H7c-1.66 0-3-1.34-3-3zm18.83 5.24c-.38-.72-1.29-.97-2.03-.63l-1.09.5-3.41-6.98C15.96 9.45 15.27 9 14.51 9H11V3H5v8c0 1.66 1.34 3 3 3h7l3.41 7 3.72-1.7c.77-.36 1.1-1.3.7-2.06z" + }, + "children": [] + }] +}; +exports.ic_airline_seat_legroom_extra_outline = ic_airline_seat_legroom_extra_outline; \ No newline at end of file diff --git a/dist/md/ic_airline_seat_legroom_extra_twotone.js b/dist/md/ic_airline_seat_legroom_extra_twotone.js new file mode 100644 index 000000000..cc61245f3 --- /dev/null +++ b/dist/md/ic_airline_seat_legroom_extra_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_airline_seat_legroom_extra_twotone = void 0; +var ic_airline_seat_legroom_extra_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 12V3H2v9c0 2.76 2.24 5 5 5h6v-2H7c-1.66 0-3-1.34-3-3zm18.83 5.24c-.38-.72-1.29-.97-2.03-.63l-1.09.5-3.41-6.98C15.96 9.45 15.27 9 14.51 9H11V3H5v8c0 1.66 1.34 3 3 3h7l3.41 7 3.72-1.7c.77-.36 1.1-1.3.7-2.06z" + }, + "children": [] + }] +}; +exports.ic_airline_seat_legroom_extra_twotone = ic_airline_seat_legroom_extra_twotone; \ No newline at end of file diff --git a/dist/md/ic_airline_seat_legroom_normal.js b/dist/md/ic_airline_seat_legroom_normal.js new file mode 100644 index 000000000..6a5641a2a --- /dev/null +++ b/dist/md/ic_airline_seat_legroom_normal.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_airline_seat_legroom_normal = void 0; +var ic_airline_seat_legroom_normal = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 12V3H3v9c0 2.76 2.24 5 5 5h6v-2H8c-1.66 0-3-1.34-3-3zm15.5 6H19v-7c0-1.1-.9-2-2-2h-5V3H6v8c0 1.65 1.35 3 3 3h7v7h4.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5z" + }, + "children": [] + }] +}; +exports.ic_airline_seat_legroom_normal = ic_airline_seat_legroom_normal; \ No newline at end of file diff --git a/dist/md/ic_airline_seat_legroom_normal_outline.js b/dist/md/ic_airline_seat_legroom_normal_outline.js new file mode 100644 index 000000000..e4860ee0c --- /dev/null +++ b/dist/md/ic_airline_seat_legroom_normal_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_airline_seat_legroom_normal_outline = void 0; +var ic_airline_seat_legroom_normal_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 12V3H3v9c0 2.76 2.24 5 5 5h6v-2H8c-1.66 0-3-1.34-3-3zm15.5 6H19v-7c0-1.1-.9-2-2-2h-5V3H6v8c0 1.65 1.35 3 3 3h7v7h4.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5z" + }, + "children": [] + }] +}; +exports.ic_airline_seat_legroom_normal_outline = ic_airline_seat_legroom_normal_outline; \ No newline at end of file diff --git a/dist/md/ic_airline_seat_legroom_normal_twotone.js b/dist/md/ic_airline_seat_legroom_normal_twotone.js new file mode 100644 index 000000000..33331a496 --- /dev/null +++ b/dist/md/ic_airline_seat_legroom_normal_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_airline_seat_legroom_normal_twotone = void 0; +var ic_airline_seat_legroom_normal_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 12V3H3v9c0 2.76 2.24 5 5 5h6v-2H8c-1.66 0-3-1.34-3-3zm15.5 6H19v-7c0-1.1-.9-2-2-2h-5V3H6v8c0 1.65 1.35 3 3 3h7v7h4.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5z" + }, + "children": [] + }] +}; +exports.ic_airline_seat_legroom_normal_twotone = ic_airline_seat_legroom_normal_twotone; \ No newline at end of file diff --git a/dist/md/ic_airline_seat_legroom_reduced.js b/dist/md/ic_airline_seat_legroom_reduced.js new file mode 100644 index 000000000..dfd5419e6 --- /dev/null +++ b/dist/md/ic_airline_seat_legroom_reduced.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_airline_seat_legroom_reduced = void 0; +var ic_airline_seat_legroom_reduced = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.97 19.2c.18.96-.55 1.8-1.47 1.8H14v-3l1-4H9c-1.65 0-3-1.35-3-3V3h6v6h5c1.1 0 2 .9 2 2l-2 7h1.44c.73 0 1.39.49 1.53 1.2zM5 12V3H3v9c0 2.76 2.24 5 5 5h4v-2H8c-1.66 0-3-1.34-3-3z" + }, + "children": [] + }] +}; +exports.ic_airline_seat_legroom_reduced = ic_airline_seat_legroom_reduced; \ No newline at end of file diff --git a/dist/md/ic_airline_seat_legroom_reduced_outline.js b/dist/md/ic_airline_seat_legroom_reduced_outline.js new file mode 100644 index 000000000..2d8b83094 --- /dev/null +++ b/dist/md/ic_airline_seat_legroom_reduced_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_airline_seat_legroom_reduced_outline = void 0; +var ic_airline_seat_legroom_reduced_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.97 19.2c.18.96-.55 1.8-1.47 1.8H14v-3l1-4H9c-1.65 0-3-1.35-3-3V3h6v6h5c1.1 0 2 .9 2 2l-2 7h1.44c.73 0 1.39.49 1.53 1.2zM5 12V3H3v9c0 2.76 2.24 5 5 5h4v-2H8c-1.66 0-3-1.34-3-3z" + }, + "children": [] + }] +}; +exports.ic_airline_seat_legroom_reduced_outline = ic_airline_seat_legroom_reduced_outline; \ No newline at end of file diff --git a/dist/md/ic_airline_seat_legroom_reduced_twotone.js b/dist/md/ic_airline_seat_legroom_reduced_twotone.js new file mode 100644 index 000000000..ef42f27d2 --- /dev/null +++ b/dist/md/ic_airline_seat_legroom_reduced_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_airline_seat_legroom_reduced_twotone = void 0; +var ic_airline_seat_legroom_reduced_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.97 19.2c.18.96-.55 1.8-1.47 1.8H14v-3l1-4H9c-1.65 0-3-1.35-3-3V3h6v6h5c1.1 0 2 .9 2 2l-2 7h1.44c.73 0 1.39.49 1.53 1.2zM5 12V3H3v9c0 2.76 2.24 5 5 5h4v-2H8c-1.66 0-3-1.34-3-3z" + }, + "children": [] + }] +}; +exports.ic_airline_seat_legroom_reduced_twotone = ic_airline_seat_legroom_reduced_twotone; \ No newline at end of file diff --git a/dist/md/ic_airline_seat_recline_extra.js b/dist/md/ic_airline_seat_recline_extra.js new file mode 100644 index 000000000..a33a71938 --- /dev/null +++ b/dist/md/ic_airline_seat_recline_extra.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_airline_seat_recline_extra = void 0; +var ic_airline_seat_recline_extra = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5.35 5.64c-.9-.64-1.12-1.88-.49-2.79.63-.9 1.88-1.12 2.79-.49.9.64 1.12 1.88.49 2.79-.64.9-1.88 1.12-2.79.49zM16 19H8.93c-1.48 0-2.74-1.08-2.96-2.54L4 7H2l1.99 9.76C4.37 19.2 6.47 21 8.94 21H16v-2zm.23-4h-4.88l-1.03-4.1c1.58.89 3.28 1.54 5.15 1.22V9.99c-1.63.31-3.44-.27-4.69-1.25L9.14 7.47c-.23-.18-.49-.3-.76-.38-.32-.09-.66-.12-.99-.06h-.02c-1.23.22-2.05 1.39-1.84 2.61l1.35 5.92C7.16 16.98 8.39 18 9.83 18h6.85l3.82 3 1.5-1.5-5.77-4.5z" + }, + "children": [] + }] +}; +exports.ic_airline_seat_recline_extra = ic_airline_seat_recline_extra; \ No newline at end of file diff --git a/dist/md/ic_airline_seat_recline_extra_outline.js b/dist/md/ic_airline_seat_recline_extra_outline.js new file mode 100644 index 000000000..5c9136701 --- /dev/null +++ b/dist/md/ic_airline_seat_recline_extra_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_airline_seat_recline_extra_outline = void 0; +var ic_airline_seat_recline_extra_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5.35 5.64c-.9-.64-1.12-1.88-.49-2.79.63-.9 1.88-1.12 2.79-.49.9.64 1.12 1.88.49 2.79-.64.9-1.88 1.12-2.79.49zM16 19H8.93c-1.48 0-2.74-1.08-2.96-2.54L4 7H2l1.99 9.76C4.37 19.2 6.47 21 8.94 21H16v-2zm.23-4h-4.88l-1.03-4.1c1.58.89 3.28 1.54 5.15 1.22V9.99c-1.63.31-3.44-.27-4.69-1.25L9.14 7.47c-.23-.18-.49-.3-.76-.38-.32-.09-.66-.12-.99-.06h-.02c-1.23.22-2.05 1.39-1.84 2.61l1.35 5.92C7.16 16.98 8.39 18 9.83 18h6.85l3.82 3 1.5-1.5-5.77-4.5z" + }, + "children": [] + }] +}; +exports.ic_airline_seat_recline_extra_outline = ic_airline_seat_recline_extra_outline; \ No newline at end of file diff --git a/dist/md/ic_airline_seat_recline_extra_twotone.js b/dist/md/ic_airline_seat_recline_extra_twotone.js new file mode 100644 index 000000000..76c82f6a0 --- /dev/null +++ b/dist/md/ic_airline_seat_recline_extra_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_airline_seat_recline_extra_twotone = void 0; +var ic_airline_seat_recline_extra_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5.35 5.64c-.9-.64-1.12-1.88-.49-2.79.63-.9 1.88-1.12 2.79-.49.9.64 1.12 1.88.49 2.79-.64.9-1.88 1.12-2.79.49zM16 19H8.93c-1.48 0-2.74-1.08-2.96-2.54L4 7H2l1.99 9.76C4.37 19.2 6.47 21 8.94 21H16v-2zm.23-4h-4.88l-1.03-4.1c1.58.89 3.28 1.54 5.15 1.22V9.99c-1.63.31-3.44-.27-4.69-1.25L9.14 7.47c-.23-.18-.49-.3-.76-.38-.32-.09-.66-.12-.99-.06h-.02c-1.23.22-2.05 1.39-1.84 2.61l1.35 5.92C7.16 16.98 8.39 18 9.83 18h6.85l3.82 3 1.5-1.5-5.77-4.5z" + }, + "children": [] + }] +}; +exports.ic_airline_seat_recline_extra_twotone = ic_airline_seat_recline_extra_twotone; \ No newline at end of file diff --git a/dist/md/ic_airline_seat_recline_normal.js b/dist/md/ic_airline_seat_recline_normal.js new file mode 100644 index 000000000..6acd5dbc6 --- /dev/null +++ b/dist/md/ic_airline_seat_recline_normal.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_airline_seat_recline_normal = void 0; +var ic_airline_seat_recline_normal = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7.59 5.41c-.78-.78-.78-2.05 0-2.83.78-.78 2.05-.78 2.83 0 .78.78.78 2.05 0 2.83-.79.79-2.05.79-2.83 0zM6 16V7H4v9c0 2.76 2.24 5 5 5h6v-2H9c-1.66 0-3-1.34-3-3zm14 4.07L14.93 15H11.5v-3.68c1.4 1.15 3.6 2.16 5.5 2.16v-2.16c-1.66.02-3.61-.87-4.67-2.04l-1.4-1.55c-.19-.21-.43-.38-.69-.5-.29-.14-.62-.23-.96-.23h-.03C8.01 7 7 8.01 7 9.25V15c0 1.66 1.34 3 3 3h5.07l3.5 3.5L20 20.07z" + }, + "children": [] + }] +}; +exports.ic_airline_seat_recline_normal = ic_airline_seat_recline_normal; \ No newline at end of file diff --git a/dist/md/ic_airline_seat_recline_normal_outline.js b/dist/md/ic_airline_seat_recline_normal_outline.js new file mode 100644 index 000000000..a1746a98f --- /dev/null +++ b/dist/md/ic_airline_seat_recline_normal_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_airline_seat_recline_normal_outline = void 0; +var ic_airline_seat_recline_normal_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7.59 5.41c-.78-.78-.78-2.05 0-2.83s2.05-.78 2.83 0 .78 2.05 0 2.83c-.79.79-2.05.79-2.83 0zM6 16V7H4v9c0 2.76 2.24 5 5 5h6v-2H9c-1.66 0-3-1.34-3-3zm14 4.07L14.93 15H11.5v-3.68c1.4 1.15 3.6 2.16 5.5 2.16v-2.16c-1.66.02-3.61-.87-4.67-2.04l-1.4-1.55c-.19-.21-.43-.38-.69-.5-.29-.14-.62-.23-.96-.23h-.03C8.01 7 7 8.01 7 9.25V15c0 1.66 1.34 3 3 3h5.07l3.5 3.5L20 20.07z" + }, + "children": [] + }] +}; +exports.ic_airline_seat_recline_normal_outline = ic_airline_seat_recline_normal_outline; \ No newline at end of file diff --git a/dist/md/ic_airline_seat_recline_normal_twotone.js b/dist/md/ic_airline_seat_recline_normal_twotone.js new file mode 100644 index 000000000..787189dc1 --- /dev/null +++ b/dist/md/ic_airline_seat_recline_normal_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_airline_seat_recline_normal_twotone = void 0; +var ic_airline_seat_recline_normal_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7.59 5.41c-.78-.78-.78-2.05 0-2.83s2.05-.78 2.83 0 .78 2.05 0 2.83c-.79.79-2.05.79-2.83 0zM6 16V7H4v9c0 2.76 2.24 5 5 5h6v-2H9c-1.66 0-3-1.34-3-3zm14 4.07L14.93 15H11.5v-3.68c1.4 1.15 3.6 2.16 5.5 2.16v-2.16c-1.66.02-3.61-.87-4.67-2.04l-1.4-1.55c-.19-.21-.43-.38-.69-.5-.29-.14-.62-.23-.96-.23h-.03C8.01 7 7 8.01 7 9.25V15c0 1.66 1.34 3 3 3h5.07l3.5 3.5L20 20.07z" + }, + "children": [] + }] +}; +exports.ic_airline_seat_recline_normal_twotone = ic_airline_seat_recline_normal_twotone; \ No newline at end of file diff --git a/dist/md/ic_airplanemode_active.js b/dist/md/ic_airplanemode_active.js new file mode 100644 index 000000000..0dcfbaa3c --- /dev/null +++ b/dist/md/ic_airplanemode_active.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_airplanemode_active = void 0; +var ic_airplanemode_active = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,16v-2l-8.5-5V3.5C13.5,2.67,12.83,2,12,2s-1.5,0.67-1.5,1.5V9L2,14v2l8.5-2.5V19L8,20.5L8,22l4-1l4,1l0-1.5L13.5,19 v-5.5L22,16z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,16v-2l-8.5-5V3.5C13.5,2.67,12.83,2,12,2s-1.5,0.67-1.5,1.5V9L2,14v2l8.5-2.5V19L8,20.5L8,22l4-1l4,1l0-1.5L13.5,19 v-5.5L22,16z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M0,0h24v24H0V0z", + "fill": "none" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M0,0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }] + }] + }] +}; +exports.ic_airplanemode_active = ic_airplanemode_active; \ No newline at end of file diff --git a/dist/md/ic_airplanemode_active_outline.js b/dist/md/ic_airplanemode_active_outline.js new file mode 100644 index 000000000..c40645db6 --- /dev/null +++ b/dist/md/ic_airplanemode_active_outline.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_airplanemode_active_outline = void 0; +var ic_airplanemode_active_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,16v-2l-8.5-5V3.5C13.5,2.67,12.83,2,12,2s-1.5,0.67-1.5,1.5V9L2,14v2l8.5-2.5V19L8,20.5L8,22l4-1l4,1l0-1.5L13.5,19 v-5.5L22,16z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,16v-2l-8.5-5V3.5C13.5,2.67,12.83,2,12,2s-1.5,0.67-1.5,1.5V9L2,14v2l8.5-2.5V19L8,20.5L8,22l4-1l4,1l0-1.5L13.5,19 v-5.5L22,16z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M0,0h24v24H0V0z", + "fill": "none" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M0,0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }] + }] + }] +}; +exports.ic_airplanemode_active_outline = ic_airplanemode_active_outline; \ No newline at end of file diff --git a/dist/md/ic_airplanemode_active_twotone.js b/dist/md/ic_airplanemode_active_twotone.js new file mode 100644 index 000000000..4c1941b26 --- /dev/null +++ b/dist/md/ic_airplanemode_active_twotone.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_airplanemode_active_twotone = void 0; +var ic_airplanemode_active_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,16v-2l-8.5-5V3.5C13.5,2.67,12.83,2,12,2s-1.5,0.67-1.5,1.5V9L2,14v2l8.5-2.5V19L8,20.5L8,22l4-1l4,1l0-1.5L13.5,19 v-5.5L22,16z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,16v-2l-8.5-5V3.5C13.5,2.67,12.83,2,12,2s-1.5,0.67-1.5,1.5V9L2,14v2l8.5-2.5V19L8,20.5L8,22l4-1l4,1l0-1.5L13.5,19 v-5.5L22,16z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M0,0h24v24H0V0z", + "fill": "none" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M0,0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }] + }] + }] +}; +exports.ic_airplanemode_active_twotone = ic_airplanemode_active_twotone; \ No newline at end of file diff --git a/dist/md/ic_airplanemode_inactive.js b/dist/md/ic_airplanemode_inactive.js new file mode 100644 index 000000000..b778ae3c8 --- /dev/null +++ b/dist/md/ic_airplanemode_inactive.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_airplanemode_inactive = void 0; +var ic_airplanemode_inactive = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M10.5,7.67V3.5C10.5,2.67,11.17,2,12,2c0.83,0,1.5,0.67,1.5,1.5V9l8.5,5v2l-4.49-1.32L10.5,7.67z M19.78,22.61l1.41-1.41 L13.5,13.5L9.56,9.56L2.81,2.81L1.39,4.22l6.38,6.38L2,14v2l8.5-2.5V19L8,20.5L8,22l4-1l4,1l0-1.5L13.5,19v-2.67L19.78,22.61z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M10.5,7.67V3.5C10.5,2.67,11.17,2,12,2c0.83,0,1.5,0.67,1.5,1.5V9l8.5,5v2l-4.49-1.32L10.5,7.67z M19.78,22.61l1.41-1.41 L13.5,13.5L9.56,9.56L2.81,2.81L1.39,4.22l6.38,6.38L2,14v2l8.5-2.5V19L8,20.5L8,22l4-1l4,1l0-1.5L13.5,19v-2.67L19.78,22.61z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M0,0h24v24H0V0z", + "fill": "none" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M0,0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }] + }] + }] +}; +exports.ic_airplanemode_inactive = ic_airplanemode_inactive; \ No newline at end of file diff --git a/dist/md/ic_airplanemode_inactive_outline.js b/dist/md/ic_airplanemode_inactive_outline.js new file mode 100644 index 000000000..a5edef003 --- /dev/null +++ b/dist/md/ic_airplanemode_inactive_outline.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_airplanemode_inactive_outline = void 0; +var ic_airplanemode_inactive_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M10.5,7.67V3.5C10.5,2.67,11.17,2,12,2c0.83,0,1.5,0.67,1.5,1.5V9l8.5,5v2l-4.49-1.32L10.5,7.67z M19.78,22.61l1.41-1.41 L13.5,13.5L9.56,9.56L2.81,2.81L1.39,4.22l6.38,6.38L2,14v2l8.5-2.5V19L8,20.5L8,22l4-1l4,1l0-1.5L13.5,19v-2.67L19.78,22.61z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M10.5,7.67V3.5C10.5,2.67,11.17,2,12,2c0.83,0,1.5,0.67,1.5,1.5V9l8.5,5v2l-4.49-1.32L10.5,7.67z M19.78,22.61l1.41-1.41 L13.5,13.5L9.56,9.56L2.81,2.81L1.39,4.22l6.38,6.38L2,14v2l8.5-2.5V19L8,20.5L8,22l4-1l4,1l0-1.5L13.5,19v-2.67L19.78,22.61z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M0,0h24v24H0V0z", + "fill": "none" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M0,0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }] + }] + }] +}; +exports.ic_airplanemode_inactive_outline = ic_airplanemode_inactive_outline; \ No newline at end of file diff --git a/dist/md/ic_airplanemode_inactive_twotone.js b/dist/md/ic_airplanemode_inactive_twotone.js new file mode 100644 index 000000000..c8f29c48b --- /dev/null +++ b/dist/md/ic_airplanemode_inactive_twotone.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_airplanemode_inactive_twotone = void 0; +var ic_airplanemode_inactive_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M10.5,7.67V3.5C10.5,2.67,11.17,2,12,2c0.83,0,1.5,0.67,1.5,1.5V9l8.5,5v2l-4.49-1.32L10.5,7.67z M19.78,22.61l1.41-1.41 L13.5,13.5L9.56,9.56L2.81,2.81L1.39,4.22l6.38,6.38L2,14v2l8.5-2.5V19L8,20.5L8,22l4-1l4,1l0-1.5L13.5,19v-2.67L19.78,22.61z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M10.5,7.67V3.5C10.5,2.67,11.17,2,12,2c0.83,0,1.5,0.67,1.5,1.5V9l8.5,5v2l-4.49-1.32L10.5,7.67z M19.78,22.61l1.41-1.41 L13.5,13.5L9.56,9.56L2.81,2.81L1.39,4.22l6.38,6.38L2,14v2l8.5-2.5V19L8,20.5L8,22l4-1l4,1l0-1.5L13.5,19v-2.67L19.78,22.61z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M0,0h24v24H0V0z", + "fill": "none" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M0,0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }] + }] + }] +}; +exports.ic_airplanemode_inactive_twotone = ic_airplanemode_inactive_twotone; \ No newline at end of file diff --git a/dist/md/ic_airplay.js b/dist/md/ic_airplay.js new file mode 100644 index 000000000..82e4af763 --- /dev/null +++ b/dist/md/ic_airplay.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_airplay = void 0; +var ic_airplay = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "6,22 18,22 12,16" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "6,22 18,22 12,16" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M21,3H3C1.9,3,1,3.9,1,5v12c0,1.1,0.9,2,2,2h4v-2H3V5h18v12h-4v2h4c1.1,0,2-0.9,2-2V5C23,3.9,22.1,3,21,3z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21,3H3C1.9,3,1,3.9,1,5v12c0,1.1,0.9,2,2,2h4v-2H3V5h18v12h-4v2h4c1.1,0,2-0.9,2-2V5C23,3.9,22.1,3,21,3z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_airplay = ic_airplay; \ No newline at end of file diff --git a/dist/md/ic_airplay_outline.js b/dist/md/ic_airplay_outline.js new file mode 100644 index 000000000..41757c94a --- /dev/null +++ b/dist/md/ic_airplay_outline.js @@ -0,0 +1,107 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_airplay_outline = void 0; +var ic_airplay_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "6,22 18,22 12,16" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "6,22 18,22 12,16" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M21,3H3C1.9,3,1,3.9,1,5v12c0,1.1,0.9,2,2,2h4v-2H3V5h18v12h-4v2h4c1.1,0,2-0.9,2-2V5C23,3.9,22.1,3,21,3z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21,3H3C1.9,3,1,3.9,1,5v12c0,1.1,0.9,2,2,2h4v-2H3V5h18v12h-4v2h4c1.1,0,2-0.9,2-2V5C23,3.9,22.1,3,21,3z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_airplay_outline = ic_airplay_outline; \ No newline at end of file diff --git a/dist/md/ic_airplay_twotone.js b/dist/md/ic_airplay_twotone.js new file mode 100644 index 000000000..c1cf6e948 --- /dev/null +++ b/dist/md/ic_airplay_twotone.js @@ -0,0 +1,107 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_airplay_twotone = void 0; +var ic_airplay_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "6,22 18,22 12,16" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "6,22 18,22 12,16" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M21,3H3C1.9,3,1,3.9,1,5v12c0,1.1,0.9,2,2,2h4v-2H3V5h18v12h-4v2h4c1.1,0,2-0.9,2-2V5C23,3.9,22.1,3,21,3z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21,3H3C1.9,3,1,3.9,1,5v12c0,1.1,0.9,2,2,2h4v-2H3V5h18v12h-4v2h4c1.1,0,2-0.9,2-2V5C23,3.9,22.1,3,21,3z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_airplay_twotone = ic_airplay_twotone; \ No newline at end of file diff --git a/dist/md/ic_airport_shuttle.js b/dist/md/ic_airport_shuttle.js new file mode 100644 index 000000000..466e3382f --- /dev/null +++ b/dist/md/ic_airport_shuttle.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_airport_shuttle = void 0; +var ic_airport_shuttle = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 5H3c-1.1 0-2 .89-2 2v9h2c0 1.65 1.34 3 3 3s3-1.35 3-3h5.5c0 1.65 1.34 3 3 3s3-1.35 3-3H23v-5l-6-6zM3 11V7h4v4H3zm3 6.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm7-6.5H9V7h4v4zm4.5 6.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM15 11V7h1l4 4h-5z" + }, + "children": [] + }] +}; +exports.ic_airport_shuttle = ic_airport_shuttle; \ No newline at end of file diff --git a/dist/md/ic_airport_shuttle_outline.js b/dist/md/ic_airport_shuttle_outline.js new file mode 100644 index 000000000..27ebd271e --- /dev/null +++ b/dist/md/ic_airport_shuttle_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_airport_shuttle_outline = void 0; +var ic_airport_shuttle_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 5H3c-1.1 0-2 .89-2 2v9h2c0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5l-6-6zm-2 2h1l3 3h-4V7zM9 7h4v3H9V7zM3 7h4v3H3V7zm3 10.25c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25zm12 0c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25zM21 14h-.78c-.55-.61-1.34-1-2.22-1s-1.67.39-2.22 1H8.22c-.55-.61-1.33-1-2.22-1s-1.67.39-2.22 1H3v-2h18v2z" + }, + "children": [] + }] +}; +exports.ic_airport_shuttle_outline = ic_airport_shuttle_outline; \ No newline at end of file diff --git a/dist/md/ic_airport_shuttle_twotone.js b/dist/md/ic_airport_shuttle_twotone.js new file mode 100644 index 000000000..f1a123bd2 --- /dev/null +++ b/dist/md/ic_airport_shuttle_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_airport_shuttle_twotone = void 0; +var ic_airport_shuttle_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 14h.78c.55-.61 1.34-1 2.22-1s1.67.39 2.22 1h7.56c.55-.61 1.34-1 2.22-1s1.67.39 2.22 1H21v-2H3v2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 5H3c-1.1 0-2 .89-2 2v9h2c0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5l-6-6zm-2 2h1l3 3h-4V7zM9 7h4v3H9V7zM3 7h4v3H3V7zm3 10.25c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25zm12 0c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25zM21 14h-.78c-.55-.61-1.34-1-2.22-1s-1.67.39-2.22 1H8.22c-.55-.61-1.33-1-2.22-1s-1.67.39-2.22 1H3v-2h18v2z" + }, + "children": [] + }] +}; +exports.ic_airport_shuttle_twotone = ic_airport_shuttle_twotone; \ No newline at end of file diff --git a/dist/md/ic_alarm.js b/dist/md/ic_alarm.js new file mode 100644 index 000000000..3e03a461a --- /dev/null +++ b/dist/md/ic_alarm.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_alarm = void 0; +var ic_alarm = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM7.88 3.39L6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM12.5 8H11v6l4.75 2.85.75-1.23-4-2.37V8zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" + }, + "children": [] + }] +}; +exports.ic_alarm = ic_alarm; \ No newline at end of file diff --git a/dist/md/ic_alarm_add.js b/dist/md/ic_alarm_add.js new file mode 100644 index 000000000..b01d651f8 --- /dev/null +++ b/dist/md/ic_alarm_add.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_alarm_add = void 0; +var ic_alarm_add = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7.88 3.39L6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm1-11h-2v3H8v2h3v3h2v-3h3v-2h-3V9z" + }, + "children": [] + }] +}; +exports.ic_alarm_add = ic_alarm_add; \ No newline at end of file diff --git a/dist/md/ic_alarm_add_outline.js b/dist/md/ic_alarm_add_outline.js new file mode 100644 index 000000000..0d3d0b7b2 --- /dev/null +++ b/dist/md/ic_alarm_add_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_alarm_add_outline = void 0; +var ic_alarm_add_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17.337 1.81l4.607 3.845-1.28 1.535-4.61-3.843zm-10.674 0l1.282 1.536L3.337 7.19l-1.28-1.536zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7zm1-11h-2v3H8v2h3v3h2v-3h3v-2h-3z" + }, + "children": [] + }] +}; +exports.ic_alarm_add_outline = ic_alarm_add_outline; \ No newline at end of file diff --git a/dist/md/ic_alarm_add_twotone.js b/dist/md/ic_alarm_add_twotone.js new file mode 100644 index 000000000..4de68d942 --- /dev/null +++ b/dist/md/ic_alarm_add_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_alarm_add_twotone = void 0; +var ic_alarm_add_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 6c-3.86 0-7 3.14-7 7s3.14 7 7 7 7-3.14 7-7-3.14-7-7-7zm4 8h-3v3h-2v-3H8v-2h3V9h2v3h3v2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17.337 1.81l4.607 3.845-1.28 1.535-4.61-3.843zm-10.674 0l1.282 1.536L3.337 7.19l-1.28-1.536zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7zm1-11h-2v3H8v2h3v3h2v-3h3v-2h-3z" + }, + "children": [] + }] +}; +exports.ic_alarm_add_twotone = ic_alarm_add_twotone; \ No newline at end of file diff --git a/dist/md/ic_alarm_off.js b/dist/md/ic_alarm_off.js new file mode 100644 index 000000000..192abe7ab --- /dev/null +++ b/dist/md/ic_alarm_off.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_alarm_off = void 0; +var ic_alarm_off = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 6c3.87 0 7 3.13 7 7 0 .84-.16 1.65-.43 2.4l1.52 1.52c.58-1.19.91-2.51.91-3.92 0-4.97-4.03-9-9-9-1.41 0-2.73.33-3.92.91L9.6 6.43C10.35 6.16 11.16 6 12 6zm10-.28l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM2.92 2.29L1.65 3.57 2.98 4.9l-1.11.93 1.42 1.42 1.11-.94.8.8C3.83 8.69 3 10.75 3 13c0 4.97 4.02 9 9 9 2.25 0 4.31-.83 5.89-2.2l2.2 2.2 1.27-1.27L3.89 3.27l-.97-.98zm13.55 16.1C15.26 19.39 13.7 20 12 20c-3.87 0-7-3.13-7-7 0-1.7.61-3.26 1.61-4.47l9.86 9.86zM8.02 3.28L6.6 1.86l-.86.71 1.42 1.42.86-.71z" + }, + "children": [] + }] +}; +exports.ic_alarm_off = ic_alarm_off; \ No newline at end of file diff --git a/dist/md/ic_alarm_off_outline.js b/dist/md/ic_alarm_off_outline.js new file mode 100644 index 000000000..99742ef84 --- /dev/null +++ b/dist/md/ic_alarm_off_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_alarm_off_outline = void 0; +var ic_alarm_off_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10.04 6.29C10.66 6.11 11.32 6 12 6c3.86 0 7 3.14 7 7 0 .68-.11 1.34-.29 1.96l1.56 1.56c.47-1.08.73-2.27.73-3.52 0-4.97-4.03-9-9-9-1.25 0-2.44.26-3.53.72l1.57 1.57zm7.297-4.48l4.607 3.845-1.28 1.535-4.61-3.843zM3.02 2.1L1.61 3.51l1.37 1.37-.92.77 1.28 1.54 1.06-.88.8.8C3.83 8.69 3 10.75 3 13c0 4.97 4.03 9 9 9 2.25 0 4.31-.83 5.89-2.2l2.1 2.1 1.41-1.41L3.02 2.1zM12 20c-3.86 0-7-3.14-7-7 0-1.7.61-3.26 1.62-4.47l9.85 9.85C15.26 19.39 13.7 20 12 20zM7.48 3.73l.46-.38-1.28-1.54-.6.5z" + }, + "children": [] + }] +}; +exports.ic_alarm_off_outline = ic_alarm_off_outline; \ No newline at end of file diff --git a/dist/md/ic_alarm_off_twotone.js b/dist/md/ic_alarm_off_twotone.js new file mode 100644 index 000000000..4d4549e30 --- /dev/null +++ b/dist/md/ic_alarm_off_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_alarm_off_twotone = void 0; +var ic_alarm_off_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10.04 6.29C10.66 6.11 11.32 6 12 6c3.86 0 7 3.14 7 7 0 .68-.11 1.34-.29 1.96l1.56 1.56c.47-1.08.73-2.27.73-3.52 0-4.97-4.03-9-9-9-1.25 0-2.44.26-3.53.72l1.57 1.57zm7.297-4.48l4.607 3.845-1.28 1.535-4.61-3.843zm1.903 16.51l-1.43-1.43-9.7-9.7-1.43-1.43-.74-.74L4.52 3.6l-1.5-1.5-1.41 1.41 1.37 1.37-.92.77 1.28 1.54 1.06-.88.8.8C3.83 8.69 3 10.75 3 13c0 4.97 4.03 9 9 9 2.25 0 4.31-.83 5.89-2.2l2.1 2.1 1.41-1.41-2.16-2.17zM12 20c-3.86 0-7-3.14-7-7 0-1.7.61-3.26 1.62-4.47l9.85 9.85C15.26 19.39 13.7 20 12 20zM7.48 3.73l.46-.38-1.28-1.54-.6.5z" + }, + "children": [] + }] +}; +exports.ic_alarm_off_twotone = ic_alarm_off_twotone; \ No newline at end of file diff --git a/dist/md/ic_alarm_on.js b/dist/md/ic_alarm_on.js new file mode 100644 index 000000000..ecc82c3c0 --- /dev/null +++ b/dist/md/ic_alarm_on.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_alarm_on = void 0; +var ic_alarm_on = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM7.88 3.39L6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm-1.46-5.47L8.41 12.4l-1.06 1.06 3.18 3.18 6-6-1.06-1.06-4.93 4.95z" + }, + "children": [] + }] +}; +exports.ic_alarm_on = ic_alarm_on; \ No newline at end of file diff --git a/dist/md/ic_alarm_on_outline.js b/dist/md/ic_alarm_on_outline.js new file mode 100644 index 000000000..a13173e6d --- /dev/null +++ b/dist/md/ic_alarm_on_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_alarm_on_outline = void 0; +var ic_alarm_on_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10.54 14.53L8.41 12.4l-1.06 1.06 3.18 3.18 6-6-1.06-1.06zm6.797-12.72l4.607 3.845-1.28 1.535-4.61-3.843zm-10.674 0l1.282 1.536L3.337 7.19l-1.28-1.536zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z" + }, + "children": [] + }] +}; +exports.ic_alarm_on_outline = ic_alarm_on_outline; \ No newline at end of file diff --git a/dist/md/ic_alarm_on_twotone.js b/dist/md/ic_alarm_on_twotone.js new file mode 100644 index 000000000..8f60f2f99 --- /dev/null +++ b/dist/md/ic_alarm_on_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_alarm_on_twotone = void 0; +var ic_alarm_on_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 6c-3.86 0-7 3.14-7 7s3.14 7 7 7 7-3.14 7-7-3.14-7-7-7zm-1.47 10.64l-3.18-3.18 1.06-1.06 2.13 2.13 4.93-4.95 1.06 1.06-6 6z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10.54 14.53L8.41 12.4l-1.06 1.06 3.18 3.18 6-6-1.06-1.06zm6.797-12.72l4.607 3.845-1.28 1.535-4.61-3.843zm-10.674 0l1.282 1.536L3.337 7.19l-1.28-1.536zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z" + }, + "children": [] + }] +}; +exports.ic_alarm_on_twotone = ic_alarm_on_twotone; \ No newline at end of file diff --git a/dist/md/ic_alarm_outline.js b/dist/md/ic_alarm_outline.js new file mode 100644 index 000000000..f36a4ad2e --- /dev/null +++ b/dist/md/ic_alarm_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_alarm_outline = void 0; +var ic_alarm_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12.5 8H11v6l4.75 2.85.75-1.23-4-2.37zm4.837-6.19l4.607 3.845-1.28 1.535-4.61-3.843zm-10.674 0l1.282 1.536L3.337 7.19l-1.28-1.536zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z" + }, + "children": [] + }] +}; +exports.ic_alarm_outline = ic_alarm_outline; \ No newline at end of file diff --git a/dist/md/ic_alarm_twotone.js b/dist/md/ic_alarm_twotone.js new file mode 100644 index 000000000..4358e64dd --- /dev/null +++ b/dist/md/ic_alarm_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_alarm_twotone = void 0; +var ic_alarm_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 6c-3.86 0-7 3.14-7 7s3.14 7 7 7 7-3.14 7-7-3.14-7-7-7zm3.75 10.85L11 14V8h1.5v5.25l4 2.37-.75 1.23z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12.5 8H11v6l4.75 2.85.75-1.23-4-2.37zm4.837-6.19l4.607 3.845-1.28 1.535-4.61-3.843zm-10.674 0l1.282 1.536L3.337 7.19l-1.28-1.536zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z" + }, + "children": [] + }] +}; +exports.ic_alarm_twotone = ic_alarm_twotone; \ No newline at end of file diff --git a/dist/md/ic_album.js b/dist/md/ic_album.js new file mode 100644 index 000000000..2eea8211a --- /dev/null +++ b/dist/md/ic_album.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_album = void 0; +var ic_album = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 14.5c-2.49 0-4.5-2.01-4.5-4.5S9.51 7.5 12 7.5s4.5 2.01 4.5 4.5-2.01 4.5-4.5 4.5zm0-5.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z" + }, + "children": [] + }] +}; +exports.ic_album = ic_album; \ No newline at end of file diff --git a/dist/md/ic_album_outline.js b/dist/md/ic_album_outline.js new file mode 100644 index 000000000..56098b037 --- /dev/null +++ b/dist/md/ic_album_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_album_outline = void 0; +var ic_album_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-12.5c-2.49 0-4.5 2.01-4.5 4.5s2.01 4.5 4.5 4.5 4.5-2.01 4.5-4.5-2.01-4.5-4.5-4.5zm0 5.5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" + }, + "children": [] + }] +}; +exports.ic_album_outline = ic_album_outline; \ No newline at end of file diff --git a/dist/md/ic_album_twotone.js b/dist/md/ic_album_twotone.js new file mode 100644 index 000000000..99033eabb --- /dev/null +++ b/dist/md/ic_album_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_album_twotone = void 0; +var ic_album_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm0 12.5c-2.49 0-4.5-2.01-4.5-4.5S9.51 7.5 12 7.5s4.5 2.01 4.5 4.5-2.01 4.5-4.5 4.5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-12.5c-2.49 0-4.5 2.01-4.5 4.5s2.01 4.5 4.5 4.5 4.5-2.01 4.5-4.5-2.01-4.5-4.5-4.5zm0 5.5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" + }, + "children": [] + }] +}; +exports.ic_album_twotone = ic_album_twotone; \ No newline at end of file diff --git a/dist/md/ic_all_inbox.js b/dist/md/ic_all_inbox.js new file mode 100644 index 000000000..8da5d9a78 --- /dev/null +++ b/dist/md/ic_all_inbox.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_all_inbox = void 0; +var ic_all_inbox = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v7c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 6h-4c0 1.62-1.38 3-3 3s-3-1.38-3-3H5V5h14v4zm-4 7h6v3c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2v-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3z" + }, + "children": [] + }] +}; +exports.ic_all_inbox = ic_all_inbox; \ No newline at end of file diff --git a/dist/md/ic_all_inbox_outline.js b/dist/md/ic_all_inbox_outline.js new file mode 100644 index 000000000..0f5616514 --- /dev/null +++ b/dist/md/ic_all_inbox_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_all_inbox_outline = void 0; +var ic_all_inbox_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v7c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5 10h3.13c.21.78.67 1.47 1.27 2H5v-2zm14 2h-4.4c.6-.53 1.06-1.22 1.27-2H19v2zm0-4h-5v1c0 1.07-.93 2-2 2s-2-.93-2-2V8H5V5h14v3zm-2 7h-3v1c0 .47-.19.9-.48 1.25-.37.45-.92.75-1.52.75s-1.15-.3-1.52-.75c-.29-.35-.48-.78-.48-1.25v-1H3v4c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-4h-4zM5 17h3.13c.02.09.06.17.09.25.24.68.65 1.28 1.18 1.75H5v-2zm14 2h-4.4c.54-.47.95-1.07 1.18-1.75.03-.08.07-.16.09-.25H19v2z" + }, + "children": [] + }] +}; +exports.ic_all_inbox_outline = ic_all_inbox_outline; \ No newline at end of file diff --git a/dist/md/ic_all_inbox_twotone.js b/dist/md/ic_all_inbox_twotone.js new file mode 100644 index 000000000..1e220f652 --- /dev/null +++ b/dist/md/ic_all_inbox_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_all_inbox_twotone = void 0; +var ic_all_inbox_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v7c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5 10h3.13c.21.78.67 1.47 1.27 2H5v-2zm14 2h-4.4c.6-.53 1.06-1.22 1.27-2H19v2zm0-4h-5v1c0 1.07-.93 2-2 2s-2-.93-2-2V8H5V5h14v3zm-5 7v1c0 .47-.19.9-.48 1.25-.37.45-.92.75-1.52.75s-1.15-.3-1.52-.75c-.29-.35-.48-.78-.48-1.25v-1H3v4c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-4h-7zm-9 2h3.13c.02.09.06.17.09.25.24.68.65 1.28 1.18 1.75H5v-2zm14 2h-4.4c.54-.47.95-1.07 1.18-1.75.03-.08.07-.16.09-.25H19v2z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8.13 10H5v2h4.4c-.6-.53-1.06-1.22-1.27-2zm6.47 2H19v-2h-3.13c-.21.78-.67 1.47-1.27 2zm-6.38 5.25c-.03-.08-.06-.16-.09-.25H5v2h4.4c-.53-.47-.94-1.07-1.18-1.75zm7.65-.25c-.02.09-.06.17-.09.25-.23.68-.64 1.28-1.18 1.75H19v-2h-3.13z", + "opacity": ".3" + }, + "children": [] + }] +}; +exports.ic_all_inbox_twotone = ic_all_inbox_twotone; \ No newline at end of file diff --git a/dist/md/ic_all_inclusive.js b/dist/md/ic_all_inclusive.js new file mode 100644 index 000000000..66b456e8b --- /dev/null +++ b/dist/md/ic_all_inclusive.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_all_inclusive = void 0; +var ic_all_inclusive = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18.6 6.62c-1.44 0-2.8.56-3.77 1.53L12 10.66 10.48 12h.01L7.8 14.39c-.64.64-1.49.99-2.4.99-1.87 0-3.39-1.51-3.39-3.38S3.53 8.62 5.4 8.62c.91 0 1.76.35 2.44 1.03l1.13 1 1.51-1.34L9.22 8.2C8.2 7.18 6.84 6.62 5.4 6.62 2.42 6.62 0 9.04 0 12s2.42 5.38 5.4 5.38c1.44 0 2.8-.56 3.77-1.53l2.83-2.5.01.01L13.52 12h-.01l2.69-2.39c.64-.64 1.49-.99 2.4-.99 1.87 0 3.39 1.51 3.39 3.38s-1.52 3.38-3.39 3.38c-.9 0-1.76-.35-2.44-1.03l-1.14-1.01-1.51 1.34 1.27 1.12c1.02 1.01 2.37 1.57 3.82 1.57 2.98 0 5.4-2.41 5.4-5.38s-2.42-5.37-5.4-5.37z" + }, + "children": [] + }] +}; +exports.ic_all_inclusive = ic_all_inclusive; \ No newline at end of file diff --git a/dist/md/ic_all_inclusive_outline.js b/dist/md/ic_all_inclusive_outline.js new file mode 100644 index 000000000..41e66a60d --- /dev/null +++ b/dist/md/ic_all_inclusive_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_all_inclusive_outline = void 0; +var ic_all_inclusive_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18.6 6.62c-1.44 0-2.8.56-3.77 1.53L7.8 14.39c-.64.64-1.49.99-2.4.99-1.87 0-3.39-1.51-3.39-3.38S3.53 8.62 5.4 8.62c.91 0 1.76.35 2.44 1.03l1.13 1 1.51-1.34L9.22 8.2C8.2 7.18 6.84 6.62 5.4 6.62 2.42 6.62 0 9.04 0 12s2.42 5.38 5.4 5.38c1.44 0 2.8-.56 3.77-1.53l7.03-6.24c.64-.64 1.49-.99 2.4-.99 1.87 0 3.39 1.51 3.39 3.38s-1.52 3.38-3.39 3.38c-.9 0-1.76-.35-2.44-1.03l-1.14-1.01-1.51 1.34 1.27 1.12c1.02 1.01 2.37 1.57 3.82 1.57 2.98 0 5.4-2.41 5.4-5.38s-2.42-5.37-5.4-5.37z" + }, + "children": [] + }] +}; +exports.ic_all_inclusive_outline = ic_all_inclusive_outline; \ No newline at end of file diff --git a/dist/md/ic_all_inclusive_twotone.js b/dist/md/ic_all_inclusive_twotone.js new file mode 100644 index 000000000..2f975cbbd --- /dev/null +++ b/dist/md/ic_all_inclusive_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_all_inclusive_twotone = void 0; +var ic_all_inclusive_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18.6 6.62c-1.44 0-2.8.56-3.77 1.53L7.8 14.39c-.64.64-1.49.99-2.4.99-1.87 0-3.39-1.51-3.39-3.38S3.53 8.62 5.4 8.62c.91 0 1.76.35 2.44 1.03l1.13 1 1.51-1.34L9.22 8.2C8.2 7.18 6.84 6.62 5.4 6.62 2.42 6.62 0 9.04 0 12s2.42 5.38 5.4 5.38c1.44 0 2.8-.56 3.77-1.53l7.03-6.24c.64-.64 1.49-.99 2.4-.99 1.87 0 3.39 1.51 3.39 3.38s-1.52 3.38-3.39 3.38c-.9 0-1.76-.35-2.44-1.03l-1.14-1.01-1.51 1.34 1.27 1.12c1.02 1.01 2.37 1.57 3.82 1.57 2.98 0 5.4-2.41 5.4-5.38s-2.42-5.37-5.4-5.37z" + }, + "children": [] + }] +}; +exports.ic_all_inclusive_twotone = ic_all_inclusive_twotone; \ No newline at end of file diff --git a/dist/md/ic_all_out.js b/dist/md/ic_all_out.js new file mode 100644 index 000000000..758c14838 --- /dev/null +++ b/dist/md/ic_all_out.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_all_out = void 0; +var ic_all_out = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M16.21 4.16l4 4v-4zm4 12l-4 4h4zm-12 4l-4-4v4zm-4-12l4-4h-4zm12.95-.95c-2.73-2.73-7.17-2.73-9.9 0s-2.73 7.17 0 9.9 7.17 2.73 9.9 0 2.73-7.16 0-9.9zm-1.1 8.8c-2.13 2.13-5.57 2.13-7.7 0s-2.13-5.57 0-7.7 5.57-2.13 7.7 0 2.13 5.57 0 7.7z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M.21.16h24v24h-24z", + "fill": "none" + }, + "children": [] + }] +}; +exports.ic_all_out = ic_all_out; \ No newline at end of file diff --git a/dist/md/ic_all_out_outline.js b/dist/md/ic_all_out_outline.js new file mode 100644 index 000000000..e36360623 --- /dev/null +++ b/dist/md/ic_all_out_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_all_out_outline = void 0; +var ic_all_out_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 4v4l4-4zm12 0l4 4V4zm4 16v-4l-4 4zM4 20h4l-4-4zm15-8c0-3.87-3.13-7-7-7s-7 3.13-7 7 3.13 7 7 7 7-3.13 7-7zm-7 5c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" + }, + "children": [] + }] +}; +exports.ic_all_out_outline = ic_all_out_outline; \ No newline at end of file diff --git a/dist/md/ic_all_out_twotone.js b/dist/md/ic_all_out_twotone.js new file mode 100644 index 000000000..186207b20 --- /dev/null +++ b/dist/md/ic_all_out_twotone.js @@ -0,0 +1,33 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_all_out_twotone = void 0; +var ic_all_out_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "opacity": ".3", + "r": "5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 4v4l4-4zm12 0l4 4V4zm4 16v-4l-4 4zM4 20h4l-4-4zm15-8c0-3.87-3.13-7-7-7s-7 3.13-7 7 3.13 7 7 7 7-3.13 7-7zm-7 5c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" + }, + "children": [] + }] +}; +exports.ic_all_out_twotone = ic_all_out_twotone; \ No newline at end of file diff --git a/dist/md/ic_alt_route.js b/dist/md/ic_alt_route.js new file mode 100644 index 000000000..37111a53b --- /dev/null +++ b/dist/md/ic_alt_route.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_alt_route = void 0; +var ic_alt_route = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M9.78,11.16l-1.42,1.42c-0.68-0.69-1.34-1.58-1.79-2.94l1.94-0.49C8.83,10.04,9.28,10.65,9.78,11.16z M11,6L7,2L3,6h3.02 C6.04,6.81,6.1,7.54,6.21,8.17l1.94-0.49C8.08,7.2,8.03,6.63,8.02,6H11z M21,6l-4-4l-4,4h2.99c-0.1,3.68-1.28,4.75-2.54,5.88 c-0.5,0.44-1.01,0.92-1.45,1.55c-0.34-0.49-0.73-0.88-1.13-1.24L9.46,13.6C10.39,14.45,11,15.14,11,17c0,0,0,0,0,0h0v5h2v-5 c0,0,0,0,0,0c0-2.02,0.71-2.66,1.79-3.63c1.38-1.24,3.08-2.78,3.2-7.37H21z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M9.78,11.16l-1.42,1.42c-0.68-0.69-1.34-1.58-1.79-2.94l1.94-0.49C8.83,10.04,9.28,10.65,9.78,11.16z M11,6L7,2L3,6h3.02 C6.04,6.81,6.1,7.54,6.21,8.17l1.94-0.49C8.08,7.2,8.03,6.63,8.02,6H11z M21,6l-4-4l-4,4h2.99c-0.1,3.68-1.28,4.75-2.54,5.88 c-0.5,0.44-1.01,0.92-1.45,1.55c-0.34-0.49-0.73-0.88-1.13-1.24L9.46,13.6C10.39,14.45,11,15.14,11,17c0,0,0,0,0,0h0v5h2v-5 c0,0,0,0,0,0c0-2.02,0.71-2.66,1.79-3.63c1.38-1.24,3.08-2.78,3.2-7.37H21z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_alt_route = ic_alt_route; \ No newline at end of file diff --git a/dist/md/ic_alt_route_outline.js b/dist/md/ic_alt_route_outline.js new file mode 100644 index 000000000..0249f716f --- /dev/null +++ b/dist/md/ic_alt_route_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_alt_route_outline = void 0; +var ic_alt_route_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M9.78,11.16l-1.42,1.42c-0.68-0.69-1.34-1.58-1.79-2.94l1.94-0.49C8.83,10.04,9.28,10.65,9.78,11.16z M11,6L7,2L3,6h3.02 C6.04,6.81,6.1,7.54,6.21,8.17l1.94-0.49C8.08,7.2,8.03,6.63,8.02,6H11z M21,6l-4-4l-4,4h2.99c-0.1,3.68-1.28,4.75-2.54,5.88 c-0.5,0.44-1.01,0.92-1.45,1.55c-0.34-0.49-0.73-0.88-1.13-1.24L9.46,13.6C10.39,14.45,11,15.14,11,17c0,0,0,0,0,0h0v5h2v-5 c0,0,0,0,0,0c0-2.02,0.71-2.66,1.79-3.63c1.38-1.24,3.08-2.78,3.2-7.37H21z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M9.78,11.16l-1.42,1.42c-0.68-0.69-1.34-1.58-1.79-2.94l1.94-0.49C8.83,10.04,9.28,10.65,9.78,11.16z M11,6L7,2L3,6h3.02 C6.04,6.81,6.1,7.54,6.21,8.17l1.94-0.49C8.08,7.2,8.03,6.63,8.02,6H11z M21,6l-4-4l-4,4h2.99c-0.1,3.68-1.28,4.75-2.54,5.88 c-0.5,0.44-1.01,0.92-1.45,1.55c-0.34-0.49-0.73-0.88-1.13-1.24L9.46,13.6C10.39,14.45,11,15.14,11,17c0,0,0,0,0,0h0v5h2v-5 c0,0,0,0,0,0c0-2.02,0.71-2.66,1.79-3.63c1.38-1.24,3.08-2.78,3.2-7.37H21z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_alt_route_outline = ic_alt_route_outline; \ No newline at end of file diff --git a/dist/md/ic_alt_route_twotone.js b/dist/md/ic_alt_route_twotone.js new file mode 100644 index 000000000..eb9b43518 --- /dev/null +++ b/dist/md/ic_alt_route_twotone.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_alt_route_twotone = void 0; +var ic_alt_route_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M9.78,11.16l-1.42,1.42c-0.68-0.69-1.34-1.58-1.79-2.94l1.94-0.49C8.83,10.04,9.28,10.65,9.78,11.16z M11,6L7,2L3,6h3.02 C6.04,6.81,6.1,7.54,6.21,8.17l1.94-0.49C8.08,7.2,8.03,6.63,8.02,6H11z M21,6l-4-4l-4,4h2.99c-0.1,3.68-1.28,4.75-2.54,5.88 c-0.5,0.44-1.01,0.92-1.45,1.55c-0.34-0.49-0.73-0.88-1.13-1.24L9.46,13.6C10.39,14.45,11,15.14,11,17c0,0,0,0,0,0h0v5h2v-5 c0,0,0,0,0,0c0-2.02,0.71-2.66,1.79-3.63c1.38-1.24,3.08-2.78,3.2-7.37H21z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M9.78,11.16l-1.42,1.42c-0.68-0.69-1.34-1.58-1.79-2.94l1.94-0.49C8.83,10.04,9.28,10.65,9.78,11.16z M11,6L7,2L3,6h3.02 C6.04,6.81,6.1,7.54,6.21,8.17l1.94-0.49C8.08,7.2,8.03,6.63,8.02,6H11z M21,6l-4-4l-4,4h2.99c-0.1,3.68-1.28,4.75-2.54,5.88 c-0.5,0.44-1.01,0.92-1.45,1.55c-0.34-0.49-0.73-0.88-1.13-1.24L9.46,13.6C10.39,14.45,11,15.14,11,17c0,0,0,0,0,0h0v5h2v-5 c0,0,0,0,0,0c0-2.02,0.71-2.66,1.79-3.63c1.38-1.24,3.08-2.78,3.2-7.37H21z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_alt_route_twotone = ic_alt_route_twotone; \ No newline at end of file diff --git a/dist/md/ic_alternate_email.js b/dist/md/ic_alternate_email.js new file mode 100644 index 000000000..6675a6472 --- /dev/null +++ b/dist/md/ic_alternate_email.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_alternate_email = void 0; +var ic_alternate_email = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10h5v-2h-5c-4.34 0-8-3.66-8-8s3.66-8 8-8 8 3.66 8 8v1.43c0 .79-.71 1.57-1.5 1.57s-1.5-.78-1.5-1.57V12c0-2.76-2.24-5-5-5s-5 2.24-5 5 2.24 5 5 5c1.38 0 2.64-.56 3.54-1.47.65.89 1.77 1.47 2.96 1.47 1.97 0 3.5-1.6 3.5-3.57V12c0-5.52-4.48-10-10-10zm0 13c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z" + }, + "children": [] + }] +}; +exports.ic_alternate_email = ic_alternate_email; \ No newline at end of file diff --git a/dist/md/ic_alternate_email_outline.js b/dist/md/ic_alternate_email_outline.js new file mode 100644 index 000000000..4bb5de4dd --- /dev/null +++ b/dist/md/ic_alternate_email_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_alternate_email_outline = void 0; +var ic_alternate_email_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 1.95c-5.52 0-10 4.48-10 10s4.48 10 10 10h5v-2h-5c-4.34 0-8-3.66-8-8s3.66-8 8-8 8 3.66 8 8v1.43c0 .79-.71 1.57-1.5 1.57s-1.5-.78-1.5-1.57v-1.43c0-2.76-2.24-5-5-5s-5 2.24-5 5 2.24 5 5 5c1.38 0 2.64-.56 3.54-1.47.65.89 1.77 1.47 2.96 1.47 1.97 0 3.5-1.6 3.5-3.57v-1.43c0-5.52-4.48-10-10-10zm0 13c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z" + }, + "children": [] + }] +}; +exports.ic_alternate_email_outline = ic_alternate_email_outline; \ No newline at end of file diff --git a/dist/md/ic_alternate_email_twotone.js b/dist/md/ic_alternate_email_twotone.js new file mode 100644 index 000000000..7695ef219 --- /dev/null +++ b/dist/md/ic_alternate_email_twotone.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_alternate_email_twotone = void 0; +var ic_alternate_email_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 21.95h5v-2h-5c-4.34 0-8-3.66-8-8s3.66-8 8-8 8 3.66 8 8v1.43c0 .79-.71 1.57-1.5 1.57s-1.5-.78-1.5-1.57v-1.43c0-2.76-2.24-5-5-5s-5 2.24-5 5 2.24 5 5 5c1.38 0 2.64-.56 3.54-1.47.65.89 1.77 1.47 2.96 1.47 1.97 0 3.5-1.6 3.5-3.57v-1.43c0-5.52-4.48-10-10-10s-10 4.48-10 10 4.48 10 10 10zm0-7c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z", + "fill-opacity": ".9" + }, + "children": [] + }] +}; +exports.ic_alternate_email_twotone = ic_alternate_email_twotone; \ No newline at end of file diff --git a/dist/md/ic_amp_stories.js b/dist/md/ic_amp_stories.js new file mode 100644 index 000000000..b27b847e8 --- /dev/null +++ b/dist/md/ic_amp_stories.js @@ -0,0 +1,105 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_amp_stories = void 0; +var ic_amp_stories = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "height": "15", + "width": "10", + "x": "7", + "y": "4" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "15", + "width": "10", + "x": "7", + "y": "4" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "11", + "width": "2", + "x": "3", + "y": "6" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "11", + "width": "2", + "x": "3", + "y": "6" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "11", + "width": "2", + "x": "19", + "y": "6" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "11", + "width": "2", + "x": "19", + "y": "6" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_amp_stories = ic_amp_stories; \ No newline at end of file diff --git a/dist/md/ic_amp_stories_outline.js b/dist/md/ic_amp_stories_outline.js new file mode 100644 index 000000000..936f2c0ac --- /dev/null +++ b/dist/md/ic_amp_stories_outline.js @@ -0,0 +1,99 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_amp_stories_outline = void 0; +var ic_amp_stories_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M7,19h10V4H7V19z M9,6h6v11H9V6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M7,19h10V4H7V19z M9,6h6v11H9V6z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "11", + "width": "2", + "x": "3", + "y": "6" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "11", + "width": "2", + "x": "3", + "y": "6" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "11", + "width": "2", + "x": "19", + "y": "6" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "11", + "width": "2", + "x": "19", + "y": "6" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_amp_stories_outline = ic_amp_stories_outline; \ No newline at end of file diff --git a/dist/md/ic_amp_stories_twotone.js b/dist/md/ic_amp_stories_twotone.js new file mode 100644 index 000000000..f1e9076e0 --- /dev/null +++ b/dist/md/ic_amp_stories_twotone.js @@ -0,0 +1,129 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_amp_stories_twotone = void 0; +var ic_amp_stories_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": { + "opacity": ".3" + }, + "children": [{ + "name": "g", + "attribs": { + "opacity": ".3" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "11", + "width": "6", + "x": "9", + "y": "6" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "11", + "width": "6", + "x": "9", + "y": "6" + }, + "children": [] + }] + }] + }] + }, { + "name": "path", + "attribs": { + "d": "M7,19h10V4H7V19z M9,6h6v11H9V6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M7,19h10V4H7V19z M9,6h6v11H9V6z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "11", + "width": "2", + "x": "3", + "y": "6" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "11", + "width": "2", + "x": "3", + "y": "6" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "11", + "width": "2", + "x": "19", + "y": "6" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "11", + "width": "2", + "x": "19", + "y": "6" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_amp_stories_twotone = ic_amp_stories_twotone; \ No newline at end of file diff --git a/dist/md/ic_analytics.js b/dist/md/ic_analytics.js new file mode 100644 index 000000000..cbab21949 --- /dev/null +++ b/dist/md/ic_analytics.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_analytics = void 0; +var ic_analytics = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 17H7v-5h2v5zm4 0h-2v-3h2v3zm0-5h-2v-2h2v2zm4 5h-2V7h2v10z" + }, + "children": [] + }] +}; +exports.ic_analytics = ic_analytics; \ No newline at end of file diff --git a/dist/md/ic_analytics_outline.js b/dist/md/ic_analytics_outline.js new file mode 100644 index 000000000..e5bbfc6f5 --- /dev/null +++ b/dist/md/ic_analytics_outline.js @@ -0,0 +1,123 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_analytics_outline = void 0; +var ic_analytics_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "5", + "width": "2", + "x": "7", + "y": "12" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "5", + "width": "2", + "x": "7", + "y": "12" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "10", + "width": "2", + "x": "15", + "y": "7" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "10", + "width": "2", + "x": "15", + "y": "7" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "3", + "width": "2", + "x": "11", + "y": "14" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "3", + "width": "2", + "x": "11", + "y": "14" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "11", + "y": "10" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "11", + "y": "10" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_analytics_outline = ic_analytics_outline; \ No newline at end of file diff --git a/dist/md/ic_analytics_twotone.js b/dist/md/ic_analytics_twotone.js new file mode 100644 index 000000000..8d090fe1a --- /dev/null +++ b/dist/md/ic_analytics_twotone.js @@ -0,0 +1,151 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_analytics_twotone = void 0; +var ic_analytics_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "height": "14", + "opacity": ".3", + "width": "14", + "x": "5", + "y": "5" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "14", + "opacity": ".3", + "width": "14", + "x": "5", + "y": "5" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "5", + "width": "2", + "x": "7", + "y": "12" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "5", + "width": "2", + "x": "7", + "y": "12" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "10", + "width": "2", + "x": "15", + "y": "7" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "10", + "width": "2", + "x": "15", + "y": "7" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "3", + "width": "2", + "x": "11", + "y": "14" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "3", + "width": "2", + "x": "11", + "y": "14" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "11", + "y": "10" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "11", + "y": "10" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_analytics_twotone = ic_analytics_twotone; \ No newline at end of file diff --git a/dist/md/ic_anchor.js b/dist/md/ic_anchor.js new file mode 100644 index 000000000..dc65bd141 --- /dev/null +++ b/dist/md/ic_anchor.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_anchor = void 0; +var ic_anchor = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M17,15l1.55,1.55c-0.96,1.69-3.33,3.04-5.55,3.37V11h3V9h-3V7.82C14.16,7.4,15,6.3,15,5c0-1.65-1.35-3-3-3S9,3.35,9,5 c0,1.3,0.84,2.4,2,2.82V9H8v2h3v8.92c-2.22-0.33-4.59-1.68-5.55-3.37L7,15l-4-3v3c0,3.88,4.92,7,9,7s9-3.12,9-7v-3L17,15z M12,4 c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S11.45,4,12,4z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,15l1.55,1.55c-0.96,1.69-3.33,3.04-5.55,3.37V11h3V9h-3V7.82C14.16,7.4,15,6.3,15,5c0-1.65-1.35-3-3-3S9,3.35,9,5 c0,1.3,0.84,2.4,2,2.82V9H8v2h3v8.92c-2.22-0.33-4.59-1.68-5.55-3.37L7,15l-4-3v3c0,3.88,4.92,7,9,7s9-3.12,9-7v-3L17,15z M12,4 c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S11.45,4,12,4z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_anchor = ic_anchor; \ No newline at end of file diff --git a/dist/md/ic_anchor_outline.js b/dist/md/ic_anchor_outline.js new file mode 100644 index 000000000..29660f1e1 --- /dev/null +++ b/dist/md/ic_anchor_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_anchor_outline = void 0; +var ic_anchor_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M17,15l1.55,1.55c-0.96,1.69-3.33,3.04-5.55,3.37V11h3V9h-3V7.82C14.16,7.4,15,6.3,15,5c0-1.65-1.35-3-3-3S9,3.35,9,5 c0,1.3,0.84,2.4,2,2.82V9H8v2h3v8.92c-2.22-0.33-4.59-1.68-5.55-3.37L7,15l-4-3v3c0,3.88,4.92,7,9,7s9-3.12,9-7v-3L17,15z M12,4 c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S11.45,4,12,4z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,15l1.55,1.55c-0.96,1.69-3.33,3.04-5.55,3.37V11h3V9h-3V7.82C14.16,7.4,15,6.3,15,5c0-1.65-1.35-3-3-3S9,3.35,9,5 c0,1.3,0.84,2.4,2,2.82V9H8v2h3v8.92c-2.22-0.33-4.59-1.68-5.55-3.37L7,15l-4-3v3c0,3.88,4.92,7,9,7s9-3.12,9-7v-3L17,15z M12,4 c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S11.45,4,12,4z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_anchor_outline = ic_anchor_outline; \ No newline at end of file diff --git a/dist/md/ic_anchor_twotone.js b/dist/md/ic_anchor_twotone.js new file mode 100644 index 000000000..5b5a4bea4 --- /dev/null +++ b/dist/md/ic_anchor_twotone.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_anchor_twotone = void 0; +var ic_anchor_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M17,15l1.55,1.55c-0.96,1.69-3.33,3.04-5.55,3.37V11h3V9h-3V7.82C14.16,7.4,15,6.3,15,5c0-1.65-1.35-3-3-3S9,3.35,9,5 c0,1.3,0.84,2.4,2,2.82V9H8v2h3v8.92c-2.22-0.33-4.59-1.68-5.55-3.37L7,15l-4-3v3c0,3.88,4.92,7,9,7s9-3.12,9-7v-3L17,15z M12,4 c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S11.45,4,12,4z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,15l1.55,1.55c-0.96,1.69-3.33,3.04-5.55,3.37V11h3V9h-3V7.82C14.16,7.4,15,6.3,15,5c0-1.65-1.35-3-3-3S9,3.35,9,5 c0,1.3,0.84,2.4,2,2.82V9H8v2h3v8.92c-2.22-0.33-4.59-1.68-5.55-3.37L7,15l-4-3v3c0,3.88,4.92,7,9,7s9-3.12,9-7v-3L17,15z M12,4 c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S11.45,4,12,4z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_anchor_twotone = ic_anchor_twotone; \ No newline at end of file diff --git a/dist/md/ic_android.js b/dist/md/ic_android.js new file mode 100644 index 000000000..27591c365 --- /dev/null +++ b/dist/md/ic_android.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_android = void 0; +var ic_android = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M17.6,9.48l1.84-3.18c0.16-0.31,0.04-0.69-0.26-0.85c-0.29-0.15-0.65-0.06-0.83,0.22l-1.88,3.24 c-2.86-1.21-6.08-1.21-8.94,0L5.65,5.67c-0.19-0.29-0.58-0.38-0.87-0.2C4.5,5.65,4.41,6.01,4.56,6.3L6.4,9.48 C3.3,11.25,1.28,14.44,1,18h22C22.72,14.44,20.7,11.25,17.6,9.48z M7,15.25c-0.69,0-1.25-0.56-1.25-1.25 c0-0.69,0.56-1.25,1.25-1.25S8.25,13.31,8.25,14C8.25,14.69,7.69,15.25,7,15.25z M17,15.25c-0.69,0-1.25-0.56-1.25-1.25 c0-0.69,0.56-1.25,1.25-1.25s1.25,0.56,1.25,1.25C18.25,14.69,17.69,15.25,17,15.25z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17.6,9.48l1.84-3.18c0.16-0.31,0.04-0.69-0.26-0.85c-0.29-0.15-0.65-0.06-0.83,0.22l-1.88,3.24 c-2.86-1.21-6.08-1.21-8.94,0L5.65,5.67c-0.19-0.29-0.58-0.38-0.87-0.2C4.5,5.65,4.41,6.01,4.56,6.3L6.4,9.48 C3.3,11.25,1.28,14.44,1,18h22C22.72,14.44,20.7,11.25,17.6,9.48z M7,15.25c-0.69,0-1.25-0.56-1.25-1.25 c0-0.69,0.56-1.25,1.25-1.25S8.25,13.31,8.25,14C8.25,14.69,7.69,15.25,7,15.25z M17,15.25c-0.69,0-1.25-0.56-1.25-1.25 c0-0.69,0.56-1.25,1.25-1.25s1.25,0.56,1.25,1.25C18.25,14.69,17.69,15.25,17,15.25z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_android = ic_android; \ No newline at end of file diff --git a/dist/md/ic_android_outline.js b/dist/md/ic_android_outline.js new file mode 100644 index 000000000..89c6869a2 --- /dev/null +++ b/dist/md/ic_android_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_android_outline = void 0; +var ic_android_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 18c0 .55.45 1 1 1h1v3.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5V19h2v3.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5V19h1c.55 0 1-.45 1-1V8H6v10zM3.5 8C2.67 8 2 8.67 2 9.5v7c0 .83.67 1.5 1.5 1.5S5 17.33 5 16.5v-7C5 8.67 4.33 8 3.5 8zm17 0c-.83 0-1.5.67-1.5 1.5v7c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5v-7c0-.83-.67-1.5-1.5-1.5zm-4.97-5.84l1.3-1.3c.2-.2.2-.51 0-.71s-.51-.2-.71 0l-1.48 1.48C13.85 1.23 12.95 1 12 1c-.96 0-1.86.23-2.66.63L7.85.15c-.2-.2-.51-.2-.71 0-.2.2-.2.51 0 .71l1.31 1.31C6.97 3.26 6 5.01 6 7h12c0-1.99-.97-3.75-2.47-4.84zM10 5H9V4h1v1zm5 0h-1V4h1v1z" + }, + "children": [] + }] +}; +exports.ic_android_outline = ic_android_outline; \ No newline at end of file diff --git a/dist/md/ic_android_twotone.js b/dist/md/ic_android_twotone.js new file mode 100644 index 000000000..7f57e74a0 --- /dev/null +++ b/dist/md/ic_android_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_android_twotone = void 0; +var ic_android_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 18c0 .55.45 1 1 1h1v3.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5V19h2v3.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5V19h1c.55 0 1-.45 1-1V8H6v10zM3.5 8C2.67 8 2 8.67 2 9.5v7c0 .83.67 1.5 1.5 1.5S5 17.33 5 16.5v-7C5 8.67 4.33 8 3.5 8zm17 0c-.83 0-1.5.67-1.5 1.5v7c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5v-7c0-.83-.67-1.5-1.5-1.5zm-4.97-5.84l1.3-1.3c.2-.2.2-.51 0-.71s-.51-.2-.71 0l-1.48 1.48C13.85 1.23 12.95 1 12 1c-.96 0-1.86.23-2.66.63L7.85.15c-.2-.2-.51-.2-.71 0-.2.2-.2.51 0 .71l1.31 1.31C6.97 3.26 6 5.01 6 7h12c0-1.99-.97-3.75-2.47-4.84zM10 5H9V4h1v1zm5 0h-1V4h1v1z" + }, + "children": [] + }] +}; +exports.ic_android_twotone = ic_android_twotone; \ No newline at end of file diff --git a/dist/md/ic_animation.js b/dist/md/ic_animation.js new file mode 100644 index 000000000..ed3ed219b --- /dev/null +++ b/dist/md/ic_animation.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_animation = void 0; +var ic_animation = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 2c-2.71 0-5.05 1.54-6.22 3.78-1.28.67-2.34 1.72-3 3C3.54 9.95 2 12.29 2 15c0 3.87 3.13 7 7 7 2.71 0 5.05-1.54 6.22-3.78 1.28-.67 2.34-1.72 3-3C20.46 14.05 22 11.71 22 9c0-3.87-3.13-7-7-7zM9 20c-2.76 0-5-2.24-5-5 0-1.12.37-2.16 1-3 0 3.87 3.13 7 7 7-.84.63-1.88 1-3 1zm3-3c-2.76 0-5-2.24-5-5 0-1.12.37-2.16 1-3 0 3.86 3.13 6.99 7 7-.84.63-1.88 1-3 1zm4.7-3.3c-.53.19-1.1.3-1.7.3-2.76 0-5-2.24-5-5 0-.6.11-1.17.3-1.7.53-.19 1.1-.3 1.7-.3 2.76 0 5 2.24 5 5 0 .6-.11 1.17-.3 1.7zM19 12c0-3.86-3.13-6.99-7-7 .84-.63 1.87-1 3-1 2.76 0 5 2.24 5 5 0 1.12-.37 2.16-1 3z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M0 0h24v24H0zm0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }] +}; +exports.ic_animation = ic_animation; \ No newline at end of file diff --git a/dist/md/ic_announcement.js b/dist/md/ic_announcement.js new file mode 100644 index 000000000..68c832a6c --- /dev/null +++ b/dist/md/ic_announcement.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_announcement = void 0; +var ic_announcement = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 9h-2V5h2v6zm0 4h-2v-2h2v2z" + }, + "children": [] + }] +}; +exports.ic_announcement = ic_announcement; \ No newline at end of file diff --git a/dist/md/ic_announcement_outline.js b/dist/md/ic_announcement_outline.js new file mode 100644 index 000000000..4285cde02 --- /dev/null +++ b/dist/md/ic_announcement_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_announcement_outline = void 0; +var ic_announcement_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zM11 5h2v6h-2zm0 8h2v2h-2z" + }, + "children": [] + }] +}; +exports.ic_announcement_outline = ic_announcement_outline; \ No newline at end of file diff --git a/dist/md/ic_announcement_twotone.js b/dist/md/ic_announcement_twotone.js new file mode 100644 index 000000000..faa86888b --- /dev/null +++ b/dist/md/ic_announcement_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_announcement_twotone = void 0; +var ic_announcement_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 4v13.17l.59-.59.58-.58H20V4H4zm9 11h-2v-2h2v2zm0-4h-2V5h2v6z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17l-.59.59-.58.58V4h16v12zM11 5h2v6h-2zm0 8h2v2h-2z" + }, + "children": [] + }] +}; +exports.ic_announcement_twotone = ic_announcement_twotone; \ No newline at end of file diff --git a/dist/md/ic_apartment.js b/dist/md/ic_apartment.js new file mode 100644 index 000000000..a1492e25d --- /dev/null +++ b/dist/md/ic_apartment.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_apartment = void 0; +var ic_apartment = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,11V3H7v4H3v14h8v-4h2v4h8V11H17z M7,19H5v-2h2V19z M7,15H5v-2h2V15z M7,11H5V9h2V11z M11,15H9v-2h2V15z M11,11H9V9h2 V11z M11,7H9V5h2V7z M15,15h-2v-2h2V15z M15,11h-2V9h2V11z M15,7h-2V5h2V7z M19,19h-2v-2h2V19z M19,15h-2v-2h2V15z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,11V3H7v4H3v14h8v-4h2v4h8V11H17z M7,19H5v-2h2V19z M7,15H5v-2h2V15z M7,11H5V9h2V11z M11,15H9v-2h2V15z M11,11H9V9h2 V11z M11,7H9V5h2V7z M15,15h-2v-2h2V15z M15,11h-2V9h2V11z M15,7h-2V5h2V7z M19,19h-2v-2h2V19z M19,15h-2v-2h2V15z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_apartment = ic_apartment; \ No newline at end of file diff --git a/dist/md/ic_apartment_outline.js b/dist/md/ic_apartment_outline.js new file mode 100644 index 000000000..c8177a569 --- /dev/null +++ b/dist/md/ic_apartment_outline.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_apartment_outline = void 0; +var ic_apartment_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,11V3H7v4H3v14h8v-4h2v4h8V11H17z M7,19H5v-2h2V19z M7,15H5v-2h2V15z M7,11H5V9h2V11z M11,15H9v-2h2V15z M11,11H9V9h2 V11z M11,7H9V5h2V7z M15,15h-2v-2h2V15z M15,11h-2V9h2V11z M15,7h-2V5h2V7z M19,19h-2v-2h2V19z M19,15h-2v-2h2V15z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,11V3H7v4H3v14h8v-4h2v4h8V11H17z M7,19H5v-2h2V19z M7,15H5v-2h2V15z M7,11H5V9h2V11z M11,15H9v-2h2V15z M11,11H9V9h2 V11z M11,7H9V5h2V7z M15,15h-2v-2h2V15z M15,11h-2V9h2V11z M15,7h-2V5h2V7z M19,19h-2v-2h2V19z M19,15h-2v-2h2V15z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_apartment_outline = ic_apartment_outline; \ No newline at end of file diff --git a/dist/md/ic_apartment_twotone.js b/dist/md/ic_apartment_twotone.js new file mode 100644 index 000000000..b991f095c --- /dev/null +++ b/dist/md/ic_apartment_twotone.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_apartment_twotone = void 0; +var ic_apartment_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,11V3H7v4H3v14h8v-4h2v4h8V11H17z M7,19H5v-2h2V19z M7,15H5v-2h2V15z M7,11H5V9h2V11z M11,15H9v-2h2V15z M11,11H9V9h2 V11z M11,7H9V5h2V7z M15,15h-2v-2h2V15z M15,11h-2V9h2V11z M15,7h-2V5h2V7z M19,19h-2v-2h2V19z M19,15h-2v-2h2V15z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,11V3H7v4H3v14h8v-4h2v4h8V11H17z M7,19H5v-2h2V19z M7,15H5v-2h2V15z M7,11H5V9h2V11z M11,15H9v-2h2V15z M11,11H9V9h2 V11z M11,7H9V5h2V7z M15,15h-2v-2h2V15z M15,11h-2V9h2V11z M15,7h-2V5h2V7z M19,19h-2v-2h2V19z M19,15h-2v-2h2V15z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_apartment_twotone = ic_apartment_twotone; \ No newline at end of file diff --git a/dist/md/ic_api.js b/dist/md/ic_api.js new file mode 100644 index 000000000..41bbc4db5 --- /dev/null +++ b/dist/md/ic_api.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_api = void 0; +var ic_api = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M14,12l-2,2l-2-2l2-2L14,12z M12,6l2.12,2.12l2.5-2.5L12,1L7.38,5.62l2.5,2.5L12,6z M6,12l2.12-2.12l-2.5-2.5L1,12 l4.62,4.62l2.5-2.5L6,12z M18,12l-2.12,2.12l2.5,2.5L23,12l-4.62-4.62l-2.5,2.5L18,12z M12,18l-2.12-2.12l-2.5,2.5L12,23l4.62-4.62 l-2.5-2.5L12,18z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14,12l-2,2l-2-2l2-2L14,12z M12,6l2.12,2.12l2.5-2.5L12,1L7.38,5.62l2.5,2.5L12,6z M6,12l2.12-2.12l-2.5-2.5L1,12 l4.62,4.62l2.5-2.5L6,12z M18,12l-2.12,2.12l2.5,2.5L23,12l-4.62-4.62l-2.5,2.5L18,12z M12,18l-2.12-2.12l-2.5,2.5L12,23l4.62-4.62 l-2.5-2.5L12,18z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_api = ic_api; \ No newline at end of file diff --git a/dist/md/ic_api_outline.js b/dist/md/ic_api_outline.js new file mode 100644 index 000000000..1ef769d85 --- /dev/null +++ b/dist/md/ic_api_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_api_outline = void 0; +var ic_api_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M14,12l-2,2l-2-2l2-2L14,12z M12,6l2.12,2.12l2.5-2.5L12,1L7.38,5.62l2.5,2.5L12,6z M6,12l2.12-2.12l-2.5-2.5L1,12 l4.62,4.62l2.5-2.5L6,12z M18,12l-2.12,2.12l2.5,2.5L23,12l-4.62-4.62l-2.5,2.5L18,12z M12,18l-2.12-2.12l-2.5,2.5L12,23l4.62-4.62 l-2.5-2.5L12,18z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14,12l-2,2l-2-2l2-2L14,12z M12,6l2.12,2.12l2.5-2.5L12,1L7.38,5.62l2.5,2.5L12,6z M6,12l2.12-2.12l-2.5-2.5L1,12 l4.62,4.62l2.5-2.5L6,12z M18,12l-2.12,2.12l2.5,2.5L23,12l-4.62-4.62l-2.5,2.5L18,12z M12,18l-2.12-2.12l-2.5,2.5L12,23l4.62-4.62 l-2.5-2.5L12,18z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_api_outline = ic_api_outline; \ No newline at end of file diff --git a/dist/md/ic_api_twotone.js b/dist/md/ic_api_twotone.js new file mode 100644 index 000000000..a422fa459 --- /dev/null +++ b/dist/md/ic_api_twotone.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_api_twotone = void 0; +var ic_api_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M14,12l-2,2l-2-2l2-2L14,12z M12,6l2.12,2.12l2.5-2.5L12,1L7.38,5.62l2.5,2.5L12,6z M6,12l2.12-2.12l-2.5-2.5L1,12 l4.62,4.62l2.5-2.5L6,12z M18,12l-2.12,2.12l2.5,2.5L23,12l-4.62-4.62l-2.5,2.5L18,12z M12,18l-2.12-2.12l-2.5,2.5L12,23l4.62-4.62 l-2.5-2.5L12,18z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14,12l-2,2l-2-2l2-2L14,12z M12,6l2.12,2.12l2.5-2.5L12,1L7.38,5.62l2.5,2.5L12,6z M6,12l2.12-2.12l-2.5-2.5L1,12 l4.62,4.62l2.5-2.5L6,12z M18,12l-2.12,2.12l2.5,2.5L23,12l-4.62-4.62l-2.5,2.5L18,12z M12,18l-2.12-2.12l-2.5,2.5L12,23l4.62-4.62 l-2.5-2.5L12,18z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_api_twotone = ic_api_twotone; \ No newline at end of file diff --git a/dist/md/ic_app_blocking.js b/dist/md/ic_app_blocking.js new file mode 100644 index 000000000..780ee9f47 --- /dev/null +++ b/dist/md/ic_app_blocking.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_app_blocking = void 0; +var ic_app_blocking = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm-2.5 4c0-1.38 1.12-2.5 2.5-2.5.42 0 .8.11 1.15.29l-3.36 3.36c-.18-.35-.29-.73-.29-1.15zm2.5 2.5c-.42 0-.8-.11-1.15-.29l3.36-3.36c.18.35.29.73.29 1.15 0 1.38-1.12 2.5-2.5 2.5zM17 18H7V6h10v1h2V3c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2v-4h-2v1z" + }, + "children": [] + }] +}; +exports.ic_app_blocking = ic_app_blocking; \ No newline at end of file diff --git a/dist/md/ic_app_blocking_outline.js b/dist/md/ic_app_blocking_outline.js new file mode 100644 index 000000000..7d3ad5a96 --- /dev/null +++ b/dist/md/ic_app_blocking_outline.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_app_blocking_outline = void 0; +var ic_app_blocking_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M18,8c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C22,9.79,20.21,8,18,8z M15.5,12c0-1.38,1.12-2.5,2.5-2.5 c0.42,0,0.8,0.11,1.15,0.29l-3.36,3.36C15.61,12.8,15.5,12.42,15.5,12z M18,14.5c-0.42,0-0.8-0.11-1.15-0.29l3.36-3.36 c0.18,0.35,0.29,0.73,0.29,1.15C20.5,13.38,19.38,14.5,18,14.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18,8c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C22,9.79,20.21,8,18,8z M15.5,12c0-1.38,1.12-2.5,2.5-2.5 c0.42,0,0.8,0.11,1.15,0.29l-3.36,3.36C15.61,12.8,15.5,12.42,15.5,12z M18,14.5c-0.42,0-0.8-0.11-1.15-0.29l3.36-3.36 c0.18,0.35,0.29,0.73,0.29,1.15C20.5,13.38,19.38,14.5,18,14.5z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M17,18H7V6h10v1h2V6V5V3c0-1.1-0.9-2-2-2H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2v-2v-1v-1h-2V18z M7,3 h10v1H7V3z M17,21H7v-1h10V21z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,18H7V6h10v1h2V6V5V3c0-1.1-0.9-2-2-2H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2v-2v-1v-1h-2V18z M7,3 h10v1H7V3z M17,21H7v-1h10V21z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_app_blocking_outline = ic_app_blocking_outline; \ No newline at end of file diff --git a/dist/md/ic_app_blocking_twotone.js b/dist/md/ic_app_blocking_twotone.js new file mode 100644 index 000000000..f7580ea55 --- /dev/null +++ b/dist/md/ic_app_blocking_twotone.js @@ -0,0 +1,111 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_app_blocking_twotone = void 0; +var ic_app_blocking_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M18,8c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C22,9.79,20.21,8,18,8z M15.5,12c0-1.38,1.12-2.5,2.5-2.5 c0.42,0,0.8,0.11,1.15,0.29l-3.36,3.36C15.61,12.8,15.5,12.42,15.5,12z M18,14.5c-0.42,0-0.8-0.11-1.15-0.29l3.36-3.36 c0.18,0.35,0.29,0.73,0.29,1.15C20.5,13.38,19.38,14.5,18,14.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18,8c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C22,9.79,20.21,8,18,8z M15.5,12c0-1.38,1.12-2.5,2.5-2.5 c0.42,0,0.8,0.11,1.15,0.29l-3.36,3.36C15.61,12.8,15.5,12.42,15.5,12z M18,14.5c-0.42,0-0.8-0.11-1.15-0.29l3.36-3.36 c0.18,0.35,0.29,0.73,0.29,1.15C20.5,13.38,19.38,14.5,18,14.5z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M17,18H7V6h10v1h2V6V5V3c0-1.1-0.9-2-2-2H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2v-2v-1v-1h-2V18z M7,3 h10v1H7V3z M17,21H7v-1h10V21z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,18H7V6h10v1h2V6V5V3c0-1.1-0.9-2-2-2H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2v-2v-1v-1h-2V18z M7,3 h10v1H7V3z M17,21H7v-1h10V21z" + }, + "children": [] + }] + }] + }] + }] + }] + }, { + "name": "rect", + "attribs": { + "height": "1", + "opacity": ".3", + "width": "10", + "x": "7", + "y": "3" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "1", + "opacity": ".3", + "width": "10", + "x": "7", + "y": "3" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "1", + "opacity": ".3", + "width": "10", + "x": "7", + "y": "20" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "1", + "opacity": ".3", + "width": "10", + "x": "7", + "y": "20" + }, + "children": [] + }] + }] + }] +}; +exports.ic_app_blocking_twotone = ic_app_blocking_twotone; \ No newline at end of file diff --git a/dist/md/ic_app_registration.js b/dist/md/ic_app_registration.js new file mode 100644 index 000000000..a99fa56ae --- /dev/null +++ b/dist/md/ic_app_registration.js @@ -0,0 +1,169 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_app_registration = void 0; +var ic_app_registration = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "height": "4", + "width": "4", + "x": "10", + "y": "4" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "4", + "width": "4", + "x": "10", + "y": "4" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "4", + "width": "4", + "x": "4", + "y": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "4", + "width": "4", + "x": "4", + "y": "16" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "4", + "width": "4", + "x": "4", + "y": "10" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "4", + "width": "4", + "x": "4", + "y": "10" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "4", + "width": "4", + "x": "4", + "y": "4" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "4", + "width": "4", + "x": "4", + "y": "4" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "14,12.42 14,10 10,10 10,14 12.42,14" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "14,12.42 14,10 10,10 10,14 12.42,14" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20.88,11.29l-1.17-1.17c-0.16-0.16-0.42-0.16-0.58,0L18.25,11L20,12.75l0.88-0.88C21.04,11.71,21.04,11.45,20.88,11.29z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20.88,11.29l-1.17-1.17c-0.16-0.16-0.42-0.16-0.58,0L18.25,11L20,12.75l0.88-0.88C21.04,11.71,21.04,11.45,20.88,11.29z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "11,18.25 11,20 12.75,20 19.42,13.33 17.67,11.58" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "11,18.25 11,20 12.75,20 19.42,13.33 17.67,11.58" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "4", + "width": "4", + "x": "16", + "y": "4" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "4", + "width": "4", + "x": "16", + "y": "4" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_app_registration = ic_app_registration; \ No newline at end of file diff --git a/dist/md/ic_app_settings_alt.js b/dist/md/ic_app_settings_alt.js new file mode 100644 index 000000000..492583d78 --- /dev/null +++ b/dist/md/ic_app_settings_alt.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_app_settings_alt = void 0; +var ic_app_settings_alt = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21.81 12.74l-.82-.63v-.22l.8-.63c.16-.12.2-.34.1-.51l-.85-1.48c-.07-.13-.21-.2-.35-.2-.05 0-.1.01-.15.03l-.95.38c-.08-.05-.11-.07-.19-.11l-.15-1.01c-.03-.21-.2-.36-.4-.36h-1.71c-.2 0-.37.15-.4.34l-.14 1.01c-.03.02-.07.03-.1.05l-.09.06-.95-.38c-.05-.02-.1-.03-.15-.03-.14 0-.27.07-.35.2l-.85 1.48c-.1.17-.06.39.1.51l.8.63v.23l-.8.63c-.16.12-.2.34-.1.51l.85 1.48c.07.13.21.2.35.2.05 0 .1-.01.15-.03l.95-.37c.08.05.12.07.2.11l.15 1.01c.03.2.2.34.4.34h1.71c.2 0 .37-.15.4-.34l.15-1.01c.03-.02.07-.03.1-.05l.09-.06.95.38c.05.02.1.03.15.03.14 0 .27-.07.35-.2l.85-1.48c.1-.17.06-.39-.1-.51zM18 13.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM17 17h2v4c0 1.1-.9 2-2 2H7c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2v4h-2V6H7v12h10v-1z" + }, + "children": [] + }] +}; +exports.ic_app_settings_alt = ic_app_settings_alt; \ No newline at end of file diff --git a/dist/md/ic_app_settings_alt_outline.js b/dist/md/ic_app_settings_alt_outline.js new file mode 100644 index 000000000..abf558f97 --- /dev/null +++ b/dist/md/ic_app_settings_alt_outline.js @@ -0,0 +1,83 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_app_settings_alt_outline = void 0; +var ic_app_settings_alt_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "fill": "none", + "height": "1", + "width": "10", + "x": "7", + "y": "20" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "1", + "width": "10", + "x": "7", + "y": "20" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "fill": "none", + "height": "1", + "width": "10", + "x": "7", + "y": "3" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "1", + "width": "10", + "x": "7", + "y": "3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M21.81,12.74l-0.82-0.63c0-0.09,0-0.13,0-0.22l0.8-0.63c0.16-0.12,0.2-0.34,0.1-0.51l-0.85-1.48 c-0.07-0.13-0.21-0.2-0.35-0.2c-0.05,0-0.1,0.01-0.15,0.03l-0.95,0.38c-0.08-0.05-0.11-0.07-0.19-0.11l-0.15-1.01 C19.22,8.15,19.05,8,18.85,8h-1.71c-0.2,0-0.37,0.15-0.4,0.34L16.6,9.35c-0.03,0.02-0.07,0.03-0.1,0.05 c-0.03,0.02-0.06,0.04-0.09,0.06l-0.95-0.38c-0.05-0.02-0.1-0.03-0.15-0.03c-0.14,0-0.27,0.07-0.35,0.2l-0.85,1.48 c-0.1,0.17-0.06,0.39,0.1,0.51l0.8,0.63c0,0.09,0,0.13,0,0.23l-0.8,0.63c-0.16,0.12-0.2,0.34-0.1,0.51l0.85,1.48 c0.07,0.13,0.21,0.2,0.35,0.2c0.05,0,0.1-0.01,0.15-0.03l0.95-0.37c0.08,0.05,0.12,0.07,0.2,0.11l0.15,1.01 c0.03,0.2,0.2,0.34,0.4,0.34h1.71c0.2,0,0.37-0.15,0.4-0.34l0.15-1.01c0.03-0.02,0.07-0.03,0.1-0.05c0.03-0.02,0.06-0.04,0.09-0.06 l0.95,0.38c0.05,0.02,0.1,0.03,0.15,0.03c0.14,0,0.27-0.07,0.35-0.2l0.85-1.48C22.01,13.08,21.97,12.86,21.81,12.74z M18,13.5 c-0.83,0-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5C19.5,12.83,18.83,13.5,18,13.5z M17,18H7V6h10v1h2V3 c0-1.1-0.9-2-2-2H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2v-4h-2V18z M7,3h10v1H7V3z M17,21H7v-1h10V21z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21.81,12.74l-0.82-0.63c0-0.09,0-0.13,0-0.22l0.8-0.63c0.16-0.12,0.2-0.34,0.1-0.51l-0.85-1.48 c-0.07-0.13-0.21-0.2-0.35-0.2c-0.05,0-0.1,0.01-0.15,0.03l-0.95,0.38c-0.08-0.05-0.11-0.07-0.19-0.11l-0.15-1.01 C19.22,8.15,19.05,8,18.85,8h-1.71c-0.2,0-0.37,0.15-0.4,0.34L16.6,9.35c-0.03,0.02-0.07,0.03-0.1,0.05 c-0.03,0.02-0.06,0.04-0.09,0.06l-0.95-0.38c-0.05-0.02-0.1-0.03-0.15-0.03c-0.14,0-0.27,0.07-0.35,0.2l-0.85,1.48 c-0.1,0.17-0.06,0.39,0.1,0.51l0.8,0.63c0,0.09,0,0.13,0,0.23l-0.8,0.63c-0.16,0.12-0.2,0.34-0.1,0.51l0.85,1.48 c0.07,0.13,0.21,0.2,0.35,0.2c0.05,0,0.1-0.01,0.15-0.03l0.95-0.37c0.08,0.05,0.12,0.07,0.2,0.11l0.15,1.01 c0.03,0.2,0.2,0.34,0.4,0.34h1.71c0.2,0,0.37-0.15,0.4-0.34l0.15-1.01c0.03-0.02,0.07-0.03,0.1-0.05c0.03-0.02,0.06-0.04,0.09-0.06 l0.95,0.38c0.05,0.02,0.1,0.03,0.15,0.03c0.14,0,0.27-0.07,0.35-0.2l0.85-1.48C22.01,13.08,21.97,12.86,21.81,12.74z M18,13.5 c-0.83,0-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5C19.5,12.83,18.83,13.5,18,13.5z M17,18H7V6h10v1h2V3 c0-1.1-0.9-2-2-2H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2v-4h-2V18z M7,3h10v1H7V3z M17,21H7v-1h10V21z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_app_settings_alt_outline = ic_app_settings_alt_outline; \ No newline at end of file diff --git a/dist/md/ic_app_settings_alt_twotone.js b/dist/md/ic_app_settings_alt_twotone.js new file mode 100644 index 000000000..442e9fb4f --- /dev/null +++ b/dist/md/ic_app_settings_alt_twotone.js @@ -0,0 +1,131 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_app_settings_alt_twotone = void 0; +var ic_app_settings_alt_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "1", + "width": "10", + "x": "7", + "y": "20" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "1", + "width": "10", + "x": "7", + "y": "20" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "fill": "none", + "height": "1", + "width": "10", + "x": "7", + "y": "3" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "1", + "width": "10", + "x": "7", + "y": "3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M21.81,12.74l-0.82-0.63c0-0.09,0-0.13,0-0.22l0.8-0.63c0.16-0.12,0.2-0.34,0.1-0.51l-0.85-1.48 c-0.07-0.13-0.21-0.2-0.35-0.2c-0.05,0-0.1,0.01-0.15,0.03l-0.95,0.38c-0.08-0.05-0.11-0.07-0.19-0.11l-0.15-1.01 C19.22,8.15,19.05,8,18.85,8h-1.71c-0.2,0-0.37,0.15-0.4,0.34L16.6,9.35c-0.03,0.02-0.07,0.03-0.1,0.05 c-0.03,0.02-0.06,0.04-0.09,0.06l-0.95-0.38c-0.05-0.02-0.1-0.03-0.15-0.03c-0.14,0-0.27,0.07-0.35,0.2l-0.85,1.48 c-0.1,0.17-0.06,0.39,0.1,0.51l0.8,0.63c0,0.09,0,0.13,0,0.23l-0.8,0.63c-0.16,0.12-0.2,0.34-0.1,0.51l0.85,1.48 c0.07,0.13,0.21,0.2,0.35,0.2c0.05,0,0.1-0.01,0.15-0.03l0.95-0.37c0.08,0.05,0.12,0.07,0.2,0.11l0.15,1.01 c0.03,0.2,0.2,0.34,0.4,0.34h1.71c0.2,0,0.37-0.15,0.4-0.34l0.15-1.01c0.03-0.02,0.07-0.03,0.1-0.05 c0.03-0.02,0.06-0.04,0.09-0.06l0.95,0.38c0.05,0.02,0.1,0.03,0.15,0.03c0.14,0,0.27-0.07,0.35-0.2l0.85-1.48 C22.01,13.08,21.97,12.86,21.81,12.74z M18,13.5c-0.83,0-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5 C19.5,12.83,18.83,13.5,18,13.5z M17,18H7V6h10v1h2V3c0-1.1-0.9-2-2-2H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2 v-4h-2V18z M7,3h10v1H7V3z M17,21H7v-1h10V21z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21.81,12.74l-0.82-0.63c0-0.09,0-0.13,0-0.22l0.8-0.63c0.16-0.12,0.2-0.34,0.1-0.51l-0.85-1.48 c-0.07-0.13-0.21-0.2-0.35-0.2c-0.05,0-0.1,0.01-0.15,0.03l-0.95,0.38c-0.08-0.05-0.11-0.07-0.19-0.11l-0.15-1.01 C19.22,8.15,19.05,8,18.85,8h-1.71c-0.2,0-0.37,0.15-0.4,0.34L16.6,9.35c-0.03,0.02-0.07,0.03-0.1,0.05 c-0.03,0.02-0.06,0.04-0.09,0.06l-0.95-0.38c-0.05-0.02-0.1-0.03-0.15-0.03c-0.14,0-0.27,0.07-0.35,0.2l-0.85,1.48 c-0.1,0.17-0.06,0.39,0.1,0.51l0.8,0.63c0,0.09,0,0.13,0,0.23l-0.8,0.63c-0.16,0.12-0.2,0.34-0.1,0.51l0.85,1.48 c0.07,0.13,0.21,0.2,0.35,0.2c0.05,0,0.1-0.01,0.15-0.03l0.95-0.37c0.08,0.05,0.12,0.07,0.2,0.11l0.15,1.01 c0.03,0.2,0.2,0.34,0.4,0.34h1.71c0.2,0,0.37-0.15,0.4-0.34l0.15-1.01c0.03-0.02,0.07-0.03,0.1-0.05 c0.03-0.02,0.06-0.04,0.09-0.06l0.95,0.38c0.05,0.02,0.1,0.03,0.15,0.03c0.14,0,0.27-0.07,0.35-0.2l0.85-1.48 C22.01,13.08,21.97,12.86,21.81,12.74z M18,13.5c-0.83,0-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5 C19.5,12.83,18.83,13.5,18,13.5z M17,18H7V6h10v1h2V3c0-1.1-0.9-2-2-2H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2 v-4h-2V18z M7,3h10v1H7V3z M17,21H7v-1h10V21z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "1", + "opacity": ".3", + "width": "10", + "x": "7", + "y": "3" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "1", + "opacity": ".3", + "width": "10", + "x": "7", + "y": "3" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "1", + "opacity": ".3", + "width": "10", + "x": "7", + "y": "20" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "1", + "opacity": ".3", + "width": "10", + "x": "7", + "y": "20" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_app_settings_alt_twotone = ic_app_settings_alt_twotone; \ No newline at end of file diff --git a/dist/md/ic_approval.js b/dist/md/ic_approval.js new file mode 100644 index 000000000..2d87450d2 --- /dev/null +++ b/dist/md/ic_approval.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_approval = void 0; +var ic_approval = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 16v6h16v-6c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2zm14 2H6v-2h12v2zM12 2C9.24 2 7 4.24 7 7l5 7 5-7c0-2.76-2.24-5-5-5zm0 9L9 7c0-1.66 1.34-3 3-3s3 1.34 3 3l-3 4z" + }, + "children": [] + }] +}; +exports.ic_approval = ic_approval; \ No newline at end of file diff --git a/dist/md/ic_apps.js b/dist/md/ic_apps.js new file mode 100644 index 000000000..267b6319c --- /dev/null +++ b/dist/md/ic_apps.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_apps = void 0; +var ic_apps = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 8h4V4H4v4zm6 12h4v-4h-4v4zm-6 0h4v-4H4v4zm0-6h4v-4H4v4zm6 0h4v-4h-4v4zm6-10v4h4V4h-4zm-6 4h4V4h-4v4zm6 6h4v-4h-4v4zm0 6h4v-4h-4v4z" + }, + "children": [] + }] +}; +exports.ic_apps = ic_apps; \ No newline at end of file diff --git a/dist/md/ic_apps_outline.js b/dist/md/ic_apps_outline.js new file mode 100644 index 000000000..1cad3ee92 --- /dev/null +++ b/dist/md/ic_apps_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_apps_outline = void 0; +var ic_apps_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 8h4V4H4v4zm6 12h4v-4h-4v4zm-6 0h4v-4H4v4zm0-6h4v-4H4v4zm6 0h4v-4h-4v4zm6-10v4h4V4h-4zm-6 4h4V4h-4v4zm6 6h4v-4h-4v4zm0 6h4v-4h-4v4z" + }, + "children": [] + }] +}; +exports.ic_apps_outline = ic_apps_outline; \ No newline at end of file diff --git a/dist/md/ic_apps_twotone.js b/dist/md/ic_apps_twotone.js new file mode 100644 index 000000000..7b33c4397 --- /dev/null +++ b/dist/md/ic_apps_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_apps_twotone = void 0; +var ic_apps_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 8h4V4H4v4zm6 12h4v-4h-4v4zm-6 0h4v-4H4v4zm0-6h4v-4H4v4zm6 0h4v-4h-4v4zm6-10v4h4V4h-4zm-6 4h4V4h-4v4zm6 6h4v-4h-4v4zm0 6h4v-4h-4v4z" + }, + "children": [] + }] +}; +exports.ic_apps_twotone = ic_apps_twotone; \ No newline at end of file diff --git a/dist/md/ic_architecture.js b/dist/md/ic_architecture.js new file mode 100644 index 000000000..a9e1c48e5 --- /dev/null +++ b/dist/md/ic_architecture.js @@ -0,0 +1,79 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_architecture = void 0; +var ic_architecture = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M6.36,18.78L6.61,21l1.62-1.54l2.77-7.6c-0.68-0.17-1.28-0.51-1.77-0.98L6.36,18.78z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M6.36,18.78L6.61,21l1.62-1.54l2.77-7.6c-0.68-0.17-1.28-0.51-1.77-0.98L6.36,18.78z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M14.77,10.88c-0.49,0.47-1.1,0.81-1.77,0.98l2.77,7.6L17.39,21l0.26-2.22L14.77,10.88z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14.77,10.88c-0.49,0.47-1.1,0.81-1.77,0.98l2.77,7.6L17.39,21l0.26-2.22L14.77,10.88z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M15,8c0-1.3-0.84-2.4-2-2.82V3h-2v2.18C9.84,5.6,9,6.7,9,8c0,1.66,1.34,3,3,3S15,9.66,15,8z M12,9c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C13,8.55,12.55,9,12,9z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15,8c0-1.3-0.84-2.4-2-2.82V3h-2v2.18C9.84,5.6,9,6.7,9,8c0,1.66,1.34,3,3,3S15,9.66,15,8z M12,9c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C13,8.55,12.55,9,12,9z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_architecture = ic_architecture; \ No newline at end of file diff --git a/dist/md/ic_architecture_outline.js b/dist/md/ic_architecture_outline.js new file mode 100644 index 000000000..4467cc64a --- /dev/null +++ b/dist/md/ic_architecture_outline.js @@ -0,0 +1,79 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_architecture_outline = void 0; +var ic_architecture_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M6.36,18.78L6.61,21l1.62-1.54l2.77-7.6c-0.68-0.17-1.28-0.51-1.77-0.98L6.36,18.78z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M6.36,18.78L6.61,21l1.62-1.54l2.77-7.6c-0.68-0.17-1.28-0.51-1.77-0.98L6.36,18.78z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M14.77,10.88c-0.49,0.47-1.1,0.81-1.77,0.98l2.77,7.6L17.39,21l0.26-2.22L14.77,10.88z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14.77,10.88c-0.49,0.47-1.1,0.81-1.77,0.98l2.77,7.6L17.39,21l0.26-2.22L14.77,10.88z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M15,8c0-1.3-0.84-2.4-2-2.82V3h-2v2.18C9.84,5.6,9,6.7,9,8c0,1.66,1.34,3,3,3S15,9.66,15,8z M12,9c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C13,8.55,12.55,9,12,9z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15,8c0-1.3-0.84-2.4-2-2.82V3h-2v2.18C9.84,5.6,9,6.7,9,8c0,1.66,1.34,3,3,3S15,9.66,15,8z M12,9c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C13,8.55,12.55,9,12,9z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_architecture_outline = ic_architecture_outline; \ No newline at end of file diff --git a/dist/md/ic_architecture_twotone.js b/dist/md/ic_architecture_twotone.js new file mode 100644 index 000000000..8561b6d48 --- /dev/null +++ b/dist/md/ic_architecture_twotone.js @@ -0,0 +1,79 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_architecture_twotone = void 0; +var ic_architecture_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M6.36,18.78L6.61,21l1.62-1.54l2.77-7.6c-0.68-0.17-1.28-0.51-1.77-0.98L6.36,18.78z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M6.36,18.78L6.61,21l1.62-1.54l2.77-7.6c-0.68-0.17-1.28-0.51-1.77-0.98L6.36,18.78z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M14.77,10.88c-0.49,0.47-1.1,0.81-1.77,0.98l2.77,7.6L17.39,21l0.26-2.22L14.77,10.88z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14.77,10.88c-0.49,0.47-1.1,0.81-1.77,0.98l2.77,7.6L17.39,21l0.26-2.22L14.77,10.88z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M15,8c0-1.3-0.84-2.4-2-2.82V3h-2v2.18C9.84,5.6,9,6.7,9,8c0,1.66,1.34,3,3,3S15,9.66,15,8z M12,9c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C13,8.55,12.55,9,12,9z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15,8c0-1.3-0.84-2.4-2-2.82V3h-2v2.18C9.84,5.6,9,6.7,9,8c0,1.66,1.34,3,3,3S15,9.66,15,8z M12,9c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C13,8.55,12.55,9,12,9z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_architecture_twotone = ic_architecture_twotone; \ No newline at end of file diff --git a/dist/md/ic_archive.js b/dist/md/ic_archive.js new file mode 100644 index 000000000..db9d2ae7d --- /dev/null +++ b/dist/md/ic_archive.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_archive = void 0; +var ic_archive = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20.54 5.23l-1.39-1.68C18.88 3.21 18.47 3 18 3H6c-.47 0-.88.21-1.16.55L3.46 5.23C3.17 5.57 3 6.02 3 6.5V19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6.5c0-.48-.17-.93-.46-1.27zM12 17.5L6.5 12H10v-2h4v2h3.5L12 17.5zM5.12 5l.81-1h12l.94 1H5.12z" + }, + "children": [] + }] +}; +exports.ic_archive = ic_archive; \ No newline at end of file diff --git a/dist/md/ic_archive_outline.js b/dist/md/ic_archive_outline.js new file mode 100644 index 000000000..c05325e64 --- /dev/null +++ b/dist/md/ic_archive_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_archive_outline = void 0; +var ic_archive_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20.54 5.23l-1.39-1.68C18.88 3.21 18.47 3 18 3H6c-.47 0-.88.21-1.16.55L3.46 5.23C3.17 5.57 3 6.02 3 6.5V19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6.5c0-.48-.17-.93-.46-1.27zM6.24 5h11.52l.81.97H5.44l.8-.97zM5 19V8h14v11H5zm8.45-9h-2.9v3H8l4 4 4-4h-2.55z" + }, + "children": [] + }] +}; +exports.ic_archive_outline = ic_archive_outline; \ No newline at end of file diff --git a/dist/md/ic_archive_twotone.js b/dist/md/ic_archive_twotone.js new file mode 100644 index 000000000..2b3d1066c --- /dev/null +++ b/dist/md/ic_archive_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_archive_twotone = void 0; +var ic_archive_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 19h14V8H5v11zm5.55-6v-3h2.91v3H16l-4 4-4-4h2.55z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 13h-2.55v-3h-2.9v3H8l4 4zm4.54-7.77l-1.39-1.68C18.88 3.21 18.47 3 18 3H6c-.47 0-.88.21-1.16.55L3.46 5.23C3.17 5.57 3 6.02 3 6.5V19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6.5c0-.48-.17-.93-.46-1.27zM6.24 5h11.52l.81.97H5.44l.8-.97zM19 19H5V8h14v11z" + }, + "children": [] + }] +}; +exports.ic_archive_twotone = ic_archive_twotone; \ No newline at end of file diff --git a/dist/md/ic_arrow_back.js b/dist/md/ic_arrow_back.js new file mode 100644 index 000000000..0eb0c08ab --- /dev/null +++ b/dist/md/ic_arrow_back.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_arrow_back = void 0; +var ic_arrow_back = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 11H7.83l5.59-5.59L12 4l-8 8 8 8 1.41-1.41L7.83 13H20v-2z" + }, + "children": [] + }] +}; +exports.ic_arrow_back = ic_arrow_back; \ No newline at end of file diff --git a/dist/md/ic_arrow_back_ios.js b/dist/md/ic_arrow_back_ios.js new file mode 100644 index 000000000..4fff40de5 --- /dev/null +++ b/dist/md/ic_arrow_back_ios.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_arrow_back_ios = void 0; +var ic_arrow_back_ios = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.67 3.87L9.9 2.1 0 12l9.9 9.9 1.77-1.77L3.54 12z" + }, + "children": [] + }] +}; +exports.ic_arrow_back_ios = ic_arrow_back_ios; \ No newline at end of file diff --git a/dist/md/ic_arrow_back_ios_outline.js b/dist/md/ic_arrow_back_ios_outline.js new file mode 100644 index 000000000..56896fef9 --- /dev/null +++ b/dist/md/ic_arrow_back_ios_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_arrow_back_ios_outline = void 0; +var ic_arrow_back_ios_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none", + "opacity": ".87" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17.51 3.87L15.73 2.1 5.84 12l9.9 9.9 1.77-1.77L9.38 12l8.13-8.13z" + }, + "children": [] + }] +}; +exports.ic_arrow_back_ios_outline = ic_arrow_back_ios_outline; \ No newline at end of file diff --git a/dist/md/ic_arrow_back_ios_twotone.js b/dist/md/ic_arrow_back_ios_twotone.js new file mode 100644 index 000000000..7575d56ce --- /dev/null +++ b/dist/md/ic_arrow_back_ios_twotone.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_arrow_back_ios_twotone = void 0; +var ic_arrow_back_ios_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none", + "opacity": ".87" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17.51 3.87L15.73 2.1 5.84 12l9.9 9.9 1.77-1.77L9.38 12l8.13-8.13z" + }, + "children": [] + }] +}; +exports.ic_arrow_back_ios_twotone = ic_arrow_back_ios_twotone; \ No newline at end of file diff --git a/dist/md/ic_arrow_back_outline.js b/dist/md/ic_arrow_back_outline.js new file mode 100644 index 000000000..bb8e4ef24 --- /dev/null +++ b/dist/md/ic_arrow_back_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_arrow_back_outline = void 0; +var ic_arrow_back_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 11H7.83l5.59-5.59L12 4l-8 8 8 8 1.41-1.41L7.83 13H20v-2z" + }, + "children": [] + }] +}; +exports.ic_arrow_back_outline = ic_arrow_back_outline; \ No newline at end of file diff --git a/dist/md/ic_arrow_back_twotone.js b/dist/md/ic_arrow_back_twotone.js new file mode 100644 index 000000000..b482de6bc --- /dev/null +++ b/dist/md/ic_arrow_back_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_arrow_back_twotone = void 0; +var ic_arrow_back_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 11H7.83l5.59-5.59L12 4l-8 8 8 8 1.41-1.41L7.83 13H20v-2z" + }, + "children": [] + }] +}; +exports.ic_arrow_back_twotone = ic_arrow_back_twotone; \ No newline at end of file diff --git a/dist/md/ic_arrow_circle_down.js b/dist/md/ic_arrow_circle_down.js new file mode 100644 index 000000000..9226e9552 --- /dev/null +++ b/dist/md/ic_arrow_circle_down.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_arrow_circle_down = void 0; +var ic_arrow_circle_down = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8s-8-3.59-8-8S7.59,4,12,4 M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10 c5.52,0,10-4.48,10-10C22,6.48,17.52,2,12,2L12,2z M13,12l0-4h-2l0,4H8l4,4l4-4H13z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8s-8-3.59-8-8S7.59,4,12,4 M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10 c5.52,0,10-4.48,10-10C22,6.48,17.52,2,12,2L12,2z M13,12l0-4h-2l0,4H8l4,4l4-4H13z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_arrow_circle_down = ic_arrow_circle_down; \ No newline at end of file diff --git a/dist/md/ic_arrow_circle_down_outline.js b/dist/md/ic_arrow_circle_down_outline.js new file mode 100644 index 000000000..906d2e876 --- /dev/null +++ b/dist/md/ic_arrow_circle_down_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_arrow_circle_down_outline = void 0; +var ic_arrow_circle_down_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8s-8-3.59-8-8S7.59,4,12,4 M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10 c5.52,0,10-4.48,10-10C22,6.48,17.52,2,12,2L12,2z M13,12l0-4h-2l0,4H8l4,4l4-4H13z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8s-8-3.59-8-8S7.59,4,12,4 M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10 c5.52,0,10-4.48,10-10C22,6.48,17.52,2,12,2L12,2z M13,12l0-4h-2l0,4H8l4,4l4-4H13z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_arrow_circle_down_outline = ic_arrow_circle_down_outline; \ No newline at end of file diff --git a/dist/md/ic_arrow_circle_down_twotone.js b/dist/md/ic_arrow_circle_down_twotone.js new file mode 100644 index 000000000..edabb60f8 --- /dev/null +++ b/dist/md/ic_arrow_circle_down_twotone.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_arrow_circle_down_twotone = void 0; +var ic_arrow_circle_down_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M12,4c-4.41,0-8,3.59-8,8s3.59,8,8,8s8-3.59,8-8S16.41,4,12,4z M12,16l-4-4h3l0-4h2l0,4h3L12,16z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,4c-4.41,0-8,3.59-8,8s3.59,8,8,8s8-3.59,8-8S16.41,4,12,4z M12,16l-4-4h3l0-4h2l0,4h3L12,16z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8s-8-3.59-8-8S7.59,4,12,4 M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10 c5.52,0,10-4.48,10-10C22,6.48,17.52,2,12,2L12,2z M13,12l0-4h-2l0,4H8l4,4l4-4H13z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8s-8-3.59-8-8S7.59,4,12,4 M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10 c5.52,0,10-4.48,10-10C22,6.48,17.52,2,12,2L12,2z M13,12l0-4h-2l0,4H8l4,4l4-4H13z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_arrow_circle_down_twotone = ic_arrow_circle_down_twotone; \ No newline at end of file diff --git a/dist/md/ic_arrow_circle_up.js b/dist/md/ic_arrow_circle_up.js new file mode 100644 index 000000000..2254c14ea --- /dev/null +++ b/dist/md/ic_arrow_circle_up.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_arrow_circle_up = void 0; +var ic_arrow_circle_up = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8S16.41,20,12,20 M12,22c5.52,0,10-4.48,10-10c0-5.52-4.48-10-10-10 C6.48,2,2,6.48,2,12C2,17.52,6.48,22,12,22L12,22z M11,12l0,4h2l0-4h3l-4-4l-4,4H11z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8S16.41,20,12,20 M12,22c5.52,0,10-4.48,10-10c0-5.52-4.48-10-10-10 C6.48,2,2,6.48,2,12C2,17.52,6.48,22,12,22L12,22z M11,12l0,4h2l0-4h3l-4-4l-4,4H11z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_arrow_circle_up = ic_arrow_circle_up; \ No newline at end of file diff --git a/dist/md/ic_arrow_circle_up_outline.js b/dist/md/ic_arrow_circle_up_outline.js new file mode 100644 index 000000000..1218f8bae --- /dev/null +++ b/dist/md/ic_arrow_circle_up_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_arrow_circle_up_outline = void 0; +var ic_arrow_circle_up_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8S16.41,20,12,20 M12,22c5.52,0,10-4.48,10-10c0-5.52-4.48-10-10-10 C6.48,2,2,6.48,2,12C2,17.52,6.48,22,12,22L12,22z M11,12l0,4h2l0-4h3l-4-4l-4,4H11z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8S16.41,20,12,20 M12,22c5.52,0,10-4.48,10-10c0-5.52-4.48-10-10-10 C6.48,2,2,6.48,2,12C2,17.52,6.48,22,12,22L12,22z M11,12l0,4h2l0-4h3l-4-4l-4,4H11z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_arrow_circle_up_outline = ic_arrow_circle_up_outline; \ No newline at end of file diff --git a/dist/md/ic_arrow_circle_up_twotone.js b/dist/md/ic_arrow_circle_up_twotone.js new file mode 100644 index 000000000..956c54492 --- /dev/null +++ b/dist/md/ic_arrow_circle_up_twotone.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_arrow_circle_up_twotone = void 0; +var ic_arrow_circle_up_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8S16.41,20,12,20 M11,12l0,4h2l0-4h3l-4-4l-4,4H11z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8S16.41,20,12,20 M11,12l0,4h2l0-4h3l-4-4l-4,4H11z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8S16.41,20,12,20 M12,22c5.52,0,10-4.48,10-10c0-5.52-4.48-10-10-10 C6.48,2,2,6.48,2,12C2,17.52,6.48,22,12,22L12,22z M11,12l0,4h2l0-4h3l-4-4l-4,4H11z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8S16.41,20,12,20 M12,22c5.52,0,10-4.48,10-10c0-5.52-4.48-10-10-10 C6.48,2,2,6.48,2,12C2,17.52,6.48,22,12,22L12,22z M11,12l0,4h2l0-4h3l-4-4l-4,4H11z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_arrow_circle_up_twotone = ic_arrow_circle_up_twotone; \ No newline at end of file diff --git a/dist/md/ic_arrow_downward.js b/dist/md/ic_arrow_downward.js new file mode 100644 index 000000000..f46b3f5e7 --- /dev/null +++ b/dist/md/ic_arrow_downward.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_arrow_downward = void 0; +var ic_arrow_downward = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 12l-1.41-1.41L13 16.17V4h-2v12.17l-5.58-5.59L4 12l8 8 8-8z" + }, + "children": [] + }] +}; +exports.ic_arrow_downward = ic_arrow_downward; \ No newline at end of file diff --git a/dist/md/ic_arrow_downward_outline.js b/dist/md/ic_arrow_downward_outline.js new file mode 100644 index 000000000..d0ff1f538 --- /dev/null +++ b/dist/md/ic_arrow_downward_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_arrow_downward_outline = void 0; +var ic_arrow_downward_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 12l-1.41-1.41L13 16.17V4h-2v12.17l-5.58-5.59L4 12l8 8 8-8z" + }, + "children": [] + }] +}; +exports.ic_arrow_downward_outline = ic_arrow_downward_outline; \ No newline at end of file diff --git a/dist/md/ic_arrow_downward_twotone.js b/dist/md/ic_arrow_downward_twotone.js new file mode 100644 index 000000000..918c9ff74 --- /dev/null +++ b/dist/md/ic_arrow_downward_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_arrow_downward_twotone = void 0; +var ic_arrow_downward_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 12l-1.41-1.41L13 16.17V4h-2v12.17l-5.58-5.59L4 12l8 8 8-8z" + }, + "children": [] + }] +}; +exports.ic_arrow_downward_twotone = ic_arrow_downward_twotone; \ No newline at end of file diff --git a/dist/md/ic_arrow_drop_down.js b/dist/md/ic_arrow_drop_down.js new file mode 100644 index 000000000..643dda75e --- /dev/null +++ b/dist/md/ic_arrow_drop_down.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_arrow_drop_down = void 0; +var ic_arrow_drop_down = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 10l5 5 5-5z" + }, + "children": [] + }] +}; +exports.ic_arrow_drop_down = ic_arrow_drop_down; \ No newline at end of file diff --git a/dist/md/ic_arrow_drop_down_circle.js b/dist/md/ic_arrow_drop_down_circle.js new file mode 100644 index 000000000..84c038d62 --- /dev/null +++ b/dist/md/ic_arrow_drop_down_circle.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_arrow_drop_down_circle = void 0; +var ic_arrow_drop_down_circle = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 12l-4-4h8l-4 4z" + }, + "children": [] + }] +}; +exports.ic_arrow_drop_down_circle = ic_arrow_drop_down_circle; \ No newline at end of file diff --git a/dist/md/ic_arrow_drop_down_circle_outline.js b/dist/md/ic_arrow_drop_down_circle_outline.js new file mode 100644 index 000000000..85b41a1bf --- /dev/null +++ b/dist/md/ic_arrow_drop_down_circle_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_arrow_drop_down_circle_outline = void 0; +var ic_arrow_drop_down_circle_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8m0-2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 13l-4-4h8z" + }, + "children": [] + }] +}; +exports.ic_arrow_drop_down_circle_outline = ic_arrow_drop_down_circle_outline; \ No newline at end of file diff --git a/dist/md/ic_arrow_drop_down_circle_twotone.js b/dist/md/ic_arrow_drop_down_circle_twotone.js new file mode 100644 index 000000000..32807e8bd --- /dev/null +++ b/dist/md/ic_arrow_drop_down_circle_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_arrow_drop_down_circle_twotone = void 0; +var ic_arrow_drop_down_circle_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm0 11l-4-4h8l-4 4z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-5l4-4H8z" + }, + "children": [] + }] +}; +exports.ic_arrow_drop_down_circle_twotone = ic_arrow_drop_down_circle_twotone; \ No newline at end of file diff --git a/dist/md/ic_arrow_drop_down_outline.js b/dist/md/ic_arrow_drop_down_outline.js new file mode 100644 index 000000000..1732bfb74 --- /dev/null +++ b/dist/md/ic_arrow_drop_down_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_arrow_drop_down_outline = void 0; +var ic_arrow_drop_down_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 10l5 5 5-5H7z" + }, + "children": [] + }] +}; +exports.ic_arrow_drop_down_outline = ic_arrow_drop_down_outline; \ No newline at end of file diff --git a/dist/md/ic_arrow_drop_down_twotone.js b/dist/md/ic_arrow_drop_down_twotone.js new file mode 100644 index 000000000..f99666562 --- /dev/null +++ b/dist/md/ic_arrow_drop_down_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_arrow_drop_down_twotone = void 0; +var ic_arrow_drop_down_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 10l5 5 5-5H7z" + }, + "children": [] + }] +}; +exports.ic_arrow_drop_down_twotone = ic_arrow_drop_down_twotone; \ No newline at end of file diff --git a/dist/md/ic_arrow_drop_up.js b/dist/md/ic_arrow_drop_up.js new file mode 100644 index 000000000..3aa2b94d5 --- /dev/null +++ b/dist/md/ic_arrow_drop_up.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_arrow_drop_up = void 0; +var ic_arrow_drop_up = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 14l5-5 5 5z" + }, + "children": [] + }] +}; +exports.ic_arrow_drop_up = ic_arrow_drop_up; \ No newline at end of file diff --git a/dist/md/ic_arrow_drop_up_outline.js b/dist/md/ic_arrow_drop_up_outline.js new file mode 100644 index 000000000..a63a5a694 --- /dev/null +++ b/dist/md/ic_arrow_drop_up_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_arrow_drop_up_outline = void 0; +var ic_arrow_drop_up_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 14l5-5 5 5H7z" + }, + "children": [] + }] +}; +exports.ic_arrow_drop_up_outline = ic_arrow_drop_up_outline; \ No newline at end of file diff --git a/dist/md/ic_arrow_drop_up_twotone.js b/dist/md/ic_arrow_drop_up_twotone.js new file mode 100644 index 000000000..ae20b893f --- /dev/null +++ b/dist/md/ic_arrow_drop_up_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_arrow_drop_up_twotone = void 0; +var ic_arrow_drop_up_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 14l5-5 5 5H7z" + }, + "children": [] + }] +}; +exports.ic_arrow_drop_up_twotone = ic_arrow_drop_up_twotone; \ No newline at end of file diff --git a/dist/md/ic_arrow_forward.js b/dist/md/ic_arrow_forward.js new file mode 100644 index 000000000..166534f64 --- /dev/null +++ b/dist/md/ic_arrow_forward.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_arrow_forward = void 0; +var ic_arrow_forward = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4l-1.41 1.41L16.17 11H4v2h12.17l-5.58 5.59L12 20l8-8z" + }, + "children": [] + }] +}; +exports.ic_arrow_forward = ic_arrow_forward; \ No newline at end of file diff --git a/dist/md/ic_arrow_forward_ios.js b/dist/md/ic_arrow_forward_ios.js new file mode 100644 index 000000000..7524942e8 --- /dev/null +++ b/dist/md/ic_arrow_forward_ios.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_arrow_forward_ios = void 0; +var ic_arrow_forward_ios = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5.88 4.12L13.76 12l-7.88 7.88L8 22l10-10L8 2z" + }, + "children": [] + }] +}; +exports.ic_arrow_forward_ios = ic_arrow_forward_ios; \ No newline at end of file diff --git a/dist/md/ic_arrow_forward_ios_outline.js b/dist/md/ic_arrow_forward_ios_outline.js new file mode 100644 index 000000000..6b0570363 --- /dev/null +++ b/dist/md/ic_arrow_forward_ios_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_arrow_forward_ios_outline = void 0; +var ic_arrow_forward_ios_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M24 24H0V0h24v24z", + "fill": "none", + "opacity": ".87" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6.49 20.13l1.77 1.77 9.9-9.9-9.9-9.9-1.77 1.77L14.62 12l-8.13 8.13z" + }, + "children": [] + }] +}; +exports.ic_arrow_forward_ios_outline = ic_arrow_forward_ios_outline; \ No newline at end of file diff --git a/dist/md/ic_arrow_forward_ios_twotone.js b/dist/md/ic_arrow_forward_ios_twotone.js new file mode 100644 index 000000000..73e38bc98 --- /dev/null +++ b/dist/md/ic_arrow_forward_ios_twotone.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_arrow_forward_ios_twotone = void 0; +var ic_arrow_forward_ios_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M24 24H0V0h24v24z", + "fill": "none", + "opacity": ".87" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6.49 20.13l1.77 1.77 9.9-9.9-9.9-9.9-1.77 1.77L14.62 12l-8.13 8.13z" + }, + "children": [] + }] +}; +exports.ic_arrow_forward_ios_twotone = ic_arrow_forward_ios_twotone; \ No newline at end of file diff --git a/dist/md/ic_arrow_forward_outline.js b/dist/md/ic_arrow_forward_outline.js new file mode 100644 index 000000000..87e2b67e4 --- /dev/null +++ b/dist/md/ic_arrow_forward_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_arrow_forward_outline = void 0; +var ic_arrow_forward_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4l-1.41 1.41L16.17 11H4v2h12.17l-5.58 5.59L12 20l8-8-8-8z" + }, + "children": [] + }] +}; +exports.ic_arrow_forward_outline = ic_arrow_forward_outline; \ No newline at end of file diff --git a/dist/md/ic_arrow_forward_twotone.js b/dist/md/ic_arrow_forward_twotone.js new file mode 100644 index 000000000..057b4fed7 --- /dev/null +++ b/dist/md/ic_arrow_forward_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_arrow_forward_twotone = void 0; +var ic_arrow_forward_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4l-1.41 1.41L16.17 11H4v2h12.17l-5.58 5.59L12 20l8-8-8-8z" + }, + "children": [] + }] +}; +exports.ic_arrow_forward_twotone = ic_arrow_forward_twotone; \ No newline at end of file diff --git a/dist/md/ic_arrow_left.js b/dist/md/ic_arrow_left.js new file mode 100644 index 000000000..afda7b367 --- /dev/null +++ b/dist/md/ic_arrow_left.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_arrow_left = void 0; +var ic_arrow_left = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M14 7l-5 5 5 5V7z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M24 0v24H0V0h24z", + "fill": "none" + }, + "children": [] + }] +}; +exports.ic_arrow_left = ic_arrow_left; \ No newline at end of file diff --git a/dist/md/ic_arrow_left_outline.js b/dist/md/ic_arrow_left_outline.js new file mode 100644 index 000000000..62237579e --- /dev/null +++ b/dist/md/ic_arrow_left_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_arrow_left_outline = void 0; +var ic_arrow_left_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M24 0v24H0V0h24z", + "fill": "none", + "opacity": ".87" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 7l-5 5 5 5V7z" + }, + "children": [] + }] +}; +exports.ic_arrow_left_outline = ic_arrow_left_outline; \ No newline at end of file diff --git a/dist/md/ic_arrow_left_twotone.js b/dist/md/ic_arrow_left_twotone.js new file mode 100644 index 000000000..055bf4d24 --- /dev/null +++ b/dist/md/ic_arrow_left_twotone.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_arrow_left_twotone = void 0; +var ic_arrow_left_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M24 0v24H0V0h24z", + "fill": "none", + "opacity": ".87" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 7l-5 5 5 5V7z" + }, + "children": [] + }] +}; +exports.ic_arrow_left_twotone = ic_arrow_left_twotone; \ No newline at end of file diff --git a/dist/md/ic_arrow_right.js b/dist/md/ic_arrow_right.js new file mode 100644 index 000000000..6a8090432 --- /dev/null +++ b/dist/md/ic_arrow_right.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_arrow_right = void 0; +var ic_arrow_right = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M10 17l5-5-5-5v10z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M0 24V0h24v24H0z", + "fill": "none" + }, + "children": [] + }] +}; +exports.ic_arrow_right = ic_arrow_right; \ No newline at end of file diff --git a/dist/md/ic_arrow_right_alt.js b/dist/md/ic_arrow_right_alt.js new file mode 100644 index 000000000..e4754d906 --- /dev/null +++ b/dist/md/ic_arrow_right_alt.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_arrow_right_alt = void 0; +var ic_arrow_right_alt = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16.01 11H4v2h12.01v3L20 12l-3.99-4z" + }, + "children": [] + }] +}; +exports.ic_arrow_right_alt = ic_arrow_right_alt; \ No newline at end of file diff --git a/dist/md/ic_arrow_right_alt_outline.js b/dist/md/ic_arrow_right_alt_outline.js new file mode 100644 index 000000000..87f0668d2 --- /dev/null +++ b/dist/md/ic_arrow_right_alt_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_arrow_right_alt_outline = void 0; +var ic_arrow_right_alt_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16.01 11H4v2h12.01v3L20 12l-3.99-4v3z" + }, + "children": [] + }] +}; +exports.ic_arrow_right_alt_outline = ic_arrow_right_alt_outline; \ No newline at end of file diff --git a/dist/md/ic_arrow_right_alt_twotone.js b/dist/md/ic_arrow_right_alt_twotone.js new file mode 100644 index 000000000..b170911d1 --- /dev/null +++ b/dist/md/ic_arrow_right_alt_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_arrow_right_alt_twotone = void 0; +var ic_arrow_right_alt_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16.01 11H4v2h12.01v3L20 12l-3.99-4v3z" + }, + "children": [] + }] +}; +exports.ic_arrow_right_alt_twotone = ic_arrow_right_alt_twotone; \ No newline at end of file diff --git a/dist/md/ic_arrow_right_outline.js b/dist/md/ic_arrow_right_outline.js new file mode 100644 index 000000000..5e2b0bdb6 --- /dev/null +++ b/dist/md/ic_arrow_right_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_arrow_right_outline = void 0; +var ic_arrow_right_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 17l5-5-5-5v10z" + }, + "children": [] + }] +}; +exports.ic_arrow_right_outline = ic_arrow_right_outline; \ No newline at end of file diff --git a/dist/md/ic_arrow_right_twotone.js b/dist/md/ic_arrow_right_twotone.js new file mode 100644 index 000000000..d9bc94af3 --- /dev/null +++ b/dist/md/ic_arrow_right_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_arrow_right_twotone = void 0; +var ic_arrow_right_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 17l5-5-5-5v10z" + }, + "children": [] + }] +}; +exports.ic_arrow_right_twotone = ic_arrow_right_twotone; \ No newline at end of file diff --git a/dist/md/ic_arrow_upward.js b/dist/md/ic_arrow_upward.js new file mode 100644 index 000000000..b0ee044da --- /dev/null +++ b/dist/md/ic_arrow_upward.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_arrow_upward = void 0; +var ic_arrow_upward = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 12l1.41 1.41L11 7.83V20h2V7.83l5.58 5.59L20 12l-8-8-8 8z" + }, + "children": [] + }] +}; +exports.ic_arrow_upward = ic_arrow_upward; \ No newline at end of file diff --git a/dist/md/ic_arrow_upward_outline.js b/dist/md/ic_arrow_upward_outline.js new file mode 100644 index 000000000..f4f0c9c8d --- /dev/null +++ b/dist/md/ic_arrow_upward_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_arrow_upward_outline = void 0; +var ic_arrow_upward_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 12l1.41 1.41L11 7.83V20h2V7.83l5.58 5.59L20 12l-8-8-8 8z" + }, + "children": [] + }] +}; +exports.ic_arrow_upward_outline = ic_arrow_upward_outline; \ No newline at end of file diff --git a/dist/md/ic_arrow_upward_twotone.js b/dist/md/ic_arrow_upward_twotone.js new file mode 100644 index 000000000..2bd6591b1 --- /dev/null +++ b/dist/md/ic_arrow_upward_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_arrow_upward_twotone = void 0; +var ic_arrow_upward_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 12l1.41 1.41L11 7.83V20h2V7.83l5.58 5.59L20 12l-8-8-8 8z" + }, + "children": [] + }] +}; +exports.ic_arrow_upward_twotone = ic_arrow_upward_twotone; \ No newline at end of file diff --git a/dist/md/ic_art_track.js b/dist/md/ic_art_track.js new file mode 100644 index 000000000..ebc1295ad --- /dev/null +++ b/dist/md/ic_art_track.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_art_track = void 0; +var ic_art_track = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 13h-8v-2h8v2zm0-6h-8v2h8V7zm-8 10h8v-2h-8v2zm-2-8v6c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V9c0-1.1.9-2 2-2h6c1.1 0 2 .9 2 2zm-1.5 6l-2.25-3-1.75 2.26-1.25-1.51L3.5 15h7z" + }, + "children": [] + }] +}; +exports.ic_art_track = ic_art_track; \ No newline at end of file diff --git a/dist/md/ic_art_track_outline.js b/dist/md/ic_art_track_outline.js new file mode 100644 index 000000000..7aded9792 --- /dev/null +++ b/dist/md/ic_art_track_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_art_track_outline = void 0; +var ic_art_track_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 13h-8v-2h8v2zm0-6h-8v2h8V7zm-8 10h8v-2h-8v2zm-2-8v6c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V9c0-1.1.9-2 2-2h6c1.1 0 2 .9 2 2zm-1.5 6l-2.25-3-1.75 2.26-1.25-1.51L3.5 15h7z" + }, + "children": [] + }] +}; +exports.ic_art_track_outline = ic_art_track_outline; \ No newline at end of file diff --git a/dist/md/ic_art_track_twotone.js b/dist/md/ic_art_track_twotone.js new file mode 100644 index 000000000..3e97f5689 --- /dev/null +++ b/dist/md/ic_art_track_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_art_track_twotone = void 0; +var ic_art_track_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 7h8v2h-8zm0 4h8v2h-8zm0 4h8v2h-8zM4 17h6c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2zm1.25-4.25l1.25 1.51L8.25 12l2.25 3h-7l1.75-2.25z" + }, + "children": [] + }] +}; +exports.ic_art_track_twotone = ic_art_track_twotone; \ No newline at end of file diff --git a/dist/md/ic_article.js b/dist/md/ic_article.js new file mode 100644 index 000000000..90c32c4a1 --- /dev/null +++ b/dist/md/ic_article.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_article = void 0; +var ic_article = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-5 14H7v-2h7v2zm3-4H7v-2h10v2zm0-4H7V7h10v2z" + }, + "children": [] + }] +}; +exports.ic_article = ic_article; \ No newline at end of file diff --git a/dist/md/ic_article_outline.js b/dist/md/ic_article_outline.js new file mode 100644 index 000000000..0ee6c3a5e --- /dev/null +++ b/dist/md/ic_article_outline.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_article_outline = void 0; +var ic_article_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,5v14H5V5H19 M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3L19,3z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,5v14H5V5H19 M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3L19,3z" + }, + "children": [] + }] + }] + }] + }, { + "name": "path", + "attribs": { + "d": "M14,17H7v-2h7V17z M17,13H7v-2h10V13z M17,9H7V7h10V9z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14,17H7v-2h7V17z M17,13H7v-2h10V13z M17,9H7V7h10V9z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_article_outline = ic_article_outline; \ No newline at end of file diff --git a/dist/md/ic_article_twotone.js b/dist/md/ic_article_twotone.js new file mode 100644 index 000000000..b2a9b734d --- /dev/null +++ b/dist/md/ic_article_twotone.js @@ -0,0 +1,59 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_article_twotone = void 0; +var ic_article_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "y": "0" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "y": "0" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M5,5v14h14V5H5z M14,17H7v-2h7V17z M17,13H7v-2h10V13z M17,9H7V7h10V9z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M5,5v14h14V5H5z M14,17H7v-2h7V17z M17,13H7v-2h10V13z M17,9H7V7h10V9z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z M17,13H7v-2h10 V13z M17,9H7V7h10V9z M14,17H7v-2h7V17z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z M17,13H7v-2h10 V13z M17,9H7V7h10V9z M14,17H7v-2h7V17z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_article_twotone = ic_article_twotone; \ No newline at end of file diff --git a/dist/md/ic_aspect_ratio.js b/dist/md/ic_aspect_ratio.js new file mode 100644 index 000000000..6b056cc1c --- /dev/null +++ b/dist/md/ic_aspect_ratio.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_aspect_ratio = void 0; +var ic_aspect_ratio = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 12h-2v3h-3v2h5v-5zM7 9h3V7H5v5h2V9zm14-6H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02z" + }, + "children": [] + }] +}; +exports.ic_aspect_ratio = ic_aspect_ratio; \ No newline at end of file diff --git a/dist/md/ic_aspect_ratio_outline.js b/dist/md/ic_aspect_ratio_outline.js new file mode 100644 index 000000000..229b8bfef --- /dev/null +++ b/dist/md/ic_aspect_ratio_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_aspect_ratio_outline = void 0; +var ic_aspect_ratio_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 12h-2v3h-3v2h5v-5zM7 9h3V7H5v5h2V9zm14-6H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02z" + }, + "children": [] + }] +}; +exports.ic_aspect_ratio_outline = ic_aspect_ratio_outline; \ No newline at end of file diff --git a/dist/md/ic_aspect_ratio_twotone.js b/dist/md/ic_aspect_ratio_twotone.js new file mode 100644 index 000000000..b2a34cbd7 --- /dev/null +++ b/dist/md/ic_aspect_ratio_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_aspect_ratio_twotone = void 0; +var ic_aspect_ratio_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 19.01h18V4.99H3v14.02zM14 15h3v-3h2v5h-5v-2zM5 7h5v2H7v3H5V7z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02zM7 9h3V7H5v5h2zm12 3h-2v3h-3v2h5z" + }, + "children": [] + }] +}; +exports.ic_aspect_ratio_twotone = ic_aspect_ratio_twotone; \ No newline at end of file diff --git a/dist/md/ic_assessment.js b/dist/md/ic_assessment.js new file mode 100644 index 000000000..48cc3444c --- /dev/null +++ b/dist/md/ic_assessment.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_assessment = void 0; +var ic_assessment = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z" + }, + "children": [] + }] +}; +exports.ic_assessment = ic_assessment; \ No newline at end of file diff --git a/dist/md/ic_assessment_outline.js b/dist/md/ic_assessment_outline.js new file mode 100644 index 000000000..685be1c91 --- /dev/null +++ b/dist/md/ic_assessment_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_assessment_outline = void 0; +var ic_assessment_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM7 10h2v7H7zm4-3h2v10h-2zm4 6h2v4h-2z" + }, + "children": [] + }] +}; +exports.ic_assessment_outline = ic_assessment_outline; \ No newline at end of file diff --git a/dist/md/ic_assessment_twotone.js b/dist/md/ic_assessment_twotone.js new file mode 100644 index 000000000..a1e4c3492 --- /dev/null +++ b/dist/md/ic_assessment_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_assessment_twotone = void 0; +var ic_assessment_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 5v14h14V5H5zm4 12H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM7 10h2v7H7zm4-3h2v10h-2zm4 6h2v4h-2z" + }, + "children": [] + }] +}; +exports.ic_assessment_twotone = ic_assessment_twotone; \ No newline at end of file diff --git a/dist/md/ic_assignment.js b/dist/md/ic_assignment.js new file mode 100644 index 000000000..f8890dfd4 --- /dev/null +++ b/dist/md/ic_assignment.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_assignment = void 0; +var ic_assignment = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm2 14H7v-2h7v2zm3-4H7v-2h10v2zm0-4H7V7h10v2z" + }, + "children": [] + }] +}; +exports.ic_assignment = ic_assignment; \ No newline at end of file diff --git a/dist/md/ic_assignment_ind.js b/dist/md/ic_assignment_ind.js new file mode 100644 index 000000000..38fb9094a --- /dev/null +++ b/dist/md/ic_assignment_ind.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_assignment_ind = void 0; +var ic_assignment_ind = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm0 4c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm6 12H6v-1.4c0-2 4-3.1 6-3.1s6 1.1 6 3.1V19z" + }, + "children": [] + }] +}; +exports.ic_assignment_ind = ic_assignment_ind; \ No newline at end of file diff --git a/dist/md/ic_assignment_ind_outline.js b/dist/md/ic_assignment_ind_outline.js new file mode 100644 index 000000000..c7c5976d5 --- /dev/null +++ b/dist/md/ic_assignment_ind_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_assignment_ind_outline = void 0; +var ic_assignment_ind_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.22 0 .41.1.55.25.12.13.2.31.2.5 0 .41-.34.75-.75.75s-.75-.34-.75-.75c0-.19.08-.37.2-.5.14-.15.33-.25.55-.25zM19 19H5V5h14v14zM12 6c-1.65 0-3 1.35-3 3s1.35 3 3 3 3-1.35 3-3-1.35-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-6 6.47V18h12v-1.53c0-2.5-3.97-3.58-6-3.58s-6 1.07-6 3.58zM8.31 16c.69-.56 2.38-1.12 3.69-1.12s3.01.56 3.69 1.12H8.31z" + }, + "children": [] + }] +}; +exports.ic_assignment_ind_outline = ic_assignment_ind_outline; \ No newline at end of file diff --git a/dist/md/ic_assignment_ind_twotone.js b/dist/md/ic_assignment_ind_twotone.js new file mode 100644 index 000000000..c8c568b95 --- /dev/null +++ b/dist/md/ic_assignment_ind_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_assignment_ind_twotone = void 0; +var ic_assignment_ind_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 5H5v14h14V5zm-7 1c1.65 0 3 1.35 3 3s-1.35 3-3 3-3-1.35-3-3 1.35-3 3-3zm6 12H6v-1.53c0-2.5 3.97-3.58 6-3.58s6 1.08 6 3.58V18z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20.66 3.88c-.14-.21-.33-.4-.54-.54-.11-.07-.22-.13-.34-.18-.24-.1-.5-.16-.78-.16h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c.28 0 .54-.06.78-.16.12-.05.23-.11.34-.18.21-.14.4-.33.54-.54.21-.32.34-.71.34-1.12V5c0-.41-.13-.8-.34-1.12zM12 2.75c.22 0 .41.1.55.25.12.13.2.31.2.5 0 .41-.34.75-.75.75s-.75-.34-.75-.75c0-.19.08-.37.2-.5.14-.15.33-.25.55-.25zM19 19H5V5h14v14zm-7-7c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0 2.88c-2.03 0-6 1.08-6 3.58V18h12v-1.53c0-2.51-3.97-3.59-6-3.59zM8.31 16c.69-.56 2.38-1.12 3.69-1.12s3.01.56 3.69 1.12H8.31z" + }, + "children": [] + }] +}; +exports.ic_assignment_ind_twotone = ic_assignment_ind_twotone; \ No newline at end of file diff --git a/dist/md/ic_assignment_late.js b/dist/md/ic_assignment_late.js new file mode 100644 index 000000000..16c26804e --- /dev/null +++ b/dist/md/ic_assignment_late.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_assignment_late = void 0; +var ic_assignment_late = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-6 15h-2v-2h2v2zm0-4h-2V8h2v6zm-1-9c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" + }, + "children": [] + }] +}; +exports.ic_assignment_late = ic_assignment_late; \ No newline at end of file diff --git a/dist/md/ic_assignment_late_outline.js b/dist/md/ic_assignment_late_outline.js new file mode 100644 index 000000000..161d9444d --- /dev/null +++ b/dist/md/ic_assignment_late_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_assignment_late_outline = void 0; +var ic_assignment_late_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 15h2v2h-2zm0-8h2v6h-2zm8-4h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64-.1.23-.16.49-.16.77v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 19H5V5h14v14z" + }, + "children": [] + }] +}; +exports.ic_assignment_late_outline = ic_assignment_late_outline; \ No newline at end of file diff --git a/dist/md/ic_assignment_late_twotone.js b/dist/md/ic_assignment_late_twotone.js new file mode 100644 index 000000000..8a2e2d43d --- /dev/null +++ b/dist/md/ic_assignment_late_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_assignment_late_twotone = void 0; +var ic_assignment_late_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 5v14h14V5H5zm8 12h-2v-2h2v2zm0-4h-2V7h2v6z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 15h2v2h-2zm0-8h2v6h-2zm8-4h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64S3 4.72 3 5v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 19H5V5h14v14z" + }, + "children": [] + }] +}; +exports.ic_assignment_late_twotone = ic_assignment_late_twotone; \ No newline at end of file diff --git a/dist/md/ic_assignment_outline.js b/dist/md/ic_assignment_outline.js new file mode 100644 index 000000000..85dd4934f --- /dev/null +++ b/dist/md/ic_assignment_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_assignment_outline = void 0; +var ic_assignment_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 15h7v2H7zm0-4h10v2H7zm0-4h10v2H7zm12-4h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64-.1.23-.16.49-.16.77v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 19H5V5h14v14z" + }, + "children": [] + }] +}; +exports.ic_assignment_outline = ic_assignment_outline; \ No newline at end of file diff --git a/dist/md/ic_assignment_return.js b/dist/md/ic_assignment_return.js new file mode 100644 index 000000000..8d0526d2c --- /dev/null +++ b/dist/md/ic_assignment_return.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_assignment_return = void 0; +var ic_assignment_return = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm4 12h-4v3l-5-5 5-5v3h4v4z" + }, + "children": [] + }] +}; +exports.ic_assignment_return = ic_assignment_return; \ No newline at end of file diff --git a/dist/md/ic_assignment_return_outline.js b/dist/md/ic_assignment_return_outline.js new file mode 100644 index 000000000..c459a92ff --- /dev/null +++ b/dist/md/ic_assignment_return_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_assignment_return_outline = void 0; +var ic_assignment_return_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 14h4v-4h-4V7l-5 5 5 5zm7-11h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64-.1.23-.16.49-.16.77v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 19H5V5h14v14z" + }, + "children": [] + }] +}; +exports.ic_assignment_return_outline = ic_assignment_return_outline; \ No newline at end of file diff --git a/dist/md/ic_assignment_return_twotone.js b/dist/md/ic_assignment_return_twotone.js new file mode 100644 index 000000000..73288e5a4 --- /dev/null +++ b/dist/md/ic_assignment_return_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_assignment_return_twotone = void 0; +var ic_assignment_return_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 5v14h14V5H5zm11 9h-4v3l-5-5 5-5v3h4v4z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 7l-5 5 5 5v-3h4v-4h-4zm7-4h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64S3 4.72 3 5v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 19H5V5h14v14z" + }, + "children": [] + }] +}; +exports.ic_assignment_return_twotone = ic_assignment_return_twotone; \ No newline at end of file diff --git a/dist/md/ic_assignment_returned.js b/dist/md/ic_assignment_returned.js new file mode 100644 index 000000000..95e8877e8 --- /dev/null +++ b/dist/md/ic_assignment_returned.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_assignment_returned = void 0; +var ic_assignment_returned = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm0 15l-5-5h3V9h4v4h3l-5 5z" + }, + "children": [] + }] +}; +exports.ic_assignment_returned = ic_assignment_returned; \ No newline at end of file diff --git a/dist/md/ic_assignment_returned_outline.js b/dist/md/ic_assignment_returned_outline.js new file mode 100644 index 000000000..93e6b6f97 --- /dev/null +++ b/dist/md/ic_assignment_returned_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_assignment_returned_outline = void 0; +var ic_assignment_returned_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 12h-3V8h-4v4H7l5 5zm2-9h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64-.1.23-.16.49-.16.77v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 19H5V5h14v14z" + }, + "children": [] + }] +}; +exports.ic_assignment_returned_outline = ic_assignment_returned_outline; \ No newline at end of file diff --git a/dist/md/ic_assignment_returned_twotone.js b/dist/md/ic_assignment_returned_twotone.js new file mode 100644 index 000000000..fbd8feca5 --- /dev/null +++ b/dist/md/ic_assignment_returned_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_assignment_returned_twotone = void 0; +var ic_assignment_returned_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 19h14V5H5v14zm5-7V8h4v4h3l-5 5-5-5h3z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 12h-3V8h-4v4H7l5 5zm2-9h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64S3 4.72 3 5v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 19H5V5h14v14z" + }, + "children": [] + }] +}; +exports.ic_assignment_returned_twotone = ic_assignment_returned_twotone; \ No newline at end of file diff --git a/dist/md/ic_assignment_turned_in.js b/dist/md/ic_assignment_turned_in.js new file mode 100644 index 000000000..b7399339a --- /dev/null +++ b/dist/md/ic_assignment_turned_in.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_assignment_turned_in = void 0; +var ic_assignment_turned_in = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-2 14l-4-4 1.41-1.41L10 14.17l6.59-6.59L18 9l-8 8z" + }, + "children": [] + }] +}; +exports.ic_assignment_turned_in = ic_assignment_turned_in; \ No newline at end of file diff --git a/dist/md/ic_assignment_turned_in_outline.js b/dist/md/ic_assignment_turned_in_outline.js new file mode 100644 index 000000000..96a0b8e05 --- /dev/null +++ b/dist/md/ic_assignment_turned_in_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_assignment_turned_in_outline = void 0; +var ic_assignment_turned_in_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 9l-1.41-1.42L10 14.17l-2.59-2.58L6 13l4 4zm1-6h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64-.1.23-.16.49-.16.77v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 19H5V5h14v14z" + }, + "children": [] + }] +}; +exports.ic_assignment_turned_in_outline = ic_assignment_turned_in_outline; \ No newline at end of file diff --git a/dist/md/ic_assignment_turned_in_twotone.js b/dist/md/ic_assignment_turned_in_twotone.js new file mode 100644 index 000000000..8be524347 --- /dev/null +++ b/dist/md/ic_assignment_turned_in_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_assignment_turned_in_twotone = void 0; +var ic_assignment_turned_in_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 19h14V5H5v14zm2.41-7.41L10 14.17l6.59-6.59L18 9l-8 8-4-4 1.41-1.41z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 9l-1.41-1.42L10 14.17l-2.59-2.58L6 13l4 4zm1-6h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64S3 4.72 3 5v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 19H5V5h14v14z" + }, + "children": [] + }] +}; +exports.ic_assignment_turned_in_twotone = ic_assignment_turned_in_twotone; \ No newline at end of file diff --git a/dist/md/ic_assignment_twotone.js b/dist/md/ic_assignment_twotone.js new file mode 100644 index 000000000..145ba6a0c --- /dev/null +++ b/dist/md/ic_assignment_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_assignment_twotone = void 0; +var ic_assignment_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 5v14h14V5H5zm9 12H7v-2h7v2zm3-4H7v-2h10v2zm0-4H7V7h10v2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 15h7v2H7zm0-4h10v2H7zm0-4h10v2H7zm12-4h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64S3 4.72 3 5v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 19H5V5h14v14z" + }, + "children": [] + }] +}; +exports.ic_assignment_twotone = ic_assignment_twotone; \ No newline at end of file diff --git a/dist/md/ic_assistant.js b/dist/md/ic_assistant.js new file mode 100644 index 000000000..5a52e5b89 --- /dev/null +++ b/dist/md/ic_assistant.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_assistant = void 0; +var ic_assistant = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h4l3 3 3-3h4c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-5.12 10.88L12 17l-1.88-4.12L6 11l4.12-1.88L12 5l1.88 4.12L18 11l-4.12 1.88z" + }, + "children": [] + }] +}; +exports.ic_assistant = ic_assistant; \ No newline at end of file diff --git a/dist/md/ic_assistant_direction.js b/dist/md/ic_assistant_direction.js new file mode 100644 index 000000000..f0cf52028 --- /dev/null +++ b/dist/md/ic_assistant_direction.js @@ -0,0 +1,28 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_assistant_direction = void 0; +var ic_assistant_direction = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "title", + "attribs": {}, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 10H9c-.6 0-1 .4-1 1v4h2v-3h4v2.5l3.5-3.5L14 7.5V10zm-2-9C5.9 1 1 5.9 1 12s4.9 11 11 11 11-4.9 11-11S18.1 1 12 1zm7.73 11.58l-7.19 7.22c-.35.27-.79.27-1.15 0L4.2 12.58c-.27-.36-.27-.8 0-1.16l7.19-7.22c.35-.27.79-.27 1.15 0l7.19 7.22c.36.27.36.8 0 1.16z" + }, + "children": [] + }] +}; +exports.ic_assistant_direction = ic_assistant_direction; \ No newline at end of file diff --git a/dist/md/ic_assistant_navigation.js b/dist/md/ic_assistant_navigation.js new file mode 100644 index 000000000..ffff7b258 --- /dev/null +++ b/dist/md/ic_assistant_navigation.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_assistant_navigation = void 0; +var ic_assistant_navigation = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 1C5.93 1 1 5.93 1 12s4.93 11 11 11 11-4.93 11-11S18.07 1 12 1zm3.57 16L12 15.42 8.43 17l-.37-.37L12 7l3.95 9.63-.38.37z" + }, + "children": [] + }] +}; +exports.ic_assistant_navigation = ic_assistant_navigation; \ No newline at end of file diff --git a/dist/md/ic_assistant_outline.js b/dist/md/ic_assistant_outline.js new file mode 100644 index 000000000..0149fd17b --- /dev/null +++ b/dist/md/ic_assistant_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_assistant_outline = void 0; +var ic_assistant_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h4l3 3 3-3h4c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 16h-4.83l-.59.59L12 20.17l-1.59-1.59-.58-.58H5V4h14v14zm-7-1l1.88-4.12L18 11l-4.12-1.88L12 5l-1.88 4.12L6 11l4.12 1.88z" + }, + "children": [] + }] +}; +exports.ic_assistant_outline = ic_assistant_outline; \ No newline at end of file diff --git a/dist/md/ic_assistant_photo.js b/dist/md/ic_assistant_photo.js new file mode 100644 index 000000000..42cb5cd28 --- /dev/null +++ b/dist/md/ic_assistant_photo.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_assistant_photo = void 0; +var ic_assistant_photo = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14.4 6L14 4H5v17h2v-7h5.6l.4 2h7V6z" + }, + "children": [] + }] +}; +exports.ic_assistant_photo = ic_assistant_photo; \ No newline at end of file diff --git a/dist/md/ic_assistant_photo_outline.js b/dist/md/ic_assistant_photo_outline.js new file mode 100644 index 000000000..74f5178f1 --- /dev/null +++ b/dist/md/ic_assistant_photo_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_assistant_photo_outline = void 0; +var ic_assistant_photo_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12.36 6l.08.39.32 1.61H18v6h-3.36l-.08-.39-.32-1.61H7V6h5.36M14 4H5v17h2v-7h5.6l.4 2h7V6h-5.6L14 4z" + }, + "children": [] + }] +}; +exports.ic_assistant_photo_outline = ic_assistant_photo_outline; \ No newline at end of file diff --git a/dist/md/ic_assistant_photo_twotone.js b/dist/md/ic_assistant_photo_twotone.js new file mode 100644 index 000000000..c6d3b634e --- /dev/null +++ b/dist/md/ic_assistant_photo_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_assistant_photo_twotone = void 0; +var ic_assistant_photo_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14.24 12l.4 2H18V8h-5.24l-.4-2H7v6z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 14h5.6l.4 2h7V6h-5.6L14 4H5v17h2v-7zm0-8h5.36l.4 2H18v6h-3.36l-.4-2H7V6z" + }, + "children": [] + }] +}; +exports.ic_assistant_photo_twotone = ic_assistant_photo_twotone; \ No newline at end of file diff --git a/dist/md/ic_assistant_twotone.js b/dist/md/ic_assistant_twotone.js new file mode 100644 index 000000000..4735b9dcc --- /dev/null +++ b/dist/md/ic_assistant_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_assistant_twotone = void 0; +var ic_assistant_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9.83 18l.59.59L12 20.17l1.59-1.59.58-.58H19V4H5v14h4.83zm.29-8.88L12 5l1.88 4.12L18 11l-4.12 1.88L12 17l-1.88-4.12L6 11l4.12-1.88z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 20h4l3 3 3-3h4c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2zM5 4h14v14h-4.83l-.59.59L12 20.17l-1.59-1.59-.58-.58H5V4zm7 13l1.88-4.12L18 11l-4.12-1.88L12 5l-1.88 4.12L6 11l4.12 1.88z" + }, + "children": [] + }] +}; +exports.ic_assistant_twotone = ic_assistant_twotone; \ No newline at end of file diff --git a/dist/md/ic_atm.js b/dist/md/ic_atm.js new file mode 100644 index 000000000..961a6e244 --- /dev/null +++ b/dist/md/ic_atm.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_atm = void 0; +var ic_atm = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8 9v1.5h2.25V15h1.5v-4.5H14V9zM6 9H3c-.55 0-1 .45-1 1v5h1.5v-1.5h2V15H7v-5c0-.55-.45-1-1-1zm-.5 3h-2v-1.5h2V12zM21 9h-4.5c-.55 0-1 .45-1 1v5H17v-4.5h1V14h1.5v-3.51h1V15H22v-5c0-.55-.45-1-1-1z" + }, + "children": [] + }] +}; +exports.ic_atm = ic_atm; \ No newline at end of file diff --git a/dist/md/ic_atm_outline.js b/dist/md/ic_atm_outline.js new file mode 100644 index 000000000..2021b05a2 --- /dev/null +++ b/dist/md/ic_atm_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_atm_outline = void 0; +var ic_atm_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8 9v1.5h2.25V15h1.5v-4.5H14V9H8zM6 9H3c-.55 0-1 .45-1 1v5h1.5v-1.5h2V15H7v-5c0-.55-.45-1-1-1zm-.5 3h-2v-1.5h2V12zM21 9h-4.5c-.55 0-1 .45-1 1v5H17v-4.5h1V14h1.5v-3.51h1V15H22v-5c0-.55-.45-1-1-1z" + }, + "children": [] + }] +}; +exports.ic_atm_outline = ic_atm_outline; \ No newline at end of file diff --git a/dist/md/ic_atm_twotone.js b/dist/md/ic_atm_twotone.js new file mode 100644 index 000000000..d477b5ea8 --- /dev/null +++ b/dist/md/ic_atm_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_atm_twotone = void 0; +var ic_atm_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3.5 13.5h2V15H7v-5c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v5h1.5v-1.5zm0-3h2V12h-2v-1.5zm13.5 0h1V14h1.5v-3.51h1V15H22v-5c0-.55-.45-1-1-1h-4.5c-.55 0-1 .45-1 1v5H17v-4.5zM10.25 15h1.5v-4.5H14V9H8v1.5h2.25z" + }, + "children": [] + }] +}; +exports.ic_atm_twotone = ic_atm_twotone; \ No newline at end of file diff --git a/dist/md/ic_attach_email.js b/dist/md/ic_attach_email.js new file mode 100644 index 000000000..36c4340de --- /dev/null +++ b/dist/md/ic_attach_email.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_attach_email = void 0; +var ic_attach_email = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M21,10V4c0-1.1-0.9-2-2-2H3C1.9,2,1.01,2.9,1.01,4L1,16c0,1.1,0.9,2,2,2h11v-5c0-1.66,1.34-3,3-3H21z M11,11L3,6V4l8,5 l8-5v2L11,11z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21,10V4c0-1.1-0.9-2-2-2H3C1.9,2,1.01,2.9,1.01,4L1,16c0,1.1,0.9,2,2,2h11v-5c0-1.66,1.34-3,3-3H21z M11,11L3,6V4l8,5 l8-5v2L11,11z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M21,14v4c0,1.1-0.9,2-2,2s-2-0.9-2-2v-4.5c0-0.28,0.22-0.5,0.5-0.5s0.5,0.22,0.5,0.5V18h2v-4.5c0-1.38-1.12-2.5-2.5-2.5 S15,12.12,15,13.5V18c0,2.21,1.79,4,4,4s4-1.79,4-4v-4H21z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21,14v4c0,1.1-0.9,2-2,2s-2-0.9-2-2v-4.5c0-0.28,0.22-0.5,0.5-0.5s0.5,0.22,0.5,0.5V18h2v-4.5c0-1.38-1.12-2.5-2.5-2.5 S15,12.12,15,13.5V18c0,2.21,1.79,4,4,4s4-1.79,4-4v-4H21z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_attach_email = ic_attach_email; \ No newline at end of file diff --git a/dist/md/ic_attach_email_outline.js b/dist/md/ic_attach_email_outline.js new file mode 100644 index 000000000..ba0ca94ca --- /dev/null +++ b/dist/md/ic_attach_email_outline.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_attach_email_outline = void 0; +var ic_attach_email_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M3,6l8,5l8-5v3h2V4c0-1.1-0.9-2-2-2H3C1.9,2,1.01,2.9,1.01,4L1,16c0,1.1,0.9,2,2,2h10v-2H3V6z M19,4l-8,5L3,4H19z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M3,6l8,5l8-5v3h2V4c0-1.1-0.9-2-2-2H3C1.9,2,1.01,2.9,1.01,4L1,16c0,1.1,0.9,2,2,2h10v-2H3V6z M19,4l-8,5L3,4H19z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M21,14v4c0,1.1-0.9,2-2,2s-2-0.9-2-2v-4.5c0-0.28,0.22-0.5,0.5-0.5s0.5,0.22,0.5,0.5V18h2v-4.5c0-1.38-1.12-2.5-2.5-2.5 S15,12.12,15,13.5V18c0,2.21,1.79,4,4,4s4-1.79,4-4v-4H21z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21,14v4c0,1.1-0.9,2-2,2s-2-0.9-2-2v-4.5c0-0.28,0.22-0.5,0.5-0.5s0.5,0.22,0.5,0.5V18h2v-4.5c0-1.38-1.12-2.5-2.5-2.5 S15,12.12,15,13.5V18c0,2.21,1.79,4,4,4s4-1.79,4-4v-4H21z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_attach_email_outline = ic_attach_email_outline; \ No newline at end of file diff --git a/dist/md/ic_attach_email_twotone.js b/dist/md/ic_attach_email_twotone.js new file mode 100644 index 000000000..661db827c --- /dev/null +++ b/dist/md/ic_attach_email_twotone.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_attach_email_twotone = void 0; +var ic_attach_email_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M3,6l8,5l8-5v3h2V4c0-1.1-0.9-2-2-2H3C1.9,2,1.01,2.9,1.01,4L1,16c0,1.1,0.9,2,2,2h10v-2H3V6z M19,4l-8,5L3,4H19z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M3,6l8,5l8-5v3h2V4c0-1.1-0.9-2-2-2H3C1.9,2,1.01,2.9,1.01,4L1,16c0,1.1,0.9,2,2,2h10v-2H3V6z M19,4l-8,5L3,4H19z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M21,14v4c0,1.1-0.9,2-2,2s-2-0.9-2-2v-4.5c0-0.28,0.22-0.5,0.5-0.5s0.5,0.22,0.5,0.5V18h2v-4.5c0-1.38-1.12-2.5-2.5-2.5 S15,12.12,15,13.5V18c0,2.21,1.79,4,4,4s4-1.79,4-4v-4H21z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21,14v4c0,1.1-0.9,2-2,2s-2-0.9-2-2v-4.5c0-0.28,0.22-0.5,0.5-0.5s0.5,0.22,0.5,0.5V18h2v-4.5c0-1.38-1.12-2.5-2.5-2.5 S15,12.12,15,13.5V18c0,2.21,1.79,4,4,4s4-1.79,4-4v-4H21z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_attach_email_twotone = ic_attach_email_twotone; \ No newline at end of file diff --git a/dist/md/ic_attach_file.js b/dist/md/ic_attach_file.js new file mode 100644 index 000000000..17efc6afc --- /dev/null +++ b/dist/md/ic_attach_file.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_attach_file = void 0; +var ic_attach_file = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16.5 6v11.5c0 2.21-1.79 4-4 4s-4-1.79-4-4V5c0-1.38 1.12-2.5 2.5-2.5s2.5 1.12 2.5 2.5v10.5c0 .55-.45 1-1 1s-1-.45-1-1V6H10v9.5c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5V5c0-2.21-1.79-4-4-4S7 2.79 7 5v12.5c0 3.04 2.46 5.5 5.5 5.5s5.5-2.46 5.5-5.5V6h-1.5z" + }, + "children": [] + }] +}; +exports.ic_attach_file = ic_attach_file; \ No newline at end of file diff --git a/dist/md/ic_attach_file_outline.js b/dist/md/ic_attach_file_outline.js new file mode 100644 index 000000000..556d83056 --- /dev/null +++ b/dist/md/ic_attach_file_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_attach_file_outline = void 0; +var ic_attach_file_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16.5 6v11.5c0 2.21-1.79 4-4 4s-4-1.79-4-4V5c0-1.38 1.12-2.5 2.5-2.5s2.5 1.12 2.5 2.5v10.5c0 .55-.45 1-1 1s-1-.45-1-1V6H10v9.5c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5V5c0-2.21-1.79-4-4-4S7 2.79 7 5v12.5c0 3.04 2.46 5.5 5.5 5.5s5.5-2.46 5.5-5.5V6h-1.5z" + }, + "children": [] + }] +}; +exports.ic_attach_file_outline = ic_attach_file_outline; \ No newline at end of file diff --git a/dist/md/ic_attach_file_twotone.js b/dist/md/ic_attach_file_twotone.js new file mode 100644 index 000000000..6b27696f9 --- /dev/null +++ b/dist/md/ic_attach_file_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_attach_file_twotone = void 0; +var ic_attach_file_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12.5 23c3.04 0 5.5-2.46 5.5-5.5V6h-1.5v11.5c0 2.21-1.79 4-4 4s-4-1.79-4-4V5c0-1.38 1.12-2.5 2.5-2.5s2.5 1.12 2.5 2.5v10.5c0 .55-.45 1-1 1s-1-.45-1-1V6H10v9.5c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5V5c0-2.21-1.79-4-4-4S7 2.79 7 5v12.5c0 3.04 2.46 5.5 5.5 5.5z" + }, + "children": [] + }] +}; +exports.ic_attach_file_twotone = ic_attach_file_twotone; \ No newline at end of file diff --git a/dist/md/ic_attach_money.js b/dist/md/ic_attach_money.js new file mode 100644 index 000000000..ae3e0a228 --- /dev/null +++ b/dist/md/ic_attach_money.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_attach_money = void 0; +var ic_attach_money = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.8 10.9c-2.27-.59-3-1.2-3-2.15 0-1.09 1.01-1.85 2.7-1.85 1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-1.94.42-3.5 1.68-3.5 3.61 0 2.31 1.91 3.46 4.7 4.13 2.5.6 3 1.48 3 2.41 0 .69-.49 1.79-2.7 1.79-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c1.95-.37 3.5-1.5 3.5-3.55 0-2.84-2.43-3.81-4.7-4.4z" + }, + "children": [] + }] +}; +exports.ic_attach_money = ic_attach_money; \ No newline at end of file diff --git a/dist/md/ic_attach_money_outline.js b/dist/md/ic_attach_money_outline.js new file mode 100644 index 000000000..3d329e4b9 --- /dev/null +++ b/dist/md/ic_attach_money_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_attach_money_outline = void 0; +var ic_attach_money_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.8 10.9c-2.27-.59-3-1.2-3-2.15 0-1.09 1.01-1.85 2.7-1.85 1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-1.94.42-3.5 1.68-3.5 3.61 0 2.31 1.91 3.46 4.7 4.13 2.5.6 3 1.48 3 2.41 0 .69-.49 1.79-2.7 1.79-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c1.95-.37 3.5-1.5 3.5-3.55 0-2.84-2.43-3.81-4.7-4.4z" + }, + "children": [] + }] +}; +exports.ic_attach_money_outline = ic_attach_money_outline; \ No newline at end of file diff --git a/dist/md/ic_attach_money_twotone.js b/dist/md/ic_attach_money_twotone.js new file mode 100644 index 000000000..fbdd1055b --- /dev/null +++ b/dist/md/ic_attach_money_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_attach_money_twotone = void 0; +var ic_attach_money_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.5 17.1c-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c1.95-.37 3.5-1.5 3.5-3.55 0-2.84-2.43-3.81-4.7-4.4-2.27-.59-3-1.2-3-2.15 0-1.09 1.01-1.85 2.7-1.85 1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-1.94.42-3.5 1.68-3.5 3.61 0 2.31 1.91 3.46 4.7 4.13 2.5.6 3 1.48 3 2.41 0 .69-.49 1.79-2.7 1.79z" + }, + "children": [] + }] +}; +exports.ic_attach_money_twotone = ic_attach_money_twotone; \ No newline at end of file diff --git a/dist/md/ic_attachment.js b/dist/md/ic_attachment.js new file mode 100644 index 000000000..0814b5b06 --- /dev/null +++ b/dist/md/ic_attachment.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_attachment = void 0; +var ic_attachment = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M2 12.5C2 9.46 4.46 7 7.5 7H18c2.21 0 4 1.79 4 4s-1.79 4-4 4H9.5C8.12 15 7 13.88 7 12.5S8.12 10 9.5 10H17v2H9.41c-.55 0-.55 1 0 1H18c1.1 0 2-.9 2-2s-.9-2-2-2H7.5C5.57 9 4 10.57 4 12.5S5.57 16 7.5 16H17v2H7.5C4.46 18 2 15.54 2 12.5z" + }, + "children": [] + }] +}; +exports.ic_attachment = ic_attachment; \ No newline at end of file diff --git a/dist/md/ic_attachment_outline.js b/dist/md/ic_attachment_outline.js new file mode 100644 index 000000000..0ba2ea8e7 --- /dev/null +++ b/dist/md/ic_attachment_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_attachment_outline = void 0; +var ic_attachment_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18.5 16H7c-2.21 0-4-1.79-4-4s1.79-4 4-4h12.5c1.38 0 2.5 1.12 2.5 2.5S20.88 13 19.5 13H9c-.55 0-1-.45-1-1s.45-1 1-1h9.5V9.5H9c-1.38 0-2.5 1.12-2.5 2.5s1.12 2.5 2.5 2.5h10.5c2.21 0 4-1.79 4-4s-1.79-4-4-4H7c-3.04 0-5.5 2.46-5.5 5.5s2.46 5.5 5.5 5.5h11.5V16z" + }, + "children": [] + }] +}; +exports.ic_attachment_outline = ic_attachment_outline; \ No newline at end of file diff --git a/dist/md/ic_attachment_twotone.js b/dist/md/ic_attachment_twotone.js new file mode 100644 index 000000000..077f7ee50 --- /dev/null +++ b/dist/md/ic_attachment_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_attachment_twotone = void 0; +var ic_attachment_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18.5 16H7c-2.21 0-4-1.79-4-4s1.79-4 4-4h12.5c1.38 0 2.5 1.12 2.5 2.5S20.88 13 19.5 13H9c-.55 0-1-.45-1-1s.45-1 1-1h9.5V9.5H9c-1.38 0-2.5 1.12-2.5 2.5s1.12 2.5 2.5 2.5h10.5c2.21 0 4-1.79 4-4s-1.79-4-4-4H7c-3.04 0-5.5 2.46-5.5 5.5s2.46 5.5 5.5 5.5h11.5V16z" + }, + "children": [] + }] +}; +exports.ic_attachment_twotone = ic_attachment_twotone; \ No newline at end of file diff --git a/dist/md/ic_attractions.js b/dist/md/ic_attractions.js new file mode 100644 index 000000000..3ed87372e --- /dev/null +++ b/dist/md/ic_attractions.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_attractions = void 0; +var ic_attractions = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M10.43,18.75C10.8,18.29,11.37,18,12,18c0.63,0,1.19,0.29,1.56,0.75c0.39-0.09,0.76-0.21,1.12-0.36l-1.42-3.18 c-0.39,0.15-0.82,0.23-1.26,0.23c-0.46,0-0.9-0.09-1.3-0.25l-1.43,3.19C9.65,18.54,10.03,18.67,10.43,18.75z M5.15,10 c-0.16,0.59-0.25,1.21-0.25,1.85c0,0.75,0.12,1.47,0.33,2.15c0.63,0.05,1.22,0.4,1.56,0.99c0.33,0.57,0.35,1.23,0.11,1.79 c0.27,0.27,0.56,0.53,0.87,0.76l1.52-3.39v0c-0.47-0.58-0.75-1.32-0.75-2.13c0-1.89,1.55-3.41,3.46-3.41 c1.91,0,3.46,1.53,3.46,3.41c0,0.82-0.29,1.57-0.78,2.16l1.5,3.35c0.32-0.24,0.62-0.5,0.9-0.79c-0.22-0.55-0.2-1.2,0.12-1.75 c0.33-0.57,0.9-0.92,1.52-0.99c0.22-0.68,0.34-1.41,0.34-2.16c0-0.64-0.09-1.27-0.25-1.86c-0.64-0.04-1.26-0.39-1.6-1 c-0.36-0.62-0.35-1.36-0.03-1.95c-0.91-0.98-2.1-1.71-3.44-2.05C13.39,5.6,12.74,6,12,6c-0.74,0-1.39-0.41-1.74-1.01 C8.92,5.33,7.73,6.04,6.82,7.02C7.15,7.62,7.17,8.37,6.8,9C6.45,9.62,5.81,9.97,5.15,10z M3.85,9.58C3.07,8.98,2.83,7.88,3.34,7 c0.51-0.88,1.58-1.23,2.49-0.85c1.11-1.17,2.56-2.03,4.18-2.42C10.15,2.75,10.99,2,12,2c1.01,0,1.85,0.75,1.98,1.73 c1.63,0.39,3.07,1.24,4.18,2.42c0.91-0.38,1.99-0.03,2.49,0.85c0.51,0.88,0.27,1.98-0.51,2.58c0.23,0.77,0.35,1.58,0.35,2.42 s-0.12,1.65-0.35,2.42c0.78,0.6,1.02,1.7,0.51,2.58c-0.51,0.88-1.58,1.23-2.49,0.85c-0.4,0.43-0.85,0.81-1.34,1.15l1.34,3H16.3 l-0.97-2.17c-0.43,0.18-0.88,0.33-1.34,0.44C13.85,21.25,13.01,22,12,22c-1.01,0-1.85-0.75-1.98-1.73 C9.54,20.15,9.08,20,8.64,19.81L7.66,22H5.78l1.36-3.03c-0.47-0.33-0.91-0.71-1.3-1.12C4.92,18.23,3.85,17.88,3.34,17 c-0.51-0.88-0.27-1.98,0.51-2.58C3.62,13.65,3.5,12.84,3.5,12S3.62,10.35,3.85,9.58z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M10.43,18.75C10.8,18.29,11.37,18,12,18c0.63,0,1.19,0.29,1.56,0.75c0.39-0.09,0.76-0.21,1.12-0.36l-1.42-3.18 c-0.39,0.15-0.82,0.23-1.26,0.23c-0.46,0-0.9-0.09-1.3-0.25l-1.43,3.19C9.65,18.54,10.03,18.67,10.43,18.75z M5.15,10 c-0.16,0.59-0.25,1.21-0.25,1.85c0,0.75,0.12,1.47,0.33,2.15c0.63,0.05,1.22,0.4,1.56,0.99c0.33,0.57,0.35,1.23,0.11,1.79 c0.27,0.27,0.56,0.53,0.87,0.76l1.52-3.39v0c-0.47-0.58-0.75-1.32-0.75-2.13c0-1.89,1.55-3.41,3.46-3.41 c1.91,0,3.46,1.53,3.46,3.41c0,0.82-0.29,1.57-0.78,2.16l1.5,3.35c0.32-0.24,0.62-0.5,0.9-0.79c-0.22-0.55-0.2-1.2,0.12-1.75 c0.33-0.57,0.9-0.92,1.52-0.99c0.22-0.68,0.34-1.41,0.34-2.16c0-0.64-0.09-1.27-0.25-1.86c-0.64-0.04-1.26-0.39-1.6-1 c-0.36-0.62-0.35-1.36-0.03-1.95c-0.91-0.98-2.1-1.71-3.44-2.05C13.39,5.6,12.74,6,12,6c-0.74,0-1.39-0.41-1.74-1.01 C8.92,5.33,7.73,6.04,6.82,7.02C7.15,7.62,7.17,8.37,6.8,9C6.45,9.62,5.81,9.97,5.15,10z M3.85,9.58C3.07,8.98,2.83,7.88,3.34,7 c0.51-0.88,1.58-1.23,2.49-0.85c1.11-1.17,2.56-2.03,4.18-2.42C10.15,2.75,10.99,2,12,2c1.01,0,1.85,0.75,1.98,1.73 c1.63,0.39,3.07,1.24,4.18,2.42c0.91-0.38,1.99-0.03,2.49,0.85c0.51,0.88,0.27,1.98-0.51,2.58c0.23,0.77,0.35,1.58,0.35,2.42 s-0.12,1.65-0.35,2.42c0.78,0.6,1.02,1.7,0.51,2.58c-0.51,0.88-1.58,1.23-2.49,0.85c-0.4,0.43-0.85,0.81-1.34,1.15l1.34,3H16.3 l-0.97-2.17c-0.43,0.18-0.88,0.33-1.34,0.44C13.85,21.25,13.01,22,12,22c-1.01,0-1.85-0.75-1.98-1.73 C9.54,20.15,9.08,20,8.64,19.81L7.66,22H5.78l1.36-3.03c-0.47-0.33-0.91-0.71-1.3-1.12C4.92,18.23,3.85,17.88,3.34,17 c-0.51-0.88-0.27-1.98,0.51-2.58C3.62,13.65,3.5,12.84,3.5,12S3.62,10.35,3.85,9.58z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_attractions = ic_attractions; \ No newline at end of file diff --git a/dist/md/ic_attribution_outline.js b/dist/md/ic_attribution_outline.js new file mode 100644 index 000000000..3bc798251 --- /dev/null +++ b/dist/md/ic_attribution_outline.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_attribution_outline = void 0; +var ic_attribution_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 8.5c-.91 0-2.75.46-2.75 1.38v4.62h1.5V19h2.5v-4.5h1.5V9.88c0-.91-1.84-1.38-2.75-1.38zM12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "6.5", + "r": "1.5" + }, + "children": [] + }] +}; +exports.ic_attribution_outline = ic_attribution_outline; \ No newline at end of file diff --git a/dist/md/ic_attribution_twotone.js b/dist/md/ic_attribution_twotone.js new file mode 100644 index 000000000..d4a7645fb --- /dev/null +++ b/dist/md/ic_attribution_twotone.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_attribution_twotone = void 0; +var ic_attribution_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 1c.83 0 1.5.67 1.5 1.5S12.83 8 12 8s-1.5-.67-1.5-1.5S11.17 5 12 5zm2.75 9.5h-1.5V19h-2.5v-4.5h-1.5V9.88c0-.92 1.84-1.38 2.75-1.38s2.75.47 2.75 1.38v4.62z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm0-11.5c-.91 0-2.75.46-2.75 1.38v4.62h1.5V19h2.5v-4.5h1.5V9.88c0-.91-1.84-1.38-2.75-1.38z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "6.5", + "r": "1.5" + }, + "children": [] + }] +}; +exports.ic_attribution_twotone = ic_attribution_twotone; \ No newline at end of file diff --git a/dist/md/ic_audiotrack.js b/dist/md/ic_audiotrack.js new file mode 100644 index 000000000..bb1dadc76 --- /dev/null +++ b/dist/md/ic_audiotrack.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_audiotrack = void 0; +var ic_audiotrack = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 3v9.28c-.47-.17-.97-.28-1.5-.28C8.01 12 6 14.01 6 16.5S8.01 21 10.5 21c2.31 0 4.2-1.75 4.45-4H15V6h4V3h-7z" + }, + "children": [] + }] +}; +exports.ic_audiotrack = ic_audiotrack; \ No newline at end of file diff --git a/dist/md/ic_audiotrack_outline.js b/dist/md/ic_audiotrack_outline.js new file mode 100644 index 000000000..3a5a031ed --- /dev/null +++ b/dist/md/ic_audiotrack_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_audiotrack_outline = void 0; +var ic_audiotrack_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 3v10.55c-.59-.34-1.27-.55-2-.55-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4V7h4V3h-6zm-2 16c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" + }, + "children": [] + }] +}; +exports.ic_audiotrack_outline = ic_audiotrack_outline; \ No newline at end of file diff --git a/dist/md/ic_audiotrack_twotone.js b/dist/md/ic_audiotrack_twotone.js new file mode 100644 index 000000000..954f0fa83 --- /dev/null +++ b/dist/md/ic_audiotrack_twotone.js @@ -0,0 +1,33 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_audiotrack_twotone = void 0; +var ic_audiotrack_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "10", + "cy": "17", + "opacity": ".3", + "r": "2" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 21c2.21 0 4-1.79 4-4V7h4V3h-6v10.55c-.59-.34-1.27-.55-2-.55-2.21 0-4 1.79-4 4s1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2z" + }, + "children": [] + }] +}; +exports.ic_audiotrack_twotone = ic_audiotrack_twotone; \ No newline at end of file diff --git a/dist/md/ic_auto_awesome.js b/dist/md/ic_auto_awesome.js new file mode 100644 index 000000000..645201578 --- /dev/null +++ b/dist/md/ic_auto_awesome.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_auto_awesome = void 0; +var ic_auto_awesome = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 9l1.25-2.75L23 5l-2.75-1.25L19 1l-1.25 2.75L15 5l2.75 1.25L19 9zm-7.5.5L9 4 6.5 9.5 1 12l5.5 2.5L9 20l2.5-5.5L17 12l-5.5-2.5zM19 15l-1.25 2.75L15 19l2.75 1.25L19 23l1.25-2.75L23 19l-2.75-1.25L19 15z" + }, + "children": [] + }] +}; +exports.ic_auto_awesome = ic_auto_awesome; \ No newline at end of file diff --git a/dist/md/ic_auto_awesome_mosaic.js b/dist/md/ic_auto_awesome_mosaic.js new file mode 100644 index 000000000..e908224f0 --- /dev/null +++ b/dist/md/ic_auto_awesome_mosaic.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_auto_awesome_mosaic = void 0; +var ic_auto_awesome_mosaic = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 5v14c0 1.1.89 2 2 2h6V3H5c-1.11 0-2 .9-2 2zm16-2h-6v8h8V5c0-1.1-.9-2-2-2zm-6 18h6c1.1 0 2-.9 2-2v-6h-8v8z" + }, + "children": [] + }] +}; +exports.ic_auto_awesome_mosaic = ic_auto_awesome_mosaic; \ No newline at end of file diff --git a/dist/md/ic_auto_awesome_motion.js b/dist/md/ic_auto_awesome_motion.js new file mode 100644 index 000000000..773a2a600 --- /dev/null +++ b/dist/md/ic_auto_awesome_motion.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_auto_awesome_motion = void 0; +var ic_auto_awesome_motion = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 2H4c-1.11 0-2 .9-2 2v10h2V4h10V2zm4 4H8c-1.11 0-2 .9-2 2v10h2V8h10V6zm2 4h-8c-1.11 0-2 .9-2 2v8c0 1.1.89 2 2 2h8c1.1 0 2-.9 2-2v-8c0-1.1-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_auto_awesome_motion = ic_auto_awesome_motion; \ No newline at end of file diff --git a/dist/md/ic_auto_delete.js b/dist/md/ic_auto_delete.js new file mode 100644 index 000000000..f09dcf863 --- /dev/null +++ b/dist/md/ic_auto_delete.js @@ -0,0 +1,79 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_auto_delete = void 0; +var ic_auto_delete = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "15,2 11.5,2 10.5,1 5.5,1 4.5,2 1,2 1,4 15,4" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "15,2 11.5,2 10.5,1 5.5,1 4.5,2 1,2 1,4 15,4" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M16,9c-0.7,0-1.37,0.1-2,0.29V5H2v12c0,1.1,0.9,2,2,2h5.68c1.12,2.36,3.53,4,6.32,4c3.87,0,7-3.13,7-7 C23,12.13,19.87,9,16,9z M16,21c-2.76,0-5-2.24-5-5s2.24-5,5-5s5,2.24,5,5S18.76,21,16,21z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M16,9c-0.7,0-1.37,0.1-2,0.29V5H2v12c0,1.1,0.9,2,2,2h5.68c1.12,2.36,3.53,4,6.32,4c3.87,0,7-3.13,7-7 C23,12.13,19.87,9,16,9z M16,21c-2.76,0-5-2.24-5-5s2.24-5,5-5s5,2.24,5,5S18.76,21,16,21z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "16.5,12 15,12 15,17 18.6,19.1 19.4,17.9 16.5,16.2" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "16.5,12 15,12 15,17 18.6,19.1 19.4,17.9 16.5,16.2" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_auto_delete = ic_auto_delete; \ No newline at end of file diff --git a/dist/md/ic_auto_delete_outline.js b/dist/md/ic_auto_delete_outline.js new file mode 100644 index 000000000..7f2cd162d --- /dev/null +++ b/dist/md/ic_auto_delete_outline.js @@ -0,0 +1,79 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_auto_delete_outline = void 0; +var ic_auto_delete_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "15,2 11.5,2 10.5,1 5.5,1 4.5,2 1,2 1,4 15,4" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "15,2 11.5,2 10.5,1 5.5,1 4.5,2 1,2 1,4 15,4" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M16,9c-0.7,0-1.37,0.1-2,0.29V5H2v12c0,1.1,0.9,2,2,2h5.68c1.12,2.36,3.53,4,6.32,4c3.87,0,7-3.13,7-7 C23,12.13,19.87,9,16,9z M9,16c0,0.34,0.03,0.67,0.08,1H4V7h8v3.26C10.19,11.53,9,13.62,9,16z M16,21c-2.76,0-5-2.24-5-5 s2.24-5,5-5s5,2.24,5,5S18.76,21,16,21z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M16,9c-0.7,0-1.37,0.1-2,0.29V5H2v12c0,1.1,0.9,2,2,2h5.68c1.12,2.36,3.53,4,6.32,4c3.87,0,7-3.13,7-7 C23,12.13,19.87,9,16,9z M9,16c0,0.34,0.03,0.67,0.08,1H4V7h8v3.26C10.19,11.53,9,13.62,9,16z M16,21c-2.76,0-5-2.24-5-5 s2.24-5,5-5s5,2.24,5,5S18.76,21,16,21z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "16.5,12 15,12 15,17 18.6,19.1 19.4,17.9 16.5,16.2" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "16.5,12 15,12 15,17 18.6,19.1 19.4,17.9 16.5,16.2" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_auto_delete_outline = ic_auto_delete_outline; \ No newline at end of file diff --git a/dist/md/ic_auto_delete_twotone.js b/dist/md/ic_auto_delete_twotone.js new file mode 100644 index 000000000..b3da7f49f --- /dev/null +++ b/dist/md/ic_auto_delete_twotone.js @@ -0,0 +1,93 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_auto_delete_twotone = void 0; +var ic_auto_delete_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,7H4v10h5.08C9.03,16.67,9,16.34,9,16c0-2.38,1.19-4.47,3-5.74V7z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,7H4v10h5.08C9.03,16.67,9,16.34,9,16c0-2.38,1.19-4.47,3-5.74V7z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "15,2 11.5,2 10.5,1 5.5,1 4.5,2 1,2 1,4 15,4" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "15,2 11.5,2 10.5,1 5.5,1 4.5,2 1,2 1,4 15,4" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M16,9c-0.7,0-1.37,0.1-2,0.29V5H2v12c0,1.1,0.9,2,2,2h5.68c1.12,2.36,3.53,4,6.32,4c3.87,0,7-3.13,7-7 C23,12.13,19.87,9,16,9z M9,16c0,0.34,0.03,0.67,0.08,1H4V7h8v3.26C10.19,11.53,9,13.62,9,16z M16,21c-2.76,0-5-2.24-5-5 s2.24-5,5-5s5,2.24,5,5S18.76,21,16,21z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M16,9c-0.7,0-1.37,0.1-2,0.29V5H2v12c0,1.1,0.9,2,2,2h5.68c1.12,2.36,3.53,4,6.32,4c3.87,0,7-3.13,7-7 C23,12.13,19.87,9,16,9z M9,16c0,0.34,0.03,0.67,0.08,1H4V7h8v3.26C10.19,11.53,9,13.62,9,16z M16,21c-2.76,0-5-2.24-5-5 s2.24-5,5-5s5,2.24,5,5S18.76,21,16,21z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "16.5,12 15,12 15,17 18.6,19.1 19.4,17.9 16.5,16.2" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "16.5,12 15,12 15,17 18.6,19.1 19.4,17.9 16.5,16.2" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_auto_delete_twotone = ic_auto_delete_twotone; \ No newline at end of file diff --git a/dist/md/ic_auto_fix_high.js b/dist/md/ic_auto_fix_high.js new file mode 100644 index 000000000..598ebd736 --- /dev/null +++ b/dist/md/ic_auto_fix_high.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_auto_fix_high = void 0; +var ic_auto_fix_high = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7.5 5.6L10 7 8.6 4.5 10 2 7.5 3.4 5 2l1.4 2.5L5 7zm12 9.8L17 14l1.4 2.5L17 19l2.5-1.4L22 19l-1.4-2.5L22 14zM22 2l-2.5 1.4L17 2l1.4 2.5L17 7l2.5-1.4L22 7l-1.4-2.5zm-7.63 5.29c-.39-.39-1.02-.39-1.41 0L1.29 18.96c-.39.39-.39 1.02 0 1.41l2.34 2.34c.39.39 1.02.39 1.41 0L16.7 11.05c.39-.39.39-1.02 0-1.41l-2.33-2.35zm-1.03 5.49l-2.12-2.12 2.44-2.44 2.12 2.12-2.44 2.44z" + }, + "children": [] + }] +}; +exports.ic_auto_fix_high = ic_auto_fix_high; \ No newline at end of file diff --git a/dist/md/ic_auto_fix_normal.js b/dist/md/ic_auto_fix_normal.js new file mode 100644 index 000000000..e32f2b76e --- /dev/null +++ b/dist/md/ic_auto_fix_normal.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_auto_fix_normal = void 0; +var ic_auto_fix_normal = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 2l-2.5 1.4L17 2l1.4 2.5L17 7l2.5-1.4L22 7l-1.4-2.5zm-7.63 5.29c-.39-.39-1.02-.39-1.41 0L1.29 18.96c-.39.39-.39 1.02 0 1.41l2.34 2.34c.39.39 1.02.39 1.41 0L16.7 11.05c.39-.39.39-1.02 0-1.41l-2.33-2.35zm-1.03 5.49l-2.12-2.12 2.44-2.44 2.12 2.12-2.44 2.44z" + }, + "children": [] + }] +}; +exports.ic_auto_fix_normal = ic_auto_fix_normal; \ No newline at end of file diff --git a/dist/md/ic_auto_fix_off.js b/dist/md/ic_auto_fix_off.js new file mode 100644 index 000000000..92a8ed4b3 --- /dev/null +++ b/dist/md/ic_auto_fix_off.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_auto_fix_off = void 0; +var ic_auto_fix_off = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0zm0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M23 1l-2.5 1.4L18 1l1.4 2.5L18 6l2.5-1.4L23 6l-1.4-2.5L23 1zm-8.34 6.22l2.12 2.12-2.44 2.44.81.81 2.55-2.55c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0L11.4 8.84l.81.81 2.45-2.43zm-.78 6.65l-3.75-3.75-6.86-6.86L2 4.53l6.86 6.86-6.57 6.57c-.39.39-.39 1.02 0 1.41l2.34 2.34c.39.39 1.02.39 1.41 0l6.57-6.57L19.47 22l1.27-1.27-6.86-6.86z" + }, + "children": [] + }] +}; +exports.ic_auto_fix_off = ic_auto_fix_off; \ No newline at end of file diff --git a/dist/md/ic_auto_stories.js b/dist/md/ic_auto_stories.js new file mode 100644 index 000000000..e0159b23c --- /dev/null +++ b/dist/md/ic_auto_stories.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_auto_stories = void 0; +var ic_auto_stories = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 1l-5 5v11l5-4.5V1zM1 6v14.65c0 .25.25.5.5.5.1 0 .15-.05.25-.05C3.1 20.45 5.05 20 6.5 20c1.95 0 4.05.4 5.5 1.5V6c-1.45-1.1-3.55-1.5-5.5-1.5S2.45 4.9 1 6zm22 13.5V6c-.6-.45-1.25-.75-2-1v13.5c-1.1-.35-2.3-.5-3.5-.5-1.7 0-4.15.65-5.5 1.5v2c1.35-.85 3.8-1.5 5.5-1.5 1.65 0 3.35.3 4.75 1.05.1.05.15.05.25.05.25 0 .5-.25.5-.5v-1.1z" + }, + "children": [] + }] +}; +exports.ic_auto_stories = ic_auto_stories; \ No newline at end of file diff --git a/dist/md/ic_autorenew.js b/dist/md/ic_autorenew.js new file mode 100644 index 000000000..e8b4ac36a --- /dev/null +++ b/dist/md/ic_autorenew.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_autorenew = void 0; +var ic_autorenew = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 6v3l4-4-4-4v3c-4.42 0-8 3.58-8 8 0 1.57.46 3.03 1.24 4.26L6.7 14.8c-.45-.83-.7-1.79-.7-2.8 0-3.31 2.69-6 6-6zm6.76 1.74L17.3 9.2c.44.84.7 1.79.7 2.8 0 3.31-2.69 6-6 6v-3l-4 4 4 4v-3c4.42 0 8-3.58 8-8 0-1.57-.46-3.03-1.24-4.26z" + }, + "children": [] + }] +}; +exports.ic_autorenew = ic_autorenew; \ No newline at end of file diff --git a/dist/md/ic_autorenew_outline.js b/dist/md/ic_autorenew_outline.js new file mode 100644 index 000000000..37362e19c --- /dev/null +++ b/dist/md/ic_autorenew_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_autorenew_outline = void 0; +var ic_autorenew_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 6v3l4-4-4-4v3c-4.42 0-8 3.58-8 8 0 1.57.46 3.03 1.24 4.26L6.7 14.8c-.45-.83-.7-1.79-.7-2.8 0-3.31 2.69-6 6-6zm6.76 1.74L17.3 9.2c.44.84.7 1.79.7 2.8 0 3.31-2.69 6-6 6v-3l-4 4 4 4v-3c4.42 0 8-3.58 8-8 0-1.57-.46-3.03-1.24-4.26z" + }, + "children": [] + }] +}; +exports.ic_autorenew_outline = ic_autorenew_outline; \ No newline at end of file diff --git a/dist/md/ic_autorenew_twotone.js b/dist/md/ic_autorenew_twotone.js new file mode 100644 index 000000000..05d92ae70 --- /dev/null +++ b/dist/md/ic_autorenew_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_autorenew_twotone = void 0; +var ic_autorenew_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 6v3l4-4-4-4v3c-4.42 0-8 3.58-8 8 0 1.57.46 3.03 1.24 4.26L6.7 14.8c-.45-.83-.7-1.79-.7-2.8 0-3.31 2.69-6 6-6zm6.76 1.74L17.3 9.2c.44.84.7 1.79.7 2.8 0 3.31-2.69 6-6 6v-3l-4 4 4 4v-3c4.42 0 8-3.58 8-8 0-1.57-.46-3.03-1.24-4.26z" + }, + "children": [] + }] +}; +exports.ic_autorenew_twotone = ic_autorenew_twotone; \ No newline at end of file diff --git a/dist/md/ic_av_timer.js b/dist/md/ic_av_timer.js new file mode 100644 index 000000000..6d13890b8 --- /dev/null +++ b/dist/md/ic_av_timer.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_av_timer = void 0; +var ic_av_timer = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 17c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1-1 .45-1 1zm0-14v4h2V5.08c3.39.49 6 3.39 6 6.92 0 3.87-3.13 7-7 7s-7-3.13-7-7c0-1.68.59-3.22 1.58-4.42L12 13l1.41-1.41-6.8-6.8v.02C4.42 6.45 3 9.05 3 12c0 4.97 4.02 9 9 9 4.97 0 9-4.03 9-9s-4.03-9-9-9h-1zm7 9c0-.55-.45-1-1-1s-1 .45-1 1 .45 1 1 1 1-.45 1-1zM6 12c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1-1 .45-1 1z" + }, + "children": [] + }] +}; +exports.ic_av_timer = ic_av_timer; \ No newline at end of file diff --git a/dist/md/ic_av_timer_outline.js b/dist/md/ic_av_timer_outline.js new file mode 100644 index 000000000..f4b1dbf3d --- /dev/null +++ b/dist/md/ic_av_timer_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_av_timer_outline = void 0; +var ic_av_timer_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 17c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1-1 .45-1 1zm0-14v4h2V5.08c3.39.49 6 3.39 6 6.92 0 3.87-3.13 7-7 7s-7-3.13-7-7c0-1.68.59-3.22 1.58-4.42L12 13l1.41-1.41-6.8-6.8v.02C4.42 6.45 3 9.05 3 12c0 4.97 4.02 9 9 9 4.97 0 9-4.03 9-9s-4.03-9-9-9h-1zm7 9c0-.55-.45-1-1-1s-1 .45-1 1 .45 1 1 1 1-.45 1-1zM6 12c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1-1 .45-1 1z" + }, + "children": [] + }] +}; +exports.ic_av_timer_outline = ic_av_timer_outline; \ No newline at end of file diff --git a/dist/md/ic_av_timer_twotone.js b/dist/md/ic_av_timer_twotone.js new file mode 100644 index 000000000..dce693b50 --- /dev/null +++ b/dist/md/ic_av_timer_twotone.js @@ -0,0 +1,48 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_av_timer_twotone = void 0; +var ic_av_timer_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 21c4.97 0 9-4.03 9-9s-4.03-9-9-9h-1v4h2V5.08c3.39.49 6 3.39 6 6.92 0 3.87-3.13 7-7 7s-7-3.13-7-7c0-1.68.59-3.22 1.58-4.42L12 13l1.41-1.41-6.8-6.8v.02C4.42 6.45 3 9.05 3 12c0 4.97 4.02 9 9 9z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "17", + "r": "1" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "17", + "cy": "12", + "r": "1" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "7", + "cy": "12", + "r": "1" + }, + "children": [] + }] +}; +exports.ic_av_timer_twotone = ic_av_timer_twotone; \ No newline at end of file diff --git a/dist/md/ic_baby_changing_station.js b/dist/md/ic_baby_changing_station.js new file mode 100644 index 000000000..53f2e67b3 --- /dev/null +++ b/dist/md/ic_baby_changing_station.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_baby_changing_station = void 0; +var ic_baby_changing_station = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M14,8v2h-3L8.31,8.82L7,12.75V22H3V12l1.58-4.63C4.96,6.25,6.22,5.69,7.3,6.18l4.15,1.83L14,8z M8,1C6.9,1,6,1.9,6,3 s0.9,2,2,2s2-0.9,2-2S9.1,1,8,1z M9,19h12v-2H9V19z M19.5,16c0.83,0,1.5-0.67,1.5-1.5c0-0.83-0.67-1.5-1.5-1.5S18,13.67,18,14.5 C18,15.33,18.67,16,19.5,16z M13,12c0-0.55-0.45-1-1-1H9v2h2v1c0,1.1,0.9,2,2,2h2c1.1,0,2-0.9,2-2v-3h-2v2h-2V12z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14,8v2h-3L8.31,8.82L7,12.75V22H3V12l1.58-4.63C4.96,6.25,6.22,5.69,7.3,6.18l4.15,1.83L14,8z M8,1C6.9,1,6,1.9,6,3 s0.9,2,2,2s2-0.9,2-2S9.1,1,8,1z M9,19h12v-2H9V19z M19.5,16c0.83,0,1.5-0.67,1.5-1.5c0-0.83-0.67-1.5-1.5-1.5S18,13.67,18,14.5 C18,15.33,18.67,16,19.5,16z M13,12c0-0.55-0.45-1-1-1H9v2h2v1c0,1.1,0.9,2,2,2h2c1.1,0,2-0.9,2-2v-3h-2v2h-2V12z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_baby_changing_station = ic_baby_changing_station; \ No newline at end of file diff --git a/dist/md/ic_baby_changing_station_outline.js b/dist/md/ic_baby_changing_station_outline.js new file mode 100644 index 000000000..78131232f --- /dev/null +++ b/dist/md/ic_baby_changing_station_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_baby_changing_station_outline = void 0; +var ic_baby_changing_station_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M14,8v2h-3L8.31,8.82L7,12.75V22H3V12l1.58-4.63C4.96,6.25,6.22,5.69,7.3,6.18l4.15,1.83L14,8z M8,1C6.9,1,6,1.9,6,3 s0.9,2,2,2s2-0.9,2-2S9.1,1,8,1z M9,19h12v-2H9V19z M19.5,16c0.83,0,1.5-0.67,1.5-1.5c0-0.83-0.67-1.5-1.5-1.5S18,13.67,18,14.5 C18,15.33,18.67,16,19.5,16z M13,12c0-0.55-0.45-1-1-1H9v2h2v1c0,1.1,0.9,2,2,2h2c1.1,0,2-0.9,2-2v-3h-2v2h-2V12z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14,8v2h-3L8.31,8.82L7,12.75V22H3V12l1.58-4.63C4.96,6.25,6.22,5.69,7.3,6.18l4.15,1.83L14,8z M8,1C6.9,1,6,1.9,6,3 s0.9,2,2,2s2-0.9,2-2S9.1,1,8,1z M9,19h12v-2H9V19z M19.5,16c0.83,0,1.5-0.67,1.5-1.5c0-0.83-0.67-1.5-1.5-1.5S18,13.67,18,14.5 C18,15.33,18.67,16,19.5,16z M13,12c0-0.55-0.45-1-1-1H9v2h2v1c0,1.1,0.9,2,2,2h2c1.1,0,2-0.9,2-2v-3h-2v2h-2V12z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_baby_changing_station_outline = ic_baby_changing_station_outline; \ No newline at end of file diff --git a/dist/md/ic_baby_changing_station_twotone.js b/dist/md/ic_baby_changing_station_twotone.js new file mode 100644 index 000000000..fcdae3fc5 --- /dev/null +++ b/dist/md/ic_baby_changing_station_twotone.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_baby_changing_station_twotone = void 0; +var ic_baby_changing_station_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M14,8v2h-3L8.31,8.82L7,12.75V22H3V12l1.58-4.63C4.96,6.25,6.22,5.69,7.3,6.18l4.15,1.83L14,8z M8,1C6.9,1,6,1.9,6,3 s0.9,2,2,2s2-0.9,2-2S9.1,1,8,1z M9,19h12v-2H9V19z M19.5,16c0.83,0,1.5-0.67,1.5-1.5c0-0.83-0.67-1.5-1.5-1.5S18,13.67,18,14.5 C18,15.33,18.67,16,19.5,16z M13,12c0-0.55-0.45-1-1-1H9v2h2v1c0,1.1,0.9,2,2,2h2c1.1,0,2-0.9,2-2v-3h-2v2h-2V12z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14,8v2h-3L8.31,8.82L7,12.75V22H3V12l1.58-4.63C4.96,6.25,6.22,5.69,7.3,6.18l4.15,1.83L14,8z M8,1C6.9,1,6,1.9,6,3 s0.9,2,2,2s2-0.9,2-2S9.1,1,8,1z M9,19h12v-2H9V19z M19.5,16c0.83,0,1.5-0.67,1.5-1.5c0-0.83-0.67-1.5-1.5-1.5S18,13.67,18,14.5 C18,15.33,18.67,16,19.5,16z M13,12c0-0.55-0.45-1-1-1H9v2h2v1c0,1.1,0.9,2,2,2h2c1.1,0,2-0.9,2-2v-3h-2v2h-2V12z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_baby_changing_station_twotone = ic_baby_changing_station_twotone; \ No newline at end of file diff --git a/dist/md/ic_backpack.js b/dist/md/ic_backpack.js new file mode 100644 index 000000000..8559550d0 --- /dev/null +++ b/dist/md/ic_backpack.js @@ -0,0 +1,61 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_backpack = void 0; +var ic_backpack = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "y": "0" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "y": "0" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,8v12c0,1.1-0.9,2-2,2H6c-1.1,0-2-0.9-2-2V8c0-1.86,1.28-3.41,3-3.86V2h3v2h4V2h3v2.14C18.72,4.59,20,6.14,20,8z M6,12v2h10v2h2v-4H6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,8v12c0,1.1-0.9,2-2,2H6c-1.1,0-2-0.9-2-2V8c0-1.86,1.28-3.41,3-3.86V2h3v2h4V2h3v2.14C18.72,4.59,20,6.14,20,8z M6,12v2h10v2h2v-4H6z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_backpack = ic_backpack; \ No newline at end of file diff --git a/dist/md/ic_backpack_outline.js b/dist/md/ic_backpack_outline.js new file mode 100644 index 000000000..a89888a6f --- /dev/null +++ b/dist/md/ic_backpack_outline.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_backpack_outline = void 0; +var ic_backpack_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,4.14V2h-3v2h-4V2H7v2.14C5.28,4.59,4,6.14,4,8v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8C20,6.14,18.72,4.59,17,4.14z M18,20H6V8c0-1.1,0.9-2,2-2h8c1.1,0,2,0.9,2,2V20z M16.5,12v4h-2v-2h-7v-2H16.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,4.14V2h-3v2h-4V2H7v2.14C5.28,4.59,4,6.14,4,8v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8C20,6.14,18.72,4.59,17,4.14z M18,20H6V8c0-1.1,0.9-2,2-2h8c1.1,0,2,0.9,2,2V20z M16.5,12v4h-2v-2h-7v-2H16.5z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M0,0v24h24V0H0z", + "fill": "none" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M0,0v24h24V0H0z", + "fill": "none" + }, + "children": [] + }] + }] + }] +}; +exports.ic_backpack_outline = ic_backpack_outline; \ No newline at end of file diff --git a/dist/md/ic_backpack_twotone.js b/dist/md/ic_backpack_twotone.js new file mode 100644 index 000000000..3db2c8d50 --- /dev/null +++ b/dist/md/ic_backpack_twotone.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_backpack_twotone = void 0; +var ic_backpack_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M18,20H6V8c0-1.1,0.9-2,2-2h8c1.1,0,2,0.9,2,2V20z M7.5,12v2h7v2h2v-4H7.5z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18,20H6V8c0-1.1,0.9-2,2-2h8c1.1,0,2,0.9,2,2V20z M7.5,12v2h7v2h2v-4H7.5z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M17,4.14V2h-3v2h-4V2H7v2.14C5.28,4.59,4,6.14,4,8v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8C20,6.14,18.72,4.59,17,4.14z M18,20H6V8c0-1.1,0.9-2,2-2h8c1.1,0,2,0.9,2,2V20z M7.5,12v2h7v2h2v-4H7.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,4.14V2h-3v2h-4V2H7v2.14C5.28,4.59,4,6.14,4,8v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8C20,6.14,18.72,4.59,17,4.14z M18,20H6V8c0-1.1,0.9-2,2-2h8c1.1,0,2,0.9,2,2V20z M7.5,12v2h7v2h2v-4H7.5z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_backpack_twotone = ic_backpack_twotone; \ No newline at end of file diff --git a/dist/md/ic_backspace.js b/dist/md/ic_backspace.js new file mode 100644 index 000000000..4e26999cd --- /dev/null +++ b/dist/md/ic_backspace.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_backspace = void 0; +var ic_backspace = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 3H7c-.69 0-1.23.35-1.59.88L0 12l5.41 8.11c.36.53.9.89 1.59.89h15c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-3 12.59L17.59 17 14 13.41 10.41 17 9 15.59 12.59 12 9 8.41 10.41 7 14 10.59 17.59 7 19 8.41 15.41 12 19 15.59z" + }, + "children": [] + }] +}; +exports.ic_backspace = ic_backspace; \ No newline at end of file diff --git a/dist/md/ic_backspace_outline.js b/dist/md/ic_backspace_outline.js new file mode 100644 index 000000000..fc35db8ac --- /dev/null +++ b/dist/md/ic_backspace_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_backspace_outline = void 0; +var ic_backspace_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 3H7c-.69 0-1.23.35-1.59.88L0 12l5.41 8.11c.36.53.9.89 1.59.89h15c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H7.07L2.4 12l4.66-7H22v14zm-11.59-2L14 13.41 17.59 17 19 15.59 15.41 12 19 8.41 17.59 7 14 10.59 10.41 7 9 8.41 12.59 12 9 15.59z" + }, + "children": [] + }] +}; +exports.ic_backspace_outline = ic_backspace_outline; \ No newline at end of file diff --git a/dist/md/ic_backspace_twotone.js b/dist/md/ic_backspace_twotone.js new file mode 100644 index 000000000..5c4bb02f7 --- /dev/null +++ b/dist/md/ic_backspace_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_backspace_twotone = void 0; +var ic_backspace_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7.06 5L2.4 12l4.67 7H22V5H7.06c.01 0 .01 0 0 0zM9 8.41L10.41 7 14 10.59 17.59 7 19 8.41 15.41 12 19 15.59 17.59 17 14 13.41 10.41 17 9 15.59 12.59 12 9 8.41z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 3H7c-.69 0-1.23.35-1.59.88L0 12l5.41 8.11c.36.53.9.89 1.59.89h15c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H7.07L2.4 12l4.66-7H22v14zm-11.59-2L14 13.41 17.59 17 19 15.59 15.41 12 19 8.41 17.59 7 14 10.59 10.41 7 9 8.41 12.59 12 9 15.59z" + }, + "children": [] + }] +}; +exports.ic_backspace_twotone = ic_backspace_twotone; \ No newline at end of file diff --git a/dist/md/ic_backup.js b/dist/md/ic_backup.js new file mode 100644 index 000000000..baa9869f2 --- /dev/null +++ b/dist/md/ic_backup.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_backup = void 0; +var ic_backup = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM14 13v4h-4v-4H7l5-5 5 5h-3z" + }, + "children": [] + }] +}; +exports.ic_backup = ic_backup; \ No newline at end of file diff --git a/dist/md/ic_backup_outline.js b/dist/md/ic_backup_outline.js new file mode 100644 index 000000000..7b995153e --- /dev/null +++ b/dist/md/ic_backup_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_backup_outline = void 0; +var ic_backup_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.94 6 12 6c2.62 0 4.88 1.86 5.39 4.43l.3 1.5 1.53.11c1.56.1 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3zM8 13h2.55v3h2.9v-3H16l-4-4z" + }, + "children": [] + }] +}; +exports.ic_backup_outline = ic_backup_outline; \ No newline at end of file diff --git a/dist/md/ic_backup_table.js b/dist/md/ic_backup_table.js new file mode 100644 index 000000000..e30edd7c2 --- /dev/null +++ b/dist/md/ic_backup_table.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_backup_table = void 0; +var ic_backup_table = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,6v14H6v2h14c1.1,0,2-0.9,2-2V6H20z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,6v14H6v2h14c1.1,0,2-0.9,2-2V6H20z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M16,2H4C2.9,2,2,2.9,2,4v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C18,2.9,17.1,2,16,2z M9,16H4v-5h5V16z M16,16h-5v-5h5 V16z M16,9H4V4h12V9z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M16,2H4C2.9,2,2,2.9,2,4v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C18,2.9,17.1,2,16,2z M9,16H4v-5h5V16z M16,16h-5v-5h5 V16z M16,9H4V4h12V9z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_backup_table = ic_backup_table; \ No newline at end of file diff --git a/dist/md/ic_backup_table_outline.js b/dist/md/ic_backup_table_outline.js new file mode 100644 index 000000000..e752b6b35 --- /dev/null +++ b/dist/md/ic_backup_table_outline.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_backup_table_outline = void 0; +var ic_backup_table_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,6v14H6v2h14c1.1,0,2-0.9,2-2V6H20z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,6v14H6v2h14c1.1,0,2-0.9,2-2V6H20z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M16,2H4C2.9,2,2,2.9,2,4v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C18,2.9,17.1,2,16,2z M9,16H4v-5h5V16z M16,16h-5v-5h5 V16z M16,9H4V4h12V9z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M16,2H4C2.9,2,2,2.9,2,4v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C18,2.9,17.1,2,16,2z M9,16H4v-5h5V16z M16,16h-5v-5h5 V16z M16,9H4V4h12V9z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_backup_table_outline = ic_backup_table_outline; \ No newline at end of file diff --git a/dist/md/ic_backup_table_twotone.js b/dist/md/ic_backup_table_twotone.js new file mode 100644 index 000000000..4850eb958 --- /dev/null +++ b/dist/md/ic_backup_table_twotone.js @@ -0,0 +1,127 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_backup_table_twotone = void 0; +var ic_backup_table_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "height": "5", + "opacity": ".3", + "width": "5", + "x": "11", + "y": "11" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "5", + "opacity": ".3", + "width": "5", + "x": "11", + "y": "11" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "5", + "opacity": ".3", + "width": "5", + "x": "4", + "y": "11" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "5", + "opacity": ".3", + "width": "5", + "x": "4", + "y": "11" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "5", + "opacity": ".3", + "width": "12", + "x": "4", + "y": "4" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "5", + "opacity": ".3", + "width": "12", + "x": "4", + "y": "4" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20,6v14H6v2h14c1.1,0,2-0.9,2-2V6H20z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,6v14H6v2h14c1.1,0,2-0.9,2-2V6H20z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M18,16V4c0-1.1-0.9-2-2-2H4C2.9,2,2,2.9,2,4v12c0,1.1,0.9,2,2,2h12C17.1,18,18,17.1,18,16z M4,4h12v5H4V4z M9,16H4v-5h5 V16z M11,11h5v5h-5V11z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18,16V4c0-1.1-0.9-2-2-2H4C2.9,2,2,2.9,2,4v12c0,1.1,0.9,2,2,2h12C17.1,18,18,17.1,18,16z M4,4h12v5H4V4z M9,16H4v-5h5 V16z M11,11h5v5h-5V11z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_backup_table_twotone = ic_backup_table_twotone; \ No newline at end of file diff --git a/dist/md/ic_backup_twotone.js b/dist/md/ic_backup_twotone.js new file mode 100644 index 000000000..9352253c6 --- /dev/null +++ b/dist/md/ic_backup_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_backup_twotone = void 0; +var ic_backup_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.21 12.04l-1.53-.11-.3-1.5C16.88 7.86 14.62 6 12 6 9.94 6 8.08 7.14 7.12 8.96l-.5.95-1.07.11C3.53 10.24 2 11.95 2 14c0 2.21 1.79 4 4 4h13c1.65 0 3-1.35 3-3 0-1.55-1.22-2.86-2.79-2.96zm-5.76.96v3h-2.91v-3H8l4-4 4 4h-2.55z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.94 6 12 6c2.62 0 4.88 1.86 5.39 4.43l.3 1.5 1.53.11c1.56.1 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3zM8 13h2.55v3h2.9v-3H16l-4-4z" + }, + "children": [] + }] +}; +exports.ic_backup_twotone = ic_backup_twotone; \ No newline at end of file diff --git a/dist/md/ic_badge.js b/dist/md/ic_badge.js new file mode 100644 index 000000000..f0f8c0cef --- /dev/null +++ b/dist/md/ic_badge.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_badge = void 0; +var ic_badge = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,7h-5V4c0-1.1-0.9-2-2-2h-2C9.9,2,9,2.9,9,4v3H4C2.9,7,2,7.9,2,9v11c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V9 C22,7.9,21.1,7,20,7z M9,12c0.83,0,1.5,0.67,1.5,1.5S9.83,15,9,15s-1.5-0.67-1.5-1.5S8.17,12,9,12z M12,18H6v-0.75c0-1,2-1.5,3-1.5 s3,0.5,3,1.5V18z M13,9h-2V4h2V9z M18,16.5h-4V15h4V16.5z M18,13.5h-4V12h4V13.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,7h-5V4c0-1.1-0.9-2-2-2h-2C9.9,2,9,2.9,9,4v3H4C2.9,7,2,7.9,2,9v11c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V9 C22,7.9,21.1,7,20,7z M9,12c0.83,0,1.5,0.67,1.5,1.5S9.83,15,9,15s-1.5-0.67-1.5-1.5S8.17,12,9,12z M12,18H6v-0.75c0-1,2-1.5,3-1.5 s3,0.5,3,1.5V18z M13,9h-2V4h2V9z M18,16.5h-4V15h4V16.5z M18,13.5h-4V12h4V13.5z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_badge = ic_badge; \ No newline at end of file diff --git a/dist/md/ic_bakery_dining.js b/dist/md/ic_bakery_dining.js new file mode 100644 index 000000000..783d6ad22 --- /dev/null +++ b/dist/md/ic_bakery_dining.js @@ -0,0 +1,49 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_bakery_dining = void 0; +var ic_bakery_dining = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M19.28,16.34C18.07,15.45,17.46,15,17.46,15s0.32-0.59,0.96-1.78 c0.38-0.59,1.22-0.59,1.6,0l0.81,1.26c0.19,0.3,0.21,0.68,0.06,1l-0.22,0.47C20.42,16.49,19.76,16.67,19.28,16.34z M4.72,16.34 c-0.48,0.33-1.13,0.15-1.39-0.38L3.1,15.49c-0.15-0.32-0.13-0.7,0.06-1l0.81-1.26c0.38-0.59,1.22-0.59,1.6,0 C6.22,14.41,6.54,15,6.54,15S5.93,15.45,4.72,16.34z M15.36,9.37c0.09-0.68,0.73-1.06,1.27-0.75l1.59,0.9 c0.46,0.26,0.63,0.91,0.36,1.41L16.5,15h-1.8L15.36,9.37z M8.63,9.37L9.3,15H7.5l-2.09-4.08c-0.27-0.5-0.1-1.15,0.36-1.41l1.59-0.9 C7.89,8.31,8.54,8.69,8.63,9.37z M13.8,15h-3.6L9.46,8.12C9.39,7.53,9.81,7,10.34,7h3.3c0.53,0,0.94,0.53,0.88,1.12L13.8,15z", + "fill-rule": "evenodd" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19.28,16.34C18.07,15.45,17.46,15,17.46,15s0.32-0.59,0.96-1.78 c0.38-0.59,1.22-0.59,1.6,0l0.81,1.26c0.19,0.3,0.21,0.68,0.06,1l-0.22,0.47C20.42,16.49,19.76,16.67,19.28,16.34z M4.72,16.34 c-0.48,0.33-1.13,0.15-1.39-0.38L3.1,15.49c-0.15-0.32-0.13-0.7,0.06-1l0.81-1.26c0.38-0.59,1.22-0.59,1.6,0 C6.22,14.41,6.54,15,6.54,15S5.93,15.45,4.72,16.34z M15.36,9.37c0.09-0.68,0.73-1.06,1.27-0.75l1.59,0.9 c0.46,0.26,0.63,0.91,0.36,1.41L16.5,15h-1.8L15.36,9.37z M8.63,9.37L9.3,15H7.5l-2.09-4.08c-0.27-0.5-0.1-1.15,0.36-1.41l1.59-0.9 C7.89,8.31,8.54,8.69,8.63,9.37z M13.8,15h-3.6L9.46,8.12C9.39,7.53,9.81,7,10.34,7h3.3c0.53,0,0.94,0.53,0.88,1.12L13.8,15z", + "fill-rule": "evenodd" + }, + "children": [] + }] + }] + }] +}; +exports.ic_bakery_dining = ic_bakery_dining; \ No newline at end of file diff --git a/dist/md/ic_ballot.js b/dist/md/ic_ballot.js new file mode 100644 index 000000000..91dabf81c --- /dev/null +++ b/dist/md/ic_ballot.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_ballot = void 0; +var ic_ballot = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "fill-rule": "evenodd", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13,9.5h5v-2h-5V9.5z M13,16.5h5v-2h-5V16.5z M19,21H5c-1.1,0-2-0.9-2-2V5 c0-1.1,0.9-2,2-2h14c1.1,0,2,0.9,2,2v14C21,20.1,20.1,21,19,21z M6,11h5V6H6V11z M7,7h3v3H7V7z M6,18h5v-5H6V18z M7,14h3v3H7V14z", + "fill-rule": "evenodd" + }, + "children": [] + }] +}; +exports.ic_ballot = ic_ballot; \ No newline at end of file diff --git a/dist/md/ic_ballot_outline.js b/dist/md/ic_ballot_outline.js new file mode 100644 index 000000000..92e3d2afb --- /dev/null +++ b/dist/md/ic_ballot_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_ballot_outline = void 0; +var ic_ballot_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 7.5h5v2h-5zm0 7h5v2h-5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM11 6H6v5h5V6zm-1 4H7V7h3v3zm1 3H6v5h5v-5zm-1 4H7v-3h3v3z" + }, + "children": [] + }] +}; +exports.ic_ballot_outline = ic_ballot_outline; \ No newline at end of file diff --git a/dist/md/ic_ballot_twotone.js b/dist/md/ic_ballot_twotone.js new file mode 100644 index 000000000..2f16b3fd3 --- /dev/null +++ b/dist/md/ic_ballot_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_ballot_twotone = void 0; +var ic_ballot_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 14h3v3H7zm0-7h3v3H7zM5 19h14V5H5v14zm8-11.5h5v2h-5v-2zm0 7h5v2h-5v-2zM6 6h5v5H6V6zm0 7h5v5H6v-5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 7.5h5v2h-5zm0 7h5v2h-5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM11 6H6v5h5V6zm-1 4H7V7h3v3zm1 3H6v5h5v-5zm-1 4H7v-3h3v3z" + }, + "children": [] + }] +}; +exports.ic_ballot_twotone = ic_ballot_twotone; \ No newline at end of file diff --git a/dist/md/ic_bar_chart.js b/dist/md/ic_bar_chart.js new file mode 100644 index 000000000..770630144 --- /dev/null +++ b/dist/md/ic_bar_chart.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_bar_chart = void 0; +var ic_bar_chart = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 9.2h3V19H5zM10.6 5h2.8v14h-2.8zm5.6 8H19v6h-2.8z" + }, + "children": [] + }] +}; +exports.ic_bar_chart = ic_bar_chart; \ No newline at end of file diff --git a/dist/md/ic_bar_chart_outline.js b/dist/md/ic_bar_chart_outline.js new file mode 100644 index 000000000..cfb48fdb8 --- /dev/null +++ b/dist/md/ic_bar_chart_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_bar_chart_outline = void 0; +var ic_bar_chart_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 9.2h3V19H5V9.2zM10.6 5h2.8v14h-2.8V5zm5.6 8H19v6h-2.8v-6z" + }, + "children": [] + }] +}; +exports.ic_bar_chart_outline = ic_bar_chart_outline; \ No newline at end of file diff --git a/dist/md/ic_bar_chart_twotone.js b/dist/md/ic_bar_chart_twotone.js new file mode 100644 index 000000000..99db2573c --- /dev/null +++ b/dist/md/ic_bar_chart_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_bar_chart_twotone = void 0; +var ic_bar_chart_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 9.2h3V19H5zM16.2 13H19v6h-2.8zm-5.6-8h2.8v14h-2.8z" + }, + "children": [] + }] +}; +exports.ic_bar_chart_twotone = ic_bar_chart_twotone; \ No newline at end of file diff --git a/dist/md/ic_batch_prediction.js b/dist/md/ic_batch_prediction.js new file mode 100644 index 000000000..65cf0f9e7 --- /dev/null +++ b/dist/md/ic_batch_prediction.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_batch_prediction = void 0; +var ic_batch_prediction = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M17,8H7c-1.1,0-2,0.9-2,2v10c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V10C19,8.9,18.1,8,17,8z M13,20.5h-2V19h2V20.5z M13,18h-2 c0-1.5-2.5-3-2.5-5c0-1.93,1.57-3.5,3.5-3.5c1.93,0,3.5,1.57,3.5,3.5C15.5,15,13,16.5,13,18z M18,6.5H6v0C6,5.67,6.67,5,7.5,5h9 C17.33,5,18,5.67,18,6.5L18,6.5z M17,3.5H7v0C7,2.67,7.67,2,8.5,2h7C16.33,2,17,2.67,17,3.5L17,3.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,8H7c-1.1,0-2,0.9-2,2v10c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V10C19,8.9,18.1,8,17,8z M13,20.5h-2V19h2V20.5z M13,18h-2 c0-1.5-2.5-3-2.5-5c0-1.93,1.57-3.5,3.5-3.5c1.93,0,3.5,1.57,3.5,3.5C15.5,15,13,16.5,13,18z M18,6.5H6v0C6,5.67,6.67,5,7.5,5h9 C17.33,5,18,5.67,18,6.5L18,6.5z M17,3.5H7v0C7,2.67,7.67,2,8.5,2h7C16.33,2,17,2.67,17,3.5L17,3.5z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_batch_prediction = ic_batch_prediction; \ No newline at end of file diff --git a/dist/md/ic_batch_prediction_outline.js b/dist/md/ic_batch_prediction_outline.js new file mode 100644 index 000000000..22719473e --- /dev/null +++ b/dist/md/ic_batch_prediction_outline.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_batch_prediction_outline = void 0; +var ic_batch_prediction_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M17,8H7c-1.1,0-2,0.9-2,2v10c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V10C19,8.9,18.1,8,17,8z M13,20.5h-2V19h2V20.5z M13,18h-2 c0-1.5-2.5-3-2.5-5c0-1.93,1.57-3.5,3.5-3.5c1.93,0,3.5,1.57,3.5,3.5C15.5,15,13,16.5,13,18z M18,6.5H6v0C6,5.67,6.67,5,7.5,5h9 C17.33,5,18,5.67,18,6.5L18,6.5z M17,3.5H7v0C7,2.67,7.67,2,8.5,2h7C16.33,2,17,2.67,17,3.5L17,3.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,8H7c-1.1,0-2,0.9-2,2v10c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V10C19,8.9,18.1,8,17,8z M13,20.5h-2V19h2V20.5z M13,18h-2 c0-1.5-2.5-3-2.5-5c0-1.93,1.57-3.5,3.5-3.5c1.93,0,3.5,1.57,3.5,3.5C15.5,15,13,16.5,13,18z M18,6.5H6v0C6,5.67,6.67,5,7.5,5h9 C17.33,5,18,5.67,18,6.5L18,6.5z M17,3.5H7v0C7,2.67,7.67,2,8.5,2h7C16.33,2,17,2.67,17,3.5L17,3.5z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_batch_prediction_outline = ic_batch_prediction_outline; \ No newline at end of file diff --git a/dist/md/ic_batch_prediction_twotone.js b/dist/md/ic_batch_prediction_twotone.js new file mode 100644 index 000000000..eedd90e75 --- /dev/null +++ b/dist/md/ic_batch_prediction_twotone.js @@ -0,0 +1,59 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_batch_prediction_twotone = void 0; +var ic_batch_prediction_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M13,20.5h-2V19h2V20.5z M13,18h-2c0-1.5-2.5-3-2.5-5c0-1.93,1.57-3.5,3.5-3.5c1.93,0,3.5,1.57,3.5,3.5 C15.5,15,13,16.5,13,18z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M13,20.5h-2V19h2V20.5z M13,18h-2c0-1.5-2.5-3-2.5-5c0-1.93,1.57-3.5,3.5-3.5c1.93,0,3.5,1.57,3.5,3.5 C15.5,15,13,16.5,13,18z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M17,8H7c-1.1,0-2,0.9-2,2v10c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V10C19,8.9,18.1,8,17,8z M13,20.5h-2V19h2V20.5z M13,18h-2 c0-1.5-2.5-3-2.5-5c0-1.93,1.57-3.5,3.5-3.5c1.93,0,3.5,1.57,3.5,3.5C15.5,15,13,16.5,13,18z M18,6.5H6v0C6,5.67,6.67,5,7.5,5h9 C17.33,5,18,5.67,18,6.5L18,6.5z M17,3.5H7v0C7,2.67,7.67,2,8.5,2h7C16.33,2,17,2.67,17,3.5L17,3.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,8H7c-1.1,0-2,0.9-2,2v10c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V10C19,8.9,18.1,8,17,8z M13,20.5h-2V19h2V20.5z M13,18h-2 c0-1.5-2.5-3-2.5-5c0-1.93,1.57-3.5,3.5-3.5c1.93,0,3.5,1.57,3.5,3.5C15.5,15,13,16.5,13,18z M18,6.5H6v0C6,5.67,6.67,5,7.5,5h9 C17.33,5,18,5.67,18,6.5L18,6.5z M17,3.5H7v0C7,2.67,7.67,2,8.5,2h7C16.33,2,17,2.67,17,3.5L17,3.5z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_batch_prediction_twotone = ic_batch_prediction_twotone; \ No newline at end of file diff --git a/dist/md/ic_bathtub.js b/dist/md/ic_bathtub.js new file mode 100644 index 000000000..4f2e74d4e --- /dev/null +++ b/dist/md/ic_bathtub.js @@ -0,0 +1,87 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_bathtub = void 0; +var ic_bathtub = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "cx": "7", + "cy": "7", + "r": "2" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "7", + "cy": "7", + "r": "2" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,13V4.83C20,3.27,18.73,2,17.17,2c-0.75,0-1.47,0.3-2,0.83l-1.25,1.25C13.76,4.03,13.59,4,13.41,4 c-0.4,0-0.77,0.12-1.08,0.32l2.76,2.76c0.2-0.31,0.32-0.68,0.32-1.08c0-0.18-0.03-0.34-0.07-0.51l1.25-1.25 C16.74,4.09,16.95,4,17.17,4C17.63,4,18,4.37,18,4.83V13h-6.85c-0.3-0.21-0.57-0.45-0.82-0.72l-1.4-1.55 c-0.19-0.21-0.43-0.38-0.69-0.5C7.93,10.08,7.59,10,7.24,10C6,10.01,5,11.01,5,12.25V13H2v6c0,1.1,0.9,2,2,2c0,0.55,0.45,1,1,1 h14c0.55,0,1-0.45,1-1c1.1,0,2-0.9,2-2v-6H20z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,13V4.83C20,3.27,18.73,2,17.17,2c-0.75,0-1.47,0.3-2,0.83l-1.25,1.25C13.76,4.03,13.59,4,13.41,4 c-0.4,0-0.77,0.12-1.08,0.32l2.76,2.76c0.2-0.31,0.32-0.68,0.32-1.08c0-0.18-0.03-0.34-0.07-0.51l1.25-1.25 C16.74,4.09,16.95,4,17.17,4C17.63,4,18,4.37,18,4.83V13h-6.85c-0.3-0.21-0.57-0.45-0.82-0.72l-1.4-1.55 c-0.19-0.21-0.43-0.38-0.69-0.5C7.93,10.08,7.59,10,7.24,10C6,10.01,5,11.01,5,12.25V13H2v6c0,1.1,0.9,2,2,2c0,0.55,0.45,1,1,1 h14c0.55,0,1-0.45,1-1c1.1,0,2-0.9,2-2v-6H20z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_bathtub = ic_bathtub; \ No newline at end of file diff --git a/dist/md/ic_bathtub_outline.js b/dist/md/ic_bathtub_outline.js new file mode 100644 index 000000000..e5e71b3d8 --- /dev/null +++ b/dist/md/ic_bathtub_outline.js @@ -0,0 +1,71 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_bathtub_outline = void 0; +var ic_bathtub_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "cx": "7", + "cy": "7", + "r": "2" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "7", + "cy": "7", + "r": "2" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20,13V4.83C20,3.27,18.73,2,17.17,2c-0.75,0-1.47,0.3-2,0.83l-1.25,1.25C13.76,4.03,13.59,4,13.41,4 c-0.4,0-0.77,0.12-1.08,0.32l2.76,2.76c0.2-0.31,0.32-0.68,0.32-1.08c0-0.18-0.03-0.34-0.07-0.51l1.25-1.25 C16.74,4.09,16.95,4,17.17,4C17.63,4,18,4.37,18,4.83V13h-6.85c-0.3-0.21-0.57-0.45-0.82-0.72l-1.4-1.55 c-0.19-0.21-0.43-0.38-0.69-0.5C7.93,10.08,7.59,10,7.24,10C6,10.01,5,11.01,5,12.25V13H2v6c0,1.1,0.9,2,2,2c0,0.55,0.45,1,1,1h14 c0.55,0,1-0.45,1-1c1.1,0,2-0.9,2-2v-6H20z M20,19H4v-4h16V19z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,13V4.83C20,3.27,18.73,2,17.17,2c-0.75,0-1.47,0.3-2,0.83l-1.25,1.25C13.76,4.03,13.59,4,13.41,4 c-0.4,0-0.77,0.12-1.08,0.32l2.76,2.76c0.2-0.31,0.32-0.68,0.32-1.08c0-0.18-0.03-0.34-0.07-0.51l1.25-1.25 C16.74,4.09,16.95,4,17.17,4C17.63,4,18,4.37,18,4.83V13h-6.85c-0.3-0.21-0.57-0.45-0.82-0.72l-1.4-1.55 c-0.19-0.21-0.43-0.38-0.69-0.5C7.93,10.08,7.59,10,7.24,10C6,10.01,5,11.01,5,12.25V13H2v6c0,1.1,0.9,2,2,2c0,0.55,0.45,1,1,1h14 c0.55,0,1-0.45,1-1c1.1,0,2-0.9,2-2v-6H20z M20,19H4v-4h16V19z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_bathtub_outline = ic_bathtub_outline; \ No newline at end of file diff --git a/dist/md/ic_bathtub_twotone.js b/dist/md/ic_bathtub_twotone.js new file mode 100644 index 000000000..bc87d4ce2 --- /dev/null +++ b/dist/md/ic_bathtub_twotone.js @@ -0,0 +1,91 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_bathtub_twotone = void 0; +var ic_bathtub_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "height": "4", + "opacity": ".3", + "width": "16", + "x": "4", + "y": "15" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "4", + "opacity": ".3", + "width": "16", + "x": "4", + "y": "15" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "7", + "cy": "7", + "r": "2" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "7", + "cy": "7", + "r": "2" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20,13V4.83C20,3.27,18.73,2,17.17,2c-0.75,0-1.47,0.3-2,0.83l-1.25,1.25C13.76,4.03,13.59,4,13.41,4 c-0.4,0-0.77,0.12-1.08,0.32l2.76,2.76c0.2-0.31,0.32-0.68,0.32-1.08c0-0.18-0.03-0.34-0.07-0.51l1.25-1.25 C16.74,4.09,16.95,4,17.17,4C17.63,4,18,4.37,18,4.83V13h-6.85c-0.3-0.21-0.57-0.45-0.82-0.72l-1.4-1.55 c-0.19-0.21-0.43-0.38-0.69-0.5C7.93,10.08,7.59,10,7.24,10C6,10.01,5,11.01,5,12.25V13H2v6c0,1.1,0.9,2,2,2c0,0.55,0.45,1,1,1h14 c0.55,0,1-0.45,1-1c1.1,0,2-0.9,2-2v-6H20z M20,19H4v-4h16V19z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,13V4.83C20,3.27,18.73,2,17.17,2c-0.75,0-1.47,0.3-2,0.83l-1.25,1.25C13.76,4.03,13.59,4,13.41,4 c-0.4,0-0.77,0.12-1.08,0.32l2.76,2.76c0.2-0.31,0.32-0.68,0.32-1.08c0-0.18-0.03-0.34-0.07-0.51l1.25-1.25 C16.74,4.09,16.95,4,17.17,4C17.63,4,18,4.37,18,4.83V13h-6.85c-0.3-0.21-0.57-0.45-0.82-0.72l-1.4-1.55 c-0.19-0.21-0.43-0.38-0.69-0.5C7.93,10.08,7.59,10,7.24,10C6,10.01,5,11.01,5,12.25V13H2v6c0,1.1,0.9,2,2,2c0,0.55,0.45,1,1,1h14 c0.55,0,1-0.45,1-1c1.1,0,2-0.9,2-2v-6H20z M20,19H4v-4h16V19z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_bathtub_twotone = ic_bathtub_twotone; \ No newline at end of file diff --git a/dist/md/ic_battery_20.js b/dist/md/ic_battery_20.js new file mode 100644 index 000000000..a36ca3848 --- /dev/null +++ b/dist/md/ic_battery_20.js @@ -0,0 +1,22 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_battery_20 = void 0; +var ic_battery_20 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M7 17v3.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V17H7z" + } + }, { + "name": "path", + "attribs": { + "fill-opacity": ".3", + "d": "M17 5.33C17 4.6 16.4 4 15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V17h10V5.33z" + } + }] +}; +exports.ic_battery_20 = ic_battery_20; \ No newline at end of file diff --git a/dist/md/ic_battery_20_twotone.js b/dist/md/ic_battery_20_twotone.js new file mode 100644 index 000000000..781f5cc7f --- /dev/null +++ b/dist/md/ic_battery_20_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_battery_20_twotone = void 0; +var ic_battery_20_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 17v3.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V17H7z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 5.33C17 4.6 16.4 4 15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V17h10V5.33z", + "fill-opacity": ".3" + }, + "children": [] + }] +}; +exports.ic_battery_20_twotone = ic_battery_20_twotone; \ No newline at end of file diff --git a/dist/md/ic_battery_30.js b/dist/md/ic_battery_30.js new file mode 100644 index 000000000..de8cbfbdf --- /dev/null +++ b/dist/md/ic_battery_30.js @@ -0,0 +1,22 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_battery_30 = void 0; +var ic_battery_30 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "fill-opacity": ".3", + "d": "M17 5.33C17 4.6 16.4 4 15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V15h10V5.33z" + } + }, { + "name": "path", + "attribs": { + "d": "M7 15v5.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V15H7z" + } + }] +}; +exports.ic_battery_30 = ic_battery_30; \ No newline at end of file diff --git a/dist/md/ic_battery_30_twotone.js b/dist/md/ic_battery_30_twotone.js new file mode 100644 index 000000000..7f9826055 --- /dev/null +++ b/dist/md/ic_battery_30_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_battery_30_twotone = void 0; +var ic_battery_30_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 5.33C17 4.6 16.4 4 15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V15h10V5.33z", + "fill-opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 15v5.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V15H7z" + }, + "children": [] + }] +}; +exports.ic_battery_30_twotone = ic_battery_30_twotone; \ No newline at end of file diff --git a/dist/md/ic_battery_50.js b/dist/md/ic_battery_50.js new file mode 100644 index 000000000..b71b607f9 --- /dev/null +++ b/dist/md/ic_battery_50.js @@ -0,0 +1,22 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_battery_50 = void 0; +var ic_battery_50 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "fill-opacity": ".3", + "d": "M17 5.33C17 4.6 16.4 4 15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V13h10V5.33z" + } + }, { + "name": "path", + "attribs": { + "d": "M7 13v7.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V13H7z" + } + }] +}; +exports.ic_battery_50 = ic_battery_50; \ No newline at end of file diff --git a/dist/md/ic_battery_50_twotone.js b/dist/md/ic_battery_50_twotone.js new file mode 100644 index 000000000..42bf68dd0 --- /dev/null +++ b/dist/md/ic_battery_50_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_battery_50_twotone = void 0; +var ic_battery_50_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 5.33C17 4.6 16.4 4 15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V13h10V5.33z", + "fill-opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 13v7.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V13H7z" + }, + "children": [] + }] +}; +exports.ic_battery_50_twotone = ic_battery_50_twotone; \ No newline at end of file diff --git a/dist/md/ic_battery_60.js b/dist/md/ic_battery_60.js new file mode 100644 index 000000000..fd1e3b9a6 --- /dev/null +++ b/dist/md/ic_battery_60.js @@ -0,0 +1,22 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_battery_60 = void 0; +var ic_battery_60 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "fill-opacity": ".3", + "d": "M17 5.33C17 4.6 16.4 4 15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V11h10V5.33z" + } + }, { + "name": "path", + "attribs": { + "d": "M7 11v9.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V11H7z" + } + }] +}; +exports.ic_battery_60 = ic_battery_60; \ No newline at end of file diff --git a/dist/md/ic_battery_60_twotone.js b/dist/md/ic_battery_60_twotone.js new file mode 100644 index 000000000..1c0497f4e --- /dev/null +++ b/dist/md/ic_battery_60_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_battery_60_twotone = void 0; +var ic_battery_60_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 5.33C17 4.6 16.4 4 15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V11h10V5.33z", + "fill-opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 11v9.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V11H7z" + }, + "children": [] + }] +}; +exports.ic_battery_60_twotone = ic_battery_60_twotone; \ No newline at end of file diff --git a/dist/md/ic_battery_80.js b/dist/md/ic_battery_80.js new file mode 100644 index 000000000..d56b1004e --- /dev/null +++ b/dist/md/ic_battery_80.js @@ -0,0 +1,22 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_battery_80 = void 0; +var ic_battery_80 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "fill-opacity": ".3", + "d": "M17 5.33C17 4.6 16.4 4 15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V9h10V5.33z" + } + }, { + "name": "path", + "attribs": { + "d": "M7 9v11.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V9H7z" + } + }] +}; +exports.ic_battery_80 = ic_battery_80; \ No newline at end of file diff --git a/dist/md/ic_battery_80_twotone.js b/dist/md/ic_battery_80_twotone.js new file mode 100644 index 000000000..bdd308413 --- /dev/null +++ b/dist/md/ic_battery_80_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_battery_80_twotone = void 0; +var ic_battery_80_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 5.33C17 4.6 16.4 4 15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V9h10V5.33z", + "fill-opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 9v11.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V9H7z" + }, + "children": [] + }] +}; +exports.ic_battery_80_twotone = ic_battery_80_twotone; \ No newline at end of file diff --git a/dist/md/ic_battery_90.js b/dist/md/ic_battery_90.js new file mode 100644 index 000000000..fd3b0d9dc --- /dev/null +++ b/dist/md/ic_battery_90.js @@ -0,0 +1,22 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_battery_90 = void 0; +var ic_battery_90 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "fill-opacity": ".3", + "d": "M17 5.33C17 4.6 16.4 4 15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V8h10V5.33z" + } + }, { + "name": "path", + "attribs": { + "d": "M7 8v12.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V8H7z" + } + }] +}; +exports.ic_battery_90 = ic_battery_90; \ No newline at end of file diff --git a/dist/md/ic_battery_90_twotone.js b/dist/md/ic_battery_90_twotone.js new file mode 100644 index 000000000..d1bcaafa8 --- /dev/null +++ b/dist/md/ic_battery_90_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_battery_90_twotone = void 0; +var ic_battery_90_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 5.33C17 4.6 16.4 4 15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V8h10V5.33z", + "fill-opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 8v12.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V8H7z" + }, + "children": [] + }] +}; +exports.ic_battery_90_twotone = ic_battery_90_twotone; \ No newline at end of file diff --git a/dist/md/ic_battery_alert.js b/dist/md/ic_battery_alert.js new file mode 100644 index 000000000..449739c34 --- /dev/null +++ b/dist/md/ic_battery_alert.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_battery_alert = void 0; +var ic_battery_alert = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zM13 18h-2v-2h2v2zm0-4h-2V9h2v5z" + }, + "children": [] + }] +}; +exports.ic_battery_alert = ic_battery_alert; \ No newline at end of file diff --git a/dist/md/ic_battery_alert_outline.js b/dist/md/ic_battery_alert_outline.js new file mode 100644 index 000000000..94547f955 --- /dev/null +++ b/dist/md/ic_battery_alert_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_battery_alert_outline = void 0; +var ic_battery_alert_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zM13 18h-2v-2h2v2zm0-4h-2V9h2v5z" + }, + "children": [] + }] +}; +exports.ic_battery_alert_outline = ic_battery_alert_outline; \ No newline at end of file diff --git a/dist/md/ic_battery_alert_twotone.js b/dist/md/ic_battery_alert_twotone.js new file mode 100644 index 000000000..a7567ddab --- /dev/null +++ b/dist/md/ic_battery_alert_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_battery_alert_twotone = void 0; +var ic_battery_alert_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zM13 18h-2v-2h2v2zm0-4h-2V9h2v5z" + }, + "children": [] + }] +}; +exports.ic_battery_alert_twotone = ic_battery_alert_twotone; \ No newline at end of file diff --git a/dist/md/ic_battery_charging_20.js b/dist/md/ic_battery_charging_20.js new file mode 100644 index 000000000..cb2669a7f --- /dev/null +++ b/dist/md/ic_battery_charging_20.js @@ -0,0 +1,22 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_battery_charging_20 = void 0; +var ic_battery_charging_20 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M11 20v-3H7v3.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V17h-4.4L11 20z" + } + }, { + "name": "path", + "attribs": { + "fill-opacity": ".3", + "d": "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V17h4v-2.5H9L13 7v5.5h2L12.6 17H17V5.33C17 4.6 16.4 4 15.67 4z" + } + }] +}; +exports.ic_battery_charging_20 = ic_battery_charging_20; \ No newline at end of file diff --git a/dist/md/ic_battery_charging_20_twotone.js b/dist/md/ic_battery_charging_20_twotone.js new file mode 100644 index 000000000..baa4a3351 --- /dev/null +++ b/dist/md/ic_battery_charging_20_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_battery_charging_20_twotone = void 0; +var ic_battery_charging_20_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 20v-3H7v3.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V17h-4.4L11 20z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V17h4v-2.5H9L13 7v5.5h2L12.6 17H17V5.33C17 4.6 16.4 4 15.67 4z", + "fill-opacity": ".3" + }, + "children": [] + }] +}; +exports.ic_battery_charging_20_twotone = ic_battery_charging_20_twotone; \ No newline at end of file diff --git a/dist/md/ic_battery_charging_30.js b/dist/md/ic_battery_charging_30.js new file mode 100644 index 000000000..0e12162ab --- /dev/null +++ b/dist/md/ic_battery_charging_30.js @@ -0,0 +1,22 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_battery_charging_30 = void 0; +var ic_battery_charging_30 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "fill-opacity": ".3", + "d": "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v9.17h2L13 7v5.5h2l-1.07 2H17V5.33C17 4.6 16.4 4 15.67 4z" + } + }, { + "name": "path", + "attribs": { + "d": "M11 20v-5.5H7v6.17C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V14.5h-3.07L11 20z" + } + }] +}; +exports.ic_battery_charging_30 = ic_battery_charging_30; \ No newline at end of file diff --git a/dist/md/ic_battery_charging_30_twotone.js b/dist/md/ic_battery_charging_30_twotone.js new file mode 100644 index 000000000..11e48a809 --- /dev/null +++ b/dist/md/ic_battery_charging_30_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_battery_charging_30_twotone = void 0; +var ic_battery_charging_30_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v9.17h2L13 7v5.5h2l-1.07 2H17V5.33C17 4.6 16.4 4 15.67 4z", + "fill-opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 20v-5.5H7v6.17C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V14.5h-3.07L11 20z" + }, + "children": [] + }] +}; +exports.ic_battery_charging_30_twotone = ic_battery_charging_30_twotone; \ No newline at end of file diff --git a/dist/md/ic_battery_charging_50.js b/dist/md/ic_battery_charging_50.js new file mode 100644 index 000000000..ce212e1ac --- /dev/null +++ b/dist/md/ic_battery_charging_50.js @@ -0,0 +1,22 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_battery_charging_50 = void 0; +var ic_battery_charging_50 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M14.47 13.5L11 20v-5.5H9l.53-1H7v7.17C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V13.5h-2.53z" + } + }, { + "name": "path", + "attribs": { + "fill-opacity": ".3", + "d": "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v8.17h2.53L13 7v5.5h2l-.53 1H17V5.33C17 4.6 16.4 4 15.67 4z" + } + }] +}; +exports.ic_battery_charging_50 = ic_battery_charging_50; \ No newline at end of file diff --git a/dist/md/ic_battery_charging_50_twotone.js b/dist/md/ic_battery_charging_50_twotone.js new file mode 100644 index 000000000..11f300145 --- /dev/null +++ b/dist/md/ic_battery_charging_50_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_battery_charging_50_twotone = void 0; +var ic_battery_charging_50_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14.47 13.5L11 20v-5.5H9l.53-1H7v7.17C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V13.5h-2.53z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v8.17h2.53L13 7v5.5h2l-.53 1H17V5.33C17 4.6 16.4 4 15.67 4z", + "fill-opacity": ".3" + }, + "children": [] + }] +}; +exports.ic_battery_charging_50_twotone = ic_battery_charging_50_twotone; \ No newline at end of file diff --git a/dist/md/ic_battery_charging_60.js b/dist/md/ic_battery_charging_60.js new file mode 100644 index 000000000..663756210 --- /dev/null +++ b/dist/md/ic_battery_charging_60.js @@ -0,0 +1,22 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_battery_charging_60 = void 0; +var ic_battery_charging_60 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "fill-opacity": ".3", + "d": "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V11h3.87L13 7v4h4V5.33C17 4.6 16.4 4 15.67 4z" + } + }, { + "name": "path", + "attribs": { + "d": "M13 12.5h2L11 20v-5.5H9l1.87-3.5H7v9.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V11h-4v1.5z" + } + }] +}; +exports.ic_battery_charging_60 = ic_battery_charging_60; \ No newline at end of file diff --git a/dist/md/ic_battery_charging_60_twotone.js b/dist/md/ic_battery_charging_60_twotone.js new file mode 100644 index 000000000..8202afa82 --- /dev/null +++ b/dist/md/ic_battery_charging_60_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_battery_charging_60_twotone = void 0; +var ic_battery_charging_60_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V11h3.87L13 7v4h4V5.33C17 4.6 16.4 4 15.67 4z", + "fill-opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 12.5h2L11 20v-5.5H9l1.87-3.5H7v9.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V11h-4v1.5z" + }, + "children": [] + }] +}; +exports.ic_battery_charging_60_twotone = ic_battery_charging_60_twotone; \ No newline at end of file diff --git a/dist/md/ic_battery_charging_80.js b/dist/md/ic_battery_charging_80.js new file mode 100644 index 000000000..1619df277 --- /dev/null +++ b/dist/md/ic_battery_charging_80.js @@ -0,0 +1,22 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_battery_charging_80 = void 0; +var ic_battery_charging_80 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "fill-opacity": ".3", + "d": "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V9h4.93L13 7v2h4V5.33C17 4.6 16.4 4 15.67 4z" + } + }, { + "name": "path", + "attribs": { + "d": "M13 12.5h2L11 20v-5.5H9L11.93 9H7v11.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V9h-4v3.5z" + } + }] +}; +exports.ic_battery_charging_80 = ic_battery_charging_80; \ No newline at end of file diff --git a/dist/md/ic_battery_charging_80_twotone.js b/dist/md/ic_battery_charging_80_twotone.js new file mode 100644 index 000000000..417663e03 --- /dev/null +++ b/dist/md/ic_battery_charging_80_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_battery_charging_80_twotone = void 0; +var ic_battery_charging_80_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V9h4.93L13 7v2h4V5.33C17 4.6 16.4 4 15.67 4z", + "fill-opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 12.5h2L11 20v-5.5H9L11.93 9H7v11.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V9h-4v3.5z" + }, + "children": [] + }] +}; +exports.ic_battery_charging_80_twotone = ic_battery_charging_80_twotone; \ No newline at end of file diff --git a/dist/md/ic_battery_charging_90.js b/dist/md/ic_battery_charging_90.js new file mode 100644 index 000000000..8f02779f0 --- /dev/null +++ b/dist/md/ic_battery_charging_90.js @@ -0,0 +1,22 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_battery_charging_90 = void 0; +var ic_battery_charging_90 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "fill-opacity": ".3", + "d": "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V8h5.47L13 7v1h4V5.33C17 4.6 16.4 4 15.67 4z" + } + }, { + "name": "path", + "attribs": { + "d": "M13 12.5h2L11 20v-5.5H9L12.47 8H7v12.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V8h-4v4.5z" + } + }] +}; +exports.ic_battery_charging_90 = ic_battery_charging_90; \ No newline at end of file diff --git a/dist/md/ic_battery_charging_90_twotone.js b/dist/md/ic_battery_charging_90_twotone.js new file mode 100644 index 000000000..12c0e4109 --- /dev/null +++ b/dist/md/ic_battery_charging_90_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_battery_charging_90_twotone = void 0; +var ic_battery_charging_90_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V8h5.47L13 7v1h4V5.33C17 4.6 16.4 4 15.67 4z", + "fill-opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 12.5h2L11 20v-5.5H9L12.47 8H7v12.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V8h-4v4.5z" + }, + "children": [] + }] +}; +exports.ic_battery_charging_90_twotone = ic_battery_charging_90_twotone; \ No newline at end of file diff --git a/dist/md/ic_battery_charging_full.js b/dist/md/ic_battery_charging_full.js new file mode 100644 index 000000000..1eaf4a102 --- /dev/null +++ b/dist/md/ic_battery_charging_full.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_battery_charging_full = void 0; +var ic_battery_charging_full = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zM11 20v-5.5H9L13 7v5.5h2L11 20z" + }, + "children": [] + }] +}; +exports.ic_battery_charging_full = ic_battery_charging_full; \ No newline at end of file diff --git a/dist/md/ic_battery_charging_full_outline.js b/dist/md/ic_battery_charging_full_outline.js new file mode 100644 index 000000000..ebab845e8 --- /dev/null +++ b/dist/md/ic_battery_charging_full_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_battery_charging_full_outline = void 0; +var ic_battery_charging_full_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zM11 20v-5.5H9L13 7v5.5h2L11 20z" + }, + "children": [] + }] +}; +exports.ic_battery_charging_full_outline = ic_battery_charging_full_outline; \ No newline at end of file diff --git a/dist/md/ic_battery_charging_full_twotone.js b/dist/md/ic_battery_charging_full_twotone.js new file mode 100644 index 000000000..aa9bf4d9f --- /dev/null +++ b/dist/md/ic_battery_charging_full_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_battery_charging_full_twotone = void 0; +var ic_battery_charging_full_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zM11 20v-5.5H9L13 7v5.5h2L11 20z" + }, + "children": [] + }] +}; +exports.ic_battery_charging_full_twotone = ic_battery_charging_full_twotone; \ No newline at end of file diff --git a/dist/md/ic_battery_full.js b/dist/md/ic_battery_full.js new file mode 100644 index 000000000..aa19bb701 --- /dev/null +++ b/dist/md/ic_battery_full.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_battery_full = void 0; +var ic_battery_full = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4z" + }, + "children": [] + }] +}; +exports.ic_battery_full = ic_battery_full; \ No newline at end of file diff --git a/dist/md/ic_battery_full_outline.js b/dist/md/ic_battery_full_outline.js new file mode 100644 index 000000000..d125ccdd6 --- /dev/null +++ b/dist/md/ic_battery_full_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_battery_full_outline = void 0; +var ic_battery_full_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4z" + }, + "children": [] + }] +}; +exports.ic_battery_full_outline = ic_battery_full_outline; \ No newline at end of file diff --git a/dist/md/ic_battery_full_twotone.js b/dist/md/ic_battery_full_twotone.js new file mode 100644 index 000000000..fc7229264 --- /dev/null +++ b/dist/md/ic_battery_full_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_battery_full_twotone = void 0; +var ic_battery_full_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4z" + }, + "children": [] + }] +}; +exports.ic_battery_full_twotone = ic_battery_full_twotone; \ No newline at end of file diff --git a/dist/md/ic_battery_std.js b/dist/md/ic_battery_std.js new file mode 100644 index 000000000..bda257d0b --- /dev/null +++ b/dist/md/ic_battery_std.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_battery_std = void 0; +var ic_battery_std = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4z" + }, + "children": [] + }] +}; +exports.ic_battery_std = ic_battery_std; \ No newline at end of file diff --git a/dist/md/ic_battery_std_outline.js b/dist/md/ic_battery_std_outline.js new file mode 100644 index 000000000..eeb313377 --- /dev/null +++ b/dist/md/ic_battery_std_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_battery_std_outline = void 0; +var ic_battery_std_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4z" + }, + "children": [] + }] +}; +exports.ic_battery_std_outline = ic_battery_std_outline; \ No newline at end of file diff --git a/dist/md/ic_battery_std_twotone.js b/dist/md/ic_battery_std_twotone.js new file mode 100644 index 000000000..dbe394028 --- /dev/null +++ b/dist/md/ic_battery_std_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_battery_std_twotone = void 0; +var ic_battery_std_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4z" + }, + "children": [] + }] +}; +exports.ic_battery_std_twotone = ic_battery_std_twotone; \ No newline at end of file diff --git a/dist/md/ic_battery_unknown.js b/dist/md/ic_battery_unknown.js new file mode 100644 index 000000000..4851e1069 --- /dev/null +++ b/dist/md/ic_battery_unknown.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_battery_unknown = void 0; +var ic_battery_unknown = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zm-2.72 13.95h-1.9v-1.9h1.9v1.9zm1.35-5.26s-.38.42-.67.71c-.48.48-.83 1.15-.83 1.6h-1.6c0-.83.46-1.52.93-2l.93-.94c.27-.27.44-.65.44-1.06 0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5H9c0-1.66 1.34-3 3-3s3 1.34 3 3c0 .66-.27 1.26-.7 1.69z" + }, + "children": [] + }] +}; +exports.ic_battery_unknown = ic_battery_unknown; \ No newline at end of file diff --git a/dist/md/ic_battery_unknown_outline.js b/dist/md/ic_battery_unknown_outline.js new file mode 100644 index 000000000..8b615e212 --- /dev/null +++ b/dist/md/ic_battery_unknown_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_battery_unknown_outline = void 0; +var ic_battery_unknown_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zM13 18h-2v-2h2v2zm1.3-5.31s-.38.42-.67.71c-.48.48-.83 1.15-.83 1.6h-1.6c0-.83.46-1.52.93-2l.93-.94c.27-.27.44-.65.44-1.06 0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5H9c0-1.66 1.34-3 3-3s3 1.34 3 3c0 .66-.27 1.26-.7 1.69z" + }, + "children": [] + }] +}; +exports.ic_battery_unknown_outline = ic_battery_unknown_outline; \ No newline at end of file diff --git a/dist/md/ic_battery_unknown_twotone.js b/dist/md/ic_battery_unknown_twotone.js new file mode 100644 index 000000000..0a2906d1d --- /dev/null +++ b/dist/md/ic_battery_unknown_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_battery_unknown_twotone = void 0; +var ic_battery_unknown_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zM13 18h-2v-2h2v2zm1.3-5.31s-.38.42-.67.71c-.48.48-.83 1.15-.83 1.6h-1.6c0-.83.46-1.52.93-2l.93-.94c.27-.27.44-.65.44-1.06 0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5H9c0-1.66 1.34-3 3-3s3 1.34 3 3c0 .66-.27 1.26-.7 1.69z" + }, + "children": [] + }] +}; +exports.ic_battery_unknown_twotone = ic_battery_unknown_twotone; \ No newline at end of file diff --git a/dist/md/ic_beach_access.js b/dist/md/ic_beach_access.js new file mode 100644 index 000000000..c399fde0c --- /dev/null +++ b/dist/md/ic_beach_access.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_beach_access = void 0; +var ic_beach_access = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13.127 14.56l1.43-1.43 6.44 6.443L19.57 21zm4.293-5.73l2.86-2.86c-3.95-3.95-10.35-3.96-14.3-.02 3.93-1.3 8.31-.25 11.44 2.88zM5.95 5.98c-3.94 3.95-3.93 10.35.02 14.3l2.86-2.86C5.7 14.29 4.65 9.91 5.95 5.98zm.02-.02l-.01.01c-.38 3.01 1.17 6.88 4.3 10.02l5.73-5.73c-3.13-3.13-7.01-4.68-10.02-4.3z" + }, + "children": [] + }] +}; +exports.ic_beach_access = ic_beach_access; \ No newline at end of file diff --git a/dist/md/ic_beach_access_outline.js b/dist/md/ic_beach_access_outline.js new file mode 100644 index 000000000..f510c7e61 --- /dev/null +++ b/dist/md/ic_beach_access_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_beach_access_outline = void 0; +var ic_beach_access_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 19.57l-1.427 1.428-6.442-6.442 1.43-1.428zM13.12 3c-2.58 0-5.16.98-7.14 2.95l-.01.01c-3.95 3.95-3.95 10.36 0 14.31l14.3-14.31C18.3 3.99 15.71 3 13.12 3zM6.14 17.27C5.4 16.03 5 14.61 5 13.12c0-.93.16-1.82.46-2.67.19 1.91.89 3.79 2.07 5.44l-1.39 1.38zm2.84-2.84C7.63 12.38 7.12 9.93 7.6 7.6c.58-.12 1.16-.18 1.75-.18 1.8 0 3.55.55 5.08 1.56l-5.45 5.45zm1.47-8.97c.85-.3 1.74-.46 2.67-.46 1.49 0 2.91.4 4.15 1.14l-1.39 1.39c-1.65-1.18-3.52-1.88-5.43-2.07z" + }, + "children": [] + }] +}; +exports.ic_beach_access_outline = ic_beach_access_outline; \ No newline at end of file diff --git a/dist/md/ic_beach_access_twotone.js b/dist/md/ic_beach_access_twotone.js new file mode 100644 index 000000000..3044a9f42 --- /dev/null +++ b/dist/md/ic_beach_access_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_beach_access_twotone = void 0; +var ic_beach_access_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7.6 7.6c-.47 2.34.03 4.78 1.39 6.83l5.45-5.45c-1.53-1.02-3.28-1.56-5.08-1.56-.6 0-1.19.06-1.76.18zM13.12 5c-.93 0-1.82.16-2.67.46 1.91.19 3.79.89 5.44 2.07l1.39-1.39C16.03 5.4 14.61 5 13.12 5zM5 13.12c0 1.49.4 2.91 1.14 4.15l1.39-1.39c-1.18-1.65-1.88-3.52-2.07-5.44-.3.86-.46 1.76-.46 2.68z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13.126 14.56l1.428-1.428 6.442 6.442-1.43 1.428zM13.12 3c-2.58 0-5.16.98-7.14 2.95l-.01.01c-3.95 3.95-3.95 10.36 0 14.31l14.3-14.31C18.3 3.99 15.71 3 13.12 3zM6.14 17.27C5.4 16.03 5 14.61 5 13.12c0-.93.16-1.82.46-2.67.19 1.91.89 3.79 2.07 5.44l-1.39 1.38zm2.84-2.84C7.63 12.38 7.12 9.93 7.6 7.6c.58-.12 1.16-.18 1.75-.18 1.8 0 3.55.55 5.08 1.56l-5.45 5.45zm1.47-8.97c.85-.3 1.74-.46 2.67-.46 1.49 0 2.91.4 4.15 1.14l-1.39 1.39c-1.65-1.18-3.52-1.88-5.43-2.07z" + }, + "children": [] + }] +}; +exports.ic_beach_access_twotone = ic_beach_access_twotone; \ No newline at end of file diff --git a/dist/md/ic_bedtime.js b/dist/md/ic_bedtime.js new file mode 100644 index 000000000..fd103633c --- /dev/null +++ b/dist/md/ic_bedtime.js @@ -0,0 +1,55 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_bedtime = void 0; +var ic_bedtime = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12.34,2.02C6.59,1.82,2,6.42,2,12c0,5.52,4.48,10,10,10c3.71,0,6.93-2.02,8.66-5.02C13.15,16.73,8.57,8.55,12.34,2.02z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12.34,2.02C6.59,1.82,2,6.42,2,12c0,5.52,4.48,10,10,10c3.71,0,6.93-2.02,8.66-5.02C13.15,16.73,8.57,8.55,12.34,2.02z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_bedtime = ic_bedtime; \ No newline at end of file diff --git a/dist/md/ic_bedtime_outline.js b/dist/md/ic_bedtime_outline.js new file mode 100644 index 000000000..fa2d6146d --- /dev/null +++ b/dist/md/ic_bedtime_outline.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_bedtime_outline = void 0; +var ic_bedtime_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M9.27,4.49c-1.63,7.54,3.75,12.41,7.66,13.8C15.54,19.38,13.81,20,12,20c-4.41,0-8-3.59-8-8C4,8.55,6.2,5.6,9.27,4.49 M11.99,2.01C6.4,2.01,2,6.54,2,12c0,5.52,4.48,10,10,10c3.71,0,6.93-2.02,8.66-5.02c-7.51-0.25-12.09-8.43-8.32-14.97 C12.22,2.01,12.11,2.01,11.99,2.01L11.99,2.01z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M9.27,4.49c-1.63,7.54,3.75,12.41,7.66,13.8C15.54,19.38,13.81,20,12,20c-4.41,0-8-3.59-8-8C4,8.55,6.2,5.6,9.27,4.49 M11.99,2.01C6.4,2.01,2,6.54,2,12c0,5.52,4.48,10,10,10c3.71,0,6.93-2.02,8.66-5.02c-7.51-0.25-12.09-8.43-8.32-14.97 C12.22,2.01,12.11,2.01,11.99,2.01L11.99,2.01z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_bedtime_outline = ic_bedtime_outline; \ No newline at end of file diff --git a/dist/md/ic_bedtime_twotone.js b/dist/md/ic_bedtime_twotone.js new file mode 100644 index 000000000..1fb1ea1ff --- /dev/null +++ b/dist/md/ic_bedtime_twotone.js @@ -0,0 +1,79 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_bedtime_twotone = void 0; +var ic_bedtime_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": { + "opacity": ".3" + }, + "children": [{ + "name": "g", + "attribs": { + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M9.27,4.49C6.2,5.6,4,8.55,4,12c0,4.41,3.59,8,8,8c1.81,0,3.54-0.62,4.93-1.71C13.02,16.9,7.64,12.03,9.27,4.49z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M9.27,4.49C6.2,5.6,4,8.55,4,12c0,4.41,3.59,8,8,8c1.81,0,3.54-0.62,4.93-1.71C13.02,16.9,7.64,12.03,9.27,4.49z" + }, + "children": [] + }] + }] + }] + }, { + "name": "path", + "attribs": { + "d": "M12.34,2.02c-0.12,0-0.23-0.01-0.35-0.01C6.4,2.01,2,6.54,2,12c0,5.52,4.48,10,10,10c3.71,0,6.93-2.02,8.66-5.02 C13.15,16.73,8.57,8.55,12.34,2.02z M12,20c-4.41,0-8-3.59-8-8c0-3.45,2.2-6.4,5.27-7.51c-1.63,7.54,3.75,12.41,7.66,13.8 C15.54,19.38,13.81,20,12,20z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12.34,2.02c-0.12,0-0.23-0.01-0.35-0.01C6.4,2.01,2,6.54,2,12c0,5.52,4.48,10,10,10c3.71,0,6.93-2.02,8.66-5.02 C13.15,16.73,8.57,8.55,12.34,2.02z M12,20c-4.41,0-8-3.59-8-8c0-3.45,2.2-6.4,5.27-7.51c-1.63,7.54,3.75,12.41,7.66,13.8 C15.54,19.38,13.81,20,12,20z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_bedtime_twotone = ic_bedtime_twotone; \ No newline at end of file diff --git a/dist/md/ic_beenhere.js b/dist/md/ic_beenhere.js new file mode 100644 index 000000000..c587c486a --- /dev/null +++ b/dist/md/ic_beenhere.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_beenhere = void 0; +var ic_beenhere = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 1H5c-1.1 0-1.99.9-1.99 2L3 15.93c0 .69.35 1.3.88 1.66L12 23l8.11-5.41c.53-.36.88-.97.88-1.66L21 3c0-1.1-.9-2-2-2zm-9 15l-5-5 1.41-1.41L10 13.17l7.59-7.59L19 7l-9 9z" + }, + "children": [] + }] +}; +exports.ic_beenhere = ic_beenhere; \ No newline at end of file diff --git a/dist/md/ic_beenhere_outline.js b/dist/md/ic_beenhere_outline.js new file mode 100644 index 000000000..ba3226236 --- /dev/null +++ b/dist/md/ic_beenhere_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_beenhere_outline = void 0; +var ic_beenhere_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 1H5c-1.1 0-1.99.9-1.99 2L3 15.93c0 .69.35 1.3.88 1.66L12 23l8.11-5.41c.53-.36.88-.97.88-1.66L21 3c0-1.1-.9-2-2-2zm-7 19.6l-7-4.66V3h14v12.93l-7 4.67zm-2.01-7.42l-2.58-2.59L6 12l4 4 8-8-1.42-1.42z" + }, + "children": [] + }] +}; +exports.ic_beenhere_outline = ic_beenhere_outline; \ No newline at end of file diff --git a/dist/md/ic_beenhere_twotone.js b/dist/md/ic_beenhere_twotone.js new file mode 100644 index 000000000..abac3257a --- /dev/null +++ b/dist/md/ic_beenhere_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_beenhere_twotone = void 0; +var ic_beenhere_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5v12.93l7 4.66 7-4.67V3zm-9 13l-4-4 1.41-1.41 2.58 2.58 6.59-6.59L18 8l-8 8z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 1H5c-1.1 0-1.99.9-1.99 2L3 15.93c0 .69.35 1.3.88 1.66L12 23l8.11-5.41c.53-.36.88-.97.88-1.66L21 3c0-1.1-.9-2-2-2zm-7 19.6l-7-4.66V3h14v12.93l-7 4.67zm-2.01-7.42l-2.58-2.59L6 12l4 4 8-8-1.42-1.42z" + }, + "children": [] + }] +}; +exports.ic_beenhere_twotone = ic_beenhere_twotone; \ No newline at end of file diff --git a/dist/md/ic_bento.js b/dist/md/ic_bento.js new file mode 100644 index 000000000..f2dd5b997 --- /dev/null +++ b/dist/md/ic_bento.js @@ -0,0 +1,35 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_bento = void 0; +var ic_bento = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M16,11V5h4c1.1,0,2,0.9,2,2v4H16z M20,19c1.1,0,2-0.9,2-2v-4h-6v6H20z M14,5v14H4c-1.1,0-2-0.9-2-2V7c0-1.1,0.9-2,2-2H14z M9.5,12c0-0.83-0.67-1.5-1.5-1.5S6.5,11.17,6.5,12s0.67,1.5,1.5,1.5S9.5,12.83,9.5,12z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M16,11V5h4c1.1,0,2,0.9,2,2v4H16z M20,19c1.1,0,2-0.9,2-2v-4h-6v6H20z M14,5v14H4c-1.1,0-2-0.9-2-2V7c0-1.1,0.9-2,2-2H14z M9.5,12c0-0.83-0.67-1.5-1.5-1.5S6.5,11.17,6.5,12s0.67,1.5,1.5,1.5S9.5,12.83,9.5,12z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_bento = ic_bento; \ No newline at end of file diff --git a/dist/md/ic_bento_outline.js b/dist/md/ic_bento_outline.js new file mode 100644 index 000000000..30756541d --- /dev/null +++ b/dist/md/ic_bento_outline.js @@ -0,0 +1,35 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_bento_outline = void 0; +var ic_bento_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,5H4C2.9,5,2,5.9,2,7v10c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V7C22,5.9,21.1,5,20,5z M20,11h-6V7h6V11z M4,7h8v10H4V7z M14,17v-4h6v4H14z M9.5,12c0,0.83-0.67,1.5-1.5,1.5S6.5,12.83,6.5,12s0.67-1.5,1.5-1.5S9.5,11.17,9.5,12z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,5H4C2.9,5,2,5.9,2,7v10c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V7C22,5.9,21.1,5,20,5z M20,11h-6V7h6V11z M4,7h8v10H4V7z M14,17v-4h6v4H14z M9.5,12c0,0.83-0.67,1.5-1.5,1.5S6.5,12.83,6.5,12s0.67-1.5,1.5-1.5S9.5,11.17,9.5,12z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_bento_outline = ic_bento_outline; \ No newline at end of file diff --git a/dist/md/ic_bento_twotone.js b/dist/md/ic_bento_twotone.js new file mode 100644 index 000000000..1e0144f98 --- /dev/null +++ b/dist/md/ic_bento_twotone.js @@ -0,0 +1,53 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_bento_twotone = void 0; +var ic_bento_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "g", + "attribs": { + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M4,17h8V7H4V17z M8,10.5c0.83,0,1.5,0.67,1.5,1.5S8.83,13.5,8,13.5S6.5,12.83,6.5,12S7.17,10.5,8,10.5z M14,13h6v4h-6V13z M20,7v4h-6V7H20z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M4,17h8V7H4V17z M8,10.5c0.83,0,1.5,0.67,1.5,1.5S8.83,13.5,8,13.5S6.5,12.83,6.5,12S7.17,10.5,8,10.5z M14,13h6v4h-6V13z M20,7v4h-6V7H20z" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,5H4C2.9,5,2,5.9,2,7v10c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V7C22,5.9,21.1,5,20,5z M20,11h-6V7h6V11z M4,7h8v10H4V7z M14,17v-4h6v4H14z M9.5,12c0,0.83-0.67,1.5-1.5,1.5S6.5,12.83,6.5,12s0.67-1.5,1.5-1.5S9.5,11.17,9.5,12z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,5H4C2.9,5,2,5.9,2,7v10c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V7C22,5.9,21.1,5,20,5z M20,11h-6V7h6V11z M4,7h8v10H4V7z M14,17v-4h6v4H14z M9.5,12c0,0.83-0.67,1.5-1.5,1.5S6.5,12.83,6.5,12s0.67-1.5,1.5-1.5S9.5,11.17,9.5,12z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_bento_twotone = ic_bento_twotone; \ No newline at end of file diff --git a/dist/md/ic_bike_scooter.js b/dist/md/ic_bike_scooter.js new file mode 100644 index 000000000..96946f719 --- /dev/null +++ b/dist/md/ic_bike_scooter.js @@ -0,0 +1,79 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_bike_scooter = void 0; +var ic_bike_scooter = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M10,14h0.74L8.82,5.56C8.61,4.65,7.8,4,6.87,4H3v2h3.87l1.42,6.25c0,0-0.01,0-0.01,0C6.12,12.9,4.47,14.73,4.09,17H0v2h6 v-1C6,15.79,7.79,14,10,14z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M10,14h0.74L8.82,5.56C8.61,4.65,7.8,4,6.87,4H3v2h3.87l1.42,6.25c0,0-0.01,0-0.01,0C6.12,12.9,4.47,14.73,4.09,17H0v2h6 v-1C6,15.79,7.79,14,10,14z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19,8h-0.82l-1.35-3.69C16.55,3.52,15.8,3,14.96,3H11v2h3.96l1.1,3H10.4l0.46,2H15c-0.43,0.58-0.75,1.25-0.9,2h-2.79 l0.46,2h2.33c0.44,2.23,2.31,3.88,4.65,3.99c2.8,0.13,5.25-2.19,5.25-5C24,10.2,21.8,8,19,8z M19,16c-1.68,0-3-1.32-3-3 c0-0.93,0.41-1.73,1.05-2.28l0.96,2.64l1.88-0.68l-0.97-2.67c0.03,0,0.06-0.01,0.09-0.01c1.68,0,3,1.32,3,3S20.68,16,19,16z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,8h-0.82l-1.35-3.69C16.55,3.52,15.8,3,14.96,3H11v2h3.96l1.1,3H10.4l0.46,2H15c-0.43,0.58-0.75,1.25-0.9,2h-2.79 l0.46,2h2.33c0.44,2.23,2.31,3.88,4.65,3.99c2.8,0.13,5.25-2.19,5.25-5C24,10.2,21.8,8,19,8z M19,16c-1.68,0-3-1.32-3-3 c0-0.93,0.41-1.73,1.05-2.28l0.96,2.64l1.88-0.68l-0.97-2.67c0.03,0,0.06-0.01,0.09-0.01c1.68,0,3,1.32,3,3S20.68,16,19,16z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M10,15c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S11.66,15,10,15z M10,19c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S10.55,19,10,19z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M10,15c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S11.66,15,10,15z M10,19c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S10.55,19,10,19z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_bike_scooter = ic_bike_scooter; \ No newline at end of file diff --git a/dist/md/ic_bike_scooter_outline.js b/dist/md/ic_bike_scooter_outline.js new file mode 100644 index 000000000..d1bbf70b2 --- /dev/null +++ b/dist/md/ic_bike_scooter_outline.js @@ -0,0 +1,79 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_bike_scooter_outline = void 0; +var ic_bike_scooter_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M10,14h0.74L8.82,5.56C8.61,4.65,7.8,4,6.87,4H3v2h3.87l1.42,6.25c0,0-0.01,0-0.01,0C6.12,12.9,4.47,14.73,4.09,17H0v2h6 v-1C6,15.79,7.79,14,10,14z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M10,14h0.74L8.82,5.56C8.61,4.65,7.8,4,6.87,4H3v2h3.87l1.42,6.25c0,0-0.01,0-0.01,0C6.12,12.9,4.47,14.73,4.09,17H0v2h6 v-1C6,15.79,7.79,14,10,14z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19,8h-0.82l-1.35-3.69C16.55,3.52,15.8,3,14.96,3H11v2h3.96l1.1,3H10.4l0.46,2H15c-0.43,0.58-0.75,1.25-0.9,2h-2.79 l0.46,2h2.33c0.44,2.23,2.31,3.88,4.65,3.99c2.8,0.13,5.25-2.19,5.25-5C24,10.2,21.8,8,19,8z M19,16c-1.68,0-3-1.32-3-3 c0-0.93,0.41-1.73,1.05-2.28l0.96,2.64l1.88-0.68l-0.97-2.67c0.03,0,0.06-0.01,0.09-0.01c1.68,0,3,1.32,3,3S20.68,16,19,16z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,8h-0.82l-1.35-3.69C16.55,3.52,15.8,3,14.96,3H11v2h3.96l1.1,3H10.4l0.46,2H15c-0.43,0.58-0.75,1.25-0.9,2h-2.79 l0.46,2h2.33c0.44,2.23,2.31,3.88,4.65,3.99c2.8,0.13,5.25-2.19,5.25-5C24,10.2,21.8,8,19,8z M19,16c-1.68,0-3-1.32-3-3 c0-0.93,0.41-1.73,1.05-2.28l0.96,2.64l1.88-0.68l-0.97-2.67c0.03,0,0.06-0.01,0.09-0.01c1.68,0,3,1.32,3,3S20.68,16,19,16z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M10,15c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S11.66,15,10,15z M10,19c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S10.55,19,10,19z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M10,15c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S11.66,15,10,15z M10,19c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S10.55,19,10,19z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_bike_scooter_outline = ic_bike_scooter_outline; \ No newline at end of file diff --git a/dist/md/ic_bike_scooter_twotone.js b/dist/md/ic_bike_scooter_twotone.js new file mode 100644 index 000000000..0c44619d7 --- /dev/null +++ b/dist/md/ic_bike_scooter_twotone.js @@ -0,0 +1,79 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_bike_scooter_twotone = void 0; +var ic_bike_scooter_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M10,14h0.74L8.82,5.56C8.61,4.65,7.8,4,6.87,4H3v2h3.87l1.42,6.25c0,0-0.01,0-0.01,0C6.12,12.9,4.47,14.73,4.09,17H0v2h6 v-1C6,15.79,7.79,14,10,14z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M10,14h0.74L8.82,5.56C8.61,4.65,7.8,4,6.87,4H3v2h3.87l1.42,6.25c0,0-0.01,0-0.01,0C6.12,12.9,4.47,14.73,4.09,17H0v2h6 v-1C6,15.79,7.79,14,10,14z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19,8h-0.82l-1.35-3.69C16.55,3.52,15.8,3,14.96,3H11v2h3.96l1.1,3H10.4l0.46,2H15c-0.43,0.58-0.75,1.25-0.9,2h-2.79 l0.46,2h2.33c0.44,2.23,2.31,3.88,4.65,3.99c2.8,0.13,5.25-2.19,5.25-5C24,10.2,21.8,8,19,8z M19,16c-1.68,0-3-1.32-3-3 c0-0.93,0.41-1.73,1.05-2.28l0.96,2.64l1.88-0.68l-0.97-2.67c0.03,0,0.06-0.01,0.09-0.01c1.68,0,3,1.32,3,3S20.68,16,19,16z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,8h-0.82l-1.35-3.69C16.55,3.52,15.8,3,14.96,3H11v2h3.96l1.1,3H10.4l0.46,2H15c-0.43,0.58-0.75,1.25-0.9,2h-2.79 l0.46,2h2.33c0.44,2.23,2.31,3.88,4.65,3.99c2.8,0.13,5.25-2.19,5.25-5C24,10.2,21.8,8,19,8z M19,16c-1.68,0-3-1.32-3-3 c0-0.93,0.41-1.73,1.05-2.28l0.96,2.64l1.88-0.68l-0.97-2.67c0.03,0,0.06-0.01,0.09-0.01c1.68,0,3,1.32,3,3S20.68,16,19,16z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M10,15c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S11.66,15,10,15z M10,19c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S10.55,19,10,19z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M10,15c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S11.66,15,10,15z M10,19c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S10.55,19,10,19z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_bike_scooter_twotone = ic_bike_scooter_twotone; \ No newline at end of file diff --git a/dist/md/ic_biotech.js b/dist/md/ic_biotech.js new file mode 100644 index 000000000..e5c6ceedc --- /dev/null +++ b/dist/md/ic_biotech.js @@ -0,0 +1,83 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_biotech = void 0; +var ic_biotech = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M7,19c-1.1,0-2,0.9-2,2h14c0-1.1-0.9-2-2-2h-4v-2h3c1.1,0,2-0.9,2-2h-8c-1.66,0-3-1.34-3-3c0-1.09,0.59-2.04,1.46-2.56 C8.17,9.03,8,8.54,8,8c0-0.21,0.04-0.42,0.09-0.62C6.28,8.13,5,9.92,5,12c0,2.76,2.24,5,5,5v2H7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M7,19c-1.1,0-2,0.9-2,2h14c0-1.1-0.9-2-2-2h-4v-2h3c1.1,0,2-0.9,2-2h-8c-1.66,0-3-1.34-3-3c0-1.09,0.59-2.04,1.46-2.56 C8.17,9.03,8,8.54,8,8c0-0.21,0.04-0.42,0.09-0.62C6.28,8.13,5,9.92,5,12c0,2.76,2.24,5,5,5v2H7z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M10.56,5.51C11.91,5.54,13,6.64,13,8c0,0.75-0.33,1.41-0.85,1.87l0.59,1.62l0.94-0.34l0.34,0.94l1.88-0.68l-0.34-0.94 l0.94-0.34L13.76,2.6l-0.94,0.34L12.48,2L10.6,2.68l0.34,0.94L10,3.97L10.56,5.51z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M10.56,5.51C11.91,5.54,13,6.64,13,8c0,0.75-0.33,1.41-0.85,1.87l0.59,1.62l0.94-0.34l0.34,0.94l1.88-0.68l-0.34-0.94 l0.94-0.34L13.76,2.6l-0.94,0.34L12.48,2L10.6,2.68l0.34,0.94L10,3.97L10.56,5.51z" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "10.5", + "cy": "8", + "r": "1.5" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "10.5", + "cy": "8", + "r": "1.5" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_biotech = ic_biotech; \ No newline at end of file diff --git a/dist/md/ic_biotech_outline.js b/dist/md/ic_biotech_outline.js new file mode 100644 index 000000000..379652742 --- /dev/null +++ b/dist/md/ic_biotech_outline.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_biotech_outline = void 0; +var ic_biotech_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M7,19c-1.1,0-2,0.9-2,2h14c0-1.1-0.9-2-2-2h-4v-2h3c1.1,0,2-0.9,2-2h-8c-1.66,0-3-1.34-3-3c0-1.09,0.59-2.04,1.47-2.57 c0.41,0.59,1.06,1,1.83,1.06c0.7,0.06,1.36-0.19,1.85-0.62l0.59,1.61l0.94-0.34l0.34,0.94l1.88-0.68l-0.34-0.94l0.94-0.34 L13.76,2.6l-0.94,0.34L12.48,2L10.6,2.68l0.34,0.94L10,3.97l0.56,1.55C9.39,5.48,8.37,6.27,8.08,7.38C6.27,8.14,5,9.92,5,12 c0,2.76,2.24,5,5,5v2H7z M12.86,4.52l1.71,4.7l-0.94,0.34l-1.71-4.7L12.86,4.52z M10.5,7c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1 c-0.55,0-1-0.45-1-1C9.5,7.45,9.95,7,10.5,7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M7,19c-1.1,0-2,0.9-2,2h14c0-1.1-0.9-2-2-2h-4v-2h3c1.1,0,2-0.9,2-2h-8c-1.66,0-3-1.34-3-3c0-1.09,0.59-2.04,1.47-2.57 c0.41,0.59,1.06,1,1.83,1.06c0.7,0.06,1.36-0.19,1.85-0.62l0.59,1.61l0.94-0.34l0.34,0.94l1.88-0.68l-0.34-0.94l0.94-0.34 L13.76,2.6l-0.94,0.34L12.48,2L10.6,2.68l0.34,0.94L10,3.97l0.56,1.55C9.39,5.48,8.37,6.27,8.08,7.38C6.27,8.14,5,9.92,5,12 c0,2.76,2.24,5,5,5v2H7z M12.86,4.52l1.71,4.7l-0.94,0.34l-1.71-4.7L12.86,4.52z M10.5,7c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1 c-0.55,0-1-0.45-1-1C9.5,7.45,9.95,7,10.5,7z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_biotech_outline = ic_biotech_outline; \ No newline at end of file diff --git a/dist/md/ic_biotech_twotone.js b/dist/md/ic_biotech_twotone.js new file mode 100644 index 000000000..c78944a48 --- /dev/null +++ b/dist/md/ic_biotech_twotone.js @@ -0,0 +1,95 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_biotech_twotone = void 0; +var ic_biotech_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "height": "5", + "opacity": ".3", + "transform": "matrix(0.9397 -0.342 0.342 0.9397 -1.6091 4.9556)", + "width": "1", + "x": "12.75", + "y": "4.54" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "5", + "opacity": ".3", + "transform": "matrix(0.9397 -0.342 0.342 0.9397 -1.6091 4.9556)", + "width": "1", + "x": "12.75", + "y": "4.54" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "10.5", + "cy": "8", + "opacity": ".3", + "r": "1" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "10.5", + "cy": "8", + "opacity": ".3", + "r": "1" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M7,19c-1.1,0-2,0.9-2,2h14c0-1.1-0.9-2-2-2h-4v-2h3c1.1,0,2-0.9,2-2h-8c-1.66,0-3-1.34-3-3c0-1.09,0.59-2.04,1.47-2.57 c0.41,0.59,1.06,1,1.83,1.06c0.7,0.06,1.36-0.19,1.85-0.62l0.59,1.61l0.94-0.34l0.34,0.94l1.88-0.68l-0.34-0.94l0.94-0.34 L13.76,2.6l-0.94,0.34L12.48,2L10.6,2.68l0.34,0.94L10,3.97l0.56,1.55C9.39,5.48,8.37,6.27,8.08,7.38C6.27,8.14,5,9.92,5,12 c0,2.76,2.24,5,5,5v2H7z M12.86,4.52l1.71,4.7l-0.94,0.34l-1.71-4.7L12.86,4.52z M10.5,7c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1 c-0.55,0-1-0.45-1-1C9.5,7.45,9.95,7,10.5,7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M7,19c-1.1,0-2,0.9-2,2h14c0-1.1-0.9-2-2-2h-4v-2h3c1.1,0,2-0.9,2-2h-8c-1.66,0-3-1.34-3-3c0-1.09,0.59-2.04,1.47-2.57 c0.41,0.59,1.06,1,1.83,1.06c0.7,0.06,1.36-0.19,1.85-0.62l0.59,1.61l0.94-0.34l0.34,0.94l1.88-0.68l-0.34-0.94l0.94-0.34 L13.76,2.6l-0.94,0.34L12.48,2L10.6,2.68l0.34,0.94L10,3.97l0.56,1.55C9.39,5.48,8.37,6.27,8.08,7.38C6.27,8.14,5,9.92,5,12 c0,2.76,2.24,5,5,5v2H7z M12.86,4.52l1.71,4.7l-0.94,0.34l-1.71-4.7L12.86,4.52z M10.5,7c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1 c-0.55,0-1-0.45-1-1C9.5,7.45,9.95,7,10.5,7z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_biotech_twotone = ic_biotech_twotone; \ No newline at end of file diff --git a/dist/md/ic_block.js b/dist/md/ic_block.js new file mode 100644 index 000000000..a9c39572a --- /dev/null +++ b/dist/md/ic_block.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_block = void 0; +var ic_block = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM4 12c0-4.42 3.58-8 8-8 1.85 0 3.55.63 4.9 1.69L5.69 16.9C4.63 15.55 4 13.85 4 12zm8 8c-1.85 0-3.55-.63-4.9-1.69L18.31 7.1C19.37 8.45 20 10.15 20 12c0 4.42-3.58 8-8 8z" + }, + "children": [] + }] +}; +exports.ic_block = ic_block; \ No newline at end of file diff --git a/dist/md/ic_block_flipped.js b/dist/md/ic_block_flipped.js new file mode 100644 index 000000000..71cad0c23 --- /dev/null +++ b/dist/md/ic_block_flipped.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_block_flipped = void 0; +var ic_block_flipped = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,12c0-5.5-4.5-10-10-10S2,6.5,2,12s4.5,10,10,10S22,17.5,22,12z M5.7,7.1l11.2,11.2c-1.3,1.1-3,1.7-4.9,1.7 c-4.4,0-8-3.6-8-8C4,10.1,4.6,8.4,5.7,7.1z M20,12c0,1.9-0.6,3.6-1.7,4.9L7.1,5.7C8.4,4.6,10.1,4,12,4C16.4,4,20,7.6,20,12z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,12c0-5.5-4.5-10-10-10S2,6.5,2,12s4.5,10,10,10S22,17.5,22,12z M5.7,7.1l11.2,11.2c-1.3,1.1-3,1.7-4.9,1.7 c-4.4,0-8-3.6-8-8C4,10.1,4.6,8.4,5.7,7.1z M20,12c0,1.9-0.6,3.6-1.7,4.9L7.1,5.7C8.4,4.6,10.1,4,12,4C16.4,4,20,7.6,20,12z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_block_flipped = ic_block_flipped; \ No newline at end of file diff --git a/dist/md/ic_block_outline.js b/dist/md/ic_block_outline.js new file mode 100644 index 000000000..9f3790f2c --- /dev/null +++ b/dist/md/ic_block_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_block_outline = void 0; +var ic_block_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM4 12c0-4.42 3.58-8 8-8 1.85 0 3.55.63 4.9 1.69L5.69 16.9C4.63 15.55 4 13.85 4 12zm8 8c-1.85 0-3.55-.63-4.9-1.69L18.31 7.1C19.37 8.45 20 10.15 20 12c0 4.42-3.58 8-8 8z" + }, + "children": [] + }] +}; +exports.ic_block_outline = ic_block_outline; \ No newline at end of file diff --git a/dist/md/ic_block_twotone.js b/dist/md/ic_block_twotone.js new file mode 100644 index 000000000..f6b39eed4 --- /dev/null +++ b/dist/md/ic_block_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_block_twotone = void 0; +var ic_block_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM4 12c0-4.42 3.58-8 8-8 1.85 0 3.55.63 4.9 1.69L5.69 16.9C4.63 15.55 4 13.85 4 12zm8 8c-1.85 0-3.55-.63-4.9-1.69L18.31 7.1C19.37 8.45 20 10.15 20 12c0 4.42-3.58 8-8 8z" + }, + "children": [] + }] +}; +exports.ic_block_twotone = ic_block_twotone; \ No newline at end of file diff --git a/dist/md/ic_bluetooth.js b/dist/md/ic_bluetooth.js new file mode 100644 index 000000000..d0fe2c0e4 --- /dev/null +++ b/dist/md/ic_bluetooth.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_bluetooth = void 0; +var ic_bluetooth = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17.71 7.71L12 2h-1v7.59L6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 5.83l1.88 1.88L13 9.59V5.83zm1.88 10.46L13 18.17v-3.76l1.88 1.88z" + }, + "children": [] + }] +}; +exports.ic_bluetooth = ic_bluetooth; \ No newline at end of file diff --git a/dist/md/ic_bluetooth_audio.js b/dist/md/ic_bluetooth_audio.js new file mode 100644 index 000000000..4860fbff1 --- /dev/null +++ b/dist/md/ic_bluetooth_audio.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_bluetooth_audio = void 0; +var ic_bluetooth_audio = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14.24 12.01l2.32 2.32c.28-.72.44-1.51.44-2.33 0-.82-.16-1.59-.43-2.31l-2.33 2.32zm5.29-5.3l-1.26 1.26c.63 1.21.98 2.57.98 4.02s-.36 2.82-.98 4.02l1.2 1.2c.97-1.54 1.54-3.36 1.54-5.31-.01-1.89-.55-3.67-1.48-5.19zm-3.82 1L10 2H9v7.59L4.41 5 3 6.41 8.59 12 3 17.59 4.41 19 9 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM11 5.83l1.88 1.88L11 9.59V5.83zm1.88 10.46L11 18.17v-3.76l1.88 1.88z" + }, + "children": [] + }] +}; +exports.ic_bluetooth_audio = ic_bluetooth_audio; \ No newline at end of file diff --git a/dist/md/ic_bluetooth_audio_outline.js b/dist/md/ic_bluetooth_audio_outline.js new file mode 100644 index 000000000..8d55b6a24 --- /dev/null +++ b/dist/md/ic_bluetooth_audio_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_bluetooth_audio_outline = void 0; +var ic_bluetooth_audio_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14.24 12.01l2.32 2.32c.28-.72.44-1.51.44-2.33s-.16-1.59-.43-2.31l-2.33 2.32zm5.29-5.3l-1.26 1.26c.63 1.21.98 2.57.98 4.02s-.36 2.82-.98 4.02l1.2 1.2c.97-1.54 1.54-3.36 1.54-5.31-.01-1.89-.55-3.67-1.48-5.19zm-3.82 1L10 2H9v7.59L4.41 5 3 6.41 8.59 12 3 17.59 4.41 19 9 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM11 5.83l1.88 1.88L11 9.59V5.83zm1.88 10.46L11 18.17v-3.76l1.88 1.88z" + }, + "children": [] + }] +}; +exports.ic_bluetooth_audio_outline = ic_bluetooth_audio_outline; \ No newline at end of file diff --git a/dist/md/ic_bluetooth_audio_twotone.js b/dist/md/ic_bluetooth_audio_twotone.js new file mode 100644 index 000000000..536eace68 --- /dev/null +++ b/dist/md/ic_bluetooth_audio_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_bluetooth_audio_twotone = void 0; +var ic_bluetooth_audio_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14.24 12.01l2.32 2.32c.28-.72.44-1.51.44-2.33s-.16-1.59-.43-2.31l-2.33 2.32zm5.29-5.3l-1.26 1.26c.63 1.21.98 2.57.98 4.02s-.36 2.82-.98 4.02l1.2 1.2c.97-1.54 1.54-3.36 1.54-5.31-.01-1.89-.55-3.67-1.48-5.19zm-3.82 1L10 2H9v7.59L4.41 5 3 6.41 8.59 12 3 17.59 4.41 19 9 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM11 5.83l1.88 1.88L11 9.59V5.83zm1.88 10.46L11 18.17v-3.76l1.88 1.88z" + }, + "children": [] + }] +}; +exports.ic_bluetooth_audio_twotone = ic_bluetooth_audio_twotone; \ No newline at end of file diff --git a/dist/md/ic_bluetooth_connected.js b/dist/md/ic_bluetooth_connected.js new file mode 100644 index 000000000..25f791e86 --- /dev/null +++ b/dist/md/ic_bluetooth_connected.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_bluetooth_connected = void 0; +var ic_bluetooth_connected = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 12l-2-2-2 2 2 2 2-2zm10.71-4.29L12 2h-1v7.59L6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 5.83l1.88 1.88L13 9.59V5.83zm1.88 10.46L13 18.17v-3.76l1.88 1.88zM19 10l-2 2 2 2 2-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_bluetooth_connected = ic_bluetooth_connected; \ No newline at end of file diff --git a/dist/md/ic_bluetooth_connected_outline.js b/dist/md/ic_bluetooth_connected_outline.js new file mode 100644 index 000000000..f76e906cf --- /dev/null +++ b/dist/md/ic_bluetooth_connected_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_bluetooth_connected_outline = void 0; +var ic_bluetooth_connected_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 12l-2-2-2 2 2 2 2-2zm10.71-4.29L12 2h-1v7.59L6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 5.83l1.88 1.88L13 9.59V5.83zm1.88 10.46L13 18.17v-3.76l1.88 1.88zM19 10l-2 2 2 2 2-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_bluetooth_connected_outline = ic_bluetooth_connected_outline; \ No newline at end of file diff --git a/dist/md/ic_bluetooth_connected_twotone.js b/dist/md/ic_bluetooth_connected_twotone.js new file mode 100644 index 000000000..0ac26b87b --- /dev/null +++ b/dist/md/ic_bluetooth_connected_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_bluetooth_connected_twotone = void 0; +var ic_bluetooth_connected_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 12l-2-2-2 2 2 2 2-2zm10.71-4.29L12 2h-1v7.59L6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 5.83l1.88 1.88L13 9.59V5.83zm1.88 10.46L13 18.17v-3.76l1.88 1.88zM19 10l-2 2 2 2 2-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_bluetooth_connected_twotone = ic_bluetooth_connected_twotone; \ No newline at end of file diff --git a/dist/md/ic_bluetooth_disabled.js b/dist/md/ic_bluetooth_disabled.js new file mode 100644 index 000000000..f4b1504ee --- /dev/null +++ b/dist/md/ic_bluetooth_disabled.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_bluetooth_disabled = void 0; +var ic_bluetooth_disabled = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 5.83l1.88 1.88-1.6 1.6 1.41 1.41 3.02-3.02L12 2h-1v5.03l2 2v-3.2zM5.41 4L4 5.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l4.29-4.29 2.3 2.29L20 18.59 5.41 4zM13 18.17v-3.76l1.88 1.88L13 18.17z" + }, + "children": [] + }] +}; +exports.ic_bluetooth_disabled = ic_bluetooth_disabled; \ No newline at end of file diff --git a/dist/md/ic_bluetooth_disabled_outline.js b/dist/md/ic_bluetooth_disabled_outline.js new file mode 100644 index 000000000..345b071fe --- /dev/null +++ b/dist/md/ic_bluetooth_disabled_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_bluetooth_disabled_outline = void 0; +var ic_bluetooth_disabled_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 5.83l1.88 1.88-1.6 1.6 1.41 1.41 3.02-3.02L12 2h-1v5.03l2 2v-3.2zM5.41 4L4 5.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l4.29-4.29 2.3 2.29L20 18.59 5.41 4zM13 18.17v-3.76l1.88 1.88L13 18.17z" + }, + "children": [] + }] +}; +exports.ic_bluetooth_disabled_outline = ic_bluetooth_disabled_outline; \ No newline at end of file diff --git a/dist/md/ic_bluetooth_disabled_twotone.js b/dist/md/ic_bluetooth_disabled_twotone.js new file mode 100644 index 000000000..e0cdd44be --- /dev/null +++ b/dist/md/ic_bluetooth_disabled_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_bluetooth_disabled_twotone = void 0; +var ic_bluetooth_disabled_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 5.83l1.88 1.88-1.6 1.6 1.41 1.41 3.02-3.02L12 2h-1v5.03l2 2v-3.2zM5.41 4L4 5.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l4.29-4.29 2.3 2.29L20 18.59 5.41 4zM13 18.17v-3.76l1.88 1.88L13 18.17z" + }, + "children": [] + }] +}; +exports.ic_bluetooth_disabled_twotone = ic_bluetooth_disabled_twotone; \ No newline at end of file diff --git a/dist/md/ic_bluetooth_outline.js b/dist/md/ic_bluetooth_outline.js new file mode 100644 index 000000000..d0faec013 --- /dev/null +++ b/dist/md/ic_bluetooth_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_bluetooth_outline = void 0; +var ic_bluetooth_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17.71 7.71L12 2h-1v7.59L6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 5.83l1.88 1.88L13 9.59V5.83zm1.88 10.46L13 18.17v-3.76l1.88 1.88z" + }, + "children": [] + }] +}; +exports.ic_bluetooth_outline = ic_bluetooth_outline; \ No newline at end of file diff --git a/dist/md/ic_bluetooth_searching.js b/dist/md/ic_bluetooth_searching.js new file mode 100644 index 000000000..2a3793c26 --- /dev/null +++ b/dist/md/ic_bluetooth_searching.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_bluetooth_searching = void 0; +var ic_bluetooth_searching = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14.24 12.01l2.32 2.32c.28-.72.44-1.51.44-2.33 0-.82-.16-1.59-.43-2.31l-2.33 2.32zm5.29-5.3l-1.26 1.26c.63 1.21.98 2.57.98 4.02s-.36 2.82-.98 4.02l1.2 1.2c.97-1.54 1.54-3.36 1.54-5.31-.01-1.89-.55-3.67-1.48-5.19zm-3.82 1L10 2H9v7.59L4.41 5 3 6.41 8.59 12 3 17.59 4.41 19 9 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM11 5.83l1.88 1.88L11 9.59V5.83zm1.88 10.46L11 18.17v-3.76l1.88 1.88z" + }, + "children": [] + }] +}; +exports.ic_bluetooth_searching = ic_bluetooth_searching; \ No newline at end of file diff --git a/dist/md/ic_bluetooth_searching_outline.js b/dist/md/ic_bluetooth_searching_outline.js new file mode 100644 index 000000000..a9b92b8a5 --- /dev/null +++ b/dist/md/ic_bluetooth_searching_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_bluetooth_searching_outline = void 0; +var ic_bluetooth_searching_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14.24 12.01l2.32 2.32c.28-.72.44-1.51.44-2.33s-.16-1.59-.43-2.31l-2.33 2.32zm5.29-5.3l-1.26 1.26c.63 1.21.98 2.57.98 4.02s-.36 2.82-.98 4.02l1.2 1.2c.97-1.54 1.54-3.36 1.54-5.31-.01-1.89-.55-3.67-1.48-5.19zm-3.82 1L10 2H9v7.59L4.41 5 3 6.41 8.59 12 3 17.59 4.41 19 9 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM11 5.83l1.88 1.88L11 9.59V5.83zm1.88 10.46L11 18.17v-3.76l1.88 1.88z" + }, + "children": [] + }] +}; +exports.ic_bluetooth_searching_outline = ic_bluetooth_searching_outline; \ No newline at end of file diff --git a/dist/md/ic_bluetooth_searching_twotone.js b/dist/md/ic_bluetooth_searching_twotone.js new file mode 100644 index 000000000..5b0193e10 --- /dev/null +++ b/dist/md/ic_bluetooth_searching_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_bluetooth_searching_twotone = void 0; +var ic_bluetooth_searching_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14.24 12.01l2.32 2.32c.28-.72.44-1.51.44-2.33s-.16-1.59-.43-2.31l-2.33 2.32zm5.29-5.3l-1.26 1.26c.63 1.21.98 2.57.98 4.02s-.36 2.82-.98 4.02l1.2 1.2c.97-1.54 1.54-3.36 1.54-5.31-.01-1.89-.55-3.67-1.48-5.19zm-3.82 1L10 2H9v7.59L4.41 5 3 6.41 8.59 12 3 17.59 4.41 19 9 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM11 5.83l1.88 1.88L11 9.59V5.83zm1.88 10.46L11 18.17v-3.76l1.88 1.88z" + }, + "children": [] + }] +}; +exports.ic_bluetooth_searching_twotone = ic_bluetooth_searching_twotone; \ No newline at end of file diff --git a/dist/md/ic_bluetooth_twotone.js b/dist/md/ic_bluetooth_twotone.js new file mode 100644 index 000000000..02a6622b9 --- /dev/null +++ b/dist/md/ic_bluetooth_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_bluetooth_twotone = void 0; +var ic_bluetooth_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17.71 7.71L12 2h-1v7.59L6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 5.83l1.88 1.88L13 9.59V5.83zm1.88 10.46L13 18.17v-3.76l1.88 1.88z" + }, + "children": [] + }] +}; +exports.ic_bluetooth_twotone = ic_bluetooth_twotone; \ No newline at end of file diff --git a/dist/md/ic_blur_circular.js b/dist/md/ic_blur_circular.js new file mode 100644 index 000000000..9178489f8 --- /dev/null +++ b/dist/md/ic_blur_circular.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_blur_circular = void 0; +var ic_blur_circular = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zM7 9.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm3 7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-3-3c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm3-6c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM14 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-1.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm3 6c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-4c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm2-3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-3.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z" + }, + "children": [] + }] +}; +exports.ic_blur_circular = ic_blur_circular; \ No newline at end of file diff --git a/dist/md/ic_blur_circular_outline.js b/dist/md/ic_blur_circular_outline.js new file mode 100644 index 000000000..bb42d8e45 --- /dev/null +++ b/dist/md/ic_blur_circular_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_blur_circular_outline = void 0; +var ic_blur_circular_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zM7 9.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm3 7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-3-3c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm3-6c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM14 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-1.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm3 6c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-4c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm2-3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-3.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z" + }, + "children": [] + }] +}; +exports.ic_blur_circular_outline = ic_blur_circular_outline; \ No newline at end of file diff --git a/dist/md/ic_blur_circular_twotone.js b/dist/md/ic_blur_circular_twotone.js new file mode 100644 index 000000000..173669685 --- /dev/null +++ b/dist/md/ic_blur_circular_twotone.js @@ -0,0 +1,74 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_blur_circular_twotone = void 0; +var ic_blur_circular_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 7.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "14", + "cy": "10", + "r": "1" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "14", + "cy": "14", + "r": "1" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 16.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "10", + "cy": "10", + "r": "1" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 13.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zM7 9.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "10", + "cy": "14", + "r": "1" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 7.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm4 9c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm3-7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0 4c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z" + }, + "children": [] + }] +}; +exports.ic_blur_circular_twotone = ic_blur_circular_twotone; \ No newline at end of file diff --git a/dist/md/ic_blur_linear.js b/dist/md/ic_blur_linear.js new file mode 100644 index 000000000..b453d6d62 --- /dev/null +++ b/dist/md/ic_blur_linear.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_blur_linear = void 0; +var ic_blur_linear = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 17.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM9 13c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zM3 21h18v-2H3v2zM5 9.5c.83 0 1.5-.67 1.5-1.5S5.83 6.5 5 6.5 3.5 7.17 3.5 8 4.17 9.5 5 9.5zm0 4c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM9 17c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm8-.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM3 3v2h18V3H3zm14 5.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm0 4c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM13 9c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1z" + }, + "children": [] + }] +}; +exports.ic_blur_linear = ic_blur_linear; \ No newline at end of file diff --git a/dist/md/ic_blur_linear_outline.js b/dist/md/ic_blur_linear_outline.js new file mode 100644 index 000000000..93f6ef02e --- /dev/null +++ b/dist/md/ic_blur_linear_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_blur_linear_outline = void 0; +var ic_blur_linear_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 17.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM9 13c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zM3 21h18v-2H3v2zM5 9.5c.83 0 1.5-.67 1.5-1.5S5.83 6.5 5 6.5 3.5 7.17 3.5 8 4.17 9.5 5 9.5zm0 4c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM9 17c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm8-.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM3 3v2h18V3H3zm14 5.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm0 4c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM13 9c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1z" + }, + "children": [] + }] +}; +exports.ic_blur_linear_outline = ic_blur_linear_outline; \ No newline at end of file diff --git a/dist/md/ic_blur_linear_twotone.js b/dist/md/ic_blur_linear_twotone.js new file mode 100644 index 000000000..6886d6c7c --- /dev/null +++ b/dist/md/ic_blur_linear_twotone.js @@ -0,0 +1,120 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_blur_linear_twotone = void 0; +var ic_blur_linear_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 16.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "9", + "cy": "12", + "r": "1" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "13", + "cy": "8", + "r": "1" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "13", + "cy": "16", + "r": "1" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 12.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "13", + "cy": "12", + "r": "1" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 3h18v2H3z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "5", + "cy": "8", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "5", + "cy": "12", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "5", + "cy": "16", + "r": "1.5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 8.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "9", + "cy": "16", + "r": "1" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "9", + "cy": "8", + "r": "1" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 19h18v2H3z" + }, + "children": [] + }] +}; +exports.ic_blur_linear_twotone = ic_blur_linear_twotone; \ No newline at end of file diff --git a/dist/md/ic_blur_off.js b/dist/md/ic_blur_off.js new file mode 100644 index 000000000..934aa589d --- /dev/null +++ b/dist/md/ic_blur_off.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_blur_off = void 0; +var ic_blur_off = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm-.2 4.48l.2.02c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5l.02.2c.09.67.61 1.19 1.28 1.28zM14 3.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm-4 0c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm11 7c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM10 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm8 8c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm-4 13.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM2.5 5.27l3.78 3.78L6 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1c0-.1-.03-.19-.06-.28l2.81 2.81c-.71.11-1.25.73-1.25 1.47 0 .83.67 1.5 1.5 1.5.74 0 1.36-.54 1.47-1.25l2.81 2.81c-.09-.03-.18-.06-.28-.06-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1c0-.1-.03-.19-.06-.28l3.78 3.78L20 20.23 3.77 4 2.5 5.27zM10 17c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm11-3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM6 13c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zM3 9.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 11c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM6 17c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm-3-3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z" + }, + "children": [] + }] +}; +exports.ic_blur_off = ic_blur_off; \ No newline at end of file diff --git a/dist/md/ic_blur_off_outline.js b/dist/md/ic_blur_off_outline.js new file mode 100644 index 000000000..e0fb5303b --- /dev/null +++ b/dist/md/ic_blur_off_outline.js @@ -0,0 +1,112 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_blur_off_outline = void 0; +var ic_blur_off_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "14", + "cy": "6", + "r": "1" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13.8 11.48l.2.02c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5l.02.2c.09.67.61 1.19 1.28 1.28zM14 3.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm-4 0c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "18", + "cy": "10", + "r": "1" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "18", + "cy": "6", + "r": "1" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 10.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "10", + "cy": "6", + "r": "1" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "18", + "cy": "14", + "r": "1" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "6", + "cy": "18", + "r": "1" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 20.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7-7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-18 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "10", + "cy": "18", + "r": "1" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 9.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 11c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "6", + "cy": "14", + "r": "1" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M2.5 5.27L6 8.77l.28.28L6 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1c0-.1-.03-.19-.06-.28l2.81 2.81c-.71.11-1.25.73-1.25 1.47 0 .83.67 1.5 1.5 1.5.74 0 1.36-.54 1.47-1.25l2.81 2.81c-.09-.03-.18-.06-.28-.06-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1c0-.1-.03-.19-.06-.28l3.78 3.78h.01l1.41-1.41L3.91 3.86 2.5 5.27z" + }, + "children": [] + }] +}; +exports.ic_blur_off_outline = ic_blur_off_outline; \ No newline at end of file diff --git a/dist/md/ic_blur_off_twotone.js b/dist/md/ic_blur_off_twotone.js new file mode 100644 index 000000000..6ea46e3ad --- /dev/null +++ b/dist/md/ic_blur_off_twotone.js @@ -0,0 +1,112 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_blur_off_twotone = void 0; +var ic_blur_off_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "14", + "cy": "6", + "r": "1" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13.8 11.48l.2.02c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5l.02.2c.09.67.61 1.19 1.28 1.28zM14 3.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm-4 0c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "18", + "cy": "10", + "r": "1" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "18", + "cy": "6", + "r": "1" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 10.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "10", + "cy": "6", + "r": "1" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "18", + "cy": "14", + "r": "1" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "6", + "cy": "18", + "r": "1" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 20.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7-7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-18 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "10", + "cy": "18", + "r": "1" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 9.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 11c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "6", + "cy": "14", + "r": "1" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M2.5 5.27L6 8.77l.28.28L6 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1c0-.1-.03-.19-.06-.28l2.81 2.81c-.71.11-1.25.73-1.25 1.47 0 .83.67 1.5 1.5 1.5.74 0 1.36-.54 1.47-1.25l2.81 2.81c-.09-.03-.18-.06-.28-.06-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1c0-.1-.03-.19-.06-.28l3.78 3.78h.01l1.41-1.41L3.91 3.86 2.5 5.27z" + }, + "children": [] + }] +}; +exports.ic_blur_off_twotone = ic_blur_off_twotone; \ No newline at end of file diff --git a/dist/md/ic_blur_on.js b/dist/md/ic_blur_on.js new file mode 100644 index 000000000..f613f15ed --- /dev/null +++ b/dist/md/ic_blur_on.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_blur_on = void 0; +var ic_blur_on = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 13c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm-3 .5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM6 5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm15 5.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM14 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-3.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm-11 10c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-17c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM10 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 5.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm8 .5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm3 8.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM14 17c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-4-12c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0 8.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm4-4.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0-4c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5z" + }, + "children": [] + }] +}; +exports.ic_blur_on = ic_blur_on; \ No newline at end of file diff --git a/dist/md/ic_blur_on_outline.js b/dist/md/ic_blur_on_outline.js new file mode 100644 index 000000000..39a08c43c --- /dev/null +++ b/dist/md/ic_blur_on_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_blur_on_outline = void 0; +var ic_blur_on_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 13c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm-3 .5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM6 5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm15 5.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM14 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-3.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm-11 10c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-17c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM10 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 5.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm8 .5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm3 8.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM14 17c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-4-12c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0 8.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm4-4.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0-4c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5z" + }, + "children": [] + }] +}; +exports.ic_blur_on_outline = ic_blur_on_outline; \ No newline at end of file diff --git a/dist/md/ic_blur_on_twotone.js b/dist/md/ic_blur_on_twotone.js new file mode 100644 index 000000000..9707e412b --- /dev/null +++ b/dist/md/ic_blur_on_twotone.js @@ -0,0 +1,176 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_blur_on_twotone = void 0; +var ic_blur_on_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "14", + "cy": "10", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "14", + "cy": "18", + "r": "1" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "14", + "cy": "14", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "14", + "cy": "6", + "r": "1" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 9.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM14.5 3c0-.28-.22-.5-.5-.5s-.5.22-.5.5.22.5.5.5.5-.22.5-.5zM21 14.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "18", + "cy": "18", + "r": "1" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13.5 21c0 .28.22.5.5.5s.5-.22.5-.5-.22-.5-.5-.5-.5.22-.5.5zM21 10.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "18", + "cy": "14", + "r": "1" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "18", + "cy": "6", + "r": "1" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "6", + "cy": "18", + "r": "1" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "6", + "cy": "14", + "r": "1" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3.5 14c0-.28-.22-.5-.5-.5s-.5.22-.5.5.22.5.5.5.5-.22.5-.5z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "10", + "cy": "6", + "r": "1" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "6", + "cy": "10", + "r": "1" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "6", + "cy": "6", + "r": "1" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9.5 21c0 .28.22.5.5.5s.5-.22.5-.5-.22-.5-.5-.5-.5.22-.5.5z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "10", + "cy": "18", + "r": "1" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10.5 3c0-.28-.22-.5-.5-.5s-.5.22-.5.5.22.5.5.5.5-.22.5-.5z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "10", + "cy": "14", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "10", + "cy": "10", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "18", + "cy": "10", + "r": "1" + }, + "children": [] + }] +}; +exports.ic_blur_on_twotone = ic_blur_on_twotone; \ No newline at end of file diff --git a/dist/md/ic_bolt.js b/dist/md/ic_bolt.js new file mode 100644 index 000000000..44484c62b --- /dev/null +++ b/dist/md/ic_bolt.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_bolt = void 0; +var ic_bolt = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M11 21h-1l1-7H7.5c-.58 0-.57-.32-.38-.66.19-.34.05-.08.07-.12C8.48 10.94 10.42 7.54 13 3h1l-1 7h3.5c.49 0 .56.33.47.51l-.07.15C12.96 17.55 11 21 11 21z" + }, + "children": [] + }] +}; +exports.ic_bolt = ic_bolt; \ No newline at end of file diff --git a/dist/md/ic_book.js b/dist/md/ic_book.js new file mode 100644 index 000000000..6841854ef --- /dev/null +++ b/dist/md/ic_book.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_book = void 0; +var ic_book = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM6 4h5v8l-2.5-1.5L6 12V4z" + }, + "children": [] + }] +}; +exports.ic_book = ic_book; \ No newline at end of file diff --git a/dist/md/ic_book_online.js b/dist/md/ic_book_online.js new file mode 100644 index 000000000..953bc7db1 --- /dev/null +++ b/dist/md/ic_book_online.js @@ -0,0 +1,35 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_book_online = void 0; +var ic_book_online = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,1H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1,17,1z M7,18V6h10v12H7z M16,11V9.14 C16,8.51,15.55,8,15,8H9C8.45,8,8,8.51,8,9.14l0,1.96c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1l0,1.76C8,15.49,8.45,16,9,16h6 c0.55,0,1-0.51,1-1.14V13c-0.55,0-1-0.45-1-1C15,11.45,15.45,11,16,11z M12.5,14.5h-1v-1h1V14.5z M12.5,12.5h-1v-1h1V12.5z M12.5,10.5h-1v-1h1V10.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,1H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1,17,1z M7,18V6h10v12H7z M16,11V9.14 C16,8.51,15.55,8,15,8H9C8.45,8,8,8.51,8,9.14l0,1.96c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1l0,1.76C8,15.49,8.45,16,9,16h6 c0.55,0,1-0.51,1-1.14V13c-0.55,0-1-0.45-1-1C15,11.45,15.45,11,16,11z M12.5,14.5h-1v-1h1V14.5z M12.5,12.5h-1v-1h1V12.5z M12.5,10.5h-1v-1h1V10.5z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_book_online = ic_book_online; \ No newline at end of file diff --git a/dist/md/ic_book_online_outline.js b/dist/md/ic_book_online_outline.js new file mode 100644 index 000000000..28093c1bf --- /dev/null +++ b/dist/md/ic_book_online_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_book_online_outline = void 0; +var ic_book_online_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17,4H7V3h10V4z M17,21H7v-1h10V21z M17,1H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1,17,1 L17,1z M7,6h10v12H7V6z M16,11V9.14C16,8.51,15.55,8,15,8H9C8.45,8,8,8.51,8,9.14l0,1.96c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1 l0,1.76C8,15.49,8.45,16,9,16h6c0.55,0,1-0.51,1-1.14V13c-0.55,0-1-0.45-1-1C15,11.45,15.45,11,16,11z M12.5,14.5h-1v-1h1V14.5z M12.5,12.5h-1v-1h1V12.5z M12.5,10.5h-1v-1h1V10.5z" + }, + "children": [] + }] +}; +exports.ic_book_online_outline = ic_book_online_outline; \ No newline at end of file diff --git a/dist/md/ic_book_online_twotone.js b/dist/md/ic_book_online_twotone.js new file mode 100644 index 000000000..dfb914bc6 --- /dev/null +++ b/dist/md/ic_book_online_twotone.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_book_online_twotone = void 0; +var ic_book_online_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17,4H7V3h10V4z M17,21H7v-1h10V21z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17,4H7V3h10V4z M17,21H7v-1h10V21z M17,1H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1,17,1 L17,1z M7,6h10v12H7V6z M16,11V9.14C16,8.51,15.55,8,15,8H9C8.45,8,8,8.51,8,9.14l0,1.96c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1 l0,1.76C8,15.49,8.45,16,9,16h6c0.55,0,1-0.51,1-1.14V13c-0.55,0-1-0.45-1-1C15,11.45,15.45,11,16,11z M12.5,14.5h-1v-1h1V14.5z M12.5,12.5h-1v-1h1V12.5z M12.5,10.5h-1v-1h1V10.5z" + }, + "children": [] + }] +}; +exports.ic_book_online_twotone = ic_book_online_twotone; \ No newline at end of file diff --git a/dist/md/ic_book_outline.js b/dist/md/ic_book_outline.js new file mode 100644 index 000000000..4c9bdd5a9 --- /dev/null +++ b/dist/md/ic_book_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_book_outline = void 0; +var ic_book_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM9 4h2v5l-1-.75L9 9V4zm9 16H6V4h1v9l3-2.25L13 13V4h5v16z" + }, + "children": [] + }] +}; +exports.ic_book_outline = ic_book_outline; \ No newline at end of file diff --git a/dist/md/ic_book_twotone.js b/dist/md/ic_book_twotone.js new file mode 100644 index 000000000..25ca83d63 --- /dev/null +++ b/dist/md/ic_book_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_book_twotone = void 0; +var ic_book_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 13l-3-2.25L7 13V4H6v16h12V4h-5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM9 4h2v5l-1-.75L9 9V4zm9 16H6V4h1v9l3-2.25L13 13V4h5v16z" + }, + "children": [] + }] +}; +exports.ic_book_twotone = ic_book_twotone; \ No newline at end of file diff --git a/dist/md/ic_bookmark.js b/dist/md/ic_bookmark.js new file mode 100644 index 000000000..b1cbdf7c3 --- /dev/null +++ b/dist/md/ic_bookmark.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_bookmark = void 0; +var ic_bookmark = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 3H7c-1.1 0-1.99.9-1.99 2L5 21l7-3 7 3V5c0-1.1-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_bookmark = ic_bookmark; \ No newline at end of file diff --git a/dist/md/ic_bookmark_border.js b/dist/md/ic_bookmark_border.js new file mode 100644 index 000000000..7831dcf88 --- /dev/null +++ b/dist/md/ic_bookmark_border.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_bookmark_border = void 0; +var ic_bookmark_border = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 3H7c-1.1 0-1.99.9-1.99 2L5 21l7-3 7 3V5c0-1.1-.9-2-2-2zm0 15l-5-2.18L7 18V5h10v13z" + }, + "children": [] + }] +}; +exports.ic_bookmark_border = ic_bookmark_border; \ No newline at end of file diff --git a/dist/md/ic_bookmark_border_outline.js b/dist/md/ic_bookmark_border_outline.js new file mode 100644 index 000000000..4b61f4bde --- /dev/null +++ b/dist/md/ic_bookmark_border_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_bookmark_border_outline = void 0; +var ic_bookmark_border_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 3H7c-1.1 0-2 .9-2 2v16l7-3 7 3V5c0-1.1-.9-2-2-2zm0 15l-5-2.18L7 18V5h10v13z" + }, + "children": [] + }] +}; +exports.ic_bookmark_border_outline = ic_bookmark_border_outline; \ No newline at end of file diff --git a/dist/md/ic_bookmark_border_twotone.js b/dist/md/ic_bookmark_border_twotone.js new file mode 100644 index 000000000..a63f512d2 --- /dev/null +++ b/dist/md/ic_bookmark_border_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_bookmark_border_twotone = void 0; +var ic_bookmark_border_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 3H7c-1.1 0-2 .9-2 2v16l7-3 7 3V5c0-1.1-.9-2-2-2zm0 15l-5-2.18L7 18V5h10v13z" + }, + "children": [] + }] +}; +exports.ic_bookmark_border_twotone = ic_bookmark_border_twotone; \ No newline at end of file diff --git a/dist/md/ic_bookmark_outline.js b/dist/md/ic_bookmark_outline.js new file mode 100644 index 000000000..825f2225c --- /dev/null +++ b/dist/md/ic_bookmark_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_bookmark_outline = void 0; +var ic_bookmark_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 3H7c-1.1 0-2 .9-2 2v16l7-3 7 3V5c0-1.1-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_bookmark_outline = ic_bookmark_outline; \ No newline at end of file diff --git a/dist/md/ic_bookmark_twotone.js b/dist/md/ic_bookmark_twotone.js new file mode 100644 index 000000000..48f16a3d0 --- /dev/null +++ b/dist/md/ic_bookmark_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_bookmark_twotone = void 0; +var ic_bookmark_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 17.97l5-2.15 5 2.15V5H7z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 3H7c-1.1 0-2 .9-2 2v16l7-3 7 3V5c0-1.1-.9-2-2-2zm0 14.97l-5-2.14-5 2.14V5h10v12.97z" + }, + "children": [] + }] +}; +exports.ic_bookmark_twotone = ic_bookmark_twotone; \ No newline at end of file diff --git a/dist/md/ic_bookmarks.js b/dist/md/ic_bookmarks.js new file mode 100644 index 000000000..02c930df2 --- /dev/null +++ b/dist/md/ic_bookmarks.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_bookmarks = void 0; +var ic_bookmarks = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 18l2 1V3c0-1.1-.9-2-2-2H8.99C7.89 1 7 1.9 7 3h10c1.1 0 2 .9 2 2v13zM15 5H5c-1.1 0-2 .9-2 2v16l7-3 7 3V7c0-1.1-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_bookmarks = ic_bookmarks; \ No newline at end of file diff --git a/dist/md/ic_bookmarks_outline.js b/dist/md/ic_bookmarks_outline.js new file mode 100644 index 000000000..b944d4532 --- /dev/null +++ b/dist/md/ic_bookmarks_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_bookmarks_outline = void 0; +var ic_bookmarks_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 7v12.97l-4.21-1.81-.79-.34-.79.34L5 19.97V7h10m4-6H8.99C7.89 1 7 1.9 7 3h10c1.1 0 2 .9 2 2v13l2 1V3c0-1.1-.9-2-2-2zm-4 4H5c-1.1 0-2 .9-2 2v16l7-3 7 3V7c0-1.1-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_bookmarks_outline = ic_bookmarks_outline; \ No newline at end of file diff --git a/dist/md/ic_bookmarks_twotone.js b/dist/md/ic_bookmarks_twotone.js new file mode 100644 index 000000000..4f49947ac --- /dev/null +++ b/dist/md/ic_bookmarks_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_bookmarks_twotone = void 0; +var ic_bookmarks_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 1H8.99C7.89 1 7 1.9 7 3h10c1.1 0 2 .9 2 2v13l2 1V3c0-1.1-.9-2-2-2zm-4 4H5c-1.1 0-2 .9-2 2v16l7-3 7 3V7c0-1.1-.9-2-2-2zm0 14.97l-4.21-1.81-.79-.34-.79.34L5 19.97V7h10v12.97z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 19.97l5-2.15 5 2.15V7H5z", + "opacity": ".3" + }, + "children": [] + }] +}; +exports.ic_bookmarks_twotone = ic_bookmarks_twotone; \ No newline at end of file diff --git a/dist/md/ic_border_all.js b/dist/md/ic_border_all.js new file mode 100644 index 000000000..f8368785f --- /dev/null +++ b/dist/md/ic_border_all.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_border_all = void 0; +var ic_border_all = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 3v18h18V3H3zm8 16H5v-6h6v6zm0-8H5V5h6v6zm8 8h-6v-6h6v6zm0-8h-6V5h6v6z" + }, + "children": [] + }] +}; +exports.ic_border_all = ic_border_all; \ No newline at end of file diff --git a/dist/md/ic_border_all_outline.js b/dist/md/ic_border_all_outline.js new file mode 100644 index 000000000..a20fe92f3 --- /dev/null +++ b/dist/md/ic_border_all_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_border_all_outline = void 0; +var ic_border_all_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 3v18h18V3H3zm8 16H5v-6h6v6zm0-8H5V5h6v6zm8 8h-6v-6h6v6zm0-8h-6V5h6v6z" + }, + "children": [] + }] +}; +exports.ic_border_all_outline = ic_border_all_outline; \ No newline at end of file diff --git a/dist/md/ic_border_all_twotone.js b/dist/md/ic_border_all_twotone.js new file mode 100644 index 000000000..7cb4e508a --- /dev/null +++ b/dist/md/ic_border_all_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_border_all_twotone = void 0; +var ic_border_all_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 3H3v18h18V3zM11 19H5v-6h6v6zm0-8H5V5h6v6zm8 8h-6v-6h6v6zm0-8h-6V5h6v6z" + }, + "children": [] + }] +}; +exports.ic_border_all_twotone = ic_border_all_twotone; \ No newline at end of file diff --git a/dist/md/ic_border_bottom.js b/dist/md/ic_border_bottom.js new file mode 100644 index 000000000..2c6c2680a --- /dev/null +++ b/dist/md/ic_border_bottom.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_border_bottom = void 0; +var ic_border_bottom = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 11H7v2h2v-2zm4 4h-2v2h2v-2zM9 3H7v2h2V3zm4 8h-2v2h2v-2zM5 3H3v2h2V3zm8 4h-2v2h2V7zm4 4h-2v2h2v-2zm-4-8h-2v2h2V3zm4 0h-2v2h2V3zm2 10h2v-2h-2v2zm0 4h2v-2h-2v2zM5 7H3v2h2V7zm14-4v2h2V3h-2zm0 6h2V7h-2v2zM5 11H3v2h2v-2zM3 21h18v-2H3v2zm2-6H3v2h2v-2z" + }, + "children": [] + }] +}; +exports.ic_border_bottom = ic_border_bottom; \ No newline at end of file diff --git a/dist/md/ic_border_bottom_outline.js b/dist/md/ic_border_bottom_outline.js new file mode 100644 index 000000000..cf0375f64 --- /dev/null +++ b/dist/md/ic_border_bottom_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_border_bottom_outline = void 0; +var ic_border_bottom_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 11H7v2h2v-2zm4 4h-2v2h2v-2zM9 3H7v2h2V3zm4 8h-2v2h2v-2zM5 3H3v2h2V3zm8 4h-2v2h2V7zm4 4h-2v2h2v-2zm-4-8h-2v2h2V3zm4 0h-2v2h2V3zm2 10h2v-2h-2v2zm0 4h2v-2h-2v2zM5 7H3v2h2V7zm14-4v2h2V3h-2zm0 6h2V7h-2v2zM5 11H3v2h2v-2zM3 21h18v-2H3v2zm2-6H3v2h2v-2z" + }, + "children": [] + }] +}; +exports.ic_border_bottom_outline = ic_border_bottom_outline; \ No newline at end of file diff --git a/dist/md/ic_border_bottom_twotone.js b/dist/md/ic_border_bottom_twotone.js new file mode 100644 index 000000000..b262c950c --- /dev/null +++ b/dist/md/ic_border_bottom_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_border_bottom_twotone = void 0; +var ic_border_bottom_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 11h2v2H3zm0 4h2v2H3zm0 4h18v2H3zm16-4h2v2h-2zM3 7h2v2H3zm16 4h2v2h-2zm0-8h2v2h-2zm-4 8h2v2h-2zm4-4h2v2h-2zm-4-4h2v2h-2zm-8 8h2v2H7zM3 3h2v2H3zm8 4h2v2h-2zM7 3h2v2H7zm4 8h2v2h-2zm0 4h2v2h-2zm0-12h2v2h-2z" + }, + "children": [] + }] +}; +exports.ic_border_bottom_twotone = ic_border_bottom_twotone; \ No newline at end of file diff --git a/dist/md/ic_border_clear.js b/dist/md/ic_border_clear.js new file mode 100644 index 000000000..4d4d9d1a1 --- /dev/null +++ b/dist/md/ic_border_clear.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_border_clear = void 0; +var ic_border_clear = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 5h2V3H7v2zm0 8h2v-2H7v2zm0 8h2v-2H7v2zm4-4h2v-2h-2v2zm0 4h2v-2h-2v2zm-8 0h2v-2H3v2zm0-4h2v-2H3v2zm0-4h2v-2H3v2zm0-4h2V7H3v2zm0-4h2V3H3v2zm8 8h2v-2h-2v2zm8 4h2v-2h-2v2zm0-4h2v-2h-2v2zm0 8h2v-2h-2v2zm0-12h2V7h-2v2zm-8 0h2V7h-2v2zm8-6v2h2V3h-2zm-8 2h2V3h-2v2zm4 16h2v-2h-2v2zm0-8h2v-2h-2v2zm0-8h2V3h-2v2z" + }, + "children": [] + }] +}; +exports.ic_border_clear = ic_border_clear; \ No newline at end of file diff --git a/dist/md/ic_border_clear_outline.js b/dist/md/ic_border_clear_outline.js new file mode 100644 index 000000000..8ca2f8574 --- /dev/null +++ b/dist/md/ic_border_clear_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_border_clear_outline = void 0; +var ic_border_clear_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 5h2V3H7v2zm0 8h2v-2H7v2zm0 8h2v-2H7v2zm4-4h2v-2h-2v2zm0 4h2v-2h-2v2zm-8 0h2v-2H3v2zm0-4h2v-2H3v2zm0-4h2v-2H3v2zm0-4h2V7H3v2zm0-4h2V3H3v2zm8 8h2v-2h-2v2zm8 4h2v-2h-2v2zm0-4h2v-2h-2v2zm0 8h2v-2h-2v2zm0-12h2V7h-2v2zm-8 0h2V7h-2v2zm8-6v2h2V3h-2zm-8 2h2V3h-2v2zm4 16h2v-2h-2v2zm0-8h2v-2h-2v2zm0-8h2V3h-2v2z" + }, + "children": [] + }] +}; +exports.ic_border_clear_outline = ic_border_clear_outline; \ No newline at end of file diff --git a/dist/md/ic_border_clear_twotone.js b/dist/md/ic_border_clear_twotone.js new file mode 100644 index 000000000..ac5813140 --- /dev/null +++ b/dist/md/ic_border_clear_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_border_clear_twotone = void 0; +var ic_border_clear_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 3h2v2H7zm0 16h2v2H7zM3 3h2v2H3zm16 0h2v2h-2zm0 4h2v2h-2zm0 4h2v2h-2zM3 7h2v2H3zm0 12h2v2H3zm16 0h2v2h-2zm0-4h2v2h-2zM3 15h2v2H3zm0-4h2v2H3zm4 0h2v2H7zm8 0h2v2h-2zm-4 8h2v2h-2zm4 0h2v2h-2zm0-16h2v2h-2zm-4 0h2v2h-2zm0 4h2v2h-2zm0 8h2v2h-2zm0-4h2v2h-2z" + }, + "children": [] + }] +}; +exports.ic_border_clear_twotone = ic_border_clear_twotone; \ No newline at end of file diff --git a/dist/md/ic_border_color.js b/dist/md/ic_border_color.js new file mode 100644 index 000000000..5020ccbca --- /dev/null +++ b/dist/md/ic_border_color.js @@ -0,0 +1,26 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_border_color = void 0; +var ic_border_color = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22,24H2v-4h20V24z M13.06,5.19l3.75,3.75L7.75,18H4v-3.75L13.06,5.19z M17.88,7.87l-3.75-3.75 l1.83-1.83c0.39-0.39,1.02-0.39,1.41,0l2.34,2.34c0.39,0.39,0.39,1.02,0,1.41L17.88,7.87z", + "enable-background": "new" + }, + "children": [] + }] +}; +exports.ic_border_color = ic_border_color; \ No newline at end of file diff --git a/dist/md/ic_border_color_twotone.js b/dist/md/ic_border_color_twotone.js new file mode 100644 index 000000000..29bc49e09 --- /dev/null +++ b/dist/md/ic_border_color_twotone.js @@ -0,0 +1,38 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_border_color_twotone = void 0; +var ic_border_color_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 6.08l-8 8V15h.92l8-8z", + "fill-opacity": ".36" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 3.25l-10 10V17h3.75l10-10L14 3.25zM6.92 15H6v-.92l8-8 .92.92-8 8zM20.71 4.04c.39-.39.39-1.02 0-1.41L18.37.29c-.39-.39-1.02-.39-1.41 0L15 2.25 18.75 6l1.96-1.96z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M0 20h24v4H0v-4z", + "fill-opacity": ".36" + }, + "children": [] + }] +}; +exports.ic_border_color_twotone = ic_border_color_twotone; \ No newline at end of file diff --git a/dist/md/ic_border_horizontal.js b/dist/md/ic_border_horizontal.js new file mode 100644 index 000000000..827c5ee02 --- /dev/null +++ b/dist/md/ic_border_horizontal.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_border_horizontal = void 0; +var ic_border_horizontal = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 21h2v-2H3v2zM5 7H3v2h2V7zM3 17h2v-2H3v2zm4 4h2v-2H7v2zM5 3H3v2h2V3zm4 0H7v2h2V3zm8 0h-2v2h2V3zm-4 4h-2v2h2V7zm0-4h-2v2h2V3zm6 14h2v-2h-2v2zm-8 4h2v-2h-2v2zm-8-8h18v-2H3v2zM19 3v2h2V3h-2zm0 6h2V7h-2v2zm-8 8h2v-2h-2v2zm4 4h2v-2h-2v2zm4 0h2v-2h-2v2z" + }, + "children": [] + }] +}; +exports.ic_border_horizontal = ic_border_horizontal; \ No newline at end of file diff --git a/dist/md/ic_border_horizontal_outline.js b/dist/md/ic_border_horizontal_outline.js new file mode 100644 index 000000000..842b889fb --- /dev/null +++ b/dist/md/ic_border_horizontal_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_border_horizontal_outline = void 0; +var ic_border_horizontal_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 21h2v-2H3v2zM5 7H3v2h2V7zM3 17h2v-2H3v2zm4 4h2v-2H7v2zM5 3H3v2h2V3zm4 0H7v2h2V3zm8 0h-2v2h2V3zm-4 4h-2v2h2V7zm0-4h-2v2h2V3zm6 14h2v-2h-2v2zm-8 4h2v-2h-2v2zm-8-8h18v-2H3v2zM19 3v2h2V3h-2zm0 6h2V7h-2v2zm-8 8h2v-2h-2v2zm4 4h2v-2h-2v2zm4 0h2v-2h-2v2z" + }, + "children": [] + }] +}; +exports.ic_border_horizontal_outline = ic_border_horizontal_outline; \ No newline at end of file diff --git a/dist/md/ic_border_horizontal_twotone.js b/dist/md/ic_border_horizontal_twotone.js new file mode 100644 index 000000000..5b692da2f --- /dev/null +++ b/dist/md/ic_border_horizontal_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_border_horizontal_twotone = void 0; +var ic_border_horizontal_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 3h2v2h-2zm8 0h2v2h-2zm0 4h2v2h-2zm-4-4h2v2h-2zM3 19h2v2H3zm0-4h2v2H3zm0-8h2v2H3zm4 12h2v2H7zm4-12h2v2h-2zM7 3h2v2H7zM3 3h2v2H3zm12 16h2v2h-2zm-4 0h2v2h-2zm8-4h2v2h-2zm0 4h2v2h-2zm-8-4h2v2h-2zm-8-4h18v2H3z" + }, + "children": [] + }] +}; +exports.ic_border_horizontal_twotone = ic_border_horizontal_twotone; \ No newline at end of file diff --git a/dist/md/ic_border_inner.js b/dist/md/ic_border_inner.js new file mode 100644 index 000000000..2d96f1188 --- /dev/null +++ b/dist/md/ic_border_inner.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_border_inner = void 0; +var ic_border_inner = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 21h2v-2H3v2zm4 0h2v-2H7v2zM5 7H3v2h2V7zM3 17h2v-2H3v2zM9 3H7v2h2V3zM5 3H3v2h2V3zm12 0h-2v2h2V3zm2 6h2V7h-2v2zm0-6v2h2V3h-2zm-4 18h2v-2h-2v2zM13 3h-2v8H3v2h8v8h2v-8h8v-2h-8V3zm6 18h2v-2h-2v2zm0-4h2v-2h-2v2z" + }, + "children": [] + }] +}; +exports.ic_border_inner = ic_border_inner; \ No newline at end of file diff --git a/dist/md/ic_border_inner_outline.js b/dist/md/ic_border_inner_outline.js new file mode 100644 index 000000000..50bf82ebe --- /dev/null +++ b/dist/md/ic_border_inner_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_border_inner_outline = void 0; +var ic_border_inner_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 21h2v-2H3v2zm4 0h2v-2H7v2zM5 7H3v2h2V7zM3 17h2v-2H3v2zM9 3H7v2h2V3zM5 3H3v2h2V3zm12 0h-2v2h2V3zm2 6h2V7h-2v2zm0-6v2h2V3h-2zm-4 18h2v-2h-2v2zM13 3h-2v8H3v2h8v8h2v-8h8v-2h-8V3zm6 18h2v-2h-2v2zm0-4h2v-2h-2v2z" + }, + "children": [] + }] +}; +exports.ic_border_inner_outline = ic_border_inner_outline; \ No newline at end of file diff --git a/dist/md/ic_border_inner_twotone.js b/dist/md/ic_border_inner_twotone.js new file mode 100644 index 000000000..78a1f47ae --- /dev/null +++ b/dist/md/ic_border_inner_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_border_inner_twotone = void 0; +var ic_border_inner_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 15h2v2H3zM3 3h2v2H3zm0 16h2v2H3zm8 2h2v-8h8v-2h-8V3h-2v8H3v2h8zm-4-2h2v2H7zm12-4h2v2h-2zm-4 4h2v2h-2zm4 0h2v2h-2zM3 7h2v2H3zm16 0h2v2h-2zM7 3h2v2H7zm8 0h2v2h-2zm4 0h2v2h-2z" + }, + "children": [] + }] +}; +exports.ic_border_inner_twotone = ic_border_inner_twotone; \ No newline at end of file diff --git a/dist/md/ic_border_left.js b/dist/md/ic_border_left.js new file mode 100644 index 000000000..1681ed3b4 --- /dev/null +++ b/dist/md/ic_border_left.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_border_left = void 0; +var ic_border_left = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 21h2v-2h-2v2zm0-4h2v-2h-2v2zm0-12h2V3h-2v2zm0 4h2V7h-2v2zm0 4h2v-2h-2v2zm-4 8h2v-2H7v2zM7 5h2V3H7v2zm0 8h2v-2H7v2zm-4 8h2V3H3v18zM19 9h2V7h-2v2zm-4 12h2v-2h-2v2zm4-4h2v-2h-2v2zm0-14v2h2V3h-2zm0 10h2v-2h-2v2zm0 8h2v-2h-2v2zm-4-8h2v-2h-2v2zm0-8h2V3h-2v2z" + }, + "children": [] + }] +}; +exports.ic_border_left = ic_border_left; \ No newline at end of file diff --git a/dist/md/ic_border_left_outline.js b/dist/md/ic_border_left_outline.js new file mode 100644 index 000000000..ce7016c31 --- /dev/null +++ b/dist/md/ic_border_left_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_border_left_outline = void 0; +var ic_border_left_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 21h2v-2h-2v2zm0-4h2v-2h-2v2zm0-12h2V3h-2v2zm0 4h2V7h-2v2zm0 4h2v-2h-2v2zm-4 8h2v-2H7v2zM7 5h2V3H7v2zm0 8h2v-2H7v2zm-4 8h2V3H3v18zM19 9h2V7h-2v2zm-4 12h2v-2h-2v2zm4-4h2v-2h-2v2zm0-14v2h2V3h-2zm0 10h2v-2h-2v2zm0 8h2v-2h-2v2zm-4-8h2v-2h-2v2zm0-8h2V3h-2v2z" + }, + "children": [] + }] +}; +exports.ic_border_left_outline = ic_border_left_outline; \ No newline at end of file diff --git a/dist/md/ic_border_left_twotone.js b/dist/md/ic_border_left_twotone.js new file mode 100644 index 000000000..b7c4d0501 --- /dev/null +++ b/dist/md/ic_border_left_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_border_left_twotone = void 0; +var ic_border_left_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 3h2v2h-2zM3 3h2v18H3zm12 0h2v2h-2zm-4 16h2v2h-2zm0-4h2v2h-2zm4 4h2v2h-2zM11 7h2v2h-2zm0 4h2v2h-2zm8 4h2v2h-2zm0 4h2v2h-2zm0-12h2v2h-2zm0 4h2v2h-2zm0-8h2v2h-2zm-4 8h2v2h-2zm-8 8h2v2H7zm0-8h2v2H7zm0-8h2v2H7z" + }, + "children": [] + }] +}; +exports.ic_border_left_twotone = ic_border_left_twotone; \ No newline at end of file diff --git a/dist/md/ic_border_outer.js b/dist/md/ic_border_outer.js new file mode 100644 index 000000000..80cf0d53f --- /dev/null +++ b/dist/md/ic_border_outer.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_border_outer = void 0; +var ic_border_outer = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 7h-2v2h2V7zm0 4h-2v2h2v-2zm4 0h-2v2h2v-2zM3 3v18h18V3H3zm16 16H5V5h14v14zm-6-4h-2v2h2v-2zm-4-4H7v2h2v-2z" + }, + "children": [] + }] +}; +exports.ic_border_outer = ic_border_outer; \ No newline at end of file diff --git a/dist/md/ic_border_outer_outline.js b/dist/md/ic_border_outer_outline.js new file mode 100644 index 000000000..3b34c240a --- /dev/null +++ b/dist/md/ic_border_outer_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_border_outer_outline = void 0; +var ic_border_outer_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 7h-2v2h2V7zm0 4h-2v2h2v-2zm4 0h-2v2h2v-2zM3 3v18h18V3H3zm16 16H5V5h14v14zm-6-4h-2v2h2v-2zm-4-4H7v2h2v-2z" + }, + "children": [] + }] +}; +exports.ic_border_outer_outline = ic_border_outer_outline; \ No newline at end of file diff --git a/dist/md/ic_border_outer_twotone.js b/dist/md/ic_border_outer_twotone.js new file mode 100644 index 000000000..28db3b0b0 --- /dev/null +++ b/dist/md/ic_border_outer_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_border_outer_twotone = void 0; +var ic_border_outer_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 11h2v2h-2zm0-4h2v2h-2zm10-4H3v18h18V3zm-2 16H5V5h14v14zm-4-8h2v2h-2zm-8 0h2v2H7zm4 4h2v2h-2z" + }, + "children": [] + }] +}; +exports.ic_border_outer_twotone = ic_border_outer_twotone; \ No newline at end of file diff --git a/dist/md/ic_border_right.js b/dist/md/ic_border_right.js new file mode 100644 index 000000000..54fa48142 --- /dev/null +++ b/dist/md/ic_border_right.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_border_right = void 0; +var ic_border_right = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 21h2v-2H7v2zM3 5h2V3H3v2zm4 0h2V3H7v2zm0 8h2v-2H7v2zm-4 8h2v-2H3v2zm8 0h2v-2h-2v2zm-8-8h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm8 8h2v-2h-2v2zm4-4h2v-2h-2v2zm4-10v18h2V3h-2zm-4 18h2v-2h-2v2zm0-16h2V3h-2v2zm-4 8h2v-2h-2v2zm0-8h2V3h-2v2zm0 4h2V7h-2v2z" + }, + "children": [] + }] +}; +exports.ic_border_right = ic_border_right; \ No newline at end of file diff --git a/dist/md/ic_border_right_outline.js b/dist/md/ic_border_right_outline.js new file mode 100644 index 000000000..316b157f5 --- /dev/null +++ b/dist/md/ic_border_right_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_border_right_outline = void 0; +var ic_border_right_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 21h2v-2H7v2zM3 5h2V3H3v2zm4 0h2V3H7v2zm0 8h2v-2H7v2zm-4 8h2v-2H3v2zm8 0h2v-2h-2v2zm-8-8h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm8 8h2v-2h-2v2zm4-4h2v-2h-2v2zm4-10v18h2V3h-2zm-4 18h2v-2h-2v2zm0-16h2V3h-2v2zm-4 8h2v-2h-2v2zm0-8h2V3h-2v2zm0 4h2V7h-2v2z" + }, + "children": [] + }] +}; +exports.ic_border_right_outline = ic_border_right_outline; \ No newline at end of file diff --git a/dist/md/ic_border_right_twotone.js b/dist/md/ic_border_right_twotone.js new file mode 100644 index 000000000..6df527957 --- /dev/null +++ b/dist/md/ic_border_right_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_border_right_twotone = void 0; +var ic_border_right_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 3h2v2H3zm0 16h2v2H3zM15 3h2v2h-2zm0 16h2v2h-2zm0-8h2v2h-2zM3 15h2v2H3zm0-4h2v2H3zm0-4h2v2H3zm8 8h2v2h-2zm-4-4h2v2H7zm0-8h2v2H7zm12 0h2v18h-2zM7 19h2v2H7zm4-16h2v2h-2zm0 4h2v2h-2zm0 4h2v2h-2zm0 8h2v2h-2z" + }, + "children": [] + }] +}; +exports.ic_border_right_twotone = ic_border_right_twotone; \ No newline at end of file diff --git a/dist/md/ic_border_style.js b/dist/md/ic_border_style.js new file mode 100644 index 000000000..f831204d4 --- /dev/null +++ b/dist/md/ic_border_style.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_border_style = void 0; +var ic_border_style = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 21h2v-2h-2v2zm4 0h2v-2h-2v2zM7 21h2v-2H7v2zm4 0h2v-2h-2v2zm8-4h2v-2h-2v2zm0-4h2v-2h-2v2zM3 3v18h2V5h16V3H3zm16 6h2V7h-2v2z" + }, + "children": [] + }] +}; +exports.ic_border_style = ic_border_style; \ No newline at end of file diff --git a/dist/md/ic_border_style_outline.js b/dist/md/ic_border_style_outline.js new file mode 100644 index 000000000..189321d06 --- /dev/null +++ b/dist/md/ic_border_style_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_border_style_outline = void 0; +var ic_border_style_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 21h2v-2h-2v2zm4 0h2v-2h-2v2zM7 21h2v-2H7v2zm4 0h2v-2h-2v2zm8-4h2v-2h-2v2zm0-4h2v-2h-2v2zM3 3v18h2V5h16V3H3zm16 6h2V7h-2v2z" + }, + "children": [] + }] +}; +exports.ic_border_style_outline = ic_border_style_outline; \ No newline at end of file diff --git a/dist/md/ic_border_style_twotone.js b/dist/md/ic_border_style_twotone.js new file mode 100644 index 000000000..a114153d1 --- /dev/null +++ b/dist/md/ic_border_style_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_border_style_twotone = void 0; +var ic_border_style_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 19h2v2h-2zm0-8h2v2h-2zm0 4h2v2h-2zm-4 4h2v2h-2zM3 21h2V5h16V3H3zM19 7h2v2h-2zm-8 12h2v2h-2zm-4 0h2v2H7z" + }, + "children": [] + }] +}; +exports.ic_border_style_twotone = ic_border_style_twotone; \ No newline at end of file diff --git a/dist/md/ic_border_top.js b/dist/md/ic_border_top.js new file mode 100644 index 000000000..8ec0a698c --- /dev/null +++ b/dist/md/ic_border_top.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_border_top = void 0; +var ic_border_top = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 21h2v-2H7v2zm0-8h2v-2H7v2zm4 0h2v-2h-2v2zm0 8h2v-2h-2v2zm-8-4h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2v-2H3v2zm0-4h2V7H3v2zm8 8h2v-2h-2v2zm8-8h2V7h-2v2zm0 4h2v-2h-2v2zM3 3v2h18V3H3zm16 14h2v-2h-2v2zm-4 4h2v-2h-2v2zM11 9h2V7h-2v2zm8 12h2v-2h-2v2zm-4-8h2v-2h-2v2z" + }, + "children": [] + }] +}; +exports.ic_border_top = ic_border_top; \ No newline at end of file diff --git a/dist/md/ic_border_top_outline.js b/dist/md/ic_border_top_outline.js new file mode 100644 index 000000000..a1a30a175 --- /dev/null +++ b/dist/md/ic_border_top_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_border_top_outline = void 0; +var ic_border_top_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 21h2v-2H7v2zm0-8h2v-2H7v2zm4 0h2v-2h-2v2zm0 8h2v-2h-2v2zm-8-4h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2v-2H3v2zm0-4h2V7H3v2zm8 8h2v-2h-2v2zm8-8h2V7h-2v2zm0 4h2v-2h-2v2zM3 3v2h18V3H3zm16 14h2v-2h-2v2zm-4 4h2v-2h-2v2zM11 9h2V7h-2v2zm8 12h2v-2h-2v2zm-4-8h2v-2h-2v2z" + }, + "children": [] + }] +}; +exports.ic_border_top_outline = ic_border_top_outline; \ No newline at end of file diff --git a/dist/md/ic_border_top_twotone.js b/dist/md/ic_border_top_twotone.js new file mode 100644 index 000000000..08067d24d --- /dev/null +++ b/dist/md/ic_border_top_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_border_top_twotone = void 0; +var ic_border_top_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 19h2v2h-2zM3 19h2v2H3zm8 0h2v2h-2zm-8-8h2v2H3zm0 4h2v2H3zm4 4h2v2H7zm4-12h2v2h-2zm0 4h2v2h-2zM3 7h2v2H3zm0-4h18v2H3zm8 12h2v2h-2zm4 4h2v2h-2zm-8-8h2v2H7zm8 0h2v2h-2zm4 4h2v2h-2zm0-4h2v2h-2zm0-4h2v2h-2z" + }, + "children": [] + }] +}; +exports.ic_border_top_twotone = ic_border_top_twotone; \ No newline at end of file diff --git a/dist/md/ic_border_vertical.js b/dist/md/ic_border_vertical.js new file mode 100644 index 000000000..448a80161 --- /dev/null +++ b/dist/md/ic_border_vertical.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_border_vertical = void 0; +var ic_border_vertical = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 9h2V7H3v2zm0-4h2V3H3v2zm4 16h2v-2H7v2zm0-8h2v-2H7v2zm-4 0h2v-2H3v2zm0 8h2v-2H3v2zm0-4h2v-2H3v2zM7 5h2V3H7v2zm12 12h2v-2h-2v2zm-8 4h2V3h-2v18zm8 0h2v-2h-2v2zm0-8h2v-2h-2v2zm0-10v2h2V3h-2zm0 6h2V7h-2v2zm-4-4h2V3h-2v2zm0 16h2v-2h-2v2zm0-8h2v-2h-2v2z" + }, + "children": [] + }] +}; +exports.ic_border_vertical = ic_border_vertical; \ No newline at end of file diff --git a/dist/md/ic_border_vertical_outline.js b/dist/md/ic_border_vertical_outline.js new file mode 100644 index 000000000..e10b51762 --- /dev/null +++ b/dist/md/ic_border_vertical_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_border_vertical_outline = void 0; +var ic_border_vertical_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 9h2V7H3v2zm0-4h2V3H3v2zm4 16h2v-2H7v2zm0-8h2v-2H7v2zm-4 0h2v-2H3v2zm0 8h2v-2H3v2zm0-4h2v-2H3v2zM7 5h2V3H7v2zm12 12h2v-2h-2v2zm-8 4h2V3h-2v18zm8 0h2v-2h-2v2zm0-8h2v-2h-2v2zm0-10v2h2V3h-2zm0 6h2V7h-2v2zm-4-4h2V3h-2v2zm0 16h2v-2h-2v2zm0-8h2v-2h-2v2z" + }, + "children": [] + }] +}; +exports.ic_border_vertical_outline = ic_border_vertical_outline; \ No newline at end of file diff --git a/dist/md/ic_border_vertical_twotone.js b/dist/md/ic_border_vertical_twotone.js new file mode 100644 index 000000000..372b772f9 --- /dev/null +++ b/dist/md/ic_border_vertical_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_border_vertical_twotone = void 0; +var ic_border_vertical_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 3h2v2H7zm0 8h2v2H7zm0 8h2v2H7zm-4 0h2v2H3zM3 3h2v2H3zm0 8h2v2H3zm16-8h2v2h-2zM3 7h2v2H3zm8-4h2v18h-2zM3 15h2v2H3zm12-4h2v2h-2zm4 4h2v2h-2zm0-4h2v2h-2zm0-4h2v2h-2zm0 12h2v2h-2zm-4 0h2v2h-2zm0-16h2v2h-2z" + }, + "children": [] + }] +}; +exports.ic_border_vertical_twotone = ic_border_vertical_twotone; \ No newline at end of file diff --git a/dist/md/ic_branding_watermark.js b/dist/md/ic_branding_watermark.js new file mode 100644 index 000000000..cb40d7e89 --- /dev/null +++ b/dist/md/ic_branding_watermark.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_branding_watermark = void 0; +var ic_branding_watermark = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16h-9v-6h9v6z" + }, + "children": [] + }] +}; +exports.ic_branding_watermark = ic_branding_watermark; \ No newline at end of file diff --git a/dist/md/ic_branding_watermark_outline.js b/dist/md/ic_branding_watermark_outline.js new file mode 100644 index 000000000..9a8066195 --- /dev/null +++ b/dist/md/ic_branding_watermark_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_branding_watermark_outline = void 0; +var ic_branding_watermark_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zm-10-7h9v6h-9z" + }, + "children": [] + }] +}; +exports.ic_branding_watermark_outline = ic_branding_watermark_outline; \ No newline at end of file diff --git a/dist/md/ic_branding_watermark_twotone.js b/dist/md/ic_branding_watermark_twotone.js new file mode 100644 index 000000000..42388b112 --- /dev/null +++ b/dist/md/ic_branding_watermark_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_branding_watermark_twotone = void 0; +var ic_branding_watermark_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 19h18V5H3v14zm8-7h9v6h-9v-6z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zm-10-7h9v6h-9z" + }, + "children": [] + }] +}; +exports.ic_branding_watermark_twotone = ic_branding_watermark_twotone; \ No newline at end of file diff --git a/dist/md/ic_breakfast_dining.js b/dist/md/ic_breakfast_dining.js new file mode 100644 index 000000000..cf12f13df --- /dev/null +++ b/dist/md/ic_breakfast_dining.js @@ -0,0 +1,49 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_breakfast_dining = void 0; +var ic_breakfast_dining = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M18,3H6C3.79,3,2,4.79,2,7c0,1.48,0.81,2.75,2,3.45V19c0,1.1,0.9,2,2,2h12 c1.1,0,2-0.9,2-2v-8.55c1.19-0.69,2-1.97,2-3.45C22,4.79,20.21,3,18,3z M14,15h-4v-4h4V15z", + "fill-rule": "evenodd" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18,3H6C3.79,3,2,4.79,2,7c0,1.48,0.81,2.75,2,3.45V19c0,1.1,0.9,2,2,2h12 c1.1,0,2-0.9,2-2v-8.55c1.19-0.69,2-1.97,2-3.45C22,4.79,20.21,3,18,3z M14,15h-4v-4h4V15z", + "fill-rule": "evenodd" + }, + "children": [] + }] + }] + }] +}; +exports.ic_breakfast_dining = ic_breakfast_dining; \ No newline at end of file diff --git a/dist/md/ic_brightness_1.js b/dist/md/ic_brightness_1.js new file mode 100644 index 000000000..8744c936e --- /dev/null +++ b/dist/md/ic_brightness_1.js @@ -0,0 +1,26 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_brightness_1 = void 0; +var ic_brightness_1 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "10" + }, + "children": [] + }] +}; +exports.ic_brightness_1 = ic_brightness_1; \ No newline at end of file diff --git a/dist/md/ic_brightness_1_outline.js b/dist/md/ic_brightness_1_outline.js new file mode 100644 index 000000000..f0f4625af --- /dev/null +++ b/dist/md/ic_brightness_1_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_brightness_1_outline = void 0; +var ic_brightness_1_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8m0-2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z" + }, + "children": [] + }] +}; +exports.ic_brightness_1_outline = ic_brightness_1_outline; \ No newline at end of file diff --git a/dist/md/ic_brightness_1_twotone.js b/dist/md/ic_brightness_1_twotone.js new file mode 100644 index 000000000..051f85959 --- /dev/null +++ b/dist/md/ic_brightness_1_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_brightness_1_twotone = void 0; +var ic_brightness_1_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 20c4.41 0 8-3.59 8-8s-3.59-8-8-8-8 3.59-8 8 3.59 8 8 8z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 22c5.52 0 10-4.48 10-10S17.52 2 12 2 2 6.48 2 12s4.48 10 10 10zm0-18c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8z" + }, + "children": [] + }] +}; +exports.ic_brightness_1_twotone = ic_brightness_1_twotone; \ No newline at end of file diff --git a/dist/md/ic_brightness_2.js b/dist/md/ic_brightness_2.js new file mode 100644 index 000000000..7e9c21b6e --- /dev/null +++ b/dist/md/ic_brightness_2.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_brightness_2 = void 0; +var ic_brightness_2 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 2c-1.82 0-3.53.5-5 1.35C7.99 5.08 10 8.3 10 12s-2.01 6.92-5 8.65C6.47 21.5 8.18 22 10 22c5.52 0 10-4.48 10-10S15.52 2 10 2z" + }, + "children": [] + }] +}; +exports.ic_brightness_2 = ic_brightness_2; \ No newline at end of file diff --git a/dist/md/ic_brightness_2_outline.js b/dist/md/ic_brightness_2_outline.js new file mode 100644 index 000000000..8aa4fa6c0 --- /dev/null +++ b/dist/md/ic_brightness_2_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_brightness_2_outline = void 0; +var ic_brightness_2_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 4c4.41 0 8 3.59 8 8s-3.59 8-8 8c-.34 0-.68-.02-1.01-.07C10.9 17.77 12 14.95 12 12s-1.1-5.77-3.01-7.93C9.32 4.02 9.66 4 10 4m0-2c-1.82 0-3.53.5-5 1.35C7.99 5.08 10 8.3 10 12s-2.01 6.92-5 8.65C6.47 21.5 8.18 22 10 22c5.52 0 10-4.48 10-10S15.52 2 10 2z" + }, + "children": [] + }] +}; +exports.ic_brightness_2_outline = ic_brightness_2_outline; \ No newline at end of file diff --git a/dist/md/ic_brightness_2_twotone.js b/dist/md/ic_brightness_2_twotone.js new file mode 100644 index 000000000..dbf4c5ca4 --- /dev/null +++ b/dist/md/ic_brightness_2_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_brightness_2_twotone = void 0; +var ic_brightness_2_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 12c0-4.41-3.59-8-8-8-.34 0-.68.02-1.01.07C10.9 6.23 12 9.05 12 12c0 2.95-1.1 5.77-3.01 7.93.33.05.67.07 1.01.07 4.41 0 8-3.59 8-8z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 20.65C6.47 21.5 8.18 22 10 22c5.52 0 10-4.48 10-10S15.52 2 10 2c-1.82 0-3.53.5-5 1.35C7.99 5.08 10 8.3 10 12s-2.01 6.92-5 8.65zM12 12c0-2.95-1.1-5.77-3.01-7.93C9.32 4.02 9.66 4 10 4c4.41 0 8 3.59 8 8s-3.59 8-8 8c-.34 0-.68-.02-1.01-.07C10.9 17.77 12 14.95 12 12z" + }, + "children": [] + }] +}; +exports.ic_brightness_2_twotone = ic_brightness_2_twotone; \ No newline at end of file diff --git a/dist/md/ic_brightness_3.js b/dist/md/ic_brightness_3.js new file mode 100644 index 000000000..4e2f5e006 --- /dev/null +++ b/dist/md/ic_brightness_3.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_brightness_3 = void 0; +var ic_brightness_3 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 2c-1.05 0-2.05.16-3 .46 4.06 1.27 7 5.06 7 9.54 0 4.48-2.94 8.27-7 9.54.95.3 1.95.46 3 .46 5.52 0 10-4.48 10-10S14.52 2 9 2z" + }, + "children": [] + }] +}; +exports.ic_brightness_3 = ic_brightness_3; \ No newline at end of file diff --git a/dist/md/ic_brightness_3_outline.js b/dist/md/ic_brightness_3_outline.js new file mode 100644 index 000000000..55d412837 --- /dev/null +++ b/dist/md/ic_brightness_3_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_brightness_3_outline = void 0; +var ic_brightness_3_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12.7 4.91C15.25 6.24 17 8.92 17 12s-1.75 5.76-4.3 7.09c1.46-2 2.3-4.46 2.3-7.09s-.84-5.09-2.3-7.09M9 2c-1.05 0-2.05.16-3 .46 4.06 1.27 7 5.06 7 9.54s-2.94 8.27-7 9.54c.95.3 1.95.46 3 .46 5.52 0 10-4.48 10-10S14.52 2 9 2z" + }, + "children": [] + }] +}; +exports.ic_brightness_3_outline = ic_brightness_3_outline; \ No newline at end of file diff --git a/dist/md/ic_brightness_3_twotone.js b/dist/md/ic_brightness_3_twotone.js new file mode 100644 index 000000000..1f5ed6435 --- /dev/null +++ b/dist/md/ic_brightness_3_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_brightness_3_twotone = void 0; +var ic_brightness_3_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12.7 4.91c1.46 2 2.3 4.46 2.3 7.09s-.84 5.09-2.3 7.09C15.25 17.76 17 15.08 17 12s-1.75-5.76-4.3-7.09z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 2c-1.05 0-2.05.16-3 .46 4.06 1.27 7 5.06 7 9.54 0 4.48-2.94 8.27-7 9.54.95.3 1.95.46 3 .46 5.52 0 10-4.48 10-10S14.52 2 9 2zm3.7 17.09c1.46-2 2.3-4.46 2.3-7.09s-.84-5.09-2.3-7.09C15.25 6.24 17 8.92 17 12s-1.75 5.76-4.3 7.09z" + }, + "children": [] + }] +}; +exports.ic_brightness_3_twotone = ic_brightness_3_twotone; \ No newline at end of file diff --git a/dist/md/ic_brightness_4.js b/dist/md/ic_brightness_4.js new file mode 100644 index 000000000..d3b0899f3 --- /dev/null +++ b/dist/md/ic_brightness_4.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_brightness_4 = void 0; +var ic_brightness_4 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zM12 18c-.89 0-1.74-.2-2.5-.55C11.56 16.5 13 14.42 13 12s-1.44-4.5-3.5-5.45C10.26 6.2 11.11 6 12 6c3.31 0 6 2.69 6 6s-2.69 6-6 6z" + }, + "children": [] + }] +}; +exports.ic_brightness_4 = ic_brightness_4; \ No newline at end of file diff --git a/dist/md/ic_brightness_4_outline.js b/dist/md/ic_brightness_4_outline.js new file mode 100644 index 000000000..9825de50e --- /dev/null +++ b/dist/md/ic_brightness_4_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_brightness_4_outline = void 0; +var ic_brightness_4_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12.29 7c-.74 0-1.45.17-2.08.46 1.72.79 2.92 2.53 2.92 4.54s-1.2 3.75-2.92 4.54c.63.29 1.34.46 2.08.46 2.76 0 5-2.24 5-5s-2.24-5-5-5z" + }, + "children": [] + }] +}; +exports.ic_brightness_4_outline = ic_brightness_4_outline; \ No newline at end of file diff --git a/dist/md/ic_brightness_4_twotone.js b/dist/md/ic_brightness_4_twotone.js new file mode 100644 index 000000000..b4054d2d9 --- /dev/null +++ b/dist/md/ic_brightness_4_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_brightness_4_twotone = void 0; +var ic_brightness_4_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 9.52V6h-3.52L12 3.52 9.52 6H6v3.52L3.52 12 6 14.48V18h3.52L12 20.48 14.48 18H18v-3.52L20.48 12 18 9.52zM12.29 17c-.74 0-1.45-.17-2.08-.46 1.72-.79 2.92-2.52 2.92-4.54s-1.2-3.75-2.92-4.54c.63-.29 1.34-.46 2.08-.46 2.76 0 5 2.24 5 5s-2.24 5-5 5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12.29 7c-.74 0-1.45.17-2.08.46 1.72.79 2.92 2.53 2.92 4.54s-1.2 3.75-2.92 4.54c.63.29 1.34.46 2.08.46 2.76 0 5-2.24 5-5s-2.24-5-5-5z" + }, + "children": [] + }] +}; +exports.ic_brightness_4_twotone = ic_brightness_4_twotone; \ No newline at end of file diff --git a/dist/md/ic_brightness_5.js b/dist/md/ic_brightness_5.js new file mode 100644 index 000000000..220d5dc21 --- /dev/null +++ b/dist/md/ic_brightness_5.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_brightness_5 = void 0; +var ic_brightness_5 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 15.31L23.31 12 20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z" + }, + "children": [] + }] +}; +exports.ic_brightness_5 = ic_brightness_5; \ No newline at end of file diff --git a/dist/md/ic_brightness_5_outline.js b/dist/md/ic_brightness_5_outline.js new file mode 100644 index 000000000..168c13875 --- /dev/null +++ b/dist/md/ic_brightness_5_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_brightness_5_outline = void 0; +var ic_brightness_5_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6.5c-3.03 0-5.5 2.47-5.5 5.5s2.47 5.5 5.5 5.5 5.5-2.47 5.5-5.5-2.47-5.5-5.5-5.5zm0 9c-1.93 0-3.5-1.57-3.5-3.5s1.57-3.5 3.5-3.5 3.5 1.57 3.5 3.5-1.57 3.5-3.5 3.5z" + }, + "children": [] + }] +}; +exports.ic_brightness_5_outline = ic_brightness_5_outline; \ No newline at end of file diff --git a/dist/md/ic_brightness_5_twotone.js b/dist/md/ic_brightness_5_twotone.js new file mode 100644 index 000000000..75307ecae --- /dev/null +++ b/dist/md/ic_brightness_5_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_brightness_5_twotone = void 0; +var ic_brightness_5_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 9.52V6h-3.52L12 3.52 9.52 6H6v3.52L3.52 12 6 14.48V18h3.52L12 20.48 14.48 18H18v-3.52L20.48 12 18 9.52zm-6 7.98c-3.03 0-5.5-2.47-5.5-5.5S8.97 6.5 12 6.5s5.5 2.47 5.5 5.5-2.47 5.5-5.5 5.5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6.5c-3.03 0-5.5 2.47-5.5 5.5s2.47 5.5 5.5 5.5 5.5-2.47 5.5-5.5-2.47-5.5-5.5-5.5zm0 9c-1.93 0-3.5-1.57-3.5-3.5s1.57-3.5 3.5-3.5 3.5 1.57 3.5 3.5-1.57 3.5-3.5 3.5z" + }, + "children": [] + }] +}; +exports.ic_brightness_5_twotone = ic_brightness_5_twotone; \ No newline at end of file diff --git a/dist/md/ic_brightness_6.js b/dist/md/ic_brightness_6.js new file mode 100644 index 000000000..b805cd160 --- /dev/null +++ b/dist/md/ic_brightness_6.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_brightness_6 = void 0; +var ic_brightness_6 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 15.31L23.31 12 20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69zM12 18V6c3.31 0 6 2.69 6 6s-2.69 6-6 6z" + }, + "children": [] + }] +}; +exports.ic_brightness_6 = ic_brightness_6; \ No newline at end of file diff --git a/dist/md/ic_brightness_6_outline.js b/dist/md/ic_brightness_6_outline.js new file mode 100644 index 000000000..e5f2db720 --- /dev/null +++ b/dist/md/ic_brightness_6_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_brightness_6_outline = void 0; +var ic_brightness_6_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6.5v11c3.03 0 5.5-2.47 5.5-5.5S15.03 6.5 12 6.5z" + }, + "children": [] + }] +}; +exports.ic_brightness_6_outline = ic_brightness_6_outline; \ No newline at end of file diff --git a/dist/md/ic_brightness_6_twotone.js b/dist/md/ic_brightness_6_twotone.js new file mode 100644 index 000000000..4b9baf3f0 --- /dev/null +++ b/dist/md/ic_brightness_6_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_brightness_6_twotone = void 0; +var ic_brightness_6_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 9.52V6h-3.52L12 3.52 9.52 6H6v3.52L3.52 12 6 14.48V18h3.52L12 20.48 14.48 18H18v-3.52L20.48 12 18 9.52zm-6 7.98v-11c3.03 0 5.5 2.47 5.5 5.5s-2.47 5.5-5.5 5.5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6.5v11c3.03 0 5.5-2.47 5.5-5.5S15.03 6.5 12 6.5z" + }, + "children": [] + }] +}; +exports.ic_brightness_6_twotone = ic_brightness_6_twotone; \ No newline at end of file diff --git a/dist/md/ic_brightness_7.js b/dist/md/ic_brightness_7.js new file mode 100644 index 000000000..7102308e7 --- /dev/null +++ b/dist/md/ic_brightness_7.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_brightness_7 = void 0; +var ic_brightness_7 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zm0-10c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4z" + }, + "children": [] + }] +}; +exports.ic_brightness_7 = ic_brightness_7; \ No newline at end of file diff --git a/dist/md/ic_brightness_7_outline.js b/dist/md/ic_brightness_7_outline.js new file mode 100644 index 000000000..d989bc8c1 --- /dev/null +++ b/dist/md/ic_brightness_7_outline.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_brightness_7_outline = void 0; +var ic_brightness_7_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6.5c-3.03 0-5.5 2.47-5.5 5.5s2.47 5.5 5.5 5.5 5.5-2.47 5.5-5.5-2.47-5.5-5.5-5.5zm0 9c-1.93 0-3.5-1.57-3.5-3.5s1.57-3.5 3.5-3.5 3.5 1.57 3.5 3.5-1.57 3.5-3.5 3.5z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "2" + }, + "children": [] + }] +}; +exports.ic_brightness_7_outline = ic_brightness_7_outline; \ No newline at end of file diff --git a/dist/md/ic_brightness_7_twotone.js b/dist/md/ic_brightness_7_twotone.js new file mode 100644 index 000000000..8bf414331 --- /dev/null +++ b/dist/md/ic_brightness_7_twotone.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_brightness_7_twotone = void 0; +var ic_brightness_7_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 9.52V6h-3.52L12 3.52 9.52 6H6v3.52L3.52 12 6 14.48V18h3.52L12 20.48 14.48 18H18v-3.52L20.48 12 18 9.52zm-6 7.98c-3.03 0-5.5-2.47-5.5-5.5S8.97 6.5 12 6.5s5.5 2.47 5.5 5.5-2.47 5.5-5.5 5.5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6.5c-3.03 0-5.5 2.47-5.5 5.5s2.47 5.5 5.5 5.5 5.5-2.47 5.5-5.5-2.47-5.5-5.5-5.5zm0 9c-1.93 0-3.5-1.57-3.5-3.5s1.57-3.5 3.5-3.5 3.5 1.57 3.5 3.5-1.57 3.5-3.5 3.5z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "2" + }, + "children": [] + }] +}; +exports.ic_brightness_7_twotone = ic_brightness_7_twotone; \ No newline at end of file diff --git a/dist/md/ic_brightness_auto.js b/dist/md/ic_brightness_auto.js new file mode 100644 index 000000000..a6d89489a --- /dev/null +++ b/dist/md/ic_brightness_auto.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_brightness_auto = void 0; +var ic_brightness_auto = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10.85 12.65h2.3L12 9l-1.15 3.65zM20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zM14.3 16l-.7-2h-3.2l-.7 2H7.8L11 7h2l3.2 9h-1.9z" + }, + "children": [] + }] +}; +exports.ic_brightness_auto = ic_brightness_auto; \ No newline at end of file diff --git a/dist/md/ic_brightness_auto_outline.js b/dist/md/ic_brightness_auto_outline.js new file mode 100644 index 000000000..b08f650ff --- /dev/null +++ b/dist/md/ic_brightness_auto_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_brightness_auto_outline = void 0; +var ic_brightness_auto_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 7l-3.2 9h1.9l.7-2h3.2l.7 2h1.9L13 7h-2zm-.15 5.65L12 9l1.15 3.65h-2.3zM20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48z" + }, + "children": [] + }] +}; +exports.ic_brightness_auto_outline = ic_brightness_auto_outline; \ No newline at end of file diff --git a/dist/md/ic_brightness_auto_twotone.js b/dist/md/ic_brightness_auto_twotone.js new file mode 100644 index 000000000..a1b33d34f --- /dev/null +++ b/dist/md/ic_brightness_auto_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_brightness_auto_twotone = void 0; +var ic_brightness_auto_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 9.52V6h-3.52L12 3.52 9.52 6H6v3.52L3.52 12 6 14.48V18h3.52L12 20.48 14.48 18H18v-3.52L20.48 12 18 9.52zM14.3 16l-.7-2h-3.2l-.7 2H7.8L11 7h2l3.2 9h-1.9zm-3.45-3.35h2.3L12 9z", + "fill-opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 7l-3.2 9h1.9l.7-2h3.2l.7 2h1.9L13 7h-2zm-.15 5.65L12 9l1.15 3.65h-2.3zM20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48z" + }, + "children": [] + }] +}; +exports.ic_brightness_auto_twotone = ic_brightness_auto_twotone; \ No newline at end of file diff --git a/dist/md/ic_brightness_high.js b/dist/md/ic_brightness_high.js new file mode 100644 index 000000000..8f96ef2b8 --- /dev/null +++ b/dist/md/ic_brightness_high.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_brightness_high = void 0; +var ic_brightness_high = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zm0-10c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4z" + }, + "children": [] + }] +}; +exports.ic_brightness_high = ic_brightness_high; \ No newline at end of file diff --git a/dist/md/ic_brightness_high_outline.js b/dist/md/ic_brightness_high_outline.js new file mode 100644 index 000000000..206c16cb3 --- /dev/null +++ b/dist/md/ic_brightness_high_outline.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_brightness_high_outline = void 0; +var ic_brightness_high_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "2.5" + }, + "children": [] + }] +}; +exports.ic_brightness_high_outline = ic_brightness_high_outline; \ No newline at end of file diff --git a/dist/md/ic_brightness_high_twotone.js b/dist/md/ic_brightness_high_twotone.js new file mode 100644 index 000000000..2b74b3e42 --- /dev/null +++ b/dist/md/ic_brightness_high_twotone.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_brightness_high_twotone = void 0; +var ic_brightness_high_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 9.52V6h-3.52L12 3.52 9.52 6H6v3.52L3.52 12 6 14.48V18h3.52L12 20.48 14.48 18H18v-3.52L20.48 12 18 9.52zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z", + "fill-opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "2.5" + }, + "children": [] + }] +}; +exports.ic_brightness_high_twotone = ic_brightness_high_twotone; \ No newline at end of file diff --git a/dist/md/ic_brightness_low.js b/dist/md/ic_brightness_low.js new file mode 100644 index 000000000..47ab7faf2 --- /dev/null +++ b/dist/md/ic_brightness_low.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_brightness_low = void 0; +var ic_brightness_low = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 15.31L23.31 12 20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z" + }, + "children": [] + }] +}; +exports.ic_brightness_low = ic_brightness_low; \ No newline at end of file diff --git a/dist/md/ic_brightness_low_outline.js b/dist/md/ic_brightness_low_outline.js new file mode 100644 index 000000000..84e750fe6 --- /dev/null +++ b/dist/md/ic_brightness_low_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_brightness_low_outline = void 0; +var ic_brightness_low_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z" + }, + "children": [] + }] +}; +exports.ic_brightness_low_outline = ic_brightness_low_outline; \ No newline at end of file diff --git a/dist/md/ic_brightness_low_twotone.js b/dist/md/ic_brightness_low_twotone.js new file mode 100644 index 000000000..323718c36 --- /dev/null +++ b/dist/md/ic_brightness_low_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_brightness_low_twotone = void 0; +var ic_brightness_low_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 9.52V6h-3.52L12 3.52 9.52 6H6v3.52L3.52 12 6 14.48V18h3.52L12 20.48 14.48 18H18v-3.52L20.48 12 18 9.52zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z", + "fill-opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z" + }, + "children": [] + }] +}; +exports.ic_brightness_low_twotone = ic_brightness_low_twotone; \ No newline at end of file diff --git a/dist/md/ic_brightness_medium.js b/dist/md/ic_brightness_medium.js new file mode 100644 index 000000000..5feadf86a --- /dev/null +++ b/dist/md/ic_brightness_medium.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_brightness_medium = void 0; +var ic_brightness_medium = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 15.31L23.31 12 20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69zM12 18V6c3.31 0 6 2.69 6 6s-2.69 6-6 6z" + }, + "children": [] + }] +}; +exports.ic_brightness_medium = ic_brightness_medium; \ No newline at end of file diff --git a/dist/md/ic_brightness_medium_outline.js b/dist/md/ic_brightness_medium_outline.js new file mode 100644 index 000000000..33c9facdb --- /dev/null +++ b/dist/md/ic_brightness_medium_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_brightness_medium_outline = void 0; +var ic_brightness_medium_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6v12c3.31 0 6-2.69 6-6s-2.69-6-6-6z" + }, + "children": [] + }] +}; +exports.ic_brightness_medium_outline = ic_brightness_medium_outline; \ No newline at end of file diff --git a/dist/md/ic_brightness_medium_twotone.js b/dist/md/ic_brightness_medium_twotone.js new file mode 100644 index 000000000..71390e333 --- /dev/null +++ b/dist/md/ic_brightness_medium_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_brightness_medium_twotone = void 0; +var ic_brightness_medium_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 9.52V6h-3.52L12 3.52 9.52 6H6v3.52L3.52 12 6 14.48V18h3.52L12 20.48 14.48 18H18v-3.52L20.48 12 18 9.52zM12 18V6c3.31 0 6 2.69 6 6s-2.69 6-6 6z", + "fill-opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6v12c3.31 0 6-2.69 6-6s-2.69-6-6-6z" + }, + "children": [] + }] +}; +exports.ic_brightness_medium_twotone = ic_brightness_medium_twotone; \ No newline at end of file diff --git a/dist/md/ic_broken_image.js b/dist/md/ic_broken_image.js new file mode 100644 index 000000000..99640df7c --- /dev/null +++ b/dist/md/ic_broken_image.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_broken_image = void 0; +var ic_broken_image = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0zm0 0h24v24H0zm21 19c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2h14c1.1 0 2 .9 2 2", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 5v6.59l-3-3.01-4 4.01-4-4-4 4-3-3.01V5c0-1.1.9-2 2-2h14c1.1 0 2 .9 2 2zm-3 6.42l3 3.01V19c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2v-6.58l3 2.99 4-4 4 4 4-3.99z" + }, + "children": [] + }] +}; +exports.ic_broken_image = ic_broken_image; \ No newline at end of file diff --git a/dist/md/ic_broken_image_outline.js b/dist/md/ic_broken_image_outline.js new file mode 100644 index 000000000..e3594b183 --- /dev/null +++ b/dist/md/ic_broken_image_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_broken_image_outline = void 0; +var ic_broken_image_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5v-4.58l.99.99 4-4 4 4 4-3.99L19 12.43V19zm0-9.41l-1.01-1.01-4 4.01-4-4-4 4-.99-1V5h14v4.59z" + }, + "children": [] + }] +}; +exports.ic_broken_image_outline = ic_broken_image_outline; \ No newline at end of file diff --git a/dist/md/ic_broken_image_twotone.js b/dist/md/ic_broken_image_twotone.js new file mode 100644 index 000000000..a7817cb2c --- /dev/null +++ b/dist/md/ic_broken_image_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_broken_image_twotone = void 0; +var ic_broken_image_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13.99 15.41l-4-4-4 4-.99-.99V19h14v-6.57l-1.01-1.01zM5 11.59l.99 1 4-4 4 4 4-4.01L19 9.59V5H5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5v-4.58l.99.99 4-4 4 4 4-3.99L19 12.43V19zm0-9.41l-1.01-1.01-4 4.01-4-4-4 4-.99-1V5h14v4.59z" + }, + "children": [] + }] +}; +exports.ic_broken_image_twotone = ic_broken_image_twotone; \ No newline at end of file diff --git a/dist/md/ic_browser_not_supported.js b/dist/md/ic_browser_not_supported.js new file mode 100644 index 000000000..cd7d05e31 --- /dev/null +++ b/dist/md/ic_browser_not_supported.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_browser_not_supported = void 0; +var ic_browser_not_supported = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,6v10.5l1.95,1.95C20.98,18.3,21,18.15,21,18V6c0-1.1-0.9-2-2-2H6.5l2,2H19z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,6v10.5l1.95,1.95C20.98,18.3,21,18.15,21,18V6c0-1.1-0.9-2-2-2H6.5l2,2H19z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M3.22,3.32L1.95,4.59L3,5.64L3,18c0,1.1,0.9,2,2,2h12.36l2.06,2.06l1.27-1.27L3.22,3.32z M15,18H5V7.64L15.36,18H15z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M3.22,3.32L1.95,4.59L3,5.64L3,18c0,1.1,0.9,2,2,2h12.36l2.06,2.06l1.27-1.27L3.22,3.32z M15,18H5V7.64L15.36,18H15z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_browser_not_supported = ic_browser_not_supported; \ No newline at end of file diff --git a/dist/md/ic_browser_not_supported_outline.js b/dist/md/ic_browser_not_supported_outline.js new file mode 100644 index 000000000..ef0ffaaea --- /dev/null +++ b/dist/md/ic_browser_not_supported_outline.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_browser_not_supported_outline = void 0; +var ic_browser_not_supported_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,6v10.5l1.95,1.95C20.98,18.3,21,18.15,21,18V6c0-1.1-0.9-2-2-2H6.5l2,2H19z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,6v10.5l1.95,1.95C20.98,18.3,21,18.15,21,18V6c0-1.1-0.9-2-2-2H6.5l2,2H19z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M3.22,3.32L1.95,4.59L3,5.64L3,18c0,1.1,0.9,2,2,2h12.36l2.06,2.06l1.27-1.27L3.22,3.32z M15,18H5V7.64L15.36,18H15z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M3.22,3.32L1.95,4.59L3,5.64L3,18c0,1.1,0.9,2,2,2h12.36l2.06,2.06l1.27-1.27L3.22,3.32z M15,18H5V7.64L15.36,18H15z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_browser_not_supported_outline = ic_browser_not_supported_outline; \ No newline at end of file diff --git a/dist/md/ic_browser_not_supported_twotone.js b/dist/md/ic_browser_not_supported_twotone.js new file mode 100644 index 000000000..9cb45d2a1 --- /dev/null +++ b/dist/md/ic_browser_not_supported_twotone.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_browser_not_supported_twotone = void 0; +var ic_browser_not_supported_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,6v10.5l1.95,1.95C20.98,18.3,21,18.15,21,18V6c0-1.1-0.9-2-2-2H6.5l2,2H19z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,6v10.5l1.95,1.95C20.98,18.3,21,18.15,21,18V6c0-1.1-0.9-2-2-2H6.5l2,2H19z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M3.22,3.32L1.95,4.59L3,5.64L3,18c0,1.1,0.9,2,2,2h12.36l2.06,2.06l1.27-1.27L3.22,3.32z M15,18H5V7.64L15.36,18H15z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M3.22,3.32L1.95,4.59L3,5.64L3,18c0,1.1,0.9,2,2,2h12.36l2.06,2.06l1.27-1.27L3.22,3.32z M15,18H5V7.64L15.36,18H15z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_browser_not_supported_twotone = ic_browser_not_supported_twotone; \ No newline at end of file diff --git a/dist/md/ic_brunch_dining.js b/dist/md/ic_brunch_dining.js new file mode 100644 index 000000000..f27f3223e --- /dev/null +++ b/dist/md/ic_brunch_dining.js @@ -0,0 +1,49 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_brunch_dining = void 0; +var ic_brunch_dining = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M18,8h2V4h-2V8z M15.51,22H2.49C2.22,22,2,21.78,2,21.5V20h14v1.5 C16,21.78,15.78,22,15.51,22z M18,15.89l-0.4-0.42c-1.02-1.08-1.6-2.52-1.6-4V2h6v9.51c0,1.46-0.54,2.87-1.53,3.94L20,15.97V20h2v2 h-4V15.89z M7,16v-2h4v2h4.5c0.28,0,0.5,0.22,0.5,0.5v1c0,0.28-0.22,0.5-0.5,0.5h-13C2.22,18,2,17.78,2,17.5v-1 C2,16.22,2.22,16,2.5,16H7z", + "fill-rule": "evenodd" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18,8h2V4h-2V8z M15.51,22H2.49C2.22,22,2,21.78,2,21.5V20h14v1.5 C16,21.78,15.78,22,15.51,22z M18,15.89l-0.4-0.42c-1.02-1.08-1.6-2.52-1.6-4V2h6v9.51c0,1.46-0.54,2.87-1.53,3.94L20,15.97V20h2v2 h-4V15.89z M7,16v-2h4v2h4.5c0.28,0,0.5,0.22,0.5,0.5v1c0,0.28-0.22,0.5-0.5,0.5h-13C2.22,18,2,17.78,2,17.5v-1 C2,16.22,2.22,16,2.5,16H7z", + "fill-rule": "evenodd" + }, + "children": [] + }] + }] + }] +}; +exports.ic_brunch_dining = ic_brunch_dining; \ No newline at end of file diff --git a/dist/md/ic_brush.js b/dist/md/ic_brush.js new file mode 100644 index 000000000..b53442b06 --- /dev/null +++ b/dist/md/ic_brush.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_brush = void 0; +var ic_brush = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 14c-1.66 0-3 1.34-3 3 0 1.31-1.16 2-2 2 .92 1.22 2.49 2 4 2 2.21 0 4-1.79 4-4 0-1.66-1.34-3-3-3zm13.71-9.37l-1.34-1.34c-.39-.39-1.02-.39-1.41 0L9 12.25 11.75 15l8.96-8.96c.39-.39.39-1.02 0-1.41z" + }, + "children": [] + }] +}; +exports.ic_brush = ic_brush; \ No newline at end of file diff --git a/dist/md/ic_brush_outline.js b/dist/md/ic_brush_outline.js new file mode 100644 index 000000000..7871e37b8 --- /dev/null +++ b/dist/md/ic_brush_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_brush_outline = void 0; +var ic_brush_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 16c.55 0 1 .45 1 1 0 1.1-.9 2-2 2-.17 0-.33-.02-.5-.05.31-.55.5-1.21.5-1.95 0-.55.45-1 1-1M18.67 3c-.26 0-.51.1-.71.29L9 12.25 11.75 15l8.96-8.96c.39-.39.39-1.02 0-1.41l-1.34-1.34c-.2-.2-.45-.29-.7-.29zM7 14c-1.66 0-3 1.34-3 3 0 1.31-1.16 2-2 2 .92 1.22 2.49 2 4 2 2.21 0 4-1.79 4-4 0-1.66-1.34-3-3-3z" + }, + "children": [] + }] +}; +exports.ic_brush_outline = ic_brush_outline; \ No newline at end of file diff --git a/dist/md/ic_brush_twotone.js b/dist/md/ic_brush_twotone.js new file mode 100644 index 000000000..7f1e42988 --- /dev/null +++ b/dist/md/ic_brush_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_brush_twotone = void 0; +var ic_brush_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8 17c0-.55-.45-1-1-1s-1 .45-1 1c0 .74-.19 1.4-.5 1.95.17.03.33.05.5.05 1.1 0 2-.9 2-2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.75 15l8.96-8.96c.39-.39.39-1.02 0-1.41l-1.34-1.34c-.2-.2-.45-.29-.7-.29s-.51.1-.71.29L9 12.25 11.75 15zM6 21c2.21 0 4-1.79 4-4 0-1.66-1.34-3-3-3s-3 1.34-3 3c0 1.31-1.16 2-2 2 .92 1.22 2.49 2 4 2zm0-4c0-.55.45-1 1-1s1 .45 1 1c0 1.1-.9 2-2 2-.17 0-.33-.02-.5-.05.31-.55.5-1.21.5-1.95z" + }, + "children": [] + }] +}; +exports.ic_brush_twotone = ic_brush_twotone; \ No newline at end of file diff --git a/dist/md/ic_bubble_chart.js b/dist/md/ic_bubble_chart.js new file mode 100644 index 000000000..0ec1f89f2 --- /dev/null +++ b/dist/md/ic_bubble_chart.js @@ -0,0 +1,42 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_bubble_chart = void 0; +var ic_bubble_chart = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "7.2", + "cy": "14.4", + "r": "3.2" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "14.8", + "cy": "18", + "r": "2" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "15.2", + "cy": "8.8", + "r": "4.8" + }, + "children": [] + }] +}; +exports.ic_bubble_chart = ic_bubble_chart; \ No newline at end of file diff --git a/dist/md/ic_bubble_chart_outline.js b/dist/md/ic_bubble_chart_outline.js new file mode 100644 index 000000000..777b07998 --- /dev/null +++ b/dist/md/ic_bubble_chart_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_bubble_chart_outline = void 0; +var ic_bubble_chart_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 10c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm8.01-1c-1.65 0-3 1.35-3 3s1.35 3 3 3 3-1.35 3-3-1.35-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM16.5 3C13.47 3 11 5.47 11 8.5s2.47 5.5 5.5 5.5S22 11.53 22 8.5 19.53 3 16.5 3zm0 9c-1.93 0-3.5-1.57-3.5-3.5S14.57 5 16.5 5 20 6.57 20 8.5 18.43 12 16.5 12z" + }, + "children": [] + }] +}; +exports.ic_bubble_chart_outline = ic_bubble_chart_outline; \ No newline at end of file diff --git a/dist/md/ic_bubble_chart_twotone.js b/dist/md/ic_bubble_chart_twotone.js new file mode 100644 index 000000000..a3706fd5d --- /dev/null +++ b/dist/md/ic_bubble_chart_twotone.js @@ -0,0 +1,49 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_bubble_chart_twotone = void 0; +var ic_bubble_chart_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16.5 12c1.93 0 3.5-1.57 3.5-3.5S18.43 5 16.5 5 13 6.57 13 8.5s1.57 3.5 3.5 3.5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "15.01", + "cy": "18", + "opacity": ".3", + "r": "1" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "7", + "cy": "14", + "opacity": ".3", + "r": "2" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 18c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm11.01 6c0-1.65-1.35-3-3-3s-3 1.35-3 3 1.35 3 3 3 3-1.35 3-3zm-4 0c0-.55.45-1 1-1s1 .45 1 1-.45 1-1 1-1-.45-1-1zm2.49-4c3.03 0 5.5-2.47 5.5-5.5S19.53 3 16.5 3 11 5.47 11 8.5s2.47 5.5 5.5 5.5zm0-9C18.43 5 20 6.57 20 8.5S18.43 12 16.5 12 13 10.43 13 8.5 14.57 5 16.5 5z" + }, + "children": [] + }] +}; +exports.ic_bubble_chart_twotone = ic_bubble_chart_twotone; \ No newline at end of file diff --git a/dist/md/ic_bug_report.js b/dist/md/ic_bug_report.js new file mode 100644 index 000000000..eb5269946 --- /dev/null +++ b/dist/md/ic_bug_report.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_bug_report = void 0; +var ic_bug_report = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 8h-2.81c-.45-.78-1.07-1.45-1.82-1.96L17 4.41 15.59 3l-2.17 2.17C12.96 5.06 12.49 5 12 5c-.49 0-.96.06-1.41.17L8.41 3 7 4.41l1.62 1.63C7.88 6.55 7.26 7.22 6.81 8H4v2h2.09c-.05.33-.09.66-.09 1v1H4v2h2v1c0 .34.04.67.09 1H4v2h2.81c1.04 1.79 2.97 3 5.19 3s4.15-1.21 5.19-3H20v-2h-2.09c.05-.33.09-.66.09-1v-1h2v-2h-2v-1c0-.34-.04-.67-.09-1H20V8zm-6 8h-4v-2h4v2zm0-4h-4v-2h4v2z" + }, + "children": [] + }] +}; +exports.ic_bug_report = ic_bug_report; \ No newline at end of file diff --git a/dist/md/ic_bug_report_outline.js b/dist/md/ic_bug_report_outline.js new file mode 100644 index 000000000..42f6deed1 --- /dev/null +++ b/dist/md/ic_bug_report_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_bug_report_outline = void 0; +var ic_bug_report_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 8h-2.81c-.45-.78-1.07-1.45-1.82-1.96L17 4.41 15.59 3l-2.17 2.17C12.96 5.06 12.49 5 12 5s-.96.06-1.41.17L8.41 3 7 4.41l1.62 1.63C7.88 6.55 7.26 7.22 6.81 8H4v2h2.09c-.05.33-.09.66-.09 1v1H4v2h2v1c0 .34.04.67.09 1H4v2h2.81c1.04 1.79 2.97 3 5.19 3s4.15-1.21 5.19-3H20v-2h-2.09c.05-.33.09-.66.09-1v-1h2v-2h-2v-1c0-.34-.04-.67-.09-1H20V8zm-4 4v3c0 .22-.03.47-.07.7l-.1.65-.37.65c-.72 1.24-2.04 2-3.46 2s-2.74-.77-3.46-2l-.37-.64-.1-.65C8.03 15.48 8 15.23 8 15v-4c0-.23.03-.48.07-.7l.1-.65.37-.65c.3-.52.72-.97 1.21-1.31l.57-.39.74-.18c.31-.08.63-.12.94-.12.32 0 .63.04.95.12l.68.16.61.42c.5.34.91.78 1.21 1.31l.38.65.1.65c.04.22.07.47.07.69v1zm-6 2h4v2h-4zm0-4h4v2h-4z" + }, + "children": [] + }] +}; +exports.ic_bug_report_outline = ic_bug_report_outline; \ No newline at end of file diff --git a/dist/md/ic_bug_report_twotone.js b/dist/md/ic_bug_report_twotone.js new file mode 100644 index 000000000..74f464abd --- /dev/null +++ b/dist/md/ic_bug_report_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_bug_report_twotone = void 0; +var ic_bug_report_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.83 9.65L15.46 9c-.3-.53-.71-.96-1.21-1.31l-.61-.42-.68-.16C12.63 7.04 12.32 7 12 7c-.31 0-.63.04-.94.11l-.74.18-.57.4c-.49.34-.91.79-1.21 1.31l-.37.65-.1.65c-.04.23-.07.48-.07.7v4c0 .22.03.47.07.7l.1.65.37.65c.72 1.24 2.04 2 3.46 2s2.74-.77 3.46-2l.37-.64.1-.65c.04-.24.07-.49.07-.71v-4c0-.22-.03-.47-.07-.7l-.1-.65zM14 16h-4v-2h4v2zm0-4h-4v-2h4v2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 8h-2.81c-.45-.78-1.07-1.45-1.82-1.96L17 4.41 15.59 3l-2.17 2.17C12.96 5.06 12.49 5 12 5s-.96.06-1.41.17L8.41 3 7 4.41l1.62 1.63C7.88 6.55 7.26 7.22 6.81 8H4v2h2.09c-.05.33-.09.66-.09 1v1H4v2h2v1c0 .34.04.67.09 1H4v2h2.81c1.04 1.79 2.97 3 5.19 3s4.15-1.21 5.19-3H20v-2h-2.09c.05-.33.09-.66.09-1v-1h2v-2h-2v-1c0-.34-.04-.67-.09-1H20V8zm-4 4v3c0 .22-.03.47-.07.7l-.1.65-.37.65c-.72 1.24-2.04 2-3.46 2s-2.74-.77-3.46-2l-.37-.64-.1-.65C8.03 15.47 8 15.22 8 15v-4c0-.22.03-.47.07-.7l.1-.65.37-.65c.3-.52.72-.97 1.21-1.31l.57-.39.74-.18c.31-.08.63-.12.94-.12.32 0 .63.04.95.12l.68.16.61.42c.5.34.91.78 1.21 1.31l.38.65.1.65c.04.22.07.47.07.69v1zm-6 2h4v2h-4zm0-4h4v2h-4z" + }, + "children": [] + }] +}; +exports.ic_bug_report_twotone = ic_bug_report_twotone; \ No newline at end of file diff --git a/dist/md/ic_build.js b/dist/md/ic_build.js new file mode 100644 index 000000000..34669abd3 --- /dev/null +++ b/dist/md/ic_build.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_build = void 0; +var ic_build = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "clip-rule": "evenodd", + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22.7 19l-9.1-9.1c.9-2.3.4-5-1.5-6.9-2-2-5-2.4-7.4-1.3L9 6 6 9 1.6 4.7C.4 7.1.9 10.1 2.9 12.1c1.9 1.9 4.6 2.4 6.9 1.5l9.1 9.1c.4.4 1 .4 1.4 0l2.3-2.3c.5-.4.5-1.1.1-1.4z" + }, + "children": [] + }] +}; +exports.ic_build = ic_build; \ No newline at end of file diff --git a/dist/md/ic_build_circle.js b/dist/md/ic_build_circle.js new file mode 100644 index 000000000..dd347348a --- /dev/null +++ b/dist/md/ic_build_circle.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_build_circle = void 0; +var ic_build_circle = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10 C22,6.48,17.52,2,12,2z M16.9,15.49l-1.4,1.4c-0.2,0.2-0.51,0.2-0.71,0l-3.41-3.41c-1.22,0.43-2.64,0.17-3.62-0.81 c-1.11-1.11-1.3-2.79-0.59-4.1l2.35,2.35l1.41-1.41L8.58,7.17c1.32-0.71,2.99-0.52,4.1,0.59c0.98,0.98,1.24,2.4,0.81,3.62 l3.41,3.41C17.09,14.98,17.09,15.3,16.9,15.49z", + "fill-rule": "evenodd" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10 C22,6.48,17.52,2,12,2z M16.9,15.49l-1.4,1.4c-0.2,0.2-0.51,0.2-0.71,0l-3.41-3.41c-1.22,0.43-2.64,0.17-3.62-0.81 c-1.11-1.11-1.3-2.79-0.59-4.1l2.35,2.35l1.41-1.41L8.58,7.17c1.32-0.71,2.99-0.52,4.1,0.59c0.98,0.98,1.24,2.4,0.81,3.62 l3.41,3.41C17.09,14.98,17.09,15.3,16.9,15.49z", + "fill-rule": "evenodd" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_build_circle = ic_build_circle; \ No newline at end of file diff --git a/dist/md/ic_build_circle_outline.js b/dist/md/ic_build_circle_outline.js new file mode 100644 index 000000000..e127c0340 --- /dev/null +++ b/dist/md/ic_build_circle_outline.js @@ -0,0 +1,71 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_build_circle_outline = void 0; +var ic_build_circle_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10 C22,6.48,17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8c0-4.41,3.59-8,8-8s8,3.59,8,8C20,16.41,16.41,20,12,20z", + "fill-rule": "evenodd" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10 C22,6.48,17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8c0-4.41,3.59-8,8-8s8,3.59,8,8C20,16.41,16.41,20,12,20z", + "fill-rule": "evenodd" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M13.49,11.38c0.43-1.22,0.17-2.64-0.81-3.62c-1.11-1.11-2.79-1.3-4.1-0.59 l2.35,2.35l-1.41,1.41L7.17,8.58c-0.71,1.32-0.52,2.99,0.59,4.1c0.98,0.98,2.4,1.24,3.62,0.81l3.41,3.41c0.2,0.2,0.51,0.2,0.71,0 l1.4-1.4c0.2-0.2,0.2-0.51,0-0.71L13.49,11.38z", + "fill-rule": "evenodd" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M13.49,11.38c0.43-1.22,0.17-2.64-0.81-3.62c-1.11-1.11-2.79-1.3-4.1-0.59 l2.35,2.35l-1.41,1.41L7.17,8.58c-0.71,1.32-0.52,2.99,0.59,4.1c0.98,0.98,2.4,1.24,3.62,0.81l3.41,3.41c0.2,0.2,0.51,0.2,0.71,0 l1.4-1.4c0.2-0.2,0.2-0.51,0-0.71L13.49,11.38z", + "fill-rule": "evenodd" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_build_circle_outline = ic_build_circle_outline; \ No newline at end of file diff --git a/dist/md/ic_build_circle_twotone.js b/dist/md/ic_build_circle_twotone.js new file mode 100644 index 000000000..41e4a7f4b --- /dev/null +++ b/dist/md/ic_build_circle_twotone.js @@ -0,0 +1,81 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_build_circle_twotone = void 0; +var ic_build_circle_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,4c-4.41,0-8,3.59-8,8c0,4.41,3.59,8,8,8c4.41,0,8-3.59,8-8C20,7.59,16.41,4,12,4z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,4c-4.41,0-8,3.59-8,8c0,4.41,3.59,8,8,8c4.41,0,8-3.59,8-8C20,7.59,16.41,4,12,4z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8 c0-4.41,3.59-8,8-8c4.41,0,8,3.59,8,8C20,16.41,16.41,20,12,20z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8 c0-4.41,3.59-8,8-8c4.41,0,8,3.59,8,8C20,16.41,16.41,20,12,20z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M12.68,7.76c-1.11-1.11-2.79-1.3-4.1-0.59l2.35,2.35l-1.41,1.41L7.17,8.58c-0.71,1.32-0.52,2.99,0.59,4.1 c0.98,0.98,2.4,1.24,3.62,0.81l3.41,3.41c0.2,0.2,0.51,0.2,0.71,0l1.4-1.4c0.2-0.2,0.2-0.51,0-0.71l-3.41-3.41 C13.92,10.15,13.66,8.74,12.68,7.76z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12.68,7.76c-1.11-1.11-2.79-1.3-4.1-0.59l2.35,2.35l-1.41,1.41L7.17,8.58c-0.71,1.32-0.52,2.99,0.59,4.1 c0.98,0.98,2.4,1.24,3.62,0.81l3.41,3.41c0.2,0.2,0.51,0.2,0.71,0l1.4-1.4c0.2-0.2,0.2-0.51,0-0.71l-3.41-3.41 C13.92,10.15,13.66,8.74,12.68,7.76z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_build_circle_twotone = ic_build_circle_twotone; \ No newline at end of file diff --git a/dist/md/ic_build_outline.js b/dist/md/ic_build_outline.js new file mode 100644 index 000000000..d914081bc --- /dev/null +++ b/dist/md/ic_build_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_build_outline = void 0; +var ic_build_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22.61 18.99l-9.08-9.08c.93-2.34.45-5.1-1.44-7C9.79.61 6.21.4 3.66 2.26L7.5 6.11 6.08 7.52 2.25 3.69C.39 6.23.6 9.82 2.9 12.11c1.86 1.86 4.57 2.35 6.89 1.48l9.11 9.11c.39.39 1.02.39 1.41 0l2.3-2.3c.4-.38.4-1.01 0-1.41zm-3 1.6l-9.46-9.46c-.61.45-1.29.72-2 .82-1.36.2-2.79-.21-3.83-1.25C3.37 9.76 2.93 8.5 3 7.26l3.09 3.09 4.24-4.24-3.09-3.09c1.24-.07 2.49.37 3.44 1.31 1.08 1.08 1.49 2.57 1.24 3.96-.12.71-.42 1.37-.88 1.96l9.45 9.45-.88.89z" + }, + "children": [] + }] +}; +exports.ic_build_outline = ic_build_outline; \ No newline at end of file diff --git a/dist/md/ic_build_twotone.js b/dist/md/ic_build_twotone.js new file mode 100644 index 000000000..917acea7e --- /dev/null +++ b/dist/md/ic_build_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_build_twotone = void 0; +var ic_build_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.92 8.28c.24-1.4-.16-2.89-1.24-3.96-.94-.95-2.2-1.39-3.44-1.32l3.09 3.09-4.24 4.24L3 7.24c-.07 1.24.37 2.49 1.31 3.44 1.04 1.04 2.47 1.45 3.83 1.25.71-.1 1.4-.38 2-.82l9.46 9.46.88-.88-9.45-9.45c.47-.6.77-1.26.89-1.96z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22.61 18.97L13.54 9.9c.93-2.34.45-5.1-1.44-7C9.8.6 6.22.39 3.67 2.25L7.5 6.08 6.08 7.5 2.25 3.67C.39 6.21.6 9.79 2.9 12.09c1.86 1.86 4.57 2.35 6.89 1.48l9.11 9.11c.39.39 1.02.39 1.41 0l2.3-2.3c.4-.38.4-1.02 0-1.41zm-3 1.6l-9.46-9.46c-.61.45-1.29.72-2 .82-1.36.2-2.79-.21-3.83-1.25-.95-.94-1.39-2.2-1.32-3.44l3.09 3.09 4.24-4.24L7.24 3c1.24-.07 2.49.37 3.44 1.31 1.08 1.08 1.49 2.57 1.24 3.96-.12.7-.42 1.36-.88 1.95l9.45 9.45-.88.9z" + }, + "children": [] + }] +}; +exports.ic_build_twotone = ic_build_twotone; \ No newline at end of file diff --git a/dist/md/ic_burst_mode.js b/dist/md/ic_burst_mode.js new file mode 100644 index 000000000..62488de67 --- /dev/null +++ b/dist/md/ic_burst_mode.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_burst_mode = void 0; +var ic_burst_mode = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M1 5h2v14H1zm4 0h2v14H5zm17 0H10c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zM11 17l2.5-3.15L15.29 16l2.5-3.22L21 17H11z" + }, + "children": [] + }] +}; +exports.ic_burst_mode = ic_burst_mode; \ No newline at end of file diff --git a/dist/md/ic_burst_mode_outline.js b/dist/md/ic_burst_mode_outline.js new file mode 100644 index 000000000..f7e51d705 --- /dev/null +++ b/dist/md/ic_burst_mode_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_burst_mode_outline = void 0; +var ic_burst_mode_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M1 5h2v14H1zm4 0h2v14H5zm17 0H10c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zm-1 12H11V7h10v10zm-3.57-4.38l-2 2.57L14 13.47l-2 2.52h8z" + }, + "children": [] + }] +}; +exports.ic_burst_mode_outline = ic_burst_mode_outline; \ No newline at end of file diff --git a/dist/md/ic_burst_mode_twotone.js b/dist/md/ic_burst_mode_twotone.js new file mode 100644 index 000000000..36f2c0d82 --- /dev/null +++ b/dist/md/ic_burst_mode_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_burst_mode_twotone = void 0; +var ic_burst_mode_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 17h10V7H11v10zm3-3.53l1.43 1.72 2-2.58L20 15.99h-8l2-2.52z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M1 5h2v14H1zm4 0h2v14H5zm17 0H10c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zm-1 12H11V7h10v10zm-3.57-4.38l-2 2.57L14 13.47l-2 2.52h8z" + }, + "children": [] + }] +}; +exports.ic_burst_mode_twotone = ic_burst_mode_twotone; \ No newline at end of file diff --git a/dist/md/ic_bus_alert.js b/dist/md/ic_bus_alert.js new file mode 100644 index 000000000..d1a4f503f --- /dev/null +++ b/dist/md/ic_bus_alert.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_bus_alert = void 0; +var ic_bus_alert = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 1a7 7 0 0 0-5.78 3.05l.02-.03C9.84 4 9.42 4 9 4c-4.42 0-8 .5-8 4v10c0 .88.39 1.67 1 2.22V22a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1h8v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1.78c.61-.55 1-1.34 1-2.22v-3.08A7 7 0 0 0 16 1zM4.5 19a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3zM3 13V8h6c0 1.96.81 3.73 2.11 5H3zm10.5 6a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3zm2.5-6a5 5 0 1 1 0-10 5 5 0 0 1 0 10zm-1-9h2v5h-2zm0 6h2v2h-2z" + }, + "children": [] + }] +}; +exports.ic_bus_alert = ic_bus_alert; \ No newline at end of file diff --git a/dist/md/ic_business.js b/dist/md/ic_business.js new file mode 100644 index 000000000..2d9c4aac8 --- /dev/null +++ b/dist/md/ic_business.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_business = void 0; +var ic_business = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 7V3H2v18h20V7H12zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4 12H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm10 12h-8v-2h2v-2h-2v-2h2v-2h-2V9h8v10zm-2-8h-2v2h2v-2zm0 4h-2v2h2v-2z" + }, + "children": [] + }] +}; +exports.ic_business = ic_business; \ No newline at end of file diff --git a/dist/md/ic_business_center.js b/dist/md/ic_business_center.js new file mode 100644 index 000000000..432cc0b3b --- /dev/null +++ b/dist/md/ic_business_center.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_business_center = void 0; +var ic_business_center = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0zm10 5h4v2h-4zm0 0h4v2h-4z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 16v-1H3.01L3 19c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2v-4h-7v1h-4zm10-9h-4.01V5l-2-2h-4l-2 2v2H4c-1.1 0-2 .9-2 2v3c0 1.11.89 2 2 2h6v-2h4v2h6c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zm-6 0h-4V5h4v2z" + }, + "children": [] + }] +}; +exports.ic_business_center = ic_business_center; \ No newline at end of file diff --git a/dist/md/ic_business_center_outline.js b/dist/md/ic_business_center_outline.js new file mode 100644 index 000000000..735dd8931 --- /dev/null +++ b/dist/md/ic_business_center_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_business_center_outline = void 0; +var ic_business_center_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 7h-4V5l-2-2h-4L8 5v2H4c-1.1 0-2 .9-2 2v5c0 .75.4 1.38 1 1.73V19c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2v-3.28c.59-.35 1-.99 1-1.72V9c0-1.1-.9-2-2-2zM10 5h4v2h-4V5zM4 9h16v5h-5v-3H9v3H4V9zm9 6h-2v-2h2v2zm6 4H5v-3h4v1h6v-1h4v3z" + }, + "children": [] + }] +}; +exports.ic_business_center_outline = ic_business_center_outline; \ No newline at end of file diff --git a/dist/md/ic_business_center_twotone.js b/dist/md/ic_business_center_twotone.js new file mode 100644 index 000000000..9d6e8e3e9 --- /dev/null +++ b/dist/md/ic_business_center_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_business_center_twotone = void 0; +var ic_business_center_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 17H9v-1H5v3h14v-3h-4zM4 14h5v-3h6v3h5V9H4z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 7h-4V5l-2-2h-4L8 5v2H4c-1.1 0-2 .9-2 2v5c0 .75.4 1.38 1 1.73V19c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2v-3.28c.59-.35 1-.99 1-1.72V9c0-1.1-.9-2-2-2zM10 5h4v2h-4V5zm9 14H5v-3h4v1h6v-1h4v3zm-8-4v-2h2v2h-2zm9-1h-5v-3H9v3H4V9h16v5z" + }, + "children": [] + }] +}; +exports.ic_business_center_twotone = ic_business_center_twotone; \ No newline at end of file diff --git a/dist/md/ic_business_outline.js b/dist/md/ic_business_outline.js new file mode 100644 index 000000000..5f9cc4517 --- /dev/null +++ b/dist/md/ic_business_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_business_outline = void 0; +var ic_business_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 7V3H2v18h20V7H12zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4 12H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm10 12h-8v-2h2v-2h-2v-2h2v-2h-2V9h8v10zm-2-8h-2v2h2v-2zm0 4h-2v2h2v-2z" + }, + "children": [] + }] +}; +exports.ic_business_outline = ic_business_outline; \ No newline at end of file diff --git a/dist/md/ic_business_twotone.js b/dist/md/ic_business_twotone.js new file mode 100644 index 000000000..94d05289d --- /dev/null +++ b/dist/md/ic_business_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_business_twotone = void 0; +var ic_business_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 11h2v2h-2v2h2v2h-2v2h8V9h-8v2zm4 0h2v2h-2v-2zm0 4h2v2h-2v-2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 15h2v2h-2zm0-4h2v2h-2zm6-4H12V3H2v18h20V7zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4 12H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm10 12h-8v-2h2v-2h-2v-2h2v-2h-2V9h8v10z" + }, + "children": [] + }] +}; +exports.ic_business_twotone = ic_business_twotone; \ No newline at end of file diff --git a/dist/md/ic_cached.js b/dist/md/ic_cached.js new file mode 100644 index 000000000..70e4f7586 --- /dev/null +++ b/dist/md/ic_cached.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_cached = void 0; +var ic_cached = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 8l-4 4h3c0 3.31-2.69 6-6 6-1.01 0-1.97-.25-2.8-.7l-1.46 1.46C8.97 19.54 10.43 20 12 20c4.42 0 8-3.58 8-8h3l-4-4zM6 12c0-3.31 2.69-6 6-6 1.01 0 1.97.25 2.8.7l1.46-1.46C15.03 4.46 13.57 4 12 4c-4.42 0-8 3.58-8 8H1l4 4 4-4H6z" + }, + "children": [] + }] +}; +exports.ic_cached = ic_cached; \ No newline at end of file diff --git a/dist/md/ic_cached_outline.js b/dist/md/ic_cached_outline.js new file mode 100644 index 000000000..7627b772b --- /dev/null +++ b/dist/md/ic_cached_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_cached_outline = void 0; +var ic_cached_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 8l-4 4h3c0 3.31-2.69 6-6 6-1.01 0-1.97-.25-2.8-.7l-1.46 1.46C8.97 19.54 10.43 20 12 20c4.42 0 8-3.58 8-8h3l-4-4zM6 12c0-3.31 2.69-6 6-6 1.01 0 1.97.25 2.8.7l1.46-1.46C15.03 4.46 13.57 4 12 4c-4.42 0-8 3.58-8 8H1l4 4 4-4H6z" + }, + "children": [] + }] +}; +exports.ic_cached_outline = ic_cached_outline; \ No newline at end of file diff --git a/dist/md/ic_cached_twotone.js b/dist/md/ic_cached_twotone.js new file mode 100644 index 000000000..8b1b64216 --- /dev/null +++ b/dist/md/ic_cached_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_cached_twotone = void 0; +var ic_cached_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 8l-4 4h3c0 3.31-2.69 6-6 6-1.01 0-1.97-.25-2.8-.7l-1.46 1.46C8.97 19.54 10.43 20 12 20c4.42 0 8-3.58 8-8h3l-4-4zM6 12c0-3.31 2.69-6 6-6 1.01 0 1.97.25 2.8.7l1.46-1.46C15.03 4.46 13.57 4 12 4c-4.42 0-8 3.58-8 8H1l4 4 4-4H6z" + }, + "children": [] + }] +}; +exports.ic_cached_twotone = ic_cached_twotone; \ No newline at end of file diff --git a/dist/md/ic_cake.js b/dist/md/ic_cake.js new file mode 100644 index 000000000..d34957b87 --- /dev/null +++ b/dist/md/ic_cake.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_cake = void 0; +var ic_cake = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 6c1.11 0 2-.9 2-2 0-.38-.1-.73-.29-1.03L12 0l-1.71 2.97c-.19.3-.29.65-.29 1.03 0 1.1.9 2 2 2zm4.6 9.99l-1.07-1.07-1.08 1.07c-1.3 1.3-3.58 1.31-4.89 0l-1.07-1.07-1.09 1.07C6.75 16.64 5.88 17 4.96 17c-.73 0-1.4-.23-1.96-.61V21c0 .55.45 1 1 1h16c.55 0 1-.45 1-1v-4.61c-.56.38-1.23.61-1.96.61-.92 0-1.79-.36-2.44-1.01zM18 9h-5V7h-2v2H6c-1.66 0-3 1.34-3 3v1.54c0 1.08.88 1.96 1.96 1.96.52 0 1.02-.2 1.38-.57l2.14-2.13 2.13 2.13c.74.74 2.03.74 2.77 0l2.14-2.13 2.13 2.13c.37.37.86.57 1.38.57 1.08 0 1.96-.88 1.96-1.96V12C21 10.34 19.66 9 18 9z" + }, + "children": [] + }] +}; +exports.ic_cake = ic_cake; \ No newline at end of file diff --git a/dist/md/ic_cake_outline.js b/dist/md/ic_cake_outline.js new file mode 100644 index 000000000..9f5297a3c --- /dev/null +++ b/dist/md/ic_cake_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_cake_outline = void 0; +var ic_cake_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 6c1.11 0 2-.9 2-2 0-.38-.1-.73-.29-1.03L12 0l-1.71 2.97c-.19.3-.29.65-.29 1.03 0 1.1.9 2 2 2zm6 3h-5V7h-2v2H6c-1.66 0-3 1.34-3 3v9c0 .55.45 1 1 1h16c.55 0 1-.45 1-1v-9c0-1.66-1.34-3-3-3zm1 11H5v-3c.9-.01 1.76-.37 2.4-1.01l1.09-1.07 1.07 1.07c1.31 1.31 3.59 1.3 4.89 0l1.08-1.07 1.07 1.07c.64.64 1.5 1 2.4 1.01v3zm0-4.5c-.51-.01-.99-.2-1.35-.57l-2.13-2.13-2.14 2.13c-.74.74-2.03.74-2.77 0L8.48 12.8l-2.14 2.13c-.35.36-.83.56-1.34.57V12c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v3.5z" + }, + "children": [] + }] +}; +exports.ic_cake_outline = ic_cake_outline; \ No newline at end of file diff --git a/dist/md/ic_cake_twotone.js b/dist/md/ic_cake_twotone.js new file mode 100644 index 000000000..5c17806b6 --- /dev/null +++ b/dist/md/ic_cake_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_cake_twotone = void 0; +var ic_cake_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.53 14.92l-1.08 1.07c-1.3 1.3-3.58 1.31-4.89 0l-1.07-1.07-1.09 1.07c-.64.64-1.5 1-2.4 1.01v3h14v-3c-.9-.01-1.76-.37-2.4-1.01l-1.07-1.07zM18 11H6c-.55 0-1 .45-1 1v3.5c.51-.01.99-.21 1.34-.57l2.14-2.13 2.13 2.13c.74.74 2.03.74 2.77 0l2.14-2.13 2.13 2.13c.36.36.84.56 1.35.57V12c0-.55-.45-1-1-1z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 6c1.11 0 2-.9 2-2 0-.38-.1-.73-.29-1.03L12 0l-1.71 2.97c-.19.3-.29.65-.29 1.03 0 1.1.9 2 2 2zm6 3h-5V7h-2v2H6c-1.66 0-3 1.34-3 3v9c0 .55.45 1 1 1h16c.55 0 1-.45 1-1v-9c0-1.66-1.34-3-3-3zm1 11H5v-3c.9-.01 1.76-.37 2.4-1.01l1.09-1.07 1.07 1.07c1.31 1.31 3.59 1.3 4.89 0l1.08-1.07 1.07 1.07c.64.64 1.5 1 2.4 1.01v3zm0-4.5c-.51-.01-.99-.2-1.35-.57l-2.13-2.13-2.14 2.13c-.74.74-2.03.74-2.77 0L8.48 12.8l-2.14 2.13c-.35.36-.83.56-1.34.57V12c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v3.5z" + }, + "children": [] + }] +}; +exports.ic_cake_twotone = ic_cake_twotone; \ No newline at end of file diff --git a/dist/md/ic_calculate.js b/dist/md/ic_calculate.js new file mode 100644 index 000000000..b866f80aa --- /dev/null +++ b/dist/md/ic_calculate.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_calculate = void 0; +var ic_calculate = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M13.03,7.06L14.09,6l1.41,1.41 L16.91,6l1.06,1.06l-1.41,1.41l1.41,1.41l-1.06,1.06L15.5,9.54l-1.41,1.41l-1.06-1.06l1.41-1.41L13.03,7.06z M6.25,7.72h5v1.5h-5 V7.72z M11.5,16h-2v2H8v-2H6v-1.5h2v-2h1.5v2h2V16z M18,17.25h-5v-1.5h5V17.25z M18,14.75h-5v-1.5h5V14.75z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M13.03,7.06L14.09,6l1.41,1.41 L16.91,6l1.06,1.06l-1.41,1.41l1.41,1.41l-1.06,1.06L15.5,9.54l-1.41,1.41l-1.06-1.06l1.41-1.41L13.03,7.06z M6.25,7.72h5v1.5h-5 V7.72z M11.5,16h-2v2H8v-2H6v-1.5h2v-2h1.5v2h2V16z M18,17.25h-5v-1.5h5V17.25z M18,14.75h-5v-1.5h5V14.75z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_calculate = ic_calculate; \ No newline at end of file diff --git a/dist/md/ic_calculate_outline.js b/dist/md/ic_calculate_outline.js new file mode 100644 index 000000000..c95cd8576 --- /dev/null +++ b/dist/md/ic_calculate_outline.js @@ -0,0 +1,133 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_calculate_outline = void 0; +var ic_calculate_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "1.5", + "width": "5", + "x": "6.25", + "y": "7.72" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "1.5", + "width": "5", + "x": "6.25", + "y": "7.72" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "1.5", + "width": "5", + "x": "13", + "y": "15.75" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "1.5", + "width": "5", + "x": "13", + "y": "15.75" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "1.5", + "width": "5", + "x": "13", + "y": "13.25" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "1.5", + "width": "5", + "x": "13", + "y": "13.25" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "8,18 9.5,18 9.5,16 11.5,16 11.5,14.5 9.5,14.5 9.5,12.5 8,12.5 8,14.5 6,14.5 6,16 8,16" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "8,18 9.5,18 9.5,16 11.5,16 11.5,14.5 9.5,14.5 9.5,12.5 8,12.5 8,14.5 6,14.5 6,16 8,16" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "14.09,10.95 15.5,9.54 16.91,10.95 17.97,9.89 16.56,8.47 17.97,7.06 16.91,6 15.5,7.41 14.09,6 13.03,7.06 14.44,8.47 13.03,9.89" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "14.09,10.95 15.5,9.54 16.91,10.95 17.97,9.89 16.56,8.47 17.97,7.06 16.91,6 15.5,7.41 14.09,6 13.03,7.06 14.44,8.47 13.03,9.89" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_calculate_outline = ic_calculate_outline; \ No newline at end of file diff --git a/dist/md/ic_calculate_twotone.js b/dist/md/ic_calculate_twotone.js new file mode 100644 index 000000000..79ffa9c45 --- /dev/null +++ b/dist/md/ic_calculate_twotone.js @@ -0,0 +1,147 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_calculate_twotone = void 0; +var ic_calculate_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M5,19h14V5H5V19z M13.03,7.06L14.09,6l1.41,1.41L16.91,6l1.06,1.06l-1.41,1.41l1.41,1.41l-1.06,1.06 L15.5,9.54l-1.41,1.41l-1.06-1.06l1.41-1.41L13.03,7.06z M13,13.25h5v1.5h-5V13.25z M13,15.75h5v1.5h-5V15.75z M6.25,7.72h5v1.5 h-5V7.72z M6,14.5h2v-2h1.5v2h2V16h-2v2H8v-2H6V14.5z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M5,19h14V5H5V19z M13.03,7.06L14.09,6l1.41,1.41L16.91,6l1.06,1.06l-1.41,1.41l1.41,1.41l-1.06,1.06 L15.5,9.54l-1.41,1.41l-1.06-1.06l1.41-1.41L13.03,7.06z M13,13.25h5v1.5h-5V13.25z M13,15.75h5v1.5h-5V15.75z M6.25,7.72h5v1.5 h-5V7.72z M6,14.5h2v-2h1.5v2h2V16h-2v2H8v-2H6V14.5z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "1.5", + "width": "5", + "x": "6.25", + "y": "7.72" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "1.5", + "width": "5", + "x": "6.25", + "y": "7.72" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "1.5", + "width": "5", + "x": "13", + "y": "15.75" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "1.5", + "width": "5", + "x": "13", + "y": "15.75" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "1.5", + "width": "5", + "x": "13", + "y": "13.25" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "1.5", + "width": "5", + "x": "13", + "y": "13.25" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "8,18 9.5,18 9.5,16 11.5,16 11.5,14.5 9.5,14.5 9.5,12.5 8,12.5 8,14.5 6,14.5 6,16 8,16" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "8,18 9.5,18 9.5,16 11.5,16 11.5,14.5 9.5,14.5 9.5,12.5 8,12.5 8,14.5 6,14.5 6,16 8,16" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "14.09,10.95 15.5,9.54 16.91,10.95 17.97,9.89 16.56,8.47 17.97,7.06 16.91,6 15.5,7.41 14.09,6 13.03,7.06 14.44,8.47 13.03,9.89" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "14.09,10.95 15.5,9.54 16.91,10.95 17.97,9.89 16.56,8.47 17.97,7.06 16.91,6 15.5,7.41 14.09,6 13.03,7.06 14.44,8.47 13.03,9.89" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_calculate_twotone = ic_calculate_twotone; \ No newline at end of file diff --git a/dist/md/ic_calendar_today.js b/dist/md/ic_calendar_today.js new file mode 100644 index 000000000..30b8d5244 --- /dev/null +++ b/dist/md/ic_calendar_today.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_calendar_today = void 0; +var ic_calendar_today = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 3h-1V1h-2v2H7V1H5v2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 18H4V8h16v13z" + }, + "children": [] + }] +}; +exports.ic_calendar_today = ic_calendar_today; \ No newline at end of file diff --git a/dist/md/ic_calendar_today_outline.js b/dist/md/ic_calendar_today_outline.js new file mode 100644 index 000000000..8ae002f29 --- /dev/null +++ b/dist/md/ic_calendar_today_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_calendar_today_outline = void 0; +var ic_calendar_today_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 3h-1V1h-2v2H7V1H5v2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 18H4V10h16v11zm0-13H4V5h16v3z" + }, + "children": [] + }] +}; +exports.ic_calendar_today_outline = ic_calendar_today_outline; \ No newline at end of file diff --git a/dist/md/ic_calendar_today_twotone.js b/dist/md/ic_calendar_today_twotone.js new file mode 100644 index 000000000..1caf28c34 --- /dev/null +++ b/dist/md/ic_calendar_today_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_calendar_today_twotone = void 0; +var ic_calendar_today_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 3h-1V1h-2v2H7V1H5v2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 2v3H4V5h16zM4 21V10h16v11H4z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 5.01h16V8H4z", + "opacity": ".3" + }, + "children": [] + }] +}; +exports.ic_calendar_today_twotone = ic_calendar_today_twotone; \ No newline at end of file diff --git a/dist/md/ic_calendar_view_day.js b/dist/md/ic_calendar_view_day.js new file mode 100644 index 000000000..9e943c3a6 --- /dev/null +++ b/dist/md/ic_calendar_view_day.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_calendar_view_day = void 0; +var ic_calendar_view_day = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 17h18v2H3zm0-7h18v5H3zm0-4h18v2H3z" + }, + "children": [] + }] +}; +exports.ic_calendar_view_day = ic_calendar_view_day; \ No newline at end of file diff --git a/dist/md/ic_calendar_view_day_outline.js b/dist/md/ic_calendar_view_day_outline.js new file mode 100644 index 000000000..9a1c9b89f --- /dev/null +++ b/dist/md/ic_calendar_view_day_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_calendar_view_day_outline = void 0; +var ic_calendar_view_day_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 17h18v2H3zm16-5v1H5v-1h14m2-2H3v5h18v-5zM3 6h18v2H3z" + }, + "children": [] + }] +}; +exports.ic_calendar_view_day_outline = ic_calendar_view_day_outline; \ No newline at end of file diff --git a/dist/md/ic_calendar_view_day_twotone.js b/dist/md/ic_calendar_view_day_twotone.js new file mode 100644 index 000000000..2c85f56b0 --- /dev/null +++ b/dist/md/ic_calendar_view_day_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_calendar_view_day_twotone = void 0; +var ic_calendar_view_day_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 17h18v2H3zm16-5v1H5v-1h14m2-2H3v5h18v-5zM3 6h18v2H3z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 12h14v1H5z", + "opacity": ".3" + }, + "children": [] + }] +}; +exports.ic_calendar_view_day_twotone = ic_calendar_view_day_twotone; \ No newline at end of file diff --git a/dist/md/ic_call.js b/dist/md/ic_call.js new file mode 100644 index 000000000..5334c1e2d --- /dev/null +++ b/dist/md/ic_call.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_call = void 0; +var ic_call = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20.01 15.38c-1.23 0-2.42-.2-3.53-.56-.35-.12-.74-.03-1.01.24l-1.57 1.97c-2.83-1.35-5.48-3.9-6.89-6.83l1.95-1.66c.27-.28.35-.67.24-1.02-.37-1.11-.56-2.3-.56-3.53 0-.54-.45-.99-.99-.99H4.19C3.65 3 3 3.24 3 3.99 3 13.28 10.73 21 20.01 21c.71 0 .99-.63.99-1.18v-3.45c0-.54-.45-.99-.99-.99z" + }, + "children": [] + }] +}; +exports.ic_call = ic_call; \ No newline at end of file diff --git a/dist/md/ic_call_end.js b/dist/md/ic_call_end.js new file mode 100644 index 000000000..22df95c35 --- /dev/null +++ b/dist/md/ic_call_end.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_call_end = void 0; +var ic_call_end = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 9c-1.6 0-3.15.25-4.6.72v3.1c0 .39-.23.74-.56.9-.98.49-1.87 1.12-2.66 1.85-.18.18-.43.28-.7.28-.28 0-.53-.11-.71-.29L.29 13.08c-.18-.17-.29-.42-.29-.7 0-.28.11-.53.29-.71C3.34 8.78 7.46 7 12 7s8.66 1.78 11.71 4.67c.18.18.29.43.29.71 0 .28-.11.53-.29.71l-2.48 2.48c-.18.18-.43.29-.71.29-.27 0-.52-.11-.7-.28-.79-.74-1.69-1.36-2.67-1.85-.33-.16-.56-.5-.56-.9v-3.1C15.15 9.25 13.6 9 12 9z" + }, + "children": [] + }] +}; +exports.ic_call_end = ic_call_end; \ No newline at end of file diff --git a/dist/md/ic_call_end_outline.js b/dist/md/ic_call_end_outline.js new file mode 100644 index 000000000..65d943ea5 --- /dev/null +++ b/dist/md/ic_call_end_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_call_end_outline = void 0; +var ic_call_end_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18.59 10.52c1.05.51 2.04 1.15 2.96 1.91l-1.07 1.07c-.58-.47-1.21-.89-1.88-1.27v-1.71m-13.2 0v1.7c-.65.37-1.28.79-1.87 1.27l-1.07-1.07c.91-.75 1.9-1.38 2.94-1.9M12 7C7.46 7 3.34 8.78.29 11.67c-.18.18-.29.43-.29.71s.11.53.29.7l2.48 2.48c.18.18.43.29.71.29.27 0 .52-.1.7-.28.79-.73 1.68-1.36 2.66-1.85.33-.16.56-.51.56-.9v-3.1C8.85 9.25 10.4 9 12 9s3.15.25 4.59.73v3.1c0 .4.23.74.56.9.98.49 1.88 1.11 2.67 1.85.18.17.43.28.7.28.28 0 .53-.11.71-.29l2.48-2.48c.18-.18.29-.43.29-.71s-.11-.53-.29-.71C20.66 8.78 16.54 7 12 7z" + }, + "children": [] + }] +}; +exports.ic_call_end_outline = ic_call_end_outline; \ No newline at end of file diff --git a/dist/md/ic_call_end_twotone.js b/dist/md/ic_call_end_twotone.js new file mode 100644 index 000000000..903518ce3 --- /dev/null +++ b/dist/md/ic_call_end_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_call_end_twotone = void 0; +var ic_call_end_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18.59 12.23c.67.38 1.3.8 1.88 1.27l1.07-1.07c-.92-.75-1.91-1.39-2.96-1.91v1.71zM3.53 13.49c.59-.48 1.22-.9 1.87-1.27v-1.7c-1.04.51-2.03 1.15-2.94 1.9l1.07 1.07z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 7C7.46 7 3.34 8.78.29 11.67c-.18.18-.29.43-.29.71 0 .28.11.53.29.7l2.48 2.48c.18.18.43.29.71.29.27 0 .52-.1.7-.28.79-.73 1.68-1.36 2.66-1.85.33-.16.56-.51.56-.9v-3.1C8.85 9.25 10.4 9 12 9c1.6 0 3.15.25 4.59.73v3.1c0 .4.23.74.56.9.98.49 1.88 1.11 2.67 1.85.18.17.43.28.7.28.28 0 .53-.11.71-.29l2.48-2.48c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71C20.66 8.78 16.54 7 12 7zm-6.6 5.22c-.65.37-1.28.79-1.87 1.27l-1.07-1.07c.91-.75 1.9-1.38 2.94-1.9v1.7zm15.07 1.28c-.58-.47-1.21-.89-1.88-1.27v-1.71c1.05.51 2.04 1.15 2.96 1.91l-1.08 1.07z" + }, + "children": [] + }] +}; +exports.ic_call_end_twotone = ic_call_end_twotone; \ No newline at end of file diff --git a/dist/md/ic_call_made.js b/dist/md/ic_call_made.js new file mode 100644 index 000000000..68da63656 --- /dev/null +++ b/dist/md/ic_call_made.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_call_made = void 0; +var ic_call_made = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 5v2h6.59L4 18.59 5.41 20 17 8.41V15h2V5z" + }, + "children": [] + }] +}; +exports.ic_call_made = ic_call_made; \ No newline at end of file diff --git a/dist/md/ic_call_made_outline.js b/dist/md/ic_call_made_outline.js new file mode 100644 index 000000000..7474783ac --- /dev/null +++ b/dist/md/ic_call_made_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_call_made_outline = void 0; +var ic_call_made_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 5v2h6.59L4 18.59 5.41 20 17 8.41V15h2V5H9z" + }, + "children": [] + }] +}; +exports.ic_call_made_outline = ic_call_made_outline; \ No newline at end of file diff --git a/dist/md/ic_call_made_twotone.js b/dist/md/ic_call_made_twotone.js new file mode 100644 index 000000000..76608e3f9 --- /dev/null +++ b/dist/md/ic_call_made_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_call_made_twotone = void 0; +var ic_call_made_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5.41 20L17 8.41V15h2V5H9v2h6.59L4 18.59z" + }, + "children": [] + }] +}; +exports.ic_call_made_twotone = ic_call_made_twotone; \ No newline at end of file diff --git a/dist/md/ic_call_merge.js b/dist/md/ic_call_merge.js new file mode 100644 index 000000000..7d9cd73a8 --- /dev/null +++ b/dist/md/ic_call_merge.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_call_merge = void 0; +var ic_call_merge = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 20.41L18.41 19 15 15.59 13.59 17 17 20.41zM7.5 8H11v5.59L5.59 19 7 20.41l6-6V8h3.5L12 3.5 7.5 8z" + }, + "children": [] + }] +}; +exports.ic_call_merge = ic_call_merge; \ No newline at end of file diff --git a/dist/md/ic_call_merge_outline.js b/dist/md/ic_call_merge_outline.js new file mode 100644 index 000000000..ad0b10c62 --- /dev/null +++ b/dist/md/ic_call_merge_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_call_merge_outline = void 0; +var ic_call_merge_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 20.41L18.41 19 15 15.59 13.59 17 17 20.41zM7.5 8H11v5.59L5.59 19 7 20.41l6-6V8h3.5L12 3.5 7.5 8z" + }, + "children": [] + }] +}; +exports.ic_call_merge_outline = ic_call_merge_outline; \ No newline at end of file diff --git a/dist/md/ic_call_merge_twotone.js b/dist/md/ic_call_merge_twotone.js new file mode 100644 index 000000000..dc04d25ed --- /dev/null +++ b/dist/md/ic_call_merge_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_call_merge_twotone = void 0; +var ic_call_merge_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16.997 20.41l-3.408-3.407 1.4-1.407 3.41 3.408zM5.59 19L7 20.41l6-6V8h3.5L12 3.5 7.5 8H11v5.59z" + }, + "children": [] + }] +}; +exports.ic_call_merge_twotone = ic_call_merge_twotone; \ No newline at end of file diff --git a/dist/md/ic_call_missed.js b/dist/md/ic_call_missed.js new file mode 100644 index 000000000..757a87a47 --- /dev/null +++ b/dist/md/ic_call_missed.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_call_missed = void 0; +var ic_call_missed = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.59 7L12 14.59 6.41 9H11V7H3v8h2v-4.59l7 7 9-9z" + }, + "children": [] + }] +}; +exports.ic_call_missed = ic_call_missed; \ No newline at end of file diff --git a/dist/md/ic_call_missed_outgoing.js b/dist/md/ic_call_missed_outgoing.js new file mode 100644 index 000000000..7c89d650f --- /dev/null +++ b/dist/md/ic_call_missed_outgoing.js @@ -0,0 +1,65 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_call_missed_outgoing = void 0; +var ic_call_missed_outgoing = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M3,8.41l9,9l7-7V15h2V7h-8v2h4.59L12,14.59L4.41,7L3,8.41z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M3,8.41l9,9l7-7V15h2V7h-8v2h4.59L12,14.59L4.41,7L3,8.41z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_call_missed_outgoing = ic_call_missed_outgoing; \ No newline at end of file diff --git a/dist/md/ic_call_missed_outgoing_outline.js b/dist/md/ic_call_missed_outgoing_outline.js new file mode 100644 index 000000000..f39904f04 --- /dev/null +++ b/dist/md/ic_call_missed_outgoing_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_call_missed_outgoing_outline = void 0; +var ic_call_missed_outgoing_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 8.41l9 9 7-7V15h2V7h-8v2h4.59L12 14.59 4.41 7 3 8.41z" + }, + "children": [] + }] +}; +exports.ic_call_missed_outgoing_outline = ic_call_missed_outgoing_outline; \ No newline at end of file diff --git a/dist/md/ic_call_missed_outgoing_twotone.js b/dist/md/ic_call_missed_outgoing_twotone.js new file mode 100644 index 000000000..30ca157fd --- /dev/null +++ b/dist/md/ic_call_missed_outgoing_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_call_missed_outgoing_twotone = void 0; +var ic_call_missed_outgoing_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 10.41V15h2V7h-8v2h4.59L12 14.59 4.41 7 3 8.41l9 9z" + }, + "children": [] + }] +}; +exports.ic_call_missed_outgoing_twotone = ic_call_missed_outgoing_twotone; \ No newline at end of file diff --git a/dist/md/ic_call_missed_outline.js b/dist/md/ic_call_missed_outline.js new file mode 100644 index 000000000..96f0ee9f0 --- /dev/null +++ b/dist/md/ic_call_missed_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_call_missed_outline = void 0; +var ic_call_missed_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.59 7L12 14.59 6.41 9H11V7H3v8h2v-4.59l7 7 9-9L19.59 7z" + }, + "children": [] + }] +}; +exports.ic_call_missed_outline = ic_call_missed_outline; \ No newline at end of file diff --git a/dist/md/ic_call_missed_twotone.js b/dist/md/ic_call_missed_twotone.js new file mode 100644 index 000000000..47c54b482 --- /dev/null +++ b/dist/md/ic_call_missed_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_call_missed_twotone = void 0; +var ic_call_missed_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 10.41l7 7 9-9L19.59 7 12 14.59 6.41 9H11V7H3v8h2z" + }, + "children": [] + }] +}; +exports.ic_call_missed_twotone = ic_call_missed_twotone; \ No newline at end of file diff --git a/dist/md/ic_call_outline.js b/dist/md/ic_call_outline.js new file mode 100644 index 000000000..f6f9e9905 --- /dev/null +++ b/dist/md/ic_call_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_call_outline = void 0; +var ic_call_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6.54 5c.06.89.21 1.76.45 2.59l-1.2 1.2c-.41-1.2-.67-2.47-.76-3.79h1.51m9.86 12.02c.85.24 1.72.39 2.6.45v1.49c-1.32-.09-2.59-.35-3.8-.75l1.2-1.19M7.5 3H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.49c0-.55-.45-1-1-1-1.24 0-2.45-.2-3.57-.57-.1-.04-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2c.28-.28.36-.67.25-1.02C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1z" + }, + "children": [] + }] +}; +exports.ic_call_outline = ic_call_outline; \ No newline at end of file diff --git a/dist/md/ic_call_received.js b/dist/md/ic_call_received.js new file mode 100644 index 000000000..caa0b22ff --- /dev/null +++ b/dist/md/ic_call_received.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_call_received = void 0; +var ic_call_received = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 5.41L18.59 4 7 15.59V9H5v10h10v-2H8.41z" + }, + "children": [] + }] +}; +exports.ic_call_received = ic_call_received; \ No newline at end of file diff --git a/dist/md/ic_call_received_outline.js b/dist/md/ic_call_received_outline.js new file mode 100644 index 000000000..1372fd2ee --- /dev/null +++ b/dist/md/ic_call_received_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_call_received_outline = void 0; +var ic_call_received_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 5.41L18.59 4 7 15.59V9H5v10h10v-2H8.41L20 5.41z" + }, + "children": [] + }] +}; +exports.ic_call_received_outline = ic_call_received_outline; \ No newline at end of file diff --git a/dist/md/ic_call_received_twotone.js b/dist/md/ic_call_received_twotone.js new file mode 100644 index 000000000..35c2e16a1 --- /dev/null +++ b/dist/md/ic_call_received_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_call_received_twotone = void 0; +var ic_call_received_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 17H8.41L20 5.41 18.59 4 7 15.59V9H5v10h10z" + }, + "children": [] + }] +}; +exports.ic_call_received_twotone = ic_call_received_twotone; \ No newline at end of file diff --git a/dist/md/ic_call_split.js b/dist/md/ic_call_split.js new file mode 100644 index 000000000..4ac97ca75 --- /dev/null +++ b/dist/md/ic_call_split.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_call_split = void 0; +var ic_call_split = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 4l2.29 2.29-2.88 2.88 1.42 1.42 2.88-2.88L20 10V4zm-4 0H4v6l2.29-2.29 4.71 4.7V20h2v-8.41l-5.29-5.3z" + }, + "children": [] + }] +}; +exports.ic_call_split = ic_call_split; \ No newline at end of file diff --git a/dist/md/ic_call_split_outline.js b/dist/md/ic_call_split_outline.js new file mode 100644 index 000000000..b5fbab25f --- /dev/null +++ b/dist/md/ic_call_split_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_call_split_outline = void 0; +var ic_call_split_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 4l2.29 2.29-2.88 2.88 1.42 1.42 2.88-2.88L20 10V4h-6zm-4 0H4v6l2.29-2.29 4.71 4.7V20h2v-8.41l-5.29-5.3L10 4z" + }, + "children": [] + }] +}; +exports.ic_call_split_outline = ic_call_split_outline; \ No newline at end of file diff --git a/dist/md/ic_call_split_twotone.js b/dist/md/ic_call_split_twotone.js new file mode 100644 index 000000000..1b1ebb587 --- /dev/null +++ b/dist/md/ic_call_split_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_call_split_twotone = void 0; +var ic_call_split_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 4h-6l2.29 2.29-2.88 2.88 1.42 1.42 2.88-2.88L20 10zM4 4v6l2.29-2.29 4.71 4.7V20h2v-8.41l-5.29-5.3L10 4z" + }, + "children": [] + }] +}; +exports.ic_call_split_twotone = ic_call_split_twotone; \ No newline at end of file diff --git a/dist/md/ic_call_to_action.js b/dist/md/ic_call_to_action.js new file mode 100644 index 000000000..3934a467a --- /dev/null +++ b/dist/md/ic_call_to_action.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_call_to_action = void 0; +var ic_call_to_action = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3v-3h18v3z" + }, + "children": [] + }] +}; +exports.ic_call_to_action = ic_call_to_action; \ No newline at end of file diff --git a/dist/md/ic_call_to_action_outline.js b/dist/md/ic_call_to_action_outline.js new file mode 100644 index 000000000..d675b1009 --- /dev/null +++ b/dist/md/ic_call_to_action_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_call_to_action_outline = void 0; +var ic_call_to_action_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM5 15h14v3H5z" + }, + "children": [] + }] +}; +exports.ic_call_to_action_outline = ic_call_to_action_outline; \ No newline at end of file diff --git a/dist/md/ic_call_to_action_twotone.js b/dist/md/ic_call_to_action_twotone.js new file mode 100644 index 000000000..10c3c801f --- /dev/null +++ b/dist/md/ic_call_to_action_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_call_to_action_twotone = void 0; +var ic_call_to_action_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 19h18V5H3v14zm2-4h14v3H5v-3z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM5 15h14v3H5z" + }, + "children": [] + }] +}; +exports.ic_call_to_action_twotone = ic_call_to_action_twotone; \ No newline at end of file diff --git a/dist/md/ic_call_twotone.js b/dist/md/ic_call_twotone.js new file mode 100644 index 000000000..21f79606f --- /dev/null +++ b/dist/md/ic_call_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_call_twotone = void 0; +var ic_call_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 17.47c-.88-.07-1.75-.22-2.6-.45l-1.19 1.19c1.2.41 2.48.67 3.8.75v-1.49zM6.54 5h-1.5c.09 1.32.35 2.59.75 3.8l1.2-1.2c-.24-.84-.39-1.71-.45-2.6z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 21c.55 0 1-.45 1-1v-3.49c0-.55-.45-1-1-1-1.24 0-2.45-.2-3.57-.57-.1-.04-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2c.28-.28.36-.67.25-1.02C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17zm-3.6-3.98c.85.24 1.72.39 2.6.45v1.49c-1.32-.09-2.59-.35-3.8-.75l1.2-1.19zM5.03 5h1.5c.07.89.22 1.76.46 2.59l-1.2 1.2c-.41-1.2-.67-2.47-.76-3.79z" + }, + "children": [] + }] +}; +exports.ic_call_twotone = ic_call_twotone; \ No newline at end of file diff --git a/dist/md/ic_camera.js b/dist/md/ic_camera.js new file mode 100644 index 000000000..1e2393e90 --- /dev/null +++ b/dist/md/ic_camera.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_camera = void 0; +var ic_camera = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9.4 10.5l4.77-8.26C13.47 2.09 12.75 2 12 2c-2.4 0-4.6.85-6.32 2.25l3.66 6.35.06-.1zM21.54 9c-.92-2.92-3.15-5.26-6-6.34L11.88 9h9.66zm.26 1h-7.49l.29.5 4.76 8.25C21 16.97 22 14.61 22 12c0-.69-.07-1.35-.2-2zM8.54 12l-3.9-6.75C3.01 7.03 2 9.39 2 12c0 .69.07 1.35.2 2h7.49l-1.15-2zm-6.08 3c.92 2.92 3.15 5.26 6 6.34L12.12 15H2.46zm11.27 0l-3.9 6.76c.7.15 1.42.24 2.17.24 2.4 0 4.6-.85 6.32-2.25l-3.66-6.35-.93 1.6z" + }, + "children": [] + }] +}; +exports.ic_camera = ic_camera; \ No newline at end of file diff --git a/dist/md/ic_camera_alt.js b/dist/md/ic_camera_alt.js new file mode 100644 index 000000000..695e577c2 --- /dev/null +++ b/dist/md/ic_camera_alt.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_camera_alt = void 0; +var ic_camera_alt = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "3.2" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 2L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2h-3.17L15 2H9zm3 15c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" + }, + "children": [] + }] +}; +exports.ic_camera_alt = ic_camera_alt; \ No newline at end of file diff --git a/dist/md/ic_camera_alt_outline.js b/dist/md/ic_camera_alt_outline.js new file mode 100644 index 000000000..a10e7fa5e --- /dev/null +++ b/dist/md/ic_camera_alt_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_camera_alt_outline = void 0; +var ic_camera_alt_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 4h-3.17L15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h4.05l1.83-2h4.24l1.83 2H20v12zM12 7c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3z" + }, + "children": [] + }] +}; +exports.ic_camera_alt_outline = ic_camera_alt_outline; \ No newline at end of file diff --git a/dist/md/ic_camera_alt_twotone.js b/dist/md/ic_camera_alt_twotone.js new file mode 100644 index 000000000..64ae56d85 --- /dev/null +++ b/dist/md/ic_camera_alt_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_camera_alt_twotone = void 0; +var ic_camera_alt_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14.12 4H9.88L8.05 6H4v12h16V6h-4.05l-1.83-2zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 4h-3.17L15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h4.05l1.83-2h4.24l1.83 2H20v12zM12 7c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3z" + }, + "children": [] + }] +}; +exports.ic_camera_alt_twotone = ic_camera_alt_twotone; \ No newline at end of file diff --git a/dist/md/ic_camera_enhance.js b/dist/md/ic_camera_enhance.js new file mode 100644 index 000000000..62a9190a2 --- /dev/null +++ b/dist/md/ic_camera_enhance.js @@ -0,0 +1,30 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_camera_enhance = void 0; +var ic_camera_enhance = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 3L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2h-3.17L15 3H9zm3 15c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 17l1.25-2.75L16 13l-2.75-1.25L12 9l-1.25 2.75L8 13l2.75 1.25z" + }, + "children": [] + }] +}; +exports.ic_camera_enhance = ic_camera_enhance; \ No newline at end of file diff --git a/dist/md/ic_camera_enhance_outline.js b/dist/md/ic_camera_enhance_outline.js new file mode 100644 index 000000000..c806e758d --- /dev/null +++ b/dist/md/ic_camera_enhance_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_camera_enhance_outline = void 0; +var ic_camera_enhance_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 10l-.94 2.06L9 13l2.06.94L12 16l.94-2.06L15 13l-2.06-.94zm8-5h-3.17L15 3H9L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 14H4V7h4.05l.59-.65L9.88 5h4.24l1.24 1.35.59.65H20v12zM12 8c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3z" + }, + "children": [] + }] +}; +exports.ic_camera_enhance_outline = ic_camera_enhance_outline; \ No newline at end of file diff --git a/dist/md/ic_camera_enhance_twotone.js b/dist/md/ic_camera_enhance_twotone.js new file mode 100644 index 000000000..913c97a25 --- /dev/null +++ b/dist/md/ic_camera_enhance_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_camera_enhance_twotone = void 0; +var ic_camera_enhance_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.95 7l-.59-.65L14.12 5H9.88L8.65 6.35l-.6.65H4v12h16V7h-4.05zM12 18c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 10l-.94 2.06L9 13l2.06.94L12 16l.94-2.06L15 13l-2.06-.94zm8-5h-3.17L15 3H9L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 14H4V7h4.05l.59-.65L9.88 5h4.24l1.24 1.35.59.65H20v12zM12 8c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3z" + }, + "children": [] + }] +}; +exports.ic_camera_enhance_twotone = ic_camera_enhance_twotone; \ No newline at end of file diff --git a/dist/md/ic_camera_front.js b/dist/md/ic_camera_front.js new file mode 100644 index 000000000..38788192a --- /dev/null +++ b/dist/md/ic_camera_front.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_camera_front = void 0; +var ic_camera_front = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 20H5v2h5v2l3-3-3-3v2zm4 0v2h5v-2h-5zM12 8c1.1 0 2-.9 2-2s-.9-2-2-2-1.99.9-1.99 2S10.9 8 12 8zm5-8H7C5.9 0 5 .9 5 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V2c0-1.1-.9-2-2-2zM7 2h10v10.5c0-1.67-3.33-2.5-5-2.5s-5 .83-5 2.5V2z" + }, + "children": [] + }] +}; +exports.ic_camera_front = ic_camera_front; \ No newline at end of file diff --git a/dist/md/ic_camera_front_outline.js b/dist/md/ic_camera_front_outline.js new file mode 100644 index 000000000..f8a234cef --- /dev/null +++ b/dist/md/ic_camera_front_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_camera_front_outline = void 0; +var ic_camera_front_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 20v2h5v2l3-3-3-3v2zm9 0h5v2h-5zM11.99 8C13.1 8 14 7.1 14 6s-.9-2-2.01-2S10 4.9 10 6s.89 2 1.99 2zM17 0H7C5.9 0 5 .9 5 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V2c0-1.1-.9-2-2-2zm0 16H7v-2h10v2zm0-3.5c0-1.67-3.33-2.5-5-2.5s-5 .83-5 2.5V2h10v10.5z" + }, + "children": [] + }] +}; +exports.ic_camera_front_outline = ic_camera_front_outline; \ No newline at end of file diff --git a/dist/md/ic_camera_front_twotone.js b/dist/md/ic_camera_front_twotone.js new file mode 100644 index 000000000..3dfac6194 --- /dev/null +++ b/dist/md/ic_camera_front_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_camera_front_twotone = void 0; +var ic_camera_front_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 14h10v2H7z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 20v2h5v2l3-3-3-3v2zm9 0h5v2h-5zM11.99 8C13.1 8 14 7.1 14 6s-.9-2-2.01-2S10 4.9 10 6s.89 2 1.99 2zM17 0H7C5.9 0 5 .9 5 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V2c0-1.1-.9-2-2-2zm0 16H7v-2h10v2zm0-3.5c0-1.67-3.33-2.5-5-2.5s-5 .83-5 2.5V2h10v10.5z" + }, + "children": [] + }] +}; +exports.ic_camera_front_twotone = ic_camera_front_twotone; \ No newline at end of file diff --git a/dist/md/ic_camera_outline.js b/dist/md/ic_camera_outline.js new file mode 100644 index 000000000..168d996f2 --- /dev/null +++ b/dist/md/ic_camera_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_camera_outline = void 0; +var ic_camera_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14.25 2.26l-.08-.04-.01.02C13.46 2.09 12.74 2 12 2 6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10c0-4.75-3.31-8.72-7.75-9.74zM19.41 9h-7.99l2.71-4.7c2.4.66 4.35 2.42 5.28 4.7zM13.1 4.08L10.27 9l-1.15 2L6.4 6.3C7.84 4.88 9.82 4 12 4c.37 0 .74.03 1.1.08zM5.7 7.09L8.54 12l1.15 2H4.26C4.1 13.36 4 12.69 4 12c0-1.85.64-3.55 1.7-4.91zM4.59 15h7.98l-2.71 4.7c-2.4-.67-4.34-2.42-5.27-4.7zm6.31 4.91L14.89 13l2.72 4.7C16.16 19.12 14.18 20 12 20c-.38 0-.74-.04-1.1-.09zm7.4-3l-4-6.91h5.43c.17.64.27 1.31.27 2 0 1.85-.64 3.55-1.7 4.91z" + }, + "children": [] + }] +}; +exports.ic_camera_outline = ic_camera_outline; \ No newline at end of file diff --git a/dist/md/ic_camera_rear.js b/dist/md/ic_camera_rear.js new file mode 100644 index 000000000..3c1721b1e --- /dev/null +++ b/dist/md/ic_camera_rear.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_camera_rear = void 0; +var ic_camera_rear = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 20H5v2h5v2l3-3-3-3v2zm4 0v2h5v-2h-5zm3-20H7C5.9 0 5 .9 5 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V2c0-1.1-.9-2-2-2zm-5 6c-1.11 0-2-.9-2-2s.89-2 1.99-2 2 .9 2 2C14 5.1 13.1 6 12 6z" + }, + "children": [] + }] +}; +exports.ic_camera_rear = ic_camera_rear; \ No newline at end of file diff --git a/dist/md/ic_camera_rear_outline.js b/dist/md/ic_camera_rear_outline.js new file mode 100644 index 000000000..e7f61bacd --- /dev/null +++ b/dist/md/ic_camera_rear_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_camera_rear_outline = void 0; +var ic_camera_rear_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 20v2h5v2l3-3-3-3v2zm9 0h5v2h-5zm3-20H7C5.9 0 5 .9 5 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V2c0-1.1-.9-2-2-2zm0 16H7V2h10v14zm-5-9c1.1 0 2-.9 1.99-2 0-1.1-.9-2-2-2S10 3.9 10 5s.89 2 2 2z" + }, + "children": [] + }] +}; +exports.ic_camera_rear_outline = ic_camera_rear_outline; \ No newline at end of file diff --git a/dist/md/ic_camera_rear_twotone.js b/dist/md/ic_camera_rear_twotone.js new file mode 100644 index 000000000..3b1430ac0 --- /dev/null +++ b/dist/md/ic_camera_rear_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_camera_rear_twotone = void 0; +var ic_camera_rear_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 16h10V2H7v14zm4.99-13c1.1 0 2 .9 2 2C14 6.1 13.1 7 12 7c-1.11 0-2-.9-2-2s.89-2 1.99-2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 20v2h5v2l3-3-3-3v2zm9 0h5v2h-5zm5-18c0-1.1-.9-2-2-2H7C5.9 0 5 .9 5 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V2zm-2 14H7V2h10v14zm-5-9c1.1 0 2-.9 1.99-2 0-1.1-.9-2-2-2S10 3.9 10 5s.89 2 2 2z" + }, + "children": [] + }] +}; +exports.ic_camera_rear_twotone = ic_camera_rear_twotone; \ No newline at end of file diff --git a/dist/md/ic_camera_roll.js b/dist/md/ic_camera_roll.js new file mode 100644 index 000000000..df2ef23a2 --- /dev/null +++ b/dist/md/ic_camera_roll.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_camera_roll = void 0; +var ic_camera_roll = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 5c0-1.1-.9-2-2-2h-1V2c0-.55-.45-1-1-1H6c-.55 0-1 .45-1 1v1H4c-1.1 0-2 .9-2 2v15c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2h8V5h-8zm-2 13h-2v-2h2v2zm0-9h-2V7h2v2zm4 9h-2v-2h2v2zm0-9h-2V7h2v2zm4 9h-2v-2h2v2zm0-9h-2V7h2v2z" + }, + "children": [] + }] +}; +exports.ic_camera_roll = ic_camera_roll; \ No newline at end of file diff --git a/dist/md/ic_camera_roll_outline.js b/dist/md/ic_camera_roll_outline.js new file mode 100644 index 000000000..888cb4600 --- /dev/null +++ b/dist/md/ic_camera_roll_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_camera_roll_outline = void 0; +var ic_camera_roll_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 5c0-1.1-.9-2-2-2h-1V2c0-.55-.45-1-1-1H6c-.55 0-1 .45-1 1v1H4c-1.1 0-2 .9-2 2v15c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2h8V5h-8zm6 13h-8v2H4V5h3V3h2v2h3v2h8v11zM9 15h2v2H9zm0-7h2v2H9zm4 7h2v2h-2zm0-7h2v2h-2zm4 7h2v2h-2zm0-7h2v2h-2z" + }, + "children": [] + }] +}; +exports.ic_camera_roll_outline = ic_camera_roll_outline; \ No newline at end of file diff --git a/dist/md/ic_camera_roll_twotone.js b/dist/md/ic_camera_roll_twotone.js new file mode 100644 index 000000000..1ed373c4c --- /dev/null +++ b/dist/md/ic_camera_roll_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_camera_roll_twotone = void 0; +var ic_camera_roll_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 5H9V3H7v2H4v15h8v-2h8V7h-8V5zm-1 12H9v-2h2v2zm0-7H9V8h2v2zm6-2h2v2h-2V8zm0 7h2v2h-2v-2zm-4-7h2v2h-2V8zm0 7h2v2h-2v-2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 5c0-1.1-.9-2-2-2h-1V2c0-.55-.45-1-1-1H6c-.55 0-1 .45-1 1v1H4c-1.1 0-2 .9-2 2v15c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2h8V5h-8zm6 13h-8v2H4V5h3V3h2v2h3v2h8v11zM9 15h2v2H9zm0-7h2v2H9zm4 7h2v2h-2zm0-7h2v2h-2zm4 7h2v2h-2zm0-7h2v2h-2z" + }, + "children": [] + }] +}; +exports.ic_camera_roll_twotone = ic_camera_roll_twotone; \ No newline at end of file diff --git a/dist/md/ic_camera_twotone.js b/dist/md/ic_camera_twotone.js new file mode 100644 index 000000000..4c981450e --- /dev/null +++ b/dist/md/ic_camera_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_camera_twotone = void 0; +var ic_camera_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10.9 19.91c.36.05.72.09 1.1.09 2.18 0 4.16-.88 5.61-2.3L14.89 13l-3.99 6.91zm-1.04-.21l2.71-4.7H4.59c.93 2.28 2.87 4.03 5.27 4.7zM8.54 12L5.7 7.09C4.64 8.45 4 10.15 4 12c0 .69.1 1.36.26 2h5.43l-1.15-2zm9.76 4.91C19.36 15.55 20 13.85 20 12c0-.69-.1-1.36-.26-2h-5.43l3.99 6.91zM13.73 9h5.68c-.93-2.28-2.88-4.04-5.28-4.7L11.42 9h2.31zm-3.46 0l2.83-4.92C12.74 4.03 12.37 4 12 4c-2.18 0-4.16.88-5.6 2.3L9.12 11l1.15-2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 22c5.52 0 10-4.48 10-10 0-4.75-3.31-8.72-7.75-9.74l-.08-.04-.01.02C13.46 2.09 12.74 2 12 2 6.48 2 2 6.48 2 12s4.48 10 10 10zm0-2c-.38 0-.74-.04-1.1-.09L14.89 13l2.72 4.7C16.16 19.12 14.18 20 12 20zm8-8c0 1.85-.64 3.55-1.7 4.91l-4-6.91h5.43c.17.64.27 1.31.27 2zm-.59-3h-7.99l2.71-4.7c2.4.66 4.35 2.42 5.28 4.7zM12 4c.37 0 .74.03 1.1.08L10.27 9l-1.15 2L6.4 6.3C7.84 4.88 9.82 4 12 4zm-8 8c0-1.85.64-3.55 1.7-4.91L8.54 12l1.15 2H4.26C4.1 13.36 4 12.69 4 12zm6.27 3h2.3l-2.71 4.7c-2.4-.67-4.35-2.42-5.28-4.7h5.69z" + }, + "children": [] + }] +}; +exports.ic_camera_twotone = ic_camera_twotone; \ No newline at end of file diff --git a/dist/md/ic_campaign.js b/dist/md/ic_campaign.js new file mode 100644 index 000000000..7d6bb4701 --- /dev/null +++ b/dist/md/ic_campaign.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_campaign = void 0; +var ic_campaign = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 11v2h4v-2h-4zm-2 6.61c.96.71 2.21 1.65 3.2 2.39.4-.53.8-1.07 1.2-1.6-.99-.74-2.24-1.68-3.2-2.4-.4.54-.8 1.08-1.2 1.61zM20.4 5.6c-.4-.53-.8-1.07-1.2-1.6-.99.74-2.24 1.68-3.2 2.4.4.53.8 1.07 1.2 1.6.96-.72 2.21-1.65 3.2-2.4zM4 9c-1.1 0-2 .9-2 2v2c0 1.1.9 2 2 2h1v4h2v-4h1l5 3V6L8 9H4zm11.5 3c0-1.33-.58-2.53-1.5-3.35v6.69c.92-.81 1.5-2.01 1.5-3.34z" + }, + "children": [] + }] +}; +exports.ic_campaign = ic_campaign; \ No newline at end of file diff --git a/dist/md/ic_campaign_outline.js b/dist/md/ic_campaign_outline.js new file mode 100644 index 000000000..0a2963ad4 --- /dev/null +++ b/dist/md/ic_campaign_outline.js @@ -0,0 +1,61 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_campaign_outline = void 0; +var ic_campaign_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "path", + "attribs": { + "d": "M18,11c0,0.67,0,1.33,0,2c1.2,0,2.76,0,4,0c0-0.67,0-1.33,0-2C20.76,11,19.2,11,18,11z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16,17.61c0.96,0.71,2.21,1.65,3.2,2.39c0.4-0.53,0.8-1.07,1.2-1.6c-0.99-0.74-2.24-1.68-3.2-2.4 C16.8,16.54,16.4,17.08,16,17.61z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20.4,5.6C20,5.07,19.6,4.53,19.2,4c-0.99,0.74-2.24,1.68-3.2,2.4c0.4,0.53,0.8,1.07,1.2,1.6 C18.16,7.28,19.41,6.35,20.4,5.6z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4,9c-1.1,0-2,0.9-2,2v2c0,1.1,0.9,2,2,2h1v4h2v-4h1l5,3V6L8,9H4z M9.03,10.71L11,9.53v4.94l-1.97-1.18L8.55,13H8H4v-2h4 h0.55L9.03,10.71z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.5,12c0-1.33-0.58-2.53-1.5-3.35v6.69C14.92,14.53,15.5,13.33,15.5,12z" + }, + "children": [] + }] +}; +exports.ic_campaign_outline = ic_campaign_outline; \ No newline at end of file diff --git a/dist/md/ic_campaign_twotone.js b/dist/md/ic_campaign_twotone.js new file mode 100644 index 000000000..b22ef04cf --- /dev/null +++ b/dist/md/ic_campaign_twotone.js @@ -0,0 +1,68 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_campaign_twotone = void 0; +var ic_campaign_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "path", + "attribs": { + "d": "M18,11c0,0.67,0,1.33,0,2c1.2,0,2.76,0,4,0c0-0.67,0-1.33,0-2C20.76,11,19.2,11,18,11z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16,17.61c0.96,0.71,2.21,1.65,3.2,2.39c0.4-0.53,0.8-1.07,1.2-1.6c-0.99-0.74-2.24-1.68-3.2-2.4 C16.8,16.54,16.4,17.08,16,17.61z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20.4,5.6C20,5.07,19.6,4.53,19.2,4c-0.99,0.74-2.24,1.68-3.2,2.4c0.4,0.53,0.8,1.07,1.2,1.6 C18.16,7.28,19.41,6.35,20.4,5.6z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4,9c-1.1,0-2,0.9-2,2v2c0,1.1,0.9,2,2,2h1v4h2v-4h1l5,3V6L8,9H4z M9.03,10.71L11,9.53v4.94l-1.97-1.18L8.55,13H8H4v-2h4 h0.55L9.03,10.71z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.5,12c0-1.33-0.58-2.53-1.5-3.35v6.69C14.92,14.53,15.5,13.33,15.5,12z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9.03,10.71L11,9.53v4.94l-1.97-1.18L8.55,13H8H4v-2h4h0.55L9.03,10.71z", + "opacity": ".3" + }, + "children": [] + }] +}; +exports.ic_campaign_twotone = ic_campaign_twotone; \ No newline at end of file diff --git a/dist/md/ic_cancel.js b/dist/md/ic_cancel.js new file mode 100644 index 000000000..3b85d0b60 --- /dev/null +++ b/dist/md/ic_cancel.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_cancel = void 0; +var ic_cancel = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z" + }, + "children": [] + }] +}; +exports.ic_cancel = ic_cancel; \ No newline at end of file diff --git a/dist/md/ic_cancel_outline.js b/dist/md/ic_cancel_outline.js new file mode 100644 index 000000000..e010fe91d --- /dev/null +++ b/dist/md/ic_cancel_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_cancel_outline = void 0; +var ic_cancel_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none", + "opacity": ".87" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm3.59-13L12 10.59 8.41 7 7 8.41 10.59 12 7 15.59 8.41 17 12 13.41 15.59 17 17 15.59 13.41 12 17 8.41z" + }, + "children": [] + }] +}; +exports.ic_cancel_outline = ic_cancel_outline; \ No newline at end of file diff --git a/dist/md/ic_cancel_presentation.js b/dist/md/ic_cancel_presentation.js new file mode 100644 index 000000000..a70f435dd --- /dev/null +++ b/dist/md/ic_cancel_presentation.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_cancel_presentation = void 0; +var ic_cancel_presentation = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 19.1H3V5h18v14.1zM21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 19.1H3V5h18v14.1zM21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14.59 8L12 10.59 9.41 8 8 9.41 10.59 12 8 14.59 9.41 16 12 13.41 14.59 16 16 14.59 13.41 12 16 9.41z" + }, + "children": [] + }] +}; +exports.ic_cancel_presentation = ic_cancel_presentation; \ No newline at end of file diff --git a/dist/md/ic_cancel_presentation_outline.js b/dist/md/ic_cancel_presentation_outline.js new file mode 100644 index 000000000..1c32e3985 --- /dev/null +++ b/dist/md/ic_cancel_presentation_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_cancel_presentation_outline = void 0; +var ic_cancel_presentation_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM9.41 15.95L12 13.36l2.59 2.59L16 14.54l-2.59-2.59L16 9.36l-1.41-1.41L12 10.54 9.41 7.95 8 9.36l2.59 2.59L8 14.54z" + }, + "children": [] + }] +}; +exports.ic_cancel_presentation_outline = ic_cancel_presentation_outline; \ No newline at end of file diff --git a/dist/md/ic_cancel_presentation_twotone.js b/dist/md/ic_cancel_presentation_twotone.js new file mode 100644 index 000000000..9346b8957 --- /dev/null +++ b/dist/md/ic_cancel_presentation_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_cancel_presentation_twotone = void 0; +var ic_cancel_presentation_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 19.1h18V4.95H3V19.1zm5-9.74l1.41-1.41L12 10.54l2.59-2.59L16 9.36l-2.59 2.59L16 14.54l-1.41 1.41L12 13.36l-2.59 2.59L8 14.54l2.59-2.59L8 9.36z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM9.41 15.95L12 13.36l2.59 2.59L16 14.54l-2.59-2.59L16 9.36l-1.41-1.41L12 10.54 9.41 7.95 8 9.36l2.59 2.59L8 14.54z" + }, + "children": [] + }] +}; +exports.ic_cancel_presentation_twotone = ic_cancel_presentation_twotone; \ No newline at end of file diff --git a/dist/md/ic_cancel_schedule_send.js b/dist/md/ic_cancel_schedule_send.js new file mode 100644 index 000000000..ec39e9469 --- /dev/null +++ b/dist/md/ic_cancel_schedule_send.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_cancel_schedule_send = void 0; +var ic_cancel_schedule_send = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M16.5,9c-0.42,0-0.83,0.04-1.24,0.11L1.01,3L1,10l9,2l-9,2l0.01,7l8.07-3.46C9.59,21.19,12.71,24,16.5,24 c4.14,0,7.5-3.36,7.5-7.5S20.64,9,16.5,9z M16.5,22c-3.03,0-5.5-2.47-5.5-5.5s2.47-5.5,5.5-5.5s5.5,2.47,5.5,5.5S19.53,22,16.5,22 z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M16.5,9c-0.42,0-0.83,0.04-1.24,0.11L1.01,3L1,10l9,2l-9,2l0.01,7l8.07-3.46C9.59,21.19,12.71,24,16.5,24 c4.14,0,7.5-3.36,7.5-7.5S20.64,9,16.5,9z M16.5,22c-3.03,0-5.5-2.47-5.5-5.5s2.47-5.5,5.5-5.5s5.5,2.47,5.5,5.5S19.53,22,16.5,22 z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "18.27,14.03 16.5,15.79 14.73,14.03 14.03,14.73 15.79,16.5 14.03,18.27 14.73,18.97 16.5,17.21 18.27,18.97 18.97,18.27 17.21,16.5 18.97,14.73" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "18.27,14.03 16.5,15.79 14.73,14.03 14.03,14.73 15.79,16.5 14.03,18.27 14.73,18.97 16.5,17.21 18.27,18.97 18.97,18.27 17.21,16.5 18.97,14.73" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_cancel_schedule_send = ic_cancel_schedule_send; \ No newline at end of file diff --git a/dist/md/ic_cancel_schedule_send_outline.js b/dist/md/ic_cancel_schedule_send_outline.js new file mode 100644 index 000000000..277eb4cfc --- /dev/null +++ b/dist/md/ic_cancel_schedule_send_outline.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_cancel_schedule_send_outline = void 0; +var ic_cancel_schedule_send_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M16.5,9c-0.42,0-0.83,0.04-1.24,0.11L1.01,3L1,10l10.06,1.34c-0.42,0.44-0.78,0.93-1.09,1.46L1,14l0.01,7l8.07-3.46 C9.59,21.19,12.71,24,16.5,24c4.14,0,7.5-3.36,7.5-7.5S20.64,9,16.5,9z M3,8.25l0.01-2.22l7.51,3.22L3,8.25z M9.1,15.36L3,17.97 v-2.22l6.17-0.82C9.14,15.07,9.12,15.21,9.1,15.36z M16.5,22c-3.03,0-5.5-2.47-5.5-5.5s2.47-5.5,5.5-5.5s5.5,2.47,5.5,5.5 S19.53,22,16.5,22z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M16.5,9c-0.42,0-0.83,0.04-1.24,0.11L1.01,3L1,10l10.06,1.34c-0.42,0.44-0.78,0.93-1.09,1.46L1,14l0.01,7l8.07-3.46 C9.59,21.19,12.71,24,16.5,24c4.14,0,7.5-3.36,7.5-7.5S20.64,9,16.5,9z M3,8.25l0.01-2.22l7.51,3.22L3,8.25z M9.1,15.36L3,17.97 v-2.22l6.17-0.82C9.14,15.07,9.12,15.21,9.1,15.36z M16.5,22c-3.03,0-5.5-2.47-5.5-5.5s2.47-5.5,5.5-5.5s5.5,2.47,5.5,5.5 S19.53,22,16.5,22z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "18.27,14.03 16.5,15.79 14.73,14.03 14.03,14.73 15.79,16.5 14.03,18.27 14.73,18.97 16.5,17.21 18.27,18.97 18.97,18.27 17.21,16.5 18.97,14.73" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "18.27,14.03 16.5,15.79 14.73,14.03 14.03,14.73 15.79,16.5 14.03,18.27 14.73,18.97 16.5,17.21 18.27,18.97 18.97,18.27 17.21,16.5 18.97,14.73" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_cancel_schedule_send_outline = ic_cancel_schedule_send_outline; \ No newline at end of file diff --git a/dist/md/ic_cancel_schedule_send_twotone.js b/dist/md/ic_cancel_schedule_send_twotone.js new file mode 100644 index 000000000..184157e32 --- /dev/null +++ b/dist/md/ic_cancel_schedule_send_twotone.js @@ -0,0 +1,109 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_cancel_schedule_send_twotone = void 0; +var ic_cancel_schedule_send_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M3,17.97l6.1-2.61c0.02-0.14,0.04-0.29,0.07-0.43L3,15.75V17.97z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M3,17.97l6.1-2.61c0.02-0.14,0.04-0.29,0.07-0.43L3,15.75V17.97z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M16.5,11c-3.03,0-5.5,2.47-5.5,5.5s2.47,5.5,5.5,5.5s5.5-2.47,5.5-5.5S19.53,11,16.5,11z M18.97,18.27 l-0.71,0.71l-1.77-1.77l-1.77,1.77l-0.71-0.71l1.77-1.77l-1.77-1.77l0.71-0.71l1.77,1.77l1.77-1.77l0.71,0.71l-1.77,1.77 L18.97,18.27z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M16.5,11c-3.03,0-5.5,2.47-5.5,5.5s2.47,5.5,5.5,5.5s5.5-2.47,5.5-5.5S19.53,11,16.5,11z M18.97,18.27 l-0.71,0.71l-1.77-1.77l-1.77,1.77l-0.71-0.71l1.77-1.77l-1.77-1.77l0.71-0.71l1.77,1.77l1.77-1.77l0.71,0.71l-1.77,1.77 L18.97,18.27z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "opacity": ".3", + "points": "3,8.25 10.52,9.25 3.01,6.03" + }, + "children": [{ + "name": "polygon", + "attribs": { + "opacity": ".3", + "points": "3,8.25 10.52,9.25 3.01,6.03" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M16.5,9c-0.42,0-0.83,0.04-1.24,0.11c0,0,0,0,0,0L1.01,3L1,10l10.06,1.34c-0.42,0.44-0.78,0.93-1.09,1.46L1,14l0.01,7 l8.07-3.46c0,0,0,0,0,0C9.59,21.19,12.71,24,16.5,24c4.14,0,7.5-3.36,7.5-7.5S20.64,9,16.5,9z M3,8.25l0.01-2.22l7.51,3.22L3,8.25 z M9.1,15.36L3,17.97v-2.22l6.17-0.82C9.14,15.07,9.12,15.21,9.1,15.36z M16.5,22c-3.03,0-5.5-2.47-5.5-5.5s2.47-5.5,5.5-5.5 s5.5,2.47,5.5,5.5S19.53,22,16.5,22z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M16.5,9c-0.42,0-0.83,0.04-1.24,0.11c0,0,0,0,0,0L1.01,3L1,10l10.06,1.34c-0.42,0.44-0.78,0.93-1.09,1.46L1,14l0.01,7 l8.07-3.46c0,0,0,0,0,0C9.59,21.19,12.71,24,16.5,24c4.14,0,7.5-3.36,7.5-7.5S20.64,9,16.5,9z M3,8.25l0.01-2.22l7.51,3.22L3,8.25 z M9.1,15.36L3,17.97v-2.22l6.17-0.82C9.14,15.07,9.12,15.21,9.1,15.36z M16.5,22c-3.03,0-5.5-2.47-5.5-5.5s2.47-5.5,5.5-5.5 s5.5,2.47,5.5,5.5S19.53,22,16.5,22z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "18.27,14.03 16.5,15.79 14.73,14.03 14.03,14.73 15.79,16.5 14.03,18.27 14.73,18.97 16.5,17.21 18.27,18.97 18.97,18.27 17.21,16.5 18.97,14.73" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "18.27,14.03 16.5,15.79 14.73,14.03 14.03,14.73 15.79,16.5 14.03,18.27 14.73,18.97 16.5,17.21 18.27,18.97 18.97,18.27 17.21,16.5 18.97,14.73" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_cancel_schedule_send_twotone = ic_cancel_schedule_send_twotone; \ No newline at end of file diff --git a/dist/md/ic_cancel_twotone.js b/dist/md/ic_cancel_twotone.js new file mode 100644 index 000000000..835f0f9a9 --- /dev/null +++ b/dist/md/ic_cancel_twotone.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_cancel_twotone = void 0; +var ic_cancel_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none", + "opacity": ".87" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm5 11.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm3.59-13L12 10.59 8.41 7 7 8.41 10.59 12 7 15.59 8.41 17 12 13.41 15.59 17 17 15.59 13.41 12 17 8.41z" + }, + "children": [] + }] +}; +exports.ic_cancel_twotone = ic_cancel_twotone; \ No newline at end of file diff --git a/dist/md/ic_car_rental.js b/dist/md/ic_car_rental.js new file mode 100644 index 000000000..3fb8e04bc --- /dev/null +++ b/dist/md/ic_car_rental.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_car_rental = void 0; +var ic_car_rental = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M16.39,9H7.61C7.18,9,6.8,9.28,6.66,9.68l-1.66,5v6.81C5,21.78,5.23,22,5.5,22h1C6.78,22,7,21.78,7,21.5V20h10v1.5 c0,0.28,0.22,0.5,0.5,0.5h1c0.28,0,0.5-0.22,0.5-0.5v-6.81l-1.66-5C17.2,9.28,16.82,9,16.39,9z M7.78,18 c-0.68,0-1.22-0.54-1.22-1.22s0.54-1.22,1.22-1.22S9,16.11,9,16.78S8.46,18,7.78,18z M16.22,18C15.55,18,15,17.46,15,16.78 s0.54-1.22,1.22-1.22s1.22,0.54,1.22,1.22S16.9,18,16.22,18z M6.29,14l1.33-4h8.78l1.33,4H6.29z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M16.39,9H7.61C7.18,9,6.8,9.28,6.66,9.68l-1.66,5v6.81C5,21.78,5.23,22,5.5,22h1C6.78,22,7,21.78,7,21.5V20h10v1.5 c0,0.28,0.22,0.5,0.5,0.5h1c0.28,0,0.5-0.22,0.5-0.5v-6.81l-1.66-5C17.2,9.28,16.82,9,16.39,9z M7.78,18 c-0.68,0-1.22-0.54-1.22-1.22s0.54-1.22,1.22-1.22S9,16.11,9,16.78S8.46,18,7.78,18z M16.22,18C15.55,18,15,17.46,15,16.78 s0.54-1.22,1.22-1.22s1.22,0.54,1.22,1.22S16.9,18,16.22,18z M6.29,14l1.33-4h8.78l1.33,4H6.29z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M10.83,3C10.41,1.83,9.3,1,8,1C6.34,1,5,2.34,5,4c0,1.65,1.34,3,3,3c1.3,0,2.41-0.84,2.83-2H16v2h2V5h1V3H10.83z M8,5 C7.45,5,7,4.55,7,4s0.45-1,1-1s1,0.45,1,1S8.55,5,8,5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M10.83,3C10.41,1.83,9.3,1,8,1C6.34,1,5,2.34,5,4c0,1.65,1.34,3,3,3c1.3,0,2.41-0.84,2.83-2H16v2h2V5h1V3H10.83z M8,5 C7.45,5,7,4.55,7,4s0.45-1,1-1s1,0.45,1,1S8.55,5,8,5z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_car_rental = ic_car_rental; \ No newline at end of file diff --git a/dist/md/ic_car_repair.js b/dist/md/ic_car_repair.js new file mode 100644 index 000000000..898c72260 --- /dev/null +++ b/dist/md/ic_car_repair.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_car_repair = void 0; +var ic_car_repair = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M16.22,12c0.68,0,1.22-0.54,1.22-1.22c0-0.67-0.54-1.22-1.22-1.22S15,10.11,15,10.78C15,11.46,15.55,12,16.22,12z M6.56,10.78c0,0.67,0.54,1.22,1.22,1.22S9,11.46,9,10.78c0-0.67-0.54-1.22-1.22-1.22S6.56,10.11,6.56,10.78z M7.61,4L6.28,8h11.43 l-1.33-4H7.61z M16.28,3c0,0,0.54,0.01,0.92,0.54c0.02,0.02,0.03,0.04,0.05,0.07c0.07,0.11,0.14,0.24,0.19,0.4 C17.66,4.66,19,8.69,19,8.69v6.5c0,0.45-0.35,0.81-0.78,0.81h-0.44C17.35,16,17,15.64,17,15.19V14H7v1.19C7,15.64,6.65,16,6.22,16 H5.78C5.35,16,5,15.64,5,15.19v-6.5c0,0,1.34-4.02,1.55-4.69c0.05-0.16,0.12-0.28,0.19-0.4C6.77,3.58,6.78,3.56,6.8,3.54 C7.18,3.01,7.72,3,7.72,3H16.28z M4,17.01h16V19h-7v3h-2v-3H4V17.01z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M16.22,12c0.68,0,1.22-0.54,1.22-1.22c0-0.67-0.54-1.22-1.22-1.22S15,10.11,15,10.78C15,11.46,15.55,12,16.22,12z M6.56,10.78c0,0.67,0.54,1.22,1.22,1.22S9,11.46,9,10.78c0-0.67-0.54-1.22-1.22-1.22S6.56,10.11,6.56,10.78z M7.61,4L6.28,8h11.43 l-1.33-4H7.61z M16.28,3c0,0,0.54,0.01,0.92,0.54c0.02,0.02,0.03,0.04,0.05,0.07c0.07,0.11,0.14,0.24,0.19,0.4 C17.66,4.66,19,8.69,19,8.69v6.5c0,0.45-0.35,0.81-0.78,0.81h-0.44C17.35,16,17,15.64,17,15.19V14H7v1.19C7,15.64,6.65,16,6.22,16 H5.78C5.35,16,5,15.64,5,15.19v-6.5c0,0,1.34-4.02,1.55-4.69c0.05-0.16,0.12-0.28,0.19-0.4C6.77,3.58,6.78,3.56,6.8,3.54 C7.18,3.01,7.72,3,7.72,3H16.28z M4,17.01h16V19h-7v3h-2v-3H4V17.01z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_car_repair = ic_car_repair; \ No newline at end of file diff --git a/dist/md/ic_card_giftcard.js b/dist/md/ic_card_giftcard.js new file mode 100644 index 000000000..e64b3107e --- /dev/null +++ b/dist/md/ic_card_giftcard.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_card_giftcard = void 0; +var ic_card_giftcard = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 6h-2.18c.11-.31.18-.65.18-1 0-1.66-1.34-3-3-3-1.05 0-1.96.54-2.5 1.35l-.5.67-.5-.68C10.96 2.54 10.05 2 9 2 7.34 2 6 3.34 6 5c0 .35.07.69.18 1H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-5-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm11 15H4v-2h16v2zm0-5H4V8h5.08L7 10.83 8.62 12 11 8.76l1-1.36 1 1.36L15.38 12 17 10.83 14.92 8H20v6z" + }, + "children": [] + }] +}; +exports.ic_card_giftcard = ic_card_giftcard; \ No newline at end of file diff --git a/dist/md/ic_card_giftcard_outline.js b/dist/md/ic_card_giftcard_outline.js new file mode 100644 index 000000000..165304ca7 --- /dev/null +++ b/dist/md/ic_card_giftcard_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_card_giftcard_outline = void 0; +var ic_card_giftcard_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 6h-2.18c.11-.31.18-.65.18-1 0-1.66-1.34-3-3-3-1.05 0-1.96.54-2.5 1.35l-.5.67-.5-.68C10.96 2.54 10.05 2 9 2 7.34 2 6 3.34 6 5c0 .35.07.69.18 1H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-5-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm11 15H4v-2h16v2zm0-5H4V8h5.08L7 10.83 8.62 12 12 7.4l3.38 4.6L17 10.83 14.92 8H20v6z" + }, + "children": [] + }] +}; +exports.ic_card_giftcard_outline = ic_card_giftcard_outline; \ No newline at end of file diff --git a/dist/md/ic_card_giftcard_twotone.js b/dist/md/ic_card_giftcard_twotone.js new file mode 100644 index 000000000..68521aaa3 --- /dev/null +++ b/dist/md/ic_card_giftcard_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_card_giftcard_twotone = void 0; +var ic_card_giftcard_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 17h16v2H4zm13-6.17L15.38 12 12 7.4 8.62 12 7 10.83 9.08 8H4v6h16V8h-5.08z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 6h-2.18c.11-.31.18-.65.18-1 0-1.66-1.34-3-3-3-1.05 0-1.96.54-2.5 1.35l-.5.67-.5-.68C10.96 2.54 10.05 2 9 2 7.34 2 6 3.34 6 5c0 .35.07.69.18 1H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-5-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm11 15H4v-2h16v2zm0-5H4V8h5.08L7 10.83 8.62 12 12 7.4l3.38 4.6L17 10.83 14.92 8H20v6z" + }, + "children": [] + }] +}; +exports.ic_card_giftcard_twotone = ic_card_giftcard_twotone; \ No newline at end of file diff --git a/dist/md/ic_card_membership.js b/dist/md/ic_card_membership.js new file mode 100644 index 000000000..451f8b6be --- /dev/null +++ b/dist/md/ic_card_membership.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_card_membership = void 0; +var ic_card_membership = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 2H4c-1.11 0-2 .89-2 2v11c0 1.11.89 2 2 2h4v5l4-2 4 2v-5h4c1.11 0 2-.89 2-2V4c0-1.11-.89-2-2-2zm0 13H4v-2h16v2zm0-5H4V4h16v6z" + }, + "children": [] + }] +}; +exports.ic_card_membership = ic_card_membership; \ No newline at end of file diff --git a/dist/md/ic_card_membership_outline.js b/dist/md/ic_card_membership_outline.js new file mode 100644 index 000000000..7f6fc5391 --- /dev/null +++ b/dist/md/ic_card_membership_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_card_membership_outline = void 0; +var ic_card_membership_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 2H4c-1.11 0-2 .89-2 2v11c0 1.11.89 2 2 2h4v5l4-2 4 2v-5h4c1.11 0 2-.89 2-2V4c0-1.11-.89-2-2-2zm0 13H4v-2h16v2zm0-5H4V4h16v6z" + }, + "children": [] + }] +}; +exports.ic_card_membership_outline = ic_card_membership_outline; \ No newline at end of file diff --git a/dist/md/ic_card_membership_twotone.js b/dist/md/ic_card_membership_twotone.js new file mode 100644 index 000000000..0c24c666f --- /dev/null +++ b/dist/md/ic_card_membership_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_card_membership_twotone = void 0; +var ic_card_membership_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 4h16v6H4zm0 9h16v2H4z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 2H4c-1.11 0-2 .89-2 2v11c0 1.11.89 2 2 2h4v5l4-2 4 2v-5h4c1.11 0 2-.89 2-2V4c0-1.11-.89-2-2-2zm0 13H4v-2h16v2zm0-5H4V4h16v6z" + }, + "children": [] + }] +}; +exports.ic_card_membership_twotone = ic_card_membership_twotone; \ No newline at end of file diff --git a/dist/md/ic_card_travel.js b/dist/md/ic_card_travel.js new file mode 100644 index 000000000..fbd204b13 --- /dev/null +++ b/dist/md/ic_card_travel.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_card_travel = void 0; +var ic_card_travel = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 6h-3V4c0-1.11-.89-2-2-2H9c-1.11 0-2 .89-2 2v2H4c-1.11 0-2 .89-2 2v11c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zM9 4h6v2H9V4zm11 15H4v-2h16v2zm0-5H4V8h3v2h2V8h6v2h2V8h3v6z" + }, + "children": [] + }] +}; +exports.ic_card_travel = ic_card_travel; \ No newline at end of file diff --git a/dist/md/ic_card_travel_outline.js b/dist/md/ic_card_travel_outline.js new file mode 100644 index 000000000..7ece5d15d --- /dev/null +++ b/dist/md/ic_card_travel_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_card_travel_outline = void 0; +var ic_card_travel_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 6h-3V4c0-1.11-.89-2-2-2H9c-1.11 0-2 .89-2 2v2H4c-1.11 0-2 .89-2 2v11c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zM9 4h6v2H9V4zm11 15H4v-2h16v2zm0-5H4V8h3v2h2V8h6v2h2V8h3v6z" + }, + "children": [] + }] +}; +exports.ic_card_travel_outline = ic_card_travel_outline; \ No newline at end of file diff --git a/dist/md/ic_card_travel_twotone.js b/dist/md/ic_card_travel_twotone.js new file mode 100644 index 000000000..8487aeebf --- /dev/null +++ b/dist/md/ic_card_travel_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_card_travel_twotone = void 0; +var ic_card_travel_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 17h16v2H4zm13-7h-2V8H9v2H7V8H4v6h16V8h-3z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 6h-3V4c0-1.11-.89-2-2-2H9c-1.11 0-2 .89-2 2v2H4c-1.11 0-2 .89-2 2v11c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zM9 4h6v2H9V4zm11 15H4v-2h16v2zm0-5H4V8h3v2h2V8h6v2h2V8h3v6z" + }, + "children": [] + }] +}; +exports.ic_card_travel_twotone = ic_card_travel_twotone; \ No newline at end of file diff --git a/dist/md/ic_carpenter.js b/dist/md/ic_carpenter.js new file mode 100644 index 000000000..d04e30233 --- /dev/null +++ b/dist/md/ic_carpenter.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_carpenter = void 0; +var ic_carpenter = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.73,14.23L7,1.5L3.11,5.39l8.13,11.67c-0.78,0.78-0.78,2.05,0,2.83l1.41,1.41c0.78,0.78,2.05,0.78,2.83,0l4.24-4.24 C20.51,16.28,20.51,15.01,19.73,14.23z M14.07,19.88l-1.41-1.41l4.24-4.24l1.41,1.41L14.07,19.88z" + }, + "children": [] + }] +}; +exports.ic_carpenter = ic_carpenter; \ No newline at end of file diff --git a/dist/md/ic_carpenter_outline.js b/dist/md/ic_carpenter_outline.js new file mode 100644 index 000000000..504f7f966 --- /dev/null +++ b/dist/md/ic_carpenter_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_carpenter_outline = void 0; +var ic_carpenter_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.73,14.23L7,1.5L3.11,5.39l8.13,11.67c-0.78,0.78-0.78,2.05,0,2.83l1.41,1.41c0.78,0.78,2.05,0.78,2.83,0l4.24-4.24 C20.51,16.28,20.51,15.01,19.73,14.23z M5.71,5.62L7,4.33l8.49,8.49l-2.81,2.81L5.71,5.62z M14.07,19.88l-1.41-1.41l4.24-4.24 l1.41,1.41L14.07,19.88z" + }, + "children": [] + }] +}; +exports.ic_carpenter_outline = ic_carpenter_outline; \ No newline at end of file diff --git a/dist/md/ic_carpenter_twotone.js b/dist/md/ic_carpenter_twotone.js new file mode 100644 index 000000000..68576ec2e --- /dev/null +++ b/dist/md/ic_carpenter_twotone.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_carpenter_twotone = void 0; +var ic_carpenter_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5.71,5.62L7,4.33l8.49,8.49l-2.81,2.81L5.71,5.62z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.73,14.23L7,1.5L3.11,5.39l8.13,11.67c-0.78,0.78-0.78,2.05,0,2.83l1.41,1.41c0.78,0.78,2.05,0.78,2.83,0l4.24-4.24 C20.51,16.28,20.51,15.01,19.73,14.23z M5.71,5.62L7,4.33l8.49,8.49l-2.81,2.81L5.71,5.62z M14.07,19.88l-1.41-1.41l4.24-4.24 l1.41,1.41L14.07,19.88z" + }, + "children": [] + }] +}; +exports.ic_carpenter_twotone = ic_carpenter_twotone; \ No newline at end of file diff --git a/dist/md/ic_cases.js b/dist/md/ic_cases.js new file mode 100644 index 000000000..bbf9a0c46 --- /dev/null +++ b/dist/md/ic_cases.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_cases = void 0; +var ic_cases = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 6V4l-2-2h-5L9 4v2H5v11s1 2 2 2h13s2-.98 2-2V6h-4zM4 9H2v11c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2H4V9zm7-4c0-.55.53-1 1-1h3c.46 0 1 .54 1 1v1h-5V5zM5 6h17v11c0 1.1-.9 2-2 2H7c-1.1 0-2-.9-2-2V6z" + }, + "children": [] + }] +}; +exports.ic_cases = ic_cases; \ No newline at end of file diff --git a/dist/md/ic_casino.js b/dist/md/ic_casino.js new file mode 100644 index 000000000..3055a801c --- /dev/null +++ b/dist/md/ic_casino.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_casino = void 0; +var ic_casino = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0zm21.02 19c0 1.1-.9 2-2 2h-14c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2h14c1.1 0 2 .9 2 2v14z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM7.5 18c-.83 0-1.5-.67-1.5-1.5S6.67 15 7.5 15s1.5.67 1.5 1.5S8.33 18 7.5 18zm0-9C6.67 9 6 8.33 6 7.5S6.67 6 7.5 6 9 6.67 9 7.5 8.33 9 7.5 9zm4.5 4.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm4.5 4.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm0-9c-.83 0-1.5-.67-1.5-1.5S15.67 6 16.5 6s1.5.67 1.5 1.5S17.33 9 16.5 9z" + }, + "children": [] + }] +}; +exports.ic_casino = ic_casino; \ No newline at end of file diff --git a/dist/md/ic_casino_outline.js b/dist/md/ic_casino_outline.js new file mode 100644 index 000000000..c389d56d1 --- /dev/null +++ b/dist/md/ic_casino_outline.js @@ -0,0 +1,64 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_casino_outline = void 0; +var ic_casino_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "7.5", + "cy": "16.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "7.5", + "cy": "7.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "16.5", + "cy": "16.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "16.5", + "cy": "7.5", + "r": "1.5" + }, + "children": [] + }] +}; +exports.ic_casino_outline = ic_casino_outline; \ No newline at end of file diff --git a/dist/md/ic_casino_twotone.js b/dist/md/ic_casino_twotone.js new file mode 100644 index 000000000..394f3ce04 --- /dev/null +++ b/dist/md/ic_casino_twotone.js @@ -0,0 +1,71 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_casino_twotone = void 0; +var ic_casino_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 19h14V5H5v14zM16.5 6c.83 0 1.5.67 1.5 1.5S17.33 9 16.5 9 15 8.33 15 7.5 15.67 6 16.5 6zm0 9c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zM12 10.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zM7.5 6C8.33 6 9 6.67 9 7.5S8.33 9 7.5 9 6 8.33 6 7.5 6.67 6 7.5 6zm0 9c.83 0 1.5.67 1.5 1.5S8.33 18 7.5 18 6 17.33 6 16.5 6.67 15 7.5 15z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "7.5", + "cy": "16.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "7.5", + "cy": "7.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "16.5", + "cy": "16.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "16.5", + "cy": "7.5", + "r": "1.5" + }, + "children": [] + }] +}; +exports.ic_casino_twotone = ic_casino_twotone; \ No newline at end of file diff --git a/dist/md/ic_cast.js b/dist/md/ic_cast.js new file mode 100644 index 000000000..1837509e1 --- /dev/null +++ b/dist/md/ic_cast.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_cast = void 0; +var ic_cast = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none", + "opacity": ".1" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 3H3c-1.1 0-2 .9-2 2v3h2V5h18v14h-7v2h7c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM1 18v3h3c0-1.66-1.34-3-3-3zm0-4v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0-4v2c4.97 0 9 4.03 9 9h2c0-6.08-4.93-11-11-11z" + }, + "children": [] + }] +}; +exports.ic_cast = ic_cast; \ No newline at end of file diff --git a/dist/md/ic_cast_connected.js b/dist/md/ic_cast_connected.js new file mode 100644 index 000000000..c91b18622 --- /dev/null +++ b/dist/md/ic_cast_connected.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_cast_connected = void 0; +var ic_cast_connected = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none", + "opacity": ".1" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M1 18v3h3c0-1.66-1.34-3-3-3zm0-4v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm18-7H5v1.63c3.96 1.28 7.09 4.41 8.37 8.37H19V7zM1 10v2c4.97 0 9 4.03 9 9h2c0-6.08-4.93-11-11-11zm20-7H3c-1.1 0-2 .9-2 2v3h2V5h18v14h-7v2h7c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_cast_connected = ic_cast_connected; \ No newline at end of file diff --git a/dist/md/ic_cast_connected_outline.js b/dist/md/ic_cast_connected_outline.js new file mode 100644 index 000000000..d2cd3977b --- /dev/null +++ b/dist/md/ic_cast_connected_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_cast_connected_outline = void 0; +var ic_cast_connected_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0zm0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M1 18v3h3c0-1.66-1.34-3-3-3zm0-4v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0-4v2c4.97 0 9 4.03 9 9h2c0-6.08-4.93-11-11-11zm20-7H3c-1.1 0-2 .9-2 2v3h2V5h18v14h-7v2h7c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5 7v2h12v6h-3v2h5V7z" + }, + "children": [] + }] +}; +exports.ic_cast_connected_outline = ic_cast_connected_outline; \ No newline at end of file diff --git a/dist/md/ic_cast_connected_twotone.js b/dist/md/ic_cast_connected_twotone.js new file mode 100644 index 000000000..f0282ffc2 --- /dev/null +++ b/dist/md/ic_cast_connected_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_cast_connected_twotone = void 0; +var ic_cast_connected_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0zm0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 9H5.95c2.83 1.17 5.15 3.3 6.56 6H17V9z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M1 18v3h3c0-1.66-1.34-3-3-3zm0-4v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0-4v2c4.97 0 9 4.03 9 9h2c0-6.08-4.93-11-11-11zm20-7H3c-1.1 0-2 .9-2 2v3h2V5h18v14h-7v2h7c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5 7v1.63c.32.1.63.24.95.37H17v6h-4.49c.15.29.29.58.42.88.16.36.31.74.44 1.12H19V7H5z" + }, + "children": [] + }] +}; +exports.ic_cast_connected_twotone = ic_cast_connected_twotone; \ No newline at end of file diff --git a/dist/md/ic_cast_for_education.js b/dist/md/ic_cast_for_education.js new file mode 100644 index 000000000..6b51f2dc5 --- /dev/null +++ b/dist/md/ic_cast_for_education.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_cast_for_education = void 0; +var ic_cast_for_education = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M21,3H3C1.9,3,1,3.9,1,5v3h2V5h18v14h-7v2h7c1.1,0,2-0.9,2-2V5C23,3.9,22.1,3,21,3z M1,18v3h3C4,19.34,2.66,18,1,18z M1,14 v2c2.76,0,5,2.24,5,5h2C8,17.13,4.87,14,1,14z M1,10v2c4.97,0,9,4.03,9,9h2C12,14.92,7.07,10,1,10z M11,11.09v2L14.5,15l3.5-1.91 v-2L14.5,13L11,11.09z M14.5,6L9,9l5.5,3L20,9L14.5,6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21,3H3C1.9,3,1,3.9,1,5v3h2V5h18v14h-7v2h7c1.1,0,2-0.9,2-2V5C23,3.9,22.1,3,21,3z M1,18v3h3C4,19.34,2.66,18,1,18z M1,14 v2c2.76,0,5,2.24,5,5h2C8,17.13,4.87,14,1,14z M1,10v2c4.97,0,9,4.03,9,9h2C12,14.92,7.07,10,1,10z M11,11.09v2L14.5,15l3.5-1.91 v-2L14.5,13L11,11.09z M14.5,6L9,9l5.5,3L20,9L14.5,6z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M0,0h24v24H0V0z", + "fill": "none" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M0,0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }] + }] + }] +}; +exports.ic_cast_for_education = ic_cast_for_education; \ No newline at end of file diff --git a/dist/md/ic_cast_for_education_outline.js b/dist/md/ic_cast_for_education_outline.js new file mode 100644 index 000000000..40fafe119 --- /dev/null +++ b/dist/md/ic_cast_for_education_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_cast_for_education_outline = void 0; +var ic_cast_for_education_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 3H3c-1.1 0-2 .9-2 2v3h2V5h18v14h-7v2h7c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM1 18v3h3c0-1.66-1.34-3-3-3zm0-4v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0-4v2c4.97 0 9 4.03 9 9h2c0-6.08-4.93-11-11-11zm10 1.09v2L14.5 15l3.5-1.91v-2L14.5 13 11 11.09zM14.5 6L9 9l5.5 3L20 9l-5.5-3z" + }, + "children": [] + }] +}; +exports.ic_cast_for_education_outline = ic_cast_for_education_outline; \ No newline at end of file diff --git a/dist/md/ic_cast_for_education_twotone.js b/dist/md/ic_cast_for_education_twotone.js new file mode 100644 index 000000000..502cc219d --- /dev/null +++ b/dist/md/ic_cast_for_education_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_cast_for_education_twotone = void 0; +var ic_cast_for_education_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 3H3c-1.1 0-2 .9-2 2v3h2V5h18v14h-7v2h7c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM1 18v3h3c0-1.66-1.34-3-3-3zm0-4v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0-4v2c4.97 0 9 4.03 9 9h2c0-6.08-4.93-11-11-11zm10 1.09v2L14.5 15l3.5-1.91v-2L14.5 13 11 11.09zM14.5 6L9 9l5.5 3L20 9l-5.5-3z" + }, + "children": [] + }] +}; +exports.ic_cast_for_education_twotone = ic_cast_for_education_twotone; \ No newline at end of file diff --git a/dist/md/ic_cast_outline.js b/dist/md/ic_cast_outline.js new file mode 100644 index 000000000..191dc42d7 --- /dev/null +++ b/dist/md/ic_cast_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_cast_outline = void 0; +var ic_cast_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0zm0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 3H3c-1.1 0-2 .9-2 2v3h2V5h18v14h-7v2h7c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM1 18v3h3c0-1.66-1.34-3-3-3zm0-4v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0-4v2c4.97 0 9 4.03 9 9h2c0-6.08-4.93-11-11-11z" + }, + "children": [] + }] +}; +exports.ic_cast_outline = ic_cast_outline; \ No newline at end of file diff --git a/dist/md/ic_cast_twotone.js b/dist/md/ic_cast_twotone.js new file mode 100644 index 000000000..c4db7646c --- /dev/null +++ b/dist/md/ic_cast_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_cast_twotone = void 0; +var ic_cast_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0zm0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 3H3c-1.1 0-2 .9-2 2v3h2V5h18v14h-7v2h7c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM1 18v3h3c0-1.66-1.34-3-3-3zm0-4v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0-4v2c4.97 0 9 4.03 9 9h2c0-6.08-4.93-11-11-11z" + }, + "children": [] + }] +}; +exports.ic_cast_twotone = ic_cast_twotone; \ No newline at end of file diff --git a/dist/md/ic_category.js b/dist/md/ic_category.js new file mode 100644 index 000000000..404fb4049 --- /dev/null +++ b/dist/md/ic_category.js @@ -0,0 +1,38 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_category = void 0; +var ic_category = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2l-5.5 9h11z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "17.5", + "cy": "17.5", + "r": "4.5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 13.5h8v8H3z" + }, + "children": [] + }] +}; +exports.ic_category = ic_category; \ No newline at end of file diff --git a/dist/md/ic_category_outline.js b/dist/md/ic_category_outline.js new file mode 100644 index 000000000..76feeb173 --- /dev/null +++ b/dist/md/ic_category_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_category_outline = void 0; +var ic_category_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2l-5.5 9h11L12 2zm0 3.84L13.93 9h-3.87L12 5.84zM17.5 13c-2.49 0-4.5 2.01-4.5 4.5s2.01 4.5 4.5 4.5 4.5-2.01 4.5-4.5-2.01-4.5-4.5-4.5zm0 7c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5zM3 21.5h8v-8H3v8zm2-6h4v4H5v-4z" + }, + "children": [] + }] +}; +exports.ic_category_outline = ic_category_outline; \ No newline at end of file diff --git a/dist/md/ic_category_twotone.js b/dist/md/ic_category_twotone.js new file mode 100644 index 000000000..91afba45c --- /dev/null +++ b/dist/md/ic_category_twotone.js @@ -0,0 +1,40 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_category_twotone = void 0; +var ic_category_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "17.5", + "cy": "17.5", + "opacity": ".3", + "r": "2.5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 15.5h4v4H5zm7-9.66L10.07 9h3.86z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2l-5.5 9h11L12 2zm0 3.84L13.93 9h-3.87L12 5.84zM17.5 13c-2.49 0-4.5 2.01-4.5 4.5s2.01 4.5 4.5 4.5 4.5-2.01 4.5-4.5-2.01-4.5-4.5-4.5zm0 7c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5zM11 13.5H3v8h8v-8zm-2 6H5v-4h4v4z" + }, + "children": [] + }] +}; +exports.ic_category_twotone = ic_category_twotone; \ No newline at end of file diff --git a/dist/md/ic_celebration.js b/dist/md/ic_celebration.js new file mode 100644 index 000000000..74173b689 --- /dev/null +++ b/dist/md/ic_celebration.js @@ -0,0 +1,103 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_celebration = void 0; +var ic_celebration = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "2,22 16,17 7,8" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "2,22 16,17 7,8" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M14.53,12.53l5.59-5.59c0.49-0.49,1.28-0.49,1.77,0l0.59,0.59l1.06-1.06l-0.59-0.59c-1.07-1.07-2.82-1.07-3.89,0 l-5.59,5.59L14.53,12.53z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14.53,12.53l5.59-5.59c0.49-0.49,1.28-0.49,1.77,0l0.59,0.59l1.06-1.06l-0.59-0.59c-1.07-1.07-2.82-1.07-3.89,0 l-5.59,5.59L14.53,12.53z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M10.06,6.88L9.47,7.47l1.06,1.06l0.59-0.59c1.07-1.07,1.07-2.82,0-3.89l-0.59-0.59L9.47,4.53l0.59,0.59 C10.54,5.6,10.54,6.4,10.06,6.88z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M10.06,6.88L9.47,7.47l1.06,1.06l0.59-0.59c1.07-1.07,1.07-2.82,0-3.89l-0.59-0.59L9.47,4.53l0.59,0.59 C10.54,5.6,10.54,6.4,10.06,6.88z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M17.06,11.88l-1.59,1.59l1.06,1.06l1.59-1.59c0.49-0.49,1.28-0.49,1.77,0l1.61,1.61l1.06-1.06l-1.61-1.61 C19.87,10.81,18.13,10.81,17.06,11.88z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17.06,11.88l-1.59,1.59l1.06,1.06l1.59-1.59c0.49-0.49,1.28-0.49,1.77,0l1.61,1.61l1.06-1.06l-1.61-1.61 C19.87,10.81,18.13,10.81,17.06,11.88z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M15.06,5.88l-3.59,3.59l1.06,1.06l3.59-3.59c1.07-1.07,1.07-2.82,0-3.89l-1.59-1.59l-1.06,1.06l1.59,1.59 C15.54,4.6,15.54,5.4,15.06,5.88z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15.06,5.88l-3.59,3.59l1.06,1.06l3.59-3.59c1.07-1.07,1.07-2.82,0-3.89l-1.59-1.59l-1.06,1.06l1.59,1.59 C15.54,4.6,15.54,5.4,15.06,5.88z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_celebration = ic_celebration; \ No newline at end of file diff --git a/dist/md/ic_cell_wifi.js b/dist/md/ic_cell_wifi.js new file mode 100644 index 000000000..9ddbfb60b --- /dev/null +++ b/dist/md/ic_cell_wifi.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_cell_wifi = void 0; +var ic_cell_wifi = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18,9.98L6,22h12h4V5.97L18,9.98z M20,20h-2v-7.22l2-2V20z M5.22,7.22L3.93,5.93c3.9-3.91,10.24-3.91,14.15,0l-1.29,1.29 C13.6,4.03,8.41,4.03,5.22,7.22z M12.93,11.07L11,13l-1.93-1.93C10.14,10.01,11.86,10.01,12.93,11.07z M14.22,9.79 c-1.78-1.77-4.66-1.77-6.43,0L6.5,8.5c2.48-2.48,6.52-2.48,9,0L14.22,9.79z" + }, + "children": [] + }] +}; +exports.ic_cell_wifi = ic_cell_wifi; \ No newline at end of file diff --git a/dist/md/ic_cell_wifi_twotone.js b/dist/md/ic_cell_wifi_twotone.js new file mode 100644 index 000000000..11c0d2256 --- /dev/null +++ b/dist/md/ic_cell_wifi_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_cell_wifi_twotone = void 0; +var ic_cell_wifi_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 5.97l-4 4.01v2.8l2-2V20h-2v2h4z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9.07 11.07L11 13l1.93-1.93c-1.07-1.06-2.79-1.06-3.86 0zm9.01-5.14c-3.91-3.91-10.25-3.91-14.15 0l1.29 1.29c3.19-3.19 8.38-3.19 11.57 0l1.29-1.29zM15.5 8.5c-2.48-2.48-6.52-2.48-9 0l1.29 1.29c1.77-1.77 4.65-1.77 6.43 0L15.5 8.5zm2.5 4.28v-2.8L6 22h12v-2.05z" + }, + "children": [] + }] +}; +exports.ic_cell_wifi_twotone = ic_cell_wifi_twotone; \ No newline at end of file diff --git a/dist/md/ic_center_focus_strong.js b/dist/md/ic_center_focus_strong.js new file mode 100644 index 000000000..b491bfe45 --- /dev/null +++ b/dist/md/ic_center_focus_strong.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_center_focus_strong = void 0; +var ic_center_focus_strong = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm-7 7H3v4c0 1.1.9 2 2 2h4v-2H5v-4zM5 5h4V3H5c-1.1 0-2 .9-2 2v4h2V5zm14-2h-4v2h4v4h2V5c0-1.1-.9-2-2-2zm0 16h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4z" + }, + "children": [] + }] +}; +exports.ic_center_focus_strong = ic_center_focus_strong; \ No newline at end of file diff --git a/dist/md/ic_center_focus_strong_outline.js b/dist/md/ic_center_focus_strong_outline.js new file mode 100644 index 000000000..fc0f0d1cf --- /dev/null +++ b/dist/md/ic_center_focus_strong_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_center_focus_strong_outline = void 0; +var ic_center_focus_strong_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 12c0-2.76-2.24-5-5-5s-5 2.24-5 5 2.24 5 5 5 5-2.24 5-5zm-5 3c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3zm-7 0H3v4c0 1.1.9 2 2 2h4v-2H5v-4zM5 5h4V3H5c-1.1 0-2 .9-2 2v4h2V5zm14-2h-4v2h4v4h2V5c0-1.1-.9-2-2-2zm0 16h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4z" + }, + "children": [] + }] +}; +exports.ic_center_focus_strong_outline = ic_center_focus_strong_outline; \ No newline at end of file diff --git a/dist/md/ic_center_focus_strong_twotone.js b/dist/md/ic_center_focus_strong_twotone.js new file mode 100644 index 000000000..36b3d0206 --- /dev/null +++ b/dist/md/ic_center_focus_strong_twotone.js @@ -0,0 +1,33 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_center_focus_strong_twotone = void 0; +var ic_center_focus_strong_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "opacity": ".3", + "r": "3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 12c0 2.76 2.24 5 5 5s5-2.24 5-5-2.24-5-5-5-5 2.24-5 5zm8 0c0 1.65-1.35 3-3 3s-3-1.35-3-3 1.35-3 3-3 3 1.35 3 3zM3 19c0 1.1.9 2 2 2h4v-2H5v-4H3v4zM3 5v4h2V5h4V3H5c-1.1 0-2 .9-2 2zm18 0c0-1.1-.9-2-2-2h-4v2h4v4h2V5zm-2 14h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4z" + }, + "children": [] + }] +}; +exports.ic_center_focus_strong_twotone = ic_center_focus_strong_twotone; \ No newline at end of file diff --git a/dist/md/ic_center_focus_weak.js b/dist/md/ic_center_focus_weak.js new file mode 100644 index 000000000..bedb2f75a --- /dev/null +++ b/dist/md/ic_center_focus_weak.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_center_focus_weak = void 0; +var ic_center_focus_weak = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 15H3v4c0 1.1.9 2 2 2h4v-2H5v-4zM5 5h4V3H5c-1.1 0-2 .9-2 2v4h2V5zm14-2h-4v2h4v4h2V5c0-1.1-.9-2-2-2zm0 16h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4zM12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" + }, + "children": [] + }] +}; +exports.ic_center_focus_weak = ic_center_focus_weak; \ No newline at end of file diff --git a/dist/md/ic_center_focus_weak_outline.js b/dist/md/ic_center_focus_weak_outline.js new file mode 100644 index 000000000..cd017e24d --- /dev/null +++ b/dist/md/ic_center_focus_weak_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_center_focus_weak_outline = void 0; +var ic_center_focus_weak_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 15H3v4c0 1.1.9 2 2 2h4v-2H5v-4zM5 5h4V3H5c-1.1 0-2 .9-2 2v4h2V5zm7 3c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm7-11h-4v2h4v4h2V5c0-1.1-.9-2-2-2zm0 16h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4z" + }, + "children": [] + }] +}; +exports.ic_center_focus_weak_outline = ic_center_focus_weak_outline; \ No newline at end of file diff --git a/dist/md/ic_center_focus_weak_twotone.js b/dist/md/ic_center_focus_weak_twotone.js new file mode 100644 index 000000000..c9a889c04 --- /dev/null +++ b/dist/md/ic_center_focus_weak_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_center_focus_weak_twotone = void 0; +var ic_center_focus_weak_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 19c0 1.1.9 2 2 2h4v-2H5v-4H3v4zM3 5v4h2V5h4V3H5c-1.1 0-2 .9-2 2zm9 3c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm9-9c0-1.1-.9-2-2-2h-4v2h4v4h2V5zm-2 14h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4z" + }, + "children": [] + }] +}; +exports.ic_center_focus_weak_twotone = ic_center_focus_weak_twotone; \ No newline at end of file diff --git a/dist/md/ic_change_history.js b/dist/md/ic_change_history.js new file mode 100644 index 000000000..9af3987cf --- /dev/null +++ b/dist/md/ic_change_history.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_change_history = void 0; +var ic_change_history = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 7.77L18.39 18H5.61L12 7.77M12 4L2 20h20L12 4z" + }, + "children": [] + }] +}; +exports.ic_change_history = ic_change_history; \ No newline at end of file diff --git a/dist/md/ic_change_history_outline.js b/dist/md/ic_change_history_outline.js new file mode 100644 index 000000000..b58930222 --- /dev/null +++ b/dist/md/ic_change_history_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_change_history_outline = void 0; +var ic_change_history_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 7.77L18.39 18H5.61L12 7.77M12 4L2 20h20L12 4z" + }, + "children": [] + }] +}; +exports.ic_change_history_outline = ic_change_history_outline; \ No newline at end of file diff --git a/dist/md/ic_change_history_twotone.js b/dist/md/ic_change_history_twotone.js new file mode 100644 index 000000000..b784b928c --- /dev/null +++ b/dist/md/ic_change_history_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_change_history_twotone = void 0; +var ic_change_history_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 7.77L5.61 18h12.78z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4L2 20h20L12 4zm0 3.77L18.39 18H5.61L12 7.77z" + }, + "children": [] + }] +}; +exports.ic_change_history_twotone = ic_change_history_twotone; \ No newline at end of file diff --git a/dist/md/ic_charging_station.js b/dist/md/ic_charging_station.js new file mode 100644 index 000000000..429d9f838 --- /dev/null +++ b/dist/md/ic_charging_station.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_charging_station = void 0; +var ic_charging_station = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M14.5,11l-3,6v-4h-2l3-6v4H14.5z M7,1h10c1.1,0,2,0.9,2,2v18c0,1.1-0.9,2-2,2H7c-1.1,0-2-0.9-2-2V3C5,1.9,5.9,1,7,1z M7,6 v12h10V6H7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14.5,11l-3,6v-4h-2l3-6v4H14.5z M7,1h10c1.1,0,2,0.9,2,2v18c0,1.1-0.9,2-2,2H7c-1.1,0-2-0.9-2-2V3C5,1.9,5.9,1,7,1z M7,6 v12h10V6H7z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_charging_station = ic_charging_station; \ No newline at end of file diff --git a/dist/md/ic_charging_station_outline.js b/dist/md/ic_charging_station_outline.js new file mode 100644 index 000000000..c461bb92a --- /dev/null +++ b/dist/md/ic_charging_station_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_charging_station_outline = void 0; +var ic_charging_station_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M14.5,11l-3,6v-4h-2l3-6v4H14.5z M17,3H7v1h10V3 M17,20H7v1h10V20 M17,1c1.1,0,2,0.9,2,2v18c0,1.1-0.9,2-2,2H7 c-1.1,0-2-0.9-2-2V3c0-1.1,0.9-2,2-2H17L17,1z M7,18h10V6H7V18L7,18z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14.5,11l-3,6v-4h-2l3-6v4H14.5z M17,3H7v1h10V3 M17,20H7v1h10V20 M17,1c1.1,0,2,0.9,2,2v18c0,1.1-0.9,2-2,2H7 c-1.1,0-2-0.9-2-2V3c0-1.1,0.9-2,2-2H17L17,1z M7,18h10V6H7V18L7,18z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_charging_station_outline = ic_charging_station_outline; \ No newline at end of file diff --git a/dist/md/ic_charging_station_twotone.js b/dist/md/ic_charging_station_twotone.js new file mode 100644 index 000000000..42b57ecb3 --- /dev/null +++ b/dist/md/ic_charging_station_twotone.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_charging_station_twotone = void 0; +var ic_charging_station_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M17,3v1H7V3H17 M17,20H7v1h10V20", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,3v1H7V3H17 M17,20H7v1h10V20", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M14.5,11l-3,6v-4h-2l3-6v4H14.5z M17,3H7v1h10V3 M17,20H7v1h10V20 M17,1c1.1,0,2,0.9,2,2v18c0,1.1-0.9,2-2,2H7 c-1.1,0-2-0.9-2-2V3c0-1.1,0.9-2,2-2H17L17,1z M7,18h10V6H7V18L7,18z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14.5,11l-3,6v-4h-2l3-6v4H14.5z M17,3H7v1h10V3 M17,20H7v1h10V20 M17,1c1.1,0,2,0.9,2,2v18c0,1.1-0.9,2-2,2H7 c-1.1,0-2-0.9-2-2V3c0-1.1,0.9-2,2-2H17L17,1z M7,18h10V6H7V18L7,18z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_charging_station_twotone = ic_charging_station_twotone; \ No newline at end of file diff --git a/dist/md/ic_chat.js b/dist/md/ic_chat.js new file mode 100644 index 000000000..49f851cbe --- /dev/null +++ b/dist/md/ic_chat.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_chat = void 0; +var ic_chat = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM6 9h12v2H6V9zm8 5H6v-2h8v2zm4-6H6V6h12v2z" + }, + "children": [] + }] +}; +exports.ic_chat = ic_chat; \ No newline at end of file diff --git a/dist/md/ic_chat_bubble.js b/dist/md/ic_chat_bubble.js new file mode 100644 index 000000000..5f222d275 --- /dev/null +++ b/dist/md/ic_chat_bubble.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_chat_bubble = void 0; +var ic_chat_bubble = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_chat_bubble = ic_chat_bubble; \ No newline at end of file diff --git a/dist/md/ic_chat_bubble_outline.js b/dist/md/ic_chat_bubble_outline.js new file mode 100644 index 000000000..1159e590e --- /dev/null +++ b/dist/md/ic_chat_bubble_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_chat_bubble_outline = void 0; +var ic_chat_bubble_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_chat_bubble_outline = ic_chat_bubble_outline; \ No newline at end of file diff --git a/dist/md/ic_chat_bubble_outline_outline.js b/dist/md/ic_chat_bubble_outline_outline.js new file mode 100644 index 000000000..94053ef3c --- /dev/null +++ b/dist/md/ic_chat_bubble_outline_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_chat_bubble_outline_outline = void 0; +var ic_chat_bubble_outline_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H6l-2 2V4h16v12z" + }, + "children": [] + }] +}; +exports.ic_chat_bubble_outline_outline = ic_chat_bubble_outline_outline; \ No newline at end of file diff --git a/dist/md/ic_chat_bubble_outline_twotone.js b/dist/md/ic_chat_bubble_outline_twotone.js new file mode 100644 index 000000000..b572a7b54 --- /dev/null +++ b/dist/md/ic_chat_bubble_outline_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_chat_bubble_outline_twotone = void 0; +var ic_chat_bubble_outline_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H6l-2 2V4h16v12z" + }, + "children": [] + }] +}; +exports.ic_chat_bubble_outline_twotone = ic_chat_bubble_outline_twotone; \ No newline at end of file diff --git a/dist/md/ic_chat_bubble_twotone.js b/dist/md/ic_chat_bubble_twotone.js new file mode 100644 index 000000000..79be8f69a --- /dev/null +++ b/dist/md/ic_chat_bubble_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_chat_bubble_twotone = void 0; +var ic_chat_bubble_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 18l2-2h14V4H4z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H6l-2 2V4h16v12z" + }, + "children": [] + }] +}; +exports.ic_chat_bubble_twotone = ic_chat_bubble_twotone; \ No newline at end of file diff --git a/dist/md/ic_chat_outline.js b/dist/md/ic_chat_outline.js new file mode 100644 index 000000000..ffb4a16cd --- /dev/null +++ b/dist/md/ic_chat_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_chat_outline = void 0; +var ic_chat_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 4h16v12H5.17L4 17.17V4m0-2c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H4zm2 10h8v2H6v-2zm0-3h12v2H6V9zm0-3h12v2H6V6z" + }, + "children": [] + }] +}; +exports.ic_chat_outline = ic_chat_outline; \ No newline at end of file diff --git a/dist/md/ic_chat_twotone.js b/dist/md/ic_chat_twotone.js new file mode 100644 index 000000000..17dde2247 --- /dev/null +++ b/dist/md/ic_chat_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_chat_twotone = void 0; +var ic_chat_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 4H4v13.17L5.17 16H20V4zm-6 10H6v-2h8v2zm4-3H6V9h12v2zm0-3H6V6h12v2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 18c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14zm-16-.83V4h16v12H5.17L4 17.17zM6 12h8v2H6zm0-3h12v2H6zm0-3h12v2H6z" + }, + "children": [] + }] +}; +exports.ic_chat_twotone = ic_chat_twotone; \ No newline at end of file diff --git a/dist/md/ic_check.js b/dist/md/ic_check.js new file mode 100644 index 000000000..6e2f0e4ea --- /dev/null +++ b/dist/md/ic_check.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_check = void 0; +var ic_check = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z" + }, + "children": [] + }] +}; +exports.ic_check = ic_check; \ No newline at end of file diff --git a/dist/md/ic_check_box.js b/dist/md/ic_check_box.js new file mode 100644 index 000000000..78bd7ce5b --- /dev/null +++ b/dist/md/ic_check_box.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_check_box = void 0; +var ic_check_box = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.11 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm-9 14l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z" + }, + "children": [] + }] +}; +exports.ic_check_box = ic_check_box; \ No newline at end of file diff --git a/dist/md/ic_check_box_outline.js b/dist/md/ic_check_box_outline.js new file mode 100644 index 000000000..4fea81257 --- /dev/null +++ b/dist/md/ic_check_box_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_check_box_outline = void 0; +var ic_check_box_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM17.99 9l-1.41-1.42-6.59 6.59-2.58-2.57-1.42 1.41 4 3.99z" + }, + "children": [] + }] +}; +exports.ic_check_box_outline = ic_check_box_outline; \ No newline at end of file diff --git a/dist/md/ic_check_box_outline_blank.js b/dist/md/ic_check_box_outline_blank.js new file mode 100644 index 000000000..a036d3aa0 --- /dev/null +++ b/dist/md/ic_check_box_outline_blank.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_check_box_outline_blank = void 0; +var ic_check_box_outline_blank = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_check_box_outline_blank = ic_check_box_outline_blank; \ No newline at end of file diff --git a/dist/md/ic_check_box_outline_blank_outline.js b/dist/md/ic_check_box_outline_blank_outline.js new file mode 100644 index 000000000..0b9524061 --- /dev/null +++ b/dist/md/ic_check_box_outline_blank_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_check_box_outline_blank_outline = void 0; +var ic_check_box_outline_blank_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_check_box_outline_blank_outline = ic_check_box_outline_blank_outline; \ No newline at end of file diff --git a/dist/md/ic_check_box_outline_blank_twotone.js b/dist/md/ic_check_box_outline_blank_twotone.js new file mode 100644 index 000000000..1e6e6d833 --- /dev/null +++ b/dist/md/ic_check_box_outline_blank_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_check_box_outline_blank_twotone = void 0; +var ic_check_box_outline_blank_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_check_box_outline_blank_twotone = ic_check_box_outline_blank_twotone; \ No newline at end of file diff --git a/dist/md/ic_check_box_twotone.js b/dist/md/ic_check_box_twotone.js new file mode 100644 index 000000000..88cd74d4f --- /dev/null +++ b/dist/md/ic_check_box_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_check_box_twotone = void 0; +var ic_check_box_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 19h14V5H5v14zm2.41-7.4l2.58 2.58 6.59-6.59L17.99 9l-8 8L6 13.01l1.41-1.41z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM17.99 9l-1.41-1.42-6.59 6.59-2.58-2.57-1.42 1.41 4 3.99z" + }, + "children": [] + }] +}; +exports.ic_check_box_twotone = ic_check_box_twotone; \ No newline at end of file diff --git a/dist/md/ic_check_circle.js b/dist/md/ic_check_circle.js new file mode 100644 index 000000000..50ecff2c0 --- /dev/null +++ b/dist/md/ic_check_circle.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_check_circle = void 0; +var ic_check_circle = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z" + }, + "children": [] + }] +}; +exports.ic_check_circle = ic_check_circle; \ No newline at end of file diff --git a/dist/md/ic_check_circle_outline.js b/dist/md/ic_check_circle_outline.js new file mode 100644 index 000000000..4918af48e --- /dev/null +++ b/dist/md/ic_check_circle_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_check_circle_outline = void 0; +var ic_check_circle_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm4.59-12.42L10 14.17l-2.59-2.58L6 13l4 4 8-8z" + }, + "children": [] + }] +}; +exports.ic_check_circle_outline = ic_check_circle_outline; \ No newline at end of file diff --git a/dist/md/ic_check_circle_outline_outline.js b/dist/md/ic_check_circle_outline_outline.js new file mode 100644 index 000000000..de4b7ad38 --- /dev/null +++ b/dist/md/ic_check_circle_outline_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_check_circle_outline_outline = void 0; +var ic_check_circle_outline_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm4.59-12.42L10 14.17l-2.59-2.58L6 13l4 4 8-8z" + }, + "children": [] + }] +}; +exports.ic_check_circle_outline_outline = ic_check_circle_outline_outline; \ No newline at end of file diff --git a/dist/md/ic_check_circle_outline_twotone.js b/dist/md/ic_check_circle_outline_twotone.js new file mode 100644 index 000000000..a7bb00822 --- /dev/null +++ b/dist/md/ic_check_circle_outline_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_check_circle_outline_twotone = void 0; +var ic_check_circle_outline_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm4.59-12.42L10 14.17l-2.59-2.58L6 13l4 4 8-8z" + }, + "children": [] + }] +}; +exports.ic_check_circle_outline_twotone = ic_check_circle_outline_twotone; \ No newline at end of file diff --git a/dist/md/ic_check_circle_twotone.js b/dist/md/ic_check_circle_twotone.js new file mode 100644 index 000000000..ad19b40d5 --- /dev/null +++ b/dist/md/ic_check_circle_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_check_circle_twotone = void 0; +var ic_check_circle_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm-2 13l-4-4 1.41-1.41L10 14.17l6.59-6.59L18 9l-8 8z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm4.59-12.42L10 14.17l-2.59-2.58L6 13l4 4 8-8z" + }, + "children": [] + }] +}; +exports.ic_check_circle_twotone = ic_check_circle_twotone; \ No newline at end of file diff --git a/dist/md/ic_check_outline.js b/dist/md/ic_check_outline.js new file mode 100644 index 000000000..462faa086 --- /dev/null +++ b/dist/md/ic_check_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_check_outline = void 0; +var ic_check_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z" + }, + "children": [] + }] +}; +exports.ic_check_outline = ic_check_outline; \ No newline at end of file diff --git a/dist/md/ic_check_twotone.js b/dist/md/ic_check_twotone.js new file mode 100644 index 000000000..0f2803470 --- /dev/null +++ b/dist/md/ic_check_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_check_twotone = void 0; +var ic_check_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z" + }, + "children": [] + }] +}; +exports.ic_check_twotone = ic_check_twotone; \ No newline at end of file diff --git a/dist/md/ic_checkroom.js b/dist/md/ic_checkroom.js new file mode 100644 index 000000000..edc3c8a10 --- /dev/null +++ b/dist/md/ic_checkroom.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_checkroom = void 0; +var ic_checkroom = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M21.6,18.2L13,11.75v-0.91c1.65-0.49,2.8-2.17,2.43-4.05c-0.26-1.31-1.3-2.4-2.61-2.7C10.54,3.57,8.5,5.3,8.5,7.5h2 C10.5,6.67,11.17,6,12,6s1.5,0.67,1.5,1.5c0,0.84-0.69,1.52-1.53,1.5C11.43,8.99,11,9.45,11,9.99v1.76L2.4,18.2 C1.63,18.78,2.04,20,3,20h9h9C21.96,20,22.37,18.78,21.6,18.2z M6,18l6-4.5l6,4.5H6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21.6,18.2L13,11.75v-0.91c1.65-0.49,2.8-2.17,2.43-4.05c-0.26-1.31-1.3-2.4-2.61-2.7C10.54,3.57,8.5,5.3,8.5,7.5h2 C10.5,6.67,11.17,6,12,6s1.5,0.67,1.5,1.5c0,0.84-0.69,1.52-1.53,1.5C11.43,8.99,11,9.45,11,9.99v1.76L2.4,18.2 C1.63,18.78,2.04,20,3,20h9h9C21.96,20,22.37,18.78,21.6,18.2z M6,18l6-4.5l6,4.5H6z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_checkroom = ic_checkroom; \ No newline at end of file diff --git a/dist/md/ic_checkroom_outline.js b/dist/md/ic_checkroom_outline.js new file mode 100644 index 000000000..23d3df6df --- /dev/null +++ b/dist/md/ic_checkroom_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_checkroom_outline = void 0; +var ic_checkroom_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M21.6,18.2L13,11.75v-0.91c1.65-0.49,2.8-2.17,2.43-4.05c-0.26-1.31-1.3-2.4-2.61-2.7C10.54,3.57,8.5,5.3,8.5,7.5h2 C10.5,6.67,11.17,6,12,6s1.5,0.67,1.5,1.5c0,0.84-0.69,1.52-1.53,1.5C11.43,8.99,11,9.45,11,9.99v1.76L2.4,18.2 C1.63,18.78,2.04,20,3,20h9h9C21.96,20,22.37,18.78,21.6,18.2z M6,18l6-4.5l6,4.5H6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21.6,18.2L13,11.75v-0.91c1.65-0.49,2.8-2.17,2.43-4.05c-0.26-1.31-1.3-2.4-2.61-2.7C10.54,3.57,8.5,5.3,8.5,7.5h2 C10.5,6.67,11.17,6,12,6s1.5,0.67,1.5,1.5c0,0.84-0.69,1.52-1.53,1.5C11.43,8.99,11,9.45,11,9.99v1.76L2.4,18.2 C1.63,18.78,2.04,20,3,20h9h9C21.96,20,22.37,18.78,21.6,18.2z M6,18l6-4.5l6,4.5H6z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_checkroom_outline = ic_checkroom_outline; \ No newline at end of file diff --git a/dist/md/ic_checkroom_twotone.js b/dist/md/ic_checkroom_twotone.js new file mode 100644 index 000000000..c3d8a1315 --- /dev/null +++ b/dist/md/ic_checkroom_twotone.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_checkroom_twotone = void 0; +var ic_checkroom_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M21.6,18.2L13,11.75v-0.91c1.65-0.49,2.8-2.17,2.43-4.05c-0.26-1.31-1.3-2.4-2.61-2.7C10.54,3.57,8.5,5.3,8.5,7.5h2 C10.5,6.67,11.17,6,12,6s1.5,0.67,1.5,1.5c0,0.84-0.69,1.52-1.53,1.5C11.43,8.99,11,9.45,11,9.99v1.76L2.4,18.2 C1.63,18.78,2.04,20,3,20h9h9C21.96,20,22.37,18.78,21.6,18.2z M6,18l6-4.5l6,4.5H6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21.6,18.2L13,11.75v-0.91c1.65-0.49,2.8-2.17,2.43-4.05c-0.26-1.31-1.3-2.4-2.61-2.7C10.54,3.57,8.5,5.3,8.5,7.5h2 C10.5,6.67,11.17,6,12,6s1.5,0.67,1.5,1.5c0,0.84-0.69,1.52-1.53,1.5C11.43,8.99,11,9.45,11,9.99v1.76L2.4,18.2 C1.63,18.78,2.04,20,3,20h9h9C21.96,20,22.37,18.78,21.6,18.2z M6,18l6-4.5l6,4.5H6z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_checkroom_twotone = ic_checkroom_twotone; \ No newline at end of file diff --git a/dist/md/ic_chevron_left.js b/dist/md/ic_chevron_left.js new file mode 100644 index 000000000..3a8d61b10 --- /dev/null +++ b/dist/md/ic_chevron_left.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_chevron_left = void 0; +var ic_chevron_left = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z" + }, + "children": [] + }] +}; +exports.ic_chevron_left = ic_chevron_left; \ No newline at end of file diff --git a/dist/md/ic_chevron_left_outline.js b/dist/md/ic_chevron_left_outline.js new file mode 100644 index 000000000..a3cb4b368 --- /dev/null +++ b/dist/md/ic_chevron_left_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_chevron_left_outline = void 0; +var ic_chevron_left_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12l4.58-4.59z" + }, + "children": [] + }] +}; +exports.ic_chevron_left_outline = ic_chevron_left_outline; \ No newline at end of file diff --git a/dist/md/ic_chevron_left_twotone.js b/dist/md/ic_chevron_left_twotone.js new file mode 100644 index 000000000..e12631854 --- /dev/null +++ b/dist/md/ic_chevron_left_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_chevron_left_twotone = void 0; +var ic_chevron_left_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12l4.58-4.59z" + }, + "children": [] + }] +}; +exports.ic_chevron_left_twotone = ic_chevron_left_twotone; \ No newline at end of file diff --git a/dist/md/ic_chevron_right.js b/dist/md/ic_chevron_right.js new file mode 100644 index 000000000..2ed41457b --- /dev/null +++ b/dist/md/ic_chevron_right.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_chevron_right = void 0; +var ic_chevron_right = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z" + }, + "children": [] + }] +}; +exports.ic_chevron_right = ic_chevron_right; \ No newline at end of file diff --git a/dist/md/ic_chevron_right_outline.js b/dist/md/ic_chevron_right_outline.js new file mode 100644 index 000000000..f5ce51090 --- /dev/null +++ b/dist/md/ic_chevron_right_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_chevron_right_outline = void 0; +var ic_chevron_right_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6-6-6z" + }, + "children": [] + }] +}; +exports.ic_chevron_right_outline = ic_chevron_right_outline; \ No newline at end of file diff --git a/dist/md/ic_chevron_right_twotone.js b/dist/md/ic_chevron_right_twotone.js new file mode 100644 index 000000000..541c7fa25 --- /dev/null +++ b/dist/md/ic_chevron_right_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_chevron_right_twotone = void 0; +var ic_chevron_right_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6-6-6z" + }, + "children": [] + }] +}; +exports.ic_chevron_right_twotone = ic_chevron_right_twotone; \ No newline at end of file diff --git a/dist/md/ic_child_care.js b/dist/md/ic_child_care.js new file mode 100644 index 000000000..929e1d2d1 --- /dev/null +++ b/dist/md/ic_child_care.js @@ -0,0 +1,40 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_child_care = void 0; +var ic_child_care = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "14.5", + "cy": "10.5", + "r": "1.25" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "9.5", + "cy": "10.5", + "r": "1.25" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22.94 12.66c.04-.21.06-.43.06-.66s-.02-.45-.06-.66c-.25-1.51-1.36-2.74-2.81-3.17-.53-1.12-1.28-2.1-2.19-2.91C16.36 3.85 14.28 3 12 3s-4.36.85-5.94 2.26c-.92.81-1.67 1.8-2.19 2.91-1.45.43-2.56 1.65-2.81 3.17-.04.21-.06.43-.06.66s.02.45.06.66c.25 1.51 1.36 2.74 2.81 3.17.52 1.11 1.27 2.09 2.17 2.89C7.62 20.14 9.71 21 12 21s4.38-.86 5.97-2.28c.9-.8 1.65-1.79 2.17-2.89 1.44-.43 2.55-1.65 2.8-3.17zM19 14c-.1 0-.19-.02-.29-.03-.2.67-.49 1.29-.86 1.86C16.6 17.74 14.45 19 12 19s-4.6-1.26-5.85-3.17c-.37-.57-.66-1.19-.86-1.86-.1.01-.19.03-.29.03-1.1 0-2-.9-2-2s.9-2 2-2c.1 0 .19.02.29.03.2-.67.49-1.29.86-1.86C7.4 6.26 9.55 5 12 5s4.6 1.26 5.85 3.17c.37.57.66 1.19.86 1.86.1-.01.19-.03.29-.03 1.1 0 2 .9 2 2s-.9 2-2 2zM7.5 14c.76 1.77 2.49 3 4.5 3s3.74-1.23 4.5-3h-9z" + }, + "children": [] + }] +}; +exports.ic_child_care = ic_child_care; \ No newline at end of file diff --git a/dist/md/ic_child_care_outline.js b/dist/md/ic_child_care_outline.js new file mode 100644 index 000000000..b84fa7d64 --- /dev/null +++ b/dist/md/ic_child_care_outline.js @@ -0,0 +1,40 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_child_care_outline = void 0; +var ic_child_care_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "14.5", + "cy": "10.5", + "r": "1.25" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "9.5", + "cy": "10.5", + "r": "1.25" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22.94 11.34c-.25-1.51-1.36-2.74-2.81-3.17-.53-1.12-1.28-2.1-2.19-2.91C16.36 3.85 14.28 3 12 3s-4.36.85-5.94 2.26c-.92.81-1.67 1.8-2.19 2.91-1.45.43-2.56 1.65-2.81 3.17-.04.21-.06.43-.06.66 0 .23.02.45.06.66.25 1.51 1.36 2.74 2.81 3.17.52 1.11 1.27 2.09 2.17 2.89C7.62 20.14 9.71 21 12 21s4.38-.86 5.97-2.28c.9-.8 1.65-1.79 2.17-2.89 1.44-.43 2.55-1.65 2.8-3.17.04-.21.06-.43.06-.66 0-.23-.02-.45-.06-.66zM19 14c-.1 0-.19-.02-.29-.03-.2.67-.49 1.29-.86 1.86C16.6 17.74 14.45 19 12 19s-4.6-1.26-5.85-3.17c-.37-.57-.66-1.19-.86-1.86-.1.01-.19.03-.29.03-1.1 0-2-.9-2-2s.9-2 2-2c.1 0 .19.02.29.03.2-.67.49-1.29.86-1.86C7.4 6.26 9.55 5 12 5s4.6 1.26 5.85 3.17c.37.57.66 1.19.86 1.86.1-.01.19-.03.29-.03 1.1 0 2 .9 2 2s-.9 2-2 2zm-7 3c2.01 0 3.74-1.23 4.5-3h-9c.76 1.77 2.49 3 4.5 3z" + }, + "children": [] + }] +}; +exports.ic_child_care_outline = ic_child_care_outline; \ No newline at end of file diff --git a/dist/md/ic_child_care_twotone.js b/dist/md/ic_child_care_twotone.js new file mode 100644 index 000000000..7a8e3bac2 --- /dev/null +++ b/dist/md/ic_child_care_twotone.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_child_care_twotone = void 0; +var ic_child_care_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 10c-.1 0-.19.02-.29.03-.2-.67-.49-1.29-.86-1.86C16.6 6.26 14.45 5 12 5S7.4 6.26 6.15 8.17c-.37.57-.66 1.19-.86 1.86-.1-.01-.19-.03-.29-.03-1.1 0-2 .9-2 2s.9 2 2 2c.1 0 .19-.02.29-.03.2.67.49 1.29.86 1.86C7.4 17.74 9.55 19 12 19s4.6-1.26 5.85-3.17c.37-.57.66-1.19.86-1.86.1.01.19.03.29.03 1.1 0 2-.9 2-2s-.9-2-2-2zm-4.5-.75c.69 0 1.25.56 1.25 1.25s-.56 1.25-1.25 1.25-1.25-.56-1.25-1.25.56-1.25 1.25-1.25zm-5 0c.69 0 1.25.56 1.25 1.25s-.56 1.25-1.25 1.25-1.25-.56-1.25-1.25.56-1.25 1.25-1.25zM12 17c-2.01 0-3.74-1.23-4.5-3h9c-.76 1.77-2.49 3-4.5 3z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "14.5", + "cy": "10.5", + "r": "1.25" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "9.5", + "cy": "10.5", + "r": "1.25" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 17c2.01 0 3.74-1.23 4.5-3h-9c.76 1.77 2.49 3 4.5 3zm10.94-5.66c-.25-1.51-1.36-2.74-2.81-3.17-.53-1.12-1.28-2.1-2.19-2.91C16.36 3.85 14.28 3 12 3s-4.36.85-5.94 2.26c-.92.81-1.67 1.8-2.19 2.91-1.45.43-2.56 1.65-2.81 3.17-.04.21-.06.43-.06.66 0 .23.02.45.06.66.25 1.51 1.36 2.74 2.81 3.17.52 1.11 1.27 2.09 2.17 2.89C7.62 20.14 9.71 21 12 21s4.38-.86 5.97-2.28c.9-.8 1.65-1.79 2.17-2.89 1.44-.43 2.55-1.65 2.8-3.17.04-.21.06-.43.06-.66 0-.23-.02-.45-.06-.66zM19 14c-.1 0-.19-.02-.29-.03-.2.67-.49 1.29-.86 1.86C16.6 17.74 14.45 19 12 19s-4.6-1.26-5.85-3.17c-.37-.57-.66-1.19-.86-1.86-.1.01-.19.03-.29.03-1.1 0-2-.9-2-2s.9-2 2-2c.1 0 .19.02.29.03.2-.67.49-1.29.86-1.86C7.4 6.26 9.55 5 12 5s4.6 1.26 5.85 3.17c.37.57.66 1.19.86 1.86.1-.01.19-.03.29-.03 1.1 0 2 .9 2 2s-.9 2-2 2z" + }, + "children": [] + }] +}; +exports.ic_child_care_twotone = ic_child_care_twotone; \ No newline at end of file diff --git a/dist/md/ic_child_friendly.js b/dist/md/ic_child_friendly.js new file mode 100644 index 000000000..10d233c2b --- /dev/null +++ b/dist/md/ic_child_friendly.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_child_friendly = void 0; +var ic_child_friendly = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 2v8h8c0-4.42-3.58-8-8-8zm6.32 13.89C20.37 14.54 21 12.84 21 11H6.44l-.95-2H2v2h2.22s1.89 4.07 2.12 4.42c-1.1.59-1.84 1.75-1.84 3.08C4.5 20.43 6.07 22 8 22c1.76 0 3.22-1.3 3.46-3h2.08c.24 1.7 1.7 3 3.46 3 1.93 0 3.5-1.57 3.5-3.5 0-1.04-.46-1.97-1.18-2.61zM8 20c-.83 0-1.5-.67-1.5-1.5S7.17 17 8 17s1.5.67 1.5 1.5S8.83 20 8 20zm9 0c-.83 0-1.5-.67-1.5-1.5S16.17 17 17 17s1.5.67 1.5 1.5S17.83 20 17 20z" + }, + "children": [] + }] +}; +exports.ic_child_friendly = ic_child_friendly; \ No newline at end of file diff --git a/dist/md/ic_child_friendly_outline.js b/dist/md/ic_child_friendly_outline.js new file mode 100644 index 000000000..8a11181e4 --- /dev/null +++ b/dist/md/ic_child_friendly_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_child_friendly_outline = void 0; +var ic_child_friendly_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 2v8h8c0-4.42-3.58-8-8-8zm2 6V4.34c1.7.6 3.05 1.95 3.66 3.66H15zm-8.56 3l-.95-2H2v2h2.22s1.89 4.07 2.12 4.42c-1.1.59-1.84 1.75-1.84 3.08C4.5 20.43 6.07 22 8 22c1.76 0 3.22-1.3 3.46-3h2.08c.24 1.7 1.7 3 3.46 3 1.93 0 3.5-1.57 3.5-3.5 0-1.04-.46-1.97-1.18-2.61C20.37 14.54 21 12.84 21 11H6.44zM8 20c-.83 0-1.5-.67-1.5-1.5S7.17 17 8 17s1.5.67 1.5 1.5S8.83 20 8 20zm9 0c-.83 0-1.5-.67-1.5-1.5S16.17 17 17 17s1.5.67 1.5 1.5S17.83 20 17 20zm.74-5.34l-.29.37c-.14-.02-.3-.03-.45-.03-1.39 0-2.6.82-3.16 2h-2.68c-.5-1.04-1.5-1.8-2.68-1.97l-.44-.67c-.1-.17-.34-.69-.67-1.36h11.29c-.21.59-.52 1.15-.92 1.66z" + }, + "children": [] + }] +}; +exports.ic_child_friendly_outline = ic_child_friendly_outline; \ No newline at end of file diff --git a/dist/md/ic_child_friendly_twotone.js b/dist/md/ic_child_friendly_twotone.js new file mode 100644 index 000000000..9175d0bdc --- /dev/null +++ b/dist/md/ic_child_friendly_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_child_friendly_twotone = void 0; +var ic_child_friendly_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 4.34V8h3.66C18.05 6.3 16.7 4.95 15 4.34zM8.04 14.36l.44.67c1.19.16 2.19.92 2.68 1.97h2.68c.56-1.18 1.77-2 3.16-2 .15 0 .31.01.46.03l.29-.37c.4-.51.7-1.07.92-1.66H7.37c.32.67.57 1.19.67 1.36z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 2v8h8c0-4.42-3.58-8-8-8zm2 6V4.34c1.7.6 3.05 1.95 3.66 3.66H15zm-8.56 3l-.95-2H2v2h2.22s1.89 4.07 2.12 4.42c-1.1.59-1.84 1.75-1.84 3.08C4.5 20.43 6.07 22 8 22c1.76 0 3.22-1.3 3.46-3h2.08c.24 1.7 1.7 3 3.46 3 1.93 0 3.5-1.57 3.5-3.5 0-1.04-.46-1.97-1.18-2.61C20.37 14.54 21 12.84 21 11H6.44zM8 20c-.83 0-1.5-.67-1.5-1.5S7.17 17 8 17s1.5.67 1.5 1.5S8.83 20 8 20zm9 0c-.83 0-1.5-.67-1.5-1.5S16.17 17 17 17s1.5.67 1.5 1.5S17.83 20 17 20zm.74-5.34l-.29.37c-.14-.02-.3-.03-.45-.03-1.39 0-2.6.82-3.16 2h-2.68c-.5-1.04-1.5-1.8-2.68-1.97l-.44-.67c-.1-.17-.34-.69-.67-1.36h11.29c-.21.59-.52 1.15-.92 1.66z" + }, + "children": [] + }] +}; +exports.ic_child_friendly_twotone = ic_child_friendly_twotone; \ No newline at end of file diff --git a/dist/md/ic_chrome_reader_mode.js b/dist/md/ic_chrome_reader_mode.js new file mode 100644 index 000000000..2c78d8f6e --- /dev/null +++ b/dist/md/ic_chrome_reader_mode.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_chrome_reader_mode = void 0; +var ic_chrome_reader_mode = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M-74 29h48v48h-48V29zM0 0h24v24H0V0zm0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 12h7v1.5h-7zm0-2.5h7V11h-7zm0 5h7V16h-7zM21 4H3c-1.1 0-2 .9-2 2v13c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 15h-9V6h9v13z" + }, + "children": [] + }] +}; +exports.ic_chrome_reader_mode = ic_chrome_reader_mode; \ No newline at end of file diff --git a/dist/md/ic_chrome_reader_mode_outline.js b/dist/md/ic_chrome_reader_mode_outline.js new file mode 100644 index 000000000..bd87682cf --- /dev/null +++ b/dist/md/ic_chrome_reader_mode_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_chrome_reader_mode_outline = void 0; +var ic_chrome_reader_mode_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 4H3c-1.1 0-2 .9-2 2v13c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM3 19V6h8v13H3zm18 0h-8V6h8v13zm-7-9.5h6V11h-6zm0 2.5h6v1.5h-6zm0 2.5h6V16h-6z" + }, + "children": [] + }] +}; +exports.ic_chrome_reader_mode_outline = ic_chrome_reader_mode_outline; \ No newline at end of file diff --git a/dist/md/ic_chrome_reader_mode_twotone.js b/dist/md/ic_chrome_reader_mode_twotone.js new file mode 100644 index 000000000..7839022c2 --- /dev/null +++ b/dist/md/ic_chrome_reader_mode_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_chrome_reader_mode_twotone = void 0; +var ic_chrome_reader_mode_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 6h8v13H3z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 4H3c-1.1 0-2 .9-2 2v13c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM11 19H3V6h8v13zm10 0h-8V6h8v13zm-7-9.5h6V11h-6zm0 2.5h6v1.5h-6zm0 2.5h6V16h-6z" + }, + "children": [] + }] +}; +exports.ic_chrome_reader_mode_twotone = ic_chrome_reader_mode_twotone; \ No newline at end of file diff --git a/dist/md/ic_circle.js b/dist/md/ic_circle.js new file mode 100644 index 000000000..8f4defb75 --- /dev/null +++ b/dist/md/ic_circle.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_circle = void 0; +var ic_circle = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2z" + }, + "children": [] + }] +}; +exports.ic_circle = ic_circle; \ No newline at end of file diff --git a/dist/md/ic_circle_notifications.js b/dist/md/ic_circle_notifications.js new file mode 100644 index 000000000..abebb2198 --- /dev/null +++ b/dist/md/ic_circle_notifications.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_circle_notifications = void 0; +var ic_circle_notifications = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 16.5c-.83 0-1.5-.67-1.5-1.5h3c0 .83-.67 1.5-1.5 1.5zm5-2.5H7v-1l1-1v-2.61C8 9.27 9.03 7.47 11 7v-.5c0-.57.43-1 1-1s1 .43 1 1V7c1.97.47 3 2.28 3 4.39V14l1 1v1z" + }, + "children": [] + }] +}; +exports.ic_circle_notifications = ic_circle_notifications; \ No newline at end of file diff --git a/dist/md/ic_class.js b/dist/md/ic_class.js new file mode 100644 index 000000000..b8fb73297 --- /dev/null +++ b/dist/md/ic_class.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_class = void 0; +var ic_class = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM6 4h5v8l-2.5-1.5L6 12V4z" + }, + "children": [] + }] +}; +exports.ic_class = ic_class; \ No newline at end of file diff --git a/dist/md/ic_class_outline.js b/dist/md/ic_class_outline.js new file mode 100644 index 000000000..99cf59048 --- /dev/null +++ b/dist/md/ic_class_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_class_outline = void 0; +var ic_class_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM9 4h2v5l-1-.75L9 9V4zm9 16H6V4h1v9l3-2.25L13 13V4h5v16z" + }, + "children": [] + }] +}; +exports.ic_class_outline = ic_class_outline; \ No newline at end of file diff --git a/dist/md/ic_class_twotone.js b/dist/md/ic_class_twotone.js new file mode 100644 index 000000000..97272932d --- /dev/null +++ b/dist/md/ic_class_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_class_twotone = void 0; +var ic_class_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 13l-3-2.25L7 13V4H6v16h12V4h-5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM9 4h2v5l-1-.75L9 9V4zm9 16H6V4h1v9l3-2.25L13 13V4h5v16z" + }, + "children": [] + }] +}; +exports.ic_class_twotone = ic_class_twotone; \ No newline at end of file diff --git a/dist/md/ic_clean_hands.js b/dist/md/ic_clean_hands.js new file mode 100644 index 000000000..176d7735a --- /dev/null +++ b/dist/md/ic_clean_hands.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_clean_hands = void 0; +var ic_clean_hands = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16.99,5l0.63,1.37L18.99,7l-1.37,0.63L16.99,9l-0.63-1.37L14.99,7l1.37-0.63L16.99,5 M11,6.13V4h2 c0.57,0,1.1,0.17,1.55,0.45l1.43-1.43C15.15,2.39,14.13,2,13,2c-1.48,0-5.5,0-5.5,0v2H9v2.14C7.23,6.51,5.81,7.8,5.26,9.5h3.98 L15,11.65v-0.62C15,8.61,13.28,6.59,11,6.13z M1,22h4V11H1V22z M20,17h-7l-2.09-0.73l0.33-0.94L13,16h2.82 c0.65,0,1.18-0.53,1.18-1.18l0,0c0-0.49-0.31-0.93-0.77-1.11L8.97,11H7v9.02L14,22l8-3l0,0C21.99,17.9,21.11,17,20,17z M20,14 c1.1,0,2-0.9,2-2c0-1.1-2-4-2-4s-2,2.9-2,4C18,13.1,18.9,14,20,14z" + }, + "children": [] + }] +}; +exports.ic_clean_hands = ic_clean_hands; \ No newline at end of file diff --git a/dist/md/ic_clean_hands_outline.js b/dist/md/ic_clean_hands_outline.js new file mode 100644 index 000000000..3a86f30f5 --- /dev/null +++ b/dist/md/ic_clean_hands_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_clean_hands_outline = void 0; +var ic_clean_hands_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16.99,5l0.63,1.37L18.99,7l-1.37,0.63L16.99,9l-0.63-1.37L14.99,7l1.37-0.63L16.99,5 M20,14c1.1,0,2-0.9,2-2c0-1.1-2-4-2-4 s-2,2.9-2,4C18,13.1,18.9,14,20,14z M11,6.1V4h2c0.57,0,1.1,0.17,1.55,0.45l1.43-1.43C15.15,2.39,14.13,2,13,2c-1.47,0-5.44,0-5.5,0 v2H9v2.11C7.22,6.48,5.8,7.79,5.25,9.5h2.16C7.94,8.61,8.89,8,10,8c1.62,0,2.94,1.29,2.99,2.9L15,11.65V11 C15,8.58,13.28,6.56,11,6.1z M22,19v1l-8,2.5l-7-1.94V22H1V11h7.97l6.16,2.3C16.25,13.72,17,14.8,17,16h2C20.66,16,22,17.34,22,19z M5,20v-7H3v7H5z M19.9,18.57c-0.16-0.33-0.51-0.56-0.9-0.56h-5.35c-0.54,0-1.07-0.09-1.58-0.26l-2.38-0.79l0.63-1.9l2.38,0.79 C13.01,15.95,15,16,15,16c0-0.37-0.23-0.7-0.57-0.83L8.61,13H7v5.48l6.97,1.93L19.9,18.57z" + }, + "children": [] + }] +}; +exports.ic_clean_hands_outline = ic_clean_hands_outline; \ No newline at end of file diff --git a/dist/md/ic_clean_hands_twotone.js b/dist/md/ic_clean_hands_twotone.js new file mode 100644 index 000000000..61bd8e20c --- /dev/null +++ b/dist/md/ic_clean_hands_twotone.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_clean_hands_twotone = void 0; +var ic_clean_hands_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9.24,9.5H7.42C7.94,8.61,8.89,8,10,8c1.62,0,2.94,1.29,2.99,2.9L9.24,9.5z M5,20v-7H3v7H5z M19.9,18.57 c-0.16-0.33-0.51-0.56-0.9-0.56h-5.35c-0.54,0-1.07-0.09-1.58-0.26l-2.38-0.79l0.63-1.9l2.38,0.79C13.01,15.95,15,16,15,16 c0-0.37-0.23-0.7-0.57-0.83L8.61,13H7v5.48l6.97,1.93L19.9,18.57z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16.99,5l0.63,1.37L18.99,7l-1.37,0.63L16.99,9l-0.63-1.37L14.99,7l1.37-0.63L16.99,5 M20,14c1.1,0,2-0.9,2-2c0-1.1-2-4-2-4 s-2,2.9-2,4C18,13.1,18.9,14,20,14z M11,6.1V4h2c0.57,0,1.1,0.17,1.55,0.45l1.43-1.43C15.15,2.39,14.13,2,13,2c-1.47,0-5.44,0-5.5,0 v2H9v2.11C7.22,6.48,5.8,7.79,5.25,9.5h2.16C7.94,8.61,8.89,8,10,8c1.62,0,2.94,1.29,2.99,2.9L15,11.65V11 C15,8.58,13.28,6.56,11,6.1z M22,19v1l-8,2.5l-7-1.94V22H1V11h7.97l6.16,2.3C16.25,13.72,17,14.8,17,16h2C20.66,16,22,17.34,22,19z M5,20v-7H3v7H5z M19.9,18.57c-0.16-0.33-0.51-0.56-0.9-0.56h-5.35c-0.54,0-1.07-0.09-1.58-0.26l-2.38-0.79l0.63-1.9l2.38,0.79 C13.01,15.95,15,16,15,16c0-0.37-0.23-0.7-0.57-0.83L8.61,13H7v5.48l6.97,1.93L19.9,18.57z" + }, + "children": [] + }] +}; +exports.ic_clean_hands_twotone = ic_clean_hands_twotone; \ No newline at end of file diff --git a/dist/md/ic_cleaning_services.js b/dist/md/ic_cleaning_services.js new file mode 100644 index 000000000..9b4b40a0c --- /dev/null +++ b/dist/md/ic_cleaning_services.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_cleaning_services = void 0; +var ic_cleaning_services = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M16,11h-1V3c0-1.1-0.9-2-2-2h-2C9.9,1,9,1.9,9,3v8H8c-2.76,0-5,2.24-5,5v7h18v-7C21,13.24,18.76,11,16,11z M19,21h-2v-3 c0-0.55-0.45-1-1-1s-1,0.45-1,1v3h-2v-3c0-0.55-0.45-1-1-1s-1,0.45-1,1v3H9v-3c0-0.55-0.45-1-1-1s-1,0.45-1,1v3H5v-5 c0-1.65,1.35-3,3-3h8c1.65,0,3,1.35,3,3V21z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M16,11h-1V3c0-1.1-0.9-2-2-2h-2C9.9,1,9,1.9,9,3v8H8c-2.76,0-5,2.24-5,5v7h18v-7C21,13.24,18.76,11,16,11z M19,21h-2v-3 c0-0.55-0.45-1-1-1s-1,0.45-1,1v3h-2v-3c0-0.55-0.45-1-1-1s-1,0.45-1,1v3H9v-3c0-0.55-0.45-1-1-1s-1,0.45-1,1v3H5v-5 c0-1.65,1.35-3,3-3h8c1.65,0,3,1.35,3,3V21z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_cleaning_services = ic_cleaning_services; \ No newline at end of file diff --git a/dist/md/ic_cleaning_services_outline.js b/dist/md/ic_cleaning_services_outline.js new file mode 100644 index 000000000..b6ade641d --- /dev/null +++ b/dist/md/ic_cleaning_services_outline.js @@ -0,0 +1,55 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_cleaning_services_outline = void 0; +var ic_cleaning_services_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M16,11h-1V3c0-1.1-0.9-2-2-2h-2C9.9,1,9,1.9,9,3v8H8c-2.76,0-5,2.24-5,5v7h18v-7C21,13.24,18.76,11,16,11z M11,3h2v8h-2V3 z M19,21h-2v-3c0-0.55-0.45-1-1-1s-1,0.45-1,1v3h-2v-3c0-0.55-0.45-1-1-1s-1,0.45-1,1v3H9v-3c0-0.55-0.45-1-1-1s-1,0.45-1,1v3H5 v-5c0-1.65,1.35-3,3-3h8c1.65,0,3,1.35,3,3V21z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M16,11h-1V3c0-1.1-0.9-2-2-2h-2C9.9,1,9,1.9,9,3v8H8c-2.76,0-5,2.24-5,5v7h18v-7C21,13.24,18.76,11,16,11z M11,3h2v8h-2V3 z M19,21h-2v-3c0-0.55-0.45-1-1-1s-1,0.45-1,1v3h-2v-3c0-0.55-0.45-1-1-1s-1,0.45-1,1v3H9v-3c0-0.55-0.45-1-1-1s-1,0.45-1,1v3H5 v-5c0-1.65,1.35-3,3-3h8c1.65,0,3,1.35,3,3V21z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_cleaning_services_outline = ic_cleaning_services_outline; \ No newline at end of file diff --git a/dist/md/ic_cleaning_services_twotone.js b/dist/md/ic_cleaning_services_twotone.js new file mode 100644 index 000000000..163854161 --- /dev/null +++ b/dist/md/ic_cleaning_services_twotone.js @@ -0,0 +1,89 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_cleaning_services_twotone = void 0; +var ic_cleaning_services_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "height": "8", + "opacity": ".3", + "width": "2", + "x": "11", + "y": "3" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "8", + "opacity": ".3", + "width": "2", + "x": "11", + "y": "3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M16,13H8c-1.65,0-3,1.35-3,3v5h2v-3c0-0.55,0.45-1,1-1s1,0.45,1,1v3h2v-3c0-0.55,0.45-1,1-1s1,0.45,1,1v3h2 v-3c0-0.55,0.45-1,1-1s1,0.45,1,1v3h2v-5C19,14.35,17.65,13,16,13z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M16,13H8c-1.65,0-3,1.35-3,3v5h2v-3c0-0.55,0.45-1,1-1s1,0.45,1,1v3h2v-3c0-0.55,0.45-1,1-1s1,0.45,1,1v3h2 v-3c0-0.55,0.45-1,1-1s1,0.45,1,1v3h2v-5C19,14.35,17.65,13,16,13z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M16,11h-1V3c0-1.1-0.9-2-2-2h-2C9.9,1,9,1.9,9,3v8H8c-2.76,0-5,2.24-5,5v7h18v-7C21,13.24,18.76,11,16,11z M11,3h2v8h-2V3 z M19,21h-2v-3c0-0.55-0.45-1-1-1s-1,0.45-1,1v3h-2v-3c0-0.55-0.45-1-1-1s-1,0.45-1,1v3H9v-3c0-0.55-0.45-1-1-1s-1,0.45-1,1v3H5 v-5c0-1.65,1.35-3,3-3h8c1.65,0,3,1.35,3,3V21z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M16,11h-1V3c0-1.1-0.9-2-2-2h-2C9.9,1,9,1.9,9,3v8H8c-2.76,0-5,2.24-5,5v7h18v-7C21,13.24,18.76,11,16,11z M11,3h2v8h-2V3 z M19,21h-2v-3c0-0.55-0.45-1-1-1s-1,0.45-1,1v3h-2v-3c0-0.55-0.45-1-1-1s-1,0.45-1,1v3H9v-3c0-0.55-0.45-1-1-1s-1,0.45-1,1v3H5 v-5c0-1.65,1.35-3,3-3h8c1.65,0,3,1.35,3,3V21z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_cleaning_services_twotone = ic_cleaning_services_twotone; \ No newline at end of file diff --git a/dist/md/ic_clear.js b/dist/md/ic_clear.js new file mode 100644 index 000000000..26fec5b2c --- /dev/null +++ b/dist/md/ic_clear.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_clear = void 0; +var ic_clear = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z" + }, + "children": [] + }] +}; +exports.ic_clear = ic_clear; \ No newline at end of file diff --git a/dist/md/ic_clear_all.js b/dist/md/ic_clear_all.js new file mode 100644 index 000000000..d1b87317d --- /dev/null +++ b/dist/md/ic_clear_all.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_clear_all = void 0; +var ic_clear_all = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 13h14v-2H5v2zm-2 4h14v-2H3v2zM7 7v2h14V7H7z" + }, + "children": [] + }] +}; +exports.ic_clear_all = ic_clear_all; \ No newline at end of file diff --git a/dist/md/ic_clear_all_outline.js b/dist/md/ic_clear_all_outline.js new file mode 100644 index 000000000..63f260dc3 --- /dev/null +++ b/dist/md/ic_clear_all_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_clear_all_outline = void 0; +var ic_clear_all_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 13h14v-2H5v2zm-2 4h14v-2H3v2zM7 7v2h14V7H7z" + }, + "children": [] + }] +}; +exports.ic_clear_all_outline = ic_clear_all_outline; \ No newline at end of file diff --git a/dist/md/ic_clear_all_twotone.js b/dist/md/ic_clear_all_twotone.js new file mode 100644 index 000000000..058b2a64b --- /dev/null +++ b/dist/md/ic_clear_all_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_clear_all_twotone = void 0; +var ic_clear_all_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 11h14v2H5zm-2 4h14v2H3zm4-8h14v2H7z" + }, + "children": [] + }] +}; +exports.ic_clear_all_twotone = ic_clear_all_twotone; \ No newline at end of file diff --git a/dist/md/ic_clear_outline.js b/dist/md/ic_clear_outline.js new file mode 100644 index 000000000..e39238ff1 --- /dev/null +++ b/dist/md/ic_clear_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_clear_outline = void 0; +var ic_clear_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z" + }, + "children": [] + }] +}; +exports.ic_clear_outline = ic_clear_outline; \ No newline at end of file diff --git a/dist/md/ic_clear_twotone.js b/dist/md/ic_clear_twotone.js new file mode 100644 index 000000000..36837f3c0 --- /dev/null +++ b/dist/md/ic_clear_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_clear_twotone = void 0; +var ic_clear_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z" + }, + "children": [] + }] +}; +exports.ic_clear_twotone = ic_clear_twotone; \ No newline at end of file diff --git a/dist/md/ic_close.js b/dist/md/ic_close.js new file mode 100644 index 000000000..92c73ebe9 --- /dev/null +++ b/dist/md/ic_close.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_close = void 0; +var ic_close = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z" + }, + "children": [] + }] +}; +exports.ic_close = ic_close; \ No newline at end of file diff --git a/dist/md/ic_close_fullscreen.js b/dist/md/ic_close_fullscreen.js new file mode 100644 index 000000000..e2064933e --- /dev/null +++ b/dist/md/ic_close_fullscreen.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_close_fullscreen = void 0; +var ic_close_fullscreen = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22,3.41l-5.29,5.29L20,12h-8V4l3.29,3.29L20.59,2L22,3.41z M3.41,22l5.29-5.29L12,20v-8H4l3.29,3.29L2,20.59L3.41,22z" + }, + "children": [] + }] +}; +exports.ic_close_fullscreen = ic_close_fullscreen; \ No newline at end of file diff --git a/dist/md/ic_close_fullscreen_outline.js b/dist/md/ic_close_fullscreen_outline.js new file mode 100644 index 000000000..861426482 --- /dev/null +++ b/dist/md/ic_close_fullscreen_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_close_fullscreen_outline = void 0; +var ic_close_fullscreen_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22,3.41l-5.29,5.29L20,12h-8V4l3.29,3.29L20.59,2L22,3.41z M3.41,22l5.29-5.29L12,20v-8H4l3.29,3.29L2,20.59L3.41,22z" + }, + "children": [] + }] +}; +exports.ic_close_fullscreen_outline = ic_close_fullscreen_outline; \ No newline at end of file diff --git a/dist/md/ic_close_fullscreen_twotone.js b/dist/md/ic_close_fullscreen_twotone.js new file mode 100644 index 000000000..2166996e3 --- /dev/null +++ b/dist/md/ic_close_fullscreen_twotone.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_close_fullscreen_twotone = void 0; +var ic_close_fullscreen_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22,3.41l-5.29,5.29L20,12h-8V4l3.29,3.29L20.59,2L22,3.41z M3.41,22l5.29-5.29L12,20v-8H4l3.29,3.29L2,20.59L3.41,22z" + }, + "children": [] + }] +}; +exports.ic_close_fullscreen_twotone = ic_close_fullscreen_twotone; \ No newline at end of file diff --git a/dist/md/ic_close_outline.js b/dist/md/ic_close_outline.js new file mode 100644 index 000000000..4f40e3f94 --- /dev/null +++ b/dist/md/ic_close_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_close_outline = void 0; +var ic_close_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z" + }, + "children": [] + }] +}; +exports.ic_close_outline = ic_close_outline; \ No newline at end of file diff --git a/dist/md/ic_close_twotone.js b/dist/md/ic_close_twotone.js new file mode 100644 index 000000000..1ec9f6739 --- /dev/null +++ b/dist/md/ic_close_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_close_twotone = void 0; +var ic_close_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z" + }, + "children": [] + }] +}; +exports.ic_close_twotone = ic_close_twotone; \ No newline at end of file diff --git a/dist/md/ic_closed_caption.js b/dist/md/ic_closed_caption.js new file mode 100644 index 000000000..f8cbc6cff --- /dev/null +++ b/dist/md/ic_closed_caption.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_closed_caption = void 0; +var ic_closed_caption = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-8 7H9.5v-.5h-2v3h2V13H11v1c0 .55-.45 1-1 1H7c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v1zm7 0h-1.5v-.5h-2v3h2V13H18v1c0 .55-.45 1-1 1h-3c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v1z" + }, + "children": [] + }] +}; +exports.ic_closed_caption = ic_closed_caption; \ No newline at end of file diff --git a/dist/md/ic_closed_caption_disabled.js b/dist/md/ic_closed_caption_disabled.js new file mode 100644 index 000000000..d30f94592 --- /dev/null +++ b/dist/md/ic_closed_caption_disabled.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_closed_caption_disabled = void 0; +var ic_closed_caption_disabled = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6.83,4H19c1.1,0,2,0.9,2,2v12c0,0.05-0.01,0.1-0.02,0.16l-3.38-3.38C17.84,14.59,18,14.32,18,14v-1h-1.5v0.5h-0.17 l-1.83-1.83V10.5h2V11H18v-1c0-0.55-0.45-1-1-1h-3c-0.55,0-1,0.45-1,1v0.17L6.83,4z M19.78,22.61L17.17,20H5c-1.11,0-2-0.9-2-2V6 c0-0.05,0.02-0.1,0.02-0.15L1.39,4.22l1.41-1.41l18.38,18.38L19.78,22.61z M11,13.83L10.17,13H9.5v0.5h-2v-3h0.17L6.4,9.22 C6.16,9.41,6,9.68,6,10v4c0,0.55,0.45,1,1,1h3c0.55,0,1-0.45,1-1V13.83z" + }, + "children": [] + }] +}; +exports.ic_closed_caption_disabled = ic_closed_caption_disabled; \ No newline at end of file diff --git a/dist/md/ic_closed_caption_disabled_outline.js b/dist/md/ic_closed_caption_disabled_outline.js new file mode 100644 index 000000000..f61469f45 --- /dev/null +++ b/dist/md/ic_closed_caption_disabled_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_closed_caption_disabled_outline = void 0; +var ic_closed_caption_disabled_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13,10c0-0.55,0.45-1,1-1h3c0.55,0,1,0.45,1,1v1h-1.5v-0.5h-2v1L13,10z M16.5,13.5l1.21,1.21C17.89,14.52,18,14.27,18,14v-1 h-1.5V13.5z M8.83,6H19v10.17l1.98,1.98c0-0.05,0.02-0.1,0.02-0.16V6c0-1.1-0.9-2-2-2H6.83L8.83,6z M19.78,22.61L17.17,20H5 c-1.11,0-2-0.9-2-2V6c0-0.05,0.02-0.1,0.02-0.15L1.39,4.22l1.41-1.41l18.38,18.38L19.78,22.61z M7.5,13.5h2V13h0.67l-2.5-2.5H7.5 V13.5z M15.17,18L11,13.83V14c0,0.55-0.45,1-1,1H7c-0.55,0-1-0.45-1-1v-4c0-0.32,0.16-0.59,0.4-0.78L5,7.83V18H15.17z" + }, + "children": [] + }] +}; +exports.ic_closed_caption_disabled_outline = ic_closed_caption_disabled_outline; \ No newline at end of file diff --git a/dist/md/ic_closed_caption_disabled_twotone.js b/dist/md/ic_closed_caption_disabled_twotone.js new file mode 100644 index 000000000..a6c59c3f2 --- /dev/null +++ b/dist/md/ic_closed_caption_disabled_twotone.js @@ -0,0 +1,33 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_closed_caption_disabled_twotone = void 0; +var ic_closed_caption_disabled_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8.83,6H19v10.17l-1.4-1.4C17.84,14.59,18,14.32,18,14v-1h-1.5v0.5h-0.17 l-1.83-1.83V10.5h2V11H18v-1c0-0.55-0.45-1-1-1h-3c-0.55,0-1,0.45-1,1v0.17L8.83,6z M7.5,13.5h2V13h0.67l-2.5-2.5H7.5V13.5z M11,14 c0,0.55-0.45,1-1,1H7c-0.55,0-1-0.45-1-1v-4c0-0.32,0.16-0.59,0.4-0.78L5,7.83V18h10.17L11,13.83V14z", + "enable-background": "new", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6.83,4H19c1.1,0,2,0.9,2,2v12c0,0.05-0.01,0.1-0.02,0.16L19,16.17V6H8.83L6.83,4z M19.78,22.61L17.17,20H5 c-1.11,0-2-0.9-2-2V6c0-0.05,0.02-0.1,0.02-0.15L1.39,4.22l1.41-1.41L18,18l1.82,1.82l1.37,1.37L19.78,22.61z M7.5,13.5h2V13h0.67 l-2.5-2.5H7.5V13.5z M15.17,18L11,13.83V14c0,0.55-0.45,1-1,1H7c-0.55,0-1-0.45-1-1v-4c0-0.32,0.16-0.59,0.4-0.78L5,7.83V18H15.17z M18,14v-1h-1.5v0.5h-0.17l1.28,1.28C17.84,14.59,18,14.32,18,14z M14.5,11.67V10.5h2V11H18v-1c0-0.55-0.45-1-1-1h-3 c-0.55,0-1,0.45-1,1v0.17L14.5,11.67z" + }, + "children": [] + }] +}; +exports.ic_closed_caption_disabled_twotone = ic_closed_caption_disabled_twotone; \ No newline at end of file diff --git a/dist/md/ic_closed_caption_off.js b/dist/md/ic_closed_caption_off.js new file mode 100644 index 000000000..1062f239a --- /dev/null +++ b/dist/md/ic_closed_caption_off.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_closed_caption_off = void 0; +var ic_closed_caption_off = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.5 5.5v13h-15v-13h15zM19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-8 7H9.5v-.5h-2v3h2V13H11v1c0 .55-.45 1-1 1H7c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v1zm7 0h-1.5v-.5h-2v3h2V13H18v1c0 .55-.45 1-1 1h-3c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v1z" + }, + "children": [] + }] +}; +exports.ic_closed_caption_off = ic_closed_caption_off; \ No newline at end of file diff --git a/dist/md/ic_closed_caption_outline.js b/dist/md/ic_closed_caption_outline.js new file mode 100644 index 000000000..986532a51 --- /dev/null +++ b/dist/md/ic_closed_caption_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_closed_caption_outline = void 0; +var ic_closed_caption_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H5V6h14v12zM7 15h3c.55 0 1-.45 1-1v-1H9.5v.5h-2v-3h2v.5H11v-1c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm7 0h3c.55 0 1-.45 1-1v-1h-1.5v.5h-2v-3h2v.5H18v-1c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1z" + }, + "children": [] + }] +}; +exports.ic_closed_caption_outline = ic_closed_caption_outline; \ No newline at end of file diff --git a/dist/md/ic_closed_caption_twotone.js b/dist/md/ic_closed_caption_twotone.js new file mode 100644 index 000000000..62e23632c --- /dev/null +++ b/dist/md/ic_closed_caption_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_closed_caption_twotone = void 0; +var ic_closed_caption_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 6H5v12h14V6zm-8 5H9.5v-.5h-2v3h2V13H11v1c0 .55-.45 1-1 1H7c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v1zm7 0h-1.5v-.5h-2v3h2V13H18v1c0 .55-.45 1-1 1h-3c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v1z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 20h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2zM5 6h14v12H5V6zm5 3H7c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h3c.55 0 1-.45 1-1v-1H9.5v.5h-2v-3h2v.5H11v-1c0-.55-.45-1-1-1zm7 0h-3c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h3c.55 0 1-.45 1-1v-1h-1.5v.5h-2v-3h2v.5H18v-1c0-.55-.45-1-1-1z" + }, + "children": [] + }] +}; +exports.ic_closed_caption_twotone = ic_closed_caption_twotone; \ No newline at end of file diff --git a/dist/md/ic_cloud.js b/dist/md/ic_cloud.js new file mode 100644 index 000000000..1d5d8ed02 --- /dev/null +++ b/dist/md/ic_cloud.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_cloud = void 0; +var ic_cloud = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96z" + }, + "children": [] + }] +}; +exports.ic_cloud = ic_cloud; \ No newline at end of file diff --git a/dist/md/ic_cloud_circle.js b/dist/md/ic_cloud_circle.js new file mode 100644 index 000000000..ebf5ca458 --- /dev/null +++ b/dist/md/ic_cloud_circle.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_cloud_circle = void 0; +var ic_cloud_circle = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm4.5 14H8c-1.66 0-3-1.34-3-3s1.34-3 3-3l.14.01C8.58 8.28 10.13 7 12 7c2.21 0 4 1.79 4 4h.5c1.38 0 2.5 1.12 2.5 2.5S17.88 16 16.5 16z" + }, + "children": [] + }] +}; +exports.ic_cloud_circle = ic_cloud_circle; \ No newline at end of file diff --git a/dist/md/ic_cloud_circle_outline.js b/dist/md/ic_cloud_circle_outline.js new file mode 100644 index 000000000..c49f5f0e5 --- /dev/null +++ b/dist/md/ic_cloud_circle_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_cloud_circle_outline = void 0; +var ic_cloud_circle_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm4.29-9.81c-.4-2.01-2.16-3.52-4.29-3.52-1.69 0-3.15.96-3.88 2.36C6.36 9.21 5 10.7 5 12.5 5 14.43 6.57 16 8.5 16h7.58c1.61 0 2.92-1.31 2.92-2.92 0-1.54-1.2-2.79-2.71-2.89zM16 14H8.5c-.83 0-1.5-.67-1.5-1.5S7.67 11 8.5 11h.9l.49-1.05c.41-.79 1.22-1.28 2.11-1.28 1.13 0 2.11.8 2.33 1.91l.28 1.42H16c.55 0 1 .45 1 1s-.45 1-1 1z" + }, + "children": [] + }] +}; +exports.ic_cloud_circle_outline = ic_cloud_circle_outline; \ No newline at end of file diff --git a/dist/md/ic_cloud_circle_twotone.js b/dist/md/ic_cloud_circle_twotone.js new file mode 100644 index 000000000..3b7784990 --- /dev/null +++ b/dist/md/ic_cloud_circle_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_cloud_circle_twotone = void 0; +var ic_cloud_circle_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm4.08 12H8.5C6.57 16 5 14.43 5 12.5c0-1.8 1.36-3.29 3.12-3.48.73-1.4 2.19-2.36 3.88-2.36 2.12 0 3.89 1.51 4.29 3.52 1.52.1 2.71 1.35 2.71 2.89 0 1.62-1.31 2.93-2.92 2.93z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm4.29-9.81c-.4-2.01-2.16-3.52-4.29-3.52-1.69 0-3.15.96-3.88 2.36C6.36 9.21 5 10.7 5 12.5 5 14.43 6.57 16 8.5 16h7.58c1.61 0 2.92-1.31 2.92-2.92 0-1.54-1.2-2.79-2.71-2.89zM16 14H8.5c-.83 0-1.5-.67-1.5-1.5S7.67 11 8.5 11h.9l.49-1.05c.41-.79 1.22-1.28 2.11-1.28 1.13 0 2.11.8 2.33 1.91l.28 1.42H16c.55 0 1 .45 1 1s-.45 1-1 1z" + }, + "children": [] + }] +}; +exports.ic_cloud_circle_twotone = ic_cloud_circle_twotone; \ No newline at end of file diff --git a/dist/md/ic_cloud_done.js b/dist/md/ic_cloud_done.js new file mode 100644 index 000000000..6764c2284 --- /dev/null +++ b/dist/md/ic_cloud_done.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_cloud_done = void 0; +var ic_cloud_done = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM10 17l-3.5-3.5 1.41-1.41L10 14.17 15.18 9l1.41 1.41L10 17z" + }, + "children": [] + }] +}; +exports.ic_cloud_done = ic_cloud_done; \ No newline at end of file diff --git a/dist/md/ic_cloud_done_outline.js b/dist/md/ic_cloud_done_outline.js new file mode 100644 index 000000000..c7c47f229 --- /dev/null +++ b/dist/md/ic_cloud_done_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_cloud_done_outline = void 0; +var ic_cloud_done_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.94 6 12 6c2.62 0 4.88 1.86 5.39 4.43l.3 1.5 1.53.11c1.56.1 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3zm-9-3.82l-2.09-2.09L6.5 13.5 10 17l6.01-6.01-1.41-1.41z" + }, + "children": [] + }] +}; +exports.ic_cloud_done_outline = ic_cloud_done_outline; \ No newline at end of file diff --git a/dist/md/ic_cloud_done_twotone.js b/dist/md/ic_cloud_done_twotone.js new file mode 100644 index 000000000..a01ac82f1 --- /dev/null +++ b/dist/md/ic_cloud_done_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_cloud_done_twotone = void 0; +var ic_cloud_done_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.21 12.04l-1.53-.11-.3-1.5C16.88 7.86 14.62 6 12 6 9.94 6 8.08 7.14 7.12 8.96l-.5.95-1.07.11C3.53 10.24 2 11.95 2 14c0 2.21 1.79 4 4 4h13c1.65 0 3-1.35 3-3 0-1.55-1.22-2.86-2.79-2.96zM10 17l-3.5-3.5 1.41-1.41L10 14.18l4.6-4.6 1.41 1.41L10 17z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.94 6 12 6c2.62 0 4.88 1.86 5.39 4.43l.3 1.5 1.53.11c1.56.1 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3zm-9-3.82l-2.09-2.09L6.5 13.5 10 17l6.01-6.01-1.41-1.41z" + }, + "children": [] + }] +}; +exports.ic_cloud_done_twotone = ic_cloud_done_twotone; \ No newline at end of file diff --git a/dist/md/ic_cloud_download.js b/dist/md/ic_cloud_download.js new file mode 100644 index 000000000..422b1757e --- /dev/null +++ b/dist/md/ic_cloud_download.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_cloud_download = void 0; +var ic_cloud_download = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM17 13l-5 5-5-5h3V9h4v4h3z" + }, + "children": [] + }] +}; +exports.ic_cloud_download = ic_cloud_download; \ No newline at end of file diff --git a/dist/md/ic_cloud_download_outline.js b/dist/md/ic_cloud_download_outline.js new file mode 100644 index 000000000..5ae8f1b05 --- /dev/null +++ b/dist/md/ic_cloud_download_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_cloud_download_outline = void 0; +var ic_cloud_download_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.94 6 12 6c2.62 0 4.88 1.86 5.39 4.43l.3 1.5 1.53.11c1.56.1 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3zm-5.55-8h-2.9v3H8l4 4 4-4h-2.55z" + }, + "children": [] + }] +}; +exports.ic_cloud_download_outline = ic_cloud_download_outline; \ No newline at end of file diff --git a/dist/md/ic_cloud_download_twotone.js b/dist/md/ic_cloud_download_twotone.js new file mode 100644 index 000000000..2dad8d35a --- /dev/null +++ b/dist/md/ic_cloud_download_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_cloud_download_twotone = void 0; +var ic_cloud_download_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.21 12.04l-1.53-.11-.3-1.5C16.88 7.86 14.62 6 12 6 9.94 6 8.08 7.14 7.12 8.96l-.5.95-1.07.11C3.53 10.24 2 11.95 2 14c0 2.21 1.79 4 4 4h13c1.65 0 3-1.35 3-3 0-1.55-1.22-2.86-2.79-2.96zM12 17l-4-4h2.55v-3h2.91v3H16l-4 4z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.94 6 12 6c2.62 0 4.88 1.86 5.39 4.43l.3 1.5 1.53.11c1.56.1 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3zm-5.55-8h-2.9v3H8l4 4 4-4h-2.55z" + }, + "children": [] + }] +}; +exports.ic_cloud_download_twotone = ic_cloud_download_twotone; \ No newline at end of file diff --git a/dist/md/ic_cloud_off.js b/dist/md/ic_cloud_off.js new file mode 100644 index 000000000..5b1dabdac --- /dev/null +++ b/dist/md/ic_cloud_off.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_cloud_off = void 0; +var ic_cloud_off = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.35 10.04C18.67 6.59 15.64 4 12 4c-1.48 0-2.85.43-4.01 1.17l1.46 1.46C10.21 6.23 11.08 6 12 6c3.04 0 5.5 2.46 5.5 5.5v.5H19c1.66 0 3 1.34 3 3 0 1.13-.64 2.11-1.56 2.62l1.45 1.45C23.16 18.16 24 16.68 24 15c0-2.64-2.05-4.78-4.65-4.96zM3 5.27l2.75 2.74C2.56 8.15 0 10.77 0 14c0 3.31 2.69 6 6 6h11.73l2 2L21 20.73 4.27 4 3 5.27zM7.73 10l8 8H6c-2.21 0-4-1.79-4-4s1.79-4 4-4h1.73z" + }, + "children": [] + }] +}; +exports.ic_cloud_off = ic_cloud_off; \ No newline at end of file diff --git a/dist/md/ic_cloud_off_outline.js b/dist/md/ic_cloud_off_outline.js new file mode 100644 index 000000000..d3c8f1650 --- /dev/null +++ b/dist/md/ic_cloud_off_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_cloud_off_outline = void 0; +var ic_cloud_off_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M24 15c0-2.64-2.05-4.78-4.65-4.96C18.67 6.59 15.64 4 12 4c-1.33 0-2.57.36-3.65.97l1.49 1.49C10.51 6.17 11.23 6 12 6c3.04 0 5.5 2.46 5.5 5.5v.5H19c1.66 0 3 1.34 3 3 0 .99-.48 1.85-1.21 2.4l1.41 1.41c1.09-.92 1.8-2.27 1.8-3.81zM4.41 3.86L3 5.27l2.77 2.77h-.42C2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h11.73l2 2 1.41-1.41L4.41 3.86zM6 18c-2.21 0-4-1.79-4-4s1.79-4 4-4h1.73l8 8H6z" + }, + "children": [] + }] +}; +exports.ic_cloud_off_outline = ic_cloud_off_outline; \ No newline at end of file diff --git a/dist/md/ic_cloud_off_twotone.js b/dist/md/ic_cloud_off_twotone.js new file mode 100644 index 000000000..bd9b312e1 --- /dev/null +++ b/dist/md/ic_cloud_off_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_cloud_off_twotone = void 0; +var ic_cloud_off_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 15c0-1.66-1.34-3-3-3h-1.5v-.5C17.5 8.46 15.04 6 12 6c-.77 0-1.49.17-2.16.46L20.79 17.4c.73-.55 1.21-1.41 1.21-2.4zM2 14c0 2.21 1.79 4 4 4h9.73l-8-8H6c-2.21 0-4 1.79-4 4z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.35 10.04C18.67 6.59 15.64 4 12 4c-1.33 0-2.57.36-3.65.97l1.49 1.49C10.51 6.17 11.23 6 12 6c3.04 0 5.5 2.46 5.5 5.5v.5H19c1.66 0 3 1.34 3 3 0 .99-.48 1.85-1.21 2.4l1.41 1.41c1.09-.92 1.8-2.27 1.8-3.81 0-2.64-2.05-4.78-4.65-4.96zM3 5.27l2.77 2.77h-.42C2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h11.73l2 2 1.41-1.41L4.41 3.86 3 5.27zM7.73 10l8 8H6c-2.21 0-4-1.79-4-4s1.79-4 4-4h1.73z" + }, + "children": [] + }] +}; +exports.ic_cloud_off_twotone = ic_cloud_off_twotone; \ No newline at end of file diff --git a/dist/md/ic_cloud_outline.js b/dist/md/ic_cloud_outline.js new file mode 100644 index 000000000..f03635a01 --- /dev/null +++ b/dist/md/ic_cloud_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_cloud_outline = void 0; +var ic_cloud_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 6c2.62 0 4.88 1.86 5.39 4.43l.3 1.5 1.53.11c1.56.1 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3H6c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.94 6 12 6m0-2C9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96C18.67 6.59 15.64 4 12 4z" + }, + "children": [] + }] +}; +exports.ic_cloud_outline = ic_cloud_outline; \ No newline at end of file diff --git a/dist/md/ic_cloud_queue.js b/dist/md/ic_cloud_queue.js new file mode 100644 index 000000000..f12859968 --- /dev/null +++ b/dist/md/ic_cloud_queue.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_cloud_queue = void 0; +var ic_cloud_queue = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4s1.79-4 4-4h.71C7.37 7.69 9.48 6 12 6c3.04 0 5.5 2.46 5.5 5.5v.5H19c1.66 0 3 1.34 3 3s-1.34 3-3 3z" + }, + "children": [] + }] +}; +exports.ic_cloud_queue = ic_cloud_queue; \ No newline at end of file diff --git a/dist/md/ic_cloud_queue_outline.js b/dist/md/ic_cloud_queue_outline.js new file mode 100644 index 000000000..b0257e197 --- /dev/null +++ b/dist/md/ic_cloud_queue_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_cloud_queue_outline = void 0; +var ic_cloud_queue_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4s1.79-4 4-4h.71C7.37 7.69 9.48 6 12 6c3.04 0 5.5 2.46 5.5 5.5v.5H19c1.66 0 3 1.34 3 3s-1.34 3-3 3z" + }, + "children": [] + }] +}; +exports.ic_cloud_queue_outline = ic_cloud_queue_outline; \ No newline at end of file diff --git a/dist/md/ic_cloud_queue_twotone.js b/dist/md/ic_cloud_queue_twotone.js new file mode 100644 index 000000000..36db5a75a --- /dev/null +++ b/dist/md/ic_cloud_queue_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_cloud_queue_twotone = void 0; +var ic_cloud_queue_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 12h-1.5v-.5C17.5 8.46 15.04 6 12 6c-2.52 0-4.63 1.69-5.29 4H6c-2.21 0-4 1.79-4 4s1.79 4 4 4h13c1.66 0 3-1.34 3-3s-1.34-3-3-3z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4s1.79-4 4-4h.71C7.37 7.69 9.48 6 12 6c3.04 0 5.5 2.46 5.5 5.5v.5H19c1.66 0 3 1.34 3 3s-1.34 3-3 3z" + }, + "children": [] + }] +}; +exports.ic_cloud_queue_twotone = ic_cloud_queue_twotone; \ No newline at end of file diff --git a/dist/md/ic_cloud_twotone.js b/dist/md/ic_cloud_twotone.js new file mode 100644 index 000000000..7e5314c0f --- /dev/null +++ b/dist/md/ic_cloud_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_cloud_twotone = void 0; +var ic_cloud_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.21 12.04l-1.53-.11-.3-1.5C16.88 7.86 14.62 6 12 6 9.94 6 8.08 7.14 7.12 8.96l-.5.95-1.07.11C3.53 10.24 2 11.95 2 14c0 2.21 1.79 4 4 4h13c1.65 0 3-1.35 3-3 0-1.55-1.22-2.86-2.79-2.96z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.94 6 12 6c2.62 0 4.88 1.86 5.39 4.43l.3 1.5 1.53.11c1.56.1 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3z" + }, + "children": [] + }] +}; +exports.ic_cloud_twotone = ic_cloud_twotone; \ No newline at end of file diff --git a/dist/md/ic_cloud_upload.js b/dist/md/ic_cloud_upload.js new file mode 100644 index 000000000..b481fc2f0 --- /dev/null +++ b/dist/md/ic_cloud_upload.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_cloud_upload = void 0; +var ic_cloud_upload = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM14 13v4h-4v-4H7l5-5 5 5h-3z" + }, + "children": [] + }] +}; +exports.ic_cloud_upload = ic_cloud_upload; \ No newline at end of file diff --git a/dist/md/ic_cloud_upload_outline.js b/dist/md/ic_cloud_upload_outline.js new file mode 100644 index 000000000..d0ad2ccd3 --- /dev/null +++ b/dist/md/ic_cloud_upload_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_cloud_upload_outline = void 0; +var ic_cloud_upload_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.94 6 12 6c2.62 0 4.88 1.86 5.39 4.43l.3 1.5 1.53.11c1.56.1 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3zM8 13h2.55v3h2.9v-3H16l-4-4z" + }, + "children": [] + }] +}; +exports.ic_cloud_upload_outline = ic_cloud_upload_outline; \ No newline at end of file diff --git a/dist/md/ic_cloud_upload_twotone.js b/dist/md/ic_cloud_upload_twotone.js new file mode 100644 index 000000000..9d8df74f2 --- /dev/null +++ b/dist/md/ic_cloud_upload_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_cloud_upload_twotone = void 0; +var ic_cloud_upload_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.21 12.04l-1.53-.11-.3-1.5C16.88 7.86 14.62 6 12 6 9.94 6 8.08 7.14 7.12 8.96l-.5.95-1.07.11C3.53 10.24 2 11.95 2 14c0 2.21 1.79 4 4 4h13c1.65 0 3-1.35 3-3 0-1.55-1.22-2.86-2.79-2.96zm-5.76.96v3h-2.91v-3H8l4-4 4 4h-2.55z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.94 6 12 6c2.62 0 4.88 1.86 5.39 4.43l.3 1.5 1.53.11c1.56.1 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3zM8 13h2.55v3h2.9v-3H16l-4-4z" + }, + "children": [] + }] +}; +exports.ic_cloud_upload_twotone = ic_cloud_upload_twotone; \ No newline at end of file diff --git a/dist/md/ic_code.js b/dist/md/ic_code.js new file mode 100644 index 000000000..1a02849b1 --- /dev/null +++ b/dist/md/ic_code.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_code = void 0; +var ic_code = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9.4 16.6L4.8 12l4.6-4.6L8 6l-6 6 6 6 1.4-1.4zm5.2 0l4.6-4.6-4.6-4.6L16 6l6 6-6 6-1.4-1.4z" + }, + "children": [] + }] +}; +exports.ic_code = ic_code; \ No newline at end of file diff --git a/dist/md/ic_code_outline.js b/dist/md/ic_code_outline.js new file mode 100644 index 000000000..121144d76 --- /dev/null +++ b/dist/md/ic_code_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_code_outline = void 0; +var ic_code_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9.4 16.6L4.8 12l4.6-4.6L8 6l-6 6 6 6 1.4-1.4zm5.2 0l4.6-4.6-4.6-4.6L16 6l6 6-6 6-1.4-1.4z" + }, + "children": [] + }] +}; +exports.ic_code_outline = ic_code_outline; \ No newline at end of file diff --git a/dist/md/ic_code_twotone.js b/dist/md/ic_code_twotone.js new file mode 100644 index 000000000..4a2856aa2 --- /dev/null +++ b/dist/md/ic_code_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_code_twotone = void 0; +var ic_code_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9.4 16.6L4.8 12l4.6-4.6L8 6l-6 6 6 6 1.4-1.4zm5.2 0l4.6-4.6-4.6-4.6L16 6l6 6-6 6-1.4-1.4z" + }, + "children": [] + }] +}; +exports.ic_code_twotone = ic_code_twotone; \ No newline at end of file diff --git a/dist/md/ic_collections.js b/dist/md/ic_collections.js new file mode 100644 index 000000000..9147b67f5 --- /dev/null +++ b/dist/md/ic_collections.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_collections = void 0; +var ic_collections = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 16V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2zm-11-4l2.03 2.71L16 11l4 5H8l3-4zM2 6v14c0 1.1.9 2 2 2h14v-2H4V6H2z" + }, + "children": [] + }] +}; +exports.ic_collections = ic_collections; \ No newline at end of file diff --git a/dist/md/ic_collections_bookmark.js b/dist/md/ic_collections_bookmark.js new file mode 100644 index 000000000..7a7aef5d9 --- /dev/null +++ b/dist/md/ic_collections_bookmark.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_collections_bookmark = void 0; +var ic_collections_bookmark = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 10l-2.5-1.5L15 12V4h5v8z" + }, + "children": [] + }] +}; +exports.ic_collections_bookmark = ic_collections_bookmark; \ No newline at end of file diff --git a/dist/md/ic_collections_bookmark_outline.js b/dist/md/ic_collections_bookmark_outline.js new file mode 100644 index 000000000..a197f8239 --- /dev/null +++ b/dist/md/ic_collections_bookmark_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_collections_bookmark_outline = void 0; +var ic_collections_bookmark_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-3 2v5l-1-.75L15 9V4h2zm3 12H8V4h5v9l3-2.25L19 13V4h1v12z" + }, + "children": [] + }] +}; +exports.ic_collections_bookmark_outline = ic_collections_bookmark_outline; \ No newline at end of file diff --git a/dist/md/ic_collections_bookmark_twotone.js b/dist/md/ic_collections_bookmark_twotone.js new file mode 100644 index 000000000..d129ba3ad --- /dev/null +++ b/dist/md/ic_collections_bookmark_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_collections_bookmark_twotone = void 0; +var ic_collections_bookmark_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 4h-1v9l-3-2.25L13 13V4H8v12h12z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 22h14v-2H4V6H2v14c0 1.1.9 2 2 2zm18-6V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2zM15 4h2v5l-1-.75L15 9V4zM8 4h5v9l3-2.25L19 13V4h1v12H8V4z" + }, + "children": [] + }] +}; +exports.ic_collections_bookmark_twotone = ic_collections_bookmark_twotone; \ No newline at end of file diff --git a/dist/md/ic_collections_outline.js b/dist/md/ic_collections_outline.js new file mode 100644 index 000000000..57a73eb35 --- /dev/null +++ b/dist/md/ic_collections_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_collections_outline = void 0; +var ic_collections_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 4v12H8V4h12m0-2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-8.5 9.67l1.69 2.26 2.48-3.1L19 15H9zM2 6v14c0 1.1.9 2 2 2h14v-2H4V6H2z" + }, + "children": [] + }] +}; +exports.ic_collections_outline = ic_collections_outline; \ No newline at end of file diff --git a/dist/md/ic_collections_twotone.js b/dist/md/ic_collections_twotone.js new file mode 100644 index 000000000..5955980d3 --- /dev/null +++ b/dist/md/ic_collections_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_collections_twotone = void 0; +var ic_collections_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8 16h12V4H8v12zm3.5-4.33l1.69 2.26 2.48-3.09L19 15H9l2.5-3.33z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8 2c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H8zm12 14H8V4h12v12zm-4.33-5.17l-2.48 3.09-1.69-2.25L9 15h10zM4 22h14v-2H4V6H2v14c0 1.1.9 2 2 2z" + }, + "children": [] + }] +}; +exports.ic_collections_twotone = ic_collections_twotone; \ No newline at end of file diff --git a/dist/md/ic_color_lens.js b/dist/md/ic_color_lens.js new file mode 100644 index 000000000..61dfd5e70 --- /dev/null +++ b/dist/md/ic_color_lens.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_color_lens = void 0; +var ic_color_lens = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 3c-4.97 0-9 4.03-9 9s4.03 9 9 9c.83 0 1.5-.67 1.5-1.5 0-.39-.15-.74-.39-1.01-.23-.26-.38-.61-.38-.99 0-.83.67-1.5 1.5-1.5H16c2.76 0 5-2.24 5-5 0-4.42-4.03-8-9-8zm-5.5 9c-.83 0-1.5-.67-1.5-1.5S5.67 9 6.5 9 8 9.67 8 10.5 7.33 12 6.5 12zm3-4C8.67 8 8 7.33 8 6.5S8.67 5 9.5 5s1.5.67 1.5 1.5S10.33 8 9.5 8zm5 0c-.83 0-1.5-.67-1.5-1.5S13.67 5 14.5 5s1.5.67 1.5 1.5S15.33 8 14.5 8zm3 4c-.83 0-1.5-.67-1.5-1.5S16.67 9 17.5 9s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" + }, + "children": [] + }] +}; +exports.ic_color_lens = ic_color_lens; \ No newline at end of file diff --git a/dist/md/ic_color_lens_outline.js b/dist/md/ic_color_lens_outline.js new file mode 100644 index 000000000..0740879ba --- /dev/null +++ b/dist/md/ic_color_lens_outline.js @@ -0,0 +1,56 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_color_lens_outline = void 0; +var ic_color_lens_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 22C6.49 22 2 17.51 2 12S6.49 2 12 2s10 4.04 10 9c0 3.31-2.69 6-6 6h-1.77c-.28 0-.5.22-.5.5 0 .12.05.23.13.33.41.47.64 1.06.64 1.67 0 1.38-1.12 2.5-2.5 2.5zm0-18c-4.41 0-8 3.59-8 8s3.59 8 8 8c.28 0 .5-.22.5-.5 0-.16-.08-.28-.14-.35-.41-.46-.63-1.05-.63-1.65 0-1.38 1.12-2.5 2.5-2.5H16c2.21 0 4-1.79 4-4 0-3.86-3.59-7-8-7z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "6.5", + "cy": "11.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "9.5", + "cy": "7.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "14.5", + "cy": "7.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "17.5", + "cy": "11.5", + "r": "1.5" + }, + "children": [] + }] +}; +exports.ic_color_lens_outline = ic_color_lens_outline; \ No newline at end of file diff --git a/dist/md/ic_color_lens_twotone.js b/dist/md/ic_color_lens_twotone.js new file mode 100644 index 000000000..501091d1a --- /dev/null +++ b/dist/md/ic_color_lens_twotone.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_color_lens_twotone = void 0; +var ic_color_lens_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8c.28 0 .5-.22.5-.5 0-.16-.08-.28-.14-.35-.41-.46-.63-1.05-.63-1.65 0-1.38 1.12-2.5 2.5-2.5H16c2.21 0 4-1.79 4-4 0-3.86-3.59-7-8-7zm-5.5 9c-.83 0-1.5-.67-1.5-1.5S5.67 10 6.5 10s1.5.67 1.5 1.5S7.33 13 6.5 13zm3-4C8.67 9 8 8.33 8 7.5S8.67 6 9.5 6s1.5.67 1.5 1.5S10.33 9 9.5 9zm5 0c-.83 0-1.5-.67-1.5-1.5S13.67 6 14.5 6s1.5.67 1.5 1.5S15.33 9 14.5 9zm4.5 2.5c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10c1.38 0 2.5-1.12 2.5-2.5 0-.61-.23-1.21-.64-1.67-.08-.09-.13-.21-.13-.33 0-.28.22-.5.5-.5H16c3.31 0 6-2.69 6-6 0-4.96-4.49-9-10-9zm4 13h-1.77c-1.38 0-2.5 1.12-2.5 2.5 0 .61.22 1.19.63 1.65.06.07.14.19.14.35 0 .28-.22.5-.5.5-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.14 8 7c0 2.21-1.79 4-4 4z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "6.5", + "cy": "11.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "9.5", + "cy": "7.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "14.5", + "cy": "7.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "17.5", + "cy": "11.5", + "r": "1.5" + }, + "children": [] + }] +}; +exports.ic_color_lens_twotone = ic_color_lens_twotone; \ No newline at end of file diff --git a/dist/md/ic_colorize.js b/dist/md/ic_colorize.js new file mode 100644 index 000000000..1d9ab59d4 --- /dev/null +++ b/dist/md/ic_colorize.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_colorize = void 0; +var ic_colorize = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20.71 5.63l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-3.12 3.12-1.93-1.91-1.41 1.41 1.42 1.42L3 16.25V21h4.75l8.92-8.92 1.42 1.42 1.41-1.41-1.92-1.92 3.12-3.12c.4-.4.4-1.03.01-1.42zM6.92 19L5 17.08l8.06-8.06 1.92 1.92L6.92 19z" + }, + "children": [] + }] +}; +exports.ic_colorize = ic_colorize; \ No newline at end of file diff --git a/dist/md/ic_colorize_outline.js b/dist/md/ic_colorize_outline.js new file mode 100644 index 000000000..5581d7b5c --- /dev/null +++ b/dist/md/ic_colorize_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_colorize_outline = void 0; +var ic_colorize_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17.66 5.41l.92.92-2.69 2.69-.92-.92 2.69-2.69M17.67 3c-.26 0-.51.1-.71.29l-3.12 3.12-1.93-1.91-1.41 1.41 1.42 1.42L3 16.25V21h4.75l8.92-8.92 1.42 1.42 1.41-1.41-1.92-1.92 3.12-3.12c.4-.4.4-1.03.01-1.42l-2.34-2.34c-.2-.19-.45-.29-.7-.29zM6.92 19L5 17.08l8.06-8.06 1.92 1.92L6.92 19z" + }, + "children": [] + }] +}; +exports.ic_colorize_outline = ic_colorize_outline; \ No newline at end of file diff --git a/dist/md/ic_colorize_twotone.js b/dist/md/ic_colorize_twotone.js new file mode 100644 index 000000000..b2826a39f --- /dev/null +++ b/dist/md/ic_colorize_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_colorize_twotone = void 0; +var ic_colorize_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.896 9.023l-.92-.92L17.67 5.41l.92.92z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20.71 5.63l-2.34-2.34c-.2-.2-.45-.29-.71-.29s-.51.1-.7.29l-3.12 3.12-1.93-1.91-1.41 1.41 1.42 1.42L3 16.25V21h4.75l8.92-8.92 1.42 1.42 1.41-1.41-1.92-1.92 3.12-3.12c.4-.4.4-1.03.01-1.42zM6.92 19L5 17.08l8.06-8.06 1.92 1.92L6.92 19zm8.98-9.97l-.93-.93 2.69-2.69.92.92-2.68 2.7z" + }, + "children": [] + }] +}; +exports.ic_colorize_twotone = ic_colorize_twotone; \ No newline at end of file diff --git a/dist/md/ic_comment.js b/dist/md/ic_comment.js new file mode 100644 index 000000000..c85a932f9 --- /dev/null +++ b/dist/md/ic_comment.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_comment = void 0; +var ic_comment = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21.99 4c0-1.1-.89-2-1.99-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4-.01-18zM18 14H6v-2h12v2zm0-3H6V9h12v2zm0-3H6V6h12v2z" + }, + "children": [] + }] +}; +exports.ic_comment = ic_comment; \ No newline at end of file diff --git a/dist/md/ic_comment_bank.js b/dist/md/ic_comment_bank.js new file mode 100644 index 000000000..06d878a3d --- /dev/null +++ b/dist/md/ic_comment_bank.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_comment_bank = void 0; +var ic_comment_bank = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,2H4C2.9,2,2,2.9,2,4v18l4-4h14c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M19,13l-2.5-1.5L14,13V5h5V13z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,2H4C2.9,2,2,2.9,2,4v18l4-4h14c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M19,13l-2.5-1.5L14,13V5h5V13z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_comment_bank = ic_comment_bank; \ No newline at end of file diff --git a/dist/md/ic_comment_bank_outline.js b/dist/md/ic_comment_bank_outline.js new file mode 100644 index 000000000..4c48c4a73 --- /dev/null +++ b/dist/md/ic_comment_bank_outline.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_comment_bank_outline = void 0; +var ic_comment_bank_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "18,14 18,6 13,6 13,14 15.5,12.5" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "18,14 18,6 13,6 13,14 15.5,12.5" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20,2H4C2.9,2,2,2.9,2,4v18l4-4h14c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M20,16H6l-2,2V4h16V16z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,2H4C2.9,2,2,2.9,2,4v18l4-4h14c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M20,16H6l-2,2V4h16V16z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_comment_bank_outline = ic_comment_bank_outline; \ No newline at end of file diff --git a/dist/md/ic_comment_bank_twotone.js b/dist/md/ic_comment_bank_twotone.js new file mode 100644 index 000000000..9918fc030 --- /dev/null +++ b/dist/md/ic_comment_bank_twotone.js @@ -0,0 +1,81 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_comment_bank_twotone = void 0; +var ic_comment_bank_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M4,18l2-2h14V4H4V18z M13,6h5v8l-2.5-1.5L13,14V6z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M4,18l2-2h14V4H4V18z M13,6h5v8l-2.5-1.5L13,14V6z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "18,14 18,6 13,6 13,14 15.5,12.5" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "18,14 18,6 13,6 13,14 15.5,12.5" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20,2H4C2.9,2,2,2.9,2,4v18l4-4h14c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M20,16H6l-2,2V4h16V16z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,2H4C2.9,2,2,2.9,2,4v18l4-4h14c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M20,16H6l-2,2V4h16V16z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_comment_bank_twotone = ic_comment_bank_twotone; \ No newline at end of file diff --git a/dist/md/ic_comment_outline.js b/dist/md/ic_comment_outline.js new file mode 100644 index 000000000..f00567935 --- /dev/null +++ b/dist/md/ic_comment_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_comment_outline = void 0; +var ic_comment_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21.99 4c0-1.1-.89-2-1.99-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4-.01-18zM20 4v13.17L18.83 16H4V4h16zM6 12h12v2H6zm0-3h12v2H6zm0-3h12v2H6z" + }, + "children": [] + }] +}; +exports.ic_comment_outline = ic_comment_outline; \ No newline at end of file diff --git a/dist/md/ic_comment_twotone.js b/dist/md/ic_comment_twotone.js new file mode 100644 index 000000000..7a964ccf0 --- /dev/null +++ b/dist/md/ic_comment_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_comment_twotone = void 0; +var ic_comment_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 17.17V4H4v12h14.83L20 17.17zM18 14H6v-2h12v2zm0-3H6V9h12v2zm0-3H6V6h12v2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 18h14l4 4-.01-18c0-1.1-.89-2-1.99-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2zM4 4h16v13.17L18.83 16H4V4zm2 8h12v2H6zm0-3h12v2H6zm0-3h12v2H6z" + }, + "children": [] + }] +}; +exports.ic_comment_twotone = ic_comment_twotone; \ No newline at end of file diff --git a/dist/md/ic_commute.js b/dist/md/ic_commute.js new file mode 100644 index 000000000..4d9415389 --- /dev/null +++ b/dist/md/ic_commute.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_commute = void 0; +var ic_commute = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4H5C3.34 4 2 5.34 2 7v8c0 1.66 1.34 3 3 3l-1 1v1h1l2-2.03L9 18v-5H4V5.98L13 6v2h2V7c0-1.66-1.34-3-3-3zM5 14c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm15.57-4.34c-.14-.4-.52-.66-.97-.66h-7.19c-.46 0-.83.26-.98.66L10 13.77l.01 5.51c0 .38.31.72.69.72h.62c.38 0 .68-.38.68-.76V18h8v1.24c0 .38.31.76.69.76h.61c.38 0 .69-.34.69-.72l.01-1.37v-4.14l-1.43-4.11zm-8.16.34h7.19l1.03 3h-9.25l1.03-3zM12 16c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm8 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" + }, + "children": [] + }] +}; +exports.ic_commute = ic_commute; \ No newline at end of file diff --git a/dist/md/ic_commute_outline.js b/dist/md/ic_commute_outline.js new file mode 100644 index 000000000..1c9f0f784 --- /dev/null +++ b/dist/md/ic_commute_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_commute_outline = void 0; +var ic_commute_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4H5C3.34 4 2 5.34 2 7v8c0 1.66 1.34 3 3 3l-1 1v1h1l2-2h2v-5H4V6h9v2h2V7c0-1.66-1.34-3-3-3zM5 14c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm15.57-4.34c-.14-.4-.52-.66-.97-.66h-7.19c-.46 0-.83.26-.98.66l-1.42 4.11v5.51c0 .38.31.72.69.72h.62c.38 0 .68-.38.68-.76V18h8v1.24c0 .38.31.76.69.76h.61c.38 0 .69-.34.69-.72l.01-1.37v-4.14l-1.43-4.11zm-8.16.34h7.19l1.03 3h-9.25l1.03-3zM12 16c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm8 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" + }, + "children": [] + }] +}; +exports.ic_commute_outline = ic_commute_outline; \ No newline at end of file diff --git a/dist/md/ic_commute_twotone.js b/dist/md/ic_commute_twotone.js new file mode 100644 index 000000000..a0d8d5a45 --- /dev/null +++ b/dist/md/ic_commute_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_commute_twotone = void 0; +var ic_commute_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4H5C3.34 4 2 5.34 2 7v8c0 1.66 1.34 3 3 3l-1 1v1h1l2-2h2v-5H4V6h9v2h2V7c0-1.66-1.34-3-3-3zM5 14c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm15.57-4.34c-.14-.4-.52-.66-.97-.66h-7.19c-.46 0-.83.26-.98.66l-1.42 4.11v5.51c0 .38.31.72.69.72h.62c.38 0 .68-.38.68-.76V18h8v1.24c0 .38.31.76.69.76h.61c.38 0 .69-.34.69-.72l.01-1.37v-4.14l-1.43-4.11zm-8.16.34h7.19l1.03 3h-9.25l1.03-3zM12 16c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm8 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" + }, + "children": [] + }] +}; +exports.ic_commute_twotone = ic_commute_twotone; \ No newline at end of file diff --git a/dist/md/ic_compare.js b/dist/md/ic_compare.js new file mode 100644 index 000000000..e23b067a4 --- /dev/null +++ b/dist/md/ic_compare.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_compare = void 0; +var ic_compare = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h5v2h2V1h-2v2zm0 15H5l5-6v6zm9-15h-5v2h5v13l-5-6v9h5c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_compare = ic_compare; \ No newline at end of file diff --git a/dist/md/ic_compare_arrows.js b/dist/md/ic_compare_arrows.js new file mode 100644 index 000000000..bed37413f --- /dev/null +++ b/dist/md/ic_compare_arrows.js @@ -0,0 +1,65 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_compare_arrows = void 0; +var ic_compare_arrows = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M9.01,14H2v2h7.01v3L13,15l-3.99-4V14z M14.99,13v-3H22V8h-7.01V5L11,9L14.99,13z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M9.01,14H2v2h7.01v3L13,15l-3.99-4V14z M14.99,13v-3H22V8h-7.01V5L11,9L14.99,13z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_compare_arrows = ic_compare_arrows; \ No newline at end of file diff --git a/dist/md/ic_compare_arrows_outline.js b/dist/md/ic_compare_arrows_outline.js new file mode 100644 index 000000000..83f4ba6bd --- /dev/null +++ b/dist/md/ic_compare_arrows_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_compare_arrows_outline = void 0; +var ic_compare_arrows_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9.01 14H2v2h7.01v3L13 15l-3.99-4v3zm5.98-1v-3H22V8h-7.01V5L11 9l3.99 4z" + }, + "children": [] + }] +}; +exports.ic_compare_arrows_outline = ic_compare_arrows_outline; \ No newline at end of file diff --git a/dist/md/ic_compare_arrows_twotone.js b/dist/md/ic_compare_arrows_twotone.js new file mode 100644 index 000000000..335b09113 --- /dev/null +++ b/dist/md/ic_compare_arrows_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_compare_arrows_twotone = void 0; +var ic_compare_arrows_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9.01 14H2v2h7.01v3L13 15l-3.99-4v3zm5.98-1v-3H22V8h-7.01V5L11 9l3.99 4z" + }, + "children": [] + }] +}; +exports.ic_compare_arrows_twotone = ic_compare_arrows_twotone; \ No newline at end of file diff --git a/dist/md/ic_compare_outline.js b/dist/md/ic_compare_outline.js new file mode 100644 index 000000000..20c511b26 --- /dev/null +++ b/dist/md/ic_compare_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_compare_outline = void 0; +var ic_compare_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h5v2h2V1h-2v2zm0 15H5l5-6v6zm9-15h-5v2h5v13l-5-6v9h5c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_compare_outline = ic_compare_outline; \ No newline at end of file diff --git a/dist/md/ic_compare_twotone.js b/dist/md/ic_compare_twotone.js new file mode 100644 index 000000000..6fe280619 --- /dev/null +++ b/dist/md/ic_compare_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_compare_twotone = void 0; +var ic_compare_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 5h-5v7l5 6zm-9 13v-6l-5 6z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3h-5v2h5v13l-5-6v9h5c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-2h-2v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h5v2h2V1zm-2 17H5l5-6v6z" + }, + "children": [] + }] +}; +exports.ic_compare_twotone = ic_compare_twotone; \ No newline at end of file diff --git a/dist/md/ic_compass_calibration.js b/dist/md/ic_compass_calibration.js new file mode 100644 index 000000000..5a5ce328d --- /dev/null +++ b/dist/md/ic_compass_calibration.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_compass_calibration = void 0; +var ic_compass_calibration = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "17", + "r": "4" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 10.07c1.95 0 3.72.79 5 2.07l5-5C19.44 4.59 15.9 3 12 3S4.56 4.59 2 7.15l5 5c1.28-1.28 3.05-2.08 5-2.08z" + }, + "children": [] + }] +}; +exports.ic_compass_calibration = ic_compass_calibration; \ No newline at end of file diff --git a/dist/md/ic_compass_calibration_outline.js b/dist/md/ic_compass_calibration_outline.js new file mode 100644 index 000000000..fc2a7bf53 --- /dev/null +++ b/dist/md/ic_compass_calibration_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_compass_calibration_outline = void 0; +var ic_compass_calibration_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 12c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3zm0-17C8.1 3 4.56 4.59 2 7.15l5 5c1.28-1.28 3.05-2.08 5-2.08s3.72.79 5 2.07l5-5C19.44 4.59 15.9 3 12 3zm4.84 6.47c-1.44-.91-3.1-1.4-4.84-1.4-1.74 0-3.41.49-4.85 1.41L4.94 7.26C6.99 5.79 9.44 5 12 5c2.56 0 5 .79 7.05 2.26l-2.21 2.21z" + }, + "children": [] + }] +}; +exports.ic_compass_calibration_outline = ic_compass_calibration_outline; \ No newline at end of file diff --git a/dist/md/ic_compass_calibration_twotone.js b/dist/md/ic_compass_calibration_twotone.js new file mode 100644 index 000000000..2e59acffd --- /dev/null +++ b/dist/md/ic_compass_calibration_twotone.js @@ -0,0 +1,40 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_compass_calibration_twotone = void 0; +var ic_compass_calibration_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4.94 7.26l2.21 2.21c1.44-.91 3.11-1.4 4.85-1.4 1.74 0 3.41.49 4.84 1.4l2.21-2.21C17 5.79 14.56 5 12 5c-2.56 0-5.01.79-7.06 2.26z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "17", + "opacity": ".3", + "r": "3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 17c0-2.76-2.24-5-5-5s-5 2.24-5 5 2.24 5 5 5 5-2.24 5-5zm-8 0c0-1.65 1.35-3 3-3s3 1.35 3 3-1.35 3-3 3-3-1.35-3-3zM2 7.15l5 5c1.28-1.28 3.05-2.08 5-2.08s3.72.79 5 2.07l5-5C19.44 4.59 15.9 3 12 3 8.1 3 4.56 4.59 2 7.15zm14.84 2.32c-1.44-.91-3.1-1.4-4.84-1.4-1.74 0-3.41.49-4.85 1.41L4.94 7.26C6.99 5.79 9.44 5 12 5c2.56 0 5 .79 7.05 2.26l-2.21 2.21z" + }, + "children": [] + }] +}; +exports.ic_compass_calibration_twotone = ic_compass_calibration_twotone; \ No newline at end of file diff --git a/dist/md/ic_compress.js b/dist/md/ic_compress.js new file mode 100644 index 000000000..fa624c81c --- /dev/null +++ b/dist/md/ic_compress.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_compress = void 0; +var ic_compress = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8 19h3v3h2v-3h3l-4-4-4 4zm8-15h-3V1h-2v3H8l4 4 4-4zM4 9v2h16V9H4z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 12h16v2H4z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }] +}; +exports.ic_compress = ic_compress; \ No newline at end of file diff --git a/dist/md/ic_computer.js b/dist/md/ic_computer.js new file mode 100644 index 000000000..0a8b0f44c --- /dev/null +++ b/dist/md/ic_computer.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_computer = void 0; +var ic_computer = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 18c1.1 0 1.99-.9 1.99-2L22 6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2H0v2h24v-2h-4zM4 6h16v10H4V6z" + }, + "children": [] + }] +}; +exports.ic_computer = ic_computer; \ No newline at end of file diff --git a/dist/md/ic_computer_outline.js b/dist/md/ic_computer_outline.js new file mode 100644 index 000000000..57a917768 --- /dev/null +++ b/dist/md/ic_computer_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_computer_outline = void 0; +var ic_computer_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 18c1.1 0 1.99-.9 1.99-2L22 6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2H0v2h24v-2h-4zM4 6h16v10H4V6z" + }, + "children": [] + }] +}; +exports.ic_computer_outline = ic_computer_outline; \ No newline at end of file diff --git a/dist/md/ic_computer_twotone.js b/dist/md/ic_computer_twotone.js new file mode 100644 index 000000000..da405b9ff --- /dev/null +++ b/dist/md/ic_computer_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_computer_twotone = void 0; +var ic_computer_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 6h16v10H4z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 18c1.1 0 1.99-.9 1.99-2L22 6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2H0v2h24v-2h-4zM4 6h16v10H4V6z" + }, + "children": [] + }] +}; +exports.ic_computer_twotone = ic_computer_twotone; \ No newline at end of file diff --git a/dist/md/ic_confirmation_number.js b/dist/md/ic_confirmation_number.js new file mode 100644 index 000000000..35b55bedd --- /dev/null +++ b/dist/md/ic_confirmation_number.js @@ -0,0 +1,65 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_confirmation_number = void 0; +var ic_confirmation_number = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,10V6c0-1.11-0.9-2-2-2H4C2.9,4,2.01,4.89,2.01,6v4C3.11,10,4,10.9,4,12s-0.89,2-2,2v4c0,1.1,0.9,2,2,2h16 c1.1,0,2-0.9,2-2v-4c-1.1,0-2-0.9-2-2S20.9,10,22,10z M13,17.5h-2v-2h2V17.5z M13,13h-2v-2h2V13z M13,8.5h-2v-2h2V8.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,10V6c0-1.11-0.9-2-2-2H4C2.9,4,2.01,4.89,2.01,6v4C3.11,10,4,10.9,4,12s-0.89,2-2,2v4c0,1.1,0.9,2,2,2h16 c1.1,0,2-0.9,2-2v-4c-1.1,0-2-0.9-2-2S20.9,10,22,10z M13,17.5h-2v-2h2V17.5z M13,13h-2v-2h2V13z M13,8.5h-2v-2h2V8.5z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_confirmation_number = ic_confirmation_number; \ No newline at end of file diff --git a/dist/md/ic_confirmation_number_outline.js b/dist/md/ic_confirmation_number_outline.js new file mode 100644 index 000000000..e1ac930d3 --- /dev/null +++ b/dist/md/ic_confirmation_number_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_confirmation_number_outline = void 0; +var ic_confirmation_number_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 10V6c0-1.11-.9-2-2-2H4c-1.1 0-1.99.89-1.99 2v4c1.1 0 1.99.9 1.99 2s-.89 2-2 2v4c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-4c-1.1 0-2-.9-2-2s.9-2 2-2zm-2-1.46c-1.19.69-2 1.99-2 3.46s.81 2.77 2 3.46V18H4v-2.54c1.19-.69 2-1.99 2-3.46 0-1.48-.8-2.77-1.99-3.46L4 6h16v2.54zM11 15h2v2h-2zm0-4h2v2h-2zm0-4h2v2h-2z" + }, + "children": [] + }] +}; +exports.ic_confirmation_number_outline = ic_confirmation_number_outline; \ No newline at end of file diff --git a/dist/md/ic_confirmation_number_twotone.js b/dist/md/ic_confirmation_number_twotone.js new file mode 100644 index 000000000..37d6d78e5 --- /dev/null +++ b/dist/md/ic_confirmation_number_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_confirmation_number_twotone = void 0; +var ic_confirmation_number_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4.01 8.54C5.2 9.23 6 10.52 6 12s-.81 2.77-2 3.46V18h16v-2.54c-1.19-.69-2-1.99-2-3.46s.81-2.77 2-3.46V6H4l.01 2.54zM11 7h2v2h-2V7zm0 4h2v2h-2v-2zm0 4h2v2h-2v-2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 10V6c0-1.11-.9-2-2-2H4c-1.1 0-1.99.89-1.99 2v4c1.1 0 1.99.9 1.99 2s-.89 2-2 2v4c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-4c-1.1 0-2-.9-2-2s.9-2 2-2zm-2-1.46c-1.19.69-2 1.99-2 3.46s.81 2.77 2 3.46V18H4v-2.54c1.19-.69 2-1.99 2-3.46 0-1.48-.8-2.77-1.99-3.46L4 6h16v2.54zM11 15h2v2h-2zm0-4h2v2h-2zm0-4h2v2h-2z" + }, + "children": [] + }] +}; +exports.ic_confirmation_number_twotone = ic_confirmation_number_twotone; \ No newline at end of file diff --git a/dist/md/ic_connect_without_contact.js b/dist/md/ic_connect_without_contact.js new file mode 100644 index 000000000..dff838849 --- /dev/null +++ b/dist/md/ic_connect_without_contact.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_connect_without_contact = void 0; +var ic_connect_without_contact = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11,14H9c0-4.97,4.03-9,9-9v2C14.13,7,11,10.13,11,14z M18,11V9c-2.76,0-5,2.24-5,5h2C15,12.34,16.34,11,18,11z M7,4 c0-1.11-0.89-2-2-2S3,2.89,3,4s0.89,2,2,2S7,5.11,7,4z M11.45,4.5h-2C9.21,5.92,7.99,7,6.5,7h-3C2.67,7,2,7.67,2,8.5V11h6V8.74 C9.86,8.15,11.25,6.51,11.45,4.5z M19,17c1.11,0,2-0.89,2-2s-0.89-2-2-2s-2,0.89-2,2S17.89,17,19,17z M20.5,18h-3 c-1.49,0-2.71-1.08-2.95-2.5h-2c0.2,2.01,1.59,3.65,3.45,4.24V22h6v-2.5C22,18.67,21.33,18,20.5,18z" + }, + "children": [] + }] +}; +exports.ic_connect_without_contact = ic_connect_without_contact; \ No newline at end of file diff --git a/dist/md/ic_connect_without_contact_outline.js b/dist/md/ic_connect_without_contact_outline.js new file mode 100644 index 000000000..d537799a3 --- /dev/null +++ b/dist/md/ic_connect_without_contact_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_connect_without_contact_outline = void 0; +var ic_connect_without_contact_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11,14H9c0-4.97,4.03-9,9-9v2C14.13,7,11,10.13,11,14z M18,11V9c-2.76,0-5,2.24-5,5h2C15,12.34,16.34,11,18,11z M7,4 c0-1.11-0.89-2-2-2S3,2.89,3,4s0.89,2,2,2S7,5.11,7,4z M11.45,4.5h-2C9.21,5.92,7.99,7,6.5,7h-3C2.67,7,2,7.67,2,8.5V11h6V8.74 C9.86,8.15,11.25,6.51,11.45,4.5z M19,17c1.11,0,2-0.89,2-2s-0.89-2-2-2s-2,0.89-2,2S17.89,17,19,17z M20.5,18h-3 c-1.49,0-2.71-1.08-2.95-2.5h-2c0.2,2.01,1.59,3.65,3.45,4.24V22h6v-2.5C22,18.67,21.33,18,20.5,18z" + }, + "children": [] + }] +}; +exports.ic_connect_without_contact_outline = ic_connect_without_contact_outline; \ No newline at end of file diff --git a/dist/md/ic_connect_without_contact_twotone.js b/dist/md/ic_connect_without_contact_twotone.js new file mode 100644 index 000000000..6bd64b48a --- /dev/null +++ b/dist/md/ic_connect_without_contact_twotone.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_connect_without_contact_twotone = void 0; +var ic_connect_without_contact_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11,14H9c0-4.97,4.03-9,9-9v2C14.13,7,11,10.13,11,14z M18,11V9c-2.76,0-5,2.24-5,5h2C15,12.34,16.34,11,18,11z M7,4 c0-1.11-0.89-2-2-2S3,2.89,3,4s0.89,2,2,2S7,5.11,7,4z M11.45,4.5h-2C9.21,5.92,7.99,7,6.5,7h-3C2.67,7,2,7.67,2,8.5V11h6V8.74 C9.86,8.15,11.25,6.51,11.45,4.5z M19,17c1.11,0,2-0.89,2-2s-0.89-2-2-2s-2,0.89-2,2S17.89,17,19,17z M20.5,18h-3 c-1.49,0-2.71-1.08-2.95-2.5h-2c0.2,2.01,1.59,3.65,3.45,4.24V22h6v-2.5C22,18.67,21.33,18,20.5,18z" + }, + "children": [] + }] +}; +exports.ic_connect_without_contact_twotone = ic_connect_without_contact_twotone; \ No newline at end of file diff --git a/dist/md/ic_connected_tv.js b/dist/md/ic_connected_tv.js new file mode 100644 index 000000000..d067830d1 --- /dev/null +++ b/dist/md/ic_connected_tv.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_connected_tv = void 0; +var ic_connected_tv = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.1-.9-2-2-2zm0 14H3V5h18v12zM4 14v2h2c0-1.11-.89-2-2-2zm0-3v1.43c1.97 0 3.57 1.6 3.57 3.57H9c0-2.76-2.24-5-5-5zm0-3v1.45c3.61 0 6.55 2.93 6.55 6.55H12c0-4.42-3.59-8-8-8z" + }, + "children": [] + }] +}; +exports.ic_connected_tv = ic_connected_tv; \ No newline at end of file diff --git a/dist/md/ic_construction.js b/dist/md/ic_construction.js new file mode 100644 index 000000000..4de73537d --- /dev/null +++ b/dist/md/ic_construction.js @@ -0,0 +1,75 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_construction = void 0; +var ic_construction = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "height": "8.48", + "transform": "matrix(0.7071 -0.7071 0.7071 0.7071 -6.8717 17.6255)", + "width": "3", + "x": "16.34", + "y": "12.87" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "8.48", + "transform": "matrix(0.7071 -0.7071 0.7071 0.7071 -6.8717 17.6255)", + "width": "3", + "x": "16.34", + "y": "12.87" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M17.5,10c1.93,0,3.5-1.57,3.5-3.5c0-0.58-0.16-1.12-0.41-1.6l-2.7,2.7L16.4,6.11l2.7-2.7C18.62,3.16,18.08,3,17.5,3 C15.57,3,14,4.57,14,6.5c0,0.41,0.08,0.8,0.21,1.16l-1.85,1.85l-1.78-1.78l0.71-0.71L9.88,5.61L12,3.49 c-1.17-1.17-3.07-1.17-4.24,0L4.22,7.03l1.41,1.41H2.81L2.1,9.15l3.54,3.54l0.71-0.71V9.15l1.41,1.41l0.71-0.71l1.78,1.78 l-7.41,7.41l2.12,2.12L16.34,9.79C16.7,9.92,17.09,10,17.5,10z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17.5,10c1.93,0,3.5-1.57,3.5-3.5c0-0.58-0.16-1.12-0.41-1.6l-2.7,2.7L16.4,6.11l2.7-2.7C18.62,3.16,18.08,3,17.5,3 C15.57,3,14,4.57,14,6.5c0,0.41,0.08,0.8,0.21,1.16l-1.85,1.85l-1.78-1.78l0.71-0.71L9.88,5.61L12,3.49 c-1.17-1.17-3.07-1.17-4.24,0L4.22,7.03l1.41,1.41H2.81L2.1,9.15l3.54,3.54l0.71-0.71V9.15l1.41,1.41l0.71-0.71l1.78,1.78 l-7.41,7.41l2.12,2.12L16.34,9.79C16.7,9.92,17.09,10,17.5,10z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_construction = ic_construction; \ No newline at end of file diff --git a/dist/md/ic_construction_outline.js b/dist/md/ic_construction_outline.js new file mode 100644 index 000000000..e55efdcd5 --- /dev/null +++ b/dist/md/ic_construction_outline.js @@ -0,0 +1,75 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_construction_outline = void 0; +var ic_construction_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "height": "8.48", + "transform": "matrix(0.7071 -0.7071 0.7071 0.7071 -6.8717 17.6255)", + "width": "3", + "x": "16.34", + "y": "12.87" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "8.48", + "transform": "matrix(0.7071 -0.7071 0.7071 0.7071 -6.8717 17.6255)", + "width": "3", + "x": "16.34", + "y": "12.87" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M17.5,10c1.93,0,3.5-1.57,3.5-3.5c0-0.58-0.16-1.12-0.41-1.6l-2.7,2.7L16.4,6.11l2.7-2.7C18.62,3.16,18.08,3,17.5,3 C15.57,3,14,4.57,14,6.5c0,0.41,0.08,0.8,0.21,1.16l-1.85,1.85l-1.78-1.78l0.71-0.71L9.88,5.61L12,3.49 c-1.17-1.17-3.07-1.17-4.24,0L4.22,7.03l1.41,1.41H2.81L2.1,9.15l3.54,3.54l0.71-0.71V9.15l1.41,1.41l0.71-0.71l1.78,1.78 l-7.41,7.41l2.12,2.12L16.34,9.79C16.7,9.92,17.09,10,17.5,10z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17.5,10c1.93,0,3.5-1.57,3.5-3.5c0-0.58-0.16-1.12-0.41-1.6l-2.7,2.7L16.4,6.11l2.7-2.7C18.62,3.16,18.08,3,17.5,3 C15.57,3,14,4.57,14,6.5c0,0.41,0.08,0.8,0.21,1.16l-1.85,1.85l-1.78-1.78l0.71-0.71L9.88,5.61L12,3.49 c-1.17-1.17-3.07-1.17-4.24,0L4.22,7.03l1.41,1.41H2.81L2.1,9.15l3.54,3.54l0.71-0.71V9.15l1.41,1.41l0.71-0.71l1.78,1.78 l-7.41,7.41l2.12,2.12L16.34,9.79C16.7,9.92,17.09,10,17.5,10z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_construction_outline = ic_construction_outline; \ No newline at end of file diff --git a/dist/md/ic_construction_twotone.js b/dist/md/ic_construction_twotone.js new file mode 100644 index 000000000..c558c8594 --- /dev/null +++ b/dist/md/ic_construction_twotone.js @@ -0,0 +1,75 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_construction_twotone = void 0; +var ic_construction_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "height": "8.48", + "transform": "matrix(0.7071 -0.7071 0.7071 0.7071 -6.8717 17.6255)", + "width": "3", + "x": "16.34", + "y": "12.87" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "8.48", + "transform": "matrix(0.7071 -0.7071 0.7071 0.7071 -6.8717 17.6255)", + "width": "3", + "x": "16.34", + "y": "12.87" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M17.5,10c1.93,0,3.5-1.57,3.5-3.5c0-0.58-0.16-1.12-0.41-1.6l-2.7,2.7L16.4,6.11l2.7-2.7C18.62,3.16,18.08,3,17.5,3 C15.57,3,14,4.57,14,6.5c0,0.41,0.08,0.8,0.21,1.16l-1.85,1.85l-1.78-1.78l0.71-0.71L9.88,5.61L12,3.49 c-1.17-1.17-3.07-1.17-4.24,0L4.22,7.03l1.41,1.41H2.81L2.1,9.15l3.54,3.54l0.71-0.71V9.15l1.41,1.41l0.71-0.71l1.78,1.78 l-7.41,7.41l2.12,2.12L16.34,9.79C16.7,9.92,17.09,10,17.5,10z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17.5,10c1.93,0,3.5-1.57,3.5-3.5c0-0.58-0.16-1.12-0.41-1.6l-2.7,2.7L16.4,6.11l2.7-2.7C18.62,3.16,18.08,3,17.5,3 C15.57,3,14,4.57,14,6.5c0,0.41,0.08,0.8,0.21,1.16l-1.85,1.85l-1.78-1.78l0.71-0.71L9.88,5.61L12,3.49 c-1.17-1.17-3.07-1.17-4.24,0L4.22,7.03l1.41,1.41H2.81L2.1,9.15l3.54,3.54l0.71-0.71V9.15l1.41,1.41l0.71-0.71l1.78,1.78 l-7.41,7.41l2.12,2.12L16.34,9.79C16.7,9.92,17.09,10,17.5,10z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_construction_twotone = ic_construction_twotone; \ No newline at end of file diff --git a/dist/md/ic_contact_mail.js b/dist/md/ic_contact_mail.js new file mode 100644 index 000000000..7ed23ea85 --- /dev/null +++ b/dist/md/ic_contact_mail.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_contact_mail = void 0; +var ic_contact_mail = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 8V7l-3 2-3-2v1l3 2 3-2zm1-5H2C.9 3 0 3.9 0 5v14c0 1.1.9 2 2 2h20c1.1 0 1.99-.9 1.99-2L24 5c0-1.1-.9-2-2-2zM8 6c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm6 12H2v-1c0-2 4-3.1 6-3.1s6 1.1 6 3.1v1zm8-6h-8V6h8v6z" + }, + "children": [] + }] +}; +exports.ic_contact_mail = ic_contact_mail; \ No newline at end of file diff --git a/dist/md/ic_contact_mail_outline.js b/dist/md/ic_contact_mail_outline.js new file mode 100644 index 000000000..6649f9f8f --- /dev/null +++ b/dist/md/ic_contact_mail_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_contact_mail_outline = void 0; +var ic_contact_mail_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 3H2C.9 3 0 3.9 0 5v14c0 1.1.9 2 2 2h20c1.1 0 1.99-.9 1.99-2L24 5c0-1.1-.9-2-2-2zm0 16H2V5h20v14zM21 6h-7v5h7V6zm-1 2l-2.5 1.75L15 8V7l2.5 1.75L20 7v1zM9 12c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm6 8.59c0-2.5-3.97-3.58-6-3.58s-6 1.08-6 3.58V18h12v-1.41zM5.48 16c.74-.5 2.22-1 3.52-1s2.77.49 3.52 1H5.48z" + }, + "children": [] + }] +}; +exports.ic_contact_mail_outline = ic_contact_mail_outline; \ No newline at end of file diff --git a/dist/md/ic_contact_mail_twotone.js b/dist/md/ic_contact_mail_twotone.js new file mode 100644 index 000000000..60bf5fca2 --- /dev/null +++ b/dist/md/ic_contact_mail_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_contact_mail_twotone = void 0; +var ic_contact_mail_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M2 19h20V5H2v14zM14 6h7v5h-7V6zM9 6c1.65 0 3 1.35 3 3s-1.35 3-3 3-3-1.35-3-3 1.35-3 3-3zM3 16.59C3 14.08 6.97 13 9 13s6 1.08 6 3.58V18H3v-1.41z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 3H2C.9 3 0 3.9 0 5v14c0 1.1.9 2 2 2h20c1.1 0 1.99-.9 1.99-2L24 5c0-1.1-.9-2-2-2zm0 16H2V5h20v14zM21 6h-7v5h7V6zm-1 2l-2.5 1.75L15 8V7l2.5 1.75L20 7v1zM9 12c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm6 8.59c0-2.5-3.97-3.58-6-3.58s-6 1.08-6 3.58V18h12v-1.41zM5.48 16c.74-.5 2.22-1 3.52-1s2.77.49 3.52 1H5.48z" + }, + "children": [] + }] +}; +exports.ic_contact_mail_twotone = ic_contact_mail_twotone; \ No newline at end of file diff --git a/dist/md/ic_contact_page.js b/dist/md/ic_contact_page.js new file mode 100644 index 000000000..ad1ef58f7 --- /dev/null +++ b/dist/md/ic_contact_page.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_contact_page = void 0; +var ic_contact_page = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8L14,2z M12,10c1.1,0,2,0.9,2,2c0,1.1-0.9,2-2,2s-2-0.9-2-2 C10,10.9,10.9,10,12,10z M16,18H8v-0.57c0-0.81,0.48-1.53,1.22-1.85C10.07,15.21,11.01,15,12,15c0.99,0,1.93,0.21,2.78,0.58 C15.52,15.9,16,16.62,16,17.43V18z" + }, + "children": [] + }] +}; +exports.ic_contact_page = ic_contact_page; \ No newline at end of file diff --git a/dist/md/ic_contact_page_outline.js b/dist/md/ic_contact_page_outline.js new file mode 100644 index 000000000..a7881c47c --- /dev/null +++ b/dist/md/ic_contact_page_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_contact_page_outline = void 0; +var ic_contact_page_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13.17,4L18,8.83V20H6V4H13.17 M14,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8L14,2L14,2z M12,14 c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2s-2,0.9-2,2C10,13.1,10.9,14,12,14z M16,17.43c0-0.81-0.48-1.53-1.22-1.85 C13.93,15.21,12.99,15,12,15c-0.99,0-1.93,0.21-2.78,0.58C8.48,15.9,8,16.62,8,17.43V18h8V17.43z" + }, + "children": [] + }] +}; +exports.ic_contact_page_outline = ic_contact_page_outline; \ No newline at end of file diff --git a/dist/md/ic_contact_page_twotone.js b/dist/md/ic_contact_page_twotone.js new file mode 100644 index 000000000..ffad1cf7c --- /dev/null +++ b/dist/md/ic_contact_page_twotone.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_contact_page_twotone = void 0; +var ic_contact_page_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13.17,4L18,8.83V20H6V4H13.17 M12,14c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2s-2,0.9-2,2C10,13.1,10.9,14,12,14z M16,17.43c0-0.81-0.48-1.53-1.22-1.85C13.93,15.21,12.99,15,12,15c-0.99,0-1.93,0.21-2.78,0.58C8.48,15.9,8,16.62,8,17.43V18h8 V17.43z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13.17,4L18,8.83V20H6V4H13.17 M14,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8L14,2L14,2z M12,14 c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2s-2,0.9-2,2C10,13.1,10.9,14,12,14z M16,17.43c0-0.81-0.48-1.53-1.22-1.85 C13.93,15.21,12.99,15,12,15c-0.99,0-1.93,0.21-2.78,0.58C8.48,15.9,8,16.62,8,17.43V18h8V17.43z" + }, + "children": [] + }] +}; +exports.ic_contact_page_twotone = ic_contact_page_twotone; \ No newline at end of file diff --git a/dist/md/ic_contact_phone.js b/dist/md/ic_contact_phone.js new file mode 100644 index 000000000..45396041d --- /dev/null +++ b/dist/md/ic_contact_phone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_contact_phone = void 0; +var ic_contact_phone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 3H2C.9 3 0 3.9 0 5v14c0 1.1.9 2 2 2h20c1.1 0 1.99-.9 1.99-2L24 5c0-1.1-.9-2-2-2zM8 6c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm6 12H2v-1c0-2 4-3.1 6-3.1s6 1.1 6 3.1v1zm3.85-4h1.64L21 16l-1.99 1.99c-1.31-.98-2.28-2.38-2.73-3.99-.18-.64-.28-1.31-.28-2s.1-1.36.28-2c.45-1.62 1.42-3.01 2.73-3.99L21 8l-1.51 2h-1.64c-.22.63-.35 1.3-.35 2s.13 1.37.35 2z" + }, + "children": [] + }] +}; +exports.ic_contact_phone = ic_contact_phone; \ No newline at end of file diff --git a/dist/md/ic_contact_phone_outline.js b/dist/md/ic_contact_phone_outline.js new file mode 100644 index 000000000..0bd711d65 --- /dev/null +++ b/dist/md/ic_contact_phone_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_contact_phone_outline = void 0; +var ic_contact_phone_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 3H2C.9 3 0 3.9 0 5v14c0 1.1.9 2 2 2h20c1.1 0 1.99-.9 1.99-2L24 5c0-1.1-.9-2-2-2zm0 16H2V5h20v14zm-2.99-1.01L21 16l-1.51-2h-1.64c-.22-.63-.35-1.3-.35-2s.13-1.37.35-2h1.64L21 8l-1.99-1.99c-1.31.98-2.28 2.37-2.73 3.99-.18.64-.28 1.31-.28 2s.1 1.36.28 2c.45 1.61 1.42 3.01 2.73 3.99zM9 12c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm6 8.59c0-2.5-3.97-3.58-6-3.58s-6 1.08-6 3.58V18h12v-1.41zM5.48 16c.74-.5 2.22-1 3.52-1s2.77.49 3.52 1H5.48z" + }, + "children": [] + }] +}; +exports.ic_contact_phone_outline = ic_contact_phone_outline; \ No newline at end of file diff --git a/dist/md/ic_contact_phone_twotone.js b/dist/md/ic_contact_phone_twotone.js new file mode 100644 index 000000000..1d7ee1118 --- /dev/null +++ b/dist/md/ic_contact_phone_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_contact_phone_twotone = void 0; +var ic_contact_phone_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 5H2v14h20V5zM9 6c1.65 0 3 1.35 3 3s-1.35 3-3 3-3-1.35-3-3 1.35-3 3-3zm6 12H3v-1.41C3 14.08 6.97 13 9 13s6 1.08 6 3.58V18zm2.85-4h1.64L21 16l-1.99 1.99c-1.31-.98-2.28-2.38-2.73-3.99-.18-.64-.28-1.31-.28-2s.1-1.36.28-2c.45-1.62 1.42-3.01 2.73-3.99L21 8l-1.51 2h-1.64c-.22.63-.35 1.3-.35 2s.13 1.37.35 2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M2 21h20c1.1 0 1.99-.9 1.99-2L24 5c0-1.1-.9-2-2-2H2C.9 3 0 3.9 0 5v14c0 1.1.9 2 2 2zM2 5h20v14H2V5zm17.49 5L21 8l-1.99-1.99c-1.31.98-2.28 2.37-2.73 3.99-.18.64-.28 1.31-.28 2s.1 1.36.28 2c.45 1.61 1.42 3.01 2.73 3.99L21 16l-1.51-2h-1.64c-.22-.63-.35-1.3-.35-2s.13-1.37.35-2h1.64zM9 12c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm0 5c-2.03 0-6 1.08-6 3.58V18h12v-1.41C15 14.08 11.03 13 9 13zm-3.52 3c.74-.5 2.22-1 3.52-1s2.77.49 3.52 1H5.48z" + }, + "children": [] + }] +}; +exports.ic_contact_phone_twotone = ic_contact_phone_twotone; \ No newline at end of file diff --git a/dist/md/ic_contact_support.js b/dist/md/ic_contact_support.js new file mode 100644 index 000000000..747f9d125 --- /dev/null +++ b/dist/md/ic_contact_support.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_contact_support = void 0; +var ic_contact_support = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.5 2C6.81 2 3 5.81 3 10.5S6.81 19 11.5 19h.5v3c4.86-2.34 8-7 8-11.5C20 5.81 16.19 2 11.5 2zm1 14.5h-2v-2h2v2zm0-3.5h-2c0-3.25 3-3 3-5 0-1.1-.9-2-2-2s-2 .9-2 2h-2c0-2.21 1.79-4 4-4s4 1.79 4 4c0 2.5-3 2.75-3 5z" + }, + "children": [] + }] +}; +exports.ic_contact_support = ic_contact_support; \ No newline at end of file diff --git a/dist/md/ic_contact_support_outline.js b/dist/md/ic_contact_support_outline.js new file mode 100644 index 000000000..2cbfff0f1 --- /dev/null +++ b/dist/md/ic_contact_support_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_contact_support_outline = void 0; +var ic_contact_support_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 23.59v-3.6c-5.01-.26-9-4.42-9-9.49C2 5.26 6.26 1 11.5 1S21 5.26 21 10.5c0 4.95-3.44 9.93-8.57 12.4l-1.43.69zM11.5 3C7.36 3 4 6.36 4 10.5S7.36 18 11.5 18H13v2.3c3.64-2.3 6-6.08 6-9.8C19 6.36 15.64 3 11.5 3zm-1 11.5h2v2h-2zm2-1.5h-2c0-3.25 3-3 3-5 0-1.1-.9-2-2-2s-2 .9-2 2h-2c0-2.21 1.79-4 4-4s4 1.79 4 4c0 2.5-3 2.75-3 5z" + }, + "children": [] + }] +}; +exports.ic_contact_support_outline = ic_contact_support_outline; \ No newline at end of file diff --git a/dist/md/ic_contact_support_twotone.js b/dist/md/ic_contact_support_twotone.js new file mode 100644 index 000000000..1a8d349eb --- /dev/null +++ b/dist/md/ic_contact_support_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_contact_support_twotone = void 0; +var ic_contact_support_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.5 3C7.36 3 4 6.36 4 10.5S7.36 18 11.5 18H13v2.3c3.64-2.3 6-6.08 6-9.8C19 6.36 15.64 3 11.5 3zm1 13.5h-2v-2h2v2zm0-3.5h-2c0-3.25 3-3 3-5 0-1.1-.9-2-2-2s-2 .9-2 2h-2c0-2.21 1.79-4 4-4s4 1.79 4 4c0 2.5-3 2.75-3 5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.5 1C6.26 1 2 5.26 2 10.5c0 5.07 3.99 9.23 9 9.49v3.6l1.43-.69C17.56 20.43 21 15.45 21 10.5 21 5.26 16.74 1 11.5 1zM13 20.3V18h-1.5C7.36 18 4 14.64 4 10.5S7.36 3 11.5 3 19 6.36 19 10.5c0 3.73-2.36 7.51-6 9.8zm-2.5-5.8h2v2h-2zm1-10.5c-2.21 0-4 1.79-4 4h2c0-1.1.9-2 2-2s2 .9 2 2c0 2-3 1.75-3 5h2c0-2.25 3-2.5 3-5 0-2.21-1.79-4-4-4z" + }, + "children": [] + }] +}; +exports.ic_contact_support_twotone = ic_contact_support_twotone; \ No newline at end of file diff --git a/dist/md/ic_contactless.js b/dist/md/ic_contactless.js new file mode 100644 index 000000000..73968e703 --- /dev/null +++ b/dist/md/ic_contactless.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_contactless = void 0; +var ic_contactless = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M8.46,14.45L7.1,13.83 c0.28-0.61,0.41-1.24,0.4-1.86c-0.01-0.63-0.14-1.24-0.4-1.8l1.36-0.63c0.35,0.75,0.53,1.56,0.54,2.4 C9.01,12.8,8.83,13.64,8.46,14.45z M11.53,16.01l-1.3-0.74c0.52-0.92,0.78-1.98,0.78-3.15c0-1.19-0.27-2.33-0.8-3.4l1.34-0.67 c0.64,1.28,0.96,2.65,0.96,4.07C12.51,13.55,12.18,14.86,11.53,16.01z M14.67,17.33l-1.35-0.66c0.78-1.6,1.18-3.18,1.18-4.69 c0-1.51-0.4-3.07-1.18-4.64l1.34-0.67C15.56,8.45,16,10.23,16,11.98C16,13.72,15.56,15.52,14.67,17.33z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M8.46,14.45L7.1,13.83 c0.28-0.61,0.41-1.24,0.4-1.86c-0.01-0.63-0.14-1.24-0.4-1.8l1.36-0.63c0.35,0.75,0.53,1.56,0.54,2.4 C9.01,12.8,8.83,13.64,8.46,14.45z M11.53,16.01l-1.3-0.74c0.52-0.92,0.78-1.98,0.78-3.15c0-1.19-0.27-2.33-0.8-3.4l1.34-0.67 c0.64,1.28,0.96,2.65,0.96,4.07C12.51,13.55,12.18,14.86,11.53,16.01z M14.67,17.33l-1.35-0.66c0.78-1.6,1.18-3.18,1.18-4.69 c0-1.51-0.4-3.07-1.18-4.64l1.34-0.67C15.56,8.45,16,10.23,16,11.98C16,13.72,15.56,15.52,14.67,17.33z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_contactless = ic_contactless; \ No newline at end of file diff --git a/dist/md/ic_contactless_outline.js b/dist/md/ic_contactless_outline.js new file mode 100644 index 000000000..e4187d9dc --- /dev/null +++ b/dist/md/ic_contactless_outline.js @@ -0,0 +1,91 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_contactless_outline = void 0; +var ic_contactless_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,20c-4.42,0-8-3.58-8-8 s3.58-8,8-8s8,3.58,8,8S16.42,20,12,20z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,20c-4.42,0-8-3.58-8-8 s3.58-8,8-8s8,3.58,8,8S16.42,20,12,20z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M7.1,10.18c0.26,0.56,0.39,1.16,0.4,1.8c0.01,0.63-0.13,1.25-0.4,1.86l1.37,0.62c0.37-0.81,0.55-1.65,0.54-2.5 c-0.01-0.84-0.19-1.65-0.54-2.4L7.1,10.18z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M7.1,10.18c0.26,0.56,0.39,1.16,0.4,1.8c0.01,0.63-0.13,1.25-0.4,1.86l1.37,0.62c0.37-0.81,0.55-1.65,0.54-2.5 c-0.01-0.84-0.19-1.65-0.54-2.4L7.1,10.18z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M13.33,7.33c0.78,1.57,1.18,3.14,1.18,4.64c0,1.51-0.4,3.09-1.18,4.69l1.35,0.66c0.88-1.81,1.33-3.61,1.33-5.35 c0-1.74-0.45-3.53-1.33-5.31L13.33,7.33z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M13.33,7.33c0.78,1.57,1.18,3.14,1.18,4.64c0,1.51-0.4,3.09-1.18,4.69l1.35,0.66c0.88-1.81,1.33-3.61,1.33-5.35 c0-1.74-0.45-3.53-1.33-5.31L13.33,7.33z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M10.2,8.72c0.53,1.07,0.8,2.21,0.8,3.4c0,1.17-0.26,2.23-0.78,3.15l1.3,0.74c0.65-1.15,0.98-2.45,0.98-3.89 c0-1.42-0.32-2.79-0.96-4.07L10.2,8.72z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M10.2,8.72c0.53,1.07,0.8,2.21,0.8,3.4c0,1.17-0.26,2.23-0.78,3.15l1.3,0.74c0.65-1.15,0.98-2.45,0.98-3.89 c0-1.42-0.32-2.79-0.96-4.07L10.2,8.72z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_contactless_outline = ic_contactless_outline; \ No newline at end of file diff --git a/dist/md/ic_contactless_twotone.js b/dist/md/ic_contactless_twotone.js new file mode 100644 index 000000000..c76365f05 --- /dev/null +++ b/dist/md/ic_contactless_twotone.js @@ -0,0 +1,105 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_contactless_twotone = void 0; +var ic_contactless_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,4c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S16.42,4,12,4z M8.46,14.45L7.1,13.83 c0.28-0.61,0.41-1.24,0.4-1.86c-0.01-0.63-0.14-1.24-0.4-1.8l1.36-0.63c0.35,0.75,0.53,1.56,0.54,2.4 C9.01,12.8,8.83,13.64,8.46,14.45z M11.53,16.01l-1.3-0.74c0.52-0.92,0.78-1.98,0.78-3.15c0-1.19-0.27-2.33-0.8-3.4l1.34-0.67 c0.64,1.28,0.96,2.65,0.96,4.07C12.51,13.55,12.18,14.86,11.53,16.01z M14.67,17.33l-1.35-0.66c0.78-1.6,1.18-3.18,1.18-4.69 c0-1.51-0.4-3.07-1.18-4.64l1.34-0.67C15.56,8.45,16,10.23,16,11.98C16,13.72,15.56,15.52,14.67,17.33z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,4c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S16.42,4,12,4z M8.46,14.45L7.1,13.83 c0.28-0.61,0.41-1.24,0.4-1.86c-0.01-0.63-0.14-1.24-0.4-1.8l1.36-0.63c0.35,0.75,0.53,1.56,0.54,2.4 C9.01,12.8,8.83,13.64,8.46,14.45z M11.53,16.01l-1.3-0.74c0.52-0.92,0.78-1.98,0.78-3.15c0-1.19-0.27-2.33-0.8-3.4l1.34-0.67 c0.64,1.28,0.96,2.65,0.96,4.07C12.51,13.55,12.18,14.86,11.53,16.01z M14.67,17.33l-1.35-0.66c0.78-1.6,1.18-3.18,1.18-4.69 c0-1.51-0.4-3.07-1.18-4.64l1.34-0.67C15.56,8.45,16,10.23,16,11.98C16,13.72,15.56,15.52,14.67,17.33z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,20c-4.42,0-8-3.58-8-8 s3.58-8,8-8s8,3.58,8,8S16.42,20,12,20z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,20c-4.42,0-8-3.58-8-8 s3.58-8,8-8s8,3.58,8,8S16.42,20,12,20z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M7.1,10.18c0.26,0.56,0.39,1.16,0.4,1.8c0.01,0.63-0.13,1.25-0.4,1.86l1.37,0.62c0.37-0.81,0.55-1.65,0.54-2.5 c-0.01-0.84-0.19-1.65-0.54-2.4L7.1,10.18z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M7.1,10.18c0.26,0.56,0.39,1.16,0.4,1.8c0.01,0.63-0.13,1.25-0.4,1.86l1.37,0.62c0.37-0.81,0.55-1.65,0.54-2.5 c-0.01-0.84-0.19-1.65-0.54-2.4L7.1,10.18z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M13.33,7.33c0.78,1.57,1.18,3.14,1.18,4.64c0,1.51-0.4,3.09-1.18,4.69l1.35,0.66c0.88-1.81,1.33-3.61,1.33-5.35 c0-1.74-0.45-3.53-1.33-5.31L13.33,7.33z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M13.33,7.33c0.78,1.57,1.18,3.14,1.18,4.64c0,1.51-0.4,3.09-1.18,4.69l1.35,0.66c0.88-1.81,1.33-3.61,1.33-5.35 c0-1.74-0.45-3.53-1.33-5.31L13.33,7.33z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M10.2,8.72c0.53,1.07,0.8,2.21,0.8,3.4c0,1.17-0.26,2.23-0.78,3.15l1.3,0.74c0.65-1.15,0.98-2.45,0.98-3.89 c0-1.42-0.32-2.79-0.96-4.07L10.2,8.72z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M10.2,8.72c0.53,1.07,0.8,2.21,0.8,3.4c0,1.17-0.26,2.23-0.78,3.15l1.3,0.74c0.65-1.15,0.98-2.45,0.98-3.89 c0-1.42-0.32-2.79-0.96-4.07L10.2,8.72z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_contactless_twotone = ic_contactless_twotone; \ No newline at end of file diff --git a/dist/md/ic_contacts.js b/dist/md/ic_contacts.js new file mode 100644 index 000000000..df83d397f --- /dev/null +++ b/dist/md/ic_contacts.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_contacts = void 0; +var ic_contacts = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0zm0 0h24v24H0zm0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 0H4v2h16V0zM4 24h16v-2H4v2zM20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-8 2.75c1.24 0 2.25 1.01 2.25 2.25s-1.01 2.25-2.25 2.25S9.75 10.24 9.75 9 10.76 6.75 12 6.75zM17 17H7v-1.5c0-1.67 3.33-2.5 5-2.5s5 .83 5 2.5V17z" + }, + "children": [] + }] +}; +exports.ic_contacts = ic_contacts; \ No newline at end of file diff --git a/dist/md/ic_contacts_outline.js b/dist/md/ic_contacts_outline.js new file mode 100644 index 000000000..ff6a73f57 --- /dev/null +++ b/dist/md/ic_contacts_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_contacts_outline = void 0; +var ic_contacts_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h16v12zM4 0h16v2H4zm0 22h16v2H4zm8-10c1.38 0 2.5-1.12 2.5-2.5S13.38 7 12 7 9.5 8.12 9.5 9.5 10.62 12 12 12zm0-3.5c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm5 7.49C17 13.9 13.69 13 12 13s-5 .9-5 2.99V17h10v-1.01zm-8.19-.49c.61-.52 2.03-1 3.19-1 1.17 0 2.59.48 3.2 1H8.81z" + }, + "children": [] + }] +}; +exports.ic_contacts_outline = ic_contacts_outline; \ No newline at end of file diff --git a/dist/md/ic_contacts_twotone.js b/dist/md/ic_contacts_twotone.js new file mode 100644 index 000000000..0a10f197e --- /dev/null +++ b/dist/md/ic_contacts_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_contacts_twotone = void 0; +var ic_contacts_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 6H4v12h16V6zm-8 1c1.38 0 2.5 1.12 2.5 2.5S13.38 12 12 12s-2.5-1.12-2.5-2.5S10.62 7 12 7zm5 10H7v-1.01C7 13.9 10.31 13 12 13s5 .9 5 2.99V17z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 20h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2zM4 6h16v12H4V6zm0-6h16v2H4zm0 22h16v2H4zm8-10c1.38 0 2.5-1.12 2.5-2.5S13.38 7 12 7 9.5 8.12 9.5 9.5 10.62 12 12 12zm0-3.5c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm0 4.5c-1.69 0-5 .9-5 2.99V17h10v-1.01C17 13.9 13.69 13 12 13zm-3.19 2.5c.61-.52 2.03-1 3.19-1 1.17 0 2.59.48 3.2 1H8.81z" + }, + "children": [] + }] +}; +exports.ic_contacts_twotone = ic_contacts_twotone; \ No newline at end of file diff --git a/dist/md/ic_content_copy.js b/dist/md/ic_content_copy.js new file mode 100644 index 000000000..1ae4ab4aa --- /dev/null +++ b/dist/md/ic_content_copy.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_content_copy = void 0; +var ic_content_copy = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm3 4H8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h11c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 16H8V7h11v14z" + }, + "children": [] + }] +}; +exports.ic_content_copy = ic_content_copy; \ No newline at end of file diff --git a/dist/md/ic_content_copy_outline.js b/dist/md/ic_content_copy_outline.js new file mode 100644 index 000000000..91883a314 --- /dev/null +++ b/dist/md/ic_content_copy_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_content_copy_outline = void 0; +var ic_content_copy_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm3 4H8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h11c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 16H8V7h11v14z" + }, + "children": [] + }] +}; +exports.ic_content_copy_outline = ic_content_copy_outline; \ No newline at end of file diff --git a/dist/md/ic_content_copy_twotone.js b/dist/md/ic_content_copy_twotone.js new file mode 100644 index 000000000..690ab2043 --- /dev/null +++ b/dist/md/ic_content_copy_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_content_copy_twotone = void 0; +var ic_content_copy_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8 7h11v14H8z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm3 4H8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h11c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 16H8V7h11v14z" + }, + "children": [] + }] +}; +exports.ic_content_copy_twotone = ic_content_copy_twotone; \ No newline at end of file diff --git a/dist/md/ic_content_cut.js b/dist/md/ic_content_cut.js new file mode 100644 index 000000000..63c0ebcc8 --- /dev/null +++ b/dist/md/ic_content_cut.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_content_cut = void 0; +var ic_content_cut = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "6", + "cy": "18", + "fill": "none", + "r": "2" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "fill": "none", + "r": ".5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "6", + "cy": "6", + "fill": "none", + "r": "2" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9.64 7.64c.23-.5.36-1.05.36-1.64 0-2.21-1.79-4-4-4S2 3.79 2 6s1.79 4 4 4c.59 0 1.14-.13 1.64-.36L10 12l-2.36 2.36C7.14 14.13 6.59 14 6 14c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4c0-.59-.13-1.14-.36-1.64L12 14l7 7h3v-1L9.64 7.64zM6 8c-1.1 0-2-.89-2-2s.9-2 2-2 2 .89 2 2-.9 2-2 2zm0 12c-1.1 0-2-.89-2-2s.9-2 2-2 2 .89 2 2-.9 2-2 2zm6-7.5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5.5.22.5.5-.22.5-.5.5zM19 3l-6 6 2 2 7-7V3z" + }, + "children": [] + }] +}; +exports.ic_content_cut = ic_content_cut; \ No newline at end of file diff --git a/dist/md/ic_content_cut_outline.js b/dist/md/ic_content_cut_outline.js new file mode 100644 index 000000000..d90c97adc --- /dev/null +++ b/dist/md/ic_content_cut_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_content_cut_outline = void 0; +var ic_content_cut_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9.64 7.64c.23-.5.36-1.05.36-1.64 0-2.21-1.79-4-4-4S2 3.79 2 6s1.79 4 4 4c.59 0 1.14-.13 1.64-.36L10 12l-2.36 2.36C7.14 14.13 6.59 14 6 14c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4c0-.59-.13-1.14-.36-1.64L12 14l7 7h3v-1L9.64 7.64zM6 8c-1.1 0-2-.89-2-2s.9-2 2-2 2 .89 2 2-.9 2-2 2zm0 12c-1.1 0-2-.89-2-2s.9-2 2-2 2 .89 2 2-.9 2-2 2zm6-7.5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5.5.22.5.5-.22.5-.5.5zM19 3l-6 6 2 2 7-7V3h-3z" + }, + "children": [] + }] +}; +exports.ic_content_cut_outline = ic_content_cut_outline; \ No newline at end of file diff --git a/dist/md/ic_content_cut_twotone.js b/dist/md/ic_content_cut_twotone.js new file mode 100644 index 000000000..08364e751 --- /dev/null +++ b/dist/md/ic_content_cut_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_content_cut_twotone = void 0; +var ic_content_cut_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3l-6 6 2 2 7-7V3zm-9 3c0-2.21-1.79-4-4-4S2 3.79 2 6s1.79 4 4 4c.59 0 1.14-.13 1.64-.36L10 12l-2.36 2.36C7.14 14.13 6.59 14 6 14c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4c0-.59-.13-1.14-.36-1.64L12 14l7 7h3v-1L9.64 7.64c.23-.5.36-1.05.36-1.64zM6 8c-1.1 0-2-.89-2-2s.9-2 2-2 2 .89 2 2-.9 2-2 2zm0 12c-1.1 0-2-.89-2-2s.9-2 2-2 2 .89 2 2-.9 2-2 2zm6-8.5c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5.22-.5.5-.5z" + }, + "children": [] + }] +}; +exports.ic_content_cut_twotone = ic_content_cut_twotone; \ No newline at end of file diff --git a/dist/md/ic_content_paste.js b/dist/md/ic_content_paste.js new file mode 100644 index 000000000..e636ee440 --- /dev/null +++ b/dist/md/ic_content_paste.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_content_paste = void 0; +var ic_content_paste = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 2h-4.18C14.4.84 13.3 0 12 0c-1.3 0-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm7 18H5V4h2v3h10V4h2v16z" + }, + "children": [] + }] +}; +exports.ic_content_paste = ic_content_paste; \ No newline at end of file diff --git a/dist/md/ic_content_paste_outline.js b/dist/md/ic_content_paste_outline.js new file mode 100644 index 000000000..c192c4074 --- /dev/null +++ b/dist/md/ic_content_paste_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_content_paste_outline = void 0; +var ic_content_paste_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 2h-4.18C14.4.84 13.3 0 12 0S9.6.84 9.18 2H5c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm7 18H5V4h2v3h10V4h2v16z" + }, + "children": [] + }] +}; +exports.ic_content_paste_outline = ic_content_paste_outline; \ No newline at end of file diff --git a/dist/md/ic_content_paste_twotone.js b/dist/md/ic_content_paste_twotone.js new file mode 100644 index 000000000..1722d59f4 --- /dev/null +++ b/dist/md/ic_content_paste_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_content_paste_twotone = void 0; +var ic_content_paste_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 7H7V4H5v16h14V4h-2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 2h-4.18C14.4.84 13.3 0 12 0S9.6.84 9.18 2H5c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm7 18H5V4h2v3h10V4h2v16z" + }, + "children": [] + }] +}; +exports.ic_content_paste_twotone = ic_content_paste_twotone; \ No newline at end of file diff --git a/dist/md/ic_control_camera.js b/dist/md/ic_control_camera.js new file mode 100644 index 000000000..031b653c5 --- /dev/null +++ b/dist/md/ic_control_camera.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_control_camera = void 0; +var ic_control_camera = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.54 5.54L13.77 7.3 12 5.54 10.23 7.3 8.46 5.54 12 2zm2.92 10l-1.76-1.77L18.46 12l-1.76-1.77 1.76-1.77L22 12zm-10 2.92l1.77-1.76L12 18.46l1.77-1.76 1.77 1.76L12 22zm-2.92-10l1.76 1.77L5.54 12l1.76 1.77-1.76 1.77L2 12z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "3" + }, + "children": [] + }] +}; +exports.ic_control_camera = ic_control_camera; \ No newline at end of file diff --git a/dist/md/ic_control_camera_outline.js b/dist/md/ic_control_camera_outline.js new file mode 100644 index 000000000..594d21e68 --- /dev/null +++ b/dist/md/ic_control_camera_outline.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_control_camera_outline = void 0; +var ic_control_camera_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5.54 8.46L2 12l3.54 3.54 1.76-1.77L5.54 12l1.76-1.77zm6.46 10l-1.77-1.76-1.77 1.76L12 22l3.54-3.54-1.77-1.76zm6.46-10l-1.76 1.77L18.46 12l-1.76 1.77 1.76 1.77L22 12zm-10-2.92l1.77 1.76L12 5.54l1.77 1.76 1.77-1.76L12 2z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "3" + }, + "children": [] + }] +}; +exports.ic_control_camera_outline = ic_control_camera_outline; \ No newline at end of file diff --git a/dist/md/ic_control_camera_twotone.js b/dist/md/ic_control_camera_twotone.js new file mode 100644 index 000000000..9bb3ce96e --- /dev/null +++ b/dist/md/ic_control_camera_twotone.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_control_camera_twotone = void 0; +var ic_control_camera_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7.3 13.77L5.54 12l1.76-1.77-1.76-1.77L2 12l3.54 3.54zm8.24 4.69l-1.77-1.76L12 18.46l-1.77-1.76-1.77 1.76L12 22zm2.92-2.92L22 12l-3.54-3.54-1.76 1.77L18.46 12l-1.76 1.77zM12 5.54l1.77 1.76 1.77-1.76L12 2 8.46 5.54l1.77 1.76z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "3" + }, + "children": [] + }] +}; +exports.ic_control_camera_twotone = ic_control_camera_twotone; \ No newline at end of file diff --git a/dist/md/ic_control_point.js b/dist/md/ic_control_point.js new file mode 100644 index 000000000..a2a1d0614 --- /dev/null +++ b/dist/md/ic_control_point.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_control_point = void 0; +var ic_control_point = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" + }, + "children": [] + }] +}; +exports.ic_control_point = ic_control_point; \ No newline at end of file diff --git a/dist/md/ic_control_point_duplicate.js b/dist/md/ic_control_point_duplicate.js new file mode 100644 index 000000000..bee1b2042 --- /dev/null +++ b/dist/md/ic_control_point_duplicate.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_control_point_duplicate = void 0; +var ic_control_point_duplicate = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 8h-2v3h-3v2h3v3h2v-3h3v-2h-3zM2 12c0-2.79 1.64-5.2 4.01-6.32V3.52C2.52 4.76 0 8.09 0 12s2.52 7.24 6.01 8.48v-2.16C3.64 17.2 2 14.79 2 12zm13-9c-4.96 0-9 4.04-9 9s4.04 9 9 9 9-4.04 9-9-4.04-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z" + }, + "children": [] + }] +}; +exports.ic_control_point_duplicate = ic_control_point_duplicate; \ No newline at end of file diff --git a/dist/md/ic_control_point_duplicate_outline.js b/dist/md/ic_control_point_duplicate_outline.js new file mode 100644 index 000000000..b3ceb5cd0 --- /dev/null +++ b/dist/md/ic_control_point_duplicate_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_control_point_duplicate_outline = void 0; +var ic_control_point_duplicate_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 8h-2v3h-3v2h3v3h2v-3h3v-2h-3V8zM2 12c0-2.79 1.64-5.2 4.01-6.32V3.52C2.52 4.76 0 8.09 0 12s2.52 7.24 6.01 8.48v-2.16C3.64 17.2 2 14.79 2 12zm13-9c-4.96 0-9 4.04-9 9s4.04 9 9 9 9-4.04 9-9-4.04-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z" + }, + "children": [] + }] +}; +exports.ic_control_point_duplicate_outline = ic_control_point_duplicate_outline; \ No newline at end of file diff --git a/dist/md/ic_control_point_duplicate_twotone.js b/dist/md/ic_control_point_duplicate_twotone.js new file mode 100644 index 000000000..5d96ed502 --- /dev/null +++ b/dist/md/ic_control_point_duplicate_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_control_point_duplicate_twotone = void 0; +var ic_control_point_duplicate_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 5c-3.86 0-7 3.14-7 7s3.14 7 7 7 7-3.14 7-7-3.14-7-7-7zm4 8h-3v3h-2v-3h-3v-2h3V8h2v3h3v2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 8h-2v3h-3v2h3v3h2v-3h3v-2h-3zm-1-5c-4.96 0-9 4.04-9 9s4.04 9 9 9 9-4.04 9-9-4.04-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7zM2 12c0-2.79 1.64-5.2 4.01-6.32V3.52C2.52 4.76 0 8.09 0 12s2.52 7.24 6.01 8.48v-2.16C3.64 17.2 2 14.79 2 12z" + }, + "children": [] + }] +}; +exports.ic_control_point_duplicate_twotone = ic_control_point_duplicate_twotone; \ No newline at end of file diff --git a/dist/md/ic_control_point_outline.js b/dist/md/ic_control_point_outline.js new file mode 100644 index 000000000..d78e4e2f5 --- /dev/null +++ b/dist/md/ic_control_point_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_control_point_outline = void 0; +var ic_control_point_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" + }, + "children": [] + }] +}; +exports.ic_control_point_outline = ic_control_point_outline; \ No newline at end of file diff --git a/dist/md/ic_control_point_twotone.js b/dist/md/ic_control_point_twotone.js new file mode 100644 index 000000000..c0aaf65f0 --- /dev/null +++ b/dist/md/ic_control_point_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_control_point_twotone = void 0; +var ic_control_point_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm5 9h-4v4h-2v-4H7v-2h4V7h2v4h4v2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm1-13h-2v4H7v2h4v4h2v-4h4v-2h-4z" + }, + "children": [] + }] +}; +exports.ic_control_point_twotone = ic_control_point_twotone; \ No newline at end of file diff --git a/dist/md/ic_copyright.js b/dist/md/ic_copyright.js new file mode 100644 index 000000000..4967292c2 --- /dev/null +++ b/dist/md/ic_copyright.js @@ -0,0 +1,65 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_copyright = void 0; +var ic_copyright = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M11.88,9.14c1.28,0.06,1.61,1.15,1.63,1.66h1.79c-0.08-1.98-1.49-3.19-3.45-3.19C9.64,7.61,8,9,8,12.14 c0,1.94,0.93,4.24,3.84,4.24c2.22,0,3.41-1.65,3.44-2.95h-1.79c-0.03,0.59-0.45,1.38-1.63,1.44C10.55,14.83,10,13.81,10,12.14 C10,9.25,11.28,9.16,11.88,9.14z M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8 s3.59-8,8-8s8,3.59,8,8S16.41,20,12,20z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M11.88,9.14c1.28,0.06,1.61,1.15,1.63,1.66h1.79c-0.08-1.98-1.49-3.19-3.45-3.19C9.64,7.61,8,9,8,12.14 c0,1.94,0.93,4.24,3.84,4.24c2.22,0,3.41-1.65,3.44-2.95h-1.79c-0.03,0.59-0.45,1.38-1.63,1.44C10.55,14.83,10,13.81,10,12.14 C10,9.25,11.28,9.16,11.88,9.14z M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8 s3.59-8,8-8s8,3.59,8,8S16.41,20,12,20z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_copyright = ic_copyright; \ No newline at end of file diff --git a/dist/md/ic_copyright_outline.js b/dist/md/ic_copyright_outline.js new file mode 100644 index 000000000..f088385c0 --- /dev/null +++ b/dist/md/ic_copyright_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_copyright_outline = void 0; +var ic_copyright_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10.08 10.86c.05-.33.16-.62.3-.87s.34-.46.59-.62c.24-.15.54-.22.91-.23.23.01.44.05.63.13.2.09.38.21.52.36s.25.33.34.53.13.42.14.64h1.79c-.02-.47-.11-.9-.28-1.29s-.4-.73-.7-1.01-.66-.5-1.08-.66-.88-.23-1.39-.23c-.65 0-1.22.11-1.7.34s-.88.53-1.2.92-.56.84-.71 1.36S8 11.29 8 11.87v.27c0 .58.08 1.12.23 1.64s.39.97.71 1.35.72.69 1.2.91c.48.22 1.05.34 1.7.34.47 0 .91-.08 1.32-.23s.77-.36 1.08-.63.56-.58.74-.94.29-.74.3-1.15h-1.79c-.01.21-.06.4-.15.58s-.21.33-.36.46-.32.23-.52.3c-.19.07-.39.09-.6.1-.36-.01-.66-.08-.89-.23-.25-.16-.45-.37-.59-.62s-.25-.55-.3-.88-.08-.67-.08-1v-.27c0-.35.03-.68.08-1.01zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" + }, + "children": [] + }] +}; +exports.ic_copyright_outline = ic_copyright_outline; \ No newline at end of file diff --git a/dist/md/ic_copyright_twotone.js b/dist/md/ic_copyright_twotone.js new file mode 100644 index 000000000..2292c7223 --- /dev/null +++ b/dist/md/ic_copyright_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_copyright_twotone = void 0; +var ic_copyright_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm-1.92 9.14c.05.33.16.63.3.88s.34.46.59.62c.23.15.53.22.89.23.21-.01.41-.03.6-.1.2-.07.37-.17.52-.3.15-.13.27-.28.36-.46.09-.18.14-.37.15-.58h1.79c-.01.41-.12.79-.3 1.15-.18.36-.43.67-.74.94-.31.27-.67.48-1.08.63-.41.15-.85.23-1.32.23-.65 0-1.22-.12-1.7-.34-.48-.22-.88-.53-1.2-.91s-.56-.83-.71-1.35c-.15-.52-.23-1.06-.23-1.64v-.27c0-.58.09-1.12.24-1.64.15-.52.39-.97.71-1.36s.72-.69 1.2-.92c.48-.23 1.05-.34 1.7-.34.51 0 .97.07 1.39.23.42.16.78.38 1.08.66.3.28.53.62.7 1.01.17.39.26.82.28 1.29h-1.79c-.01-.22-.05-.44-.14-.64-.09-.2-.2-.38-.34-.53-.14-.15-.32-.27-.52-.36-.19-.08-.4-.12-.63-.13-.37.01-.67.08-.91.23-.25.16-.45.37-.59.62s-.25.54-.3.87c-.05.33-.08.66-.08 1.01v.27c0 .33.03.67.08 1z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10.08 10.86c.05-.33.16-.62.3-.87s.34-.46.59-.62c.24-.15.54-.22.91-.23.23.01.44.05.63.13.2.09.38.21.52.36s.25.33.34.53c.09.2.13.42.14.64h1.79c-.02-.47-.11-.9-.28-1.29-.17-.39-.4-.73-.7-1.01-.3-.28-.66-.5-1.08-.66-.42-.16-.88-.23-1.39-.23-.65 0-1.22.11-1.7.34-.48.23-.88.53-1.2.92s-.56.84-.71 1.36c-.15.52-.24 1.06-.24 1.64v.27c0 .58.08 1.12.23 1.64.15.52.39.97.71 1.35s.72.69 1.2.91c.48.22 1.05.34 1.7.34.47 0 .91-.08 1.32-.23.41-.15.77-.36 1.08-.63.31-.27.56-.58.74-.94.18-.36.29-.74.3-1.15h-1.79c-.01.21-.06.4-.15.58-.09.18-.21.33-.36.46s-.32.23-.52.3c-.19.07-.39.09-.6.1-.36-.01-.66-.08-.89-.23-.25-.16-.45-.37-.59-.62s-.25-.55-.3-.88c-.05-.33-.08-.67-.08-1v-.27c0-.35.03-.68.08-1.01zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" + }, + "children": [] + }] +}; +exports.ic_copyright_twotone = ic_copyright_twotone; \ No newline at end of file diff --git a/dist/md/ic_coronavirus.js b/dist/md/ic_coronavirus.js new file mode 100644 index 000000000..46643250f --- /dev/null +++ b/dist/md/ic_coronavirus.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_coronavirus = void 0; +var ic_coronavirus = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21.25,10.5c-0.41,0-0.75,0.34-0.75,0.75h-1.54c-0.15-1.37-0.69-2.63-1.52-3.65l1.09-1.09l0.01,0.01 c0.29,0.29,0.77,0.29,1.06,0s0.29-0.77,0-1.06L18.54,4.4c-0.29-0.29-0.77-0.29-1.06,0c-0.29,0.29-0.29,0.76-0.01,1.05l-1.09,1.09 c-1.02-0.82-2.27-1.36-3.64-1.51V3.5h0.01c0.41,0,0.75-0.34,0.75-0.75C13.5,2.34,13.16,2,12.75,2h-1.5c-0.41,0-0.75,0.34-0.75,0.75 c0,0.41,0.33,0.74,0.74,0.75v1.55C9.87,5.19,8.62,5.74,7.6,6.56L6.51,5.47l0.01-0.01c0.29-0.29,0.29-0.77,0-1.06 c-0.29-0.29-0.77-0.29-1.06,0L4.4,5.46c-0.29,0.29-0.29,0.77,0,1.06c0.29,0.29,0.76,0.29,1.05,0.01l1.09,1.09 c-0.82,1.02-1.36,2.26-1.5,3.63H3.5c0-0.41-0.34-0.75-0.75-0.75C2.34,10.5,2,10.84,2,11.25v1.5c0,0.41,0.34,0.75,0.75,0.75 c0.41,0,0.75-0.34,0.75-0.75h1.54c0.15,1.37,0.69,2.61,1.5,3.63l-1.09,1.09c-0.29-0.29-0.76-0.28-1.05,0.01 c-0.29,0.29-0.29,0.77,0,1.06l1.06,1.06c0.29,0.29,0.77,0.29,1.06,0c0.29-0.29,0.29-0.77,0-1.06l-0.01-0.01l1.09-1.09 c1.02,0.82,2.26,1.36,3.63,1.51v1.55c-0.41,0.01-0.74,0.34-0.74,0.75c0,0.41,0.34,0.75,0.75,0.75h1.5c0.41,0,0.75-0.34,0.75-0.75 c0-0.41-0.34-0.75-0.75-0.75h-0.01v-1.54c1.37-0.14,2.62-0.69,3.64-1.51l1.09,1.09c-0.29,0.29-0.28,0.76,0.01,1.05 c0.29,0.29,0.77,0.29,1.06,0l1.06-1.06c0.29-0.29,0.29-0.77,0-1.06c-0.29-0.29-0.77-0.29-1.06,0l-0.01,0.01l-1.09-1.09 c0.82-1.02,1.37-2.27,1.52-3.65h1.54c0,0.41,0.34,0.75,0.75,0.75c0.41,0,0.75-0.34,0.75-0.75v-1.5C22,10.84,21.66,10.5,21.25,10.5z M13.75,8c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S13.2,8,13.75,8z M12,13c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1 C13,12.55,12.55,13,12,13z M10.25,8c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S9.7,8,10.25,8z M8.5,13c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C9.5,12.55,9.05,13,8.5,13z M10.25,16c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1 C11.25,15.55,10.8,16,10.25,16z M13.75,16c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C14.75,15.55,14.3,16,13.75,16z M14.5,12 c0-0.55,0.45-1,1-1s1,0.45,1,1c0,0.55-0.45,1-1,1S14.5,12.55,14.5,12z" + }, + "children": [] + }] +}; +exports.ic_coronavirus = ic_coronavirus; \ No newline at end of file diff --git a/dist/md/ic_coronavirus_outline.js b/dist/md/ic_coronavirus_outline.js new file mode 100644 index 000000000..7939e2b9b --- /dev/null +++ b/dist/md/ic_coronavirus_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_coronavirus_outline = void 0; +var ic_coronavirus_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9.5,12c0,0.55-0.45,1-1,1s-1-0.45-1-1c0-0.55,0.45-1,1-1S9.5,11.45,9.5,12z M13.75,10c0.55,0,1-0.45,1-1s-0.45-1-1-1 s-1,0.45-1,1S13.2,10,13.75,10z M10.25,10c0.55,0,1-0.45,1-1s-0.45-1-1-1s-1,0.45-1,1S9.7,10,10.25,10z M10.25,14 c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1s1-0.45,1-1C11.25,14.45,10.8,14,10.25,14z M22,11.25v1.5c0,0.41-0.34,0.75-0.75,0.75 c-0.41,0-0.75-0.34-0.75-0.75h-1.54c-0.15,1.37-0.69,2.63-1.52,3.65l1.09,1.09l0.01-0.01c0.29-0.29,0.77-0.29,1.06,0 c0.29,0.29,0.29,0.77,0,1.06l-1.06,1.06c-0.29,0.29-0.77,0.29-1.06,0c-0.29-0.29-0.29-0.76-0.01-1.05l-1.09-1.09 c-1.02,0.82-2.27,1.36-3.64,1.51v1.54h0.01c0.41,0,0.75,0.34,0.75,0.75c0,0.41-0.34,0.75-0.75,0.75h-1.5 c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.33-0.74,0.74-0.75v-1.55c-1.37-0.15-2.62-0.69-3.63-1.51l-1.09,1.09l0.01,0.01 c0.29,0.29,0.29,0.77,0,1.06c-0.29,0.29-0.77,0.29-1.06,0L4.4,18.54c-0.29-0.29-0.29-0.77,0-1.06c0.29-0.29,0.76-0.29,1.05-0.01 l1.09-1.09c-0.82-1.02-1.36-2.26-1.5-3.63H3.5c0,0.41-0.34,0.75-0.75,0.75C2.34,13.5,2,13.16,2,12.75v-1.5 c0-0.41,0.34-0.75,0.75-0.75c0.41,0,0.75,0.34,0.75,0.75h1.54c0.15-1.37,0.69-2.61,1.5-3.63L5.45,6.53C5.16,6.81,4.69,6.81,4.4,6.52 c-0.29-0.29-0.29-0.77,0-1.06L5.46,4.4c0.29-0.29,0.77-0.29,1.06,0c0.29,0.29,0.29,0.77,0,1.06L6.51,5.47L7.6,6.56 c1.02-0.82,2.26-1.36,3.63-1.51V3.5c-0.41-0.01-0.74-0.34-0.74-0.75C10.5,2.34,10.84,2,11.25,2h1.5c0.41,0,0.75,0.34,0.75,0.75 c0,0.41-0.34,0.75-0.75,0.75h-0.01v1.54c1.37,0.14,2.62,0.69,3.64,1.51l1.09-1.09c-0.29-0.29-0.28-0.76,0.01-1.05 c0.29-0.29,0.77-0.29,1.06,0l1.06,1.06c0.29,0.29,0.29,0.77,0,1.06s-0.77,0.29-1.06,0l-0.01-0.01L17.44,7.6 c0.82,1.02,1.37,2.27,1.52,3.65h1.54c0-0.41,0.34-0.75,0.75-0.75C21.66,10.5,22,10.84,22,11.25z M17,12c0-2.76-2.24-5-5-5 s-5,2.24-5,5s2.24,5,5,5S17,14.76,17,12z M12,11c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1s1-0.45,1-1C13,11.45,12.55,11,12,11z M15.5,11c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1s1-0.45,1-1C16.5,11.45,16.05,11,15.5,11z M13.75,14c-0.55,0-1,0.45-1,1 c0,0.55,0.45,1,1,1s1-0.45,1-1C14.75,14.45,14.3,14,13.75,14z" + }, + "children": [] + }] +}; +exports.ic_coronavirus_outline = ic_coronavirus_outline; \ No newline at end of file diff --git a/dist/md/ic_coronavirus_twotone.js b/dist/md/ic_coronavirus_twotone.js new file mode 100644 index 000000000..d26932a70 --- /dev/null +++ b/dist/md/ic_coronavirus_twotone.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_coronavirus_twotone = void 0; +var ic_coronavirus_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12,7c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S14.76,7,12,7z M13.75,8c0.55,0,1,0.45,1,1s-0.45,1-1,1 s-1-0.45-1-1S13.2,8,13.75,8z M10.25,8c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S9.7,8,10.25,8z M8.5,13c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C9.5,12.55,9.05,13,8.5,13z M10.25,16c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1 C11.25,15.55,10.8,16,10.25,16z M12,13c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C13,12.55,12.55,13,12,13z M13.75,16 c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C14.75,15.55,14.3,16,13.75,16z M15.5,13c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1 s1,0.45,1,1C16.5,12.55,16.05,13,15.5,13z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9.5,12c0,0.55-0.45,1-1,1s-1-0.45-1-1c0-0.55,0.45-1,1-1S9.5,11.45,9.5,12z M13.75,10c0.55,0,1-0.45,1-1s-0.45-1-1-1 s-1,0.45-1,1S13.2,10,13.75,10z M10.25,10c0.55,0,1-0.45,1-1s-0.45-1-1-1s-1,0.45-1,1S9.7,10,10.25,10z M10.25,14 c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1s1-0.45,1-1C11.25,14.45,10.8,14,10.25,14z M22,11.25v1.5c0,0.41-0.34,0.75-0.75,0.75 c-0.41,0-0.75-0.34-0.75-0.75h-1.54c-0.15,1.37-0.69,2.63-1.52,3.65l1.09,1.09l0.01-0.01c0.29-0.29,0.77-0.29,1.06,0 c0.29,0.29,0.29,0.77,0,1.06l-1.06,1.06c-0.29,0.29-0.77,0.29-1.06,0c-0.29-0.29-0.29-0.76-0.01-1.05l-1.09-1.09 c-1.02,0.82-2.27,1.36-3.64,1.51v1.54h0.01c0.41,0,0.75,0.34,0.75,0.75c0,0.41-0.34,0.75-0.75,0.75h-1.5 c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.33-0.74,0.74-0.75v-1.55c-1.37-0.15-2.62-0.69-3.63-1.51l-1.09,1.09l0.01,0.01 c0.29,0.29,0.29,0.77,0,1.06c-0.29,0.29-0.77,0.29-1.06,0L4.4,18.54c-0.29-0.29-0.29-0.77,0-1.06c0.29-0.29,0.76-0.29,1.05-0.01 l1.09-1.09c-0.82-1.02-1.36-2.26-1.5-3.63H3.5c0,0.41-0.34,0.75-0.75,0.75C2.34,13.5,2,13.16,2,12.75v-1.5 c0-0.41,0.34-0.75,0.75-0.75c0.41,0,0.75,0.34,0.75,0.75h1.54c0.15-1.37,0.69-2.61,1.5-3.63L5.45,6.53C5.16,6.81,4.69,6.81,4.4,6.52 c-0.29-0.29-0.29-0.77,0-1.06L5.46,4.4c0.29-0.29,0.77-0.29,1.06,0c0.29,0.29,0.29,0.77,0,1.06L6.51,5.47L7.6,6.56 c1.02-0.82,2.26-1.36,3.63-1.51V3.5c-0.41-0.01-0.74-0.34-0.74-0.75C10.5,2.34,10.84,2,11.25,2h1.5c0.41,0,0.75,0.34,0.75,0.75 c0,0.41-0.34,0.75-0.75,0.75h-0.01v1.54c1.37,0.14,2.62,0.69,3.64,1.51l1.09-1.09c-0.29-0.29-0.28-0.76,0.01-1.05 c0.29-0.29,0.77-0.29,1.06,0l1.06,1.06c0.29,0.29,0.29,0.77,0,1.06s-0.77,0.29-1.06,0l-0.01-0.01L17.44,7.6 c0.82,1.02,1.37,2.27,1.52,3.65h1.54c0-0.41,0.34-0.75,0.75-0.75C21.66,10.5,22,10.84,22,11.25z M17,12c0-2.76-2.24-5-5-5 s-5,2.24-5,5s2.24,5,5,5S17,14.76,17,12z M12,11c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1s1-0.45,1-1C13,11.45,12.55,11,12,11z M15.5,11c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1s1-0.45,1-1C16.5,11.45,16.05,11,15.5,11z M13.75,14c-0.55,0-1,0.45-1,1 c0,0.55,0.45,1,1,1s1-0.45,1-1C14.75,14.45,14.3,14,13.75,14z" + }, + "children": [] + }] +}; +exports.ic_coronavirus_twotone = ic_coronavirus_twotone; \ No newline at end of file diff --git a/dist/md/ic_corporate_fare.js b/dist/md/ic_corporate_fare.js new file mode 100644 index 000000000..c05ff6ddc --- /dev/null +++ b/dist/md/ic_corporate_fare.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_corporate_fare = void 0; +var ic_corporate_fare = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12,7V3H2v18h20V7H12z M10,19H4v-2h6V19z M10,15H4v-2h6V15z M10,11H4V9h6V11z M10,7H4V5h6V7z M20,19h-8V9h8V19z M18,11h-4v2 h4V11z M18,15h-4v2h4V15z" + }, + "children": [] + }] +}; +exports.ic_corporate_fare = ic_corporate_fare; \ No newline at end of file diff --git a/dist/md/ic_corporate_fare_outline.js b/dist/md/ic_corporate_fare_outline.js new file mode 100644 index 000000000..42a1fa69c --- /dev/null +++ b/dist/md/ic_corporate_fare_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_corporate_fare_outline = void 0; +var ic_corporate_fare_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12,7V3H2v18h20V7H12z M10,19H4v-2h6V19z M10,15H4v-2h6V15z M10,11H4V9h6V11z M10,7H4V5h6V7z M20,19h-8V9h8V19z M18,11h-4v2 h4V11z M18,15h-4v2h4V15z" + }, + "children": [] + }] +}; +exports.ic_corporate_fare_outline = ic_corporate_fare_outline; \ No newline at end of file diff --git a/dist/md/ic_corporate_fare_twotone.js b/dist/md/ic_corporate_fare_twotone.js new file mode 100644 index 000000000..783af4f96 --- /dev/null +++ b/dist/md/ic_corporate_fare_twotone.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_corporate_fare_twotone = void 0; +var ic_corporate_fare_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10,19H4v-2h6V19z M10,15H4v-2h6V15z M10,11H4V9h6V11z M10,7H4V5h6V7z M20,19h-8V9h8V19z M18,11h-4v2h4V11z M18,15h-4v2h4V15z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12,7V3H2v18h20V7H12z M10,19H4v-2h6V19z M10,15H4v-2h6V15z M10,11H4V9h6V11z M10,7H4V5h6V7z M20,19h-8V9h8V19z M18,11h-4v2 h4V11z M18,15h-4v2h4V15z" + }, + "children": [] + }] +}; +exports.ic_corporate_fare_twotone = ic_corporate_fare_twotone; \ No newline at end of file diff --git a/dist/md/ic_countertops.js b/dist/md/ic_countertops.js new file mode 100644 index 000000000..a901273dd --- /dev/null +++ b/dist/md/ic_countertops.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_countertops = void 0; +var ic_countertops = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18,10V7c0-1.66-1.34-3-3-3c-1.66,0-3,1.34-3,3h2c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1v3H8c1.1,0,2-0.9,2-2V4H4v4 c0,1.1,0.9,2,2,2H2v2h2v8h16v-8h2v-2H18z M13,18h-2v-6h2V18z" + }, + "children": [] + }] +}; +exports.ic_countertops = ic_countertops; \ No newline at end of file diff --git a/dist/md/ic_countertops_outline.js b/dist/md/ic_countertops_outline.js new file mode 100644 index 000000000..c40b97a6a --- /dev/null +++ b/dist/md/ic_countertops_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_countertops_outline = void 0; +var ic_countertops_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22,10h-4V7c0-1.66-1.34-3-3-3c-1.66,0-3,1.34-3,3h2c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1v3H8c1.1,0,2-0.9,2-2V4H4v4 c0,1.1,0.9,2,2,2H2v2h2v8h16v-8h2V10z M6,6h2v2H6V6z M6,18v-6h5v6H6z M18,18h-5v-6h5V18z" + }, + "children": [] + }] +}; +exports.ic_countertops_outline = ic_countertops_outline; \ No newline at end of file diff --git a/dist/md/ic_countertops_twotone.js b/dist/md/ic_countertops_twotone.js new file mode 100644 index 000000000..be7a1914c --- /dev/null +++ b/dist/md/ic_countertops_twotone.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_countertops_twotone = void 0; +var ic_countertops_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6,6h2v2H6V6z M6,18v-6h5v6H6z M18,18h-5v-6h5V18z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22,10h-4V7c0-1.66-1.34-3-3-3c-1.66,0-3,1.34-3,3h2c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1v3H8c1.1,0,2-0.9,2-2V4H4v4 c0,1.1,0.9,2,2,2H2v2h2v8h16v-8h2V10z M6,6h2v2H6V6z M6,18v-6h5v6H6z M18,18h-5v-6h5V18z" + }, + "children": [] + }] +}; +exports.ic_countertops_twotone = ic_countertops_twotone; \ No newline at end of file diff --git a/dist/md/ic_create.js b/dist/md/ic_create.js new file mode 100644 index 000000000..a9266647c --- /dev/null +++ b/dist/md/ic_create.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_create = void 0; +var ic_create = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z" + }, + "children": [] + }] +}; +exports.ic_create = ic_create; \ No newline at end of file diff --git a/dist/md/ic_create_new_folder.js b/dist/md/ic_create_new_folder.js new file mode 100644 index 000000000..cb4d62134 --- /dev/null +++ b/dist/md/ic_create_new_folder.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_create_new_folder = void 0; +var ic_create_new_folder = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 6h-8l-2-2H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-1 8h-3v3h-2v-3h-3v-2h3V9h2v3h3v2z" + }, + "children": [] + }] +}; +exports.ic_create_new_folder = ic_create_new_folder; \ No newline at end of file diff --git a/dist/md/ic_create_new_folder_outline.js b/dist/md/ic_create_new_folder_outline.js new file mode 100644 index 000000000..9cb5f489f --- /dev/null +++ b/dist/md/ic_create_new_folder_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_create_new_folder_outline = void 0; +var ic_create_new_folder_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 6h-8l-2-2H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm0 12H4V6h5.17l2 2H20v10zm-8-4h2v2h2v-2h2v-2h-2v-2h-2v2h-2z" + }, + "children": [] + }] +}; +exports.ic_create_new_folder_outline = ic_create_new_folder_outline; \ No newline at end of file diff --git a/dist/md/ic_create_new_folder_twotone.js b/dist/md/ic_create_new_folder_twotone.js new file mode 100644 index 000000000..2d23810c6 --- /dev/null +++ b/dist/md/ic_create_new_folder_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_create_new_folder_twotone = void 0; +var ic_create_new_folder_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.17 8l-.59-.59L9.17 6H4v12h16V8h-8.83zM14 10h2v2h2v2h-2v2h-2v-2h-2v-2h2v-2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 6h-8l-2-2H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm0 12H4V6h5.17l1.41 1.41.59.59H20v10zm-8-4h2v2h2v-2h2v-2h-2v-2h-2v2h-2z" + }, + "children": [] + }] +}; +exports.ic_create_new_folder_twotone = ic_create_new_folder_twotone; \ No newline at end of file diff --git a/dist/md/ic_create_outline.js b/dist/md/ic_create_outline.js new file mode 100644 index 000000000..a26ffae66 --- /dev/null +++ b/dist/md/ic_create_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_create_outline = void 0; +var ic_create_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM5.92 19H5v-.92l9.06-9.06.92.92L5.92 19zM20.71 5.63l-2.34-2.34c-.2-.2-.45-.29-.71-.29s-.51.1-.7.29l-1.83 1.83 3.75 3.75 1.83-1.83c.39-.39.39-1.02 0-1.41z" + }, + "children": [] + }] +}; +exports.ic_create_outline = ic_create_outline; \ No newline at end of file diff --git a/dist/md/ic_create_twotone.js b/dist/md/ic_create_twotone.js new file mode 100644 index 000000000..c136945a8 --- /dev/null +++ b/dist/md/ic_create_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_create_twotone = void 0; +var ic_create_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 18.08V19h.92l9.06-9.06-.92-.92z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM5.92 19H5v-.92l9.06-9.06.92.92L5.92 19zM20.71 5.63l-2.34-2.34c-.2-.2-.45-.29-.71-.29s-.51.1-.7.29l-1.83 1.83 3.75 3.75 1.83-1.83c.39-.39.39-1.02 0-1.41z" + }, + "children": [] + }] +}; +exports.ic_create_twotone = ic_create_twotone; \ No newline at end of file diff --git a/dist/md/ic_credit_card.js b/dist/md/ic_credit_card.js new file mode 100644 index 000000000..dd6880a15 --- /dev/null +++ b/dist/md/ic_credit_card.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_credit_card = void 0; +var ic_credit_card = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4v-6h16v6zm0-10H4V6h16v2z" + }, + "children": [] + }] +}; +exports.ic_credit_card = ic_credit_card; \ No newline at end of file diff --git a/dist/md/ic_credit_card_outline.js b/dist/md/ic_credit_card_outline.js new file mode 100644 index 000000000..57c004114 --- /dev/null +++ b/dist/md/ic_credit_card_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_credit_card_outline = void 0; +var ic_credit_card_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4v-6h16v6zm0-10H4V6h16v2z" + }, + "children": [] + }] +}; +exports.ic_credit_card_outline = ic_credit_card_outline; \ No newline at end of file diff --git a/dist/md/ic_credit_card_twotone.js b/dist/md/ic_credit_card_twotone.js new file mode 100644 index 000000000..2fabad264 --- /dev/null +++ b/dist/md/ic_credit_card_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_credit_card_twotone = void 0; +var ic_credit_card_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 12h16v6H4zm0-6h16v2H4z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4v-6h16v6zm0-10H4V6h16v2z" + }, + "children": [] + }] +}; +exports.ic_credit_card_twotone = ic_credit_card_twotone; \ No newline at end of file diff --git a/dist/md/ic_crop.js b/dist/md/ic_crop.js new file mode 100644 index 000000000..c671201c9 --- /dev/null +++ b/dist/md/ic_crop.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_crop = void 0; +var ic_crop = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 15h2V7c0-1.1-.9-2-2-2H9v2h8v8zM7 17V1H5v4H1v2h4v10c0 1.1.9 2 2 2h10v4h2v-4h4v-2H7z" + }, + "children": [] + }] +}; +exports.ic_crop = ic_crop; \ No newline at end of file diff --git a/dist/md/ic_crop_16_9.js b/dist/md/ic_crop_16_9.js new file mode 100644 index 000000000..c7dec8ad0 --- /dev/null +++ b/dist/md/ic_crop_16_9.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_crop_16_9 = void 0; +var ic_crop_16_9 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 6H5c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 10H5V8h14v8z" + }, + "children": [] + }] +}; +exports.ic_crop_16_9 = ic_crop_16_9; \ No newline at end of file diff --git a/dist/md/ic_crop_16_9_outline.js b/dist/md/ic_crop_16_9_outline.js new file mode 100644 index 000000000..3223f54c4 --- /dev/null +++ b/dist/md/ic_crop_16_9_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_crop_16_9_outline = void 0; +var ic_crop_16_9_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 6H5c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 10H5V8h14v8z" + }, + "children": [] + }] +}; +exports.ic_crop_16_9_outline = ic_crop_16_9_outline; \ No newline at end of file diff --git a/dist/md/ic_crop_16_9_twotone.js b/dist/md/ic_crop_16_9_twotone.js new file mode 100644 index 000000000..20aedb679 --- /dev/null +++ b/dist/md/ic_crop_16_9_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_crop_16_9_twotone = void 0; +var ic_crop_16_9_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 6H5c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 10H5V8h14v8z" + }, + "children": [] + }] +}; +exports.ic_crop_16_9_twotone = ic_crop_16_9_twotone; \ No newline at end of file diff --git a/dist/md/ic_crop_3_2.js b/dist/md/ic_crop_3_2.js new file mode 100644 index 000000000..dd3b81cf4 --- /dev/null +++ b/dist/md/ic_crop_3_2.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_crop_3_2 = void 0; +var ic_crop_3_2 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 4H5c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H5V6h14v12z" + }, + "children": [] + }] +}; +exports.ic_crop_3_2 = ic_crop_3_2; \ No newline at end of file diff --git a/dist/md/ic_crop_3_2_outline.js b/dist/md/ic_crop_3_2_outline.js new file mode 100644 index 000000000..232ca51b3 --- /dev/null +++ b/dist/md/ic_crop_3_2_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_crop_3_2_outline = void 0; +var ic_crop_3_2_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 4H5c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H5V6h14v12z" + }, + "children": [] + }] +}; +exports.ic_crop_3_2_outline = ic_crop_3_2_outline; \ No newline at end of file diff --git a/dist/md/ic_crop_3_2_twotone.js b/dist/md/ic_crop_3_2_twotone.js new file mode 100644 index 000000000..9a8b9f79b --- /dev/null +++ b/dist/md/ic_crop_3_2_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_crop_3_2_twotone = void 0; +var ic_crop_3_2_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 4H5c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H5V6h14v12z" + }, + "children": [] + }] +}; +exports.ic_crop_3_2_twotone = ic_crop_3_2_twotone; \ No newline at end of file diff --git a/dist/md/ic_crop_5_4.js b/dist/md/ic_crop_5_4.js new file mode 100644 index 000000000..284a3b96f --- /dev/null +++ b/dist/md/ic_crop_5_4.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_crop_5_4 = void 0; +var ic_crop_5_4 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 5H5c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 12H5V7h14v10z" + }, + "children": [] + }] +}; +exports.ic_crop_5_4 = ic_crop_5_4; \ No newline at end of file diff --git a/dist/md/ic_crop_5_4_outline.js b/dist/md/ic_crop_5_4_outline.js new file mode 100644 index 000000000..ef74e1372 --- /dev/null +++ b/dist/md/ic_crop_5_4_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_crop_5_4_outline = void 0; +var ic_crop_5_4_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 5H5c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 12H5V7h14v10z" + }, + "children": [] + }] +}; +exports.ic_crop_5_4_outline = ic_crop_5_4_outline; \ No newline at end of file diff --git a/dist/md/ic_crop_5_4_twotone.js b/dist/md/ic_crop_5_4_twotone.js new file mode 100644 index 000000000..cedb9d5a5 --- /dev/null +++ b/dist/md/ic_crop_5_4_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_crop_5_4_twotone = void 0; +var ic_crop_5_4_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 5H5c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 12H5V7h14v10z" + }, + "children": [] + }] +}; +exports.ic_crop_5_4_twotone = ic_crop_5_4_twotone; \ No newline at end of file diff --git a/dist/md/ic_crop_7_5.js b/dist/md/ic_crop_7_5.js new file mode 100644 index 000000000..7ee0f19d9 --- /dev/null +++ b/dist/md/ic_crop_7_5.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_crop_7_5 = void 0; +var ic_crop_7_5 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 7H5c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zm0 8H5V9h14v6z" + }, + "children": [] + }] +}; +exports.ic_crop_7_5 = ic_crop_7_5; \ No newline at end of file diff --git a/dist/md/ic_crop_7_5_outline.js b/dist/md/ic_crop_7_5_outline.js new file mode 100644 index 000000000..2594009ed --- /dev/null +++ b/dist/md/ic_crop_7_5_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_crop_7_5_outline = void 0; +var ic_crop_7_5_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 7H5c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zm0 8H5V9h14v6z" + }, + "children": [] + }] +}; +exports.ic_crop_7_5_outline = ic_crop_7_5_outline; \ No newline at end of file diff --git a/dist/md/ic_crop_7_5_twotone.js b/dist/md/ic_crop_7_5_twotone.js new file mode 100644 index 000000000..a1816d00f --- /dev/null +++ b/dist/md/ic_crop_7_5_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_crop_7_5_twotone = void 0; +var ic_crop_7_5_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 7H5c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zm0 8H5V9h14v6z" + }, + "children": [] + }] +}; +exports.ic_crop_7_5_twotone = ic_crop_7_5_twotone; \ No newline at end of file diff --git a/dist/md/ic_crop_din.js b/dist/md/ic_crop_din.js new file mode 100644 index 000000000..397430d60 --- /dev/null +++ b/dist/md/ic_crop_din.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_crop_din = void 0; +var ic_crop_din = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" + }, + "children": [] + }] +}; +exports.ic_crop_din = ic_crop_din; \ No newline at end of file diff --git a/dist/md/ic_crop_din_outline.js b/dist/md/ic_crop_din_outline.js new file mode 100644 index 000000000..a7e01a2a5 --- /dev/null +++ b/dist/md/ic_crop_din_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_crop_din_outline = void 0; +var ic_crop_din_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" + }, + "children": [] + }] +}; +exports.ic_crop_din_outline = ic_crop_din_outline; \ No newline at end of file diff --git a/dist/md/ic_crop_din_twotone.js b/dist/md/ic_crop_din_twotone.js new file mode 100644 index 000000000..67b551f34 --- /dev/null +++ b/dist/md/ic_crop_din_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_crop_din_twotone = void 0; +var ic_crop_din_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" + }, + "children": [] + }] +}; +exports.ic_crop_din_twotone = ic_crop_din_twotone; \ No newline at end of file diff --git a/dist/md/ic_crop_free.js b/dist/md/ic_crop_free.js new file mode 100644 index 000000000..e33510f2c --- /dev/null +++ b/dist/md/ic_crop_free.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_crop_free = void 0; +var ic_crop_free = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 5v4h2V5h4V3H5c-1.1 0-2 .9-2 2zm2 10H3v4c0 1.1.9 2 2 2h4v-2H5v-4zm14 4h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4zm0-16h-4v2h4v4h2V5c0-1.1-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_crop_free = ic_crop_free; \ No newline at end of file diff --git a/dist/md/ic_crop_free_outline.js b/dist/md/ic_crop_free_outline.js new file mode 100644 index 000000000..769045be3 --- /dev/null +++ b/dist/md/ic_crop_free_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_crop_free_outline = void 0; +var ic_crop_free_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 5v4h2V5h4V3H5c-1.1 0-2 .9-2 2zm2 10H3v4c0 1.1.9 2 2 2h4v-2H5v-4zm14 4h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4zm0-16h-4v2h4v4h2V5c0-1.1-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_crop_free_outline = ic_crop_free_outline; \ No newline at end of file diff --git a/dist/md/ic_crop_free_twotone.js b/dist/md/ic_crop_free_twotone.js new file mode 100644 index 000000000..68178b966 --- /dev/null +++ b/dist/md/ic_crop_free_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_crop_free_twotone = void 0; +var ic_crop_free_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 19c0 1.1.9 2 2 2h4v-2H5v-4H3v4zM21 5c0-1.1-.9-2-2-2h-4v2h4v4h2V5zM5 5h4V3H5c-1.1 0-2 .9-2 2v4h2V5zm16 14v-4h-2v4h-4v2h4c1.1 0 2-.9 2-2z" + }, + "children": [] + }] +}; +exports.ic_crop_free_twotone = ic_crop_free_twotone; \ No newline at end of file diff --git a/dist/md/ic_crop_landscape.js b/dist/md/ic_crop_landscape.js new file mode 100644 index 000000000..6ace479f0 --- /dev/null +++ b/dist/md/ic_crop_landscape.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_crop_landscape = void 0; +var ic_crop_landscape = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 5H5c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 12H5V7h14v10z" + }, + "children": [] + }] +}; +exports.ic_crop_landscape = ic_crop_landscape; \ No newline at end of file diff --git a/dist/md/ic_crop_landscape_outline.js b/dist/md/ic_crop_landscape_outline.js new file mode 100644 index 000000000..4ad0d3136 --- /dev/null +++ b/dist/md/ic_crop_landscape_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_crop_landscape_outline = void 0; +var ic_crop_landscape_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 5H5c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 12H5V7h14v10z" + }, + "children": [] + }] +}; +exports.ic_crop_landscape_outline = ic_crop_landscape_outline; \ No newline at end of file diff --git a/dist/md/ic_crop_landscape_twotone.js b/dist/md/ic_crop_landscape_twotone.js new file mode 100644 index 000000000..a32210bd8 --- /dev/null +++ b/dist/md/ic_crop_landscape_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_crop_landscape_twotone = void 0; +var ic_crop_landscape_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 5H5c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 12H5V7h14v10z" + }, + "children": [] + }] +}; +exports.ic_crop_landscape_twotone = ic_crop_landscape_twotone; \ No newline at end of file diff --git a/dist/md/ic_crop_original.js b/dist/md/ic_crop_original.js new file mode 100644 index 000000000..7cb7248d8 --- /dev/null +++ b/dist/md/ic_crop_original.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_crop_original = void 0; +var ic_crop_original = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-5.04-6.71l-2.75 3.54-1.96-2.36L6.5 17h11l-3.54-4.71z" + }, + "children": [] + }] +}; +exports.ic_crop_original = ic_crop_original; \ No newline at end of file diff --git a/dist/md/ic_crop_original_outline.js b/dist/md/ic_crop_original_outline.js new file mode 100644 index 000000000..c2539c8be --- /dev/null +++ b/dist/md/ic_crop_original_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_crop_original_outline = void 0; +var ic_crop_original_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-5.04-6.71l-2.75 3.54-1.96-2.36L6.5 17h11l-3.54-4.71z" + }, + "children": [] + }] +}; +exports.ic_crop_original_outline = ic_crop_original_outline; \ No newline at end of file diff --git a/dist/md/ic_crop_original_twotone.js b/dist/md/ic_crop_original_twotone.js new file mode 100644 index 000000000..f8e555e7f --- /dev/null +++ b/dist/md/ic_crop_original_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_crop_original_twotone = void 0; +var ic_crop_original_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-5.04-6.71l-2.75 3.54-1.96-2.36L6.5 17h11z" + }, + "children": [] + }] +}; +exports.ic_crop_original_twotone = ic_crop_original_twotone; \ No newline at end of file diff --git a/dist/md/ic_crop_outline.js b/dist/md/ic_crop_outline.js new file mode 100644 index 000000000..5a60d64d4 --- /dev/null +++ b/dist/md/ic_crop_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_crop_outline = void 0; +var ic_crop_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 15h2V7c0-1.1-.9-2-2-2H9v2h8v8zM7 17V1H5v4H1v2h4v10c0 1.1.9 2 2 2h10v4h2v-4h4v-2H7z" + }, + "children": [] + }] +}; +exports.ic_crop_outline = ic_crop_outline; \ No newline at end of file diff --git a/dist/md/ic_crop_portrait.js b/dist/md/ic_crop_portrait.js new file mode 100644 index 000000000..9c41e4fea --- /dev/null +++ b/dist/md/ic_crop_portrait.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_crop_portrait = void 0; +var ic_crop_portrait = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 3H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H7V5h10v14z" + }, + "children": [] + }] +}; +exports.ic_crop_portrait = ic_crop_portrait; \ No newline at end of file diff --git a/dist/md/ic_crop_portrait_outline.js b/dist/md/ic_crop_portrait_outline.js new file mode 100644 index 000000000..9d64d6de0 --- /dev/null +++ b/dist/md/ic_crop_portrait_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_crop_portrait_outline = void 0; +var ic_crop_portrait_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 3H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H7V5h10v14z" + }, + "children": [] + }] +}; +exports.ic_crop_portrait_outline = ic_crop_portrait_outline; \ No newline at end of file diff --git a/dist/md/ic_crop_portrait_twotone.js b/dist/md/ic_crop_portrait_twotone.js new file mode 100644 index 000000000..603ffef08 --- /dev/null +++ b/dist/md/ic_crop_portrait_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_crop_portrait_twotone = void 0; +var ic_crop_portrait_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 3H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H7V5h10v14z" + }, + "children": [] + }] +}; +exports.ic_crop_portrait_twotone = ic_crop_portrait_twotone; \ No newline at end of file diff --git a/dist/md/ic_crop_rotate.js b/dist/md/ic_crop_rotate.js new file mode 100644 index 000000000..cb8f5a2f3 --- /dev/null +++ b/dist/md/ic_crop_rotate.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_crop_rotate = void 0; +var ic_crop_rotate = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0zm0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7.47 21.49C4.2 19.93 1.86 16.76 1.5 13H0c.51 6.16 5.66 11 11.95 11 .23 0 .44-.02.66-.03L8.8 20.15l-1.33 1.34zM12.05 0c-.23 0-.44.02-.66.04l3.81 3.81 1.33-1.33C19.8 4.07 22.14 7.24 22.5 11H24c-.51-6.16-5.66-11-11.95-11zM16 14h2V8c0-1.11-.9-2-2-2h-6v2h6v6zm-8 2V4H6v2H4v2h2v8c0 1.1.89 2 2 2h8v2h2v-2h2v-2H8z" + }, + "children": [] + }] +}; +exports.ic_crop_rotate = ic_crop_rotate; \ No newline at end of file diff --git a/dist/md/ic_crop_rotate_outline.js b/dist/md/ic_crop_rotate_outline.js new file mode 100644 index 000000000..36ba6f002 --- /dev/null +++ b/dist/md/ic_crop_rotate_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_crop_rotate_outline = void 0; +var ic_crop_rotate_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7.47 21.49C4.2 19.93 1.86 16.76 1.5 13H0c.51 6.16 5.66 11 11.95 11 .23 0 .44-.02.66-.03L8.8 20.15l-1.33 1.34zM12.05 0c-.23 0-.44.02-.66.04l3.81 3.81 1.33-1.33C19.8 4.07 22.14 7.24 22.5 11H24c-.51-6.16-5.66-11-11.95-11zM16 14h2V8c0-1.11-.9-2-2-2h-6v2h6v6zm-8 2V4H6v2H4v2h2v8c0 1.1.89 2 2 2h8v2h2v-2h2v-2H8z" + }, + "children": [] + }] +}; +exports.ic_crop_rotate_outline = ic_crop_rotate_outline; \ No newline at end of file diff --git a/dist/md/ic_crop_rotate_twotone.js b/dist/md/ic_crop_rotate_twotone.js new file mode 100644 index 000000000..db0d7a396 --- /dev/null +++ b/dist/md/ic_crop_rotate_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_crop_rotate_twotone = void 0; +var ic_crop_rotate_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.95 24c.23 0 .44-.02.66-.03L8.8 20.15l-1.33 1.34C4.2 19.93 1.86 16.76 1.5 13H0c.51 6.16 5.66 11 11.95 11zm.1-24c-.23 0-.44.02-.66.04l3.81 3.81 1.33-1.33C19.8 4.07 22.14 7.24 22.5 11H24c-.51-6.16-5.66-11-11.95-11zM16 6h-6v2h6v6h2V8c0-1.11-.9-2-2-2zm2 12h2v-2H8V4H6v2H4v2h2v8c0 1.1.89 2 2 2h8v2h2v-2z" + }, + "children": [] + }] +}; +exports.ic_crop_rotate_twotone = ic_crop_rotate_twotone; \ No newline at end of file diff --git a/dist/md/ic_crop_square.js b/dist/md/ic_crop_square.js new file mode 100644 index 000000000..9082a4fd1 --- /dev/null +++ b/dist/md/ic_crop_square.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_crop_square = void 0; +var ic_crop_square = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 4H6c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H6V6h12v12z" + }, + "children": [] + }] +}; +exports.ic_crop_square = ic_crop_square; \ No newline at end of file diff --git a/dist/md/ic_crop_square_outline.js b/dist/md/ic_crop_square_outline.js new file mode 100644 index 000000000..3b5740cb0 --- /dev/null +++ b/dist/md/ic_crop_square_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_crop_square_outline = void 0; +var ic_crop_square_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 4H6c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H6V6h12v12z" + }, + "children": [] + }] +}; +exports.ic_crop_square_outline = ic_crop_square_outline; \ No newline at end of file diff --git a/dist/md/ic_crop_square_twotone.js b/dist/md/ic_crop_square_twotone.js new file mode 100644 index 000000000..7e3e7e5e7 --- /dev/null +++ b/dist/md/ic_crop_square_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_crop_square_twotone = void 0; +var ic_crop_square_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 4H6c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H6V6h12v12z" + }, + "children": [] + }] +}; +exports.ic_crop_square_twotone = ic_crop_square_twotone; \ No newline at end of file diff --git a/dist/md/ic_crop_twotone.js b/dist/md/ic_crop_twotone.js new file mode 100644 index 000000000..afaea59f6 --- /dev/null +++ b/dist/md/ic_crop_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_crop_twotone = void 0; +var ic_crop_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 17c0 1.1.9 2 2 2h10v4h2v-4h4v-2H7V1H5v4H1v2h4v10zm14-2V7c0-1.1-.9-2-2-2H9v2h8v8h2z" + }, + "children": [] + }] +}; +exports.ic_crop_twotone = ic_crop_twotone; \ No newline at end of file diff --git a/dist/md/ic_dangerous.js b/dist/md/ic_dangerous.js new file mode 100644 index 000000000..a82fa3df5 --- /dev/null +++ b/dist/md/ic_dangerous.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_dangerous = void 0; +var ic_dangerous = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.73 3H8.27L3 8.27v7.46L8.27 21h7.46L21 15.73V8.27L15.73 3zM17 15.74L15.74 17 12 13.26 8.26 17 7 15.74 10.74 12 7 8.26 8.26 7 12 10.74 15.74 7 17 8.26 13.26 12 17 15.74z" + }, + "children": [] + }] +}; +exports.ic_dangerous = ic_dangerous; \ No newline at end of file diff --git a/dist/md/ic_dashboard.js b/dist/md/ic_dashboard.js new file mode 100644 index 000000000..5a34e8f73 --- /dev/null +++ b/dist/md/ic_dashboard.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_dashboard = void 0; +var ic_dashboard = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 13h8V3H3v10zm0 8h8v-6H3v6zm10 0h8V11h-8v10zm0-18v6h8V3h-8z" + }, + "children": [] + }] +}; +exports.ic_dashboard = ic_dashboard; \ No newline at end of file diff --git a/dist/md/ic_dashboard_customize.js b/dist/md/ic_dashboard_customize.js new file mode 100644 index 000000000..202c4b2e1 --- /dev/null +++ b/dist/md/ic_dashboard_customize.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_dashboard_customize = void 0; +var ic_dashboard_customize = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 3h8v8H3zm10 0h8v8h-8zM3 13h8v8H3zm15 0h-2v3h-3v2h3v3h2v-3h3v-2h-3z" + }, + "children": [] + }] +}; +exports.ic_dashboard_customize = ic_dashboard_customize; \ No newline at end of file diff --git a/dist/md/ic_dashboard_outline.js b/dist/md/ic_dashboard_outline.js new file mode 100644 index 000000000..edfc7ba40 --- /dev/null +++ b/dist/md/ic_dashboard_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_dashboard_outline = void 0; +var ic_dashboard_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 5v2h-4V5h4M9 5v6H5V5h4m10 8v6h-4v-6h4M9 17v2H5v-2h4M21 3h-8v6h8V3zM11 3H3v10h8V3zm10 8h-8v10h8V11zm-10 4H3v6h8v-6z" + }, + "children": [] + }] +}; +exports.ic_dashboard_outline = ic_dashboard_outline; \ No newline at end of file diff --git a/dist/md/ic_dashboard_twotone.js b/dist/md/ic_dashboard_twotone.js new file mode 100644 index 000000000..7e74da0a0 --- /dev/null +++ b/dist/md/ic_dashboard_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_dashboard_twotone = void 0; +var ic_dashboard_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 5h4v6H5zm10 8h4v6h-4zM5 17h4v2H5zM15 5h4v2h-4z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 13h8V3H3v10zm2-8h4v6H5V5zm8 16h8V11h-8v10zm2-8h4v6h-4v-6zM13 3v6h8V3h-8zm6 4h-4V5h4v2zM3 21h8v-6H3v6zm2-4h4v2H5v-2z" + }, + "children": [] + }] +}; +exports.ic_dashboard_twotone = ic_dashboard_twotone; \ No newline at end of file diff --git a/dist/md/ic_data_usage.js b/dist/md/ic_data_usage.js new file mode 100644 index 000000000..d94c06ebc --- /dev/null +++ b/dist/md/ic_data_usage.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_data_usage = void 0; +var ic_data_usage = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 2.05v3.03c3.39.49 6 3.39 6 6.92 0 .9-.18 1.75-.48 2.54l2.6 1.53c.56-1.24.88-2.62.88-4.07 0-5.18-3.95-9.45-9-9.95zM12 19c-3.87 0-7-3.13-7-7 0-3.53 2.61-6.43 6-6.92V2.05c-5.06.5-9 4.76-9 9.95 0 5.52 4.47 10 9.99 10 3.31 0 6.24-1.61 8.06-4.09l-2.6-1.53C16.17 17.98 14.21 19 12 19z" + }, + "children": [] + }] +}; +exports.ic_data_usage = ic_data_usage; \ No newline at end of file diff --git a/dist/md/ic_data_usage_outline.js b/dist/md/ic_data_usage_outline.js new file mode 100644 index 000000000..1ff547cff --- /dev/null +++ b/dist/md/ic_data_usage_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_data_usage_outline = void 0; +var ic_data_usage_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 2.05v3.03c3.39.49 6 3.39 6 6.92 0 .9-.18 1.75-.48 2.54l2.6 1.53c.56-1.24.88-2.62.88-4.07 0-5.18-3.95-9.45-9-9.95zM12 19c-3.87 0-7-3.13-7-7 0-3.53 2.61-6.43 6-6.92V2.05c-5.06.5-9 4.76-9 9.95 0 5.52 4.47 10 9.99 10 3.31 0 6.24-1.61 8.06-4.09l-2.6-1.53C16.17 17.98 14.21 19 12 19z" + }, + "children": [] + }] +}; +exports.ic_data_usage_outline = ic_data_usage_outline; \ No newline at end of file diff --git a/dist/md/ic_data_usage_twotone.js b/dist/md/ic_data_usage_twotone.js new file mode 100644 index 000000000..c409b71f5 --- /dev/null +++ b/dist/md/ic_data_usage_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_data_usage_twotone = void 0; +var ic_data_usage_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 2.05v3.03c3.39.49 6 3.39 6 6.92 0 .9-.18 1.75-.48 2.54l2.6 1.53c.56-1.24.88-2.62.88-4.07 0-5.18-3.95-9.45-9-9.95zM12 19c-3.87 0-7-3.13-7-7 0-3.53 2.61-6.43 6-6.92V2.05c-5.06.5-9 4.76-9 9.95 0 5.52 4.47 10 9.99 10 3.31 0 6.24-1.61 8.06-4.09l-2.6-1.53C16.17 17.98 14.21 19 12 19z" + }, + "children": [] + }] +}; +exports.ic_data_usage_twotone = ic_data_usage_twotone; \ No newline at end of file diff --git a/dist/md/ic_date_range.js b/dist/md/ic_date_range.js new file mode 100644 index 000000000..354fe4870 --- /dev/null +++ b/dist/md/ic_date_range.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_date_range = void 0; +var ic_date_range = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 11H7v2h2v-2zm4 0h-2v2h2v-2zm4 0h-2v2h2v-2zm2-7h-1V2h-2v2H8V2H6v2H5c-1.11 0-1.99.9-1.99 2L3 20c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V9h14v11z" + }, + "children": [] + }] +}; +exports.ic_date_range = ic_date_range; \ No newline at end of file diff --git a/dist/md/ic_date_range_outline.js b/dist/md/ic_date_range_outline.js new file mode 100644 index 000000000..b53bc96ea --- /dev/null +++ b/dist/md/ic_date_range_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_date_range_outline = void 0; +var ic_date_range_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 11h2v2H7v-2zm14-5v14c0 1.1-.9 2-2 2H5c-1.11 0-2-.9-2-2l.01-14c0-1.1.88-2 1.99-2h1V2h2v2h8V2h2v2h1c1.1 0 2 .9 2 2zM5 8h14V6H5v2zm14 12V10H5v10h14zm-4-7h2v-2h-2v2zm-4 0h2v-2h-2v2z" + }, + "children": [] + }] +}; +exports.ic_date_range_outline = ic_date_range_outline; \ No newline at end of file diff --git a/dist/md/ic_date_range_twotone.js b/dist/md/ic_date_range_twotone.js new file mode 100644 index 000000000..2e03a2aab --- /dev/null +++ b/dist/md/ic_date_range_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_date_range_twotone = void 0; +var ic_date_range_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 8h14V6H5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 11h2v2H7zm12-7h-1V2h-2v2H8V2H6v2H5c-1.11 0-1.99.9-1.99 2L3 20c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V10h14v10zm0-12H5V6h14v2zm-4 3h2v2h-2zm-4 0h2v2h-2z" + }, + "children": [] + }] +}; +exports.ic_date_range_twotone = ic_date_range_twotone; \ No newline at end of file diff --git a/dist/md/ic_deck.js b/dist/md/ic_deck.js new file mode 100644 index 000000000..658e39aa3 --- /dev/null +++ b/dist/md/ic_deck.js @@ -0,0 +1,79 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_deck = void 0; +var ic_deck = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "22,9 12,2 2,9 11,9 11,22 13,22 13,9" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "22,9 12,2 2,9 11,9 11,22 13,22 13,9" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "4.14,12 2.18,12.37 3,16.74 3,22 5,22 5.02,18 7,18 7,22 9,22 9,16 4.9,16" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "4.14,12 2.18,12.37 3,16.74 3,22 5,22 5.02,18 7,18 7,22 9,22 9,16 4.9,16" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "19.1,16 15,16 15,22 17,22 17,18 18.98,18 19,22 21,22 21,16.74 21.82,12.37 19.86,12" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "19.1,16 15,16 15,22 17,22 17,18 18.98,18 19,22 21,22 21,16.74 21.82,12.37 19.86,12" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_deck = ic_deck; \ No newline at end of file diff --git a/dist/md/ic_deck_outline.js b/dist/md/ic_deck_outline.js new file mode 100644 index 000000000..6257f4ba1 --- /dev/null +++ b/dist/md/ic_deck_outline.js @@ -0,0 +1,79 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_deck_outline = void 0; +var ic_deck_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,9L12,2L2,9h9v13h2V9H22z M12,4.44L15.66,7H8.34L12,4.44z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,9L12,2L2,9h9v13h2V9H22z M12,4.44L15.66,7H8.34L12,4.44z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "4.14,12 2.18,12.37 3,16.74 3,22 5,22 5.02,18 7,18 7,22 9,22 9,16 4.9,16" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "4.14,12 2.18,12.37 3,16.74 3,22 5,22 5.02,18 7,18 7,22 9,22 9,16 4.9,16" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "19.1,16 15,16 15,22 17,22 17,18 18.98,18 19,22 21,22 21,16.74 21.82,12.37 19.86,12" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "19.1,16 15,16 15,22 17,22 17,18 18.98,18 19,22 21,22 21,16.74 21.82,12.37 19.86,12" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_deck_outline = ic_deck_outline; \ No newline at end of file diff --git a/dist/md/ic_deck_twotone.js b/dist/md/ic_deck_twotone.js new file mode 100644 index 000000000..1173cc158 --- /dev/null +++ b/dist/md/ic_deck_twotone.js @@ -0,0 +1,93 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_deck_twotone = void 0; +var ic_deck_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "opacity": ".3", + "points": "12,4.44 8.34,7 15.66,7" + }, + "children": [{ + "name": "polygon", + "attribs": { + "opacity": ".3", + "points": "12,4.44 8.34,7 15.66,7" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M22,9L12,2L2,9h9v13h2V9H22z M12,4.44L15.66,7H8.34L12,4.44z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,9L12,2L2,9h9v13h2V9H22z M12,4.44L15.66,7H8.34L12,4.44z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "4.14,12 2.18,12.37 3,16.74 3,22 5,22 5.02,18 7,18 7,22 9,22 9,16 4.9,16" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "4.14,12 2.18,12.37 3,16.74 3,22 5,22 5.02,18 7,18 7,22 9,22 9,16 4.9,16" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "19.1,16 15,16 15,22 17,22 17,18 18.98,18 19,22 21,22 21,16.74 21.82,12.37 19.86,12" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "19.1,16 15,16 15,22 17,22 17,18 18.98,18 19,22 21,22 21,16.74 21.82,12.37 19.86,12" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_deck_twotone = ic_deck_twotone; \ No newline at end of file diff --git a/dist/md/ic_dehaze.js b/dist/md/ic_dehaze.js new file mode 100644 index 000000000..045770e7b --- /dev/null +++ b/dist/md/ic_dehaze.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_dehaze = void 0; +var ic_dehaze = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M2 15.5v2h20v-2H2zm0-5v2h20v-2H2zm0-5v2h20v-2H2z" + }, + "children": [] + }] +}; +exports.ic_dehaze = ic_dehaze; \ No newline at end of file diff --git a/dist/md/ic_dehaze_outline.js b/dist/md/ic_dehaze_outline.js new file mode 100644 index 000000000..28fe60876 --- /dev/null +++ b/dist/md/ic_dehaze_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_dehaze_outline = void 0; +var ic_dehaze_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M2 16v2h20v-2H2zm0-5v2h20v-2H2zm0-5v2h20V6H2z" + }, + "children": [] + }] +}; +exports.ic_dehaze_outline = ic_dehaze_outline; \ No newline at end of file diff --git a/dist/md/ic_dehaze_twotone.js b/dist/md/ic_dehaze_twotone.js new file mode 100644 index 000000000..970015346 --- /dev/null +++ b/dist/md/ic_dehaze_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_dehaze_twotone = void 0; +var ic_dehaze_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M2 16v2h20v-2H2zm0-5v2h20v-2H2zm0-5v2h20V6H2z" + }, + "children": [] + }] +}; +exports.ic_dehaze_twotone = ic_dehaze_twotone; \ No newline at end of file diff --git a/dist/md/ic_delete.js b/dist/md/ic_delete.js new file mode 100644 index 000000000..d68c1d035 --- /dev/null +++ b/dist/md/ic_delete.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_delete = void 0; +var ic_delete = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM19 4h-3.5l-1-1h-5l-1 1H5v2h14V4z" + }, + "children": [] + }] +}; +exports.ic_delete = ic_delete; \ No newline at end of file diff --git a/dist/md/ic_delete_forever.js b/dist/md/ic_delete_forever.js new file mode 100644 index 000000000..a991064c5 --- /dev/null +++ b/dist/md/ic_delete_forever.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_delete_forever = void 0; +var ic_delete_forever = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zm2.46-7.12l1.41-1.41L12 12.59l2.12-2.12 1.41 1.41L13.41 14l2.12 2.12-1.41 1.41L12 15.41l-2.12 2.12-1.41-1.41L10.59 14l-2.13-2.12zM15.5 4l-1-1h-5l-1 1H5v2h14V4z" + }, + "children": [] + }] +}; +exports.ic_delete_forever = ic_delete_forever; \ No newline at end of file diff --git a/dist/md/ic_delete_forever_outline.js b/dist/md/ic_delete_forever_outline.js new file mode 100644 index 000000000..17d532bb1 --- /dev/null +++ b/dist/md/ic_delete_forever_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_delete_forever_outline = void 0; +var ic_delete_forever_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14.12 10.47L12 12.59l-2.13-2.12-1.41 1.41L10.59 14l-2.12 2.12 1.41 1.41L12 15.41l2.12 2.12 1.41-1.41L13.41 14l2.12-2.12zM15.5 4l-1-1h-5l-1 1H5v2h14V4zM6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM8 9h8v10H8V9z" + }, + "children": [] + }] +}; +exports.ic_delete_forever_outline = ic_delete_forever_outline; \ No newline at end of file diff --git a/dist/md/ic_delete_forever_twotone.js b/dist/md/ic_delete_forever_twotone.js new file mode 100644 index 000000000..3b8a5e7d3 --- /dev/null +++ b/dist/md/ic_delete_forever_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_delete_forever_twotone = void 0; +var ic_delete_forever_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 9H8v10h8V9zm-.47 7.12l-1.41 1.41L12 15.41l-2.12 2.12-1.41-1.41L10.59 14l-2.13-2.12 1.41-1.41L12 12.59l2.12-2.12 1.41 1.41L13.41 14l2.12 2.12z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14.12 10.47L12 12.59l-2.13-2.12-1.41 1.41L10.59 14l-2.12 2.12 1.41 1.41L12 15.41l2.12 2.12 1.41-1.41L13.41 14l2.12-2.12zM15.5 4l-1-1h-5l-1 1H5v2h14V4zM6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM8 9h8v10H8V9z" + }, + "children": [] + }] +}; +exports.ic_delete_forever_twotone = ic_delete_forever_twotone; \ No newline at end of file diff --git a/dist/md/ic_delete_outline.js b/dist/md/ic_delete_outline.js new file mode 100644 index 000000000..fb090cd91 --- /dev/null +++ b/dist/md/ic_delete_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_delete_outline = void 0; +var ic_delete_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 9v10H8V9h8m-1.5-6h-5l-1 1H5v2h14V4h-3.5l-1-1zM18 7H6v12c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7z" + }, + "children": [] + }] +}; +exports.ic_delete_outline = ic_delete_outline; \ No newline at end of file diff --git a/dist/md/ic_delete_outline_outline.js b/dist/md/ic_delete_outline_outline.js new file mode 100644 index 000000000..7de6769b5 --- /dev/null +++ b/dist/md/ic_delete_outline_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_delete_outline_outline = void 0; +var ic_delete_outline_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM8 9h8v10H8V9zm7.5-5l-1-1h-5l-1 1H5v2h14V4h-3.5z" + }, + "children": [] + }] +}; +exports.ic_delete_outline_outline = ic_delete_outline_outline; \ No newline at end of file diff --git a/dist/md/ic_delete_outline_twotone.js b/dist/md/ic_delete_outline_twotone.js new file mode 100644 index 000000000..dad5c3469 --- /dev/null +++ b/dist/md/ic_delete_outline_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_delete_outline_twotone = void 0; +var ic_delete_outline_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM8 9h8v10H8V9zm7.5-5l-1-1h-5l-1 1H5v2h14V4h-3.5z" + }, + "children": [] + }] +}; +exports.ic_delete_outline_twotone = ic_delete_outline_twotone; \ No newline at end of file diff --git a/dist/md/ic_delete_sweep.js b/dist/md/ic_delete_sweep.js new file mode 100644 index 000000000..c92cab5cb --- /dev/null +++ b/dist/md/ic_delete_sweep.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_delete_sweep = void 0; +var ic_delete_sweep = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 16h4v2h-4zm0-8h7v2h-7zm0 4h6v2h-6zM3 18c0 1.1.9 2 2 2h6c1.1 0 2-.9 2-2V8H3v10zM14 5h-3l-1-1H6L5 5H2v2h12z" + }, + "children": [] + }] +}; +exports.ic_delete_sweep = ic_delete_sweep; \ No newline at end of file diff --git a/dist/md/ic_delete_sweep_outline.js b/dist/md/ic_delete_sweep_outline.js new file mode 100644 index 000000000..17074dc64 --- /dev/null +++ b/dist/md/ic_delete_sweep_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_delete_sweep_outline = void 0; +var ic_delete_sweep_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 16h4v2h-4zm0-8h7v2h-7zm0 4h6v2h-6zM3 18c0 1.1.9 2 2 2h6c1.1 0 2-.9 2-2V8H3v10zm2-8h6v8H5v-8zm5-6H6L5 5H2v2h12V5h-3z" + }, + "children": [] + }] +}; +exports.ic_delete_sweep_outline = ic_delete_sweep_outline; \ No newline at end of file diff --git a/dist/md/ic_delete_sweep_twotone.js b/dist/md/ic_delete_sweep_twotone.js new file mode 100644 index 000000000..cd99778d6 --- /dev/null +++ b/dist/md/ic_delete_sweep_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_delete_sweep_twotone = void 0; +var ic_delete_sweep_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 10h6v8H5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 16h4v2h-4zm0-8h7v2h-7zm0 4h6v2h-6zM3 18c0 1.1.9 2 2 2h6c1.1 0 2-.9 2-2V8H3v10zm2-8h6v8H5v-8zm5-6H6L5 5H2v2h12V5h-3z" + }, + "children": [] + }] +}; +exports.ic_delete_sweep_twotone = ic_delete_sweep_twotone; \ No newline at end of file diff --git a/dist/md/ic_delete_twotone.js b/dist/md/ic_delete_twotone.js new file mode 100644 index 000000000..786c67605 --- /dev/null +++ b/dist/md/ic_delete_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_delete_twotone = void 0; +var ic_delete_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8 9h8v10H8z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.5 4l-1-1h-5l-1 1H5v2h14V4zM6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM8 9h8v10H8V9z" + }, + "children": [] + }] +}; +exports.ic_delete_twotone = ic_delete_twotone; \ No newline at end of file diff --git a/dist/md/ic_delivery_dining.js b/dist/md/ic_delivery_dining.js new file mode 100644 index 000000000..1a3a94e80 --- /dev/null +++ b/dist/md/ic_delivery_dining.js @@ -0,0 +1,85 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_delivery_dining = void 0; +var ic_delivery_dining = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,7c0-1.1-0.9-2-2-2h-3v2h3v2.65L13.52,14H10V9H6c-2.21,0-4,1.79-4,4v3h2c0,1.66,1.34,3,3,3s3-1.34,3-3h4.48L19,10.35V7 z M7,17c-0.55,0-1-0.45-1-1h2C8,16.55,7.55,17,7,17z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,7c0-1.1-0.9-2-2-2h-3v2h3v2.65L13.52,14H10V9H6c-2.21,0-4,1.79-4,4v3h2c0,1.66,1.34,3,3,3s3-1.34,3-3h4.48L19,10.35V7 z M7,17c-0.55,0-1-0.45-1-1h2C8,16.55,7.55,17,7,17z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "5", + "x": "5", + "y": "6" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "5", + "x": "5", + "y": "6" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19,13c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,13,19,13z M19,17c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S19.55,17,19,17z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,13c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,13,19,13z M19,17c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S19.55,17,19,17z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_delivery_dining = ic_delivery_dining; \ No newline at end of file diff --git a/dist/md/ic_departure_board.js b/dist/md/ic_departure_board.js new file mode 100644 index 000000000..619b6b523 --- /dev/null +++ b/dist/md/ic_departure_board.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_departure_board = void 0; +var ic_departure_board = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 1c-2.4 0-4.52 1.21-5.78 3.05.01-.01.01-.02.02-.03C9.84 4 9.42 4 9 4c-4.42 0-8 .5-8 4v10c0 .88.39 1.67 1 2.22V22c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h8v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1.78c.61-.55 1-1.34 1-2.22v-3.08c3.39-.49 6-3.39 6-6.92 0-3.87-3.13-7-7-7zM4.5 19c-.83 0-1.5-.67-1.5-1.5S3.67 16 4.5 16s1.5.67 1.5 1.5S5.33 19 4.5 19zM3 13V8h6c0 1.96.81 3.73 2.11 5H3zm10.5 6c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm2.5-6c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm.5-9H15v5l3.62 2.16.75-1.23-2.87-1.68z" + }, + "children": [] + }] +}; +exports.ic_departure_board = ic_departure_board; \ No newline at end of file diff --git a/dist/md/ic_departure_board_outline.js b/dist/md/ic_departure_board_outline.js new file mode 100644 index 000000000..a11d5e892 --- /dev/null +++ b/dist/md/ic_departure_board_outline.js @@ -0,0 +1,40 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_departure_board_outline = void 0; +var ic_departure_board_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "5.5", + "cy": "16.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12.5", + "cy": "16.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 1c-2.39 0-4.49 1.2-5.75 3.02C9.84 4.01 9.43 4 9 4c-4.42 0-8 .5-8 4v10c0 .88.39 1.67 1 2.22V22c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h8v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1.78c.61-.55 1-1.34 1-2.22v-3.08c3.39-.49 6-3.39 6-6.92 0-3.87-3.13-7-7-7zM9 6h.29c-.09.32-.16.66-.21.99H3.34C3.89 6.46 5.31 6 9 6zM3 8.99h6.08c.16 1.11.57 2.13 1.18 3.01H3V8.99zM15 18c0 .37-.21.62-.34.73l-.29.27H3.63l-.29-.27C3.21 18.62 3 18.37 3 18v-4h9.41c.78.47 1.65.79 2.59.92V18zm1-5c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm.5-9H15v5l3.62 2.16.75-1.23-2.87-1.68z" + }, + "children": [] + }] +}; +exports.ic_departure_board_outline = ic_departure_board_outline; \ No newline at end of file diff --git a/dist/md/ic_departure_board_twotone.js b/dist/md/ic_departure_board_twotone.js new file mode 100644 index 000000000..4a24a9ac0 --- /dev/null +++ b/dist/md/ic_departure_board_twotone.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_departure_board_twotone = void 0; +var ic_departure_board_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9.29 6H9c-3.69 0-5.11.46-5.66.99h5.74c.05-.33.12-.67.21-.99zM3 14v4c0 .37.21.62.34.73l.29.27h10.74l.29-.27c.13-.11.34-.36.34-.73v-3.08c-.94-.13-1.81-.45-2.59-.92H3zm2.5 4c-.83 0-1.5-.67-1.5-1.5S4.67 15 5.5 15s1.5.67 1.5 1.5S6.33 18 5.5 18zm8.5-1.5c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "5.5", + "cy": "16.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12.5", + "cy": "16.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 1c-2.39 0-4.49 1.2-5.75 3.02C9.84 4.01 9.43 4 9 4c-4.42 0-8 .5-8 4v10c0 .88.39 1.67 1 2.22V22c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h8v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1.78c.61-.55 1-1.34 1-2.22v-3.08c3.39-.49 6-3.39 6-6.92 0-3.87-3.13-7-7-7zM9 6h.29c-.09.32-.16.66-.21.99H3.34C3.89 6.46 5.31 6 9 6zM3 8.99h6.08c.16 1.11.57 2.13 1.18 3.01H3V8.99zM15 18c0 .37-.21.62-.34.73l-.29.27H3.63l-.29-.27C3.21 18.62 3 18.37 3 18v-4h9.41c.78.47 1.65.79 2.59.92V18zm1-5c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm.5-9H15v5l3.62 2.16.75-1.23-2.87-1.68z" + }, + "children": [] + }] +}; +exports.ic_departure_board_twotone = ic_departure_board_twotone; \ No newline at end of file diff --git a/dist/md/ic_description.js b/dist/md/ic_description.js new file mode 100644 index 000000000..242617f00 --- /dev/null +++ b/dist/md/ic_description.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_description = void 0; +var ic_description = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm2 16H8v-2h8v2zm0-4H8v-2h8v2zm-3-5V3.5L18.5 9H13z" + }, + "children": [] + }] +}; +exports.ic_description = ic_description; \ No newline at end of file diff --git a/dist/md/ic_description_outline.js b/dist/md/ic_description_outline.js new file mode 100644 index 000000000..081de9746 --- /dev/null +++ b/dist/md/ic_description_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_description_outline = void 0; +var ic_description_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8 16h8v2H8zm0-4h8v2H8zm6-10H6c-1.1 0-2 .9-2 2v16c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm4 18H6V4h7v5h5v11z" + }, + "children": [] + }] +}; +exports.ic_description_outline = ic_description_outline; \ No newline at end of file diff --git a/dist/md/ic_description_twotone.js b/dist/md/ic_description_twotone.js new file mode 100644 index 000000000..45d7b73b8 --- /dev/null +++ b/dist/md/ic_description_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_description_twotone = void 0; +var ic_description_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 4H6v16h12V9h-5V4zm3 14H8v-2h8v2zm0-6v2H8v-2h8z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8 16h8v2H8zm0-4h8v2H8zm6-10H6c-1.1 0-2 .9-2 2v16c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm4 18H6V4h7v5h5v11z" + }, + "children": [] + }] +}; +exports.ic_description_twotone = ic_description_twotone; \ No newline at end of file diff --git a/dist/md/ic_design_services.js b/dist/md/ic_design_services.js new file mode 100644 index 000000000..da8375a1e --- /dev/null +++ b/dist/md/ic_design_services.js @@ -0,0 +1,75 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_design_services = void 0; +var ic_design_services = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M16.24,11.51l1.57-1.57l-3.75-3.75l-1.57,1.57L8.35,3.63c-0.78-0.78-2.05-0.78-2.83,0l-1.9,1.9 c-0.78,0.78-0.78,2.05,0,2.83l4.13,4.13L3,17.25V21h3.75l4.76-4.76l4.13,4.13c0.95,0.95,2.23,0.6,2.83,0l1.9-1.9 c0.78-0.78,0.78-2.05,0-2.83L16.24,11.51z M9.18,11.07L5.04,6.94l1.89-1.9c0,0,0,0,0,0l1.27,1.27L7.02,7.5l1.41,1.41l1.19-1.19 l1.45,1.45L9.18,11.07z M17.06,18.96l-4.13-4.13l1.9-1.9l1.45,1.45l-1.19,1.19l1.41,1.41l1.19-1.19l1.27,1.27L17.06,18.96z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M16.24,11.51l1.57-1.57l-3.75-3.75l-1.57,1.57L8.35,3.63c-0.78-0.78-2.05-0.78-2.83,0l-1.9,1.9 c-0.78,0.78-0.78,2.05,0,2.83l4.13,4.13L3,17.25V21h3.75l4.76-4.76l4.13,4.13c0.95,0.95,2.23,0.6,2.83,0l1.9-1.9 c0.78-0.78,0.78-2.05,0-2.83L16.24,11.51z M9.18,11.07L5.04,6.94l1.89-1.9c0,0,0,0,0,0l1.27,1.27L7.02,7.5l1.41,1.41l1.19-1.19 l1.45,1.45L9.18,11.07z M17.06,18.96l-4.13-4.13l1.9-1.9l1.45,1.45l-1.19,1.19l1.41,1.41l1.19-1.19l1.27,1.27L17.06,18.96z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20.71,7.04c0.39-0.39,0.39-1.02,0-1.41l-2.34-2.34c-0.47-0.47-1.12-0.29-1.41,0l-1.83,1.83l3.75,3.75L20.71,7.04z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20.71,7.04c0.39-0.39,0.39-1.02,0-1.41l-2.34-2.34c-0.47-0.47-1.12-0.29-1.41,0l-1.83,1.83l3.75,3.75L20.71,7.04z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }] + }] +}; +exports.ic_design_services = ic_design_services; \ No newline at end of file diff --git a/dist/md/ic_design_services_outline.js b/dist/md/ic_design_services_outline.js new file mode 100644 index 000000000..7990be76b --- /dev/null +++ b/dist/md/ic_design_services_outline.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_design_services_outline = void 0; +var ic_design_services_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M20.97,7.27c0.39-0.39,0.39-1.02,0-1.41l-2.83-2.83c-0.39-0.39-1.02-0.39-1.41,0l-4.49,4.49L8.35,3.63 c-0.78-0.78-2.05-0.78-2.83,0l-1.9,1.9c-0.78,0.78-0.78,2.05,0,2.83l3.89,3.89L3,16.76V21h4.24l4.52-4.52l3.89,3.89 c0.95,0.95,2.23,0.6,2.83,0l1.9-1.9c0.78-0.78,0.78-2.05,0-2.83l-3.89-3.89L20.97,7.27z M5.04,6.94l1.89-1.9c0,0,0,0,0,0 l1.27,1.27L7.02,7.5l1.41,1.41l1.19-1.19l1.2,1.2l-1.9,1.9L5.04,6.94z M16.27,14.38l-1.19,1.19l1.41,1.41l1.19-1.19l1.27,1.27 l-1.9,1.9l-3.89-3.89l1.9-1.9L16.27,14.38z M6.41,19H5v-1.41l9.61-9.61l1.3,1.3l0.11,0.11L6.41,19z M16.02,6.56l1.41-1.41 l1.41,1.41l-1.41,1.41L16.02,6.56z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20.97,7.27c0.39-0.39,0.39-1.02,0-1.41l-2.83-2.83c-0.39-0.39-1.02-0.39-1.41,0l-4.49,4.49L8.35,3.63 c-0.78-0.78-2.05-0.78-2.83,0l-1.9,1.9c-0.78,0.78-0.78,2.05,0,2.83l3.89,3.89L3,16.76V21h4.24l4.52-4.52l3.89,3.89 c0.95,0.95,2.23,0.6,2.83,0l1.9-1.9c0.78-0.78,0.78-2.05,0-2.83l-3.89-3.89L20.97,7.27z M5.04,6.94l1.89-1.9c0,0,0,0,0,0 l1.27,1.27L7.02,7.5l1.41,1.41l1.19-1.19l1.2,1.2l-1.9,1.9L5.04,6.94z M16.27,14.38l-1.19,1.19l1.41,1.41l1.19-1.19l1.27,1.27 l-1.9,1.9l-3.89-3.89l1.9-1.9L16.27,14.38z M6.41,19H5v-1.41l9.61-9.61l1.3,1.3l0.11,0.11L6.41,19z M16.02,6.56l1.41-1.41 l1.41,1.41l-1.41,1.41L16.02,6.56z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_design_services_outline = ic_design_services_outline; \ No newline at end of file diff --git a/dist/md/ic_design_services_twotone.js b/dist/md/ic_design_services_twotone.js new file mode 100644 index 000000000..615e7af1d --- /dev/null +++ b/dist/md/ic_design_services_twotone.js @@ -0,0 +1,127 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_design_services_twotone = void 0; +var ic_design_services_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "opacity": ".3", + "points": "15.91,9.28 14.61,7.98 5,17.59 5,19 6.41,19 16.02,9.39" + }, + "children": [{ + "name": "polygon", + "attribs": { + "opacity": ".3", + "points": "15.91,9.28 14.61,7.98 5,17.59 5,19 6.41,19 16.02,9.39" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "opacity": ".3", + "points": "10.83,8.93 9.63,7.73 8.44,8.92 7.02,7.5 8.21,6.32 6.94,5.04 6.94,5.04 5.04,6.94 8.93,10.83" + }, + "children": [{ + "name": "polygon", + "attribs": { + "opacity": ".3", + "points": "10.83,8.93 9.63,7.73 8.44,8.92 7.02,7.5 8.21,6.32 6.94,5.04 6.94,5.04 5.04,6.94 8.93,10.83" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "opacity": ".3", + "points": "16.27,14.38 15.07,13.17 13.17,15.07 17.06,18.96 18.96,17.06 17.69,15.79 16.5,16.98 15.08,15.57" + }, + "children": [{ + "name": "polygon", + "attribs": { + "opacity": ".3", + "points": "16.27,14.38 15.07,13.17 13.17,15.07 17.06,18.96 18.96,17.06 17.69,15.79 16.5,16.98 15.08,15.57" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "opacity": ".3", + "transform": "matrix(0.7071 -0.7071 0.7071 0.7071 0.4645 14.2513)", + "width": "2", + "x": "16.44", + "y": "5.56" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "opacity": ".3", + "transform": "matrix(0.7071 -0.7071 0.7071 0.7071 0.4645 14.2513)", + "width": "2", + "x": "16.44", + "y": "5.56" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20.97,5.86l-2.83-2.83c-0.39-0.39-1.02-0.39-1.41,0l-4.49,4.49L8.35,3.63c-0.78-0.78-2.05-0.78-2.83,0l-1.9,1.9 c-0.78,0.78-0.78,2.05,0,2.83l3.89,3.89L3,16.76V21h4.24l4.52-4.52l3.89,3.89c0.95,0.95,2.23,0.6,2.83,0l1.9-1.9 c0.78-0.78,0.78-2.05,0-2.83l-3.89-3.89l4.49-4.49C21.36,6.88,21.36,6.25,20.97,5.86z M5.04,6.94l1.89-1.9c0,0,0,0,0,0l1.27,1.27 L7.02,7.5l1.41,1.41l1.19-1.19l1.2,1.2l-1.9,1.9L5.04,6.94z M6.41,19H5v-1.41l9.61-9.61l1.3,1.3l0.11,0.11L6.41,19z M16.5,16.98 l1.19-1.19l1.27,1.27l-1.9,1.9l-3.89-3.89l1.9-1.9l1.2,1.2l-1.19,1.19L16.5,16.98z M17.44,7.98l-1.41-1.41l1.41-1.41l1.41,1.41 L17.44,7.98z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20.97,5.86l-2.83-2.83c-0.39-0.39-1.02-0.39-1.41,0l-4.49,4.49L8.35,3.63c-0.78-0.78-2.05-0.78-2.83,0l-1.9,1.9 c-0.78,0.78-0.78,2.05,0,2.83l3.89,3.89L3,16.76V21h4.24l4.52-4.52l3.89,3.89c0.95,0.95,2.23,0.6,2.83,0l1.9-1.9 c0.78-0.78,0.78-2.05,0-2.83l-3.89-3.89l4.49-4.49C21.36,6.88,21.36,6.25,20.97,5.86z M5.04,6.94l1.89-1.9c0,0,0,0,0,0l1.27,1.27 L7.02,7.5l1.41,1.41l1.19-1.19l1.2,1.2l-1.9,1.9L5.04,6.94z M6.41,19H5v-1.41l9.61-9.61l1.3,1.3l0.11,0.11L6.41,19z M16.5,16.98 l1.19-1.19l1.27,1.27l-1.9,1.9l-3.89-3.89l1.9-1.9l1.2,1.2l-1.19,1.19L16.5,16.98z M17.44,7.98l-1.41-1.41l1.41-1.41l1.41,1.41 L17.44,7.98z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_design_services_twotone = ic_design_services_twotone; \ No newline at end of file diff --git a/dist/md/ic_desktop_access_disabled.js b/dist/md/ic_desktop_access_disabled.js new file mode 100644 index 000000000..768b74730 --- /dev/null +++ b/dist/md/ic_desktop_access_disabled.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_desktop_access_disabled = void 0; +var ic_desktop_access_disabled = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M23 16c0 1.1-.9 2-2 2h-1l-2-2h3V4H6L4 2h17c1.1 0 2 .9 2 2v12zm-5.5 2l-2-2zm-2.6 0l6 6 1.3-1.3-4.7-4.7-2-2L1.2 1.8 0 3.1l1 1V16c0 1.1.9 2 2 2h7v2H8v2h8v-2h-2v-2h.9zM3 16V6.1l9.9 9.9H3z" + }, + "children": [] + }] +}; +exports.ic_desktop_access_disabled = ic_desktop_access_disabled; \ No newline at end of file diff --git a/dist/md/ic_desktop_access_disabled_outline.js b/dist/md/ic_desktop_access_disabled_outline.js new file mode 100644 index 000000000..f35cc4625 --- /dev/null +++ b/dist/md/ic_desktop_access_disabled_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_desktop_access_disabled_outline = void 0; +var ic_desktop_access_disabled_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M1.41 1.69L0 3.1l1 .99V16c0 1.1.89 2 1.99 2H10v2H8v2h8v-2h-2v-2h.9l6 6 1.41-1.41-20.9-20.9zM2.99 16V6.09L12.9 16H2.99zM4.55 2l2 2H21v12h-2.45l2 2h.44c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H4.55z" + }, + "children": [] + }] +}; +exports.ic_desktop_access_disabled_outline = ic_desktop_access_disabled_outline; \ No newline at end of file diff --git a/dist/md/ic_desktop_access_disabled_twotone.js b/dist/md/ic_desktop_access_disabled_twotone.js new file mode 100644 index 000000000..4932262c6 --- /dev/null +++ b/dist/md/ic_desktop_access_disabled_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_desktop_access_disabled_twotone = void 0; +var ic_desktop_access_disabled_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M1.41 1.69L0 3.1l1 .99V16c0 1.1.89 2 1.99 2H10v2H8v2h8v-2h-2v-2h.9l6 6 1.41-1.41-20.9-20.9zM2.99 16V6.09L12.9 16H2.99zM4.55 2l2 2H21v12h-2.45l2 2h.44c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H4.55z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M2.99 6.09V16h9.91zM6.55 4l12 12H21V4z", + "opacity": ".3" + }, + "children": [] + }] +}; +exports.ic_desktop_access_disabled_twotone = ic_desktop_access_disabled_twotone; \ No newline at end of file diff --git a/dist/md/ic_desktop_mac.js b/dist/md/ic_desktop_mac.js new file mode 100644 index 000000000..a5f5b3e31 --- /dev/null +++ b/dist/md/ic_desktop_mac.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_desktop_mac = void 0; +var ic_desktop_mac = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7l-2 3v1h8v-1l-2-3h7c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 12H3V4h18v10z" + }, + "children": [] + }] +}; +exports.ic_desktop_mac = ic_desktop_mac; \ No newline at end of file diff --git a/dist/md/ic_desktop_mac_outline.js b/dist/md/ic_desktop_mac_outline.js new file mode 100644 index 000000000..ad001ddfb --- /dev/null +++ b/dist/md/ic_desktop_mac_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_desktop_mac_outline = void 0; +var ic_desktop_mac_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7l-2 3v1h8v-1l-2-3h7c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 12H3V4h18v10z" + }, + "children": [] + }] +}; +exports.ic_desktop_mac_outline = ic_desktop_mac_outline; \ No newline at end of file diff --git a/dist/md/ic_desktop_mac_twotone.js b/dist/md/ic_desktop_mac_twotone.js new file mode 100644 index 000000000..c77f4b0cd --- /dev/null +++ b/dist/md/ic_desktop_mac_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_desktop_mac_twotone = void 0; +var ic_desktop_mac_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 4h18v10H3z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7l-2 3v1h8v-1l-2-3h7c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 12H3V4h18v10z" + }, + "children": [] + }] +}; +exports.ic_desktop_mac_twotone = ic_desktop_mac_twotone; \ No newline at end of file diff --git a/dist/md/ic_desktop_windows.js b/dist/md/ic_desktop_windows.js new file mode 100644 index 000000000..3b86559f1 --- /dev/null +++ b/dist/md/ic_desktop_windows.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_desktop_windows = void 0; +var ic_desktop_windows = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7v2H8v2h8v-2h-2v-2h7c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H3V4h18v12z" + }, + "children": [] + }] +}; +exports.ic_desktop_windows = ic_desktop_windows; \ No newline at end of file diff --git a/dist/md/ic_desktop_windows_outline.js b/dist/md/ic_desktop_windows_outline.js new file mode 100644 index 000000000..68ebe40ac --- /dev/null +++ b/dist/md/ic_desktop_windows_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_desktop_windows_outline = void 0; +var ic_desktop_windows_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7v2H8v2h8v-2h-2v-2h7c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H3V4h18v12z" + }, + "children": [] + }] +}; +exports.ic_desktop_windows_outline = ic_desktop_windows_outline; \ No newline at end of file diff --git a/dist/md/ic_desktop_windows_twotone.js b/dist/md/ic_desktop_windows_twotone.js new file mode 100644 index 000000000..b1b5b71e3 --- /dev/null +++ b/dist/md/ic_desktop_windows_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_desktop_windows_twotone = void 0; +var ic_desktop_windows_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 4h18v12H3z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7v2H8v2h8v-2h-2v-2h7c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H3V4h18v12z" + }, + "children": [] + }] +}; +exports.ic_desktop_windows_twotone = ic_desktop_windows_twotone; \ No newline at end of file diff --git a/dist/md/ic_details.js b/dist/md/ic_details.js new file mode 100644 index 000000000..328475b7a --- /dev/null +++ b/dist/md/ic_details.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_details = void 0; +var ic_details = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12,3L2,21h20L12,3z M13,8.92L18.6,19H13V8.92z M11,8.92V19H5.4L11,8.92z" + }, + "children": [] + }] +}; +exports.ic_details = ic_details; \ No newline at end of file diff --git a/dist/md/ic_details_outline.js b/dist/md/ic_details_outline.js new file mode 100644 index 000000000..a228a51b3 --- /dev/null +++ b/dist/md/ic_details_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_details_outline = void 0; +var ic_details_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12,3L2,21h20L12,3z M13,8.92L18.6,19H13V8.92z M11,8.92V19H5.4L11,8.92z" + }, + "children": [] + }] +}; +exports.ic_details_outline = ic_details_outline; \ No newline at end of file diff --git a/dist/md/ic_details_twotone.js b/dist/md/ic_details_twotone.js new file mode 100644 index 000000000..04c9cbd7e --- /dev/null +++ b/dist/md/ic_details_twotone.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_details_twotone = void 0; +var ic_details_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13,8.92L18.6,19H13V8.92z M11,8.92V19H5.4L11,8.92z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12,3L2,21h20L12,3z M13,8.92L18.6,19H13V8.92z M11,8.92V19H5.4L11,8.92z" + }, + "children": [] + }] +}; +exports.ic_details_twotone = ic_details_twotone; \ No newline at end of file diff --git a/dist/md/ic_developer_board.js b/dist/md/ic_developer_board.js new file mode 100644 index 000000000..03be424af --- /dev/null +++ b/dist/md/ic_developer_board.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_developer_board = void 0; +var ic_developer_board = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M22 9V7h-2V5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-2h2v-2h-2v-2h2v-2h-2V9h2zm-4 10H4V5h14v14zM6 13h5v4H6zm6-6h4v3h-4zM6 7h5v5H6zm6 4h4v6h-4z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M0 0h24v24H0zm0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }] +}; +exports.ic_developer_board = ic_developer_board; \ No newline at end of file diff --git a/dist/md/ic_developer_board_outline.js b/dist/md/ic_developer_board_outline.js new file mode 100644 index 000000000..cb1c3b72b --- /dev/null +++ b/dist/md/ic_developer_board_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_developer_board_outline = void 0; +var ic_developer_board_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0zm0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 9V7h-2V5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-2h2v-2h-2v-2h2v-2h-2V9h2zm-4 10H4V5h14v14zM6 13h5v4H6v-4zm6-6h4v3h-4V7zM6 7h5v5H6V7zm6 4h4v6h-4v-6z" + }, + "children": [] + }] +}; +exports.ic_developer_board_outline = ic_developer_board_outline; \ No newline at end of file diff --git a/dist/md/ic_developer_board_twotone.js b/dist/md/ic_developer_board_twotone.js new file mode 100644 index 000000000..51386a0be --- /dev/null +++ b/dist/md/ic_developer_board_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_developer_board_twotone = void 0; +var ic_developer_board_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0zm0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 19h14V5H4v14zm8-12h4v3h-4V7zm0 4h4v6h-4v-6zM6 7h5v5H6V7zm0 6h5v4H6v-4z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 13h5v4H6zm0-6h5v5H6zm6 0h4v3h-4zm0 4h4v6h-4zm10-2V7h-2V5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-2h2v-2h-2v-2h2v-2h-2V9h2zm-4 10H4V5h14v14z" + }, + "children": [] + }] +}; +exports.ic_developer_board_twotone = ic_developer_board_twotone; \ No newline at end of file diff --git a/dist/md/ic_developer_mode.js b/dist/md/ic_developer_mode.js new file mode 100644 index 000000000..333af78c7 --- /dev/null +++ b/dist/md/ic_developer_mode.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_developer_mode = void 0; +var ic_developer_mode = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 5h10v2h2V3c0-1.1-.9-1.99-2-1.99L7 1c-1.1 0-2 .9-2 2v4h2V5zm8.41 11.59L20 12l-4.59-4.59L14 8.83 17.17 12 14 15.17l1.41 1.42zM10 15.17L6.83 12 10 8.83 8.59 7.41 4 12l4.59 4.59L10 15.17zM17 19H7v-2H5v4c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2v-4h-2v2z" + }, + "children": [] + }] +}; +exports.ic_developer_mode = ic_developer_mode; \ No newline at end of file diff --git a/dist/md/ic_developer_mode_outline.js b/dist/md/ic_developer_mode_outline.js new file mode 100644 index 000000000..0bca6950f --- /dev/null +++ b/dist/md/ic_developer_mode_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_developer_mode_outline = void 0; +var ic_developer_mode_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 5h10v2h2V3c0-1.1-.9-1.99-2-1.99L7 1c-1.1 0-2 .9-2 2v4h2V5zm8.41 11.59L20 12l-4.59-4.59L14 8.83 17.17 12 14 15.17l1.41 1.42zM10 15.17L6.83 12 10 8.83 8.59 7.41 4 12l4.59 4.59L10 15.17zM17 19H7v-2H5v4c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2v-4h-2v2z" + }, + "children": [] + }] +}; +exports.ic_developer_mode_outline = ic_developer_mode_outline; \ No newline at end of file diff --git a/dist/md/ic_developer_mode_twotone.js b/dist/md/ic_developer_mode_twotone.js new file mode 100644 index 000000000..ef87ef7f8 --- /dev/null +++ b/dist/md/ic_developer_mode_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_developer_mode_twotone = void 0; +var ic_developer_mode_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 5h10v2h2V3c0-1.1-.9-1.99-2-1.99L7 1c-1.1 0-2 .9-2 2v4h2V5zm8.41 11.59L20 12l-4.59-4.59L14 8.83 17.17 12 14 15.17l1.41 1.42zM10 15.17L6.83 12 10 8.83 8.59 7.41 4 12l4.59 4.59L10 15.17zM17 19H7v-2H5v4c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2v-4h-2v2z" + }, + "children": [] + }] +}; +exports.ic_developer_mode_twotone = ic_developer_mode_twotone; \ No newline at end of file diff --git a/dist/md/ic_device_hub.js b/dist/md/ic_device_hub.js new file mode 100644 index 000000000..5c7b45b8d --- /dev/null +++ b/dist/md/ic_device_hub.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_device_hub = void 0; +var ic_device_hub = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 16l-4-4V8.82C14.16 8.4 15 7.3 15 6c0-1.66-1.34-3-3-3S9 4.34 9 6c0 1.3.84 2.4 2 2.82V12l-4 4H3v5h5v-3.05l4-4.2 4 4.2V21h5v-5h-4z" + }, + "children": [] + }] +}; +exports.ic_device_hub = ic_device_hub; \ No newline at end of file diff --git a/dist/md/ic_device_hub_outline.js b/dist/md/ic_device_hub_outline.js new file mode 100644 index 000000000..b402dd6b8 --- /dev/null +++ b/dist/md/ic_device_hub_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_device_hub_outline = void 0; +var ic_device_hub_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0zm0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 16l-4-4V8.82C14.16 8.4 15 7.3 15 6c0-1.66-1.34-3-3-3S9 4.34 9 6c0 1.3.84 2.4 2 2.82V12l-4 4H3v5h5v-3.05l4-4.2 4 4.2V21h5v-5h-4z" + }, + "children": [] + }] +}; +exports.ic_device_hub_outline = ic_device_hub_outline; \ No newline at end of file diff --git a/dist/md/ic_device_hub_twotone.js b/dist/md/ic_device_hub_twotone.js new file mode 100644 index 000000000..ab9dee1fa --- /dev/null +++ b/dist/md/ic_device_hub_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_device_hub_twotone = void 0; +var ic_device_hub_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0zm0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 16l-4-4V8.82C14.16 8.4 15 7.3 15 6c0-1.66-1.34-3-3-3S9 4.34 9 6c0 1.3.84 2.4 2 2.82V12l-4 4H3v5h5v-3.05l4-4.2 4 4.2V21h5v-5h-4z" + }, + "children": [] + }] +}; +exports.ic_device_hub_twotone = ic_device_hub_twotone; \ No newline at end of file diff --git a/dist/md/ic_device_thermostat.js b/dist/md/ic_device_thermostat.js new file mode 100644 index 000000000..b37cea07d --- /dev/null +++ b/dist/md/ic_device_thermostat.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_device_thermostat = void 0; +var ic_device_thermostat = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 13V5c0-1.66-1.34-3-3-3S9 3.34 9 5v8c-1.21.91-2 2.37-2 4 0 2.76 2.24 5 5 5s5-2.24 5-5c0-1.63-.79-3.09-2-4zm-4-8c0-.55.45-1 1-1s1 .45 1 1h-1v1h1v2h-1v1h1v2h-2V5z" + }, + "children": [] + }] +}; +exports.ic_device_thermostat = ic_device_thermostat; \ No newline at end of file diff --git a/dist/md/ic_device_unknown.js b/dist/md/ic_device_unknown.js new file mode 100644 index 000000000..fedcf3f7f --- /dev/null +++ b/dist/md/ic_device_unknown.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_device_unknown = void 0; +var ic_device_unknown = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 1H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 18H7V5h10v14zM12 6.72c-1.96 0-3.5 1.52-3.5 3.47h1.75c0-.93.82-1.75 1.75-1.75s1.75.82 1.75 1.75c0 1.75-2.63 1.57-2.63 4.45h1.76c0-1.96 2.62-2.19 2.62-4.45 0-1.96-1.54-3.47-3.5-3.47zm-.88 8.8h1.76v1.76h-1.76z" + }, + "children": [] + }] +}; +exports.ic_device_unknown = ic_device_unknown; \ No newline at end of file diff --git a/dist/md/ic_device_unknown_outline.js b/dist/md/ic_device_unknown_outline.js new file mode 100644 index 000000000..ca20e432e --- /dev/null +++ b/dist/md/ic_device_unknown_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_device_unknown_outline = void 0; +var ic_device_unknown_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 1H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 18H7V5h10v14zM12 6.72c-1.96 0-3.5 1.52-3.5 3.47h1.75c0-.93.82-1.75 1.75-1.75s1.75.82 1.75 1.75c0 1.75-2.63 1.57-2.63 4.45h1.76c0-1.96 2.62-2.19 2.62-4.45 0-1.96-1.54-3.47-3.5-3.47zM11 16h2v2h-2v-2z" + }, + "children": [] + }] +}; +exports.ic_device_unknown_outline = ic_device_unknown_outline; \ No newline at end of file diff --git a/dist/md/ic_device_unknown_twotone.js b/dist/md/ic_device_unknown_twotone.js new file mode 100644 index 000000000..2f086c011 --- /dev/null +++ b/dist/md/ic_device_unknown_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_device_unknown_twotone = void 0; +var ic_device_unknown_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 19h10V5H7v14zm6-1h-2v-2h2v2zM12 6.72c1.96 0 3.5 1.51 3.5 3.47 0 2.26-2.62 2.49-2.62 4.45h-1.76c0-2.88 2.63-2.7 2.63-4.45 0-.93-.82-1.75-1.75-1.75s-1.75.82-1.75 1.75H8.5c0-1.95 1.54-3.47 3.5-3.47z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 16h2v2h-2zm6-15H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 18H7V5h10v14zM12 8.44c.93 0 1.75.82 1.75 1.75 0 1.75-2.63 1.57-2.63 4.45h1.76c0-1.96 2.62-2.19 2.62-4.45 0-1.96-1.54-3.47-3.5-3.47s-3.5 1.52-3.5 3.47h1.75c0-.93.82-1.75 1.75-1.75z" + }, + "children": [] + }] +}; +exports.ic_device_unknown_twotone = ic_device_unknown_twotone; \ No newline at end of file diff --git a/dist/md/ic_devices.js b/dist/md/ic_devices.js new file mode 100644 index 000000000..06a8199ad --- /dev/null +++ b/dist/md/ic_devices.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_devices = void 0; +var ic_devices = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 6h18V4H4c-1.1 0-2 .9-2 2v11H0v3h14v-3H4V6zm19 2h-6c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-1 9h-4v-7h4v7z" + }, + "children": [] + }] +}; +exports.ic_devices = ic_devices; \ No newline at end of file diff --git a/dist/md/ic_devices_other.js b/dist/md/ic_devices_other.js new file mode 100644 index 000000000..8385e8367 --- /dev/null +++ b/dist/md/ic_devices_other.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_devices_other = void 0; +var ic_devices_other = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 6h18V4H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h4v-2H3V6zm10 6H9v1.78c-.61.55-1 1.33-1 2.22s.39 1.67 1 2.22V20h4v-1.78c.61-.55 1-1.34 1-2.22s-.39-1.67-1-2.22V12zm-2 5.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM22 8h-6c-.5 0-1 .5-1 1v10c0 .5.5 1 1 1h6c.5 0 1-.5 1-1V9c0-.5-.5-1-1-1zm-1 10h-4v-8h4v8z" + }, + "children": [] + }] +}; +exports.ic_devices_other = ic_devices_other; \ No newline at end of file diff --git a/dist/md/ic_devices_other_outline.js b/dist/md/ic_devices_other_outline.js new file mode 100644 index 000000000..f1da40532 --- /dev/null +++ b/dist/md/ic_devices_other_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_devices_other_outline = void 0; +var ic_devices_other_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 6h18V4H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h4v-2H3V6zm10 6H9v1.78c-.61.55-1 1.33-1 2.22 0 .89.39 1.67 1 2.22V20h4v-1.78c.61-.55 1-1.34 1-2.22s-.39-1.67-1-2.22V12zm-2 5.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM22 8h-6c-.5 0-1 .5-1 1v10c0 .5.5 1 1 1h6c.5 0 1-.5 1-1V9c0-.5-.5-1-1-1zm-1 10h-4v-8h4v8z" + }, + "children": [] + }] +}; +exports.ic_devices_other_outline = ic_devices_other_outline; \ No newline at end of file diff --git a/dist/md/ic_devices_other_twotone.js b/dist/md/ic_devices_other_twotone.js new file mode 100644 index 000000000..448821bf2 --- /dev/null +++ b/dist/md/ic_devices_other_twotone.js @@ -0,0 +1,40 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_devices_other_twotone = void 0; +var ic_devices_other_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 10h4v8h-4z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "11", + "cy": "16", + "opacity": ".3", + "r": "1.5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 6h18V4H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h4v-2H3V6zm19 2h-6c-.5 0-1 .5-1 1v10c0 .5.5 1 1 1h6c.5 0 1-.5 1-1V9c0-.5-.5-1-1-1zm-1 10h-4v-8h4v8zm-8-6H9v1.78c-.61.55-1 1.33-1 2.22s.39 1.67 1 2.22V20h4v-1.78c.61-.55 1-1.34 1-2.22s-.39-1.67-1-2.22V12zm-2 5.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" + }, + "children": [] + }] +}; +exports.ic_devices_other_twotone = ic_devices_other_twotone; \ No newline at end of file diff --git a/dist/md/ic_devices_outline.js b/dist/md/ic_devices_outline.js new file mode 100644 index 000000000..bca0791e3 --- /dev/null +++ b/dist/md/ic_devices_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_devices_outline = void 0; +var ic_devices_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 6h18V4H4c-1.1 0-2 .9-2 2v11H0v3h14v-3H4V6zm19 2h-6c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-1 9h-4v-7h4v7z" + }, + "children": [] + }] +}; +exports.ic_devices_outline = ic_devices_outline; \ No newline at end of file diff --git a/dist/md/ic_devices_twotone.js b/dist/md/ic_devices_twotone.js new file mode 100644 index 000000000..84f7a934a --- /dev/null +++ b/dist/md/ic_devices_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_devices_twotone = void 0; +var ic_devices_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 10h4v7h-4z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M23 8h-6c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-1 9h-4v-7h4v7zM4 6h18V4H4c-1.1 0-2 .9-2 2v11H0v3h14v-3H4V6z" + }, + "children": [] + }] +}; +exports.ic_devices_twotone = ic_devices_twotone; \ No newline at end of file diff --git a/dist/md/ic_dialer_sip.js b/dist/md/ic_dialer_sip.js new file mode 100644 index 000000000..a6ffdb948 --- /dev/null +++ b/dist/md/ic_dialer_sip.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_dialer_sip = void 0; +var ic_dialer_sip = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 3h-1v5h1V3zm-2 2h-2V4h2V3h-3v3h2v1h-2v1h3V5zm3-2v5h1V6h2V3h-3zm2 2h-1V4h1v1zm0 10.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.01.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.27-.26.35-.65.24-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1z" + }, + "children": [] + }] +}; +exports.ic_dialer_sip = ic_dialer_sip; \ No newline at end of file diff --git a/dist/md/ic_dialer_sip_outline.js b/dist/md/ic_dialer_sip_outline.js new file mode 100644 index 000000000..23c22fdc6 --- /dev/null +++ b/dist/md/ic_dialer_sip_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_dialer_sip_outline = void 0; +var ic_dialer_sip_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 3h1v5h-1zm-1 2h-2V4h2V3h-3v3h2v1h-2v1h3zm3-2v5h1V6h2V3h-3zm2 2h-1V4h1v1zm0 10.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.7.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.27-.26.35-.65.24-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.46 2.59L5.79 8.8c-.41-1.21-.67-2.48-.76-3.8zM19 18.97c-1.32-.09-2.59-.35-3.8-.75l1.2-1.2c.85.24 1.71.39 2.59.45v1.5z" + }, + "children": [] + }] +}; +exports.ic_dialer_sip_outline = ic_dialer_sip_outline; \ No newline at end of file diff --git a/dist/md/ic_dialer_sip_twotone.js b/dist/md/ic_dialer_sip_twotone.js new file mode 100644 index 000000000..08f125992 --- /dev/null +++ b/dist/md/ic_dialer_sip_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_dialer_sip_twotone = void 0; +var ic_dialer_sip_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.2 18.21c1.2.41 2.48.67 3.8.75v-1.5c-.88-.06-1.75-.22-2.59-.45l-1.21 1.2zM6.54 5h-1.5c.09 1.32.35 2.59.75 3.79l1.2-1.21c-.24-.83-.39-1.7-.45-2.58z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 3h1v5h-1zm-4 4v1h3V5h-2V4h2V3h-3v3h2v1zm9-4h-3v5h1V6h2V3zm-1 2h-1V4h1v1zm1 11.5c0-.55-.45-1-1-1-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.7.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.27-.26.35-.65.24-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5zM5.03 5h1.5c.07.88.22 1.75.46 2.59L5.79 8.8c-.41-1.21-.67-2.48-.76-3.8zM19 18.97c-1.32-.09-2.59-.35-3.8-.75l1.2-1.2c.85.24 1.71.39 2.59.45v1.5z" + }, + "children": [] + }] +}; +exports.ic_dialer_sip_twotone = ic_dialer_sip_twotone; \ No newline at end of file diff --git a/dist/md/ic_dialpad.js b/dist/md/ic_dialpad.js new file mode 100644 index 000000000..8d96cd466 --- /dev/null +++ b/dist/md/ic_dialpad.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_dialpad = void 0; +var ic_dialpad = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 19c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM6 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12-8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-6 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_dialpad = ic_dialpad; \ No newline at end of file diff --git a/dist/md/ic_dialpad_outline.js b/dist/md/ic_dialpad_outline.js new file mode 100644 index 000000000..30fe8ae71 --- /dev/null +++ b/dist/md/ic_dialpad_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_dialpad_outline = void 0; +var ic_dialpad_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 19c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM6 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12-8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-6 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_dialpad_outline = ic_dialpad_outline; \ No newline at end of file diff --git a/dist/md/ic_dialpad_twotone.js b/dist/md/ic_dialpad_twotone.js new file mode 100644 index 000000000..be89d567b --- /dev/null +++ b/dist/md/ic_dialpad_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_dialpad_twotone = void 0; +var ic_dialpad_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 7c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm2 8c0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2 2-.9 2-2zm-8 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM6 5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm12-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM6 17c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0-6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm6 6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0-6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0-6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z" + }, + "children": [] + }] +}; +exports.ic_dialpad_twotone = ic_dialpad_twotone; \ No newline at end of file diff --git a/dist/md/ic_dinner_dining.js b/dist/md/ic_dinner_dining.js new file mode 100644 index 000000000..4fcb4362e --- /dev/null +++ b/dist/md/ic_dinner_dining.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_dinner_dining = void 0; +var ic_dinner_dining = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M2,19h20l-2,2H4L2,19z M5,6h1v1H5V6z M5,4h1v1H5V4z M9,4v1H7V4H9z M9,7H7V6h2V7z M6,15.23c-0.36,0.11-0.69,0.28-1,0.47V8h1 V15.23z M4,16.52C3.62,16.96,3.32,17.45,3.16,18h16.82c0.01-0.16,0.03-0.33,0.03-0.5c0-3.04-2.46-5.5-5.5-5.5 c-2.29,0-4.25,1.4-5.08,3.4C8.84,15.15,8.19,15,7.5,15c-0.17,0-0.33,0.02-0.5,0.04V8h2c1.03,0.06,1.9-0.96,2-2h10V5H11 c-0.1-1.05-0.97-1.97-2-2H3v1h1v1H3v1h1v1H3v1h1V16.52z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M2,19h20l-2,2H4L2,19z M5,6h1v1H5V6z M5,4h1v1H5V4z M9,4v1H7V4H9z M9,7H7V6h2V7z M6,15.23c-0.36,0.11-0.69,0.28-1,0.47V8h1 V15.23z M4,16.52C3.62,16.96,3.32,17.45,3.16,18h16.82c0.01-0.16,0.03-0.33,0.03-0.5c0-3.04-2.46-5.5-5.5-5.5 c-2.29,0-4.25,1.4-5.08,3.4C8.84,15.15,8.19,15,7.5,15c-0.17,0-0.33,0.02-0.5,0.04V8h2c1.03,0.06,1.9-0.96,2-2h10V5H11 c-0.1-1.05-0.97-1.97-2-2H3v1h1v1H3v1h1v1H3v1h1V16.52z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_dinner_dining = ic_dinner_dining; \ No newline at end of file diff --git a/dist/md/ic_directions.js b/dist/md/ic_directions.js new file mode 100644 index 000000000..3beb2e5c7 --- /dev/null +++ b/dist/md/ic_directions.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_directions = void 0; +var ic_directions = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21.71 11.29l-9-9c-.39-.39-1.02-.39-1.41 0l-9 9c-.39.39-.39 1.02 0 1.41l9 9c.39.39 1.02.39 1.41 0l9-9c.39-.38.39-1.01 0-1.41zM14 14.5V12h-4v3H8v-4c0-.55.45-1 1-1h5V7.5l3.5 3.5-3.5 3.5z" + }, + "children": [] + }] +}; +exports.ic_directions = ic_directions; \ No newline at end of file diff --git a/dist/md/ic_directions_bike.js b/dist/md/ic_directions_bike.js new file mode 100644 index 000000000..606a61f4f --- /dev/null +++ b/dist/md/ic_directions_bike.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_directions_bike = void 0; +var ic_directions_bike = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM5 12c-2.8 0-5 2.2-5 5s2.2 5 5 5 5-2.2 5-5-2.2-5-5-5zm0 8.5c-1.9 0-3.5-1.6-3.5-3.5s1.6-3.5 3.5-3.5 3.5 1.6 3.5 3.5-1.6 3.5-3.5 3.5zm5.8-10l2.4-2.4.8.8c1.3 1.3 3 2.1 5.1 2.1V9c-1.5 0-2.7-.6-3.6-1.5l-1.9-1.9c-.5-.4-1-.6-1.6-.6s-1.1.2-1.4.6L7.8 8.4c-.4.4-.6.9-.6 1.4 0 .6.2 1.1.6 1.4L11 14v5h2v-6.2l-2.2-2.3zM19 12c-2.8 0-5 2.2-5 5s2.2 5 5 5 5-2.2 5-5-2.2-5-5-5zm0 8.5c-1.9 0-3.5-1.6-3.5-3.5s1.6-3.5 3.5-3.5 3.5 1.6 3.5 3.5-1.6 3.5-3.5 3.5z" + }, + "children": [] + }] +}; +exports.ic_directions_bike = ic_directions_bike; \ No newline at end of file diff --git a/dist/md/ic_directions_bike_outline.js b/dist/md/ic_directions_bike_outline.js new file mode 100644 index 000000000..5bde05457 --- /dev/null +++ b/dist/md/ic_directions_bike_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_directions_bike_outline = void 0; +var ic_directions_bike_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM5 12c-2.8 0-5 2.2-5 5s2.2 5 5 5 5-2.2 5-5-2.2-5-5-5zm0 8.5c-1.9 0-3.5-1.6-3.5-3.5s1.6-3.5 3.5-3.5 3.5 1.6 3.5 3.5-1.6 3.5-3.5 3.5zm5.8-10l2.4-2.4.8.8c1.3 1.3 3 2.1 5.1 2.1V9c-1.5 0-2.7-.6-3.6-1.5l-1.9-1.9c-.5-.4-1-.6-1.6-.6s-1.1.2-1.4.6L7.8 8.4c-.4.4-.6.9-.6 1.4 0 .6.2 1.1.6 1.4L11 14v5h2v-6.2l-2.2-2.3zM19 12c-2.8 0-5 2.2-5 5s2.2 5 5 5 5-2.2 5-5-2.2-5-5-5zm0 8.5c-1.9 0-3.5-1.6-3.5-3.5s1.6-3.5 3.5-3.5 3.5 1.6 3.5 3.5-1.6 3.5-3.5 3.5z" + }, + "children": [] + }] +}; +exports.ic_directions_bike_outline = ic_directions_bike_outline; \ No newline at end of file diff --git a/dist/md/ic_directions_bike_twotone.js b/dist/md/ic_directions_bike_twotone.js new file mode 100644 index 000000000..cadc8ec58 --- /dev/null +++ b/dist/md/ic_directions_bike_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_directions_bike_twotone = void 0; +var ic_directions_bike_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM5 22c2.8 0 5-2.2 5-5s-2.2-5-5-5-5 2.2-5 5 2.2 5 5 5zm0-8.5c1.9 0 3.5 1.6 3.5 3.5S6.9 20.5 5 20.5 1.5 18.9 1.5 17s1.6-3.5 3.5-3.5zm2.8-2.3L11 14v5h2v-6.2l-2.2-2.3 2.4-2.4.8.8c1.3 1.3 3 2.1 5.1 2.1V9c-1.5 0-2.7-.6-3.6-1.5l-1.9-1.9c-.5-.4-1-.6-1.6-.6s-1.1.2-1.4.6L7.8 8.4c-.4.4-.6.9-.6 1.4 0 .6.2 1.1.6 1.4zM19 12c-2.8 0-5 2.2-5 5s2.2 5 5 5 5-2.2 5-5-2.2-5-5-5zm0 8.5c-1.9 0-3.5-1.6-3.5-3.5s1.6-3.5 3.5-3.5 3.5 1.6 3.5 3.5-1.6 3.5-3.5 3.5z" + }, + "children": [] + }] +}; +exports.ic_directions_bike_twotone = ic_directions_bike_twotone; \ No newline at end of file diff --git a/dist/md/ic_directions_boat.js b/dist/md/ic_directions_boat.js new file mode 100644 index 000000000..0b05f9260 --- /dev/null +++ b/dist/md/ic_directions_boat.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_directions_boat = void 0; +var ic_directions_boat = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 21c-1.39 0-2.78-.47-4-1.32-2.44 1.71-5.56 1.71-8 0C6.78 20.53 5.39 21 4 21H2v2h2c1.38 0 2.74-.35 4-.99 2.52 1.29 5.48 1.29 8 0 1.26.65 2.62.99 4 .99h2v-2h-2zM3.95 19H4c1.6 0 3.02-.88 4-2 .98 1.12 2.4 2 4 2s3.02-.88 4-2c.98 1.12 2.4 2 4 2h.05l1.89-6.68c.08-.26.06-.54-.06-.78s-.34-.42-.6-.5L20 10.62V6c0-1.1-.9-2-2-2h-3V1H9v3H6c-1.1 0-2 .9-2 2v4.62l-1.29.42c-.26.08-.48.26-.6.5s-.15.52-.06.78L3.95 19zM6 6h12v3.97L12 8 6 9.97V6z" + }, + "children": [] + }] +}; +exports.ic_directions_boat = ic_directions_boat; \ No newline at end of file diff --git a/dist/md/ic_directions_boat_outline.js b/dist/md/ic_directions_boat_outline.js new file mode 100644 index 000000000..046e5d107 --- /dev/null +++ b/dist/md/ic_directions_boat_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_directions_boat_outline = void 0; +var ic_directions_boat_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 3v1h-2V3h2m-1 7.11l5.38 1.77 2.39.78-1.12 3.97c-.54-.3-.94-.71-1.14-.94L16 13.96l-1.51 1.72c-.34.4-1.28 1.32-2.49 1.32s-2.15-.92-2.49-1.32L8 13.96l-1.51 1.72c-.2.23-.6.63-1.14.93l-1.13-3.96 2.4-.79L12 10.11M15 1H9v3H6c-1.1 0-2 .9-2 2v4.62l-1.29.42c-.26.08-.48.26-.6.5s-.15.52-.06.78L3.95 19H4c1.6 0 3.02-.88 4-2 .98 1.12 2.4 2 4 2s3.02-.88 4-2c.98 1.12 2.4 2 4 2h.05l1.89-6.68c.08-.26.06-.54-.06-.78s-.34-.42-.6-.5L20 10.62V6c0-1.1-.9-2-2-2h-3V1zM6 9.97V6h12v3.97L12 8 6 9.97zm10 9.71c-1.22.85-2.61 1.28-4 1.28s-2.78-.43-4-1.28C6.78 20.53 5.39 21 4 21H2v2h2c1.38 0 2.74-.35 4-.99 1.26.64 2.63.97 4 .97s2.74-.32 4-.97c1.26.65 2.62.99 4 .99h2v-2h-2c-1.39 0-2.78-.47-4-1.32z" + }, + "children": [] + }] +}; +exports.ic_directions_boat_outline = ic_directions_boat_outline; \ No newline at end of file diff --git a/dist/md/ic_directions_boat_twotone.js b/dist/md/ic_directions_boat_twotone.js new file mode 100644 index 000000000..20702be08 --- /dev/null +++ b/dist/md/ic_directions_boat_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_directions_boat_twotone = void 0; +var ic_directions_boat_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6.49 15.68L8 13.96l1.51 1.72c.34.4 1.28 1.32 2.49 1.32 1.21 0 2.15-.92 2.49-1.32L16 13.96l1.51 1.72c.2.23.6.64 1.14.94l1.12-3.97-2.39-.78L12 10.11l-5.38 1.77-2.4.79 1.13 3.96c.55-.31.94-.72 1.14-.95zM11 3h2v1h-2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3.95 19H4c1.6 0 3.02-.88 4-2 .98 1.12 2.4 2 4 2s3.02-.88 4-2c.98 1.12 2.4 2 4 2h.05l1.89-6.68c.08-.26.06-.54-.06-.78s-.34-.42-.6-.5L20 10.62V6c0-1.1-.9-2-2-2h-3V1H9v3H6c-1.1 0-2 .9-2 2v4.62l-1.29.42c-.26.08-.48.26-.6.5s-.15.52-.06.78L3.95 19zM11 3h2v1h-2V3zM6 6h12v3.97L12 8 6 9.97V6zm.62 5.87L12 10.11l5.38 1.77 2.39.78-1.12 3.97c-.54-.3-.94-.71-1.14-.94L16 13.96l-1.51 1.72c-.34.4-1.28 1.32-2.49 1.32-1.21 0-2.15-.92-2.49-1.32L8 13.96l-1.51 1.72c-.2.23-.6.63-1.14.93l-1.13-3.96 2.4-.78zM8 22.01c1.26.64 2.63.97 4 .97s2.74-.32 4-.97c1.26.65 2.62.99 4 .99h2v-2h-2c-1.39 0-2.78-.47-4-1.32-1.22.85-2.61 1.28-4 1.28s-2.78-.43-4-1.28C6.78 20.53 5.39 21 4 21H2v2h2c1.38 0 2.74-.35 4-.99z" + }, + "children": [] + }] +}; +exports.ic_directions_boat_twotone = ic_directions_boat_twotone; \ No newline at end of file diff --git a/dist/md/ic_directions_bus.js b/dist/md/ic_directions_bus.js new file mode 100644 index 000000000..d5cfe6fd1 --- /dev/null +++ b/dist/md/ic_directions_bus.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_directions_bus = void 0; +var ic_directions_bus = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 16c0 .88.39 1.67 1 2.22V20c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h8v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1.78c.61-.55 1-1.34 1-2.22V6c0-3.5-3.58-4-8-4s-8 .5-8 4v10zm3.5 1c-.83 0-1.5-.67-1.5-1.5S6.67 14 7.5 14s1.5.67 1.5 1.5S8.33 17 7.5 17zm9 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm1.5-6H6V6h12v5z" + }, + "children": [] + }] +}; +exports.ic_directions_bus = ic_directions_bus; \ No newline at end of file diff --git a/dist/md/ic_directions_bus_outline.js b/dist/md/ic_directions_bus_outline.js new file mode 100644 index 000000000..78a7de6ae --- /dev/null +++ b/dist/md/ic_directions_bus_outline.js @@ -0,0 +1,40 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_directions_bus_outline = void 0; +var ic_directions_bus_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2c-4.42 0-8 .5-8 4v10c0 .88.39 1.67 1 2.22V20c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h8v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1.78c.61-.55 1-1.34 1-2.22V6c0-3.5-3.58-4-8-4zm5.66 2.99H6.34C6.89 4.46 8.31 4 12 4s5.11.46 5.66.99zm.34 2V10H6V6.99h12zm-.34 9.74l-.29.27H6.63l-.29-.27C6.21 16.62 6 16.37 6 16v-4h12v4c0 .37-.21.62-.34.73z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "8.5", + "cy": "14.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "15.5", + "cy": "14.5", + "r": "1.5" + }, + "children": [] + }] +}; +exports.ic_directions_bus_outline = ic_directions_bus_outline; \ No newline at end of file diff --git a/dist/md/ic_directions_bus_twotone.js b/dist/md/ic_directions_bus_twotone.js new file mode 100644 index 000000000..bc2a26604 --- /dev/null +++ b/dist/md/ic_directions_bus_twotone.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_directions_bus_twotone = void 0; +var ic_directions_bus_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17.37 17l.29-.27c.13-.11.34-.36.34-.73v-4H6v4c0 .37.21.62.34.73l.29.27h10.74zM8.5 16c-.83 0-1.5-.67-1.5-1.5S7.67 13 8.5 13s1.5.67 1.5 1.5S9.33 16 8.5 16zm5.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5zM12 4c-3.69 0-5.11.46-5.66.99h11.31C17.11 4.46 15.69 4 12 4z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 21h1c.55 0 1-.45 1-1v-1.78c.61-.55 1-1.34 1-2.22V6c0-3.5-3.58-4-8-4s-8 .5-8 4v10c0 .88.39 1.67 1 2.22V20c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h8v1c0 .55.45 1 1 1zM12 4c3.69 0 5.11.46 5.66.99H6.34C6.89 4.46 8.31 4 12 4zM6 6.99h12V10H6V6.99zM8 17H6.63l-.29-.27C6.21 16.62 6 16.37 6 16v-4h12v4c0 .37-.21.62-.34.73l-.29.27H8z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "8.5", + "cy": "14.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "15.5", + "cy": "14.5", + "r": "1.5" + }, + "children": [] + }] +}; +exports.ic_directions_bus_twotone = ic_directions_bus_twotone; \ No newline at end of file diff --git a/dist/md/ic_directions_car.js b/dist/md/ic_directions_car.js new file mode 100644 index 000000000..d71ba39cf --- /dev/null +++ b/dist/md/ic_directions_car.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_directions_car = void 0; +var ic_directions_car = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18.92 6.01C18.72 5.42 18.16 5 17.5 5h-11c-.66 0-1.21.42-1.42 1.01L3 12v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.5 16c-.83 0-1.5-.67-1.5-1.5S5.67 13 6.5 13s1.5.67 1.5 1.5S7.33 16 6.5 16zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 11l1.5-4.5h11L19 11H5z" + }, + "children": [] + }] +}; +exports.ic_directions_car = ic_directions_car; \ No newline at end of file diff --git a/dist/md/ic_directions_car_outline.js b/dist/md/ic_directions_car_outline.js new file mode 100644 index 000000000..84582dc65 --- /dev/null +++ b/dist/md/ic_directions_car_outline.js @@ -0,0 +1,40 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_directions_car_outline = void 0; +var ic_directions_car_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18.92 6.01C18.72 5.42 18.16 5 17.5 5h-11c-.66 0-1.21.42-1.42 1.01L3 12v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.85 7h10.29l1.08 3.11H5.77L6.85 7zM19 17H5v-5h14v5z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "7.5", + "cy": "14.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "16.5", + "cy": "14.5", + "r": "1.5" + }, + "children": [] + }] +}; +exports.ic_directions_car_outline = ic_directions_car_outline; \ No newline at end of file diff --git a/dist/md/ic_directions_car_twotone.js b/dist/md/ic_directions_car_twotone.js new file mode 100644 index 000000000..4cc380963 --- /dev/null +++ b/dist/md/ic_directions_car_twotone.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_directions_car_twotone = void 0; +var ic_directions_car_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 17h14v-5H5v5zm11.5-4c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-9 0c.83 0 1.5.67 1.5 1.5S8.33 16 7.5 16 6 15.33 6 14.5 6.67 13 7.5 13z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18.92 6.01C18.72 5.42 18.16 5 17.5 5h-11c-.66 0-1.21.42-1.42 1.01L3 12v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.85 7h10.29l1.08 3.11H5.77L6.85 7zM19 17H5v-5h14v5z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "7.5", + "cy": "14.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "16.5", + "cy": "14.5", + "r": "1.5" + }, + "children": [] + }] +}; +exports.ic_directions_car_twotone = ic_directions_car_twotone; \ No newline at end of file diff --git a/dist/md/ic_directions_off.js b/dist/md/ic_directions_off.js new file mode 100644 index 000000000..dacce12e5 --- /dev/null +++ b/dist/md/ic_directions_off.js @@ -0,0 +1,87 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_directions_off = void 0; +var ic_directions_off = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M9.41,6.58L12,4h0l8,8l-2.58,2.59L18.83,16l2.58-2.59c0.78-0.78,0.78-2.05,0-2.83l-8-8c-0.78-0.78-2.05-0.78-2.83,0 L8,5.17L9.41,6.58z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M9.41,6.58L12,4h0l8,8l-2.58,2.59L18.83,16l2.58-2.59c0.78-0.78,0.78-2.05,0-2.83l-8-8c-0.78-0.78-2.05-0.78-2.83,0 L8,5.17L9.41,6.58z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M2.81,2.81L1.39,4.22L5.17,8l-2.58,2.59c-0.78,0.78-0.78,2.05,0,2.83l8,8c0.78,0.78,2.05,0.78,2.83,0L16,18.83l3.78,3.78 l1.41-1.41L2.81,2.81z M12,20l-8-8l2.58-2.59L8.17,11H7v2h3.17l1.5,1.5l-1.08,1.09L12,17l1.09-1.09l1.5,1.5L12,20z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M2.81,2.81L1.39,4.22L5.17,8l-2.58,2.59c-0.78,0.78-0.78,2.05,0,2.83l8,8c0.78,0.78,2.05,0.78,2.83,0L16,18.83l3.78,3.78 l1.41-1.41L2.81,2.81z M12,20l-8-8l2.58-2.59L8.17,11H7v2h3.17l1.5,1.5l-1.08,1.09L12,17l1.09-1.09l1.5,1.5L12,20z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "7.07", + "transform": "matrix(0.7071 -0.7071 0.7071 0.7071 -3.0134 12.8107)", + "width": "1.54", + "x": "13.19", + "y": "6.51" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "7.07", + "transform": "matrix(0.7071 -0.7071 0.7071 0.7071 -3.0134 12.8107)", + "width": "1.54", + "x": "13.19", + "y": "6.51" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_directions_off = ic_directions_off; \ No newline at end of file diff --git a/dist/md/ic_directions_off_outline.js b/dist/md/ic_directions_off_outline.js new file mode 100644 index 000000000..64c9074cc --- /dev/null +++ b/dist/md/ic_directions_off_outline.js @@ -0,0 +1,79 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_directions_off_outline = void 0; +var ic_directions_off_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M21.71,11.29l-9-9c-0.39-0.39-1.02-0.39-1.41,0L8.21,5.38l1.41,1.41L12,4.42L19.58,12l-2.38,2.38l1.41,1.41l3.09-3.09 C22.1,12.33,22.1,11.7,21.71,11.29z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21.71,11.29l-9-9c-0.39-0.39-1.02-0.39-1.41,0L8.21,5.38l1.41,1.41L12,4.42L19.58,12l-2.38,2.38l1.41,1.41l3.09-3.09 C22.1,12.33,22.1,11.7,21.71,11.29z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "13,7.5 13,10.17 15.17,12.34 16.5,11" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "13,7.5 13,10.17 15.17,12.34 16.5,11" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M1.39,4.22l3.99,3.99l-3.09,3.09c-0.39,0.39-0.39,1.02,0,1.41l9,9c0.39,0.39,1.02,0.39,1.41,0l3.09-3.09l3.99,3.99 l1.41-1.41L2.81,2.81L1.39,4.22z M8.03,10.85C8.02,10.9,7.99,10.95,7.99,11v4h2v-2.18l4.38,4.38L12,19.58L4.42,12l2.38-2.38 L8.03,10.85z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M1.39,4.22l3.99,3.99l-3.09,3.09c-0.39,0.39-0.39,1.02,0,1.41l9,9c0.39,0.39,1.02,0.39,1.41,0l3.09-3.09l3.99,3.99 l1.41-1.41L2.81,2.81L1.39,4.22z M8.03,10.85C8.02,10.9,7.99,10.95,7.99,11v4h2v-2.18l4.38,4.38L12,19.58L4.42,12l2.38-2.38 L8.03,10.85z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_directions_off_outline = ic_directions_off_outline; \ No newline at end of file diff --git a/dist/md/ic_directions_off_twotone.js b/dist/md/ic_directions_off_twotone.js new file mode 100644 index 000000000..0d7e729bf --- /dev/null +++ b/dist/md/ic_directions_off_twotone.js @@ -0,0 +1,79 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_directions_off_twotone = void 0; +var ic_directions_off_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M21.71,11.29l-9-9c-0.39-0.39-1.02-0.39-1.41,0L8.21,5.38l1.41,1.41L12,4.42L19.58,12l-2.38,2.38l1.41,1.41l3.09-3.09 C22.1,12.33,22.1,11.7,21.71,11.29z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21.71,11.29l-9-9c-0.39-0.39-1.02-0.39-1.41,0L8.21,5.38l1.41,1.41L12,4.42L19.58,12l-2.38,2.38l1.41,1.41l3.09-3.09 C22.1,12.33,22.1,11.7,21.71,11.29z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "13,7.5 13,10.17 15.17,12.34 16.5,11" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "13,7.5 13,10.17 15.17,12.34 16.5,11" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M1.39,4.22l3.99,3.99l-3.09,3.09c-0.39,0.39-0.39,1.02,0,1.41l9,9c0.39,0.39,1.02,0.39,1.41,0l3.09-3.09l3.99,3.99 l1.41-1.41L2.81,2.81L1.39,4.22z M8.03,10.85C8.02,10.9,7.99,10.95,7.99,11v4h2v-2.18l4.38,4.38L12,19.58L4.42,12l2.38-2.38 L8.03,10.85z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M1.39,4.22l3.99,3.99l-3.09,3.09c-0.39,0.39-0.39,1.02,0,1.41l9,9c0.39,0.39,1.02,0.39,1.41,0l3.09-3.09l3.99,3.99 l1.41-1.41L2.81,2.81L1.39,4.22z M8.03,10.85C8.02,10.9,7.99,10.95,7.99,11v4h2v-2.18l4.38,4.38L12,19.58L4.42,12l2.38-2.38 L8.03,10.85z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_directions_off_twotone = ic_directions_off_twotone; \ No newline at end of file diff --git a/dist/md/ic_directions_outline.js b/dist/md/ic_directions_outline.js new file mode 100644 index 000000000..7102086da --- /dev/null +++ b/dist/md/ic_directions_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_directions_outline = void 0; +var ic_directions_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22.43 10.59l-9.01-9.01c-.75-.75-2.07-.76-2.83 0l-9 9c-.78.78-.78 2.04 0 2.82l9 9c.39.39.9.58 1.41.58.51 0 1.02-.19 1.41-.58l8.99-8.99c.79-.76.8-2.02.03-2.82zm-10.42 10.4l-9-9 9-9 9 9-9 9zM8 11v4h2v-3h4v2.5l3.5-3.5L14 7.5V10H9c-.55 0-1 .45-1 1z" + }, + "children": [] + }] +}; +exports.ic_directions_outline = ic_directions_outline; \ No newline at end of file diff --git a/dist/md/ic_directions_railway.js b/dist/md/ic_directions_railway.js new file mode 100644 index 000000000..3f671ef53 --- /dev/null +++ b/dist/md/ic_directions_railway.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_directions_railway = void 0; +var ic_directions_railway = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 15.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V5c0-3.5-3.58-4-8-4s-8 .5-8 4v10.5zm8 1.5c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm6-7H6V5h12v5z" + }, + "children": [] + }] +}; +exports.ic_directions_railway = ic_directions_railway; \ No newline at end of file diff --git a/dist/md/ic_directions_railway_outline.js b/dist/md/ic_directions_railway_outline.js new file mode 100644 index 000000000..7d09f4d30 --- /dev/null +++ b/dist/md/ic_directions_railway_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_directions_railway_outline = void 0; +var ic_directions_railway_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 1c-4.42 0-8 .5-8 4v10.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V5c0-3.5-3.58-4-8-4zm0 2c6 0 6 1.2 6 2H6c0-.8 0-2 6-2zm6 4v3H6V7h12zm-1.5 10h-9c-.83 0-1.5-.67-1.5-1.5V12h12v3.5c0 .83-.67 1.5-1.5 1.5zM12 12.5c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_directions_railway_outline = ic_directions_railway_outline; \ No newline at end of file diff --git a/dist/md/ic_directions_railway_twotone.js b/dist/md/ic_directions_railway_twotone.js new file mode 100644 index 000000000..1c881d325 --- /dev/null +++ b/dist/md/ic_directions_railway_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_directions_railway_twotone = void 0; +var ic_directions_railway_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 15.5c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5V12H6v3.5zm6-3c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zM12 3C6 3 6 4.2 6 5h12c0-.8 0-2-6-2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 15.5V5c0-3.5-3.58-4-8-4s-8 .5-8 4v10.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5zm-2 0c0 .83-.67 1.5-1.5 1.5h-9c-.83 0-1.5-.67-1.5-1.5V12h12v3.5zm0-5.5H6V7h12v3zM6 5c0-.8 0-2 6-2s6 1.2 6 2H6zm6 11.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z" + }, + "children": [] + }] +}; +exports.ic_directions_railway_twotone = ic_directions_railway_twotone; \ No newline at end of file diff --git a/dist/md/ic_directions_run.js b/dist/md/ic_directions_run.js new file mode 100644 index 000000000..9296d68bb --- /dev/null +++ b/dist/md/ic_directions_run.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_directions_run = void 0; +var ic_directions_run = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13.49 5.48c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-3.6 13.9l1-4.4 2.1 2v6h2v-7.5l-2.1-2 .6-3c1.3 1.5 3.3 2.5 5.5 2.5v-2c-1.9 0-3.5-1-4.3-2.4l-1-1.6c-.4-.6-1-1-1.7-1-.3 0-.5.1-.8.1l-5.2 2.2v4.7h2v-3.4l1.8-.7-1.6 8.1-4.9-1-.4 2 7 1.4z" + }, + "children": [] + }] +}; +exports.ic_directions_run = ic_directions_run; \ No newline at end of file diff --git a/dist/md/ic_directions_run_outline.js b/dist/md/ic_directions_run_outline.js new file mode 100644 index 000000000..9e603e157 --- /dev/null +++ b/dist/md/ic_directions_run_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_directions_run_outline = void 0; +var ic_directions_run_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13.49 5.48c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-3.6 13.9l1-4.4 2.1 2v6h2v-7.5l-2.1-2 .6-3c1.3 1.5 3.3 2.5 5.5 2.5v-2c-1.9 0-3.5-1-4.3-2.4l-1-1.6c-.4-.6-1-1-1.7-1-.3 0-.5.1-.8.1l-5.2 2.2v4.7h2v-3.4l1.8-.7-1.6 8.1-4.9-1-.4 2 7 1.4z" + }, + "children": [] + }] +}; +exports.ic_directions_run_outline = ic_directions_run_outline; \ No newline at end of file diff --git a/dist/md/ic_directions_run_twotone.js b/dist/md/ic_directions_run_twotone.js new file mode 100644 index 000000000..fc5e6f2ec --- /dev/null +++ b/dist/md/ic_directions_run_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_directions_run_twotone = void 0; +var ic_directions_run_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.49 3.48c0 1.1.9 2 2 2s2-.9 2-2-.9-2-2-2-2 .9-2 2zm-.6 11.5l2.1 2v6h2v-7.5l-2.1-2 .6-3c1.3 1.5 3.3 2.5 5.5 2.5v-2c-1.9 0-3.5-1-4.3-2.4l-1-1.6c-.4-.6-1-1-1.7-1-.3 0-.5.1-.8.1l-5.2 2.2v4.7h2v-3.4l1.8-.7-1.6 8.1-4.9-1-.4 2 7 1.4 1-4.4z" + }, + "children": [] + }] +}; +exports.ic_directions_run_twotone = ic_directions_run_twotone; \ No newline at end of file diff --git a/dist/md/ic_directions_subway.js b/dist/md/ic_directions_subway.js new file mode 100644 index 000000000..c374587ed --- /dev/null +++ b/dist/md/ic_directions_subway.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_directions_subway = void 0; +var ic_directions_subway = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2c-4.42 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zM7.5 17c-.83 0-1.5-.67-1.5-1.5S6.67 14 7.5 14s1.5.67 1.5 1.5S8.33 17 7.5 17zm3.5-6H6V6h5v5zm5.5 6c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm1.5-6h-5V6h5v5z" + }, + "children": [] + }] +}; +exports.ic_directions_subway = ic_directions_subway; \ No newline at end of file diff --git a/dist/md/ic_directions_subway_outline.js b/dist/md/ic_directions_subway_outline.js new file mode 100644 index 000000000..a2f371223 --- /dev/null +++ b/dist/md/ic_directions_subway_outline.js @@ -0,0 +1,40 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_directions_subway_outline = void 0; +var ic_directions_subway_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zm5.66 3H6.43c.61-.52 2.06-1 5.57-1 3.71 0 5.12.46 5.66 1zM11 7v3H6V7h5zm2 0h5v3h-5V7zm3.5 10h-9c-.83 0-1.5-.67-1.5-1.5V12h12v3.5c0 .83-.67 1.5-1.5 1.5z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "8.5", + "cy": "14.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "15.5", + "cy": "14.5", + "r": "1.5" + }, + "children": [] + }] +}; +exports.ic_directions_subway_outline = ic_directions_subway_outline; \ No newline at end of file diff --git a/dist/md/ic_directions_subway_twotone.js b/dist/md/ic_directions_subway_twotone.js new file mode 100644 index 000000000..34ceb8955 --- /dev/null +++ b/dist/md/ic_directions_subway_twotone.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_directions_subway_twotone = void 0; +var ic_directions_subway_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4c-3.51 0-4.96.48-5.57 1h11.23c-.54-.54-1.95-1-5.66-1zM6 15.5c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5V12H6v3.5zm9.5-2.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-7 0c.83 0 1.5.67 1.5 1.5S9.33 16 8.5 16 7 15.33 7 14.5 7.67 13 8.5 13z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zm0 2c3.71 0 5.12.46 5.66 1H6.43c.61-.52 2.06-1 5.57-1zM6 7h5v3H6V7zm12 8.5c0 .83-.67 1.5-1.5 1.5h-9c-.83 0-1.5-.67-1.5-1.5V12h12v3.5zm0-5.5h-5V7h5v3z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "8.5", + "cy": "14.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "15.5", + "cy": "14.5", + "r": "1.5" + }, + "children": [] + }] +}; +exports.ic_directions_subway_twotone = ic_directions_subway_twotone; \ No newline at end of file diff --git a/dist/md/ic_directions_transit.js b/dist/md/ic_directions_transit.js new file mode 100644 index 000000000..ad3f23d46 --- /dev/null +++ b/dist/md/ic_directions_transit.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_directions_transit = void 0; +var ic_directions_transit = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2c-4.42 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zM7.5 17c-.83 0-1.5-.67-1.5-1.5S6.67 14 7.5 14s1.5.67 1.5 1.5S8.33 17 7.5 17zm3.5-6H6V6h5v5zm5.5 6c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm1.5-6h-5V6h5v5z" + }, + "children": [] + }] +}; +exports.ic_directions_transit = ic_directions_transit; \ No newline at end of file diff --git a/dist/md/ic_directions_transit_outline.js b/dist/md/ic_directions_transit_outline.js new file mode 100644 index 000000000..6aba5649e --- /dev/null +++ b/dist/md/ic_directions_transit_outline.js @@ -0,0 +1,40 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_directions_transit_outline = void 0; +var ic_directions_transit_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zm5.66 3H6.43c.61-.52 2.06-1 5.57-1 3.71 0 5.12.46 5.66 1zM11 7v3H6V7h5zm2 0h5v3h-5V7zm3.5 10h-9c-.83 0-1.5-.67-1.5-1.5V12h12v3.5c0 .83-.67 1.5-1.5 1.5z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "8.5", + "cy": "14.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "15.5", + "cy": "14.5", + "r": "1.5" + }, + "children": [] + }] +}; +exports.ic_directions_transit_outline = ic_directions_transit_outline; \ No newline at end of file diff --git a/dist/md/ic_directions_transit_twotone.js b/dist/md/ic_directions_transit_twotone.js new file mode 100644 index 000000000..b82e9760e --- /dev/null +++ b/dist/md/ic_directions_transit_twotone.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_directions_transit_twotone = void 0; +var ic_directions_transit_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4c-3.51 0-4.96.48-5.57 1h11.23c-.54-.54-1.95-1-5.66-1zM7.5 17h9c.83 0 1.5-.67 1.5-1.5V12H6v3.5c0 .83.67 1.5 1.5 1.5zm8-4c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-7 0c.83 0 1.5.67 1.5 1.5S9.33 16 8.5 16 7 15.33 7 14.5 7.67 13 8.5 13z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 6v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4-4 0-8 .5-8 4zm14 4h-5V7h5v3zm-6-6c3.71 0 5.12.46 5.66 1H6.43c.61-.52 2.06-1 5.57-1zM6 7h5v3H6V7zm0 5h12v3.5c0 .83-.67 1.5-1.5 1.5h-9c-.83 0-1.5-.67-1.5-1.5V12z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "8.5", + "cy": "14.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "15.5", + "cy": "14.5", + "r": "1.5" + }, + "children": [] + }] +}; +exports.ic_directions_transit_twotone = ic_directions_transit_twotone; \ No newline at end of file diff --git a/dist/md/ic_directions_twotone.js b/dist/md/ic_directions_twotone.js new file mode 100644 index 000000000..6289249df --- /dev/null +++ b/dist/md/ic_directions_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_directions_twotone = void 0; +var ic_directions_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3.01 12l9 9L21 12l-9-9-8.99 9zM14 7.5l3.5 3.5-3.5 3.5V12h-4v3H8v-4c0-.55.45-1 1-1h5V7.5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13.42 1.58c-.75-.75-2.07-.76-2.83 0l-9 9c-.78.78-.78 2.04 0 2.82l9 9c.39.39.9.58 1.41.58.51 0 1.02-.19 1.41-.58l8.99-8.99c.78-.76.79-2.03.02-2.82l-9-9.01zm-1.41 19.41l-9-9 9-9 9 9-9 9zM8 11v4h2v-3h4v2.5l3.5-3.5L14 7.5V10H9c-.55 0-1 .45-1 1z" + }, + "children": [] + }] +}; +exports.ic_directions_twotone = ic_directions_twotone; \ No newline at end of file diff --git a/dist/md/ic_directions_walk.js b/dist/md/ic_directions_walk.js new file mode 100644 index 000000000..48e79f265 --- /dev/null +++ b/dist/md/ic_directions_walk.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_directions_walk = void 0; +var ic_directions_walk = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM9.8 8.9L7 23h2.1l1.8-8 2.1 2v6h2v-7.5l-2.1-2 .6-3C14.8 12 16.8 13 19 13v-2c-1.9 0-3.5-1-4.3-2.4l-1-1.6c-.4-.6-1-1-1.7-1-.3 0-.5.1-.8.1L6 8.3V13h2V9.6l1.8-.7" + }, + "children": [] + }] +}; +exports.ic_directions_walk = ic_directions_walk; \ No newline at end of file diff --git a/dist/md/ic_directions_walk_outline.js b/dist/md/ic_directions_walk_outline.js new file mode 100644 index 000000000..058d7b3da --- /dev/null +++ b/dist/md/ic_directions_walk_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_directions_walk_outline = void 0; +var ic_directions_walk_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM9.8 8.9L7 23h2.1l1.8-8 2.1 2v6h2v-7.5l-2.1-2 .6-3C14.8 12 16.8 13 19 13v-2c-1.9 0-3.5-1-4.3-2.4l-1-1.6c-.56-.89-1.68-1.25-2.65-.84L6 8.3V13h2V9.6l1.8-.7" + }, + "children": [] + }] +}; +exports.ic_directions_walk_outline = ic_directions_walk_outline; \ No newline at end of file diff --git a/dist/md/ic_directions_walk_twotone.js b/dist/md/ic_directions_walk_twotone.js new file mode 100644 index 000000000..4c7351a5c --- /dev/null +++ b/dist/md/ic_directions_walk_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_directions_walk_twotone = void 0; +var ic_directions_walk_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM9.8 8.9L7 23h2.1l1.8-8 2.1 2v6h2v-7.5l-2.1-2 .6-3C14.8 12 16.8 13 19 13v-2c-1.9 0-3.5-1-4.3-2.4l-1-1.6c-.56-.89-1.68-1.25-2.65-.84L6 8.3V13h2V9.6l1.8-.7" + }, + "children": [] + }] +}; +exports.ic_directions_walk_twotone = ic_directions_walk_twotone; \ No newline at end of file diff --git a/dist/md/ic_dirty_lens.js b/dist/md/ic_dirty_lens.js new file mode 100644 index 000000000..91906f04b --- /dev/null +++ b/dist/md/ic_dirty_lens.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_dirty_lens = void 0; +var ic_dirty_lens = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12.95 19H20V7H4v12h7.24c.14-.98.42-2.05-.16-2.43-.89-.59-1.27 2.06-2.8 1.35-1.39-1.12 1.05-1.29.5-3.27-.22-.79-2.28.36-2.4-1.24-.08-1 1.49-.74 1.51-1.49.03-.75-1.03-1.05-.25-1.91.22-.24.71-.26.91-.19.79.27 1.55 1.82 2.51 1.19 1.03-.66-1.88-2.35 0-2.86 1.64-.44 1.31 2.08 2.65 2.44 1.94.52 2.65-4.55 4.41-2.33 1.85 2.33-3.43 2.27-2.85 4.01.34 1.01 2.15-1.2 2.76.53.64 1.83-3.09.82-3.04 1.66.06.83 2.41.55 1.64 2.12-1.14 1.86-3-1.03-3.81.09-.39.57-.09 1.49.13 2.33zM20 5c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V7c0-1.1.9-2 2-2h3.17L9 3h6l1.83 2H20zm-1.86 13.01c-.47 0-.86-.38-.86-.86s.38-.86.86-.86c.47 0 .86.38.86.86s-.38.86-.86.86z" + }, + "children": [] + }] +}; +exports.ic_dirty_lens = ic_dirty_lens; \ No newline at end of file diff --git a/dist/md/ic_disabled_by_default.js b/dist/md/ic_disabled_by_default.js new file mode 100644 index 000000000..e0f2d0b31 --- /dev/null +++ b/dist/md/ic_disabled_by_default.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_disabled_by_default = void 0; +var ic_disabled_by_default = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3,3v18h18V3H3z M17,15.59L15.59,17L12,13.41L8.41,17L7,15.59L10.59,12L7,8.41L8.41,7L12,10.59L15.59,7L17,8.41L13.41,12 L17,15.59z" + }, + "children": [] + }] +}; +exports.ic_disabled_by_default = ic_disabled_by_default; \ No newline at end of file diff --git a/dist/md/ic_disabled_by_default_outline.js b/dist/md/ic_disabled_by_default_outline.js new file mode 100644 index 000000000..928dd6fa1 --- /dev/null +++ b/dist/md/ic_disabled_by_default_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_disabled_by_default_outline = void 0; +var ic_disabled_by_default_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19,19H5V5h14V19z M3,3v18h18V3H3z M17,15.59L15.59,17L12,13.41L8.41,17L7,15.59L10.59,12L7,8.41L8.41,7L12,10.59L15.59,7 L17,8.41L13.41,12L17,15.59z" + }, + "children": [] + }] +}; +exports.ic_disabled_by_default_outline = ic_disabled_by_default_outline; \ No newline at end of file diff --git a/dist/md/ic_disabled_by_default_twotone.js b/dist/md/ic_disabled_by_default_twotone.js new file mode 100644 index 000000000..94cfcc457 --- /dev/null +++ b/dist/md/ic_disabled_by_default_twotone.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_disabled_by_default_twotone = void 0; +var ic_disabled_by_default_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5,5v14h14V5H5z M17,15.59L15.59,17L12,13.41L8.41,17L7,15.59L10.59,12L7,8.41L8.41,7L12,10.59L15.59,7 L17,8.41L13.41,12L17,15.59z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19,19H5V5h14V19z M3,3v18h18V3H3z M17,15.59L15.59,17L12,13.41L8.41,17L7,15.59L10.59,12L7,8.41L8.41,7L12,10.59L15.59,7 L17,8.41L13.41,12L17,15.59z" + }, + "children": [] + }] +}; +exports.ic_disabled_by_default_twotone = ic_disabled_by_default_twotone; \ No newline at end of file diff --git a/dist/md/ic_disc_full.js b/dist/md/ic_disc_full.js new file mode 100644 index 000000000..c89fd2d41 --- /dev/null +++ b/dist/md/ic_disc_full.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_disc_full = void 0; +var ic_disc_full = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 16h2v-2h-2v2zm0-9v5h2V7h-2zM10 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 10c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" + }, + "children": [] + }] +}; +exports.ic_disc_full = ic_disc_full; \ No newline at end of file diff --git a/dist/md/ic_disc_full_outline.js b/dist/md/ic_disc_full_outline.js new file mode 100644 index 000000000..8b8bdf36a --- /dev/null +++ b/dist/md/ic_disc_full_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_disc_full_outline = void 0; +var ic_disc_full_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 7h2v5h-2zM10 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zm10-4h2v2h-2zm-10-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_disc_full_outline = ic_disc_full_outline; \ No newline at end of file diff --git a/dist/md/ic_disc_full_twotone.js b/dist/md/ic_disc_full_twotone.js new file mode 100644 index 000000000..44694c64e --- /dev/null +++ b/dist/md/ic_disc_full_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_disc_full_twotone = void 0; +var ic_disc_full_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 8c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 14h2v2h-2zM10 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zM20 7h2v5h-2zm-10 3c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_disc_full_twotone = ic_disc_full_twotone; \ No newline at end of file diff --git a/dist/md/ic_dns.js b/dist/md/ic_dns.js new file mode 100644 index 000000000..c61b848bd --- /dev/null +++ b/dist/md/ic_dns.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_dns = void 0; +var ic_dns = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 13H4c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h16c.55 0 1-.45 1-1v-6c0-.55-.45-1-1-1zM7 19c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM20 3H4c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h16c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1zM7 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" + }, + "children": [] + }] +}; +exports.ic_dns = ic_dns; \ No newline at end of file diff --git a/dist/md/ic_dns_outline.js b/dist/md/ic_dns_outline.js new file mode 100644 index 000000000..52672eaaa --- /dev/null +++ b/dist/md/ic_dns_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_dns_outline = void 0; +var ic_dns_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 15v4H5v-4h14m1-2H4c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h16c.55 0 1-.45 1-1v-6c0-.55-.45-1-1-1zM7 18.5c-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM19 5v4H5V5h14m1-2H4c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h16c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1zM7 8.5c-.82 0-1.5-.67-1.5-1.5S6.18 5.5 7 5.5s1.5.68 1.5 1.5S7.83 8.5 7 8.5z" + }, + "children": [] + }] +}; +exports.ic_dns_outline = ic_dns_outline; \ No newline at end of file diff --git a/dist/md/ic_dns_twotone.js b/dist/md/ic_dns_twotone.js new file mode 100644 index 000000000..d372605f3 --- /dev/null +++ b/dist/md/ic_dns_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_dns_twotone = void 0; +var ic_dns_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 9h14V5H5v4zm2-3.5c.83 0 1.5.67 1.5 1.5S7.83 8.5 7 8.5 5.5 7.83 5.5 7 6.17 5.5 7 5.5zM5 19h14v-4H5v4zm2-3.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 13H4c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h16c.55 0 1-.45 1-1v-6c0-.55-.45-1-1-1zm-1 6H5v-4h14v4zm-12-.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM20 3H4c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h16c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1zm-1 6H5V5h14v4zM7 8.5c.83 0 1.5-.67 1.5-1.5S7.83 5.5 7 5.5 5.5 6.17 5.5 7 6.17 8.5 7 8.5z" + }, + "children": [] + }] +}; +exports.ic_dns_twotone = ic_dns_twotone; \ No newline at end of file diff --git a/dist/md/ic_do_disturb_alt_outline.js b/dist/md/ic_do_disturb_alt_outline.js new file mode 100644 index 000000000..77e377935 --- /dev/null +++ b/dist/md/ic_do_disturb_alt_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_do_disturb_alt_outline = void 0; +var ic_do_disturb_alt_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zM4 12c0-4.4 3.6-8 8-8 1.8 0 3.5.6 4.9 1.7L5.7 16.9C4.6 15.5 4 13.8 4 12zm8 8c-1.8 0-3.5-.6-4.9-1.7L18.3 7.1C19.4 8.5 20 10.2 20 12c0 4.4-3.6 8-8 8z" + }, + "children": [] + }] +}; +exports.ic_do_disturb_alt_outline = ic_do_disturb_alt_outline; \ No newline at end of file diff --git a/dist/md/ic_do_disturb_alt_twotone.js b/dist/md/ic_do_disturb_alt_twotone.js new file mode 100644 index 000000000..114e71cd2 --- /dev/null +++ b/dist/md/ic_do_disturb_alt_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_do_disturb_alt_twotone = void 0; +var ic_do_disturb_alt_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zM4 12c0-4.4 3.6-8 8-8 1.8 0 3.5.6 4.9 1.7L5.7 16.9C4.6 15.5 4 13.8 4 12zm8 8c-1.8 0-3.5-.6-4.9-1.7L18.3 7.1C19.4 8.5 20 10.2 20 12c0 4.4-3.6 8-8 8z" + }, + "children": [] + }] +}; +exports.ic_do_disturb_alt_twotone = ic_do_disturb_alt_twotone; \ No newline at end of file diff --git a/dist/md/ic_do_disturb_off_outline.js b/dist/md/ic_do_disturb_off_outline.js new file mode 100644 index 000000000..0521f1533 --- /dev/null +++ b/dist/md/ic_do_disturb_off_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_do_disturb_off_outline = void 0; +var ic_do_disturb_off_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4c4.41 0 8 3.59 8 8 0 1.41-.37 2.73-1.01 3.88l1.46 1.46C21.43 15.79 22 13.96 22 12c0-5.52-4.48-10-10-10-1.96 0-3.79.57-5.33 1.55l1.46 1.46C9.27 4.37 10.59 4 12 4zm5 7h-2.88l2 2H17zM2.41 2.13L1 3.54l2.78 2.78C2.66 7.93 2 9.89 2 12c0 5.52 4.48 10 10 10 2.11 0 4.07-.66 5.68-1.78L20.46 23l1.41-1.41L2.41 2.13zM12 20c-4.41 0-8-3.59-8-8 0-1.56.45-3 1.23-4.23L8.46 11H7v2h3.46l5.77 5.77C15 19.55 13.56 20 12 20z" + }, + "children": [] + }] +}; +exports.ic_do_disturb_off_outline = ic_do_disturb_off_outline; \ No newline at end of file diff --git a/dist/md/ic_do_disturb_off_twotone.js b/dist/md/ic_do_disturb_off_twotone.js new file mode 100644 index 000000000..5b571c95c --- /dev/null +++ b/dist/md/ic_do_disturb_off_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_do_disturb_off_twotone = void 0; +var ic_do_disturb_off_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4c-1.41 0-2.73.37-3.88 1.01l6 5.99H17v2h-.88L19 15.88c.63-1.15 1-2.47 1-3.88 0-4.41-3.59-8-8-8zm0 16c1.56 0 3-.45 4.23-1.23L10.46 13H7v-2h1.46L5.23 7.77C4.45 9 4 10.44 4 12c0 4.41 3.59 8 8 8z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4c4.41 0 8 3.59 8 8 0 1.41-.37 2.73-1.01 3.88l1.46 1.46C21.43 15.79 22 13.96 22 12c0-5.52-4.48-10-10-10-1.96 0-3.79.57-5.33 1.55l1.46 1.46C9.27 4.37 10.59 4 12 4zm5 7h-2.88l2 2H17zM2.41 2.13L1 3.54l2.78 2.78C2.66 7.93 2 9.89 2 12c0 5.52 4.48 10 10 10 2.11 0 4.07-.66 5.68-1.78L20.46 23l1.41-1.41L2.41 2.13zM12 20c-4.41 0-8-3.59-8-8 0-1.56.45-3 1.23-4.23L8.46 11H7v2h3.46l5.77 5.77C15 19.55 13.56 20 12 20z" + }, + "children": [] + }] +}; +exports.ic_do_disturb_off_twotone = ic_do_disturb_off_twotone; \ No newline at end of file diff --git a/dist/md/ic_do_disturb_on_outline.js b/dist/md/ic_do_disturb_on_outline.js new file mode 100644 index 000000000..8bbaee226 --- /dev/null +++ b/dist/md/ic_do_disturb_on_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_do_disturb_on_outline = void 0; +var ic_do_disturb_on_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-5-9h10v2H7z" + }, + "children": [] + }] +}; +exports.ic_do_disturb_on_outline = ic_do_disturb_on_outline; \ No newline at end of file diff --git a/dist/md/ic_do_disturb_on_twotone.js b/dist/md/ic_do_disturb_on_twotone.js new file mode 100644 index 000000000..4c6901da6 --- /dev/null +++ b/dist/md/ic_do_disturb_on_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_do_disturb_on_twotone = void 0; +var ic_do_disturb_on_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm5 9H7v-2h10v2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-5-9h10v2H7z" + }, + "children": [] + }] +}; +exports.ic_do_disturb_on_twotone = ic_do_disturb_on_twotone; \ No newline at end of file diff --git a/dist/md/ic_do_disturb_outline.js b/dist/md/ic_do_disturb_outline.js new file mode 100644 index 000000000..f1aa60935 --- /dev/null +++ b/dist/md/ic_do_disturb_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_do_disturb_outline = void 0; +var ic_do_disturb_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9L16.9 18.31C15.55 19.37 13.85 20 12 20zm6.31-3.1L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9z" + }, + "children": [] + }] +}; +exports.ic_do_disturb_outline = ic_do_disturb_outline; \ No newline at end of file diff --git a/dist/md/ic_do_disturb_twotone.js b/dist/md/ic_do_disturb_twotone.js new file mode 100644 index 000000000..0e1867f7e --- /dev/null +++ b/dist/md/ic_do_disturb_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_do_disturb_twotone = void 0; +var ic_do_disturb_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9L16.9 18.31C15.55 19.37 13.85 20 12 20zm6.31-3.1L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9z" + }, + "children": [] + }] +}; +exports.ic_do_disturb_twotone = ic_do_disturb_twotone; \ No newline at end of file diff --git a/dist/md/ic_do_not_disturb.js b/dist/md/ic_do_not_disturb.js new file mode 100644 index 000000000..0677df48d --- /dev/null +++ b/dist/md/ic_do_not_disturb.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_do_not_disturb = void 0; +var ic_do_not_disturb = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9L16.9 18.31C15.55 19.37 13.85 20 12 20zm6.31-3.1L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9z" + }, + "children": [] + }] +}; +exports.ic_do_not_disturb = ic_do_not_disturb; \ No newline at end of file diff --git a/dist/md/ic_do_not_disturb_alt.js b/dist/md/ic_do_not_disturb_alt.js new file mode 100644 index 000000000..67bcd61ae --- /dev/null +++ b/dist/md/ic_do_not_disturb_alt.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_do_not_disturb_alt = void 0; +var ic_do_not_disturb_alt = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M-618-1464H782v3600H-618zM0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zM4 12c0-4.4 3.6-8 8-8 1.8 0 3.5.6 4.9 1.7L5.7 16.9C4.6 15.5 4 13.8 4 12zm8 8c-1.8 0-3.5-.6-4.9-1.7L18.3 7.1C19.4 8.5 20 10.2 20 12c0 4.4-3.6 8-8 8z" + }, + "children": [] + }] +}; +exports.ic_do_not_disturb_alt = ic_do_not_disturb_alt; \ No newline at end of file diff --git a/dist/md/ic_do_not_disturb_off.js b/dist/md/ic_do_not_disturb_off.js new file mode 100644 index 000000000..1dc5dbde7 --- /dev/null +++ b/dist/md/ic_do_not_disturb_off.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_do_not_disturb_off = void 0; +var ic_do_not_disturb_off = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 11v2h-1.46l4.68 4.68C21.34 16.07 22 14.11 22 12c0-5.52-4.48-10-10-10-2.11 0-4.07.66-5.68 1.78L13.54 11H17zM2.27 2.27L1 3.54l2.78 2.78C2.66 7.93 2 9.89 2 12c0 5.52 4.48 10 10 10 2.11 0 4.07-.66 5.68-1.78L20.46 23l1.27-1.27L11 11 2.27 2.27zM7 13v-2h1.46l2 2H7z" + }, + "children": [] + }] +}; +exports.ic_do_not_disturb_off = ic_do_not_disturb_off; \ No newline at end of file diff --git a/dist/md/ic_do_not_disturb_on.js b/dist/md/ic_do_not_disturb_on.js new file mode 100644 index 000000000..e2f130254 --- /dev/null +++ b/dist/md/ic_do_not_disturb_on.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_do_not_disturb_on = void 0; +var ic_do_not_disturb_on = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5 11H7v-2h10v2z" + }, + "children": [] + }] +}; +exports.ic_do_not_disturb_on = ic_do_not_disturb_on; \ No newline at end of file diff --git a/dist/md/ic_do_not_step.js b/dist/md/ic_do_not_step.js new file mode 100644 index 000000000..9d1c8d8c8 --- /dev/null +++ b/dist/md/ic_do_not_step.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_do_not_step = void 0; +var ic_do_not_step = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M1.39,4.22l7.9,7.9c0.18,0.2,0.18,0.5-0.01,0.7c-0.1,0.1-0.23,0.15-0.35,0.15s-0.26-0.05-0.35-0.15L6.87,11.1 c-0.11,0.4-0.26,0.78-0.45,1.12l1.4,1.4c0.2,0.2,0.2,0.51,0,0.71c-0.1,0.1-0.23,0.15-0.35,0.15s-0.26-0.05-0.35-0.15l-1.27-1.27 c-0.24,0.29-0.5,0.56-0.77,0.8l1.28,1.28c0.2,0.2,0.2,0.51,0,0.71C6.26,15.95,6.13,16,6,16s-0.26-0.05-0.35-0.15l-1.38-1.38 c-0.69,0.46-1.39,0.79-1.97,1.02C1.52,15.8,1,16.53,1,17.37V20h9.5l3.33-3.33l5.94,5.94l1.41-1.41L2.81,2.81L1.39,4.22z M18.51,15.68l-1.41-1.41l4.48-4.48L23,11.2L18.51,15.68z M20.88,9.08l-4.48,4.48L9.3,6.47L13.8,2L20.88,9.08z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M1.39,4.22l7.9,7.9c0.18,0.2,0.18,0.5-0.01,0.7c-0.1,0.1-0.23,0.15-0.35,0.15s-0.26-0.05-0.35-0.15L6.87,11.1 c-0.11,0.4-0.26,0.78-0.45,1.12l1.4,1.4c0.2,0.2,0.2,0.51,0,0.71c-0.1,0.1-0.23,0.15-0.35,0.15s-0.26-0.05-0.35-0.15l-1.27-1.27 c-0.24,0.29-0.5,0.56-0.77,0.8l1.28,1.28c0.2,0.2,0.2,0.51,0,0.71C6.26,15.95,6.13,16,6,16s-0.26-0.05-0.35-0.15l-1.38-1.38 c-0.69,0.46-1.39,0.79-1.97,1.02C1.52,15.8,1,16.53,1,17.37V20h9.5l3.33-3.33l5.94,5.94l1.41-1.41L2.81,2.81L1.39,4.22z M18.51,15.68l-1.41-1.41l4.48-4.48L23,11.2L18.51,15.68z M20.88,9.08l-4.48,4.48L9.3,6.47L13.8,2L20.88,9.08z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_do_not_step = ic_do_not_step; \ No newline at end of file diff --git a/dist/md/ic_do_not_step_outline.js b/dist/md/ic_do_not_step_outline.js new file mode 100644 index 000000000..184509395 --- /dev/null +++ b/dist/md/ic_do_not_step_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_do_not_step_outline = void 0; +var ic_do_not_step_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M18.51,15.68l-1.41-1.41l4.48-4.48L23,11.2L18.51,15.68z M14.98,12.15 M14.98,12.15l3.07-3.07L13.8,4.82l-3.08,3.07 L9.3,6.47L13.8,2l0,0l7.08,7.08l-4.48,4.48L14.98,12.15z M21.18,21.2l-1.41,1.41l-5.94-5.94L10.5,20H1v-2.63 c0-0.84,0.52-1.57,1.3-1.88c0.58-0.23,1.28-0.56,1.97-1.02l1.38,1.38C5.74,15.95,5.87,16,6,16s0.26-0.05,0.36-0.15 c0.2-0.2,0.2-0.51,0-0.71l-1.28-1.28c0.27-0.24,0.53-0.51,0.77-0.8l1.27,1.27c0.09,0.1,0.23,0.15,0.35,0.15s0.25-0.05,0.35-0.15 c0.2-0.2,0.2-0.51,0-0.71l-1.4-1.4c0.19-0.34,0.34-0.72,0.45-1.12l1.71,1.72c0.09,0.1,0.23,0.15,0.35,0.15s0.25-0.05,0.35-0.15 c0.19-0.2,0.19-0.5,0.01-0.7l-7.9-7.9l1.42-1.41L21.18,21.2z M12.42,15.26l-1.67-1.68L7.42,16.9c-0.78,0.78-2.05,0.78-2.83-0.01 L4.4,16.72l-0.47,0.24c-0.29,0.14-0.59,0.27-0.89,0.39L3.03,18h6.64L12.42,15.26z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18.51,15.68l-1.41-1.41l4.48-4.48L23,11.2L18.51,15.68z M14.98,12.15 M14.98,12.15l3.07-3.07L13.8,4.82l-3.08,3.07 L9.3,6.47L13.8,2l0,0l7.08,7.08l-4.48,4.48L14.98,12.15z M21.18,21.2l-1.41,1.41l-5.94-5.94L10.5,20H1v-2.63 c0-0.84,0.52-1.57,1.3-1.88c0.58-0.23,1.28-0.56,1.97-1.02l1.38,1.38C5.74,15.95,5.87,16,6,16s0.26-0.05,0.36-0.15 c0.2-0.2,0.2-0.51,0-0.71l-1.28-1.28c0.27-0.24,0.53-0.51,0.77-0.8l1.27,1.27c0.09,0.1,0.23,0.15,0.35,0.15s0.25-0.05,0.35-0.15 c0.2-0.2,0.2-0.51,0-0.71l-1.4-1.4c0.19-0.34,0.34-0.72,0.45-1.12l1.71,1.72c0.09,0.1,0.23,0.15,0.35,0.15s0.25-0.05,0.35-0.15 c0.19-0.2,0.19-0.5,0.01-0.7l-7.9-7.9l1.42-1.41L21.18,21.2z M12.42,15.26l-1.67-1.68L7.42,16.9c-0.78,0.78-2.05,0.78-2.83-0.01 L4.4,16.72l-0.47,0.24c-0.29,0.14-0.59,0.27-0.89,0.39L3.03,18h6.64L12.42,15.26z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_do_not_step_outline = ic_do_not_step_outline; \ No newline at end of file diff --git a/dist/md/ic_do_not_step_twotone.js b/dist/md/ic_do_not_step_twotone.js new file mode 100644 index 000000000..dba98916d --- /dev/null +++ b/dist/md/ic_do_not_step_twotone.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_do_not_step_twotone = void 0; +var ic_do_not_step_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M14.98,12.15 M14.98,12.15l3.07-3.07L13.8,4.82l-3.08,3.07L14.98,12.15z M12.42,15.26l-1.67-1.68L7.42,16.9 c-0.78,0.78-2.05,0.78-2.83-0.01L4.4,16.72l-0.47,0.24c-0.29,0.14-0.59,0.27-0.89,0.39L3.03,18h6.64L12.42,15.26z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14.98,12.15 M14.98,12.15l3.07-3.07L13.8,4.82l-3.08,3.07L14.98,12.15z M12.42,15.26l-1.67-1.68L7.42,16.9 c-0.78,0.78-2.05,0.78-2.83-0.01L4.4,16.72l-0.47,0.24c-0.29,0.14-0.59,0.27-0.89,0.39L3.03,18h6.64L12.42,15.26z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M18.51,15.68l-1.41-1.41l4.48-4.48L23,11.2L18.51,15.68z M14.98,12.15 M14.98,12.15l3.07-3.07L13.8,4.82l-3.08,3.07 L9.3,6.47L13.8,2l0,0l7.08,7.08l-4.48,4.48L14.98,12.15z M21.18,21.2l-1.41,1.41l-5.94-5.94L10.5,20H1v-2.63 c0-0.84,0.52-1.57,1.3-1.88c0.58-0.23,1.28-0.56,1.97-1.02l1.38,1.38C5.74,15.95,5.87,16,6,16s0.26-0.05,0.36-0.15 c0.2-0.2,0.2-0.51,0-0.71l-1.28-1.28c0.27-0.24,0.53-0.51,0.77-0.8l1.27,1.27c0.09,0.1,0.23,0.15,0.35,0.15s0.25-0.05,0.35-0.15 c0.2-0.2,0.2-0.51,0-0.71l-1.4-1.4c0.19-0.34,0.34-0.72,0.45-1.12l1.71,1.72c0.09,0.1,0.23,0.15,0.35,0.15s0.25-0.05,0.35-0.15 c0.19-0.2,0.19-0.5,0.01-0.7l-7.9-7.9l1.42-1.41L21.18,21.2z M12.42,15.26l-1.67-1.68L7.42,16.9c-0.78,0.78-2.05,0.78-2.83-0.01 L4.4,16.72l-0.47,0.24c-0.29,0.14-0.59,0.27-0.89,0.39L3.03,18h6.64L12.42,15.26z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18.51,15.68l-1.41-1.41l4.48-4.48L23,11.2L18.51,15.68z M14.98,12.15 M14.98,12.15l3.07-3.07L13.8,4.82l-3.08,3.07 L9.3,6.47L13.8,2l0,0l7.08,7.08l-4.48,4.48L14.98,12.15z M21.18,21.2l-1.41,1.41l-5.94-5.94L10.5,20H1v-2.63 c0-0.84,0.52-1.57,1.3-1.88c0.58-0.23,1.28-0.56,1.97-1.02l1.38,1.38C5.74,15.95,5.87,16,6,16s0.26-0.05,0.36-0.15 c0.2-0.2,0.2-0.51,0-0.71l-1.28-1.28c0.27-0.24,0.53-0.51,0.77-0.8l1.27,1.27c0.09,0.1,0.23,0.15,0.35,0.15s0.25-0.05,0.35-0.15 c0.2-0.2,0.2-0.51,0-0.71l-1.4-1.4c0.19-0.34,0.34-0.72,0.45-1.12l1.71,1.72c0.09,0.1,0.23,0.15,0.35,0.15s0.25-0.05,0.35-0.15 c0.19-0.2,0.19-0.5,0.01-0.7l-7.9-7.9l1.42-1.41L21.18,21.2z M12.42,15.26l-1.67-1.68L7.42,16.9c-0.78,0.78-2.05,0.78-2.83-0.01 L4.4,16.72l-0.47,0.24c-0.29,0.14-0.59,0.27-0.89,0.39L3.03,18h6.64L12.42,15.26z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_do_not_step_twotone = ic_do_not_step_twotone; \ No newline at end of file diff --git a/dist/md/ic_do_not_touch.js b/dist/md/ic_do_not_touch.js new file mode 100644 index 000000000..480da893e --- /dev/null +++ b/dist/md/ic_do_not_touch.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_do_not_touch = void 0; +var ic_do_not_touch = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M13,10.17l-2.5-2.5V2.25C10.5,1.56,11.06,1,11.75,1S13,1.56,13,2.25V10.17z M20,12.75V11V5.25C20,4.56,19.44,4,18.75,4 S17.5,4.56,17.5,5.25V11h-1V3.25C16.5,2.56,15.94,2,15.25,2S14,2.56,14,3.25v7.92l6,6V12.75z M9.5,4.25C9.5,3.56,8.94,3,8.25,3 c-0.67,0-1.2,0.53-1.24,1.18L9.5,6.67V4.25z M13,10.17l-2.5-2.5V2.25C10.5,1.56,11.06,1,11.75,1S13,1.56,13,2.25V10.17z M20,12.75 V11V5.25C20,4.56,19.44,4,18.75,4S17.5,4.56,17.5,5.25V11h-1V3.25C16.5,2.56,15.94,2,15.25,2S14,2.56,14,3.25v7.92l6,6V12.75z M9.5,4.25C9.5,3.56,8.94,3,8.25,3c-0.67,0-1.2,0.53-1.24,1.18L9.5,6.67V4.25z M21.19,21.19L2.81,2.81L1.39,4.22l5.63,5.63L7,9.83 v4.3c-1.11-0.64-2.58-1.47-2.6-1.48c-0.17-0.09-0.34-0.14-0.54-0.14c-0.26,0-0.5,0.09-0.7,0.26C3.12,12.78,2,13.88,2,13.88 l6.8,7.18c0.57,0.6,1.35,0.94,2.18,0.94H17c0.62,0,1.18-0.19,1.65-0.52l-0.02-0.02l1.15,1.15L21.19,21.19z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M13,10.17l-2.5-2.5V2.25C10.5,1.56,11.06,1,11.75,1S13,1.56,13,2.25V10.17z M20,12.75V11V5.25C20,4.56,19.44,4,18.75,4 S17.5,4.56,17.5,5.25V11h-1V3.25C16.5,2.56,15.94,2,15.25,2S14,2.56,14,3.25v7.92l6,6V12.75z M9.5,4.25C9.5,3.56,8.94,3,8.25,3 c-0.67,0-1.2,0.53-1.24,1.18L9.5,6.67V4.25z M13,10.17l-2.5-2.5V2.25C10.5,1.56,11.06,1,11.75,1S13,1.56,13,2.25V10.17z M20,12.75 V11V5.25C20,4.56,19.44,4,18.75,4S17.5,4.56,17.5,5.25V11h-1V3.25C16.5,2.56,15.94,2,15.25,2S14,2.56,14,3.25v7.92l6,6V12.75z M9.5,4.25C9.5,3.56,8.94,3,8.25,3c-0.67,0-1.2,0.53-1.24,1.18L9.5,6.67V4.25z M21.19,21.19L2.81,2.81L1.39,4.22l5.63,5.63L7,9.83 v4.3c-1.11-0.64-2.58-1.47-2.6-1.48c-0.17-0.09-0.34-0.14-0.54-0.14c-0.26,0-0.5,0.09-0.7,0.26C3.12,12.78,2,13.88,2,13.88 l6.8,7.18c0.57,0.6,1.35,0.94,2.18,0.94H17c0.62,0,1.18-0.19,1.65-0.52l-0.02-0.02l1.15,1.15L21.19,21.19z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_do_not_touch = ic_do_not_touch; \ No newline at end of file diff --git a/dist/md/ic_do_not_touch_outline.js b/dist/md/ic_do_not_touch_outline.js new file mode 100644 index 000000000..adc0d0984 --- /dev/null +++ b/dist/md/ic_do_not_touch_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_do_not_touch_outline = void 0; +var ic_do_not_touch_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M2.81,2.81L1.39,4.22L7,9.83l0,4.3l-2.6-1.48c-0.17-0.09-0.34-0.14-0.54-0.14c-0.26,0-0.5,0.09-0.7,0.26L2,13.88l6.8,7.18 c0.57,0.6,1.35,0.94,2.18,0.94H17c0.62,0,1.18-0.19,1.66-0.52l1.12,1.12l1.41-1.41L2.81,2.81z M17,20h-6 c-0.39,0-0.64-0.23-0.75-0.36L6.87,16H9l0-4.17l8.14,8.14C17.09,19.98,17.05,20,17,20z M13.83,11H14V3.25C14,2.56,14.56,2,15.25,2 s1.25,0.56,1.25,1.25V11h1V5.25C17.5,4.56,18.06,4,18.75,4S20,4.56,20,5.25v11.92l-2-2V13h-2.17L13.83,11z M13,10.17V2.25 C13,1.56,12.44,1,11.75,1S10.5,1.56,10.5,2.25v5.42L13,10.17z M9.5,6.67V4.25C9.5,3.56,8.94,3,8.25,3c-0.67,0-1.2,0.53-1.24,1.18v0 L9.5,6.67z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M2.81,2.81L1.39,4.22L7,9.83l0,4.3l-2.6-1.48c-0.17-0.09-0.34-0.14-0.54-0.14c-0.26,0-0.5,0.09-0.7,0.26L2,13.88l6.8,7.18 c0.57,0.6,1.35,0.94,2.18,0.94H17c0.62,0,1.18-0.19,1.66-0.52l1.12,1.12l1.41-1.41L2.81,2.81z M17,20h-6 c-0.39,0-0.64-0.23-0.75-0.36L6.87,16H9l0-4.17l8.14,8.14C17.09,19.98,17.05,20,17,20z M13.83,11H14V3.25C14,2.56,14.56,2,15.25,2 s1.25,0.56,1.25,1.25V11h1V5.25C17.5,4.56,18.06,4,18.75,4S20,4.56,20,5.25v11.92l-2-2V13h-2.17L13.83,11z M13,10.17V2.25 C13,1.56,12.44,1,11.75,1S10.5,1.56,10.5,2.25v5.42L13,10.17z M9.5,6.67V4.25C9.5,3.56,8.94,3,8.25,3c-0.67,0-1.2,0.53-1.24,1.18v0 L9.5,6.67z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_do_not_touch_outline = ic_do_not_touch_outline; \ No newline at end of file diff --git a/dist/md/ic_do_not_touch_twotone.js b/dist/md/ic_do_not_touch_twotone.js new file mode 100644 index 000000000..1cdcbb0c8 --- /dev/null +++ b/dist/md/ic_do_not_touch_twotone.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_do_not_touch_twotone = void 0; +var ic_do_not_touch_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M18,15.17V13h-2.17L18,15.17z M9,11.83l8.14,8.14C17.09,19.98,17.05,20,17,20h-6 c-0.39,0-0.64-0.23-0.75-0.36L6.87,16H9L9,11.83z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18,15.17V13h-2.17L18,15.17z M9,11.83l8.14,8.14C17.09,19.98,17.05,20,17,20h-6 c-0.39,0-0.64-0.23-0.75-0.36L6.87,16H9L9,11.83z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M2.81,2.81L1.39,4.22L7,9.83l0,4.3l-2.6-1.48c-0.17-0.09-0.34-0.14-0.54-0.14c-0.26,0-0.5,0.09-0.7,0.26L2,13.88l6.8,7.18 c0.57,0.6,1.35,0.94,2.18,0.94H17c0.62,0,1.18-0.19,1.66-0.52l1.12,1.12l1.41-1.41L2.81,2.81z M17,20h-6 c-0.39,0-0.64-0.23-0.75-0.36L6.87,16H9l0-4.17l8.14,8.14C17.09,19.98,17.05,20,17,20z M13.83,11H14V3.25C14,2.56,14.56,2,15.25,2 s1.25,0.56,1.25,1.25V11h1V5.25C17.5,4.56,18.06,4,18.75,4S20,4.56,20,5.25v11.92l-2-2V13h-2.17L13.83,11z M13,10.17V2.25 C13,1.56,12.44,1,11.75,1S10.5,1.56,10.5,2.25v5.42L13,10.17z M9.5,6.67V4.25C9.5,3.56,8.94,3,8.25,3c-0.67,0-1.2,0.53-1.24,1.18v0 L9.5,6.67z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M2.81,2.81L1.39,4.22L7,9.83l0,4.3l-2.6-1.48c-0.17-0.09-0.34-0.14-0.54-0.14c-0.26,0-0.5,0.09-0.7,0.26L2,13.88l6.8,7.18 c0.57,0.6,1.35,0.94,2.18,0.94H17c0.62,0,1.18-0.19,1.66-0.52l1.12,1.12l1.41-1.41L2.81,2.81z M17,20h-6 c-0.39,0-0.64-0.23-0.75-0.36L6.87,16H9l0-4.17l8.14,8.14C17.09,19.98,17.05,20,17,20z M13.83,11H14V3.25C14,2.56,14.56,2,15.25,2 s1.25,0.56,1.25,1.25V11h1V5.25C17.5,4.56,18.06,4,18.75,4S20,4.56,20,5.25v11.92l-2-2V13h-2.17L13.83,11z M13,10.17V2.25 C13,1.56,12.44,1,11.75,1S10.5,1.56,10.5,2.25v5.42L13,10.17z M9.5,6.67V4.25C9.5,3.56,8.94,3,8.25,3c-0.67,0-1.2,0.53-1.24,1.18v0 L9.5,6.67z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_do_not_touch_twotone = ic_do_not_touch_twotone; \ No newline at end of file diff --git a/dist/md/ic_dock.js b/dist/md/ic_dock.js new file mode 100644 index 000000000..491884893 --- /dev/null +++ b/dist/md/ic_dock.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_dock = void 0; +var ic_dock = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8 23h8v-2H8v2zm8-21.99L8 1c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM16 15H8V5h8v10z" + }, + "children": [] + }] +}; +exports.ic_dock = ic_dock; \ No newline at end of file diff --git a/dist/md/ic_dock_outline.js b/dist/md/ic_dock_outline.js new file mode 100644 index 000000000..b839c0762 --- /dev/null +++ b/dist/md/ic_dock_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_dock_outline = void 0; +var ic_dock_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8 23h8v-2H8v2zm8-21.99L8 1c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM16 15H8V5h8v10z" + }, + "children": [] + }] +}; +exports.ic_dock_outline = ic_dock_outline; \ No newline at end of file diff --git a/dist/md/ic_dock_twotone.js b/dist/md/ic_dock_twotone.js new file mode 100644 index 000000000..383373bf1 --- /dev/null +++ b/dist/md/ic_dock_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_dock_twotone = void 0; +var ic_dock_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8 5h8v10H8z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8 21h8v2H8zm8-19.99L8 1c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM16 15H8V5h8v10z" + }, + "children": [] + }] +}; +exports.ic_dock_twotone = ic_dock_twotone; \ No newline at end of file diff --git a/dist/md/ic_domain.js b/dist/md/ic_domain.js new file mode 100644 index 000000000..49984ade4 --- /dev/null +++ b/dist/md/ic_domain.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_domain = void 0; +var ic_domain = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M0,0h24v24H0V0z", + "fill": "none" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M0,0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M12,7V3H2v18h20V7H12z M6,19H4v-2h2V19z M6,15H4v-2h2V15z M6,11H4V9h2V11z M6,7H4V5h2V7z M10,19H8v-2h2V19z M10,15H8v-2h2 V15z M10,11H8V9h2V11z M10,7H8V5h2V7z M20,19h-8v-2h2v-2h-2v-2h2v-2h-2V9h8V19z M18,11h-2v2h2V11z M18,15h-2v2h2V15z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,7V3H2v18h20V7H12z M6,19H4v-2h2V19z M6,15H4v-2h2V15z M6,11H4V9h2V11z M6,7H4V5h2V7z M10,19H8v-2h2V19z M10,15H8v-2h2 V15z M10,11H8V9h2V11z M10,7H8V5h2V7z M20,19h-8v-2h2v-2h-2v-2h2v-2h-2V9h8V19z M18,11h-2v2h2V11z M18,15h-2v2h2V15z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_domain = ic_domain; \ No newline at end of file diff --git a/dist/md/ic_domain_disabled.js b/dist/md/ic_domain_disabled.js new file mode 100644 index 000000000..cc8ef6666 --- /dev/null +++ b/dist/md/ic_domain_disabled.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_domain_disabled = void 0; +var ic_domain_disabled = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0zm0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8 5h2v2h-.9L12 9.9V9h8v8.9l2 2V7H12V3H5.1L8 5.9zm8 6h2v2h-2zM1.3 1.8L.1 3.1 2 5v16h16l3 3 1.3-1.3-21-20.9zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm4 8H8v-2h2v2zm0-4H8v-2h2v2zm2 4v-2h2l2 2h-4z" + }, + "children": [] + }] +}; +exports.ic_domain_disabled = ic_domain_disabled; \ No newline at end of file diff --git a/dist/md/ic_domain_disabled_outline.js b/dist/md/ic_domain_disabled_outline.js new file mode 100644 index 000000000..df4746d69 --- /dev/null +++ b/dist/md/ic_domain_disabled_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_domain_disabled_outline = void 0; +var ic_domain_disabled_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M1.41 1.69L0 3.1l2 2V21h15.9l3 3 1.41-1.41-20.9-20.9zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm-2-4V9h2v2H4zm6 8H8v-2h2v2zm-2-4v-2h2v2H8zm4 4v-2h1.9l2 2H12zM8 5h2v2h-.45L12 9.45V9h8v8.45l2 2V7H12V3H5.55L8 5.45zm8 6h2v2h-2z" + }, + "children": [] + }] +}; +exports.ic_domain_disabled_outline = ic_domain_disabled_outline; \ No newline at end of file diff --git a/dist/md/ic_domain_disabled_twotone.js b/dist/md/ic_domain_disabled_twotone.js new file mode 100644 index 000000000..570cc7c27 --- /dev/null +++ b/dist/md/ic_domain_disabled_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_domain_disabled_twotone = void 0; +var ic_domain_disabled_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M1.41 1.69L0 3.1l2 2V21h15.9l3 3 1.41-1.41-20.9-20.9zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm-2-4V9h2v2H4zm6 8H8v-2h2v2zm-2-4v-2h2v2H8zm4 4v-2h1.9l2 2H12zM8 5h2v2h-.45L12 9.45V9h8v8.45l2 2V7H12V3H5.55L8 5.45zm8 6h2v2h-2z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 9v.45l8 8V9h-8zm6 4h-2v-2h2v2z", + "opacity": ".3" + }, + "children": [] + }] +}; +exports.ic_domain_disabled_twotone = ic_domain_disabled_twotone; \ No newline at end of file diff --git a/dist/md/ic_domain_outline.js b/dist/md/ic_domain_outline.js new file mode 100644 index 000000000..362b1545a --- /dev/null +++ b/dist/md/ic_domain_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_domain_outline = void 0; +var ic_domain_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 7V3H2v18h20V7H12zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4 12H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm10 12h-8v-2h2v-2h-2v-2h2v-2h-2V9h8v10zm-2-8h-2v2h2v-2zm0 4h-2v2h2v-2z" + }, + "children": [] + }] +}; +exports.ic_domain_outline = ic_domain_outline; \ No newline at end of file diff --git a/dist/md/ic_domain_twotone.js b/dist/md/ic_domain_twotone.js new file mode 100644 index 000000000..a46d838a1 --- /dev/null +++ b/dist/md/ic_domain_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_domain_twotone = void 0; +var ic_domain_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 11h2v2h-2v2h2v2h-2v2h8V9h-8v2zm4 0h2v2h-2v-2zm0 4h2v2h-2v-2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 7V3H2v18h20V7H12zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4 12H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm10 12h-8v-2h2v-2h-2v-2h2v-2h-2V9h8v10zm-4-8h2v2h-2zm0 4h2v2h-2z" + }, + "children": [] + }] +}; +exports.ic_domain_twotone = ic_domain_twotone; \ No newline at end of file diff --git a/dist/md/ic_domain_verification.js b/dist/md/ic_domain_verification.js new file mode 100644 index 000000000..3b5af87e4 --- /dev/null +++ b/dist/md/ic_domain_verification.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_domain_verification = void 0; +var ic_domain_verification = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "16.6,10.88 15.18,9.46 10.94,13.71 8.82,11.58 7.4,13 10.94,16.54" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "16.6,10.88 15.18,9.46 10.94,13.71 8.82,11.58 7.4,13 10.94,16.54" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19,4H5C3.89,4,3,4.9,3,6v12c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2V6C21,4.9,20.11,4,19,4z M19,18H5V8h14V18z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,4H5C3.89,4,3,4.9,3,6v12c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2V6C21,4.9,20.11,4,19,4z M19,18H5V8h14V18z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_domain_verification = ic_domain_verification; \ No newline at end of file diff --git a/dist/md/ic_domain_verification_outline.js b/dist/md/ic_domain_verification_outline.js new file mode 100644 index 000000000..eb3462c02 --- /dev/null +++ b/dist/md/ic_domain_verification_outline.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_domain_verification_outline = void 0; +var ic_domain_verification_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "16.6,10.88 15.18,9.46 10.94,13.71 8.82,11.58 7.4,13 10.94,16.54" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "16.6,10.88 15.18,9.46 10.94,13.71 8.82,11.58 7.4,13 10.94,16.54" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19,4H5C3.89,4,3,4.9,3,6v12c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2V6C21,4.9,20.11,4,19,4z M19,18H5V8h14V18z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,4H5C3.89,4,3,4.9,3,6v12c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2V6C21,4.9,20.11,4,19,4z M19,18H5V8h14V18z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_domain_verification_outline = ic_domain_verification_outline; \ No newline at end of file diff --git a/dist/md/ic_domain_verification_twotone.js b/dist/md/ic_domain_verification_twotone.js new file mode 100644 index 000000000..6d1ee88ab --- /dev/null +++ b/dist/md/ic_domain_verification_twotone.js @@ -0,0 +1,81 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_domain_verification_twotone = void 0; +var ic_domain_verification_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M5,18h14V8H5V18z M8.82,11.58l2.12,2.12l4.24-4.24l1.41,1.41l-5.66,5.66L7.4,13L8.82,11.58z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M5,18h14V8H5V18z M8.82,11.58l2.12,2.12l4.24-4.24l1.41,1.41l-5.66,5.66L7.4,13L8.82,11.58z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "16.6,10.88 15.18,9.46 10.94,13.71 8.82,11.58 7.4,13 10.94,16.54" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "16.6,10.88 15.18,9.46 10.94,13.71 8.82,11.58 7.4,13 10.94,16.54" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19,4H5C3.89,4,3,4.9,3,6v12c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2V6C21,4.9,20.11,4,19,4z M19,18H5V8h14V18z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,4H5C3.89,4,3,4.9,3,6v12c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2V6C21,4.9,20.11,4,19,4z M19,18H5V8h14V18z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_domain_verification_twotone = ic_domain_verification_twotone; \ No newline at end of file diff --git a/dist/md/ic_done.js b/dist/md/ic_done.js new file mode 100644 index 000000000..27367622e --- /dev/null +++ b/dist/md/ic_done.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_done = void 0; +var ic_done = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z" + }, + "children": [] + }] +}; +exports.ic_done = ic_done; \ No newline at end of file diff --git a/dist/md/ic_done_all.js b/dist/md/ic_done_all.js new file mode 100644 index 000000000..c606e1589 --- /dev/null +++ b/dist/md/ic_done_all.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_done_all = void 0; +var ic_done_all = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 7l-1.41-1.41-6.34 6.34 1.41 1.41L18 7zm4.24-1.41L11.66 16.17 7.48 12l-1.41 1.41L11.66 19l12-12-1.42-1.41zM.41 13.41L6 19l1.41-1.41L1.83 12 .41 13.41z" + }, + "children": [] + }] +}; +exports.ic_done_all = ic_done_all; \ No newline at end of file diff --git a/dist/md/ic_done_all_outline.js b/dist/md/ic_done_all_outline.js new file mode 100644 index 000000000..14307a626 --- /dev/null +++ b/dist/md/ic_done_all_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_done_all_outline = void 0; +var ic_done_all_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 7l-1.41-1.41-6.34 6.34 1.41 1.41L18 7zm4.24-1.41L11.66 16.17 7.48 12l-1.41 1.41L11.66 19l12-12-1.42-1.41zM.41 13.41L6 19l1.41-1.41L1.83 12 .41 13.41z" + }, + "children": [] + }] +}; +exports.ic_done_all_outline = ic_done_all_outline; \ No newline at end of file diff --git a/dist/md/ic_done_all_twotone.js b/dist/md/ic_done_all_twotone.js new file mode 100644 index 000000000..b582c1e6c --- /dev/null +++ b/dist/md/ic_done_all_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_done_all_twotone = void 0; +var ic_done_all_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 7l-1.41-1.41-6.34 6.34 1.41 1.41L18 7zm4.24-1.41L11.66 16.17 7.48 12l-1.41 1.41L11.66 19l12-12-1.42-1.41zM.41 13.41L6 19l1.41-1.41L1.83 12 .41 13.41z" + }, + "children": [] + }] +}; +exports.ic_done_all_twotone = ic_done_all_twotone; \ No newline at end of file diff --git a/dist/md/ic_done_outline.js b/dist/md/ic_done_outline.js new file mode 100644 index 000000000..5568fc5cd --- /dev/null +++ b/dist/md/ic_done_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_done_outline = void 0; +var ic_done_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z" + }, + "children": [] + }] +}; +exports.ic_done_outline = ic_done_outline; \ No newline at end of file diff --git a/dist/md/ic_done_outline_outline.js b/dist/md/ic_done_outline_outline.js new file mode 100644 index 000000000..098df6f5c --- /dev/null +++ b/dist/md/ic_done_outline_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_done_outline_outline = void 0; +var ic_done_outline_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.77 4.93l1.4 1.4L8.43 19.07l-5.6-5.6 1.4-1.4 4.2 4.2L19.77 4.93m0-2.83L8.43 13.44l-4.2-4.2L0 13.47l8.43 8.43L24 6.33 19.77 2.1z" + }, + "children": [] + }] +}; +exports.ic_done_outline_outline = ic_done_outline_outline; \ No newline at end of file diff --git a/dist/md/ic_done_outline_twotone.js b/dist/md/ic_done_outline_twotone.js new file mode 100644 index 000000000..544edf568 --- /dev/null +++ b/dist/md/ic_done_outline_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_done_outline_twotone = void 0; +var ic_done_outline_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.77 4.93l1.4 1.4L8.43 19.07l-5.6-5.6 1.4-1.4 4.2 4.2L19.77 4.93m0-2.83L8.43 13.44l-4.2-4.2L0 13.47l8.43 8.43L24 6.33 19.77 2.1z" + }, + "children": [] + }] +}; +exports.ic_done_outline_twotone = ic_done_outline_twotone; \ No newline at end of file diff --git a/dist/md/ic_done_twotone.js b/dist/md/ic_done_twotone.js new file mode 100644 index 000000000..578865294 --- /dev/null +++ b/dist/md/ic_done_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_done_twotone = void 0; +var ic_done_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z" + }, + "children": [] + }] +}; +exports.ic_done_twotone = ic_done_twotone; \ No newline at end of file diff --git a/dist/md/ic_donut_large.js b/dist/md/ic_donut_large.js new file mode 100644 index 000000000..20ef5b3a5 --- /dev/null +++ b/dist/md/ic_donut_large.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_donut_large = void 0; +var ic_donut_large = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M11,5.08V2C6,2.5,2,6.81,2,12s4,9.5,9,10v-3.08c-3-0.48-6-3.4-6-6.92S8,5.56,11,5.08z M18.97,11H22c-0.47-5-4-8.53-9-9 v3.08C16,5.51,18.54,8,18.97,11z M13,18.92V22c5-0.47,8.53-4,9-9h-3.03C18.54,16,16,18.49,13,18.92z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M11,5.08V2C6,2.5,2,6.81,2,12s4,9.5,9,10v-3.08c-3-0.48-6-3.4-6-6.92S8,5.56,11,5.08z M18.97,11H22c-0.47-5-4-8.53-9-9 v3.08C16,5.51,18.54,8,18.97,11z M13,18.92V22c5-0.47,8.53-4,9-9h-3.03C18.54,16,16,18.49,13,18.92z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_donut_large = ic_donut_large; \ No newline at end of file diff --git a/dist/md/ic_donut_large_outline.js b/dist/md/ic_donut_large_outline.js new file mode 100644 index 000000000..b8b33b325 --- /dev/null +++ b/dist/md/ic_donut_large_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_donut_large_outline = void 0; +var ic_donut_large_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 5.08c3.06.44 5.48 2.86 5.92 5.92h3.03c-.47-4.72-4.23-8.48-8.95-8.95v3.03zM18.92 13c-.44 3.06-2.86 5.48-5.92 5.92v3.03c4.72-.47 8.48-4.23 8.95-8.95h-3.03zM11 18.92c-3.39-.49-6-3.4-6-6.92s2.61-6.43 6-6.92V2.05c-5.05.5-9 4.76-9 9.95 0 5.19 3.95 9.45 9 9.95v-3.03z" + }, + "children": [] + }] +}; +exports.ic_donut_large_outline = ic_donut_large_outline; \ No newline at end of file diff --git a/dist/md/ic_donut_large_twotone.js b/dist/md/ic_donut_large_twotone.js new file mode 100644 index 000000000..98c66f44e --- /dev/null +++ b/dist/md/ic_donut_large_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_donut_large_twotone = void 0; +var ic_donut_large_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 5.08c3.06.44 5.48 2.86 5.92 5.92h3.03c-.47-4.72-4.23-8.48-8.95-8.95v3.03zM18.92 13c-.44 3.06-2.86 5.48-5.92 5.92v3.03c4.72-.47 8.48-4.23 8.95-8.95h-3.03zM11 18.92c-3.39-.49-6-3.4-6-6.92s2.61-6.43 6-6.92V2.05c-5.05.5-9 4.76-9 9.95 0 5.19 3.95 9.45 9 9.95v-3.03z" + }, + "children": [] + }] +}; +exports.ic_donut_large_twotone = ic_donut_large_twotone; \ No newline at end of file diff --git a/dist/md/ic_donut_small.js b/dist/md/ic_donut_small.js new file mode 100644 index 000000000..80274ccf0 --- /dev/null +++ b/dist/md/ic_donut_small.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_donut_small = void 0; +var ic_donut_small = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 9.16V2c-5 .5-9 4.79-9 10s4 9.5 9 10v-7.16c-1-.41-2-1.52-2-2.84s1-2.43 2-2.84zM14.86 11H22c-.48-4.75-4-8.53-9-9v7.16c1 .3 1.52.98 1.86 1.84zM13 14.84V22c5-.47 8.52-4.25 9-9h-7.14c-.34.86-.86 1.54-1.86 1.84z" + }, + "children": [] + }] +}; +exports.ic_donut_small = ic_donut_small; \ No newline at end of file diff --git a/dist/md/ic_donut_small_outline.js b/dist/md/ic_donut_small_outline.js new file mode 100644 index 000000000..85dc05fbf --- /dev/null +++ b/dist/md/ic_donut_small_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_donut_small_outline = void 0; +var ic_donut_small_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14.82 11h7.13c-.47-4.72-4.23-8.48-8.95-8.95v7.13c.85.31 1.51.97 1.82 1.82zM15 4.58C17 5.4 18.6 7 19.42 9h-3.43c-.28-.37-.62-.71-.99-.99V4.58zM2 12c0 5.19 3.95 9.45 9 9.95v-7.13C9.84 14.4 9 13.3 9 12c0-1.3.84-2.4 2-2.82V2.05c-5.05.5-9 4.76-9 9.95zm7-7.42v3.44c-1.23.92-2 2.39-2 3.98 0 1.59.77 3.06 2 3.99v3.44C6.04 18.24 4 15.35 4 12c0-3.35 2.04-6.24 5-7.42zm4 10.24v7.13c4.72-.47 8.48-4.23 8.95-8.95h-7.13c-.31.85-.97 1.51-1.82 1.82zm2 1.17c.37-.28.71-.61.99-.99h3.43C18.6 17 17 18.6 15 19.42v-3.43z" + }, + "children": [] + }] +}; +exports.ic_donut_small_outline = ic_donut_small_outline; \ No newline at end of file diff --git a/dist/md/ic_donut_small_twotone.js b/dist/md/ic_donut_small_twotone.js new file mode 100644 index 000000000..04a019a54 --- /dev/null +++ b/dist/md/ic_donut_small_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_donut_small_twotone = void 0; +var ic_donut_small_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.99 9h3.43C18.6 7 17 5.4 15 4.58v3.43c.37.28.71.62.99.99zM4 12c0 3.35 2.04 6.24 5 7.42v-3.44c-1.23-.93-2-2.4-2-3.99C7 10.4 7.77 8.93 9 8V4.58C6.04 5.76 4 8.65 4 12zm11 3.99v3.43c2-.82 3.6-2.42 4.42-4.42h-3.43c-.28.37-.62.71-.99.99z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14.82 11h7.13c-.47-4.72-4.23-8.48-8.95-8.95v7.13c.85.31 1.51.97 1.82 1.82zM15 4.58C17 5.4 18.6 7 19.42 9h-3.43c-.28-.37-.62-.71-.99-.99V4.58zM2 12c0 5.19 3.95 9.45 9 9.95v-7.13C9.84 14.4 9 13.3 9 12c0-1.3.84-2.4 2-2.82V2.05c-5.05.5-9 4.76-9 9.95zm7-7.42v3.44c-1.23.92-2 2.39-2 3.98 0 1.59.77 3.06 2 3.99v3.44C6.04 18.24 4 15.35 4 12c0-3.35 2.04-6.24 5-7.42zm4 10.24v7.13c4.72-.47 8.48-4.23 8.95-8.95h-7.13c-.31.85-.97 1.51-1.82 1.82zm2 1.17c.37-.28.71-.61.99-.99h3.43C18.6 17 17 18.6 15 19.42v-3.43z" + }, + "children": [] + }] +}; +exports.ic_donut_small_twotone = ic_donut_small_twotone; \ No newline at end of file diff --git a/dist/md/ic_double_arrow.js b/dist/md/ic_double_arrow.js new file mode 100644 index 000000000..3e5da365f --- /dev/null +++ b/dist/md/ic_double_arrow.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_double_arrow = void 0; +var ic_double_arrow = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "15.5,5 11,5 16,12 11,19 15.5,19 20.5,12" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "15.5,5 11,5 16,12 11,19 15.5,19 20.5,12" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "8.5,5 4,5 9,12 4,19 8.5,19 13.5,12" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "8.5,5 4,5 9,12 4,19 8.5,19 13.5,12" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_double_arrow = ic_double_arrow; \ No newline at end of file diff --git a/dist/md/ic_double_arrow_outline.js b/dist/md/ic_double_arrow_outline.js new file mode 100644 index 000000000..b296983f3 --- /dev/null +++ b/dist/md/ic_double_arrow_outline.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_double_arrow_outline = void 0; +var ic_double_arrow_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "15.5,5 11,5 16,12 11,19 15.5,19 20.5,12" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "15.5,5 11,5 16,12 11,19 15.5,19 20.5,12" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "8.5,5 4,5 9,12 4,19 8.5,19 13.5,12" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "8.5,5 4,5 9,12 4,19 8.5,19 13.5,12" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_double_arrow_outline = ic_double_arrow_outline; \ No newline at end of file diff --git a/dist/md/ic_double_arrow_twotone.js b/dist/md/ic_double_arrow_twotone.js new file mode 100644 index 000000000..4a6da1737 --- /dev/null +++ b/dist/md/ic_double_arrow_twotone.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_double_arrow_twotone = void 0; +var ic_double_arrow_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "15.5,5 11,5 16,12 11,19 15.5,19 20.5,12" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "15.5,5 11,5 16,12 11,19 15.5,19 20.5,12" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "8.5,5 4,5 9,12 4,19 8.5,19 13.5,12" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "8.5,5 4,5 9,12 4,19 8.5,19 13.5,12" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_double_arrow_twotone = ic_double_arrow_twotone; \ No newline at end of file diff --git a/dist/md/ic_download_done_outline.js b/dist/md/ic_download_done_outline.js new file mode 100644 index 000000000..502e702e4 --- /dev/null +++ b/dist/md/ic_download_done_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_download_done_outline = void 0; +var ic_download_done_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 18h14v2H5v-2zm4.6-2.7L5 10.7l2-1.9 2.6 2.6L17 4l2 2-9.4 9.3z" + }, + "children": [] + }] +}; +exports.ic_download_done_outline = ic_download_done_outline; \ No newline at end of file diff --git a/dist/md/ic_download_done_twotone.js b/dist/md/ic_download_done_twotone.js new file mode 100644 index 000000000..9d42dbdd1 --- /dev/null +++ b/dist/md/ic_download_done_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_download_done_twotone = void 0; +var ic_download_done_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 18h14v2H5v-2zm4.6-2.7L5 10.7l2-1.9 2.6 2.6L17 4l2 2-9.4 9.3z" + }, + "children": [] + }] +}; +exports.ic_download_done_twotone = ic_download_done_twotone; \ No newline at end of file diff --git a/dist/md/ic_download_outline.js b/dist/md/ic_download_outline.js new file mode 100644 index 000000000..96f26b381 --- /dev/null +++ b/dist/md/ic_download_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_download_outline = void 0; +var ic_download_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 9h-4V3H9v6H5l7 7 7-7zm-8 2V5h2v6h1.17L12 13.17 9.83 11H11zm-6 7h14v2H5z" + }, + "children": [] + }] +}; +exports.ic_download_outline = ic_download_outline; \ No newline at end of file diff --git a/dist/md/ic_download_twotone.js b/dist/md/ic_download_twotone.js new file mode 100644 index 000000000..f499fcf44 --- /dev/null +++ b/dist/md/ic_download_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_download_twotone = void 0; +var ic_download_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 9V5h-2v6H9.83L12 13.17 14.17 11H13z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 9V3H9v6H5l7 7 7-7h-4zm-3 4.17L9.83 11H11V5h2v6h1.17L12 13.17zM5 18h14v2H5z" + }, + "children": [] + }] +}; +exports.ic_download_twotone = ic_download_twotone; \ No newline at end of file diff --git a/dist/md/ic_drafts.js b/dist/md/ic_drafts.js new file mode 100644 index 000000000..d68b66fb0 --- /dev/null +++ b/dist/md/ic_drafts.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_drafts = void 0; +var ic_drafts = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21.99 8c0-.72-.37-1.35-.94-1.7L12 1 2.95 6.3C2.38 6.65 2 7.28 2 8v10c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2l-.01-10zM12 13L3.74 7.84 12 3l8.26 4.84L12 13z" + }, + "children": [] + }] +}; +exports.ic_drafts = ic_drafts; \ No newline at end of file diff --git a/dist/md/ic_drafts_outline.js b/dist/md/ic_drafts_outline.js new file mode 100644 index 000000000..12beb01d2 --- /dev/null +++ b/dist/md/ic_drafts_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_drafts_outline = void 0; +var ic_drafts_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21.99 8c0-.72-.37-1.35-.94-1.7L12 1 2.95 6.3C2.38 6.65 2 7.28 2 8v10c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2l-.01-10zm-2 0v.01L12 13 4 8l8-4.68L19.99 8zM4 18v-7.66l8 5.02 7.99-4.99L20 18H4z" + }, + "children": [] + }] +}; +exports.ic_drafts_outline = ic_drafts_outline; \ No newline at end of file diff --git a/dist/md/ic_drafts_twotone.js b/dist/md/ic_drafts_twotone.js new file mode 100644 index 000000000..028b9590f --- /dev/null +++ b/dist/md/ic_drafts_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_drafts_twotone = void 0; +var ic_drafts_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 15.36l-8-5.02V18h16l-.01-7.63z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21.99 8c0-.72-.37-1.35-.94-1.7L12 1 2.95 6.3C2.38 6.65 2 7.28 2 8v10c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2l-.01-10zM12 3.32L19.99 8v.01L12 13 4 8l8-4.68zM4 18v-7.66l8 5.02 7.99-4.99L20 18H4z" + }, + "children": [] + }] +}; +exports.ic_drafts_twotone = ic_drafts_twotone; \ No newline at end of file diff --git a/dist/md/ic_drag_handle.js b/dist/md/ic_drag_handle.js new file mode 100644 index 000000000..bebb2cb50 --- /dev/null +++ b/dist/md/ic_drag_handle.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_drag_handle = void 0; +var ic_drag_handle = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,9H4v2h16V9z M4,15h16v-2H4V15z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,9H4v2h16V9z M4,15h16v-2H4V15z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_drag_handle = ic_drag_handle; \ No newline at end of file diff --git a/dist/md/ic_drag_handle_outline.js b/dist/md/ic_drag_handle_outline.js new file mode 100644 index 000000000..2e82cef05 --- /dev/null +++ b/dist/md/ic_drag_handle_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_drag_handle_outline = void 0; +var ic_drag_handle_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 9H4v2h16V9zM4 15h16v-2H4v2z" + }, + "children": [] + }] +}; +exports.ic_drag_handle_outline = ic_drag_handle_outline; \ No newline at end of file diff --git a/dist/md/ic_drag_handle_twotone.js b/dist/md/ic_drag_handle_twotone.js new file mode 100644 index 000000000..fc3fc376b --- /dev/null +++ b/dist/md/ic_drag_handle_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_drag_handle_twotone = void 0; +var ic_drag_handle_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 9h16v2H4zm0 4h16v2H4z" + }, + "children": [] + }] +}; +exports.ic_drag_handle_twotone = ic_drag_handle_twotone; \ No newline at end of file diff --git a/dist/md/ic_drag_indicator.js b/dist/md/ic_drag_indicator.js new file mode 100644 index 000000000..68eaf6185 --- /dev/null +++ b/dist/md/ic_drag_indicator.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_drag_indicator = void 0; +var ic_drag_indicator = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 18c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm-2-8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 4c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_drag_indicator = ic_drag_indicator; \ No newline at end of file diff --git a/dist/md/ic_drag_indicator_outline.js b/dist/md/ic_drag_indicator_outline.js new file mode 100644 index 000000000..5b1967425 --- /dev/null +++ b/dist/md/ic_drag_indicator_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_drag_indicator_outline = void 0; +var ic_drag_indicator_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 18c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm-2-8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 4c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_drag_indicator_outline = ic_drag_indicator_outline; \ No newline at end of file diff --git a/dist/md/ic_drag_indicator_twotone.js b/dist/md/ic_drag_indicator_twotone.js new file mode 100644 index 000000000..bee66c0b8 --- /dev/null +++ b/dist/md/ic_drag_indicator_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_drag_indicator_twotone = void 0; +var ic_drag_indicator_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 18c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm-2-8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 4c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_drag_indicator_twotone = ic_drag_indicator_twotone; \ No newline at end of file diff --git a/dist/md/ic_drive_eta.js b/dist/md/ic_drive_eta.js new file mode 100644 index 000000000..573a4bb1b --- /dev/null +++ b/dist/md/ic_drive_eta.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_drive_eta = void 0; +var ic_drive_eta = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18.92 5.01C18.72 4.42 18.16 4 17.5 4h-11c-.66 0-1.21.42-1.42 1.01L3 11v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.5 15c-.83 0-1.5-.67-1.5-1.5S5.67 12 6.5 12s1.5.67 1.5 1.5S7.33 15 6.5 15zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 10l1.5-4.5h11L19 10H5z" + }, + "children": [] + }] +}; +exports.ic_drive_eta = ic_drive_eta; \ No newline at end of file diff --git a/dist/md/ic_drive_eta_outline.js b/dist/md/ic_drive_eta_outline.js new file mode 100644 index 000000000..4db21c9c9 --- /dev/null +++ b/dist/md/ic_drive_eta_outline.js @@ -0,0 +1,40 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_drive_eta_outline = void 0; +var ic_drive_eta_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18.92 5.01C18.72 4.42 18.16 4 17.5 4h-11c-.66 0-1.21.42-1.42 1.01L3 11v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.85 6h10.29l1.04 3H5.81l1.04-3zM19 16H5v-4.66l.12-.34h13.77l.11.34V16z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "7.5", + "cy": "13.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "16.5", + "cy": "13.5", + "r": "1.5" + }, + "children": [] + }] +}; +exports.ic_drive_eta_outline = ic_drive_eta_outline; \ No newline at end of file diff --git a/dist/md/ic_drive_eta_twotone.js b/dist/md/ic_drive_eta_twotone.js new file mode 100644 index 000000000..067319858 --- /dev/null +++ b/dist/md/ic_drive_eta_twotone.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_drive_eta_twotone = void 0; +var ic_drive_eta_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5.12 11l-.12.34V16h14v-4.66l-.12-.34H5.12zm2.38 4c-.83 0-1.5-.67-1.5-1.5S6.67 12 7.5 12s1.5.67 1.5 1.5S8.33 15 7.5 15zm9 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18.92 5.01C18.72 4.42 18.16 4 17.5 4h-11c-.66 0-1.21.42-1.42 1.01L3 11v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.85 6h10.29l1.04 3H5.81l1.04-3zM19 16H5v-4.66l.12-.34h13.77l.11.34V16z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "7.5", + "cy": "13.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "16.5", + "cy": "13.5", + "r": "1.5" + }, + "children": [] + }] +}; +exports.ic_drive_eta_twotone = ic_drive_eta_twotone; \ No newline at end of file diff --git a/dist/md/ic_drive_file_move.js b/dist/md/ic_drive_file_move.js new file mode 100644 index 000000000..51b202328 --- /dev/null +++ b/dist/md/ic_drive_file_move.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_drive_file_move = void 0; +var ic_drive_file_move = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 6h-8l-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-6 12v-3h-4v-4h4V8l5 5-5 5z" + }, + "children": [] + }] +}; +exports.ic_drive_file_move = ic_drive_file_move; \ No newline at end of file diff --git a/dist/md/ic_drive_file_move_outline.js b/dist/md/ic_drive_file_move_outline.js new file mode 100644 index 000000000..6a4af4d0f --- /dev/null +++ b/dist/md/ic_drive_file_move_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_drive_file_move_outline = void 0; +var ic_drive_file_move_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V8h16v10zm-8.01-9l-1.41 1.41L12.16 12H8v2h4.16l-1.59 1.59L11.99 17 16 13.01 11.99 9z" + }, + "children": [] + }] +}; +exports.ic_drive_file_move_outline = ic_drive_file_move_outline; \ No newline at end of file diff --git a/dist/md/ic_drive_file_rename_outline.js b/dist/md/ic_drive_file_rename_outline.js new file mode 100644 index 000000000..5bb351026 --- /dev/null +++ b/dist/md/ic_drive_file_rename_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_drive_file_rename_outline = void 0; +var ic_drive_file_rename_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18.41 5.8L17.2 4.59c-.78-.78-2.05-.78-2.83 0l-2.68 2.68L3 15.96V20h4.04l8.74-8.74 2.63-2.63c.79-.78.79-2.05 0-2.83zM6.21 18H5v-1.21l8.66-8.66 1.21 1.21L6.21 18zM11 20l4-4h6v4H11z" + }, + "children": [] + }] +}; +exports.ic_drive_file_rename_outline = ic_drive_file_rename_outline; \ No newline at end of file diff --git a/dist/md/ic_drive_folder_upload.js b/dist/md/ic_drive_folder_upload.js new file mode 100644 index 000000000..1cea661aa --- /dev/null +++ b/dist/md/ic_drive_folder_upload.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_drive_folder_upload = void 0; +var ic_drive_folder_upload = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V8h16v10zM8 13.01l1.41 1.41L11 12.84V17h2v-4.16l1.59 1.59L16 13.01 12.01 9 8 13.01z" + }, + "children": [] + }] +}; +exports.ic_drive_folder_upload = ic_drive_folder_upload; \ No newline at end of file diff --git a/dist/md/ic_dry.js b/dist/md/ic_dry.js new file mode 100644 index 000000000..194e75cc0 --- /dev/null +++ b/dist/md/ic_dry.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_dry = void 0; +var ic_dry = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M15.65,4.86l-0.07-0.07c-0.57-0.62-0.82-1.41-0.67-2.2L15,2h-1.89l-0.06,0.43c-0.2,1.36,0.27,2.71,1.3,3.72l0.07,0.06 c0.57,0.62,0.82,1.41,0.67,2.2L14.98,9h1.91l0.06-0.43C17.16,7.21,16.68,5.86,15.65,4.86z M19.65,4.86l-0.07-0.07 c-0.57-0.62-0.82-1.41-0.67-2.2L19,2h-1.89l-0.06,0.43c-0.2,1.36,0.27,2.71,1.3,3.72l0.07,0.06c0.57,0.62,0.82,1.41,0.67,2.2 L18.98,9h1.91l0.06-0.43C21.16,7.21,20.68,5.86,19.65,4.86z M9.12,5l-7.18,6.79C1.34,12.35,1,13.14,1,13.97V20c0,1.66,1.34,3,3,3 h6.25H12h5.75c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h7.75c0.69,0,1.25-0.56,1.25-1.25S20.44,17,19.75,17H12v-1 h8.75c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h6.75c0.69,0,1.25-0.56,1.25-1.25S19.44,10,18.75,10H8.86 c0.64-1.11,1.48-2.58,1.49-2.61c0.09-0.16,0.14-0.33,0.14-0.53c0-0.26-0.09-0.5-0.26-0.7C10.22,6.12,9.12,5,9.12,5L9.12,5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15.65,4.86l-0.07-0.07c-0.57-0.62-0.82-1.41-0.67-2.2L15,2h-1.89l-0.06,0.43c-0.2,1.36,0.27,2.71,1.3,3.72l0.07,0.06 c0.57,0.62,0.82,1.41,0.67,2.2L14.98,9h1.91l0.06-0.43C17.16,7.21,16.68,5.86,15.65,4.86z M19.65,4.86l-0.07-0.07 c-0.57-0.62-0.82-1.41-0.67-2.2L19,2h-1.89l-0.06,0.43c-0.2,1.36,0.27,2.71,1.3,3.72l0.07,0.06c0.57,0.62,0.82,1.41,0.67,2.2 L18.98,9h1.91l0.06-0.43C21.16,7.21,20.68,5.86,19.65,4.86z M9.12,5l-7.18,6.79C1.34,12.35,1,13.14,1,13.97V20c0,1.66,1.34,3,3,3 h6.25H12h5.75c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h7.75c0.69,0,1.25-0.56,1.25-1.25S20.44,17,19.75,17H12v-1 h8.75c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h6.75c0.69,0,1.25-0.56,1.25-1.25S19.44,10,18.75,10H8.86 c0.64-1.11,1.48-2.58,1.49-2.61c0.09-0.16,0.14-0.33,0.14-0.53c0-0.26-0.09-0.5-0.26-0.7C10.22,6.12,9.12,5,9.12,5L9.12,5z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_dry = ic_dry; \ No newline at end of file diff --git a/dist/md/ic_dry_cleaning.js b/dist/md/ic_dry_cleaning.js new file mode 100644 index 000000000..93b7f7164 --- /dev/null +++ b/dist/md/ic_dry_cleaning.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_dry_cleaning = void 0; +var ic_dry_cleaning = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M19.56,11.36L13,8.44V7c0-0.55-0.45-1-1-1l0,0c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1h2c0-1.84-1.66-3.3-3.56-2.95 C10.26,2.27,9.29,3.22,9.06,4.4C8.76,5.96,9.66,7.34,11,7.82v0.63l-6.56,2.92C3.56,11.75,3,12.62,3,13.57v0.01 C3,14.92,4.08,16,5.42,16H7v6h10v-6h1.58c1.34,0,2.42-1.08,2.42-2.42v-0.01C21,12.62,20.44,11.75,19.56,11.36z M18.58,14H17v-1H7v1 H5.42C5.19,14,5,13.81,5,13.57c0-0.17,0.1-0.32,0.25-0.38l6.75-3l6.75,3C18.9,13.26,19,13.41,19,13.58C19,13.81,18.81,14,18.58,14z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19.56,11.36L13,8.44V7c0-0.55-0.45-1-1-1l0,0c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1h2c0-1.84-1.66-3.3-3.56-2.95 C10.26,2.27,9.29,3.22,9.06,4.4C8.76,5.96,9.66,7.34,11,7.82v0.63l-6.56,2.92C3.56,11.75,3,12.62,3,13.57v0.01 C3,14.92,4.08,16,5.42,16H7v6h10v-6h1.58c1.34,0,2.42-1.08,2.42-2.42v-0.01C21,12.62,20.44,11.75,19.56,11.36z M18.58,14H17v-1H7v1 H5.42C5.19,14,5,13.81,5,13.57c0-0.17,0.1-0.32,0.25-0.38l6.75-3l6.75,3C18.9,13.26,19,13.41,19,13.58C19,13.81,18.81,14,18.58,14z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_dry_cleaning = ic_dry_cleaning; \ No newline at end of file diff --git a/dist/md/ic_dry_outline.js b/dist/md/ic_dry_outline.js new file mode 100644 index 000000000..119e43fb3 --- /dev/null +++ b/dist/md/ic_dry_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_dry_outline = void 0; +var ic_dry_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20.75,16c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h6.75c0.69,0,1.25-0.56,1.25-1.25 c0-0.67-0.53-1.2-1.18-1.24L8.87,10l1.48-2.6c0.09-0.17,0.14-0.34,0.14-0.54c0-0.26-0.09-0.5-0.26-0.7L9.12,5l-7.18,6.8 C1.34,12.36,1,13.15,1,13.97V20c0,1.66,1.34,3,3,3h13.75c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h7.75 c0.69,0,1.25-0.56,1.25-1.25S20.44,17,19.75,17H12v-1H20.75z M10,21H4c-0.55,0-1-0.45-1-1v-6c0-0.39,0.23-0.64,0.36-0.75L7,9.87V12 l3,0V21z M15.65,4.86l-0.07-0.07c-0.57-0.62-0.82-1.41-0.67-2.2L15,2h-1.89l-0.06,0.43c-0.2,1.36,0.27,2.71,1.3,3.72l0.07,0.06 c0.57,0.62,0.82,1.41,0.67,2.2L14.98,9h1.91l0.06-0.43C17.16,7.21,16.68,5.86,15.65,4.86z M19.65,4.86l-0.07-0.07 c-0.57-0.62-0.82-1.41-0.67-2.2L19,2h-1.89l-0.06,0.43c-0.2,1.36,0.27,2.71,1.3,3.72l0.07,0.06c0.57,0.62,0.82,1.41,0.67,2.2 L18.98,9h1.91l0.06-0.43C21.16,7.21,20.68,5.86,19.65,4.86z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20.75,16c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h6.75c0.69,0,1.25-0.56,1.25-1.25 c0-0.67-0.53-1.2-1.18-1.24L8.87,10l1.48-2.6c0.09-0.17,0.14-0.34,0.14-0.54c0-0.26-0.09-0.5-0.26-0.7L9.12,5l-7.18,6.8 C1.34,12.36,1,13.15,1,13.97V20c0,1.66,1.34,3,3,3h13.75c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h7.75 c0.69,0,1.25-0.56,1.25-1.25S20.44,17,19.75,17H12v-1H20.75z M10,21H4c-0.55,0-1-0.45-1-1v-6c0-0.39,0.23-0.64,0.36-0.75L7,9.87V12 l3,0V21z M15.65,4.86l-0.07-0.07c-0.57-0.62-0.82-1.41-0.67-2.2L15,2h-1.89l-0.06,0.43c-0.2,1.36,0.27,2.71,1.3,3.72l0.07,0.06 c0.57,0.62,0.82,1.41,0.67,2.2L14.98,9h1.91l0.06-0.43C17.16,7.21,16.68,5.86,15.65,4.86z M19.65,4.86l-0.07-0.07 c-0.57-0.62-0.82-1.41-0.67-2.2L19,2h-1.89l-0.06,0.43c-0.2,1.36,0.27,2.71,1.3,3.72l0.07,0.06c0.57,0.62,0.82,1.41,0.67,2.2 L18.98,9h1.91l0.06-0.43C21.16,7.21,20.68,5.86,19.65,4.86z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_dry_outline = ic_dry_outline; \ No newline at end of file diff --git a/dist/md/ic_dry_twotone.js b/dist/md/ic_dry_twotone.js new file mode 100644 index 000000000..33a88f41b --- /dev/null +++ b/dist/md/ic_dry_twotone.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_dry_twotone = void 0; +var ic_dry_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M10,21H4c-0.55,0-1-0.45-1-1v-6c0-0.39,0.23-0.64,0.36-0.75L7,9.87V12l3,0V21z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M10,21H4c-0.55,0-1-0.45-1-1v-6c0-0.39,0.23-0.64,0.36-0.75L7,9.87V12l3,0V21z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20.75,16c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h6.75c0.69,0,1.25-0.56,1.25-1.25 c0-0.67-0.53-1.2-1.18-1.24L8.87,10l1.48-2.6c0.09-0.17,0.14-0.34,0.14-0.54c0-0.26-0.09-0.5-0.26-0.7L9.12,5l-7.18,6.8 C1.34,12.36,1,13.15,1,13.97V20c0,1.66,1.34,3,3,3h13.75c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h7.75 c0.69,0,1.25-0.56,1.25-1.25S20.44,17,19.75,17H12v-1H20.75z M10,21H4c-0.55,0-1-0.45-1-1v-6c0-0.39,0.23-0.64,0.36-0.75L7,9.87V12 l3,0V21z M15.65,4.86l-0.07-0.07c-0.57-0.62-0.82-1.41-0.67-2.2L15,2h-1.89l-0.06,0.43c-0.2,1.36,0.27,2.71,1.3,3.72l0.07,0.06 c0.57,0.62,0.82,1.41,0.67,2.2L14.98,9h1.91l0.06-0.43C17.16,7.21,16.68,5.86,15.65,4.86z M19.65,4.86l-0.07-0.07 c-0.57-0.62-0.82-1.41-0.67-2.2L19,2h-1.89l-0.06,0.43c-0.2,1.36,0.27,2.71,1.3,3.72l0.07,0.06c0.57,0.62,0.82,1.41,0.67,2.2 L18.98,9h1.91l0.06-0.43C21.16,7.21,20.68,5.86,19.65,4.86z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20.75,16c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h6.75c0.69,0,1.25-0.56,1.25-1.25 c0-0.67-0.53-1.2-1.18-1.24L8.87,10l1.48-2.6c0.09-0.17,0.14-0.34,0.14-0.54c0-0.26-0.09-0.5-0.26-0.7L9.12,5l-7.18,6.8 C1.34,12.36,1,13.15,1,13.97V20c0,1.66,1.34,3,3,3h13.75c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h7.75 c0.69,0,1.25-0.56,1.25-1.25S20.44,17,19.75,17H12v-1H20.75z M10,21H4c-0.55,0-1-0.45-1-1v-6c0-0.39,0.23-0.64,0.36-0.75L7,9.87V12 l3,0V21z M15.65,4.86l-0.07-0.07c-0.57-0.62-0.82-1.41-0.67-2.2L15,2h-1.89l-0.06,0.43c-0.2,1.36,0.27,2.71,1.3,3.72l0.07,0.06 c0.57,0.62,0.82,1.41,0.67,2.2L14.98,9h1.91l0.06-0.43C17.16,7.21,16.68,5.86,15.65,4.86z M19.65,4.86l-0.07-0.07 c-0.57-0.62-0.82-1.41-0.67-2.2L19,2h-1.89l-0.06,0.43c-0.2,1.36,0.27,2.71,1.3,3.72l0.07,0.06c0.57,0.62,0.82,1.41,0.67,2.2 L18.98,9h1.91l0.06-0.43C21.16,7.21,20.68,5.86,19.65,4.86z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_dry_twotone = ic_dry_twotone; \ No newline at end of file diff --git a/dist/md/ic_duo.js b/dist/md/ic_duo.js new file mode 100644 index 000000000..7af0a3416 --- /dev/null +++ b/dist/md/ic_duo.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_duo = void 0; +var ic_duo = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 2h-8C6.38 2 2 6.66 2 12.28 2 17.5 6.49 22 11.72 22 17.39 22 22 17.62 22 12V4c0-1.1-.9-2-2-2zm-3 13l-3-2v2H7V9h7v2l3-2v6z" + }, + "children": [] + }] +}; +exports.ic_duo = ic_duo; \ No newline at end of file diff --git a/dist/md/ic_duo_outline.js b/dist/md/ic_duo_outline.js new file mode 100644 index 000000000..1cb93f734 --- /dev/null +++ b/dist/md/ic_duo_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_duo_outline = void 0; +var ic_duo_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 2h-8C6.38 2 2 6.66 2 12.28 2 17.5 6.49 22 11.72 22 17.39 22 22 17.62 22 12V4c0-1.1-.9-2-2-2zm-3 13l-3-2v2H7V9h7v2l3-2v6z" + }, + "children": [] + }] +}; +exports.ic_duo_outline = ic_duo_outline; \ No newline at end of file diff --git a/dist/md/ic_duo_twotone.js b/dist/md/ic_duo_twotone.js new file mode 100644 index 000000000..a4b18f7be --- /dev/null +++ b/dist/md/ic_duo_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_duo_twotone = void 0; +var ic_duo_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 2h-8C6.38 2 2 6.66 2 12.28 2 17.5 6.49 22 11.72 22 17.39 22 22 17.62 22 12V4c0-1.1-.9-2-2-2zm-3 13l-3-2v2H7V9h7v2l3-2v6z" + }, + "children": [] + }] +}; +exports.ic_duo_twotone = ic_duo_twotone; \ No newline at end of file diff --git a/dist/md/ic_dvr.js b/dist/md/ic_dvr.js new file mode 100644 index 000000000..11e2483aa --- /dev/null +++ b/dist/md/ic_dvr.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_dvr = void 0; +var ic_dvr = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.1-.9-2-2-2zm0 14H3V5h18v12zm-2-9H8v2h11V8zm0 4H8v2h11v-2zM7 8H5v2h2V8zm0 4H5v2h2v-2z" + }, + "children": [] + }] +}; +exports.ic_dvr = ic_dvr; \ No newline at end of file diff --git a/dist/md/ic_dvr_outline.js b/dist/md/ic_dvr_outline.js new file mode 100644 index 000000000..be75b5a49 --- /dev/null +++ b/dist/md/ic_dvr_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_dvr_outline = void 0; +var ic_dvr_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v2h8v-2h5c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 14H3V5h18v12zm-2-9H8v2h11V8zm0 4H8v2h11v-2zM7 8H5v2h2V8zm0 4H5v2h2v-2z" + }, + "children": [] + }] +}; +exports.ic_dvr_outline = ic_dvr_outline; \ No newline at end of file diff --git a/dist/md/ic_dvr_twotone.js b/dist/md/ic_dvr_twotone.js new file mode 100644 index 000000000..e149e462e --- /dev/null +++ b/dist/md/ic_dvr_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_dvr_twotone = void 0; +var ic_dvr_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 17h18V5H3v12zm5-9h11v2H8V8zm0 4h11v2H8v-2zM5 8h2v2H5V8zm0 4h2v2H5v-2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8 12h11v2H8zm0-4h11v2H8zm13-5H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v2h8v-2h5c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 14H3V5h18v12zM5 12h2v2H5zm0-4h2v2H5z" + }, + "children": [] + }] +}; +exports.ic_dvr_twotone = ic_dvr_twotone; \ No newline at end of file diff --git a/dist/md/ic_dynamic_feed.js b/dist/md/ic_dynamic_feed.js new file mode 100644 index 000000000..98d0c6ead --- /dev/null +++ b/dist/md/ic_dynamic_feed.js @@ -0,0 +1,153 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_dynamic_feed = void 0; +var ic_dynamic_feed = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M8,8H6v7c0,1.1,0.9,2,2,2h9v-2H8V8z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M8,8H6v7c0,1.1,0.9,2,2,2h9v-2H8V8z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20,3h-8c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V5C22,3.9,21.1,3,20,3z M20,11h-8V7h8V11z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,3h-8c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V5C22,3.9,21.1,3,20,3z M20,11h-8V7h8V11z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M4,12H2v7c0,1.1,0.9,2,2,2h9v-2H4V12z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M4,12H2v7c0,1.1,0.9,2,2,2h9v-2H4V12z" + }, + "children": [] + }] + }] + }] + }] + }, { + "name": "g", + "attribs": { + "display": "none" + }, + "children": [{ + "name": "g", + "attribs": { + "display": "inline" + }, + "children": [{ + "name": "g", + "attribs": { + "display": "inline" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": { + "display": "inline" + }, + "children": [{ + "name": "g", + "attribs": { + "display": "inline" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M8,8H6v7c0,1.1,0.9,2,2,2h9v-2H8V8z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M8,8H6v7c0,1.1,0.9,2,2,2h9v-2H8V8z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20,3h-8c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V5C22,3.9,21.1,3,20,3z M20,11h-8V7h8V11z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,3h-8c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V5C22,3.9,21.1,3,20,3z M20,11h-8V7h8V11z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M4,12H2v7c0,1.1,0.9,2,2,2h9v-2H4V12z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M4,12H2v7c0,1.1,0.9,2,2,2h9v-2H4V12z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_dynamic_feed = ic_dynamic_feed; \ No newline at end of file diff --git a/dist/md/ic_dynamic_feed_outline.js b/dist/md/ic_dynamic_feed_outline.js new file mode 100644 index 000000000..5992ca54a --- /dev/null +++ b/dist/md/ic_dynamic_feed_outline.js @@ -0,0 +1,153 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_dynamic_feed_outline = void 0; +var ic_dynamic_feed_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M8,8H6v7c0,1.1,0.9,2,2,2h9v-2H8V8z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M8,8H6v7c0,1.1,0.9,2,2,2h9v-2H8V8z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20,3h-8c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V5C22,3.9,21.1,3,20,3z M20,11h-8V7h8V11z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,3h-8c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V5C22,3.9,21.1,3,20,3z M20,11h-8V7h8V11z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M4,12H2v7c0,1.1,0.9,2,2,2h9v-2H4V12z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M4,12H2v7c0,1.1,0.9,2,2,2h9v-2H4V12z" + }, + "children": [] + }] + }] + }] + }] + }, { + "name": "g", + "attribs": { + "display": "none" + }, + "children": [{ + "name": "g", + "attribs": { + "display": "inline" + }, + "children": [{ + "name": "g", + "attribs": { + "display": "inline" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": { + "display": "inline" + }, + "children": [{ + "name": "g", + "attribs": { + "display": "inline" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M8,8H6v7c0,1.1,0.9,2,2,2h9v-2H8V8z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M8,8H6v7c0,1.1,0.9,2,2,2h9v-2H8V8z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20,3h-8c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V5C22,3.9,21.1,3,20,3z M20,11h-8V7h8V11z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,3h-8c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V5C22,3.9,21.1,3,20,3z M20,11h-8V7h8V11z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M4,12H2v7c0,1.1,0.9,2,2,2h9v-2H4V12z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M4,12H2v7c0,1.1,0.9,2,2,2h9v-2H4V12z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_dynamic_feed_outline = ic_dynamic_feed_outline; \ No newline at end of file diff --git a/dist/md/ic_dynamic_feed_twotone.js b/dist/md/ic_dynamic_feed_twotone.js new file mode 100644 index 000000000..24b418fe6 --- /dev/null +++ b/dist/md/ic_dynamic_feed_twotone.js @@ -0,0 +1,195 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_dynamic_feed_twotone = void 0; +var ic_dynamic_feed_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "height": "4", + "opacity": ".3", + "width": "8", + "x": "12", + "y": "7" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "4", + "opacity": ".3", + "width": "8", + "x": "12", + "y": "7" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M8,8H6v7c0,1.1,0.9,2,2,2h9v-2H8V8z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M8,8H6v7c0,1.1,0.9,2,2,2h9v-2H8V8z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20,3h-8c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V5C22,3.9,21.1,3,20,3z M20,11h-8V7h8V11z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,3h-8c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V5C22,3.9,21.1,3,20,3z M20,11h-8V7h8V11z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M4,12H2v7c0,1.1,0.9,2,2,2h9v-2H4V12z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M4,12H2v7c0,1.1,0.9,2,2,2h9v-2H4V12z" + }, + "children": [] + }] + }] + }] + }] + }, { + "name": "g", + "attribs": { + "display": "none" + }, + "children": [{ + "name": "rect", + "attribs": { + "display": "inline", + "height": "4", + "opacity": ".3", + "width": "8", + "x": "12", + "y": "7" + }, + "children": [{ + "name": "rect", + "attribs": { + "display": "inline", + "height": "4", + "opacity": ".3", + "width": "8", + "x": "12", + "y": "7" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": { + "display": "inline" + }, + "children": [{ + "name": "g", + "attribs": { + "display": "inline" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": { + "display": "inline" + }, + "children": [{ + "name": "g", + "attribs": { + "display": "inline" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M8,8H6v7c0,1.1,0.9,2,2,2h9v-2H8V8z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M8,8H6v7c0,1.1,0.9,2,2,2h9v-2H8V8z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20,3h-8c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V5C22,3.9,21.1,3,20,3z M20,11h-8V7h8V11z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,3h-8c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V5C22,3.9,21.1,3,20,3z M20,11h-8V7h8V11z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M4,12H2v7c0,1.1,0.9,2,2,2h9v-2H4V12z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M4,12H2v7c0,1.1,0.9,2,2,2h9v-2H4V12z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_dynamic_feed_twotone = ic_dynamic_feed_twotone; \ No newline at end of file diff --git a/dist/md/ic_dynamic_form.js b/dist/md/ic_dynamic_form.js new file mode 100644 index 000000000..6e386bee1 --- /dev/null +++ b/dist/md/ic_dynamic_form.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_dynamic_form = void 0; +var ic_dynamic_form = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M17,20v-9h-2V4h7l-2,5h2L17,20z M15,13v7H4c-1.1,0-2-0.9-2-2v-3c0-1.1,0.9-2,2-2H15z M6.25,15.75h-1.5v1.5h1.5V15.75z M13,4v7H4c-1.1,0-2-0.9-2-2V6c0-1.1,0.9-2,2-2H13z M6.25,6.75h-1.5v1.5h1.5V6.75z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,20v-9h-2V4h7l-2,5h2L17,20z M15,13v7H4c-1.1,0-2-0.9-2-2v-3c0-1.1,0.9-2,2-2H15z M6.25,15.75h-1.5v1.5h1.5V15.75z M13,4v7H4c-1.1,0-2-0.9-2-2V6c0-1.1,0.9-2,2-2H13z M6.25,6.75h-1.5v1.5h1.5V6.75z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_dynamic_form = ic_dynamic_form; \ No newline at end of file diff --git a/dist/md/ic_dynamic_form_outline.js b/dist/md/ic_dynamic_form_outline.js new file mode 100644 index 000000000..3eb158b30 --- /dev/null +++ b/dist/md/ic_dynamic_form_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_dynamic_form_outline = void 0; +var ic_dynamic_form_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M13,11H4c-1.1,0-2-0.9-2-2V6c0-1.1,0.9-2,2-2h9V11z M4,9h7V6H4V9z M15,20H4c-1.1,0-2-0.9-2-2v-3c0-1.1,0.9-2,2-2h11V20z M4,18h9v-3H4V18z M22,9h-2l2-5h-7v7h2v9L22,9z M4.75,17.25h1.5v-1.5h-1.5V17.25z M4.75,8.25h1.5v-1.5h-1.5V8.25z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M13,11H4c-1.1,0-2-0.9-2-2V6c0-1.1,0.9-2,2-2h9V11z M4,9h7V6H4V9z M15,20H4c-1.1,0-2-0.9-2-2v-3c0-1.1,0.9-2,2-2h11V20z M4,18h9v-3H4V18z M22,9h-2l2-5h-7v7h2v9L22,9z M4.75,17.25h1.5v-1.5h-1.5V17.25z M4.75,8.25h1.5v-1.5h-1.5V8.25z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_dynamic_form_outline = ic_dynamic_form_outline; \ No newline at end of file diff --git a/dist/md/ic_dynamic_form_twotone.js b/dist/md/ic_dynamic_form_twotone.js new file mode 100644 index 000000000..76b7d8723 --- /dev/null +++ b/dist/md/ic_dynamic_form_twotone.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_dynamic_form_twotone = void 0; +var ic_dynamic_form_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M4,9h7V6H4V9z M4,18h9v-3H4V18z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M4,9h7V6H4V9z M4,18h9v-3H4V18z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M13,11H4c-1.1,0-2-0.9-2-2V6c0-1.1,0.9-2,2-2h9V11z M4,9h7V6H4V9z M15,20H4c-1.1,0-2-0.9-2-2v-3c0-1.1,0.9-2,2-2h11V20z M4,18h9v-3H4V18z M22,9h-2l2-5h-7v7h2v9L22,9z M4.75,17.25h1.5v-1.5h-1.5V17.25z M4.75,8.25h1.5v-1.5h-1.5V8.25z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M13,11H4c-1.1,0-2-0.9-2-2V6c0-1.1,0.9-2,2-2h9V11z M4,9h7V6H4V9z M15,20H4c-1.1,0-2-0.9-2-2v-3c0-1.1,0.9-2,2-2h11V20z M4,18h9v-3H4V18z M22,9h-2l2-5h-7v7h2v9L22,9z M4.75,17.25h1.5v-1.5h-1.5V17.25z M4.75,8.25h1.5v-1.5h-1.5V8.25z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_dynamic_form_twotone = ic_dynamic_form_twotone; \ No newline at end of file diff --git a/dist/md/ic_east.js b/dist/md/ic_east.js new file mode 100644 index 000000000..ab43ca9c1 --- /dev/null +++ b/dist/md/ic_east.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_east = void 0; +var ic_east = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15,5l-1.41,1.41L18.17,11H2V13h16.17l-4.59,4.59L15,19l7-7L15,5z" + }, + "children": [] + }] +}; +exports.ic_east = ic_east; \ No newline at end of file diff --git a/dist/md/ic_east_outline.js b/dist/md/ic_east_outline.js new file mode 100644 index 000000000..5d95574a0 --- /dev/null +++ b/dist/md/ic_east_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_east_outline = void 0; +var ic_east_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15,5l-1.41,1.41L18.17,11H2V13h16.17l-4.59,4.59L15,19l7-7L15,5z" + }, + "children": [] + }] +}; +exports.ic_east_outline = ic_east_outline; \ No newline at end of file diff --git a/dist/md/ic_east_twotone.js b/dist/md/ic_east_twotone.js new file mode 100644 index 000000000..f92ba1cf2 --- /dev/null +++ b/dist/md/ic_east_twotone.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_east_twotone = void 0; +var ic_east_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15,5l-1.41,1.41L18.17,11H2V13h16.17l-4.59,4.59L15,19l7-7L15,5z" + }, + "children": [] + }] +}; +exports.ic_east_twotone = ic_east_twotone; \ No newline at end of file diff --git a/dist/md/ic_eco.js b/dist/md/ic_eco.js new file mode 100644 index 000000000..385f623b5 --- /dev/null +++ b/dist/md/ic_eco.js @@ -0,0 +1,55 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_eco = void 0; +var ic_eco = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M6.05,8.05c-2.73,2.73-2.73,7.15-0.02,9.88c1.47-3.4,4.09-6.24,7.36-7.93c-2.77,2.34-4.71,5.61-5.39,9.32 c2.6,1.23,5.8,0.78,7.95-1.37C19.43,14.47,20,4,20,4S9.53,4.57,6.05,8.05z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M6.05,8.05c-2.73,2.73-2.73,7.15-0.02,9.88c1.47-3.4,4.09-6.24,7.36-7.93c-2.77,2.34-4.71,5.61-5.39,9.32 c2.6,1.23,5.8,0.78,7.95-1.37C19.43,14.47,20,4,20,4S9.53,4.57,6.05,8.05z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_eco = ic_eco; \ No newline at end of file diff --git a/dist/md/ic_eco_outline.js b/dist/md/ic_eco_outline.js new file mode 100644 index 000000000..9dd6b9b0f --- /dev/null +++ b/dist/md/ic_eco_outline.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_eco_outline = void 0; +var ic_eco_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M6.05,8.05c-2.73,2.73-2.73,7.17,0,9.9C7.42,19.32,9.21,20,11,20s3.58-0.68,4.95-2.05C19.43,14.47,20,4,20,4 S9.53,4.57,6.05,8.05z M14.54,16.54C13.59,17.48,12.34,18,11,18c-0.89,0-1.73-0.25-2.48-0.68c0.92-2.88,2.62-5.41,4.88-7.32 c-2.63,1.36-4.84,3.46-6.37,6c-1.48-1.96-1.35-4.75,0.44-6.54C9.21,7.72,14.04,6.65,17.8,6.2C17.35,9.96,16.28,14.79,14.54,16.54z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M6.05,8.05c-2.73,2.73-2.73,7.17,0,9.9C7.42,19.32,9.21,20,11,20s3.58-0.68,4.95-2.05C19.43,14.47,20,4,20,4 S9.53,4.57,6.05,8.05z M14.54,16.54C13.59,17.48,12.34,18,11,18c-0.89,0-1.73-0.25-2.48-0.68c0.92-2.88,2.62-5.41,4.88-7.32 c-2.63,1.36-4.84,3.46-6.37,6c-1.48-1.96-1.35-4.75,0.44-6.54C9.21,7.72,14.04,6.65,17.8,6.2C17.35,9.96,16.28,14.79,14.54,16.54z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_eco_outline = ic_eco_outline; \ No newline at end of file diff --git a/dist/md/ic_eco_twotone.js b/dist/md/ic_eco_twotone.js new file mode 100644 index 000000000..91fd4c991 --- /dev/null +++ b/dist/md/ic_eco_twotone.js @@ -0,0 +1,69 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_eco_twotone = void 0; +var ic_eco_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M7.46,9.46C5.68,11.25,5.55,14.04,7.03,16c1.53-2.54,3.73-4.64,6.37-6c-2.26,1.91-3.95,4.44-4.88,7.32 C9.27,17.75,10.11,18,11,18c1.34,0,2.59-0.52,3.54-1.46c1.74-1.74,2.81-6.57,3.26-10.33C14.04,6.65,9.21,7.72,7.46,9.46z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M7.46,9.46C5.68,11.25,5.55,14.04,7.03,16c1.53-2.54,3.73-4.64,6.37-6c-2.26,1.91-3.95,4.44-4.88,7.32 C9.27,17.75,10.11,18,11,18c1.34,0,2.59-0.52,3.54-1.46c1.74-1.74,2.81-6.57,3.26-10.33C14.04,6.65,9.21,7.72,7.46,9.46z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M6.05,8.05c-2.73,2.73-2.73,7.17,0,9.9C7.42,19.32,9.21,20,11,20s3.58-0.68,4.95-2.05C19.43,14.47,20,4,20,4 S9.53,4.57,6.05,8.05z M14.54,16.54C13.59,17.48,12.34,18,11,18c-0.89,0-1.73-0.25-2.48-0.68c0.92-2.88,2.62-5.41,4.88-7.32 c-2.63,1.36-4.84,3.46-6.37,6c-1.48-1.96-1.35-4.75,0.44-6.54C9.21,7.72,14.04,6.65,17.8,6.2C17.35,9.96,16.28,14.79,14.54,16.54z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M6.05,8.05c-2.73,2.73-2.73,7.17,0,9.9C7.42,19.32,9.21,20,11,20s3.58-0.68,4.95-2.05C19.43,14.47,20,4,20,4 S9.53,4.57,6.05,8.05z M14.54,16.54C13.59,17.48,12.34,18,11,18c-0.89,0-1.73-0.25-2.48-0.68c0.92-2.88,2.62-5.41,4.88-7.32 c-2.63,1.36-4.84,3.46-6.37,6c-1.48-1.96-1.35-4.75,0.44-6.54C9.21,7.72,14.04,6.65,17.8,6.2C17.35,9.96,16.28,14.79,14.54,16.54z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_eco_twotone = ic_eco_twotone; \ No newline at end of file diff --git a/dist/md/ic_edit.js b/dist/md/ic_edit.js new file mode 100644 index 000000000..32b522fae --- /dev/null +++ b/dist/md/ic_edit.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_edit = void 0; +var ic_edit = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z" + }, + "children": [] + }] +}; +exports.ic_edit = ic_edit; \ No newline at end of file diff --git a/dist/md/ic_edit_attributes.js b/dist/md/ic_edit_attributes.js new file mode 100644 index 000000000..ef0d090a5 --- /dev/null +++ b/dist/md/ic_edit_attributes.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_edit_attributes = void 0; +var ic_edit_attributes = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "class": "st0", + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17.63 7H6.37C3.96 7 2 9.24 2 12s1.96 5 4.37 5h11.26c2.41 0 4.37-2.24 4.37-5s-1.96-5-4.37-5zM7.24 14.46l-2.57-2.57.7-.7 1.87 1.87 3.52-3.52.7.7-4.22 4.22z" + }, + "children": [] + }] +}; +exports.ic_edit_attributes = ic_edit_attributes; \ No newline at end of file diff --git a/dist/md/ic_edit_attributes_outline.js b/dist/md/ic_edit_attributes_outline.js new file mode 100644 index 000000000..71f6f787d --- /dev/null +++ b/dist/md/ic_edit_attributes_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_edit_attributes_outline = void 0; +var ic_edit_attributes_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17.63 7H6.37C3.96 7 2 9.24 2 12s1.96 5 4.37 5h11.26c2.41 0 4.37-2.24 4.37-5s-1.96-5-4.37-5zm0 8H6.37C5.09 15 4 13.63 4 12s1.09-3 2.37-3h11.26C18.91 9 20 10.37 20 12s-1.09 3-2.37 3zM7.24 13.06l-1.87-1.87-.7.7 2.57 2.57 4.22-4.22-.7-.7z" + }, + "children": [] + }] +}; +exports.ic_edit_attributes_outline = ic_edit_attributes_outline; \ No newline at end of file diff --git a/dist/md/ic_edit_attributes_twotone.js b/dist/md/ic_edit_attributes_twotone.js new file mode 100644 index 000000000..a5c513f18 --- /dev/null +++ b/dist/md/ic_edit_attributes_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_edit_attributes_twotone = void 0; +var ic_edit_attributes_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17.63 9H6.37C5.09 9 4 10.37 4 12s1.09 3 2.37 3h11.26c1.28 0 2.37-1.37 2.37-3s-1.09-3-2.37-3zM7.24 14.46l-2.57-2.57.7-.7 1.87 1.87 3.52-3.52.7.7-4.22 4.22z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17.63 7H6.37C3.96 7 2 9.24 2 12s1.96 5 4.37 5h11.26c2.41 0 4.37-2.24 4.37-5s-1.96-5-4.37-5zm0 8H6.37C5.09 15 4 13.63 4 12s1.09-3 2.37-3h11.26C18.91 9 20 10.37 20 12s-1.09 3-2.37 3zM7.24 13.06l-1.87-1.87-.7.7 2.57 2.57 4.22-4.22-.7-.7z" + }, + "children": [] + }] +}; +exports.ic_edit_attributes_twotone = ic_edit_attributes_twotone; \ No newline at end of file diff --git a/dist/md/ic_edit_location.js b/dist/md/ic_edit_location.js new file mode 100644 index 000000000..d70a8b99f --- /dev/null +++ b/dist/md/ic_edit_location.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_edit_location = void 0; +var ic_edit_location = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C8.14 2 5 5.14 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.86-3.14-7-7-7zm-1.56 10H9v-1.44l3.35-3.34 1.43 1.43L10.44 12zm4.45-4.45l-.7.7-1.44-1.44.7-.7c.15-.15.39-.15.54 0l.9.9c.15.15.15.39 0 .54z" + }, + "children": [] + }] +}; +exports.ic_edit_location = ic_edit_location; \ No newline at end of file diff --git a/dist/md/ic_edit_location_outline.js b/dist/md/ic_edit_location_outline.js new file mode 100644 index 000000000..18e4d20c4 --- /dev/null +++ b/dist/md/ic_edit_location_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_edit_location_outline = void 0; +var ic_edit_location_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18.17 4.91L17.1 3.84l-5.55 5.55v1.08h1.08l5.54-5.56zM16 2.74l1.29-1.29a1.49 1.49 0 0 1 2.12 0l1.15 1.15c.59.59.59 1.54 0 2.12l-.68.68-.02.02-.58.58-6 6H10V8.74l6-6zm-2.28-.55l-.55.55-1.27 1.27c-3.3.05-5.9 2.6-5.9 6.2 0 2.34 1.95 5.44 6 9.14 4.05-3.7 6-6.79 6-9.14v-.1l1.8-1.8c.13.6.2 1.24.2 1.9 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8 0-4.98 3.8-8.2 8-8.2.58 0 1.16.06 1.72.18z" + }, + "children": [] + }] +}; +exports.ic_edit_location_outline = ic_edit_location_outline; \ No newline at end of file diff --git a/dist/md/ic_edit_location_twotone.js b/dist/md/ic_edit_location_twotone.js new file mode 100644 index 000000000..4b9970f1a --- /dev/null +++ b/dist/md/ic_edit_location_twotone.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_edit_location_twotone = void 0; +var ic_edit_location_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14.11,14h-0.83H10H8v-2V8.74V7.91l0.59-0.59L11.91,4C8.61,4.05,6,6.6,6,10.2c0,2.34,1.95,5.44,6,9.14 c4.05-3.7,6-6.79,6-9.14c0-0.03,0-0.06,0-0.08l-3.3,3.3L14.11,14z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18.17,4.91L17.1,3.84l-5.55,5.55v1.08h1.08L18.17,4.91z M16,2.74l1.29-1.29c0.58-0.59,1.52-0.59,2.11-0.01 c0,0,0.01,0.01,0.01,0.01l1.15,1.15c0.59,0.59,0.59,1.54,0,2.12L19.88,5.4l-0.02,0.02L19.28,6l-6,6H10V8.74L16,2.74z M13.72,2.19 l-0.55,0.55L11.9,4.01C8.6,4.06,6,6.61,6,10.21c0,2.34,1.95,5.44,6,9.14c4.05-3.7,6-6.79,6-9.14v-0.1l1.8-1.8 c0.13,0.6,0.2,1.24,0.2,1.9c0,3.32-2.67,7.25-8,11.8c-5.33-4.55-8-8.48-8-11.8c0-4.98,3.8-8.2,8-8.2 C12.58,2.01,13.16,2.07,13.72,2.19z" + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "opacity": ".3", + "points": "18.17,4.91 17.1,3.84 11.55,9.39 11.55,10.47 12.63,10.47" + }, + "children": [] + }] +}; +exports.ic_edit_location_twotone = ic_edit_location_twotone; \ No newline at end of file diff --git a/dist/md/ic_edit_off.js b/dist/md/ic_edit_off.js new file mode 100644 index 000000000..f7f754bce --- /dev/null +++ b/dist/md/ic_edit_off.js @@ -0,0 +1,28 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_edit_off = void 0; +var ic_edit_off = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "title", + "attribs": {}, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M0 0h24v24H0zm0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12.126 8.125l1.937-1.937 3.747 3.747-1.937 1.938zM20.71 5.63l-2.34-2.34a1 1 0 0 0-1.41 0l-1.83 1.83 3.75 3.75L20.71 7a1 1 0 0 0 0-1.37zM2 5l6.63 6.63L3 17.25V21h3.75l5.63-5.62L18 21l2-2L4 3 2 5z" + }, + "children": [] + }] +}; +exports.ic_edit_off = ic_edit_off; \ No newline at end of file diff --git a/dist/md/ic_edit_outline.js b/dist/md/ic_edit_outline.js new file mode 100644 index 000000000..3db9183b9 --- /dev/null +++ b/dist/md/ic_edit_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_edit_outline = void 0; +var ic_edit_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14.06 9.02l.92.92L5.92 19H5v-.92l9.06-9.06M17.66 3c-.25 0-.51.1-.7.29l-1.83 1.83 3.75 3.75 1.83-1.83c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.2-.2-.45-.29-.71-.29zm-3.6 3.19L3 17.25V21h3.75L17.81 9.94l-3.75-3.75z" + }, + "children": [] + }] +}; +exports.ic_edit_outline = ic_edit_outline; \ No newline at end of file diff --git a/dist/md/ic_edit_road.js b/dist/md/ic_edit_road.js new file mode 100644 index 000000000..77b679e04 --- /dev/null +++ b/dist/md/ic_edit_road.js @@ -0,0 +1,139 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_edit_road = void 0; +var ic_edit_road = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "18,4 16,4 16,11.9 18,9.9" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "18,4 16,4 16,11.9 18,9.9" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "16", + "width": "2", + "x": "4", + "y": "4" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "16", + "width": "2", + "x": "4", + "y": "4" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "4", + "width": "2", + "x": "10", + "y": "4" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "4", + "width": "2", + "x": "10", + "y": "4" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "4", + "width": "2", + "x": "10", + "y": "10" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "4", + "width": "2", + "x": "10", + "y": "10" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "4", + "width": "2", + "x": "10", + "y": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "4", + "width": "2", + "x": "10", + "y": "16" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M22.56,12.59l-1.15-1.15c-0.59-0.59-1.54-0.59-2.12,0L14,16.73V20h3.27l5.29-5.29C23.15,14.12,23.15,13.17,22.56,12.59z M16.58,18.45h-1.03v-1.03L19,13.97L20.03,15L16.58,18.45z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M22.56,12.59l-1.15-1.15c-0.59-0.59-1.54-0.59-2.12,0L14,16.73V20h3.27l5.29-5.29C23.15,14.12,23.15,13.17,22.56,12.59z M16.58,18.45h-1.03v-1.03L19,13.97L20.03,15L16.58,18.45z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_edit_road = ic_edit_road; \ No newline at end of file diff --git a/dist/md/ic_edit_road_outline.js b/dist/md/ic_edit_road_outline.js new file mode 100644 index 000000000..63a8e53db --- /dev/null +++ b/dist/md/ic_edit_road_outline.js @@ -0,0 +1,139 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_edit_road_outline = void 0; +var ic_edit_road_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "18,4 16,4 16,11.9 18,9.9" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "18,4 16,4 16,11.9 18,9.9" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "16", + "width": "2", + "x": "4", + "y": "4" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "16", + "width": "2", + "x": "4", + "y": "4" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "4", + "width": "2", + "x": "10", + "y": "4" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "4", + "width": "2", + "x": "10", + "y": "4" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "4", + "width": "2", + "x": "10", + "y": "10" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "4", + "width": "2", + "x": "10", + "y": "10" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "4", + "width": "2", + "x": "10", + "y": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "4", + "width": "2", + "x": "10", + "y": "16" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M22.56,12.59l-1.15-1.15c-0.59-0.59-1.54-0.59-2.12,0L14,16.73V20h3.27l5.29-5.29C23.15,14.12,23.15,13.17,22.56,12.59z M16.58,18.45h-1.03v-1.03L19,13.97L20.03,15L16.58,18.45z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M22.56,12.59l-1.15-1.15c-0.59-0.59-1.54-0.59-2.12,0L14,16.73V20h3.27l5.29-5.29C23.15,14.12,23.15,13.17,22.56,12.59z M16.58,18.45h-1.03v-1.03L19,13.97L20.03,15L16.58,18.45z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_edit_road_outline = ic_edit_road_outline; \ No newline at end of file diff --git a/dist/md/ic_edit_road_twotone.js b/dist/md/ic_edit_road_twotone.js new file mode 100644 index 000000000..dbf7ecdda --- /dev/null +++ b/dist/md/ic_edit_road_twotone.js @@ -0,0 +1,153 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_edit_road_twotone = void 0; +var ic_edit_road_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "opacity": ".3", + "points": "15.55,17.42 15.55,18.45 16.58,18.45 20.03,15 19,13.97" + }, + "children": [{ + "name": "polygon", + "attribs": { + "opacity": ".3", + "points": "15.55,17.42 15.55,18.45 16.58,18.45 20.03,15 19,13.97" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "18,4 16,4 16,11.9 18,9.9" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "18,4 16,4 16,11.9 18,9.9" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "16", + "width": "2", + "x": "4", + "y": "4" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "16", + "width": "2", + "x": "4", + "y": "4" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "4", + "width": "2", + "x": "10", + "y": "4" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "4", + "width": "2", + "x": "10", + "y": "4" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "4", + "width": "2", + "x": "10", + "y": "10" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "4", + "width": "2", + "x": "10", + "y": "10" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "4", + "width": "2", + "x": "10", + "y": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "4", + "width": "2", + "x": "10", + "y": "16" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M22.56,12.59l-1.15-1.15c-0.59-0.59-1.54-0.59-2.12,0L14,16.73V20h3.27l5.29-5.29C23.15,14.12,23.15,13.17,22.56,12.59z M16.58,18.45h-1.03v-1.03L19,13.97L20.03,15L16.58,18.45z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M22.56,12.59l-1.15-1.15c-0.59-0.59-1.54-0.59-2.12,0L14,16.73V20h3.27l5.29-5.29C23.15,14.12,23.15,13.17,22.56,12.59z M16.58,18.45h-1.03v-1.03L19,13.97L20.03,15L16.58,18.45z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_edit_road_twotone = ic_edit_road_twotone; \ No newline at end of file diff --git a/dist/md/ic_edit_twotone.js b/dist/md/ic_edit_twotone.js new file mode 100644 index 000000000..d66db6d19 --- /dev/null +++ b/dist/md/ic_edit_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_edit_twotone = void 0; +var ic_edit_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 18.08V19h.92l9.06-9.06-.92-.92z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.2-.2-.45-.29-.71-.29s-.51.1-.7.29l-1.83 1.83 3.75 3.75 1.83-1.83zM3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM5.92 19H5v-.92l9.06-9.06.92.92L5.92 19z" + }, + "children": [] + }] +}; +exports.ic_edit_twotone = ic_edit_twotone; \ No newline at end of file diff --git a/dist/md/ic_eject.js b/dist/md/ic_eject.js new file mode 100644 index 000000000..129eb02d8 --- /dev/null +++ b/dist/md/ic_eject.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_eject = void 0; +var ic_eject = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 24V0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 17h14v2H5zm7-12L5.33 15h13.34z" + }, + "children": [] + }] +}; +exports.ic_eject = ic_eject; \ No newline at end of file diff --git a/dist/md/ic_eject_outline.js b/dist/md/ic_eject_outline.js new file mode 100644 index 000000000..dc3bb8d11 --- /dev/null +++ b/dist/md/ic_eject_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_eject_outline = void 0; +var ic_eject_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 17h14v2H5zm7-12L5.33 15h13.34L12 5zm0 3.6l2.93 4.4H9.07L12 8.6z" + }, + "children": [] + }] +}; +exports.ic_eject_outline = ic_eject_outline; \ No newline at end of file diff --git a/dist/md/ic_eject_twotone.js b/dist/md/ic_eject_twotone.js new file mode 100644 index 000000000..b1df0439d --- /dev/null +++ b/dist/md/ic_eject_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_eject_twotone = void 0; +var ic_eject_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 8.6L9.07 13h5.86z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 17h14v2H5zm7-12L5.33 15h13.34L12 5zm0 3.6l2.93 4.4H9.07L12 8.6z" + }, + "children": [] + }] +}; +exports.ic_eject_twotone = ic_eject_twotone; \ No newline at end of file diff --git a/dist/md/ic_elderly.js b/dist/md/ic_elderly.js new file mode 100644 index 000000000..526ad5026 --- /dev/null +++ b/dist/md/ic_elderly.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_elderly = void 0; +var ic_elderly = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13.5,5.5c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S12.4,5.5,13.5,5.5z M20,12.5V23h-1V12.5c0-0.28-0.22-0.5-0.5-0.5 S18,12.22,18,12.5v1h-1v-0.69c-1.46-0.38-2.7-1.29-3.51-2.52C13.18,11.16,13,12.07,13,13c0,0.23,0.02,0.46,0.03,0.69L15,16.5V23h-2 v-5l-1.78-2.54L11,19l-3,4l-1.6-1.2L9,18.33V13c0-1.15,0.18-2.29,0.5-3.39L8,10.46V14H6V9.3l5.4-3.07l0,0.01 c0.59-0.31,1.32-0.33,1.94,0.03c0.36,0.21,0.63,0.51,0.8,0.85l0,0l0.79,1.67C15.58,10.1,16.94,11,18.5,11C19.33,11,20,11.67,20,12.5 z" + }, + "children": [] + }] +}; +exports.ic_elderly = ic_elderly; \ No newline at end of file diff --git a/dist/md/ic_elderly_outline.js b/dist/md/ic_elderly_outline.js new file mode 100644 index 000000000..53c8b33fa --- /dev/null +++ b/dist/md/ic_elderly_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_elderly_outline = void 0; +var ic_elderly_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13.5,5.5c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S12.4,5.5,13.5,5.5z M20,12.5V23h-1V12.5c0-0.28-0.22-0.5-0.5-0.5 S18,12.22,18,12.5v1h-1v-0.69c-1.46-0.38-2.7-1.29-3.51-2.52C13.18,11.16,13,12.07,13,13c0,0.23,0.02,0.46,0.03,0.69L15,16.5V23h-2 v-5l-1.78-2.54L11,19l-3,4l-1.6-1.2L9,18.33V13c0-1.15,0.18-2.29,0.5-3.39L8,10.46V14H6V9.3l5.4-3.07l0,0.01 c0.59-0.31,1.32-0.33,1.94,0.03c0.36,0.21,0.63,0.51,0.8,0.85l0,0l0.79,1.67C15.58,10.1,16.94,11,18.5,11C19.33,11,20,11.67,20,12.5 z" + }, + "children": [] + }] +}; +exports.ic_elderly_outline = ic_elderly_outline; \ No newline at end of file diff --git a/dist/md/ic_elderly_twotone.js b/dist/md/ic_elderly_twotone.js new file mode 100644 index 000000000..c73af8ea5 --- /dev/null +++ b/dist/md/ic_elderly_twotone.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_elderly_twotone = void 0; +var ic_elderly_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13.5,5.5c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S12.4,5.5,13.5,5.5z M20,12.5V23h-1V12.5c0-0.28-0.22-0.5-0.5-0.5 S18,12.22,18,12.5v1h-1v-0.69c-1.46-0.38-2.7-1.29-3.51-2.52C13.18,11.16,13,12.07,13,13c0,0.23,0.02,0.46,0.03,0.69L15,16.5V23h-2 v-5l-1.78-2.54L11,19l-3,4l-1.6-1.2L9,18.33V13c0-1.15,0.18-2.29,0.5-3.39L8,10.46V14H6V9.3l5.4-3.07l0,0.01 c0.59-0.31,1.32-0.33,1.94,0.03c0.36,0.21,0.63,0.51,0.8,0.85l0,0l0.79,1.67C15.58,10.1,16.94,11,18.5,11C19.33,11,20,11.67,20,12.5 z" + }, + "children": [] + }] +}; +exports.ic_elderly_twotone = ic_elderly_twotone; \ No newline at end of file diff --git a/dist/md/ic_electric_bike.js b/dist/md/ic_electric_bike.js new file mode 100644 index 000000000..56c6a400d --- /dev/null +++ b/dist/md/ic_electric_bike.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_electric_bike = void 0; +var ic_electric_bike = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,7h-0.82l-1.7-4.68C16.19,1.53,15.44,1,14.6,1H12v2h2.6l1.46,4h-4.81l-0.36-1H12V4H7v2h1.75l1.82,5H9.9 C9.46,8.77,7.59,7.12,5.25,7.01C2.45,6.87,0,9.2,0,12c0,2.8,2.2,5,5,5c2.46,0,4.45-1.69,4.9-4h4.2c0.44,2.23,2.31,3.88,4.65,3.99 c2.8,0.13,5.25-2.19,5.25-5C24,9.2,21.8,7,19,7z M7.82,13c-0.4,1.17-1.49,2-2.82,2c-1.68,0-3-1.32-3-3s1.32-3,3-3 c1.33,0,2.42,0.83,2.82,2H5v2H7.82z M14.1,11h-1.4l-0.73-2H15C14.56,9.58,14.24,10.25,14.1,11z M19,15c-1.68,0-3-1.32-3-3 c0-0.93,0.41-1.73,1.05-2.28l0.96,2.64l1.88-0.68l-0.97-2.67C18.94,9.01,18.97,9,19,9c1.68,0,3,1.32,3,3S20.68,15,19,15z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,7h-0.82l-1.7-4.68C16.19,1.53,15.44,1,14.6,1H12v2h2.6l1.46,4h-4.81l-0.36-1H12V4H7v2h1.75l1.82,5H9.9 C9.46,8.77,7.59,7.12,5.25,7.01C2.45,6.87,0,9.2,0,12c0,2.8,2.2,5,5,5c2.46,0,4.45-1.69,4.9-4h4.2c0.44,2.23,2.31,3.88,4.65,3.99 c2.8,0.13,5.25-2.19,5.25-5C24,9.2,21.8,7,19,7z M7.82,13c-0.4,1.17-1.49,2-2.82,2c-1.68,0-3-1.32-3-3s1.32-3,3-3 c1.33,0,2.42,0.83,2.82,2H5v2H7.82z M14.1,11h-1.4l-0.73-2H15C14.56,9.58,14.24,10.25,14.1,11z M19,15c-1.68,0-3-1.32-3-3 c0-0.93,0.41-1.73,1.05-2.28l0.96,2.64l1.88-0.68l-0.97-2.67C18.94,9.01,18.97,9,19,9c1.68,0,3,1.32,3,3S20.68,15,19,15z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "11,20 7,20 13,23 13,21 17,21 11,18" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "11,20 7,20 13,23 13,21 17,21 11,18" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_electric_bike = ic_electric_bike; \ No newline at end of file diff --git a/dist/md/ic_electric_bike_outline.js b/dist/md/ic_electric_bike_outline.js new file mode 100644 index 000000000..6f9583fb5 --- /dev/null +++ b/dist/md/ic_electric_bike_outline.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_electric_bike_outline = void 0; +var ic_electric_bike_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,7h-0.82l-1.7-4.68C16.19,1.53,15.44,1,14.6,1H12v2h2.6l1.46,4h-4.81l-0.36-1H12V4H7v2h1.75l1.82,5H9.9 C9.46,8.77,7.59,7.12,5.25,7.01C2.45,6.87,0,9.2,0,12c0,2.8,2.2,5,5,5c2.46,0,4.45-1.69,4.9-4h4.2c0.44,2.23,2.31,3.88,4.65,3.99 c2.8,0.13,5.25-2.19,5.25-5C24,9.2,21.8,7,19,7z M7.82,13c-0.4,1.17-1.49,2-2.82,2c-1.68,0-3-1.32-3-3s1.32-3,3-3 c1.33,0,2.42,0.83,2.82,2H5v2H7.82z M14.1,11h-1.4l-0.73-2H15C14.56,9.58,14.24,10.25,14.1,11z M19,15c-1.68,0-3-1.32-3-3 c0-0.93,0.41-1.73,1.05-2.28l0.96,2.64l1.88-0.68l-0.97-2.67C18.94,9.01,18.97,9,19,9c1.68,0,3,1.32,3,3S20.68,15,19,15z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,7h-0.82l-1.7-4.68C16.19,1.53,15.44,1,14.6,1H12v2h2.6l1.46,4h-4.81l-0.36-1H12V4H7v2h1.75l1.82,5H9.9 C9.46,8.77,7.59,7.12,5.25,7.01C2.45,6.87,0,9.2,0,12c0,2.8,2.2,5,5,5c2.46,0,4.45-1.69,4.9-4h4.2c0.44,2.23,2.31,3.88,4.65,3.99 c2.8,0.13,5.25-2.19,5.25-5C24,9.2,21.8,7,19,7z M7.82,13c-0.4,1.17-1.49,2-2.82,2c-1.68,0-3-1.32-3-3s1.32-3,3-3 c1.33,0,2.42,0.83,2.82,2H5v2H7.82z M14.1,11h-1.4l-0.73-2H15C14.56,9.58,14.24,10.25,14.1,11z M19,15c-1.68,0-3-1.32-3-3 c0-0.93,0.41-1.73,1.05-2.28l0.96,2.64l1.88-0.68l-0.97-2.67C18.94,9.01,18.97,9,19,9c1.68,0,3,1.32,3,3S20.68,15,19,15z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "11,20 7,20 13,23 13,21 17,21 11,18" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "11,20 7,20 13,23 13,21 17,21 11,18" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_electric_bike_outline = ic_electric_bike_outline; \ No newline at end of file diff --git a/dist/md/ic_electric_bike_twotone.js b/dist/md/ic_electric_bike_twotone.js new file mode 100644 index 000000000..813157b8a --- /dev/null +++ b/dist/md/ic_electric_bike_twotone.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_electric_bike_twotone = void 0; +var ic_electric_bike_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,7h-0.82l-1.7-4.68C16.19,1.53,15.44,1,14.6,1H12v2h2.6l1.46,4h-4.81l-0.36-1H12V4H7v2h1.75l1.82,5H9.9 C9.46,8.77,7.59,7.12,5.25,7.01C2.45,6.87,0,9.2,0,12c0,2.8,2.2,5,5,5c2.46,0,4.45-1.69,4.9-4h4.2c0.44,2.23,2.31,3.88,4.65,3.99 c2.8,0.13,5.25-2.19,5.25-5C24,9.2,21.8,7,19,7z M7.82,13c-0.4,1.17-1.49,2-2.82,2c-1.68,0-3-1.32-3-3s1.32-3,3-3 c1.33,0,2.42,0.83,2.82,2H5v2H7.82z M14.1,11h-1.4l-0.73-2H15C14.56,9.58,14.24,10.25,14.1,11z M19,15c-1.68,0-3-1.32-3-3 c0-0.93,0.41-1.73,1.05-2.28l0.96,2.64l1.88-0.68l-0.97-2.67C18.94,9.01,18.97,9,19,9c1.68,0,3,1.32,3,3S20.68,15,19,15z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,7h-0.82l-1.7-4.68C16.19,1.53,15.44,1,14.6,1H12v2h2.6l1.46,4h-4.81l-0.36-1H12V4H7v2h1.75l1.82,5H9.9 C9.46,8.77,7.59,7.12,5.25,7.01C2.45,6.87,0,9.2,0,12c0,2.8,2.2,5,5,5c2.46,0,4.45-1.69,4.9-4h4.2c0.44,2.23,2.31,3.88,4.65,3.99 c2.8,0.13,5.25-2.19,5.25-5C24,9.2,21.8,7,19,7z M7.82,13c-0.4,1.17-1.49,2-2.82,2c-1.68,0-3-1.32-3-3s1.32-3,3-3 c1.33,0,2.42,0.83,2.82,2H5v2H7.82z M14.1,11h-1.4l-0.73-2H15C14.56,9.58,14.24,10.25,14.1,11z M19,15c-1.68,0-3-1.32-3-3 c0-0.93,0.41-1.73,1.05-2.28l0.96,2.64l1.88-0.68l-0.97-2.67C18.94,9.01,18.97,9,19,9c1.68,0,3,1.32,3,3S20.68,15,19,15z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "11,20 7,20 13,23 13,21 17,21 11,18" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "11,20 7,20 13,23 13,21 17,21 11,18" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_electric_bike_twotone = ic_electric_bike_twotone; \ No newline at end of file diff --git a/dist/md/ic_electric_car.js b/dist/md/ic_electric_car.js new file mode 100644 index 000000000..c9638dd79 --- /dev/null +++ b/dist/md/ic_electric_car.js @@ -0,0 +1,59 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_electric_car = void 0; +var ic_electric_car = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M18.92,2.01C18.72,1.42,18.16,1,17.5,1h-11C5.84,1,5.29,1.42,5.08,2.01L3,8v8c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-1h12 v1c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1V8L18.92,2.01z M6.5,12C5.67,12,5,11.33,5,10.5S5.67,9,6.5,9S8,9.67,8,10.5 S7.33,12,6.5,12z M17.5,12c-0.83,0-1.5-0.67-1.5-1.5S16.67,9,17.5,9S19,9.67,19,10.5S18.33,12,17.5,12z M5,7l1.5-4.5h11L19,7H5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18.92,2.01C18.72,1.42,18.16,1,17.5,1h-11C5.84,1,5.29,1.42,5.08,2.01L3,8v8c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-1h12 v1c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1V8L18.92,2.01z M6.5,12C5.67,12,5,11.33,5,10.5S5.67,9,6.5,9S8,9.67,8,10.5 S7.33,12,6.5,12z M17.5,12c-0.83,0-1.5-0.67-1.5-1.5S16.67,9,17.5,9S19,9.67,19,10.5S18.33,12,17.5,12z M5,7l1.5-4.5h11L19,7H5z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "7,20 11,20 11,18 17,21 13,21 13,23" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "7,20 11,20 11,18 17,21 13,21 13,23" + }, + "children": [] + }] + }] + }] +}; +exports.ic_electric_car = ic_electric_car; \ No newline at end of file diff --git a/dist/md/ic_electric_car_outline.js b/dist/md/ic_electric_car_outline.js new file mode 100644 index 000000000..9707382a9 --- /dev/null +++ b/dist/md/ic_electric_car_outline.js @@ -0,0 +1,99 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_electric_car_outline = void 0; +var ic_electric_car_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M18.92,2.01C18.72,1.42,18.16,1,17.5,1h-11C5.84,1,5.29,1.42,5.08,2.01L3,8v8c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-1 h12v1c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1V8L18.92,2.01z M6.85,3h10.29l1.08,3.11H5.77L6.85,3z M19,13H5V8h14V13z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18.92,2.01C18.72,1.42,18.16,1,17.5,1h-11C5.84,1,5.29,1.42,5.08,2.01L3,8v8c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-1 h12v1c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1V8L18.92,2.01z M6.85,3h10.29l1.08,3.11H5.77L6.85,3z M19,13H5V8h14V13z" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "7.5", + "cy": "10.5", + "r": "1.5" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "7.5", + "cy": "10.5", + "r": "1.5" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "16.5", + "cy": "10.5", + "r": "1.5" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "16.5", + "cy": "10.5", + "r": "1.5" + }, + "children": [] + }] + }] + }] + }, { + "name": "polygon", + "attribs": { + "points": "7,20 11,20 11,18 17,21 13,21 13,23" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "7,20 11,20 11,18 17,21 13,21 13,23" + }, + "children": [] + }] + }] + }] +}; +exports.ic_electric_car_outline = ic_electric_car_outline; \ No newline at end of file diff --git a/dist/md/ic_electric_car_twotone.js b/dist/md/ic_electric_car_twotone.js new file mode 100644 index 000000000..a9c6ad7d9 --- /dev/null +++ b/dist/md/ic_electric_car_twotone.js @@ -0,0 +1,113 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_electric_car_twotone = void 0; +var ic_electric_car_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M5,13h14V8H5V13z M16.5,9c0.83,0,1.5,0.67,1.5,1.5c0,0.83-0.67,1.5-1.5,1.5S15,11.33,15,10.5 C15,9.67,15.67,9,16.5,9z M7.5,9C8.33,9,9,9.67,9,10.5C9,11.33,8.33,12,7.5,12S6,11.33,6,10.5C6,9.67,6.67,9,7.5,9z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M5,13h14V8H5V13z M16.5,9c0.83,0,1.5,0.67,1.5,1.5c0,0.83-0.67,1.5-1.5,1.5S15,11.33,15,10.5 C15,9.67,15.67,9,16.5,9z M7.5,9C8.33,9,9,9.67,9,10.5C9,11.33,8.33,12,7.5,12S6,11.33,6,10.5C6,9.67,6.67,9,7.5,9z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M18.92,2.01C18.72,1.42,18.16,1,17.5,1h-11C5.84,1,5.29,1.42,5.08,2.01L3,8v8c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-1 h12v1c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1V8L18.92,2.01z M6.85,3h10.29l1.08,3.11H5.77L6.85,3z M19,13H5V8h14V13z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18.92,2.01C18.72,1.42,18.16,1,17.5,1h-11C5.84,1,5.29,1.42,5.08,2.01L3,8v8c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-1 h12v1c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1V8L18.92,2.01z M6.85,3h10.29l1.08,3.11H5.77L6.85,3z M19,13H5V8h14V13z" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "7.5", + "cy": "10.5", + "r": "1.5" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "7.5", + "cy": "10.5", + "r": "1.5" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "16.5", + "cy": "10.5", + "r": "1.5" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "16.5", + "cy": "10.5", + "r": "1.5" + }, + "children": [] + }] + }] + }] + }, { + "name": "polygon", + "attribs": { + "points": "7,20 11,20 11,18 17,21 13,21 13,23" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "7,20 11,20 11,18 17,21 13,21 13,23" + }, + "children": [] + }] + }] + }] +}; +exports.ic_electric_car_twotone = ic_electric_car_twotone; \ No newline at end of file diff --git a/dist/md/ic_electric_moped.js b/dist/md/ic_electric_moped.js new file mode 100644 index 000000000..42194e430 --- /dev/null +++ b/dist/md/ic_electric_moped.js @@ -0,0 +1,97 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_electric_moped = void 0; +var ic_electric_moped = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,5c0-1.1-0.9-2-2-2h-3v2h3v2.65L13.52,12H10V7H6c-2.21,0-4,1.79-4,4v3h2c0,1.66,1.34,3,3,3s3-1.34,3-3h4.48L19,8.35V5z M7,15c-0.55,0-1-0.45-1-1h2C8,14.55,7.55,15,7,15z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,5c0-1.1-0.9-2-2-2h-3v2h3v2.65L13.52,12H10V7H6c-2.21,0-4,1.79-4,4v3h2c0,1.66,1.34,3,3,3s3-1.34,3-3h4.48L19,8.35V5z M7,15c-0.55,0-1-0.45-1-1h2C8,14.55,7.55,15,7,15z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "5", + "x": "5", + "y": "4" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "5", + "x": "5", + "y": "4" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19,11c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,11,19,11z M19,15c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S19.55,15,19,15z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,11c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,11,19,11z M19,15c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S19.55,15,19,15z" + }, + "children": [] + }] + }] + }] + }, { + "name": "polygon", + "attribs": { + "points": "7,20 11,20 11,18 17,21 13,21 13,23" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "7,20 11,20 11,18 17,21 13,21 13,23" + }, + "children": [] + }] + }] + }] +}; +exports.ic_electric_moped = ic_electric_moped; \ No newline at end of file diff --git a/dist/md/ic_electric_moped_outline.js b/dist/md/ic_electric_moped_outline.js new file mode 100644 index 000000000..173214d09 --- /dev/null +++ b/dist/md/ic_electric_moped_outline.js @@ -0,0 +1,97 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_electric_moped_outline = void 0; +var ic_electric_moped_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,5c0-1.1-0.9-2-2-2h-3v2h3v2.65L13.52,12H10V7H6c-2.21,0-4,1.79-4,4v3h2c0,1.66,1.34,3,3,3s3-1.34,3-3h4.48L19,8.35V5z M4,12v-1c0-1.1,0.9-2,2-2h2v3H4z M7,15c-0.55,0-1-0.45-1-1h2C8,14.55,7.55,15,7,15z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,5c0-1.1-0.9-2-2-2h-3v2h3v2.65L13.52,12H10V7H6c-2.21,0-4,1.79-4,4v3h2c0,1.66,1.34,3,3,3s3-1.34,3-3h4.48L19,8.35V5z M4,12v-1c0-1.1,0.9-2,2-2h2v3H4z M7,15c-0.55,0-1-0.45-1-1h2C8,14.55,7.55,15,7,15z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "5", + "x": "5", + "y": "4" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "5", + "x": "5", + "y": "4" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19,11c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,11,19,11z M19,15c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S19.55,15,19,15z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,11c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,11,19,11z M19,15c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S19.55,15,19,15z" + }, + "children": [] + }] + }] + }] + }, { + "name": "polygon", + "attribs": { + "points": "7,20 11,20 11,18 17,21 13,21 13,23" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "7,20 11,20 11,18 17,21 13,21 13,23" + }, + "children": [] + }] + }] + }] +}; +exports.ic_electric_moped_outline = ic_electric_moped_outline; \ No newline at end of file diff --git a/dist/md/ic_electric_moped_twotone.js b/dist/md/ic_electric_moped_twotone.js new file mode 100644 index 000000000..26cf9c50c --- /dev/null +++ b/dist/md/ic_electric_moped_twotone.js @@ -0,0 +1,111 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_electric_moped_twotone = void 0; +var ic_electric_moped_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M4,11v1h4V9H6C4.9,9,4,9.9,4,11z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M4,11v1h4V9H6C4.9,9,4,9.9,4,11z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19,5c0-1.1-0.9-2-2-2h-3v2h3v2.65L13.52,12H10V7H6c-2.21,0-4,1.79-4,4v3h2c0,1.66,1.34,3,3,3s3-1.34,3-3h4.48L19,8.35V5z M7,15c-0.55,0-1-0.45-1-1h2C8,14.55,7.55,15,7,15z M8,12H4v-1c0-1.1,0.9-2,2-2h2V12z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,5c0-1.1-0.9-2-2-2h-3v2h3v2.65L13.52,12H10V7H6c-2.21,0-4,1.79-4,4v3h2c0,1.66,1.34,3,3,3s3-1.34,3-3h4.48L19,8.35V5z M7,15c-0.55,0-1-0.45-1-1h2C8,14.55,7.55,15,7,15z M8,12H4v-1c0-1.1,0.9-2,2-2h2V12z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "5", + "x": "5", + "y": "4" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "5", + "x": "5", + "y": "4" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19,11c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,11,19,11z M19,15c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S19.55,15,19,15z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,11c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,11,19,11z M19,15c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S19.55,15,19,15z" + }, + "children": [] + }] + }] + }] + }, { + "name": "polygon", + "attribs": { + "points": "7,20 11,20 11,18 17,21 13,21 13,23" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "7,20 11,20 11,18 17,21 13,21 13,23" + }, + "children": [] + }] + }] + }] +}; +exports.ic_electric_moped_twotone = ic_electric_moped_twotone; \ No newline at end of file diff --git a/dist/md/ic_electric_rickshaw.js b/dist/md/ic_electric_rickshaw.js new file mode 100644 index 000000000..a59395a2f --- /dev/null +++ b/dist/md/ic_electric_rickshaw.js @@ -0,0 +1,59 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_electric_rickshaw = void 0; +var ic_electric_rickshaw = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M21,11.18V9.72c0-0.47-0.16-0.92-0.46-1.28L16.6,3.72C16.22,3.26,15.66,3,15.06,3H3C1.9,3,1,3.9,1,5v8c0,1.1,0.9,2,2,2 h0.18C3.6,16.16,4.7,17,6,17s2.4-0.84,2.82-2h8.37c0.41,1.16,1.51,2,2.82,2c1.66,0,3-1.34,3-3C23,12.7,22.16,11.6,21,11.18z M18.4,9H16V6.12L18.4,9z M3,5h4v4H3V5z M6,15c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S6.55,15,6,15z M9,13v-2h3V9H9V5h5v8H9z M20,15c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S20.55,15,20,15z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21,11.18V9.72c0-0.47-0.16-0.92-0.46-1.28L16.6,3.72C16.22,3.26,15.66,3,15.06,3H3C1.9,3,1,3.9,1,5v8c0,1.1,0.9,2,2,2 h0.18C3.6,16.16,4.7,17,6,17s2.4-0.84,2.82-2h8.37c0.41,1.16,1.51,2,2.82,2c1.66,0,3-1.34,3-3C23,12.7,22.16,11.6,21,11.18z M18.4,9H16V6.12L18.4,9z M3,5h4v4H3V5z M6,15c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S6.55,15,6,15z M9,13v-2h3V9H9V5h5v8H9z M20,15c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S20.55,15,20,15z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "7,20 11,20 11,18 17,21 13,21 13,23" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "7,20 11,20 11,18 17,21 13,21 13,23" + }, + "children": [] + }] + }] + }] +}; +exports.ic_electric_rickshaw = ic_electric_rickshaw; \ No newline at end of file diff --git a/dist/md/ic_electric_rickshaw_twotone.js b/dist/md/ic_electric_rickshaw_twotone.js new file mode 100644 index 000000000..8a1d65b96 --- /dev/null +++ b/dist/md/ic_electric_rickshaw_twotone.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_electric_rickshaw_twotone = void 0; +var ic_electric_rickshaw_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M21,11.18V9.72c0-0.47-0.16-0.92-0.46-1.28L16.6,3.72C16.22,3.26,15.66,3,15.06,3H3C1.9,3,1,3.9,1,5v8c0,1.1,0.9,2,2,2 h0.18C3.6,16.16,4.7,17,6,17s2.4-0.84,2.82-2h8.37c0.41,1.16,1.51,2,2.82,2c1.66,0,3-1.34,3-3C23,12.7,22.16,11.6,21,11.18z M6,15 c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S6.55,15,6,15z M7,11.17C6.69,11.06,6.35,11,6,11c-1.3,0-2.42,0.84-2.83,2H3v-3h4V11.17 z M7,8H3V5h4V8z M14,13H9v-3h3V8H9V5h5V13z M16,6.12L18.4,9H16V6.12z M17.17,13H16v-2h3v0.17C18.15,11.47,17.47,12.15,17.17,13z M20,15c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S20.55,15,20,15z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21,11.18V9.72c0-0.47-0.16-0.92-0.46-1.28L16.6,3.72C16.22,3.26,15.66,3,15.06,3H3C1.9,3,1,3.9,1,5v8c0,1.1,0.9,2,2,2 h0.18C3.6,16.16,4.7,17,6,17s2.4-0.84,2.82-2h8.37c0.41,1.16,1.51,2,2.82,2c1.66,0,3-1.34,3-3C23,12.7,22.16,11.6,21,11.18z M6,15 c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S6.55,15,6,15z M7,11.17C6.69,11.06,6.35,11,6,11c-1.3,0-2.42,0.84-2.83,2H3v-3h4V11.17 z M7,8H3V5h4V8z M14,13H9v-3h3V8H9V5h5V13z M16,6.12L18.4,9H16V6.12z M17.17,13H16v-2h3v0.17C18.15,11.47,17.47,12.15,17.17,13z M20,15c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S20.55,15,20,15z" + }, + "children": [] + }] + }] + }] + }, { + "name": "polygon", + "attribs": { + "points": "7,20 11,20 11,18 17,21 13,21 13,23" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "7,20 11,20 11,18 17,21 13,21 13,23" + }, + "children": [] + }] + }] + }] +}; +exports.ic_electric_rickshaw_twotone = ic_electric_rickshaw_twotone; \ No newline at end of file diff --git a/dist/md/ic_electric_scooter.js b/dist/md/ic_electric_scooter.js new file mode 100644 index 000000000..bf85a5596 --- /dev/null +++ b/dist/md/ic_electric_scooter.js @@ -0,0 +1,79 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_electric_scooter = void 0; +var ic_electric_scooter = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M7.82,16H15v-1c0-2.21,1.79-4,4-4h0.74l-1.9-8.44C17.63,1.65,16.82,1,15.89,1H12v2h3.89l1.4,6.25c0,0-0.01,0-0.01,0 c-2.16,0.65-3.81,2.48-4.19,4.75H7.82c-0.48-1.34-1.86-2.24-3.42-1.94c-1.18,0.23-2.13,1.2-2.35,2.38C1.7,16.34,3.16,18,5,18 C6.3,18,7.4,17.16,7.82,16z M5,16c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S5.55,16,5,16z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M7.82,16H15v-1c0-2.21,1.79-4,4-4h0.74l-1.9-8.44C17.63,1.65,16.82,1,15.89,1H12v2h3.89l1.4,6.25c0,0-0.01,0-0.01,0 c-2.16,0.65-3.81,2.48-4.19,4.75H7.82c-0.48-1.34-1.86-2.24-3.42-1.94c-1.18,0.23-2.13,1.2-2.35,2.38C1.7,16.34,3.16,18,5,18 C6.3,18,7.4,17.16,7.82,16z M5,16c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S5.55,16,5,16z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19,12c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,12,19,12z M19,16c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S19.55,16,19,16z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,12c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,12,19,12z M19,16c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S19.55,16,19,16z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "11,20 7,20 13,23 13,21 17,21 11,18" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "11,20 7,20 13,23 13,21 17,21 11,18" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_electric_scooter = ic_electric_scooter; \ No newline at end of file diff --git a/dist/md/ic_electric_scooter_outline.js b/dist/md/ic_electric_scooter_outline.js new file mode 100644 index 000000000..275a4ed55 --- /dev/null +++ b/dist/md/ic_electric_scooter_outline.js @@ -0,0 +1,79 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_electric_scooter_outline = void 0; +var ic_electric_scooter_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M7.82,16H15v-1c0-2.21,1.79-4,4-4h0.74l-1.9-8.44C17.63,1.65,16.82,1,15.89,1H12v2h3.89l1.4,6.25c0,0-0.01,0-0.01,0 c-2.16,0.65-3.81,2.48-4.19,4.75H7.82c-0.48-1.34-1.86-2.24-3.42-1.94c-1.18,0.23-2.13,1.2-2.35,2.38C1.7,16.34,3.16,18,5,18 C6.3,18,7.4,17.16,7.82,16z M5,16c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S5.55,16,5,16z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M7.82,16H15v-1c0-2.21,1.79-4,4-4h0.74l-1.9-8.44C17.63,1.65,16.82,1,15.89,1H12v2h3.89l1.4,6.25c0,0-0.01,0-0.01,0 c-2.16,0.65-3.81,2.48-4.19,4.75H7.82c-0.48-1.34-1.86-2.24-3.42-1.94c-1.18,0.23-2.13,1.2-2.35,2.38C1.7,16.34,3.16,18,5,18 C6.3,18,7.4,17.16,7.82,16z M5,16c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S5.55,16,5,16z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19,12c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,12,19,12z M19,16c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S19.55,16,19,16z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,12c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,12,19,12z M19,16c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S19.55,16,19,16z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "11,20 7,20 13,23 13,21 17,21 11,18" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "11,20 7,20 13,23 13,21 17,21 11,18" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_electric_scooter_outline = ic_electric_scooter_outline; \ No newline at end of file diff --git a/dist/md/ic_electric_scooter_twotone.js b/dist/md/ic_electric_scooter_twotone.js new file mode 100644 index 000000000..c8628bc74 --- /dev/null +++ b/dist/md/ic_electric_scooter_twotone.js @@ -0,0 +1,79 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_electric_scooter_twotone = void 0; +var ic_electric_scooter_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M7.82,16H15v-1c0-2.21,1.79-4,4-4h0.74l-1.9-8.44C17.63,1.65,16.82,1,15.89,1H12v2h3.89l1.4,6.25c0,0-0.01,0-0.01,0 c-2.16,0.65-3.81,2.48-4.19,4.75H7.82c-0.48-1.34-1.86-2.24-3.42-1.94c-1.18,0.23-2.13,1.2-2.35,2.38C1.7,16.34,3.16,18,5,18 C6.3,18,7.4,17.16,7.82,16z M5,16c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S5.55,16,5,16z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M7.82,16H15v-1c0-2.21,1.79-4,4-4h0.74l-1.9-8.44C17.63,1.65,16.82,1,15.89,1H12v2h3.89l1.4,6.25c0,0-0.01,0-0.01,0 c-2.16,0.65-3.81,2.48-4.19,4.75H7.82c-0.48-1.34-1.86-2.24-3.42-1.94c-1.18,0.23-2.13,1.2-2.35,2.38C1.7,16.34,3.16,18,5,18 C6.3,18,7.4,17.16,7.82,16z M5,16c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S5.55,16,5,16z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19,12c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,12,19,12z M19,16c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S19.55,16,19,16z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,12c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,12,19,12z M19,16c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S19.55,16,19,16z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "11,20 7,20 13,23 13,21 17,21 11,18" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "11,20 7,20 13,23 13,21 17,21 11,18" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_electric_scooter_twotone = ic_electric_scooter_twotone; \ No newline at end of file diff --git a/dist/md/ic_electrical_services.js b/dist/md/ic_electrical_services.js new file mode 100644 index 000000000..e52cc682f --- /dev/null +++ b/dist/md/ic_electrical_services.js @@ -0,0 +1,91 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_electrical_services = void 0; +var ic_electrical_services = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M21,14c0-0.55-0.45-1-1-1h-2v2h2C20.55,15,21,14.55,21,14z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21,14c0-0.55-0.45-1-1-1h-2v2h2C20.55,15,21,14.55,21,14z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20,17h-2v2h2c0.55,0,1-0.45,1-1C21,17.45,20.55,17,20,17z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,17h-2v2h2c0.55,0,1-0.45,1-1C21,17.45,20.55,17,20,17z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M12,14h-2v4h2c0,1.1,0.9,2,2,2h3v-8h-3C12.9,12,12,12.9,12,14z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,14h-2v4h2c0,1.1,0.9,2,2,2h3v-8h-3C12.9,12,12,12.9,12,14z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M5,13c0-1.1,0.9-2,2-2h1.5c1.93,0,3.5-1.57,3.5-3.5S10.43,4,8.5,4H5C4.45,4,4,4.45,4,5c0,0.55,0.45,1,1,1h3.5 C9.33,6,10,6.67,10,7.5S9.33,9,8.5,9H7c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4h2v-2H7C5.9,15,5,14.1,5,13z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M5,13c0-1.1,0.9-2,2-2h1.5c1.93,0,3.5-1.57,3.5-3.5S10.43,4,8.5,4H5C4.45,4,4,4.45,4,5c0,0.55,0.45,1,1,1h3.5 C9.33,6,10,6.67,10,7.5S9.33,9,8.5,9H7c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4h2v-2H7C5.9,15,5,14.1,5,13z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_electrical_services = ic_electrical_services; \ No newline at end of file diff --git a/dist/md/ic_electrical_services_outline.js b/dist/md/ic_electrical_services_outline.js new file mode 100644 index 000000000..e927f5adf --- /dev/null +++ b/dist/md/ic_electrical_services_outline.js @@ -0,0 +1,91 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_electrical_services_outline = void 0; +var ic_electrical_services_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M21,14c0-0.55-0.45-1-1-1h-2v2h2C20.55,15,21,14.55,21,14z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21,14c0-0.55-0.45-1-1-1h-2v2h2C20.55,15,21,14.55,21,14z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20,17h-2v2h2c0.55,0,1-0.45,1-1C21,17.45,20.55,17,20,17z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,17h-2v2h2c0.55,0,1-0.45,1-1C21,17.45,20.55,17,20,17z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M12,14h-2v4h2c0,1.1,0.9,2,2,2h3v-8h-3C12.9,12,12,12.9,12,14z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,14h-2v4h2c0,1.1,0.9,2,2,2h3v-8h-3C12.9,12,12,12.9,12,14z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M5,13c0-1.1,0.9-2,2-2h1.5c1.93,0,3.5-1.57,3.5-3.5S10.43,4,8.5,4H5C4.45,4,4,4.45,4,5c0,0.55,0.45,1,1,1h3.5 C9.33,6,10,6.67,10,7.5S9.33,9,8.5,9H7c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4h2v-2H7C5.9,15,5,14.1,5,13z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M5,13c0-1.1,0.9-2,2-2h1.5c1.93,0,3.5-1.57,3.5-3.5S10.43,4,8.5,4H5C4.45,4,4,4.45,4,5c0,0.55,0.45,1,1,1h3.5 C9.33,6,10,6.67,10,7.5S9.33,9,8.5,9H7c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4h2v-2H7C5.9,15,5,14.1,5,13z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_electrical_services_outline = ic_electrical_services_outline; \ No newline at end of file diff --git a/dist/md/ic_electrical_services_twotone.js b/dist/md/ic_electrical_services_twotone.js new file mode 100644 index 000000000..b8e3c795c --- /dev/null +++ b/dist/md/ic_electrical_services_twotone.js @@ -0,0 +1,83 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_electrical_services_twotone = void 0; +var ic_electrical_services_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,15h-2v-2h2c0.55,0,1,0.45,1,1v0C21,14.55,20.55,15,20,15z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,15h-2v-2h2c0.55,0,1,0.45,1,1v0C21,14.55,20.55,15,20,15z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20,19h-2v-2h2c0.55,0,1,0.45,1,1v0C21,18.55,20.55,19,20,19z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,19h-2v-2h2c0.55,0,1,0.45,1,1v0C21,18.55,20.55,19,20,19z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M14,12L14,12L14,12c-1.1,0-2,0.9-2,2v0h-2v4h2v0c0,1.1,0.9,2,2,2h0h3l0,0v-8H14z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14,12L14,12L14,12c-1.1,0-2,0.9-2,2v0h-2v4h2v0c0,1.1,0.9,2,2,2h0h3l0,0v-8H14z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M4,5L4,5c0,0.55,0.45,1,1,1h3.5C9.33,6,10,6.67,10,7.5v0C10,8.33,9.33,9,8.5,9H7c-2.21,0-4,1.79-4,4v0c0,2.21,1.79,4,4,4h2 v-2H7c-1.1,0-2-0.9-2-2v0c0-1.1,0.9-2,2-2h1.5c1.93,0,3.5-1.57,3.5-3.5v0C12,5.57,10.43,4,8.5,4H5C4.45,4,4,4.45,4,5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M4,5L4,5c0,0.55,0.45,1,1,1h3.5C9.33,6,10,6.67,10,7.5v0C10,8.33,9.33,9,8.5,9H7c-2.21,0-4,1.79-4,4v0c0,2.21,1.79,4,4,4h2 v-2H7c-1.1,0-2-0.9-2-2v0c0-1.1,0.9-2,2-2h1.5c1.93,0,3.5-1.57,3.5-3.5v0C12,5.57,10.43,4,8.5,4H5C4.45,4,4,4.45,4,5z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_electrical_services_twotone = ic_electrical_services_twotone; \ No newline at end of file diff --git a/dist/md/ic_elevator.js b/dist/md/ic_elevator.js new file mode 100644 index 000000000..7da2f024c --- /dev/null +++ b/dist/md/ic_elevator.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_elevator = void 0; +var ic_elevator = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M8.5,6c0.69,0,1.25,0.56,1.25,1.25 c0,0.69-0.56,1.25-1.25,1.25S7.25,7.94,7.25,7.25C7.25,6.56,7.81,6,8.5,6z M11,14h-1v4H7v-4H6v-2.5c0-1.1,0.9-2,2-2h1 c1.1,0,2,0.9,2,2V14z M15.5,17L13,13h5L15.5,17z M13,11l2.5-4l2.5,4H13z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M8.5,6c0.69,0,1.25,0.56,1.25,1.25 c0,0.69-0.56,1.25-1.25,1.25S7.25,7.94,7.25,7.25C7.25,6.56,7.81,6,8.5,6z M11,14h-1v4H7v-4H6v-2.5c0-1.1,0.9-2,2-2h1 c1.1,0,2,0.9,2,2V14z M15.5,17L13,13h5L15.5,17z M13,11l2.5-4l2.5,4H13z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_elevator = ic_elevator; \ No newline at end of file diff --git a/dist/md/ic_elevator_outline.js b/dist/md/ic_elevator_outline.js new file mode 100644 index 000000000..ccef38da0 --- /dev/null +++ b/dist/md/ic_elevator_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_elevator_outline = void 0; +var ic_elevator_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19,5v14H5V5H19 M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3L19,3z M10,18v-4h1 v-2.5c0-1.1-0.9-2-2-2H8c-1.1,0-2,0.9-2,2V14h1v4H10z M8.5,8.5c0.69,0,1.25-0.56,1.25-1.25S9.19,6,8.5,6S7.25,6.56,7.25,7.25 S7.81,8.5,8.5,8.5z M18,11l-2.5-4L13,11H18z M13,13l2.5,4l2.5-4H13z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,5v14H5V5H19 M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3L19,3z M10,18v-4h1 v-2.5c0-1.1-0.9-2-2-2H8c-1.1,0-2,0.9-2,2V14h1v4H10z M8.5,8.5c0.69,0,1.25-0.56,1.25-1.25S9.19,6,8.5,6S7.25,6.56,7.25,7.25 S7.81,8.5,8.5,8.5z M18,11l-2.5-4L13,11H18z M13,13l2.5,4l2.5-4H13z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_elevator_outline = ic_elevator_outline; \ No newline at end of file diff --git a/dist/md/ic_elevator_twotone.js b/dist/md/ic_elevator_twotone.js new file mode 100644 index 000000000..2b9e65c81 --- /dev/null +++ b/dist/md/ic_elevator_twotone.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_elevator_twotone = void 0; +var ic_elevator_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19,5v14H5V5H19 M10,18v-4h1v-2.5c0-1.1-0.9-2-2-2H8c-1.1,0-2,0.9-2,2V14h1v4H10z M8.5,8.5 c0.69,0,1.25-0.56,1.25-1.25S9.19,6,8.5,6S7.25,6.56,7.25,7.25S7.81,8.5,8.5,8.5z M18,11l-2.5-4L13,11H18z M13,13l2.5,4l2.5-4H13z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,5v14H5V5H19 M10,18v-4h1v-2.5c0-1.1-0.9-2-2-2H8c-1.1,0-2,0.9-2,2V14h1v4H10z M8.5,8.5 c0.69,0,1.25-0.56,1.25-1.25S9.19,6,8.5,6S7.25,6.56,7.25,7.25S7.81,8.5,8.5,8.5z M18,11l-2.5-4L13,11H18z M13,13l2.5,4l2.5-4H13z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19,5v14H5V5H19 M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3L19,3z M10,18v-4h1 v-2.5c0-1.1-0.9-2-2-2H8c-1.1,0-2,0.9-2,2V14h1v4H10z M8.5,8.5c0.69,0,1.25-0.56,1.25-1.25S9.19,6,8.5,6S7.25,6.56,7.25,7.25 S7.81,8.5,8.5,8.5z M18,11l-2.5-4L13,11H18z M13,13l2.5,4l2.5-4H13z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,5v14H5V5H19 M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3L19,3z M10,18v-4h1 v-2.5c0-1.1-0.9-2-2-2H8c-1.1,0-2,0.9-2,2V14h1v4H10z M8.5,8.5c0.69,0,1.25-0.56,1.25-1.25S9.19,6,8.5,6S7.25,6.56,7.25,7.25 S7.81,8.5,8.5,8.5z M18,11l-2.5-4L13,11H18z M13,13l2.5,4l2.5-4H13z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_elevator_twotone = ic_elevator_twotone; \ No newline at end of file diff --git a/dist/md/ic_email.js b/dist/md/ic_email.js new file mode 100644 index 000000000..50544f773 --- /dev/null +++ b/dist/md/ic_email.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_email = void 0; +var ic_email = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z" + }, + "children": [] + }] +}; +exports.ic_email = ic_email; \ No newline at end of file diff --git a/dist/md/ic_email_outline.js b/dist/md/ic_email_outline.js new file mode 100644 index 000000000..791126eac --- /dev/null +++ b/dist/md/ic_email_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_email_outline = void 0; +var ic_email_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6zm-2 0l-8 5-8-5h16zm0 12H4V8l8 5 8-5v10z" + }, + "children": [] + }] +}; +exports.ic_email_outline = ic_email_outline; \ No newline at end of file diff --git a/dist/md/ic_email_twotone.js b/dist/md/ic_email_twotone.js new file mode 100644 index 000000000..e9db0cae1 --- /dev/null +++ b/dist/md/ic_email_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_email_twotone = void 0; +var ic_email_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 8l-8 5-8-5v10h16zm0-2H4l8 4.99z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 20h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2zM20 6l-8 4.99L4 6h16zM4 8l8 5 8-5v10H4V8z" + }, + "children": [] + }] +}; +exports.ic_email_twotone = ic_email_twotone; \ No newline at end of file diff --git a/dist/md/ic_emoji_emotions.js b/dist/md/ic_emoji_emotions.js new file mode 100644 index 000000000..9a00e217b --- /dev/null +++ b/dist/md/ic_emoji_emotions.js @@ -0,0 +1,55 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_emoji_emotions = void 0; +var ic_emoji_emotions = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M11.99,2C6.47,2,2,6.48,2,12c0,5.52,4.47,10,9.99,10C17.52,22,22,17.52,22,12C22,6.48,17.52,2,11.99,2z M8.5,8 C9.33,8,10,8.67,10,9.5S9.33,11,8.5,11S7,10.33,7,9.5S7.67,8,8.5,8z M12,18c-2.28,0-4.22-1.66-5-4h10C16.22,16.34,14.28,18,12,18z M15.5,11c-0.83,0-1.5-0.67-1.5-1.5S14.67,8,15.5,8S17,8.67,17,9.5S16.33,11,15.5,11z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M11.99,2C6.47,2,2,6.48,2,12c0,5.52,4.47,10,9.99,10C17.52,22,22,17.52,22,12C22,6.48,17.52,2,11.99,2z M8.5,8 C9.33,8,10,8.67,10,9.5S9.33,11,8.5,11S7,10.33,7,9.5S7.67,8,8.5,8z M12,18c-2.28,0-4.22-1.66-5-4h10C16.22,16.34,14.28,18,12,18z M15.5,11c-0.83,0-1.5-0.67-1.5-1.5S14.67,8,15.5,8S17,8.67,17,9.5S16.33,11,15.5,11z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_emoji_emotions = ic_emoji_emotions; \ No newline at end of file diff --git a/dist/md/ic_emoji_emotions_outline.js b/dist/md/ic_emoji_emotions_outline.js new file mode 100644 index 000000000..3762aba71 --- /dev/null +++ b/dist/md/ic_emoji_emotions_outline.js @@ -0,0 +1,107 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_emoji_emotions_outline = void 0; +var ic_emoji_emotions_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "cx": "15.5", + "cy": "9.5", + "r": "1.5" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "15.5", + "cy": "9.5", + "r": "1.5" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "8.5", + "cy": "9.5", + "r": "1.5" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "8.5", + "cy": "9.5", + "r": "1.5" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M12,18c2.28,0,4.22-1.66,5-4H7C7.78,16.34,9.72,18,12,18z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,18c2.28,0,4.22-1.66,5-4H7C7.78,16.34,9.72,18,12,18z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M11.99,2C6.47,2,2,6.48,2,12c0,5.52,4.47,10,9.99,10C17.52,22,22,17.52,22,12C22,6.48,17.52,2,11.99,2z M12,20 c-4.42,0-8-3.58-8-8c0-4.42,3.58-8,8-8s8,3.58,8,8C20,16.42,16.42,20,12,20z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M11.99,2C6.47,2,2,6.48,2,12c0,5.52,4.47,10,9.99,10C17.52,22,22,17.52,22,12C22,6.48,17.52,2,11.99,2z M12,20 c-4.42,0-8-3.58-8-8c0-4.42,3.58-8,8-8s8,3.58,8,8C20,16.42,16.42,20,12,20z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_emoji_emotions_outline = ic_emoji_emotions_outline; \ No newline at end of file diff --git a/dist/md/ic_emoji_emotions_twotone.js b/dist/md/ic_emoji_emotions_twotone.js new file mode 100644 index 000000000..bc6a21925 --- /dev/null +++ b/dist/md/ic_emoji_emotions_twotone.js @@ -0,0 +1,121 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_emoji_emotions_twotone = void 0; +var ic_emoji_emotions_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,12c0-4.42-3.58-8-8-8s-8,3.58-8,8s3.58,8,8,8S20,16.42,20,12z M8.5,8C9.33,8,10,8.67,10,9.5 S9.33,11,8.5,11S7,10.33,7,9.5S7.67,8,8.5,8z M12,18c-2.28,0-4.22-1.66-5-4h10C16.22,16.34,14.28,18,12,18z M15.5,11 c-0.83,0-1.5-0.67-1.5-1.5S14.67,8,15.5,8S17,8.67,17,9.5S16.33,11,15.5,11z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,12c0-4.42-3.58-8-8-8s-8,3.58-8,8s3.58,8,8,8S20,16.42,20,12z M8.5,8C9.33,8,10,8.67,10,9.5 S9.33,11,8.5,11S7,10.33,7,9.5S7.67,8,8.5,8z M12,18c-2.28,0-4.22-1.66-5-4h10C16.22,16.34,14.28,18,12,18z M15.5,11 c-0.83,0-1.5-0.67-1.5-1.5S14.67,8,15.5,8S17,8.67,17,9.5S16.33,11,15.5,11z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "15.5", + "cy": "9.5", + "r": "1.5" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "15.5", + "cy": "9.5", + "r": "1.5" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "8.5", + "cy": "9.5", + "r": "1.5" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "8.5", + "cy": "9.5", + "r": "1.5" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M11.99,2C6.47,2,2,6.48,2,12c0,5.52,4.47,10,9.99,10C17.52,22,22,17.52,22,12C22,6.48,17.52,2,11.99,2z M12,20 c-4.42,0-8-3.58-8-8c0-4.42,3.58-8,8-8s8,3.58,8,8C20,16.42,16.42,20,12,20z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M11.99,2C6.47,2,2,6.48,2,12c0,5.52,4.47,10,9.99,10C17.52,22,22,17.52,22,12C22,6.48,17.52,2,11.99,2z M12,20 c-4.42,0-8-3.58-8-8c0-4.42,3.58-8,8-8s8,3.58,8,8C20,16.42,16.42,20,12,20z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M12,18c2.28,0,4.22-1.66,5-4H7C7.78,16.34,9.72,18,12,18z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,18c2.28,0,4.22-1.66,5-4H7C7.78,16.34,9.72,18,12,18z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_emoji_emotions_twotone = ic_emoji_emotions_twotone; \ No newline at end of file diff --git a/dist/md/ic_emoji_events.js b/dist/md/ic_emoji_events.js new file mode 100644 index 000000000..73bdfbaf9 --- /dev/null +++ b/dist/md/ic_emoji_events.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_emoji_events = void 0; +var ic_emoji_events = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19,5h-2V3H7v2H5C3.9,5,3,5.9,3,7v1c0,2.55,1.92,4.63,4.39,4.94c0.63,1.5,1.98,2.63,3.61,2.96V19H7v2h10v-2h-4v-3.1 c1.63-0.33,2.98-1.46,3.61-2.96C19.08,12.63,21,10.55,21,8V7C21,5.9,20.1,5,19,5z M5,8V7h2v3.82C5.84,10.4,5,9.3,5,8z M19,8 c0,1.3-0.84,2.4-2,2.82V7h2V8z" + }, + "children": [] + }] +}; +exports.ic_emoji_events = ic_emoji_events; \ No newline at end of file diff --git a/dist/md/ic_emoji_events_outline.js b/dist/md/ic_emoji_events_outline.js new file mode 100644 index 000000000..70d401a35 --- /dev/null +++ b/dist/md/ic_emoji_events_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_emoji_events_outline = void 0; +var ic_emoji_events_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19,5h-2V3H7v2H5C3.9,5,3,5.9,3,7v1c0,2.55,1.92,4.63,4.39,4.94c0.63,1.5,1.98,2.63,3.61,2.96V19H7v2h10v-2h-4v-3.1 c1.63-0.33,2.98-1.46,3.61-2.96C19.08,12.63,21,10.55,21,8V7C21,5.9,20.1,5,19,5z M5,8V7h2v3.82C5.84,10.4,5,9.3,5,8z M12,14 c-1.65,0-3-1.35-3-3V5h6v6C15,12.65,13.65,14,12,14z M19,8c0,1.3-0.84,2.4-2,2.82V7h2V8z" + }, + "children": [] + }] +}; +exports.ic_emoji_events_outline = ic_emoji_events_outline; \ No newline at end of file diff --git a/dist/md/ic_emoji_events_twotone.js b/dist/md/ic_emoji_events_twotone.js new file mode 100644 index 000000000..90ee0e818 --- /dev/null +++ b/dist/md/ic_emoji_events_twotone.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_emoji_events_twotone = void 0; +var ic_emoji_events_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12,14c-1.65,0-3-1.35-3-3V5h6v6C15,12.65,13.65,14,12,14z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19,5h-2V3H7v2H5C3.9,5,3,5.9,3,7v1c0,2.55,1.92,4.63,4.39,4.94c0.63,1.5,1.98,2.63,3.61,2.96V19H7v2h10v-2h-4v-3.1 c1.63-0.33,2.98-1.46,3.61-2.96C19.08,12.63,21,10.55,21,8V7C21,5.9,20.1,5,19,5z M5,8V7h2v3.82C5.84,10.4,5,9.3,5,8z M12,14 c-1.65,0-3-1.35-3-3V5h6v6C15,12.65,13.65,14,12,14z M19,8c0,1.3-0.84,2.4-2,2.82V7h2V8z" + }, + "children": [] + }] +}; +exports.ic_emoji_events_twotone = ic_emoji_events_twotone; \ No newline at end of file diff --git a/dist/md/ic_emoji_flags.js b/dist/md/ic_emoji_flags.js new file mode 100644 index 000000000..c3e76d66a --- /dev/null +++ b/dist/md/ic_emoji_flags.js @@ -0,0 +1,55 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_emoji_flags = void 0; +var ic_emoji_flags = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M14,9l-1-2H7V5.72C7.6,5.38,8,4.74,8,4c0-1.1-0.9-2-2-2S4,2.9,4,4c0,0.74,0.4,1.38,1,1.72V21h2v-4h5l1,2h7V9H14z M18,17h-4 l-1-2H7V9h5l1,2h5V17z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14,9l-1-2H7V5.72C7.6,5.38,8,4.74,8,4c0-1.1-0.9-2-2-2S4,2.9,4,4c0,0.74,0.4,1.38,1,1.72V21h2v-4h5l1,2h7V9H14z M18,17h-4 l-1-2H7V9h5l1,2h5V17z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_emoji_flags = ic_emoji_flags; \ No newline at end of file diff --git a/dist/md/ic_emoji_flags_outline.js b/dist/md/ic_emoji_flags_outline.js new file mode 100644 index 000000000..67d27a6f8 --- /dev/null +++ b/dist/md/ic_emoji_flags_outline.js @@ -0,0 +1,55 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_emoji_flags_outline = void 0; +var ic_emoji_flags_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M14,9l-1-2H7V5.72C7.6,5.38,8,4.74,8,4c0-1.1-0.9-2-2-2S4,2.9,4,4c0,0.74,0.4,1.38,1,1.72V21h2v-4h5l1,2h7V9H14z M18,17h-4 l-1-2H7V9h5l1,2h5V17z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14,9l-1-2H7V5.72C7.6,5.38,8,4.74,8,4c0-1.1-0.9-2-2-2S4,2.9,4,4c0,0.74,0.4,1.38,1,1.72V21h2v-4h5l1,2h7V9H14z M18,17h-4 l-1-2H7V9h5l1,2h5V17z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_emoji_flags_outline = ic_emoji_flags_outline; \ No newline at end of file diff --git a/dist/md/ic_emoji_flags_twotone.js b/dist/md/ic_emoji_flags_twotone.js new file mode 100644 index 000000000..128eadc86 --- /dev/null +++ b/dist/md/ic_emoji_flags_twotone.js @@ -0,0 +1,77 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_emoji_flags_twotone = void 0; +var ic_emoji_flags_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "opacity": ".3", + "points": "12,9 7,9 7,15 13,15 14,17 18,17 18,11 13,11" + }, + "children": [{ + "name": "polygon", + "attribs": { + "opacity": ".3", + "points": "12,9 7,9 7,15 13,15 14,17 18,17 18,11 13,11" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M14,9l-1-2H7V5.72C7.6,5.38,8,4.74,8,4c0-1.1-0.9-2-2-2S4,2.9,4,4c0,0.74,0.4,1.38,1,1.72V21h2v-4h5l1,2h7V9H14z M18,17 h-4l-1-2H7V9h5l1,2h5V17z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14,9l-1-2H7V5.72C7.6,5.38,8,4.74,8,4c0-1.1-0.9-2-2-2S4,2.9,4,4c0,0.74,0.4,1.38,1,1.72V21h2v-4h5l1,2h7V9H14z M18,17 h-4l-1-2H7V9h5l1,2h5V17z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_emoji_flags_twotone = ic_emoji_flags_twotone; \ No newline at end of file diff --git a/dist/md/ic_emoji_food_beverage.js b/dist/md/ic_emoji_food_beverage.js new file mode 100644 index 000000000..baf596c21 --- /dev/null +++ b/dist/md/ic_emoji_food_beverage.js @@ -0,0 +1,81 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_emoji_food_beverage = void 0; +var ic_emoji_food_beverage = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,3H9v2.4l1.81,1.45C10.93,6.94,11,7.09,11,7.24v4.26c0,0.28-0.22,0.5-0.5,0.5h-4C6.22,12,6,11.78,6,11.5V7.24 c0-0.15,0.07-0.3,0.19-0.39L8,5.4V3H4v10c0,2.21,1.79,4,4,4h6c2.21,0,4-1.79,4-4v-3h2c1.11,0,2-0.9,2-2V5C22,3.89,21.11,3,20,3z M20,8h-2V5h2V8z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,3H9v2.4l1.81,1.45C10.93,6.94,11,7.09,11,7.24v4.26c0,0.28-0.22,0.5-0.5,0.5h-4C6.22,12,6,11.78,6,11.5V7.24 c0-0.15,0.07-0.3,0.19-0.39L8,5.4V3H4v10c0,2.21,1.79,4,4,4h6c2.21,0,4-1.79,4-4v-3h2c1.11,0,2-0.9,2-2V5C22,3.89,21.11,3,20,3z M20,8h-2V5h2V8z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "16", + "x": "4", + "y": "19" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "16", + "x": "4", + "y": "19" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_emoji_food_beverage = ic_emoji_food_beverage; \ No newline at end of file diff --git a/dist/md/ic_emoji_food_beverage_outline.js b/dist/md/ic_emoji_food_beverage_outline.js new file mode 100644 index 000000000..143f4aa98 --- /dev/null +++ b/dist/md/ic_emoji_food_beverage_outline.js @@ -0,0 +1,81 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_emoji_food_beverage_outline = void 0; +var ic_emoji_food_beverage_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "18", + "x": "2", + "y": "19" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "18", + "x": "2", + "y": "19" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20,3H4v10c0,2.21,1.79,4,4,4h6c2.21,0,4-1.79,4-4v-3h2c1.11,0,2-0.89,2-2V5C22,3.89,21.11,3,20,3z M16,13 c0,1.1-0.9,2-2,2H8c-1.1,0-2-0.9-2-2V5h3v1.4L7.19,7.85C7.07,7.94,7,8.09,7,8.24v4.26C7,12.78,7.22,13,7.5,13h4 c0.28,0,0.5-0.22,0.5-0.5V8.24c0-0.15-0.07-0.3-0.19-0.39L10,6.4V5h6V13z M9.5,7.28l1.5,1.2V12H8V8.48L9.5,7.28z M20,8h-2V5h2V8z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,3H4v10c0,2.21,1.79,4,4,4h6c2.21,0,4-1.79,4-4v-3h2c1.11,0,2-0.89,2-2V5C22,3.89,21.11,3,20,3z M16,13 c0,1.1-0.9,2-2,2H8c-1.1,0-2-0.9-2-2V5h3v1.4L7.19,7.85C7.07,7.94,7,8.09,7,8.24v4.26C7,12.78,7.22,13,7.5,13h4 c0.28,0,0.5-0.22,0.5-0.5V8.24c0-0.15-0.07-0.3-0.19-0.39L10,6.4V5h6V13z M9.5,7.28l1.5,1.2V12H8V8.48L9.5,7.28z M20,8h-2V5h2V8z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_emoji_food_beverage_outline = ic_emoji_food_beverage_outline; \ No newline at end of file diff --git a/dist/md/ic_emoji_food_beverage_twotone.js b/dist/md/ic_emoji_food_beverage_twotone.js new file mode 100644 index 000000000..50c39105b --- /dev/null +++ b/dist/md/ic_emoji_food_beverage_twotone.js @@ -0,0 +1,95 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_emoji_food_beverage_twotone = void 0; +var ic_emoji_food_beverage_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M10,6.4l1.81,1.45C11.93,7.94,12,8.09,12,8.24v4.26c0,0.28-0.22,0.5-0.5,0.5h-4C7.22,13,7,12.78,7,12.5 V8.24c0-0.15,0.07-0.3,0.19-0.39L9,6.4V5H6v8c0,1.1,0.9,2,2,2h6c1.1,0,2-0.9,2-2V5h-6V6.4z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M10,6.4l1.81,1.45C11.93,7.94,12,8.09,12,8.24v4.26c0,0.28-0.22,0.5-0.5,0.5h-4C7.22,13,7,12.78,7,12.5 V8.24c0-0.15,0.07-0.3,0.19-0.39L9,6.4V5H6v8c0,1.1,0.9,2,2,2h6c1.1,0,2-0.9,2-2V5h-6V6.4z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "18", + "x": "2", + "y": "19" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "18", + "x": "2", + "y": "19" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20,3H4v10c0,2.21,1.79,4,4,4h6c2.21,0,4-1.79,4-4v-3h2c1.11,0,2-0.89,2-2V5C22,3.89,21.11,3,20,3z M9.5,7.28l1.5,1.2V12 H8V8.48L9.5,7.28z M16,13c0,1.1-0.9,2-2,2H8c-1.1,0-2-0.9-2-2V5h3v1.4L7.19,7.85C7.07,7.94,7,8.09,7,8.24v4.26 C7,12.78,7.22,13,7.5,13h4c0.28,0,0.5-0.22,0.5-0.5V8.24c0-0.15-0.07-0.3-0.19-0.39L10,6.4V5h6V13z M20,8h-2V5h2V8z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,3H4v10c0,2.21,1.79,4,4,4h6c2.21,0,4-1.79,4-4v-3h2c1.11,0,2-0.89,2-2V5C22,3.89,21.11,3,20,3z M9.5,7.28l1.5,1.2V12 H8V8.48L9.5,7.28z M16,13c0,1.1-0.9,2-2,2H8c-1.1,0-2-0.9-2-2V5h3v1.4L7.19,7.85C7.07,7.94,7,8.09,7,8.24v4.26 C7,12.78,7.22,13,7.5,13h4c0.28,0,0.5-0.22,0.5-0.5V8.24c0-0.15-0.07-0.3-0.19-0.39L10,6.4V5h6V13z M20,8h-2V5h2V8z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_emoji_food_beverage_twotone = ic_emoji_food_beverage_twotone; \ No newline at end of file diff --git a/dist/md/ic_emoji_nature.js b/dist/md/ic_emoji_nature.js new file mode 100644 index 000000000..58e5a40be --- /dev/null +++ b/dist/md/ic_emoji_nature.js @@ -0,0 +1,75 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_emoji_nature = void 0; +var ic_emoji_nature = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M21.94,4.88C21.76,4.35,21.25,4,20.68,4c-0.03,0-0.06,0-0.09,0H19.6l-0.31-0.97C19.15,2.43,18.61,2,18,2h0 c-0.61,0-1.15,0.43-1.29,1.04L16.4,4h-0.98c-0.03,0-0.06,0-0.09,0c-0.57,0-1.08,0.35-1.26,0.88c-0.19,0.56,0.04,1.17,0.56,1.48 l0.87,0.52L15.1,8.12c-0.23,0.58-0.04,1.25,0.45,1.62C15.78,9.91,16.06,10,16.33,10c0.31,0,0.61-0.11,0.86-0.32L18,8.98l0.81,0.7 C19.06,9.89,19.36,10,19.67,10c0.27,0,0.55-0.09,0.78-0.26c0.5-0.37,0.68-1.04,0.45-1.62l-0.39-1.24l0.87-0.52 C21.89,6.05,22.12,5.44,21.94,4.88z M18,7c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C19,6.55,18.55,7,18,7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21.94,4.88C21.76,4.35,21.25,4,20.68,4c-0.03,0-0.06,0-0.09,0H19.6l-0.31-0.97C19.15,2.43,18.61,2,18,2h0 c-0.61,0-1.15,0.43-1.29,1.04L16.4,4h-0.98c-0.03,0-0.06,0-0.09,0c-0.57,0-1.08,0.35-1.26,0.88c-0.19,0.56,0.04,1.17,0.56,1.48 l0.87,0.52L15.1,8.12c-0.23,0.58-0.04,1.25,0.45,1.62C15.78,9.91,16.06,10,16.33,10c0.31,0,0.61-0.11,0.86-0.32L18,8.98l0.81,0.7 C19.06,9.89,19.36,10,19.67,10c0.27,0,0.55-0.09,0.78-0.26c0.5-0.37,0.68-1.04,0.45-1.62l-0.39-1.24l0.87-0.52 C21.89,6.05,22.12,5.44,21.94,4.88z M18,7c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C19,6.55,18.55,7,18,7z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M13.49,10.51c-0.43-0.43-0.94-0.73-1.49-0.93V8h-1v1.38c-0.11-0.01-0.23-0.03-0.34-0.03c-1.02,0-2.05,0.39-2.83,1.17 c-0.16,0.16-0.3,0.34-0.43,0.53L6,10.52c-1.56-0.55-3.28,0.27-3.83,1.82c0,0,0,0,0,0c-0.27,0.75-0.23,1.57,0.12,2.29 c0.23,0.48,0.58,0.87,1,1.16c-0.38,1.35-0.06,2.85,1,3.91c1.06,1.06,2.57,1.38,3.91,1c0.29,0.42,0.68,0.77,1.16,1 C9.78,21.9,10.21,22,10.65,22c0.34,0,0.68-0.06,1.01-0.17c0,0,0,0,0,0c1.56-0.55,2.38-2.27,1.82-3.85l-0.52-1.37 c0.18-0.13,0.36-0.27,0.53-0.43c0.87-0.87,1.24-2.04,1.14-3.17H16v-1h-1.59C14.22,11.46,13.92,10.95,13.49,10.51z M4.67,14.29 c-0.25-0.09-0.45-0.27-0.57-0.51s-0.13-0.51-0.04-0.76c0.19-0.52,0.76-0.79,1.26-0.61l3.16,1.19C7.33,14.2,5.85,14.71,4.67,14.29z M10.99,19.94c-0.25,0.09-0.52,0.08-0.76-0.04c-0.24-0.11-0.42-0.32-0.51-0.57c-0.42-1.18,0.09-2.65,0.7-3.8l1.18,3.13 C11.78,19.18,11.51,19.76,10.99,19.94z M12.2,14.6l-0.61-1.61c0-0.01-0.01-0.02-0.02-0.03c-0.02-0.04-0.04-0.08-0.06-0.12 c-0.02-0.04-0.04-0.07-0.07-0.11c-0.03-0.03-0.06-0.06-0.09-0.09c-0.03-0.03-0.06-0.06-0.09-0.09c-0.03-0.03-0.07-0.05-0.11-0.07 c-0.04-0.02-0.07-0.05-0.12-0.06c-0.01,0-0.02-0.01-0.03-0.02L9.4,11.8c0.36-0.29,0.79-0.46,1.26-0.46c0.53,0,1.04,0.21,1.41,0.59 C12.8,12.66,12.84,13.81,12.2,14.6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M13.49,10.51c-0.43-0.43-0.94-0.73-1.49-0.93V8h-1v1.38c-0.11-0.01-0.23-0.03-0.34-0.03c-1.02,0-2.05,0.39-2.83,1.17 c-0.16,0.16-0.3,0.34-0.43,0.53L6,10.52c-1.56-0.55-3.28,0.27-3.83,1.82c0,0,0,0,0,0c-0.27,0.75-0.23,1.57,0.12,2.29 c0.23,0.48,0.58,0.87,1,1.16c-0.38,1.35-0.06,2.85,1,3.91c1.06,1.06,2.57,1.38,3.91,1c0.29,0.42,0.68,0.77,1.16,1 C9.78,21.9,10.21,22,10.65,22c0.34,0,0.68-0.06,1.01-0.17c0,0,0,0,0,0c1.56-0.55,2.38-2.27,1.82-3.85l-0.52-1.37 c0.18-0.13,0.36-0.27,0.53-0.43c0.87-0.87,1.24-2.04,1.14-3.17H16v-1h-1.59C14.22,11.46,13.92,10.95,13.49,10.51z M4.67,14.29 c-0.25-0.09-0.45-0.27-0.57-0.51s-0.13-0.51-0.04-0.76c0.19-0.52,0.76-0.79,1.26-0.61l3.16,1.19C7.33,14.2,5.85,14.71,4.67,14.29z M10.99,19.94c-0.25,0.09-0.52,0.08-0.76-0.04c-0.24-0.11-0.42-0.32-0.51-0.57c-0.42-1.18,0.09-2.65,0.7-3.8l1.18,3.13 C11.78,19.18,11.51,19.76,10.99,19.94z M12.2,14.6l-0.61-1.61c0-0.01-0.01-0.02-0.02-0.03c-0.02-0.04-0.04-0.08-0.06-0.12 c-0.02-0.04-0.04-0.07-0.07-0.11c-0.03-0.03-0.06-0.06-0.09-0.09c-0.03-0.03-0.06-0.06-0.09-0.09c-0.03-0.03-0.07-0.05-0.11-0.07 c-0.04-0.02-0.07-0.05-0.12-0.06c-0.01,0-0.02-0.01-0.03-0.02L9.4,11.8c0.36-0.29,0.79-0.46,1.26-0.46c0.53,0,1.04,0.21,1.41,0.59 C12.8,12.66,12.84,13.81,12.2,14.6z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_emoji_nature = ic_emoji_nature; \ No newline at end of file diff --git a/dist/md/ic_emoji_nature_outline.js b/dist/md/ic_emoji_nature_outline.js new file mode 100644 index 000000000..f2367e4c1 --- /dev/null +++ b/dist/md/ic_emoji_nature_outline.js @@ -0,0 +1,75 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_emoji_nature_outline = void 0; +var ic_emoji_nature_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M21.94,4.88C21.76,4.35,21.25,4,20.68,4c-0.03,0-0.06,0-0.09,0H19.6l-0.31-0.97C19.15,2.43,18.61,2,18,2h0 c-0.61,0-1.15,0.43-1.29,1.04L16.4,4h-0.98c-0.03,0-0.06,0-0.09,0c-0.57,0-1.08,0.35-1.26,0.88c-0.19,0.56,0.04,1.17,0.56,1.48 l0.87,0.52L15.1,8.12c-0.23,0.58-0.04,1.25,0.45,1.62C15.78,9.91,16.06,10,16.33,10c0.31,0,0.61-0.11,0.86-0.32L18,8.98l0.81,0.7 C19.06,9.89,19.36,10,19.67,10c0.27,0,0.55-0.09,0.78-0.26c0.5-0.37,0.68-1.04,0.45-1.62l-0.39-1.24l0.87-0.52 C21.89,6.05,22.12,5.44,21.94,4.88z M18,7c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C19,6.55,18.55,7,18,7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21.94,4.88C21.76,4.35,21.25,4,20.68,4c-0.03,0-0.06,0-0.09,0H19.6l-0.31-0.97C19.15,2.43,18.61,2,18,2h0 c-0.61,0-1.15,0.43-1.29,1.04L16.4,4h-0.98c-0.03,0-0.06,0-0.09,0c-0.57,0-1.08,0.35-1.26,0.88c-0.19,0.56,0.04,1.17,0.56,1.48 l0.87,0.52L15.1,8.12c-0.23,0.58-0.04,1.25,0.45,1.62C15.78,9.91,16.06,10,16.33,10c0.31,0,0.61-0.11,0.86-0.32L18,8.98l0.81,0.7 C19.06,9.89,19.36,10,19.67,10c0.27,0,0.55-0.09,0.78-0.26c0.5-0.37,0.68-1.04,0.45-1.62l-0.39-1.24l0.87-0.52 C21.89,6.05,22.12,5.44,21.94,4.88z M18,7c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C19,6.55,18.55,7,18,7z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M13.49,10.51c-0.43-0.43-0.94-0.73-1.49-0.93V8h-1v1.38c-0.11-0.01-0.23-0.03-0.34-0.03c-1.02,0-2.05,0.39-2.83,1.17 c-0.12,0.12-0.3,0.3-0.5,0.5L6,10.52c-1.56-0.55-3.28,0.27-3.83,1.82c0,0,0,0,0,0c-0.27,0.75-0.23,1.57,0.12,2.29 c0.23,0.48,0.58,0.87,1,1.16c-0.38,1.35-0.06,2.85,1,3.91c0.78,0.78,1.8,1.17,2.83,1.17c0.37,0,0.73-0.07,1.09-0.17 c0.29,0.42,0.68,0.77,1.16,1C9.78,21.9,10.21,22,10.65,22c0.34,0,0.68-0.06,1.01-0.17c0,0,0,0,0,0c1.56-0.55,2.38-2.27,1.82-3.85 l-0.49-1.3c0.2-0.2,0.38-0.38,0.5-0.5c0.87-0.87,1.24-2.04,1.14-3.17H16v-1h-1.59C14.22,11.46,13.92,10.95,13.49,10.51z M7.58,18.82c-0.15,0.04-0.3,0.06-0.46,0.06c-0.53,0-1.04-0.21-1.41-0.59c-0.38-0.38-0.59-0.88-0.59-1.41 c0-0.16,0.03-0.32,0.06-0.47c0.14,0.01,0.28,0.03,0.42,0.03c0.85,0,1.68-0.2,2.44-0.48C7.72,16.85,7.5,17.83,7.58,18.82z M4.67,14.29c-0.25-0.09-0.45-0.27-0.57-0.51s-0.13-0.51-0.04-0.76c0.19-0.52,0.76-0.79,1.26-0.61l3.16,1.19 C7.33,14.2,5.85,14.71,4.67,14.29z M10.99,19.94c-0.25,0.09-0.52,0.08-0.76-0.04c-0.24-0.11-0.42-0.32-0.51-0.57 c-0.42-1.18,0.09-2.65,0.7-3.8l1.18,3.13C11.78,19.18,11.51,19.76,10.99,19.94z M12.2,14.6l-0.61-1.61c0-0.01-0.01-0.02-0.02-0.03 c-0.02-0.04-0.04-0.08-0.06-0.12c-0.02-0.04-0.04-0.07-0.07-0.11c-0.03-0.03-0.06-0.06-0.09-0.09c-0.03-0.03-0.06-0.06-0.09-0.09 c-0.03-0.03-0.07-0.05-0.11-0.07c-0.04-0.02-0.07-0.05-0.12-0.06c-0.01,0-0.02-0.01-0.03-0.02L9.4,11.8 c0.36-0.29,0.79-0.46,1.26-0.46c0.53,0,1.04,0.21,1.41,0.59C12.8,12.66,12.84,13.81,12.2,14.6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M13.49,10.51c-0.43-0.43-0.94-0.73-1.49-0.93V8h-1v1.38c-0.11-0.01-0.23-0.03-0.34-0.03c-1.02,0-2.05,0.39-2.83,1.17 c-0.12,0.12-0.3,0.3-0.5,0.5L6,10.52c-1.56-0.55-3.28,0.27-3.83,1.82c0,0,0,0,0,0c-0.27,0.75-0.23,1.57,0.12,2.29 c0.23,0.48,0.58,0.87,1,1.16c-0.38,1.35-0.06,2.85,1,3.91c0.78,0.78,1.8,1.17,2.83,1.17c0.37,0,0.73-0.07,1.09-0.17 c0.29,0.42,0.68,0.77,1.16,1C9.78,21.9,10.21,22,10.65,22c0.34,0,0.68-0.06,1.01-0.17c0,0,0,0,0,0c1.56-0.55,2.38-2.27,1.82-3.85 l-0.49-1.3c0.2-0.2,0.38-0.38,0.5-0.5c0.87-0.87,1.24-2.04,1.14-3.17H16v-1h-1.59C14.22,11.46,13.92,10.95,13.49,10.51z M7.58,18.82c-0.15,0.04-0.3,0.06-0.46,0.06c-0.53,0-1.04-0.21-1.41-0.59c-0.38-0.38-0.59-0.88-0.59-1.41 c0-0.16,0.03-0.32,0.06-0.47c0.14,0.01,0.28,0.03,0.42,0.03c0.85,0,1.68-0.2,2.44-0.48C7.72,16.85,7.5,17.83,7.58,18.82z M4.67,14.29c-0.25-0.09-0.45-0.27-0.57-0.51s-0.13-0.51-0.04-0.76c0.19-0.52,0.76-0.79,1.26-0.61l3.16,1.19 C7.33,14.2,5.85,14.71,4.67,14.29z M10.99,19.94c-0.25,0.09-0.52,0.08-0.76-0.04c-0.24-0.11-0.42-0.32-0.51-0.57 c-0.42-1.18,0.09-2.65,0.7-3.8l1.18,3.13C11.78,19.18,11.51,19.76,10.99,19.94z M12.2,14.6l-0.61-1.61c0-0.01-0.01-0.02-0.02-0.03 c-0.02-0.04-0.04-0.08-0.06-0.12c-0.02-0.04-0.04-0.07-0.07-0.11c-0.03-0.03-0.06-0.06-0.09-0.09c-0.03-0.03-0.06-0.06-0.09-0.09 c-0.03-0.03-0.07-0.05-0.11-0.07c-0.04-0.02-0.07-0.05-0.12-0.06c-0.01,0-0.02-0.01-0.03-0.02L9.4,11.8 c0.36-0.29,0.79-0.46,1.26-0.46c0.53,0,1.04,0.21,1.41,0.59C12.8,12.66,12.84,13.81,12.2,14.6z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_emoji_nature_outline = ic_emoji_nature_outline; \ No newline at end of file diff --git a/dist/md/ic_emoji_nature_twotone.js b/dist/md/ic_emoji_nature_twotone.js new file mode 100644 index 000000000..3e8ec88ab --- /dev/null +++ b/dist/md/ic_emoji_nature_twotone.js @@ -0,0 +1,129 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_emoji_nature_twotone = void 0; +var ic_emoji_nature_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "cx": "18", + "cy": "6", + "opacity": ".3", + "r": "1" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "18", + "cy": "6", + "opacity": ".3", + "r": "1" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M21.94,4.88C21.75,4.33,21.19,3.96,20.58,4H19.6l-0.31-0.97C19.15,2.43,18.61,2,18,2h0c-0.61,0-1.15,0.43-1.29,1.04 L16.4,4h-0.98c-0.61-0.04-1.16,0.32-1.35,0.88c-0.19,0.56,0.04,1.17,0.56,1.48l0.87,0.52L15.1,8.12 c-0.23,0.58-0.04,1.25,0.45,1.62c0.5,0.37,1.17,0.35,1.64-0.06L18,8.98l0.81,0.7c0.47,0.4,1.15,0.43,1.64,0.06 c0.5-0.37,0.68-1.04,0.45-1.62l-0.39-1.24l0.87-0.52C21.89,6.05,22.12,5.44,21.94,4.88z M18,7c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C19,6.55,18.55,7,18,7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21.94,4.88C21.75,4.33,21.19,3.96,20.58,4H19.6l-0.31-0.97C19.15,2.43,18.61,2,18,2h0c-0.61,0-1.15,0.43-1.29,1.04 L16.4,4h-0.98c-0.61-0.04-1.16,0.32-1.35,0.88c-0.19,0.56,0.04,1.17,0.56,1.48l0.87,0.52L15.1,8.12 c-0.23,0.58-0.04,1.25,0.45,1.62c0.5,0.37,1.17,0.35,1.64-0.06L18,8.98l0.81,0.7c0.47,0.4,1.15,0.43,1.64,0.06 c0.5-0.37,0.68-1.04,0.45-1.62l-0.39-1.24l0.87-0.52C21.89,6.05,22.12,5.44,21.94,4.88z M18,7c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C19,6.55,18.55,7,18,7z" + }, + "children": [] + }] + }] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M6.1,17.9c0.53,0.53,1.27,0.69,1.94,0.5c-0.03-1.19,0.35-2.37,0.92-3.36c-1,0.57-2.17,0.95-3.36,0.92 C5.41,16.63,5.58,17.37,6.1,17.9z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M6.1,17.9c0.53,0.53,1.27,0.69,1.94,0.5c-0.03-1.19,0.35-2.37,0.92-3.36c-1,0.57-2.17,0.95-3.36,0.92 C5.41,16.63,5.58,17.37,6.1,17.9z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M9.65,11.55l1.61,0.66c0.25,0.1,0.44,0.3,0.54,0.54l0.66,1.61c0.75-0.78,0.74-2.01-0.03-2.78 C11.66,10.8,10.43,10.8,9.65,11.55z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M9.65,11.55l1.61,0.66c0.25,0.1,0.44,0.3,0.54,0.54l0.66,1.61c0.75-0.78,0.74-2.01-0.03-2.78 C11.66,10.8,10.43,10.8,9.65,11.55z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M14.86,12c-0.17-0.67-0.5-1.31-1.03-1.84C13.31,9.64,12.67,9.31,12,9.14V7h-1v2c-1.01,0.01-2.02,0.39-2.79,1.16 c-0.13,0.13-0.33,0.33-0.56,0.56l-1.53-0.63c-1.52-0.63-3.27,0.1-3.89,1.62c-0.6,1.46,0.05,3.11,1.44,3.8 c-0.33,1.31,0,2.76,1.03,3.79c1.03,1.03,2.48,1.36,3.79,1.03c0.69,1.39,2.34,2.04,3.8,1.44c1.52-0.63,2.25-2.37,1.62-3.89 l-0.63-1.53c0.23-0.23,0.43-0.43,0.56-0.56c0.77-0.77,1.16-1.78,1.16-2.79h2v-1H14.86z M4.58,13.8c-0.51-0.21-0.75-0.79-0.54-1.3 c0.21-0.51,0.79-0.75,1.3-0.54l2.92,1.2C7.22,13.84,5.83,14.31,4.58,13.8z M8.04,18.4c-0.67,0.19-1.41,0.02-1.94-0.5 c-0.53-0.53-0.69-1.27-0.5-1.94c1.19,0.03,2.37-0.35,3.36-0.92C8.39,16.03,8.01,17.21,8.04,18.4z M11.5,19.96 c-0.51,0.21-1.09-0.03-1.3-0.54c-0.51-1.25-0.04-2.64,0.64-3.67l1.2,2.92C12.25,19.17,12.01,19.76,11.5,19.96z M12.45,14.35 l-0.66-1.61c-0.1-0.25-0.3-0.44-0.54-0.54l-1.61-0.66c0.78-0.75,2.01-0.74,2.78,0.03C13.2,12.34,13.2,13.57,12.45,14.35z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14.86,12c-0.17-0.67-0.5-1.31-1.03-1.84C13.31,9.64,12.67,9.31,12,9.14V7h-1v2c-1.01,0.01-2.02,0.39-2.79,1.16 c-0.13,0.13-0.33,0.33-0.56,0.56l-1.53-0.63c-1.52-0.63-3.27,0.1-3.89,1.62c-0.6,1.46,0.05,3.11,1.44,3.8 c-0.33,1.31,0,2.76,1.03,3.79c1.03,1.03,2.48,1.36,3.79,1.03c0.69,1.39,2.34,2.04,3.8,1.44c1.52-0.63,2.25-2.37,1.62-3.89 l-0.63-1.53c0.23-0.23,0.43-0.43,0.56-0.56c0.77-0.77,1.16-1.78,1.16-2.79h2v-1H14.86z M4.58,13.8c-0.51-0.21-0.75-0.79-0.54-1.3 c0.21-0.51,0.79-0.75,1.3-0.54l2.92,1.2C7.22,13.84,5.83,14.31,4.58,13.8z M8.04,18.4c-0.67,0.19-1.41,0.02-1.94-0.5 c-0.53-0.53-0.69-1.27-0.5-1.94c1.19,0.03,2.37-0.35,3.36-0.92C8.39,16.03,8.01,17.21,8.04,18.4z M11.5,19.96 c-0.51,0.21-1.09-0.03-1.3-0.54c-0.51-1.25-0.04-2.64,0.64-3.67l1.2,2.92C12.25,19.17,12.01,19.76,11.5,19.96z M12.45,14.35 l-0.66-1.61c-0.1-0.25-0.3-0.44-0.54-0.54l-1.61-0.66c0.78-0.75,2.01-0.74,2.78,0.03C13.2,12.34,13.2,13.57,12.45,14.35z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_emoji_nature_twotone = ic_emoji_nature_twotone; \ No newline at end of file diff --git a/dist/md/ic_emoji_objects.js b/dist/md/ic_emoji_objects.js new file mode 100644 index 000000000..c81af6fc3 --- /dev/null +++ b/dist/md/ic_emoji_objects.js @@ -0,0 +1,55 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_emoji_objects = void 0; +var ic_emoji_objects = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M12,3c-0.46,0-0.93,0.04-1.4,0.14C7.84,3.67,5.64,5.9,5.12,8.66c-0.48,2.61,0.48,5.01,2.22,6.56C7.77,15.6,8,16.13,8,16.69 V19c0,1.1,0.9,2,2,2h0.28c0.35,0.6,0.98,1,1.72,1s1.38-0.4,1.72-1H14c1.1,0,2-0.9,2-2v-2.31c0-0.55,0.22-1.09,0.64-1.46 C18.09,13.95,19,12.08,19,10C19,6.13,15.87,3,12,3z M14,19h-4v-1h4V19z M14,17h-4v-1h4V17z M12.5,11.41V14h-1v-2.59L9.67,9.59 l0.71-0.71L12,10.5l1.62-1.62l0.71,0.71L12.5,11.41z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,3c-0.46,0-0.93,0.04-1.4,0.14C7.84,3.67,5.64,5.9,5.12,8.66c-0.48,2.61,0.48,5.01,2.22,6.56C7.77,15.6,8,16.13,8,16.69 V19c0,1.1,0.9,2,2,2h0.28c0.35,0.6,0.98,1,1.72,1s1.38-0.4,1.72-1H14c1.1,0,2-0.9,2-2v-2.31c0-0.55,0.22-1.09,0.64-1.46 C18.09,13.95,19,12.08,19,10C19,6.13,15.87,3,12,3z M14,19h-4v-1h4V19z M14,17h-4v-1h4V17z M12.5,11.41V14h-1v-2.59L9.67,9.59 l0.71-0.71L12,10.5l1.62-1.62l0.71,0.71L12.5,11.41z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_emoji_objects = ic_emoji_objects; \ No newline at end of file diff --git a/dist/md/ic_emoji_objects_outline.js b/dist/md/ic_emoji_objects_outline.js new file mode 100644 index 000000000..bd4206a65 --- /dev/null +++ b/dist/md/ic_emoji_objects_outline.js @@ -0,0 +1,129 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_emoji_objects_outline = void 0; +var ic_emoji_objects_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,3c-0.46,0-0.93,0.04-1.4,0.14C7.84,3.67,5.64,5.9,5.12,8.66c-0.48,2.61,0.48,5.01,2.22,6.56 C7.77,15.6,8,16.13,8,16.69V19c0,1.1,0.9,2,2,2h0.28c0.35,0.6,0.98,1,1.72,1s1.38-0.4,1.72-1H14c1.1,0,2-0.9,2-2v-2.31 c0-0.55,0.22-1.09,0.64-1.46C18.09,13.95,19,12.08,19,10C19,6.13,15.87,3,12,3z M14,17h-4v-1h4V17z M10,19v-1h4v1H10z M15.31,13.74c-0.09,0.08-0.16,0.18-0.24,0.26H8.92c-0.08-0.09-0.15-0.19-0.24-0.27c-1.32-1.18-1.91-2.94-1.59-4.7 c0.36-1.94,1.96-3.55,3.89-3.93C11.32,5.03,11.66,5,12,5c2.76,0,5,2.24,5,5C17,11.43,16.39,12.79,15.31,13.74z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,3c-0.46,0-0.93,0.04-1.4,0.14C7.84,3.67,5.64,5.9,5.12,8.66c-0.48,2.61,0.48,5.01,2.22,6.56 C7.77,15.6,8,16.13,8,16.69V19c0,1.1,0.9,2,2,2h0.28c0.35,0.6,0.98,1,1.72,1s1.38-0.4,1.72-1H14c1.1,0,2-0.9,2-2v-2.31 c0-0.55,0.22-1.09,0.64-1.46C18.09,13.95,19,12.08,19,10C19,6.13,15.87,3,12,3z M14,17h-4v-1h4V17z M10,19v-1h4v1H10z M15.31,13.74c-0.09,0.08-0.16,0.18-0.24,0.26H8.92c-0.08-0.09-0.15-0.19-0.24-0.27c-1.32-1.18-1.91-2.94-1.59-4.7 c0.36-1.94,1.96-3.55,3.89-3.93C11.32,5.03,11.66,5,12,5c2.76,0,5,2.24,5,5C17,11.43,16.39,12.79,15.31,13.74z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "height": "3", + "width": "1", + "x": "11.5", + "y": "11" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "3", + "width": "1", + "x": "11.5", + "y": "11" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "3", + "transform": "matrix(0.7071 -0.7071 0.7071 0.7071 -4.0312 10.8536)", + "width": "1", + "x": "10.59", + "y": "8.79" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "3", + "transform": "matrix(0.7071 -0.7071 0.7071 0.7071 -4.0312 10.8536)", + "width": "1", + "x": "10.59", + "y": "8.79" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "3", + "transform": "matrix(-0.7071 -0.7071 0.7071 -0.7071 14.7678 26.7028)", + "width": "1", + "x": "12.41", + "y": "8.79" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "3", + "transform": "matrix(-0.7071 -0.7071 0.7071 -0.7071 14.7678 26.7028)", + "width": "1", + "x": "12.41", + "y": "8.79" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_emoji_objects_outline = ic_emoji_objects_outline; \ No newline at end of file diff --git a/dist/md/ic_emoji_objects_twotone.js b/dist/md/ic_emoji_objects_twotone.js new file mode 100644 index 000000000..0ba79af11 --- /dev/null +++ b/dist/md/ic_emoji_objects_twotone.js @@ -0,0 +1,169 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_emoji_objects_twotone = void 0; +var ic_emoji_objects_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "height": "1", + "opacity": ".3", + "width": "4", + "x": "10", + "y": "18" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "1", + "opacity": ".3", + "width": "4", + "x": "10", + "y": "18" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "1", + "opacity": ".3", + "width": "4", + "x": "10", + "y": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "1", + "opacity": ".3", + "width": "4", + "x": "10", + "y": "16" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M12,3c-0.46,0-0.93,0.04-1.4,0.14C7.84,3.67,5.64,5.9,5.12,8.66c-0.48,2.61,0.48,5.01,2.22,6.56 C7.77,15.6,8,16.13,8,16.69V19c0,1.1,0.9,2,2,2h0.28c0.35,0.6,0.98,1,1.72,1s1.38-0.4,1.72-1H14c1.1,0,2-0.9,2-2v-2.31 c0-0.55,0.22-1.09,0.64-1.46C18.09,13.95,19,12.08,19,10C19,6.13,15.87,3,12,3z M14,19h-4v-1h4V19z M14,17h-4v-1h4V17z M15.31,13.74c-0.09,0.08-0.16,0.18-0.24,0.26H8.92c-0.08-0.09-0.15-0.19-0.24-0.27c-1.32-1.18-1.91-2.94-1.59-4.7 c0.36-1.94,1.96-3.55,3.89-3.93C11.32,5.03,11.66,5,12,5c2.76,0,5,2.24,5,5C17,11.43,16.39,12.79,15.31,13.74z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,3c-0.46,0-0.93,0.04-1.4,0.14C7.84,3.67,5.64,5.9,5.12,8.66c-0.48,2.61,0.48,5.01,2.22,6.56 C7.77,15.6,8,16.13,8,16.69V19c0,1.1,0.9,2,2,2h0.28c0.35,0.6,0.98,1,1.72,1s1.38-0.4,1.72-1H14c1.1,0,2-0.9,2-2v-2.31 c0-0.55,0.22-1.09,0.64-1.46C18.09,13.95,19,12.08,19,10C19,6.13,15.87,3,12,3z M14,19h-4v-1h4V19z M14,17h-4v-1h4V17z M15.31,13.74c-0.09,0.08-0.16,0.18-0.24,0.26H8.92c-0.08-0.09-0.15-0.19-0.24-0.27c-1.32-1.18-1.91-2.94-1.59-4.7 c0.36-1.94,1.96-3.55,3.89-3.93C11.32,5.03,11.66,5,12,5c2.76,0,5,2.24,5,5C17,11.43,16.39,12.79,15.31,13.74z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "height": "3", + "width": "1", + "x": "11.5", + "y": "11" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "3", + "width": "1", + "x": "11.5", + "y": "11" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "3", + "transform": "matrix(0.7071 -0.7071 0.7071 0.7071 -4.0312 10.8536)", + "width": "1", + "x": "10.59", + "y": "8.79" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "3", + "transform": "matrix(0.7071 -0.7071 0.7071 0.7071 -4.0312 10.8536)", + "width": "1", + "x": "10.59", + "y": "8.79" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "3", + "transform": "matrix(-0.7071 -0.7071 0.7071 -0.7071 14.7678 26.7028)", + "width": "1", + "x": "12.41", + "y": "8.79" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "3", + "transform": "matrix(-0.7071 -0.7071 0.7071 -0.7071 14.7678 26.7028)", + "width": "1", + "x": "12.41", + "y": "8.79" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_emoji_objects_twotone = ic_emoji_objects_twotone; \ No newline at end of file diff --git a/dist/md/ic_emoji_people.js b/dist/md/ic_emoji_people.js new file mode 100644 index 000000000..5ca3bb4e9 --- /dev/null +++ b/dist/md/ic_emoji_people.js @@ -0,0 +1,79 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_emoji_people = void 0; +var ic_emoji_people = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "4", + "r": "2" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "4", + "r": "2" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M15.89,8.11C15.5,7.72,14.83,7,13.53,7c-0.21,0-1.42,0-2.54,0C8.24,6.99,6,4.75,6,2H4c0,3.16,2.11,5.84,5,6.71V22h2v-6h2 v6h2V10.05L18.95,14l1.41-1.41L15.89,8.11z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15.89,8.11C15.5,7.72,14.83,7,13.53,7c-0.21,0-1.42,0-2.54,0C8.24,6.99,6,4.75,6,2H4c0,3.16,2.11,5.84,5,6.71V22h2v-6h2 v6h2V10.05L18.95,14l1.41-1.41L15.89,8.11z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_emoji_people = ic_emoji_people; \ No newline at end of file diff --git a/dist/md/ic_emoji_people_outline.js b/dist/md/ic_emoji_people_outline.js new file mode 100644 index 000000000..ec515d472 --- /dev/null +++ b/dist/md/ic_emoji_people_outline.js @@ -0,0 +1,79 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_emoji_people_outline = void 0; +var ic_emoji_people_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "4", + "r": "2" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "4", + "r": "2" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M15.89,8.11C15.5,7.72,14.83,7,13.53,7c-0.21,0-1.42,0-2.54,0C8.24,6.99,6,4.75,6,2H4c0,3.16,2.11,5.84,5,6.71V22h2v-6h2 v6h2V10.05L18.95,14l1.41-1.41L15.89,8.11z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15.89,8.11C15.5,7.72,14.83,7,13.53,7c-0.21,0-1.42,0-2.54,0C8.24,6.99,6,4.75,6,2H4c0,3.16,2.11,5.84,5,6.71V22h2v-6h2 v6h2V10.05L18.95,14l1.41-1.41L15.89,8.11z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_emoji_people_outline = ic_emoji_people_outline; \ No newline at end of file diff --git a/dist/md/ic_emoji_people_twotone.js b/dist/md/ic_emoji_people_twotone.js new file mode 100644 index 000000000..79ad6258f --- /dev/null +++ b/dist/md/ic_emoji_people_twotone.js @@ -0,0 +1,79 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_emoji_people_twotone = void 0; +var ic_emoji_people_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "4", + "r": "2" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "4", + "r": "2" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M15.89,8.11C15.5,7.72,14.83,7,13.53,7c-0.21,0-1.42,0-2.54,0C8.24,6.99,6,4.75,6,2H4c0,3.16,2.11,5.84,5,6.71V22h2v-6h2 v6h2V10.05L18.95,14l1.41-1.41L15.89,8.11z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15.89,8.11C15.5,7.72,14.83,7,13.53,7c-0.21,0-1.42,0-2.54,0C8.24,6.99,6,4.75,6,2H4c0,3.16,2.11,5.84,5,6.71V22h2v-6h2 v6h2V10.05L18.95,14l1.41-1.41L15.89,8.11z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_emoji_people_twotone = ic_emoji_people_twotone; \ No newline at end of file diff --git a/dist/md/ic_emoji_symbols.js b/dist/md/ic_emoji_symbols.js new file mode 100644 index 000000000..32c5313df --- /dev/null +++ b/dist/md/ic_emoji_symbols.js @@ -0,0 +1,157 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_emoji_symbols = void 0; +var ic_emoji_symbols = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "8", + "x": "3", + "y": "2" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "8", + "x": "3", + "y": "2" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "6,11 8,11 8,7 11,7 11,5 3,5 3,7 6,7" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "6,11 8,11 8,7 11,7 11,5 3,5 3,7 6,7" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "transform": "matrix(0.7071 -0.7071 0.7071 0.7071 -7.0416 16.9999)", + "width": "11", + "x": "11.5", + "y": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "transform": "matrix(0.7071 -0.7071 0.7071 0.7071 -7.0416 16.9999)", + "width": "11", + "x": "11.5", + "y": "16" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "14.5", + "cy": "14.5", + "r": "1.5" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "14.5", + "cy": "14.5", + "r": "1.5" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "19.5", + "cy": "19.5", + "r": "1.5" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "19.5", + "cy": "19.5", + "r": "1.5" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M15.5,11c1.38,0,2.5-1.12,2.5-2.5V4h3V2h-4v4.51C16.58,6.19,16.07,6,15.5,6C14.12,6,13,7.12,13,8.5 C13,9.88,14.12,11,15.5,11z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15.5,11c1.38,0,2.5-1.12,2.5-2.5V4h3V2h-4v4.51C16.58,6.19,16.07,6,15.5,6C14.12,6,13,7.12,13,8.5 C13,9.88,14.12,11,15.5,11z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M9.74,15.96l-1.41,1.41l-0.71-0.71l0.35-0.35c0.98-0.98,0.98-2.56,0-3.54c-0.49-0.49-1.13-0.73-1.77-0.73 c-0.64,0-1.28,0.24-1.77,0.73c-0.98,0.98-0.98,2.56,0,3.54l0.35,0.35l-1.06,1.06c-0.98,0.98-0.98,2.56,0,3.54 C4.22,21.76,4.86,22,5.5,22s1.28-0.24,1.77-0.73l1.06-1.06l1.41,1.41l1.41-1.41l-1.41-1.41l1.41-1.41L9.74,15.96z M5.85,14.2 c0.12-0.12,0.26-0.15,0.35-0.15s0.23,0.03,0.35,0.15c0.19,0.2,0.19,0.51,0,0.71l-0.35,0.35L5.85,14.9 C5.66,14.71,5.66,14.39,5.85,14.2z M5.85,19.85C5.73,19.97,5.59,20,5.5,20s-0.23-0.03-0.35-0.15c-0.19-0.19-0.19-0.51,0-0.71 l1.06-1.06l0.71,0.71L5.85,19.85z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M9.74,15.96l-1.41,1.41l-0.71-0.71l0.35-0.35c0.98-0.98,0.98-2.56,0-3.54c-0.49-0.49-1.13-0.73-1.77-0.73 c-0.64,0-1.28,0.24-1.77,0.73c-0.98,0.98-0.98,2.56,0,3.54l0.35,0.35l-1.06,1.06c-0.98,0.98-0.98,2.56,0,3.54 C4.22,21.76,4.86,22,5.5,22s1.28-0.24,1.77-0.73l1.06-1.06l1.41,1.41l1.41-1.41l-1.41-1.41l1.41-1.41L9.74,15.96z M5.85,14.2 c0.12-0.12,0.26-0.15,0.35-0.15s0.23,0.03,0.35,0.15c0.19,0.2,0.19,0.51,0,0.71l-0.35,0.35L5.85,14.9 C5.66,14.71,5.66,14.39,5.85,14.2z M5.85,19.85C5.73,19.97,5.59,20,5.5,20s-0.23-0.03-0.35-0.15c-0.19-0.19-0.19-0.51,0-0.71 l1.06-1.06l0.71,0.71L5.85,19.85z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_emoji_symbols = ic_emoji_symbols; \ No newline at end of file diff --git a/dist/md/ic_emoji_symbols_outline.js b/dist/md/ic_emoji_symbols_outline.js new file mode 100644 index 000000000..a17297b22 --- /dev/null +++ b/dist/md/ic_emoji_symbols_outline.js @@ -0,0 +1,157 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_emoji_symbols_outline = void 0; +var ic_emoji_symbols_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "8", + "x": "3", + "y": "2" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "8", + "x": "3", + "y": "2" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "6,11 8,11 8,7 11,7 11,5 3,5 3,7 6,7" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "6,11 8,11 8,7 11,7 11,5 3,5 3,7 6,7" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "transform": "matrix(0.7071 -0.7071 0.7071 0.7071 -7.0416 16.9999)", + "width": "11", + "x": "11.5", + "y": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "transform": "matrix(0.7071 -0.7071 0.7071 0.7071 -7.0416 16.9999)", + "width": "11", + "x": "11.5", + "y": "16" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "14.5", + "cy": "14.5", + "r": "1.5" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "14.5", + "cy": "14.5", + "r": "1.5" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "19.5", + "cy": "19.5", + "r": "1.5" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "19.5", + "cy": "19.5", + "r": "1.5" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M15.5,11c1.38,0,2.5-1.12,2.5-2.5V4h3V2h-4v4.51C16.58,6.19,16.07,6,15.5,6C14.12,6,13,7.12,13,8.5 C13,9.88,14.12,11,15.5,11z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15.5,11c1.38,0,2.5-1.12,2.5-2.5V4h3V2h-4v4.51C16.58,6.19,16.07,6,15.5,6C14.12,6,13,7.12,13,8.5 C13,9.88,14.12,11,15.5,11z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M9.74,15.96l-1.41,1.41l-0.71-0.71l0.35-0.35c0.98-0.98,0.98-2.56,0-3.54c-0.49-0.49-1.13-0.73-1.77-0.73 c-0.64,0-1.28,0.24-1.77,0.73c-0.98,0.98-0.98,2.56,0,3.54l0.35,0.35l-1.06,1.06c-0.98,0.98-0.98,2.56,0,3.54 C4.22,21.76,4.86,22,5.5,22s1.28-0.24,1.77-0.73l1.06-1.06l1.41,1.41l1.41-1.41l-1.41-1.41l1.41-1.41L9.74,15.96z M5.85,14.2 c0.12-0.12,0.26-0.15,0.35-0.15s0.23,0.03,0.35,0.15c0.19,0.2,0.19,0.51,0,0.71l-0.35,0.35L5.85,14.9 C5.66,14.71,5.66,14.39,5.85,14.2z M5.85,19.85C5.73,19.97,5.59,20,5.5,20s-0.23-0.03-0.35-0.15c-0.19-0.19-0.19-0.51,0-0.71 l1.06-1.06l0.71,0.71L5.85,19.85z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M9.74,15.96l-1.41,1.41l-0.71-0.71l0.35-0.35c0.98-0.98,0.98-2.56,0-3.54c-0.49-0.49-1.13-0.73-1.77-0.73 c-0.64,0-1.28,0.24-1.77,0.73c-0.98,0.98-0.98,2.56,0,3.54l0.35,0.35l-1.06,1.06c-0.98,0.98-0.98,2.56,0,3.54 C4.22,21.76,4.86,22,5.5,22s1.28-0.24,1.77-0.73l1.06-1.06l1.41,1.41l1.41-1.41l-1.41-1.41l1.41-1.41L9.74,15.96z M5.85,14.2 c0.12-0.12,0.26-0.15,0.35-0.15s0.23,0.03,0.35,0.15c0.19,0.2,0.19,0.51,0,0.71l-0.35,0.35L5.85,14.9 C5.66,14.71,5.66,14.39,5.85,14.2z M5.85,19.85C5.73,19.97,5.59,20,5.5,20s-0.23-0.03-0.35-0.15c-0.19-0.19-0.19-0.51,0-0.71 l1.06-1.06l0.71,0.71L5.85,19.85z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_emoji_symbols_outline = ic_emoji_symbols_outline; \ No newline at end of file diff --git a/dist/md/ic_emoji_symbols_twotone.js b/dist/md/ic_emoji_symbols_twotone.js new file mode 100644 index 000000000..add479f22 --- /dev/null +++ b/dist/md/ic_emoji_symbols_twotone.js @@ -0,0 +1,157 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_emoji_symbols_twotone = void 0; +var ic_emoji_symbols_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "8", + "x": "3", + "y": "2" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "8", + "x": "3", + "y": "2" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "6,11 8,11 8,7 11,7 11,5 3,5 3,7 6,7" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "6,11 8,11 8,7 11,7 11,5 3,5 3,7 6,7" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "transform": "matrix(0.7071 -0.7071 0.7071 0.7071 -7.0416 16.9999)", + "width": "11", + "x": "11.5", + "y": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "transform": "matrix(0.7071 -0.7071 0.7071 0.7071 -7.0416 16.9999)", + "width": "11", + "x": "11.5", + "y": "16" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "14.5", + "cy": "14.5", + "r": "1.5" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "14.5", + "cy": "14.5", + "r": "1.5" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "19.5", + "cy": "19.5", + "r": "1.5" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "19.5", + "cy": "19.5", + "r": "1.5" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M15.5,11c1.38,0,2.5-1.12,2.5-2.5V4h3V2h-4v4.51C16.58,6.19,16.07,6,15.5,6C14.12,6,13,7.12,13,8.5 C13,9.88,14.12,11,15.5,11z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15.5,11c1.38,0,2.5-1.12,2.5-2.5V4h3V2h-4v4.51C16.58,6.19,16.07,6,15.5,6C14.12,6,13,7.12,13,8.5 C13,9.88,14.12,11,15.5,11z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M9.74,15.96l-1.41,1.41l-0.71-0.71l0.35-0.35c0.98-0.98,0.98-2.56,0-3.54c-0.49-0.49-1.13-0.73-1.77-0.73 c-0.64,0-1.28,0.24-1.77,0.73c-0.98,0.98-0.98,2.56,0,3.54l0.35,0.35l-1.06,1.06c-0.98,0.98-0.98,2.56,0,3.54 C4.22,21.76,4.86,22,5.5,22s1.28-0.24,1.77-0.73l1.06-1.06l1.41,1.41l1.41-1.41l-1.41-1.41l1.41-1.41L9.74,15.96z M5.85,14.2 c0.12-0.12,0.26-0.15,0.35-0.15s0.23,0.03,0.35,0.15c0.19,0.2,0.19,0.51,0,0.71l-0.35,0.35L5.85,14.9 C5.66,14.71,5.66,14.39,5.85,14.2z M5.85,19.85C5.73,19.97,5.59,20,5.5,20s-0.23-0.03-0.35-0.15c-0.19-0.19-0.19-0.51,0-0.71 l1.06-1.06l0.71,0.71L5.85,19.85z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M9.74,15.96l-1.41,1.41l-0.71-0.71l0.35-0.35c0.98-0.98,0.98-2.56,0-3.54c-0.49-0.49-1.13-0.73-1.77-0.73 c-0.64,0-1.28,0.24-1.77,0.73c-0.98,0.98-0.98,2.56,0,3.54l0.35,0.35l-1.06,1.06c-0.98,0.98-0.98,2.56,0,3.54 C4.22,21.76,4.86,22,5.5,22s1.28-0.24,1.77-0.73l1.06-1.06l1.41,1.41l1.41-1.41l-1.41-1.41l1.41-1.41L9.74,15.96z M5.85,14.2 c0.12-0.12,0.26-0.15,0.35-0.15s0.23,0.03,0.35,0.15c0.19,0.2,0.19,0.51,0,0.71l-0.35,0.35L5.85,14.9 C5.66,14.71,5.66,14.39,5.85,14.2z M5.85,19.85C5.73,19.97,5.59,20,5.5,20s-0.23-0.03-0.35-0.15c-0.19-0.19-0.19-0.51,0-0.71 l1.06-1.06l0.71,0.71L5.85,19.85z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_emoji_symbols_twotone = ic_emoji_symbols_twotone; \ No newline at end of file diff --git a/dist/md/ic_emoji_transportation.js b/dist/md/ic_emoji_transportation.js new file mode 100644 index 000000000..cdc7aae85 --- /dev/null +++ b/dist/md/ic_emoji_transportation.js @@ -0,0 +1,147 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_emoji_transportation = void 0; +var ic_emoji_transportation = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M20.57,10.66C20.43,10.26,20.05,10,19.6,10h-7.19c-0.46,0-0.83,0.26-0.98,0.66L10,14.77l0.01,5.51 c0,0.38,0.31,0.72,0.69,0.72h0.62C11.7,21,12,20.62,12,20.24V19h8v1.24c0,0.38,0.31,0.76,0.69,0.76h0.61 c0.38,0,0.69-0.34,0.69-0.72L22,18.91v-4.14L20.57,10.66z M12.41,11h7.19l1.03,3h-9.25L12.41,11z M12,17c-0.55,0-1-0.45-1-1 s0.45-1,1-1s1,0.45,1,1S12.55,17,12,17z M20,17c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S20.55,17,20,17z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20.57,10.66C20.43,10.26,20.05,10,19.6,10h-7.19c-0.46,0-0.83,0.26-0.98,0.66L10,14.77l0.01,5.51 c0,0.38,0.31,0.72,0.69,0.72h0.62C11.7,21,12,20.62,12,20.24V19h8v1.24c0,0.38,0.31,0.76,0.69,0.76h0.61 c0.38,0,0.69-0.34,0.69-0.72L22,18.91v-4.14L20.57,10.66z M12.41,11h7.19l1.03,3h-9.25L12.41,11z M12,17c-0.55,0-1-0.45-1-1 s0.45-1,1-1s1,0.45,1,1S12.55,17,12,17z M20,17c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S20.55,17,20,17z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "14,9 15,9 15,3 7,3 7,8 2,8 2,21 3,21 3,9 8,9 8,4 14,4" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "14,9 15,9 15,3 7,3 7,8 2,8 2,21 3,21 3,9 8,9 8,4 14,4" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "5", + "y": "11" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "5", + "y": "11" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "10", + "y": "5" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "10", + "y": "5" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "5", + "y": "15" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "5", + "y": "15" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "5", + "y": "19" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "5", + "y": "19" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_emoji_transportation = ic_emoji_transportation; \ No newline at end of file diff --git a/dist/md/ic_emoji_transportation_outline.js b/dist/md/ic_emoji_transportation_outline.js new file mode 100644 index 000000000..e800d6a44 --- /dev/null +++ b/dist/md/ic_emoji_transportation_outline.js @@ -0,0 +1,147 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_emoji_transportation_outline = void 0; +var ic_emoji_transportation_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M20.57,10.66C20.43,10.26,20.05,10,19.6,10h-7.19c-0.46,0-0.83,0.26-0.98,0.66L10,14.77l0.01,5.51 c0,0.38,0.31,0.72,0.69,0.72h0.62C11.7,21,12,20.62,12,20.24V19h8v1.24c0,0.38,0.31,0.76,0.69,0.76h0.61 c0.38,0,0.69-0.34,0.69-0.72L22,18.91v-4.14L20.57,10.66z M12.41,11h7.19l1.03,3h-9.25L12.41,11z M12,17c-0.55,0-1-0.45-1-1 s0.45-1,1-1s1,0.45,1,1S12.55,17,12,17z M20,17c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S20.55,17,20,17z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20.57,10.66C20.43,10.26,20.05,10,19.6,10h-7.19c-0.46,0-0.83,0.26-0.98,0.66L10,14.77l0.01,5.51 c0,0.38,0.31,0.72,0.69,0.72h0.62C11.7,21,12,20.62,12,20.24V19h8v1.24c0,0.38,0.31,0.76,0.69,0.76h0.61 c0.38,0,0.69-0.34,0.69-0.72L22,18.91v-4.14L20.57,10.66z M12.41,11h7.19l1.03,3h-9.25L12.41,11z M12,17c-0.55,0-1-0.45-1-1 s0.45-1,1-1s1,0.45,1,1S12.55,17,12,17z M20,17c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S20.55,17,20,17z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "14,9 15,9 15,3 7,3 7,8 2,8 2,21 3,21 3,9 8,9 8,4 14,4" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "14,9 15,9 15,3 7,3 7,8 2,8 2,21 3,21 3,9 8,9 8,4 14,4" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "5", + "y": "11" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "5", + "y": "11" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "10", + "y": "5" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "10", + "y": "5" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "5", + "y": "15" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "5", + "y": "15" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "5", + "y": "19" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "5", + "y": "19" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_emoji_transportation_outline = ic_emoji_transportation_outline; \ No newline at end of file diff --git a/dist/md/ic_emoji_transportation_twotone.js b/dist/md/ic_emoji_transportation_twotone.js new file mode 100644 index 000000000..44029a3f5 --- /dev/null +++ b/dist/md/ic_emoji_transportation_twotone.js @@ -0,0 +1,147 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_emoji_transportation_twotone = void 0; +var ic_emoji_transportation_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M20.57,10.66C20.43,10.26,20.05,10,19.6,10h-7.19c-0.46,0-0.83,0.26-0.98,0.66L10,14.77l0.01,5.51 c0,0.38,0.31,0.72,0.69,0.72h0.62C11.7,21,12,20.62,12,20.24V19h8v1.24c0,0.38,0.31,0.76,0.69,0.76h0.61 c0.38,0,0.69-0.34,0.69-0.72L22,18.91v-4.14L20.57,10.66z M12.41,11h7.19l1.03,3h-9.25L12.41,11z M12,17c-0.55,0-1-0.45-1-1 s0.45-1,1-1s1,0.45,1,1S12.55,17,12,17z M20,17c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S20.55,17,20,17z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20.57,10.66C20.43,10.26,20.05,10,19.6,10h-7.19c-0.46,0-0.83,0.26-0.98,0.66L10,14.77l0.01,5.51 c0,0.38,0.31,0.72,0.69,0.72h0.62C11.7,21,12,20.62,12,20.24V19h8v1.24c0,0.38,0.31,0.76,0.69,0.76h0.61 c0.38,0,0.69-0.34,0.69-0.72L22,18.91v-4.14L20.57,10.66z M12.41,11h7.19l1.03,3h-9.25L12.41,11z M12,17c-0.55,0-1-0.45-1-1 s0.45-1,1-1s1,0.45,1,1S12.55,17,12,17z M20,17c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S20.55,17,20,17z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "14,9 15,9 15,3 7,3 7,8 2,8 2,21 3,21 3,9 8,9 8,4 14,4" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "14,9 15,9 15,3 7,3 7,8 2,8 2,21 3,21 3,9 8,9 8,4 14,4" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "5", + "y": "11" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "5", + "y": "11" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "10", + "y": "5" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "10", + "y": "5" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "5", + "y": "15" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "5", + "y": "15" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "5", + "y": "19" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "5", + "y": "19" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_emoji_transportation_twotone = ic_emoji_transportation_twotone; \ No newline at end of file diff --git a/dist/md/ic_engineering.js b/dist/md/ic_engineering.js new file mode 100644 index 000000000..6fcbff8f8 --- /dev/null +++ b/dist/md/ic_engineering.js @@ -0,0 +1,103 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_engineering = void 0; +var ic_engineering = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M9,15c-2.67,0-8,1.34-8,4v2h16v-2C17,16.34,11.67,15,9,15z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M9,15c-2.67,0-8,1.34-8,4v2h16v-2C17,16.34,11.67,15,9,15z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M22.1,6.84c0.01-0.11,0.02-0.22,0.02-0.34c0-0.12-0.01-0.23-0.03-0.34l0.74-0.58c0.07-0.05,0.08-0.15,0.04-0.22l-0.7-1.21 c-0.04-0.08-0.14-0.1-0.21-0.08L21.1,4.42c-0.18-0.14-0.38-0.25-0.59-0.34l-0.13-0.93C20.36,3.06,20.29,3,20.2,3h-1.4 c-0.09,0-0.16,0.06-0.17,0.15L18.5,4.08c-0.21,0.09-0.41,0.21-0.59,0.34l-0.87-0.35c-0.08-0.03-0.17,0-0.21,0.08l-0.7,1.21 c-0.04,0.08-0.03,0.17,0.04,0.22l0.74,0.58c-0.02,0.11-0.03,0.23-0.03,0.34c0,0.11,0.01,0.23,0.03,0.34l-0.74,0.58 c-0.07,0.05-0.08,0.15-0.04,0.22l0.7,1.21c0.04,0.08,0.14,0.1,0.21,0.08l0.87-0.35c0.18,0.14,0.38,0.25,0.59,0.34l0.13,0.93 C18.64,9.94,18.71,10,18.8,10h1.4c0.09,0,0.16-0.06,0.17-0.15l0.13-0.93c0.21-0.09,0.41-0.21,0.59-0.34l0.87,0.35 c0.08,0.03,0.17,0,0.21-0.08l0.7-1.21c0.04-0.08,0.03-0.17-0.04-0.22L22.1,6.84z M19.5,7.75c-0.69,0-1.25-0.56-1.25-1.25 s0.56-1.25,1.25-1.25s1.25,0.56,1.25,1.25S20.19,7.75,19.5,7.75z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M22.1,6.84c0.01-0.11,0.02-0.22,0.02-0.34c0-0.12-0.01-0.23-0.03-0.34l0.74-0.58c0.07-0.05,0.08-0.15,0.04-0.22l-0.7-1.21 c-0.04-0.08-0.14-0.1-0.21-0.08L21.1,4.42c-0.18-0.14-0.38-0.25-0.59-0.34l-0.13-0.93C20.36,3.06,20.29,3,20.2,3h-1.4 c-0.09,0-0.16,0.06-0.17,0.15L18.5,4.08c-0.21,0.09-0.41,0.21-0.59,0.34l-0.87-0.35c-0.08-0.03-0.17,0-0.21,0.08l-0.7,1.21 c-0.04,0.08-0.03,0.17,0.04,0.22l0.74,0.58c-0.02,0.11-0.03,0.23-0.03,0.34c0,0.11,0.01,0.23,0.03,0.34l-0.74,0.58 c-0.07,0.05-0.08,0.15-0.04,0.22l0.7,1.21c0.04,0.08,0.14,0.1,0.21,0.08l0.87-0.35c0.18,0.14,0.38,0.25,0.59,0.34l0.13,0.93 C18.64,9.94,18.71,10,18.8,10h1.4c0.09,0,0.16-0.06,0.17-0.15l0.13-0.93c0.21-0.09,0.41-0.21,0.59-0.34l0.87,0.35 c0.08,0.03,0.17,0,0.21-0.08l0.7-1.21c0.04-0.08,0.03-0.17-0.04-0.22L22.1,6.84z M19.5,7.75c-0.69,0-1.25-0.56-1.25-1.25 s0.56-1.25,1.25-1.25s1.25,0.56,1.25,1.25S20.19,7.75,19.5,7.75z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19.92,11.68l-0.5-0.87c-0.03-0.06-0.1-0.08-0.15-0.06l-0.62,0.25c-0.13-0.1-0.27-0.18-0.42-0.24l-0.09-0.66 C18.12,10.04,18.06,10,18,10h-1c-0.06,0-0.11,0.04-0.12,0.11l-0.09,0.66c-0.15,0.06-0.29,0.15-0.42,0.24l-0.62-0.25 c-0.06-0.02-0.12,0-0.15,0.06l-0.5,0.87c-0.03,0.06-0.02,0.12,0.03,0.16l0.53,0.41c-0.01,0.08-0.02,0.16-0.02,0.24 c0,0.08,0.01,0.17,0.02,0.24l-0.53,0.41c-0.05,0.04-0.06,0.11-0.03,0.16l0.5,0.87c0.03,0.06,0.1,0.08,0.15,0.06l0.62-0.25 c0.13,0.1,0.27,0.18,0.42,0.24l0.09,0.66C16.89,14.96,16.94,15,17,15h1c0.06,0,0.12-0.04,0.12-0.11l0.09-0.66 c0.15-0.06,0.29-0.15,0.42-0.24l0.62,0.25c0.06,0.02,0.12,0,0.15-0.06l0.5-0.87c0.03-0.06,0.02-0.12-0.03-0.16l-0.52-0.41 c0.01-0.08,0.02-0.16,0.02-0.24c0-0.08-0.01-0.17-0.02-0.24l0.53-0.41C19.93,11.81,19.94,11.74,19.92,11.68z M17.5,13.33 c-0.46,0-0.83-0.38-0.83-0.83c0-0.46,0.38-0.83,0.83-0.83s0.83,0.38,0.83,0.83C18.33,12.96,17.96,13.33,17.5,13.33z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19.92,11.68l-0.5-0.87c-0.03-0.06-0.1-0.08-0.15-0.06l-0.62,0.25c-0.13-0.1-0.27-0.18-0.42-0.24l-0.09-0.66 C18.12,10.04,18.06,10,18,10h-1c-0.06,0-0.11,0.04-0.12,0.11l-0.09,0.66c-0.15,0.06-0.29,0.15-0.42,0.24l-0.62-0.25 c-0.06-0.02-0.12,0-0.15,0.06l-0.5,0.87c-0.03,0.06-0.02,0.12,0.03,0.16l0.53,0.41c-0.01,0.08-0.02,0.16-0.02,0.24 c0,0.08,0.01,0.17,0.02,0.24l-0.53,0.41c-0.05,0.04-0.06,0.11-0.03,0.16l0.5,0.87c0.03,0.06,0.1,0.08,0.15,0.06l0.62-0.25 c0.13,0.1,0.27,0.18,0.42,0.24l0.09,0.66C16.89,14.96,16.94,15,17,15h1c0.06,0,0.12-0.04,0.12-0.11l0.09-0.66 c0.15-0.06,0.29-0.15,0.42-0.24l0.62,0.25c0.06,0.02,0.12,0,0.15-0.06l0.5-0.87c0.03-0.06,0.02-0.12-0.03-0.16l-0.52-0.41 c0.01-0.08,0.02-0.16,0.02-0.24c0-0.08-0.01-0.17-0.02-0.24l0.53-0.41C19.93,11.81,19.94,11.74,19.92,11.68z M17.5,13.33 c-0.46,0-0.83-0.38-0.83-0.83c0-0.46,0.38-0.83,0.83-0.83s0.83,0.38,0.83,0.83C18.33,12.96,17.96,13.33,17.5,13.33z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M4.74,9h8.53c0.27,0,0.49-0.22,0.49-0.49V8.49c0-0.27-0.22-0.49-0.49-0.49H13c0-1.48-0.81-2.75-2-3.45V5.5 C11,5.78,10.78,6,10.5,6S10,5.78,10,5.5V4.14C9.68,4.06,9.35,4,9,4S8.32,4.06,8,4.14V5.5C8,5.78,7.78,6,7.5,6S7,5.78,7,5.5V4.55 C5.81,5.25,5,6.52,5,8H4.74C4.47,8,4.25,8.22,4.25,8.49v0.03C4.25,8.78,4.47,9,4.74,9z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M4.74,9h8.53c0.27,0,0.49-0.22,0.49-0.49V8.49c0-0.27-0.22-0.49-0.49-0.49H13c0-1.48-0.81-2.75-2-3.45V5.5 C11,5.78,10.78,6,10.5,6S10,5.78,10,5.5V4.14C9.68,4.06,9.35,4,9,4S8.32,4.06,8,4.14V5.5C8,5.78,7.78,6,7.5,6S7,5.78,7,5.5V4.55 C5.81,5.25,5,6.52,5,8H4.74C4.47,8,4.25,8.22,4.25,8.49v0.03C4.25,8.78,4.47,9,4.74,9z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M9,13c1.86,0,3.41-1.28,3.86-3H5.14C5.59,11.72,7.14,13,9,13z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M9,13c1.86,0,3.41-1.28,3.86-3H5.14C5.59,11.72,7.14,13,9,13z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_engineering = ic_engineering; \ No newline at end of file diff --git a/dist/md/ic_engineering_outline.js b/dist/md/ic_engineering_outline.js new file mode 100644 index 000000000..a2ea79937 --- /dev/null +++ b/dist/md/ic_engineering_outline.js @@ -0,0 +1,91 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_engineering_outline = void 0; +var ic_engineering_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M9,15c-2.67,0-8,1.34-8,4v2h16v-2C17,16.34,11.67,15,9,15z M3,19c0.22-0.72,3.31-2,6-2c2.7,0,5.8,1.29,6,2H3z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M9,15c-2.67,0-8,1.34-8,4v2h16v-2C17,16.34,11.67,15,9,15z M3,19c0.22-0.72,3.31-2,6-2c2.7,0,5.8,1.29,6,2H3z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M4.74,9H5c0,2.21,1.79,4,4,4s4-1.79,4-4h0.26c0.27,0,0.49-0.22,0.49-0.49V8.49c0-0.27-0.22-0.49-0.49-0.49H13 c0-1.48-0.81-2.75-2-3.45V5.5C11,5.78,10.78,6,10.5,6S10,5.78,10,5.5V4.14C9.68,4.06,9.35,4,9,4S8.32,4.06,8,4.14V5.5 C8,5.78,7.78,6,7.5,6S7,5.78,7,5.5V4.55C5.81,5.25,5,6.52,5,8H4.74C4.47,8,4.25,8.22,4.25,8.49v0.03C4.25,8.78,4.47,9,4.74,9z M11,9c0,1.1-0.9,2-2,2s-2-0.9-2-2H11z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M4.74,9H5c0,2.21,1.79,4,4,4s4-1.79,4-4h0.26c0.27,0,0.49-0.22,0.49-0.49V8.49c0-0.27-0.22-0.49-0.49-0.49H13 c0-1.48-0.81-2.75-2-3.45V5.5C11,5.78,10.78,6,10.5,6S10,5.78,10,5.5V4.14C9.68,4.06,9.35,4,9,4S8.32,4.06,8,4.14V5.5 C8,5.78,7.78,6,7.5,6S7,5.78,7,5.5V4.55C5.81,5.25,5,6.52,5,8H4.74C4.47,8,4.25,8.22,4.25,8.49v0.03C4.25,8.78,4.47,9,4.74,9z M11,9c0,1.1-0.9,2-2,2s-2-0.9-2-2H11z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M21.98,6.23l0.93-0.83l-0.75-1.3l-1.19,0.39c-0.14-0.11-0.3-0.2-0.47-0.27L20.25,3h-1.5L18.5,4.22 c-0.17,0.07-0.33,0.16-0.48,0.27L16.84,4.1l-0.75,1.3l0.93,0.83C17,6.4,17,6.58,17.02,6.75L16.09,7.6l0.75,1.3l1.2-0.38 c0.13,0.1,0.28,0.18,0.43,0.25L18.75,10h1.5l0.27-1.22c0.16-0.07,0.3-0.15,0.44-0.25l1.19,0.38l0.75-1.3l-0.93-0.85 C22,6.57,21.99,6.4,21.98,6.23z M19.5,7.75c-0.69,0-1.25-0.56-1.25-1.25s0.56-1.25,1.25-1.25s1.25,0.56,1.25,1.25 S20.19,7.75,19.5,7.75z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21.98,6.23l0.93-0.83l-0.75-1.3l-1.19,0.39c-0.14-0.11-0.3-0.2-0.47-0.27L20.25,3h-1.5L18.5,4.22 c-0.17,0.07-0.33,0.16-0.48,0.27L16.84,4.1l-0.75,1.3l0.93,0.83C17,6.4,17,6.58,17.02,6.75L16.09,7.6l0.75,1.3l1.2-0.38 c0.13,0.1,0.28,0.18,0.43,0.25L18.75,10h1.5l0.27-1.22c0.16-0.07,0.3-0.15,0.44-0.25l1.19,0.38l0.75-1.3l-0.93-0.85 C22,6.57,21.99,6.4,21.98,6.23z M19.5,7.75c-0.69,0-1.25-0.56-1.25-1.25s0.56-1.25,1.25-1.25s1.25,0.56,1.25,1.25 S20.19,7.75,19.5,7.75z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19.4,10.79l-0.85,0.28c-0.1-0.08-0.21-0.14-0.33-0.19L18.04,10h-1.07l-0.18,0.87c-0.12,0.05-0.24,0.12-0.34,0.19 l-0.84-0.28l-0.54,0.93l0.66,0.59c-0.01,0.13-0.01,0.25,0,0.37l-0.66,0.61l0.54,0.93l0.86-0.27c0.1,0.07,0.2,0.13,0.31,0.18 L16.96,15h1.07l0.19-0.87c0.11-0.05,0.22-0.11,0.32-0.18l0.85,0.27l0.54-0.93l-0.66-0.61c0.01-0.13,0.01-0.25,0-0.37l0.66-0.59 L19.4,10.79z M17.5,13.39c-0.49,0-0.89-0.4-0.89-0.89c0-0.49,0.4-0.89,0.89-0.89s0.89,0.4,0.89,0.89 C18.39,12.99,17.99,13.39,17.5,13.39z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19.4,10.79l-0.85,0.28c-0.1-0.08-0.21-0.14-0.33-0.19L18.04,10h-1.07l-0.18,0.87c-0.12,0.05-0.24,0.12-0.34,0.19 l-0.84-0.28l-0.54,0.93l0.66,0.59c-0.01,0.13-0.01,0.25,0,0.37l-0.66,0.61l0.54,0.93l0.86-0.27c0.1,0.07,0.2,0.13,0.31,0.18 L16.96,15h1.07l0.19-0.87c0.11-0.05,0.22-0.11,0.32-0.18l0.85,0.27l0.54-0.93l-0.66-0.61c0.01-0.13,0.01-0.25,0-0.37l0.66-0.59 L19.4,10.79z M17.5,13.39c-0.49,0-0.89-0.4-0.89-0.89c0-0.49,0.4-0.89,0.89-0.89s0.89,0.4,0.89,0.89 C18.39,12.99,17.99,13.39,17.5,13.39z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_engineering_outline = ic_engineering_outline; \ No newline at end of file diff --git a/dist/md/ic_engineering_twotone.js b/dist/md/ic_engineering_twotone.js new file mode 100644 index 000000000..785bad3ce --- /dev/null +++ b/dist/md/ic_engineering_twotone.js @@ -0,0 +1,147 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_engineering_twotone = void 0; +var ic_engineering_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M9,11c1.1,0,2-0.9,2-2H7C7,10.1,7.9,11,9,11z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M9,11c1.1,0,2-0.9,2-2H7C7,10.1,7.9,11,9,11z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M7.5,6C7.78,6,8,5.78,8,5.5V4.14C7.64,4.23,7.31,4.37,7,4.55V5.5C7,5.78,7.22,6,7.5,6z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M7.5,6C7.78,6,8,5.78,8,5.5V4.14C7.64,4.23,7.31,4.37,7,4.55V5.5C7,5.78,7.22,6,7.5,6z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M10.5,6C10.78,6,11,5.78,11,5.5V4.55c-0.31-0.18-0.64-0.32-1-0.41V5.5C10,5.78,10.22,6,10.5,6z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M10.5,6C10.78,6,11,5.78,11,5.5V4.55c-0.31-0.18-0.64-0.32-1-0.41V5.5C10,5.78,10.22,6,10.5,6z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M9,17c-2.69,0-5.77,1.28-6,2h12C14.8,18.29,11.7,17,9,17z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M9,17c-2.69,0-5.77,1.28-6,2h12C14.8,18.29,11.7,17,9,17z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M9,15c-2.67,0-8,1.34-8,4v2h16v-2C17,16.34,11.67,15,9,15z M3,19c0.22-0.72,3.31-2,6-2c2.7,0,5.8,1.29,6,2H3z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M9,15c-2.67,0-8,1.34-8,4v2h16v-2C17,16.34,11.67,15,9,15z M3,19c0.22-0.72,3.31-2,6-2c2.7,0,5.8,1.29,6,2H3z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M4.74,9H5c0,2.21,1.79,4,4,4s4-1.79,4-4h0.26c0.27,0,0.49-0.22,0.49-0.49V8.49c0-0.27-0.22-0.49-0.49-0.49H13 c0-1.48-0.81-2.75-2-3.45V5.5C11,5.78,10.78,6,10.5,6S10,5.78,10,5.5V4.14C9.68,4.06,9.35,4,9,4S8.32,4.06,8,4.14V5.5 C8,5.78,7.78,6,7.5,6S7,5.78,7,5.5V4.55C5.81,5.25,5,6.52,5,8H4.74C4.47,8,4.25,8.22,4.25,8.49v0.03C4.25,8.78,4.47,9,4.74,9z M11,9c0,1.1-0.9,2-2,2s-2-0.9-2-2H11z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M4.74,9H5c0,2.21,1.79,4,4,4s4-1.79,4-4h0.26c0.27,0,0.49-0.22,0.49-0.49V8.49c0-0.27-0.22-0.49-0.49-0.49H13 c0-1.48-0.81-2.75-2-3.45V5.5C11,5.78,10.78,6,10.5,6S10,5.78,10,5.5V4.14C9.68,4.06,9.35,4,9,4S8.32,4.06,8,4.14V5.5 C8,5.78,7.78,6,7.5,6S7,5.78,7,5.5V4.55C5.81,5.25,5,6.52,5,8H4.74C4.47,8,4.25,8.22,4.25,8.49v0.03C4.25,8.78,4.47,9,4.74,9z M11,9c0,1.1-0.9,2-2,2s-2-0.9-2-2H11z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M21.98,6.23l0.93-0.83l-0.75-1.3l-1.19,0.39c-0.14-0.11-0.3-0.2-0.47-0.27L20.25,3h-1.5L18.5,4.22 c-0.17,0.07-0.33,0.16-0.48,0.27L16.84,4.1l-0.75,1.3l0.93,0.83C17,6.4,17,6.58,17.02,6.75L16.09,7.6l0.75,1.3l1.2-0.38 c0.13,0.1,0.28,0.18,0.43,0.25L18.75,10h1.5l0.27-1.22c0.16-0.07,0.3-0.15,0.44-0.25l1.19,0.38l0.75-1.3l-0.93-0.85 C22,6.57,21.99,6.4,21.98,6.23z M19.5,7.75c-0.69,0-1.25-0.56-1.25-1.25s0.56-1.25,1.25-1.25s1.25,0.56,1.25,1.25 S20.19,7.75,19.5,7.75z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21.98,6.23l0.93-0.83l-0.75-1.3l-1.19,0.39c-0.14-0.11-0.3-0.2-0.47-0.27L20.25,3h-1.5L18.5,4.22 c-0.17,0.07-0.33,0.16-0.48,0.27L16.84,4.1l-0.75,1.3l0.93,0.83C17,6.4,17,6.58,17.02,6.75L16.09,7.6l0.75,1.3l1.2-0.38 c0.13,0.1,0.28,0.18,0.43,0.25L18.75,10h1.5l0.27-1.22c0.16-0.07,0.3-0.15,0.44-0.25l1.19,0.38l0.75-1.3l-0.93-0.85 C22,6.57,21.99,6.4,21.98,6.23z M19.5,7.75c-0.69,0-1.25-0.56-1.25-1.25s0.56-1.25,1.25-1.25s1.25,0.56,1.25,1.25 S20.19,7.75,19.5,7.75z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19.27,12.31l0.66-0.59l-0.54-0.93l-0.85,0.28c-0.1-0.08-0.21-0.14-0.33-0.19L18.04,10h-1.07l-0.18,0.87 c-0.12,0.05-0.24,0.12-0.34,0.19l-0.84-0.28l-0.54,0.93l0.66,0.59c-0.01,0.13-0.01,0.25,0,0.37l-0.66,0.61l0.54,0.93l0.86-0.27 c0.1,0.07,0.2,0.13,0.31,0.18L16.96,15h1.07l0.19-0.87c0.11-0.05,0.22-0.11,0.32-0.18l0.85,0.27l0.54-0.93l-0.66-0.61 C19.28,12.55,19.28,12.43,19.27,12.31z M17.5,13.39c-0.49,0-0.89-0.4-0.89-0.89s0.4-0.89,0.89-0.89s0.89,0.4,0.89,0.89 S17.99,13.39,17.5,13.39z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19.27,12.31l0.66-0.59l-0.54-0.93l-0.85,0.28c-0.1-0.08-0.21-0.14-0.33-0.19L18.04,10h-1.07l-0.18,0.87 c-0.12,0.05-0.24,0.12-0.34,0.19l-0.84-0.28l-0.54,0.93l0.66,0.59c-0.01,0.13-0.01,0.25,0,0.37l-0.66,0.61l0.54,0.93l0.86-0.27 c0.1,0.07,0.2,0.13,0.31,0.18L16.96,15h1.07l0.19-0.87c0.11-0.05,0.22-0.11,0.32-0.18l0.85,0.27l0.54-0.93l-0.66-0.61 C19.28,12.55,19.28,12.43,19.27,12.31z M17.5,13.39c-0.49,0-0.89-0.4-0.89-0.89s0.4-0.89,0.89-0.89s0.89,0.4,0.89,0.89 S17.99,13.39,17.5,13.39z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_engineering_twotone = ic_engineering_twotone; \ No newline at end of file diff --git a/dist/md/ic_enhanced_encryption.js b/dist/md/ic_enhanced_encryption.js new file mode 100644 index 000000000..cd79a2876 --- /dev/null +++ b/dist/md/ic_enhanced_encryption.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_enhanced_encryption = void 0; +var ic_enhanced_encryption = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zM8.9 6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2H8.9V6zM16 16h-3v3h-2v-3H8v-2h3v-3h2v3h3v2z" + }, + "children": [] + }] +}; +exports.ic_enhanced_encryption = ic_enhanced_encryption; \ No newline at end of file diff --git a/dist/md/ic_enhanced_encryption_outline.js b/dist/md/ic_enhanced_encryption_outline.js new file mode 100644 index 000000000..16c6df27a --- /dev/null +++ b/dist/md/ic_enhanced_encryption_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_enhanced_encryption_outline = void 0; +var ic_enhanced_encryption_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0zm0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zM8.9 6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2H8.9V6zM18 20H6V10h12v10zm-5-9h-2v3H8v2h3v3h2v-3h3v-2h-3z" + }, + "children": [] + }] +}; +exports.ic_enhanced_encryption_outline = ic_enhanced_encryption_outline; \ No newline at end of file diff --git a/dist/md/ic_enhanced_encryption_twotone.js b/dist/md/ic_enhanced_encryption_twotone.js new file mode 100644 index 000000000..93ccaeaed --- /dev/null +++ b/dist/md/ic_enhanced_encryption_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_enhanced_encryption_twotone = void 0; +var ic_enhanced_encryption_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0zm0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 20h12V10H6v10zm2-6h3v-3h2v3h3v2h-3v3h-2v-3H8v-2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zM8.9 6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2H8.9V6zM18 20H6V10h12v10zm-7-1h2v-3h3v-2h-3v-3h-2v3H8v2h3z" + }, + "children": [] + }] +}; +exports.ic_enhanced_encryption_twotone = ic_enhanced_encryption_twotone; \ No newline at end of file diff --git a/dist/md/ic_equalizer.js b/dist/md/ic_equalizer.js new file mode 100644 index 000000000..2976da67f --- /dev/null +++ b/dist/md/ic_equalizer.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_equalizer = void 0; +var ic_equalizer = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 20h4V4h-4v16zm-6 0h4v-8H4v8zM16 9v11h4V9h-4z" + }, + "children": [] + }] +}; +exports.ic_equalizer = ic_equalizer; \ No newline at end of file diff --git a/dist/md/ic_equalizer_outline.js b/dist/md/ic_equalizer_outline.js new file mode 100644 index 000000000..efd7ba094 --- /dev/null +++ b/dist/md/ic_equalizer_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_equalizer_outline = void 0; +var ic_equalizer_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 20h4V4h-4v16zm-6 0h4v-8H4v8zM16 9v11h4V9h-4z" + }, + "children": [] + }] +}; +exports.ic_equalizer_outline = ic_equalizer_outline; \ No newline at end of file diff --git a/dist/md/ic_equalizer_twotone.js b/dist/md/ic_equalizer_twotone.js new file mode 100644 index 000000000..dc6f942d6 --- /dev/null +++ b/dist/md/ic_equalizer_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_equalizer_twotone = void 0; +var ic_equalizer_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 9h4v11h-4zm-6-5h4v16h-4zm-6 8h4v8H4z" + }, + "children": [] + }] +}; +exports.ic_equalizer_twotone = ic_equalizer_twotone; \ No newline at end of file diff --git a/dist/md/ic_error.js b/dist/md/ic_error.js new file mode 100644 index 000000000..e7fb38afc --- /dev/null +++ b/dist/md/ic_error.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_error = void 0; +var ic_error = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z" + }, + "children": [] + }] +}; +exports.ic_error = ic_error; \ No newline at end of file diff --git a/dist/md/ic_error_outline.js b/dist/md/ic_error_outline.js new file mode 100644 index 000000000..716647422 --- /dev/null +++ b/dist/md/ic_error_outline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_error_outline = void 0; +var ic_error_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z" + }, + "children": [] + }] +}; +exports.ic_error_outline = ic_error_outline; \ No newline at end of file diff --git a/dist/md/ic_error_outline_outline.js b/dist/md/ic_error_outline_outline.js new file mode 100644 index 000000000..b0a09abbd --- /dev/null +++ b/dist/md/ic_error_outline_outline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_error_outline_outline = void 0; +var ic_error_outline_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M11 15h2v2h-2v-2zm0-8h2v6h-2V7zm.99-5C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" + }, + "children": [] + }] +}; +exports.ic_error_outline_outline = ic_error_outline_outline; \ No newline at end of file diff --git a/dist/md/ic_error_outline_twotone.js b/dist/md/ic_error_outline_twotone.js new file mode 100644 index 000000000..ce3908d16 --- /dev/null +++ b/dist/md/ic_error_outline_twotone.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_error_outline_twotone = void 0; +var ic_error_outline_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm-1-5h2v2h-2zm0-8h2v6h-2z" + }, + "children": [] + }] +}; +exports.ic_error_outline_twotone = ic_error_outline_twotone; \ No newline at end of file diff --git a/dist/md/ic_error_twotone.js b/dist/md/ic_error_twotone.js new file mode 100644 index 000000000..956cbd019 --- /dev/null +++ b/dist/md/ic_error_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_error_twotone = void 0; +var ic_error_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm1 13h-2v-2h2v2zm0-4h-2V7h2v6z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm-1-5h2v2h-2zm0-8h2v6h-2z" + }, + "children": [] + }] +}; +exports.ic_error_twotone = ic_error_twotone; \ No newline at end of file diff --git a/dist/md/ic_escalator.js b/dist/md/ic_escalator.js new file mode 100644 index 000000000..41883e90a --- /dev/null +++ b/dist/md/ic_escalator.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_escalator = void 0; +var ic_escalator = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2l0-14C21,3.9,20.1,3,19,3z M17,9h-1.7l-5,9H7 c-0.83,0-1.5-0.67-1.5-1.5S6.17,15,7,15h1.7l5-9H17c0.83,0,1.5,0.67,1.5,1.5S17.83,9,17,9z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2l0-14C21,3.9,20.1,3,19,3z M17,9h-1.7l-5,9H7 c-0.83,0-1.5-0.67-1.5-1.5S6.17,15,7,15h1.7l5-9H17c0.83,0,1.5,0.67,1.5,1.5S17.83,9,17,9z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_escalator = ic_escalator; \ No newline at end of file diff --git a/dist/md/ic_escalator_outline.js b/dist/md/ic_escalator_outline.js new file mode 100644 index 000000000..0dbcce0ff --- /dev/null +++ b/dist/md/ic_escalator_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_escalator_outline = void 0; +var ic_escalator_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19,5L19,5l0,14H5V5H19 M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2l0-14C21,3.9,20.1,3,19,3L19,3z M17,6h-3.3l-5,9H7c-0.83,0-1.5,0.67-1.5,1.5S6.17,18,7,18h3.3l5-9H17c0.83,0,1.5-0.67,1.5-1.5S17.83,6,17,6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,5L19,5l0,14H5V5H19 M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2l0-14C21,3.9,20.1,3,19,3L19,3z M17,6h-3.3l-5,9H7c-0.83,0-1.5,0.67-1.5,1.5S6.17,18,7,18h3.3l5-9H17c0.83,0,1.5-0.67,1.5-1.5S17.83,6,17,6z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_escalator_outline = ic_escalator_outline; \ No newline at end of file diff --git a/dist/md/ic_escalator_twotone.js b/dist/md/ic_escalator_twotone.js new file mode 100644 index 000000000..4c3b7fe1d --- /dev/null +++ b/dist/md/ic_escalator_twotone.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_escalator_twotone = void 0; +var ic_escalator_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19,5L19,5l0,14H5V5H19 M17,6h-3.3l-5,9H7c-0.83,0-1.5,0.67-1.5,1.5S6.17,18,7,18h3.3l5-9H17 c0.83,0,1.5-0.67,1.5-1.5S17.83,6,17,6z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,5L19,5l0,14H5V5H19 M17,6h-3.3l-5,9H7c-0.83,0-1.5,0.67-1.5,1.5S6.17,18,7,18h3.3l5-9H17 c0.83,0,1.5-0.67,1.5-1.5S17.83,6,17,6z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19,5L19,5l0,14H5V5H19 M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2l0-14C21,3.9,20.1,3,19,3L19,3z M17,6h-3.3l-5,9H7c-0.83,0-1.5,0.67-1.5,1.5S6.17,18,7,18h3.3l5-9H17c0.83,0,1.5-0.67,1.5-1.5S17.83,6,17,6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,5L19,5l0,14H5V5H19 M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2l0-14C21,3.9,20.1,3,19,3L19,3z M17,6h-3.3l-5,9H7c-0.83,0-1.5,0.67-1.5,1.5S6.17,18,7,18h3.3l5-9H17c0.83,0,1.5-0.67,1.5-1.5S17.83,6,17,6z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_escalator_twotone = ic_escalator_twotone; \ No newline at end of file diff --git a/dist/md/ic_escalator_warning.js b/dist/md/ic_escalator_warning.js new file mode 100644 index 000000000..22020cc7b --- /dev/null +++ b/dist/md/ic_escalator_warning.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_escalator_warning = void 0; +var ic_escalator_warning = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M6.5,2c1.1,0,2,0.9,2,2s-0.9,2-2,2s-2-0.9-2-2S5.4,2,6.5,2z M15.5,9.5c0,0.83,0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5 S17.83,8,17,8S15.5,8.67,15.5,9.5z M18.5,12h-2.84c-0.58,0.01-1.14,0.32-1.45,0.86l-0.92,1.32L9.72,8C9.35,7.37,8.69,7.01,8.01,7H5 C3.9,7,3,7.9,3,9v6h1.5v7h5V11.61L12.03,16h2.2L15,14.9V22h4v-5h1v-3.5C20,12.68,19.33,12,18.5,12z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M6.5,2c1.1,0,2,0.9,2,2s-0.9,2-2,2s-2-0.9-2-2S5.4,2,6.5,2z M15.5,9.5c0,0.83,0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5 S17.83,8,17,8S15.5,8.67,15.5,9.5z M18.5,12h-2.84c-0.58,0.01-1.14,0.32-1.45,0.86l-0.92,1.32L9.72,8C9.35,7.37,8.69,7.01,8.01,7H5 C3.9,7,3,7.9,3,9v6h1.5v7h5V11.61L12.03,16h2.2L15,14.9V22h4v-5h1v-3.5C20,12.68,19.33,12,18.5,12z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_escalator_warning = ic_escalator_warning; \ No newline at end of file diff --git a/dist/md/ic_escalator_warning_outline.js b/dist/md/ic_escalator_warning_outline.js new file mode 100644 index 000000000..1914e83e3 --- /dev/null +++ b/dist/md/ic_escalator_warning_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_escalator_warning_outline = void 0; +var ic_escalator_warning_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M6.5,2c1.1,0,2,0.9,2,2s-0.9,2-2,2s-2-0.9-2-2S5.4,2,6.5,2z M15.5,9.5c0,0.83,0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5 S17.83,8,17,8S15.5,8.67,15.5,9.5z M18.5,12h-2.84c-0.58,0.01-1.14,0.32-1.45,0.86l-0.92,1.32L9.72,8C9.35,7.37,8.69,7.01,8.01,7H5 C3.9,7,3,7.9,3,9v6h1.5v7h5V11.61L12.03,16h2.2L15,14.9V22h4v-5h1v-3.5C20,12.68,19.33,12,18.5,12z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M6.5,2c1.1,0,2,0.9,2,2s-0.9,2-2,2s-2-0.9-2-2S5.4,2,6.5,2z M15.5,9.5c0,0.83,0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5 S17.83,8,17,8S15.5,8.67,15.5,9.5z M18.5,12h-2.84c-0.58,0.01-1.14,0.32-1.45,0.86l-0.92,1.32L9.72,8C9.35,7.37,8.69,7.01,8.01,7H5 C3.9,7,3,7.9,3,9v6h1.5v7h5V11.61L12.03,16h2.2L15,14.9V22h4v-5h1v-3.5C20,12.68,19.33,12,18.5,12z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_escalator_warning_outline = ic_escalator_warning_outline; \ No newline at end of file diff --git a/dist/md/ic_escalator_warning_twotone.js b/dist/md/ic_escalator_warning_twotone.js new file mode 100644 index 000000000..1e652da7d --- /dev/null +++ b/dist/md/ic_escalator_warning_twotone.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_escalator_warning_twotone = void 0; +var ic_escalator_warning_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M6.5,2c1.1,0,2,0.9,2,2s-0.9,2-2,2s-2-0.9-2-2S5.4,2,6.5,2z M15.5,9.5c0,0.83,0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5 S17.83,8,17,8S15.5,8.67,15.5,9.5z M18.5,12h-2.84c-0.58,0.01-1.14,0.32-1.45,0.86l-0.92,1.32L9.72,8C9.35,7.37,8.69,7.01,8.01,7H5 C3.9,7,3,7.9,3,9v6h1.5v7h5V11.61L12.03,16h2.2L15,14.9V22h4v-5h1v-3.5C20,12.68,19.33,12,18.5,12z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M6.5,2c1.1,0,2,0.9,2,2s-0.9,2-2,2s-2-0.9-2-2S5.4,2,6.5,2z M15.5,9.5c0,0.83,0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5 S17.83,8,17,8S15.5,8.67,15.5,9.5z M18.5,12h-2.84c-0.58,0.01-1.14,0.32-1.45,0.86l-0.92,1.32L9.72,8C9.35,7.37,8.69,7.01,8.01,7H5 C3.9,7,3,7.9,3,9v6h1.5v7h5V11.61L12.03,16h2.2L15,14.9V22h4v-5h1v-3.5C20,12.68,19.33,12,18.5,12z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_escalator_warning_twotone = ic_escalator_warning_twotone; \ No newline at end of file diff --git a/dist/md/ic_euro.js b/dist/md/ic_euro.js new file mode 100644 index 000000000..60c775b1f --- /dev/null +++ b/dist/md/ic_euro.js @@ -0,0 +1,55 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_euro = void 0; +var ic_euro = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M15,18.5c-2.51,0-4.68-1.42-5.76-3.5H15l1-2H8.58c-0.05-0.33-0.08-0.66-0.08-1s0.03-0.67,0.08-1H15l1-2H9.24 C10.32,6.92,12.5,5.5,15,5.5c1.61,0,3.09,0.59,4.23,1.57L21,5.3C19.41,3.87,17.3,3,15,3c-3.92,0-7.24,2.51-8.48,6H3l-1,2h4.06 C6.02,11.33,6,11.66,6,12s0.02,0.67,0.06,1H3l-1,2h4.52c1.24,3.49,4.56,6,8.48,6c2.31,0,4.41-0.87,6-2.3l-1.78-1.77 C18.09,17.91,16.62,18.5,15,18.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15,18.5c-2.51,0-4.68-1.42-5.76-3.5H15l1-2H8.58c-0.05-0.33-0.08-0.66-0.08-1s0.03-0.67,0.08-1H15l1-2H9.24 C10.32,6.92,12.5,5.5,15,5.5c1.61,0,3.09,0.59,4.23,1.57L21,5.3C19.41,3.87,17.3,3,15,3c-3.92,0-7.24,2.51-8.48,6H3l-1,2h4.06 C6.02,11.33,6,11.66,6,12s0.02,0.67,0.06,1H3l-1,2h4.52c1.24,3.49,4.56,6,8.48,6c2.31,0,4.41-0.87,6-2.3l-1.78-1.77 C18.09,17.91,16.62,18.5,15,18.5z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_euro = ic_euro; \ No newline at end of file diff --git a/dist/md/ic_euro_outline.js b/dist/md/ic_euro_outline.js new file mode 100644 index 000000000..a0ea24301 --- /dev/null +++ b/dist/md/ic_euro_outline.js @@ -0,0 +1,55 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_euro_outline = void 0; +var ic_euro_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M15,18.5c-2.51,0-4.68-1.42-5.76-3.5H15l1-2H8.58c-0.05-0.33-0.08-0.66-0.08-1s0.03-0.67,0.08-1H15l1-2H9.24 C10.32,6.92,12.5,5.5,15,5.5c1.61,0,3.09,0.59,4.23,1.57L21,5.3C19.41,3.87,17.3,3,15,3c-3.92,0-7.24,2.51-8.48,6H3l-1,2h4.06 C6.02,11.33,6,11.66,6,12s0.02,0.67,0.06,1H3l-1,2h4.52c1.24,3.49,4.56,6,8.48,6c2.31,0,4.41-0.87,6-2.3l-1.78-1.77 C18.09,17.91,16.62,18.5,15,18.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15,18.5c-2.51,0-4.68-1.42-5.76-3.5H15l1-2H8.58c-0.05-0.33-0.08-0.66-0.08-1s0.03-0.67,0.08-1H15l1-2H9.24 C10.32,6.92,12.5,5.5,15,5.5c1.61,0,3.09,0.59,4.23,1.57L21,5.3C19.41,3.87,17.3,3,15,3c-3.92,0-7.24,2.51-8.48,6H3l-1,2h4.06 C6.02,11.33,6,11.66,6,12s0.02,0.67,0.06,1H3l-1,2h4.52c1.24,3.49,4.56,6,8.48,6c2.31,0,4.41-0.87,6-2.3l-1.78-1.77 C18.09,17.91,16.62,18.5,15,18.5z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_euro_outline = ic_euro_outline; \ No newline at end of file diff --git a/dist/md/ic_euro_symbol.js b/dist/md/ic_euro_symbol.js new file mode 100644 index 000000000..1818aff62 --- /dev/null +++ b/dist/md/ic_euro_symbol.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_euro_symbol = void 0; +var ic_euro_symbol = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 18.5c-2.51 0-4.68-1.42-5.76-3.5H15v-2H8.58c-.05-.33-.08-.66-.08-1s.03-.67.08-1H15V9H9.24C10.32 6.92 12.5 5.5 15 5.5c1.61 0 3.09.59 4.23 1.57L21 5.3C19.41 3.87 17.3 3 15 3c-3.92 0-7.24 2.51-8.48 6H3v2h3.06c-.04.33-.06.66-.06 1 0 .34.02.67.06 1H3v2h3.52c1.24 3.49 4.56 6 8.48 6 2.31 0 4.41-.87 6-2.3l-1.78-1.77c-1.13.98-2.6 1.57-4.22 1.57z" + }, + "children": [] + }] +}; +exports.ic_euro_symbol = ic_euro_symbol; \ No newline at end of file diff --git a/dist/md/ic_euro_symbol_outline.js b/dist/md/ic_euro_symbol_outline.js new file mode 100644 index 000000000..29fd8279a --- /dev/null +++ b/dist/md/ic_euro_symbol_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_euro_symbol_outline = void 0; +var ic_euro_symbol_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 18.5c-2.51 0-4.68-1.42-5.76-3.5H15v-2H8.58c-.05-.33-.08-.66-.08-1s.03-.67.08-1H15V9H9.24C10.32 6.92 12.5 5.5 15 5.5c1.61 0 3.09.59 4.23 1.57L21 5.3C19.41 3.87 17.3 3 15 3c-3.92 0-7.24 2.51-8.48 6H3v2h3.06c-.04.33-.06.66-.06 1s.02.67.06 1H3v2h3.52c1.24 3.49 4.56 6 8.48 6 2.31 0 4.41-.87 6-2.3l-1.78-1.77c-1.13.98-2.6 1.57-4.22 1.57z" + }, + "children": [] + }] +}; +exports.ic_euro_symbol_outline = ic_euro_symbol_outline; \ No newline at end of file diff --git a/dist/md/ic_euro_symbol_twotone.js b/dist/md/ic_euro_symbol_twotone.js new file mode 100644 index 000000000..b90f5b413 --- /dev/null +++ b/dist/md/ic_euro_symbol_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_euro_symbol_twotone = void 0; +var ic_euro_symbol_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 18.5c-2.51 0-4.68-1.42-5.76-3.5H15v-2H8.58c-.05-.33-.08-.66-.08-1s.03-.67.08-1H15V9H9.24C10.32 6.92 12.5 5.5 15 5.5c1.61 0 3.09.59 4.23 1.57L21 5.3C19.41 3.87 17.3 3 15 3c-3.92 0-7.24 2.51-8.48 6H3v2h3.06c-.04.33-.06.66-.06 1s.02.67.06 1H3v2h3.52c1.24 3.49 4.56 6 8.48 6 2.31 0 4.41-.87 6-2.3l-1.78-1.77c-1.13.98-2.6 1.57-4.22 1.57z" + }, + "children": [] + }] +}; +exports.ic_euro_symbol_twotone = ic_euro_symbol_twotone; \ No newline at end of file diff --git a/dist/md/ic_euro_twotone.js b/dist/md/ic_euro_twotone.js new file mode 100644 index 000000000..730de7ca6 --- /dev/null +++ b/dist/md/ic_euro_twotone.js @@ -0,0 +1,55 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_euro_twotone = void 0; +var ic_euro_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M15,18.5c-2.51,0-4.68-1.42-5.76-3.5H15l1-2H8.58c-0.05-0.33-0.08-0.66-0.08-1s0.03-0.67,0.08-1H15l1-2H9.24 C10.32,6.92,12.5,5.5,15,5.5c1.61,0,3.09,0.59,4.23,1.57L21,5.3C19.41,3.87,17.3,3,15,3c-3.92,0-7.24,2.51-8.48,6H3l-1,2h4.06 C6.02,11.33,6,11.66,6,12s0.02,0.67,0.06,1H3l-1,2h4.52c1.24,3.49,4.56,6,8.48,6c2.31,0,4.41-0.87,6-2.3l-1.78-1.77 C18.09,17.91,16.62,18.5,15,18.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15,18.5c-2.51,0-4.68-1.42-5.76-3.5H15l1-2H8.58c-0.05-0.33-0.08-0.66-0.08-1s0.03-0.67,0.08-1H15l1-2H9.24 C10.32,6.92,12.5,5.5,15,5.5c1.61,0,3.09,0.59,4.23,1.57L21,5.3C19.41,3.87,17.3,3,15,3c-3.92,0-7.24,2.51-8.48,6H3l-1,2h4.06 C6.02,11.33,6,11.66,6,12s0.02,0.67,0.06,1H3l-1,2h4.52c1.24,3.49,4.56,6,8.48,6c2.31,0,4.41-0.87,6-2.3l-1.78-1.77 C18.09,17.91,16.62,18.5,15,18.5z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_euro_twotone = ic_euro_twotone; \ No newline at end of file diff --git a/dist/md/ic_ev_station.js b/dist/md/ic_ev_station.js new file mode 100644 index 000000000..e4ee1bb46 --- /dev/null +++ b/dist/md/ic_ev_station.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_ev_station = void 0; +var ic_ev_station = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.77 7.23l.01-.01-3.72-3.72L15 4.56l2.11 2.11c-.94.36-1.61 1.26-1.61 2.33 0 1.38 1.12 2.5 2.5 2.5.36 0 .69-.08 1-.21v7.21c0 .55-.45 1-1 1s-1-.45-1-1V14c0-1.1-.9-2-2-2h-1V5c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2v16h10v-7.5h1.5v5c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5V9c0-.69-.28-1.32-.73-1.77zM18 10c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM8 18v-4.5H6L10 6v5h2l-4 7z" + }, + "children": [] + }] +}; +exports.ic_ev_station = ic_ev_station; \ No newline at end of file diff --git a/dist/md/ic_ev_station_outline.js b/dist/md/ic_ev_station_outline.js new file mode 100644 index 000000000..138c885e0 --- /dev/null +++ b/dist/md/ic_ev_station_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_ev_station_outline = void 0; +var ic_ev_station_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.77 7.23l.01-.01-3.72-3.72L15 4.56l2.11 2.11c-.94.36-1.61 1.26-1.61 2.33 0 1.38 1.12 2.5 2.5 2.5.36 0 .69-.08 1-.21v7.21c0 .55-.45 1-1 1s-1-.45-1-1V14c0-1.1-.9-2-2-2h-1V5c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2v16h10v-7.5h1.5v5c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5V9c0-.69-.28-1.32-.73-1.77zM12 11v8H6V5h6v6zm6-1c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-8-4l-4 7.5h2V18l4-7h-2z" + }, + "children": [] + }] +}; +exports.ic_ev_station_outline = ic_ev_station_outline; \ No newline at end of file diff --git a/dist/md/ic_ev_station_twotone.js b/dist/md/ic_ev_station_twotone.js new file mode 100644 index 000000000..387625126 --- /dev/null +++ b/dist/md/ic_ev_station_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_ev_station_twotone = void 0; +var ic_ev_station_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8 13.5H6V19h6v-8l-4 7zm-2 0L10 6v5h2V5H6z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 3H6c-1.1 0-2 .9-2 2v16h10v-7.5h1.5v5c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5V9c0-.69-.28-1.32-.73-1.77l.01-.01-3.72-3.72L15 4.56l2.11 2.11c-.94.36-1.61 1.26-1.61 2.33 0 1.38 1.12 2.5 2.5 2.5.36 0 .69-.08 1-.21v7.21c0 .55-.45 1-1 1s-1-.45-1-1V14c0-1.1-.9-2-2-2h-1V5c0-1.1-.9-2-2-2zm0 8v8H6V5h6v6zm6-1c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-8-4l-4 7.5h2V18l4-7h-2z" + }, + "children": [] + }] +}; +exports.ic_ev_station_twotone = ic_ev_station_twotone; \ No newline at end of file diff --git a/dist/md/ic_event.js b/dist/md/ic_event.js new file mode 100644 index 000000000..90124f1db --- /dev/null +++ b/dist/md/ic_event.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_event = void 0; +var ic_event = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 12h-5v5h5v-5zM16 1v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2h-1V1h-2zm3 18H5V8h14v11z" + }, + "children": [] + }] +}; +exports.ic_event = ic_event; \ No newline at end of file diff --git a/dist/md/ic_event_available.js b/dist/md/ic_event_available.js new file mode 100644 index 000000000..34e24d575 --- /dev/null +++ b/dist/md/ic_event_available.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_event_available = void 0; +var ic_event_available = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16.53 11.06L15.47 10l-4.88 4.88-2.12-2.12-1.06 1.06L10.59 17l5.94-5.94zM19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11z" + }, + "children": [] + }] +}; +exports.ic_event_available = ic_event_available; \ No newline at end of file diff --git a/dist/md/ic_event_available_outline.js b/dist/md/ic_event_available_outline.js new file mode 100644 index 000000000..eb52c32af --- /dev/null +++ b/dist/md/ic_event_available_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_event_available_outline = void 0; +var ic_event_available_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V9h14v10zM5 7V5h14v2H5zm5.56 10.46l5.93-5.93-1.06-1.06-4.87 4.87-2.11-2.11-1.06 1.06z" + }, + "children": [] + }] +}; +exports.ic_event_available_outline = ic_event_available_outline; \ No newline at end of file diff --git a/dist/md/ic_event_available_twotone.js b/dist/md/ic_event_available_twotone.js new file mode 100644 index 000000000..7b3a022d1 --- /dev/null +++ b/dist/md/ic_event_available_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_event_available_twotone = void 0; +var ic_event_available_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 5h14v2H5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V9h14v10zm0-12H5V5h14v2zm-2.51 4.53l-1.06-1.06-4.87 4.87-2.11-2.11-1.06 1.06 3.17 3.17z" + }, + "children": [] + }] +}; +exports.ic_event_available_twotone = ic_event_available_twotone; \ No newline at end of file diff --git a/dist/md/ic_event_busy.js b/dist/md/ic_event_busy.js new file mode 100644 index 000000000..751384967 --- /dev/null +++ b/dist/md/ic_event_busy.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_event_busy = void 0; +var ic_event_busy = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9.31 17l2.44-2.44L14.19 17l1.06-1.06-2.44-2.44 2.44-2.44L14.19 10l-2.44 2.44L9.31 10l-1.06 1.06 2.44 2.44-2.44 2.44L9.31 17zM19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11z" + }, + "children": [] + }] +}; +exports.ic_event_busy = ic_event_busy; \ No newline at end of file diff --git a/dist/md/ic_event_busy_outline.js b/dist/md/ic_event_busy_outline.js new file mode 100644 index 000000000..086e12408 --- /dev/null +++ b/dist/md/ic_event_busy_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_event_busy_outline = void 0; +var ic_event_busy_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V9h14v10zM5 7V5h14v2H5zm3.23 9.41l1.06 1.06 2.44-2.44 2.44 2.44 1.06-1.06-2.44-2.44 2.44-2.44-1.06-1.06-2.44 2.44-2.44-2.44-1.06 1.06 2.44 2.44z" + }, + "children": [] + }] +}; +exports.ic_event_busy_outline = ic_event_busy_outline; \ No newline at end of file diff --git a/dist/md/ic_event_busy_twotone.js b/dist/md/ic_event_busy_twotone.js new file mode 100644 index 000000000..67ab3dab9 --- /dev/null +++ b/dist/md/ic_event_busy_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_event_busy_twotone = void 0; +var ic_event_busy_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 5h14v2H5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V9h14v10zm0-12H5V5h14v2zM9.29 17.47l2.44-2.44 2.44 2.44 1.06-1.06-2.44-2.44 2.44-2.44-1.06-1.06-2.44 2.44-2.44-2.44-1.06 1.06 2.44 2.44-2.44 2.44z" + }, + "children": [] + }] +}; +exports.ic_event_busy_twotone = ic_event_busy_twotone; \ No newline at end of file diff --git a/dist/md/ic_event_note.js b/dist/md/ic_event_note.js new file mode 100644 index 000000000..ab90adf1a --- /dev/null +++ b/dist/md/ic_event_note.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_event_note = void 0; +var ic_event_note = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 10H7v2h10v-2zm2-7h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11zm-5-5H7v2h7v-2z" + }, + "children": [] + }] +}; +exports.ic_event_note = ic_event_note; \ No newline at end of file diff --git a/dist/md/ic_event_note_outline.js b/dist/md/ic_event_note_outline.js new file mode 100644 index 000000000..bb476bbc9 --- /dev/null +++ b/dist/md/ic_event_note_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_event_note_outline = void 0; +var ic_event_note_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V9h14v10zM5 7V5h14v2H5zm2 4h10v2H7zm0 4h7v2H7z" + }, + "children": [] + }] +}; +exports.ic_event_note_outline = ic_event_note_outline; \ No newline at end of file diff --git a/dist/md/ic_event_note_twotone.js b/dist/md/ic_event_note_twotone.js new file mode 100644 index 000000000..814b5275b --- /dev/null +++ b/dist/md/ic_event_note_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_event_note_twotone = void 0; +var ic_event_note_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 5h14v2H5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V9h14v10zm0-12H5V5h14v2zM7 11h10v2H7zm0 4h7v2H7z" + }, + "children": [] + }] +}; +exports.ic_event_note_twotone = ic_event_note_twotone; \ No newline at end of file diff --git a/dist/md/ic_event_outline.js b/dist/md/ic_event_outline.js new file mode 100644 index 000000000..80e2105ab --- /dev/null +++ b/dist/md/ic_event_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_event_outline = void 0; +var ic_event_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 4h-1V2h-2v2H8V2H6v2H5c-1.11 0-1.99.9-1.99 2L3 20c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V10h14v10zm0-12H5V6h14v2zm-7 5h5v5h-5z" + }, + "children": [] + }] +}; +exports.ic_event_outline = ic_event_outline; \ No newline at end of file diff --git a/dist/md/ic_event_seat.js b/dist/md/ic_event_seat.js new file mode 100644 index 000000000..0fdd72ae5 --- /dev/null +++ b/dist/md/ic_event_seat.js @@ -0,0 +1,65 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_event_seat = void 0; +var ic_event_seat = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M4,18v3h3v-3h10v3h3v-6H4V18z M19,10h3v3h-3V10z M2,10h3v3H2V10z M17,13H7V5c0-1.1,0.9-2,2-2h6c1.1,0,2,0.9,2,2V13z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M4,18v3h3v-3h10v3h3v-6H4V18z M19,10h3v3h-3V10z M2,10h3v3H2V10z M17,13H7V5c0-1.1,0.9-2,2-2h6c1.1,0,2,0.9,2,2V13z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_event_seat = ic_event_seat; \ No newline at end of file diff --git a/dist/md/ic_event_seat_outline.js b/dist/md/ic_event_seat_outline.js new file mode 100644 index 000000000..423f9ce25 --- /dev/null +++ b/dist/md/ic_event_seat_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_event_seat_outline = void 0; +var ic_event_seat_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 5v7H9V5h6m0-2H9c-1.1 0-2 .9-2 2v9h10V5c0-1.1-.9-2-2-2zm7 7h-3v3h3v-3zM5 10H2v3h3v-3zm15 5H4v6h2v-4h12v4h2v-6z" + }, + "children": [] + }] +}; +exports.ic_event_seat_outline = ic_event_seat_outline; \ No newline at end of file diff --git a/dist/md/ic_event_seat_twotone.js b/dist/md/ic_event_seat_twotone.js new file mode 100644 index 000000000..c74e0f67f --- /dev/null +++ b/dist/md/ic_event_seat_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_event_seat_twotone = void 0; +var ic_event_seat_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 5h6v7H9z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 21h2v-4h12v4h2v-6H4zM17 5c0-1.1-.9-2-2-2H9c-1.1 0-2 .9-2 2v9h10V5zm-2 7H9V5h6v7zm4-2h3v3h-3zM2 10h3v3H2z" + }, + "children": [] + }] +}; +exports.ic_event_seat_twotone = ic_event_seat_twotone; \ No newline at end of file diff --git a/dist/md/ic_event_twotone.js b/dist/md/ic_event_twotone.js new file mode 100644 index 000000000..750b7acbc --- /dev/null +++ b/dist/md/ic_event_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_event_twotone = void 0; +var ic_event_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 8h14V6H5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 4h-1V2h-2v2H8V2H6v2H5c-1.11 0-1.99.9-1.99 2L3 20c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V10h14v10zm0-12H5V6h14v2zm-7 5h5v5h-5z" + }, + "children": [] + }] +}; +exports.ic_event_twotone = ic_event_twotone; \ No newline at end of file diff --git a/dist/md/ic_exit_to_app.js b/dist/md/ic_exit_to_app.js new file mode 100644 index 000000000..9671a1a9f --- /dev/null +++ b/dist/md/ic_exit_to_app.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_exit_to_app = void 0; +var ic_exit_to_app = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10.09 15.59L11.5 17l5-5-5-5-1.41 1.41L12.67 11H3v2h9.67l-2.58 2.59zM19 3H5c-1.11 0-2 .9-2 2v4h2V5h14v14H5v-4H3v4c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_exit_to_app = ic_exit_to_app; \ No newline at end of file diff --git a/dist/md/ic_exit_to_app_outline.js b/dist/md/ic_exit_to_app_outline.js new file mode 100644 index 000000000..c153ba87e --- /dev/null +++ b/dist/md/ic_exit_to_app_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_exit_to_app_outline = void 0; +var ic_exit_to_app_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10.09 15.59L11.5 17l5-5-5-5-1.41 1.41L12.67 11H3v2h9.67l-2.58 2.59zM19 3H5c-1.11 0-2 .9-2 2v4h2V5h14v14H5v-4H3v4c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_exit_to_app_outline = ic_exit_to_app_outline; \ No newline at end of file diff --git a/dist/md/ic_exit_to_app_twotone.js b/dist/md/ic_exit_to_app_twotone.js new file mode 100644 index 000000000..39cfde906 --- /dev/null +++ b/dist/md/ic_exit_to_app_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_exit_to_app_twotone = void 0; +var ic_exit_to_app_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10.09 15.59L11.5 17l5-5-5-5-1.41 1.41L12.67 11H3v2h9.67l-2.58 2.59zM19 3H5c-1.11 0-2 .9-2 2v4h2V5h14v14H5v-4H3v4c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_exit_to_app_twotone = ic_exit_to_app_twotone; \ No newline at end of file diff --git a/dist/md/ic_expand.js b/dist/md/ic_expand.js new file mode 100644 index 000000000..a5a7eb72d --- /dev/null +++ b/dist/md/ic_expand.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_expand = void 0; +var ic_expand = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 20h16v2H4zM4 2h16v2H4zm9 7h3l-4-4-4 4h3v6H8l4 4 4-4h-3z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }] +}; +exports.ic_expand = ic_expand; \ No newline at end of file diff --git a/dist/md/ic_expand_less.js b/dist/md/ic_expand_less.js new file mode 100644 index 000000000..ccd1f2679 --- /dev/null +++ b/dist/md/ic_expand_less.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_expand_less = void 0; +var ic_expand_less = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 8l-6 6 1.41 1.41L12 10.83l4.59 4.58L18 14z" + }, + "children": [] + }] +}; +exports.ic_expand_less = ic_expand_less; \ No newline at end of file diff --git a/dist/md/ic_expand_less_outline.js b/dist/md/ic_expand_less_outline.js new file mode 100644 index 000000000..959867840 --- /dev/null +++ b/dist/md/ic_expand_less_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_expand_less_outline = void 0; +var ic_expand_less_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 8l-6 6 1.41 1.41L12 10.83l4.59 4.58L18 14l-6-6z" + }, + "children": [] + }] +}; +exports.ic_expand_less_outline = ic_expand_less_outline; \ No newline at end of file diff --git a/dist/md/ic_expand_less_twotone.js b/dist/md/ic_expand_less_twotone.js new file mode 100644 index 000000000..c3da695b7 --- /dev/null +++ b/dist/md/ic_expand_less_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_expand_less_twotone = void 0; +var ic_expand_less_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 8l-6 6 1.41 1.41L12 10.83l4.59 4.58L18 14l-6-6z" + }, + "children": [] + }] +}; +exports.ic_expand_less_twotone = ic_expand_less_twotone; \ No newline at end of file diff --git a/dist/md/ic_expand_more.js b/dist/md/ic_expand_more.js new file mode 100644 index 000000000..2adfa54c7 --- /dev/null +++ b/dist/md/ic_expand_more.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_expand_more = void 0; +var ic_expand_more = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6z" + }, + "children": [] + }] +}; +exports.ic_expand_more = ic_expand_more; \ No newline at end of file diff --git a/dist/md/ic_expand_more_outline.js b/dist/md/ic_expand_more_outline.js new file mode 100644 index 000000000..97192b278 --- /dev/null +++ b/dist/md/ic_expand_more_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_expand_more_outline = void 0; +var ic_expand_more_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M24 24H0V0h24v24z", + "fill": "none", + "opacity": ".87" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6-1.41-1.41z" + }, + "children": [] + }] +}; +exports.ic_expand_more_outline = ic_expand_more_outline; \ No newline at end of file diff --git a/dist/md/ic_expand_more_twotone.js b/dist/md/ic_expand_more_twotone.js new file mode 100644 index 000000000..c0d4bbe5c --- /dev/null +++ b/dist/md/ic_expand_more_twotone.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_expand_more_twotone = void 0; +var ic_expand_more_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M24 24H0V0h24v24z", + "fill": "none", + "opacity": ".87" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6-1.41-1.41z" + }, + "children": [] + }] +}; +exports.ic_expand_more_twotone = ic_expand_more_twotone; \ No newline at end of file diff --git a/dist/md/ic_explicit.js b/dist/md/ic_explicit.js new file mode 100644 index 000000000..db5e93a85 --- /dev/null +++ b/dist/md/ic_explicit.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_explicit = void 0; +var ic_explicit = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4 6h-4v2h4v2h-4v2h4v2H9V7h6v2z" + }, + "children": [] + }] +}; +exports.ic_explicit = ic_explicit; \ No newline at end of file diff --git a/dist/md/ic_explicit_outline.js b/dist/md/ic_explicit_outline.js new file mode 100644 index 000000000..8af755b5b --- /dev/null +++ b/dist/md/ic_explicit_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_explicit_outline = void 0; +var ic_explicit_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-4-4h-4v-2h4v-2h-4V9h4V7H9v10h6z" + }, + "children": [] + }] +}; +exports.ic_explicit_outline = ic_explicit_outline; \ No newline at end of file diff --git a/dist/md/ic_explicit_twotone.js b/dist/md/ic_explicit_twotone.js new file mode 100644 index 000000000..ab4311d0a --- /dev/null +++ b/dist/md/ic_explicit_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_explicit_twotone = void 0; +var ic_explicit_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 19h14V5H5v14zM9 7h6v2h-4v2h4v2h-4v2h4v2H9V7z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 19V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zm-2 0H5V5h14v14zm-4-4h-4v-2h4v-2h-4V9h4V7H9v10h6z" + }, + "children": [] + }] +}; +exports.ic_explicit_twotone = ic_explicit_twotone; \ No newline at end of file diff --git a/dist/md/ic_explore.js b/dist/md/ic_explore.js new file mode 100644 index 000000000..282f08bd7 --- /dev/null +++ b/dist/md/ic_explore.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_explore = void 0; +var ic_explore = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 10.9c-.61 0-1.1.49-1.1 1.1s.49 1.1 1.1 1.1c.61 0 1.1-.49 1.1-1.1s-.49-1.1-1.1-1.1zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm2.19 12.19L6 18l3.81-8.19L18 6l-3.81 8.19z" + }, + "children": [] + }] +}; +exports.ic_explore = ic_explore; \ No newline at end of file diff --git a/dist/md/ic_explore_off.js b/dist/md/ic_explore_off.js new file mode 100644 index 000000000..a470f89bb --- /dev/null +++ b/dist/md/ic_explore_off.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_explore_off = void 0; +var ic_explore_off = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14.19 14.19l-1.41-1.41-1.56-1.56L11 11 9.81 9.81 4.93 4.93 2.27 2.27 1 3.54l2.78 2.78c-.11.16-.21.32-.31.48-.04.07-.09.14-.13.21-.09.15-.17.31-.25.47-.05.1-.1.21-.16.32-.06.14-.13.28-.19.43-.1.24-.19.48-.27.73l-.09.3c-.05.2-.1.39-.14.59-.02.11-.04.22-.07.33-.04.2-.07.4-.09.61-.01.1-.03.2-.03.3-.03.29-.05.6-.05.91 0 5.52 4.48 10 10 10 .31 0 .62-.02.92-.05l.3-.03c.2-.02.41-.06.61-.09.11-.02.22-.04.33-.07.2-.04.39-.09.58-.15.1-.03.2-.05.3-.09.25-.08.49-.17.73-.27.15-.06.29-.13.43-.19.11-.05.22-.1.33-.16.16-.08.31-.16.46-.25.07-.04.14-.09.21-.13.16-.1.32-.2.48-.31L20.46 23l1.27-1.27-2.66-2.66-4.88-4.88zM6 18l3-6.46L12.46 15 6 18zm16-6c0 .31-.02.62-.05.92l-.03.3c-.02.2-.06.41-.09.61-.02.11-.04.22-.07.33-.04.2-.09.39-.15.58-.03.1-.05.21-.09.31-.08.25-.17.49-.27.73-.06.15-.13.29-.19.43-.05.11-.1.22-.16.33-.08.16-.16.31-.25.46-.04.07-.09.14-.13.21-.1.16-.2.32-.31.48L15 12.46 18 6l-6.46 3-5.22-5.22c.16-.11.32-.21.48-.31.07-.04.14-.09.21-.13.15-.09.31-.17.46-.25.11-.05.22-.1.33-.16.14-.06.28-.13.43-.19.24-.1.48-.19.73-.27l.31-.09c.19-.05.38-.11.58-.15.11-.02.22-.04.33-.07.2-.04.4-.07.61-.09.1-.01.2-.03.3-.03.29-.02.6-.04.91-.04 5.52 0 10 4.48 10 10z" + }, + "children": [] + }] +}; +exports.ic_explore_off = ic_explore_off; \ No newline at end of file diff --git a/dist/md/ic_explore_off_outline.js b/dist/md/ic_explore_off_outline.js new file mode 100644 index 000000000..a5c0eb8ed --- /dev/null +++ b/dist/md/ic_explore_off_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_explore_off_outline = void 0; +var ic_explore_off_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4c4.41 0 8 3.59 8 8 0 1.48-.41 2.86-1.12 4.06l1.46 1.46C21.39 15.93 22 14.04 22 12c0-5.52-4.48-10-10-10-2.04 0-3.93.61-5.51 1.66l1.46 1.46C9.14 4.41 10.52 4 12 4zm2.91 8.08L17.5 6.5l-5.58 2.59 2.99 2.99zM2.1 4.93l1.56 1.56C2.61 8.07 2 9.96 2 12c0 5.52 4.48 10 10 10 2.04 0 3.93-.61 5.51-1.66l1.56 1.56 1.41-1.41L3.51 3.51 2.1 4.93zm3.02 3.01l3.98 3.98-2.6 5.58 5.58-2.59 3.98 3.98c-1.2.7-2.58 1.11-4.06 1.11-4.41 0-8-3.59-8-8 0-1.48.41-2.86 1.12-4.06z" + }, + "children": [] + }] +}; +exports.ic_explore_off_outline = ic_explore_off_outline; \ No newline at end of file diff --git a/dist/md/ic_explore_off_twotone.js b/dist/md/ic_explore_off_twotone.js new file mode 100644 index 000000000..b7b6fee77 --- /dev/null +++ b/dist/md/ic_explore_off_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_explore_off_twotone = void 0; +var ic_explore_off_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 20c1.48 0 2.86-.41 4.06-1.12l-3.98-3.98-5.58 2.6 2.59-5.58-3.97-3.98C4.41 9.14 4 10.52 4 12c0 4.41 3.59 8 8 8zm0-16c-1.48 0-2.86.41-4.06 1.12l3.98 3.98 5.58-2.6-2.59 5.58 3.98 3.98c.7-1.2 1.11-2.58 1.11-4.06 0-4.41-3.59-8-8-8z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17.5 6.5l-5.58 2.59 2.99 2.99zM2.1 4.93l1.56 1.56C2.61 8.07 2 9.96 2 12c0 5.52 4.48 10 10 10 2.04 0 3.93-.61 5.51-1.66l1.56 1.56 1.41-1.41L3.51 3.51 2.1 4.93zm3.02 3.01l3.98 3.98-2.6 5.58 5.58-2.59 3.98 3.98c-1.2.7-2.58 1.11-4.06 1.11-4.41 0-8-3.59-8-8 0-1.48.41-2.86 1.12-4.06zM12 4c4.41 0 8 3.59 8 8 0 1.48-.41 2.86-1.12 4.06l1.46 1.46C21.39 15.93 22 14.04 22 12c0-5.52-4.48-10-10-10-2.04 0-3.93.61-5.51 1.66l1.46 1.46C9.14 4.41 10.52 4 12 4z" + }, + "children": [] + }] +}; +exports.ic_explore_off_twotone = ic_explore_off_twotone; \ No newline at end of file diff --git a/dist/md/ic_explore_outline.js b/dist/md/ic_explore_outline.js new file mode 100644 index 000000000..2f029dcdf --- /dev/null +++ b/dist/md/ic_explore_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_explore_outline = void 0; +var ic_explore_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-5.5-2.5l7.51-3.49L17.5 6.5 9.99 9.99 6.5 17.5zm5.5-6.6c.61 0 1.1.49 1.1 1.1s-.49 1.1-1.1 1.1-1.1-.49-1.1-1.1.49-1.1 1.1-1.1z" + }, + "children": [] + }] +}; +exports.ic_explore_outline = ic_explore_outline; \ No newline at end of file diff --git a/dist/md/ic_explore_twotone.js b/dist/md/ic_explore_twotone.js new file mode 100644 index 000000000..933015711 --- /dev/null +++ b/dist/md/ic_explore_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_explore_twotone = void 0; +var ic_explore_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm2.01 10.01L6.5 17.5l3.49-7.51L17.5 6.5l-3.49 7.51z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-5.5-2.5l7.51-3.49L17.5 6.5 9.99 9.99 6.5 17.5zm5.5-6.6c.61 0 1.1.49 1.1 1.1s-.49 1.1-1.1 1.1-1.1-.49-1.1-1.1.49-1.1 1.1-1.1z" + }, + "children": [] + }] +}; +exports.ic_explore_twotone = ic_explore_twotone; \ No newline at end of file diff --git a/dist/md/ic_exposure.js b/dist/md/ic_exposure.js new file mode 100644 index 000000000..3607e808c --- /dev/null +++ b/dist/md/ic_exposure.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_exposure = void 0; +var ic_exposure = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM6 7h5v1.5H6V7zm13 12H5L19 5v14zm-4.5-3v2H16v-2h2v-1.5h-2v-2h-1.5v2h-2V16z" + }, + "children": [] + }] +}; +exports.ic_exposure = ic_exposure; \ No newline at end of file diff --git a/dist/md/ic_exposure_neg_1.js b/dist/md/ic_exposure_neg_1.js new file mode 100644 index 000000000..a3ae95378 --- /dev/null +++ b/dist/md/ic_exposure_neg_1.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_exposure_neg_1 = void 0; +var ic_exposure_neg_1 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0zm0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 11v2h8v-2H4zm15 7h-2V7.38L14 8.4V6.7L18.7 5h.3v13z" + }, + "children": [] + }] +}; +exports.ic_exposure_neg_1 = ic_exposure_neg_1; \ No newline at end of file diff --git a/dist/md/ic_exposure_neg_1_outline.js b/dist/md/ic_exposure_neg_1_outline.js new file mode 100644 index 000000000..a4df9453a --- /dev/null +++ b/dist/md/ic_exposure_neg_1_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_exposure_neg_1_outline = void 0; +var ic_exposure_neg_1_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 11v2h8v-2H4zm15 7h-2V7.38L14 8.4V6.7L18.7 5h.3v13z" + }, + "children": [] + }] +}; +exports.ic_exposure_neg_1_outline = ic_exposure_neg_1_outline; \ No newline at end of file diff --git a/dist/md/ic_exposure_neg_1_twotone.js b/dist/md/ic_exposure_neg_1_twotone.js new file mode 100644 index 000000000..c66f6bc23 --- /dev/null +++ b/dist/md/ic_exposure_neg_1_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_exposure_neg_1_twotone = void 0; +var ic_exposure_neg_1_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 18V5h-.3L14 6.7v1.7l3-1.02V18zM4 11h8v2H4z" + }, + "children": [] + }] +}; +exports.ic_exposure_neg_1_twotone = ic_exposure_neg_1_twotone; \ No newline at end of file diff --git a/dist/md/ic_exposure_neg_2.js b/dist/md/ic_exposure_neg_2.js new file mode 100644 index 000000000..dbb14849e --- /dev/null +++ b/dist/md/ic_exposure_neg_2.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_exposure_neg_2 = void 0; +var ic_exposure_neg_2 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0zm0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.05 16.29l2.86-3.07c.38-.39.72-.79 1.04-1.18.32-.39.59-.78.82-1.17.23-.39.41-.78.54-1.17s.19-.79.19-1.18c0-.53-.09-1.02-.27-1.46-.18-.44-.44-.81-.78-1.11-.34-.31-.77-.54-1.26-.71-.51-.16-1.08-.24-1.72-.24-.69 0-1.31.11-1.85.32-.54.21-1 .51-1.36.88-.37.37-.65.8-.84 1.3-.18.47-.27.97-.28 1.5h2.14c.01-.31.05-.6.13-.87.09-.29.23-.54.4-.75.18-.21.41-.37.68-.49.27-.12.6-.18.96-.18.31 0 .58.05.81.15.23.1.43.25.59.43.16.18.28.4.37.65.08.25.13.52.13.81 0 .22-.03.43-.08.65-.06.22-.15.45-.29.7-.14.25-.32.53-.56.83-.23.3-.52.65-.88 1.03l-4.17 4.55V18H21v-1.71h-5.95zM2 11v2h8v-2H2z" + }, + "children": [] + }] +}; +exports.ic_exposure_neg_2 = ic_exposure_neg_2; \ No newline at end of file diff --git a/dist/md/ic_exposure_neg_2_outline.js b/dist/md/ic_exposure_neg_2_outline.js new file mode 100644 index 000000000..6ae9630b2 --- /dev/null +++ b/dist/md/ic_exposure_neg_2_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_exposure_neg_2_outline = void 0; +var ic_exposure_neg_2_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.05 16.29l2.86-3.07c.38-.39.72-.79 1.04-1.18.32-.39.59-.78.82-1.17s.41-.78.54-1.17.19-.79.19-1.18c0-.53-.09-1.02-.27-1.46s-.44-.81-.78-1.11c-.34-.31-.77-.54-1.26-.71-.51-.16-1.08-.24-1.72-.24-.69 0-1.31.11-1.85.32-.54.21-1 .51-1.36.88-.37.37-.65.8-.84 1.3-.18.47-.27.97-.28 1.5h2.14c.01-.31.05-.6.13-.87.09-.29.23-.54.4-.75.18-.21.41-.37.68-.49s.6-.18.96-.18c.31 0 .58.05.81.15s.43.25.59.43.28.4.37.65c.08.25.13.52.13.81 0 .22-.03.43-.08.65-.06.22-.15.45-.29.7-.14.25-.32.53-.56.83-.23.3-.52.65-.88 1.03l-4.17 4.55V18H21v-1.71h-5.95zM2 11v2h8v-2H2z" + }, + "children": [] + }] +}; +exports.ic_exposure_neg_2_outline = ic_exposure_neg_2_outline; \ No newline at end of file diff --git a/dist/md/ic_exposure_neg_2_twotone.js b/dist/md/ic_exposure_neg_2_twotone.js new file mode 100644 index 000000000..505ef21e3 --- /dev/null +++ b/dist/md/ic_exposure_neg_2_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_exposure_neg_2_twotone = void 0; +var ic_exposure_neg_2_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17.98 10.1c-.14.25-.32.53-.56.83-.23.3-.52.65-.88 1.03l-4.17 4.55V18H21v-1.71h-5.95l2.86-3.07c.38-.39.72-.79 1.04-1.18s.59-.78.82-1.17c.23-.39.41-.78.54-1.17.13-.39.19-.79.19-1.18 0-.53-.09-1.02-.27-1.46s-.44-.81-.78-1.11c-.34-.31-.77-.54-1.26-.71-.51-.16-1.08-.24-1.72-.24-.69 0-1.31.11-1.85.32-.54.21-1 .51-1.36.88-.37.37-.65.8-.84 1.3-.18.47-.27.97-.28 1.5h2.14c.01-.31.05-.6.13-.87.09-.29.23-.54.4-.75.18-.21.41-.37.68-.49.27-.12.6-.18.96-.18.31 0 .58.05.81.15s.43.25.59.43c.16.18.28.4.37.65.08.25.13.52.13.81 0 .22-.03.43-.08.65-.06.22-.15.45-.29.7zM2 11h8v2H2z" + }, + "children": [] + }] +}; +exports.ic_exposure_neg_2_twotone = ic_exposure_neg_2_twotone; \ No newline at end of file diff --git a/dist/md/ic_exposure_outline.js b/dist/md/ic_exposure_outline.js new file mode 100644 index 000000000..f0b4de678 --- /dev/null +++ b/dist/md/ic_exposure_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_exposure_outline = void 0; +var ic_exposure_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1.41 2L5 17.59V5h12.59zM6.41 19L19 6.41V19H6.41zM6 7h5v1.5H6zm10 5.5h-1.5v2h-2V16h2v2H16v-2h2v-1.5h-2z" + }, + "children": [] + }] +}; +exports.ic_exposure_outline = ic_exposure_outline; \ No newline at end of file diff --git a/dist/md/ic_exposure_plus_1.js b/dist/md/ic_exposure_plus_1.js new file mode 100644 index 000000000..df5794a6f --- /dev/null +++ b/dist/md/ic_exposure_plus_1.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_exposure_plus_1 = void 0; +var ic_exposure_plus_1 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0zm0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 7H8v4H4v2h4v4h2v-4h4v-2h-4V7zm10 11h-2V7.38L15 8.4V6.7L19.7 5h.3v13z" + }, + "children": [] + }] +}; +exports.ic_exposure_plus_1 = ic_exposure_plus_1; \ No newline at end of file diff --git a/dist/md/ic_exposure_plus_1_outline.js b/dist/md/ic_exposure_plus_1_outline.js new file mode 100644 index 000000000..61ed5151f --- /dev/null +++ b/dist/md/ic_exposure_plus_1_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_exposure_plus_1_outline = void 0; +var ic_exposure_plus_1_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 7H8v4H4v2h4v4h2v-4h4v-2h-4V7zm10 11h-2V7.38L15 8.4V6.7L19.7 5h.3v13z" + }, + "children": [] + }] +}; +exports.ic_exposure_plus_1_outline = ic_exposure_plus_1_outline; \ No newline at end of file diff --git a/dist/md/ic_exposure_plus_1_twotone.js b/dist/md/ic_exposure_plus_1_twotone.js new file mode 100644 index 000000000..7ccc7d92b --- /dev/null +++ b/dist/md/ic_exposure_plus_1_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_exposure_plus_1_twotone = void 0; +var ic_exposure_plus_1_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 18V5h-.3L15 6.7v1.7l3-1.02V18zm-10-1v-4h4v-2h-4V7H8v4H4v2h4v4z" + }, + "children": [] + }] +}; +exports.ic_exposure_plus_1_twotone = ic_exposure_plus_1_twotone; \ No newline at end of file diff --git a/dist/md/ic_exposure_plus_2.js b/dist/md/ic_exposure_plus_2.js new file mode 100644 index 000000000..ba4aaafb9 --- /dev/null +++ b/dist/md/ic_exposure_plus_2.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_exposure_plus_2 = void 0; +var ic_exposure_plus_2 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0zm0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16.05 16.29l2.86-3.07c.38-.39.72-.79 1.04-1.18.32-.39.59-.78.82-1.17.23-.39.41-.78.54-1.17.13-.39.19-.79.19-1.18 0-.53-.09-1.02-.27-1.46-.18-.44-.44-.81-.78-1.11-.34-.31-.77-.54-1.26-.71-.51-.16-1.08-.24-1.72-.24-.69 0-1.31.11-1.85.32-.54.21-1 .51-1.36.88-.37.37-.65.8-.84 1.3-.18.47-.27.97-.28 1.5h2.14c.01-.31.05-.6.13-.87.09-.29.23-.54.4-.75.18-.21.41-.37.68-.49.27-.12.6-.18.96-.18.31 0 .58.05.81.15.23.1.43.25.59.43.16.18.28.4.37.65.08.25.13.52.13.81 0 .22-.03.43-.08.65-.06.22-.15.45-.29.7-.14.25-.32.53-.56.83-.23.3-.52.65-.88 1.03l-4.17 4.55V18H22v-1.71h-5.95zM8 7H6v4H2v2h4v4h2v-4h4v-2H8V7z" + }, + "children": [] + }] +}; +exports.ic_exposure_plus_2 = ic_exposure_plus_2; \ No newline at end of file diff --git a/dist/md/ic_exposure_plus_2_outline.js b/dist/md/ic_exposure_plus_2_outline.js new file mode 100644 index 000000000..c2e165426 --- /dev/null +++ b/dist/md/ic_exposure_plus_2_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_exposure_plus_2_outline = void 0; +var ic_exposure_plus_2_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16.05 16.29l2.86-3.07c.38-.39.72-.79 1.04-1.18.32-.39.59-.78.82-1.17s.41-.78.54-1.17c.13-.39.19-.79.19-1.18 0-.53-.09-1.02-.27-1.46s-.44-.81-.78-1.11c-.34-.31-.77-.54-1.26-.71-.51-.16-1.08-.24-1.72-.24-.69 0-1.31.11-1.85.32-.54.21-1 .51-1.36.88-.37.37-.65.8-.84 1.3-.18.47-.27.97-.28 1.5h2.14c.01-.31.05-.6.13-.87.09-.29.23-.54.4-.75.18-.21.41-.37.68-.49s.6-.18.96-.18c.31 0 .58.05.81.15s.43.25.59.43.28.4.37.65c.08.25.13.52.13.81 0 .22-.03.43-.08.65-.06.22-.15.45-.29.7-.14.25-.32.53-.56.83-.23.3-.52.65-.88 1.03l-4.17 4.55V18H22v-1.71h-5.95zM8 7H6v4H2v2h4v4h2v-4h4v-2H8V7z" + }, + "children": [] + }] +}; +exports.ic_exposure_plus_2_outline = ic_exposure_plus_2_outline; \ No newline at end of file diff --git a/dist/md/ic_exposure_plus_2_twotone.js b/dist/md/ic_exposure_plus_2_twotone.js new file mode 100644 index 000000000..e7620c2a8 --- /dev/null +++ b/dist/md/ic_exposure_plus_2_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_exposure_plus_2_twotone = void 0; +var ic_exposure_plus_2_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8 17v-4h4v-2H8V7H6v4H2v2h4v4zm11.95-4.96c.32-.39.59-.78.82-1.17.23-.39.41-.78.54-1.17.13-.39.19-.79.19-1.18 0-.53-.09-1.02-.27-1.46s-.44-.81-.78-1.11c-.34-.31-.77-.54-1.26-.71-.51-.16-1.08-.24-1.72-.24-.69 0-1.31.11-1.85.32-.54.21-1 .51-1.36.88-.37.37-.65.8-.84 1.3-.18.47-.27.97-.28 1.5h2.14c.01-.31.05-.6.13-.87.09-.29.23-.54.4-.75.18-.21.41-.37.68-.49.27-.12.6-.18.96-.18.31 0 .58.05.81.15s.43.25.59.43c.16.18.28.4.37.65.08.25.13.52.13.81 0 .22-.03.43-.08.65-.06.22-.15.45-.29.7-.14.25-.32.53-.56.83-.23.3-.52.65-.88 1.03l-4.17 4.55V18H22v-1.71h-5.95l2.86-3.07c.38-.39.72-.79 1.04-1.18z" + }, + "children": [] + }] +}; +exports.ic_exposure_plus_2_twotone = ic_exposure_plus_2_twotone; \ No newline at end of file diff --git a/dist/md/ic_exposure_twotone.js b/dist/md/ic_exposure_twotone.js new file mode 100644 index 000000000..fc61871dc --- /dev/null +++ b/dist/md/ic_exposure_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_exposure_twotone = void 0; +var ic_exposure_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 19V5L5 19h14zm-4.5-4.5v-2H16v2h2V16h-2v2h-1.5v-2h-2v-1.5h2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM6 7h5v1.5H6V7zm13 12H5L19 5v14zm-4.5-3v2H16v-2h2v-1.5h-2v-2h-1.5v2h-2V16z" + }, + "children": [] + }] +}; +exports.ic_exposure_twotone = ic_exposure_twotone; \ No newline at end of file diff --git a/dist/md/ic_exposure_zero.js b/dist/md/ic_exposure_zero.js new file mode 100644 index 000000000..60efd5a0f --- /dev/null +++ b/dist/md/ic_exposure_zero.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_exposure_zero = void 0; +var ic_exposure_zero = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0zm0 0h24v24H0zm0 0h24v24H0zm0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16.14 12.5c0 1-.1 1.85-.3 2.55-.2.7-.48 1.27-.83 1.7-.36.44-.79.75-1.3.95-.51.2-1.07.3-1.7.3-.62 0-1.18-.1-1.69-.3-.51-.2-.95-.51-1.31-.95-.36-.44-.65-1.01-.85-1.7-.2-.7-.3-1.55-.3-2.55v-2.04c0-1 .1-1.85.3-2.55.2-.7.48-1.26.84-1.69.36-.43.8-.74 1.31-.93C10.81 5.1 11.38 5 12 5c.63 0 1.19.1 1.7.29.51.19.95.5 1.31.93.36.43.64.99.84 1.69.2.7.3 1.54.3 2.55v2.04zm-2.11-2.36c0-.64-.05-1.18-.13-1.62-.09-.44-.22-.79-.4-1.06-.17-.27-.39-.46-.64-.58-.25-.13-.54-.19-.86-.19-.32 0-.61.06-.86.18s-.47.31-.64.58c-.17.27-.31.62-.4 1.06s-.13.98-.13 1.62v2.67c0 .64.05 1.18.14 1.62.09.45.23.81.4 1.09s.39.48.64.61.54.19.87.19c.33 0 .62-.06.87-.19s.46-.33.63-.61c.17-.28.3-.64.39-1.09.09-.45.13-.99.13-1.62v-2.66z" + }, + "children": [] + }] +}; +exports.ic_exposure_zero = ic_exposure_zero; \ No newline at end of file diff --git a/dist/md/ic_exposure_zero_outline.js b/dist/md/ic_exposure_zero_outline.js new file mode 100644 index 000000000..c805171b5 --- /dev/null +++ b/dist/md/ic_exposure_zero_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_exposure_zero_outline = void 0; +var ic_exposure_zero_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16.14 12.5c0 1-.1 1.85-.3 2.55s-.48 1.27-.83 1.7c-.36.44-.79.75-1.3.95s-1.07.3-1.7.3c-.62 0-1.18-.1-1.69-.3-.51-.2-.95-.51-1.31-.95s-.65-1.01-.85-1.7c-.2-.7-.3-1.55-.3-2.55v-2.04c0-1 .1-1.85.3-2.55.2-.7.48-1.26.84-1.69.36-.43.8-.74 1.31-.93C10.81 5.1 11.38 5 12 5c.63 0 1.19.1 1.7.29.51.19.95.5 1.31.93.36.43.64.99.84 1.69.2.7.3 1.54.3 2.55v2.04h-.01zm-2.11-2.36c0-.64-.05-1.18-.13-1.62-.09-.44-.22-.79-.4-1.06-.17-.27-.39-.46-.64-.58-.25-.13-.54-.19-.86-.19s-.61.06-.86.18-.47.31-.64.58-.31.62-.4 1.06-.13.98-.13 1.62v2.67c0 .64.05 1.18.14 1.62.09.45.23.81.4 1.09s.39.48.64.61.54.19.87.19.62-.06.87-.19.46-.33.63-.61.3-.64.39-1.09.13-.99.13-1.62v-2.66h-.01z" + }, + "children": [] + }] +}; +exports.ic_exposure_zero_outline = ic_exposure_zero_outline; \ No newline at end of file diff --git a/dist/md/ic_exposure_zero_twotone.js b/dist/md/ic_exposure_zero_twotone.js new file mode 100644 index 000000000..2bc95c57e --- /dev/null +++ b/dist/md/ic_exposure_zero_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_exposure_zero_twotone = void 0; +var ic_exposure_zero_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.01 6.22c-.36-.43-.8-.74-1.31-.93S12.63 5 12 5c-.62 0-1.19.1-1.69.29-.51.19-.95.5-1.31.93s-.64.99-.84 1.69c-.2.7-.3 1.55-.3 2.55v2.04c0 1 .1 1.85.3 2.55.2.69.49 1.26.85 1.7s.8.75 1.31.95c.51.2 1.07.3 1.69.3.63 0 1.19-.1 1.7-.3.51-.2.94-.51 1.3-.95.35-.43.63-1 .83-1.7.2-.7.3-1.55.3-2.55h.01v-2.04c0-1.01-.1-1.85-.3-2.55-.2-.7-.48-1.26-.84-1.69zm-.97 6.58c0 .63-.04 1.17-.13 1.62-.09.45-.22.81-.39 1.09s-.38.48-.63.61-.54.19-.87.19c-.33 0-.62-.06-.87-.19s-.47-.33-.64-.61c-.17-.28-.31-.64-.4-1.09-.09-.44-.14-.98-.14-1.62v-2.67c0-.64.04-1.18.13-1.62.09-.44.23-.79.4-1.06s.39-.46.64-.58.54-.18.86-.18.61.06.86.19c.25.12.47.31.64.58.18.27.31.62.4 1.06.08.44.13.98.13 1.62h.01v2.66z" + }, + "children": [] + }] +}; +exports.ic_exposure_zero_twotone = ic_exposure_zero_twotone; \ No newline at end of file diff --git a/dist/md/ic_extension.js b/dist/md/ic_extension.js new file mode 100644 index 000000000..54a886cf7 --- /dev/null +++ b/dist/md/ic_extension.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_extension = void 0; +var ic_extension = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20.5 11H19V7c0-1.1-.9-2-2-2h-4V3.5C13 2.12 11.88 1 10.5 1S8 2.12 8 3.5V5H4c-1.1 0-1.99.9-1.99 2v3.8H3.5c1.49 0 2.7 1.21 2.7 2.7s-1.21 2.7-2.7 2.7H2V20c0 1.1.9 2 2 2h3.8v-1.5c0-1.49 1.21-2.7 2.7-2.7 1.49 0 2.7 1.21 2.7 2.7V22H17c1.1 0 2-.9 2-2v-4h1.5c1.38 0 2.5-1.12 2.5-2.5S21.88 11 20.5 11z" + }, + "children": [] + }] +}; +exports.ic_extension = ic_extension; \ No newline at end of file diff --git a/dist/md/ic_extension_outline.js b/dist/md/ic_extension_outline.js new file mode 100644 index 000000000..61a21ff20 --- /dev/null +++ b/dist/md/ic_extension_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_extension_outline = void 0; +var ic_extension_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10.5 4.5c.28 0 .5.22.5.5v2h6v6h2c.28 0 .5.22.5.5s-.22.5-.5.5h-2v6h-2.12c-.68-1.75-2.39-3-4.38-3s-3.7 1.25-4.38 3H4v-2.12c1.75-.68 3-2.39 3-4.38 0-1.99-1.24-3.7-2.99-4.38L4 7h6V5c0-.28.22-.5.5-.5m0-2C9.12 2.5 8 3.62 8 5H4c-1.1 0-1.99.9-1.99 2v3.8h.29c1.49 0 2.7 1.21 2.7 2.7s-1.21 2.7-2.7 2.7H2V20c0 1.1.9 2 2 2h3.8v-.3c0-1.49 1.21-2.7 2.7-2.7s2.7 1.21 2.7 2.7v.3H17c1.1 0 2-.9 2-2v-4c1.38 0 2.5-1.12 2.5-2.5S20.38 11 19 11V7c0-1.1-.9-2-2-2h-4c0-1.38-1.12-2.5-2.5-2.5z" + }, + "children": [] + }] +}; +exports.ic_extension_outline = ic_extension_outline; \ No newline at end of file diff --git a/dist/md/ic_extension_twotone.js b/dist/md/ic_extension_twotone.js new file mode 100644 index 000000000..1f99564b3 --- /dev/null +++ b/dist/md/ic_extension_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_extension_twotone = void 0; +var ic_extension_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 13h-2V7h-6V5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v2H4l.01 2.12C5.76 9.8 7 11.51 7 13.5c0 1.99-1.25 3.7-3 4.38V20h2.12c.68-1.75 2.39-3 4.38-3 1.99 0 3.7 1.25 4.38 3H17v-6h2c.28 0 .5-.22.5-.5s-.22-.5-.5-.5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 11V7c0-1.1-.9-2-2-2h-4c0-1.38-1.12-2.5-2.5-2.5S8 3.62 8 5H4c-1.1 0-1.99.9-1.99 2v3.8h.29c1.49 0 2.7 1.21 2.7 2.7s-1.21 2.7-2.7 2.7H2V20c0 1.1.9 2 2 2h3.8v-.3c0-1.49 1.21-2.7 2.7-2.7s2.7 1.21 2.7 2.7v.3H17c1.1 0 2-.9 2-2v-4c1.38 0 2.5-1.12 2.5-2.5S20.38 11 19 11zm0 3h-2v6h-2.12c-.68-1.75-2.39-3-4.38-3-1.99 0-3.7 1.25-4.38 3H4v-2.12c1.75-.68 3-2.39 3-4.38 0-1.99-1.24-3.7-2.99-4.38L4 7h6V5c0-.28.22-.5.5-.5s.5.22.5.5v2h6v6h2c.28 0 .5.22.5.5s-.22.5-.5.5z" + }, + "children": [] + }] +}; +exports.ic_extension_twotone = ic_extension_twotone; \ No newline at end of file diff --git a/dist/md/ic_face.js b/dist/md/ic_face.js new file mode 100644 index 000000000..3d664a918 --- /dev/null +++ b/dist/md/ic_face.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_face = void 0; +var ic_face = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 11.75c-.69 0-1.25.56-1.25 1.25s.56 1.25 1.25 1.25 1.25-.56 1.25-1.25-.56-1.25-1.25-1.25zm6 0c-.69 0-1.25.56-1.25 1.25s.56 1.25 1.25 1.25 1.25-.56 1.25-1.25-.56-1.25-1.25-1.25zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8 0-.29.02-.58.05-.86 2.36-1.05 4.23-2.98 5.21-5.37C11.07 8.33 14.05 10 17.42 10c.78 0 1.53-.09 2.25-.26.21.71.33 1.47.33 2.26 0 4.41-3.59 8-8 8z" + }, + "children": [] + }] +}; +exports.ic_face = ic_face; \ No newline at end of file diff --git a/dist/md/ic_face_outline.js b/dist/md/ic_face_outline.js new file mode 100644 index 000000000..d9d31ebe8 --- /dev/null +++ b/dist/md/ic_face_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_face_outline = void 0; +var ic_face_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10.25 13c0 .69-.56 1.25-1.25 1.25S7.75 13.69 7.75 13s.56-1.25 1.25-1.25 1.25.56 1.25 1.25zM15 11.75c-.69 0-1.25.56-1.25 1.25s.56 1.25 1.25 1.25 1.25-.56 1.25-1.25-.56-1.25-1.25-1.25zm7 .25c0 5.52-4.48 10-10 10S2 17.52 2 12 6.48 2 12 2s10 4.48 10 10zM10.66 4.12C12.06 6.44 14.6 8 17.5 8c.46 0 .91-.05 1.34-.12C17.44 5.56 14.9 4 12 4c-.46 0-.91.05-1.34.12zM4.42 9.47c1.71-.97 3.03-2.55 3.66-4.44C6.37 6 5.05 7.58 4.42 9.47zM20 12c0-.78-.12-1.53-.33-2.24-.7.15-1.42.24-2.17.24-3.13 0-5.92-1.44-7.76-3.69C8.69 8.87 6.6 10.88 4 11.86c.01.04 0 .09 0 .14 0 4.41 3.59 8 8 8s8-3.59 8-8z" + }, + "children": [] + }] +}; +exports.ic_face_outline = ic_face_outline; \ No newline at end of file diff --git a/dist/md/ic_face_retouching_natural.js b/dist/md/ic_face_retouching_natural.js new file mode 100644 index 000000000..7e0a2e6c1 --- /dev/null +++ b/dist/md/ic_face_retouching_natural.js @@ -0,0 +1,46 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_face_retouching_natural = void 0; +var ic_face_retouching_natural = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "9", + "cy": "13", + "r": "1.25" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20.77 8.58l-.92 2.01c.09.46.15.93.15 1.41 0 4.41-3.59 8-8 8s-8-3.59-8-8c0-.05.01-.1 0-.14 2.6-.98 4.69-2.99 5.74-5.55C11.58 8.56 14.37 10 17.5 10c.45 0 .89-.04 1.33-.1l-.6-1.32-.88-1.93-1.93-.88-2.79-1.27 2.79-1.27.71-.32C14.87 2.33 13.47 2 12 2 6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10c0-1.47-.33-2.87-.9-4.13l-.33.71z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "15", + "cy": "13", + "r": "1.25" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20.6 5.6L19.5 8l-1.1-2.4L16 4.5l2.4-1.1L19.5 1l1.1 2.4L23 4.5z" + }, + "children": [] + }] +}; +exports.ic_face_retouching_natural = ic_face_retouching_natural; \ No newline at end of file diff --git a/dist/md/ic_face_twotone.js b/dist/md/ic_face_twotone.js new file mode 100644 index 000000000..799202205 --- /dev/null +++ b/dist/md/ic_face_twotone.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_face_twotone = void 0; +var ic_face_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17.5 8c.46 0 .91-.05 1.34-.12C17.44 5.56 14.9 4 12 4c-.46 0-.91.05-1.34.12C12.06 6.44 14.6 8 17.5 8zM8.08 5.03C6.37 6 5.05 7.58 4.42 9.47c1.71-.97 3.03-2.55 3.66-4.44z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 2c2.9 0 5.44 1.56 6.84 3.88-.43.07-.88.12-1.34.12-2.9 0-5.44-1.56-6.84-3.88.43-.07.88-.12 1.34-.12zM8.08 5.03C7.45 6.92 6.13 8.5 4.42 9.47 5.05 7.58 6.37 6 8.08 5.03zM12 20c-4.41 0-8-3.59-8-8 0-.05.01-.1.01-.15 2.6-.98 4.68-2.99 5.74-5.55 1.83 2.26 4.62 3.7 7.75 3.7.75 0 1.47-.09 2.17-.24.21.71.33 1.46.33 2.24 0 4.41-3.59 8-8 8z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "9", + "cy": "13", + "r": "1.25" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "15", + "cy": "13", + "r": "1.25" + }, + "children": [] + }] +}; +exports.ic_face_twotone = ic_face_twotone; \ No newline at end of file diff --git a/dist/md/ic_face_unlock_outline.js b/dist/md/ic_face_unlock_outline.js new file mode 100644 index 000000000..16f2e0137 --- /dev/null +++ b/dist/md/ic_face_unlock_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_face_unlock_outline = void 0; +var ic_face_unlock_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10.25 13c0 .69-.56 1.25-1.25 1.25S7.75 13.69 7.75 13s.56-1.25 1.25-1.25 1.25.56 1.25 1.25zM15 11.75c-.69 0-1.25.56-1.25 1.25s.56 1.25 1.25 1.25 1.25-.56 1.25-1.25-.56-1.25-1.25-1.25zm7 .25c0 5.52-4.48 10-10 10S2 17.52 2 12 6.48 2 12 2s10 4.48 10 10zM10.66 4.12C12.06 6.44 14.6 8 17.5 8c.46 0 .91-.05 1.34-.12C17.44 5.56 14.9 4 12 4c-.46 0-.91.05-1.34.12zM4.42 9.47c1.71-.97 3.03-2.55 3.66-4.44C6.37 6 5.05 7.58 4.42 9.47zM20 12c0-.78-.12-1.53-.33-2.24-.7.15-1.42.24-2.17.24-3.13 0-5.92-1.44-7.76-3.69C8.69 8.87 6.6 10.88 4 11.86c.01.04 0 .09 0 .14 0 4.41 3.59 8 8 8s8-3.59 8-8z" + }, + "children": [] + }] +}; +exports.ic_face_unlock_outline = ic_face_unlock_outline; \ No newline at end of file diff --git a/dist/md/ic_face_unlock_twotone.js b/dist/md/ic_face_unlock_twotone.js new file mode 100644 index 000000000..746ff5349 --- /dev/null +++ b/dist/md/ic_face_unlock_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_face_unlock_twotone = void 0; +var ic_face_unlock_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10.25 13c0 .69-.56 1.25-1.25 1.25S7.75 13.69 7.75 13s.56-1.25 1.25-1.25 1.25.56 1.25 1.25zM15 11.75c-.69 0-1.25.56-1.25 1.25s.56 1.25 1.25 1.25 1.25-.56 1.25-1.25-.56-1.25-1.25-1.25zm7 .25c0 5.52-4.48 10-10 10S2 17.52 2 12 6.48 2 12 2s10 4.48 10 10zM10.66 4.12C12.06 6.44 14.6 8 17.5 8c.46 0 .91-.05 1.34-.12C17.44 5.56 14.9 4 12 4c-.46 0-.91.05-1.34.12zM4.42 9.47c1.71-.97 3.03-2.55 3.66-4.44C6.37 6 5.05 7.58 4.42 9.47zM20 12c0-.78-.12-1.53-.33-2.24-.7.15-1.42.24-2.17.24-3.13 0-5.92-1.44-7.76-3.69C8.69 8.87 6.6 10.88 4 11.86c.01.04 0 .09 0 .14 0 4.41 3.59 8 8 8s8-3.59 8-8z" + }, + "children": [] + }] +}; +exports.ic_face_unlock_twotone = ic_face_unlock_twotone; \ No newline at end of file diff --git a/dist/md/ic_facebook.js b/dist/md/ic_facebook.js new file mode 100644 index 000000000..fc8778e61 --- /dev/null +++ b/dist/md/ic_facebook.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_facebook = void 0; +var ic_facebook = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22,12c0-5.52-4.48-10-10-10S2,6.48,2,12c0,4.84,3.44,8.87,8,9.8V15H8v-3h2V9.5C10,7.57,11.57,6,13.5,6H16v3h-2 c-0.55,0-1,0.45-1,1v2h3v3h-3v6.95C18.05,21.45,22,17.19,22,12z" + }, + "children": [] + }] +}; +exports.ic_facebook = ic_facebook; \ No newline at end of file diff --git a/dist/md/ic_facebook_outline.js b/dist/md/ic_facebook_outline.js new file mode 100644 index 000000000..d477fdacc --- /dev/null +++ b/dist/md/ic_facebook_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_facebook_outline = void 0; +var ic_facebook_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22,12c0-5.52-4.48-10-10-10S2,6.48,2,12c0,4.84,3.44,8.87,8,9.8V15H8v-3h2V9.5C10,7.57,11.57,6,13.5,6H16v3h-2 c-0.55,0-1,0.45-1,1v2h3v3h-3v6.95C18.05,21.45,22,17.19,22,12z" + }, + "children": [] + }] +}; +exports.ic_facebook_outline = ic_facebook_outline; \ No newline at end of file diff --git a/dist/md/ic_facebook_twotone.js b/dist/md/ic_facebook_twotone.js new file mode 100644 index 000000000..32ff08b0e --- /dev/null +++ b/dist/md/ic_facebook_twotone.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_facebook_twotone = void 0; +var ic_facebook_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22,12c0-5.52-4.48-10-10-10S2,6.48,2,12c0,4.84,3.44,8.87,8,9.8V15H8v-3h2V9.5C10,7.57,11.57,6,13.5,6H16v3h-2 c-0.55,0-1,0.45-1,1v2h3v3h-3v6.95C18.05,21.45,22,17.19,22,12z" + }, + "children": [] + }] +}; +exports.ic_facebook_twotone = ic_facebook_twotone; \ No newline at end of file diff --git a/dist/md/ic_fact_check.js b/dist/md/ic_fact_check.js new file mode 100644 index 000000000..a6e0096a6 --- /dev/null +++ b/dist/md/ic_fact_check.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_fact_check = void 0; +var ic_fact_check = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,3H4C2.9,3,2,3.9,2,5v14c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V5 C22,3.9,21.1,3,20,3z M10,17H5v-2h5V17z M10,13H5v-2h5V13z M10,9H5V7h5V9z M14.82,15L12,12.16l1.41-1.41l1.41,1.42L17.99,9 l1.42,1.42L14.82,15z", + "fill-rule": "evenodd" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,3H4C2.9,3,2,3.9,2,5v14c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V5 C22,3.9,21.1,3,20,3z M10,17H5v-2h5V17z M10,13H5v-2h5V13z M10,9H5V7h5V9z M14.82,15L12,12.16l1.41-1.41l1.41,1.42L17.99,9 l1.42,1.42L14.82,15z", + "fill-rule": "evenodd" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_fact_check = ic_fact_check; \ No newline at end of file diff --git a/dist/md/ic_fact_check_outline.js b/dist/md/ic_fact_check_outline.js new file mode 100644 index 000000000..b90d33c8a --- /dev/null +++ b/dist/md/ic_fact_check_outline.js @@ -0,0 +1,131 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_fact_check_outline = void 0; +var ic_fact_check_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,3H4C2.9,3,2,3.9,2,5v14c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V5 C22,3.9,21.1,3,20,3z M20,19H4V5h16V19z", + "fill-rule": "evenodd" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,3H4C2.9,3,2,3.9,2,5v14c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V5 C22,3.9,21.1,3,20,3z M20,19H4V5h16V19z", + "fill-rule": "evenodd" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "points": "19.41,10.42 17.99,9 14.82,12.17 13.41,10.75 12,12.16 14.82,15" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "points": "19.41,10.42 17.99,9 14.82,12.17 13.41,10.75 12,12.16 14.82,15" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "fill-rule": "evenodd", + "height": "2", + "width": "5", + "x": "5", + "y": "7" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill-rule": "evenodd", + "height": "2", + "width": "5", + "x": "5", + "y": "7" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "fill-rule": "evenodd", + "height": "2", + "width": "5", + "x": "5", + "y": "11" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill-rule": "evenodd", + "height": "2", + "width": "5", + "x": "5", + "y": "11" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "fill-rule": "evenodd", + "height": "2", + "width": "5", + "x": "5", + "y": "15" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill-rule": "evenodd", + "height": "2", + "width": "5", + "x": "5", + "y": "15" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_fact_check_outline = ic_fact_check_outline; \ No newline at end of file diff --git a/dist/md/ic_fact_check_twotone.js b/dist/md/ic_fact_check_twotone.js new file mode 100644 index 000000000..06a66d86e --- /dev/null +++ b/dist/md/ic_fact_check_twotone.js @@ -0,0 +1,135 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_fact_check_twotone = void 0; +var ic_fact_check_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M4,19h16V5H4V19z M13.41,10.75l1.41,1.42L17.99,9l1.42,1.42L14.82,15L12,12.16L13.41,10.75z M5,7h5v2H5V7z M5,11h5v2H5V11z M5,15h5v2H5V15z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M4,19h16V5H4V19z M13.41,10.75l1.41,1.42L17.99,9l1.42,1.42L14.82,15L12,12.16L13.41,10.75z M5,7h5v2H5V7z M5,11h5v2H5V11z M5,15h5v2H5V15z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20,3H4C2.9,3,2,3.9,2,5v14c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V5C22,3.9,21.1,3,20,3z M20,19H4V5h16V19z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,3H4C2.9,3,2,3.9,2,5v14c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V5C22,3.9,21.1,3,20,3z M20,19H4V5h16V19z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "19.41,10.42 17.99,9 14.82,12.17 13.41,10.75 12,12.16 14.82,15" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "19.41,10.42 17.99,9 14.82,12.17 13.41,10.75 12,12.16 14.82,15" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "5", + "x": "5", + "y": "7" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "5", + "x": "5", + "y": "7" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "5", + "x": "5", + "y": "11" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "5", + "x": "5", + "y": "11" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "5", + "x": "5", + "y": "15" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "5", + "x": "5", + "y": "15" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_fact_check_twotone = ic_fact_check_twotone; \ No newline at end of file diff --git a/dist/md/ic_family_restroom.js b/dist/md/ic_family_restroom.js new file mode 100644 index 000000000..b6e66dc6f --- /dev/null +++ b/dist/md/ic_family_restroom.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_family_restroom = void 0; +var ic_family_restroom = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M16,4c0-1.11,0.89-2,2-2s2,0.89,2,2s-0.89,2-2,2S16,5.11,16,4z M20,22v-6h2.5l-2.54-7.63C19.68,7.55,18.92,7,18.06,7h-0.12 c-0.86,0-1.63,0.55-1.9,1.37l-0.86,2.58C16.26,11.55,17,12.68,17,14v8H20z M12.5,11.5c0.83,0,1.5-0.67,1.5-1.5s-0.67-1.5-1.5-1.5 S11,9.17,11,10S11.67,11.5,12.5,11.5z M5.5,6c1.11,0,2-0.89,2-2s-0.89-2-2-2s-2,0.89-2,2S4.39,6,5.5,6z M7.5,22v-7H9V9 c0-1.1-0.9-2-2-2H4C2.9,7,2,7.9,2,9v6h1.5v7H7.5z M14,22v-4h1v-4c0-0.82-0.68-1.5-1.5-1.5h-2c-0.82,0-1.5,0.68-1.5,1.5v4h1v4H14z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M16,4c0-1.11,0.89-2,2-2s2,0.89,2,2s-0.89,2-2,2S16,5.11,16,4z M20,22v-6h2.5l-2.54-7.63C19.68,7.55,18.92,7,18.06,7h-0.12 c-0.86,0-1.63,0.55-1.9,1.37l-0.86,2.58C16.26,11.55,17,12.68,17,14v8H20z M12.5,11.5c0.83,0,1.5-0.67,1.5-1.5s-0.67-1.5-1.5-1.5 S11,9.17,11,10S11.67,11.5,12.5,11.5z M5.5,6c1.11,0,2-0.89,2-2s-0.89-2-2-2s-2,0.89-2,2S4.39,6,5.5,6z M7.5,22v-7H9V9 c0-1.1-0.9-2-2-2H4C2.9,7,2,7.9,2,9v6h1.5v7H7.5z M14,22v-4h1v-4c0-0.82-0.68-1.5-1.5-1.5h-2c-0.82,0-1.5,0.68-1.5,1.5v4h1v4H14z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_family_restroom = ic_family_restroom; \ No newline at end of file diff --git a/dist/md/ic_family_restroom_outline.js b/dist/md/ic_family_restroom_outline.js new file mode 100644 index 000000000..253435428 --- /dev/null +++ b/dist/md/ic_family_restroom_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_family_restroom_outline = void 0; +var ic_family_restroom_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M16,4c0-1.11,0.89-2,2-2s2,0.89,2,2s-0.89,2-2,2S16,5.11,16,4z M20,22v-6h2.5l-2.54-7.63C19.68,7.55,18.92,7,18.06,7h-0.12 c-0.86,0-1.63,0.55-1.9,1.37l-0.86,2.58C16.26,11.55,17,12.68,17,14v8H20z M12.5,11.5c0.83,0,1.5-0.67,1.5-1.5s-0.67-1.5-1.5-1.5 S11,9.17,11,10S11.67,11.5,12.5,11.5z M5.5,6c1.11,0,2-0.89,2-2s-0.89-2-2-2s-2,0.89-2,2S4.39,6,5.5,6z M7.5,22v-7H9V9 c0-1.1-0.9-2-2-2H4C2.9,7,2,7.9,2,9v6h1.5v7H7.5z M14,22v-4h1v-4c0-0.82-0.68-1.5-1.5-1.5h-2c-0.82,0-1.5,0.68-1.5,1.5v4h1v4H14z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M16,4c0-1.11,0.89-2,2-2s2,0.89,2,2s-0.89,2-2,2S16,5.11,16,4z M20,22v-6h2.5l-2.54-7.63C19.68,7.55,18.92,7,18.06,7h-0.12 c-0.86,0-1.63,0.55-1.9,1.37l-0.86,2.58C16.26,11.55,17,12.68,17,14v8H20z M12.5,11.5c0.83,0,1.5-0.67,1.5-1.5s-0.67-1.5-1.5-1.5 S11,9.17,11,10S11.67,11.5,12.5,11.5z M5.5,6c1.11,0,2-0.89,2-2s-0.89-2-2-2s-2,0.89-2,2S4.39,6,5.5,6z M7.5,22v-7H9V9 c0-1.1-0.9-2-2-2H4C2.9,7,2,7.9,2,9v6h1.5v7H7.5z M14,22v-4h1v-4c0-0.82-0.68-1.5-1.5-1.5h-2c-0.82,0-1.5,0.68-1.5,1.5v4h1v4H14z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_family_restroom_outline = ic_family_restroom_outline; \ No newline at end of file diff --git a/dist/md/ic_family_restroom_twotone.js b/dist/md/ic_family_restroom_twotone.js new file mode 100644 index 000000000..77a6aaf41 --- /dev/null +++ b/dist/md/ic_family_restroom_twotone.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_family_restroom_twotone = void 0; +var ic_family_restroom_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M16,4c0-1.11,0.89-2,2-2s2,0.89,2,2s-0.89,2-2,2S16,5.11,16,4z M20,22v-6h2.5l-2.54-7.63C19.68,7.55,18.92,7,18.06,7h-0.12 c-0.86,0-1.63,0.55-1.9,1.37l-0.86,2.58C16.26,11.55,17,12.68,17,14v8H20z M12.5,11.5c0.83,0,1.5-0.67,1.5-1.5s-0.67-1.5-1.5-1.5 S11,9.17,11,10S11.67,11.5,12.5,11.5z M5.5,6c1.11,0,2-0.89,2-2s-0.89-2-2-2s-2,0.89-2,2S4.39,6,5.5,6z M7.5,22v-7H9V9 c0-1.1-0.9-2-2-2H4C2.9,7,2,7.9,2,9v6h1.5v7H7.5z M14,22v-4h1v-4c0-0.82-0.68-1.5-1.5-1.5h-2c-0.82,0-1.5,0.68-1.5,1.5v4h1v4H14z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M16,4c0-1.11,0.89-2,2-2s2,0.89,2,2s-0.89,2-2,2S16,5.11,16,4z M20,22v-6h2.5l-2.54-7.63C19.68,7.55,18.92,7,18.06,7h-0.12 c-0.86,0-1.63,0.55-1.9,1.37l-0.86,2.58C16.26,11.55,17,12.68,17,14v8H20z M12.5,11.5c0.83,0,1.5-0.67,1.5-1.5s-0.67-1.5-1.5-1.5 S11,9.17,11,10S11.67,11.5,12.5,11.5z M5.5,6c1.11,0,2-0.89,2-2s-0.89-2-2-2s-2,0.89-2,2S4.39,6,5.5,6z M7.5,22v-7H9V9 c0-1.1-0.9-2-2-2H4C2.9,7,2,7.9,2,9v6h1.5v7H7.5z M14,22v-4h1v-4c0-0.82-0.68-1.5-1.5-1.5h-2c-0.82,0-1.5,0.68-1.5,1.5v4h1v4H14z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_family_restroom_twotone = ic_family_restroom_twotone; \ No newline at end of file diff --git a/dist/md/ic_fast_forward.js b/dist/md/ic_fast_forward.js new file mode 100644 index 000000000..8f0854494 --- /dev/null +++ b/dist/md/ic_fast_forward.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_fast_forward = void 0; +var ic_fast_forward = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 18l8.5-6L4 6v12zm9-12v12l8.5-6L13 6z" + }, + "children": [] + }] +}; +exports.ic_fast_forward = ic_fast_forward; \ No newline at end of file diff --git a/dist/md/ic_fast_forward_outline.js b/dist/md/ic_fast_forward_outline.js new file mode 100644 index 000000000..4c16fbe8c --- /dev/null +++ b/dist/md/ic_fast_forward_outline.js @@ -0,0 +1,87 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_fast_forward_outline = void 0; +var ic_fast_forward_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M15,9.86L18.03,12L15,14.14V9.86 M6,9.86L9.03,12L6,14.14V9.86 M13,6v12l8.5-6L13,6L13,6z M4,6v12l8.5-6L4,6L4,6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15,9.86L18.03,12L15,14.14V9.86 M6,9.86L9.03,12L6,14.14V9.86 M13,6v12l8.5-6L13,6L13,6z M4,6v12l8.5-6L4,6L4,6z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_fast_forward_outline = ic_fast_forward_outline; \ No newline at end of file diff --git a/dist/md/ic_fast_forward_twotone.js b/dist/md/ic_fast_forward_twotone.js new file mode 100644 index 000000000..a9d417fa1 --- /dev/null +++ b/dist/md/ic_fast_forward_twotone.js @@ -0,0 +1,135 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_fast_forward_twotone = void 0; +var ic_fast_forward_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "opacity": ".3", + "points": "15,9.86 15,14.14 18.03,12" + }, + "children": [{ + "name": "polygon", + "attribs": { + "opacity": ".3", + "points": "15,9.86 15,14.14 18.03,12" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "opacity": ".3", + "points": "6,9.86 6,14.14 9.03,12" + }, + "children": [{ + "name": "polygon", + "attribs": { + "opacity": ".3", + "points": "6,9.86 6,14.14 9.03,12" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M4,18l8.5-6L4,6V18z M6,9.86L9.03,12L6,14.14V9.86z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M4,18l8.5-6L4,6V18z M6,9.86L9.03,12L6,14.14V9.86z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M21.5,12L13,6v12L21.5,12z M15,9.86L18.03,12L15,14.14V9.86z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21.5,12L13,6v12L21.5,12z M15,9.86L18.03,12L15,14.14V9.86z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_fast_forward_twotone = ic_fast_forward_twotone; \ No newline at end of file diff --git a/dist/md/ic_fast_rewind.js b/dist/md/ic_fast_rewind.js new file mode 100644 index 000000000..333243293 --- /dev/null +++ b/dist/md/ic_fast_rewind.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_fast_rewind = void 0; +var ic_fast_rewind = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 18V6l-8.5 6 8.5 6zm.5-6l8.5 6V6l-8.5 6z" + }, + "children": [] + }] +}; +exports.ic_fast_rewind = ic_fast_rewind; \ No newline at end of file diff --git a/dist/md/ic_fast_rewind_outline.js b/dist/md/ic_fast_rewind_outline.js new file mode 100644 index 000000000..4f13bfe5a --- /dev/null +++ b/dist/md/ic_fast_rewind_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_fast_rewind_outline = void 0; +var ic_fast_rewind_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 9.86v4.28L14.97 12 18 9.86m-9 0v4.28L5.97 12 9 9.86M20 6l-8.5 6 8.5 6V6zm-9 0l-8.5 6 8.5 6V6z" + }, + "children": [] + }] +}; +exports.ic_fast_rewind_outline = ic_fast_rewind_outline; \ No newline at end of file diff --git a/dist/md/ic_fast_rewind_twotone.js b/dist/md/ic_fast_rewind_twotone.js new file mode 100644 index 000000000..c2609f39b --- /dev/null +++ b/dist/md/ic_fast_rewind_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_fast_rewind_twotone = void 0; +var ic_fast_rewind_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 14.14V9.86L5.97 12zm9 0V9.86L14.97 12z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 6l-8.5 6 8.5 6V6zm-2 8.14L5.97 12 9 9.86v4.28zM20 6l-8.5 6 8.5 6V6zm-2 8.14L14.97 12 18 9.86v4.28z" + }, + "children": [] + }] +}; +exports.ic_fast_rewind_twotone = ic_fast_rewind_twotone; \ No newline at end of file diff --git a/dist/md/ic_fastfood.js b/dist/md/ic_fastfood.js new file mode 100644 index 000000000..4d9f58595 --- /dev/null +++ b/dist/md/ic_fastfood.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_fastfood = void 0; +var ic_fastfood = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18.06 22.99h1.66c.84 0 1.53-.64 1.63-1.46L23 5.05h-5V1h-1.97v4.05h-4.97l.3 2.34c1.71.47 3.31 1.32 4.27 2.26 1.44 1.42 2.43 2.89 2.43 5.29v8.05zM1 21.99V21h15.03v.99c0 .55-.45 1-1.01 1H2.01c-.56 0-1.01-.45-1.01-1zm15.03-7c0-8-15.03-8-15.03 0h15.03zM1.02 17h15v2h-15z" + }, + "children": [] + }] +}; +exports.ic_fastfood = ic_fastfood; \ No newline at end of file diff --git a/dist/md/ic_fastfood_outline.js b/dist/md/ic_fastfood_outline.js new file mode 100644 index 000000000..9135ec7a5 --- /dev/null +++ b/dist/md/ic_fastfood_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_fastfood_outline = void 0; +var ic_fastfood_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M1 21.98c0 .56.45 1.01 1.01 1.01H15c.56 0 1.01-.45 1.01-1.01V21H1v.98zM8.5 8.99C4.75 8.99 1 11 1 15h15c0-4-3.75-6.01-7.5-6.01zM3.62 13c1.11-1.55 3.47-2.01 4.88-2.01s3.77.46 4.88 2.01H3.62zM1 17h15v2H1zM18 5V1h-2v4h-5l.23 2h9.56l-1.4 14H18v2h1.72c.84 0 1.53-.65 1.63-1.47L23 5h-5z" + }, + "children": [] + }] +}; +exports.ic_fastfood_outline = ic_fastfood_outline; \ No newline at end of file diff --git a/dist/md/ic_fastfood_twotone.js b/dist/md/ic_fastfood_twotone.js new file mode 100644 index 000000000..b7ab643f1 --- /dev/null +++ b/dist/md/ic_fastfood_twotone.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_fastfood_twotone = void 0; +var ic_fastfood_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M1 21.98c0 .56.45 1.01 1.01 1.01H15c.56 0 1.01-.45 1.01-1.01V21H1v.98z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8.5 10.99c-1.42 0-3.77.46-4.88 2.01h9.77c-1.12-1.55-3.47-2.01-4.89-2.01z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8.5 8.99C4.75 8.99 1 11 1 15h15c0-4-3.75-6.01-7.5-6.01zM3.62 13c1.11-1.55 3.47-2.01 4.88-2.01s3.77.46 4.88 2.01H3.62zM1 17h15v2H1zM18 5V1h-2v4h-5l.23 2h9.56l-1.4 14H18v2h1.72c.84 0 1.53-.65 1.63-1.47L23 5h-5z" + }, + "children": [] + }] +}; +exports.ic_fastfood_twotone = ic_fastfood_twotone; \ No newline at end of file diff --git a/dist/md/ic_favorite.js b/dist/md/ic_favorite.js new file mode 100644 index 000000000..77f7bb93c --- /dev/null +++ b/dist/md/ic_favorite.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_favorite = void 0; +var ic_favorite = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z" + }, + "children": [] + }] +}; +exports.ic_favorite = ic_favorite; \ No newline at end of file diff --git a/dist/md/ic_favorite_border.js b/dist/md/ic_favorite_border.js new file mode 100644 index 000000000..6b4137f9e --- /dev/null +++ b/dist/md/ic_favorite_border.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_favorite_border = void 0; +var ic_favorite_border = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16.5 3c-1.74 0-3.41.81-4.5 2.09C10.91 3.81 9.24 3 7.5 3 4.42 3 2 5.42 2 8.5c0 3.78 3.4 6.86 8.55 11.54L12 21.35l1.45-1.32C18.6 15.36 22 12.28 22 8.5 22 5.42 19.58 3 16.5 3zm-4.4 15.55l-.1.1-.1-.1C7.14 14.24 4 11.39 4 8.5 4 6.5 5.5 5 7.5 5c1.54 0 3.04.99 3.57 2.36h1.87C13.46 5.99 14.96 5 16.5 5c2 0 3.5 1.5 3.5 3.5 0 2.89-3.14 5.74-7.9 10.05z" + }, + "children": [] + }] +}; +exports.ic_favorite_border = ic_favorite_border; \ No newline at end of file diff --git a/dist/md/ic_favorite_border_outline.js b/dist/md/ic_favorite_border_outline.js new file mode 100644 index 000000000..73c671b6e --- /dev/null +++ b/dist/md/ic_favorite_border_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_favorite_border_outline = void 0; +var ic_favorite_border_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16.5 3c-1.74 0-3.41.81-4.5 2.09C10.91 3.81 9.24 3 7.5 3 4.42 3 2 5.42 2 8.5c0 3.78 3.4 6.86 8.55 11.54L12 21.35l1.45-1.32C18.6 15.36 22 12.28 22 8.5 22 5.42 19.58 3 16.5 3zm-4.4 15.55l-.1.1-.1-.1C7.14 14.24 4 11.39 4 8.5 4 6.5 5.5 5 7.5 5c1.54 0 3.04.99 3.57 2.36h1.87C13.46 5.99 14.96 5 16.5 5c2 0 3.5 1.5 3.5 3.5 0 2.89-3.14 5.74-7.9 10.05z" + }, + "children": [] + }] +}; +exports.ic_favorite_border_outline = ic_favorite_border_outline; \ No newline at end of file diff --git a/dist/md/ic_favorite_border_twotone.js b/dist/md/ic_favorite_border_twotone.js new file mode 100644 index 000000000..591eb2a9c --- /dev/null +++ b/dist/md/ic_favorite_border_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_favorite_border_twotone = void 0; +var ic_favorite_border_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16.5 3c-1.74 0-3.41.81-4.5 2.09C10.91 3.81 9.24 3 7.5 3 4.42 3 2 5.42 2 8.5c0 3.78 3.4 6.86 8.55 11.54L12 21.35l1.45-1.32C18.6 15.36 22 12.28 22 8.5 22 5.42 19.58 3 16.5 3zm-4.4 15.55l-.1.1-.1-.1C7.14 14.24 4 11.39 4 8.5 4 6.5 5.5 5 7.5 5c1.54 0 3.04.99 3.57 2.36h1.87C13.46 5.99 14.96 5 16.5 5c2 0 3.5 1.5 3.5 3.5 0 2.89-3.14 5.74-7.9 10.05z" + }, + "children": [] + }] +}; +exports.ic_favorite_border_twotone = ic_favorite_border_twotone; \ No newline at end of file diff --git a/dist/md/ic_favorite_outline.js b/dist/md/ic_favorite_outline.js new file mode 100644 index 000000000..75a98e30d --- /dev/null +++ b/dist/md/ic_favorite_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_favorite_outline = void 0; +var ic_favorite_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z" + }, + "children": [] + }] +}; +exports.ic_favorite_outline = ic_favorite_outline; \ No newline at end of file diff --git a/dist/md/ic_favorite_twotone.js b/dist/md/ic_favorite_twotone.js new file mode 100644 index 000000000..3d6788b97 --- /dev/null +++ b/dist/md/ic_favorite_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_favorite_twotone = void 0; +var ic_favorite_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16.5 5c-1.54 0-3.04.99-3.56 2.36h-1.87C10.54 5.99 9.04 5 7.5 5 5.5 5 4 6.5 4 8.5c0 2.89 3.14 5.74 7.9 10.05l.1.1.1-.1C16.86 14.24 20 11.39 20 8.5c0-2-1.5-3.5-3.5-3.5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16.5 3c-1.74 0-3.41.81-4.5 2.09C10.91 3.81 9.24 3 7.5 3 4.42 3 2 5.42 2 8.5c0 3.78 3.4 6.86 8.55 11.54L12 21.35l1.45-1.32C18.6 15.36 22 12.28 22 8.5 22 5.42 19.58 3 16.5 3zm-4.4 15.55l-.1.1-.1-.1C7.14 14.24 4 11.39 4 8.5 4 6.5 5.5 5 7.5 5c1.54 0 3.04.99 3.57 2.36h1.87C13.46 5.99 14.96 5 16.5 5c2 0 3.5 1.5 3.5 3.5 0 2.89-3.14 5.74-7.9 10.05z" + }, + "children": [] + }] +}; +exports.ic_favorite_twotone = ic_favorite_twotone; \ No newline at end of file diff --git a/dist/md/ic_featured_play_list.js b/dist/md/ic_featured_play_list.js new file mode 100644 index 000000000..c0d66b6df --- /dev/null +++ b/dist/md/ic_featured_play_list.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_featured_play_list = void 0; +var ic_featured_play_list = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 8H3V9h9v2zm0-4H3V5h9v2z" + }, + "children": [] + }] +}; +exports.ic_featured_play_list = ic_featured_play_list; \ No newline at end of file diff --git a/dist/md/ic_featured_play_list_outline.js b/dist/md/ic_featured_play_list_outline.js new file mode 100644 index 000000000..deb6cbe0d --- /dev/null +++ b/dist/md/ic_featured_play_list_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_featured_play_list_outline = void 0; +var ic_featured_play_list_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM5 10h9v2H5zm0-3h9v2H5z" + }, + "children": [] + }] +}; +exports.ic_featured_play_list_outline = ic_featured_play_list_outline; \ No newline at end of file diff --git a/dist/md/ic_featured_play_list_twotone.js b/dist/md/ic_featured_play_list_twotone.js new file mode 100644 index 000000000..eb3e13057 --- /dev/null +++ b/dist/md/ic_featured_play_list_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_featured_play_list_twotone = void 0; +var ic_featured_play_list_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 19h18V5H3v14zM5 7h9v2H5V7zm0 3h9v2H5v-2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM5 10h9v2H5zm0-3h9v2H5z" + }, + "children": [] + }] +}; +exports.ic_featured_play_list_twotone = ic_featured_play_list_twotone; \ No newline at end of file diff --git a/dist/md/ic_featured_video.js b/dist/md/ic_featured_video.js new file mode 100644 index 000000000..58b71aa5d --- /dev/null +++ b/dist/md/ic_featured_video.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_featured_video = void 0; +var ic_featured_video = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 9H3V5h9v7z" + }, + "children": [] + }] +}; +exports.ic_featured_video = ic_featured_video; \ No newline at end of file diff --git a/dist/md/ic_featured_video_outline.js b/dist/md/ic_featured_video_outline.js new file mode 100644 index 000000000..a62a7d8bd --- /dev/null +++ b/dist/md/ic_featured_video_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_featured_video_outline = void 0; +var ic_featured_video_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM4 6h9v7H4z" + }, + "children": [] + }] +}; +exports.ic_featured_video_outline = ic_featured_video_outline; \ No newline at end of file diff --git a/dist/md/ic_featured_video_twotone.js b/dist/md/ic_featured_video_twotone.js new file mode 100644 index 000000000..35c0ec3e5 --- /dev/null +++ b/dist/md/ic_featured_video_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_featured_video_twotone = void 0; +var ic_featured_video_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 19h18V5H3v14zM4 6h9v7H4V6z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM4 6h9v7H4z" + }, + "children": [] + }] +}; +exports.ic_featured_video_twotone = ic_featured_video_twotone; \ No newline at end of file diff --git a/dist/md/ic_feedback.js b/dist/md/ic_feedback.js new file mode 100644 index 000000000..92fadc657 --- /dev/null +++ b/dist/md/ic_feedback.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_feedback = void 0; +var ic_feedback = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 12h-2v-2h2v2zm0-4h-2V6h2v4z" + }, + "children": [] + }] +}; +exports.ic_feedback = ic_feedback; \ No newline at end of file diff --git a/dist/md/ic_feedback_outline.js b/dist/md/ic_feedback_outline.js new file mode 100644 index 000000000..25333f070 --- /dev/null +++ b/dist/md/ic_feedback_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_feedback_outline = void 0; +var ic_feedback_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17l-.59.59-.58.58V4h16v12zm-9-4h2v2h-2zm0-6h2v4h-2z" + }, + "children": [] + }] +}; +exports.ic_feedback_outline = ic_feedback_outline; \ No newline at end of file diff --git a/dist/md/ic_feedback_twotone.js b/dist/md/ic_feedback_twotone.js new file mode 100644 index 000000000..20236867b --- /dev/null +++ b/dist/md/ic_feedback_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_feedback_twotone = void 0; +var ic_feedback_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 17.17L5.17 16H20V4H4v13.17zM11 6h2v4h-2V6zm0 6h2v2h-2v-2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zm-9-4h2v2h-2zm0-6h2v4h-2z" + }, + "children": [] + }] +}; +exports.ic_feedback_twotone = ic_feedback_twotone; \ No newline at end of file diff --git a/dist/md/ic_fence.js b/dist/md/ic_fence.js new file mode 100644 index 000000000..ffa279b6e --- /dev/null +++ b/dist/md/ic_fence.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_fence = void 0; +var ic_fence = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M21,12v-2h-2V7l-3-3l-2,2l-2-2l-2,2L8,4L5,7v3H3v2h2v2H3v2h2v4h14v-4h2v-2h-2v-2H21z M16,6.83l1,1V10h-2V7.83l0.41-0.41 L16,6.83z M12,6.83l0.59,0.59L13,7.83V10h-2V7.83l0.41-0.41L12,6.83z M11,14v-2h2v2H11z M13,16v2h-2v-2H13z M7,7.83l1-1l0.59,0.59 L9,7.83V10H7V7.83z M7,12h2v2H7V12z M7,16h2v2H7V16z M17,18h-2v-2h2V18z M17,14h-2v-2h2V14z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21,12v-2h-2V7l-3-3l-2,2l-2-2l-2,2L8,4L5,7v3H3v2h2v2H3v2h2v4h14v-4h2v-2h-2v-2H21z M16,6.83l1,1V10h-2V7.83l0.41-0.41 L16,6.83z M12,6.83l0.59,0.59L13,7.83V10h-2V7.83l0.41-0.41L12,6.83z M11,14v-2h2v2H11z M13,16v2h-2v-2H13z M7,7.83l1-1l0.59,0.59 L9,7.83V10H7V7.83z M7,12h2v2H7V12z M7,16h2v2H7V16z M17,18h-2v-2h2V18z M17,14h-2v-2h2V14z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_fence = ic_fence; \ No newline at end of file diff --git a/dist/md/ic_fence_outline.js b/dist/md/ic_fence_outline.js new file mode 100644 index 000000000..1ef9a1467 --- /dev/null +++ b/dist/md/ic_fence_outline.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_fence_outline = void 0; +var ic_fence_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M21,12v-2h-2V7l-3-3l-2,2l-2-2l-2,2L8,4L5,7v3H3v2h2v2H3v2h2v4h14v-4h2v-2h-2v-2H21z M16,6.83l1,1V10h-2V7.83l0.41-0.41 L16,6.83z M12,6.83l0.59,0.59L13,7.83V10h-2V7.83l0.41-0.41L12,6.83z M11,14v-2h2v2H11z M13,16v2h-2v-2H13z M7,7.83l1-1l0.59,0.59 L9,7.83V10H7V7.83z M7,12h2v2H7V12z M7,16h2v2H7V16z M17,18h-2v-2h2V18z M17,14h-2v-2h2V14z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21,12v-2h-2V7l-3-3l-2,2l-2-2l-2,2L8,4L5,7v3H3v2h2v2H3v2h2v4h14v-4h2v-2h-2v-2H21z M16,6.83l1,1V10h-2V7.83l0.41-0.41 L16,6.83z M12,6.83l0.59,0.59L13,7.83V10h-2V7.83l0.41-0.41L12,6.83z M11,14v-2h2v2H11z M13,16v2h-2v-2H13z M7,7.83l1-1l0.59,0.59 L9,7.83V10H7V7.83z M7,12h2v2H7V12z M7,16h2v2H7V16z M17,18h-2v-2h2V18z M17,14h-2v-2h2V14z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_fence_outline = ic_fence_outline; \ No newline at end of file diff --git a/dist/md/ic_fence_twotone.js b/dist/md/ic_fence_twotone.js new file mode 100644 index 000000000..7b057c3eb --- /dev/null +++ b/dist/md/ic_fence_twotone.js @@ -0,0 +1,65 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_fence_twotone = void 0; +var ic_fence_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": { + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M16,6.83l1,1V10h-2V7.83l0.41-0.41L16,6.83z M12,6.83l0.59,0.59L13,7.83V10h-2V7.83l0.41-0.41L12,6.83z M11,14v-2h2v2H11z M13,16v2h-2v-2H13z M7,7.83l1-1l0.59,0.59L9,7.83V10H7V7.83z M7,12h2v2H7V12z M7,16h2v2H7V16z M17,18h-2v-2h2V18z M17,14h-2v-2h2 V14z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M16,6.83l1,1V10h-2V7.83l0.41-0.41L16,6.83z M12,6.83l0.59,0.59L13,7.83V10h-2V7.83l0.41-0.41L12,6.83z M11,14v-2h2v2H11z M13,16v2h-2v-2H13z M7,7.83l1-1l0.59,0.59L9,7.83V10H7V7.83z M7,12h2v2H7V12z M7,16h2v2H7V16z M17,18h-2v-2h2V18z M17,14h-2v-2h2 V14z" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M21,12v-2h-2V7l-3-3l-2,2l-2-2l-2,2L8,4L5,7v3H3v2h2v2H3v2h2v4h14v-4h2v-2h-2v-2H21z M16,6.83l1,1V10h-2V7.83l0.41-0.41 L16,6.83z M12,6.83l0.59,0.59L13,7.83V10h-2V7.83l0.41-0.41L12,6.83z M11,14v-2h2v2H11z M13,16v2h-2v-2H13z M7,7.83l1-1l0.59,0.59 L9,7.83V10H7V7.83z M7,12h2v2H7V12z M7,16h2v2H7V16z M17,18h-2v-2h2V18z M17,14h-2v-2h2V14z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21,12v-2h-2V7l-3-3l-2,2l-2-2l-2,2L8,4L5,7v3H3v2h2v2H3v2h2v4h14v-4h2v-2h-2v-2H21z M16,6.83l1,1V10h-2V7.83l0.41-0.41 L16,6.83z M12,6.83l0.59,0.59L13,7.83V10h-2V7.83l0.41-0.41L12,6.83z M11,14v-2h2v2H11z M13,16v2h-2v-2H13z M7,7.83l1-1l0.59,0.59 L9,7.83V10H7V7.83z M7,12h2v2H7V12z M7,16h2v2H7V16z M17,18h-2v-2h2V18z M17,14h-2v-2h2V14z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_fence_twotone = ic_fence_twotone; \ No newline at end of file diff --git a/dist/md/ic_festival.js b/dist/md/ic_festival.js new file mode 100644 index 000000000..b76a11317 --- /dev/null +++ b/dist/md/ic_festival.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_festival = void 0; +var ic_festival = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "13,5.7 13,4 16,4 15,2.51 16,1 11,1 11,5.7 2,12 2,22 9,22 9,17 12.03,15 15,17 15,22 22,22 22,12" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "13,5.7 13,4 16,4 15,2.51 16,1 11,1 11,5.7 2,12 2,22 9,22 9,17 12.03,15 15,17 15,22 22,22 22,12" + }, + "children": [] + }] + }] + }] +}; +exports.ic_festival = ic_festival; \ No newline at end of file diff --git a/dist/md/ic_fiber_dvr.js b/dist/md/ic_fiber_dvr.js new file mode 100644 index 000000000..ea69ac40d --- /dev/null +++ b/dist/md/ic_fiber_dvr.js @@ -0,0 +1,65 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_fiber_dvr = void 0; +var ic_fiber_dvr = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M17.5,10.5h2v1h-2V10.5z M4.5,10.5h2v3h-2V10.5z M21,3H3C1.89,3,1,3.89,1,5v14c0,1.1,0.89,2,2,2h18c1.11,0,2-0.9,2-2V5 C23,3.89,22.11,3,21,3z M8,13.5C8,14.35,7.35,15,6.5,15H3V9h3.5C7.35,9,8,9.65,8,10.5V13.5z M12.62,15h-1.5L9.37,9h1.5l1,3.43 l1-3.43h1.5L12.62,15z M21,11.5c0,0.6-0.4,1.15-0.9,1.4L21,15h-1.5l-0.85-2H17.5v2H16V9h3.5c0.85,0,1.5,0.65,1.5,1.5V11.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17.5,10.5h2v1h-2V10.5z M4.5,10.5h2v3h-2V10.5z M21,3H3C1.89,3,1,3.89,1,5v14c0,1.1,0.89,2,2,2h18c1.11,0,2-0.9,2-2V5 C23,3.89,22.11,3,21,3z M8,13.5C8,14.35,7.35,15,6.5,15H3V9h3.5C7.35,9,8,9.65,8,10.5V13.5z M12.62,15h-1.5L9.37,9h1.5l1,3.43 l1-3.43h1.5L12.62,15z M21,11.5c0,0.6-0.4,1.15-0.9,1.4L21,15h-1.5l-0.85-2H17.5v2H16V9h3.5c0.85,0,1.5,0.65,1.5,1.5V11.5z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_fiber_dvr = ic_fiber_dvr; \ No newline at end of file diff --git a/dist/md/ic_fiber_dvr_outline.js b/dist/md/ic_fiber_dvr_outline.js new file mode 100644 index 000000000..37c0e8f33 --- /dev/null +++ b/dist/md/ic_fiber_dvr_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_fiber_dvr_outline = void 0; +var ic_fiber_dvr_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.87 12.43l-1-3.43h-1.5l1.75 6h1.5l1.75-6h-1.5zM21 11.5v-1c0-.85-.65-1.5-1.5-1.5H16v6h1.5v-2h1.15l.85 2H21l-.9-2.1c.5-.25.9-.8.9-1.4zm-1.5 0h-2v-1h2v1zM6.5 9H3v6h3.5c.85 0 1.5-.65 1.5-1.5v-3C8 9.65 7.35 9 6.5 9zm0 4.5h-2v-3h2v3z" + }, + "children": [] + }] +}; +exports.ic_fiber_dvr_outline = ic_fiber_dvr_outline; \ No newline at end of file diff --git a/dist/md/ic_fiber_dvr_twotone.js b/dist/md/ic_fiber_dvr_twotone.js new file mode 100644 index 000000000..1fdaeb39c --- /dev/null +++ b/dist/md/ic_fiber_dvr_twotone.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_fiber_dvr_twotone = void 0; +var ic_fiber_dvr_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 11.56v-.89c0-.76-.58-1.33-1.33-1.33h-3.11v5.33h1.33v-1.78h1.02l.76 1.78H20l-.8-1.87c.44-.22.8-.71.8-1.24zm-1.33 0h-1.78v-.89h1.78v.89zM7.11 9.33H4v5.33h3.11c.76 0 1.33-.58 1.33-1.33v-2.67c0-.75-.57-1.33-1.33-1.33zm0 4H5.33v-2.67h1.78v2.67zm7-4h-1.34l-.89 3.05L11 9.33H9.66l1.56 5.34h1.33z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 5h18v14H3z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 3H3c-1.11 0-2 .89-2 2v14c0 1.1.89 2 2 2h18c1.11 0 2-.9 2-2V5c0-1.11-.89-2-2-2zm0 16H3V5h18v14z" + }, + "children": [] + }] +}; +exports.ic_fiber_dvr_twotone = ic_fiber_dvr_twotone; \ No newline at end of file diff --git a/dist/md/ic_fiber_manual_record.js b/dist/md/ic_fiber_manual_record.js new file mode 100644 index 000000000..545e99d73 --- /dev/null +++ b/dist/md/ic_fiber_manual_record.js @@ -0,0 +1,26 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_fiber_manual_record = void 0; +var ic_fiber_manual_record = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M24 24H0V0h24v24z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "8" + }, + "children": [] + }] +}; +exports.ic_fiber_manual_record = ic_fiber_manual_record; \ No newline at end of file diff --git a/dist/md/ic_fiber_manual_record_outline.js b/dist/md/ic_fiber_manual_record_outline.js new file mode 100644 index 000000000..d0992c11e --- /dev/null +++ b/dist/md/ic_fiber_manual_record_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_fiber_manual_record_outline = void 0; +var ic_fiber_manual_record_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 6c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6 2.69-6 6-6m0-2c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8z" + }, + "children": [] + }] +}; +exports.ic_fiber_manual_record_outline = ic_fiber_manual_record_outline; \ No newline at end of file diff --git a/dist/md/ic_fiber_manual_record_twotone.js b/dist/md/ic_fiber_manual_record_twotone.js new file mode 100644 index 000000000..9d61562d2 --- /dev/null +++ b/dist/md/ic_fiber_manual_record_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_fiber_manual_record_twotone = void 0; +var ic_fiber_manual_record_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 18c3.31 0 6-2.69 6-6s-2.69-6-6-6-6 2.69-6 6 2.69 6 6 6z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 20c4.42 0 8-3.58 8-8s-3.58-8-8-8-8 3.58-8 8 3.58 8 8 8zm0-14c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6 2.69-6 6-6z" + }, + "children": [] + }] +}; +exports.ic_fiber_manual_record_twotone = ic_fiber_manual_record_twotone; \ No newline at end of file diff --git a/dist/md/ic_fiber_new.js b/dist/md/ic_fiber_new.js new file mode 100644 index 000000000..0f8121e6b --- /dev/null +++ b/dist/md/ic_fiber_new.js @@ -0,0 +1,65 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_fiber_new = void 0; +var ic_fiber_new = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,4H4C2.89,4,2.01,4.89,2.01,6L2,18c0,1.11,0.89,2,2,2h16c1.11,0,2-0.89,2-2V6C22,4.89,21.11,4,20,4z M8.5,15H7.3 l-2.55-3.5V15H3.5V9h1.25l2.5,3.5V9H8.5V15z M13.5,10.26H11v1.12h2.5v1.26H11v1.11h2.5V15h-4V9h4V10.26z M20.5,14 c0,0.55-0.45,1-1,1h-4c-0.55,0-1-0.45-1-1V9h1.25v4.51h1.13V9.99h1.25v3.51h1.12V9h1.25V14z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,4H4C2.89,4,2.01,4.89,2.01,6L2,18c0,1.11,0.89,2,2,2h16c1.11,0,2-0.89,2-2V6C22,4.89,21.11,4,20,4z M8.5,15H7.3 l-2.55-3.5V15H3.5V9h1.25l2.5,3.5V9H8.5V15z M13.5,10.26H11v1.12h2.5v1.26H11v1.11h2.5V15h-4V9h4V10.26z M20.5,14 c0,0.55-0.45,1-1,1h-4c-0.55,0-1-0.45-1-1V9h1.25v4.51h1.13V9.99h1.25v3.51h1.12V9h1.25V14z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_fiber_new = ic_fiber_new; \ No newline at end of file diff --git a/dist/md/ic_fiber_new_outline.js b/dist/md/ic_fiber_new_outline.js new file mode 100644 index 000000000..d939d52b4 --- /dev/null +++ b/dist/md/ic_fiber_new_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_fiber_new_outline = void 0; +var ic_fiber_new_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7.25 12.5L4.75 9H3.5v6h1.25v-3.5L7.3 15h1.2V9H7.25zM9.5 15h4v-1.25H11v-1.11h2.5v-1.26H11v-1.12h2.5V9h-4zm9.75-6v4.5h-1.12V9.99h-1.25v3.52h-1.13V9H14.5v5c0 .55.45 1 1 1h4c.55 0 1-.45 1-1V9h-1.25z" + }, + "children": [] + }] +}; +exports.ic_fiber_new_outline = ic_fiber_new_outline; \ No newline at end of file diff --git a/dist/md/ic_fiber_new_twotone.js b/dist/md/ic_fiber_new_twotone.js new file mode 100644 index 000000000..37a6510f1 --- /dev/null +++ b/dist/md/ic_fiber_new_twotone.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_fiber_new_twotone = void 0; +var ic_fiber_new_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9.12 14.47V9.53H8.09v2.88L6.03 9.53H5v4.94h1.03v-2.88l2.1 2.88zm4.12-3.9V9.53h-3.3v4.94h3.3v-1.03h-2.06v-.91h2.06v-1.04h-2.06v-.92zm.82-1.04v4.12c0 .45.37.82.82.82h3.29c.45 0 .82-.37.82-.82V9.53h-1.03v3.71h-.92v-2.89h-1.03v2.9h-.93V9.53h-1.02z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 6h16v12H4z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4V6h16v12z" + }, + "children": [] + }] +}; +exports.ic_fiber_new_twotone = ic_fiber_new_twotone; \ No newline at end of file diff --git a/dist/md/ic_fiber_pin.js b/dist/md/ic_fiber_pin.js new file mode 100644 index 000000000..bf3ad3891 --- /dev/null +++ b/dist/md/ic_fiber_pin.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_fiber_pin = void 0; +var ic_fiber_pin = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5.5 10.5h2v1h-2zM20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zM9 11.5c0 .85-.65 1.5-1.5 1.5h-2v2H4V9h3.5c.85 0 1.5.65 1.5 1.5v1zm3.5 3.5H11V9h1.5v6zm7.5 0h-1.2l-2.55-3.5V15H15V9h1.25l2.5 3.5V9H20v6z" + }, + "children": [] + }] +}; +exports.ic_fiber_pin = ic_fiber_pin; \ No newline at end of file diff --git a/dist/md/ic_fiber_pin_outline.js b/dist/md/ic_fiber_pin_outline.js new file mode 100644 index 000000000..38589465a --- /dev/null +++ b/dist/md/ic_fiber_pin_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_fiber_pin_outline = void 0; +var ic_fiber_pin_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 15h1.5V9H11v6zm7.75-6v3.5L16.25 9H15v6h1.25v-3.5L18.8 15H20V9h-1.25zM7.5 9H4v6h1.5v-2h2c.85 0 1.5-.65 1.5-1.5v-1C9 9.65 8.35 9 7.5 9zm0 2.5h-2v-1h2v1z" + }, + "children": [] + }] +}; +exports.ic_fiber_pin_outline = ic_fiber_pin_outline; \ No newline at end of file diff --git a/dist/md/ic_fiber_pin_twotone.js b/dist/md/ic_fiber_pin_twotone.js new file mode 100644 index 000000000..5ab5e034c --- /dev/null +++ b/dist/md/ic_fiber_pin_twotone.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_fiber_pin_twotone = void 0; +var ic_fiber_pin_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 14.62h1.31v-1.75h1.75c.74 0 1.31-.57 1.31-1.31v-.88c0-.74-.57-1.31-1.31-1.31H5v5.25zm1.31-3.93h1.75v.88H6.31v-.88zm5.03-1.31h1.31v5.25h-1.31zm3.28 5.24h1.1v-3.06l2.23 3.06H19V9.38h-1.09v3.06l-2.19-3.06h-1.1z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 6h16v12H4z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4V6h16v12z" + }, + "children": [] + }] +}; +exports.ic_fiber_pin_twotone = ic_fiber_pin_twotone; \ No newline at end of file diff --git a/dist/md/ic_fiber_smart_record.js b/dist/md/ic_fiber_smart_record.js new file mode 100644 index 000000000..ed732c0c3 --- /dev/null +++ b/dist/md/ic_fiber_smart_record.js @@ -0,0 +1,50 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_fiber_smart_record = void 0; +var ic_fiber_smart_record = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M24 24H0V0h24v24z", + "fill": "none" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "cx": "9", + "cy": "12", + "r": "8" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "9", + "cy": "12", + "r": "8" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M17 4.26v2.09c2.33.82 4 3.04 4 5.65s-1.67 4.83-4 5.65v2.09c3.45-.89 6-4.01 6-7.74s-2.55-6.85-6-7.74z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17 4.26v2.09c2.33.82 4 3.04 4 5.65s-1.67 4.83-4 5.65v2.09c3.45-.89 6-4.01 6-7.74s-2.55-6.85-6-7.74z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_fiber_smart_record = ic_fiber_smart_record; \ No newline at end of file diff --git a/dist/md/ic_fiber_smart_record_outline.js b/dist/md/ic_fiber_smart_record_outline.js new file mode 100644 index 000000000..3a1e176dc --- /dev/null +++ b/dist/md/ic_fiber_smart_record_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_fiber_smart_record_outline = void 0; +var ic_fiber_smart_record_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zm8-13.74v2.09c2.33.82 4 3.04 4 5.65s-1.67 4.83-4 5.65v2.09c3.45-.89 6-4.01 6-7.74 0-3.73-2.55-6.85-6-7.74z" + }, + "children": [] + }] +}; +exports.ic_fiber_smart_record_outline = ic_fiber_smart_record_outline; \ No newline at end of file diff --git a/dist/md/ic_fiber_smart_record_twotone.js b/dist/md/ic_fiber_smart_record_twotone.js new file mode 100644 index 000000000..926ee65b9 --- /dev/null +++ b/dist/md/ic_fiber_smart_record_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_fiber_smart_record_twotone = void 0; +var ic_fiber_smart_record_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 18c3.31 0 6-2.69 6-6s-2.69-6-6-6-6 2.69-6 6 2.69 6 6 6z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 20c4.42 0 8-3.58 8-8s-3.58-8-8-8-8 3.58-8 8 3.58 8 8 8zM9 6c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6 2.69-6 6-6zm8-1.74v2.09c2.33.82 4 3.04 4 5.65s-1.67 4.83-4 5.65v2.09c3.45-.89 6-4.01 6-7.74 0-3.73-2.55-6.85-6-7.74z" + }, + "children": [] + }] +}; +exports.ic_fiber_smart_record_twotone = ic_fiber_smart_record_twotone; \ No newline at end of file diff --git a/dist/md/ic_file_copy.js b/dist/md/ic_file_copy.js new file mode 100644 index 000000000..8aab2e0f5 --- /dev/null +++ b/dist/md/ic_file_copy.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_file_copy = void 0; +var ic_file_copy = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm-1 4l6 6v10c0 1.1-.9 2-2 2H7.99C6.89 23 6 22.1 6 21l.01-14c0-1.1.89-2 1.99-2h7zm-1 7h5.5L14 6.5V12z" + }, + "children": [] + }] +}; +exports.ic_file_copy = ic_file_copy; \ No newline at end of file diff --git a/dist/md/ic_file_copy_outline.js b/dist/md/ic_file_copy_outline.js new file mode 100644 index 000000000..6c0d913de --- /dev/null +++ b/dist/md/ic_file_copy_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_file_copy_outline = void 0; +var ic_file_copy_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm-1 4H8c-1.1 0-1.99.9-1.99 2L6 21c0 1.1.89 2 1.99 2H19c1.1 0 2-.9 2-2V11l-6-6zM8 21V7h6v5h5v9H8z" + }, + "children": [] + }] +}; +exports.ic_file_copy_outline = ic_file_copy_outline; \ No newline at end of file diff --git a/dist/md/ic_file_copy_twotone.js b/dist/md/ic_file_copy_twotone.js new file mode 100644 index 000000000..7c3e42735 --- /dev/null +++ b/dist/md/ic_file_copy_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_file_copy_twotone = void 0; +var ic_file_copy_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 7H8v14h11v-9h-5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm-1 4H8c-1.1 0-1.99.9-1.99 2L6 21c0 1.1.89 2 1.99 2H19c1.1 0 2-.9 2-2V11l-6-6zm4 16H8V7h6v5h5v9z" + }, + "children": [] + }] +}; +exports.ic_file_copy_twotone = ic_file_copy_twotone; \ No newline at end of file diff --git a/dist/md/ic_file_download.js b/dist/md/ic_file_download.js new file mode 100644 index 000000000..b84da8399 --- /dev/null +++ b/dist/md/ic_file_download.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_file_download = void 0; +var ic_file_download = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 9h-4V3H9v6H5l7 7 7-7zM5 18v2h14v-2H5z" + }, + "children": [] + }] +}; +exports.ic_file_download = ic_file_download; \ No newline at end of file diff --git a/dist/md/ic_file_download_done.js b/dist/md/ic_file_download_done.js new file mode 100644 index 000000000..02454ea8a --- /dev/null +++ b/dist/md/ic_file_download_done.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_file_download_done = void 0; +var ic_file_download_done = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 18h14v2H5v-2zm4.6-2.7L5 10.7l2-1.9 2.6 2.6L17 4l2 2-9.4 9.3z" + }, + "children": [] + }] +}; +exports.ic_file_download_done = ic_file_download_done; \ No newline at end of file diff --git a/dist/md/ic_file_present.js b/dist/md/ic_file_present.js new file mode 100644 index 000000000..e5ad95729 --- /dev/null +++ b/dist/md/ic_file_present.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_file_present = void 0; +var ic_file_present = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V7l-5-5zM6 20V4h8v4h4v12H6zm10-10v5c0 2.21-1.79 4-4 4s-4-1.79-4-4V8.5c0-1.47 1.26-2.64 2.76-2.49 1.3.13 2.24 1.32 2.24 2.63V15h-2V8.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5V15c0 1.1.9 2 2 2s2-.9 2-2v-5h2z" + }, + "children": [] + }] +}; +exports.ic_file_present = ic_file_present; \ No newline at end of file diff --git a/dist/md/ic_file_upload.js b/dist/md/ic_file_upload.js new file mode 100644 index 000000000..ae168c846 --- /dev/null +++ b/dist/md/ic_file_upload.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_file_upload = void 0; +var ic_file_upload = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 16h6v-6h4l-7-7-7 7h4zm-4 2h14v2H5z" + }, + "children": [] + }] +}; +exports.ic_file_upload = ic_file_upload; \ No newline at end of file diff --git a/dist/md/ic_filter.js b/dist/md/ic_filter.js new file mode 100644 index 000000000..1bb4624a7 --- /dev/null +++ b/dist/md/ic_filter.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_filter = void 0; +var ic_filter = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.96 10.29l-2.75 3.54-1.96-2.36L8.5 15h11l-3.54-4.71zM3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14z" + }, + "children": [] + }] +}; +exports.ic_filter = ic_filter; \ No newline at end of file diff --git a/dist/md/ic_filter_1.js b/dist/md/ic_filter_1.js new file mode 100644 index 000000000..36b56fff5 --- /dev/null +++ b/dist/md/ic_filter_1.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_filter_1 = void 0; +var ic_filter_1 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm11 10h2V5h-4v2h2v8zm7-14H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14z" + }, + "children": [] + }] +}; +exports.ic_filter_1 = ic_filter_1; \ No newline at end of file diff --git a/dist/md/ic_filter_1_outline.js b/dist/md/ic_filter_1_outline.js new file mode 100644 index 000000000..4cfa8b1ad --- /dev/null +++ b/dist/md/ic_filter_1_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_filter_1_outline = void 0; +var ic_filter_1_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm11 10h2V5h-4v2h2v8zm7-14H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14z" + }, + "children": [] + }] +}; +exports.ic_filter_1_outline = ic_filter_1_outline; \ No newline at end of file diff --git a/dist/md/ic_filter_1_twotone.js b/dist/md/ic_filter_1_twotone.js new file mode 100644 index 000000000..cb7fdb382 --- /dev/null +++ b/dist/md/ic_filter_1_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_filter_1_twotone = void 0; +var ic_filter_1_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 17h14V3H7v14zm5-12h4v10h-2V7h-2V5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 15h2V5h-4v2h2zm7-14H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zM1 5v16c0 1.1.9 2 2 2h16v-2H3V5H1z" + }, + "children": [] + }] +}; +exports.ic_filter_1_twotone = ic_filter_1_twotone; \ No newline at end of file diff --git a/dist/md/ic_filter_2.js b/dist/md/ic_filter_2.js new file mode 100644 index 000000000..14abaf4c6 --- /dev/null +++ b/dist/md/ic_filter_2.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_filter_2 = void 0; +var ic_filter_2 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zm-4-4h-4v-2h2c1.1 0 2-.89 2-2V7c0-1.11-.9-2-2-2h-4v2h4v2h-2c-1.1 0-2 .89-2 2v4h6v-2z" + }, + "children": [] + }] +}; +exports.ic_filter_2 = ic_filter_2; \ No newline at end of file diff --git a/dist/md/ic_filter_2_outline.js b/dist/md/ic_filter_2_outline.js new file mode 100644 index 000000000..9f4f55bdd --- /dev/null +++ b/dist/md/ic_filter_2_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_filter_2_outline = void 0; +var ic_filter_2_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zm-4-4h-4v-2h2c1.1 0 2-.89 2-2V7c0-1.11-.9-2-2-2h-4v2h4v2h-2c-1.1 0-2 .89-2 2v4h6v-2z" + }, + "children": [] + }] +}; +exports.ic_filter_2_outline = ic_filter_2_outline; \ No newline at end of file diff --git a/dist/md/ic_filter_2_twotone.js b/dist/md/ic_filter_2_twotone.js new file mode 100644 index 000000000..144767af4 --- /dev/null +++ b/dist/md/ic_filter_2_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_filter_2_twotone = void 0; +var ic_filter_2_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 17h14V3H7v14zm4-6c0-1.11.9-2 2-2h2V7h-4V5h4c1.1 0 2 .89 2 2v2c0 1.11-.9 2-2 2h-2v2h4v2h-6v-4z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 13h-4v-2h2c1.1 0 2-.89 2-2V7c0-1.11-.9-2-2-2h-4v2h4v2h-2c-1.1 0-2 .89-2 2v4h6v-2zm4-12H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zM1 21c0 1.1.9 2 2 2h16v-2H3V5H1v16z" + }, + "children": [] + }] +}; +exports.ic_filter_2_twotone = ic_filter_2_twotone; \ No newline at end of file diff --git a/dist/md/ic_filter_3.js b/dist/md/ic_filter_3.js new file mode 100644 index 000000000..c978e1505 --- /dev/null +++ b/dist/md/ic_filter_3.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_filter_3 = void 0; +var ic_filter_3 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 1H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zM3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm14 8v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V7c0-1.11-.9-2-2-2h-4v2h4v2h-2v2h2v2h-4v2h4c1.1 0 2-.89 2-2z" + }, + "children": [] + }] +}; +exports.ic_filter_3 = ic_filter_3; \ No newline at end of file diff --git a/dist/md/ic_filter_3_outline.js b/dist/md/ic_filter_3_outline.js new file mode 100644 index 000000000..88efb1b60 --- /dev/null +++ b/dist/md/ic_filter_3_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_filter_3_outline = void 0; +var ic_filter_3_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 1H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zM3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm14 8v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V7c0-1.11-.9-2-2-2h-4v2h4v2h-2v2h2v2h-4v2h4c1.1 0 2-.89 2-2z" + }, + "children": [] + }] +}; +exports.ic_filter_3_outline = ic_filter_3_outline; \ No newline at end of file diff --git a/dist/md/ic_filter_3_twotone.js b/dist/md/ic_filter_3_twotone.js new file mode 100644 index 000000000..968f2783f --- /dev/null +++ b/dist/md/ic_filter_3_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_filter_3_twotone = void 0; +var ic_filter_3_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 17h14V3H7v14zm4-4h4v-2h-2V9h2V7h-4V5h4c1.1 0 2 .89 2 2v1.5c0 .83-.67 1.5-1.5 1.5.83 0 1.5.67 1.5 1.5V13c0 1.11-.9 2-2 2h-4v-2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 1H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zm-4-4v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V7c0-1.11-.9-2-2-2h-4v2h4v2h-2v2h2v2h-4v2h4c1.1 0 2-.89 2-2zm2 10v-2H3V5H1v16c0 1.1.9 2 2 2h16z" + }, + "children": [] + }] +}; +exports.ic_filter_3_twotone = ic_filter_3_twotone; \ No newline at end of file diff --git a/dist/md/ic_filter_4.js b/dist/md/ic_filter_4.js new file mode 100644 index 000000000..c8ab5c515 --- /dev/null +++ b/dist/md/ic_filter_4.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_filter_4 = void 0; +var ic_filter_4 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm12 10h2V5h-2v4h-2V5h-2v6h4v4zm6-14H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14z" + }, + "children": [] + }] +}; +exports.ic_filter_4 = ic_filter_4; \ No newline at end of file diff --git a/dist/md/ic_filter_4_outline.js b/dist/md/ic_filter_4_outline.js new file mode 100644 index 000000000..6e09d2928 --- /dev/null +++ b/dist/md/ic_filter_4_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_filter_4_outline = void 0; +var ic_filter_4_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm12 10h2V5h-2v4h-2V5h-2v6h4v4zm6-14H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14z" + }, + "children": [] + }] +}; +exports.ic_filter_4_outline = ic_filter_4_outline; \ No newline at end of file diff --git a/dist/md/ic_filter_4_twotone.js b/dist/md/ic_filter_4_twotone.js new file mode 100644 index 000000000..fa75bfc00 --- /dev/null +++ b/dist/md/ic_filter_4_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_filter_4_twotone = void 0; +var ic_filter_4_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 3H7v14h14V3zm-4 12h-2v-4h-4V5h2v4h2V5h2v10z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 23h16v-2H3V5H1v16c0 1.1.9 2 2 2zm4-4h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2zM7 3h14v14H7V3zm8 6h-2V5h-2v6h4v4h2V5h-2z" + }, + "children": [] + }] +}; +exports.ic_filter_4_twotone = ic_filter_4_twotone; \ No newline at end of file diff --git a/dist/md/ic_filter_5.js b/dist/md/ic_filter_5.js new file mode 100644 index 000000000..203bc95eb --- /dev/null +++ b/dist/md/ic_filter_5.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_filter_5 = void 0; +var ic_filter_5 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 1H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zM3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm14 8v-2c0-1.11-.9-2-2-2h-2V7h4V5h-6v6h4v2h-4v2h4c1.1 0 2-.89 2-2z" + }, + "children": [] + }] +}; +exports.ic_filter_5 = ic_filter_5; \ No newline at end of file diff --git a/dist/md/ic_filter_5_outline.js b/dist/md/ic_filter_5_outline.js new file mode 100644 index 000000000..d4c06ffeb --- /dev/null +++ b/dist/md/ic_filter_5_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_filter_5_outline = void 0; +var ic_filter_5_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 1H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zM3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm14 8v-2c0-1.11-.9-2-2-2h-2V7h4V5h-6v6h4v2h-4v2h4c1.1 0 2-.89 2-2z" + }, + "children": [] + }] +}; +exports.ic_filter_5_outline = ic_filter_5_outline; \ No newline at end of file diff --git a/dist/md/ic_filter_5_twotone.js b/dist/md/ic_filter_5_twotone.js new file mode 100644 index 000000000..de6395415 --- /dev/null +++ b/dist/md/ic_filter_5_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_filter_5_twotone = void 0; +var ic_filter_5_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 17h14V3H7v14zm4-4h4v-2h-4V5h6v2h-4v2h2c1.1 0 2 .89 2 2v2c0 1.11-.9 2-2 2h-4v-2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 23v-2H3V5H1v16c0 1.1.9 2 2 2h16zm-2-10v-2c0-1.11-.9-2-2-2h-2V7h4V5h-6v6h4v2h-4v2h4c1.1 0 2-.89 2-2zm4-12H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14z" + }, + "children": [] + }] +}; +exports.ic_filter_5_twotone = ic_filter_5_twotone; \ No newline at end of file diff --git a/dist/md/ic_filter_6.js b/dist/md/ic_filter_6.js new file mode 100644 index 000000000..74e406184 --- /dev/null +++ b/dist/md/ic_filter_6.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_filter_6 = void 0; +var ic_filter_6 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zm-8-2h2c1.1 0 2-.89 2-2v-2c0-1.11-.9-2-2-2h-2V7h4V5h-4c-1.1 0-2 .89-2 2v6c0 1.11.9 2 2 2zm0-4h2v2h-2v-2z" + }, + "children": [] + }] +}; +exports.ic_filter_6 = ic_filter_6; \ No newline at end of file diff --git a/dist/md/ic_filter_6_outline.js b/dist/md/ic_filter_6_outline.js new file mode 100644 index 000000000..f0a8af400 --- /dev/null +++ b/dist/md/ic_filter_6_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_filter_6_outline = void 0; +var ic_filter_6_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zm-8-2h2c1.1 0 2-.89 2-2v-2c0-1.11-.9-2-2-2h-2V7h4V5h-4c-1.1 0-2 .89-2 2v6c0 1.11.9 2 2 2zm0-4h2v2h-2v-2z" + }, + "children": [] + }] +}; +exports.ic_filter_6_outline = ic_filter_6_outline; \ No newline at end of file diff --git a/dist/md/ic_filter_6_twotone.js b/dist/md/ic_filter_6_twotone.js new file mode 100644 index 000000000..bb1af5d4a --- /dev/null +++ b/dist/md/ic_filter_6_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_filter_6_twotone = void 0; +var ic_filter_6_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 17h14V3H7v14zm4-10c0-1.11.9-2 2-2h4v2h-4v2h2c1.1 0 2 .89 2 2v2c0 1.11-.9 2-2 2h-2c-1.1 0-2-.89-2-2V7zm2 4h2v2h-2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 1H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zm-8-2h2c1.1 0 2-.89 2-2v-2c0-1.11-.9-2-2-2h-2V7h4V5h-4c-1.1 0-2 .89-2 2v6c0 1.11.9 2 2 2zm0-4h2v2h-2v-2zM3 23h16v-2H3V5H1v16c0 1.1.9 2 2 2z" + }, + "children": [] + }] +}; +exports.ic_filter_6_twotone = ic_filter_6_twotone; \ No newline at end of file diff --git a/dist/md/ic_filter_7.js b/dist/md/ic_filter_7.js new file mode 100644 index 000000000..eb9eb193a --- /dev/null +++ b/dist/md/ic_filter_7.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_filter_7 = void 0; +var ic_filter_7 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zm-8-2l4-8V5h-6v2h4l-4 8h2z" + }, + "children": [] + }] +}; +exports.ic_filter_7 = ic_filter_7; \ No newline at end of file diff --git a/dist/md/ic_filter_7_outline.js b/dist/md/ic_filter_7_outline.js new file mode 100644 index 000000000..244eda19f --- /dev/null +++ b/dist/md/ic_filter_7_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_filter_7_outline = void 0; +var ic_filter_7_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zm-8-2l4-8V5h-6v2h4l-4 8h2z" + }, + "children": [] + }] +}; +exports.ic_filter_7_outline = ic_filter_7_outline; \ No newline at end of file diff --git a/dist/md/ic_filter_7_twotone.js b/dist/md/ic_filter_7_twotone.js new file mode 100644 index 000000000..676412ea2 --- /dev/null +++ b/dist/md/ic_filter_7_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_filter_7_twotone = void 0; +var ic_filter_7_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 17h14V3H7v14zm4-10V5h6v2l-4 8h-2l4-8h-4z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 23h16v-2H3V5H1v16c0 1.1.9 2 2 2zm10-8l4-8V5h-6v2h4l-4 8zm8-14H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14z" + }, + "children": [] + }] +}; +exports.ic_filter_7_twotone = ic_filter_7_twotone; \ No newline at end of file diff --git a/dist/md/ic_filter_8.js b/dist/md/ic_filter_8.js new file mode 100644 index 000000000..7133bad2d --- /dev/null +++ b/dist/md/ic_filter_8.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_filter_8 = void 0; +var ic_filter_8 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zm-8-2h2c1.1 0 2-.89 2-2v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V7c0-1.11-.9-2-2-2h-2c-1.1 0-2 .89-2 2v1.5c0 .83.67 1.5 1.5 1.5-.83 0-1.5.67-1.5 1.5V13c0 1.11.9 2 2 2zm0-8h2v2h-2V7zm0 4h2v2h-2v-2z" + }, + "children": [] + }] +}; +exports.ic_filter_8 = ic_filter_8; \ No newline at end of file diff --git a/dist/md/ic_filter_8_outline.js b/dist/md/ic_filter_8_outline.js new file mode 100644 index 000000000..d4b5769f0 --- /dev/null +++ b/dist/md/ic_filter_8_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_filter_8_outline = void 0; +var ic_filter_8_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zm-8-2h2c1.1 0 2-.89 2-2v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V7c0-1.11-.9-2-2-2h-2c-1.1 0-2 .89-2 2v1.5c0 .83.67 1.5 1.5 1.5-.83 0-1.5.67-1.5 1.5V13c0 1.11.9 2 2 2zm0-8h2v2h-2V7zm0 4h2v2h-2v-2z" + }, + "children": [] + }] +}; +exports.ic_filter_8_outline = ic_filter_8_outline; \ No newline at end of file diff --git a/dist/md/ic_filter_8_twotone.js b/dist/md/ic_filter_8_twotone.js new file mode 100644 index 000000000..92621e9d1 --- /dev/null +++ b/dist/md/ic_filter_8_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_filter_8_twotone = void 0; +var ic_filter_8_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 17h14V3H7v14zm4-5.5c0-.83.67-1.5 1.5-1.5-.83 0-1.5-.67-1.5-1.5V7c0-1.11.9-2 2-2h2c1.1 0 2 .89 2 2v1.5c0 .83-.67 1.5-1.5 1.5.83 0 1.5.67 1.5 1.5V13c0 1.11-.9 2-2 2h-2c-1.1 0-2-.89-2-2v-1.5zM13 7h2v2h-2zm0 4h2v2h-2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 1H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zM3 23h16v-2H3V5H1v16c0 1.1.9 2 2 2zm10-8h2c1.1 0 2-.89 2-2v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V7c0-1.11-.9-2-2-2h-2c-1.1 0-2 .89-2 2v1.5c0 .83.67 1.5 1.5 1.5-.83 0-1.5.67-1.5 1.5V13c0 1.11.9 2 2 2zm0-8h2v2h-2V7zm0 4h2v2h-2v-2z" + }, + "children": [] + }] +}; +exports.ic_filter_8_twotone = ic_filter_8_twotone; \ No newline at end of file diff --git a/dist/md/ic_filter_9.js b/dist/md/ic_filter_9.js new file mode 100644 index 000000000..0d3ff8605 --- /dev/null +++ b/dist/md/ic_filter_9.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_filter_9 = void 0; +var ic_filter_9 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zM15 5h-2c-1.1 0-2 .89-2 2v2c0 1.11.9 2 2 2h2v2h-4v2h4c1.1 0 2-.89 2-2V7c0-1.11-.9-2-2-2zm0 4h-2V7h2v2z" + }, + "children": [] + }] +}; +exports.ic_filter_9 = ic_filter_9; \ No newline at end of file diff --git a/dist/md/ic_filter_9_outline.js b/dist/md/ic_filter_9_outline.js new file mode 100644 index 000000000..fea0bde62 --- /dev/null +++ b/dist/md/ic_filter_9_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_filter_9_outline = void 0; +var ic_filter_9_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zM15 5h-2c-1.1 0-2 .89-2 2v2c0 1.11.9 2 2 2h2v2h-4v2h4c1.1 0 2-.89 2-2V7c0-1.11-.9-2-2-2zm0 4h-2V7h2v2z" + }, + "children": [] + }] +}; +exports.ic_filter_9_outline = ic_filter_9_outline; \ No newline at end of file diff --git a/dist/md/ic_filter_9_plus.js b/dist/md/ic_filter_9_plus.js new file mode 100644 index 000000000..611694b4b --- /dev/null +++ b/dist/md/ic_filter_9_plus.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_filter_9_plus = void 0; +var ic_filter_9_plus = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm11 7V8c0-1.11-.9-2-2-2h-1c-1.1 0-2 .89-2 2v1c0 1.11.9 2 2 2h1v1H9v2h3c1.1 0 2-.89 2-2zm-3-3V8h1v1h-1zm10-8H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 8h-2V7h-2v2h-2v2h2v2h2v-2h2v6H7V3h14v6z" + }, + "children": [] + }] +}; +exports.ic_filter_9_plus = ic_filter_9_plus; \ No newline at end of file diff --git a/dist/md/ic_filter_9_plus_outline.js b/dist/md/ic_filter_9_plus_outline.js new file mode 100644 index 000000000..048c5ec81 --- /dev/null +++ b/dist/md/ic_filter_9_plus_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_filter_9_plus_outline = void 0; +var ic_filter_9_plus_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm11 7V8c0-1.11-.9-2-2-2h-1c-1.1 0-2 .89-2 2v1c0 1.11.9 2 2 2h1v1H9v2h3c1.1 0 2-.89 2-2zm-3-3V8h1v1h-1zm10-8H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 8h-2V7h-2v2h-2v2h2v2h2v-2h2v6H7V3h14v6z" + }, + "children": [] + }] +}; +exports.ic_filter_9_plus_outline = ic_filter_9_plus_outline; \ No newline at end of file diff --git a/dist/md/ic_filter_9_plus_twotone.js b/dist/md/ic_filter_9_plus_twotone.js new file mode 100644 index 000000000..d023401bb --- /dev/null +++ b/dist/md/ic_filter_9_plus_twotone.js @@ -0,0 +1,44 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_filter_9_plus_twotone = void 0; +var ic_filter_9_plus_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 17h14v-6h-2v2h-2v-2h-2V9h2V7h2v2h2V3H7v14zm2-5h3v-1h-1c-1.1 0-2-.89-2-2V8c0-1.11.9-2 2-2h1c1.1 0 2 .89 2 2v4c0 1.11-.9 2-2 2H9v-2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 21H3V5H1v16c0 1.1.9 2 2 2h16v-2z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 8h1v1h-1z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 6h-1c-1.1 0-2 .89-2 2v1c0 1.11.9 2 2 2h1v1H9v2h3c1.1 0 2-.89 2-2V8c0-1.11-.9-2-2-2zm0 3h-1V8h1v1zm9-8H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 8h-2V7h-2v2h-2v2h2v2h2v-2h2v6H7V3h14v6z" + }, + "children": [] + }] +}; +exports.ic_filter_9_plus_twotone = ic_filter_9_plus_twotone; \ No newline at end of file diff --git a/dist/md/ic_filter_9_twotone.js b/dist/md/ic_filter_9_twotone.js new file mode 100644 index 000000000..4f7289e4c --- /dev/null +++ b/dist/md/ic_filter_9_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_filter_9_twotone = void 0; +var ic_filter_9_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 7h2v2h-2zM7 17h14V3H7v14zm4-4h4v-2h-2c-1.1 0-2-.89-2-2V7c0-1.11.9-2 2-2h2c1.1 0 2 .89 2 2v6c0 1.11-.9 2-2 2h-4v-2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 1H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zM3 23h16v-2H3V5H1v16c0 1.1.9 2 2 2zm14-10V7c0-1.11-.9-2-2-2h-2c-1.1 0-2 .89-2 2v2c0 1.11.9 2 2 2h2v2h-4v2h4c1.1 0 2-.89 2-2zm-4-4V7h2v2h-2z" + }, + "children": [] + }] +}; +exports.ic_filter_9_twotone = ic_filter_9_twotone; \ No newline at end of file diff --git a/dist/md/ic_filter_alt.js b/dist/md/ic_filter_alt.js new file mode 100644 index 000000000..024243101 --- /dev/null +++ b/dist/md/ic_filter_alt.js @@ -0,0 +1,55 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_filter_alt = void 0; +var ic_filter_alt = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M0,0h24 M24,24H0", + "fill": "none" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M0,0h24 M24,24H0", + "fill": "none" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M4.25,5.61C6.27,8.2,10,13,10,13v6c0,0.55,0.45,1,1,1h2c0.55,0,1-0.45,1-1v-6c0,0,3.72-4.8,5.74-7.39 C20.25,4.95,19.78,4,18.95,4H5.04C4.21,4,3.74,4.95,4.25,5.61z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M4.25,5.61C6.27,8.2,10,13,10,13v6c0,0.55,0.45,1,1,1h2c0.55,0,1-0.45,1-1v-6c0,0,3.72-4.8,5.74-7.39 C20.25,4.95,19.78,4,18.95,4H5.04C4.21,4,3.74,4.95,4.25,5.61z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M0,0h24v24H0V0z", + "fill": "none" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M0,0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }] + }] + }] +}; +exports.ic_filter_alt = ic_filter_alt; \ No newline at end of file diff --git a/dist/md/ic_filter_alt_outline.js b/dist/md/ic_filter_alt_outline.js new file mode 100644 index 000000000..b81ed547d --- /dev/null +++ b/dist/md/ic_filter_alt_outline.js @@ -0,0 +1,55 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_filter_alt_outline = void 0; +var ic_filter_alt_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M0,0h24 M24,24H0", + "fill": "none" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M0,0h24 M24,24H0", + "fill": "none" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M7,6h10l-5.01,6.3L7,6z M4.25,5.61C6.27,8.2,10,13,10,13v6c0,0.55,0.45,1,1,1h2c0.55,0,1-0.45,1-1v-6 c0,0,3.72-4.8,5.74-7.39C20.25,4.95,19.78,4,18.95,4H5.04C4.21,4,3.74,4.95,4.25,5.61z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M7,6h10l-5.01,6.3L7,6z M4.25,5.61C6.27,8.2,10,13,10,13v6c0,0.55,0.45,1,1,1h2c0.55,0,1-0.45,1-1v-6 c0,0,3.72-4.8,5.74-7.39C20.25,4.95,19.78,4,18.95,4H5.04C4.21,4,3.74,4.95,4.25,5.61z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M0,0h24v24H0V0z", + "fill": "none" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M0,0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }] + }] + }] +}; +exports.ic_filter_alt_outline = ic_filter_alt_outline; \ No newline at end of file diff --git a/dist/md/ic_filter_alt_twotone.js b/dist/md/ic_filter_alt_twotone.js new file mode 100644 index 000000000..6115428ab --- /dev/null +++ b/dist/md/ic_filter_alt_twotone.js @@ -0,0 +1,62 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_filter_alt_twotone = void 0; +var ic_filter_alt_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M0,0h24 M24,24H0", + "fill": "none" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M0,0h24 M24,24H0", + "fill": "none" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M7,6h10l-5.01,6.3L7,6z M4.25,5.61C6.27,8.2,10,13,10,13v6c0,0.55,0.45,1,1,1h2c0.55,0,1-0.45,1-1v-6 c0,0,3.72-4.8,5.74-7.39C20.25,4.95,19.78,4,18.95,4H5.04C4.21,4,3.74,4.95,4.25,5.61z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M7,6h10l-5.01,6.3L7,6z M4.25,5.61C6.27,8.2,10,13,10,13v6c0,0.55,0.45,1,1,1h2c0.55,0,1-0.45,1-1v-6 c0,0,3.72-4.8,5.74-7.39C20.25,4.95,19.78,4,18.95,4H5.04C4.21,4,3.74,4.95,4.25,5.61z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M0,0h24v24H0V0z", + "fill": "none" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M0,0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }] + }] + }, { + "name": "polygon", + "attribs": { + "opacity": ".3", + "points": "7,6 17,6 11.99,12.3" + }, + "children": [] + }] +}; +exports.ic_filter_alt_twotone = ic_filter_alt_twotone; \ No newline at end of file diff --git a/dist/md/ic_filter_b_and_w.js b/dist/md/ic_filter_b_and_w.js new file mode 100644 index 000000000..54b9ca86e --- /dev/null +++ b/dist/md/ic_filter_b_and_w.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_filter_b_and_w = void 0; +var ic_filter_b_and_w = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16l-7-8v8H5l7-8V5h7v14z" + }, + "children": [] + }] +}; +exports.ic_filter_b_and_w = ic_filter_b_and_w; \ No newline at end of file diff --git a/dist/md/ic_filter_b_and_w_outline.js b/dist/md/ic_filter_b_and_w_outline.js new file mode 100644 index 000000000..35f3f6615 --- /dev/null +++ b/dist/md/ic_filter_b_and_w_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_filter_b_and_w_outline = void 0; +var ic_filter_b_and_w_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16l-7-8v8H5l7-8V5h7v14z" + }, + "children": [] + }] +}; +exports.ic_filter_b_and_w_outline = ic_filter_b_and_w_outline; \ No newline at end of file diff --git a/dist/md/ic_filter_b_and_w_twotone.js b/dist/md/ic_filter_b_and_w_twotone.js new file mode 100644 index 000000000..f13bd0744 --- /dev/null +++ b/dist/md/ic_filter_b_and_w_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_filter_b_and_w_twotone = void 0; +var ic_filter_b_and_w_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 5h-7v6l7 8zm-7 14v-8l-7 8z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 19V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zm-9 0H5l7-8V5h7v14l-7-8v8z" + }, + "children": [] + }] +}; +exports.ic_filter_b_and_w_twotone = ic_filter_b_and_w_twotone; \ No newline at end of file diff --git a/dist/md/ic_filter_center_focus.js b/dist/md/ic_filter_center_focus.js new file mode 100644 index 000000000..6957fbe0d --- /dev/null +++ b/dist/md/ic_filter_center_focus.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_filter_center_focus = void 0; +var ic_filter_center_focus = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 15H3v4c0 1.1.9 2 2 2h4v-2H5v-4zM5 5h4V3H5c-1.1 0-2 .9-2 2v4h2V5zm14-2h-4v2h4v4h2V5c0-1.1-.9-2-2-2zm0 16h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4zM12 9c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z" + }, + "children": [] + }] +}; +exports.ic_filter_center_focus = ic_filter_center_focus; \ No newline at end of file diff --git a/dist/md/ic_filter_center_focus_outline.js b/dist/md/ic_filter_center_focus_outline.js new file mode 100644 index 000000000..01a37ce53 --- /dev/null +++ b/dist/md/ic_filter_center_focus_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_filter_center_focus_outline = void 0; +var ic_filter_center_focus_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 15H3v4c0 1.1.9 2 2 2h4v-2H5v-4zM5 5h4V3H5c-1.1 0-2 .9-2 2v4h2V5zm14-2h-4v2h4v4h2V5c0-1.1-.9-2-2-2zm0 16h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4zM12 9c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z" + }, + "children": [] + }] +}; +exports.ic_filter_center_focus_outline = ic_filter_center_focus_outline; \ No newline at end of file diff --git a/dist/md/ic_filter_center_focus_twotone.js b/dist/md/ic_filter_center_focus_twotone.js new file mode 100644 index 000000000..66284348f --- /dev/null +++ b/dist/md/ic_filter_center_focus_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_filter_center_focus_twotone = void 0; +var ic_filter_center_focus_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 5h4V3H5c-1.1 0-2 .9-2 2v4h2V5zm7 4c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm7-6h-4v2h4v4h2V5c0-1.1-.9-2-2-2zm0 16h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4zM5 15H3v4c0 1.1.9 2 2 2h4v-2H5v-4z" + }, + "children": [] + }] +}; +exports.ic_filter_center_focus_twotone = ic_filter_center_focus_twotone; \ No newline at end of file diff --git a/dist/md/ic_filter_drama.js b/dist/md/ic_filter_drama.js new file mode 100644 index 000000000..7e9a0aa5e --- /dev/null +++ b/dist/md/ic_filter_drama.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_filter_drama = void 0; +var ic_filter_drama = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.61 5.64 5.36 8.04 2.35 8.36 0 10.9 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4h2c0-2.76-1.86-5.08-4.4-5.78C8.61 6.88 10.2 6 12 6c3.03 0 5.5 2.47 5.5 5.5v.5H19c1.65 0 3 1.35 3 3s-1.35 3-3 3z" + }, + "children": [] + }] +}; +exports.ic_filter_drama = ic_filter_drama; \ No newline at end of file diff --git a/dist/md/ic_filter_drama_outline.js b/dist/md/ic_filter_drama_outline.js new file mode 100644 index 000000000..dd2fe6265 --- /dev/null +++ b/dist/md/ic_filter_drama_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_filter_drama_outline = void 0; +var ic_filter_drama_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.61 5.64 5.36 8.04 2.35 8.36 0 10.9 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4h2c0-2.76-1.86-5.08-4.4-5.78C8.61 6.88 10.2 6 12 6c3.03 0 5.5 2.47 5.5 5.5v.5H19c1.65 0 3 1.35 3 3s-1.35 3-3 3z" + }, + "children": [] + }] +}; +exports.ic_filter_drama_outline = ic_filter_drama_outline; \ No newline at end of file diff --git a/dist/md/ic_filter_drama_twotone.js b/dist/md/ic_filter_drama_twotone.js new file mode 100644 index 000000000..44409e52f --- /dev/null +++ b/dist/md/ic_filter_drama_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_filter_drama_twotone = void 0; +var ic_filter_drama_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 12h-1.5v-.5C17.5 8.47 15.03 6 12 6c-1.8 0-3.39.88-4.4 2.22 2.54.7 4.4 3.02 4.4 5.78h-2c0-2.21-1.79-4-4-4s-4 1.79-4 4 1.79 4 4 4h13c1.65 0 3-1.35 3-3s-1.35-3-3-3z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.61 5.64 5.36 8.04 2.35 8.36 0 10.9 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4h2c0-2.76-1.86-5.08-4.4-5.78C8.61 6.88 10.2 6 12 6c3.03 0 5.5 2.47 5.5 5.5v.5H19c1.65 0 3 1.35 3 3s-1.35 3-3 3z" + }, + "children": [] + }] +}; +exports.ic_filter_drama_twotone = ic_filter_drama_twotone; \ No newline at end of file diff --git a/dist/md/ic_filter_frames.js b/dist/md/ic_filter_frames.js new file mode 100644 index 000000000..19f39dbf6 --- /dev/null +++ b/dist/md/ic_filter_frames.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_filter_frames = void 0; +var ic_filter_frames = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 4h-4l-4-4-4 4H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H4V6h4.52l3.52-3.5L15.52 6H20v14zM18 8H6v10h12" + }, + "children": [] + }] +}; +exports.ic_filter_frames = ic_filter_frames; \ No newline at end of file diff --git a/dist/md/ic_filter_frames_outline.js b/dist/md/ic_filter_frames_outline.js new file mode 100644 index 000000000..08d567dfc --- /dev/null +++ b/dist/md/ic_filter_frames_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_filter_frames_outline = void 0; +var ic_filter_frames_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 4h-4l-4-4-4 4H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H4V6h4.52l3.52-3.5L15.52 6H20v14zM6 18h12V8H6v10zm2-8h8v6H8v-6z" + }, + "children": [] + }] +}; +exports.ic_filter_frames_outline = ic_filter_frames_outline; \ No newline at end of file diff --git a/dist/md/ic_filter_frames_twotone.js b/dist/md/ic_filter_frames_twotone.js new file mode 100644 index 000000000..928eccbc0 --- /dev/null +++ b/dist/md/ic_filter_frames_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_filter_frames_twotone = void 0; +var ic_filter_frames_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8 10h8v6H8z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 4h-4l-4-4-4 4H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H4V6h4.52l3.52-3.5L15.52 6H20v14zM6 18h12V8H6v10zm2-8h8v6H8v-6z" + }, + "children": [] + }] +}; +exports.ic_filter_frames_twotone = ic_filter_frames_twotone; \ No newline at end of file diff --git a/dist/md/ic_filter_hdr.js b/dist/md/ic_filter_hdr.js new file mode 100644 index 000000000..bd0f4feba --- /dev/null +++ b/dist/md/ic_filter_hdr.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_filter_hdr = void 0; +var ic_filter_hdr = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 6l-3.75 5 2.85 3.8-1.6 1.2C9.81 13.75 7 10 7 10l-6 8h22L14 6z" + }, + "children": [] + }] +}; +exports.ic_filter_hdr = ic_filter_hdr; \ No newline at end of file diff --git a/dist/md/ic_filter_hdr_outline.js b/dist/md/ic_filter_hdr_outline.js new file mode 100644 index 000000000..b5b604388 --- /dev/null +++ b/dist/md/ic_filter_hdr_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_filter_hdr_outline = void 0; +var ic_filter_hdr_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 6l-4.22 5.63 1.25 1.67L14 9.33 19 16h-8.46l-4.01-5.37L1 18h22L14 6zM5 16l1.52-2.03L8.04 16H5z" + }, + "children": [] + }] +}; +exports.ic_filter_hdr_outline = ic_filter_hdr_outline; \ No newline at end of file diff --git a/dist/md/ic_filter_hdr_twotone.js b/dist/md/ic_filter_hdr_twotone.js new file mode 100644 index 000000000..fa24193e4 --- /dev/null +++ b/dist/md/ic_filter_hdr_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_filter_hdr_twotone = void 0; +var ic_filter_hdr_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 16h3.04l-1.52-2.03z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9.78 11.63l1.25 1.67L14 9.33 19 16h-8.46l-4.01-5.37L1 18h22L14 6l-4.22 5.63zM5 16l1.52-2.03L8.04 16H5z" + }, + "children": [] + }] +}; +exports.ic_filter_hdr_twotone = ic_filter_hdr_twotone; \ No newline at end of file diff --git a/dist/md/ic_filter_list.js b/dist/md/ic_filter_list.js new file mode 100644 index 000000000..3c4b37898 --- /dev/null +++ b/dist/md/ic_filter_list.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_filter_list = void 0; +var ic_filter_list = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 18h4v-2h-4v2zM3 6v2h18V6H3zm3 7h12v-2H6v2z" + }, + "children": [] + }] +}; +exports.ic_filter_list = ic_filter_list; \ No newline at end of file diff --git a/dist/md/ic_filter_list_alt.js b/dist/md/ic_filter_list_alt.js new file mode 100644 index 000000000..3e8db96bf --- /dev/null +++ b/dist/md/ic_filter_list_alt.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_filter_list_alt = void 0; +var ic_filter_list_alt = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M0 0h24m0 24H0", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4.25 5.66c.1.13 5.74 7.33 5.74 7.33V19c0 .55.45 1 1.01 1h2.01c.55 0 1.01-.45 1.01-1v-6.02s5.49-7.02 5.75-7.34C20.03 5.32 20 5 20 5c0-.55-.45-1-1.01-1H5.01C4.4 4 4 4.48 4 5c0 .2.06.44.25.66z" + }, + "children": [] + }] +}; +exports.ic_filter_list_alt = ic_filter_list_alt; \ No newline at end of file diff --git a/dist/md/ic_filter_list_outline.js b/dist/md/ic_filter_list_outline.js new file mode 100644 index 000000000..e999c45eb --- /dev/null +++ b/dist/md/ic_filter_list_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_filter_list_outline = void 0; +var ic_filter_list_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 18h4v-2h-4v2zM3 6v2h18V6H3zm3 7h12v-2H6v2z" + }, + "children": [] + }] +}; +exports.ic_filter_list_outline = ic_filter_list_outline; \ No newline at end of file diff --git a/dist/md/ic_filter_list_twotone.js b/dist/md/ic_filter_list_twotone.js new file mode 100644 index 000000000..aba3a7e6d --- /dev/null +++ b/dist/md/ic_filter_list_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_filter_list_twotone = void 0; +var ic_filter_list_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 18h4v-2h-4v2zM3 6v2h18V6H3zm3 7h12v-2H6v2z" + }, + "children": [] + }] +}; +exports.ic_filter_list_twotone = ic_filter_list_twotone; \ No newline at end of file diff --git a/dist/md/ic_filter_none.js b/dist/md/ic_filter_none.js new file mode 100644 index 000000000..82b168f9b --- /dev/null +++ b/dist/md/ic_filter_none.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_filter_none = void 0; +var ic_filter_none = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14z" + }, + "children": [] + }] +}; +exports.ic_filter_none = ic_filter_none; \ No newline at end of file diff --git a/dist/md/ic_filter_none_outline.js b/dist/md/ic_filter_none_outline.js new file mode 100644 index 000000000..01ca2f866 --- /dev/null +++ b/dist/md/ic_filter_none_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_filter_none_outline = void 0; +var ic_filter_none_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14z" + }, + "children": [] + }] +}; +exports.ic_filter_none_outline = ic_filter_none_outline; \ No newline at end of file diff --git a/dist/md/ic_filter_none_twotone.js b/dist/md/ic_filter_none_twotone.js new file mode 100644 index 000000000..98a264904 --- /dev/null +++ b/dist/md/ic_filter_none_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_filter_none_twotone = void 0; +var ic_filter_none_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 3h14v14H7z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 23h16v-2H3V5H1v16c0 1.1.9 2 2 2zM21 1H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14z" + }, + "children": [] + }] +}; +exports.ic_filter_none_twotone = ic_filter_none_twotone; \ No newline at end of file diff --git a/dist/md/ic_filter_outline.js b/dist/md/ic_filter_outline.js new file mode 100644 index 000000000..d961c47ce --- /dev/null +++ b/dist/md/ic_filter_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_filter_outline = void 0; +var ic_filter_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.96 10.29l-2.75 3.54-1.96-2.36L8.5 15h11l-3.54-4.71zM3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14z" + }, + "children": [] + }] +}; +exports.ic_filter_outline = ic_filter_outline; \ No newline at end of file diff --git a/dist/md/ic_filter_tilt_shift.js b/dist/md/ic_filter_tilt_shift.js new file mode 100644 index 000000000..e9d1b1966 --- /dev/null +++ b/dist/md/ic_filter_tilt_shift.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_filter_tilt_shift = void 0; +var ic_filter_tilt_shift = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 4.07V2.05c-2.01.2-3.84 1-5.32 2.21L7.1 5.69c1.11-.86 2.44-1.44 3.9-1.62zm7.32.19C16.84 3.05 15.01 2.25 13 2.05v2.02c1.46.18 2.79.76 3.9 1.62l1.42-1.43zM19.93 11h2.02c-.2-2.01-1-3.84-2.21-5.32L18.31 7.1c.86 1.11 1.44 2.44 1.62 3.9zM5.69 7.1L4.26 5.68C3.05 7.16 2.25 8.99 2.05 11h2.02c.18-1.46.76-2.79 1.62-3.9zM4.07 13H2.05c.2 2.01 1 3.84 2.21 5.32l1.43-1.43c-.86-1.1-1.44-2.43-1.62-3.89zM15 12c0-1.66-1.34-3-3-3s-3 1.34-3 3 1.34 3 3 3 3-1.34 3-3zm3.31 4.9l1.43 1.43c1.21-1.48 2.01-3.32 2.21-5.32h-2.02c-.18 1.45-.76 2.78-1.62 3.89zM13 19.93v2.02c2.01-.2 3.84-1 5.32-2.21l-1.43-1.43c-1.1.86-2.43 1.44-3.89 1.62zm-7.32-.19C7.16 20.95 9 21.75 11 21.95v-2.02c-1.46-.18-2.79-.76-3.9-1.62l-1.42 1.43z" + }, + "children": [] + }] +}; +exports.ic_filter_tilt_shift = ic_filter_tilt_shift; \ No newline at end of file diff --git a/dist/md/ic_filter_tilt_shift_outline.js b/dist/md/ic_filter_tilt_shift_outline.js new file mode 100644 index 000000000..eeaa808e6 --- /dev/null +++ b/dist/md/ic_filter_tilt_shift_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_filter_tilt_shift_outline = void 0; +var ic_filter_tilt_shift_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 4.07V2.05c-2.01.2-3.84 1-5.32 2.21L7.1 5.69c1.11-.86 2.44-1.44 3.9-1.62zm7.32.19C16.84 3.05 15.01 2.25 13 2.05v2.02c1.46.18 2.79.76 3.9 1.62l1.42-1.43zM19.93 11h2.02c-.2-2.01-1-3.84-2.21-5.32L18.31 7.1c.86 1.11 1.44 2.44 1.62 3.9zM5.69 7.1L4.26 5.68C3.05 7.16 2.25 8.99 2.05 11h2.02c.18-1.46.76-2.79 1.62-3.9zM4.07 13H2.05c.2 2.01 1 3.84 2.21 5.32l1.43-1.43c-.86-1.1-1.44-2.43-1.62-3.89zM15 12c0-1.66-1.34-3-3-3s-3 1.34-3 3 1.34 3 3 3 3-1.34 3-3zm3.31 4.9l1.43 1.43c1.21-1.48 2.01-3.32 2.21-5.32h-2.02c-.18 1.45-.76 2.78-1.62 3.89zM13 19.93v2.02c2.01-.2 3.84-1 5.32-2.21l-1.43-1.43c-1.1.86-2.43 1.44-3.89 1.62zm-7.32-.19C7.16 20.95 9 21.75 11 21.95v-2.02c-1.46-.18-2.79-.76-3.9-1.62l-1.42 1.43z" + }, + "children": [] + }] +}; +exports.ic_filter_tilt_shift_outline = ic_filter_tilt_shift_outline; \ No newline at end of file diff --git a/dist/md/ic_filter_tilt_shift_twotone.js b/dist/md/ic_filter_tilt_shift_twotone.js new file mode 100644 index 000000000..21182e247 --- /dev/null +++ b/dist/md/ic_filter_tilt_shift_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_filter_tilt_shift_twotone = void 0; +var ic_filter_tilt_shift_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 2.05v2.02c1.46.18 2.79.76 3.9 1.62l1.42-1.43C16.84 3.05 15.01 2.25 13 2.05zm0 17.88v2.02c2.01-.2 3.84-1 5.32-2.21l-1.43-1.43c-1.1.86-2.43 1.44-3.89 1.62zm-8.74-1.61l1.43-1.43c-.86-1.1-1.44-2.43-1.62-3.89H2.05c.2 2.01 1 3.84 2.21 5.32zM2.05 11h2.02c.18-1.46.76-2.79 1.62-3.9L4.26 5.68C3.05 7.16 2.25 8.99 2.05 11zm16.26-3.9c.86 1.11 1.44 2.44 1.62 3.9h2.02c-.2-2.01-1-3.84-2.21-5.32L18.31 7.1zM7.1 5.69c1.11-.86 2.44-1.44 3.9-1.62V2.05c-2.01.2-3.84 1-5.32 2.21L7.1 5.69zM5.68 19.74C7.16 20.95 9 21.75 11 21.95v-2.02c-1.46-.18-2.79-.76-3.9-1.62l-1.42 1.43zm16.27-6.73h-2.02c-.18 1.45-.76 2.78-1.62 3.89l1.43 1.43c1.21-1.48 2.01-3.32 2.21-5.32zM9 12c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3z" + }, + "children": [] + }] +}; +exports.ic_filter_tilt_shift_twotone = ic_filter_tilt_shift_twotone; \ No newline at end of file diff --git a/dist/md/ic_filter_twotone.js b/dist/md/ic_filter_twotone.js new file mode 100644 index 000000000..d8d6b11d9 --- /dev/null +++ b/dist/md/ic_filter_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_filter_twotone = void 0; +var ic_filter_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 17h14V3H7v14zm4.25-5.53l1.96 2.36 2.75-3.54L19.5 15h-11l2.75-3.53z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M1 21c0 1.1.9 2 2 2h16v-2H3V5H1v16zM21 1H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zm-5.04-6.71l-2.75 3.54-1.96-2.36L8.5 15h11z" + }, + "children": [] + }] +}; +exports.ic_filter_twotone = ic_filter_twotone; \ No newline at end of file diff --git a/dist/md/ic_filter_vintage.js b/dist/md/ic_filter_vintage.js new file mode 100644 index 000000000..6f5861c73 --- /dev/null +++ b/dist/md/ic_filter_vintage.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_filter_vintage = void 0; +var ic_filter_vintage = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18.7 12.4c-.28-.16-.57-.29-.86-.4.29-.11.58-.24.86-.4 1.92-1.11 2.99-3.12 3-5.19-1.79-1.03-4.07-1.11-6 0-.28.16-.54.35-.78.54.05-.31.08-.63.08-.95 0-2.22-1.21-4.15-3-5.19C10.21 1.85 9 3.78 9 6c0 .32.03.64.08.95-.24-.2-.5-.39-.78-.55-1.92-1.11-4.2-1.03-6 0 0 2.07 1.07 4.08 3 5.19.28.16.57.29.86.4-.29.11-.58.24-.86.4-1.92 1.11-2.99 3.12-3 5.19 1.79 1.03 4.07 1.11 6 0 .28-.16.54-.35.78-.54-.05.32-.08.64-.08.96 0 2.22 1.21 4.15 3 5.19 1.79-1.04 3-2.97 3-5.19 0-.32-.03-.64-.08-.95.24.2.5.38.78.54 1.92 1.11 4.2 1.03 6 0-.01-2.07-1.08-4.08-3-5.19zM12 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z" + }, + "children": [] + }] +}; +exports.ic_filter_vintage = ic_filter_vintage; \ No newline at end of file diff --git a/dist/md/ic_filter_vintage_outline.js b/dist/md/ic_filter_vintage_outline.js new file mode 100644 index 000000000..bff49083d --- /dev/null +++ b/dist/md/ic_filter_vintage_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_filter_vintage_outline = void 0; +var ic_filter_vintage_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18.7 12.4c-.28-.16-.57-.29-.86-.4.29-.11.58-.24.86-.4 1.92-1.11 2.99-3.12 3-5.19-.91-.52-1.95-.8-3.01-.8-1.02 0-2.05.26-2.99.8-.28.16-.54.35-.78.54.05-.31.08-.63.08-.95 0-2.22-1.21-4.15-3-5.19C10.21 1.85 9 3.78 9 6c0 .32.03.64.08.95-.24-.2-.5-.39-.78-.55-.94-.54-1.97-.8-2.99-.8-1.05 0-2.1.28-3.01.8 0 2.07 1.07 4.08 3 5.19.28.16.57.29.86.4-.29.11-.58.24-.86.4-1.92 1.11-2.99 3.12-3 5.19.91.52 1.95.8 3.01.8 1.02 0 2.05-.26 2.99-.8.28-.16.54-.35.78-.54-.05.32-.08.64-.08.96 0 2.22 1.21 4.15 3 5.19 1.79-1.04 3-2.97 3-5.19 0-.32-.03-.64-.08-.95.24.2.5.38.78.54.94.54 1.97.8 2.99.8 1.05 0 2.1-.28 3.01-.8-.01-2.07-1.08-4.08-3-5.19zm-2.54-3.88c.21-.17.38-.29.54-.37.61-.35 1.3-.54 2-.54.27 0 .53.03.79.08-.31.91-.94 1.69-1.78 2.18-.17.1-.36.18-.58.27l-1.38.52c-.17-.46-.41-.87-.72-1.24l1.13-.9zM12 3.37c.63.72 1 1.66 1 2.63 0 .19-.02.41-.05.63l-.23 1.44C12.48 8.03 12.24 8 12 8s-.48.03-.71.07l-.23-1.44C11.02 6.41 11 6.19 11 6c0-.98.37-1.91 1-2.63zM4.51 7.68c.26-.06.53-.08.8-.08.69 0 1.38.18 1.99.54.15.09.32.2.49.35l1.15.96c-.3.36-.53.76-.7 1.2l-1.38-.52c-.21-.09-.4-.18-.56-.27-.87-.5-1.49-1.27-1.79-2.18zm3.33 7.79c-.21.17-.38.29-.54.37-.61.35-1.3.54-2 .54-.27 0-.53-.03-.79-.08.31-.91.94-1.69 1.78-2.18.17-.1.36-.18.58-.27l1.38-.52c.16.46.41.88.72 1.24l-1.13.9zM12 20.63c-.63-.72-1-1.66-1-2.63 0-.2.02-.41.06-.65l.22-1.42c.23.04.47.07.72.07.24 0 .48-.03.71-.07l.23 1.44c.04.22.06.44.06.63 0 .98-.37 1.91-1 2.63zm6.69-4.24c-.69 0-1.38-.18-1.99-.54-.18-.1-.34-.22-.49-.34l-1.15-.96c.3-.36.54-.76.7-1.21l1.38.52c.22.08.41.17.57.26.85.49 1.47 1.27 1.78 2.18-.27.07-.54.09-.8.09z" + }, + "children": [] + }] +}; +exports.ic_filter_vintage_outline = ic_filter_vintage_outline; \ No newline at end of file diff --git a/dist/md/ic_filter_vintage_twotone.js b/dist/md/ic_filter_vintage_twotone.js new file mode 100644 index 000000000..b3919f067 --- /dev/null +++ b/dist/md/ic_filter_vintage_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_filter_vintage_twotone = void 0; +var ic_filter_vintage_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18.69 7.61c-.7 0-1.39.19-2 .54-.16.09-.32.21-.54.37l-1.13.9c.31.36.56.78.72 1.24l1.38-.52c.22-.08.41-.17.58-.27.84-.49 1.47-1.27 1.78-2.18-.26-.06-.52-.08-.79-.08zm-1.56 6.26l-1.38-.52c-.16.45-.4.85-.7 1.21l1.15.96c.15.12.31.24.49.34.61.35 1.3.54 1.99.54.27 0 .53-.03.8-.08-.31-.91-.94-1.69-1.78-2.18-.16-.1-.35-.19-.57-.27zM11 6c0 .19.02.41.05.63l.23 1.44c.24-.04.48-.07.72-.07s.48.03.71.07l.23-1.44c.04-.22.06-.44.06-.63 0-.98-.37-1.91-1-2.63-.63.72-1 1.65-1 2.63zm1.71 9.93c-.23.04-.47.07-.71.07-.25 0-.49-.03-.72-.07l-.22 1.42c-.04.24-.06.45-.06.65 0 .98.37 1.91 1 2.63.63-.72 1-1.66 1-2.63 0-.19-.02-.41-.05-.63l-.24-1.44zm-5.84-5.81l1.38.52c.16-.44.4-.85.7-1.2L7.8 8.49c-.17-.15-.34-.27-.49-.35-.62-.36-1.3-.54-2-.54-.27 0-.54.03-.81.08.3.91.93 1.68 1.79 2.18.17.09.36.18.58.26zm0 3.74c-.22.08-.41.17-.58.27-.84.49-1.47 1.27-1.78 2.18.26.05.52.08.79.08.7 0 1.39-.19 2-.54.16-.09.32-.21.54-.37l1.13-.89c-.31-.36-.56-.78-.72-1.24l-1.38.51z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18.7 12.4c-.28-.16-.57-.29-.86-.4.29-.11.58-.24.86-.4 1.92-1.11 2.99-3.12 3-5.19-.91-.52-1.95-.8-3.01-.8-1.02 0-2.05.26-2.99.8-.28.16-.54.35-.78.54.05-.31.08-.63.08-.95 0-2.22-1.21-4.15-3-5.19C10.21 1.85 9 3.78 9 6c0 .32.03.64.08.95-.24-.2-.5-.39-.78-.55-.94-.54-1.97-.8-2.99-.8-1.05 0-2.1.28-3.01.8 0 2.07 1.07 4.08 3 5.19.28.16.57.29.86.4-.29.11-.58.24-.86.4-1.92 1.11-2.99 3.12-3 5.19.91.52 1.95.8 3.01.8 1.02 0 2.05-.26 2.99-.8.28-.16.54-.35.78-.54-.05.32-.08.64-.08.96 0 2.22 1.21 4.15 3 5.19 1.79-1.04 3-2.97 3-5.19 0-.32-.03-.64-.08-.95.24.2.5.38.78.54.94.54 1.97.8 2.99.8 1.05 0 2.1-.28 3.01-.8-.01-2.07-1.08-4.08-3-5.19zM4.51 7.68c.26-.06.53-.08.8-.08.69 0 1.38.18 1.99.54.15.09.32.2.49.35l1.15.96c-.3.36-.53.76-.7 1.2l-1.38-.52c-.21-.09-.4-.18-.56-.27-.87-.5-1.49-1.27-1.79-2.18zm3.33 7.79c-.21.17-.38.29-.54.37-.61.35-1.3.54-2 .54-.27 0-.53-.03-.79-.08.31-.91.94-1.69 1.78-2.18.17-.1.36-.18.58-.27l1.38-.52c.16.46.41.88.72 1.24l-1.13.9zM12 3.37c.63.72 1 1.66 1 2.63 0 .19-.02.41-.05.63l-.23 1.44C12.48 8.03 12.24 8 12 8s-.48.03-.71.07l-.23-1.44C11.02 6.41 11 6.19 11 6c0-.98.37-1.91 1-2.63zm0 17.26c-.63-.72-1-1.66-1-2.63 0-.2.02-.41.06-.65l.22-1.42c.23.04.47.07.72.07.24 0 .48-.03.71-.07l.23 1.44c.04.22.06.44.06.63 0 .98-.37 1.91-1 2.63zM12 14c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm4.16-5.48c.21-.17.38-.29.54-.37.61-.35 1.3-.54 2-.54.27 0 .53.03.79.08-.31.91-.94 1.69-1.78 2.18-.17.1-.36.18-.58.27l-1.38.52c-.17-.46-.41-.87-.72-1.24l1.13-.9zm2.53 7.87c-.69 0-1.38-.18-1.99-.54-.18-.1-.34-.22-.49-.34l-1.15-.96c.3-.36.54-.76.7-1.21l1.38.52c.22.08.41.17.57.26.85.49 1.47 1.27 1.78 2.18-.27.07-.54.09-.8.09z" + }, + "children": [] + }] +}; +exports.ic_filter_vintage_twotone = ic_filter_vintage_twotone; \ No newline at end of file diff --git a/dist/md/ic_find_in_page.js b/dist/md/ic_find_in_page.js new file mode 100644 index 000000000..1323b6390 --- /dev/null +++ b/dist/md/ic_find_in_page.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_find_in_page = void 0; +var ic_find_in_page = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 19.59V8l-6-6H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c.45 0 .85-.15 1.19-.4l-4.43-4.43c-.8.52-1.74.83-2.76.83-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5c0 1.02-.31 1.96-.83 2.75L20 19.59zM9 13c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3z" + }, + "children": [] + }] +}; +exports.ic_find_in_page = ic_find_in_page; \ No newline at end of file diff --git a/dist/md/ic_find_in_page_outline.js b/dist/md/ic_find_in_page_outline.js new file mode 100644 index 000000000..c5d77343f --- /dev/null +++ b/dist/md/ic_find_in_page_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_find_in_page_outline = void 0; +var ic_find_in_page_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zM6 4h7l5 5v8.58l-1.84-1.84c1.28-1.94 1.07-4.57-.64-6.28C14.55 8.49 13.28 8 12 8c-1.28 0-2.55.49-3.53 1.46-1.95 1.95-1.95 5.11 0 7.05.97.97 2.25 1.46 3.53 1.46.96 0 1.92-.28 2.75-.83L17.6 20H6V4zm8.11 11.1c-.56.56-1.31.88-2.11.88s-1.55-.31-2.11-.88c-.56-.56-.88-1.31-.88-2.11s.31-1.55.88-2.11c.56-.57 1.31-.88 2.11-.88s1.55.31 2.11.88c.56.56.88 1.31.88 2.11s-.31 1.55-.88 2.11z" + }, + "children": [] + }] +}; +exports.ic_find_in_page_outline = ic_find_in_page_outline; \ No newline at end of file diff --git a/dist/md/ic_find_in_page_twotone.js b/dist/md/ic_find_in_page_twotone.js new file mode 100644 index 000000000..953b0c76d --- /dev/null +++ b/dist/md/ic_find_in_page_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_find_in_page_twotone = void 0; +var ic_find_in_page_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 4v16h11.6l-2.85-2.85c-.83.55-1.79.83-2.75.83-1.28 0-2.55-.49-3.53-1.46-1.95-1.95-1.95-5.11 0-7.05C9.45 8.49 10.72 8 12 8c1.28 0 2.55.49 3.53 1.46 1.71 1.71 1.92 4.34.64 6.28L18 17.58V9l-5-5H6z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm4 15.58l-1.84-1.84c1.28-1.94 1.07-4.57-.64-6.28C14.55 8.49 13.28 8 12 8c-1.28 0-2.55.49-3.53 1.46-1.95 1.95-1.95 5.11 0 7.05.97.97 2.25 1.46 3.53 1.46.96 0 1.92-.28 2.75-.83L17.6 20H6V4h7l5 5v8.58zm-3.01-4.59c0 .8-.31 1.55-.88 2.11-.56.56-1.31.88-2.11.88s-1.55-.31-2.11-.88c-.56-.56-.88-1.31-.88-2.11s.31-1.55.88-2.11S11.2 10 12 10s1.55.31 2.11.88c.57.56.88 1.31.88 2.11z" + }, + "children": [] + }] +}; +exports.ic_find_in_page_twotone = ic_find_in_page_twotone; \ No newline at end of file diff --git a/dist/md/ic_find_replace.js b/dist/md/ic_find_replace.js new file mode 100644 index 000000000..1d3324d40 --- /dev/null +++ b/dist/md/ic_find_replace.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_find_replace = void 0; +var ic_find_replace = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 6c1.38 0 2.63.56 3.54 1.46L12 10h6V4l-2.05 2.05C14.68 4.78 12.93 4 11 4c-3.53 0-6.43 2.61-6.92 6H6.1c.46-2.28 2.48-4 4.9-4zm5.64 9.14c.66-.9 1.12-1.97 1.28-3.14H15.9c-.46 2.28-2.48 4-4.9 4-1.38 0-2.63-.56-3.54-1.46L10 12H4v6l2.05-2.05C7.32 17.22 9.07 18 11 18c1.55 0 2.98-.51 4.14-1.36L20 21.49 21.49 20l-4.85-4.86z" + }, + "children": [] + }] +}; +exports.ic_find_replace = ic_find_replace; \ No newline at end of file diff --git a/dist/md/ic_find_replace_outline.js b/dist/md/ic_find_replace_outline.js new file mode 100644 index 000000000..afb4b334e --- /dev/null +++ b/dist/md/ic_find_replace_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_find_replace_outline = void 0; +var ic_find_replace_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 6c1.38 0 2.63.56 3.54 1.46L12 10h6V4l-2.05 2.05C14.68 4.78 12.93 4 11 4c-3.53 0-6.43 2.61-6.92 6H6.1c.46-2.28 2.48-4 4.9-4zm5.64 9.14c.66-.9 1.12-1.97 1.28-3.14H15.9c-.46 2.28-2.48 4-4.9 4-1.38 0-2.63-.56-3.54-1.46L10 12H4v6l2.05-2.05C7.32 17.22 9.07 18 11 18c1.55 0 2.98-.51 4.14-1.36L20 21.49 21.49 20l-4.85-4.86z" + }, + "children": [] + }] +}; +exports.ic_find_replace_outline = ic_find_replace_outline; \ No newline at end of file diff --git a/dist/md/ic_find_replace_twotone.js b/dist/md/ic_find_replace_twotone.js new file mode 100644 index 000000000..f8f8dd78a --- /dev/null +++ b/dist/md/ic_find_replace_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_find_replace_twotone = void 0; +var ic_find_replace_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 6c1.38 0 2.63.56 3.54 1.46L12 10h6V4l-2.05 2.05C14.68 4.78 12.93 4 11 4c-3.53 0-6.43 2.61-6.92 6H6.1c.46-2.28 2.48-4 4.9-4zm5.64 9.14c.66-.9 1.12-1.97 1.28-3.14H15.9c-.46 2.28-2.48 4-4.9 4-1.38 0-2.63-.56-3.54-1.46L10 12H4v6l2.05-2.05C7.32 17.22 9.07 18 11 18c1.55 0 2.98-.51 4.14-1.36L20 21.49 21.49 20l-4.85-4.86z" + }, + "children": [] + }] +}; +exports.ic_find_replace_twotone = ic_find_replace_twotone; \ No newline at end of file diff --git a/dist/md/ic_fingerprint.js b/dist/md/ic_fingerprint.js new file mode 100644 index 000000000..8c568eb11 --- /dev/null +++ b/dist/md/ic_fingerprint.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_fingerprint = void 0; +var ic_fingerprint = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17.81 4.47c-.08 0-.16-.02-.23-.06C15.66 3.42 14 3 12.01 3c-1.98 0-3.86.47-5.57 1.41-.24.13-.54.04-.68-.2-.13-.24-.04-.55.2-.68C7.82 2.52 9.86 2 12.01 2c2.13 0 3.99.47 6.03 1.52.25.13.34.43.21.67-.09.18-.26.28-.44.28zM3.5 9.72c-.1 0-.2-.03-.29-.09-.23-.16-.28-.47-.12-.7.99-1.4 2.25-2.5 3.75-3.27C9.98 4.04 14 4.03 17.15 5.65c1.5.77 2.76 1.86 3.75 3.25.16.22.11.54-.12.7-.23.16-.54.11-.7-.12-.9-1.26-2.04-2.25-3.39-2.94-2.87-1.47-6.54-1.47-9.4.01-1.36.7-2.5 1.7-3.4 2.96-.08.14-.23.21-.39.21zm6.25 12.07c-.13 0-.26-.05-.35-.15-.87-.87-1.34-1.43-2.01-2.64-.69-1.23-1.05-2.73-1.05-4.34 0-2.97 2.54-5.39 5.66-5.39s5.66 2.42 5.66 5.39c0 .28-.22.5-.5.5s-.5-.22-.5-.5c0-2.42-2.09-4.39-4.66-4.39-2.57 0-4.66 1.97-4.66 4.39 0 1.44.32 2.77.93 3.85.64 1.15 1.08 1.64 1.85 2.42.19.2.19.51 0 .71-.11.1-.24.15-.37.15zm7.17-1.85c-1.19 0-2.24-.3-3.1-.89-1.49-1.01-2.38-2.65-2.38-4.39 0-.28.22-.5.5-.5s.5.22.5.5c0 1.41.72 2.74 1.94 3.56.71.48 1.54.71 2.54.71.24 0 .64-.03 1.04-.1.27-.05.53.13.58.41.05.27-.13.53-.41.58-.57.11-1.07.12-1.21.12zM14.91 22c-.04 0-.09-.01-.13-.02-1.59-.44-2.63-1.03-3.72-2.1-1.4-1.39-2.17-3.24-2.17-5.22 0-1.62 1.38-2.94 3.08-2.94 1.7 0 3.08 1.32 3.08 2.94 0 1.07.93 1.94 2.08 1.94s2.08-.87 2.08-1.94c0-3.77-3.25-6.83-7.25-6.83-2.84 0-5.44 1.58-6.61 4.03-.39.81-.59 1.76-.59 2.8 0 .78.07 2.01.67 3.61.1.26-.03.55-.29.64-.26.1-.55-.04-.64-.29-.49-1.31-.73-2.61-.73-3.96 0-1.2.23-2.29.68-3.24 1.33-2.79 4.28-4.6 7.51-4.6 4.55 0 8.25 3.51 8.25 7.83 0 1.62-1.38 2.94-3.08 2.94s-3.08-1.32-3.08-2.94c0-1.07-.93-1.94-2.08-1.94s-2.08.87-2.08 1.94c0 1.71.66 3.31 1.87 4.51.95.94 1.86 1.46 3.27 1.85.27.07.42.35.35.61-.05.23-.26.38-.47.38z" + }, + "children": [] + }] +}; +exports.ic_fingerprint = ic_fingerprint; \ No newline at end of file diff --git a/dist/md/ic_fingerprint_outline.js b/dist/md/ic_fingerprint_outline.js new file mode 100644 index 000000000..582ee917d --- /dev/null +++ b/dist/md/ic_fingerprint_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_fingerprint_outline = void 0; +var ic_fingerprint_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17.81 4.47c-.08 0-.16-.02-.23-.06C15.66 3.42 14 3 12.01 3c-1.98 0-3.86.47-5.57 1.41-.24.13-.54.04-.68-.2-.13-.24-.04-.55.2-.68C7.82 2.52 9.86 2 12.01 2c2.13 0 3.99.47 6.03 1.52.25.13.34.43.21.67-.09.18-.26.28-.44.28zM3.5 9.72c-.1 0-.2-.03-.29-.09-.23-.16-.28-.47-.12-.7.99-1.4 2.25-2.5 3.75-3.27C9.98 4.04 14 4.03 17.15 5.65c1.5.77 2.76 1.86 3.75 3.25.16.22.11.54-.12.7-.23.16-.54.11-.7-.12-.9-1.26-2.04-2.25-3.39-2.94-2.87-1.47-6.54-1.47-9.4.01-1.36.7-2.5 1.7-3.4 2.96-.08.14-.23.21-.39.21zm6.25 12.07c-.13 0-.26-.05-.35-.15-.87-.87-1.34-1.43-2.01-2.64-.69-1.23-1.05-2.73-1.05-4.34 0-2.97 2.54-5.39 5.66-5.39s5.66 2.42 5.66 5.39c0 .28-.22.5-.5.5s-.5-.22-.5-.5c0-2.42-2.09-4.39-4.66-4.39s-4.66 1.97-4.66 4.39c0 1.44.32 2.77.93 3.85.64 1.15 1.08 1.64 1.85 2.42.19.2.19.51 0 .71-.11.1-.24.15-.37.15zm7.17-1.85c-1.19 0-2.24-.3-3.1-.89-1.49-1.01-2.38-2.65-2.38-4.39 0-.28.22-.5.5-.5s.5.22.5.5c0 1.41.72 2.74 1.94 3.56.71.48 1.54.71 2.54.71.24 0 .64-.03 1.04-.1.27-.05.53.13.58.41.05.27-.13.53-.41.58-.57.11-1.07.12-1.21.12zM14.91 22c-.04 0-.09-.01-.13-.02-1.59-.44-2.63-1.03-3.72-2.1-1.4-1.39-2.17-3.24-2.17-5.22 0-1.62 1.38-2.94 3.08-2.94s3.08 1.32 3.08 2.94c0 1.07.93 1.94 2.08 1.94s2.08-.87 2.08-1.94c0-3.77-3.25-6.83-7.25-6.83-2.84 0-5.44 1.58-6.61 4.03-.39.81-.59 1.76-.59 2.8 0 .78.07 2.01.67 3.61.1.26-.03.55-.29.64-.26.1-.55-.04-.64-.29-.49-1.31-.73-2.61-.73-3.96 0-1.2.23-2.29.68-3.24 1.33-2.79 4.28-4.6 7.51-4.6 4.55 0 8.25 3.51 8.25 7.83 0 1.62-1.38 2.94-3.08 2.94s-3.08-1.32-3.08-2.94c0-1.07-.93-1.94-2.08-1.94s-2.08.87-2.08 1.94c0 1.71.66 3.31 1.87 4.51.95.94 1.86 1.46 3.27 1.85.27.07.42.35.35.61-.05.23-.26.38-.47.38z" + }, + "children": [] + }] +}; +exports.ic_fingerprint_outline = ic_fingerprint_outline; \ No newline at end of file diff --git a/dist/md/ic_fingerprint_twotone.js b/dist/md/ic_fingerprint_twotone.js new file mode 100644 index 000000000..a2d4fa7cf --- /dev/null +++ b/dist/md/ic_fingerprint_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_fingerprint_twotone = void 0; +var ic_fingerprint_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17.81 4.47c-.08 0-.16-.02-.23-.06C15.66 3.42 14 3 12.01 3c-1.98 0-3.86.47-5.57 1.41-.24.13-.54.04-.68-.2-.13-.24-.04-.55.2-.68C7.82 2.52 9.86 2 12.01 2c2.13 0 3.99.47 6.03 1.52.25.13.34.43.21.67-.09.18-.26.28-.44.28zM3.5 9.72c-.1 0-.2-.03-.29-.09-.23-.16-.28-.47-.12-.7.99-1.4 2.25-2.5 3.75-3.27C9.98 4.04 14 4.03 17.15 5.65c1.5.77 2.76 1.86 3.75 3.25.16.22.11.54-.12.7-.23.16-.54.11-.7-.12-.9-1.26-2.04-2.25-3.39-2.94-2.87-1.47-6.54-1.47-9.4.01-1.36.7-2.5 1.7-3.4 2.96-.08.14-.23.21-.39.21zm6.25 12.07c-.13 0-.26-.05-.35-.15-.87-.87-1.34-1.43-2.01-2.64-.69-1.23-1.05-2.73-1.05-4.34 0-2.97 2.54-5.39 5.66-5.39s5.66 2.42 5.66 5.39c0 .28-.22.5-.5.5s-.5-.22-.5-.5c0-2.42-2.09-4.39-4.66-4.39s-4.66 1.97-4.66 4.39c0 1.44.32 2.77.93 3.85.64 1.15 1.08 1.64 1.85 2.42.19.2.19.51 0 .71-.11.1-.24.15-.37.15zm7.17-1.85c-1.19 0-2.24-.3-3.1-.89-1.49-1.01-2.38-2.65-2.38-4.39 0-.28.22-.5.5-.5s.5.22.5.5c0 1.41.72 2.74 1.94 3.56.71.48 1.54.71 2.54.71.24 0 .64-.03 1.04-.1.27-.05.53.13.58.41.05.27-.13.53-.41.58-.57.11-1.07.12-1.21.12zM14.91 22c-.04 0-.09-.01-.13-.02-1.59-.44-2.63-1.03-3.72-2.1-1.4-1.39-2.17-3.24-2.17-5.22 0-1.62 1.38-2.94 3.08-2.94s3.08 1.32 3.08 2.94c0 1.07.93 1.94 2.08 1.94s2.08-.87 2.08-1.94c0-3.77-3.25-6.83-7.25-6.83-2.84 0-5.44 1.58-6.61 4.03-.39.81-.59 1.76-.59 2.8 0 .78.07 2.01.67 3.61.1.26-.03.55-.29.64-.26.1-.55-.04-.64-.29-.49-1.31-.73-2.61-.73-3.96 0-1.2.23-2.29.68-3.24 1.33-2.79 4.28-4.6 7.51-4.6 4.55 0 8.25 3.51 8.25 7.83 0 1.62-1.38 2.94-3.08 2.94s-3.08-1.32-3.08-2.94c0-1.07-.93-1.94-2.08-1.94s-2.08.87-2.08 1.94c0 1.71.66 3.31 1.87 4.51.95.94 1.86 1.46 3.27 1.85.27.07.42.35.35.61-.05.23-.26.38-.47.38z" + }, + "children": [] + }] +}; +exports.ic_fingerprint_twotone = ic_fingerprint_twotone; \ No newline at end of file diff --git a/dist/md/ic_fire_extinguisher.js b/dist/md/ic_fire_extinguisher.js new file mode 100644 index 000000000..0b20969d3 --- /dev/null +++ b/dist/md/ic_fire_extinguisher.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_fire_extinguisher = void 0; +var ic_fire_extinguisher = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M7,19h10v1c0,1.1-0.9,2-2,2H9c-1.1,0-2-0.9-2-2V19z M7,18h10v-5H7V18z M17,3v6l-3.15-0.66c-0.01,0-0.01,0.01-0.02,0.02 c1.55,0.62,2.72,1.98,3.07,3.64H7.1c0.34-1.66,1.52-3.02,3.07-3.64c-0.33-0.26-0.6-0.58-0.8-0.95L5,6.5v-1l4.37-0.91 C9.87,3.65,10.86,3,12,3c0.7,0,1.34,0.25,1.85,0.66L17,3z M13,6c-0.03-0.59-0.45-1-1-1s-1,0.45-1,1s0.45,1,1,1S13,6.55,13,6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M7,19h10v1c0,1.1-0.9,2-2,2H9c-1.1,0-2-0.9-2-2V19z M7,18h10v-5H7V18z M17,3v6l-3.15-0.66c-0.01,0-0.01,0.01-0.02,0.02 c1.55,0.62,2.72,1.98,3.07,3.64H7.1c0.34-1.66,1.52-3.02,3.07-3.64c-0.33-0.26-0.6-0.58-0.8-0.95L5,6.5v-1l4.37-0.91 C9.87,3.65,10.86,3,12,3c0.7,0,1.34,0.25,1.85,0.66L17,3z M13,6c-0.03-0.59-0.45-1-1-1s-1,0.45-1,1s0.45,1,1,1S13,6.55,13,6z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_fire_extinguisher = ic_fire_extinguisher; \ No newline at end of file diff --git a/dist/md/ic_fire_extinguisher_outline.js b/dist/md/ic_fire_extinguisher_outline.js new file mode 100644 index 000000000..dfcde76c7 --- /dev/null +++ b/dist/md/ic_fire_extinguisher_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_fire_extinguisher_outline = void 0; +var ic_fire_extinguisher_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M7,19h10v1c0,1.1-0.9,2-2,2H9c-1.1,0-2-0.9-2-2V19z M7,18h10v-5H7V18z M17,3v6l-3.15-0.66c-0.01,0-0.01,0.01-0.02,0.02 c1.55,0.62,2.72,1.98,3.07,3.64H7.1c0.34-1.66,1.52-3.02,3.07-3.64c-0.33-0.26-0.6-0.58-0.8-0.95L5,6.5v-1l4.37-0.91 C9.87,3.65,10.86,3,12,3c0.7,0,1.34,0.25,1.85,0.66L17,3z M13,6c-0.03-0.59-0.45-1-1-1s-1,0.45-1,1s0.45,1,1,1S13,6.55,13,6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M7,19h10v1c0,1.1-0.9,2-2,2H9c-1.1,0-2-0.9-2-2V19z M7,18h10v-5H7V18z M17,3v6l-3.15-0.66c-0.01,0-0.01,0.01-0.02,0.02 c1.55,0.62,2.72,1.98,3.07,3.64H7.1c0.34-1.66,1.52-3.02,3.07-3.64c-0.33-0.26-0.6-0.58-0.8-0.95L5,6.5v-1l4.37-0.91 C9.87,3.65,10.86,3,12,3c0.7,0,1.34,0.25,1.85,0.66L17,3z M13,6c-0.03-0.59-0.45-1-1-1s-1,0.45-1,1s0.45,1,1,1S13,6.55,13,6z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_fire_extinguisher_outline = ic_fire_extinguisher_outline; \ No newline at end of file diff --git a/dist/md/ic_fire_extinguisher_twotone.js b/dist/md/ic_fire_extinguisher_twotone.js new file mode 100644 index 000000000..c43201299 --- /dev/null +++ b/dist/md/ic_fire_extinguisher_twotone.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_fire_extinguisher_twotone = void 0; +var ic_fire_extinguisher_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M7,19h10v1c0,1.1-0.9,2-2,2H9c-1.1,0-2-0.9-2-2V19z M7,18h10v-5H7V18z M17,3v6l-3.15-0.66c-0.01,0-0.01,0.01-0.02,0.02 c1.55,0.62,2.72,1.98,3.07,3.64H7.1c0.34-1.66,1.52-3.02,3.07-3.64c-0.33-0.26-0.6-0.58-0.8-0.95L5,6.5v-1l4.37-0.91 C9.87,3.65,10.86,3,12,3c0.7,0,1.34,0.25,1.85,0.66L17,3z M13,6c-0.03-0.59-0.45-1-1-1s-1,0.45-1,1s0.45,1,1,1S13,6.55,13,6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M7,19h10v1c0,1.1-0.9,2-2,2H9c-1.1,0-2-0.9-2-2V19z M7,18h10v-5H7V18z M17,3v6l-3.15-0.66c-0.01,0-0.01,0.01-0.02,0.02 c1.55,0.62,2.72,1.98,3.07,3.64H7.1c0.34-1.66,1.52-3.02,3.07-3.64c-0.33-0.26-0.6-0.58-0.8-0.95L5,6.5v-1l4.37-0.91 C9.87,3.65,10.86,3,12,3c0.7,0,1.34,0.25,1.85,0.66L17,3z M13,6c-0.03-0.59-0.45-1-1-1s-1,0.45-1,1s0.45,1,1,1S13,6.55,13,6z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_fire_extinguisher_twotone = ic_fire_extinguisher_twotone; \ No newline at end of file diff --git a/dist/md/ic_fireplace.js b/dist/md/ic_fireplace.js new file mode 100644 index 000000000..2b48392da --- /dev/null +++ b/dist/md/ic_fireplace.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_fireplace = void 0; +var ic_fireplace = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M2,2v20h20V2H2z M11.86,16.96c0.76-0.24,1.4-1.04,1.53-1.63c0.13-0.56-0.1-1.05-0.2-1.6c-0.08-0.46-0.07-0.85,0.08-1.28 c0.54,1.21,2.15,1.64,1.98,3.18C15.06,17.33,13.14,18.01,11.86,16.96z M20,20h-2v-2h-2.02c0.63-0.84,1.02-1.87,1.02-3 c0-1.89-1.09-2.85-1.85-3.37C12.2,9.61,13,7,13,7c-6.73,3.57-6.02,7.47-6,8c0.03,0.96,0.49,2.07,1.23,3H6v2H4V4h16V20z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M2,2v20h20V2H2z M11.86,16.96c0.76-0.24,1.4-1.04,1.53-1.63c0.13-0.56-0.1-1.05-0.2-1.6c-0.08-0.46-0.07-0.85,0.08-1.28 c0.54,1.21,2.15,1.64,1.98,3.18C15.06,17.33,13.14,18.01,11.86,16.96z M20,20h-2v-2h-2.02c0.63-0.84,1.02-1.87,1.02-3 c0-1.89-1.09-2.85-1.85-3.37C12.2,9.61,13,7,13,7c-6.73,3.57-6.02,7.47-6,8c0.03,0.96,0.49,2.07,1.23,3H6v2H4V4h16V20z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_fireplace = ic_fireplace; \ No newline at end of file diff --git a/dist/md/ic_fireplace_outline.js b/dist/md/ic_fireplace_outline.js new file mode 100644 index 000000000..231b79a91 --- /dev/null +++ b/dist/md/ic_fireplace_outline.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_fireplace_outline = void 0; +var ic_fireplace_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12.01,12.46c-0.15,0.42-0.15,0.82-0.08,1.28c0.1,0.55,0.33,1.04,0.2,1.6c-0.13,0.59-0.77,1.38-1.53,1.63 c1.28,1.05,3.2,0.37,3.39-1.32C14.16,14.11,12.55,13.67,12.01,12.46z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12.01,12.46c-0.15,0.42-0.15,0.82-0.08,1.28c0.1,0.55,0.33,1.04,0.2,1.6c-0.13,0.59-0.77,1.38-1.53,1.63 c1.28,1.05,3.2,0.37,3.39-1.32C14.16,14.11,12.55,13.67,12.01,12.46z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M2,2v20h20V2H2z M12,18c-1.58,0-2.97-1.88-3-3.06c0-0.05-0.01-0.13-0.01-0.22c-0.13-1.73,1-3.2,2.47-4.37 c0.47,1.01,1.27,2.03,2.57,2.92C14.61,13.69,15,14.13,15,15C15,16.65,13.65,18,12,18z M20,20h-2v-2h-2.02 c0.63-0.84,1.02-1.87,1.02-3c0-1.89-1.09-2.85-1.85-3.37C12.2,9.61,13,7,13,7c-6.73,3.57-6.02,7.47-6,8 c0.03,0.96,0.49,2.07,1.23,3H6v2H4V4h16V20z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M2,2v20h20V2H2z M12,18c-1.58,0-2.97-1.88-3-3.06c0-0.05-0.01-0.13-0.01-0.22c-0.13-1.73,1-3.2,2.47-4.37 c0.47,1.01,1.27,2.03,2.57,2.92C14.61,13.69,15,14.13,15,15C15,16.65,13.65,18,12,18z M20,20h-2v-2h-2.02 c0.63-0.84,1.02-1.87,1.02-3c0-1.89-1.09-2.85-1.85-3.37C12.2,9.61,13,7,13,7c-6.73,3.57-6.02,7.47-6,8 c0.03,0.96,0.49,2.07,1.23,3H6v2H4V4h16V20z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_fireplace_outline = ic_fireplace_outline; \ No newline at end of file diff --git a/dist/md/ic_fireplace_twotone.js b/dist/md/ic_fireplace_twotone.js new file mode 100644 index 000000000..3c8bb8306 --- /dev/null +++ b/dist/md/ic_fireplace_twotone.js @@ -0,0 +1,81 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_fireplace_twotone = void 0; +var ic_fireplace_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M4,20h2v-2h2.23c-0.75-0.93-1.2-2.04-1.23-3c-0.02-0.53-0.73-4.43,6-8c0,0-0.8,2.61,2.15,4.63 C15.91,12.15,17,13.11,17,15c0,1.13-0.39,2.16-1.02,3H18v2h2V4H4V20z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M4,20h2v-2h2.23c-0.75-0.93-1.2-2.04-1.23-3c-0.02-0.53-0.73-4.43,6-8c0,0-0.8,2.61,2.15,4.63 C15.91,12.15,17,13.11,17,15c0,1.13-0.39,2.16-1.02,3H18v2h2V4H4V20z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M12.01,12.46c-0.15,0.42-0.15,0.82-0.08,1.28c0.1,0.55,0.33,1.04,0.2,1.6c-0.13,0.59-0.77,1.38-1.53,1.63 c1.28,1.05,3.2,0.37,3.39-1.32C14.16,14.11,12.55,13.67,12.01,12.46z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12.01,12.46c-0.15,0.42-0.15,0.82-0.08,1.28c0.1,0.55,0.33,1.04,0.2,1.6c-0.13,0.59-0.77,1.38-1.53,1.63 c1.28,1.05,3.2,0.37,3.39-1.32C14.16,14.11,12.55,13.67,12.01,12.46z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M2,2v20h20V2H2z M12,18c-1.58,0-2.97-1.88-3-3.06c0-0.05-0.01-0.13-0.01-0.22c-0.13-1.73,1-3.2,2.47-4.37 c0.47,1.01,1.27,2.03,2.57,2.92C14.61,13.69,15,14.13,15,15C15,16.65,13.65,18,12,18z M20,20h-2v-2h-2.02 c0.63-0.84,1.02-1.87,1.02-3c0-1.89-1.09-2.85-1.85-3.37C12.2,9.61,13,7,13,7c-6.73,3.57-6.02,7.47-6,8 c0.03,0.96,0.49,2.07,1.23,3H6v2H4V4h16V20z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M2,2v20h20V2H2z M12,18c-1.58,0-2.97-1.88-3-3.06c0-0.05-0.01-0.13-0.01-0.22c-0.13-1.73,1-3.2,2.47-4.37 c0.47,1.01,1.27,2.03,2.57,2.92C14.61,13.69,15,14.13,15,15C15,16.65,13.65,18,12,18z M20,20h-2v-2h-2.02 c0.63-0.84,1.02-1.87,1.02-3c0-1.89-1.09-2.85-1.85-3.37C12.2,9.61,13,7,13,7c-6.73,3.57-6.02,7.47-6,8 c0.03,0.96,0.49,2.07,1.23,3H6v2H4V4h16V20z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_fireplace_twotone = ic_fireplace_twotone; \ No newline at end of file diff --git a/dist/md/ic_first_page.js b/dist/md/ic_first_page.js new file mode 100644 index 000000000..c8783ee4e --- /dev/null +++ b/dist/md/ic_first_page.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_first_page = void 0; +var ic_first_page = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.41 16.59L13.82 12l4.59-4.59L17 6l-6 6 6 6zM6 6h2v12H6z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M24 24H0V0h24v24z", + "fill": "none" + }, + "children": [] + }] +}; +exports.ic_first_page = ic_first_page; \ No newline at end of file diff --git a/dist/md/ic_first_page_outline.js b/dist/md/ic_first_page_outline.js new file mode 100644 index 000000000..6a6d7a1f1 --- /dev/null +++ b/dist/md/ic_first_page_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_first_page_outline = void 0; +var ic_first_page_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M24 0v24H0V0h24z", + "fill": "none", + "opacity": ".87" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18.41 16.59L13.82 12l4.59-4.59L17 6l-6 6 6 6 1.41-1.41zM6 6h2v12H6V6z" + }, + "children": [] + }] +}; +exports.ic_first_page_outline = ic_first_page_outline; \ No newline at end of file diff --git a/dist/md/ic_first_page_twotone.js b/dist/md/ic_first_page_twotone.js new file mode 100644 index 000000000..557d5c867 --- /dev/null +++ b/dist/md/ic_first_page_twotone.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_first_page_twotone = void 0; +var ic_first_page_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M24 0v24H0V0h24z", + "fill": "none", + "opacity": ".87" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18.41 16.59L13.82 12l4.59-4.59L17 6l-6 6 6 6 1.41-1.41zM6 6h2v12H6V6z" + }, + "children": [] + }] +}; +exports.ic_first_page_twotone = ic_first_page_twotone; \ No newline at end of file diff --git a/dist/md/ic_fit_screen.js b/dist/md/ic_fit_screen.js new file mode 100644 index 000000000..ff131e8e6 --- /dev/null +++ b/dist/md/ic_fit_screen.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_fit_screen = void 0; +var ic_fit_screen = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 4h3c1.1 0 2 .9 2 2v2h-2V6h-3V4zM4 8V6h3V4H4c-1.1 0-2 .9-2 2v2h2zm16 8v2h-3v2h3c1.1 0 2-.9 2-2v-2h-2zM7 18H4v-2H2v2c0 1.1.9 2 2 2h3v-2zM18 8H6v8h12V8z" + }, + "children": [] + }] +}; +exports.ic_fit_screen = ic_fit_screen; \ No newline at end of file diff --git a/dist/md/ic_fitness_center.js b/dist/md/ic_fitness_center.js new file mode 100644 index 000000000..b1fdbd68d --- /dev/null +++ b/dist/md/ic_fitness_center.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_fitness_center = void 0; +var ic_fitness_center = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20.57 14.86L22 13.43 20.57 12 17 15.57 8.43 7 12 3.43 10.57 2 9.14 3.43 7.71 2 5.57 4.14 4.14 2.71 2.71 4.14l1.43 1.43L2 7.71l1.43 1.43L2 10.57 3.43 12 7 8.43 15.57 17 12 20.57 13.43 22l1.43-1.43L16.29 22l2.14-2.14 1.43 1.43 1.43-1.43-1.43-1.43L22 16.29z" + }, + "children": [] + }] +}; +exports.ic_fitness_center = ic_fitness_center; \ No newline at end of file diff --git a/dist/md/ic_fitness_center_outline.js b/dist/md/ic_fitness_center_outline.js new file mode 100644 index 000000000..66de49409 --- /dev/null +++ b/dist/md/ic_fitness_center_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_fitness_center_outline = void 0; +var ic_fitness_center_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20.57 14.86L22 13.43 20.57 12 17 15.57 8.43 7 12 3.43 10.57 2 9.14 3.43 7.71 2 5.57 4.14 4.14 2.71 2.71 4.14l1.43 1.43L2 7.71l1.43 1.43L2 10.57 3.43 12 7 8.43 15.57 17 12 20.57 13.43 22l1.43-1.43L16.29 22l2.14-2.14 1.43 1.43 1.43-1.43-1.43-1.43L22 16.29l-1.43-1.43z" + }, + "children": [] + }] +}; +exports.ic_fitness_center_outline = ic_fitness_center_outline; \ No newline at end of file diff --git a/dist/md/ic_fitness_center_twotone.js b/dist/md/ic_fitness_center_twotone.js new file mode 100644 index 000000000..a76c6c66c --- /dev/null +++ b/dist/md/ic_fitness_center_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_fitness_center_twotone = void 0; +var ic_fitness_center_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20.57 14.86L22 13.43 20.57 12 17 15.57 8.43 7 12 3.43 10.57 2 9.14 3.43 7.71 2 5.57 4.14 4.14 2.71 2.71 4.14l1.43 1.43L2 7.71l1.43 1.43L2 10.57 3.43 12 7 8.43 15.57 17 12 20.57 13.43 22l1.43-1.43L16.29 22l2.14-2.14 1.43 1.43 1.43-1.43-1.43-1.43L22 16.29l-1.43-1.43z" + }, + "children": [] + }] +}; +exports.ic_fitness_center_twotone = ic_fitness_center_twotone; \ No newline at end of file diff --git a/dist/md/ic_flag.js b/dist/md/ic_flag.js new file mode 100644 index 000000000..f56ac1624 --- /dev/null +++ b/dist/md/ic_flag.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_flag = void 0; +var ic_flag = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14.4 6L14 4H5v17h2v-7h5.6l.4 2h7V6z" + }, + "children": [] + }] +}; +exports.ic_flag = ic_flag; \ No newline at end of file diff --git a/dist/md/ic_flag_outline.js b/dist/md/ic_flag_outline.js new file mode 100644 index 000000000..8f65a7f3e --- /dev/null +++ b/dist/md/ic_flag_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_flag_outline = void 0; +var ic_flag_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12.36 6l.4 2H18v6h-3.36l-.4-2H7V6h5.36M14 4H5v17h2v-7h5.6l.4 2h7V6h-5.6L14 4z" + }, + "children": [] + }] +}; +exports.ic_flag_outline = ic_flag_outline; \ No newline at end of file diff --git a/dist/md/ic_flag_twotone.js b/dist/md/ic_flag_twotone.js new file mode 100644 index 000000000..9bb6aeb60 --- /dev/null +++ b/dist/md/ic_flag_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_flag_twotone = void 0; +var ic_flag_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12.36 6H7v6h7.24l.4 2H18V8h-5.24z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14.4 6L14 4H5v17h2v-7h5.6l.4 2h7V6h-5.6zm3.6 8h-3.36l-.4-2H7V6h5.36l.4 2H18v6z" + }, + "children": [] + }] +}; +exports.ic_flag_twotone = ic_flag_twotone; \ No newline at end of file diff --git a/dist/md/ic_flaky.js b/dist/md/ic_flaky.js new file mode 100644 index 000000000..ca658abb7 --- /dev/null +++ b/dist/md/ic_flaky.js @@ -0,0 +1,49 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_flaky = void 0; +var ic_flaky = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M14.05,17.58l-0.01,0.01l-2.4-2.4l1.06-1.06l1.35,1.35L16.54,13l1.06,1.06 l-3.54,3.54L14.05,17.58z M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M7.34,6.28l1.41,1.41l1.41-1.41 l1.06,1.06L9.81,8.75l1.41,1.41l-1.06,1.06L8.75,9.81l-1.41,1.41l-1.06-1.06l1.41-1.41L6.28,7.34L7.34,6.28z M12,20 c-2.2,0-4.2-0.9-5.7-2.3L17.7,6.3C19.1,7.8,20,9.8,20,12C20,16.4,16.4,20,12,20z", + "fill-rule": "evenodd" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14.05,17.58l-0.01,0.01l-2.4-2.4l1.06-1.06l1.35,1.35L16.54,13l1.06,1.06 l-3.54,3.54L14.05,17.58z M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M7.34,6.28l1.41,1.41l1.41-1.41 l1.06,1.06L9.81,8.75l1.41,1.41l-1.06,1.06L8.75,9.81l-1.41,1.41l-1.06-1.06l1.41-1.41L6.28,7.34L7.34,6.28z M12,20 c-2.2,0-4.2-0.9-5.7-2.3L17.7,6.3C19.1,7.8,20,9.8,20,12C20,16.4,16.4,20,12,20z", + "fill-rule": "evenodd" + }, + "children": [] + }] + }] + }] +}; +exports.ic_flaky = ic_flaky; \ No newline at end of file diff --git a/dist/md/ic_flaky_outline.js b/dist/md/ic_flaky_outline.js new file mode 100644 index 000000000..221f13b7b --- /dev/null +++ b/dist/md/ic_flaky_outline.js @@ -0,0 +1,49 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_flaky_outline = void 0; +var ic_flaky_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M14.05,17.58l-0.01,0.01l-2.4-2.4l1.06-1.06l1.35,1.35L16.54,13l1.06,1.06 l-3.54,3.54L14.05,17.58z M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M7.34,6.28l1.41,1.41l1.41-1.41 l1.06,1.06L9.81,8.75l1.41,1.41l-1.06,1.06L8.75,9.81l-1.41,1.41l-1.06-1.06l1.41-1.41L6.28,7.34L7.34,6.28z M12,20 c-2.2,0-4.2-0.9-5.7-2.3L17.7,6.3C19.1,7.8,20,9.8,20,12C20,16.4,16.4,20,12,20z", + "fill-rule": "evenodd" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14.05,17.58l-0.01,0.01l-2.4-2.4l1.06-1.06l1.35,1.35L16.54,13l1.06,1.06 l-3.54,3.54L14.05,17.58z M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M7.34,6.28l1.41,1.41l1.41-1.41 l1.06,1.06L9.81,8.75l1.41,1.41l-1.06,1.06L8.75,9.81l-1.41,1.41l-1.06-1.06l1.41-1.41L6.28,7.34L7.34,6.28z M12,20 c-2.2,0-4.2-0.9-5.7-2.3L17.7,6.3C19.1,7.8,20,9.8,20,12C20,16.4,16.4,20,12,20z", + "fill-rule": "evenodd" + }, + "children": [] + }] + }] + }] +}; +exports.ic_flaky_outline = ic_flaky_outline; \ No newline at end of file diff --git a/dist/md/ic_flaky_twotone.js b/dist/md/ic_flaky_twotone.js new file mode 100644 index 000000000..d3fe15456 --- /dev/null +++ b/dist/md/ic_flaky_twotone.js @@ -0,0 +1,49 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_flaky_twotone = void 0; +var ic_flaky_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M14.05,17.58l-0.01,0.01l-2.4-2.4l1.06-1.06l1.35,1.35L16.54,13l1.06,1.06 l-3.54,3.54L14.05,17.58z M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M7.34,6.28l1.41,1.41l1.41-1.41 l1.06,1.06L9.81,8.75l1.41,1.41l-1.06,1.06L8.75,9.81l-1.41,1.41l-1.06-1.06l1.41-1.41L6.28,7.34L7.34,6.28z M12,20 c-2.2,0-4.2-0.9-5.7-2.3L17.7,6.3C19.1,7.8,20,9.8,20,12C20,16.4,16.4,20,12,20z", + "fill-rule": "evenodd" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14.05,17.58l-0.01,0.01l-2.4-2.4l1.06-1.06l1.35,1.35L16.54,13l1.06,1.06 l-3.54,3.54L14.05,17.58z M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M7.34,6.28l1.41,1.41l1.41-1.41 l1.06,1.06L9.81,8.75l1.41,1.41l-1.06,1.06L8.75,9.81l-1.41,1.41l-1.06-1.06l1.41-1.41L6.28,7.34L7.34,6.28z M12,20 c-2.2,0-4.2-0.9-5.7-2.3L17.7,6.3C19.1,7.8,20,9.8,20,12C20,16.4,16.4,20,12,20z", + "fill-rule": "evenodd" + }, + "children": [] + }] + }] + }] +}; +exports.ic_flaky_twotone = ic_flaky_twotone; \ No newline at end of file diff --git a/dist/md/ic_flare.js b/dist/md/ic_flare.js new file mode 100644 index 000000000..3bae7d915 --- /dev/null +++ b/dist/md/ic_flare.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_flare = void 0; +var ic_flare = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 11H1v2h6v-2zm2.17-3.24L7.05 5.64 5.64 7.05l2.12 2.12 1.41-1.41zM13 1h-2v6h2V1zm5.36 6.05l-1.41-1.41-2.12 2.12 1.41 1.41 2.12-2.12zM17 11v2h6v-2h-6zm-5-2c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm2.83 7.24l2.12 2.12 1.41-1.41-2.12-2.12-1.41 1.41zm-9.19.71l1.41 1.41 2.12-2.12-1.41-1.41-2.12 2.12zM11 23h2v-6h-2v6z" + }, + "children": [] + }] +}; +exports.ic_flare = ic_flare; \ No newline at end of file diff --git a/dist/md/ic_flare_outline.js b/dist/md/ic_flare_outline.js new file mode 100644 index 000000000..adcf954cf --- /dev/null +++ b/dist/md/ic_flare_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_flare_outline = void 0; +var ic_flare_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 11H1v2h6v-2zm2.17-3.24L7.05 5.64 5.64 7.05l2.12 2.12 1.41-1.41zM13 1h-2v6h2V1zm5.36 6.05l-1.41-1.41-2.12 2.12 1.41 1.41 2.12-2.12zM17 11v2h6v-2h-6zm-5-2c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm2.83 7.24l2.12 2.12 1.41-1.41-2.12-2.12-1.41 1.41zm-9.19.71l1.41 1.41 2.12-2.12-1.41-1.41-2.12 2.12zM11 23h2v-6h-2v6z" + }, + "children": [] + }] +}; +exports.ic_flare_outline = ic_flare_outline; \ No newline at end of file diff --git a/dist/md/ic_flare_twotone.js b/dist/md/ic_flare_twotone.js new file mode 100644 index 000000000..792983e1c --- /dev/null +++ b/dist/md/ic_flare_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_flare_twotone = void 0; +var ic_flare_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5.644 7.05L7.05 5.645l2.123 2.122-1.408 1.407zM11 1h2v6h-2zm5.242 13.834l2.12 2.12-1.406 1.408-2.12-2.12zM14.834 7.76l2.12-2.123 1.41 1.407-2.123 2.122zm-5.668 8.482l-2.122 2.12-1.407-1.406 2.122-2.122zM12 9c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm-1 8h2v6h-2zM1 11h6v2H1zm16 0h6v2h-6z" + }, + "children": [] + }] +}; +exports.ic_flare_twotone = ic_flare_twotone; \ No newline at end of file diff --git a/dist/md/ic_flash_auto.js b/dist/md/ic_flash_auto.js new file mode 100644 index 000000000..0e58bff7d --- /dev/null +++ b/dist/md/ic_flash_auto.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_flash_auto = void 0; +var ic_flash_auto = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 2v12h3v9l7-12H9l4-9H3zm16 0h-2l-3.2 9h1.9l.7-2h3.2l.7 2h1.9L19 2zm-2.15 5.65L18 4l1.15 3.65h-2.3z" + }, + "children": [] + }] +}; +exports.ic_flash_auto = ic_flash_auto; \ No newline at end of file diff --git a/dist/md/ic_flash_auto_outline.js b/dist/md/ic_flash_auto_outline.js new file mode 100644 index 000000000..5bd1c67ae --- /dev/null +++ b/dist/md/ic_flash_auto_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_flash_auto_outline = void 0; +var ic_flash_auto_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 2v12h3v9l7-12H9l4-9H3zm16 0h-2l-3.2 9h1.9l.7-2h3.2l.7 2h1.9L19 2zm-2.15 5.65L18 4l1.15 3.65h-2.3z" + }, + "children": [] + }] +}; +exports.ic_flash_auto_outline = ic_flash_auto_outline; \ No newline at end of file diff --git a/dist/md/ic_flash_auto_twotone.js b/dist/md/ic_flash_auto_twotone.js new file mode 100644 index 000000000..acf0ee0ee --- /dev/null +++ b/dist/md/ic_flash_auto_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_flash_auto_twotone = void 0; +var ic_flash_auto_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 2v12h3v9l7-12H9l4-9zm14 0l-3.2 9h1.9l.7-2h3.2l.7 2h1.9L19 2h-2zm-.15 5.65L18 4l1.15 3.65h-2.3z" + }, + "children": [] + }] +}; +exports.ic_flash_auto_twotone = ic_flash_auto_twotone; \ No newline at end of file diff --git a/dist/md/ic_flash_off.js b/dist/md/ic_flash_off.js new file mode 100644 index 000000000..e6a6db38f --- /dev/null +++ b/dist/md/ic_flash_off.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_flash_off = void 0; +var ic_flash_off = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3.27 3L2 4.27l5 5V13h3v9l3.58-6.14L17.73 20 19 18.73 3.27 3zM17 10h-4l4-8H7v2.18l8.46 8.46L17 10z" + }, + "children": [] + }] +}; +exports.ic_flash_off = ic_flash_off; \ No newline at end of file diff --git a/dist/md/ic_flash_off_outline.js b/dist/md/ic_flash_off_outline.js new file mode 100644 index 000000000..be925d6a9 --- /dev/null +++ b/dist/md/ic_flash_off_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_flash_off_outline = void 0; +var ic_flash_off_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 10h-3.61l2.28 2.28zm0-8H7v1.61l6.13 6.13zm-13.59.86L2 4.27l5 5V13h3v9l3.58-6.15L17.73 20l1.41-1.41z" + }, + "children": [] + }] +}; +exports.ic_flash_off_outline = ic_flash_off_outline; \ No newline at end of file diff --git a/dist/md/ic_flash_off_twotone.js b/dist/md/ic_flash_off_twotone.js new file mode 100644 index 000000000..3f8ca4491 --- /dev/null +++ b/dist/md/ic_flash_off_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_flash_off_twotone = void 0; +var ic_flash_off_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 10h-3.61l2.28 2.28zm0-8H7v1.61l6.13 6.13zm-13.59.86L2 4.27l5 5V13h3v9l3.58-6.15L17.73 20l1.41-1.41z" + }, + "children": [] + }] +}; +exports.ic_flash_off_twotone = ic_flash_off_twotone; \ No newline at end of file diff --git a/dist/md/ic_flash_on.js b/dist/md/ic_flash_on.js new file mode 100644 index 000000000..fdb00275d --- /dev/null +++ b/dist/md/ic_flash_on.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_flash_on = void 0; +var ic_flash_on = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 2v11h3v9l7-12h-4l4-8z" + }, + "children": [] + }] +}; +exports.ic_flash_on = ic_flash_on; \ No newline at end of file diff --git a/dist/md/ic_flash_on_outline.js b/dist/md/ic_flash_on_outline.js new file mode 100644 index 000000000..6433fabad --- /dev/null +++ b/dist/md/ic_flash_on_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_flash_on_outline = void 0; +var ic_flash_on_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 2v11h3v9l7-12h-4l3-8z" + }, + "children": [] + }] +}; +exports.ic_flash_on_outline = ic_flash_on_outline; \ No newline at end of file diff --git a/dist/md/ic_flash_on_twotone.js b/dist/md/ic_flash_on_twotone.js new file mode 100644 index 000000000..38c35ff02 --- /dev/null +++ b/dist/md/ic_flash_on_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_flash_on_twotone = void 0; +var ic_flash_on_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 10h-4l3-8H7v11h3v9z" + }, + "children": [] + }] +}; +exports.ic_flash_on_twotone = ic_flash_on_twotone; \ No newline at end of file diff --git a/dist/md/ic_flight.js b/dist/md/ic_flight.js new file mode 100644 index 000000000..6fda23bbe --- /dev/null +++ b/dist/md/ic_flight.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_flight = void 0; +var ic_flight = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 16v-2l-8-5V3.5c0-.83-.67-1.5-1.5-1.5S10 2.67 10 3.5V9l-8 5v2l8-2.5V19l-2 1.5V22l3.5-1 3.5 1v-1.5L13 19v-5.5l8 2.5z" + }, + "children": [] + }] +}; +exports.ic_flight = ic_flight; \ No newline at end of file diff --git a/dist/md/ic_flight_land.js b/dist/md/ic_flight_land.js new file mode 100644 index 000000000..36ec6a66e --- /dev/null +++ b/dist/md/ic_flight_land.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_flight_land = void 0; +var ic_flight_land = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M2.5,19h19v2h-19V19z M19.34,15.85c0.8,0.21,1.62-0.26,1.84-1.06c0.21-0.8-0.26-1.62-1.06-1.84l-5.31-1.42l-2.76-9.02 L10.12,2v8.28L5.15,8.95L4.22,6.63L2.77,6.24v5.17L19.34,15.85z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M2.5,19h19v2h-19V19z M19.34,15.85c0.8,0.21,1.62-0.26,1.84-1.06c0.21-0.8-0.26-1.62-1.06-1.84l-5.31-1.42l-2.76-9.02 L10.12,2v8.28L5.15,8.95L4.22,6.63L2.77,6.24v5.17L19.34,15.85z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_flight_land = ic_flight_land; \ No newline at end of file diff --git a/dist/md/ic_flight_land_outline.js b/dist/md/ic_flight_land_outline.js new file mode 100644 index 000000000..1fac7fb76 --- /dev/null +++ b/dist/md/ic_flight_land_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_flight_land_outline = void 0; +var ic_flight_land_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M2.5 19h19v2h-19v-2zm16.84-3.15c.8.21 1.62-.26 1.84-1.06.21-.8-.26-1.62-1.06-1.84l-5.31-1.42-2.76-9.02L10.12 2v8.28L5.15 8.95l-.93-2.32-1.45-.39v5.17l16.57 4.44z" + }, + "children": [] + }] +}; +exports.ic_flight_land_outline = ic_flight_land_outline; \ No newline at end of file diff --git a/dist/md/ic_flight_land_twotone.js b/dist/md/ic_flight_land_twotone.js new file mode 100644 index 000000000..a80a83e16 --- /dev/null +++ b/dist/md/ic_flight_land_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_flight_land_twotone = void 0; +var ic_flight_land_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M2.5 19h19v2h-19v-2zm16.84-3.15c.8.21 1.62-.26 1.84-1.06.21-.8-.26-1.62-1.06-1.84l-5.31-1.42-2.76-9.02L10.12 2v8.28L5.15 8.95l-.93-2.32-1.45-.39v5.17l16.57 4.44z" + }, + "children": [] + }] +}; +exports.ic_flight_land_twotone = ic_flight_land_twotone; \ No newline at end of file diff --git a/dist/md/ic_flight_outline.js b/dist/md/ic_flight_outline.js new file mode 100644 index 000000000..14189ef1e --- /dev/null +++ b/dist/md/ic_flight_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_flight_outline = void 0; +var ic_flight_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 16v-2l-8-5V3.5c0-.83-.67-1.5-1.5-1.5S10 2.67 10 3.5V9l-8 5v2l8-2.5V19l-2 1.5V22l3.5-1 3.5 1v-1.5L13 19v-5.5l8 2.5z" + }, + "children": [] + }] +}; +exports.ic_flight_outline = ic_flight_outline; \ No newline at end of file diff --git a/dist/md/ic_flight_takeoff.js b/dist/md/ic_flight_takeoff.js new file mode 100644 index 000000000..1d878bf3b --- /dev/null +++ b/dist/md/ic_flight_takeoff.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_flight_takeoff = void 0; +var ic_flight_takeoff = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M2.5,19h19v2h-19V19z M22.07,9.64c-0.21-0.8-1.04-1.28-1.84-1.06L14.92,10l-6.9-6.43L6.09,4.08l4.14,7.17l-4.97,1.33 l-1.97-1.54l-1.45,0.39l2.59,4.49c0,0,7.12-1.9,16.57-4.43C21.81,11.26,22.28,10.44,22.07,9.64z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M2.5,19h19v2h-19V19z M22.07,9.64c-0.21-0.8-1.04-1.28-1.84-1.06L14.92,10l-6.9-6.43L6.09,4.08l4.14,7.17l-4.97,1.33 l-1.97-1.54l-1.45,0.39l2.59,4.49c0,0,7.12-1.9,16.57-4.43C21.81,11.26,22.28,10.44,22.07,9.64z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_flight_takeoff = ic_flight_takeoff; \ No newline at end of file diff --git a/dist/md/ic_flight_takeoff_outline.js b/dist/md/ic_flight_takeoff_outline.js new file mode 100644 index 000000000..c5176c05c --- /dev/null +++ b/dist/md/ic_flight_takeoff_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_flight_takeoff_outline = void 0; +var ic_flight_takeoff_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M2.5 19h19v2h-19v-2zm19.57-9.36c-.21-.8-1.04-1.28-1.84-1.06L14.92 10l-6.9-6.43-1.93.51 4.14 7.17-4.97 1.33-1.97-1.54-1.45.39 2.59 4.49L21 11.49c.81-.23 1.28-1.05 1.07-1.85z" + }, + "children": [] + }] +}; +exports.ic_flight_takeoff_outline = ic_flight_takeoff_outline; \ No newline at end of file diff --git a/dist/md/ic_flight_takeoff_twotone.js b/dist/md/ic_flight_takeoff_twotone.js new file mode 100644 index 000000000..36d82685f --- /dev/null +++ b/dist/md/ic_flight_takeoff_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_flight_takeoff_twotone = void 0; +var ic_flight_takeoff_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M2.5 19h19v2h-19v-2zm19.57-9.36c-.21-.8-1.04-1.28-1.84-1.06L14.92 10l-6.9-6.43-1.93.51 4.14 7.17-4.97 1.33-1.97-1.54-1.45.39 2.59 4.49L21 11.49c.81-.23 1.28-1.05 1.07-1.85z" + }, + "children": [] + }] +}; +exports.ic_flight_takeoff_twotone = ic_flight_takeoff_twotone; \ No newline at end of file diff --git a/dist/md/ic_flight_twotone.js b/dist/md/ic_flight_twotone.js new file mode 100644 index 000000000..5312f8846 --- /dev/null +++ b/dist/md/ic_flight_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_flight_twotone = void 0; +var ic_flight_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 19l-2 1.5V22l3.5-1 3.5 1v-1.5L13 19v-5.5l8 2.5v-2l-8-5V3.5c0-.83-.67-1.5-1.5-1.5S10 2.67 10 3.5V9l-8 5v2l8-2.5V19z" + }, + "children": [] + }] +}; +exports.ic_flight_twotone = ic_flight_twotone; \ No newline at end of file diff --git a/dist/md/ic_flip.js b/dist/md/ic_flip.js new file mode 100644 index 000000000..ffdb23234 --- /dev/null +++ b/dist/md/ic_flip.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_flip = void 0; +var ic_flip = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 21h2v-2h-2v2zm4-12h2V7h-2v2zM3 5v14c0 1.1.9 2 2 2h4v-2H5V5h4V3H5c-1.1 0-2 .9-2 2zm16-2v2h2c0-1.1-.9-2-2-2zm-8 20h2V1h-2v22zm8-6h2v-2h-2v2zM15 5h2V3h-2v2zm4 8h2v-2h-2v2zm0 8c1.1 0 2-.9 2-2h-2v2z" + }, + "children": [] + }] +}; +exports.ic_flip = ic_flip; \ No newline at end of file diff --git a/dist/md/ic_flip_camera_android.js b/dist/md/ic_flip_camera_android.js new file mode 100644 index 000000000..3a69387bf --- /dev/null +++ b/dist/md/ic_flip_camera_android.js @@ -0,0 +1,79 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_flip_camera_android = void 0; +var ic_flip_camera_android = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M9,12c0,1.66,1.34,3,3,3s3-1.34,3-3s-1.34-3-3-3S9,10.34,9,12z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M9,12c0,1.66,1.34,3,3,3s3-1.34,3-3s-1.34-3-3-3S9,10.34,9,12z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M8,10V8H5.09C6.47,5.61,9.05,4,12,4c3.72,0,6.85,2.56,7.74,6h2.06c-0.93-4.56-4.96-8-9.8-8C8.73,2,5.82,3.58,4,6.01V4H2v6 H8z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M8,10V8H5.09C6.47,5.61,9.05,4,12,4c3.72,0,6.85,2.56,7.74,6h2.06c-0.93-4.56-4.96-8-9.8-8C8.73,2,5.82,3.58,4,6.01V4H2v6 H8z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M16,14v2h2.91c-1.38,2.39-3.96,4-6.91,4c-3.72,0-6.85-2.56-7.74-6H2.2c0.93,4.56,4.96,8,9.8,8c3.27,0,6.18-1.58,8-4.01V20 h2v-6H16z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M16,14v2h2.91c-1.38,2.39-3.96,4-6.91,4c-3.72,0-6.85-2.56-7.74-6H2.2c0.93,4.56,4.96,8,9.8,8c3.27,0,6.18-1.58,8-4.01V20 h2v-6H16z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_flip_camera_android = ic_flip_camera_android; \ No newline at end of file diff --git a/dist/md/ic_flip_camera_android_outline.js b/dist/md/ic_flip_camera_android_outline.js new file mode 100644 index 000000000..f84ed2dd6 --- /dev/null +++ b/dist/md/ic_flip_camera_android_outline.js @@ -0,0 +1,79 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_flip_camera_android_outline = void 0; +var ic_flip_camera_android_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M9,12c0,1.66,1.34,3,3,3s3-1.34,3-3s-1.34-3-3-3S9,10.34,9,12z M13,12c0,0.55-0.45,1-1,1s-1-0.45-1-1s0.45-1,1-1 S13,11.45,13,12z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M9,12c0,1.66,1.34,3,3,3s3-1.34,3-3s-1.34-3-3-3S9,10.34,9,12z M13,12c0,0.55-0.45,1-1,1s-1-0.45-1-1s0.45-1,1-1 S13,11.45,13,12z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M8,10V8H5.09C6.47,5.61,9.05,4,12,4c3.72,0,6.85,2.56,7.74,6h2.06c-0.93-4.56-4.96-8-9.8-8C8.73,2,5.82,3.58,4,6.01V4H2v6 H8z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M8,10V8H5.09C6.47,5.61,9.05,4,12,4c3.72,0,6.85,2.56,7.74,6h2.06c-0.93-4.56-4.96-8-9.8-8C8.73,2,5.82,3.58,4,6.01V4H2v6 H8z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M16,14v2h2.91c-1.38,2.39-3.96,4-6.91,4c-3.72,0-6.85-2.56-7.74-6H2.2c0.93,4.56,4.96,8,9.8,8c3.27,0,6.18-1.58,8-4.01V20 h2v-6H16z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M16,14v2h2.91c-1.38,2.39-3.96,4-6.91,4c-3.72,0-6.85-2.56-7.74-6H2.2c0.93,4.56,4.96,8,9.8,8c3.27,0,6.18-1.58,8-4.01V20 h2v-6H16z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_flip_camera_android_outline = ic_flip_camera_android_outline; \ No newline at end of file diff --git a/dist/md/ic_flip_camera_android_twotone.js b/dist/md/ic_flip_camera_android_twotone.js new file mode 100644 index 000000000..fbf317c99 --- /dev/null +++ b/dist/md/ic_flip_camera_android_twotone.js @@ -0,0 +1,97 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_flip_camera_android_twotone = void 0; +var ic_flip_camera_android_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "opacity": ".3", + "r": "1" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "opacity": ".3", + "r": "1" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M9,12c0,1.66,1.34,3,3,3s3-1.34,3-3s-1.34-3-3-3S9,10.34,9,12z M13,12c0,0.55-0.45,1-1,1s-1-0.45-1-1s0.45-1,1-1 S13,11.45,13,12z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M9,12c0,1.66,1.34,3,3,3s3-1.34,3-3s-1.34-3-3-3S9,10.34,9,12z M13,12c0,0.55-0.45,1-1,1s-1-0.45-1-1s0.45-1,1-1 S13,11.45,13,12z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M8,8H5.09C6.47,5.61,9.05,4,12,4c3.72,0,6.85,2.56,7.74,6h2.06c-0.93-4.56-4.96-8-9.8-8C8.73,2,5.82,3.58,4,6.01V4H2v6h6 V8z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M8,8H5.09C6.47,5.61,9.05,4,12,4c3.72,0,6.85,2.56,7.74,6h2.06c-0.93-4.56-4.96-8-9.8-8C8.73,2,5.82,3.58,4,6.01V4H2v6h6 V8z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M16,14v2h2.91c-1.38,2.39-3.96,4-6.91,4c-3.72,0-6.85-2.56-7.74-6H2.2c0.93,4.56,4.96,8,9.8,8c3.27,0,6.18-1.58,8-4.01V20 h2v-6H16z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M16,14v2h2.91c-1.38,2.39-3.96,4-6.91,4c-3.72,0-6.85-2.56-7.74-6H2.2c0.93,4.56,4.96,8,9.8,8c3.27,0,6.18-1.58,8-4.01V20 h2v-6H16z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_flip_camera_android_twotone = ic_flip_camera_android_twotone; \ No newline at end of file diff --git a/dist/md/ic_flip_camera_ios.js b/dist/md/ic_flip_camera_ios.js new file mode 100644 index 000000000..b6b72a415 --- /dev/null +++ b/dist/md/ic_flip_camera_ios.js @@ -0,0 +1,55 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_flip_camera_ios = void 0; +var ic_flip_camera_ios = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,5h-3.17L15,3H9L7.17,5H4C2.9,5,2,5.9,2,7v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V7C22,5.9,21.1,5,20,5z M12,18 c-2.76,0-5-2.24-5-5H5l2.5-2.5L10,13H8c0,2.21,1.79,4,4,4c0.58,0,1.13-0.13,1.62-0.35l0.74,0.74C13.65,17.76,12.86,18,12,18z M16.5,15.5L14,13h2c0-2.21-1.79-4-4-4c-0.58,0-1.13,0.13-1.62,0.35L9.64,8.62C10.35,8.24,11.14,8,12,8c2.76,0,5,2.24,5,5h2 L16.5,15.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,5h-3.17L15,3H9L7.17,5H4C2.9,5,2,5.9,2,7v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V7C22,5.9,21.1,5,20,5z M12,18 c-2.76,0-5-2.24-5-5H5l2.5-2.5L10,13H8c0,2.21,1.79,4,4,4c0.58,0,1.13-0.13,1.62-0.35l0.74,0.74C13.65,17.76,12.86,18,12,18z M16.5,15.5L14,13h2c0-2.21-1.79-4-4-4c-0.58,0-1.13,0.13-1.62,0.35L9.64,8.62C10.35,8.24,11.14,8,12,8c2.76,0,5,2.24,5,5h2 L16.5,15.5z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_flip_camera_ios = ic_flip_camera_ios; \ No newline at end of file diff --git a/dist/md/ic_flip_camera_ios_outline.js b/dist/md/ic_flip_camera_ios_outline.js new file mode 100644 index 000000000..37dd20c51 --- /dev/null +++ b/dist/md/ic_flip_camera_ios_outline.js @@ -0,0 +1,103 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_flip_camera_ios_outline = void 0; +var ic_flip_camera_ios_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,5h-3.17L15,3H9L7.17,5H4C2.9,5,2,5.9,2,7v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V7C22,5.9,21.1,5,20,5z M20,19H4V7 h3.17h0.88l0.59-0.65L9.88,5h4.24l1.24,1.35L15.95,7h0.88H20V19z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,5h-3.17L15,3H9L7.17,5H4C2.9,5,2,5.9,2,7v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V7C22,5.9,21.1,5,20,5z M20,19H4V7 h3.17h0.88l0.59-0.65L9.88,5h4.24l1.24,1.35L15.95,7h0.88H20V19z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,17c-2.21,0-4-1.79-4-4h2l-2.5-2.5L5,13h2c0,2.76,2.24,5,5,5c0.86,0,1.65-0.24,2.36-0.62l-0.74-0.74 C13.13,16.87,12.58,17,12,17z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,17c-2.21,0-4-1.79-4-4h2l-2.5-2.5L5,13h2c0,2.76,2.24,5,5,5c0.86,0,1.65-0.24,2.36-0.62l-0.74-0.74 C13.13,16.87,12.58,17,12,17z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,8c-0.86,0-1.65,0.24-2.36,0.62l0.74,0.73C10.87,9.13,11.42,9,12,9c2.21,0,4,1.79,4,4h-2l2.5,2.5L19,13h-2 C17,10.24,14.76,8,12,8z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,8c-0.86,0-1.65,0.24-2.36,0.62l0.74,0.73C10.87,9.13,11.42,9,12,9c2.21,0,4,1.79,4,4h-2l2.5,2.5L19,13h-2 C17,10.24,14.76,8,12,8z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_flip_camera_ios_outline = ic_flip_camera_ios_outline; \ No newline at end of file diff --git a/dist/md/ic_flip_camera_ios_twotone.js b/dist/md/ic_flip_camera_ios_twotone.js new file mode 100644 index 000000000..80471256b --- /dev/null +++ b/dist/md/ic_flip_camera_ios_twotone.js @@ -0,0 +1,109 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_flip_camera_ios_twotone = void 0; +var ic_flip_camera_ios_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M14.12,5H9.88L8.05,7H4v12h16V7h-4.05L14.12,5z M12,18c-2.76,0-5-2.24-5-5H5l2.49-2.49L7.5,10.5L10,13H9.97 H8c0,2.21,1.79,4,4,4c0.58,0,1.13-0.13,1.62-0.35l0.74,0.74C13.65,17.76,12.86,18,12,18z M19,13l-2.49,2.49L16.5,15.5L14,13h0.03 H16c0-2.21-1.79-4-4-4c-0.58,0-1.13,0.13-1.62,0.35L9.64,8.62C10.35,8.24,11.14,8,12,8c2.76,0,5,2.24,5,5H19z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14.12,5H9.88L8.05,7H4v12h16V7h-4.05L14.12,5z M12,18c-2.76,0-5-2.24-5-5H5l2.49-2.49L7.5,10.5L10,13H9.97 H8c0,2.21,1.79,4,4,4c0.58,0,1.13-0.13,1.62-0.35l0.74,0.74C13.65,17.76,12.86,18,12,18z M19,13l-2.49,2.49L16.5,15.5L14,13h0.03 H16c0-2.21-1.79-4-4-4c-0.58,0-1.13,0.13-1.62,0.35L9.64,8.62C10.35,8.24,11.14,8,12,8c2.76,0,5,2.24,5,5H19z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20,5h-3.17L15,3H9L7.17,5H4C2.9,5,2,5.9,2,7v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V7C22,5.9,21.1,5,20,5z M20,19H4V7 h4.05l1.83-2h4.24l1.83,2H20V19z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,5h-3.17L15,3H9L7.17,5H4C2.9,5,2,5.9,2,7v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V7C22,5.9,21.1,5,20,5z M20,19H4V7 h4.05l1.83-2h4.24l1.83,2H20V19z" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,17c-2.21,0-4-1.79-4-4h1.97H10l-2.5-2.5l-0.01,0.01L5,13h2c0,2.76,2.24,5,5,5c0.86,0,1.65-0.24,2.36-0.62l-0.74-0.74 C13.13,16.87,12.58,17,12,17z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,17c-2.21,0-4-1.79-4-4h1.97H10l-2.5-2.5l-0.01,0.01L5,13h2c0,2.76,2.24,5,5,5c0.86,0,1.65-0.24,2.36-0.62l-0.74-0.74 C13.13,16.87,12.58,17,12,17z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,8c-0.86,0-1.65,0.24-2.36,0.62l0.74,0.73C10.87,9.13,11.42,9,12,9c2.21,0,4,1.79,4,4h-1.97H14l2.5,2.5l0.01-0.01 L19,13h-2C17,10.24,14.76,8,12,8z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,8c-0.86,0-1.65,0.24-2.36,0.62l0.74,0.73C10.87,9.13,11.42,9,12,9c2.21,0,4,1.79,4,4h-1.97H14l2.5,2.5l0.01-0.01 L19,13h-2C17,10.24,14.76,8,12,8z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_flip_camera_ios_twotone = ic_flip_camera_ios_twotone; \ No newline at end of file diff --git a/dist/md/ic_flip_outline.js b/dist/md/ic_flip_outline.js new file mode 100644 index 000000000..68c2bac60 --- /dev/null +++ b/dist/md/ic_flip_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_flip_outline = void 0; +var ic_flip_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 21h2v-2h-2v2zm4-12h2V7h-2v2zM3 5v14c0 1.1.9 2 2 2h4v-2H5V5h4V3H5c-1.1 0-2 .9-2 2zm16-2v2h2c0-1.1-.9-2-2-2zm-8 20h2V1h-2v22zm8-6h2v-2h-2v2zM15 5h2V3h-2v2zm4 8h2v-2h-2v2zm0 8c1.1 0 2-.9 2-2h-2v2z" + }, + "children": [] + }] +}; +exports.ic_flip_outline = ic_flip_outline; \ No newline at end of file diff --git a/dist/md/ic_flip_to_back.js b/dist/md/ic_flip_to_back.js new file mode 100644 index 000000000..acd36d81b --- /dev/null +++ b/dist/md/ic_flip_to_back.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_flip_to_back = void 0; +var ic_flip_to_back = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 7H7v2h2V7zm0 4H7v2h2v-2zm0-8c-1.11 0-2 .9-2 2h2V3zm4 12h-2v2h2v-2zm6-12v2h2c0-1.1-.9-2-2-2zm-6 0h-2v2h2V3zM9 17v-2H7c0 1.1.89 2 2 2zm10-4h2v-2h-2v2zm0-4h2V7h-2v2zm0 8c1.1 0 2-.9 2-2h-2v2zM5 7H3v12c0 1.1.89 2 2 2h12v-2H5V7zm10-2h2V3h-2v2zm0 12h2v-2h-2v2z" + }, + "children": [] + }] +}; +exports.ic_flip_to_back = ic_flip_to_back; \ No newline at end of file diff --git a/dist/md/ic_flip_to_back_outline.js b/dist/md/ic_flip_to_back_outline.js new file mode 100644 index 000000000..a29d38b93 --- /dev/null +++ b/dist/md/ic_flip_to_back_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_flip_to_back_outline = void 0; +var ic_flip_to_back_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 7H7v2h2V7zm0 4H7v2h2v-2zm0-8c-1.11 0-2 .9-2 2h2V3zm4 12h-2v2h2v-2zm6-12v2h2c0-1.1-.9-2-2-2zm-6 0h-2v2h2V3zM9 17v-2H7c0 1.1.89 2 2 2zm10-4h2v-2h-2v2zm0-4h2V7h-2v2zm0 8c1.1 0 2-.9 2-2h-2v2zM5 7H3v12c0 1.1.89 2 2 2h12v-2H5V7zm10-2h2V3h-2v2zm0 12h2v-2h-2v2z" + }, + "children": [] + }] +}; +exports.ic_flip_to_back_outline = ic_flip_to_back_outline; \ No newline at end of file diff --git a/dist/md/ic_flip_to_back_twotone.js b/dist/md/ic_flip_to_back_twotone.js new file mode 100644 index 000000000..69a3aaf7e --- /dev/null +++ b/dist/md/ic_flip_to_back_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_flip_to_back_twotone = void 0; +var ic_flip_to_back_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 7H7v2h2V7zm0 4H7v2h2v-2zm0-8c-1.11 0-2 .9-2 2h2V3zm4 12h-2v2h2v-2zm6-12v2h2c0-1.1-.9-2-2-2zm-6 0h-2v2h2V3zM9 17v-2H7c0 1.1.89 2 2 2zm10-4h2v-2h-2v2zm0-4h2V7h-2v2zm0 8c1.1 0 2-.9 2-2h-2v2zM5 7H3v12c0 1.1.89 2 2 2h12v-2H5V7zm10-2h2V3h-2v2zm0 12h2v-2h-2v2z" + }, + "children": [] + }] +}; +exports.ic_flip_to_back_twotone = ic_flip_to_back_twotone; \ No newline at end of file diff --git a/dist/md/ic_flip_to_front.js b/dist/md/ic_flip_to_front.js new file mode 100644 index 000000000..7f2cd4182 --- /dev/null +++ b/dist/md/ic_flip_to_front.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_flip_to_front = void 0; +var ic_flip_to_front = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 13h2v-2H3v2zm0 4h2v-2H3v2zm2 4v-2H3c0 1.1.89 2 2 2zM3 9h2V7H3v2zm12 12h2v-2h-2v2zm4-18H9c-1.11 0-2 .9-2 2v10c0 1.1.89 2 2 2h10c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 12H9V5h10v10zm-8 6h2v-2h-2v2zm-4 0h2v-2H7v2z" + }, + "children": [] + }] +}; +exports.ic_flip_to_front = ic_flip_to_front; \ No newline at end of file diff --git a/dist/md/ic_flip_to_front_outline.js b/dist/md/ic_flip_to_front_outline.js new file mode 100644 index 000000000..d9cbac407 --- /dev/null +++ b/dist/md/ic_flip_to_front_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_flip_to_front_outline = void 0; +var ic_flip_to_front_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 13h2v-2H3v2zm0 4h2v-2H3v2zm2 4v-2H3c0 1.1.89 2 2 2zM3 9h2V7H3v2zm12 12h2v-2h-2v2zm4-18H9c-1.11 0-2 .9-2 2v10c0 1.1.89 2 2 2h10c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 12H9V5h10v10zm-8 6h2v-2h-2v2zm-4 0h2v-2H7v2z" + }, + "children": [] + }] +}; +exports.ic_flip_to_front_outline = ic_flip_to_front_outline; \ No newline at end of file diff --git a/dist/md/ic_flip_to_front_twotone.js b/dist/md/ic_flip_to_front_twotone.js new file mode 100644 index 000000000..e33f3ead6 --- /dev/null +++ b/dist/md/ic_flip_to_front_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_flip_to_front_twotone = void 0; +var ic_flip_to_front_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 13h2v-2H3v2zm0 4h2v-2H3v2zm2 4v-2H3c0 1.1.89 2 2 2zM3 9h2V7H3v2zm12 12h2v-2h-2v2zm4-18H9c-1.11 0-2 .9-2 2v10c0 1.1.89 2 2 2h10c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 12H9V5h10v10zm-8 6h2v-2h-2v2zm-4 0h2v-2H7v2z" + }, + "children": [] + }] +}; +exports.ic_flip_to_front_twotone = ic_flip_to_front_twotone; \ No newline at end of file diff --git a/dist/md/ic_flip_twotone.js b/dist/md/ic_flip_twotone.js new file mode 100644 index 000000000..e0ae52825 --- /dev/null +++ b/dist/md/ic_flip_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_flip_twotone = void 0; +var ic_flip_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 7h2v2h-2zm0 14c1.1 0 2-.9 2-2h-2v2zm0-6h2v2h-2zm0-4h2v2h-2zM9 5V3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h4v-2H5V5h4zm10-2v2h2c0-1.1-.9-2-2-2zm-8-2h2v22h-2zm4 2h2v2h-2zm0 16h2v2h-2z" + }, + "children": [] + }] +}; +exports.ic_flip_twotone = ic_flip_twotone; \ No newline at end of file diff --git a/dist/md/ic_folder.js b/dist/md/ic_folder.js new file mode 100644 index 000000000..a055fbc9c --- /dev/null +++ b/dist/md/ic_folder.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_folder = void 0; +var ic_folder = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2h-8l-2-2z" + }, + "children": [] + }] +}; +exports.ic_folder = ic_folder; \ No newline at end of file diff --git a/dist/md/ic_folder_open.js b/dist/md/ic_folder_open.js new file mode 100644 index 000000000..a4fff1507 --- /dev/null +++ b/dist/md/ic_folder_open.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_folder_open = void 0; +var ic_folder_open = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V8h16v10z" + }, + "children": [] + }] +}; +exports.ic_folder_open = ic_folder_open; \ No newline at end of file diff --git a/dist/md/ic_folder_open_outline.js b/dist/md/ic_folder_open_outline.js new file mode 100644 index 000000000..fd62018c3 --- /dev/null +++ b/dist/md/ic_folder_open_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_folder_open_outline = void 0; +var ic_folder_open_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V8h16v10z" + }, + "children": [] + }] +}; +exports.ic_folder_open_outline = ic_folder_open_outline; \ No newline at end of file diff --git a/dist/md/ic_folder_open_twotone.js b/dist/md/ic_folder_open_twotone.js new file mode 100644 index 000000000..d1edbdf8a --- /dev/null +++ b/dist/md/ic_folder_open_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_folder_open_twotone = void 0; +var ic_folder_open_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 8h16v10H4z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V8h16v10z" + }, + "children": [] + }] +}; +exports.ic_folder_open_twotone = ic_folder_open_twotone; \ No newline at end of file diff --git a/dist/md/ic_folder_outline.js b/dist/md/ic_folder_outline.js new file mode 100644 index 000000000..cad71f6fa --- /dev/null +++ b/dist/md/ic_folder_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_folder_outline = void 0; +var ic_folder_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9.17 6l2 2H20v10H4V6h5.17M10 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2h-8l-2-2z" + }, + "children": [] + }] +}; +exports.ic_folder_outline = ic_folder_outline; \ No newline at end of file diff --git a/dist/md/ic_folder_shared.js b/dist/md/ic_folder_shared.js new file mode 100644 index 000000000..d0ae8ded8 --- /dev/null +++ b/dist/md/ic_folder_shared.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_folder_shared = void 0; +var ic_folder_shared = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-5 3c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm4 8h-8v-1c0-1.33 2.67-2 4-2s4 .67 4 2v1z" + }, + "children": [] + }] +}; +exports.ic_folder_shared = ic_folder_shared; \ No newline at end of file diff --git a/dist/md/ic_folder_shared_outline.js b/dist/md/ic_folder_shared_outline.js new file mode 100644 index 000000000..674e105d3 --- /dev/null +++ b/dist/md/ic_folder_shared_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_folder_shared_outline = void 0; +var ic_folder_shared_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V6h5.17l2 2H20v10zm-5-5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-4 4h8v-1c0-1.33-2.67-2-4-2s-4 .67-4 2v1z" + }, + "children": [] + }] +}; +exports.ic_folder_shared_outline = ic_folder_shared_outline; \ No newline at end of file diff --git a/dist/md/ic_folder_shared_twotone.js b/dist/md/ic_folder_shared_twotone.js new file mode 100644 index 000000000..30359cd4c --- /dev/null +++ b/dist/md/ic_folder_shared_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_folder_shared_twotone = void 0; +var ic_folder_shared_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.17 8l-.59-.59L9.17 6H4v12h16V8h-8.83zM19 16v1h-8v-1c0-1.33 2.67-2 4-2s4 .67 4 2zm-4-7c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V6h5.17l2 2H20v10zm-5-5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-4 3v1h8v-1c0-1.33-2.67-2-4-2s-4 .67-4 2z" + }, + "children": [] + }] +}; +exports.ic_folder_shared_twotone = ic_folder_shared_twotone; \ No newline at end of file diff --git a/dist/md/ic_folder_special.js b/dist/md/ic_folder_special.js new file mode 100644 index 000000000..56472972d --- /dev/null +++ b/dist/md/ic_folder_special.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_folder_special = void 0; +var ic_folder_special = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 6h-8l-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-2.06 11L15 15.28 12.06 17l.78-3.33-2.59-2.24 3.41-.29L15 8l1.34 3.14 3.41.29-2.59 2.24.78 3.33z" + }, + "children": [] + }] +}; +exports.ic_folder_special = ic_folder_special; \ No newline at end of file diff --git a/dist/md/ic_folder_special_outline.js b/dist/md/ic_folder_special_outline.js new file mode 100644 index 000000000..e7b1e0b8a --- /dev/null +++ b/dist/md/ic_folder_special_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_folder_special_outline = void 0; +var ic_folder_special_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 6h-8l-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V6h5.17l2 2H20v10zm-6.92-3.96L12.39 17 15 15.47 17.61 17l-.69-2.96 2.3-1.99-3.03-.26L15 9l-1.19 2.79-3.03.26z" + }, + "children": [] + }] +}; +exports.ic_folder_special_outline = ic_folder_special_outline; \ No newline at end of file diff --git a/dist/md/ic_folder_special_twotone.js b/dist/md/ic_folder_special_twotone.js new file mode 100644 index 000000000..47c97921b --- /dev/null +++ b/dist/md/ic_folder_special_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_folder_special_twotone = void 0; +var ic_folder_special_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.17 8l-2-2H4v12h16V8h-8.83zM15 9l1.19 2.79 3.03.26-2.3 1.99.69 2.96L15 15.47 12.39 17l.69-2.96-2.3-1.99 3.03-.26L15 9z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 6h-8l-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V6h5.17l2 2H20v10zm-6.92-3.96L12.39 17 15 15.47 17.61 17l-.69-2.96 2.3-1.99-3.03-.26L15 9l-1.19 2.79-3.03.26z" + }, + "children": [] + }] +}; +exports.ic_folder_special_twotone = ic_folder_special_twotone; \ No newline at end of file diff --git a/dist/md/ic_folder_twotone.js b/dist/md/ic_folder_twotone.js new file mode 100644 index 000000000..bb014b624 --- /dev/null +++ b/dist/md/ic_folder_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_folder_twotone = void 0; +var ic_folder_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.17 8l-.58-.59L9.17 6H4v12h16V8h-8z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V6h5.17l1.41 1.41.59.59H20v10z" + }, + "children": [] + }] +}; +exports.ic_folder_twotone = ic_folder_twotone; \ No newline at end of file diff --git a/dist/md/ic_follow_the_signs.js b/dist/md/ic_follow_the_signs.js new file mode 100644 index 000000000..0c6a20bb1 --- /dev/null +++ b/dist/md/ic_follow_the_signs.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_follow_the_signs = void 0; +var ic_follow_the_signs = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9.5,5.5c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S8.4,5.5,9.5,5.5z M5.75,8.9L3,23h2.1l1.75-8L9,17v6h2v-7.55L8.95,13.4 l0.6-3C10.85,12,12.8,13,15,13v-2c-1.85,0-3.45-1-4.35-2.45L9.7,6.95C9.35,6.35,8.7,6,8,6C7.75,6,7.5,6.05,7.25,6.15L2,8.3V13h2 V9.65L5.75,8.9 M13,2v7h3.75v14h1.5V9H22V2H13z M18.01,8V6.25H14.5v-1.5h3.51V3l2.49,2.5L18.01,8z" + }, + "children": [] + }] +}; +exports.ic_follow_the_signs = ic_follow_the_signs; \ No newline at end of file diff --git a/dist/md/ic_follow_the_signs_outline.js b/dist/md/ic_follow_the_signs_outline.js new file mode 100644 index 000000000..3ce6b4f92 --- /dev/null +++ b/dist/md/ic_follow_the_signs_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_follow_the_signs_outline = void 0; +var ic_follow_the_signs_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9.5,5.5c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S8.4,5.5,9.5,5.5z M5.75,8.9L3,23h2.1l1.75-8L9,17v6h2v-7.55L8.95,13.4 l0.6-3C10.85,12,12.8,13,15,13v-2c-1.85,0-3.45-1-4.35-2.45L9.7,6.95C9.35,6.35,8.7,6,8,6C7.75,6,7.5,6.05,7.25,6.15L2,8.3V13h2 V9.65L5.75,8.9 M13,2v7h3.75v14h1.5V9H22V2H13z M18.01,8V6.25H14.5v-1.5h3.51V3l2.49,2.5L18.01,8z" + }, + "children": [] + }] +}; +exports.ic_follow_the_signs_outline = ic_follow_the_signs_outline; \ No newline at end of file diff --git a/dist/md/ic_follow_the_signs_twotone.js b/dist/md/ic_follow_the_signs_twotone.js new file mode 100644 index 000000000..dfeb03e57 --- /dev/null +++ b/dist/md/ic_follow_the_signs_twotone.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_follow_the_signs_twotone = void 0; +var ic_follow_the_signs_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17.64,7.75V6h-3.51V4.5h3.51V2.75l2.49,2.5L17.64,7.75z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9.12,5.25c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S8.02,5.25,9.12,5.25z M5.38,8.65l-2.75,14.1h2.1l1.75-8l2.15,2v6h2V15.2 l-2.05-2.05l0.6-3c1.3,1.6,3.25,2.6,5.45,2.6v-2c-1.85,0-3.45-1-4.35-2.45L9.32,6.7c-0.35-0.6-1-0.95-1.7-0.95 c-0.25,0-0.5,0.05-0.75,0.15L1.62,8.05v4.7h2V9.4L5.38,8.65 M12.62,1.75v7h3.75v14h1.5v-14h3.75v-7H12.62z M17.64,7.75V6h-3.51V4.5 h3.51V2.75l2.49,2.5L17.64,7.75z" + }, + "children": [] + }] +}; +exports.ic_follow_the_signs_twotone = ic_follow_the_signs_twotone; \ No newline at end of file diff --git a/dist/md/ic_font_download.js b/dist/md/ic_font_download.js new file mode 100644 index 000000000..f087cd1b1 --- /dev/null +++ b/dist/md/ic_font_download.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_font_download = void 0; +var ic_font_download = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9.93 13.5h4.14L12 7.98zM20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-4.05 16.5l-1.14-3H9.17l-1.12 3H5.96l5.11-13h1.86l5.11 13h-2.09z" + }, + "children": [] + }] +}; +exports.ic_font_download = ic_font_download; \ No newline at end of file diff --git a/dist/md/ic_font_download_outline.js b/dist/md/ic_font_download_outline.js new file mode 100644 index 000000000..6c2a730f7 --- /dev/null +++ b/dist/md/ic_font_download_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_font_download_outline = void 0; +var ic_font_download_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9.17 15.5h5.64l1.14 3h2.09l-5.11-13h-1.86l-5.11 13h2.09l1.12-3zM12 7.98l2.07 5.52H9.93L12 7.98zM20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H4V4h16v16z" + }, + "children": [] + }] +}; +exports.ic_font_download_outline = ic_font_download_outline; \ No newline at end of file diff --git a/dist/md/ic_font_download_twotone.js b/dist/md/ic_font_download_twotone.js new file mode 100644 index 000000000..dc34f8062 --- /dev/null +++ b/dist/md/ic_font_download_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_font_download_twotone = void 0; +var ic_font_download_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 20h16V4H4v16zm7.07-14.5h1.86l5.11 13h-2.09l-1.14-3H9.17l-1.12 3H5.96l5.11-13zM12 7.98L9.93 13.5h4.14z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9.17 15.5h5.64l1.14 3h2.09l-5.11-13h-1.86l-5.11 13h2.09l1.12-3zM12 7.98l2.07 5.52H9.93L12 7.98zM20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H4V4h16v16z" + }, + "children": [] + }] +}; +exports.ic_font_download_twotone = ic_font_download_twotone; \ No newline at end of file diff --git a/dist/md/ic_food_bank.js b/dist/md/ic_food_bank.js new file mode 100644 index 000000000..c773c5f73 --- /dev/null +++ b/dist/md/ic_food_bank.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_food_bank = void 0; +var ic_food_bank = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12,3L4,9v12h16V9L12,3z M12.5,12.5c0,0.83-0.67,1.5-1.5,1.5v4h-1v-4c-0.83,0-1.5-0.67-1.5-1.5v-3h1v3H10v-3h1v3h0.5v-3h1 V12.5z M15,18h-1v-3.5h-1v-3c0-1.1,0.9-2,2-2V18z" + }, + "children": [] + }] +}; +exports.ic_food_bank = ic_food_bank; \ No newline at end of file diff --git a/dist/md/ic_food_bank_outline.js b/dist/md/ic_food_bank_outline.js new file mode 100644 index 000000000..7de159d40 --- /dev/null +++ b/dist/md/ic_food_bank_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_food_bank_outline = void 0; +var ic_food_bank_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12,5.5l6,4.5v9H6v-9L12,5.5 M12,3L4,9v12h16V9L12,3L12,3z M11.5,9.5v3H11v-3h-1v3H9.5v-3h-1v3c0,0.83,0.67,1.5,1.5,1.5v4h1 v-4c0.83,0,1.5-0.67,1.5-1.5v-3H11.5z M13,11.5v3h1V18h1V9.5C13.9,9.5,13,10.4,13,11.5z" + }, + "children": [] + }] +}; +exports.ic_food_bank_outline = ic_food_bank_outline; \ No newline at end of file diff --git a/dist/md/ic_food_bank_twotone.js b/dist/md/ic_food_bank_twotone.js new file mode 100644 index 000000000..b7e6c71b4 --- /dev/null +++ b/dist/md/ic_food_bank_twotone.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_food_bank_twotone = void 0; +var ic_food_bank_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12,5.5l6,4.5v9H6v-9L12,5.5 M11.5,9.5v3H11v-3h-1v3H9.5v-3h-1v3c0,0.83,0.67,1.5,1.5,1.5v4h1v-4 c0.83,0,1.5-0.67,1.5-1.5v-3H11.5z M13,11.5v3h1V18h1V9.5C13.9,9.5,13,10.4,13,11.5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12,5.5l6,4.5v9H6v-9L12,5.5 M12,3L4,9v12h16V9L12,3L12,3z M11.5,9.5v3H11v-3h-1v3H9.5v-3h-1v3c0,0.83,0.67,1.5,1.5,1.5v4h1 v-4c0.83,0,1.5-0.67,1.5-1.5v-3H11.5z M13,11.5v3h1V18h1V9.5C13.9,9.5,13,10.4,13,11.5z" + }, + "children": [] + }] +}; +exports.ic_food_bank_twotone = ic_food_bank_twotone; \ No newline at end of file diff --git a/dist/md/ic_format_align_center.js b/dist/md/ic_format_align_center.js new file mode 100644 index 000000000..6d296fb86 --- /dev/null +++ b/dist/md/ic_format_align_center.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_align_center = void 0; +var ic_format_align_center = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 15v2h10v-2H7zm-4 6h18v-2H3v2zm0-8h18v-2H3v2zm4-6v2h10V7H7zM3 3v2h18V3H3z" + }, + "children": [] + }] +}; +exports.ic_format_align_center = ic_format_align_center; \ No newline at end of file diff --git a/dist/md/ic_format_align_center_outline.js b/dist/md/ic_format_align_center_outline.js new file mode 100644 index 000000000..c03839539 --- /dev/null +++ b/dist/md/ic_format_align_center_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_align_center_outline = void 0; +var ic_format_align_center_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 15v2h10v-2H7zm-4 6h18v-2H3v2zm0-8h18v-2H3v2zm4-6v2h10V7H7zM3 3v2h18V3H3z" + }, + "children": [] + }] +}; +exports.ic_format_align_center_outline = ic_format_align_center_outline; \ No newline at end of file diff --git a/dist/md/ic_format_align_center_twotone.js b/dist/md/ic_format_align_center_twotone.js new file mode 100644 index 000000000..022bcd9e8 --- /dev/null +++ b/dist/md/ic_format_align_center_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_align_center_twotone = void 0; +var ic_format_align_center_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 3h18v2H3zm4 12h10v2H7zm0-8h10v2H7zm-4 4h18v2H3zm0 8h18v2H3z" + }, + "children": [] + }] +}; +exports.ic_format_align_center_twotone = ic_format_align_center_twotone; \ No newline at end of file diff --git a/dist/md/ic_format_align_justify.js b/dist/md/ic_format_align_justify.js new file mode 100644 index 000000000..c192d54d3 --- /dev/null +++ b/dist/md/ic_format_align_justify.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_align_justify = void 0; +var ic_format_align_justify = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 21h18v-2H3v2zm0-4h18v-2H3v2zm0-4h18v-2H3v2zm0-4h18V7H3v2zm0-6v2h18V3H3z" + }, + "children": [] + }] +}; +exports.ic_format_align_justify = ic_format_align_justify; \ No newline at end of file diff --git a/dist/md/ic_format_align_justify_outline.js b/dist/md/ic_format_align_justify_outline.js new file mode 100644 index 000000000..311eb5535 --- /dev/null +++ b/dist/md/ic_format_align_justify_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_align_justify_outline = void 0; +var ic_format_align_justify_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 21h18v-2H3v2zm0-4h18v-2H3v2zm0-4h18v-2H3v2zm0-4h18V7H3v2zm0-6v2h18V3H3z" + }, + "children": [] + }] +}; +exports.ic_format_align_justify_outline = ic_format_align_justify_outline; \ No newline at end of file diff --git a/dist/md/ic_format_align_justify_twotone.js b/dist/md/ic_format_align_justify_twotone.js new file mode 100644 index 000000000..cebd39bb0 --- /dev/null +++ b/dist/md/ic_format_align_justify_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_align_justify_twotone = void 0; +var ic_format_align_justify_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 3h18v2H3zm0 8h18v2H3zm0 8h18v2H3zm0-4h18v2H3zm0-8h18v2H3z" + }, + "children": [] + }] +}; +exports.ic_format_align_justify_twotone = ic_format_align_justify_twotone; \ No newline at end of file diff --git a/dist/md/ic_format_align_left.js b/dist/md/ic_format_align_left.js new file mode 100644 index 000000000..24ecb4a78 --- /dev/null +++ b/dist/md/ic_format_align_left.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_align_left = void 0; +var ic_format_align_left = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 15H3v2h12v-2zm0-8H3v2h12V7zM3 13h18v-2H3v2zm0 8h18v-2H3v2zM3 3v2h18V3H3z" + }, + "children": [] + }] +}; +exports.ic_format_align_left = ic_format_align_left; \ No newline at end of file diff --git a/dist/md/ic_format_align_left_outline.js b/dist/md/ic_format_align_left_outline.js new file mode 100644 index 000000000..cd101794b --- /dev/null +++ b/dist/md/ic_format_align_left_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_align_left_outline = void 0; +var ic_format_align_left_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 15H3v2h12v-2zm0-8H3v2h12V7zM3 13h18v-2H3v2zm0 8h18v-2H3v2zM3 3v2h18V3H3z" + }, + "children": [] + }] +}; +exports.ic_format_align_left_outline = ic_format_align_left_outline; \ No newline at end of file diff --git a/dist/md/ic_format_align_left_twotone.js b/dist/md/ic_format_align_left_twotone.js new file mode 100644 index 000000000..89b7ed387 --- /dev/null +++ b/dist/md/ic_format_align_left_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_align_left_twotone = void 0; +var ic_format_align_left_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 19h18v2H3zM3 7h12v2H3zm0-4h18v2H3zm0 12h12v2H3zm0-4h18v2H3z" + }, + "children": [] + }] +}; +exports.ic_format_align_left_twotone = ic_format_align_left_twotone; \ No newline at end of file diff --git a/dist/md/ic_format_align_right.js b/dist/md/ic_format_align_right.js new file mode 100644 index 000000000..5dd2331a9 --- /dev/null +++ b/dist/md/ic_format_align_right.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_align_right = void 0; +var ic_format_align_right = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 21h18v-2H3v2zm6-4h12v-2H9v2zm-6-4h18v-2H3v2zm6-4h12V7H9v2zM3 3v2h18V3H3z" + }, + "children": [] + }] +}; +exports.ic_format_align_right = ic_format_align_right; \ No newline at end of file diff --git a/dist/md/ic_format_align_right_outline.js b/dist/md/ic_format_align_right_outline.js new file mode 100644 index 000000000..85d36441f --- /dev/null +++ b/dist/md/ic_format_align_right_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_align_right_outline = void 0; +var ic_format_align_right_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 21h18v-2H3v2zm6-4h12v-2H9v2zm-6-4h18v-2H3v2zm6-4h12V7H9v2zM3 3v2h18V3H3z" + }, + "children": [] + }] +}; +exports.ic_format_align_right_outline = ic_format_align_right_outline; \ No newline at end of file diff --git a/dist/md/ic_format_align_right_twotone.js b/dist/md/ic_format_align_right_twotone.js new file mode 100644 index 000000000..d373d3934 --- /dev/null +++ b/dist/md/ic_format_align_right_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_align_right_twotone = void 0; +var ic_format_align_right_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 3h18v2H3zm0 16h18v2H3zm0-8h18v2H3zm6 4h12v2H9zm0-8h12v2H9z" + }, + "children": [] + }] +}; +exports.ic_format_align_right_twotone = ic_format_align_right_twotone; \ No newline at end of file diff --git a/dist/md/ic_format_bold.js b/dist/md/ic_format_bold.js new file mode 100644 index 000000000..02794aacd --- /dev/null +++ b/dist/md/ic_format_bold.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_bold = void 0; +var ic_format_bold = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.6 10.79c.97-.67 1.65-1.77 1.65-2.79 0-2.26-1.75-4-4-4H7v14h7.04c2.09 0 3.71-1.7 3.71-3.79 0-1.52-.86-2.82-2.15-3.42zM10 6.5h3c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5h-3v-3zm3.5 9H10v-3h3.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5z" + }, + "children": [] + }] +}; +exports.ic_format_bold = ic_format_bold; \ No newline at end of file diff --git a/dist/md/ic_format_bold_outline.js b/dist/md/ic_format_bold_outline.js new file mode 100644 index 000000000..260c093af --- /dev/null +++ b/dist/md/ic_format_bold_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_bold_outline = void 0; +var ic_format_bold_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.6 10.79c.97-.67 1.65-1.77 1.65-2.79 0-2.26-1.75-4-4-4H7v14h7.04c2.09 0 3.71-1.7 3.71-3.79 0-1.52-.86-2.82-2.15-3.42zM10 6.5h3c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5h-3v-3zm3.5 9H10v-3h3.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5z" + }, + "children": [] + }] +}; +exports.ic_format_bold_outline = ic_format_bold_outline; \ No newline at end of file diff --git a/dist/md/ic_format_bold_twotone.js b/dist/md/ic_format_bold_twotone.js new file mode 100644 index 000000000..47c5020c7 --- /dev/null +++ b/dist/md/ic_format_bold_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_bold_twotone = void 0; +var ic_format_bold_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17.25 8c0-2.26-1.75-4-4-4H7v14h7.04c2.09 0 3.71-1.7 3.71-3.79 0-1.52-.86-2.82-2.15-3.42.97-.67 1.65-1.77 1.65-2.79zM10 6.5h3c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5h-3v-3zm3.5 9H10v-3h3.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5z" + }, + "children": [] + }] +}; +exports.ic_format_bold_twotone = ic_format_bold_twotone; \ No newline at end of file diff --git a/dist/md/ic_format_clear.js b/dist/md/ic_format_clear.js new file mode 100644 index 000000000..0f18cf84b --- /dev/null +++ b/dist/md/ic_format_clear.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_clear = void 0; +var ic_format_clear = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3.27 5L2 6.27l6.97 6.97L6.5 19h3l1.57-3.66L16.73 21 18 19.73 3.55 5.27 3.27 5zM6 5v.18L8.82 8h2.4l-.72 1.68 2.1 2.1L14.21 8H20V5H6z" + }, + "children": [] + }] +}; +exports.ic_format_clear = ic_format_clear; \ No newline at end of file diff --git a/dist/md/ic_format_clear_outline.js b/dist/md/ic_format_clear_outline.js new file mode 100644 index 000000000..eb7aa4fa3 --- /dev/null +++ b/dist/md/ic_format_clear_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_clear_outline = void 0; +var ic_format_clear_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 8V5H6.39l3 3h1.83l-.55 1.28 2.09 2.1L14.21 8zM3.41 4.86L2 6.27l6.97 6.97L6.5 19h3l1.57-3.66L16.73 21l1.41-1.41z" + }, + "children": [] + }] +}; +exports.ic_format_clear_outline = ic_format_clear_outline; \ No newline at end of file diff --git a/dist/md/ic_format_clear_twotone.js b/dist/md/ic_format_clear_twotone.js new file mode 100644 index 000000000..57d44051b --- /dev/null +++ b/dist/md/ic_format_clear_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_clear_twotone = void 0; +var ic_format_clear_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 8V5H6.39l3 3h1.83l-.55 1.28 2.09 2.1L14.21 8zM3.41 4.86L2 6.27l6.97 6.97L6.5 19h3l1.57-3.66L16.73 21l1.41-1.41z" + }, + "children": [] + }] +}; +exports.ic_format_clear_twotone = ic_format_clear_twotone; \ No newline at end of file diff --git a/dist/md/ic_format_color_fill.js b/dist/md/ic_format_color_fill.js new file mode 100644 index 000000000..74d37652d --- /dev/null +++ b/dist/md/ic_format_color_fill.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_color_fill = void 0; +var ic_format_color_fill = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16.56,8.94L7.62,0L6.21,1.41l2.38,2.38L3.44,8.94c-0.59,0.59-0.59,1.54,0,2.12l5.5,5.5C9.23,16.85,9.62,17,10,17 s0.77-0.15,1.06-0.44l5.5-5.5C17.15,10.48,17.15,9.53,16.56,8.94z M5.21,10L10,5.21L14.79,10H5.21z M19,11.5c0,0-2,2.17-2,3.5 c0,1.1,0.9,2,2,2s2-0.9,2-2C21,13.67,19,11.5,19,11.5z M2,20h20v4H2V20z" + }, + "children": [] + }] +}; +exports.ic_format_color_fill = ic_format_color_fill; \ No newline at end of file diff --git a/dist/md/ic_format_color_fill_twotone.js b/dist/md/ic_format_color_fill_twotone.js new file mode 100644 index 000000000..7a82b077d --- /dev/null +++ b/dist/md/ic_format_color_fill_twotone.js @@ -0,0 +1,38 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_color_fill_twotone = void 0; +var ic_format_color_fill_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 5.21L5.21 10h9.58z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 17c1.1 0 2-.9 2-2 0-1.33-2-3.5-2-3.5s-2 2.17-2 3.5c0 1.1.9 2 2 2zm-10.06-.44c.29.29.68.44 1.06.44s.77-.15 1.06-.44l5.5-5.5c.59-.58.59-1.53 0-2.12L7.62 0 6.21 1.41l2.38 2.38-5.15 5.15c-.59.59-.59 1.54 0 2.12l5.5 5.5zM10 5.21L14.79 10H5.21L10 5.21z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M0 20h24v4H0z", + "fill-opacity": ".36" + }, + "children": [] + }] +}; +exports.ic_format_color_fill_twotone = ic_format_color_fill_twotone; \ No newline at end of file diff --git a/dist/md/ic_format_color_reset.js b/dist/md/ic_format_color_reset.js new file mode 100644 index 000000000..4e31df55b --- /dev/null +++ b/dist/md/ic_format_color_reset.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_color_reset = void 0; +var ic_format_color_reset = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0zm0 0h24v24H0zm0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 14c0-4-6-10.8-6-10.8s-1.33 1.51-2.73 3.52l8.59 8.59c.09-.42.14-.86.14-1.31zm-.88 3.12L12.5 12.5 5.27 5.27 4 6.55l3.32 3.32C6.55 11.32 6 12.79 6 14c0 3.31 2.69 6 6 6 1.52 0 2.9-.57 3.96-1.5l2.63 2.63 1.27-1.27-2.74-2.74z" + }, + "children": [] + }] +}; +exports.ic_format_color_reset = ic_format_color_reset; \ No newline at end of file diff --git a/dist/md/ic_format_color_reset_outline.js b/dist/md/ic_format_color_reset_outline.js new file mode 100644 index 000000000..a1e6ed2f0 --- /dev/null +++ b/dist/md/ic_format_color_reset_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_color_reset_outline = void 0; +var ic_format_color_reset_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 6.36c1.53 2 3.08 4.43 3.71 6.24l2.23 2.23c.03-.27.06-.55.06-.83 0-3.98-6-10.8-6-10.8s-1.18 1.35-2.5 3.19l1.44 1.44c.34-.51.7-1 1.06-1.47zM5.41 5.14L4 6.55l3.32 3.32C6.55 11.33 6 12.79 6 14c0 3.31 2.69 6 6 6 1.52 0 2.9-.57 3.95-1.5l2.63 2.63L20 19.72 5.41 5.14zM12 18c-2.21 0-4-1.79-4-4 0-.69.32-1.62.81-2.64l5.72 5.72c-.7.56-1.57.92-2.53.92z" + }, + "children": [] + }] +}; +exports.ic_format_color_reset_outline = ic_format_color_reset_outline; \ No newline at end of file diff --git a/dist/md/ic_format_color_reset_twotone.js b/dist/md/ic_format_color_reset_twotone.js new file mode 100644 index 000000000..a7b7a91de --- /dev/null +++ b/dist/md/ic_format_color_reset_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_color_reset_twotone = void 0; +var ic_format_color_reset_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10.93 7.83l4.77 4.77c-.62-1.81-2.17-4.24-3.71-6.24-.35.47-.71.96-1.06 1.47zM12 18c.96 0 1.83-.36 2.53-.92l-5.72-5.72C8.32 12.38 8 13.31 8 14c0 2.21 1.79 4 4 4z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 6.36c1.53 2 3.08 4.43 3.71 6.24l2.23 2.23c.03-.27.06-.55.06-.83 0-3.98-6-10.8-6-10.8s-1.18 1.35-2.5 3.19l1.44 1.44c.34-.51.7-1 1.06-1.47zM5.41 5.14L4 6.55l3.32 3.32C6.55 11.33 6 12.79 6 14c0 3.31 2.69 6 6 6 1.52 0 2.9-.57 3.95-1.5l2.63 2.63L20 19.72 5.41 5.14zM12 18c-2.21 0-4-1.79-4-4 0-.69.32-1.62.81-2.64l5.72 5.72c-.7.56-1.57.92-2.53.92z" + }, + "children": [] + }] +}; +exports.ic_format_color_reset_twotone = ic_format_color_reset_twotone; \ No newline at end of file diff --git a/dist/md/ic_format_color_text.js b/dist/md/ic_format_color_text.js new file mode 100644 index 000000000..4a35294b2 --- /dev/null +++ b/dist/md/ic_format_color_text.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_color_text = void 0; +var ic_format_color_text = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M2,20h20v4H2V20z M5.49,17h2.42l1.27-3.58h5.65L16.09,17h2.42L13.25,3h-2.5L5.49,17z M9.91,11.39l2.03-5.79h0.12l2.03,5.79 H9.91z" + }, + "children": [] + }] +}; +exports.ic_format_color_text = ic_format_color_text; \ No newline at end of file diff --git a/dist/md/ic_format_color_text_twotone.js b/dist/md/ic_format_color_text_twotone.js new file mode 100644 index 000000000..23d3dbc3c --- /dev/null +++ b/dist/md/ic_format_color_text_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_color_text_twotone = void 0; +var ic_format_color_text_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M0 20h24v4H0z", + "fill-opacity": ".36" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5.5 17h2.25l1.12-3h6.25l1.12 3h2.25L13 3h-2L5.5 17zm8.88-5H9.62L12 5.67 14.38 12z" + }, + "children": [] + }] +}; +exports.ic_format_color_text_twotone = ic_format_color_text_twotone; \ No newline at end of file diff --git a/dist/md/ic_format_indent_decrease.js b/dist/md/ic_format_indent_decrease.js new file mode 100644 index 000000000..0493f41cf --- /dev/null +++ b/dist/md/ic_format_indent_decrease.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_indent_decrease = void 0; +var ic_format_indent_decrease = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 17h10v-2H11v2zm-8-5l4 4V8l-4 4zm0 9h18v-2H3v2zM3 3v2h18V3H3zm8 6h10V7H11v2zm0 4h10v-2H11v2z" + }, + "children": [] + }] +}; +exports.ic_format_indent_decrease = ic_format_indent_decrease; \ No newline at end of file diff --git a/dist/md/ic_format_indent_decrease_outline.js b/dist/md/ic_format_indent_decrease_outline.js new file mode 100644 index 000000000..c194d3965 --- /dev/null +++ b/dist/md/ic_format_indent_decrease_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_indent_decrease_outline = void 0; +var ic_format_indent_decrease_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 17h10v-2H11v2zm-8-5l4 4V8l-4 4zm0 9h18v-2H3v2zM3 3v2h18V3H3zm8 6h10V7H11v2zm0 4h10v-2H11v2z" + }, + "children": [] + }] +}; +exports.ic_format_indent_decrease_outline = ic_format_indent_decrease_outline; \ No newline at end of file diff --git a/dist/md/ic_format_indent_decrease_twotone.js b/dist/md/ic_format_indent_decrease_twotone.js new file mode 100644 index 000000000..a1d048ea2 --- /dev/null +++ b/dist/md/ic_format_indent_decrease_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_indent_decrease_twotone = void 0; +var ic_format_indent_decrease_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 16V8l-4 4zm4-9h10v2H11zm0 4h10v2H11zm0 4h10v2H11zm-8 4h18v2H3zM3 3h18v2H3z" + }, + "children": [] + }] +}; +exports.ic_format_indent_decrease_twotone = ic_format_indent_decrease_twotone; \ No newline at end of file diff --git a/dist/md/ic_format_indent_increase.js b/dist/md/ic_format_indent_increase.js new file mode 100644 index 000000000..22d08b212 --- /dev/null +++ b/dist/md/ic_format_indent_increase.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_indent_increase = void 0; +var ic_format_indent_increase = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 21h18v-2H3v2zM3 8v8l4-4-4-4zm8 9h10v-2H11v2zM3 3v2h18V3H3zm8 6h10V7H11v2zm0 4h10v-2H11v2z" + }, + "children": [] + }] +}; +exports.ic_format_indent_increase = ic_format_indent_increase; \ No newline at end of file diff --git a/dist/md/ic_format_indent_increase_outline.js b/dist/md/ic_format_indent_increase_outline.js new file mode 100644 index 000000000..d68b59139 --- /dev/null +++ b/dist/md/ic_format_indent_increase_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_indent_increase_outline = void 0; +var ic_format_indent_increase_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 21h18v-2H3v2zM3 8v8l4-4-4-4zm8 9h10v-2H11v2zM3 3v2h18V3H3zm8 6h10V7H11v2zm0 4h10v-2H11v2z" + }, + "children": [] + }] +}; +exports.ic_format_indent_increase_outline = ic_format_indent_increase_outline; \ No newline at end of file diff --git a/dist/md/ic_format_indent_increase_twotone.js b/dist/md/ic_format_indent_increase_twotone.js new file mode 100644 index 000000000..928950aa8 --- /dev/null +++ b/dist/md/ic_format_indent_increase_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_indent_increase_twotone = void 0; +var ic_format_indent_increase_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 19h18v2H3zM3 3h18v2H3zm8 4h10v2H11zM3 8v8l4-4zm8 3h10v2H11zm0 4h10v2H11z" + }, + "children": [] + }] +}; +exports.ic_format_indent_increase_twotone = ic_format_indent_increase_twotone; \ No newline at end of file diff --git a/dist/md/ic_format_italic.js b/dist/md/ic_format_italic.js new file mode 100644 index 000000000..d7cc052f1 --- /dev/null +++ b/dist/md/ic_format_italic.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_italic = void 0; +var ic_format_italic = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 4v3h2.21l-3.42 8H6v3h8v-3h-2.21l3.42-8H18V4z" + }, + "children": [] + }] +}; +exports.ic_format_italic = ic_format_italic; \ No newline at end of file diff --git a/dist/md/ic_format_italic_outline.js b/dist/md/ic_format_italic_outline.js new file mode 100644 index 000000000..210311815 --- /dev/null +++ b/dist/md/ic_format_italic_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_italic_outline = void 0; +var ic_format_italic_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 4v3h2.21l-3.42 8H6v3h8v-3h-2.21l3.42-8H18V4h-8z" + }, + "children": [] + }] +}; +exports.ic_format_italic_outline = ic_format_italic_outline; \ No newline at end of file diff --git a/dist/md/ic_format_italic_twotone.js b/dist/md/ic_format_italic_twotone.js new file mode 100644 index 000000000..5f75fc4bc --- /dev/null +++ b/dist/md/ic_format_italic_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_italic_twotone = void 0; +var ic_format_italic_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 15v3h8v-3h-2.21l3.42-8H18V4h-8v3h2.21l-3.42 8z" + }, + "children": [] + }] +}; +exports.ic_format_italic_twotone = ic_format_italic_twotone; \ No newline at end of file diff --git a/dist/md/ic_format_line_spacing.js b/dist/md/ic_format_line_spacing.js new file mode 100644 index 000000000..a739a678f --- /dev/null +++ b/dist/md/ic_format_line_spacing.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_line_spacing = void 0; +var ic_format_line_spacing = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 7h2.5L5 3.5 1.5 7H4v10H1.5L5 20.5 8.5 17H6V7zm4-2v2h12V5H10zm0 14h12v-2H10v2zm0-6h12v-2H10v2z" + }, + "children": [] + }] +}; +exports.ic_format_line_spacing = ic_format_line_spacing; \ No newline at end of file diff --git a/dist/md/ic_format_line_spacing_outline.js b/dist/md/ic_format_line_spacing_outline.js new file mode 100644 index 000000000..882509ab3 --- /dev/null +++ b/dist/md/ic_format_line_spacing_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_line_spacing_outline = void 0; +var ic_format_line_spacing_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 7h2.5L5 3.5 1.5 7H4v10H1.5L5 20.5 8.5 17H6V7zm4-2v2h12V5H10zm0 14h12v-2H10v2zm0-6h12v-2H10v2z" + }, + "children": [] + }] +}; +exports.ic_format_line_spacing_outline = ic_format_line_spacing_outline; \ No newline at end of file diff --git a/dist/md/ic_format_line_spacing_twotone.js b/dist/md/ic_format_line_spacing_twotone.js new file mode 100644 index 000000000..f19d17117 --- /dev/null +++ b/dist/md/ic_format_line_spacing_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_line_spacing_twotone = void 0; +var ic_format_line_spacing_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 5h12v2H10zm0 12h12v2H10zm-8.5 0L5 20.5 8.5 17H6V7h2.5L5 3.5 1.5 7H4v10zm8.5-6h12v2H10z" + }, + "children": [] + }] +}; +exports.ic_format_line_spacing_twotone = ic_format_line_spacing_twotone; \ No newline at end of file diff --git a/dist/md/ic_format_list_bulleted.js b/dist/md/ic_format_list_bulleted.js new file mode 100644 index 000000000..7f99d0999 --- /dev/null +++ b/dist/md/ic_format_list_bulleted.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_list_bulleted = void 0; +var ic_format_list_bulleted = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 10.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0-6c-.83 0-1.5.67-1.5 1.5S3.17 7.5 4 7.5 5.5 6.83 5.5 6 4.83 4.5 4 4.5zm0 12c-.83 0-1.5.68-1.5 1.5s.68 1.5 1.5 1.5 1.5-.68 1.5-1.5-.67-1.5-1.5-1.5zM7 19h14v-2H7v2zm0-6h14v-2H7v2zm0-8v2h14V5H7z" + }, + "children": [] + }] +}; +exports.ic_format_list_bulleted = ic_format_list_bulleted; \ No newline at end of file diff --git a/dist/md/ic_format_list_bulleted_outline.js b/dist/md/ic_format_list_bulleted_outline.js new file mode 100644 index 000000000..ac76255bd --- /dev/null +++ b/dist/md/ic_format_list_bulleted_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_list_bulleted_outline = void 0; +var ic_format_list_bulleted_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 10.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0-6c-.83 0-1.5.67-1.5 1.5S3.17 7.5 4 7.5 5.5 6.83 5.5 6 4.83 4.5 4 4.5zm0 12c-.83 0-1.5.68-1.5 1.5s.68 1.5 1.5 1.5 1.5-.68 1.5-1.5-.67-1.5-1.5-1.5zM7 19h14v-2H7v2zm0-6h14v-2H7v2zm0-8v2h14V5H7z" + }, + "children": [] + }] +}; +exports.ic_format_list_bulleted_outline = ic_format_list_bulleted_outline; \ No newline at end of file diff --git a/dist/md/ic_format_list_bulleted_twotone.js b/dist/md/ic_format_list_bulleted_twotone.js new file mode 100644 index 000000000..54a95b213 --- /dev/null +++ b/dist/md/ic_format_list_bulleted_twotone.js @@ -0,0 +1,46 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_list_bulleted_twotone = void 0; +var ic_format_list_bulleted_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 5h14v2H7z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "4", + "cy": "6", + "r": "1.5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 11h14v2H7zm0 6h14v2H7zm-3 2.5c.82 0 1.5-.68 1.5-1.5s-.67-1.5-1.5-1.5-1.5.68-1.5 1.5.68 1.5 1.5 1.5z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "4", + "cy": "12", + "r": "1.5" + }, + "children": [] + }] +}; +exports.ic_format_list_bulleted_twotone = ic_format_list_bulleted_twotone; \ No newline at end of file diff --git a/dist/md/ic_format_list_numbered.js b/dist/md/ic_format_list_numbered.js new file mode 100644 index 000000000..cd1bbd236 --- /dev/null +++ b/dist/md/ic_format_list_numbered.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_list_numbered = void 0; +var ic_format_list_numbered = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M2 17h2v.5H3v1h1v.5H2v1h3v-4H2v1zm1-9h1V4H2v1h1v3zm-1 3h1.8L2 13.1v.9h3v-1H3.2L5 10.9V10H2v1zm5-6v2h14V5H7zm0 14h14v-2H7v2zm0-6h14v-2H7v2z" + }, + "children": [] + }] +}; +exports.ic_format_list_numbered = ic_format_list_numbered; \ No newline at end of file diff --git a/dist/md/ic_format_list_numbered_outline.js b/dist/md/ic_format_list_numbered_outline.js new file mode 100644 index 000000000..f3b891065 --- /dev/null +++ b/dist/md/ic_format_list_numbered_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_list_numbered_outline = void 0; +var ic_format_list_numbered_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M2 17h2v.5H3v1h1v.5H2v1h3v-4H2v1zm1-9h1V4H2v1h1v3zm-1 3h1.8L2 13.1v.9h3v-1H3.2L5 10.9V10H2v1zm5-6v2h14V5H7zm0 14h14v-2H7v2zm0-6h14v-2H7v2z" + }, + "children": [] + }] +}; +exports.ic_format_list_numbered_outline = ic_format_list_numbered_outline; \ No newline at end of file diff --git a/dist/md/ic_format_list_numbered_rtl.js b/dist/md/ic_format_list_numbered_rtl.js new file mode 100644 index 000000000..ae9b875c0 --- /dev/null +++ b/dist/md/ic_format_list_numbered_rtl.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_list_numbered_rtl = void 0; +var ic_format_list_numbered_rtl = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 17h2v.5h-1v1h1v.5h-2v1h3v-4h-3zm1-9h1V4h-2v1h1zm-1 3h1.8L18 13.1v.9h3v-1h-1.8l1.8-2.1V10h-3zM2 5h14v2H2zm0 12h14v2H2zm0-6h14v2H2z" + }, + "children": [] + }] +}; +exports.ic_format_list_numbered_rtl = ic_format_list_numbered_rtl; \ No newline at end of file diff --git a/dist/md/ic_format_list_numbered_rtl_outline.js b/dist/md/ic_format_list_numbered_rtl_outline.js new file mode 100644 index 000000000..ca393f92b --- /dev/null +++ b/dist/md/ic_format_list_numbered_rtl_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_list_numbered_rtl_outline = void 0; +var ic_format_list_numbered_rtl_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 17h2v.5h-1v1h1v.5h-2v1h3v-4h-3v1zm1-9h1V4h-2v1h1v3zm-1 3h1.8L18 13.1v.9h3v-1h-1.8l1.8-2.1V10h-3v1zM2 5h14v2H2V5zm0 12h14v2H2v-2zm0-6h14v2H2v-2z" + }, + "children": [] + }] +}; +exports.ic_format_list_numbered_rtl_outline = ic_format_list_numbered_rtl_outline; \ No newline at end of file diff --git a/dist/md/ic_format_list_numbered_rtl_twotone.js b/dist/md/ic_format_list_numbered_rtl_twotone.js new file mode 100644 index 000000000..c56398652 --- /dev/null +++ b/dist/md/ic_format_list_numbered_rtl_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_list_numbered_rtl_twotone = void 0; +var ic_format_list_numbered_rtl_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M2 11h14v2H2zm16 6h2v.5h-1v1h1v.5h-2v1h3v-4h-3zm0-6h1.8L18 13.1v.9h3v-1h-1.8l1.8-2.1V10h-3zm2-3V4h-2v1h1v3zM2 17h14v2H2zM2 5h14v2H2z" + }, + "children": [] + }] +}; +exports.ic_format_list_numbered_rtl_twotone = ic_format_list_numbered_rtl_twotone; \ No newline at end of file diff --git a/dist/md/ic_format_list_numbered_twotone.js b/dist/md/ic_format_list_numbered_twotone.js new file mode 100644 index 000000000..cdfb07150 --- /dev/null +++ b/dist/md/ic_format_list_numbered_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_list_numbered_twotone = void 0; +var ic_format_list_numbered_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 13H3.2L5 10.9V10H2v1h1.8L2 13.1v.9h3zm2-8h14v2H7zM5 16H2v1h2v.5H3v1h1v.5H2v1h3zm2 1h14v2H7zM3 8h1V4H2v1h1zm4 3h14v2H7z" + }, + "children": [] + }] +}; +exports.ic_format_list_numbered_twotone = ic_format_list_numbered_twotone; \ No newline at end of file diff --git a/dist/md/ic_format_paint.js b/dist/md/ic_format_paint.js new file mode 100644 index 000000000..185a54551 --- /dev/null +++ b/dist/md/ic_format_paint.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_paint = void 0; +var ic_format_paint = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 4V3c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V6h1v4H9v11c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-9h8V4h-3z" + }, + "children": [] + }] +}; +exports.ic_format_paint = ic_format_paint; \ No newline at end of file diff --git a/dist/md/ic_format_paint_outline.js b/dist/md/ic_format_paint_outline.js new file mode 100644 index 000000000..0962a3c73 --- /dev/null +++ b/dist/md/ic_format_paint_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_paint_outline = void 0; +var ic_format_paint_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 4V3c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V6h1v4H9v11c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-9h8V4h-3zm-2 2H6V4h10v2z" + }, + "children": [] + }] +}; +exports.ic_format_paint_outline = ic_format_paint_outline; \ No newline at end of file diff --git a/dist/md/ic_format_paint_twotone.js b/dist/md/ic_format_paint_twotone.js new file mode 100644 index 000000000..63d51b823 --- /dev/null +++ b/dist/md/ic_format_paint_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_paint_twotone = void 0; +var ic_format_paint_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 4h10v2H6z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 2H5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V6h1v4H9v11c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-9h8V4h-3V3c0-.55-.45-1-1-1zm-1 4H6V4h10v2z" + }, + "children": [] + }] +}; +exports.ic_format_paint_twotone = ic_format_paint_twotone; \ No newline at end of file diff --git a/dist/md/ic_format_quote.js b/dist/md/ic_format_quote.js new file mode 100644 index 000000000..0ef4515fa --- /dev/null +++ b/dist/md/ic_format_quote.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_quote = void 0; +var ic_format_quote = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 17h3l2-4V7H5v6h3zm8 0h3l2-4V7h-6v6h3z" + }, + "children": [] + }] +}; +exports.ic_format_quote = ic_format_quote; \ No newline at end of file diff --git a/dist/md/ic_format_quote_outline.js b/dist/md/ic_format_quote_outline.js new file mode 100644 index 000000000..da9525fac --- /dev/null +++ b/dist/md/ic_format_quote_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_quote_outline = void 0; +var ic_format_quote_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18.62 18h-5.24l2-4H13V6h8v7.24L18.62 18zm-2-2h.76L19 12.76V8h-4v4h3.62l-2 4zm-8 2H3.38l2-4H3V6h8v7.24L8.62 18zm-2-2h.76L9 12.76V8H5v4h3.62l-2 4z" + }, + "children": [] + }] +}; +exports.ic_format_quote_outline = ic_format_quote_outline; \ No newline at end of file diff --git a/dist/md/ic_format_quote_twotone.js b/dist/md/ic_format_quote_twotone.js new file mode 100644 index 000000000..55e6dcf07 --- /dev/null +++ b/dist/md/ic_format_quote_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_quote_twotone = void 0; +var ic_format_quote_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16.62 16h.76L19 12.76V8h-4v4h3.62zm-10 0h.76L9 12.76V8H5v4h3.62z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18.62 18L21 13.24V6h-8v8h2.38l-2 4h5.24zM15 12V8h4v4.76L17.38 16h-.76l2-4H15zM3.38 18h5.24L11 13.24V6H3v8h2.38l-2 4zM5 12V8h4v4.76L7.38 16h-.76l2-4H5z" + }, + "children": [] + }] +}; +exports.ic_format_quote_twotone = ic_format_quote_twotone; \ No newline at end of file diff --git a/dist/md/ic_format_shapes.js b/dist/md/ic_format_shapes.js new file mode 100644 index 000000000..fec46ff55 --- /dev/null +++ b/dist/md/ic_format_shapes.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_shapes = void 0; +var ic_format_shapes = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M23 7V1h-6v2H7V1H1v6h2v10H1v6h6v-2h10v2h6v-6h-2V7h2zM3 3h2v2H3V3zm2 18H3v-2h2v2zm12-2H7v-2H5V7h2V5h10v2h2v10h-2v2zm4 2h-2v-2h2v2zM19 5V3h2v2h-2zm-5.27 9h-3.49l-.73 2H7.89l3.4-9h1.4l3.41 9h-1.63l-.74-2zm-3.04-1.26h2.61L12 8.91l-1.31 3.83z" + }, + "children": [] + }] +}; +exports.ic_format_shapes = ic_format_shapes; \ No newline at end of file diff --git a/dist/md/ic_format_shapes_outline.js b/dist/md/ic_format_shapes_outline.js new file mode 100644 index 000000000..8ff01a280 --- /dev/null +++ b/dist/md/ic_format_shapes_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_shapes_outline = void 0; +var ic_format_shapes_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M23 7V1h-6v2H7V1H1v6h2v10H1v6h6v-2h10v2h6v-6h-2V7h2zM3 3h2v2H3V3zm2 18H3v-2h2v2zm12-2H7v-2H5V7h2V5h10v2h2v10h-2v2zm4 2h-2v-2h2v2zM19 5V3h2v2h-2zm-5.27 9h-3.49l-.73 2H7.89l3.4-9h1.4l3.41 9h-1.63l-.74-2zm-3.04-1.26h2.61L12 8.91l-1.31 3.83z" + }, + "children": [] + }] +}; +exports.ic_format_shapes_outline = ic_format_shapes_outline; \ No newline at end of file diff --git a/dist/md/ic_format_shapes_twotone.js b/dist/md/ic_format_shapes_twotone.js new file mode 100644 index 000000000..b14863116 --- /dev/null +++ b/dist/md/ic_format_shapes_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_shapes_twotone = void 0; +var ic_format_shapes_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 3h2v2H3zm16 16h2v2h-2zm0-16h2v2h-2zM3 19h2v2H3z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.29 7l-3.4 9h1.62l.73-2h3.49l.74 2h1.63l-3.41-9h-1.4zm-.6 5.74L12 8.91l1.3 3.83h-2.61zM17 3H7V1H1v6h2v10H1v6h6v-2h10v2h6v-6h-2V7h2V1h-6v2zM3 3h2v2H3V3zm2 18H3v-2h2v2zm16 0h-2v-2h2v2zM19 3h2v2h-2V3zm0 14h-2v2H7v-2H5V7h2V5h10v2h2v10z" + }, + "children": [] + }] +}; +exports.ic_format_shapes_twotone = ic_format_shapes_twotone; \ No newline at end of file diff --git a/dist/md/ic_format_size.js b/dist/md/ic_format_size.js new file mode 100644 index 000000000..2889c5d5b --- /dev/null +++ b/dist/md/ic_format_size.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_size = void 0; +var ic_format_size = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 4v3h5v12h3V7h5V4H9zm-6 8h3v7h3v-7h3V9H3v3z" + }, + "children": [] + }] +}; +exports.ic_format_size = ic_format_size; \ No newline at end of file diff --git a/dist/md/ic_format_size_outline.js b/dist/md/ic_format_size_outline.js new file mode 100644 index 000000000..5804f65ae --- /dev/null +++ b/dist/md/ic_format_size_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_size_outline = void 0; +var ic_format_size_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 4v3h5v12h3V7h5V4H9zm-6 8h3v7h3v-7h3V9H3v3z" + }, + "children": [] + }] +}; +exports.ic_format_size_outline = ic_format_size_outline; \ No newline at end of file diff --git a/dist/md/ic_format_size_twotone.js b/dist/md/ic_format_size_twotone.js new file mode 100644 index 000000000..82f8fbb6f --- /dev/null +++ b/dist/md/ic_format_size_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_size_twotone = void 0; +var ic_format_size_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 12h3v7h3v-7h3V9H3zm6-5h5v12h3V7h5V4H9z" + }, + "children": [] + }] +}; +exports.ic_format_size_twotone = ic_format_size_twotone; \ No newline at end of file diff --git a/dist/md/ic_format_strikethrough.js b/dist/md/ic_format_strikethrough.js new file mode 100644 index 000000000..602a8cb6a --- /dev/null +++ b/dist/md/ic_format_strikethrough.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_strikethrough = void 0; +var ic_format_strikethrough = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 19h4v-3h-4v3zM5 4v3h5v3h4V7h5V4H5zM3 14h18v-2H3v2z" + }, + "children": [] + }] +}; +exports.ic_format_strikethrough = ic_format_strikethrough; \ No newline at end of file diff --git a/dist/md/ic_format_strikethrough_outline.js b/dist/md/ic_format_strikethrough_outline.js new file mode 100644 index 000000000..4b682d87f --- /dev/null +++ b/dist/md/ic_format_strikethrough_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_strikethrough_outline = void 0; +var ic_format_strikethrough_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 19h4v-3h-4v3zM5 4v3h5v3h4V7h5V4H5zM3 14h18v-2H3v2z" + }, + "children": [] + }] +}; +exports.ic_format_strikethrough_outline = ic_format_strikethrough_outline; \ No newline at end of file diff --git a/dist/md/ic_format_strikethrough_twotone.js b/dist/md/ic_format_strikethrough_twotone.js new file mode 100644 index 000000000..9bfe42fec --- /dev/null +++ b/dist/md/ic_format_strikethrough_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_strikethrough_twotone = void 0; +var ic_format_strikethrough_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 12h18v2H3zm11-2V7h5V4H5v3h5v3zm-4 6h4v3h-4z" + }, + "children": [] + }] +}; +exports.ic_format_strikethrough_twotone = ic_format_strikethrough_twotone; \ No newline at end of file diff --git a/dist/md/ic_format_textdirection_l_to_r.js b/dist/md/ic_format_textdirection_l_to_r.js new file mode 100644 index 000000000..ec6bef3ef --- /dev/null +++ b/dist/md/ic_format_textdirection_l_to_r.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_textdirection_l_to_r = void 0; +var ic_format_textdirection_l_to_r = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 10v5h2V4h2v11h2V4h2V2H9C6.79 2 5 3.79 5 6s1.79 4 4 4zm12 8l-4-4v3H5v2h12v3l4-4z" + }, + "children": [] + }] +}; +exports.ic_format_textdirection_l_to_r = ic_format_textdirection_l_to_r; \ No newline at end of file diff --git a/dist/md/ic_format_textdirection_l_to_r_outline.js b/dist/md/ic_format_textdirection_l_to_r_outline.js new file mode 100644 index 000000000..aefb283ea --- /dev/null +++ b/dist/md/ic_format_textdirection_l_to_r_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_textdirection_l_to_r_outline = void 0; +var ic_format_textdirection_l_to_r_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 4v4c-1.1 0-2-.9-2-2s.9-2 2-2m8-2H9C6.79 2 5 3.79 5 6s1.79 4 4 4v5h2V4h2v11h2V4h2V2zm0 12v3H5v2h12v3l4-4-4-4z" + }, + "children": [] + }] +}; +exports.ic_format_textdirection_l_to_r_outline = ic_format_textdirection_l_to_r_outline; \ No newline at end of file diff --git a/dist/md/ic_format_textdirection_l_to_r_twotone.js b/dist/md/ic_format_textdirection_l_to_r_twotone.js new file mode 100644 index 000000000..89fe7fc7f --- /dev/null +++ b/dist/md/ic_format_textdirection_l_to_r_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_textdirection_l_to_r_twotone = void 0; +var ic_format_textdirection_l_to_r_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 8V4c-1.1 0-2 .9-2 2s.9 2 2 2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 10v5h2V4h2v11h2V4h2V2H9C6.79 2 5 3.79 5 6s1.79 4 4 4zm0-6v4c-1.1 0-2-.9-2-2s.9-2 2-2zm12 14l-4-4v3H5v2h12v3z" + }, + "children": [] + }] +}; +exports.ic_format_textdirection_l_to_r_twotone = ic_format_textdirection_l_to_r_twotone; \ No newline at end of file diff --git a/dist/md/ic_format_textdirection_r_to_l.js b/dist/md/ic_format_textdirection_r_to_l.js new file mode 100644 index 000000000..2fccf509b --- /dev/null +++ b/dist/md/ic_format_textdirection_r_to_l.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_textdirection_r_to_l = void 0; +var ic_format_textdirection_r_to_l = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 10v5h2V4h2v11h2V4h2V2h-8C7.79 2 6 3.79 6 6s1.79 4 4 4zm-2 7v-3l-4 4 4 4v-3h12v-2H8z" + }, + "children": [] + }] +}; +exports.ic_format_textdirection_r_to_l = ic_format_textdirection_r_to_l; \ No newline at end of file diff --git a/dist/md/ic_format_textdirection_r_to_l_outline.js b/dist/md/ic_format_textdirection_r_to_l_outline.js new file mode 100644 index 000000000..8ae8a199b --- /dev/null +++ b/dist/md/ic_format_textdirection_r_to_l_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_textdirection_r_to_l_outline = void 0; +var ic_format_textdirection_r_to_l_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 4v4c-1.1 0-2-.9-2-2s.9-2 2-2m8-2h-8C7.79 2 6 3.79 6 6s1.79 4 4 4v5h2V4h2v11h2V4h2V2zM8 14l-4 4 4 4v-3h12v-2H8v-3z" + }, + "children": [] + }] +}; +exports.ic_format_textdirection_r_to_l_outline = ic_format_textdirection_r_to_l_outline; \ No newline at end of file diff --git a/dist/md/ic_format_textdirection_r_to_l_twotone.js b/dist/md/ic_format_textdirection_r_to_l_twotone.js new file mode 100644 index 000000000..6a94c3b12 --- /dev/null +++ b/dist/md/ic_format_textdirection_r_to_l_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_textdirection_r_to_l_twotone = void 0; +var ic_format_textdirection_r_to_l_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8 6c0 1.1.9 2 2 2V4c-1.1 0-2 .9-2 2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 6c0 2.21 1.79 4 4 4v5h2V4h2v11h2V4h2V2h-8C7.79 2 6 3.79 6 6zm4 2c-1.1 0-2-.9-2-2s.9-2 2-2v4zM4 18l4 4v-3h12v-2H8v-3z" + }, + "children": [] + }] +}; +exports.ic_format_textdirection_r_to_l_twotone = ic_format_textdirection_r_to_l_twotone; \ No newline at end of file diff --git a/dist/md/ic_format_underlined.js b/dist/md/ic_format_underlined.js new file mode 100644 index 000000000..2bb248b5f --- /dev/null +++ b/dist/md/ic_format_underlined.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_underlined = void 0; +var ic_format_underlined = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 17c3.31 0 6-2.69 6-6V3h-2.5v8c0 1.93-1.57 3.5-3.5 3.5S8.5 12.93 8.5 11V3H6v8c0 3.31 2.69 6 6 6zm-7 2v2h14v-2H5z" + }, + "children": [] + }] +}; +exports.ic_format_underlined = ic_format_underlined; \ No newline at end of file diff --git a/dist/md/ic_format_underlined_outline.js b/dist/md/ic_format_underlined_outline.js new file mode 100644 index 000000000..a4297dd27 --- /dev/null +++ b/dist/md/ic_format_underlined_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_underlined_outline = void 0; +var ic_format_underlined_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 17c3.31 0 6-2.69 6-6V3h-2.5v8c0 1.93-1.57 3.5-3.5 3.5S8.5 12.93 8.5 11V3H6v8c0 3.31 2.69 6 6 6zm-7 2v2h14v-2H5z" + }, + "children": [] + }] +}; +exports.ic_format_underlined_outline = ic_format_underlined_outline; \ No newline at end of file diff --git a/dist/md/ic_format_underlined_twotone.js b/dist/md/ic_format_underlined_twotone.js new file mode 100644 index 000000000..06023e2e8 --- /dev/null +++ b/dist/md/ic_format_underlined_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_format_underlined_twotone = void 0; +var ic_format_underlined_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 19h14v2H5zM6 3v8c0 3.31 2.69 6 6 6s6-2.69 6-6V3h-2.5v8c0 1.93-1.57 3.5-3.5 3.5S8.5 12.93 8.5 11V3H6z" + }, + "children": [] + }] +}; +exports.ic_format_underlined_twotone = ic_format_underlined_twotone; \ No newline at end of file diff --git a/dist/md/ic_forum.js b/dist/md/ic_forum.js new file mode 100644 index 000000000..0081e1150 --- /dev/null +++ b/dist/md/ic_forum.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_forum = void 0; +var ic_forum = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 6h-2v9H6v2c0 .55.45 1 1 1h11l4 4V7c0-.55-.45-1-1-1zm-4 6V3c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v14l4-4h10c.55 0 1-.45 1-1z" + }, + "children": [] + }] +}; +exports.ic_forum = ic_forum; \ No newline at end of file diff --git a/dist/md/ic_forum_outline.js b/dist/md/ic_forum_outline.js new file mode 100644 index 000000000..51cd998be --- /dev/null +++ b/dist/md/ic_forum_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_forum_outline = void 0; +var ic_forum_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 4v7H5.17L4 12.17V4h11m1-2H3c-.55 0-1 .45-1 1v14l4-4h10c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm5 4h-2v9H6v2c0 .55.45 1 1 1h11l4 4V7c0-.55-.45-1-1-1z" + }, + "children": [] + }] +}; +exports.ic_forum_outline = ic_forum_outline; \ No newline at end of file diff --git a/dist/md/ic_forum_twotone.js b/dist/md/ic_forum_twotone.js new file mode 100644 index 000000000..0c887d4a5 --- /dev/null +++ b/dist/md/ic_forum_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_forum_twotone = void 0; +var ic_forum_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 11V4H4v8.17L5.17 11H6z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 13c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v14l4-4h10zm-12-.83V4h11v7H5.17L4 12.17zM22 7c0-.55-.45-1-1-1h-2v9H6v2c0 .55.45 1 1 1h11l4 4V7z" + }, + "children": [] + }] +}; +exports.ic_forum_twotone = ic_forum_twotone; \ No newline at end of file diff --git a/dist/md/ic_forward.js b/dist/md/ic_forward.js new file mode 100644 index 000000000..6a07e7607 --- /dev/null +++ b/dist/md/ic_forward.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_forward = void 0; +var ic_forward = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 8V4l8 8-8 8v-4H4V8z" + }, + "children": [] + }] +}; +exports.ic_forward = ic_forward; \ No newline at end of file diff --git a/dist/md/ic_forward_10.js b/dist/md/ic_forward_10.js new file mode 100644 index 000000000..9a437060f --- /dev/null +++ b/dist/md/ic_forward_10.js @@ -0,0 +1,79 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_forward_10 = void 0; +var ic_forward_10 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M18,13c0,3.31-2.69,6-6,6s-6-2.69-6-6s2.69-6,6-6v4l5-5l-5-5v4c-4.42,0-8,3.58-8,8c0,4.42,3.58,8,8,8s8-3.58,8-8H18z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18,13c0,3.31-2.69,6-6,6s-6-2.69-6-6s2.69-6,6-6v4l5-5l-5-5v4c-4.42,0-8,3.58-8,8c0,4.42,3.58,8,8,8s8-3.58,8-8H18z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "10.86,15.94 10.86,11.67 10.77,11.67 9,12.3 9,12.99 10.01,12.68 10.01,15.94" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "10.86,15.94 10.86,11.67 10.77,11.67 9,12.3 9,12.99 10.01,12.68 10.01,15.94" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M12.25,13.44v0.74c0,1.9,1.31,1.82,1.44,1.82c0.14,0,1.44,0.09,1.44-1.82v-0.74c0-1.9-1.31-1.82-1.44-1.82 C13.55,11.62,12.25,11.53,12.25,13.44z M14.29,13.32v0.97c0,0.77-0.21,1.03-0.59,1.03c-0.38,0-0.6-0.26-0.6-1.03v-0.97 c0-0.75,0.22-1.01,0.59-1.01C14.07,12.3,14.29,12.57,14.29,13.32z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12.25,13.44v0.74c0,1.9,1.31,1.82,1.44,1.82c0.14,0,1.44,0.09,1.44-1.82v-0.74c0-1.9-1.31-1.82-1.44-1.82 C13.55,11.62,12.25,11.53,12.25,13.44z M14.29,13.32v0.97c0,0.77-0.21,1.03-0.59,1.03c-0.38,0-0.6-0.26-0.6-1.03v-0.97 c0-0.75,0.22-1.01,0.59-1.01C14.07,12.3,14.29,12.57,14.29,13.32z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_forward_10 = ic_forward_10; \ No newline at end of file diff --git a/dist/md/ic_forward_10_outline.js b/dist/md/ic_forward_10_outline.js new file mode 100644 index 000000000..bbd3c0e63 --- /dev/null +++ b/dist/md/ic_forward_10_outline.js @@ -0,0 +1,119 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_forward_10_outline = void 0; +var ic_forward_10_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M18,13c0,3.31-2.69,6-6,6s-6-2.69-6-6s2.69-6,6-6v4l5-5l-5-5v4c-4.42,0-8,3.58-8,8c0,4.42,3.58,8,8,8s8-3.58,8-8H18z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18,13c0,3.31-2.69,6-6,6s-6-2.69-6-6s2.69-6,6-6v4l5-5l-5-5v4c-4.42,0-8,3.58-8,8c0,4.42,3.58,8,8,8s8-3.58,8-8H18z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "10.9,16 10.9,11.73 10.81,11.73 9.04,12.36 9.04,13.05 10.05,12.74 10.05,16" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "10.9,16 10.9,11.73 10.81,11.73 9.04,12.36 9.04,13.05 10.05,12.74 10.05,16" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M14.32,11.78c-0.18-0.07-0.37-0.1-0.59-0.1s-0.41,0.03-0.59,0.1s-0.33,0.18-0.45,0.33s-0.23,0.34-0.29,0.57 s-0.1,0.5-0.1,0.82v0.74c0,0.32,0.04,0.6,0.11,0.82s0.17,0.42,0.3,0.57s0.28,0.26,0.46,0.33s0.37,0.1,0.59,0.1s0.41-0.03,0.59-0.1 s0.33-0.18,0.45-0.33s0.22-0.34,0.29-0.57s0.1-0.5,0.1-0.82V13.5c0-0.32-0.04-0.6-0.11-0.82s-0.17-0.42-0.3-0.57 S14.49,11.85,14.32,11.78z M14.33,14.35c0,0.19-0.01,0.35-0.04,0.48s-0.06,0.24-0.11,0.32s-0.11,0.14-0.19,0.17 s-0.16,0.05-0.25,0.05s-0.18-0.02-0.25-0.05s-0.14-0.09-0.19-0.17s-0.09-0.19-0.12-0.32s-0.04-0.29-0.04-0.48v-0.97 c0-0.19,0.01-0.35,0.04-0.48s0.06-0.23,0.12-0.31s0.11-0.14,0.19-0.17s0.16-0.05,0.25-0.05s0.18,0.02,0.25,0.05 s0.14,0.09,0.19,0.17s0.09,0.18,0.12,0.31s0.04,0.29,0.04,0.48V14.35z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14.32,11.78c-0.18-0.07-0.37-0.1-0.59-0.1s-0.41,0.03-0.59,0.1s-0.33,0.18-0.45,0.33s-0.23,0.34-0.29,0.57 s-0.1,0.5-0.1,0.82v0.74c0,0.32,0.04,0.6,0.11,0.82s0.17,0.42,0.3,0.57s0.28,0.26,0.46,0.33s0.37,0.1,0.59,0.1s0.41-0.03,0.59-0.1 s0.33-0.18,0.45-0.33s0.22-0.34,0.29-0.57s0.1-0.5,0.1-0.82V13.5c0-0.32-0.04-0.6-0.11-0.82s-0.17-0.42-0.3-0.57 S14.49,11.85,14.32,11.78z M14.33,14.35c0,0.19-0.01,0.35-0.04,0.48s-0.06,0.24-0.11,0.32s-0.11,0.14-0.19,0.17 s-0.16,0.05-0.25,0.05s-0.18-0.02-0.25-0.05s-0.14-0.09-0.19-0.17s-0.09-0.19-0.12-0.32s-0.04-0.29-0.04-0.48v-0.97 c0-0.19,0.01-0.35,0.04-0.48s0.06-0.23,0.12-0.31s0.11-0.14,0.19-0.17s0.16-0.05,0.25-0.05s0.18,0.02,0.25,0.05 s0.14,0.09,0.19,0.17s0.09,0.18,0.12,0.31s0.04,0.29,0.04,0.48V14.35z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_forward_10_outline = ic_forward_10_outline; \ No newline at end of file diff --git a/dist/md/ic_forward_10_twotone.js b/dist/md/ic_forward_10_twotone.js new file mode 100644 index 000000000..0804989c3 --- /dev/null +++ b/dist/md/ic_forward_10_twotone.js @@ -0,0 +1,119 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_forward_10_twotone = void 0; +var ic_forward_10_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M18,13c0,3.31-2.69,6-6,6s-6-2.69-6-6s2.69-6,6-6v4l5-5l-5-5v4c-4.42,0-8,3.58-8,8c0,4.42,3.58,8,8,8s8-3.58,8-8H18z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18,13c0,3.31-2.69,6-6,6s-6-2.69-6-6s2.69-6,6-6v4l5-5l-5-5v4c-4.42,0-8,3.58-8,8c0,4.42,3.58,8,8,8s8-3.58,8-8H18z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "10.9,16 10.9,11.73 10.81,11.73 9.04,12.36 9.04,13.05 10.05,12.74 10.05,16" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "10.9,16 10.9,11.73 10.81,11.73 9.04,12.36 9.04,13.05 10.05,12.74 10.05,16" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M14.32,11.78c-0.18-0.07-0.37-0.1-0.59-0.1s-0.41,0.03-0.59,0.1s-0.33,0.18-0.45,0.33s-0.23,0.34-0.29,0.57 s-0.1,0.5-0.1,0.82v0.74c0,0.32,0.04,0.6,0.11,0.82s0.17,0.42,0.3,0.57s0.28,0.26,0.46,0.33s0.37,0.1,0.59,0.1s0.41-0.03,0.59-0.1 s0.33-0.18,0.45-0.33s0.22-0.34,0.29-0.57s0.1-0.5,0.1-0.82V13.5c0-0.32-0.04-0.6-0.11-0.82s-0.17-0.42-0.3-0.57 S14.49,11.85,14.32,11.78z M14.33,14.35c0,0.19-0.01,0.35-0.04,0.48s-0.06,0.24-0.11,0.32s-0.11,0.14-0.19,0.17 s-0.16,0.05-0.25,0.05s-0.18-0.02-0.25-0.05s-0.14-0.09-0.19-0.17s-0.09-0.19-0.12-0.32s-0.04-0.29-0.04-0.48v-0.97 c0-0.19,0.01-0.35,0.04-0.48s0.06-0.23,0.12-0.31s0.11-0.14,0.19-0.17s0.16-0.05,0.25-0.05s0.18,0.02,0.25,0.05 s0.14,0.09,0.19,0.17s0.09,0.18,0.12,0.31s0.04,0.29,0.04,0.48V14.35z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14.32,11.78c-0.18-0.07-0.37-0.1-0.59-0.1s-0.41,0.03-0.59,0.1s-0.33,0.18-0.45,0.33s-0.23,0.34-0.29,0.57 s-0.1,0.5-0.1,0.82v0.74c0,0.32,0.04,0.6,0.11,0.82s0.17,0.42,0.3,0.57s0.28,0.26,0.46,0.33s0.37,0.1,0.59,0.1s0.41-0.03,0.59-0.1 s0.33-0.18,0.45-0.33s0.22-0.34,0.29-0.57s0.1-0.5,0.1-0.82V13.5c0-0.32-0.04-0.6-0.11-0.82s-0.17-0.42-0.3-0.57 S14.49,11.85,14.32,11.78z M14.33,14.35c0,0.19-0.01,0.35-0.04,0.48s-0.06,0.24-0.11,0.32s-0.11,0.14-0.19,0.17 s-0.16,0.05-0.25,0.05s-0.18-0.02-0.25-0.05s-0.14-0.09-0.19-0.17s-0.09-0.19-0.12-0.32s-0.04-0.29-0.04-0.48v-0.97 c0-0.19,0.01-0.35,0.04-0.48s0.06-0.23,0.12-0.31s0.11-0.14,0.19-0.17s0.16-0.05,0.25-0.05s0.18,0.02,0.25,0.05 s0.14,0.09,0.19,0.17s0.09,0.18,0.12,0.31s0.04,0.29,0.04,0.48V14.35z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_forward_10_twotone = ic_forward_10_twotone; \ No newline at end of file diff --git a/dist/md/ic_forward_30.js b/dist/md/ic_forward_30.js new file mode 100644 index 000000000..37beee5fc --- /dev/null +++ b/dist/md/ic_forward_30.js @@ -0,0 +1,79 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_forward_30 = void 0; +var ic_forward_30 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M18,13c0,3.31-2.69,6-6,6s-6-2.69-6-6s2.69-6,6-6v4l5-5l-5-5v4c-4.42,0-8,3.58-8,8c0,4.42,3.58,8,8,8s8-3.58,8-8H18z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18,13c0,3.31-2.69,6-6,6s-6-2.69-6-6s2.69-6,6-6v4l5-5l-5-5v4c-4.42,0-8,3.58-8,8c0,4.42,3.58,8,8,8s8-3.58,8-8H18z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M10.06,15.38c-0.29,0-0.62-0.17-0.62-0.54H8.59c0,0.97,0.9,1.23,1.45,1.23c0.87,0,1.51-0.46,1.51-1.25 c0-0.66-0.45-0.9-0.71-1c0.11-0.05,0.65-0.32,0.65-0.92c0-0.21-0.05-1.22-1.44-1.22c-0.62,0-1.4,0.35-1.4,1.16h0.85 c0-0.34,0.31-0.48,0.57-0.48c0.59,0,0.58,0.5,0.58,0.54c0,0.52-0.41,0.59-0.63,0.59H9.56v0.66h0.45c0.65,0,0.7,0.42,0.7,0.64 C10.71,15.11,10.5,15.38,10.06,15.38z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M10.06,15.38c-0.29,0-0.62-0.17-0.62-0.54H8.59c0,0.97,0.9,1.23,1.45,1.23c0.87,0,1.51-0.46,1.51-1.25 c0-0.66-0.45-0.9-0.71-1c0.11-0.05,0.65-0.32,0.65-0.92c0-0.21-0.05-1.22-1.44-1.22c-0.62,0-1.4,0.35-1.4,1.16h0.85 c0-0.34,0.31-0.48,0.57-0.48c0.59,0,0.58,0.5,0.58,0.54c0,0.52-0.41,0.59-0.63,0.59H9.56v0.66h0.45c0.65,0,0.7,0.42,0.7,0.64 C10.71,15.11,10.5,15.38,10.06,15.38z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M13.85,11.68c-0.14,0-1.44-0.08-1.44,1.82v0.74c0,1.9,1.31,1.82,1.44,1.82c0.14,0,1.44,0.09,1.44-1.82V13.5 C15.3,11.59,13.99,11.68,13.85,11.68z M14.45,14.35c0,0.77-0.21,1.03-0.59,1.03c-0.38,0-0.6-0.26-0.6-1.03v-0.97 c0-0.75,0.22-1.01,0.59-1.01c0.38,0,0.6,0.26,0.6,1.01V14.35z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M13.85,11.68c-0.14,0-1.44-0.08-1.44,1.82v0.74c0,1.9,1.31,1.82,1.44,1.82c0.14,0,1.44,0.09,1.44-1.82V13.5 C15.3,11.59,13.99,11.68,13.85,11.68z M14.45,14.35c0,0.77-0.21,1.03-0.59,1.03c-0.38,0-0.6-0.26-0.6-1.03v-0.97 c0-0.75,0.22-1.01,0.59-1.01c0.38,0,0.6,0.26,0.6,1.01V14.35z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_forward_30 = ic_forward_30; \ No newline at end of file diff --git a/dist/md/ic_forward_30_outline.js b/dist/md/ic_forward_30_outline.js new file mode 100644 index 000000000..a8bca8dee --- /dev/null +++ b/dist/md/ic_forward_30_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_forward_30_outline = void 0; +var ic_forward_30_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 13c0 3.31-2.69 6-6 6s-6-2.69-6-6 2.69-6 6-6v4l5-5-5-5v4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8h-2zm-7.46 2.22c-.06.05-.12.09-.2.12s-.17.04-.27.04c-.09 0-.17-.01-.25-.04s-.14-.06-.2-.11-.1-.1-.13-.17-.05-.14-.05-.22h-.85c0 .21.04.39.12.55s.19.28.33.38.29.18.46.23.35.07.53.07c.21 0 .41-.03.6-.08s.34-.14.48-.24.24-.24.32-.39.12-.33.12-.53c0-.23-.06-.44-.18-.61s-.3-.3-.54-.39c.1-.05.2-.1.28-.17s.15-.14.2-.22.1-.16.13-.25.04-.18.04-.27c0-.2-.04-.37-.11-.53s-.17-.28-.3-.38-.28-.18-.46-.23-.37-.08-.59-.08c-.19 0-.38.03-.54.08s-.32.13-.44.23-.23.22-.3.37-.11.3-.11.48h.85c0-.07.02-.14.05-.2s.07-.11.12-.15.11-.07.18-.1.14-.03.22-.03c.1 0 .18.01.25.04s.13.06.18.11.08.11.11.17.04.14.04.22c0 .18-.05.32-.16.43s-.26.16-.48.16h-.43v.66h.45c.11 0 .2.01.29.04s.16.06.22.11.11.12.14.2.05.18.05.29c0 .09-.01.17-.04.24s-.08.11-.13.17zm3.9-3.44c-.18-.07-.37-.1-.59-.1s-.41.03-.59.1-.33.18-.45.33-.23.34-.29.57-.1.5-.1.82v.74c0 .32.04.6.11.82s.17.42.3.57.28.26.46.33.37.1.59.1.41-.03.59-.1.33-.18.45-.33.22-.34.29-.57.1-.5.1-.82v-.74c0-.32-.04-.6-.11-.82s-.17-.42-.3-.57-.28-.26-.46-.33zm.01 2.57c0 .19-.01.35-.04.48s-.06.24-.11.32-.11.14-.19.17-.16.05-.25.05-.18-.02-.25-.05-.14-.09-.19-.17-.09-.19-.12-.32-.04-.29-.04-.48v-.97c0-.19.01-.35.04-.48s.06-.23.12-.31.11-.14.19-.17.16-.05.25-.05.18.02.25.05.14.09.19.17.09.18.12.31.04.29.04.48v.97z" + }, + "children": [] + }] +}; +exports.ic_forward_30_outline = ic_forward_30_outline; \ No newline at end of file diff --git a/dist/md/ic_forward_30_twotone.js b/dist/md/ic_forward_30_twotone.js new file mode 100644 index 000000000..188cde716 --- /dev/null +++ b/dist/md/ic_forward_30_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_forward_30_twotone = void 0; +var ic_forward_30_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 13c0 3.31-2.69 6-6 6s-6-2.69-6-6 2.69-6 6-6v4l5-5-5-5v4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8h-2zm-7.46 2.22c-.06.05-.12.09-.2.12s-.17.04-.27.04c-.09 0-.17-.01-.25-.04s-.14-.06-.2-.11-.1-.1-.13-.17-.05-.14-.05-.22h-.85c0 .21.04.39.12.55s.19.28.33.38.29.18.46.23.35.07.53.07c.21 0 .41-.03.6-.08s.34-.14.48-.24.24-.24.32-.39.12-.33.12-.53c0-.23-.06-.44-.18-.61s-.3-.3-.54-.39c.1-.05.2-.1.28-.17s.15-.14.2-.22.1-.16.13-.25.04-.18.04-.27c0-.2-.04-.37-.11-.53s-.17-.28-.3-.38-.28-.18-.46-.23-.37-.08-.59-.08c-.19 0-.38.03-.54.08s-.32.13-.44.23-.23.22-.3.37-.11.3-.11.48h.85c0-.07.02-.14.05-.2s.07-.11.12-.15.11-.07.18-.1.14-.03.22-.03c.1 0 .18.01.25.04s.13.06.18.11.08.11.11.17.04.14.04.22c0 .18-.05.32-.16.43s-.26.16-.48.16h-.43v.66h.45c.11 0 .2.01.29.04s.16.06.22.11.11.12.14.2.05.18.05.29c0 .09-.01.17-.04.24s-.08.11-.13.17zm3.9-3.44c-.18-.07-.37-.1-.59-.1s-.41.03-.59.1-.33.18-.45.33-.23.34-.29.57-.1.5-.1.82v.74c0 .32.04.6.11.82s.17.42.3.57.28.26.46.33.37.1.59.1.41-.03.59-.1.33-.18.45-.33.22-.34.29-.57.1-.5.1-.82v-.74c0-.32-.04-.6-.11-.82s-.17-.42-.3-.57-.28-.26-.46-.33zm.01 2.57c0 .19-.01.35-.04.48s-.06.24-.11.32-.11.14-.19.17-.16.05-.25.05-.18-.02-.25-.05-.14-.09-.19-.17-.09-.19-.12-.32-.04-.29-.04-.48v-.97c0-.19.01-.35.04-.48s.06-.23.12-.31.11-.14.19-.17.16-.05.25-.05.18.02.25.05.14.09.19.17.09.18.12.31.04.29.04.48v.97z" + }, + "children": [] + }] +}; +exports.ic_forward_30_twotone = ic_forward_30_twotone; \ No newline at end of file diff --git a/dist/md/ic_forward_5.js b/dist/md/ic_forward_5.js new file mode 100644 index 000000000..578934cf4 --- /dev/null +++ b/dist/md/ic_forward_5.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_forward_5 = void 0; +var ic_forward_5 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M18,13c0,3.31-2.69,6-6,6s-6-2.69-6-6s2.69-6,6-6v4l5-5l-5-5v4c-4.42,0-8,3.58-8,8c0,4.42,3.58,8,8,8c4.42,0,8-3.58,8-8 H18z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18,13c0,3.31-2.69,6-6,6s-6-2.69-6-6s2.69-6,6-6v4l5-5l-5-5v4c-4.42,0-8,3.58-8,8c0,4.42,3.58,8,8,8c4.42,0,8-3.58,8-8 H18z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M12.03,15.38c-0.44,0-0.58-0.31-0.6-0.56h-0.84c0.03,0.85,0.79,1.25,1.44,1.25c0.93,0,1.44-0.63,1.44-1.43 c0-1.33-0.97-1.44-1.3-1.44c-0.2,0-0.43,0.05-0.64,0.16l0.11-0.92h1.7v-0.71h-2.39l-0.25,2.17l0.67,0.17 c0.13-0.13,0.28-0.23,0.57-0.23c0.4,0,0.69,0.23,0.69,0.75C12.62,14.64,12.65,15.38,12.03,15.38z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12.03,15.38c-0.44,0-0.58-0.31-0.6-0.56h-0.84c0.03,0.85,0.79,1.25,1.44,1.25c0.93,0,1.44-0.63,1.44-1.43 c0-1.33-0.97-1.44-1.3-1.44c-0.2,0-0.43,0.05-0.64,0.16l0.11-0.92h1.7v-0.71h-2.39l-0.25,2.17l0.67,0.17 c0.13-0.13,0.28-0.23,0.57-0.23c0.4,0,0.69,0.23,0.69,0.75C12.62,14.64,12.65,15.38,12.03,15.38z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_forward_5 = ic_forward_5; \ No newline at end of file diff --git a/dist/md/ic_forward_5_outline.js b/dist/md/ic_forward_5_outline.js new file mode 100644 index 000000000..d094728b2 --- /dev/null +++ b/dist/md/ic_forward_5_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_forward_5_outline = void 0; +var ic_forward_5_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17.95 13c0 3.31-2.69 6-6 6s-6-2.69-6-6 2.69-6 6-6v4l5-5-5-5v4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8h-2zm-5.52 2.15c-.05.07-.11.13-.18.17s-.17.06-.27.06c-.17 0-.31-.05-.42-.15s-.17-.24-.19-.41h-.84c.01.2.05.37.13.53s.19.28.32.39.29.19.46.24.35.08.53.08c.24 0 .46-.04.64-.12s.33-.18.45-.31.21-.28.27-.45.09-.35.09-.54c0-.22-.03-.43-.09-.6s-.14-.33-.25-.45-.25-.22-.41-.28-.34-.1-.55-.1c-.07 0-.14.01-.2.02s-.13.02-.18.04-.1.03-.15.05-.08.04-.11.05l.11-.92h1.7v-.71H10.9l-.25 2.17.67.17c.03-.03.06-.06.1-.09s.07-.05.12-.07.1-.04.15-.05.13-.02.2-.02c.12 0 .22.02.3.05s.16.09.21.15.1.14.13.24.04.19.04.31-.01.22-.03.31-.06.17-.11.24z" + }, + "children": [] + }] +}; +exports.ic_forward_5_outline = ic_forward_5_outline; \ No newline at end of file diff --git a/dist/md/ic_forward_5_twotone.js b/dist/md/ic_forward_5_twotone.js new file mode 100644 index 000000000..963dcc72a --- /dev/null +++ b/dist/md/ic_forward_5_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_forward_5_twotone = void 0; +var ic_forward_5_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17.95 13c0 3.31-2.69 6-6 6s-6-2.69-6-6 2.69-6 6-6v4l5-5-5-5v4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8h-2zm-5.52 2.15c-.05.07-.11.13-.18.17s-.17.06-.27.06c-.17 0-.31-.05-.42-.15s-.17-.24-.19-.41h-.84c.01.2.05.37.13.53s.19.28.32.39.29.19.46.24.35.08.53.08c.24 0 .46-.04.64-.12s.33-.18.45-.31.21-.28.27-.45.09-.35.09-.54c0-.22-.03-.43-.09-.6s-.14-.33-.25-.45-.25-.22-.41-.28-.34-.1-.55-.1c-.07 0-.14.01-.2.02s-.13.02-.18.04-.1.03-.15.05-.08.04-.11.05l.11-.92h1.7v-.71H10.9l-.25 2.17.67.17c.03-.03.06-.06.1-.09s.07-.05.12-.07.1-.04.15-.05.13-.02.2-.02c.12 0 .22.02.3.05s.16.09.21.15.1.14.13.24.04.19.04.31-.01.22-.03.31-.06.17-.11.24z" + }, + "children": [] + }] +}; +exports.ic_forward_5_twotone = ic_forward_5_twotone; \ No newline at end of file diff --git a/dist/md/ic_forward_outline.js b/dist/md/ic_forward_outline.js new file mode 100644 index 000000000..14e1fb293 --- /dev/null +++ b/dist/md/ic_forward_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_forward_outline = void 0; +var ic_forward_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 8.83L17.17 12 14 15.17V14H6v-4h8V8.83M12 4v4H4v8h8v4l8-8-8-8z" + }, + "children": [] + }] +}; +exports.ic_forward_outline = ic_forward_outline; \ No newline at end of file diff --git a/dist/md/ic_forward_to_inbox.js b/dist/md/ic_forward_to_inbox.js new file mode 100644 index 000000000..c78bd300f --- /dev/null +++ b/dist/md/ic_forward_to_inbox.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_forward_to_inbox = void 0; +var ic_forward_to_inbox = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h9v-2H4V8l8,5l8-5v5h2V6C22,4.9,21.1,4,20,4z M12,11L4,6h16L12,11z M19,15l4,4 l-4,4v-3h-4v-2h4V15z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h9v-2H4V8l8,5l8-5v5h2V6C22,4.9,21.1,4,20,4z M12,11L4,6h16L12,11z M19,15l4,4 l-4,4v-3h-4v-2h4V15z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_forward_to_inbox = ic_forward_to_inbox; \ No newline at end of file diff --git a/dist/md/ic_forward_to_inbox_outline.js b/dist/md/ic_forward_to_inbox_outline.js new file mode 100644 index 000000000..f8f703999 --- /dev/null +++ b/dist/md/ic_forward_to_inbox_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_forward_to_inbox_outline = void 0; +var ic_forward_to_inbox_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h9v-2H4V8l8,5l8-5v5h2V6C22,4.9,21.1,4,20,4z M12,11L4,6h16L12,11z M19,15l4,4 l-4,4v-3h-4v-2h4V15z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h9v-2H4V8l8,5l8-5v5h2V6C22,4.9,21.1,4,20,4z M12,11L4,6h16L12,11z M19,15l4,4 l-4,4v-3h-4v-2h4V15z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_forward_to_inbox_outline = ic_forward_to_inbox_outline; \ No newline at end of file diff --git a/dist/md/ic_forward_to_inbox_twotone.js b/dist/md/ic_forward_to_inbox_twotone.js new file mode 100644 index 000000000..1ae3a4018 --- /dev/null +++ b/dist/md/ic_forward_to_inbox_twotone.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_forward_to_inbox_twotone = void 0; +var ic_forward_to_inbox_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M13,18H4V8l8,5l8-5v5l-2,0C15.24,13,13,15.24,13,18L13,18z M12,11L4,6h16L12,11z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M13,18H4V8l8,5l8-5v5l-2,0C15.24,13,13,15.24,13,18L13,18z M12,11L4,6h16L12,11z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h9v-2H4V8l8,5l8-5v5h2V6C22,4.9,21.1,4,20,4z M12,11L4,6h16L12,11z M19,15l4,4 l-4,4v-3h-4v-2h4V15z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h9v-2H4V8l8,5l8-5v5h2V6C22,4.9,21.1,4,20,4z M12,11L4,6h16L12,11z M19,15l4,4 l-4,4v-3h-4v-2h4V15z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_forward_to_inbox_twotone = ic_forward_to_inbox_twotone; \ No newline at end of file diff --git a/dist/md/ic_forward_twotone.js b/dist/md/ic_forward_twotone.js new file mode 100644 index 000000000..57814ef4c --- /dev/null +++ b/dist/md/ic_forward_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_forward_twotone = void 0; +var ic_forward_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 14v1.17L17.17 12 14 8.83V10H6v4z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 12l-8-8v4H4v8h8v4l8-8zM6 14v-4h8V8.83L17.17 12 14 15.17V14H6z" + }, + "children": [] + }] +}; +exports.ic_forward_twotone = ic_forward_twotone; \ No newline at end of file diff --git a/dist/md/ic_foundation.js b/dist/md/ic_foundation.js new file mode 100644 index 000000000..fc6ccc2de --- /dev/null +++ b/dist/md/ic_foundation.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_foundation = void 0; +var ic_foundation = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19,12h3L12,3L2,12h3v3H3v2h2v3h2v-3h4v3h2v-3h4v3h2v-3h2v-2h-2V12z M7,15v-4.81l4-3.6V15H7z M13,15V6.59l4,3.6V15H13z" + }, + "children": [] + }] +}; +exports.ic_foundation = ic_foundation; \ No newline at end of file diff --git a/dist/md/ic_foundation_outline.js b/dist/md/ic_foundation_outline.js new file mode 100644 index 000000000..cfe3c6bb1 --- /dev/null +++ b/dist/md/ic_foundation_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_foundation_outline = void 0; +var ic_foundation_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19,12h3L12,3L2,12h3v3H3v2h2v3h2v-3h4v3h2v-3h4v3h2v-3h2v-2h-2V12z M7,15v-4.81l4-3.6V15H7z M13,15V6.59l4,3.6V15H13z" + }, + "children": [] + }] +}; +exports.ic_foundation_outline = ic_foundation_outline; \ No newline at end of file diff --git a/dist/md/ic_foundation_twotone.js b/dist/md/ic_foundation_twotone.js new file mode 100644 index 000000000..08886ccbf --- /dev/null +++ b/dist/md/ic_foundation_twotone.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_foundation_twotone = void 0; +var ic_foundation_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7,15v-4.81l4-3.6V15H7z M13,15V6.59l4,3.6V15H13z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19,12h3L12,3L2,12h3v3H3v2h2v3h2v-3h4v3h2v-3h4v3h2v-3h2v-2h-2V12z M7,15v-4.81l4-3.6V15H7z M13,15V6.59l4,3.6V15H13z" + }, + "children": [] + }] +}; +exports.ic_foundation_twotone = ic_foundation_twotone; \ No newline at end of file diff --git a/dist/md/ic_free_breakfast.js b/dist/md/ic_free_breakfast.js new file mode 100644 index 000000000..b86068964 --- /dev/null +++ b/dist/md/ic_free_breakfast.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_free_breakfast = void 0; +var ic_free_breakfast = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 3H4v10c0 2.21 1.79 4 4 4h6c2.21 0 4-1.79 4-4v-3h2c1.11 0 2-.9 2-2V5c0-1.11-.89-2-2-2zm0 5h-2V5h2v3zM4 19h16v2H4z" + }, + "children": [] + }] +}; +exports.ic_free_breakfast = ic_free_breakfast; \ No newline at end of file diff --git a/dist/md/ic_free_breakfast_outline.js b/dist/md/ic_free_breakfast_outline.js new file mode 100644 index 000000000..d7dec29eb --- /dev/null +++ b/dist/md/ic_free_breakfast_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_free_breakfast_outline = void 0; +var ic_free_breakfast_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 19h16v2H4zM20 3H4v10c0 2.21 1.79 4 4 4h6c2.21 0 4-1.79 4-4v-3h2c1.11 0 2-.9 2-2V5c0-1.11-.89-2-2-2zm-4 10c0 1.1-.9 2-2 2H8c-1.1 0-2-.9-2-2V5h10v8zm4-5h-2V5h2v3z" + }, + "children": [] + }] +}; +exports.ic_free_breakfast_outline = ic_free_breakfast_outline; \ No newline at end of file diff --git a/dist/md/ic_free_breakfast_twotone.js b/dist/md/ic_free_breakfast_twotone.js new file mode 100644 index 000000000..f23150ade --- /dev/null +++ b/dist/md/ic_free_breakfast_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_free_breakfast_twotone = void 0; +var ic_free_breakfast_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 13c0 1.1.9 2 2 2h6c1.1 0 2-.9 2-2V5H6v8z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 19h16v2H4zM20 3H4v10c0 2.21 1.79 4 4 4h6c2.21 0 4-1.79 4-4v-3h2c1.11 0 2-.9 2-2V5c0-1.11-.89-2-2-2zm-4 10c0 1.1-.9 2-2 2H8c-1.1 0-2-.9-2-2V5h10v8zm4-5h-2V5h2v3z" + }, + "children": [] + }] +}; +exports.ic_free_breakfast_twotone = ic_free_breakfast_twotone; \ No newline at end of file diff --git a/dist/md/ic_fullscreen.js b/dist/md/ic_fullscreen.js new file mode 100644 index 000000000..04c93c460 --- /dev/null +++ b/dist/md/ic_fullscreen.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_fullscreen = void 0; +var ic_fullscreen = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 14H5v5h5v-2H7v-3zm-2-4h2V7h3V5H5v5zm12 7h-3v2h5v-5h-2v3zM14 5v2h3v3h2V5h-5z" + }, + "children": [] + }] +}; +exports.ic_fullscreen = ic_fullscreen; \ No newline at end of file diff --git a/dist/md/ic_fullscreen_exit.js b/dist/md/ic_fullscreen_exit.js new file mode 100644 index 000000000..8d92a1760 --- /dev/null +++ b/dist/md/ic_fullscreen_exit.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_fullscreen_exit = void 0; +var ic_fullscreen_exit = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 16h3v3h2v-5H5v2zm3-8H5v2h5V5H8v3zm6 11h2v-3h3v-2h-5v5zm2-11V5h-2v5h5V8h-3z" + }, + "children": [] + }] +}; +exports.ic_fullscreen_exit = ic_fullscreen_exit; \ No newline at end of file diff --git a/dist/md/ic_fullscreen_exit_outline.js b/dist/md/ic_fullscreen_exit_outline.js new file mode 100644 index 000000000..d085fafb8 --- /dev/null +++ b/dist/md/ic_fullscreen_exit_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_fullscreen_exit_outline = void 0; +var ic_fullscreen_exit_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 16h3v3h2v-5H5v2zm3-8H5v2h5V5H8v3zm6 11h2v-3h3v-2h-5v5zm2-11V5h-2v5h5V8h-3z" + }, + "children": [] + }] +}; +exports.ic_fullscreen_exit_outline = ic_fullscreen_exit_outline; \ No newline at end of file diff --git a/dist/md/ic_fullscreen_exit_twotone.js b/dist/md/ic_fullscreen_exit_twotone.js new file mode 100644 index 000000000..07dde293d --- /dev/null +++ b/dist/md/ic_fullscreen_exit_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_fullscreen_exit_twotone = void 0; +var ic_fullscreen_exit_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 16h3v3h2v-5H5v2zm3-8H5v2h5V5H8v3zm6 11h2v-3h3v-2h-5v5zm2-11V5h-2v5h5V8h-3z" + }, + "children": [] + }] +}; +exports.ic_fullscreen_exit_twotone = ic_fullscreen_exit_twotone; \ No newline at end of file diff --git a/dist/md/ic_fullscreen_outline.js b/dist/md/ic_fullscreen_outline.js new file mode 100644 index 000000000..5609c9c3c --- /dev/null +++ b/dist/md/ic_fullscreen_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_fullscreen_outline = void 0; +var ic_fullscreen_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 14H5v5h5v-2H7v-3zm-2-4h2V7h3V5H5v5zm12 7h-3v2h5v-5h-2v3zM14 5v2h3v3h2V5h-5z" + }, + "children": [] + }] +}; +exports.ic_fullscreen_outline = ic_fullscreen_outline; \ No newline at end of file diff --git a/dist/md/ic_fullscreen_twotone.js b/dist/md/ic_fullscreen_twotone.js new file mode 100644 index 000000000..07fa50826 --- /dev/null +++ b/dist/md/ic_fullscreen_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_fullscreen_twotone = void 0; +var ic_fullscreen_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 14H5v5h5v-2H7v-3zm-2-4h2V7h3V5H5v5zm12 7h-3v2h5v-5h-2v3zM14 5v2h3v3h2V5h-5z" + }, + "children": [] + }] +}; +exports.ic_fullscreen_twotone = ic_fullscreen_twotone; \ No newline at end of file diff --git a/dist/md/ic_functions.js b/dist/md/ic_functions.js new file mode 100644 index 000000000..a892f68dd --- /dev/null +++ b/dist/md/ic_functions.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_functions = void 0; +var ic_functions = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 4H6v2l6.5 6L6 18v2h12v-3h-7l5-5-5-5h7z" + }, + "children": [] + }] +}; +exports.ic_functions = ic_functions; \ No newline at end of file diff --git a/dist/md/ic_functions_outline.js b/dist/md/ic_functions_outline.js new file mode 100644 index 000000000..6c7c7d29d --- /dev/null +++ b/dist/md/ic_functions_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_functions_outline = void 0; +var ic_functions_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 4H6v2l6.5 6L6 18v2h12v-3h-7l5-5-5-5h7V4z" + }, + "children": [] + }] +}; +exports.ic_functions_outline = ic_functions_outline; \ No newline at end of file diff --git a/dist/md/ic_functions_twotone.js b/dist/md/ic_functions_twotone.js new file mode 100644 index 000000000..bb395e0b6 --- /dev/null +++ b/dist/md/ic_functions_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_functions_twotone = void 0; +var ic_functions_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 17h-7l5-5-5-5h7V4H6v2l6.5 6L6 18v2h12z" + }, + "children": [] + }] +}; +exports.ic_functions_twotone = ic_functions_twotone; \ No newline at end of file diff --git a/dist/md/ic_g_translate.js b/dist/md/ic_g_translate.js new file mode 100644 index 000000000..1e1407499 --- /dev/null +++ b/dist/md/ic_g_translate.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_g_translate = void 0; +var ic_g_translate = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M21 4H11l-1-3H3c-1.1 0-2 .9-2 2v15c0 1.1.9 2 2 2h8l1 3h9c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM7 16c-2.76 0-5-2.24-5-5s2.24-5 5-5c1.35 0 2.48.5 3.35 1.3L9.03 8.57c-.38-.36-1.04-.78-2.03-.78-1.74 0-3.15 1.44-3.15 3.21S5.26 14.21 7 14.21c2.01 0 2.84-1.44 2.92-2.41H7v-1.71h4.68c.07.31.12.61.12 1.02C11.8 13.97 9.89 16 7 16zm6.17-5.42h3.7c-.43 1.25-1.11 2.43-2.05 3.47-.31-.35-.6-.72-.86-1.1l-.79-2.37zm8.33 9.92c0 .55-.45 1-1 1H14l2-2.5-1.04-3.1 3.1 3.1.92-.92-3.3-3.25.02-.02c1.13-1.25 1.93-2.69 2.4-4.22H20v-1.3h-4.53V8h-1.29v1.29h-1.44L11.46 5.5h9.04c.55 0 1 .45 1 1v14z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M0 0h24v24H0zm0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }] +}; +exports.ic_g_translate = ic_g_translate; \ No newline at end of file diff --git a/dist/md/ic_g_translate_outline.js b/dist/md/ic_g_translate_outline.js new file mode 100644 index 000000000..fb4883639 --- /dev/null +++ b/dist/md/ic_g_translate_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_g_translate_outline = void 0; +var ic_g_translate_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 5h-9.12L10 2H4c-1.1 0-2 .9-2 2v13c0 1.1.9 2 2 2h7l1 3h8c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zM7.17 14.59c-2.25 0-4.09-1.83-4.09-4.09s1.83-4.09 4.09-4.09c1.04 0 1.99.37 2.74 1.07l.07.06-1.23 1.18-.06-.05c-.29-.27-.78-.59-1.52-.59-1.31 0-2.38 1.09-2.38 2.42s1.07 2.42 2.38 2.42c1.37 0 1.96-.87 2.12-1.46H7.08V9.91h3.95l.01.07c.04.21.05.4.05.61 0 2.35-1.61 4-3.92 4zm6.03-1.71c.33.6.74 1.18 1.19 1.7l-.54.53-.65-2.23zm.77-.76h-.99l-.31-1.04h3.99s-.34 1.31-1.56 2.74c-.52-.62-.89-1.23-1.13-1.7zM21 20c0 .55-.45 1-1 1h-7l2-2-.81-2.77.92-.92L17.79 18l.73-.73-2.71-2.68c.9-1.03 1.6-2.25 1.92-3.51H19v-1.04h-3.64V9h-1.04v1.04h-1.96L11.18 6H20c.55 0 1 .45 1 1v13z" + }, + "children": [] + }] +}; +exports.ic_g_translate_outline = ic_g_translate_outline; \ No newline at end of file diff --git a/dist/md/ic_g_translate_twotone.js b/dist/md/ic_g_translate_twotone.js new file mode 100644 index 000000000..9fdbc5787 --- /dev/null +++ b/dist/md/ic_g_translate_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_g_translate_twotone = void 0; +var ic_g_translate_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 5h-9.12L10 2H4c-1.1 0-2 .9-2 2v13c0 1.1.9 2 2 2h7l1 3h8c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zM7.17 14.59c-2.25 0-4.09-1.83-4.09-4.09s1.83-4.09 4.09-4.09c1.04 0 1.99.37 2.74 1.07l.07.06-1.23 1.18-.06-.05c-.29-.27-.78-.59-1.52-.59-1.31 0-2.38 1.09-2.38 2.42 0 1.33 1.07 2.42 2.38 2.42 1.37 0 1.96-.87 2.12-1.46H7.08V9.91h3.95l.01.07c.04.21.05.4.05.61 0 2.35-1.61 4-3.92 4zm5.5-3.51h3.99s-.34 1.31-1.56 2.74c-.52-.62-.89-1.23-1.13-1.7h-.99l-.31-1.04zm1.72 3.5l-.54.53-.65-2.23c.33.6.74 1.18 1.19 1.7zM21 20c0 .55-.45 1-1 1h-7l2-2-.81-2.77.92-.92L17.79 18l.73-.73-2.71-2.68c.9-1.03 1.6-2.25 1.92-3.51H19v-1.04h-3.64V9h-1.04v1.04h-1.96L11.18 6H20c.55 0 1 .45 1 1v13z" + }, + "children": [] + }] +}; +exports.ic_g_translate_twotone = ic_g_translate_twotone; \ No newline at end of file diff --git a/dist/md/ic_gamepad.js b/dist/md/ic_gamepad.js new file mode 100644 index 000000000..db169cf4e --- /dev/null +++ b/dist/md/ic_gamepad.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_gamepad = void 0; +var ic_gamepad = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 7.5V2H9v5.5l3 3 3-3zM7.5 9H2v6h5.5l3-3-3-3zM9 16.5V22h6v-5.5l-3-3-3 3zM16.5 9l-3 3 3 3H22V9h-5.5z" + }, + "children": [] + }] +}; +exports.ic_gamepad = ic_gamepad; \ No newline at end of file diff --git a/dist/md/ic_gamepad_outline.js b/dist/md/ic_gamepad_outline.js new file mode 100644 index 000000000..a63fee710 --- /dev/null +++ b/dist/md/ic_gamepad_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_gamepad_outline = void 0; +var ic_gamepad_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 4v2.67l-1 1-1-1V4h2m7 7v2h-2.67l-1-1 1-1H20M6.67 11l1 1-1 1H4v-2h2.67M12 16.33l1 1V20h-2v-2.67l1-1M15 2H9v5.5l3 3 3-3V2zm7 7h-5.5l-3 3 3 3H22V9zM7.5 9H2v6h5.5l3-3-3-3zm4.5 4.5l-3 3V22h6v-5.5l-3-3z" + }, + "children": [] + }] +}; +exports.ic_gamepad_outline = ic_gamepad_outline; \ No newline at end of file diff --git a/dist/md/ic_gamepad_twotone.js b/dist/md/ic_gamepad_twotone.js new file mode 100644 index 000000000..dc399bcc7 --- /dev/null +++ b/dist/md/ic_gamepad_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_gamepad_twotone = void 0; +var ic_gamepad_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6.67 11H4v2h2.67l1-1zM13 6.67V4h-2v2.67l1 1zm-2 10.66V20h2v-2.67l-1-1zM16.33 12l1 1H20v-2h-2.67z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 16.5V22h6v-5.5l-3-3-3 3zm4 3.5h-2v-2.67l1-1 1 1V20zm2-12.5V2H9v5.5l3 3 3-3zM11 4h2v2.67l-1 1-1-1V4zM7.5 9H2v6h5.5l3-3-3-3zm-.83 4H4v-2h2.67l1 1-1 1zm9.83-4l-3 3 3 3H22V9h-5.5zm3.5 4h-2.67l-1-1 1-1H20v2z" + }, + "children": [] + }] +}; +exports.ic_gamepad_twotone = ic_gamepad_twotone; \ No newline at end of file diff --git a/dist/md/ic_games.js b/dist/md/ic_games.js new file mode 100644 index 000000000..16b9d6730 --- /dev/null +++ b/dist/md/ic_games.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_games = void 0; +var ic_games = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 7.5V2H9v5.5l3 3 3-3zM7.5 9H2v6h5.5l3-3-3-3zM9 16.5V22h6v-5.5l-3-3-3 3zM16.5 9l-3 3 3 3H22V9h-5.5z" + }, + "children": [] + }] +}; +exports.ic_games = ic_games; \ No newline at end of file diff --git a/dist/md/ic_games_outline.js b/dist/md/ic_games_outline.js new file mode 100644 index 000000000..521e1aff4 --- /dev/null +++ b/dist/md/ic_games_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_games_outline = void 0; +var ic_games_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 4v2.67l-1 1-1-1V4h2m7 7v2h-2.67l-1-1 1-1H20M6.67 11l1 1-1 1H4v-2h2.67M12 16.33l1 1V20h-2v-2.67l1-1M15 2H9v5.5l3 3 3-3V2zm7 7h-5.5l-3 3 3 3H22V9zM7.5 9H2v6h5.5l3-3-3-3zm4.5 4.5l-3 3V22h6v-5.5l-3-3z" + }, + "children": [] + }] +}; +exports.ic_games_outline = ic_games_outline; \ No newline at end of file diff --git a/dist/md/ic_games_twotone.js b/dist/md/ic_games_twotone.js new file mode 100644 index 000000000..f8384c0f0 --- /dev/null +++ b/dist/md/ic_games_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_games_twotone = void 0; +var ic_games_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 17.33V20h2v-2.67l-1-1zm2-10.66V4h-2v2.67l1 1zM16.33 12l1 1H20v-2h-2.67zM4 11v2h2.67l1-1-1-1z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M2 9v6h5.5l3-3-3-3H2zm4.67 4H4v-2h2.67l1 1-1 1zM22 9h-5.5l-3 3 3 3H22V9zm-2 4h-2.67l-1-1 1-1H20v2zm-5 3.5l-3-3-3 3V22h6v-5.5zM13 20h-2v-2.67l1-1 1 1V20zM9 7.5l3 3 3-3V2H9v5.5zM11 4h2v2.67l-1 1-1-1V4z" + }, + "children": [] + }] +}; +exports.ic_games_twotone = ic_games_twotone; \ No newline at end of file diff --git a/dist/md/ic_gavel.js b/dist/md/ic_gavel.js new file mode 100644 index 000000000..856e5931a --- /dev/null +++ b/dist/md/ic_gavel.js @@ -0,0 +1,123 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_gavel = void 0; +var ic_gavel = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "height": "20", + "transform": "matrix(0.7075 -0.7067 0.7067 0.7075 -5.6854 13.7194)", + "width": "4", + "x": "11.73", + "y": "3.73" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "20", + "transform": "matrix(0.7075 -0.7067 0.7067 0.7075 -5.6854 13.7194)", + "width": "4", + "x": "11.73", + "y": "3.73" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "8", + "transform": "matrix(0.707 -0.7072 0.7072 0.707 0.3157 11.246)", + "width": "4", + "x": "11.73", + "y": "1.24" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "8", + "transform": "matrix(0.707 -0.7072 0.7072 0.707 0.3157 11.246)", + "width": "4", + "x": "11.73", + "y": "1.24" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "8", + "transform": "matrix(0.7071 -0.7071 0.7071 0.7071 -8.1722 7.7256)", + "width": "4", + "x": "3.24", + "y": "9.73" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "8", + "transform": "matrix(0.7071 -0.7071 0.7071 0.7071 -8.1722 7.7256)", + "width": "4", + "x": "3.24", + "y": "9.73" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "12", + "x": "1", + "y": "21" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "12", + "x": "1", + "y": "21" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_gavel = ic_gavel; \ No newline at end of file diff --git a/dist/md/ic_gavel_outline.js b/dist/md/ic_gavel_outline.js new file mode 100644 index 000000000..d0d17175c --- /dev/null +++ b/dist/md/ic_gavel_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_gavel_outline = void 0; +var ic_gavel_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M1 21h12v2H1v-2zM5.24 8.07l2.83-2.83 14.14 14.14-2.83 2.83L5.24 8.07zM12.32 1l5.66 5.66-2.83 2.83-5.66-5.66L12.32 1zM3.83 9.48l5.66 5.66-2.83 2.83L1 12.31l2.83-2.83z" + }, + "children": [] + }] +}; +exports.ic_gavel_outline = ic_gavel_outline; \ No newline at end of file diff --git a/dist/md/ic_gavel_twotone.js b/dist/md/ic_gavel_twotone.js new file mode 100644 index 000000000..75a9bdd52 --- /dev/null +++ b/dist/md/ic_gavel_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_gavel_twotone = void 0; +var ic_gavel_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M1 21h12v2H1v-2zM5.24 8.07l2.83-2.83 14.14 14.14-2.83 2.83L5.24 8.07zM12.32 1l5.66 5.66-2.83 2.83-5.66-5.66L12.32 1zM3.83 9.48l5.66 5.66-2.83 2.83L1 12.31l2.83-2.83z" + }, + "children": [] + }] +}; +exports.ic_gavel_twotone = ic_gavel_twotone; \ No newline at end of file diff --git a/dist/md/ic_gesture.js b/dist/md/ic_gesture.js new file mode 100644 index 000000000..b09a0af82 --- /dev/null +++ b/dist/md/ic_gesture.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_gesture = void 0; +var ic_gesture = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4.59 6.89c.7-.71 1.4-1.35 1.71-1.22.5.2 0 1.03-.3 1.52-.25.42-2.86 3.89-2.86 6.31 0 1.28.48 2.34 1.34 2.98.75.56 1.74.73 2.64.46 1.07-.31 1.95-1.4 3.06-2.77 1.21-1.49 2.83-3.44 4.08-3.44 1.63 0 1.65 1.01 1.76 1.79-3.78.64-5.38 3.67-5.38 5.37 0 1.7 1.44 3.09 3.21 3.09 1.63 0 4.29-1.33 4.69-6.1H21v-2.5h-2.47c-.15-1.65-1.09-4.2-4.03-4.2-2.25 0-4.18 1.91-4.94 2.84-.58.73-2.06 2.48-2.29 2.72-.25.3-.68.84-1.11.84-.45 0-.72-.83-.36-1.92.35-1.09 1.4-2.86 1.85-3.52.78-1.14 1.3-1.92 1.3-3.28C8.95 3.69 7.31 3 6.44 3 5.12 3 3.97 4 3.72 4.25c-.36.36-.66.66-.88.93l1.75 1.71zm9.29 11.66c-.31 0-.74-.26-.74-.72 0-.6.73-2.2 2.87-2.76-.3 2.69-1.43 3.48-2.13 3.48z" + }, + "children": [] + }] +}; +exports.ic_gesture = ic_gesture; \ No newline at end of file diff --git a/dist/md/ic_gesture_outline.js b/dist/md/ic_gesture_outline.js new file mode 100644 index 000000000..1589dd0a8 --- /dev/null +++ b/dist/md/ic_gesture_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_gesture_outline = void 0; +var ic_gesture_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4.59 6.89c.7-.71 1.4-1.35 1.71-1.22.5.2 0 1.03-.3 1.52-.25.42-2.86 3.89-2.86 6.31 0 1.28.48 2.34 1.34 2.98.75.56 1.74.73 2.64.46 1.07-.31 1.95-1.4 3.06-2.77 1.21-1.49 2.83-3.44 4.08-3.44 1.63 0 1.65 1.01 1.76 1.79-3.78.64-5.38 3.67-5.38 5.37 0 1.7 1.44 3.09 3.21 3.09 1.63 0 4.29-1.33 4.69-6.1H21v-2.5h-2.47c-.15-1.65-1.09-4.2-4.03-4.2-2.25 0-4.18 1.91-4.94 2.84-.58.73-2.06 2.48-2.29 2.72-.25.3-.68.84-1.11.84-.45 0-.72-.83-.36-1.92.35-1.09 1.4-2.86 1.85-3.52.78-1.14 1.3-1.92 1.3-3.28C8.95 3.69 7.31 3 6.44 3 5.12 3 3.97 4 3.72 4.25c-.36.36-.66.66-.88.93l1.75 1.71zm9.29 11.66c-.31 0-.74-.26-.74-.72 0-.6.73-2.2 2.87-2.76-.3 2.69-1.43 3.48-2.13 3.48z" + }, + "children": [] + }] +}; +exports.ic_gesture_outline = ic_gesture_outline; \ No newline at end of file diff --git a/dist/md/ic_gesture_twotone.js b/dist/md/ic_gesture_twotone.js new file mode 100644 index 000000000..0b5633b91 --- /dev/null +++ b/dist/md/ic_gesture_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_gesture_twotone = void 0; +var ic_gesture_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4.59 6.89c.7-.71 1.4-1.35 1.71-1.22.5.2 0 1.03-.3 1.52-.25.42-2.86 3.89-2.86 6.31 0 1.28.48 2.34 1.34 2.98.75.56 1.74.73 2.64.46 1.07-.31 1.95-1.4 3.06-2.77 1.21-1.49 2.83-3.44 4.08-3.44 1.63 0 1.65 1.01 1.76 1.79-3.78.64-5.38 3.67-5.38 5.37 0 1.7 1.44 3.09 3.21 3.09 1.63 0 4.29-1.33 4.69-6.1H21v-2.5h-2.47c-.15-1.65-1.09-4.2-4.03-4.2-2.25 0-4.18 1.91-4.94 2.84-.58.73-2.06 2.48-2.29 2.72-.25.3-.68.84-1.11.84-.45 0-.72-.83-.36-1.92.35-1.09 1.4-2.86 1.85-3.52.78-1.14 1.3-1.92 1.3-3.28C8.95 3.69 7.31 3 6.44 3 5.12 3 3.97 4 3.72 4.25c-.36.36-.66.66-.88.93l1.75 1.71zm9.29 11.66c-.31 0-.74-.26-.74-.72 0-.6.73-2.2 2.87-2.76-.3 2.69-1.43 3.48-2.13 3.48z" + }, + "children": [] + }] +}; +exports.ic_gesture_twotone = ic_gesture_twotone; \ No newline at end of file diff --git a/dist/md/ic_get_app.js b/dist/md/ic_get_app.js new file mode 100644 index 000000000..acb751cf6 --- /dev/null +++ b/dist/md/ic_get_app.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_get_app = void 0; +var ic_get_app = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 9h-4V3H9v6H5l7 7 7-7zM5 18v2h14v-2H5z" + }, + "children": [] + }] +}; +exports.ic_get_app = ic_get_app; \ No newline at end of file diff --git a/dist/md/ic_get_app_outline.js b/dist/md/ic_get_app_outline.js new file mode 100644 index 000000000..62fbb38a2 --- /dev/null +++ b/dist/md/ic_get_app_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_get_app_outline = void 0; +var ic_get_app_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 5v6h1.17L12 13.17 9.83 11H11V5h2m2-2H9v6H5l7 7 7-7h-4V3zm4 15H5v2h14v-2z" + }, + "children": [] + }] +}; +exports.ic_get_app_outline = ic_get_app_outline; \ No newline at end of file diff --git a/dist/md/ic_get_app_twotone.js b/dist/md/ic_get_app_twotone.js new file mode 100644 index 000000000..4a88050df --- /dev/null +++ b/dist/md/ic_get_app_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_get_app_twotone = void 0; +var ic_get_app_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14.17 11H13V5h-2v6H9.83L12 13.17z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 9h-4V3H9v6H5l7 7 7-7zm-8 2V5h2v6h1.17L12 13.17 9.83 11H11zm-6 7h14v2H5z" + }, + "children": [] + }] +}; +exports.ic_get_app_twotone = ic_get_app_twotone; \ No newline at end of file diff --git a/dist/md/ic_gif.js b/dist/md/ic_gif.js new file mode 100644 index 000000000..3bc17732f --- /dev/null +++ b/dist/md/ic_gif.js @@ -0,0 +1,87 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_gif = void 0; +var ic_gif = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "height": "6", + "width": "1.5", + "x": "11.5", + "y": "9" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "6", + "width": "1.5", + "x": "11.5", + "y": "9" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M9,9H6c-0.6,0-1,0.5-1,1v4c0,0.5,0.4,1,1,1h3c0.6,0,1-0.5,1-1v-2H8.5v1.5h-2v-3H10V10C10,9.5,9.6,9,9,9z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M9,9H6c-0.6,0-1,0.5-1,1v4c0,0.5,0.4,1,1,1h3c0.6,0,1-0.5,1-1v-2H8.5v1.5h-2v-3H10V10C10,9.5,9.6,9,9,9z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "19,10.5 19,9 14.5,9 14.5,15 16,15 16,13 18,13 18,11.5 16,11.5 16,10.5" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "19,10.5 19,9 14.5,9 14.5,15 16,15 16,13 18,13 18,11.5 16,11.5 16,10.5" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_gif = ic_gif; \ No newline at end of file diff --git a/dist/md/ic_gif_outline.js b/dist/md/ic_gif_outline.js new file mode 100644 index 000000000..551dcaadb --- /dev/null +++ b/dist/md/ic_gif_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_gif_outline = void 0; +var ic_gif_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.5 9H13v6h-1.5V9zM9 9H6c-.6 0-1 .5-1 1v4c0 .5.4 1 1 1h3c.6 0 1-.5 1-1v-2H8.5v1.5h-2v-3H10V10c0-.5-.4-1-1-1zm10 1.5V9h-4.5v6H16v-2h2v-1.5h-2v-1h3z" + }, + "children": [] + }] +}; +exports.ic_gif_outline = ic_gif_outline; \ No newline at end of file diff --git a/dist/md/ic_gif_twotone.js b/dist/md/ic_gif_twotone.js new file mode 100644 index 000000000..08efcc08b --- /dev/null +++ b/dist/md/ic_gif_twotone.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_gif_twotone = void 0; +var ic_gif_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.5 9H13v6h-1.5V9zM9 9H6c-.6 0-1 .5-1 1v4c0 .5.4 1 1 1h3c.6 0 1-.5 1-1v-2H8.5v1.5h-2v-3H10V10c0-.5-.4-1-1-1zm10 1.5V9h-4.5v6H16v-2h2v-1.5h-2v-1h3z", + "opacity": ".87" + }, + "children": [] + }] +}; +exports.ic_gif_twotone = ic_gif_twotone; \ No newline at end of file diff --git a/dist/md/ic_golf_course.js b/dist/md/ic_golf_course.js new file mode 100644 index 000000000..b14a4657a --- /dev/null +++ b/dist/md/ic_golf_course.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_golf_course = void 0; +var ic_golf_course = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "19.5", + "cy": "19.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 5.92L9 2v18H7v-1.73c-1.79.35-3 .99-3 1.73 0 1.1 2.69 2 6 2s6-.9 6-2c0-.99-2.16-1.81-5-1.97V8.98l6-3.06z" + }, + "children": [] + }] +}; +exports.ic_golf_course = ic_golf_course; \ No newline at end of file diff --git a/dist/md/ic_golf_course_outline.js b/dist/md/ic_golf_course_outline.js new file mode 100644 index 000000000..581a28ffc --- /dev/null +++ b/dist/md/ic_golf_course_outline.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_golf_course_outline = void 0; +var ic_golf_course_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "19.5", + "cy": "19.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 5.92L9 2v18H7v-1.73c-1.79.35-3 .99-3 1.73 0 1.1 2.69 2 6 2s6-.9 6-2c0-.99-2.16-1.81-5-1.97V8.98l6-3.06z" + }, + "children": [] + }] +}; +exports.ic_golf_course_outline = ic_golf_course_outline; \ No newline at end of file diff --git a/dist/md/ic_golf_course_twotone.js b/dist/md/ic_golf_course_twotone.js new file mode 100644 index 000000000..044db083a --- /dev/null +++ b/dist/md/ic_golf_course_twotone.js @@ -0,0 +1,48 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_golf_course_twotone = void 0; +var ic_golf_course_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "19.5", + "cy": "19.5", + "opacity": ".3", + "r": "1.5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 5.92L9 2v18H7v-1.73c-1.79.35-3 .99-3 1.73 0 1.1 2.69 2 6 2s6-.9 6-2c0-.99-2.16-1.81-5-1.97V8.98l6-3.06z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "19.5", + "cy": "19.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 5.92L9 2v18H7v-1.73c-1.79.35-3 .99-3 1.73 0 1.1 2.69 2 6 2s6-.9 6-2c0-.99-2.16-1.81-5-1.97V8.98l6-3.06z" + }, + "children": [] + }] +}; +exports.ic_golf_course_twotone = ic_golf_course_twotone; \ No newline at end of file diff --git a/dist/md/ic_gps_fixed.js b/dist/md/ic_gps_fixed.js new file mode 100644 index 000000000..dc4ea63f0 --- /dev/null +++ b/dist/md/ic_gps_fixed.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_gps_fixed = void 0; +var ic_gps_fixed = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm8.94 3c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" + }, + "children": [] + }] +}; +exports.ic_gps_fixed = ic_gps_fixed; \ No newline at end of file diff --git a/dist/md/ic_gps_fixed_outline.js b/dist/md/ic_gps_fixed_outline.js new file mode 100644 index 000000000..60a930c96 --- /dev/null +++ b/dist/md/ic_gps_fixed_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_gps_fixed_outline = void 0; +var ic_gps_fixed_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm8.94 3c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" + }, + "children": [] + }] +}; +exports.ic_gps_fixed_outline = ic_gps_fixed_outline; \ No newline at end of file diff --git a/dist/md/ic_gps_fixed_twotone.js b/dist/md/ic_gps_fixed_twotone.js new file mode 100644 index 000000000..ecf3024f2 --- /dev/null +++ b/dist/md/ic_gps_fixed_twotone.js @@ -0,0 +1,33 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_gps_fixed_twotone = void 0; +var ic_gps_fixed_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "opacity": ".3", + "r": "2" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm8.94-3c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" + }, + "children": [] + }] +}; +exports.ic_gps_fixed_twotone = ic_gps_fixed_twotone; \ No newline at end of file diff --git a/dist/md/ic_gps_not_fixed.js b/dist/md/ic_gps_not_fixed.js new file mode 100644 index 000000000..c54d1b1bb --- /dev/null +++ b/dist/md/ic_gps_not_fixed.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_gps_not_fixed = void 0; +var ic_gps_not_fixed = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" + }, + "children": [] + }] +}; +exports.ic_gps_not_fixed = ic_gps_not_fixed; \ No newline at end of file diff --git a/dist/md/ic_gps_not_fixed_outline.js b/dist/md/ic_gps_not_fixed_outline.js new file mode 100644 index 000000000..51fd6c591 --- /dev/null +++ b/dist/md/ic_gps_not_fixed_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_gps_not_fixed_outline = void 0; +var ic_gps_not_fixed_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" + }, + "children": [] + }] +}; +exports.ic_gps_not_fixed_outline = ic_gps_not_fixed_outline; \ No newline at end of file diff --git a/dist/md/ic_gps_not_fixed_twotone.js b/dist/md/ic_gps_not_fixed_twotone.js new file mode 100644 index 000000000..21325ffc0 --- /dev/null +++ b/dist/md/ic_gps_not_fixed_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_gps_not_fixed_twotone = void 0; +var ic_gps_not_fixed_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" + }, + "children": [] + }] +}; +exports.ic_gps_not_fixed_twotone = ic_gps_not_fixed_twotone; \ No newline at end of file diff --git a/dist/md/ic_gps_off.js b/dist/md/ic_gps_off.js new file mode 100644 index 000000000..e94c30c2f --- /dev/null +++ b/dist/md/ic_gps_off.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_gps_off = void 0; +var ic_gps_off = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06c-1.13.12-2.19.46-3.16.97l1.5 1.5C10.16 5.19 11.06 5 12 5c3.87 0 7 3.13 7 7 0 .94-.19 1.84-.52 2.65l1.5 1.5c.5-.96.84-2.02.97-3.15H23v-2h-2.06zM3 4.27l2.04 2.04C3.97 7.62 3.25 9.23 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c1.77-.2 3.38-.91 4.69-1.98L19.73 21 21 19.73 4.27 3 3 4.27zm13.27 13.27C15.09 18.45 13.61 19 12 19c-3.87 0-7-3.13-7-7 0-1.61.55-3.09 1.46-4.27l9.81 9.81z" + }, + "children": [] + }] +}; +exports.ic_gps_off = ic_gps_off; \ No newline at end of file diff --git a/dist/md/ic_gps_off_outline.js b/dist/md/ic_gps_off_outline.js new file mode 100644 index 000000000..7bbabaeb0 --- /dev/null +++ b/dist/md/ic_gps_off_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_gps_off_outline = void 0; +var ic_gps_off_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06c-.98.11-1.91.38-2.77.78l1.53 1.53C10.46 5.13 11.22 5 12 5c3.87 0 7 3.13 7 7 0 .79-.13 1.54-.37 2.24l1.53 1.53c.4-.86.67-1.79.78-2.77H23v-2h-2.06zM3 4.27l2.04 2.04C3.97 7.62 3.26 9.23 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c1.77-.2 3.38-.91 4.69-1.98L19.73 21l1.41-1.41L4.41 2.86 3 4.27zm13.27 13.27C15.09 18.45 13.61 19 12 19c-3.87 0-7-3.13-7-7 0-1.61.55-3.09 1.46-4.27l9.81 9.81z" + }, + "children": [] + }] +}; +exports.ic_gps_off_outline = ic_gps_off_outline; \ No newline at end of file diff --git a/dist/md/ic_gps_off_twotone.js b/dist/md/ic_gps_off_twotone.js new file mode 100644 index 000000000..5eca724b5 --- /dev/null +++ b/dist/md/ic_gps_off_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_gps_off_twotone = void 0; +var ic_gps_off_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06c-.98.11-1.91.38-2.77.78l1.53 1.53C10.46 5.13 11.22 5 12 5c3.87 0 7 3.13 7 7 0 .79-.13 1.54-.37 2.24l1.53 1.53c.4-.86.67-1.79.78-2.77H23v-2h-2.06zM3 4.27l2.04 2.04C3.97 7.62 3.26 9.23 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c1.77-.2 3.38-.91 4.69-1.98L19.73 21l1.41-1.41L4.41 2.86 3 4.27zm13.27 13.27C15.09 18.45 13.61 19 12 19c-3.87 0-7-3.13-7-7 0-1.61.55-3.09 1.46-4.27l9.81 9.81z" + }, + "children": [] + }] +}; +exports.ic_gps_off_twotone = ic_gps_off_twotone; \ No newline at end of file diff --git a/dist/md/ic_grade.js b/dist/md/ic_grade.js new file mode 100644 index 000000000..523ab9dab --- /dev/null +++ b/dist/md/ic_grade.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_grade = void 0; +var ic_grade = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z" + }, + "children": [] + }] +}; +exports.ic_grade = ic_grade; \ No newline at end of file diff --git a/dist/md/ic_grade_outline.js b/dist/md/ic_grade_outline.js new file mode 100644 index 000000000..dd2b5e311 --- /dev/null +++ b/dist/md/ic_grade_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_grade_outline = void 0; +var ic_grade_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 7.13l.97 2.29.47 1.11 1.2.1 2.47.21-1.88 1.63-.91.79.27 1.18.56 2.41-2.12-1.28-1.03-.64-1.03.62-2.12 1.28.56-2.41.27-1.18-.91-.79-1.88-1.63 2.47-.21 1.2-.1.47-1.11.97-2.27M12 2L9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2z" + }, + "children": [] + }] +}; +exports.ic_grade_outline = ic_grade_outline; \ No newline at end of file diff --git a/dist/md/ic_grade_twotone.js b/dist/md/ic_grade_twotone.js new file mode 100644 index 000000000..fb4df3c7b --- /dev/null +++ b/dist/md/ic_grade_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_grade_twotone = void 0; +var ic_grade_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17.11 10.83l-2.47-.21-1.2-.1-.47-1.11L12 7.13l-.97 2.28-.47 1.11-1.2.1-2.47.21 1.88 1.63.91.79-.27 1.17-.57 2.42 2.13-1.28 1.03-.63 1.03.63 2.13 1.28-.57-2.42-.27-1.17.91-.79z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.64-7.03L22 9.24zm-7.41 5.18l.56 2.41-2.12-1.28-1.03-.62-1.03.62-2.12 1.28.56-2.41.27-1.18-.91-.79-1.88-1.63 2.47-.21 1.2-.1.47-1.11.97-2.27.97 2.29.47 1.11 1.2.1 2.47.21-1.88 1.63-.91.79.27 1.16z" + }, + "children": [] + }] +}; +exports.ic_grade_twotone = ic_grade_twotone; \ No newline at end of file diff --git a/dist/md/ic_gradient.js b/dist/md/ic_gradient.js new file mode 100644 index 000000000..3f7c26047 --- /dev/null +++ b/dist/md/ic_gradient.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_gradient = void 0; +var ic_gradient = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 9h2v2h-2zm-2 2h2v2H9zm4 0h2v2h-2zm2-2h2v2h-2zM7 9h2v2H7zm12-6H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 18H7v-2h2v2zm4 0h-2v-2h2v2zm4 0h-2v-2h2v2zm2-7h-2v2h2v2h-2v-2h-2v2h-2v-2h-2v2H9v-2H7v2H5v-2h2v-2H5V5h14v6z" + }, + "children": [] + }] +}; +exports.ic_gradient = ic_gradient; \ No newline at end of file diff --git a/dist/md/ic_gradient_outline.js b/dist/md/ic_gradient_outline.js new file mode 100644 index 000000000..65748448c --- /dev/null +++ b/dist/md/ic_gradient_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_gradient_outline = void 0; +var ic_gradient_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 9h2v2h-2V9zm-2 2h2v2H9v-2zm4 0h2v2h-2v-2zm2-2h2v2h-2V9zM7 9h2v2H7V9zm12-6H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 18H7v-2h2v2zm4 0h-2v-2h2v2zm4 0h-2v-2h2v2zm2-7h-2v2h2v2h-2v-2h-2v2h-2v-2h-2v2H9v-2H7v2H5v-2h2v-2H5V5h14v6z" + }, + "children": [] + }] +}; +exports.ic_gradient_outline = ic_gradient_outline; \ No newline at end of file diff --git a/dist/md/ic_gradient_twotone.js b/dist/md/ic_gradient_twotone.js new file mode 100644 index 000000000..196f24804 --- /dev/null +++ b/dist/md/ic_gradient_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_gradient_twotone = void 0; +var ic_gradient_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 11h2v2h-2zm6 10c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14zM9 18H7v-2h2v2zm4 0h-2v-2h2v2zm4 0h-2v-2h2v2zM5 13h2v-2H5V5h14v6h-2v2h2v2h-2v-2h-2v2h-2v-2h-2v2H9v-2H7v2H5v-2zm2-4h2v2H7zm8 0h2v2h-2zm-4 0h2v2h-2zm-2 2h2v2H9z" + }, + "children": [] + }] +}; +exports.ic_gradient_twotone = ic_gradient_twotone; \ No newline at end of file diff --git a/dist/md/ic_grading.js b/dist/md/ic_grading.js new file mode 100644 index 000000000..0b378e8be --- /dev/null +++ b/dist/md/ic_grading.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_grading = void 0; +var ic_grading = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M4,7h16v2H4V7z M4,13h16v-2H4V13z M4,17h7v-2H4V17z M4,21h7v-2H4V21z M15.41,18.17L14,16.75l-1.41,1.41L15.41,21L20,16.42 L18.58,15L15.41,18.17z M4,3v2h16V3H4z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M4,7h16v2H4V7z M4,13h16v-2H4V13z M4,17h7v-2H4V17z M4,21h7v-2H4V21z M15.41,18.17L14,16.75l-1.41,1.41L15.41,21L20,16.42 L18.58,15L15.41,18.17z M4,3v2h16V3H4z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_grading = ic_grading; \ No newline at end of file diff --git a/dist/md/ic_grading_outline.js b/dist/md/ic_grading_outline.js new file mode 100644 index 000000000..acd65647d --- /dev/null +++ b/dist/md/ic_grading_outline.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_grading_outline = void 0; +var ic_grading_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M4,7h16v2H4V7z M4,13h16v-2H4V13z M4,17h7v-2H4V17z M4,21h7v-2H4V21z M15.41,18.17L14,16.75l-1.41,1.41L15.41,21L20,16.42 L18.58,15L15.41,18.17z M4,3v2h16V3H4z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M4,7h16v2H4V7z M4,13h16v-2H4V13z M4,17h7v-2H4V17z M4,21h7v-2H4V21z M15.41,18.17L14,16.75l-1.41,1.41L15.41,21L20,16.42 L18.58,15L15.41,18.17z M4,3v2h16V3H4z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_grading_outline = ic_grading_outline; \ No newline at end of file diff --git a/dist/md/ic_grading_twotone.js b/dist/md/ic_grading_twotone.js new file mode 100644 index 000000000..027893785 --- /dev/null +++ b/dist/md/ic_grading_twotone.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_grading_twotone = void 0; +var ic_grading_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M4,7h16v2H4V7z M4,13h16v-2H4V13z M4,17h7v-2H4V17z M4,21h7v-2H4V21z M15.41,18.17L14,16.75l-1.41,1.41L15.41,21L20,16.42 L18.58,15L15.41,18.17z M4,3v2h16V3H4z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M4,7h16v2H4V7z M4,13h16v-2H4V13z M4,17h7v-2H4V17z M4,21h7v-2H4V21z M15.41,18.17L14,16.75l-1.41,1.41L15.41,21L20,16.42 L18.58,15L15.41,18.17z M4,3v2h16V3H4z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_grading_twotone = ic_grading_twotone; \ No newline at end of file diff --git a/dist/md/ic_grain.js b/dist/md/ic_grain.js new file mode 100644 index 000000000..01fd44477 --- /dev/null +++ b/dist/md/ic_grain.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_grain = void 0; +var ic_grain = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 12c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM6 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12-8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-4 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm4-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-4-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-4-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_grain = ic_grain; \ No newline at end of file diff --git a/dist/md/ic_grain_outline.js b/dist/md/ic_grain_outline.js new file mode 100644 index 000000000..925a3416e --- /dev/null +++ b/dist/md/ic_grain_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_grain_outline = void 0; +var ic_grain_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 12c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM6 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12-8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-4 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm4-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-4-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-4-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_grain_outline = ic_grain_outline; \ No newline at end of file diff --git a/dist/md/ic_grain_twotone.js b/dist/md/ic_grain_twotone.js new file mode 100644 index 000000000..f5ea6bf08 --- /dev/null +++ b/dist/md/ic_grain_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_grain_twotone = void 0; +var ic_grain_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM6 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm8 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-4 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0-12c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm4 12c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-8 4c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z" + }, + "children": [] + }] +}; +exports.ic_grain_twotone = ic_grain_twotone; \ No newline at end of file diff --git a/dist/md/ic_graphic_eq.js b/dist/md/ic_graphic_eq.js new file mode 100644 index 000000000..e9d95f6e4 --- /dev/null +++ b/dist/md/ic_graphic_eq.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_graphic_eq = void 0; +var ic_graphic_eq = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 18h2V6H7v12zm4 4h2V2h-2v20zm-8-8h2v-4H3v4zm12 4h2V6h-2v12zm4-8v4h2v-4h-2z" + }, + "children": [] + }] +}; +exports.ic_graphic_eq = ic_graphic_eq; \ No newline at end of file diff --git a/dist/md/ic_graphic_eq_outline.js b/dist/md/ic_graphic_eq_outline.js new file mode 100644 index 000000000..21234bd3a --- /dev/null +++ b/dist/md/ic_graphic_eq_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_graphic_eq_outline = void 0; +var ic_graphic_eq_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 18h2V6H7v12zm4 4h2V2h-2v20zm-8-8h2v-4H3v4zm12 4h2V6h-2v12zm4-8v4h2v-4h-2z" + }, + "children": [] + }] +}; +exports.ic_graphic_eq_outline = ic_graphic_eq_outline; \ No newline at end of file diff --git a/dist/md/ic_graphic_eq_twotone.js b/dist/md/ic_graphic_eq_twotone.js new file mode 100644 index 000000000..2e84646dc --- /dev/null +++ b/dist/md/ic_graphic_eq_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_graphic_eq_twotone = void 0; +var ic_graphic_eq_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 18h2V6H7v12zm4 4h2V2h-2v20zm-8-8h2v-4H3v4zm12 4h2V6h-2v12zm4-8v4h2v-4h-2z" + }, + "children": [] + }] +}; +exports.ic_graphic_eq_twotone = ic_graphic_eq_twotone; \ No newline at end of file diff --git a/dist/md/ic_grass.js b/dist/md/ic_grass.js new file mode 100644 index 000000000..17f9a7290 --- /dev/null +++ b/dist/md/ic_grass.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_grass = void 0; +var ic_grass = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12,20H2v-2h5.75l0,0C7.02,15.19,4.81,12.99,2,12.26C2.64,12.1,3.31,12,4,12C8.42,12,12,15.58,12,20z M22,12.26 C21.36,12.1,20.69,12,20,12c-2.93,0-5.48,1.58-6.88,3.93c0.29,0.66,0.53,1.35,0.67,2.07c0.13,0.65,0.2,1.32,0.2,2h2h6v-2h-5.75 C16.98,15.19,19.19,12.99,22,12.26z M15.64,11.02c0.78-2.09,2.23-3.84,4.09-5C15.44,6.16,12,9.67,12,14c0,0.01,0,0.02,0,0.02 C12.95,12.75,14.2,11.72,15.64,11.02z M11.42,8.85C10.58,6.66,8.88,4.89,6.7,4C8.14,5.86,9,8.18,9,10.71c0,0.21-0.03,0.41-0.04,0.61 c0.43,0.24,0.83,0.52,1.22,0.82C10.39,10.96,10.83,9.85,11.42,8.85z" + }, + "children": [] + }] +}; +exports.ic_grass = ic_grass; \ No newline at end of file diff --git a/dist/md/ic_grass_outline.js b/dist/md/ic_grass_outline.js new file mode 100644 index 000000000..92d938123 --- /dev/null +++ b/dist/md/ic_grass_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_grass_outline = void 0; +var ic_grass_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12,20H2v-2h5.75l0,0C7.02,15.19,4.81,12.99,2,12.26C2.64,12.1,3.31,12,4,12C8.42,12,12,15.58,12,20z M22,12.26 C21.36,12.1,20.69,12,20,12c-2.93,0-5.48,1.58-6.88,3.93c0.29,0.66,0.53,1.35,0.67,2.07c0.13,0.65,0.2,1.32,0.2,2h2h6v-2h-5.75 C16.98,15.19,19.19,12.99,22,12.26z M15.64,11.02c0.78-2.09,2.23-3.84,4.09-5C15.44,6.16,12,9.67,12,14c0,0.01,0,0.02,0,0.02 C12.95,12.75,14.2,11.72,15.64,11.02z M11.42,8.85C10.58,6.66,8.88,4.89,6.7,4C8.14,5.86,9,8.18,9,10.71c0,0.21-0.03,0.41-0.04,0.61 c0.43,0.24,0.83,0.52,1.22,0.82C10.39,10.96,10.83,9.85,11.42,8.85z" + }, + "children": [] + }] +}; +exports.ic_grass_outline = ic_grass_outline; \ No newline at end of file diff --git a/dist/md/ic_grass_twotone.js b/dist/md/ic_grass_twotone.js new file mode 100644 index 000000000..5ce9478f4 --- /dev/null +++ b/dist/md/ic_grass_twotone.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_grass_twotone = void 0; +var ic_grass_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12,20H2v-2h5.75l0,0C7.02,15.19,4.81,12.99,2,12.26C2.64,12.1,3.31,12,4,12C8.42,12,12,15.58,12,20z M22,12.26 C21.36,12.1,20.69,12,20,12c-2.93,0-5.48,1.58-6.88,3.93c0.29,0.66,0.53,1.35,0.67,2.07c0.13,0.65,0.2,1.32,0.2,2h2h6v-2h-5.75 C16.98,15.19,19.19,12.99,22,12.26z M15.64,11.02c0.78-2.09,2.23-3.84,4.09-5C15.44,6.16,12,9.67,12,14c0,0.01,0,0.02,0,0.02 C12.95,12.75,14.2,11.72,15.64,11.02z M11.42,8.85C10.58,6.66,8.88,4.89,6.7,4C8.14,5.86,9,8.18,9,10.71c0,0.21-0.03,0.41-0.04,0.61 c0.43,0.24,0.83,0.52,1.22,0.82C10.39,10.96,10.83,9.85,11.42,8.85z" + }, + "children": [] + }] +}; +exports.ic_grass_twotone = ic_grass_twotone; \ No newline at end of file diff --git a/dist/md/ic_grid_off.js b/dist/md/ic_grid_off.js new file mode 100644 index 000000000..30b6bb86c --- /dev/null +++ b/dist/md/ic_grid_off.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_grid_off = void 0; +var ic_grid_off = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8 4v1.45l2 2V4h4v4h-3.45l2 2H14v1.45l2 2V10h4v4h-3.45l2 2H20v1.45l2 2V4c0-1.1-.9-2-2-2H4.55l2 2H8zm8 0h4v4h-4V4zM1.27 1.27L0 2.55l2 2V20c0 1.1.9 2 2 2h15.46l2 2 1.27-1.27L1.27 1.27zM10 12.55L11.45 14H10v-1.45zm-6-6L5.45 8H4V6.55zM8 20H4v-4h4v4zm0-6H4v-4h3.45l.55.55V14zm6 6h-4v-4h3.45l.55.54V20zm2 0v-1.46L17.46 20H16z" + }, + "children": [] + }] +}; +exports.ic_grid_off = ic_grid_off; \ No newline at end of file diff --git a/dist/md/ic_grid_off_outline.js b/dist/md/ic_grid_off_outline.js new file mode 100644 index 000000000..eaafe301e --- /dev/null +++ b/dist/md/ic_grid_off_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_grid_off_outline = void 0; +var ic_grid_off_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8 4v.89l2 2V4h4v4h-2.89l2 2H14v.89l2 2V10h4v4h-2.89l2 2H20v.89l2 2V4c0-1.1-.9-2-2-2H5.11l2 2H8zm8 0h4v4h-4V4zM1.41 1.14L0 2.55l2 2V20c0 1.1.9 2 2 2h15.45l2.01 2.01 1.41-1.41L1.41 1.14zM10 12.55L11.45 14H10v-1.45zm-6-6L5.45 8H4V6.55zM8 20H4v-4h4v4zm0-6H4v-4h3.45l.55.55V14zm6 6h-4v-4h3.45l.55.55V20zm2 0v-1.45L17.45 20H16z" + }, + "children": [] + }] +}; +exports.ic_grid_off_outline = ic_grid_off_outline; \ No newline at end of file diff --git a/dist/md/ic_grid_off_twotone.js b/dist/md/ic_grid_off_twotone.js new file mode 100644 index 000000000..86d60946b --- /dev/null +++ b/dist/md/ic_grid_off_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_grid_off_twotone = void 0; +var ic_grid_off_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 14v-4h-4v2.89L17.11 14zm-10-1.45V14h1.45zM14 10h-.89l.89.89zm5.11 6l.89.89V16zM8 4h-.89l.89.89zm6 4V4h-4v2.89L11.11 8zm2-4h4v4h-4zm-6 12v4h4v-3.45l-.55-.55zm-6-6v4h4v-3.45L7.45 10zm12 10h1.45L16 18.55zM4 16h4v4H4zm0-9.45V8h1.45z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8 4v.89l2 2V4h4v4h-2.89l2 2H14v.89l2 2V10h4v4h-2.89l2 2H20v.89l2 2V4c0-1.1-.9-2-2-2H5.11l2 2H8zm8 0h4v4h-4V4zM1.41 1.14L0 2.55l2 2V20c0 1.1.9 2 2 2h15.45l2.01 2.01 1.41-1.41L1.41 1.14zM10 12.55L11.45 14H10v-1.45zm-6-6L5.45 8H4V6.55zM8 20H4v-4h4v4zm0-6H4v-4h3.45l.55.55V14zm6 6h-4v-4h3.45l.55.55V20zm2 0v-1.45L17.45 20H16z" + }, + "children": [] + }] +}; +exports.ic_grid_off_twotone = ic_grid_off_twotone; \ No newline at end of file diff --git a/dist/md/ic_grid_on.js b/dist/md/ic_grid_on.js new file mode 100644 index 000000000..b895f8f39 --- /dev/null +++ b/dist/md/ic_grid_on.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_grid_on = void 0; +var ic_grid_on = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM8 20H4v-4h4v4zm0-6H4v-4h4v4zm0-6H4V4h4v4zm6 12h-4v-4h4v4zm0-6h-4v-4h4v4zm0-6h-4V4h4v4zm6 12h-4v-4h4v4zm0-6h-4v-4h4v4zm0-6h-4V4h4v4z" + }, + "children": [] + }] +}; +exports.ic_grid_on = ic_grid_on; \ No newline at end of file diff --git a/dist/md/ic_grid_on_outline.js b/dist/md/ic_grid_on_outline.js new file mode 100644 index 000000000..a2b9a35a9 --- /dev/null +++ b/dist/md/ic_grid_on_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_grid_on_outline = void 0; +var ic_grid_on_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM8 20H4v-4h4v4zm0-6H4v-4h4v4zm0-6H4V4h4v4zm6 12h-4v-4h4v4zm0-6h-4v-4h4v4zm0-6h-4V4h4v4zm6 12h-4v-4h4v4zm0-6h-4v-4h4v4zm0-6h-4V4h4v4z" + }, + "children": [] + }] +}; +exports.ic_grid_on_outline = ic_grid_on_outline; \ No newline at end of file diff --git a/dist/md/ic_grid_on_twotone.js b/dist/md/ic_grid_on_twotone.js new file mode 100644 index 000000000..9efce14b4 --- /dev/null +++ b/dist/md/ic_grid_on_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_grid_on_twotone = void 0; +var ic_grid_on_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 10h4v4h-4zm0 6h4v4h-4zM4 4h4v4H4zm0 6h4v4H4zm0 6h4v4H4zM16 4h4v4h-4zm0 6h4v4h-4zm0 6h4v4h-4zM10 4h4v4h-4z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM8 20H4v-4h4v4zm0-6H4v-4h4v4zm0-6H4V4h4v4zm6 12h-4v-4h4v4zm0-6h-4v-4h4v4zm0-6h-4V4h4v4zm6 12h-4v-4h4v4zm0-6h-4v-4h4v4zm0-6h-4V4h4v4z" + }, + "children": [] + }] +}; +exports.ic_grid_on_twotone = ic_grid_on_twotone; \ No newline at end of file diff --git a/dist/md/ic_grid_view.js b/dist/md/ic_grid_view.js new file mode 100644 index 000000000..9e686d8dc --- /dev/null +++ b/dist/md/ic_grid_view.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_grid_view = void 0; +var ic_grid_view = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": { + "fill-rule": "evenodd" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M3 3v8h8V3H3zm6 6H5V5h4v4zm-6 4v8h8v-8H3zm6 6H5v-4h4v4zm4-16v8h8V3h-8zm6 6h-4V5h4v4zm-6 4v8h8v-8h-8zm6 6h-4v-4h4v4z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M3 3v8h8V3H3zm6 6H5V5h4v4zm-6 4v8h8v-8H3zm6 6H5v-4h4v4zm4-16v8h8V3h-8zm6 6h-4V5h4v4zm-6 4v8h8v-8h-8zm6 6h-4v-4h4v4z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_grid_view = ic_grid_view; \ No newline at end of file diff --git a/dist/md/ic_group.js b/dist/md/ic_group.js new file mode 100644 index 000000000..5991b4dee --- /dev/null +++ b/dist/md/ic_group.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_group = void 0; +var ic_group = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5c-1.66 0-3 1.34-3 3s1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5C6.34 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V19h14v-2.5c0-2.33-4.67-3.5-7-3.5zm8 0c-.29 0-.62.02-.97.05 1.16.84 1.97 1.97 1.97 3.45V19h6v-2.5c0-2.33-4.67-3.5-7-3.5z" + }, + "children": [] + }] +}; +exports.ic_group = ic_group; \ No newline at end of file diff --git a/dist/md/ic_group_add.js b/dist/md/ic_group_add.js new file mode 100644 index 000000000..d4ad3c42a --- /dev/null +++ b/dist/md/ic_group_add.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_group_add = void 0; +var ic_group_add = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8 10H5V7H3v3H0v2h3v3h2v-3h3v-2zm10 1c1.66 0 2.99-1.34 2.99-3S19.66 5 18 5c-.32 0-.63.05-.91.14.57.81.9 1.79.9 2.86s-.34 2.04-.9 2.86c.28.09.59.14.91.14zm-5 0c1.66 0 2.99-1.34 2.99-3S14.66 5 13 5c-1.66 0-3 1.34-3 3s1.34 3 3 3zm6.62 2.16c.83.73 1.38 1.66 1.38 2.84v2h3v-2c0-1.54-2.37-2.49-4.38-2.84zM13 13c-2 0-6 1-6 3v2h12v-2c0-2-4-3-6-3z" + }, + "children": [] + }] +}; +exports.ic_group_add = ic_group_add; \ No newline at end of file diff --git a/dist/md/ic_group_add_outline.js b/dist/md/ic_group_add_outline.js new file mode 100644 index 000000000..e4a9d6bbf --- /dev/null +++ b/dist/md/ic_group_add_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_group_add_outline = void 0; +var ic_group_add_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 15v-3h3v-2H5V7H3v3H0v2h3v3zm7-1.25c-2.34 0-7 1.17-7 3.5V19h14v-1.75c0-2.33-4.66-3.5-7-3.5zM7.34 17c.84-.58 2.87-1.25 4.66-1.25s3.82.67 4.66 1.25H7.34zM12 12c1.93 0 3.5-1.57 3.5-3.5S13.93 5 12 5 8.5 6.57 8.5 8.5 10.07 12 12 12zm0-5c.83 0 1.5.67 1.5 1.5S12.83 10 12 10s-1.5-.67-1.5-1.5S11.17 7 12 7zm5 5c1.93 0 3.5-1.57 3.5-3.5S18.93 5 17 5c-.24 0-.48.02-.71.07.76.94 1.21 2.13 1.21 3.43 0 1.3-.47 2.48-1.23 3.42.24.05.48.08.73.08zm2.32 2.02c1 .81 1.68 1.87 1.68 3.23V19h3v-1.75c0-1.69-2.44-2.76-4.68-3.23z" + }, + "children": [] + }] +}; +exports.ic_group_add_outline = ic_group_add_outline; \ No newline at end of file diff --git a/dist/md/ic_group_add_twotone.js b/dist/md/ic_group_add_twotone.js new file mode 100644 index 000000000..32936c402 --- /dev/null +++ b/dist/md/ic_group_add_twotone.js @@ -0,0 +1,46 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_group_add_twotone = void 0; +var ic_group_add_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 15v-3h3v-2H5V7H3v3H0v2h3v3z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "8.5", + "opacity": ".3", + "r": "1.5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7.34 17h9.32c-.84-.58-2.87-1.25-4.66-1.25s-3.82.67-4.66 1.25z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 12c1.93 0 3.5-1.57 3.5-3.5S13.93 5 12 5 8.5 6.57 8.5 8.5 10.07 12 12 12zm0-5c.83 0 1.5.67 1.5 1.5S12.83 10 12 10s-1.5-.67-1.5-1.5S11.17 7 12 7zm0 6.75c-2.34 0-7 1.17-7 3.5V19h14v-1.75c0-2.33-4.66-3.5-7-3.5zM7.34 17c.84-.58 2.87-1.25 4.66-1.25s3.82.67 4.66 1.25H7.34zM17 12c1.93 0 3.5-1.57 3.5-3.5S18.93 5 17 5c-.24 0-.48.02-.71.07.76.94 1.21 2.13 1.21 3.43 0 1.3-.47 2.48-1.23 3.42.24.05.48.08.73.08zm2.32 2.02c1 .81 1.68 1.87 1.68 3.23V19h3v-1.75c0-1.69-2.44-2.76-4.68-3.23z" + }, + "children": [] + }] +}; +exports.ic_group_add_twotone = ic_group_add_twotone; \ No newline at end of file diff --git a/dist/md/ic_group_outline.js b/dist/md/ic_group_outline.js new file mode 100644 index 000000000..7e0c345ae --- /dev/null +++ b/dist/md/ic_group_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_group_outline = void 0; +var ic_group_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 13.75c-2.34 0-7 1.17-7 3.5V19h14v-1.75c0-2.33-4.66-3.5-7-3.5zM4.34 17c.84-.58 2.87-1.25 4.66-1.25s3.82.67 4.66 1.25H4.34zM9 12c1.93 0 3.5-1.57 3.5-3.5S10.93 5 9 5 5.5 6.57 5.5 8.5 7.07 12 9 12zm0-5c.83 0 1.5.67 1.5 1.5S9.83 10 9 10s-1.5-.67-1.5-1.5S8.17 7 9 7zm7.04 6.81c1.16.84 1.96 1.96 1.96 3.44V19h4v-1.75c0-2.02-3.5-3.17-5.96-3.44zM15 12c1.93 0 3.5-1.57 3.5-3.5S16.93 5 15 5c-.54 0-1.04.13-1.5.35.63.89 1 1.98 1 3.15s-.37 2.26-1 3.15c.46.22.96.35 1.5.35z" + }, + "children": [] + }] +}; +exports.ic_group_outline = ic_group_outline; \ No newline at end of file diff --git a/dist/md/ic_group_twotone.js b/dist/md/ic_group_twotone.js new file mode 100644 index 000000000..696379fc3 --- /dev/null +++ b/dist/md/ic_group_twotone.js @@ -0,0 +1,40 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_group_twotone = void 0; +var ic_group_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "9", + "cy": "8.5", + "opacity": ".3", + "r": "1.5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4.34 17h9.32c-.84-.58-2.87-1.25-4.66-1.25s-3.82.67-4.66 1.25z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 12c1.93 0 3.5-1.57 3.5-3.5S10.93 5 9 5 5.5 6.57 5.5 8.5 7.07 12 9 12zm0-5c.83 0 1.5.67 1.5 1.5S9.83 10 9 10s-1.5-.67-1.5-1.5S8.17 7 9 7zm0 6.75c-2.34 0-7 1.17-7 3.5V19h14v-1.75c0-2.33-4.66-3.5-7-3.5zM4.34 17c.84-.58 2.87-1.25 4.66-1.25s3.82.67 4.66 1.25H4.34zm11.7-3.19c1.16.84 1.96 1.96 1.96 3.44V19h4v-1.75c0-2.02-3.5-3.17-5.96-3.44zM15 12c1.93 0 3.5-1.57 3.5-3.5S16.93 5 15 5c-.54 0-1.04.13-1.5.35.63.89 1 1.98 1 3.15s-.37 2.26-1 3.15c.46.22.96.35 1.5.35z" + }, + "children": [] + }] +}; +exports.ic_group_twotone = ic_group_twotone; \ No newline at end of file diff --git a/dist/md/ic_group_work.js b/dist/md/ic_group_work.js new file mode 100644 index 000000000..6bc1a18dc --- /dev/null +++ b/dist/md/ic_group_work.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_group_work = void 0; +var ic_group_work = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM8 17.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5zM9.5 8c0-1.38 1.12-2.5 2.5-2.5s2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5S9.5 9.38 9.5 8zm6.5 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z" + }, + "children": [] + }] +}; +exports.ic_group_work = ic_group_work; \ No newline at end of file diff --git a/dist/md/ic_group_work_outline.js b/dist/md/ic_group_work_outline.js new file mode 100644 index 000000000..b6afe5552 --- /dev/null +++ b/dist/md/ic_group_work_outline.js @@ -0,0 +1,48 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_group_work_outline = void 0; +var ic_group_work_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "8", + "cy": "14", + "r": "2" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "8", + "r": "2" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "16", + "cy": "14", + "r": "2" + }, + "children": [] + }] +}; +exports.ic_group_work_outline = ic_group_work_outline; \ No newline at end of file diff --git a/dist/md/ic_group_work_twotone.js b/dist/md/ic_group_work_twotone.js new file mode 100644 index 000000000..99389d4fd --- /dev/null +++ b/dist/md/ic_group_work_twotone.js @@ -0,0 +1,55 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_group_work_twotone = void 0; +var ic_group_work_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zM8 16c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm4-6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm4 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "8", + "cy": "14", + "r": "2" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "8", + "r": "2" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "16", + "cy": "14", + "r": "2" + }, + "children": [] + }] +}; +exports.ic_group_work_twotone = ic_group_work_twotone; \ No newline at end of file diff --git a/dist/md/ic_groups.js b/dist/md/ic_groups.js new file mode 100644 index 000000000..44c34ecb3 --- /dev/null +++ b/dist/md/ic_groups.js @@ -0,0 +1,35 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_groups = void 0; +var ic_groups = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,12.75c1.63,0,3.07,0.39,4.24,0.9c1.08,0.48,1.76,1.56,1.76,2.73L18,18H6l0-1.61c0-1.18,0.68-2.26,1.76-2.73 C8.93,13.14,10.37,12.75,12,12.75z M4,13c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2s-2,0.9-2,2C2,12.1,2.9,13,4,13z M5.13,14.1 C4.76,14.04,4.39,14,4,14c-0.99,0-1.93,0.21-2.78,0.58C0.48,14.9,0,15.62,0,16.43V18l4.5,0v-1.61C4.5,15.56,4.73,14.78,5.13,14.1z M20,13c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2s-2,0.9-2,2C18,12.1,18.9,13,20,13z M24,16.43c0-0.81-0.48-1.53-1.22-1.85 C21.93,14.21,20.99,14,20,14c-0.39,0-0.76,0.04-1.13,0.1c0.4,0.68,0.63,1.46,0.63,2.29V18l4.5,0V16.43z M12,6c1.66,0,3,1.34,3,3 c0,1.66-1.34,3-3,3s-3-1.34-3-3C9,7.34,10.34,6,12,6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,12.75c1.63,0,3.07,0.39,4.24,0.9c1.08,0.48,1.76,1.56,1.76,2.73L18,18H6l0-1.61c0-1.18,0.68-2.26,1.76-2.73 C8.93,13.14,10.37,12.75,12,12.75z M4,13c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2s-2,0.9-2,2C2,12.1,2.9,13,4,13z M5.13,14.1 C4.76,14.04,4.39,14,4,14c-0.99,0-1.93,0.21-2.78,0.58C0.48,14.9,0,15.62,0,16.43V18l4.5,0v-1.61C4.5,15.56,4.73,14.78,5.13,14.1z M20,13c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2s-2,0.9-2,2C18,12.1,18.9,13,20,13z M24,16.43c0-0.81-0.48-1.53-1.22-1.85 C21.93,14.21,20.99,14,20,14c-0.39,0-0.76,0.04-1.13,0.1c0.4,0.68,0.63,1.46,0.63,2.29V18l4.5,0V16.43z M12,6c1.66,0,3,1.34,3,3 c0,1.66-1.34,3-3,3s-3-1.34-3-3C9,7.34,10.34,6,12,6z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_groups = ic_groups; \ No newline at end of file diff --git a/dist/md/ic_groups_outline.js b/dist/md/ic_groups_outline.js new file mode 100644 index 000000000..034f895b7 --- /dev/null +++ b/dist/md/ic_groups_outline.js @@ -0,0 +1,35 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_groups_outline = void 0; +var ic_groups_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M4,13c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2s-2,0.9-2,2C2,12.1,2.9,13,4,13z M5.13,14.1C4.76,14.04,4.39,14,4,14 c-0.99,0-1.93,0.21-2.78,0.58C0.48,14.9,0,15.62,0,16.43V18l4.5,0v-1.61C4.5,15.56,4.73,14.78,5.13,14.1z M20,13c1.1,0,2-0.9,2-2 c0-1.1-0.9-2-2-2s-2,0.9-2,2C18,12.1,18.9,13,20,13z M24,16.43c0-0.81-0.48-1.53-1.22-1.85C21.93,14.21,20.99,14,20,14 c-0.39,0-0.76,0.04-1.13,0.1c0.4,0.68,0.63,1.46,0.63,2.29V18l4.5,0V16.43z M16.24,13.65c-1.17-0.52-2.61-0.9-4.24-0.9 c-1.63,0-3.07,0.39-4.24,0.9C6.68,14.13,6,15.21,6,16.39V18h12v-1.61C18,15.21,17.32,14.13,16.24,13.65z M8.07,16 c0.09-0.23,0.13-0.39,0.91-0.69c0.97-0.38,1.99-0.56,3.02-0.56s2.05,0.18,3.02,0.56c0.77,0.3,0.81,0.46,0.91,0.69H8.07z M12,8 c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S11.45,8,12,8 M12,6c-1.66,0-3,1.34-3,3c0,1.66,1.34,3,3,3s3-1.34,3-3 C15,7.34,13.66,6,12,6L12,6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M4,13c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2s-2,0.9-2,2C2,12.1,2.9,13,4,13z M5.13,14.1C4.76,14.04,4.39,14,4,14 c-0.99,0-1.93,0.21-2.78,0.58C0.48,14.9,0,15.62,0,16.43V18l4.5,0v-1.61C4.5,15.56,4.73,14.78,5.13,14.1z M20,13c1.1,0,2-0.9,2-2 c0-1.1-0.9-2-2-2s-2,0.9-2,2C18,12.1,18.9,13,20,13z M24,16.43c0-0.81-0.48-1.53-1.22-1.85C21.93,14.21,20.99,14,20,14 c-0.39,0-0.76,0.04-1.13,0.1c0.4,0.68,0.63,1.46,0.63,2.29V18l4.5,0V16.43z M16.24,13.65c-1.17-0.52-2.61-0.9-4.24-0.9 c-1.63,0-3.07,0.39-4.24,0.9C6.68,14.13,6,15.21,6,16.39V18h12v-1.61C18,15.21,17.32,14.13,16.24,13.65z M8.07,16 c0.09-0.23,0.13-0.39,0.91-0.69c0.97-0.38,1.99-0.56,3.02-0.56s2.05,0.18,3.02,0.56c0.77,0.3,0.81,0.46,0.91,0.69H8.07z M12,8 c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S11.45,8,12,8 M12,6c-1.66,0-3,1.34-3,3c0,1.66,1.34,3,3,3s3-1.34,3-3 C15,7.34,13.66,6,12,6L12,6z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_groups_outline = ic_groups_outline; \ No newline at end of file diff --git a/dist/md/ic_groups_twotone.js b/dist/md/ic_groups_twotone.js new file mode 100644 index 000000000..450210c95 --- /dev/null +++ b/dist/md/ic_groups_twotone.js @@ -0,0 +1,53 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_groups_twotone = void 0; +var ic_groups_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "g", + "attribs": { + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M8.07,16c0.09-0.23,0.13-0.39,0.91-0.69c0.97-0.38,1.99-0.56,3.02-0.56s2.05,0.18,3.02,0.56c0.77,0.3,0.81,0.46,0.91,0.69 H8.07z M12,8c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S11.45,8,12,8" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M8.07,16c0.09-0.23,0.13-0.39,0.91-0.69c0.97-0.38,1.99-0.56,3.02-0.56s2.05,0.18,3.02,0.56c0.77,0.3,0.81,0.46,0.91,0.69 H8.07z M12,8c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S11.45,8,12,8" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M4,13c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2s-2,0.9-2,2C2,12.1,2.9,13,4,13z M5.13,14.1C4.76,14.04,4.39,14,4,14 c-0.99,0-1.93,0.21-2.78,0.58C0.48,14.9,0,15.62,0,16.43V18l4.5,0v-1.61C4.5,15.56,4.73,14.78,5.13,14.1z M20,13c1.1,0,2-0.9,2-2 c0-1.1-0.9-2-2-2s-2,0.9-2,2C18,12.1,18.9,13,20,13z M24,16.43c0-0.81-0.48-1.53-1.22-1.85C21.93,14.21,20.99,14,20,14 c-0.39,0-0.76,0.04-1.13,0.1c0.4,0.68,0.63,1.46,0.63,2.29V18l4.5,0V16.43z M16.24,13.65c-1.17-0.52-2.61-0.9-4.24-0.9 c-1.63,0-3.07,0.39-4.24,0.9C6.68,14.13,6,15.21,6,16.39V18h12v-1.61C18,15.21,17.32,14.13,16.24,13.65z M8.07,16 c0.09-0.23,0.13-0.39,0.91-0.69c0.97-0.38,1.99-0.56,3.02-0.56s2.05,0.18,3.02,0.56c0.77,0.3,0.81,0.46,0.91,0.69H8.07z M12,8 c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S11.45,8,12,8 M12,6c-1.66,0-3,1.34-3,3c0,1.66,1.34,3,3,3s3-1.34,3-3 C15,7.34,13.66,6,12,6L12,6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M4,13c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2s-2,0.9-2,2C2,12.1,2.9,13,4,13z M5.13,14.1C4.76,14.04,4.39,14,4,14 c-0.99,0-1.93,0.21-2.78,0.58C0.48,14.9,0,15.62,0,16.43V18l4.5,0v-1.61C4.5,15.56,4.73,14.78,5.13,14.1z M20,13c1.1,0,2-0.9,2-2 c0-1.1-0.9-2-2-2s-2,0.9-2,2C18,12.1,18.9,13,20,13z M24,16.43c0-0.81-0.48-1.53-1.22-1.85C21.93,14.21,20.99,14,20,14 c-0.39,0-0.76,0.04-1.13,0.1c0.4,0.68,0.63,1.46,0.63,2.29V18l4.5,0V16.43z M16.24,13.65c-1.17-0.52-2.61-0.9-4.24-0.9 c-1.63,0-3.07,0.39-4.24,0.9C6.68,14.13,6,15.21,6,16.39V18h12v-1.61C18,15.21,17.32,14.13,16.24,13.65z M8.07,16 c0.09-0.23,0.13-0.39,0.91-0.69c0.97-0.38,1.99-0.56,3.02-0.56s2.05,0.18,3.02,0.56c0.77,0.3,0.81,0.46,0.91,0.69H8.07z M12,8 c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S11.45,8,12,8 M12,6c-1.66,0-3,1.34-3,3c0,1.66,1.34,3,3,3s3-1.34,3-3 C15,7.34,13.66,6,12,6L12,6z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_groups_twotone = ic_groups_twotone; \ No newline at end of file diff --git a/dist/md/ic_hail.js b/dist/md/ic_hail.js new file mode 100644 index 000000000..abc644d06 --- /dev/null +++ b/dist/md/ic_hail.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_hail = void 0; +var ic_hail = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm5-4h2v.4c-.1 2.2-.8 3.9-2.3 5.1-.5.4-1.1.7-1.7.9V22h-2v-6h-2v6H9V10.1c-.3.1-.5.2-.6.3-.9.7-1.39 1.6-1.4 3.1v.5H5v-.5c0-2 .71-3.59 2.11-4.79C8.21 7.81 10 7 12 7s2.68-.46 3.48-1.06C16.48 5.14 17 4 17 2.5V2zM4 16h3v6H4v-6z" + }, + "children": [] + }] +}; +exports.ic_hail = ic_hail; \ No newline at end of file diff --git a/dist/md/ic_handyman.js b/dist/md/ic_handyman.js new file mode 100644 index 000000000..1e9d87f31 --- /dev/null +++ b/dist/md/ic_handyman.js @@ -0,0 +1,83 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_handyman = void 0; +var ic_handyman = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M21.67,18.17l-5.3-5.3h-0.99l-2.54,2.54v0.99l5.3,5.3c0.39,0.39,1.02,0.39,1.41,0l2.12-2.12 C22.06,19.2,22.06,18.56,21.67,18.17z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21.67,18.17l-5.3-5.3h-0.99l-2.54,2.54v0.99l5.3,5.3c0.39,0.39,1.02,0.39,1.41,0l2.12-2.12 C22.06,19.2,22.06,18.56,21.67,18.17z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M17.34,10.19l1.41-1.41l2.12,2.12c1.17-1.17,1.17-3.07,0-4.24l-3.54-3.54l-1.41,1.41V1.71L15.22,1l-3.54,3.54l0.71,0.71 h2.83l-1.41,1.41l1.06,1.06l-2.89,2.89L7.85,6.48V5.06L4.83,2.04L2,4.87l3.03,3.03h1.41l4.13,4.13l-0.85,0.85H7.6l-5.3,5.3 c-0.39,0.39-0.39,1.02,0,1.41l2.12,2.12c0.39,0.39,1.02,0.39,1.41,0l5.3-5.3v-2.12l5.15-5.15L17.34,10.19z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17.34,10.19l1.41-1.41l2.12,2.12c1.17-1.17,1.17-3.07,0-4.24l-3.54-3.54l-1.41,1.41V1.71L15.22,1l-3.54,3.54l0.71,0.71 h2.83l-1.41,1.41l1.06,1.06l-2.89,2.89L7.85,6.48V5.06L4.83,2.04L2,4.87l3.03,3.03h1.41l4.13,4.13l-0.85,0.85H7.6l-5.3,5.3 c-0.39,0.39-0.39,1.02,0,1.41l2.12,2.12c0.39,0.39,1.02,0.39,1.41,0l5.3-5.3v-2.12l5.15-5.15L17.34,10.19z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_handyman = ic_handyman; \ No newline at end of file diff --git a/dist/md/ic_handyman_outline.js b/dist/md/ic_handyman_outline.js new file mode 100644 index 000000000..be0c05bdc --- /dev/null +++ b/dist/md/ic_handyman_outline.js @@ -0,0 +1,83 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_handyman_outline = void 0; +var ic_handyman_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M21.67,18.17l-5.3-5.3h-0.99l-2.54,2.54v0.99l5.3,5.3c0.39,0.39,1.02,0.39,1.41,0l2.12-2.12 C22.06,19.2,22.06,18.56,21.67,18.17z M18.84,19.59l-4.24-4.24l0.71-0.71l4.24,4.24L18.84,19.59z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21.67,18.17l-5.3-5.3h-0.99l-2.54,2.54v0.99l5.3,5.3c0.39,0.39,1.02,0.39,1.41,0l2.12-2.12 C22.06,19.2,22.06,18.56,21.67,18.17z M18.84,19.59l-4.24-4.24l0.71-0.71l4.24,4.24L18.84,19.59z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M17.34,10.19l1.41-1.41l2.12,2.12c1.17-1.17,1.17-3.07,0-4.24l-3.54-3.54l-1.41,1.41V1.71L15.22,1l-3.54,3.54l0.71,0.71 h2.83l-1.41,1.41l1.06,1.06l-2.89,2.89L7.85,6.48V5.06L4.83,2.04L2,4.87l3.03,3.03h1.41l4.13,4.13l-0.85,0.85H7.6l-5.3,5.3 c-0.39,0.39-0.39,1.02,0,1.41l2.12,2.12c0.39,0.39,1.02,0.39,1.41,0l5.3-5.3v-2.12l5.15-5.15L17.34,10.19z M9.36,15.34 l-4.24,4.24l-0.71-0.71l4.24-4.24l0,0L9.36,15.34L9.36,15.34z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17.34,10.19l1.41-1.41l2.12,2.12c1.17-1.17,1.17-3.07,0-4.24l-3.54-3.54l-1.41,1.41V1.71L15.22,1l-3.54,3.54l0.71,0.71 h2.83l-1.41,1.41l1.06,1.06l-2.89,2.89L7.85,6.48V5.06L4.83,2.04L2,4.87l3.03,3.03h1.41l4.13,4.13l-0.85,0.85H7.6l-5.3,5.3 c-0.39,0.39-0.39,1.02,0,1.41l2.12,2.12c0.39,0.39,1.02,0.39,1.41,0l5.3-5.3v-2.12l5.15-5.15L17.34,10.19z M9.36,15.34 l-4.24,4.24l-0.71-0.71l4.24-4.24l0,0L9.36,15.34L9.36,15.34z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_handyman_outline = ic_handyman_outline; \ No newline at end of file diff --git a/dist/md/ic_handyman_twotone.js b/dist/md/ic_handyman_twotone.js new file mode 100644 index 000000000..ca7fa715b --- /dev/null +++ b/dist/md/ic_handyman_twotone.js @@ -0,0 +1,139 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_handyman_twotone = void 0; +var ic_handyman_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": { + "opacity": ".3" + }, + "children": [{ + "name": "g", + "attribs": { + "opacity": ".3" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "8.66,14.64 4.41,18.88 5.12,19.59 9.36,15.34 9.36,15.34 8.66,14.64" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "8.66,14.64 4.41,18.88 5.12,19.59 9.36,15.34 9.36,15.34 8.66,14.64" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": { + "opacity": ".3" + }, + "children": [{ + "name": "g", + "attribs": { + "opacity": ".3" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "6", + "transform": "matrix(0.7071 -0.7071 0.7071 0.7071 -7.0983 17.0848)", + "width": "1", + "x": "16.57", + "y": "14.11" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "6", + "transform": "matrix(0.7071 -0.7071 0.7071 0.7071 -7.0983 17.0848)", + "width": "1", + "x": "16.57", + "y": "14.11" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M21.67,18.17l-5.3-5.3h-0.99l-2.54,2.54v0.99l5.3,5.3c0.39,0.39,1.02,0.39,1.41,0l2.12-2.12 C22.06,19.2,22.06,18.56,21.67,18.17z M18.84,19.59l-4.24-4.24l0.71-0.71l4.24,4.24L18.84,19.59z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21.67,18.17l-5.3-5.3h-0.99l-2.54,2.54v0.99l5.3,5.3c0.39,0.39,1.02,0.39,1.41,0l2.12-2.12 C22.06,19.2,22.06,18.56,21.67,18.17z M18.84,19.59l-4.24-4.24l0.71-0.71l4.24,4.24L18.84,19.59z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M17.34,10.19l1.41-1.41l2.12,2.12c1.17-1.17,1.17-3.07,0-4.24l-3.54-3.54l-1.41,1.41V1.71L15.22,1l-3.54,3.54l0.71,0.71 h2.83l-1.41,1.41l1.06,1.06l-2.89,2.89L7.85,6.48V5.06L4.83,2.04L2,4.87l3.03,3.03h1.41l4.13,4.13l-0.85,0.85H7.6l-5.3,5.3 c-0.39,0.39-0.39,1.02,0,1.41l2.12,2.12c0.39,0.39,1.02,0.39,1.41,0l5.3-5.3v-2.12l5.15-5.15L17.34,10.19z M9.36,15.34 l-4.24,4.24l-0.71-0.71l4.24-4.24l0,0L9.36,15.34L9.36,15.34z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17.34,10.19l1.41-1.41l2.12,2.12c1.17-1.17,1.17-3.07,0-4.24l-3.54-3.54l-1.41,1.41V1.71L15.22,1l-3.54,3.54l0.71,0.71 h2.83l-1.41,1.41l1.06,1.06l-2.89,2.89L7.85,6.48V5.06L4.83,2.04L2,4.87l3.03,3.03h1.41l4.13,4.13l-0.85,0.85H7.6l-5.3,5.3 c-0.39,0.39-0.39,1.02,0,1.41l2.12,2.12c0.39,0.39,1.02,0.39,1.41,0l5.3-5.3v-2.12l5.15-5.15L17.34,10.19z M9.36,15.34 l-4.24,4.24l-0.71-0.71l4.24-4.24l0,0L9.36,15.34L9.36,15.34z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_handyman_twotone = ic_handyman_twotone; \ No newline at end of file diff --git a/dist/md/ic_hardware.js b/dist/md/ic_hardware.js new file mode 100644 index 000000000..aa7e0f798 --- /dev/null +++ b/dist/md/ic_hardware.js @@ -0,0 +1,83 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_hardware = void 0; +var ic_hardware = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M18,3l-3,3V3H9C6.24,3,4,5.24,4,8h5v3h6V8l3,3h2V3H18z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18,3l-3,3V3H9C6.24,3,4,5.24,4,8h5v3h6V8l3,3h2V3H18z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M9,13v7c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1v-7H9z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M9,13v7c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1v-7H9z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_hardware = ic_hardware; \ No newline at end of file diff --git a/dist/md/ic_hd.js b/dist/md/ic_hd.js new file mode 100644 index 000000000..f197fe3fe --- /dev/null +++ b/dist/md/ic_hd.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_hd = void 0; +var ic_hd = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8 12H9.5v-2h-2v2H6V9h1.5v2.5h2V9H11v6zm2-6h4c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1h-4V9zm1.5 4.5h2v-3h-2v3z" + }, + "children": [] + }] +}; +exports.ic_hd = ic_hd; \ No newline at end of file diff --git a/dist/md/ic_hd_outline.js b/dist/md/ic_hd_outline.js new file mode 100644 index 000000000..bc33bd8e5 --- /dev/null +++ b/dist/md/ic_hd_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_hd_outline = void 0; +var ic_hd_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM7.5 13h2v2H11V9H9.5v2.5h-2V9H6v6h1.5zM18 14v-4c0-.55-.45-1-1-1h-4v6h4c.55 0 1-.45 1-1zm-1.5-.5h-2v-3h2v3z" + }, + "children": [] + }] +}; +exports.ic_hd_outline = ic_hd_outline; \ No newline at end of file diff --git a/dist/md/ic_hd_twotone.js b/dist/md/ic_hd_twotone.js new file mode 100644 index 000000000..e5d9dea8a --- /dev/null +++ b/dist/md/ic_hd_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_hd_twotone = void 0; +var ic_hd_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14.5 10.5h2v3h-2zM19 5H5v14h14V5zm-8 10H9.5v-2h-2v2H6V9h1.5v2.5h2V9H11v6zm7-1c0 .55-.45 1-1 1h-4V9h4c.55 0 1 .45 1 1v4z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 21h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2zM5 5h14v14H5V5zm4.5 6.5h-2V9H6v6h1.5v-2h2v2H11V9H9.5zM17 9h-4v6h4c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1zm-.5 4.5h-2v-3h2v3z" + }, + "children": [] + }] +}; +exports.ic_hd_twotone = ic_hd_twotone; \ No newline at end of file diff --git a/dist/md/ic_hdr_enhanced_select.js b/dist/md/ic_hdr_enhanced_select.js new file mode 100644 index 000000000..54dceedf5 --- /dev/null +++ b/dist/md/ic_hdr_enhanced_select.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_hdr_enhanced_select = void 0; +var ic_hdr_enhanced_select = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6 2.69-6 6-6zm0 2C9.79 4 8 5.79 8 8s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm1 7h-2V9H9V7h2V5h2v2h2v2h-2v2zm11 9h-2v2h-1.5v-2h-2v-1.5h2v-2H22v2h2V20zm-6-1.5c0 .6-.4 1.1-.9 1.4L18 22h-1.5l-.9-2h-1.1v2H13v-6h3.5c.8 0 1.5.7 1.5 1.5v1zm-1.5 0v-1h-2v1h2zm-13-.5v-2H5v6H3.5v-2.5h-2V22H0v-6h1.5v2h2zm6.5-2c.8 0 1.5.7 1.5 1.5v3c0 .8-.7 1.5-1.5 1.5H6.5v-6H10zm0 4.5v-3H8v3h2z" + }, + "children": [] + }] +}; +exports.ic_hdr_enhanced_select = ic_hdr_enhanced_select; \ No newline at end of file diff --git a/dist/md/ic_hdr_off.js b/dist/md/ic_hdr_off.js new file mode 100644 index 000000000..d193dd7d7 --- /dev/null +++ b/dist/md/ic_hdr_off.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_hdr_off = void 0; +var ic_hdr_off = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M17.5 15v-2h1.1l.9 2H21l-.9-2.1c.5-.2.9-.8.9-1.4v-1c0-.8-.7-1.5-1.5-1.5H16v4.9l1.1 1.1h.4zm0-4.5h2v1h-2v-1zm-4.5 0v.4l1.5 1.5v-1.9c0-.8-.7-1.5-1.5-1.5h-1.9l1.5 1.5h.4zm-3.5-1l-7-7-1.1 1L6.9 9h-.4v2h-2V9H3v6h1.5v-2.5h2V15H8v-4.9l1.5 1.5V15h3.4l7.6 7.6 1.1-1.1-12.1-12z" + }, + "children": [] + }] +}; +exports.ic_hdr_off = ic_hdr_off; \ No newline at end of file diff --git a/dist/md/ic_hdr_off_outline.js b/dist/md/ic_hdr_off_outline.js new file mode 100644 index 000000000..06e8ce152 --- /dev/null +++ b/dist/md/ic_hdr_off_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_hdr_off_outline = void 0; +var ic_hdr_off_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17.5 15v-2h1.1l.9 2H21l-.9-2.1c.5-.3.9-.8.9-1.4v-1c0-.8-.7-1.5-1.5-1.5H16v4.86L17.14 15h.36zm0-4.5h2v1h-2v-1zm-4.5 0v.36l1.5 1.5V10.5c0-.8-.7-1.5-1.5-1.5h-1.86l1.5 1.5H13zM2.51 2.49L1.45 3.55 6.9 9h-.4v2h-2V9H3v6h1.5v-2.5h2V15H8v-4.9l1.5 1.5V15h3.4l7.6 7.6 1.06-1.06z" + }, + "children": [] + }] +}; +exports.ic_hdr_off_outline = ic_hdr_off_outline; \ No newline at end of file diff --git a/dist/md/ic_hdr_off_twotone.js b/dist/md/ic_hdr_off_twotone.js new file mode 100644 index 000000000..1f722d708 --- /dev/null +++ b/dist/md/ic_hdr_off_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_hdr_off_twotone = void 0; +var ic_hdr_off_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17.5 15v-2h1.1l.9 2H21l-.9-2.1c.5-.3.9-.8.9-1.4v-1c0-.8-.7-1.5-1.5-1.5H16v4.86L17.14 15h.36zm0-4.5h2v1h-2v-1zm-4.5 0v.36l1.5 1.5V10.5c0-.8-.7-1.5-1.5-1.5h-1.86l1.5 1.5H13zM2.51 2.49L1.45 3.55 6.9 9h-.4v2h-2V9H3v6h1.5v-2.5h2V15H8v-4.9l1.5 1.5V15h3.4l7.6 7.6 1.06-1.06z" + }, + "children": [] + }] +}; +exports.ic_hdr_off_twotone = ic_hdr_off_twotone; \ No newline at end of file diff --git a/dist/md/ic_hdr_on.js b/dist/md/ic_hdr_on.js new file mode 100644 index 000000000..2c169f5f5 --- /dev/null +++ b/dist/md/ic_hdr_on.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_hdr_on = void 0; +var ic_hdr_on = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 11.5v-1c0-.8-.7-1.5-1.5-1.5H16v6h1.5v-2h1.1l.9 2H21l-.9-2.1c.5-.3.9-.8.9-1.4zm-1.5 0h-2v-1h2v1zm-13-.5h-2V9H3v6h1.5v-2.5h2V15H8V9H6.5v2zM13 9H9.5v6H13c.8 0 1.5-.7 1.5-1.5v-3c0-.8-.7-1.5-1.5-1.5zm0 4.5h-2v-3h2v3z" + }, + "children": [] + }] +}; +exports.ic_hdr_on = ic_hdr_on; \ No newline at end of file diff --git a/dist/md/ic_hdr_on_outline.js b/dist/md/ic_hdr_on_outline.js new file mode 100644 index 000000000..6a8346770 --- /dev/null +++ b/dist/md/ic_hdr_on_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_hdr_on_outline = void 0; +var ic_hdr_on_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 11.5v-1c0-.8-.7-1.5-1.5-1.5H16v6h1.5v-2h1.1l.9 2H21l-.9-2.1c.5-.3.9-.8.9-1.4zm-1.5 0h-2v-1h2v1zm-13-.5h-2V9H3v6h1.5v-2.5h2V15H8V9H6.5v2zM13 9H9.5v6H13c.8 0 1.5-.7 1.5-1.5v-3c0-.8-.7-1.5-1.5-1.5zm0 4.5h-2v-3h2v3z" + }, + "children": [] + }] +}; +exports.ic_hdr_on_outline = ic_hdr_on_outline; \ No newline at end of file diff --git a/dist/md/ic_hdr_on_twotone.js b/dist/md/ic_hdr_on_twotone.js new file mode 100644 index 000000000..f8d47bf20 --- /dev/null +++ b/dist/md/ic_hdr_on_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_hdr_on_twotone = void 0; +var ic_hdr_on_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 9H9.5v6H13c.8 0 1.5-.7 1.5-1.5v-3c0-.8-.7-1.5-1.5-1.5zm0 4.5h-2v-3h2v3zm8-2v-1c0-.8-.7-1.5-1.5-1.5H16v6h1.5v-2h1.1l.9 2H21l-.9-2.1c.5-.3.9-.8.9-1.4zm-1.5 0h-2v-1h2v1zm-13-.5h-2V9H3v6h1.5v-2.5h2V15H8V9H6.5z" + }, + "children": [] + }] +}; +exports.ic_hdr_on_twotone = ic_hdr_on_twotone; \ No newline at end of file diff --git a/dist/md/ic_hdr_strong.js b/dist/md/ic_hdr_strong.js new file mode 100644 index 000000000..d667eb674 --- /dev/null +++ b/dist/md/ic_hdr_strong.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_hdr_strong = void 0; +var ic_hdr_strong = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zM5 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" + }, + "children": [] + }] +}; +exports.ic_hdr_strong = ic_hdr_strong; \ No newline at end of file diff --git a/dist/md/ic_hdr_strong_outline.js b/dist/md/ic_hdr_strong_outline.js new file mode 100644 index 000000000..dbe58286e --- /dev/null +++ b/dist/md/ic_hdr_strong_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_hdr_strong_outline = void 0; +var ic_hdr_strong_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zM5 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" + }, + "children": [] + }] +}; +exports.ic_hdr_strong_outline = ic_hdr_strong_outline; \ No newline at end of file diff --git a/dist/md/ic_hdr_strong_twotone.js b/dist/md/ic_hdr_strong_twotone.js new file mode 100644 index 000000000..4a574c82e --- /dev/null +++ b/dist/md/ic_hdr_strong_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_hdr_strong_twotone = void 0; +var ic_hdr_strong_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zM5 16c2.21 0 4-1.79 4-4S7.21 8 5 8s-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2z" + }, + "children": [] + }] +}; +exports.ic_hdr_strong_twotone = ic_hdr_strong_twotone; \ No newline at end of file diff --git a/dist/md/ic_hdr_weak.js b/dist/md/ic_hdr_weak.js new file mode 100644 index 000000000..9a5585019 --- /dev/null +++ b/dist/md/ic_hdr_weak.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_hdr_weak = void 0; +var ic_hdr_weak = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm12-2c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z" + }, + "children": [] + }] +}; +exports.ic_hdr_weak = ic_hdr_weak; \ No newline at end of file diff --git a/dist/md/ic_hdr_weak_outline.js b/dist/md/ic_hdr_weak_outline.js new file mode 100644 index 000000000..200588648 --- /dev/null +++ b/dist/md/ic_hdr_weak_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_hdr_weak_outline = void 0; +var ic_hdr_weak_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm12-2c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z" + }, + "children": [] + }] +}; +exports.ic_hdr_weak_outline = ic_hdr_weak_outline; \ No newline at end of file diff --git a/dist/md/ic_hdr_weak_twotone.js b/dist/md/ic_hdr_weak_twotone.js new file mode 100644 index 000000000..cd684cf35 --- /dev/null +++ b/dist/md/ic_hdr_weak_twotone.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_hdr_weak_twotone = void 0; +var ic_hdr_weak_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "5", + "cy": "12", + "opacity": ".3", + "r": "2" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" + }, + "children": [] + }] +}; +exports.ic_hdr_weak_twotone = ic_hdr_weak_twotone; \ No newline at end of file diff --git a/dist/md/ic_headset.js b/dist/md/ic_headset.js new file mode 100644 index 000000000..2c2d55e4a --- /dev/null +++ b/dist/md/ic_headset.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_headset = void 0; +var ic_headset = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none", + "opacity": ".1" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 1c-4.97 0-9 4.03-9 9v7c0 1.66 1.34 3 3 3h3v-8H5v-2c0-3.87 3.13-7 7-7s7 3.13 7 7v2h-4v8h3c1.66 0 3-1.34 3-3v-7c0-4.97-4.03-9-9-9z" + }, + "children": [] + }] +}; +exports.ic_headset = ic_headset; \ No newline at end of file diff --git a/dist/md/ic_headset_mic.js b/dist/md/ic_headset_mic.js new file mode 100644 index 000000000..bd0f9e18c --- /dev/null +++ b/dist/md/ic_headset_mic.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_headset_mic = void 0; +var ic_headset_mic = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none", + "opacity": ".1" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 1c-4.97 0-9 4.03-9 9v7c0 1.66 1.34 3 3 3h3v-8H5v-2c0-3.87 3.13-7 7-7s7 3.13 7 7v2h-4v8h4v1h-7v2h6c1.66 0 3-1.34 3-3V10c0-4.97-4.03-9-9-9z" + }, + "children": [] + }] +}; +exports.ic_headset_mic = ic_headset_mic; \ No newline at end of file diff --git a/dist/md/ic_headset_mic_outline.js b/dist/md/ic_headset_mic_outline.js new file mode 100644 index 000000000..263574880 --- /dev/null +++ b/dist/md/ic_headset_mic_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_headset_mic_outline = void 0; +var ic_headset_mic_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 14v4h-2v-4h2M7 14v4H6c-.55 0-1-.45-1-1v-3h2m5-13c-4.97 0-9 4.03-9 9v7c0 1.66 1.34 3 3 3h3v-8H5v-2c0-3.87 3.13-7 7-7s7 3.13 7 7v2h-4v8h4v1h-7v2h6c1.66 0 3-1.34 3-3V10c0-4.97-4.03-9-9-9z" + }, + "children": [] + }] +}; +exports.ic_headset_mic_outline = ic_headset_mic_outline; \ No newline at end of file diff --git a/dist/md/ic_headset_mic_twotone.js b/dist/md/ic_headset_mic_twotone.js new file mode 100644 index 000000000..388295cfd --- /dev/null +++ b/dist/md/ic_headset_mic_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_headset_mic_twotone = void 0; +var ic_headset_mic_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 17c0 .55.45 1 1 1h1v-4H5v3zm12-3h2v4h-2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 1c-4.97 0-9 4.03-9 9v7c0 1.66 1.34 3 3 3h3v-8H5v-2c0-3.87 3.13-7 7-7s7 3.13 7 7v2h-4v8h4v1h-7v2h6c1.66 0 3-1.34 3-3V10c0-4.97-4.03-9-9-9zM7 14v4H6c-.55 0-1-.45-1-1v-3h2zm12 4h-2v-4h2v4z" + }, + "children": [] + }] +}; +exports.ic_headset_mic_twotone = ic_headset_mic_twotone; \ No newline at end of file diff --git a/dist/md/ic_headset_off.js b/dist/md/ic_headset_off.js new file mode 100644 index 000000000..2cdb6a9ad --- /dev/null +++ b/dist/md/ic_headset_off.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_headset_off = void 0; +var ic_headset_off = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4c3.87 0 7 3.13 7 7v2h-2.92L21 17.92V11c0-4.97-4.03-9-9-9-1.95 0-3.76.62-5.23 1.68l1.44 1.44C9.3 4.41 10.6 4 12 4zM2.27 1.72L1 3l3.33 3.32C3.49 7.68 3 9.29 3 11v7c0 1.66 1.34 3 3 3h3v-8H5v-2c0-1.17.29-2.26.79-3.22L15 17v4h3c.3 0 .59-.06.86-.14L21 23l1.27-1.27-20-20.01z" + }, + "children": [] + }] +}; +exports.ic_headset_off = ic_headset_off; \ No newline at end of file diff --git a/dist/md/ic_headset_outline.js b/dist/md/ic_headset_outline.js new file mode 100644 index 000000000..e3ad4af5d --- /dev/null +++ b/dist/md/ic_headset_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_headset_outline = void 0; +var ic_headset_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 14v3c0 .55-.45 1-1 1h-1v-4h2M7 14v4H6c-.55 0-1-.45-1-1v-3h2m5-13c-4.97 0-9 4.03-9 9v7c0 1.66 1.34 3 3 3h3v-8H5v-2c0-3.87 3.13-7 7-7s7 3.13 7 7v2h-4v8h3c1.66 0 3-1.34 3-3v-7c0-4.97-4.03-9-9-9z" + }, + "children": [] + }] +}; +exports.ic_headset_outline = ic_headset_outline; \ No newline at end of file diff --git a/dist/md/ic_headset_twotone.js b/dist/md/ic_headset_twotone.js new file mode 100644 index 000000000..927008595 --- /dev/null +++ b/dist/md/ic_headset_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_headset_twotone = void 0; +var ic_headset_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 18h1c.55 0 1-.45 1-1v-3h-2v4zM5 17c0 .55.45 1 1 1h1v-4H5v3z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 1c-4.97 0-9 4.03-9 9v7c0 1.66 1.34 3 3 3h3v-8H5v-2c0-3.87 3.13-7 7-7s7 3.13 7 7v2h-4v8h3c1.66 0 3-1.34 3-3v-7c0-4.97-4.03-9-9-9zM7 14v4H6c-.55 0-1-.45-1-1v-3h2zm12 3c0 .55-.45 1-1 1h-1v-4h2v3z" + }, + "children": [] + }] +}; +exports.ic_headset_twotone = ic_headset_twotone; \ No newline at end of file diff --git a/dist/md/ic_healing.js b/dist/md/ic_healing.js new file mode 100644 index 000000000..98d22062a --- /dev/null +++ b/dist/md/ic_healing.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_healing = void 0; +var ic_healing = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17.73 12.02l3.98-3.98c.39-.39.39-1.02 0-1.41l-4.34-4.34c-.39-.39-1.02-.39-1.41 0l-3.98 3.98L8 2.29C7.8 2.1 7.55 2 7.29 2c-.25 0-.51.1-.7.29L2.25 6.63c-.39.39-.39 1.02 0 1.41l3.98 3.98L2.25 16c-.39.39-.39 1.02 0 1.41l4.34 4.34c.39.39 1.02.39 1.41 0l3.98-3.98 3.98 3.98c.2.2.45.29.71.29.26 0 .51-.1.71-.29l4.34-4.34c.39-.39.39-1.02 0-1.41l-3.99-3.98zM12 9c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-4.71 1.96L3.66 7.34l3.63-3.63 3.62 3.62-3.62 3.63zM10 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2 2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm2.66 9.34l-3.63-3.62 3.63-3.63 3.62 3.62-3.62 3.63z" + }, + "children": [] + }] +}; +exports.ic_healing = ic_healing; \ No newline at end of file diff --git a/dist/md/ic_healing_outline.js b/dist/md/ic_healing_outline.js new file mode 100644 index 000000000..3cb29e1d5 --- /dev/null +++ b/dist/md/ic_healing_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_healing_outline = void 0; +var ic_healing_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17.73 12.02l3.98-3.98c.39-.39.39-1.02 0-1.41l-4.34-4.34c-.39-.39-1.02-.39-1.41 0l-3.98 3.98L8 2.29C7.8 2.1 7.55 2 7.29 2c-.25 0-.51.1-.7.29L2.25 6.63c-.39.39-.39 1.02 0 1.41l3.98 3.98L2.25 16c-.39.39-.39 1.02 0 1.41l4.34 4.34c.39.39 1.02.39 1.41 0l3.98-3.98 3.98 3.98c.2.2.45.29.71.29.26 0 .51-.1.71-.29l4.34-4.34c.39-.39.39-1.02 0-1.41l-3.99-3.98zM12 9c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-4.71 1.96L3.66 7.34l3.63-3.63 3.62 3.62-3.62 3.63zM10 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2 2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm2.66 9.34l-3.63-3.62 3.63-3.63 3.62 3.62-3.62 3.63z" + }, + "children": [] + }] +}; +exports.ic_healing_outline = ic_healing_outline; \ No newline at end of file diff --git a/dist/md/ic_healing_twotone.js b/dist/md/ic_healing_twotone.js new file mode 100644 index 000000000..255bc7ad3 --- /dev/null +++ b/dist/md/ic_healing_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_healing_twotone = void 0; +var ic_healing_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13.03 16.72l3.63 3.62 3.62-3.63-3.62-3.62zM7.29 3.71L3.66 7.34l3.63 3.62 3.62-3.63z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17.73 12.02l3.98-3.98c.39-.39.39-1.02 0-1.41l-4.34-4.34c-.39-.39-1.02-.39-1.41 0l-3.98 3.98L8 2.29C7.8 2.1 7.55 2 7.29 2c-.25 0-.51.1-.7.29L2.25 6.63c-.39.39-.39 1.02 0 1.41l3.98 3.98L2.25 16c-.39.39-.39 1.02 0 1.41l4.34 4.34c.39.39 1.02.39 1.41 0l3.98-3.98 3.98 3.98c.2.2.45.29.71.29s.51-.1.71-.29l4.34-4.34c.39-.39.39-1.02 0-1.41l-3.99-3.98zM12 9c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-4.71 1.96L3.66 7.34l3.63-3.63 3.62 3.62-3.62 3.63zM10 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2 2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm2.66 9.34l-3.63-3.62 3.63-3.63 3.62 3.62-3.62 3.63z" + }, + "children": [] + }] +}; +exports.ic_healing_twotone = ic_healing_twotone; \ No newline at end of file diff --git a/dist/md/ic_hearing.js b/dist/md/ic_hearing.js new file mode 100644 index 000000000..b8ad0bc17 --- /dev/null +++ b/dist/md/ic_hearing.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_hearing = void 0; +var ic_hearing = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 20c-.29 0-.56-.06-.76-.15-.71-.37-1.21-.88-1.71-2.38-.51-1.56-1.47-2.29-2.39-3-.79-.61-1.61-1.24-2.32-2.53C9.29 10.98 9 9.93 9 9c0-2.8 2.2-5 5-5s5 2.2 5 5h2c0-3.93-3.07-7-7-7S7 5.07 7 9c0 1.26.38 2.65 1.07 3.9.91 1.65 1.98 2.48 2.85 3.15.81.62 1.39 1.07 1.71 2.05.6 1.82 1.37 2.84 2.73 3.55.51.23 1.07.35 1.64.35 2.21 0 4-1.79 4-4h-2c0 1.1-.9 2-2 2zM7.64 2.64L6.22 1.22C4.23 3.21 3 5.96 3 9s1.23 5.79 3.22 7.78l1.41-1.41C6.01 13.74 5 11.49 5 9s1.01-4.74 2.64-6.36zM11.5 9c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5-1.12-2.5-2.5-2.5-2.5 1.12-2.5 2.5z" + }, + "children": [] + }] +}; +exports.ic_hearing = ic_hearing; \ No newline at end of file diff --git a/dist/md/ic_hearing_disabled.js b/dist/md/ic_hearing_disabled.js new file mode 100644 index 000000000..3c5b59397 --- /dev/null +++ b/dist/md/ic_hearing_disabled.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_hearing_disabled = void 0; +var ic_hearing_disabled = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M6.03,3.2C7.15,2.44,8.51,2,10,2c3.93,0,7,3.07,7,7c0,1.26-0.38,2.65-1.07,3.9c-0.02,0.04-0.05,0.08-0.08,0.13l-1.48-1.48 C14.77,10.69,15,9.8,15,9c0-2.8-2.2-5-5-5C9.08,4,8.24,4.26,7.5,4.67L6.03,3.2z M17.21,14.38l1.43,1.43C20.11,13.93,21,11.57,21,9 c0-3.04-1.23-5.79-3.22-7.78l-1.42,1.42C17.99,4.26,19,6.51,19,9C19,11.02,18.33,12.88,17.21,14.38z M10,6.5 c-0.21,0-0.4,0.03-0.59,0.08l3.01,3.01C12.47,9.4,12.5,9.21,12.5,9C12.5,7.62,11.38,6.5,10,6.5z M21.19,21.19L2.81,2.81L1.39,4.22 l2.13,2.13C3.19,7.16,3,8.05,3,9h2c0-0.36,0.05-0.71,0.12-1.05l6.61,6.61c-0.88,0.68-1.78,1.41-2.27,2.9c-0.5,1.5-1,2.01-1.71,2.38 C7.56,19.94,7.29,20,7,20c-1.1,0-2-0.9-2-2H3c0,2.21,1.79,4,4,4c0.57,0,1.13-0.12,1.64-0.35c1.36-0.71,2.13-1.73,2.73-3.55 c0.32-0.98,0.9-1.43,1.71-2.05c0.03-0.02,0.05-0.04,0.08-0.06l6.62,6.62L21.19,21.19z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M6.03,3.2C7.15,2.44,8.51,2,10,2c3.93,0,7,3.07,7,7c0,1.26-0.38,2.65-1.07,3.9c-0.02,0.04-0.05,0.08-0.08,0.13l-1.48-1.48 C14.77,10.69,15,9.8,15,9c0-2.8-2.2-5-5-5C9.08,4,8.24,4.26,7.5,4.67L6.03,3.2z M17.21,14.38l1.43,1.43C20.11,13.93,21,11.57,21,9 c0-3.04-1.23-5.79-3.22-7.78l-1.42,1.42C17.99,4.26,19,6.51,19,9C19,11.02,18.33,12.88,17.21,14.38z M10,6.5 c-0.21,0-0.4,0.03-0.59,0.08l3.01,3.01C12.47,9.4,12.5,9.21,12.5,9C12.5,7.62,11.38,6.5,10,6.5z M21.19,21.19L2.81,2.81L1.39,4.22 l2.13,2.13C3.19,7.16,3,8.05,3,9h2c0-0.36,0.05-0.71,0.12-1.05l6.61,6.61c-0.88,0.68-1.78,1.41-2.27,2.9c-0.5,1.5-1,2.01-1.71,2.38 C7.56,19.94,7.29,20,7,20c-1.1,0-2-0.9-2-2H3c0,2.21,1.79,4,4,4c0.57,0,1.13-0.12,1.64-0.35c1.36-0.71,2.13-1.73,2.73-3.55 c0.32-0.98,0.9-1.43,1.71-2.05c0.03-0.02,0.05-0.04,0.08-0.06l6.62,6.62L21.19,21.19z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_hearing_disabled = ic_hearing_disabled; \ No newline at end of file diff --git a/dist/md/ic_hearing_disabled_outline.js b/dist/md/ic_hearing_disabled_outline.js new file mode 100644 index 000000000..71eb36c74 --- /dev/null +++ b/dist/md/ic_hearing_disabled_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_hearing_disabled_outline = void 0; +var ic_hearing_disabled_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M6.03,3.2C7.15,2.44,8.51,2,10,2c3.93,0,7,3.07,7,7c0,1.26-0.38,2.65-1.07,3.9c-0.02,0.04-0.05,0.08-0.08,0.13l-1.48-1.48 C14.77,10.69,15,9.8,15,9c0-2.8-2.2-5-5-5C9.08,4,8.24,4.26,7.5,4.67L6.03,3.2z M17.21,14.38l1.43,1.43C20.11,13.93,21,11.57,21,9 c0-3.04-1.23-5.79-3.22-7.78l-1.42,1.42C17.99,4.26,19,6.51,19,9C19,11.02,18.33,12.88,17.21,14.38z M10,6.5 c-0.21,0-0.4,0.03-0.59,0.08l3.01,3.01C12.47,9.4,12.5,9.21,12.5,9C12.5,7.62,11.38,6.5,10,6.5z M21.19,21.19L2.81,2.81L1.39,4.22 l2.13,2.13C3.19,7.16,3,8.05,3,9h2c0-0.36,0.05-0.71,0.12-1.05l6.61,6.61c-0.88,0.68-1.78,1.41-2.27,2.9c-0.5,1.5-1,2.01-1.71,2.38 C7.56,19.94,7.29,20,7,20c-1.1,0-2-0.9-2-2H3c0,2.21,1.79,4,4,4c0.57,0,1.13-0.12,1.64-0.35c1.36-0.71,2.13-1.73,2.73-3.55 c0.32-0.98,0.9-1.43,1.71-2.05c0.03-0.02,0.05-0.04,0.08-0.06l6.62,6.62L21.19,21.19z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M6.03,3.2C7.15,2.44,8.51,2,10,2c3.93,0,7,3.07,7,7c0,1.26-0.38,2.65-1.07,3.9c-0.02,0.04-0.05,0.08-0.08,0.13l-1.48-1.48 C14.77,10.69,15,9.8,15,9c0-2.8-2.2-5-5-5C9.08,4,8.24,4.26,7.5,4.67L6.03,3.2z M17.21,14.38l1.43,1.43C20.11,13.93,21,11.57,21,9 c0-3.04-1.23-5.79-3.22-7.78l-1.42,1.42C17.99,4.26,19,6.51,19,9C19,11.02,18.33,12.88,17.21,14.38z M10,6.5 c-0.21,0-0.4,0.03-0.59,0.08l3.01,3.01C12.47,9.4,12.5,9.21,12.5,9C12.5,7.62,11.38,6.5,10,6.5z M21.19,21.19L2.81,2.81L1.39,4.22 l2.13,2.13C3.19,7.16,3,8.05,3,9h2c0-0.36,0.05-0.71,0.12-1.05l6.61,6.61c-0.88,0.68-1.78,1.41-2.27,2.9c-0.5,1.5-1,2.01-1.71,2.38 C7.56,19.94,7.29,20,7,20c-1.1,0-2-0.9-2-2H3c0,2.21,1.79,4,4,4c0.57,0,1.13-0.12,1.64-0.35c1.36-0.71,2.13-1.73,2.73-3.55 c0.32-0.98,0.9-1.43,1.71-2.05c0.03-0.02,0.05-0.04,0.08-0.06l6.62,6.62L21.19,21.19z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_hearing_disabled_outline = ic_hearing_disabled_outline; \ No newline at end of file diff --git a/dist/md/ic_hearing_disabled_twotone.js b/dist/md/ic_hearing_disabled_twotone.js new file mode 100644 index 000000000..6c5fc445b --- /dev/null +++ b/dist/md/ic_hearing_disabled_twotone.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_hearing_disabled_twotone = void 0; +var ic_hearing_disabled_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M6.03,3.2C7.15,2.44,8.51,2,10,2c3.93,0,7,3.07,7,7c0,1.26-0.38,2.65-1.07,3.9c-0.02,0.04-0.05,0.08-0.08,0.13l-1.48-1.48 C14.77,10.69,15,9.8,15,9c0-2.8-2.2-5-5-5C9.08,4,8.24,4.26,7.5,4.67L6.03,3.2z M17.21,14.38l1.43,1.43C20.11,13.93,21,11.57,21,9 c0-3.04-1.23-5.79-3.22-7.78l-1.42,1.42C17.99,4.26,19,6.51,19,9C19,11.02,18.33,12.88,17.21,14.38z M10,6.5 c-0.21,0-0.4,0.03-0.59,0.08l3.01,3.01C12.47,9.4,12.5,9.21,12.5,9C12.5,7.62,11.38,6.5,10,6.5z M21.19,21.19L2.81,2.81L1.39,4.22 l2.13,2.13C3.19,7.16,3,8.05,3,9h2c0-0.36,0.05-0.71,0.12-1.05l6.61,6.61c-0.88,0.68-1.78,1.41-2.27,2.9c-0.5,1.5-1,2.01-1.71,2.38 C7.56,19.94,7.29,20,7,20c-1.1,0-2-0.9-2-2H3c0,2.21,1.79,4,4,4c0.57,0,1.13-0.12,1.64-0.35c1.36-0.71,2.13-1.73,2.73-3.55 c0.32-0.98,0.9-1.43,1.71-2.05c0.03-0.02,0.05-0.04,0.08-0.06l6.62,6.62L21.19,21.19z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M6.03,3.2C7.15,2.44,8.51,2,10,2c3.93,0,7,3.07,7,7c0,1.26-0.38,2.65-1.07,3.9c-0.02,0.04-0.05,0.08-0.08,0.13l-1.48-1.48 C14.77,10.69,15,9.8,15,9c0-2.8-2.2-5-5-5C9.08,4,8.24,4.26,7.5,4.67L6.03,3.2z M17.21,14.38l1.43,1.43C20.11,13.93,21,11.57,21,9 c0-3.04-1.23-5.79-3.22-7.78l-1.42,1.42C17.99,4.26,19,6.51,19,9C19,11.02,18.33,12.88,17.21,14.38z M10,6.5 c-0.21,0-0.4,0.03-0.59,0.08l3.01,3.01C12.47,9.4,12.5,9.21,12.5,9C12.5,7.62,11.38,6.5,10,6.5z M21.19,21.19L2.81,2.81L1.39,4.22 l2.13,2.13C3.19,7.16,3,8.05,3,9h2c0-0.36,0.05-0.71,0.12-1.05l6.61,6.61c-0.88,0.68-1.78,1.41-2.27,2.9c-0.5,1.5-1,2.01-1.71,2.38 C7.56,19.94,7.29,20,7,20c-1.1,0-2-0.9-2-2H3c0,2.21,1.79,4,4,4c0.57,0,1.13-0.12,1.64-0.35c1.36-0.71,2.13-1.73,2.73-3.55 c0.32-0.98,0.9-1.43,1.71-2.05c0.03-0.02,0.05-0.04,0.08-0.06l6.62,6.62L21.19,21.19z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_hearing_disabled_twotone = ic_hearing_disabled_twotone; \ No newline at end of file diff --git a/dist/md/ic_hearing_outline.js b/dist/md/ic_hearing_outline.js new file mode 100644 index 000000000..6e7467958 --- /dev/null +++ b/dist/md/ic_hearing_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_hearing_outline = void 0; +var ic_hearing_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 20c-.29 0-.56-.06-.76-.15-.71-.37-1.21-.88-1.71-2.38-.51-1.56-1.47-2.29-2.39-3-.79-.61-1.61-1.24-2.32-2.53C9.29 10.98 9 9.93 9 9c0-2.8 2.2-5 5-5s5 2.2 5 5h2c0-3.93-3.07-7-7-7S7 5.07 7 9c0 1.26.38 2.65 1.07 3.9.91 1.65 1.98 2.48 2.85 3.15.81.62 1.39 1.07 1.71 2.05.6 1.82 1.37 2.84 2.73 3.55.51.23 1.07.35 1.64.35 2.21 0 4-1.79 4-4h-2c0 1.1-.9 2-2 2zM7.64 2.64L6.22 1.22C4.23 3.21 3 5.96 3 9s1.23 5.79 3.22 7.78l1.41-1.41C6.01 13.74 5 11.49 5 9s1.01-4.74 2.64-6.36zM11.5 9c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5-1.12-2.5-2.5-2.5-2.5 1.12-2.5 2.5z" + }, + "children": [] + }] +}; +exports.ic_hearing_outline = ic_hearing_outline; \ No newline at end of file diff --git a/dist/md/ic_hearing_twotone.js b/dist/md/ic_hearing_twotone.js new file mode 100644 index 000000000..92b0fb46b --- /dev/null +++ b/dist/md/ic_hearing_twotone.js @@ -0,0 +1,38 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_hearing_twotone = void 0; +var ic_hearing_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7.64 2.64L6.22 1.22C4.23 3.21 3 5.96 3 9s1.23 5.79 3.22 7.78l1.41-1.41C6.01 13.74 5 11.49 5 9s1.01-4.74 2.64-6.36z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "14", + "cy": "9", + "r": "2.5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 20c-.29 0-.56-.06-.76-.15-.71-.37-1.21-.88-1.71-2.38-.51-1.56-1.47-2.29-2.39-3-.79-.61-1.61-1.24-2.32-2.53C9.29 10.98 9 9.93 9 9c0-2.8 2.2-5 5-5s5 2.2 5 5h2c0-3.93-3.07-7-7-7S7 5.07 7 9c0 1.26.38 2.65 1.07 3.9.91 1.65 1.98 2.48 2.85 3.15.81.62 1.39 1.07 1.71 2.05.6 1.82 1.37 2.84 2.73 3.55.51.23 1.07.35 1.64.35 2.21 0 4-1.79 4-4h-2c0 1.1-.9 2-2 2z" + }, + "children": [] + }] +}; +exports.ic_hearing_twotone = ic_hearing_twotone; \ No newline at end of file diff --git a/dist/md/ic_height.js b/dist/md/ic_height.js new file mode 100644 index 000000000..540c2602e --- /dev/null +++ b/dist/md/ic_height.js @@ -0,0 +1,55 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_height = void 0; +var ic_height = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "13,6.99 16,6.99 12,3 8,6.99 11,6.99 11,17.01 8,17.01 12,21 16,17.01 13,17.01" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "13,6.99 16,6.99 12,3 8,6.99 11,6.99 11,17.01 8,17.01 12,21 16,17.01 13,17.01" + }, + "children": [] + }] + }] + }] +}; +exports.ic_height = ic_height; \ No newline at end of file diff --git a/dist/md/ic_height_outline.js b/dist/md/ic_height_outline.js new file mode 100644 index 000000000..074b27951 --- /dev/null +++ b/dist/md/ic_height_outline.js @@ -0,0 +1,55 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_height_outline = void 0; +var ic_height_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "13,6.99 16,6.99 12,3 8,6.99 11,6.99 11,17.01 8,17.01 12,21 16,17.01 13,17.01" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "13,6.99 16,6.99 12,3 8,6.99 11,6.99 11,17.01 8,17.01 12,21 16,17.01 13,17.01" + }, + "children": [] + }] + }] + }] +}; +exports.ic_height_outline = ic_height_outline; \ No newline at end of file diff --git a/dist/md/ic_height_twotone.js b/dist/md/ic_height_twotone.js new file mode 100644 index 000000000..f7627e9bf --- /dev/null +++ b/dist/md/ic_height_twotone.js @@ -0,0 +1,55 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_height_twotone = void 0; +var ic_height_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "13,6.99 16,6.99 12,3 8,6.99 11,6.99 11,17.01 8,17.01 12,21 16,17.01 13,17.01" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "13,6.99 16,6.99 12,3 8,6.99 11,6.99 11,17.01 8,17.01 12,21 16,17.01 13,17.01" + }, + "children": [] + }] + }] + }] +}; +exports.ic_height_twotone = ic_height_twotone; \ No newline at end of file diff --git a/dist/md/ic_help.js b/dist/md/ic_help.js new file mode 100644 index 000000000..bdb3e18a8 --- /dev/null +++ b/dist/md/ic_help.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_help = void 0; +var ic_help = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 17h-2v-2h2v2zm2.07-7.75l-.9.92C13.45 12.9 13 13.5 13 15h-2v-.5c0-1.1.45-2.1 1.17-2.83l1.24-1.26c.37-.36.59-.86.59-1.41 0-1.1-.9-2-2-2s-2 .9-2 2H8c0-2.21 1.79-4 4-4s4 1.79 4 4c0 .88-.36 1.68-.93 2.25z" + }, + "children": [] + }] +}; +exports.ic_help = ic_help; \ No newline at end of file diff --git a/dist/md/ic_help_center.js b/dist/md/ic_help_center.js new file mode 100644 index 000000000..e30ca91a1 --- /dev/null +++ b/dist/md/ic_help_center.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_help_center = void 0; +var ic_help_center = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M12.01,18 c-0.7,0-1.26-0.56-1.26-1.26c0-0.71,0.56-1.25,1.26-1.25c0.71,0,1.25,0.54,1.25,1.25C13.25,17.43,12.72,18,12.01,18z M15.02,10.6 c-0.76,1.11-1.48,1.46-1.87,2.17c-0.16,0.29-0.22,0.48-0.22,1.41h-1.82c0-0.49-0.08-1.29,0.31-1.98c0.49-0.87,1.42-1.39,1.96-2.16 c0.57-0.81,0.25-2.33-1.37-2.33c-1.06,0-1.58,0.8-1.8,1.48L8.56,8.49C9.01,7.15,10.22,6,11.99,6c1.48,0,2.49,0.67,3.01,1.52 C15.44,8.24,15.7,9.59,15.02,10.6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M12.01,18 c-0.7,0-1.26-0.56-1.26-1.26c0-0.71,0.56-1.25,1.26-1.25c0.71,0,1.25,0.54,1.25,1.25C13.25,17.43,12.72,18,12.01,18z M15.02,10.6 c-0.76,1.11-1.48,1.46-1.87,2.17c-0.16,0.29-0.22,0.48-0.22,1.41h-1.82c0-0.49-0.08-1.29,0.31-1.98c0.49-0.87,1.42-1.39,1.96-2.16 c0.57-0.81,0.25-2.33-1.37-2.33c-1.06,0-1.58,0.8-1.8,1.48L8.56,8.49C9.01,7.15,10.22,6,11.99,6c1.48,0,2.49,0.67,3.01,1.52 C15.44,8.24,15.7,9.59,15.02,10.6z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_help_center = ic_help_center; \ No newline at end of file diff --git a/dist/md/ic_help_center_outline.js b/dist/md/ic_help_center_outline.js new file mode 100644 index 000000000..74d3bd282 --- /dev/null +++ b/dist/md/ic_help_center_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_help_center_outline = void 0; +var ic_help_center_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M13.25,16.74c0,0.69-0.53,1.26-1.25,1.26c-0.7,0-1.26-0.56-1.26-1.26c0-0.71,0.56-1.25,1.26-1.25 C12.71,15.49,13.25,16.04,13.25,16.74z M11.99,6c-1.77,0-2.98,1.15-3.43,2.49l1.64,0.69c0.22-0.67,0.74-1.48,1.8-1.48 c1.62,0,1.94,1.52,1.37,2.33c-0.54,0.77-1.47,1.29-1.96,2.16c-0.39,0.69-0.31,1.49-0.31,1.98h1.82c0-0.93,0.07-1.12,0.22-1.41 c0.39-0.72,1.11-1.06,1.87-2.17c0.68-1,0.42-2.36-0.02-3.08C14.48,6.67,13.47,6,11.99,6z M19,5H5v14h14V5 M19,3c1.1,0,2,0.9,2,2v14 c0,1.1-0.9,2-2,2H5c-1.1,0-2-0.9-2-2V5c0-1.1,0.9-2,2-2H19L19,3z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M13.25,16.74c0,0.69-0.53,1.26-1.25,1.26c-0.7,0-1.26-0.56-1.26-1.26c0-0.71,0.56-1.25,1.26-1.25 C12.71,15.49,13.25,16.04,13.25,16.74z M11.99,6c-1.77,0-2.98,1.15-3.43,2.49l1.64,0.69c0.22-0.67,0.74-1.48,1.8-1.48 c1.62,0,1.94,1.52,1.37,2.33c-0.54,0.77-1.47,1.29-1.96,2.16c-0.39,0.69-0.31,1.49-0.31,1.98h1.82c0-0.93,0.07-1.12,0.22-1.41 c0.39-0.72,1.11-1.06,1.87-2.17c0.68-1,0.42-2.36-0.02-3.08C14.48,6.67,13.47,6,11.99,6z M19,5H5v14h14V5 M19,3c1.1,0,2,0.9,2,2v14 c0,1.1-0.9,2-2,2H5c-1.1,0-2-0.9-2-2V5c0-1.1,0.9-2,2-2H19L19,3z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_help_center_outline = ic_help_center_outline; \ No newline at end of file diff --git a/dist/md/ic_help_center_twotone.js b/dist/md/ic_help_center_twotone.js new file mode 100644 index 000000000..309c2f3e9 --- /dev/null +++ b/dist/md/ic_help_center_twotone.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_help_center_twotone = void 0; +var ic_help_center_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M5,5v14h14V5H5z M12.01,18c-0.7,0-1.26-0.56-1.26-1.26c0-0.71,0.56-1.25,1.26-1.25 c0.71,0,1.25,0.54,1.25,1.25C13.25,17.43,12.72,18,12.01,18z M15.02,10.6c-0.76,1.11-1.48,1.46-1.87,2.17 c-0.16,0.29-0.22,0.48-0.22,1.41h-1.82c0-0.49-0.08-1.29,0.31-1.98c0.49-0.87,1.42-1.39,1.96-2.16c0.57-0.81,0.25-2.33-1.37-2.33 c-1.06,0-1.58,0.8-1.8,1.48L8.56,8.49C9.01,7.15,10.22,6,11.99,6c1.48,0,2.49,0.67,3.01,1.52C15.44,8.24,15.7,9.59,15.02,10.6z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M5,5v14h14V5H5z M12.01,18c-0.7,0-1.26-0.56-1.26-1.26c0-0.71,0.56-1.25,1.26-1.25 c0.71,0,1.25,0.54,1.25,1.25C13.25,17.43,12.72,18,12.01,18z M15.02,10.6c-0.76,1.11-1.48,1.46-1.87,2.17 c-0.16,0.29-0.22,0.48-0.22,1.41h-1.82c0-0.49-0.08-1.29,0.31-1.98c0.49-0.87,1.42-1.39,1.96-2.16c0.57-0.81,0.25-2.33-1.37-2.33 c-1.06,0-1.58,0.8-1.8,1.48L8.56,8.49C9.01,7.15,10.22,6,11.99,6c1.48,0,2.49,0.67,3.01,1.52C15.44,8.24,15.7,9.59,15.02,10.6z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M13.25,16.74c0,0.69-0.53,1.26-1.25,1.26c-0.7,0-1.26-0.56-1.26-1.26c0-0.71,0.56-1.25,1.26-1.25 C12.71,15.49,13.25,16.04,13.25,16.74z M11.99,6c-1.77,0-2.98,1.15-3.43,2.49l1.64,0.69c0.22-0.67,0.74-1.48,1.8-1.48 c1.62,0,1.94,1.52,1.37,2.33c-0.54,0.77-1.47,1.29-1.96,2.16c-0.39,0.69-0.31,1.49-0.31,1.98h1.82c0-0.93,0.07-1.12,0.22-1.41 c0.39-0.72,1.11-1.06,1.87-2.17c0.68-1,0.42-2.36-0.02-3.08C14.48,6.67,13.47,6,11.99,6z M19,5H5v14h14V5 M19,3c1.1,0,2,0.9,2,2v14 c0,1.1-0.9,2-2,2H5c-1.1,0-2-0.9-2-2V5c0-1.1,0.9-2,2-2H19L19,3z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M13.25,16.74c0,0.69-0.53,1.26-1.25,1.26c-0.7,0-1.26-0.56-1.26-1.26c0-0.71,0.56-1.25,1.26-1.25 C12.71,15.49,13.25,16.04,13.25,16.74z M11.99,6c-1.77,0-2.98,1.15-3.43,2.49l1.64,0.69c0.22-0.67,0.74-1.48,1.8-1.48 c1.62,0,1.94,1.52,1.37,2.33c-0.54,0.77-1.47,1.29-1.96,2.16c-0.39,0.69-0.31,1.49-0.31,1.98h1.82c0-0.93,0.07-1.12,0.22-1.41 c0.39-0.72,1.11-1.06,1.87-2.17c0.68-1,0.42-2.36-0.02-3.08C14.48,6.67,13.47,6,11.99,6z M19,5H5v14h14V5 M19,3c1.1,0,2,0.9,2,2v14 c0,1.1-0.9,2-2,2H5c-1.1,0-2-0.9-2-2V5c0-1.1,0.9-2,2-2H19L19,3z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_help_center_twotone = ic_help_center_twotone; \ No newline at end of file diff --git a/dist/md/ic_help_outline.js b/dist/md/ic_help_outline.js new file mode 100644 index 000000000..017dcd913 --- /dev/null +++ b/dist/md/ic_help_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_help_outline = void 0; +var ic_help_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 17h-2v-2h2v2zm2.07-7.75l-.9.92C13.45 12.9 13 13.5 13 15h-2v-.5c0-1.1.45-2.1 1.17-2.83l1.24-1.26c.37-.36.59-.86.59-1.41 0-1.1-.9-2-2-2s-2 .9-2 2H8c0-2.21 1.79-4 4-4s4 1.79 4 4c0 .88-.36 1.68-.93 2.25z" + }, + "children": [] + }] +}; +exports.ic_help_outline = ic_help_outline; \ No newline at end of file diff --git a/dist/md/ic_help_outline_outline.js b/dist/md/ic_help_outline_outline.js new file mode 100644 index 000000000..0a4d7b8d7 --- /dev/null +++ b/dist/md/ic_help_outline_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_help_outline_outline = void 0; +var ic_help_outline_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 18h2v-2h-2v2zm1-16C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-14c-2.21 0-4 1.79-4 4h2c0-1.1.9-2 2-2s2 .9 2 2c0 2-3 1.75-3 5h2c0-2.25 3-2.5 3-5 0-2.21-1.79-4-4-4z" + }, + "children": [] + }] +}; +exports.ic_help_outline_outline = ic_help_outline_outline; \ No newline at end of file diff --git a/dist/md/ic_help_outline_twotone.js b/dist/md/ic_help_outline_twotone.js new file mode 100644 index 000000000..202465329 --- /dev/null +++ b/dist/md/ic_help_outline_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_help_outline_twotone = void 0; +var ic_help_outline_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 16h2v2h-2zm1-14C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-14c-2.21 0-4 1.79-4 4h2c0-1.1.9-2 2-2s2 .9 2 2c0 2-3 1.75-3 5h2c0-2.25 3-2.5 3-5 0-2.21-1.79-4-4-4z" + }, + "children": [] + }] +}; +exports.ic_help_outline_twotone = ic_help_outline_twotone; \ No newline at end of file diff --git a/dist/md/ic_help_twotone.js b/dist/md/ic_help_twotone.js new file mode 100644 index 000000000..d857194f9 --- /dev/null +++ b/dist/md/ic_help_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_help_twotone = void 0; +var ic_help_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm1 14h-2v-2h2v2zm0-3h-2c0-3.25 3-3 3-5 0-1.1-.9-2-2-2s-2 .9-2 2H8c0-2.21 1.79-4 4-4s4 1.79 4 4c0 2.5-3 2.75-3 5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 16h2v2h-2zm1-14C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-14c-2.21 0-4 1.79-4 4h2c0-1.1.9-2 2-2s2 .9 2 2c0 2-3 1.75-3 5h2c0-2.25 3-2.5 3-5 0-2.21-1.79-4-4-4z" + }, + "children": [] + }] +}; +exports.ic_help_twotone = ic_help_twotone; \ No newline at end of file diff --git a/dist/md/ic_high_quality.js b/dist/md/ic_high_quality.js new file mode 100644 index 000000000..cb1fae914 --- /dev/null +++ b/dist/md/ic_high_quality.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_high_quality = void 0; +var ic_high_quality = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-8 11H9.5v-2h-2v2H6V9h1.5v2.5h2V9H11v6zm7-1c0 .55-.45 1-1 1h-.75v1.5h-1.5V15H14c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v4zm-3.5-.5h2v-3h-2v3z" + }, + "children": [] + }] +}; +exports.ic_high_quality = ic_high_quality; \ No newline at end of file diff --git a/dist/md/ic_high_quality_outline.js b/dist/md/ic_high_quality_outline.js new file mode 100644 index 000000000..960397d6e --- /dev/null +++ b/dist/md/ic_high_quality_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_high_quality_outline = void 0; +var ic_high_quality_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H5V6h14v12zM7.5 13h2v2H11V9H9.5v2.5h-2V9H6v6h1.5zm6.5 2h.75v1.5h1.5V15H17c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.5-4.5h2v3h-2v-3z" + }, + "children": [] + }] +}; +exports.ic_high_quality_outline = ic_high_quality_outline; \ No newline at end of file diff --git a/dist/md/ic_high_quality_twotone.js b/dist/md/ic_high_quality_twotone.js new file mode 100644 index 000000000..085093088 --- /dev/null +++ b/dist/md/ic_high_quality_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_high_quality_twotone = void 0; +var ic_high_quality_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 6H5v12h14V6zm-8 9H9.5v-2h-2v2H6V9h1.5v2.5h2V9H11v6zm7-1c0 .55-.45 1-1 1h-.75v1.5h-1.5V15H14c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v4zm-3.5-3.5h2v3h-2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 6v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2H5c-1.11 0-2 .9-2 2zm2 0h14v12H5V6zm4.5 5.5h-2V9H6v6h1.5v-2h2v2H11V9H9.5zM17 9h-3c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h.75v1.5h1.5V15H17c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1zm-.5 4.5h-2v-3h2v3z" + }, + "children": [] + }] +}; +exports.ic_high_quality_twotone = ic_high_quality_twotone; \ No newline at end of file diff --git a/dist/md/ic_highlight.js b/dist/md/ic_highlight.js new file mode 100644 index 000000000..b0334829e --- /dev/null +++ b/dist/md/ic_highlight.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_highlight = void 0; +var ic_highlight = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M6,14l3,3v5h6v-5l3-3V9H6V14z M11,2h2v3h-2V2z M3.5,5.88l1.41-1.41l2.12,2.12L5.62,8L3.5,5.88z M16.96,6.59l2.12-2.12 l1.41,1.41L18.38,8L16.96,6.59z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M6,14l3,3v5h6v-5l3-3V9H6V14z M11,2h2v3h-2V2z M3.5,5.88l1.41-1.41l2.12,2.12L5.62,8L3.5,5.88z M16.96,6.59l2.12-2.12 l1.41,1.41L18.38,8L16.96,6.59z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_highlight = ic_highlight; \ No newline at end of file diff --git a/dist/md/ic_highlight_alt.js b/dist/md/ic_highlight_alt.js new file mode 100644 index 000000000..fc0daae1b --- /dev/null +++ b/dist/md/ic_highlight_alt.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_highlight_alt = void 0; +var ic_highlight_alt = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 5h-2V3h2v2zm-2 16h2v-2.59L19.59 21 21 19.59 18.41 17H21v-2h-6v6zm4-12h2V7h-2v2zm0 4h2v-2h-2v2zm-8 8h2v-2h-2v2zM7 5h2V3H7v2zM3 17h2v-2H3v2zm2 4v-2H3c0 1.1.9 2 2 2zM19 3v2h2c0-1.1-.9-2-2-2zm-8 2h2V3h-2v2zM3 9h2V7H3v2zm4 12h2v-2H7v2zm-4-8h2v-2H3v2zm0-8h2V3c-1.1 0-2 .9-2 2z" + }, + "children": [] + }] +}; +exports.ic_highlight_alt = ic_highlight_alt; \ No newline at end of file diff --git a/dist/md/ic_highlight_alt_outline.js b/dist/md/ic_highlight_alt_outline.js new file mode 100644 index 000000000..467428086 --- /dev/null +++ b/dist/md/ic_highlight_alt_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_highlight_alt_outline = void 0; +var ic_highlight_alt_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M17,5h-2V3h2V5z M15,15v6l2.29-2.29L19.59,21L21,19.59l-2.29-2.29L21,15H15z M19,9h2V7h-2V9z M19,13h2v-2h-2V13z M11,21h2 v-2h-2V21z M7,5h2V3H7V5z M3,17h2v-2H3V17z M5,21v-2H3C3,20.1,3.9,21,5,21z M19,3v2h2C21,3.9,20.1,3,19,3z M11,5h2V3h-2V5z M3,9h2 V7H3V9z M7,21h2v-2H7V21z M3,13h2v-2H3V13z M3,5h2V3C3.9,3,3,3.9,3,5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,5h-2V3h2V5z M15,15v6l2.29-2.29L19.59,21L21,19.59l-2.29-2.29L21,15H15z M19,9h2V7h-2V9z M19,13h2v-2h-2V13z M11,21h2 v-2h-2V21z M7,5h2V3H7V5z M3,17h2v-2H3V17z M5,21v-2H3C3,20.1,3.9,21,5,21z M19,3v2h2C21,3.9,20.1,3,19,3z M11,5h2V3h-2V5z M3,9h2 V7H3V9z M7,21h2v-2H7V21z M3,13h2v-2H3V13z M3,5h2V3C3.9,3,3,3.9,3,5z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_highlight_alt_outline = ic_highlight_alt_outline; \ No newline at end of file diff --git a/dist/md/ic_highlight_alt_twotone.js b/dist/md/ic_highlight_alt_twotone.js new file mode 100644 index 000000000..7bf4eae6b --- /dev/null +++ b/dist/md/ic_highlight_alt_twotone.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_highlight_alt_twotone = void 0; +var ic_highlight_alt_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M17,5h-2V3h2V5z M15,15v6l2.29-2.29L19.59,21L21,19.59l-2.29-2.29L21,15H15z M19,9h2V7h-2V9z M19,13h2v-2h-2V13z M11,21h2 v-2h-2V21z M7,5h2V3H7V5z M3,17h2v-2H3V17z M5,21v-2H3C3,20.1,3.9,21,5,21z M19,3v2h2C21,3.9,20.1,3,19,3z M11,5h2V3h-2V5z M3,9h2 V7H3V9z M7,21h2v-2H7V21z M3,13h2v-2H3V13z M3,5h2V3C3.9,3,3,3.9,3,5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,5h-2V3h2V5z M15,15v6l2.29-2.29L19.59,21L21,19.59l-2.29-2.29L21,15H15z M19,9h2V7h-2V9z M19,13h2v-2h-2V13z M11,21h2 v-2h-2V21z M7,5h2V3H7V5z M3,17h2v-2H3V17z M5,21v-2H3C3,20.1,3.9,21,5,21z M19,3v2h2C21,3.9,20.1,3,19,3z M11,5h2V3h-2V5z M3,9h2 V7H3V9z M7,21h2v-2H7V21z M3,13h2v-2H3V13z M3,5h2V3C3.9,3,3,3.9,3,5z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_highlight_alt_twotone = ic_highlight_alt_twotone; \ No newline at end of file diff --git a/dist/md/ic_highlight_off.js b/dist/md/ic_highlight_off.js new file mode 100644 index 000000000..d876b9a22 --- /dev/null +++ b/dist/md/ic_highlight_off.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_highlight_off = void 0; +var ic_highlight_off = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14.59 8L12 10.59 9.41 8 8 9.41 10.59 12 8 14.59 9.41 16 12 13.41 14.59 16 16 14.59 13.41 12 16 9.41 14.59 8zM12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" + }, + "children": [] + }] +}; +exports.ic_highlight_off = ic_highlight_off; \ No newline at end of file diff --git a/dist/md/ic_highlight_off_outline.js b/dist/md/ic_highlight_off_outline.js new file mode 100644 index 000000000..d567bf484 --- /dev/null +++ b/dist/md/ic_highlight_off_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_highlight_off_outline = void 0; +var ic_highlight_off_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14.59 8L12 10.59 9.41 8 8 9.41 10.59 12 8 14.59 9.41 16 12 13.41 14.59 16 16 14.59 13.41 12 16 9.41 14.59 8zM12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" + }, + "children": [] + }] +}; +exports.ic_highlight_off_outline = ic_highlight_off_outline; \ No newline at end of file diff --git a/dist/md/ic_highlight_off_twotone.js b/dist/md/ic_highlight_off_twotone.js new file mode 100644 index 000000000..b463b7fdd --- /dev/null +++ b/dist/md/ic_highlight_off_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_highlight_off_twotone = void 0; +var ic_highlight_off_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm4 10.59L14.59 16 12 13.41 9.41 16 8 14.59 10.59 12 8 9.41 9.41 8 12 10.59 14.59 8 16 9.41 13.41 12 16 14.59z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14.59 8L12 10.59 9.41 8 8 9.41 10.59 12 8 14.59 9.41 16 12 13.41 14.59 16 16 14.59 13.41 12 16 9.41zM12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" + }, + "children": [] + }] +}; +exports.ic_highlight_off_twotone = ic_highlight_off_twotone; \ No newline at end of file diff --git a/dist/md/ic_highlight_outline.js b/dist/md/ic_highlight_outline.js new file mode 100644 index 000000000..60a9a9e73 --- /dev/null +++ b/dist/md/ic_highlight_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_highlight_outline = void 0; +var ic_highlight_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 14l3 3v5h6v-5l3-3V9H6v5zm2-3h8v2.17l-3 3V20h-2v-3.83l-3-3V11zm3-9h2v3h-2zM3.502 5.874L4.916 4.46l2.122 2.12-1.414 1.415zm13.458.708l2.123-2.12 1.413 1.416-2.123 2.12z" + }, + "children": [] + }] +}; +exports.ic_highlight_outline = ic_highlight_outline; \ No newline at end of file diff --git a/dist/md/ic_highlight_twotone.js b/dist/md/ic_highlight_twotone.js new file mode 100644 index 000000000..be4ad0983 --- /dev/null +++ b/dist/md/ic_highlight_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_highlight_twotone = void 0; +var ic_highlight_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 20h2v-3.83l3-3V11H8v2.17l3 3z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 14l3 3v5h6v-5l3-3V9H6v5zm2-3h8v2.17l-3 3V20h-2v-3.83l-3-3V11zm3-9h2v3h-2zM4.916 4.464l2.12 2.122L5.62 8 3.5 5.877zM18.372 8l-1.414-1.414 2.12-2.12 1.415 1.413z" + }, + "children": [] + }] +}; +exports.ic_highlight_twotone = ic_highlight_twotone; \ No newline at end of file diff --git a/dist/md/ic_history.js b/dist/md/ic_history.js new file mode 100644 index 000000000..46c333b19 --- /dev/null +++ b/dist/md/ic_history.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_history = void 0; +var ic_history = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 3c-4.97 0-9 4.03-9 9H1l3.89 3.89.07.14L9 12H6c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.93 0-3.68-.79-4.94-2.06l-1.42 1.42C8.27 19.99 10.51 21 13 21c4.97 0 9-4.03 9-9s-4.03-9-9-9zm-1 5v5l4.28 2.54.72-1.21-3.5-2.08V8H12z" + }, + "children": [] + }] +}; +exports.ic_history = ic_history; \ No newline at end of file diff --git a/dist/md/ic_history_edu.js b/dist/md/ic_history_edu.js new file mode 100644 index 000000000..bfc23a6df --- /dev/null +++ b/dist/md/ic_history_edu.js @@ -0,0 +1,55 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_history_edu = void 0; +var ic_history_edu = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M9,4v1.38c-0.83-0.33-1.72-0.5-2.61-0.5c-1.79,0-3.58,0.68-4.95,2.05l3.33,3.33h1.11v1.11c0.86,0.86,1.98,1.31,3.11,1.36 V15H6v3c0,1.1,0.9,2,2,2h10c1.66,0,3-1.34,3-3V4H9z M7.89,10.41V8.26H5.61L4.57,7.22C5.14,7,5.76,6.88,6.39,6.88 c1.34,0,2.59,0.52,3.54,1.46l1.41,1.41l-0.2,0.2c-0.51,0.51-1.19,0.8-1.92,0.8C8.75,10.75,8.29,10.63,7.89,10.41z M19,17 c0,0.55-0.45,1-1,1s-1-0.45-1-1v-2h-6v-2.59c0.57-0.23,1.1-0.57,1.56-1.03l0.2-0.2L15.59,14H17v-1.41l-6-5.97V6h8V17z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M9,4v1.38c-0.83-0.33-1.72-0.5-2.61-0.5c-1.79,0-3.58,0.68-4.95,2.05l3.33,3.33h1.11v1.11c0.86,0.86,1.98,1.31,3.11,1.36 V15H6v3c0,1.1,0.9,2,2,2h10c1.66,0,3-1.34,3-3V4H9z M7.89,10.41V8.26H5.61L4.57,7.22C5.14,7,5.76,6.88,6.39,6.88 c1.34,0,2.59,0.52,3.54,1.46l1.41,1.41l-0.2,0.2c-0.51,0.51-1.19,0.8-1.92,0.8C8.75,10.75,8.29,10.63,7.89,10.41z M19,17 c0,0.55-0.45,1-1,1s-1-0.45-1-1v-2h-6v-2.59c0.57-0.23,1.1-0.57,1.56-1.03l0.2-0.2L15.59,14H17v-1.41l-6-5.97V6h8V17z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_history_edu = ic_history_edu; \ No newline at end of file diff --git a/dist/md/ic_history_edu_outline.js b/dist/md/ic_history_edu_outline.js new file mode 100644 index 000000000..22d3ac3aa --- /dev/null +++ b/dist/md/ic_history_edu_outline.js @@ -0,0 +1,55 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_history_edu_outline = void 0; +var ic_history_edu_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M9,4v1.38c-0.83-0.33-1.72-0.5-2.61-0.5c-1.79,0-3.58,0.68-4.95,2.05l3.33,3.33h1.11v1.11c0.86,0.86,1.98,1.31,3.11,1.36 V15H6v3c0,1.1,0.9,2,2,2h10c1.66,0,3-1.34,3-3V4H9z M7.89,10.41V8.26H5.61L4.57,7.22C5.14,7,5.76,6.88,6.39,6.88 c1.34,0,2.59,0.52,3.54,1.46l1.41,1.41l-0.2,0.2c-0.51,0.51-1.19,0.8-1.92,0.8C8.75,10.75,8.29,10.63,7.89,10.41z M19,17 c0,0.55-0.45,1-1,1s-1-0.45-1-1v-2h-6v-2.59c0.57-0.23,1.1-0.57,1.56-1.03l0.2-0.2L15.59,14H17v-1.41l-6-5.97V6h8V17z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M9,4v1.38c-0.83-0.33-1.72-0.5-2.61-0.5c-1.79,0-3.58,0.68-4.95,2.05l3.33,3.33h1.11v1.11c0.86,0.86,1.98,1.31,3.11,1.36 V15H6v3c0,1.1,0.9,2,2,2h10c1.66,0,3-1.34,3-3V4H9z M7.89,10.41V8.26H5.61L4.57,7.22C5.14,7,5.76,6.88,6.39,6.88 c1.34,0,2.59,0.52,3.54,1.46l1.41,1.41l-0.2,0.2c-0.51,0.51-1.19,0.8-1.92,0.8C8.75,10.75,8.29,10.63,7.89,10.41z M19,17 c0,0.55-0.45,1-1,1s-1-0.45-1-1v-2h-6v-2.59c0.57-0.23,1.1-0.57,1.56-1.03l0.2-0.2L15.59,14H17v-1.41l-6-5.97V6h8V17z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_history_edu_outline = ic_history_edu_outline; \ No newline at end of file diff --git a/dist/md/ic_history_edu_twotone.js b/dist/md/ic_history_edu_twotone.js new file mode 100644 index 000000000..04911f25e --- /dev/null +++ b/dist/md/ic_history_edu_twotone.js @@ -0,0 +1,111 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_history_edu_twotone = void 0; +var ic_history_edu_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": { + "opacity": ".3" + }, + "children": [{ + "name": "g", + "attribs": { + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M11.34,9.76L9.93,8.34C8.98,7.4,7.73,6.88,6.39,6.88C5.76,6.88,5.14,7,4.57,7.22l1.04,1.04h2.28v2.14 c0.4,0.23,0.86,0.35,1.33,0.35c0.73,0,1.41-0.28,1.92-0.8L11.34,9.76z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M11.34,9.76L9.93,8.34C8.98,7.4,7.73,6.88,6.39,6.88C5.76,6.88,5.14,7,4.57,7.22l1.04,1.04h2.28v2.14 c0.4,0.23,0.86,0.35,1.33,0.35c0.73,0,1.41-0.28,1.92-0.8L11.34,9.76z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": { + "opacity": ".3" + }, + "children": [{ + "name": "g", + "attribs": { + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M11,6.62l6,5.97V14h-1.41l-2.83-2.83l-0.2,0.2c-0.46,0.46-0.99,0.8-1.56,1.03V15h6v2c0,0.55,0.45,1,1,1s1-0.45,1-1V6h-8 V6.62z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M11,6.62l6,5.97V14h-1.41l-2.83-2.83l-0.2,0.2c-0.46,0.46-0.99,0.8-1.56,1.03V15h6v2c0,0.55,0.45,1,1,1s1-0.45,1-1V6h-8 V6.62z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M9,4v1.38c-0.83-0.33-1.72-0.5-2.61-0.5c-1.79,0-3.58,0.68-4.95,2.05l3.33,3.33h1.11v1.11c0.86,0.86,1.98,1.31,3.11,1.36 V15H6v3c0,1.1,0.9,2,2,2h10c1.66,0,3-1.34,3-3V4H9z M7.89,10.41V8.26H5.61L4.57,7.22C5.14,7,5.76,6.88,6.39,6.88 c1.34,0,2.59,0.52,3.54,1.46l1.41,1.41l-0.2,0.2c-0.51,0.51-1.19,0.8-1.92,0.8C8.75,10.75,8.29,10.63,7.89,10.41z M19,17 c0,0.55-0.45,1-1,1s-1-0.45-1-1v-2h-6v-2.59c0.57-0.23,1.1-0.57,1.56-1.03l0.2-0.2L15.59,14H17v-1.41l-6-5.97V6h8V17z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M9,4v1.38c-0.83-0.33-1.72-0.5-2.61-0.5c-1.79,0-3.58,0.68-4.95,2.05l3.33,3.33h1.11v1.11c0.86,0.86,1.98,1.31,3.11,1.36 V15H6v3c0,1.1,0.9,2,2,2h10c1.66,0,3-1.34,3-3V4H9z M7.89,10.41V8.26H5.61L4.57,7.22C5.14,7,5.76,6.88,6.39,6.88 c1.34,0,2.59,0.52,3.54,1.46l1.41,1.41l-0.2,0.2c-0.51,0.51-1.19,0.8-1.92,0.8C8.75,10.75,8.29,10.63,7.89,10.41z M19,17 c0,0.55-0.45,1-1,1s-1-0.45-1-1v-2h-6v-2.59c0.57-0.23,1.1-0.57,1.56-1.03l0.2-0.2L15.59,14H17v-1.41l-6-5.97V6h8V17z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_history_edu_twotone = ic_history_edu_twotone; \ No newline at end of file diff --git a/dist/md/ic_history_outline.js b/dist/md/ic_history_outline.js new file mode 100644 index 000000000..43648cfde --- /dev/null +++ b/dist/md/ic_history_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_history_outline = void 0; +var ic_history_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 3c-4.97 0-9 4.03-9 9H1l3.89 3.89.07.14L9 12H6c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.93 0-3.68-.79-4.94-2.06l-1.42 1.42C8.27 19.99 10.51 21 13 21c4.97 0 9-4.03 9-9s-4.03-9-9-9zm-1 5v5l4.25 2.52.77-1.28-3.52-2.09V8z" + }, + "children": [] + }] +}; +exports.ic_history_outline = ic_history_outline; \ No newline at end of file diff --git a/dist/md/ic_history_toggle_off.js b/dist/md/ic_history_toggle_off.js new file mode 100644 index 000000000..59332fd3c --- /dev/null +++ b/dist/md/ic_history_toggle_off.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_history_toggle_off = void 0; +var ic_history_toggle_off = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M15.1,19.37l1,1.74c-0.96,0.44-2.01,0.73-3.1,0.84v-2.02C13.74,19.84,14.44,19.65,15.1,19.37z M4.07,13H2.05 c0.11,1.1,0.4,2.14,0.84,3.1l1.74-1C4.35,14.44,4.16,13.74,4.07,13z M15.1,4.63l1-1.74C15.14,2.45,14.1,2.16,13,2.05v2.02 C13.74,4.16,14.44,4.35,15.1,4.63z M19.93,11h2.02c-0.11-1.1-0.4-2.14-0.84-3.1l-1.74,1C19.65,9.56,19.84,10.26,19.93,11z M8.9,19.37l-1,1.74c0.96,0.44,2.01,0.73,3.1,0.84v-2.02C10.26,19.84,9.56,19.65,8.9,19.37z M11,4.07V2.05 c-1.1,0.11-2.14,0.4-3.1,0.84l1,1.74C9.56,4.35,10.26,4.16,11,4.07z M18.36,7.17l1.74-1.01c-0.63-0.87-1.4-1.64-2.27-2.27 l-1.01,1.74C17.41,6.08,17.92,6.59,18.36,7.17z M4.63,8.9l-1.74-1C2.45,8.86,2.16,9.9,2.05,11h2.02C4.16,10.26,4.35,9.56,4.63,8.9z M19.93,13c-0.09,0.74-0.28,1.44-0.56,2.1l1.74,1c0.44-0.96,0.73-2.01,0.84-3.1H19.93z M16.83,18.36l1.01,1.74 c0.87-0.63,1.64-1.4,2.27-2.27l-1.74-1.01C17.92,17.41,17.41,17.92,16.83,18.36z M7.17,5.64L6.17,3.89 C5.29,4.53,4.53,5.29,3.9,6.17l1.74,1.01C6.08,6.59,6.59,6.08,7.17,5.64z M5.64,16.83L3.9,17.83c0.63,0.87,1.4,1.64,2.27,2.27 l1.01-1.74C6.59,17.92,6.08,17.41,5.64,16.83z M13,7h-2v5.41l4.29,4.29l1.41-1.41L13,11.59V7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15.1,19.37l1,1.74c-0.96,0.44-2.01,0.73-3.1,0.84v-2.02C13.74,19.84,14.44,19.65,15.1,19.37z M4.07,13H2.05 c0.11,1.1,0.4,2.14,0.84,3.1l1.74-1C4.35,14.44,4.16,13.74,4.07,13z M15.1,4.63l1-1.74C15.14,2.45,14.1,2.16,13,2.05v2.02 C13.74,4.16,14.44,4.35,15.1,4.63z M19.93,11h2.02c-0.11-1.1-0.4-2.14-0.84-3.1l-1.74,1C19.65,9.56,19.84,10.26,19.93,11z M8.9,19.37l-1,1.74c0.96,0.44,2.01,0.73,3.1,0.84v-2.02C10.26,19.84,9.56,19.65,8.9,19.37z M11,4.07V2.05 c-1.1,0.11-2.14,0.4-3.1,0.84l1,1.74C9.56,4.35,10.26,4.16,11,4.07z M18.36,7.17l1.74-1.01c-0.63-0.87-1.4-1.64-2.27-2.27 l-1.01,1.74C17.41,6.08,17.92,6.59,18.36,7.17z M4.63,8.9l-1.74-1C2.45,8.86,2.16,9.9,2.05,11h2.02C4.16,10.26,4.35,9.56,4.63,8.9z M19.93,13c-0.09,0.74-0.28,1.44-0.56,2.1l1.74,1c0.44-0.96,0.73-2.01,0.84-3.1H19.93z M16.83,18.36l1.01,1.74 c0.87-0.63,1.64-1.4,2.27-2.27l-1.74-1.01C17.92,17.41,17.41,17.92,16.83,18.36z M7.17,5.64L6.17,3.89 C5.29,4.53,4.53,5.29,3.9,6.17l1.74,1.01C6.08,6.59,6.59,6.08,7.17,5.64z M5.64,16.83L3.9,17.83c0.63,0.87,1.4,1.64,2.27,2.27 l1.01-1.74C6.59,17.92,6.08,17.41,5.64,16.83z M13,7h-2v5.41l4.29,4.29l1.41-1.41L13,11.59V7z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_history_toggle_off = ic_history_toggle_off; \ No newline at end of file diff --git a/dist/md/ic_history_toggle_off_outline.js b/dist/md/ic_history_toggle_off_outline.js new file mode 100644 index 000000000..9d49ef075 --- /dev/null +++ b/dist/md/ic_history_toggle_off_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_history_toggle_off_outline = void 0; +var ic_history_toggle_off_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M15.1,19.37l1,1.74c-0.96,0.44-2.01,0.73-3.1,0.84v-2.02C13.74,19.84,14.44,19.65,15.1,19.37z M4.07,13H2.05 c0.11,1.1,0.4,2.14,0.84,3.1l1.74-1C4.35,14.44,4.16,13.74,4.07,13z M15.1,4.63l1-1.74C15.14,2.45,14.1,2.16,13,2.05v2.02 C13.74,4.16,14.44,4.35,15.1,4.63z M19.93,11h2.02c-0.11-1.1-0.4-2.14-0.84-3.1l-1.74,1C19.65,9.56,19.84,10.26,19.93,11z M8.9,19.37l-1,1.74c0.96,0.44,2.01,0.73,3.1,0.84v-2.02C10.26,19.84,9.56,19.65,8.9,19.37z M11,4.07V2.05 c-1.1,0.11-2.14,0.4-3.1,0.84l1,1.74C9.56,4.35,10.26,4.16,11,4.07z M18.36,7.17l1.74-1.01c-0.63-0.87-1.4-1.64-2.27-2.27 l-1.01,1.74C17.41,6.08,17.92,6.59,18.36,7.17z M4.63,8.9l-1.74-1C2.45,8.86,2.16,9.9,2.05,11h2.02C4.16,10.26,4.35,9.56,4.63,8.9z M19.93,13c-0.09,0.74-0.28,1.44-0.56,2.1l1.74,1c0.44-0.96,0.73-2.01,0.84-3.1H19.93z M16.83,18.36l1.01,1.74 c0.87-0.63,1.64-1.4,2.27-2.27l-1.74-1.01C17.92,17.41,17.41,17.92,16.83,18.36z M7.17,5.64L6.17,3.89 C5.29,4.53,4.53,5.29,3.9,6.17l1.74,1.01C6.08,6.59,6.59,6.08,7.17,5.64z M5.64,16.83L3.9,17.83c0.63,0.87,1.4,1.64,2.27,2.27 l1.01-1.74C6.59,17.92,6.08,17.41,5.64,16.83z M13,7h-2v5.41l4.29,4.29l1.41-1.41L13,11.59V7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15.1,19.37l1,1.74c-0.96,0.44-2.01,0.73-3.1,0.84v-2.02C13.74,19.84,14.44,19.65,15.1,19.37z M4.07,13H2.05 c0.11,1.1,0.4,2.14,0.84,3.1l1.74-1C4.35,14.44,4.16,13.74,4.07,13z M15.1,4.63l1-1.74C15.14,2.45,14.1,2.16,13,2.05v2.02 C13.74,4.16,14.44,4.35,15.1,4.63z M19.93,11h2.02c-0.11-1.1-0.4-2.14-0.84-3.1l-1.74,1C19.65,9.56,19.84,10.26,19.93,11z M8.9,19.37l-1,1.74c0.96,0.44,2.01,0.73,3.1,0.84v-2.02C10.26,19.84,9.56,19.65,8.9,19.37z M11,4.07V2.05 c-1.1,0.11-2.14,0.4-3.1,0.84l1,1.74C9.56,4.35,10.26,4.16,11,4.07z M18.36,7.17l1.74-1.01c-0.63-0.87-1.4-1.64-2.27-2.27 l-1.01,1.74C17.41,6.08,17.92,6.59,18.36,7.17z M4.63,8.9l-1.74-1C2.45,8.86,2.16,9.9,2.05,11h2.02C4.16,10.26,4.35,9.56,4.63,8.9z M19.93,13c-0.09,0.74-0.28,1.44-0.56,2.1l1.74,1c0.44-0.96,0.73-2.01,0.84-3.1H19.93z M16.83,18.36l1.01,1.74 c0.87-0.63,1.64-1.4,2.27-2.27l-1.74-1.01C17.92,17.41,17.41,17.92,16.83,18.36z M7.17,5.64L6.17,3.89 C5.29,4.53,4.53,5.29,3.9,6.17l1.74,1.01C6.08,6.59,6.59,6.08,7.17,5.64z M5.64,16.83L3.9,17.83c0.63,0.87,1.4,1.64,2.27,2.27 l1.01-1.74C6.59,17.92,6.08,17.41,5.64,16.83z M13,7h-2v5.41l4.29,4.29l1.41-1.41L13,11.59V7z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_history_toggle_off_outline = ic_history_toggle_off_outline; \ No newline at end of file diff --git a/dist/md/ic_history_toggle_off_twotone.js b/dist/md/ic_history_toggle_off_twotone.js new file mode 100644 index 000000000..d0f1ceffb --- /dev/null +++ b/dist/md/ic_history_toggle_off_twotone.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_history_toggle_off_twotone = void 0; +var ic_history_toggle_off_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M15.1,19.37l1,1.74c-0.96,0.44-2.01,0.73-3.1,0.84v-2.02C13.74,19.84,14.44,19.65,15.1,19.37z M4.07,13H2.05 c0.11,1.1,0.4,2.14,0.84,3.1l1.74-1C4.35,14.44,4.16,13.74,4.07,13z M15.1,4.63l1-1.74C15.14,2.45,14.1,2.16,13,2.05v2.02 C13.74,4.16,14.44,4.35,15.1,4.63z M19.93,11h2.02c-0.11-1.1-0.4-2.14-0.84-3.1l-1.74,1C19.65,9.56,19.84,10.26,19.93,11z M8.9,19.37l-1,1.74c0.96,0.44,2.01,0.73,3.1,0.84v-2.02C10.26,19.84,9.56,19.65,8.9,19.37z M11,4.07V2.05 c-1.1,0.11-2.14,0.4-3.1,0.84l1,1.74C9.56,4.35,10.26,4.16,11,4.07z M18.36,7.17l1.74-1.01c-0.63-0.87-1.4-1.64-2.27-2.27 l-1.01,1.74C17.41,6.08,17.92,6.59,18.36,7.17z M4.63,8.9l-1.74-1C2.45,8.86,2.16,9.9,2.05,11h2.02C4.16,10.26,4.35,9.56,4.63,8.9z M19.93,13c-0.09,0.74-0.28,1.44-0.56,2.1l1.74,1c0.44-0.96,0.73-2.01,0.84-3.1H19.93z M16.83,18.36l1.01,1.74 c0.87-0.63,1.64-1.4,2.27-2.27l-1.74-1.01C17.92,17.41,17.41,17.92,16.83,18.36z M7.17,5.64L6.17,3.89 C5.29,4.53,4.53,5.29,3.9,6.17l1.74,1.01C6.08,6.59,6.59,6.08,7.17,5.64z M5.64,16.83L3.9,17.83c0.63,0.87,1.4,1.64,2.27,2.27 l1.01-1.74C6.59,17.92,6.08,17.41,5.64,16.83z M13,7h-2v5.41l4.29,4.29l1.41-1.41L13,11.59V7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15.1,19.37l1,1.74c-0.96,0.44-2.01,0.73-3.1,0.84v-2.02C13.74,19.84,14.44,19.65,15.1,19.37z M4.07,13H2.05 c0.11,1.1,0.4,2.14,0.84,3.1l1.74-1C4.35,14.44,4.16,13.74,4.07,13z M15.1,4.63l1-1.74C15.14,2.45,14.1,2.16,13,2.05v2.02 C13.74,4.16,14.44,4.35,15.1,4.63z M19.93,11h2.02c-0.11-1.1-0.4-2.14-0.84-3.1l-1.74,1C19.65,9.56,19.84,10.26,19.93,11z M8.9,19.37l-1,1.74c0.96,0.44,2.01,0.73,3.1,0.84v-2.02C10.26,19.84,9.56,19.65,8.9,19.37z M11,4.07V2.05 c-1.1,0.11-2.14,0.4-3.1,0.84l1,1.74C9.56,4.35,10.26,4.16,11,4.07z M18.36,7.17l1.74-1.01c-0.63-0.87-1.4-1.64-2.27-2.27 l-1.01,1.74C17.41,6.08,17.92,6.59,18.36,7.17z M4.63,8.9l-1.74-1C2.45,8.86,2.16,9.9,2.05,11h2.02C4.16,10.26,4.35,9.56,4.63,8.9z M19.93,13c-0.09,0.74-0.28,1.44-0.56,2.1l1.74,1c0.44-0.96,0.73-2.01,0.84-3.1H19.93z M16.83,18.36l1.01,1.74 c0.87-0.63,1.64-1.4,2.27-2.27l-1.74-1.01C17.92,17.41,17.41,17.92,16.83,18.36z M7.17,5.64L6.17,3.89 C5.29,4.53,4.53,5.29,3.9,6.17l1.74,1.01C6.08,6.59,6.59,6.08,7.17,5.64z M5.64,16.83L3.9,17.83c0.63,0.87,1.4,1.64,2.27,2.27 l1.01-1.74C6.59,17.92,6.08,17.41,5.64,16.83z M13,7h-2v5.41l4.29,4.29l1.41-1.41L13,11.59V7z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_history_toggle_off_twotone = ic_history_toggle_off_twotone; \ No newline at end of file diff --git a/dist/md/ic_history_twotone.js b/dist/md/ic_history_twotone.js new file mode 100644 index 000000000..8e3db9f4e --- /dev/null +++ b/dist/md/ic_history_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_history_twotone = void 0; +var ic_history_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 3c-4.97 0-9 4.03-9 9H1l3.89 3.89.07.14L9 12H6c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.93 0-3.68-.79-4.94-2.06l-1.42 1.42C8.27 19.99 10.51 21 13 21c4.97 0 9-4.03 9-9s-4.03-9-9-9zm-1 5v5l4.25 2.52.77-1.28-3.52-2.09V8z" + }, + "children": [] + }] +}; +exports.ic_history_twotone = ic_history_twotone; \ No newline at end of file diff --git a/dist/md/ic_home.js b/dist/md/ic_home.js new file mode 100644 index 000000000..0b77f92bd --- /dev/null +++ b/dist/md/ic_home.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_home = void 0; +var ic_home = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z" + }, + "children": [] + }] +}; +exports.ic_home = ic_home; \ No newline at end of file diff --git a/dist/md/ic_home_filled.js b/dist/md/ic_home_filled.js new file mode 100644 index 000000000..2733a683c --- /dev/null +++ b/dist/md/ic_home_filled.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_home_filled = void 0; +var ic_home_filled = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 3L4 9v12h5v-7h6v7h5V9z" + }, + "children": [] + }] +}; +exports.ic_home_filled = ic_home_filled; \ No newline at end of file diff --git a/dist/md/ic_home_outline.js b/dist/md/ic_home_outline.js new file mode 100644 index 000000000..3befd4914 --- /dev/null +++ b/dist/md/ic_home_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_home_outline = void 0; +var ic_home_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 5.69l5 4.5V18h-2v-6H9v6H7v-7.81l5-4.5M12 3L2 12h3v8h6v-6h2v6h6v-8h3L12 3z" + }, + "children": [] + }] +}; +exports.ic_home_outline = ic_home_outline; \ No newline at end of file diff --git a/dist/md/ic_home_repair_service.js b/dist/md/ic_home_repair_service.js new file mode 100644 index 000000000..0e656c60b --- /dev/null +++ b/dist/md/ic_home_repair_service.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_home_repair_service = void 0; +var ic_home_repair_service = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "18,16 16,16 16,15 8,15 8,16 6,16 6,15 2,15 2,20 22,20 22,15 18,15" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "18,16 16,16 16,15 8,15 8,16 6,16 6,15 2,15 2,20 22,20 22,15 18,15" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20,8h-3V6c0-1.1-0.9-2-2-2H9C7.9,4,7,4.9,7,6v2H4c-1.1,0-2,0.9-2,2v4h4v-2h2v2h8v-2h2v2h4v-4C22,8.9,21.1,8,20,8z M15,8 H9V6h6V8z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,8h-3V6c0-1.1-0.9-2-2-2H9C7.9,4,7,4.9,7,6v2H4c-1.1,0-2,0.9-2,2v4h4v-2h2v2h8v-2h2v2h4v-4C22,8.9,21.1,8,20,8z M15,8 H9V6h6V8z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_home_repair_service = ic_home_repair_service; \ No newline at end of file diff --git a/dist/md/ic_home_repair_service_outline.js b/dist/md/ic_home_repair_service_outline.js new file mode 100644 index 000000000..567da77e7 --- /dev/null +++ b/dist/md/ic_home_repair_service_outline.js @@ -0,0 +1,55 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_home_repair_service_outline = void 0; +var ic_home_repair_service_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,8h-3V6c0-1.1-0.9-2-2-2H9C7.9,4,7,4.9,7,6v2H4c-1.1,0-2,0.9-2,2v10h20V10C22,8.9,21.1,8,20,8z M9,6h6v2H9V6z M20,18H4 v-3h2v1h2v-1h8v1h2v-1h2V18z M18,13v-1h-2v1H8v-1H6v1H4v-3h3h10h3v3H18z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,8h-3V6c0-1.1-0.9-2-2-2H9C7.9,4,7,4.9,7,6v2H4c-1.1,0-2,0.9-2,2v10h20V10C22,8.9,21.1,8,20,8z M9,6h6v2H9V6z M20,18H4 v-3h2v1h2v-1h8v1h2v-1h2V18z M18,13v-1h-2v1H8v-1H6v1H4v-3h3h10h3v3H18z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_home_repair_service_outline = ic_home_repair_service_outline; \ No newline at end of file diff --git a/dist/md/ic_home_repair_service_twotone.js b/dist/md/ic_home_repair_service_twotone.js new file mode 100644 index 000000000..4813e671e --- /dev/null +++ b/dist/md/ic_home_repair_service_twotone.js @@ -0,0 +1,119 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_home_repair_service_twotone = void 0; +var ic_home_repair_service_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,8h-3V6c0-1.1-0.9-2-2-2H9C7.9,4,7,4.9,7,6v2H4c-1.1,0-2,0.9-2,2v10h20V10C22,8.9,21.1,8,20,8z M9,6h6v2H9V6z M20,18 H4v-3h2v1h2v-1h8v1h2v-1h2V18z M20,13h-2v-1h-2v1H8v-1H6v1H4v-3h3h10h3V13z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,8h-3V6c0-1.1-0.9-2-2-2H9C7.9,4,7,4.9,7,6v2H4c-1.1,0-2,0.9-2,2v10h20V10C22,8.9,21.1,8,20,8z M9,6h6v2H9V6z M20,18 H4v-3h2v1h2v-1h8v1h2v-1h2V18z M20,13h-2v-1h-2v1H8v-1H6v1H4v-3h3h10h3V13z" + }, + "children": [] + }] + }] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": { + "opacity": ".3" + }, + "children": [{ + "name": "g", + "attribs": { + "opacity": ".3" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "18,16 16,16 16,15 8,15 8,16 6,16 6,15 4,15 4,18 20,18 20,15 18,15" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "18,16 16,16 16,15 8,15 8,16 6,16 6,15 4,15 4,18 20,18 20,15 18,15" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": { + "opacity": ".3" + }, + "children": [{ + "name": "g", + "attribs": { + "opacity": ".3" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "4,10 4,13 6,13 6,12 8,12 8,13 16,13 16,12 18,12 18,13 20,13 20,10 17,10 7,10" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "4,10 4,13 6,13 6,12 8,12 8,13 16,13 16,12 18,12 18,13 20,13 20,10 17,10 7,10" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_home_repair_service_twotone = ic_home_repair_service_twotone; \ No newline at end of file diff --git a/dist/md/ic_home_twotone.js b/dist/md/ic_home_twotone.js new file mode 100644 index 000000000..56d71e1db --- /dev/null +++ b/dist/md/ic_home_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_home_twotone = void 0; +var ic_home_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 3L2 12h3v8h6v-6h2v6h6v-8h3L12 3zm5 15h-2v-6H9v6H7v-7.81l5-4.5 5 4.5V18z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 10.19V18h2v-6h6v6h2v-7.81l-5-4.5z", + "opacity": ".3" + }, + "children": [] + }] +}; +exports.ic_home_twotone = ic_home_twotone; \ No newline at end of file diff --git a/dist/md/ic_home_work.js b/dist/md/ic_home_work.js new file mode 100644 index 000000000..711661d42 --- /dev/null +++ b/dist/md/ic_home_work.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_home_work = void 0; +var ic_home_work = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8.17 5.7L1 10.48V21h5v-8h4v8h5V10.25z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 7h2v2h-2z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 3v1.51l2 1.33L13.73 7H15v.85l2 1.34V11h2v2h-2v2h2v2h-2v4h6V3H10zm9 6h-2V7h2v2z" + }, + "children": [] + }] +}; +exports.ic_home_work = ic_home_work; \ No newline at end of file diff --git a/dist/md/ic_home_work_outline.js b/dist/md/ic_home_work_outline.js new file mode 100644 index 000000000..d61bf35f1 --- /dev/null +++ b/dist/md/ic_home_work_outline.js @@ -0,0 +1,36 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_home_work_outline = void 0; +var ic_home_work_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 15h2v2h-2zM17 11h2v2h-2zM17 7h2v2h-2zM13.74 7l1.26.84V7z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 3v1.51l2 1.33V5h9v14h-4v2h6V3z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8.17 5.7L15 10.25V21H1V10.48L8.17 5.7zM10 19h3v-7.84L8.17 8.09 3 11.38V19h3v-6h4v6z" + }, + "children": [] + }] +}; +exports.ic_home_work_outline = ic_home_work_outline; \ No newline at end of file diff --git a/dist/md/ic_home_work_twotone.js b/dist/md/ic_home_work_twotone.js new file mode 100644 index 000000000..170cde10b --- /dev/null +++ b/dist/md/ic_home_work_twotone.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_home_work_twotone = void 0; +var ic_home_work_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 15h2v2h-2zM17 11h2v2h-2zM17 7h2v2h-2zM13.74 7l1.26.84V7z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 3v1.51l2 1.33V5h9v14h-4v2h6V3z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8.17 5.7L15 10.25V21H1V10.48L8.17 5.7zM10 19h3v-7.84L8.17 8.09 3 11.38V19h3v-6h4v6z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 19h3v-7.84L8.17 8.09 3 11.38V19h3v-6h4z", + "opacity": ".3" + }, + "children": [] + }] +}; +exports.ic_home_work_twotone = ic_home_work_twotone; \ No newline at end of file diff --git a/dist/md/ic_horizontal_rule.js b/dist/md/ic_horizontal_rule.js new file mode 100644 index 000000000..d7b913fa1 --- /dev/null +++ b/dist/md/ic_horizontal_rule.js @@ -0,0 +1,53 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_horizontal_rule = void 0; +var ic_horizontal_rule = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "fill-rule": "evenodd", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "fill-rule": "evenodd", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "fill-rule": "evenodd", + "height": "2", + "width": "16", + "x": "4", + "y": "11" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill-rule": "evenodd", + "height": "2", + "width": "16", + "x": "4", + "y": "11" + }, + "children": [] + }] + }] + }] +}; +exports.ic_horizontal_rule = ic_horizontal_rule; \ No newline at end of file diff --git a/dist/md/ic_horizontal_rule_outline.js b/dist/md/ic_horizontal_rule_outline.js new file mode 100644 index 000000000..0bef0d345 --- /dev/null +++ b/dist/md/ic_horizontal_rule_outline.js @@ -0,0 +1,61 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_horizontal_rule_outline = void 0; +var ic_horizontal_rule_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "fill-rule": "evenodd", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "fill-rule": "evenodd", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill-rule": "evenodd", + "height": "2", + "width": "16", + "x": "4", + "y": "11" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill-rule": "evenodd", + "height": "2", + "width": "16", + "x": "4", + "y": "11" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_horizontal_rule_outline = ic_horizontal_rule_outline; \ No newline at end of file diff --git a/dist/md/ic_horizontal_rule_twotone.js b/dist/md/ic_horizontal_rule_twotone.js new file mode 100644 index 000000000..de304526d --- /dev/null +++ b/dist/md/ic_horizontal_rule_twotone.js @@ -0,0 +1,61 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_horizontal_rule_twotone = void 0; +var ic_horizontal_rule_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "fill-rule": "evenodd", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "fill-rule": "evenodd", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill-rule": "evenodd", + "height": "2", + "width": "16", + "x": "4", + "y": "11" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill-rule": "evenodd", + "height": "2", + "width": "16", + "x": "4", + "y": "11" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_horizontal_rule_twotone = ic_horizontal_rule_twotone; \ No newline at end of file diff --git a/dist/md/ic_horizontal_split.js b/dist/md/ic_horizontal_split.js new file mode 100644 index 000000000..582465d6d --- /dev/null +++ b/dist/md/ic_horizontal_split.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_horizontal_split = void 0; +var ic_horizontal_split = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 19h18v-6H3v6zm0-8h18V9H3v2zm0-6v2h18V5H3z" + }, + "children": [] + }] +}; +exports.ic_horizontal_split = ic_horizontal_split; \ No newline at end of file diff --git a/dist/md/ic_horizontal_split_outline.js b/dist/md/ic_horizontal_split_outline.js new file mode 100644 index 000000000..a05b12d94 --- /dev/null +++ b/dist/md/ic_horizontal_split_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_horizontal_split_outline = void 0; +var ic_horizontal_split_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 15v2H5v-2h14m2-10H3v2h18V5zm0 4H3v2h18V9zm0 4H3v6h18v-6z" + }, + "children": [] + }] +}; +exports.ic_horizontal_split_outline = ic_horizontal_split_outline; \ No newline at end of file diff --git a/dist/md/ic_horizontal_split_twotone.js b/dist/md/ic_horizontal_split_twotone.js new file mode 100644 index 000000000..e37355330 --- /dev/null +++ b/dist/md/ic_horizontal_split_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_horizontal_split_twotone = void 0; +var ic_horizontal_split_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 15v2H5v-2h14m2-10H3v2h18V5zm0 4H3v2h18V9zm0 4H3v6h18v-6z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 15h14v2H5z", + "opacity": ".3" + }, + "children": [] + }] +}; +exports.ic_horizontal_split_twotone = ic_horizontal_split_twotone; \ No newline at end of file diff --git a/dist/md/ic_hot_tub.js b/dist/md/ic_hot_tub.js new file mode 100644 index 000000000..07ad07c7b --- /dev/null +++ b/dist/md/ic_hot_tub.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_hot_tub = void 0; +var ic_hot_tub = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "7", + "cy": "6", + "r": "2" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.15 12c-.31-.22-.59-.46-.82-.72l-1.4-1.55c-.19-.21-.43-.38-.69-.5-.29-.14-.62-.23-.96-.23h-.03C6.01 9 5 10.01 5 11.25V12H2v8c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-8H11.15zM7 20H5v-6h2v6zm4 0H9v-6h2v6zm4 0h-2v-6h2v6zm4 0h-2v-6h2v6zm-.35-14.14l-.07-.07c-.57-.62-.82-1.41-.67-2.2L18 3h-1.89l-.06.43c-.2 1.36.27 2.71 1.3 3.72l.07.06c.57.62.82 1.41.67 2.2l-.11.59h1.91l.06-.43c.21-1.36-.27-2.71-1.3-3.71zm-4 0l-.07-.07c-.57-.62-.82-1.41-.67-2.2L14 3h-1.89l-.06.43c-.2 1.36.27 2.71 1.3 3.72l.07.06c.57.62.82 1.41.67 2.2l-.11.59h1.91l.06-.43c.21-1.36-.27-2.71-1.3-3.71z" + }, + "children": [] + }] +}; +exports.ic_hot_tub = ic_hot_tub; \ No newline at end of file diff --git a/dist/md/ic_hot_tub_outline.js b/dist/md/ic_hot_tub_outline.js new file mode 100644 index 000000000..ccf6af5d3 --- /dev/null +++ b/dist/md/ic_hot_tub_outline.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_hot_tub_outline = void 0; +var ic_hot_tub_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "7", + "cy": "6", + "r": "2" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.15 12c-.31-.22-.59-.46-.82-.72l-1.4-1.55c-.19-.21-.43-.38-.69-.5-.29-.14-.62-.23-.96-.23h-.03C6.01 9 5 10.01 5 11.25V12H2v8c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-8H11.15zM7 20H5v-6h2v6zm4 0H9v-6h2v6zm4 0h-2v-6h2v6zm4 0h-2v-6h2v6zM17.42 7.21c.57.62.82 1.41.67 2.2l-.11.59h1.91l.06-.43c.21-1.36-.27-2.71-1.3-3.71l-.07-.07c-.57-.62-.82-1.41-.67-2.2L18 3h-1.89l-.06.43c-.2 1.36.27 2.71 1.3 3.72l.07.06zm-4 0c.57.62.82 1.41.67 2.2l-.11.59h1.91l.06-.43c.21-1.36-.27-2.71-1.3-3.71l-.07-.07c-.57-.62-.82-1.41-.67-2.2L14 3h-1.89l-.06.43c-.2 1.36.27 2.71 1.3 3.72l.07.06z" + }, + "children": [] + }] +}; +exports.ic_hot_tub_outline = ic_hot_tub_outline; \ No newline at end of file diff --git a/dist/md/ic_hot_tub_twotone.js b/dist/md/ic_hot_tub_twotone.js new file mode 100644 index 000000000..a6983e584 --- /dev/null +++ b/dist/md/ic_hot_tub_twotone.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_hot_tub_twotone = void 0; +var ic_hot_tub_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "7", + "cy": "6", + "r": "2" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17.42 7.21c.57.62.82 1.41.67 2.2l-.11.59h1.91l.06-.43c.21-1.36-.27-2.71-1.3-3.71l-.07-.07c-.57-.62-.82-1.41-.67-2.2L18 3h-1.89l-.06.43c-.2 1.36.27 2.71 1.3 3.72l.07.06zM11.15 12c-.31-.22-.59-.46-.82-.72l-1.4-1.55c-.19-.21-.43-.38-.69-.5-.29-.14-.62-.23-.96-.23h-.03C6.01 9 5 10.01 5 11.25V12H2v8c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-8H11.15zM7 20H5v-6h2v6zm4 0H9v-6h2v6zm4 0h-2v-6h2v6zm4 0h-2v-6h2v6zM13.42 7.21c.57.62.82 1.41.67 2.2l-.11.59h1.91l.06-.43c.21-1.36-.27-2.71-1.3-3.71l-.07-.07c-.57-.62-.82-1.41-.67-2.2L14 3h-1.89l-.06.43c-.2 1.36.27 2.71 1.3 3.72l.07.06z" + }, + "children": [] + }] +}; +exports.ic_hot_tub_twotone = ic_hot_tub_twotone; \ No newline at end of file diff --git a/dist/md/ic_hotel.js b/dist/md/ic_hotel.js new file mode 100644 index 000000000..adc63f5b2 --- /dev/null +++ b/dist/md/ic_hotel.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_hotel = void 0; +var ic_hotel = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 13c1.66 0 3-1.34 3-3S8.66 7 7 7s-3 1.34-3 3 1.34 3 3 3zm12-6h-8v7H3V5H1v15h2v-3h18v3h2v-9c0-2.21-1.79-4-4-4z" + }, + "children": [] + }] +}; +exports.ic_hotel = ic_hotel; \ No newline at end of file diff --git a/dist/md/ic_hotel_outline.js b/dist/md/ic_hotel_outline.js new file mode 100644 index 000000000..5c784b454 --- /dev/null +++ b/dist/md/ic_hotel_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_hotel_outline = void 0; +var ic_hotel_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 14c1.66 0 3-1.34 3-3S8.66 8 7 8s-3 1.34-3 3 1.34 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm12-3h-8v8H3V5H1v15h2v-3h18v3h2v-9c0-2.21-1.79-4-4-4zm2 8h-8V9h6c1.1 0 2 .9 2 2v4z" + }, + "children": [] + }] +}; +exports.ic_hotel_outline = ic_hotel_outline; \ No newline at end of file diff --git a/dist/md/ic_hotel_twotone.js b/dist/md/ic_hotel_twotone.js new file mode 100644 index 000000000..de21de845 --- /dev/null +++ b/dist/md/ic_hotel_twotone.js @@ -0,0 +1,40 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_hotel_twotone = void 0; +var ic_hotel_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 9h-6v6h8v-4c0-1.1-.9-2-2-2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "7", + "cy": "11", + "opacity": ".3", + "r": "1" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 11c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3zm4 0c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1zm11-4h-8v8H3V5H1v15h2v-3h18v3h2v-9c0-2.21-1.79-4-4-4zm2 8h-8V9h6c1.1 0 2 .9 2 2v4z" + }, + "children": [] + }] +}; +exports.ic_hotel_twotone = ic_hotel_twotone; \ No newline at end of file diff --git a/dist/md/ic_hourglass_bottom.js b/dist/md/ic_hourglass_bottom.js new file mode 100644 index 000000000..6857bdad5 --- /dev/null +++ b/dist/md/ic_hourglass_bottom.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_hourglass_bottom = void 0; +var ic_hourglass_bottom = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M18,22l-0.01-6L14,12l3.99-4.01L18,2H6v6l4,4l-4,3.99V22H18z M8,7.5V4h8v3.5l-4,4L8,7.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18,22l-0.01-6L14,12l3.99-4.01L18,2H6v6l4,4l-4,3.99V22H18z M8,7.5V4h8v3.5l-4,4L8,7.5z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_hourglass_bottom = ic_hourglass_bottom; \ No newline at end of file diff --git a/dist/md/ic_hourglass_bottom_outline.js b/dist/md/ic_hourglass_bottom_outline.js new file mode 100644 index 000000000..eaaf78d2a --- /dev/null +++ b/dist/md/ic_hourglass_bottom_outline.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_hourglass_bottom_outline = void 0; +var ic_hourglass_bottom_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M18,22l-0.01-6L14,12l3.99-4.01L18,2H6v6l4,4l-4,3.99V22H18z M8,7.5V4h8v3.5l-4,4L8,7.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18,22l-0.01-6L14,12l3.99-4.01L18,2H6v6l4,4l-4,3.99V22H18z M8,7.5V4h8v3.5l-4,4L8,7.5z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_hourglass_bottom_outline = ic_hourglass_bottom_outline; \ No newline at end of file diff --git a/dist/md/ic_hourglass_bottom_twotone.js b/dist/md/ic_hourglass_bottom_twotone.js new file mode 100644 index 000000000..2f6085b19 --- /dev/null +++ b/dist/md/ic_hourglass_bottom_twotone.js @@ -0,0 +1,83 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_hourglass_bottom_twotone = void 0; +var ic_hourglass_bottom_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "opacity": ".3", + "points": "16,16.5 12,12.5 8,16.5 8,20 16,20" + }, + "children": [{ + "name": "polygon", + "attribs": { + "opacity": ".3", + "points": "16,16.5 12,12.5 8,16.5 8,20 16,20" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "opacity": ".3", + "points": "16,16.5 12,12.5 8,16.5 8,20 16,20" + }, + "children": [{ + "name": "polygon", + "attribs": { + "opacity": ".3", + "points": "16,16.5 12,12.5 8,16.5 8,20 16,20" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M6,22h12v-6l-4-4l3.99-4.01L18,2H6l0.01,5.99L10,12l-4,3.99V22z M8,7.5V4h8v3.5l-4,4L8,7.5z M8,16.5l4-4l4,4V20H8V16.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M6,22h12v-6l-4-4l3.99-4.01L18,2H6l0.01,5.99L10,12l-4,3.99V22z M8,7.5V4h8v3.5l-4,4L8,7.5z M8,16.5l4-4l4,4V20H8V16.5z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_hourglass_bottom_twotone = ic_hourglass_bottom_twotone; \ No newline at end of file diff --git a/dist/md/ic_hourglass_disabled.js b/dist/md/ic_hourglass_disabled.js new file mode 100644 index 000000000..489bde20d --- /dev/null +++ b/dist/md/ic_hourglass_disabled.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_hourglass_disabled = void 0; +var ic_hourglass_disabled = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "8,4 16,4 16,7.5 13.16,10.34 14.41,11.59 18,8.01 17.99,8 18,8 18,2 6,2 6,3.17 8,5.17" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "8,4 16,4 16,7.5 13.16,10.34 14.41,11.59 18,8.01 17.99,8 18,8 18,2 6,2 6,3.17 8,5.17" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M2.1,2.1L0.69,3.51l8.9,8.9L6,16l0.01,0.01H6V22h12v-1.17l2.49,2.49l1.41-1.41L2.1,2.1z M16,20H8v-3.5l2.84-2.84L16,18.83 V20z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M2.1,2.1L0.69,3.51l8.9,8.9L6,16l0.01,0.01H6V22h12v-1.17l2.49,2.49l1.41-1.41L2.1,2.1z M16,20H8v-3.5l2.84-2.84L16,18.83 V20z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_hourglass_disabled = ic_hourglass_disabled; \ No newline at end of file diff --git a/dist/md/ic_hourglass_disabled_outline.js b/dist/md/ic_hourglass_disabled_outline.js new file mode 100644 index 000000000..3b2ad96b4 --- /dev/null +++ b/dist/md/ic_hourglass_disabled_outline.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_hourglass_disabled_outline = void 0; +var ic_hourglass_disabled_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "8,4 16,4 16,7.5 13.16,10.34 14.41,11.59 18,8.01 17.99,8 18,8 18,2 6,2 6,3.17 8,5.17" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "8,4 16,4 16,7.5 13.16,10.34 14.41,11.59 18,8.01 17.99,8 18,8 18,2 6,2 6,3.17 8,5.17" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M2.1,2.1L0.69,3.51l8.9,8.9L6,16l0.01,0.01H6V22h12v-1.17l2.49,2.49l1.41-1.41L2.1,2.1z M16,20H8v-3.5l2.84-2.84L16,18.83 V20z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M2.1,2.1L0.69,3.51l8.9,8.9L6,16l0.01,0.01H6V22h12v-1.17l2.49,2.49l1.41-1.41L2.1,2.1z M16,20H8v-3.5l2.84-2.84L16,18.83 V20z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_hourglass_disabled_outline = ic_hourglass_disabled_outline; \ No newline at end of file diff --git a/dist/md/ic_hourglass_disabled_twotone.js b/dist/md/ic_hourglass_disabled_twotone.js new file mode 100644 index 000000000..6aa91d5cc --- /dev/null +++ b/dist/md/ic_hourglass_disabled_twotone.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_hourglass_disabled_twotone = void 0; +var ic_hourglass_disabled_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "8,4 16,4 16,7.5 13.16,10.34 14.41,11.59 18,8.01 17.99,8 18,8 18,2 6,2 6,3.17 8,5.17" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "8,4 16,4 16,7.5 13.16,10.34 14.41,11.59 18,8.01 17.99,8 18,8 18,2 6,2 6,3.17 8,5.17" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M2.1,2.1L0.69,3.51l8.9,8.9L6,16l0.01,0.01H6V22h12v-1.17l2.49,2.49l1.41-1.41L2.1,2.1z M16,20H8v-3.5l2.84-2.84L16,18.83 V20z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M2.1,2.1L0.69,3.51l8.9,8.9L6,16l0.01,0.01H6V22h12v-1.17l2.49,2.49l1.41-1.41L2.1,2.1z M16,20H8v-3.5l2.84-2.84L16,18.83 V20z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_hourglass_disabled_twotone = ic_hourglass_disabled_twotone; \ No newline at end of file diff --git a/dist/md/ic_hourglass_empty.js b/dist/md/ic_hourglass_empty.js new file mode 100644 index 000000000..7f4872536 --- /dev/null +++ b/dist/md/ic_hourglass_empty.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_hourglass_empty = void 0; +var ic_hourglass_empty = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 2v6h.01L6 8.01 10 12l-4 4 .01.01H6V22h12v-5.99h-.01L18 16l-4-4 4-3.99-.01-.01H18V2H6zm10 14.5V20H8v-3.5l4-4 4 4zm-4-5l-4-4V4h8v3.5l-4 4z" + }, + "children": [] + }] +}; +exports.ic_hourglass_empty = ic_hourglass_empty; \ No newline at end of file diff --git a/dist/md/ic_hourglass_empty_outline.js b/dist/md/ic_hourglass_empty_outline.js new file mode 100644 index 000000000..31021554d --- /dev/null +++ b/dist/md/ic_hourglass_empty_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_hourglass_empty_outline = void 0; +var ic_hourglass_empty_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 2v6h.01L6 8.01 10 12l-4 4 .01.01H6V22h12v-5.99h-.01L18 16l-4-4 4-3.99-.01-.01H18V2H6zm10 14.5V20H8v-3.5l4-4 4 4zm-4-5l-4-4V4h8v3.5l-4 4z" + }, + "children": [] + }] +}; +exports.ic_hourglass_empty_outline = ic_hourglass_empty_outline; \ No newline at end of file diff --git a/dist/md/ic_hourglass_empty_twotone.js b/dist/md/ic_hourglass_empty_twotone.js new file mode 100644 index 000000000..f87df6ba6 --- /dev/null +++ b/dist/md/ic_hourglass_empty_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_hourglass_empty_twotone = void 0; +var ic_hourglass_empty_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 2H6v6h.01L6 8.01 10 12l-4 4 .01.01H6V22h12v-5.99h-.01L18 16l-4-4 4-3.99-.01-.01H18V2zm-2 14.5V20H8v-3.5l4-4 4 4zm0-9l-4 4-4-4V4h8v3.5z" + }, + "children": [] + }] +}; +exports.ic_hourglass_empty_twotone = ic_hourglass_empty_twotone; \ No newline at end of file diff --git a/dist/md/ic_hourglass_full.js b/dist/md/ic_hourglass_full.js new file mode 100644 index 000000000..fb04362d1 --- /dev/null +++ b/dist/md/ic_hourglass_full.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_hourglass_full = void 0; +var ic_hourglass_full = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 2v6h.01L6 8.01 10 12l-4 4 .01.01H6V22h12v-5.99h-.01L18 16l-4-4 4-3.99-.01-.01H18V2H6z" + }, + "children": [] + }] +}; +exports.ic_hourglass_full = ic_hourglass_full; \ No newline at end of file diff --git a/dist/md/ic_hourglass_full_outline.js b/dist/md/ic_hourglass_full_outline.js new file mode 100644 index 000000000..ed7f491bd --- /dev/null +++ b/dist/md/ic_hourglass_full_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_hourglass_full_outline = void 0; +var ic_hourglass_full_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 2v6h.01L6 8.01 10 12l-4 4 .01.01H6V22h12v-5.99h-.01L18 16l-4-4 4-3.99-.01-.01H18V2H6z" + }, + "children": [] + }] +}; +exports.ic_hourglass_full_outline = ic_hourglass_full_outline; \ No newline at end of file diff --git a/dist/md/ic_hourglass_full_twotone.js b/dist/md/ic_hourglass_full_twotone.js new file mode 100644 index 000000000..ea9250e95 --- /dev/null +++ b/dist/md/ic_hourglass_full_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_hourglass_full_twotone = void 0; +var ic_hourglass_full_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8 7.5l4 4 4-4V4H8zm0 9V20h8v-3.5l-4-4z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 2H6v6h.01L6 8.01 10 12l-4 4 .01.01H6V22h12v-5.99h-.01L18 16l-4-4 4-3.99-.01-.01H18V2zm-2 14.5V20H8v-3.5l4-4 4 4zm0-9l-4 4-4-4V4h8v3.5z" + }, + "children": [] + }] +}; +exports.ic_hourglass_full_twotone = ic_hourglass_full_twotone; \ No newline at end of file diff --git a/dist/md/ic_hourglass_top.js b/dist/md/ic_hourglass_top.js new file mode 100644 index 000000000..785c68133 --- /dev/null +++ b/dist/md/ic_hourglass_top.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_hourglass_top = void 0; +var ic_hourglass_top = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M6,2l0.01,6L10,12l-3.99,4.01L6,22h12v-6l-4-4l4-3.99V2H6z M16,16.5V20H8v-3.5l4-4L16,16.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M6,2l0.01,6L10,12l-3.99,4.01L6,22h12v-6l-4-4l4-3.99V2H6z M16,16.5V20H8v-3.5l4-4L16,16.5z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_hourglass_top = ic_hourglass_top; \ No newline at end of file diff --git a/dist/md/ic_hourglass_top_outline.js b/dist/md/ic_hourglass_top_outline.js new file mode 100644 index 000000000..0ac53eaaf --- /dev/null +++ b/dist/md/ic_hourglass_top_outline.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_hourglass_top_outline = void 0; +var ic_hourglass_top_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M6,2l0.01,6L10,12l-3.99,4.01L6,22h12v-6l-4-4l4-3.99V2H6z M16,16.5V20H8v-3.5l4-4L16,16.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M6,2l0.01,6L10,12l-3.99,4.01L6,22h12v-6l-4-4l4-3.99V2H6z M16,16.5V20H8v-3.5l4-4L16,16.5z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_hourglass_top_outline = ic_hourglass_top_outline; \ No newline at end of file diff --git a/dist/md/ic_hourglass_top_twotone.js b/dist/md/ic_hourglass_top_twotone.js new file mode 100644 index 000000000..fbf1ff943 --- /dev/null +++ b/dist/md/ic_hourglass_top_twotone.js @@ -0,0 +1,83 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_hourglass_top_twotone = void 0; +var ic_hourglass_top_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "opacity": ".3", + "points": "8,7.5 12,11.5 16,7.5 16,4 8,4" + }, + "children": [{ + "name": "polygon", + "attribs": { + "opacity": ".3", + "points": "8,7.5 12,11.5 16,7.5 16,4 8,4" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "opacity": ".3", + "points": "8,7.5 12,11.5 16,7.5 16,4 8,4" + }, + "children": [{ + "name": "polygon", + "attribs": { + "opacity": ".3", + "points": "8,7.5 12,11.5 16,7.5 16,4 8,4" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M18,2H6v6l4,4l-3.99,4.01L6,22h12l-0.01-5.99L14,12l4-3.99V2z M16,16.5V20H8v-3.5l4-4L16,16.5z M16,7.5l-4,4l-4-4V4h8V7.5 z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18,2H6v6l4,4l-3.99,4.01L6,22h12l-0.01-5.99L14,12l4-3.99V2z M16,16.5V20H8v-3.5l4-4L16,16.5z M16,7.5l-4,4l-4-4V4h8V7.5 z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_hourglass_top_twotone = ic_hourglass_top_twotone; \ No newline at end of file diff --git a/dist/md/ic_house.js b/dist/md/ic_house.js new file mode 100644 index 000000000..b46c0ea0f --- /dev/null +++ b/dist/md/ic_house.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_house = void 0; +var ic_house = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,9.3V4h-3v2.6L12,3L2,12h3v8h5v-6h4v6h5v-8h3L19,9.3z M10,10c0-1.1,0.9-2,2-2s2,0.9,2,2H10z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,9.3V4h-3v2.6L12,3L2,12h3v8h5v-6h4v6h5v-8h3L19,9.3z M10,10c0-1.1,0.9-2,2-2s2,0.9,2,2H10z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_house = ic_house; \ No newline at end of file diff --git a/dist/md/ic_house_outline.js b/dist/md/ic_house_outline.js new file mode 100644 index 000000000..0d84ecd10 --- /dev/null +++ b/dist/md/ic_house_outline.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_house_outline = void 0; +var ic_house_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,9.3V4h-3v2.6L12,3L2,12h3v8h6v-6h2v6h6v-8h3L19,9.3z M17,18h-2v-6H9v6H7v-7.81l5-4.5l5,4.5V18z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,9.3V4h-3v2.6L12,3L2,12h3v8h6v-6h2v6h6v-8h3L19,9.3z M17,18h-2v-6H9v6H7v-7.81l5-4.5l5,4.5V18z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M10,10h4c0-1.1-0.9-2-2-2S10,8.9,10,10z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M10,10h4c0-1.1-0.9-2-2-2S10,8.9,10,10z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_house_outline = ic_house_outline; \ No newline at end of file diff --git a/dist/md/ic_house_siding.js b/dist/md/ic_house_siding.js new file mode 100644 index 000000000..36b796f96 --- /dev/null +++ b/dist/md/ic_house_siding.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_house_siding = void 0; +var ic_house_siding = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19,12h3L12,3L2,12h3v8h2v-2h10v2h2V12z M7.21,10h9.58L17,10.19V12H7v-1.81L7.21,10z M14.57,8H9.43L12,5.69L14.57,8z M7,16 v-2h10v2H7z" + }, + "children": [] + }] +}; +exports.ic_house_siding = ic_house_siding; \ No newline at end of file diff --git a/dist/md/ic_house_siding_outline.js b/dist/md/ic_house_siding_outline.js new file mode 100644 index 000000000..5f8e649b5 --- /dev/null +++ b/dist/md/ic_house_siding_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_house_siding_outline = void 0; +var ic_house_siding_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19,12h3L12,3L2,12h3v8h2v-2h10v2h2V12z M7.21,10h9.58L17,10.19V12H7v-1.81L7.21,10z M14.57,8H9.43L12,5.69L14.57,8z M7,16 v-2h10v2H7z" + }, + "children": [] + }] +}; +exports.ic_house_siding_outline = ic_house_siding_outline; \ No newline at end of file diff --git a/dist/md/ic_house_siding_twotone.js b/dist/md/ic_house_siding_twotone.js new file mode 100644 index 000000000..437a81e39 --- /dev/null +++ b/dist/md/ic_house_siding_twotone.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_house_siding_twotone = void 0; +var ic_house_siding_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7.21,10h9.58L17,10.19V12H7v-1.81L7.21,10z M14.57,8H9.43L12,5.69L14.57,8z M7,16v-2h10v2H7z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19,12h3L12,3L2,12h3v8h2v-2h10v2h2V12z M7.21,10h9.58L17,10.19V12H7v-1.81L7.21,10z M14.57,8H9.43L12,5.69L14.57,8z M7,16 v-2h10v2H7z" + }, + "children": [] + }] +}; +exports.ic_house_siding_twotone = ic_house_siding_twotone; \ No newline at end of file diff --git a/dist/md/ic_house_twotone.js b/dist/md/ic_house_twotone.js new file mode 100644 index 000000000..2b569b332 --- /dev/null +++ b/dist/md/ic_house_twotone.js @@ -0,0 +1,81 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_house_twotone = void 0; +var ic_house_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M7,10.19V18h2v-6h6v6h2v-7.81l-5-4.5L7,10.19z M14,10h-4c0-1.1,0.9-2,2-2S14,8.9,14,10z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M7,10.19V18h2v-6h6v6h2v-7.81l-5-4.5L7,10.19z M14,10h-4c0-1.1,0.9-2,2-2S14,8.9,14,10z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19,9.3V4h-3v2.6L12,3L2,12h3v8h6v-6h2v6h6v-8h3L19,9.3z M17,18h-2v-6H9v6H7v-7.81l5-4.5l5,4.5V18z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,9.3V4h-3v2.6L12,3L2,12h3v8h6v-6h2v6h6v-8h3L19,9.3z M17,18h-2v-6H9v6H7v-7.81l5-4.5l5,4.5V18z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M10,10h4c0-1.1-0.9-2-2-2S10,8.9,10,10z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M10,10h4c0-1.1-0.9-2-2-2S10,8.9,10,10z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_house_twotone = ic_house_twotone; \ No newline at end of file diff --git a/dist/md/ic_how_to_reg.js b/dist/md/ic_how_to_reg.js new file mode 100644 index 000000000..3802f1d41 --- /dev/null +++ b/dist/md/ic_how_to_reg.js @@ -0,0 +1,49 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_how_to_reg = void 0; +var ic_how_to_reg = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none", + "fill-rule": "evenodd" + }, + "children": [] + }, { + "name": "g", + "attribs": { + "fill-rule": "evenodd" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M9 17l3-2.94c-.39-.04-.68-.06-1-.06-2.67 0-8 1.34-8 4v2h9l-3-3zm2-5c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M9 17l3-2.94c-.39-.04-.68-.06-1-.06-2.67 0-8 1.34-8 4v2h9l-3-3zm2-5c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M15.47 20.5L12 17l1.4-1.41 2.07 2.08 5.13-5.17 1.4 1.41z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15.47 20.5L12 17l1.4-1.41 2.07 2.08 5.13-5.17 1.4 1.41z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_how_to_reg = ic_how_to_reg; \ No newline at end of file diff --git a/dist/md/ic_how_to_reg_outline.js b/dist/md/ic_how_to_reg_outline.js new file mode 100644 index 000000000..6128cb896 --- /dev/null +++ b/dist/md/ic_how_to_reg_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_how_to_reg_outline = void 0; +var ic_how_to_reg_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zM5 18c.2-.63 2.57-1.68 4.96-1.94l2.04-2c-.39-.04-.68-.06-1-.06-2.67 0-8 1.34-8 4v2h9l-2-2H5zm15.6-5.5l-5.13 5.17-2.07-2.08L12 17l3.47 3.5L22 13.91z" + }, + "children": [] + }] +}; +exports.ic_how_to_reg_outline = ic_how_to_reg_outline; \ No newline at end of file diff --git a/dist/md/ic_how_to_reg_twotone.js b/dist/md/ic_how_to_reg_twotone.js new file mode 100644 index 000000000..8765f79a5 --- /dev/null +++ b/dist/md/ic_how_to_reg_twotone.js @@ -0,0 +1,40 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_how_to_reg_twotone = void 0; +var ic_how_to_reg_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "11", + "cy": "8", + "opacity": ".3", + "r": "2" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 18h4.99L9 17l.93-.94C7.55 16.33 5.2 17.37 5 18z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm-1 12H5c.2-.63 2.55-1.67 4.93-1.94h.03l.46-.45L12 14.06c-.39-.04-.68-.06-1-.06-2.67 0-8 1.34-8 4v2h9l-2-2zm10.6-5.5l-5.13 5.17-2.07-2.08L12 17l3.47 3.5L22 13.91z" + }, + "children": [] + }] +}; +exports.ic_how_to_reg_twotone = ic_how_to_reg_twotone; \ No newline at end of file diff --git a/dist/md/ic_how_to_vote.js b/dist/md/ic_how_to_vote.js new file mode 100644 index 000000000..ca1f47ceb --- /dev/null +++ b/dist/md/ic_how_to_vote.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_how_to_vote = void 0; +var ic_how_to_vote = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 13h-.68l-2 2h1.91L19 17H5l1.78-2h2.05l-2-2H6l-3 3v4c0 1.1.89 2 1.99 2H19c1.1 0 2-.89 2-2v-4l-3-3zm-1-5.05l-4.95 4.95-3.54-3.54 4.95-4.95L17 7.95zm-4.24-5.66L6.39 8.66c-.39.39-.39 1.02 0 1.41l4.95 4.95c.39.39 1.02.39 1.41 0l6.36-6.36c.39-.39.39-1.02 0-1.41L14.16 2.3c-.38-.4-1.01-.4-1.4-.01z" + }, + "children": [] + }] +}; +exports.ic_how_to_vote = ic_how_to_vote; \ No newline at end of file diff --git a/dist/md/ic_how_to_vote_outline.js b/dist/md/ic_how_to_vote_outline.js new file mode 100644 index 000000000..c66ce3ce3 --- /dev/null +++ b/dist/md/ic_how_to_vote_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_how_to_vote_outline = void 0; +var ic_how_to_vote_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 13h-.68l-2 2h1.91L19 17H5l1.78-2h2.05l-2-2H6l-3 3v4c0 1.1.89 2 1.99 2H19c1.1 0 2-.89 2-2v-4l-3-3zm1 7H5v-1h14v1zm-7.66-4.98c.39.39 1.02.39 1.41 0l6.36-6.36c.39-.39.39-1.02 0-1.41L14.16 2.3c-.38-.4-1.01-.4-1.4-.01L6.39 8.66c-.39.39-.39 1.02 0 1.41l4.95 4.95zm2.12-10.61L17 7.95l-4.95 4.95-3.54-3.54 4.95-4.95z" + }, + "children": [] + }] +}; +exports.ic_how_to_vote_outline = ic_how_to_vote_outline; \ No newline at end of file diff --git a/dist/md/ic_how_to_vote_twotone.js b/dist/md/ic_how_to_vote_twotone.js new file mode 100644 index 000000000..aabfb74f4 --- /dev/null +++ b/dist/md/ic_how_to_vote_twotone.js @@ -0,0 +1,44 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_how_to_vote_twotone = void 0; +var ic_how_to_vote_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 19h14v1H5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 13h-.68l-2 2h1.91L19 17H5l1.78-2h2.05l-2-2H6l-3 3v4c0 1.1.89 2 1.99 2H19c1.1 0 2-.89 2-2v-4l-3-3zm1 7H5v-1h14v1z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12.048 12.905L8.505 9.362l4.95-4.95 3.543 3.543z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.11 7.25L14.16 2.3c-.38-.4-1.01-.4-1.4-.01L6.39 8.66c-.39.39-.39 1.02 0 1.41l4.95 4.95c.39.39 1.02.39 1.41 0l6.36-6.36c.39-.39.39-1.02 0-1.41zm-7.06 5.65L8.51 9.36l4.95-4.95L17 7.95l-4.95 4.95z" + }, + "children": [] + }] +}; +exports.ic_how_to_vote_twotone = ic_how_to_vote_twotone; \ No newline at end of file diff --git a/dist/md/ic_http.js b/dist/md/ic_http.js new file mode 100644 index 000000000..a5399d46c --- /dev/null +++ b/dist/md/ic_http.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_http = void 0; +var ic_http = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M4.5 11h-2V9H1v6h1.5v-2.5h2V15H6V9H4.5v2zm2.5-.5h1.5V15H10v-4.5h1.5V9H7v1.5zm5.5 0H14V15h1.5v-4.5H17V9h-4.5v1.5zm9-1.5H18v6h1.5v-2h2c.8 0 1.5-.7 1.5-1.5v-1c0-.8-.7-1.5-1.5-1.5zm0 2.5h-2v-1h2v1z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M24 24H0V0h24v24z", + "fill": "none" + }, + "children": [] + }] +}; +exports.ic_http = ic_http; \ No newline at end of file diff --git a/dist/md/ic_http_outline.js b/dist/md/ic_http_outline.js new file mode 100644 index 000000000..1744d79ef --- /dev/null +++ b/dist/md/ic_http_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_http_outline = void 0; +var ic_http_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M24 24H0V0h24v24z", + "fill": "none", + "opacity": ".87" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4.5 11h-2V9H1v6h1.5v-2.5h2V15H6V9H4.5v2zm2.5-.5h1.5V15H10v-4.5h1.5V9H7v1.5zm5.5 0H14V15h1.5v-4.5H17V9h-4.5v1.5zm9-1.5H18v6h1.5v-2h2c.8 0 1.5-.7 1.5-1.5v-1c0-.8-.7-1.5-1.5-1.5zm0 2.5h-2v-1h2v1z" + }, + "children": [] + }] +}; +exports.ic_http_outline = ic_http_outline; \ No newline at end of file diff --git a/dist/md/ic_http_twotone.js b/dist/md/ic_http_twotone.js new file mode 100644 index 000000000..107e72c6e --- /dev/null +++ b/dist/md/ic_http_twotone.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_http_twotone = void 0; +var ic_http_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M24 24H0V0h24v24z", + "fill": "none", + "opacity": ".87" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4.5 11h-2V9H1v6h1.5v-2.5h2V15H6V9H4.5v2zm2.5-.5h1.5V15H10v-4.5h1.5V9H7v1.5zm5.5 0H14V15h1.5v-4.5H17V9h-4.5v1.5zm9-1.5H18v6h1.5v-2h2c.8 0 1.5-.7 1.5-1.5v-1c0-.8-.7-1.5-1.5-1.5zm0 2.5h-2v-1h2v1z" + }, + "children": [] + }] +}; +exports.ic_http_twotone = ic_http_twotone; \ No newline at end of file diff --git a/dist/md/ic_https.js b/dist/md/ic_https.js new file mode 100644 index 000000000..0b01bb933 --- /dev/null +++ b/dist/md/ic_https.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_https = void 0; +var ic_https = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2z" + }, + "children": [] + }] +}; +exports.ic_https = ic_https; \ No newline at end of file diff --git a/dist/md/ic_https_outline.js b/dist/md/ic_https_outline.js new file mode 100644 index 000000000..cf95eefbd --- /dev/null +++ b/dist/md/ic_https_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_https_outline = void 0; +var ic_https_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zM9 6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9V6zm9 14H6V10h12v10zm-6-3c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z" + }, + "children": [] + }] +}; +exports.ic_https_outline = ic_https_outline; \ No newline at end of file diff --git a/dist/md/ic_https_twotone.js b/dist/md/ic_https_twotone.js new file mode 100644 index 000000000..830778d91 --- /dev/null +++ b/dist/md/ic_https_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_https_twotone = void 0; +var ic_https_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 20h12V10H6v10zm6-7c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zM9 6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9V6zm9 14H6V10h12v10zm-6-3c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z" + }, + "children": [] + }] +}; +exports.ic_https_twotone = ic_https_twotone; \ No newline at end of file diff --git a/dist/md/ic_hvac.js b/dist/md/ic_hvac.js new file mode 100644 index 000000000..7ecb10179 --- /dev/null +++ b/dist/md/ic_hvac.js @@ -0,0 +1,143 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_hvac = void 0; +var ic_hvac = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,16c1.01,0,1.91-0.39,2.62-1H9.38C10.09,15.61,10.99,16,12,16z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,16c1.01,0,1.91-0.39,2.62-1H9.38C10.09,15.61,10.99,16,12,16z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M8.56,14h6.89c0.26-0.45,0.44-0.96,0.51-1.5h-7.9C8.12,13.04,8.29,13.55,8.56,14z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M8.56,14h6.89c0.26-0.45,0.44-0.96,0.51-1.5h-7.9C8.12,13.04,8.29,13.55,8.56,14z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,8c-1.01,0-1.91,0.39-2.62,1h5.24C13.91,8.39,13.01,8,12,8z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,8c-1.01,0-1.91,0.39-2.62,1h5.24C13.91,8.39,13.01,8,12,8z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M8.56,10c-0.26,0.45-0.44,0.96-0.51,1.5h7.9c-0.07-0.54-0.24-1.05-0.51-1.5H8.56z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M8.56,10c-0.26,0.45-0.44,0.96-0.51,1.5h7.9c-0.07-0.54-0.24-1.05-0.51-1.5H8.56z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M12,18c-3.31,0-6-2.69-6-6 s2.69-6,6-6s6,2.69,6,6S15.31,18,12,18z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M12,18c-3.31,0-6-2.69-6-6 s2.69-6,6-6s6,2.69,6,6S15.31,18,12,18z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_hvac = ic_hvac; \ No newline at end of file diff --git a/dist/md/ic_hvac_outline.js b/dist/md/ic_hvac_outline.js new file mode 100644 index 000000000..9671d8cd5 --- /dev/null +++ b/dist/md/ic_hvac_outline.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_hvac_outline = void 0; +var ic_hvac_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M12,18c3.31,0,6-2.69,6-6s-2.69-6-6-6s-6,2.69-6,6S8.69,18,12,18z M15.44,10c0.26,0.45,0.44,0.96,0.51,1.5h-7.9 c0.07-0.54,0.24-1.05,0.51-1.5H15.44z M15.95,12.5c-0.07,0.54-0.24,1.05-0.51,1.5H8.56c-0.26-0.45-0.44-0.96-0.51-1.5H15.95z M9.38,15h5.24c-0.7,0.61-1.61,1-2.62,1S10.09,15.61,9.38,15z M14.62,9H9.38c0.7-0.61,1.61-1,2.62-1S13.91,8.39,14.62,9z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,18c3.31,0,6-2.69,6-6s-2.69-6-6-6s-6,2.69-6,6S8.69,18,12,18z M15.44,10c0.26,0.45,0.44,0.96,0.51,1.5h-7.9 c0.07-0.54,0.24-1.05,0.51-1.5H15.44z M15.95,12.5c-0.07,0.54-0.24,1.05-0.51,1.5H8.56c-0.26-0.45-0.44-0.96-0.51-1.5H15.95z M9.38,15h5.24c-0.7,0.61-1.61,1-2.62,1S10.09,15.61,9.38,15z M14.62,9H9.38c0.7-0.61,1.61-1,2.62-1S13.91,8.39,14.62,9z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_hvac_outline = ic_hvac_outline; \ No newline at end of file diff --git a/dist/md/ic_hvac_twotone.js b/dist/md/ic_hvac_twotone.js new file mode 100644 index 000000000..5ec5c0033 --- /dev/null +++ b/dist/md/ic_hvac_twotone.js @@ -0,0 +1,81 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_hvac_twotone = void 0; +var ic_hvac_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M5,19h14V5H5V19z M12,6c3.31,0,6,2.69,6,6s-2.69,6-6,6s-6-2.69-6-6S8.69,6,12,6z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M5,19h14V5H5V19z M12,6c3.31,0,6,2.69,6,6s-2.69,6-6,6s-6-2.69-6-6S8.69,6,12,6z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M12,18c3.31,0,6-2.69,6-6s-2.69-6-6-6s-6,2.69-6,6S8.69,18,12,18z M12,16c-1.01,0-1.91-0.39-2.62-1h5.24 C13.91,15.61,13.01,16,12,16z M12,8c1.01,0,1.91,0.39,2.62,1H9.38C10.09,8.39,10.99,8,12,8z M8.56,10h6.89 c0.26,0.45,0.44,0.96,0.51,1.5h-7.9C8.12,10.96,8.29,10.45,8.56,10z M15.95,12.5c-0.07,0.54-0.24,1.05-0.51,1.5H8.56 c-0.26-0.45-0.44-0.96-0.51-1.5H15.95z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,18c3.31,0,6-2.69,6-6s-2.69-6-6-6s-6,2.69-6,6S8.69,18,12,18z M12,16c-1.01,0-1.91-0.39-2.62-1h5.24 C13.91,15.61,13.01,16,12,16z M12,8c1.01,0,1.91,0.39,2.62,1H9.38C10.09,8.39,10.99,8,12,8z M8.56,10h6.89 c0.26,0.45,0.44,0.96,0.51,1.5h-7.9C8.12,10.96,8.29,10.45,8.56,10z M15.95,12.5c-0.07,0.54-0.24,1.05-0.51,1.5H8.56 c-0.26-0.45-0.44-0.96-0.51-1.5H15.95z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_hvac_twotone = ic_hvac_twotone; \ No newline at end of file diff --git a/dist/md/ic_icecream.js b/dist/md/ic_icecream.js new file mode 100644 index 000000000..98ae09f53 --- /dev/null +++ b/dist/md/ic_icecream.js @@ -0,0 +1,49 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_icecream = void 0; +var ic_icecream = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M8.79,12.4l3.26,6.22l3.17-6.21c-0.11-0.08-0.21-0.16-0.3-0.25 C14.08,12.69,13.07,13,12,13s-2.08-0.31-2.92-0.84C8.99,12.25,8.89,12.33,8.79,12.4z M6.83,12.99C5.25,12.9,4,11.6,4,10 c0-1.49,1.09-2.73,2.52-2.96C6.75,4.22,9.12,2,12,2s5.25,2.22,5.48,5.04C18.91,7.27,20,8.51,20,10c0,1.59-1.24,2.9-2.81,2.99 L12.07,23L6.83,12.99z", + "fill-rule": "evenodd" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M8.79,12.4l3.26,6.22l3.17-6.21c-0.11-0.08-0.21-0.16-0.3-0.25 C14.08,12.69,13.07,13,12,13s-2.08-0.31-2.92-0.84C8.99,12.25,8.89,12.33,8.79,12.4z M6.83,12.99C5.25,12.9,4,11.6,4,10 c0-1.49,1.09-2.73,2.52-2.96C6.75,4.22,9.12,2,12,2s5.25,2.22,5.48,5.04C18.91,7.27,20,8.51,20,10c0,1.59-1.24,2.9-2.81,2.99 L12.07,23L6.83,12.99z", + "fill-rule": "evenodd" + }, + "children": [] + }] + }] + }] +}; +exports.ic_icecream = ic_icecream; \ No newline at end of file diff --git a/dist/md/ic_image.js b/dist/md/ic_image.js new file mode 100644 index 000000000..27495ec8a --- /dev/null +++ b/dist/md/ic_image.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_image = void 0; +var ic_image = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 19V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zM8.5 13.5l2.5 3.01L14.5 12l4.5 6H5l3.5-4.5z" + }, + "children": [] + }] +}; +exports.ic_image = ic_image; \ No newline at end of file diff --git a/dist/md/ic_image_aspect_ratio.js b/dist/md/ic_image_aspect_ratio.js new file mode 100644 index 000000000..3479136b8 --- /dev/null +++ b/dist/md/ic_image_aspect_ratio.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_image_aspect_ratio = void 0; +var ic_image_aspect_ratio = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 10h-2v2h2v-2zm0 4h-2v2h2v-2zm-8-4H6v2h2v-2zm4 0h-2v2h2v-2zm8-6H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h16v12z" + }, + "children": [] + }] +}; +exports.ic_image_aspect_ratio = ic_image_aspect_ratio; \ No newline at end of file diff --git a/dist/md/ic_image_aspect_ratio_outline.js b/dist/md/ic_image_aspect_ratio_outline.js new file mode 100644 index 000000000..4c67e25fe --- /dev/null +++ b/dist/md/ic_image_aspect_ratio_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_image_aspect_ratio_outline = void 0; +var ic_image_aspect_ratio_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 10h-2v2h2v-2zm0 4h-2v2h2v-2zm-8-4H6v2h2v-2zm4 0h-2v2h2v-2zm8-6H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h16v12z" + }, + "children": [] + }] +}; +exports.ic_image_aspect_ratio_outline = ic_image_aspect_ratio_outline; \ No newline at end of file diff --git a/dist/md/ic_image_aspect_ratio_twotone.js b/dist/md/ic_image_aspect_ratio_twotone.js new file mode 100644 index 000000000..e6bd61db3 --- /dev/null +++ b/dist/md/ic_image_aspect_ratio_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_image_aspect_ratio_twotone = void 0; +var ic_image_aspect_ratio_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 18h16V6H4v12zm10-8h2v2h-2v-2zm0 4h2v2h-2v-2zm-4-4h2v2h-2v-2zm-4 0h2v2H6v-2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 10h2v2h-2zm0 4h2v2h-2zm-8-4h2v2H6zm4 0h2v2h-2zm10-6H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h16v12z" + }, + "children": [] + }] +}; +exports.ic_image_aspect_ratio_twotone = ic_image_aspect_ratio_twotone; \ No newline at end of file diff --git a/dist/md/ic_image_not_supported.js b/dist/md/ic_image_not_supported.js new file mode 100644 index 000000000..7748d0b73 --- /dev/null +++ b/dist/md/ic_image_not_supported.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_image_not_supported = void 0; +var ic_image_not_supported = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M21.9,21.9l-8.49-8.49l0,0L3.59,3.59l0,0L2.1,2.1L0.69,3.51L3,5.83V19c0,1.1,0.9,2,2,2h13.17l2.31,2.31L21.9,21.9z M5,18 l3.5-4.5l2.5,3.01L12.17,15l3,3H5z M21,18.17L5.83,3H19c1.1,0,2,0.9,2,2V18.17z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21.9,21.9l-8.49-8.49l0,0L3.59,3.59l0,0L2.1,2.1L0.69,3.51L3,5.83V19c0,1.1,0.9,2,2,2h13.17l2.31,2.31L21.9,21.9z M5,18 l3.5-4.5l2.5,3.01L12.17,15l3,3H5z M21,18.17L5.83,3H19c1.1,0,2,0.9,2,2V18.17z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_image_not_supported = ic_image_not_supported; \ No newline at end of file diff --git a/dist/md/ic_image_not_supported_outline.js b/dist/md/ic_image_not_supported_outline.js new file mode 100644 index 000000000..c215df338 --- /dev/null +++ b/dist/md/ic_image_not_supported_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_image_not_supported_outline = void 0; +var ic_image_not_supported_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M21.9,21.9l-6.1-6.1l-2.69-2.69l0,0L5,5l0,0L3.59,3.59l0,0L2.1,2.1L0.69,3.51L3,5.83V19c0,1.1,0.9,2,2,2h13.17l2.31,2.31 L21.9,21.9z M5,19V7.83l6.84,6.84L11,15.72L9,13l-3,4h8.17l2,2H5z M7.83,5l-2-2H19c1.1,0,2,0.9,2,2v13.17l-2-2V5H7.83z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21.9,21.9l-6.1-6.1l-2.69-2.69l0,0L5,5l0,0L3.59,3.59l0,0L2.1,2.1L0.69,3.51L3,5.83V19c0,1.1,0.9,2,2,2h13.17l2.31,2.31 L21.9,21.9z M5,19V7.83l6.84,6.84L11,15.72L9,13l-3,4h8.17l2,2H5z M7.83,5l-2-2H19c1.1,0,2,0.9,2,2v13.17l-2-2V5H7.83z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_image_not_supported_outline = ic_image_not_supported_outline; \ No newline at end of file diff --git a/dist/md/ic_image_not_supported_twotone.js b/dist/md/ic_image_not_supported_twotone.js new file mode 100644 index 000000000..df1075a49 --- /dev/null +++ b/dist/md/ic_image_not_supported_twotone.js @@ -0,0 +1,65 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_image_not_supported_twotone = void 0; +var ic_image_not_supported_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M7.83,5H19v11.17L7.83,5z M16.17,19l-2-2H6l3-4l2,2.72l0.84-1.05L5,7.83V19H16.17z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M7.83,5H19v11.17L7.83,5z M16.17,19l-2-2H6l3-4l2,2.72l0.84-1.05L5,7.83V19H16.17z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M5.83,3H19c1.1,0,2,0.9,2,2v13.17l-2-2V5H7.83L5.83,3z M20.49,23.31L18.17,21H5c-1.1,0-2-0.9-2-2V5.83L0.69,3.51L2.1,2.1 l1.49,1.49L5,5l8.11,8.11l2.69,2.69L19,19l1.41,1.41l1.49,1.49L20.49,23.31z M16.17,19l-2-2H6l3-4l2,2.72l0.84-1.05L5,7.83V19 H16.17z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M5.83,3H19c1.1,0,2,0.9,2,2v13.17l-2-2V5H7.83L5.83,3z M20.49,23.31L18.17,21H5c-1.1,0-2-0.9-2-2V5.83L0.69,3.51L2.1,2.1 l1.49,1.49L5,5l8.11,8.11l2.69,2.69L19,19l1.41,1.41l1.49,1.49L20.49,23.31z M16.17,19l-2-2H6l3-4l2,2.72l0.84-1.05L5,7.83V19 H16.17z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_image_not_supported_twotone = ic_image_not_supported_twotone; \ No newline at end of file diff --git a/dist/md/ic_image_outline.js b/dist/md/ic_image_outline.js new file mode 100644 index 000000000..c1594e934 --- /dev/null +++ b/dist/md/ic_image_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_image_outline = void 0; +var ic_image_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4.86 8.86l-3 3.87L9 13.14 6 17h12l-3.86-5.14z" + }, + "children": [] + }] +}; +exports.ic_image_outline = ic_image_outline; \ No newline at end of file diff --git a/dist/md/ic_image_search.js b/dist/md/ic_image_search.js new file mode 100644 index 000000000..23bcc0522 --- /dev/null +++ b/dist/md/ic_image_search.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_image_search = void 0; +var ic_image_search = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 13v7H4V6h5.02c.05-.71.22-1.38.48-2H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-5l-2-2zm-1.5 5h-11l2.75-3.53 1.96 2.36 2.75-3.54zm2.8-9.11c.44-.7.7-1.51.7-2.39C20 4.01 17.99 2 15.5 2S11 4.01 11 6.5s2.01 4.5 4.49 4.5c.88 0 1.7-.26 2.39-.7L21 13.42 22.42 12 19.3 8.89zM15.5 9C14.12 9 13 7.88 13 6.5S14.12 4 15.5 4 18 5.12 18 6.5 16.88 9 15.5 9z" + }, + "children": [] + }] +}; +exports.ic_image_search = ic_image_search; \ No newline at end of file diff --git a/dist/md/ic_image_search_outline.js b/dist/md/ic_image_search_outline.js new file mode 100644 index 000000000..9b0fe4068 --- /dev/null +++ b/dist/md/ic_image_search_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_image_search_outline = void 0; +var ic_image_search_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 13v7H4V6h5.02c.05-.71.22-1.38.48-2H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-5l-2-2zm-1.5 5h-11l2.75-3.53 1.96 2.36 2.75-3.54L16.5 18zm2.8-9.11c.44-.7.7-1.51.7-2.39C20 4.01 17.99 2 15.5 2S11 4.01 11 6.5s2.01 4.5 4.49 4.5c.88 0 1.7-.26 2.39-.7L21 13.42 22.42 12 19.3 8.89zM15.5 9C14.12 9 13 7.88 13 6.5S14.12 4 15.5 4 18 5.12 18 6.5 16.88 9 15.5 9z" + }, + "children": [] + }] +}; +exports.ic_image_search_outline = ic_image_search_outline; \ No newline at end of file diff --git a/dist/md/ic_image_search_twotone.js b/dist/md/ic_image_search_twotone.js new file mode 100644 index 000000000..bd40a7d91 --- /dev/null +++ b/dist/md/ic_image_search_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_image_search_twotone = void 0; +var ic_image_search_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17.7 11.53c-.7.31-1.45.47-2.21.47C12.46 12 10 9.53 10 6.5c0-.17.01-.34.03-.5H4v14h14v-8.17l-.3-.3zM5.5 18l2.75-3.53 1.96 2.36 2.75-3.54L16.5 18h-11z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10.21 16.83l-1.96-2.36L5.5 18h11l-3.54-4.71zM20 6.5C20 4.01 17.99 2 15.5 2S11 4.01 11 6.5s2.01 4.5 4.49 4.5c.88 0 1.7-.26 2.39-.7L21 13.42 22.42 12 19.3 8.89c.44-.7.7-1.51.7-2.39zM15.5 9C14.12 9 13 7.88 13 6.5S14.12 4 15.5 4 18 5.12 18 6.5 16.88 9 15.5 9zM18 20H4V6h6.03c.06-.72.27-1.39.58-2H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-6.17l-2-2V20z" + }, + "children": [] + }] +}; +exports.ic_image_search_twotone = ic_image_search_twotone; \ No newline at end of file diff --git a/dist/md/ic_image_twotone.js b/dist/md/ic_image_twotone.js new file mode 100644 index 000000000..c60805bca --- /dev/null +++ b/dist/md/ic_image_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_image_twotone = void 0; +var ic_image_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 19h14V5H5v14zm4-5.86l2.14 2.58 3-3.87L18 17H6l3-3.86z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-4.86-7.14l-3 3.86L9 13.14 6 17h12z" + }, + "children": [] + }] +}; +exports.ic_image_twotone = ic_image_twotone; \ No newline at end of file diff --git a/dist/md/ic_imagesearch_roller.js b/dist/md/ic_imagesearch_roller.js new file mode 100644 index 000000000..dce28a433 --- /dev/null +++ b/dist/md/ic_imagesearch_roller.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_imagesearch_roller = void 0; +var ic_imagesearch_roller = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 2v6H6V6H4v4h10v5h2v8h-6v-8h2v-3H2V4h4V2" + }, + "children": [] + }] +}; +exports.ic_imagesearch_roller = ic_imagesearch_roller; \ No newline at end of file diff --git a/dist/md/ic_import_contacts.js b/dist/md/ic_import_contacts.js new file mode 100644 index 000000000..a69e4058d --- /dev/null +++ b/dist/md/ic_import_contacts.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_import_contacts = void 0; +var ic_import_contacts = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M17.5,4.5c-1.95,0-4.05,0.4-5.5,1.5c-1.45-1.1-3.55-1.5-5.5-1.5S2.45,4.9,1,6v14.65c0,0.65,0.73,0.45,0.75,0.45 C3.1,20.45,5.05,20,6.5,20c1.95,0,4.05,0.4,5.5,1.5c1.35-0.85,3.8-1.5,5.5-1.5c1.65,0,3.35,0.3,4.75,1.05 C22.66,21.26,23,20.86,23,20.6V6C21.51,4.88,19.37,4.5,17.5,4.5z M21,18.5c-1.1-0.35-2.3-0.5-3.5-0.5c-1.7,0-4.15,0.65-5.5,1.5V8 c1.35-0.85,3.8-1.5,5.5-1.5c1.2,0,2.4,0.15,3.5,0.5V18.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17.5,4.5c-1.95,0-4.05,0.4-5.5,1.5c-1.45-1.1-3.55-1.5-5.5-1.5S2.45,4.9,1,6v14.65c0,0.65,0.73,0.45,0.75,0.45 C3.1,20.45,5.05,20,6.5,20c1.95,0,4.05,0.4,5.5,1.5c1.35-0.85,3.8-1.5,5.5-1.5c1.65,0,3.35,0.3,4.75,1.05 C22.66,21.26,23,20.86,23,20.6V6C21.51,4.88,19.37,4.5,17.5,4.5z M21,18.5c-1.1-0.35-2.3-0.5-3.5-0.5c-1.7,0-4.15,0.65-5.5,1.5V8 c1.35-0.85,3.8-1.5,5.5-1.5c1.2,0,2.4,0.15,3.5,0.5V18.5z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_import_contacts = ic_import_contacts; \ No newline at end of file diff --git a/dist/md/ic_import_contacts_outline.js b/dist/md/ic_import_contacts_outline.js new file mode 100644 index 000000000..79ff75d6a --- /dev/null +++ b/dist/md/ic_import_contacts_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_import_contacts_outline = void 0; +var ic_import_contacts_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 5c-1.11-.35-2.33-.5-3.5-.5-1.95 0-4.05.4-5.5 1.5-1.45-1.1-3.55-1.5-5.5-1.5S2.45 4.9 1 6v14.65c0 .25.25.5.5.5.1 0 .15-.05.25-.05C3.1 20.45 5.05 20 6.5 20c1.95 0 4.05.4 5.5 1.5 1.35-.85 3.8-1.5 5.5-1.5 1.65 0 3.35.3 4.75 1.05.1.05.15.05.25.05.25 0 .5-.25.5-.5V6c-.6-.45-1.25-.75-2-1zm0 13.5c-1.1-.35-2.3-.5-3.5-.5-1.7 0-4.15.65-5.5 1.5V8c1.35-.85 3.8-1.5 5.5-1.5 1.2 0 2.4.15 3.5.5v11.5z" + }, + "children": [] + }] +}; +exports.ic_import_contacts_outline = ic_import_contacts_outline; \ No newline at end of file diff --git a/dist/md/ic_import_contacts_twotone.js b/dist/md/ic_import_contacts_twotone.js new file mode 100644 index 000000000..ad014c303 --- /dev/null +++ b/dist/md/ic_import_contacts_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_import_contacts_twotone = void 0; +var ic_import_contacts_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 5c-1.11-.35-2.33-.5-3.5-.5-1.95 0-4.05.4-5.5 1.5-1.45-1.1-3.55-1.5-5.5-1.5S2.45 4.9 1 6v14.65c0 .25.25.5.5.5.1 0 .15-.05.25-.05C3.1 20.45 5.05 20 6.5 20c1.95 0 4.05.4 5.5 1.5 1.35-.85 3.8-1.5 5.5-1.5 1.65 0 3.35.3 4.75 1.05.1.05.15.05.25.05.25 0 .5-.25.5-.5V6c-.6-.45-1.25-.75-2-1zM3 18.5V7c1.1-.35 2.3-.5 3.5-.5 1.34 0 3.13.41 4.5.99v11.5C9.63 18.41 7.84 18 6.5 18c-1.2 0-2.4.15-3.5.5zm18 0c-1.1-.35-2.3-.5-3.5-.5-1.34 0-3.13.41-4.5.99V7.49c1.37-.59 3.16-.99 4.5-.99 1.2 0 2.4.15 3.5.5v11.5z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 7.49c-1.37-.58-3.16-.99-4.5-.99-1.2 0-2.4.15-3.5.5v11.5c1.1-.35 2.3-.5 3.5-.5 1.34 0 3.13.41 4.5.99V7.49z", + "opacity": ".3" + }, + "children": [] + }] +}; +exports.ic_import_contacts_twotone = ic_import_contacts_twotone; \ No newline at end of file diff --git a/dist/md/ic_import_export.js b/dist/md/ic_import_export.js new file mode 100644 index 000000000..c682ce5a2 --- /dev/null +++ b/dist/md/ic_import_export.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_import_export = void 0; +var ic_import_export = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 3L5 6.99h3V14h2V6.99h3L9 3zm7 14.01V10h-2v7.01h-3L15 21l4-3.99h-3z" + }, + "children": [] + }] +}; +exports.ic_import_export = ic_import_export; \ No newline at end of file diff --git a/dist/md/ic_import_export_outline.js b/dist/md/ic_import_export_outline.js new file mode 100644 index 000000000..02842a994 --- /dev/null +++ b/dist/md/ic_import_export_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_import_export_outline = void 0; +var ic_import_export_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 3L5 6.99h3V14h2V6.99h3L9 3zm7 14.01V10h-2v7.01h-3L15 21l4-3.99h-3z" + }, + "children": [] + }] +}; +exports.ic_import_export_outline = ic_import_export_outline; \ No newline at end of file diff --git a/dist/md/ic_import_export_twotone.js b/dist/md/ic_import_export_twotone.js new file mode 100644 index 000000000..755af5c4b --- /dev/null +++ b/dist/md/ic_import_export_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_import_export_twotone = void 0; +var ic_import_export_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 6.99h3V14h2V6.99h3L9 3zM14 10v7.01h-3L15 21l4-3.99h-3V10z" + }, + "children": [] + }] +}; +exports.ic_import_export_twotone = ic_import_export_twotone; \ No newline at end of file diff --git a/dist/md/ic_important_devices.js b/dist/md/ic_important_devices.js new file mode 100644 index 000000000..ba55b673b --- /dev/null +++ b/dist/md/ic_important_devices.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_important_devices = void 0; +var ic_important_devices = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M23 11.01L18 11c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-9c0-.55-.45-.99-1-.99zM23 20h-5v-7h5v7zM20 2H2C.89 2 0 2.89 0 4v12c0 1.1.89 2 2 2h7v2H7v2h8v-2h-2v-2h2v-2H2V4h18v5h2V4c0-1.11-.9-2-2-2zm-8.03 7L11 6l-.97 3H7l2.47 1.76-.94 2.91 2.47-1.8 2.47 1.8-.94-2.91L15 9h-3.03z" + }, + "children": [] + }] +}; +exports.ic_important_devices = ic_important_devices; \ No newline at end of file diff --git a/dist/md/ic_important_devices_outline.js b/dist/md/ic_important_devices_outline.js new file mode 100644 index 000000000..27fa66e9d --- /dev/null +++ b/dist/md/ic_important_devices_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_important_devices_outline = void 0; +var ic_important_devices_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M23 11.01L18 11c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-9c0-.55-.45-.99-1-.99zM23 20h-5v-7h5v7zM20 2H2C.89 2 0 2.89 0 4v12c0 1.1.89 2 2 2h7v2H7v2h8v-2h-2v-2h2v-2H2V4h18v5h2V4c0-1.11-.9-2-2-2zm-8.03 7L11 6l-.97 3H7l2.47 1.76-.94 2.91 2.47-1.8 2.47 1.8-.94-2.91L15 9h-3.03z" + }, + "children": [] + }] +}; +exports.ic_important_devices_outline = ic_important_devices_outline; \ No newline at end of file diff --git a/dist/md/ic_important_devices_twotone.js b/dist/md/ic_important_devices_twotone.js new file mode 100644 index 000000000..bedb4049a --- /dev/null +++ b/dist/md/ic_important_devices_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_important_devices_twotone = void 0; +var ic_important_devices_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 13h5v7h-5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M23 11.01L18 11c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-9c0-.55-.45-.99-1-.99zM23 20h-5v-7h5v7zM2 4h18v5h2V4c0-1.11-.9-2-2-2H2C.89 2 0 2.89 0 4v12c0 1.1.89 2 2 2h7v2H7v2h8v-2h-2v-2h2v-2H2V4zm9 2l-.97 3H7l2.47 1.76-.94 2.91 2.47-1.8 2.47 1.8-.94-2.91L15 9h-3.03z" + }, + "children": [] + }] +}; +exports.ic_important_devices_twotone = ic_important_devices_twotone; \ No newline at end of file diff --git a/dist/md/ic_inbox.js b/dist/md/ic_inbox.js new file mode 100644 index 000000000..97d6ca2d5 --- /dev/null +++ b/dist/md/ic_inbox.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_inbox = void 0; +var ic_inbox = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H4.99c-1.11 0-1.98.89-1.98 2L3 19c0 1.1.88 2 1.99 2H19c1.1 0 2-.9 2-2V5c0-1.11-.9-2-2-2zm0 12h-4c0 1.66-1.35 3-3 3s-3-1.34-3-3H4.99V5H19v10z" + }, + "children": [] + }] +}; +exports.ic_inbox = ic_inbox; \ No newline at end of file diff --git a/dist/md/ic_inbox_outline.js b/dist/md/ic_inbox_outline.js new file mode 100644 index 000000000..324544b1e --- /dev/null +++ b/dist/md/ic_inbox_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_inbox_outline = void 0; +var ic_inbox_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5v-3h3.56c.69 1.19 1.97 2 3.45 2s2.75-.81 3.45-2H19v3zm0-5h-4.99c0 1.1-.9 2-2 2s-2-.9-2-2H5V5h14v9z" + }, + "children": [] + }] +}; +exports.ic_inbox_outline = ic_inbox_outline; \ No newline at end of file diff --git a/dist/md/ic_inbox_twotone.js b/dist/md/ic_inbox_twotone.js new file mode 100644 index 000000000..e41598140 --- /dev/null +++ b/dist/md/ic_inbox_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_inbox_twotone = void 0; +var ic_inbox_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12.01 18c-1.48 0-2.75-.81-3.45-2H5v3h14v-3h-3.55c-.69 1.19-1.97 2-3.44 2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5v-3h3.56c.69 1.19 1.97 2 3.45 2s2.75-.81 3.45-2H19v3zm0-5h-5c0 1.1-.9 2-2 2s-2-.9-2-2H5V5h14v9z" + }, + "children": [] + }] +}; +exports.ic_inbox_twotone = ic_inbox_twotone; \ No newline at end of file diff --git a/dist/md/ic_indeterminate_check_box.js b/dist/md/ic_indeterminate_check_box.js new file mode 100644 index 000000000..f489af262 --- /dev/null +++ b/dist/md/ic_indeterminate_check_box.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_indeterminate_check_box = void 0; +var ic_indeterminate_check_box = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M17,13H7v-2h10V13z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M17,13H7v-2h10V13z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_indeterminate_check_box = ic_indeterminate_check_box; \ No newline at end of file diff --git a/dist/md/ic_indeterminate_check_box_outline.js b/dist/md/ic_indeterminate_check_box_outline.js new file mode 100644 index 000000000..41b8b60c0 --- /dev/null +++ b/dist/md/ic_indeterminate_check_box_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_indeterminate_check_box_outline = void 0; +var ic_indeterminate_check_box_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM7 11h10v2H7z" + }, + "children": [] + }] +}; +exports.ic_indeterminate_check_box_outline = ic_indeterminate_check_box_outline; \ No newline at end of file diff --git a/dist/md/ic_indeterminate_check_box_twotone.js b/dist/md/ic_indeterminate_check_box_twotone.js new file mode 100644 index 000000000..88c5dd23e --- /dev/null +++ b/dist/md/ic_indeterminate_check_box_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_indeterminate_check_box_twotone = void 0; +var ic_indeterminate_check_box_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 19h14V5H5v14zm2-8h10v2H7v-2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM7 11h10v2H7z" + }, + "children": [] + }] +}; +exports.ic_indeterminate_check_box_twotone = ic_indeterminate_check_box_twotone; \ No newline at end of file diff --git a/dist/md/ic_info.js b/dist/md/ic_info.js new file mode 100644 index 000000000..13945063a --- /dev/null +++ b/dist/md/ic_info.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_info = void 0; +var ic_info = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z" + }, + "children": [] + }] +}; +exports.ic_info = ic_info; \ No newline at end of file diff --git a/dist/md/ic_info_outline.js b/dist/md/ic_info_outline.js new file mode 100644 index 000000000..e4e96525f --- /dev/null +++ b/dist/md/ic_info_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_info_outline = void 0; +var ic_info_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 7h2v2h-2zm0 4h2v6h-2zm1-9C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" + }, + "children": [] + }] +}; +exports.ic_info_outline = ic_info_outline; \ No newline at end of file diff --git a/dist/md/ic_info_outline_twotone.js b/dist/md/ic_info_outline_twotone.js new file mode 100644 index 000000000..ec7cb849d --- /dev/null +++ b/dist/md/ic_info_outline_twotone.js @@ -0,0 +1,49 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_info_outline_twotone = void 0; +var ic_info_outline_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": { + "fill": "none" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "opacity": ".87" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "opacity": ".87" + }, + "children": [] + }] + }] + }, { + "name": "path", + "attribs": { + "d": "M11 17h2v-6h-2v6zm1-15C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zM11 9h2V7h-2v2z" + }, + "children": [] + }] +}; +exports.ic_info_outline_twotone = ic_info_outline_twotone; \ No newline at end of file diff --git a/dist/md/ic_info_twotone.js b/dist/md/ic_info_twotone.js new file mode 100644 index 000000000..f62a0d73a --- /dev/null +++ b/dist/md/ic_info_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_info_twotone = void 0; +var ic_info_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm1 13h-2v-6h2v6zm0-8h-2V7h2v2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 7h2v2h-2zm0 4h2v6h-2zm1-9C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" + }, + "children": [] + }] +}; +exports.ic_info_twotone = ic_info_twotone; \ No newline at end of file diff --git a/dist/md/ic_input.js b/dist/md/ic_input.js new file mode 100644 index 000000000..e6434a30c --- /dev/null +++ b/dist/md/ic_input.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_input = void 0; +var ic_input = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 3.01H3c-1.1 0-2 .9-2 2V9h2V4.99h18v14.03H3V15H1v4.01c0 1.1.9 1.98 2 1.98h18c1.1 0 2-.88 2-1.98v-14c0-1.11-.9-2-2-2zM11 16l4-4-4-4v3H1v2h10v3z" + }, + "children": [] + }] +}; +exports.ic_input = ic_input; \ No newline at end of file diff --git a/dist/md/ic_input_outline.js b/dist/md/ic_input_outline.js new file mode 100644 index 000000000..b6446d795 --- /dev/null +++ b/dist/md/ic_input_outline.js @@ -0,0 +1,49 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_input_outline = void 0; +var ic_input_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": { + "fill": "none" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "opacity": ".87" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "opacity": ".87" + }, + "children": [] + }] + }] + }, { + "name": "path", + "attribs": { + "d": "M21 3.01H3c-1.1 0-2 .9-2 2V9h2V4.99h18v14.03H3V15H1v4.01c0 1.1.9 1.98 2 1.98h18c1.1 0 2-.88 2-1.98v-14c0-1.11-.9-2-2-2zM11 16l4-4-4-4v3H1v2h10v3zM21 3.01H3c-1.1 0-2 .9-2 2V9h2V4.99h18v14.03H3V15H1v4.01c0 1.1.9 1.98 2 1.98h18c1.1 0 2-.88 2-1.98v-14c0-1.11-.9-2-2-2zM11 16l4-4-4-4v3H1v2h10v3z" + }, + "children": [] + }] +}; +exports.ic_input_outline = ic_input_outline; \ No newline at end of file diff --git a/dist/md/ic_input_twotone.js b/dist/md/ic_input_twotone.js new file mode 100644 index 000000000..8c3b2eb50 --- /dev/null +++ b/dist/md/ic_input_twotone.js @@ -0,0 +1,49 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_input_twotone = void 0; +var ic_input_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": { + "fill": "none" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "opacity": ".87" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "opacity": ".87" + }, + "children": [] + }] + }] + }, { + "name": "path", + "attribs": { + "d": "M21 3.01H3c-1.1 0-2 .9-2 2V9h2V4.99h18v14.03H3V15H1v4.01c0 1.1.9 1.98 2 1.98h18c1.1 0 2-.88 2-1.98v-14c0-1.11-.9-2-2-2zM11 16l4-4-4-4v3H1v2h10v3z" + }, + "children": [] + }] +}; +exports.ic_input_twotone = ic_input_twotone; \ No newline at end of file diff --git a/dist/md/ic_insert_chart.js b/dist/md/ic_insert_chart.js new file mode 100644 index 000000000..e211abca3 --- /dev/null +++ b/dist/md/ic_insert_chart.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_insert_chart = void 0; +var ic_insert_chart = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z" + }, + "children": [] + }] +}; +exports.ic_insert_chart = ic_insert_chart; \ No newline at end of file diff --git a/dist/md/ic_insert_chart_outline.js b/dist/md/ic_insert_chart_outline.js new file mode 100644 index 000000000..a18d60416 --- /dev/null +++ b/dist/md/ic_insert_chart_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_insert_chart_outline = void 0; +var ic_insert_chart_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM7 10h2v7H7zm4-3h2v10h-2zm4 6h2v4h-2z" + }, + "children": [] + }] +}; +exports.ic_insert_chart_outline = ic_insert_chart_outline; \ No newline at end of file diff --git a/dist/md/ic_insert_chart_outlined.js b/dist/md/ic_insert_chart_outlined.js new file mode 100644 index 000000000..cf74669b8 --- /dev/null +++ b/dist/md/ic_insert_chart_outlined.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_insert_chart_outlined = void 0; +var ic_insert_chart_outlined = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4zm2.5 2.1h-15V5h15v14.1zm0-16.1h-15c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h15c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_insert_chart_outlined = ic_insert_chart_outlined; \ No newline at end of file diff --git a/dist/md/ic_insert_chart_outlined_outline.js b/dist/md/ic_insert_chart_outlined_outline.js new file mode 100644 index 000000000..4423014f4 --- /dev/null +++ b/dist/md/ic_insert_chart_outlined_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_insert_chart_outlined_outline = void 0; +var ic_insert_chart_outlined_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4zm2 2H5V5h14v14zm0-16H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_insert_chart_outlined_outline = ic_insert_chart_outlined_outline; \ No newline at end of file diff --git a/dist/md/ic_insert_chart_outlined_twotone.js b/dist/md/ic_insert_chart_outlined_twotone.js new file mode 100644 index 000000000..95b907a37 --- /dev/null +++ b/dist/md/ic_insert_chart_outlined_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_insert_chart_outlined_twotone = void 0; +var ic_insert_chart_outlined_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4zm2 2H5V5h14v14zm0-16H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_insert_chart_outlined_twotone = ic_insert_chart_outlined_twotone; \ No newline at end of file diff --git a/dist/md/ic_insert_chart_twotone.js b/dist/md/ic_insert_chart_twotone.js new file mode 100644 index 000000000..96b455a57 --- /dev/null +++ b/dist/md/ic_insert_chart_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_insert_chart_twotone = void 0; +var ic_insert_chart_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 5H5v14h14V5zM9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 5v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2zm2 0h14v14H5V5zm2 5h2v7H7zm4-3h2v10h-2zm4 6h2v4h-2z" + }, + "children": [] + }] +}; +exports.ic_insert_chart_twotone = ic_insert_chart_twotone; \ No newline at end of file diff --git a/dist/md/ic_insert_comment.js b/dist/md/ic_insert_comment.js new file mode 100644 index 000000000..a5c354296 --- /dev/null +++ b/dist/md/ic_insert_comment.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_insert_comment = void 0; +var ic_insert_comment = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4V4c0-1.1-.9-2-2-2zm-2 12H6v-2h12v2zm0-3H6V9h12v2zm0-3H6V6h12v2z" + }, + "children": [] + }] +}; +exports.ic_insert_comment = ic_insert_comment; \ No newline at end of file diff --git a/dist/md/ic_insert_comment_outline.js b/dist/md/ic_insert_comment_outline.js new file mode 100644 index 000000000..ae9d2eeef --- /dev/null +++ b/dist/md/ic_insert_comment_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_insert_comment_outline = void 0; +var ic_insert_comment_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 4v13.17L18.83 16H4V4h16m0-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4V4c0-1.1-.9-2-2-2zm-2 10H6v2h12v-2zm0-3H6v2h12V9zm0-3H6v2h12V6z" + }, + "children": [] + }] +}; +exports.ic_insert_comment_outline = ic_insert_comment_outline; \ No newline at end of file diff --git a/dist/md/ic_insert_comment_twotone.js b/dist/md/ic_insert_comment_twotone.js new file mode 100644 index 000000000..4c5f334ab --- /dev/null +++ b/dist/md/ic_insert_comment_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_insert_comment_twotone = void 0; +var ic_insert_comment_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 16h14.83L20 17.17V4H4v12zM6 6h12v2H6V6zm0 3h12v2H6V9zm0 3h12v2H6v-2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4V4c0-1.1-.9-2-2-2zm0 2v13.17L18.83 16H4V4h16zM6 12h12v2H6zm0-3h12v2H6zm0-3h12v2H6z" + }, + "children": [] + }] +}; +exports.ic_insert_comment_twotone = ic_insert_comment_twotone; \ No newline at end of file diff --git a/dist/md/ic_insert_drive_file.js b/dist/md/ic_insert_drive_file.js new file mode 100644 index 000000000..c05624e8a --- /dev/null +++ b/dist/md/ic_insert_drive_file.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_insert_drive_file = void 0; +var ic_insert_drive_file = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 2c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6H6zm7 7V3.5L18.5 9H13z" + }, + "children": [] + }] +}; +exports.ic_insert_drive_file = ic_insert_drive_file; \ No newline at end of file diff --git a/dist/md/ic_insert_drive_file_outline.js b/dist/md/ic_insert_drive_file_outline.js new file mode 100644 index 000000000..548dd6fdc --- /dev/null +++ b/dist/md/ic_insert_drive_file_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_insert_drive_file_outline = void 0; +var ic_insert_drive_file_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zM6 20V4h7v5h5v11H6z" + }, + "children": [] + }] +}; +exports.ic_insert_drive_file_outline = ic_insert_drive_file_outline; \ No newline at end of file diff --git a/dist/md/ic_insert_drive_file_twotone.js b/dist/md/ic_insert_drive_file_twotone.js new file mode 100644 index 000000000..f188a32c6 --- /dev/null +++ b/dist/md/ic_insert_drive_file_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_insert_drive_file_twotone = void 0; +var ic_insert_drive_file_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 4H6v16h12V9h-5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 8l-6-6H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8zm-2 12H6V4h7v5h5v11z" + }, + "children": [] + }] +}; +exports.ic_insert_drive_file_twotone = ic_insert_drive_file_twotone; \ No newline at end of file diff --git a/dist/md/ic_insert_emoticon.js b/dist/md/ic_insert_emoticon.js new file mode 100644 index 000000000..c3ab55791 --- /dev/null +++ b/dist/md/ic_insert_emoticon.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_insert_emoticon = void 0; +var ic_insert_emoticon = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 6.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z" + }, + "children": [] + }] +}; +exports.ic_insert_emoticon = ic_insert_emoticon; \ No newline at end of file diff --git a/dist/md/ic_insert_emoticon_outline.js b/dist/md/ic_insert_emoticon_outline.js new file mode 100644 index 000000000..24fe58484 --- /dev/null +++ b/dist/md/ic_insert_emoticon_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_insert_emoticon_outline = void 0; +var ic_insert_emoticon_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 6.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z" + }, + "children": [] + }] +}; +exports.ic_insert_emoticon_outline = ic_insert_emoticon_outline; \ No newline at end of file diff --git a/dist/md/ic_insert_emoticon_twotone.js b/dist/md/ic_insert_emoticon_twotone.js new file mode 100644 index 000000000..4cfd274ac --- /dev/null +++ b/dist/md/ic_insert_emoticon_twotone.js @@ -0,0 +1,53 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_insert_emoticon_twotone = void 0; +var ic_insert_emoticon_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm3.5 4c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-7 0c.83 0 1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5 7.67 8 8.5 8zm3.5 9.5c-2.33 0-4.31-1.46-5.11-3.5h10.22c-.8 2.04-2.78 3.5-5.11 3.5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "15.5", + "cy": "9.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "8.5", + "cy": "9.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 17.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z" + }, + "children": [] + }] +}; +exports.ic_insert_emoticon_twotone = ic_insert_emoticon_twotone; \ No newline at end of file diff --git a/dist/md/ic_insert_invitation.js b/dist/md/ic_insert_invitation.js new file mode 100644 index 000000000..0ca471748 --- /dev/null +++ b/dist/md/ic_insert_invitation.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_insert_invitation = void 0; +var ic_insert_invitation = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 12h-5v5h5v-5zM16 1v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2h-1V1h-2zm3 18H5V8h14v11z" + }, + "children": [] + }] +}; +exports.ic_insert_invitation = ic_insert_invitation; \ No newline at end of file diff --git a/dist/md/ic_insert_invitation_outline.js b/dist/md/ic_insert_invitation_outline.js new file mode 100644 index 000000000..22d231ebb --- /dev/null +++ b/dist/md/ic_insert_invitation_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_insert_invitation_outline = void 0; +var ic_insert_invitation_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V9h14v10zm0-12H5V5h14v2zm-2 5h-5v5h5v-5z" + }, + "children": [] + }] +}; +exports.ic_insert_invitation_outline = ic_insert_invitation_outline; \ No newline at end of file diff --git a/dist/md/ic_insert_invitation_twotone.js b/dist/md/ic_insert_invitation_twotone.js new file mode 100644 index 000000000..c36361554 --- /dev/null +++ b/dist/md/ic_insert_invitation_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_insert_invitation_twotone = void 0; +var ic_insert_invitation_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 5H5v2h14z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 21h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2zM5 7V5h14v2H5zm0 2h14v10H5V9zm7 3h5v5h-5z" + }, + "children": [] + }] +}; +exports.ic_insert_invitation_twotone = ic_insert_invitation_twotone; \ No newline at end of file diff --git a/dist/md/ic_insert_link.js b/dist/md/ic_insert_link.js new file mode 100644 index 000000000..ff640a776 --- /dev/null +++ b/dist/md/ic_insert_link.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_insert_link = void 0; +var ic_insert_link = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z" + }, + "children": [] + }] +}; +exports.ic_insert_link = ic_insert_link; \ No newline at end of file diff --git a/dist/md/ic_insert_link_outline.js b/dist/md/ic_insert_link_outline.js new file mode 100644 index 000000000..7c3a193cf --- /dev/null +++ b/dist/md/ic_insert_link_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_insert_link_outline = void 0; +var ic_insert_link_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z" + }, + "children": [] + }] +}; +exports.ic_insert_link_outline = ic_insert_link_outline; \ No newline at end of file diff --git a/dist/md/ic_insert_link_twotone.js b/dist/md/ic_insert_link_twotone.js new file mode 100644 index 000000000..2f7730fe9 --- /dev/null +++ b/dist/md/ic_insert_link_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_insert_link_twotone = void 0; +var ic_insert_link_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z" + }, + "children": [] + }] +}; +exports.ic_insert_link_twotone = ic_insert_link_twotone; \ No newline at end of file diff --git a/dist/md/ic_insert_photo.js b/dist/md/ic_insert_photo.js new file mode 100644 index 000000000..6ea4496ec --- /dev/null +++ b/dist/md/ic_insert_photo.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_insert_photo = void 0; +var ic_insert_photo = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 19V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zM8.5 13.5l2.5 3.01L14.5 12l4.5 6H5l3.5-4.5z" + }, + "children": [] + }] +}; +exports.ic_insert_photo = ic_insert_photo; \ No newline at end of file diff --git a/dist/md/ic_insert_photo_outline.js b/dist/md/ic_insert_photo_outline.js new file mode 100644 index 000000000..9f232afcf --- /dev/null +++ b/dist/md/ic_insert_photo_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_insert_photo_outline = void 0; +var ic_insert_photo_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4.86 8.86l-3 3.87L9 13.14 6 17h12l-3.86-5.14z" + }, + "children": [] + }] +}; +exports.ic_insert_photo_outline = ic_insert_photo_outline; \ No newline at end of file diff --git a/dist/md/ic_insert_photo_twotone.js b/dist/md/ic_insert_photo_twotone.js new file mode 100644 index 000000000..122ebf7ba --- /dev/null +++ b/dist/md/ic_insert_photo_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_insert_photo_twotone = void 0; +var ic_insert_photo_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 19h14V5H5v14zm4-5.86l2.14 2.58 3-3.87L18 17H6l3-3.86z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 5v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2zm16 14H5V5h14v14zm-4.86-7.14l-3 3.86L9 13.14 6 17h12z" + }, + "children": [] + }] +}; +exports.ic_insert_photo_twotone = ic_insert_photo_twotone; \ No newline at end of file diff --git a/dist/md/ic_insights.js b/dist/md/ic_insights.js new file mode 100644 index 000000000..ab8b3e602 --- /dev/null +++ b/dist/md/ic_insights.js @@ -0,0 +1,79 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_insights = void 0; +var ic_insights = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M21,8c-1.45,0-2.26,1.44-1.93,2.51l-3.55,3.56c-0.3-0.09-0.74-0.09-1.04,0l-2.55-2.55C12.27,10.45,11.46,9,10,9 c-1.45,0-2.27,1.44-1.93,2.52l-4.56,4.55C2.44,15.74,1,16.55,1,18c0,1.1,0.9,2,2,2c1.45,0,2.26-1.44,1.93-2.51l4.55-4.56 c0.3,0.09,0.74,0.09,1.04,0l2.55,2.55C12.73,16.55,13.54,18,15,18c1.45,0,2.27-1.44,1.93-2.52l3.56-3.55 C21.56,12.26,23,11.45,23,10C23,8.9,22.1,8,21,8z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21,8c-1.45,0-2.26,1.44-1.93,2.51l-3.55,3.56c-0.3-0.09-0.74-0.09-1.04,0l-2.55-2.55C12.27,10.45,11.46,9,10,9 c-1.45,0-2.27,1.44-1.93,2.52l-4.56,4.55C2.44,15.74,1,16.55,1,18c0,1.1,0.9,2,2,2c1.45,0,2.26-1.44,1.93-2.51l4.55-4.56 c0.3,0.09,0.74,0.09,1.04,0l2.55,2.55C12.73,16.55,13.54,18,15,18c1.45,0,2.27-1.44,1.93-2.52l3.56-3.55 C21.56,12.26,23,11.45,23,10C23,8.9,22.1,8,21,8z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "15,9 15.94,6.93 18,6 15.94,5.07 15,3 14.08,5.07 12,6 14.08,6.93" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "15,9 15.94,6.93 18,6 15.94,5.07 15,3 14.08,5.07 12,6 14.08,6.93" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "3.5,11 4,9 6,8.5 4,8 3.5,6 3,8 1,8.5 3,9" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "3.5,11 4,9 6,8.5 4,8 3.5,6 3,8 1,8.5 3,9" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_insights = ic_insights; \ No newline at end of file diff --git a/dist/md/ic_insights_outline.js b/dist/md/ic_insights_outline.js new file mode 100644 index 000000000..9f958f4ac --- /dev/null +++ b/dist/md/ic_insights_outline.js @@ -0,0 +1,79 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_insights_outline = void 0; +var ic_insights_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M21,8c-1.45,0-2.26,1.44-1.93,2.51l-3.55,3.56c-0.3-0.09-0.74-0.09-1.04,0l-2.55-2.55C12.27,10.45,11.46,9,10,9 c-1.45,0-2.27,1.44-1.93,2.52l-4.56,4.55C2.44,15.74,1,16.55,1,18c0,1.1,0.9,2,2,2c1.45,0,2.26-1.44,1.93-2.51l4.55-4.56 c0.3,0.09,0.74,0.09,1.04,0l2.55,2.55C12.73,16.55,13.54,18,15,18c1.45,0,2.27-1.44,1.93-2.52l3.56-3.55 C21.56,12.26,23,11.45,23,10C23,8.9,22.1,8,21,8z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21,8c-1.45,0-2.26,1.44-1.93,2.51l-3.55,3.56c-0.3-0.09-0.74-0.09-1.04,0l-2.55-2.55C12.27,10.45,11.46,9,10,9 c-1.45,0-2.27,1.44-1.93,2.52l-4.56,4.55C2.44,15.74,1,16.55,1,18c0,1.1,0.9,2,2,2c1.45,0,2.26-1.44,1.93-2.51l4.55-4.56 c0.3,0.09,0.74,0.09,1.04,0l2.55,2.55C12.73,16.55,13.54,18,15,18c1.45,0,2.27-1.44,1.93-2.52l3.56-3.55 C21.56,12.26,23,11.45,23,10C23,8.9,22.1,8,21,8z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "15,9 15.94,6.93 18,6 15.94,5.07 15,3 14.08,5.07 12,6 14.08,6.93" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "15,9 15.94,6.93 18,6 15.94,5.07 15,3 14.08,5.07 12,6 14.08,6.93" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "3.5,11 4,9 6,8.5 4,8 3.5,6 3,8 1,8.5 3,9" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "3.5,11 4,9 6,8.5 4,8 3.5,6 3,8 1,8.5 3,9" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_insights_outline = ic_insights_outline; \ No newline at end of file diff --git a/dist/md/ic_insights_twotone.js b/dist/md/ic_insights_twotone.js new file mode 100644 index 000000000..072eac74f --- /dev/null +++ b/dist/md/ic_insights_twotone.js @@ -0,0 +1,79 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_insights_twotone = void 0; +var ic_insights_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M21,8c-1.45,0-2.26,1.44-1.93,2.51l-3.55,3.56c-0.3-0.09-0.74-0.09-1.04,0l-2.55-2.55C12.27,10.45,11.46,9,10,9 c-1.45,0-2.27,1.44-1.93,2.52l-4.56,4.55C2.44,15.74,1,16.55,1,18c0,1.1,0.9,2,2,2c1.45,0,2.26-1.44,1.93-2.51l4.55-4.56 c0.3,0.09,0.74,0.09,1.04,0l2.55,2.55C12.73,16.55,13.54,18,15,18c1.45,0,2.27-1.44,1.93-2.52l3.56-3.55 C21.56,12.26,23,11.45,23,10C23,8.9,22.1,8,21,8z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21,8c-1.45,0-2.26,1.44-1.93,2.51l-3.55,3.56c-0.3-0.09-0.74-0.09-1.04,0l-2.55-2.55C12.27,10.45,11.46,9,10,9 c-1.45,0-2.27,1.44-1.93,2.52l-4.56,4.55C2.44,15.74,1,16.55,1,18c0,1.1,0.9,2,2,2c1.45,0,2.26-1.44,1.93-2.51l4.55-4.56 c0.3,0.09,0.74,0.09,1.04,0l2.55,2.55C12.73,16.55,13.54,18,15,18c1.45,0,2.27-1.44,1.93-2.52l3.56-3.55 C21.56,12.26,23,11.45,23,10C23,8.9,22.1,8,21,8z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "15,9 15.94,6.93 18,6 15.94,5.07 15,3 14.08,5.07 12,6 14.08,6.93" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "15,9 15.94,6.93 18,6 15.94,5.07 15,3 14.08,5.07 12,6 14.08,6.93" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "3.5,11 4,9 6,8.5 4,8 3.5,6 3,8 1,8.5 3,9" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "3.5,11 4,9 6,8.5 4,8 3.5,6 3,8 1,8.5 3,9" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_insights_twotone = ic_insights_twotone; \ No newline at end of file diff --git a/dist/md/ic_integration_instructions.js b/dist/md/ic_integration_instructions.js new file mode 100644 index 000000000..af68043e4 --- /dev/null +++ b/dist/md/ic_integration_instructions.js @@ -0,0 +1,97 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_integration_instructions = void 0; +var ic_integration_instructions = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "3.5", + "fill": "none", + "r": ".75" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "3.5", + "fill": "none", + "r": ".75" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "3.5", + "fill": "none", + "r": ".75" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "3.5", + "fill": "none", + "r": ".75" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "3.5", + "fill": "none", + "r": ".75" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "3.5", + "fill": "none", + "r": ".75" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19,3h-4.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H5C4.86,3,4.73,3.01,4.6,3.04C4.21,3.12,3.86,3.32,3.59,3.59 c-0.18,0.18-0.33,0.4-0.43,0.64C3.06,4.46,3,4.72,3,5v14c0,0.27,0.06,0.54,0.16,0.78c0.1,0.24,0.25,0.45,0.43,0.64 c0.27,0.27,0.62,0.47,1.01,0.55C4.73,20.99,4.86,21,5,21h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M11,14.17l-1.41,1.42L6,12 l3.59-3.59L11,9.83L8.83,12L11,14.17z M12,4.25c-0.41,0-0.75-0.34-0.75-0.75S11.59,2.75,12,2.75s0.75,0.34,0.75,0.75 S12.41,4.25,12,4.25z M14.41,15.59L13,14.17L15.17,12L13,9.83l1.41-1.42L18,12L14.41,15.59z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,3h-4.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H5C4.86,3,4.73,3.01,4.6,3.04C4.21,3.12,3.86,3.32,3.59,3.59 c-0.18,0.18-0.33,0.4-0.43,0.64C3.06,4.46,3,4.72,3,5v14c0,0.27,0.06,0.54,0.16,0.78c0.1,0.24,0.25,0.45,0.43,0.64 c0.27,0.27,0.62,0.47,1.01,0.55C4.73,20.99,4.86,21,5,21h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M11,14.17l-1.41,1.42L6,12 l3.59-3.59L11,9.83L8.83,12L11,14.17z M12,4.25c-0.41,0-0.75-0.34-0.75-0.75S11.59,2.75,12,2.75s0.75,0.34,0.75,0.75 S12.41,4.25,12,4.25z M14.41,15.59L13,14.17L15.17,12L13,9.83l1.41-1.42L18,12L14.41,15.59z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_integration_instructions = ic_integration_instructions; \ No newline at end of file diff --git a/dist/md/ic_integration_instructions_outline.js b/dist/md/ic_integration_instructions_outline.js new file mode 100644 index 000000000..5bfcb9bef --- /dev/null +++ b/dist/md/ic_integration_instructions_outline.js @@ -0,0 +1,125 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_integration_instructions_outline = void 0; +var ic_integration_instructions_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "3.5", + "fill": "none", + "r": ".75" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "3.5", + "fill": "none", + "r": ".75" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "3.5", + "fill": "none", + "r": ".75" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "3.5", + "fill": "none", + "r": ".75" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "fill": "none", + "points": "5,15 5,16 5,19 19,19 19,16 19,15 19,5 5,5" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill": "none", + "points": "5,15 5,16 5,19 19,19 19,16 19,15 19,5 5,5" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "11,14.17 8.83,12 11,9.83 9.59,8.41 6,12 9.59,15.59" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "11,14.17 8.83,12 11,9.83 9.59,8.41 6,12 9.59,15.59" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "14.41,15.59 18,12 14.41,8.41 13,9.83 15.17,12 13,14.17" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "14.41,15.59 18,12 14.41,8.41 13,9.83 15.17,12 13,14.17" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19,3h-4.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H5C4.86,3,4.73,3.01,4.6,3.04C4.21,3.12,3.86,3.32,3.59,3.59 c-0.18,0.18-0.33,0.4-0.43,0.64C3.06,4.46,3,4.72,3,5v10v1v3c0,0.27,0.06,0.54,0.16,0.78c0.1,0.24,0.25,0.45,0.43,0.64 c0.27,0.27,0.62,0.47,1.01,0.55C4.73,20.99,4.86,21,5,21h14c1.1,0,2-0.9,2-2v-3v-1V5C21,3.9,20.1,3,19,3z M12,2.75 c0.41,0,0.75,0.34,0.75,0.75S12.41,4.25,12,4.25s-0.75-0.34-0.75-0.75S11.59,2.75,12,2.75z M19,15v1v3H5v-3v-1V5h14V15z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,3h-4.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H5C4.86,3,4.73,3.01,4.6,3.04C4.21,3.12,3.86,3.32,3.59,3.59 c-0.18,0.18-0.33,0.4-0.43,0.64C3.06,4.46,3,4.72,3,5v10v1v3c0,0.27,0.06,0.54,0.16,0.78c0.1,0.24,0.25,0.45,0.43,0.64 c0.27,0.27,0.62,0.47,1.01,0.55C4.73,20.99,4.86,21,5,21h14c1.1,0,2-0.9,2-2v-3v-1V5C21,3.9,20.1,3,19,3z M12,2.75 c0.41,0,0.75,0.34,0.75,0.75S12.41,4.25,12,4.25s-0.75-0.34-0.75-0.75S11.59,2.75,12,2.75z M19,15v1v3H5v-3v-1V5h14V15z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_integration_instructions_outline = ic_integration_instructions_outline; \ No newline at end of file diff --git a/dist/md/ic_integration_instructions_twotone.js b/dist/md/ic_integration_instructions_twotone.js new file mode 100644 index 000000000..78292b847 --- /dev/null +++ b/dist/md/ic_integration_instructions_twotone.js @@ -0,0 +1,183 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_integration_instructions_twotone = void 0; +var ic_integration_instructions_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "3.5", + "fill": "none", + "r": ".75" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "3.5", + "fill": "none", + "r": ".75" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "3.5", + "fill": "none", + "r": ".75" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "3.5", + "fill": "none", + "r": ".75" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "x1": "19", + "x2": "5", + "y1": "5", + "y2": "5" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "x1": "19", + "x2": "5", + "y1": "5", + "y2": "5" + }, + "children": [] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "x1": "5", + "x2": "19", + "y1": "19", + "y2": "19" + }, + "children": [{ + "name": "line", + "attribs": { + "fill": "none", + "x1": "5", + "x2": "19", + "y1": "19", + "y2": "19" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "11,14.17 8.83,12 11,9.83 9.59,8.41 6,12 9.59,15.59" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "11,14.17 8.83,12 11,9.83 9.59,8.41 6,12 9.59,15.59" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "14.41,15.59 18,12 14.41,8.41 13,9.83 15.17,12 13,14.17" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "14.41,15.59 18,12 14.41,8.41 13,9.83 15.17,12 13,14.17" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19,3h-4.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H5C4.86,3,4.73,3.01,4.6,3.04C4.21,3.12,3.86,3.32,3.59,3.59 c-0.18,0.18-0.33,0.4-0.43,0.64C3.06,4.46,3,4.72,3,5v10v1v3c0,0.27,0.06,0.54,0.16,0.78c0.1,0.24,0.25,0.45,0.43,0.64 c0.27,0.27,0.62,0.47,1.01,0.55C4.73,20.99,4.86,21,5,21h14c1.1,0,2-0.9,2-2v-3v-1V5C21,3.9,20.1,3,19,3z M12,2.75 c0.41,0,0.75,0.34,0.75,0.75S12.41,4.25,12,4.25s-0.75-0.34-0.75-0.75S11.59,2.75,12,2.75z M19,19H5V5h14V19z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,3h-4.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H5C4.86,3,4.73,3.01,4.6,3.04C4.21,3.12,3.86,3.32,3.59,3.59 c-0.18,0.18-0.33,0.4-0.43,0.64C3.06,4.46,3,4.72,3,5v10v1v3c0,0.27,0.06,0.54,0.16,0.78c0.1,0.24,0.25,0.45,0.43,0.64 c0.27,0.27,0.62,0.47,1.01,0.55C4.73,20.99,4.86,21,5,21h14c1.1,0,2-0.9,2-2v-3v-1V5C21,3.9,20.1,3,19,3z M12,2.75 c0.41,0,0.75,0.34,0.75,0.75S12.41,4.25,12,4.25s-0.75-0.34-0.75-0.75S11.59,2.75,12,2.75z M19,19H5V5h14V19z" + }, + "children": [] + }] + }] + }] + }] + }, { + "name": "line", + "attribs": { + "fill": "none", + "opacity": ".3", + "x1": "19", + "x2": "5", + "y1": "5", + "y2": "5" + }, + "children": [] + }, { + "name": "line", + "attribs": { + "fill": "none", + "opacity": ".3", + "x1": "5", + "x2": "19", + "y1": "19", + "y2": "19" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "height": "14", + "opacity": ".3", + "width": "14", + "x": "5", + "y": "5" + }, + "children": [] + }] +}; +exports.ic_integration_instructions_twotone = ic_integration_instructions_twotone; \ No newline at end of file diff --git a/dist/md/ic_inventory.js b/dist/md/ic_inventory.js new file mode 100644 index 000000000..1f3f9f798 --- /dev/null +++ b/dist/md/ic_inventory.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_inventory = void 0; +var ic_inventory = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 2H4c-1 0-2 .9-2 2v3.01c0 .72.43 1.34 1 1.69V20c0 1.1 1.1 2 2 2h14c.9 0 2-.9 2-2V8.7c.57-.35 1-.97 1-1.69V4c0-1.1-1-2-2-2zm-5 12H9v-2h6v2zm5-7H4V4l16-.02V7z" + }, + "children": [] + }] +}; +exports.ic_inventory = ic_inventory; \ No newline at end of file diff --git a/dist/md/ic_invert_colors.js b/dist/md/ic_invert_colors.js new file mode 100644 index 000000000..19bb4f3fe --- /dev/null +++ b/dist/md/ic_invert_colors.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_invert_colors = void 0; +var ic_invert_colors = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M24 0H0v24h24z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17.66 7.93L12 2.27 6.34 7.93c-3.12 3.12-3.12 8.19 0 11.31C7.9 20.8 9.95 21.58 12 21.58c2.05 0 4.1-.78 5.66-2.34 3.12-3.12 3.12-8.19 0-11.31zM12 19.59c-1.6 0-3.11-.62-4.24-1.76C6.62 16.69 6 15.19 6 13.59s.62-3.11 1.76-4.24L12 5.1v14.49z" + }, + "children": [] + }] +}; +exports.ic_invert_colors = ic_invert_colors; \ No newline at end of file diff --git a/dist/md/ic_invert_colors_off.js b/dist/md/ic_invert_colors_off.js new file mode 100644 index 000000000..6aaf5a589 --- /dev/null +++ b/dist/md/ic_invert_colors_off.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_invert_colors_off = void 0; +var ic_invert_colors_off = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0zm0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20.65 20.87l-2.35-2.35-6.3-6.29-3.56-3.57-1.42-1.41L4.27 4.5 3 5.77l2.78 2.78c-2.55 3.14-2.36 7.76.56 10.69C7.9 20.8 9.95 21.58 12 21.58c1.79 0 3.57-.59 5.03-1.78l2.7 2.7L21 21.23l-.35-.36zM12 19.59c-1.6 0-3.11-.62-4.24-1.76C6.62 16.69 6 15.19 6 13.59c0-1.32.43-2.57 1.21-3.6L12 14.77v4.82zM12 5.1v4.58l7.25 7.26c1.37-2.96.84-6.57-1.6-9.01L12 2.27l-3.7 3.7 1.41 1.41L12 5.1z" + }, + "children": [] + }] +}; +exports.ic_invert_colors_off = ic_invert_colors_off; \ No newline at end of file diff --git a/dist/md/ic_invert_colors_off_outline.js b/dist/md/ic_invert_colors_off_outline.js new file mode 100644 index 000000000..09ced8019 --- /dev/null +++ b/dist/md/ic_invert_colors_off_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_invert_colors_off_outline = void 0; +var ic_invert_colors_off_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 5.1v4.05l7.4 7.4c1.15-2.88.59-6.28-1.75-8.61L12 2.27 8.56 5.71l1.41 1.41L12 5.1zm-7.6-.73L2.99 5.78l2.78 2.78c-2.54 3.14-2.35 7.75.57 10.68C7.9 20.8 9.95 21.58 12 21.58c1.78 0 3.56-.59 5.02-1.77l2.7 2.7 1.41-1.41L4.4 4.37zM12 19.59c-1.6 0-3.11-.62-4.24-1.76C6.62 16.69 6 15.19 6 13.59c0-1.32.43-2.56 1.21-3.59L12 14.79v4.8z" + }, + "children": [] + }] +}; +exports.ic_invert_colors_off_outline = ic_invert_colors_off_outline; \ No newline at end of file diff --git a/dist/md/ic_invert_colors_off_twotone.js b/dist/md/ic_invert_colors_off_twotone.js new file mode 100644 index 000000000..6f557e7db --- /dev/null +++ b/dist/md/ic_invert_colors_off_twotone.js @@ -0,0 +1,38 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_invert_colors_off_twotone = void 0; +var ic_invert_colors_off_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 13.59c0 1.6.62 3.1 1.76 4.24 1.13 1.14 2.64 1.76 4.24 1.76v-4.8L7.21 10C6.43 11.03 6 12.27 6 13.59z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 5.1v4.05l7.4 7.4c1.15-2.88.59-6.28-1.75-8.61L12 2.27 8.56 5.71l1.41 1.41L12 5.1zm-7.6-.73L2.99 5.78l2.78 2.78c-2.54 3.14-2.35 7.75.57 10.68C7.9 20.8 9.95 21.58 12 21.58c1.78 0 3.56-.59 5.02-1.77l2.7 2.7 1.41-1.41L4.4 4.37zM12 19.59c-1.6 0-3.11-.62-4.24-1.76C6.62 16.69 6 15.19 6 13.59c0-1.32.43-2.56 1.21-3.59L12 14.79v4.8z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 9.15V5.1L9.97 7.12z", + "opacity": ".3" + }, + "children": [] + }] +}; +exports.ic_invert_colors_off_twotone = ic_invert_colors_off_twotone; \ No newline at end of file diff --git a/dist/md/ic_invert_colors_outline.js b/dist/md/ic_invert_colors_outline.js new file mode 100644 index 000000000..6282cf274 --- /dev/null +++ b/dist/md/ic_invert_colors_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_invert_colors_outline = void 0; +var ic_invert_colors_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M24 0H0v24h24V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17.66 7.93L12 2.27 6.34 7.93c-3.12 3.12-3.12 8.19 0 11.31C7.9 20.8 9.95 21.58 12 21.58s4.1-.78 5.66-2.34c3.12-3.12 3.12-8.19 0-11.31zM12 19.59c-1.6 0-3.11-.62-4.24-1.76C6.62 16.69 6 15.19 6 13.59s.62-3.11 1.76-4.24L12 5.1v14.49z" + }, + "children": [] + }] +}; +exports.ic_invert_colors_outline = ic_invert_colors_outline; \ No newline at end of file diff --git a/dist/md/ic_invert_colors_twotone.js b/dist/md/ic_invert_colors_twotone.js new file mode 100644 index 000000000..acbb5572f --- /dev/null +++ b/dist/md/ic_invert_colors_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_invert_colors_twotone = void 0; +var ic_invert_colors_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M24 0H0v24h24V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 13.59c0 1.6.62 3.1 1.76 4.24 1.13 1.14 2.64 1.76 4.24 1.76V5.1L7.76 9.35C6.62 10.48 6 11.99 6 13.59z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17.66 7.93L12 2.27 6.34 7.93c-3.12 3.12-3.12 8.19 0 11.31C7.9 20.8 9.95 21.58 12 21.58s4.1-.78 5.66-2.34c3.12-3.12 3.12-8.19 0-11.31zM12 19.59c-1.6 0-3.11-.62-4.24-1.76C6.62 16.69 6 15.19 6 13.59s.62-3.11 1.76-4.24L12 5.1v14.49z" + }, + "children": [] + }] +}; +exports.ic_invert_colors_twotone = ic_invert_colors_twotone; \ No newline at end of file diff --git a/dist/md/ic_ios_share.js b/dist/md/ic_ios_share.js new file mode 100644 index 000000000..187b550f9 --- /dev/null +++ b/dist/md/ic_ios_share.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_ios_share = void 0; +var ic_ios_share = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 5l-1.42 1.42-1.59-1.59V16h-1.98V4.83L9.42 6.42 8 5l4-4 4 4zm4 5v11c0 1.1-.9 2-2 2H6c-1.11 0-2-.9-2-2V10c0-1.11.89-2 2-2h3v2H6v11h12V10h-3V8h3c1.1 0 2 .89 2 2z" + }, + "children": [] + }] +}; +exports.ic_ios_share = ic_ios_share; \ No newline at end of file diff --git a/dist/md/ic_iso.js b/dist/md/ic_iso.js new file mode 100644 index 000000000..cd36ccaa5 --- /dev/null +++ b/dist/md/ic_iso.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_iso = void 0; +var ic_iso = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0zm0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5.5 7.5h2v-2H9v2h2V9H9v2H7.5V9h-2V7.5zM19 19H5L19 5v14zm-2-2v-1.5h-5V17h5z" + }, + "children": [] + }] +}; +exports.ic_iso = ic_iso; \ No newline at end of file diff --git a/dist/md/ic_iso_outline.js b/dist/md/ic_iso_outline.js new file mode 100644 index 000000000..3b5948714 --- /dev/null +++ b/dist/md/ic_iso_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_iso_outline = void 0; +var ic_iso_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5.5 7.5h2v-2H9v2h2V9H9v2H7.5V9h-2V7.5zM19 19H5L19 5v14zm-2-2v-1.5h-5V17h5z" + }, + "children": [] + }] +}; +exports.ic_iso_outline = ic_iso_outline; \ No newline at end of file diff --git a/dist/md/ic_iso_twotone.js b/dist/md/ic_iso_twotone.js new file mode 100644 index 000000000..7823eb044 --- /dev/null +++ b/dist/md/ic_iso_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_iso_twotone = void 0; +var ic_iso_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 19V5L5 19h14zm-2-3.5V17h-5v-1.5h5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 15.5h5V17h-5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5.5 7.5h2v-2H9v2h2V9H9v2H7.5V9h-2V7.5zM19 19H5L19 5v14z" + }, + "children": [] + }] +}; +exports.ic_iso_twotone = ic_iso_twotone; \ No newline at end of file diff --git a/dist/md/ic_keyboard.js b/dist/md/ic_keyboard.js new file mode 100644 index 000000000..f3e273cb7 --- /dev/null +++ b/dist/md/ic_keyboard.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_keyboard = void 0; +var ic_keyboard = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M20 5H4c-1.1 0-1.99.9-1.99 2L2 17c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-9 3h2v2h-2V8zm0 3h2v2h-2v-2zM8 8h2v2H8V8zm0 3h2v2H8v-2zm-1 2H5v-2h2v2zm0-3H5V8h2v2zm9 7H8v-2h8v2zm0-4h-2v-2h2v2zm0-3h-2V8h2v2zm3 3h-2v-2h2v2zm0-3h-2V8h2v2z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M0 0h24v24H0zm0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }] +}; +exports.ic_keyboard = ic_keyboard; \ No newline at end of file diff --git a/dist/md/ic_keyboard_arrow_down.js b/dist/md/ic_keyboard_arrow_down.js new file mode 100644 index 000000000..b32e9d3fe --- /dev/null +++ b/dist/md/ic_keyboard_arrow_down.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_keyboard_arrow_down = void 0; +var ic_keyboard_arrow_down = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z" + }, + "children": [] + }] +}; +exports.ic_keyboard_arrow_down = ic_keyboard_arrow_down; \ No newline at end of file diff --git a/dist/md/ic_keyboard_arrow_down_outline.js b/dist/md/ic_keyboard_arrow_down_outline.js new file mode 100644 index 000000000..7c6f15b88 --- /dev/null +++ b/dist/md/ic_keyboard_arrow_down_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_keyboard_arrow_down_outline = void 0; +var ic_keyboard_arrow_down_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z" + }, + "children": [] + }] +}; +exports.ic_keyboard_arrow_down_outline = ic_keyboard_arrow_down_outline; \ No newline at end of file diff --git a/dist/md/ic_keyboard_arrow_down_twotone.js b/dist/md/ic_keyboard_arrow_down_twotone.js new file mode 100644 index 000000000..dfed17f72 --- /dev/null +++ b/dist/md/ic_keyboard_arrow_down_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_keyboard_arrow_down_twotone = void 0; +var ic_keyboard_arrow_down_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z" + }, + "children": [] + }] +}; +exports.ic_keyboard_arrow_down_twotone = ic_keyboard_arrow_down_twotone; \ No newline at end of file diff --git a/dist/md/ic_keyboard_arrow_left.js b/dist/md/ic_keyboard_arrow_left.js new file mode 100644 index 000000000..8bafd9904 --- /dev/null +++ b/dist/md/ic_keyboard_arrow_left.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_keyboard_arrow_left = void 0; +var ic_keyboard_arrow_left = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.41 16.59L10.83 12l4.58-4.59L14 6l-6 6 6 6 1.41-1.41z" + }, + "children": [] + }] +}; +exports.ic_keyboard_arrow_left = ic_keyboard_arrow_left; \ No newline at end of file diff --git a/dist/md/ic_keyboard_arrow_left_outline.js b/dist/md/ic_keyboard_arrow_left_outline.js new file mode 100644 index 000000000..94418db79 --- /dev/null +++ b/dist/md/ic_keyboard_arrow_left_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_keyboard_arrow_left_outline = void 0; +var ic_keyboard_arrow_left_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.41 16.59L10.83 12l4.58-4.59L14 6l-6 6 6 6 1.41-1.41z" + }, + "children": [] + }] +}; +exports.ic_keyboard_arrow_left_outline = ic_keyboard_arrow_left_outline; \ No newline at end of file diff --git a/dist/md/ic_keyboard_arrow_left_twotone.js b/dist/md/ic_keyboard_arrow_left_twotone.js new file mode 100644 index 000000000..749afdcbb --- /dev/null +++ b/dist/md/ic_keyboard_arrow_left_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_keyboard_arrow_left_twotone = void 0; +var ic_keyboard_arrow_left_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.41 16.59L10.83 12l4.58-4.59L14 6l-6 6 6 6 1.41-1.41z" + }, + "children": [] + }] +}; +exports.ic_keyboard_arrow_left_twotone = ic_keyboard_arrow_left_twotone; \ No newline at end of file diff --git a/dist/md/ic_keyboard_arrow_right.js b/dist/md/ic_keyboard_arrow_right.js new file mode 100644 index 000000000..03831f198 --- /dev/null +++ b/dist/md/ic_keyboard_arrow_right.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_keyboard_arrow_right = void 0; +var ic_keyboard_arrow_right = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z" + }, + "children": [] + }] +}; +exports.ic_keyboard_arrow_right = ic_keyboard_arrow_right; \ No newline at end of file diff --git a/dist/md/ic_keyboard_arrow_right_outline.js b/dist/md/ic_keyboard_arrow_right_outline.js new file mode 100644 index 000000000..a2df94bdb --- /dev/null +++ b/dist/md/ic_keyboard_arrow_right_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_keyboard_arrow_right_outline = void 0; +var ic_keyboard_arrow_right_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z" + }, + "children": [] + }] +}; +exports.ic_keyboard_arrow_right_outline = ic_keyboard_arrow_right_outline; \ No newline at end of file diff --git a/dist/md/ic_keyboard_arrow_right_twotone.js b/dist/md/ic_keyboard_arrow_right_twotone.js new file mode 100644 index 000000000..8bb6e1d0e --- /dev/null +++ b/dist/md/ic_keyboard_arrow_right_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_keyboard_arrow_right_twotone = void 0; +var ic_keyboard_arrow_right_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z" + }, + "children": [] + }] +}; +exports.ic_keyboard_arrow_right_twotone = ic_keyboard_arrow_right_twotone; \ No newline at end of file diff --git a/dist/md/ic_keyboard_arrow_up.js b/dist/md/ic_keyboard_arrow_up.js new file mode 100644 index 000000000..bd1d65f63 --- /dev/null +++ b/dist/md/ic_keyboard_arrow_up.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_keyboard_arrow_up = void 0; +var ic_keyboard_arrow_up = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7.41 15.41L12 10.83l4.59 4.58L18 14l-6-6-6 6z" + }, + "children": [] + }] +}; +exports.ic_keyboard_arrow_up = ic_keyboard_arrow_up; \ No newline at end of file diff --git a/dist/md/ic_keyboard_arrow_up_outline.js b/dist/md/ic_keyboard_arrow_up_outline.js new file mode 100644 index 000000000..f1719efd0 --- /dev/null +++ b/dist/md/ic_keyboard_arrow_up_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_keyboard_arrow_up_outline = void 0; +var ic_keyboard_arrow_up_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7.41 15.41L12 10.83l4.59 4.58L18 14l-6-6-6 6 1.41 1.41z" + }, + "children": [] + }] +}; +exports.ic_keyboard_arrow_up_outline = ic_keyboard_arrow_up_outline; \ No newline at end of file diff --git a/dist/md/ic_keyboard_arrow_up_twotone.js b/dist/md/ic_keyboard_arrow_up_twotone.js new file mode 100644 index 000000000..ec486aaba --- /dev/null +++ b/dist/md/ic_keyboard_arrow_up_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_keyboard_arrow_up_twotone = void 0; +var ic_keyboard_arrow_up_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7.41 15.41L12 10.83l4.59 4.58L18 14l-6-6-6 6 1.41 1.41z" + }, + "children": [] + }] +}; +exports.ic_keyboard_arrow_up_twotone = ic_keyboard_arrow_up_twotone; \ No newline at end of file diff --git a/dist/md/ic_keyboard_backspace.js b/dist/md/ic_keyboard_backspace.js new file mode 100644 index 000000000..19fb11649 --- /dev/null +++ b/dist/md/ic_keyboard_backspace.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_keyboard_backspace = void 0; +var ic_keyboard_backspace = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 11H6.83l3.58-3.59L9 6l-6 6 6 6 1.41-1.41L6.83 13H21z" + }, + "children": [] + }] +}; +exports.ic_keyboard_backspace = ic_keyboard_backspace; \ No newline at end of file diff --git a/dist/md/ic_keyboard_backspace_outline.js b/dist/md/ic_keyboard_backspace_outline.js new file mode 100644 index 000000000..736065471 --- /dev/null +++ b/dist/md/ic_keyboard_backspace_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_keyboard_backspace_outline = void 0; +var ic_keyboard_backspace_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 11H6.83l3.58-3.59L9 6l-6 6 6 6 1.41-1.41L6.83 13H21v-2z" + }, + "children": [] + }] +}; +exports.ic_keyboard_backspace_outline = ic_keyboard_backspace_outline; \ No newline at end of file diff --git a/dist/md/ic_keyboard_backspace_twotone.js b/dist/md/ic_keyboard_backspace_twotone.js new file mode 100644 index 000000000..665854d92 --- /dev/null +++ b/dist/md/ic_keyboard_backspace_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_keyboard_backspace_twotone = void 0; +var ic_keyboard_backspace_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 11H6.83l3.58-3.59L9 6l-6 6 6 6 1.41-1.41L6.83 13H21v-2z" + }, + "children": [] + }] +}; +exports.ic_keyboard_backspace_twotone = ic_keyboard_backspace_twotone; \ No newline at end of file diff --git a/dist/md/ic_keyboard_capslock.js b/dist/md/ic_keyboard_capslock.js new file mode 100644 index 000000000..3a8809922 --- /dev/null +++ b/dist/md/ic_keyboard_capslock.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_keyboard_capslock = void 0; +var ic_keyboard_capslock = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 8.41L16.59 13 18 11.59l-6-6-6 6L7.41 13 12 8.41zM6 18h12v-2H6v2z" + }, + "children": [] + }] +}; +exports.ic_keyboard_capslock = ic_keyboard_capslock; \ No newline at end of file diff --git a/dist/md/ic_keyboard_capslock_outline.js b/dist/md/ic_keyboard_capslock_outline.js new file mode 100644 index 000000000..604d799fc --- /dev/null +++ b/dist/md/ic_keyboard_capslock_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_keyboard_capslock_outline = void 0; +var ic_keyboard_capslock_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 8.41L16.59 13 18 11.59l-6-6-6 6L7.41 13 12 8.41zM6 18h12v-2H6v2z" + }, + "children": [] + }] +}; +exports.ic_keyboard_capslock_outline = ic_keyboard_capslock_outline; \ No newline at end of file diff --git a/dist/md/ic_keyboard_capslock_twotone.js b/dist/md/ic_keyboard_capslock_twotone.js new file mode 100644 index 000000000..f7ef1a1ba --- /dev/null +++ b/dist/md/ic_keyboard_capslock_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_keyboard_capslock_twotone = void 0; +var ic_keyboard_capslock_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 8.41L16.59 13 18 11.59l-6-6-6 6L7.41 13 12 8.41zM6 18h12v-2H6v2z" + }, + "children": [] + }] +}; +exports.ic_keyboard_capslock_twotone = ic_keyboard_capslock_twotone; \ No newline at end of file diff --git a/dist/md/ic_keyboard_hide.js b/dist/md/ic_keyboard_hide.js new file mode 100644 index 000000000..06f37e41b --- /dev/null +++ b/dist/md/ic_keyboard_hide.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_keyboard_hide = void 0; +var ic_keyboard_hide = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 3H4c-1.1 0-1.99.9-1.99 2L2 15c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 3h2v2h-2V6zm0 3h2v2h-2V9zM8 6h2v2H8V6zm0 3h2v2H8V9zm-1 2H5V9h2v2zm0-3H5V6h2v2zm9 7H8v-2h8v2zm0-4h-2V9h2v2zm0-3h-2V6h2v2zm3 3h-2V9h2v2zm0-3h-2V6h2v2zm-7 15l4-4H8l4 4z" + }, + "children": [] + }] +}; +exports.ic_keyboard_hide = ic_keyboard_hide; \ No newline at end of file diff --git a/dist/md/ic_keyboard_hide_outline.js b/dist/md/ic_keyboard_hide_outline.js new file mode 100644 index 000000000..ca0c74d65 --- /dev/null +++ b/dist/md/ic_keyboard_hide_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_keyboard_hide_outline = void 0; +var ic_keyboard_hide_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 3H4c-1.1 0-1.99.9-1.99 2L2 15c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 12H4V5h16v10zm-9-9h2v2h-2zm0 3h2v2h-2zM8 6h2v2H8zm0 3h2v2H8zM5 9h2v2H5zm0-3h2v2H5zm3 6h8v2H8zm6-3h2v2h-2zm0-3h2v2h-2zm3 3h2v2h-2zm0-3h2v2h-2zm-5 17l4-4H8z" + }, + "children": [] + }] +}; +exports.ic_keyboard_hide_outline = ic_keyboard_hide_outline; \ No newline at end of file diff --git a/dist/md/ic_keyboard_hide_twotone.js b/dist/md/ic_keyboard_hide_twotone.js new file mode 100644 index 000000000..5841072f2 --- /dev/null +++ b/dist/md/ic_keyboard_hide_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_keyboard_hide_twotone = void 0; +var ic_keyboard_hide_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 15h16V5H4v10zm13-9h2v2h-2V6zm0 3h2v2h-2V9zm-3-3h2v2h-2V6zm0 3h2v2h-2V9zm-3-3h2v2h-2V6zm0 3h2v2h-2V9zM8 6h2v2H8V6zm0 3h2v2H8V9zm0 3h8v2H8v-2zM5 6h2v2H5V6zm0 3h2v2H5V9z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 3H4c-1.1 0-1.99.9-1.99 2L2 15c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 12H4V5h16v10zm-9-9h2v2h-2zm0 3h2v2h-2zM8 6h2v2H8zm0 3h2v2H8zM5 9h2v2H5zm0-3h2v2H5zm3 6h8v2H8zm6-3h2v2h-2zm0-3h2v2h-2zm3 3h2v2h-2zm0-3h2v2h-2zm-5 17l4-4H8l4 4z" + }, + "children": [] + }] +}; +exports.ic_keyboard_hide_twotone = ic_keyboard_hide_twotone; \ No newline at end of file diff --git a/dist/md/ic_keyboard_outline.js b/dist/md/ic_keyboard_outline.js new file mode 100644 index 000000000..d4f0419ff --- /dev/null +++ b/dist/md/ic_keyboard_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_keyboard_outline = void 0; +var ic_keyboard_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0zm0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 7v10H4V7h16m0-2H4c-1.1 0-1.99.9-1.99 2L2 17c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-9 3h2v2h-2zm0 3h2v2h-2zM8 8h2v2H8zm0 3h2v2H8zm-3 0h2v2H5zm0-3h2v2H5zm3 6h8v2H8zm6-3h2v2h-2zm0-3h2v2h-2zm3 3h2v2h-2zm0-3h2v2h-2z" + }, + "children": [] + }] +}; +exports.ic_keyboard_outline = ic_keyboard_outline; \ No newline at end of file diff --git a/dist/md/ic_keyboard_return.js b/dist/md/ic_keyboard_return.js new file mode 100644 index 000000000..25cd113ba --- /dev/null +++ b/dist/md/ic_keyboard_return.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_keyboard_return = void 0; +var ic_keyboard_return = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 7v4H5.83l3.58-3.59L8 6l-6 6 6 6 1.41-1.41L5.83 13H21V7z" + }, + "children": [] + }] +}; +exports.ic_keyboard_return = ic_keyboard_return; \ No newline at end of file diff --git a/dist/md/ic_keyboard_return_outline.js b/dist/md/ic_keyboard_return_outline.js new file mode 100644 index 000000000..0e555c782 --- /dev/null +++ b/dist/md/ic_keyboard_return_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_keyboard_return_outline = void 0; +var ic_keyboard_return_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 7v4H5.83l3.58-3.59L8 6l-6 6 6 6 1.41-1.41L5.83 13H21V7h-2z" + }, + "children": [] + }] +}; +exports.ic_keyboard_return_outline = ic_keyboard_return_outline; \ No newline at end of file diff --git a/dist/md/ic_keyboard_return_twotone.js b/dist/md/ic_keyboard_return_twotone.js new file mode 100644 index 000000000..d04c78673 --- /dev/null +++ b/dist/md/ic_keyboard_return_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_keyboard_return_twotone = void 0; +var ic_keyboard_return_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 7v4H5.83l3.58-3.59L8 6l-6 6 6 6 1.41-1.41L5.83 13H21V7h-2z" + }, + "children": [] + }] +}; +exports.ic_keyboard_return_twotone = ic_keyboard_return_twotone; \ No newline at end of file diff --git a/dist/md/ic_keyboard_tab.js b/dist/md/ic_keyboard_tab.js new file mode 100644 index 000000000..ed8864bd3 --- /dev/null +++ b/dist/md/ic_keyboard_tab.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_keyboard_tab = void 0; +var ic_keyboard_tab = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.59 7.41L15.17 11H1v2h14.17l-3.59 3.59L13 18l6-6-6-6-1.41 1.41zM20 6v12h2V6h-2z" + }, + "children": [] + }] +}; +exports.ic_keyboard_tab = ic_keyboard_tab; \ No newline at end of file diff --git a/dist/md/ic_keyboard_tab_outline.js b/dist/md/ic_keyboard_tab_outline.js new file mode 100644 index 000000000..5945af46f --- /dev/null +++ b/dist/md/ic_keyboard_tab_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_keyboard_tab_outline = void 0; +var ic_keyboard_tab_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.59 7.41L15.17 11H1v2h14.17l-3.59 3.59L13 18l6-6-6-6-1.41 1.41zM20 6v12h2V6h-2z" + }, + "children": [] + }] +}; +exports.ic_keyboard_tab_outline = ic_keyboard_tab_outline; \ No newline at end of file diff --git a/dist/md/ic_keyboard_tab_twotone.js b/dist/md/ic_keyboard_tab_twotone.js new file mode 100644 index 000000000..9207b33db --- /dev/null +++ b/dist/md/ic_keyboard_tab_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_keyboard_tab_twotone = void 0; +var ic_keyboard_tab_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.59 7.41L15.17 11H1v2h14.17l-3.59 3.59L13 18l6-6-6-6-1.41 1.41zM20 6v12h2V6h-2z" + }, + "children": [] + }] +}; +exports.ic_keyboard_tab_twotone = ic_keyboard_tab_twotone; \ No newline at end of file diff --git a/dist/md/ic_keyboard_twotone.js b/dist/md/ic_keyboard_twotone.js new file mode 100644 index 000000000..e89c8e7d1 --- /dev/null +++ b/dist/md/ic_keyboard_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_keyboard_twotone = void 0; +var ic_keyboard_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0zm0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 17h16V7H4v10zm13-9h2v2h-2V8zm0 3h2v2h-2v-2zm-3-3h2v2h-2V8zm0 3h2v2h-2v-2zm-3-3h2v2h-2V8zm0 3h2v2h-2v-2zM8 8h2v2H8V8zm0 3h2v2H8v-2zm0 3h8v2H8v-2zM5 8h2v2H5V8zm0 3h2v2H5v-2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 5H4c-1.1 0-1.99.9-1.99 2L2 17c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 12H4V7h16v10zm-9-9h2v2h-2zm0 3h2v2h-2zM8 8h2v2H8zm0 3h2v2H8zm-3 0h2v2H5zm0-3h2v2H5zm3 6h8v2H8zm6-3h2v2h-2zm0-3h2v2h-2zm3 3h2v2h-2zm0-3h2v2h-2z" + }, + "children": [] + }] +}; +exports.ic_keyboard_twotone = ic_keyboard_twotone; \ No newline at end of file diff --git a/dist/md/ic_keyboard_voice.js b/dist/md/ic_keyboard_voice.js new file mode 100644 index 000000000..3f4117421 --- /dev/null +++ b/dist/md/ic_keyboard_voice.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_keyboard_voice = void 0; +var ic_keyboard_voice = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 15c1.66 0 2.99-1.34 2.99-3L15 6c0-1.66-1.34-3-3-3S9 4.34 9 6v6c0 1.66 1.34 3 3 3zm5.3-3c0 3-2.54 5.1-5.3 5.1S6.7 15 6.7 12H5c0 3.42 2.72 6.23 6 6.72V22h2v-3.28c3.28-.48 6-3.3 6-6.72h-1.7z" + }, + "children": [] + }] +}; +exports.ic_keyboard_voice = ic_keyboard_voice; \ No newline at end of file diff --git a/dist/md/ic_keyboard_voice_outline.js b/dist/md/ic_keyboard_voice_outline.js new file mode 100644 index 000000000..52edc58eb --- /dev/null +++ b/dist/md/ic_keyboard_voice_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_keyboard_voice_outline = void 0; +var ic_keyboard_voice_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 15c1.66 0 2.99-1.34 2.99-3L15 6c0-1.66-1.34-3-3-3S9 4.34 9 6v6c0 1.66 1.34 3 3 3zm-1.2-9.1c0-.66.54-1.2 1.2-1.2s1.2.54 1.2 1.2l-.01 6.2c0 .66-.53 1.2-1.19 1.2s-1.2-.54-1.2-1.2V5.9zm6.5 6.1c0 3-2.54 5.1-5.3 5.1S6.7 15 6.7 12H5c0 3.41 2.72 6.23 6 6.72V22h2v-3.28c3.28-.48 6-3.3 6-6.72h-1.7z" + }, + "children": [] + }] +}; +exports.ic_keyboard_voice_outline = ic_keyboard_voice_outline; \ No newline at end of file diff --git a/dist/md/ic_keyboard_voice_twotone.js b/dist/md/ic_keyboard_voice_twotone.js new file mode 100644 index 000000000..8165b7dc0 --- /dev/null +++ b/dist/md/ic_keyboard_voice_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_keyboard_voice_twotone = void 0; +var ic_keyboard_voice_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 13.3c.66 0 1.19-.54 1.19-1.2l.01-6.2c0-.66-.54-1.2-1.2-1.2s-1.2.54-1.2 1.2v6.2c0 .66.54 1.2 1.2 1.2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 15c1.66 0 2.99-1.34 2.99-3L15 6c0-1.66-1.34-3-3-3S9 4.34 9 6v6c0 1.66 1.34 3 3 3zm-1.2-9.1c0-.66.54-1.2 1.2-1.2s1.2.54 1.2 1.2l-.01 6.2c0 .66-.53 1.2-1.19 1.2s-1.2-.54-1.2-1.2V5.9zm6.5 6.1c0 3-2.54 5.1-5.3 5.1S6.7 15 6.7 12H5c0 3.41 2.72 6.23 6 6.72V22h2v-3.28c3.28-.48 6-3.3 6-6.72h-1.7z" + }, + "children": [] + }] +}; +exports.ic_keyboard_voice_twotone = ic_keyboard_voice_twotone; \ No newline at end of file diff --git a/dist/md/ic_king_bed.js b/dist/md/ic_king_bed.js new file mode 100644 index 000000000..b2306174c --- /dev/null +++ b/dist/md/ic_king_bed.js @@ -0,0 +1,95 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_king_bed = void 0; +var ic_king_bed = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "3", + "width": "5", + "x": "6", + "y": "7" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "3", + "width": "5", + "x": "6", + "y": "7" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "fill": "none", + "height": "3", + "width": "5", + "x": "13", + "y": "7" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "3", + "width": "5", + "x": "13", + "y": "7" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20,10V7c0-1.1-0.9-2-2-2H6C4.9,5,4,5.9,4,7v3c-1.1,0-2,0.9-2,2v5h1.33L4,19h1l0.67-2h12.67L19,19h1l0.67-2H22v-5 C22,10.9,21.1,10,20,10z M11,10H6V7h5V10z M18,10h-5V7h5V10z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,10V7c0-1.1-0.9-2-2-2H6C4.9,5,4,5.9,4,7v3c-1.1,0-2,0.9-2,2v5h1.33L4,19h1l0.67-2h12.67L19,19h1l0.67-2H22v-5 C22,10.9,21.1,10,20,10z M11,10H6V7h5V10z M18,10h-5V7h5V10z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_king_bed = ic_king_bed; \ No newline at end of file diff --git a/dist/md/ic_king_bed_outline.js b/dist/md/ic_king_bed_outline.js new file mode 100644 index 000000000..82ccafc01 --- /dev/null +++ b/dist/md/ic_king_bed_outline.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_king_bed_outline = void 0; +var ic_king_bed_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,12c0-1.1-0.9-2-2-2V7c0-1.1-0.9-2-2-2H6C4.9,5,4,5.9,4,7v3c-1.1,0-2,0.9-2,2v5h1.33L4,19h1l0.67-2h12.67L19,19h1 l0.67-2H22V12z M18,10h-5V7h5V10z M6,7h5v3H6V7z M4,12h16v3H4V12z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,12c0-1.1-0.9-2-2-2V7c0-1.1-0.9-2-2-2H6C4.9,5,4,5.9,4,7v3c-1.1,0-2,0.9-2,2v5h1.33L4,19h1l0.67-2h12.67L19,19h1 l0.67-2H22V12z M18,10h-5V7h5V10z M6,7h5v3H6V7z M4,12h16v3H4V12z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_king_bed_outline = ic_king_bed_outline; \ No newline at end of file diff --git a/dist/md/ic_king_bed_twotone.js b/dist/md/ic_king_bed_twotone.js new file mode 100644 index 000000000..cc797452b --- /dev/null +++ b/dist/md/ic_king_bed_twotone.js @@ -0,0 +1,75 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_king_bed_twotone = void 0; +var ic_king_bed_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "height": "3", + "opacity": ".3", + "width": "16", + "x": "4", + "y": "12" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "3", + "opacity": ".3", + "width": "16", + "x": "4", + "y": "12" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20,10V7c0-1.1-0.9-2-2-2H6C4.9,5,4,5.9,4,7v3c-1.1,0-2,0.9-2,2v5h1.33L4,19h1l0.67-2h12.67L19,19h1l0.67-2H22v-5 C22,10.9,21.1,10,20,10z M13,7h5v3h-5V7z M6,7h5v3H6V7z M20,15H4v-3h16V15z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,10V7c0-1.1-0.9-2-2-2H6C4.9,5,4,5.9,4,7v3c-1.1,0-2,0.9-2,2v5h1.33L4,19h1l0.67-2h12.67L19,19h1l0.67-2H22v-5 C22,10.9,21.1,10,20,10z M13,7h5v3h-5V7z M6,7h5v3H6V7z M20,15H4v-3h16V15z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_king_bed_twotone = ic_king_bed_twotone; \ No newline at end of file diff --git a/dist/md/ic_kitchen.js b/dist/md/ic_kitchen.js new file mode 100644 index 000000000..0894ca22f --- /dev/null +++ b/dist/md/ic_kitchen.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_kitchen = void 0; +var ic_kitchen = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 2.01L6 2c-1.1 0-2 .89-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.11-.9-1.99-2-1.99zM18 20H6v-9.02h12V20zm0-11H6V4h12v5zM8 5h2v3H8zm0 7h2v5H8z" + }, + "children": [] + }] +}; +exports.ic_kitchen = ic_kitchen; \ No newline at end of file diff --git a/dist/md/ic_kitchen_outline.js b/dist/md/ic_kitchen_outline.js new file mode 100644 index 000000000..a9fe47eac --- /dev/null +++ b/dist/md/ic_kitchen_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_kitchen_outline = void 0; +var ic_kitchen_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8 5h2v3H8zm0 7h2v5H8zm10-9.99L6 2c-1.1 0-2 .89-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.11-.9-1.99-2-1.99zM18 20H6v-9.02h12V20zm0-11H6V4h12v5z" + }, + "children": [] + }] +}; +exports.ic_kitchen_outline = ic_kitchen_outline; \ No newline at end of file diff --git a/dist/md/ic_kitchen_twotone.js b/dist/md/ic_kitchen_twotone.js new file mode 100644 index 000000000..1e6ae7b37 --- /dev/null +++ b/dist/md/ic_kitchen_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_kitchen_twotone = void 0; +var ic_kitchen_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8 5h2v3H8zm0 7h2v5H8zm-2 8h12v-9.02H6V20zm2-8h2v5H8v-5zM6 9h12V4H6v5zm2-4h2v3H8V5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 2.01L6 2c-1.1 0-2 .89-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.11-.9-1.99-2-1.99zM18 20H6v-9.02h12V20zm0-11H6V4h12v5zM8 5h2v3H8zm0 7h2v5H8z" + }, + "children": [] + }] +}; +exports.ic_kitchen_twotone = ic_kitchen_twotone; \ No newline at end of file diff --git a/dist/md/ic_label.js b/dist/md/ic_label.js new file mode 100644 index 000000000..9d675d437 --- /dev/null +++ b/dist/md/ic_label.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_label = void 0; +var ic_label = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17.63 5.84C17.27 5.33 16.67 5 16 5L5 5.01C3.9 5.01 3 5.9 3 7v10c0 1.1.9 1.99 2 1.99L16 19c.67 0 1.27-.33 1.63-.84L22 12l-4.37-6.16z" + }, + "children": [] + }] +}; +exports.ic_label = ic_label; \ No newline at end of file diff --git a/dist/md/ic_label_important.js b/dist/md/ic_label_important.js new file mode 100644 index 000000000..28b72bcf3 --- /dev/null +++ b/dist/md/ic_label_important.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_label_important = void 0; +var ic_label_important = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3.5 18.99l11 .01c.67 0 1.27-.33 1.63-.84L20.5 12l-4.37-6.16c-.36-.51-.96-.84-1.63-.84l-11 .01L8.34 12 3.5 18.99z" + }, + "children": [] + }] +}; +exports.ic_label_important = ic_label_important; \ No newline at end of file diff --git a/dist/md/ic_label_important_outline.js b/dist/md/ic_label_important_outline.js new file mode 100644 index 000000000..1cba00ef4 --- /dev/null +++ b/dist/md/ic_label_important_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_label_important_outline = void 0; +var ic_label_important_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 18.99h11c.67 0 1.27-.32 1.63-.83L21 12l-4.37-6.16C16.27 5.33 15.67 5 15 5H4l5 7-5 6.99z" + }, + "children": [] + }] +}; +exports.ic_label_important_outline = ic_label_important_outline; \ No newline at end of file diff --git a/dist/md/ic_label_important_outline_twotone.js b/dist/md/ic_label_important_outline_twotone.js new file mode 100644 index 000000000..62d9d096a --- /dev/null +++ b/dist/md/ic_label_important_outline_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_label_important_outline_twotone = void 0; +var ic_label_important_outline_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 19H3l4.5-7L3 5h12c.65 0 1.26.31 1.63.84L21 12l-4.37 6.16c-.37.52-.98.84-1.63.84zm-8.5-2H15l3.5-5L15 7H6.5l3.5 5-3.5 5z" + }, + "children": [] + }] +}; +exports.ic_label_important_outline_twotone = ic_label_important_outline_twotone; \ No newline at end of file diff --git a/dist/md/ic_label_important_twotone.js b/dist/md/ic_label_important_twotone.js new file mode 100644 index 000000000..08c358d06 --- /dev/null +++ b/dist/md/ic_label_important_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_label_important_twotone = void 0; +var ic_label_important_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 7H7.89l3.57 5-3.57 5H15l3.55-5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16.63 5.84C16.27 5.33 15.67 5 15 5H4l5 7-5 6.99h11c.67 0 1.27-.32 1.63-.83L21 12l-4.37-6.16zM15 17H7.89l3.57-5-3.57-5H15l3.55 5L15 17z" + }, + "children": [] + }] +}; +exports.ic_label_important_twotone = ic_label_important_twotone; \ No newline at end of file diff --git a/dist/md/ic_label_off.js b/dist/md/ic_label_off.js new file mode 100644 index 000000000..43b7b8ac3 --- /dev/null +++ b/dist/md/ic_label_off.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_label_off = void 0; +var ic_label_off = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3.25 2.75l17 17L19 21l-2-2H5c-1.1 0-2-.9-2-2V7c0-.55.23-1.05.59-1.41L2 4l1.25-1.25zM22 12l-4.37-6.16C17.27 5.33 16.67 5 16 5H8l11 11 3-4z" + }, + "children": [] + }] +}; +exports.ic_label_off = ic_label_off; \ No newline at end of file diff --git a/dist/md/ic_label_off_outline.js b/dist/md/ic_label_off_outline.js new file mode 100644 index 000000000..63680a4e1 --- /dev/null +++ b/dist/md/ic_label_off_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_label_off_outline = void 0; +var ic_label_off_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 7l3.55 5-1.63 2.29 1.43 1.43L22 12l-4.37-6.16C17.27 5.33 16.67 5 16 5l-7.37.01 2 1.99H16zM2 4.03l1.58 1.58C3.22 5.96 3 6.46 3 7v10c0 1.1.9 1.99 2 1.99L16 19c.28 0 .55-.07.79-.18L18.97 21l1.41-1.41L3.41 2.62 2 4.03zM14.97 17H5V7.03L14.97 17z" + }, + "children": [] + }] +}; +exports.ic_label_off_outline = ic_label_off_outline; \ No newline at end of file diff --git a/dist/md/ic_label_off_twotone.js b/dist/md/ic_label_off_twotone.js new file mode 100644 index 000000000..33307d426 --- /dev/null +++ b/dist/md/ic_label_off_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_label_off_twotone = void 0; +var ic_label_off_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 7.03V17h9.97zM16 7h-5.37l7.29 7.29L19.55 12z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 7l3.55 5-1.63 2.29 1.43 1.43L22 12l-4.37-6.16C17.27 5.33 16.67 5 16 5l-7.37.01 2 1.99H16zM2 4.03l1.58 1.58C3.22 5.96 3 6.46 3 7v10c0 1.1.9 1.99 2 1.99L16 19c.28 0 .55-.07.79-.18L18.97 21l1.41-1.41L3.41 2.62 2 4.03zm3 3L14.97 17H5V7.03z" + }, + "children": [] + }] +}; +exports.ic_label_off_twotone = ic_label_off_twotone; \ No newline at end of file diff --git a/dist/md/ic_label_outline.js b/dist/md/ic_label_outline.js new file mode 100644 index 000000000..fda95ba47 --- /dev/null +++ b/dist/md/ic_label_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_label_outline = void 0; +var ic_label_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17.63 5.84C17.27 5.33 16.67 5 16 5L5 5.01C3.9 5.01 3 5.9 3 7v10c0 1.1.9 1.99 2 1.99L16 19c.67 0 1.27-.33 1.63-.84L22 12l-4.37-6.16zM16 17H5V7h11l3.55 5L16 17z" + }, + "children": [] + }] +}; +exports.ic_label_outline = ic_label_outline; \ No newline at end of file diff --git a/dist/md/ic_label_outline_twotone.js b/dist/md/ic_label_outline_twotone.js new file mode 100644 index 000000000..0835449ac --- /dev/null +++ b/dist/md/ic_label_outline_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_label_outline_twotone = void 0; +var ic_label_outline_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17.63 5.84C17.27 5.33 16.67 5 16 5L5 5.01C3.9 5.01 3 5.9 3 7v10c0 1.1.9 1.99 2 1.99L16 19c.67 0 1.27-.33 1.63-.84L22 12l-4.37-6.16zM16 17H5V7h11l3.55 5L16 17z" + }, + "children": [] + }] +}; +exports.ic_label_outline_twotone = ic_label_outline_twotone; \ No newline at end of file diff --git a/dist/md/ic_label_twotone.js b/dist/md/ic_label_twotone.js new file mode 100644 index 000000000..89a1c1eda --- /dev/null +++ b/dist/md/ic_label_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_label_twotone = void 0; +var ic_label_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 7H5v10h11l3.55-5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17.63 5.84C17.27 5.33 16.67 5 16 5L5 5.01C3.9 5.01 3 5.9 3 7v10c0 1.1.9 1.99 2 1.99L16 19c.67 0 1.27-.33 1.63-.84L22 12l-4.37-6.16zM16 17H5V7h11l3.55 5L16 17z" + }, + "children": [] + }] +}; +exports.ic_label_twotone = ic_label_twotone; \ No newline at end of file diff --git a/dist/md/ic_landscape.js b/dist/md/ic_landscape.js new file mode 100644 index 000000000..86eb39e91 --- /dev/null +++ b/dist/md/ic_landscape.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_landscape = void 0; +var ic_landscape = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 6l-3.75 5 2.85 3.8-1.6 1.2C9.81 13.75 7 10 7 10l-6 8h22L14 6z" + }, + "children": [] + }] +}; +exports.ic_landscape = ic_landscape; \ No newline at end of file diff --git a/dist/md/ic_landscape_outline.js b/dist/md/ic_landscape_outline.js new file mode 100644 index 000000000..19c834b19 --- /dev/null +++ b/dist/md/ic_landscape_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_landscape_outline = void 0; +var ic_landscape_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 6l-4.22 5.63 1.25 1.67L14 9.33 19 16h-8.46l-4.01-5.37L1 18h22L14 6zM5 16l1.52-2.03L8.04 16H5z" + }, + "children": [] + }] +}; +exports.ic_landscape_outline = ic_landscape_outline; \ No newline at end of file diff --git a/dist/md/ic_landscape_twotone.js b/dist/md/ic_landscape_twotone.js new file mode 100644 index 000000000..d5d790b33 --- /dev/null +++ b/dist/md/ic_landscape_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_landscape_twotone = void 0; +var ic_landscape_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 16h3.04l-1.52-2.03z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9.78 11.63l1.25 1.67L14 9.33 19 16h-8.46l-4.01-5.37L1 18h22L14 6l-4.22 5.63zM5 16l1.52-2.03L8.04 16H5z" + }, + "children": [] + }] +}; +exports.ic_landscape_twotone = ic_landscape_twotone; \ No newline at end of file diff --git a/dist/md/ic_language.js b/dist/md/ic_language.js new file mode 100644 index 000000000..432a8ba94 --- /dev/null +++ b/dist/md/ic_language.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_language = void 0; +var ic_language = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm6.93 6h-2.95c-.32-1.25-.78-2.45-1.38-3.56 1.84.63 3.37 1.91 4.33 3.56zM12 4.04c.83 1.2 1.48 2.53 1.91 3.96h-3.82c.43-1.43 1.08-2.76 1.91-3.96zM4.26 14C4.1 13.36 4 12.69 4 12s.1-1.36.26-2h3.38c-.08.66-.14 1.32-.14 2 0 .68.06 1.34.14 2H4.26zm.82 2h2.95c.32 1.25.78 2.45 1.38 3.56-1.84-.63-3.37-1.9-4.33-3.56zm2.95-8H5.08c.96-1.66 2.49-2.93 4.33-3.56C8.81 5.55 8.35 6.75 8.03 8zM12 19.96c-.83-1.2-1.48-2.53-1.91-3.96h3.82c-.43 1.43-1.08 2.76-1.91 3.96zM14.34 14H9.66c-.09-.66-.16-1.32-.16-2 0-.68.07-1.35.16-2h4.68c.09.65.16 1.32.16 2 0 .68-.07 1.34-.16 2zm.25 5.56c.6-1.11 1.06-2.31 1.38-3.56h2.95c-.96 1.65-2.49 2.93-4.33 3.56zM16.36 14c.08-.66.14-1.32.14-2 0-.68-.06-1.34-.14-2h3.38c.16.64.26 1.31.26 2s-.1 1.36-.26 2h-3.38z" + }, + "children": [] + }] +}; +exports.ic_language = ic_language; \ No newline at end of file diff --git a/dist/md/ic_language_outline.js b/dist/md/ic_language_outline.js new file mode 100644 index 000000000..891ab3bf9 --- /dev/null +++ b/dist/md/ic_language_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_language_outline = void 0; +var ic_language_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm6.93 6h-2.95c-.32-1.25-.78-2.45-1.38-3.56 1.84.63 3.37 1.91 4.33 3.56zM12 4.04c.83 1.2 1.48 2.53 1.91 3.96h-3.82c.43-1.43 1.08-2.76 1.91-3.96zM4.26 14C4.1 13.36 4 12.69 4 12s.1-1.36.26-2h3.38c-.08.66-.14 1.32-.14 2s.06 1.34.14 2H4.26zm.82 2h2.95c.32 1.25.78 2.45 1.38 3.56-1.84-.63-3.37-1.9-4.33-3.56zm2.95-8H5.08c.96-1.66 2.49-2.93 4.33-3.56C8.81 5.55 8.35 6.75 8.03 8zM12 19.96c-.83-1.2-1.48-2.53-1.91-3.96h3.82c-.43 1.43-1.08 2.76-1.91 3.96zM14.34 14H9.66c-.09-.66-.16-1.32-.16-2s.07-1.35.16-2h4.68c.09.65.16 1.32.16 2s-.07 1.34-.16 2zm.25 5.56c.6-1.11 1.06-2.31 1.38-3.56h2.95c-.96 1.65-2.49 2.93-4.33 3.56zM16.36 14c.08-.66.14-1.32.14-2s-.06-1.34-.14-2h3.38c.16.64.26 1.31.26 2s-.1 1.36-.26 2h-3.38z" + }, + "children": [] + }] +}; +exports.ic_language_outline = ic_language_outline; \ No newline at end of file diff --git a/dist/md/ic_language_twotone.js b/dist/md/ic_language_twotone.js new file mode 100644 index 000000000..5471aea21 --- /dev/null +++ b/dist/md/ic_language_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_language_twotone = void 0; +var ic_language_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5.08 8h2.95c.32-1.25.78-2.45 1.38-3.56-1.84.63-3.37 1.9-4.33 3.56zm2.42 4c0-.68.06-1.34.14-2H4.26c-.16.64-.26 1.31-.26 2s.1 1.36.26 2h3.38c-.08-.66-.14-1.32-.14-2zm-2.42 4c.96 1.66 2.49 2.93 4.33 3.56-.6-1.11-1.06-2.31-1.38-3.56H5.08zM12 4.04c-.83 1.2-1.48 2.53-1.91 3.96h3.82c-.43-1.43-1.08-2.76-1.91-3.96zM18.92 8c-.96-1.65-2.49-2.93-4.33-3.56.6 1.11 1.06 2.31 1.38 3.56h2.95zM12 19.96c.83-1.2 1.48-2.53 1.91-3.96h-3.82c.43 1.43 1.08 2.76 1.91 3.96zm2.59-.4c1.84-.63 3.37-1.91 4.33-3.56h-2.95c-.32 1.25-.78 2.45-1.38 3.56zM19.74 10h-3.38c.08.66.14 1.32.14 2s-.06 1.34-.14 2h3.38c.16-.64.26-1.31.26-2s-.1-1.36-.26-2zM9.66 10c-.09.65-.16 1.32-.16 2s.07 1.34.16 2h4.68c.09-.66.16-1.32.16-2s-.07-1.35-.16-2H9.66z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm6.93 6h-2.95c-.32-1.25-.78-2.45-1.38-3.56 1.84.63 3.37 1.91 4.33 3.56zM12 4.04c.83 1.2 1.48 2.53 1.91 3.96h-3.82c.43-1.43 1.08-2.76 1.91-3.96zM4.26 14C4.1 13.36 4 12.69 4 12s.1-1.36.26-2h3.38c-.08.66-.14 1.32-.14 2s.06 1.34.14 2H4.26zm.82 2h2.95c.32 1.25.78 2.45 1.38 3.56-1.84-.63-3.37-1.9-4.33-3.56zm2.95-8H5.08c.96-1.66 2.49-2.93 4.33-3.56C8.81 5.55 8.35 6.75 8.03 8zM12 19.96c-.83-1.2-1.48-2.53-1.91-3.96h3.82c-.43 1.43-1.08 2.76-1.91 3.96zM14.34 14H9.66c-.09-.66-.16-1.32-.16-2s.07-1.35.16-2h4.68c.09.65.16 1.32.16 2s-.07 1.34-.16 2zm.25 5.56c.6-1.11 1.06-2.31 1.38-3.56h2.95c-.96 1.65-2.49 2.93-4.33 3.56zM16.36 14c.08-.66.14-1.32.14-2s-.06-1.34-.14-2h3.38c.16.64.26 1.31.26 2s-.1 1.36-.26 2h-3.38z" + }, + "children": [] + }] +}; +exports.ic_language_twotone = ic_language_twotone; \ No newline at end of file diff --git a/dist/md/ic_laptop.js b/dist/md/ic_laptop.js new file mode 100644 index 000000000..66737b8a8 --- /dev/null +++ b/dist/md/ic_laptop.js @@ -0,0 +1,65 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_laptop = void 0; +var ic_laptop = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,18c1.1,0,2-0.9,2-2V6c0-1.1-0.9-2-2-2H4C2.9,4,2,4.9,2,6v10c0,1.1,0.9,2,2,2H0v2h24v-2H20z M4,6h16v10H4V6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,18c1.1,0,2-0.9,2-2V6c0-1.1-0.9-2-2-2H4C2.9,4,2,4.9,2,6v10c0,1.1,0.9,2,2,2H0v2h24v-2H20z M4,6h16v10H4V6z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_laptop = ic_laptop; \ No newline at end of file diff --git a/dist/md/ic_laptop_chromebook.js b/dist/md/ic_laptop_chromebook.js new file mode 100644 index 000000000..d12dde732 --- /dev/null +++ b/dist/md/ic_laptop_chromebook.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_laptop_chromebook = void 0; +var ic_laptop_chromebook = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 18V3H2v15H0v2h24v-2h-2zm-8 0h-4v-1h4v1zm6-3H4V5h16v10z" + }, + "children": [] + }] +}; +exports.ic_laptop_chromebook = ic_laptop_chromebook; \ No newline at end of file diff --git a/dist/md/ic_laptop_chromebook_outline.js b/dist/md/ic_laptop_chromebook_outline.js new file mode 100644 index 000000000..fc9f2f55f --- /dev/null +++ b/dist/md/ic_laptop_chromebook_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_laptop_chromebook_outline = void 0; +var ic_laptop_chromebook_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 18V3H2v15H0v2h24v-2h-2zm-8 0h-4v-1h4v1zm6-3H4V5h16v10z" + }, + "children": [] + }] +}; +exports.ic_laptop_chromebook_outline = ic_laptop_chromebook_outline; \ No newline at end of file diff --git a/dist/md/ic_laptop_chromebook_twotone.js b/dist/md/ic_laptop_chromebook_twotone.js new file mode 100644 index 000000000..155e85f36 --- /dev/null +++ b/dist/md/ic_laptop_chromebook_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_laptop_chromebook_twotone = void 0; +var ic_laptop_chromebook_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 5h16v10H4z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 18V3H2v15H0v2h24v-2h-2zm-8 0h-4v-1h4v1zm6-3H4V5h16v10z" + }, + "children": [] + }] +}; +exports.ic_laptop_chromebook_twotone = ic_laptop_chromebook_twotone; \ No newline at end of file diff --git a/dist/md/ic_laptop_mac.js b/dist/md/ic_laptop_mac.js new file mode 100644 index 000000000..76b72d7bf --- /dev/null +++ b/dist/md/ic_laptop_mac.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_laptop_mac = void 0; +var ic_laptop_mac = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 18c1.1 0 1.99-.9 1.99-2L22 5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2H0c0 1.1.9 2 2 2h20c1.1 0 2-.9 2-2h-4zM4 5h16v11H4V5zm8 14c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" + }, + "children": [] + }] +}; +exports.ic_laptop_mac = ic_laptop_mac; \ No newline at end of file diff --git a/dist/md/ic_laptop_mac_outline.js b/dist/md/ic_laptop_mac_outline.js new file mode 100644 index 000000000..414d1ee27 --- /dev/null +++ b/dist/md/ic_laptop_mac_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_laptop_mac_outline = void 0; +var ic_laptop_mac_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 18c1.1 0 1.99-.9 1.99-2L22 5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2H0c0 1.1.9 2 2 2h20c1.1 0 2-.9 2-2h-4zM4 5h16v11H4V5zm8 14c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" + }, + "children": [] + }] +}; +exports.ic_laptop_mac_outline = ic_laptop_mac_outline; \ No newline at end of file diff --git a/dist/md/ic_laptop_mac_twotone.js b/dist/md/ic_laptop_mac_twotone.js new file mode 100644 index 000000000..e76020a60 --- /dev/null +++ b/dist/md/ic_laptop_mac_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_laptop_mac_twotone = void 0; +var ic_laptop_mac_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 5h16v11H4z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 18c1.1 0 1.99-.9 1.99-2L22 5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2H0c0 1.1.9 2 2 2h20c1.1 0 2-.9 2-2h-4zM4 5h16v11H4V5zm8 14c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" + }, + "children": [] + }] +}; +exports.ic_laptop_mac_twotone = ic_laptop_mac_twotone; \ No newline at end of file diff --git a/dist/md/ic_laptop_outline.js b/dist/md/ic_laptop_outline.js new file mode 100644 index 000000000..d0f08334a --- /dev/null +++ b/dist/md/ic_laptop_outline.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_laptop_outline = void 0; +var ic_laptop_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,18c1.1,0,2-0.9,2-2V6c0-1.1-0.9-2-2-2H4C2.9,4,2,4.9,2,6v10c0,1.1,0.9,2,2,2H0v2h24v-2H20z M4,6h16v10H4V6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,18c1.1,0,2-0.9,2-2V6c0-1.1-0.9-2-2-2H4C2.9,4,2,4.9,2,6v10c0,1.1,0.9,2,2,2H0v2h24v-2H20z M4,6h16v10H4V6z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_laptop_outline = ic_laptop_outline; \ No newline at end of file diff --git a/dist/md/ic_laptop_twotone.js b/dist/md/ic_laptop_twotone.js new file mode 100644 index 000000000..ddae96a0a --- /dev/null +++ b/dist/md/ic_laptop_twotone.js @@ -0,0 +1,73 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_laptop_twotone = void 0; +var ic_laptop_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M4,6h16v10H4V6z", + "enable-background": "new", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M4,6h16v10H4V6z", + "enable-background": "new", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20,18c1.1,0,2-0.9,2-2V6c0-1.1-0.9-2-2-2H4C2.9,4,2,4.9,2,6v10c0,1.1,0.9,2,2,2H0v2h24v-2H20z M4,6h16v10H4V6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,18c1.1,0,2-0.9,2-2V6c0-1.1-0.9-2-2-2H4C2.9,4,2,4.9,2,6v10c0,1.1,0.9,2,2,2H0v2h24v-2H20z M4,6h16v10H4V6z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_laptop_twotone = ic_laptop_twotone; \ No newline at end of file diff --git a/dist/md/ic_laptop_windows.js b/dist/md/ic_laptop_windows.js new file mode 100644 index 000000000..b1687144c --- /dev/null +++ b/dist/md/ic_laptop_windows.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_laptop_windows = void 0; +var ic_laptop_windows = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 18v-1c1.1 0 1.99-.9 1.99-2L22 5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2v1H0v2h24v-2h-4zM4 5h16v10H4V5z" + }, + "children": [] + }] +}; +exports.ic_laptop_windows = ic_laptop_windows; \ No newline at end of file diff --git a/dist/md/ic_laptop_windows_outline.js b/dist/md/ic_laptop_windows_outline.js new file mode 100644 index 000000000..5b93c19d2 --- /dev/null +++ b/dist/md/ic_laptop_windows_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_laptop_windows_outline = void 0; +var ic_laptop_windows_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 18v-1c1.1 0 1.99-.9 1.99-2L22 5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2v1H0v2h24v-2h-4zM4 5h16v10H4V5z" + }, + "children": [] + }] +}; +exports.ic_laptop_windows_outline = ic_laptop_windows_outline; \ No newline at end of file diff --git a/dist/md/ic_laptop_windows_twotone.js b/dist/md/ic_laptop_windows_twotone.js new file mode 100644 index 000000000..43726886a --- /dev/null +++ b/dist/md/ic_laptop_windows_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_laptop_windows_twotone = void 0; +var ic_laptop_windows_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 5h16v10H4z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 18v-1c1.1 0 1.99-.9 1.99-2L22 5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2v1H0v2h24v-2h-4zM4 5h16v10H4V5z" + }, + "children": [] + }] +}; +exports.ic_laptop_windows_twotone = ic_laptop_windows_twotone; \ No newline at end of file diff --git a/dist/md/ic_last_page.js b/dist/md/ic_last_page.js new file mode 100644 index 000000000..fccf580f1 --- /dev/null +++ b/dist/md/ic_last_page.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_last_page = void 0; +var ic_last_page = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5.59 7.41L10.18 12l-4.59 4.59L7 18l6-6-6-6zM16 6h2v12h-2z" + }, + "children": [] + }] +}; +exports.ic_last_page = ic_last_page; \ No newline at end of file diff --git a/dist/md/ic_last_page_outline.js b/dist/md/ic_last_page_outline.js new file mode 100644 index 000000000..ce36eeeef --- /dev/null +++ b/dist/md/ic_last_page_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_last_page_outline = void 0; +var ic_last_page_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none", + "opacity": ".87" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5.59 7.41L10.18 12l-4.59 4.59L7 18l6-6-6-6-1.41 1.41zM16 6h2v12h-2V6z" + }, + "children": [] + }] +}; +exports.ic_last_page_outline = ic_last_page_outline; \ No newline at end of file diff --git a/dist/md/ic_last_page_twotone.js b/dist/md/ic_last_page_twotone.js new file mode 100644 index 000000000..f836aa365 --- /dev/null +++ b/dist/md/ic_last_page_twotone.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_last_page_twotone = void 0; +var ic_last_page_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none", + "opacity": ".87" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5.59 7.41L10.18 12l-4.59 4.59L7 18l6-6-6-6-1.41 1.41zM16 6h2v12h-2V6z" + }, + "children": [] + }] +}; +exports.ic_last_page_twotone = ic_last_page_twotone; \ No newline at end of file diff --git a/dist/md/ic_launch.js b/dist/md/ic_launch.js new file mode 100644 index 000000000..194d6b35d --- /dev/null +++ b/dist/md/ic_launch.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_launch = void 0; +var ic_launch = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 19H5V5h7V3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2v-7h-2v7zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3h-7z" + }, + "children": [] + }] +}; +exports.ic_launch = ic_launch; \ No newline at end of file diff --git a/dist/md/ic_launch_outline.js b/dist/md/ic_launch_outline.js new file mode 100644 index 000000000..e6e5cc2dc --- /dev/null +++ b/dist/md/ic_launch_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_launch_outline = void 0; +var ic_launch_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 19H5V5h7V3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2v-7h-2v7zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3h-7z" + }, + "children": [] + }] +}; +exports.ic_launch_outline = ic_launch_outline; \ No newline at end of file diff --git a/dist/md/ic_launch_twotone.js b/dist/md/ic_launch_twotone.js new file mode 100644 index 000000000..acb258d1c --- /dev/null +++ b/dist/md/ic_launch_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_launch_twotone = void 0; +var ic_launch_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 19H5V5h7V3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2v-7h-2v7zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3h-7z" + }, + "children": [] + }] +}; +exports.ic_launch_twotone = ic_launch_twotone; \ No newline at end of file diff --git a/dist/md/ic_layers.js b/dist/md/ic_layers.js new file mode 100644 index 000000000..f69f1a7ec --- /dev/null +++ b/dist/md/ic_layers.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_layers = void 0; +var ic_layers = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.99 18.54l-7.37-5.73L3 14.07l9 7 9-7-1.63-1.27-7.38 5.74zM12 16l7.36-5.73L21 9l-9-7-9 7 1.63 1.27L12 16z" + }, + "children": [] + }] +}; +exports.ic_layers = ic_layers; \ No newline at end of file diff --git a/dist/md/ic_layers_clear.js b/dist/md/ic_layers_clear.js new file mode 100644 index 000000000..180405846 --- /dev/null +++ b/dist/md/ic_layers_clear.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_layers_clear = void 0; +var ic_layers_clear = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.81 14.99l1.19-.92-1.43-1.43-1.19.92 1.43 1.43zm-.45-4.72L21 9l-9-7-2.91 2.27 7.87 7.88 2.4-1.88zM3.27 1L2 2.27l4.22 4.22L3 9l1.63 1.27L12 16l2.1-1.63 1.43 1.43L12 18.54l-7.37-5.73L3 14.07l9 7 4.95-3.85L20.73 21 22 19.73 3.27 1z" + }, + "children": [] + }] +}; +exports.ic_layers_clear = ic_layers_clear; \ No newline at end of file diff --git a/dist/md/ic_layers_clear_outline.js b/dist/md/ic_layers_clear_outline.js new file mode 100644 index 000000000..6542c6344 --- /dev/null +++ b/dist/md/ic_layers_clear_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_layers_clear_outline = void 0; +var ic_layers_clear_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4.53L17.74 9l-1.89 1.47 1.43 1.42L21 9l-9-7-2.59 2.02 1.42 1.42zm9 9.54l-1.63-1.27-.67.52 1.43 1.43zM3.41.86L2 2.27l4.22 4.22L3 9l9 7 2.1-1.63 1.42 1.42-3.53 2.75-7.37-5.73L3 14.07l9 7 4.95-3.85L20.73 21l1.41-1.41L3.41.86zM12 13.47L6.26 9l1.39-1.08 5.02 5.02-.67.53z" + }, + "children": [] + }] +}; +exports.ic_layers_clear_outline = ic_layers_clear_outline; \ No newline at end of file diff --git a/dist/md/ic_layers_clear_twotone.js b/dist/md/ic_layers_clear_twotone.js new file mode 100644 index 000000000..dcd65d2cb --- /dev/null +++ b/dist/md/ic_layers_clear_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_layers_clear_twotone = void 0; +var ic_layers_clear_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 13.47l.67-.53-5.02-5.02L6.26 9zm0-8.94l-1.17.91 5.02 5.03L17.74 9z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4.53L17.74 9l-1.89 1.47 1.43 1.42L21 9l-9-7-2.59 2.02 1.42 1.42zm9 9.54l-1.63-1.27-.67.52 1.43 1.43zM3.41.86L2 2.27l4.22 4.22L3 9l9 7 2.1-1.63 1.42 1.42-3.53 2.75-7.37-5.73L3 14.07l9 7 4.95-3.85L20.73 21l1.41-1.41L3.41.86zM12 13.47L6.26 9l1.39-1.08 5.02 5.02-.67.53z" + }, + "children": [] + }] +}; +exports.ic_layers_clear_twotone = ic_layers_clear_twotone; \ No newline at end of file diff --git a/dist/md/ic_layers_outline.js b/dist/md/ic_layers_outline.js new file mode 100644 index 000000000..a551924aa --- /dev/null +++ b/dist/md/ic_layers_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_layers_outline = void 0; +var ic_layers_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.99 18.54l-7.37-5.73L3 14.07l9 7 9-7-1.63-1.27zM12 16l7.36-5.73L21 9l-9-7-9 7 1.63 1.27L12 16zm0-11.47L17.74 9 12 13.47 6.26 9 12 4.53z" + }, + "children": [] + }] +}; +exports.ic_layers_outline = ic_layers_outline; \ No newline at end of file diff --git a/dist/md/ic_layers_twotone.js b/dist/md/ic_layers_twotone.js new file mode 100644 index 000000000..09ac94ccb --- /dev/null +++ b/dist/md/ic_layers_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_layers_twotone = void 0; +var ic_layers_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6.26 9L12 13.47 17.74 9 12 4.53z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.37 12.8l-7.38 5.74-7.37-5.73L3 14.07l9 7 9-7zM12 2L3 9l1.63 1.27L12 16l7.36-5.73L21 9l-9-7zm0 11.47L6.26 9 12 4.53 17.74 9 12 13.47z" + }, + "children": [] + }] +}; +exports.ic_layers_twotone = ic_layers_twotone; \ No newline at end of file diff --git a/dist/md/ic_leaderboard.js b/dist/md/ic_leaderboard.js new file mode 100644 index 000000000..921ca34e7 --- /dev/null +++ b/dist/md/ic_leaderboard.js @@ -0,0 +1,35 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_leaderboard = void 0; +var ic_leaderboard = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M7.5,21H2V9h5.5V21z M14.75,3h-5.5v18h5.5V3z M22,11h-5.5v10H22V11z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M7.5,21H2V9h5.5V21z M14.75,3h-5.5v18h5.5V3z M22,11h-5.5v10H22V11z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_leaderboard = ic_leaderboard; \ No newline at end of file diff --git a/dist/md/ic_leaderboard_outline.js b/dist/md/ic_leaderboard_outline.js new file mode 100644 index 000000000..c97b97930 --- /dev/null +++ b/dist/md/ic_leaderboard_outline.js @@ -0,0 +1,35 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_leaderboard_outline = void 0; +var ic_leaderboard_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M16,11V3H8v6H2v12h20V11H16z M10,5h4v14h-4V5z M4,11h4v8H4V11z M20,19h-4v-6h4V19z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M16,11V3H8v6H2v12h20V11H16z M10,5h4v14h-4V5z M4,11h4v8H4V11z M20,19h-4v-6h4V19z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_leaderboard_outline = ic_leaderboard_outline; \ No newline at end of file diff --git a/dist/md/ic_leaderboard_twotone.js b/dist/md/ic_leaderboard_twotone.js new file mode 100644 index 000000000..bffd133bf --- /dev/null +++ b/dist/md/ic_leaderboard_twotone.js @@ -0,0 +1,53 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_leaderboard_twotone = void 0; +var ic_leaderboard_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "g", + "attribs": { + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M10,5h4v14h-4V5z M4,11h4v8H4V11z M20,19h-4v-6h4V19z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M10,5h4v14h-4V5z M4,11h4v8H4V11z M20,19h-4v-6h4V19z" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M16,11V3H8v6H2v12h20V11H16z M10,5h4v14h-4V5z M4,11h4v8H4V11z M20,19h-4v-6h4V19z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M16,11V3H8v6H2v12h20V11H16z M10,5h4v14h-4V5z M4,11h4v8H4V11z M20,19h-4v-6h4V19z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_leaderboard_twotone = ic_leaderboard_twotone; \ No newline at end of file diff --git a/dist/md/ic_leak_add.js b/dist/md/ic_leak_add.js new file mode 100644 index 000000000..0fe698d44 --- /dev/null +++ b/dist/md/ic_leak_add.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_leak_add = void 0; +var ic_leak_add = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 3H3v3c1.66 0 3-1.34 3-3zm8 0h-2c0 4.97-4.03 9-9 9v2c6.08 0 11-4.93 11-11zm-4 0H8c0 2.76-2.24 5-5 5v2c3.87 0 7-3.13 7-7zm0 18h2c0-4.97 4.03-9 9-9v-2c-6.07 0-11 4.93-11 11zm8 0h3v-3c-1.66 0-3 1.34-3 3zm-4 0h2c0-2.76 2.24-5 5-5v-2c-3.87 0-7 3.13-7 7z" + }, + "children": [] + }] +}; +exports.ic_leak_add = ic_leak_add; \ No newline at end of file diff --git a/dist/md/ic_leak_add_outline.js b/dist/md/ic_leak_add_outline.js new file mode 100644 index 000000000..7f01a0c27 --- /dev/null +++ b/dist/md/ic_leak_add_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_leak_add_outline = void 0; +var ic_leak_add_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 3H3v3c1.66 0 3-1.34 3-3zm8 0h-2c0 4.97-4.03 9-9 9v2c6.08 0 11-4.93 11-11zm-4 0H8c0 2.76-2.24 5-5 5v2c3.87 0 7-3.13 7-7zm0 18h2c0-4.97 4.03-9 9-9v-2c-6.07 0-11 4.93-11 11zm8 0h3v-3c-1.66 0-3 1.34-3 3zm-4 0h2c0-2.76 2.24-5 5-5v-2c-3.87 0-7 3.13-7 7z" + }, + "children": [] + }] +}; +exports.ic_leak_add_outline = ic_leak_add_outline; \ No newline at end of file diff --git a/dist/md/ic_leak_add_twotone.js b/dist/md/ic_leak_add_twotone.js new file mode 100644 index 000000000..61a262469 --- /dev/null +++ b/dist/md/ic_leak_add_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_leak_add_twotone = void 0; +var ic_leak_add_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 21h3v-3c-1.66 0-3 1.34-3 3zM3 14c6.08 0 11-4.93 11-11h-2c0 4.97-4.03 9-9 9v2zm11 7h2c0-2.76 2.24-5 5-5v-2c-3.87 0-7 3.13-7 7zM3 10c3.87 0 7-3.13 7-7H8c0 2.76-2.24 5-5 5v2zm7 11h2c0-4.97 4.03-9 9-9v-2c-6.07 0-11 4.93-11 11zM3 3v3c1.66 0 3-1.34 3-3H3z" + }, + "children": [] + }] +}; +exports.ic_leak_add_twotone = ic_leak_add_twotone; \ No newline at end of file diff --git a/dist/md/ic_leak_remove.js b/dist/md/ic_leak_remove.js new file mode 100644 index 000000000..5c1649be6 --- /dev/null +++ b/dist/md/ic_leak_remove.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_leak_remove = void 0; +var ic_leak_remove = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 3H8c0 .37-.04.72-.12 1.06l1.59 1.59C9.81 4.84 10 3.94 10 3zM3 4.27l2.84 2.84C5.03 7.67 4.06 8 3 8v2c1.61 0 3.09-.55 4.27-1.46L8.7 9.97C7.14 11.24 5.16 12 3 12v2c2.71 0 5.19-.99 7.11-2.62l2.5 2.5C10.99 15.81 10 18.29 10 21h2c0-2.16.76-4.14 2.03-5.69l1.43 1.43C14.55 17.91 14 19.39 14 21h2c0-1.06.33-2.03.89-2.84L19.73 21 21 19.73 4.27 3 3 4.27zM14 3h-2c0 1.5-.37 2.91-1.02 4.16l1.46 1.46C13.42 6.98 14 5.06 14 3zm5.94 13.12c.34-.08.69-.12 1.06-.12v-2c-.94 0-1.84.19-2.66.52l1.6 1.6zm-4.56-4.56l1.46 1.46C18.09 12.37 19.5 12 21 12v-2c-2.06 0-3.98.58-5.62 1.56z" + }, + "children": [] + }] +}; +exports.ic_leak_remove = ic_leak_remove; \ No newline at end of file diff --git a/dist/md/ic_leak_remove_outline.js b/dist/md/ic_leak_remove_outline.js new file mode 100644 index 000000000..d944903a0 --- /dev/null +++ b/dist/md/ic_leak_remove_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_leak_remove_outline = void 0; +var ic_leak_remove_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 3h-2c0 1.35-.31 2.63-.84 3.77l1.49 1.49C13.51 6.7 14 4.91 14 3zm7 9v-2c-1.91 0-3.7.49-5.27 1.35l1.49 1.49c1.15-.53 2.43-.84 3.78-.84zm0 4v-2c-.79 0-1.54.13-2.24.37l1.68 1.68c.19-.01.37-.05.56-.05zM10 3H8c0 .19-.04.37-.06.56l1.68 1.68c.25-.7.38-1.46.38-2.24zm-5.59-.14L3 4.27l2.84 2.84C5.03 7.67 4.06 8 3 8v2c1.61 0 3.09-.55 4.27-1.46L8.7 9.97C7.14 11.24 5.16 12 3 12v2c2.72 0 5.2-.99 7.11-2.62l2.51 2.51C10.99 15.81 10 18.29 10 21h2c0-2.16.76-4.14 2.03-5.7l1.43 1.43C14.55 17.91 14 19.39 14 21h2c0-1.06.33-2.03.89-2.84L19.73 21l1.41-1.41L4.41 2.86z" + }, + "children": [] + }] +}; +exports.ic_leak_remove_outline = ic_leak_remove_outline; \ No newline at end of file diff --git a/dist/md/ic_leak_remove_twotone.js b/dist/md/ic_leak_remove_twotone.js new file mode 100644 index 000000000..85bdb4f5b --- /dev/null +++ b/dist/md/ic_leak_remove_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_leak_remove_twotone = void 0; +var ic_leak_remove_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 3h-2c0 1.35-.31 2.63-.84 3.77l1.49 1.49C13.51 6.7 14 4.91 14 3zm7 9v-2c-1.91 0-3.7.49-5.27 1.35l1.49 1.49c1.15-.53 2.43-.84 3.78-.84zm0 4v-2c-.79 0-1.54.13-2.24.37l1.68 1.68c.19-.01.37-.05.56-.05zM10 3H8c0 .19-.04.37-.06.56l1.68 1.68c.25-.7.38-1.46.38-2.24zm-5.59-.14L3 4.27l2.84 2.84C5.03 7.67 4.06 8 3 8v2c1.61 0 3.09-.55 4.27-1.46L8.7 9.97C7.14 11.24 5.16 12 3 12v2c2.72 0 5.2-.99 7.11-2.62l2.51 2.51C10.99 15.81 10 18.29 10 21h2c0-2.16.76-4.14 2.03-5.7l1.43 1.43C14.55 17.91 14 19.39 14 21h2c0-1.06.33-2.03.89-2.84L19.73 21l1.41-1.41L4.41 2.86z" + }, + "children": [] + }] +}; +exports.ic_leak_remove_twotone = ic_leak_remove_twotone; \ No newline at end of file diff --git a/dist/md/ic_legend_toggle.js b/dist/md/ic_legend_toggle.js new file mode 100644 index 000000000..fcdf62fc1 --- /dev/null +++ b/dist/md/ic_legend_toggle.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_legend_toggle = void 0; +var ic_legend_toggle = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20,15H4v-2h16V15z M20,17H4v2h16V17z M15,11l5-3.55L20,5l-5,3.55L10,5L4,8.66L4,11l5.92-3.61L15,11z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,15H4v-2h16V15z M20,17H4v2h16V17z M15,11l5-3.55L20,5l-5,3.55L10,5L4,8.66L4,11l5.92-3.61L15,11z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_legend_toggle = ic_legend_toggle; \ No newline at end of file diff --git a/dist/md/ic_legend_toggle_outline.js b/dist/md/ic_legend_toggle_outline.js new file mode 100644 index 000000000..c7addecb8 --- /dev/null +++ b/dist/md/ic_legend_toggle_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_legend_toggle_outline = void 0; +var ic_legend_toggle_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20,15H4v-2h16V15z M20,17H4v2h16V17z M15,11l5-3.55L20,5l-5,3.55L10,5L4,8.66L4,11l5.92-3.61L15,11z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,15H4v-2h16V15z M20,17H4v2h16V17z M15,11l5-3.55L20,5l-5,3.55L10,5L4,8.66L4,11l5.92-3.61L15,11z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_legend_toggle_outline = ic_legend_toggle_outline; \ No newline at end of file diff --git a/dist/md/ic_legend_toggle_twotone.js b/dist/md/ic_legend_toggle_twotone.js new file mode 100644 index 000000000..50f868503 --- /dev/null +++ b/dist/md/ic_legend_toggle_twotone.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_legend_toggle_twotone = void 0; +var ic_legend_toggle_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20,15H4v-2h16V15z M20,17H4v2h16V17z M15,11l5-3.55L20,5l-5,3.55L10,5L4,8.66L4,11l5.92-3.61L15,11z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,15H4v-2h16V15z M20,17H4v2h16V17z M15,11l5-3.55L20,5l-5,3.55L10,5L4,8.66L4,11l5.92-3.61L15,11z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_legend_toggle_twotone = ic_legend_toggle_twotone; \ No newline at end of file diff --git a/dist/md/ic_lens.js b/dist/md/ic_lens.js new file mode 100644 index 000000000..80bcf4da4 --- /dev/null +++ b/dist/md/ic_lens.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_lens = void 0; +var ic_lens = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z" + }, + "children": [] + }] +}; +exports.ic_lens = ic_lens; \ No newline at end of file diff --git a/dist/md/ic_lens_outline.js b/dist/md/ic_lens_outline.js new file mode 100644 index 000000000..ef27e665b --- /dev/null +++ b/dist/md/ic_lens_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_lens_outline = void 0; +var ic_lens_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8m0-2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z" + }, + "children": [] + }] +}; +exports.ic_lens_outline = ic_lens_outline; \ No newline at end of file diff --git a/dist/md/ic_lens_twotone.js b/dist/md/ic_lens_twotone.js new file mode 100644 index 000000000..efe29e6f6 --- /dev/null +++ b/dist/md/ic_lens_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_lens_twotone = void 0; +var ic_lens_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" + }, + "children": [] + }] +}; +exports.ic_lens_twotone = ic_lens_twotone; \ No newline at end of file diff --git a/dist/md/ic_library_add.js b/dist/md/ic_library_add.js new file mode 100644 index 000000000..88b36b4f9 --- /dev/null +++ b/dist/md/ic_library_add.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_library_add = void 0; +var ic_library_add = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-1 9h-4v4h-2v-4H9V9h4V5h2v4h4v2z" + }, + "children": [] + }] +}; +exports.ic_library_add = ic_library_add; \ No newline at end of file diff --git a/dist/md/ic_library_add_check.js b/dist/md/ic_library_add_check.js new file mode 100644 index 000000000..2e4631252 --- /dev/null +++ b/dist/md/ic_library_add_check.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_library_add_check = void 0; +var ic_library_add_check = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7.53 12L9 10.5l1.4-1.41 2.07 2.08L17.6 6 19 7.41 12.47 14zM4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6z" + }, + "children": [] + }] +}; +exports.ic_library_add_check = ic_library_add_check; \ No newline at end of file diff --git a/dist/md/ic_library_add_check_outline.js b/dist/md/ic_library_add_check_outline.js new file mode 100644 index 000000000..17c164f92 --- /dev/null +++ b/dist/md/ic_library_add_check_outline.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_library_add_check_outline = void 0; +var ic_library_add_check_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,4v12H8V4H20 M20,2H8C6.9,2,6,2.9,6,4v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2L20,2z M12.47,14 L9,10.5l1.4-1.41l2.07,2.08L17.6,6L19,7.41L12.47,14z M4,6H2v14c0,1.1,0.9,2,2,2h14v-2H4V6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,4v12H8V4H20 M20,2H8C6.9,2,6,2.9,6,4v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2L20,2z M12.47,14 L9,10.5l1.4-1.41l2.07,2.08L17.6,6L19,7.41L12.47,14z M4,6H2v14c0,1.1,0.9,2,2,2h14v-2H4V6z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M0,0h24v24H0V0z", + "fill": "none" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M0,0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }] + }] + }] +}; +exports.ic_library_add_check_outline = ic_library_add_check_outline; \ No newline at end of file diff --git a/dist/md/ic_library_add_check_twotone.js b/dist/md/ic_library_add_check_twotone.js new file mode 100644 index 000000000..4f4c0befc --- /dev/null +++ b/dist/md/ic_library_add_check_twotone.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_library_add_check_twotone = void 0; +var ic_library_add_check_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M8,16h12V4H8V16z M10.4,9.09l2.07,2.08L17.6,6L19,7.41L12.47,14L9,10.5L10.4,9.09z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M8,16h12V4H8V16z M10.4,9.09l2.07,2.08L17.6,6L19,7.41L12.47,14L9,10.5L10.4,9.09z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20,2H8C6.9,2,6,2.9,6,4v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M20,16H8V4h12V16z M12.47,14 L9,10.5l1.4-1.41l2.07,2.08L17.6,6L19,7.41L12.47,14z M4,20h14v2H4c-1.1,0-2-0.9-2-2V6h2V20z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,2H8C6.9,2,6,2.9,6,4v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M20,16H8V4h12V16z M12.47,14 L9,10.5l1.4-1.41l2.07,2.08L17.6,6L19,7.41L12.47,14z M4,20h14v2H4c-1.1,0-2-0.9-2-2V6h2V20z" + }, + "children": [] + }] + }] + }] + }, { + "name": "path", + "attribs": { + "d": "M0,0h24v24H0V0z", + "fill": "none" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M0,0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }] + }] + }] +}; +exports.ic_library_add_check_twotone = ic_library_add_check_twotone; \ No newline at end of file diff --git a/dist/md/ic_library_add_outline.js b/dist/md/ic_library_add_outline.js new file mode 100644 index 000000000..90a1283e1 --- /dev/null +++ b/dist/md/ic_library_add_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_library_add_outline = void 0; +var ic_library_add_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zm-7-2h2v-3h3V9h-3V6h-2v3h-3v2h3z" + }, + "children": [] + }] +}; +exports.ic_library_add_outline = ic_library_add_outline; \ No newline at end of file diff --git a/dist/md/ic_library_add_twotone.js b/dist/md/ic_library_add_twotone.js new file mode 100644 index 000000000..075a2483d --- /dev/null +++ b/dist/md/ic_library_add_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_library_add_twotone = void 0; +var ic_library_add_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8 16h12V4H8v12zm2-7h3V6h2v3h3v2h-3v3h-2v-3h-3V9z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 22h14v-2H4V6H2v14c0 1.1.9 2 2 2zM8 2c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H8zm12 14H8V4h12v12zm-7-2h2v-3h3V9h-3V6h-2v3h-3v2h3z" + }, + "children": [] + }] +}; +exports.ic_library_add_twotone = ic_library_add_twotone; \ No newline at end of file diff --git a/dist/md/ic_library_books.js b/dist/md/ic_library_books.js new file mode 100644 index 000000000..ddf4ab544 --- /dev/null +++ b/dist/md/ic_library_books.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_library_books = void 0; +var ic_library_books = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-1 9H9V9h10v2zm-4 4H9v-2h6v2zm4-8H9V5h10v2z" + }, + "children": [] + }] +}; +exports.ic_library_books = ic_library_books; \ No newline at end of file diff --git a/dist/md/ic_library_books_outline.js b/dist/md/ic_library_books_outline.js new file mode 100644 index 000000000..572873590 --- /dev/null +++ b/dist/md/ic_library_books_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_library_books_outline = void 0; +var ic_library_books_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zM10 9h8v2h-8zm0 3h4v2h-4zm0-6h8v2h-8z" + }, + "children": [] + }] +}; +exports.ic_library_books_outline = ic_library_books_outline; \ No newline at end of file diff --git a/dist/md/ic_library_books_twotone.js b/dist/md/ic_library_books_twotone.js new file mode 100644 index 000000000..4cfc793f7 --- /dev/null +++ b/dist/md/ic_library_books_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_library_books_twotone = void 0; +var ic_library_books_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8 16h12V4H8v12zm2-10h8v2h-8V6zm0 3h8v2h-8V9zm0 3h4v2h-4v-2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 22h14v-2H4V6H2v14c0 1.1.9 2 2 2zM6 4v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2zm14 12H8V4h12v12zM10 9h8v2h-8zm0 3h4v2h-4zm0-6h8v2h-8z" + }, + "children": [] + }] +}; +exports.ic_library_books_twotone = ic_library_books_twotone; \ No newline at end of file diff --git a/dist/md/ic_library_music.js b/dist/md/ic_library_music.js new file mode 100644 index 000000000..e0e9494f1 --- /dev/null +++ b/dist/md/ic_library_music.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_library_music = void 0; +var ic_library_music = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-2 5h-3v5.5c0 1.38-1.12 2.5-2.5 2.5S10 13.88 10 12.5s1.12-2.5 2.5-2.5c.57 0 1.08.19 1.5.51V5h4v2zM4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6z" + }, + "children": [] + }] +}; +exports.ic_library_music = ic_library_music; \ No newline at end of file diff --git a/dist/md/ic_library_music_outline.js b/dist/md/ic_library_music_outline.js new file mode 100644 index 000000000..4a9dddf75 --- /dev/null +++ b/dist/md/ic_library_music_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_library_music_outline = void 0; +var ic_library_music_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zm-7.5-1c1.38 0 2.5-1.12 2.5-2.5V7h3V5h-4v5.51c-.42-.32-.93-.51-1.5-.51-1.38 0-2.5 1.12-2.5 2.5s1.12 2.5 2.5 2.5zM4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6z" + }, + "children": [] + }] +}; +exports.ic_library_music_outline = ic_library_music_outline; \ No newline at end of file diff --git a/dist/md/ic_library_music_twotone.js b/dist/md/ic_library_music_twotone.js new file mode 100644 index 000000000..4bf36acd5 --- /dev/null +++ b/dist/md/ic_library_music_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_library_music_twotone = void 0; +var ic_library_music_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8 16h12V4H8v12zm4.5-6c.57 0 1.08.19 1.5.51V5h4v2h-3v5.5c0 1.38-1.12 2.5-2.5 2.5S10 13.88 10 12.5s1.12-2.5 2.5-2.5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zm-7.5-1c1.38 0 2.5-1.12 2.5-2.5V7h3V5h-4v5.51c-.42-.32-.93-.51-1.5-.51-1.38 0-2.5 1.12-2.5 2.5s1.12 2.5 2.5 2.5zM2 6v14c0 1.1.9 2 2 2h14v-2H4V6H2z" + }, + "children": [] + }] +}; +exports.ic_library_music_twotone = ic_library_music_twotone; \ No newline at end of file diff --git a/dist/md/ic_lightbulb.js b/dist/md/ic_lightbulb.js new file mode 100644 index 000000000..53b78fdab --- /dev/null +++ b/dist/md/ic_lightbulb.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_lightbulb = void 0; +var ic_lightbulb = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 21c0 .5.4 1 1 1h4c.6 0 1-.5 1-1v-1H9v1zm3-19C8.1 2 5 5.1 5 9c0 2.4 1.2 4.5 3 5.7V17c0 .5.4 1 1 1h6c.6 0 1-.5 1-1v-2.3c1.8-1.3 3-3.4 3-5.7 0-3.9-3.1-7-7-7z" + }, + "children": [] + }] +}; +exports.ic_lightbulb = ic_lightbulb; \ No newline at end of file diff --git a/dist/md/ic_lightbulb_outline.js b/dist/md/ic_lightbulb_outline.js new file mode 100644 index 000000000..cd394add4 --- /dev/null +++ b/dist/md/ic_lightbulb_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_lightbulb_outline = void 0; +var ic_lightbulb_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 21c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-1H9v1zm3-19C8.14 2 5 5.14 5 9c0 2.38 1.19 4.47 3 5.74V17c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-2.26c1.81-1.27 3-3.36 3-5.74 0-3.86-3.14-7-7-7zm2.85 11.1l-.85.6V16h-4v-2.3l-.85-.6C7.8 12.16 7 10.63 7 9c0-2.76 2.24-5 5-5s5 2.24 5 5c0 1.63-.8 3.16-2.15 4.1z" + }, + "children": [] + }] +}; +exports.ic_lightbulb_outline = ic_lightbulb_outline; \ No newline at end of file diff --git a/dist/md/ic_lightbulb_outline_twotone.js b/dist/md/ic_lightbulb_outline_twotone.js new file mode 100644 index 000000000..d50b6a827 --- /dev/null +++ b/dist/md/ic_lightbulb_outline_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_lightbulb_outline_twotone = void 0; +var ic_lightbulb_outline_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 21c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-1H9v1zm3-19C8.14 2 5 5.14 5 9c0 2.38 1.19 4.47 3 5.74V17c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-2.26c1.81-1.27 3-3.36 3-5.74 0-3.86-3.14-7-7-7zm2.85 11.1l-.85.6V16h-4v-2.3l-.85-.6C7.8 12.16 7 10.63 7 9c0-2.76 2.24-5 5-5s5 2.24 5 5c0 1.63-.8 3.16-2.15 4.1z" + }, + "children": [] + }] +}; +exports.ic_lightbulb_outline_twotone = ic_lightbulb_outline_twotone; \ No newline at end of file diff --git a/dist/md/ic_line_style.js b/dist/md/ic_line_style.js new file mode 100644 index 000000000..15645bc55 --- /dev/null +++ b/dist/md/ic_line_style.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_line_style = void 0; +var ic_line_style = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M3,16h5v-2H3V16z M9.5,16h5v-2h-5V16z M16,16h5v-2h-5V16z M3,20h2v-2H3V20z M7,20h2v-2H7V20z M11,20h2v-2h-2V20z M15,20 h2v-2h-2V20z M19,20h2v-2h-2V20z M3,12h8v-2H3V12z M13,12h8v-2h-8V12z M3,4v4h18V4H3z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M3,16h5v-2H3V16z M9.5,16h5v-2h-5V16z M16,16h5v-2h-5V16z M3,20h2v-2H3V20z M7,20h2v-2H7V20z M11,20h2v-2h-2V20z M15,20 h2v-2h-2V20z M19,20h2v-2h-2V20z M3,12h8v-2H3V12z M13,12h8v-2h-8V12z M3,4v4h18V4H3z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_line_style = ic_line_style; \ No newline at end of file diff --git a/dist/md/ic_line_style_outline.js b/dist/md/ic_line_style_outline.js new file mode 100644 index 000000000..2abe089e9 --- /dev/null +++ b/dist/md/ic_line_style_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_line_style_outline = void 0; +var ic_line_style_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 16h5v-2H3v2zm6.5 0h5v-2h-5v2zm6.5 0h5v-2h-5v2zM3 20h2v-2H3v2zm4 0h2v-2H7v2zm4 0h2v-2h-2v2zm4 0h2v-2h-2v2zm4 0h2v-2h-2v2zM3 12h8v-2H3v2zm10 0h8v-2h-8v2zM3 4v4h18V4H3z" + }, + "children": [] + }] +}; +exports.ic_line_style_outline = ic_line_style_outline; \ No newline at end of file diff --git a/dist/md/ic_line_style_twotone.js b/dist/md/ic_line_style_twotone.js new file mode 100644 index 000000000..eb22938d4 --- /dev/null +++ b/dist/md/ic_line_style_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_line_style_twotone = void 0; +var ic_line_style_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 16h5v-2H3v2zm6.5 0h5v-2h-5v2zm6.5 0h5v-2h-5v2zM3 20h2v-2H3v2zm4 0h2v-2H7v2zm4 0h2v-2h-2v2zm4 0h2v-2h-2v2zm4 0h2v-2h-2v2zM3 12h8v-2H3v2zm10 0h8v-2h-8v2zM3 4v4h18V4H3z" + }, + "children": [] + }] +}; +exports.ic_line_style_twotone = ic_line_style_twotone; \ No newline at end of file diff --git a/dist/md/ic_line_weight.js b/dist/md/ic_line_weight.js new file mode 100644 index 000000000..e5210959a --- /dev/null +++ b/dist/md/ic_line_weight.js @@ -0,0 +1,65 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_line_weight = void 0; +var ic_line_weight = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M3,17h18v-2H3V17z M3,20h18v-1H3V20z M3,13h18v-3H3V13z M3,4v4h18V4H3z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M3,17h18v-2H3V17z M3,20h18v-1H3V20z M3,13h18v-3H3V13z M3,4v4h18V4H3z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_line_weight = ic_line_weight; \ No newline at end of file diff --git a/dist/md/ic_line_weight_outline.js b/dist/md/ic_line_weight_outline.js new file mode 100644 index 000000000..c8a0e49d7 --- /dev/null +++ b/dist/md/ic_line_weight_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_line_weight_outline = void 0; +var ic_line_weight_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 17h18v-2H3v2zm0 3h18v-1H3v1zm0-7h18v-3H3v3zm0-9v4h18V4H3z" + }, + "children": [] + }] +}; +exports.ic_line_weight_outline = ic_line_weight_outline; \ No newline at end of file diff --git a/dist/md/ic_line_weight_twotone.js b/dist/md/ic_line_weight_twotone.js new file mode 100644 index 000000000..c09dfc399 --- /dev/null +++ b/dist/md/ic_line_weight_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_line_weight_twotone = void 0; +var ic_line_weight_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 17h18v-2H3v2zm0 3h18v-1H3v1zm0-7h18v-3H3v3zm0-9v4h18V4H3z" + }, + "children": [] + }] +}; +exports.ic_line_weight_twotone = ic_line_weight_twotone; \ No newline at end of file diff --git a/dist/md/ic_linear_scale.js b/dist/md/ic_linear_scale.js new file mode 100644 index 000000000..2c0bc365c --- /dev/null +++ b/dist/md/ic_linear_scale.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_linear_scale = void 0; +var ic_linear_scale = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M19.5,9.5c-1.03,0-1.9,0.62-2.29,1.5h-2.92C13.9,10.12,13.03,9.5,12,9.5s-1.9,0.62-2.29,1.5H6.79 C6.4,10.12,5.53,9.5,4.5,9.5C3.12,9.5,2,10.62,2,12s1.12,2.5,2.5,2.5c1.03,0,1.9-0.62,2.29-1.5h2.92c0.39,0.88,1.26,1.5,2.29,1.5 s1.9-0.62,2.29-1.5h2.92c0.39,0.88,1.26,1.5,2.29,1.5c1.38,0,2.5-1.12,2.5-2.5S20.88,9.5,19.5,9.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19.5,9.5c-1.03,0-1.9,0.62-2.29,1.5h-2.92C13.9,10.12,13.03,9.5,12,9.5s-1.9,0.62-2.29,1.5H6.79 C6.4,10.12,5.53,9.5,4.5,9.5C3.12,9.5,2,10.62,2,12s1.12,2.5,2.5,2.5c1.03,0,1.9-0.62,2.29-1.5h2.92c0.39,0.88,1.26,1.5,2.29,1.5 s1.9-0.62,2.29-1.5h2.92c0.39,0.88,1.26,1.5,2.29,1.5c1.38,0,2.5-1.12,2.5-2.5S20.88,9.5,19.5,9.5z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_linear_scale = ic_linear_scale; \ No newline at end of file diff --git a/dist/md/ic_linear_scale_outline.js b/dist/md/ic_linear_scale_outline.js new file mode 100644 index 000000000..70ec2afe2 --- /dev/null +++ b/dist/md/ic_linear_scale_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_linear_scale_outline = void 0; +var ic_linear_scale_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.5 9.5c-1.03 0-1.9.62-2.29 1.5h-2.92c-.39-.88-1.26-1.5-2.29-1.5s-1.9.62-2.29 1.5H6.79c-.39-.88-1.26-1.5-2.29-1.5C3.12 9.5 2 10.62 2 12s1.12 2.5 2.5 2.5c1.03 0 1.9-.62 2.29-1.5h2.92c.39.88 1.26 1.5 2.29 1.5s1.9-.62 2.29-1.5h2.92c.39.88 1.26 1.5 2.29 1.5 1.38 0 2.5-1.12 2.5-2.5s-1.12-2.5-2.5-2.5z" + }, + "children": [] + }] +}; +exports.ic_linear_scale_outline = ic_linear_scale_outline; \ No newline at end of file diff --git a/dist/md/ic_linear_scale_twotone.js b/dist/md/ic_linear_scale_twotone.js new file mode 100644 index 000000000..904ae4978 --- /dev/null +++ b/dist/md/ic_linear_scale_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_linear_scale_twotone = void 0; +var ic_linear_scale_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.5 9.5c-1.03 0-1.9.62-2.29 1.5h-2.92c-.39-.88-1.26-1.5-2.29-1.5s-1.9.62-2.29 1.5H6.79c-.39-.88-1.26-1.5-2.29-1.5C3.12 9.5 2 10.62 2 12s1.12 2.5 2.5 2.5c1.03 0 1.9-.62 2.29-1.5h2.92c.39.88 1.26 1.5 2.29 1.5s1.9-.62 2.29-1.5h2.92c.39.88 1.26 1.5 2.29 1.5 1.38 0 2.5-1.12 2.5-2.5s-1.12-2.5-2.5-2.5z" + }, + "children": [] + }] +}; +exports.ic_linear_scale_twotone = ic_linear_scale_twotone; \ No newline at end of file diff --git a/dist/md/ic_link.js b/dist/md/ic_link.js new file mode 100644 index 000000000..1033d2e2b --- /dev/null +++ b/dist/md/ic_link.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_link = void 0; +var ic_link = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z" + }, + "children": [] + }] +}; +exports.ic_link = ic_link; \ No newline at end of file diff --git a/dist/md/ic_link_off.js b/dist/md/ic_link_off.js new file mode 100644 index 000000000..0b3245ce1 --- /dev/null +++ b/dist/md/ic_link_off.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_link_off = void 0; +var ic_link_off = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 7h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1 0 1.43-.98 2.63-2.31 2.98l1.46 1.46C20.88 15.61 22 13.95 22 12c0-2.76-2.24-5-5-5zm-1 4h-2.19l2 2H16zM2 4.27l3.11 3.11C3.29 8.12 2 9.91 2 12c0 2.76 2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1 0-1.59 1.21-2.9 2.76-3.07L8.73 11H8v2h2.73L13 15.27V17h1.73l4.01 4L20 19.74 3.27 3 2 4.27z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M0 24V0", + "fill": "none" + }, + "children": [] + }] +}; +exports.ic_link_off = ic_link_off; \ No newline at end of file diff --git a/dist/md/ic_link_off_outline.js b/dist/md/ic_link_off_outline.js new file mode 100644 index 000000000..4401914c0 --- /dev/null +++ b/dist/md/ic_link_off_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_link_off_outline = void 0; +var ic_link_off_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14.39 11L16 12.61V11zM17 7h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1 0 1.27-.77 2.37-1.87 2.84l1.4 1.4C21.05 15.36 22 13.79 22 12c0-2.76-2.24-5-5-5zM2 4.27l3.11 3.11C3.29 8.12 2 9.91 2 12c0 2.76 2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1 0-1.59 1.21-2.9 2.76-3.07L8.73 11H8v2h2.73L13 15.27V17h1.73l4.01 4.01 1.41-1.41L3.41 2.86 2 4.27z" + }, + "children": [] + }] +}; +exports.ic_link_off_outline = ic_link_off_outline; \ No newline at end of file diff --git a/dist/md/ic_link_off_twotone.js b/dist/md/ic_link_off_twotone.js new file mode 100644 index 000000000..e477cf680 --- /dev/null +++ b/dist/md/ic_link_off_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_link_off_twotone = void 0; +var ic_link_off_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14.39 11L16 12.61V11zM17 7h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1 0 1.27-.77 2.37-1.87 2.84l1.4 1.4C21.05 15.36 22 13.79 22 12c0-2.76-2.24-5-5-5zM2 4.27l3.11 3.11C3.29 8.12 2 9.91 2 12c0 2.76 2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1 0-1.59 1.21-2.9 2.76-3.07L8.73 11H8v2h2.73L13 15.27V17h1.73l4.01 4.01 1.41-1.41L3.41 2.86 2 4.27z" + }, + "children": [] + }] +}; +exports.ic_link_off_twotone = ic_link_off_twotone; \ No newline at end of file diff --git a/dist/md/ic_link_outline.js b/dist/md/ic_link_outline.js new file mode 100644 index 000000000..1283bee98 --- /dev/null +++ b/dist/md/ic_link_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_link_outline = void 0; +var ic_link_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 7h-4v2h4c1.65 0 3 1.35 3 3s-1.35 3-3 3h-4v2h4c2.76 0 5-2.24 5-5s-2.24-5-5-5zm-6 8H7c-1.65 0-3-1.35-3-3s1.35-3 3-3h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-2zm-3-4h8v2H8z" + }, + "children": [] + }] +}; +exports.ic_link_outline = ic_link_outline; \ No newline at end of file diff --git a/dist/md/ic_link_twotone.js b/dist/md/ic_link_twotone.js new file mode 100644 index 000000000..25c00a449 --- /dev/null +++ b/dist/md/ic_link_twotone.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_link_twotone = void 0; +var ic_link_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 7h-4v2h4c1.65 0 3 1.35 3 3s-1.35 3-3 3h-4v2h4c2.76 0 5-2.24 5-5s-2.24-5-5-5zm-6 8H7c-1.65 0-3-1.35-3-3s1.35-3 3-3h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-2zm-3-4h8v2H8z", + "opacity": ".87" + }, + "children": [] + }] +}; +exports.ic_link_twotone = ic_link_twotone; \ No newline at end of file diff --git a/dist/md/ic_linked_camera.js b/dist/md/ic_linked_camera.js new file mode 100644 index 000000000..b6868c4e3 --- /dev/null +++ b/dist/md/ic_linked_camera.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_linked_camera = void 0; +var ic_linked_camera = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "14", + "r": "3.2" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "14", + "fill": "none", + "r": "5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 3.33c2.58 0 4.67 2.09 4.67 4.67H22c0-3.31-2.69-6-6-6v1.33M16 6c1.11 0 2 .89 2 2h1.33c0-1.84-1.49-3.33-3.33-3.33V6" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M24 0H0v24h24V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 9c0-1.11-.89-2-2-2V4H9L7.17 6H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V9h-5zm-5 10c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" + }, + "children": [] + }] +}; +exports.ic_linked_camera = ic_linked_camera; \ No newline at end of file diff --git a/dist/md/ic_linked_camera_outline.js b/dist/md/ic_linked_camera_outline.js new file mode 100644 index 000000000..c620bf81e --- /dev/null +++ b/dist/md/ic_linked_camera_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_linked_camera_outline = void 0; +var ic_linked_camera_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 9v11H4V8h4.05l1.83-2H15V4H9L7.17 6H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V9h-2zm.67-1.01H22C21.99 4.68 19.31 2 16 2v1.33c2.58 0 4.66 2.08 4.67 4.66zm-2.67 0h1.33c-.01-1.84-1.49-3.32-3.33-3.32V6c1.11 0 1.99.89 2 1.99zM7 14c0 2.76 2.24 5 5 5s5-2.24 5-5-2.24-5-5-5-5 2.24-5 5zm8 0c0 1.65-1.35 3-3 3s-3-1.35-3-3 1.35-3 3-3 3 1.34 3 3z" + }, + "children": [] + }] +}; +exports.ic_linked_camera_outline = ic_linked_camera_outline; \ No newline at end of file diff --git a/dist/md/ic_linked_camera_twotone.js b/dist/md/ic_linked_camera_twotone.js new file mode 100644 index 000000000..e441874aa --- /dev/null +++ b/dist/md/ic_linked_camera_twotone.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_linked_camera_twotone = void 0; +var ic_linked_camera_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 20H4V8h4.05l1.83-2H15V4H9L7.17 6H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V9h-2v11zM16 2v1.33c2.58 0 4.66 2.09 4.67 4.66H22C21.99 4.68 19.31 2 16 2zm0 2.67V6c1.11 0 1.99.89 2 1.99h1.33c-.01-1.84-1.49-3.32-3.33-3.32z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14.98 10.01c-.13-.09-.26-.18-.39-.26.14.08.27.17.39.26zM17 9c0-.37-.11-.71-.28-1.01-.18-.3-.43-.55-.73-.72C15.7 7.1 15.36 7 15 7V6H9.88L8.05 8H4v12h16V9h-3zm-5 10c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 9c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3z" + }, + "children": [] + }] +}; +exports.ic_linked_camera_twotone = ic_linked_camera_twotone; \ No newline at end of file diff --git a/dist/md/ic_liquor.js b/dist/md/ic_liquor.js new file mode 100644 index 000000000..7102cda34 --- /dev/null +++ b/dist/md/ic_liquor.js @@ -0,0 +1,83 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_liquor = void 0; +var ic_liquor = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M3,14c0,1.3,0.84,2.4,2,2.82V20H3v2h6v-2H7v-3.18C8.16,16.4,9,15.3,9,14V6H3V14z M5,8h2v3H5V8z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M3,14c0,1.3,0.84,2.4,2,2.82V20H3v2h6v-2H7v-3.18C8.16,16.4,9,15.3,9,14V6H3V14z M5,8h2v3H5V8z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M20.63,8.54l-0.95-0.32C19.28,8.09,19,7.71,19,7.28V3c0-0.55-0.45-1-1-1h-3c-0.55,0-1,0.45-1,1v4.28 c0,0.43-0.28,0.81-0.68,0.95l-0.95,0.32C11.55,8.82,11,9.58,11,10.44V20c0,1.1,0.9,2,2,2h7c1.1,0,2-0.9,2-2v-9.56 C22,9.58,21.45,8.82,20.63,8.54z M16,4h1v1h-1V4z M13,10.44l0.95-0.32C15.18,9.72,16,8.57,16,7.28V7h1v0.28 c0,1.29,0.82,2.44,2.05,2.85L20,10.44V12h-7V10.44z M20,20h-7v-2h7V20z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20.63,8.54l-0.95-0.32C19.28,8.09,19,7.71,19,7.28V3c0-0.55-0.45-1-1-1h-3c-0.55,0-1,0.45-1,1v4.28 c0,0.43-0.28,0.81-0.68,0.95l-0.95,0.32C11.55,8.82,11,9.58,11,10.44V20c0,1.1,0.9,2,2,2h7c1.1,0,2-0.9,2-2v-9.56 C22,9.58,21.45,8.82,20.63,8.54z M16,4h1v1h-1V4z M13,10.44l0.95-0.32C15.18,9.72,16,8.57,16,7.28V7h1v0.28 c0,1.29,0.82,2.44,2.05,2.85L20,10.44V12h-7V10.44z M20,20h-7v-2h7V20z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_liquor = ic_liquor; \ No newline at end of file diff --git a/dist/md/ic_list.js b/dist/md/ic_list.js new file mode 100644 index 000000000..b3fa681c6 --- /dev/null +++ b/dist/md/ic_list.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_list = void 0; +var ic_list = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 13h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm4 4h14v-2H7v2zm0 4h14v-2H7v2zM7 7v2h14V7H7z" + }, + "children": [] + }] +}; +exports.ic_list = ic_list; \ No newline at end of file diff --git a/dist/md/ic_list_alt.js b/dist/md/ic_list_alt.js new file mode 100644 index 000000000..e12668a04 --- /dev/null +++ b/dist/md/ic_list_alt.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_list_alt = void 0; +var ic_list_alt = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 5v14H5V5h14m1.1-2H3.9c-.5 0-.9.4-.9.9v16.2c0 .4.4.9.9.9h16.2c.4 0 .9-.5.9-.9V3.9c0-.5-.5-.9-.9-.9zM11 7h6v2h-6V7zm0 4h6v2h-6v-2zm0 4h6v2h-6zM7 7h2v2H7zm0 4h2v2H7zm0 4h2v2H7z" + }, + "children": [] + }] +}; +exports.ic_list_alt = ic_list_alt; \ No newline at end of file diff --git a/dist/md/ic_list_alt_outline.js b/dist/md/ic_list_alt_outline.js new file mode 100644 index 000000000..2865ce9d3 --- /dev/null +++ b/dist/md/ic_list_alt_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_list_alt_outline = void 0; +var ic_list_alt_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 7h6v2h-6zm0 4h6v2h-6zm0 4h6v2h-6zM7 7h2v2H7zm0 4h2v2H7zm0 4h2v2H7zM20.1 3H3.9c-.5 0-.9.4-.9.9v16.2c0 .4.4.9.9.9h16.2c.4 0 .9-.5.9-.9V3.9c0-.5-.5-.9-.9-.9zM19 19H5V5h14v14z" + }, + "children": [] + }] +}; +exports.ic_list_alt_outline = ic_list_alt_outline; \ No newline at end of file diff --git a/dist/md/ic_list_alt_twotone.js b/dist/md/ic_list_alt_twotone.js new file mode 100644 index 000000000..038e1549f --- /dev/null +++ b/dist/md/ic_list_alt_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_list_alt_twotone = void 0; +var ic_list_alt_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 19h14V5H5v14zm6-12h6v2h-6V7zm0 4h6v2h-6v-2zm0 4h6v2h-6v-2zM7 7h2v2H7V7zm0 4h2v2H7v-2zm0 4h2v2H7v-2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 7h6v2h-6zm0 4h6v2h-6zm0 4h6v2h-6zM7 7h2v2H7zm0 4h2v2H7zm0 4h2v2H7zM20.1 3H3.9c-.5 0-.9.4-.9.9v16.2c0 .4.4.9.9.9h16.2c.4 0 .9-.5.9-.9V3.9c0-.5-.5-.9-.9-.9zM19 19H5V5h14v14z" + }, + "children": [] + }] +}; +exports.ic_list_alt_twotone = ic_list_alt_twotone; \ No newline at end of file diff --git a/dist/md/ic_list_outline.js b/dist/md/ic_list_outline.js new file mode 100644 index 000000000..ce322066b --- /dev/null +++ b/dist/md/ic_list_outline.js @@ -0,0 +1,49 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_list_outline = void 0; +var ic_list_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": { + "fill": "none" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "opacity": ".87" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "opacity": ".87" + }, + "children": [] + }] + }] + }, { + "name": "path", + "attribs": { + "d": "M3 13h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm4 4h14v-2H7v2zm0 4h14v-2H7v2zM7 7v2h14V7H7zm-4 6h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm4 4h14v-2H7v2zm0 4h14v-2H7v2zM7 7v2h14V7H7z" + }, + "children": [] + }] +}; +exports.ic_list_outline = ic_list_outline; \ No newline at end of file diff --git a/dist/md/ic_list_twotone.js b/dist/md/ic_list_twotone.js new file mode 100644 index 000000000..35ecdeb66 --- /dev/null +++ b/dist/md/ic_list_twotone.js @@ -0,0 +1,49 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_list_twotone = void 0; +var ic_list_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": { + "fill": "none" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "opacity": ".87" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "opacity": ".87" + }, + "children": [] + }] + }] + }, { + "name": "path", + "attribs": { + "d": "M3 13h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm4 4h14v-2H7v2zm0 4h14v-2H7v2zM7 7v2h14V7H7zm-4 6h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm4 4h14v-2H7v2zm0 4h14v-2H7v2zM7 7v2h14V7H7z" + }, + "children": [] + }] +}; +exports.ic_list_twotone = ic_list_twotone; \ No newline at end of file diff --git a/dist/md/ic_live_help.js b/dist/md/ic_live_help.js new file mode 100644 index 000000000..c0ecbab17 --- /dev/null +++ b/dist/md/ic_live_help.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_live_help = void 0; +var ic_live_help = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h4l3 3 3-3h4c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-6 16h-2v-2h2v2zm2.07-7.75l-.9.92C13.45 11.9 13 12.5 13 14h-2v-.5c0-1.1.45-2.1 1.17-2.83l1.24-1.26c.37-.36.59-.86.59-1.41 0-1.1-.9-2-2-2s-2 .9-2 2H8c0-2.21 1.79-4 4-4s4 1.79 4 4c0 .88-.36 1.68-.93 2.25z" + }, + "children": [] + }] +}; +exports.ic_live_help = ic_live_help; \ No newline at end of file diff --git a/dist/md/ic_live_help_outline.js b/dist/md/ic_live_help_outline.js new file mode 100644 index 000000000..aae8e7cb1 --- /dev/null +++ b/dist/md/ic_live_help_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_live_help_outline = void 0; +var ic_live_help_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h4l3 3 3-3h4c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 16h-4.83l-.59.59L12 20.17l-1.59-1.59-.58-.58H5V4h14v14zm-8-3h2v2h-2zm1-8c1.1 0 2 .9 2 2 0 2-3 1.75-3 5h2c0-2.25 3-2.5 3-5 0-2.21-1.79-4-4-4S8 6.79 8 9h2c0-1.1.9-2 2-2z" + }, + "children": [] + }] +}; +exports.ic_live_help_outline = ic_live_help_outline; \ No newline at end of file diff --git a/dist/md/ic_live_help_twotone.js b/dist/md/ic_live_help_twotone.js new file mode 100644 index 000000000..0e6873386 --- /dev/null +++ b/dist/md/ic_live_help_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_live_help_twotone = void 0; +var ic_live_help_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 18h4.83l.59.59L12 20.17l1.59-1.59.58-.58H19V4H5v14zm8-1h-2v-2h2v2zM12 5c2.21 0 4 1.79 4 4 0 2.5-3 2.75-3 5h-2c0-3.25 3-3 3-5 0-1.1-.9-2-2-2s-2 .9-2 2H8c0-2.21 1.79-4 4-4z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 4c0-1.1-.9-2-2-2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h4l3 3 3-3h4c1.1 0 2-.9 2-2V4zm-2 14h-4.83l-.59.59L12 20.17l-1.59-1.59-.58-.58H5V4h14v14zm-8-3h2v2h-2zm1-8c1.1 0 2 .9 2 2 0 2-3 1.75-3 5h2c0-2.25 3-2.5 3-5 0-2.21-1.79-4-4-4S8 6.79 8 9h2c0-1.1.9-2 2-2z" + }, + "children": [] + }] +}; +exports.ic_live_help_twotone = ic_live_help_twotone; \ No newline at end of file diff --git a/dist/md/ic_live_tv.js b/dist/md/ic_live_tv.js new file mode 100644 index 000000000..fbc10aa5e --- /dev/null +++ b/dist/md/ic_live_tv.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_live_tv = void 0; +var ic_live_tv = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 6h-7.59l3.29-3.29L16 2l-4 4-4-4-.71.71L10.59 6H3c-1.1 0-2 .89-2 2v12c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V8c0-1.11-.9-2-2-2zm0 14H3V8h18v12zM9 10v8l7-4z" + }, + "children": [] + }] +}; +exports.ic_live_tv = ic_live_tv; \ No newline at end of file diff --git a/dist/md/ic_live_tv_outline.js b/dist/md/ic_live_tv_outline.js new file mode 100644 index 000000000..c1f04a77a --- /dev/null +++ b/dist/md/ic_live_tv_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_live_tv_outline = void 0; +var ic_live_tv_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 10v8l7-4zm12-4h-7.58l3.29-3.29L16 2l-4 4h-.03l-4-4-.69.71L10.56 6H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 14H3V8h18v12z" + }, + "children": [] + }] +}; +exports.ic_live_tv_outline = ic_live_tv_outline; \ No newline at end of file diff --git a/dist/md/ic_live_tv_twotone.js b/dist/md/ic_live_tv_twotone.js new file mode 100644 index 000000000..d7da6ccd2 --- /dev/null +++ b/dist/md/ic_live_tv_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_live_tv_twotone = void 0; +var ic_live_tv_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 20h18V8H3v12zm6-10l7 4-7 4v-8z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 10v8l7-4zm12-4h-7.58l3.29-3.29L16 2l-4 4h-.03l-4-4-.69.71L10.56 6H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 14H3V8h18v12z" + }, + "children": [] + }] +}; +exports.ic_live_tv_twotone = ic_live_tv_twotone; \ No newline at end of file diff --git a/dist/md/ic_local_activity.js b/dist/md/ic_local_activity.js new file mode 100644 index 000000000..f7d6b85be --- /dev/null +++ b/dist/md/ic_local_activity.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_activity = void 0; +var ic_local_activity = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 12c0-1.1.9-2 2-2V6c0-1.1-.9-2-2-2H4c-1.1 0-1.99.9-1.99 2v4c1.1 0 1.99.9 1.99 2s-.89 2-2 2v4c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-4c-1.1 0-2-.9-2-2zm-4.42 4.8L12 14.5l-3.58 2.3 1.08-4.12-3.29-2.69 4.24-.25L12 5.8l1.54 3.95 4.24.25-3.29 2.69 1.09 4.11z" + }, + "children": [] + }] +}; +exports.ic_local_activity = ic_local_activity; \ No newline at end of file diff --git a/dist/md/ic_local_activity_outline.js b/dist/md/ic_local_activity_outline.js new file mode 100644 index 000000000..32389ed81 --- /dev/null +++ b/dist/md/ic_local_activity_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_activity_outline = void 0; +var ic_local_activity_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 10V6c0-1.1-.9-2-2-2H4c-1.1 0-1.99.9-1.99 2v4c1.1 0 1.99.9 1.99 2s-.89 2-2 2v4c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-4c-1.1 0-2-.9-2-2s.9-2 2-2zm-2-1.46c-1.19.69-2 1.99-2 3.46s.81 2.77 2 3.46V18H4v-2.54c1.19-.69 2-1.99 2-3.46 0-1.48-.8-2.77-1.99-3.46L4 6h16v2.54zM9.07 16L12 14.12 14.93 16l-.89-3.36 2.69-2.2-3.47-.21L12 7l-1.27 3.22-3.47.21 2.69 2.2z" + }, + "children": [] + }] +}; +exports.ic_local_activity_outline = ic_local_activity_outline; \ No newline at end of file diff --git a/dist/md/ic_local_activity_twotone.js b/dist/md/ic_local_activity_twotone.js new file mode 100644 index 000000000..0627f395a --- /dev/null +++ b/dist/md/ic_local_activity_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_activity_twotone = void 0; +var ic_local_activity_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4.01 8.54C5.2 9.23 6 10.52 6 12s-.81 2.77-2 3.46V18h16v-2.54c-1.19-.69-2-1.99-2-3.46s.81-2.77 2-3.46V6H4l.01 2.54zm6.72 1.68L12 7l1.26 3.23 3.47.2-2.69 2.2.89 3.37L12 14.12 9.07 16l.88-3.37-2.69-2.2 3.47-.21z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 4H4c-1.1 0-1.99.9-1.99 2v4c1.1 0 1.99.9 1.99 2s-.89 2-2 2v4c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-4c-1.1 0-2-.9-2-2s.9-2 2-2V6c0-1.1-.9-2-2-2zm0 4.54c-1.19.69-2 1.99-2 3.46s.81 2.77 2 3.46V18H4v-2.54c1.19-.69 2-1.99 2-3.46 0-1.48-.8-2.77-1.99-3.46L4 6h16v2.54zM9.07 16L12 14.12 14.93 16l-.89-3.36 2.69-2.2-3.47-.21L12 7l-1.27 3.22-3.47.21 2.69 2.2z" + }, + "children": [] + }] +}; +exports.ic_local_activity_twotone = ic_local_activity_twotone; \ No newline at end of file diff --git a/dist/md/ic_local_airport.js b/dist/md/ic_local_airport.js new file mode 100644 index 000000000..15e542ee4 --- /dev/null +++ b/dist/md/ic_local_airport.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_airport = void 0; +var ic_local_airport = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,16v-2l-8.5-5V3.5C13.5,2.67,12.83,2,12,2s-1.5,0.67-1.5,1.5V9L2,14v2l8.5-2.5V19L8,20.5L8,22l4-1l4,1l0-1.5L13.5,19 v-5.5L22,16z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,16v-2l-8.5-5V3.5C13.5,2.67,12.83,2,12,2s-1.5,0.67-1.5,1.5V9L2,14v2l8.5-2.5V19L8,20.5L8,22l4-1l4,1l0-1.5L13.5,19 v-5.5L22,16z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M0,0h24v24H0V0z", + "fill": "none" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M0,0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }] + }] + }] +}; +exports.ic_local_airport = ic_local_airport; \ No newline at end of file diff --git a/dist/md/ic_local_airport_outline.js b/dist/md/ic_local_airport_outline.js new file mode 100644 index 000000000..2f3468cae --- /dev/null +++ b/dist/md/ic_local_airport_outline.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_airport_outline = void 0; +var ic_local_airport_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,16v-2l-8.5-5V3.5C13.5,2.67,12.83,2,12,2s-1.5,0.67-1.5,1.5V9L2,14v2l8.5-2.5V19L8,20.5L8,22l4-1l4,1l0-1.5L13.5,19 v-5.5L22,16z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,16v-2l-8.5-5V3.5C13.5,2.67,12.83,2,12,2s-1.5,0.67-1.5,1.5V9L2,14v2l8.5-2.5V19L8,20.5L8,22l4-1l4,1l0-1.5L13.5,19 v-5.5L22,16z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M0,0h24v24H0V0z", + "fill": "none" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M0,0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }] + }] + }] +}; +exports.ic_local_airport_outline = ic_local_airport_outline; \ No newline at end of file diff --git a/dist/md/ic_local_airport_twotone.js b/dist/md/ic_local_airport_twotone.js new file mode 100644 index 000000000..06b376d63 --- /dev/null +++ b/dist/md/ic_local_airport_twotone.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_airport_twotone = void 0; +var ic_local_airport_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,16v-2l-8.5-5V3.5C13.5,2.67,12.83,2,12,2s-1.5,0.67-1.5,1.5V9L2,14v2l8.5-2.5V19L8,20.5L8,22l4-1l4,1l0-1.5L13.5,19 v-5.5L22,16z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,16v-2l-8.5-5V3.5C13.5,2.67,12.83,2,12,2s-1.5,0.67-1.5,1.5V9L2,14v2l8.5-2.5V19L8,20.5L8,22l4-1l4,1l0-1.5L13.5,19 v-5.5L22,16z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M0,0h24v24H0V0z", + "fill": "none" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M0,0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }] + }] + }] +}; +exports.ic_local_airport_twotone = ic_local_airport_twotone; \ No newline at end of file diff --git a/dist/md/ic_local_atm.js b/dist/md/ic_local_atm.js new file mode 100644 index 000000000..3244a14ee --- /dev/null +++ b/dist/md/ic_local_atm.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_atm = void 0; +var ic_local_atm = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 17h2v-1h1c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1h-3v-1h4V8h-2V7h-2v1h-1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h3v1H9v2h2v1zm9-13H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4V6h16v12z" + }, + "children": [] + }] +}; +exports.ic_local_atm = ic_local_atm; \ No newline at end of file diff --git a/dist/md/ic_local_atm_outline.js b/dist/md/ic_local_atm_outline.js new file mode 100644 index 000000000..553e270cd --- /dev/null +++ b/dist/md/ic_local_atm_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_atm_outline = void 0; +var ic_local_atm_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 17h2v-1h1c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1h-3v-1h4V8h-2V7h-2v1h-1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h3v1H9v2h2v1zm9-13H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4V6h16v12z" + }, + "children": [] + }] +}; +exports.ic_local_atm_outline = ic_local_atm_outline; \ No newline at end of file diff --git a/dist/md/ic_local_atm_twotone.js b/dist/md/ic_local_atm_twotone.js new file mode 100644 index 000000000..2859a39f2 --- /dev/null +++ b/dist/md/ic_local_atm_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_atm_twotone = void 0; +var ic_local_atm_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 18h16V6H4v12zm5-4h4v-1h-3c-.55 0-1-.45-1-1V9c0-.55.45-1 1-1h1V7h2v1h2v2h-4v1h3c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1h-1v1h-2v-1H9v-2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4V6h16v12zm-9-1h2v-1h1c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1h-3v-1h4V8h-2V7h-2v1h-1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h3v1H9v2h2v1z" + }, + "children": [] + }] +}; +exports.ic_local_atm_twotone = ic_local_atm_twotone; \ No newline at end of file diff --git a/dist/md/ic_local_bar.js b/dist/md/ic_local_bar.js new file mode 100644 index 000000000..2e9ba6bc9 --- /dev/null +++ b/dist/md/ic_local_bar.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_bar = void 0; +var ic_local_bar = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 5V3H3v2l8 9v5H6v2h12v-2h-5v-5l8-9zM7.43 7L5.66 5h12.69l-1.78 2H7.43z" + }, + "children": [] + }] +}; +exports.ic_local_bar = ic_local_bar; \ No newline at end of file diff --git a/dist/md/ic_local_bar_outline.js b/dist/md/ic_local_bar_outline.js new file mode 100644 index 000000000..f27e3cde9 --- /dev/null +++ b/dist/md/ic_local_bar_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_bar_outline = void 0; +var ic_local_bar_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14.77 9L12 12.11 9.23 9h5.54M21 3H3v2l8 9v5H6v2h12v-2h-5v-5l8-9V3zM7.43 7L5.66 5h12.69l-1.78 2H7.43z" + }, + "children": [] + }] +}; +exports.ic_local_bar_outline = ic_local_bar_outline; \ No newline at end of file diff --git a/dist/md/ic_local_bar_twotone.js b/dist/md/ic_local_bar_twotone.js new file mode 100644 index 000000000..2a71699f4 --- /dev/null +++ b/dist/md/ic_local_bar_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_bar_twotone = void 0; +var ic_local_bar_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9.23 9L12 12.11 14.77 9z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 5V3H3v2l8 9v5H6v2h12v-2h-5v-5l8-9zM5.66 5h12.69l-1.78 2H7.43L5.66 5zM12 12.11L9.23 9h5.54L12 12.11z" + }, + "children": [] + }] +}; +exports.ic_local_bar_twotone = ic_local_bar_twotone; \ No newline at end of file diff --git a/dist/md/ic_local_cafe.js b/dist/md/ic_local_cafe.js new file mode 100644 index 000000000..83e1f987c --- /dev/null +++ b/dist/md/ic_local_cafe.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_cafe = void 0; +var ic_local_cafe = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 3H4v10c0 2.21 1.79 4 4 4h6c2.21 0 4-1.79 4-4v-3h2c1.11 0 2-.9 2-2V5c0-1.11-.89-2-2-2zm0 5h-2V5h2v3zM4 19h16v2H4z" + }, + "children": [] + }] +}; +exports.ic_local_cafe = ic_local_cafe; \ No newline at end of file diff --git a/dist/md/ic_local_cafe_outline.js b/dist/md/ic_local_cafe_outline.js new file mode 100644 index 000000000..af2755af0 --- /dev/null +++ b/dist/md/ic_local_cafe_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_cafe_outline = void 0; +var ic_local_cafe_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 5v8c0 1.1-.9 2-2 2H8c-1.1 0-2-.9-2-2V5h10m4-2H4v10c0 2.21 1.79 4 4 4h6c2.21 0 4-1.79 4-4v-3h2c1.11 0 2-.89 2-2V5c0-1.11-.89-2-2-2zm-2 5V5h2v3h-2zm2 11H2v2h18v-2z" + }, + "children": [] + }] +}; +exports.ic_local_cafe_outline = ic_local_cafe_outline; \ No newline at end of file diff --git a/dist/md/ic_local_cafe_twotone.js b/dist/md/ic_local_cafe_twotone.js new file mode 100644 index 000000000..1dba9ee17 --- /dev/null +++ b/dist/md/ic_local_cafe_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_cafe_twotone = void 0; +var ic_local_cafe_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8 15h6c1.1 0 2-.9 2-2V5H6v8c0 1.1.9 2 2 2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M2 19h18v2H2zm2-6c0 2.21 1.79 4 4 4h6c2.21 0 4-1.79 4-4v-3h2c1.11 0 2-.89 2-2V5c0-1.11-.89-2-2-2H4v10zm14-8h2v3h-2V5zM6 5h10v8c0 1.1-.9 2-2 2H8c-1.1 0-2-.9-2-2V5z" + }, + "children": [] + }] +}; +exports.ic_local_cafe_twotone = ic_local_cafe_twotone; \ No newline at end of file diff --git a/dist/md/ic_local_car_wash.js b/dist/md/ic_local_car_wash.js new file mode 100644 index 000000000..91a8254a8 --- /dev/null +++ b/dist/md/ic_local_car_wash.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_car_wash = void 0; +var ic_local_car_wash = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 5c.83 0 1.5-.67 1.5-1.5 0-1-1.5-2.7-1.5-2.7s-1.5 1.7-1.5 2.7c0 .83.67 1.5 1.5 1.5zm-5 0c.83 0 1.5-.67 1.5-1.5 0-1-1.5-2.7-1.5-2.7s-1.5 1.7-1.5 2.7c0 .83.67 1.5 1.5 1.5zM7 5c.83 0 1.5-.67 1.5-1.5C8.5 2.5 7 .8 7 .8S5.5 2.5 5.5 3.5C5.5 4.33 6.17 5 7 5zm11.92 3.01C18.72 7.42 18.16 7 17.5 7h-11c-.66 0-1.21.42-1.42 1.01L3 14v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.5 18c-.83 0-1.5-.67-1.5-1.5S5.67 15 6.5 15s1.5.67 1.5 1.5S7.33 18 6.5 18zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 13l1.5-4.5h11L19 13H5z" + }, + "children": [] + }] +}; +exports.ic_local_car_wash = ic_local_car_wash; \ No newline at end of file diff --git a/dist/md/ic_local_car_wash_outline.js b/dist/md/ic_local_car_wash_outline.js new file mode 100644 index 000000000..93e3e0bcd --- /dev/null +++ b/dist/md/ic_local_car_wash_outline.js @@ -0,0 +1,40 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_car_wash_outline = void 0; +var ic_local_car_wash_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 5c.83 0 1.5-.67 1.5-1.5 0-1-1.5-2.7-1.5-2.7s-1.5 1.7-1.5 2.7c0 .83.67 1.5 1.5 1.5zm-5 0c.83 0 1.5-.67 1.5-1.5 0-1-1.5-2.7-1.5-2.7s-1.5 1.7-1.5 2.7c0 .83.67 1.5 1.5 1.5zM7 5c.83 0 1.5-.67 1.5-1.5C8.5 2.5 7 .8 7 .8S5.5 2.5 5.5 3.5C5.5 4.33 6.17 5 7 5zm11.92 3.01C18.72 7.42 18.16 7 17.5 7h-11c-.66 0-1.21.42-1.42 1.01L3 14v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.85 9h10.29l1.04 3H5.81l1.04-3zM19 19H5v-4.66l.12-.34h13.77l.11.34V19z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "7.5", + "cy": "16.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "16.5", + "cy": "16.5", + "r": "1.5" + }, + "children": [] + }] +}; +exports.ic_local_car_wash_outline = ic_local_car_wash_outline; \ No newline at end of file diff --git a/dist/md/ic_local_car_wash_twotone.js b/dist/md/ic_local_car_wash_twotone.js new file mode 100644 index 000000000..b20fa019e --- /dev/null +++ b/dist/md/ic_local_car_wash_twotone.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_car_wash_twotone = void 0; +var ic_local_car_wash_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5.12 14l-.12.34V19h14v-4.66l-.12-.34H5.12zm2.38 4c-.83 0-1.5-.67-1.5-1.5S6.67 15 7.5 15s1.5.67 1.5 1.5S8.33 18 7.5 18zm9 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.5 3.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5c0-1-1.5-2.7-1.5-2.7s-1.5 1.7-1.5 2.7zm-2 0c0-1-1.5-2.7-1.5-2.7s-1.5 1.7-1.5 2.7c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5zm-5 0C8.5 2.5 7 .8 7 .8S5.5 2.5 5.5 3.5C5.5 4.33 6.17 5 7 5s1.5-.67 1.5-1.5zM21 14l-2.08-5.99C18.72 7.42 18.16 7 17.5 7h-11c-.66 0-1.21.42-1.42 1.01L3 14v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8zM6.85 9h10.29l1.04 3H5.81l1.04-3zM19 19H5v-4.66l.12-.34h13.77l.11.34V19z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "7.5", + "cy": "16.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "16.5", + "cy": "16.5", + "r": "1.5" + }, + "children": [] + }] +}; +exports.ic_local_car_wash_twotone = ic_local_car_wash_twotone; \ No newline at end of file diff --git a/dist/md/ic_local_convenience_store.js b/dist/md/ic_local_convenience_store.js new file mode 100644 index 000000000..44d5a17ee --- /dev/null +++ b/dist/md/ic_local_convenience_store.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_convenience_store = void 0; +var ic_local_convenience_store = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 7V4H5v3H2v13h8v-4h4v4h8V7h-3zm-8 3H9v1h2v1H8V9h2V8H8V7h3v3zm5 2h-1v-2h-2V7h1v2h1V7h1v5z" + }, + "children": [] + }] +}; +exports.ic_local_convenience_store = ic_local_convenience_store; \ No newline at end of file diff --git a/dist/md/ic_local_convenience_store_outline.js b/dist/md/ic_local_convenience_store_outline.js new file mode 100644 index 000000000..0b12dc4b8 --- /dev/null +++ b/dist/md/ic_local_convenience_store_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_convenience_store_outline = void 0; +var ic_local_convenience_store_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 7V4H5v3H2v13h8v-4h4v4h8V7h-3zm1 11h-4v-4H8v4H4V9h3V6h10v3h3v9zM8 8h2v1H8v3h3v-1H9v-1h2V7H8zm7 1h-1V7h-1v3h2v2h1V7h-1z" + }, + "children": [] + }] +}; +exports.ic_local_convenience_store_outline = ic_local_convenience_store_outline; \ No newline at end of file diff --git a/dist/md/ic_local_convenience_store_twotone.js b/dist/md/ic_local_convenience_store_twotone.js new file mode 100644 index 000000000..387956a1d --- /dev/null +++ b/dist/md/ic_local_convenience_store_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_convenience_store_twotone = void 0; +var ic_local_convenience_store_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 14h2v4h4V9h-3V6H7v3H4v9h4v-4h6zm-1-7h1v2h1V7h1v5h-1v-2h-2V7zM8 9h2V8H8V7h3v3H9v1h2v1H8V9z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 16h4v4h8V7h-3V4H5v3H2v13h8v-4zm-2 0v2H4V9h3V6h10v3h3v9h-4v-4H8v2zm3-5H9v-1h2V7H8v1h2v1H8v3h3zm4 1h1V7h-1v2h-1V7h-1v3h2z" + }, + "children": [] + }] +}; +exports.ic_local_convenience_store_twotone = ic_local_convenience_store_twotone; \ No newline at end of file diff --git a/dist/md/ic_local_dining.js b/dist/md/ic_local_dining.js new file mode 100644 index 000000000..08516f20a --- /dev/null +++ b/dist/md/ic_local_dining.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_dining = void 0; +var ic_local_dining = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8.1 13.34l2.83-2.83L3.91 3.5c-1.56 1.56-1.56 4.09 0 5.66l4.19 4.18zm6.78-1.81c1.53.71 3.68.21 5.27-1.38 1.91-1.91 2.28-4.65.81-6.12-1.46-1.46-4.2-1.1-6.12.81-1.59 1.59-2.09 3.74-1.38 5.27L3.7 19.87l1.41 1.41L12 14.41l6.88 6.88 1.41-1.41L13.41 13l1.47-1.47z" + }, + "children": [] + }] +}; +exports.ic_local_dining = ic_local_dining; \ No newline at end of file diff --git a/dist/md/ic_local_dining_outline.js b/dist/md/ic_local_dining_outline.js new file mode 100644 index 000000000..9bb0033d6 --- /dev/null +++ b/dist/md/ic_local_dining_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_dining_outline = void 0; +var ic_local_dining_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8.1 13.34l2.83-2.83L3.91 3.5c-1.56 1.56-1.56 4.09 0 5.66l4.19 4.18zm6.78-1.81c1.53.71 3.68.21 5.27-1.38 1.91-1.91 2.28-4.65.81-6.12-1.46-1.46-4.2-1.1-6.12.81-1.59 1.59-2.09 3.74-1.38 5.27L3.7 19.87l1.41 1.41L12 14.41l6.88 6.88 1.41-1.41L13.41 13l1.47-1.47z" + }, + "children": [] + }] +}; +exports.ic_local_dining_outline = ic_local_dining_outline; \ No newline at end of file diff --git a/dist/md/ic_local_dining_twotone.js b/dist/md/ic_local_dining_twotone.js new file mode 100644 index 000000000..f782373b1 --- /dev/null +++ b/dist/md/ic_local_dining_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_dining_twotone = void 0; +var ic_local_dining_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5.11 21.28L12 14.41l6.88 6.88 1.41-1.41L13.41 13l1.47-1.47c1.53.71 3.68.21 5.27-1.38 1.91-1.91 2.28-4.65.81-6.12-1.46-1.46-4.2-1.1-6.12.81-1.59 1.59-2.09 3.74-1.38 5.27L3.7 19.87l1.41 1.41zM3.91 9.16l4.19 4.18 2.83-2.83L3.91 3.5c-1.56 1.56-1.56 4.09 0 5.66z" + }, + "children": [] + }] +}; +exports.ic_local_dining_twotone = ic_local_dining_twotone; \ No newline at end of file diff --git a/dist/md/ic_local_drink.js b/dist/md/ic_local_drink.js new file mode 100644 index 000000000..2bcdb0934 --- /dev/null +++ b/dist/md/ic_local_drink.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_drink = void 0; +var ic_local_drink = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 2l2.01 18.23C5.13 21.23 5.97 22 7 22h10c1.03 0 1.87-.77 1.99-1.77L21 2H3zm9 17c-1.66 0-3-1.34-3-3 0-2 3-5.4 3-5.4s3 3.4 3 5.4c0 1.66-1.34 3-3 3zm6.33-11H5.67l-.44-4h13.53l-.43 4z" + }, + "children": [] + }] +}; +exports.ic_local_drink = ic_local_drink; \ No newline at end of file diff --git a/dist/md/ic_local_drink_outline.js b/dist/md/ic_local_drink_outline.js new file mode 100644 index 000000000..78f9245fa --- /dev/null +++ b/dist/md/ic_local_drink_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_drink_outline = void 0; +var ic_local_drink_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 2l2.01 18.23C5.13 21.23 5.97 22 7 22h10c1.03 0 1.87-.77 1.99-1.77L21 2H3zm14 18l-10 .01L5.89 10H18.1L17 20zm1.33-12H5.67l-.44-4h13.53l-.43 4zM12 19c1.66 0 3-1.34 3-3 0-2-3-5.4-3-5.4S9 14 9 16c0 1.66 1.34 3 3 3zm0-5.09c.59.91 1 1.73 1 2.09 0 .55-.45 1-1 1s-1-.45-1-1c0-.37.41-1.19 1-2.09z" + }, + "children": [] + }] +}; +exports.ic_local_drink_outline = ic_local_drink_outline; \ No newline at end of file diff --git a/dist/md/ic_local_drink_twotone.js b/dist/md/ic_local_drink_twotone.js new file mode 100644 index 000000000..2a6c1855f --- /dev/null +++ b/dist/md/ic_local_drink_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_drink_twotone = void 0; +var ic_local_drink_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 20.01L17 20l1.1-10H5.89L7 20.01zm5-9.41s3 3.4 3 5.4c0 1.66-1.34 3-3 3s-3-1.34-3-3c0-2 3-5.4 3-5.4z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5.01 20.23C5.13 21.23 5.97 22 7 22h10c1.03 0 1.87-.77 1.99-1.77L21 2H3l2.01 18.23zM17 20l-10 .01L5.89 10H18.1L17 20zm1.76-16l-.43 4H5.67l-.44-4h13.53zM12 19c1.66 0 3-1.34 3-3 0-2-3-5.4-3-5.4S9 14 9 16c0 1.66 1.34 3 3 3zm0-5.09c.59.91 1 1.73 1 2.09 0 .55-.45 1-1 1s-1-.45-1-1c0-.37.41-1.19 1-2.09z" + }, + "children": [] + }] +}; +exports.ic_local_drink_twotone = ic_local_drink_twotone; \ No newline at end of file diff --git a/dist/md/ic_local_fire_department.js b/dist/md/ic_local_fire_department.js new file mode 100644 index 000000000..9eabccdde --- /dev/null +++ b/dist/md/ic_local_fire_department.js @@ -0,0 +1,49 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_fire_department = void 0; +var ic_local_fire_department = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "y": "0" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "y": "0" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M19.48,12.35c-1.57-4.08-7.16-4.3-5.81-10.23c0.1-0.44-0.37-0.78-0.75-0.55C9.29,3.71,6.68,8,8.87,13.62 c0.18,0.46-0.36,0.89-0.75,0.59c-1.81-1.37-2-3.34-1.84-4.75c0.06-0.52-0.62-0.77-0.91-0.34C4.69,10.16,4,11.84,4,14.37 c0.38,5.6,5.11,7.32,6.81,7.54c2.43,0.31,5.06-0.14,6.95-1.87C19.84,18.11,20.6,15.03,19.48,12.35z M10.2,17.38 c1.44-0.35,2.18-1.39,2.38-2.31c0.33-1.43-0.96-2.83-0.09-5.09c0.33,1.87,3.27,3.04,3.27,5.08C15.84,17.59,13.1,19.76,10.2,17.38z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19.48,12.35c-1.57-4.08-7.16-4.3-5.81-10.23c0.1-0.44-0.37-0.78-0.75-0.55C9.29,3.71,6.68,8,8.87,13.62 c0.18,0.46-0.36,0.89-0.75,0.59c-1.81-1.37-2-3.34-1.84-4.75c0.06-0.52-0.62-0.77-0.91-0.34C4.69,10.16,4,11.84,4,14.37 c0.38,5.6,5.11,7.32,6.81,7.54c2.43,0.31,5.06-0.14,6.95-1.87C19.84,18.11,20.6,15.03,19.48,12.35z M10.2,17.38 c1.44-0.35,2.18-1.39,2.38-2.31c0.33-1.43-0.96-2.83-0.09-5.09c0.33,1.87,3.27,3.04,3.27,5.08C15.84,17.59,13.1,19.76,10.2,17.38z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_local_fire_department = ic_local_fire_department; \ No newline at end of file diff --git a/dist/md/ic_local_fire_department_outline.js b/dist/md/ic_local_fire_department_outline.js new file mode 100644 index 000000000..a44424997 --- /dev/null +++ b/dist/md/ic_local_fire_department_outline.js @@ -0,0 +1,49 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_fire_department_outline = void 0; +var ic_local_fire_department_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "y": "0" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "y": "0" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M19.48,12.35c-1.57-4.08-7.16-4.3-5.81-10.23c0.1-0.44-0.37-0.78-0.75-0.55C9.29,3.71,6.68,8,8.87,13.62 c0.18,0.46-0.36,0.89-0.75,0.59c-1.81-1.37-2-3.34-1.84-4.75c0.06-0.52-0.62-0.77-0.91-0.34C4.69,10.16,4,11.84,4,14.37 c0.38,5.6,5.11,7.32,6.81,7.54c2.43,0.31,5.06-0.14,6.95-1.87C19.84,18.11,20.6,15.03,19.48,12.35z M10.2,17.38 c1.44-0.35,2.18-1.39,2.38-2.31c0.33-1.43-0.96-2.83-0.09-5.09c0.33,1.87,3.27,3.04,3.27,5.08C15.84,17.59,13.1,19.76,10.2,17.38z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19.48,12.35c-1.57-4.08-7.16-4.3-5.81-10.23c0.1-0.44-0.37-0.78-0.75-0.55C9.29,3.71,6.68,8,8.87,13.62 c0.18,0.46-0.36,0.89-0.75,0.59c-1.81-1.37-2-3.34-1.84-4.75c0.06-0.52-0.62-0.77-0.91-0.34C4.69,10.16,4,11.84,4,14.37 c0.38,5.6,5.11,7.32,6.81,7.54c2.43,0.31,5.06-0.14,6.95-1.87C19.84,18.11,20.6,15.03,19.48,12.35z M10.2,17.38 c1.44-0.35,2.18-1.39,2.38-2.31c0.33-1.43-0.96-2.83-0.09-5.09c0.33,1.87,3.27,3.04,3.27,5.08C15.84,17.59,13.1,19.76,10.2,17.38z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_local_fire_department_outline = ic_local_fire_department_outline; \ No newline at end of file diff --git a/dist/md/ic_local_fire_department_twotone.js b/dist/md/ic_local_fire_department_twotone.js new file mode 100644 index 000000000..a6b7bd82a --- /dev/null +++ b/dist/md/ic_local_fire_department_twotone.js @@ -0,0 +1,73 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_fire_department_twotone = void 0; +var ic_local_fire_department_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "y": "0" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "y": "0" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12.58,15.07c-0.2,0.92-0.94,1.96-2.38,2.31c2.9,2.37,5.64,0.2,5.56-2.32 c0-2.05-2.95-3.21-3.27-5.08C11.62,12.24,12.9,13.64,12.58,15.07z", + "enable-background": "new", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12.58,15.07c-0.2,0.92-0.94,1.96-2.38,2.31c2.9,2.37,5.64,0.2,5.56-2.32 c0-2.05-2.95-3.21-3.27-5.08C11.62,12.24,12.9,13.64,12.58,15.07z", + "enable-background": "new", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19.48,12.35c-1.57-4.08-7.16-4.3-5.81-10.23c0.1-0.44-0.37-0.78-0.75-0.55C9.29,3.71,6.68,8,8.87,13.62 c0.18,0.46-0.36,0.89-0.75,0.59c-1.81-1.37-2-3.34-1.84-4.75c0.06-0.52-0.62-0.77-0.91-0.34C4.69,10.16,4,11.84,4,14.37 c0.38,5.6,5.11,7.32,6.81,7.54c2.43,0.31,5.06-0.14,6.95-1.87C19.84,18.11,20.6,15.03,19.48,12.35z M10.2,17.38 c1.44-0.35,2.18-1.39,2.38-2.31c0.33-1.43-0.96-2.83-0.09-5.09c0.33,1.87,3.27,3.04,3.27,5.08C15.84,17.59,13.1,19.76,10.2,17.38z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19.48,12.35c-1.57-4.08-7.16-4.3-5.81-10.23c0.1-0.44-0.37-0.78-0.75-0.55C9.29,3.71,6.68,8,8.87,13.62 c0.18,0.46-0.36,0.89-0.75,0.59c-1.81-1.37-2-3.34-1.84-4.75c0.06-0.52-0.62-0.77-0.91-0.34C4.69,10.16,4,11.84,4,14.37 c0.38,5.6,5.11,7.32,6.81,7.54c2.43,0.31,5.06-0.14,6.95-1.87C19.84,18.11,20.6,15.03,19.48,12.35z M10.2,17.38 c1.44-0.35,2.18-1.39,2.38-2.31c0.33-1.43-0.96-2.83-0.09-5.09c0.33,1.87,3.27,3.04,3.27,5.08C15.84,17.59,13.1,19.76,10.2,17.38z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_local_fire_department_twotone = ic_local_fire_department_twotone; \ No newline at end of file diff --git a/dist/md/ic_local_florist.js b/dist/md/ic_local_florist.js new file mode 100644 index 000000000..f6341f832 --- /dev/null +++ b/dist/md/ic_local_florist.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_florist = void 0; +var ic_local_florist = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 22c4.97 0 9-4.03 9-9-4.97 0-9 4.03-9 9zM5.6 10.25c0 1.38 1.12 2.5 2.5 2.5.53 0 1.01-.16 1.42-.44l-.02.19c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5l-.02-.19c.4.28.89.44 1.42.44 1.38 0 2.5-1.12 2.5-2.5 0-1-.59-1.85-1.43-2.25.84-.4 1.43-1.25 1.43-2.25 0-1.38-1.12-2.5-2.5-2.5-.53 0-1.01.16-1.42.44l.02-.19C14.5 2.12 13.38 1 12 1S9.5 2.12 9.5 3.5l.02.19c-.4-.28-.89-.44-1.42-.44-1.38 0-2.5 1.12-2.5 2.5 0 1 .59 1.85 1.43 2.25-.84.4-1.43 1.25-1.43 2.25zM12 5.5c1.38 0 2.5 1.12 2.5 2.5s-1.12 2.5-2.5 2.5S9.5 9.38 9.5 8s1.12-2.5 2.5-2.5zM3 13c0 4.97 4.03 9 9 9 0-4.97-4.03-9-9-9z" + }, + "children": [] + }] +}; +exports.ic_local_florist = ic_local_florist; \ No newline at end of file diff --git a/dist/md/ic_local_florist_outline.js b/dist/md/ic_local_florist_outline.js new file mode 100644 index 000000000..61a6ee393 --- /dev/null +++ b/dist/md/ic_local_florist_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_florist_outline = void 0; +var ic_local_florist_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8.66 13.07c.15 0 .29-.01.43-.03C9.56 14.19 10.69 15 12 15s2.44-.81 2.91-1.96c.14.02.29.03.43.03 1.73 0 3.14-1.41 3.14-3.14 0-.71-.25-1.39-.67-1.93.43-.54.67-1.22.67-1.93 0-1.73-1.41-3.14-3.14-3.14-.15 0-.29.01-.43.03C14.44 1.81 13.31 1 12 1s-2.44.81-2.91 1.96c-.14-.02-.29-.03-.43-.03-1.73 0-3.14 1.41-3.14 3.14 0 .71.25 1.39.67 1.93-.43.54-.68 1.22-.68 1.93 0 1.73 1.41 3.14 3.15 3.14zM12 13c-.62 0-1.12-.49-1.14-1.1l.12-1.09c.32.12.66.19 1.02.19s.71-.07 1.03-.19l.11 1.09c-.02.61-.52 1.1-1.14 1.1zm3.34-1.93c-.24 0-.46-.07-.64-.2l-.81-.57c.55-.45.94-1.09 1.06-1.83l.88.42c.4.19.66.59.66 1.03 0 .64-.52 1.15-1.15 1.15zm-.65-5.94c.2-.13.42-.2.65-.2.63 0 1.14.51 1.14 1.14 0 .44-.25.83-.66 1.03l-.88.42c-.12-.74-.51-1.38-1.07-1.83l.82-.56zM12 3c.62 0 1.12.49 1.14 1.1l-.11 1.09C12.71 5.07 12.36 5 12 5s-.7.07-1.02.19l-.12-1.09c.02-.61.52-1.1 1.14-1.1zM8.66 4.93c.24 0 .46.07.64.2l.81.56c-.55.45-.94 1.09-1.06 1.83l-.88-.42c-.4-.2-.66-.59-.66-1.03 0-.63.52-1.14 1.15-1.14zM8.17 8.9l.88-.42c.12.74.51 1.38 1.07 1.83l-.81.55c-.2.13-.42.2-.65.2-.63 0-1.14-.51-1.14-1.14-.01-.43.25-.82.65-1.02zM12 22c4.97 0 9-4.03 9-9-4.97 0-9 4.03-9 9zm2.44-2.44c.71-1.9 2.22-3.42 4.12-4.12-.71 1.9-2.22 3.41-4.12 4.12zM3 13c0 4.97 4.03 9 9 9 0-4.97-4.03-9-9-9zm2.44 2.44c1.9.71 3.42 2.22 4.12 4.12-1.9-.71-3.41-2.22-4.12-4.12z" + }, + "children": [] + }] +}; +exports.ic_local_florist_outline = ic_local_florist_outline; \ No newline at end of file diff --git a/dist/md/ic_local_florist_twotone.js b/dist/md/ic_local_florist_twotone.js new file mode 100644 index 000000000..f50e0bf0b --- /dev/null +++ b/dist/md/ic_local_florist_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_florist_twotone = void 0; +var ic_local_florist_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 13c.62 0 1.12-.49 1.14-1.1l-.11-1.09c-.32.12-.67.19-1.03.19s-.7-.07-1.02-.19l-.12 1.09c.02.61.52 1.1 1.14 1.1zM8.17 7.1l.88.42c.12-.73.51-1.37 1.06-1.83l-.81-.56c-.18-.13-.41-.2-.64-.2-.63 0-1.14.51-1.14 1.14-.01.44.25.83.65 1.03zm7.66 1.8l-.88-.42c-.12.73-.51 1.37-1.06 1.83l.81.57c.18.13.41.2.64.2.63 0 1.14-.51 1.14-1.14.01-.45-.25-.84-.65-1.04zm-.88-1.38l.88-.42c.4-.19.66-.59.66-1.03 0-.63-.51-1.14-1.14-1.14-.24 0-.46.07-.65.2l-.81.55c.55.46.94 1.1 1.06 1.84zM12 5c.36 0 .71.07 1.03.19l.11-1.09C13.12 3.49 12.62 3 12 3s-1.12.49-1.14 1.1l.12 1.09C11.3 5.07 11.64 5 12 5zm-3.34 6.07c.24 0 .46-.07.65-.2l.81-.55c-.56-.46-.95-1.1-1.07-1.84l-.88.42c-.4.2-.66.59-.66 1.03 0 .63.52 1.14 1.15 1.14zm9.9 4.37c-1.9.71-3.42 2.22-4.12 4.12 1.9-.71 3.41-2.22 4.12-4.12zm-13.12 0c.71 1.9 2.22 3.42 4.12 4.12-.71-1.9-2.22-3.41-4.12-4.12z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8.66 13.07c.15 0 .29-.01.43-.03C9.56 14.19 10.69 15 12 15s2.44-.81 2.91-1.96c.14.02.29.03.43.03 1.73 0 3.14-1.41 3.14-3.14 0-.71-.25-1.39-.67-1.93.43-.54.67-1.22.67-1.93 0-1.73-1.41-3.14-3.14-3.14-.15 0-.29.01-.43.03C14.44 1.81 13.31 1 12 1s-2.44.81-2.91 1.96c-.14-.02-.29-.03-.43-.03-1.73 0-3.14 1.41-3.14 3.14 0 .71.25 1.39.67 1.93-.43.54-.68 1.22-.68 1.93 0 1.73 1.41 3.14 3.15 3.14zm6.68-2c-.24 0-.46-.07-.64-.2l-.81-.57c.55-.45.94-1.09 1.06-1.83l.88.42c.4.19.66.59.66 1.03 0 .64-.52 1.15-1.15 1.15zm-.65-5.94c.2-.13.42-.2.65-.2.63 0 1.14.51 1.14 1.14 0 .44-.25.83-.66 1.03l-.88.42c-.12-.74-.51-1.38-1.07-1.83l.82-.56zM12 3c.62 0 1.12.49 1.14 1.1l-.11 1.09C12.71 5.07 12.36 5 12 5s-.7.07-1.02.19l-.12-1.09c.02-.61.52-1.1 1.14-1.1zm1 5c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1zm-2.02 2.81c.32.12.66.19 1.02.19s.71-.07 1.03-.19l.11 1.09c-.02.61-.52 1.1-1.14 1.1s-1.12-.49-1.14-1.1l.12-1.09zM8.66 4.93c.24 0 .46.07.64.2l.81.56c-.55.45-.94 1.09-1.06 1.83l-.88-.42c-.4-.2-.66-.59-.66-1.03 0-.63.52-1.14 1.15-1.14zM8.17 8.9l.88-.42c.12.74.51 1.38 1.07 1.83l-.81.55c-.2.13-.42.2-.65.2-.63 0-1.14-.51-1.14-1.14-.01-.43.25-.82.65-1.02zM12 22c4.97 0 9-4.03 9-9-4.97 0-9 4.03-9 9zm6.56-6.56c-.71 1.9-2.22 3.42-4.12 4.12.71-1.9 2.22-3.41 4.12-4.12zM3 13c0 4.97 4.03 9 9 9 0-4.97-4.03-9-9-9zm2.44 2.44c1.9.71 3.42 2.22 4.12 4.12-1.9-.71-3.41-2.22-4.12-4.12z" + }, + "children": [] + }] +}; +exports.ic_local_florist_twotone = ic_local_florist_twotone; \ No newline at end of file diff --git a/dist/md/ic_local_gas_station.js b/dist/md/ic_local_gas_station.js new file mode 100644 index 000000000..76a2314f9 --- /dev/null +++ b/dist/md/ic_local_gas_station.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_gas_station = void 0; +var ic_local_gas_station = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.77 7.23l.01-.01-3.72-3.72L15 4.56l2.11 2.11c-.94.36-1.61 1.26-1.61 2.33 0 1.38 1.12 2.5 2.5 2.5.36 0 .69-.08 1-.21v7.21c0 .55-.45 1-1 1s-1-.45-1-1V14c0-1.1-.9-2-2-2h-1V5c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2v16h10v-7.5h1.5v5c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5V9c0-.69-.28-1.32-.73-1.77zM12 10H6V5h6v5zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" + }, + "children": [] + }] +}; +exports.ic_local_gas_station = ic_local_gas_station; \ No newline at end of file diff --git a/dist/md/ic_local_gas_station_outline.js b/dist/md/ic_local_gas_station_outline.js new file mode 100644 index 000000000..f724b9a76 --- /dev/null +++ b/dist/md/ic_local_gas_station_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_gas_station_outline = void 0; +var ic_local_gas_station_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.77 7.23l.01-.01-3.72-3.72L15 4.56l2.11 2.11c-.94.36-1.61 1.26-1.61 2.33 0 1.38 1.12 2.5 2.5 2.5.36 0 .69-.08 1-.21v7.21c0 .55-.45 1-1 1s-1-.45-1-1V14c0-1.1-.9-2-2-2h-1V5c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2v16h10v-7.5h1.5v5c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5V9c0-.69-.28-1.32-.73-1.77zM12 13.5V19H6v-7h6v1.5zm0-3.5H6V5h6v5zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" + }, + "children": [] + }] +}; +exports.ic_local_gas_station_outline = ic_local_gas_station_outline; \ No newline at end of file diff --git a/dist/md/ic_local_gas_station_twotone.js b/dist/md/ic_local_gas_station_twotone.js new file mode 100644 index 000000000..1d8ba9edf --- /dev/null +++ b/dist/md/ic_local_gas_station_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_gas_station_twotone = void 0; +var ic_local_gas_station_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 19h6v-7H6z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 3H6c-1.1 0-2 .9-2 2v16h10v-7.5h1.5v5c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5V9c0-.69-.28-1.32-.73-1.77l.01-.01-3.72-3.72L15 4.56l2.11 2.11c-.94.36-1.61 1.26-1.61 2.33 0 1.38 1.12 2.5 2.5 2.5.36 0 .69-.08 1-.21v7.21c0 .55-.45 1-1 1s-1-.45-1-1V14c0-1.1-.9-2-2-2h-1V5c0-1.1-.9-2-2-2zm0 10.5V19H6v-7h6v1.5zm0-3.5H6V5h6v5zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" + }, + "children": [] + }] +}; +exports.ic_local_gas_station_twotone = ic_local_gas_station_twotone; \ No newline at end of file diff --git a/dist/md/ic_local_grocery_store.js b/dist/md/ic_local_grocery_store.js new file mode 100644 index 000000000..8ecd4eb85 --- /dev/null +++ b/dist/md/ic_local_grocery_store.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_grocery_store = void 0; +var ic_local_grocery_store = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zM1 2v2h2l3.6 7.59-1.35 2.45c-.16.28-.25.61-.25.96 0 1.1.9 2 2 2h12v-2H7.42c-.14 0-.25-.11-.25-.25l.03-.12.9-1.63h7.45c.75 0 1.41-.41 1.75-1.03l3.58-6.49c.08-.14.12-.31.12-.48 0-.55-.45-1-1-1H5.21l-.94-2H1zm16 16c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_local_grocery_store = ic_local_grocery_store; \ No newline at end of file diff --git a/dist/md/ic_local_grocery_store_outline.js b/dist/md/ic_local_grocery_store_outline.js new file mode 100644 index 000000000..2b03a31bb --- /dev/null +++ b/dist/md/ic_local_grocery_store_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_grocery_store_outline = void 0; +var ic_local_grocery_store_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2zm-1.45-5c.75 0 1.41-.41 1.75-1.03l3.58-6.49c.37-.66-.11-1.48-.87-1.48H5.21l-.94-2H1v2h2l3.6 7.59-1.35 2.44C4.52 15.37 5.48 17 7 17h12v-2H7l1.1-2h7.45zM6.16 6h12.15l-2.76 5H8.53L6.16 6z" + }, + "children": [] + }] +}; +exports.ic_local_grocery_store_outline = ic_local_grocery_store_outline; \ No newline at end of file diff --git a/dist/md/ic_local_grocery_store_twotone.js b/dist/md/ic_local_grocery_store_twotone.js new file mode 100644 index 000000000..2d6cef3d1 --- /dev/null +++ b/dist/md/ic_local_grocery_store_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_grocery_store_twotone = void 0; +var ic_local_grocery_store_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8.53 11h7.02l2.76-5H6.16z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2zm-1.45-5c.75 0 1.41-.41 1.75-1.03l3.58-6.49c.37-.66-.11-1.48-.87-1.48H5.21l-.94-2H1v2h2l3.6 7.59-1.35 2.44C4.52 15.37 5.48 17 7 17h12v-2H7l1.1-2h7.45zM6.16 6h12.15l-2.76 5H8.53L6.16 6z" + }, + "children": [] + }] +}; +exports.ic_local_grocery_store_twotone = ic_local_grocery_store_twotone; \ No newline at end of file diff --git a/dist/md/ic_local_hospital.js b/dist/md/ic_local_hospital.js new file mode 100644 index 000000000..ebeafe183 --- /dev/null +++ b/dist/md/ic_local_hospital.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_hospital = void 0; +var ic_local_hospital = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-1.99.9-1.99 2L3 19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 11h-4v4h-4v-4H6v-4h4V6h4v4h4v4z" + }, + "children": [] + }] +}; +exports.ic_local_hospital = ic_local_hospital; \ No newline at end of file diff --git a/dist/md/ic_local_hospital_outline.js b/dist/md/ic_local_hospital_outline.js new file mode 100644 index 000000000..3ea77425f --- /dev/null +++ b/dist/md/ic_local_hospital_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_hospital_outline = void 0; +var ic_local_hospital_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-1.99.9-1.99 2L3 19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-8.5-2h3v-3.5H17v-3h-3.5V7h-3v3.5H7v3h3.5z" + }, + "children": [] + }] +}; +exports.ic_local_hospital_outline = ic_local_hospital_outline; \ No newline at end of file diff --git a/dist/md/ic_local_hospital_twotone.js b/dist/md/ic_local_hospital_twotone.js new file mode 100644 index 000000000..db1cebecf --- /dev/null +++ b/dist/md/ic_local_hospital_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_hospital_twotone = void 0; +var ic_local_hospital_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 19h14V5H5v14zm2-8.5h3.5V7h3v3.5H17v3h-3.5V17h-3v-3.5H7v-3z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 5c0-1.1-.9-2-2-2H5c-1.1 0-1.99.9-1.99 2L3 19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5zm-2 14H5V5h14v14zm-8.5-2h3v-3.5H17v-3h-3.5V7h-3v3.5H7v3h3.5z" + }, + "children": [] + }] +}; +exports.ic_local_hospital_twotone = ic_local_hospital_twotone; \ No newline at end of file diff --git a/dist/md/ic_local_hotel.js b/dist/md/ic_local_hotel.js new file mode 100644 index 000000000..7630cfc0a --- /dev/null +++ b/dist/md/ic_local_hotel.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_hotel = void 0; +var ic_local_hotel = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 13c1.66 0 3-1.34 3-3S8.66 7 7 7s-3 1.34-3 3 1.34 3 3 3zm12-6h-8v7H3V5H1v15h2v-3h18v3h2v-9c0-2.21-1.79-4-4-4z" + }, + "children": [] + }] +}; +exports.ic_local_hotel = ic_local_hotel; \ No newline at end of file diff --git a/dist/md/ic_local_hotel_outline.js b/dist/md/ic_local_hotel_outline.js new file mode 100644 index 000000000..d75a59852 --- /dev/null +++ b/dist/md/ic_local_hotel_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_hotel_outline = void 0; +var ic_local_hotel_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 14c1.66 0 3-1.34 3-3S8.66 8 7 8s-3 1.34-3 3 1.34 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm12-3h-8v8H3V5H1v15h2v-3h18v3h2v-9c0-2.21-1.79-4-4-4zm2 8h-8V9h6c1.1 0 2 .9 2 2v4z" + }, + "children": [] + }] +}; +exports.ic_local_hotel_outline = ic_local_hotel_outline; \ No newline at end of file diff --git a/dist/md/ic_local_hotel_twotone.js b/dist/md/ic_local_hotel_twotone.js new file mode 100644 index 000000000..f08863867 --- /dev/null +++ b/dist/md/ic_local_hotel_twotone.js @@ -0,0 +1,40 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_hotel_twotone = void 0; +var ic_local_hotel_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "7", + "cy": "11", + "opacity": ".3", + "r": "1" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 9h-6v6h8v-4c0-1.1-.9-2-2-2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 11c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3zm4 0c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1zm11-4h-8v8H3V5H1v15h2v-3h18v3h2v-9c0-2.21-1.79-4-4-4zm2 8h-8V9h6c1.1 0 2 .9 2 2v4z" + }, + "children": [] + }] +}; +exports.ic_local_hotel_twotone = ic_local_hotel_twotone; \ No newline at end of file diff --git a/dist/md/ic_local_laundry_service.js b/dist/md/ic_local_laundry_service.js new file mode 100644 index 000000000..7ee039b9b --- /dev/null +++ b/dist/md/ic_local_laundry_service.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_laundry_service = void 0; +var ic_local_laundry_service = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9.17 16.83c1.56 1.56 4.1 1.56 5.66 0 1.56-1.56 1.56-4.1 0-5.66l-5.66 5.66zM18 2.01L6 2c-1.11 0-2 .89-2 2v16c0 1.11.89 2 2 2h12c1.11 0 2-.89 2-2V4c0-1.11-.89-1.99-2-1.99zM10 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM7 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm5 16c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z" + }, + "children": [] + }] +}; +exports.ic_local_laundry_service = ic_local_laundry_service; \ No newline at end of file diff --git a/dist/md/ic_local_laundry_service_outline.js b/dist/md/ic_local_laundry_service_outline.js new file mode 100644 index 000000000..7eccdfdf7 --- /dev/null +++ b/dist/md/ic_local_laundry_service_outline.js @@ -0,0 +1,46 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_laundry_service_outline = void 0; +var ic_local_laundry_service_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 2.01L6 2c-1.11 0-2 .89-2 2v16c0 1.11.89 2 2 2h12c1.11 0 2-.89 2-2V4c0-1.11-.89-1.99-2-1.99zM18 20H6L5.99 4H18v16z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "8", + "cy": "6", + "r": "1" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "11", + "cy": "6", + "r": "1" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 19c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm2.36-7.36c1.3 1.3 1.3 3.42 0 4.72-1.3 1.3-3.42 1.3-4.72 0l4.72-4.72z" + }, + "children": [] + }] +}; +exports.ic_local_laundry_service_outline = ic_local_laundry_service_outline; \ No newline at end of file diff --git a/dist/md/ic_local_laundry_service_twotone.js b/dist/md/ic_local_laundry_service_twotone.js new file mode 100644 index 000000000..b72e2b2c3 --- /dev/null +++ b/dist/md/ic_local_laundry_service_twotone.js @@ -0,0 +1,53 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_laundry_service_twotone = void 0; +var ic_local_laundry_service_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5.99 4L6 20h12V4H5.99c.01 0 0 0 0 0zM11 5c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM8 5c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm4 4c2.76 0 5 2.24 5 5s-2.24 5-5 5-5-2.24-5-5 2.24-5 5-5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 2.01L6 2c-1.11 0-2 .89-2 2v16c0 1.11.89 2 2 2h12c1.11 0 2-.89 2-2V4c0-1.11-.89-1.99-2-1.99zM18 20H6L5.99 4H18v16z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "8", + "cy": "6", + "r": "1" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "11", + "cy": "6", + "r": "1" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 19c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm2.36-7.36c1.3 1.3 1.3 3.42 0 4.72-1.3 1.3-3.42 1.3-4.72 0l4.72-4.72z" + }, + "children": [] + }] +}; +exports.ic_local_laundry_service_twotone = ic_local_laundry_service_twotone; \ No newline at end of file diff --git a/dist/md/ic_local_library.js b/dist/md/ic_local_library.js new file mode 100644 index 000000000..1edce1200 --- /dev/null +++ b/dist/md/ic_local_library.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_library = void 0; +var ic_local_library = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 11.55C9.64 9.35 6.48 8 3 8v11c3.48 0 6.64 1.35 9 3.55 2.36-2.19 5.52-3.55 9-3.55V8c-3.48 0-6.64 1.35-9 3.55zM12 8c1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3 1.34 3 3 3z" + }, + "children": [] + }] +}; +exports.ic_local_library = ic_local_library; \ No newline at end of file diff --git a/dist/md/ic_local_library_outline.js b/dist/md/ic_local_library_outline.js new file mode 100644 index 000000000..d15eab036 --- /dev/null +++ b/dist/md/ic_local_library_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_library_outline = void 0; +var ic_local_library_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 9c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm0 8.55C9.64 9.35 6.48 8 3 8v11c3.48 0 6.64 1.35 9 3.55 2.36-2.19 5.52-3.55 9-3.55V8c-3.48 0-6.64 1.35-9 3.55zm7 5.58c-2.53.34-4.93 1.3-7 2.82-2.06-1.52-4.47-2.49-7-2.83v-6.95c2.1.38 4.05 1.35 5.64 2.83L12 14.28l1.36-1.27c1.59-1.48 3.54-2.45 5.64-2.83v6.95z" + }, + "children": [] + }] +}; +exports.ic_local_library_outline = ic_local_library_outline; \ No newline at end of file diff --git a/dist/md/ic_local_library_twotone.js b/dist/md/ic_local_library_twotone.js new file mode 100644 index 000000000..588758297 --- /dev/null +++ b/dist/md/ic_local_library_twotone.js @@ -0,0 +1,40 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_library_twotone = void 0; +var ic_local_library_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 17.13v-6.95c-2.1.38-4.05 1.35-5.64 2.83L12 14.28l-1.36-1.27C9.05 11.53 7.1 10.56 5 10.18v6.95c2.53.34 4.94 1.3 7 2.83 2.07-1.52 4.47-2.49 7-2.83z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "5", + "opacity": ".3", + "r": "2" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 5c0-2.21-1.79-4-4-4S8 2.79 8 5s1.79 4 4 4 4-1.79 4-4zm-6 0c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zM3 19c3.48 0 6.64 1.35 9 3.55 2.36-2.19 5.52-3.55 9-3.55V8c-3.48 0-6.64 1.35-9 3.55C9.64 9.35 6.48 8 3 8v11zm2-8.82c2.1.38 4.05 1.35 5.64 2.83L12 14.28l1.36-1.27c1.59-1.48 3.54-2.45 5.64-2.83v6.95c-2.53.34-4.93 1.3-7 2.82-2.06-1.52-4.47-2.49-7-2.83v-6.94z" + }, + "children": [] + }] +}; +exports.ic_local_library_twotone = ic_local_library_twotone; \ No newline at end of file diff --git a/dist/md/ic_local_mall.js b/dist/md/ic_local_mall.js new file mode 100644 index 000000000..3b2ab3dbb --- /dev/null +++ b/dist/md/ic_local_mall.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_mall = void 0; +var ic_local_mall = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 6h-2c0-2.76-2.24-5-5-5S7 3.24 7 6H5c-1.1 0-1.99.9-1.99 2L3 20c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-7-3c1.66 0 3 1.34 3 3H9c0-1.66 1.34-3 3-3zm0 10c-2.76 0-5-2.24-5-5h2c0 1.66 1.34 3 3 3s3-1.34 3-3h2c0 2.76-2.24 5-5 5z" + }, + "children": [] + }] +}; +exports.ic_local_mall = ic_local_mall; \ No newline at end of file diff --git a/dist/md/ic_local_mall_outline.js b/dist/md/ic_local_mall_outline.js new file mode 100644 index 000000000..2ddf47e8f --- /dev/null +++ b/dist/md/ic_local_mall_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_mall_outline = void 0; +var ic_local_mall_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 6h-2c0-2.76-2.24-5-5-5S7 3.24 7 6H5c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-7-3c1.66 0 3 1.34 3 3H9c0-1.66 1.34-3 3-3zm7 17H5V8h14v12zm-7-8c-1.66 0-3-1.34-3-3H7c0 2.76 2.24 5 5 5s5-2.24 5-5h-2c0 1.66-1.34 3-3 3z" + }, + "children": [] + }] +}; +exports.ic_local_mall_outline = ic_local_mall_outline; \ No newline at end of file diff --git a/dist/md/ic_local_mall_twotone.js b/dist/md/ic_local_mall_twotone.js new file mode 100644 index 000000000..7759a8a20 --- /dev/null +++ b/dist/md/ic_local_mall_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_mall_twotone = void 0; +var ic_local_mall_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 8v12h14V8H5zm7 6c-2.76 0-5-2.24-5-5h2c0 1.66 1.34 3 3 3s3-1.34 3-3h2c0 2.76-2.24 5-5 5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 6c0-2.76-2.24-5-5-5S7 3.24 7 6H5c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2h-2zm-5-3c1.66 0 3 1.34 3 3H9c0-1.66 1.34-3 3-3zm7 17H5V8h14v12zm-7-8c-1.66 0-3-1.34-3-3H7c0 2.76 2.24 5 5 5s5-2.24 5-5h-2c0 1.66-1.34 3-3 3z" + }, + "children": [] + }] +}; +exports.ic_local_mall_twotone = ic_local_mall_twotone; \ No newline at end of file diff --git a/dist/md/ic_local_movies.js b/dist/md/ic_local_movies.js new file mode 100644 index 000000000..11f0e2244 --- /dev/null +++ b/dist/md/ic_local_movies.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_movies = void 0; +var ic_local_movies = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 3v2h-2V3H8v2H6V3H4v18h2v-2h2v2h8v-2h2v2h2V3h-2zM8 17H6v-2h2v2zm0-4H6v-2h2v2zm0-4H6V7h2v2zm10 8h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V7h2v2z" + }, + "children": [] + }] +}; +exports.ic_local_movies = ic_local_movies; \ No newline at end of file diff --git a/dist/md/ic_local_movies_outline.js b/dist/md/ic_local_movies_outline.js new file mode 100644 index 000000000..ce291669f --- /dev/null +++ b/dist/md/ic_local_movies_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_movies_outline = void 0; +var ic_local_movies_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 5v14h-4V5h4m6-2h-2v2h-2V3H8v2H6V3H4v18h2v-2h2v2h8v-2h2v2h2V3zm-4 6V7h2v2h-2zM6 9V7h2v2H6zm10 4v-2h2v2h-2zM6 13v-2h2v2H6zm10 4v-2h2v2h-2zM6 17v-2h2v2H6z" + }, + "children": [] + }] +}; +exports.ic_local_movies_outline = ic_local_movies_outline; \ No newline at end of file diff --git a/dist/md/ic_local_movies_twotone.js b/dist/md/ic_local_movies_twotone.js new file mode 100644 index 000000000..c786121c6 --- /dev/null +++ b/dist/md/ic_local_movies_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_movies_twotone = void 0; +var ic_local_movies_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 5h4v14h-4z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 21V3h-2v2h-2V3H8v2H6V3H4v18h2v-2h2v2h8v-2h2v2h2zM8 17H6v-2h2v2zm0-4H6v-2h2v2zm0-4H6V7h2v2zm6 10h-4V5h4v14zm2-12h2v2h-2V7zm0 4h2v2h-2v-2zm0 6v-2h2v2h-2z" + }, + "children": [] + }] +}; +exports.ic_local_movies_twotone = ic_local_movies_twotone; \ No newline at end of file diff --git a/dist/md/ic_local_offer.js b/dist/md/ic_local_offer.js new file mode 100644 index 000000000..957c5e8df --- /dev/null +++ b/dist/md/ic_local_offer.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_offer = void 0; +var ic_local_offer = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21.41 11.58l-9-9C12.05 2.22 11.55 2 11 2H4c-1.1 0-2 .9-2 2v7c0 .55.22 1.05.59 1.42l9 9c.36.36.86.58 1.41.58.55 0 1.05-.22 1.41-.59l7-7c.37-.36.59-.86.59-1.41 0-.55-.23-1.06-.59-1.42zM5.5 7C4.67 7 4 6.33 4 5.5S4.67 4 5.5 4 7 4.67 7 5.5 6.33 7 5.5 7z" + }, + "children": [] + }] +}; +exports.ic_local_offer = ic_local_offer; \ No newline at end of file diff --git a/dist/md/ic_local_offer_outline.js b/dist/md/ic_local_offer_outline.js new file mode 100644 index 000000000..bda83d4ea --- /dev/null +++ b/dist/md/ic_local_offer_outline.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_offer_outline = void 0; +var ic_local_offer_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21.41 11.58l-9-9C12.05 2.22 11.55 2 11 2H4c-1.1 0-2 .9-2 2v7c0 .55.22 1.05.59 1.42l9 9c.36.36.86.58 1.41.58s1.05-.22 1.41-.59l7-7c.37-.36.59-.86.59-1.41s-.23-1.06-.59-1.42zM13 20.01L4 11V4h7v-.01l9 9-7 7.02z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "6.5", + "cy": "6.5", + "r": "1.5" + }, + "children": [] + }] +}; +exports.ic_local_offer_outline = ic_local_offer_outline; \ No newline at end of file diff --git a/dist/md/ic_local_offer_twotone.js b/dist/md/ic_local_offer_twotone.js new file mode 100644 index 000000000..627c91af0 --- /dev/null +++ b/dist/md/ic_local_offer_twotone.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_offer_twotone = void 0; +var ic_local_offer_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 4H4v7l9 9.01L20 13l-9-9zM6.5 8C5.67 8 5 7.33 5 6.5S5.67 5 6.5 5 8 5.67 8 6.5 7.33 8 6.5 8z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12.41 2.58C12.05 2.22 11.55 2 11 2H4c-1.1 0-2 .9-2 2v7c0 .55.22 1.05.59 1.42l9 9c.36.36.86.58 1.41.58s1.05-.22 1.41-.59l7-7c.37-.36.59-.86.59-1.41s-.23-1.06-.59-1.42l-9-9zM13 20.01L4 11V4h7v-.01l9 9-7 7.02z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "6.5", + "cy": "6.5", + "r": "1.5" + }, + "children": [] + }] +}; +exports.ic_local_offer_twotone = ic_local_offer_twotone; \ No newline at end of file diff --git a/dist/md/ic_local_parking.js b/dist/md/ic_local_parking.js new file mode 100644 index 000000000..5f93d7132 --- /dev/null +++ b/dist/md/ic_local_parking.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_parking = void 0; +var ic_local_parking = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 3H6v18h4v-6h3c3.31 0 6-2.69 6-6s-2.69-6-6-6zm.2 8H10V7h3.2c1.1 0 2 .9 2 2s-.9 2-2 2z" + }, + "children": [] + }] +}; +exports.ic_local_parking = ic_local_parking; \ No newline at end of file diff --git a/dist/md/ic_local_parking_outline.js b/dist/md/ic_local_parking_outline.js new file mode 100644 index 000000000..06e3821f9 --- /dev/null +++ b/dist/md/ic_local_parking_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_parking_outline = void 0; +var ic_local_parking_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 3H6v18h4v-6h3c3.31 0 6-2.69 6-6s-2.69-6-6-6zm.2 8H10V7h3.2c1.1 0 2 .9 2 2s-.9 2-2 2z" + }, + "children": [] + }] +}; +exports.ic_local_parking_outline = ic_local_parking_outline; \ No newline at end of file diff --git a/dist/md/ic_local_parking_twotone.js b/dist/md/ic_local_parking_twotone.js new file mode 100644 index 000000000..be8d5b618 --- /dev/null +++ b/dist/md/ic_local_parking_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_parking_twotone = void 0; +var ic_local_parking_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 3H6v18h4v-6h3c3.31 0 6-2.69 6-6s-2.69-6-6-6zm.2 8H10V7h3.2c1.1 0 2 .9 2 2s-.9 2-2 2z" + }, + "children": [] + }] +}; +exports.ic_local_parking_twotone = ic_local_parking_twotone; \ No newline at end of file diff --git a/dist/md/ic_local_pharmacy.js b/dist/md/ic_local_pharmacy.js new file mode 100644 index 000000000..208392af8 --- /dev/null +++ b/dist/md/ic_local_pharmacy.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_pharmacy = void 0; +var ic_local_pharmacy = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 5h-2.64l1.14-3.14L17.15 1l-1.46 4H3v2l2 6-2 6v2h18v-2l-2-6 2-6V5zm-5 9h-3v3h-2v-3H8v-2h3V9h2v3h3v2z" + }, + "children": [] + }] +}; +exports.ic_local_pharmacy = ic_local_pharmacy; \ No newline at end of file diff --git a/dist/md/ic_local_pharmacy_outline.js b/dist/md/ic_local_pharmacy_outline.js new file mode 100644 index 000000000..0e4d7c496 --- /dev/null +++ b/dist/md/ic_local_pharmacy_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_pharmacy_outline = void 0; +var ic_local_pharmacy_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 5h-2.64l1.14-3.14L17.15 1l-1.46 4H3v2l2 6-2 6v2h18v-2l-2-6 2-6V5zm-3.9 8.63L18.89 19H5.11l1.79-5.37.21-.63-.21-.63L5.11 7h13.78l-1.79 5.37-.21.63.21.63zM13 9h-2v3H8v2h3v3h2v-3h3v-2h-3z" + }, + "children": [] + }] +}; +exports.ic_local_pharmacy_outline = ic_local_pharmacy_outline; \ No newline at end of file diff --git a/dist/md/ic_local_pharmacy_twotone.js b/dist/md/ic_local_pharmacy_twotone.js new file mode 100644 index 000000000..8d803d792 --- /dev/null +++ b/dist/md/ic_local_pharmacy_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_pharmacy_twotone = void 0; +var ic_local_pharmacy_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5.11 19h13.78l-1.79-5.37-.21-.63.21-.63L18.89 7H5.11l1.79 5.37.21.63-.21.63L5.11 19zM8 12h3V9h2v3h3v2h-3v3h-2v-3H8v-2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 21h18v-2l-2-6 2-6V5h-2.64l1.14-3.14L17.15 1l-1.46 4H3v2l2 6-2 6v2zm3.9-8.63L5.11 7h13.78l-1.79 5.37-.21.63.21.63L18.89 19H5.11l1.79-5.37.21-.63-.21-.63zM11 17h2v-3h3v-2h-3V9h-2v3H8v2h3z" + }, + "children": [] + }] +}; +exports.ic_local_pharmacy_twotone = ic_local_pharmacy_twotone; \ No newline at end of file diff --git a/dist/md/ic_local_phone.js b/dist/md/ic_local_phone.js new file mode 100644 index 000000000..dd26c25c7 --- /dev/null +++ b/dist/md/ic_local_phone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_phone = void 0; +var ic_local_phone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z" + }, + "children": [] + }] +}; +exports.ic_local_phone = ic_local_phone; \ No newline at end of file diff --git a/dist/md/ic_local_phone_outline.js b/dist/md/ic_local_phone_outline.js new file mode 100644 index 000000000..2db7b9754 --- /dev/null +++ b/dist/md/ic_local_phone_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_phone_outline = void 0; +var ic_local_phone_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6.54 5c.06.89.21 1.76.45 2.59l-1.2 1.2c-.41-1.2-.67-2.47-.76-3.79h1.51m9.86 12.02c.85.24 1.72.39 2.6.45v1.49c-1.32-.09-2.59-.35-3.8-.75l1.2-1.19M7.5 3H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.49c0-.55-.45-1-1-1-1.24 0-2.45-.2-3.57-.57-.1-.04-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2c.28-.28.36-.67.25-1.02C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1z" + }, + "children": [] + }] +}; +exports.ic_local_phone_outline = ic_local_phone_outline; \ No newline at end of file diff --git a/dist/md/ic_local_phone_twotone.js b/dist/md/ic_local_phone_twotone.js new file mode 100644 index 000000000..6b6694918 --- /dev/null +++ b/dist/md/ic_local_phone_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_phone_twotone = void 0; +var ic_local_phone_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 17.47c-.88-.07-1.75-.22-2.6-.45l-1.19 1.19c1.2.41 2.48.67 3.8.75v-1.49zM6.99 7.59c-.24-.83-.39-1.7-.45-2.59h-1.5c.09 1.32.35 2.59.75 3.8l1.2-1.21z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 4c0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.49c0-.55-.45-1-1-1-1.24 0-2.45-.2-3.57-.57-.1-.04-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2c.28-.28.36-.67.25-1.02C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1zm13.4 13.02c.85.24 1.72.39 2.6.45v1.49c-1.32-.09-2.59-.35-3.8-.75l1.2-1.19zM6.54 5c.06.89.21 1.76.45 2.59l-1.2 1.2c-.41-1.2-.67-2.47-.76-3.79h1.51z" + }, + "children": [] + }] +}; +exports.ic_local_phone_twotone = ic_local_phone_twotone; \ No newline at end of file diff --git a/dist/md/ic_local_pizza.js b/dist/md/ic_local_pizza.js new file mode 100644 index 000000000..6472b8c8f --- /dev/null +++ b/dist/md/ic_local_pizza.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_pizza = void 0; +var ic_local_pizza = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C8.43 2 5.23 3.54 3.01 6L12 22l8.99-16C18.78 3.55 15.57 2 12 2zM7 7c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm5 8c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" + }, + "children": [] + }] +}; +exports.ic_local_pizza = ic_local_pizza; \ No newline at end of file diff --git a/dist/md/ic_local_pizza_outline.js b/dist/md/ic_local_pizza_outline.js new file mode 100644 index 000000000..6b10fd5c5 --- /dev/null +++ b/dist/md/ic_local_pizza_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_pizza_outline = void 0; +var ic_local_pizza_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C8.43 2 5.23 3.54 3.01 6L12 22l8.99-16C18.78 3.55 15.57 2 12 2zm0 15.92L5.51 6.36C7.32 4.85 9.62 4 12 4s4.68.85 6.49 2.36L12 17.92zM9 5.5c-.83 0-1.5.67-1.5 1.5S8.17 8.5 9 8.5s1.5-.67 1.5-1.5S9.82 5.5 9 5.5zm1.5 7.5c0 .83.67 1.5 1.5 1.5.82 0 1.5-.67 1.5-1.5s-.68-1.5-1.5-1.5-1.5.67-1.5 1.5z" + }, + "children": [] + }] +}; +exports.ic_local_pizza_outline = ic_local_pizza_outline; \ No newline at end of file diff --git a/dist/md/ic_local_pizza_twotone.js b/dist/md/ic_local_pizza_twotone.js new file mode 100644 index 000000000..335713df0 --- /dev/null +++ b/dist/md/ic_local_pizza_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_pizza_twotone = void 0; +var ic_local_pizza_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5.51 6.36L12 17.92l6.49-11.55C16.68 4.85 14.38 4 12 4s-4.68.85-6.49 2.36zM9 8.5c-.83 0-1.5-.67-1.5-1.5S8.17 5.5 9 5.5s1.5.67 1.5 1.5S9.82 8.5 9 8.5zm4.5 4.5c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C8.43 2 5.23 3.54 3.01 6L12 22l8.99-16C18.78 3.55 15.57 2 12 2zm0 15.92L5.51 6.36C7.32 4.85 9.62 4 12 4s4.68.85 6.49 2.36L12 17.92zM9 5.5c-.83 0-1.5.67-1.5 1.5S8.17 8.5 9 8.5s1.5-.67 1.5-1.5S9.82 5.5 9 5.5zm1.5 7.5c0 .83.67 1.5 1.5 1.5.82 0 1.5-.67 1.5-1.5s-.68-1.5-1.5-1.5-1.5.67-1.5 1.5z" + }, + "children": [] + }] +}; +exports.ic_local_pizza_twotone = ic_local_pizza_twotone; \ No newline at end of file diff --git a/dist/md/ic_local_play.js b/dist/md/ic_local_play.js new file mode 100644 index 000000000..49e58c72f --- /dev/null +++ b/dist/md/ic_local_play.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_play = void 0; +var ic_local_play = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 12c0-1.1.9-2 2-2V6c0-1.1-.9-2-2-2H4c-1.1 0-1.99.9-1.99 2v4c1.1 0 1.99.9 1.99 2s-.89 2-2 2v4c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-4c-1.1 0-2-.9-2-2zm-4.42 4.8L12 14.5l-3.58 2.3 1.08-4.12-3.29-2.69 4.24-.25L12 5.8l1.54 3.95 4.24.25-3.29 2.69 1.09 4.11z" + }, + "children": [] + }] +}; +exports.ic_local_play = ic_local_play; \ No newline at end of file diff --git a/dist/md/ic_local_play_outline.js b/dist/md/ic_local_play_outline.js new file mode 100644 index 000000000..e92c38d03 --- /dev/null +++ b/dist/md/ic_local_play_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_play_outline = void 0; +var ic_local_play_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 10V6c0-1.1-.9-2-2-2H4c-1.1 0-1.99.9-1.99 2v4c1.1 0 1.99.9 1.99 2s-.89 2-2 2v4c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-4c-1.1 0-2-.9-2-2s.9-2 2-2zm-2-1.46c-1.19.69-2 1.99-2 3.46s.81 2.77 2 3.46V18H4v-2.54c1.19-.69 2-1.99 2-3.46 0-1.48-.8-2.77-1.99-3.46L4 6h16v2.54zM9.07 16L12 14.12 14.93 16l-.89-3.36 2.69-2.2-3.47-.21L12 7l-1.27 3.22-3.47.21 2.69 2.2z" + }, + "children": [] + }] +}; +exports.ic_local_play_outline = ic_local_play_outline; \ No newline at end of file diff --git a/dist/md/ic_local_play_twotone.js b/dist/md/ic_local_play_twotone.js new file mode 100644 index 000000000..62d5755f2 --- /dev/null +++ b/dist/md/ic_local_play_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_play_twotone = void 0; +var ic_local_play_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4.01 8.54C5.2 9.23 6 10.52 6 12s-.81 2.77-2 3.46V18h16v-2.54c-1.19-.69-2-1.99-2-3.46s.81-2.77 2-3.46V6H4l.01 2.54zm6.72 1.68L12 7l1.26 3.23 3.47.2-2.69 2.2.89 3.37L12 14.12 9.07 16l.88-3.37-2.69-2.2 3.47-.21z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 4H4c-1.1 0-1.99.9-1.99 2v4c1.1 0 1.99.9 1.99 2s-.89 2-2 2v4c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-4c-1.1 0-2-.9-2-2s.9-2 2-2V6c0-1.1-.9-2-2-2zm0 4.54c-1.19.69-2 1.99-2 3.46s.81 2.77 2 3.46V18H4v-2.54c1.19-.69 2-1.99 2-3.46 0-1.48-.8-2.77-1.99-3.46L4 6h16v2.54zM9.07 16L12 14.12 14.93 16l-.89-3.36 2.69-2.2-3.47-.21L12 7l-1.27 3.22-3.47.21 2.69 2.2z" + }, + "children": [] + }] +}; +exports.ic_local_play_twotone = ic_local_play_twotone; \ No newline at end of file diff --git a/dist/md/ic_local_police.js b/dist/md/ic_local_police.js new file mode 100644 index 000000000..a44ecfe0d --- /dev/null +++ b/dist/md/ic_local_police.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_police = void 0; +var ic_local_police = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12,1L3,5v6c0,5.55,3.84,10.74,9,12c5.16-1.26,9-6.45,9-12V5L12,1z M14.5,12.59l0.9,3.88L12,14.42l-3.4,2.05l0.9-3.87 l-3-2.59l3.96-0.34L12,6.02l1.54,3.64L17.5,10L14.5,12.59z" + }, + "children": [] + }] +}; +exports.ic_local_police = ic_local_police; \ No newline at end of file diff --git a/dist/md/ic_local_police_outline.js b/dist/md/ic_local_police_outline.js new file mode 100644 index 000000000..9275eeb10 --- /dev/null +++ b/dist/md/ic_local_police_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_police_outline = void 0; +var ic_local_police_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14.5,12.59l0.9,3.88L12,14.42l-3.4,2.05l0.9-3.87l-3-2.59l3.96-0.34L12,6.02l1.54,3.64L17.5,10L14.5,12.59z M12,3.19 l7,3.11V11c0,4.52-2.98,8.69-7,9.93C7.98,19.69,5,15.52,5,11V6.3L12,3.19 M12,1L3,5v6c0,5.55,3.84,10.74,9,12c5.16-1.26,9-6.45,9-12 V5L12,1L12,1z" + }, + "children": [] + }] +}; +exports.ic_local_police_outline = ic_local_police_outline; \ No newline at end of file diff --git a/dist/md/ic_local_police_twotone.js b/dist/md/ic_local_police_twotone.js new file mode 100644 index 000000000..669b8d4ff --- /dev/null +++ b/dist/md/ic_local_police_twotone.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_police_twotone = void 0; +var ic_local_police_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12,3.19L5,6.3V11c0,4.52,2.98,8.69,7,9.93c4.02-1.23,7-5.41,7-9.93V6.3L12,3.19z M14.5,12.59l0.9,3.88 L12,14.42l-3.4,2.05l0.9-3.87l-3-2.59l3.96-0.34L12,6.02l1.54,3.64L17.5,10L14.5,12.59z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14.5,12.59l0.9,3.88L12,14.42l-3.4,2.05l0.9-3.87l-3-2.59l3.96-0.34L12,6.02l1.54,3.64L17.5,10L14.5,12.59z M12,3.19 l7,3.11V11c0,4.52-2.98,8.69-7,9.93C7.98,19.69,5,15.52,5,11V6.3L12,3.19 M12,1L3,5v6c0,5.55,3.84,10.74,9,12c5.16-1.26,9-6.45,9-12 V5L12,1L12,1z" + }, + "children": [] + }] +}; +exports.ic_local_police_twotone = ic_local_police_twotone; \ No newline at end of file diff --git a/dist/md/ic_local_post_office.js b/dist/md/ic_local_post_office.js new file mode 100644 index 000000000..c2b488a4a --- /dev/null +++ b/dist/md/ic_local_post_office.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_post_office = void 0; +var ic_local_post_office = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z" + }, + "children": [] + }] +}; +exports.ic_local_post_office = ic_local_post_office; \ No newline at end of file diff --git a/dist/md/ic_local_post_office_outline.js b/dist/md/ic_local_post_office_outline.js new file mode 100644 index 000000000..bc4fb9fb4 --- /dev/null +++ b/dist/md/ic_local_post_office_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_post_office_outline = void 0; +var ic_local_post_office_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6zm-2 0l-8 5-8-5h16zm0 12H4V8l8 5 8-5v10z" + }, + "children": [] + }] +}; +exports.ic_local_post_office_outline = ic_local_post_office_outline; \ No newline at end of file diff --git a/dist/md/ic_local_post_office_twotone.js b/dist/md/ic_local_post_office_twotone.js new file mode 100644 index 000000000..8a392a66d --- /dev/null +++ b/dist/md/ic_local_post_office_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_post_office_twotone = void 0; +var ic_local_post_office_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 11l8-5H4zM4 8v10h16V8l-8 5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V8l8 5 8-5v10zm-8-7L4 6h16l-8 5z" + }, + "children": [] + }] +}; +exports.ic_local_post_office_twotone = ic_local_post_office_twotone; \ No newline at end of file diff --git a/dist/md/ic_local_printshop.js b/dist/md/ic_local_printshop.js new file mode 100644 index 000000000..8af539e4d --- /dev/null +++ b/dist/md/ic_local_printshop.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_printshop = void 0; +var ic_local_printshop = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 8H5c-1.66 0-3 1.34-3 3v6h4v4h12v-4h4v-6c0-1.66-1.34-3-3-3zm-3 11H8v-5h8v5zm3-7c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-1-9H6v4h12V3z" + }, + "children": [] + }] +}; +exports.ic_local_printshop = ic_local_printshop; \ No newline at end of file diff --git a/dist/md/ic_local_printshop_outline.js b/dist/md/ic_local_printshop_outline.js new file mode 100644 index 000000000..d82166733 --- /dev/null +++ b/dist/md/ic_local_printshop_outline.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_printshop_outline = void 0; +var ic_local_printshop_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 8h-1V3H6v5H5c-1.66 0-3 1.34-3 3v6h4v4h12v-4h4v-6c0-1.66-1.34-3-3-3zM8 5h8v3H8V5zm8 14H8v-4h8v4zm2-4v-2H6v2H4v-4c0-.55.45-1 1-1h14c.55 0 1 .45 1 1v4h-2z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "18", + "cy": "11.5", + "r": "1" + }, + "children": [] + }] +}; +exports.ic_local_printshop_outline = ic_local_printshop_outline; \ No newline at end of file diff --git a/dist/md/ic_local_printshop_twotone.js b/dist/md/ic_local_printshop_twotone.js new file mode 100644 index 000000000..05fcf5168 --- /dev/null +++ b/dist/md/ic_local_printshop_twotone.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_printshop_twotone = void 0; +var ic_local_printshop_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8 5h8v3H8zm11 5H5c-.55 0-1 .45-1 1v4h2v-2h12v2h2v-4c0-.55-.45-1-1-1zm-1 2.5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 8h-1V3H6v5H5c-1.66 0-3 1.34-3 3v6h4v4h12v-4h4v-6c0-1.66-1.34-3-3-3zM8 5h8v3H8V5zm8 14H8v-4h8v4zm4-4h-2v-2H6v2H4v-4c0-.55.45-1 1-1h14c.55 0 1 .45 1 1v4z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "18", + "cy": "11.5", + "r": "1" + }, + "children": [] + }] +}; +exports.ic_local_printshop_twotone = ic_local_printshop_twotone; \ No newline at end of file diff --git a/dist/md/ic_local_see.js b/dist/md/ic_local_see.js new file mode 100644 index 000000000..52ff36a31 --- /dev/null +++ b/dist/md/ic_local_see.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_see = void 0; +var ic_local_see = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "3.2" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 2L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2h-3.17L15 2H9zm3 15c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" + }, + "children": [] + }] +}; +exports.ic_local_see = ic_local_see; \ No newline at end of file diff --git a/dist/md/ic_local_see_outline.js b/dist/md/ic_local_see_outline.js new file mode 100644 index 000000000..8ab770f17 --- /dev/null +++ b/dist/md/ic_local_see_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_see_outline = void 0; +var ic_local_see_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 4h-3.17L15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h4.05l.59-.65L9.88 4h4.24l1.24 1.35.59.65H20v12zM12 7c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8.2c-1.77 0-3.2-1.43-3.2-3.2 0-1.77 1.43-3.2 3.2-3.2s3.2 1.43 3.2 3.2c0 1.77-1.43 3.2-3.2 3.2z" + }, + "children": [] + }] +}; +exports.ic_local_see_outline = ic_local_see_outline; \ No newline at end of file diff --git a/dist/md/ic_local_see_twotone.js b/dist/md/ic_local_see_twotone.js new file mode 100644 index 000000000..16b80ad4e --- /dev/null +++ b/dist/md/ic_local_see_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_see_twotone = void 0; +var ic_local_see_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 6h-4.05l-.59-.65L14.12 4H9.88L8.65 5.35l-.6.65H4v12h16V6zm-8 11c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 20h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2h-3.17L15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2zM4 6h4.05l.59-.65L9.88 4h4.24l1.24 1.35.59.65H20v12H4V6zm8 1c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8.2c-1.77 0-3.2-1.43-3.2-3.2 0-1.77 1.43-3.2 3.2-3.2s3.2 1.43 3.2 3.2c0 1.77-1.43 3.2-3.2 3.2z" + }, + "children": [] + }] +}; +exports.ic_local_see_twotone = ic_local_see_twotone; \ No newline at end of file diff --git a/dist/md/ic_local_shipping.js b/dist/md/ic_local_shipping.js new file mode 100644 index 000000000..c486e8f1c --- /dev/null +++ b/dist/md/ic_local_shipping.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_shipping = void 0; +var ic_local_shipping = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 8h-3V4H3c-1.1 0-2 .9-2 2v11h2c0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5l-3-4zM6 18.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm13.5-9l1.96 2.5H17V9.5h2.5zm-1.5 9c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" + }, + "children": [] + }] +}; +exports.ic_local_shipping = ic_local_shipping; \ No newline at end of file diff --git a/dist/md/ic_local_shipping_outline.js b/dist/md/ic_local_shipping_outline.js new file mode 100644 index 000000000..7a1df9dde --- /dev/null +++ b/dist/md/ic_local_shipping_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_shipping_outline = void 0; +var ic_local_shipping_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 8h-3V4H3c-1.1 0-2 .9-2 2v11h2c0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5l-3-4zm-.5 1.5l1.96 2.5H17V9.5h2.5zM6 18c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2.22-3c-.55-.61-1.33-1-2.22-1s-1.67.39-2.22 1H3V6h12v9H8.22zM18 18c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" + }, + "children": [] + }] +}; +exports.ic_local_shipping_outline = ic_local_shipping_outline; \ No newline at end of file diff --git a/dist/md/ic_local_shipping_twotone.js b/dist/md/ic_local_shipping_twotone.js new file mode 100644 index 000000000..b3bff25dd --- /dev/null +++ b/dist/md/ic_local_shipping_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_shipping_twotone = void 0; +var ic_local_shipping_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 15h.78c.55-.61 1.34-1 2.22-1s1.67.39 2.22 1H15V6H3v9z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 8V4H3c-1.1 0-2 .9-2 2v11h2c0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5l-3-4h-3zM6 18c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm9-3H8.22c-.55-.61-1.33-1-2.22-1s-1.67.39-2.22 1H3V6h12v9zm3 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-1-6V9.5h2.5l1.96 2.5H17z" + }, + "children": [] + }] +}; +exports.ic_local_shipping_twotone = ic_local_shipping_twotone; \ No newline at end of file diff --git a/dist/md/ic_local_taxi.js b/dist/md/ic_local_taxi.js new file mode 100644 index 000000000..5ebdea71c --- /dev/null +++ b/dist/md/ic_local_taxi.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_taxi = void 0; +var ic_local_taxi = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18.92 6.01C18.72 5.42 18.16 5 17.5 5H15V3H9v2H6.5c-.66 0-1.21.42-1.42 1.01L3 12v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.5 16c-.83 0-1.5-.67-1.5-1.5S5.67 13 6.5 13s1.5.67 1.5 1.5S7.33 16 6.5 16zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 11l1.5-4.5h11L19 11H5z" + }, + "children": [] + }] +}; +exports.ic_local_taxi = ic_local_taxi; \ No newline at end of file diff --git a/dist/md/ic_local_taxi_outline.js b/dist/md/ic_local_taxi_outline.js new file mode 100644 index 000000000..af185d2f8 --- /dev/null +++ b/dist/md/ic_local_taxi_outline.js @@ -0,0 +1,40 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_taxi_outline = void 0; +var ic_local_taxi_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18.92 6.01C18.72 5.42 18.16 5 17.5 5H15V3H9v2H6.5c-.66 0-1.21.42-1.42 1.01L3 12v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.85 7h10.29l1.04 3H5.81l1.04-3zM19 17H5v-4.66l.12-.34h13.77l.11.34V17z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "7.5", + "cy": "14.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "16.5", + "cy": "14.5", + "r": "1.5" + }, + "children": [] + }] +}; +exports.ic_local_taxi_outline = ic_local_taxi_outline; \ No newline at end of file diff --git a/dist/md/ic_local_taxi_twotone.js b/dist/md/ic_local_taxi_twotone.js new file mode 100644 index 000000000..4e27efa9f --- /dev/null +++ b/dist/md/ic_local_taxi_twotone.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_local_taxi_twotone = void 0; +var ic_local_taxi_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5.12 12l-.12.34V17h14v-4.66l-.12-.34H5.12zm2.38 4c-.83 0-1.5-.67-1.5-1.5S6.67 13 7.5 13s1.5.67 1.5 1.5S8.33 16 7.5 16zm9 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17.5 5H15V3H9v2H6.5c-.66 0-1.21.42-1.42 1.01L3 12v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99C18.72 5.42 18.16 5 17.5 5zM6.85 7h10.29l1.04 3H5.81l1.04-3zM19 17H5v-4.66l.12-.34h13.77l.11.34V17z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "7.5", + "cy": "14.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "16.5", + "cy": "14.5", + "r": "1.5" + }, + "children": [] + }] +}; +exports.ic_local_taxi_twotone = ic_local_taxi_twotone; \ No newline at end of file diff --git a/dist/md/ic_location_city.js b/dist/md/ic_location_city.js new file mode 100644 index 000000000..d3185f189 --- /dev/null +++ b/dist/md/ic_location_city.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_location_city = void 0; +var ic_location_city = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 11V5l-3-3-3 3v2H3v14h18V11h-6zm-8 8H5v-2h2v2zm0-4H5v-2h2v2zm0-4H5V9h2v2zm6 8h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V9h2v2zm0-4h-2V5h2v2zm6 12h-2v-2h2v2zm0-4h-2v-2h2v2z" + }, + "children": [] + }] +}; +exports.ic_location_city = ic_location_city; \ No newline at end of file diff --git a/dist/md/ic_location_city_outline.js b/dist/md/ic_location_city_outline.js new file mode 100644 index 000000000..306581885 --- /dev/null +++ b/dist/md/ic_location_city_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_location_city_outline = void 0; +var ic_location_city_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 11V5l-3-3-3 3v2H3v14h18V11h-6zm-8 8H5v-2h2v2zm0-4H5v-2h2v2zm0-4H5V9h2v2zm6 8h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V9h2v2zm0-4h-2V5h2v2zm6 12h-2v-2h2v2zm0-4h-2v-2h2v2z" + }, + "children": [] + }] +}; +exports.ic_location_city_outline = ic_location_city_outline; \ No newline at end of file diff --git a/dist/md/ic_location_city_twotone.js b/dist/md/ic_location_city_twotone.js new file mode 100644 index 000000000..889b0ef5b --- /dev/null +++ b/dist/md/ic_location_city_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_location_city_twotone = void 0; +var ic_location_city_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 11V5l-3-3-3 3v2H3v14h18V11h-6zm-8 8H5v-2h2v2zm0-4H5v-2h2v2zm0-4H5V9h2v2zm6 8h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V9h2v2zm0-4h-2V5h2v2zm6 12h-2v-2h2v2zm0-4h-2v-2h2v2z" + }, + "children": [] + }] +}; +exports.ic_location_city_twotone = ic_location_city_twotone; \ No newline at end of file diff --git a/dist/md/ic_location_disabled.js b/dist/md/ic_location_disabled.js new file mode 100644 index 000000000..d9cddb02d --- /dev/null +++ b/dist/md/ic_location_disabled.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_location_disabled = void 0; +var ic_location_disabled = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06c-1.13.12-2.19.46-3.16.97l1.5 1.5C10.16 5.19 11.06 5 12 5c3.87 0 7 3.13 7 7 0 .94-.19 1.84-.52 2.65l1.5 1.5c.5-.96.84-2.02.97-3.15H23v-2h-2.06zM3 4.27l2.04 2.04C3.97 7.62 3.25 9.23 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c1.77-.2 3.38-.91 4.69-1.98L19.73 21 21 19.73 4.27 3 3 4.27zm13.27 13.27C15.09 18.45 13.61 19 12 19c-3.87 0-7-3.13-7-7 0-1.61.55-3.09 1.46-4.27l9.81 9.81z" + }, + "children": [] + }] +}; +exports.ic_location_disabled = ic_location_disabled; \ No newline at end of file diff --git a/dist/md/ic_location_disabled_outline.js b/dist/md/ic_location_disabled_outline.js new file mode 100644 index 000000000..aaa519880 --- /dev/null +++ b/dist/md/ic_location_disabled_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_location_disabled_outline = void 0; +var ic_location_disabled_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M23 13v-2h-2.06c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06c-.98.11-1.91.38-2.77.78l1.53 1.53C10.46 5.13 11.22 5 12 5c3.87 0 7 3.13 7 7 0 .79-.13 1.54-.37 2.24l1.53 1.53c.4-.86.67-1.79.78-2.77H23zM4.41 2.86L3 4.27l2.04 2.04C3.97 7.62 3.26 9.23 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c1.77-.2 3.38-.91 4.69-1.98L19.73 21l1.41-1.41L4.41 2.86zM12 19c-3.87 0-7-3.13-7-7 0-1.61.55-3.09 1.46-4.27l9.81 9.81C15.09 18.45 13.61 19 12 19z" + }, + "children": [] + }] +}; +exports.ic_location_disabled_outline = ic_location_disabled_outline; \ No newline at end of file diff --git a/dist/md/ic_location_disabled_twotone.js b/dist/md/ic_location_disabled_twotone.js new file mode 100644 index 000000000..fbd9baa42 --- /dev/null +++ b/dist/md/ic_location_disabled_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_location_disabled_twotone = void 0; +var ic_location_disabled_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M23 13v-2h-2.06c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06c-.98.11-1.91.38-2.77.78l1.53 1.53C10.46 5.13 11.22 5 12 5c3.87 0 7 3.13 7 7 0 .79-.13 1.54-.37 2.24l1.53 1.53c.4-.86.67-1.79.78-2.77H23zM4.41 2.86L3 4.27l2.04 2.04C3.97 7.62 3.26 9.23 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c1.77-.2 3.38-.91 4.69-1.98L19.73 21l1.41-1.41L4.41 2.86zM12 19c-3.87 0-7-3.13-7-7 0-1.61.55-3.09 1.46-4.27l9.81 9.81C15.09 18.45 13.61 19 12 19z" + }, + "children": [] + }] +}; +exports.ic_location_disabled_twotone = ic_location_disabled_twotone; \ No newline at end of file diff --git a/dist/md/ic_location_off.js b/dist/md/ic_location_off.js new file mode 100644 index 000000000..57889c3ed --- /dev/null +++ b/dist/md/ic_location_off.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_location_off = void 0; +var ic_location_off = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0zm11.75 11.47l-.11-.11z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 6.5c1.38 0 2.5 1.12 2.5 2.5 0 .74-.33 1.39-.83 1.85l3.63 3.63c.98-1.86 1.7-3.8 1.7-5.48 0-3.87-3.13-7-7-7-1.98 0-3.76.83-5.04 2.15l3.19 3.19c.46-.52 1.11-.84 1.85-.84zm4.37 9.6l-4.63-4.63-.11-.11L3.27 3 2 4.27l3.18 3.18C5.07 7.95 5 8.47 5 9c0 5.25 7 13 7 13s1.67-1.85 3.38-4.35L18.73 21 20 19.73l-3.63-3.63z" + }, + "children": [] + }] +}; +exports.ic_location_off = ic_location_off; \ No newline at end of file diff --git a/dist/md/ic_location_off_outline.js b/dist/md/ic_location_off_outline.js new file mode 100644 index 000000000..4e0684df3 --- /dev/null +++ b/dist/md/ic_location_off_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_location_off_outline = void 0; +var ic_location_off_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4c2.76 0 5 2.24 5 5 0 1.06-.39 2.32-1 3.62l1.49 1.49C18.37 12.36 19 10.57 19 9c0-3.87-3.13-7-7-7-1.84 0-3.5.71-4.75 1.86l1.43 1.43C9.56 4.5 10.72 4 12 4zm0 2.5c-.59 0-1.13.21-1.56.56l3.5 3.5c.35-.43.56-.97.56-1.56 0-1.38-1.12-2.5-2.5-2.5zM3.41 2.86L2 4.27l3.18 3.18C5.07 7.95 5 8.47 5 9c0 5.25 7 13 7 13s1.67-1.85 3.38-4.35L18.73 21l1.41-1.41L3.41 2.86zM12 18.88c-2.01-2.58-4.8-6.74-4.98-9.59l6.92 6.92c-.65.98-1.33 1.89-1.94 2.67z" + }, + "children": [] + }] +}; +exports.ic_location_off_outline = ic_location_off_outline; \ No newline at end of file diff --git a/dist/md/ic_location_off_twotone.js b/dist/md/ic_location_off_twotone.js new file mode 100644 index 000000000..80015cacc --- /dev/null +++ b/dist/md/ic_location_off_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_location_off_twotone = void 0; +var ic_location_off_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 9c0 1.06-.39 2.32-1 3.62l1.49 1.49C18.37 12.36 19 10.57 19 9c0-3.87-3.13-7-7-7-1.84 0-3.5.71-4.75 1.86l1.43 1.43C9.56 4.5 10.72 4 12 4c2.76 0 5 2.24 5 5zm-5-2.5c-.59 0-1.13.21-1.56.56l3.5 3.5c.35-.43.56-.97.56-1.56 0-1.38-1.12-2.5-2.5-2.5zM3.41 2.86L2 4.27l3.18 3.18C5.07 7.95 5 8.47 5 9c0 5.25 7 13 7 13s1.67-1.85 3.38-4.35L18.73 21l1.41-1.41L3.41 2.86zM12 18.88c-2.01-2.58-4.8-6.74-4.98-9.59l6.92 6.92c-.65.98-1.33 1.89-1.94 2.67z" + }, + "children": [] + }] +}; +exports.ic_location_off_twotone = ic_location_off_twotone; \ No newline at end of file diff --git a/dist/md/ic_location_on.js b/dist/md/ic_location_on.js new file mode 100644 index 000000000..43c91e8bd --- /dev/null +++ b/dist/md/ic_location_on.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_location_on = void 0; +var ic_location_on = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z" + }, + "children": [] + }] +}; +exports.ic_location_on = ic_location_on; \ No newline at end of file diff --git a/dist/md/ic_location_on_outline.js b/dist/md/ic_location_on_outline.js new file mode 100644 index 000000000..8ddfa95bc --- /dev/null +++ b/dist/md/ic_location_on_outline.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_location_on_outline = void 0; +var ic_location_on_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zM7 9c0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.88-2.88 7.19-5 9.88C9.92 16.21 7 11.85 7 9z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "9", + "r": "2.5" + }, + "children": [] + }] +}; +exports.ic_location_on_outline = ic_location_on_outline; \ No newline at end of file diff --git a/dist/md/ic_location_on_twotone.js b/dist/md/ic_location_on_twotone.js new file mode 100644 index 000000000..f0a8f186e --- /dev/null +++ b/dist/md/ic_location_on_twotone.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_location_on_twotone = void 0; +var ic_location_on_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4C9.24 4 7 6.24 7 9c0 2.85 2.92 7.21 5 9.88 2.11-2.69 5-7 5-9.88 0-2.76-2.24-5-5-5zm0 7.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zM7 9c0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.88-2.88 7.19-5 9.88C9.92 16.21 7 11.85 7 9z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "9", + "r": "2.5" + }, + "children": [] + }] +}; +exports.ic_location_on_twotone = ic_location_on_twotone; \ No newline at end of file diff --git a/dist/md/ic_location_pin.js b/dist/md/ic_location_pin.js new file mode 100644 index 000000000..e49255406 --- /dev/null +++ b/dist/md/ic_location_pin.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_location_pin = void 0; +var ic_location_pin = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12,2L12,2C8.13,2,5,5.13,5,9c0,1.74,0.5,3.37,1.41,4.84c0.95,1.54,2.2,2.86,3.16,4.4c0.47,0.75,0.81,1.45,1.17,2.26 C11,21.05,11.21,22,12,22h0c0.79,0,1-0.95,1.25-1.5c0.37-0.81,0.7-1.51,1.17-2.26c0.96-1.53,2.21-2.85,3.16-4.4 C18.5,12.37,19,10.74,19,9C19,5.13,15.87,2,12,2z M12,11.75c-1.38,0-2.5-1.12-2.5-2.5s1.12-2.5,2.5-2.5s2.5,1.12,2.5,2.5 S13.38,11.75,12,11.75z" + }, + "children": [] + }] +}; +exports.ic_location_pin = ic_location_pin; \ No newline at end of file diff --git a/dist/md/ic_location_searching.js b/dist/md/ic_location_searching.js new file mode 100644 index 000000000..8b745a62a --- /dev/null +++ b/dist/md/ic_location_searching.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_location_searching = void 0; +var ic_location_searching = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" + }, + "children": [] + }] +}; +exports.ic_location_searching = ic_location_searching; \ No newline at end of file diff --git a/dist/md/ic_location_searching_outline.js b/dist/md/ic_location_searching_outline.js new file mode 100644 index 000000000..10015de0c --- /dev/null +++ b/dist/md/ic_location_searching_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_location_searching_outline = void 0; +var ic_location_searching_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" + }, + "children": [] + }] +}; +exports.ic_location_searching_outline = ic_location_searching_outline; \ No newline at end of file diff --git a/dist/md/ic_location_searching_twotone.js b/dist/md/ic_location_searching_twotone.js new file mode 100644 index 000000000..e6a8e8ab9 --- /dev/null +++ b/dist/md/ic_location_searching_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_location_searching_twotone = void 0; +var ic_location_searching_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" + }, + "children": [] + }] +}; +exports.ic_location_searching_twotone = ic_location_searching_twotone; \ No newline at end of file diff --git a/dist/md/ic_lock.js b/dist/md/ic_lock.js new file mode 100644 index 000000000..26808ecb1 --- /dev/null +++ b/dist/md/ic_lock.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_lock = void 0; +var ic_lock = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2z" + }, + "children": [] + }] +}; +exports.ic_lock = ic_lock; \ No newline at end of file diff --git a/dist/md/ic_lock_clock.js b/dist/md/ic_lock_clock.js new file mode 100644 index 000000000..f92bbdedb --- /dev/null +++ b/dist/md/ic_lock_clock.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_lock_clock = void 0; +var ic_lock_clock = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14.5 14.2l2.9 1.7-.8 1.3L13 15v-5h1.5v4.2zM22 14c0 4.41-3.59 8-8 8-2.02 0-3.86-.76-5.27-2H4c-1.15 0-2-.85-2-2V9c0-1.12.89-1.96 2-2v-.5C4 4.01 6.01 2 8.5 2c2.34 0 4.24 1.79 4.46 4.08.34-.05.69-.08 1.04-.08 4.41 0 8 3.59 8 8zM6 7h5v-.74C10.88 4.99 9.8 4 8.5 4 7.12 4 6 5.12 6 6.5V7zm14 7c0-3.31-2.69-6-6-6s-6 2.69-6 6 2.69 6 6 6 6-2.69 6-6z" + }, + "children": [] + }] +}; +exports.ic_lock_clock = ic_lock_clock; \ No newline at end of file diff --git a/dist/md/ic_lock_open.js b/dist/md/ic_lock_open.js new file mode 100644 index 000000000..895093609 --- /dev/null +++ b/dist/md/ic_lock_open.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_lock_open = void 0; +var ic_lock_open = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 17c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm6-9h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6h1.9c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm0 12H6V10h12v10z" + }, + "children": [] + }] +}; +exports.ic_lock_open = ic_lock_open; \ No newline at end of file diff --git a/dist/md/ic_lock_open_outline.js b/dist/md/ic_lock_open_outline.js new file mode 100644 index 000000000..5cbd796ed --- /dev/null +++ b/dist/md/ic_lock_open_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_lock_open_outline = void 0; +var ic_lock_open_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6h2c0-1.66 1.34-3 3-3s3 1.34 3 3v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm0 12H6V10h12v10zm-6-3c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z" + }, + "children": [] + }] +}; +exports.ic_lock_open_outline = ic_lock_open_outline; \ No newline at end of file diff --git a/dist/md/ic_lock_open_twotone.js b/dist/md/ic_lock_open_twotone.js new file mode 100644 index 000000000..4e9e71b95 --- /dev/null +++ b/dist/md/ic_lock_open_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_lock_open_twotone = void 0; +var ic_lock_open_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 20h12V10H6v10zm6-7c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6h2c0-1.66 1.34-3 3-3s3 1.34 3 3v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm0 12H6V10h12v10zm-6-3c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z" + }, + "children": [] + }] +}; +exports.ic_lock_open_twotone = ic_lock_open_twotone; \ No newline at end of file diff --git a/dist/md/ic_lock_outline.js b/dist/md/ic_lock_outline.js new file mode 100644 index 000000000..6735c42fa --- /dev/null +++ b/dist/md/ic_lock_outline.js @@ -0,0 +1,49 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_lock_outline = void 0; +var ic_lock_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": { + "fill": "none" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "opacity": ".87" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "opacity": ".87" + }, + "children": [] + }] + }] + }, { + "name": "path", + "attribs": { + "d": "M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zM9 6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9V6zm9 14H6V10h12v10zm-6-3c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z" + }, + "children": [] + }] +}; +exports.ic_lock_outline = ic_lock_outline; \ No newline at end of file diff --git a/dist/md/ic_lock_outline_twotone.js b/dist/md/ic_lock_outline_twotone.js new file mode 100644 index 000000000..b2dce13b3 --- /dev/null +++ b/dist/md/ic_lock_outline_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_lock_outline_twotone = void 0; +var ic_lock_outline_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zM9 6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9V6zm9 14H6V10h12v10zm-6-3c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z" + }, + "children": [] + }] +}; +exports.ic_lock_outline_twotone = ic_lock_outline_twotone; \ No newline at end of file diff --git a/dist/md/ic_lock_twotone.js b/dist/md/ic_lock_twotone.js new file mode 100644 index 000000000..f57d76f00 --- /dev/null +++ b/dist/md/ic_lock_twotone.js @@ -0,0 +1,56 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_lock_twotone = void 0; +var ic_lock_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": { + "fill": "none" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "opacity": ".87" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "opacity": ".87" + }, + "children": [] + }] + }] + }, { + "name": "path", + "attribs": { + "d": "M6 20h12V10H6v10zm6-7c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zM9 6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9V6zm9 14H6V10h12v10zm-6-3c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z" + }, + "children": [] + }] +}; +exports.ic_lock_twotone = ic_lock_twotone; \ No newline at end of file diff --git a/dist/md/ic_login.js b/dist/md/ic_login.js new file mode 100644 index 000000000..62d4246b5 --- /dev/null +++ b/dist/md/ic_login.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_login = void 0; +var ic_login = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M11,7L9.6,8.4l2.6,2.6H2v2h10.2l-2.6,2.6L11,17l5-5L11,7z M20,19h-8v2h8c1.1,0,2-0.9,2-2V5c0-1.1-0.9-2-2-2h-8v2h8V19z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M11,7L9.6,8.4l2.6,2.6H2v2h10.2l-2.6,2.6L11,17l5-5L11,7z M20,19h-8v2h8c1.1,0,2-0.9,2-2V5c0-1.1-0.9-2-2-2h-8v2h8V19z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_login = ic_login; \ No newline at end of file diff --git a/dist/md/ic_login_outline.js b/dist/md/ic_login_outline.js new file mode 100644 index 000000000..c8dbaaaf3 --- /dev/null +++ b/dist/md/ic_login_outline.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_login_outline = void 0; +var ic_login_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M11,7L9.6,8.4l2.6,2.6H2v2h10.2l-2.6,2.6L11,17l5-5L11,7z M20,19h-8v2h8c1.1,0,2-0.9,2-2V5c0-1.1-0.9-2-2-2h-8v2h8V19z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M11,7L9.6,8.4l2.6,2.6H2v2h10.2l-2.6,2.6L11,17l5-5L11,7z M20,19h-8v2h8c1.1,0,2-0.9,2-2V5c0-1.1-0.9-2-2-2h-8v2h8V19z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_login_outline = ic_login_outline; \ No newline at end of file diff --git a/dist/md/ic_login_twotone.js b/dist/md/ic_login_twotone.js new file mode 100644 index 000000000..d7b0e9251 --- /dev/null +++ b/dist/md/ic_login_twotone.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_login_twotone = void 0; +var ic_login_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M11,7L9.6,8.4l2.6,2.6H2v2h10.2l-2.6,2.6L11,17l5-5L11,7z M20,19h-8v2h8c1.1,0,2-0.9,2-2V5c0-1.1-0.9-2-2-2h-8v2h8V19z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M11,7L9.6,8.4l2.6,2.6H2v2h10.2l-2.6,2.6L11,17l5-5L11,7z M20,19h-8v2h8c1.1,0,2-0.9,2-2V5c0-1.1-0.9-2-2-2h-8v2h8V19z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_login_twotone = ic_login_twotone; \ No newline at end of file diff --git a/dist/md/ic_logout.js b/dist/md/ic_logout.js new file mode 100644 index 000000000..9d80f2dac --- /dev/null +++ b/dist/md/ic_logout.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_logout = void 0; +var ic_logout = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 7l-1.41 1.41L18.17 11H8v2h10.17l-2.58 2.58L17 17l5-5zM4 5h8V3H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h8v-2H4V5z" + }, + "children": [] + }] +}; +exports.ic_logout = ic_logout; \ No newline at end of file diff --git a/dist/md/ic_looks.js b/dist/md/ic_looks.js new file mode 100644 index 000000000..32f463792 --- /dev/null +++ b/dist/md/ic_looks.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_looks = void 0; +var ic_looks = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 10c-3.86 0-7 3.14-7 7h2c0-2.76 2.24-5 5-5s5 2.24 5 5h2c0-3.86-3.14-7-7-7zm0-4C5.93 6 1 10.93 1 17h2c0-4.96 4.04-9 9-9s9 4.04 9 9h2c0-6.07-4.93-11-11-11z" + }, + "children": [] + }] +}; +exports.ic_looks = ic_looks; \ No newline at end of file diff --git a/dist/md/ic_looks_3.js b/dist/md/ic_looks_3.js new file mode 100644 index 000000000..6129e7db6 --- /dev/null +++ b/dist/md/ic_looks_3.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_looks_3 = void 0; +var ic_looks_3 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M.01 0h24v24h-24z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.01 3h-14c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4 7.5c0 .83-.67 1.5-1.5 1.5.83 0 1.5.67 1.5 1.5V15c0 1.11-.9 2-2 2h-4v-2h4v-2h-2v-2h2V9h-4V7h4c1.1 0 2 .89 2 2v1.5z" + }, + "children": [] + }] +}; +exports.ic_looks_3 = ic_looks_3; \ No newline at end of file diff --git a/dist/md/ic_looks_3_outline.js b/dist/md/ic_looks_3_outline.js new file mode 100644 index 000000000..18d7fb624 --- /dev/null +++ b/dist/md/ic_looks_3_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_looks_3_outline = void 0; +var ic_looks_3_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-4-4v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V9c0-1.11-.9-2-2-2H9v2h4v2h-2v2h2v2H9v2h4c1.1 0 2-.89 2-2z" + }, + "children": [] + }] +}; +exports.ic_looks_3_outline = ic_looks_3_outline; \ No newline at end of file diff --git a/dist/md/ic_looks_3_twotone.js b/dist/md/ic_looks_3_twotone.js new file mode 100644 index 000000000..5df072633 --- /dev/null +++ b/dist/md/ic_looks_3_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_looks_3_twotone = void 0; +var ic_looks_3_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 19h14V5H5v14zm4-4h4v-2h-2v-2h2V9H9V7h4c1.1 0 2 .89 2 2v1.5c0 .83-.67 1.5-1.5 1.5.83 0 1.5.67 1.5 1.5V15c0 1.11-.9 2-2 2H9v-2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-4-4v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V9c0-1.11-.9-2-2-2H9v2h4v2h-2v2h2v2H9v2h4c1.1 0 2-.89 2-2z" + }, + "children": [] + }] +}; +exports.ic_looks_3_twotone = ic_looks_3_twotone; \ No newline at end of file diff --git a/dist/md/ic_looks_4.js b/dist/md/ic_looks_4.js new file mode 100644 index 000000000..5f21bbfe5 --- /dev/null +++ b/dist/md/ic_looks_4.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_looks_4 = void 0; +var ic_looks_4 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4 14h-2v-4H9V7h2v4h2V7h2v10z" + }, + "children": [] + }] +}; +exports.ic_looks_4 = ic_looks_4; \ No newline at end of file diff --git a/dist/md/ic_looks_4_outline.js b/dist/md/ic_looks_4_outline.js new file mode 100644 index 000000000..ef89e3b7a --- /dev/null +++ b/dist/md/ic_looks_4_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_looks_4_outline = void 0; +var ic_looks_4_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M.04 0h24v24h-24V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.04 3h-14c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16h-14V5h14v14zm-6-2h2V7h-2v4h-2V7h-2v6h4z" + }, + "children": [] + }] +}; +exports.ic_looks_4_outline = ic_looks_4_outline; \ No newline at end of file diff --git a/dist/md/ic_looks_4_twotone.js b/dist/md/ic_looks_4_twotone.js new file mode 100644 index 000000000..b8bda0abf --- /dev/null +++ b/dist/md/ic_looks_4_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_looks_4_twotone = void 0; +var ic_looks_4_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M.04 0h24v24h-24V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5.04 19h14V5h-14v14zm4-12h2v4h2V7h2v10h-2v-4h-4V7z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.04 3h-14c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16h-14V5h14v14zm-6-2h2V7h-2v4h-2V7h-2v6h4z" + }, + "children": [] + }] +}; +exports.ic_looks_4_twotone = ic_looks_4_twotone; \ No newline at end of file diff --git a/dist/md/ic_looks_5.js b/dist/md/ic_looks_5.js new file mode 100644 index 000000000..dd8e61144 --- /dev/null +++ b/dist/md/ic_looks_5.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_looks_5 = void 0; +var ic_looks_5 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4 6h-4v2h2c1.1 0 2 .89 2 2v2c0 1.11-.9 2-2 2H9v-2h4v-2H9V7h6v2z" + }, + "children": [] + }] +}; +exports.ic_looks_5 = ic_looks_5; \ No newline at end of file diff --git a/dist/md/ic_looks_5_outline.js b/dist/md/ic_looks_5_outline.js new file mode 100644 index 000000000..83b763c5a --- /dev/null +++ b/dist/md/ic_looks_5_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_looks_5_outline = void 0; +var ic_looks_5_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-4-4v-2c0-1.11-.9-2-2-2h-2V9h4V7H9v6h4v2H9v2h4c1.1 0 2-.89 2-2z" + }, + "children": [] + }] +}; +exports.ic_looks_5_outline = ic_looks_5_outline; \ No newline at end of file diff --git a/dist/md/ic_looks_5_twotone.js b/dist/md/ic_looks_5_twotone.js new file mode 100644 index 000000000..b2d45c19c --- /dev/null +++ b/dist/md/ic_looks_5_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_looks_5_twotone = void 0; +var ic_looks_5_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 5H5v14h14V5zm-4 4h-4v2h2c1.1 0 2 .89 2 2v2c0 1.11-.9 2-2 2H9v-2h4v-2H9V7h6v2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 21h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2zM5 5h14v14H5V5zm4 8h4v2H9v2h4c1.1 0 2-.89 2-2v-2c0-1.11-.9-2-2-2h-2V9h4V7H9v6z" + }, + "children": [] + }] +}; +exports.ic_looks_5_twotone = ic_looks_5_twotone; \ No newline at end of file diff --git a/dist/md/ic_looks_6.js b/dist/md/ic_looks_6.js new file mode 100644 index 000000000..a101de719 --- /dev/null +++ b/dist/md/ic_looks_6.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_looks_6 = void 0; +var ic_looks_6 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 15h2v-2h-2v2zm8-12H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4 6h-4v2h2c1.1 0 2 .89 2 2v2c0 1.11-.9 2-2 2h-2c-1.1 0-2-.89-2-2V9c0-1.11.9-2 2-2h4v2z" + }, + "children": [] + }] +}; +exports.ic_looks_6 = ic_looks_6; \ No newline at end of file diff --git a/dist/md/ic_looks_6_outline.js b/dist/md/ic_looks_6_outline.js new file mode 100644 index 000000000..7b3d4b405 --- /dev/null +++ b/dist/md/ic_looks_6_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_looks_6_outline = void 0; +var ic_looks_6_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 17h2c1.1 0 2-.89 2-2v-2c0-1.11-.9-2-2-2h-2V9h4V7h-4c-1.1 0-2 .89-2 2v6c0 1.11.9 2 2 2zm0-4h2v2h-2v-2zm8-10H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" + }, + "children": [] + }] +}; +exports.ic_looks_6_outline = ic_looks_6_outline; \ No newline at end of file diff --git a/dist/md/ic_looks_6_twotone.js b/dist/md/ic_looks_6_twotone.js new file mode 100644 index 000000000..feaff0ff8 --- /dev/null +++ b/dist/md/ic_looks_6_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_looks_6_twotone = void 0; +var ic_looks_6_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 13h2v2h-2zm8-8H5v14h14V5zm-4 4h-4v2h2c1.1 0 2 .89 2 2v2c0 1.11-.9 2-2 2h-2c-1.1 0-2-.89-2-2V9c0-1.11.9-2 2-2h4v2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 9v6c0 1.11.9 2 2 2h2c1.1 0 2-.89 2-2v-2c0-1.11-.9-2-2-2h-2V9h4V7h-4c-1.1 0-2 .89-2 2zm4 4v2h-2v-2h2zm-8 8h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2zM5 5h14v14H5V5z" + }, + "children": [] + }] +}; +exports.ic_looks_6_twotone = ic_looks_6_twotone; \ No newline at end of file diff --git a/dist/md/ic_looks_one.js b/dist/md/ic_looks_one.js new file mode 100644 index 000000000..4de78195a --- /dev/null +++ b/dist/md/ic_looks_one.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_looks_one = void 0; +var ic_looks_one = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-5 14h-2V9h-2V7h4v10z" + }, + "children": [] + }] +}; +exports.ic_looks_one = ic_looks_one; \ No newline at end of file diff --git a/dist/md/ic_looks_one_outline.js b/dist/md/ic_looks_one_outline.js new file mode 100644 index 000000000..9b0eff857 --- /dev/null +++ b/dist/md/ic_looks_one_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_looks_one_outline = void 0; +var ic_looks_one_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-7-2h2V7h-4v2h2z" + }, + "children": [] + }] +}; +exports.ic_looks_one_outline = ic_looks_one_outline; \ No newline at end of file diff --git a/dist/md/ic_looks_one_twotone.js b/dist/md/ic_looks_one_twotone.js new file mode 100644 index 000000000..2c05e960c --- /dev/null +++ b/dist/md/ic_looks_one_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_looks_one_twotone = void 0; +var ic_looks_one_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 5H5v14h14V5zm-5 12h-2V9h-2V7h4v10z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 21h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2zM5 5h14v14H5V5zm5 4h2v8h2V7h-4z" + }, + "children": [] + }] +}; +exports.ic_looks_one_twotone = ic_looks_one_twotone; \ No newline at end of file diff --git a/dist/md/ic_looks_outline.js b/dist/md/ic_looks_outline.js new file mode 100644 index 000000000..51c9773b1 --- /dev/null +++ b/dist/md/ic_looks_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_looks_outline = void 0; +var ic_looks_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 10c-3.86 0-7 3.14-7 7h2c0-2.76 2.24-5 5-5s5 2.24 5 5h2c0-3.86-3.14-7-7-7zm0-4C5.93 6 1 10.93 1 17h2c0-4.96 4.04-9 9-9s9 4.04 9 9h2c0-6.07-4.93-11-11-11z" + }, + "children": [] + }] +}; +exports.ic_looks_outline = ic_looks_outline; \ No newline at end of file diff --git a/dist/md/ic_looks_two.js b/dist/md/ic_looks_two.js new file mode 100644 index 000000000..0e2e0fa4a --- /dev/null +++ b/dist/md/ic_looks_two.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_looks_two = void 0; +var ic_looks_two = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4 8c0 1.11-.9 2-2 2h-2v2h4v2H9v-4c0-1.11.9-2 2-2h2V9H9V7h4c1.1 0 2 .89 2 2v2z" + }, + "children": [] + }] +}; +exports.ic_looks_two = ic_looks_two; \ No newline at end of file diff --git a/dist/md/ic_looks_two_outline.js b/dist/md/ic_looks_two_outline.js new file mode 100644 index 000000000..1cad43383 --- /dev/null +++ b/dist/md/ic_looks_two_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_looks_two_outline = void 0; +var ic_looks_two_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-4-4h-4v-2h2c1.1 0 2-.89 2-2V9c0-1.11-.9-2-2-2H9v2h4v2h-2c-1.1 0-2 .89-2 2v4h6v-2z" + }, + "children": [] + }] +}; +exports.ic_looks_two_outline = ic_looks_two_outline; \ No newline at end of file diff --git a/dist/md/ic_looks_two_twotone.js b/dist/md/ic_looks_two_twotone.js new file mode 100644 index 000000000..e21eebd81 --- /dev/null +++ b/dist/md/ic_looks_two_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_looks_two_twotone = void 0; +var ic_looks_two_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 5H5v14h14V5zm-4 6c0 1.11-.9 2-2 2h-2v2h4v2H9v-4c0-1.11.9-2 2-2h2V9H9V7h4c1.1 0 2 .89 2 2v2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 21h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2zM5 5h14v14H5V5zm8 2H9v2h4v2h-2c-1.1 0-2 .89-2 2v4h6v-2h-4v-2h2c1.1 0 2-.89 2-2V9c0-1.11-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_looks_two_twotone = ic_looks_two_twotone; \ No newline at end of file diff --git a/dist/md/ic_looks_twotone.js b/dist/md/ic_looks_twotone.js new file mode 100644 index 000000000..b3bc73e11 --- /dev/null +++ b/dist/md/ic_looks_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_looks_twotone = void 0; +var ic_looks_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 6C5.93 6 1 10.93 1 17h2c0-4.96 4.04-9 9-9s9 4.04 9 9h2c0-6.07-4.93-11-11-11zm0 6c2.76 0 5 2.24 5 5h2c0-3.86-3.14-7-7-7s-7 3.14-7 7h2c0-2.76 2.24-5 5-5z" + }, + "children": [] + }] +}; +exports.ic_looks_twotone = ic_looks_twotone; \ No newline at end of file diff --git a/dist/md/ic_loop.js b/dist/md/ic_loop.js new file mode 100644 index 000000000..d26fd77aa --- /dev/null +++ b/dist/md/ic_loop.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_loop = void 0; +var ic_loop = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4V1L8 5l4 4V6c3.31 0 6 2.69 6 6 0 1.01-.25 1.97-.7 2.8l1.46 1.46C19.54 15.03 20 13.57 20 12c0-4.42-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6 0-1.01.25-1.97.7-2.8L5.24 7.74C4.46 8.97 4 10.43 4 12c0 4.42 3.58 8 8 8v3l4-4-4-4v3z" + }, + "children": [] + }] +}; +exports.ic_loop = ic_loop; \ No newline at end of file diff --git a/dist/md/ic_loop_outline.js b/dist/md/ic_loop_outline.js new file mode 100644 index 000000000..5959be047 --- /dev/null +++ b/dist/md/ic_loop_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_loop_outline = void 0; +var ic_loop_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4V1L8 5l4 4V6c3.31 0 6 2.69 6 6 0 1.01-.25 1.97-.7 2.8l1.46 1.46C19.54 15.03 20 13.57 20 12c0-4.42-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6 0-1.01.25-1.97.7-2.8L5.24 7.74C4.46 8.97 4 10.43 4 12c0 4.42 3.58 8 8 8v3l4-4-4-4v3z" + }, + "children": [] + }] +}; +exports.ic_loop_outline = ic_loop_outline; \ No newline at end of file diff --git a/dist/md/ic_loop_twotone.js b/dist/md/ic_loop_twotone.js new file mode 100644 index 000000000..e4118b3dc --- /dev/null +++ b/dist/md/ic_loop_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_loop_twotone = void 0; +var ic_loop_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 18c-3.31 0-6-2.69-6-6 0-1.01.25-1.97.7-2.8L5.24 7.74C4.46 8.97 4 10.43 4 12c0 4.42 3.58 8 8 8v3l4-4-4-4v3zm0-14V1L8 5l4 4V6c3.31 0 6 2.69 6 6 0 1.01-.25 1.97-.7 2.8l1.46 1.46C19.54 15.03 20 13.57 20 12c0-4.42-3.58-8-8-8z" + }, + "children": [] + }] +}; +exports.ic_loop_twotone = ic_loop_twotone; \ No newline at end of file diff --git a/dist/md/ic_loupe.js b/dist/md/ic_loupe.js new file mode 100644 index 000000000..373677ce6 --- /dev/null +++ b/dist/md/ic_loupe.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_loupe = void 0; +var ic_loupe = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.49 2 2 6.49 2 12s4.49 10 10 10h8c1.1 0 2-.9 2-2v-8c0-5.51-4.49-10-10-10zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" + }, + "children": [] + }] +}; +exports.ic_loupe = ic_loupe; \ No newline at end of file diff --git a/dist/md/ic_loupe_outline.js b/dist/md/ic_loupe_outline.js new file mode 100644 index 000000000..35320e95d --- /dev/null +++ b/dist/md/ic_loupe_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_loupe_outline = void 0; +var ic_loupe_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.49 2 2 6.49 2 12s4.49 10 10 10h8c1.1 0 2-.9 2-2v-8c0-5.51-4.49-10-10-10zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" + }, + "children": [] + }] +}; +exports.ic_loupe_outline = ic_loupe_outline; \ No newline at end of file diff --git a/dist/md/ic_loupe_twotone.js b/dist/md/ic_loupe_twotone.js new file mode 100644 index 000000000..bdc9e918a --- /dev/null +++ b/dist/md/ic_loupe_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_loupe_twotone = void 0; +var ic_loupe_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 20c4.41 0 8-3.59 8-8s-3.59-8-8-8-8 3.59-8 8 3.59 8 8 8zm-5-9h4V7h2v4h4v2h-4v4h-2v-4H7v-2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 17h2v-4h4v-2h-4V7h-2v4H7v2h4zm1 5h8c1.1 0 2-.9 2-2v-8c0-5.51-4.49-10-10-10S2 6.49 2 12s4.49 10 10 10zm0-18c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8z" + }, + "children": [] + }] +}; +exports.ic_loupe_twotone = ic_loupe_twotone; \ No newline at end of file diff --git a/dist/md/ic_low_priority.js b/dist/md/ic_low_priority.js new file mode 100644 index 000000000..99a327f5f --- /dev/null +++ b/dist/md/ic_low_priority.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_low_priority = void 0; +var ic_low_priority = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 5h8v2h-8zm0 5.5h8v2h-8zm0 5.5h8v2h-8zM2 11.5C2 15.08 4.92 18 8.5 18H9v2l3-3-3-3v2h-.5C6.02 16 4 13.98 4 11.5S6.02 7 8.5 7H12V5H8.5C4.92 5 2 7.92 2 11.5z" + }, + "children": [] + }] +}; +exports.ic_low_priority = ic_low_priority; \ No newline at end of file diff --git a/dist/md/ic_low_priority_outline.js b/dist/md/ic_low_priority_outline.js new file mode 100644 index 000000000..c567d6b20 --- /dev/null +++ b/dist/md/ic_low_priority_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_low_priority_outline = void 0; +var ic_low_priority_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 5h8v2h-8V5zm0 5.5h8v2h-8v-2zm0 5.5h8v2h-8v-2zM2 11.5C2 15.08 4.92 18 8.5 18H9v2l3-3-3-3v2h-.5C6.02 16 4 13.98 4 11.5S6.02 7 8.5 7H12V5H8.5C4.92 5 2 7.92 2 11.5z" + }, + "children": [] + }] +}; +exports.ic_low_priority_outline = ic_low_priority_outline; \ No newline at end of file diff --git a/dist/md/ic_low_priority_twotone.js b/dist/md/ic_low_priority_twotone.js new file mode 100644 index 000000000..590312c41 --- /dev/null +++ b/dist/md/ic_low_priority_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_low_priority_twotone = void 0; +var ic_low_priority_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 5h8v2h-8V5zm0 5.5h8v2h-8v-2zm0 5.5h8v2h-8v-2zM2 11.5C2 15.08 4.92 18 8.5 18H9v2l3-3-3-3v2h-.5C6.02 16 4 13.98 4 11.5S6.02 7 8.5 7H12V5H8.5C4.92 5 2 7.92 2 11.5z" + }, + "children": [] + }] +}; +exports.ic_low_priority_twotone = ic_low_priority_twotone; \ No newline at end of file diff --git a/dist/md/ic_loyalty.js b/dist/md/ic_loyalty.js new file mode 100644 index 000000000..47a033c28 --- /dev/null +++ b/dist/md/ic_loyalty.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_loyalty = void 0; +var ic_loyalty = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21.41 11.58l-9-9C12.05 2.22 11.55 2 11 2H4c-1.1 0-2 .9-2 2v7c0 .55.22 1.05.59 1.42l9 9c.36.36.86.58 1.41.58.55 0 1.05-.22 1.41-.59l7-7c.37-.36.59-.86.59-1.41 0-.55-.23-1.06-.59-1.42zM5.5 7C4.67 7 4 6.33 4 5.5S4.67 4 5.5 4 7 4.67 7 5.5 6.33 7 5.5 7zm11.77 8.27L13 19.54l-4.27-4.27C8.28 14.81 8 14.19 8 13.5c0-1.38 1.12-2.5 2.5-2.5.69 0 1.32.28 1.77.74l.73.72.73-.73c.45-.45 1.08-.73 1.77-.73 1.38 0 2.5 1.12 2.5 2.5 0 .69-.28 1.32-.73 1.77z" + }, + "children": [] + }] +}; +exports.ic_loyalty = ic_loyalty; \ No newline at end of file diff --git a/dist/md/ic_loyalty_outline.js b/dist/md/ic_loyalty_outline.js new file mode 100644 index 000000000..afc933e93 --- /dev/null +++ b/dist/md/ic_loyalty_outline.js @@ -0,0 +1,38 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_loyalty_outline = void 0; +var ic_loyalty_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21.41 11.58l-9-9C12.05 2.22 11.55 2 11 2H4c-1.1 0-2 .9-2 2v7c0 .55.22 1.05.59 1.42l9 9c.36.36.86.58 1.41.58s1.05-.22 1.41-.59l7-7c.37-.36.59-.86.59-1.41s-.23-1.06-.59-1.42zM13 20.01L4 11V4h7v-.01l9 9-7 7.02z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "6.5", + "cy": "6.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8.9 12.55c0 .57.23 1.07.6 1.45l3.5 3.5 3.5-3.5c.37-.37.6-.89.6-1.45 0-1.13-.92-2.05-2.05-2.05-.57 0-1.08.23-1.45.6l-.6.6-.6-.59c-.37-.38-.89-.61-1.45-.61-1.13 0-2.05.92-2.05 2.05z" + }, + "children": [] + }] +}; +exports.ic_loyalty_outline = ic_loyalty_outline; \ No newline at end of file diff --git a/dist/md/ic_loyalty_twotone.js b/dist/md/ic_loyalty_twotone.js new file mode 100644 index 000000000..bbbc7afbd --- /dev/null +++ b/dist/md/ic_loyalty_twotone.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_loyalty_twotone = void 0; +var ic_loyalty_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 4H4v7l9 9.01L20 13l-9-9zM6.5 8C5.67 8 5 7.33 5 6.5S5.67 5 6.5 5 8 5.67 8 6.5 7.33 8 6.5 8zm6.5 3.7l.6-.6c.37-.37.89-.6 1.45-.6 1.13 0 2.05.92 2.05 2.05 0 .57-.23 1.08-.6 1.45L13 17.5 9.5 14c-.37-.38-.6-.89-.6-1.45 0-1.13.92-2.05 2.05-2.05.57 0 1.08.23 1.45.61l.6.59z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21.41 11.58l-9-9C12.05 2.22 11.55 2 11 2H4c-1.1 0-2 .9-2 2v7c0 .55.22 1.05.59 1.42l9 9c.36.36.86.58 1.41.58s1.05-.22 1.41-.59l7-7c.37-.36.59-.86.59-1.41s-.23-1.06-.59-1.42zM13 20.01L4 11V4h7v-.01l9 9-7 7.02z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "6.5", + "cy": "6.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8.9 12.55c0 .57.23 1.07.6 1.45l3.5 3.5 3.5-3.5c.37-.37.6-.89.6-1.45 0-1.13-.92-2.05-2.05-2.05-.57 0-1.08.23-1.45.6l-.6.6-.6-.59c-.37-.38-.89-.61-1.45-.61-1.13 0-2.05.92-2.05 2.05z" + }, + "children": [] + }] +}; +exports.ic_loyalty_twotone = ic_loyalty_twotone; \ No newline at end of file diff --git a/dist/md/ic_luggage.js b/dist/md/ic_luggage.js new file mode 100644 index 000000000..46663ee72 --- /dev/null +++ b/dist/md/ic_luggage.js @@ -0,0 +1,35 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_luggage = void 0; +var ic_luggage = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,6h-2V3c0-0.55-0.45-1-1-1h-4C9.45,2,9,2.45,9,3v3H7C5.9,6,5,6.9,5,8v11c0,1.1,0.9,2,2,2c0,0.55,0.45,1,1,1 c0.55,0,1-0.45,1-1h6c0,0.55,0.45,1,1,1c0.55,0,1-0.45,1-1c1.1,0,2-0.9,2-2V8C19,6.9,18.1,6,17,6z M9.5,18H8V9h1.5V18z M12.75,18 h-1.5V9h1.5V18z M13.5,6h-3V3.5h3V6z M16,18h-1.5V9H16V18z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,6h-2V3c0-0.55-0.45-1-1-1h-4C9.45,2,9,2.45,9,3v3H7C5.9,6,5,6.9,5,8v11c0,1.1,0.9,2,2,2c0,0.55,0.45,1,1,1 c0.55,0,1-0.45,1-1h6c0,0.55,0.45,1,1,1c0.55,0,1-0.45,1-1c1.1,0,2-0.9,2-2V8C19,6.9,18.1,6,17,6z M9.5,18H8V9h1.5V18z M12.75,18 h-1.5V9h1.5V18z M13.5,6h-3V3.5h3V6z M16,18h-1.5V9H16V18z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_luggage = ic_luggage; \ No newline at end of file diff --git a/dist/md/ic_luggage_outline.js b/dist/md/ic_luggage_outline.js new file mode 100644 index 000000000..efd9bec80 --- /dev/null +++ b/dist/md/ic_luggage_outline.js @@ -0,0 +1,35 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_luggage_outline = void 0; +var ic_luggage_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M9.5,18H8V9h1.5V18z M12.75,18h-1.5V9h1.5V18z M16,18h-1.5V9H16V18z M17,6h-2V3c0-0.55-0.45-1-1-1h-4C9.45,2,9,2.45,9,3v3 H7C5.9,6,5,6.9,5,8v11c0,1.1,0.9,2,2,2c0,0.55,0.45,1,1,1s1-0.45,1-1h6c0,0.55,0.45,1,1,1s1-0.45,1-1c1.1,0,2-0.9,2-2V8 C19,6.9,18.1,6,17,6z M10.5,3.5h3V6h-3V3.5z M17,19H7V8h10V19z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M9.5,18H8V9h1.5V18z M12.75,18h-1.5V9h1.5V18z M16,18h-1.5V9H16V18z M17,6h-2V3c0-0.55-0.45-1-1-1h-4C9.45,2,9,2.45,9,3v3 H7C5.9,6,5,6.9,5,8v11c0,1.1,0.9,2,2,2c0,0.55,0.45,1,1,1s1-0.45,1-1h6c0,0.55,0.45,1,1,1s1-0.45,1-1c1.1,0,2-0.9,2-2V8 C19,6.9,18.1,6,17,6z M10.5,3.5h3V6h-3V3.5z M17,19H7V8h10V19z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_luggage_outline = ic_luggage_outline; \ No newline at end of file diff --git a/dist/md/ic_luggage_twotone.js b/dist/md/ic_luggage_twotone.js new file mode 100644 index 000000000..69085fb66 --- /dev/null +++ b/dist/md/ic_luggage_twotone.js @@ -0,0 +1,53 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_luggage_twotone = void 0; +var ic_luggage_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "g", + "attribs": { + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M7,8v11h10V8H7z M9.5,18H8V9h1.5V18z M12.75,18h-1.5V9h1.5V18z M16,18h-1.5V9H16V18z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M7,8v11h10V8H7z M9.5,18H8V9h1.5V18z M12.75,18h-1.5V9h1.5V18z M16,18h-1.5V9H16V18z" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M9.5,18H8V9h1.5V18z M12.75,18h-1.5V9h1.5V18z M16,18h-1.5V9H16V18z M17,6h-2V3c0-0.55-0.45-1-1-1h-4C9.45,2,9,2.45,9,3v3 H7C5.9,6,5,6.9,5,8v11c0,1.1,0.9,2,2,2c0,0.55,0.45,1,1,1s1-0.45,1-1h6c0,0.55,0.45,1,1,1s1-0.45,1-1c1.1,0,2-0.9,2-2V8 C19,6.9,18.1,6,17,6z M10.5,3.5h3V6h-3V3.5z M17,19H7V8h10V19z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M9.5,18H8V9h1.5V18z M12.75,18h-1.5V9h1.5V18z M16,18h-1.5V9H16V18z M17,6h-2V3c0-0.55-0.45-1-1-1h-4C9.45,2,9,2.45,9,3v3 H7C5.9,6,5,6.9,5,8v11c0,1.1,0.9,2,2,2c0,0.55,0.45,1,1,1s1-0.45,1-1h6c0,0.55,0.45,1,1,1s1-0.45,1-1c1.1,0,2-0.9,2-2V8 C19,6.9,18.1,6,17,6z M10.5,3.5h3V6h-3V3.5z M17,19H7V8h10V19z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_luggage_twotone = ic_luggage_twotone; \ No newline at end of file diff --git a/dist/md/ic_lunch_dining.js b/dist/md/ic_lunch_dining.js new file mode 100644 index 000000000..02a4753c0 --- /dev/null +++ b/dist/md/ic_lunch_dining.js @@ -0,0 +1,85 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_lunch_dining = void 0; +var ic_lunch_dining = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,10c0.32-3.28-4.28-6-9.99-6C6.3,4,1.7,6.72,2.02,10H22z", + "fill-rule": "evenodd" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,10c0.32-3.28-4.28-6-9.99-6C6.3,4,1.7,6.72,2.02,10H22z", + "fill-rule": "evenodd" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M5.35,13.5c0.55,0,0.78,0.14,1.15,0.36c0.45,0.27,1.07,0.64,2.18,0.64 s1.73-0.37,2.18-0.64c0.37-0.23,0.59-0.36,1.15-0.36c0.55,0,0.78,0.14,1.15,0.36c0.45,0.27,1.07,0.64,2.18,0.64 c1.11,0,1.73-0.37,2.18-0.64c0.37-0.23,0.59-0.36,1.15-0.36c0.55,0,0.78,0.14,1.15,0.36c0.45,0.27,1.07,0.63,2.17,0.64v-1.98 c0,0-0.79-0.16-1.16-0.38c-0.45-0.27-1.07-0.64-2.18-0.64c-1.11,0-1.73,0.37-2.18,0.64c-0.37,0.23-0.6,0.36-1.15,0.36 s-0.78-0.14-1.15-0.36c-0.45-0.27-1.07-0.64-2.18-0.64s-1.73,0.37-2.18,0.64c-0.37,0.23-0.59,0.36-1.15,0.36 c-0.55,0-0.78-0.14-1.15-0.36c-0.45-0.27-1.07-0.64-2.18-0.64c-1.11,0-1.73,0.37-2.18,0.64C2.78,12.37,2.56,12.5,2,12.5v2 c1.11,0,1.73-0.37,2.21-0.64C4.58,13.63,4.8,13.5,5.35,13.5z", + "fill-rule": "evenodd" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M5.35,13.5c0.55,0,0.78,0.14,1.15,0.36c0.45,0.27,1.07,0.64,2.18,0.64 s1.73-0.37,2.18-0.64c0.37-0.23,0.59-0.36,1.15-0.36c0.55,0,0.78,0.14,1.15,0.36c0.45,0.27,1.07,0.64,2.18,0.64 c1.11,0,1.73-0.37,2.18-0.64c0.37-0.23,0.59-0.36,1.15-0.36c0.55,0,0.78,0.14,1.15,0.36c0.45,0.27,1.07,0.63,2.17,0.64v-1.98 c0,0-0.79-0.16-1.16-0.38c-0.45-0.27-1.07-0.64-2.18-0.64c-1.11,0-1.73,0.37-2.18,0.64c-0.37,0.23-0.6,0.36-1.15,0.36 s-0.78-0.14-1.15-0.36c-0.45-0.27-1.07-0.64-2.18-0.64s-1.73,0.37-2.18,0.64c-0.37,0.23-0.59,0.36-1.15,0.36 c-0.55,0-0.78-0.14-1.15-0.36c-0.45-0.27-1.07-0.64-2.18-0.64c-1.11,0-1.73,0.37-2.18,0.64C2.78,12.37,2.56,12.5,2,12.5v2 c1.11,0,1.73-0.37,2.21-0.64C4.58,13.63,4.8,13.5,5.35,13.5z", + "fill-rule": "evenodd" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M2,16v2c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2v-2H2z", + "fill-rule": "evenodd" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M2,16v2c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2v-2H2z", + "fill-rule": "evenodd" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_lunch_dining = ic_lunch_dining; \ No newline at end of file diff --git a/dist/md/ic_mail.js b/dist/md/ic_mail.js new file mode 100644 index 000000000..f5296490f --- /dev/null +++ b/dist/md/ic_mail.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_mail = void 0; +var ic_mail = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z" + }, + "children": [] + }] +}; +exports.ic_mail = ic_mail; \ No newline at end of file diff --git a/dist/md/ic_mail_outline.js b/dist/md/ic_mail_outline.js new file mode 100644 index 000000000..f521c5642 --- /dev/null +++ b/dist/md/ic_mail_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_mail_outline = void 0; +var ic_mail_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V8l8 5 8-5v10zm-8-7L4 6h16l-8 5z" + }, + "children": [] + }] +}; +exports.ic_mail_outline = ic_mail_outline; \ No newline at end of file diff --git a/dist/md/ic_mail_outline_outline.js b/dist/md/ic_mail_outline_outline.js new file mode 100644 index 000000000..5c69fd8ad --- /dev/null +++ b/dist/md/ic_mail_outline_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_mail_outline_outline = void 0; +var ic_mail_outline_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V8l8 5 8-5v10zm-8-7L4 6h16l-8 5z" + }, + "children": [] + }] +}; +exports.ic_mail_outline_outline = ic_mail_outline_outline; \ No newline at end of file diff --git a/dist/md/ic_mail_outline_twotone.js b/dist/md/ic_mail_outline_twotone.js new file mode 100644 index 000000000..4be8a497e --- /dev/null +++ b/dist/md/ic_mail_outline_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_mail_outline_twotone = void 0; +var ic_mail_outline_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V8l8 5 8-5v10zm-8-7L4 6h16l-8 5z" + }, + "children": [] + }] +}; +exports.ic_mail_outline_twotone = ic_mail_outline_twotone; \ No newline at end of file diff --git a/dist/md/ic_mail_twotone.js b/dist/md/ic_mail_twotone.js new file mode 100644 index 000000000..ad99a1e2c --- /dev/null +++ b/dist/md/ic_mail_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_mail_twotone = void 0; +var ic_mail_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 6H4l8 4.99zM4 8v10h16V8l-8 5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 2l-8 4.99L4 6h16zm0 12H4V8l8 5 8-5v10z" + }, + "children": [] + }] +}; +exports.ic_mail_twotone = ic_mail_twotone; \ No newline at end of file diff --git a/dist/md/ic_map.js b/dist/md/ic_map.js new file mode 100644 index 000000000..3be227edf --- /dev/null +++ b/dist/md/ic_map.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_map = void 0; +var ic_map = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20.5 3l-.16.03L15 5.1 9 3 3.36 4.9c-.21.07-.36.25-.36.48V20.5c0 .28.22.5.5.5l.16-.03L9 18.9l6 2.1 5.64-1.9c.21-.07.36-.25.36-.48V3.5c0-.28-.22-.5-.5-.5zM15 19l-6-2.11V5l6 2.11V19z" + }, + "children": [] + }] +}; +exports.ic_map = ic_map; \ No newline at end of file diff --git a/dist/md/ic_map_outline.js b/dist/md/ic_map_outline.js new file mode 100644 index 000000000..85e9368ed --- /dev/null +++ b/dist/md/ic_map_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_map_outline = void 0; +var ic_map_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20.5 3l-.16.03L15 5.1 9 3 3.36 4.9c-.21.07-.36.25-.36.48V20.5c0 .28.22.5.5.5l.16-.03L9 18.9l6 2.1 5.64-1.9c.21-.07.36-.25.36-.48V3.5c0-.28-.22-.5-.5-.5zM10 5.47l4 1.4v11.66l-4-1.4V5.47zm-5 .99l3-1.01v11.7l-3 1.16V6.46zm14 11.08l-3 1.01V6.86l3-1.16v11.84z" + }, + "children": [] + }] +}; +exports.ic_map_outline = ic_map_outline; \ No newline at end of file diff --git a/dist/md/ic_map_twotone.js b/dist/md/ic_map_twotone.js new file mode 100644 index 000000000..254ad3904 --- /dev/null +++ b/dist/md/ic_map_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_map_twotone = void 0; +var ic_map_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 18.31l3-1.16V5.45L5 6.46zm11 .24l3-1.01V5.69l-3 1.17z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20.5 3l-.16.03L15 5.1 9 3 3.36 4.9c-.21.07-.36.25-.36.48V20.5c0 .28.22.5.5.5l.16-.03L9 18.9l6 2.1 5.64-1.9c.21-.07.36-.25.36-.48V3.5c0-.28-.22-.5-.5-.5zM8 17.15l-3 1.16V6.46l3-1.01v11.7zm6 1.38l-4-1.4V5.47l4 1.4v11.66zm5-.99l-3 1.01V6.86l3-1.16v11.84z" + }, + "children": [] + }] +}; +exports.ic_map_twotone = ic_map_twotone; \ No newline at end of file diff --git a/dist/md/ic_maps_ugc.js b/dist/md/ic_maps_ugc.js new file mode 100644 index 000000000..130170465 --- /dev/null +++ b/dist/md/ic_maps_ugc.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_maps_ugc = void 0; +var ic_maps_ugc = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "fill-rule": "evenodd", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12,2C6.48,2,2,6.48,2,12c0,1.54,0.36,2.98,0.97,4.29L1,23l6.71-1.97 C9.02,21.64,10.46,22,12,22c5.52,0,10-4.48,10-10C22,6.48,17.52,2,12,2z M16,13h-3v3h-2v-3H8v-2h3V8h2v3h3V13z", + "fill-rule": "evenodd" + }, + "children": [] + }] +}; +exports.ic_maps_ugc = ic_maps_ugc; \ No newline at end of file diff --git a/dist/md/ic_maps_ugc_outline.js b/dist/md/ic_maps_ugc_outline.js new file mode 100644 index 000000000..00301849d --- /dev/null +++ b/dist/md/ic_maps_ugc_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_maps_ugc_outline = void 0; +var ic_maps_ugc_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "fill-rule": "evenodd", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8c-1.18,0-2.34-0.26-3.43-0.78c-0.27-0.13-0.56-0.19-0.86-0.19 c-0.19,0-0.38,0.03-0.56,0.08l-3.2,0.94l0.94-3.2c0.14-0.47,0.1-0.98-0.11-1.42C4.26,14.34,4,13.18,4,12C4,7.59,7.59,4,12,4 M12,2 C6.48,2,2,6.48,2,12c0,1.54,0.36,2.98,0.97,4.29L1,23l6.71-1.97C9.02,21.64,10.46,22,12,22c5.52,0,10-4.48,10-10 C22,6.48,17.52,2,12,2L12,2z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8c-1.18,0-2.34-0.26-3.43-0.78c-0.27-0.13-0.56-0.19-0.86-0.19 c-0.19,0-0.38,0.03-0.56,0.08l-3.2,0.94l0.94-3.2c0.14-0.47,0.1-0.98-0.11-1.42C4.26,14.34,4,13.18,4,12C4,7.59,7.59,4,12,4 M12,2 C6.48,2,2,6.48,2,12c0,1.54,0.36,2.98,0.97,4.29L1,23l6.71-1.97C9.02,21.64,10.46,22,12,22c5.52,0,10-4.48,10-10 C22,6.48,17.52,2,12,2L12,2z" + }, + "children": [] + }] + }] + }, { + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "points": "13,8 11,8 11,11 8,11 8,13 11,13 11,16 13,16 13,13 16,13 16,11 13,11" + }, + "children": [] + }] +}; +exports.ic_maps_ugc_outline = ic_maps_ugc_outline; \ No newline at end of file diff --git a/dist/md/ic_maps_ugc_twotone.js b/dist/md/ic_maps_ugc_twotone.js new file mode 100644 index 000000000..4129e506f --- /dev/null +++ b/dist/md/ic_maps_ugc_twotone.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_maps_ugc_twotone = void 0; +var ic_maps_ugc_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "fill-rule": "evenodd", + "height": "24", + "width": "24", + "y": "0" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8c-1.18,0-2.34-0.26-3.43-0.78c-0.27-0.13-0.56-0.19-0.86-0.19 c-0.19,0-0.38,0.03-0.56,0.08l-3.2,0.94l0.94-3.2c0.14-0.47,0.1-0.98-0.11-1.42C4.26,14.34,4,13.18,4,12C4,7.59,7.59,4,12,4", + "fill-opacity": ".3" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8c-1.18,0-2.34-0.26-3.43-0.78c-0.27-0.13-0.56-0.19-0.86-0.19 c-0.19,0-0.38,0.03-0.56,0.08l-3.2,0.94l0.94-3.2c0.14-0.47,0.1-0.98-0.11-1.42C4.26,14.34,4,13.18,4,12C4,7.59,7.59,4,12,4 M12,2 C6.48,2,2,6.48,2,12c0,1.54,0.36,2.98,0.97,4.29L1,23l6.71-1.97C9.02,21.64,10.46,22,12,22c5.52,0,10-4.48,10-10 C22,6.48,17.52,2,12,2L12,2z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8c-1.18,0-2.34-0.26-3.43-0.78c-0.27-0.13-0.56-0.19-0.86-0.19 c-0.19,0-0.38,0.03-0.56,0.08l-3.2,0.94l0.94-3.2c0.14-0.47,0.1-0.98-0.11-1.42C4.26,14.34,4,13.18,4,12C4,7.59,7.59,4,12,4 M12,2 C6.48,2,2,6.48,2,12c0,1.54,0.36,2.98,0.97,4.29L1,23l6.71-1.97C9.02,21.64,10.46,22,12,22c5.52,0,10-4.48,10-10 C22,6.48,17.52,2,12,2L12,2z" + }, + "children": [] + }] + }] + }, { + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "points": "13,8 11,8 11,11 8,11 8,13 11,13 11,16 13,16 13,13 16,13 16,11 13,11" + }, + "children": [] + }] +}; +exports.ic_maps_ugc_twotone = ic_maps_ugc_twotone; \ No newline at end of file diff --git a/dist/md/ic_margin.js b/dist/md/ic_margin.js new file mode 100644 index 000000000..a9ddc10c1 --- /dev/null +++ b/dist/md/ic_margin.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_margin = void 0; +var ic_margin = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 3v18h18V3H3zm16 16H5V5h14v14zM11 7h2v2h-2zM7 7h2v2H7zm8 0h2v2h-2zm-8 4h2v2H7zm4 0h2v2h-2zm4 0h2v2h-2z" + }, + "children": [] + }] +}; +exports.ic_margin = ic_margin; \ No newline at end of file diff --git a/dist/md/ic_mark_as_unread.js b/dist/md/ic_mark_as_unread.js new file mode 100644 index 000000000..b58ca52cb --- /dev/null +++ b/dist/md/ic_mark_as_unread.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_mark_as_unread = void 0; +var ic_mark_as_unread = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18.83 7h-2.6L10.5 4 4 7.4V17c-1.1 0-2-.9-2-2V7.17c0-.53.32-1.09.8-1.34L10.5 2l7.54 3.83c.43.23.73.7.79 1.17zM20 8H7c-1.1 0-2 .9-2 2v9c0 1.1.9 2 2 2h13c1.1 0 2-.9 2-2v-9c0-1.1-.9-2-2-2zm0 3.67L13.5 15 7 11.67V10l6.5 3.33L20 10v1.67z" + }, + "children": [] + }] +}; +exports.ic_mark_as_unread = ic_mark_as_unread; \ No newline at end of file diff --git a/dist/md/ic_mark_chat_read.js b/dist/md/ic_mark_chat_read.js new file mode 100644 index 000000000..4094809b9 --- /dev/null +++ b/dist/md/ic_mark_chat_read.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_mark_chat_read = void 0; +var ic_mark_chat_read = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M17.34,20l-3.54-3.54l1.41-1.41l2.12,2.12l4.24-4.24L23,14.34L17.34,20z M12,17c0-3.87,3.13-7,7-7c1.08,0,2.09,0.25,3,0.68 V4c0-1.1-0.9-2-2-2H4C2.9,2,2,2.9,2,4v18l4-4h6v0c0-0.17,0.01-0.33,0.03-0.5C12.01,17.34,12,17.17,12,17z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17.34,20l-3.54-3.54l1.41-1.41l2.12,2.12l4.24-4.24L23,14.34L17.34,20z M12,17c0-3.87,3.13-7,7-7c1.08,0,2.09,0.25,3,0.68 V4c0-1.1-0.9-2-2-2H4C2.9,2,2,2.9,2,4v18l4-4h6v0c0-0.17,0.01-0.33,0.03-0.5C12.01,17.34,12,17.17,12,17z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_mark_chat_read = ic_mark_chat_read; \ No newline at end of file diff --git a/dist/md/ic_mark_chat_read_outline.js b/dist/md/ic_mark_chat_read_outline.js new file mode 100644 index 000000000..e00732bd0 --- /dev/null +++ b/dist/md/ic_mark_chat_read_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_mark_chat_read_outline = void 0; +var ic_mark_chat_read_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M12,18l-6,0l-4,4V4c0-1.1,0.9-2,2-2h16c1.1,0,2,0.9,2,2v7l-2,0V4H4v12l8,0V18z M23,14.34l-1.41-1.41l-4.24,4.24l-2.12-2.12 l-1.41,1.41L17.34,20L23,14.34z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,18l-6,0l-4,4V4c0-1.1,0.9-2,2-2h16c1.1,0,2,0.9,2,2v7l-2,0V4H4v12l8,0V18z M23,14.34l-1.41-1.41l-4.24,4.24l-2.12-2.12 l-1.41,1.41L17.34,20L23,14.34z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_mark_chat_read_outline = ic_mark_chat_read_outline; \ No newline at end of file diff --git a/dist/md/ic_mark_chat_read_twotone.js b/dist/md/ic_mark_chat_read_twotone.js new file mode 100644 index 000000000..a37c180c8 --- /dev/null +++ b/dist/md/ic_mark_chat_read_twotone.js @@ -0,0 +1,59 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_mark_chat_read_twotone = void 0; +var ic_mark_chat_read_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19,10c0.34,0,0.67,0.03,1,0.08V4H4v12h8.08C12.57,12.61,15.47,10,19,10z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,10c0.34,0,0.67,0.03,1,0.08V4H4v12h8.08C12.57,12.61,15.47,10,19,10z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M17.34,20l-3.54-3.54l1.41-1.41l2.12,2.12l4.24-4.24L23,14.34L17.34,20z M12.08,16H4V4h16v6.08c0.71,0.1,1.38,0.31,2,0.6V4 c0-1.1-0.9-2-2-2H4C2.9,2,2,2.9,2,4v18l4-4h6v0c0-0.14,0.02-0.27,0.03-0.4C12.01,17.4,12,17.2,12,17C12,16.66,12.03,16.33,12.08,16 z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17.34,20l-3.54-3.54l1.41-1.41l2.12,2.12l4.24-4.24L23,14.34L17.34,20z M12.08,16H4V4h16v6.08c0.71,0.1,1.38,0.31,2,0.6V4 c0-1.1-0.9-2-2-2H4C2.9,2,2,2.9,2,4v18l4-4h6v0c0-0.14,0.02-0.27,0.03-0.4C12.01,17.4,12,17.2,12,17C12,16.66,12.03,16.33,12.08,16 z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_mark_chat_read_twotone = ic_mark_chat_read_twotone; \ No newline at end of file diff --git a/dist/md/ic_mark_chat_unread.js b/dist/md/ic_mark_chat_unread.js new file mode 100644 index 000000000..0af936926 --- /dev/null +++ b/dist/md/ic_mark_chat_unread.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_mark_chat_unread = void 0; +var ic_mark_chat_unread = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "y": "0" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "y": "0" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M22,6.98V16c0,1.1-0.9,2-2,2H6l-4,4V4c0-1.1,0.9-2,2-2h10.1C14.04,2.32,14,2.66,14,3c0,2.76,2.24,5,5,5 C20.13,8,21.16,7.61,22,6.98z M16,3c0,1.66,1.34,3,3,3s3-1.34,3-3s-1.34-3-3-3S16,1.34,16,3z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,6.98V16c0,1.1-0.9,2-2,2H6l-4,4V4c0-1.1,0.9-2,2-2h10.1C14.04,2.32,14,2.66,14,3c0,2.76,2.24,5,5,5 C20.13,8,21.16,7.61,22,6.98z M16,3c0,1.66,1.34,3,3,3s3-1.34,3-3s-1.34-3-3-3S16,1.34,16,3z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_mark_chat_unread = ic_mark_chat_unread; \ No newline at end of file diff --git a/dist/md/ic_mark_chat_unread_outline.js b/dist/md/ic_mark_chat_unread_outline.js new file mode 100644 index 000000000..b51dcd71e --- /dev/null +++ b/dist/md/ic_mark_chat_unread_outline.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_mark_chat_unread_outline = void 0; +var ic_mark_chat_unread_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0", + "y": "0" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0", + "y": "0" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M22,6.98V16c0,1.1-0.9,2-2,2H6l-4,4V4c0-1.1,0.9-2,2-2h10.1C14.04,2.32,14,2.66,14,3s0.04,0.68,0.1,1H4v12h16V7.9 C20.74,7.75,21.42,7.42,22,6.98z M16,3c0,1.66,1.34,3,3,3s3-1.34,3-3s-1.34-3-3-3S16,1.34,16,3z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,6.98V16c0,1.1-0.9,2-2,2H6l-4,4V4c0-1.1,0.9-2,2-2h10.1C14.04,2.32,14,2.66,14,3s0.04,0.68,0.1,1H4v12h16V7.9 C20.74,7.75,21.42,7.42,22,6.98z M16,3c0,1.66,1.34,3,3,3s3-1.34,3-3s-1.34-3-3-3S16,1.34,16,3z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_mark_chat_unread_outline = ic_mark_chat_unread_outline; \ No newline at end of file diff --git a/dist/md/ic_mark_chat_unread_twotone.js b/dist/md/ic_mark_chat_unread_twotone.js new file mode 100644 index 000000000..d9b939abb --- /dev/null +++ b/dist/md/ic_mark_chat_unread_twotone.js @@ -0,0 +1,59 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_mark_chat_unread_twotone = void 0; +var ic_mark_chat_unread_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "y": "0" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "y": "0" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M4,16h16V7.9C19.68,7.96,19.34,8,19,8c-2.42,0-4.44-1.72-4.9-4H4V16z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M4,16h16V7.9C19.68,7.96,19.34,8,19,8c-2.42,0-4.44-1.72-4.9-4H4V16z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20,7.9c0.74-0.15,1.42-0.48,2-0.92V16c0,1.1-0.9,2-2,2H6l-4,4V4c0-1.1,0.9-2,2-2h10.1C14.04,2.32,14,2.66,14,3 s0.04,0.68,0.1,1H4v12h16V7.9z M16,3c0,1.66,1.34,3,3,3s3-1.34,3-3s-1.34-3-3-3S16,1.34,16,3z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,7.9c0.74-0.15,1.42-0.48,2-0.92V16c0,1.1-0.9,2-2,2H6l-4,4V4c0-1.1,0.9-2,2-2h10.1C14.04,2.32,14,2.66,14,3 s0.04,0.68,0.1,1H4v12h16V7.9z M16,3c0,1.66,1.34,3,3,3s3-1.34,3-3s-1.34-3-3-3S16,1.34,16,3z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_mark_chat_unread_twotone = ic_mark_chat_unread_twotone; \ No newline at end of file diff --git a/dist/md/ic_mark_email_read.js b/dist/md/ic_mark_email_read.js new file mode 100644 index 000000000..d328223ac --- /dev/null +++ b/dist/md/ic_mark_email_read.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_mark_email_read = void 0; +var ic_mark_email_read = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M12,19c0-3.87,3.13-7,7-7c1.08,0,2.09,0.25,3,0.68V6c0-1.1-0.9-2-2-2H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h8.08 C12.03,19.67,12,19.34,12,19z M4,6l8,5l8-5v2l-8,5L4,8V6z M17.34,22l-3.54-3.54l1.41-1.41l2.12,2.12l4.24-4.24L23,16.34L17.34,22z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,19c0-3.87,3.13-7,7-7c1.08,0,2.09,0.25,3,0.68V6c0-1.1-0.9-2-2-2H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h8.08 C12.03,19.67,12,19.34,12,19z M4,6l8,5l8-5v2l-8,5L4,8V6z M17.34,22l-3.54-3.54l1.41-1.41l2.12,2.12l4.24-4.24L23,16.34L17.34,22z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_mark_email_read = ic_mark_email_read; \ No newline at end of file diff --git a/dist/md/ic_mark_email_read_outline.js b/dist/md/ic_mark_email_read_outline.js new file mode 100644 index 000000000..0a57d683c --- /dev/null +++ b/dist/md/ic_mark_email_read_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_mark_email_read_outline = void 0; +var ic_mark_email_read_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20,4H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h8l0-2H4V8l8,5l8-5v5h2V6C22,4.9,21.1,4,20,4z M12,11L4,6h16L12,11z M17.34,22l-3.54-3.54l1.41-1.41l2.12,2.12l4.24-4.24L23,16.34L17.34,22z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,4H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h8l0-2H4V8l8,5l8-5v5h2V6C22,4.9,21.1,4,20,4z M12,11L4,6h16L12,11z M17.34,22l-3.54-3.54l1.41-1.41l2.12,2.12l4.24-4.24L23,16.34L17.34,22z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_mark_email_read_outline = ic_mark_email_read_outline; \ No newline at end of file diff --git a/dist/md/ic_mark_email_read_twotone.js b/dist/md/ic_mark_email_read_twotone.js new file mode 100644 index 000000000..6000aeb0c --- /dev/null +++ b/dist/md/ic_mark_email_read_twotone.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_mark_email_read_twotone = void 0; +var ic_mark_email_read_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20,8v4.08C19.67,12.03,19.34,12,19,12c-3.53,0-6.43,2.61-6.92,6H4V8l8,5L20,8z M20,6H4l8,5L20,6z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,8v4.08C19.67,12.03,19.34,12,19,12c-3.53,0-6.43,2.61-6.92,6H4V8l8,5L20,8z M20,6H4l8,5L20,6z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M12.08,18H4V8l8,5l8-5v4.08c0.71,0.1,1.38,0.31,2,0.6V6c0-1.1-0.9-2-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2 h8.08C12.03,19.67,12,19.34,12,19S12.03,18.33,12.08,18z M20,6l-8,5L4,6H20z M17.34,22l-3.54-3.54l1.41-1.41l2.12,2.12l4.24-4.24 L23,16.34L17.34,22z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12.08,18H4V8l8,5l8-5v4.08c0.71,0.1,1.38,0.31,2,0.6V6c0-1.1-0.9-2-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2 h8.08C12.03,19.67,12,19.34,12,19S12.03,18.33,12.08,18z M20,6l-8,5L4,6H20z M17.34,22l-3.54-3.54l1.41-1.41l2.12,2.12l4.24-4.24 L23,16.34L17.34,22z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_mark_email_read_twotone = ic_mark_email_read_twotone; \ No newline at end of file diff --git a/dist/md/ic_mark_email_unread.js b/dist/md/ic_mark_email_unread.js new file mode 100644 index 000000000..3248f6d3c --- /dev/null +++ b/dist/md/ic_mark_email_unread.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_mark_email_unread = void 0; +var ic_mark_email_unread = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M22,8.98V18c0,1.1-0.9,2-2,2H4c-1.1,0-2-0.9-2-2V6c0-1.1,0.9-2,2-2h10.1C14.04,4.32,14,4.66,14,5 c0,1.48,0.65,2.79,1.67,3.71L12,11L4,6v2l8,5l5.3-3.32C17.84,9.88,18.4,10,19,10C20.13,10,21.16,9.61,22,8.98z M16,5 c0,1.66,1.34,3,3,3s3-1.34,3-3s-1.34-3-3-3S16,3.34,16,5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,8.98V18c0,1.1-0.9,2-2,2H4c-1.1,0-2-0.9-2-2V6c0-1.1,0.9-2,2-2h10.1C14.04,4.32,14,4.66,14,5 c0,1.48,0.65,2.79,1.67,3.71L12,11L4,6v2l8,5l5.3-3.32C17.84,9.88,18.4,10,19,10C20.13,10,21.16,9.61,22,8.98z M16,5 c0,1.66,1.34,3,3,3s3-1.34,3-3s-1.34-3-3-3S16,3.34,16,5z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_mark_email_unread = ic_mark_email_unread; \ No newline at end of file diff --git a/dist/md/ic_mark_email_unread_outline.js b/dist/md/ic_mark_email_unread_outline.js new file mode 100644 index 000000000..3f5f01e94 --- /dev/null +++ b/dist/md/ic_mark_email_unread_outline.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_mark_email_unread_outline = void 0; +var ic_mark_email_unread_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M22,8.98V18c0,1.1-0.9,2-2,2H4c-1.1,0-2-0.9-2-2L2.01,6C2.01,4.9,2.9,4,4,4h10.1C14.04,4.32,14,4.66,14,5s0.04,0.68,0.1,1 H4l8,5l3.67-2.29c0.47,0.43,1.02,0.76,1.63,0.98L12,13L4,8v10h16V9.9C20.74,9.75,21.42,9.42,22,8.98z M16,5c0,1.66,1.34,3,3,3 s3-1.34,3-3s-1.34-3-3-3S16,3.34,16,5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,8.98V18c0,1.1-0.9,2-2,2H4c-1.1,0-2-0.9-2-2L2.01,6C2.01,4.9,2.9,4,4,4h10.1C14.04,4.32,14,4.66,14,5s0.04,0.68,0.1,1 H4l8,5l3.67-2.29c0.47,0.43,1.02,0.76,1.63,0.98L12,13L4,8v10h16V9.9C20.74,9.75,21.42,9.42,22,8.98z M16,5c0,1.66,1.34,3,3,3 s3-1.34,3-3s-1.34-3-3-3S16,3.34,16,5z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_mark_email_unread_outline = ic_mark_email_unread_outline; \ No newline at end of file diff --git a/dist/md/ic_mark_email_unread_twotone.js b/dist/md/ic_mark_email_unread_twotone.js new file mode 100644 index 000000000..5a262ff84 --- /dev/null +++ b/dist/md/ic_mark_email_unread_twotone.js @@ -0,0 +1,59 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_mark_email_unread_twotone = void 0; +var ic_mark_email_unread_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M4,6h10.1c0.22,1.07,0.79,2,1.57,2.71L12,11L4,6z M4,8v10h16V9.9c-0.32,0.07-0.66,0.1-1,0.1 c-0.6,0-1.16-0.12-1.7-0.32L12,13L4,8z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M4,6h10.1c0.22,1.07,0.79,2,1.57,2.71L12,11L4,6z M4,8v10h16V9.9c-0.32,0.07-0.66,0.1-1,0.1 c-0.6,0-1.16-0.12-1.7-0.32L12,13L4,8z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20,9.9c0.74-0.15,1.42-0.48,2-0.92V18c0,1.1-0.9,2-2,2H4c-1.1,0-2-0.9-2-2V6c0-1.1,0.9-2,2-2h10.1 C14.04,4.32,14,4.66,14,5s0.04,0.68,0.1,1H4l8,5l3.67-2.29c0.47,0.43,1.02,0.76,1.63,0.98L12,13L4,8v10h16V9.9z M16,5 c0,1.66,1.34,3,3,3s3-1.34,3-3s-1.34-3-3-3S16,3.34,16,5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,9.9c0.74-0.15,1.42-0.48,2-0.92V18c0,1.1-0.9,2-2,2H4c-1.1,0-2-0.9-2-2V6c0-1.1,0.9-2,2-2h10.1 C14.04,4.32,14,4.66,14,5s0.04,0.68,0.1,1H4l8,5l3.67-2.29c0.47,0.43,1.02,0.76,1.63,0.98L12,13L4,8v10h16V9.9z M16,5 c0,1.66,1.34,3,3,3s3-1.34,3-3s-1.34-3-3-3S16,3.34,16,5z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_mark_email_unread_twotone = ic_mark_email_unread_twotone; \ No newline at end of file diff --git a/dist/md/ic_markunread.js b/dist/md/ic_markunread.js new file mode 100644 index 000000000..1caae9c98 --- /dev/null +++ b/dist/md/ic_markunread.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_markunread = void 0; +var ic_markunread = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z" + }, + "children": [] + }] +}; +exports.ic_markunread = ic_markunread; \ No newline at end of file diff --git a/dist/md/ic_markunread_mailbox.js b/dist/md/ic_markunread_mailbox.js new file mode 100644 index 000000000..7bc65a913 --- /dev/null +++ b/dist/md/ic_markunread_mailbox.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_markunread_mailbox = void 0; +var ic_markunread_mailbox = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M-618-3000H782V600H-618zM0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 6H10v6H8V4h6V0H6v6H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_markunread_mailbox = ic_markunread_mailbox; \ No newline at end of file diff --git a/dist/md/ic_markunread_mailbox_outline.js b/dist/md/ic_markunread_mailbox_outline.js new file mode 100644 index 000000000..fd9637581 --- /dev/null +++ b/dist/md/ic_markunread_mailbox_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_markunread_mailbox_outline = void 0; +var ic_markunread_mailbox_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 6H10v2h10v12H4V8h2v4h2V4h6V0H6v6H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_markunread_mailbox_outline = ic_markunread_mailbox_outline; \ No newline at end of file diff --git a/dist/md/ic_markunread_mailbox_twotone.js b/dist/md/ic_markunread_mailbox_twotone.js new file mode 100644 index 000000000..6b344c918 --- /dev/null +++ b/dist/md/ic_markunread_mailbox_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_markunread_mailbox_twotone = void 0; +var ic_markunread_mailbox_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 12H6V8H4v12h16V8H10z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 6H10v2h10v12H4V8h2v4h2V4h6V0H6v6H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_markunread_mailbox_twotone = ic_markunread_mailbox_twotone; \ No newline at end of file diff --git a/dist/md/ic_markunread_outline.js b/dist/md/ic_markunread_outline.js new file mode 100644 index 000000000..246bb3f64 --- /dev/null +++ b/dist/md/ic_markunread_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_markunread_outline = void 0; +var ic_markunread_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6zm-2 0l-8 5-8-5h16zm0 12H4V8l8 5 8-5v10z" + }, + "children": [] + }] +}; +exports.ic_markunread_outline = ic_markunread_outline; \ No newline at end of file diff --git a/dist/md/ic_markunread_twotone.js b/dist/md/ic_markunread_twotone.js new file mode 100644 index 000000000..53a7dc341 --- /dev/null +++ b/dist/md/ic_markunread_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_markunread_twotone = void 0; +var ic_markunread_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 6H4l8 5zM4 8v10h16V8l-8 5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 2l-8 5-8-5h16zm0 12H4V8l8 5 8-5v10z" + }, + "children": [] + }] +}; +exports.ic_markunread_twotone = ic_markunread_twotone; \ No newline at end of file diff --git a/dist/md/ic_masks.js b/dist/md/ic_masks.js new file mode 100644 index 000000000..c09280776 --- /dev/null +++ b/dist/md/ic_masks.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_masks = void 0; +var ic_masks = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.5,6c-1.31,0-2.37,1.01-2.48,2.3C15.14,7.8,14.18,6.5,12,6.5c-2.19,0-3.14,1.3-5.02,1.8C6.87,7.02,5.81,6,4.5,6 C3.12,6,2,7.12,2,8.5V9c0,6,3.6,7.81,6.52,7.98C9.53,17.62,10.72,18,12,18s2.47-0.38,3.48-1.02C18.4,16.81,22,15,22,9V8.5 C22,7.12,20.88,6,19.5,6z M3.5,9V8.5c0-0.55,0.45-1,1-1s1,0.45,1,1v3c0,1.28,0.38,2.47,1.01,3.48C4.99,14.27,3.5,12.65,3.5,9z M20.5,9c0,3.65-1.49,5.27-3.01,5.98c0.64-1.01,1.01-2.2,1.01-3.48v-3c0-0.55,0.45-1,1-1s1,0.45,1,1V9z M10.69,10.48 c-0.44,0.26-0.96,0.56-1.69,0.76V10.2c0.48-0.17,0.84-0.38,1.18-0.58C10.72,9.3,11.23,9,12,9s1.27,0.3,1.8,0.62 c0.34,0.2,0.71,0.42,1.2,0.59v1.04c-0.75-0.21-1.26-0.51-1.71-0.78C12.83,10.2,12.49,10,12,10C11.51,10,11.16,10.2,10.69,10.48z" + }, + "children": [] + }] +}; +exports.ic_masks = ic_masks; \ No newline at end of file diff --git a/dist/md/ic_masks_outline.js b/dist/md/ic_masks_outline.js new file mode 100644 index 000000000..aef3cbdcb --- /dev/null +++ b/dist/md/ic_masks_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_masks_outline = void 0; +var ic_masks_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.5,6c-1.31,0-2.37,1.01-2.48,2.3C15.14,7.8,14.18,6.5,12,6.5c-2.19,0-3.14,1.3-5.02,1.8C6.87,7.02,5.81,6,4.5,6 C3.12,6,2,7.12,2,8.5V9c0,6,3.6,7.81,6.52,7.98C9.53,17.62,10.72,18,12,18s2.47-0.38,3.48-1.02C18.4,16.81,22,15,22,9V8.5 C22,7.12,20.88,6,19.5,6z M3.5,9V8.5c0-0.55,0.45-1,1-1s1,0.45,1,1v3c0,1.28,0.38,2.47,1.01,3.48C4.99,14.27,3.5,12.65,3.5,9z M7,11.5V9.85c1.12-0.23,1.95-0.69,2.66-1.08C10.48,8.33,11.07,8,12,8c0.93,0,1.52,0.33,2.34,0.78c0.71,0.39,1.54,0.84,2.66,1.08 v1.65c0,2.76-2.24,5-5,5S7,14.26,7,11.5z M20.5,9c0,3.65-1.49,5.27-3.01,5.98c0.64-1.01,1.01-2.2,1.01-3.48v-3c0-0.55,0.45-1,1-1 s1,0.45,1,1V9z M10.69,10.48c-0.44,0.26-0.96,0.56-1.69,0.76V10.2c0.48-0.17,0.84-0.38,1.18-0.58C10.72,9.3,11.23,9,12,9 s1.27,0.3,1.8,0.62c0.34,0.2,0.71,0.42,1.2,0.59v1.04c-0.75-0.21-1.26-0.51-1.71-0.78C12.83,10.2,12.49,10,12,10 C11.51,10,11.16,10.2,10.69,10.48z" + }, + "children": [] + }] +}; +exports.ic_masks_outline = ic_masks_outline; \ No newline at end of file diff --git a/dist/md/ic_masks_twotone.js b/dist/md/ic_masks_twotone.js new file mode 100644 index 000000000..83a04f376 --- /dev/null +++ b/dist/md/ic_masks_twotone.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_masks_twotone = void 0; +var ic_masks_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14.34,8.78C13.52,8.33,12.93,8,12,8c-0.93,0-1.52,0.33-2.34,0.77C8.95,9.16,8.12,9.62,7,9.85v1.65 c0,2.76,2.24,5,5,5s5-2.24,5-5V9.85C15.88,9.62,15.05,9.16,14.34,8.78z M15,11.25c-0.75-0.21-1.26-0.51-1.71-0.78 C12.83,10.2,12.49,10,12,10c-0.49,0-0.84,0.2-1.31,0.48c-0.44,0.26-0.96,0.56-1.69,0.76V10.2c0.48-0.17,0.84-0.38,1.18-0.58 C10.72,9.3,11.23,9,12,9s1.27,0.3,1.8,0.62c0.34,0.2,0.71,0.42,1.2,0.59V11.25z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.5,6c-1.31,0-2.37,1.01-2.48,2.3C15.14,7.8,14.18,6.5,12,6.5c-2.19,0-3.14,1.3-5.02,1.8C6.87,7.02,5.81,6,4.5,6 C3.12,6,2,7.12,2,8.5V9c0,6,3.6,7.81,6.52,7.98C9.53,17.62,10.72,18,12,18s2.47-0.38,3.48-1.02C18.4,16.81,22,15,22,9V8.5 C22,7.12,20.88,6,19.5,6z M3.5,9V8.5c0-0.55,0.45-1,1-1s1,0.45,1,1v3c0,1.28,0.38,2.47,1.01,3.48C4.99,14.27,3.5,12.65,3.5,9z M7,11.5V9.85c1.12-0.23,1.95-0.69,2.66-1.08C10.48,8.33,11.07,8,12,8c0.93,0,1.52,0.33,2.34,0.78c0.71,0.39,1.54,0.84,2.66,1.08 v1.65c0,2.76-2.24,5-5,5S7,14.26,7,11.5z M20.5,9c0,3.65-1.49,5.27-3.01,5.98c0.64-1.01,1.01-2.2,1.01-3.48v-3c0-0.55,0.45-1,1-1 s1,0.45,1,1V9z M10.69,10.48c-0.44,0.26-0.96,0.56-1.69,0.76V10.2c0.48-0.17,0.84-0.38,1.18-0.58C10.72,9.3,11.23,9,12,9 s1.27,0.3,1.8,0.62c0.34,0.2,0.71,0.42,1.2,0.59v1.04c-0.75-0.21-1.26-0.51-1.71-0.78C12.83,10.2,12.49,10,12,10 C11.51,10,11.16,10.2,10.69,10.48z" + }, + "children": [] + }] +}; +exports.ic_masks_twotone = ic_masks_twotone; \ No newline at end of file diff --git a/dist/md/ic_maximize.js b/dist/md/ic_maximize.js new file mode 100644 index 000000000..c63918e46 --- /dev/null +++ b/dist/md/ic_maximize.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_maximize = void 0; +var ic_maximize = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 3h18v2H3z" + }, + "children": [] + }] +}; +exports.ic_maximize = ic_maximize; \ No newline at end of file diff --git a/dist/md/ic_maximize_outline.js b/dist/md/ic_maximize_outline.js new file mode 100644 index 000000000..13161dfc7 --- /dev/null +++ b/dist/md/ic_maximize_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_maximize_outline = void 0; +var ic_maximize_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 3h18v2H3V3z" + }, + "children": [] + }] +}; +exports.ic_maximize_outline = ic_maximize_outline; \ No newline at end of file diff --git a/dist/md/ic_maximize_twotone.js b/dist/md/ic_maximize_twotone.js new file mode 100644 index 000000000..a51762a66 --- /dev/null +++ b/dist/md/ic_maximize_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_maximize_twotone = void 0; +var ic_maximize_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 3h18v2H3V3z" + }, + "children": [] + }] +}; +exports.ic_maximize_twotone = ic_maximize_twotone; \ No newline at end of file diff --git a/dist/md/ic_mediation.js b/dist/md/ic_mediation.js new file mode 100644 index 000000000..aa22f9a66 --- /dev/null +++ b/dist/md/ic_mediation.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_mediation = void 0; +var ic_mediation = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 12l-4 4-1.41-1.41L18.17 13h-5.23c-.34 3.1-2.26 5.72-4.94 7.05C7.96 21.69 6.64 23 5 23c-1.66 0-3-1.34-3-3s1.34-3 3-3c.95 0 1.78.45 2.33 1.14 1.9-1.03 3.26-2.91 3.58-5.14h-3.1C7.4 14.16 6.3 15 5 15c-1.66 0-3-1.34-3-3s1.34-3 3-3c1.3 0 2.4.84 2.82 2h3.1c-.32-2.23-1.69-4.1-3.59-5.14C6.78 6.55 5.95 7 5 7 3.34 7 2 5.66 2 4s1.34-3 3-3c1.64 0 2.96 1.31 2.99 2.95 2.68 1.33 4.6 3.95 4.94 7.05h5.23l-1.58-1.59L18 8l4 4z" + }, + "children": [] + }] +}; +exports.ic_mediation = ic_mediation; \ No newline at end of file diff --git a/dist/md/ic_mediation_outline.js b/dist/md/ic_mediation_outline.js new file mode 100644 index 000000000..5b48cb363 --- /dev/null +++ b/dist/md/ic_mediation_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_mediation_outline = void 0; +var ic_mediation_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M18,16l4-4l-4-4v3h-5.06c-0.34-3.1-2.26-5.72-4.94-7.05C7.96,2.31,6.64,1,5,1C3.34,1,2,2.34,2,4s1.34,3,3,3 c0.95,0,1.78-0.45,2.33-1.14C9.23,6.9,10.6,8.77,10.92,11h-3.1C7.4,9.84,6.3,9,5,9c-1.66,0-3,1.34-3,3s1.34,3,3,3 c1.3,0,2.4-0.84,2.82-2h3.1c-0.32,2.23-1.69,4.1-3.58,5.14C6.78,17.45,5.95,17,5,17c-1.66,0-3,1.34-3,3s1.34,3,3,3 c1.64,0,2.96-1.31,2.99-2.95c2.68-1.33,4.6-3.95,4.94-7.05H18V16z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18,16l4-4l-4-4v3h-5.06c-0.34-3.1-2.26-5.72-4.94-7.05C7.96,2.31,6.64,1,5,1C3.34,1,2,2.34,2,4s1.34,3,3,3 c0.95,0,1.78-0.45,2.33-1.14C9.23,6.9,10.6,8.77,10.92,11h-3.1C7.4,9.84,6.3,9,5,9c-1.66,0-3,1.34-3,3s1.34,3,3,3 c1.3,0,2.4-0.84,2.82-2h3.1c-0.32,2.23-1.69,4.1-3.58,5.14C6.78,17.45,5.95,17,5,17c-1.66,0-3,1.34-3,3s1.34,3,3,3 c1.64,0,2.96-1.31,2.99-2.95c2.68-1.33,4.6-3.95,4.94-7.05H18V16z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_mediation_outline = ic_mediation_outline; \ No newline at end of file diff --git a/dist/md/ic_mediation_twotone.js b/dist/md/ic_mediation_twotone.js new file mode 100644 index 000000000..2c153925a --- /dev/null +++ b/dist/md/ic_mediation_twotone.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_mediation_twotone = void 0; +var ic_mediation_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M18,16l4-4l-4-4v3h-5.06c-0.34-3.1-2.26-5.72-4.94-7.05C7.96,2.31,6.64,1,5,1C3.34,1,2,2.34,2,4s1.34,3,3,3 c0.95,0,1.78-0.45,2.33-1.14C9.23,6.9,10.6,8.77,10.92,11h-3.1C7.4,9.84,6.3,9,5,9c-1.66,0-3,1.34-3,3s1.34,3,3,3 c1.3,0,2.4-0.84,2.82-2h3.1c-0.32,2.23-1.69,4.1-3.58,5.14C6.78,17.45,5.95,17,5,17c-1.66,0-3,1.34-3,3s1.34,3,3,3 c1.64,0,2.96-1.31,2.99-2.95c2.68-1.33,4.6-3.95,4.94-7.05H18V16z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18,16l4-4l-4-4v3h-5.06c-0.34-3.1-2.26-5.72-4.94-7.05C7.96,2.31,6.64,1,5,1C3.34,1,2,2.34,2,4s1.34,3,3,3 c0.95,0,1.78-0.45,2.33-1.14C9.23,6.9,10.6,8.77,10.92,11h-3.1C7.4,9.84,6.3,9,5,9c-1.66,0-3,1.34-3,3s1.34,3,3,3 c1.3,0,2.4-0.84,2.82-2h3.1c-0.32,2.23-1.69,4.1-3.58,5.14C6.78,17.45,5.95,17,5,17c-1.66,0-3,1.34-3,3s1.34,3,3,3 c1.64,0,2.96-1.31,2.99-2.95c2.68-1.33,4.6-3.95,4.94-7.05H18V16z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_mediation_twotone = ic_mediation_twotone; \ No newline at end of file diff --git a/dist/md/ic_medical_services.js b/dist/md/ic_medical_services.js new file mode 100644 index 000000000..83a7621c3 --- /dev/null +++ b/dist/md/ic_medical_services.js @@ -0,0 +1,55 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_medical_services = void 0; +var ic_medical_services = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,6h-4V4c0-1.1-0.9-2-2-2h-4C8.9,2,8,2.9,8,4v2H4C2.9,6,2,6.9,2,8v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8 C22,6.9,21.1,6,20,6z M10,4h4v2h-4V4z M16,15h-3v3h-2v-3H8v-2h3v-3h2v3h3V15z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,6h-4V4c0-1.1-0.9-2-2-2h-4C8.9,2,8,2.9,8,4v2H4C2.9,6,2,6.9,2,8v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8 C22,6.9,21.1,6,20,6z M10,4h4v2h-4V4z M16,15h-3v3h-2v-3H8v-2h3v-3h2v3h3V15z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_medical_services = ic_medical_services; \ No newline at end of file diff --git a/dist/md/ic_medical_services_outline.js b/dist/md/ic_medical_services_outline.js new file mode 100644 index 000000000..e3edaec76 --- /dev/null +++ b/dist/md/ic_medical_services_outline.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_medical_services_outline = void 0; +var ic_medical_services_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,6h-4V4c0-1.1-0.9-2-2-2h-4C8.9,2,8,2.9,8,4v2H4C2.9,6,2,6.9,2,8v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8 C22,6.9,21.1,6,20,6z M10,4h4v2h-4V4z M20,20H4V8h16V20z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,6h-4V4c0-1.1-0.9-2-2-2h-4C8.9,2,8,2.9,8,4v2H4C2.9,6,2,6.9,2,8v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8 C22,6.9,21.1,6,20,6z M10,4h4v2h-4V4z M20,20H4V8h16V20z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "13,10 11,10 11,13 8,13 8,15 11,15 11,18 13,18 13,15 16,15 16,13 13,13" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "13,10 11,10 11,13 8,13 8,15 11,15 11,18 13,18 13,15 16,15 16,13 13,13" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_medical_services_outline = ic_medical_services_outline; \ No newline at end of file diff --git a/dist/md/ic_medical_services_twotone.js b/dist/md/ic_medical_services_twotone.js new file mode 100644 index 000000000..ab10f7ff5 --- /dev/null +++ b/dist/md/ic_medical_services_twotone.js @@ -0,0 +1,91 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_medical_services_twotone = void 0; +var ic_medical_services_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": { + "opacity": ".3" + }, + "children": [{ + "name": "g", + "attribs": { + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M4,20h16V8H4V20z M8,13h3v-3h2v3h3v2h-3v3h-2v-3H8V13z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M4,20h16V8H4V20z M8,13h3v-3h2v3h3v2h-3v3h-2v-3H8V13z" + }, + "children": [] + }] + }] + }] + }, { + "name": "path", + "attribs": { + "d": "M20,6h-4V4c0-1.1-0.9-2-2-2h-4C8.9,2,8,2.9,8,4v2H4C2.9,6,2,6.9,2,8v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8 C22,6.9,21.1,6,20,6z M10,4h4v2h-4V4z M20,20H4V8h16V20z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,6h-4V4c0-1.1-0.9-2-2-2h-4C8.9,2,8,2.9,8,4v2H4C2.9,6,2,6.9,2,8v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8 C22,6.9,21.1,6,20,6z M10,4h4v2h-4V4z M20,20H4V8h16V20z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "11,18 13,18 13,15 16,15 16,13 13,13 13,10 11,10 11,13 8,13 8,15 11,15" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "11,18 13,18 13,15 16,15 16,13 13,13 13,10 11,10 11,13 8,13 8,15 11,15" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_medical_services_twotone = ic_medical_services_twotone; \ No newline at end of file diff --git a/dist/md/ic_meeting_room.js b/dist/md/ic_meeting_room.js new file mode 100644 index 000000000..fcc20edcf --- /dev/null +++ b/dist/md/ic_meeting_room.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_meeting_room = void 0; +var ic_meeting_room = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M14 6v15H3v-2h2V3h9v1h5v15h2v2h-4V6h-3zm-4 5v2h2v-2h-2z" + }, + "children": [] + }] +}; +exports.ic_meeting_room = ic_meeting_room; \ No newline at end of file diff --git a/dist/md/ic_meeting_room_outline.js b/dist/md/ic_meeting_room_outline.js new file mode 100644 index 000000000..6684e578a --- /dev/null +++ b/dist/md/ic_meeting_room_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_meeting_room_outline = void 0; +var ic_meeting_room_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 19V4h-4V3H5v16H3v2h12V6h2v15h4v-2h-2zm-6 0H7V5h6v14zm-3-8h2v2h-2z" + }, + "children": [] + }] +}; +exports.ic_meeting_room_outline = ic_meeting_room_outline; \ No newline at end of file diff --git a/dist/md/ic_meeting_room_twotone.js b/dist/md/ic_meeting_room_twotone.js new file mode 100644 index 000000000..d0a754d15 --- /dev/null +++ b/dist/md/ic_meeting_room_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_meeting_room_twotone = void 0; +var ic_meeting_room_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 19h6V5H7v14zm3-8h2v2h-2v-2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 19V4h-4V3H5v16H3v2h12V6h2v15h4v-2h-2zm-6 0H7V5h6v14zm-3-8h2v2h-2z" + }, + "children": [] + }] +}; +exports.ic_meeting_room_twotone = ic_meeting_room_twotone; \ No newline at end of file diff --git a/dist/md/ic_memory.js b/dist/md/ic_memory.js new file mode 100644 index 000000000..c45e75457 --- /dev/null +++ b/dist/md/ic_memory.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_memory = void 0; +var ic_memory = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 9H9v6h6V9zm-2 4h-2v-2h2v2zm8-2V9h-2V7c0-1.1-.9-2-2-2h-2V3h-2v2h-2V3H9v2H7c-1.1 0-2 .9-2 2v2H3v2h2v2H3v2h2v2c0 1.1.9 2 2 2h2v2h2v-2h2v2h2v-2h2c1.1 0 2-.9 2-2v-2h2v-2h-2v-2h2zm-4 6H7V7h10v10z" + }, + "children": [] + }] +}; +exports.ic_memory = ic_memory; \ No newline at end of file diff --git a/dist/md/ic_memory_outline.js b/dist/md/ic_memory_outline.js new file mode 100644 index 000000000..c6e92cf78 --- /dev/null +++ b/dist/md/ic_memory_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_memory_outline = void 0; +var ic_memory_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 9H9v6h6V9zm-2 4h-2v-2h2v2zm8-2V9h-2V7c0-1.1-.9-2-2-2h-2V3h-2v2h-2V3H9v2H7c-1.1 0-2 .9-2 2v2H3v2h2v2H3v2h2v2c0 1.1.9 2 2 2h2v2h2v-2h2v2h2v-2h2c1.1 0 2-.9 2-2v-2h2v-2h-2v-2h2zm-4 6H7V7h10v10z" + }, + "children": [] + }] +}; +exports.ic_memory_outline = ic_memory_outline; \ No newline at end of file diff --git a/dist/md/ic_memory_twotone.js b/dist/md/ic_memory_twotone.js new file mode 100644 index 000000000..e9326c35c --- /dev/null +++ b/dist/md/ic_memory_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_memory_twotone = void 0; +var ic_memory_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 17h10V7H7v10zm2-8h6v6H9V9z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 11V9h-2V7c0-1.1-.9-2-2-2h-2V3h-2v2h-2V3H9v2H7c-1.1 0-2 .9-2 2v2H3v2h2v2H3v2h2v2c0 1.1.9 2 2 2h2v2h2v-2h2v2h2v-2h2c1.1 0 2-.9 2-2v-2h2v-2h-2v-2h2zm-4 6H7V7h10v10zm-2-8H9v6h6V9zm-2 4h-2v-2h2v2z" + }, + "children": [] + }] +}; +exports.ic_memory_twotone = ic_memory_twotone; \ No newline at end of file diff --git a/dist/md/ic_menu.js b/dist/md/ic_menu.js new file mode 100644 index 000000000..e9844de81 --- /dev/null +++ b/dist/md/ic_menu.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_menu = void 0; +var ic_menu = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z" + }, + "children": [] + }] +}; +exports.ic_menu = ic_menu; \ No newline at end of file diff --git a/dist/md/ic_menu_book.js b/dist/md/ic_menu_book.js new file mode 100644 index 000000000..8dc9d1a30 --- /dev/null +++ b/dist/md/ic_menu_book.js @@ -0,0 +1,107 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_menu_book = void 0; +var ic_menu_book = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M21,5c-1.11-0.35-2.33-0.5-3.5-0.5c-1.95,0-4.05,0.4-5.5,1.5c-1.45-1.1-3.55-1.5-5.5-1.5S2.45,4.9,1,6v14.65 c0,0.25,0.25,0.5,0.5,0.5c0.1,0,0.15-0.05,0.25-0.05C3.1,20.45,5.05,20,6.5,20c1.95,0,4.05,0.4,5.5,1.5c1.35-0.85,3.8-1.5,5.5-1.5 c1.65,0,3.35,0.3,4.75,1.05c0.1,0.05,0.15,0.05,0.25,0.05c0.25,0,0.5-0.25,0.5-0.5V6C22.4,5.55,21.75,5.25,21,5z M21,18.5 c-1.1-0.35-2.3-0.5-3.5-0.5c-1.7,0-4.15,0.65-5.5,1.5V8c1.35-0.85,3.8-1.5,5.5-1.5c1.2,0,2.4,0.15,3.5,0.5V18.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21,5c-1.11-0.35-2.33-0.5-3.5-0.5c-1.95,0-4.05,0.4-5.5,1.5c-1.45-1.1-3.55-1.5-5.5-1.5S2.45,4.9,1,6v14.65 c0,0.25,0.25,0.5,0.5,0.5c0.1,0,0.15-0.05,0.25-0.05C3.1,20.45,5.05,20,6.5,20c1.95,0,4.05,0.4,5.5,1.5c1.35-0.85,3.8-1.5,5.5-1.5 c1.65,0,3.35,0.3,4.75,1.05c0.1,0.05,0.15,0.05,0.25,0.05c0.25,0,0.5-0.25,0.5-0.5V6C22.4,5.55,21.75,5.25,21,5z M21,18.5 c-1.1-0.35-2.3-0.5-3.5-0.5c-1.7,0-4.15,0.65-5.5,1.5V8c1.35-0.85,3.8-1.5,5.5-1.5c1.2,0,2.4,0.15,3.5,0.5V18.5z" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M17.5,10.5c0.88,0,1.73,0.09,2.5,0.26V9.24C19.21,9.09,18.36,9,17.5,9c-1.7,0-3.24,0.29-4.5,0.83v1.66 C14.13,10.85,15.7,10.5,17.5,10.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17.5,10.5c0.88,0,1.73,0.09,2.5,0.26V9.24C19.21,9.09,18.36,9,17.5,9c-1.7,0-3.24,0.29-4.5,0.83v1.66 C14.13,10.85,15.7,10.5,17.5,10.5z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M13,12.49v1.66c1.13-0.64,2.7-0.99,4.5-0.99c0.88,0,1.73,0.09,2.5,0.26V11.9c-0.79-0.15-1.64-0.24-2.5-0.24 C15.8,11.66,14.26,11.96,13,12.49z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M13,12.49v1.66c1.13-0.64,2.7-0.99,4.5-0.99c0.88,0,1.73,0.09,2.5,0.26V11.9c-0.79-0.15-1.64-0.24-2.5-0.24 C15.8,11.66,14.26,11.96,13,12.49z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M17.5,14.33c-1.7,0-3.24,0.29-4.5,0.83v1.66c1.13-0.64,2.7-0.99,4.5-0.99c0.88,0,1.73,0.09,2.5,0.26v-1.52 C19.21,14.41,18.36,14.33,17.5,14.33z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17.5,14.33c-1.7,0-3.24,0.29-4.5,0.83v1.66c1.13-0.64,2.7-0.99,4.5-0.99c0.88,0,1.73,0.09,2.5,0.26v-1.52 C19.21,14.41,18.36,14.33,17.5,14.33z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_menu_book = ic_menu_book; \ No newline at end of file diff --git a/dist/md/ic_menu_book_outline.js b/dist/md/ic_menu_book_outline.js new file mode 100644 index 000000000..e310797cc --- /dev/null +++ b/dist/md/ic_menu_book_outline.js @@ -0,0 +1,107 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_menu_book_outline = void 0; +var ic_menu_book_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M21,5c-1.11-0.35-2.33-0.5-3.5-0.5c-1.95,0-4.05,0.4-5.5,1.5c-1.45-1.1-3.55-1.5-5.5-1.5S2.45,4.9,1,6v14.65 c0,0.25,0.25,0.5,0.5,0.5c0.1,0,0.15-0.05,0.25-0.05C3.1,20.45,5.05,20,6.5,20c1.95,0,4.05,0.4,5.5,1.5c1.35-0.85,3.8-1.5,5.5-1.5 c1.65,0,3.35,0.3,4.75,1.05c0.1,0.05,0.15,0.05,0.25,0.05c0.25,0,0.5-0.25,0.5-0.5V6C22.4,5.55,21.75,5.25,21,5z M21,18.5 c-1.1-0.35-2.3-0.5-3.5-0.5c-1.7,0-4.15,0.65-5.5,1.5V8c1.35-0.85,3.8-1.5,5.5-1.5c1.2,0,2.4,0.15,3.5,0.5V18.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21,5c-1.11-0.35-2.33-0.5-3.5-0.5c-1.95,0-4.05,0.4-5.5,1.5c-1.45-1.1-3.55-1.5-5.5-1.5S2.45,4.9,1,6v14.65 c0,0.25,0.25,0.5,0.5,0.5c0.1,0,0.15-0.05,0.25-0.05C3.1,20.45,5.05,20,6.5,20c1.95,0,4.05,0.4,5.5,1.5c1.35-0.85,3.8-1.5,5.5-1.5 c1.65,0,3.35,0.3,4.75,1.05c0.1,0.05,0.15,0.05,0.25,0.05c0.25,0,0.5-0.25,0.5-0.5V6C22.4,5.55,21.75,5.25,21,5z M21,18.5 c-1.1-0.35-2.3-0.5-3.5-0.5c-1.7,0-4.15,0.65-5.5,1.5V8c1.35-0.85,3.8-1.5,5.5-1.5c1.2,0,2.4,0.15,3.5,0.5V18.5z" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M17.5,10.5c0.88,0,1.73,0.09,2.5,0.26V9.24C19.21,9.09,18.36,9,17.5,9c-1.7,0-3.24,0.29-4.5,0.83v1.66 C14.13,10.85,15.7,10.5,17.5,10.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17.5,10.5c0.88,0,1.73,0.09,2.5,0.26V9.24C19.21,9.09,18.36,9,17.5,9c-1.7,0-3.24,0.29-4.5,0.83v1.66 C14.13,10.85,15.7,10.5,17.5,10.5z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M13,12.49v1.66c1.13-0.64,2.7-0.99,4.5-0.99c0.88,0,1.73,0.09,2.5,0.26V11.9c-0.79-0.15-1.64-0.24-2.5-0.24 C15.8,11.66,14.26,11.96,13,12.49z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M13,12.49v1.66c1.13-0.64,2.7-0.99,4.5-0.99c0.88,0,1.73,0.09,2.5,0.26V11.9c-0.79-0.15-1.64-0.24-2.5-0.24 C15.8,11.66,14.26,11.96,13,12.49z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M17.5,14.33c-1.7,0-3.24,0.29-4.5,0.83v1.66c1.13-0.64,2.7-0.99,4.5-0.99c0.88,0,1.73,0.09,2.5,0.26v-1.52 C19.21,14.41,18.36,14.33,17.5,14.33z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17.5,14.33c-1.7,0-3.24,0.29-4.5,0.83v1.66c1.13-0.64,2.7-0.99,4.5-0.99c0.88,0,1.73,0.09,2.5,0.26v-1.52 C19.21,14.41,18.36,14.33,17.5,14.33z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_menu_book_outline = ic_menu_book_outline; \ No newline at end of file diff --git a/dist/md/ic_menu_book_twotone.js b/dist/md/ic_menu_book_twotone.js new file mode 100644 index 000000000..5c3642b7b --- /dev/null +++ b/dist/md/ic_menu_book_twotone.js @@ -0,0 +1,121 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_menu_book_twotone = void 0; +var ic_menu_book_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M21,5c-1.11-0.35-2.33-0.5-3.5-0.5c-1.95,0-4.05,0.4-5.5,1.5c-1.45-1.1-3.55-1.5-5.5-1.5S2.45,4.9,1,6v14.65 c0,0.25,0.25,0.5,0.5,0.5c0.1,0,0.15-0.05,0.25-0.05C3.1,20.45,5.05,20,6.5,20c1.95,0,4.05,0.4,5.5,1.5c1.35-0.85,3.8-1.5,5.5-1.5 c1.65,0,3.35,0.3,4.75,1.05c0.1,0.05,0.15,0.05,0.25,0.05c0.25,0,0.5-0.25,0.5-0.5V6C22.4,5.55,21.75,5.25,21,5z M3,18.5V7 c1.1-0.35,2.3-0.5,3.5-0.5c1.34,0,3.13,0.41,4.5,0.99v11.5C9.63,18.41,7.84,18,6.5,18C5.3,18,4.1,18.15,3,18.5z M21,18.5 c-1.1-0.35-2.3-0.5-3.5-0.5c-1.34,0-3.13,0.41-4.5,0.99V7.49c1.37-0.59,3.16-0.99,4.5-0.99c1.2,0,2.4,0.15,3.5,0.5V18.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21,5c-1.11-0.35-2.33-0.5-3.5-0.5c-1.95,0-4.05,0.4-5.5,1.5c-1.45-1.1-3.55-1.5-5.5-1.5S2.45,4.9,1,6v14.65 c0,0.25,0.25,0.5,0.5,0.5c0.1,0,0.15-0.05,0.25-0.05C3.1,20.45,5.05,20,6.5,20c1.95,0,4.05,0.4,5.5,1.5c1.35-0.85,3.8-1.5,5.5-1.5 c1.65,0,3.35,0.3,4.75,1.05c0.1,0.05,0.15,0.05,0.25,0.05c0.25,0,0.5-0.25,0.5-0.5V6C22.4,5.55,21.75,5.25,21,5z M3,18.5V7 c1.1-0.35,2.3-0.5,3.5-0.5c1.34,0,3.13,0.41,4.5,0.99v11.5C9.63,18.41,7.84,18,6.5,18C5.3,18,4.1,18.15,3,18.5z M21,18.5 c-1.1-0.35-2.3-0.5-3.5-0.5c-1.34,0-3.13,0.41-4.5,0.99V7.49c1.37-0.59,3.16-0.99,4.5-0.99c1.2,0,2.4,0.15,3.5,0.5V18.5z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M11,7.49C9.63,6.91,7.84,6.5,6.5,6.5C5.3,6.5,4.1,6.65,3,7v11.5C4.1,18.15,5.3,18,6.5,18 c1.34,0,3.13,0.41,4.5,0.99V7.49z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M11,7.49C9.63,6.91,7.84,6.5,6.5,6.5C5.3,6.5,4.1,6.65,3,7v11.5C4.1,18.15,5.3,18,6.5,18 c1.34,0,3.13,0.41,4.5,0.99V7.49z", + "opacity": ".3" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M17.5,10.5c0.88,0,1.73,0.09,2.5,0.26V9.24C19.21,9.09,18.36,9,17.5,9c-1.28,0-2.46,0.16-3.5,0.47v1.57 C14.99,10.69,16.18,10.5,17.5,10.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17.5,10.5c0.88,0,1.73,0.09,2.5,0.26V9.24C19.21,9.09,18.36,9,17.5,9c-1.28,0-2.46,0.16-3.5,0.47v1.57 C14.99,10.69,16.18,10.5,17.5,10.5z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M17.5,13.16c0.88,0,1.73,0.09,2.5,0.26V11.9c-0.79-0.15-1.64-0.24-2.5-0.24c-1.28,0-2.46,0.16-3.5,0.47v1.57 C14.99,13.36,16.18,13.16,17.5,13.16z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17.5,13.16c0.88,0,1.73,0.09,2.5,0.26V11.9c-0.79-0.15-1.64-0.24-2.5-0.24c-1.28,0-2.46,0.16-3.5,0.47v1.57 C14.99,13.36,16.18,13.16,17.5,13.16z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M17.5,15.83c0.88,0,1.73,0.09,2.5,0.26v-1.52c-0.79-0.15-1.64-0.24-2.5-0.24c-1.28,0-2.46,0.16-3.5,0.47v1.57 C14.99,16.02,16.18,15.83,17.5,15.83z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17.5,15.83c0.88,0,1.73,0.09,2.5,0.26v-1.52c-0.79-0.15-1.64-0.24-2.5-0.24c-1.28,0-2.46,0.16-3.5,0.47v1.57 C14.99,16.02,16.18,15.83,17.5,15.83z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_menu_book_twotone = ic_menu_book_twotone; \ No newline at end of file diff --git a/dist/md/ic_menu_open.js b/dist/md/ic_menu_open.js new file mode 100644 index 000000000..8f1de2acd --- /dev/null +++ b/dist/md/ic_menu_open.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_menu_open = void 0; +var ic_menu_open = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 18h13v-2H3v2zm0-5h10v-2H3v2zm0-7v2h13V6H3zm18 9.59L17.42 12 21 8.41 19.59 7l-5 5 5 5L21 15.59z" + }, + "children": [] + }] +}; +exports.ic_menu_open = ic_menu_open; \ No newline at end of file diff --git a/dist/md/ic_menu_open_outline.js b/dist/md/ic_menu_open_outline.js new file mode 100644 index 000000000..ce278bd5d --- /dev/null +++ b/dist/md/ic_menu_open_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_menu_open_outline = void 0; +var ic_menu_open_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0,0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3,18h13v-2H3V18z M3,13h10v-2H3V13z M3,6v2h13V6H3z M21,15.59L17.42,12L21,8.41L19.59,7l-5,5l5,5L21,15.59z" + }, + "children": [] + }] +}; +exports.ic_menu_open_outline = ic_menu_open_outline; \ No newline at end of file diff --git a/dist/md/ic_menu_open_twotone.js b/dist/md/ic_menu_open_twotone.js new file mode 100644 index 000000000..726d02c94 --- /dev/null +++ b/dist/md/ic_menu_open_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_menu_open_twotone = void 0; +var ic_menu_open_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0,0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3,18h13v-2H3V18z M3,13h10v-2H3V13z M3,6v2h13V6H3z M21,15.59L17.42,12L21,8.41L19.59,7l-5,5l5,5L21,15.59z" + }, + "children": [] + }] +}; +exports.ic_menu_open_twotone = ic_menu_open_twotone; \ No newline at end of file diff --git a/dist/md/ic_menu_outline.js b/dist/md/ic_menu_outline.js new file mode 100644 index 000000000..33dc3b706 --- /dev/null +++ b/dist/md/ic_menu_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_menu_outline = void 0; +var ic_menu_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z" + }, + "children": [] + }] +}; +exports.ic_menu_outline = ic_menu_outline; \ No newline at end of file diff --git a/dist/md/ic_menu_twotone.js b/dist/md/ic_menu_twotone.js new file mode 100644 index 000000000..3ae83fce7 --- /dev/null +++ b/dist/md/ic_menu_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_menu_twotone = void 0; +var ic_menu_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z" + }, + "children": [] + }] +}; +exports.ic_menu_twotone = ic_menu_twotone; \ No newline at end of file diff --git a/dist/md/ic_merge_type.js b/dist/md/ic_merge_type.js new file mode 100644 index 000000000..f231a8907 --- /dev/null +++ b/dist/md/ic_merge_type.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_merge_type = void 0; +var ic_merge_type = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 20.41L18.41 19 15 15.59 13.59 17 17 20.41zM7.5 8H11v5.59L5.59 19 7 20.41l6-6V8h3.5L12 3.5 7.5 8z" + }, + "children": [] + }] +}; +exports.ic_merge_type = ic_merge_type; \ No newline at end of file diff --git a/dist/md/ic_merge_type_outline.js b/dist/md/ic_merge_type_outline.js new file mode 100644 index 000000000..3393029cc --- /dev/null +++ b/dist/md/ic_merge_type_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_merge_type_outline = void 0; +var ic_merge_type_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 20.41L18.41 19 15 15.59 13.59 17 17 20.41zM7.5 8H11v5.59L5.59 19 7 20.41l6-6V8h3.5L12 3.5 7.5 8z" + }, + "children": [] + }] +}; +exports.ic_merge_type_outline = ic_merge_type_outline; \ No newline at end of file diff --git a/dist/md/ic_merge_type_twotone.js b/dist/md/ic_merge_type_twotone.js new file mode 100644 index 000000000..a93922902 --- /dev/null +++ b/dist/md/ic_merge_type_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_merge_type_twotone = void 0; +var ic_merge_type_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5.59 19L7 20.41l6-6V8h3.5L12 3.5 7.5 8H11v5.59zm11.407 1.41l-3.408-3.407 1.4-1.407 3.41 3.408z" + }, + "children": [] + }] +}; +exports.ic_merge_type_twotone = ic_merge_type_twotone; \ No newline at end of file diff --git a/dist/md/ic_message.js b/dist/md/ic_message.js new file mode 100644 index 000000000..65157414f --- /dev/null +++ b/dist/md/ic_message.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_message = void 0; +var ic_message = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-2 12H6v-2h12v2zm0-3H6V9h12v2zm0-3H6V6h12v2z" + }, + "children": [] + }] +}; +exports.ic_message = ic_message; \ No newline at end of file diff --git a/dist/md/ic_message_outline.js b/dist/md/ic_message_outline.js new file mode 100644 index 000000000..7cda4251c --- /dev/null +++ b/dist/md/ic_message_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_message_outline = void 0; +var ic_message_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 4h16v12H5.17L4 17.17V4m0-2c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H4zm2 10h12v2H6v-2zm0-3h12v2H6V9zm0-3h12v2H6V6z" + }, + "children": [] + }] +}; +exports.ic_message_outline = ic_message_outline; \ No newline at end of file diff --git a/dist/md/ic_message_twotone.js b/dist/md/ic_message_twotone.js new file mode 100644 index 000000000..44f0b05b8 --- /dev/null +++ b/dist/md/ic_message_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_message_twotone = void 0; +var ic_message_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 4H4v13.17L5.17 16H20V4zm-2 10H6v-2h12v2zm0-3H6V9h12v2zm0-3H6V6h12v2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 18c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14zm-16-.83V4h16v12H5.17L4 17.17zM6 12h12v2H6zm0-3h12v2H6zm0-3h12v2H6z" + }, + "children": [] + }] +}; +exports.ic_message_twotone = ic_message_twotone; \ No newline at end of file diff --git a/dist/md/ic_mic.js b/dist/md/ic_mic.js new file mode 100644 index 000000000..23af89496 --- /dev/null +++ b/dist/md/ic_mic.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_mic = void 0; +var ic_mic = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 14c1.66 0 2.99-1.34 2.99-3L15 5c0-1.66-1.34-3-3-3S9 3.34 9 5v6c0 1.66 1.34 3 3 3zm5.3-3c0 3-2.54 5.1-5.3 5.1S6.7 14 6.7 11H5c0 3.41 2.72 6.23 6 6.72V21h2v-3.28c3.28-.48 6-3.3 6-6.72h-1.7z" + }, + "children": [] + }] +}; +exports.ic_mic = ic_mic; \ No newline at end of file diff --git a/dist/md/ic_mic_external_off.js b/dist/md/ic_mic_external_off.js new file mode 100644 index 000000000..4de5a6a89 --- /dev/null +++ b/dist/md/ic_mic_external_off.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_mic_external_off = void 0; +var ic_mic_external_off = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21.19 21.19L2.81 2.81 1.39 4.22 5.17 8H4l1 10h1c0 2.21 1.79 4 4 4s4-1.79 4-4v-1.17l5.78 5.78 1.41-1.42zM12 18c0 1.1-.9 2-2 2s-2-.9-2-2h1l.56-5.61L12 14.83V18zm2-12v5.17l-2-2V6c0-2.21 1.79-4 4-4s4 1.79 4 4v11.17l-2-2V6c0-1.1-.9-2-2-2s-2 .9-2 2zm-4-1c0 .62-.2 1.18-.52 1.66L5.33 2.51C5.81 2.19 6.38 2 7 2c1.66 0 3 1.34 3 3z" + }, + "children": [] + }] +}; +exports.ic_mic_external_off = ic_mic_external_off; \ No newline at end of file diff --git a/dist/md/ic_mic_external_on.js b/dist/md/ic_mic_external_on.js new file mode 100644 index 000000000..934bc297e --- /dev/null +++ b/dist/md/ic_mic_external_on.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_mic_external_on = void 0; +var ic_mic_external_on = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9.22 7H4.78C4.3 6.47 4 5.77 4 5c0-1.66 1.34-3 3-3s3 1.34 3 3c0 .77-.3 1.47-.78 2zM16 2c2.21 0 4 1.79 4 4v16h-2V6c0-1.1-.9-2-2-2s-2 .9-2 2v12c0 2.21-1.79 4-4 4s-4-1.79-4-4H5L4 8h6L9 18H8c0 1.1.9 2 2 2s2-.9 2-2V6c0-2.21 1.79-4 4-4z" + }, + "children": [] + }] +}; +exports.ic_mic_external_on = ic_mic_external_on; \ No newline at end of file diff --git a/dist/md/ic_mic_none.js b/dist/md/ic_mic_none.js new file mode 100644 index 000000000..628a26a9b --- /dev/null +++ b/dist/md/ic_mic_none.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_mic_none = void 0; +var ic_mic_none = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 14c1.66 0 2.99-1.34 2.99-3L15 5c0-1.66-1.34-3-3-3S9 3.34 9 5v6c0 1.66 1.34 3 3 3zm-1.2-9.1c0-.66.54-1.2 1.2-1.2.66 0 1.2.54 1.2 1.2l-.01 6.2c0 .66-.53 1.2-1.19 1.2-.66 0-1.2-.54-1.2-1.2V4.9zm6.5 6.1c0 3-2.54 5.1-5.3 5.1S6.7 14 6.7 11H5c0 3.41 2.72 6.23 6 6.72V21h2v-3.28c3.28-.48 6-3.3 6-6.72h-1.7z" + }, + "children": [] + }] +}; +exports.ic_mic_none = ic_mic_none; \ No newline at end of file diff --git a/dist/md/ic_mic_none_outline.js b/dist/md/ic_mic_none_outline.js new file mode 100644 index 000000000..be637b778 --- /dev/null +++ b/dist/md/ic_mic_none_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_mic_none_outline = void 0; +var ic_mic_none_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 14c1.66 0 3-1.34 3-3V5c0-1.66-1.34-3-3-3S9 3.34 9 5v6c0 1.66 1.34 3 3 3zm-1-9c0-.55.45-1 1-1s1 .45 1 1v6c0 .55-.45 1-1 1s-1-.45-1-1V5zm6 6c0 2.76-2.24 5-5 5s-5-2.24-5-5H5c0 3.53 2.61 6.43 6 6.92V21h2v-3.08c3.39-.49 6-3.39 6-6.92h-2z" + }, + "children": [] + }] +}; +exports.ic_mic_none_outline = ic_mic_none_outline; \ No newline at end of file diff --git a/dist/md/ic_mic_none_twotone.js b/dist/md/ic_mic_none_twotone.js new file mode 100644 index 000000000..77f9cb150 --- /dev/null +++ b/dist/md/ic_mic_none_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_mic_none_twotone = void 0; +var ic_mic_none_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 12c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1s-1 .45-1 1v6c0 .55.45 1 1 1z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 14c1.66 0 3-1.34 3-3V5c0-1.66-1.34-3-3-3S9 3.34 9 5v6c0 1.66 1.34 3 3 3zm-1-9c0-.55.45-1 1-1s1 .45 1 1v6c0 .55-.45 1-1 1s-1-.45-1-1V5zm6 6c0 2.76-2.24 5-5 5s-5-2.24-5-5H5c0 3.53 2.61 6.43 6 6.92V21h2v-3.08c3.39-.49 6-3.39 6-6.92h-2z" + }, + "children": [] + }] +}; +exports.ic_mic_none_twotone = ic_mic_none_twotone; \ No newline at end of file diff --git a/dist/md/ic_mic_off.js b/dist/md/ic_mic_off.js new file mode 100644 index 000000000..652493a2e --- /dev/null +++ b/dist/md/ic_mic_off.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_mic_off = void 0; +var ic_mic_off = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0zm0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 11h-1.7c0 .74-.16 1.43-.43 2.05l1.23 1.23c.56-.98.9-2.09.9-3.28zm-4.02.17c0-.06.02-.11.02-.17V5c0-1.66-1.34-3-3-3S9 3.34 9 5v.18l5.98 5.99zM4.27 3L3 4.27l6.01 6.01V11c0 1.66 1.33 3 2.99 3 .22 0 .44-.03.65-.08l1.66 1.66c-.71.33-1.5.52-2.31.52-2.76 0-5.3-2.1-5.3-5.1H5c0 3.41 2.72 6.23 6 6.72V21h2v-3.28c.91-.13 1.77-.45 2.54-.9L19.73 21 21 19.73 4.27 3z" + }, + "children": [] + }] +}; +exports.ic_mic_off = ic_mic_off; \ No newline at end of file diff --git a/dist/md/ic_mic_off_outline.js b/dist/md/ic_mic_off_outline.js new file mode 100644 index 000000000..845b92cbf --- /dev/null +++ b/dist/md/ic_mic_off_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_mic_off_outline = void 0; +var ic_mic_off_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10.8 4.9c0-.66.54-1.2 1.2-1.2s1.2.54 1.2 1.2l-.01 3.91L15 10.6V5c0-1.66-1.34-3-3-3-1.54 0-2.79 1.16-2.96 2.65l1.76 1.76V4.9zM19 11h-1.7c0 .58-.1 1.13-.27 1.64l1.27 1.27c.44-.88.7-1.87.7-2.91zM4.41 2.86L3 4.27l6 6V11c0 1.66 1.34 3 3 3 .23 0 .44-.03.65-.08l1.66 1.66c-.71.33-1.5.52-2.31.52-2.76 0-5.3-2.1-5.3-5.1H5c0 3.41 2.72 6.23 6 6.72V21h2v-3.28c.91-.13 1.77-.45 2.55-.9l4.2 4.2 1.41-1.41L4.41 2.86z" + }, + "children": [] + }] +}; +exports.ic_mic_off_outline = ic_mic_off_outline; \ No newline at end of file diff --git a/dist/md/ic_mic_off_twotone.js b/dist/md/ic_mic_off_twotone.js new file mode 100644 index 000000000..be92e254f --- /dev/null +++ b/dist/md/ic_mic_off_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_mic_off_twotone = void 0; +var ic_mic_off_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 3.7c-.66 0-1.2.54-1.2 1.2v1.51l2.39 2.39.01-3.9c0-.66-.54-1.2-1.2-1.2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 11h-1.7c0 .58-.1 1.13-.27 1.64l1.27 1.27c.44-.88.7-1.87.7-2.91zM4.41 2.86L3 4.27l6 6V11c0 1.66 1.34 3 3 3 .23 0 .44-.03.65-.08l1.66 1.66c-.71.33-1.5.52-2.31.52-2.76 0-5.3-2.1-5.3-5.1H5c0 3.41 2.72 6.23 6 6.72V21h2v-3.28c.91-.13 1.77-.45 2.55-.9l4.2 4.2 1.41-1.41L4.41 2.86zM10.8 4.9c0-.66.54-1.2 1.2-1.2s1.2.54 1.2 1.2l-.01 3.91L15 10.6V5c0-1.66-1.34-3-3-3-1.54 0-2.79 1.16-2.96 2.65l1.76 1.76V4.9z" + }, + "children": [] + }] +}; +exports.ic_mic_off_twotone = ic_mic_off_twotone; \ No newline at end of file diff --git a/dist/md/ic_mic_outline.js b/dist/md/ic_mic_outline.js new file mode 100644 index 000000000..6d44e85d9 --- /dev/null +++ b/dist/md/ic_mic_outline.js @@ -0,0 +1,107 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_mic_outline = void 0; +var ic_mic_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,14c1.66,0,3-1.34,3-3V5c0-1.66-1.34-3-3-3S9,3.34,9,5v6C9,12.66,10.34,14,12,14z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,14c1.66,0,3-1.34,3-3V5c0-1.66-1.34-3-3-3S9,3.34,9,5v6C9,12.66,10.34,14,12,14z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M17,11c0,2.76-2.24,5-5,5s-5-2.24-5-5H5c0,3.53,2.61,6.43,6,6.92V21h2v-3.08c3.39-0.49,6-3.39,6-6.92H17z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,11c0,2.76-2.24,5-5,5s-5-2.24-5-5H5c0,3.53,2.61,6.43,6,6.92V21h2v-3.08c3.39-0.49,6-3.39,6-6.92H17z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_mic_outline = ic_mic_outline; \ No newline at end of file diff --git a/dist/md/ic_mic_twotone.js b/dist/md/ic_mic_twotone.js new file mode 100644 index 000000000..19eb3fbc8 --- /dev/null +++ b/dist/md/ic_mic_twotone.js @@ -0,0 +1,121 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_mic_twotone = void 0; +var ic_mic_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,12c0.55,0,1-0.45,1-1V5c0-0.55-0.45-1-1-1s-1,0.45-1,1v6C11,11.55,11.45,12,12,12z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,12c0.55,0,1-0.45,1-1V5c0-0.55-0.45-1-1-1s-1,0.45-1,1v6C11,11.55,11.45,12,12,12z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M12,14c1.66,0,3-1.34,3-3V5c0-1.66-1.34-3-3-3S9,3.34,9,5v6C9,12.66,10.34,14,12,14z M11,5c0-0.55,0.45-1,1-1s1,0.45,1,1 v6c0,0.55-0.45,1-1,1s-1-0.45-1-1V5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,14c1.66,0,3-1.34,3-3V5c0-1.66-1.34-3-3-3S9,3.34,9,5v6C9,12.66,10.34,14,12,14z M11,5c0-0.55,0.45-1,1-1s1,0.45,1,1 v6c0,0.55-0.45,1-1,1s-1-0.45-1-1V5z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M17,11c0,2.76-2.24,5-5,5s-5-2.24-5-5H5c0,3.53,2.61,6.43,6,6.92V21h2v-3.08c3.39-0.49,6-3.39,6-6.92H17z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,11c0,2.76-2.24,5-5,5s-5-2.24-5-5H5c0,3.53,2.61,6.43,6,6.92V21h2v-3.08c3.39-0.49,6-3.39,6-6.92H17z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_mic_twotone = ic_mic_twotone; \ No newline at end of file diff --git a/dist/md/ic_microwave.js b/dist/md/ic_microwave.js new file mode 100644 index 000000000..77bea6ba5 --- /dev/null +++ b/dist/md/ic_microwave.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_microwave = void 0; +var ic_microwave = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6.8,10.61L5.37,9.19C5.73,8.79,6.59,8,7.75,8c0.8,0,1.39,0.39,1.81,0.67C9.87,8.88,10.07,9,10.25,9 c0.37,0,0.8-0.41,0.95-0.61l1.42,1.42c-0.36,0.4-1.22,1.19-2.37,1.19c-0.79,0-1.37-0.38-1.79-0.66C8.13,10.12,7.94,10,7.75,10 C7.38,10,6.95,10.41,6.8,10.61z M7.75,15c0.19,0,0.38,0.12,0.71,0.34c0.42,0.28,1,0.66,1.79,0.66c1.16,0,2.01-0.79,2.37-1.19 l-1.42-1.42c-0.15,0.2-0.59,0.61-0.95,0.61c-0.18,0-0.38-0.12-0.69-0.33C9.14,13.39,8.55,13,7.75,13c-1.16,0-2.02,0.79-2.38,1.19 l1.42,1.42C6.95,15.41,7.38,15,7.75,15z M22,6v12c0,1.1-0.9,2-2,2H4c-1.1,0-2-0.9-2-2V6c0-1.1,0.9-2,2-2h16C21.1,4,22,4.9,22,6z M14,6H4v12h10V6z M19,16c0-0.55-0.45-1-1-1c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1C18.55,17,19,16.55,19,16z M19,12 c0-0.55-0.45-1-1-1c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1C18.55,13,19,12.55,19,12z M19,7h-2v2h2V7z" + }, + "children": [] + }] +}; +exports.ic_microwave = ic_microwave; \ No newline at end of file diff --git a/dist/md/ic_microwave_outline.js b/dist/md/ic_microwave_outline.js new file mode 100644 index 000000000..ac991b2ed --- /dev/null +++ b/dist/md/ic_microwave_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_microwave_outline = void 0; +var ic_microwave_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M4,6h10v12H4V6z M20,18h-4V6h4V18z M19,9h-2V7h2V9z M18,13L18,13c-0.55,0-1-0.45-1-1v0c0-0.55,0.45-1,1-1h0c0.55,0,1,0.45,1,1v0C19,12.55,18.55,13,18,13z M18,17 L18,17c-0.55,0-1-0.45-1-1v0c0-0.55,0.45-1,1-1h0c0.55,0,1,0.45,1,1v0C19,16.55,18.55,17,18,17z M10.25,16 c-0.79,0-1.37-0.38-1.79-0.66C8.13,15.12,7.94,15,7.75,15c-0.37,0-0.8,0.41-0.95,0.61l-1.42-1.42C5.73,13.79,6.59,13,7.75,13 c0.8,0,1.39,0.39,1.81,0.67C9.87,13.88,10.07,14,10.25,14c0.37,0,0.8-0.41,0.95-0.61l1.42,1.42C12.26,15.21,11.41,16,10.25,16z M10.25,11c-0.79,0-1.37-0.38-1.79-0.66C8.13,10.12,7.94,10,7.75,10c-0.37,0-0.8,0.41-0.95,0.61L5.37,9.19C5.73,8.79,6.59,8,7.75,8 c0.8,0,1.39,0.39,1.81,0.67C9.87,8.88,10.07,9,10.25,9c0.37,0,0.8-0.41,0.95-0.61l1.42,1.42C12.26,10.21,11.41,11,10.25,11z" + }, + "children": [] + }] +}; +exports.ic_microwave_outline = ic_microwave_outline; \ No newline at end of file diff --git a/dist/md/ic_microwave_twotone.js b/dist/md/ic_microwave_twotone.js new file mode 100644 index 000000000..27cba37f5 --- /dev/null +++ b/dist/md/ic_microwave_twotone.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_microwave_twotone = void 0; +var ic_microwave_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4,18h10V6H4V18z M7.75,8c0.8,0,1.39,0.39,1.81,0.67C9.87,8.88,10.07,9,10.25,9c0.37,0,0.8-0.41,0.95-0.61 l1.42,1.42c-0.36,0.4-1.22,1.19-2.37,1.19c-0.79,0-1.37-0.38-1.79-0.66C8.13,10.12,7.94,10,7.75,10c-0.37,0-0.8,0.41-0.95,0.61 L5.37,9.19C5.73,8.79,6.59,8,7.75,8z M7.75,13c0.8,0,1.39,0.39,1.81,0.67C9.87,13.88,10.07,14,10.25,14c0.37,0,0.8-0.41,0.95-0.61 l1.42,1.42c-0.36,0.4-1.22,1.19-2.37,1.19c-0.79,0-1.37-0.38-1.79-0.66C8.13,15.12,7.94,15,7.75,15c-0.37,0-0.8,0.41-0.95,0.61 l-1.42-1.42C5.73,13.79,6.59,13,7.75,13z M16,6v12h4V6H16z M18,17c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1 C19,16.55,18.55,17,18,17z M18,13c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1C19,12.55,18.55,13,18,13z M19,9h-2V7h2V9 z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M4,6h10v12H4V6z M20,18h-4V6h4V18z M19,9h-2V7h2V9z M18,13L18,13c-0.55,0-1-0.45-1-1v0c0-0.55,0.45-1,1-1h0c0.55,0,1,0.45,1,1v0C19,12.55,18.55,13,18,13z M18,17 L18,17c-0.55,0-1-0.45-1-1v0c0-0.55,0.45-1,1-1h0c0.55,0,1,0.45,1,1v0C19,16.55,18.55,17,18,17z M10.25,16 c-0.79,0-1.37-0.38-1.79-0.66C8.13,15.12,7.94,15,7.75,15c-0.37,0-0.8,0.41-0.95,0.61l-1.42-1.42C5.73,13.79,6.59,13,7.75,13 c0.8,0,1.39,0.39,1.81,0.67C9.87,13.88,10.07,14,10.25,14c0.37,0,0.8-0.41,0.95-0.61l1.42,1.42C12.26,15.21,11.41,16,10.25,16z M10.25,11c-0.79,0-1.37-0.38-1.79-0.66C8.13,10.12,7.94,10,7.75,10c-0.37,0-0.8,0.41-0.95,0.61L5.37,9.19C5.73,8.79,6.59,8,7.75,8 c0.8,0,1.39,0.39,1.81,0.67C9.87,8.88,10.07,9,10.25,9c0.37,0,0.8-0.41,0.95-0.61l1.42,1.42C12.26,10.21,11.41,11,10.25,11z" + }, + "children": [] + }] +}; +exports.ic_microwave_twotone = ic_microwave_twotone; \ No newline at end of file diff --git a/dist/md/ic_military_tech.js b/dist/md/ic_military_tech.js new file mode 100644 index 000000000..ff2d4ce68 --- /dev/null +++ b/dist/md/ic_military_tech.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_military_tech = void 0; +var ic_military_tech = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,10.43V2H7v8.43c0,0.35,0.18,0.68,0.49,0.86l4.18,2.51l-0.99,2.34l-3.41,0.29l2.59,2.24L9.07,22L12,20.23L14.93,22 l-0.78-3.33l2.59-2.24l-3.41-0.29l-0.99-2.34l4.18-2.51C16.82,11.11,17,10.79,17,10.43z M13,12.23l-1,0.6l-1-0.6V3h2V12.23z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,10.43V2H7v8.43c0,0.35,0.18,0.68,0.49,0.86l4.18,2.51l-0.99,2.34l-3.41,0.29l2.59,2.24L9.07,22L12,20.23L14.93,22 l-0.78-3.33l2.59-2.24l-3.41-0.29l-0.99-2.34l4.18-2.51C16.82,11.11,17,10.79,17,10.43z M13,12.23l-1,0.6l-1-0.6V3h2V12.23z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_military_tech = ic_military_tech; \ No newline at end of file diff --git a/dist/md/ic_military_tech_outline.js b/dist/md/ic_military_tech_outline.js new file mode 100644 index 000000000..f91777cb6 --- /dev/null +++ b/dist/md/ic_military_tech_outline.js @@ -0,0 +1,55 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_military_tech_outline = void 0; +var ic_military_tech_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,10.43V2H7v8.43c0,0.35,0.18,0.68,0.49,0.86l4.18,2.51l-0.99,2.34l-3.41,0.29l2.59,2.24L9.07,22L12,20.23L14.93,22 l-0.78-3.33l2.59-2.24l-3.41-0.29l-0.99-2.34l4.18-2.51C16.82,11.11,17,10.79,17,10.43z M11,11.07l-2-1.2V4h2V11.07z M15,9.87 l-2,1.2V4h2V9.87z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,10.43V2H7v8.43c0,0.35,0.18,0.68,0.49,0.86l4.18,2.51l-0.99,2.34l-3.41,0.29l2.59,2.24L9.07,22L12,20.23L14.93,22 l-0.78-3.33l2.59-2.24l-3.41-0.29l-0.99-2.34l4.18-2.51C16.82,11.11,17,10.79,17,10.43z M11,11.07l-2-1.2V4h2V11.07z M15,9.87 l-2,1.2V4h2V9.87z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_military_tech_outline = ic_military_tech_outline; \ No newline at end of file diff --git a/dist/md/ic_military_tech_twotone.js b/dist/md/ic_military_tech_twotone.js new file mode 100644 index 000000000..4d70329e1 --- /dev/null +++ b/dist/md/ic_military_tech_twotone.js @@ -0,0 +1,83 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_military_tech_twotone = void 0; +var ic_military_tech_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "opacity": ".3", + "points": "13,11.07 15,9.87 15,4 13,4" + }, + "children": [{ + "name": "polygon", + "attribs": { + "opacity": ".3", + "points": "13,11.07 15,9.87 15,4 13,4" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "opacity": ".3", + "points": "9,4 9,9.87 11,11.07 11,4" + }, + "children": [{ + "name": "polygon", + "attribs": { + "opacity": ".3", + "points": "9,4 9,9.87 11,11.07 11,4" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M17,10.43V2H7v8.43c0,0.35,0.18,0.68,0.49,0.86l4.18,2.51l-0.99,2.34l-3.41,0.29l2.59,2.24L9.07,22L12,20.23L14.93,22 l-0.78-3.33l2.59-2.24l-3.41-0.29l-0.99-2.34l4.18-2.51C16.82,11.11,17,10.79,17,10.43z M11,11.07l-2-1.2V4h2V11.07z M15,9.87 l-2,1.2V4h2V9.87z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,10.43V2H7v8.43c0,0.35,0.18,0.68,0.49,0.86l4.18,2.51l-0.99,2.34l-3.41,0.29l2.59,2.24L9.07,22L12,20.23L14.93,22 l-0.78-3.33l2.59-2.24l-3.41-0.29l-0.99-2.34l4.18-2.51C16.82,11.11,17,10.79,17,10.43z M11,11.07l-2-1.2V4h2V11.07z M15,9.87 l-2,1.2V4h2V9.87z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_military_tech_twotone = ic_military_tech_twotone; \ No newline at end of file diff --git a/dist/md/ic_minimize.js b/dist/md/ic_minimize.js new file mode 100644 index 000000000..a96f189d7 --- /dev/null +++ b/dist/md/ic_minimize.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_minimize = void 0; +var ic_minimize = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 19h12v2H6z" + }, + "children": [] + }] +}; +exports.ic_minimize = ic_minimize; \ No newline at end of file diff --git a/dist/md/ic_minimize_outline.js b/dist/md/ic_minimize_outline.js new file mode 100644 index 000000000..1671bb15f --- /dev/null +++ b/dist/md/ic_minimize_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_minimize_outline = void 0; +var ic_minimize_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 19h12v2H6v-2z" + }, + "children": [] + }] +}; +exports.ic_minimize_outline = ic_minimize_outline; \ No newline at end of file diff --git a/dist/md/ic_minimize_twotone.js b/dist/md/ic_minimize_twotone.js new file mode 100644 index 000000000..d28a6cc13 --- /dev/null +++ b/dist/md/ic_minimize_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_minimize_twotone = void 0; +var ic_minimize_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 19h12v2H6v-2z" + }, + "children": [] + }] +}; +exports.ic_minimize_twotone = ic_minimize_twotone; \ No newline at end of file diff --git a/dist/md/ic_miscellaneous_services.js b/dist/md/ic_miscellaneous_services.js new file mode 100644 index 000000000..c2ff5e808 --- /dev/null +++ b/dist/md/ic_miscellaneous_services.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_miscellaneous_services = void 0; +var ic_miscellaneous_services = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M14.17,13.71l1.4-2.42c0.09-0.15,0.05-0.34-0.08-0.45l-1.48-1.16c0.03-0.22,0.05-0.45,0.05-0.68s-0.02-0.46-0.05-0.69 l1.48-1.16c0.13-0.11,0.17-0.3,0.08-0.45l-1.4-2.42c-0.09-0.15-0.27-0.21-0.43-0.15L12,4.83c-0.36-0.28-0.75-0.51-1.18-0.69 l-0.26-1.85C10.53,2.13,10.38,2,10.21,2h-2.8C7.24,2,7.09,2.13,7.06,2.3L6.8,4.15C6.38,4.33,5.98,4.56,5.62,4.84l-1.74-0.7 c-0.16-0.06-0.34,0-0.43,0.15l-1.4,2.42C1.96,6.86,2,7.05,2.13,7.16l1.48,1.16C3.58,8.54,3.56,8.77,3.56,9s0.02,0.46,0.05,0.69 l-1.48,1.16C2,10.96,1.96,11.15,2.05,11.3l1.4,2.42c0.09,0.15,0.27,0.21,0.43,0.15l1.74-0.7c0.36,0.28,0.75,0.51,1.18,0.69 l0.26,1.85C7.09,15.87,7.24,16,7.41,16h2.8c0.17,0,0.32-0.13,0.35-0.3l0.26-1.85c0.42-0.18,0.82-0.41,1.18-0.69l1.74,0.7 C13.9,13.92,14.08,13.86,14.17,13.71z M8.81,11c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2C10.81,10.1,9.91,11,8.81,11z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14.17,13.71l1.4-2.42c0.09-0.15,0.05-0.34-0.08-0.45l-1.48-1.16c0.03-0.22,0.05-0.45,0.05-0.68s-0.02-0.46-0.05-0.69 l1.48-1.16c0.13-0.11,0.17-0.3,0.08-0.45l-1.4-2.42c-0.09-0.15-0.27-0.21-0.43-0.15L12,4.83c-0.36-0.28-0.75-0.51-1.18-0.69 l-0.26-1.85C10.53,2.13,10.38,2,10.21,2h-2.8C7.24,2,7.09,2.13,7.06,2.3L6.8,4.15C6.38,4.33,5.98,4.56,5.62,4.84l-1.74-0.7 c-0.16-0.06-0.34,0-0.43,0.15l-1.4,2.42C1.96,6.86,2,7.05,2.13,7.16l1.48,1.16C3.58,8.54,3.56,8.77,3.56,9s0.02,0.46,0.05,0.69 l-1.48,1.16C2,10.96,1.96,11.15,2.05,11.3l1.4,2.42c0.09,0.15,0.27,0.21,0.43,0.15l1.74-0.7c0.36,0.28,0.75,0.51,1.18,0.69 l0.26,1.85C7.09,15.87,7.24,16,7.41,16h2.8c0.17,0,0.32-0.13,0.35-0.3l0.26-1.85c0.42-0.18,0.82-0.41,1.18-0.69l1.74,0.7 C13.9,13.92,14.08,13.86,14.17,13.71z M8.81,11c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2C10.81,10.1,9.91,11,8.81,11z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M21.92,18.67l-0.96-0.74c0.02-0.14,0.04-0.29,0.04-0.44c0-0.15-0.01-0.3-0.04-0.44l0.95-0.74 c0.08-0.07,0.11-0.19,0.05-0.29l-0.9-1.55c-0.05-0.1-0.17-0.13-0.28-0.1l-1.11,0.45c-0.23-0.18-0.48-0.33-0.76-0.44l-0.17-1.18 C18.73,13.08,18.63,13,18.53,13h-1.79c-0.11,0-0.21,0.08-0.22,0.19l-0.17,1.18c-0.27,0.12-0.53,0.26-0.76,0.44l-1.11-0.45 c-0.1-0.04-0.22,0-0.28,0.1l-0.9,1.55c-0.05,0.1-0.04,0.22,0.05,0.29l0.95,0.74c-0.02,0.14-0.03,0.29-0.03,0.44 c0,0.15,0.01,0.3,0.03,0.44l-0.95,0.74c-0.08,0.07-0.11,0.19-0.05,0.29l0.9,1.55c0.05,0.1,0.17,0.13,0.28,0.1l1.11-0.45 c0.23,0.18,0.48,0.33,0.76,0.44l0.17,1.18c0.02,0.11,0.11,0.19,0.22,0.19h1.79c0.11,0,0.21-0.08,0.22-0.19l0.17-1.18 c0.27-0.12,0.53-0.26,0.75-0.44l1.12,0.45c0.1,0.04,0.22,0,0.28-0.1l0.9-1.55C22.03,18.86,22,18.74,21.92,18.67z M17.63,18.83 c-0.74,0-1.35-0.6-1.35-1.35s0.6-1.35,1.35-1.35s1.35,0.6,1.35,1.35S18.37,18.83,17.63,18.83z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21.92,18.67l-0.96-0.74c0.02-0.14,0.04-0.29,0.04-0.44c0-0.15-0.01-0.3-0.04-0.44l0.95-0.74 c0.08-0.07,0.11-0.19,0.05-0.29l-0.9-1.55c-0.05-0.1-0.17-0.13-0.28-0.1l-1.11,0.45c-0.23-0.18-0.48-0.33-0.76-0.44l-0.17-1.18 C18.73,13.08,18.63,13,18.53,13h-1.79c-0.11,0-0.21,0.08-0.22,0.19l-0.17,1.18c-0.27,0.12-0.53,0.26-0.76,0.44l-1.11-0.45 c-0.1-0.04-0.22,0-0.28,0.1l-0.9,1.55c-0.05,0.1-0.04,0.22,0.05,0.29l0.95,0.74c-0.02,0.14-0.03,0.29-0.03,0.44 c0,0.15,0.01,0.3,0.03,0.44l-0.95,0.74c-0.08,0.07-0.11,0.19-0.05,0.29l0.9,1.55c0.05,0.1,0.17,0.13,0.28,0.1l1.11-0.45 c0.23,0.18,0.48,0.33,0.76,0.44l0.17,1.18c0.02,0.11,0.11,0.19,0.22,0.19h1.79c0.11,0,0.21-0.08,0.22-0.19l0.17-1.18 c0.27-0.12,0.53-0.26,0.75-0.44l1.12,0.45c0.1,0.04,0.22,0,0.28-0.1l0.9-1.55C22.03,18.86,22,18.74,21.92,18.67z M17.63,18.83 c-0.74,0-1.35-0.6-1.35-1.35s0.6-1.35,1.35-1.35s1.35,0.6,1.35,1.35S18.37,18.83,17.63,18.83z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_miscellaneous_services = ic_miscellaneous_services; \ No newline at end of file diff --git a/dist/md/ic_miscellaneous_services_outline.js b/dist/md/ic_miscellaneous_services_outline.js new file mode 100644 index 000000000..39d52de9f --- /dev/null +++ b/dist/md/ic_miscellaneous_services_outline.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_miscellaneous_services_outline = void 0; +var ic_miscellaneous_services_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M14.17,13.71l1.4-2.42c0.09-0.15,0.05-0.34-0.08-0.45l-1.48-1.16c0.03-0.22,0.05-0.45,0.05-0.68s-0.02-0.46-0.05-0.69 l1.48-1.16c0.13-0.11,0.17-0.3,0.08-0.45l-1.4-2.42c-0.09-0.15-0.27-0.21-0.43-0.15L12,4.83c-0.36-0.28-0.75-0.51-1.18-0.69 l-0.26-1.85C10.53,2.13,10.38,2,10.21,2h-2.8C7.24,2,7.09,2.13,7.06,2.3L6.8,4.15C6.38,4.33,5.98,4.56,5.62,4.84l-1.74-0.7 c-0.16-0.06-0.34,0-0.43,0.15l-1.4,2.42C1.96,6.86,2,7.05,2.13,7.16l1.48,1.16C3.58,8.54,3.56,8.77,3.56,9s0.02,0.46,0.05,0.69 l-1.48,1.16C2,10.96,1.96,11.15,2.05,11.3l1.4,2.42c0.09,0.15,0.27,0.21,0.43,0.15l1.74-0.7c0.36,0.28,0.75,0.51,1.18,0.69 l0.26,1.85C7.09,15.87,7.24,16,7.41,16h2.8c0.17,0,0.32-0.13,0.35-0.3l0.26-1.85c0.42-0.18,0.82-0.41,1.18-0.69l1.74,0.7 C13.9,13.92,14.08,13.86,14.17,13.71z M8.81,11c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2C10.81,10.1,9.91,11,8.81,11z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14.17,13.71l1.4-2.42c0.09-0.15,0.05-0.34-0.08-0.45l-1.48-1.16c0.03-0.22,0.05-0.45,0.05-0.68s-0.02-0.46-0.05-0.69 l1.48-1.16c0.13-0.11,0.17-0.3,0.08-0.45l-1.4-2.42c-0.09-0.15-0.27-0.21-0.43-0.15L12,4.83c-0.36-0.28-0.75-0.51-1.18-0.69 l-0.26-1.85C10.53,2.13,10.38,2,10.21,2h-2.8C7.24,2,7.09,2.13,7.06,2.3L6.8,4.15C6.38,4.33,5.98,4.56,5.62,4.84l-1.74-0.7 c-0.16-0.06-0.34,0-0.43,0.15l-1.4,2.42C1.96,6.86,2,7.05,2.13,7.16l1.48,1.16C3.58,8.54,3.56,8.77,3.56,9s0.02,0.46,0.05,0.69 l-1.48,1.16C2,10.96,1.96,11.15,2.05,11.3l1.4,2.42c0.09,0.15,0.27,0.21,0.43,0.15l1.74-0.7c0.36,0.28,0.75,0.51,1.18,0.69 l0.26,1.85C7.09,15.87,7.24,16,7.41,16h2.8c0.17,0,0.32-0.13,0.35-0.3l0.26-1.85c0.42-0.18,0.82-0.41,1.18-0.69l1.74,0.7 C13.9,13.92,14.08,13.86,14.17,13.71z M8.81,11c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2C10.81,10.1,9.91,11,8.81,11z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M21.92,18.67l-0.96-0.74c0.02-0.14,0.04-0.29,0.04-0.44c0-0.15-0.01-0.3-0.04-0.44l0.95-0.74 c0.08-0.07,0.11-0.19,0.05-0.29l-0.9-1.55c-0.05-0.1-0.17-0.13-0.28-0.1l-1.11,0.45c-0.23-0.18-0.48-0.33-0.76-0.44l-0.17-1.18 C18.73,13.08,18.63,13,18.53,13h-1.79c-0.11,0-0.21,0.08-0.22,0.19l-0.17,1.18c-0.27,0.12-0.53,0.26-0.76,0.44l-1.11-0.45 c-0.1-0.04-0.22,0-0.28,0.1l-0.9,1.55c-0.05,0.1-0.04,0.22,0.05,0.29l0.95,0.74c-0.02,0.14-0.03,0.29-0.03,0.44 c0,0.15,0.01,0.3,0.03,0.44l-0.95,0.74c-0.08,0.07-0.11,0.19-0.05,0.29l0.9,1.55c0.05,0.1,0.17,0.13,0.28,0.1l1.11-0.45 c0.23,0.18,0.48,0.33,0.76,0.44l0.17,1.18c0.02,0.11,0.11,0.19,0.22,0.19h1.79c0.11,0,0.21-0.08,0.22-0.19l0.17-1.18 c0.27-0.12,0.53-0.26,0.75-0.44l1.12,0.45c0.1,0.04,0.22,0,0.28-0.1l0.9-1.55C22.03,18.86,22,18.74,21.92,18.67z M17.63,18.83 c-0.74,0-1.35-0.6-1.35-1.35s0.6-1.35,1.35-1.35s1.35,0.6,1.35,1.35S18.37,18.83,17.63,18.83z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21.92,18.67l-0.96-0.74c0.02-0.14,0.04-0.29,0.04-0.44c0-0.15-0.01-0.3-0.04-0.44l0.95-0.74 c0.08-0.07,0.11-0.19,0.05-0.29l-0.9-1.55c-0.05-0.1-0.17-0.13-0.28-0.1l-1.11,0.45c-0.23-0.18-0.48-0.33-0.76-0.44l-0.17-1.18 C18.73,13.08,18.63,13,18.53,13h-1.79c-0.11,0-0.21,0.08-0.22,0.19l-0.17,1.18c-0.27,0.12-0.53,0.26-0.76,0.44l-1.11-0.45 c-0.1-0.04-0.22,0-0.28,0.1l-0.9,1.55c-0.05,0.1-0.04,0.22,0.05,0.29l0.95,0.74c-0.02,0.14-0.03,0.29-0.03,0.44 c0,0.15,0.01,0.3,0.03,0.44l-0.95,0.74c-0.08,0.07-0.11,0.19-0.05,0.29l0.9,1.55c0.05,0.1,0.17,0.13,0.28,0.1l1.11-0.45 c0.23,0.18,0.48,0.33,0.76,0.44l0.17,1.18c0.02,0.11,0.11,0.19,0.22,0.19h1.79c0.11,0,0.21-0.08,0.22-0.19l0.17-1.18 c0.27-0.12,0.53-0.26,0.75-0.44l1.12,0.45c0.1,0.04,0.22,0,0.28-0.1l0.9-1.55C22.03,18.86,22,18.74,21.92,18.67z M17.63,18.83 c-0.74,0-1.35-0.6-1.35-1.35s0.6-1.35,1.35-1.35s1.35,0.6,1.35,1.35S18.37,18.83,17.63,18.83z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_miscellaneous_services_outline = ic_miscellaneous_services_outline; \ No newline at end of file diff --git a/dist/md/ic_miscellaneous_services_twotone.js b/dist/md/ic_miscellaneous_services_twotone.js new file mode 100644 index 000000000..d65ff87f8 --- /dev/null +++ b/dist/md/ic_miscellaneous_services_twotone.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_miscellaneous_services_twotone = void 0; +var ic_miscellaneous_services_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M14.17,13.71l1.4-2.42c0.09-0.15,0.05-0.34-0.08-0.45l-1.48-1.16c0.03-0.22,0.05-0.45,0.05-0.68s-0.02-0.46-0.05-0.69 l1.48-1.16c0.13-0.11,0.17-0.3,0.08-0.45l-1.4-2.42c-0.09-0.15-0.27-0.21-0.43-0.15L12,4.83c-0.36-0.28-0.75-0.51-1.18-0.69 l-0.26-1.85C10.53,2.13,10.38,2,10.21,2h-2.8C7.24,2,7.09,2.13,7.06,2.3L6.8,4.15C6.38,4.33,5.98,4.56,5.62,4.84l-1.74-0.7 c-0.16-0.06-0.34,0-0.43,0.15l-1.4,2.42C1.96,6.86,2,7.05,2.13,7.16l1.48,1.16C3.58,8.54,3.56,8.77,3.56,9s0.02,0.46,0.05,0.69 l-1.48,1.16C2,10.96,1.96,11.15,2.05,11.3l1.4,2.42c0.09,0.15,0.27,0.21,0.43,0.15l1.74-0.7c0.36,0.28,0.75,0.51,1.18,0.69 l0.26,1.85C7.09,15.87,7.24,16,7.41,16h2.8c0.17,0,0.32-0.13,0.35-0.3l0.26-1.85c0.42-0.18,0.82-0.41,1.18-0.69l1.74,0.7 C13.9,13.92,14.08,13.86,14.17,13.71z M8.81,11c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2C10.81,10.1,9.91,11,8.81,11z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14.17,13.71l1.4-2.42c0.09-0.15,0.05-0.34-0.08-0.45l-1.48-1.16c0.03-0.22,0.05-0.45,0.05-0.68s-0.02-0.46-0.05-0.69 l1.48-1.16c0.13-0.11,0.17-0.3,0.08-0.45l-1.4-2.42c-0.09-0.15-0.27-0.21-0.43-0.15L12,4.83c-0.36-0.28-0.75-0.51-1.18-0.69 l-0.26-1.85C10.53,2.13,10.38,2,10.21,2h-2.8C7.24,2,7.09,2.13,7.06,2.3L6.8,4.15C6.38,4.33,5.98,4.56,5.62,4.84l-1.74-0.7 c-0.16-0.06-0.34,0-0.43,0.15l-1.4,2.42C1.96,6.86,2,7.05,2.13,7.16l1.48,1.16C3.58,8.54,3.56,8.77,3.56,9s0.02,0.46,0.05,0.69 l-1.48,1.16C2,10.96,1.96,11.15,2.05,11.3l1.4,2.42c0.09,0.15,0.27,0.21,0.43,0.15l1.74-0.7c0.36,0.28,0.75,0.51,1.18,0.69 l0.26,1.85C7.09,15.87,7.24,16,7.41,16h2.8c0.17,0,0.32-0.13,0.35-0.3l0.26-1.85c0.42-0.18,0.82-0.41,1.18-0.69l1.74,0.7 C13.9,13.92,14.08,13.86,14.17,13.71z M8.81,11c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2C10.81,10.1,9.91,11,8.81,11z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M21.92,18.67l-0.96-0.74c0.02-0.14,0.04-0.29,0.04-0.44c0-0.15-0.01-0.3-0.04-0.44l0.95-0.74 c0.08-0.07,0.11-0.19,0.05-0.29l-0.9-1.55c-0.05-0.1-0.17-0.13-0.28-0.1l-1.11,0.45c-0.23-0.18-0.48-0.33-0.76-0.44l-0.17-1.18 C18.73,13.08,18.63,13,18.53,13h-1.79c-0.11,0-0.21,0.08-0.22,0.19l-0.17,1.18c-0.27,0.12-0.53,0.26-0.76,0.44l-1.11-0.45 c-0.1-0.04-0.22,0-0.28,0.1l-0.9,1.55c-0.05,0.1-0.04,0.22,0.05,0.29l0.95,0.74c-0.02,0.14-0.03,0.29-0.03,0.44 c0,0.15,0.01,0.3,0.03,0.44l-0.95,0.74c-0.08,0.07-0.11,0.19-0.05,0.29l0.9,1.55c0.05,0.1,0.17,0.13,0.28,0.1l1.11-0.45 c0.23,0.18,0.48,0.33,0.76,0.44l0.17,1.18c0.02,0.11,0.11,0.19,0.22,0.19h1.79c0.11,0,0.21-0.08,0.22-0.19l0.17-1.18 c0.27-0.12,0.53-0.26,0.75-0.44l1.12,0.45c0.1,0.04,0.22,0,0.28-0.1l0.9-1.55C22.03,18.86,22,18.74,21.92,18.67z M17.63,18.83 c-0.74,0-1.35-0.6-1.35-1.35s0.6-1.35,1.35-1.35s1.35,0.6,1.35,1.35S18.37,18.83,17.63,18.83z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21.92,18.67l-0.96-0.74c0.02-0.14,0.04-0.29,0.04-0.44c0-0.15-0.01-0.3-0.04-0.44l0.95-0.74 c0.08-0.07,0.11-0.19,0.05-0.29l-0.9-1.55c-0.05-0.1-0.17-0.13-0.28-0.1l-1.11,0.45c-0.23-0.18-0.48-0.33-0.76-0.44l-0.17-1.18 C18.73,13.08,18.63,13,18.53,13h-1.79c-0.11,0-0.21,0.08-0.22,0.19l-0.17,1.18c-0.27,0.12-0.53,0.26-0.76,0.44l-1.11-0.45 c-0.1-0.04-0.22,0-0.28,0.1l-0.9,1.55c-0.05,0.1-0.04,0.22,0.05,0.29l0.95,0.74c-0.02,0.14-0.03,0.29-0.03,0.44 c0,0.15,0.01,0.3,0.03,0.44l-0.95,0.74c-0.08,0.07-0.11,0.19-0.05,0.29l0.9,1.55c0.05,0.1,0.17,0.13,0.28,0.1l1.11-0.45 c0.23,0.18,0.48,0.33,0.76,0.44l0.17,1.18c0.02,0.11,0.11,0.19,0.22,0.19h1.79c0.11,0,0.21-0.08,0.22-0.19l0.17-1.18 c0.27-0.12,0.53-0.26,0.75-0.44l1.12,0.45c0.1,0.04,0.22,0,0.28-0.1l0.9-1.55C22.03,18.86,22,18.74,21.92,18.67z M17.63,18.83 c-0.74,0-1.35-0.6-1.35-1.35s0.6-1.35,1.35-1.35s1.35,0.6,1.35,1.35S18.37,18.83,17.63,18.83z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_miscellaneous_services_twotone = ic_miscellaneous_services_twotone; \ No newline at end of file diff --git a/dist/md/ic_missed_video_call.js b/dist/md/ic_missed_video_call.js new file mode 100644 index 000000000..aee9ec798 --- /dev/null +++ b/dist/md/ic_missed_video_call.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_missed_video_call = void 0; +var ic_missed_video_call = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 10.5V7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4zM10 15l-3.89-3.89v2.55H5V9.22h4.44v1.11H6.89l3.11 3.1 4.22-4.22.78.79-5 5z" + }, + "children": [] + }] +}; +exports.ic_missed_video_call = ic_missed_video_call; \ No newline at end of file diff --git a/dist/md/ic_missed_video_call_outline.js b/dist/md/ic_missed_video_call_outline.js new file mode 100644 index 000000000..f571cd45e --- /dev/null +++ b/dist/md/ic_missed_video_call_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_missed_video_call_outline = void 0; +var ic_missed_video_call_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 10.5V7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4zm-2-1.83V16H5V8h10v.67zm-7.89 2.44L11 15l3.77-3.79-.78-.79L11 13.43l-3.11-3.1h2.55V9.22H6v4.44h1.11z" + }, + "children": [] + }] +}; +exports.ic_missed_video_call_outline = ic_missed_video_call_outline; \ No newline at end of file diff --git a/dist/md/ic_missed_video_call_twotone.js b/dist/md/ic_missed_video_call_twotone.js new file mode 100644 index 000000000..541c8cfa9 --- /dev/null +++ b/dist/md/ic_missed_video_call_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_missed_video_call_twotone = void 0; +var ic_missed_video_call_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 13.5V8H5v8h10v-2.5zM11 15l-3.89-3.89v2.55H6V9.22h4.44v1.11H7.89l3.11 3.1 2.99-3.01.78.79L11 15z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 17c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4V7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10zm2-9h10v8H5V8zm6 5.43l-3.11-3.1h2.55V9.22H6v4.44h1.11v-2.55L11 15l3.77-3.79-.78-.79z" + }, + "children": [] + }] +}; +exports.ic_missed_video_call_twotone = ic_missed_video_call_twotone; \ No newline at end of file diff --git a/dist/md/ic_mms.js b/dist/md/ic_mms.js new file mode 100644 index 000000000..a2c1759ae --- /dev/null +++ b/dist/md/ic_mms.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_mms = void 0; +var ic_mms = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM5 14l3.5-4.5 2.5 3.01L14.5 8l4.5 6H5z" + }, + "children": [] + }] +}; +exports.ic_mms = ic_mms; \ No newline at end of file diff --git a/dist/md/ic_mms_outline.js b/dist/md/ic_mms_outline.js new file mode 100644 index 000000000..f0f051b69 --- /dev/null +++ b/dist/md/ic_mms_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_mms_outline = void 0; +var ic_mms_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zm-5.5-8L11 12.51 8.5 9.5 5 14h14z" + }, + "children": [] + }] +}; +exports.ic_mms_outline = ic_mms_outline; \ No newline at end of file diff --git a/dist/md/ic_mms_twotone.js b/dist/md/ic_mms_twotone.js new file mode 100644 index 000000000..6b50e8cbc --- /dev/null +++ b/dist/md/ic_mms_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_mms_twotone = void 0; +var ic_mms_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 17.17L5.17 16H20V4H4v13.17zM8.5 9.5l2.5 3.01L14.5 8l4.5 6H5l3.5-4.5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zm-5.5-8L11 12.51 8.5 9.5 5 14h14z" + }, + "children": [] + }] +}; +exports.ic_mms_twotone = ic_mms_twotone; \ No newline at end of file diff --git a/dist/md/ic_mobile_friendly.js b/dist/md/ic_mobile_friendly.js new file mode 100644 index 000000000..5292925f7 --- /dev/null +++ b/dist/md/ic_mobile_friendly.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_mobile_friendly = void 0; +var ic_mobile_friendly = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 1H9c-1.1 0-2 .9-2 2v3h2V4h10v16H9v-2H7v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zM7.01 13.47l-2.55-2.55-1.27 1.27L7 16l7.19-7.19-1.27-1.27z" + }, + "children": [] + }] +}; +exports.ic_mobile_friendly = ic_mobile_friendly; \ No newline at end of file diff --git a/dist/md/ic_mobile_friendly_outline.js b/dist/md/ic_mobile_friendly_outline.js new file mode 100644 index 000000000..930aba342 --- /dev/null +++ b/dist/md/ic_mobile_friendly_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_mobile_friendly_outline = void 0; +var ic_mobile_friendly_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 1H9c-1.1 0-2 .9-2 2v3h2V4h10v16H9v-2H7v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zM7.01 13.47l-2.55-2.55-1.27 1.27L7 16l7.19-7.19-1.27-1.27-5.91 5.93z" + }, + "children": [] + }] +}; +exports.ic_mobile_friendly_outline = ic_mobile_friendly_outline; \ No newline at end of file diff --git a/dist/md/ic_mobile_friendly_twotone.js b/dist/md/ic_mobile_friendly_twotone.js new file mode 100644 index 000000000..4de87e7fc --- /dev/null +++ b/dist/md/ic_mobile_friendly_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_mobile_friendly_twotone = void 0; +var ic_mobile_friendly_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 1H9c-1.1 0-2 .9-2 2v3h2V4h10v16H9v-2H7v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zM7.01 13.47l-2.55-2.55-1.27 1.27L7 16l7.19-7.19-1.27-1.27-5.91 5.93z" + }, + "children": [] + }] +}; +exports.ic_mobile_friendly_twotone = ic_mobile_friendly_twotone; \ No newline at end of file diff --git a/dist/md/ic_mobile_off.js b/dist/md/ic_mobile_off.js new file mode 100644 index 000000000..f92a207f7 --- /dev/null +++ b/dist/md/ic_mobile_off.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_mobile_off = void 0; +var ic_mobile_off = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M2.76 2.49L1.49 3.76 5 7.27V21c0 1.1.9 2 2 2h10c1.02 0 1.85-.77 1.98-1.75l1.72 1.72 1.27-1.27L2.76 2.49zM7 19V9.27L16.73 19H7zM17 5v9.17l2 2V3c0-1.1-.9-2-2-2H7c-.85 0-1.58.54-1.87 1.3L7.83 5H17z" + }, + "children": [] + }] +}; +exports.ic_mobile_off = ic_mobile_off; \ No newline at end of file diff --git a/dist/md/ic_mobile_off_outline.js b/dist/md/ic_mobile_off_outline.js new file mode 100644 index 000000000..d7a21a25b --- /dev/null +++ b/dist/md/ic_mobile_off_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_mobile_off_outline = void 0; +var ic_mobile_off_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 5v8.61l2 2V3c0-1.1-.9-2-2-2H7c-.71 0-1.33.37-1.68.93L8.39 5H17zM1.49 3.76L5 7.27V21c0 1.1.9 2 2 2h10c1.02 0 1.85-.77 1.98-1.75l1.72 1.72 1.41-1.41L2.9 2.35 1.49 3.76zM7 9.27L16.73 19H7V9.27z" + }, + "children": [] + }] +}; +exports.ic_mobile_off_outline = ic_mobile_off_outline; \ No newline at end of file diff --git a/dist/md/ic_mobile_off_twotone.js b/dist/md/ic_mobile_off_twotone.js new file mode 100644 index 000000000..e8252925e --- /dev/null +++ b/dist/md/ic_mobile_off_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_mobile_off_twotone = void 0; +var ic_mobile_off_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 5v8.61l2 2V3c0-1.1-.9-2-2-2H7c-.71 0-1.33.37-1.68.93L8.39 5H17zM1.49 3.76L5 7.27V21c0 1.1.9 2 2 2h10c1.02 0 1.85-.77 1.98-1.75l1.72 1.72 1.41-1.41L2.9 2.35 1.49 3.76zM7 9.27L16.73 19H7V9.27z" + }, + "children": [] + }] +}; +exports.ic_mobile_off_twotone = ic_mobile_off_twotone; \ No newline at end of file diff --git a/dist/md/ic_mobile_screen_share.js b/dist/md/ic_mobile_screen_share.js new file mode 100644 index 000000000..3857fe134 --- /dev/null +++ b/dist/md/ic_mobile_screen_share.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_mobile_screen_share = void 0; +var ic_mobile_screen_share = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 1.01L7 1c-1.1 0-1.99.9-1.99 2v18c0 1.1.89 2 1.99 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14zm-4.2-5.78v1.75l3.2-2.99L12.8 9v1.7c-3.11.43-4.35 2.56-4.8 4.7 1.11-1.5 2.58-2.18 4.8-2.18z" + }, + "children": [] + }] +}; +exports.ic_mobile_screen_share = ic_mobile_screen_share; \ No newline at end of file diff --git a/dist/md/ic_mobile_screen_share_outline.js b/dist/md/ic_mobile_screen_share_outline.js new file mode 100644 index 000000000..af16dba1c --- /dev/null +++ b/dist/md/ic_mobile_screen_share_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_mobile_screen_share_outline = void 0; +var ic_mobile_screen_share_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 1H7c-1.1 0-1.99.85-1.99 1.95v18C5.01 22.05 5.9 23 7 23h10c1.1 0 2-.95 2-2.05v-18C19 1.85 18.1 1 17 1zm0 18H7V5h10v14zm-4.2-5.76v1.75L16 12l-3.2-2.98v1.7c-3.11.43-4.35 2.56-4.8 4.7 1.11-1.5 2.58-2.18 4.8-2.18z" + }, + "children": [] + }] +}; +exports.ic_mobile_screen_share_outline = ic_mobile_screen_share_outline; \ No newline at end of file diff --git a/dist/md/ic_mobile_screen_share_twotone.js b/dist/md/ic_mobile_screen_share_twotone.js new file mode 100644 index 000000000..1067496db --- /dev/null +++ b/dist/md/ic_mobile_screen_share_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_mobile_screen_share_twotone = void 0; +var ic_mobile_screen_share_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 19h10V5H7v14zm5.8-8.28v-1.7L16 12l-3.2 2.99v-1.75c-2.22 0-3.69.68-4.8 2.18.45-2.14 1.69-4.27 4.8-4.7z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 1H7c-1.1 0-1.99.85-1.99 1.95v18C5.01 22.05 5.9 23 7 23h10c1.1 0 2-.95 2-2.05V3c0-1.1-.9-2-2-2zm0 18H7V5h10v14zm-4.2-5.76v1.75L16 12l-3.2-2.98v1.7c-3.11.43-4.35 2.56-4.8 4.7 1.11-1.5 2.58-2.18 4.8-2.18z" + }, + "children": [] + }] +}; +exports.ic_mobile_screen_share_twotone = ic_mobile_screen_share_twotone; \ No newline at end of file diff --git a/dist/md/ic_mode_comment.js b/dist/md/ic_mode_comment.js new file mode 100644 index 000000000..48d590e35 --- /dev/null +++ b/dist/md/ic_mode_comment.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_mode_comment = void 0; +var ic_mode_comment = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21.99 4c0-1.1-.89-2-1.99-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4-.01-18z" + }, + "children": [] + }] +}; +exports.ic_mode_comment = ic_mode_comment; \ No newline at end of file diff --git a/dist/md/ic_mode_comment_outline.js b/dist/md/ic_mode_comment_outline.js new file mode 100644 index 000000000..a6e32a404 --- /dev/null +++ b/dist/md/ic_mode_comment_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_mode_comment_outline = void 0; +var ic_mode_comment_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 17.17L18.83 16H4V4h16v13.17zM20 2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4V4c0-1.1-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_mode_comment_outline = ic_mode_comment_outline; \ No newline at end of file diff --git a/dist/md/ic_mode_comment_twotone.js b/dist/md/ic_mode_comment_twotone.js new file mode 100644 index 000000000..d6554530e --- /dev/null +++ b/dist/md/ic_mode_comment_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_mode_comment_twotone = void 0; +var ic_mode_comment_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4V4c0-1.1-.9-2-2-2zm0 15.17L18.83 16H4V4h16v13.17z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 4v12h14.83L20 17.17V4z", + "opacity": ".3" + }, + "children": [] + }] +}; +exports.ic_mode_comment_twotone = ic_mode_comment_twotone; \ No newline at end of file diff --git a/dist/md/ic_mode_edit.js b/dist/md/ic_mode_edit.js new file mode 100644 index 000000000..05b42c9c1 --- /dev/null +++ b/dist/md/ic_mode_edit.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_mode_edit = void 0; +var ic_mode_edit = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z" + }, + "children": [] + }] +}; +exports.ic_mode_edit = ic_mode_edit; \ No newline at end of file diff --git a/dist/md/ic_mode_outline.js b/dist/md/ic_mode_outline.js new file mode 100644 index 000000000..3da427d98 --- /dev/null +++ b/dist/md/ic_mode_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_mode_outline = void 0; +var ic_mode_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14.06 9.02l.92.92L5.92 19H5v-.92l9.06-9.06M17.66 3c-.25 0-.51.1-.7.29l-1.83 1.83 3.75 3.75 1.83-1.83c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.2-.2-.45-.29-.71-.29zm-3.6 3.19L3 17.25V21h3.75L17.81 9.94l-3.75-3.75z" + }, + "children": [] + }] +}; +exports.ic_mode_outline = ic_mode_outline; \ No newline at end of file diff --git a/dist/md/ic_mode_twotone.js b/dist/md/ic_mode_twotone.js new file mode 100644 index 000000000..875da6288 --- /dev/null +++ b/dist/md/ic_mode_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_mode_twotone = void 0; +var ic_mode_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14.06 9.02L5 18.08V19h.92l9.06-9.06z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18.37 3.29c-.2-.2-.45-.29-.71-.29s-.51.1-.7.29l-1.83 1.83 3.75 3.75 1.83-1.83c.39-.39.39-1.02 0-1.41l-2.34-2.34zm-.56 6.65l-3.75-3.75L3 17.25V21h3.75L17.81 9.94zM5 19v-.92l9.06-9.06.92.92L5.92 19H5z" + }, + "children": [] + }] +}; +exports.ic_mode_twotone = ic_mode_twotone; \ No newline at end of file diff --git a/dist/md/ic_model_training.js b/dist/md/ic_model_training.js new file mode 100644 index 000000000..5b409210e --- /dev/null +++ b/dist/md/ic_model_training.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_model_training = void 0; +var ic_model_training = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M15.5,13.5c0,2-2.5,3.5-2.5,5h-2c0-1.5-2.5-3-2.5-5c0-1.93,1.57-3.5,3.5-3.5h0C13.93,10,15.5,11.57,15.5,13.5z M13,19.5h-2 V21h2V19.5z M19,13c0,1.68-0.59,3.21-1.58,4.42l1.42,1.42C20.18,17.27,21,15.23,21,13c0-2.74-1.23-5.19-3.16-6.84l-1.42,1.42 C17.99,8.86,19,10.82,19,13z M16,5l-4-4v3c0,0,0,0,0,0c-4.97,0-9,4.03-9,9c0,2.23,0.82,4.27,2.16,5.84l1.42-1.42 C5.59,16.21,5,14.68,5,13c0-3.86,3.14-7,7-7c0,0,0,0,0,0v3L16,5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15.5,13.5c0,2-2.5,3.5-2.5,5h-2c0-1.5-2.5-3-2.5-5c0-1.93,1.57-3.5,3.5-3.5h0C13.93,10,15.5,11.57,15.5,13.5z M13,19.5h-2 V21h2V19.5z M19,13c0,1.68-0.59,3.21-1.58,4.42l1.42,1.42C20.18,17.27,21,15.23,21,13c0-2.74-1.23-5.19-3.16-6.84l-1.42,1.42 C17.99,8.86,19,10.82,19,13z M16,5l-4-4v3c0,0,0,0,0,0c-4.97,0-9,4.03-9,9c0,2.23,0.82,4.27,2.16,5.84l1.42-1.42 C5.59,16.21,5,14.68,5,13c0-3.86,3.14-7,7-7c0,0,0,0,0,0v3L16,5z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_model_training = ic_model_training; \ No newline at end of file diff --git a/dist/md/ic_model_training_outline.js b/dist/md/ic_model_training_outline.js new file mode 100644 index 000000000..68463aa0b --- /dev/null +++ b/dist/md/ic_model_training_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_model_training_outline = void 0; +var ic_model_training_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M15.5,13.5c0,2-2.5,3.5-2.5,5h-2c0-1.5-2.5-3-2.5-5c0-1.93,1.57-3.5,3.5-3.5h0C13.93,10,15.5,11.57,15.5,13.5z M13,19.5h-2 V21h2V19.5z M19,13c0,1.68-0.59,3.21-1.58,4.42l1.42,1.42C20.18,17.27,21,15.23,21,13c0-2.74-1.23-5.19-3.16-6.84l-1.42,1.42 C17.99,8.86,19,10.82,19,13z M16,5l-4-4v3c0,0,0,0,0,0c-4.97,0-9,4.03-9,9c0,2.23,0.82,4.27,2.16,5.84l1.42-1.42 C5.59,16.21,5,14.68,5,13c0-3.86,3.14-7,7-7c0,0,0,0,0,0v3L16,5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15.5,13.5c0,2-2.5,3.5-2.5,5h-2c0-1.5-2.5-3-2.5-5c0-1.93,1.57-3.5,3.5-3.5h0C13.93,10,15.5,11.57,15.5,13.5z M13,19.5h-2 V21h2V19.5z M19,13c0,1.68-0.59,3.21-1.58,4.42l1.42,1.42C20.18,17.27,21,15.23,21,13c0-2.74-1.23-5.19-3.16-6.84l-1.42,1.42 C17.99,8.86,19,10.82,19,13z M16,5l-4-4v3c0,0,0,0,0,0c-4.97,0-9,4.03-9,9c0,2.23,0.82,4.27,2.16,5.84l1.42-1.42 C5.59,16.21,5,14.68,5,13c0-3.86,3.14-7,7-7c0,0,0,0,0,0v3L16,5z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_model_training_outline = ic_model_training_outline; \ No newline at end of file diff --git a/dist/md/ic_model_training_twotone.js b/dist/md/ic_model_training_twotone.js new file mode 100644 index 000000000..1a341b567 --- /dev/null +++ b/dist/md/ic_model_training_twotone.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_model_training_twotone = void 0; +var ic_model_training_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M15.5,13.5c0,2-2.5,3.5-2.5,5h-2c0-1.5-2.5-3-2.5-5c0-1.93,1.57-3.5,3.5-3.5h0C13.93,10,15.5,11.57,15.5,13.5z M13,19.5h-2 V21h2V19.5z M19,13c0,1.68-0.59,3.21-1.58,4.42l1.42,1.42C20.18,17.27,21,15.23,21,13c0-2.74-1.23-5.19-3.16-6.84l-1.42,1.42 C17.99,8.86,19,10.82,19,13z M16,5l-4-4v3c0,0,0,0,0,0c-4.97,0-9,4.03-9,9c0,2.23,0.82,4.27,2.16,5.84l1.42-1.42 C5.59,16.21,5,14.68,5,13c0-3.86,3.14-7,7-7c0,0,0,0,0,0v3L16,5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15.5,13.5c0,2-2.5,3.5-2.5,5h-2c0-1.5-2.5-3-2.5-5c0-1.93,1.57-3.5,3.5-3.5h0C13.93,10,15.5,11.57,15.5,13.5z M13,19.5h-2 V21h2V19.5z M19,13c0,1.68-0.59,3.21-1.58,4.42l1.42,1.42C20.18,17.27,21,15.23,21,13c0-2.74-1.23-5.19-3.16-6.84l-1.42,1.42 C17.99,8.86,19,10.82,19,13z M16,5l-4-4v3c0,0,0,0,0,0c-4.97,0-9,4.03-9,9c0,2.23,0.82,4.27,2.16,5.84l1.42-1.42 C5.59,16.21,5,14.68,5,13c0-3.86,3.14-7,7-7c0,0,0,0,0,0v3L16,5z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_model_training_twotone = ic_model_training_twotone; \ No newline at end of file diff --git a/dist/md/ic_monetization_on.js b/dist/md/ic_monetization_on.js new file mode 100644 index 000000000..58c5a4994 --- /dev/null +++ b/dist/md/ic_monetization_on.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_monetization_on = void 0; +var ic_monetization_on = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1.41 16.09V20h-2.67v-1.93c-1.71-.36-3.16-1.46-3.27-3.4h1.96c.1 1.05.82 1.87 2.65 1.87 1.96 0 2.4-.98 2.4-1.59 0-.83-.44-1.61-2.67-2.14-2.48-.6-4.18-1.62-4.18-3.67 0-1.72 1.39-2.84 3.11-3.21V4h2.67v1.95c1.86.45 2.79 1.86 2.85 3.39H14.3c-.05-1.11-.64-1.87-2.22-1.87-1.5 0-2.4.68-2.4 1.64 0 .84.65 1.39 2.67 1.91s4.18 1.39 4.18 3.91c-.01 1.83-1.38 2.83-3.12 3.16z" + }, + "children": [] + }] +}; +exports.ic_monetization_on = ic_monetization_on; \ No newline at end of file diff --git a/dist/md/ic_monetization_on_outline.js b/dist/md/ic_monetization_on_outline.js new file mode 100644 index 000000000..c6730d79f --- /dev/null +++ b/dist/md/ic_monetization_on_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_monetization_on_outline = void 0; +var ic_monetization_on_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm.31-8.86c-1.77-.45-2.34-.94-2.34-1.67 0-.84.79-1.43 2.1-1.43 1.38 0 1.9.66 1.94 1.64h1.71c-.05-1.34-.87-2.57-2.49-2.97V5H10.9v1.69c-1.51.32-2.72 1.3-2.72 2.81 0 1.79 1.49 2.69 3.66 3.21 1.95.46 2.34 1.15 2.34 1.87 0 .53-.39 1.39-2.1 1.39-1.6 0-2.23-.72-2.32-1.64H8.04c.1 1.7 1.36 2.66 2.86 2.97V19h2.34v-1.67c1.52-.29 2.72-1.16 2.73-2.77-.01-2.2-1.9-2.96-3.66-3.42z" + }, + "children": [] + }] +}; +exports.ic_monetization_on_outline = ic_monetization_on_outline; \ No newline at end of file diff --git a/dist/md/ic_monetization_on_twotone.js b/dist/md/ic_monetization_on_twotone.js new file mode 100644 index 000000000..ba0542d58 --- /dev/null +++ b/dist/md/ic_monetization_on_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_monetization_on_twotone = void 0; +var ic_monetization_on_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm1.23 13.33V19H10.9v-1.69c-1.5-.31-2.77-1.28-2.86-2.97h1.71c.09.92.72 1.64 2.32 1.64 1.71 0 2.1-.86 2.1-1.39 0-.73-.39-1.41-2.34-1.87-2.17-.53-3.66-1.42-3.66-3.21 0-1.51 1.22-2.48 2.72-2.81V5h2.34v1.71c1.63.39 2.44 1.63 2.49 2.97h-1.71c-.04-.97-.56-1.64-1.94-1.64-1.31 0-2.1.59-2.1 1.43 0 .73.57 1.22 2.34 1.67 1.77.46 3.66 1.22 3.66 3.42-.01 1.6-1.21 2.48-2.74 2.77z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm.31-8.86c-1.77-.45-2.34-.94-2.34-1.67 0-.84.79-1.43 2.1-1.43 1.38 0 1.9.66 1.94 1.64h1.71c-.05-1.34-.87-2.57-2.49-2.97V5H10.9v1.69c-1.51.32-2.72 1.3-2.72 2.81 0 1.79 1.49 2.69 3.66 3.21 1.95.46 2.34 1.15 2.34 1.87 0 .53-.39 1.39-2.1 1.39-1.6 0-2.23-.72-2.32-1.64H8.04c.1 1.7 1.36 2.66 2.86 2.97V19h2.34v-1.67c1.52-.29 2.72-1.16 2.73-2.77-.01-2.2-1.9-2.96-3.66-3.42z" + }, + "children": [] + }] +}; +exports.ic_monetization_on_twotone = ic_monetization_on_twotone; \ No newline at end of file diff --git a/dist/md/ic_money.js b/dist/md/ic_money.js new file mode 100644 index 000000000..3d6484789 --- /dev/null +++ b/dist/md/ic_money.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_money = void 0; +var ic_money = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 8h2v8H5zm7 0H9c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h3c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-1 6h-1v-4h1v4zm7-6h-3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h3c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-1 6h-1v-4h1v4z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 6h16v12H4z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M2 4v16h20V4H2zm2 14V6h16v12H4z" + }, + "children": [] + }] +}; +exports.ic_money = ic_money; \ No newline at end of file diff --git a/dist/md/ic_money_off.js b/dist/md/ic_money_off.js new file mode 100644 index 000000000..60305b024 --- /dev/null +++ b/dist/md/ic_money_off.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_money_off = void 0; +var ic_money_off = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12.5 6.9c1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-.53.12-1.03.3-1.48.54l1.47 1.47c.41-.17.91-.27 1.51-.27zM5.33 4.06L4.06 5.33 7.5 8.77c0 2.08 1.56 3.21 3.91 3.91l3.51 3.51c-.34.48-1.05.91-2.42.91-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c.96-.18 1.82-.55 2.45-1.12l2.22 2.22 1.27-1.27L5.33 4.06z" + }, + "children": [] + }] +}; +exports.ic_money_off = ic_money_off; \ No newline at end of file diff --git a/dist/md/ic_money_off_csred_outline.js b/dist/md/ic_money_off_csred_outline.js new file mode 100644 index 000000000..836d5d1a0 --- /dev/null +++ b/dist/md/ic_money_off_csred_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_money_off_csred_outline = void 0; +var ic_money_off_csred_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12.5 6.9c1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-.39.08-.75.21-1.1.36l1.51 1.51c.32-.08.69-.13 1.09-.13zM5.47 3.92L4.06 5.33 7.5 8.77c0 2.08 1.56 3.22 3.91 3.91l3.51 3.51c-.34.49-1.05.91-2.42.91-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c.96-.18 1.83-.55 2.46-1.12l2.22 2.22 1.41-1.41L5.47 3.92z" + }, + "children": [] + }] +}; +exports.ic_money_off_csred_outline = ic_money_off_csred_outline; \ No newline at end of file diff --git a/dist/md/ic_money_off_csred_twotone.js b/dist/md/ic_money_off_csred_twotone.js new file mode 100644 index 000000000..871d4b753 --- /dev/null +++ b/dist/md/ic_money_off_csred_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_money_off_csred_twotone = void 0; +var ic_money_off_csred_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12.5 6.9c1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-.39.08-.75.21-1.1.36l1.51 1.51c.32-.08.69-.13 1.09-.13zM5.47 3.92L4.06 5.33 7.5 8.77c0 2.08 1.56 3.22 3.91 3.91l3.51 3.51c-.34.49-1.05.91-2.42.91-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c.96-.18 1.83-.55 2.46-1.12l2.22 2.22 1.41-1.41L5.47 3.92z" + }, + "children": [] + }] +}; +exports.ic_money_off_csred_twotone = ic_money_off_csred_twotone; \ No newline at end of file diff --git a/dist/md/ic_money_off_outline.js b/dist/md/ic_money_off_outline.js new file mode 100644 index 000000000..d852749be --- /dev/null +++ b/dist/md/ic_money_off_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_money_off_outline = void 0; +var ic_money_off_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12.5 6.9c1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-.39.08-.75.21-1.1.36l1.51 1.51c.32-.08.69-.13 1.09-.13zM5.47 3.92L4.06 5.33 7.5 8.77c0 2.08 1.56 3.22 3.91 3.91l3.51 3.51c-.34.49-1.05.91-2.42.91-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c.96-.18 1.83-.55 2.46-1.12l2.22 2.22 1.41-1.41L5.47 3.92z" + }, + "children": [] + }] +}; +exports.ic_money_off_outline = ic_money_off_outline; \ No newline at end of file diff --git a/dist/md/ic_money_off_twotone.js b/dist/md/ic_money_off_twotone.js new file mode 100644 index 000000000..1380ed4dc --- /dev/null +++ b/dist/md/ic_money_off_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_money_off_twotone = void 0; +var ic_money_off_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12.5 6.9c1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-.39.08-.75.21-1.1.36l1.51 1.51c.32-.08.69-.13 1.09-.13zM5.47 3.92L4.06 5.33 7.5 8.77c0 2.08 1.56 3.22 3.91 3.91l3.51 3.51c-.34.49-1.05.91-2.42.91-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c.96-.18 1.83-.55 2.46-1.12l2.22 2.22 1.41-1.41L5.47 3.92z" + }, + "children": [] + }] +}; +exports.ic_money_off_twotone = ic_money_off_twotone; \ No newline at end of file diff --git a/dist/md/ic_money_outline.js b/dist/md/ic_money_outline.js new file mode 100644 index 000000000..37f078ce2 --- /dev/null +++ b/dist/md/ic_money_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_money_outline = void 0; +var ic_money_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 16h3c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1zm1-6h1v4h-1v-4zm-7 6h3c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1zm1-6h1v4h-1v-4zM5 8h2v8H5zM2 4v16h20V4H2zm18 14H4V6h16v12z" + }, + "children": [] + }] +}; +exports.ic_money_outline = ic_money_outline; \ No newline at end of file diff --git a/dist/md/ic_money_twotone.js b/dist/md/ic_money_twotone.js new file mode 100644 index 000000000..69bf06bc5 --- /dev/null +++ b/dist/md/ic_money_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_money_twotone = void 0; +var ic_money_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 10h1v4h-1zm6 0h1v4h-1zM4 18h16V6H4v12zm10-9c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v6c0 .55-.45 1-1 1h-3c-.55 0-1-.45-1-1V9zM8 9c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v6c0 .55-.45 1-1 1H9c-.55 0-1-.45-1-1V9zM5 8h2v8H5V8z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 16h3c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1zm1-6h1v4h-1v-4zm-7 6h3c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1zm1-6h1v4h-1v-4zM5 8h2v8H5zM2 4v16h20V4H2zm18 14H4V6h16v12z" + }, + "children": [] + }] +}; +exports.ic_money_twotone = ic_money_twotone; \ No newline at end of file diff --git a/dist/md/ic_monitor.js b/dist/md/ic_monitor.js new file mode 100644 index 000000000..e00ed8036 --- /dev/null +++ b/dist/md/ic_monitor.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_monitor = void 0; +var ic_monitor = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M20 3H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2h3l-1 1v2h12v-2l-1-1h3c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 13H4V5h16v11z" + }, + "children": [] + }] +}; +exports.ic_monitor = ic_monitor; \ No newline at end of file diff --git a/dist/md/ic_monochrome_photos.js b/dist/md/ic_monochrome_photos.js new file mode 100644 index 000000000..a0008fb2e --- /dev/null +++ b/dist/md/ic_monochrome_photos.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_monochrome_photos = void 0; +var ic_monochrome_photos = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M-74 29h48v48h-48V29z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 5h-3.2L15 3H9L7.2 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 14h-8v-1c-2.8 0-5-2.2-5-5s2.2-5 5-5V7h8v12zm-3-6c0-2.8-2.2-5-5-5v1.8c1.8 0 3.2 1.4 3.2 3.2s-1.4 3.2-3.2 3.2V18c2.8 0 5-2.2 5-5zm-8.2 0c0 1.8 1.4 3.2 3.2 3.2V9.8c-1.8 0-3.2 1.4-3.2 3.2z" + }, + "children": [] + }] +}; +exports.ic_monochrome_photos = ic_monochrome_photos; \ No newline at end of file diff --git a/dist/md/ic_monochrome_photos_outline.js b/dist/md/ic_monochrome_photos_outline.js new file mode 100644 index 000000000..d3274c5d6 --- /dev/null +++ b/dist/md/ic_monochrome_photos_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_monochrome_photos_outline = void 0; +var ic_monochrome_photos_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 5h-3.2L15 3H9L7.2 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 14h-8v-1c-2.8 0-5-2.2-5-5s2.2-5 5-5V7h8v12zm-3-6c0-2.8-2.2-5-5-5v1.8c1.8 0 3.2 1.4 3.2 3.2s-1.4 3.2-3.2 3.2V18c2.8 0 5-2.2 5-5zm-8.2 0c0 1.8 1.4 3.2 3.2 3.2V9.8c-1.8 0-3.2 1.4-3.2 3.2z" + }, + "children": [] + }] +}; +exports.ic_monochrome_photos_outline = ic_monochrome_photos_outline; \ No newline at end of file diff --git a/dist/md/ic_monochrome_photos_twotone.js b/dist/md/ic_monochrome_photos_twotone.js new file mode 100644 index 000000000..740b13b08 --- /dev/null +++ b/dist/md/ic_monochrome_photos_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_monochrome_photos_twotone = void 0; +var ic_monochrome_photos_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 18v-1.8c-1.8 0-3.2-1.4-3.2-3.2s1.4-3.2 3.2-3.2V8c-2.8 0-5 2.2-5 5s2.2 5 5 5zm5-5c0 2.8-2.2 5-5 5v1h8V7h-8v1c2.8 0 5 2.2 5 5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 21h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2h-3.2L15 3H9L7.2 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2zm8-13V7h8v12h-8v-1c-2.8 0-5-2.2-5-5s2.2-5 5-5zm3.2 5c0 1.8-1.4 3.2-3.2 3.2V18c2.8 0 5-2.2 5-5s-2.2-5-5-5v1.8c1.8 0 3.2 1.4 3.2 3.2zm-6.4 0c0 1.8 1.4 3.2 3.2 3.2V9.8c-1.8 0-3.2 1.4-3.2 3.2z" + }, + "children": [] + }] +}; +exports.ic_monochrome_photos_twotone = ic_monochrome_photos_twotone; \ No newline at end of file diff --git a/dist/md/ic_mood.js b/dist/md/ic_mood.js new file mode 100644 index 000000000..5e824ad75 --- /dev/null +++ b/dist/md/ic_mood.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_mood = void 0; +var ic_mood = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 6.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z" + }, + "children": [] + }] +}; +exports.ic_mood = ic_mood; \ No newline at end of file diff --git a/dist/md/ic_mood_bad.js b/dist/md/ic_mood_bad.js new file mode 100644 index 000000000..f0a34c63e --- /dev/null +++ b/dist/md/ic_mood_bad.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_mood_bad = void 0; +var ic_mood_bad = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 3c-2.33 0-4.31 1.46-5.11 3.5h10.22c-.8-2.04-2.78-3.5-5.11-3.5z" + }, + "children": [] + }] +}; +exports.ic_mood_bad = ic_mood_bad; \ No newline at end of file diff --git a/dist/md/ic_mood_bad_outline.js b/dist/md/ic_mood_bad_outline.js new file mode 100644 index 000000000..c7bf94a1d --- /dev/null +++ b/dist/md/ic_mood_bad_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_mood_bad_outline = void 0; +var ic_mood_bad_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 2.5c-2.33 0-4.31 1.46-5.11 3.5h10.22c-.8-2.04-2.78-3.5-5.11-3.5z" + }, + "children": [] + }] +}; +exports.ic_mood_bad_outline = ic_mood_bad_outline; \ No newline at end of file diff --git a/dist/md/ic_mood_bad_twotone.js b/dist/md/ic_mood_bad_twotone.js new file mode 100644 index 000000000..179a12645 --- /dev/null +++ b/dist/md/ic_mood_bad_twotone.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_mood_bad_twotone = void 0; +var ic_mood_bad_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm3.5 4c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-7 0c.83 0 1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5 7.67 8 8.5 8zm-1.61 9c.8-2.04 2.78-3.5 5.11-3.5s4.31 1.46 5.11 3.5H6.89z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "8.5", + "cy": "9.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm0-6.5c-2.33 0-4.31 1.46-5.11 3.5h10.22c-.8-2.04-2.78-3.5-5.11-3.5z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "15.5", + "cy": "9.5", + "r": "1.5" + }, + "children": [] + }] +}; +exports.ic_mood_bad_twotone = ic_mood_bad_twotone; \ No newline at end of file diff --git a/dist/md/ic_mood_outline.js b/dist/md/ic_mood_outline.js new file mode 100644 index 000000000..1477b61d4 --- /dev/null +++ b/dist/md/ic_mood_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_mood_outline = void 0; +var ic_mood_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 6.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z" + }, + "children": [] + }] +}; +exports.ic_mood_outline = ic_mood_outline; \ No newline at end of file diff --git a/dist/md/ic_mood_twotone.js b/dist/md/ic_mood_twotone.js new file mode 100644 index 000000000..ed23aac0a --- /dev/null +++ b/dist/md/ic_mood_twotone.js @@ -0,0 +1,53 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_mood_twotone = void 0; +var ic_mood_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm3.5 4c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-7 0c.83 0 1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5 7.67 8 8.5 8zm3.5 9.5c-2.33 0-4.31-1.46-5.11-3.5h10.22c-.8 2.04-2.78 3.5-5.11 3.5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "8.5", + "cy": "9.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "15.5", + "cy": "9.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 17.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z" + }, + "children": [] + }] +}; +exports.ic_mood_twotone = ic_mood_twotone; \ No newline at end of file diff --git a/dist/md/ic_moped.js b/dist/md/ic_moped.js new file mode 100644 index 000000000..50d85e08f --- /dev/null +++ b/dist/md/ic_moped.js @@ -0,0 +1,85 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_moped = void 0; +var ic_moped = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,7c0-1.1-0.9-2-2-2h-3v2h3v2.65L13.52,14H10V9H6c-2.21,0-4,1.79-4,4v3h2c0,1.66,1.34,3,3,3s3-1.34,3-3h4.48L19,10.35V7 z M7,17c-0.55,0-1-0.45-1-1h2C8,16.55,7.55,17,7,17z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,7c0-1.1-0.9-2-2-2h-3v2h3v2.65L13.52,14H10V9H6c-2.21,0-4,1.79-4,4v3h2c0,1.66,1.34,3,3,3s3-1.34,3-3h4.48L19,10.35V7 z M7,17c-0.55,0-1-0.45-1-1h2C8,16.55,7.55,17,7,17z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "5", + "x": "5", + "y": "6" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "5", + "x": "5", + "y": "6" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19,13c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,13,19,13z M19,17c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S19.55,17,19,17z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,13c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,13,19,13z M19,17c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S19.55,17,19,17z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_moped = ic_moped; \ No newline at end of file diff --git a/dist/md/ic_moped_outline.js b/dist/md/ic_moped_outline.js new file mode 100644 index 000000000..fda6adba0 --- /dev/null +++ b/dist/md/ic_moped_outline.js @@ -0,0 +1,85 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_moped_outline = void 0; +var ic_moped_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,7c0-1.1-0.9-2-2-2h-3v2h3v2.65L13.52,14H10V9H6c-2.21,0-4,1.79-4,4v3h2c0,1.66,1.34,3,3,3s3-1.34,3-3h4.48L19,10.35V7 z M4,14v-1c0-1.1,0.9-2,2-2h2v3H4z M7,17c-0.55,0-1-0.45-1-1h2C8,16.55,7.55,17,7,17z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,7c0-1.1-0.9-2-2-2h-3v2h3v2.65L13.52,14H10V9H6c-2.21,0-4,1.79-4,4v3h2c0,1.66,1.34,3,3,3s3-1.34,3-3h4.48L19,10.35V7 z M4,14v-1c0-1.1,0.9-2,2-2h2v3H4z M7,17c-0.55,0-1-0.45-1-1h2C8,16.55,7.55,17,7,17z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "5", + "x": "5", + "y": "6" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "5", + "x": "5", + "y": "6" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19,13c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,13,19,13z M19,17c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S19.55,17,19,17z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,13c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,13,19,13z M19,17c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S19.55,17,19,17z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_moped_outline = ic_moped_outline; \ No newline at end of file diff --git a/dist/md/ic_moped_twotone.js b/dist/md/ic_moped_twotone.js new file mode 100644 index 000000000..161fa0a06 --- /dev/null +++ b/dist/md/ic_moped_twotone.js @@ -0,0 +1,99 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_moped_twotone = void 0; +var ic_moped_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M4,13v1h4v-3H6C4.9,11,4,11.9,4,13z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M4,13v1h4v-3H6C4.9,11,4,11.9,4,13z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19,7c0-1.1-0.9-2-2-2h-3v2h3v2.65L13.52,14H10V9H6c-2.21,0-4,1.79-4,4v3h2c0,1.66,1.34,3,3,3s3-1.34,3-3h4.48L19,10.35V7 z M7,17c-0.55,0-1-0.45-1-1h2C8,16.55,7.55,17,7,17z M8,14H4v-1c0-1.1,0.9-2,2-2h2V14z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,7c0-1.1-0.9-2-2-2h-3v2h3v2.65L13.52,14H10V9H6c-2.21,0-4,1.79-4,4v3h2c0,1.66,1.34,3,3,3s3-1.34,3-3h4.48L19,10.35V7 z M7,17c-0.55,0-1-0.45-1-1h2C8,16.55,7.55,17,7,17z M8,14H4v-1c0-1.1,0.9-2,2-2h2V14z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "5", + "x": "5", + "y": "6" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "5", + "x": "5", + "y": "6" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19,13c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,13,19,13z M19,17c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S19.55,17,19,17z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,13c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,13,19,13z M19,17c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S19.55,17,19,17z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_moped_twotone = ic_moped_twotone; \ No newline at end of file diff --git a/dist/md/ic_more.js b/dist/md/ic_more.js new file mode 100644 index 000000000..fdba77d42 --- /dev/null +++ b/dist/md/ic_more.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_more = void 0; +var ic_more = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 3H7c-.69 0-1.23.35-1.59.88L0 12l5.41 8.11c.36.53.97.89 1.66.89H22c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 13.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm5 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm5 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" + }, + "children": [] + }] +}; +exports.ic_more = ic_more; \ No newline at end of file diff --git a/dist/md/ic_more_horiz.js b/dist/md/ic_more_horiz.js new file mode 100644 index 000000000..f056139c3 --- /dev/null +++ b/dist/md/ic_more_horiz.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_more_horiz = void 0; +var ic_more_horiz = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_more_horiz = ic_more_horiz; \ No newline at end of file diff --git a/dist/md/ic_more_horiz_outline.js b/dist/md/ic_more_horiz_outline.js new file mode 100644 index 000000000..fb25bdc3d --- /dev/null +++ b/dist/md/ic_more_horiz_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_more_horiz_outline = void 0; +var ic_more_horiz_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_more_horiz_outline = ic_more_horiz_outline; \ No newline at end of file diff --git a/dist/md/ic_more_horiz_twotone.js b/dist/md/ic_more_horiz_twotone.js new file mode 100644 index 000000000..4e5e56699 --- /dev/null +++ b/dist/md/ic_more_horiz_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_more_horiz_twotone = void 0; +var ic_more_horiz_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_more_horiz_twotone = ic_more_horiz_twotone; \ No newline at end of file diff --git a/dist/md/ic_more_outline.js b/dist/md/ic_more_outline.js new file mode 100644 index 000000000..06bb68801 --- /dev/null +++ b/dist/md/ic_more_outline.js @@ -0,0 +1,48 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_more_outline = void 0; +var ic_more_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 3H7c-.69 0-1.23.35-1.59.88L0 12l5.41 8.11c.36.53.97.89 1.66.89H22c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H7.07L2.4 12l4.66-7H22v14z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "9", + "cy": "12", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "14", + "cy": "12", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "19", + "cy": "12", + "r": "1.5" + }, + "children": [] + }] +}; +exports.ic_more_outline = ic_more_outline; \ No newline at end of file diff --git a/dist/md/ic_more_time.js b/dist/md/ic_more_time.js new file mode 100644 index 000000000..288577dae --- /dev/null +++ b/dist/md/ic_more_time.js @@ -0,0 +1,79 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_more_time = void 0; +var ic_more_time = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "10,8 10,14 14.7,16.9 15.5,15.7 11.5,13.3 11.5,8" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "10,8 10,14 14.7,16.9 15.5,15.7 11.5,13.3 11.5,8" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M17.92,12c0.05,0.33,0.08,0.66,0.08,1c0,3.9-3.1,7-7,7s-7-3.1-7-7c0-3.9,3.1-7,7-7c0.7,0,1.37,0.1,2,0.29V4.23 C12.36,4.08,11.69,4,11,4c-5,0-9,4-9,9s4,9,9,9s9-4,9-9c0-0.34-0.02-0.67-0.06-1H17.92z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17.92,12c0.05,0.33,0.08,0.66,0.08,1c0,3.9-3.1,7-7,7s-7-3.1-7-7c0-3.9,3.1-7,7-7c0.7,0,1.37,0.1,2,0.29V4.23 C12.36,4.08,11.69,4,11,4c-5,0-9,4-9,9s4,9,9,9s9-4,9-9c0-0.34-0.02-0.67-0.06-1H17.92z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "20,5 20,2 18,2 18,5 15,5 15,7 18,7 18,10 20,10 20,7 23,7 23,5" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "20,5 20,2 18,2 18,5 15,5 15,7 18,7 18,10 20,10 20,7 23,7 23,5" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_more_time = ic_more_time; \ No newline at end of file diff --git a/dist/md/ic_more_time_outline.js b/dist/md/ic_more_time_outline.js new file mode 100644 index 000000000..8c10d7e14 --- /dev/null +++ b/dist/md/ic_more_time_outline.js @@ -0,0 +1,79 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_more_time_outline = void 0; +var ic_more_time_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "10,8 10,14 14.7,16.9 15.5,15.7 11.5,13.3 11.5,8" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "10,8 10,14 14.7,16.9 15.5,15.7 11.5,13.3 11.5,8" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M17.92,12c0.05,0.33,0.08,0.66,0.08,1c0,3.9-3.1,7-7,7s-7-3.1-7-7c0-3.9,3.1-7,7-7c0.7,0,1.37,0.1,2,0.29V4.23 C12.36,4.08,11.69,4,11,4c-5,0-9,4-9,9s4,9,9,9s9-4,9-9c0-0.34-0.02-0.67-0.06-1H17.92z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17.92,12c0.05,0.33,0.08,0.66,0.08,1c0,3.9-3.1,7-7,7s-7-3.1-7-7c0-3.9,3.1-7,7-7c0.7,0,1.37,0.1,2,0.29V4.23 C12.36,4.08,11.69,4,11,4c-5,0-9,4-9,9s4,9,9,9s9-4,9-9c0-0.34-0.02-0.67-0.06-1H17.92z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "20,5 20,2 18,2 18,5 15,5 15,7 18,7 18,10 20,10 20,7 23,7 23,5" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "20,5 20,2 18,2 18,5 15,5 15,7 18,7 18,10 20,10 20,7 23,7 23,5" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_more_time_outline = ic_more_time_outline; \ No newline at end of file diff --git a/dist/md/ic_more_time_twotone.js b/dist/md/ic_more_time_twotone.js new file mode 100644 index 000000000..3d9a0d7e3 --- /dev/null +++ b/dist/md/ic_more_time_twotone.js @@ -0,0 +1,79 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_more_time_twotone = void 0; +var ic_more_time_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "10,8 10,14 14.7,16.9 15.5,15.7 11.5,13.3 11.5,8" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "10,8 10,14 14.7,16.9 15.5,15.7 11.5,13.3 11.5,8" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M17.92,12c0.05,0.33,0.08,0.66,0.08,1c0,3.9-3.1,7-7,7s-7-3.1-7-7c0-3.9,3.1-7,7-7c0.7,0,1.37,0.1,2,0.29V4.23 C12.36,4.08,11.69,4,11,4c-5,0-9,4-9,9s4,9,9,9s9-4,9-9c0-0.34-0.02-0.67-0.06-1H17.92z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17.92,12c0.05,0.33,0.08,0.66,0.08,1c0,3.9-3.1,7-7,7s-7-3.1-7-7c0-3.9,3.1-7,7-7c0.7,0,1.37,0.1,2,0.29V4.23 C12.36,4.08,11.69,4,11,4c-5,0-9,4-9,9s4,9,9,9s9-4,9-9c0-0.34-0.02-0.67-0.06-1H17.92z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "20,5 20,2 18,2 18,5 15,5 15,7 18,7 18,10 20,10 20,7 23,7 23,5" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "20,5 20,2 18,2 18,5 15,5 15,7 18,7 18,10 20,10 20,7 23,7 23,5" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_more_time_twotone = ic_more_time_twotone; \ No newline at end of file diff --git a/dist/md/ic_more_twotone.js b/dist/md/ic_more_twotone.js new file mode 100644 index 000000000..e9b05aff4 --- /dev/null +++ b/dist/md/ic_more_twotone.js @@ -0,0 +1,55 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_more_twotone = void 0; +var ic_more_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7.06 5L2.4 12l4.67 7H22V5H7.06c.01 0 .01 0 0 0zM19 10.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-5 0c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-5 0c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 3H7c-.69 0-1.23.35-1.59.88L0 12l5.41 8.11c.36.53.97.89 1.66.89H22c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H7.07L2.4 12l4.66-7H22v14z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "9", + "cy": "12", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "14", + "cy": "12", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "19", + "cy": "12", + "r": "1.5" + }, + "children": [] + }] +}; +exports.ic_more_twotone = ic_more_twotone; \ No newline at end of file diff --git a/dist/md/ic_more_vert.js b/dist/md/ic_more_vert.js new file mode 100644 index 000000000..45fda777f --- /dev/null +++ b/dist/md/ic_more_vert.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_more_vert = void 0; +var ic_more_vert = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_more_vert = ic_more_vert; \ No newline at end of file diff --git a/dist/md/ic_more_vert_outline.js b/dist/md/ic_more_vert_outline.js new file mode 100644 index 000000000..2d8bc634e --- /dev/null +++ b/dist/md/ic_more_vert_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_more_vert_outline = void 0; +var ic_more_vert_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_more_vert_outline = ic_more_vert_outline; \ No newline at end of file diff --git a/dist/md/ic_more_vert_twotone.js b/dist/md/ic_more_vert_twotone.js new file mode 100644 index 000000000..34db95354 --- /dev/null +++ b/dist/md/ic_more_vert_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_more_vert_twotone = void 0; +var ic_more_vert_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_more_vert_twotone = ic_more_vert_twotone; \ No newline at end of file diff --git a/dist/md/ic_motion_photos_off.js b/dist/md/ic_motion_photos_off.js new file mode 100644 index 000000000..a82431add --- /dev/null +++ b/dist/md/ic_motion_photos_off.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_motion_photos_off = void 0; +var ic_motion_photos_off = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20.84 20.84L3.16 3.16 1.89 4.43l1.89 1.89C2.66 7.93 2 9.89 2 12c0 5.52 4.48 10 10 10 2.11 0 4.07-.66 5.68-1.77l1.89 1.89 1.27-1.28zM12 20c-4.41 0-8-3.59-8-8 0-1.55.45-3 1.22-4.23l1.46 1.46C6.25 10.06 6 11 6 12c0 3.31 2.69 6 6 6 1 0 1.94-.25 2.77-.68l1.46 1.46C15 19.55 13.55 20 12 20zM6.32 3.77C7.93 2.66 9.89 2 12 2c5.52 0 10 4.48 10 10 0 2.11-.66 4.07-1.77 5.68l-1.45-1.45C19.55 15 20 13.55 20 12c0-4.41-3.59-8-8-8-1.55 0-3 .45-4.23 1.22L6.32 3.77zM18 12c0 1-.25 1.94-.68 2.77L9.23 6.68C10.06 6.25 11 6 12 6c3.31 0 6 2.69 6 6z" + }, + "children": [] + }] +}; +exports.ic_motion_photos_off = ic_motion_photos_off; \ No newline at end of file diff --git a/dist/md/ic_motion_photos_on.js b/dist/md/ic_motion_photos_on.js new file mode 100644 index 000000000..e8c9f34b9 --- /dev/null +++ b/dist/md/ic_motion_photos_on.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_motion_photos_on = void 0; +var ic_motion_photos_on = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0", + "y": "0" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0", + "y": "0" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M10,16.5v-9l6,4.5L10,16.5z M22,12c0,5.52-4.48,10-10,10S2,17.52,2,12c0-1.19,0.22-2.32,0.6-3.38L4.48,9.3 C4.17,10.14,4,11.05,4,12c0,4.41,3.59,8,8,8s8-3.59,8-8s-3.59-8-8-8c-0.95,0-1.85,0.17-2.69,0.48L8.63,2.59C9.69,2.22,10.82,2,12,2 C17.52,2,22,6.48,22,12z M5.5,4C4.67,4,4,4.67,4,5.5S4.67,7,5.5,7S7,6.33,7,5.5S6.33,4,5.5,4z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M10,16.5v-9l6,4.5L10,16.5z M22,12c0,5.52-4.48,10-10,10S2,17.52,2,12c0-1.19,0.22-2.32,0.6-3.38L4.48,9.3 C4.17,10.14,4,11.05,4,12c0,4.41,3.59,8,8,8s8-3.59,8-8s-3.59-8-8-8c-0.95,0-1.85,0.17-2.69,0.48L8.63,2.59C9.69,2.22,10.82,2,12,2 C17.52,2,22,6.48,22,12z M5.5,4C4.67,4,4,4.67,4,5.5S4.67,7,5.5,7S7,6.33,7,5.5S6.33,4,5.5,4z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_motion_photos_on = ic_motion_photos_on; \ No newline at end of file diff --git a/dist/md/ic_motion_photos_on_outline.js b/dist/md/ic_motion_photos_on_outline.js new file mode 100644 index 000000000..01ad159c4 --- /dev/null +++ b/dist/md/ic_motion_photos_on_outline.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_motion_photos_on_outline = void 0; +var ic_motion_photos_on_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0", + "y": "0" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0", + "y": "0" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M10,16.5v-9l6,4.5L10,16.5z M22,12c0,5.52-4.48,10-10,10S2,17.52,2,12c0-1.19,0.22-2.32,0.6-3.38L4.48,9.3 C4.17,10.14,4,11.05,4,12c0,4.41,3.59,8,8,8s8-3.59,8-8s-3.59-8-8-8c-0.95,0-1.85,0.17-2.69,0.48L8.63,2.59C9.69,2.22,10.82,2,12,2 C17.52,2,22,6.48,22,12z M5.5,4C4.67,4,4,4.67,4,5.5S4.67,7,5.5,7S7,6.33,7,5.5S6.33,4,5.5,4z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M10,16.5v-9l6,4.5L10,16.5z M22,12c0,5.52-4.48,10-10,10S2,17.52,2,12c0-1.19,0.22-2.32,0.6-3.38L4.48,9.3 C4.17,10.14,4,11.05,4,12c0,4.41,3.59,8,8,8s8-3.59,8-8s-3.59-8-8-8c-0.95,0-1.85,0.17-2.69,0.48L8.63,2.59C9.69,2.22,10.82,2,12,2 C17.52,2,22,6.48,22,12z M5.5,4C4.67,4,4,4.67,4,5.5S4.67,7,5.5,7S7,6.33,7,5.5S6.33,4,5.5,4z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_motion_photos_on_outline = ic_motion_photos_on_outline; \ No newline at end of file diff --git a/dist/md/ic_motion_photos_on_twotone.js b/dist/md/ic_motion_photos_on_twotone.js new file mode 100644 index 000000000..77c4f163f --- /dev/null +++ b/dist/md/ic_motion_photos_on_twotone.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_motion_photos_on_twotone = void 0; +var ic_motion_photos_on_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0", + "y": "0" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0", + "y": "0" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M10,16.5v-9l6,4.5L10,16.5z M22,12c0,5.52-4.48,10-10,10S2,17.52,2,12c0-1.19,0.22-2.32,0.6-3.38L4.48,9.3 C4.17,10.14,4,11.05,4,12c0,4.41,3.59,8,8,8s8-3.59,8-8s-3.59-8-8-8c-0.95,0-1.85,0.17-2.69,0.48L8.63,2.59C9.69,2.22,10.82,2,12,2 C17.52,2,22,6.48,22,12z M5.5,4C4.67,4,4,4.67,4,5.5S4.67,7,5.5,7S7,6.33,7,5.5S6.33,4,5.5,4z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M10,16.5v-9l6,4.5L10,16.5z M22,12c0,5.52-4.48,10-10,10S2,17.52,2,12c0-1.19,0.22-2.32,0.6-3.38L4.48,9.3 C4.17,10.14,4,11.05,4,12c0,4.41,3.59,8,8,8s8-3.59,8-8s-3.59-8-8-8c-0.95,0-1.85,0.17-2.69,0.48L8.63,2.59C9.69,2.22,10.82,2,12,2 C17.52,2,22,6.48,22,12z M5.5,4C4.67,4,4,4.67,4,5.5S4.67,7,5.5,7S7,6.33,7,5.5S6.33,4,5.5,4z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_motion_photos_on_twotone = ic_motion_photos_on_twotone; \ No newline at end of file diff --git a/dist/md/ic_motion_photos_pause.js b/dist/md/ic_motion_photos_pause.js new file mode 100644 index 000000000..f18cd0f42 --- /dev/null +++ b/dist/md/ic_motion_photos_pause.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_motion_photos_pause = void 0; +var ic_motion_photos_pause = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22,12c0,5.52-4.48,10-10,10S2,17.52,2,12c0-1.19,0.22-2.32,0.6-3.38L4.48,9.3C4.17,10.14,4,11.05,4,12c0,4.41,3.59,8,8,8 s8-3.59,8-8s-3.59-8-8-8c-0.95,0-1.85,0.17-2.69,0.48L8.63,2.59C9.69,2.22,10.82,2,12,2C17.52,2,22,6.48,22,12z M5.5,4 C4.67,4,4,4.67,4,5.5S4.67,7,5.5,7S7,6.33,7,5.5S6.33,4,5.5,4z M18,12c0,3.31-2.69,6-6,6s-6-2.69-6-6s2.69-6,6-6S18,8.69,18,12z M11,9H9v6h2V9z M15,9h-2v6h2V9z" + }, + "children": [] + }] +}; +exports.ic_motion_photos_pause = ic_motion_photos_pause; \ No newline at end of file diff --git a/dist/md/ic_motion_photos_pause_outline.js b/dist/md/ic_motion_photos_pause_outline.js new file mode 100644 index 000000000..4b0ca990e --- /dev/null +++ b/dist/md/ic_motion_photos_pause_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_motion_photos_pause_outline = void 0; +var ic_motion_photos_pause_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22,12c0,5.52-4.48,10-10,10S2,17.52,2,12c0-1.19,0.22-2.32,0.6-3.38L4.48,9.3C4.17,10.14,4,11.05,4,12c0,4.41,3.59,8,8,8 s8-3.59,8-8s-3.59-8-8-8c-0.95,0-1.85,0.17-2.69,0.48L8.63,2.59C9.69,2.22,10.82,2,12,2C17.52,2,22,6.48,22,12z M5.5,7 C6.33,7,7,6.33,7,5.5S6.33,4,5.5,4S4,4.67,4,5.5S4.67,7,5.5,7z M9,9v6h2V9H9z M13,9v6h2V9H13z" + }, + "children": [] + }] +}; +exports.ic_motion_photos_pause_outline = ic_motion_photos_pause_outline; \ No newline at end of file diff --git a/dist/md/ic_motion_photos_pause_twotone.js b/dist/md/ic_motion_photos_pause_twotone.js new file mode 100644 index 000000000..0c9425a3d --- /dev/null +++ b/dist/md/ic_motion_photos_pause_twotone.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_motion_photos_pause_twotone = void 0; +var ic_motion_photos_pause_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22,12c0,5.52-4.48,10-10,10S2,17.52,2,12c0-1.19,0.22-2.32,0.6-3.38L4.48,9.3C4.17,10.14,4,11.05,4,12c0,4.41,3.59,8,8,8 s8-3.59,8-8s-3.59-8-8-8c-0.95,0-1.85,0.17-2.69,0.48L8.63,2.59C9.69,2.22,10.82,2,12,2C17.52,2,22,6.48,22,12z M5.5,7 C6.33,7,7,6.33,7,5.5S6.33,4,5.5,4S4,4.67,4,5.5S4.67,7,5.5,7z M9,9v6h2V9H9z M13,9v6h2V9H13z" + }, + "children": [] + }] +}; +exports.ic_motion_photos_pause_twotone = ic_motion_photos_pause_twotone; \ No newline at end of file diff --git a/dist/md/ic_motion_photos_paused.js b/dist/md/ic_motion_photos_paused.js new file mode 100644 index 000000000..df35f7cd3 --- /dev/null +++ b/dist/md/ic_motion_photos_paused.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_motion_photos_paused = void 0; +var ic_motion_photos_paused = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M22,12c0,5.52-4.48,10-10,10S2,17.52,2,12c0-1.19,0.22-2.32,0.6-3.38L4.48,9.3C4.17,10.14,4,11.05,4,12c0,4.41,3.59,8,8,8 s8-3.59,8-8s-3.59-8-8-8c-0.95,0-1.85,0.17-2.69,0.48L8.63,2.59C9.69,2.22,10.82,2,12,2C17.52,2,22,6.48,22,12z M5.5,4 C4.67,4,4,4.67,4,5.5S4.67,7,5.5,7S7,6.33,7,5.5S6.33,4,5.5,4z M11,16V8H9v8H11z M15,16V8h-2v8H15z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,12c0,5.52-4.48,10-10,10S2,17.52,2,12c0-1.19,0.22-2.32,0.6-3.38L4.48,9.3C4.17,10.14,4,11.05,4,12c0,4.41,3.59,8,8,8 s8-3.59,8-8s-3.59-8-8-8c-0.95,0-1.85,0.17-2.69,0.48L8.63,2.59C9.69,2.22,10.82,2,12,2C17.52,2,22,6.48,22,12z M5.5,4 C4.67,4,4,4.67,4,5.5S4.67,7,5.5,7S7,6.33,7,5.5S6.33,4,5.5,4z M11,16V8H9v8H11z M15,16V8h-2v8H15z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_motion_photos_paused = ic_motion_photos_paused; \ No newline at end of file diff --git a/dist/md/ic_motion_photos_paused_outline.js b/dist/md/ic_motion_photos_paused_outline.js new file mode 100644 index 000000000..5a0489c39 --- /dev/null +++ b/dist/md/ic_motion_photos_paused_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_motion_photos_paused_outline = void 0; +var ic_motion_photos_paused_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M22,12c0,5.52-4.48,10-10,10S2,17.52,2,12c0-1.19,0.22-2.32,0.6-3.38L4.48,9.3C4.17,10.14,4,11.05,4,12c0,4.41,3.59,8,8,8 s8-3.59,8-8s-3.59-8-8-8c-0.95,0-1.85,0.17-2.69,0.48L8.63,2.59C9.69,2.22,10.82,2,12,2C17.52,2,22,6.48,22,12z M5.5,4 C4.67,4,4,4.67,4,5.5S4.67,7,5.5,7S7,6.33,7,5.5S6.33,4,5.5,4z M11,16V8H9v8H11z M15,16V8h-2v8H15z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,12c0,5.52-4.48,10-10,10S2,17.52,2,12c0-1.19,0.22-2.32,0.6-3.38L4.48,9.3C4.17,10.14,4,11.05,4,12c0,4.41,3.59,8,8,8 s8-3.59,8-8s-3.59-8-8-8c-0.95,0-1.85,0.17-2.69,0.48L8.63,2.59C9.69,2.22,10.82,2,12,2C17.52,2,22,6.48,22,12z M5.5,4 C4.67,4,4,4.67,4,5.5S4.67,7,5.5,7S7,6.33,7,5.5S6.33,4,5.5,4z M11,16V8H9v8H11z M15,16V8h-2v8H15z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_motion_photos_paused_outline = ic_motion_photos_paused_outline; \ No newline at end of file diff --git a/dist/md/ic_motion_photos_paused_twotone.js b/dist/md/ic_motion_photos_paused_twotone.js new file mode 100644 index 000000000..053b56582 --- /dev/null +++ b/dist/md/ic_motion_photos_paused_twotone.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_motion_photos_paused_twotone = void 0; +var ic_motion_photos_paused_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M22,12c0,5.52-4.48,10-10,10S2,17.52,2,12c0-1.19,0.22-2.32,0.6-3.38L4.48,9.3C4.17,10.14,4,11.05,4,12c0,4.41,3.59,8,8,8 s8-3.59,8-8s-3.59-8-8-8c-0.95,0-1.85,0.17-2.69,0.48L8.63,2.59C9.69,2.22,10.82,2,12,2C17.52,2,22,6.48,22,12z M5.5,4 C4.67,4,4,4.67,4,5.5S4.67,7,5.5,7S7,6.33,7,5.5S6.33,4,5.5,4z M11,16V8H9v8H11z M15,16V8h-2v8H15z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,12c0,5.52-4.48,10-10,10S2,17.52,2,12c0-1.19,0.22-2.32,0.6-3.38L4.48,9.3C4.17,10.14,4,11.05,4,12c0,4.41,3.59,8,8,8 s8-3.59,8-8s-3.59-8-8-8c-0.95,0-1.85,0.17-2.69,0.48L8.63,2.59C9.69,2.22,10.82,2,12,2C17.52,2,22,6.48,22,12z M5.5,4 C4.67,4,4,4.67,4,5.5S4.67,7,5.5,7S7,6.33,7,5.5S6.33,4,5.5,4z M11,16V8H9v8H11z M15,16V8h-2v8H15z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_motion_photos_paused_twotone = ic_motion_photos_paused_twotone; \ No newline at end of file diff --git a/dist/md/ic_motorcycle.js b/dist/md/ic_motorcycle.js new file mode 100644 index 000000000..1df41bbf3 --- /dev/null +++ b/dist/md/ic_motorcycle.js @@ -0,0 +1,16 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_motorcycle = void 0; +var ic_motorcycle = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M19.44 9.03L15.41 5H11v2h3.59l2 2H5c-2.8 0-5 2.2-5 5s2.2 5 5 5c2.46 0 4.45-1.69 4.9-4h1.65l2.77-2.77c-.21.54-.32 1.14-.32 1.77 0 2.8 2.2 5 5 5s5-2.2 5-5c0-2.65-1.97-4.77-4.56-4.97zM7.82 15C7.4 16.15 6.28 17 5 17c-1.63 0-3-1.37-3-3s1.37-3 3-3c1.28 0 2.4.85 2.82 2H5v2h2.82zM19 17c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z" + } + }] +}; +exports.ic_motorcycle = ic_motorcycle; \ No newline at end of file diff --git a/dist/md/ic_mouse.js b/dist/md/ic_mouse.js new file mode 100644 index 000000000..5393a4585 --- /dev/null +++ b/dist/md/ic_mouse.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_mouse = void 0; +var ic_mouse = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 1.07V9h7c0-4.08-3.05-7.44-7-7.93zM4 15c0 4.42 3.58 8 8 8s8-3.58 8-8v-4H4v4zm7-13.93C7.05 1.56 4 4.92 4 9h7V1.07z" + }, + "children": [] + }] +}; +exports.ic_mouse = ic_mouse; \ No newline at end of file diff --git a/dist/md/ic_mouse_outline.js b/dist/md/ic_mouse_outline.js new file mode 100644 index 000000000..071fa0aa5 --- /dev/null +++ b/dist/md/ic_mouse_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_mouse_outline = void 0; +var ic_mouse_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 9c-.04-4.39-3.6-7.93-8-7.93S4.04 4.61 4 9v6c0 4.42 3.58 8 8 8s8-3.58 8-8V9zm-2 0h-5V3.16c2.81.47 4.96 2.9 5 5.84zm-7-5.84V9H6c.04-2.94 2.19-5.37 5-5.84zM18 15c0 3.31-2.69 6-6 6s-6-2.69-6-6v-4h12v4z" + }, + "children": [] + }] +}; +exports.ic_mouse_outline = ic_mouse_outline; \ No newline at end of file diff --git a/dist/md/ic_mouse_twotone.js b/dist/md/ic_mouse_twotone.js new file mode 100644 index 000000000..a3443d242 --- /dev/null +++ b/dist/md/ic_mouse_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_mouse_twotone = void 0; +var ic_mouse_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 3.16V9h5c-.04-2.94-2.19-5.37-5-5.84zm-2 0C8.19 3.63 6.04 6.06 6 9h5V3.16zM11 11H6v4c0 3.31 2.69 6 6 6s6-2.69 6-6v-4h-7z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 9c-.04-4.39-3.6-7.93-8-7.93S4.04 4.61 4 9v6c0 4.42 3.58 8 8 8s8-3.58 8-8V9zm-7-5.84c2.81.47 4.96 2.9 5 5.84h-5V3.16zm-2 0V9H6c.04-2.94 2.19-5.37 5-5.84zM18 15c0 3.31-2.69 6-6 6s-6-2.69-6-6v-4h12v4z" + }, + "children": [] + }] +}; +exports.ic_mouse_twotone = ic_mouse_twotone; \ No newline at end of file diff --git a/dist/md/ic_move_to_inbox.js b/dist/md/ic_move_to_inbox.js new file mode 100644 index 000000000..3217f5182 --- /dev/null +++ b/dist/md/ic_move_to_inbox.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_move_to_inbox = void 0; +var ic_move_to_inbox = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H4.99c-1.11 0-1.98.9-1.98 2L3 19c0 1.1.88 2 1.99 2H19c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 12h-4c0 1.66-1.35 3-3 3s-3-1.34-3-3H4.99V5H19v10zm-3-5h-2V7h-4v3H8l4 4 4-4z" + }, + "children": [] + }] +}; +exports.ic_move_to_inbox = ic_move_to_inbox; \ No newline at end of file diff --git a/dist/md/ic_move_to_inbox_outline.js b/dist/md/ic_move_to_inbox_outline.js new file mode 100644 index 000000000..c828afb87 --- /dev/null +++ b/dist/md/ic_move_to_inbox_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_move_to_inbox_outline = void 0; +var ic_move_to_inbox_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 9h-2.55V6h-2.9v3H8l4 4zm3-6H4.99C3.88 3 3 3.9 3 5v14c0 1.1.88 2 1.99 2H19c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5v-3h3.56c.69 1.19 1.97 2 3.45 2s2.75-.81 3.45-2H19v3zm0-5h-4.99c0 1.1-.9 2-2 2s-2-.9-2-2H5l-.01-9H19v9z" + }, + "children": [] + }] +}; +exports.ic_move_to_inbox_outline = ic_move_to_inbox_outline; \ No newline at end of file diff --git a/dist/md/ic_move_to_inbox_twotone.js b/dist/md/ic_move_to_inbox_twotone.js new file mode 100644 index 000000000..c02ff4e4b --- /dev/null +++ b/dist/md/ic_move_to_inbox_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_move_to_inbox_twotone = void 0; +var ic_move_to_inbox_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12.01 18c-1.48 0-2.75-.81-3.45-2H5v3h14v-3h-3.55c-.69 1.19-1.97 2-3.44 2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 9h-2.55V6h-2.9v3H8l4 4zm3-6H4.99C3.88 3 3 3.9 3 5v14c0 1.1.88 2 1.99 2H19c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5v-3h3.56c.69 1.19 1.97 2 3.45 2s2.75-.81 3.45-2H19v3zm0-5h-4.99c0 1.1-.9 2-2 2s-2-.9-2-2H5l-.01-9H19v9z" + }, + "children": [] + }] +}; +exports.ic_move_to_inbox_twotone = ic_move_to_inbox_twotone; \ No newline at end of file diff --git a/dist/md/ic_movie.js b/dist/md/ic_movie.js new file mode 100644 index 000000000..2639e0e08 --- /dev/null +++ b/dist/md/ic_movie.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_movie = void 0; +var ic_movie = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 4l2 4h-3l-2-4h-2l2 4h-3l-2-4H8l2 4H7L5 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4h-4z" + }, + "children": [] + }] +}; +exports.ic_movie = ic_movie; \ No newline at end of file diff --git a/dist/md/ic_movie_creation.js b/dist/md/ic_movie_creation.js new file mode 100644 index 000000000..f24050b84 --- /dev/null +++ b/dist/md/ic_movie_creation.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_movie_creation = void 0; +var ic_movie_creation = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 4l2 4h-3l-2-4h-2l2 4h-3l-2-4H8l2 4H7L5 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4h-4z" + }, + "children": [] + }] +}; +exports.ic_movie_creation = ic_movie_creation; \ No newline at end of file diff --git a/dist/md/ic_movie_creation_outline.js b/dist/md/ic_movie_creation_outline.js new file mode 100644 index 000000000..6332a074f --- /dev/null +++ b/dist/md/ic_movie_creation_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_movie_creation_outline = void 0; +var ic_movie_creation_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5.76 10H20v8H4V6.47M22 4h-4l2 4h-3l-2-4h-2l2 4h-3l-2-4H8l2 4H7L5 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4z" + }, + "children": [] + }] +}; +exports.ic_movie_creation_outline = ic_movie_creation_outline; \ No newline at end of file diff --git a/dist/md/ic_movie_creation_twotone.js b/dist/md/ic_movie_creation_twotone.js new file mode 100644 index 000000000..d65e9d791 --- /dev/null +++ b/dist/md/ic_movie_creation_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_movie_creation_twotone = void 0; +var ic_movie_creation_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 6.47V18h16v-8H5.76z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 4l2 4h-3l-2-4h-2l2 4h-3l-2-4H8l2 4H7L5 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4h-4zm2 14H4V6.47L5.76 10H20v8z" + }, + "children": [] + }] +}; +exports.ic_movie_creation_twotone = ic_movie_creation_twotone; \ No newline at end of file diff --git a/dist/md/ic_movie_filter.js b/dist/md/ic_movie_filter.js new file mode 100644 index 000000000..7ed516060 --- /dev/null +++ b/dist/md/ic_movie_filter.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_movie_filter = void 0; +var ic_movie_filter = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 4l2 3h-3l-2-3h-2l2 3h-3l-2-3H8l2 3H7L5 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4h-4zm-6.75 11.25L10 18l-1.25-2.75L6 14l2.75-1.25L10 10l1.25 2.75L14 14l-2.75 1.25zm5.69-3.31L16 14l-.94-2.06L13 11l2.06-.94L16 8l.94 2.06L19 11l-2.06.94z" + }, + "children": [] + }] +}; +exports.ic_movie_filter = ic_movie_filter; \ No newline at end of file diff --git a/dist/md/ic_movie_filter_outline.js b/dist/md/ic_movie_filter_outline.js new file mode 100644 index 000000000..ef91799e0 --- /dev/null +++ b/dist/md/ic_movie_filter_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_movie_filter_outline = void 0; +var ic_movie_filter_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 11l-.94 2.06L7 14l2.06.94L10 17l.94-2.06L13 14l-2.06-.94zm8.01-7l2 4h-3l-2-4h-2l2 4h-3l-2-4h-2l2 4h-3l-2-4h-1c-1.1 0-1.99.9-1.99 2l-.01 12c0 1.1.9 2 2 2h16c1.1 0 1.99-.9 1.99-2V4h-3.99zm2 14h-16V6.47L5.77 10H16l-.63 1.37L14 12l1.37.63L16 14l.63-1.37L18 12l-1.37-.63L16 10h4.01v8z" + }, + "children": [] + }] +}; +exports.ic_movie_filter_outline = ic_movie_filter_outline; \ No newline at end of file diff --git a/dist/md/ic_movie_filter_twotone.js b/dist/md/ic_movie_filter_twotone.js new file mode 100644 index 000000000..f705be810 --- /dev/null +++ b/dist/md/ic_movie_filter_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_movie_filter_twotone = void 0; +var ic_movie_filter_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16.63 11.37L18 12l-1.37.63L16 14l-.63-1.37L14 12l1.37-.63L16 10H5.77L4.01 6.47V18h16v-8H16l.63 1.37zm-5.69 3.57L10 17l-.94-2.06L7 14l2.06-.94L10 11l.94 2.06L13 14l-2.06.94z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 11l-.94 2.06L7 14l2.06.94L10 17l.94-2.06L13 14l-2.06-.94zm8.01-7l2 4h-3l-2-4h-2l2 4h-3l-2-4h-2l2 4h-3l-2-4h-1c-1.1 0-1.99.9-1.99 2l-.01 12c0 1.1.9 2 2 2h16c1.1 0 1.99-.9 1.99-2V4h-3.99zm2 14h-16V6.47L5.77 10H16l-.63 1.37L14 12l1.37.63L16 14l.63-1.37L18 12l-1.37-.63L16 10h4.01v8z" + }, + "children": [] + }] +}; +exports.ic_movie_filter_twotone = ic_movie_filter_twotone; \ No newline at end of file diff --git a/dist/md/ic_movie_outline.js b/dist/md/ic_movie_outline.js new file mode 100644 index 000000000..53dcca39b --- /dev/null +++ b/dist/md/ic_movie_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_movie_outline = void 0; +var ic_movie_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 6.47L5.76 10H20v8H4V6.47M22 4h-4l2 4h-3l-2-4h-2l2 4h-3l-2-4H8l2 4H7L5 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4z" + }, + "children": [] + }] +}; +exports.ic_movie_outline = ic_movie_outline; \ No newline at end of file diff --git a/dist/md/ic_movie_twotone.js b/dist/md/ic_movie_twotone.js new file mode 100644 index 000000000..ebe1ef692 --- /dev/null +++ b/dist/md/ic_movie_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_movie_twotone = void 0; +var ic_movie_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 10H5.76L4 6.47V18h16z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M2.01 6L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4h-4l2 4h-3l-2-4h-2l2 4h-3l-2-4H8l2 4H7L5 4H4c-1.1 0-1.99.9-1.99 2zM4 6.47L5.76 10H20v8H4V6.47z" + }, + "children": [] + }] +}; +exports.ic_movie_twotone = ic_movie_twotone; \ No newline at end of file diff --git a/dist/md/ic_mp.js b/dist/md/ic_mp.js new file mode 100644 index 000000000..4cf08f943 --- /dev/null +++ b/dist/md/ic_mp.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_mp = void 0; +var ic_mp = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM6.5 9H11c.55 0 1 .45 1 1v5h-1.5v-4.5h-1v3H8v-3H7V15H5.5v-5c0-.55.45-1 1-1zm9 6H14V9h3.5c.55 0 1 .45 1 1v2.5c0 .55-.45 1-1 1h-2V15zm0-3H17v-1.5h-1.5V12z" + }, + "children": [] + }] +}; +exports.ic_mp = ic_mp; \ No newline at end of file diff --git a/dist/md/ic_multiline_chart.js b/dist/md/ic_multiline_chart.js new file mode 100644 index 000000000..c299dd320 --- /dev/null +++ b/dist/md/ic_multiline_chart.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_multiline_chart = void 0; +var ic_multiline_chart = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 6.92l-1.41-1.41-2.85 3.21C15.68 6.4 12.83 5 9.61 5 6.72 5 4.07 6.16 2 8l1.42 1.42C5.12 7.93 7.27 7 9.61 7c2.74 0 5.09 1.26 6.77 3.24l-2.88 3.24-4-4L2 16.99l1.5 1.5 6-6.01 4 4 4.05-4.55c.75 1.35 1.25 2.9 1.44 4.55H21c-.22-2.3-.95-4.39-2.04-6.14L22 6.92z" + }, + "children": [] + }] +}; +exports.ic_multiline_chart = ic_multiline_chart; \ No newline at end of file diff --git a/dist/md/ic_multiline_chart_outline.js b/dist/md/ic_multiline_chart_outline.js new file mode 100644 index 000000000..21ee46261 --- /dev/null +++ b/dist/md/ic_multiline_chart_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_multiline_chart_outline = void 0; +var ic_multiline_chart_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 6.92l-1.41-1.41-2.85 3.21C15.68 6.4 12.83 5 9.61 5 6.72 5 4.07 6.16 2 8l1.42 1.42C5.12 7.93 7.27 7 9.61 7c2.74 0 5.09 1.26 6.77 3.24l-2.88 3.24-4-4L2 16.99l1.5 1.5 6-6.01 4 4 4.05-4.55c.75 1.35 1.25 2.9 1.44 4.55H21c-.22-2.3-.95-4.39-2.04-6.14L22 6.92z" + }, + "children": [] + }] +}; +exports.ic_multiline_chart_outline = ic_multiline_chart_outline; \ No newline at end of file diff --git a/dist/md/ic_multiline_chart_twotone.js b/dist/md/ic_multiline_chart_twotone.js new file mode 100644 index 000000000..165baa7a7 --- /dev/null +++ b/dist/md/ic_multiline_chart_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_multiline_chart_twotone = void 0; +var ic_multiline_chart_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 6.92l-1.41-1.41-2.85 3.21C15.68 6.4 12.83 5 9.61 5 6.72 5 4.07 6.16 2 8l1.42 1.42C5.12 7.93 7.27 7 9.61 7c2.74 0 5.09 1.26 6.77 3.24l-2.88 3.24-4-4L2 16.99l1.5 1.5 6-6.01 4 4 4.05-4.55c.75 1.35 1.25 2.9 1.44 4.55H21c-.22-2.3-.95-4.39-2.04-6.14L22 6.92z" + }, + "children": [] + }] +}; +exports.ic_multiline_chart_twotone = ic_multiline_chart_twotone; \ No newline at end of file diff --git a/dist/md/ic_multiple_stop.js b/dist/md/ic_multiple_stop.js new file mode 100644 index 000000000..b60e3a7a3 --- /dev/null +++ b/dist/md/ic_multiple_stop.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_multiple_stop = void 0; +var ic_multiple_stop = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M17,4l4,4l-4,4V9h-4V7h4V4z M10,7C9.45,7,9,7.45,9,8s0.45,1,1,1s1-0.45,1-1S10.55,7,10,7z M6,7C5.45,7,5,7.45,5,8 s0.45,1,1,1s1-0.45,1-1S6.55,7,6,7z M7,17h4v-2H7v-3l-4,4l4,4V17z M14,17c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1s-1,0.45-1,1 C13,16.55,13.45,17,14,17z M18,17c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1s-1,0.45-1,1C17,16.55,17.45,17,18,17z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,4l4,4l-4,4V9h-4V7h4V4z M10,7C9.45,7,9,7.45,9,8s0.45,1,1,1s1-0.45,1-1S10.55,7,10,7z M6,7C5.45,7,5,7.45,5,8 s0.45,1,1,1s1-0.45,1-1S6.55,7,6,7z M7,17h4v-2H7v-3l-4,4l4,4V17z M14,17c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1s-1,0.45-1,1 C13,16.55,13.45,17,14,17z M18,17c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1s-1,0.45-1,1C17,16.55,17.45,17,18,17z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_multiple_stop = ic_multiple_stop; \ No newline at end of file diff --git a/dist/md/ic_multiple_stop_outline.js b/dist/md/ic_multiple_stop_outline.js new file mode 100644 index 000000000..707a7d9ae --- /dev/null +++ b/dist/md/ic_multiple_stop_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_multiple_stop_outline = void 0; +var ic_multiple_stop_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M17,4l4,4l-4,4V9h-4V7h4V4z M10,7C9.45,7,9,7.45,9,8s0.45,1,1,1s1-0.45,1-1S10.55,7,10,7z M6,7C5.45,7,5,7.45,5,8 s0.45,1,1,1s1-0.45,1-1S6.55,7,6,7z M7,17h4v-2H7v-3l-4,4l4,4V17z M14,17c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1s-1,0.45-1,1 C13,16.55,13.45,17,14,17z M18,17c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1s-1,0.45-1,1C17,16.55,17.45,17,18,17z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,4l4,4l-4,4V9h-4V7h4V4z M10,7C9.45,7,9,7.45,9,8s0.45,1,1,1s1-0.45,1-1S10.55,7,10,7z M6,7C5.45,7,5,7.45,5,8 s0.45,1,1,1s1-0.45,1-1S6.55,7,6,7z M7,17h4v-2H7v-3l-4,4l4,4V17z M14,17c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1s-1,0.45-1,1 C13,16.55,13.45,17,14,17z M18,17c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1s-1,0.45-1,1C17,16.55,17.45,17,18,17z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_multiple_stop_outline = ic_multiple_stop_outline; \ No newline at end of file diff --git a/dist/md/ic_multiple_stop_twotone.js b/dist/md/ic_multiple_stop_twotone.js new file mode 100644 index 000000000..c8e53d3b5 --- /dev/null +++ b/dist/md/ic_multiple_stop_twotone.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_multiple_stop_twotone = void 0; +var ic_multiple_stop_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M17,4l4,4l-4,4V9h-4V7h4V4z M10,7C9.45,7,9,7.45,9,8s0.45,1,1,1s1-0.45,1-1S10.55,7,10,7z M6,7C5.45,7,5,7.45,5,8 s0.45,1,1,1s1-0.45,1-1S6.55,7,6,7z M7,17h4v-2H7v-3l-4,4l4,4V17z M14,17c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1s-1,0.45-1,1 C13,16.55,13.45,17,14,17z M18,17c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1s-1,0.45-1,1C17,16.55,17.45,17,18,17z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,4l4,4l-4,4V9h-4V7h4V4z M10,7C9.45,7,9,7.45,9,8s0.45,1,1,1s1-0.45,1-1S10.55,7,10,7z M6,7C5.45,7,5,7.45,5,8 s0.45,1,1,1s1-0.45,1-1S6.55,7,6,7z M7,17h4v-2H7v-3l-4,4l4,4V17z M14,17c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1s-1,0.45-1,1 C13,16.55,13.45,17,14,17z M18,17c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1s-1,0.45-1,1C17,16.55,17.45,17,18,17z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_multiple_stop_twotone = ic_multiple_stop_twotone; \ No newline at end of file diff --git a/dist/md/ic_museum.js b/dist/md/ic_museum.js new file mode 100644 index 000000000..921ce41c9 --- /dev/null +++ b/dist/md/ic_museum.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_museum = void 0; +var ic_museum = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,11V9L12,2L2,9v2h2v9H2v2h20v-2h-2v-9H22z M16,18h-2v-4l-2,3l-2-3v4H8v-7h2l2,3l2-3h2V18z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,11V9L12,2L2,9v2h2v9H2v2h20v-2h-2v-9H22z M16,18h-2v-4l-2,3l-2-3v4H8v-7h2l2,3l2-3h2V18z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_museum = ic_museum; \ No newline at end of file diff --git a/dist/md/ic_museum_outline.js b/dist/md/ic_museum_outline.js new file mode 100644 index 000000000..fd449c19c --- /dev/null +++ b/dist/md/ic_museum_outline.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_museum_outline = void 0; +var ic_museum_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,11V9L12,2L2,9v2h2v9H2v2h20v-2h-2v-9H22z M18,20H6V9h12V20z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,11V9L12,2L2,9v2h2v9H2v2h20v-2h-2v-9H22z M18,20H6V9h12V20z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "10,14 12,17 14,14 14,18 16,18 16,11 14,11 12,14 10,11 8,11 8,18 10,18" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "10,14 12,17 14,14 14,18 16,18 16,11 14,11 12,14 10,11 8,11 8,18 10,18" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_museum_outline = ic_museum_outline; \ No newline at end of file diff --git a/dist/md/ic_museum_twotone.js b/dist/md/ic_museum_twotone.js new file mode 100644 index 000000000..47cef399d --- /dev/null +++ b/dist/md/ic_museum_twotone.js @@ -0,0 +1,81 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_museum_twotone = void 0; +var ic_museum_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M6,20h12V9H6V20z M8,11h2l2,3l2-3h2v7h-2v-4l-2,3l-2-3v4H8V11z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M6,20h12V9H6V20z M8,11h2l2,3l2-3h2v7h-2v-4l-2,3l-2-3v4H8V11z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M22,11V9L12,2L2,9v2h2v9H2v2h20v-2h-2v-9H22z M18,20H6V9h12V20z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,11V9L12,2L2,9v2h2v9H2v2h20v-2h-2v-9H22z M18,20H6V9h12V20z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "10,14 12,17 14,14 14,18 16,18 16,11 14,11 12,14 10,11 8,11 8,18 10,18" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "10,14 12,17 14,14 14,18 16,18 16,11 14,11 12,14 10,11 8,11 8,18 10,18" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_museum_twotone = ic_museum_twotone; \ No newline at end of file diff --git a/dist/md/ic_music_note.js b/dist/md/ic_music_note.js new file mode 100644 index 000000000..de984863e --- /dev/null +++ b/dist/md/ic_music_note.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_music_note = void 0; +var ic_music_note = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 3v10.55c-.59-.34-1.27-.55-2-.55-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4V7h4V3h-6z" + }, + "children": [] + }] +}; +exports.ic_music_note = ic_music_note; \ No newline at end of file diff --git a/dist/md/ic_music_note_outline.js b/dist/md/ic_music_note_outline.js new file mode 100644 index 000000000..2b06b851b --- /dev/null +++ b/dist/md/ic_music_note_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_music_note_outline = void 0; +var ic_music_note_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 3l.01 10.55c-.59-.34-1.27-.55-2-.55C7.79 13 6 14.79 6 17s1.79 4 4.01 4S14 19.21 14 17V7h4V3h-6zm-1.99 16c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" + }, + "children": [] + }] +}; +exports.ic_music_note_outline = ic_music_note_outline; \ No newline at end of file diff --git a/dist/md/ic_music_note_twotone.js b/dist/md/ic_music_note_twotone.js new file mode 100644 index 000000000..f5c1e8ff4 --- /dev/null +++ b/dist/md/ic_music_note_twotone.js @@ -0,0 +1,33 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_music_note_twotone = void 0; +var ic_music_note_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "10.01", + "cy": "17", + "opacity": ".3", + "r": "2" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 3l.01 10.55c-.59-.34-1.27-.55-2-.55C7.79 13 6 14.79 6 17s1.79 4 4.01 4S14 19.21 14 17V7h4V3h-6zm-1.99 16c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" + }, + "children": [] + }] +}; +exports.ic_music_note_twotone = ic_music_note_twotone; \ No newline at end of file diff --git a/dist/md/ic_music_off.js b/dist/md/ic_music_off.js new file mode 100644 index 000000000..04b9d5430 --- /dev/null +++ b/dist/md/ic_music_off.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_music_off = void 0; +var ic_music_off = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4.27 3L3 4.27l9 9v.28c-.59-.34-1.27-.55-2-.55-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4v-1.73L19.73 21 21 19.73 4.27 3zM14 7h4V3h-6v5.18l2 2z" + }, + "children": [] + }] +}; +exports.ic_music_off = ic_music_off; \ No newline at end of file diff --git a/dist/md/ic_music_off_outline.js b/dist/md/ic_music_off_outline.js new file mode 100644 index 000000000..052023cee --- /dev/null +++ b/dist/md/ic_music_off_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_music_off_outline = void 0; +var ic_music_off_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 7h4V3h-6v4.61l2 2zm-2 3.44L4.41 2.86 3 4.27l9 9v.28c-.94-.54-2.1-.75-3.33-.32-1.34.48-2.37 1.67-2.61 3.07-.46 2.74 1.86 5.08 4.59 4.65 1.96-.31 3.35-2.11 3.35-4.1v-1.58L19.73 21l1.41-1.41L12 10.44zM10 19c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" + }, + "children": [] + }] +}; +exports.ic_music_off_outline = ic_music_off_outline; \ No newline at end of file diff --git a/dist/md/ic_music_off_twotone.js b/dist/md/ic_music_off_twotone.js new file mode 100644 index 000000000..352b47c0f --- /dev/null +++ b/dist/md/ic_music_off_twotone.js @@ -0,0 +1,33 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_music_off_twotone = void 0; +var ic_music_off_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "10", + "cy": "17", + "opacity": ".3", + "r": "2" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 7h4V3h-6v4.61l2 2zm-2 3.44L4.41 2.86 3 4.27l9 9v.28c-.94-.54-2.1-.75-3.33-.32-1.34.48-2.37 1.67-2.61 3.07-.46 2.74 1.86 5.08 4.59 4.65 1.96-.31 3.35-2.11 3.35-4.1v-1.58L19.73 21l1.41-1.41L12 10.44zM10 19c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" + }, + "children": [] + }] +}; +exports.ic_music_off_twotone = ic_music_off_twotone; \ No newline at end of file diff --git a/dist/md/ic_music_video.js b/dist/md/ic_music_video.js new file mode 100644 index 000000000..04ce2ffcf --- /dev/null +++ b/dist/md/ic_music_video.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_music_video = void 0; +var ic_music_video = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM8 15c0-1.66 1.34-3 3-3 .35 0 .69.07 1 .18V6h5v2h-3v7.03c-.02 1.64-1.35 2.97-3 2.97-1.66 0-3-1.34-3-3z" + }, + "children": [] + }] +}; +exports.ic_music_video = ic_music_video; \ No newline at end of file diff --git a/dist/md/ic_music_video_outline.js b/dist/md/ic_music_video_outline.js new file mode 100644 index 000000000..22a779211 --- /dev/null +++ b/dist/md/ic_music_video_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_music_video_outline = void 0; +var ic_music_video_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM8 15c0-1.66 1.34-3 3-3 .35 0 .69.07 1 .18V6h5v2h-3v7.03c-.02 1.64-1.35 2.97-3 2.97-1.66 0-3-1.34-3-3z" + }, + "children": [] + }] +}; +exports.ic_music_video_outline = ic_music_video_outline; \ No newline at end of file diff --git a/dist/md/ic_music_video_twotone.js b/dist/md/ic_music_video_twotone.js new file mode 100644 index 000000000..a865a6e56 --- /dev/null +++ b/dist/md/ic_music_video_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_music_video_twotone = void 0; +var ic_music_video_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 19h18V5H3v14zm8-7c.35 0 .69.07 1 .18V6h5v2h-3v7.03c-.02 1.64-1.35 2.97-3 2.97-1.66 0-3-1.34-3-3s1.34-3 3-3z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zm-10-1c1.65 0 2.98-1.33 3-2.97V8h3V6h-5v6.18c-.31-.11-.65-.18-1-.18-1.66 0-3 1.34-3 3s1.34 3 3 3z" + }, + "children": [] + }] +}; +exports.ic_music_video_twotone = ic_music_video_twotone; \ No newline at end of file diff --git a/dist/md/ic_my_location.js b/dist/md/ic_my_location.js new file mode 100644 index 000000000..646e8e26e --- /dev/null +++ b/dist/md/ic_my_location.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_my_location = void 0; +var ic_my_location = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm8.94 3c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" + }, + "children": [] + }] +}; +exports.ic_my_location = ic_my_location; \ No newline at end of file diff --git a/dist/md/ic_my_location_outline.js b/dist/md/ic_my_location_outline.js new file mode 100644 index 000000000..9778d7558 --- /dev/null +++ b/dist/md/ic_my_location_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_my_location_outline = void 0; +var ic_my_location_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm8.94 3c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" + }, + "children": [] + }] +}; +exports.ic_my_location_outline = ic_my_location_outline; \ No newline at end of file diff --git a/dist/md/ic_my_location_twotone.js b/dist/md/ic_my_location_twotone.js new file mode 100644 index 000000000..847b57cd6 --- /dev/null +++ b/dist/md/ic_my_location_twotone.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_my_location_twotone = void 0; +var ic_my_location_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 3.06V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06c-.46-4.17-3.77-7.48-7.94-7.94zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "opacity": ".3", + "r": "2" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" + }, + "children": [] + }] +}; +exports.ic_my_location_twotone = ic_my_location_twotone; \ No newline at end of file diff --git a/dist/md/ic_nat.js b/dist/md/ic_nat.js new file mode 100644 index 000000000..574e79929 --- /dev/null +++ b/dist/md/ic_nat.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_nat = void 0; +var ic_nat = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M6.82,13H11v-2H6.82C6.4,9.84,5.3,9,4,9c-1.66,0-3,1.34-3,3s1.34,3,3,3C5.3,15,6.4,14.16,6.82,13z M4,13 c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C5,12.55,4.55,13,4,13z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M6.82,13H11v-2H6.82C6.4,9.84,5.3,9,4,9c-1.66,0-3,1.34-3,3s1.34,3,3,3C5.3,15,6.4,14.16,6.82,13z M4,13 c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C5,12.55,4.55,13,4,13z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M23,12l-4-3v2h-4.05C14.45,5.95,10.19,2,5,2v2c4.42,0,8,3.58,8,8s-3.58,8-8,8v2c5.19,0,9.45-3.95,9.95-9H19v2L23,12z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M23,12l-4-3v2h-4.05C14.45,5.95,10.19,2,5,2v2c4.42,0,8,3.58,8,8s-3.58,8-8,8v2c5.19,0,9.45-3.95,9.95-9H19v2L23,12z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_nat = ic_nat; \ No newline at end of file diff --git a/dist/md/ic_nat_outline.js b/dist/md/ic_nat_outline.js new file mode 100644 index 000000000..aa3263b49 --- /dev/null +++ b/dist/md/ic_nat_outline.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_nat_outline = void 0; +var ic_nat_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M6.82,13H11v-2H6.82C6.4,9.84,5.3,9,4,9c-1.66,0-3,1.34-3,3s1.34,3,3,3C5.3,15,6.4,14.16,6.82,13z M4,13 c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C5,12.55,4.55,13,4,13z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M6.82,13H11v-2H6.82C6.4,9.84,5.3,9,4,9c-1.66,0-3,1.34-3,3s1.34,3,3,3C5.3,15,6.4,14.16,6.82,13z M4,13 c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C5,12.55,4.55,13,4,13z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M23,12l-4-3v2h-4.05C14.45,5.95,10.19,2,5,2v2c4.42,0,8,3.58,8,8s-3.58,8-8,8v2c5.19,0,9.45-3.95,9.95-9H19v2L23,12z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M23,12l-4-3v2h-4.05C14.45,5.95,10.19,2,5,2v2c4.42,0,8,3.58,8,8s-3.58,8-8,8v2c5.19,0,9.45-3.95,9.95-9H19v2L23,12z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_nat_outline = ic_nat_outline; \ No newline at end of file diff --git a/dist/md/ic_nat_twotone.js b/dist/md/ic_nat_twotone.js new file mode 100644 index 000000000..19bfdf250 --- /dev/null +++ b/dist/md/ic_nat_twotone.js @@ -0,0 +1,85 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_nat_twotone = void 0; +var ic_nat_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "cx": "4", + "cy": "12", + "opacity": ".3", + "r": "1" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "4", + "cy": "12", + "opacity": ".3", + "r": "1" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M6.82,13H11v-2H6.82C6.4,9.84,5.3,9,4,9c-1.66,0-3,1.34-3,3s1.34,3,3,3C5.3,15,6.4,14.16,6.82,13z M4,13 c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C5,12.55,4.55,13,4,13z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M6.82,13H11v-2H6.82C6.4,9.84,5.3,9,4,9c-1.66,0-3,1.34-3,3s1.34,3,3,3C5.3,15,6.4,14.16,6.82,13z M4,13 c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C5,12.55,4.55,13,4,13z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M23,12l-4-3v2h-4.05C14.45,5.95,10.19,2,5,2v2c4.42,0,8,3.58,8,8s-3.58,8-8,8v2c5.19,0,9.45-3.95,9.95-9H19v2L23,12z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M23,12l-4-3v2h-4.05C14.45,5.95,10.19,2,5,2v2c4.42,0,8,3.58,8,8s-3.58,8-8,8v2c5.19,0,9.45-3.95,9.95-9H19v2L23,12z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_nat_twotone = ic_nat_twotone; \ No newline at end of file diff --git a/dist/md/ic_nature.js b/dist/md/ic_nature.js new file mode 100644 index 000000000..28916b17a --- /dev/null +++ b/dist/md/ic_nature.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_nature = void 0; +var ic_nature = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 16.12c3.47-.41 6.17-3.36 6.17-6.95 0-3.87-3.13-7-7-7s-7 3.13-7 7c0 3.47 2.52 6.34 5.83 6.89V20H5v2h14v-2h-6v-3.88z" + }, + "children": [] + }] +}; +exports.ic_nature = ic_nature; \ No newline at end of file diff --git a/dist/md/ic_nature_outline.js b/dist/md/ic_nature_outline.js new file mode 100644 index 000000000..26f73a1b5 --- /dev/null +++ b/dist/md/ic_nature_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_nature_outline = void 0; +var ic_nature_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 16.12h-.03c3.49-.4 6.2-3.36 6.2-6.95 0-3.87-3.13-7-7-7s-7 3.13-7 7c0 3.47 2.52 6.34 5.83 6.89V20H5v2h14v-2h-6v-3.88zM7.17 9.17c0-2.76 2.24-5 5-5s5 2.24 5 5-2.24 5-5 5-5-2.24-5-5z" + }, + "children": [] + }] +}; +exports.ic_nature_outline = ic_nature_outline; \ No newline at end of file diff --git a/dist/md/ic_nature_people.js b/dist/md/ic_nature_people.js new file mode 100644 index 000000000..18acbf309 --- /dev/null +++ b/dist/md/ic_nature_people.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_nature_people = void 0; +var ic_nature_people = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22.17 9.17c0-3.87-3.13-7-7-7s-7 3.13-7 7c0 3.47 2.52 6.34 5.83 6.89V20H6v-3h1v-4c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v4h1v5h16v-2h-3v-3.88c3.47-.41 6.17-3.36 6.17-6.95zM4.5 11c.83 0 1.5-.67 1.5-1.5S5.33 8 4.5 8 3 8.67 3 9.5 3.67 11 4.5 11z" + }, + "children": [] + }] +}; +exports.ic_nature_people = ic_nature_people; \ No newline at end of file diff --git a/dist/md/ic_nature_people_outline.js b/dist/md/ic_nature_people_outline.js new file mode 100644 index 000000000..b69fcead8 --- /dev/null +++ b/dist/md/ic_nature_people_outline.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_nature_people_outline = void 0; +var ic_nature_people_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "4.5", + "cy": "9.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22.17 9.17c0-3.87-3.13-7-7-7s-7 3.13-7 7c0 3.47 2.52 6.34 5.83 6.89V20H6v-3h1v-4c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v4h1v5h16v-2h-3v-3.88c3.47-.41 6.17-3.36 6.17-6.95zm-7 5c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" + }, + "children": [] + }] +}; +exports.ic_nature_people_outline = ic_nature_people_outline; \ No newline at end of file diff --git a/dist/md/ic_nature_people_twotone.js b/dist/md/ic_nature_people_twotone.js new file mode 100644 index 000000000..7bd230db7 --- /dev/null +++ b/dist/md/ic_nature_people_twotone.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_nature_people_twotone = void 0; +var ic_nature_people_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "15.17", + "cy": "9.17", + "opacity": ".3", + "r": "5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "4.5", + "cy": "9.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.17 2.17c-3.87 0-7 3.13-7 7 0 3.47 2.52 6.34 5.83 6.89V20H6v-3h1v-4c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v4h1v5h16v-2h-3v-3.88c3.47-.41 6.17-3.36 6.17-6.95 0-3.87-3.13-7-7-7zm0 12c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" + }, + "children": [] + }] +}; +exports.ic_nature_people_twotone = ic_nature_people_twotone; \ No newline at end of file diff --git a/dist/md/ic_nature_twotone.js b/dist/md/ic_nature_twotone.js new file mode 100644 index 000000000..54c473e5f --- /dev/null +++ b/dist/md/ic_nature_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_nature_twotone = void 0; +var ic_nature_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12.17 4.17c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.25-5-5-5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.17 9.17c0-3.87-3.13-7-7-7s-7 3.13-7 7c0 3.47 2.52 6.34 5.83 6.89V20H5v2h14v-2h-6v-3.88h-.03c3.49-.4 6.2-3.36 6.2-6.95zm-7 5c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.25 5-5 5z" + }, + "children": [] + }] +}; +exports.ic_nature_twotone = ic_nature_twotone; \ No newline at end of file diff --git a/dist/md/ic_navigate_before.js b/dist/md/ic_navigate_before.js new file mode 100644 index 000000000..fbbcad6f4 --- /dev/null +++ b/dist/md/ic_navigate_before.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_navigate_before = void 0; +var ic_navigate_before = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z" + }, + "children": [] + }] +}; +exports.ic_navigate_before = ic_navigate_before; \ No newline at end of file diff --git a/dist/md/ic_navigate_before_outline.js b/dist/md/ic_navigate_before_outline.js new file mode 100644 index 000000000..c91a40e55 --- /dev/null +++ b/dist/md/ic_navigate_before_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_navigate_before_outline = void 0; +var ic_navigate_before_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.61 7.41L14.2 6l-6 6 6 6 1.41-1.41L11.03 12l4.58-4.59z" + }, + "children": [] + }] +}; +exports.ic_navigate_before_outline = ic_navigate_before_outline; \ No newline at end of file diff --git a/dist/md/ic_navigate_before_twotone.js b/dist/md/ic_navigate_before_twotone.js new file mode 100644 index 000000000..8b7f92ab3 --- /dev/null +++ b/dist/md/ic_navigate_before_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_navigate_before_twotone = void 0; +var ic_navigate_before_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14.2 6l-6 6 6 6 1.41-1.41L11.03 12l4.58-4.59z" + }, + "children": [] + }] +}; +exports.ic_navigate_before_twotone = ic_navigate_before_twotone; \ No newline at end of file diff --git a/dist/md/ic_navigate_next.js b/dist/md/ic_navigate_next.js new file mode 100644 index 000000000..a9f278979 --- /dev/null +++ b/dist/md/ic_navigate_next.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_navigate_next = void 0; +var ic_navigate_next = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z" + }, + "children": [] + }] +}; +exports.ic_navigate_next = ic_navigate_next; \ No newline at end of file diff --git a/dist/md/ic_navigate_next_outline.js b/dist/md/ic_navigate_next_outline.js new file mode 100644 index 000000000..2b2fcbd20 --- /dev/null +++ b/dist/md/ic_navigate_next_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_navigate_next_outline = void 0; +var ic_navigate_next_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10.02 6L8.61 7.41 13.19 12l-4.58 4.59L10.02 18l6-6-6-6z" + }, + "children": [] + }] +}; +exports.ic_navigate_next_outline = ic_navigate_next_outline; \ No newline at end of file diff --git a/dist/md/ic_navigate_next_twotone.js b/dist/md/ic_navigate_next_twotone.js new file mode 100644 index 000000000..dff7c342a --- /dev/null +++ b/dist/md/ic_navigate_next_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_navigate_next_twotone = void 0; +var ic_navigate_next_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10.02 18l6-6-6-6-1.41 1.41L13.19 12l-4.58 4.59z" + }, + "children": [] + }] +}; +exports.ic_navigate_next_twotone = ic_navigate_next_twotone; \ No newline at end of file diff --git a/dist/md/ic_navigation.js b/dist/md/ic_navigation.js new file mode 100644 index 000000000..5c128f7cf --- /dev/null +++ b/dist/md/ic_navigation.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_navigation = void 0; +var ic_navigation = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2L4.5 20.29l.71.71L12 18l6.79 3 .71-.71z" + }, + "children": [] + }] +}; +exports.ic_navigation = ic_navigation; \ No newline at end of file diff --git a/dist/md/ic_navigation_outline.js b/dist/md/ic_navigation_outline.js new file mode 100644 index 000000000..ed56f667e --- /dev/null +++ b/dist/md/ic_navigation_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_navigation_outline = void 0; +var ic_navigation_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 7.27l4.28 10.43-3.47-1.53-.81-.36-.81.36-3.47 1.53L12 7.27M12 2L4.5 20.29l.71.71L12 18l6.79 3 .71-.71L12 2z" + }, + "children": [] + }] +}; +exports.ic_navigation_outline = ic_navigation_outline; \ No newline at end of file diff --git a/dist/md/ic_navigation_twotone.js b/dist/md/ic_navigation_twotone.js new file mode 100644 index 000000000..43afc99de --- /dev/null +++ b/dist/md/ic_navigation_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_navigation_twotone = void 0; +var ic_navigation_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7.72 17.7l3.47-1.53.81-.36.81.36 3.47 1.53L12 7.27z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4.5 20.29l.71.71L12 18l6.79 3 .71-.71L12 2 4.5 20.29zm8.31-4.12l-.81-.36-.81.36-3.47 1.53L12 7.27l4.28 10.43-3.47-1.53z" + }, + "children": [] + }] +}; +exports.ic_navigation_twotone = ic_navigation_twotone; \ No newline at end of file diff --git a/dist/md/ic_near_me.js b/dist/md/ic_near_me.js new file mode 100644 index 000000000..971c71c5d --- /dev/null +++ b/dist/md/ic_near_me.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_near_me = void 0; +var ic_near_me = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 3L3 10.53v.98l6.84 2.65L12.48 21h.98L21 3z" + }, + "children": [] + }] +}; +exports.ic_near_me = ic_near_me; \ No newline at end of file diff --git a/dist/md/ic_near_me_disabled.js b/dist/md/ic_near_me_disabled.js new file mode 100644 index 000000000..854502d19 --- /dev/null +++ b/dist/md/ic_near_me_disabled.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_near_me_disabled = void 0; +var ic_near_me_disabled = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12,6.34L21,3l-3.34,9L12,6.34z M22.61,19.78L4.22,1.39L2.81,2.81l5.07,5.07L3,9.69v1.41l7.07,2.83L12.9,21h1.41l1.81-4.88 l5.07,5.07L22.61,19.78z" + }, + "children": [] + }] +}; +exports.ic_near_me_disabled = ic_near_me_disabled; \ No newline at end of file diff --git a/dist/md/ic_near_me_disabled_outline.js b/dist/md/ic_near_me_disabled_outline.js new file mode 100644 index 000000000..8ecdab076 --- /dev/null +++ b/dist/md/ic_near_me_disabled_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_near_me_disabled_outline = void 0; +var ic_near_me_disabled_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12,6.34L21,3l-3.34,9l-1.56-1.56l1.5-4.05l-4.05,1.5L12,6.34z M21.19,21.19l-5.07-5.07L14.31,21H12.9l-2.83-7.07L3,11.1 V9.69l4.88-1.81L2.81,2.81l1.41-1.41l18.38,18.38L21.19,21.19z M14.57,14.57L9.43,9.43l-2.71,1.01l4.89,1.95l1.95,4.89L14.57,14.57z" + }, + "children": [] + }] +}; +exports.ic_near_me_disabled_outline = ic_near_me_disabled_outline; \ No newline at end of file diff --git a/dist/md/ic_near_me_disabled_twotone.js b/dist/md/ic_near_me_disabled_twotone.js new file mode 100644 index 000000000..850ee3121 --- /dev/null +++ b/dist/md/ic_near_me_disabled_twotone.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_near_me_disabled_twotone = void 0; +var ic_near_me_disabled_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16.1,10.44l1.5-4.05l-4.05,1.5L16.1,10.44z M14.57,14.57L9.43,9.43l-2.71,1.01l4.89,1.95l1.95,4.89 L14.57,14.57z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12,6.34L21,3l-3.34,9l-1.56-1.56l1.5-4.05l-4.05,1.5L12,6.34z M21.19,21.19l-5.07-5.07L14.31,21H12.9l-2.83-7.07L3,11.1 V9.69l4.88-1.81L2.81,2.81l1.41-1.41l18.38,18.38L21.19,21.19z M14.57,14.57L9.43,9.43l-2.71,1.01l4.89,1.95l1.95,4.89L14.57,14.57z" + }, + "children": [] + }] +}; +exports.ic_near_me_disabled_twotone = ic_near_me_disabled_twotone; \ No newline at end of file diff --git a/dist/md/ic_near_me_outline.js b/dist/md/ic_near_me_outline.js new file mode 100644 index 000000000..ff0ce27b7 --- /dev/null +++ b/dist/md/ic_near_me_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_near_me_outline = void 0; +var ic_near_me_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17.27 6.73l-4.24 10.13-1.32-3.42-.32-.83-.82-.32-3.43-1.33 10.13-4.23M21 3L3 10.53v.98l6.84 2.65L12.48 21h.98L21 3z" + }, + "children": [] + }] +}; +exports.ic_near_me_outline = ic_near_me_outline; \ No newline at end of file diff --git a/dist/md/ic_near_me_twotone.js b/dist/md/ic_near_me_twotone.js new file mode 100644 index 000000000..9cde4b8fc --- /dev/null +++ b/dist/md/ic_near_me_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_near_me_twotone = void 0; +var ic_near_me_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.39 12.61l.32.83 1.32 3.42 4.24-10.13-10.13 4.24 3.42 1.33z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 11.51l6.84 2.65L12.48 21h.98L21 3 3 10.53v.98zm14.27-4.78l-4.24 10.13-1.32-3.42-.32-.83-.82-.32-3.43-1.33 10.13-4.23z" + }, + "children": [] + }] +}; +exports.ic_near_me_twotone = ic_near_me_twotone; \ No newline at end of file diff --git a/dist/md/ic_network_cell.js b/dist/md/ic_network_cell.js new file mode 100644 index 000000000..29a1e2ae6 --- /dev/null +++ b/dist/md/ic_network_cell.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_network_cell = void 0; +var ic_network_cell = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M2,22h20V2L2,22z M20,20h-3V9.83l3-3V20z" + }, + "children": [] + }] +}; +exports.ic_network_cell = ic_network_cell; \ No newline at end of file diff --git a/dist/md/ic_network_cell_twotone.js b/dist/md/ic_network_cell_twotone.js new file mode 100644 index 000000000..51f186d12 --- /dev/null +++ b/dist/md/ic_network_cell_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_network_cell_twotone = void 0; +var ic_network_cell_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M2 22h20V2L2 22z", + "fill-opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 7L2 22h15V7z" + }, + "children": [] + }] +}; +exports.ic_network_cell_twotone = ic_network_cell_twotone; \ No newline at end of file diff --git a/dist/md/ic_network_check.js b/dist/md/ic_network_check.js new file mode 100644 index 000000000..6df9d0460 --- /dev/null +++ b/dist/md/ic_network_check.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_network_check = void 0; +var ic_network_check = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.9 5c-.17 0-.32.09-.41.23l-.07.15-5.18 11.65c-.16.29-.26.61-.26.96 0 1.11.9 2.01 2.01 2.01.96 0 1.77-.68 1.96-1.59l.01-.03L16.4 5.5c0-.28-.22-.5-.5-.5zM1 9l2 2c2.88-2.88 6.79-4.08 10.53-3.62l1.19-2.68C9.89 3.84 4.74 5.27 1 9zm20 2l2-2c-1.64-1.64-3.55-2.82-5.59-3.57l-.53 2.82c1.5.62 2.9 1.53 4.12 2.75zm-4 4l2-2c-.8-.8-1.7-1.42-2.66-1.89l-.55 2.92c.42.27.83.59 1.21.97zM5 13l2 2c1.13-1.13 2.56-1.79 4.03-2l1.28-2.88c-2.63-.08-5.3.87-7.31 2.88z" + }, + "children": [] + }] +}; +exports.ic_network_check = ic_network_check; \ No newline at end of file diff --git a/dist/md/ic_network_check_outline.js b/dist/md/ic_network_check_outline.js new file mode 100644 index 000000000..392d92c9b --- /dev/null +++ b/dist/md/ic_network_check_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_network_check_outline = void 0; +var ic_network_check_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.9 5c-.17 0-.32.09-.41.23l-.07.15-5.18 11.65c-.16.29-.26.61-.26.96 0 1.11.9 2.01 2.01 2.01.96 0 1.77-.68 1.96-1.59l.01-.03L16.4 5.5c0-.28-.22-.5-.5-.5zM1 9l2 2c2.88-2.88 6.79-4.08 10.53-3.62l1.19-2.68C9.89 3.84 4.74 5.27 1 9zm20 2l2-2c-1.64-1.64-3.55-2.82-5.59-3.57l-.53 2.82c1.5.62 2.9 1.53 4.12 2.75zm-4 4l2-2c-.8-.8-1.7-1.42-2.66-1.89l-.55 2.92c.42.27.83.59 1.21.97zM5 13l2 2c1.13-1.13 2.56-1.79 4.03-2l1.28-2.88c-2.63-.08-5.3.87-7.31 2.88z" + }, + "children": [] + }] +}; +exports.ic_network_check_outline = ic_network_check_outline; \ No newline at end of file diff --git a/dist/md/ic_network_check_twotone.js b/dist/md/ic_network_check_twotone.js new file mode 100644 index 000000000..9734c8e6c --- /dev/null +++ b/dist/md/ic_network_check_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_network_check_twotone = void 0; +var ic_network_check_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.9 5c-.17 0-.32.09-.41.23l-.07.15-5.18 11.65c-.16.29-.26.61-.26.96 0 1.11.9 2.01 2.01 2.01.96 0 1.77-.68 1.96-1.59l.01-.03L16.4 5.5c0-.28-.22-.5-.5-.5zM1 9l2 2c2.88-2.88 6.79-4.08 10.53-3.62l1.19-2.68C9.89 3.84 4.74 5.27 1 9zm20 2l2-2c-1.64-1.64-3.55-2.82-5.59-3.57l-.53 2.82c1.5.62 2.9 1.53 4.12 2.75zm-4 4l2-2c-.8-.8-1.7-1.42-2.66-1.89l-.55 2.92c.42.27.83.59 1.21.97zM5 13l2 2c1.13-1.13 2.56-1.79 4.03-2l1.28-2.88c-2.63-.08-5.3.87-7.31 2.88z" + }, + "children": [] + }] +}; +exports.ic_network_check_twotone = ic_network_check_twotone; \ No newline at end of file diff --git a/dist/md/ic_network_locked.js b/dist/md/ic_network_locked.js new file mode 100644 index 000000000..5f9dae538 --- /dev/null +++ b/dist/md/ic_network_locked.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_network_locked = void 0; +var ic_network_locked = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0zm0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.5 10c.17 0 .33.03.5.05V1L1 20h13v-3c0-.89.39-1.68 1-2.23v-.27c0-2.48 2.02-4.5 4.5-4.5zm2.5 6v-1.5c0-1.38-1.12-2.5-2.5-2.5S17 13.12 17 14.5V16c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1zm-1 0h-3v-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5V16z" + }, + "children": [] + }] +}; +exports.ic_network_locked = ic_network_locked; \ No newline at end of file diff --git a/dist/md/ic_network_locked_outline.js b/dist/md/ic_network_locked_outline.js new file mode 100644 index 000000000..2e4fa3e46 --- /dev/null +++ b/dist/md/ic_network_locked_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_network_locked_outline = void 0; +var ic_network_locked_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0zm0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 16v-.5c0-1.38-1.12-2.5-2.5-2.5S17 14.12 17 15.5v.5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1zm-1 0h-3v-.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v.5zM18 5.83v5.43c.47-.16.97-.26 1.5-.26.17 0 .33.03.5.05V1L1 20h13v-2H5.83L18 5.83z" + }, + "children": [] + }] +}; +exports.ic_network_locked_outline = ic_network_locked_outline; \ No newline at end of file diff --git a/dist/md/ic_network_locked_twotone.js b/dist/md/ic_network_locked_twotone.js new file mode 100644 index 000000000..d29115bbe --- /dev/null +++ b/dist/md/ic_network_locked_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_network_locked_twotone = void 0; +var ic_network_locked_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0zm0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 16v-.5c0-1.38-1.12-2.5-2.5-2.5S17 14.12 17 15.5v.5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1zm-1 0h-3v-.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v.5zM18 5.83v5.43c.47-.16.97-.26 1.5-.26.17 0 .33.03.5.05V1L1 20h13v-2H5.83L18 5.83z" + }, + "children": [] + }] +}; +exports.ic_network_locked_twotone = ic_network_locked_twotone; \ No newline at end of file diff --git a/dist/md/ic_network_wifi.js b/dist/md/ic_network_wifi.js new file mode 100644 index 000000000..3f826c96b --- /dev/null +++ b/dist/md/ic_network_wifi.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_network_wifi = void 0; +var ic_network_wifi = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "path", + "attribs": { + "d": "M24,8.98C20.93,5.9,16.69,4,12,4C7.31,4,3.07,5.9,0,8.98L12,21v0l0,0L24,8.98z M2.92,9.07C5.51,7.08,8.67,6,12,6 s6.49,1.08,9.08,3.07l-1.43,1.43C17.5,8.94,14.86,8,12,8s-5.5,0.94-7.65,2.51L2.92,9.07z" + }, + "children": [] + }] +}; +exports.ic_network_wifi = ic_network_wifi; \ No newline at end of file diff --git a/dist/md/ic_network_wifi_twotone.js b/dist/md/ic_network_wifi_twotone.js new file mode 100644 index 000000000..3d38da294 --- /dev/null +++ b/dist/md/ic_network_wifi_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_network_wifi_twotone = void 0; +var ic_network_wifi_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7L12 21.5 23.64 7z", + "fill-opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3.53 10.94L12 21.5l8.47-10.56c-.43-.33-3.66-2.95-8.47-2.95s-8.04 2.62-8.47 2.95z" + }, + "children": [] + }] +}; +exports.ic_network_wifi_twotone = ic_network_wifi_twotone; \ No newline at end of file diff --git a/dist/md/ic_new_releases.js b/dist/md/ic_new_releases.js new file mode 100644 index 000000000..cca596d43 --- /dev/null +++ b/dist/md/ic_new_releases.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_new_releases = void 0; +var ic_new_releases = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M23 12l-2.44-2.78.34-3.68-3.61-.82-1.89-3.18L12 3 8.6 1.54 6.71 4.72l-3.61.81.34 3.68L1 12l2.44 2.78-.34 3.69 3.61.82 1.89 3.18L12 21l3.4 1.46 1.89-3.18 3.61-.82-.34-3.68L23 12zm-10 5h-2v-2h2v2zm0-4h-2V7h2v6z" + }, + "children": [] + }] +}; +exports.ic_new_releases = ic_new_releases; \ No newline at end of file diff --git a/dist/md/ic_new_releases_outline.js b/dist/md/ic_new_releases_outline.js new file mode 100644 index 000000000..1f8f18243 --- /dev/null +++ b/dist/md/ic_new_releases_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_new_releases_outline = void 0; +var ic_new_releases_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M23 12l-2.44-2.78.34-3.68-3.61-.82-1.89-3.18L12 3 8.6 1.54 6.71 4.72l-3.61.81.34 3.68L1 12l2.44 2.78-.34 3.69 3.61.82 1.89 3.18L12 21l3.4 1.46 1.89-3.18 3.61-.82-.34-3.68L23 12zm-4.51 2.11l.26 2.79-2.74.62-1.43 2.41L12 18.82l-2.58 1.11-1.43-2.41-2.74-.62.26-2.8L3.66 12l1.85-2.12-.26-2.78 2.74-.61 1.43-2.41L12 5.18l2.58-1.11 1.43 2.41 2.74.62-.26 2.79L20.34 12l-1.85 2.11zM11 15h2v2h-2zm0-8h2v6h-2z" + }, + "children": [] + }] +}; +exports.ic_new_releases_outline = ic_new_releases_outline; \ No newline at end of file diff --git a/dist/md/ic_new_releases_twotone.js b/dist/md/ic_new_releases_twotone.js new file mode 100644 index 000000000..fd02f6556 --- /dev/null +++ b/dist/md/ic_new_releases_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_new_releases_twotone = void 0; +var ic_new_releases_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18.49 9.89l.26-2.79-2.74-.62-1.43-2.41L12 5.18 9.42 4.07 7.99 6.48l-2.74.62.26 2.78L3.66 12l1.85 2.11-.26 2.8 2.74.62 1.43 2.41L12 18.82l2.58 1.11 1.43-2.41 2.74-.62-.26-2.79L20.34 12l-1.85-2.11zM13 17h-2v-2h2v2zm0-4h-2V7h2v6z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20.9 5.54l-3.61-.82-1.89-3.18L12 3 8.6 1.54 6.71 4.72l-3.61.81.34 3.68L1 12l2.44 2.78-.34 3.69 3.61.82 1.89 3.18L12 21l3.4 1.46 1.89-3.18 3.61-.82-.34-3.68L23 12l-2.44-2.78.34-3.68zM18.75 16.9l-2.74.62-1.43 2.41L12 18.82l-2.58 1.11-1.43-2.41-2.74-.62.26-2.8L3.66 12l1.85-2.12-.26-2.78 2.74-.61 1.43-2.41L12 5.18l2.58-1.11 1.43 2.41 2.74.62-.26 2.79L20.34 12l-1.85 2.11.26 2.79zM11 15h2v2h-2zm0-8h2v6h-2z" + }, + "children": [] + }] +}; +exports.ic_new_releases_twotone = ic_new_releases_twotone; \ No newline at end of file diff --git a/dist/md/ic_next_plan.js b/dist/md/ic_next_plan.js new file mode 100644 index 000000000..bf7ed44c3 --- /dev/null +++ b/dist/md/ic_next_plan.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_next_plan = void 0; +var ic_next_plan = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M18,13.97h-5l2.26-2.26 c-0.91-1.06-2.25-1.74-3.76-1.74c-2.37,0-4.35,1.66-4.86,3.88l-0.96-0.32c0.64-2.62,3-4.56,5.82-4.56c1.78,0,3.37,0.79,4.47,2.03 L18,8.97V13.97z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M18,13.97h-5l2.26-2.26 c-0.91-1.06-2.25-1.74-3.76-1.74c-2.37,0-4.35,1.66-4.86,3.88l-0.96-0.32c0.64-2.62,3-4.56,5.82-4.56c1.78,0,3.37,0.79,4.47,2.03 L18,8.97V13.97z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_next_plan = ic_next_plan; \ No newline at end of file diff --git a/dist/md/ic_next_plan_outline.js b/dist/md/ic_next_plan_outline.js new file mode 100644 index 000000000..7d341b26d --- /dev/null +++ b/dist/md/ic_next_plan_outline.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_next_plan_outline = void 0; +var ic_next_plan_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,20c-4.42,0-8-3.58-8-8 s3.58-8,8-8s8,3.58,8,8S16.42,20,12,20z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,20c-4.42,0-8-3.58-8-8 s3.58-8,8-8s8,3.58,8,8S16.42,20,12,20z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M15.97,11.03C14.87,9.79,13.28,9,11.5,9c-2.82,0-5.18,1.95-5.82,4.56l0.96,0.32C7.15,11.66,9.13,10,11.5,10 c1.51,0,2.85,0.68,3.76,1.74L13,14h5V9L15.97,11.03z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15.97,11.03C14.87,9.79,13.28,9,11.5,9c-2.82,0-5.18,1.95-5.82,4.56l0.96,0.32C7.15,11.66,9.13,10,11.5,10 c1.51,0,2.85,0.68,3.76,1.74L13,14h5V9L15.97,11.03z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_next_plan_outline = ic_next_plan_outline; \ No newline at end of file diff --git a/dist/md/ic_next_plan_twotone.js b/dist/md/ic_next_plan_twotone.js new file mode 100644 index 000000000..d46837cef --- /dev/null +++ b/dist/md/ic_next_plan_twotone.js @@ -0,0 +1,81 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_next_plan_twotone = void 0; +var ic_next_plan_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,4c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S16.42,4,12,4z M13,14l2.26-2.26 C14.35,10.68,13.01,10,11.5,10c-2.37,0-4.35,1.66-4.86,3.88l-0.96-0.32C6.32,10.95,8.68,9,11.5,9c1.78,0,3.37,0.79,4.47,2.03L18,9 v5H13z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,4c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S16.42,4,12,4z M13,14l2.26-2.26 C14.35,10.68,13.01,10,11.5,10c-2.37,0-4.35,1.66-4.86,3.88l-0.96-0.32C6.32,10.95,8.68,9,11.5,9c1.78,0,3.37,0.79,4.47,2.03L18,9 v5H13z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,20c-4.42,0-8-3.58-8-8 s3.58-8,8-8s8,3.58,8,8S16.42,20,12,20z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,20c-4.42,0-8-3.58-8-8 s3.58-8,8-8s8,3.58,8,8S16.42,20,12,20z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M15.97,11.03C14.87,9.79,13.28,9,11.5,9c-2.82,0-5.18,1.95-5.82,4.56l0.96,0.32C7.15,11.66,9.13,10,11.5,10 c1.51,0,2.85,0.68,3.76,1.74L13,14h5V9L15.97,11.03z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15.97,11.03C14.87,9.79,13.28,9,11.5,9c-2.82,0-5.18,1.95-5.82,4.56l0.96,0.32C7.15,11.66,9.13,10,11.5,10 c1.51,0,2.85,0.68,3.76,1.74L13,14h5V9L15.97,11.03z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_next_plan_twotone = ic_next_plan_twotone; \ No newline at end of file diff --git a/dist/md/ic_next_week.js b/dist/md/ic_next_week.js new file mode 100644 index 000000000..57299c160 --- /dev/null +++ b/dist/md/ic_next_week.js @@ -0,0 +1,65 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_next_week = void 0; +var ic_next_week = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,7h-4V5c0-0.55-0.22-1.05-0.59-1.41C15.05,3.22,14.55,3,14,3h-4C8.9,3,8,3.9,8,5v2H4C2.9,7,2,7.9,2,9v11 c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V9C22,7.9,21.1,7,20,7z M10,5h4v2h-4V5z M11,18.5l-1-1l3-3l-3-3l1-1l4,4L11,18.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,7h-4V5c0-0.55-0.22-1.05-0.59-1.41C15.05,3.22,14.55,3,14,3h-4C8.9,3,8,3.9,8,5v2H4C2.9,7,2,7.9,2,9v11 c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V9C22,7.9,21.1,7,20,7z M10,5h4v2h-4V5z M11,18.5l-1-1l3-3l-3-3l1-1l4,4L11,18.5z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_next_week = ic_next_week; \ No newline at end of file diff --git a/dist/md/ic_next_week_outline.js b/dist/md/ic_next_week_outline.js new file mode 100644 index 000000000..0862bb9b7 --- /dev/null +++ b/dist/md/ic_next_week_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_next_week_outline = void 0; +var ic_next_week_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 18.5l4-4-4-4-1 1 3 3-3 3zM20 7h-4V5c0-.55-.22-1.05-.59-1.41C15.05 3.22 14.55 3 14 3h-4c-1.1 0-2 .9-2 2v2H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zM10 5h4v2h-4V5zm10 15H4V9h16v11z" + }, + "children": [] + }] +}; +exports.ic_next_week_outline = ic_next_week_outline; \ No newline at end of file diff --git a/dist/md/ic_next_week_twotone.js b/dist/md/ic_next_week_twotone.js new file mode 100644 index 000000000..ebefcb1fa --- /dev/null +++ b/dist/md/ic_next_week_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_next_week_twotone = void 0; +var ic_next_week_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 20h16V9H4v11zm6-8.5l1-1 4 4-4 4-1-1 3-3-3-3z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 18.5l4-4-4-4-1 1 3 3-3 3zM20 7h-4V5c0-.55-.22-1.05-.59-1.41C15.05 3.22 14.55 3 14 3h-4c-1.1 0-2 .9-2 2v2H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zM10 5h4v2h-4V5zm10 15H4V9h16v11z" + }, + "children": [] + }] +}; +exports.ic_next_week_twotone = ic_next_week_twotone; \ No newline at end of file diff --git a/dist/md/ic_nfc.js b/dist/md/ic_nfc.js new file mode 100644 index 000000000..f2c1821cd --- /dev/null +++ b/dist/md/ic_nfc.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_nfc = void 0; +var ic_nfc = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 20h16V4H4v16z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H4V4h16v16zM18 6h-5c-1.1 0-2 .9-2 2v2.28c-.6.35-1 .98-1 1.72 0 1.1.9 2 2 2s2-.9 2-2c0-.74-.4-1.38-1-1.72V8h3v8H8V8h2V6H6v12h12V6z" + }, + "children": [] + }] +}; +exports.ic_nfc = ic_nfc; \ No newline at end of file diff --git a/dist/md/ic_nfc_outline.js b/dist/md/ic_nfc_outline.js new file mode 100644 index 000000000..23c64f437 --- /dev/null +++ b/dist/md/ic_nfc_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_nfc_outline = void 0; +var ic_nfc_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H4V4h16v16zM18 6h-5c-1.1 0-2 .9-2 2v2.28c-.6.35-1 .98-1 1.72 0 1.1.9 2 2 2s2-.9 2-2c0-.74-.4-1.38-1-1.72V8h3v8H8V8h2V6H6v12h12V6z" + }, + "children": [] + }] +}; +exports.ic_nfc_outline = ic_nfc_outline; \ No newline at end of file diff --git a/dist/md/ic_nfc_twotone.js b/dist/md/ic_nfc_twotone.js new file mode 100644 index 000000000..1358bdbf1 --- /dev/null +++ b/dist/md/ic_nfc_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_nfc_twotone = void 0; +var ic_nfc_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H4V4h16v16zM18 6h-5c-1.1 0-2 .9-2 2v2.28c-.6.35-1 .98-1 1.72 0 1.1.9 2 2 2s2-.9 2-2c0-.74-.4-1.38-1-1.72V8h3v8H8V8h2V6H6v12h12V6z" + }, + "children": [] + }] +}; +exports.ic_nfc_twotone = ic_nfc_twotone; \ No newline at end of file diff --git a/dist/md/ic_night_shelter.js b/dist/md/ic_night_shelter.js new file mode 100644 index 000000000..836b516a5 --- /dev/null +++ b/dist/md/ic_night_shelter.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_night_shelter = void 0; +var ic_night_shelter = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12,3L4,9v12h16V9L12,3z M9.75,12.5c0.69,0,1.25,0.56,1.25,1.25S10.44,15,9.75,15S8.5,14.44,8.5,13.75S9.06,12.5,9.75,12.5z M17,18h-1v-1.5H8V18H7v-7h1v4.5h3.5V12H15c1.1,0,2,0.9,2,2V18z" + }, + "children": [] + }] +}; +exports.ic_night_shelter = ic_night_shelter; \ No newline at end of file diff --git a/dist/md/ic_night_shelter_outline.js b/dist/md/ic_night_shelter_outline.js new file mode 100644 index 000000000..a88591543 --- /dev/null +++ b/dist/md/ic_night_shelter_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_night_shelter_outline = void 0; +var ic_night_shelter_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12,5.5l6,4.5v9H6v-9L12,5.5 M12,3L4,9v12h16V9L12,3L12,3z M15,12h-3.5v3.5H8V11H7v7h1v-1.5h8V18h1v-4 C17,12.9,16.1,12,15,12z M9.75,12.5c-0.69,0-1.25,0.56-1.25,1.25C8.5,14.44,9.06,15,9.75,15S11,14.44,11,13.75 C11,13.06,10.44,12.5,9.75,12.5z" + }, + "children": [] + }] +}; +exports.ic_night_shelter_outline = ic_night_shelter_outline; \ No newline at end of file diff --git a/dist/md/ic_night_shelter_twotone.js b/dist/md/ic_night_shelter_twotone.js new file mode 100644 index 000000000..5c4f0cc9e --- /dev/null +++ b/dist/md/ic_night_shelter_twotone.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_night_shelter_twotone = void 0; +var ic_night_shelter_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12,5.5l6,4.5v9H6v-9L12,5.5 M15,12h-3.5v3.5H8V11H7v7h1v-1.5h8V18h1v-4C17,12.9,16.1,12,15,12z M9.75,12.5 c-0.69,0-1.25,0.56-1.25,1.25C8.5,14.44,9.06,15,9.75,15S11,14.44,11,13.75C11,13.06,10.44,12.5,9.75,12.5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12,5.5l6,4.5v9H6v-9L12,5.5 M12,3L4,9v12h16V9L12,3L12,3z M15,12h-3.5v3.5H8V11H7v7h1v-1.5h8V18h1v-4 C17,12.9,16.1,12,15,12z M9.75,12.5c-0.69,0-1.25,0.56-1.25,1.25C8.5,14.44,9.06,15,9.75,15S11,14.44,11,13.75 C11,13.06,10.44,12.5,9.75,12.5z" + }, + "children": [] + }] +}; +exports.ic_night_shelter_twotone = ic_night_shelter_twotone; \ No newline at end of file diff --git a/dist/md/ic_nightlife.js b/dist/md/ic_nightlife.js new file mode 100644 index 000000000..e81d8178a --- /dev/null +++ b/dist/md/ic_nightlife.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_nightlife = void 0; +var ic_nightlife = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M1,5h14l-6,9v4h2v2H5v-2h2v-4L1,5z M10.1,9l1.4-2H4.49l1.4,2H10.1z M17,5h5v3h-3v9h0c0,1.66-1.34,3-3,3s-3-1.34-3-3 s1.34-3,3-3c0.35,0,0.69,0.06,1,0.17L17,5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M1,5h14l-6,9v4h2v2H5v-2h2v-4L1,5z M10.1,9l1.4-2H4.49l1.4,2H10.1z M17,5h5v3h-3v9h0c0,1.66-1.34,3-3,3s-3-1.34-3-3 s1.34-3,3-3c0.35,0,0.69,0.06,1,0.17L17,5z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_nightlife = ic_nightlife; \ No newline at end of file diff --git a/dist/md/ic_nightlight_round.js b/dist/md/ic_nightlight_round.js new file mode 100644 index 000000000..ce441223e --- /dev/null +++ b/dist/md/ic_nightlight_round.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_nightlight_round = void 0; +var ic_nightlight_round = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12.01 12c0-3.57 2.2-6.62 5.31-7.87.89-.36.75-1.69-.19-1.9-1.1-.24-2.27-.3-3.48-.14-4.51.6-8.12 4.31-8.59 8.83C4.44 16.93 9.13 22 15.01 22c.73 0 1.43-.08 2.12-.23.95-.21 1.1-1.53.2-1.9-3.22-1.29-5.33-4.41-5.32-7.87z" + }, + "children": [] + }] +}; +exports.ic_nightlight_round = ic_nightlight_round; \ No newline at end of file diff --git a/dist/md/ic_nights_stay.js b/dist/md/ic_nights_stay.js new file mode 100644 index 000000000..c092f6b20 --- /dev/null +++ b/dist/md/ic_nights_stay.js @@ -0,0 +1,75 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_nights_stay = void 0; +var ic_nights_stay = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M11.1,12.08C8.77,7.57,10.6,3.6,11.63,2.01C6.27,2.2,1.98,6.59,1.98,12c0,0.14,0.02,0.28,0.02,0.42 C2.62,12.15,3.29,12,4,12c1.66,0,3.18,0.83,4.1,2.15C9.77,14.63,11,16.17,11,18c0,1.52-0.87,2.83-2.12,3.51 c0.98,0.32,2.03,0.5,3.11,0.5c3.5,0,6.58-1.8,8.37-4.52C18,17.72,13.38,16.52,11.1,12.08z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M11.1,12.08C8.77,7.57,10.6,3.6,11.63,2.01C6.27,2.2,1.98,6.59,1.98,12c0,0.14,0.02,0.28,0.02,0.42 C2.62,12.15,3.29,12,4,12c1.66,0,3.18,0.83,4.1,2.15C9.77,14.63,11,16.17,11,18c0,1.52-0.87,2.83-2.12,3.51 c0.98,0.32,2.03,0.5,3.11,0.5c3.5,0,6.58-1.8,8.37-4.52C18,17.72,13.38,16.52,11.1,12.08z" + }, + "children": [] + }] + }] + }] + }, { + "name": "path", + "attribs": { + "d": "M7,16l-0.18,0C6.4,14.84,5.3,14,4,14c-1.66,0-3,1.34-3,3s1.34,3,3,3c0.62,0,2.49,0,3,0c1.1,0,2-0.9,2-2 C9,16.9,8.1,16,7,16z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M7,16l-0.18,0C6.4,14.84,5.3,14,4,14c-1.66,0-3,1.34-3,3s1.34,3,3,3c0.62,0,2.49,0,3,0c1.1,0,2-0.9,2-2 C9,16.9,8.1,16,7,16z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_nights_stay = ic_nights_stay; \ No newline at end of file diff --git a/dist/md/ic_nights_stay_outline.js b/dist/md/ic_nights_stay_outline.js new file mode 100644 index 000000000..8e6fbcb2c --- /dev/null +++ b/dist/md/ic_nights_stay_outline.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_nights_stay_outline = void 0; +var ic_nights_stay_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M19.78,17.51c-2.47,0-6.57-1.33-8.68-5.43C8.77,7.57,10.6,3.6,11.63,2.01C6.27,2.2,1.98,6.59,1.98,12 c0,0.14,0.02,0.28,0.02,0.42C2.61,12.16,3.28,12,3.98,12c0,0,0,0,0,0c0-3.09,1.73-5.77,4.3-7.1C7.78,7.09,7.74,9.94,9.32,13 c1.57,3.04,4.18,4.95,6.8,5.86c-1.23,0.74-2.65,1.15-4.13,1.15c-0.5,0-1-0.05-1.48-0.14c-0.37,0.7-0.94,1.27-1.64,1.64 c0.98,0.32,2.03,0.5,3.11,0.5c3.5,0,6.58-1.8,8.37-4.52C20.18,17.5,19.98,17.51,19.78,17.51z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19.78,17.51c-2.47,0-6.57-1.33-8.68-5.43C8.77,7.57,10.6,3.6,11.63,2.01C6.27,2.2,1.98,6.59,1.98,12 c0,0.14,0.02,0.28,0.02,0.42C2.61,12.16,3.28,12,3.98,12c0,0,0,0,0,0c0-3.09,1.73-5.77,4.3-7.1C7.78,7.09,7.74,9.94,9.32,13 c1.57,3.04,4.18,4.95,6.8,5.86c-1.23,0.74-2.65,1.15-4.13,1.15c-0.5,0-1-0.05-1.48-0.14c-0.37,0.7-0.94,1.27-1.64,1.64 c0.98,0.32,2.03,0.5,3.11,0.5c3.5,0,6.58-1.8,8.37-4.52C20.18,17.5,19.98,17.51,19.78,17.51z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M7,16l-0.18,0C6.4,14.84,5.3,14,4,14c-1.66,0-3,1.34-3,3s1.34,3,3,3c0.62,0,2.49,0,3,0c1.1,0,2-0.9,2-2 C9,16.9,8.1,16,7,16z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M7,16l-0.18,0C6.4,14.84,5.3,14,4,14c-1.66,0-3,1.34-3,3s1.34,3,3,3c0.62,0,2.49,0,3,0c1.1,0,2-0.9,2-2 C9,16.9,8.1,16,7,16z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_nights_stay_outline = ic_nights_stay_outline; \ No newline at end of file diff --git a/dist/md/ic_nights_stay_twotone.js b/dist/md/ic_nights_stay_twotone.js new file mode 100644 index 000000000..7bfc4ee86 --- /dev/null +++ b/dist/md/ic_nights_stay_twotone.js @@ -0,0 +1,81 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_nights_stay_twotone = void 0; +var ic_nights_stay_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M8.1,14.15C9.77,14.63,11,16.17,11,18c0,0.68-0.19,1.31-0.48,1.87c0.48,0.09,0.97,0.14,1.48,0.14 c1.48,0,2.9-0.41,4.13-1.15c-2.62-0.92-5.23-2.82-6.8-5.86C7.74,9.94,7.78,7.09,8.29,4.9c-2.57,1.33-4.3,4.01-4.3,7.1c0,0,0,0,0,0 c0.01,0,0.01,0,0.02,0C5.66,12,7.18,12.83,8.1,14.15z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M8.1,14.15C9.77,14.63,11,16.17,11,18c0,0.68-0.19,1.31-0.48,1.87c0.48,0.09,0.97,0.14,1.48,0.14 c1.48,0,2.9-0.41,4.13-1.15c-2.62-0.92-5.23-2.82-6.8-5.86C7.74,9.94,7.78,7.09,8.29,4.9c-2.57,1.33-4.3,4.01-4.3,7.1c0,0,0,0,0,0 c0.01,0,0.01,0,0.02,0C5.66,12,7.18,12.83,8.1,14.15z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19.78,17.51c-2.47,0-6.57-1.33-8.68-5.43C8.77,7.57,10.6,3.6,11.63,2.01C6.27,2.2,1.98,6.59,1.98,12 c0,0.14,0.02,0.28,0.02,0.42C2.61,12.16,3.28,12,3.98,12c0,0,0,0,0,0c0-3.09,1.73-5.77,4.3-7.1C7.78,7.09,7.74,9.94,9.32,13 c1.57,3.04,4.18,4.95,6.8,5.86c-1.23,0.74-2.65,1.15-4.13,1.15c-0.5,0-1-0.05-1.48-0.14c-0.37,0.7-0.94,1.27-1.64,1.64 c0.98,0.32,2.03,0.5,3.11,0.5c3.5,0,6.58-1.8,8.37-4.52C20.18,17.5,19.98,17.51,19.78,17.51z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19.78,17.51c-2.47,0-6.57-1.33-8.68-5.43C8.77,7.57,10.6,3.6,11.63,2.01C6.27,2.2,1.98,6.59,1.98,12 c0,0.14,0.02,0.28,0.02,0.42C2.61,12.16,3.28,12,3.98,12c0,0,0,0,0,0c0-3.09,1.73-5.77,4.3-7.1C7.78,7.09,7.74,9.94,9.32,13 c1.57,3.04,4.18,4.95,6.8,5.86c-1.23,0.74-2.65,1.15-4.13,1.15c-0.5,0-1-0.05-1.48-0.14c-0.37,0.7-0.94,1.27-1.64,1.64 c0.98,0.32,2.03,0.5,3.11,0.5c3.5,0,6.58-1.8,8.37-4.52C20.18,17.5,19.98,17.51,19.78,17.51z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M7,16l-0.18,0C6.4,14.84,5.3,14,4,14c-1.66,0-3,1.34-3,3s1.34,3,3,3c0.62,0,2.49,0,3,0c1.1,0,2-0.9,2-2 C9,16.9,8.1,16,7,16z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M7,16l-0.18,0C6.4,14.84,5.3,14,4,14c-1.66,0-3,1.34-3,3s1.34,3,3,3c0.62,0,2.49,0,3,0c1.1,0,2-0.9,2-2 C9,16.9,8.1,16,7,16z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_nights_stay_twotone = ic_nights_stay_twotone; \ No newline at end of file diff --git a/dist/md/ic_no_backpack.js b/dist/md/ic_no_backpack.js new file mode 100644 index 000000000..cf3552063 --- /dev/null +++ b/dist/md/ic_no_backpack.js @@ -0,0 +1,26 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_no_backpack = void 0; +var ic_no_backpack = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "y": "0" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21.19,21.19L2.81,2.81L1.39,4.22l2.76,2.76C4.06,7.31,4,7.64,4,8v12c0,1.1,0.9,2,2,2h12c0.34,0,0.65-0.09,0.93-0.24 l0.85,0.85L21.19,21.19z M6,14v-2h3.17l2,2H6z M14.83,12L6.98,4.15c0.01,0,0.01-0.01,0.02-0.01V2h3v2h4V2h3v2.14 c1.72,0.45,3,2,3,3.86v9.17l-2-2V12H14.83z" + }, + "children": [] + }] +}; +exports.ic_no_backpack = ic_no_backpack; \ No newline at end of file diff --git a/dist/md/ic_no_backpack_outline.js b/dist/md/ic_no_backpack_outline.js new file mode 100644 index 000000000..967cdfa6f --- /dev/null +++ b/dist/md/ic_no_backpack_outline.js @@ -0,0 +1,26 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_no_backpack_outline = void 0; +var ic_no_backpack_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "y": "0" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6.98,4.15c0.01,0,0.01-0.01,0.02-0.01V2h3v2h4V2h3v2.14c1.72,0.45,3,2,3,3.86v9.17l-2-2V8c0-1.1-0.9-2-2-2H8.83L6.98,4.15z M14.83,12l1.67,1.67V12H14.83z M19.78,22.61l-0.85-0.85C18.65,21.91,18.34,22,18,22H6c-1.1,0-2-0.9-2-2V8 c0-0.36,0.06-0.69,0.15-1.02L1.39,4.22l1.41-1.41l18.38,18.38L19.78,22.61z M17.17,20l-6-6H7.5v-2h1.67L6,8.83V20H17.17z" + }, + "children": [] + }] +}; +exports.ic_no_backpack_outline = ic_no_backpack_outline; \ No newline at end of file diff --git a/dist/md/ic_no_backpack_twotone.js b/dist/md/ic_no_backpack_twotone.js new file mode 100644 index 000000000..02ce30d73 --- /dev/null +++ b/dist/md/ic_no_backpack_twotone.js @@ -0,0 +1,33 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_no_backpack_twotone = void 0; +var ic_no_backpack_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "y": "0" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18,15.17V8c0-1.1-0.9-2-2-2H8.83l6,6h1.67v1.67L18,15.17z M17.17,20l-6-6H7.5v-2h1.67L6,8.83V20H17.17z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6.98,4.15c0.01,0,0.01-0.01,0.02-0.01V2h3v2h4V2h3v2.14c1.72,0.45,3,2,3,3.86v9.17l-2-2V8c0-1.1-0.9-2-2-2H8.83L6.98,4.15z M14.83,12l1.67,1.67V12H14.83z M19.78,22.61l-0.85-0.85C18.65,21.91,18.34,22,18,22H6c-1.1,0-2-0.9-2-2V8 c0-0.36,0.06-0.69,0.15-1.02L1.39,4.22l1.41-1.41l18.38,18.38L19.78,22.61z M17.17,20l-6-6H7.5v-2h1.67L6,8.83V20H17.17z" + }, + "children": [] + }] +}; +exports.ic_no_backpack_twotone = ic_no_backpack_twotone; \ No newline at end of file diff --git a/dist/md/ic_no_cell.js b/dist/md/ic_no_cell.js new file mode 100644 index 000000000..322570d52 --- /dev/null +++ b/dist/md/ic_no_cell.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_no_cell = void 0; +var ic_no_cell = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M8.83,6l-3.7-3.7C5.42,1.55,6.15,1,7,1l10,0.01c1.1,0,2,0.89,2,1.99v13.17l-2-2V6H8.83z M19.78,22.61l-0.91-0.91 C18.58,22.45,17.85,23,17,23H7c-1.1,0-2-0.9-2-2V7.83L1.39,4.22l1.41-1.41l18.38,18.38L19.78,22.61z M15.17,18L7,9.83V18H15.17z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M8.83,6l-3.7-3.7C5.42,1.55,6.15,1,7,1l10,0.01c1.1,0,2,0.89,2,1.99v13.17l-2-2V6H8.83z M19.78,22.61l-0.91-0.91 C18.58,22.45,17.85,23,17,23H7c-1.1,0-2-0.9-2-2V7.83L1.39,4.22l1.41-1.41l18.38,18.38L19.78,22.61z M15.17,18L7,9.83V18H15.17z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_no_cell = ic_no_cell; \ No newline at end of file diff --git a/dist/md/ic_no_cell_outline.js b/dist/md/ic_no_cell_outline.js new file mode 100644 index 000000000..3136d80f4 --- /dev/null +++ b/dist/md/ic_no_cell_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_no_cell_outline = void 0; +var ic_no_cell_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M17,6v8.17l2,2V3c0-1.1-0.9-1.99-2-1.99L7,1C6.15,1,5.42,1.55,5.13,2.3L8.83,6H17z M7,3h10v1H7V3z M21.19,21.19L19,19l-2-2 L7,7L5,5L2.81,2.81L1.39,4.22L5,7.83V21c0,1.1,0.9,2,2,2h10c0.85,0,1.58-0.55,1.87-1.3l0.91,0.91L21.19,21.19z M17,21H7v-1h10V21z M7,18V9.83L15.17,18H7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,6v8.17l2,2V3c0-1.1-0.9-1.99-2-1.99L7,1C6.15,1,5.42,1.55,5.13,2.3L8.83,6H17z M7,3h10v1H7V3z M21.19,21.19L19,19l-2-2 L7,7L5,5L2.81,2.81L1.39,4.22L5,7.83V21c0,1.1,0.9,2,2,2h10c0.85,0,1.58-0.55,1.87-1.3l0.91,0.91L21.19,21.19z M17,21H7v-1h10V21z M7,18V9.83L15.17,18H7z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_no_cell_outline = ic_no_cell_outline; \ No newline at end of file diff --git a/dist/md/ic_no_cell_twotone.js b/dist/md/ic_no_cell_twotone.js new file mode 100644 index 000000000..e90fb47ed --- /dev/null +++ b/dist/md/ic_no_cell_twotone.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_no_cell_twotone = void 0; +var ic_no_cell_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M7,21h10v-1H7V21z M7,3v1h10V3H7z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M7,21h10v-1H7V21z M7,3v1h10V3H7z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M17,6v8.17l2,2V3c0-1.1-0.9-1.99-2-1.99L7,1C6.15,1,5.42,1.55,5.13,2.3L8.83,6H17z M7,3h10v1H7V3z M21.19,21.19L2.81,2.81 L1.39,4.22L5,7.83V21c0,1.1,0.9,2,2,2h10c0.85,0,1.58-0.55,1.87-1.3l0.91,0.91L21.19,21.19z M17,21H7v-1h10V21z M7,18V9.83 L15.17,18H7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,6v8.17l2,2V3c0-1.1-0.9-1.99-2-1.99L7,1C6.15,1,5.42,1.55,5.13,2.3L8.83,6H17z M7,3h10v1H7V3z M21.19,21.19L2.81,2.81 L1.39,4.22L5,7.83V21c0,1.1,0.9,2,2,2h10c0.85,0,1.58-0.55,1.87-1.3l0.91,0.91L21.19,21.19z M17,21H7v-1h10V21z M7,18V9.83 L15.17,18H7z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_no_cell_twotone = ic_no_cell_twotone; \ No newline at end of file diff --git a/dist/md/ic_no_drinks.js b/dist/md/ic_no_drinks.js new file mode 100644 index 000000000..ef366ffb4 --- /dev/null +++ b/dist/md/ic_no_drinks.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_no_drinks = void 0; +var ic_no_drinks = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M5.83,3H21v2l-6.2,6.97L9.83,7h6.74l1.78-2H7.83L5.83,3z M19.78,22.61L18,20.83V21H6v-2h5v-5l-1.37-1.54L1.39,4.22 l1.41-1.41L3,3l18.19,18.19L19.78,22.61z M16.17,19L13,15.83V19H16.17z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M5.83,3H21v2l-6.2,6.97L9.83,7h6.74l1.78-2H7.83L5.83,3z M19.78,22.61L18,20.83V21H6v-2h5v-5l-1.37-1.54L1.39,4.22 l1.41-1.41L3,3l18.19,18.19L19.78,22.61z M16.17,19L13,15.83V19H16.17z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_no_drinks = ic_no_drinks; \ No newline at end of file diff --git a/dist/md/ic_no_drinks_outline.js b/dist/md/ic_no_drinks_outline.js new file mode 100644 index 000000000..cfaebd6f6 --- /dev/null +++ b/dist/md/ic_no_drinks_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_no_drinks_outline = void 0; +var ic_no_drinks_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M21.19,21.19L2.81,2.81L1.39,4.22l8.23,8.23L11,14v5H6v2h12v-0.17l1.78,1.78L21.19,21.19z M13,19v-3.17L16.17,19H13z M7.83,5l-2-2H21v2l-6.2,6.97l-1.42-1.42L14.77,9h-2.94l-2-2h6.74l1.78-2H7.83z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21.19,21.19L2.81,2.81L1.39,4.22l8.23,8.23L11,14v5H6v2h12v-0.17l1.78,1.78L21.19,21.19z M13,19v-3.17L16.17,19H13z M7.83,5l-2-2H21v2l-6.2,6.97l-1.42-1.42L14.77,9h-2.94l-2-2h6.74l1.78-2H7.83z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_no_drinks_outline = ic_no_drinks_outline; \ No newline at end of file diff --git a/dist/md/ic_no_drinks_twotone.js b/dist/md/ic_no_drinks_twotone.js new file mode 100644 index 000000000..37b75aa39 --- /dev/null +++ b/dist/md/ic_no_drinks_twotone.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_no_drinks_twotone = void 0; +var ic_no_drinks_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "opacity": ".3", + "points": "14.77,9 11.83,9 13.38,10.56" + }, + "children": [{ + "name": "polygon", + "attribs": { + "opacity": ".3", + "points": "14.77,9 11.83,9 13.38,10.56" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M21.19,21.19L2.81,2.81L1.39,4.22l8.23,8.23L11,14v5H6v2h12v-0.17l1.78,1.78L21.19,21.19z M13,19v-3.17L16.17,19H13z M7.83,5l-2-2H21v2l-6.2,6.97l-1.42-1.42L14.77,9h-2.94l-2-2h6.74l1.78-2H7.83z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21.19,21.19L2.81,2.81L1.39,4.22l8.23,8.23L11,14v5H6v2h12v-0.17l1.78,1.78L21.19,21.19z M13,19v-3.17L16.17,19H13z M7.83,5l-2-2H21v2l-6.2,6.97l-1.42-1.42L14.77,9h-2.94l-2-2h6.74l1.78-2H7.83z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_no_drinks_twotone = ic_no_drinks_twotone; \ No newline at end of file diff --git a/dist/md/ic_no_encryption.js b/dist/md/ic_no_encryption.js new file mode 100644 index 000000000..652c87fb6 --- /dev/null +++ b/dist/md/ic_no_encryption.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_no_encryption = void 0; +var ic_no_encryption = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0zm0 0h24v24H0zm0 0h24v24H0V0zm0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 21.78L4.22 5 3 6.22l2.04 2.04C4.42 8.6 4 9.25 4 10v10c0 1.1.9 2 2 2h12c.23 0 .45-.05.66-.12L19.78 23 21 21.78zM8.9 6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2H9.66L20 18.34V10c0-1.1-.9-2-2-2h-1V6c0-2.76-2.24-5-5-5-2.56 0-4.64 1.93-4.94 4.4L8.9 7.24V6z" + }, + "children": [] + }] +}; +exports.ic_no_encryption = ic_no_encryption; \ No newline at end of file diff --git a/dist/md/ic_no_encryption_gmailerrorred_outline.js b/dist/md/ic_no_encryption_gmailerrorred_outline.js new file mode 100644 index 000000000..9b193e09c --- /dev/null +++ b/dist/md/ic_no_encryption_gmailerrorred_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_no_encryption_gmailerrorred_outline = void 0; +var ic_no_encryption_gmailerrorred_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8.9 6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2h-4.66l2 2H18v5.56l2 2V10c0-1.1-.9-2-2-2h-1V6c0-2.76-2.24-5-5-5-2.32 0-4.26 1.59-4.82 3.74L8.9 6.46V6zM4.41 4.81L3 6.22l2.04 2.04C4.42 8.6 4 9.25 4 10v10c0 1.1.9 2 2 2h12.78l1 1 1.41-1.41L4.41 4.81zM6 20V10h.78l10 10H6z" + }, + "children": [] + }] +}; +exports.ic_no_encryption_gmailerrorred_outline = ic_no_encryption_gmailerrorred_outline; \ No newline at end of file diff --git a/dist/md/ic_no_encryption_gmailerrorred_twotone.js b/dist/md/ic_no_encryption_gmailerrorred_twotone.js new file mode 100644 index 000000000..c6b79ad4c --- /dev/null +++ b/dist/md/ic_no_encryption_gmailerrorred_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_no_encryption_gmailerrorred_twotone = void 0; +var ic_no_encryption_gmailerrorred_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 20h10.78l-10-10H6zm6.44-10L18 15.56V10z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8.9 6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2h-4.66l2 2H18v5.56l2 2V10c0-1.1-.9-2-2-2h-1V6c0-2.76-2.24-5-5-5-2.32 0-4.26 1.59-4.82 3.74L8.9 6.46V6zM4.41 4.81L3 6.22l2.04 2.04C4.42 8.6 4 9.25 4 10v10c0 1.1.9 2 2 2h12.78l1 1 1.41-1.41L4.41 4.81zM6 20V10h.78l10 10H6z" + }, + "children": [] + }] +}; +exports.ic_no_encryption_gmailerrorred_twotone = ic_no_encryption_gmailerrorred_twotone; \ No newline at end of file diff --git a/dist/md/ic_no_encryption_outline.js b/dist/md/ic_no_encryption_outline.js new file mode 100644 index 000000000..4d4bc6394 --- /dev/null +++ b/dist/md/ic_no_encryption_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_no_encryption_outline = void 0; +var ic_no_encryption_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8.9 6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2h-4.66l2 2H18v5.56l2 2V10c0-1.1-.9-2-2-2h-1V6c0-2.76-2.24-5-5-5-2.32 0-4.26 1.59-4.82 3.74L8.9 6.46V6zM4.41 4.81L3 6.22l2.04 2.04C4.42 8.6 4 9.25 4 10v10c0 1.1.9 2 2 2h12.78l1 1 1.41-1.41L4.41 4.81zM6 20V10h.78l10 10H6z" + }, + "children": [] + }] +}; +exports.ic_no_encryption_outline = ic_no_encryption_outline; \ No newline at end of file diff --git a/dist/md/ic_no_encryption_twotone.js b/dist/md/ic_no_encryption_twotone.js new file mode 100644 index 000000000..6045918a5 --- /dev/null +++ b/dist/md/ic_no_encryption_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_no_encryption_twotone = void 0; +var ic_no_encryption_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 20h10.78l-10-10H6zm6.44-10L18 15.56V10z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8.9 6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2h-4.66l2 2H18v5.56l2 2V10c0-1.1-.9-2-2-2h-1V6c0-2.76-2.24-5-5-5-2.32 0-4.26 1.59-4.82 3.74L8.9 6.46V6zM4.41 4.81L3 6.22l2.04 2.04C4.42 8.6 4 9.25 4 10v10c0 1.1.9 2 2 2h12.78l1 1 1.41-1.41L4.41 4.81zM6 20V10h.78l10 10H6z" + }, + "children": [] + }] +}; +exports.ic_no_encryption_twotone = ic_no_encryption_twotone; \ No newline at end of file diff --git a/dist/md/ic_no_flash.js b/dist/md/ic_no_flash.js new file mode 100644 index 000000000..00a921d21 --- /dev/null +++ b/dist/md/ic_no_flash.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_no_flash = void 0; +var ic_no_flash = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M13.93,13.93L2.45,2.45L1.04,3.87l5.3,5.3L6.14,9.4H3.6C2.72,9.4,2,10.12,2,11v9.4C2,21.28,2.72,22,3.6,22h12.8 c0.75,0,1.38-0.52,1.55-1.22l2.18,2.18l1.41-1.41L18,18L13.93,13.93z M10,20c-2.21,0-4-1.79-4-4c0-1.95,1.4-3.57,3.25-3.92 l1.57,1.57c-0.26-0.09-0.53-0.15-0.82-0.15c-1.38,0-2.5,1.12-2.5,2.5c0,1.38,1.12,2.5,2.5,2.5c1.38,0,2.5-1.12,2.5-2.5 c0-0.29-0.06-0.56-0.15-0.82l1.57,1.57C13.57,18.6,11.95,20,10,20z M18,15.17L10.83,8h1.75l1.28,1.4h2.54c0.88,0,1.6,0.72,1.6,1.6 V15.17z M20.4,5.6H22L19,11V7h-1V2h4L20.4,5.6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M13.93,13.93L2.45,2.45L1.04,3.87l5.3,5.3L6.14,9.4H3.6C2.72,9.4,2,10.12,2,11v9.4C2,21.28,2.72,22,3.6,22h12.8 c0.75,0,1.38-0.52,1.55-1.22l2.18,2.18l1.41-1.41L18,18L13.93,13.93z M10,20c-2.21,0-4-1.79-4-4c0-1.95,1.4-3.57,3.25-3.92 l1.57,1.57c-0.26-0.09-0.53-0.15-0.82-0.15c-1.38,0-2.5,1.12-2.5,2.5c0,1.38,1.12,2.5,2.5,2.5c1.38,0,2.5-1.12,2.5-2.5 c0-0.29-0.06-0.56-0.15-0.82l1.57,1.57C13.57,18.6,11.95,20,10,20z M18,15.17L10.83,8h1.75l1.28,1.4h2.54c0.88,0,1.6,0.72,1.6,1.6 V15.17z M20.4,5.6H22L19,11V7h-1V2h4L20.4,5.6z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_no_flash = ic_no_flash; \ No newline at end of file diff --git a/dist/md/ic_no_flash_outline.js b/dist/md/ic_no_flash_outline.js new file mode 100644 index 000000000..961e47037 --- /dev/null +++ b/dist/md/ic_no_flash_outline.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_no_flash_outline = void 0; +var ic_no_flash_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M20.4,5.6H22L19,11V7h-1V2h4L20.4,5.6z M16,11.4l0,1.77l2,2V11c0-0.88-0.72-1.6-1.6-1.6h-2.54L12.58,8h-1.75l3.4,3.4H16z M2.1,2.1L0.69,3.51l5.66,5.66L6.14,9.4H3.6C2.72,9.4,2,10.12,2,11v9.4C2,21.28,2.72,22,3.6,22h12.8c0.75,0,1.38-0.52,1.55-1.22 l2.54,2.54l1.41-1.41L2.1,2.1z M11.5,15.5c0,0.83-0.67,1.5-1.5,1.5s-1.5-0.67-1.5-1.5S9.17,14,10,14S11.5,14.67,11.5,15.5z M15.96,20H4v-8.6h2.14h0.88l0.59-0.65l0.15-0.16l1.5,1.5C7.68,12.43,6.5,13.82,6.5,15.5c0,1.93,1.57,3.5,3.5,3.5 c1.68,0,3.07-1.18,3.42-2.76l2.55,2.55L15.96,20z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20.4,5.6H22L19,11V7h-1V2h4L20.4,5.6z M16,11.4l0,1.77l2,2V11c0-0.88-0.72-1.6-1.6-1.6h-2.54L12.58,8h-1.75l3.4,3.4H16z M2.1,2.1L0.69,3.51l5.66,5.66L6.14,9.4H3.6C2.72,9.4,2,10.12,2,11v9.4C2,21.28,2.72,22,3.6,22h12.8c0.75,0,1.38-0.52,1.55-1.22 l2.54,2.54l1.41-1.41L2.1,2.1z M11.5,15.5c0,0.83-0.67,1.5-1.5,1.5s-1.5-0.67-1.5-1.5S9.17,14,10,14S11.5,14.67,11.5,15.5z M15.96,20H4v-8.6h2.14h0.88l0.59-0.65l0.15-0.16l1.5,1.5C7.68,12.43,6.5,13.82,6.5,15.5c0,1.93,1.57,3.5,3.5,3.5 c1.68,0,3.07-1.18,3.42-2.76l2.55,2.55L15.96,20z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M0,0h24v24H0V0z", + "fill": "none" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M0,0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }] + }] + }] +}; +exports.ic_no_flash_outline = ic_no_flash_outline; \ No newline at end of file diff --git a/dist/md/ic_no_flash_twotone.js b/dist/md/ic_no_flash_twotone.js new file mode 100644 index 000000000..e019b2607 --- /dev/null +++ b/dist/md/ic_no_flash_twotone.js @@ -0,0 +1,55 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_no_flash_twotone = void 0; +var ic_no_flash_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M13.42,16.24l2.55,2.55L15.96,20H4v-8.6h3.02l0.59-0.65l0.15-0.16l1.5,1.5C7.68,12.43,6.5,13.82,6.5,15.5 c0,1.93,1.57,3.5,3.5,3.5C11.68,19,13.07,17.82,13.42,16.24z M16,13.17l0-1.77h-1.77L16,13.17z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M13.42,16.24l2.55,2.55L15.96,20H4v-8.6h3.02l0.59-0.65l0.15-0.16l1.5,1.5C7.68,12.43,6.5,13.82,6.5,15.5 c0,1.93,1.57,3.5,3.5,3.5C11.68,19,13.07,17.82,13.42,16.24z M16,13.17l0-1.77h-1.77L16,13.17z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20.4,5.6H22L19,11V7h-1V2h4L20.4,5.6z M16,11.4v1.77l2,2V11c0-0.88-0.72-1.6-1.6-1.6h-2.54L12.58,8h-1.75l3.4,3.4H16z M17.97,17.97L2.1,2.1L0.69,3.51l5.66,5.66L6.14,9.4H3.6C2.72,9.4,2,10.12,2,11v9.4C2,21.28,2.72,22,3.6,22h12.8 c0.75,0,1.38-0.52,1.55-1.22l2.54,2.54l1.41-1.41L17.97,17.97z M11.5,15.5c0,0.83-0.67,1.5-1.5,1.5s-1.5-0.67-1.5-1.5 S9.17,14,10,14S11.5,14.67,11.5,15.5z M15.96,20H4v-8.6h2.14h0.88l0.59-0.65l0.15-0.16l1.5,1.5C7.68,12.43,6.5,13.82,6.5,15.5 c0,1.93,1.57,3.5,3.5,3.5c1.68,0,3.07-1.18,3.42-2.76l2.55,2.55L15.96,20z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20.4,5.6H22L19,11V7h-1V2h4L20.4,5.6z M16,11.4v1.77l2,2V11c0-0.88-0.72-1.6-1.6-1.6h-2.54L12.58,8h-1.75l3.4,3.4H16z M17.97,17.97L2.1,2.1L0.69,3.51l5.66,5.66L6.14,9.4H3.6C2.72,9.4,2,10.12,2,11v9.4C2,21.28,2.72,22,3.6,22h12.8 c0.75,0,1.38-0.52,1.55-1.22l2.54,2.54l1.41-1.41L17.97,17.97z M11.5,15.5c0,0.83-0.67,1.5-1.5,1.5s-1.5-0.67-1.5-1.5 S9.17,14,10,14S11.5,14.67,11.5,15.5z M15.96,20H4v-8.6h2.14h0.88l0.59-0.65l0.15-0.16l1.5,1.5C7.68,12.43,6.5,13.82,6.5,15.5 c0,1.93,1.57,3.5,3.5,3.5c1.68,0,3.07-1.18,3.42-2.76l2.55,2.55L15.96,20z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M0,0h24v24H0V0z", + "fill": "none" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M0,0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }] + }] + }] +}; +exports.ic_no_flash_twotone = ic_no_flash_twotone; \ No newline at end of file diff --git a/dist/md/ic_no_food.js b/dist/md/ic_no_food.js new file mode 100644 index 000000000..f6c0f1c98 --- /dev/null +++ b/dist/md/ic_no_food.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_no_food = void 0; +var ic_no_food = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M11.35,8.52L11,5h5V1h2v4h5l-1.38,13.79L11.35,8.52z M1,21v1c0,0.55,0.45,1,1,1h13c0.55,0,1-0.45,1-1v-1H1z M21.9,21.9 L2.1,2.1L0.69,3.51l5.7,5.7C3.28,9.87,1,11.99,1,15h11.17l2,2H1v2h15v-0.17l4.49,4.49L21.9,21.9z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M11.35,8.52L11,5h5V1h2v4h5l-1.38,13.79L11.35,8.52z M1,21v1c0,0.55,0.45,1,1,1h13c0.55,0,1-0.45,1-1v-1H1z M21.9,21.9 L2.1,2.1L0.69,3.51l5.7,5.7C3.28,9.87,1,11.99,1,15h11.17l2,2H1v2h15v-0.17l4.49,4.49L21.9,21.9z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_no_food = ic_no_food; \ No newline at end of file diff --git a/dist/md/ic_no_food_outline.js b/dist/md/ic_no_food_outline.js new file mode 100644 index 000000000..f50590e26 --- /dev/null +++ b/dist/md/ic_no_food_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_no_food_outline = void 0; +var ic_no_food_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M1,21h15.01v0.98c0,0.56-0.45,1.01-1.01,1.01H2.01C1.45,22.99,1,22.54,1,21.98V21z M20.49,23.31L16,18.83V19H1v-2h13.17 l-2-2H1c0-3.24,2.46-5.17,5.38-5.79l-5.7-5.7L2.1,2.1L13,13l2,2l6.9,6.9L20.49,23.31z M10.17,13l-2-2c-1.42,0.06-3.52,0.56-4.55,2 H10.17z M23,5h-5V1h-2v4h-5l0.23,2h9.56l-1,9.97l1.83,1.83L23,5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M1,21h15.01v0.98c0,0.56-0.45,1.01-1.01,1.01H2.01C1.45,22.99,1,22.54,1,21.98V21z M20.49,23.31L16,18.83V19H1v-2h13.17 l-2-2H1c0-3.24,2.46-5.17,5.38-5.79l-5.7-5.7L2.1,2.1L13,13l2,2l6.9,6.9L20.49,23.31z M10.17,13l-2-2c-1.42,0.06-3.52,0.56-4.55,2 H10.17z M23,5h-5V1h-2v4h-5l0.23,2h9.56l-1,9.97l1.83,1.83L23,5z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_no_food_outline = ic_no_food_outline; \ No newline at end of file diff --git a/dist/md/ic_no_food_twotone.js b/dist/md/ic_no_food_twotone.js new file mode 100644 index 000000000..3af177880 --- /dev/null +++ b/dist/md/ic_no_food_twotone.js @@ -0,0 +1,59 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_no_food_twotone = void 0; +var ic_no_food_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M8.16,11c-1.43,0.07-3.52,0.57-4.54,2h6.55L8.16,11z", + "enable-background": "new", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M8.16,11c-1.43,0.07-3.52,0.57-4.54,2h6.55L8.16,11z", + "enable-background": "new", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M1,21h15.01v0.98c0,0.56-0.45,1.01-1.01,1.01H2.01C1.45,22.99,1,22.54,1,21.98V21z M20.49,23.31L16,18.83V19H1v-2h13.17 l-2-2H1c0-3.24,2.46-5.17,5.38-5.79l-5.7-5.7L2.1,2.1L13,13l2,2l6.9,6.9L20.49,23.31z M10.17,13l-2-2c-1.42,0.06-3.52,0.56-4.55,2 H10.17z M23,5h-5V1h-2v4h-5l0.23,2h9.56l-1,9.97l1.83,1.83L23,5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M1,21h15.01v0.98c0,0.56-0.45,1.01-1.01,1.01H2.01C1.45,22.99,1,22.54,1,21.98V21z M20.49,23.31L16,18.83V19H1v-2h13.17 l-2-2H1c0-3.24,2.46-5.17,5.38-5.79l-5.7-5.7L2.1,2.1L13,13l2,2l6.9,6.9L20.49,23.31z M10.17,13l-2-2c-1.42,0.06-3.52,0.56-4.55,2 H10.17z M23,5h-5V1h-2v4h-5l0.23,2h9.56l-1,9.97l1.83,1.83L23,5z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_no_food_twotone = ic_no_food_twotone; \ No newline at end of file diff --git a/dist/md/ic_no_luggage.js b/dist/md/ic_no_luggage.js new file mode 100644 index 000000000..a277d3820 --- /dev/null +++ b/dist/md/ic_no_luggage.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_no_luggage = void 0; +var ic_no_luggage = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12.75,9v0.92l1.75,1.75V9H16v4.17l3,3V8c0-1.1-0.9-2-2-2h-2V3c0-0.55-0.45-1-1-1h-4C9.45,2,9,2.45,9,3v3H8.83l3,3H12.75z M10.5,3.5h3V6h-3V3.5z M21.19,21.19L2.81,2.81L1.39,4.22l3.63,3.63C5.02,7.9,5,7.95,5,8v11c0,1.1,0.9,2,2,2c0,0.55,0.45,1,1,1 c0.55,0,1-0.45,1-1h6c0,0.55,0.45,1,1,1s1-0.45,1-1c0.34,0,0.65-0.09,0.93-0.24l1.85,1.85L21.19,21.19z M8,18v-7.17l1.5,1.5V18H8z M12.75,18h-1.5v-3.92l1.5,1.5V18z" + }, + "children": [] + }] +}; +exports.ic_no_luggage = ic_no_luggage; \ No newline at end of file diff --git a/dist/md/ic_no_luggage_outline.js b/dist/md/ic_no_luggage_outline.js new file mode 100644 index 000000000..596e2046a --- /dev/null +++ b/dist/md/ic_no_luggage_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_no_luggage_outline = void 0; +var ic_no_luggage_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M16,13.17l-1.5-1.5V9H16V13.17z M19.78,22.61l-1.85-1.85C17.65,20.91,17.34,21,17,21c0,0.55-0.45,1-1,1s-1-0.45-1-1H9 c0,0.55-0.45,1-1,1c-0.55,0-1-0.45-1-1c-1.1,0-2-0.9-2-2V8c0-0.05,0.02-0.1,0.02-0.15L1.39,4.22l1.41-1.41l18.38,18.38 L19.78,22.61z M16.17,19l-3.42-3.42V18h-1.5v-3.92L9.5,12.33V18H8v-7.17l-1-1V19H16.17z M12.75,9h-0.92l0.92,0.92V9z M19,8v8.17 l-2-2V8h-6.17L9.84,7.01L9,6.17V6V3c0-0.55,0.45-1,1-1h4c0.55,0,1,0.45,1,1v3h2C18.1,6,19,6.9,19,8z M10.5,6h3V3.5h-3V6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M16,13.17l-1.5-1.5V9H16V13.17z M19.78,22.61l-1.85-1.85C17.65,20.91,17.34,21,17,21c0,0.55-0.45,1-1,1s-1-0.45-1-1H9 c0,0.55-0.45,1-1,1c-0.55,0-1-0.45-1-1c-1.1,0-2-0.9-2-2V8c0-0.05,0.02-0.1,0.02-0.15L1.39,4.22l1.41-1.41l18.38,18.38 L19.78,22.61z M16.17,19l-3.42-3.42V18h-1.5v-3.92L9.5,12.33V18H8v-7.17l-1-1V19H16.17z M12.75,9h-0.92l0.92,0.92V9z M19,8v8.17 l-2-2V8h-6.17L9.84,7.01L9,6.17V6V3c0-0.55,0.45-1,1-1h4c0.55,0,1,0.45,1,1v3h2C18.1,6,19,6.9,19,8z M10.5,6h3V3.5h-3V6z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_no_luggage_outline = ic_no_luggage_outline; \ No newline at end of file diff --git a/dist/md/ic_no_luggage_twotone.js b/dist/md/ic_no_luggage_twotone.js new file mode 100644 index 000000000..cf0bf4099 --- /dev/null +++ b/dist/md/ic_no_luggage_twotone.js @@ -0,0 +1,69 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_no_luggage_twotone = void 0; +var ic_no_luggage_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "g", + "attribs": { + "opacity": ".3" + }, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M16.17,19l-3.42-3.42V18h-1.5v-3.92L9.5,12.33V18H8v-7.17l-1-1V19H16.17z M17,8v6.17l-1-1V9h-1.5v2.67l-1.75-1.75V9h-0.92 l-1-1H17z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M16.17,19l-3.42-3.42V18h-1.5v-3.92L9.5,12.33V18H8v-7.17l-1-1V19H16.17z M17,8v6.17l-1-1V9h-1.5v2.67l-1.75-1.75V9h-0.92 l-1-1H17z" + }, + "children": [] + }] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M16,13.17l-1.5-1.5V9H16V13.17z M19.78,22.61l-1.85-1.85C17.65,20.91,17.34,21,17,21c0,0.55-0.45,1-1,1s-1-0.45-1-1H9 c0,0.55-0.45,1-1,1c-0.55,0-1-0.45-1-1c-1.1,0-2-0.9-2-2V8c0-0.05,0.02-0.1,0.02-0.15L1.39,4.22l1.41-1.41l18.38,18.38 L19.78,22.61z M16.17,19l-3.42-3.42V18h-1.5v-3.92L9.5,12.33V18H8v-7.17l-1-1V19H16.17z M12.75,9h-0.92l0.92,0.92V9z M19,8v8.17 l-2-2V8h-6.17L9.84,7.01L9,6.17V6V3c0-0.55,0.45-1,1-1h4c0.55,0,1,0.45,1,1v3h2C18.1,6,19,6.9,19,8z M10.5,6h3V3.5h-3V6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M16,13.17l-1.5-1.5V9H16V13.17z M19.78,22.61l-1.85-1.85C17.65,20.91,17.34,21,17,21c0,0.55-0.45,1-1,1s-1-0.45-1-1H9 c0,0.55-0.45,1-1,1c-0.55,0-1-0.45-1-1c-1.1,0-2-0.9-2-2V8c0-0.05,0.02-0.1,0.02-0.15L1.39,4.22l1.41-1.41l18.38,18.38 L19.78,22.61z M16.17,19l-3.42-3.42V18h-1.5v-3.92L9.5,12.33V18H8v-7.17l-1-1V19H16.17z M12.75,9h-0.92l0.92,0.92V9z M19,8v8.17 l-2-2V8h-6.17L9.84,7.01L9,6.17V6V3c0-0.55,0.45-1,1-1h4c0.55,0,1,0.45,1,1v3h2C18.1,6,19,6.9,19,8z M10.5,6h3V3.5h-3V6z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_no_luggage_twotone = ic_no_luggage_twotone; \ No newline at end of file diff --git a/dist/md/ic_no_meals.js b/dist/md/ic_no_meals.js new file mode 100644 index 000000000..a8d3754d3 --- /dev/null +++ b/dist/md/ic_no_meals.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_no_meals = void 0; +var ic_no_meals = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16,14V6c0-1.76,2.24-4,5-4v16.17l-2-2V14H16z M20.49,23.31L10.02,12.85C9.69,12.94,9.36,13,9,13v9H7v-9c-2.21,0-4-1.79-4-4 V5.83L0.69,3.51L2.1,2.1l19.8,19.8L20.49,23.31z M6.17,9L5,7.83V9H6.17z M9,2H7v2.17l2,2V2z M13,9V2h-2v6.17l1.85,1.85 C12.94,9.69,13,9.36,13,9z" + }, + "children": [] + }] +}; +exports.ic_no_meals = ic_no_meals; \ No newline at end of file diff --git a/dist/md/ic_no_meals_ouline.js b/dist/md/ic_no_meals_ouline.js new file mode 100644 index 000000000..a2299c785 --- /dev/null +++ b/dist/md/ic_no_meals_ouline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_no_meals_ouline = void 0; +var ic_no_meals_ouline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16,14V6c0-1.76,2.24-4,5-4v16.17l-2-2V14H16z M20.49,23.31L10.02,12.85C9.69,12.94,9.36,13,9,13v9H7v-9c-2.21,0-4-1.79-4-4 V5.83L0.69,3.51L2.1,2.1l19.8,19.8L20.49,23.31z M6.17,9L5,7.83V9H6.17z M9,2H7v2.17l2,2V2z M13,9V2h-2v6.17l1.85,1.85 C12.94,9.69,13,9.36,13,9z" + }, + "children": [] + }] +}; +exports.ic_no_meals_ouline = ic_no_meals_ouline; \ No newline at end of file diff --git a/dist/md/ic_no_meals_outline.js b/dist/md/ic_no_meals_outline.js new file mode 100644 index 000000000..89aeccdfc --- /dev/null +++ b/dist/md/ic_no_meals_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_no_meals_outline = void 0; +var ic_no_meals_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16,14V6c0-1.76,2.24-4,5-4v16.17l-2-2V14H16z M20.49,23.31L10.02,12.85C9.69,12.94,9.36,13,9,13v9H7v-9c-2.21,0-4-1.79-4-4 V5.83L0.69,3.51L2.1,2.1l19.8,19.8L20.49,23.31z M6.17,9L5,7.83V9H6.17z M9,2H7v2.17l2,2V2z M13,9V2h-2v6.17l1.85,1.85 C12.94,9.69,13,9.36,13,9z" + }, + "children": [] + }] +}; +exports.ic_no_meals_outline = ic_no_meals_outline; \ No newline at end of file diff --git a/dist/md/ic_no_meals_twotone.js b/dist/md/ic_no_meals_twotone.js new file mode 100644 index 000000000..d97de958a --- /dev/null +++ b/dist/md/ic_no_meals_twotone.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_no_meals_twotone = void 0; +var ic_no_meals_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16,14V6c0-1.76,2.24-4,5-4v16.17l-2-2V14H16z M20.49,23.31L10.02,12.85C9.69,12.94,9.36,13,9,13v9H7v-9c-2.21,0-4-1.79-4-4 V5.83L0.69,3.51L2.1,2.1l19.8,19.8L20.49,23.31z M6.17,9L5,7.83V9H6.17z M9,2H7v2.17l2,2V2z M13,9V2h-2v6.17l1.85,1.85 C12.94,9.69,13,9.36,13,9z" + }, + "children": [] + }] +}; +exports.ic_no_meals_twotone = ic_no_meals_twotone; \ No newline at end of file diff --git a/dist/md/ic_no_meeting_room.js b/dist/md/ic_no_meeting_room.js new file mode 100644 index 000000000..8338541a9 --- /dev/null +++ b/dist/md/ic_no_meeting_room.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_no_meeting_room = void 0; +var ic_no_meeting_room = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M11 11h-1v2h2v-1l9.73 9.73L20.46 23 14 16.54V21H3v-2h2V7.54l-4-4 1.27-1.27L11 11zm3 .49L5.51 3H14v1h5v12.49l-2-2V6h-3v5.49z" + }, + "children": [] + }] +}; +exports.ic_no_meeting_room = ic_no_meeting_room; \ No newline at end of file diff --git a/dist/md/ic_no_meeting_room_outline.js b/dist/md/ic_no_meeting_room_outline.js new file mode 100644 index 000000000..aab6dc570 --- /dev/null +++ b/dist/md/ic_no_meeting_room_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_no_meeting_room_outline = void 0; +var ic_no_meeting_room_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 5v3.88l2 2V6h3v7.88l2 2V4h-5V3H6.12l2 2zM2.41 2.13L1 3.54l4 4V19H3v2h11v-4.46L20.46 23l1.41-1.41L2.41 2.13zM12 19H7V9.54l5 5V19z" + }, + "children": [] + }] +}; +exports.ic_no_meeting_room_outline = ic_no_meeting_room_outline; \ No newline at end of file diff --git a/dist/md/ic_no_meeting_room_twotone.js b/dist/md/ic_no_meeting_room_twotone.js new file mode 100644 index 000000000..375cc0e77 --- /dev/null +++ b/dist/md/ic_no_meeting_room_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_no_meeting_room_twotone = void 0; +var ic_no_meeting_room_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 5H8.12L12 8.88V6zM7 19h5v-4.46l-5-5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 5v3.88l2 2V6h3v7.88l2 2V4h-5V3H6.12l2 2zM2.41 2.13L1 3.54l4 4V19H3v2h11v-4.46L20.46 23l1.41-1.41L2.41 2.13zM12 19H7V9.54l5 5V19z" + }, + "children": [] + }] +}; +exports.ic_no_meeting_room_twotone = ic_no_meeting_room_twotone; \ No newline at end of file diff --git a/dist/md/ic_no_photography.js b/dist/md/ic_no_photography.js new file mode 100644 index 000000000..2143c8a81 --- /dev/null +++ b/dist/md/ic_no_photography.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_no_photography = void 0; +var ic_no_photography = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M10.94,8.12L7.48,4.66L9,3h6l1.83,2H20c1.1,0,2,0.9,2,2v12c0,0.05-0.01,0.1-0.02,0.16l-5.1-5.1C16.96,13.71,17,13.36,17,13 c0-2.76-2.24-5-5-5C11.64,8,11.29,8.04,10.94,8.12z M20.49,23.31L18.17,21H4c-1.1,0-2-0.9-2-2V7c0-0.59,0.27-1.12,0.68-1.49l-2-2 L2.1,2.1l19.8,19.8L20.49,23.31z M14.49,17.32l-1.5-1.5C12.67,15.92,12.35,16,12,16c-1.66,0-3-1.34-3-3c0-0.35,0.08-0.67,0.19-0.98 l-1.5-1.5C7.25,11.24,7,12.09,7,13c0,2.76,2.24,5,5,5C12.91,18,13.76,17.75,14.49,17.32z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M10.94,8.12L7.48,4.66L9,3h6l1.83,2H20c1.1,0,2,0.9,2,2v12c0,0.05-0.01,0.1-0.02,0.16l-5.1-5.1C16.96,13.71,17,13.36,17,13 c0-2.76-2.24-5-5-5C11.64,8,11.29,8.04,10.94,8.12z M20.49,23.31L18.17,21H4c-1.1,0-2-0.9-2-2V7c0-0.59,0.27-1.12,0.68-1.49l-2-2 L2.1,2.1l19.8,19.8L20.49,23.31z M14.49,17.32l-1.5-1.5C12.67,15.92,12.35,16,12,16c-1.66,0-3-1.34-3-3c0-0.35,0.08-0.67,0.19-0.98 l-1.5-1.5C7.25,11.24,7,12.09,7,13c0,2.76,2.24,5,5,5C12.91,18,13.76,17.75,14.49,17.32z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_no_photography = ic_no_photography; \ No newline at end of file diff --git a/dist/md/ic_no_photography_outline.js b/dist/md/ic_no_photography_outline.js new file mode 100644 index 000000000..c8d5bd688 --- /dev/null +++ b/dist/md/ic_no_photography_outline.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_no_photography_outline = void 0; +var ic_no_photography_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M8.9,6.07L7.48,4.66L9,3h6l1.83,2H20c1.1,0,2,0.9,2,2v12c0,0.05-0.01,0.1-0.02,0.16L20,17.17V7h-4.05l-1.83-2H9.88 L8.9,6.07z M20.49,23.31L18.17,21H4c-1.1,0-2-0.9-2-2V7c0-0.59,0.27-1.12,0.68-1.49l-2-2L2.1,2.1l19.8,19.8L20.49,23.31z M9.19,12.02C9.08,12.33,9,12.65,9,13c0,1.66,1.34,3,3,3c0.35,0,0.67-0.08,0.98-0.19L9.19,12.02z M16.17,19l-1.68-1.68 C13.76,17.75,12.91,18,12,18c-2.76,0-5-2.24-5-5c0-0.91,0.25-1.76,0.68-2.49L4.17,7H4v12H16.17z M14.81,11.98l2.07,2.07 C16.96,13.71,17,13.36,17,13c0-2.76-2.24-5-5-5c-0.36,0-0.71,0.04-1.06,0.12l2.07,2.07C13.85,10.49,14.51,11.15,14.81,11.98z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M8.9,6.07L7.48,4.66L9,3h6l1.83,2H20c1.1,0,2,0.9,2,2v12c0,0.05-0.01,0.1-0.02,0.16L20,17.17V7h-4.05l-1.83-2H9.88 L8.9,6.07z M20.49,23.31L18.17,21H4c-1.1,0-2-0.9-2-2V7c0-0.59,0.27-1.12,0.68-1.49l-2-2L2.1,2.1l19.8,19.8L20.49,23.31z M9.19,12.02C9.08,12.33,9,12.65,9,13c0,1.66,1.34,3,3,3c0.35,0,0.67-0.08,0.98-0.19L9.19,12.02z M16.17,19l-1.68-1.68 C13.76,17.75,12.91,18,12,18c-2.76,0-5-2.24-5-5c0-0.91,0.25-1.76,0.68-2.49L4.17,7H4v12H16.17z M14.81,11.98l2.07,2.07 C16.96,13.71,17,13.36,17,13c0-2.76-2.24-5-5-5c-0.36,0-0.71,0.04-1.06,0.12l2.07,2.07C13.85,10.49,14.51,11.15,14.81,11.98z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_no_photography_outline = ic_no_photography_outline; \ No newline at end of file diff --git a/dist/md/ic_no_photography_twotone.js b/dist/md/ic_no_photography_twotone.js new file mode 100644 index 000000000..73e5378a6 --- /dev/null +++ b/dist/md/ic_no_photography_twotone.js @@ -0,0 +1,59 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_no_photography_twotone = void 0; +var ic_no_photography_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M10.94,8.12L8.9,6.07L9.88,5h4.24l1.83,2H20v10.17l-3.12-3.12 C16.96,13.71,17,13.36,17,13c0-2.76-2.24-5-5-5C11.64,8,11.29,8.04,10.94,8.12z M12,18c-2.76,0-5-2.24-5-5 c0-0.91,0.25-1.76,0.68-2.49L4.17,7H4v12h12.17l-1.68-1.68C13.76,17.75,12.91,18,12,18z", + "enable-background": "new", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M10.94,8.12L8.9,6.07L9.88,5h4.24l1.83,2H20v10.17l-3.12-3.12 C16.96,13.71,17,13.36,17,13c0-2.76-2.24-5-5-5C11.64,8,11.29,8.04,10.94,8.12z M12,18c-2.76,0-5-2.24-5-5 c0-0.91,0.25-1.76,0.68-2.49L4.17,7H4v12h12.17l-1.68-1.68C13.76,17.75,12.91,18,12,18z", + "enable-background": "new", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M8.9,6.07L7.48,4.66L9,3h6l1.83,2H20c1.1,0,2,0.9,2,2v12c0,0.05-0.01,0.1-0.02,0.16L20,17.17V7h-4.05l-1.83-2H9.88 L8.9,6.07z M20.49,23.31L18.17,21H4c-1.1,0-2-0.9-2-2V7c0-0.59,0.27-1.12,0.68-1.49l-2-2L2.1,2.1L7,7l2.01,2.01l1.43,1.43l4.1,4.1 l1.43,1.43L19,19l1.82,1.82l1.08,1.08L20.49,23.31z M9.19,12.02C9.08,12.33,9,12.65,9,13c0,1.65,1.35,3,3,3 c0.35,0,0.67-0.08,0.98-0.19L9.19,12.02z M16.17,19l-1.68-1.68C13.76,17.75,12.91,18,12,18c-2.76,0-5-2.24-5-5 c0-0.91,0.25-1.76,0.68-2.49L4.17,7H4v12H16.17z M14.81,11.98l2.08,2.08C16.96,13.71,17,13.36,17,13c0-2.76-2.24-5-5-5 c-0.36,0-0.71,0.04-1.06,0.12l2.08,2.08C13.85,10.5,14.5,11.15,14.81,11.98z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M8.9,6.07L7.48,4.66L9,3h6l1.83,2H20c1.1,0,2,0.9,2,2v12c0,0.05-0.01,0.1-0.02,0.16L20,17.17V7h-4.05l-1.83-2H9.88 L8.9,6.07z M20.49,23.31L18.17,21H4c-1.1,0-2-0.9-2-2V7c0-0.59,0.27-1.12,0.68-1.49l-2-2L2.1,2.1L7,7l2.01,2.01l1.43,1.43l4.1,4.1 l1.43,1.43L19,19l1.82,1.82l1.08,1.08L20.49,23.31z M9.19,12.02C9.08,12.33,9,12.65,9,13c0,1.65,1.35,3,3,3 c0.35,0,0.67-0.08,0.98-0.19L9.19,12.02z M16.17,19l-1.68-1.68C13.76,17.75,12.91,18,12,18c-2.76,0-5-2.24-5-5 c0-0.91,0.25-1.76,0.68-2.49L4.17,7H4v12H16.17z M14.81,11.98l2.08,2.08C16.96,13.71,17,13.36,17,13c0-2.76-2.24-5-5-5 c-0.36,0-0.71,0.04-1.06,0.12l2.08,2.08C13.85,10.5,14.5,11.15,14.81,11.98z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_no_photography_twotone = ic_no_photography_twotone; \ No newline at end of file diff --git a/dist/md/ic_no_sim.js b/dist/md/ic_no_sim.js new file mode 100644 index 000000000..66ecca5b7 --- /dev/null +++ b/dist/md/ic_no_sim.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_no_sim = void 0; +var ic_no_sim = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18.99 5c0-1.1-.89-2-1.99-2h-7L7.66 5.34 19 16.68 18.99 5zM3.65 3.88L2.38 5.15 5 7.77V19c0 1.1.9 2 2 2h10.01c.35 0 .67-.1.96-.26l1.88 1.88 1.27-1.27L3.65 3.88z" + }, + "children": [] + }] +}; +exports.ic_no_sim = ic_no_sim; \ No newline at end of file diff --git a/dist/md/ic_no_sim_outline.js b/dist/md/ic_no_sim_outline.js new file mode 100644 index 000000000..dd11250b0 --- /dev/null +++ b/dist/md/ic_no_sim_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_no_sim_outline = void 0; +var ic_no_sim_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21.26 21.21L3.79 3.74 2.38 5.15l2.74 2.74-.12.12V19c0 1.1.9 2 2 2h10c.35 0 .68-.1.97-.26l1.88 1.88 1.41-1.41zM7 19V9.77L16.23 19H7zm3.84-14H17v9.11l2 2V5c0-1.1-.9-2-2-2h-6.99L7.95 5.06l1.41 1.41L10.84 5z" + }, + "children": [] + }] +}; +exports.ic_no_sim_outline = ic_no_sim_outline; \ No newline at end of file diff --git a/dist/md/ic_no_sim_twotone.js b/dist/md/ic_no_sim_twotone.js new file mode 100644 index 000000000..d5171041c --- /dev/null +++ b/dist/md/ic_no_sim_twotone.js @@ -0,0 +1,44 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_no_sim_twotone = void 0; +var ic_no_sim_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 19h9.23L7 9.77z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3.79 3.74L2.38 5.15l2.74 2.74-.12.12V19c0 1.1.9 2 2 2h10c.35 0 .68-.1.97-.26l1.88 1.88 1.41-1.41L3.79 3.74zM7 19V9.77L16.23 19H7z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10.84 5L9.36 6.47 17 14.11V5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10.84 5H17v9.11l2 2V5c0-1.1-.9-2-2-2h-6.99L7.95 5.06l1.41 1.41L10.84 5z" + }, + "children": [] + }] +}; +exports.ic_no_sim_twotone = ic_no_sim_twotone; \ No newline at end of file diff --git a/dist/md/ic_no_stroller.js b/dist/md/ic_no_stroller.js new file mode 100644 index 000000000..d9555eb32 --- /dev/null +++ b/dist/md/ic_no_stroller.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_no_stroller = void 0; +var ic_no_stroller = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M6,18c1.1,0,2,0.9,2,2s-0.9,2-2,2s-2-0.9-2-2S4.9,18,6,18z M18.65,3c-1.66,0-2.54,1.27-3.18,2.03l-3.5,4.11L17,14.17v-7.9 C17.58,5.59,17.97,5,18.65,5C19.42,5,20,5.66,20,6.48V7h2V6.48C22,4.56,20.52,3,18.65,3z M10.67,10.67L2.81,2.81L1.39,4.22 l7.97,7.97L6.7,15.31c-0.55,0.65-0.09,1.65,0.76,1.65h6.66l1.17,1.17C14.54,18.42,14,19.14,14,20c0,1.1,0.9,2,2,2 c0.86,0,1.58-0.54,1.87-1.3l1.91,1.91l1.41-1.41l-4.8-4.8L10.67,10.67z M13.47,5.03c0.27-0.32,0.58-0.72,0.98-1.09 c-2.46-1.19-5.32-1.22-7.81-0.13l4.25,4.25L13.47,5.03z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M6,18c1.1,0,2,0.9,2,2s-0.9,2-2,2s-2-0.9-2-2S4.9,18,6,18z M18.65,3c-1.66,0-2.54,1.27-3.18,2.03l-3.5,4.11L17,14.17v-7.9 C17.58,5.59,17.97,5,18.65,5C19.42,5,20,5.66,20,6.48V7h2V6.48C22,4.56,20.52,3,18.65,3z M10.67,10.67L2.81,2.81L1.39,4.22 l7.97,7.97L6.7,15.31c-0.55,0.65-0.09,1.65,0.76,1.65h6.66l1.17,1.17C14.54,18.42,14,19.14,14,20c0,1.1,0.9,2,2,2 c0.86,0,1.58-0.54,1.87-1.3l1.91,1.91l1.41-1.41l-4.8-4.8L10.67,10.67z M13.47,5.03c0.27-0.32,0.58-0.72,0.98-1.09 c-2.46-1.19-5.32-1.22-7.81-0.13l4.25,4.25L13.47,5.03z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_no_stroller = ic_no_stroller; \ No newline at end of file diff --git a/dist/md/ic_no_stroller_outline.js b/dist/md/ic_no_stroller_outline.js new file mode 100644 index 000000000..464a2dc28 --- /dev/null +++ b/dist/md/ic_no_stroller_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_no_stroller_outline = void 0; +var ic_no_stroller_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M8,20c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2S8,18.9,8,20z M15,8.66v3.51l2,2v-7.9C17.58,5.59,17.97,5,18.65,5 C19.42,5,20,5.66,20,6.48V7h2V6.48C22,4.56,20.52,3,18.65,3c-1.66,0-2.54,1.27-3.18,2.03l-3.5,4.11l1.42,1.42L15,8.66z M19.78,22.61l-1.91-1.91C17.58,21.46,16.86,22,16,22c-1.1,0-2-0.9-2-2c0-0.86,0.54-1.58,1.3-1.87L14.17,17H7.43 c-0.85,0-1.31-1-0.76-1.65l2.69-3.16L1.39,4.22l1.41-1.41l7.86,7.86l1.42,1.42l0,0l9.11,9.11L19.78,22.61z M12.17,15l-1.39-1.39 L9.6,15H12.17z M10,5c0.29,0,0.58,0.02,0.86,0.05L9.49,6.67l1.42,1.42L14.3,4.1C13.03,3.4,11.56,3,10,3C8.77,3,7.6,3.25,6.53,3.7 L8.1,5.27C8.71,5.1,9.35,5,10,5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M8,20c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2S8,18.9,8,20z M15,8.66v3.51l2,2v-7.9C17.58,5.59,17.97,5,18.65,5 C19.42,5,20,5.66,20,6.48V7h2V6.48C22,4.56,20.52,3,18.65,3c-1.66,0-2.54,1.27-3.18,2.03l-3.5,4.11l1.42,1.42L15,8.66z M19.78,22.61l-1.91-1.91C17.58,21.46,16.86,22,16,22c-1.1,0-2-0.9-2-2c0-0.86,0.54-1.58,1.3-1.87L14.17,17H7.43 c-0.85,0-1.31-1-0.76-1.65l2.69-3.16L1.39,4.22l1.41-1.41l7.86,7.86l1.42,1.42l0,0l9.11,9.11L19.78,22.61z M12.17,15l-1.39-1.39 L9.6,15H12.17z M10,5c0.29,0,0.58,0.02,0.86,0.05L9.49,6.67l1.42,1.42L14.3,4.1C13.03,3.4,11.56,3,10,3C8.77,3,7.6,3.25,6.53,3.7 L8.1,5.27C8.71,5.1,9.35,5,10,5z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_no_stroller_outline = ic_no_stroller_outline; \ No newline at end of file diff --git a/dist/md/ic_no_stroller_twotone.js b/dist/md/ic_no_stroller_twotone.js new file mode 100644 index 000000000..8ddd30dfa --- /dev/null +++ b/dist/md/ic_no_stroller_twotone.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_no_stroller_twotone = void 0; +var ic_no_stroller_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M8.1,5.27C8.71,5.1,9.35,5,10,5c0.29,0,0.58,0.02,0.86,0.05L9.49,6.67L8.1,5.27z M15,12.17V8.66l-1.61,1.89 L15,12.17z M12.17,15l-1.39-1.39L9.6,15H12.17z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M8.1,5.27C8.71,5.1,9.35,5,10,5c0.29,0,0.58,0.02,0.86,0.05L9.49,6.67L8.1,5.27z M15,12.17V8.66l-1.61,1.89 L15,12.17z M12.17,15l-1.39-1.39L9.6,15H12.17z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M8,20c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2S8,18.9,8,20z M15,8.66v3.51l2,2v-7.9C17.58,5.59,17.97,5,18.65,5 C19.42,5,20,5.66,20,6.48V7h2V6.48C22,4.56,20.52,3,18.65,3c-1.66,0-2.54,1.27-3.18,2.03l-3.5,4.11l1.42,1.42L15,8.66z M19.78,22.61l-1.91-1.91C17.58,21.46,16.86,22,16,22c-1.1,0-2-0.9-2-2c0-0.86,0.54-1.58,1.3-1.87L14.17,17H7.43 c-0.85,0-1.31-1-0.76-1.65l2.69-3.16L1.39,4.22l1.41-1.41l7.86,7.86l1.42,1.42l0,0l9.11,9.11L19.78,22.61z M12.17,15l-1.39-1.39 L9.6,15H12.17z M10,5c0.29,0,0.58,0.02,0.86,0.05L9.49,6.67l1.42,1.42L14.3,4.1C13.03,3.4,11.56,3,10,3C8.77,3,7.6,3.25,6.53,3.7 L8.1,5.27C8.71,5.1,9.35,5,10,5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M8,20c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2S8,18.9,8,20z M15,8.66v3.51l2,2v-7.9C17.58,5.59,17.97,5,18.65,5 C19.42,5,20,5.66,20,6.48V7h2V6.48C22,4.56,20.52,3,18.65,3c-1.66,0-2.54,1.27-3.18,2.03l-3.5,4.11l1.42,1.42L15,8.66z M19.78,22.61l-1.91-1.91C17.58,21.46,16.86,22,16,22c-1.1,0-2-0.9-2-2c0-0.86,0.54-1.58,1.3-1.87L14.17,17H7.43 c-0.85,0-1.31-1-0.76-1.65l2.69-3.16L1.39,4.22l1.41-1.41l7.86,7.86l1.42,1.42l0,0l9.11,9.11L19.78,22.61z M12.17,15l-1.39-1.39 L9.6,15H12.17z M10,5c0.29,0,0.58,0.02,0.86,0.05L9.49,6.67l1.42,1.42L14.3,4.1C13.03,3.4,11.56,3,10,3C8.77,3,7.6,3.25,6.53,3.7 L8.1,5.27C8.71,5.1,9.35,5,10,5z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_no_stroller_twotone = ic_no_stroller_twotone; \ No newline at end of file diff --git a/dist/md/ic_no_transfer.js b/dist/md/ic_no_transfer.js new file mode 100644 index 000000000..ccfee8c14 --- /dev/null +++ b/dist/md/ic_no_transfer.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_no_transfer = void 0; +var ic_no_transfer = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21.19,21.19L2.81,2.81L1.39,4.22L4,6.83V16c0,0.88,0.39,1.67,1,2.22V20c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-1h8v1 c0,0.55,0.45,1,1,1h1c0.05,0,0.09-0.02,0.14-0.03l1.64,1.64L21.19,21.19z M7.5,17C6.67,17,6,16.33,6,15.5C6,14.67,6.67,14,7.5,14 S9,14.67,9,15.5C9,16.33,8.33,17,7.5,17z M6,11V8.83L8.17,11H6z M8.83,6L5.78,2.95C7.24,2.16,9.48,2,12,2c4.42,0,8,0.5,8,4v10 c0,0.35-0.08,0.67-0.19,0.98L13.83,11H18V6H8.83z" + }, + "children": [] + }] +}; +exports.ic_no_transfer = ic_no_transfer; \ No newline at end of file diff --git a/dist/md/ic_no_transfer_outline.js b/dist/md/ic_no_transfer_outline.js new file mode 100644 index 000000000..f847af95f --- /dev/null +++ b/dist/md/ic_no_transfer_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_no_transfer_outline = void 0; +var ic_no_transfer_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8.5,13c0.83,0,1.5,0.67,1.5,1.5S9.33,16,8.5,16S7,15.33,7,14.5S7.67,13,8.5,13z M19.78,22.61l-1.64-1.64 C18.09,20.98,18.05,21,18,21h-1c-0.55,0-1-0.45-1-1v-1H8v1c0,0.55-0.45,1-1,1H6c-0.55,0-1-0.45-1-1v-1.78C4.39,17.67,4,16.88,4,16 V6.83L1.39,4.22l1.41-1.41l18.38,18.38L19.78,22.61z M6,8.83V10h1.17L6,8.83z M14.17,17l-5-5H6v4c0,0.37,0.21,0.62,0.34,0.73 L6.63,17H14.17z M12,4c3.69,0,5.11,0.46,5.66,0.99H7.82l2,2H18V10h-5.17l2,2H18v3.17l1.81,1.81C19.92,16.67,20,16.35,20,16V6 c0-3.5-3.58-4-8-4C9.48,2,7.24,2.16,5.78,2.95l1.53,1.53C8.17,4.2,9.6,4,12,4z" + }, + "children": [] + }] +}; +exports.ic_no_transfer_outline = ic_no_transfer_outline; \ No newline at end of file diff --git a/dist/md/ic_no_transfer_twotone.js b/dist/md/ic_no_transfer_twotone.js new file mode 100644 index 000000000..78191b6c1 --- /dev/null +++ b/dist/md/ic_no_transfer_twotone.js @@ -0,0 +1,33 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_no_transfer_twotone = void 0; +var ic_no_transfer_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14.83,12H18v3.17L14.83,12z M9.17,12l5,5H6.63l-0.29-0.27 C6.21,16.62,6,16.37,6,16v-4H9.17z M10,14.5c0-0.83-0.67-1.5-1.5-1.5S7,13.67,7,14.5C7,15.33,7.67,16,8.5,16S10,15.33,10,14.5z M7.82,4.99h9.83C17.11,4.46,15.69,4,12,4C9.6,4,8.17,4.2,7.31,4.48L7.82,4.99z", + "enable-background": "new", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8.5,13c0.83,0,1.5,0.67,1.5,1.5S9.33,16,8.5,16S7,15.33,7,14.5S7.67,13,8.5,13z M7.31,4.48C8.17,4.2,9.6,4,12,4 c3.69,0,5.11,0.46,5.66,0.99H7.82l2,2H18V10h-5.17l2,2H18v3.17l1.81,1.81C19.92,16.67,20,16.35,20,16V6c0-3.5-3.58-4-8-4 C9.48,2,7.24,2.16,5.78,2.95L7.31,4.48z M19.78,22.61l-1.64-1.64C18.09,20.98,18.05,21,18,21h-1c-0.55,0-1-0.45-1-1v-1H8v1 c0,0.55-0.45,1-1,1H6c-0.55,0-1-0.45-1-1v-1.78C4.39,17.67,4,16.88,4,16V6.83L1.39,4.22l1.41-1.41l18.38,18.38L19.78,22.61z M6,8.83 V10h1.17L6,8.83z M14.17,17l-5-5H6v4c0,0.37,0.21,0.62,0.34,0.73L6.63,17H8H14.17z" + }, + "children": [] + }] +}; +exports.ic_no_transfer_twotone = ic_no_transfer_twotone; \ No newline at end of file diff --git a/dist/md/ic_north.js b/dist/md/ic_north.js new file mode 100644 index 000000000..28da7cabe --- /dev/null +++ b/dist/md/ic_north.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_north = void 0; +var ic_north = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5,9l1.41,1.41L11,5.83V22H13V5.83l4.59,4.59L19,9l-7-7L5,9z" + }, + "children": [] + }] +}; +exports.ic_north = ic_north; \ No newline at end of file diff --git a/dist/md/ic_north_east.js b/dist/md/ic_north_east.js new file mode 100644 index 000000000..0c1a13673 --- /dev/null +++ b/dist/md/ic_north_east.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_north_east = void 0; +var ic_north_east = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9,5v2h6.59L4,18.59L5.41,20L17,8.41V15h2V5H9z" + }, + "children": [] + }] +}; +exports.ic_north_east = ic_north_east; \ No newline at end of file diff --git a/dist/md/ic_north_east_outline.js b/dist/md/ic_north_east_outline.js new file mode 100644 index 000000000..ba1a285dd --- /dev/null +++ b/dist/md/ic_north_east_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_north_east_outline = void 0; +var ic_north_east_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9,5v2h6.59L4,18.59L5.41,20L17,8.41V15h2V5H9z" + }, + "children": [] + }] +}; +exports.ic_north_east_outline = ic_north_east_outline; \ No newline at end of file diff --git a/dist/md/ic_north_east_twotone.js b/dist/md/ic_north_east_twotone.js new file mode 100644 index 000000000..50a06af73 --- /dev/null +++ b/dist/md/ic_north_east_twotone.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_north_east_twotone = void 0; +var ic_north_east_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9,5v2h6.59L4,18.59L5.41,20L17,8.41V15h2V5H9z" + }, + "children": [] + }] +}; +exports.ic_north_east_twotone = ic_north_east_twotone; \ No newline at end of file diff --git a/dist/md/ic_north_outline.js b/dist/md/ic_north_outline.js new file mode 100644 index 000000000..753f038f2 --- /dev/null +++ b/dist/md/ic_north_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_north_outline = void 0; +var ic_north_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5,9l1.41,1.41L11,5.83V22H13V5.83l4.59,4.59L19,9l-7-7L5,9z" + }, + "children": [] + }] +}; +exports.ic_north_outline = ic_north_outline; \ No newline at end of file diff --git a/dist/md/ic_north_twotone.js b/dist/md/ic_north_twotone.js new file mode 100644 index 000000000..4892abe29 --- /dev/null +++ b/dist/md/ic_north_twotone.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_north_twotone = void 0; +var ic_north_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5,9l1.41,1.41L11,5.83V22H13V5.83l4.59,4.59L19,9l-7-7L5,9z" + }, + "children": [] + }] +}; +exports.ic_north_twotone = ic_north_twotone; \ No newline at end of file diff --git a/dist/md/ic_north_west.js b/dist/md/ic_north_west.js new file mode 100644 index 000000000..eaa089718 --- /dev/null +++ b/dist/md/ic_north_west.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_north_west = void 0; +var ic_north_west = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5,15h2V8.41L18.59,20L20,18.59L8.41,7H15V5H5V15z" + }, + "children": [] + }] +}; +exports.ic_north_west = ic_north_west; \ No newline at end of file diff --git a/dist/md/ic_north_west_outline.js b/dist/md/ic_north_west_outline.js new file mode 100644 index 000000000..da6bae299 --- /dev/null +++ b/dist/md/ic_north_west_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_north_west_outline = void 0; +var ic_north_west_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5,15h2V8.41L18.59,20L20,18.59L8.41,7H15V5H5V15z" + }, + "children": [] + }] +}; +exports.ic_north_west_outline = ic_north_west_outline; \ No newline at end of file diff --git a/dist/md/ic_north_west_twotone.js b/dist/md/ic_north_west_twotone.js new file mode 100644 index 000000000..88f1a827b --- /dev/null +++ b/dist/md/ic_north_west_twotone.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_north_west_twotone = void 0; +var ic_north_west_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5,15h2V8.41L18.59,20L20,18.59L8.41,7H15V5H5V15z" + }, + "children": [] + }] +}; +exports.ic_north_west_twotone = ic_north_west_twotone; \ No newline at end of file diff --git a/dist/md/ic_not_accessible.js b/dist/md/ic_not_accessible.js new file mode 100644 index 000000000..665396985 --- /dev/null +++ b/dist/md/ic_not_accessible.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_not_accessible = void 0; +var ic_not_accessible = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M14,11.05l-3.42-3.42c0.32-0.34,0.74-0.57,1.23-0.61c0.48-0.04,0.84,0.07,1.2,0.26c0.19,0.1,0.39,0.22,0.63,0.46l1.29,1.43 c0.98,1.08,2.53,1.85,4.07,1.83v2C17.25,12.99,15.29,12.12,14,11.05z M12,6c1.1,0,2-0.9,2-2s-0.9-2-2-2c-1.1,0-2,0.9-2,2 S10.9,6,12,6z M2.81,2.81L1.39,4.22L10,12.83V15c0,1.1,0.9,2,2,2h2.17l5.61,5.61l1.41-1.41L2.81,2.81z M10,20c-1.66,0-3-1.34-3-3 c0-1.31,0.84-2.41,2-2.83V12.1c-2.28,0.46-4,2.48-4,4.9c0,2.76,2.24,5,5,5c2.42,0,4.44-1.72,4.9-4h-2.07 C12.42,19.16,11.31,20,10,20z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14,11.05l-3.42-3.42c0.32-0.34,0.74-0.57,1.23-0.61c0.48-0.04,0.84,0.07,1.2,0.26c0.19,0.1,0.39,0.22,0.63,0.46l1.29,1.43 c0.98,1.08,2.53,1.85,4.07,1.83v2C17.25,12.99,15.29,12.12,14,11.05z M12,6c1.1,0,2-0.9,2-2s-0.9-2-2-2c-1.1,0-2,0.9-2,2 S10.9,6,12,6z M2.81,2.81L1.39,4.22L10,12.83V15c0,1.1,0.9,2,2,2h2.17l5.61,5.61l1.41-1.41L2.81,2.81z M10,20c-1.66,0-3-1.34-3-3 c0-1.31,0.84-2.41,2-2.83V12.1c-2.28,0.46-4,2.48-4,4.9c0,2.76,2.24,5,5,5c2.42,0,4.44-1.72,4.9-4h-2.07 C12.42,19.16,11.31,20,10,20z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_not_accessible = ic_not_accessible; \ No newline at end of file diff --git a/dist/md/ic_not_accessible_outline.js b/dist/md/ic_not_accessible_outline.js new file mode 100644 index 000000000..be0a79aa4 --- /dev/null +++ b/dist/md/ic_not_accessible_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_not_accessible_outline = void 0; +var ic_not_accessible_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M10,4c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S10,5.1,10,4z M19,13v-2c-1.54,0.02-3.09-0.75-4.07-1.83l-1.29-1.43 C13.4,7.5,13.2,7.38,13.01,7.28c-0.36-0.19-0.72-0.3-1.2-0.26c-0.49,0.04-0.91,0.27-1.23,0.61L14,11.05 C15.29,12.12,17.25,12.99,19,13z M10,20c-1.66,0-3-1.34-3-3c0-1.31,0.84-2.41,2-2.83V12.1c-2.28,0.46-4,2.48-4,4.9 c0,2.76,2.24,5,5,5c2.42,0,4.44-1.72,4.9-4h-2.07C12.42,19.16,11.31,20,10,20z M2.81,2.81L1.39,4.22L10,12.83V15c0,1.1,0.9,2,2,2 h2.17l5.61,5.61l1.41-1.41L2.81,2.81z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M10,4c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S10,5.1,10,4z M19,13v-2c-1.54,0.02-3.09-0.75-4.07-1.83l-1.29-1.43 C13.4,7.5,13.2,7.38,13.01,7.28c-0.36-0.19-0.72-0.3-1.2-0.26c-0.49,0.04-0.91,0.27-1.23,0.61L14,11.05 C15.29,12.12,17.25,12.99,19,13z M10,20c-1.66,0-3-1.34-3-3c0-1.31,0.84-2.41,2-2.83V12.1c-2.28,0.46-4,2.48-4,4.9 c0,2.76,2.24,5,5,5c2.42,0,4.44-1.72,4.9-4h-2.07C12.42,19.16,11.31,20,10,20z M2.81,2.81L1.39,4.22L10,12.83V15c0,1.1,0.9,2,2,2 h2.17l5.61,5.61l1.41-1.41L2.81,2.81z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_not_accessible_outline = ic_not_accessible_outline; \ No newline at end of file diff --git a/dist/md/ic_not_accessible_twotone.js b/dist/md/ic_not_accessible_twotone.js new file mode 100644 index 000000000..a1bdcf426 --- /dev/null +++ b/dist/md/ic_not_accessible_twotone.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_not_accessible_twotone = void 0; +var ic_not_accessible_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M10,4c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S10,5.1,10,4z M19,13v-2c-1.54,0.02-3.09-0.75-4.07-1.83l-1.29-1.43 C13.4,7.5,13.2,7.38,13.01,7.28c-0.36-0.19-0.72-0.3-1.2-0.26c-0.49,0.04-0.91,0.27-1.23,0.61L14,11.05 C15.29,12.12,17.25,12.99,19,13z M10,20c-1.66,0-3-1.34-3-3c0-1.31,0.84-2.41,2-2.83V12.1c-2.28,0.46-4,2.48-4,4.9 c0,2.76,2.24,5,5,5c2.42,0,4.44-1.72,4.9-4h-2.07C12.42,19.16,11.31,20,10,20z M2.81,2.81L1.39,4.22L10,12.83V15c0,1.1,0.9,2,2,2 h2.17l5.61,5.61l1.41-1.41L2.81,2.81z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M10,4c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S10,5.1,10,4z M19,13v-2c-1.54,0.02-3.09-0.75-4.07-1.83l-1.29-1.43 C13.4,7.5,13.2,7.38,13.01,7.28c-0.36-0.19-0.72-0.3-1.2-0.26c-0.49,0.04-0.91,0.27-1.23,0.61L14,11.05 C15.29,12.12,17.25,12.99,19,13z M10,20c-1.66,0-3-1.34-3-3c0-1.31,0.84-2.41,2-2.83V12.1c-2.28,0.46-4,2.48-4,4.9 c0,2.76,2.24,5,5,5c2.42,0,4.44-1.72,4.9-4h-2.07C12.42,19.16,11.31,20,10,20z M2.81,2.81L1.39,4.22L10,12.83V15c0,1.1,0.9,2,2,2 h2.17l5.61,5.61l1.41-1.41L2.81,2.81z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_not_accessible_twotone = ic_not_accessible_twotone; \ No newline at end of file diff --git a/dist/md/ic_not_interested.js b/dist/md/ic_not_interested.js new file mode 100644 index 000000000..40230504e --- /dev/null +++ b/dist/md/ic_not_interested.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_not_interested = void 0; +var ic_not_interested = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9L16.9 18.31C15.55 19.37 13.85 20 12 20zm6.31-3.1L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9z" + }, + "children": [] + }] +}; +exports.ic_not_interested = ic_not_interested; \ No newline at end of file diff --git a/dist/md/ic_not_interested_outline.js b/dist/md/ic_not_interested_outline.js new file mode 100644 index 000000000..8540fbf2a --- /dev/null +++ b/dist/md/ic_not_interested_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_not_interested_outline = void 0; +var ic_not_interested_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9L16.9 18.31C15.55 19.37 13.85 20 12 20zm6.31-3.1L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9z" + }, + "children": [] + }] +}; +exports.ic_not_interested_outline = ic_not_interested_outline; \ No newline at end of file diff --git a/dist/md/ic_not_interested_twotone.js b/dist/md/ic_not_interested_twotone.js new file mode 100644 index 000000000..d7da2b7f6 --- /dev/null +++ b/dist/md/ic_not_interested_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_not_interested_twotone = void 0; +var ic_not_interested_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 22c5.52 0 10-4.48 10-10S17.52 2 12 2 2 6.48 2 12s4.48 10 10 10zm0-18c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9L7.1 5.69C8.45 4.63 10.15 4 12 4zM5.69 7.1L16.9 18.31C15.55 19.37 13.85 20 12 20c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9z" + }, + "children": [] + }] +}; +exports.ic_not_interested_twotone = ic_not_interested_twotone; \ No newline at end of file diff --git a/dist/md/ic_not_listed_location.js b/dist/md/ic_not_listed_location.js new file mode 100644 index 000000000..e5b57ec9d --- /dev/null +++ b/dist/md/ic_not_listed_location.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_not_listed_location = void 0; +var ic_not_listed_location = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C8.14 2 5 5.14 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.86-3.14-7-7-7zm.88 13.75h-1.75V14h1.75v1.75zm0-2.87h-1.75c0-2.84 2.62-2.62 2.62-4.38 0-.96-.79-1.75-1.75-1.75s-1.75.79-1.75 1.75H8.5C8.5 6.57 10.07 5 12 5s3.5 1.57 3.5 3.5c0 2.19-2.62 2.41-2.62 4.38z" + }, + "children": [] + }] +}; +exports.ic_not_listed_location = ic_not_listed_location; \ No newline at end of file diff --git a/dist/md/ic_not_listed_location_outline.js b/dist/md/ic_not_listed_location_outline.js new file mode 100644 index 000000000..cc66fd1b2 --- /dev/null +++ b/dist/md/ic_not_listed_location_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_not_listed_location_outline = void 0; +var ic_not_listed_location_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0,0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12.01,16c-0.27,0-0.52-0.1-0.71-0.29c-0.2-0.2-0.29-0.43-0.29-0.71c-0.01-0.55,0.43-0.99,0.98-1c0.01,0,0.01,0,0.02,0 c0.28,0,0.51,0.1,0.71,0.29c0.18,0.19,0.28,0.43,0.28,0.7s-0.1,0.51-0.29,0.71S12.28,16,12.01,16z M11.13,12.34 c0-0.45,0.1-0.84,0.29-1.16c0.19-0.33,0.53-0.7,1-1.12c0.28-0.25,0.48-0.47,0.61-0.66s0.19-0.4,0.19-0.64 c0-0.29-0.11-0.53-0.32-0.74c-0.21-0.2-0.5-0.3-0.85-0.3c-0.37,0-0.74,0.1-0.96,0.3c-0.21,0.2-0.4,0.45-0.4,0.98H9 c0-1.01,0.46-1.73,0.97-2.21C10.53,6.28,11.25,6,12,6c0.59,0,1.11,0.12,1.57,0.35s0.79,0.55,1.05,0.96S15,8.17,15,8.66 s-0.1,0.9-0.31,1.25S14.21,10.62,13.8,11c-0.32,0.3-0.53,0.56-0.65,0.77s-0.18,0.49-0.18,0.81V13h-1.85v-0.66H11.13z M18,10.2 C18,6.57,15.35,4,12,4s-6,2.57-6,6.2c0,2.34,1.95,5.44,6,9.14C16.05,15.64,18,12.54,18,10.2z M12,2c4.2,0,8,3.22,8,8.2 c0,3.32-2.67,7.25-8,11.8c-5.33-4.55-8-8.48-8-11.8C4,5.22,7.8,2,12,2z" + }, + "children": [] + }] +}; +exports.ic_not_listed_location_outline = ic_not_listed_location_outline; \ No newline at end of file diff --git a/dist/md/ic_not_listed_location_twotone.js b/dist/md/ic_not_listed_location_twotone.js new file mode 100644 index 000000000..57d0e8565 --- /dev/null +++ b/dist/md/ic_not_listed_location_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_not_listed_location_twotone = void 0; +var ic_not_listed_location_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0,0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18.5,10.2c0,2.57-2.1,5.79-6.16,9.51L12,20.01l-0.34-0.31C7.6,15.99,5.5,12.77,5.5,10.2 c0-3.84,2.82-6.7,6.5-6.7S18.5,6.35,18.5,10.2z", + "fill-opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12.01,16c-0.27,0-0.52-0.1-0.71-0.29c-0.2-0.2-0.29-0.43-0.29-0.71c-0.01-0.55,0.43-0.99,0.98-1c0.01,0,0.01,0,0.02,0 c0.28,0,0.51,0.1,0.71,0.29c0.18,0.19,0.28,0.43,0.28,0.7s-0.1,0.51-0.29,0.71S12.28,16,12.01,16z M11.13,12.34 c0-0.45,0.1-0.84,0.29-1.16c0.19-0.33,0.53-0.7,1-1.12c0.28-0.25,0.48-0.47,0.61-0.66s0.19-0.4,0.19-0.64 c0-0.29-0.11-0.53-0.32-0.74c-0.21-0.2-0.5-0.3-0.85-0.3c-0.37,0-0.74,0.1-0.96,0.3c-0.21,0.2-0.4,0.45-0.4,0.98H9 c0-1.01,0.46-1.73,0.97-2.21C10.53,6.28,11.25,6,12,6c0.59,0,1.11,0.12,1.57,0.35C14.45,6.78,15,7.68,15,8.66 c0,0.49-0.1,0.9-0.31,1.25S14.21,10.62,13.8,11c-0.32,0.3-0.53,0.56-0.65,0.77s-0.18,0.49-0.18,0.81V13h-1.85v-0.66H11.13z M18,10.2 C18,6.57,15.35,4,12,4s-6,2.57-6,6.2c0,2.34,1.95,5.44,6,9.14C16.05,15.64,18,12.54,18,10.2z M12,2c4.2,0,8,3.22,8,8.2 c0,3.32-2.67,7.25-8,11.8c-5.33-4.55-8-8.48-8-11.8C4,5.22,7.8,2,12,2z" + }, + "children": [] + }] +}; +exports.ic_not_listed_location_twotone = ic_not_listed_location_twotone; \ No newline at end of file diff --git a/dist/md/ic_not_started.js b/dist/md/ic_not_started.js new file mode 100644 index 000000000..74e4bdfb6 --- /dev/null +++ b/dist/md/ic_not_started.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_not_started = void 0; +var ic_not_started = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M11,16H9V8h2V16z M12,16V8l5,4L12,16z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M11,16H9V8h2V16z M12,16V8l5,4L12,16z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_not_started = ic_not_started; \ No newline at end of file diff --git a/dist/md/ic_not_started_outline.js b/dist/md/ic_not_started_outline.js new file mode 100644 index 000000000..e3b2fe0f3 --- /dev/null +++ b/dist/md/ic_not_started_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_not_started_outline = void 0; +var ic_not_started_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8s-8-3.59-8-8S7.59,4,12,4 M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10 s10-4.48,10-10C22,6.48,17.52,2,12,2L12,2z M11,8H9v8h2V8z M17,12l-5-4v8L17,12z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8s-8-3.59-8-8S7.59,4,12,4 M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10 s10-4.48,10-10C22,6.48,17.52,2,12,2L12,2z M11,8H9v8h2V8z M17,12l-5-4v8L17,12z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_not_started_outline = ic_not_started_outline; \ No newline at end of file diff --git a/dist/md/ic_not_started_twotone.js b/dist/md/ic_not_started_twotone.js new file mode 100644 index 000000000..fb9ce77bc --- /dev/null +++ b/dist/md/ic_not_started_twotone.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_not_started_twotone = void 0; +var ic_not_started_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M12,4c-4.41,0-8,3.59-8,8c0,4.41,3.59,8,8,8s8-3.59,8-8C20,7.59,16.41,4,12,4z M11,16H9V8h2V16z M12,16V8 l5,4L12,16z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,4c-4.41,0-8,3.59-8,8c0,4.41,3.59,8,8,8s8-3.59,8-8C20,7.59,16.41,4,12,4z M11,16H9V8h2V16z M12,16V8 l5,4L12,16z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8s-8-3.59-8-8S7.59,4,12,4 M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10 s10-4.48,10-10C22,6.48,17.52,2,12,2L12,2z M11,8H9v8h2V8z M17,12l-5-4v8L17,12z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8s-8-3.59-8-8S7.59,4,12,4 M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10 s10-4.48,10-10C22,6.48,17.52,2,12,2L12,2z M11,8H9v8h2V8z M17,12l-5-4v8L17,12z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_not_started_twotone = ic_not_started_twotone; \ No newline at end of file diff --git a/dist/md/ic_note.js b/dist/md/ic_note.js new file mode 100644 index 000000000..e74c62662 --- /dev/null +++ b/dist/md/ic_note.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_note = void 0; +var ic_note = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 10l-6-6H4c-1.1 0-2 .9-2 2v12.01c0 1.1.9 1.99 2 1.99l16-.01c1.1 0 2-.89 2-1.99v-8zm-7-4.5l5.5 5.5H15V5.5z" + }, + "children": [] + }] +}; +exports.ic_note = ic_note; \ No newline at end of file diff --git a/dist/md/ic_note_add.js b/dist/md/ic_note_add.js new file mode 100644 index 000000000..701bacdf2 --- /dev/null +++ b/dist/md/ic_note_add.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_note_add = void 0; +var ic_note_add = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm2 14h-3v3h-2v-3H8v-2h3v-3h2v3h3v2zm-3-7V3.5L18.5 9H13z" + }, + "children": [] + }] +}; +exports.ic_note_add = ic_note_add; \ No newline at end of file diff --git a/dist/md/ic_note_add_outline.js b/dist/md/ic_note_add_outline.js new file mode 100644 index 000000000..2de573945 --- /dev/null +++ b/dist/md/ic_note_add_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_note_add_outline = void 0; +var ic_note_add_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 11h-2v3H8v2h3v3h2v-3h3v-2h-3zm1-9H6c-1.1 0-2 .9-2 2v16c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm4 18H6V4h7v5h5v11z" + }, + "children": [] + }] +}; +exports.ic_note_add_outline = ic_note_add_outline; \ No newline at end of file diff --git a/dist/md/ic_note_add_twotone.js b/dist/md/ic_note_add_twotone.js new file mode 100644 index 000000000..c630893c4 --- /dev/null +++ b/dist/md/ic_note_add_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_note_add_twotone = void 0; +var ic_note_add_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 4H6v16h12V9h-5V4zm3 10v2h-3v3h-2v-3H8v-2h3v-3h2v3h3z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 11h-2v3H8v2h3v3h2v-3h3v-2h-3zm1-9H6c-1.1 0-2 .9-2 2v16c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm4 18H6V4h7v5h5v11z" + }, + "children": [] + }] +}; +exports.ic_note_add_twotone = ic_note_add_twotone; \ No newline at end of file diff --git a/dist/md/ic_note_outline.js b/dist/md/ic_note_outline.js new file mode 100644 index 000000000..eace97702 --- /dev/null +++ b/dist/md/ic_note_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_note_outline = void 0; +var ic_note_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 4H4c-1.1 0-2 .9-2 2v12.01c0 1.1.9 1.99 2 1.99h16c1.1 0 2-.9 2-2v-8l-6-6zM4 18.01V6h11v5h5v7.01H4z" + }, + "children": [] + }] +}; +exports.ic_note_outline = ic_note_outline; \ No newline at end of file diff --git a/dist/md/ic_note_twotone.js b/dist/md/ic_note_twotone.js new file mode 100644 index 000000000..f245f26c2 --- /dev/null +++ b/dist/md/ic_note_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_note_twotone = void 0; +var ic_note_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 6H4v12.01h16V11h-5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 4c-1.1 0-2 .9-2 2v12.01c0 1.1.9 1.99 2 1.99h16c1.1 0 2-.9 2-2v-8l-6-6H4zm16 14.01H4V6h11v5h5v7.01z" + }, + "children": [] + }] +}; +exports.ic_note_twotone = ic_note_twotone; \ No newline at end of file diff --git a/dist/md/ic_notes.js b/dist/md/ic_notes.js new file mode 100644 index 000000000..c1424fba0 --- /dev/null +++ b/dist/md/ic_notes.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_notes = void 0; +var ic_notes = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 18h12v-2H3v2zM3 6v2h18V6H3zm0 7h18v-2H3v2z" + }, + "children": [] + }] +}; +exports.ic_notes = ic_notes; \ No newline at end of file diff --git a/dist/md/ic_notes_outline.js b/dist/md/ic_notes_outline.js new file mode 100644 index 000000000..77c23e0a4 --- /dev/null +++ b/dist/md/ic_notes_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_notes_outline = void 0; +var ic_notes_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 11.01L3 11v2h18zM3 16h12v2H3zM21 6H3v2.01L21 8z" + }, + "children": [] + }] +}; +exports.ic_notes_outline = ic_notes_outline; \ No newline at end of file diff --git a/dist/md/ic_notes_twotone.js b/dist/md/ic_notes_twotone.js new file mode 100644 index 000000000..52e927ae7 --- /dev/null +++ b/dist/md/ic_notes_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_notes_twotone = void 0; +var ic_notes_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 11.01L3 11v2h18zM3 16h12v2H3zM21 6H3v2.01L21 8z" + }, + "children": [] + }] +}; +exports.ic_notes_twotone = ic_notes_twotone; \ No newline at end of file diff --git a/dist/md/ic_notification_important.js b/dist/md/ic_notification_important.js new file mode 100644 index 000000000..ebd33ba49 --- /dev/null +++ b/dist/md/ic_notification_important.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_notification_important = void 0; +var ic_notification_important = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 16v-5c0-3.07-1.64-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.63 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2zm-5 0h-2v-2h2v2zm0-4h-2V8h2v4zm-1 10c1.1 0 2-.9 2-2h-4c0 1.1.89 2 2 2z" + }, + "children": [] + }] +}; +exports.ic_notification_important = ic_notification_important; \ No newline at end of file diff --git a/dist/md/ic_notification_important_outline.js b/dist/md/ic_notification_important_outline.js new file mode 100644 index 000000000..d397d21ee --- /dev/null +++ b/dist/md/ic_notification_important_outline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_notification_important_outline = void 0; +var ic_notification_important_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M10.01 21.01c0 1.1.89 1.99 1.99 1.99s1.99-.89 1.99-1.99h-3.98zM12 6c2.76 0 5 2.24 5 5v7H7v-7c0-2.76 2.24-5 5-5zm0-4.5c-.83 0-1.5.67-1.5 1.5v1.17C7.36 4.85 5 7.65 5 11v6l-2 2v1h18v-1l-2-2v-6c0-3.35-2.36-6.15-5.5-6.83V3c0-.83-.67-1.5-1.5-1.5zM11 8h2v4h-2zm0 6h2v2h-2z" + }, + "children": [] + }] +}; +exports.ic_notification_important_outline = ic_notification_important_outline; \ No newline at end of file diff --git a/dist/md/ic_notification_important_twotone.js b/dist/md/ic_notification_important_twotone.js new file mode 100644 index 000000000..93d97c58a --- /dev/null +++ b/dist/md/ic_notification_important_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_notification_important_twotone = void 0; +var ic_notification_important_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 6c-2.76 0-5 2.24-5 5v7h10v-7c0-2.76-2.24-5-5-5zm1 10h-2v-2h2v2zm0-4h-2V8h2v4z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 23c1.1 0 1.99-.89 1.99-1.99h-3.98c0 1.1.89 1.99 1.99 1.99zm7-6v-6c0-3.35-2.36-6.15-5.5-6.83V3c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v1.17C7.36 4.85 5 7.65 5 11v6l-2 2v1h18v-1l-2-2zm-2 1H7v-7c0-2.76 2.24-5 5-5s5 2.24 5 5v7zM11 8h2v4h-2zm0 6h2v2h-2z" + }, + "children": [] + }] +}; +exports.ic_notification_important_twotone = ic_notification_important_twotone; \ No newline at end of file diff --git a/dist/md/ic_notifications.js b/dist/md/ic_notifications.js new file mode 100644 index 000000000..939276f57 --- /dev/null +++ b/dist/md/ic_notifications.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_notifications = void 0; +var ic_notifications = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 22c1.1 0 2-.9 2-2h-4c0 1.1.89 2 2 2zm6-6v-5c0-3.07-1.64-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.63 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2z" + }, + "children": [] + }] +}; +exports.ic_notifications = ic_notifications; \ No newline at end of file diff --git a/dist/md/ic_notifications_active.js b/dist/md/ic_notifications_active.js new file mode 100644 index 000000000..a02ddcc3a --- /dev/null +++ b/dist/md/ic_notifications_active.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_notifications_active = void 0; +var ic_notifications_active = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7.58 4.08L6.15 2.65C3.75 4.48 2.17 7.3 2.03 10.5h2c.15-2.65 1.51-4.97 3.55-6.42zm12.39 6.42h2c-.15-3.2-1.73-6.02-4.12-7.85l-1.42 1.43c2.02 1.45 3.39 3.77 3.54 6.42zM18 11c0-3.07-1.64-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.63 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2v-5zm-6 11c.14 0 .27-.01.4-.04.65-.14 1.18-.58 1.44-1.18.1-.24.15-.5.15-.78h-4c.01 1.1.9 2 2.01 2z" + }, + "children": [] + }] +}; +exports.ic_notifications_active = ic_notifications_active; \ No newline at end of file diff --git a/dist/md/ic_notifications_active_outline.js b/dist/md/ic_notifications_active_outline.js new file mode 100644 index 000000000..c831639e2 --- /dev/null +++ b/dist/md/ic_notifications_active_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_notifications_active_outline = void 0; +var ic_notifications_active_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm6-6v-5c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.64 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2zm-2 1H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6zM7.58 4.08L6.15 2.65C3.75 4.48 2.17 7.3 2.03 10.5h2c.15-2.65 1.51-4.97 3.55-6.42zm12.39 6.42h2c-.15-3.2-1.73-6.02-4.12-7.85l-1.42 1.43c2.02 1.45 3.39 3.77 3.54 6.42z" + }, + "children": [] + }] +}; +exports.ic_notifications_active_outline = ic_notifications_active_outline; \ No newline at end of file diff --git a/dist/md/ic_notifications_active_twotone.js b/dist/md/ic_notifications_active_twotone.js new file mode 100644 index 000000000..6c61e6529 --- /dev/null +++ b/dist/md/ic_notifications_active_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_notifications_active_twotone = void 0; +var ic_notifications_active_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 6.5c-2.49 0-4 2.02-4 4.5v6h8v-6c0-2.48-1.51-4.5-4-4.5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm6-11c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.64 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2v-5zm-2 6H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6zM7.58 4.08L6.15 2.65C3.75 4.48 2.17 7.3 2.03 10.5h2c.15-2.65 1.51-4.97 3.55-6.42zm12.39 6.42h2c-.15-3.2-1.73-6.02-4.12-7.85l-1.42 1.43c2.02 1.45 3.39 3.77 3.54 6.42z" + }, + "children": [] + }] +}; +exports.ic_notifications_active_twotone = ic_notifications_active_twotone; \ No newline at end of file diff --git a/dist/md/ic_notifications_none.js b/dist/md/ic_notifications_none.js new file mode 100644 index 000000000..661ef9165 --- /dev/null +++ b/dist/md/ic_notifications_none.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_notifications_none = void 0; +var ic_notifications_none = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm6-6v-5c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.64 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2zm-2 1H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6z" + }, + "children": [] + }] +}; +exports.ic_notifications_none = ic_notifications_none; \ No newline at end of file diff --git a/dist/md/ic_notifications_none_outline.js b/dist/md/ic_notifications_none_outline.js new file mode 100644 index 000000000..5797e77af --- /dev/null +++ b/dist/md/ic_notifications_none_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_notifications_none_outline = void 0; +var ic_notifications_none_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm6-6v-5c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.64 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2zm-2 1H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6z" + }, + "children": [] + }] +}; +exports.ic_notifications_none_outline = ic_notifications_none_outline; \ No newline at end of file diff --git a/dist/md/ic_notifications_none_twotone.js b/dist/md/ic_notifications_none_twotone.js new file mode 100644 index 000000000..dad8d6e85 --- /dev/null +++ b/dist/md/ic_notifications_none_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_notifications_none_twotone = void 0; +var ic_notifications_none_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 6.5c-2.49 0-4 2.02-4 4.5v6h8v-6c0-2.48-1.51-4.5-4-4.5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 16v-5c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.64 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2zm-2 1H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6zm-4 5c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2z" + }, + "children": [] + }] +}; +exports.ic_notifications_none_twotone = ic_notifications_none_twotone; \ No newline at end of file diff --git a/dist/md/ic_notifications_off.js b/dist/md/ic_notifications_off.js new file mode 100644 index 000000000..325a063ad --- /dev/null +++ b/dist/md/ic_notifications_off.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_notifications_off = void 0; +var ic_notifications_off = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 18.69L7.84 6.14 5.27 3.49 4 4.76l2.8 2.8v.01c-.52.99-.8 2.16-.8 3.42v5l-2 2v1h13.73l2 2L21 19.72l-1-1.03zM12 22c1.11 0 2-.89 2-2h-4c0 1.11.89 2 2 2zm6-7.32V11c0-3.08-1.64-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68c-.15.03-.29.08-.42.12-.1.03-.2.07-.3.11h-.01c-.01 0-.01 0-.02.01-.23.09-.46.2-.68.31 0 0-.01 0-.01.01L18 14.68z" + }, + "children": [] + }] +}; +exports.ic_notifications_off = ic_notifications_off; \ No newline at end of file diff --git a/dist/md/ic_notifications_off_outline.js b/dist/md/ic_notifications_off_outline.js new file mode 100644 index 000000000..7238e58d7 --- /dev/null +++ b/dist/md/ic_notifications_off_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_notifications_off_outline = void 0; +var ic_notifications_off_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm0-15.5c2.49 0 4 2.02 4 4.5v.1l2 2V11c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68c-.24.06-.47.15-.69.23l1.64 1.64c.18-.02.36-.05.55-.05zM5.41 3.35L4 4.76l2.81 2.81C6.29 8.57 6 9.74 6 11v5l-2 2v1h14.24l1.74 1.74 1.41-1.41L5.41 3.35zM16 17H8v-6c0-.68.12-1.32.34-1.9L16 16.76V17z" + }, + "children": [] + }] +}; +exports.ic_notifications_off_outline = ic_notifications_off_outline; \ No newline at end of file diff --git a/dist/md/ic_notifications_off_twotone.js b/dist/md/ic_notifications_off_twotone.js new file mode 100644 index 000000000..73436792d --- /dev/null +++ b/dist/md/ic_notifications_off_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_notifications_off_twotone = void 0; +var ic_notifications_off_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8 17h8v-.24L8.34 9.1C8.12 9.68 8 10.32 8 11v6zm4-10.5c-.19 0-.37.03-.55.06L16 11.1V11c0-2.48-1.51-4.5-4-4.5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm0-15.5c2.49 0 4 2.02 4 4.5v.1l2 2V11c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68c-.24.06-.47.15-.69.23l1.64 1.64c.18-.02.36-.05.55-.05zM5.41 3.35L4 4.76l2.81 2.81C6.29 8.57 6 9.74 6 11v5l-2 2v1h14.24l1.74 1.74 1.41-1.41L5.41 3.35zM16 17H8v-6c0-.68.12-1.32.34-1.9L16 16.76V17z" + }, + "children": [] + }] +}; +exports.ic_notifications_off_twotone = ic_notifications_off_twotone; \ No newline at end of file diff --git a/dist/md/ic_notifications_outline.js b/dist/md/ic_notifications_outline.js new file mode 100644 index 000000000..c2a815bee --- /dev/null +++ b/dist/md/ic_notifications_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_notifications_outline = void 0; +var ic_notifications_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm6-6v-5c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.64 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2zm-2 1H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6z" + }, + "children": [] + }] +}; +exports.ic_notifications_outline = ic_notifications_outline; \ No newline at end of file diff --git a/dist/md/ic_notifications_paused.js b/dist/md/ic_notifications_paused.js new file mode 100644 index 000000000..5276032db --- /dev/null +++ b/dist/md/ic_notifications_paused.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_notifications_paused = void 0; +var ic_notifications_paused = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 22c1.1 0 2-.9 2-2h-4c0 1.1.89 2 2 2zm6-6v-5c0-3.07-1.64-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.63 5.36 6 7.93 6 11v5l-2 2v1h16v-1l-2-2zm-3.5-6.2l-2.8 3.4h2.8V15h-5v-1.8l2.8-3.4H9.5V8h5v1.8z" + }, + "children": [] + }] +}; +exports.ic_notifications_paused = ic_notifications_paused; \ No newline at end of file diff --git a/dist/md/ic_notifications_paused_outline.js b/dist/md/ic_notifications_paused_outline.js new file mode 100644 index 000000000..e9e3107fc --- /dev/null +++ b/dist/md/ic_notifications_paused_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_notifications_paused_outline = void 0; +var ic_notifications_paused_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9.5 9.8h2.8l-2.8 3.4V15h5v-1.8h-2.8l2.8-3.4V8h-5zM18 16v-5c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.64 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2zm-2 1H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6zm-4 5c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2z" + }, + "children": [] + }] +}; +exports.ic_notifications_paused_outline = ic_notifications_paused_outline; \ No newline at end of file diff --git a/dist/md/ic_notifications_paused_twotone.js b/dist/md/ic_notifications_paused_twotone.js new file mode 100644 index 000000000..526d3d089 --- /dev/null +++ b/dist/md/ic_notifications_paused_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_notifications_paused_twotone = void 0; +var ic_notifications_paused_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 6.5c-2.49 0-4 2.02-4 4.5v6h8v-6c0-2.48-1.51-4.5-4-4.5zm2.5 3.3l-2.8 3.4h2.8V15h-5v-1.8l2.8-3.4H9.5V8h5v1.8z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9.5 9.8h2.8l-2.8 3.4V15h5v-1.8h-2.8l2.8-3.4V8h-5zM18 16v-5c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.64 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2zm-2 1H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6zm-4 5c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2z" + }, + "children": [] + }] +}; +exports.ic_notifications_paused_twotone = ic_notifications_paused_twotone; \ No newline at end of file diff --git a/dist/md/ic_notifications_twotone.js b/dist/md/ic_notifications_twotone.js new file mode 100644 index 000000000..419a81de2 --- /dev/null +++ b/dist/md/ic_notifications_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_notifications_twotone = void 0; +var ic_notifications_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 6.5c-2.49 0-4 2.02-4 4.5v6h8v-6c0-2.48-1.51-4.5-4-4.5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm6-6v-5c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.64 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2zm-2 1H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6z" + }, + "children": [] + }] +}; +exports.ic_notifications_twotone = ic_notifications_twotone; \ No newline at end of file diff --git a/dist/md/ic_offline_bolt.js b/dist/md/ic_offline_bolt.js new file mode 100644 index 000000000..42a643b44 --- /dev/null +++ b/dist/md/ic_offline_bolt.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_offline_bolt = void 0; +var ic_offline_bolt = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2.02c-5.51 0-9.98 4.47-9.98 9.98s4.47 9.98 9.98 9.98 9.98-4.47 9.98-9.98S17.51 2.02 12 2.02zM11.48 20v-6.26H8L13 4v6.26h3.35L11.48 20z" + }, + "children": [] + }] +}; +exports.ic_offline_bolt = ic_offline_bolt; \ No newline at end of file diff --git a/dist/md/ic_offline_bolt_outline.js b/dist/md/ic_offline_bolt_outline.js new file mode 100644 index 000000000..28164d8a0 --- /dev/null +++ b/dist/md/ic_offline_bolt_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_offline_bolt_outline = void 0; +var ic_offline_bolt_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2.02c-5.51 0-9.98 4.47-9.98 9.98s4.47 9.98 9.98 9.98 9.98-4.47 9.98-9.98S17.51 2.02 12 2.02zm0 17.96c-4.4 0-7.98-3.58-7.98-7.98S7.6 4.02 12 4.02 19.98 7.6 19.98 12 16.4 19.98 12 19.98zM12.75 5l-4.5 8.5h3.14V19l4.36-8.5h-3z" + }, + "children": [] + }] +}; +exports.ic_offline_bolt_outline = ic_offline_bolt_outline; \ No newline at end of file diff --git a/dist/md/ic_offline_bolt_twotone.js b/dist/md/ic_offline_bolt_twotone.js new file mode 100644 index 000000000..9a48381b1 --- /dev/null +++ b/dist/md/ic_offline_bolt_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_offline_bolt_twotone = void 0; +var ic_offline_bolt_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4.02C7.6 4.02 4.02 7.6 4.02 12S7.6 19.98 12 19.98s7.98-3.58 7.98-7.98S16.4 4.02 12 4.02zM11.39 19v-5.5H8.25l4.5-8.5v5.5h3L11.39 19z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2.02c-5.51 0-9.98 4.47-9.98 9.98s4.47 9.98 9.98 9.98 9.98-4.47 9.98-9.98S17.51 2.02 12 2.02zm0 17.96c-4.4 0-7.98-3.58-7.98-7.98S7.6 4.02 12 4.02 19.98 7.6 19.98 12 16.4 19.98 12 19.98zM12.75 5l-4.5 8.5h3.14V19l4.36-8.5h-3V5z" + }, + "children": [] + }] +}; +exports.ic_offline_bolt_twotone = ic_offline_bolt_twotone; \ No newline at end of file diff --git a/dist/md/ic_offline_pin.js b/dist/md/ic_offline_pin.js new file mode 100644 index 000000000..520ce6b36 --- /dev/null +++ b/dist/md/ic_offline_pin.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_offline_pin = void 0; +var ic_offline_pin = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M17,18H7v-2h10V18z M10.3,14L7,10.7l1.4-1.4l1.9,1.9 l5.3-5.3L17,7.3L10.3,14z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M17,18H7v-2h10V18z M10.3,14L7,10.7l1.4-1.4l1.9,1.9 l5.3-5.3L17,7.3L10.3,14z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_offline_pin = ic_offline_pin; \ No newline at end of file diff --git a/dist/md/ic_offline_pin_outline.js b/dist/md/ic_offline_pin_outline.js new file mode 100644 index 000000000..56c7ea37f --- /dev/null +++ b/dist/md/ic_offline_pin_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_offline_pin_outline = void 0; +var ic_offline_pin_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-5-5h10v2H7zm3.3-3.8L8.4 9.3 7 10.7l3.3 3.3L17 7.3l-1.4-1.4z" + }, + "children": [] + }] +}; +exports.ic_offline_pin_outline = ic_offline_pin_outline; \ No newline at end of file diff --git a/dist/md/ic_offline_pin_twotone.js b/dist/md/ic_offline_pin_twotone.js new file mode 100644 index 000000000..eeee6fb68 --- /dev/null +++ b/dist/md/ic_offline_pin_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_offline_pin_twotone = void 0; +var ic_offline_pin_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm5 13H7v-2h10v2zm-6.7-3L7 10.7l1.4-1.4 1.9 1.9 5.3-5.3L17 7.3 10.3 14z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-5-5h10v2H7zm3.3-3.8L8.4 9.3 7 10.7l3.3 3.3L17 7.3l-1.4-1.4z" + }, + "children": [] + }] +}; +exports.ic_offline_pin_twotone = ic_offline_pin_twotone; \ No newline at end of file diff --git a/dist/md/ic_offline_share.js b/dist/md/ic_offline_share.js new file mode 100644 index 000000000..8124d544e --- /dev/null +++ b/dist/md/ic_offline_share.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_offline_share = void 0; +var ic_offline_share = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14.6 10.26v1.31L17 9.33 14.6 7.1v1.28c-2.33.32-3.26 1.92-3.6 3.52.83-1.13 1.93-1.64 3.6-1.64zM16 23H6c-1.1 0-2-.9-2-2V5h2v16h10v2zm2-22h-8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 15h-8V4h8v12z" + }, + "children": [] + }] +}; +exports.ic_offline_share = ic_offline_share; \ No newline at end of file diff --git a/dist/md/ic_ondemand_video.js b/dist/md/ic_ondemand_video.js new file mode 100644 index 000000000..b5ae24b28 --- /dev/null +++ b/dist/md/ic_ondemand_video.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_ondemand_video = void 0; +var ic_ondemand_video = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 3H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.11-.9-2-2-2zm0 14H3V5h18v12zm-5-6l-7 4V7z" + }, + "children": [] + }] +}; +exports.ic_ondemand_video = ic_ondemand_video; \ No newline at end of file diff --git a/dist/md/ic_ondemand_video_outline.js b/dist/md/ic_ondemand_video_outline.js new file mode 100644 index 000000000..f6e651276 --- /dev/null +++ b/dist/md/ic_ondemand_video_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_ondemand_video_outline = void 0; +var ic_ondemand_video_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 7v8l7-4zm12-4H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v2h8v-2h5c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 14H3V5h18v12z" + }, + "children": [] + }] +}; +exports.ic_ondemand_video_outline = ic_ondemand_video_outline; \ No newline at end of file diff --git a/dist/md/ic_ondemand_video_twotone.js b/dist/md/ic_ondemand_video_twotone.js new file mode 100644 index 000000000..d36950fe1 --- /dev/null +++ b/dist/md/ic_ondemand_video_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_ondemand_video_twotone = void 0; +var ic_ondemand_video_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 17h18V5H3v12zM9 7l7 4-7 4V7z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 7v8l7-4zm12-4H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v2h8v-2h5c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 14H3V5h18v12z" + }, + "children": [] + }] +}; +exports.ic_ondemand_video_twotone = ic_ondemand_video_twotone; \ No newline at end of file diff --git a/dist/md/ic_online_prediction.js b/dist/md/ic_online_prediction.js new file mode 100644 index 000000000..151d7dcd1 --- /dev/null +++ b/dist/md/ic_online_prediction.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_online_prediction = void 0; +var ic_online_prediction = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M15.5,11.5c0,2-2.5,3.5-2.5,5h-2c0-1.5-2.5-3-2.5-5C8.5,9.57,10.07,8,12,8S15.5,9.57,15.5,11.5z M13,17.5h-2V19h2V17.5z M22,12c0-2.76-1.12-5.26-2.93-7.07l-1.06,1.06C19.55,7.53,20.5,9.66,20.5,12c0,2.34-0.95,4.47-2.49,6.01l1.06,1.06 C20.88,17.26,22,14.76,22,12z M3.5,12c0-2.34,0.95-4.47,2.49-6.01L4.93,4.93C3.12,6.74,2,9.24,2,12c0,2.76,1.12,5.26,2.93,7.07 l1.06-1.06C4.45,16.47,3.5,14.34,3.5,12z M17.5,12c0,1.52-0.62,2.89-1.61,3.89l1.06,1.06C18.22,15.68,19,13.93,19,12 c0-1.93-0.78-3.68-2.05-4.95l-1.06,1.06C16.88,9.11,17.5,10.48,17.5,12z M7.05,16.95l1.06-1.06c-1-1-1.61-2.37-1.61-3.89 c0-1.52,0.62-2.89,1.61-3.89L7.05,7.05C5.78,8.32,5,10.07,5,12C5,13.93,5.78,15.68,7.05,16.95z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15.5,11.5c0,2-2.5,3.5-2.5,5h-2c0-1.5-2.5-3-2.5-5C8.5,9.57,10.07,8,12,8S15.5,9.57,15.5,11.5z M13,17.5h-2V19h2V17.5z M22,12c0-2.76-1.12-5.26-2.93-7.07l-1.06,1.06C19.55,7.53,20.5,9.66,20.5,12c0,2.34-0.95,4.47-2.49,6.01l1.06,1.06 C20.88,17.26,22,14.76,22,12z M3.5,12c0-2.34,0.95-4.47,2.49-6.01L4.93,4.93C3.12,6.74,2,9.24,2,12c0,2.76,1.12,5.26,2.93,7.07 l1.06-1.06C4.45,16.47,3.5,14.34,3.5,12z M17.5,12c0,1.52-0.62,2.89-1.61,3.89l1.06,1.06C18.22,15.68,19,13.93,19,12 c0-1.93-0.78-3.68-2.05-4.95l-1.06,1.06C16.88,9.11,17.5,10.48,17.5,12z M7.05,16.95l1.06-1.06c-1-1-1.61-2.37-1.61-3.89 c0-1.52,0.62-2.89,1.61-3.89L7.05,7.05C5.78,8.32,5,10.07,5,12C5,13.93,5.78,15.68,7.05,16.95z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_online_prediction = ic_online_prediction; \ No newline at end of file diff --git a/dist/md/ic_online_prediction_outline.js b/dist/md/ic_online_prediction_outline.js new file mode 100644 index 000000000..d87f17f21 --- /dev/null +++ b/dist/md/ic_online_prediction_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_online_prediction_outline = void 0; +var ic_online_prediction_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M15.5,11.5c0,2-2.5,3.5-2.5,5h-2c0-1.5-2.5-3-2.5-5C8.5,9.57,10.07,8,12,8S15.5,9.57,15.5,11.5z M13,17.5h-2V19h2V17.5z M22,12c0-2.76-1.12-5.26-2.93-7.07l-1.06,1.06C19.55,7.53,20.5,9.66,20.5,12c0,2.34-0.95,4.47-2.49,6.01l1.06,1.06 C20.88,17.26,22,14.76,22,12z M3.5,12c0-2.34,0.95-4.47,2.49-6.01L4.93,4.93C3.12,6.74,2,9.24,2,12c0,2.76,1.12,5.26,2.93,7.07 l1.06-1.06C4.45,16.47,3.5,14.34,3.5,12z M17.5,12c0,1.52-0.62,2.89-1.61,3.89l1.06,1.06C18.22,15.68,19,13.93,19,12 c0-1.93-0.78-3.68-2.05-4.95l-1.06,1.06C16.88,9.11,17.5,10.48,17.5,12z M7.05,16.95l1.06-1.06c-1-1-1.61-2.37-1.61-3.89 c0-1.52,0.62-2.89,1.61-3.89L7.05,7.05C5.78,8.32,5,10.07,5,12C5,13.93,5.78,15.68,7.05,16.95z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15.5,11.5c0,2-2.5,3.5-2.5,5h-2c0-1.5-2.5-3-2.5-5C8.5,9.57,10.07,8,12,8S15.5,9.57,15.5,11.5z M13,17.5h-2V19h2V17.5z M22,12c0-2.76-1.12-5.26-2.93-7.07l-1.06,1.06C19.55,7.53,20.5,9.66,20.5,12c0,2.34-0.95,4.47-2.49,6.01l1.06,1.06 C20.88,17.26,22,14.76,22,12z M3.5,12c0-2.34,0.95-4.47,2.49-6.01L4.93,4.93C3.12,6.74,2,9.24,2,12c0,2.76,1.12,5.26,2.93,7.07 l1.06-1.06C4.45,16.47,3.5,14.34,3.5,12z M17.5,12c0,1.52-0.62,2.89-1.61,3.89l1.06,1.06C18.22,15.68,19,13.93,19,12 c0-1.93-0.78-3.68-2.05-4.95l-1.06,1.06C16.88,9.11,17.5,10.48,17.5,12z M7.05,16.95l1.06-1.06c-1-1-1.61-2.37-1.61-3.89 c0-1.52,0.62-2.89,1.61-3.89L7.05,7.05C5.78,8.32,5,10.07,5,12C5,13.93,5.78,15.68,7.05,16.95z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_online_prediction_outline = ic_online_prediction_outline; \ No newline at end of file diff --git a/dist/md/ic_online_prediction_twotone.js b/dist/md/ic_online_prediction_twotone.js new file mode 100644 index 000000000..75e13f423 --- /dev/null +++ b/dist/md/ic_online_prediction_twotone.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_online_prediction_twotone = void 0; +var ic_online_prediction_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M15.5,11.5c0,2-2.5,3.5-2.5,5h-2c0-1.5-2.5-3-2.5-5C8.5,9.57,10.07,8,12,8S15.5,9.57,15.5,11.5z M13,17.5h-2V19h2V17.5z M22,12c0-2.76-1.12-5.26-2.93-7.07l-1.06,1.06C19.55,7.53,20.5,9.66,20.5,12c0,2.34-0.95,4.47-2.49,6.01l1.06,1.06 C20.88,17.26,22,14.76,22,12z M3.5,12c0-2.34,0.95-4.47,2.49-6.01L4.93,4.93C3.12,6.74,2,9.24,2,12c0,2.76,1.12,5.26,2.93,7.07 l1.06-1.06C4.45,16.47,3.5,14.34,3.5,12z M17.5,12c0,1.52-0.62,2.89-1.61,3.89l1.06,1.06C18.22,15.68,19,13.93,19,12 c0-1.93-0.78-3.68-2.05-4.95l-1.06,1.06C16.88,9.11,17.5,10.48,17.5,12z M7.05,16.95l1.06-1.06c-1-1-1.61-2.37-1.61-3.89 c0-1.52,0.62-2.89,1.61-3.89L7.05,7.05C5.78,8.32,5,10.07,5,12C5,13.93,5.78,15.68,7.05,16.95z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15.5,11.5c0,2-2.5,3.5-2.5,5h-2c0-1.5-2.5-3-2.5-5C8.5,9.57,10.07,8,12,8S15.5,9.57,15.5,11.5z M13,17.5h-2V19h2V17.5z M22,12c0-2.76-1.12-5.26-2.93-7.07l-1.06,1.06C19.55,7.53,20.5,9.66,20.5,12c0,2.34-0.95,4.47-2.49,6.01l1.06,1.06 C20.88,17.26,22,14.76,22,12z M3.5,12c0-2.34,0.95-4.47,2.49-6.01L4.93,4.93C3.12,6.74,2,9.24,2,12c0,2.76,1.12,5.26,2.93,7.07 l1.06-1.06C4.45,16.47,3.5,14.34,3.5,12z M17.5,12c0,1.52-0.62,2.89-1.61,3.89l1.06,1.06C18.22,15.68,19,13.93,19,12 c0-1.93-0.78-3.68-2.05-4.95l-1.06,1.06C16.88,9.11,17.5,10.48,17.5,12z M7.05,16.95l1.06-1.06c-1-1-1.61-2.37-1.61-3.89 c0-1.52,0.62-2.89,1.61-3.89L7.05,7.05C5.78,8.32,5,10.07,5,12C5,13.93,5.78,15.68,7.05,16.95z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_online_prediction_twotone = ic_online_prediction_twotone; \ No newline at end of file diff --git a/dist/md/ic_opacity.js b/dist/md/ic_opacity.js new file mode 100644 index 000000000..7b101eb71 --- /dev/null +++ b/dist/md/ic_opacity.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_opacity = void 0; +var ic_opacity = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M24 0H0v24h24V0zm0 0H0v24h24V0zM0 24h24V0H0v24z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17.66 8L12 2.35 6.34 8C4.78 9.56 4 11.64 4 13.64s.78 4.11 2.34 5.67 3.61 2.35 5.66 2.35 4.1-.79 5.66-2.35S20 15.64 20 13.64 19.22 9.56 17.66 8zM6 14c.01-2 .62-3.27 1.76-4.4L12 5.27l4.24 4.38C17.38 10.77 17.99 12 18 14H6z" + }, + "children": [] + }] +}; +exports.ic_opacity = ic_opacity; \ No newline at end of file diff --git a/dist/md/ic_opacity_outline.js b/dist/md/ic_opacity_outline.js new file mode 100644 index 000000000..5b6b03ecb --- /dev/null +++ b/dist/md/ic_opacity_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_opacity_outline = void 0; +var ic_opacity_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M24 0H0v24h24V0zm0 0H0v24h24V0zM0 24h24V0H0v24z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17.66 8L12 2.35 6.34 8C4.78 9.56 4 11.64 4 13.64s.78 4.11 2.34 5.67 3.61 2.35 5.66 2.35 4.1-.79 5.66-2.35S20 15.64 20 13.64 19.22 9.56 17.66 8zM6 14c.01-2 .62-3.27 1.76-4.4L12 5.27l4.24 4.38C17.38 10.77 17.99 12 18 14H6z" + }, + "children": [] + }] +}; +exports.ic_opacity_outline = ic_opacity_outline; \ No newline at end of file diff --git a/dist/md/ic_opacity_twotone.js b/dist/md/ic_opacity_twotone.js new file mode 100644 index 000000000..3e5b8a6d9 --- /dev/null +++ b/dist/md/ic_opacity_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_opacity_twotone = void 0; +var ic_opacity_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M24 0H0v24h24V0zm0 0H0v24h24V0zM0 24h24V0H0v24z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16.24 9.65L12 5.27 7.76 9.6C6.62 10.73 6.01 12 6 14h12c-.01-2-.62-3.23-1.76-4.35z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17.66 8L12 2.35 6.34 8C4.78 9.56 4 11.64 4 13.64s.78 4.11 2.34 5.67 3.61 2.35 5.66 2.35 4.1-.79 5.66-2.35S20 15.64 20 13.64 19.22 9.56 17.66 8zM6 14c.01-2 .62-3.27 1.76-4.4L12 5.27l4.24 4.38C17.38 10.77 17.99 12 18 14H6z" + }, + "children": [] + }] +}; +exports.ic_opacity_twotone = ic_opacity_twotone; \ No newline at end of file diff --git a/dist/md/ic_open_in_browser.js b/dist/md/ic_open_in_browser.js new file mode 100644 index 000000000..019419ff5 --- /dev/null +++ b/dist/md/ic_open_in_browser.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_open_in_browser = void 0; +var ic_open_in_browser = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h4v-2H5V8h14v10h-4v2h4c1.1 0 2-.9 2-2V6c0-1.1-.89-2-2-2zm-7 6l-4 4h3v6h2v-6h3l-4-4z" + }, + "children": [] + }] +}; +exports.ic_open_in_browser = ic_open_in_browser; \ No newline at end of file diff --git a/dist/md/ic_open_in_browser_outline.js b/dist/md/ic_open_in_browser_outline.js new file mode 100644 index 000000000..9308a19b0 --- /dev/null +++ b/dist/md/ic_open_in_browser_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_open_in_browser_outline = void 0; +var ic_open_in_browser_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h4v-2H5V8h14v10h-4v2h4c1.1 0 2-.9 2-2V6c0-1.1-.89-2-2-2zm-7 6l-4 4h3v6h2v-6h3l-4-4z" + }, + "children": [] + }] +}; +exports.ic_open_in_browser_outline = ic_open_in_browser_outline; \ No newline at end of file diff --git a/dist/md/ic_open_in_browser_twotone.js b/dist/md/ic_open_in_browser_twotone.js new file mode 100644 index 000000000..612947bb1 --- /dev/null +++ b/dist/md/ic_open_in_browser_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_open_in_browser_twotone = void 0; +var ic_open_in_browser_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h4v-2H5V8h14v10h-4v2h4c1.1 0 2-.9 2-2V6c0-1.1-.89-2-2-2zm-7 6l-4 4h3v6h2v-6h3l-4-4z" + }, + "children": [] + }] +}; +exports.ic_open_in_browser_twotone = ic_open_in_browser_twotone; \ No newline at end of file diff --git a/dist/md/ic_open_in_full.js b/dist/md/ic_open_in_full.js new file mode 100644 index 000000000..303d89d9f --- /dev/null +++ b/dist/md/ic_open_in_full.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_open_in_full = void 0; +var ic_open_in_full = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "points": "21,11 21,3 13,3 16.29,6.29 6.29,16.29 3,13 3,21 11,21 7.71,17.71 17.71,7.71" + }, + "children": [] + }] +}; +exports.ic_open_in_full = ic_open_in_full; \ No newline at end of file diff --git a/dist/md/ic_open_in_full_outline.js b/dist/md/ic_open_in_full_outline.js new file mode 100644 index 000000000..6d26855df --- /dev/null +++ b/dist/md/ic_open_in_full_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_open_in_full_outline = void 0; +var ic_open_in_full_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "points": "21,11 21,3 13,3 16.29,6.29 6.29,16.29 3,13 3,21 11,21 7.71,17.71 17.71,7.71" + }, + "children": [] + }] +}; +exports.ic_open_in_full_outline = ic_open_in_full_outline; \ No newline at end of file diff --git a/dist/md/ic_open_in_full_twotone.js b/dist/md/ic_open_in_full_twotone.js new file mode 100644 index 000000000..2fbd208a8 --- /dev/null +++ b/dist/md/ic_open_in_full_twotone.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_open_in_full_twotone = void 0; +var ic_open_in_full_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "points": "21,11 21,3 13,3 16.29,6.29 6.29,16.29 3,13 3,21 11,21 7.71,17.71 17.71,7.71" + }, + "children": [] + }] +}; +exports.ic_open_in_full_twotone = ic_open_in_full_twotone; \ No newline at end of file diff --git a/dist/md/ic_open_in_new.js b/dist/md/ic_open_in_new.js new file mode 100644 index 000000000..acd28676c --- /dev/null +++ b/dist/md/ic_open_in_new.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_open_in_new = void 0; +var ic_open_in_new = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 19H5V5h7V3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2v-7h-2v7zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3h-7z" + }, + "children": [] + }] +}; +exports.ic_open_in_new = ic_open_in_new; \ No newline at end of file diff --git a/dist/md/ic_open_in_new_outline.js b/dist/md/ic_open_in_new_outline.js new file mode 100644 index 000000000..e032f90ee --- /dev/null +++ b/dist/md/ic_open_in_new_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_open_in_new_outline = void 0; +var ic_open_in_new_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 19H5V5h7V3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2v-7h-2v7zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3h-7z" + }, + "children": [] + }] +}; +exports.ic_open_in_new_outline = ic_open_in_new_outline; \ No newline at end of file diff --git a/dist/md/ic_open_in_new_twotone.js b/dist/md/ic_open_in_new_twotone.js new file mode 100644 index 000000000..efecab7a6 --- /dev/null +++ b/dist/md/ic_open_in_new_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_open_in_new_twotone = void 0; +var ic_open_in_new_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 19H5V5h7V3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2v-7h-2v7zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3h-7z" + }, + "children": [] + }] +}; +exports.ic_open_in_new_twotone = ic_open_in_new_twotone; \ No newline at end of file diff --git a/dist/md/ic_open_with.js b/dist/md/ic_open_with.js new file mode 100644 index 000000000..523a3dd7c --- /dev/null +++ b/dist/md/ic_open_with.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_open_with = void 0; +var ic_open_with = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 9h4V6h3l-5-5-5 5h3v3zm-1 1H6V7l-5 5 5 5v-3h3v-4zm14 2l-5-5v3h-3v4h3v3l5-5zm-9 3h-4v3H7l5 5 5-5h-3v-3z" + }, + "children": [] + }] +}; +exports.ic_open_with = ic_open_with; \ No newline at end of file diff --git a/dist/md/ic_open_with_outline.js b/dist/md/ic_open_with_outline.js new file mode 100644 index 000000000..1376acbb1 --- /dev/null +++ b/dist/md/ic_open_with_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_open_with_outline = void 0; +var ic_open_with_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 9h4V6h3l-5-5-5 5h3v3zm-1 1H6V7l-5 5 5 5v-3h3v-4zm14 2l-5-5v3h-3v4h3v3l5-5zm-9 3h-4v3H7l5 5 5-5h-3v-3z" + }, + "children": [] + }] +}; +exports.ic_open_with_outline = ic_open_with_outline; \ No newline at end of file diff --git a/dist/md/ic_open_with_twotone.js b/dist/md/ic_open_with_twotone.js new file mode 100644 index 000000000..2fe33fa2c --- /dev/null +++ b/dist/md/ic_open_with_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_open_with_twotone = void 0; +var ic_open_with_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 9h4V6h3l-5-5-5 5h3v3zm-1 1H6V7l-5 5 5 5v-3h3v-4zm14 2l-5-5v3h-3v4h3v3l5-5zm-9 3h-4v3H7l5 5 5-5h-3v-3z" + }, + "children": [] + }] +}; +exports.ic_open_with_twotone = ic_open_with_twotone; \ No newline at end of file diff --git a/dist/md/ic_outbond.js b/dist/md/ic_outbond.js new file mode 100644 index 000000000..83d632fa7 --- /dev/null +++ b/dist/md/ic_outbond.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_outbond = void 0; +var ic_outbond = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0", + "y": "0" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M13.88,11.54l-4.96,4.96l-1.41-1.41 l4.96-4.96L10.34,8l5.65,0.01L16,13.66L13.88,11.54z" + }, + "children": [] + }] +}; +exports.ic_outbond = ic_outbond; \ No newline at end of file diff --git a/dist/md/ic_outbond_outline.js b/dist/md/ic_outbond_outline.js new file mode 100644 index 000000000..294e07090 --- /dev/null +++ b/dist/md/ic_outbond_outline.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_outbond_outline = void 0; +var ic_outbond_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0", + "y": "0" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8s-8-3.59-8-8S7.59,4,12,4 M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10 C22,6.48,17.52,2,12,2L12,2z M13.88,11.54l-4.96,4.96l-1.41-1.41l4.96-4.96L10.34,8l5.65,0.01L16,13.66L13.88,11.54z" + }, + "children": [] + }] +}; +exports.ic_outbond_outline = ic_outbond_outline; \ No newline at end of file diff --git a/dist/md/ic_outbond_twotone.js b/dist/md/ic_outbond_twotone.js new file mode 100644 index 000000000..97c1ff793 --- /dev/null +++ b/dist/md/ic_outbond_twotone.js @@ -0,0 +1,34 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_outbond_twotone = void 0; +var ic_outbond_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0", + "y": "0" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12,4c-4.41,0-8,3.59-8,8c0,4.41,3.59,8,8,8s8-3.59,8-8C20,7.59,16.41,4,12,4z M13.88,11.54l-4.96,4.96 l-1.41-1.41l4.96-4.96L10.34,8l5.65,0.01L16,13.66L13.88,11.54z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8s-8-3.59-8-8S7.59,4,12,4 M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10 C22,6.48,17.52,2,12,2L12,2z M13.88,11.54l-4.96,4.96l-1.41-1.41l4.96-4.96L10.34,8l5.65,0.01L16,13.66L13.88,11.54z" + }, + "children": [] + }] +}; +exports.ic_outbond_twotone = ic_outbond_twotone; \ No newline at end of file diff --git a/dist/md/ic_outbox.js b/dist/md/ic_outbox.js new file mode 100644 index 000000000..3279b0d2e --- /dev/null +++ b/dist/md/ic_outbox.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_outbox = void 0; +var ic_outbox = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H4.99c-1.11 0-1.98.9-1.98 2L3 19c0 1.1.88 2 1.99 2H19c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 12h-4c0 1.66-1.35 3-3 3s-3-1.34-3-3H4.99V5H19v10zM8 11h2v3h4v-3h2l-4-4-4 4z" + }, + "children": [] + }] +}; +exports.ic_outbox = ic_outbox; \ No newline at end of file diff --git a/dist/md/ic_outdoor_grill.js b/dist/md/ic_outdoor_grill.js new file mode 100644 index 000000000..e554324e3 --- /dev/null +++ b/dist/md/ic_outdoor_grill.js @@ -0,0 +1,91 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_outdoor_grill = void 0; +var ic_outdoor_grill = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,22c1.66,0,3-1.34,3-3s-1.34-3-3-3c-1.3,0-2.4,0.84-2.82,2H9.14l1.99-3.06C11.42,14.98,11.71,15,12,15 s0.58-0.02,0.87-0.06l1.02,1.57c0.42-0.53,0.96-0.95,1.6-1.21l-0.6-0.93C17.31,13.27,19,10.84,19,8H5c0,2.84,1.69,5.27,4.12,6.37 l-3.95,6.08c-0.3,0.46-0.17,1.08,0.29,1.38h0c0.46,0.3,1.08,0.17,1.38-0.29l1-1.55h6.34C14.6,21.16,15.7,22,17,22z M17,18 c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1s-1-0.45-1-1C16,18.45,16.45,18,17,18z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,22c1.66,0,3-1.34,3-3s-1.34-3-3-3c-1.3,0-2.4,0.84-2.82,2H9.14l1.99-3.06C11.42,14.98,11.71,15,12,15 s0.58-0.02,0.87-0.06l1.02,1.57c0.42-0.53,0.96-0.95,1.6-1.21l-0.6-0.93C17.31,13.27,19,10.84,19,8H5c0,2.84,1.69,5.27,4.12,6.37 l-3.95,6.08c-0.3,0.46-0.17,1.08,0.29,1.38h0c0.46,0.3,1.08,0.17,1.38-0.29l1-1.55h6.34C14.6,21.16,15.7,22,17,22z M17,18 c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1s-1-0.45-1-1C16,18.45,16.45,18,17,18z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M9.41,7h1c0.15-1.15,0.23-1.64-0.89-2.96C9.1,3.54,8.84,3.27,9.06,2H8.07C7.86,3.11,8.1,4.05,8.96,4.96 C9.18,5.2,9.75,5.63,9.41,7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M9.41,7h1c0.15-1.15,0.23-1.64-0.89-2.96C9.1,3.54,8.84,3.27,9.06,2H8.07C7.86,3.11,8.1,4.05,8.96,4.96 C9.18,5.2,9.75,5.63,9.41,7z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M11.89,7h1c0.15-1.15,0.23-1.64-0.89-2.96c-0.42-0.5-0.68-0.78-0.46-2.04h-0.99c-0.21,1.11,0.03,2.05,0.89,2.96 C11.67,5.2,12.24,5.63,11.89,7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M11.89,7h1c0.15-1.15,0.23-1.64-0.89-2.96c-0.42-0.5-0.68-0.78-0.46-2.04h-0.99c-0.21,1.11,0.03,2.05,0.89,2.96 C11.67,5.2,12.24,5.63,11.89,7z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M14.41,7h1c0.15-1.15,0.23-1.64-0.89-2.96C14.1,3.54,13.84,3.27,14.06,2h-0.99c-0.21,1.11,0.03,2.05,0.89,2.96 C14.18,5.2,14.75,5.63,14.41,7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14.41,7h1c0.15-1.15,0.23-1.64-0.89-2.96C14.1,3.54,13.84,3.27,14.06,2h-0.99c-0.21,1.11,0.03,2.05,0.89,2.96 C14.18,5.2,14.75,5.63,14.41,7z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_outdoor_grill = ic_outdoor_grill; \ No newline at end of file diff --git a/dist/md/ic_outdoor_grill_outline.js b/dist/md/ic_outdoor_grill_outline.js new file mode 100644 index 000000000..dd6f96a77 --- /dev/null +++ b/dist/md/ic_outdoor_grill_outline.js @@ -0,0 +1,91 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_outdoor_grill_outline = void 0; +var ic_outdoor_grill_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,22c1.66,0,3-1.34,3-3s-1.34-3-3-3c-1.3,0-2.4,0.84-2.82,2H9.14l1.99-3.06C11.42,14.98,11.71,15,12,15 s0.58-0.02,0.87-0.06l1.02,1.57c0.42-0.53,0.96-0.95,1.6-1.21l-0.6-0.93C17.31,13.27,19,10.84,19,8H5c0,2.84,1.69,5.27,4.12,6.37 l-3.95,6.08c-0.3,0.46-0.17,1.08,0.29,1.38h0c0.46,0.3,1.08,0.17,1.38-0.29l1-1.55h6.34C14.6,21.16,15.7,22,17,22z M17,18 c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1s-1-0.45-1-1C16,18.45,16.45,18,17,18z M7.42,10h9.16c-0.77,1.76-2.54,3-4.58,3 S8.19,11.76,7.42,10z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,22c1.66,0,3-1.34,3-3s-1.34-3-3-3c-1.3,0-2.4,0.84-2.82,2H9.14l1.99-3.06C11.42,14.98,11.71,15,12,15 s0.58-0.02,0.87-0.06l1.02,1.57c0.42-0.53,0.96-0.95,1.6-1.21l-0.6-0.93C17.31,13.27,19,10.84,19,8H5c0,2.84,1.69,5.27,4.12,6.37 l-3.95,6.08c-0.3,0.46-0.17,1.08,0.29,1.38h0c0.46,0.3,1.08,0.17,1.38-0.29l1-1.55h6.34C14.6,21.16,15.7,22,17,22z M17,18 c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1s-1-0.45-1-1C16,18.45,16.45,18,17,18z M7.42,10h9.16c-0.77,1.76-2.54,3-4.58,3 S8.19,11.76,7.42,10z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M9.41,7h1c0.15-1.15,0.23-1.64-0.89-2.96C9.1,3.54,8.84,3.27,9.06,2H8.07C7.86,3.11,8.1,4.05,8.96,4.96 C9.18,5.2,9.75,5.63,9.41,7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M9.41,7h1c0.15-1.15,0.23-1.64-0.89-2.96C9.1,3.54,8.84,3.27,9.06,2H8.07C7.86,3.11,8.1,4.05,8.96,4.96 C9.18,5.2,9.75,5.63,9.41,7z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M11.89,7h1c0.15-1.15,0.23-1.64-0.89-2.96c-0.42-0.5-0.68-0.78-0.46-2.04h-0.99c-0.21,1.11,0.03,2.05,0.89,2.96 C11.67,5.2,12.24,5.63,11.89,7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M11.89,7h1c0.15-1.15,0.23-1.64-0.89-2.96c-0.42-0.5-0.68-0.78-0.46-2.04h-0.99c-0.21,1.11,0.03,2.05,0.89,2.96 C11.67,5.2,12.24,5.63,11.89,7z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M14.41,7h1c0.15-1.15,0.23-1.64-0.89-2.96C14.1,3.54,13.84,3.27,14.06,2h-0.99c-0.21,1.11,0.03,2.05,0.89,2.96 C14.18,5.2,14.75,5.63,14.41,7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14.41,7h1c0.15-1.15,0.23-1.64-0.89-2.96C14.1,3.54,13.84,3.27,14.06,2h-0.99c-0.21,1.11,0.03,2.05,0.89,2.96 C14.18,5.2,14.75,5.63,14.41,7z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_outdoor_grill_outline = ic_outdoor_grill_outline; \ No newline at end of file diff --git a/dist/md/ic_outdoor_grill_twotone.js b/dist/md/ic_outdoor_grill_twotone.js new file mode 100644 index 000000000..db5711daf --- /dev/null +++ b/dist/md/ic_outdoor_grill_twotone.js @@ -0,0 +1,123 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_outdoor_grill_twotone = void 0; +var ic_outdoor_grill_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M16.58,10H7.42c0.77,1.76,2.54,3,4.58,3S15.81,11.76,16.58,10z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M16.58,10H7.42c0.77,1.76,2.54,3,4.58,3S15.81,11.76,16.58,10z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M17,22c1.66,0,3-1.34,3-3s-1.34-3-3-3c-1.3,0-2.4,0.84-2.82,2H9.14l1.99-3.06C11.42,14.98,11.71,15,12,15 s0.58-0.02,0.87-0.06l1.02,1.57c0.42-0.53,0.96-0.95,1.6-1.21l-0.6-0.93C17.31,13.27,19,10.84,19,8H5c0,2.84,1.69,5.27,4.12,6.37 l-3.95,6.08c-0.3,0.46-0.17,1.08,0.29,1.38h0c0.46,0.3,1.08,0.17,1.38-0.29l1-1.55h6.34C14.6,21.16,15.7,22,17,22z M17,18 c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1s-1-0.45-1-1C16,18.45,16.45,18,17,18z M7.42,10h9.16c-0.77,1.76-2.54,3-4.58,3 S8.19,11.76,7.42,10z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,22c1.66,0,3-1.34,3-3s-1.34-3-3-3c-1.3,0-2.4,0.84-2.82,2H9.14l1.99-3.06C11.42,14.98,11.71,15,12,15 s0.58-0.02,0.87-0.06l1.02,1.57c0.42-0.53,0.96-0.95,1.6-1.21l-0.6-0.93C17.31,13.27,19,10.84,19,8H5c0,2.84,1.69,5.27,4.12,6.37 l-3.95,6.08c-0.3,0.46-0.17,1.08,0.29,1.38h0c0.46,0.3,1.08,0.17,1.38-0.29l1-1.55h6.34C14.6,21.16,15.7,22,17,22z M17,18 c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1s-1-0.45-1-1C16,18.45,16.45,18,17,18z M7.42,10h9.16c-0.77,1.76-2.54,3-4.58,3 S8.19,11.76,7.42,10z" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "17", + "cy": "19", + "opacity": ".3", + "r": "1" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "17", + "cy": "19", + "opacity": ".3", + "r": "1" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M9.41,7h1c0.15-1.15,0.23-1.64-0.89-2.96C9.1,3.54,8.84,3.27,9.06,2H8.07C7.86,3.11,8.1,4.05,8.96,4.96 C9.18,5.2,9.75,5.63,9.41,7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M9.41,7h1c0.15-1.15,0.23-1.64-0.89-2.96C9.1,3.54,8.84,3.27,9.06,2H8.07C7.86,3.11,8.1,4.05,8.96,4.96 C9.18,5.2,9.75,5.63,9.41,7z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M11.89,7h1c0.15-1.15,0.23-1.64-0.89-2.96c-0.42-0.5-0.68-0.78-0.46-2.04h-0.99c-0.21,1.11,0.03,2.05,0.89,2.96 C11.67,5.2,12.24,5.63,11.89,7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M11.89,7h1c0.15-1.15,0.23-1.64-0.89-2.96c-0.42-0.5-0.68-0.78-0.46-2.04h-0.99c-0.21,1.11,0.03,2.05,0.89,2.96 C11.67,5.2,12.24,5.63,11.89,7z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M14.41,7h1c0.15-1.15,0.23-1.64-0.89-2.96C14.1,3.54,13.84,3.27,14.06,2h-0.99c-0.21,1.11,0.03,2.05,0.89,2.96 C14.18,5.2,14.75,5.63,14.41,7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14.41,7h1c0.15-1.15,0.23-1.64-0.89-2.96C14.1,3.54,13.84,3.27,14.06,2h-0.99c-0.21,1.11,0.03,2.05,0.89,2.96 C14.18,5.2,14.75,5.63,14.41,7z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_outdoor_grill_twotone = ic_outdoor_grill_twotone; \ No newline at end of file diff --git a/dist/md/ic_outgoing_mail.js b/dist/md/ic_outgoing_mail.js new file mode 100644 index 000000000..7480a8171 --- /dev/null +++ b/dist/md/ic_outgoing_mail.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_outgoing_mail = void 0; +var ic_outgoing_mail = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M18.5,11c0.17,0,0.34,0.01,0.5,0.03V6.87C19,5.84,18.16,5,17.13,5H3.87C2.84,5,2,5.84,2,6.87v10.26 C2,18.16,2.84,19,3.87,19h9.73C13.22,18.25,13,17.4,13,16.5C13,13.46,15.46,11,18.5,11z M10.4,13L4,9.19V7h0.23l6.18,3.68L16.74,7 H17v2.16L10.4,13z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18.5,11c0.17,0,0.34,0.01,0.5,0.03V6.87C19,5.84,18.16,5,17.13,5H3.87C2.84,5,2,5.84,2,6.87v10.26 C2,18.16,2.84,19,3.87,19h9.73C13.22,18.25,13,17.4,13,16.5C13,13.46,15.46,11,18.5,11z M10.4,13L4,9.19V7h0.23l6.18,3.68L16.74,7 H17v2.16L10.4,13z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "19,13 17.59,14.41 19.17,16 15,16 15,18 19.17,18 17.59,19.59 19,21 23,17" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "19,13 17.59,14.41 19.17,16 15,16 15,18 19.17,18 17.59,19.59 19,21 23,17" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_outgoing_mail = ic_outgoing_mail; \ No newline at end of file diff --git a/dist/md/ic_outlet.js b/dist/md/ic_outlet.js new file mode 100644 index 000000000..3c8d92cfb --- /dev/null +++ b/dist/md/ic_outlet.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_outlet = void 0; +var ic_outlet = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M9,12c-0.55,0-1-0.45-1-1V8 c0-0.55,0.45-1,1-1s1,0.45,1,1v3C10,11.55,9.55,12,9,12z M14,18h-4v-2c0-1.1,0.9-2,2-2c1.1,0,2,0.9,2,2V18z M16,11 c0,0.55-0.45,1-1,1c-0.55,0-1-0.45-1-1V8c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1V11z" + }, + "children": [] + }] +}; +exports.ic_outlet = ic_outlet; \ No newline at end of file diff --git a/dist/md/ic_outlet_outline.js b/dist/md/ic_outlet_outline.js new file mode 100644 index 000000000..cc180bbe5 --- /dev/null +++ b/dist/md/ic_outlet_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_outlet_outline = void 0; +var ic_outlet_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8s-8-3.59-8-8S7.59,4,12,4 M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10 S17.52,2,12,2L12,2z M10,11V8c0-0.55-0.45-1-1-1h0C8.45,7,8,7.45,8,8v3c0,0.55,0.45,1,1,1h0C9.55,12,10,11.55,10,11z M16,11V8 c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v3c0,0.55,0.45,1,1,1h0C15.55,12,16,11.55,16,11z M14,16c0-1.1-0.9-2-2-2h0 c-1.1,0-2,0.9-2,2v2h4V16z" + }, + "children": [] + }] +}; +exports.ic_outlet_outline = ic_outlet_outline; \ No newline at end of file diff --git a/dist/md/ic_outlet_twotone.js b/dist/md/ic_outlet_twotone.js new file mode 100644 index 000000000..126bf6f07 --- /dev/null +++ b/dist/md/ic_outlet_twotone.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_outlet_twotone = void 0; +var ic_outlet_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8s-8-3.59-8-8S7.59,4,12,4 M10,11V8c0-0.55-0.45-1-1-1h0 C8.45,7,8,7.45,8,8v3c0,0.55,0.45,1,1,1h0C9.55,12,10,11.55,10,11z M16,11V8c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v3 c0,0.55,0.45,1,1,1h0C15.55,12,16,11.55,16,11z M14,16c0-1.1-0.9-2-2-2h0c-1.1,0-2,0.9-2,2v2h4V16z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8s-8-3.59-8-8S7.59,4,12,4 M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10 S17.52,2,12,2L12,2z M10,11V8c0-0.55-0.45-1-1-1h0C8.45,7,8,7.45,8,8v3c0,0.55,0.45,1,1,1h0C9.55,12,10,11.55,10,11z M16,11V8 c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v3c0,0.55,0.45,1,1,1h0C15.55,12,16,11.55,16,11z M14,16c0-1.1-0.9-2-2-2h0 c-1.1,0-2,0.9-2,2v2h4V16z" + }, + "children": [] + }] +}; +exports.ic_outlet_twotone = ic_outlet_twotone; \ No newline at end of file diff --git a/dist/md/ic_outlined_flag.js b/dist/md/ic_outlined_flag.js new file mode 100644 index 000000000..cf0eb7d9b --- /dev/null +++ b/dist/md/ic_outlined_flag.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_outlined_flag = void 0; +var ic_outlined_flag = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 6l-1-2H5v17h2v-7h5l1 2h7V6h-6zm4 8h-4l-1-2H7V6h5l1 2h5v6z" + }, + "children": [] + }] +}; +exports.ic_outlined_flag = ic_outlined_flag; \ No newline at end of file diff --git a/dist/md/ic_outlined_flag_outline.js b/dist/md/ic_outlined_flag_outline.js new file mode 100644 index 000000000..f14056633 --- /dev/null +++ b/dist/md/ic_outlined_flag_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_outlined_flag_outline = void 0; +var ic_outlined_flag_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 6l-1-2H5v17h2v-7h5l1 2h7V6h-6zm4 8h-4l-1-2H7V6h5l1 2h5v6z" + }, + "children": [] + }] +}; +exports.ic_outlined_flag_outline = ic_outlined_flag_outline; \ No newline at end of file diff --git a/dist/md/ic_outlined_flag_twotone.js b/dist/md/ic_outlined_flag_twotone.js new file mode 100644 index 000000000..58f551ab3 --- /dev/null +++ b/dist/md/ic_outlined_flag_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_outlined_flag_twotone = void 0; +var ic_outlined_flag_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 6l-1-2H5v17h2v-7h5l1 2h7V6h-6zm4 8h-4l-1-2H7V6h5l1 2h5v6z" + }, + "children": [] + }] +}; +exports.ic_outlined_flag_twotone = ic_outlined_flag_twotone; \ No newline at end of file diff --git a/dist/md/ic_padding.js b/dist/md/ic_padding.js new file mode 100644 index 000000000..9219ef5ce --- /dev/null +++ b/dist/md/ic_padding.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_padding = void 0; +var ic_padding = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 3v18h18V3H3zm16 16H5V5h14v14zM11 7h2v2h-2zM7 7h2v2H7zm8 0h2v2h-2z" + }, + "children": [] + }] +}; +exports.ic_padding = ic_padding; \ No newline at end of file diff --git a/dist/md/ic_pages.js b/dist/md/ic_pages.js new file mode 100644 index 000000000..aff269aac --- /dev/null +++ b/dist/md/ic_pages.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_pages = void 0; +var ic_pages = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 5v6h5L7 7l4 1V3H5c-1.1 0-2 .9-2 2zm5 8H3v6c0 1.1.9 2 2 2h6v-5l-4 1 1-4zm9 4l-4-1v5h6c1.1 0 2-.9 2-2v-6h-5l1 4zm2-14h-6v5l4-1-1 4h5V5c0-1.1-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_pages = ic_pages; \ No newline at end of file diff --git a/dist/md/ic_pages_outline.js b/dist/md/ic_pages_outline.js new file mode 100644 index 000000000..be7581a92 --- /dev/null +++ b/dist/md/ic_pages_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_pages_outline = void 0; +var ic_pages_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-6 2h6v6h-3l1-4-4 1V5zM5 5h6v3L7 7l1 4H5V5zm6 14H5v-6h3l-1 4 4-1v3zm8 0h-6v-3l4 1-1-4h3v6zm-4.37-4.37L12 13.72l-2.63.91.91-2.63-.91-2.63 2.63.91 2.63-.91-.91 2.63.91 2.63z" + }, + "children": [] + }] +}; +exports.ic_pages_outline = ic_pages_outline; \ No newline at end of file diff --git a/dist/md/ic_pages_twotone.js b/dist/md/ic_pages_twotone.js new file mode 100644 index 000000000..22408f853 --- /dev/null +++ b/dist/md/ic_pages_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_pages_twotone = void 0; +var ic_pages_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 7l4 1V5H5v6h3zm1 6H5v6h6v-3l-4 1zm9 4l-4-1v3h6v-6h-3zm-4-9l4-1-1 4h3V5h-6z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5 5h6v3L7 7l1 4H5V5zm6 14H5v-6h3l-1 4 4-1v3zm-1.63-4.37l.91-2.63-.91-2.63 2.63.91 2.63-.91-.91 2.63.91 2.63-2.63-.91-2.63.91zM19 19h-6v-3l4 1-1-4h3v6zm0-8h-3l1-4-4 1V5h6v6z" + }, + "children": [] + }] +}; +exports.ic_pages_twotone = ic_pages_twotone; \ No newline at end of file diff --git a/dist/md/ic_pageview.js b/dist/md/ic_pageview.js new file mode 100644 index 000000000..82ef9e7f4 --- /dev/null +++ b/dist/md/ic_pageview.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_pageview = void 0; +var ic_pageview = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.5 9C10.12 9 9 10.12 9 11.5s1.12 2.5 2.5 2.5 2.5-1.12 2.5-2.5S12.88 9 11.5 9zM20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-3.21 14.21l-2.91-2.91c-.69.44-1.51.7-2.39.7C9.01 16 7 13.99 7 11.5S9.01 7 11.5 7 16 9.01 16 11.5c0 .88-.26 1.69-.7 2.39l2.91 2.9-1.42 1.42z" + }, + "children": [] + }] +}; +exports.ic_pageview = ic_pageview; \ No newline at end of file diff --git a/dist/md/ic_pageview_outline.js b/dist/md/ic_pageview_outline.js new file mode 100644 index 000000000..b7d25c46b --- /dev/null +++ b/dist/md/ic_pageview_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_pageview_outline = void 0; +var ic_pageview_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.49 16c.88 0 1.7-.26 2.39-.7l2.44 2.44 1.42-1.42-2.44-2.43c.44-.7.7-1.51.7-2.39C16 9.01 13.99 7 11.5 7S7 9.01 7 11.5 9.01 16 11.49 16zm.01-7c1.38 0 2.5 1.12 2.5 2.5S12.88 14 11.5 14 9 12.88 9 11.5 10.12 9 11.5 9zM20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h16v12z" + }, + "children": [] + }] +}; +exports.ic_pageview_outline = ic_pageview_outline; \ No newline at end of file diff --git a/dist/md/ic_pageview_twotone.js b/dist/md/ic_pageview_twotone.js new file mode 100644 index 000000000..93f44cdb7 --- /dev/null +++ b/dist/md/ic_pageview_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_pageview_twotone = void 0; +var ic_pageview_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 18h16V6H4v12zm7.5-11c2.49 0 4.5 2.01 4.5 4.5 0 .88-.26 1.69-.7 2.39l2.44 2.43-1.42 1.42-2.44-2.44c-.69.44-1.51.7-2.39.7C9.01 16 7 13.99 7 11.5S9.01 7 11.5 7z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.49 16c.88 0 1.7-.26 2.39-.7l2.44 2.44 1.42-1.42-2.44-2.43c.44-.7.7-1.51.7-2.39C16 9.01 13.99 7 11.5 7S7 9.01 7 11.5 9.01 16 11.49 16zm.01-7c1.38 0 2.5 1.12 2.5 2.5S12.88 14 11.5 14 9 12.88 9 11.5 10.12 9 11.5 9zM20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h16v12z" + }, + "children": [] + }] +}; +exports.ic_pageview_twotone = ic_pageview_twotone; \ No newline at end of file diff --git a/dist/md/ic_palette.js b/dist/md/ic_palette.js new file mode 100644 index 000000000..0d4380f9a --- /dev/null +++ b/dist/md/ic_palette.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_palette = void 0; +var ic_palette = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 3c-4.97 0-9 4.03-9 9s4.03 9 9 9c.83 0 1.5-.67 1.5-1.5 0-.39-.15-.74-.39-1.01-.23-.26-.38-.61-.38-.99 0-.83.67-1.5 1.5-1.5H16c2.76 0 5-2.24 5-5 0-4.42-4.03-8-9-8zm-5.5 9c-.83 0-1.5-.67-1.5-1.5S5.67 9 6.5 9 8 9.67 8 10.5 7.33 12 6.5 12zm3-4C8.67 8 8 7.33 8 6.5S8.67 5 9.5 5s1.5.67 1.5 1.5S10.33 8 9.5 8zm5 0c-.83 0-1.5-.67-1.5-1.5S13.67 5 14.5 5s1.5.67 1.5 1.5S15.33 8 14.5 8zm3 4c-.83 0-1.5-.67-1.5-1.5S16.67 9 17.5 9s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" + }, + "children": [] + }] +}; +exports.ic_palette = ic_palette; \ No newline at end of file diff --git a/dist/md/ic_palette_outline.js b/dist/md/ic_palette_outline.js new file mode 100644 index 000000000..8dc20e898 --- /dev/null +++ b/dist/md/ic_palette_outline.js @@ -0,0 +1,56 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_palette_outline = void 0; +var ic_palette_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 22C6.49 22 2 17.51 2 12S6.49 2 12 2s10 4.04 10 9c0 3.31-2.69 6-6 6h-1.77c-.28 0-.5.22-.5.5 0 .12.05.23.13.33.41.47.64 1.06.64 1.67 0 1.38-1.12 2.5-2.5 2.5zm0-18c-4.41 0-8 3.59-8 8s3.59 8 8 8c.28 0 .5-.22.5-.5 0-.16-.08-.28-.14-.35-.41-.46-.63-1.05-.63-1.65 0-1.38 1.12-2.5 2.5-2.5H16c2.21 0 4-1.79 4-4 0-3.86-3.59-7-8-7z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "6.5", + "cy": "11.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "9.5", + "cy": "7.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "14.5", + "cy": "7.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "17.5", + "cy": "11.5", + "r": "1.5" + }, + "children": [] + }] +}; +exports.ic_palette_outline = ic_palette_outline; \ No newline at end of file diff --git a/dist/md/ic_palette_twotone.js b/dist/md/ic_palette_twotone.js new file mode 100644 index 000000000..0f3e4186d --- /dev/null +++ b/dist/md/ic_palette_twotone.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_palette_twotone = void 0; +var ic_palette_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8c.28 0 .5-.22.5-.5 0-.16-.08-.28-.14-.35-.41-.46-.63-1.05-.63-1.65 0-1.38 1.12-2.5 2.5-2.5H16c2.21 0 4-1.79 4-4 0-3.86-3.59-7-8-7zm-5.5 9c-.83 0-1.5-.67-1.5-1.5S5.67 10 6.5 10s1.5.67 1.5 1.5S7.33 13 6.5 13zm3-4C8.67 9 8 8.33 8 7.5S8.67 6 9.5 6s1.5.67 1.5 1.5S10.33 9 9.5 9zm5 0c-.83 0-1.5-.67-1.5-1.5S13.67 6 14.5 6s1.5.67 1.5 1.5S15.33 9 14.5 9zm4.5 2.5c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10c1.38 0 2.5-1.12 2.5-2.5 0-.61-.23-1.21-.64-1.67-.08-.09-.13-.21-.13-.33 0-.28.22-.5.5-.5H16c3.31 0 6-2.69 6-6 0-4.96-4.49-9-10-9zm4 13h-1.77c-1.38 0-2.5 1.12-2.5 2.5 0 .61.22 1.19.63 1.65.06.07.14.19.14.35 0 .28-.22.5-.5.5-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.14 8 7c0 2.21-1.79 4-4 4z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "6.5", + "cy": "11.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "9.5", + "cy": "7.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "14.5", + "cy": "7.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "17.5", + "cy": "11.5", + "r": "1.5" + }, + "children": [] + }] +}; +exports.ic_palette_twotone = ic_palette_twotone; \ No newline at end of file diff --git a/dist/md/ic_pan_tool.js b/dist/md/ic_pan_tool.js new file mode 100644 index 000000000..2b0e3517f --- /dev/null +++ b/dist/md/ic_pan_tool.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_pan_tool = void 0; +var ic_pan_tool = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M23,5.5V20c0,2.2-1.8,4-4,4h-7.3c-1.08,0-2.1-0.43-2.85-1.19L1,14.83c0,0,1.26-1.23,1.3-1.25 c0.22-0.19,0.49-0.29,0.79-0.29c0.22,0,0.42,0.06,0.6,0.16C3.73,13.46,8,15.91,8,15.91V4c0-0.83,0.67-1.5,1.5-1.5S11,3.17,11,4v7 h1V1.5C12,0.67,12.67,0,13.5,0S15,0.67,15,1.5V11h1V2.5C16,1.67,16.67,1,17.5,1S19,1.67,19,2.5V11h1V5.5C20,4.67,20.67,4,21.5,4 S23,4.67,23,5.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M23,5.5V20c0,2.2-1.8,4-4,4h-7.3c-1.08,0-2.1-0.43-2.85-1.19L1,14.83c0,0,1.26-1.23,1.3-1.25 c0.22-0.19,0.49-0.29,0.79-0.29c0.22,0,0.42,0.06,0.6,0.16C3.73,13.46,8,15.91,8,15.91V4c0-0.83,0.67-1.5,1.5-1.5S11,3.17,11,4v7 h1V1.5C12,0.67,12.67,0,13.5,0S15,0.67,15,1.5V11h1V2.5C16,1.67,16.67,1,17.5,1S19,1.67,19,2.5V11h1V5.5C20,4.67,20.67,4,21.5,4 S23,4.67,23,5.5z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_pan_tool = ic_pan_tool; \ No newline at end of file diff --git a/dist/md/ic_pan_tool_outline.js b/dist/md/ic_pan_tool_outline.js new file mode 100644 index 000000000..828f8b50a --- /dev/null +++ b/dist/md/ic_pan_tool_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_pan_tool_outline = void 0; +var ic_pan_tool_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 24h-6.55c-1.08 0-2.14-.45-2.89-1.23l-7.3-7.61 2.07-1.83c.62-.55 1.53-.66 2.26-.27L8 14.34V4.79c0-1.38 1.12-2.5 2.5-2.5.17 0 .34.02.51.05.09-1.3 1.17-2.33 2.49-2.33.86 0 1.61.43 2.06 1.09.29-.12.61-.18.94-.18 1.38 0 2.5 1.12 2.5 2.5v.28c.16-.03.33-.05.5-.05 1.38 0 2.5 1.12 2.5 2.5V20c0 2.21-1.79 4-4 4zM4.14 15.28l5.86 6.1c.38.39.9.62 1.44.62H18c1.1 0 2-.9 2-2V6.15c0-.28-.22-.5-.5-.5s-.5.22-.5.5V12h-2V3.42c0-.28-.22-.5-.5-.5s-.5.22-.5.5V12h-2V2.51c0-.28-.22-.5-.5-.5s-.5.22-.5.5V12h-2V4.79c0-.28-.22-.5-.5-.5s-.5.23-.5.5v12.87l-5.35-2.83-.51.45z" + }, + "children": [] + }] +}; +exports.ic_pan_tool_outline = ic_pan_tool_outline; \ No newline at end of file diff --git a/dist/md/ic_pan_tool_twotone.js b/dist/md/ic_pan_tool_twotone.js new file mode 100644 index 000000000..9057aa94f --- /dev/null +++ b/dist/md/ic_pan_tool_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_pan_tool_twotone = void 0; +var ic_pan_tool_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.5 5.65c-.28 0-.5.22-.5.5V12h-2V3.42c0-.28-.22-.5-.5-.5s-.5.22-.5.5V12h-2V2.51c0-.28-.22-.5-.5-.5s-.5.22-.5.5V12h-2V4.79c0-.28-.22-.5-.5-.5s-.5.23-.5.5v12.87l-5.35-2.83-.51.45 5.86 6.1c.38.39.9.62 1.44.62H18c1.1 0 2-.9 2-2V6.15c0-.28-.22-.5-.5-.5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.5 3.65c-.17 0-.34.02-.5.05v-.28c0-1.38-1.12-2.5-2.5-2.5-.33 0-.65.06-.94.18C15.11.44 14.35.01 13.5.01c-1.32 0-2.41 1.03-2.49 2.33-.16-.03-.33-.05-.51-.05-1.38 0-2.5 1.12-2.5 2.5v9.55l-2.41-1.28c-.73-.39-1.64-.28-2.26.27l-2.07 1.83 7.3 7.61c.75.78 1.8 1.23 2.89 1.23H18c2.21 0 4-1.79 4-4V6.15c0-1.38-1.12-2.5-2.5-2.5zM20 20c0 1.1-.9 2-2 2h-6.55c-.54 0-1.07-.22-1.44-.62l-5.86-6.11.51-.45L10 17.66V4.79c0-.28.22-.5.5-.5s.5.23.5.5V12h2V2.51c0-.28.22-.5.5-.5s.5.22.5.5V12h2V3.42c0-.28.22-.5.5-.5s.5.22.5.5V12h2V6.15c0-.28.22-.5.5-.5s.5.22.5.5V20z" + }, + "children": [] + }] +}; +exports.ic_pan_tool_twotone = ic_pan_tool_twotone; \ No newline at end of file diff --git a/dist/md/ic_panorama.js b/dist/md/ic_panorama.js new file mode 100644 index 000000000..0ffbfd8d1 --- /dev/null +++ b/dist/md/ic_panorama.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_panorama = void 0; +var ic_panorama = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M23 18V6c0-1.1-.9-2-2-2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2zM8.5 12.5l2.5 3.01L14.5 11l4.5 6H5l3.5-4.5z" + }, + "children": [] + }] +}; +exports.ic_panorama = ic_panorama; \ No newline at end of file diff --git a/dist/md/ic_panorama_fish_eye.js b/dist/md/ic_panorama_fish_eye.js new file mode 100644 index 000000000..9b8a153b3 --- /dev/null +++ b/dist/md/ic_panorama_fish_eye.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_panorama_fish_eye = void 0; +var ic_panorama_fish_eye = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" + }, + "children": [] + }] +}; +exports.ic_panorama_fish_eye = ic_panorama_fish_eye; \ No newline at end of file diff --git a/dist/md/ic_panorama_fish_eye_outline.js b/dist/md/ic_panorama_fish_eye_outline.js new file mode 100644 index 000000000..98d1745d6 --- /dev/null +++ b/dist/md/ic_panorama_fish_eye_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_panorama_fish_eye_outline = void 0; +var ic_panorama_fish_eye_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" + }, + "children": [] + }] +}; +exports.ic_panorama_fish_eye_outline = ic_panorama_fish_eye_outline; \ No newline at end of file diff --git a/dist/md/ic_panorama_fish_eye_twotone.js b/dist/md/ic_panorama_fish_eye_twotone.js new file mode 100644 index 000000000..5efc2630b --- /dev/null +++ b/dist/md/ic_panorama_fish_eye_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_panorama_fish_eye_twotone = void 0; +var ic_panorama_fish_eye_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" + }, + "children": [] + }] +}; +exports.ic_panorama_fish_eye_twotone = ic_panorama_fish_eye_twotone; \ No newline at end of file diff --git a/dist/md/ic_panorama_horizontal.js b/dist/md/ic_panorama_horizontal.js new file mode 100644 index 000000000..a4aa517b8 --- /dev/null +++ b/dist/md/ic_panorama_horizontal.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_panorama_horizontal = void 0; +var ic_panorama_horizontal = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 6.54v10.91c-2.6-.77-5.28-1.16-8-1.16-2.72 0-5.4.39-8 1.16V6.54c2.6.77 5.28 1.16 8 1.16 2.72.01 5.4-.38 8-1.16M21.43 4c-.1 0-.2.02-.31.06C18.18 5.16 15.09 5.7 12 5.7c-3.09 0-6.18-.55-9.12-1.64-.11-.04-.22-.06-.31-.06-.34 0-.57.23-.57.63v14.75c0 .39.23.62.57.62.1 0 .2-.02.31-.06 2.94-1.1 6.03-1.64 9.12-1.64 3.09 0 6.18.55 9.12 1.64.11.04.21.06.31.06.33 0 .57-.23.57-.63V4.63c0-.4-.24-.63-.57-.63z" + }, + "children": [] + }] +}; +exports.ic_panorama_horizontal = ic_panorama_horizontal; \ No newline at end of file diff --git a/dist/md/ic_panorama_horizontal_outline.js b/dist/md/ic_panorama_horizontal_outline.js new file mode 100644 index 000000000..d606cbc4f --- /dev/null +++ b/dist/md/ic_panorama_horizontal_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_panorama_horizontal_outline = void 0; +var ic_panorama_horizontal_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 6.54v10.91c-2.6-.77-5.28-1.16-8-1.16s-5.4.39-8 1.16V6.54c2.6.77 5.28 1.16 8 1.16 2.72.01 5.4-.38 8-1.16M21.43 4c-.1 0-.2.02-.31.06C18.18 5.16 15.09 5.7 12 5.7s-6.18-.55-9.12-1.64C2.77 4.02 2.66 4 2.57 4c-.34 0-.57.23-.57.63v14.75c0 .39.23.62.57.62.1 0 .2-.02.31-.06 2.94-1.1 6.03-1.64 9.12-1.64s6.18.55 9.12 1.64c.11.04.21.06.31.06.33 0 .57-.23.57-.63V4.63c0-.4-.24-.63-.57-.63z" + }, + "children": [] + }] +}; +exports.ic_panorama_horizontal_outline = ic_panorama_horizontal_outline; \ No newline at end of file diff --git a/dist/md/ic_panorama_horizontal_select.js b/dist/md/ic_panorama_horizontal_select.js new file mode 100644 index 000000000..0ebd9dfa8 --- /dev/null +++ b/dist/md/ic_panorama_horizontal_select.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_panorama_horizontal_select = void 0; +var ic_panorama_horizontal_select = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21.43 4c-.1 0-.2.02-.31.06C18.18 5.16 15.09 5.7 12 5.7s-6.18-.55-9.12-1.64C2.77 4.02 2.66 4 2.57 4c-.34 0-.57.23-.57.63v14.75c0 .39.23.62.57.62.1 0 .2-.02.31-.06 2.94-1.1 6.03-1.64 9.12-1.64s6.18.55 9.12 1.64c.11.04.21.06.31.06.33 0 .57-.23.57-.63V4.63c0-.4-.24-.63-.57-.63z" + }, + "children": [] + }] +}; +exports.ic_panorama_horizontal_select = ic_panorama_horizontal_select; \ No newline at end of file diff --git a/dist/md/ic_panorama_horizontal_twotone.js b/dist/md/ic_panorama_horizontal_twotone.js new file mode 100644 index 000000000..735c8ebfb --- /dev/null +++ b/dist/md/ic_panorama_horizontal_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_panorama_horizontal_twotone = void 0; +var ic_panorama_horizontal_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 6.54v10.91c2.6-.77 5.28-1.16 8-1.16s5.4.39 8 1.16V6.54c-2.6.78-5.28 1.17-8 1.16-2.72 0-5.4-.39-8-1.16z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21.43 4c-.1 0-.2.02-.31.06C18.18 5.16 15.09 5.7 12 5.7s-6.18-.55-9.12-1.64C2.77 4.02 2.66 4 2.57 4c-.34 0-.57.23-.57.63v14.75c0 .39.23.62.57.62.1 0 .2-.02.31-.06 2.94-1.1 6.03-1.64 9.12-1.64s6.18.55 9.12 1.64c.11.04.21.06.31.06.33 0 .57-.23.57-.63V4.63c0-.4-.24-.63-.57-.63zM20 17.45c-2.6-.77-5.28-1.16-8-1.16s-5.4.39-8 1.16V6.54c2.6.77 5.28 1.16 8 1.16 2.72.01 5.4-.38 8-1.16v10.91z" + }, + "children": [] + }] +}; +exports.ic_panorama_horizontal_twotone = ic_panorama_horizontal_twotone; \ No newline at end of file diff --git a/dist/md/ic_panorama_outline.js b/dist/md/ic_panorama_outline.js new file mode 100644 index 000000000..77924836f --- /dev/null +++ b/dist/md/ic_panorama_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_panorama_outline = void 0; +var ic_panorama_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 4H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H3V6h18v12zm-6.5-7L11 15.51 8.5 12.5 5 17h14z" + }, + "children": [] + }] +}; +exports.ic_panorama_outline = ic_panorama_outline; \ No newline at end of file diff --git a/dist/md/ic_panorama_photosphere.js b/dist/md/ic_panorama_photosphere.js new file mode 100644 index 000000000..328971335 --- /dev/null +++ b/dist/md/ic_panorama_photosphere.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_panorama_photosphere = void 0; +var ic_panorama_photosphere = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21.4 11.32v2.93c-.1.05-2.17.85-3.33 1.17-.94.26-3.84.73-6.07.73-3.7 0-7-.7-9.16-1.8-.08-.04-.16-.06-.24-.1V9.76c6.02-2.84 12.6-2.92 18.8 0v1.56zm-9.39 8.88c-2.5 0-4.87-1.15-6.41-3.12 4.19 1.22 8.57 1.23 12.82-.01-1.54 1.97-3.9 3.13-6.41 3.13zM12 3.8c2.6 0 4.91 1.23 6.41 3.12-4.1-1.19-8.48-1.26-12.83.01C7.08 5.03 9.4 3.8 12 3.8zm10.49 4.71c-.47-.23-.93-.44-1.4-.64C19.52 4.41 16.05 2 12 2S4.47 4.41 2.9 7.88c-.47.2-.93.41-1.4.63-.31.15-.5.48-.5.83v5.32c0 .35.19.68.51.83.47.23.93.44 1.39.64 3.55 7.83 14.65 7.82 18.2 0 .47-.2.93-.41 1.39-.63.31-.17.51-.49.51-.84V9.34c0-.35-.19-.68-.51-.83z" + }, + "children": [] + }] +}; +exports.ic_panorama_photosphere = ic_panorama_photosphere; \ No newline at end of file diff --git a/dist/md/ic_panorama_photosphere_select.js b/dist/md/ic_panorama_photosphere_select.js new file mode 100644 index 000000000..0705b1055 --- /dev/null +++ b/dist/md/ic_panorama_photosphere_select.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_panorama_photosphere_select = void 0; +var ic_panorama_photosphere_select = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22.49 8.51c-.47-.23-.93-.44-1.4-.64C19.52 4.41 16.05 2 12 2S4.47 4.41 2.9 7.88c-.47.2-.93.41-1.4.63-.31.15-.5.48-.5.83v5.32c0 .35.19.68.51.83.47.23.93.44 1.39.64 3.55 7.83 14.65 7.82 18.2 0 .47-.2.93-.41 1.39-.63.31-.17.51-.49.51-.84V9.34c0-.35-.19-.68-.51-.83zM12 3.8c2.6 0 4.91 1.23 6.41 3.12-4.1-1.19-8.48-1.26-12.83.01C7.08 5.03 9.4 3.8 12 3.8zM5.6 17.08c4.19 1.22 8.57 1.23 12.82-.01-1.54 1.97-3.9 3.13-6.41 3.13-2.5 0-4.87-1.15-6.41-3.12z" + }, + "children": [] + }] +}; +exports.ic_panorama_photosphere_select = ic_panorama_photosphere_select; \ No newline at end of file diff --git a/dist/md/ic_panorama_twotone.js b/dist/md/ic_panorama_twotone.js new file mode 100644 index 000000000..3e573ee73 --- /dev/null +++ b/dist/md/ic_panorama_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_panorama_twotone = void 0; +var ic_panorama_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 18h18V6H3v12zm5.5-5.5l2.5 3.01L14.5 11l4.5 6H5l3.5-4.5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 4H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H3V6h18v12zm-6.5-7L11 15.51 8.5 12.5 5 17h14z" + }, + "children": [] + }] +}; +exports.ic_panorama_twotone = ic_panorama_twotone; \ No newline at end of file diff --git a/dist/md/ic_panorama_vertical.js b/dist/md/ic_panorama_vertical.js new file mode 100644 index 000000000..f4bfd0cc4 --- /dev/null +++ b/dist/md/ic_panorama_vertical.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_panorama_vertical = void 0; +var ic_panorama_vertical = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.94 21.12c-1.1-2.94-1.64-6.03-1.64-9.12 0-3.09.55-6.18 1.64-9.12.04-.11.06-.22.06-.31 0-.34-.23-.57-.63-.57H4.63c-.4 0-.63.23-.63.57 0 .1.02.2.06.31C5.16 5.82 5.71 8.91 5.71 12c0 3.09-.55 6.18-1.64 9.12-.05.11-.07.22-.07.31 0 .33.23.57.63.57h14.75c.39 0 .63-.24.63-.57-.01-.1-.03-.2-.07-.31zM6.54 20c.77-2.6 1.16-5.28 1.16-8 0-2.72-.39-5.4-1.16-8h10.91c-.77 2.6-1.16 5.28-1.16 8 0 2.72.39 5.4 1.16 8H6.54z" + }, + "children": [] + }] +}; +exports.ic_panorama_vertical = ic_panorama_vertical; \ No newline at end of file diff --git a/dist/md/ic_panorama_vertical_outline.js b/dist/md/ic_panorama_vertical_outline.js new file mode 100644 index 000000000..5debaf230 --- /dev/null +++ b/dist/md/ic_panorama_vertical_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_panorama_vertical_outline = void 0; +var ic_panorama_vertical_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.94 21.12c-1.1-2.94-1.64-6.03-1.64-9.12s.55-6.18 1.64-9.12c.04-.11.06-.22.06-.31 0-.34-.23-.57-.63-.57H4.63c-.4 0-.63.23-.63.57 0 .1.02.2.06.31C5.16 5.82 5.71 8.91 5.71 12s-.55 6.18-1.64 9.12c-.05.11-.07.22-.07.31 0 .33.23.57.63.57h14.75c.39 0 .63-.24.63-.57-.01-.1-.03-.2-.07-.31zM6.54 20c.77-2.6 1.16-5.28 1.16-8s-.39-5.4-1.16-8h10.91c-.77 2.6-1.16 5.28-1.16 8s.39 5.4 1.16 8H6.54z" + }, + "children": [] + }] +}; +exports.ic_panorama_vertical_outline = ic_panorama_vertical_outline; \ No newline at end of file diff --git a/dist/md/ic_panorama_vertical_select.js b/dist/md/ic_panorama_vertical_select.js new file mode 100644 index 000000000..09fb14d59 --- /dev/null +++ b/dist/md/ic_panorama_vertical_select.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_panorama_vertical_select = void 0; +var ic_panorama_vertical_select = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.93 21.12c-1.1-2.94-1.64-6.03-1.64-9.12s.55-6.18 1.64-9.12c.05-.11.07-.22.07-.31 0-.34-.24-.57-.64-.57H4.62c-.4 0-.63.23-.63.57 0 .1.02.2.06.31C5.16 5.82 5.7 8.91 5.7 12s-.55 6.18-1.64 9.12c-.05.11-.07.22-.07.31 0 .33.23.57.63.57h14.75c.39 0 .63-.24.63-.57 0-.1-.02-.2-.07-.31z" + }, + "children": [] + }] +}; +exports.ic_panorama_vertical_select = ic_panorama_vertical_select; \ No newline at end of file diff --git a/dist/md/ic_panorama_vertical_twotone.js b/dist/md/ic_panorama_vertical_twotone.js new file mode 100644 index 000000000..33bca87e4 --- /dev/null +++ b/dist/md/ic_panorama_vertical_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_panorama_vertical_twotone = void 0; +var ic_panorama_vertical_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6.54 4c.77 2.6 1.16 5.28 1.16 8 0 2.72-.39 5.4-1.16 8h10.91c-.77-2.6-1.16-5.28-1.16-8 0-2.72.39-5.4 1.16-8H6.54z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.94 21.12c-1.1-2.94-1.64-6.03-1.64-9.12 0-3.09.55-6.18 1.64-9.12.04-.11.06-.22.06-.31 0-.34-.23-.57-.63-.57H4.63c-.4 0-.63.23-.63.57 0 .1.02.2.06.31C5.16 5.82 5.71 8.91 5.71 12c0 3.09-.55 6.18-1.64 9.12-.05.11-.07.22-.07.31 0 .33.23.57.63.57h14.75c.39 0 .63-.24.63-.57-.01-.1-.03-.2-.07-.31zM17.45 20H6.54c.77-2.6 1.16-5.28 1.16-8 0-2.72-.39-5.4-1.16-8h10.91c-.77 2.6-1.16 5.28-1.16 8 0 2.72.39 5.4 1.16 8z" + }, + "children": [] + }] +}; +exports.ic_panorama_vertical_twotone = ic_panorama_vertical_twotone; \ No newline at end of file diff --git a/dist/md/ic_panorama_wide_angle.js b/dist/md/ic_panorama_wide_angle.js new file mode 100644 index 000000000..328bdab39 --- /dev/null +++ b/dist/md/ic_panorama_wide_angle.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_panorama_wide_angle = void 0; +var ic_panorama_wide_angle = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 6c2.45 0 4.71.2 7.29.64.47 1.78.71 3.58.71 5.36 0 1.78-.24 3.58-.71 5.36-2.58.44-4.84.64-7.29.64s-4.71-.2-7.29-.64C4.24 15.58 4 13.78 4 12c0-1.78.24-3.58.71-5.36C7.29 6.2 9.55 6 12 6m0-2c-2.73 0-5.22.24-7.95.72l-.93.16-.25.9C2.29 7.85 2 9.93 2 12s.29 4.15.87 6.22l.25.89.93.16c2.73.49 5.22.73 7.95.73s5.22-.24 7.95-.72l.93-.16.25-.89c.58-2.08.87-4.16.87-6.23s-.29-4.15-.87-6.22l-.25-.89-.93-.16C17.22 4.24 14.73 4 12 4z" + }, + "children": [] + }] +}; +exports.ic_panorama_wide_angle = ic_panorama_wide_angle; \ No newline at end of file diff --git a/dist/md/ic_panorama_wide_angle_outline.js b/dist/md/ic_panorama_wide_angle_outline.js new file mode 100644 index 000000000..65a88db4f --- /dev/null +++ b/dist/md/ic_panorama_wide_angle_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_panorama_wide_angle_outline = void 0; +var ic_panorama_wide_angle_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 6c2.45 0 4.71.2 7.29.64.47 1.78.71 3.58.71 5.36s-.24 3.58-.71 5.36c-2.58.44-4.84.64-7.29.64s-4.71-.2-7.29-.64C4.24 15.58 4 13.78 4 12s.24-3.58.71-5.36C7.29 6.2 9.55 6 12 6m0-2c-2.73 0-5.22.24-7.95.72l-.93.16-.25.9C2.29 7.85 2 9.93 2 12s.29 4.15.87 6.22l.25.89.93.16c2.73.49 5.22.73 7.95.73s5.22-.24 7.95-.72l.93-.16.25-.89c.58-2.08.87-4.16.87-6.23s-.29-4.15-.87-6.22l-.25-.89-.93-.16C17.22 4.24 14.73 4 12 4z" + }, + "children": [] + }] +}; +exports.ic_panorama_wide_angle_outline = ic_panorama_wide_angle_outline; \ No newline at end of file diff --git a/dist/md/ic_panorama_wide_angle_select.js b/dist/md/ic_panorama_wide_angle_select.js new file mode 100644 index 000000000..01b5737f7 --- /dev/null +++ b/dist/md/ic_panorama_wide_angle_select.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_panorama_wide_angle_select = void 0; +var ic_panorama_wide_angle_select = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4c-2.73 0-5.22.24-7.95.72l-.93.16-.25.9C2.29 7.85 2 9.93 2 12s.29 4.15.87 6.22l.25.89.93.16c2.73.49 5.22.73 7.95.73s5.22-.24 7.95-.72l.93-.16.25-.89c.58-2.08.87-4.16.87-6.23s-.29-4.15-.87-6.22l-.25-.89-.93-.16C17.22 4.24 14.73 4 12 4z" + }, + "children": [] + }] +}; +exports.ic_panorama_wide_angle_select = ic_panorama_wide_angle_select; \ No newline at end of file diff --git a/dist/md/ic_panorama_wide_angle_twotone.js b/dist/md/ic_panorama_wide_angle_twotone.js new file mode 100644 index 000000000..1f71ce381 --- /dev/null +++ b/dist/md/ic_panorama_wide_angle_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_panorama_wide_angle_twotone = void 0; +var ic_panorama_wide_angle_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 6c-2.45 0-4.71.2-7.29.64C4.24 8.42 4 10.22 4 12c0 1.78.24 3.58.71 5.36 2.58.44 4.84.64 7.29.64s4.71-.2 7.29-.64c.47-1.78.71-3.58.71-5.36 0-1.78-.24-3.58-.71-5.36C16.71 6.2 14.45 6 12 6z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21.13 5.78l-.25-.89-.93-.16C17.22 4.24 14.73 4 12 4s-5.22.24-7.95.72l-.93.16-.25.9C2.29 7.85 2 9.93 2 12s.29 4.15.87 6.22l.25.89.93.16c2.73.49 5.22.73 7.95.73s5.22-.24 7.95-.72l.93-.16.25-.89c.58-2.08.87-4.16.87-6.23s-.29-4.15-.87-6.22zm-1.84 11.58c-2.58.44-4.84.64-7.29.64s-4.71-.2-7.29-.64C4.24 15.58 4 13.78 4 12c0-1.78.24-3.58.71-5.36C7.29 6.2 9.55 6 12 6s4.71.2 7.29.64c.47 1.78.71 3.58.71 5.36 0 1.78-.24 3.58-.71 5.36z" + }, + "children": [] + }] +}; +exports.ic_panorama_wide_angle_twotone = ic_panorama_wide_angle_twotone; \ No newline at end of file diff --git a/dist/md/ic_park.js b/dist/md/ic_park.js new file mode 100644 index 000000000..b0103b1df --- /dev/null +++ b/dist/md/ic_park.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_park = void 0; +var ic_park = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "17,12 19,12 12,2 5.05,12 7,12 3.1,18 10.02,18 10.02,22 13.98,22 13.98,18 21,18" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "17,12 19,12 12,2 5.05,12 7,12 3.1,18 10.02,18 10.02,22 13.98,22 13.98,18 21,18" + }, + "children": [] + }] + }] + }] +}; +exports.ic_park = ic_park; \ No newline at end of file diff --git a/dist/md/ic_party_mode.js b/dist/md/ic_party_mode.js new file mode 100644 index 000000000..5c24868e6 --- /dev/null +++ b/dist/md/ic_party_mode.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_party_mode = void 0; +var ic_party_mode = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 4h-3.17L15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-8 3c1.63 0 3.06.79 3.98 2H12c-1.66 0-3 1.34-3 3 0 .35.07.69.18 1H7.1c-.06-.32-.1-.66-.1-1 0-2.76 2.24-5 5-5zm0 10c-1.63 0-3.06-.79-3.98-2H12c1.66 0 3-1.34 3-3 0-.35-.07-.69-.18-1h2.08c.07.32.1.66.1 1 0 2.76-2.24 5-5 5z" + }, + "children": [] + }] +}; +exports.ic_party_mode = ic_party_mode; \ No newline at end of file diff --git a/dist/md/ic_party_mode_outline.js b/dist/md/ic_party_mode_outline.js new file mode 100644 index 000000000..954c6c4aa --- /dev/null +++ b/dist/md/ic_party_mode_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_party_mode_outline = void 0; +var ic_party_mode_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 4h-3.17L15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h4.05l.59-.65L9.88 4h4.24l1.24 1.35.59.65H20v12zM9 12c0-1.66 1.34-3 3-3h3.98c-.92-1.21-2.35-2-3.98-2-2.76 0-5 2.24-5 5 0 .34.04.68.1 1h2.08c-.11-.31-.18-.65-.18-1zm6 0c0 1.66-1.34 3-3 3H8.02c.92 1.21 2.35 2 3.98 2 2.76 0 5-2.24 5-5 0-.34-.03-.68-.1-1h-2.08c.11.31.18.65.18 1z" + }, + "children": [] + }] +}; +exports.ic_party_mode_outline = ic_party_mode_outline; \ No newline at end of file diff --git a/dist/md/ic_party_mode_twotone.js b/dist/md/ic_party_mode_twotone.js new file mode 100644 index 000000000..85b1f873b --- /dev/null +++ b/dist/md/ic_party_mode_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_party_mode_twotone = void 0; +var ic_party_mode_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.95 6l-.59-.65L14.12 4H9.88L8.65 5.35l-.6.65H4v12h16V6h-4.05zM7 12c0-2.76 2.24-5 5-5 1.63 0 3.06.79 3.98 2H12c-1.66 0-3 1.34-3 3 0 .35.07.69.18 1H7.1c-.06-.32-.1-.66-.1-1zm10 0c0 2.76-2.24 5-5 5-1.63 0-3.06-.79-3.98-2H12c1.66 0 3-1.34 3-3 0-.35-.07-.69-.18-1h2.08c.07.32.1.66.1 1z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 4h-3.17L15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h4.05l.59-.65L9.88 4h4.24l1.24 1.35.59.65H20v12zM9 12c0-1.66 1.34-3 3-3h3.98c-.92-1.21-2.35-2-3.98-2-2.76 0-5 2.24-5 5 0 .34.04.68.1 1h2.08c-.11-.31-.18-.65-.18-1zm6 0c0 1.66-1.34 3-3 3H8.02c.92 1.21 2.35 2 3.98 2 2.76 0 5-2.24 5-5 0-.34-.03-.68-.1-1h-2.08c.11.31.18.65.18 1z" + }, + "children": [] + }] +}; +exports.ic_party_mode_twotone = ic_party_mode_twotone; \ No newline at end of file diff --git a/dist/md/ic_pause.js b/dist/md/ic_pause.js new file mode 100644 index 000000000..52a589c70 --- /dev/null +++ b/dist/md/ic_pause.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_pause = void 0; +var ic_pause = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 19h4V5H6v14zm8-14v14h4V5h-4z" + }, + "children": [] + }] +}; +exports.ic_pause = ic_pause; \ No newline at end of file diff --git a/dist/md/ic_pause_circle_filled.js b/dist/md/ic_pause_circle_filled.js new file mode 100644 index 000000000..5e1ae8f0b --- /dev/null +++ b/dist/md/ic_pause_circle_filled.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_pause_circle_filled = void 0; +var ic_pause_circle_filled = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 14H9V8h2v8zm4 0h-2V8h2v8z" + }, + "children": [] + }] +}; +exports.ic_pause_circle_filled = ic_pause_circle_filled; \ No newline at end of file diff --git a/dist/md/ic_pause_circle_filled_outline.js b/dist/md/ic_pause_circle_filled_outline.js new file mode 100644 index 000000000..e786783a8 --- /dev/null +++ b/dist/md/ic_pause_circle_filled_outline.js @@ -0,0 +1,87 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_pause_circle_filled_outline = void 0; +var ic_pause_circle_filled_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M11,16H9V8h2V16z M15,16h-2V8h2V16z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M11,16H9V8h2V16z M15,16h-2V8h2V16z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_pause_circle_filled_outline = ic_pause_circle_filled_outline; \ No newline at end of file diff --git a/dist/md/ic_pause_circle_filled_twotone.js b/dist/md/ic_pause_circle_filled_twotone.js new file mode 100644 index 000000000..0e211a501 --- /dev/null +++ b/dist/md/ic_pause_circle_filled_twotone.js @@ -0,0 +1,145 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_pause_circle_filled_twotone = void 0; +var ic_pause_circle_filled_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,4c-4.41,0-8,3.59-8,8c0,4.41,3.59,8,8,8s8-3.59,8-8C20,7.59,16.41,4,12,4z M11,16H9V8h2V16z M15,16h-2 V8h2V16z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,4c-4.41,0-8,3.59-8,8c0,4.41,3.59,8,8,8s8-3.59,8-8C20,7.59,16.41,4,12,4z M11,16H9V8h2V16z M15,16h-2 V8h2V16z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "8", + "width": "2", + "x": "13", + "y": "8" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "8", + "width": "2", + "x": "13", + "y": "8" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "8", + "width": "2", + "x": "9", + "y": "8" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "8", + "width": "2", + "x": "9", + "y": "8" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8 c0-4.41,3.59-8,8-8s8,3.59,8,8C20,16.41,16.41,20,12,20z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8 c0-4.41,3.59-8,8-8s8,3.59,8,8C20,16.41,16.41,20,12,20z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_pause_circle_filled_twotone = ic_pause_circle_filled_twotone; \ No newline at end of file diff --git a/dist/md/ic_pause_circle_outline.js b/dist/md/ic_pause_circle_outline.js new file mode 100644 index 000000000..9f75ceb66 --- /dev/null +++ b/dist/md/ic_pause_circle_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_pause_circle_outline = void 0; +var ic_pause_circle_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 16h2V8H9v8zm3-14C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm1-4h2V8h-2v8z" + }, + "children": [] + }] +}; +exports.ic_pause_circle_outline = ic_pause_circle_outline; \ No newline at end of file diff --git a/dist/md/ic_pause_circle_outline_outline.js b/dist/md/ic_pause_circle_outline_outline.js new file mode 100644 index 000000000..8fc5c3d5a --- /dev/null +++ b/dist/md/ic_pause_circle_outline_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_pause_circle_outline_outline = void 0; +var ic_pause_circle_outline_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 16h2V8H9v8zm3-14C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm1-4h2V8h-2v8z" + }, + "children": [] + }] +}; +exports.ic_pause_circle_outline_outline = ic_pause_circle_outline_outline; \ No newline at end of file diff --git a/dist/md/ic_pause_circle_outline_twotone.js b/dist/md/ic_pause_circle_outline_twotone.js new file mode 100644 index 000000000..8d1e53d3c --- /dev/null +++ b/dist/md/ic_pause_circle_outline_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_pause_circle_outline_twotone = void 0; +var ic_pause_circle_outline_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 8h2v8h-2zM9 8h2v8H9zm3 14c5.52 0 10-4.48 10-10S17.52 2 12 2 2 6.48 2 12s4.48 10 10 10zm0-18c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8z" + }, + "children": [] + }] +}; +exports.ic_pause_circle_outline_twotone = ic_pause_circle_outline_twotone; \ No newline at end of file diff --git a/dist/md/ic_pause_outline.js b/dist/md/ic_pause_outline.js new file mode 100644 index 000000000..b33518f80 --- /dev/null +++ b/dist/md/ic_pause_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_pause_outline = void 0; +var ic_pause_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 19h4V5H6v14zm8-14v14h4V5h-4z" + }, + "children": [] + }] +}; +exports.ic_pause_outline = ic_pause_outline; \ No newline at end of file diff --git a/dist/md/ic_pause_presentation.js b/dist/md/ic_pause_presentation.js new file mode 100644 index 000000000..5838f2e94 --- /dev/null +++ b/dist/md/ic_pause_presentation.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_pause_presentation = void 0; +var ic_pause_presentation = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 19.1H3V5h18v14.1zM21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 19.1H3V5h18v14.1zM21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 8h2v8H9zm4 0h2v8h-2z" + }, + "children": [] + }] +}; +exports.ic_pause_presentation = ic_pause_presentation; \ No newline at end of file diff --git a/dist/md/ic_pause_presentation_outline.js b/dist/md/ic_pause_presentation_outline.js new file mode 100644 index 000000000..2227b10bb --- /dev/null +++ b/dist/md/ic_pause_presentation_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_pause_presentation_outline = void 0; +var ic_pause_presentation_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 3H3c-1.1 0-2 .85-2 1.95v14c0 1.1.9 2.05 2 2.05h18c1.1 0 2-.95 2-2.05v-14C23 3.85 22.1 3 21 3zm0 16H3V5h18v14zM9 8h2v8H9zm4 0h2v8h-2z" + }, + "children": [] + }] +}; +exports.ic_pause_presentation_outline = ic_pause_presentation_outline; \ No newline at end of file diff --git a/dist/md/ic_pause_presentation_twotone.js b/dist/md/ic_pause_presentation_twotone.js new file mode 100644 index 000000000..eb078185e --- /dev/null +++ b/dist/md/ic_pause_presentation_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_pause_presentation_twotone = void 0; +var ic_pause_presentation_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 19h18V5H3v14zM13 8h2v8h-2V8zM9 8h2v8H9V8z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM9 8h2v8H9zm4 0h2v8h-2z" + }, + "children": [] + }] +}; +exports.ic_pause_presentation_twotone = ic_pause_presentation_twotone; \ No newline at end of file diff --git a/dist/md/ic_pause_twotone.js b/dist/md/ic_pause_twotone.js new file mode 100644 index 000000000..46537caef --- /dev/null +++ b/dist/md/ic_pause_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_pause_twotone = void 0; +var ic_pause_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 5h4v14H6zm8 0h4v14h-4z" + }, + "children": [] + }] +}; +exports.ic_pause_twotone = ic_pause_twotone; \ No newline at end of file diff --git a/dist/md/ic_payment.js b/dist/md/ic_payment.js new file mode 100644 index 000000000..5dccb1143 --- /dev/null +++ b/dist/md/ic_payment.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_payment = void 0; +var ic_payment = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4v-6h16v6zm0-10H4V6h16v2z" + }, + "children": [] + }] +}; +exports.ic_payment = ic_payment; \ No newline at end of file diff --git a/dist/md/ic_payment_outline.js b/dist/md/ic_payment_outline.js new file mode 100644 index 000000000..fa0ef1b7f --- /dev/null +++ b/dist/md/ic_payment_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_payment_outline = void 0; +var ic_payment_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4v-6h16v6zm0-10H4V6h16v2z" + }, + "children": [] + }] +}; +exports.ic_payment_outline = ic_payment_outline; \ No newline at end of file diff --git a/dist/md/ic_payment_twotone.js b/dist/md/ic_payment_twotone.js new file mode 100644 index 000000000..67001ca96 --- /dev/null +++ b/dist/md/ic_payment_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_payment_twotone = void 0; +var ic_payment_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 6h16v2H4zm0 6h16v6H4z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4v-6h16v6zm0-10H4V6h16v2z" + }, + "children": [] + }] +}; +exports.ic_payment_twotone = ic_payment_twotone; \ No newline at end of file diff --git a/dist/md/ic_payments.js b/dist/md/ic_payments.js new file mode 100644 index 000000000..e7b64e839 --- /dev/null +++ b/dist/md/ic_payments.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_payments = void 0; +var ic_payments = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 14V6c0-1.1-.9-2-2-2H3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zm-9-1c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm13-6v11c0 1.1-.9 2-2 2H4v-2h17V7h2z" + }, + "children": [] + }] +}; +exports.ic_payments = ic_payments; \ No newline at end of file diff --git a/dist/md/ic_payments_outline.js b/dist/md/ic_payments_outline.js new file mode 100644 index 000000000..80398a138 --- /dev/null +++ b/dist/md/ic_payments_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_payments_outline = void 0; +var ic_payments_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19,14V6c0-1.1-0.9-2-2-2H3C1.9,4,1,4.9,1,6v8c0,1.1,0.9,2,2,2h14C18.1,16,19,15.1,19,14z M17,14H3V6h14V14z M10,7 c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S11.66,7,10,7z M23,7v11c0,1.1-0.9,2-2,2H4c0-1,0-0.9,0-2h17V7C22.1,7,22,7,23,7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,14V6c0-1.1-0.9-2-2-2H3C1.9,4,1,4.9,1,6v8c0,1.1,0.9,2,2,2h14C18.1,16,19,15.1,19,14z M17,14H3V6h14V14z M10,7 c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S11.66,7,10,7z M23,7v11c0,1.1-0.9,2-2,2H4c0-1,0-0.9,0-2h17V7C22.1,7,22,7,23,7z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_payments_outline = ic_payments_outline; \ No newline at end of file diff --git a/dist/md/ic_payments_twotone.js b/dist/md/ic_payments_twotone.js new file mode 100644 index 000000000..9a82b5401 --- /dev/null +++ b/dist/md/ic_payments_twotone.js @@ -0,0 +1,89 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_payments_twotone = void 0; +var ic_payments_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M17,6H3v8h14V6z M10,13c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3S11.66,13,10,13z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,6H3v8h14V6z M10,13c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3S11.66,13,10,13z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,4H3C1.9,4,1,4.9,1,6v8c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V6C19,4.9,18.1,4,17,4L17,4z M3,14V6h14v8H3z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,4H3C1.9,4,1,4.9,1,6v8c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V6C19,4.9,18.1,4,17,4L17,4z M3,14V6h14v8H3z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M10,7c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S11.66,7,10,7L10,7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M10,7c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S11.66,7,10,7L10,7z" + }, + "children": [] + }] + }] + }] + }, { + "name": "path", + "attribs": { + "d": "M23,7v11c0,1.1-0.9,2-2,2H4c0-1,0-0.9,0-2h17V7C22.1,7,22,7,23,7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M23,7v11c0,1.1-0.9,2-2,2H4c0-1,0-0.9,0-2h17V7C22.1,7,22,7,23,7z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_payments_twotone = ic_payments_twotone; \ No newline at end of file diff --git a/dist/md/ic_pedal_bike.js b/dist/md/ic_pedal_bike.js new file mode 100644 index 000000000..9a4294ad6 --- /dev/null +++ b/dist/md/ic_pedal_bike.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_pedal_bike = void 0; +var ic_pedal_bike = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M18.18,10l-1.7-4.68C16.19,4.53,15.44,4,14.6,4H12v2h2.6l1.46,4h-4.81l-0.36-1H12V7H7v2h1.75l1.82,5H9.9 c-0.44-2.23-2.31-3.88-4.65-3.99C2.45,9.87,0,12.2,0,15c0,2.8,2.2,5,5,5c2.46,0,4.45-1.69,4.9-4h4.2c0.44,2.23,2.31,3.88,4.65,3.99 c2.8,0.13,5.25-2.19,5.25-5c0-2.8-2.2-5-5-5H18.18z M7.82,16c-0.4,1.17-1.49,2-2.82,2c-1.68,0-3-1.32-3-3s1.32-3,3-3 c1.33,0,2.42,0.83,2.82,2H5v2H7.82z M14.1,14h-1.4l-0.73-2H15C14.56,12.58,14.24,13.25,14.1,14z M19,18c-1.68,0-3-1.32-3-3 c0-0.93,0.41-1.73,1.05-2.28l0.96,2.64l1.88-0.68l-0.97-2.67c0.03,0,0.06-0.01,0.09-0.01c1.68,0,3,1.32,3,3S20.68,18,19,18z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18.18,10l-1.7-4.68C16.19,4.53,15.44,4,14.6,4H12v2h2.6l1.46,4h-4.81l-0.36-1H12V7H7v2h1.75l1.82,5H9.9 c-0.44-2.23-2.31-3.88-4.65-3.99C2.45,9.87,0,12.2,0,15c0,2.8,2.2,5,5,5c2.46,0,4.45-1.69,4.9-4h4.2c0.44,2.23,2.31,3.88,4.65,3.99 c2.8,0.13,5.25-2.19,5.25-5c0-2.8-2.2-5-5-5H18.18z M7.82,16c-0.4,1.17-1.49,2-2.82,2c-1.68,0-3-1.32-3-3s1.32-3,3-3 c1.33,0,2.42,0.83,2.82,2H5v2H7.82z M14.1,14h-1.4l-0.73-2H15C14.56,12.58,14.24,13.25,14.1,14z M19,18c-1.68,0-3-1.32-3-3 c0-0.93,0.41-1.73,1.05-2.28l0.96,2.64l1.88-0.68l-0.97-2.67c0.03,0,0.06-0.01,0.09-0.01c1.68,0,3,1.32,3,3S20.68,18,19,18z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_pedal_bike = ic_pedal_bike; \ No newline at end of file diff --git a/dist/md/ic_pedal_bike_outline.js b/dist/md/ic_pedal_bike_outline.js new file mode 100644 index 000000000..a91c593bf --- /dev/null +++ b/dist/md/ic_pedal_bike_outline.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_pedal_bike_outline = void 0; +var ic_pedal_bike_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M18.18,10l-1.7-4.68C16.19,4.53,15.44,4,14.6,4H12v2h2.6l1.46,4h-4.81l-0.36-1H12V7H7v2h1.75l1.82,5H9.9 c-0.44-2.23-2.31-3.88-4.65-3.99C2.45,9.87,0,12.2,0,15c0,2.8,2.2,5,5,5c2.46,0,4.45-1.69,4.9-4h4.2c0.44,2.23,2.31,3.88,4.65,3.99 c2.8,0.13,5.25-2.19,5.25-5c0-2.8-2.2-5-5-5H18.18z M7.82,16c-0.4,1.17-1.49,2-2.82,2c-1.68,0-3-1.32-3-3s1.32-3,3-3 c1.33,0,2.42,0.83,2.82,2H5v2H7.82z M14.1,14h-1.4l-0.73-2H15C14.56,12.58,14.24,13.25,14.1,14z M19,18c-1.68,0-3-1.32-3-3 c0-0.93,0.41-1.73,1.05-2.28l0.96,2.64l1.88-0.68l-0.97-2.67c0.03,0,0.06-0.01,0.09-0.01c1.68,0,3,1.32,3,3S20.68,18,19,18z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18.18,10l-1.7-4.68C16.19,4.53,15.44,4,14.6,4H12v2h2.6l1.46,4h-4.81l-0.36-1H12V7H7v2h1.75l1.82,5H9.9 c-0.44-2.23-2.31-3.88-4.65-3.99C2.45,9.87,0,12.2,0,15c0,2.8,2.2,5,5,5c2.46,0,4.45-1.69,4.9-4h4.2c0.44,2.23,2.31,3.88,4.65,3.99 c2.8,0.13,5.25-2.19,5.25-5c0-2.8-2.2-5-5-5H18.18z M7.82,16c-0.4,1.17-1.49,2-2.82,2c-1.68,0-3-1.32-3-3s1.32-3,3-3 c1.33,0,2.42,0.83,2.82,2H5v2H7.82z M14.1,14h-1.4l-0.73-2H15C14.56,12.58,14.24,13.25,14.1,14z M19,18c-1.68,0-3-1.32-3-3 c0-0.93,0.41-1.73,1.05-2.28l0.96,2.64l1.88-0.68l-0.97-2.67c0.03,0,0.06-0.01,0.09-0.01c1.68,0,3,1.32,3,3S20.68,18,19,18z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_pedal_bike_outline = ic_pedal_bike_outline; \ No newline at end of file diff --git a/dist/md/ic_pedal_bike_twotone.js b/dist/md/ic_pedal_bike_twotone.js new file mode 100644 index 000000000..9ab9d8573 --- /dev/null +++ b/dist/md/ic_pedal_bike_twotone.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_pedal_bike_twotone = void 0; +var ic_pedal_bike_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M18.18,10l-1.7-4.68C16.19,4.53,15.44,4,14.6,4H12v2h2.6l1.46,4h-4.81l-0.36-1H12V7H7v2h1.75l1.82,5H9.9 c-0.44-2.23-2.31-3.88-4.65-3.99C2.45,9.87,0,12.2,0,15c0,2.8,2.2,5,5,5c2.46,0,4.45-1.69,4.9-4h4.2c0.44,2.23,2.31,3.88,4.65,3.99 c2.8,0.13,5.25-2.19,5.25-5c0-2.8-2.2-5-5-5H18.18z M7.82,16c-0.4,1.17-1.49,2-2.82,2c-1.68,0-3-1.32-3-3s1.32-3,3-3 c1.33,0,2.42,0.83,2.82,2H5v2H7.82z M14.1,14h-1.4l-0.73-2H15C14.56,12.58,14.24,13.25,14.1,14z M19,18c-1.68,0-3-1.32-3-3 c0-0.93,0.41-1.73,1.05-2.28l0.96,2.64l1.88-0.68l-0.97-2.67c0.03,0,0.06-0.01,0.09-0.01c1.68,0,3,1.32,3,3S20.68,18,19,18z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18.18,10l-1.7-4.68C16.19,4.53,15.44,4,14.6,4H12v2h2.6l1.46,4h-4.81l-0.36-1H12V7H7v2h1.75l1.82,5H9.9 c-0.44-2.23-2.31-3.88-4.65-3.99C2.45,9.87,0,12.2,0,15c0,2.8,2.2,5,5,5c2.46,0,4.45-1.69,4.9-4h4.2c0.44,2.23,2.31,3.88,4.65,3.99 c2.8,0.13,5.25-2.19,5.25-5c0-2.8-2.2-5-5-5H18.18z M7.82,16c-0.4,1.17-1.49,2-2.82,2c-1.68,0-3-1.32-3-3s1.32-3,3-3 c1.33,0,2.42,0.83,2.82,2H5v2H7.82z M14.1,14h-1.4l-0.73-2H15C14.56,12.58,14.24,13.25,14.1,14z M19,18c-1.68,0-3-1.32-3-3 c0-0.93,0.41-1.73,1.05-2.28l0.96,2.64l1.88-0.68l-0.97-2.67c0.03,0,0.06-0.01,0.09-0.01c1.68,0,3,1.32,3,3S20.68,18,19,18z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_pedal_bike_twotone = ic_pedal_bike_twotone; \ No newline at end of file diff --git a/dist/md/ic_pending.js b/dist/md/ic_pending.js new file mode 100644 index 000000000..a4169d83a --- /dev/null +++ b/dist/md/ic_pending.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_pending = void 0; +var ic_pending = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M7,13.5c-0.83,0-1.5-0.67-1.5-1.5 c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5C8.5,12.83,7.83,13.5,7,13.5z M12,13.5c-0.83,0-1.5-0.67-1.5-1.5 c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5C13.5,12.83,12.83,13.5,12,13.5z M17,13.5c-0.83,0-1.5-0.67-1.5-1.5 c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5C18.5,12.83,17.83,13.5,17,13.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M7,13.5c-0.83,0-1.5-0.67-1.5-1.5 c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5C8.5,12.83,7.83,13.5,7,13.5z M12,13.5c-0.83,0-1.5-0.67-1.5-1.5 c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5C13.5,12.83,12.83,13.5,12,13.5z M17,13.5c-0.83,0-1.5-0.67-1.5-1.5 c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5C18.5,12.83,17.83,13.5,17,13.5z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_pending = ic_pending; \ No newline at end of file diff --git a/dist/md/ic_pending_actions.js b/dist/md/ic_pending_actions.js new file mode 100644 index 000000000..cf80356c7 --- /dev/null +++ b/dist/md/ic_pending_actions.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_pending_actions = void 0; +var ic_pending_actions = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M17,12c-2.76,0-5,2.24-5,5s2.24,5,5,5c2.76,0,5-2.24,5-5S19.76,12,17,12z M18.65,19.35l-2.15-2.15V14h1v2.79l1.85,1.85 L18.65,19.35z M18,3h-3.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H6C4.9,3,4,3.9,4,5v15c0,1.1,0.9,2,2,2h6.11 c-0.59-0.57-1.07-1.25-1.42-2H6V5h2v3h8V5h2v5.08c0.71,0.1,1.38,0.31,2,0.6V5C20,3.9,19.1,3,18,3z M12,5c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1C13,4.55,12.55,5,12,5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,12c-2.76,0-5,2.24-5,5s2.24,5,5,5c2.76,0,5-2.24,5-5S19.76,12,17,12z M18.65,19.35l-2.15-2.15V14h1v2.79l1.85,1.85 L18.65,19.35z M18,3h-3.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H6C4.9,3,4,3.9,4,5v15c0,1.1,0.9,2,2,2h6.11 c-0.59-0.57-1.07-1.25-1.42-2H6V5h2v3h8V5h2v5.08c0.71,0.1,1.38,0.31,2,0.6V5C20,3.9,19.1,3,18,3z M12,5c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1C13,4.55,12.55,5,12,5z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_pending_actions = ic_pending_actions; \ No newline at end of file diff --git a/dist/md/ic_pending_actions_outline.js b/dist/md/ic_pending_actions_outline.js new file mode 100644 index 000000000..9615b2cd0 --- /dev/null +++ b/dist/md/ic_pending_actions_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_pending_actions_outline = void 0; +var ic_pending_actions_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M17,12c-2.76,0-5,2.24-5,5s2.24,5,5,5c2.76,0,5-2.24,5-5S19.76,12,17,12z M18.65,19.35l-2.15-2.15V14h1v2.79l1.85,1.85 L18.65,19.35z M18,3h-3.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H6C4.9,3,4,3.9,4,5v15c0,1.1,0.9,2,2,2h6.11 c-0.59-0.57-1.07-1.25-1.42-2H6V5h2v3h8V5h2v5.08c0.71,0.1,1.38,0.31,2,0.6V5C20,3.9,19.1,3,18,3z M12,5c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1C13,4.55,12.55,5,12,5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,12c-2.76,0-5,2.24-5,5s2.24,5,5,5c2.76,0,5-2.24,5-5S19.76,12,17,12z M18.65,19.35l-2.15-2.15V14h1v2.79l1.85,1.85 L18.65,19.35z M18,3h-3.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H6C4.9,3,4,3.9,4,5v15c0,1.1,0.9,2,2,2h6.11 c-0.59-0.57-1.07-1.25-1.42-2H6V5h2v3h8V5h2v5.08c0.71,0.1,1.38,0.31,2,0.6V5C20,3.9,19.1,3,18,3z M12,5c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1C13,4.55,12.55,5,12,5z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_pending_actions_outline = ic_pending_actions_outline; \ No newline at end of file diff --git a/dist/md/ic_pending_actions_twotone.js b/dist/md/ic_pending_actions_twotone.js new file mode 100644 index 000000000..09879ef7c --- /dev/null +++ b/dist/md/ic_pending_actions_twotone.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_pending_actions_twotone = void 0; +var ic_pending_actions_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M18.65,19.35l-2.15-2.15V14h1v2.79l1.85,1.85L18.65,19.35z M17,10c0.34,0,0.67,0.03,1,0.08V5h-2v3H8V5H6v15 h4.68C10.25,19.09,10,18.08,10,17C10,13.13,13.13,10,17,10z M12,5c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1 C13,4.55,12.55,5,12,5z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18.65,19.35l-2.15-2.15V14h1v2.79l1.85,1.85L18.65,19.35z M17,10c0.34,0,0.67,0.03,1,0.08V5h-2v3H8V5H6v15 h4.68C10.25,19.09,10,18.08,10,17C10,13.13,13.13,10,17,10z M12,5c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1 C13,4.55,12.55,5,12,5z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M17,12c-2.76,0-5,2.24-5,5s2.24,5,5,5c2.76,0,5-2.24,5-5S19.76,12,17,12z M18.65,19.35l-2.15-2.15V14h1v2.79l1.85,1.85 L18.65,19.35z M18,3h-3.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H6C4.9,3,4,3.9,4,5v15c0,1.1,0.9,2,2,2h6.11 c-0.59-0.57-1.07-1.25-1.42-2H6V5h2v3h8V5h2v5.08c0.71,0.1,1.38,0.31,2,0.6V5C20,3.9,19.1,3,18,3z M12,5c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1C13,4.55,12.55,5,12,5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,12c-2.76,0-5,2.24-5,5s2.24,5,5,5c2.76,0,5-2.24,5-5S19.76,12,17,12z M18.65,19.35l-2.15-2.15V14h1v2.79l1.85,1.85 L18.65,19.35z M18,3h-3.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H6C4.9,3,4,3.9,4,5v15c0,1.1,0.9,2,2,2h6.11 c-0.59-0.57-1.07-1.25-1.42-2H6V5h2v3h8V5h2v5.08c0.71,0.1,1.38,0.31,2,0.6V5C20,3.9,19.1,3,18,3z M12,5c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1C13,4.55,12.55,5,12,5z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_pending_actions_twotone = ic_pending_actions_twotone; \ No newline at end of file diff --git a/dist/md/ic_pending_outline.js b/dist/md/ic_pending_outline.js new file mode 100644 index 000000000..f4f323d8f --- /dev/null +++ b/dist/md/ic_pending_outline.js @@ -0,0 +1,103 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_pending_outline = void 0; +var ic_pending_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,20c-4.42,0-8-3.58-8-8 c0-4.42,3.58-8,8-8s8,3.58,8,8C20,16.42,16.42,20,12,20z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,20c-4.42,0-8-3.58-8-8 c0-4.42,3.58-8,8-8s8,3.58,8,8C20,16.42,16.42,20,12,20z" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "7", + "cy": "12", + "r": "1.5" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "7", + "cy": "12", + "r": "1.5" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "1.5" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "1.5" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "17", + "cy": "12", + "r": "1.5" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "17", + "cy": "12", + "r": "1.5" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_pending_outline = ic_pending_outline; \ No newline at end of file diff --git a/dist/md/ic_pending_twotone.js b/dist/md/ic_pending_twotone.js new file mode 100644 index 000000000..1bae0f34f --- /dev/null +++ b/dist/md/ic_pending_twotone.js @@ -0,0 +1,117 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_pending_twotone = void 0; +var ic_pending_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,4c-4.42,0-8,3.58-8,8c0,4.42,3.58,8,8,8s8-3.58,8-8C20,7.58,16.42,4,12,4z M7,13.5 c-0.83,0-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5C8.5,12.83,7.83,13.5,7,13.5z M12,13.5 c-0.83,0-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5C13.5,12.83,12.83,13.5,12,13.5z M17,13.5 c-0.83,0-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5C18.5,12.83,17.83,13.5,17,13.5z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,4c-4.42,0-8,3.58-8,8c0,4.42,3.58,8,8,8s8-3.58,8-8C20,7.58,16.42,4,12,4z M7,13.5 c-0.83,0-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5C8.5,12.83,7.83,13.5,7,13.5z M12,13.5 c-0.83,0-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5C13.5,12.83,12.83,13.5,12,13.5z M17,13.5 c-0.83,0-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5C18.5,12.83,17.83,13.5,17,13.5z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,20c-4.42,0-8-3.58-8-8 c0-4.42,3.58-8,8-8s8,3.58,8,8C20,16.42,16.42,20,12,20z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,20c-4.42,0-8-3.58-8-8 c0-4.42,3.58-8,8-8s8,3.58,8,8C20,16.42,16.42,20,12,20z" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "7", + "cy": "12", + "r": "1.5" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "7", + "cy": "12", + "r": "1.5" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "1.5" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "1.5" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "17", + "cy": "12", + "r": "1.5" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "17", + "cy": "12", + "r": "1.5" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_pending_twotone = ic_pending_twotone; \ No newline at end of file diff --git a/dist/md/ic_people.js b/dist/md/ic_people.js new file mode 100644 index 000000000..92ea359fa --- /dev/null +++ b/dist/md/ic_people.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_people = void 0; +var ic_people = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5c-1.66 0-3 1.34-3 3s1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5C6.34 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V19h14v-2.5c0-2.33-4.67-3.5-7-3.5zm8 0c-.29 0-.62.02-.97.05 1.16.84 1.97 1.97 1.97 3.45V19h6v-2.5c0-2.33-4.67-3.5-7-3.5z" + }, + "children": [] + }] +}; +exports.ic_people = ic_people; \ No newline at end of file diff --git a/dist/md/ic_people_alt.js b/dist/md/ic_people_alt.js new file mode 100644 index 000000000..385dbd755 --- /dev/null +++ b/dist/md/ic_people_alt.js @@ -0,0 +1,143 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_people_alt = void 0; +var ic_people_alt = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M16.67,13.13C18.04,14.06,19,15.32,19,17v3h4v-3 C23,14.82,19.43,13.53,16.67,13.13z", + "fill-rule": "evenodd" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M16.67,13.13C18.04,14.06,19,15.32,19,17v3h4v-3 C23,14.82,19.43,13.53,16.67,13.13z", + "fill-rule": "evenodd" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "cx": "9", + "cy": "8", + "fill-rule": "evenodd", + "r": "4" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "9", + "cy": "8", + "fill-rule": "evenodd", + "r": "4" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M15,12c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4c-0.47,0-0.91,0.1-1.33,0.24 C14.5,5.27,15,6.58,15,8s-0.5,2.73-1.33,3.76C14.09,11.9,14.53,12,15,12z", + "fill-rule": "evenodd" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15,12c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4c-0.47,0-0.91,0.1-1.33,0.24 C14.5,5.27,15,6.58,15,8s-0.5,2.73-1.33,3.76C14.09,11.9,14.53,12,15,12z", + "fill-rule": "evenodd" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M9,13c-2.67,0-8,1.34-8,4v3h16v-3C17,14.34,11.67,13,9,13z", + "fill-rule": "evenodd" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M9,13c-2.67,0-8,1.34-8,4v3h16v-3C17,14.34,11.67,13,9,13z", + "fill-rule": "evenodd" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_people_alt = ic_people_alt; \ No newline at end of file diff --git a/dist/md/ic_people_alt_outline.js b/dist/md/ic_people_alt_outline.js new file mode 100644 index 000000000..128d9c3dc --- /dev/null +++ b/dist/md/ic_people_alt_outline.js @@ -0,0 +1,99 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_people_alt_outline = void 0; +var ic_people_alt_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M16.67,13.13C18.04,14.06,19,15.32,19,17v3h4v-3C23,14.82,19.43,13.53,16.67,13.13z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M16.67,13.13C18.04,14.06,19,15.32,19,17v3h4v-3C23,14.82,19.43,13.53,16.67,13.13z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M15,12c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4c-0.47,0-0.91,0.1-1.33,0.24C14.5,5.27,15,6.58,15,8s-0.5,2.73-1.33,3.76 C14.09,11.9,14.53,12,15,12z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15,12c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4c-0.47,0-0.91,0.1-1.33,0.24C14.5,5.27,15,6.58,15,8s-0.5,2.73-1.33,3.76 C14.09,11.9,14.53,12,15,12z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M9,12c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4S5,5.79,5,8C5,10.21,6.79,12,9,12z M9,6c1.1,0,2,0.9,2,2c0,1.1-0.9,2-2,2 S7,9.1,7,8C7,6.9,7.9,6,9,6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M9,12c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4S5,5.79,5,8C5,10.21,6.79,12,9,12z M9,6c1.1,0,2,0.9,2,2c0,1.1-0.9,2-2,2 S7,9.1,7,8C7,6.9,7.9,6,9,6z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M9,13c-2.67,0-8,1.34-8,4v3h16v-3C17,14.34,11.67,13,9,13z M15,18H3l0-0.99C3.2,16.29,6.3,15,9,15s5.8,1.29,6,2V18z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M9,13c-2.67,0-8,1.34-8,4v3h16v-3C17,14.34,11.67,13,9,13z M15,18H3l0-0.99C3.2,16.29,6.3,15,9,15s5.8,1.29,6,2V18z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_people_alt_outline = ic_people_alt_outline; \ No newline at end of file diff --git a/dist/md/ic_people_alt_twotone.js b/dist/md/ic_people_alt_twotone.js new file mode 100644 index 000000000..ed3fa7ad1 --- /dev/null +++ b/dist/md/ic_people_alt_twotone.js @@ -0,0 +1,131 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_people_alt_twotone = void 0; +var ic_people_alt_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "cx": "9", + "cy": "8", + "opacity": ".3", + "r": "2" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "9", + "cy": "8", + "opacity": ".3", + "r": "2" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M9,15c-2.7,0-5.8,1.29-6,2.01L3,18h12v-1C14.8,16.29,11.7,15,9,15z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M9,15c-2.7,0-5.8,1.29-6,2.01L3,18h12v-1C14.8,16.29,11.7,15,9,15z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M16.67,13.13C18.04,14.06,19,15.32,19,17v3h4v-3C23,14.82,19.43,13.53,16.67,13.13z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M16.67,13.13C18.04,14.06,19,15.32,19,17v3h4v-3C23,14.82,19.43,13.53,16.67,13.13z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M15,12c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4c-0.47,0-0.91,0.1-1.33,0.24C14.5,5.27,15,6.58,15,8s-0.5,2.73-1.33,3.76 C14.09,11.9,14.53,12,15,12z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15,12c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4c-0.47,0-0.91,0.1-1.33,0.24C14.5,5.27,15,6.58,15,8s-0.5,2.73-1.33,3.76 C14.09,11.9,14.53,12,15,12z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M9,12c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4S5,5.79,5,8C5,10.21,6.79,12,9,12z M9,6c1.1,0,2,0.9,2,2c0,1.1-0.9,2-2,2 S7,9.1,7,8C7,6.9,7.9,6,9,6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M9,12c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4S5,5.79,5,8C5,10.21,6.79,12,9,12z M9,6c1.1,0,2,0.9,2,2c0,1.1-0.9,2-2,2 S7,9.1,7,8C7,6.9,7.9,6,9,6z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M9,13c-2.67,0-8,1.34-8,4v3h16v-3C17,14.34,11.67,13,9,13z M15,18H3l0-0.99C3.2,16.29,6.3,15,9,15s5.8,1.29,6,2V18z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M9,13c-2.67,0-8,1.34-8,4v3h16v-3C17,14.34,11.67,13,9,13z M15,18H3l0-0.99C3.2,16.29,6.3,15,9,15s5.8,1.29,6,2V18z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_people_alt_twotone = ic_people_alt_twotone; \ No newline at end of file diff --git a/dist/md/ic_people_outline.js b/dist/md/ic_people_outline.js new file mode 100644 index 000000000..2da2febe0 --- /dev/null +++ b/dist/md/ic_people_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_people_outline = void 0; +var ic_people_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 13.75c-2.34 0-7 1.17-7 3.5V19h14v-1.75c0-2.33-4.66-3.5-7-3.5zM4.34 17c.84-.58 2.87-1.25 4.66-1.25s3.82.67 4.66 1.25H4.34zM9 12c1.93 0 3.5-1.57 3.5-3.5S10.93 5 9 5 5.5 6.57 5.5 8.5 7.07 12 9 12zm0-5c.83 0 1.5.67 1.5 1.5S9.83 10 9 10s-1.5-.67-1.5-1.5S8.17 7 9 7zm7.04 6.81c1.16.84 1.96 1.96 1.96 3.44V19h4v-1.75c0-2.02-3.5-3.17-5.96-3.44zM15 12c1.93 0 3.5-1.57 3.5-3.5S16.93 5 15 5c-.54 0-1.04.13-1.5.35.63.89 1 1.98 1 3.15s-.37 2.26-1 3.15c.46.22.96.35 1.5.35z" + }, + "children": [] + }] +}; +exports.ic_people_outline = ic_people_outline; \ No newline at end of file diff --git a/dist/md/ic_people_outline_outline.js b/dist/md/ic_people_outline_outline.js new file mode 100644 index 000000000..f1af78551 --- /dev/null +++ b/dist/md/ic_people_outline_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_people_outline_outline = void 0; +var ic_people_outline_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 13.75c-2.34 0-7 1.17-7 3.5V19h14v-1.75c0-2.33-4.66-3.5-7-3.5zM4.34 17c.84-.58 2.87-1.25 4.66-1.25s3.82.67 4.66 1.25H4.34zM9 12c1.93 0 3.5-1.57 3.5-3.5S10.93 5 9 5 5.5 6.57 5.5 8.5 7.07 12 9 12zm0-5c.83 0 1.5.67 1.5 1.5S9.83 10 9 10s-1.5-.67-1.5-1.5S8.17 7 9 7zm7.04 6.81c1.16.84 1.96 1.96 1.96 3.44V19h4v-1.75c0-2.02-3.5-3.17-5.96-3.44zM15 12c1.93 0 3.5-1.57 3.5-3.5S16.93 5 15 5c-.54 0-1.04.13-1.5.35.63.89 1 1.98 1 3.15s-.37 2.26-1 3.15c.46.22.96.35 1.5.35z" + }, + "children": [] + }] +}; +exports.ic_people_outline_outline = ic_people_outline_outline; \ No newline at end of file diff --git a/dist/md/ic_people_outline_twotone.js b/dist/md/ic_people_outline_twotone.js new file mode 100644 index 000000000..5fae99d0b --- /dev/null +++ b/dist/md/ic_people_outline_twotone.js @@ -0,0 +1,40 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_people_outline_twotone = void 0; +var ic_people_outline_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "9", + "cy": "8.5", + "opacity": ".3", + "r": "1.5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4.34 17h9.32c-.84-.58-2.87-1.25-4.66-1.25s-3.82.67-4.66 1.25z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 12c1.93 0 3.5-1.57 3.5-3.5S10.93 5 9 5 5.5 6.57 5.5 8.5 7.07 12 9 12zm0-5c.83 0 1.5.67 1.5 1.5S9.83 10 9 10s-1.5-.67-1.5-1.5S8.17 7 9 7zm0 6.75c-2.34 0-7 1.17-7 3.5V19h14v-1.75c0-2.33-4.66-3.5-7-3.5zM4.34 17c.84-.58 2.87-1.25 4.66-1.25s3.82.67 4.66 1.25H4.34zm11.7-3.19c1.16.84 1.96 1.96 1.96 3.44V19h4v-1.75c0-2.02-3.5-3.17-5.96-3.44zM15 12c1.93 0 3.5-1.57 3.5-3.5S16.93 5 15 5c-.54 0-1.04.13-1.5.35.63.89 1 1.98 1 3.15s-.37 2.26-1 3.15c.46.22.96.35 1.5.35z" + }, + "children": [] + }] +}; +exports.ic_people_outline_twotone = ic_people_outline_twotone; \ No newline at end of file diff --git a/dist/md/ic_people_twotone.js b/dist/md/ic_people_twotone.js new file mode 100644 index 000000000..523acf208 --- /dev/null +++ b/dist/md/ic_people_twotone.js @@ -0,0 +1,40 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_people_twotone = void 0; +var ic_people_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "9", + "cy": "8.5", + "opacity": ".3", + "r": "1.5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4.34 17h9.32c-.84-.58-2.87-1.25-4.66-1.25s-3.82.67-4.66 1.25z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 12c1.93 0 3.5-1.57 3.5-3.5S10.93 5 9 5 5.5 6.57 5.5 8.5 7.07 12 9 12zm0-5c.83 0 1.5.67 1.5 1.5S9.83 10 9 10s-1.5-.67-1.5-1.5S8.17 7 9 7zm0 6.75c-2.34 0-7 1.17-7 3.5V19h14v-1.75c0-2.33-4.66-3.5-7-3.5zM4.34 17c.84-.58 2.87-1.25 4.66-1.25s3.82.67 4.66 1.25H4.34zm11.7-3.19c1.16.84 1.96 1.96 1.96 3.44V19h4v-1.75c0-2.02-3.5-3.17-5.96-3.44zM15 12c1.93 0 3.5-1.57 3.5-3.5S16.93 5 15 5c-.54 0-1.04.13-1.5.35.63.89 1 1.98 1 3.15s-.37 2.26-1 3.15c.46.22.96.35 1.5.35z" + }, + "children": [] + }] +}; +exports.ic_people_twotone = ic_people_twotone; \ No newline at end of file diff --git a/dist/md/ic_perm_camera_mic.js b/dist/md/ic_perm_camera_mic.js new file mode 100644 index 000000000..664b5dbf7 --- /dev/null +++ b/dist/md/ic_perm_camera_mic.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_perm_camera_mic = void 0; +var ic_perm_camera_mic = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 5h-3.17L15 3H9L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7v-2.09c-2.83-.48-5-2.94-5-5.91h2c0 2.21 1.79 4 4 4s4-1.79 4-4h2c0 2.97-2.17 5.43-5 5.91V21h7c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-6 8c0 1.1-.9 2-2 2s-2-.9-2-2V9c0-1.1.9-2 2-2s2 .9 2 2v4z" + }, + "children": [] + }] +}; +exports.ic_perm_camera_mic = ic_perm_camera_mic; \ No newline at end of file diff --git a/dist/md/ic_perm_camera_mic_outline.js b/dist/md/ic_perm_camera_mic_outline.js new file mode 100644 index 000000000..343c4617e --- /dev/null +++ b/dist/md/ic_perm_camera_mic_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_perm_camera_mic_outline = void 0; +var ic_perm_camera_mic_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 6c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2s2-.9 2-2V8c0-1.1-.9-2-2-2zm8-1h-3.17l-1.86-2H8.96L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 14h-7v-1.09c2.83-.48 5-2.94 5-5.91h-2c0 2.21-1.79 4-4 4s-4-1.79-4-4H6c0 2.97 2.17 5.43 5 5.91V19H4V7h4.21l.59-.65L10.04 5h4.24l1.24 1.35.59.65H20v12z" + }, + "children": [] + }] +}; +exports.ic_perm_camera_mic_outline = ic_perm_camera_mic_outline; \ No newline at end of file diff --git a/dist/md/ic_perm_camera_mic_twotone.js b/dist/md/ic_perm_camera_mic_twotone.js new file mode 100644 index 000000000..4b6addb40 --- /dev/null +++ b/dist/md/ic_perm_camera_mic_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_perm_camera_mic_twotone = void 0; +var ic_perm_camera_mic_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16.11 7l-.59-.65L14.28 5h-4.24L8.81 6.35l-.6.65H4v12h7v-1.09c-2.83-.48-5-2.94-5-5.91h2c0 2.21 1.79 4 4 4s4-1.79 4-4h2c0 2.97-2.17 5.43-5 5.91V19h7V7h-3.89zM14 12c0 1.1-.9 2-2 2s-2-.9-2-2V8c0-1.1.9-2 2-2s2 .9 2 2v4z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 6c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2s2-.9 2-2V8c0-1.1-.9-2-2-2zm8-1h-3.17l-1.86-2H8.96L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 14h-7v-1.09c2.83-.48 5-2.94 5-5.91h-2c0 2.21-1.79 4-4 4s-4-1.79-4-4H6c0 2.97 2.17 5.43 5 5.91V19H4V7h4.21l.59-.65L10.04 5h4.24l1.24 1.35.59.65H20v12z" + }, + "children": [] + }] +}; +exports.ic_perm_camera_mic_twotone = ic_perm_camera_mic_twotone; \ No newline at end of file diff --git a/dist/md/ic_perm_contact_calendar.js b/dist/md/ic_perm_contact_calendar.js new file mode 100644 index 000000000..625cecfaa --- /dev/null +++ b/dist/md/ic_perm_contact_calendar.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_perm_contact_calendar = void 0; +var ic_perm_contact_calendar = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 3c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm6 12H6v-1c0-2 4-3.1 6-3.1s6 1.1 6 3.1v1z" + }, + "children": [] + }] +}; +exports.ic_perm_contact_calendar = ic_perm_contact_calendar; \ No newline at end of file diff --git a/dist/md/ic_perm_contact_calendar_outline.js b/dist/md/ic_perm_contact_calendar_outline.js new file mode 100644 index 000000000..a88adb0e6 --- /dev/null +++ b/dist/md/ic_perm_contact_calendar_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_perm_contact_calendar_outline = void 0; +var ic_perm_contact_calendar_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20.84 4.22c-.05-.12-.11-.23-.18-.34-.14-.21-.33-.4-.54-.54-.11-.07-.22-.13-.34-.18-.24-.1-.5-.16-.78-.16h-1V1h-2v2H8V1H6v2H5c-.42 0-.8.13-1.12.34-.21.14-.4.33-.54.54-.07.11-.13.22-.18.34-.1.24-.16.5-.16.78v14c0 1.1.89 2 2 2h14c.28 0 .54-.06.78-.16.12-.05.23-.11.34-.18.21-.14.4-.33.54-.54.21-.32.34-.71.34-1.12V5c0-.28-.06-.54-.16-.78zM5 19V5h14v14H5zm7-6.12c-2.03 0-6 1.08-6 3.58V18h12v-1.53c0-2.51-3.97-3.59-6-3.59zM8.31 16c.69-.56 2.38-1.12 3.69-1.12s3.01.56 3.69 1.12H8.31zM12 12c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z" + }, + "children": [] + }] +}; +exports.ic_perm_contact_calendar_outline = ic_perm_contact_calendar_outline; \ No newline at end of file diff --git a/dist/md/ic_perm_contact_calendar_twotone.js b/dist/md/ic_perm_contact_calendar_twotone.js new file mode 100644 index 000000000..f7f6f635e --- /dev/null +++ b/dist/md/ic_perm_contact_calendar_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_perm_contact_calendar_twotone = void 0; +var ic_perm_contact_calendar_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 5H5v14h14V5h-3zm-4 1c1.65 0 3 1.35 3 3s-1.35 3-3 3-3-1.35-3-3 1.35-3 3-3zm6 12H6v-1.53c0-2.5 3.97-3.58 6-3.58s6 1.08 6 3.58V18z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20.84 4.22c-.05-.12-.11-.23-.18-.34-.14-.21-.33-.4-.54-.54-.11-.07-.22-.13-.34-.18-.24-.1-.5-.16-.78-.16h-1V1h-2v2H8V1H6v2H5c-.42 0-.8.13-1.12.34-.21.14-.4.33-.54.54-.07.11-.13.22-.18.34-.1.24-.16.5-.16.78v14c0 1.1.89 2 2 2h14c.28 0 .54-.06.78-.16.12-.05.23-.11.34-.18.21-.14.4-.33.54-.54.21-.32.34-.71.34-1.12V5c0-.28-.06-.54-.16-.78zM19 19H5V5h14v14zm-7-6.12c-2.03 0-6 1.08-6 3.58V18h12v-1.53c0-2.51-3.97-3.59-6-3.59zM8.31 16c.69-.56 2.38-1.12 3.69-1.12s3.01.56 3.69 1.12H8.31zM12 12c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z" + }, + "children": [] + }] +}; +exports.ic_perm_contact_calendar_twotone = ic_perm_contact_calendar_twotone; \ No newline at end of file diff --git a/dist/md/ic_perm_data_setting.js b/dist/md/ic_perm_data_setting.js new file mode 100644 index 000000000..4c99801db --- /dev/null +++ b/dist/md/ic_perm_data_setting.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_perm_data_setting = void 0; +var ic_perm_data_setting = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18.99 11.5c.34 0 .67.03 1 .07L20 0 0 20h11.56c-.04-.33-.07-.66-.07-1 0-4.14 3.36-7.5 7.5-7.5zm3.71 7.99c.02-.16.04-.32.04-.49 0-.17-.01-.33-.04-.49l1.06-.83c.09-.08.12-.21.06-.32l-1-1.73c-.06-.11-.19-.15-.31-.11l-1.24.5c-.26-.2-.54-.37-.85-.49l-.19-1.32c-.01-.12-.12-.21-.24-.21h-2c-.12 0-.23.09-.25.21l-.19 1.32c-.3.13-.59.29-.85.49l-1.24-.5c-.11-.04-.24 0-.31.11l-1 1.73c-.06.11-.04.24.06.32l1.06.83c-.02.16-.03.32-.03.49 0 .17.01.33.03.49l-1.06.83c-.09.08-.12.21-.06.32l1 1.73c.06.11.19.15.31.11l1.24-.5c.26.2.54.37.85.49l.19 1.32c.02.12.12.21.25.21h2c.12 0 .23-.09.25-.21l.19-1.32c.3-.13.59-.29.84-.49l1.25.5c.11.04.24 0 .31-.11l1-1.73c.06-.11.03-.24-.06-.32l-1.07-.83zm-3.71 1.01c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" + }, + "children": [] + }] +}; +exports.ic_perm_data_setting = ic_perm_data_setting; \ No newline at end of file diff --git a/dist/md/ic_perm_data_setting_outline.js b/dist/md/ic_perm_data_setting_outline.js new file mode 100644 index 000000000..137c3f809 --- /dev/null +++ b/dist/md/ic_perm_data_setting_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_perm_data_setting_outline = void 0; +var ic_perm_data_setting_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17.99 11.57H20V0L0 20h11.56v-2H4.83L17.99 4.83v6.74zm5.78 8.75l-1.07-.83c.02-.16.04-.32.04-.49 0-.17-.01-.33-.04-.49l1.06-.83c.09-.08.12-.21.06-.32l-1-1.73c-.06-.11-.19-.15-.31-.11l-1.24.5c-.26-.2-.54-.37-.85-.49l-.19-1.32c-.01-.12-.12-.21-.24-.21h-2c-.12 0-.23.09-.25.21l-.19 1.32c-.3.13-.59.29-.85.49l-1.24-.5c-.11-.04-.24 0-.31.11l-1 1.73c-.06.11-.04.24.06.32l1.06.83c-.02.16-.03.32-.03.49 0 .17.01.33.03.49l-1.06.83c-.09.08-.12.21-.06.32l1 1.73c.06.11.19.15.31.11l1.24-.5c.26.2.54.37.85.49l.19 1.32c.02.12.12.21.25.21h2c.12 0 .23-.09.25-.21l.19-1.32c.3-.13.59-.29.84-.49l1.25.5c.11.04.24 0 .31-.11l1-1.73c.06-.11.03-.24-.06-.32zm-4.78.18c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" + }, + "children": [] + }] +}; +exports.ic_perm_data_setting_outline = ic_perm_data_setting_outline; \ No newline at end of file diff --git a/dist/md/ic_perm_data_setting_twotone.js b/dist/md/ic_perm_data_setting_twotone.js new file mode 100644 index 000000000..ff813f722 --- /dev/null +++ b/dist/md/ic_perm_data_setting_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_perm_data_setting_twotone = void 0; +var ic_perm_data_setting_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17.99 11.57H20V0L0 20h11.56v-2H4.83L17.99 4.83v6.74zm5.78 8.75l-1.07-.83c.02-.16.04-.32.04-.49 0-.17-.01-.33-.04-.49l1.06-.83c.09-.08.12-.21.06-.32l-1-1.73c-.06-.11-.19-.15-.31-.11l-1.24.5c-.26-.2-.54-.37-.85-.49l-.19-1.32c-.01-.12-.12-.21-.24-.21h-2c-.12 0-.23.09-.25.21l-.19 1.32c-.3.13-.59.29-.85.49l-1.24-.5c-.11-.04-.24 0-.31.11l-1 1.73c-.06.11-.04.24.06.32l1.06.83c-.02.16-.03.32-.03.49 0 .17.01.33.03.49l-1.06.83c-.09.08-.12.21-.06.32l1 1.73c.06.11.19.15.31.11l1.24-.5c.26.2.54.37.85.49l.19 1.32c.02.12.12.21.25.21h2c.12 0 .23-.09.25-.21l.19-1.32c.3-.13.59-.29.84-.49l1.25.5c.11.04.24 0 .31-.11l1-1.73c.06-.11.03-.24-.06-.32zm-4.78.18c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" + }, + "children": [] + }] +}; +exports.ic_perm_data_setting_twotone = ic_perm_data_setting_twotone; \ No newline at end of file diff --git a/dist/md/ic_perm_device_information.js b/dist/md/ic_perm_device_information.js new file mode 100644 index 000000000..855b751bd --- /dev/null +++ b/dist/md/ic_perm_device_information.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_perm_device_information = void 0; +var ic_perm_device_information = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 7h-2v2h2V7zm0 4h-2v6h2v-6zm4-9.99L7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z" + }, + "children": [] + }] +}; +exports.ic_perm_device_information = ic_perm_device_information; \ No newline at end of file diff --git a/dist/md/ic_perm_device_information_outline.js b/dist/md/ic_perm_device_information_outline.js new file mode 100644 index 000000000..95c81ce6f --- /dev/null +++ b/dist/md/ic_perm_device_information_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_perm_device_information_outline = void 0; +var ic_perm_device_information_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 7h2v2h-2zm0 4h2v6h-2zm6-9.99L7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 21H7v-1h10v1zm0-3H7V6h10v12zM7 4V3h10v1H7z" + }, + "children": [] + }] +}; +exports.ic_perm_device_information_outline = ic_perm_device_information_outline; \ No newline at end of file diff --git a/dist/md/ic_perm_device_information_twotone.js b/dist/md/ic_perm_device_information_twotone.js new file mode 100644 index 000000000..801b6cd04 --- /dev/null +++ b/dist/md/ic_perm_device_information_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_perm_device_information_twotone = void 0; +var ic_perm_device_information_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 20h10v1H7zM7 3h10v1H7z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 7h2v2h-2zm0 4h2v6h-2zm6-9.99L7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 21H7v-1h10v1zm0-3H7V6h10v12zm0-14H7V3h10v1z" + }, + "children": [] + }] +}; +exports.ic_perm_device_information_twotone = ic_perm_device_information_twotone; \ No newline at end of file diff --git a/dist/md/ic_perm_identity.js b/dist/md/ic_perm_identity.js new file mode 100644 index 000000000..379cf9f17 --- /dev/null +++ b/dist/md/ic_perm_identity.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_perm_identity = void 0; +var ic_perm_identity = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 5.9c1.16 0 2.1.94 2.1 2.1s-.94 2.1-2.1 2.1S9.9 9.16 9.9 8s.94-2.1 2.1-2.1m0 9c2.97 0 6.1 1.46 6.1 2.1v1.1H5.9V17c0-.64 3.13-2.1 6.1-2.1M12 4C9.79 4 8 5.79 8 8s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 9c-2.67 0-8 1.34-8 4v3h16v-3c0-2.66-5.33-4-8-4z" + }, + "children": [] + }] +}; +exports.ic_perm_identity = ic_perm_identity; \ No newline at end of file diff --git a/dist/md/ic_perm_identity_outline.js b/dist/md/ic_perm_identity_outline.js new file mode 100644 index 000000000..b1d3b34e1 --- /dev/null +++ b/dist/md/ic_perm_identity_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_perm_identity_outline = void 0; +var ic_perm_identity_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0 9c2.7 0 5.8 1.29 6 2v1H6v-.99c.2-.72 3.3-2.01 6-2.01m0-11C9.79 4 8 5.79 8 8s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 9c-2.67 0-8 1.34-8 4v3h16v-3c0-2.66-5.33-4-8-4z" + }, + "children": [] + }] +}; +exports.ic_perm_identity_outline = ic_perm_identity_outline; \ No newline at end of file diff --git a/dist/md/ic_perm_identity_twotone.js b/dist/md/ic_perm_identity_twotone.js new file mode 100644 index 000000000..c354916b6 --- /dev/null +++ b/dist/md/ic_perm_identity_twotone.js @@ -0,0 +1,40 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_perm_identity_twotone = void 0; +var ic_perm_identity_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "8", + "opacity": ".3", + "r": "2" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 15c-2.7 0-5.8 1.29-6 2.01V18h12v-1c-.2-.71-3.3-2-6-2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm0 7c-2.67 0-8 1.34-8 4v3h16v-3c0-2.66-5.33-4-8-4zm6 5H6v-.99c.2-.72 3.3-2.01 6-2.01s5.8 1.29 6 2v1z" + }, + "children": [] + }] +}; +exports.ic_perm_identity_twotone = ic_perm_identity_twotone; \ No newline at end of file diff --git a/dist/md/ic_perm_media.js b/dist/md/ic_perm_media.js new file mode 100644 index 000000000..7f7764738 --- /dev/null +++ b/dist/md/ic_perm_media.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_perm_media = void 0; +var ic_perm_media = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M2 6H0v5h.01L0 20c0 1.1.9 2 2 2h18v-2H2V6zm20-2h-8l-2-2H6c-1.1 0-1.99.9-1.99 2L4 16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM7 15l4.5-6 3.5 4.51 2.5-3.01L21 15H7z" + }, + "children": [] + }] +}; +exports.ic_perm_media = ic_perm_media; \ No newline at end of file diff --git a/dist/md/ic_perm_media_outline.js b/dist/md/ic_perm_media_outline.js new file mode 100644 index 000000000..8c7eb7e6e --- /dev/null +++ b/dist/md/ic_perm_media_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_perm_media_outline = void 0; +var ic_perm_media_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M2 6H0v5h.01L0 20c0 1.1.9 2 2 2h18v-2H2V6zm5 9h14l-3.5-4.5-2.5 3.01L11.5 9zM22 4h-8l-2-2H6c-1.1 0-1.99.9-1.99 2L4 16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 12H6V4h5.17l1.41 1.41.59.59H22v10z" + }, + "children": [] + }] +}; +exports.ic_perm_media_outline = ic_perm_media_outline; \ No newline at end of file diff --git a/dist/md/ic_perm_media_twotone.js b/dist/md/ic_perm_media_twotone.js new file mode 100644 index 000000000..d64a497ec --- /dev/null +++ b/dist/md/ic_perm_media_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_perm_media_twotone = void 0; +var ic_perm_media_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13.17 6l-.59-.59L11.17 4H6v12h16V6h-8.83zm4.33 4.5L21 15H7l4.5-6 3.5 4.51 2.5-3.01z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M2 6H0v5h.01L0 20c0 1.1.9 2 2 2h18v-2H2V6zm5 9h14l-3.5-4.5-2.5 3.01L11.5 9zM22 4h-8l-2-2H6c-1.1 0-1.99.9-1.99 2L4 16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 12H6V4h5.17l1.41 1.41.59.59H22v10z" + }, + "children": [] + }] +}; +exports.ic_perm_media_twotone = ic_perm_media_twotone; \ No newline at end of file diff --git a/dist/md/ic_perm_phone_msg.js b/dist/md/ic_perm_phone_msg.js new file mode 100644 index 000000000..e43ad5028 --- /dev/null +++ b/dist/md/ic_perm_phone_msg.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_perm_phone_msg = void 0; +var ic_perm_phone_msg = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 15.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.58l2.2-2.21c.28-.27.36-.66.25-1.01C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM12 3v10l3-3h6V3h-9z" + }, + "children": [] + }] +}; +exports.ic_perm_phone_msg = ic_perm_phone_msg; \ No newline at end of file diff --git a/dist/md/ic_perm_phone_msg_outline.js b/dist/md/ic_perm_phone_msg_outline.js new file mode 100644 index 000000000..071c3ab86 --- /dev/null +++ b/dist/md/ic_perm_phone_msg_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_perm_phone_msg_outline = void 0; +var ic_perm_phone_msg_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 15.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.58l2.2-2.21c.28-.27.36-.66.25-1.01C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.46 2.59L5.79 8.8c-.41-1.21-.67-2.48-.76-3.8zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM12 3v10l3-3h6V3h-9zm7 5h-5V5h5v3z" + }, + "children": [] + }] +}; +exports.ic_perm_phone_msg_outline = ic_perm_phone_msg_outline; \ No newline at end of file diff --git a/dist/md/ic_perm_phone_msg_twotone.js b/dist/md/ic_perm_phone_msg_twotone.js new file mode 100644 index 000000000..05af4f31f --- /dev/null +++ b/dist/md/ic_perm_phone_msg_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_perm_phone_msg_twotone = void 0; +var ic_perm_phone_msg_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.2 18.21c1.21.41 2.48.67 3.8.76v-1.5c-.88-.07-1.75-.22-2.6-.45l-1.2 1.19zM6.54 5h-1.5c.09 1.32.35 2.59.75 3.79l1.2-1.21c-.24-.83-.39-1.7-.45-2.58zM14 8h5V5h-5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 15.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.58l2.2-2.21c.28-.27.36-.66.25-1.01C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.46 2.59L5.79 8.8c-.41-1.21-.67-2.48-.76-3.8zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM12 3v10l3-3h6V3h-9zm7 5h-5V5h5v3z" + }, + "children": [] + }] +}; +exports.ic_perm_phone_msg_twotone = ic_perm_phone_msg_twotone; \ No newline at end of file diff --git a/dist/md/ic_perm_scan_wifi.js b/dist/md/ic_perm_scan_wifi.js new file mode 100644 index 000000000..19237b103 --- /dev/null +++ b/dist/md/ic_perm_scan_wifi.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_perm_scan_wifi = void 0; +var ic_perm_scan_wifi = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 3C6.95 3 3.15 4.85 0 7.23L12 22 24 7.25C20.85 4.87 17.05 3 12 3zm1 13h-2v-6h2v6zm-2-8V6h2v2h-2z" + }, + "children": [] + }] +}; +exports.ic_perm_scan_wifi = ic_perm_scan_wifi; \ No newline at end of file diff --git a/dist/md/ic_perm_scan_wifi_outline.js b/dist/md/ic_perm_scan_wifi_outline.js new file mode 100644 index 000000000..9c61803ac --- /dev/null +++ b/dist/md/ic_perm_scan_wifi_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_perm_scan_wifi_outline = void 0; +var ic_perm_scan_wifi_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 3C6.95 3 3.15 4.85 0 7.23L12 22 24 7.25C20.85 4.87 17.05 3 12 3zM2.92 7.65C5.8 5.85 8.74 5 12 5c3.25 0 6.18.85 9.08 2.67L12 18.83 2.92 7.65zM11 10h2v6h-2zm0-4h2v2h-2z" + }, + "children": [] + }] +}; +exports.ic_perm_scan_wifi_outline = ic_perm_scan_wifi_outline; \ No newline at end of file diff --git a/dist/md/ic_perm_scan_wifi_twotone.js b/dist/md/ic_perm_scan_wifi_twotone.js new file mode 100644 index 000000000..895d4d8c4 --- /dev/null +++ b/dist/md/ic_perm_scan_wifi_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_perm_scan_wifi_twotone = void 0; +var ic_perm_scan_wifi_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 5c-3.26 0-6.2.85-9.08 2.65L12 18.83l9.08-11.16C18.18 5.85 15.25 5 12 5zm1 11h-2v-6h2v6zm-2-8V6h2v2h-2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 3C6.95 3 3.15 4.85 0 7.23L12 22 24 7.25C20.85 4.87 17.05 3 12 3zM2.92 7.65C5.8 5.85 8.74 5 12 5c3.25 0 6.18.85 9.08 2.67L12 18.83 2.92 7.65zM11 10h2v6h-2zm0-4h2v2h-2z" + }, + "children": [] + }] +}; +exports.ic_perm_scan_wifi_twotone = ic_perm_scan_wifi_twotone; \ No newline at end of file diff --git a/dist/md/ic_person.js b/dist/md/ic_person.js new file mode 100644 index 000000000..7a7f54d6c --- /dev/null +++ b/dist/md/ic_person.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_person = void 0; +var ic_person = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z" + }, + "children": [] + }] +}; +exports.ic_person = ic_person; \ No newline at end of file diff --git a/dist/md/ic_person_add.js b/dist/md/ic_person_add.js new file mode 100644 index 000000000..30d8bfef8 --- /dev/null +++ b/dist/md/ic_person_add.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_person_add = void 0; +var ic_person_add = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm-9-2V7H4v3H1v2h3v3h2v-3h3v-2H6zm9 4c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z" + }, + "children": [] + }] +}; +exports.ic_person_add = ic_person_add; \ No newline at end of file diff --git a/dist/md/ic_person_add_alt.js b/dist/md/ic_person_add_alt.js new file mode 100644 index 000000000..2234e5f5f --- /dev/null +++ b/dist/md/ic_person_add_alt.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_person_add_alt = void 0; +var ic_person_add_alt = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M13,8c0-2.21-1.79-4-4-4S5,5.79,5,8s1.79,4,4,4S13,10.21,13,8z M11,8c0,1.1-0.9,2-2,2S7,9.1,7,8s0.9-2,2-2S11,6.9,11,8z M1,18v2h16v-2c0-2.66-5.33-4-8-4S1,15.34,1,18z M3,18c0.2-0.71,3.3-2,6-2c2.69,0,5.78,1.28,6,2H3z M20,15v-3h3v-2h-3V7h-2v3h-3v2 h3v3H20z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M13,8c0-2.21-1.79-4-4-4S5,5.79,5,8s1.79,4,4,4S13,10.21,13,8z M11,8c0,1.1-0.9,2-2,2S7,9.1,7,8s0.9-2,2-2S11,6.9,11,8z M1,18v2h16v-2c0-2.66-5.33-4-8-4S1,15.34,1,18z M3,18c0.2-0.71,3.3-2,6-2c2.69,0,5.78,1.28,6,2H3z M20,15v-3h3v-2h-3V7h-2v3h-3v2 h3v3H20z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_person_add_alt = ic_person_add_alt; \ No newline at end of file diff --git a/dist/md/ic_person_add_alt_1.js b/dist/md/ic_person_add_alt_1.js new file mode 100644 index 000000000..d0cad05db --- /dev/null +++ b/dist/md/ic_person_add_alt_1.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_person_add_alt_1 = void 0; +var ic_person_add_alt_1 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M13,8c0-2.21-1.79-4-4-4S5,5.79,5,8s1.79,4,4,4S13,10.21,13,8z M15,10v2h3v3h2v-3h3v-2h-3V7h-2v3H15z M1,18v2h16v-2 c0-2.66-5.33-4-8-4S1,15.34,1,18z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M13,8c0-2.21-1.79-4-4-4S5,5.79,5,8s1.79,4,4,4S13,10.21,13,8z M15,10v2h3v3h2v-3h3v-2h-3V7h-2v3H15z M1,18v2h16v-2 c0-2.66-5.33-4-8-4S1,15.34,1,18z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_person_add_alt_1 = ic_person_add_alt_1; \ No newline at end of file diff --git a/dist/md/ic_person_add_alt_1_outline.js b/dist/md/ic_person_add_alt_1_outline.js new file mode 100644 index 000000000..f8c38abf6 --- /dev/null +++ b/dist/md/ic_person_add_alt_1_outline.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_person_add_alt_1_outline = void 0; +var ic_person_add_alt_1_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M13,8c0-2.21-1.79-4-4-4S5,5.79,5,8s1.79,4,4,4S13,10.21,13,8z M11,8c0,1.1-0.9,2-2,2S7,9.1,7,8s0.9-2,2-2S11,6.9,11,8z M1,18v2h16v-2c0-2.66-5.33-4-8-4S1,15.34,1,18z M3,18c0.2-0.71,3.3-2,6-2c2.69,0,5.78,1.28,6,2H3z M20,15v-3h3v-2h-3V7h-2v3h-3v2 h3v3H20z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M13,8c0-2.21-1.79-4-4-4S5,5.79,5,8s1.79,4,4,4S13,10.21,13,8z M11,8c0,1.1-0.9,2-2,2S7,9.1,7,8s0.9-2,2-2S11,6.9,11,8z M1,18v2h16v-2c0-2.66-5.33-4-8-4S1,15.34,1,18z M3,18c0.2-0.71,3.3-2,6-2c2.69,0,5.78,1.28,6,2H3z M20,15v-3h3v-2h-3V7h-2v3h-3v2 h3v3H20z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_person_add_alt_1_outline = ic_person_add_alt_1_outline; \ No newline at end of file diff --git a/dist/md/ic_person_add_alt_1_twotone.js b/dist/md/ic_person_add_alt_1_twotone.js new file mode 100644 index 000000000..e575be602 --- /dev/null +++ b/dist/md/ic_person_add_alt_1_twotone.js @@ -0,0 +1,111 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_person_add_alt_1_twotone = void 0; +var ic_person_add_alt_1_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "cx": "9", + "cy": "8", + "opacity": ".3", + "r": "2" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "9", + "cy": "8", + "opacity": ".3", + "r": "2" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M9,16c-2.7,0-5.8,1.29-6,2h12C14.78,17.28,11.69,16,9,16z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M9,16c-2.7,0-5.8,1.29-6,2h12C14.78,17.28,11.69,16,9,16z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M9,14c-2.67,0-8,1.34-8,4v2h16v-2C17,15.34,11.67,14,9,14z M3,18c0.2-0.71,3.3-2,6-2c2.69,0,5.78,1.28,6,2H3z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M9,14c-2.67,0-8,1.34-8,4v2h16v-2C17,15.34,11.67,14,9,14z M3,18c0.2-0.71,3.3-2,6-2c2.69,0,5.78,1.28,6,2H3z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "20,10 20,7 18,7 18,10 15,10 15,12 18,12 18,15 20,15 20,12 23,12 23,10" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "20,10 20,7 18,7 18,10 15,10 15,12 18,12 18,15 20,15 20,12 23,12 23,10" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M9,12c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4S5,5.79,5,8C5,10.21,6.79,12,9,12z M9,6c1.1,0,2,0.9,2,2c0,1.1-0.9,2-2,2 S7,9.1,7,8C7,6.9,7.9,6,9,6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M9,12c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4S5,5.79,5,8C5,10.21,6.79,12,9,12z M9,6c1.1,0,2,0.9,2,2c0,1.1-0.9,2-2,2 S7,9.1,7,8C7,6.9,7.9,6,9,6z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_person_add_alt_1_twotone = ic_person_add_alt_1_twotone; \ No newline at end of file diff --git a/dist/md/ic_person_add_disabled.js b/dist/md/ic_person_add_disabled.js new file mode 100644 index 000000000..f1a21a772 --- /dev/null +++ b/dist/md/ic_person_add_disabled.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_person_add_disabled = void 0; +var ic_person_add_disabled = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "15", + "cy": "8", + "r": "4" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M23 20v-2c0-2.3-4.1-3.7-6.9-3.9l6 5.9h.9zm-11.6-5.5C9.2 15.1 7 16.3 7 18v2h9.9l4 4 1.3-1.3-21-20.9L0 3.1l4 4V10H1v2h3v3h2v-3h2.9l2.5 2.5zM6 10v-.9l.9.9H6z" + }, + "children": [] + }] +}; +exports.ic_person_add_disabled = ic_person_add_disabled; \ No newline at end of file diff --git a/dist/md/ic_person_add_disabled_outline.js b/dist/md/ic_person_add_disabled_outline.js new file mode 100644 index 000000000..7f2b9033b --- /dev/null +++ b/dist/md/ic_person_add_disabled_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_person_add_disabled_outline = void 0; +var ic_person_add_disabled_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 6c1.1 0 2 .9 2 2 0 .99-.73 1.82-1.67 1.97l-2.31-2.31C13.19 6.72 14.01 6 15 6m0-2c-2.21 0-4 1.79-4 4 0 .18.03.35.05.52l3.43 3.43c.17.02.34.05.52.05 2.21 0 4-1.79 4-4s-1.79-4-4-4zm1.69 10.16L22.53 20H23v-2c0-2.14-3.56-3.5-6.31-3.84zm-3.68 1.97L14.88 18H9c.08-.24.88-1.01 2.91-1.57l1.1-.3M1.41 1.71L0 3.12l4 4V10H1v2h3v3h2v-3h2.88l2.51 2.51C9.19 15.11 7 16.3 7 18v2h9.88l4 4 1.41-1.41L1.41 1.71zM6 10v-.88l.88.88H6z" + }, + "children": [] + }] +}; +exports.ic_person_add_disabled_outline = ic_person_add_disabled_outline; \ No newline at end of file diff --git a/dist/md/ic_person_add_disabled_twotone.js b/dist/md/ic_person_add_disabled_twotone.js new file mode 100644 index 000000000..9c0d9c323 --- /dev/null +++ b/dist/md/ic_person_add_disabled_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_person_add_disabled_twotone = void 0; +var ic_person_add_disabled_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 18h5.87L13 16.13l-1.1.3C9.89 16.99 9.08 17.76 9 18zm8-10c0-1.1-.9-2-2-2-.99 0-1.81.72-1.97 1.67l2.31 2.31C16.27 9.82 17 8.99 17 8z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14.48 11.95c.17.02.34.05.52.05 2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4c0 .18.03.35.05.52l3.43 3.43zM15 6c1.1 0 2 .9 2 2 0 .99-.73 1.82-1.67 1.97l-2.31-2.31C13.19 6.72 14.01 6 15 6zm1.69 8.16L22.53 20H23v-2c0-2.14-3.56-3.5-6.31-3.84zM0 3.12l4 4V10H1v2h3v3h2v-3h2.88l2.51 2.51C9.19 15.11 7 16.3 7 18v2h9.88l4 4 1.41-1.41L1.41 1.71 0 3.12zm13.01 13.01L14.88 18H9c.08-.24.88-1.01 2.91-1.57l1.1-.3zM6 9.12l.88.88H6v-.88z" + }, + "children": [] + }] +}; +exports.ic_person_add_disabled_twotone = ic_person_add_disabled_twotone; \ No newline at end of file diff --git a/dist/md/ic_person_add_outline.js b/dist/md/ic_person_add_outline.js new file mode 100644 index 000000000..8f3332ca7 --- /dev/null +++ b/dist/md/ic_person_add_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_person_add_outline = void 0; +var ic_person_add_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm0 8c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4zm-6 4c.22-.72 3.31-2 6-2 2.7 0 5.8 1.29 6 2H9zm-3-3v-3h3v-2H6V7H4v3H1v2h3v3z" + }, + "children": [] + }] +}; +exports.ic_person_add_outline = ic_person_add_outline; \ No newline at end of file diff --git a/dist/md/ic_person_add_twotone.js b/dist/md/ic_person_add_twotone.js new file mode 100644 index 000000000..adb459b89 --- /dev/null +++ b/dist/md/ic_person_add_twotone.js @@ -0,0 +1,40 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_person_add_twotone = void 0; +var ic_person_add_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 16c-2.69 0-5.77 1.28-6 2h12c-.2-.71-3.3-2-6-2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "15", + "cy": "8", + "opacity": ".3", + "r": "2" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm0 8c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4zm-6 4c.22-.72 3.31-2 6-2 2.7 0 5.8 1.29 6 2H9zm-3-3v-3h3v-2H6V7H4v3H1v2h3v3z" + }, + "children": [] + }] +}; +exports.ic_person_add_twotone = ic_person_add_twotone; \ No newline at end of file diff --git a/dist/md/ic_person_outline.js b/dist/md/ic_person_outline.js new file mode 100644 index 000000000..64ad5117a --- /dev/null +++ b/dist/md/ic_person_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_person_outline = void 0; +var ic_person_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0 10c2.7 0 5.8 1.29 6 2H6c.23-.72 3.31-2 6-2m0-12C9.79 4 8 5.79 8 8s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 10c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z" + }, + "children": [] + }] +}; +exports.ic_person_outline = ic_person_outline; \ No newline at end of file diff --git a/dist/md/ic_person_outline_outline.js b/dist/md/ic_person_outline_outline.js new file mode 100644 index 000000000..01cd2e8ff --- /dev/null +++ b/dist/md/ic_person_outline_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_person_outline_outline = void 0; +var ic_person_outline_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 5.9c1.16 0 2.1.94 2.1 2.1s-.94 2.1-2.1 2.1S9.9 9.16 9.9 8s.94-2.1 2.1-2.1m0 9c2.97 0 6.1 1.46 6.1 2.1v1.1H5.9V17c0-.64 3.13-2.1 6.1-2.1M12 4C9.79 4 8 5.79 8 8s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 9c-2.67 0-8 1.34-8 4v3h16v-3c0-2.66-5.33-4-8-4z" + }, + "children": [] + }] +}; +exports.ic_person_outline_outline = ic_person_outline_outline; \ No newline at end of file diff --git a/dist/md/ic_person_outline_twotone.js b/dist/md/ic_person_outline_twotone.js new file mode 100644 index 000000000..a6914b5a5 --- /dev/null +++ b/dist/md/ic_person_outline_twotone.js @@ -0,0 +1,40 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_person_outline_twotone = void 0; +var ic_person_outline_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "8", + "opacity": ".3", + "r": "2.1" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 14.9c-2.97 0-6.1 1.46-6.1 2.1v1.1h12.2V17c0-.64-3.13-2.1-6.1-2.1z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 13c-2.67 0-8 1.34-8 4v3h16v-3c0-2.66-5.33-4-8-4zm6.1 5.1H5.9V17c0-.64 3.13-2.1 6.1-2.1s6.1 1.46 6.1 2.1v1.1zM12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6.1c1.16 0 2.1.94 2.1 2.1 0 1.16-.94 2.1-2.1 2.1S9.9 9.16 9.9 8c0-1.16.94-2.1 2.1-2.1z" + }, + "children": [] + }] +}; +exports.ic_person_outline_twotone = ic_person_outline_twotone; \ No newline at end of file diff --git a/dist/md/ic_person_pin.js b/dist/md/ic_person_pin.js new file mode 100644 index 000000000..2c02fea6b --- /dev/null +++ b/dist/md/ic_person_pin.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_person_pin = void 0; +var ic_person_pin = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2c-4.97 0-9 4.03-9 9 0 4.17 2.84 7.67 6.69 8.69L12 22l2.31-2.31C18.16 18.67 21 15.17 21 11c0-4.97-4.03-9-9-9zm0 2c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm0 14.3c-2.5 0-4.71-1.28-6-3.22.03-1.99 4-3.08 6-3.08 1.99 0 5.97 1.09 6 3.08-1.29 1.94-3.5 3.22-6 3.22z" + }, + "children": [] + }] +}; +exports.ic_person_pin = ic_person_pin; \ No newline at end of file diff --git a/dist/md/ic_person_pin_circle.js b/dist/md/ic_person_pin_circle.js new file mode 100644 index 000000000..aa6c3f619 --- /dev/null +++ b/dist/md/ic_person_pin_circle.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_person_pin_circle = void 0; +var ic_person_pin_circle = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,2C8.14,2,5,5.14,5,9c0,5.25,7,13,7,13s7-7.75,7-13C19,5.14,15.86,2,12,2z M12,4c1.1,0,2,0.9,2,2c0,1.11-0.9,2-2,2 s-2-0.89-2-2C10,4.9,10.9,4,12,4z M12,14c-1.67,0-3.14-0.85-4-2.15c0.02-1.32,2.67-2.05,4-2.05s3.98,0.73,4,2.05 C15.14,13.15,13.67,14,12,14z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,2C8.14,2,5,5.14,5,9c0,5.25,7,13,7,13s7-7.75,7-13C19,5.14,15.86,2,12,2z M12,4c1.1,0,2,0.9,2,2c0,1.11-0.9,2-2,2 s-2-0.89-2-2C10,4.9,10.9,4,12,4z M12,14c-1.67,0-3.14-0.85-4-2.15c0.02-1.32,2.67-2.05,4-2.05s3.98,0.73,4,2.05 C15.14,13.15,13.67,14,12,14z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_person_pin_circle = ic_person_pin_circle; \ No newline at end of file diff --git a/dist/md/ic_person_pin_circle_outline.js b/dist/md/ic_person_pin_circle_outline.js new file mode 100644 index 000000000..839b4f0ea --- /dev/null +++ b/dist/md/ic_person_pin_circle_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_person_pin_circle_outline = void 0; +var ic_person_pin_circle_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 11c1.33 0 4 .67 4 2v.16c-.97 1.12-2.4 1.84-4 1.84s-3.03-.72-4-1.84V13c0-1.33 2.67-2 4-2zm0-1c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm6 .2C18 6.57 15.35 4 12 4s-6 2.57-6 6.2c0 2.34 1.95 5.44 6 9.14 4.05-3.7 6-6.8 6-9.14zM12 2c4.2 0 8 3.22 8 8.2 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8C4 5.22 7.8 2 12 2z" + }, + "children": [] + }] +}; +exports.ic_person_pin_circle_outline = ic_person_pin_circle_outline; \ No newline at end of file diff --git a/dist/md/ic_person_pin_circle_twotone.js b/dist/md/ic_person_pin_circle_twotone.js new file mode 100644 index 000000000..0e58a1c34 --- /dev/null +++ b/dist/md/ic_person_pin_circle_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_person_pin_circle_twotone = void 0; +var ic_person_pin_circle_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0,0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18.5,10.2c0,2.57-2.1,5.79-6.16,9.51L12,20.01l-0.34-0.31C7.6,15.99,5.5,12.77,5.5,10.2 c0-3.84,2.82-6.7,6.5-6.7S18.5,6.35,18.5,10.2z", + "fill-opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12,11c1.33,0,4,0.67,4,2v0.16C15.03,14.28,13.6,15,12,15s-3.03-0.72-4-1.84V13C8,11.67,10.67,11,12,11z M12,10 c-1.1,0-2-0.9-2-2s0.9-2,2-2s2,0.9,2,2S13.1,10,12,10z M18,10.2C18,6.57,15.35,4,12,4s-6,2.57-6,6.2c0,2.34,1.95,5.44,6,9.14 C16.05,15.64,18,12.54,18,10.2z M12,2c4.2,0,8,3.22,8,8.2c0,3.32-2.67,7.25-8,11.8c-5.33-4.55-8-8.48-8-11.8C4,5.22,7.8,2,12,2z" + }, + "children": [] + }] +}; +exports.ic_person_pin_circle_twotone = ic_person_pin_circle_twotone; \ No newline at end of file diff --git a/dist/md/ic_person_pin_outline.js b/dist/md/ic_person_pin_outline.js new file mode 100644 index 000000000..0d4fadfb1 --- /dev/null +++ b/dist/md/ic_person_pin_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_person_pin_outline = void 0; +var ic_person_pin_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h4l3 3 3-3h4c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 16h-4.83l-.59.59L12 20.17l-1.59-1.59-.58-.58H5V4h14v14zm-7-7c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm6 8.58c0-2.5-3.97-3.58-6-3.58s-6 1.08-6 3.58V17h12v-1.42zM8.48 15c.74-.51 2.23-1 3.52-1s2.78.49 3.52 1H8.48z" + }, + "children": [] + }] +}; +exports.ic_person_pin_outline = ic_person_pin_outline; \ No newline at end of file diff --git a/dist/md/ic_person_pin_twotone.js b/dist/md/ic_person_pin_twotone.js new file mode 100644 index 000000000..f61843ff4 --- /dev/null +++ b/dist/md/ic_person_pin_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_person_pin_twotone = void 0; +var ic_person_pin_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9.83 18l.59.59L12 20.17l1.59-1.59.58-.58H19V4H5v14h4.83zM12 5c1.65 0 3 1.35 3 3s-1.35 3-3 3-3-1.35-3-3 1.35-3 3-3zM6 15.58C6 13.08 9.97 12 12 12s6 1.08 6 3.58V17H6v-1.42z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 20l3 3 3-3h4c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h4zM5 4h14v14h-4.83l-.59.59L12 20.17l-1.59-1.59-.58-.58H5V4zm7 7c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm6 8.58c0-2.5-3.97-3.58-6-3.58s-6 1.08-6 3.58V17h12v-1.42zM8.48 15c.74-.51 2.23-1 3.52-1s2.78.49 3.52 1H8.48z" + }, + "children": [] + }] +}; +exports.ic_person_pin_twotone = ic_person_pin_twotone; \ No newline at end of file diff --git a/dist/md/ic_person_remove.js b/dist/md/ic_person_remove.js new file mode 100644 index 000000000..c9876bb26 --- /dev/null +++ b/dist/md/ic_person_remove.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_person_remove = void 0; +var ic_person_remove = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M14,8c0-2.21-1.79-4-4-4S6,5.79,6,8s1.79,4,4,4S14,10.21,14,8z M17,10v2h6v-2H17z M2,18v2h16v-2c0-2.66-5.33-4-8-4 S2,15.34,2,18z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14,8c0-2.21-1.79-4-4-4S6,5.79,6,8s1.79,4,4,4S14,10.21,14,8z M17,10v2h6v-2H17z M2,18v2h16v-2c0-2.66-5.33-4-8-4 S2,15.34,2,18z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_person_remove = ic_person_remove; \ No newline at end of file diff --git a/dist/md/ic_person_remove_alt_1.js b/dist/md/ic_person_remove_alt_1.js new file mode 100644 index 000000000..52f6e26c6 --- /dev/null +++ b/dist/md/ic_person_remove_alt_1.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_person_remove_alt_1 = void 0; +var ic_person_remove_alt_1 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M14,8c0-2.21-1.79-4-4-4S6,5.79,6,8s1.79,4,4,4S14,10.21,14,8z M17,10v2h6v-2H17z M2,18v2h16v-2c0-2.66-5.33-4-8-4 S2,15.34,2,18z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14,8c0-2.21-1.79-4-4-4S6,5.79,6,8s1.79,4,4,4S14,10.21,14,8z M17,10v2h6v-2H17z M2,18v2h16v-2c0-2.66-5.33-4-8-4 S2,15.34,2,18z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_person_remove_alt_1 = ic_person_remove_alt_1; \ No newline at end of file diff --git a/dist/md/ic_person_remove_alt_1_outline.js b/dist/md/ic_person_remove_alt_1_outline.js new file mode 100644 index 000000000..4d1475f6d --- /dev/null +++ b/dist/md/ic_person_remove_alt_1_outline.js @@ -0,0 +1,85 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_person_remove_alt_1_outline = void 0; +var ic_person_remove_alt_1_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M14,8c0-2.21-1.79-4-4-4C7.79,4,6,5.79,6,8c0,2.21,1.79,4,4,4C12.21,12,14,10.21,14,8z M12,8c0,1.1-0.9,2-2,2 c-1.1,0-2-0.9-2-2s0.9-2,2-2C11.1,6,12,6.9,12,8z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14,8c0-2.21-1.79-4-4-4C7.79,4,6,5.79,6,8c0,2.21,1.79,4,4,4C12.21,12,14,10.21,14,8z M12,8c0,1.1-0.9,2-2,2 c-1.1,0-2-0.9-2-2s0.9-2,2-2C11.1,6,12,6.9,12,8z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M2,18v2h16v-2c0-2.66-5.33-4-8-4C7.33,14,2,15.34,2,18z M4,18c0.2-0.71,3.3-2,6-2c2.69,0,5.77,1.28,6,2H4z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M2,18v2h16v-2c0-2.66-5.33-4-8-4C7.33,14,2,15.34,2,18z M4,18c0.2-0.71,3.3-2,6-2c2.69,0,5.77,1.28,6,2H4z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "6", + "x": "17", + "y": "10" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "6", + "x": "17", + "y": "10" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_person_remove_alt_1_outline = ic_person_remove_alt_1_outline; \ No newline at end of file diff --git a/dist/md/ic_person_remove_alt_1_twotone.js b/dist/md/ic_person_remove_alt_1_twotone.js new file mode 100644 index 000000000..1aed6a3de --- /dev/null +++ b/dist/md/ic_person_remove_alt_1_twotone.js @@ -0,0 +1,117 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_person_remove_alt_1_twotone = void 0; +var ic_person_remove_alt_1_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M10,16c2.69,0,5.77,1.28,6,2H4C4.2,17.29,7.3,16,10,16z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M10,16c2.69,0,5.77,1.28,6,2H4C4.2,17.29,7.3,16,10,16z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "10", + "cy": "8", + "opacity": ".3", + "r": "2" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "10", + "cy": "8", + "opacity": ".3", + "r": "2" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M14,8c0-2.21-1.79-4-4-4C7.79,4,6,5.79,6,8c0,2.21,1.79,4,4,4C12.21,12,14,10.21,14,8z M12,8c0,1.1-0.9,2-2,2 c-1.1,0-2-0.9-2-2s0.9-2,2-2C11.1,6,12,6.9,12,8z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14,8c0-2.21-1.79-4-4-4C7.79,4,6,5.79,6,8c0,2.21,1.79,4,4,4C12.21,12,14,10.21,14,8z M12,8c0,1.1-0.9,2-2,2 c-1.1,0-2-0.9-2-2s0.9-2,2-2C11.1,6,12,6.9,12,8z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M2,18v2h16v-2c0-2.66-5.33-4-8-4C7.33,14,2,15.34,2,18z M4,18c0.2-0.71,3.3-2,6-2c2.69,0,5.77,1.28,6,2H4z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M2,18v2h16v-2c0-2.66-5.33-4-8-4C7.33,14,2,15.34,2,18z M4,18c0.2-0.71,3.3-2,6-2c2.69,0,5.77,1.28,6,2H4z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "6", + "x": "17", + "y": "10" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "6", + "x": "17", + "y": "10" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_person_remove_alt_1_twotone = ic_person_remove_alt_1_twotone; \ No newline at end of file diff --git a/dist/md/ic_person_remove_outline.js b/dist/md/ic_person_remove_outline.js new file mode 100644 index 000000000..ece1b25aa --- /dev/null +++ b/dist/md/ic_person_remove_outline.js @@ -0,0 +1,85 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_person_remove_outline = void 0; +var ic_person_remove_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M14,8c0-2.21-1.79-4-4-4C7.79,4,6,5.79,6,8c0,2.21,1.79,4,4,4C12.21,12,14,10.21,14,8z M12,8c0,1.1-0.9,2-2,2 c-1.1,0-2-0.9-2-2s0.9-2,2-2C11.1,6,12,6.9,12,8z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14,8c0-2.21-1.79-4-4-4C7.79,4,6,5.79,6,8c0,2.21,1.79,4,4,4C12.21,12,14,10.21,14,8z M12,8c0,1.1-0.9,2-2,2 c-1.1,0-2-0.9-2-2s0.9-2,2-2C11.1,6,12,6.9,12,8z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M2,18v2h16v-2c0-2.66-5.33-4-8-4C7.33,14,2,15.34,2,18z M4,18c0.2-0.71,3.3-2,6-2c2.69,0,5.77,1.28,6,2H4z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M2,18v2h16v-2c0-2.66-5.33-4-8-4C7.33,14,2,15.34,2,18z M4,18c0.2-0.71,3.3-2,6-2c2.69,0,5.77,1.28,6,2H4z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "6", + "x": "17", + "y": "10" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "6", + "x": "17", + "y": "10" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_person_remove_outline = ic_person_remove_outline; \ No newline at end of file diff --git a/dist/md/ic_person_remove_twotone.js b/dist/md/ic_person_remove_twotone.js new file mode 100644 index 000000000..566c0941b --- /dev/null +++ b/dist/md/ic_person_remove_twotone.js @@ -0,0 +1,117 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_person_remove_twotone = void 0; +var ic_person_remove_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M10,16c2.69,0,5.77,1.28,6,2H4C4.2,17.29,7.3,16,10,16z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M10,16c2.69,0,5.77,1.28,6,2H4C4.2,17.29,7.3,16,10,16z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "10", + "cy": "8", + "opacity": ".3", + "r": "2" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "10", + "cy": "8", + "opacity": ".3", + "r": "2" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M14,8c0-2.21-1.79-4-4-4C7.79,4,6,5.79,6,8c0,2.21,1.79,4,4,4C12.21,12,14,10.21,14,8z M12,8c0,1.1-0.9,2-2,2 c-1.1,0-2-0.9-2-2s0.9-2,2-2C11.1,6,12,6.9,12,8z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14,8c0-2.21-1.79-4-4-4C7.79,4,6,5.79,6,8c0,2.21,1.79,4,4,4C12.21,12,14,10.21,14,8z M12,8c0,1.1-0.9,2-2,2 c-1.1,0-2-0.9-2-2s0.9-2,2-2C11.1,6,12,6.9,12,8z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M2,18v2h16v-2c0-2.66-5.33-4-8-4C7.33,14,2,15.34,2,18z M4,18c0.2-0.71,3.3-2,6-2c2.69,0,5.77,1.28,6,2H4z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M2,18v2h16v-2c0-2.66-5.33-4-8-4C7.33,14,2,15.34,2,18z M4,18c0.2-0.71,3.3-2,6-2c2.69,0,5.77,1.28,6,2H4z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "6", + "x": "17", + "y": "10" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "6", + "x": "17", + "y": "10" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_person_remove_twotone = ic_person_remove_twotone; \ No newline at end of file diff --git a/dist/md/ic_person_search.js b/dist/md/ic_person_search.js new file mode 100644 index 000000000..bc13d1c91 --- /dev/null +++ b/dist/md/ic_person_search.js @@ -0,0 +1,83 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_person_search = void 0; +var ic_person_search = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "cx": "10", + "cy": "8", + "r": "4" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "10", + "cy": "8", + "r": "4" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M10.35,14.01C7.62,13.91,2,15.27,2,18v2h9.54C9.07,17.24,10.31,14.11,10.35,14.01z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M10.35,14.01C7.62,13.91,2,15.27,2,18v2h9.54C9.07,17.24,10.31,14.11,10.35,14.01z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19.43,18.02C19.79,17.43,20,16.74,20,16c0-2.21-1.79-4-4-4s-4,1.79-4,4c0,2.21,1.79,4,4,4c0.74,0,1.43-0.22,2.02-0.57 L20.59,22L22,20.59L19.43,18.02z M16,18c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2C18,17.1,17.1,18,16,18z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19.43,18.02C19.79,17.43,20,16.74,20,16c0-2.21-1.79-4-4-4s-4,1.79-4,4c0,2.21,1.79,4,4,4c0.74,0,1.43-0.22,2.02-0.57 L20.59,22L22,20.59L19.43,18.02z M16,18c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2C18,17.1,17.1,18,16,18z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_person_search = ic_person_search; \ No newline at end of file diff --git a/dist/md/ic_person_search_outline.js b/dist/md/ic_person_search_outline.js new file mode 100644 index 000000000..ae13143a2 --- /dev/null +++ b/dist/md/ic_person_search_outline.js @@ -0,0 +1,79 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_person_search_outline = void 0; +var ic_person_search_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M10,12c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4S6,5.79,6,8C6,10.21,7.79,12,10,12z M10,6c1.1,0,2,0.9,2,2c0,1.1-0.9,2-2,2 S8,9.1,8,8C8,6.9,8.9,6,10,6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M10,12c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4S6,5.79,6,8C6,10.21,7.79,12,10,12z M10,6c1.1,0,2,0.9,2,2c0,1.1-0.9,2-2,2 S8,9.1,8,8C8,6.9,8.9,6,10,6z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M4,18c0.22-0.72,3.31-2,6-2c0-0.7,0.13-1.37,0.35-1.99C7.62,13.91,2,15.27,2,18v2h9.54c-0.52-0.58-0.93-1.25-1.19-2H4z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M4,18c0.22-0.72,3.31-2,6-2c0-0.7,0.13-1.37,0.35-1.99C7.62,13.91,2,15.27,2,18v2h9.54c-0.52-0.58-0.93-1.25-1.19-2H4z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19.43,18.02C19.79,17.43,20,16.74,20,16c0-2.21-1.79-4-4-4s-4,1.79-4,4c0,2.21,1.79,4,4,4c0.74,0,1.43-0.22,2.02-0.57 c0.93,0.93,1.62,1.62,2.57,2.57L22,20.59C20.5,19.09,21.21,19.79,19.43,18.02z M16,18c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2 C18,17.1,17.1,18,16,18z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19.43,18.02C19.79,17.43,20,16.74,20,16c0-2.21-1.79-4-4-4s-4,1.79-4,4c0,2.21,1.79,4,4,4c0.74,0,1.43-0.22,2.02-0.57 c0.93,0.93,1.62,1.62,2.57,2.57L22,20.59C20.5,19.09,21.21,19.79,19.43,18.02z M16,18c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2 C18,17.1,17.1,18,16,18z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_person_search_outline = ic_person_search_outline; \ No newline at end of file diff --git a/dist/md/ic_person_search_twotone.js b/dist/md/ic_person_search_twotone.js new file mode 100644 index 000000000..efe4f7d70 --- /dev/null +++ b/dist/md/ic_person_search_twotone.js @@ -0,0 +1,139 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_person_search_twotone = void 0; +var ic_person_search_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M4,18c0.22-0.72,3.31-2,6-2c0-0.7,0.13-1.37,0.35-1.99C7.62,13.91,2,15.27,2,18v2h9.54c-0.52-0.58-0.93-1.25-1.19-2H4z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M4,18c0.22-0.72,3.31-2,6-2c0-0.7,0.13-1.37,0.35-1.99C7.62,13.91,2,15.27,2,18v2h9.54c-0.52-0.58-0.93-1.25-1.19-2H4z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M10,13c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4C7.79,5,6,6.79,6,9C6,11.21,7.79,13,10,13z M10,7c1.1,0,2,0.89,2,2 c0,1.1-0.9,2-2,2s-2-0.9-2-2C8,7.89,8.9,7,10,7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M10,13c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4C7.79,5,6,6.79,6,9C6,11.21,7.79,13,10,13z M10,7c1.1,0,2,0.89,2,2 c0,1.1-0.9,2-2,2s-2-0.9-2-2C8,7.89,8.9,7,10,7z" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": { + "opacity": ".3" + }, + "children": [{ + "name": "g", + "attribs": { + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M10.35,18c0,0-0.35-0.79-0.35-2c-2.69,0-5.77,1.28-6,2H10.35z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M10.35,18c0,0-0.35-0.79-0.35-2c-2.69,0-5.77,1.28-6,2H10.35z" + }, + "children": [] + }] + }] + }] + }, { + "name": "path", + "attribs": { + "d": "M19.43,18.02C19.79,17.43,20,16.74,20,16c0-2.21-1.79-4-4-4s-4,1.79-4,4c0,2.21,1.79,4,4,4c0.74,0,1.43-0.22,2.02-0.57 c0.93,0.93,1.62,1.62,2.57,2.57L22,20.59C20.5,19.09,21.21,19.79,19.43,18.02z M16,18c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2 s2,0.9,2,2C18,17.1,17.1,18,16,18z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19.43,18.02C19.79,17.43,20,16.74,20,16c0-2.21-1.79-4-4-4s-4,1.79-4,4c0,2.21,1.79,4,4,4c0.74,0,1.43-0.22,2.02-0.57 c0.93,0.93,1.62,1.62,2.57,2.57L22,20.59C20.5,19.09,21.21,19.79,19.43,18.02z M16,18c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2 s2,0.9,2,2C18,17.1,17.1,18,16,18z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": { + "opacity": ".3" + }, + "children": [{ + "name": "g", + "attribs": { + "opacity": ".3" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "10", + "cy": "9", + "r": "2" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "10", + "cy": "9", + "r": "2" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_person_search_twotone = ic_person_search_twotone; \ No newline at end of file diff --git a/dist/md/ic_person_twotone.js b/dist/md/ic_person_twotone.js new file mode 100644 index 000000000..94ca9cca4 --- /dev/null +++ b/dist/md/ic_person_twotone.js @@ -0,0 +1,40 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_person_twotone = void 0; +var ic_person_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 16c-2.69 0-5.77 1.28-6 2h12c-.2-.71-3.3-2-6-2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "8", + "opacity": ".3", + "r": "2" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 14c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4zm-6 4c.22-.72 3.31-2 6-2 2.7 0 5.8 1.29 6 2H6zm6-6c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2z" + }, + "children": [] + }] +}; +exports.ic_person_twotone = ic_person_twotone; \ No newline at end of file diff --git a/dist/md/ic_personal_video.js b/dist/md/ic_personal_video.js new file mode 100644 index 000000000..82bec61d1 --- /dev/null +++ b/dist/md/ic_personal_video.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_personal_video = void 0; +var ic_personal_video = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 3H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.11-.9-2-2-2zm0 14H3V5h18v12z" + }, + "children": [] + }] +}; +exports.ic_personal_video = ic_personal_video; \ No newline at end of file diff --git a/dist/md/ic_personal_video_outline.js b/dist/md/ic_personal_video_outline.js new file mode 100644 index 000000000..03406c080 --- /dev/null +++ b/dist/md/ic_personal_video_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_personal_video_outline = void 0; +var ic_personal_video_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 3H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.11-.9-2-2-2zm0 14H3V5h18v12z" + }, + "children": [] + }] +}; +exports.ic_personal_video_outline = ic_personal_video_outline; \ No newline at end of file diff --git a/dist/md/ic_personal_video_twotone.js b/dist/md/ic_personal_video_twotone.js new file mode 100644 index 000000000..9800d552f --- /dev/null +++ b/dist/md/ic_personal_video_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_personal_video_twotone = void 0; +var ic_personal_video_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 5h18v12H3z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 3H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.11-.9-2-2-2zm0 14H3V5h18v12z" + }, + "children": [] + }] +}; +exports.ic_personal_video_twotone = ic_personal_video_twotone; \ No newline at end of file diff --git a/dist/md/ic_pest_control.js b/dist/md/ic_pest_control.js new file mode 100644 index 000000000..6f0f3af34 --- /dev/null +++ b/dist/md/ic_pest_control.js @@ -0,0 +1,55 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_pest_control = void 0; +var ic_pest_control = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M21,15v-2h-3.07c-0.05-0.39-0.12-0.77-0.22-1.14l2.58-1.49l-1-1.73L16.92,10c-0.28-0.48-0.62-0.91-0.99-1.29 C15.97,8.48,16,8.25,16,8c0-0.8-0.24-1.55-0.65-2.18L17,4.17l-1.41-1.41l-1.72,1.72c-1.68-0.89-3.1-0.33-3.73,0L8.41,2.76L7,4.17 l1.65,1.65C8.24,6.45,8,7.2,8,8c0,0.25,0.03,0.48,0.07,0.72C7.7,9.1,7.36,9.53,7.08,10L4.71,8.63l-1,1.73l2.58,1.49 c-0.1,0.37-0.17,0.75-0.22,1.14H3v2h3.07c0.05,0.39,0.12,0.77,0.22,1.14l-2.58,1.49l1,1.73L7.08,18c1.08,1.81,2.88,3,4.92,3 s3.84-1.19,4.92-3l2.37,1.37l1-1.73l-2.58-1.49c0.1-0.37,0.17-0.75,0.22-1.14H21z M13,17h-2v-6h2V17z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21,15v-2h-3.07c-0.05-0.39-0.12-0.77-0.22-1.14l2.58-1.49l-1-1.73L16.92,10c-0.28-0.48-0.62-0.91-0.99-1.29 C15.97,8.48,16,8.25,16,8c0-0.8-0.24-1.55-0.65-2.18L17,4.17l-1.41-1.41l-1.72,1.72c-1.68-0.89-3.1-0.33-3.73,0L8.41,2.76L7,4.17 l1.65,1.65C8.24,6.45,8,7.2,8,8c0,0.25,0.03,0.48,0.07,0.72C7.7,9.1,7.36,9.53,7.08,10L4.71,8.63l-1,1.73l2.58,1.49 c-0.1,0.37-0.17,0.75-0.22,1.14H3v2h3.07c0.05,0.39,0.12,0.77,0.22,1.14l-2.58,1.49l1,1.73L7.08,18c1.08,1.81,2.88,3,4.92,3 s3.84-1.19,4.92-3l2.37,1.37l1-1.73l-2.58-1.49c0.1-0.37,0.17-0.75,0.22-1.14H21z M13,17h-2v-6h2V17z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_pest_control = ic_pest_control; \ No newline at end of file diff --git a/dist/md/ic_pest_control_outline.js b/dist/md/ic_pest_control_outline.js new file mode 100644 index 000000000..feaa38ef7 --- /dev/null +++ b/dist/md/ic_pest_control_outline.js @@ -0,0 +1,73 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_pest_control_outline = void 0; +var ic_pest_control_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M21,15v-2h-3.07c-0.05-0.39-0.12-0.77-0.22-1.14l2.58-1.49l-1-1.73L16.92,10c-0.28-0.48-0.62-0.91-0.99-1.29 c0.1-0.56,0.2-1.69-0.58-2.89L17,4.17l-1.41-1.41l-1.72,1.72c-1.68-0.89-3.1-0.33-3.73,0L8.41,2.76L7,4.17l1.65,1.65 c-0.78,1.2-0.68,2.34-0.58,2.89C7.7,9.1,7.36,9.53,7.08,10L4.71,8.63l-1,1.73l2.58,1.49c-0.1,0.37-0.17,0.75-0.22,1.14H3v2h3.07 c0.05,0.39,0.12,0.77,0.22,1.14l-2.58,1.49l1,1.73L7.08,18c1.08,1.81,2.88,3,4.92,3s3.84-1.19,4.92-3l2.37,1.37l1-1.73l-2.58-1.49 c0.1-0.37,0.17-0.75,0.22-1.14H21z M12,6c0.88,0,1.62,0.57,1.88,1.36C13.29,7.13,12.66,7,12,7s-1.29,0.13-1.88,0.36 C10.38,6.57,11.12,6,12,6z M12,19c-2.21,0-4-2.24-4-5s1.79-5,4-5s4,2.24,4,5S14.21,19,12,19z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21,15v-2h-3.07c-0.05-0.39-0.12-0.77-0.22-1.14l2.58-1.49l-1-1.73L16.92,10c-0.28-0.48-0.62-0.91-0.99-1.29 c0.1-0.56,0.2-1.69-0.58-2.89L17,4.17l-1.41-1.41l-1.72,1.72c-1.68-0.89-3.1-0.33-3.73,0L8.41,2.76L7,4.17l1.65,1.65 c-0.78,1.2-0.68,2.34-0.58,2.89C7.7,9.1,7.36,9.53,7.08,10L4.71,8.63l-1,1.73l2.58,1.49c-0.1,0.37-0.17,0.75-0.22,1.14H3v2h3.07 c0.05,0.39,0.12,0.77,0.22,1.14l-2.58,1.49l1,1.73L7.08,18c1.08,1.81,2.88,3,4.92,3s3.84-1.19,4.92-3l2.37,1.37l1-1.73l-2.58-1.49 c0.1-0.37,0.17-0.75,0.22-1.14H21z M12,6c0.88,0,1.62,0.57,1.88,1.36C13.29,7.13,12.66,7,12,7s-1.29,0.13-1.88,0.36 C10.38,6.57,11.12,6,12,6z M12,19c-2.21,0-4-2.24-4-5s1.79-5,4-5s4,2.24,4,5S14.21,19,12,19z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "6", + "width": "2", + "x": "11", + "y": "11" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "6", + "width": "2", + "x": "11", + "y": "11" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_pest_control_outline = ic_pest_control_outline; \ No newline at end of file diff --git a/dist/md/ic_pest_control_rodent.js b/dist/md/ic_pest_control_rodent.js new file mode 100644 index 000000000..4ae1f03d0 --- /dev/null +++ b/dist/md/ic_pest_control_rodent.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_pest_control_rodent = void 0; +var ic_pest_control_rodent = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M21.31,17.38l-2.39-2.13C19.44,12.89,17.56,11,15.5,11c-1.16,0-3.5,0.9-3.5,3.5c0,0.97,0.39,1.84,1.03,2.47l-0.71,0.71 C11.5,16.87,11,15.74,11,14.5c0-1.7,0.96-3.17,2.35-3.93c-0.7-0.36-1.48-0.57-2.28-0.57c-2.38,0-4.37,1.65-4.91,3.87 C4.91,13.5,4,12.36,4,11c0-1.66,1.34-3,3-3c0.94,0,1.56,0,2.5,0C10.88,8,12,6.88,12,5.5C12,4.12,10.88,3,9.5,3H8C7.45,3,7,3.45,7,4 c0,0.55,0.45,1,1,1h1.5C9.78,5,10,5.22,10,5.5C10,5.78,9.78,6,9.5,6C9.47,6,9,6,7,6c-2.76,0-5,2.24-5,5c0,2.42,1.72,4.44,4,4.9 v0.03C6,18.73,8.27,21,11.07,21h8.86C21.8,21,22.74,18.66,21.31,17.38z M18,19c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1 C19,18.55,18.55,19,18,19z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21.31,17.38l-2.39-2.13C19.44,12.89,17.56,11,15.5,11c-1.16,0-3.5,0.9-3.5,3.5c0,0.97,0.39,1.84,1.03,2.47l-0.71,0.71 C11.5,16.87,11,15.74,11,14.5c0-1.7,0.96-3.17,2.35-3.93c-0.7-0.36-1.48-0.57-2.28-0.57c-2.38,0-4.37,1.65-4.91,3.87 C4.91,13.5,4,12.36,4,11c0-1.66,1.34-3,3-3c0.94,0,1.56,0,2.5,0C10.88,8,12,6.88,12,5.5C12,4.12,10.88,3,9.5,3H8C7.45,3,7,3.45,7,4 c0,0.55,0.45,1,1,1h1.5C9.78,5,10,5.22,10,5.5C10,5.78,9.78,6,9.5,6C9.47,6,9,6,7,6c-2.76,0-5,2.24-5,5c0,2.42,1.72,4.44,4,4.9 v0.03C6,18.73,8.27,21,11.07,21h8.86C21.8,21,22.74,18.66,21.31,17.38z M18,19c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1 C19,18.55,18.55,19,18,19z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_pest_control_rodent = ic_pest_control_rodent; \ No newline at end of file diff --git a/dist/md/ic_pest_control_rodent_outline.js b/dist/md/ic_pest_control_rodent_outline.js new file mode 100644 index 000000000..5b14fea12 --- /dev/null +++ b/dist/md/ic_pest_control_rodent_outline.js @@ -0,0 +1,71 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_pest_control_rodent_outline = void 0; +var ic_pest_control_rodent_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "cx": "17", + "cy": "17", + "r": "1" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "17", + "cy": "17", + "r": "1" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20.86,14.97l-0.93-0.84c0.48-3.45-2.87-6.04-6.05-4.82C13.3,9.11,12.66,9,12,9c-4.26,0-5.65,3.58-5.89,4.85 C4.89,13.47,4,12.35,4,11c0-1.66,1.34-3,3-3h2.5C10.88,8,12,6.88,12,5.5C12,4.12,10.88,3,9.5,3H8C7.45,3,7,3.45,7,4 c0,0.55,0.45,1,1,1h1.5C9.78,5,10,5.22,10,5.5C10,5.78,9.78,6,9.5,6H7c-2.76,0-5,2.24-5,5c0,2.44,1.76,4.47,4.07,4.91 C6.51,18.79,8.99,21,12,21h6.53C21.64,21,23.23,17.11,20.86,14.97z M18.53,19H12c-1.21,0-2.34-0.54-3.11-1.48 c-0.78-0.95-1.06-2.16-0.8-3.41c0.31-1.48,1.51-2.69,2.99-3.01c0.22-0.05,0.45-0.06,0.67-0.07C11.28,11.74,11,12.58,11,13.5 c0,1.24,0.5,2.37,1.32,3.18l1.41-1.41C13.28,14.82,13,14.19,13,13.5c0-1.42,1.2-2.5,2.5-2.5c1.38,0,2.5,1.12,2.5,2.5 c0,0.46-0.13,0.88-0.35,1.25l1.87,1.7c0.31,0.28,0.48,0.67,0.48,1.09C20,18.34,19.34,19,18.53,19z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20.86,14.97l-0.93-0.84c0.48-3.45-2.87-6.04-6.05-4.82C13.3,9.11,12.66,9,12,9c-4.26,0-5.65,3.58-5.89,4.85 C4.89,13.47,4,12.35,4,11c0-1.66,1.34-3,3-3h2.5C10.88,8,12,6.88,12,5.5C12,4.12,10.88,3,9.5,3H8C7.45,3,7,3.45,7,4 c0,0.55,0.45,1,1,1h1.5C9.78,5,10,5.22,10,5.5C10,5.78,9.78,6,9.5,6H7c-2.76,0-5,2.24-5,5c0,2.44,1.76,4.47,4.07,4.91 C6.51,18.79,8.99,21,12,21h6.53C21.64,21,23.23,17.11,20.86,14.97z M18.53,19H12c-1.21,0-2.34-0.54-3.11-1.48 c-0.78-0.95-1.06-2.16-0.8-3.41c0.31-1.48,1.51-2.69,2.99-3.01c0.22-0.05,0.45-0.06,0.67-0.07C11.28,11.74,11,12.58,11,13.5 c0,1.24,0.5,2.37,1.32,3.18l1.41-1.41C13.28,14.82,13,14.19,13,13.5c0-1.42,1.2-2.5,2.5-2.5c1.38,0,2.5,1.12,2.5,2.5 c0,0.46-0.13,0.88-0.35,1.25l1.87,1.7c0.31,0.28,0.48,0.67,0.48,1.09C20,18.34,19.34,19,18.53,19z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_pest_control_rodent_outline = ic_pest_control_rodent_outline; \ No newline at end of file diff --git a/dist/md/ic_pest_control_rodent_twotone.js b/dist/md/ic_pest_control_rodent_twotone.js new file mode 100644 index 000000000..46c2045fd --- /dev/null +++ b/dist/md/ic_pest_control_rodent_twotone.js @@ -0,0 +1,85 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_pest_control_rodent_twotone = void 0; +var ic_pest_control_rodent_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M17.65,14.75C17.87,14.38,18,13.96,18,13.5c0-1.38-1.12-2.5-2.5-2.5c-1.3,0-2.5,1.08-2.5,2.5 c0,0.69,0.28,1.32,0.73,1.77l-1.41,1.41C11.5,15.87,11,14.74,11,13.5c0-0.92,0.28-1.76,0.75-2.47c-0.22,0.01-0.44,0.02-0.67,0.07 c-1.48,0.32-2.68,1.53-2.99,3.01c-0.26,1.24,0.02,2.45,0.8,3.41C9.66,18.46,10.79,19,12,19h6.53c0.81,0,1.47-0.66,1.47-1.47 c0-0.41-0.17-0.81-0.48-1.09L17.65,14.75z M17,18c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C18,17.55,17.55,18,17,18z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17.65,14.75C17.87,14.38,18,13.96,18,13.5c0-1.38-1.12-2.5-2.5-2.5c-1.3,0-2.5,1.08-2.5,2.5 c0,0.69,0.28,1.32,0.73,1.77l-1.41,1.41C11.5,15.87,11,14.74,11,13.5c0-0.92,0.28-1.76,0.75-2.47c-0.22,0.01-0.44,0.02-0.67,0.07 c-1.48,0.32-2.68,1.53-2.99,3.01c-0.26,1.24,0.02,2.45,0.8,3.41C9.66,18.46,10.79,19,12,19h6.53c0.81,0,1.47-0.66,1.47-1.47 c0-0.41-0.17-0.81-0.48-1.09L17.65,14.75z M17,18c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C18,17.55,17.55,18,17,18z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "17", + "cy": "17", + "r": "1" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "17", + "cy": "17", + "r": "1" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20.86,14.97l-0.93-0.84c0.48-3.45-2.87-6.04-6.05-4.82C13.3,9.11,12.66,9,12,9c-4.26,0-5.65,3.58-5.89,4.85 C4.89,13.47,4,12.35,4,11c0-1.66,1.34-3,3-3h2.5C10.88,8,12,6.88,12,5.5C12,4.12,10.88,3,9.5,3H8C7.45,3,7,3.45,7,4 c0,0.55,0.45,1,1,1h1.5C9.78,5,10,5.22,10,5.5C10,5.78,9.78,6,9.5,6H7c-2.76,0-5,2.24-5,5c0,2.44,1.76,4.47,4.07,4.91 C6.51,18.79,8.99,21,12,21h6.53C21.64,21,23.23,17.11,20.86,14.97z M18.53,19H12c-1.21,0-2.34-0.54-3.11-1.48 c-0.78-0.95-1.06-2.16-0.8-3.41c0.31-1.48,1.51-2.69,2.99-3.01c0.22-0.05,0.45-0.06,0.67-0.07C11.28,11.74,11,12.58,11,13.5 c0,1.24,0.5,2.37,1.32,3.18l1.41-1.41C13.28,14.82,13,14.19,13,13.5c0-1.42,1.2-2.5,2.5-2.5c1.38,0,2.5,1.12,2.5,2.5 c0,0.46-0.13,0.88-0.35,1.25l1.87,1.7c0.31,0.28,0.48,0.67,0.48,1.09C20,18.34,19.34,19,18.53,19z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20.86,14.97l-0.93-0.84c0.48-3.45-2.87-6.04-6.05-4.82C13.3,9.11,12.66,9,12,9c-4.26,0-5.65,3.58-5.89,4.85 C4.89,13.47,4,12.35,4,11c0-1.66,1.34-3,3-3h2.5C10.88,8,12,6.88,12,5.5C12,4.12,10.88,3,9.5,3H8C7.45,3,7,3.45,7,4 c0,0.55,0.45,1,1,1h1.5C9.78,5,10,5.22,10,5.5C10,5.78,9.78,6,9.5,6H7c-2.76,0-5,2.24-5,5c0,2.44,1.76,4.47,4.07,4.91 C6.51,18.79,8.99,21,12,21h6.53C21.64,21,23.23,17.11,20.86,14.97z M18.53,19H12c-1.21,0-2.34-0.54-3.11-1.48 c-0.78-0.95-1.06-2.16-0.8-3.41c0.31-1.48,1.51-2.69,2.99-3.01c0.22-0.05,0.45-0.06,0.67-0.07C11.28,11.74,11,12.58,11,13.5 c0,1.24,0.5,2.37,1.32,3.18l1.41-1.41C13.28,14.82,13,14.19,13,13.5c0-1.42,1.2-2.5,2.5-2.5c1.38,0,2.5,1.12,2.5,2.5 c0,0.46-0.13,0.88-0.35,1.25l1.87,1.7c0.31,0.28,0.48,0.67,0.48,1.09C20,18.34,19.34,19,18.53,19z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_pest_control_rodent_twotone = ic_pest_control_rodent_twotone; \ No newline at end of file diff --git a/dist/md/ic_pest_control_twotone.js b/dist/md/ic_pest_control_twotone.js new file mode 100644 index 000000000..64d71b216 --- /dev/null +++ b/dist/md/ic_pest_control_twotone.js @@ -0,0 +1,101 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_pest_control_twotone = void 0; +var ic_pest_control_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,9c-2.21,0-4,2.24-4,5s1.79,5,4,5s4-2.24,4-5S14.21,9,12,9z M13,17h-2v-6h2V17z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,9c-2.21,0-4,2.24-4,5s1.79,5,4,5s4-2.24,4-5S14.21,9,12,9z M13,17h-2v-6h2V17z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M13.88,7.36C13.62,6.57,12.88,6,12,6s-1.62,0.57-1.88,1.36C10.71,7.13,11.34,7,12,7S13.29,7.13,13.88,7.36z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M13.88,7.36C13.62,6.57,12.88,6,12,6s-1.62,0.57-1.88,1.36C10.71,7.13,11.34,7,12,7S13.29,7.13,13.88,7.36z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M21,15v-2h-3.07c-0.05-0.39-0.12-0.77-0.22-1.14l2.58-1.49l-1-1.73L16.92,10c-0.28-0.48-0.62-0.91-0.99-1.29 c0.1-0.56,0.2-1.69-0.58-2.89L17,4.17l-1.41-1.41l-1.72,1.72c-1.68-0.89-3.1-0.33-3.73,0L8.41,2.76L7,4.17l1.65,1.65 c-0.78,1.2-0.68,2.34-0.58,2.89C7.7,9.1,7.36,9.53,7.08,10L4.71,8.63l-1,1.73l2.58,1.49c-0.1,0.37-0.17,0.75-0.22,1.14H3v2h3.07 c0.05,0.39,0.12,0.77,0.22,1.14l-2.58,1.49l1,1.73L7.08,18c1.08,1.81,2.88,3,4.92,3s3.84-1.19,4.92-3l2.37,1.37l1-1.73l-2.58-1.49 c0.1-0.37,0.17-0.75,0.22-1.14H21z M12,6c0.88,0,1.62,0.57,1.88,1.36C13.29,7.13,12.66,7,12,7s-1.29,0.13-1.88,0.36 C10.38,6.57,11.12,6,12,6z M12,19c-2.21,0-4-2.24-4-5s1.79-5,4-5s4,2.24,4,5S14.21,19,12,19z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21,15v-2h-3.07c-0.05-0.39-0.12-0.77-0.22-1.14l2.58-1.49l-1-1.73L16.92,10c-0.28-0.48-0.62-0.91-0.99-1.29 c0.1-0.56,0.2-1.69-0.58-2.89L17,4.17l-1.41-1.41l-1.72,1.72c-1.68-0.89-3.1-0.33-3.73,0L8.41,2.76L7,4.17l1.65,1.65 c-0.78,1.2-0.68,2.34-0.58,2.89C7.7,9.1,7.36,9.53,7.08,10L4.71,8.63l-1,1.73l2.58,1.49c-0.1,0.37-0.17,0.75-0.22,1.14H3v2h3.07 c0.05,0.39,0.12,0.77,0.22,1.14l-2.58,1.49l1,1.73L7.08,18c1.08,1.81,2.88,3,4.92,3s3.84-1.19,4.92-3l2.37,1.37l1-1.73l-2.58-1.49 c0.1-0.37,0.17-0.75,0.22-1.14H21z M12,6c0.88,0,1.62,0.57,1.88,1.36C13.29,7.13,12.66,7,12,7s-1.29,0.13-1.88,0.36 C10.38,6.57,11.12,6,12,6z M12,19c-2.21,0-4-2.24-4-5s1.79-5,4-5s4,2.24,4,5S14.21,19,12,19z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "6", + "width": "2", + "x": "11", + "y": "11" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "6", + "width": "2", + "x": "11", + "y": "11" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_pest_control_twotone = ic_pest_control_twotone; \ No newline at end of file diff --git a/dist/md/ic_pets.js b/dist/md/ic_pets.js new file mode 100644 index 000000000..58ecec67e --- /dev/null +++ b/dist/md/ic_pets.js @@ -0,0 +1,56 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_pets = void 0; +var ic_pets = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "4.5", + "cy": "9.5", + "r": "2.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "9", + "cy": "5.5", + "r": "2.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "15", + "cy": "5.5", + "r": "2.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "19.5", + "cy": "9.5", + "r": "2.5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17.34 14.86c-.87-1.02-1.6-1.89-2.48-2.91-.46-.54-1.05-1.08-1.75-1.32-.11-.04-.22-.07-.33-.09-.25-.04-.52-.04-.78-.04s-.53 0-.79.05c-.11.02-.22.05-.33.09-.7.24-1.28.78-1.75 1.32-.87 1.02-1.6 1.89-2.48 2.91-1.31 1.31-2.92 2.76-2.62 4.79.29 1.02 1.02 2.03 2.33 2.32.73.15 3.06-.44 5.54-.44h.18c2.48 0 4.81.58 5.54.44 1.31-.29 2.04-1.31 2.33-2.32.31-2.04-1.3-3.49-2.61-4.8z" + }, + "children": [] + }] +}; +exports.ic_pets = ic_pets; \ No newline at end of file diff --git a/dist/md/ic_pets_outline.js b/dist/md/ic_pets_outline.js new file mode 100644 index 000000000..34dcec674 --- /dev/null +++ b/dist/md/ic_pets_outline.js @@ -0,0 +1,56 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_pets_outline = void 0; +var ic_pets_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "4.5", + "cy": "9.5", + "r": "2.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "9", + "cy": "5.5", + "r": "2.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "15", + "cy": "5.5", + "r": "2.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "19.5", + "cy": "9.5", + "r": "2.5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17.34 14.86c-.87-1.02-1.6-1.89-2.48-2.91-.46-.54-1.05-1.08-1.75-1.32-.11-.04-.22-.07-.33-.09-.25-.04-.52-.04-.78-.04s-.53 0-.79.05c-.11.02-.22.05-.33.09-.7.24-1.28.78-1.75 1.32-.87 1.02-1.6 1.89-2.48 2.91-1.31 1.31-2.92 2.76-2.62 4.79.29 1.02 1.02 2.03 2.33 2.32.73.15 3.06-.44 5.54-.44h.18c2.48 0 4.81.58 5.54.44 1.31-.29 2.04-1.31 2.33-2.32.31-2.04-1.3-3.49-2.61-4.8z" + }, + "children": [] + }] +}; +exports.ic_pets_outline = ic_pets_outline; \ No newline at end of file diff --git a/dist/md/ic_pets_twotone.js b/dist/md/ic_pets_twotone.js new file mode 100644 index 000000000..db2a1ffa3 --- /dev/null +++ b/dist/md/ic_pets_twotone.js @@ -0,0 +1,56 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_pets_twotone = void 0; +var ic_pets_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "4.5", + "cy": "9.5", + "r": "2.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "9", + "cy": "5.5", + "r": "2.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "15", + "cy": "5.5", + "r": "2.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "19.5", + "cy": "9.5", + "r": "2.5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17.34 14.86c-.87-1.02-1.6-1.89-2.48-2.91-.46-.54-1.05-1.08-1.75-1.32-.11-.04-.22-.07-.33-.09-.25-.04-.52-.04-.78-.04s-.53 0-.79.05c-.11.02-.22.05-.33.09-.7.24-1.28.78-1.75 1.32-.87 1.02-1.6 1.89-2.48 2.91-1.31 1.31-2.92 2.76-2.62 4.79.29 1.02 1.02 2.03 2.33 2.32.73.15 3.06-.44 5.54-.44h.18c2.48 0 4.81.58 5.54.44 1.31-.29 2.04-1.31 2.33-2.32.31-2.04-1.3-3.49-2.61-4.8z" + }, + "children": [] + }] +}; +exports.ic_pets_twotone = ic_pets_twotone; \ No newline at end of file diff --git a/dist/md/ic_phone.js b/dist/md/ic_phone.js new file mode 100644 index 000000000..33efbccef --- /dev/null +++ b/dist/md/ic_phone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_phone = void 0; +var ic_phone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z" + }, + "children": [] + }] +}; +exports.ic_phone = ic_phone; \ No newline at end of file diff --git a/dist/md/ic_phone_android.js b/dist/md/ic_phone_android.js new file mode 100644 index 000000000..76aa9d42e --- /dev/null +++ b/dist/md/ic_phone_android.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_phone_android = void 0; +var ic_phone_android = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 1H8C6.34 1 5 2.34 5 4v16c0 1.66 1.34 3 3 3h8c1.66 0 3-1.34 3-3V4c0-1.66-1.34-3-3-3zm-2 20h-4v-1h4v1zm3.25-3H6.75V4h10.5v14z" + }, + "children": [] + }] +}; +exports.ic_phone_android = ic_phone_android; \ No newline at end of file diff --git a/dist/md/ic_phone_android_outline.js b/dist/md/ic_phone_android_outline.js new file mode 100644 index 000000000..713491914 --- /dev/null +++ b/dist/md/ic_phone_android_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_phone_android_outline = void 0; +var ic_phone_android_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 1H8C6.34 1 5 2.34 5 4v16c0 1.66 1.34 3 3 3h8c1.66 0 3-1.34 3-3V4c0-1.66-1.34-3-3-3zm1 17H7V4h10v14zm-3 3h-4v-1h4v1z" + }, + "children": [] + }] +}; +exports.ic_phone_android_outline = ic_phone_android_outline; \ No newline at end of file diff --git a/dist/md/ic_phone_android_twotone.js b/dist/md/ic_phone_android_twotone.js new file mode 100644 index 000000000..c2c9f6440 --- /dev/null +++ b/dist/md/ic_phone_android_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_phone_android_twotone = void 0; +var ic_phone_android_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 4h10v14H7z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 1H8C6.34 1 5 2.34 5 4v16c0 1.66 1.34 3 3 3h8c1.66 0 3-1.34 3-3V4c0-1.66-1.34-3-3-3zm-2 20h-4v-1h4v1zm3-3H7V4h10v14z" + }, + "children": [] + }] +}; +exports.ic_phone_android_twotone = ic_phone_android_twotone; \ No newline at end of file diff --git a/dist/md/ic_phone_bluetooth_speaker.js b/dist/md/ic_phone_bluetooth_speaker.js new file mode 100644 index 000000000..3a7158b62 --- /dev/null +++ b/dist/md/ic_phone_bluetooth_speaker.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_phone_bluetooth_speaker = void 0; +var ic_phone_bluetooth_speaker = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14.71 9.5L17 7.21V11h.5l2.85-2.85L18.21 6l2.15-2.15L17.5 1H17v3.79L14.71 2.5l-.71.71L16.79 6 14 8.79l.71.71zM18 2.91l.94.94-.94.94V2.91zm0 4.3l.94.94-.94.94V7.21zm2 8.29c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1z" + }, + "children": [] + }] +}; +exports.ic_phone_bluetooth_speaker = ic_phone_bluetooth_speaker; \ No newline at end of file diff --git a/dist/md/ic_phone_bluetooth_speaker_outline.js b/dist/md/ic_phone_bluetooth_speaker_outline.js new file mode 100644 index 000000000..c9b9511b2 --- /dev/null +++ b/dist/md/ic_phone_bluetooth_speaker_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_phone_bluetooth_speaker_outline = void 0; +var ic_phone_bluetooth_speaker_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 15.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.45 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM14.71 9.5L17 7.21V11h.5l2.85-2.85L18.21 6l2.15-2.15L17.5 1H17v3.79L14.71 2.5l-.71.71L16.79 6 14 8.79l.71.71zM18 2.91l.94.94-.94.94V2.91zm0 4.3l.94.94-.94.94V7.21z" + }, + "children": [] + }] +}; +exports.ic_phone_bluetooth_speaker_outline = ic_phone_bluetooth_speaker_outline; \ No newline at end of file diff --git a/dist/md/ic_phone_bluetooth_speaker_twotone.js b/dist/md/ic_phone_bluetooth_speaker_twotone.js new file mode 100644 index 000000000..2c741e068 --- /dev/null +++ b/dist/md/ic_phone_bluetooth_speaker_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_phone_bluetooth_speaker_twotone = void 0; +var ic_phone_bluetooth_speaker_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.2 18.21c1.21.41 2.48.67 3.8.76v-1.5c-.88-.07-1.75-.22-2.6-.45l-1.2 1.19zM6.54 5h-1.5c.09 1.32.34 2.58.75 3.79l1.2-1.21c-.24-.83-.39-1.7-.45-2.58z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 15.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.45 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM14.71 9.5L17 7.21V11h.5l2.85-2.85L18.21 6l2.15-2.15L17.5 1H17v3.79L14.71 2.5l-.71.71L16.79 6 14 8.79l.71.71zM18 2.91l.94.94-.94.94V2.91zm0 4.3l.94.94-.94.94V7.21z" + }, + "children": [] + }] +}; +exports.ic_phone_bluetooth_speaker_twotone = ic_phone_bluetooth_speaker_twotone; \ No newline at end of file diff --git a/dist/md/ic_phone_callback.js b/dist/md/ic_phone_callback.js new file mode 100644 index 000000000..5f594396e --- /dev/null +++ b/dist/md/ic_phone_callback.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_phone_callback = void 0; +var ic_phone_callback = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2zm13.54-7.1l-.71-.7L13 9.29V5h-1v6h6v-1h-4.15z" + }, + "children": [] + }] +}; +exports.ic_phone_callback = ic_phone_callback; \ No newline at end of file diff --git a/dist/md/ic_phone_callback_outline.js b/dist/md/ic_phone_callback_outline.js new file mode 100644 index 000000000..3ce8b3c14 --- /dev/null +++ b/dist/md/ic_phone_callback_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_phone_callback_outline = void 0; +var ic_phone_callback_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 15.51c-1.24 0-2.45-.2-3.57-.57-.1-.04-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2c.28-.28.36-.67.25-1.02C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.49c0-.55-.45-1-1-1zM5.03 5h1.5c.07.89.22 1.76.46 2.59l-1.2 1.2c-.41-1.2-.67-2.47-.76-3.79zM19 18.97c-1.32-.09-2.59-.35-3.8-.75l1.19-1.19c.85.24 1.72.39 2.6.45v1.49zM18 9h-2.59l5.02-5.02-1.41-1.41L14 7.59V5h-2v6h6z" + }, + "children": [] + }] +}; +exports.ic_phone_callback_outline = ic_phone_callback_outline; \ No newline at end of file diff --git a/dist/md/ic_phone_callback_twotone.js b/dist/md/ic_phone_callback_twotone.js new file mode 100644 index 000000000..58611d6f5 --- /dev/null +++ b/dist/md/ic_phone_callback_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_phone_callback_twotone = void 0; +var ic_phone_callback_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6.54 5h-1.5c.09 1.32.35 2.59.75 3.8l1.2-1.2c-.24-.84-.39-1.71-.45-2.6zm8.66 13.21c1.2.41 2.48.67 3.8.75v-1.49c-.88-.07-1.75-.22-2.6-.45l-1.2 1.19z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 15.51c-1.24 0-2.45-.2-3.57-.57-.1-.04-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2c.28-.28.36-.67.25-1.02C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.49c0-.55-.45-1-1-1zM5.03 5h1.5c.07.89.22 1.76.46 2.59l-1.2 1.2c-.41-1.2-.67-2.47-.76-3.79zM19 18.97c-1.32-.09-2.59-.35-3.8-.75l1.19-1.19c.85.24 1.72.39 2.6.45v1.49zM18 9h-2.59l5.02-5.02-1.41-1.41L14 7.59V5h-2v6h6z" + }, + "children": [] + }] +}; +exports.ic_phone_callback_twotone = ic_phone_callback_twotone; \ No newline at end of file diff --git a/dist/md/ic_phone_disabled.js b/dist/md/ic_phone_disabled.js new file mode 100644 index 000000000..30a747934 --- /dev/null +++ b/dist/md/ic_phone_disabled.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_phone_disabled = void 0; +var ic_phone_disabled = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17.34 14.54l-1.43-1.43c.56-.73 1.05-1.5 1.47-2.32l-2.2-2.2c-.28-.28-.36-.67-.25-1.02.37-1.12.57-2.32.57-3.57 0-.55.45-1 1-1H20c.55 0 1 .45 1 1 0 3.98-1.37 7.64-3.66 10.54zm-2.82 2.81C11.63 19.64 7.97 21 4 21c-.55 0-1-.45-1-1v-3.49c0-.55.45-1 1-1 1.24 0 2.45-.2 3.57-.57.35-.12.75-.03 1.02.24l2.2 2.2c.81-.42 1.58-.9 2.3-1.46L1.39 4.22l1.42-1.41L21.19 21.2l-1.41 1.41-5.26-5.26z" + }, + "children": [] + }] +}; +exports.ic_phone_disabled = ic_phone_disabled; \ No newline at end of file diff --git a/dist/md/ic_phone_disabled_outline.js b/dist/md/ic_phone_disabled_outline.js new file mode 100644 index 000000000..9c60b966b --- /dev/null +++ b/dist/md/ic_phone_disabled_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_phone_disabled_outline = void 0; +var ic_phone_disabled_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M17.34,14.54l-1.43-1.43c0.56-0.73,1.05-1.5,1.47-2.32l-2.2-2.2c-0.28-0.28-0.36-0.67-0.25-1.02 C15.3,6.45,15.5,5.25,15.5,4c0-0.55,0.45-1,1-1H20c0.55,0,1,0.45,1,1C21,7.98,19.63,11.64,17.34,14.54z M14.52,17.35 C11.63,19.64,7.97,21,4,21c-0.55,0-1-0.45-1-1v-3.49c0-0.55,0.45-1,1-1c1.24,0,2.45-0.2,3.57-0.57c0.1-0.04,0.21-0.05,0.31-0.05 c0.26,0,0.51,0.1,0.71,0.29l2.2,2.2c0.81-0.42,1.58-0.9,2.3-1.46L1.39,4.22l1.42-1.41L21.19,21.2l-1.41,1.41L14.52,17.35z M7.6,17.02c-0.85,0.24-1.72,0.39-2.6,0.45v1.49c1.32-0.09,2.59-0.35,3.8-0.75L7.6,17.02z M17.46,5 c-0.06,0.89-0.21,1.76-0.45,2.59l1.2,1.2c0.41-1.2,0.67-2.47,0.76-3.79H17.46z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17.34,14.54l-1.43-1.43c0.56-0.73,1.05-1.5,1.47-2.32l-2.2-2.2c-0.28-0.28-0.36-0.67-0.25-1.02 C15.3,6.45,15.5,5.25,15.5,4c0-0.55,0.45-1,1-1H20c0.55,0,1,0.45,1,1C21,7.98,19.63,11.64,17.34,14.54z M14.52,17.35 C11.63,19.64,7.97,21,4,21c-0.55,0-1-0.45-1-1v-3.49c0-0.55,0.45-1,1-1c1.24,0,2.45-0.2,3.57-0.57c0.1-0.04,0.21-0.05,0.31-0.05 c0.26,0,0.51,0.1,0.71,0.29l2.2,2.2c0.81-0.42,1.58-0.9,2.3-1.46L1.39,4.22l1.42-1.41L21.19,21.2l-1.41,1.41L14.52,17.35z M7.6,17.02c-0.85,0.24-1.72,0.39-2.6,0.45v1.49c1.32-0.09,2.59-0.35,3.8-0.75L7.6,17.02z M17.46,5 c-0.06,0.89-0.21,1.76-0.45,2.59l1.2,1.2c0.41-1.2,0.67-2.47,0.76-3.79H17.46z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_phone_disabled_outline = ic_phone_disabled_outline; \ No newline at end of file diff --git a/dist/md/ic_phone_disabled_twotone.js b/dist/md/ic_phone_disabled_twotone.js new file mode 100644 index 000000000..a9fddeb3b --- /dev/null +++ b/dist/md/ic_phone_disabled_twotone.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_phone_disabled_twotone = void 0; +var ic_phone_disabled_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M17.34,14.54l-1.43-1.43c0.56-0.73,1.05-1.5,1.47-2.32l-2.2-2.2c-0.28-0.28-0.36-0.67-0.25-1.02 C15.3,6.45,15.5,5.25,15.5,4c0-0.55,0.45-1,1-1H20c0.55,0,1,0.45,1,1C21,7.98,19.63,11.64,17.34,14.54z M14.52,17.35 C11.63,19.64,7.97,21,4,21c-0.55,0-1-0.45-1-1v-3.49c0-0.55,0.45-1,1-1c1.24,0,2.45-0.2,3.57-0.57c0.1-0.04,0.21-0.05,0.31-0.05 c0.26,0,0.51,0.1,0.71,0.29l2.2,2.2c0.81-0.42,1.58-0.9,2.3-1.46L1.39,4.22l1.42-1.41L21.19,21.2l-1.41,1.41L14.52,17.35z M17.46,5c-0.06,0.89-0.21,1.76-0.45,2.59l1.2,1.2c0.41-1.2,0.67-2.47,0.76-3.79H17.46z M7.6,17.02c-0.85,0.24-1.72,0.39-2.6,0.45 v1.49c1.32-0.09,2.59-0.35,3.8-0.75L7.6,17.02z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17.34,14.54l-1.43-1.43c0.56-0.73,1.05-1.5,1.47-2.32l-2.2-2.2c-0.28-0.28-0.36-0.67-0.25-1.02 C15.3,6.45,15.5,5.25,15.5,4c0-0.55,0.45-1,1-1H20c0.55,0,1,0.45,1,1C21,7.98,19.63,11.64,17.34,14.54z M14.52,17.35 C11.63,19.64,7.97,21,4,21c-0.55,0-1-0.45-1-1v-3.49c0-0.55,0.45-1,1-1c1.24,0,2.45-0.2,3.57-0.57c0.1-0.04,0.21-0.05,0.31-0.05 c0.26,0,0.51,0.1,0.71,0.29l2.2,2.2c0.81-0.42,1.58-0.9,2.3-1.46L1.39,4.22l1.42-1.41L21.19,21.2l-1.41,1.41L14.52,17.35z M17.46,5c-0.06,0.89-0.21,1.76-0.45,2.59l1.2,1.2c0.41-1.2,0.67-2.47,0.76-3.79H17.46z M7.6,17.02c-0.85,0.24-1.72,0.39-2.6,0.45 v1.49c1.32-0.09,2.59-0.35,3.8-0.75L7.6,17.02z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_phone_disabled_twotone = ic_phone_disabled_twotone; \ No newline at end of file diff --git a/dist/md/ic_phone_enabled.js b/dist/md/ic_phone_enabled.js new file mode 100644 index 000000000..74f97d09c --- /dev/null +++ b/dist/md/ic_phone_enabled.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_phone_enabled = void 0; +var ic_phone_enabled = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17.38 10.79l-2.2-2.2c-.28-.28-.36-.67-.25-1.02.37-1.12.57-2.32.57-3.57 0-.55.45-1 1-1H20c.55 0 1 .45 1 1 0 9.39-7.61 17-17 17-.55 0-1-.45-1-1v-3.49c0-.55.45-1 1-1 1.24 0 2.45-.2 3.57-.57.35-.12.75-.03 1.02.24l2.2 2.2c2.83-1.45 5.15-3.76 6.59-6.59z" + }, + "children": [] + }] +}; +exports.ic_phone_enabled = ic_phone_enabled; \ No newline at end of file diff --git a/dist/md/ic_phone_enabled_outline.js b/dist/md/ic_phone_enabled_outline.js new file mode 100644 index 000000000..34849cd46 --- /dev/null +++ b/dist/md/ic_phone_enabled_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_phone_enabled_outline = void 0; +var ic_phone_enabled_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M17.46,5c-0.06,0.89-0.21,1.76-0.45,2.59l1.2,1.2c0.41-1.2,0.67-2.47,0.76-3.79H17.46z M7.6,17.02 c-0.85,0.24-1.72,0.39-2.6,0.45v1.49c1.32-0.09,2.59-0.35,3.8-0.75L7.6,17.02z M16.5,3H20c0.55,0,1,0.45,1,1c0,9.39-7.61,17-17,17 c-0.55,0-1-0.45-1-1v-3.49c0-0.55,0.45-1,1-1c1.24,0,2.45-0.2,3.57-0.57c0.1-0.04,0.21-0.05,0.31-0.05c0.26,0,0.51,0.1,0.71,0.29 l2.2,2.2c2.83-1.45,5.15-3.76,6.59-6.59l-2.2-2.2c-0.28-0.28-0.36-0.67-0.25-1.02C15.3,6.45,15.5,5.25,15.5,4 C15.5,3.45,15.95,3,16.5,3z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17.46,5c-0.06,0.89-0.21,1.76-0.45,2.59l1.2,1.2c0.41-1.2,0.67-2.47,0.76-3.79H17.46z M7.6,17.02 c-0.85,0.24-1.72,0.39-2.6,0.45v1.49c1.32-0.09,2.59-0.35,3.8-0.75L7.6,17.02z M16.5,3H20c0.55,0,1,0.45,1,1c0,9.39-7.61,17-17,17 c-0.55,0-1-0.45-1-1v-3.49c0-0.55,0.45-1,1-1c1.24,0,2.45-0.2,3.57-0.57c0.1-0.04,0.21-0.05,0.31-0.05c0.26,0,0.51,0.1,0.71,0.29 l2.2,2.2c2.83-1.45,5.15-3.76,6.59-6.59l-2.2-2.2c-0.28-0.28-0.36-0.67-0.25-1.02C15.3,6.45,15.5,5.25,15.5,4 C15.5,3.45,15.95,3,16.5,3z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_phone_enabled_outline = ic_phone_enabled_outline; \ No newline at end of file diff --git a/dist/md/ic_phone_enabled_twotone.js b/dist/md/ic_phone_enabled_twotone.js new file mode 100644 index 000000000..0441a9d74 --- /dev/null +++ b/dist/md/ic_phone_enabled_twotone.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_phone_enabled_twotone = void 0; +var ic_phone_enabled_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M21,4c0,9.39-7.61,17-17,17c-0.55,0-1-0.45-1-1v-3.49c0-0.55,0.45-1,1-1c1.24,0,2.45-0.2,3.57-0.57 c0.1-0.04,0.21-0.05,0.31-0.05c0.26,0,0.51,0.1,0.71,0.29l2.2,2.2c2.83-1.45,5.15-3.76,6.59-6.59l-2.2-2.2 c-0.28-0.28-0.36-0.67-0.25-1.02C15.3,6.45,15.5,5.25,15.5,4c0-0.55,0.45-1,1-1H20C20.55,3,21,3.45,21,4z M7.6,17.02 c-0.85,0.24-1.72,0.39-2.6,0.45v1.49c1.32-0.09,2.59-0.35,3.8-0.75L7.6,17.02z M17.46,5c-0.06,0.89-0.21,1.76-0.45,2.59l1.2,1.2 c0.41-1.2,0.67-2.47,0.76-3.79H17.46z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21,4c0,9.39-7.61,17-17,17c-0.55,0-1-0.45-1-1v-3.49c0-0.55,0.45-1,1-1c1.24,0,2.45-0.2,3.57-0.57 c0.1-0.04,0.21-0.05,0.31-0.05c0.26,0,0.51,0.1,0.71,0.29l2.2,2.2c2.83-1.45,5.15-3.76,6.59-6.59l-2.2-2.2 c-0.28-0.28-0.36-0.67-0.25-1.02C15.3,6.45,15.5,5.25,15.5,4c0-0.55,0.45-1,1-1H20C20.55,3,21,3.45,21,4z M7.6,17.02 c-0.85,0.24-1.72,0.39-2.6,0.45v1.49c1.32-0.09,2.59-0.35,3.8-0.75L7.6,17.02z M17.46,5c-0.06,0.89-0.21,1.76-0.45,2.59l1.2,1.2 c0.41-1.2,0.67-2.47,0.76-3.79H17.46z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_phone_enabled_twotone = ic_phone_enabled_twotone; \ No newline at end of file diff --git a/dist/md/ic_phone_forwarded.js b/dist/md/ic_phone_forwarded.js new file mode 100644 index 000000000..c3be094ec --- /dev/null +++ b/dist/md/ic_phone_forwarded.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_phone_forwarded = void 0; +var ic_phone_forwarded = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 11l5-5-5-5v3h-4v4h4v3zm2 4.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1z" + }, + "children": [] + }] +}; +exports.ic_phone_forwarded = ic_phone_forwarded; \ No newline at end of file diff --git a/dist/md/ic_phone_forwarded_outline.js b/dist/md/ic_phone_forwarded_outline.js new file mode 100644 index 000000000..aa2d0b4e0 --- /dev/null +++ b/dist/md/ic_phone_forwarded_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_phone_forwarded_outline = void 0; +var ic_phone_forwarded_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 15.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.45 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM18 11l5-5-5-5v3h-4v4h4z" + }, + "children": [] + }] +}; +exports.ic_phone_forwarded_outline = ic_phone_forwarded_outline; \ No newline at end of file diff --git a/dist/md/ic_phone_forwarded_twotone.js b/dist/md/ic_phone_forwarded_twotone.js new file mode 100644 index 000000000..3a276541d --- /dev/null +++ b/dist/md/ic_phone_forwarded_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_phone_forwarded_twotone = void 0; +var ic_phone_forwarded_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.2 18.21c1.21.41 2.48.67 3.8.76v-1.5c-.88-.07-1.75-.22-2.6-.45l-1.2 1.19zM6.54 5h-1.5c.09 1.32.34 2.58.75 3.79l1.2-1.21c-.24-.83-.39-1.7-.45-2.58z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 15.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.45 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM18 11l5-5-5-5v3h-4v4h4z" + }, + "children": [] + }] +}; +exports.ic_phone_forwarded_twotone = ic_phone_forwarded_twotone; \ No newline at end of file diff --git a/dist/md/ic_phone_in_talk.js b/dist/md/ic_phone_in_talk.js new file mode 100644 index 000000000..13c99c680 --- /dev/null +++ b/dist/md/ic_phone_in_talk.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_phone_in_talk = void 0; +var ic_phone_in_talk = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 15.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM19 12h2c0-4.97-4.03-9-9-9v2c3.87 0 7 3.13 7 7zm-4 0h2c0-2.76-2.24-5-5-5v2c1.66 0 3 1.34 3 3z" + }, + "children": [] + }] +}; +exports.ic_phone_in_talk = ic_phone_in_talk; \ No newline at end of file diff --git a/dist/md/ic_phone_in_talk_outline.js b/dist/md/ic_phone_in_talk_outline.js new file mode 100644 index 000000000..d2a746ad9 --- /dev/null +++ b/dist/md/ic_phone_in_talk_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_phone_in_talk_outline = void 0; +var ic_phone_in_talk_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 12h2c0-2.76-2.24-5-5-5v2c1.66 0 3 1.34 3 3zm4 0h2c0-4.97-4.03-9-9-9v2c3.87 0 7 3.13 7 7zm1 3.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.45 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51z" + }, + "children": [] + }] +}; +exports.ic_phone_in_talk_outline = ic_phone_in_talk_outline; \ No newline at end of file diff --git a/dist/md/ic_phone_in_talk_twotone.js b/dist/md/ic_phone_in_talk_twotone.js new file mode 100644 index 000000000..f258d1d68 --- /dev/null +++ b/dist/md/ic_phone_in_talk_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_phone_in_talk_twotone = void 0; +var ic_phone_in_talk_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6.54 5h-1.5c.09 1.32.34 2.58.75 3.79l1.2-1.21c-.24-.83-.39-1.7-.45-2.58zm8.66 13.21c1.21.41 2.48.67 3.8.76v-1.5c-.88-.07-1.75-.22-2.6-.45l-1.2 1.19z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 12h2c0-2.76-2.24-5-5-5v2c1.66 0 3 1.34 3 3zm4 0h2c0-4.97-4.03-9-9-9v2c3.87 0 7 3.13 7 7zm1 3.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.45 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51z" + }, + "children": [] + }] +}; +exports.ic_phone_in_talk_twotone = ic_phone_in_talk_twotone; \ No newline at end of file diff --git a/dist/md/ic_phone_iphone.js b/dist/md/ic_phone_iphone.js new file mode 100644 index 000000000..1b8e96369 --- /dev/null +++ b/dist/md/ic_phone_iphone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_phone_iphone = void 0; +var ic_phone_iphone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.5 1h-8C6.12 1 5 2.12 5 3.5v17C5 21.88 6.12 23 7.5 23h8c1.38 0 2.5-1.12 2.5-2.5v-17C18 2.12 16.88 1 15.5 1zm-4 21c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm4.5-4H7V4h9v14z" + }, + "children": [] + }] +}; +exports.ic_phone_iphone = ic_phone_iphone; \ No newline at end of file diff --git a/dist/md/ic_phone_iphone_outline.js b/dist/md/ic_phone_iphone_outline.js new file mode 100644 index 000000000..56463b300 --- /dev/null +++ b/dist/md/ic_phone_iphone_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_phone_iphone_outline = void 0; +var ic_phone_iphone_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.5 1h-8C6.12 1 5 2.12 5 3.5v17C5 21.88 6.12 23 7.5 23h8c1.38 0 2.5-1.12 2.5-2.5v-17C18 2.12 16.88 1 15.5 1zm-4 21c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm4.5-4H7V4h9v14z" + }, + "children": [] + }] +}; +exports.ic_phone_iphone_outline = ic_phone_iphone_outline; \ No newline at end of file diff --git a/dist/md/ic_phone_iphone_twotone.js b/dist/md/ic_phone_iphone_twotone.js new file mode 100644 index 000000000..690e50739 --- /dev/null +++ b/dist/md/ic_phone_iphone_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_phone_iphone_twotone = void 0; +var ic_phone_iphone_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 4h9v14H7z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.5 1h-8C6.12 1 5 2.12 5 3.5v17C5 21.88 6.12 23 7.5 23h8c1.38 0 2.5-1.12 2.5-2.5v-17C18 2.12 16.88 1 15.5 1zm-4 21c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm4.5-4H7V4h9v14z" + }, + "children": [] + }] +}; +exports.ic_phone_iphone_twotone = ic_phone_iphone_twotone; \ No newline at end of file diff --git a/dist/md/ic_phone_locked.js b/dist/md/ic_phone_locked.js new file mode 100644 index 000000000..d2d9f22b0 --- /dev/null +++ b/dist/md/ic_phone_locked.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_phone_locked = void 0; +var ic_phone_locked = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 15.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM20 4v-.5C20 2.12 18.88 1 17.5 1S15 2.12 15 3.5V4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm-.8 0h-3.4v-.5c0-.94.76-1.7 1.7-1.7s1.7.76 1.7 1.7V4z" + }, + "children": [] + }] +}; +exports.ic_phone_locked = ic_phone_locked; \ No newline at end of file diff --git a/dist/md/ic_phone_locked_outline.js b/dist/md/ic_phone_locked_outline.js new file mode 100644 index 000000000..4eb70e301 --- /dev/null +++ b/dist/md/ic_phone_locked_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_phone_locked_outline = void 0; +var ic_phone_locked_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 15.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.45 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM20 4v-.5C20 2.12 18.88 1 17.5 1S15 2.12 15 3.5V4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm-1 0h-3v-.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5V4z" + }, + "children": [] + }] +}; +exports.ic_phone_locked_outline = ic_phone_locked_outline; \ No newline at end of file diff --git a/dist/md/ic_phone_locked_twotone.js b/dist/md/ic_phone_locked_twotone.js new file mode 100644 index 000000000..31986bffe --- /dev/null +++ b/dist/md/ic_phone_locked_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_phone_locked_twotone = void 0; +var ic_phone_locked_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6.54 5h-1.5c.09 1.32.34 2.58.75 3.79l1.2-1.21c-.24-.83-.39-1.7-.45-2.58zm8.66 13.21c1.21.41 2.48.67 3.8.76v-1.5c-.88-.07-1.75-.22-2.6-.45l-1.2 1.19z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 15.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.45 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM20 4v-.5C20 2.12 18.88 1 17.5 1S15 2.12 15 3.5V4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm-1 0h-3v-.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5V4z" + }, + "children": [] + }] +}; +exports.ic_phone_locked_twotone = ic_phone_locked_twotone; \ No newline at end of file diff --git a/dist/md/ic_phone_missed.js b/dist/md/ic_phone_missed.js new file mode 100644 index 000000000..55683aa27 --- /dev/null +++ b/dist/md/ic_phone_missed.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_phone_missed = void 0; +var ic_phone_missed = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6.5 5.5L12 11l7-7-1-1-6 6-4.5-4.5H11V3H5v6h1.5V5.5zm17.21 11.17C20.66 13.78 16.54 12 12 12 7.46 12 3.34 13.78.29 16.67c-.18.18-.29.43-.29.71s.11.53.29.71l2.48 2.48c.18.18.43.29.71.29.27 0 .52-.11.7-.28.79-.74 1.69-1.36 2.66-1.85.33-.16.56-.5.56-.9v-3.1c1.45-.48 3-.73 4.6-.73 1.6 0 3.15.25 4.6.72v3.1c0 .39.23.74.56.9.98.49 1.87 1.12 2.67 1.85.18.18.43.28.7.28.28 0 .53-.11.71-.29l2.48-2.48c.18-.18.29-.43.29-.71s-.12-.52-.3-.7z" + }, + "children": [] + }] +}; +exports.ic_phone_missed = ic_phone_missed; \ No newline at end of file diff --git a/dist/md/ic_phone_missed_outline.js b/dist/md/ic_phone_missed_outline.js new file mode 100644 index 000000000..cfaafadb2 --- /dev/null +++ b/dist/md/ic_phone_missed_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_phone_missed_outline = void 0; +var ic_phone_missed_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M23.71 16.67C20.66 13.78 16.54 12 12 12S3.34 13.78.29 16.67c-.18.18-.29.43-.29.71 0 .28.11.53.29.71l2.48 2.48c.18.18.43.29.71.29.27 0 .52-.11.7-.28.79-.74 1.69-1.36 2.66-1.85.33-.16.56-.5.56-.9v-3.1c1.45-.48 3-.73 4.6-.73s3.15.25 4.6.72v3.1c0 .39.23.74.56.9.98.49 1.87 1.12 2.67 1.85.18.18.43.28.7.28.28 0 .53-.11.71-.29l2.48-2.48c.18-.18.29-.43.29-.71 0-.28-.12-.52-.3-.7zm-18.31.56c-.66.37-1.29.8-1.87 1.27l-1.07-1.07c.91-.75 1.9-1.39 2.95-1.9v1.7zm15.08 1.26c-.6-.48-1.22-.9-1.88-1.27v-1.7c1.05.51 2.03 1.15 2.95 1.9l-1.07 1.07zM7 6.43l4.94 4.94 7.07-7.07-1.41-1.42-5.66 5.66L8.4 5H11V3H5v6h2z" + }, + "children": [] + }] +}; +exports.ic_phone_missed_outline = ic_phone_missed_outline; \ No newline at end of file diff --git a/dist/md/ic_phone_missed_twotone.js b/dist/md/ic_phone_missed_twotone.js new file mode 100644 index 000000000..03a232bea --- /dev/null +++ b/dist/md/ic_phone_missed_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_phone_missed_twotone = void 0; +var ic_phone_missed_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18.6 17.22c.66.37 1.28.79 1.88 1.27l1.07-1.07c-.91-.75-1.9-1.39-2.95-1.9v1.7zM3.53 18.5c.58-.47 1.21-.89 1.87-1.27v-1.71c-1.05.51-2.03 1.15-2.95 1.9l1.08 1.08z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M23.71 16.67C20.66 13.78 16.54 12 12 12S3.34 13.78.29 16.67c-.18.18-.29.43-.29.71 0 .28.11.53.29.71l2.48 2.48c.18.18.43.29.71.29.27 0 .52-.11.7-.28.79-.74 1.69-1.36 2.66-1.85.33-.16.56-.5.56-.9v-3.1c1.45-.48 3-.73 4.6-.73s3.15.25 4.6.72v3.1c0 .39.23.74.56.9.98.49 1.87 1.12 2.67 1.85.18.18.43.28.7.28.28 0 .53-.11.71-.29l2.48-2.48c.18-.18.29-.43.29-.71 0-.28-.12-.52-.3-.7zm-18.31.56c-.66.37-1.29.8-1.87 1.27l-1.07-1.07c.91-.75 1.9-1.39 2.95-1.9v1.7zm15.08 1.26c-.6-.48-1.22-.9-1.88-1.27v-1.7c1.05.51 2.03 1.15 2.95 1.9l-1.07 1.07zM7 6.43l4.94 4.94 7.07-7.07-1.41-1.42-5.66 5.66L8.4 5H11V3H5v6h2z" + }, + "children": [] + }] +}; +exports.ic_phone_missed_twotone = ic_phone_missed_twotone; \ No newline at end of file diff --git a/dist/md/ic_phone_outline.js b/dist/md/ic_phone_outline.js new file mode 100644 index 000000000..02f065908 --- /dev/null +++ b/dist/md/ic_phone_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_phone_outline = void 0; +var ic_phone_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6.54 5c.06.89.21 1.76.45 2.59l-1.2 1.2c-.41-1.2-.67-2.47-.76-3.79h1.51m9.86 12.02c.85.24 1.72.39 2.6.45v1.49c-1.32-.09-2.59-.35-3.8-.75l1.2-1.19M7.5 3H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.49c0-.55-.45-1-1-1-1.24 0-2.45-.2-3.57-.57-.1-.04-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2c.28-.28.36-.67.25-1.02C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1z" + }, + "children": [] + }] +}; +exports.ic_phone_outline = ic_phone_outline; \ No newline at end of file diff --git a/dist/md/ic_phone_paused.js b/dist/md/ic_phone_paused.js new file mode 100644 index 000000000..e454ddfec --- /dev/null +++ b/dist/md/ic_phone_paused.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_phone_paused = void 0; +var ic_phone_paused = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 3h-2v7h2V3zm3 12.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM19 3v7h2V3h-2z" + }, + "children": [] + }] +}; +exports.ic_phone_paused = ic_phone_paused; \ No newline at end of file diff --git a/dist/md/ic_phone_paused_outline.js b/dist/md/ic_phone_paused_outline.js new file mode 100644 index 000000000..1ed338514 --- /dev/null +++ b/dist/md/ic_phone_paused_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_phone_paused_outline = void 0; +var ic_phone_paused_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6.54 5c.06.88.21 1.75.44 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79h1.51m9.86 12.01c.85.24 1.72.39 2.6.45v1.5c-1.32-.09-2.6-.35-3.8-.76l1.2-1.19M7.5 3H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1zM15 3h2v7h-2zm4 0h2v7h-2z" + }, + "children": [] + }] +}; +exports.ic_phone_paused_outline = ic_phone_paused_outline; \ No newline at end of file diff --git a/dist/md/ic_phone_paused_twotone.js b/dist/md/ic_phone_paused_twotone.js new file mode 100644 index 000000000..057dd3b81 --- /dev/null +++ b/dist/md/ic_phone_paused_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_phone_paused_twotone = void 0; +var ic_phone_paused_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6.54 5h-1.5c.09 1.32.34 2.58.75 3.79l1.2-1.21c-.24-.83-.39-1.7-.45-2.58zm8.66 13.21c1.21.41 2.48.67 3.8.76v-1.5c-.88-.07-1.75-.22-2.6-.45l-1.2 1.19z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 15.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.45 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM15 3h2v7h-2zm4 0h2v7h-2z" + }, + "children": [] + }] +}; +exports.ic_phone_paused_twotone = ic_phone_paused_twotone; \ No newline at end of file diff --git a/dist/md/ic_phone_twotone.js b/dist/md/ic_phone_twotone.js new file mode 100644 index 000000000..3417fbfa3 --- /dev/null +++ b/dist/md/ic_phone_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_phone_twotone = void 0; +var ic_phone_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 17.47c-.88-.07-1.75-.22-2.6-.45l-1.19 1.19c1.2.41 2.48.67 3.8.75v-1.49zM5.03 5c.09 1.32.35 2.59.75 3.8l1.2-1.2c-.23-.84-.38-1.71-.44-2.6H5.03z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9.07 7.57C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.49c0-.55-.45-1-1-1-1.24 0-2.45-.2-3.57-.57-.1-.04-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2c.28-.28.36-.67.25-1.02zm7.33 9.45c.85.24 1.72.39 2.6.45v1.49c-1.32-.09-2.59-.35-3.8-.75l1.2-1.19zM5.79 8.8c-.41-1.21-.67-2.48-.76-3.8h1.5c.07.89.22 1.76.46 2.59L5.79 8.8z" + }, + "children": [] + }] +}; +exports.ic_phone_twotone = ic_phone_twotone; \ No newline at end of file diff --git a/dist/md/ic_phonelink.js b/dist/md/ic_phonelink.js new file mode 100644 index 000000000..44f703366 --- /dev/null +++ b/dist/md/ic_phonelink.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_phonelink = void 0; +var ic_phonelink = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 6h18V4H4c-1.1 0-2 .9-2 2v11H0v3h14v-3H4V6zm19 2h-6c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-1 9h-4v-7h4v7z" + }, + "children": [] + }] +}; +exports.ic_phonelink = ic_phonelink; \ No newline at end of file diff --git a/dist/md/ic_phonelink_erase.js b/dist/md/ic_phonelink_erase.js new file mode 100644 index 000000000..7068713a9 --- /dev/null +++ b/dist/md/ic_phonelink_erase.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_phonelink_erase = void 0; +var ic_phonelink_erase = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 8.2l-1-1-4 4-4-4-1 1 4 4-4 4 1 1 4-4 4 4 1-1-4-4 4-4zM19 1H9c-1.1 0-2 .9-2 2v3h2V4h10v16H9v-2H7v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_phonelink_erase = ic_phonelink_erase; \ No newline at end of file diff --git a/dist/md/ic_phonelink_erase_outline.js b/dist/md/ic_phonelink_erase_outline.js new file mode 100644 index 000000000..799b235f6 --- /dev/null +++ b/dist/md/ic_phonelink_erase_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_phonelink_erase_outline = void 0; +var ic_phonelink_erase_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 8.2l-1-1-4 4-4-4-1 1 4 4-4 4 1 1 4-4 4 4 1-1-4-4 4-4zM19 1H9c-1.1 0-2 .9-2 2v3h2V4h10v16H9v-2H7v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_phonelink_erase_outline = ic_phonelink_erase_outline; \ No newline at end of file diff --git a/dist/md/ic_phonelink_erase_twotone.js b/dist/md/ic_phonelink_erase_twotone.js new file mode 100644 index 000000000..c4735cdf7 --- /dev/null +++ b/dist/md/ic_phonelink_erase_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_phonelink_erase_twotone = void 0; +var ic_phonelink_erase_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 17.2l4-4 4 4 1-1-4-4 4-4-1-1-4 4-4-4-1 1 4 4-4 4zM9 23h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2H9c-1.1 0-2 .9-2 2v3h2V4h10v16H9v-2H7v3c0 1.1.9 2 2 2z" + }, + "children": [] + }] +}; +exports.ic_phonelink_erase_twotone = ic_phonelink_erase_twotone; \ No newline at end of file diff --git a/dist/md/ic_phonelink_lock.js b/dist/md/ic_phonelink_lock.js new file mode 100644 index 000000000..83f0f8e7b --- /dev/null +++ b/dist/md/ic_phonelink_lock.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_phonelink_lock = void 0; +var ic_phonelink_lock = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 1H9c-1.1 0-2 .9-2 2v3h2V4h10v16H9v-2H7v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-8.2 10V9.5C10.8 8.1 9.4 7 8 7S5.2 8.1 5.2 9.5V11c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3zm-1.3 0h-3V9.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3V11z" + }, + "children": [] + }] +}; +exports.ic_phonelink_lock = ic_phonelink_lock; \ No newline at end of file diff --git a/dist/md/ic_phonelink_lock_outline.js b/dist/md/ic_phonelink_lock_outline.js new file mode 100644 index 000000000..2bb341465 --- /dev/null +++ b/dist/md/ic_phonelink_lock_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_phonelink_lock_outline = void 0; +var ic_phonelink_lock_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 1H9c-1.1 0-2 .9-2 2v3h2V4h10v16H9v-2H7v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-8.2 10V9.5C10.8 8.1 9.4 7 8 7S5.2 8.1 5.2 9.5V11c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3zm-1.3 0h-3V9.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3V11z" + }, + "children": [] + }] +}; +exports.ic_phonelink_lock_outline = ic_phonelink_lock_outline; \ No newline at end of file diff --git a/dist/md/ic_phonelink_lock_twotone.js b/dist/md/ic_phonelink_lock_twotone.js new file mode 100644 index 000000000..074effdeb --- /dev/null +++ b/dist/md/ic_phonelink_lock_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_phonelink_lock_twotone = void 0; +var ic_phonelink_lock_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8 7C6.6 7 5.2 8.1 5.2 9.5V11c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3V9.5C10.8 8.1 9.4 7 8 7zm1.5 4h-3V9.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3V11zM21 21V3c0-1.1-.9-2-2-2H9c-1.1 0-2 .9-2 2v3h2V4h10v16H9v-2H7v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2z" + }, + "children": [] + }] +}; +exports.ic_phonelink_lock_twotone = ic_phonelink_lock_twotone; \ No newline at end of file diff --git a/dist/md/ic_phonelink_off.js b/dist/md/ic_phonelink_off.js new file mode 100644 index 000000000..ad4995cbd --- /dev/null +++ b/dist/md/ic_phonelink_off.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_phonelink_off = void 0; +var ic_phonelink_off = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0zm0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 6V4H6.82l2 2H22zM1.92 1.65L.65 2.92l1.82 1.82C2.18 5.08 2 5.52 2 6v11H0v3h17.73l2.35 2.35 1.27-1.27L3.89 3.62 1.92 1.65zM4 6.27L14.73 17H4V6.27zM23 8h-6c-.55 0-1 .45-1 1v4.18l2 2V10h4v7h-2.18l3 3H23c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1z" + }, + "children": [] + }] +}; +exports.ic_phonelink_off = ic_phonelink_off; \ No newline at end of file diff --git a/dist/md/ic_phonelink_off_outline.js b/dist/md/ic_phonelink_off_outline.js new file mode 100644 index 000000000..ec7b023b8 --- /dev/null +++ b/dist/md/ic_phonelink_off_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_phonelink_off_outline = void 0; +var ic_phonelink_off_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0zm0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 6V4H7.39l2 2zm2 13V9c0-.55-.45-1-1-1h-6c-.55 0-1 .45-1 1v3.61l2 2V10h4v7h-1.61l2.93 2.93c.39-.13.68-.49.68-.93zM2.06 1.51L.65 2.92l1.82 1.82C2.18 5.08 2 5.52 2 6v11H0v3h17.73l2.35 2.35 1.41-1.41L2.06 1.51zM4 17V6.27L14.73 17H4z" + }, + "children": [] + }] +}; +exports.ic_phonelink_off_outline = ic_phonelink_off_outline; \ No newline at end of file diff --git a/dist/md/ic_phonelink_off_twotone.js b/dist/md/ic_phonelink_off_twotone.js new file mode 100644 index 000000000..8f3813e13 --- /dev/null +++ b/dist/md/ic_phonelink_off_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_phonelink_off_twotone = void 0; +var ic_phonelink_off_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0zm0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 17v-7h-4v4.61L20.39 17z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M23 8h-6c-.55 0-1 .45-1 1v3.61l2 2V10h4v7h-1.61l2.93 2.93c.39-.13.68-.49.68-.93V9c0-.55-.45-1-1-1zm-1-2V4H7.39l2 2zM.65 2.92l1.82 1.82C2.18 5.08 2 5.52 2 6v11H0v3h17.73l2.35 2.35 1.41-1.41L2.06 1.51.65 2.92zM4 6.27L14.73 17H4V6.27z" + }, + "children": [] + }] +}; +exports.ic_phonelink_off_twotone = ic_phonelink_off_twotone; \ No newline at end of file diff --git a/dist/md/ic_phonelink_outline.js b/dist/md/ic_phonelink_outline.js new file mode 100644 index 000000000..41423e04c --- /dev/null +++ b/dist/md/ic_phonelink_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_phonelink_outline = void 0; +var ic_phonelink_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 6h18V4H4c-1.1 0-2 .9-2 2v11H0v3h14v-3H4V6zm19 2h-6c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-1 9h-4v-7h4v7z" + }, + "children": [] + }] +}; +exports.ic_phonelink_outline = ic_phonelink_outline; \ No newline at end of file diff --git a/dist/md/ic_phonelink_ring.js b/dist/md/ic_phonelink_ring.js new file mode 100644 index 000000000..3eb83fec4 --- /dev/null +++ b/dist/md/ic_phonelink_ring.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_phonelink_ring = void 0; +var ic_phonelink_ring = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20.1 7.7l-1 1c1.8 1.8 1.8 4.6 0 6.5l1 1c2.5-2.3 2.5-6.1 0-8.5zM18 9.8l-1 1c.5.7.5 1.6 0 2.3l1 1c1.2-1.2 1.2-3 0-4.3zM14 1H4c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 19H4V4h10v16z" + }, + "children": [] + }] +}; +exports.ic_phonelink_ring = ic_phonelink_ring; \ No newline at end of file diff --git a/dist/md/ic_phonelink_ring_outline.js b/dist/md/ic_phonelink_ring_outline.js new file mode 100644 index 000000000..dec406c9e --- /dev/null +++ b/dist/md/ic_phonelink_ring_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_phonelink_ring_outline = void 0; +var ic_phonelink_ring_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20.1 7.7l-1 1c1.8 1.8 1.8 4.6 0 6.5l1 1c2.5-2.3 2.5-6.1 0-8.5zM18 9.8l-1 1c.5.7.5 1.6 0 2.3l1 1c1.2-1.2 1.2-3 0-4.3zM14 1H4c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 19H4V4h10v16z" + }, + "children": [] + }] +}; +exports.ic_phonelink_ring_outline = ic_phonelink_ring_outline; \ No newline at end of file diff --git a/dist/md/ic_phonelink_ring_twotone.js b/dist/md/ic_phonelink_ring_twotone.js new file mode 100644 index 000000000..86a83ee9a --- /dev/null +++ b/dist/md/ic_phonelink_ring_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_phonelink_ring_twotone = void 0; +var ic_phonelink_ring_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 4h10v16H4z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 1H4c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 19H4V4h10v16zm6.1-12.3l-1 1c1.8 1.8 1.8 4.6 0 6.5l1 1c2.5-2.3 2.5-6.1 0-8.5zM17 10.8c.5.7.5 1.6 0 2.3l1 1c1.2-1.2 1.2-3 0-4.3l-1 1z" + }, + "children": [] + }] +}; +exports.ic_phonelink_ring_twotone = ic_phonelink_ring_twotone; \ No newline at end of file diff --git a/dist/md/ic_phonelink_setup.js b/dist/md/ic_phonelink_setup.js new file mode 100644 index 000000000..16e178df9 --- /dev/null +++ b/dist/md/ic_phonelink_setup.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_phonelink_setup = void 0; +var ic_phonelink_setup = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10.82 12.49c.02-.16.04-.32.04-.49 0-.17-.02-.33-.04-.49l1.08-.82c.1-.07.12-.21.06-.32l-1.03-1.73c-.06-.11-.2-.15-.31-.11l-1.28.5c-.27-.2-.56-.36-.87-.49l-.2-1.33c0-.12-.11-.21-.24-.21H5.98c-.13 0-.24.09-.26.21l-.2 1.32c-.31.12-.6.3-.87.49l-1.28-.5c-.12-.05-.25 0-.31.11l-1.03 1.73c-.06.12-.03.25.07.33l1.08.82c-.02.16-.03.33-.03.49 0 .17.02.33.04.49l-1.09.83c-.1.07-.12.21-.06.32l1.03 1.73c.06.11.2.15.31.11l1.28-.5c.27.2.56.36.87.49l.2 1.32c.01.12.12.21.25.21h2.06c.13 0 .24-.09.25-.21l.2-1.32c.31-.12.6-.3.87-.49l1.28.5c.12.05.25 0 .31-.11l1.03-1.73c.06-.11.04-.24-.06-.32l-1.1-.83zM7 13.75c-.99 0-1.8-.78-1.8-1.75s.81-1.75 1.8-1.75 1.8.78 1.8 1.75S8 13.75 7 13.75zM18 1.01L8 1c-1.1 0-2 .9-2 2v3h2V5h10v14H8v-1H6v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99z" + }, + "children": [] + }] +}; +exports.ic_phonelink_setup = ic_phonelink_setup; \ No newline at end of file diff --git a/dist/md/ic_phonelink_setup_outline.js b/dist/md/ic_phonelink_setup_outline.js new file mode 100644 index 000000000..0171d0aa7 --- /dev/null +++ b/dist/md/ic_phonelink_setup_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_phonelink_setup_outline = void 0; +var ic_phonelink_setup_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 3v3h2V4h10v16H9v-2H7v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2H9c-1.1 0-2 .9-2 2zm2.5 12.5c.29-.12.55-.29.8-.48l-.02.03 1.01.39c.23.09.49 0 .61-.22l.84-1.46c.12-.21.07-.49-.12-.64l-.85-.68-.02.03c.02-.16.05-.32.05-.48s-.03-.32-.05-.48l.02.03.85-.68c.19-.15.24-.43.12-.64l-.84-1.46c-.12-.21-.38-.31-.61-.22l-1.01.39.02.03c-.25-.17-.51-.34-.8-.46l-.17-1.08C9.3 7.18 9.09 7 8.84 7H7.16c-.25 0-.46.18-.49.42L6.5 8.5c-.29.12-.55.29-.8.48l.02-.03-1.02-.39c-.23-.09-.49 0-.61.22l-.84 1.46c-.12.21-.07.49.12.64l.85.68.02-.03c-.02.15-.05.31-.05.47s.03.32.05.48l-.02-.03-.85.68c-.19.15-.24.43-.12.64l.84 1.46c.12.21.38.31.61.22l1.01-.39-.01-.04c.25.19.51.36.8.48l.17 1.07c.03.25.24.43.49.43h1.68c.25 0 .46-.18.49-.42l.17-1.08zM6 12c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2z" + }, + "children": [] + }] +}; +exports.ic_phonelink_setup_outline = ic_phonelink_setup_outline; \ No newline at end of file diff --git a/dist/md/ic_phonelink_setup_twotone.js b/dist/md/ic_phonelink_setup_twotone.js new file mode 100644 index 000000000..a17b94bb8 --- /dev/null +++ b/dist/md/ic_phonelink_setup_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_phonelink_setup_twotone = void 0; +var ic_phonelink_setup_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 3v3h2V4h10v16H9v-2H7v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2H9c-1.1 0-2 .9-2 2zm2.5 12.5c.29-.12.55-.29.8-.48l-.02.03 1.01.39c.23.09.49 0 .61-.22l.84-1.46c.12-.21.07-.49-.12-.64l-.85-.68-.02.03c.02-.16.05-.32.05-.48s-.03-.32-.05-.48l.02.03.85-.68c.19-.15.24-.43.12-.64l-.84-1.46c-.12-.21-.38-.31-.61-.22l-1.01.39.02.03c-.25-.17-.51-.34-.8-.46l-.17-1.08C9.3 7.18 9.09 7 8.84 7H7.16c-.25 0-.46.18-.49.42L6.5 8.5c-.29.12-.55.29-.8.48l.02-.03-1.02-.39c-.23-.09-.49 0-.61.22l-.84 1.46c-.12.21-.07.49.12.64l.85.68.02-.03c-.02.15-.05.31-.05.47s.03.32.05.48l-.02-.03-.85.68c-.19.15-.24.43-.12.64l.84 1.46c.12.21.38.31.61.22l1.01-.39-.01-.04c.25.19.51.36.8.48l.17 1.07c.03.25.24.43.49.43h1.68c.25 0 .46-.18.49-.42l.17-1.08zM6 12c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2z" + }, + "children": [] + }] +}; +exports.ic_phonelink_setup_twotone = ic_phonelink_setup_twotone; \ No newline at end of file diff --git a/dist/md/ic_phonelink_twotone.js b/dist/md/ic_phonelink_twotone.js new file mode 100644 index 000000000..372d80a1b --- /dev/null +++ b/dist/md/ic_phonelink_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_phonelink_twotone = void 0; +var ic_phonelink_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 10h4v7h-4z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 6h18V4H4c-1.1 0-2 .9-2 2v11H0v3h14v-3H4V6zm19 2h-6c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-1 9h-4v-7h4v7z" + }, + "children": [] + }] +}; +exports.ic_phonelink_twotone = ic_phonelink_twotone; \ No newline at end of file diff --git a/dist/md/ic_photo.js b/dist/md/ic_photo.js new file mode 100644 index 000000000..8feb39625 --- /dev/null +++ b/dist/md/ic_photo.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_photo = void 0; +var ic_photo = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 19V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zM8.5 13.5l2.5 3.01L14.5 12l4.5 6H5l3.5-4.5z" + }, + "children": [] + }] +}; +exports.ic_photo = ic_photo; \ No newline at end of file diff --git a/dist/md/ic_photo_album.js b/dist/md/ic_photo_album.js new file mode 100644 index 000000000..22835c3dc --- /dev/null +++ b/dist/md/ic_photo_album.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_photo_album = void 0; +var ic_photo_album = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM6 4h5v8l-2.5-1.5L6 12V4zm0 15l3-3.86 2.14 2.58 3-3.86L18 19H6z" + }, + "children": [] + }] +}; +exports.ic_photo_album = ic_photo_album; \ No newline at end of file diff --git a/dist/md/ic_photo_album_outline.js b/dist/md/ic_photo_album_outline.js new file mode 100644 index 000000000..e01d6271e --- /dev/null +++ b/dist/md/ic_photo_album_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_photo_album_outline = void 0; +var ic_photo_album_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 2v5l-1-.75L9 9V4h2zm7 16H6V4h1v9l3-2.25L13 13V4h5v16zm-6.72-2.04L9.5 15.81 7 19h10l-3.22-4.26z" + }, + "children": [] + }] +}; +exports.ic_photo_album_outline = ic_photo_album_outline; \ No newline at end of file diff --git a/dist/md/ic_photo_album_twotone.js b/dist/md/ic_photo_album_twotone.js new file mode 100644 index 000000000..db041e953 --- /dev/null +++ b/dist/md/ic_photo_album_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_photo_album_twotone = void 0; +var ic_photo_album_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 13l-3-2.25L7 13V4H6v16h12V4h-5v9zm4 6H7l2.5-3.19 1.78 2.15 2.5-3.22L17 19z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM9 4h2v5l-1-.75L9 9V4zm9 16H6V4h1v9l3-2.25L13 13V4h5v16zm-8.5-4.19L7 19h10l-3.22-4.26-2.5 3.22z" + }, + "children": [] + }] +}; +exports.ic_photo_album_twotone = ic_photo_album_twotone; \ No newline at end of file diff --git a/dist/md/ic_photo_camera.js b/dist/md/ic_photo_camera.js new file mode 100644 index 000000000..bdb2b7225 --- /dev/null +++ b/dist/md/ic_photo_camera.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_photo_camera = void 0; +var ic_photo_camera = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "3.2" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 2L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2h-3.17L15 2H9zm3 15c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" + }, + "children": [] + }] +}; +exports.ic_photo_camera = ic_photo_camera; \ No newline at end of file diff --git a/dist/md/ic_photo_camera_back.js b/dist/md/ic_photo_camera_back.js new file mode 100644 index 000000000..0fc0fbfe8 --- /dev/null +++ b/dist/md/ic_photo_camera_back.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_photo_camera_back = void 0; +var ic_photo_camera_back = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 5c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V7c0-1.1.9-2 2-2h3.17L9 3h6l1.83 2H20zm0 14V7H4v12h16zm-6-7l-3 3.72L9 13l-3 4h12l-4-5z" + }, + "children": [] + }] +}; +exports.ic_photo_camera_back = ic_photo_camera_back; \ No newline at end of file diff --git a/dist/md/ic_photo_camera_front.js b/dist/md/ic_photo_camera_front.js new file mode 100644 index 000000000..a08d7b073 --- /dev/null +++ b/dist/md/ic_photo_camera_front.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_photo_camera_front = void 0; +var ic_photo_camera_front = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 10.48l4-3.98v11l-4-3.98V18c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h12c1.1 0 2 .9 2 2v4.48zm-2-.79V6H4v12h12V9.69zM10 12c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm0 1c1.34 0 4 .67 4 2v1H6v-1c0-1.33 2.66-2 4-2z" + }, + "children": [] + }] +}; +exports.ic_photo_camera_front = ic_photo_camera_front; \ No newline at end of file diff --git a/dist/md/ic_photo_camera_outline.js b/dist/md/ic_photo_camera_outline.js new file mode 100644 index 000000000..98a7862a9 --- /dev/null +++ b/dist/md/ic_photo_camera_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_photo_camera_outline = void 0; +var ic_photo_camera_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14.12 4l1.83 2H20v12H4V6h4.05l1.83-2h4.24M15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2h-3.17L15 2zm-3 7c1.65 0 3 1.35 3 3s-1.35 3-3 3-3-1.35-3-3 1.35-3 3-3m0-2c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5z" + }, + "children": [] + }] +}; +exports.ic_photo_camera_outline = ic_photo_camera_outline; \ No newline at end of file diff --git a/dist/md/ic_photo_camera_twotone.js b/dist/md/ic_photo_camera_twotone.js new file mode 100644 index 000000000..d2b6e7caa --- /dev/null +++ b/dist/md/ic_photo_camera_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_photo_camera_twotone = void 0; +var ic_photo_camera_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 6h-4.05l-1.83-2H9.88L8.05 6H4v12h16V6zm-8 11c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 20h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2h-3.17L15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2zM4 6h4.05l1.83-2h4.24l1.83 2H20v12H4V6zm8 1c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3z" + }, + "children": [] + }] +}; +exports.ic_photo_camera_twotone = ic_photo_camera_twotone; \ No newline at end of file diff --git a/dist/md/ic_photo_filter.js b/dist/md/ic_photo_filter.js new file mode 100644 index 000000000..d0d786cb4 --- /dev/null +++ b/dist/md/ic_photo_filter.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_photo_filter = void 0; +var ic_photo_filter = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.02 10v9H5V5h9V3H5.02c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-9h-2zM17 10l.94-2.06L20 7l-2.06-.94L17 4l-.94 2.06L14 7l2.06.94zm-3.75.75L12 8l-1.25 2.75L8 12l2.75 1.25L12 16l1.25-2.75L16 12z" + }, + "children": [] + }] +}; +exports.ic_photo_filter = ic_photo_filter; \ No newline at end of file diff --git a/dist/md/ic_photo_filter_outline.js b/dist/md/ic_photo_filter_outline.js new file mode 100644 index 000000000..93e596a6c --- /dev/null +++ b/dist/md/ic_photo_filter_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_photo_filter_outline = void 0; +var ic_photo_filter_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 10v9H4.98V5h9V3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-9h-2zm-2.94-2.06L17 10l.94-2.06L20 7l-2.06-.94L17 4l-.94 2.06L14 7zM12 8l-1.25 2.75L8 12l2.75 1.25L12 16l1.25-2.75L16 12l-2.75-1.25z" + }, + "children": [] + }] +}; +exports.ic_photo_filter_outline = ic_photo_filter_outline; \ No newline at end of file diff --git a/dist/md/ic_photo_filter_twotone.js b/dist/md/ic_photo_filter_twotone.js new file mode 100644 index 000000000..75b22249f --- /dev/null +++ b/dist/md/ic_photo_filter_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_photo_filter_twotone = void 0; +var ic_photo_filter_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 10v9H4.98V5h9V3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-9h-2zm-2.94-2.06L17 10l.94-2.06L20 7l-2.06-.94L17 4l-.94 2.06L14 7zM12 8l-1.25 2.75L8 12l2.75 1.25L12 16l1.25-2.75L16 12l-2.75-1.25z" + }, + "children": [] + }] +}; +exports.ic_photo_filter_twotone = ic_photo_filter_twotone; \ No newline at end of file diff --git a/dist/md/ic_photo_library.js b/dist/md/ic_photo_library.js new file mode 100644 index 000000000..2586e7237 --- /dev/null +++ b/dist/md/ic_photo_library.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_photo_library = void 0; +var ic_photo_library = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 16V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2zm-11-4l2.03 2.71L16 11l4 5H8l3-4zM2 6v14c0 1.1.9 2 2 2h14v-2H4V6H2z" + }, + "children": [] + }] +}; +exports.ic_photo_library = ic_photo_library; \ No newline at end of file diff --git a/dist/md/ic_photo_library_outline.js b/dist/md/ic_photo_library_outline.js new file mode 100644 index 000000000..ee6a38660 --- /dev/null +++ b/dist/md/ic_photo_library_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_photo_library_outline = void 0; +var ic_photo_library_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 4v12H8V4h12m0-2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-8.5 9.67l1.69 2.26 2.48-3.1L19 15H9zM2 6v14c0 1.1.9 2 2 2h14v-2H4V6H2z" + }, + "children": [] + }] +}; +exports.ic_photo_library_outline = ic_photo_library_outline; \ No newline at end of file diff --git a/dist/md/ic_photo_library_twotone.js b/dist/md/ic_photo_library_twotone.js new file mode 100644 index 000000000..50afce159 --- /dev/null +++ b/dist/md/ic_photo_library_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_photo_library_twotone = void 0; +var ic_photo_library_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8 16h12V4H8v12zm3.5-4.33l1.69 2.26 2.48-3.09L19 15H9l2.5-3.33z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 16V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2zm-2 0H8V4h12v12zm-4.33-5.17l-2.48 3.09-1.69-2.25L9 15h10zM4 22h14v-2H4V6H2v14c0 1.1.9 2 2 2z" + }, + "children": [] + }] +}; +exports.ic_photo_library_twotone = ic_photo_library_twotone; \ No newline at end of file diff --git a/dist/md/ic_photo_outline.js b/dist/md/ic_photo_outline.js new file mode 100644 index 000000000..5a211b44f --- /dev/null +++ b/dist/md/ic_photo_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_photo_outline = void 0; +var ic_photo_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4.86 8.86l-3 3.87L9 13.14 6 17h12l-3.86-5.14z" + }, + "children": [] + }] +}; +exports.ic_photo_outline = ic_photo_outline; \ No newline at end of file diff --git a/dist/md/ic_photo_size_select_actual.js b/dist/md/ic_photo_size_select_actual.js new file mode 100644 index 000000000..90d43a7a1 --- /dev/null +++ b/dist/md/ic_photo_size_select_actual.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_photo_size_select_actual = void 0; +var ic_photo_size_select_actual = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M24 24H0V0h24v24z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 3H3C2 3 1 4 1 5v14c0 1.1.9 2 2 2h18c1 0 2-1 2-2V5c0-1-1-2-2-2zM5 17l3.5-4.5 2.5 3.01L14.5 11l4.5 6H5z" + }, + "children": [] + }] +}; +exports.ic_photo_size_select_actual = ic_photo_size_select_actual; \ No newline at end of file diff --git a/dist/md/ic_photo_size_select_actual_outline.js b/dist/md/ic_photo_size_select_actual_outline.js new file mode 100644 index 000000000..6cc006293 --- /dev/null +++ b/dist/md/ic_photo_size_select_actual_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_photo_size_select_actual_outline = void 0; +var ic_photo_size_select_actual_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 3H3C2 3 1 4 1 5v14c0 1.1.9 2 2 2h18c1 0 2-1 2-2V5c0-1-1-2-2-2zm0 15.92c-.02.03-.06.06-.08.08H3V5.08L3.08 5h17.83c.03.02.06.06.08.08v13.84zm-10-3.41L8.5 12.5 5 17h14l-4.5-6z" + }, + "children": [] + }] +}; +exports.ic_photo_size_select_actual_outline = ic_photo_size_select_actual_outline; \ No newline at end of file diff --git a/dist/md/ic_photo_size_select_actual_twotone.js b/dist/md/ic_photo_size_select_actual_twotone.js new file mode 100644 index 000000000..7f8ed7356 --- /dev/null +++ b/dist/md/ic_photo_size_select_actual_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_photo_size_select_actual_twotone = void 0; +var ic_photo_size_select_actual_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3.08 5L3 5.08V19h17.92c.03-.02.06-.06.08-.08V5.08L20.92 5H3.08zM5 17l3.5-4.5 2.5 3.01L14.5 11l4.5 6H5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 3H3C2 3 1 4 1 5v14c0 1.1.9 2 2 2h18c1 0 2-1 2-2V5c0-1-1-2-2-2zm0 15.92c-.02.03-.06.06-.08.08H3V5.08L3.08 5h17.83c.03.02.06.06.08.08v13.84zm-10-3.41L8.5 12.5 5 17h14l-4.5-6z" + }, + "children": [] + }] +}; +exports.ic_photo_size_select_actual_twotone = ic_photo_size_select_actual_twotone; \ No newline at end of file diff --git a/dist/md/ic_photo_size_select_large.js b/dist/md/ic_photo_size_select_large.js new file mode 100644 index 000000000..8418de2fc --- /dev/null +++ b/dist/md/ic_photo_size_select_large.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_photo_size_select_large = void 0; +var ic_photo_size_select_large = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M24 24H0V0h24v24z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 15h2v2h-2v-2zm0-4h2v2h-2v-2zm2 8h-2v2c1 0 2-1 2-2zM13 3h2v2h-2V3zm8 4h2v2h-2V7zm0-4v2h2c0-1-1-2-2-2zM1 7h2v2H1V7zm16-4h2v2h-2V3zm0 16h2v2h-2v-2zM3 3C2 3 1 4 1 5h2V3zm6 0h2v2H9V3zM5 3h2v2H5V3zm-4 8v8c0 1.1.9 2 2 2h12V11H1zm2 8l2.5-3.21 1.79 2.15 2.5-3.22L13 19H3z" + }, + "children": [] + }] +}; +exports.ic_photo_size_select_large = ic_photo_size_select_large; \ No newline at end of file diff --git a/dist/md/ic_photo_size_select_large_outline.js b/dist/md/ic_photo_size_select_large_outline.js new file mode 100644 index 000000000..6b5ad5c12 --- /dev/null +++ b/dist/md/ic_photo_size_select_large_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_photo_size_select_large_outline = void 0; +var ic_photo_size_select_large_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 15h2v2h-2v-2zm0-4h2v2h-2v-2zm2 8h-2v2c1 0 2-1 2-2zM13 3h2v2h-2V3zm8 4h2v2h-2V7zm0-4v2h2c0-1-1-2-2-2zM1 7h2v2H1V7zm16-4h2v2h-2V3zm0 16h2v2h-2v-2zM3 3C2 3 1 4 1 5h2V3zm6 0h2v2H9V3zM5 3h2v2H5V3zm-4 8v8c0 1.1.9 2 2 2h12V11H1zm2 8l2.5-3.21 1.79 2.15 2.5-3.22L13 19H3z" + }, + "children": [] + }] +}; +exports.ic_photo_size_select_large_outline = ic_photo_size_select_large_outline; \ No newline at end of file diff --git a/dist/md/ic_photo_size_select_large_twotone.js b/dist/md/ic_photo_size_select_large_twotone.js new file mode 100644 index 000000000..c96e737e7 --- /dev/null +++ b/dist/md/ic_photo_size_select_large_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_photo_size_select_large_twotone = void 0; +var ic_photo_size_select_large_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 19h2v2h-2zM1 19c0 1.1.9 2 2 2h12V11H1v8zm4.5-3.21l1.79 2.15 2.5-3.22L13 19H3l2.5-3.21zM17 3h2v2h-2zm4 8h2v2h-2zm0 4h2v2h-2zM3 3C2 3 1 4 1 5h2V3zm18 4h2v2h-2zm-8-4h2v2h-2zm8 18c1 0 2-1 2-2h-2v2zM1 7h2v2H1zm8-4h2v2H9zM5 3h2v2H5zm16 0v2h2c0-1-1-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_photo_size_select_large_twotone = ic_photo_size_select_large_twotone; \ No newline at end of file diff --git a/dist/md/ic_photo_size_select_small.js b/dist/md/ic_photo_size_select_small.js new file mode 100644 index 000000000..1e42293aa --- /dev/null +++ b/dist/md/ic_photo_size_select_small.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_photo_size_select_small = void 0; +var ic_photo_size_select_small = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0zm24 24H0V0h24v24z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M23 15h-2v2h2v-2zm0-4h-2v2h2v-2zm0 8h-2v2c1 0 2-1 2-2zM15 3h-2v2h2V3zm8 4h-2v2h2V7zm-2-4v2h2c0-1-1-2-2-2zM3 21h8v-6H1v4c0 1.1.9 2 2 2zM3 7H1v2h2V7zm12 12h-2v2h2v-2zm4-16h-2v2h2V3zm0 16h-2v2h2v-2zM3 3C2 3 1 4 1 5h2V3zm0 8H1v2h2v-2zm8-8H9v2h2V3zM7 3H5v2h2V3z" + }, + "children": [] + }] +}; +exports.ic_photo_size_select_small = ic_photo_size_select_small; \ No newline at end of file diff --git a/dist/md/ic_photo_size_select_small_outline.js b/dist/md/ic_photo_size_select_small_outline.js new file mode 100644 index 000000000..c599226a2 --- /dev/null +++ b/dist/md/ic_photo_size_select_small_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_photo_size_select_small_outline = void 0; +var ic_photo_size_select_small_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M23 15h-2v2h2v-2zm0-4h-2v2h2v-2zm0 8h-2v2c1 0 2-1 2-2zM15 3h-2v2h2V3zm8 4h-2v2h2V7zm-2-4v2h2c0-1-1-2-2-2zM3 21h8v-6H1v4c0 1.1.9 2 2 2zM3 7H1v2h2V7zm12 12h-2v2h2v-2zm4-16h-2v2h2V3zm0 16h-2v2h2v-2zM3 3C2 3 1 4 1 5h2V3zm0 8H1v2h2v-2zm8-8H9v2h2V3zM7 3H5v2h2V3z" + }, + "children": [] + }] +}; +exports.ic_photo_size_select_small_outline = ic_photo_size_select_small_outline; \ No newline at end of file diff --git a/dist/md/ic_photo_size_select_small_twotone.js b/dist/md/ic_photo_size_select_small_twotone.js new file mode 100644 index 000000000..97fef15ba --- /dev/null +++ b/dist/md/ic_photo_size_select_small_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_photo_size_select_small_twotone = void 0; +var ic_photo_size_select_small_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 19h2v2h-2zm-4 0h2v2h-2zM1 19c0 1.1.9 2 2 2h8v-6H1v4zM9 3h2v2H9zM5 3h2v2H5zm12 0h2v2h-2zM1 11h2v2H1zm0-4h2v2H1zm2-4C2 3 1 4 1 5h2V3zm10 0h2v2h-2zm8 18c1 0 2-1 2-2h-2v2zm0-10h2v2h-2zm0-8v2h2c0-1-1-2-2-2zm0 12h2v2h-2zm0-8h2v2h-2z" + }, + "children": [] + }] +}; +exports.ic_photo_size_select_small_twotone = ic_photo_size_select_small_twotone; \ No newline at end of file diff --git a/dist/md/ic_photo_twotone.js b/dist/md/ic_photo_twotone.js new file mode 100644 index 000000000..1ee3a6410 --- /dev/null +++ b/dist/md/ic_photo_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_photo_twotone = void 0; +var ic_photo_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 5H5v14h14V5zM6 17l3-3.86 2.14 2.58 3-3.87L18 17H6z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 21h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2zM5 5h14v14H5V5zm6.14 10.72L9 13.14 6 17h12l-3.86-5.14z" + }, + "children": [] + }] +}; +exports.ic_photo_twotone = ic_photo_twotone; \ No newline at end of file diff --git a/dist/md/ic_picture_as_pdf.js b/dist/md/ic_picture_as_pdf.js new file mode 100644 index 000000000..78a20ea10 --- /dev/null +++ b/dist/md/ic_picture_as_pdf.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_picture_as_pdf = void 0; +var ic_picture_as_pdf = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-8.5 7.5c0 .83-.67 1.5-1.5 1.5H9v2H7.5V7H10c.83 0 1.5.67 1.5 1.5v1zm5 2c0 .83-.67 1.5-1.5 1.5h-2.5V7H15c.83 0 1.5.67 1.5 1.5v3zm4-3H19v1h1.5V11H19v2h-1.5V7h3v1.5zM9 9.5h1v-1H9v1zM4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm10 5.5h1v-3h-1v3z" + }, + "children": [] + }] +}; +exports.ic_picture_as_pdf = ic_picture_as_pdf; \ No newline at end of file diff --git a/dist/md/ic_picture_as_pdf_outline.js b/dist/md/ic_picture_as_pdf_outline.js new file mode 100644 index 000000000..7fe68de9c --- /dev/null +++ b/dist/md/ic_picture_as_pdf_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_picture_as_pdf_outline = void 0; +var ic_picture_as_pdf_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zM4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm12 6V9c0-.55-.45-1-1-1h-2v5h2c.55 0 1-.45 1-1zm-2-3h1v3h-1V9zm4 2h1v-1h-1V9h1V8h-2v5h1zm-8 0h1c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1H9v5h1v-2zm0-2h1v1h-1V9z" + }, + "children": [] + }] +}; +exports.ic_picture_as_pdf_outline = ic_picture_as_pdf_outline; \ No newline at end of file diff --git a/dist/md/ic_picture_as_pdf_twotone.js b/dist/md/ic_picture_as_pdf_twotone.js new file mode 100644 index 000000000..501847617 --- /dev/null +++ b/dist/md/ic_picture_as_pdf_twotone.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_picture_as_pdf_twotone = void 0; +var ic_picture_as_pdf_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 9h1v1h-1zm4 0h1v3h-1zm-6 7h12V4H8v12zm9-8h2v1h-1v1h1v1h-1v2h-1V8zm-4 0h2c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1h-2V8zM9 8h2c.55 0 1 .45 1 1v1c0 .55-.45 1-1 1h-1v2H9V8z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zm-4-4V9c0-.55-.45-1-1-1h-2v5h2c.55 0 1-.45 1-1zm-2-3h1v3h-1V9zm4 2h1v-1h-1V9h1V8h-2v5h1zm-8 0h1c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1H9v5h1v-2zm0-2h1v1h-1V9z" + }, + "children": [] + }] +}; +exports.ic_picture_as_pdf_twotone = ic_picture_as_pdf_twotone; \ No newline at end of file diff --git a/dist/md/ic_picture_in_picture.js b/dist/md/ic_picture_in_picture.js new file mode 100644 index 000000000..47317c6a0 --- /dev/null +++ b/dist/md/ic_picture_in_picture.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_picture_in_picture = void 0; +var ic_picture_in_picture = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 7h-8v6h8V7zm2-4H3c-1.1 0-2 .9-2 2v14c0 1.1.9 1.98 2 1.98h18c1.1 0 2-.88 2-1.98V5c0-1.1-.9-2-2-2zm0 16.01H3V4.98h18v14.03z" + }, + "children": [] + }] +}; +exports.ic_picture_in_picture = ic_picture_in_picture; \ No newline at end of file diff --git a/dist/md/ic_picture_in_picture_alt.js b/dist/md/ic_picture_in_picture_alt.js new file mode 100644 index 000000000..eb82ed4da --- /dev/null +++ b/dist/md/ic_picture_in_picture_alt.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_picture_in_picture_alt = void 0; +var ic_picture_in_picture_alt = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 11h-8v6h8v-6zm4 8V4.98C23 3.88 22.1 3 21 3H3c-1.1 0-2 .88-2 1.98V19c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2zm-2 .02H3V4.97h18v14.05z" + }, + "children": [] + }] +}; +exports.ic_picture_in_picture_alt = ic_picture_in_picture_alt; \ No newline at end of file diff --git a/dist/md/ic_picture_in_picture_alt_outline.js b/dist/md/ic_picture_in_picture_alt_outline.js new file mode 100644 index 000000000..149c94bd2 --- /dev/null +++ b/dist/md/ic_picture_in_picture_alt_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_picture_in_picture_alt_outline = void 0; +var ic_picture_in_picture_alt_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 11h-8v6h8v-6zm-2 4h-4v-2h4v2zm4-12H3c-1.1 0-2 .88-2 1.98V19c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V4.98C23 3.88 22.1 3 21 3zm0 16.02H3V4.97h18v14.05z" + }, + "children": [] + }] +}; +exports.ic_picture_in_picture_alt_outline = ic_picture_in_picture_alt_outline; \ No newline at end of file diff --git a/dist/md/ic_picture_in_picture_alt_twotone.js b/dist/md/ic_picture_in_picture_alt_twotone.js new file mode 100644 index 000000000..a8d20dfe1 --- /dev/null +++ b/dist/md/ic_picture_in_picture_alt_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_picture_in_picture_alt_twotone = void 0; +var ic_picture_in_picture_alt_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 11h-8v6h8v-6zm-2 4h-4v-2h4v2zm4-12H3c-1.1 0-2 .88-2 1.98V19c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V4.98C23 3.88 22.1 3 21 3zm0 16.02H3V4.97h18v14.05z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 13h4v2h-4z", + "opacity": ".3" + }, + "children": [] + }] +}; +exports.ic_picture_in_picture_alt_twotone = ic_picture_in_picture_alt_twotone; \ No newline at end of file diff --git a/dist/md/ic_picture_in_picture_outline.js b/dist/md/ic_picture_in_picture_outline.js new file mode 100644 index 000000000..2a0eef65f --- /dev/null +++ b/dist/md/ic_picture_in_picture_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_picture_in_picture_outline = void 0; +var ic_picture_in_picture_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 7h-8v6h8V7zm-2 4h-4V9h4v2zm4-8H3c-1.1 0-2 .9-2 2v14c0 1.1.9 1.98 2 1.98h18c1.1 0 2-.88 2-1.98V5c0-1.1-.9-2-2-2zm0 16.01H3V4.98h18v14.03z" + }, + "children": [] + }] +}; +exports.ic_picture_in_picture_outline = ic_picture_in_picture_outline; \ No newline at end of file diff --git a/dist/md/ic_picture_in_picture_twotone.js b/dist/md/ic_picture_in_picture_twotone.js new file mode 100644 index 000000000..45d632bbd --- /dev/null +++ b/dist/md/ic_picture_in_picture_twotone.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_picture_in_picture_twotone = void 0; +var ic_picture_in_picture_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 7h-8v6h8V7zm-2 4h-4V9h4v2z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 9h4v2h-4z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 1.98 2 1.98h18c1.1 0 2-.88 2-1.98V5c0-1.1-.9-2-2-2zm0 16.01H3V4.98h18v14.03z" + }, + "children": [] + }] +}; +exports.ic_picture_in_picture_twotone = ic_picture_in_picture_twotone; \ No newline at end of file diff --git a/dist/md/ic_pie_chart.js b/dist/md/ic_pie_chart.js new file mode 100644 index 000000000..88b8cb696 --- /dev/null +++ b/dist/md/ic_pie_chart.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_pie_chart = void 0; +var ic_pie_chart = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 2v20c-5.07-.5-9-4.79-9-10s3.93-9.5 9-10zm2.03 0v8.99H22c-.47-4.74-4.24-8.52-8.97-8.99zm0 11.01V22c4.74-.47 8.5-4.25 8.97-8.99h-8.97z" + }, + "children": [] + }] +}; +exports.ic_pie_chart = ic_pie_chart; \ No newline at end of file diff --git a/dist/md/ic_pie_chart_outline.js b/dist/md/ic_pie_chart_outline.js new file mode 100644 index 000000000..5eb46e6c1 --- /dev/null +++ b/dist/md/ic_pie_chart_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_pie_chart_outline = void 0; +var ic_pie_chart_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm7.93 9H13V4.07c3.61.45 6.48 3.32 6.93 6.93zM4 12c0-4.07 3.06-7.44 7-7.93v15.86c-3.94-.49-7-3.86-7-7.93zm9 7.93V13h6.93c-.45 3.61-3.32 6.48-6.93 6.93z" + }, + "children": [] + }] +}; +exports.ic_pie_chart_outline = ic_pie_chart_outline; \ No newline at end of file diff --git a/dist/md/ic_pie_chart_outline_outline.js b/dist/md/ic_pie_chart_outline_outline.js new file mode 100644 index 000000000..452752932 --- /dev/null +++ b/dist/md/ic_pie_chart_outline_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_pie_chart_outline_outline = void 0; +var ic_pie_chart_outline_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm1 2.07c3.61.45 6.48 3.33 6.93 6.93H13V4.07zM4 12c0-4.06 3.07-7.44 7-7.93v15.87c-3.93-.5-7-3.88-7-7.94zm9 7.93V13h6.93c-.45 3.61-3.32 6.48-6.93 6.93z" + }, + "children": [] + }] +}; +exports.ic_pie_chart_outline_outline = ic_pie_chart_outline_outline; \ No newline at end of file diff --git a/dist/md/ic_pie_chart_outline_twotone.js b/dist/md/ic_pie_chart_outline_twotone.js new file mode 100644 index 000000000..16dda12d5 --- /dev/null +++ b/dist/md/ic_pie_chart_outline_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_pie_chart_outline_twotone = void 0; +var ic_pie_chart_outline_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm-1 17.94c-3.93-.5-7-3.88-7-7.94s3.07-7.44 7-7.93v15.87zm2-.01V13h6.93c-.45 3.61-3.32 6.48-6.93 6.93zM13 11V4.07c3.61.45 6.48 3.33 6.93 6.93H13z" + }, + "children": [] + }] +}; +exports.ic_pie_chart_outline_twotone = ic_pie_chart_outline_twotone; \ No newline at end of file diff --git a/dist/md/ic_pie_chart_outlined.js b/dist/md/ic_pie_chart_outlined.js new file mode 100644 index 000000000..d3d7aa440 --- /dev/null +++ b/dist/md/ic_pie_chart_outlined.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_pie_chart_outlined = void 0; +var ic_pie_chart_outlined = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm1 2.07c3.61.45 6.48 3.33 6.93 6.93H13V4.07zM4 12c0-4.06 3.07-7.44 7-7.93v15.87c-3.93-.5-7-3.88-7-7.94zm9 7.93V13h6.93c-.45 3.61-3.32 6.48-6.93 6.93z" + }, + "children": [] + }] +}; +exports.ic_pie_chart_outlined = ic_pie_chart_outlined; \ No newline at end of file diff --git a/dist/md/ic_pie_chart_twotone.js b/dist/md/ic_pie_chart_twotone.js new file mode 100644 index 000000000..11560a0c5 --- /dev/null +++ b/dist/md/ic_pie_chart_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_pie_chart_twotone = void 0; +var ic_pie_chart_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 12c0 4.07 3.06 7.44 7 7.93V4.07C7.06 4.56 4 7.93 4 12zm9 7.93c3.61-.45 6.48-3.32 6.93-6.93H13v6.93zm0-15.86V11h6.93c-.45-3.61-3.32-6.48-6.93-6.93z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.94-.49-7-3.86-7-7.93s3.06-7.44 7-7.93v15.86zm2 0V13h6.93c-.45 3.61-3.32 6.48-6.93 6.93zM13 11V4.07c3.61.45 6.48 3.32 6.93 6.93H13z" + }, + "children": [] + }] +}; +exports.ic_pie_chart_twotone = ic_pie_chart_twotone; \ No newline at end of file diff --git a/dist/md/ic_pin_drop.js b/dist/md/ic_pin_drop.js new file mode 100644 index 000000000..3f2020315 --- /dev/null +++ b/dist/md/ic_pin_drop.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_pin_drop = void 0; +var ic_pin_drop = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 8c0-3.31-2.69-6-6-6S6 4.69 6 8c0 4.5 6 11 6 11s6-6.5 6-11zm-8 0c0-1.1.9-2 2-2s2 .9 2 2-.89 2-2 2c-1.1 0-2-.9-2-2zM5 20v2h14v-2H5z" + }, + "children": [] + }] +}; +exports.ic_pin_drop = ic_pin_drop; \ No newline at end of file diff --git a/dist/md/ic_pin_drop_outline.js b/dist/md/ic_pin_drop_outline.js new file mode 100644 index 000000000..24566cfd7 --- /dev/null +++ b/dist/md/ic_pin_drop_outline.js @@ -0,0 +1,30 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_pin_drop_outline = void 0; +var ic_pin_drop_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4c1.93 0 5 1.4 5 5.15 0 2.16-1.72 4.67-5 7.32-3.28-2.65-5-5.17-5-7.32C7 5.4 10.07 4 12 4m0-2C8.73 2 5 4.46 5 9.15c0 3.12 2.33 6.41 7 9.85 4.67-3.44 7-6.73 7-9.85C19 4.46 15.27 2 12 2z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 7c-1.1 0-2 .9-2 2s.9 2 2 2a2 2 0 1 0 0-4zM5 20h14v2H5v-2z" + }, + "children": [] + }] +}; +exports.ic_pin_drop_outline = ic_pin_drop_outline; \ No newline at end of file diff --git a/dist/md/ic_pin_drop_twotone.js b/dist/md/ic_pin_drop_twotone.js new file mode 100644 index 000000000..1cb12208c --- /dev/null +++ b/dist/md/ic_pin_drop_twotone.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_pin_drop_twotone = void 0; +var ic_pin_drop_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12,3C9.19,3,6,5.11,6,9.13c0,2.68,2,5.49,6,8.44c4-2.95,6-5.77,6-8.44C18,5.11,14.81,3,12,3z", + "fill-opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M0,0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12,4c1.93,0,5,1.4,5,5.15c0,2.16-1.72,4.67-5,7.32c-3.28-2.65-5-5.17-5-7.32C7,5.4,10.07,4,12,4 M12,2 C8.73,2,5,4.46,5,9.15c0,3.12,2.33,6.41,7,9.85c4.67-3.44,7-6.73,7-9.85C19,4.46,15.27,2,12,2z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12,7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S13.1,7,12,7z M5,20h14v2H5V20z" + }, + "children": [] + }] +}; +exports.ic_pin_drop_twotone = ic_pin_drop_twotone; \ No newline at end of file diff --git a/dist/md/ic_pivot_table_chart.js b/dist/md/ic_pivot_table_chart.js new file mode 100644 index 000000000..4b9c1058f --- /dev/null +++ b/dist/md/ic_pivot_table_chart.js @@ -0,0 +1,30 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_pivot_table_chart = void 0; +var ic_pivot_table_chart = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 8h11V5c0-1.1-.9-2-2-2h-9v5zM3 8h5V3H5c-1.1 0-2 .9-2 2v3zm2 13h3V10H3v9c0 1.1.9 2 2 2zm8 1l-4-4 4-4zm1-9l4-4 4 4z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14.58 19H13v-2h1.58c1.33 0 2.42-1.08 2.42-2.42V13h2v1.58c0 2.44-1.98 4.42-4.42 4.42z" + }, + "children": [] + }] +}; +exports.ic_pivot_table_chart = ic_pivot_table_chart; \ No newline at end of file diff --git a/dist/md/ic_place.js b/dist/md/ic_place.js new file mode 100644 index 000000000..b26d51ef8 --- /dev/null +++ b/dist/md/ic_place.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_place = void 0; +var ic_place = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z" + }, + "children": [] + }] +}; +exports.ic_place = ic_place; \ No newline at end of file diff --git a/dist/md/ic_place_outline.js b/dist/md/ic_place_outline.js new file mode 100644 index 000000000..e5a435200 --- /dev/null +++ b/dist/md/ic_place_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_place_outline = void 0; +var ic_place_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 12c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm6-1.8C18 6.57 15.35 4 12 4s-6 2.57-6 6.2c0 2.34 1.95 5.44 6 9.14 4.05-3.7 6-6.8 6-9.14zM12 2c4.2 0 8 3.22 8 8.2 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8C4 5.22 7.8 2 12 2z" + }, + "children": [] + }] +}; +exports.ic_place_outline = ic_place_outline; \ No newline at end of file diff --git a/dist/md/ic_place_twotone.js b/dist/md/ic_place_twotone.js new file mode 100644 index 000000000..98d1777bc --- /dev/null +++ b/dist/md/ic_place_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_place_twotone = void 0; +var ic_place_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.5,10.2c0,2.57-2.1,5.79-6.16,9.51L12,20.01l-0.34-0.31C7.6,15.99,5.5,12.77,5.5,10.2 c0-3.84,2.82-6.7,6.5-6.7S18.5,6.35,18.5,10.2z", + "fill-opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12,2c4.2,0,8,3.22,8,8.2c0,3.32-2.67,7.25-8,11.8c-5.33-4.55-8-8.48-8-11.8C4,5.22,7.8,2,12,2z M18,10.2 C18,6.57,15.35,4,12,4s-6,2.57-6,6.2c0,2.34,1.95,5.44,6,9.14C16.05,15.64,18,12.54,18,10.2z M12,12c-1.1,0-2-0.9-2-2s0.9-2,2-2 s2,0.9,2,2S13.1,12,12,12z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M0,0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }] +}; +exports.ic_place_twotone = ic_place_twotone; \ No newline at end of file diff --git a/dist/md/ic_plagiarism.js b/dist/md/ic_plagiarism.js new file mode 100644 index 000000000..d779854e2 --- /dev/null +++ b/dist/md/ic_plagiarism.js @@ -0,0 +1,71 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_plagiarism = void 0; +var ic_plagiarism = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M14,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.89,2,1.99,2H18c1.1,0,2-0.9,2-2V8L14,2z M15.04,19.45l-1.88-1.88 c-1.33,0.71-3.01,0.53-4.13-0.59c-1.37-1.37-1.37-3.58,0-4.95c1.37-1.37,3.58-1.37,4.95,0c1.12,1.12,1.31,2.8,0.59,4.13l1.88,1.88 L15.04,19.45z M13,9V3.5L18.5,9H13z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.89,2,1.99,2H18c1.1,0,2-0.9,2-2V8L14,2z M15.04,19.45l-1.88-1.88 c-1.33,0.71-3.01,0.53-4.13-0.59c-1.37-1.37-1.37-3.58,0-4.95c1.37-1.37,3.58-1.37,4.95,0c1.12,1.12,1.31,2.8,0.59,4.13l1.88,1.88 L15.04,19.45z M13,9V3.5L18.5,9H13z" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "11.5", + "cy": "14.5", + "r": "1.5" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "11.5", + "cy": "14.5", + "r": "1.5" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_plagiarism = ic_plagiarism; \ No newline at end of file diff --git a/dist/md/ic_plagiarism_outline.js b/dist/md/ic_plagiarism_outline.js new file mode 100644 index 000000000..5de5b8c05 --- /dev/null +++ b/dist/md/ic_plagiarism_outline.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_plagiarism_outline = void 0; +var ic_plagiarism_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M14,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.89,2,1.99,2H18c1.1,0,2-0.9,2-2V8L14,2z M18,20L6,20V4h7v5h5V20z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.89,2,1.99,2H18c1.1,0,2-0.9,2-2V8L14,2z M18,20L6,20V4h7v5h5V20z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M9.03,11.03c-1.37,1.37-1.37,3.58,0,4.95c1.12,1.12,2.8,1.31,4.13,0.59l1.88,1.88l1.41-1.41l-1.88-1.88 c0.71-1.33,0.53-3.01-0.59-4.13C12.61,9.66,10.39,9.66,9.03,11.03z M12.56,14.56c-0.59,0.59-1.54,0.59-2.12,0 c-0.59-0.59-0.59-1.54,0-2.12c0.59-0.59,1.54-0.59,2.12,0C13.15,13.03,13.15,13.97,12.56,14.56z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M9.03,11.03c-1.37,1.37-1.37,3.58,0,4.95c1.12,1.12,2.8,1.31,4.13,0.59l1.88,1.88l1.41-1.41l-1.88-1.88 c0.71-1.33,0.53-3.01-0.59-4.13C12.61,9.66,10.39,9.66,9.03,11.03z M12.56,14.56c-0.59,0.59-1.54,0.59-2.12,0 c-0.59-0.59-0.59-1.54,0-2.12c0.59-0.59,1.54-0.59,2.12,0C13.15,13.03,13.15,13.97,12.56,14.56z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_plagiarism_outline = ic_plagiarism_outline; \ No newline at end of file diff --git a/dist/md/ic_plagiarism_twotone.js b/dist/md/ic_plagiarism_twotone.js new file mode 100644 index 000000000..2a640aa60 --- /dev/null +++ b/dist/md/ic_plagiarism_twotone.js @@ -0,0 +1,99 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_plagiarism_twotone = void 0; +var ic_plagiarism_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M13,4H6v16l12,0V9h-5V4z M13.97,11.03c1.12,1.12,1.31,2.8,0.59,4.13l1.88,1.88l-1.41,1.41l-1.88-1.88 c-1.33,0.71-3.01,0.53-4.13-0.59c-1.37-1.37-1.37-3.58,0-4.95C10.39,9.66,12.61,9.66,13.97,11.03z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M13,4H6v16l12,0V9h-5V4z M13.97,11.03c1.12,1.12,1.31,2.8,0.59,4.13l1.88,1.88l-1.41,1.41l-1.88-1.88 c-1.33,0.71-3.01,0.53-4.13-0.59c-1.37-1.37-1.37-3.58,0-4.95C10.39,9.66,12.61,9.66,13.97,11.03z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "11.5", + "cy": "13.5", + "opacity": ".3", + "r": "1.5" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "11.5", + "cy": "13.5", + "opacity": ".3", + "r": "1.5" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M14,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.89,2,1.99,2H18c1.1,0,2-0.9,2-2V8L14,2z M18,20L6,20V4h7v5h5V20z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.89,2,1.99,2H18c1.1,0,2-0.9,2-2V8L14,2z M18,20L6,20V4h7v5h5V20z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M9.03,11.03c-1.37,1.37-1.37,3.58,0,4.95c1.12,1.12,2.8,1.31,4.13,0.59l1.88,1.88l1.41-1.41l-1.88-1.88 c0.71-1.33,0.53-3.01-0.59-4.13C12.61,9.66,10.39,9.66,9.03,11.03z M12.56,14.56c-0.59,0.59-1.54,0.59-2.12,0 c-0.59-0.59-0.59-1.54,0-2.12c0.59-0.59,1.54-0.59,2.12,0C13.15,13.03,13.15,13.97,12.56,14.56z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M9.03,11.03c-1.37,1.37-1.37,3.58,0,4.95c1.12,1.12,2.8,1.31,4.13,0.59l1.88,1.88l1.41-1.41l-1.88-1.88 c0.71-1.33,0.53-3.01-0.59-4.13C12.61,9.66,10.39,9.66,9.03,11.03z M12.56,14.56c-0.59,0.59-1.54,0.59-2.12,0 c-0.59-0.59-0.59-1.54,0-2.12c0.59-0.59,1.54-0.59,2.12,0C13.15,13.03,13.15,13.97,12.56,14.56z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_plagiarism_twotone = ic_plagiarism_twotone; \ No newline at end of file diff --git a/dist/md/ic_play_arrow.js b/dist/md/ic_play_arrow.js new file mode 100644 index 000000000..dda432b2d --- /dev/null +++ b/dist/md/ic_play_arrow.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_play_arrow = void 0; +var ic_play_arrow = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8 5v14l11-7z" + }, + "children": [] + }] +}; +exports.ic_play_arrow = ic_play_arrow; \ No newline at end of file diff --git a/dist/md/ic_play_arrow_outline.js b/dist/md/ic_play_arrow_outline.js new file mode 100644 index 000000000..d1a90a515 --- /dev/null +++ b/dist/md/ic_play_arrow_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_play_arrow_outline = void 0; +var ic_play_arrow_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 8.64L15.27 12 10 15.36V8.64M8 5v14l11-7L8 5z" + }, + "children": [] + }] +}; +exports.ic_play_arrow_outline = ic_play_arrow_outline; \ No newline at end of file diff --git a/dist/md/ic_play_arrow_twotone.js b/dist/md/ic_play_arrow_twotone.js new file mode 100644 index 000000000..59356bf74 --- /dev/null +++ b/dist/md/ic_play_arrow_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_play_arrow_twotone = void 0; +var ic_play_arrow_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 8.64v6.72L15.27 12z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8 19l11-7L8 5v14zm2-10.36L15.27 12 10 15.36V8.64z" + }, + "children": [] + }] +}; +exports.ic_play_arrow_twotone = ic_play_arrow_twotone; \ No newline at end of file diff --git a/dist/md/ic_play_circle_filled.js b/dist/md/ic_play_circle_filled.js new file mode 100644 index 000000000..2d9f7ed3e --- /dev/null +++ b/dist/md/ic_play_circle_filled.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_play_circle_filled = void 0; +var ic_play_circle_filled = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 14.5v-9l6 4.5-6 4.5z" + }, + "children": [] + }] +}; +exports.ic_play_circle_filled = ic_play_circle_filled; \ No newline at end of file diff --git a/dist/md/ic_play_circle_filled_outline.js b/dist/md/ic_play_circle_filled_outline.js new file mode 100644 index 000000000..825f92d4f --- /dev/null +++ b/dist/md/ic_play_circle_filled_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_play_circle_filled_outline = void 0; +var ic_play_circle_filled_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 14.5v-9l6 4.5-6 4.5z" + }, + "children": [] + }] +}; +exports.ic_play_circle_filled_outline = ic_play_circle_filled_outline; \ No newline at end of file diff --git a/dist/md/ic_play_circle_filled_twotone.js b/dist/md/ic_play_circle_filled_twotone.js new file mode 100644 index 000000000..001af1f96 --- /dev/null +++ b/dist/md/ic_play_circle_filled_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_play_circle_filled_twotone = void 0; +var ic_play_circle_filled_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 20c4.41 0 8-3.59 8-8s-3.59-8-8-8-8 3.59-8 8 3.59 8 8 8zM10 7.5l6 4.5-6 4.5v-9z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 22c5.52 0 10-4.48 10-10S17.52 2 12 2 2 6.48 2 12s4.48 10 10 10zm0-18c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8zm-2 3.5v9l6-4.5z" + }, + "children": [] + }] +}; +exports.ic_play_circle_filled_twotone = ic_play_circle_filled_twotone; \ No newline at end of file diff --git a/dist/md/ic_play_circle_outline.js b/dist/md/ic_play_circle_outline.js new file mode 100644 index 000000000..3da82a189 --- /dev/null +++ b/dist/md/ic_play_circle_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_play_circle_outline = void 0; +var ic_play_circle_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 16.5l6-4.5-6-4.5v9zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" + }, + "children": [] + }] +}; +exports.ic_play_circle_outline = ic_play_circle_outline; \ No newline at end of file diff --git a/dist/md/ic_play_circle_outline_outline.js b/dist/md/ic_play_circle_outline_outline.js new file mode 100644 index 000000000..612d05c7c --- /dev/null +++ b/dist/md/ic_play_circle_outline_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_play_circle_outline_outline = void 0; +var ic_play_circle_outline_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 16.5l6-4.5-6-4.5zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" + }, + "children": [] + }] +}; +exports.ic_play_circle_outline_outline = ic_play_circle_outline_outline; \ No newline at end of file diff --git a/dist/md/ic_play_circle_outline_twotone.js b/dist/md/ic_play_circle_outline_twotone.js new file mode 100644 index 000000000..26c108b72 --- /dev/null +++ b/dist/md/ic_play_circle_outline_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_play_circle_outline_twotone = void 0; +var ic_play_circle_outline_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 16.5l6-4.5-6-4.5zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" + }, + "children": [] + }] +}; +exports.ic_play_circle_outline_twotone = ic_play_circle_outline_twotone; \ No newline at end of file diff --git a/dist/md/ic_play_disabled.js b/dist/md/ic_play_disabled.js new file mode 100644 index 000000000..339a053f3 --- /dev/null +++ b/dist/md/ic_play_disabled.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_play_disabled = void 0; +var ic_play_disabled = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0zm0 0h24v24H0V0zm11.75 11.47l-.11-.11.11.11z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8 5.19V5l11 7-2.55 1.63L8 5.19zm12 14.54l-5.11-5.11L8 7.73 4.27 4 3 5.27l5 5V19l5.33-3.4 5.4 5.4L20 19.73z" + }, + "children": [] + }] +}; +exports.ic_play_disabled = ic_play_disabled; \ No newline at end of file diff --git a/dist/md/ic_play_for_work.js b/dist/md/ic_play_for_work.js new file mode 100644 index 000000000..ae0c02107 --- /dev/null +++ b/dist/md/ic_play_for_work.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_play_for_work = void 0; +var ic_play_for_work = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 5v5.59H7.5l4.5 4.5 4.5-4.5H13V5h-2zm-5 9c0 3.31 2.69 6 6 6s6-2.69 6-6h-2c0 2.21-1.79 4-4 4s-4-1.79-4-4H6z" + }, + "children": [] + }] +}; +exports.ic_play_for_work = ic_play_for_work; \ No newline at end of file diff --git a/dist/md/ic_play_for_work_outline.js b/dist/md/ic_play_for_work_outline.js new file mode 100644 index 000000000..de460e816 --- /dev/null +++ b/dist/md/ic_play_for_work_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_play_for_work_outline = void 0; +var ic_play_for_work_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 5v5.59H7.5l4.5 4.5 4.5-4.5H13V5h-2zm-5 9c0 3.31 2.69 6 6 6s6-2.69 6-6h-2c0 2.21-1.79 4-4 4s-4-1.79-4-4H6z" + }, + "children": [] + }] +}; +exports.ic_play_for_work_outline = ic_play_for_work_outline; \ No newline at end of file diff --git a/dist/md/ic_play_for_work_twotone.js b/dist/md/ic_play_for_work_twotone.js new file mode 100644 index 000000000..61278d8a3 --- /dev/null +++ b/dist/md/ic_play_for_work_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_play_for_work_twotone = void 0; +var ic_play_for_work_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 5v5.59H7.5l4.5 4.5 4.5-4.5H13V5h-2zm-5 9c0 3.31 2.69 6 6 6s6-2.69 6-6h-2c0 2.21-1.79 4-4 4s-4-1.79-4-4H6z" + }, + "children": [] + }] +}; +exports.ic_play_for_work_twotone = ic_play_for_work_twotone; \ No newline at end of file diff --git a/dist/md/ic_playlist_add.js b/dist/md/ic_playlist_add.js new file mode 100644 index 000000000..74f8b3225 --- /dev/null +++ b/dist/md/ic_playlist_add.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_playlist_add = void 0; +var ic_playlist_add = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 10H2v2h12v-2zm0-4H2v2h12V6zm4 8v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM2 16h8v-2H2v2z" + }, + "children": [] + }] +}; +exports.ic_playlist_add = ic_playlist_add; \ No newline at end of file diff --git a/dist/md/ic_playlist_add_check.js b/dist/md/ic_playlist_add_check.js new file mode 100644 index 000000000..ce343977c --- /dev/null +++ b/dist/md/ic_playlist_add_check.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_playlist_add_check = void 0; +var ic_playlist_add_check = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M14,10H2v2h12V10z M14,6H2v2h12V6z M2,16h8v-2H2V16z M21.5,11.5L23,13l-6.99,7l-4.51-4.5L13,14l3.01,3L21.5,11.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14,10H2v2h12V10z M14,6H2v2h12V6z M2,16h8v-2H2V16z M21.5,11.5L23,13l-6.99,7l-4.51-4.5L13,14l3.01,3L21.5,11.5z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_playlist_add_check = ic_playlist_add_check; \ No newline at end of file diff --git a/dist/md/ic_playlist_add_check_outline.js b/dist/md/ic_playlist_add_check_outline.js new file mode 100644 index 000000000..4914f7c76 --- /dev/null +++ b/dist/md/ic_playlist_add_check_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_playlist_add_check_outline = void 0; +var ic_playlist_add_check_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 10H2v2h12v-2zm0-4H2v2h12V6zM2 16h8v-2H2v2zm19.5-4.5L23 13l-6.99 7-4.51-4.5L13 14l3.01 3 5.49-5.5z" + }, + "children": [] + }] +}; +exports.ic_playlist_add_check_outline = ic_playlist_add_check_outline; \ No newline at end of file diff --git a/dist/md/ic_playlist_add_check_twotone.js b/dist/md/ic_playlist_add_check_twotone.js new file mode 100644 index 000000000..e1ac518e2 --- /dev/null +++ b/dist/md/ic_playlist_add_check_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_playlist_add_check_twotone = void 0; +var ic_playlist_add_check_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M2 6h12v2H2zm0 4h12v2H2zm0 4h8v2H2zm14.01 3L13 14l-1.5 1.5 4.51 4.5L23 13l-1.5-1.5z" + }, + "children": [] + }] +}; +exports.ic_playlist_add_check_twotone = ic_playlist_add_check_twotone; \ No newline at end of file diff --git a/dist/md/ic_playlist_add_outline.js b/dist/md/ic_playlist_add_outline.js new file mode 100644 index 000000000..716a39505 --- /dev/null +++ b/dist/md/ic_playlist_add_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_playlist_add_outline = void 0; +var ic_playlist_add_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 10H2v2h12v-2zm0-4H2v2h12V6zm4 8v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM2 16h8v-2H2v2z" + }, + "children": [] + }] +}; +exports.ic_playlist_add_outline = ic_playlist_add_outline; \ No newline at end of file diff --git a/dist/md/ic_playlist_add_twotone.js b/dist/md/ic_playlist_add_twotone.js new file mode 100644 index 000000000..03d259438 --- /dev/null +++ b/dist/md/ic_playlist_add_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_playlist_add_twotone = void 0; +var ic_playlist_add_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M2 14h8v2H2zm0-4h12v2H2zm0-4h12v2H2zm16 4h-2v4h-4v2h4v4h2v-4h4v-2h-4z" + }, + "children": [] + }] +}; +exports.ic_playlist_add_twotone = ic_playlist_add_twotone; \ No newline at end of file diff --git a/dist/md/ic_playlist_play.js b/dist/md/ic_playlist_play.js new file mode 100644 index 000000000..b9fe584f3 --- /dev/null +++ b/dist/md/ic_playlist_play.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_playlist_play = void 0; +var ic_playlist_play = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 10h12v2H4zm0-4h12v2H4zm0 8h8v2H4zm10 0v6l5-3z" + }, + "children": [] + }] +}; +exports.ic_playlist_play = ic_playlist_play; \ No newline at end of file diff --git a/dist/md/ic_playlist_play_outline.js b/dist/md/ic_playlist_play_outline.js new file mode 100644 index 000000000..5502b62dd --- /dev/null +++ b/dist/md/ic_playlist_play_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_playlist_play_outline = void 0; +var ic_playlist_play_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 10h12v2H4zm0-4h12v2H4zm0 8h8v2H4zm10 0v6l5-3z" + }, + "children": [] + }] +}; +exports.ic_playlist_play_outline = ic_playlist_play_outline; \ No newline at end of file diff --git a/dist/md/ic_playlist_play_twotone.js b/dist/md/ic_playlist_play_twotone.js new file mode 100644 index 000000000..d42a88509 --- /dev/null +++ b/dist/md/ic_playlist_play_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_playlist_play_twotone = void 0; +var ic_playlist_play_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 10h12v2H4zm0-4h12v2H4zm0 8h8v2H4zm10 6l5-3-5-3z" + }, + "children": [] + }] +}; +exports.ic_playlist_play_twotone = ic_playlist_play_twotone; \ No newline at end of file diff --git a/dist/md/ic_plumbing.js b/dist/md/ic_plumbing.js new file mode 100644 index 000000000..6aa81e568 --- /dev/null +++ b/dist/md/ic_plumbing.js @@ -0,0 +1,79 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_plumbing = void 0; +var ic_plumbing = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M19.28,4.93l-2.12-2.12c-0.78-0.78-2.05-0.78-2.83,0L11.5,5.64l2.12,2.12l2.12-2.12l3.54,3.54 C20.45,8,20.45,6.1,19.28,4.93z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19.28,4.93l-2.12-2.12c-0.78-0.78-2.05-0.78-2.83,0L11.5,5.64l2.12,2.12l2.12-2.12l3.54,3.54 C20.45,8,20.45,6.1,19.28,4.93z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M5.49,13.77c0.59,0.59,1.54,0.59,2.12,0l2.47-2.47L7.96,9.17l-2.47,2.47C4.9,12.23,4.9,13.18,5.49,13.77L5.49,13.77z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M5.49,13.77c0.59,0.59,1.54,0.59,2.12,0l2.47-2.47L7.96,9.17l-2.47,2.47C4.9,12.23,4.9,13.18,5.49,13.77L5.49,13.77z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M15.04,7.76l-0.71,0.71l-0.71,0.71l-3.18-3.18C9.85,5.4,8.9,5.4,8.32,5.99c-0.59,0.59-0.59,1.54,0,2.12l3.18,3.18 L10.79,12l-6.36,6.36c-0.78,0.78-0.78,2.05,0,2.83c0.78,0.78,2.05,0.78,2.83,0L16.45,12c0.39,0.39,1.02,0.39,1.41,0 c0.39-0.39,0.39-1.02,0-1.41L15.04,7.76z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15.04,7.76l-0.71,0.71l-0.71,0.71l-3.18-3.18C9.85,5.4,8.9,5.4,8.32,5.99c-0.59,0.59-0.59,1.54,0,2.12l3.18,3.18 L10.79,12l-6.36,6.36c-0.78,0.78-0.78,2.05,0,2.83c0.78,0.78,2.05,0.78,2.83,0L16.45,12c0.39,0.39,1.02,0.39,1.41,0 c0.39-0.39,0.39-1.02,0-1.41L15.04,7.76z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_plumbing = ic_plumbing; \ No newline at end of file diff --git a/dist/md/ic_plumbing_outline.js b/dist/md/ic_plumbing_outline.js new file mode 100644 index 000000000..80e5140ce --- /dev/null +++ b/dist/md/ic_plumbing_outline.js @@ -0,0 +1,79 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_plumbing_outline = void 0; +var ic_plumbing_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M19.28,4.93l-2.12-2.12c-0.78-0.78-2.05-0.78-2.83,0L11.5,5.64l2.12,2.12l2.12-2.12l3.54,3.54 C20.45,8,20.45,6.1,19.28,4.93z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19.28,4.93l-2.12-2.12c-0.78-0.78-2.05-0.78-2.83,0L11.5,5.64l2.12,2.12l2.12-2.12l3.54,3.54 C20.45,8,20.45,6.1,19.28,4.93z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M5.49,13.77c0.59,0.59,1.54,0.59,2.12,0l2.47-2.47L7.96,9.17l-2.47,2.47C4.9,12.23,4.9,13.18,5.49,13.77L5.49,13.77z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M5.49,13.77c0.59,0.59,1.54,0.59,2.12,0l2.47-2.47L7.96,9.17l-2.47,2.47C4.9,12.23,4.9,13.18,5.49,13.77L5.49,13.77z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M15.04,7.76l-0.71,0.71l-0.71,0.71l-3.18-3.18C9.85,5.4,8.9,5.4,8.32,5.99c-0.59,0.59-0.59,1.54,0,2.12l3.18,3.18 L10.79,12l-6.36,6.36c-0.78,0.78-0.78,2.05,0,2.83c0.78,0.78,2.05,0.78,2.83,0L16.45,12c0.39,0.39,1.02,0.39,1.41,0 c0.39-0.39,0.39-1.02,0-1.41L15.04,7.76z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15.04,7.76l-0.71,0.71l-0.71,0.71l-3.18-3.18C9.85,5.4,8.9,5.4,8.32,5.99c-0.59,0.59-0.59,1.54,0,2.12l3.18,3.18 L10.79,12l-6.36,6.36c-0.78,0.78-0.78,2.05,0,2.83c0.78,0.78,2.05,0.78,2.83,0L16.45,12c0.39,0.39,1.02,0.39,1.41,0 c0.39-0.39,0.39-1.02,0-1.41L15.04,7.76z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_plumbing_outline = ic_plumbing_outline; \ No newline at end of file diff --git a/dist/md/ic_plumbing_twotone.js b/dist/md/ic_plumbing_twotone.js new file mode 100644 index 000000000..6c5b4759c --- /dev/null +++ b/dist/md/ic_plumbing_twotone.js @@ -0,0 +1,79 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_plumbing_twotone = void 0; +var ic_plumbing_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M19.28,4.93l-2.12-2.12c-0.78-0.78-2.05-0.78-2.83,0L11.5,5.64l2.12,2.12l2.12-2.12l3.54,3.54 C20.45,8,20.45,6.1,19.28,4.93z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19.28,4.93l-2.12-2.12c-0.78-0.78-2.05-0.78-2.83,0L11.5,5.64l2.12,2.12l2.12-2.12l3.54,3.54 C20.45,8,20.45,6.1,19.28,4.93z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M5.49,13.77c0.59,0.59,1.54,0.59,2.12,0l2.47-2.47L7.96,9.17l-2.47,2.47C4.9,12.23,4.9,13.18,5.49,13.77L5.49,13.77z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M5.49,13.77c0.59,0.59,1.54,0.59,2.12,0l2.47-2.47L7.96,9.17l-2.47,2.47C4.9,12.23,4.9,13.18,5.49,13.77L5.49,13.77z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M15.04,7.76l-0.71,0.71l-0.71,0.71l-3.18-3.18C9.85,5.4,8.9,5.4,8.32,5.99c-0.59,0.59-0.59,1.54,0,2.12l3.18,3.18 L10.79,12l-6.36,6.36c-0.78,0.78-0.78,2.05,0,2.83c0.78,0.78,2.05,0.78,2.83,0L16.45,12c0.39,0.39,1.02,0.39,1.41,0 c0.39-0.39,0.39-1.02,0-1.41L15.04,7.76z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15.04,7.76l-0.71,0.71l-0.71,0.71l-3.18-3.18C9.85,5.4,8.9,5.4,8.32,5.99c-0.59,0.59-0.59,1.54,0,2.12l3.18,3.18 L10.79,12l-6.36,6.36c-0.78,0.78-0.78,2.05,0,2.83c0.78,0.78,2.05,0.78,2.83,0L16.45,12c0.39,0.39,1.02,0.39,1.41,0 c0.39-0.39,0.39-1.02,0-1.41L15.04,7.76z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_plumbing_twotone = ic_plumbing_twotone; \ No newline at end of file diff --git a/dist/md/ic_plus_one.js b/dist/md/ic_plus_one.js new file mode 100644 index 000000000..834962c4f --- /dev/null +++ b/dist/md/ic_plus_one.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_plus_one = void 0; +var ic_plus_one = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 8H8v4H4v2h4v4h2v-4h4v-2h-4zm4.5-1.92V7.9l2.5-.5V18h2V5z" + }, + "children": [] + }] +}; +exports.ic_plus_one = ic_plus_one; \ No newline at end of file diff --git a/dist/md/ic_plus_one_outline.js b/dist/md/ic_plus_one_outline.js new file mode 100644 index 000000000..2bfafe97d --- /dev/null +++ b/dist/md/ic_plus_one_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_plus_one_outline = void 0; +var ic_plus_one_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 8H8v4H4v2h4v4h2v-4h4v-2h-4V8zm4.5-1.92V7.9l2.5-.5V18h2V5l-4.5 1.08z" + }, + "children": [] + }] +}; +exports.ic_plus_one_outline = ic_plus_one_outline; \ No newline at end of file diff --git a/dist/md/ic_plus_one_twotone.js b/dist/md/ic_plus_one_twotone.js new file mode 100644 index 000000000..0c1d4f0cc --- /dev/null +++ b/dist/md/ic_plus_one_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_plus_one_twotone = void 0; +var ic_plus_one_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 8H8v4H4v2h4v4h2v-4h4v-2h-4V8zm4.5-1.92V7.9l2.5-.5V18h2V5l-4.5 1.08z" + }, + "children": [] + }] +}; +exports.ic_plus_one_twotone = ic_plus_one_twotone; \ No newline at end of file diff --git a/dist/md/ic_point_of_sale.js b/dist/md/ic_point_of_sale.js new file mode 100644 index 000000000..d743ca942 --- /dev/null +++ b/dist/md/ic_point_of_sale.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_point_of_sale = void 0; +var ic_point_of_sale = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M17,2H7C5.9,2,5,2.9,5,4v2c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V4C19,2.9,18.1,2,17,2z M17,6H7V4h10V6z M20,22H4 c-1.1,0-2-0.9-2-2v-1h20v1C22,21.1,21.1,22,20,22z M18.53,10.19C18.21,9.47,17.49,9,16.7,9H7.3c-0.79,0-1.51,0.47-1.83,1.19L2,18 h20L18.53,10.19z M9.5,16h-1C8.22,16,8,15.78,8,15.5C8,15.22,8.22,15,8.5,15h1c0.28,0,0.5,0.22,0.5,0.5C10,15.78,9.78,16,9.5,16z M9.5,14h-1C8.22,14,8,13.78,8,13.5C8,13.22,8.22,13,8.5,13h1c0.28,0,0.5,0.22,0.5,0.5C10,13.78,9.78,14,9.5,14z M9.5,12h-1 C8.22,12,8,11.78,8,11.5C8,11.22,8.22,11,8.5,11h1c0.28,0,0.5,0.22,0.5,0.5C10,11.78,9.78,12,9.5,12z M12.5,16h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C13,15.78,12.78,16,12.5,16z M12.5,14h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C13,13.78,12.78,14,12.5,14z M12.5,12h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C13,11.78,12.78,12,12.5,12z M15.5,16h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C16,15.78,15.78,16,15.5,16z M15.5,14h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C16,13.78,15.78,14,15.5,14z M15.5,12h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C16,11.78,15.78,12,15.5,12z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,2H7C5.9,2,5,2.9,5,4v2c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V4C19,2.9,18.1,2,17,2z M17,6H7V4h10V6z M20,22H4 c-1.1,0-2-0.9-2-2v-1h20v1C22,21.1,21.1,22,20,22z M18.53,10.19C18.21,9.47,17.49,9,16.7,9H7.3c-0.79,0-1.51,0.47-1.83,1.19L2,18 h20L18.53,10.19z M9.5,16h-1C8.22,16,8,15.78,8,15.5C8,15.22,8.22,15,8.5,15h1c0.28,0,0.5,0.22,0.5,0.5C10,15.78,9.78,16,9.5,16z M9.5,14h-1C8.22,14,8,13.78,8,13.5C8,13.22,8.22,13,8.5,13h1c0.28,0,0.5,0.22,0.5,0.5C10,13.78,9.78,14,9.5,14z M9.5,12h-1 C8.22,12,8,11.78,8,11.5C8,11.22,8.22,11,8.5,11h1c0.28,0,0.5,0.22,0.5,0.5C10,11.78,9.78,12,9.5,12z M12.5,16h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C13,15.78,12.78,16,12.5,16z M12.5,14h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C13,13.78,12.78,14,12.5,14z M12.5,12h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C13,11.78,12.78,12,12.5,12z M15.5,16h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C16,15.78,15.78,16,15.5,16z M15.5,14h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C16,13.78,15.78,14,15.5,14z M15.5,12h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C16,11.78,15.78,12,15.5,12z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_point_of_sale = ic_point_of_sale; \ No newline at end of file diff --git a/dist/md/ic_point_of_sale_outline.js b/dist/md/ic_point_of_sale_outline.js new file mode 100644 index 000000000..8433be61e --- /dev/null +++ b/dist/md/ic_point_of_sale_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_point_of_sale_outline = void 0; +var ic_point_of_sale_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M17,2H7C5.9,2,5,2.9,5,4v2c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V4C19,2.9,18.1,2,17,2z M17,6H7V4h10V6z M20,22H4 c-1.1,0-2-0.9-2-2v-1h20v1C22,21.1,21.1,22,20,22z M18.53,10.19C18.21,9.47,17.49,9,16.7,9H7.3c-0.79,0-1.51,0.47-1.83,1.19L2,18 h20L18.53,10.19z M9.5,16h-1C8.22,16,8,15.78,8,15.5C8,15.22,8.22,15,8.5,15h1c0.28,0,0.5,0.22,0.5,0.5C10,15.78,9.78,16,9.5,16z M9.5,14h-1C8.22,14,8,13.78,8,13.5C8,13.22,8.22,13,8.5,13h1c0.28,0,0.5,0.22,0.5,0.5C10,13.78,9.78,14,9.5,14z M9.5,12h-1 C8.22,12,8,11.78,8,11.5C8,11.22,8.22,11,8.5,11h1c0.28,0,0.5,0.22,0.5,0.5C10,11.78,9.78,12,9.5,12z M12.5,16h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C13,15.78,12.78,16,12.5,16z M12.5,14h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C13,13.78,12.78,14,12.5,14z M12.5,12h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C13,11.78,12.78,12,12.5,12z M15.5,16h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C16,15.78,15.78,16,15.5,16z M15.5,14h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C16,13.78,15.78,14,15.5,14z M15.5,12h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C16,11.78,15.78,12,15.5,12z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,2H7C5.9,2,5,2.9,5,4v2c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V4C19,2.9,18.1,2,17,2z M17,6H7V4h10V6z M20,22H4 c-1.1,0-2-0.9-2-2v-1h20v1C22,21.1,21.1,22,20,22z M18.53,10.19C18.21,9.47,17.49,9,16.7,9H7.3c-0.79,0-1.51,0.47-1.83,1.19L2,18 h20L18.53,10.19z M9.5,16h-1C8.22,16,8,15.78,8,15.5C8,15.22,8.22,15,8.5,15h1c0.28,0,0.5,0.22,0.5,0.5C10,15.78,9.78,16,9.5,16z M9.5,14h-1C8.22,14,8,13.78,8,13.5C8,13.22,8.22,13,8.5,13h1c0.28,0,0.5,0.22,0.5,0.5C10,13.78,9.78,14,9.5,14z M9.5,12h-1 C8.22,12,8,11.78,8,11.5C8,11.22,8.22,11,8.5,11h1c0.28,0,0.5,0.22,0.5,0.5C10,11.78,9.78,12,9.5,12z M12.5,16h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C13,15.78,12.78,16,12.5,16z M12.5,14h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C13,13.78,12.78,14,12.5,14z M12.5,12h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C13,11.78,12.78,12,12.5,12z M15.5,16h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C16,15.78,15.78,16,15.5,16z M15.5,14h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C16,13.78,15.78,14,15.5,14z M15.5,12h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C16,11.78,15.78,12,15.5,12z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_point_of_sale_outline = ic_point_of_sale_outline; \ No newline at end of file diff --git a/dist/md/ic_point_of_sale_twotone.js b/dist/md/ic_point_of_sale_twotone.js new file mode 100644 index 000000000..54b586068 --- /dev/null +++ b/dist/md/ic_point_of_sale_twotone.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_point_of_sale_twotone = void 0; +var ic_point_of_sale_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M9.5,16h-1C8.22,16,8,15.78,8,15.5C8,15.22,8.22,15,8.5,15h1c0.28,0,0.5,0.22,0.5,0.5 C10,15.78,9.78,16,9.5,16z M10,13.5c0-0.28-0.22-0.5-0.5-0.5h-1C8.22,13,8,13.22,8,13.5C8,13.78,8.22,14,8.5,14h1 C9.78,14,10,13.78,10,13.5z M10,11.5c0-0.28-0.22-0.5-0.5-0.5h-1C8.22,11,8,11.22,8,11.5C8,11.78,8.22,12,8.5,12h1 C9.78,12,10,11.78,10,11.5z M13,15.5c0-0.28-0.22-0.5-0.5-0.5h-1c-0.28,0-0.5,0.22-0.5,0.5c0,0.28,0.22,0.5,0.5,0.5h1 C12.78,16,13,15.78,13,15.5z M13,13.5c0-0.28-0.22-0.5-0.5-0.5h-1c-0.28,0-0.5,0.22-0.5,0.5c0,0.28,0.22,0.5,0.5,0.5h1 C12.78,14,13,13.78,13,13.5z M13,11.5c0-0.28-0.22-0.5-0.5-0.5h-1c-0.28,0-0.5,0.22-0.5,0.5c0,0.28,0.22,0.5,0.5,0.5h1 C12.78,12,13,11.78,13,11.5z M16,15.5c0-0.28-0.22-0.5-0.5-0.5h-1c-0.28,0-0.5,0.22-0.5,0.5c0,0.28,0.22,0.5,0.5,0.5h1 C15.78,16,16,15.78,16,15.5z M16,13.5c0-0.28-0.22-0.5-0.5-0.5h-1c-0.28,0-0.5,0.22-0.5,0.5c0,0.28,0.22,0.5,0.5,0.5h1 C15.78,14,16,13.78,16,13.5z M16,11.5c0-0.28-0.22-0.5-0.5-0.5h-1c-0.28,0-0.5,0.22-0.5,0.5c0,0.28,0.22,0.5,0.5,0.5h1 C15.78,12,16,11.78,16,11.5z M17,4H7v2h10V4z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M9.5,16h-1C8.22,16,8,15.78,8,15.5C8,15.22,8.22,15,8.5,15h1c0.28,0,0.5,0.22,0.5,0.5 C10,15.78,9.78,16,9.5,16z M10,13.5c0-0.28-0.22-0.5-0.5-0.5h-1C8.22,13,8,13.22,8,13.5C8,13.78,8.22,14,8.5,14h1 C9.78,14,10,13.78,10,13.5z M10,11.5c0-0.28-0.22-0.5-0.5-0.5h-1C8.22,11,8,11.22,8,11.5C8,11.78,8.22,12,8.5,12h1 C9.78,12,10,11.78,10,11.5z M13,15.5c0-0.28-0.22-0.5-0.5-0.5h-1c-0.28,0-0.5,0.22-0.5,0.5c0,0.28,0.22,0.5,0.5,0.5h1 C12.78,16,13,15.78,13,15.5z M13,13.5c0-0.28-0.22-0.5-0.5-0.5h-1c-0.28,0-0.5,0.22-0.5,0.5c0,0.28,0.22,0.5,0.5,0.5h1 C12.78,14,13,13.78,13,13.5z M13,11.5c0-0.28-0.22-0.5-0.5-0.5h-1c-0.28,0-0.5,0.22-0.5,0.5c0,0.28,0.22,0.5,0.5,0.5h1 C12.78,12,13,11.78,13,11.5z M16,15.5c0-0.28-0.22-0.5-0.5-0.5h-1c-0.28,0-0.5,0.22-0.5,0.5c0,0.28,0.22,0.5,0.5,0.5h1 C15.78,16,16,15.78,16,15.5z M16,13.5c0-0.28-0.22-0.5-0.5-0.5h-1c-0.28,0-0.5,0.22-0.5,0.5c0,0.28,0.22,0.5,0.5,0.5h1 C15.78,14,16,13.78,16,13.5z M16,11.5c0-0.28-0.22-0.5-0.5-0.5h-1c-0.28,0-0.5,0.22-0.5,0.5c0,0.28,0.22,0.5,0.5,0.5h1 C15.78,12,16,11.78,16,11.5z M17,4H7v2h10V4z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M17,2H7C5.9,2,5,2.9,5,4v2c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V4C19,2.9,18.1,2,17,2z M17,6H7V4h10V6z M20,22H4 c-1.1,0-2-0.9-2-2v-1h20v1C22,21.1,21.1,22,20,22z M18.53,10.19C18.21,9.47,17.49,9,16.7,9H7.3c-0.79,0-1.51,0.47-1.83,1.19L2,18 h20L18.53,10.19z M9.5,16h-1C8.22,16,8,15.78,8,15.5C8,15.22,8.22,15,8.5,15h1c0.28,0,0.5,0.22,0.5,0.5C10,15.78,9.78,16,9.5,16z M9.5,14h-1C8.22,14,8,13.78,8,13.5C8,13.22,8.22,13,8.5,13h1c0.28,0,0.5,0.22,0.5,0.5C10,13.78,9.78,14,9.5,14z M9.5,12h-1 C8.22,12,8,11.78,8,11.5C8,11.22,8.22,11,8.5,11h1c0.28,0,0.5,0.22,0.5,0.5C10,11.78,9.78,12,9.5,12z M12.5,16h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C13,15.78,12.78,16,12.5,16z M12.5,14h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C13,13.78,12.78,14,12.5,14z M12.5,12h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C13,11.78,12.78,12,12.5,12z M15.5,16h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C16,15.78,15.78,16,15.5,16z M15.5,14h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C16,13.78,15.78,14,15.5,14z M15.5,12h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C16,11.78,15.78,12,15.5,12z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,2H7C5.9,2,5,2.9,5,4v2c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V4C19,2.9,18.1,2,17,2z M17,6H7V4h10V6z M20,22H4 c-1.1,0-2-0.9-2-2v-1h20v1C22,21.1,21.1,22,20,22z M18.53,10.19C18.21,9.47,17.49,9,16.7,9H7.3c-0.79,0-1.51,0.47-1.83,1.19L2,18 h20L18.53,10.19z M9.5,16h-1C8.22,16,8,15.78,8,15.5C8,15.22,8.22,15,8.5,15h1c0.28,0,0.5,0.22,0.5,0.5C10,15.78,9.78,16,9.5,16z M9.5,14h-1C8.22,14,8,13.78,8,13.5C8,13.22,8.22,13,8.5,13h1c0.28,0,0.5,0.22,0.5,0.5C10,13.78,9.78,14,9.5,14z M9.5,12h-1 C8.22,12,8,11.78,8,11.5C8,11.22,8.22,11,8.5,11h1c0.28,0,0.5,0.22,0.5,0.5C10,11.78,9.78,12,9.5,12z M12.5,16h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C13,15.78,12.78,16,12.5,16z M12.5,14h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C13,13.78,12.78,14,12.5,14z M12.5,12h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C13,11.78,12.78,12,12.5,12z M15.5,16h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C16,15.78,15.78,16,15.5,16z M15.5,14h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C16,13.78,15.78,14,15.5,14z M15.5,12h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C16,11.78,15.78,12,15.5,12z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_point_of_sale_twotone = ic_point_of_sale_twotone; \ No newline at end of file diff --git a/dist/md/ic_policy.js b/dist/md/ic_policy.js new file mode 100644 index 000000000..5262a0b4d --- /dev/null +++ b/dist/md/ic_policy.js @@ -0,0 +1,79 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_policy = void 0; +var ic_policy = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M21,5l-9-4L3,5v6c0,5.55,3.84,10.74,9,12c2.3-0.56,4.33-1.9,5.88-3.71l-3.12-3.12c-1.94,1.29-4.58,1.07-6.29-0.64 c-1.95-1.95-1.95-5.12,0-7.07c1.95-1.95,5.12-1.95,7.07,0c1.71,1.71,1.92,4.35,0.64,6.29l2.9,2.9C20.29,15.69,21,13.38,21,11V5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21,5l-9-4L3,5v6c0,5.55,3.84,10.74,9,12c2.3-0.56,4.33-1.9,5.88-3.71l-3.12-3.12c-1.94,1.29-4.58,1.07-6.29-0.64 c-1.95-1.95-1.95-5.12,0-7.07c1.95-1.95,5.12-1.95,7.07,0c1.71,1.71,1.92,4.35,0.64,6.29l2.9,2.9C20.29,15.69,21,13.38,21,11V5z" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "3" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "3" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_policy = ic_policy; \ No newline at end of file diff --git a/dist/md/ic_policy_outline.js b/dist/md/ic_policy_outline.js new file mode 100644 index 000000000..72b2a68bf --- /dev/null +++ b/dist/md/ic_policy_outline.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_policy_outline = void 0; +var ic_policy_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,1L3,5v6c0,5.55,3.84,10.74,9,12c5.16-1.26,9-6.45,9-12V5L12,1z M19,11c0,1.85-0.51,3.65-1.38,5.21l-1.45-1.45 c1.29-1.94,1.07-4.58-0.64-6.29c-1.95-1.95-5.12-1.95-7.07,0c-1.95,1.95-1.95,5.12,0,7.07c1.71,1.71,4.35,1.92,6.29,0.64 l1.72,1.72c-1.19,1.42-2.73,2.51-4.47,3.04C7.98,19.69,5,15.52,5,11V6.3l7-3.11l7,3.11V11z M12,15c-1.66,0-3-1.34-3-3s1.34-3,3-3 s3,1.34,3,3S13.66,15,12,15z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,1L3,5v6c0,5.55,3.84,10.74,9,12c5.16-1.26,9-6.45,9-12V5L12,1z M19,11c0,1.85-0.51,3.65-1.38,5.21l-1.45-1.45 c1.29-1.94,1.07-4.58-0.64-6.29c-1.95-1.95-5.12-1.95-7.07,0c-1.95,1.95-1.95,5.12,0,7.07c1.71,1.71,4.35,1.92,6.29,0.64 l1.72,1.72c-1.19,1.42-2.73,2.51-4.47,3.04C7.98,19.69,5,15.52,5,11V6.3l7-3.11l7,3.11V11z M12,15c-1.66,0-3-1.34-3-3s1.34-3,3-3 s3,1.34,3,3S13.66,15,12,15z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_policy_outline = ic_policy_outline; \ No newline at end of file diff --git a/dist/md/ic_policy_twotone.js b/dist/md/ic_policy_twotone.js new file mode 100644 index 000000000..ed2a64c29 --- /dev/null +++ b/dist/md/ic_policy_twotone.js @@ -0,0 +1,77 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_policy_twotone = void 0; +var ic_policy_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M5,6.3V11c0,4.52,2.98,8.69,7,9.93c1.74-0.53,3.28-1.62,4.47-3.04l-1.72-1.72 c-1.94,1.29-4.58,1.07-6.29-0.64c-1.95-1.95-1.95-5.12,0-7.07c1.95-1.95,5.12-1.95,7.07,0c1.71,1.71,1.92,4.35,0.64,6.29 l1.45,1.45C18.49,14.65,19,12.85,19,11V6.3l-7-3.11L5,6.3z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M5,6.3V11c0,4.52,2.98,8.69,7,9.93c1.74-0.53,3.28-1.62,4.47-3.04l-1.72-1.72 c-1.94,1.29-4.58,1.07-6.29-0.64c-1.95-1.95-1.95-5.12,0-7.07c1.95-1.95,5.12-1.95,7.07,0c1.71,1.71,1.92,4.35,0.64,6.29 l1.45,1.45C18.49,14.65,19,12.85,19,11V6.3l-7-3.11L5,6.3z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M12,1L3,5v6c0,5.55,3.84,10.74,9,12c0.65-0.16,1.27-0.38,1.87-0.65c1.8-0.82,3.36-2.13,4.57-3.74 C20.04,16.46,21,13.77,21,11V5L12,1z M19,11c0,1.85-0.51,3.65-1.38,5.21l-1.45-1.45c1.29-1.94,1.07-4.58-0.64-6.29 c-1.95-1.95-5.12-1.95-7.07,0c-1.95,1.95-1.95,5.12,0,7.07c1.71,1.71,4.35,1.92,6.29,0.64l1.72,1.72 c-1.19,1.42-2.73,2.51-4.47,3.04C7.98,19.69,5,15.52,5,11V6.3l7-3.11l7,3.11V11z M15,12c0,1.66-1.34,3-3,3s-3-1.34-3-3s1.34-3,3-3 S15,10.34,15,12z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,1L3,5v6c0,5.55,3.84,10.74,9,12c0.65-0.16,1.27-0.38,1.87-0.65c1.8-0.82,3.36-2.13,4.57-3.74 C20.04,16.46,21,13.77,21,11V5L12,1z M19,11c0,1.85-0.51,3.65-1.38,5.21l-1.45-1.45c1.29-1.94,1.07-4.58-0.64-6.29 c-1.95-1.95-5.12-1.95-7.07,0c-1.95,1.95-1.95,5.12,0,7.07c1.71,1.71,4.35,1.92,6.29,0.64l1.72,1.72 c-1.19,1.42-2.73,2.51-4.47,3.04C7.98,19.69,5,15.52,5,11V6.3l7-3.11l7,3.11V11z M15,12c0,1.66-1.34,3-3,3s-3-1.34-3-3s1.34-3,3-3 S15,10.34,15,12z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_policy_twotone = ic_policy_twotone; \ No newline at end of file diff --git a/dist/md/ic_poll.js b/dist/md/ic_poll.js new file mode 100644 index 000000000..3bd32da07 --- /dev/null +++ b/dist/md/ic_poll.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_poll = void 0; +var ic_poll = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z" + }, + "children": [] + }] +}; +exports.ic_poll = ic_poll; \ No newline at end of file diff --git a/dist/md/ic_poll_outline.js b/dist/md/ic_poll_outline.js new file mode 100644 index 000000000..adb0bf613 --- /dev/null +++ b/dist/md/ic_poll_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_poll_outline = void 0; +var ic_poll_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM7 10h2v7H7zm4-3h2v10h-2zm4 6h2v4h-2z" + }, + "children": [] + }] +}; +exports.ic_poll_outline = ic_poll_outline; \ No newline at end of file diff --git a/dist/md/ic_poll_twotone.js b/dist/md/ic_poll_twotone.js new file mode 100644 index 000000000..04adb73a0 --- /dev/null +++ b/dist/md/ic_poll_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_poll_twotone = void 0; +var ic_poll_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 19h14V5H5v14zm10-6h2v4h-2v-4zm-4-6h2v10h-2V7zm-4 3h2v7H7v-7z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM7 10h2v7H7zm4-3h2v10h-2zm4 6h2v4h-2z" + }, + "children": [] + }] +}; +exports.ic_poll_twotone = ic_poll_twotone; \ No newline at end of file diff --git a/dist/md/ic_polymer.js b/dist/md/ic_polymer.js new file mode 100644 index 000000000..322bf91c1 --- /dev/null +++ b/dist/md/ic_polymer.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_polymer = void 0; +var ic_polymer = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 4h-4L7.11 16.63 4.5 12 9 4H5L.5 12 5 20h4l7.89-12.63L19.5 12 15 20h4l4.5-8z" + }, + "children": [] + }] +}; +exports.ic_polymer = ic_polymer; \ No newline at end of file diff --git a/dist/md/ic_polymer_outline.js b/dist/md/ic_polymer_outline.js new file mode 100644 index 000000000..b71526ae1 --- /dev/null +++ b/dist/md/ic_polymer_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_polymer_outline = void 0; +var ic_polymer_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 4h-4L7.11 16.63 4.5 12 9 4H5L.5 12 5 20h4l7.89-12.63L19.5 12 15 20h4l4.5-8L19 4z" + }, + "children": [] + }] +}; +exports.ic_polymer_outline = ic_polymer_outline; \ No newline at end of file diff --git a/dist/md/ic_polymer_twotone.js b/dist/md/ic_polymer_twotone.js new file mode 100644 index 000000000..04728714c --- /dev/null +++ b/dist/md/ic_polymer_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_polymer_twotone = void 0; +var ic_polymer_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 4h-4L7.11 16.63 4.5 12 9 4H5L.5 12 5 20h4l7.89-12.63L19.5 12 15 20h4l4.5-8L19 4z" + }, + "children": [] + }] +}; +exports.ic_polymer_twotone = ic_polymer_twotone; \ No newline at end of file diff --git a/dist/md/ic_pool.js b/dist/md/ic_pool.js new file mode 100644 index 000000000..f21684feb --- /dev/null +++ b/dist/md/ic_pool.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_pool = void 0; +var ic_pool = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 21c-1.11 0-1.73-.37-2.18-.64-.37-.22-.6-.36-1.15-.36-.56 0-.78.13-1.15.36-.46.27-1.07.64-2.18.64s-1.73-.37-2.18-.64c-.37-.22-.6-.36-1.15-.36-.56 0-.78.13-1.15.36-.46.27-1.08.64-2.19.64-1.11 0-1.73-.37-2.18-.64-.37-.23-.6-.36-1.15-.36s-.78.13-1.15.36c-.46.27-1.08.64-2.19.64v-2c.56 0 .78-.13 1.15-.36.46-.27 1.08-.64 2.19-.64s1.73.37 2.18.64c.37.23.59.36 1.15.36.56 0 .78-.13 1.15-.36.46-.27 1.08-.64 2.19-.64 1.11 0 1.73.37 2.18.64.37.22.6.36 1.15.36s.78-.13 1.15-.36c.45-.27 1.07-.64 2.18-.64s1.73.37 2.18.64c.37.23.59.36 1.15.36v2zm0-4.5c-1.11 0-1.73-.37-2.18-.64-.37-.22-.6-.36-1.15-.36-.56 0-.78.13-1.15.36-.45.27-1.07.64-2.18.64s-1.73-.37-2.18-.64c-.37-.22-.6-.36-1.15-.36-.56 0-.78.13-1.15.36-.45.27-1.07.64-2.18.64s-1.73-.37-2.18-.64c-.37-.22-.6-.36-1.15-.36s-.78.13-1.15.36c-.47.27-1.09.64-2.2.64v-2c.56 0 .78-.13 1.15-.36.45-.27 1.07-.64 2.18-.64s1.73.37 2.18.64c.37.22.6.36 1.15.36.56 0 .78-.13 1.15-.36.45-.27 1.07-.64 2.18-.64s1.73.37 2.18.64c.37.22.6.36 1.15.36s.78-.13 1.15-.36c.45-.27 1.07-.64 2.18-.64s1.73.37 2.18.64c.37.22.6.36 1.15.36v2zM8.67 12c.56 0 .78-.13 1.15-.36.46-.27 1.08-.64 2.19-.64 1.11 0 1.73.37 2.18.64.37.22.6.36 1.15.36s.78-.13 1.15-.36c.12-.07.26-.15.41-.23L10.48 5C8.93 3.45 7.5 2.99 5 3v2.5c1.82-.01 2.89.39 4 1.5l1 1-3.25 3.25c.31.12.56.27.77.39.37.23.59.36 1.15.36z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "16.5", + "cy": "5.5", + "r": "2.5" + }, + "children": [] + }] +}; +exports.ic_pool = ic_pool; \ No newline at end of file diff --git a/dist/md/ic_pool_outline.js b/dist/md/ic_pool_outline.js new file mode 100644 index 000000000..e4e10661d --- /dev/null +++ b/dist/md/ic_pool_outline.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_pool_outline = void 0; +var ic_pool_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 8l-3.25 3.25c.31.12.56.27.77.39.37.23.59.36 1.15.36s.78-.13 1.15-.36c.46-.27 1.08-.64 2.19-.64s1.73.37 2.18.64c.37.22.6.36 1.15.36.55 0 .78-.13 1.15-.36.12-.07.26-.15.41-.23L10.48 5C8.93 3.45 7.5 2.99 5 3v2.5c1.82-.01 2.89.39 4 1.5l1 1zm12 8.5h-.02.02zm-16.65-1c.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64s1.73-.37 2.18-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64s1.73-.37 2.18-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.06.63 2.16.64v-2c-.55 0-.78-.14-1.15-.36-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.37.23-.6.36-1.15.36s-.78-.14-1.15-.36c-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.37.23-.59.36-1.15.36-.55 0-.78-.14-1.15-.36-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.37.23-.59.36-1.15.36v2c1.11 0 1.73-.37 2.2-.64.37-.23.6-.36 1.15-.36zM18.67 18c-1.11 0-1.73.37-2.18.64-.37.23-.6.36-1.15.36-.55 0-.78-.14-1.15-.36-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.19.64c-.37.23-.59.36-1.15.36s-.78-.13-1.15-.36c-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.19.64c-.37.23-.59.36-1.15.36v2c1.11 0 1.73-.37 2.19-.64.37-.23.6-.36 1.15-.36.55 0 .78.13 1.15.36.45.27 1.07.64 2.18.64s1.73-.37 2.19-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64s1.72-.37 2.18-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64v-2c-.56 0-.78-.13-1.15-.36-.45-.27-1.07-.64-2.18-.64z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "16.5", + "cy": "5.5", + "r": "2.5" + }, + "children": [] + }] +}; +exports.ic_pool_outline = ic_pool_outline; \ No newline at end of file diff --git a/dist/md/ic_pool_twotone.js b/dist/md/ic_pool_twotone.js new file mode 100644 index 000000000..df0b5d9fe --- /dev/null +++ b/dist/md/ic_pool_twotone.js @@ -0,0 +1,48 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_pool_twotone = void 0; +var ic_pool_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 21c-1.11 0-1.73-.37-2.18-.64-.37-.22-.6-.36-1.15-.36-.56 0-.78.13-1.15.36-.46.27-1.07.64-2.18.64s-1.73-.37-2.18-.64c-.37-.22-.6-.36-1.15-.36-.56 0-.78.13-1.15.36-.46.27-1.08.64-2.19.64s-1.73-.37-2.18-.64c-.37-.23-.6-.36-1.15-.36s-.78.13-1.15.36c-.46.27-1.08.64-2.19.64v-2c.56 0 .78-.13 1.15-.36.46-.27 1.08-.64 2.19-.64s1.73.37 2.18.64c.37.23.59.36 1.15.36.56 0 .78-.13 1.15-.36.46-.27 1.08-.64 2.19-.64s1.73.37 2.18.64c.37.22.6.36 1.15.36s.78-.13 1.15-.36c.45-.27 1.07-.64 2.18-.64s1.73.37 2.18.64c.37.23.59.36 1.15.36v2zm0-4.5c-1.11 0-1.73-.37-2.18-.64-.37-.22-.6-.36-1.15-.36-.56 0-.78.13-1.15.36-.45.27-1.07.64-2.18.64s-1.73-.37-2.18-.64c-.37-.22-.6-.36-1.15-.36-.56 0-.78.13-1.15.36-.45.27-1.07.64-2.18.64s-1.73-.37-2.18-.64c-.37-.22-.6-.36-1.15-.36s-.78.13-1.15.36c-.47.27-1.09.64-2.2.64v-2c.56 0 .78-.13 1.15-.36.45-.27 1.07-.64 2.18-.64s1.73.37 2.18.64c.37.22.6.36 1.15.36.56 0 .78-.13 1.15-.36.45-.27 1.07-.64 2.18-.64s1.73.37 2.18.64c.37.22.6.36 1.15.36s.78-.13 1.15-.36c.45-.27 1.07-.64 2.18-.64s1.73.37 2.18.64c.37.22.6.36 1.15.36v2H22zM8.67 12c.56 0 .78-.13 1.15-.36.46-.27 1.08-.64 2.19-.64s1.73.37 2.18.64c.37.22.6.36 1.15.36s.78-.13 1.15-.36c.12-.07.26-.15.41-.23L10.48 5C8.93 3.45 7.5 2.99 5 3v2.5c1.82-.01 2.89.39 4 1.5l1 1-3.25 3.25c.31.12.56.27.77.39.37.23.59.36 1.15.36z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "16.5", + "cy": "5.5", + "opacity": ".3", + "r": "2.5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 16.5h-.02.02zM10 8l-3.25 3.25c.31.12.56.27.77.39.37.23.59.36 1.15.36s.78-.13 1.15-.36c.46-.27 1.08-.64 2.19-.64s1.73.37 2.18.64c.37.22.6.36 1.15.36.55 0 .78-.13 1.15-.36.12-.07.26-.15.41-.23L10.48 5C8.93 3.45 7.5 2.99 5 3v2.5c1.82-.01 2.89.39 4 1.5l1 1zm-4.65 7.5c.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64s1.73-.37 2.18-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64s1.73-.37 2.18-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.06.63 2.16.64v-2c-.55 0-.78-.14-1.15-.36-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.37.23-.6.36-1.15.36s-.78-.14-1.15-.36c-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.37.23-.59.36-1.15.36-.55 0-.78-.14-1.15-.36-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.37.23-.59.36-1.15.36v2c1.11 0 1.73-.37 2.2-.64.37-.23.6-.36 1.15-.36zM18.67 18c-1.11 0-1.73.37-2.18.64-.37.23-.6.36-1.15.36-.55 0-.78-.14-1.15-.36-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.19.64c-.37.23-.59.36-1.15.36s-.78-.13-1.15-.36c-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.19.64c-.37.23-.59.36-1.15.36v2c1.11 0 1.73-.37 2.19-.64.37-.23.6-.36 1.15-.36.55 0 .78.13 1.15.36.45.27 1.07.64 2.18.64s1.73-.37 2.19-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64s1.72-.37 2.18-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64v-2c-.56 0-.78-.13-1.15-.36-.45-.27-1.07-.64-2.18-.64z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "16.5", + "cy": "5.5", + "r": "2.5" + }, + "children": [] + }] +}; +exports.ic_pool_twotone = ic_pool_twotone; \ No newline at end of file diff --git a/dist/md/ic_portable_wifi_off.js b/dist/md/ic_portable_wifi_off.js new file mode 100644 index 000000000..fbae4d9f3 --- /dev/null +++ b/dist/md/ic_portable_wifi_off.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_portable_wifi_off = void 0; +var ic_portable_wifi_off = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0zm0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17.56 14.24c.28-.69.44-1.45.44-2.24 0-3.31-2.69-6-6-6-.79 0-1.55.16-2.24.44l1.62 1.62c.2-.03.41-.06.62-.06 2.21 0 4 1.79 4 4 0 .21-.02.42-.05.63l1.61 1.61zM12 4c4.42 0 8 3.58 8 8 0 1.35-.35 2.62-.95 3.74l1.47 1.47C21.46 15.69 22 13.91 22 12c0-5.52-4.48-10-10-10-1.91 0-3.69.55-5.21 1.47l1.46 1.46C9.37 4.34 10.65 4 12 4zM3.27 2.5L2 3.77l2.1 2.1C2.79 7.57 2 9.69 2 12c0 3.7 2.01 6.92 4.99 8.65l1-1.73C5.61 17.53 4 14.96 4 12c0-1.76.57-3.38 1.53-4.69l1.43 1.44C6.36 9.68 6 10.8 6 12c0 2.22 1.21 4.15 3 5.19l1-1.74c-1.19-.7-2-1.97-2-3.45 0-.65.17-1.25.44-1.79l1.58 1.58L10 12c0 1.1.9 2 2 2l.21-.02.01.01 7.51 7.51L21 20.23 4.27 3.5l-1-1z" + }, + "children": [] + }] +}; +exports.ic_portable_wifi_off = ic_portable_wifi_off; \ No newline at end of file diff --git a/dist/md/ic_portable_wifi_off_outline.js b/dist/md/ic_portable_wifi_off_outline.js new file mode 100644 index 000000000..55904278e --- /dev/null +++ b/dist/md/ic_portable_wifi_off_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_portable_wifi_off_outline = void 0; +var ic_portable_wifi_off_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3.42 2.36L2.01 3.78 4.1 5.87C2.79 7.57 2 9.69 2 12c0 3.7 2.01 6.92 4.99 8.65l1-1.73C5.61 17.53 4 14.96 4 12c0-1.76.57-3.38 1.53-4.69l1.43 1.44C6.36 9.68 6 10.8 6 12c0 2.22 1.21 4.15 3 5.19l1-1.74c-1.19-.7-2-1.97-2-3.45 0-.65.17-1.25.44-1.79l1.58 1.58L10 12c0 1.1.9 2 2 2l.21-.02 7.52 7.52 1.41-1.41L3.42 2.36zm14.29 11.46c.18-.57.29-1.19.29-1.82 0-3.31-2.69-6-6-6-.63 0-1.25.11-1.82.29l1.72 1.72c.03 0 .06-.01.1-.01 2.21 0 4 1.79 4 4 0 .04-.01.07-.01.11l1.72 1.71zM12 4c4.42 0 8 3.58 8 8 0 1.2-.29 2.32-.77 3.35l1.49 1.49C21.53 15.4 22 13.76 22 12c0-5.52-4.48-10-10-10-1.76 0-3.4.48-4.84 1.28l1.48 1.48C9.66 4.28 10.8 4 12 4z" + }, + "children": [] + }] +}; +exports.ic_portable_wifi_off_outline = ic_portable_wifi_off_outline; \ No newline at end of file diff --git a/dist/md/ic_portable_wifi_off_twotone.js b/dist/md/ic_portable_wifi_off_twotone.js new file mode 100644 index 000000000..855d87305 --- /dev/null +++ b/dist/md/ic_portable_wifi_off_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_portable_wifi_off_twotone = void 0; +var ic_portable_wifi_off_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3.42 2.36L2.01 3.78 4.1 5.87C2.79 7.57 2 9.69 2 12c0 3.7 2.01 6.92 4.99 8.65l1-1.73C5.61 17.53 4 14.96 4 12c0-1.76.57-3.38 1.53-4.69l1.43 1.44C6.36 9.68 6 10.8 6 12c0 2.22 1.21 4.15 3 5.19l1-1.74c-1.19-.7-2-1.97-2-3.45 0-.65.17-1.25.44-1.79l1.58 1.58L10 12c0 1.1.9 2 2 2l.21-.02 7.52 7.52 1.41-1.41L3.42 2.36zm14.29 11.46c.18-.57.29-1.19.29-1.82 0-3.31-2.69-6-6-6-.63 0-1.25.11-1.82.29l1.72 1.72c.03 0 .06-.01.1-.01 2.21 0 4 1.79 4 4 0 .04-.01.07-.01.11l1.72 1.71zM12 4c4.42 0 8 3.58 8 8 0 1.2-.29 2.32-.77 3.35l1.49 1.49C21.53 15.4 22 13.76 22 12c0-5.52-4.48-10-10-10-1.76 0-3.4.48-4.84 1.28l1.48 1.48C9.66 4.28 10.8 4 12 4z" + }, + "children": [] + }] +}; +exports.ic_portable_wifi_off_twotone = ic_portable_wifi_off_twotone; \ No newline at end of file diff --git a/dist/md/ic_portrait.js b/dist/md/ic_portrait.js new file mode 100644 index 000000000..069f508a3 --- /dev/null +++ b/dist/md/ic_portrait.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_portrait = void 0; +var ic_portrait = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 12.25c1.24 0 2.25-1.01 2.25-2.25S13.24 7.75 12 7.75 9.75 8.76 9.75 10s1.01 2.25 2.25 2.25zm4.5 4c0-1.5-3-2.25-4.5-2.25s-4.5.75-4.5 2.25V17h9v-.75zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" + }, + "children": [] + }] +}; +exports.ic_portrait = ic_portrait; \ No newline at end of file diff --git a/dist/md/ic_portrait_outline.js b/dist/md/ic_portrait_outline.js new file mode 100644 index 000000000..7b9f3265a --- /dev/null +++ b/dist/md/ic_portrait_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_portrait_outline = void 0; +var ic_portrait_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 12c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm6 8.58c0-2.5-3.97-3.58-6-3.58s-6 1.08-6 3.58V18h12v-1.42zM8.48 16c.74-.51 2.23-1 3.52-1s2.78.49 3.52 1H8.48zM19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" + }, + "children": [] + }] +}; +exports.ic_portrait_outline = ic_portrait_outline; \ No newline at end of file diff --git a/dist/md/ic_portrait_twotone.js b/dist/md/ic_portrait_twotone.js new file mode 100644 index 000000000..70bab3a74 --- /dev/null +++ b/dist/md/ic_portrait_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_portrait_twotone = void 0; +var ic_portrait_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 19h14V5H5v14zm7-13c1.65 0 3 1.35 3 3s-1.35 3-3 3-3-1.35-3-3 1.35-3 3-3zM6 16.58C6 14.08 9.97 13 12 13s6 1.08 6 3.58V18H6v-1.42z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 12c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm6 8.58c0-2.5-3.97-3.58-6-3.58s-6 1.08-6 3.58V18h12v-1.42zM8.48 16c.74-.51 2.23-1 3.52-1s2.78.49 3.52 1H8.48zM19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" + }, + "children": [] + }] +}; +exports.ic_portrait_twotone = ic_portrait_twotone; \ No newline at end of file diff --git a/dist/md/ic_post_add.js b/dist/md/ic_post_add.js new file mode 100644 index 000000000..9fa1ee24a --- /dev/null +++ b/dist/md/ic_post_add.js @@ -0,0 +1,123 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_post_add = void 0; +var ic_post_add = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,19.22H5V7h7V5H5C3.9,5,3,5.9,3,7v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-7h-2V19.22z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,19.22H5V7h7V5H5C3.9,5,3,5.9,3,7v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-7h-2V19.22z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19,2h-2v3h-3c0.01,0.01,0,2,0,2h3v2.99c0.01,0.01,2,0,2,0V7h3V5h-3V2z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,2h-2v3h-3c0.01,0.01,0,2,0,2h3v2.99c0.01,0.01,2,0,2,0V7h3V5h-3V2z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "8", + "x": "7", + "y": "9" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "8", + "x": "7", + "y": "9" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "7,12 7,14 15,14 15,12 12,12" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "7,12 7,14 15,14 15,12 12,12" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "8", + "x": "7", + "y": "15" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "8", + "x": "7", + "y": "15" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_post_add = ic_post_add; \ No newline at end of file diff --git a/dist/md/ic_post_add_outline.js b/dist/md/ic_post_add_outline.js new file mode 100644 index 000000000..0d0a5eb20 --- /dev/null +++ b/dist/md/ic_post_add_outline.js @@ -0,0 +1,123 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_post_add_outline = void 0; +var ic_post_add_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,19.22H5V7h7V5H5C3.9,5,3,5.9,3,7v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-7h-2V19.22z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,19.22H5V7h7V5H5C3.9,5,3,5.9,3,7v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-7h-2V19.22z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19,2h-2v3h-3c0.01,0.01,0,2,0,2h3v2.99c0.01,0.01,2,0,2,0V7h3V5h-3V2z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,2h-2v3h-3c0.01,0.01,0,2,0,2h3v2.99c0.01,0.01,2,0,2,0V7h3V5h-3V2z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "8", + "x": "7", + "y": "9" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "8", + "x": "7", + "y": "9" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "7,12 7,14 15,14 15,12 12,12" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "7,12 7,14 15,14 15,12 12,12" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "8", + "x": "7", + "y": "15" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "8", + "x": "7", + "y": "15" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_post_add_outline = ic_post_add_outline; \ No newline at end of file diff --git a/dist/md/ic_post_add_twotone.js b/dist/md/ic_post_add_twotone.js new file mode 100644 index 000000000..2a2417041 --- /dev/null +++ b/dist/md/ic_post_add_twotone.js @@ -0,0 +1,123 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_post_add_twotone = void 0; +var ic_post_add_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,19.22H5V7h7V5H5C3.9,5,3,5.9,3,7v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-7h-2V19.22z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,19.22H5V7h7V5H5C3.9,5,3,5.9,3,7v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-7h-2V19.22z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19,2h-2v3h-3c0.01,0.01,0,2,0,2h3v2.99c0.01,0.01,2,0,2,0V7h3V5h-3V2z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,2h-2v3h-3c0.01,0.01,0,2,0,2h3v2.99c0.01,0.01,2,0,2,0V7h3V5h-3V2z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "8", + "x": "7", + "y": "9" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "8", + "x": "7", + "y": "9" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "7,12 7,14 15,14 15,12 12,12" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "7,12 7,14 15,14 15,12 12,12" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "8", + "x": "7", + "y": "15" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "8", + "x": "7", + "y": "15" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_post_add_twotone = ic_post_add_twotone; \ No newline at end of file diff --git a/dist/md/ic_power.js b/dist/md/ic_power.js new file mode 100644 index 000000000..4a5157f4f --- /dev/null +++ b/dist/md/ic_power.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_power = void 0; +var ic_power = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16.01 7L16 3h-2v4h-4V3H8v4h-.01C7 6.99 6 7.99 6 8.99v5.49L9.5 18v3h5v-3l3.5-3.51v-5.5c0-1-1-2-1.99-1.99z" + }, + "children": [] + }] +}; +exports.ic_power = ic_power; \ No newline at end of file diff --git a/dist/md/ic_power_input.js b/dist/md/ic_power_input.js new file mode 100644 index 000000000..3c051312c --- /dev/null +++ b/dist/md/ic_power_input.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_power_input = void 0; +var ic_power_input = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M2 9v2h19V9H2zm0 6h5v-2H2v2zm7 0h5v-2H9v2zm7 0h5v-2h-5v2z" + }, + "children": [] + }] +}; +exports.ic_power_input = ic_power_input; \ No newline at end of file diff --git a/dist/md/ic_power_input_outline.js b/dist/md/ic_power_input_outline.js new file mode 100644 index 000000000..7800b5cf3 --- /dev/null +++ b/dist/md/ic_power_input_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_power_input_outline = void 0; +var ic_power_input_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M2 9v2h19V9H2zm0 6h5v-2H2v2zm7 0h5v-2H9v2zm7 0h5v-2h-5v2z" + }, + "children": [] + }] +}; +exports.ic_power_input_outline = ic_power_input_outline; \ No newline at end of file diff --git a/dist/md/ic_power_input_twotone.js b/dist/md/ic_power_input_twotone.js new file mode 100644 index 000000000..4826dc360 --- /dev/null +++ b/dist/md/ic_power_input_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_power_input_twotone = void 0; +var ic_power_input_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M2 9v2h19V9H2zm0 6h5v-2H2v2zm7 0h5v-2H9v2zm7 0h5v-2h-5v2z" + }, + "children": [] + }] +}; +exports.ic_power_input_twotone = ic_power_input_twotone; \ No newline at end of file diff --git a/dist/md/ic_power_off.js b/dist/md/ic_power_off.js new file mode 100644 index 000000000..faf2d277d --- /dev/null +++ b/dist/md/ic_power_off.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_power_off = void 0; +var ic_power_off = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 14.49V9c0-1-1.01-2.01-2-2V3h-2v4h-4V3H8v2.48l9.51 9.5.49-.49zm-1.76 1.77L7.2 7.2l-.01.01L3.98 4 2.71 5.25l3.36 3.36C6.04 8.74 6 8.87 6 9v5.48L9.5 18v3h5v-3l.48-.48L19.45 22l1.26-1.28-4.47-4.46z" + }, + "children": [] + }] +}; +exports.ic_power_off = ic_power_off; \ No newline at end of file diff --git a/dist/md/ic_power_off_outline.js b/dist/md/ic_power_off_outline.js new file mode 100644 index 000000000..0edc3ea65 --- /dev/null +++ b/dist/md/ic_power_off_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_power_off_outline = void 0; +var ic_power_off_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 3H8v1.88l2 2zm6 6v3.88l1.8 1.8.2-.2V9c0-1.1-.9-2-2-2V3h-2v4h-3.88l2 2H16zM4.12 3.84L2.71 5.25 6 8.54v5.96L9.5 18v3h5v-3l.48-.48 4.47 4.47 1.41-1.41L4.12 3.84zm8.38 13.33V19h-1v-1.83L8 13.65v-3.11l5.57 5.57-1.07 1.06z" + }, + "children": [] + }] +}; +exports.ic_power_off_outline = ic_power_off_outline; \ No newline at end of file diff --git a/dist/md/ic_power_off_twotone.js b/dist/md/ic_power_off_twotone.js new file mode 100644 index 000000000..a03a107b0 --- /dev/null +++ b/dist/md/ic_power_off_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_power_off_twotone = void 0; +var ic_power_off_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12.12 9L16 12.88V9zm-.62 8.17V19h1v-1.83l1.07-1.06L8 10.54v3.11z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 3H8v1.88l2 2zm6 6v3.88l1.8 1.8.2-.2V9c0-1.1-.9-2-2-2V3h-2v4h-3.88l2 2H16zM4.12 3.84L2.71 5.25 6 8.54v5.96L9.5 18v3h5v-3l.48-.48 4.47 4.47 1.41-1.41L4.12 3.84zm8.38 13.33V19h-1v-1.83L8 13.65v-3.11l5.57 5.57-1.07 1.06z" + }, + "children": [] + }] +}; +exports.ic_power_off_twotone = ic_power_off_twotone; \ No newline at end of file diff --git a/dist/md/ic_power_outline.js b/dist/md/ic_power_outline.js new file mode 100644 index 000000000..18814858b --- /dev/null +++ b/dist/md/ic_power_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_power_outline = void 0; +var ic_power_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 9v4.66l-3.5 3.51V19h-1v-1.83L8 13.65V9h8m0-6h-2v4h-4V3H8v4h-.01C6.9 6.99 6 7.89 6 8.98v5.52L9.5 18v3h5v-3l3.5-3.51V9c0-1.1-.9-2-2-2V3z" + }, + "children": [] + }] +}; +exports.ic_power_outline = ic_power_outline; \ No newline at end of file diff --git a/dist/md/ic_power_settings_new.js b/dist/md/ic_power_settings_new.js new file mode 100644 index 000000000..0834c2e45 --- /dev/null +++ b/dist/md/ic_power_settings_new.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_power_settings_new = void 0; +var ic_power_settings_new = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 3h-2v10h2V3zm4.83 2.17l-1.42 1.42C17.99 7.86 19 9.81 19 12c0 3.87-3.13 7-7 7s-7-3.13-7-7c0-2.19 1.01-4.14 2.58-5.42L6.17 5.17C4.23 6.82 3 9.26 3 12c0 4.97 4.03 9 9 9s9-4.03 9-9c0-2.74-1.23-5.18-3.17-6.83z" + }, + "children": [] + }] +}; +exports.ic_power_settings_new = ic_power_settings_new; \ No newline at end of file diff --git a/dist/md/ic_power_settings_new_outline.js b/dist/md/ic_power_settings_new_outline.js new file mode 100644 index 000000000..cce76df67 --- /dev/null +++ b/dist/md/ic_power_settings_new_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_power_settings_new_outline = void 0; +var ic_power_settings_new_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 3h-2v10h2V3zm4.83 2.17l-1.42 1.42C17.99 7.86 19 9.81 19 12c0 3.87-3.13 7-7 7s-7-3.13-7-7c0-2.19 1.01-4.14 2.58-5.42L6.17 5.17C4.23 6.82 3 9.26 3 12c0 4.97 4.03 9 9 9s9-4.03 9-9c0-2.74-1.23-5.18-3.17-6.83z" + }, + "children": [] + }] +}; +exports.ic_power_settings_new_outline = ic_power_settings_new_outline; \ No newline at end of file diff --git a/dist/md/ic_power_settings_new_twotone.js b/dist/md/ic_power_settings_new_twotone.js new file mode 100644 index 000000000..fa64a2fc1 --- /dev/null +++ b/dist/md/ic_power_settings_new_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_power_settings_new_twotone = void 0; +var ic_power_settings_new_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 3h-2v10h2V3zm4.83 2.17l-1.42 1.42C17.99 7.86 19 9.81 19 12c0 3.87-3.13 7-7 7s-7-3.13-7-7c0-2.19 1.01-4.14 2.58-5.42L6.17 5.17C4.23 6.82 3 9.26 3 12c0 4.97 4.03 9 9 9s9-4.03 9-9c0-2.74-1.23-5.18-3.17-6.83z" + }, + "children": [] + }] +}; +exports.ic_power_settings_new_twotone = ic_power_settings_new_twotone; \ No newline at end of file diff --git a/dist/md/ic_power_twotone.js b/dist/md/ic_power_twotone.js new file mode 100644 index 000000000..91bcdd01d --- /dev/null +++ b/dist/md/ic_power_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_power_twotone = void 0; +var ic_power_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8 13.65l3.5 3.52V19h1v-1.83l3.5-3.51V9H8z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 7V3h-2v4h-4V3H8v4h-.01C6.89 7 6 7.89 6 8.98v5.52L9.5 18v3h5v-3l3.5-3.5V9c0-1.1-.9-2-2-2zm0 6.66l-3.5 3.51V19h-1v-1.83L8 13.65V9h8v4.66z" + }, + "children": [] + }] +}; +exports.ic_power_twotone = ic_power_twotone; \ No newline at end of file diff --git a/dist/md/ic_precision_manufacturing_outline.js b/dist/md/ic_precision_manufacturing_outline.js new file mode 100644 index 000000000..7f48aa5a4 --- /dev/null +++ b/dist/md/ic_precision_manufacturing_outline.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_precision_manufacturing_outline = void 0; +var ic_precision_manufacturing_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M19.93,8.35l-3.6,1.68L14,7.7V6.3l2.33-2.33l3.6,1.68c0.38,0.18,0.82,0.01,1-0.36c0.18-0.38,0.01-0.82-0.36-1l-3.92-1.83 c-0.38-0.18-0.83-0.1-1.13,0.2L13.78,4.4C13.6,4.16,13.32,4,13,4c-0.55,0-1,0.45-1,1v1H8.82C8.4,4.84,7.3,4,6,4C4.34,4,3,5.34,3,7 c0,1.1,0.6,2.05,1.48,2.58L7.08,18H6c-1.1,0-2,0.9-2,2v1h13v-1c0-1.1-0.9-2-2-2h-1.62L8.41,8.77C8.58,8.53,8.72,8.28,8.82,8H12v1 c0,0.55,0.45,1,1,1c0.32,0,0.6-0.16,0.78-0.4l1.74,1.74c0.3,0.3,0.75,0.38,1.13,0.2l3.92-1.83c0.38-0.18,0.54-0.62,0.36-1 C20.75,8.34,20.31,8.17,19.93,8.35z M6,8C5.45,8,5,7.55,5,7c0-0.55,0.45-1,1-1s1,0.45,1,1C7,7.55,6.55,8,6,8z M11.11,18H9.17 l-2.46-8h0.1L11.11,18z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19.93,8.35l-3.6,1.68L14,7.7V6.3l2.33-2.33l3.6,1.68c0.38,0.18,0.82,0.01,1-0.36c0.18-0.38,0.01-0.82-0.36-1l-3.92-1.83 c-0.38-0.18-0.83-0.1-1.13,0.2L13.78,4.4C13.6,4.16,13.32,4,13,4c-0.55,0-1,0.45-1,1v1H8.82C8.4,4.84,7.3,4,6,4C4.34,4,3,5.34,3,7 c0,1.1,0.6,2.05,1.48,2.58L7.08,18H6c-1.1,0-2,0.9-2,2v1h13v-1c0-1.1-0.9-2-2-2h-1.62L8.41,8.77C8.58,8.53,8.72,8.28,8.82,8H12v1 c0,0.55,0.45,1,1,1c0.32,0,0.6-0.16,0.78-0.4l1.74,1.74c0.3,0.3,0.75,0.38,1.13,0.2l3.92-1.83c0.38-0.18,0.54-0.62,0.36-1 C20.75,8.34,20.31,8.17,19.93,8.35z M6,8C5.45,8,5,7.55,5,7c0-0.55,0.45-1,1-1s1,0.45,1,1C7,7.55,6.55,8,6,8z M11.11,18H9.17 l-2.46-8h0.1L11.11,18z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_precision_manufacturing_outline = ic_precision_manufacturing_outline; \ No newline at end of file diff --git a/dist/md/ic_precision_manufacturing_twotone.js b/dist/md/ic_precision_manufacturing_twotone.js new file mode 100644 index 000000000..935decee5 --- /dev/null +++ b/dist/md/ic_precision_manufacturing_twotone.js @@ -0,0 +1,87 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_precision_manufacturing_twotone = void 0; +var ic_precision_manufacturing_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "opacity": ".3", + "points": "6.71,10 9.17,18 11.11,18 6.81,10" + }, + "children": [{ + "name": "polygon", + "attribs": { + "opacity": ".3", + "points": "6.71,10 9.17,18 11.11,18 6.81,10" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "6", + "cy": "7", + "opacity": ".3", + "r": "1" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "6", + "cy": "7", + "opacity": ".3", + "r": "1" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19.93,8.35l-3.6,1.68L14,7.7V6.3l2.33-2.33l3.6,1.68c0.38,0.18,0.82,0.01,1-0.36c0.18-0.38,0.01-0.82-0.36-1l-3.92-1.83 c-0.38-0.18-0.83-0.1-1.13,0.2L13.78,4.4C13.6,4.16,13.32,4,13,4c-0.55,0-1,0.45-1,1v1H8.82C8.4,4.84,7.3,4,6,4C4.34,4,3,5.34,3,7 c0,1.1,0.6,2.05,1.48,2.58L7.08,18H6c-1.1,0-2,0.9-2,2v1h13v-1c0-1.1-0.9-2-2-2h-1.62L8.41,8.77C8.58,8.53,8.72,8.28,8.82,8H12v1 c0,0.55,0.45,1,1,1c0.32,0,0.6-0.16,0.78-0.4l1.74,1.74c0.3,0.3,0.75,0.38,1.13,0.2l3.92-1.83c0.38-0.18,0.54-0.62,0.36-1 C20.75,8.34,20.31,8.17,19.93,8.35z M6,8C5.45,8,5,7.55,5,7c0-0.55,0.45-1,1-1s1,0.45,1,1C7,7.55,6.55,8,6,8z M11.11,18H9.17 l-2.46-8h0.1L11.11,18z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19.93,8.35l-3.6,1.68L14,7.7V6.3l2.33-2.33l3.6,1.68c0.38,0.18,0.82,0.01,1-0.36c0.18-0.38,0.01-0.82-0.36-1l-3.92-1.83 c-0.38-0.18-0.83-0.1-1.13,0.2L13.78,4.4C13.6,4.16,13.32,4,13,4c-0.55,0-1,0.45-1,1v1H8.82C8.4,4.84,7.3,4,6,4C4.34,4,3,5.34,3,7 c0,1.1,0.6,2.05,1.48,2.58L7.08,18H6c-1.1,0-2,0.9-2,2v1h13v-1c0-1.1-0.9-2-2-2h-1.62L8.41,8.77C8.58,8.53,8.72,8.28,8.82,8H12v1 c0,0.55,0.45,1,1,1c0.32,0,0.6-0.16,0.78-0.4l1.74,1.74c0.3,0.3,0.75,0.38,1.13,0.2l3.92-1.83c0.38-0.18,0.54-0.62,0.36-1 C20.75,8.34,20.31,8.17,19.93,8.35z M6,8C5.45,8,5,7.55,5,7c0-0.55,0.45-1,1-1s1,0.45,1,1C7,7.55,6.55,8,6,8z M11.11,18H9.17 l-2.46-8h0.1L11.11,18z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_precision_manufacturing_twotone = ic_precision_manufacturing_twotone; \ No newline at end of file diff --git a/dist/md/ic_pregnant_woman.js b/dist/md/ic_pregnant_woman.js new file mode 100644 index 000000000..20c06daa0 --- /dev/null +++ b/dist/md/ic_pregnant_woman.js @@ -0,0 +1,65 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_pregnant_woman = void 0; +var ic_pregnant_woman = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M9,4c0-1.11,0.89-2,2-2s2,0.89,2,2s-0.89,2-2,2S9,5.11,9,4z M16,13c-0.01-1.34-0.83-2.51-2-3c0-1.66-1.34-3-3-3 s-3,1.34-3,3v7h2v5h3v-5h3V13z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M9,4c0-1.11,0.89-2,2-2s2,0.89,2,2s-0.89,2-2,2S9,5.11,9,4z M16,13c-0.01-1.34-0.83-2.51-2-3c0-1.66-1.34-3-3-3 s-3,1.34-3,3v7h2v5h3v-5h3V13z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_pregnant_woman = ic_pregnant_woman; \ No newline at end of file diff --git a/dist/md/ic_pregnant_woman_outline.js b/dist/md/ic_pregnant_woman_outline.js new file mode 100644 index 000000000..727a28376 --- /dev/null +++ b/dist/md/ic_pregnant_woman_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_pregnant_woman_outline = void 0; +var ic_pregnant_woman_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 4c0-1.11.89-2 2-2s2 .89 2 2-.89 2-2 2-2-.89-2-2zm7 9c-.01-1.34-.83-2.51-2-3 0-1.66-1.34-3-3-3s-3 1.34-3 3v7h2v5h3v-5h3v-4z" + }, + "children": [] + }] +}; +exports.ic_pregnant_woman_outline = ic_pregnant_woman_outline; \ No newline at end of file diff --git a/dist/md/ic_pregnant_woman_twotone.js b/dist/md/ic_pregnant_woman_twotone.js new file mode 100644 index 000000000..b9ce9ec2f --- /dev/null +++ b/dist/md/ic_pregnant_woman_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_pregnant_woman_twotone = void 0; +var ic_pregnant_woman_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 4c0-1.11.89-2 2-2s2 .89 2 2-.89 2-2 2-2-.89-2-2zm7 9c-.01-1.34-.83-2.51-2-3 0-1.66-1.34-3-3-3s-3 1.34-3 3v7h2v5h3v-5h3v-4z" + }, + "children": [] + }] +}; +exports.ic_pregnant_woman_twotone = ic_pregnant_woman_twotone; \ No newline at end of file diff --git a/dist/md/ic_present_to_all.js b/dist/md/ic_present_to_all.js new file mode 100644 index 000000000..a75ac1351 --- /dev/null +++ b/dist/md/ic_present_to_all.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_present_to_all = void 0; +var ic_present_to_all = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 3H3c-1.11 0-2 .89-2 2v14c0 1.11.89 2 2 2h18c1.11 0 2-.89 2-2V5c0-1.11-.89-2-2-2zm0 16.02H3V4.98h18v14.04zM10 12H8l4-4 4 4h-2v4h-4v-4z" + }, + "children": [] + }] +}; +exports.ic_present_to_all = ic_present_to_all; \ No newline at end of file diff --git a/dist/md/ic_present_to_all_outline.js b/dist/md/ic_present_to_all_outline.js new file mode 100644 index 000000000..2144d9468 --- /dev/null +++ b/dist/md/ic_present_to_all_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_present_to_all_outline = void 0; +var ic_present_to_all_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 3H3c-1.11 0-2 .89-2 2v14c0 1.11.89 2 2 2h18c1.11 0 2-.89 2-2V5c0-1.11-.89-2-2-2zm0 16.02H3V4.98h18v14.04zM10 12H8l4-4 4 4h-2v4h-4v-4z" + }, + "children": [] + }] +}; +exports.ic_present_to_all_outline = ic_present_to_all_outline; \ No newline at end of file diff --git a/dist/md/ic_present_to_all_twotone.js b/dist/md/ic_present_to_all_twotone.js new file mode 100644 index 000000000..295f810c7 --- /dev/null +++ b/dist/md/ic_present_to_all_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_present_to_all_twotone = void 0; +var ic_present_to_all_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 19.02h18V4.98H3v14.04zM12 8l4 4h-2v4h-4v-4H8l4-4z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 16h4v-4h2l-4-4-4 4h2zM21 3H3c-1.11 0-2 .89-2 2v14c0 1.11.89 2 2 2h18c1.11 0 2-.89 2-2V5c0-1.11-.89-2-2-2zm0 16.02H3V4.98h18v14.04z" + }, + "children": [] + }] +}; +exports.ic_present_to_all_twotone = ic_present_to_all_twotone; \ No newline at end of file diff --git a/dist/md/ic_preview.js b/dist/md/ic_preview.js new file mode 100644 index 000000000..d800ba983 --- /dev/null +++ b/dist/md/ic_preview.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_preview = void 0; +var ic_preview = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19,3H5C3.89,3,3,3.9,3,5v14c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.11,3,19,3z M19,19H5V7h14V19z M13.5,13 c0,0.83-0.67,1.5-1.5,1.5s-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5S13.5,12.17,13.5,13z M12,9c-2.73,0-5.06,1.66-6,4 c0.94,2.34,3.27,4,6,4s5.06-1.66,6-4C17.06,10.66,14.73,9,12,9z M12,15.5c-1.38,0-2.5-1.12-2.5-2.5c0-1.38,1.12-2.5,2.5-2.5 c1.38,0,2.5,1.12,2.5,2.5C14.5,14.38,13.38,15.5,12,15.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,3H5C3.89,3,3,3.9,3,5v14c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.11,3,19,3z M19,19H5V7h14V19z M13.5,13 c0,0.83-0.67,1.5-1.5,1.5s-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5S13.5,12.17,13.5,13z M12,9c-2.73,0-5.06,1.66-6,4 c0.94,2.34,3.27,4,6,4s5.06-1.66,6-4C17.06,10.66,14.73,9,12,9z M12,15.5c-1.38,0-2.5-1.12-2.5-2.5c0-1.38,1.12-2.5,2.5-2.5 c1.38,0,2.5,1.12,2.5,2.5C14.5,14.38,13.38,15.5,12,15.5z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_preview = ic_preview; \ No newline at end of file diff --git a/dist/md/ic_preview_outline.js b/dist/md/ic_preview_outline.js new file mode 100644 index 000000000..dd1263ea2 --- /dev/null +++ b/dist/md/ic_preview_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_preview_outline = void 0; +var ic_preview_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19,3H5C3.89,3,3,3.9,3,5v14c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.11,3,19,3z M19,19H5V7h14V19z M12,10.5 c1.84,0,3.48,0.96,4.34,2.5c-0.86,1.54-2.5,2.5-4.34,2.5S8.52,14.54,7.66,13C8.52,11.46,10.16,10.5,12,10.5 M12,9 c-2.73,0-5.06,1.66-6,4c0.94,2.34,3.27,4,6,4s5.06-1.66,6-4C17.06,10.66,14.73,9,12,9L12,9z M12,14.5c-0.83,0-1.5-0.67-1.5-1.5 s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S12.83,14.5,12,14.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,3H5C3.89,3,3,3.9,3,5v14c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.11,3,19,3z M19,19H5V7h14V19z M12,10.5 c1.84,0,3.48,0.96,4.34,2.5c-0.86,1.54-2.5,2.5-4.34,2.5S8.52,14.54,7.66,13C8.52,11.46,10.16,10.5,12,10.5 M12,9 c-2.73,0-5.06,1.66-6,4c0.94,2.34,3.27,4,6,4s5.06-1.66,6-4C17.06,10.66,14.73,9,12,9L12,9z M12,14.5c-0.83,0-1.5-0.67-1.5-1.5 s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S12.83,14.5,12,14.5z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_preview_outline = ic_preview_outline; \ No newline at end of file diff --git a/dist/md/ic_preview_twotone.js b/dist/md/ic_preview_twotone.js new file mode 100644 index 000000000..dd51b0d99 --- /dev/null +++ b/dist/md/ic_preview_twotone.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_preview_twotone = void 0; +var ic_preview_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19,19H5V7h14V19z M12,10.5c1.84,0,3.48,0.96,4.34,2.5c-0.86,1.54-2.5,2.5-4.34,2.5S8.52,14.54,7.66,13 C8.52,11.46,10.16,10.5,12,10.5 M12,9c-2.73,0-5.06,1.66-6,4c0.94,2.34,3.27,4,6,4s5.06-1.66,6-4C17.06,10.66,14.73,9,12,9L12,9z M12,14.5c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S12.83,14.5,12,14.5z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,19H5V7h14V19z M12,10.5c1.84,0,3.48,0.96,4.34,2.5c-0.86,1.54-2.5,2.5-4.34,2.5S8.52,14.54,7.66,13 C8.52,11.46,10.16,10.5,12,10.5 M12,9c-2.73,0-5.06,1.66-6,4c0.94,2.34,3.27,4,6,4s5.06-1.66,6-4C17.06,10.66,14.73,9,12,9L12,9z M12,14.5c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S12.83,14.5,12,14.5z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19,3H5C3.89,3,3,3.9,3,5v14c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.11,3,19,3z M19,19H5V7h14V19z M12,10.5 c1.84,0,3.48,0.96,4.34,2.5c-0.86,1.54-2.5,2.5-4.34,2.5S8.52,14.54,7.66,13C8.52,11.46,10.16,10.5,12,10.5 M12,9 c-2.73,0-5.06,1.66-6,4c0.94,2.34,3.27,4,6,4s5.06-1.66,6-4C17.06,10.66,14.73,9,12,9L12,9z M12,14.5c-0.83,0-1.5-0.67-1.5-1.5 s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S12.83,14.5,12,14.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,3H5C3.89,3,3,3.9,3,5v14c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.11,3,19,3z M19,19H5V7h14V19z M12,10.5 c1.84,0,3.48,0.96,4.34,2.5c-0.86,1.54-2.5,2.5-4.34,2.5S8.52,14.54,7.66,13C8.52,11.46,10.16,10.5,12,10.5 M12,9 c-2.73,0-5.06,1.66-6,4c0.94,2.34,3.27,4,6,4s5.06-1.66,6-4C17.06,10.66,14.73,9,12,9L12,9z M12,14.5c-0.83,0-1.5-0.67-1.5-1.5 s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S12.83,14.5,12,14.5z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_preview_twotone = ic_preview_twotone; \ No newline at end of file diff --git a/dist/md/ic_print.js b/dist/md/ic_print.js new file mode 100644 index 000000000..27e9f7c0b --- /dev/null +++ b/dist/md/ic_print.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_print = void 0; +var ic_print = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 8H5c-1.66 0-3 1.34-3 3v6h4v4h12v-4h4v-6c0-1.66-1.34-3-3-3zm-3 11H8v-5h8v5zm3-7c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-1-9H6v4h12V3z" + }, + "children": [] + }] +}; +exports.ic_print = ic_print; \ No newline at end of file diff --git a/dist/md/ic_print_disabled.js b/dist/md/ic_print_disabled.js new file mode 100644 index 000000000..521c6d631 --- /dev/null +++ b/dist/md/ic_print_disabled.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_print_disabled = void 0; +var ic_print_disabled = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.1 17H22v-6c0-1.7-1.3-3-3-3h-9l9.1 9zm-.1-7c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-1-3V3H6v1.1L9 7zM1.2 1.8L0 3l4.9 5C3.3 8.1 2 9.4 2 11v6h4v4h11.9l3 3 1.3-1.3-21-20.9zM8 19v-5h2.9l5 5H8z" + }, + "children": [] + }] +}; +exports.ic_print_disabled = ic_print_disabled; \ No newline at end of file diff --git a/dist/md/ic_print_disabled_outline.js b/dist/md/ic_print_disabled_outline.js new file mode 100644 index 000000000..bff89a4f4 --- /dev/null +++ b/dist/md/ic_print_disabled_outline.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_print_disabled_outline = void 0; +var ic_print_disabled_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M1.41 1.6L0 3.01 5 8c-1.66 0-3 1.34-3 3v6h4v4h12l2.95 2.96 1.41-1.41L1.41 1.6zM6 15H4v-4c0-.55.45-1 1-1h2l3 3H6v2zm2 4v-4h4l4 4H8zM8 5h8v3h-5.34l2 2H19c.55 0 1 .45 1 1v4l-2 .01V13h-2.34l4 4H22v-6c0-1.66-1.34-3-3-3h-1V3H6v.36l2 2V5z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "18", + "cy": "11.51", + "r": "1" + }, + "children": [] + }] +}; +exports.ic_print_disabled_outline = ic_print_disabled_outline; \ No newline at end of file diff --git a/dist/md/ic_print_disabled_twotone.js b/dist/md/ic_print_disabled_twotone.js new file mode 100644 index 000000000..337c9d0d5 --- /dev/null +++ b/dist/md/ic_print_disabled_twotone.js @@ -0,0 +1,59 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_print_disabled_twotone = void 0; +var ic_print_disabled_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 10H5c-.55 0-1 .45-1 1v4h2v-2h4l-3-3z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M1.41 1.6L0 3.01 5 8c-1.66 0-3 1.34-3 3v6h4v4h12l2.95 2.96 1.41-1.41L1.41 1.6zM6 15H4v-4c0-.55.45-1 1-1h2l3 3H6v2zm2 4v-4h4l4 4H8z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 15.01l2-.01v-4c0-.55-.45-1-1-1h-6.34l3 3H18v2.01zm-1-3.5c0-.55.45-1 1-1s1 .45 1 1-.45 1-1 1-1-.45-1-1z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "18", + "cy": "11.51", + "r": "1" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 5H8v.35L10.66 8H16z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 8h-1V3H6v.36l2 2V5h8v3h-5.34l2 2H19c.55 0 1 .45 1 1v4l-2 .01V13h-2.34l4 4H22v-6c0-1.66-1.34-3-3-3z" + }, + "children": [] + }] +}; +exports.ic_print_disabled_twotone = ic_print_disabled_twotone; \ No newline at end of file diff --git a/dist/md/ic_print_outline.js b/dist/md/ic_print_outline.js new file mode 100644 index 000000000..a77cd4af2 --- /dev/null +++ b/dist/md/ic_print_outline.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_print_outline = void 0; +var ic_print_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 8h-1V3H6v5H5c-1.66 0-3 1.34-3 3v6h4v4h12v-4h4v-6c0-1.66-1.34-3-3-3zM8 5h8v3H8V5zm8 12v2H8v-4h8v2zm2-2v-2H6v2H4v-4c0-.55.45-1 1-1h14c.55 0 1 .45 1 1v4h-2z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "18", + "cy": "11.5", + "r": "1" + }, + "children": [] + }] +}; +exports.ic_print_outline = ic_print_outline; \ No newline at end of file diff --git a/dist/md/ic_print_twotone.js b/dist/md/ic_print_twotone.js new file mode 100644 index 000000000..08bb3aa91 --- /dev/null +++ b/dist/md/ic_print_twotone.js @@ -0,0 +1,46 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_print_twotone = void 0; +var ic_print_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8 5h8v3H8z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "18", + "cy": "11.5", + "r": "1" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 8h-1V3H6v5H5c-1.66 0-3 1.34-3 3v6h4v4h12v-4h4v-6c0-1.66-1.34-3-3-3zM8 5h8v3H8V5zm8 14H8v-4h8v4zm4-4h-2v-2H6v2H4v-4c0-.55.45-1 1-1h14c.55 0 1 .45 1 1v4z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 13h12v2h2v-4c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1v4h2v-2zm12-2.5c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z", + "opacity": ".3" + }, + "children": [] + }] +}; +exports.ic_print_twotone = ic_print_twotone; \ No newline at end of file diff --git a/dist/md/ic_priority_high.js b/dist/md/ic_priority_high.js new file mode 100644 index 000000000..5204f1e4b --- /dev/null +++ b/dist/md/ic_priority_high.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_priority_high = void 0; +var ic_priority_high = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "19", + "r": "2" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 3h4v12h-4z" + }, + "children": [] + }] +}; +exports.ic_priority_high = ic_priority_high; \ No newline at end of file diff --git a/dist/md/ic_priority_high_outline.js b/dist/md/ic_priority_high_outline.js new file mode 100644 index 000000000..47f04a66c --- /dev/null +++ b/dist/md/ic_priority_high_outline.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_priority_high_outline = void 0; +var ic_priority_high_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "19", + "r": "2" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 3h4v12h-4z" + }, + "children": [] + }] +}; +exports.ic_priority_high_outline = ic_priority_high_outline; \ No newline at end of file diff --git a/dist/md/ic_priority_high_twotone.js b/dist/md/ic_priority_high_twotone.js new file mode 100644 index 000000000..689208005 --- /dev/null +++ b/dist/md/ic_priority_high_twotone.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_priority_high_twotone = void 0; +var ic_priority_high_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "19", + "r": "2" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 3h4v12h-4z" + }, + "children": [] + }] +}; +exports.ic_priority_high_twotone = ic_priority_high_twotone; \ No newline at end of file diff --git a/dist/md/ic_privacy_tip.js b/dist/md/ic_privacy_tip.js new file mode 100644 index 000000000..c7f114a42 --- /dev/null +++ b/dist/md/ic_privacy_tip.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_privacy_tip = void 0; +var ic_privacy_tip = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M12,1L3,5v6c0,5.55,3.84,10.74,9,12c5.16-1.26,9-6.45,9-12V5L12,1L12,1z M11,7h2v2h-2V7z M11,11h2v6h-2V11z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,1L3,5v6c0,5.55,3.84,10.74,9,12c5.16-1.26,9-6.45,9-12V5L12,1L12,1z M11,7h2v2h-2V7z M11,11h2v6h-2V11z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_privacy_tip = ic_privacy_tip; \ No newline at end of file diff --git a/dist/md/ic_privacy_tip_outline.js b/dist/md/ic_privacy_tip_outline.js new file mode 100644 index 000000000..1f9a217e0 --- /dev/null +++ b/dist/md/ic_privacy_tip_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_privacy_tip_outline = void 0; +var ic_privacy_tip_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M12,3.19l7,3.11V11c0,4.52-2.98,8.69-7,9.93C7.98,19.69,5,15.52,5,11V6.3L12,3.19 M12,1L3,5v6c0,5.55,3.84,10.74,9,12 c5.16-1.26,9-6.45,9-12V5L12,1L12,1z M11,7h2v2h-2V7z M11,11h2v6h-2V11z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,3.19l7,3.11V11c0,4.52-2.98,8.69-7,9.93C7.98,19.69,5,15.52,5,11V6.3L12,3.19 M12,1L3,5v6c0,5.55,3.84,10.74,9,12 c5.16-1.26,9-6.45,9-12V5L12,1L12,1z M11,7h2v2h-2V7z M11,11h2v6h-2V11z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_privacy_tip_outline = ic_privacy_tip_outline; \ No newline at end of file diff --git a/dist/md/ic_privacy_tip_twotone.js b/dist/md/ic_privacy_tip_twotone.js new file mode 100644 index 000000000..3e4fe31f5 --- /dev/null +++ b/dist/md/ic_privacy_tip_twotone.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_privacy_tip_twotone = void 0; +var ic_privacy_tip_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M12,3.19L5,6.3V11c0,4.52,2.98,8.69,7,9.93c4.02-1.23,7-5.41,7-9.93V6.3L12,3.19z M13,17h-2v-6h2V17z M13,9 h-2V7h2V9z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,3.19L5,6.3V11c0,4.52,2.98,8.69,7,9.93c4.02-1.23,7-5.41,7-9.93V6.3L12,3.19z M13,17h-2v-6h2V17z M13,9 h-2V7h2V9z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M12,3.19l7,3.11V11c0,4.52-2.98,8.69-7,9.93C7.98,19.69,5,15.52,5,11V6.3L12,3.19 M12,1L3,5v6c0,5.55,3.84,10.74,9,12 c5.16-1.26,9-6.45,9-12V5L12,1L12,1z M11,7h2v2h-2V7z M11,11h2v6h-2V11z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,3.19l7,3.11V11c0,4.52-2.98,8.69-7,9.93C7.98,19.69,5,15.52,5,11V6.3L12,3.19 M12,1L3,5v6c0,5.55,3.84,10.74,9,12 c5.16-1.26,9-6.45,9-12V5L12,1L12,1z M11,7h2v2h-2V7z M11,11h2v6h-2V11z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_privacy_tip_twotone = ic_privacy_tip_twotone; \ No newline at end of file diff --git a/dist/md/ic_psychology.js b/dist/md/ic_psychology.js new file mode 100644 index 000000000..c6ecd226a --- /dev/null +++ b/dist/md/ic_psychology.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_psychology = void 0; +var ic_psychology = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M13,8.57c-0.79,0-1.43,0.64-1.43,1.43s0.64,1.43,1.43,1.43s1.43-0.64,1.43-1.43S13.79,8.57,13,8.57z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M13,8.57c-0.79,0-1.43,0.64-1.43,1.43s0.64,1.43,1.43,1.43s1.43-0.64,1.43-1.43S13.79,8.57,13,8.57z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M13,3C9.25,3,6.2,5.94,6.02,9.64L4.1,12.2C3.85,12.53,4.09,13,4.5,13H6v3c0,1.1,0.9,2,2,2h1v3h7v-4.68 c2.36-1.12,4-3.53,4-6.32C20,6.13,16.87,3,13,3z M16,10c0,0.13-0.01,0.26-0.02,0.39l0.83,0.66c0.08,0.06,0.1,0.16,0.05,0.25 l-0.8,1.39c-0.05,0.09-0.16,0.12-0.24,0.09l-0.99-0.4c-0.21,0.16-0.43,0.29-0.67,0.39L14,13.83c-0.01,0.1-0.1,0.17-0.2,0.17h-1.6 c-0.1,0-0.18-0.07-0.2-0.17l-0.15-1.06c-0.25-0.1-0.47-0.23-0.68-0.39l-0.99,0.4c-0.09,0.03-0.2,0-0.25-0.09l-0.8-1.39 c-0.05-0.08-0.03-0.19,0.05-0.25l0.84-0.66C10.01,10.26,10,10.13,10,10c0-0.13,0.02-0.27,0.04-0.39L9.19,8.95 c-0.08-0.06-0.1-0.16-0.05-0.26l0.8-1.38c0.05-0.09,0.15-0.12,0.24-0.09l1,0.4c0.2-0.15,0.43-0.29,0.67-0.39l0.15-1.06 C12.02,6.07,12.1,6,12.2,6h1.6c0.1,0,0.18,0.07,0.2,0.17l0.15,1.06c0.24,0.1,0.46,0.23,0.67,0.39l1-0.4c0.09-0.03,0.2,0,0.24,0.09 l0.8,1.38c0.05,0.09,0.03,0.2-0.05,0.26l-0.85,0.66C15.99,9.73,16,9.86,16,10z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M13,3C9.25,3,6.2,5.94,6.02,9.64L4.1,12.2C3.85,12.53,4.09,13,4.5,13H6v3c0,1.1,0.9,2,2,2h1v3h7v-4.68 c2.36-1.12,4-3.53,4-6.32C20,6.13,16.87,3,13,3z M16,10c0,0.13-0.01,0.26-0.02,0.39l0.83,0.66c0.08,0.06,0.1,0.16,0.05,0.25 l-0.8,1.39c-0.05,0.09-0.16,0.12-0.24,0.09l-0.99-0.4c-0.21,0.16-0.43,0.29-0.67,0.39L14,13.83c-0.01,0.1-0.1,0.17-0.2,0.17h-1.6 c-0.1,0-0.18-0.07-0.2-0.17l-0.15-1.06c-0.25-0.1-0.47-0.23-0.68-0.39l-0.99,0.4c-0.09,0.03-0.2,0-0.25-0.09l-0.8-1.39 c-0.05-0.08-0.03-0.19,0.05-0.25l0.84-0.66C10.01,10.26,10,10.13,10,10c0-0.13,0.02-0.27,0.04-0.39L9.19,8.95 c-0.08-0.06-0.1-0.16-0.05-0.26l0.8-1.38c0.05-0.09,0.15-0.12,0.24-0.09l1,0.4c0.2-0.15,0.43-0.29,0.67-0.39l0.15-1.06 C12.02,6.07,12.1,6,12.2,6h1.6c0.1,0,0.18,0.07,0.2,0.17l0.15,1.06c0.24,0.1,0.46,0.23,0.67,0.39l1-0.4c0.09-0.03,0.2,0,0.24,0.09 l0.8,1.38c0.05,0.09,0.03,0.2-0.05,0.26l-0.85,0.66C15.99,9.73,16,9.86,16,10z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_psychology = ic_psychology; \ No newline at end of file diff --git a/dist/md/ic_psychology_outline.js b/dist/md/ic_psychology_outline.js new file mode 100644 index 000000000..bfd584699 --- /dev/null +++ b/dist/md/ic_psychology_outline.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_psychology_outline = void 0; +var ic_psychology_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M15.82,7.22l-1,0.4c-0.21-0.16-0.43-0.29-0.67-0.39L14,6.17C13.98,6.07,13.9,6,13.8,6h-1.6c-0.1,0-0.18,0.07-0.19,0.17 l-0.15,1.06c-0.24,0.1-0.47,0.23-0.67,0.39l-1-0.4c-0.09-0.03-0.2,0-0.24,0.09l-0.8,1.38c-0.05,0.09-0.03,0.2,0.05,0.26l0.85,0.66 C10.02,9.73,10,9.87,10,10c0,0.13,0.01,0.26,0.03,0.39l-0.84,0.66c-0.08,0.06-0.1,0.17-0.05,0.25l0.8,1.39 c0.05,0.09,0.15,0.12,0.25,0.09l0.99-0.4c0.21,0.16,0.43,0.29,0.68,0.39L12,13.83c0.02,0.1,0.1,0.17,0.2,0.17h1.6 c0.1,0,0.18-0.07,0.2-0.17l0.15-1.06c0.24-0.1,0.47-0.23,0.67-0.39l0.99,0.4c0.09,0.04,0.2,0,0.24-0.09l0.8-1.39 c0.05-0.09,0.03-0.19-0.05-0.25l-0.83-0.66C15.99,10.26,16,10.13,16,10c0-0.14-0.01-0.27-0.03-0.39l0.85-0.66 c0.08-0.06,0.1-0.17,0.05-0.26l-0.8-1.38C16.02,7.22,15.91,7.19,15.82,7.22z M13,11.43c-0.79,0-1.43-0.64-1.43-1.43 S12.21,8.57,13,8.57s1.43,0.64,1.43,1.43S13.79,11.43,13,11.43z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15.82,7.22l-1,0.4c-0.21-0.16-0.43-0.29-0.67-0.39L14,6.17C13.98,6.07,13.9,6,13.8,6h-1.6c-0.1,0-0.18,0.07-0.19,0.17 l-0.15,1.06c-0.24,0.1-0.47,0.23-0.67,0.39l-1-0.4c-0.09-0.03-0.2,0-0.24,0.09l-0.8,1.38c-0.05,0.09-0.03,0.2,0.05,0.26l0.85,0.66 C10.02,9.73,10,9.87,10,10c0,0.13,0.01,0.26,0.03,0.39l-0.84,0.66c-0.08,0.06-0.1,0.17-0.05,0.25l0.8,1.39 c0.05,0.09,0.15,0.12,0.25,0.09l0.99-0.4c0.21,0.16,0.43,0.29,0.68,0.39L12,13.83c0.02,0.1,0.1,0.17,0.2,0.17h1.6 c0.1,0,0.18-0.07,0.2-0.17l0.15-1.06c0.24-0.1,0.47-0.23,0.67-0.39l0.99,0.4c0.09,0.04,0.2,0,0.24-0.09l0.8-1.39 c0.05-0.09,0.03-0.19-0.05-0.25l-0.83-0.66C15.99,10.26,16,10.13,16,10c0-0.14-0.01-0.27-0.03-0.39l0.85-0.66 c0.08-0.06,0.1-0.17,0.05-0.26l-0.8-1.38C16.02,7.22,15.91,7.19,15.82,7.22z M13,11.43c-0.79,0-1.43-0.64-1.43-1.43 S12.21,8.57,13,8.57s1.43,0.64,1.43,1.43S13.79,11.43,13,11.43z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19.94,9.06c-0.43-3.27-3.23-5.86-6.53-6.05C13.27,3,13.14,3,13,3C9.47,3,6.57,5.61,6.08,9l-1.93,3.48 C3.74,13.14,4.22,14,5,14h1v2c0,1.1,0.9,2,2,2h1v3h7v-4.68C18.62,15.07,20.35,12.24,19.94,9.06z M14.89,14.63L14,15.05V19h-3v-3H8 v-4H6.7l1.33-2.33C8.21,7.06,10.35,5,13,5c2.76,0,5,2.24,5,5C18,12.09,16.71,13.88,14.89,14.63z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19.94,9.06c-0.43-3.27-3.23-5.86-6.53-6.05C13.27,3,13.14,3,13,3C9.47,3,6.57,5.61,6.08,9l-1.93,3.48 C3.74,13.14,4.22,14,5,14h1v2c0,1.1,0.9,2,2,2h1v3h7v-4.68C18.62,15.07,20.35,12.24,19.94,9.06z M14.89,14.63L14,15.05V19h-3v-3H8 v-4H6.7l1.33-2.33C8.21,7.06,10.35,5,13,5c2.76,0,5,2.24,5,5C18,12.09,16.71,13.88,14.89,14.63z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_psychology_outline = ic_psychology_outline; \ No newline at end of file diff --git a/dist/md/ic_psychology_twotone.js b/dist/md/ic_psychology_twotone.js new file mode 100644 index 000000000..fb09d8f1d --- /dev/null +++ b/dist/md/ic_psychology_twotone.js @@ -0,0 +1,81 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_psychology_twotone = void 0; +var ic_psychology_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M13,5c-2.65,0-4.79,2.06-4.97,4.67L6.7,12H8v4h3v3h3v-3.95l0.89-0.43C16.71,13.88,18,12.09,18,10 C18,7.24,15.76,5,13,5z M16.82,8.95l-0.85,0.66C15.99,9.73,16,9.86,16,10c0,0.13-0.01,0.26-0.02,0.39l0.83,0.66 c0.08,0.06,0.1,0.16,0.05,0.25l-0.8,1.39c-0.05,0.09-0.16,0.12-0.24,0.09l-0.99-0.4c-0.21,0.16-0.43,0.29-0.67,0.39L14,13.83 c-0.01,0.1-0.1,0.17-0.2,0.17h-1.6c-0.1,0-0.18-0.07-0.2-0.17l-0.15-1.06c-0.25-0.1-0.47-0.23-0.68-0.39l-0.99,0.4 c-0.09,0.03-0.2,0-0.25-0.09l-0.8-1.39c-0.05-0.08-0.03-0.19,0.05-0.25l0.84-0.66C10.01,10.26,10,10.13,10,10 c0-0.13,0.02-0.27,0.04-0.39L9.19,8.95c-0.08-0.06-0.1-0.16-0.05-0.26l0.8-1.38c0.05-0.09,0.15-0.12,0.24-0.09l1,0.4 c0.2-0.15,0.43-0.29,0.67-0.39l0.15-1.06C12.02,6.07,12.1,6,12.2,6h1.6c0.1,0,0.18,0.07,0.2,0.17l0.15,1.06 c0.24,0.1,0.46,0.23,0.67,0.39l1-0.4c0.09-0.03,0.2,0,0.24,0.09l0.8,1.38C16.91,8.78,16.89,8.89,16.82,8.95z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M13,5c-2.65,0-4.79,2.06-4.97,4.67L6.7,12H8v4h3v3h3v-3.95l0.89-0.43C16.71,13.88,18,12.09,18,10 C18,7.24,15.76,5,13,5z M16.82,8.95l-0.85,0.66C15.99,9.73,16,9.86,16,10c0,0.13-0.01,0.26-0.02,0.39l0.83,0.66 c0.08,0.06,0.1,0.16,0.05,0.25l-0.8,1.39c-0.05,0.09-0.16,0.12-0.24,0.09l-0.99-0.4c-0.21,0.16-0.43,0.29-0.67,0.39L14,13.83 c-0.01,0.1-0.1,0.17-0.2,0.17h-1.6c-0.1,0-0.18-0.07-0.2-0.17l-0.15-1.06c-0.25-0.1-0.47-0.23-0.68-0.39l-0.99,0.4 c-0.09,0.03-0.2,0-0.25-0.09l-0.8-1.39c-0.05-0.08-0.03-0.19,0.05-0.25l0.84-0.66C10.01,10.26,10,10.13,10,10 c0-0.13,0.02-0.27,0.04-0.39L9.19,8.95c-0.08-0.06-0.1-0.16-0.05-0.26l0.8-1.38c0.05-0.09,0.15-0.12,0.24-0.09l1,0.4 c0.2-0.15,0.43-0.29,0.67-0.39l0.15-1.06C12.02,6.07,12.1,6,12.2,6h1.6c0.1,0,0.18,0.07,0.2,0.17l0.15,1.06 c0.24,0.1,0.46,0.23,0.67,0.39l1-0.4c0.09-0.03,0.2,0,0.24,0.09l0.8,1.38C16.91,8.78,16.89,8.89,16.82,8.95z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M15.82,7.22l-1,0.4c-0.21-0.16-0.43-0.29-0.67-0.39L14,6.17C13.98,6.07,13.9,6,13.8,6h-1.6c-0.1,0-0.18,0.07-0.19,0.17 l-0.15,1.06c-0.24,0.1-0.47,0.23-0.67,0.39l-1-0.4c-0.09-0.03-0.2,0-0.24,0.09l-0.8,1.38c-0.05,0.09-0.03,0.2,0.05,0.26l0.85,0.66 C10.02,9.73,10,9.87,10,10c0,0.13,0.01,0.26,0.03,0.39l-0.84,0.66c-0.08,0.06-0.1,0.17-0.05,0.25l0.8,1.39 c0.05,0.09,0.15,0.12,0.25,0.09l0.99-0.4c0.21,0.16,0.43,0.29,0.68,0.39L12,13.83c0.02,0.1,0.1,0.17,0.2,0.17h1.6 c0.1,0,0.18-0.07,0.2-0.17l0.15-1.06c0.24-0.1,0.47-0.23,0.67-0.39l0.99,0.4c0.09,0.04,0.2,0,0.24-0.09l0.8-1.39 c0.05-0.09,0.03-0.19-0.05-0.25l-0.83-0.66C15.99,10.26,16,10.13,16,10c0-0.14-0.01-0.27-0.03-0.39l0.85-0.66 c0.08-0.06,0.1-0.17,0.05-0.26l-0.8-1.38C16.02,7.22,15.91,7.19,15.82,7.22z M13,11.43c-0.79,0-1.43-0.64-1.43-1.43 S12.21,8.57,13,8.57s1.43,0.64,1.43,1.43S13.79,11.43,13,11.43z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15.82,7.22l-1,0.4c-0.21-0.16-0.43-0.29-0.67-0.39L14,6.17C13.98,6.07,13.9,6,13.8,6h-1.6c-0.1,0-0.18,0.07-0.19,0.17 l-0.15,1.06c-0.24,0.1-0.47,0.23-0.67,0.39l-1-0.4c-0.09-0.03-0.2,0-0.24,0.09l-0.8,1.38c-0.05,0.09-0.03,0.2,0.05,0.26l0.85,0.66 C10.02,9.73,10,9.87,10,10c0,0.13,0.01,0.26,0.03,0.39l-0.84,0.66c-0.08,0.06-0.1,0.17-0.05,0.25l0.8,1.39 c0.05,0.09,0.15,0.12,0.25,0.09l0.99-0.4c0.21,0.16,0.43,0.29,0.68,0.39L12,13.83c0.02,0.1,0.1,0.17,0.2,0.17h1.6 c0.1,0,0.18-0.07,0.2-0.17l0.15-1.06c0.24-0.1,0.47-0.23,0.67-0.39l0.99,0.4c0.09,0.04,0.2,0,0.24-0.09l0.8-1.39 c0.05-0.09,0.03-0.19-0.05-0.25l-0.83-0.66C15.99,10.26,16,10.13,16,10c0-0.14-0.01-0.27-0.03-0.39l0.85-0.66 c0.08-0.06,0.1-0.17,0.05-0.26l-0.8-1.38C16.02,7.22,15.91,7.19,15.82,7.22z M13,11.43c-0.79,0-1.43-0.64-1.43-1.43 S12.21,8.57,13,8.57s1.43,0.64,1.43,1.43S13.79,11.43,13,11.43z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19.94,9.06c-0.43-3.27-3.23-5.86-6.53-6.05C13.27,3,13.14,3,13,3C9.47,3,6.57,5.61,6.08,9l-1.93,3.48 C3.74,13.14,4.22,14,5,14h1v2c0,1.1,0.9,2,2,2h1v3h7v-4.68C18.62,15.07,20.35,12.24,19.94,9.06z M14.89,14.63L14,15.05V19h-3v-3H8 v-4H6.7l1.33-2.33C8.21,7.06,10.35,5,13,5c2.76,0,5,2.24,5,5C18,12.09,16.71,13.88,14.89,14.63z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19.94,9.06c-0.43-3.27-3.23-5.86-6.53-6.05C13.27,3,13.14,3,13,3C9.47,3,6.57,5.61,6.08,9l-1.93,3.48 C3.74,13.14,4.22,14,5,14h1v2c0,1.1,0.9,2,2,2h1v3h7v-4.68C18.62,15.07,20.35,12.24,19.94,9.06z M14.89,14.63L14,15.05V19h-3v-3H8 v-4H6.7l1.33-2.33C8.21,7.06,10.35,5,13,5c2.76,0,5,2.24,5,5C18,12.09,16.71,13.88,14.89,14.63z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_psychology_twotone = ic_psychology_twotone; \ No newline at end of file diff --git a/dist/md/ic_public.js b/dist/md/ic_public.js new file mode 100644 index 000000000..1aec3575c --- /dev/null +++ b/dist/md/ic_public.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_public = void 0; +var ic_public = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z" + }, + "children": [] + }] +}; +exports.ic_public = ic_public; \ No newline at end of file diff --git a/dist/md/ic_public_off.js b/dist/md/ic_public_off.js new file mode 100644 index 000000000..4575962da --- /dev/null +++ b/dist/md/ic_public_off.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_public_off = void 0; +var ic_public_off = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M11,8.17L6.49,3.66C8.07,2.61,9.96,2,12,2c5.52,0,10,4.48,10,10c0,2.04-0.61,3.93-1.66,5.51l-1.46-1.46 C19.59,14.87,20,13.48,20,12c0-3.35-2.07-6.22-5-7.41V5c0,1.1-0.9,2-2,2h-2V8.17z M21.19,21.19l-1.41,1.41l-2.27-2.27 C15.93,21.39,14.04,22,12,22C6.48,22,2,17.52,2,12c0-2.04,0.61-3.93,1.66-5.51L1.39,4.22l1.41-1.41L21.19,21.19z M11,18 c-1.1,0-2-0.9-2-2v-1l-4.79-4.79C4.08,10.79,4,11.38,4,12c0,4.08,3.05,7.44,7,7.93V18z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M11,8.17L6.49,3.66C8.07,2.61,9.96,2,12,2c5.52,0,10,4.48,10,10c0,2.04-0.61,3.93-1.66,5.51l-1.46-1.46 C19.59,14.87,20,13.48,20,12c0-3.35-2.07-6.22-5-7.41V5c0,1.1-0.9,2-2,2h-2V8.17z M21.19,21.19l-1.41,1.41l-2.27-2.27 C15.93,21.39,14.04,22,12,22C6.48,22,2,17.52,2,12c0-2.04,0.61-3.93,1.66-5.51L1.39,4.22l1.41-1.41L21.19,21.19z M11,18 c-1.1,0-2-0.9-2-2v-1l-4.79-4.79C4.08,10.79,4,11.38,4,12c0,4.08,3.05,7.44,7,7.93V18z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_public_off = ic_public_off; \ No newline at end of file diff --git a/dist/md/ic_public_off_outline.js b/dist/md/ic_public_off_outline.js new file mode 100644 index 000000000..313e8ee89 --- /dev/null +++ b/dist/md/ic_public_off_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_public_off_outline = void 0; +var ic_public_off_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M11,8.17L6.49,3.66C8.07,2.61,9.96,2,12,2c5.52,0,10,4.48,10,10c0,2.04-0.61,3.93-1.66,5.51l-1.46-1.46 C19.59,14.87,20,13.48,20,12c0-3.35-2.07-6.22-5-7.41V5c0,1.1-0.9,2-2,2h-2V8.17z M21.19,21.19l-1.41,1.41l-2.27-2.27 C15.93,21.39,14.04,22,12,22C6.48,22,2,17.52,2,12c0-2.04,0.61-3.93,1.66-5.51L1.39,4.22l1.41-1.41L21.19,21.19z M11,18 c-1.1,0-2-0.9-2-2v-1l-4.79-4.79C4.08,10.79,4,11.38,4,12c0,4.08,3.05,7.44,7,7.93V18z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M11,8.17L6.49,3.66C8.07,2.61,9.96,2,12,2c5.52,0,10,4.48,10,10c0,2.04-0.61,3.93-1.66,5.51l-1.46-1.46 C19.59,14.87,20,13.48,20,12c0-3.35-2.07-6.22-5-7.41V5c0,1.1-0.9,2-2,2h-2V8.17z M21.19,21.19l-1.41,1.41l-2.27-2.27 C15.93,21.39,14.04,22,12,22C6.48,22,2,17.52,2,12c0-2.04,0.61-3.93,1.66-5.51L1.39,4.22l1.41-1.41L21.19,21.19z M11,18 c-1.1,0-2-0.9-2-2v-1l-4.79-4.79C4.08,10.79,4,11.38,4,12c0,4.08,3.05,7.44,7,7.93V18z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_public_off_outline = ic_public_off_outline; \ No newline at end of file diff --git a/dist/md/ic_public_off_twotone.js b/dist/md/ic_public_off_twotone.js new file mode 100644 index 000000000..31d017d9c --- /dev/null +++ b/dist/md/ic_public_off_twotone.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_public_off_twotone = void 0; +var ic_public_off_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M11,8.17l7.88,7.88C19.59,14.87,20,13.48,20,12c0-3.35-2.07-6.22-5-7.41V5c0,1.1-0.9,2-2,2h-2V8.17z M11,18 c-1.1,0-2-0.9-2-2v-1l-4.79-4.79C4.08,10.79,4,11.38,4,12c0,4.08,3.05,7.44,7,7.93V18z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M11,8.17l7.88,7.88C19.59,14.87,20,13.48,20,12c0-3.35-2.07-6.22-5-7.41V5c0,1.1-0.9,2-2,2h-2V8.17z M11,18 c-1.1,0-2-0.9-2-2v-1l-4.79-4.79C4.08,10.79,4,11.38,4,12c0,4.08,3.05,7.44,7,7.93V18z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M11,8.17L6.49,3.66C8.07,2.61,9.96,2,12,2c5.52,0,10,4.48,10,10c0,2.04-0.61,3.93-1.66,5.51l-1.46-1.46 C19.59,14.87,20,13.48,20,12c0-3.35-2.07-6.22-5-7.41V5c0,1.1-0.9,2-2,2h-2V8.17z M21.19,21.19l-1.41,1.41l-2.27-2.27 C15.93,21.39,14.04,22,12,22C6.48,22,2,17.52,2,12c0-2.04,0.61-3.93,1.66-5.51L1.39,4.22l1.41-1.41L21.19,21.19z M11,18 c-1.1,0-2-0.9-2-2v-1l-4.79-4.79C4.08,10.79,4,11.38,4,12c0,4.08,3.05,7.44,7,7.93V18z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M11,8.17L6.49,3.66C8.07,2.61,9.96,2,12,2c5.52,0,10,4.48,10,10c0,2.04-0.61,3.93-1.66,5.51l-1.46-1.46 C19.59,14.87,20,13.48,20,12c0-3.35-2.07-6.22-5-7.41V5c0,1.1-0.9,2-2,2h-2V8.17z M21.19,21.19l-1.41,1.41l-2.27-2.27 C15.93,21.39,14.04,22,12,22C6.48,22,2,17.52,2,12c0-2.04,0.61-3.93,1.66-5.51L1.39,4.22l1.41-1.41L21.19,21.19z M11,18 c-1.1,0-2-0.9-2-2v-1l-4.79-4.79C4.08,10.79,4,11.38,4,12c0,4.08,3.05,7.44,7,7.93V18z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_public_off_twotone = ic_public_off_twotone; \ No newline at end of file diff --git a/dist/md/ic_public_outline.js b/dist/md/ic_public_outline.js new file mode 100644 index 000000000..24a41eaf1 --- /dev/null +++ b/dist/md/ic_public_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_public_outline = void 0; +var ic_public_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM4 12c0-.61.08-1.21.21-1.78L8.99 15v1c0 1.1.9 2 2 2v1.93C7.06 19.43 4 16.07 4 12zm13.89 5.4c-.26-.81-1-1.4-1.9-1.4h-1v-3c0-.55-.45-1-1-1h-6v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41C17.92 5.77 20 8.65 20 12c0 2.08-.81 3.98-2.11 5.4z" + }, + "children": [] + }] +}; +exports.ic_public_outline = ic_public_outline; \ No newline at end of file diff --git a/dist/md/ic_public_twotone.js b/dist/md/ic_public_twotone.js new file mode 100644 index 000000000..fbfdb1ef0 --- /dev/null +++ b/dist/md/ic_public_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_public_twotone = void 0; +var ic_public_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14.99 4.59V5c0 1.1-.9 2-2 2h-2v2c0 .55-.45 1-1 1h-2v2h6c.55 0 1 .45 1 1v3h1c.89 0 1.64.59 1.9 1.4C19.19 15.98 20 14.08 20 12c0-3.35-2.08-6.23-5.01-7.41zM8.99 16v-1l-4.78-4.78C4.08 10.79 4 11.39 4 12c0 4.07 3.06 7.43 6.99 7.93V18c-1.1 0-2-.9-2-2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1.01 17.93C7.06 19.43 4 16.07 4 12c0-.61.08-1.21.21-1.78L8.99 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.53c-.26-.81-1-1.4-1.9-1.4h-1v-3c0-.55-.45-1-1-1h-6v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41C17.92 5.77 20 8.65 20 12c0 2.08-.81 3.98-2.11 5.4z" + }, + "children": [] + }] +}; +exports.ic_public_twotone = ic_public_twotone; \ No newline at end of file diff --git a/dist/md/ic_publish.js b/dist/md/ic_publish.js new file mode 100644 index 000000000..d233fcd15 --- /dev/null +++ b/dist/md/ic_publish.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_publish = void 0; +var ic_publish = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 4v2h14V4H5zm0 10h4v6h6v-6h4l-7-7-7 7z" + }, + "children": [] + }] +}; +exports.ic_publish = ic_publish; \ No newline at end of file diff --git a/dist/md/ic_publish_outline.js b/dist/md/ic_publish_outline.js new file mode 100644 index 000000000..bf57f7174 --- /dev/null +++ b/dist/md/ic_publish_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_publish_outline = void 0; +var ic_publish_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 4h14v2H5zm0 10h4v6h6v-6h4l-7-7-7 7zm8-2v6h-2v-6H9.83L12 9.83 14.17 12H13z" + }, + "children": [] + }] +}; +exports.ic_publish_outline = ic_publish_outline; \ No newline at end of file diff --git a/dist/md/ic_publish_twotone.js b/dist/md/ic_publish_twotone.js new file mode 100644 index 000000000..1c46149b4 --- /dev/null +++ b/dist/md/ic_publish_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_publish_twotone = void 0; +var ic_publish_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9.83 12H11v6h2v-6h1.17L12 9.83z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 4h14v2H5zm7 3l-7 7h4v6h6v-6h4l-7-7zm1 5v6h-2v-6H9.83L12 9.83 14.17 12H13z" + }, + "children": [] + }] +}; +exports.ic_publish_twotone = ic_publish_twotone; \ No newline at end of file diff --git a/dist/md/ic_published_with_changes.js b/dist/md/ic_published_with_changes.js new file mode 100644 index 000000000..f83f15cd6 --- /dev/null +++ b/dist/md/ic_published_with_changes.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_published_with_changes = void 0; +var ic_published_with_changes = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17.66,9.53l-7.07,7.07l-4.24-4.24l1.41-1.41l2.83,2.83l5.66-5.66L17.66,9.53z M4,12c0-2.33,1.02-4.42,2.62-5.88L9,8.5v-6H3 l2.2,2.2C3.24,6.52,2,9.11,2,12c0,5.19,3.95,9.45,9,9.95v-2.02C7.06,19.44,4,16.07,4,12z M22,12c0-5.19-3.95-9.45-9-9.95v2.02 c3.94,0.49,7,3.86,7,7.93c0,2.33-1.02,4.42-2.62,5.88L15,15.5v6h6l-2.2-2.2C20.76,17.48,22,14.89,22,12z" + }, + "children": [] + }] +}; +exports.ic_published_with_changes = ic_published_with_changes; \ No newline at end of file diff --git a/dist/md/ic_published_with_changes_outline.js b/dist/md/ic_published_with_changes_outline.js new file mode 100644 index 000000000..b4d16cae2 --- /dev/null +++ b/dist/md/ic_published_with_changes_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_published_with_changes_outline = void 0; +var ic_published_with_changes_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18.6,19.5H21v2h-6v-6h2v2.73c1.83-1.47,3-3.71,3-6.23c0-4.07-3.06-7.44-7-7.93V2.05c5.05,0.5,9,4.76,9,9.95 C22,14.99,20.68,17.67,18.6,19.5z M4,12c0-2.52,1.17-4.77,3-6.23V8.5h2v-6H3v2h2.4C3.32,6.33,2,9.01,2,12c0,5.19,3.95,9.45,9,9.95 v-2.02C7.06,19.44,4,16.07,4,12z M16.24,8.11l-5.66,5.66l-2.83-2.83l-1.41,1.41l4.24,4.24l7.07-7.07L16.24,8.11z" + }, + "children": [] + }] +}; +exports.ic_published_with_changes_outline = ic_published_with_changes_outline; \ No newline at end of file diff --git a/dist/md/ic_published_with_changes_twotone.js b/dist/md/ic_published_with_changes_twotone.js new file mode 100644 index 000000000..e38182f0b --- /dev/null +++ b/dist/md/ic_published_with_changes_twotone.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_published_with_changes_twotone = void 0; +var ic_published_with_changes_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17.66,9.53l-7.07,7.07l-4.24-4.24l1.41-1.41l2.83,2.83l5.66-5.66L17.66,9.53z M4,12c0-2.33,1.02-4.42,2.62-5.88L9,8.5v-6H3 l2.2,2.2C3.24,6.52,2,9.11,2,12c0,5.19,3.95,9.45,9,9.95v-2.02C7.06,19.44,4,16.07,4,12z M22,12c0-5.19-3.95-9.45-9-9.95v2.02 c3.94,0.49,7,3.86,7,7.93c0,2.33-1.02,4.42-2.62,5.88L15,15.5v6h6l-2.2-2.2C20.76,17.48,22,14.89,22,12z" + }, + "children": [] + }] +}; +exports.ic_published_with_changes_twotone = ic_published_with_changes_twotone; \ No newline at end of file diff --git a/dist/md/ic_push_pin.js b/dist/md/ic_push_pin.js new file mode 100644 index 000000000..7e21011b9 --- /dev/null +++ b/dist/md/ic_push_pin.js @@ -0,0 +1,49 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_push_pin = void 0; +var ic_push_pin = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M16,9V4l1,0c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H7C6.45,2,6,2.45,6,3v0 c0,0.55,0.45,1,1,1l1,0v5c0,1.66-1.34,3-3,3h0v2h5.97v7l1,1l1-1v-7H19v-2h0C17.34,12,16,10.66,16,9z", + "fill-rule": "evenodd" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M16,9V4l1,0c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H7C6.45,2,6,2.45,6,3v0 c0,0.55,0.45,1,1,1l1,0v5c0,1.66-1.34,3-3,3h0v2h5.97v7l1,1l1-1v-7H19v-2h0C17.34,12,16,10.66,16,9z", + "fill-rule": "evenodd" + }, + "children": [] + }] + }] + }] +}; +exports.ic_push_pin = ic_push_pin; \ No newline at end of file diff --git a/dist/md/ic_push_pin_outline.js b/dist/md/ic_push_pin_outline.js new file mode 100644 index 000000000..3d6714ca1 --- /dev/null +++ b/dist/md/ic_push_pin_outline.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_push_pin_outline = void 0; +var ic_push_pin_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M14,4v5c0,1.12,0.37,2.16,1,3H9c0.65-0.86,1-1.9,1-3V4H14 M17,2H7C6.45,2,6,2.45,6,3c0,0.55,0.45,1,1,1c0,0,0,0,0,0l1,0v5 c0,1.66-1.34,3-3,3v2h5.97v7l1,1l1-1v-7H19v-2c0,0,0,0,0,0c-1.66,0-3-1.34-3-3V4l1,0c0,0,0,0,0,0c0.55,0,1-0.45,1-1 C18,2.45,17.55,2,17,2L17,2z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14,4v5c0,1.12,0.37,2.16,1,3H9c0.65-0.86,1-1.9,1-3V4H14 M17,2H7C6.45,2,6,2.45,6,3c0,0.55,0.45,1,1,1c0,0,0,0,0,0l1,0v5 c0,1.66-1.34,3-3,3v2h5.97v7l1,1l1-1v-7H19v-2c0,0,0,0,0,0c-1.66,0-3-1.34-3-3V4l1,0c0,0,0,0,0,0c0.55,0,1-0.45,1-1 C18,2.45,17.55,2,17,2L17,2z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_push_pin_outline = ic_push_pin_outline; \ No newline at end of file diff --git a/dist/md/ic_push_pin_twotone.js b/dist/md/ic_push_pin_twotone.js new file mode 100644 index 000000000..e1e1a69b8 --- /dev/null +++ b/dist/md/ic_push_pin_twotone.js @@ -0,0 +1,69 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_push_pin_twotone = void 0; +var ic_push_pin_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M14,4h-4v5c0,1.1-0.35,2.14-1,3h6c-0.63-0.84-1-1.88-1-3V4z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14,4h-4v5c0,1.1-0.35,2.14-1,3h6c-0.63-0.84-1-1.88-1-3V4z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19,12c-1.66,0-3-1.34-3-3V4l1,0c0,0,0,0,0,0c0.55,0,1-0.45,1-1s-0.45-1-1-1H7C6.45,2,6,2.45,6,3s0.45,1,1,1c0,0,0,0,0,0 l1,0v5c0,1.66-1.34,3-3,3v2h5.97v7l1,1l1-1v-7H19L19,12C19,12,19,12,19,12z M9,12c0.65-0.86,1-1.9,1-3V4h4v5c0,1.12,0.37,2.16,1,3 H9z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,12c-1.66,0-3-1.34-3-3V4l1,0c0,0,0,0,0,0c0.55,0,1-0.45,1-1s-0.45-1-1-1H7C6.45,2,6,2.45,6,3s0.45,1,1,1c0,0,0,0,0,0 l1,0v5c0,1.66-1.34,3-3,3v2h5.97v7l1,1l1-1v-7H19L19,12C19,12,19,12,19,12z M9,12c0.65-0.86,1-1.9,1-3V4h4v5c0,1.12,0.37,2.16,1,3 H9z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_push_pin_twotone = ic_push_pin_twotone; \ No newline at end of file diff --git a/dist/md/ic_qr_code.js b/dist/md/ic_qr_code.js new file mode 100644 index 000000000..be4f2630c --- /dev/null +++ b/dist/md/ic_qr_code.js @@ -0,0 +1,223 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_qr_code = void 0; +var ic_qr_code = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M3,11h8V3H3V11z M5,5h4v4H5V5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M3,11h8V3H3V11z M5,5h4v4H5V5z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M3,21h8v-8H3V21z M5,15h4v4H5V15z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M3,21h8v-8H3V21z M5,15h4v4H5V15z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M13,3v8h8V3H13z M19,9h-4V5h4V9z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M13,3v8h8V3H13z M19,9h-4V5h4V9z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "19", + "y": "19" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "19", + "y": "19" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "13", + "y": "13" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "13", + "y": "13" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "15", + "y": "15" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "15", + "y": "15" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "13", + "y": "17" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "13", + "y": "17" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "15", + "y": "19" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "15", + "y": "19" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "17", + "y": "17" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "17", + "y": "17" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "17", + "y": "13" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "17", + "y": "13" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "19", + "y": "15" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "19", + "y": "15" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_qr_code = ic_qr_code; \ No newline at end of file diff --git a/dist/md/ic_qr_code_outline.js b/dist/md/ic_qr_code_outline.js new file mode 100644 index 000000000..3a4300289 --- /dev/null +++ b/dist/md/ic_qr_code_outline.js @@ -0,0 +1,223 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_qr_code_outline = void 0; +var ic_qr_code_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M3,11h8V3H3V11z M5,5h4v4H5V5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M3,11h8V3H3V11z M5,5h4v4H5V5z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M3,21h8v-8H3V21z M5,15h4v4H5V15z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M3,21h8v-8H3V21z M5,15h4v4H5V15z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M13,3v8h8V3H13z M19,9h-4V5h4V9z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M13,3v8h8V3H13z M19,9h-4V5h4V9z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "19", + "y": "19" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "19", + "y": "19" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "13", + "y": "13" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "13", + "y": "13" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "15", + "y": "15" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "15", + "y": "15" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "13", + "y": "17" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "13", + "y": "17" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "15", + "y": "19" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "15", + "y": "19" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "17", + "y": "17" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "17", + "y": "17" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "17", + "y": "13" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "17", + "y": "13" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "19", + "y": "15" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "19", + "y": "15" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_qr_code_outline = ic_qr_code_outline; \ No newline at end of file diff --git a/dist/md/ic_qr_code_scanner.js b/dist/md/ic_qr_code_scanner.js new file mode 100644 index 000000000..29b492a4e --- /dev/null +++ b/dist/md/ic_qr_code_scanner.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_qr_code_scanner = void 0; +var ic_qr_code_scanner = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9.5,6.5v3h-3v-3H9.5 M11,5H5v6h6V5L11,5z M9.5,14.5v3h-3v-3H9.5 M11,13H5v6h6V13L11,13z M17.5,6.5v3h-3v-3H17.5 M19,5h-6v6 h6V5L19,5z M13,13h1.5v1.5H13V13z M14.5,14.5H16V16h-1.5V14.5z M16,13h1.5v1.5H16V13z M13,16h1.5v1.5H13V16z M14.5,17.5H16V19h-1.5 V17.5z M16,16h1.5v1.5H16V16z M17.5,14.5H19V16h-1.5V14.5z M17.5,17.5H19V19h-1.5V17.5z M22,7h-2V4h-3V2h5V7z M22,22v-5h-2v3h-3v2 H22z M2,22h5v-2H4v-3H2V22z M2,2v5h2V4h3V2H2z" + }, + "children": [] + }] +}; +exports.ic_qr_code_scanner = ic_qr_code_scanner; \ No newline at end of file diff --git a/dist/md/ic_qr_code_scanner_outline.js b/dist/md/ic_qr_code_scanner_outline.js new file mode 100644 index 000000000..24b72981e --- /dev/null +++ b/dist/md/ic_qr_code_scanner_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_qr_code_scanner_outline = void 0; +var ic_qr_code_scanner_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9.5,6.5v3h-3v-3H9.5 M11,5H5v6h6V5L11,5z M9.5,14.5v3h-3v-3H9.5 M11,13H5v6h6V13L11,13z M17.5,6.5v3h-3v-3H17.5 M19,5h-6v6 h6V5L19,5z M13,13h1.5v1.5H13V13z M14.5,14.5H16V16h-1.5V14.5z M16,13h1.5v1.5H16V13z M13,16h1.5v1.5H13V16z M14.5,17.5H16V19h-1.5 V17.5z M16,16h1.5v1.5H16V16z M17.5,14.5H19V16h-1.5V14.5z M17.5,17.5H19V19h-1.5V17.5z M22,7h-2V4h-3V2h5V7z M22,22v-5h-2v3h-3v2 H22z M2,22h5v-2H4v-3H2V22z M2,2v5h2V4h3V2H2z" + }, + "children": [] + }] +}; +exports.ic_qr_code_scanner_outline = ic_qr_code_scanner_outline; \ No newline at end of file diff --git a/dist/md/ic_qr_code_scanner_twotone.js b/dist/md/ic_qr_code_scanner_twotone.js new file mode 100644 index 000000000..cff80dea1 --- /dev/null +++ b/dist/md/ic_qr_code_scanner_twotone.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_qr_code_scanner_twotone = void 0; +var ic_qr_code_scanner_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9.5,6.5v3h-3v-3H9.5 M11,5H5v6h6V5L11,5z M9.5,14.5v3h-3v-3H9.5 M11,13H5v6h6V13L11,13z M17.5,6.5v3h-3v-3H17.5 M19,5h-6v6 h6V5L19,5z M13,13h1.5v1.5H13V13z M14.5,14.5H16V16h-1.5V14.5z M16,13h1.5v1.5H16V13z M13,16h1.5v1.5H13V16z M14.5,17.5H16V19h-1.5 V17.5z M16,16h1.5v1.5H16V16z M17.5,14.5H19V16h-1.5V14.5z M17.5,17.5H19V19h-1.5V17.5z M22,7h-2V4h-3V2h5V7z M22,22v-5h-2v3h-3v2 H22z M2,22h5v-2H4v-3H2V22z M2,2v5h2V4h3V2H2z" + }, + "children": [] + }] +}; +exports.ic_qr_code_scanner_twotone = ic_qr_code_scanner_twotone; \ No newline at end of file diff --git a/dist/md/ic_qr_code_twotone.js b/dist/md/ic_qr_code_twotone.js new file mode 100644 index 000000000..51fac512c --- /dev/null +++ b/dist/md/ic_qr_code_twotone.js @@ -0,0 +1,323 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_qr_code_twotone = void 0; +var ic_qr_code_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "2", + "width": "2", + "x": "17", + "y": "15" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "2", + "width": "2", + "x": "17", + "y": "15" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "fill": "none", + "height": "2", + "width": "2", + "x": "15", + "y": "17" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "2", + "width": "2", + "x": "15", + "y": "17" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "4", + "opacity": ".3", + "width": "4", + "x": "5", + "y": "15" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "4", + "opacity": ".3", + "width": "4", + "x": "5", + "y": "15" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "4", + "opacity": ".3", + "width": "4", + "x": "5", + "y": "5" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "4", + "opacity": ".3", + "width": "4", + "x": "5", + "y": "5" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "4", + "opacity": ".3", + "width": "4", + "x": "15", + "y": "5" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "4", + "opacity": ".3", + "width": "4", + "x": "15", + "y": "5" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M3,11h8V3H3V11z M5,5h4v4H5V5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M3,11h8V3H3V11z M5,5h4v4H5V5z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M3,21h8v-8H3V21z M5,15h4v4H5V15z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M3,21h8v-8H3V21z M5,15h4v4H5V15z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M13,3v8h8V3H13z M19,9h-4V5h4V9z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M13,3v8h8V3H13z M19,9h-4V5h4V9z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "19", + "y": "19" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "19", + "y": "19" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "13", + "y": "13" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "13", + "y": "13" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "15", + "y": "15" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "15", + "y": "15" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "13", + "y": "17" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "13", + "y": "17" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "15", + "y": "19" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "15", + "y": "19" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "17", + "y": "17" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "17", + "y": "17" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "17", + "y": "13" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "17", + "y": "13" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "19", + "y": "15" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "19", + "y": "15" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_qr_code_twotone = ic_qr_code_twotone; \ No newline at end of file diff --git a/dist/md/ic_query_builder.js b/dist/md/ic_query_builder.js new file mode 100644 index 000000000..74d9904e8 --- /dev/null +++ b/dist/md/ic_query_builder.js @@ -0,0 +1,30 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_query_builder = void 0; +var ic_query_builder = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12.5 7H11v6l5.25 3.15.75-1.23-4.5-2.67z" + }, + "children": [] + }] +}; +exports.ic_query_builder = ic_query_builder; \ No newline at end of file diff --git a/dist/md/ic_query_builder_outline.js b/dist/md/ic_query_builder_outline.js new file mode 100644 index 000000000..33cbf7327 --- /dev/null +++ b/dist/md/ic_query_builder_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_query_builder_outline = void 0; +var ic_query_builder_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z" + }, + "children": [] + }] +}; +exports.ic_query_builder_outline = ic_query_builder_outline; \ No newline at end of file diff --git a/dist/md/ic_query_builder_twotone.js b/dist/md/ic_query_builder_twotone.js new file mode 100644 index 000000000..6c60b958c --- /dev/null +++ b/dist/md/ic_query_builder_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_query_builder_twotone = void 0; +var ic_query_builder_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm4.25 12.15L11 13V7h1.5v5.25l4.5 2.67-.75 1.23z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z" + }, + "children": [] + }] +}; +exports.ic_query_builder_twotone = ic_query_builder_twotone; \ No newline at end of file diff --git a/dist/md/ic_question_answer.js b/dist/md/ic_question_answer.js new file mode 100644 index 000000000..97a7c7b7c --- /dev/null +++ b/dist/md/ic_question_answer.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_question_answer = void 0; +var ic_question_answer = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 6h-2v9H6v2c0 .55.45 1 1 1h11l4 4V7c0-.55-.45-1-1-1zm-4 6V3c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v14l4-4h10c.55 0 1-.45 1-1z" + }, + "children": [] + }] +}; +exports.ic_question_answer = ic_question_answer; \ No newline at end of file diff --git a/dist/md/ic_question_answer_outline.js b/dist/md/ic_question_answer_outline.js new file mode 100644 index 000000000..340a3feeb --- /dev/null +++ b/dist/md/ic_question_answer_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_question_answer_outline = void 0; +var ic_question_answer_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 4v7H5.17l-.59.59-.58.58V4h11m1-2H3c-.55 0-1 .45-1 1v14l4-4h10c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm5 4h-2v9H6v2c0 .55.45 1 1 1h11l4 4V7c0-.55-.45-1-1-1z" + }, + "children": [] + }] +}; +exports.ic_question_answer_outline = ic_question_answer_outline; \ No newline at end of file diff --git a/dist/md/ic_question_answer_twotone.js b/dist/md/ic_question_answer_twotone.js new file mode 100644 index 000000000..88138efb8 --- /dev/null +++ b/dist/md/ic_question_answer_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_question_answer_twotone = void 0; +var ic_question_answer_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 11V4H4v8.17l.59-.58.58-.59H6z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 6h-2v9H6v2c0 .55.45 1 1 1h11l4 4V7c0-.55-.45-1-1-1zm-5 7c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v14l4-4h10zM4.59 11.59l-.59.58V4h11v7H5.17l-.58.59z" + }, + "children": [] + }] +}; +exports.ic_question_answer_twotone = ic_question_answer_twotone; \ No newline at end of file diff --git a/dist/md/ic_queue.js b/dist/md/ic_queue.js new file mode 100644 index 000000000..c77809057 --- /dev/null +++ b/dist/md/ic_queue.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_queue = void 0; +var ic_queue = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-1 9h-4v4h-2v-4H9V9h4V5h2v4h4v2z" + }, + "children": [] + }] +}; +exports.ic_queue = ic_queue; \ No newline at end of file diff --git a/dist/md/ic_queue_music.js b/dist/md/ic_queue_music.js new file mode 100644 index 000000000..cb01a288e --- /dev/null +++ b/dist/md/ic_queue_music.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_queue_music = void 0; +var ic_queue_music = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 6H3v2h12V6zm0 4H3v2h12v-2zM3 16h8v-2H3v2zM17 6v8.18c-.31-.11-.65-.18-1-.18-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3V8h3V6h-5z" + }, + "children": [] + }] +}; +exports.ic_queue_music = ic_queue_music; \ No newline at end of file diff --git a/dist/md/ic_queue_music_outline.js b/dist/md/ic_queue_music_outline.js new file mode 100644 index 000000000..45204030c --- /dev/null +++ b/dist/md/ic_queue_music_outline.js @@ -0,0 +1,107 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_queue_music_outline = void 0; +var ic_queue_music_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": { + "transform": "matrix(1 0 0 1 144 120)" + }, + "children": [{ + "name": "g", + "attribs": { + "transform": "matrix(1 0 0 1 144 120)" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M-122-114h-5v8.18c-0.31-0.11-0.65-0.18-1-0.18c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3v-9h3V-114 L-122-114z M-129-114h-12v2h12V-114L-129-114z M-129-110h-12v2h12V-110L-129-110z M-133-106h-8v2h8V-106L-133-106z M-129-103 c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1s-0.45,1-1,1C-128.55-102-129-102.45-129-103z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M-122-114h-5v8.18c-0.31-0.11-0.65-0.18-1-0.18c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3v-9h3V-114 L-122-114z M-129-114h-12v2h12V-114L-129-114z M-129-110h-12v2h12V-110L-129-110z M-133-106h-8v2h8V-106L-133-106z M-129-103 c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1s-0.45,1-1,1C-128.55-102-129-102.45-129-103z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_queue_music_outline = ic_queue_music_outline; \ No newline at end of file diff --git a/dist/md/ic_queue_music_twotone.js b/dist/md/ic_queue_music_twotone.js new file mode 100644 index 000000000..ecb5e3b2a --- /dev/null +++ b/dist/md/ic_queue_music_twotone.js @@ -0,0 +1,167 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_queue_music_twotone = void 0; +var ic_queue_music_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "cx": "16", + "cy": "17", + "opacity": ".3", + "r": "1" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "16", + "cy": "17", + "opacity": ".3", + "r": "1" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "12", + "x": "3", + "y": "10" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "12", + "x": "3", + "y": "10" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "8", + "x": "3", + "y": "14" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "8", + "x": "3", + "y": "14" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "12", + "x": "3", + "y": "6" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "12", + "x": "3", + "y": "6" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M17,14.18C16.69,14.07,16.35,14,16,14c-1.66,0-3,1.34-3,3c0,1.66,1.34,3,3,3s3-1.34,3-3V8h3V6h-5V14.18z M16,18 c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C17,17.55,16.55,18,16,18z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17,14.18C16.69,14.07,16.35,14,16,14c-1.66,0-3,1.34-3,3c0,1.66,1.34,3,3,3s3-1.34,3-3V8h3V6h-5V14.18z M16,18 c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C17,17.55,16.55,18,16,18z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_queue_music_twotone = ic_queue_music_twotone; \ No newline at end of file diff --git a/dist/md/ic_queue_outline.js b/dist/md/ic_queue_outline.js new file mode 100644 index 000000000..02b7e516c --- /dev/null +++ b/dist/md/ic_queue_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_queue_outline = void 0; +var ic_queue_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zm-7-1h2v-4h4V9h-4V5h-2v4H9v2h4z" + }, + "children": [] + }] +}; +exports.ic_queue_outline = ic_queue_outline; \ No newline at end of file diff --git a/dist/md/ic_queue_play_next.js b/dist/md/ic_queue_play_next.js new file mode 100644 index 000000000..79faf2375 --- /dev/null +++ b/dist/md/ic_queue_play_next.js @@ -0,0 +1,65 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_queue_play_next = void 0; +var ic_queue_play_next = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M21,3H3C1.89,3,1,3.89,1,5v12c0,1.1,0.89,2,2,2h5v2h8v-2h2v-2H3V5h18v8h2V5C23,3.89,22.1,3,21,3z M13,10V7h-2v3H8v2h3v3 h2v-3h3v-2H13z M24,18l-4.5,4.5L18,21l3-3l-3-3l1.5-1.5L24,18z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21,3H3C1.89,3,1,3.89,1,5v12c0,1.1,0.89,2,2,2h5v2h8v-2h2v-2H3V5h18v8h2V5C23,3.89,22.1,3,21,3z M13,10V7h-2v3H8v2h3v3 h2v-3h3v-2H13z M24,18l-4.5,4.5L18,21l3-3l-3-3l1.5-1.5L24,18z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_queue_play_next = ic_queue_play_next; \ No newline at end of file diff --git a/dist/md/ic_queue_play_next_outline.js b/dist/md/ic_queue_play_next_outline.js new file mode 100644 index 000000000..83063c99b --- /dev/null +++ b/dist/md/ic_queue_play_next_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_queue_play_next_outline = void 0; +var ic_queue_play_next_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 3H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5v2h8v-2h2v-2H3V5h18v8h2V5c0-1.11-.9-2-2-2zm-8 7V7h-2v3H8v2h3v3h2v-3h3v-2h-3zm11 8l-4.5 4.5L18 21l3-3-3-3 1.5-1.5L24 18z" + }, + "children": [] + }] +}; +exports.ic_queue_play_next_outline = ic_queue_play_next_outline; \ No newline at end of file diff --git a/dist/md/ic_queue_play_next_twotone.js b/dist/md/ic_queue_play_next_twotone.js new file mode 100644 index 000000000..327d59020 --- /dev/null +++ b/dist/md/ic_queue_play_next_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_queue_play_next_twotone = void 0; +var ic_queue_play_next_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 15v-3h3v-2h-3V7h-2v3H8v2h3v3zm5 0l3 3-3 3 1.5 1.5L24 18l-4.5-4.5zM8 19v2h8v-2h2v-2H3V5h18v8h2V5c0-1.11-.9-2-2-2H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5z" + }, + "children": [] + }] +}; +exports.ic_queue_play_next_twotone = ic_queue_play_next_twotone; \ No newline at end of file diff --git a/dist/md/ic_queue_twotone.js b/dist/md/ic_queue_twotone.js new file mode 100644 index 000000000..93ff98868 --- /dev/null +++ b/dist/md/ic_queue_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_queue_twotone = void 0; +var ic_queue_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8 16h12V4H8v12zm1-7h4V5h2v4h4v2h-4v4h-2v-4H9V9z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M2 20c0 1.1.9 2 2 2h14v-2H4V6H2v14zM20 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zm-7-1h2v-4h4V9h-4V5h-2v4H9v2h4z" + }, + "children": [] + }] +}; +exports.ic_queue_twotone = ic_queue_twotone; \ No newline at end of file diff --git a/dist/md/ic_quickreply.js b/dist/md/ic_quickreply.js new file mode 100644 index 000000000..d9607cd44 --- /dev/null +++ b/dist/md/ic_quickreply.js @@ -0,0 +1,83 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_quickreply = void 0; +var ic_quickreply = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,4c0-1.1-0.9-2-2-2H4C2.9,2,2.01,2.9,2.01,4L2,22l4-4h9v-8h7V4z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,4c0-1.1-0.9-2-2-2H4C2.9,2,2.01,2.9,2.01,4L2,22l4-4h9v-8h7V4z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "22.5,16 20.3,16 22,12 17,12 17,18 19,18 19,23" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "22.5,16 20.3,16 22,12 17,12 17,18 19,18 19,23" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_quickreply = ic_quickreply; \ No newline at end of file diff --git a/dist/md/ic_quickreply_outline.js b/dist/md/ic_quickreply_outline.js new file mode 100644 index 000000000..975aed1b5 --- /dev/null +++ b/dist/md/ic_quickreply_outline.js @@ -0,0 +1,83 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_quickreply_outline = void 0; +var ic_quickreply_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M4,17.17V4h16v6h2V4c0-1.1-0.9-2-2-2H4C2.9,2,2.01,2.9,2.01,4L2,22l4-4h9v-2H5.17L4,17.17z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M4,17.17V4h16v6h2V4c0-1.1-0.9-2-2-2H4C2.9,2,2.01,2.9,2.01,4L2,22l4-4h9v-2H5.17L4,17.17z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "22.5,16 20.3,16 22,12 17,12 17,18 19,18 19,23" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "22.5,16 20.3,16 22,12 17,12 17,18 19,18 19,23" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_quickreply_outline = ic_quickreply_outline; \ No newline at end of file diff --git a/dist/md/ic_quickreply_twotone.js b/dist/md/ic_quickreply_twotone.js new file mode 100644 index 000000000..0ac9f87d7 --- /dev/null +++ b/dist/md/ic_quickreply_twotone.js @@ -0,0 +1,107 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_quickreply_twotone = void 0; +var ic_quickreply_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": { + "opacity": ".3" + }, + "children": [{ + "name": "g", + "attribs": { + "opacity": ".3" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "4,4 4,17.17 5.17,16 15,16 15,10 20,10 20,4" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "4,4 4,17.17 5.17,16 15,16 15,10 20,10 20,4" + }, + "children": [] + }] + }] + }] + }, { + "name": "path", + "attribs": { + "d": "M5.17,16L4,17.17V4h16v6h2V4c0-1.1-0.9-2-2-2H4C2.9,2,2.01,2.9,2.01,4L2,22l4-4h9v-2H5.17z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M5.17,16L4,17.17V4h16v6h2V4c0-1.1-0.9-2-2-2H4C2.9,2,2.01,2.9,2.01,4L2,22l4-4h9v-2H5.17z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "19,23 22.5,16 20.3,16 22,12 17,12 17,18 19,18" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "19,23 22.5,16 20.3,16 22,12 17,12 17,18 19,18" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_quickreply_twotone = ic_quickreply_twotone; \ No newline at end of file diff --git a/dist/md/ic_radio.js b/dist/md/ic_radio.js new file mode 100644 index 000000000..27f84fbee --- /dev/null +++ b/dist/md/ic_radio.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_radio = void 0; +var ic_radio = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3.24 6.15C2.51 6.43 2 7.17 2 8v12c0 1.1.89 2 2 2h16c1.11 0 2-.9 2-2V8c0-1.11-.89-2-2-2H8.3l8.26-3.34L15.88 1 3.24 6.15zM7 20c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm13-8h-2v-2h-2v2H4V8h16v4z" + }, + "children": [] + }] +}; +exports.ic_radio = ic_radio; \ No newline at end of file diff --git a/dist/md/ic_radio_button_checked.js b/dist/md/ic_radio_button_checked.js new file mode 100644 index 000000000..1aed1bb86 --- /dev/null +++ b/dist/md/ic_radio_button_checked.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_radio_button_checked = void 0; +var ic_radio_button_checked = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 7c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0-5C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" + }, + "children": [] + }] +}; +exports.ic_radio_button_checked = ic_radio_button_checked; \ No newline at end of file diff --git a/dist/md/ic_radio_button_checked_outline.js b/dist/md/ic_radio_button_checked_outline.js new file mode 100644 index 000000000..403d8a5e6 --- /dev/null +++ b/dist/md/ic_radio_button_checked_outline.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_radio_button_checked_outline = void 0; +var ic_radio_button_checked_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "5" + }, + "children": [] + }] +}; +exports.ic_radio_button_checked_outline = ic_radio_button_checked_outline; \ No newline at end of file diff --git a/dist/md/ic_radio_button_checked_twotone.js b/dist/md/ic_radio_button_checked_twotone.js new file mode 100644 index 000000000..b12bd7425 --- /dev/null +++ b/dist/md/ic_radio_button_checked_twotone.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_radio_button_checked_twotone = void 0; +var ic_radio_button_checked_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "5" + }, + "children": [] + }] +}; +exports.ic_radio_button_checked_twotone = ic_radio_button_checked_twotone; \ No newline at end of file diff --git a/dist/md/ic_radio_button_unchecked.js b/dist/md/ic_radio_button_unchecked.js new file mode 100644 index 000000000..85a784ecf --- /dev/null +++ b/dist/md/ic_radio_button_unchecked.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_radio_button_unchecked = void 0; +var ic_radio_button_unchecked = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" + }, + "children": [] + }] +}; +exports.ic_radio_button_unchecked = ic_radio_button_unchecked; \ No newline at end of file diff --git a/dist/md/ic_radio_button_unchecked_outline.js b/dist/md/ic_radio_button_unchecked_outline.js new file mode 100644 index 000000000..17acd206c --- /dev/null +++ b/dist/md/ic_radio_button_unchecked_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_radio_button_unchecked_outline = void 0; +var ic_radio_button_unchecked_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" + }, + "children": [] + }] +}; +exports.ic_radio_button_unchecked_outline = ic_radio_button_unchecked_outline; \ No newline at end of file diff --git a/dist/md/ic_radio_button_unchecked_twotone.js b/dist/md/ic_radio_button_unchecked_twotone.js new file mode 100644 index 000000000..fab38f05a --- /dev/null +++ b/dist/md/ic_radio_button_unchecked_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_radio_button_unchecked_twotone = void 0; +var ic_radio_button_unchecked_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" + }, + "children": [] + }] +}; +exports.ic_radio_button_unchecked_twotone = ic_radio_button_unchecked_twotone; \ No newline at end of file diff --git a/dist/md/ic_radio_outline.js b/dist/md/ic_radio_outline.js new file mode 100644 index 000000000..e87164456 --- /dev/null +++ b/dist/md/ic_radio_outline.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_radio_outline = void 0; +var ic_radio_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 6H8.3l8.26-3.34L15.88 1 3.24 6.15C2.51 6.43 2 7.17 2 8v12c0 1.1.89 2 2 2h16c1.11 0 2-.9 2-2V8c0-1.11-.89-2-2-2zm0 2v3h-2V9h-2v2H4V8h16zM4 20v-7h16v7H4z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "8", + "cy": "16.48", + "r": "2.5" + }, + "children": [] + }] +}; +exports.ic_radio_outline = ic_radio_outline; \ No newline at end of file diff --git a/dist/md/ic_radio_twotone.js b/dist/md/ic_radio_twotone.js new file mode 100644 index 000000000..eb357408c --- /dev/null +++ b/dist/md/ic_radio_twotone.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_radio_twotone = void 0; +var ic_radio_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 13H4v7h16v-7zM8 18.98c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M2 20c0 1.1.89 2 2 2h16c1.11 0 2-.9 2-2V8c0-1.11-.89-2-2-2H8.3l8.26-3.34L15.88 1 3.24 6.15C2.51 6.43 2 7.17 2 8v12zM4 8h16v3h-2V9h-2v2H4V8zm0 5h16v7H4v-7z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "8", + "cy": "16.48", + "r": "2.5" + }, + "children": [] + }] +}; +exports.ic_radio_twotone = ic_radio_twotone; \ No newline at end of file diff --git a/dist/md/ic_railway_alert.js b/dist/md/ic_railway_alert.js new file mode 100644 index 000000000..722d0ed6e --- /dev/null +++ b/dist/md/ic_railway_alert.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_railway_alert = void 0; +var ic_railway_alert = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M23 8a7 7 0 0 0-11.95-4.95A33.8 33.8 0 0 0 9 3c-4.42 0-8 .5-8 4v10.5A3.5 3.5 0 0 0 4.5 21L3 22.5v.5h12v-.5L13.5 21a3.5 3.5 0 0 0 3.5-3.5v-2.58A7 7 0 0 0 23 8zM3 12V7h6.08a6.96 6.96 0 0 0 1.18 5H3zm6 7c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm7.71-6.06l-.2.03L16 13l-.47-.02-.16-.02-.29-.04-.2-.04-.22-.06a1.55 1.55 0 0 1-.23-.07l-.13-.05A4.99 4.99 0 0 1 11.1 7c.04-.19.09-.37.15-.54l.05-.14.15-.38.07-.15.2-.36.07-.12.3-.42.02-.02c.24-.3.52-.57.82-.81l.01-.01.46-.32.03-.02A5.25 5.25 0 0 1 16 3a5 5 0 0 1 .71 9.94zM15 4h2v5h-2zm0 6h2v2h-2z" + }, + "children": [] + }] +}; +exports.ic_railway_alert = ic_railway_alert; \ No newline at end of file diff --git a/dist/md/ic_ramen_dining.js b/dist/md/ic_ramen_dining.js new file mode 100644 index 000000000..0c3ef73ca --- /dev/null +++ b/dist/md/ic_ramen_dining.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_ramen_dining = void 0; +var ic_ramen_dining = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M9,6H8V4.65l1-0.12V6z M9,12H8V7h1V12z M6,7h1v5H6V7z M6,4.88l1-0.12V6H6V4.88z M22,3V2L5,4v8H2c0,3.69,2.47,6.86,6,8.25 V22h8v-1.75c3.53-1.39,6-4.56,6-8.25H10V7h12V6H10V4.41L22,3z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M9,6H8V4.65l1-0.12V6z M9,12H8V7h1V12z M6,7h1v5H6V7z M6,4.88l1-0.12V6H6V4.88z M22,3V2L5,4v8H2c0,3.69,2.47,6.86,6,8.25 V22h8v-1.75c3.53-1.39,6-4.56,6-8.25H10V7h12V6H10V4.41L22,3z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_ramen_dining = ic_ramen_dining; \ No newline at end of file diff --git a/dist/md/ic_rate_review.js b/dist/md/ic_rate_review.js new file mode 100644 index 000000000..85c4591d7 --- /dev/null +++ b/dist/md/ic_rate_review.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_rate_review = void 0; +var ic_rate_review = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0zm15.35 6.41l-1.77-1.77c-.2-.2-.51-.2-.71 0L6 11.53V14h2.47l6.88-6.88c.2-.19.2-.51 0-.71z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM6 14v-2.47l6.88-6.88c.2-.2.51-.2.71 0l1.77 1.77c.2.2.2.51 0 .71L8.47 14H6zm12 0h-7.5l2-2H18v2z" + }, + "children": [] + }] +}; +exports.ic_rate_review = ic_rate_review; \ No newline at end of file diff --git a/dist/md/ic_rate_review_outline.js b/dist/md/ic_rate_review_outline.js new file mode 100644 index 000000000..c91d14b03 --- /dev/null +++ b/dist/md/ic_rate_review_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_rate_review_outline = void 0; +var ic_rate_review_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17l-.59.59-.58.58V4h16v12zm-9.5-2H18v-2h-5.5zm3.86-5.87c.2-.2.2-.51 0-.71l-1.77-1.77c-.2-.2-.51-.2-.71 0L6 11.53V14h2.47l5.89-5.87z" + }, + "children": [] + }] +}; +exports.ic_rate_review_outline = ic_rate_review_outline; \ No newline at end of file diff --git a/dist/md/ic_rate_review_twotone.js b/dist/md/ic_rate_review_twotone.js new file mode 100644 index 000000000..3ed5c80b4 --- /dev/null +++ b/dist/md/ic_rate_review_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_rate_review_twotone = void 0; +var ic_rate_review_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 17.17l.59-.59.58-.58H20V4H4v13.17zM18 14h-7.5l2-2H18v2zM6 11.53l5.88-5.88c.2-.2.51-.2.71 0l1.77 1.77c.2.2.2.51 0 .71L8.47 14H6v-2.47z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17l-.59.59-.58.58V4h16v12zm-9.5-2H18v-2h-5.5zm3.86-5.87c.2-.2.2-.51 0-.71l-1.77-1.77c-.2-.2-.51-.2-.71 0L6 11.53V14h2.47l5.89-5.87z" + }, + "children": [] + }] +}; +exports.ic_rate_review_twotone = ic_rate_review_twotone; \ No newline at end of file diff --git a/dist/md/ic_read_more.js b/dist/md/ic_read_more.js new file mode 100644 index 000000000..857b0093c --- /dev/null +++ b/dist/md/ic_read_more.js @@ -0,0 +1,109 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_read_more = void 0; +var ic_read_more = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "9", + "x": "13", + "y": "7" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "9", + "x": "13", + "y": "7" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "9", + "x": "13", + "y": "15" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "9", + "x": "13", + "y": "15" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "6", + "x": "16", + "y": "11" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "6", + "x": "16", + "y": "11" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "13,12 8,7 8,11 2,11 2,13 8,13 8,17" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "13,12 8,7 8,11 2,11 2,13 8,13 8,17" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_read_more = ic_read_more; \ No newline at end of file diff --git a/dist/md/ic_read_more_outline.js b/dist/md/ic_read_more_outline.js new file mode 100644 index 000000000..fdb78ffa8 --- /dev/null +++ b/dist/md/ic_read_more_outline.js @@ -0,0 +1,109 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_read_more_outline = void 0; +var ic_read_more_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "9", + "x": "13", + "y": "7" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "9", + "x": "13", + "y": "7" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "9", + "x": "13", + "y": "15" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "9", + "x": "13", + "y": "15" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "6", + "x": "16", + "y": "11" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "6", + "x": "16", + "y": "11" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "13,12 8,7 8,11 2,11 2,13 8,13 8,17" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "13,12 8,7 8,11 2,11 2,13 8,13 8,17" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_read_more_outline = ic_read_more_outline; \ No newline at end of file diff --git a/dist/md/ic_read_more_twotone.js b/dist/md/ic_read_more_twotone.js new file mode 100644 index 000000000..cfe5fcc38 --- /dev/null +++ b/dist/md/ic_read_more_twotone.js @@ -0,0 +1,109 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_read_more_twotone = void 0; +var ic_read_more_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "9", + "x": "13", + "y": "7" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "9", + "x": "13", + "y": "7" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "9", + "x": "13", + "y": "15" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "9", + "x": "13", + "y": "15" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "6", + "x": "16", + "y": "11" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "6", + "x": "16", + "y": "11" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "13,12 8,7 8,11 2,11 2,13 8,13 8,17" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "13,12 8,7 8,11 2,11 2,13 8,13 8,17" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_read_more_twotone = ic_read_more_twotone; \ No newline at end of file diff --git a/dist/md/ic_receipt.js b/dist/md/ic_receipt.js new file mode 100644 index 000000000..837b4cc91 --- /dev/null +++ b/dist/md/ic_receipt.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_receipt = void 0; +var ic_receipt = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 17H6v-2h12v2zm0-4H6v-2h12v2zm0-4H6V7h12v2zM3 22l1.5-1.5L6 22l1.5-1.5L9 22l1.5-1.5L12 22l1.5-1.5L15 22l1.5-1.5L18 22l1.5-1.5L21 22V2l-1.5 1.5L18 2l-1.5 1.5L15 2l-1.5 1.5L12 2l-1.5 1.5L9 2 7.5 3.5 6 2 4.5 3.5 3 2v20z" + }, + "children": [] + }] +}; +exports.ic_receipt = ic_receipt; \ No newline at end of file diff --git a/dist/md/ic_receipt_long.js b/dist/md/ic_receipt_long.js new file mode 100644 index 000000000..e91328033 --- /dev/null +++ b/dist/md/ic_receipt_long.js @@ -0,0 +1,106 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_receipt_long = void 0; +var ic_receipt_long = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0,0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M19.5,3.5L18,2l-1.5,1.5L15,2l-1.5,1.5L12,2l-1.5,1.5L9,2L7.5,3.5L6,2v14H3v3c0,1.66,1.34,3,3,3h12c1.66,0,3-1.34,3-3V2 L19.5,3.5z M19,19c0,0.55-0.45,1-1,1s-1-0.45-1-1v-3H8V5h11V19z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19.5,3.5L18,2l-1.5,1.5L15,2l-1.5,1.5L12,2l-1.5,1.5L9,2L7.5,3.5L6,2v14H3v3c0,1.66,1.34,3,3,3h12c1.66,0,3-1.34,3-3V2 L19.5,3.5z M19,19c0,0.55-0.45,1-1,1s-1-0.45-1-1v-3H8V5h11V19z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "6", + "x": "9", + "y": "7" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "6", + "x": "9", + "y": "7" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "16", + "y": "7" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "16", + "y": "7" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "6", + "x": "9", + "y": "10" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "6", + "x": "9", + "y": "10" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "16", + "y": "10" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "16", + "y": "10" + }, + "children": [] + }] + }] + }] +}; +exports.ic_receipt_long = ic_receipt_long; \ No newline at end of file diff --git a/dist/md/ic_receipt_long_outline.js b/dist/md/ic_receipt_long_outline.js new file mode 100644 index 000000000..596be530c --- /dev/null +++ b/dist/md/ic_receipt_long_outline.js @@ -0,0 +1,106 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_receipt_long_outline = void 0; +var ic_receipt_long_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0,0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M19.5,3.5L18,2l-1.5,1.5L15,2l-1.5,1.5L12,2l-1.5,1.5L9,2L7.5,3.5L6,2v14H3v3c0,1.66,1.34,3,3,3h12c1.66,0,3-1.34,3-3V2 L19.5,3.5z M15,20H6c-0.55,0-1-0.45-1-1v-1h10V20z M19,19c0,0.55-0.45,1-1,1s-1-0.45-1-1v-3H8V5h11V19z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19.5,3.5L18,2l-1.5,1.5L15,2l-1.5,1.5L12,2l-1.5,1.5L9,2L7.5,3.5L6,2v14H3v3c0,1.66,1.34,3,3,3h12c1.66,0,3-1.34,3-3V2 L19.5,3.5z M15,20H6c-0.55,0-1-0.45-1-1v-1h10V20z M19,19c0,0.55-0.45,1-1,1s-1-0.45-1-1v-3H8V5h11V19z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "6", + "x": "9", + "y": "7" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "6", + "x": "9", + "y": "7" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "16", + "y": "7" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "16", + "y": "7" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "6", + "x": "9", + "y": "10" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "6", + "x": "9", + "y": "10" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "16", + "y": "10" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "16", + "y": "10" + }, + "children": [] + }] + }] + }] +}; +exports.ic_receipt_long_outline = ic_receipt_long_outline; \ No newline at end of file diff --git a/dist/md/ic_receipt_long_twotone.js b/dist/md/ic_receipt_long_twotone.js new file mode 100644 index 000000000..26222dd9e --- /dev/null +++ b/dist/md/ic_receipt_long_twotone.js @@ -0,0 +1,113 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_receipt_long_twotone = void 0; +var ic_receipt_long_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M19,19c0,0.55-0.45,1-1,1s-1-0.45-1-1v-3H8V5h11V19z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M0,0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M19.5,3.5L18,2l-1.5,1.5L15,2l-1.5,1.5L12,2l-1.5,1.5L9,2L7.5,3.5L6,2v14H3v3c0,1.66,1.34,3,3,3h12c1.66,0,3-1.34,3-3V2 L19.5,3.5z M19,19c0,0.55-0.45,1-1,1s-1-0.45-1-1v-3H8V5h11V19z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19.5,3.5L18,2l-1.5,1.5L15,2l-1.5,1.5L12,2l-1.5,1.5L9,2L7.5,3.5L6,2v14H3v3c0,1.66,1.34,3,3,3h12c1.66,0,3-1.34,3-3V2 L19.5,3.5z M19,19c0,0.55-0.45,1-1,1s-1-0.45-1-1v-3H8V5h11V19z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "6", + "x": "9", + "y": "7" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "6", + "x": "9", + "y": "7" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "16", + "y": "7" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "16", + "y": "7" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "6", + "x": "9", + "y": "10" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "6", + "x": "9", + "y": "10" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "16", + "y": "10" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "2", + "width": "2", + "x": "16", + "y": "10" + }, + "children": [] + }] + }] + }] +}; +exports.ic_receipt_long_twotone = ic_receipt_long_twotone; \ No newline at end of file diff --git a/dist/md/ic_receipt_outline.js b/dist/md/ic_receipt_outline.js new file mode 100644 index 000000000..a36ef2140 --- /dev/null +++ b/dist/md/ic_receipt_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_receipt_outline = void 0; +var ic_receipt_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.5 3.5L18 2l-1.5 1.5L15 2l-1.5 1.5L12 2l-1.5 1.5L9 2 7.5 3.5 6 2 4.5 3.5 3 2v20l1.5-1.5L6 22l1.5-1.5L9 22l1.5-1.5L12 22l1.5-1.5L15 22l1.5-1.5L18 22l1.5-1.5L21 22V2l-1.5 1.5zM19 19.09H5V4.91h14v14.18zM6 15h12v2H6zm0-4h12v2H6zm0-4h12v2H6z" + }, + "children": [] + }] +}; +exports.ic_receipt_outline = ic_receipt_outline; \ No newline at end of file diff --git a/dist/md/ic_receipt_twotone.js b/dist/md/ic_receipt_twotone.js new file mode 100644 index 000000000..d182ab798 --- /dev/null +++ b/dist/md/ic_receipt_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_receipt_twotone = void 0; +var ic_receipt_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 19.09h14V4.91H5v14.18zM6 7h12v2H6V7zm0 4h12v2H6v-2zm0 4h12v2H6v-2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.5 3.5L18 2l-1.5 1.5L15 2l-1.5 1.5L12 2l-1.5 1.5L9 2 7.5 3.5 6 2 4.5 3.5 3 2v20l1.5-1.5L6 22l1.5-1.5L9 22l1.5-1.5L12 22l1.5-1.5L15 22l1.5-1.5L18 22l1.5-1.5L21 22V2l-1.5 1.5zM19 19.09H5V4.91h14v14.18zM6 15h12v2H6zm0-4h12v2H6zm0-4h12v2H6z" + }, + "children": [] + }] +}; +exports.ic_receipt_twotone = ic_receipt_twotone; \ No newline at end of file diff --git a/dist/md/ic_recent_actors.js b/dist/md/ic_recent_actors.js new file mode 100644 index 000000000..ebb60347d --- /dev/null +++ b/dist/md/ic_recent_actors.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_recent_actors = void 0; +var ic_recent_actors = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 5v14h2V5h-2zm-4 14h2V5h-2v14zM14 5H2c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zM8 7.75c1.24 0 2.25 1.01 2.25 2.25S9.24 12.25 8 12.25 5.75 11.24 5.75 10 6.76 7.75 8 7.75zM12.5 17h-9v-.75c0-1.5 3-2.25 4.5-2.25s4.5.75 4.5 2.25V17z" + }, + "children": [] + }] +}; +exports.ic_recent_actors = ic_recent_actors; \ No newline at end of file diff --git a/dist/md/ic_recent_actors_outline.js b/dist/md/ic_recent_actors_outline.js new file mode 100644 index 000000000..e518583b2 --- /dev/null +++ b/dist/md/ic_recent_actors_outline.js @@ -0,0 +1,38 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_recent_actors_outline = void 0; +var ic_recent_actors_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 5h2v14h-2zm-4 0h2v14h-2zm-3 0H2c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zm-1 12H3V7h10v10z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "8", + "cy": "9.94", + "r": "1.95" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.89 15.35c0-1.3-2.59-1.95-3.89-1.95s-3.89.65-3.89 1.95V16h7.78v-.65z" + }, + "children": [] + }] +}; +exports.ic_recent_actors_outline = ic_recent_actors_outline; \ No newline at end of file diff --git a/dist/md/ic_recent_actors_twotone.js b/dist/md/ic_recent_actors_twotone.js new file mode 100644 index 000000000..dccbcc090 --- /dev/null +++ b/dist/md/ic_recent_actors_twotone.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_recent_actors_twotone = void 0; +var ic_recent_actors_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 7H3v10h10V7zM8 8c1.07 0 1.95.87 1.95 1.95 0 1.07-.87 1.95-1.95 1.95s-1.95-.87-1.95-1.95S6.93 8 8 8zm3.89 8H4.11v-.65c0-1.3 2.59-1.95 3.89-1.95s3.89.65 3.89 1.95V16z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 5h2v14h-2zm-4 0h2v14h-2zm-3 14c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1H2c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12zM3 7h10v10H3V7z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "8", + "cy": "9.94", + "r": "1.95" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8 13.4c-1.3 0-3.89.65-3.89 1.95V16h7.78v-.65c0-1.3-2.59-1.95-3.89-1.95z" + }, + "children": [] + }] +}; +exports.ic_recent_actors_twotone = ic_recent_actors_twotone; \ No newline at end of file diff --git a/dist/md/ic_recommend.js b/dist/md/ic_recommend.js new file mode 100644 index 000000000..c13f7becc --- /dev/null +++ b/dist/md/ic_recommend.js @@ -0,0 +1,28 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_recommend = void 0; +var ic_recommend = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "title", + "attribs": {}, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm6 9.8a.9.9 0 0 1-.1.5l-2.1 4.9a1.34 1.34 0 0 1-1.3.8H9a2 2 0 0 1-2-2v-5a1.28 1.28 0 0 1 .4-1L12 5l.69.69a1.08 1.08 0 0 1 .3.7v.2L12.41 10H17a1 1 0 0 1 1 1z" + }, + "children": [] + }] +}; +exports.ic_recommend = ic_recommend; \ No newline at end of file diff --git a/dist/md/ic_record_voice_over.js b/dist/md/ic_record_voice_over.js new file mode 100644 index 000000000..10ad9356c --- /dev/null +++ b/dist/md/ic_record_voice_over.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_record_voice_over = void 0; +var ic_record_voice_over = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "9", + "cy": "9", + "r": "4" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 15c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4zm7.76-9.64l-1.68 1.69c.84 1.18.84 2.71 0 3.89l1.68 1.69c2.02-2.02 2.02-5.07 0-7.27zM20.07 2l-1.63 1.63c2.77 3.02 2.77 7.56 0 10.74L20.07 16c3.9-3.89 3.91-9.95 0-14z" + }, + "children": [] + }] +}; +exports.ic_record_voice_over = ic_record_voice_over; \ No newline at end of file diff --git a/dist/md/ic_record_voice_over_outline.js b/dist/md/ic_record_voice_over_outline.js new file mode 100644 index 000000000..ce23b73c3 --- /dev/null +++ b/dist/md/ic_record_voice_over_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_record_voice_over_outline = void 0; +var ic_record_voice_over_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 13c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm0 8c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4zm-6 4c.22-.72 3.31-2 6-2 2.7 0 5.8 1.29 6 2H3zM15.08 7.05c.84 1.18.84 2.71 0 3.89l1.68 1.69c2.02-2.02 2.02-5.07 0-7.27l-1.68 1.69zM20.07 2l-1.63 1.63c2.77 3.02 2.77 7.56 0 10.74L20.07 16c3.9-3.89 3.91-9.95 0-14z" + }, + "children": [] + }] +}; +exports.ic_record_voice_over_outline = ic_record_voice_over_outline; \ No newline at end of file diff --git a/dist/md/ic_record_voice_over_twotone.js b/dist/md/ic_record_voice_over_twotone.js new file mode 100644 index 000000000..b1fc46188 --- /dev/null +++ b/dist/md/ic_record_voice_over_twotone.js @@ -0,0 +1,58 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_record_voice_over_twotone = void 0; +var ic_record_voice_over_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "g", + "attribs": { + "opacity": ".3" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "9", + "cy": "9", + "r": "2" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "9", + "cy": "9", + "r": "2" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M9 17c-2.69 0-5.77 1.28-6 2h12c-.2-.71-3.3-2-6-2z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M9 17c-2.69 0-5.77 1.28-6 2h12c-.2-.71-3.3-2-6-2z" + }, + "children": [] + }] + }] + }, { + "name": "path", + "attribs": { + "d": "M9 13c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm0 8c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4zm-6 4c.22-.72 3.31-2 6-2 2.7 0 5.8 1.29 6 2H3zM16.76 5.36l-1.68 1.69c.84 1.18.84 2.71 0 3.89l1.68 1.69c2.02-2.02 2.02-5.07 0-7.27zM20.07 2l-1.63 1.63c2.77 3.02 2.77 7.56 0 10.74L20.07 16c3.9-3.89 3.91-9.95 0-14z" + }, + "children": [] + }] +}; +exports.ic_record_voice_over_twotone = ic_record_voice_over_twotone; \ No newline at end of file diff --git a/dist/md/ic_redeem.js b/dist/md/ic_redeem.js new file mode 100644 index 000000000..3756fba2e --- /dev/null +++ b/dist/md/ic_redeem.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_redeem = void 0; +var ic_redeem = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 6h-2.18c.11-.31.18-.65.18-1 0-1.66-1.34-3-3-3-1.05 0-1.96.54-2.5 1.35l-.5.67-.5-.68C10.96 2.54 10.05 2 9 2 7.34 2 6 3.34 6 5c0 .35.07.69.18 1H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-5-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm11 15H4v-2h16v2zm0-5H4V8h5.08L7 10.83 8.62 12 11 8.76l1-1.36 1 1.36L15.38 12 17 10.83 14.92 8H20v6z" + }, + "children": [] + }] +}; +exports.ic_redeem = ic_redeem; \ No newline at end of file diff --git a/dist/md/ic_redeem_outline.js b/dist/md/ic_redeem_outline.js new file mode 100644 index 000000000..bfaac0ff2 --- /dev/null +++ b/dist/md/ic_redeem_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_redeem_outline = void 0; +var ic_redeem_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 6h-2.18c.11-.31.18-.65.18-1 0-1.66-1.34-3-3-3-1.05 0-1.96.54-2.5 1.35l-.5.67-.5-.68C10.96 2.54 10.05 2 9 2 7.34 2 6 3.34 6 5c0 .35.07.69.18 1H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-5-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm11 15H4v-2h16v2zm0-5H4V8h5.08L7 10.83 8.62 12 11 8.76l1-1.36 1 1.36L15.38 12 17 10.83 14.92 8H20v6z" + }, + "children": [] + }] +}; +exports.ic_redeem_outline = ic_redeem_outline; \ No newline at end of file diff --git a/dist/md/ic_redeem_twotone.js b/dist/md/ic_redeem_twotone.js new file mode 100644 index 000000000..102a9937e --- /dev/null +++ b/dist/md/ic_redeem_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_redeem_twotone = void 0; +var ic_redeem_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 17h16v2H4zm13-6.17L15.38 12 13 8.76 12 7.4l-1 1.36L8.62 12 7 10.83 9.08 8H4v6h16V8h-5.08z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 6h-2.18c.11-.31.18-.65.18-1 0-1.66-1.34-3-3-3-1.05 0-1.96.54-2.5 1.35l-.5.67-.5-.68C10.96 2.54 10.05 2 9 2 7.34 2 6 3.34 6 5c0 .35.07.69.18 1H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-5-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm11 15H4v-2h16v2zm0-5H4V8h5.08L7 10.83 8.62 12 11 8.76l1-1.36 1 1.36L15.38 12 17 10.83 14.92 8H20v6z" + }, + "children": [] + }] +}; +exports.ic_redeem_twotone = ic_redeem_twotone; \ No newline at end of file diff --git a/dist/md/ic_redo.js b/dist/md/ic_redo.js new file mode 100644 index 000000000..f199f6c62 --- /dev/null +++ b/dist/md/ic_redo.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_redo = void 0; +var ic_redo = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18.4 10.6C16.55 8.99 14.15 8 11.5 8c-4.65 0-8.58 3.03-9.96 7.22L3.9 16c1.05-3.19 4.05-5.5 7.6-5.5 1.95 0 3.73.72 5.12 1.88L13 16h9V7l-3.6 3.6z" + }, + "children": [] + }] +}; +exports.ic_redo = ic_redo; \ No newline at end of file diff --git a/dist/md/ic_redo_outline.js b/dist/md/ic_redo_outline.js new file mode 100644 index 000000000..f2e7b56b3 --- /dev/null +++ b/dist/md/ic_redo_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_redo_outline = void 0; +var ic_redo_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18.4 10.6C16.55 8.99 14.15 8 11.5 8c-4.65 0-8.58 3.03-9.96 7.22L3.9 16c1.05-3.19 4.05-5.5 7.6-5.5 1.95 0 3.73.72 5.12 1.88L13 16h9V7l-3.6 3.6z" + }, + "children": [] + }] +}; +exports.ic_redo_outline = ic_redo_outline; \ No newline at end of file diff --git a/dist/md/ic_redo_twotone.js b/dist/md/ic_redo_twotone.js new file mode 100644 index 000000000..bfcc3304c --- /dev/null +++ b/dist/md/ic_redo_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_redo_twotone = void 0; +var ic_redo_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18.4 10.6C16.55 8.99 14.15 8 11.5 8c-4.65 0-8.58 3.03-9.96 7.22L3.9 16c1.05-3.19 4.05-5.5 7.6-5.5 1.95 0 3.73.72 5.12 1.88L13 16h9V7l-3.6 3.6z" + }, + "children": [] + }] +}; +exports.ic_redo_twotone = ic_redo_twotone; \ No newline at end of file diff --git a/dist/md/ic_reduce_capacity.js b/dist/md/ic_reduce_capacity.js new file mode 100644 index 000000000..3625a6ee2 --- /dev/null +++ b/dist/md/ic_reduce_capacity.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_reduce_capacity = void 0; +var ic_reduce_capacity = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16,4c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S16,5.1,16,4z M20.78,7.58C19.93,7.21,18.99,7,18,7c-0.67,0-1.31,0.1-1.92,0.28 C16.66,7.83,17,8.6,17,9.43V10h5V9.43C22,8.62,21.52,7.9,20.78,7.58z M6,6c1.1,0,2-0.9,2-2S7.1,2,6,2S4,2.9,4,4S4.9,6,6,6z M7.92,7.28C7.31,7.1,6.67,7,6,7C5.01,7,4.07,7.21,3.22,7.58C2.48,7.9,2,8.62,2,9.43V10h5V9.43C7,8.6,7.34,7.83,7.92,7.28z M10,4 c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S10,5.1,10,4z M16,10H8V9.43C8,8.62,8.48,7.9,9.22,7.58C10.07,7.21,11.01,7,12,7 c0.99,0,1.93,0.21,2.78,0.58C15.52,7.9,16,8.62,16,9.43V10z M15,16c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S15,17.1,15,16z M21,22h-8 v-0.57c0-0.81,0.48-1.53,1.22-1.85C15.07,19.21,16.01,19,17,19c0.99,0,1.93,0.21,2.78,0.58C20.52,19.9,21,20.62,21,21.43V22z M5,16 c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S5,17.1,5,16z M11,22H3v-0.57c0-0.81,0.48-1.53,1.22-1.85C5.07,19.21,6.01,19,7,19 c0.99,0,1.93,0.21,2.78,0.58C10.52,19.9,11,20.62,11,21.43V22z M12.75,13v-2h-1.5v2H9l3,3l3-3H12.75z" + }, + "children": [] + }] +}; +exports.ic_reduce_capacity = ic_reduce_capacity; \ No newline at end of file diff --git a/dist/md/ic_reduce_capacity_outline.js b/dist/md/ic_reduce_capacity_outline.js new file mode 100644 index 000000000..f7301dbc1 --- /dev/null +++ b/dist/md/ic_reduce_capacity_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_reduce_capacity_outline = void 0; +var ic_reduce_capacity_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16,4c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S16,5.1,16,4z M20.78,7.58C19.93,7.21,18.99,7,18,7c-0.67,0-1.31,0.1-1.92,0.28 C16.66,7.83,17,8.6,17,9.43V10h5V9.43C22,8.62,21.52,7.9,20.78,7.58z M6,6c1.1,0,2-0.9,2-2S7.1,2,6,2S4,2.9,4,4S4.9,6,6,6z M7.92,7.28C7.31,7.1,6.67,7,6,7C5.01,7,4.07,7.21,3.22,7.58C2.48,7.9,2,8.62,2,9.43V10h5V9.43C7,8.6,7.34,7.83,7.92,7.28z M10,4 c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S10,5.1,10,4z M16,10H8V9.43C8,8.62,8.48,7.9,9.22,7.58C10.07,7.21,11.01,7,12,7 c0.99,0,1.93,0.21,2.78,0.58C15.52,7.9,16,8.62,16,9.43V10z M15,16c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S15,17.1,15,16z M21,22h-8 v-0.57c0-0.81,0.48-1.53,1.22-1.85C15.07,19.21,16.01,19,17,19c0.99,0,1.93,0.21,2.78,0.58C20.52,19.9,21,20.62,21,21.43V22z M5,16 c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S5,17.1,5,16z M11,22H3v-0.57c0-0.81,0.48-1.53,1.22-1.85C5.07,19.21,6.01,19,7,19 c0.99,0,1.93,0.21,2.78,0.58C10.52,19.9,11,20.62,11,21.43V22z M12.75,13v-2h-1.5v2H9l3,3l3-3H12.75z" + }, + "children": [] + }] +}; +exports.ic_reduce_capacity_outline = ic_reduce_capacity_outline; \ No newline at end of file diff --git a/dist/md/ic_reduce_capacity_twotone.js b/dist/md/ic_reduce_capacity_twotone.js new file mode 100644 index 000000000..2dc8558ea --- /dev/null +++ b/dist/md/ic_reduce_capacity_twotone.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_reduce_capacity_twotone = void 0; +var ic_reduce_capacity_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16,4c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S16,5.1,16,4z M20.78,7.58C19.93,7.21,18.99,7,18,7c-0.67,0-1.31,0.1-1.92,0.28 C16.66,7.83,17,8.6,17,9.43V10h5V9.43C22,8.62,21.52,7.9,20.78,7.58z M6,6c1.1,0,2-0.9,2-2S7.1,2,6,2S4,2.9,4,4S4.9,6,6,6z M7.92,7.28C7.31,7.1,6.67,7,6,7C5.01,7,4.07,7.21,3.22,7.58C2.48,7.9,2,8.62,2,9.43V10h5V9.43C7,8.6,7.34,7.83,7.92,7.28z M10,4 c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S10,5.1,10,4z M16,10H8V9.43C8,8.62,8.48,7.9,9.22,7.58C10.07,7.21,11.01,7,12,7 c0.99,0,1.93,0.21,2.78,0.58C15.52,7.9,16,8.62,16,9.43V10z M15,16c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S15,17.1,15,16z M21,22h-8 v-0.57c0-0.81,0.48-1.53,1.22-1.85C15.07,19.21,16.01,19,17,19c0.99,0,1.93,0.21,2.78,0.58C20.52,19.9,21,20.62,21,21.43V22z M5,16 c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S5,17.1,5,16z M11,22H3v-0.57c0-0.81,0.48-1.53,1.22-1.85C5.07,19.21,6.01,19,7,19 c0.99,0,1.93,0.21,2.78,0.58C10.52,19.9,11,20.62,11,21.43V22z M12.75,13v-2h-1.5v2H9l3,3l3-3H12.75z" + }, + "children": [] + }] +}; +exports.ic_reduce_capacity_twotone = ic_reduce_capacity_twotone; \ No newline at end of file diff --git a/dist/md/ic_refresh.js b/dist/md/ic_refresh.js new file mode 100644 index 000000000..b9b63d7dd --- /dev/null +++ b/dist/md/ic_refresh.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_refresh = void 0; +var ic_refresh = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17.65 6.35C16.2 4.9 14.21 4 12 4c-4.42 0-7.99 3.58-7.99 8s3.57 8 7.99 8c3.73 0 6.84-2.55 7.73-6h-2.08c-.82 2.33-3.04 4-5.65 4-3.31 0-6-2.69-6-6s2.69-6 6-6c1.66 0 3.14.69 4.22 1.78L13 11h7V4l-2.35 2.35z" + }, + "children": [] + }] +}; +exports.ic_refresh = ic_refresh; \ No newline at end of file diff --git a/dist/md/ic_refresh_outline.js b/dist/md/ic_refresh_outline.js new file mode 100644 index 000000000..0ace847e3 --- /dev/null +++ b/dist/md/ic_refresh_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_refresh_outline = void 0; +var ic_refresh_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17.65 6.35C16.2 4.9 14.21 4 12 4c-4.42 0-7.99 3.58-7.99 8s3.57 8 7.99 8c3.73 0 6.84-2.55 7.73-6h-2.08c-.82 2.33-3.04 4-5.65 4-3.31 0-6-2.69-6-6s2.69-6 6-6c1.66 0 3.14.69 4.22 1.78L13 11h7V4l-2.35 2.35z" + }, + "children": [] + }] +}; +exports.ic_refresh_outline = ic_refresh_outline; \ No newline at end of file diff --git a/dist/md/ic_refresh_twotone.js b/dist/md/ic_refresh_twotone.js new file mode 100644 index 000000000..d6dcedfd4 --- /dev/null +++ b/dist/md/ic_refresh_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_refresh_twotone = void 0; +var ic_refresh_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17.65 6.35C16.2 4.9 14.21 4 12 4c-4.42 0-7.99 3.58-7.99 8s3.57 8 7.99 8c3.73 0 6.84-2.55 7.73-6h-2.08c-.82 2.33-3.04 4-5.65 4-3.31 0-6-2.69-6-6s2.69-6 6-6c1.66 0 3.14.69 4.22 1.78L13 11h7V4l-2.35 2.35z" + }, + "children": [] + }] +}; +exports.ic_refresh_twotone = ic_refresh_twotone; \ No newline at end of file diff --git a/dist/md/ic_remove.js b/dist/md/ic_remove.js new file mode 100644 index 000000000..aef1b45f3 --- /dev/null +++ b/dist/md/ic_remove.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_remove = void 0; +var ic_remove = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 13H5v-2h14v2z" + }, + "children": [] + }] +}; +exports.ic_remove = ic_remove; \ No newline at end of file diff --git a/dist/md/ic_remove_circle.js b/dist/md/ic_remove_circle.js new file mode 100644 index 000000000..becc85aa2 --- /dev/null +++ b/dist/md/ic_remove_circle.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_remove_circle = void 0; +var ic_remove_circle = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5 11H7v-2h10v2z" + }, + "children": [] + }] +}; +exports.ic_remove_circle = ic_remove_circle; \ No newline at end of file diff --git a/dist/md/ic_remove_circle_outline.js b/dist/md/ic_remove_circle_outline.js new file mode 100644 index 000000000..c99ab2db8 --- /dev/null +++ b/dist/md/ic_remove_circle_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_remove_circle_outline = void 0; +var ic_remove_circle_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5 11H7v-2h10v2z" + }, + "children": [] + }] +}; +exports.ic_remove_circle_outline = ic_remove_circle_outline; \ No newline at end of file diff --git a/dist/md/ic_remove_circle_outline_outline.js b/dist/md/ic_remove_circle_outline_outline.js new file mode 100644 index 000000000..fb82471ea --- /dev/null +++ b/dist/md/ic_remove_circle_outline_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_remove_circle_outline_outline = void 0; +var ic_remove_circle_outline_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 11v2h10v-2H7zm5-9C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" + }, + "children": [] + }] +}; +exports.ic_remove_circle_outline_outline = ic_remove_circle_outline_outline; \ No newline at end of file diff --git a/dist/md/ic_remove_circle_outline_twotone.js b/dist/md/ic_remove_circle_outline_twotone.js new file mode 100644 index 000000000..d8fcfc7f9 --- /dev/null +++ b/dist/md/ic_remove_circle_outline_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_remove_circle_outline_twotone = void 0; +var ic_remove_circle_outline_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 11h10v2H7zm5-9C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" + }, + "children": [] + }] +}; +exports.ic_remove_circle_outline_twotone = ic_remove_circle_outline_twotone; \ No newline at end of file diff --git a/dist/md/ic_remove_circle_twotone.js b/dist/md/ic_remove_circle_twotone.js new file mode 100644 index 000000000..5cf6f661e --- /dev/null +++ b/dist/md/ic_remove_circle_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_remove_circle_twotone = void 0; +var ic_remove_circle_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm5 9H7v-2h10v2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 11h10v2H7zm5-9C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" + }, + "children": [] + }] +}; +exports.ic_remove_circle_twotone = ic_remove_circle_twotone; \ No newline at end of file diff --git a/dist/md/ic_remove_done.js b/dist/md/ic_remove_done.js new file mode 100644 index 000000000..d22de7678 --- /dev/null +++ b/dist/md/ic_remove_done.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_remove_done = void 0; +var ic_remove_done = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0zm0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M1.79 12l5.58 5.59L5.96 19 .37 13.41 1.79 12zm.45-7.78L12.9 14.89l-1.28 1.28L7.44 12l-1.41 1.41L11.62 19l2.69-2.69 4.89 4.89 1.41-1.41L3.65 2.81 2.24 4.22zm14.9 9.27L23.62 7 22.2 5.59l-6.48 6.48 1.42 1.42zM17.96 7l-1.41-1.41-3.65 3.66 1.41 1.41L17.96 7z" + }, + "children": [] + }] +}; +exports.ic_remove_done = ic_remove_done; \ No newline at end of file diff --git a/dist/md/ic_remove_from_queue.js b/dist/md/ic_remove_from_queue.js new file mode 100644 index 000000000..bae9c7367 --- /dev/null +++ b/dist/md/ic_remove_from_queue.js @@ -0,0 +1,65 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_remove_from_queue = void 0; +var ic_remove_from_queue = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M21,3H3C1.89,3,1,3.89,1,5v12c0,1.1,0.89,2,2,2h5v2h8v-2h5c1.1,0,1.99-0.9,1.99-2L23,5C23,3.89,22.1,3,21,3z M21,17H3V5 h18V17z M16,10v2H8v-2H16z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21,3H3C1.89,3,1,3.89,1,5v12c0,1.1,0.89,2,2,2h5v2h8v-2h5c1.1,0,1.99-0.9,1.99-2L23,5C23,3.89,22.1,3,21,3z M21,17H3V5 h18V17z M16,10v2H8v-2H16z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_remove_from_queue = ic_remove_from_queue; \ No newline at end of file diff --git a/dist/md/ic_remove_from_queue_outline.js b/dist/md/ic_remove_from_queue_outline.js new file mode 100644 index 000000000..161a0b67f --- /dev/null +++ b/dist/md/ic_remove_from_queue_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_remove_from_queue_outline = void 0; +var ic_remove_from_queue_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 3H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5v2h8v-2h5c1.1 0 2-.9 2-2V5c0-1.11-.9-2-2-2zm0 14H3V5h18v12zm-5-7v2H8v-2h8z" + }, + "children": [] + }] +}; +exports.ic_remove_from_queue_outline = ic_remove_from_queue_outline; \ No newline at end of file diff --git a/dist/md/ic_remove_from_queue_twotone.js b/dist/md/ic_remove_from_queue_twotone.js new file mode 100644 index 000000000..b3fc3edec --- /dev/null +++ b/dist/md/ic_remove_from_queue_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_remove_from_queue_twotone = void 0; +var ic_remove_from_queue_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 17h18V5H3v12zm5-7h8v2H8v-2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 3H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5v2h8v-2h5c1.1 0 2-.9 2-2V5c0-1.11-.9-2-2-2zm0 14H3V5h18v12zM8 10h8v2H8z" + }, + "children": [] + }] +}; +exports.ic_remove_from_queue_twotone = ic_remove_from_queue_twotone; \ No newline at end of file diff --git a/dist/md/ic_remove_moderator.js b/dist/md/ic_remove_moderator.js new file mode 100644 index 000000000..6f37cd272 --- /dev/null +++ b/dist/md/ic_remove_moderator.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_remove_moderator = void 0; +var ic_remove_moderator = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22.27 21.73l-3.54-3.55L5.78 5.23 2.27 1.72 1 2.99 3.01 5H3v6c0 5.55 3.84 10.74 9 12 2.16-.53 4.08-1.76 5.6-3.41L21 23l1.27-1.27zM13 9.92l6.67 6.67C20.51 14.87 21 12.96 21 11V5l-9-4-5.48 2.44L11 7.92l2 2z" + }, + "children": [] + }] +}; +exports.ic_remove_moderator = ic_remove_moderator; \ No newline at end of file diff --git a/dist/md/ic_remove_outline.js b/dist/md/ic_remove_outline.js new file mode 100644 index 000000000..c8f730d88 --- /dev/null +++ b/dist/md/ic_remove_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_remove_outline = void 0; +var ic_remove_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 13H5v-2h14v2z" + }, + "children": [] + }] +}; +exports.ic_remove_outline = ic_remove_outline; \ No newline at end of file diff --git a/dist/md/ic_remove_red_eye.js b/dist/md/ic_remove_red_eye.js new file mode 100644 index 000000000..2b2209369 --- /dev/null +++ b/dist/md/ic_remove_red_eye.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_remove_red_eye = void 0; +var ic_remove_red_eye = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z" + }, + "children": [] + }] +}; +exports.ic_remove_red_eye = ic_remove_red_eye; \ No newline at end of file diff --git a/dist/md/ic_remove_red_eye_outline.js b/dist/md/ic_remove_red_eye_outline.js new file mode 100644 index 000000000..6bd78033f --- /dev/null +++ b/dist/md/ic_remove_red_eye_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_remove_red_eye_outline = void 0; +var ic_remove_red_eye_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 6.5c3.79 0 7.17 2.13 8.82 5.5-1.65 3.37-5.02 5.5-8.82 5.5S4.83 15.37 3.18 12C4.83 8.63 8.21 6.5 12 6.5m0-2C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zm0 5c1.38 0 2.5 1.12 2.5 2.5s-1.12 2.5-2.5 2.5-2.5-1.12-2.5-2.5 1.12-2.5 2.5-2.5m0-2c-2.48 0-4.5 2.02-4.5 4.5s2.02 4.5 4.5 4.5 4.5-2.02 4.5-4.5-2.02-4.5-4.5-4.5z" + }, + "children": [] + }] +}; +exports.ic_remove_red_eye_outline = ic_remove_red_eye_outline; \ No newline at end of file diff --git a/dist/md/ic_remove_red_eye_twotone.js b/dist/md/ic_remove_red_eye_twotone.js new file mode 100644 index 000000000..66742a9eb --- /dev/null +++ b/dist/md/ic_remove_red_eye_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_remove_red_eye_twotone = void 0; +var ic_remove_red_eye_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 6.5c-3.79 0-7.17 2.13-8.82 5.5 1.65 3.37 5.02 5.5 8.82 5.5s7.17-2.13 8.82-5.5C19.17 8.63 15.79 6.5 12 6.5zm0 10c-2.48 0-4.5-2.02-4.5-4.5S9.52 7.5 12 7.5s4.5 2.02 4.5 4.5-2.02 4.5-4.5 4.5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zm0 13c-3.79 0-7.17-2.13-8.82-5.5C4.83 8.63 8.21 6.5 12 6.5s7.17 2.13 8.82 5.5c-1.65 3.37-5.03 5.5-8.82 5.5zm0-10c-2.48 0-4.5 2.02-4.5 4.5s2.02 4.5 4.5 4.5 4.5-2.02 4.5-4.5-2.02-4.5-4.5-4.5zm0 7c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z" + }, + "children": [] + }] +}; +exports.ic_remove_red_eye_twotone = ic_remove_red_eye_twotone; \ No newline at end of file diff --git a/dist/md/ic_remove_shopping_cart.js b/dist/md/ic_remove_shopping_cart.js new file mode 100644 index 000000000..e4b8819ad --- /dev/null +++ b/dist/md/ic_remove_shopping_cart.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_remove_shopping_cart = void 0; +var ic_remove_shopping_cart = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22.73 22.73L2.77 2.77 2 2l-.73-.73L0 2.54l4.39 4.39 2.21 4.66-1.35 2.45c-.16.28-.25.61-.25.96 0 1.1.9 2 2 2h7.46l1.38 1.38c-.5.36-.83.95-.83 1.62 0 1.1.89 2 1.99 2 .67 0 1.26-.33 1.62-.84L21.46 24l1.27-1.27zM7.42 15c-.14 0-.25-.11-.25-.25l.03-.12.9-1.63h2.36l2 2H7.42zm8.13-2c.75 0 1.41-.41 1.75-1.03l3.58-6.49c.08-.14.12-.31.12-.48 0-.55-.45-1-1-1H6.54l9.01 9zM7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_remove_shopping_cart = ic_remove_shopping_cart; \ No newline at end of file diff --git a/dist/md/ic_remove_shopping_cart_outline.js b/dist/md/ic_remove_shopping_cart_outline.js new file mode 100644 index 000000000..341ecbbb3 --- /dev/null +++ b/dist/md/ic_remove_shopping_cart_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_remove_shopping_cart_outline = void 0; +var ic_remove_shopping_cart_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M1.41 1.13L0 2.54l4.39 4.39 2.21 4.66-1.35 2.45c-.16.28-.25.61-.25.96 0 1.1.9 2 2 2h7.46l1.38 1.38c-.5.36-.83.95-.83 1.62 0 1.1.89 2 1.99 2 .67 0 1.26-.33 1.62-.84L21.46 24l1.41-1.41L1.41 1.13zM7 15l1.1-2h2.36l2 2H7zM20 4H7.12l2 2h9.19l-2.76 5h-1.44l1.94 1.94c.54-.14.99-.49 1.25-.97l3.58-6.49C21.25 4.82 20.76 4 20 4zM7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_remove_shopping_cart_outline = ic_remove_shopping_cart_outline; \ No newline at end of file diff --git a/dist/md/ic_remove_shopping_cart_twotone.js b/dist/md/ic_remove_shopping_cart_twotone.js new file mode 100644 index 000000000..ee47cd9bf --- /dev/null +++ b/dist/md/ic_remove_shopping_cart_twotone.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_remove_shopping_cart_twotone = void 0; +var ic_remove_shopping_cart_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M1.41 1.13L0 2.54l4.39 4.39 2.21 4.66-1.35 2.45c-.16.28-.25.61-.25.96 0 1.1.9 2 2 2h7.46l1.38 1.38c-.5.36-.83.95-.83 1.62 0 1.1.89 2 1.99 2 .67 0 1.26-.33 1.62-.84L21.46 24l1.41-1.41L1.41 1.13zM7 15l1.1-2h2.36l2 2H7z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18.31 6H9.12l4.99 5h1.44z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 4H7.12l2 2h9.19l-2.76 5h-1.44l1.94 1.94c.54-.14.99-.49 1.25-.97l3.58-6.49C21.25 4.82 20.76 4 20 4zM7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_remove_shopping_cart_twotone = ic_remove_shopping_cart_twotone; \ No newline at end of file diff --git a/dist/md/ic_remove_twotone.js b/dist/md/ic_remove_twotone.js new file mode 100644 index 000000000..21c2e2ca0 --- /dev/null +++ b/dist/md/ic_remove_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_remove_twotone = void 0; +var ic_remove_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 13H5v-2h14v2z" + }, + "children": [] + }] +}; +exports.ic_remove_twotone = ic_remove_twotone; \ No newline at end of file diff --git a/dist/md/ic_reorder.js b/dist/md/ic_reorder.js new file mode 100644 index 000000000..1edb6d7b3 --- /dev/null +++ b/dist/md/ic_reorder.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_reorder = void 0; +var ic_reorder = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 15h18v-2H3v2zm0 4h18v-2H3v2zm0-8h18V9H3v2zm0-6v2h18V5H3z" + }, + "children": [] + }] +}; +exports.ic_reorder = ic_reorder; \ No newline at end of file diff --git a/dist/md/ic_reorder_outline.js b/dist/md/ic_reorder_outline.js new file mode 100644 index 000000000..b64176822 --- /dev/null +++ b/dist/md/ic_reorder_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_reorder_outline = void 0; +var ic_reorder_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 15h18v-2H3v2zm0 4h18v-2H3v2zm0-8h18V9H3v2zm0-6v2h18V5H3z" + }, + "children": [] + }] +}; +exports.ic_reorder_outline = ic_reorder_outline; \ No newline at end of file diff --git a/dist/md/ic_reorder_twotone.js b/dist/md/ic_reorder_twotone.js new file mode 100644 index 000000000..10b3bf090 --- /dev/null +++ b/dist/md/ic_reorder_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_reorder_twotone = void 0; +var ic_reorder_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 15h18v-2H3v2zm0 4h18v-2H3v2zm0-8h18V9H3v2zm0-6v2h18V5H3z" + }, + "children": [] + }] +}; +exports.ic_reorder_twotone = ic_reorder_twotone; \ No newline at end of file diff --git a/dist/md/ic_repeat.js b/dist/md/ic_repeat.js new file mode 100644 index 000000000..9fdb695c2 --- /dev/null +++ b/dist/md/ic_repeat.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_repeat = void 0; +var ic_repeat = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 7h10v3l4-4-4-4v3H5v6h2V7zm10 10H7v-3l-4 4 4 4v-3h12v-6h-2v4z" + }, + "children": [] + }] +}; +exports.ic_repeat = ic_repeat; \ No newline at end of file diff --git a/dist/md/ic_repeat_on.js b/dist/md/ic_repeat_on.js new file mode 100644 index 000000000..2aacd3d7e --- /dev/null +++ b/dist/md/ic_repeat_on.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_repeat_on = void 0; +var ic_repeat_on = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 1H3c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zM7 7h10v3l4-4-4-4v3H5v6h2V7zm10 10H7v-3l-4 4 4 4v-3h12v-6h-2v4z", + "fill-rule": "evenodd" + }, + "children": [] + }] +}; +exports.ic_repeat_on = ic_repeat_on; \ No newline at end of file diff --git a/dist/md/ic_repeat_one.js b/dist/md/ic_repeat_one.js new file mode 100644 index 000000000..92877aa3a --- /dev/null +++ b/dist/md/ic_repeat_one.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_repeat_one = void 0; +var ic_repeat_one = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 7h10v3l4-4-4-4v3H5v6h2V7zm10 10H7v-3l-4 4 4 4v-3h12v-6h-2v4zm-4-2V9h-1l-2 1v1h1.5v4H13z" + }, + "children": [] + }] +}; +exports.ic_repeat_one = ic_repeat_one; \ No newline at end of file diff --git a/dist/md/ic_repeat_one_on.js b/dist/md/ic_repeat_one_on.js new file mode 100644 index 000000000..9dde4f442 --- /dev/null +++ b/dist/md/ic_repeat_one_on.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_repeat_one_on = void 0; +var ic_repeat_one_on = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 1H3c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zM7 7h10v3l4-4-4-4v3H5v6h2V7zm10 10H7v-3l-4 4 4 4v-3h12v-6h-2v4zm-4-2V9h-1l-2 1v1h1.5v4H13z", + "fill-rule": "evenodd" + }, + "children": [] + }] +}; +exports.ic_repeat_one_on = ic_repeat_one_on; \ No newline at end of file diff --git a/dist/md/ic_repeat_one_outline.js b/dist/md/ic_repeat_one_outline.js new file mode 100644 index 000000000..09bd070f3 --- /dev/null +++ b/dist/md/ic_repeat_one_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_repeat_one_outline = void 0; +var ic_repeat_one_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 7h10v3l4-4-4-4v3H5v6h2V7zm10 10H7v-3l-4 4 4 4v-3h12v-6h-2v4zm-4-2V9h-1l-2 1v1h1.5v4H13z" + }, + "children": [] + }] +}; +exports.ic_repeat_one_outline = ic_repeat_one_outline; \ No newline at end of file diff --git a/dist/md/ic_repeat_one_twotone.js b/dist/md/ic_repeat_one_twotone.js new file mode 100644 index 000000000..5f179e721 --- /dev/null +++ b/dist/md/ic_repeat_one_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_repeat_one_twotone = void 0; +var ic_repeat_one_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 15V9h-1l-2 1v1h1.5v4zm6-2h-2v4H7v-3l-4 4 4 4v-3h12zM17 2v3H5v6h2V7h10v3l4-4z" + }, + "children": [] + }] +}; +exports.ic_repeat_one_twotone = ic_repeat_one_twotone; \ No newline at end of file diff --git a/dist/md/ic_repeat_outline.js b/dist/md/ic_repeat_outline.js new file mode 100644 index 000000000..9a42e7b00 --- /dev/null +++ b/dist/md/ic_repeat_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_repeat_outline = void 0; +var ic_repeat_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 7h10v3l4-4-4-4v3H5v6h2V7zm10 10H7v-3l-4 4 4 4v-3h12v-6h-2v4z" + }, + "children": [] + }] +}; +exports.ic_repeat_outline = ic_repeat_outline; \ No newline at end of file diff --git a/dist/md/ic_repeat_twotone.js b/dist/md/ic_repeat_twotone.js new file mode 100644 index 000000000..f549ffed9 --- /dev/null +++ b/dist/md/ic_repeat_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_repeat_twotone = void 0; +var ic_repeat_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 22v-3h12v-6h-2v4H7v-3l-4 4zM21 6l-4-4v3H5v6h2V7h10v3z" + }, + "children": [] + }] +}; +exports.ic_repeat_twotone = ic_repeat_twotone; \ No newline at end of file diff --git a/dist/md/ic_replay.js b/dist/md/ic_replay.js new file mode 100644 index 000000000..f616819a7 --- /dev/null +++ b/dist/md/ic_replay.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_replay = void 0; +var ic_replay = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 5V1L7 6l5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6H4c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8z" + }, + "children": [] + }] +}; +exports.ic_replay = ic_replay; \ No newline at end of file diff --git a/dist/md/ic_replay_10.js b/dist/md/ic_replay_10.js new file mode 100644 index 000000000..7e2889479 --- /dev/null +++ b/dist/md/ic_replay_10.js @@ -0,0 +1,87 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_replay_10 = void 0; +var ic_replay_10 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M11.99,5V1l-5,5l5,5V7c3.31,0,6,2.69,6,6s-2.69,6-6,6s-6-2.69-6-6h-2c0,4.42,3.58,8,8,8s8-3.58,8-8S16.41,5,11.99,5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M11.99,5V1l-5,5l5,5V7c3.31,0,6,2.69,6,6s-2.69,6-6,6s-6-2.69-6-6h-2c0,4.42,3.58,8,8,8s8-3.58,8-8S16.41,5,11.99,5z" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M10.89,16h-0.85v-3.26l-1.01,0.31v-0.69l1.77-0.63h0.09V16z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M10.89,16h-0.85v-3.26l-1.01,0.31v-0.69l1.77-0.63h0.09V16z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M15.17,14.24c0,0.32-0.03,0.6-0.1,0.82s-0.17,0.42-0.29,0.57s-0.28,0.26-0.45,0.33s-0.37,0.1-0.59,0.1 s-0.41-0.03-0.59-0.1s-0.33-0.18-0.46-0.33s-0.23-0.34-0.3-0.57s-0.11-0.5-0.11-0.82V13.5c0-0.32,0.03-0.6,0.1-0.82 s0.17-0.42,0.29-0.57s0.28-0.26,0.45-0.33s0.37-0.1,0.59-0.1s0.41,0.03,0.59,0.1c0.18,0.07,0.33,0.18,0.46,0.33 s0.23,0.34,0.3,0.57s0.11,0.5,0.11,0.82V14.24z M14.32,13.38c0-0.19-0.01-0.35-0.04-0.48s-0.07-0.23-0.12-0.31 s-0.11-0.14-0.19-0.17s-0.16-0.05-0.25-0.05s-0.18,0.02-0.25,0.05s-0.14,0.09-0.19,0.17s-0.09,0.18-0.12,0.31 s-0.04,0.29-0.04,0.48v0.97c0,0.19,0.01,0.35,0.04,0.48s0.07,0.24,0.12,0.32s0.11,0.14,0.19,0.17s0.16,0.05,0.25,0.05 s0.18-0.02,0.25-0.05s0.14-0.09,0.19-0.17s0.09-0.19,0.11-0.32s0.04-0.29,0.04-0.48V13.38z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15.17,14.24c0,0.32-0.03,0.6-0.1,0.82s-0.17,0.42-0.29,0.57s-0.28,0.26-0.45,0.33s-0.37,0.1-0.59,0.1 s-0.41-0.03-0.59-0.1s-0.33-0.18-0.46-0.33s-0.23-0.34-0.3-0.57s-0.11-0.5-0.11-0.82V13.5c0-0.32,0.03-0.6,0.1-0.82 s0.17-0.42,0.29-0.57s0.28-0.26,0.45-0.33s0.37-0.1,0.59-0.1s0.41,0.03,0.59,0.1c0.18,0.07,0.33,0.18,0.46,0.33 s0.23,0.34,0.3,0.57s0.11,0.5,0.11,0.82V14.24z M14.32,13.38c0-0.19-0.01-0.35-0.04-0.48s-0.07-0.23-0.12-0.31 s-0.11-0.14-0.19-0.17s-0.16-0.05-0.25-0.05s-0.18,0.02-0.25,0.05s-0.14,0.09-0.19,0.17s-0.09,0.18-0.12,0.31 s-0.04,0.29-0.04,0.48v0.97c0,0.19,0.01,0.35,0.04,0.48s0.07,0.24,0.12,0.32s0.11,0.14,0.19,0.17s0.16,0.05,0.25,0.05 s0.18-0.02,0.25-0.05s0.14-0.09,0.19-0.17s0.09-0.19,0.11-0.32s0.04-0.29,0.04-0.48V13.38z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_replay_10 = ic_replay_10; \ No newline at end of file diff --git a/dist/md/ic_replay_10_outline.js b/dist/md/ic_replay_10_outline.js new file mode 100644 index 000000000..feb2455a2 --- /dev/null +++ b/dist/md/ic_replay_10_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_replay_10_outline = void 0; +var ic_replay_10_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.99 5V1l-5 5 5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6h-2c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8zm-1.1 11h-.85v-3.26l-1.01.31v-.69l1.77-.63h.09V16zm4.28-1.76c0 .32-.03.6-.1.82s-.17.42-.29.57-.28.26-.45.33-.37.1-.59.1-.41-.03-.59-.1-.33-.18-.46-.33-.23-.34-.3-.57-.11-.5-.11-.82v-.74c0-.32.03-.6.1-.82s.17-.42.29-.57.28-.26.45-.33.37-.1.59-.1.41.03.59.1.33.18.46.33.23.34.3.57.11.5.11.82v.74zm-.85-.86c0-.19-.01-.35-.04-.48s-.07-.23-.12-.31-.11-.14-.19-.17-.16-.05-.25-.05-.18.02-.25.05-.14.09-.19.17-.09.18-.12.31-.04.29-.04.48v.97c0 .19.01.35.04.48s.07.24.12.32.11.14.19.17.16.05.25.05.18-.02.25-.05.14-.09.19-.17.09-.19.11-.32.04-.29.04-.48v-.97z" + }, + "children": [] + }] +}; +exports.ic_replay_10_outline = ic_replay_10_outline; \ No newline at end of file diff --git a/dist/md/ic_replay_10_twotone.js b/dist/md/ic_replay_10_twotone.js new file mode 100644 index 000000000..b37ef4cb0 --- /dev/null +++ b/dist/md/ic_replay_10_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_replay_10_twotone = void 0; +var ic_replay_10_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.99 5V1l-5 5 5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6h-2c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8zm-1.1 11h-.85v-3.26l-1.01.31v-.69l1.77-.63h.09V16zm4.28-1.76c0 .32-.03.6-.1.82s-.17.42-.29.57-.28.26-.45.33-.37.1-.59.1-.41-.03-.59-.1-.33-.18-.46-.33-.23-.34-.3-.57-.11-.5-.11-.82v-.74c0-.32.03-.6.1-.82s.17-.42.29-.57.28-.26.45-.33.37-.1.59-.1.41.03.59.1.33.18.46.33.23.34.3.57.11.5.11.82v.74zm-.85-.86c0-.19-.01-.35-.04-.48s-.07-.23-.12-.31-.11-.14-.19-.17-.16-.05-.25-.05-.18.02-.25.05-.14.09-.19.17-.09.18-.12.31-.04.29-.04.48v.97c0 .19.01.35.04.48s.07.24.12.32.11.14.19.17.16.05.25.05.18-.02.25-.05.14-.09.19-.17.09-.19.11-.32.04-.29.04-.48v-.97z" + }, + "children": [] + }] +}; +exports.ic_replay_10_twotone = ic_replay_10_twotone; \ No newline at end of file diff --git a/dist/md/ic_replay_30.js b/dist/md/ic_replay_30.js new file mode 100644 index 000000000..ec7a58692 --- /dev/null +++ b/dist/md/ic_replay_30.js @@ -0,0 +1,87 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_replay_30 = void 0; +var ic_replay_30 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,5V1L7,6l5,5V7c3.31,0,6,2.69,6,6s-2.69,6-6,6s-6-2.69-6-6H4c0,4.42,3.58,8,8,8s8-3.58,8-8S16.42,5,12,5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,5V1L7,6l5,5V7c3.31,0,6,2.69,6,6s-2.69,6-6,6s-6-2.69-6-6H4c0,4.42,3.58,8,8,8s8-3.58,8-8S16.42,5,12,5z" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M9.56,13.49h0.45c0.21,0,0.37-0.05,0.48-0.16s0.16-0.25,0.16-0.43c0-0.08-0.01-0.15-0.04-0.22s-0.06-0.12-0.11-0.17 s-0.11-0.09-0.18-0.11s-0.16-0.04-0.25-0.04c-0.08,0-0.15,0.01-0.22,0.03s-0.13,0.05-0.18,0.1s-0.09,0.09-0.12,0.15 s-0.05,0.13-0.05,0.2H8.65c0-0.18,0.04-0.34,0.11-0.48s0.17-0.27,0.3-0.37s0.27-0.18,0.44-0.23s0.35-0.08,0.54-0.08 c0.21,0,0.41,0.03,0.59,0.08s0.33,0.13,0.46,0.23s0.23,0.23,0.3,0.38s0.11,0.33,0.11,0.53c0,0.09-0.01,0.18-0.04,0.27 s-0.07,0.17-0.13,0.25s-0.12,0.15-0.2,0.22s-0.17,0.12-0.28,0.17c0.24,0.09,0.42,0.21,0.54,0.39s0.18,0.38,0.18,0.61 c0,0.2-0.04,0.38-0.12,0.53s-0.18,0.29-0.32,0.39s-0.29,0.19-0.48,0.24s-0.38,0.08-0.6,0.08c-0.18,0-0.36-0.02-0.53-0.07 s-0.33-0.12-0.46-0.23s-0.25-0.23-0.33-0.38s-0.12-0.34-0.12-0.55h0.85c0,0.08,0.02,0.15,0.05,0.22s0.07,0.12,0.13,0.17 s0.12,0.09,0.2,0.11s0.16,0.04,0.25,0.04c0.1,0,0.19-0.01,0.27-0.04s0.15-0.07,0.2-0.12s0.1-0.11,0.13-0.18s0.04-0.15,0.04-0.24 c0-0.11-0.02-0.21-0.05-0.29s-0.08-0.15-0.14-0.2s-0.13-0.09-0.22-0.11s-0.18-0.04-0.29-0.04H9.56V13.49z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M9.56,13.49h0.45c0.21,0,0.37-0.05,0.48-0.16s0.16-0.25,0.16-0.43c0-0.08-0.01-0.15-0.04-0.22s-0.06-0.12-0.11-0.17 s-0.11-0.09-0.18-0.11s-0.16-0.04-0.25-0.04c-0.08,0-0.15,0.01-0.22,0.03s-0.13,0.05-0.18,0.1s-0.09,0.09-0.12,0.15 s-0.05,0.13-0.05,0.2H8.65c0-0.18,0.04-0.34,0.11-0.48s0.17-0.27,0.3-0.37s0.27-0.18,0.44-0.23s0.35-0.08,0.54-0.08 c0.21,0,0.41,0.03,0.59,0.08s0.33,0.13,0.46,0.23s0.23,0.23,0.3,0.38s0.11,0.33,0.11,0.53c0,0.09-0.01,0.18-0.04,0.27 s-0.07,0.17-0.13,0.25s-0.12,0.15-0.2,0.22s-0.17,0.12-0.28,0.17c0.24,0.09,0.42,0.21,0.54,0.39s0.18,0.38,0.18,0.61 c0,0.2-0.04,0.38-0.12,0.53s-0.18,0.29-0.32,0.39s-0.29,0.19-0.48,0.24s-0.38,0.08-0.6,0.08c-0.18,0-0.36-0.02-0.53-0.07 s-0.33-0.12-0.46-0.23s-0.25-0.23-0.33-0.38s-0.12-0.34-0.12-0.55h0.85c0,0.08,0.02,0.15,0.05,0.22s0.07,0.12,0.13,0.17 s0.12,0.09,0.2,0.11s0.16,0.04,0.25,0.04c0.1,0,0.19-0.01,0.27-0.04s0.15-0.07,0.2-0.12s0.1-0.11,0.13-0.18s0.04-0.15,0.04-0.24 c0-0.11-0.02-0.21-0.05-0.29s-0.08-0.15-0.14-0.2s-0.13-0.09-0.22-0.11s-0.18-0.04-0.29-0.04H9.56V13.49z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M15.3,14.24c0,0.32-0.03,0.6-0.1,0.82s-0.17,0.42-0.29,0.57s-0.28,0.26-0.45,0.33s-0.37,0.1-0.59,0.1 s-0.41-0.03-0.59-0.1s-0.33-0.18-0.46-0.33s-0.23-0.34-0.3-0.57s-0.11-0.5-0.11-0.82V13.5c0-0.32,0.03-0.6,0.1-0.82 s0.17-0.42,0.29-0.57s0.28-0.26,0.45-0.33s0.37-0.1,0.59-0.1s0.41,0.03,0.59,0.1s0.33,0.18,0.46,0.33s0.23,0.34,0.3,0.57 s0.11,0.5,0.11,0.82V14.24z M14.45,13.38c0-0.19-0.01-0.35-0.04-0.48c-0.03-0.13-0.07-0.23-0.12-0.31s-0.11-0.14-0.19-0.17 s-0.16-0.05-0.25-0.05s-0.18,0.02-0.25,0.05s-0.14,0.09-0.19,0.17s-0.09,0.18-0.12,0.31s-0.04,0.29-0.04,0.48v0.97 c0,0.19,0.01,0.35,0.04,0.48s0.07,0.24,0.12,0.32s0.11,0.14,0.19,0.17s0.16,0.05,0.25,0.05s0.18-0.02,0.25-0.05 s0.14-0.09,0.19-0.17s0.09-0.19,0.11-0.32c0.03-0.13,0.04-0.29,0.04-0.48V13.38z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15.3,14.24c0,0.32-0.03,0.6-0.1,0.82s-0.17,0.42-0.29,0.57s-0.28,0.26-0.45,0.33s-0.37,0.1-0.59,0.1 s-0.41-0.03-0.59-0.1s-0.33-0.18-0.46-0.33s-0.23-0.34-0.3-0.57s-0.11-0.5-0.11-0.82V13.5c0-0.32,0.03-0.6,0.1-0.82 s0.17-0.42,0.29-0.57s0.28-0.26,0.45-0.33s0.37-0.1,0.59-0.1s0.41,0.03,0.59,0.1s0.33,0.18,0.46,0.33s0.23,0.34,0.3,0.57 s0.11,0.5,0.11,0.82V14.24z M14.45,13.38c0-0.19-0.01-0.35-0.04-0.48c-0.03-0.13-0.07-0.23-0.12-0.31s-0.11-0.14-0.19-0.17 s-0.16-0.05-0.25-0.05s-0.18,0.02-0.25,0.05s-0.14,0.09-0.19,0.17s-0.09,0.18-0.12,0.31s-0.04,0.29-0.04,0.48v0.97 c0,0.19,0.01,0.35,0.04,0.48s0.07,0.24,0.12,0.32s0.11,0.14,0.19,0.17s0.16,0.05,0.25,0.05s0.18-0.02,0.25-0.05 s0.14-0.09,0.19-0.17s0.09-0.19,0.11-0.32c0.03-0.13,0.04-0.29,0.04-0.48V13.38z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_replay_30 = ic_replay_30; \ No newline at end of file diff --git a/dist/md/ic_replay_30_outline.js b/dist/md/ic_replay_30_outline.js new file mode 100644 index 000000000..8123073c3 --- /dev/null +++ b/dist/md/ic_replay_30_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_replay_30_outline = void 0; +var ic_replay_30_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 5V1L7 6l5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6H4c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8zm-2.44 8.49h.45c.21 0 .37-.05.48-.16s.16-.25.16-.43c0-.08-.01-.15-.04-.22s-.06-.12-.11-.17-.11-.09-.18-.11-.16-.04-.25-.04c-.08 0-.15.01-.22.03s-.13.05-.18.1-.09.09-.12.15-.05.13-.05.2h-.85c0-.18.04-.34.11-.48s.17-.27.3-.37.27-.18.44-.23.35-.08.54-.08c.21 0 .41.03.59.08s.33.13.46.23.23.23.3.38.11.33.11.53c0 .09-.01.18-.04.27s-.07.17-.13.25-.12.15-.2.22-.17.12-.28.17c.24.09.42.21.54.39s.18.38.18.61c0 .2-.04.38-.12.53s-.18.29-.32.39-.29.19-.48.24-.38.08-.6.08c-.18 0-.36-.02-.53-.07s-.33-.12-.46-.23-.25-.23-.33-.38-.12-.34-.12-.55h.85c0 .08.02.15.05.22s.07.12.13.17.12.09.2.11.16.04.25.04c.1 0 .19-.01.27-.04s.15-.07.2-.12.1-.11.13-.18.04-.15.04-.24c0-.11-.02-.21-.05-.29s-.08-.15-.14-.2-.13-.09-.22-.11-.18-.04-.29-.04h-.47v-.65zm5.74.75c0 .32-.03.6-.1.82s-.17.42-.29.57-.28.26-.45.33-.37.1-.59.1-.41-.03-.59-.1-.33-.18-.46-.33-.23-.34-.3-.57-.11-.5-.11-.82v-.74c0-.32.03-.6.1-.82s.17-.42.29-.57.28-.26.45-.33.37-.1.59-.1.41.03.59.1.33.18.46.33.23.34.3.57.11.5.11.82v.74zm-.85-.86c0-.19-.01-.35-.04-.48s-.07-.23-.12-.31-.11-.14-.19-.17-.16-.05-.25-.05-.18.02-.25.05-.14.09-.19.17-.09.18-.12.31-.04.29-.04.48v.97c0 .19.01.35.04.48s.07.24.12.32.11.14.19.17.16.05.25.05.18-.02.25-.05.14-.09.19-.17.09-.19.11-.32c.03-.13.04-.29.04-.48v-.97z" + }, + "children": [] + }] +}; +exports.ic_replay_30_outline = ic_replay_30_outline; \ No newline at end of file diff --git a/dist/md/ic_replay_30_twotone.js b/dist/md/ic_replay_30_twotone.js new file mode 100644 index 000000000..3495d588f --- /dev/null +++ b/dist/md/ic_replay_30_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_replay_30_twotone = void 0; +var ic_replay_30_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 5V1L7 6l5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6H4c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8zm-2.44 8.49h.45c.21 0 .37-.05.48-.16s.16-.25.16-.43c0-.08-.01-.15-.04-.22s-.06-.12-.11-.17-.11-.09-.18-.11-.16-.04-.25-.04c-.08 0-.15.01-.22.03s-.13.05-.18.1-.09.09-.12.15-.05.13-.05.2h-.85c0-.18.04-.34.11-.48s.17-.27.3-.37.27-.18.44-.23.35-.08.54-.08c.21 0 .41.03.59.08s.33.13.46.23.23.23.3.38.11.33.11.53c0 .09-.01.18-.04.27s-.07.17-.13.25-.12.15-.2.22-.17.12-.28.17c.24.09.42.21.54.39s.18.38.18.61c0 .2-.04.38-.12.53s-.18.29-.32.39-.29.19-.48.24-.38.08-.6.08c-.18 0-.36-.02-.53-.07s-.33-.12-.46-.23-.25-.23-.33-.38-.12-.34-.12-.55h.85c0 .08.02.15.05.22s.07.12.13.17.12.09.2.11.16.04.25.04c.1 0 .19-.01.27-.04s.15-.07.2-.12.1-.11.13-.18.04-.15.04-.24c0-.11-.02-.21-.05-.29s-.08-.15-.14-.2-.13-.09-.22-.11-.18-.04-.29-.04h-.47v-.65zm5.74.75c0 .32-.03.6-.1.82s-.17.42-.29.57-.28.26-.45.33-.37.1-.59.1-.41-.03-.59-.1-.33-.18-.46-.33-.23-.34-.3-.57-.11-.5-.11-.82v-.74c0-.32.03-.6.1-.82s.17-.42.29-.57.28-.26.45-.33.37-.1.59-.1.41.03.59.1.33.18.46.33.23.34.3.57.11.5.11.82v.74zm-.85-.86c0-.19-.01-.35-.04-.48s-.07-.23-.12-.31-.11-.14-.19-.17-.16-.05-.25-.05-.18.02-.25.05-.14.09-.19.17-.09.18-.12.31-.04.29-.04.48v.97c0 .19.01.35.04.48s.07.24.12.32.11.14.19.17.16.05.25.05.18-.02.25-.05.14-.09.19-.17.09-.19.11-.32c.03-.13.04-.29.04-.48v-.97z" + }, + "children": [] + }] +}; +exports.ic_replay_30_twotone = ic_replay_30_twotone; \ No newline at end of file diff --git a/dist/md/ic_replay_5.js b/dist/md/ic_replay_5.js new file mode 100644 index 000000000..5fbe9dd01 --- /dev/null +++ b/dist/md/ic_replay_5.js @@ -0,0 +1,75 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_replay_5 = void 0; +var ic_replay_5 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,5V1L7,6l5,5V7c3.31,0,6,2.69,6,6s-2.69,6-6,6s-6-2.69-6-6H4c0,4.42,3.58,8,8,8s8-3.58,8-8S16.42,5,12,5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,5V1L7,6l5,5V7c3.31,0,6,2.69,6,6s-2.69,6-6,6s-6-2.69-6-6H4c0,4.42,3.58,8,8,8s8-3.58,8-8S16.42,5,12,5z" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M10.69,13.9l0.25-2.17h2.39v0.71h-1.7l-0.11,0.92c0.03-0.02,0.07-0.03,0.11-0.05s0.09-0.04,0.15-0.05 s0.12-0.03,0.18-0.04s0.13-0.02,0.2-0.02c0.21,0,0.39,0.03,0.55,0.1s0.3,0.16,0.41,0.28s0.2,0.27,0.25,0.45s0.09,0.38,0.09,0.6 c0,0.19-0.03,0.37-0.09,0.54s-0.15,0.32-0.27,0.45s-0.27,0.24-0.45,0.31s-0.39,0.12-0.64,0.12c-0.18,0-0.36-0.03-0.53-0.08 s-0.32-0.14-0.46-0.24s-0.24-0.24-0.32-0.39s-0.13-0.33-0.13-0.53h0.84c0.02,0.18,0.08,0.32,0.19,0.41s0.25,0.15,0.42,0.15 c0.11,0,0.2-0.02,0.27-0.06s0.14-0.1,0.18-0.17s0.08-0.15,0.11-0.25s0.03-0.2,0.03-0.31s-0.01-0.21-0.04-0.31 s-0.07-0.17-0.13-0.24s-0.13-0.12-0.21-0.15s-0.19-0.05-0.3-0.05c-0.08,0-0.15,0.01-0.2,0.02s-0.11,0.03-0.15,0.05 s-0.08,0.05-0.12,0.07s-0.07,0.06-0.1,0.09L10.69,13.9z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M10.69,13.9l0.25-2.17h2.39v0.71h-1.7l-0.11,0.92c0.03-0.02,0.07-0.03,0.11-0.05s0.09-0.04,0.15-0.05 s0.12-0.03,0.18-0.04s0.13-0.02,0.2-0.02c0.21,0,0.39,0.03,0.55,0.1s0.3,0.16,0.41,0.28s0.2,0.27,0.25,0.45s0.09,0.38,0.09,0.6 c0,0.19-0.03,0.37-0.09,0.54s-0.15,0.32-0.27,0.45s-0.27,0.24-0.45,0.31s-0.39,0.12-0.64,0.12c-0.18,0-0.36-0.03-0.53-0.08 s-0.32-0.14-0.46-0.24s-0.24-0.24-0.32-0.39s-0.13-0.33-0.13-0.53h0.84c0.02,0.18,0.08,0.32,0.19,0.41s0.25,0.15,0.42,0.15 c0.11,0,0.2-0.02,0.27-0.06s0.14-0.1,0.18-0.17s0.08-0.15,0.11-0.25s0.03-0.2,0.03-0.31s-0.01-0.21-0.04-0.31 s-0.07-0.17-0.13-0.24s-0.13-0.12-0.21-0.15s-0.19-0.05-0.3-0.05c-0.08,0-0.15,0.01-0.2,0.02s-0.11,0.03-0.15,0.05 s-0.08,0.05-0.12,0.07s-0.07,0.06-0.1,0.09L10.69,13.9z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_replay_5 = ic_replay_5; \ No newline at end of file diff --git a/dist/md/ic_replay_5_outline.js b/dist/md/ic_replay_5_outline.js new file mode 100644 index 000000000..222f19a6c --- /dev/null +++ b/dist/md/ic_replay_5_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_replay_5_outline = void 0; +var ic_replay_5_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 5V1L7 6l5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6H4c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8zm-1.31 8.9l.25-2.17h2.39v.71h-1.7l-.11.92c.03-.02.07-.03.11-.05s.09-.04.15-.05.12-.03.18-.04.13-.02.2-.02c.21 0 .39.03.55.1s.3.16.41.28.2.27.25.45.09.38.09.6c0 .19-.03.37-.09.54s-.15.32-.27.45-.27.24-.45.31-.39.12-.64.12c-.18 0-.36-.03-.53-.08s-.32-.14-.46-.24-.24-.24-.32-.39-.13-.33-.13-.53h.84c.02.18.08.32.19.41s.25.15.42.15c.11 0 .2-.02.27-.06s.14-.1.18-.17.08-.15.11-.25.03-.2.03-.31-.01-.21-.04-.31-.07-.17-.13-.24-.13-.12-.21-.15-.19-.05-.3-.05c-.08 0-.15.01-.2.02s-.11.03-.15.05-.08.05-.12.07-.07.06-.1.09l-.67-.16z" + }, + "children": [] + }] +}; +exports.ic_replay_5_outline = ic_replay_5_outline; \ No newline at end of file diff --git a/dist/md/ic_replay_5_twotone.js b/dist/md/ic_replay_5_twotone.js new file mode 100644 index 000000000..49b9de7fc --- /dev/null +++ b/dist/md/ic_replay_5_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_replay_5_twotone = void 0; +var ic_replay_5_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 5V1L7 6l5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6H4c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8zm-1.31 8.9l.25-2.17h2.39v.71h-1.7l-.11.92c.03-.02.07-.03.11-.05s.09-.04.15-.05.12-.03.18-.04.13-.02.2-.02c.21 0 .39.03.55.1s.3.16.41.28.2.27.25.45.09.38.09.6c0 .19-.03.37-.09.54s-.15.32-.27.45-.27.24-.45.31-.39.12-.64.12c-.18 0-.36-.03-.53-.08s-.32-.14-.46-.24-.24-.24-.32-.39-.13-.33-.13-.53h.84c.02.18.08.32.19.41s.25.15.42.15c.11 0 .2-.02.27-.06s.14-.1.18-.17.08-.15.11-.25.03-.2.03-.31-.01-.21-.04-.31-.07-.17-.13-.24-.13-.12-.21-.15-.19-.05-.3-.05c-.08 0-.15.01-.2.02s-.11.03-.15.05-.08.05-.12.07-.07.06-.1.09l-.67-.16z" + }, + "children": [] + }] +}; +exports.ic_replay_5_twotone = ic_replay_5_twotone; \ No newline at end of file diff --git a/dist/md/ic_replay_circle_filled.js b/dist/md/ic_replay_circle_filled.js new file mode 100644 index 000000000..d60918ffb --- /dev/null +++ b/dist/md/ic_replay_circle_filled.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_replay_circle_filled = void 0; +var ic_replay_circle_filled = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm6 10c0 3.31-2.69 6-6 6s-6-2.69-6-6h2c0 2.21 1.79 4 4 4s4-1.79 4-4-1.79-4-4-4v3L8 7l4-4v3c3.31 0 6 2.69 6 6z", + "fill-rule": "evenodd" + }, + "children": [] + }] +}; +exports.ic_replay_circle_filled = ic_replay_circle_filled; \ No newline at end of file diff --git a/dist/md/ic_replay_outline.js b/dist/md/ic_replay_outline.js new file mode 100644 index 000000000..cf52662c2 --- /dev/null +++ b/dist/md/ic_replay_outline.js @@ -0,0 +1,87 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_replay_outline = void 0; +var ic_replay_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M12,5V1L7,6l5,5V7c3.31,0,6,2.69,6,6s-2.69,6-6,6s-6-2.69-6-6H4c0,4.42,3.58,8,8,8s8-3.58,8-8S16.42,5,12,5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,5V1L7,6l5,5V7c3.31,0,6,2.69,6,6s-2.69,6-6,6s-6-2.69-6-6H4c0,4.42,3.58,8,8,8s8-3.58,8-8S16.42,5,12,5z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_replay_outline = ic_replay_outline; \ No newline at end of file diff --git a/dist/md/ic_replay_twotone.js b/dist/md/ic_replay_twotone.js new file mode 100644 index 000000000..10ca05995 --- /dev/null +++ b/dist/md/ic_replay_twotone.js @@ -0,0 +1,87 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_replay_twotone = void 0; +var ic_replay_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M7,6l5,5V7c3.31,0,6,2.69,6,6s-2.69,6-6,6s-6-2.69-6-6H4c0,4.42,3.58,8,8,8s8-3.58,8-8c0-4.42-3.58-8-8-8V1L7,6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M7,6l5,5V7c3.31,0,6,2.69,6,6s-2.69,6-6,6s-6-2.69-6-6H4c0,4.42,3.58,8,8,8s8-3.58,8-8c0-4.42-3.58-8-8-8V1L7,6z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_replay_twotone = ic_replay_twotone; \ No newline at end of file diff --git a/dist/md/ic_reply.js b/dist/md/ic_reply.js new file mode 100644 index 000000000..9b3af9299 --- /dev/null +++ b/dist/md/ic_reply.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_reply = void 0; +var ic_reply = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 9V5l-7 7 7 7v-4.1c5 0 8.5 1.6 11 5.1-1-5-4-10-11-11z" + }, + "children": [] + }] +}; +exports.ic_reply = ic_reply; \ No newline at end of file diff --git a/dist/md/ic_reply_all.js b/dist/md/ic_reply_all.js new file mode 100644 index 000000000..16e23defb --- /dev/null +++ b/dist/md/ic_reply_all.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_reply_all = void 0; +var ic_reply_all = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 8V5l-7 7 7 7v-3l-4-4 4-4zm6 1V5l-7 7 7 7v-4.1c5 0 8.5 1.6 11 5.1-1-5-4-10-11-11z" + }, + "children": [] + }] +}; +exports.ic_reply_all = ic_reply_all; \ No newline at end of file diff --git a/dist/md/ic_reply_all_outline.js b/dist/md/ic_reply_all_outline.js new file mode 100644 index 000000000..fb19f2fbe --- /dev/null +++ b/dist/md/ic_reply_all_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_reply_all_outline = void 0; +var ic_reply_all_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 8V5l-7 7 7 7v-3l-4-4 4-4zm6 1V5l-7 7 7 7v-4.1c5 0 8.5 1.6 11 5.1-1-5-4-10-11-11z" + }, + "children": [] + }] +}; +exports.ic_reply_all_outline = ic_reply_all_outline; \ No newline at end of file diff --git a/dist/md/ic_reply_all_twotone.js b/dist/md/ic_reply_all_twotone.js new file mode 100644 index 000000000..dd25dac9a --- /dev/null +++ b/dist/md/ic_reply_all_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_reply_all_twotone = void 0; +var ic_reply_all_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 8V5l-7 7 7 7v-3l-4-4 4-4zm6 1V5l-7 7 7 7v-4.1c5 0 8.5 1.6 11 5.1-1-5-4-10-11-11z" + }, + "children": [] + }] +}; +exports.ic_reply_all_twotone = ic_reply_all_twotone; \ No newline at end of file diff --git a/dist/md/ic_reply_outline.js b/dist/md/ic_reply_outline.js new file mode 100644 index 000000000..ddb610d14 --- /dev/null +++ b/dist/md/ic_reply_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_reply_outline = void 0; +var ic_reply_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 9V5l-7 7 7 7v-4.1c5 0 8.5 1.6 11 5.1-1-5-4-10-11-11z" + }, + "children": [] + }] +}; +exports.ic_reply_outline = ic_reply_outline; \ No newline at end of file diff --git a/dist/md/ic_reply_twotone.js b/dist/md/ic_reply_twotone.js new file mode 100644 index 000000000..2d3e78f55 --- /dev/null +++ b/dist/md/ic_reply_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_reply_twotone = void 0; +var ic_reply_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 9V5l-7 7 7 7v-4.1c5 0 8.5 1.6 11 5.1-1-5-4-10-11-11z" + }, + "children": [] + }] +}; +exports.ic_reply_twotone = ic_reply_twotone; \ No newline at end of file diff --git a/dist/md/ic_report.js b/dist/md/ic_report.js new file mode 100644 index 000000000..c5539ddf3 --- /dev/null +++ b/dist/md/ic_report.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_report = void 0; +var ic_report = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.73 3H8.27L3 8.27v7.46L8.27 21h7.46L21 15.73V8.27L15.73 3zM12 17.3c-.72 0-1.3-.58-1.3-1.3 0-.72.58-1.3 1.3-1.3.72 0 1.3.58 1.3 1.3 0 .72-.58 1.3-1.3 1.3zm1-4.3h-2V7h2v6z" + }, + "children": [] + }] +}; +exports.ic_report = ic_report; \ No newline at end of file diff --git a/dist/md/ic_report_gmailerrorred_outline.js b/dist/md/ic_report_gmailerrorred_outline.js new file mode 100644 index 000000000..338e17103 --- /dev/null +++ b/dist/md/ic_report_gmailerrorred_outline.js @@ -0,0 +1,38 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_report_gmailerrorred_outline = void 0; +var ic_report_gmailerrorred_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.73 3H8.27L3 8.27v7.46L8.27 21h7.46L21 15.73V8.27L15.73 3zM19 14.9L14.9 19H9.1L5 14.9V9.1L9.1 5h5.8L19 9.1v5.8z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "16", + "r": "1" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 7h2v7h-2z" + }, + "children": [] + }] +}; +exports.ic_report_gmailerrorred_outline = ic_report_gmailerrorred_outline; \ No newline at end of file diff --git a/dist/md/ic_report_gmailerrorred_twotone.js b/dist/md/ic_report_gmailerrorred_twotone.js new file mode 100644 index 000000000..a81326443 --- /dev/null +++ b/dist/md/ic_report_gmailerrorred_twotone.js @@ -0,0 +1,38 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_report_gmailerrorred_twotone = void 0; +var ic_report_gmailerrorred_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.73 3H8.27L3 8.27v7.46L8.27 21h7.46L21 15.73V8.27L15.73 3zM19 14.9L14.9 19H9.1L5 14.9V9.1L9.1 5h5.8L19 9.1v5.8z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "16", + "r": "1" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 7h2v7h-2z" + }, + "children": [] + }] +}; +exports.ic_report_gmailerrorred_twotone = ic_report_gmailerrorred_twotone; \ No newline at end of file diff --git a/dist/md/ic_report_off.js b/dist/md/ic_report_off.js new file mode 100644 index 000000000..435cf783d --- /dev/null +++ b/dist/md/ic_report_off.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_report_off = void 0; +var ic_report_off = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 7h2v2.92l6.91 6.91 1.09-1.1V8.27L15.73 3H8.27L7.18 4.1 11 7.92zm11.27 14.73l-20-20.01L1 2.99l3.64 3.64L3 8.27v7.46L8.27 21h7.46l1.64-1.63L21 23l1.27-1.27zM12 17.3c-.72 0-1.3-.58-1.3-1.3s.58-1.3 1.3-1.3 1.3.58 1.3 1.3-.58 1.3-1.3 1.3z" + }, + "children": [] + }] +}; +exports.ic_report_off = ic_report_off; \ No newline at end of file diff --git a/dist/md/ic_report_off_outline.js b/dist/md/ic_report_off_outline.js new file mode 100644 index 000000000..8216c5452 --- /dev/null +++ b/dist/md/ic_report_off_outline.js @@ -0,0 +1,38 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_report_off_outline = void 0; +var ic_report_off_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9.1 5h5.8L19 9.1v5.8l-.22.22 1.42 1.41.8-.8V8.27L15.73 3H8.27l-.8.8 1.41 1.42z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "16", + "r": "1" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 9.33V7h-2v.33zM2.41 1.58L1 2.99l3.64 3.64L3 8.27v7.46L8.27 21h7.46l1.64-1.64L21.01 23l1.41-1.41L2.41 1.58zM14.9 19H9.1L5 14.9V9.1l1.05-1.05 9.9 9.9L14.9 19z" + }, + "children": [] + }] +}; +exports.ic_report_off_outline = ic_report_off_outline; \ No newline at end of file diff --git a/dist/md/ic_report_off_twotone.js b/dist/md/ic_report_off_twotone.js new file mode 100644 index 000000000..7ede310e0 --- /dev/null +++ b/dist/md/ic_report_off_twotone.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_report_off_twotone = void 0; +var ic_report_off_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 9.1L14.9 5H9.1l-.22.22L11 7.33V7h2v2.33l5.78 5.79.22-.22zM6.05 8.04L5 9.1v5.8L9.1 19h5.8l1.05-1.05-9.9-9.91zM13 16c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9.1 5h5.8L19 9.1v5.8l-.22.22 1.42 1.41.8-.8V8.27L15.73 3H8.27l-.8.8 1.41 1.42z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "16", + "r": "1" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 7h-2v.33l2 2zM2.41 1.58L1 2.99l3.64 3.64L3 8.27v7.46L8.27 21h7.46l1.64-1.64L21.01 23l1.41-1.41L2.41 1.58zM14.9 19H9.1L5 14.9V9.1l1.05-1.05 9.9 9.9L14.9 19z" + }, + "children": [] + }] +}; +exports.ic_report_off_twotone = ic_report_off_twotone; \ No newline at end of file diff --git a/dist/md/ic_report_outline.js b/dist/md/ic_report_outline.js new file mode 100644 index 000000000..b952c08bd --- /dev/null +++ b/dist/md/ic_report_outline.js @@ -0,0 +1,38 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_report_outline = void 0; +var ic_report_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.73 3H8.27L3 8.27v7.46L8.27 21h7.46L21 15.73V8.27L15.73 3zM19 14.9L14.9 19H9.1L5 14.9V9.1L9.1 5h5.8L19 9.1v5.8z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "16", + "r": "1" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 7h2v7h-2z" + }, + "children": [] + }] +}; +exports.ic_report_outline = ic_report_outline; \ No newline at end of file diff --git a/dist/md/ic_report_problem.js b/dist/md/ic_report_problem.js new file mode 100644 index 000000000..faadf31eb --- /dev/null +++ b/dist/md/ic_report_problem.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_report_problem = void 0; +var ic_report_problem = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M1 21h22L12 2 1 21zm12-3h-2v-2h2v2zm0-4h-2v-4h2v4z" + }, + "children": [] + }] +}; +exports.ic_report_problem = ic_report_problem; \ No newline at end of file diff --git a/dist/md/ic_report_problem_outline.js b/dist/md/ic_report_problem_outline.js new file mode 100644 index 000000000..50d3f64ec --- /dev/null +++ b/dist/md/ic_report_problem_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_report_problem_outline = void 0; +var ic_report_problem_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 5.99L19.53 19H4.47L12 5.99M12 2L1 21h22L12 2zm1 14h-2v2h2v-2zm0-6h-2v4h2v-4z" + }, + "children": [] + }] +}; +exports.ic_report_problem_outline = ic_report_problem_outline; \ No newline at end of file diff --git a/dist/md/ic_report_problem_twotone.js b/dist/md/ic_report_problem_twotone.js new file mode 100644 index 000000000..358b6e286 --- /dev/null +++ b/dist/md/ic_report_problem_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_report_problem_twotone = void 0; +var ic_report_problem_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 5.99L4.47 19h15.06L12 5.99zM13 18h-2v-2h2v2zm-2-4v-4h2v4h-2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2L1 21h22L12 2zm0 3.99L19.53 19H4.47L12 5.99zM11 16h2v2h-2zm0-6h2v4h-2z" + }, + "children": [] + }] +}; +exports.ic_report_problem_twotone = ic_report_problem_twotone; \ No newline at end of file diff --git a/dist/md/ic_report_twotone.js b/dist/md/ic_report_twotone.js new file mode 100644 index 000000000..5cede5753 --- /dev/null +++ b/dist/md/ic_report_twotone.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_report_twotone = void 0; +var ic_report_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9.1 5L5 9.1v5.8L9.1 19h5.8l4.1-4.1V9.1L14.9 5H9.1zM12 17c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm1-3h-2V7h2v7z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.73 3H8.27L3 8.27v7.46L8.27 21h7.46L21 15.73V8.27L15.73 3zM19 14.9L14.9 19H9.1L5 14.9V9.1L9.1 5h5.8L19 9.1v5.8z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "16", + "r": "1" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 7h2v7h-2z" + }, + "children": [] + }] +}; +exports.ic_report_twotone = ic_report_twotone; \ No newline at end of file diff --git a/dist/md/ic_request_page.js b/dist/md/ic_request_page.js new file mode 100644 index 000000000..e26b32305 --- /dev/null +++ b/dist/md/ic_request_page.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_request_page = void 0; +var ic_request_page = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8L14,2z M15,11h-4v1h3c0.55,0,1,0.45,1,1v3 c0,0.55-0.45,1-1,1h-1v1h-2v-1H9v-2h4v-1h-3c-0.55,0-1-0.45-1-1v-3c0-0.55,0.45-1,1-1h1V8h2v1h2V11z" + }, + "children": [] + }] +}; +exports.ic_request_page = ic_request_page; \ No newline at end of file diff --git a/dist/md/ic_request_page_outline.js b/dist/md/ic_request_page_outline.js new file mode 100644 index 000000000..7425670ea --- /dev/null +++ b/dist/md/ic_request_page_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_request_page_outline = void 0; +var ic_request_page_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13.17,4L18,8.83V20H6V4H13.17 M14,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8L14,2L14,2z M15,11h-4v1h3 c0.55,0,1,0.45,1,1v3c0,0.55-0.45,1-1,1h-1v1h-2v-1H9v-2h4v-1h-3c-0.55,0-1-0.45-1-1v-3c0-0.55,0.45-1,1-1h1V8h2v1h2V11z" + }, + "children": [] + }] +}; +exports.ic_request_page_outline = ic_request_page_outline; \ No newline at end of file diff --git a/dist/md/ic_request_page_twotone.js b/dist/md/ic_request_page_twotone.js new file mode 100644 index 000000000..7ffc4c6b3 --- /dev/null +++ b/dist/md/ic_request_page_twotone.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_request_page_twotone = void 0; +var ic_request_page_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13.17,4H6v16h12V8.83L13.17,4z M15,11h-4v1h3c0.55,0,1,0.45,1,1v3c0,0.55-0.45,1-1,1h-1v1h-2v-1H9v-2h4v-1 h-3c-0.55,0-1-0.45-1-1v-3c0-0.55,0.45-1,1-1h1V8h2v1h2V11z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13.17,4L18,8.83V20H6V4H13.17 M14,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8L14,2L14,2z M15,11h-4v1h3 c0.55,0,1,0.45,1,1v3c0,0.55-0.45,1-1,1h-1v1h-2v-1H9v-2h4v-1h-3c-0.55,0-1-0.45-1-1v-3c0-0.55,0.45-1,1-1h1V8h2v1h2V11z" + }, + "children": [] + }] +}; +exports.ic_request_page_twotone = ic_request_page_twotone; \ No newline at end of file diff --git a/dist/md/ic_request_quote.js b/dist/md/ic_request_quote.js new file mode 100644 index 000000000..68b6385bb --- /dev/null +++ b/dist/md/ic_request_quote.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_request_quote = void 0; +var ic_request_quote = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M14,2H6C4.9,2,4.01,2.9,4.01,4L4,20c0,1.1,0.89,2,1.99,2H18c1.1,0,2-0.9,2-2V8L14,2z M15,12h-4v1h3c0.55,0,1,0.45,1,1v3 c0,0.55-0.45,1-1,1h-1v1h-2v-1H9v-2h4v-1h-3c-0.55,0-1-0.45-1-1v-3c0-0.55,0.45-1,1-1h1V9h2v1h2V12z M13,8V3.5L17.5,8H13z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14,2H6C4.9,2,4.01,2.9,4.01,4L4,20c0,1.1,0.89,2,1.99,2H18c1.1,0,2-0.9,2-2V8L14,2z M15,12h-4v1h3c0.55,0,1,0.45,1,1v3 c0,0.55-0.45,1-1,1h-1v1h-2v-1H9v-2h4v-1h-3c-0.55,0-1-0.45-1-1v-3c0-0.55,0.45-1,1-1h1V9h2v1h2V12z M13,8V3.5L17.5,8H13z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_request_quote = ic_request_quote; \ No newline at end of file diff --git a/dist/md/ic_request_quote_outline.js b/dist/md/ic_request_quote_outline.js new file mode 100644 index 000000000..eed795499 --- /dev/null +++ b/dist/md/ic_request_quote_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_request_quote_outline = void 0; +var ic_request_quote_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M14,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8L14,2z M6,20V4h7v4h5v12H6z M11,19h2v-1h1 c0.55,0,1-0.45,1-1v-3c0-0.55-0.45-1-1-1h-3v-1h4v-2h-2V9h-2v1h-1c-0.55,0-1,0.45-1,1v3c0,0.55,0.45,1,1,1h3v1H9v2h2V19z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8L14,2z M6,20V4h7v4h5v12H6z M11,19h2v-1h1 c0.55,0,1-0.45,1-1v-3c0-0.55-0.45-1-1-1h-3v-1h4v-2h-2V9h-2v1h-1c-0.55,0-1,0.45-1,1v3c0,0.55,0.45,1,1,1h3v1H9v2h2V19z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_request_quote_outline = ic_request_quote_outline; \ No newline at end of file diff --git a/dist/md/ic_request_quote_twotone.js b/dist/md/ic_request_quote_twotone.js new file mode 100644 index 000000000..c0d454209 --- /dev/null +++ b/dist/md/ic_request_quote_twotone.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_request_quote_twotone = void 0; +var ic_request_quote_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M6,20V4h7v4h5v12H6z M11,19h2v-1h1c0.55,0,1-0.45,1-1v-3c0-0.55-0.45-1-1-1h-3v-1h4v-2h-2V9h-2v1h-1 c-0.55,0-1,0.45-1,1v3c0,0.55,0.45,1,1,1h3v1H9v2h2V19z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M6,20V4h7v4h5v12H6z M11,19h2v-1h1c0.55,0,1-0.45,1-1v-3c0-0.55-0.45-1-1-1h-3v-1h4v-2h-2V9h-2v1h-1 c-0.55,0-1,0.45-1,1v3c0,0.55,0.45,1,1,1h3v1H9v2h2V19z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M14,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8L14,2z M6,20V4h7v4h5v12H6z M11,19h2v-1h1 c0.55,0,1-0.45,1-1v-3c0-0.55-0.45-1-1-1h-3v-1h4v-2h-2V9h-2v1h-1c-0.55,0-1,0.45-1,1v3c0,0.55,0.45,1,1,1h3v1H9v2h2V19z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8L14,2z M6,20V4h7v4h5v12H6z M11,19h2v-1h1 c0.55,0,1-0.45,1-1v-3c0-0.55-0.45-1-1-1h-3v-1h4v-2h-2V9h-2v1h-1c-0.55,0-1,0.45-1,1v3c0,0.55,0.45,1,1,1h3v1H9v2h2V19z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_request_quote_twotone = ic_request_quote_twotone; \ No newline at end of file diff --git a/dist/md/ic_reset_tv.js b/dist/md/ic_reset_tv.js new file mode 100644 index 000000000..16a6a6379 --- /dev/null +++ b/dist/md/ic_reset_tv.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_reset_tv = void 0; +var ic_reset_tv = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 10h-8.01V7L9 11l3.99 4v-3H21v5H3V5h18v3h2V5c0-1.1-.9-2-2-2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2v-5H23c0-1.1-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_reset_tv = ic_reset_tv; \ No newline at end of file diff --git a/dist/md/ic_restaurant.js b/dist/md/ic_restaurant.js new file mode 100644 index 000000000..82016484f --- /dev/null +++ b/dist/md/ic_restaurant.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_restaurant = void 0; +var ic_restaurant = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 9H9V2H7v7H5V2H3v7c0 2.12 1.66 3.84 3.75 3.97V22h2.5v-9.03C11.34 12.84 13 11.12 13 9V2h-2v7zm5-3v8h2.5v8H21V2c-2.76 0-5 2.24-5 4z" + }, + "children": [] + }] +}; +exports.ic_restaurant = ic_restaurant; \ No newline at end of file diff --git a/dist/md/ic_restaurant_menu.js b/dist/md/ic_restaurant_menu.js new file mode 100644 index 000000000..b610b49ec --- /dev/null +++ b/dist/md/ic_restaurant_menu.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_restaurant_menu = void 0; +var ic_restaurant_menu = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8.1 13.34l2.83-2.83L3.91 3.5c-1.56 1.56-1.56 4.09 0 5.66l4.19 4.18zm6.78-1.81c1.53.71 3.68.21 5.27-1.38 1.91-1.91 2.28-4.65.81-6.12-1.46-1.46-4.2-1.1-6.12.81-1.59 1.59-2.09 3.74-1.38 5.27L3.7 19.87l1.41 1.41L12 14.41l6.88 6.88 1.41-1.41L13.41 13l1.47-1.47z" + }, + "children": [] + }] +}; +exports.ic_restaurant_menu = ic_restaurant_menu; \ No newline at end of file diff --git a/dist/md/ic_restaurant_menu_outline.js b/dist/md/ic_restaurant_menu_outline.js new file mode 100644 index 000000000..7cb5bc407 --- /dev/null +++ b/dist/md/ic_restaurant_menu_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_restaurant_menu_outline = void 0; +var ic_restaurant_menu_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8.1 13.34l2.83-2.83L3.91 3.5c-1.56 1.56-1.56 4.09 0 5.66l4.19 4.18zm6.78-1.81c1.53.71 3.68.21 5.27-1.38 1.91-1.91 2.28-4.65.81-6.12-1.46-1.46-4.2-1.1-6.12.81-1.59 1.59-2.09 3.74-1.38 5.27L3.7 19.87l1.41 1.41L12 14.41l6.88 6.88 1.41-1.41L13.41 13l1.47-1.47z" + }, + "children": [] + }] +}; +exports.ic_restaurant_menu_outline = ic_restaurant_menu_outline; \ No newline at end of file diff --git a/dist/md/ic_restaurant_menu_twotone.js b/dist/md/ic_restaurant_menu_twotone.js new file mode 100644 index 000000000..5bf071412 --- /dev/null +++ b/dist/md/ic_restaurant_menu_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_restaurant_menu_twotone = void 0; +var ic_restaurant_menu_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8.1 13.34l2.83-2.83L3.91 3.5c-1.56 1.56-1.56 4.09 0 5.66l4.19 4.18zm12.05-3.19c1.91-1.91 2.28-4.65.81-6.12-1.46-1.46-4.2-1.1-6.12.81-1.59 1.59-2.09 3.74-1.38 5.27L3.7 19.87l1.41 1.41L12 14.41l6.88 6.88 1.41-1.41L13.41 13l1.47-1.47c1.53.71 3.68.21 5.27-1.38z" + }, + "children": [] + }] +}; +exports.ic_restaurant_menu_twotone = ic_restaurant_menu_twotone; \ No newline at end of file diff --git a/dist/md/ic_restaurant_outline.js b/dist/md/ic_restaurant_outline.js new file mode 100644 index 000000000..079eea045 --- /dev/null +++ b/dist/md/ic_restaurant_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_restaurant_outline = void 0; +var ic_restaurant_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 6v8h3v8h2V2c-2.76 0-5 2.24-5 4zm-5 3H9V2H7v7H5V2H3v7c0 2.21 1.79 4 4 4v9h2v-9c2.21 0 4-1.79 4-4V2h-2v7z" + }, + "children": [] + }] +}; +exports.ic_restaurant_outline = ic_restaurant_outline; \ No newline at end of file diff --git a/dist/md/ic_restaurant_twotone.js b/dist/md/ic_restaurant_twotone.js new file mode 100644 index 000000000..8c1e2f127 --- /dev/null +++ b/dist/md/ic_restaurant_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_restaurant_twotone = void 0; +var ic_restaurant_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 6v8h3v8h2V2c-2.76 0-5 2.24-5 4zm-5 3H9V2H7v7H5V2H3v7c0 2.21 1.79 4 4 4v9h2v-9c2.21 0 4-1.79 4-4V2h-2v7z" + }, + "children": [] + }] +}; +exports.ic_restaurant_twotone = ic_restaurant_twotone; \ No newline at end of file diff --git a/dist/md/ic_restore.js b/dist/md/ic_restore.js new file mode 100644 index 000000000..bc0187ff2 --- /dev/null +++ b/dist/md/ic_restore.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_restore = void 0; +var ic_restore = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 3c-4.97 0-9 4.03-9 9H1l3.89 3.89.07.14L9 12H6c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.93 0-3.68-.79-4.94-2.06l-1.42 1.42C8.27 19.99 10.51 21 13 21c4.97 0 9-4.03 9-9s-4.03-9-9-9zm-1 5v5l4.28 2.54.72-1.21-3.5-2.08V8H12z" + }, + "children": [] + }] +}; +exports.ic_restore = ic_restore; \ No newline at end of file diff --git a/dist/md/ic_restore_from_trash.js b/dist/md/ic_restore_from_trash.js new file mode 100644 index 000000000..6c3e3bebb --- /dev/null +++ b/dist/md/ic_restore_from_trash.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_restore_from_trash = void 0; +var ic_restore_from_trash = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 4h-3.5l-1-1h-5l-1 1H5v2h14zM6 7v12c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6zm8 7v4h-4v-4H8l4-4 4 4h-2z" + }, + "children": [] + }] +}; +exports.ic_restore_from_trash = ic_restore_from_trash; \ No newline at end of file diff --git a/dist/md/ic_restore_from_trash_outline.js b/dist/md/ic_restore_from_trash_outline.js new file mode 100644 index 000000000..88d34a845 --- /dev/null +++ b/dist/md/ic_restore_from_trash_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_restore_from_trash_outline = void 0; +var ic_restore_from_trash_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.5 4l-1-1h-5l-1 1H5v2h14V4zM6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zm2-5V9h8v10H8v-5zm2 4h4v-4h2l-4-4-4 4h2z" + }, + "children": [] + }] +}; +exports.ic_restore_from_trash_outline = ic_restore_from_trash_outline; \ No newline at end of file diff --git a/dist/md/ic_restore_from_trash_twotone.js b/dist/md/ic_restore_from_trash_twotone.js new file mode 100644 index 000000000..e161cbba0 --- /dev/null +++ b/dist/md/ic_restore_from_trash_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_restore_from_trash_twotone = void 0; +var ic_restore_from_trash_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 14h-2v4h-4v-4H8v5h8zm0 0V9H8v5l4-4z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zm2-5V9h8v10H8v-5zm7.5-10l-1-1h-5l-1 1H5v2h14V4zM10 18h4v-4h2l-4-4-4 4h2z" + }, + "children": [] + }] +}; +exports.ic_restore_from_trash_twotone = ic_restore_from_trash_twotone; \ No newline at end of file diff --git a/dist/md/ic_restore_outline.js b/dist/md/ic_restore_outline.js new file mode 100644 index 000000000..4f0faf4f2 --- /dev/null +++ b/dist/md/ic_restore_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_restore_outline = void 0; +var ic_restore_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 3c-4.97 0-9 4.03-9 9H1l4 3.99L9 12H6c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.93 0-3.68-.79-4.94-2.06l-1.42 1.42C8.27 19.99 10.51 21 13 21c4.97 0 9-4.03 9-9s-4.03-9-9-9zm-1 5v5l4.25 2.52.77-1.28-3.52-2.09V8z" + }, + "children": [] + }] +}; +exports.ic_restore_outline = ic_restore_outline; \ No newline at end of file diff --git a/dist/md/ic_restore_page.js b/dist/md/ic_restore_page.js new file mode 100644 index 000000000..293d44d2e --- /dev/null +++ b/dist/md/ic_restore_page.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_restore_page = void 0; +var ic_restore_page = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm-2 16c-2.05 0-3.81-1.24-4.58-3h1.71c.63.9 1.68 1.5 2.87 1.5 1.93 0 3.5-1.57 3.5-3.5S13.93 9.5 12 9.5c-1.35 0-2.52.78-3.1 1.9l1.6 1.6h-4V9l1.3 1.3C8.69 8.92 10.23 8 12 8c2.76 0 5 2.24 5 5s-2.24 5-5 5z" + }, + "children": [] + }] +}; +exports.ic_restore_page = ic_restore_page; \ No newline at end of file diff --git a/dist/md/ic_restore_page_outline.js b/dist/md/ic_restore_page_outline.js new file mode 100644 index 000000000..e8cf29d28 --- /dev/null +++ b/dist/md/ic_restore_page_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_restore_page_outline = void 0; +var ic_restore_page_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm4 18H6V4h7.17L18 8.83V20zm-9.55-9.43L7.28 9.4V13h3.6l-1.44-1.44c.52-1.01 1.58-1.71 2.79-1.71 1.74 0 3.15 1.41 3.15 3.15s-1.41 3.15-3.15 3.15c-1.07 0-2.02-.54-2.58-1.35H8.1c.69 1.58 2.28 2.7 4.12 2.7 2.48 0 4.5-2.02 4.5-4.5s-2.02-4.5-4.5-4.5c-1.59 0-2.97.83-3.77 2.07z" + }, + "children": [] + }] +}; +exports.ic_restore_page_outline = ic_restore_page_outline; \ No newline at end of file diff --git a/dist/md/ic_restore_page_twotone.js b/dist/md/ic_restore_page_twotone.js new file mode 100644 index 000000000..8b291463a --- /dev/null +++ b/dist/md/ic_restore_page_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_restore_page_twotone = void 0; +var ic_restore_page_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 4v16h12V8.83L13.17 4H6zm10.72 9c0 2.48-2.02 4.5-4.5 4.5-1.84 0-3.43-1.12-4.12-2.7h1.54c.57.81 1.51 1.35 2.58 1.35 1.74 0 3.15-1.41 3.15-3.15s-1.41-3.15-3.15-3.15c-1.21 0-2.27.7-2.79 1.71L10.88 13h-3.6V9.4l1.17 1.17c.8-1.24 2.19-2.07 3.78-2.07 2.48 0 4.49 2.02 4.49 4.5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm4 18H6V4h7.17L18 8.83V20zm-9.55-9.43L7.28 9.4V13h3.6l-1.44-1.44c.52-1.01 1.58-1.71 2.79-1.71 1.74 0 3.15 1.41 3.15 3.15s-1.41 3.15-3.15 3.15c-1.07 0-2.02-.54-2.58-1.35H8.1c.69 1.58 2.28 2.7 4.12 2.7 2.48 0 4.5-2.02 4.5-4.5s-2.02-4.5-4.5-4.5c-1.59 0-2.97.83-3.77 2.07z" + }, + "children": [] + }] +}; +exports.ic_restore_page_twotone = ic_restore_page_twotone; \ No newline at end of file diff --git a/dist/md/ic_restore_twotone.js b/dist/md/ic_restore_twotone.js new file mode 100644 index 000000000..cadda3ef8 --- /dev/null +++ b/dist/md/ic_restore_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_restore_twotone = void 0; +var ic_restore_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 3c-4.97 0-9 4.03-9 9H1l4 3.99L9 12H6c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.93 0-3.68-.79-4.94-2.06l-1.42 1.42C8.27 19.99 10.51 21 13 21c4.97 0 9-4.03 9-9s-4.03-9-9-9zm-1 5v5l4.25 2.52.77-1.28-3.52-2.09V8z" + }, + "children": [] + }] +}; +exports.ic_restore_twotone = ic_restore_twotone; \ No newline at end of file diff --git a/dist/md/ic_rice_bowl.js b/dist/md/ic_rice_bowl.js new file mode 100644 index 000000000..ef67bcf9e --- /dev/null +++ b/dist/md/ic_rice_bowl.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_rice_bowl = void 0; +var ic_rice_bowl = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22,12L22,12c0-5.52-4.48-10-10-10S2,6.48,2,12c0,3.69,2.47,6.86,6,8.25V22h8v-1.75C19.53,18.86,22,15.69,22,12z M20,12h-4 V5.08C18.39,6.47,20,9.05,20,12z M14,4.26V12h-4V4.26C10.64,4.1,11.31,4,12,4S13.36,4.1,14,4.26z M4,12c0-2.95,1.61-5.53,4-6.92V12 H4z" + }, + "children": [] + }] +}; +exports.ic_rice_bowl = ic_rice_bowl; \ No newline at end of file diff --git a/dist/md/ic_rice_bowl_outline.js b/dist/md/ic_rice_bowl_outline.js new file mode 100644 index 000000000..62f77ffbe --- /dev/null +++ b/dist/md/ic_rice_bowl_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_rice_bowl_outline = void 0; +var ic_rice_bowl_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.66,14c-0.66,1.92-2.24,3.54-4.4,4.39L14,18.88V20h-4v-1.12l-1.27-0.5c-2.16-0.85-3.74-2.47-4.4-4.39H19.66 M12,2 C6.48,2,2,6.48,2,12c0,3.69,2.47,6.86,6,8.25V22h8v-1.75c3.53-1.39,6-4.56,6-8.25h0C22,6.48,17.52,2,12,2L12,2z M10,12V4.26 C10.64,4.1,11.31,4,12,4s1.36,0.1,2,0.26V12H10L10,12z M16,12V5.08c2.39,1.39,4,3.96,4,6.92H16L16,12z M4,12 c0-2.95,1.61-5.53,4-6.92V12H4L4,12z" + }, + "children": [] + }] +}; +exports.ic_rice_bowl_outline = ic_rice_bowl_outline; \ No newline at end of file diff --git a/dist/md/ic_rice_bowl_twotone.js b/dist/md/ic_rice_bowl_twotone.js new file mode 100644 index 000000000..761e2fcbc --- /dev/null +++ b/dist/md/ic_rice_bowl_twotone.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_rice_bowl_twotone = void 0; +var ic_rice_bowl_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.66,14c-0.66,1.92-2.24,3.54-4.4,4.39L14,18.88V20h-4v-1.12l-1.27-0.5c-2.16-0.85-3.74-2.47-4.4-4.39 H19.66", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.66,14c-0.66,1.92-2.24,3.54-4.4,4.39L14,18.88V20h-4v-1.12l-1.27-0.5c-2.16-0.85-3.74-2.47-4.4-4.39H19.66 M12,2 C6.48,2,2,6.48,2,12c0,3.69,2.47,6.86,6,8.25V22h8v-1.75c3.53-1.39,6-4.56,6-8.25h0C22,6.48,17.52,2,12,2L12,2z M10,12V4.26 C10.64,4.1,11.31,4,12,4s1.36,0.1,2,0.26V12H10L10,12z M16,12V5.08c2.39,1.39,4,3.96,4,6.92H16L16,12z M4,12 c0-2.95,1.61-5.53,4-6.92V12H4L4,12z" + }, + "children": [] + }] +}; +exports.ic_rice_bowl_twotone = ic_rice_bowl_twotone; \ No newline at end of file diff --git a/dist/md/ic_ring_volume.js b/dist/md/ic_ring_volume.js new file mode 100644 index 000000000..fb558e066 --- /dev/null +++ b/dist/md/ic_ring_volume.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_ring_volume = void 0; +var ic_ring_volume = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M23.71 16.67C20.66 13.78 16.54 12 12 12 7.46 12 3.34 13.78.29 16.67c-.18.18-.29.43-.29.71 0 .28.11.53.29.71l2.48 2.48c.18.18.43.29.71.29.27 0 .52-.11.7-.28.79-.74 1.69-1.36 2.66-1.85.33-.16.56-.5.56-.9v-3.1c1.45-.48 3-.73 4.6-.73s3.15.25 4.6.72v3.1c0 .39.23.74.56.9.98.49 1.87 1.12 2.66 1.85.18.18.43.28.7.28.28 0 .53-.11.71-.29l2.48-2.48c.18-.18.29-.43.29-.71 0-.27-.11-.52-.29-.7zM21.16 6.26l-1.41-1.41-3.56 3.55 1.41 1.41s3.45-3.52 3.56-3.55zM13 2h-2v5h2V2zM6.4 9.81L7.81 8.4 4.26 4.84 2.84 6.26c.11.03 3.56 3.55 3.56 3.55z" + }, + "children": [] + }] +}; +exports.ic_ring_volume = ic_ring_volume; \ No newline at end of file diff --git a/dist/md/ic_ring_volume_outline.js b/dist/md/ic_ring_volume_outline.js new file mode 100644 index 000000000..9fc59dfe1 --- /dev/null +++ b/dist/md/ic_ring_volume_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_ring_volume_outline = void 0; +var ic_ring_volume_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M23.71 16.67C20.66 13.78 16.54 12 12 12 7.46 12 3.34 13.78.29 16.67c-.18.18-.29.43-.29.71 0 .28.11.53.29.71l2.48 2.48c.18.18.43.29.71.29.27 0 .52-.11.7-.28.79-.74 1.69-1.36 2.66-1.85.33-.16.56-.5.56-.9v-3.1c1.45-.48 3-.73 4.6-.73 1.6 0 3.15.25 4.6.72v3.1c0 .39.23.74.56.9.98.49 1.87 1.12 2.66 1.85.18.18.43.28.7.28.28 0 .53-.11.71-.29l2.48-2.48c.18-.18.29-.43.29-.71 0-.27-.11-.52-.29-.7zm-18.31.56c-.66.37-1.29.8-1.87 1.27l-1.07-1.07c.91-.75 1.9-1.39 2.95-1.9v1.7zm15.07 1.26c-.59-.48-1.21-.9-1.87-1.27v-1.7c1.04.51 2.03 1.15 2.94 1.9l-1.07 1.07zm.69-12.23l-1.41-1.41-3.56 3.55 1.41 1.41s3.45-3.52 3.56-3.55zM11 2h2v5h-2zM6.4 9.81L7.81 8.4 4.26 4.84 2.84 6.26c.11.03 3.56 3.55 3.56 3.55z" + }, + "children": [] + }] +}; +exports.ic_ring_volume_outline = ic_ring_volume_outline; \ No newline at end of file diff --git a/dist/md/ic_ring_volume_twotone.js b/dist/md/ic_ring_volume_twotone.js new file mode 100644 index 000000000..511038f17 --- /dev/null +++ b/dist/md/ic_ring_volume_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_ring_volume_twotone = void 0; +var ic_ring_volume_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18.6 17.22c.66.37 1.28.79 1.87 1.27l1.07-1.07c-.91-.75-1.9-1.38-2.94-1.9v1.7zM3.53 18.5c.58-.47 1.21-.89 1.87-1.27v-1.71c-1.05.51-2.03 1.15-2.95 1.9l1.08 1.08z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 12C7.46 12 3.34 13.78.29 16.67c-.18.18-.29.43-.29.71 0 .28.11.53.29.71l2.48 2.48c.18.18.43.29.71.29.27 0 .52-.11.7-.28.79-.74 1.69-1.36 2.66-1.85.33-.16.56-.5.56-.9v-3.1c1.45-.48 3-.73 4.6-.73 1.6 0 3.15.25 4.6.72v3.1c0 .39.23.74.56.9.98.49 1.87 1.12 2.66 1.85.18.18.43.28.7.28.28 0 .53-.11.71-.29l2.48-2.48c.18-.18.29-.43.29-.71 0-.27-.11-.52-.29-.7C20.66 13.78 16.54 12 12 12zm-6.6 5.23c-.66.37-1.29.8-1.87 1.27l-1.07-1.07c.91-.75 1.9-1.39 2.95-1.9v1.7zm15.07 1.26c-.59-.48-1.21-.9-1.87-1.27v-1.7c1.04.51 2.03 1.15 2.94 1.9l-1.07 1.07zM16.19 8.4l1.41 1.41s3.45-3.52 3.56-3.55l-1.41-1.41-3.56 3.55zM11 2h2v5h-2zM6.4 9.81L7.81 8.4 4.26 4.84 2.84 6.26c.11.03 3.56 3.55 3.56 3.55z" + }, + "children": [] + }] +}; +exports.ic_ring_volume_twotone = ic_ring_volume_twotone; \ No newline at end of file diff --git a/dist/md/ic_roofing.js b/dist/md/ic_roofing.js new file mode 100644 index 000000000..48f4ed19e --- /dev/null +++ b/dist/md/ic_roofing.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_roofing = void 0; +var ic_roofing = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13,18h-2v-2h2V18z M15,14H9v6h6V14L15,14z M19,9.3L19,9.3V4h-3v2.6v0L12,3L2,12h3l7-6.31L19,12h3L19,9.3z" + }, + "children": [] + }] +}; +exports.ic_roofing = ic_roofing; \ No newline at end of file diff --git a/dist/md/ic_roofing_outline.js b/dist/md/ic_roofing_outline.js new file mode 100644 index 000000000..74b32af89 --- /dev/null +++ b/dist/md/ic_roofing_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_roofing_outline = void 0; +var ic_roofing_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13,18h-2v-2h2V18z M15,14H9v6h6V14L15,14z M19,9.3L19,9.3V4h-3v2.6v0L12,3L2,12h3l7-6.31L19,12h3L19,9.3z" + }, + "children": [] + }] +}; +exports.ic_roofing_outline = ic_roofing_outline; \ No newline at end of file diff --git a/dist/md/ic_roofing_twotone.js b/dist/md/ic_roofing_twotone.js new file mode 100644 index 000000000..4e31dfc1b --- /dev/null +++ b/dist/md/ic_roofing_twotone.js @@ -0,0 +1,35 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_roofing_twotone = void 0; +var ic_roofing_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "rect", + "attribs": { + "height": "2", + "opacity": ".3", + "width": "2", + "x": "11", + "y": "16" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13,18h-2v-2h2V18z M15,14H9v6h6V14L15,14z M19,9.3L19,9.3V4h-3v2.6v0L12,3L2,12h3l7-6.31L19,12h3L19,9.3z" + }, + "children": [] + }] +}; +exports.ic_roofing_twotone = ic_roofing_twotone; \ No newline at end of file diff --git a/dist/md/ic_room.js b/dist/md/ic_room.js new file mode 100644 index 000000000..bff63ef84 --- /dev/null +++ b/dist/md/ic_room.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_room = void 0; +var ic_room = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z" + }, + "children": [] + }] +}; +exports.ic_room = ic_room; \ No newline at end of file diff --git a/dist/md/ic_room_outline.js b/dist/md/ic_room_outline.js new file mode 100644 index 000000000..ad921f4e8 --- /dev/null +++ b/dist/md/ic_room_outline.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_room_outline = void 0; +var ic_room_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zM7 9c0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.88-2.88 7.19-5 9.88C9.92 16.21 7 11.85 7 9z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "9", + "r": "2.5" + }, + "children": [] + }] +}; +exports.ic_room_outline = ic_room_outline; \ No newline at end of file diff --git a/dist/md/ic_room_preferences.js b/dist/md/ic_room_preferences.js new file mode 100644 index 000000000..6d4ced601 --- /dev/null +++ b/dist/md/ic_room_preferences.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_room_preferences = void 0; +var ic_room_preferences = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M14,11.26V6h3v4h2V4h-5V3H5v16H3v2h9.26C11.47,19.87,11,18.49,11,17C11,14.62,12.19,12.53,14,11.26z M10,11h2v2h-2V11z M21.69,16.37l1.14-1l-1-1.73l-1.45,0.49c-0.32-0.27-0.68-0.48-1.08-0.63L19,12h-2l-0.3,1.49c-0.4,0.15-0.76,0.36-1.08,0.63 l-1.45-0.49l-1,1.73l1.14,1c-0.08,0.5-0.08,0.76,0,1.26l-1.14,1l1,1.73l1.45-0.49c0.32,0.27,0.68,0.48,1.08,0.63L17,22h2l0.3-1.49 c0.4-0.15,0.76-0.36,1.08-0.63l1.45,0.49l1-1.73l-1.14-1C21.77,17.13,21.77,16.87,21.69,16.37z M18,19c-1.1,0-2-0.9-2-2s0.9-2,2-2 s2,0.9,2,2S19.1,19,18,19z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14,11.26V6h3v4h2V4h-5V3H5v16H3v2h9.26C11.47,19.87,11,18.49,11,17C11,14.62,12.19,12.53,14,11.26z M10,11h2v2h-2V11z M21.69,16.37l1.14-1l-1-1.73l-1.45,0.49c-0.32-0.27-0.68-0.48-1.08-0.63L19,12h-2l-0.3,1.49c-0.4,0.15-0.76,0.36-1.08,0.63 l-1.45-0.49l-1,1.73l1.14,1c-0.08,0.5-0.08,0.76,0,1.26l-1.14,1l1,1.73l1.45-0.49c0.32,0.27,0.68,0.48,1.08,0.63L17,22h2l0.3-1.49 c0.4-0.15,0.76-0.36,1.08-0.63l1.45,0.49l1-1.73l-1.14-1C21.77,17.13,21.77,16.87,21.69,16.37z M18,19c-1.1,0-2-0.9-2-2s0.9-2,2-2 s2,0.9,2,2S19.1,19,18,19z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_room_preferences = ic_room_preferences; \ No newline at end of file diff --git a/dist/md/ic_room_preferences_outline.js b/dist/md/ic_room_preferences_outline.js new file mode 100644 index 000000000..0f2e6bdef --- /dev/null +++ b/dist/md/ic_room_preferences_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_room_preferences_outline = void 0; +var ic_room_preferences_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M21.69,16.37l1.14-1l-1-1.73l-1.45,0.49c-0.32-0.27-0.68-0.48-1.08-0.63L19,12h-2l-0.3,1.49c-0.4,0.15-0.76,0.36-1.08,0.63 l-1.45-0.49l-1,1.73l1.14,1c-0.08,0.5-0.08,0.76,0,1.26l-1.14,1l1,1.73l1.45-0.49c0.32,0.27,0.68,0.48,1.08,0.63L17,22h2l0.3-1.49 c0.4-0.15,0.76-0.36,1.08-0.63l1.45,0.49l1-1.73l-1.14-1C21.77,17.13,21.77,16.87,21.69,16.37z M18,19c-1.1,0-2-0.9-2-2s0.9-2,2-2 s2,0.9,2,2S19.1,19,18,19z M19,4v6h-2V6h-2v6h-2V5H7v14h5v2H3v-2h2V3h10v1H19z M12,13h-2v-2h2V13z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21.69,16.37l1.14-1l-1-1.73l-1.45,0.49c-0.32-0.27-0.68-0.48-1.08-0.63L19,12h-2l-0.3,1.49c-0.4,0.15-0.76,0.36-1.08,0.63 l-1.45-0.49l-1,1.73l1.14,1c-0.08,0.5-0.08,0.76,0,1.26l-1.14,1l1,1.73l1.45-0.49c0.32,0.27,0.68,0.48,1.08,0.63L17,22h2l0.3-1.49 c0.4-0.15,0.76-0.36,1.08-0.63l1.45,0.49l1-1.73l-1.14-1C21.77,17.13,21.77,16.87,21.69,16.37z M18,19c-1.1,0-2-0.9-2-2s0.9-2,2-2 s2,0.9,2,2S19.1,19,18,19z M19,4v6h-2V6h-2v6h-2V5H7v14h5v2H3v-2h2V3h10v1H19z M12,13h-2v-2h2V13z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_room_preferences_outline = ic_room_preferences_outline; \ No newline at end of file diff --git a/dist/md/ic_room_preferences_twotone.js b/dist/md/ic_room_preferences_twotone.js new file mode 100644 index 000000000..2427f1c9b --- /dev/null +++ b/dist/md/ic_room_preferences_twotone.js @@ -0,0 +1,59 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_room_preferences_twotone = void 0; +var ic_room_preferences_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M13,12.11V5H7v14h4.29C11.1,18.37,11,17.7,11,17C11,15.09,11.76,13.37,13,12.11 z M10,11h2v2h-2V11z", + "enable-background": "new", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M13,12.11V5H7v14h4.29C11.1,18.37,11,17.7,11,17C11,15.09,11.76,13.37,13,12.11 z M10,11h2v2h-2V11z", + "enable-background": "new", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M12,13h-2v-2h2V13z M7,19V5h6v7.11c0.57-0.59,1.25-1.07,2-1.42V6h2v4h1h1V4h-4V3H5v16H3v2h9.26c-0.42-0.6-0.75-1.28-0.97-2 H7z M21.69,17.63l1.14,1l-1,1.73l-1.45-0.49c-0.32,0.27-0.68,0.48-1.08,0.63L19,22h-2l-0.3-1.49c-0.4-0.15-0.76-0.36-1.08-0.63 l-1.45,0.49l-1-1.73l1.14-1c-0.08-0.5-0.08-0.76,0-1.26l-1.14-1l1-1.73l1.45,0.49c0.32-0.27,0.68-0.48,1.08-0.63L17,12h2l0.3,1.49 c0.4,0.15,0.76,0.36,1.08,0.63l1.45-0.49l1,1.73l-1.14,1C21.77,16.87,21.77,17.13,21.69,17.63z M20,17c0-1.1-0.9-2-2-2s-2,0.9-2,2 s0.9,2,2,2S20,18.1,20,17z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,13h-2v-2h2V13z M7,19V5h6v7.11c0.57-0.59,1.25-1.07,2-1.42V6h2v4h1h1V4h-4V3H5v16H3v2h9.26c-0.42-0.6-0.75-1.28-0.97-2 H7z M21.69,17.63l1.14,1l-1,1.73l-1.45-0.49c-0.32,0.27-0.68,0.48-1.08,0.63L19,22h-2l-0.3-1.49c-0.4-0.15-0.76-0.36-1.08-0.63 l-1.45,0.49l-1-1.73l1.14-1c-0.08-0.5-0.08-0.76,0-1.26l-1.14-1l1-1.73l1.45,0.49c0.32-0.27,0.68-0.48,1.08-0.63L17,12h2l0.3,1.49 c0.4,0.15,0.76,0.36,1.08,0.63l1.45-0.49l1,1.73l-1.14,1C21.77,16.87,21.77,17.13,21.69,17.63z M20,17c0-1.1-0.9-2-2-2s-2,0.9-2,2 s0.9,2,2,2S20,18.1,20,17z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_room_preferences_twotone = ic_room_preferences_twotone; \ No newline at end of file diff --git a/dist/md/ic_room_service.js b/dist/md/ic_room_service.js new file mode 100644 index 000000000..04712cdad --- /dev/null +++ b/dist/md/ic_room_service.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_room_service = void 0; +var ic_room_service = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M2 17h20v2H2zm11.84-9.21c.1-.24.16-.51.16-.79 0-1.1-.9-2-2-2s-2 .9-2 2c0 .28.06.55.16.79C6.25 8.6 3.27 11.93 3 16h18c-.27-4.07-3.25-7.4-7.16-8.21z" + }, + "children": [] + }] +}; +exports.ic_room_service = ic_room_service; \ No newline at end of file diff --git a/dist/md/ic_room_service_outline.js b/dist/md/ic_room_service_outline.js new file mode 100644 index 000000000..b3420b944 --- /dev/null +++ b/dist/md/ic_room_service_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_room_service_outline = void 0; +var ic_room_service_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18.98 17H2v2h20v-2zM21 16c-.27-4.07-3.25-7.4-7.16-8.21.1-.24.16-.51.16-.79 0-1.1-.9-2-2-2s-2 .9-2 2c0 .28.06.55.16.79C6.25 8.6 3.27 11.93 3 16h18zm-9-6.42c2.95 0 5.47 1.83 6.5 4.41h-13c1.03-2.58 3.55-4.41 6.5-4.41z" + }, + "children": [] + }] +}; +exports.ic_room_service_outline = ic_room_service_outline; \ No newline at end of file diff --git a/dist/md/ic_room_service_twotone.js b/dist/md/ic_room_service_twotone.js new file mode 100644 index 000000000..bd3bec58d --- /dev/null +++ b/dist/md/ic_room_service_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_room_service_twotone = void 0; +var ic_room_service_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 9.58c-2.95 0-5.47 1.83-6.5 4.41h13c-1.03-2.58-3.55-4.41-6.5-4.41z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M2 17h20v2H2zm11.84-9.21c.1-.24.16-.51.16-.79 0-1.1-.9-2-2-2s-2 .9-2 2c0 .28.06.55.16.79C6.25 8.6 3.27 11.93 3 16h18c-.27-4.07-3.25-7.4-7.16-8.21zM12 9.58c2.95 0 5.47 1.83 6.5 4.41h-13c1.03-2.58 3.55-4.41 6.5-4.41z" + }, + "children": [] + }] +}; +exports.ic_room_service_twotone = ic_room_service_twotone; \ No newline at end of file diff --git a/dist/md/ic_room_twotone.js b/dist/md/ic_room_twotone.js new file mode 100644 index 000000000..d4ff6cb47 --- /dev/null +++ b/dist/md/ic_room_twotone.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_room_twotone = void 0; +var ic_room_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4C9.24 4 7 6.24 7 9c0 2.85 2.92 7.21 5 9.88 2.11-2.69 5-7 5-9.88 0-2.76-2.24-5-5-5zm0 7.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zM7 9c0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.88-2.88 7.19-5 9.88C9.92 16.21 7 11.85 7 9z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "9", + "r": "2.5" + }, + "children": [] + }] +}; +exports.ic_room_twotone = ic_room_twotone; \ No newline at end of file diff --git a/dist/md/ic_rotate_90_degrees_ccw.js b/dist/md/ic_rotate_90_degrees_ccw.js new file mode 100644 index 000000000..f274e3ab9 --- /dev/null +++ b/dist/md/ic_rotate_90_degrees_ccw.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_rotate_90_degrees_ccw = void 0; +var ic_rotate_90_degrees_ccw = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7.34 6.41L.86 12.9l6.49 6.48 6.49-6.48-6.5-6.49zM3.69 12.9l3.66-3.66L11 12.9l-3.66 3.66-3.65-3.66zm15.67-6.26C17.61 4.88 15.3 4 13 4V.76L8.76 5 13 9.24V6c1.79 0 3.58.68 4.95 2.05 2.73 2.73 2.73 7.17 0 9.9C16.58 19.32 14.79 20 13 20c-.97 0-1.94-.21-2.84-.61l-1.49 1.49C10.02 21.62 11.51 22 13 22c2.3 0 4.61-.88 6.36-2.64 3.52-3.51 3.52-9.21 0-12.72z" + }, + "children": [] + }] +}; +exports.ic_rotate_90_degrees_ccw = ic_rotate_90_degrees_ccw; \ No newline at end of file diff --git a/dist/md/ic_rotate_90_degrees_ccw_outline.js b/dist/md/ic_rotate_90_degrees_ccw_outline.js new file mode 100644 index 000000000..476f63556 --- /dev/null +++ b/dist/md/ic_rotate_90_degrees_ccw_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_rotate_90_degrees_ccw_outline = void 0; +var ic_rotate_90_degrees_ccw_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7.34 6.41L.86 12.9l6.49 6.48 6.49-6.48-6.5-6.49zM3.69 12.9l3.66-3.66L11 12.9l-3.66 3.66-3.65-3.66zm15.67-6.26C17.61 4.88 15.3 4 13 4V.76L8.76 5 13 9.24V6c1.79 0 3.58.68 4.95 2.05 2.73 2.73 2.73 7.17 0 9.9C16.58 19.32 14.79 20 13 20c-.97 0-1.94-.21-2.84-.61l-1.49 1.49C10.02 21.62 11.51 22 13 22c2.3 0 4.61-.88 6.36-2.64 3.52-3.51 3.52-9.21 0-12.72z" + }, + "children": [] + }] +}; +exports.ic_rotate_90_degrees_ccw_outline = ic_rotate_90_degrees_ccw_outline; \ No newline at end of file diff --git a/dist/md/ic_rotate_90_degrees_ccw_twotone.js b/dist/md/ic_rotate_90_degrees_ccw_twotone.js new file mode 100644 index 000000000..aa946b212 --- /dev/null +++ b/dist/md/ic_rotate_90_degrees_ccw_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_rotate_90_degrees_ccw_twotone = void 0; +var ic_rotate_90_degrees_ccw_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7.35 9.24L3.69 12.9l3.65 3.66L11 12.9z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7.34 6.41L.86 12.9l6.49 6.48 6.49-6.48-6.5-6.49zm0 10.15L3.69 12.9l3.66-3.66L11 12.9l-3.66 3.66zm12.02-9.92C17.61 4.88 15.3 4 13 4V.76L8.76 5 13 9.24V6c1.79 0 3.58.68 4.95 2.05 2.73 2.73 2.73 7.17 0 9.9C16.58 19.32 14.79 20 13 20c-.97 0-1.94-.21-2.84-.61l-1.49 1.49C10.02 21.62 11.51 22 13 22c2.3 0 4.61-.88 6.36-2.64 3.52-3.51 3.52-9.21 0-12.72z" + }, + "children": [] + }] +}; +exports.ic_rotate_90_degrees_ccw_twotone = ic_rotate_90_degrees_ccw_twotone; \ No newline at end of file diff --git a/dist/md/ic_rotate_left.js b/dist/md/ic_rotate_left.js new file mode 100644 index 000000000..53753025f --- /dev/null +++ b/dist/md/ic_rotate_left.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_rotate_left = void 0; +var ic_rotate_left = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7.11 8.53L5.7 7.11C4.8 8.27 4.24 9.61 4.07 11h2.02c.14-.87.49-1.72 1.02-2.47zM6.09 13H4.07c.17 1.39.72 2.73 1.62 3.89l1.41-1.42c-.52-.75-.87-1.59-1.01-2.47zm1.01 5.32c1.16.9 2.51 1.44 3.9 1.61V17.9c-.87-.15-1.71-.49-2.46-1.03L7.1 18.32zM13 4.07V1L8.45 5.55 13 10V6.09c2.84.48 5 2.94 5 5.91s-2.16 5.43-5 5.91v2.02c3.95-.49 7-3.85 7-7.93s-3.05-7.44-7-7.93z" + }, + "children": [] + }] +}; +exports.ic_rotate_left = ic_rotate_left; \ No newline at end of file diff --git a/dist/md/ic_rotate_left_outline.js b/dist/md/ic_rotate_left_outline.js new file mode 100644 index 000000000..33a38af65 --- /dev/null +++ b/dist/md/ic_rotate_left_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_rotate_left_outline = void 0; +var ic_rotate_left_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7.11 8.53L5.7 7.11C4.8 8.27 4.24 9.61 4.07 11h2.02c.14-.87.49-1.72 1.02-2.47zM6.09 13H4.07c.17 1.39.72 2.73 1.62 3.89l1.41-1.42c-.52-.75-.87-1.59-1.01-2.47zm1.01 5.32c1.16.9 2.51 1.44 3.9 1.61V17.9c-.87-.15-1.71-.49-2.46-1.03L7.1 18.32zM13 4.07V1L8.45 5.55 13 10V6.09c2.84.48 5 2.94 5 5.91s-2.16 5.43-5 5.91v2.02c3.95-.49 7-3.85 7-7.93s-3.05-7.44-7-7.93z" + }, + "children": [] + }] +}; +exports.ic_rotate_left_outline = ic_rotate_left_outline; \ No newline at end of file diff --git a/dist/md/ic_rotate_left_twotone.js b/dist/md/ic_rotate_left_twotone.js new file mode 100644 index 000000000..2cf4336fa --- /dev/null +++ b/dist/md/ic_rotate_left_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_rotate_left_twotone = void 0; +var ic_rotate_left_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 17.91v2.02c3.95-.49 7-3.85 7-7.93s-3.05-7.44-7-7.93V1L8.45 5.55 13 10V6.09c2.84.48 5 2.94 5 5.91s-2.16 5.43-5 5.91zm-7.31-1.02l1.41-1.42c-.52-.75-.87-1.59-1.01-2.47H4.07c.17 1.39.72 2.73 1.62 3.89zm1.42-8.36L5.7 7.11C4.8 8.27 4.24 9.61 4.07 11h2.02c.14-.87.49-1.72 1.02-2.47zM11 17.9c-.87-.15-1.71-.49-2.46-1.03L7.1 18.32c1.16.9 2.51 1.44 3.9 1.61V17.9z" + }, + "children": [] + }] +}; +exports.ic_rotate_left_twotone = ic_rotate_left_twotone; \ No newline at end of file diff --git a/dist/md/ic_rotate_right.js b/dist/md/ic_rotate_right.js new file mode 100644 index 000000000..bde45e4ce --- /dev/null +++ b/dist/md/ic_rotate_right.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_rotate_right = void 0; +var ic_rotate_right = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.55 5.55L11 1v3.07C7.06 4.56 4 7.92 4 12s3.05 7.44 7 7.93v-2.02c-2.84-.48-5-2.94-5-5.91s2.16-5.43 5-5.91V10l4.55-4.45zM19.93 11c-.17-1.39-.72-2.73-1.62-3.89l-1.42 1.42c.54.75.88 1.6 1.02 2.47h2.02zM13 17.9v2.02c1.39-.17 2.74-.71 3.9-1.61l-1.44-1.44c-.75.54-1.59.89-2.46 1.03zm3.89-2.42l1.42 1.41c.9-1.16 1.45-2.5 1.62-3.89h-2.02c-.14.87-.48 1.72-1.02 2.48z" + }, + "children": [] + }] +}; +exports.ic_rotate_right = ic_rotate_right; \ No newline at end of file diff --git a/dist/md/ic_rotate_right_outline.js b/dist/md/ic_rotate_right_outline.js new file mode 100644 index 000000000..1d8a13b27 --- /dev/null +++ b/dist/md/ic_rotate_right_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_rotate_right_outline = void 0; +var ic_rotate_right_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.55 5.55L11 1v3.07C7.06 4.56 4 7.92 4 12s3.05 7.44 7 7.93v-2.02c-2.84-.48-5-2.94-5-5.91s2.16-5.43 5-5.91V10l4.55-4.45zM19.93 11c-.17-1.39-.72-2.73-1.62-3.89l-1.42 1.42c.54.75.88 1.6 1.02 2.47h2.02zM13 17.9v2.02c1.39-.17 2.74-.71 3.9-1.61l-1.44-1.44c-.75.54-1.59.89-2.46 1.03zm3.89-2.42l1.42 1.41c.9-1.16 1.45-2.5 1.62-3.89h-2.02c-.14.87-.48 1.72-1.02 2.48z" + }, + "children": [] + }] +}; +exports.ic_rotate_right_outline = ic_rotate_right_outline; \ No newline at end of file diff --git a/dist/md/ic_rotate_right_twotone.js b/dist/md/ic_rotate_right_twotone.js new file mode 100644 index 000000000..6c6766269 --- /dev/null +++ b/dist/md/ic_rotate_right_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_rotate_right_twotone = void 0; +var ic_rotate_right_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.93 11c-.17-1.39-.72-2.73-1.62-3.89l-1.42 1.42c.54.75.88 1.6 1.02 2.47h2.02zM11 1v3.07C7.06 4.56 4 7.92 4 12s3.05 7.44 7 7.93v-2.02c-2.84-.48-5-2.94-5-5.91s2.16-5.43 5-5.91V10l4.55-4.45L11 1zm4.46 15.87c-.75.54-1.59.89-2.46 1.03v2.02c1.39-.17 2.74-.71 3.9-1.61l-1.44-1.44zm2.85.02c.9-1.16 1.45-2.5 1.62-3.89h-2.02c-.14.87-.48 1.72-1.02 2.48l1.42 1.41z" + }, + "children": [] + }] +}; +exports.ic_rotate_right_twotone = ic_rotate_right_twotone; \ No newline at end of file diff --git a/dist/md/ic_rounded_corner.js b/dist/md/ic_rounded_corner.js new file mode 100644 index 000000000..96ffe715c --- /dev/null +++ b/dist/md/ic_rounded_corner.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_rounded_corner = void 0; +var ic_rounded_corner = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,19h2v2h-2V19z M19,17h2v-2h-2V17z M3,13h2v-2H3V13z M3,17h2v-2H3V17z M3,9h2V7H3V9z M3,5h2V3H3V5z M7,5h2V3H7V5z M15,21h2v-2h-2V21z M11,21h2v-2h-2V21z M15,21h2v-2h-2V21z M7,21h2v-2H7V21z M3,21h2v-2H3V21z M21,8c0-2.76-2.24-5-5-5h-5v2h5 c1.65,0,3,1.35,3,3v5h2V8z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,19h2v2h-2V19z M19,17h2v-2h-2V17z M3,13h2v-2H3V13z M3,17h2v-2H3V17z M3,9h2V7H3V9z M3,5h2V3H3V5z M7,5h2V3H7V5z M15,21h2v-2h-2V21z M11,21h2v-2h-2V21z M15,21h2v-2h-2V21z M7,21h2v-2H7V21z M3,21h2v-2H3V21z M21,8c0-2.76-2.24-5-5-5h-5v2h5 c1.65,0,3,1.35,3,3v5h2V8z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_rounded_corner = ic_rounded_corner; \ No newline at end of file diff --git a/dist/md/ic_rounded_corner_outline.js b/dist/md/ic_rounded_corner_outline.js new file mode 100644 index 000000000..538f551d1 --- /dev/null +++ b/dist/md/ic_rounded_corner_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_rounded_corner_outline = void 0; +var ic_rounded_corner_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 19h2v2h-2v-2zm0-2h2v-2h-2v2zM3 13h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm0-4h2V3H3v2zm4 0h2V3H7v2zm8 16h2v-2h-2v2zm-4 0h2v-2h-2v2zm4 0h2v-2h-2v2zm-8 0h2v-2H7v2zm-4 0h2v-2H3v2zM21 8c0-2.76-2.24-5-5-5h-5v2h5c1.65 0 3 1.35 3 3v5h2V8z" + }, + "children": [] + }] +}; +exports.ic_rounded_corner_outline = ic_rounded_corner_outline; \ No newline at end of file diff --git a/dist/md/ic_rounded_corner_twotone.js b/dist/md/ic_rounded_corner_twotone.js new file mode 100644 index 000000000..b8d4f9ac4 --- /dev/null +++ b/dist/md/ic_rounded_corner_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_rounded_corner_twotone = void 0; +var ic_rounded_corner_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 19h2v2h-2v-2zm0-2h2v-2h-2v2zM3 13h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm0-4h2V3H3v2zm4 0h2V3H7v2zm8 16h2v-2h-2v2zm-4 0h2v-2h-2v2zm4 0h2v-2h-2v2zm-8 0h2v-2H7v2zm-4 0h2v-2H3v2zM21 8c0-2.76-2.24-5-5-5h-5v2h5c1.65 0 3 1.35 3 3v5h2V8z" + }, + "children": [] + }] +}; +exports.ic_rounded_corner_twotone = ic_rounded_corner_twotone; \ No newline at end of file diff --git a/dist/md/ic_router.js b/dist/md/ic_router.js new file mode 100644 index 000000000..c1cdce0ba --- /dev/null +++ b/dist/md/ic_router.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_router = void 0; +var ic_router = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20.2 5.9l.8-.8C19.6 3.7 17.8 3 16 3s-3.6.7-5 2.1l.8.8C13 4.8 14.5 4.2 16 4.2s3 .6 4.2 1.7zm-.9.8c-.9-.9-2.1-1.4-3.3-1.4s-2.4.5-3.3 1.4l.8.8c.7-.7 1.6-1 2.5-1 .9 0 1.8.3 2.5 1l.8-.8zM19 13h-2V9h-2v4H5c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-4c0-1.1-.9-2-2-2zM8 18H6v-2h2v2zm3.5 0h-2v-2h2v2zm3.5 0h-2v-2h2v2z" + }, + "children": [] + }] +}; +exports.ic_router = ic_router; \ No newline at end of file diff --git a/dist/md/ic_router_outline.js b/dist/md/ic_router_outline.js new file mode 100644 index 000000000..ac32ca816 --- /dev/null +++ b/dist/md/ic_router_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_router_outline = void 0; +var ic_router_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0zm0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 4.2c1.5 0 3 .6 4.2 1.7l.8-.8C19.6 3.7 17.8 3 16 3s-3.6.7-5 2.1l.8.8C13 4.8 14.5 4.2 16 4.2zm-3.3 2.5l.8.8c.7-.7 1.6-1 2.5-1s1.8.3 2.5 1l.8-.8c-.9-.9-2.1-1.4-3.3-1.4s-2.4.5-3.3 1.4zM19 13h-2V9h-2v4H5c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-4c0-1.1-.9-2-2-2zm0 6H5v-4h14v4zM6 16h2v2H6zm3.5 0h2v2h-2zm3.5 0h2v2h-2z" + }, + "children": [] + }] +}; +exports.ic_router_outline = ic_router_outline; \ No newline at end of file diff --git a/dist/md/ic_router_twotone.js b/dist/md/ic_router_twotone.js new file mode 100644 index 000000000..367a6f984 --- /dev/null +++ b/dist/md/ic_router_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_router_twotone = void 0; +var ic_router_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0zm0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 15H5v4h14v-4h-4zm-7 3H6v-2h2v2zm3.5 0h-2v-2h2v2zm3.5 0h-2v-2h2v2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 4.2c1.5 0 3 .6 4.2 1.7l.8-.8C19.6 3.7 17.8 3 16 3s-3.6.7-5 2.1l.8.8C13 4.8 14.5 4.2 16 4.2zm-3.3 2.5l.8.8c.7-.7 1.6-1 2.5-1s1.8.3 2.5 1l.8-.8c-.9-.9-2.1-1.4-3.3-1.4s-2.4.5-3.3 1.4zM19 13h-2V9h-2v4H5c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-4c0-1.1-.9-2-2-2zm0 6H5v-4h14v4zM6 16h2v2H6zm3.5 0h2v2h-2zm3.5 0h2v2h-2z" + }, + "children": [] + }] +}; +exports.ic_router_twotone = ic_router_twotone; \ No newline at end of file diff --git a/dist/md/ic_rowing.js b/dist/md/ic_rowing.js new file mode 100644 index 000000000..57c79dae3 --- /dev/null +++ b/dist/md/ic_rowing.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_rowing = void 0; +var ic_rowing = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M8.5,14.5L4,19l1.5,1.5L9,17h2L8.5,14.5z M15,1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S16.1,1,15,1z M21,21.01L18,24 l-2.99-3.01V19.5l-7.1-7.09C7.6,12.46,7.3,12.48,7,12.48v-2.16c1.66,0.03,3.61-0.87,4.67-2.04l1.4-1.55 C13.42,6.34,14.06,6,14.72,6h0.03C15.99,6.01,17,7.02,17,8.26v5.75c0,0.84-0.35,1.61-0.92,2.16l-3.58-3.58v-2.27 c-0.63,0.52-1.43,1.02-2.29,1.39L16.5,18H18L21,21.01z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M8.5,14.5L4,19l1.5,1.5L9,17h2L8.5,14.5z M15,1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S16.1,1,15,1z M21,21.01L18,24 l-2.99-3.01V19.5l-7.1-7.09C7.6,12.46,7.3,12.48,7,12.48v-2.16c1.66,0.03,3.61-0.87,4.67-2.04l1.4-1.55 C13.42,6.34,14.06,6,14.72,6h0.03C15.99,6.01,17,7.02,17,8.26v5.75c0,0.84-0.35,1.61-0.92,2.16l-3.58-3.58v-2.27 c-0.63,0.52-1.43,1.02-2.29,1.39L16.5,18H18L21,21.01z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_rowing = ic_rowing; \ No newline at end of file diff --git a/dist/md/ic_rowing_outline.js b/dist/md/ic_rowing_outline.js new file mode 100644 index 000000000..d181dbd7f --- /dev/null +++ b/dist/md/ic_rowing_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_rowing_outline = void 0; +var ic_rowing_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8.5 14.5L4 19l1.5 1.5L9 17h2l-2.5-2.5zM15 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 20.01L18 24l-2.99-3.01V19.5l-7.1-7.09c-.31.05-.61.07-.91.07v-2.16c1.66.03 3.61-.87 4.67-2.04l1.4-1.55c.19-.21.43-.38.69-.5.29-.14.62-.23.96-.23h.03C15.99 6.01 17 7.02 17 8.26v5.75c0 .84-.35 1.61-.92 2.16l-3.58-3.58v-2.27c-.63.52-1.43 1.02-2.29 1.39L16.5 18H18l3 3.01z" + }, + "children": [] + }] +}; +exports.ic_rowing_outline = ic_rowing_outline; \ No newline at end of file diff --git a/dist/md/ic_rowing_twotone.js b/dist/md/ic_rowing_twotone.js new file mode 100644 index 000000000..92577b1f1 --- /dev/null +++ b/dist/md/ic_rowing_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_rowing_twotone = void 0; +var ic_rowing_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8.5 14.5L4 19l1.5 1.5L9 17h2l-2.5-2.5zM15 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 20.01L18 24l-2.99-3.01V19.5l-7.1-7.09c-.31.05-.61.07-.91.07v-2.16c1.66.03 3.61-.87 4.67-2.04l1.4-1.55c.19-.21.43-.38.69-.5.29-.14.62-.23.96-.23h.03C15.99 6.01 17 7.02 17 8.26v5.75c0 .84-.35 1.61-.92 2.16l-3.58-3.58v-2.27c-.63.52-1.43 1.02-2.29 1.39L16.5 18H18l3 3.01z" + }, + "children": [] + }] +}; +exports.ic_rowing_twotone = ic_rowing_twotone; \ No newline at end of file diff --git a/dist/md/ic_rss_feed.js b/dist/md/ic_rss_feed.js new file mode 100644 index 000000000..5853e8160 --- /dev/null +++ b/dist/md/ic_rss_feed.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_rss_feed = void 0; +var ic_rss_feed = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "6.18", + "cy": "17.82", + "r": "2.18" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 4.44v2.83c7.03 0 12.73 5.7 12.73 12.73h2.83c0-8.59-6.97-15.56-15.56-15.56zm0 5.66v2.83c3.9 0 7.07 3.17 7.07 7.07h2.83c0-5.47-4.43-9.9-9.9-9.9z" + }, + "children": [] + }] +}; +exports.ic_rss_feed = ic_rss_feed; \ No newline at end of file diff --git a/dist/md/ic_rss_feed_outline.js b/dist/md/ic_rss_feed_outline.js new file mode 100644 index 000000000..1891ad2f3 --- /dev/null +++ b/dist/md/ic_rss_feed_outline.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_rss_feed_outline = void 0; +var ic_rss_feed_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "6.18", + "cy": "17.82", + "r": "2.18" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 4.44v2.83c7.03 0 12.73 5.7 12.73 12.73h2.83c0-8.59-6.97-15.56-15.56-15.56zm0 5.66v2.83c3.9 0 7.07 3.17 7.07 7.07h2.83c0-5.47-4.43-9.9-9.9-9.9z" + }, + "children": [] + }] +}; +exports.ic_rss_feed_outline = ic_rss_feed_outline; \ No newline at end of file diff --git a/dist/md/ic_rss_feed_twotone.js b/dist/md/ic_rss_feed_twotone.js new file mode 100644 index 000000000..fc25e5436 --- /dev/null +++ b/dist/md/ic_rss_feed_twotone.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_rss_feed_twotone = void 0; +var ic_rss_feed_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "6.18", + "cy": "17.82", + "r": "2.18" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 4.44v2.83c7.03 0 12.73 5.7 12.73 12.73h2.83c0-8.59-6.97-15.56-15.56-15.56zm0 5.66v2.83c3.9 0 7.07 3.17 7.07 7.07h2.83c0-5.47-4.43-9.9-9.9-9.9z" + }, + "children": [] + }] +}; +exports.ic_rss_feed_twotone = ic_rss_feed_twotone; \ No newline at end of file diff --git a/dist/md/ic_rtt.js b/dist/md/ic_rtt.js new file mode 100644 index 000000000..d31266df5 --- /dev/null +++ b/dist/md/ic_rtt.js @@ -0,0 +1,28 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_rtt = void 0; +var ic_rtt = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "title", + "attribs": {}, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9.03 3l-1.11 7.07h2.62l.7-4.5h2.58L11.8 18.43H9.47L9.06 21h7.27l.4-2.57h-2.35l2-12.86h2.58l-.71 4.5h2.65L22 3H9.03zM8 5H4l-.31 2h4L8 5zm-.61 4h-4l-.31 2h4l.31-2zm.92 8h-6L2 19h6l.31-2zm.62-4h-6l-.31 2h6.01l.3-2z" + }, + "children": [] + }] +}; +exports.ic_rtt = ic_rtt; \ No newline at end of file diff --git a/dist/md/ic_rule.js b/dist/md/ic_rule.js new file mode 100644 index 000000000..2fe8f8d68 --- /dev/null +++ b/dist/md/ic_rule.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_rule = void 0; +var ic_rule = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M16.54,11L13,7.46l1.41-1.41l2.12,2.12l4.24-4.24l1.41,1.41L16.54,11z M11,7H2v2h9V7z M21,13.41L19.59,12L17,14.59 L14.41,12L13,13.41L15.59,16L13,18.59L14.41,20L17,17.41L19.59,20L21,18.59L18.41,16L21,13.41z M11,15H2v2h9V15z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M16.54,11L13,7.46l1.41-1.41l2.12,2.12l4.24-4.24l1.41,1.41L16.54,11z M11,7H2v2h9V7z M21,13.41L19.59,12L17,14.59 L14.41,12L13,13.41L15.59,16L13,18.59L14.41,20L17,17.41L19.59,20L21,18.59L18.41,16L21,13.41z M11,15H2v2h9V15z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_rule = ic_rule; \ No newline at end of file diff --git a/dist/md/ic_rule_folder.js b/dist/md/ic_rule_folder.js new file mode 100644 index 000000000..17126245b --- /dev/null +++ b/dist/md/ic_rule_folder.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_rule_folder = void 0; +var ic_rule_folder = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M7.83,16L5,13.17 l1.41-1.41l1.41,1.41l3.54-3.54l1.41,1.41L7.83,16z M17.41,13L19,14.59L17.59,16L16,14.41L14.41,16L13,14.59L14.59,13L13,11.41 L14.41,10L16,11.59L17.59,10L19,11.41L17.41,13z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M7.83,16L5,13.17 l1.41-1.41l1.41,1.41l3.54-3.54l1.41,1.41L7.83,16z M17.41,13L19,14.59L17.59,16L16,14.41L14.41,16L13,14.59L14.59,13L13,11.41 L14.41,10L16,11.59L17.59,10L19,11.41L17.41,13z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_rule_folder = ic_rule_folder; \ No newline at end of file diff --git a/dist/md/ic_rule_folder_outline.js b/dist/md/ic_rule_folder_outline.js new file mode 100644 index 000000000..e98695d14 --- /dev/null +++ b/dist/md/ic_rule_folder_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_rule_folder_outline = void 0; +var ic_rule_folder_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M7.83,16L5,13.17l1.41-1.41l1.41,1.41l3.54-3.54l1.41,1.41L7.83,16z M17.41,13L19,14.59L17.59,16L16,14.41L14.41,16 L13,14.59L14.59,13L13,11.41L14.41,10L16,11.59L17.59,10L19,11.41L17.41,13z M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18 c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M20,18L4,18V6h5.17l2,2H20V18z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M7.83,16L5,13.17l1.41-1.41l1.41,1.41l3.54-3.54l1.41,1.41L7.83,16z M17.41,13L19,14.59L17.59,16L16,14.41L14.41,16 L13,14.59L14.59,13L13,11.41L14.41,10L16,11.59L17.59,10L19,11.41L17.41,13z M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18 c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M20,18L4,18V6h5.17l2,2H20V18z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_rule_folder_outline = ic_rule_folder_outline; \ No newline at end of file diff --git a/dist/md/ic_rule_folder_twotone.js b/dist/md/ic_rule_folder_twotone.js new file mode 100644 index 000000000..547dbda28 --- /dev/null +++ b/dist/md/ic_rule_folder_twotone.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_rule_folder_twotone = void 0; +var ic_rule_folder_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M11.17,8l-2-2H4v12l16,0V8H11.17z M7.83,16L5,13.17l1.41-1.41l1.41,1.41l3.54-3.54l1.41,1.41L7.83,16z M19,14.59L17.59,16L16,14.41L14.41,16L13,14.59L14.59,13L13,11.41L14.41,10L16,11.59L17.59,10L19,11.41L17.41,13L19,14.59z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M11.17,8l-2-2H4v12l16,0V8H11.17z M7.83,16L5,13.17l1.41-1.41l1.41,1.41l3.54-3.54l1.41,1.41L7.83,16z M19,14.59L17.59,16L16,14.41L14.41,16L13,14.59L14.59,13L13,11.41L14.41,10L16,11.59L17.59,10L19,11.41L17.41,13L19,14.59z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M7.83,16L5,13.17l1.41-1.41l1.41,1.41l3.54-3.54l1.41,1.41L7.83,16z M17.41,13L19,14.59L17.59,16L16,14.41L14.41,16 L13,14.59L14.59,13L13,11.41L14.41,10L16,11.59L17.59,10L19,11.41L17.41,13z M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18 c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M20,18L4,18V6h5.17l2,2H20V18z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M7.83,16L5,13.17l1.41-1.41l1.41,1.41l3.54-3.54l1.41,1.41L7.83,16z M17.41,13L19,14.59L17.59,16L16,14.41L14.41,16 L13,14.59L14.59,13L13,11.41L14.41,10L16,11.59L17.59,10L19,11.41L17.41,13z M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18 c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M20,18L4,18V6h5.17l2,2H20V18z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_rule_folder_twotone = ic_rule_folder_twotone; \ No newline at end of file diff --git a/dist/md/ic_rule_outline.js b/dist/md/ic_rule_outline.js new file mode 100644 index 000000000..606e22a72 --- /dev/null +++ b/dist/md/ic_rule_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_rule_outline = void 0; +var ic_rule_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M16.54,11L13,7.46l1.41-1.41l2.12,2.12l4.24-4.24l1.41,1.41L16.54,11z M11,7H2v2h9V7z M21,13.41L19.59,12L17,14.59 L14.41,12L13,13.41L15.59,16L13,18.59L14.41,20L17,17.41L19.59,20L21,18.59L18.41,16L21,13.41z M11,15H2v2h9V15z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M16.54,11L13,7.46l1.41-1.41l2.12,2.12l4.24-4.24l1.41,1.41L16.54,11z M11,7H2v2h9V7z M21,13.41L19.59,12L17,14.59 L14.41,12L13,13.41L15.59,16L13,18.59L14.41,20L17,17.41L19.59,20L21,18.59L18.41,16L21,13.41z M11,15H2v2h9V15z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_rule_outline = ic_rule_outline; \ No newline at end of file diff --git a/dist/md/ic_rule_twotone.js b/dist/md/ic_rule_twotone.js new file mode 100644 index 000000000..8b39278c0 --- /dev/null +++ b/dist/md/ic_rule_twotone.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_rule_twotone = void 0; +var ic_rule_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M16.54,11L13,7.46l1.41-1.41l2.12,2.12l4.24-4.24l1.41,1.41L16.54,11z M11,7H2v2h9V7z M21,13.41L19.59,12L17,14.59 L14.41,12L13,13.41L15.59,16L13,18.59L14.41,20L17,17.41L19.59,20L21,18.59L18.41,16L21,13.41z M11,15H2v2h9V15z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M16.54,11L13,7.46l1.41-1.41l2.12,2.12l4.24-4.24l1.41,1.41L16.54,11z M11,7H2v2h9V7z M21,13.41L19.59,12L17,14.59 L14.41,12L13,13.41L15.59,16L13,18.59L14.41,20L17,17.41L19.59,20L21,18.59L18.41,16L21,13.41z M11,15H2v2h9V15z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_rule_twotone = ic_rule_twotone; \ No newline at end of file diff --git a/dist/md/ic_run_circle.js b/dist/md/ic_run_circle.js new file mode 100644 index 000000000..4f4dfe01e --- /dev/null +++ b/dist/md/ic_run_circle.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_run_circle = void 0; +var ic_run_circle = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M13.5,6c0.55,0,1,0.45,1,1 c0,0.55-0.45,1-1,1s-1-0.45-1-1C12.5,6.45,12.95,6,13.5,6z M16,12c-0.7,0-2.01-0.54-2.91-1.76l-0.41,2.35L14,14.03V18h-1v-3.58 l-1.11-1.21l-0.52,2.64L7.6,15.08l0.2-0.98l2.78,0.57l0.96-4.89L10,10.35V12H9V9.65l3.28-1.21c0.49-0.18,1.03,0.06,1.26,0.53 C14.37,10.67,15.59,11,16,11V12z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M13.5,6c0.55,0,1,0.45,1,1 c0,0.55-0.45,1-1,1s-1-0.45-1-1C12.5,6.45,12.95,6,13.5,6z M16,12c-0.7,0-2.01-0.54-2.91-1.76l-0.41,2.35L14,14.03V18h-1v-3.58 l-1.11-1.21l-0.52,2.64L7.6,15.08l0.2-0.98l2.78,0.57l0.96-4.89L10,10.35V12H9V9.65l3.28-1.21c0.49-0.18,1.03,0.06,1.26,0.53 C14.37,10.67,15.59,11,16,11V12z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_run_circle = ic_run_circle; \ No newline at end of file diff --git a/dist/md/ic_run_circle_outline.js b/dist/md/ic_run_circle_outline.js new file mode 100644 index 000000000..d9d5799ca --- /dev/null +++ b/dist/md/ic_run_circle_outline.js @@ -0,0 +1,83 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_run_circle_outline = void 0; +var ic_run_circle_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,20c-4.42,0-8-3.58-8-8 s3.58-8,8-8s8,3.58,8,8S16.42,20,12,20z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,20c-4.42,0-8-3.58-8-8 s3.58-8,8-8s8,3.58,8,8S16.42,20,12,20z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M13.54,8.97c-0.23-0.47-0.76-0.71-1.26-0.53L9,9.65V12h1v-1.65l1.54-0.57l-0.96,4.89L7.8,14.1l-0.2,0.98l3.76,0.77 l0.52-2.64L13,14.42V18h1v-3.97l-1.32-1.44l0.41-2.35C13.99,11.46,15.3,12,16,12v-1C15.59,11,14.37,10.67,13.54,8.97z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M13.54,8.97c-0.23-0.47-0.76-0.71-1.26-0.53L9,9.65V12h1v-1.65l1.54-0.57l-0.96,4.89L7.8,14.1l-0.2,0.98l3.76,0.77 l0.52-2.64L13,14.42V18h1v-3.97l-1.32-1.44l0.41-2.35C13.99,11.46,15.3,12,16,12v-1C15.59,11,14.37,10.67,13.54,8.97z" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "13.5", + "cy": "7", + "r": "1" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "13.5", + "cy": "7", + "r": "1" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_run_circle_outline = ic_run_circle_outline; \ No newline at end of file diff --git a/dist/md/ic_run_circle_twotone.js b/dist/md/ic_run_circle_twotone.js new file mode 100644 index 000000000..dc1e4d37e --- /dev/null +++ b/dist/md/ic_run_circle_twotone.js @@ -0,0 +1,97 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_run_circle_twotone = void 0; +var ic_run_circle_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,4c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S16.42,4,12,4z M13.5,6c0.55,0,1,0.45,1,1 c0,0.55-0.45,1-1,1s-1-0.45-1-1C12.5,6.45,12.95,6,13.5,6z M16,12c-0.7,0-2.01-0.54-2.91-1.76l-0.41,2.35L14,14.03V18h-1v-3.58 l-1.11-1.21l-0.52,2.64L7.6,15.08l0.2-0.98l2.78,0.57l0.96-4.89L10,10.35V12H9V9.65l3.28-1.21c0.49-0.18,1.03,0.06,1.26,0.53 C14.37,10.67,15.59,11,16,11V12z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,4c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S16.42,4,12,4z M13.5,6c0.55,0,1,0.45,1,1 c0,0.55-0.45,1-1,1s-1-0.45-1-1C12.5,6.45,12.95,6,13.5,6z M16,12c-0.7,0-2.01-0.54-2.91-1.76l-0.41,2.35L14,14.03V18h-1v-3.58 l-1.11-1.21l-0.52,2.64L7.6,15.08l0.2-0.98l2.78,0.57l0.96-4.89L10,10.35V12H9V9.65l3.28-1.21c0.49-0.18,1.03,0.06,1.26,0.53 C14.37,10.67,15.59,11,16,11V12z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,20c-4.42,0-8-3.58-8-8 s3.58-8,8-8s8,3.58,8,8S16.42,20,12,20z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,20c-4.42,0-8-3.58-8-8 s3.58-8,8-8s8,3.58,8,8S16.42,20,12,20z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M13.54,8.97c-0.23-0.47-0.76-0.71-1.26-0.53L9,9.65V12h1v-1.65l1.54-0.57l-0.96,4.89L7.8,14.1l-0.2,0.98l3.76,0.77 l0.52-2.64L13,14.42V18h1v-3.97l-1.32-1.44l0.41-2.35C13.99,11.46,15.3,12,16,12v-1C15.59,11,14.37,10.67,13.54,8.97z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M13.54,8.97c-0.23-0.47-0.76-0.71-1.26-0.53L9,9.65V12h1v-1.65l1.54-0.57l-0.96,4.89L7.8,14.1l-0.2,0.98l3.76,0.77 l0.52-2.64L13,14.42V18h1v-3.97l-1.32-1.44l0.41-2.35C13.99,11.46,15.3,12,16,12v-1C15.59,11,14.37,10.67,13.54,8.97z" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "13.5", + "cy": "7", + "r": "1" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "13.5", + "cy": "7", + "r": "1" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_run_circle_twotone = ic_run_circle_twotone; \ No newline at end of file diff --git a/dist/md/ic_rv_hookup.js b/dist/md/ic_rv_hookup.js new file mode 100644 index 000000000..ebc8fb2b3 --- /dev/null +++ b/dist/md/ic_rv_hookup.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_rv_hookup = void 0; +var ic_rv_hookup = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 11h4v3h-4z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 17v-6c0-1.1-.9-2-2-2H7V7l-3 3 3 3v-2h4v3H4v3c0 1.1.9 2 2 2h2c0 1.66 1.34 3 3 3s3-1.34 3-3h8v-2h-2zm-9 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm7-6h-4v-3h4v3zM17 2v2H9v2h8v2l3-3z" + }, + "children": [] + }] +}; +exports.ic_rv_hookup = ic_rv_hookup; \ No newline at end of file diff --git a/dist/md/ic_rv_hookup_outline.js b/dist/md/ic_rv_hookup_outline.js new file mode 100644 index 000000000..338c3f369 --- /dev/null +++ b/dist/md/ic_rv_hookup_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_rv_hookup_outline = void 0; +var ic_rv_hookup_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 17v-6c0-1.1-.9-2-2-2H7V7l-3 3 3 3v-2h4v3H4v3c0 1.1.9 2 2 2h2c0 1.66 1.34 3 3 3s3-1.34 3-3h8v-2h-2zm-9 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm7-6h-4v-3h4v3zM17 2v2H9v2h8v2l3-3-3-3z" + }, + "children": [] + }] +}; +exports.ic_rv_hookup_outline = ic_rv_hookup_outline; \ No newline at end of file diff --git a/dist/md/ic_rv_hookup_twotone.js b/dist/md/ic_rv_hookup_twotone.js new file mode 100644 index 000000000..5ee8ce5ff --- /dev/null +++ b/dist/md/ic_rv_hookup_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_rv_hookup_twotone = void 0; +var ic_rv_hookup_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 17v-6c0-1.1-.9-2-2-2H7V7l-3 3 3 3v-2h4v3H4v3c0 1.1.9 2 2 2h2c0 1.66 1.34 3 3 3s3-1.34 3-3h8v-2h-2zm-9 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm7-6h-4v-3h4v3zM17 2v2H9v2h8v2l3-3-3-3z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 17v-6c0-1.1-.9-2-2-2H7V7l-3 3 3 3v-2h4v3H4v3c0 1.1.9 2 2 2h2c0 1.66 1.34 3 3 3s3-1.34 3-3h8v-2h-2zm-9 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm7-6h-4v-3h4v3zM17 2v2H9v2h8v2l3-3-3-3z" + }, + "children": [] + }] +}; +exports.ic_rv_hookup_twotone = ic_rv_hookup_twotone; \ No newline at end of file diff --git a/dist/md/ic_sanitizer.js b/dist/md/ic_sanitizer.js new file mode 100644 index 000000000..51f7737fb --- /dev/null +++ b/dist/md/ic_sanitizer.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sanitizer = void 0; +var ic_sanitizer = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.5,6.5C15.5,5.66,17,4,17,4s1.5,1.66,1.5,2.5C18.5,7.33,17.83,8,17,8S15.5,7.33,15.5,6.5z M19.5,15 c1.38,0,2.5-1.12,2.5-2.5c0-1.67-2.5-4.5-2.5-4.5S17,10.83,17,12.5C17,13.88,18.12,15,19.5,15z M13,14h-2v-2H9v2H7v2h2v2h2v-2h2V14z M16,12v10H4V12c0-2.97,2.16-5.43,5-5.91V4H7V2h6c1.13,0,2.15,0.39,2.99,1.01l-1.43,1.43C14.1,4.17,13.57,4,13,4h-2v2.09 C13.84,6.57,16,9.03,16,12z" + }, + "children": [] + }] +}; +exports.ic_sanitizer = ic_sanitizer; \ No newline at end of file diff --git a/dist/md/ic_sanitizer_outline.js b/dist/md/ic_sanitizer_outline.js new file mode 100644 index 000000000..fb3cec170 --- /dev/null +++ b/dist/md/ic_sanitizer_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sanitizer_outline = void 0; +var ic_sanitizer_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.5,6.5C15.5,5.66,17,4,17,4s1.5,1.66,1.5,2.5C18.5,7.33,17.83,8,17,8S15.5,7.33,15.5,6.5z M19.5,15 c1.38,0,2.5-1.12,2.5-2.5c0-1.67-2.5-4.5-2.5-4.5S17,10.83,17,12.5C17,13.88,18.12,15,19.5,15z M13,14h-2v-2H9v2H7v2h2v2h2v-2h2V14z M16,12v8c0,1.1-0.9,2-2,2H6c-1.1,0-2-0.9-2-2v-8c0-2.97,2.16-5.43,5-5.91V4H7V2h6c1.13,0,2.15,0.39,2.99,1.01l-1.43,1.43 C14.1,4.17,13.57,4,13,4h-2v2.09C13.84,6.57,16,9.03,16,12z M14,12c0-2.21-1.79-4-4-4s-4,1.79-4,4v8h8V12z" + }, + "children": [] + }] +}; +exports.ic_sanitizer_outline = ic_sanitizer_outline; \ No newline at end of file diff --git a/dist/md/ic_sanitizer_twotone.js b/dist/md/ic_sanitizer_twotone.js new file mode 100644 index 000000000..2ca2d959d --- /dev/null +++ b/dist/md/ic_sanitizer_twotone.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sanitizer_twotone = void 0; +var ic_sanitizer_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10,8c-2.21,0-4,1.79-4,4v8h8v-8C14,9.79,12.21,8,10,8z M13,16h-2v2H9v-2H7v-2h2v-2h2v2h2V16z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.5,6.5C15.5,5.66,17,4,17,4s1.5,1.66,1.5,2.5C18.5,7.33,17.83,8,17,8S15.5,7.33,15.5,6.5z M19.5,15 c1.38,0,2.5-1.12,2.5-2.5c0-1.67-2.5-4.5-2.5-4.5S17,10.83,17,12.5C17,13.88,18.12,15,19.5,15z M13,14h-2v-2H9v2H7v2h2v2h2v-2h2V14z M16,12v8c0,1.1-0.9,2-2,2H6c-1.1,0-2-0.9-2-2v-8c0-2.97,2.16-5.43,5-5.91V4H7V2h6c1.13,0,2.15,0.39,2.99,1.01l-1.43,1.43 C14.1,4.17,13.57,4,13,4h-2v2.09C13.84,6.57,16,9.03,16,12z M14,12c0-2.21-1.79-4-4-4s-4,1.79-4,4v8h8V12z" + }, + "children": [] + }] +}; +exports.ic_sanitizer_twotone = ic_sanitizer_twotone; \ No newline at end of file diff --git a/dist/md/ic_satellite.js b/dist/md/ic_satellite.js new file mode 100644 index 000000000..25ca3ed7e --- /dev/null +++ b/dist/md/ic_satellite.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_satellite = void 0; +var ic_satellite = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5 4.99h3C8 6.65 6.66 8 5 8V4.99zM5 12v-2c2.76 0 5-2.25 5-5.01h2C12 8.86 8.87 12 5 12zm0 6l3.5-4.5 2.5 3.01L14.5 12l4.5 6H5z" + }, + "children": [] + }] +}; +exports.ic_satellite = ic_satellite; \ No newline at end of file diff --git a/dist/md/ic_satellite_outline.js b/dist/md/ic_satellite_outline.js new file mode 100644 index 000000000..49389b600 --- /dev/null +++ b/dist/md/ic_satellite_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_satellite_outline = void 0; +var ic_satellite_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM8.57 6H6v2.58c1.42 0 2.57-1.16 2.57-2.58zM12 6h-1.71c0 2.36-1.92 4.29-4.29 4.29V12c3.32 0 6-2.69 6-6zm2.14 5.86l-3 3.87L9 13.15 6 17h12z" + }, + "children": [] + }] +}; +exports.ic_satellite_outline = ic_satellite_outline; \ No newline at end of file diff --git a/dist/md/ic_satellite_twotone.js b/dist/md/ic_satellite_twotone.js new file mode 100644 index 000000000..e4f44893f --- /dev/null +++ b/dist/md/ic_satellite_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_satellite_twotone = void 0; +var ic_satellite_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 19h14V5H5v14zM6 6h2.57c0 1.42-1.15 2.58-2.57 2.58V6zm0 4.29c2.37 0 4.28-1.93 4.28-4.29H12c0 3.31-2.68 6-6 6v-1.71zm3 2.86l2.14 2.58 3-3.86L18 17H6l3-3.85z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM8.57 6H6v2.58c1.42 0 2.57-1.16 2.57-2.58zM12 6h-1.72c0 2.36-1.91 4.29-4.28 4.29V12c3.32 0 6-2.69 6-6zm2.14 5.86l-3 3.87L9 13.15 6 17h12z" + }, + "children": [] + }] +}; +exports.ic_satellite_twotone = ic_satellite_twotone; \ No newline at end of file diff --git a/dist/md/ic_save.js b/dist/md/ic_save.js new file mode 100644 index 000000000..1fb84f652 --- /dev/null +++ b/dist/md/ic_save.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_save = void 0; +var ic_save = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V7l-4-4zm-5 16c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm3-10H5V5h10v4z" + }, + "children": [] + }] +}; +exports.ic_save = ic_save; \ No newline at end of file diff --git a/dist/md/ic_save_alt.js b/dist/md/ic_save_alt.js new file mode 100644 index 000000000..9e2aecc38 --- /dev/null +++ b/dist/md/ic_save_alt.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_save_alt = void 0; +var ic_save_alt = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 12v7H5v-7H3v7c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-7h-2zm-6 .67l2.59-2.58L17 11.5l-5 5-5-5 1.41-1.41L11 12.67V3h2z" + }, + "children": [] + }] +}; +exports.ic_save_alt = ic_save_alt; \ No newline at end of file diff --git a/dist/md/ic_save_alt_outline.js b/dist/md/ic_save_alt_outline.js new file mode 100644 index 000000000..b32c5d957 --- /dev/null +++ b/dist/md/ic_save_alt_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_save_alt_outline = void 0; +var ic_save_alt_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 12v7H5v-7H3v7c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-7h-2zm-6 .67l2.59-2.58L17 11.5l-5 5-5-5 1.41-1.41L11 12.67V3h2v9.67z" + }, + "children": [] + }] +}; +exports.ic_save_alt_outline = ic_save_alt_outline; \ No newline at end of file diff --git a/dist/md/ic_save_alt_twotone.js b/dist/md/ic_save_alt_twotone.js new file mode 100644 index 000000000..c9a823bbc --- /dev/null +++ b/dist/md/ic_save_alt_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_save_alt_twotone = void 0; +var ic_save_alt_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 12v7H5v-7H3v7c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-7h-2zm-6 .67l2.59-2.58L17 11.5l-5 5-5-5 1.41-1.41L11 12.67V3h2v9.67z" + }, + "children": [] + }] +}; +exports.ic_save_alt_twotone = ic_save_alt_twotone; \ No newline at end of file diff --git a/dist/md/ic_save_outline.js b/dist/md/ic_save_outline.js new file mode 100644 index 000000000..90093b6c3 --- /dev/null +++ b/dist/md/ic_save_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_save_outline = void 0; +var ic_save_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V7l-4-4zm2 16H5V5h11.17L19 7.83V19zm-7-7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zM6 6h9v4H6z" + }, + "children": [] + }] +}; +exports.ic_save_outline = ic_save_outline; \ No newline at end of file diff --git a/dist/md/ic_save_twotone.js b/dist/md/ic_save_twotone.js new file mode 100644 index 000000000..2a7528d8d --- /dev/null +++ b/dist/md/ic_save_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_save_twotone = void 0; +var ic_save_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 5v14h14V7.83L16.17 5H5zm7 13c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm3-8H6V6h9v4z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V7l-4-4zm2 16H5V5h11.17L19 7.83V19zm-7-7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zM6 6h9v4H6z" + }, + "children": [] + }] +}; +exports.ic_save_twotone = ic_save_twotone; \ No newline at end of file diff --git a/dist/md/ic_saved_search.js b/dist/md/ic_saved_search.js new file mode 100644 index 000000000..1024efc18 --- /dev/null +++ b/dist/md/ic_saved_search.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_saved_search = void 0; +var ic_saved_search = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zm-2.17-1.5l2.14-1.53 2.14 1.53-.83-2.46 2.15-1.5h-2.62L9.47 6l-.84 2.54H6l2.14 1.49z" + }, + "children": [] + }] +}; +exports.ic_saved_search = ic_saved_search; \ No newline at end of file diff --git a/dist/md/ic_scanner.js b/dist/md/ic_scanner.js new file mode 100644 index 000000000..f3f3ec2cf --- /dev/null +++ b/dist/md/ic_scanner.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_scanner = void 0; +var ic_scanner = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.8 10.7L4.2 5l-.7 1.9L17.6 12H5c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-5.5c0-.8-.5-1.6-1.2-1.8zM7 17H5v-2h2v2zm12 0H9v-2h10v2z" + }, + "children": [] + }] +}; +exports.ic_scanner = ic_scanner; \ No newline at end of file diff --git a/dist/md/ic_scanner_outline.js b/dist/md/ic_scanner_outline.js new file mode 100644 index 000000000..be6063eac --- /dev/null +++ b/dist/md/ic_scanner_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_scanner_outline = void 0; +var ic_scanner_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.8 10.7L4.2 5l-.7 1.9L17.6 12H5c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-5.5c0-.8-.5-1.6-1.2-1.8zM19 18H5v-4h14v4zM6 15h2v2H6zm4 0h8v2h-8z" + }, + "children": [] + }] +}; +exports.ic_scanner_outline = ic_scanner_outline; \ No newline at end of file diff --git a/dist/md/ic_scanner_twotone.js b/dist/md/ic_scanner_twotone.js new file mode 100644 index 000000000..5628125d5 --- /dev/null +++ b/dist/md/ic_scanner_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_scanner_twotone = void 0; +var ic_scanner_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 14v4h14v-4H5zm3 3H6v-2h2v2zm10 0h-8v-2h8v2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.8 10.7L4.2 5l-.7 1.9L17.6 12H5c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-5.5c0-.8-.5-1.6-1.2-1.8zM19 18H5v-4h14v4zM6 15h2v2H6zm4 0h8v2h-8z" + }, + "children": [] + }] +}; +exports.ic_scanner_twotone = ic_scanner_twotone; \ No newline at end of file diff --git a/dist/md/ic_scatter_plot.js b/dist/md/ic_scatter_plot.js new file mode 100644 index 000000000..5dbbb2ed1 --- /dev/null +++ b/dist/md/ic_scatter_plot.js @@ -0,0 +1,70 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_scatter_plot = void 0; +var ic_scatter_plot = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "cx": "7", + "cy": "14", + "r": "3" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "7", + "cy": "14", + "r": "3" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "11", + "cy": "6", + "r": "3" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "11", + "cy": "6", + "r": "3" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "16.6", + "cy": "17.6", + "r": "3" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "16.6", + "cy": "17.6", + "r": "3" + }, + "children": [] + }] + }] + }] +}; +exports.ic_scatter_plot = ic_scatter_plot; \ No newline at end of file diff --git a/dist/md/ic_scatter_plot_outline.js b/dist/md/ic_scatter_plot_outline.js new file mode 100644 index 000000000..0387d7e60 --- /dev/null +++ b/dist/md/ic_scatter_plot_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_scatter_plot_outline = void 0; +var ic_scatter_plot_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 18c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm4-2c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm5.6 17.6c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_scatter_plot_outline = ic_scatter_plot_outline; \ No newline at end of file diff --git a/dist/md/ic_scatter_plot_twotone.js b/dist/md/ic_scatter_plot_twotone.js new file mode 100644 index 000000000..ae57642fb --- /dev/null +++ b/dist/md/ic_scatter_plot_twotone.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_scatter_plot_twotone = void 0; +var ic_scatter_plot_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "11", + "cy": "6", + "opacity": ".3", + "r": "2" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "16.6", + "cy": "17.6", + "opacity": ".3", + "r": "2" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "7", + "cy": "14", + "opacity": ".3", + "r": "2" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 10c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm8-10c0-2.21-1.79-4-4-4S7 3.79 7 6s1.79 4 4 4 4-1.79 4-4zm-4 2c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm5.6 5.6c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" + }, + "children": [] + }] +}; +exports.ic_scatter_plot_twotone = ic_scatter_plot_twotone; \ No newline at end of file diff --git a/dist/md/ic_schedule.js b/dist/md/ic_schedule.js new file mode 100644 index 000000000..b6cca702e --- /dev/null +++ b/dist/md/ic_schedule.js @@ -0,0 +1,30 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_schedule = void 0; +var ic_schedule = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12.5 7H11v6l5.25 3.15.75-1.23-4.5-2.67z" + }, + "children": [] + }] +}; +exports.ic_schedule = ic_schedule; \ No newline at end of file diff --git a/dist/md/ic_schedule_outline.js b/dist/md/ic_schedule_outline.js new file mode 100644 index 000000000..542156e92 --- /dev/null +++ b/dist/md/ic_schedule_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_schedule_outline = void 0; +var ic_schedule_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z" + }, + "children": [] + }] +}; +exports.ic_schedule_outline = ic_schedule_outline; \ No newline at end of file diff --git a/dist/md/ic_schedule_send.js b/dist/md/ic_schedule_send.js new file mode 100644 index 000000000..eebc17c0b --- /dev/null +++ b/dist/md/ic_schedule_send.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_schedule_send = void 0; +var ic_schedule_send = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16.5 12.5H15v4l3 2 .75-1.23-2.25-1.52V12.5zM16 9L2 3v7l9 2-9 2v7l7.27-3.11C10.09 20.83 12.79 23 16 23c3.86 0 7-3.14 7-7s-3.14-7-7-7zm0 12c-2.75 0-4.98-2.22-5-4.97v-.07c.02-2.74 2.25-4.97 5-4.97 2.76 0 5 2.24 5 5S18.76 21 16 21z" + }, + "children": [] + }] +}; +exports.ic_schedule_send = ic_schedule_send; \ No newline at end of file diff --git a/dist/md/ic_schedule_twotone.js b/dist/md/ic_schedule_twotone.js new file mode 100644 index 000000000..7ca5e7630 --- /dev/null +++ b/dist/md/ic_schedule_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_schedule_twotone = void 0; +var ic_schedule_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm4.25 12.15L11 13V7h1.5v5.25l4.5 2.67-.75 1.23z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z" + }, + "children": [] + }] +}; +exports.ic_schedule_twotone = ic_schedule_twotone; \ No newline at end of file diff --git a/dist/md/ic_school.js b/dist/md/ic_school.js new file mode 100644 index 000000000..60824d2dc --- /dev/null +++ b/dist/md/ic_school.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_school = void 0; +var ic_school = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 13.18v4L12 21l7-3.82v-4L12 17l-7-3.82zM12 3L1 9l11 6 9-4.91V17h2V9L12 3z" + }, + "children": [] + }] +}; +exports.ic_school = ic_school; \ No newline at end of file diff --git a/dist/md/ic_school_outline.js b/dist/md/ic_school_outline.js new file mode 100644 index 000000000..e3a125f43 --- /dev/null +++ b/dist/md/ic_school_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_school_outline = void 0; +var ic_school_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 3L1 9l4 2.18v6L12 21l7-3.82v-6l2-1.09V17h2V9L12 3zm6.82 6L12 12.72 5.18 9 12 5.28 18.82 9zM17 15.99l-5 2.73-5-2.73v-3.72L12 15l5-2.73v3.72z" + }, + "children": [] + }] +}; +exports.ic_school_outline = ic_school_outline; \ No newline at end of file diff --git a/dist/md/ic_school_twotone.js b/dist/md/ic_school_twotone.js new file mode 100644 index 000000000..ffb5d8bad --- /dev/null +++ b/dist/md/ic_school_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_school_twotone = void 0; +var ic_school_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 12.27v3.72l5 2.73 5-2.73v-3.72L12 15zM5.18 9L12 12.72 18.82 9 12 5.28z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 3L1 9l4 2.18v6L12 21l7-3.82v-6l2-1.09V17h2V9L12 3zm5 12.99l-5 2.73-5-2.73v-3.72L12 15l5-2.73v3.72zm-5-3.27L5.18 9 12 5.28 18.82 9 12 12.72z" + }, + "children": [] + }] +}; +exports.ic_school_twotone = ic_school_twotone; \ No newline at end of file diff --git a/dist/md/ic_science.js b/dist/md/ic_science.js new file mode 100644 index 000000000..28aac42ec --- /dev/null +++ b/dist/md/ic_science.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_science = void 0; +var ic_science = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M19.8,18.4L14,10.67V6.5l1.35-1.69C15.61,4.48,15.38,4,14.96,4H9.04C8.62,4,8.39,4.48,8.65,4.81L10,6.5v4.17L4.2,18.4 C3.71,19.06,4.18,20,5,20h14C19.82,20,20.29,19.06,19.8,18.4z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19.8,18.4L14,10.67V6.5l1.35-1.69C15.61,4.48,15.38,4,14.96,4H9.04C8.62,4,8.39,4.48,8.65,4.81L10,6.5v4.17L4.2,18.4 C3.71,19.06,4.18,20,5,20h14C19.82,20,20.29,19.06,19.8,18.4z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_science = ic_science; \ No newline at end of file diff --git a/dist/md/ic_science_outline.js b/dist/md/ic_science_outline.js new file mode 100644 index 000000000..1a15daa4f --- /dev/null +++ b/dist/md/ic_science_outline.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_science_outline = void 0; +var ic_science_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M13,11.33L18,18H6l5-6.67V6h2 M15.96,4H8.04C7.62,4,7.39,4.48,7.65,4.81L9,6.5v4.17L3.2,18.4C2.71,19.06,3.18,20,4,20h16 c0.82,0,1.29-0.94,0.8-1.6L15,10.67V6.5l1.35-1.69C16.61,4.48,16.38,4,15.96,4L15.96,4z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M13,11.33L18,18H6l5-6.67V6h2 M15.96,4H8.04C7.62,4,7.39,4.48,7.65,4.81L9,6.5v4.17L3.2,18.4C2.71,19.06,3.18,20,4,20h16 c0.82,0,1.29-0.94,0.8-1.6L15,10.67V6.5l1.35-1.69C16.61,4.48,16.38,4,15.96,4L15.96,4z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_science_outline = ic_science_outline; \ No newline at end of file diff --git a/dist/md/ic_science_twotone.js b/dist/md/ic_science_twotone.js new file mode 100644 index 000000000..4fe094594 --- /dev/null +++ b/dist/md/ic_science_twotone.js @@ -0,0 +1,69 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_science_twotone = void 0; +var ic_science_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "opacity": ".3", + "points": "13,6 11,6 11,11.33 6,18 18,18 13,11.33" + }, + "children": [{ + "name": "polygon", + "attribs": { + "opacity": ".3", + "points": "13,6 11,6 11,11.33 6,18 18,18 13,11.33" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20.8,18.4L15,10.67V6.5l1.35-1.69C16.61,4.48,16.38,4,15.96,4H8.04C7.62,4,7.39,4.48,7.65,4.81L9,6.5v4.17L3.2,18.4 C2.71,19.06,3.18,20,4,20h16C20.82,20,21.29,19.06,20.8,18.4z M6,18l5-6.67V6h2v5.33L18,18H6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20.8,18.4L15,10.67V6.5l1.35-1.69C16.61,4.48,16.38,4,15.96,4H8.04C7.62,4,7.39,4.48,7.65,4.81L9,6.5v4.17L3.2,18.4 C2.71,19.06,3.18,20,4,20h16C20.82,20,21.29,19.06,20.8,18.4z M6,18l5-6.67V6h2v5.33L18,18H6z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_science_twotone = ic_science_twotone; \ No newline at end of file diff --git a/dist/md/ic_score.js b/dist/md/ic_score.js new file mode 100644 index 000000000..da91fa472 --- /dev/null +++ b/dist/md/ic_score.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_score = void 0; +var ic_score = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 2h1.5v3l2-3h1.7l-2 3 2 3h-1.7l-2-3v3H12V5zM7 7.25h2.5V6.5H7V5h4v3.75H8.5v.75H11V11H7V7.25zM19 13l-6 6-4-4-4 4v-2.5l4-4 4 4 6-6V13z" + }, + "children": [] + }] +}; +exports.ic_score = ic_score; \ No newline at end of file diff --git a/dist/md/ic_score_outline.js b/dist/md/ic_score_outline.js new file mode 100644 index 000000000..76c86218e --- /dev/null +++ b/dist/md/ic_score_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_score_outline = void 0; +var ic_score_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5l4-4 4 4 6-6v6zm0-8.5l-6 6-4-4-4 4V5h14v5.5zM13.5 9V6H12v6h1.5zm3.7 3l-2-3 2-3h-1.7l-2 3 2 3zM11 10.5H8.5v-.75H11V6H7v1.5h2.5v.75H7V12h4z" + }, + "children": [] + }] +}; +exports.ic_score_outline = ic_score_outline; \ No newline at end of file diff --git a/dist/md/ic_score_twotone.js b/dist/md/ic_score_twotone.js new file mode 100644 index 000000000..da4b7ed82 --- /dev/null +++ b/dist/md/ic_score_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_score_twotone = void 0; +var ic_score_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 19h8l-4-4zm0-2.5l4-4 4 4 6-6V5H5v11.5zM12 6h1.5v3l2-3h1.7l-2 3 2 3h-1.7l-2-3v3H12V6zM7 8.25h2.5V7.5H7V6h4v3.75H8.5v.75H11V12H7V8.25zM19 19v-6l-6 6z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5l4-4 4 4 6-6v6zm0-8.5l-6 6-4-4-4 4V5h14v5.5zM13.5 9V6H12v6h1.5zm3.7 3l-2-3 2-3h-1.7l-2 3 2 3zM11 10.5H8.5v-.75H11V6H7v1.5h2.5v.75H7V12h4z" + }, + "children": [] + }] +}; +exports.ic_score_twotone = ic_score_twotone; \ No newline at end of file diff --git a/dist/md/ic_screen_lock_landscape.js b/dist/md/ic_screen_lock_landscape.js new file mode 100644 index 000000000..8dd7a9ba5 --- /dev/null +++ b/dist/md/ic_screen_lock_landscape.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_screen_lock_landscape = void 0; +var ic_screen_lock_landscape = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 5H3c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-2 12H5V7h14v10zm-9-1h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1v-1c0-1.11-.9-2-2-2-1.11 0-2 .9-2 2v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1zm.8-6c0-.66.54-1.2 1.2-1.2.66 0 1.2.54 1.2 1.2v1h-2.4v-1z" + }, + "children": [] + }] +}; +exports.ic_screen_lock_landscape = ic_screen_lock_landscape; \ No newline at end of file diff --git a/dist/md/ic_screen_lock_landscape_outline.js b/dist/md/ic_screen_lock_landscape_outline.js new file mode 100644 index 000000000..e5e8c2036 --- /dev/null +++ b/dist/md/ic_screen_lock_landscape_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_screen_lock_landscape_outline = void 0; +var ic_screen_lock_landscape_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 5H3c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-2 12H5V7h14v10zm-9-1h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1v-1c0-1.11-.9-2-2-2-1.11 0-2 .9-2 2v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1zm.8-6c0-.66.54-1.2 1.2-1.2s1.2.54 1.2 1.2v1h-2.4v-1z" + }, + "children": [] + }] +}; +exports.ic_screen_lock_landscape_outline = ic_screen_lock_landscape_outline; \ No newline at end of file diff --git a/dist/md/ic_screen_lock_landscape_twotone.js b/dist/md/ic_screen_lock_landscape_twotone.js new file mode 100644 index 000000000..63951f680 --- /dev/null +++ b/dist/md/ic_screen_lock_landscape_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_screen_lock_landscape_twotone = void 0; +var ic_screen_lock_landscape_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13.2 10c0-.66-.54-1.2-1.2-1.2s-1.2.54-1.2 1.2v1h2.4v-1zM5 17h14V7H5v10zm4-5c0-.55.45-1 1-1v-1c0-1.1.89-2 2-2 1.1 0 2 .89 2 2v1c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1h-4c-.55 0-1-.45-1-1v-3z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 16h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1v-1c0-1.11-.9-2-2-2-1.11 0-2 .9-2 2v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1zm.8-6c0-.66.54-1.2 1.2-1.2s1.2.54 1.2 1.2v1h-2.4v-1zM21 5H3c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-2 12H5V7h14v10z" + }, + "children": [] + }] +}; +exports.ic_screen_lock_landscape_twotone = ic_screen_lock_landscape_twotone; \ No newline at end of file diff --git a/dist/md/ic_screen_lock_portrait.js b/dist/md/ic_screen_lock_portrait.js new file mode 100644 index 000000000..f0b263a84 --- /dev/null +++ b/dist/md/ic_screen_lock_portrait.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_screen_lock_portrait = void 0; +var ic_screen_lock_portrait = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 16h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1v-1c0-1.11-.9-2-2-2-1.11 0-2 .9-2 2v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1zm.8-6c0-.66.54-1.2 1.2-1.2.66 0 1.2.54 1.2 1.2v1h-2.4v-1zM17 1H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 18H7V5h10v14z" + }, + "children": [] + }] +}; +exports.ic_screen_lock_portrait = ic_screen_lock_portrait; \ No newline at end of file diff --git a/dist/md/ic_screen_lock_portrait_outline.js b/dist/md/ic_screen_lock_portrait_outline.js new file mode 100644 index 000000000..136769877 --- /dev/null +++ b/dist/md/ic_screen_lock_portrait_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_screen_lock_portrait_outline = void 0; +var ic_screen_lock_portrait_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 16h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1v-1c0-1.11-.9-2-2-2-1.11 0-2 .9-2 2v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1zm.8-6c0-.66.54-1.2 1.2-1.2s1.2.54 1.2 1.2v1h-2.4v-1zM17 1H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 18H7V5h10v14z" + }, + "children": [] + }] +}; +exports.ic_screen_lock_portrait_outline = ic_screen_lock_portrait_outline; \ No newline at end of file diff --git a/dist/md/ic_screen_lock_portrait_twotone.js b/dist/md/ic_screen_lock_portrait_twotone.js new file mode 100644 index 000000000..c1c97d78f --- /dev/null +++ b/dist/md/ic_screen_lock_portrait_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_screen_lock_portrait_twotone = void 0; +var ic_screen_lock_portrait_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13.2 10c0-.66-.54-1.2-1.2-1.2s-1.2.54-1.2 1.2v1h2.4v-1zM7 19h10V5H7v14zm2-7c0-.55.45-1 1-1v-1c0-1.1.89-2 2-2 1.1 0 2 .89 2 2v1c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1h-4c-.55 0-1-.45-1-1v-3z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 16h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1v-1c0-1.11-.9-2-2-2-1.11 0-2 .9-2 2v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1zm.8-6c0-.66.54-1.2 1.2-1.2s1.2.54 1.2 1.2v1h-2.4v-1zM17 1H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 18H7V5h10v14z" + }, + "children": [] + }] +}; +exports.ic_screen_lock_portrait_twotone = ic_screen_lock_portrait_twotone; \ No newline at end of file diff --git a/dist/md/ic_screen_lock_rotation.js b/dist/md/ic_screen_lock_rotation.js new file mode 100644 index 000000000..0ea42276e --- /dev/null +++ b/dist/md/ic_screen_lock_rotation.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_screen_lock_rotation = void 0; +var ic_screen_lock_rotation = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M23.25 12.77l-2.57-2.57-1.41 1.41 2.22 2.22-5.66 5.66L4.51 8.17l5.66-5.66 2.1 2.1 1.41-1.41L11.23.75c-.59-.59-1.54-.59-2.12 0L2.75 7.11c-.59.59-.59 1.54 0 2.12l12.02 12.02c.59.59 1.54.59 2.12 0l6.36-6.36c.59-.59.59-1.54 0-2.12zM8.47 20.48C5.2 18.94 2.86 15.76 2.5 12H1c.51 6.16 5.66 11 11.95 11l.66-.03-3.81-3.82-1.33 1.33zM16 9h5c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1v-.5C21 1.12 19.88 0 18.5 0S16 1.12 16 2.5V3c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.8-6.5c0-.94.76-1.7 1.7-1.7s1.7.76 1.7 1.7V3h-3.4v-.5z" + }, + "children": [] + }] +}; +exports.ic_screen_lock_rotation = ic_screen_lock_rotation; \ No newline at end of file diff --git a/dist/md/ic_screen_lock_rotation_outline.js b/dist/md/ic_screen_lock_rotation_outline.js new file mode 100644 index 000000000..fd50b3a20 --- /dev/null +++ b/dist/md/ic_screen_lock_rotation_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_screen_lock_rotation_outline = void 0; +var ic_screen_lock_rotation_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22.3 13.77l-2.57-2.57-1.41 1.41 2.22 2.22-5.66 5.66L3.56 9.17l5.66-5.66 2.1 2.1 1.41-1.41-2.45-2.45c-.59-.59-1.54-.59-2.12 0L1.8 8.11c-.59.59-.59 1.54 0 2.12l12.02 12.02c.59.59 1.54.59 2.12 0l6.36-6.36c.59-.59.59-1.54 0-2.12zM7.52 21.48C4.25 19.94 1.91 16.76 1.55 13H.05C.56 19.16 5.71 24 12 24l.66-.03-3.81-3.82-1.33 1.33zM15.05 10h5c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1v-.5c0-1.38-1.12-2.5-2.5-2.5s-2.5 1.12-2.5 2.5V4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.8-6.5c0-.94.76-1.7 1.7-1.7s1.7.76 1.7 1.7V4h-3.4v-.5z" + }, + "children": [] + }] +}; +exports.ic_screen_lock_rotation_outline = ic_screen_lock_rotation_outline; \ No newline at end of file diff --git a/dist/md/ic_screen_lock_rotation_twotone.js b/dist/md/ic_screen_lock_rotation_twotone.js new file mode 100644 index 000000000..9966f7054 --- /dev/null +++ b/dist/md/ic_screen_lock_rotation_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_screen_lock_rotation_twotone = void 0; +var ic_screen_lock_rotation_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22.3 13.77l-2.57-2.57-1.41 1.41 2.22 2.22-5.66 5.66L3.56 9.17l5.66-5.66 2.1 2.1 1.41-1.41-2.45-2.45c-.59-.59-1.54-.59-2.12 0L1.8 8.11c-.59.59-.59 1.54 0 2.12l12.02 12.02c.59.59 1.54.59 2.12 0l6.36-6.36c.59-.59.59-1.54 0-2.12zM7.52 21.48C4.25 19.94 1.91 16.76 1.55 13H.05C.56 19.16 5.71 24 12 24l.66-.03-3.81-3.82-1.33 1.33zM15.05 10h5c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1v-.5c0-1.38-1.12-2.5-2.5-2.5s-2.5 1.12-2.5 2.5V4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.8-6.5c0-.94.76-1.7 1.7-1.7s1.7.76 1.7 1.7V4h-3.4v-.5z" + }, + "children": [] + }] +}; +exports.ic_screen_lock_rotation_twotone = ic_screen_lock_rotation_twotone; \ No newline at end of file diff --git a/dist/md/ic_screen_rotation.js b/dist/md/ic_screen_rotation.js new file mode 100644 index 000000000..858090bef --- /dev/null +++ b/dist/md/ic_screen_rotation.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_screen_rotation = void 0; +var ic_screen_rotation = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16.48 2.52c3.27 1.55 5.61 4.72 5.97 8.48h1.5C23.44 4.84 18.29 0 12 0l-.66.03 3.81 3.81 1.33-1.32zm-6.25-.77c-.59-.59-1.54-.59-2.12 0L1.75 8.11c-.59.59-.59 1.54 0 2.12l12.02 12.02c.59.59 1.54.59 2.12 0l6.36-6.36c.59-.59.59-1.54 0-2.12L10.23 1.75zm4.6 19.44L2.81 9.17l6.36-6.36 12.02 12.02-6.36 6.36zm-7.31.29C4.25 19.94 1.91 16.76 1.55 13H.05C.56 19.16 5.71 24 12 24l.66-.03-3.81-3.81-1.33 1.32z" + }, + "children": [] + }] +}; +exports.ic_screen_rotation = ic_screen_rotation; \ No newline at end of file diff --git a/dist/md/ic_screen_rotation_outline.js b/dist/md/ic_screen_rotation_outline.js new file mode 100644 index 000000000..3ee7e7ed4 --- /dev/null +++ b/dist/md/ic_screen_rotation_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_screen_rotation_outline = void 0; +var ic_screen_rotation_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16.48 2.52c3.27 1.55 5.61 4.72 5.97 8.48h1.5C23.44 4.84 18.29 0 12 0l-.66.03 3.81 3.81 1.33-1.32zm-6.25-.77c-.59-.59-1.54-.59-2.12 0L1.75 8.11c-.59.59-.59 1.54 0 2.12l12.02 12.02c.59.59 1.54.59 2.12 0l6.36-6.36c.59-.59.59-1.54 0-2.12L10.23 1.75zm4.6 19.44L2.81 9.17l6.36-6.36 12.02 12.02-6.36 6.36zm-7.31.29C4.25 19.94 1.91 16.76 1.55 13H.05C.56 19.16 5.71 24 12 24l.66-.03-3.81-3.81-1.33 1.32z" + }, + "children": [] + }] +}; +exports.ic_screen_rotation_outline = ic_screen_rotation_outline; \ No newline at end of file diff --git a/dist/md/ic_screen_rotation_twotone.js b/dist/md/ic_screen_rotation_twotone.js new file mode 100644 index 000000000..10bc36d0f --- /dev/null +++ b/dist/md/ic_screen_rotation_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_screen_rotation_twotone = void 0; +var ic_screen_rotation_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14.828 21.192L2.808 9.172l6.357-6.357 12.02 12.02z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16.48 2.52c3.27 1.55 5.61 4.72 5.97 8.48h1.5C23.44 4.84 18.29 0 12 0l-.66.03 3.81 3.81 1.33-1.32zm-6.25-.77c-.59-.59-1.54-.59-2.12 0L1.75 8.11c-.59.59-.59 1.54 0 2.12l12.02 12.02c.59.59 1.54.59 2.12 0l6.36-6.36c.59-.59.59-1.54 0-2.12L10.23 1.75zm4.6 19.44L2.81 9.17l6.36-6.36 12.02 12.02-6.36 6.36zm-7.31.29C4.25 19.94 1.91 16.76 1.55 13H.05C.56 19.16 5.71 24 12 24l.66-.03-3.81-3.81-1.33 1.32z" + }, + "children": [] + }] +}; +exports.ic_screen_rotation_twotone = ic_screen_rotation_twotone; \ No newline at end of file diff --git a/dist/md/ic_screen_search_desktop.js b/dist/md/ic_screen_search_desktop.js new file mode 100644 index 000000000..0f202b69d --- /dev/null +++ b/dist/md/ic_screen_search_desktop.js @@ -0,0 +1,79 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_screen_search_desktop = void 0; +var ic_screen_search_desktop = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "height": "1.8", + "style": "fill:none", + "width": "4.8", + "x": "9.6", + "y": "16.8" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "1.8", + "style": "fill:none", + "width": "4.8", + "x": "9.6", + "y": "16.8" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20,18 C21.1,18 21.99,17.1 21.99,16 L22,6 C22,4.89 21.1,4 20,4 L4,4 C2.89,4 2,4.89 2,6 L2,16 C2,17.1 2.89,18 4,18 L0,18 L0,20 L24,20 L24,18 L20,18 Z M4,16 L4,6 L20,6 L20,16 L20,16.01 L4,16 Z M9.0967,9.9531 C9.0967,8.9261 9.9327,8.0891 10.9607,8.0891 C11.9877,8.0891 12.8247,8.9261 12.8247,9.9531 C12.8247,10.9801 11.9877,11.8171 10.9607,11.8171 C9.9327,11.8171 9.0967,10.9801 9.0967,9.9531 Z M16.1287,14.1891 L13.6467,11.7071 C13.9777,11.2021 14.1737,10.6001 14.1737,9.9531 C14.1737,8.1811 12.7327,6.7401 10.9607,6.7401 C9.1887,6.7401 7.7467,8.1811 7.7467,9.9531 C7.7467,11.7251 9.1887,13.1671 10.9607,13.1671 C11.5967,13.1671 12.1857,12.9751 12.6847,12.6561 L15.1737,15.1441 L16.1287,14.1891 Z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,18 C21.1,18 21.99,17.1 21.99,16 L22,6 C22,4.89 21.1,4 20,4 L4,4 C2.89,4 2,4.89 2,6 L2,16 C2,17.1 2.89,18 4,18 L0,18 L0,20 L24,20 L24,18 L20,18 Z M4,16 L4,6 L20,6 L20,16 L20,16.01 L4,16 Z M9.0967,9.9531 C9.0967,8.9261 9.9327,8.0891 10.9607,8.0891 C11.9877,8.0891 12.8247,8.9261 12.8247,9.9531 C12.8247,10.9801 11.9877,11.8171 10.9607,11.8171 C9.9327,11.8171 9.0967,10.9801 9.0967,9.9531 Z M16.1287,14.1891 L13.6467,11.7071 C13.9777,11.2021 14.1737,10.6001 14.1737,9.9531 C14.1737,8.1811 12.7327,6.7401 10.9607,6.7401 C9.1887,6.7401 7.7467,8.1811 7.7467,9.9531 C7.7467,11.7251 9.1887,13.1671 10.9607,13.1671 C11.5967,13.1671 12.1857,12.9751 12.6847,12.6561 L15.1737,15.1441 L16.1287,14.1891 Z" + }, + "children": [] + }] + }] + }] + }, { + "name": "rect", + "attribs": { + "height": "24", + "style": "fill:none", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "24", + "style": "fill:none", + "width": "24" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_screen_search_desktop = ic_screen_search_desktop; \ No newline at end of file diff --git a/dist/md/ic_screen_share.js b/dist/md/ic_screen_share.js new file mode 100644 index 000000000..54dcb0ca7 --- /dev/null +++ b/dist/md/ic_screen_share.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_screen_share = void 0; +var ic_screen_share = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 18c1.1 0 1.99-.9 1.99-2L22 6c0-1.11-.9-2-2-2H4c-1.11 0-2 .89-2 2v10c0 1.1.89 2 2 2H0v2h24v-2h-4zm-7-3.53v-2.19c-2.78 0-4.61.85-6 2.72.56-2.67 2.11-5.33 6-5.87V7l4 3.73-4 3.74z" + }, + "children": [] + }] +}; +exports.ic_screen_share = ic_screen_share; \ No newline at end of file diff --git a/dist/md/ic_screen_share_outline.js b/dist/md/ic_screen_share_outline.js new file mode 100644 index 000000000..9db8ca486 --- /dev/null +++ b/dist/md/ic_screen_share_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_screen_share_outline = void 0; +var ic_screen_share_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 18c1.1 0 1.99-.9 1.99-2L22 6c0-1.11-.9-2-2-2H4c-1.11 0-2 .89-2 2v10c0 1.1.89 2 2 2H0v2h24v-2h-4zM4 16V6h16v10.01L4 16zm9-6.87c-3.89.54-5.44 3.2-6 5.87 1.39-1.87 3.22-2.72 6-2.72v2.19l4-3.74L13 7v2.13z" + }, + "children": [] + }] +}; +exports.ic_screen_share_outline = ic_screen_share_outline; \ No newline at end of file diff --git a/dist/md/ic_screen_share_twotone.js b/dist/md/ic_screen_share_twotone.js new file mode 100644 index 000000000..64ef6d2a2 --- /dev/null +++ b/dist/md/ic_screen_share_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_screen_share_twotone = void 0; +var ic_screen_share_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 16V6H4v10.01L20 16zm-7-1.53v-2.19c-2.78 0-4.61.85-6 2.72.56-2.67 2.11-5.33 6-5.87V7l4 3.73-4 3.74z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 18c1.1 0 1.99-.9 1.99-2L22 6c0-1.11-.9-2-2-2H4c-1.11 0-2 .89-2 2v10c0 1.1.89 2 2 2H0v2h24v-2h-4zM4 16V6h16v10.01L4 16zm9-6.87c-3.89.54-5.44 3.2-6 5.87 1.39-1.87 3.22-2.72 6-2.72v2.19l4-3.74L13 7v2.13z" + }, + "children": [] + }] +}; +exports.ic_screen_share_twotone = ic_screen_share_twotone; \ No newline at end of file diff --git a/dist/md/ic_sd.js b/dist/md/ic_sd.js new file mode 100644 index 000000000..cd9d376c7 --- /dev/null +++ b/dist/md/ic_sd.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sd = void 0; +var ic_sd = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-6 6h4c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1h-4V9zm-3.5 4.5v-1H7c-.55 0-1-.45-1-1V10c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v1H9.5v-.5h-2v1H10c.55 0 1 .45 1 1V14c0 .55-.45 1-1 1H7c-.55 0-1-.45-1-1v-1h1.5v.5h2zm5 0h2v-3h-2v3z" + }, + "children": [] + }] +}; +exports.ic_sd = ic_sd; \ No newline at end of file diff --git a/dist/md/ic_sd_card.js b/dist/md/ic_sd_card.js new file mode 100644 index 000000000..5dda21c7f --- /dev/null +++ b/dist/md/ic_sd_card.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sd_card = void 0; +var ic_sd_card = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 2h-8L4.02 8 4 20c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-6 6h-2V4h2v4zm3 0h-2V4h2v4zm3 0h-2V4h2v4z" + }, + "children": [] + }] +}; +exports.ic_sd_card = ic_sd_card; \ No newline at end of file diff --git a/dist/md/ic_sd_card_alert_outline.js b/dist/md/ic_sd_card_alert_outline.js new file mode 100644 index 000000000..7d683410f --- /dev/null +++ b/dist/md/ic_sd_card_alert_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sd_card_alert_outline = void 0; +var ic_sd_card_alert_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 2h-8L4.02 8 4 20c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H6V8.83L10.83 4H18v16zm-7-5h2v2h-2zm0-7h2v5h-2z" + }, + "children": [] + }] +}; +exports.ic_sd_card_alert_outline = ic_sd_card_alert_outline; \ No newline at end of file diff --git a/dist/md/ic_sd_card_alert_twotone.js b/dist/md/ic_sd_card_alert_twotone.js new file mode 100644 index 000000000..d0ec4213d --- /dev/null +++ b/dist/md/ic_sd_card_alert_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sd_card_alert_twotone = void 0; +var ic_sd_card_alert_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 8.83V20h12V4h-7.17L6 8.83zM11 8h2v5h-2V8zm0 7h2v2h-2v-2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 2h-8L4 8v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H6V8.83L10.83 4H18v16zm-7-5h2v2h-2zm0-7h2v5h-2z" + }, + "children": [] + }] +}; +exports.ic_sd_card_alert_twotone = ic_sd_card_alert_twotone; \ No newline at end of file diff --git a/dist/md/ic_sd_card_outline.js b/dist/md/ic_sd_card_outline.js new file mode 100644 index 000000000..afe63a53d --- /dev/null +++ b/dist/md/ic_sd_card_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sd_card_outline = void 0; +var ic_sd_card_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 2h-8L4 8v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H6V8.83L10.83 4H18v16zM9 7h2v4H9zm3 0h2v4h-2zm3 0h2v4h-2z" + }, + "children": [] + }] +}; +exports.ic_sd_card_outline = ic_sd_card_outline; \ No newline at end of file diff --git a/dist/md/ic_sd_card_twotone.js b/dist/md/ic_sd_card_twotone.js new file mode 100644 index 000000000..82f085088 --- /dev/null +++ b/dist/md/ic_sd_card_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sd_card_twotone = void 0; +var ic_sd_card_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 8.83V20h12V4h-7.17L6 8.83zM15 7h2v4h-2V7zm-3 0h2v4h-2V7zm-1 4H9V7h2v4z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 2h-8L4 8v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H6V8.83L10.83 4H18v16zM9 7h2v4H9zm3 0h2v4h-2zm3 0h2v4h-2z" + }, + "children": [] + }] +}; +exports.ic_sd_card_twotone = ic_sd_card_twotone; \ No newline at end of file diff --git a/dist/md/ic_sd_storage.js b/dist/md/ic_sd_storage.js new file mode 100644 index 000000000..8b77f3498 --- /dev/null +++ b/dist/md/ic_sd_storage.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sd_storage = void 0; +var ic_sd_storage = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 2h-8L4.02 8 4 20c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-6 6h-2V4h2v4zm3 0h-2V4h2v4zm3 0h-2V4h2v4z" + }, + "children": [] + }] +}; +exports.ic_sd_storage = ic_sd_storage; \ No newline at end of file diff --git a/dist/md/ic_sd_storage_outline.js b/dist/md/ic_sd_storage_outline.js new file mode 100644 index 000000000..e1602621b --- /dev/null +++ b/dist/md/ic_sd_storage_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sd_storage_outline = void 0; +var ic_sd_storage_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 4v16H6V8.83L10.83 4H18m0-2h-8L4 8v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM9 7h2v4H9zm3 0h2v4h-2zm3 0h2v4h-2z" + }, + "children": [] + }] +}; +exports.ic_sd_storage_outline = ic_sd_storage_outline; \ No newline at end of file diff --git a/dist/md/ic_sd_storage_twotone.js b/dist/md/ic_sd_storage_twotone.js new file mode 100644 index 000000000..20a978a99 --- /dev/null +++ b/dist/md/ic_sd_storage_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sd_storage_twotone = void 0; +var ic_sd_storage_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 8.83V20h12V4h-7.17L6 8.83zM15 7h2v4h-2V7zm-3 0h2v4h-2V7zm-1 4H9V7h2v4z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 2h-8L4 8v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H6V8.83L10.83 4H18v16zM9 7h2v4H9zm3 0h2v4h-2zm3 0h2v4h-2z" + }, + "children": [] + }] +}; +exports.ic_sd_storage_twotone = ic_sd_storage_twotone; \ No newline at end of file diff --git a/dist/md/ic_search.js b/dist/md/ic_search.js new file mode 100644 index 000000000..629e48817 --- /dev/null +++ b/dist/md/ic_search.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_search = void 0; +var ic_search = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z" + }, + "children": [] + }] +}; +exports.ic_search = ic_search; \ No newline at end of file diff --git a/dist/md/ic_search_off.js b/dist/md/ic_search_off.js new file mode 100644 index 000000000..85c448f9e --- /dev/null +++ b/dist/md/ic_search_off.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_search_off = void 0; +var ic_search_off = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M15.5,14h-0.79l-0.28-0.27C15.41,12.59,16,11.11,16,9.5C16,5.91,13.09,3,9.5,3C6.08,3,3.28,5.64,3.03,9h2.02 C5.3,6.75,7.18,5,9.5,5C11.99,5,14,7.01,14,9.5S11.99,14,9.5,14c-0.17,0-0.33-0.03-0.5-0.05v2.02C9.17,15.99,9.33,16,9.5,16 c1.61,0,3.09-0.59,4.23-1.57L14,14.71v0.79l5,4.99L20.49,19L15.5,14z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15.5,14h-0.79l-0.28-0.27C15.41,12.59,16,11.11,16,9.5C16,5.91,13.09,3,9.5,3C6.08,3,3.28,5.64,3.03,9h2.02 C5.3,6.75,7.18,5,9.5,5C11.99,5,14,7.01,14,9.5S11.99,14,9.5,14c-0.17,0-0.33-0.03-0.5-0.05v2.02C9.17,15.99,9.33,16,9.5,16 c1.61,0,3.09-0.59,4.23-1.57L14,14.71v0.79l5,4.99L20.49,19L15.5,14z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "6.47,10.82 4,13.29 1.53,10.82 0.82,11.53 3.29,14 0.82,16.47 1.53,17.18 4,14.71 6.47,17.18 7.18,16.47 4.71,14 7.18,11.53" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "6.47,10.82 4,13.29 1.53,10.82 0.82,11.53 3.29,14 0.82,16.47 1.53,17.18 4,14.71 6.47,17.18 7.18,16.47 4.71,14 7.18,11.53" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_search_off = ic_search_off; \ No newline at end of file diff --git a/dist/md/ic_search_off_outline.js b/dist/md/ic_search_off_outline.js new file mode 100644 index 000000000..7c1569488 --- /dev/null +++ b/dist/md/ic_search_off_outline.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_search_off_outline = void 0; +var ic_search_off_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M15.5,14h-0.79l-0.28-0.27C15.41,12.59,16,11.11,16,9.5C16,5.91,13.09,3,9.5,3C6.08,3,3.28,5.64,3.03,9h2.02 C5.3,6.75,7.18,5,9.5,5C11.99,5,14,7.01,14,9.5S11.99,14,9.5,14c-0.17,0-0.33-0.03-0.5-0.05v2.02C9.17,15.99,9.33,16,9.5,16 c1.61,0,3.09-0.59,4.23-1.57L14,14.71v0.79l5,4.99L20.49,19L15.5,14z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15.5,14h-0.79l-0.28-0.27C15.41,12.59,16,11.11,16,9.5C16,5.91,13.09,3,9.5,3C6.08,3,3.28,5.64,3.03,9h2.02 C5.3,6.75,7.18,5,9.5,5C11.99,5,14,7.01,14,9.5S11.99,14,9.5,14c-0.17,0-0.33-0.03-0.5-0.05v2.02C9.17,15.99,9.33,16,9.5,16 c1.61,0,3.09-0.59,4.23-1.57L14,14.71v0.79l5,4.99L20.49,19L15.5,14z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "6.47,10.82 4,13.29 1.53,10.82 0.82,11.53 3.29,14 0.82,16.47 1.53,17.18 4,14.71 6.47,17.18 7.18,16.47 4.71,14 7.18,11.53" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "6.47,10.82 4,13.29 1.53,10.82 0.82,11.53 3.29,14 0.82,16.47 1.53,17.18 4,14.71 6.47,17.18 7.18,16.47 4.71,14 7.18,11.53" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_search_off_outline = ic_search_off_outline; \ No newline at end of file diff --git a/dist/md/ic_search_off_twotone.js b/dist/md/ic_search_off_twotone.js new file mode 100644 index 000000000..af7c37cc8 --- /dev/null +++ b/dist/md/ic_search_off_twotone.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_search_off_twotone = void 0; +var ic_search_off_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M15.5,14h-0.79l-0.28-0.27C15.41,12.59,16,11.11,16,9.5C16,5.91,13.09,3,9.5,3C6.08,3,3.28,5.64,3.03,9h2.02 C5.3,6.75,7.18,5,9.5,5C11.99,5,14,7.01,14,9.5S11.99,14,9.5,14c-0.17,0-0.33-0.03-0.5-0.05v2.02C9.17,15.99,9.33,16,9.5,16 c1.61,0,3.09-0.59,4.23-1.57L14,14.71v0.79l5,4.99L20.49,19L15.5,14z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15.5,14h-0.79l-0.28-0.27C15.41,12.59,16,11.11,16,9.5C16,5.91,13.09,3,9.5,3C6.08,3,3.28,5.64,3.03,9h2.02 C5.3,6.75,7.18,5,9.5,5C11.99,5,14,7.01,14,9.5S11.99,14,9.5,14c-0.17,0-0.33-0.03-0.5-0.05v2.02C9.17,15.99,9.33,16,9.5,16 c1.61,0,3.09-0.59,4.23-1.57L14,14.71v0.79l5,4.99L20.49,19L15.5,14z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "6.47,10.82 4,13.29 1.53,10.82 0.82,11.53 3.29,14 0.82,16.47 1.53,17.18 4,14.71 6.47,17.18 7.18,16.47 4.71,14 7.18,11.53" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "6.47,10.82 4,13.29 1.53,10.82 0.82,11.53 3.29,14 0.82,16.47 1.53,17.18 4,14.71 6.47,17.18 7.18,16.47 4.71,14 7.18,11.53" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_search_off_twotone = ic_search_off_twotone; \ No newline at end of file diff --git a/dist/md/ic_search_outline.js b/dist/md/ic_search_outline.js new file mode 100644 index 000000000..18c2db13a --- /dev/null +++ b/dist/md/ic_search_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_search_outline = void 0; +var ic_search_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z" + }, + "children": [] + }] +}; +exports.ic_search_outline = ic_search_outline; \ No newline at end of file diff --git a/dist/md/ic_search_twotone.js b/dist/md/ic_search_twotone.js new file mode 100644 index 000000000..600838ce3 --- /dev/null +++ b/dist/md/ic_search_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_search_twotone = void 0; +var ic_search_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z" + }, + "children": [] + }] +}; +exports.ic_search_twotone = ic_search_twotone; \ No newline at end of file diff --git a/dist/md/ic_security.js b/dist/md/ic_security.js new file mode 100644 index 000000000..e8522866b --- /dev/null +++ b/dist/md/ic_security.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_security = void 0; +var ic_security = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm0 10.99h7c-.53 4.12-3.28 7.79-7 8.94V12H5V6.3l7-3.11v8.8z" + }, + "children": [] + }] +}; +exports.ic_security = ic_security; \ No newline at end of file diff --git a/dist/md/ic_security_outline.js b/dist/md/ic_security_outline.js new file mode 100644 index 000000000..97c214de1 --- /dev/null +++ b/dist/md/ic_security_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_security_outline = void 0; +var ic_security_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm0 10.99h7c-.53 4.12-3.28 7.79-7 8.94V12H5V6.3l7-3.11v8.8z" + }, + "children": [] + }] +}; +exports.ic_security_outline = ic_security_outline; \ No newline at end of file diff --git a/dist/md/ic_security_twotone.js b/dist/md/ic_security_twotone.js new file mode 100644 index 000000000..c77d78ea5 --- /dev/null +++ b/dist/md/ic_security_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_security_twotone = void 0; +var ic_security_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 3.19L5 6.3V12h7v8.93c3.72-1.15 6.47-4.82 7-8.94h-7v-8.8z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm0 19.93V12H5V6.3l7-3.11v8.8h7c-.53 4.12-3.28 7.79-7 8.94z" + }, + "children": [] + }] +}; +exports.ic_security_twotone = ic_security_twotone; \ No newline at end of file diff --git a/dist/md/ic_segment.js b/dist/md/ic_segment.js new file mode 100644 index 000000000..cb3e7e4d7 --- /dev/null +++ b/dist/md/ic_segment.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_segment = void 0; +var ic_segment = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 18h12v-2H9v2zM3 6v2h18V6H3zm6 7h12v-2H9v2z" + }, + "children": [] + }] +}; +exports.ic_segment = ic_segment; \ No newline at end of file diff --git a/dist/md/ic_select_all.js b/dist/md/ic_select_all.js new file mode 100644 index 000000000..bdf751497 --- /dev/null +++ b/dist/md/ic_select_all.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_select_all = void 0; +var ic_select_all = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 5h2V3c-1.1 0-2 .9-2 2zm0 8h2v-2H3v2zm4 8h2v-2H7v2zM3 9h2V7H3v2zm10-6h-2v2h2V3zm6 0v2h2c0-1.1-.9-2-2-2zM5 21v-2H3c0 1.1.9 2 2 2zm-2-4h2v-2H3v2zM9 3H7v2h2V3zm2 18h2v-2h-2v2zm8-8h2v-2h-2v2zm0 8c1.1 0 2-.9 2-2h-2v2zm0-12h2V7h-2v2zm0 8h2v-2h-2v2zm-4 4h2v-2h-2v2zm0-16h2V3h-2v2zM7 17h10V7H7v10zm2-8h6v6H9V9z" + }, + "children": [] + }] +}; +exports.ic_select_all = ic_select_all; \ No newline at end of file diff --git a/dist/md/ic_select_all_outline.js b/dist/md/ic_select_all_outline.js new file mode 100644 index 000000000..778587a3d --- /dev/null +++ b/dist/md/ic_select_all_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_select_all_outline = void 0; +var ic_select_all_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 5h2V3c-1.1 0-2 .9-2 2zm0 8h2v-2H3v2zm4 8h2v-2H7v2zM3 9h2V7H3v2zm10-6h-2v2h2V3zm6 0v2h2c0-1.1-.9-2-2-2zM5 21v-2H3c0 1.1.9 2 2 2zm-2-4h2v-2H3v2zM9 3H7v2h2V3zm2 18h2v-2h-2v2zm8-8h2v-2h-2v2zm0 8c1.1 0 2-.9 2-2h-2v2zm0-12h2V7h-2v2zm0 8h2v-2h-2v2zm-4 4h2v-2h-2v2zm0-16h2V3h-2v2zM7 17h10V7H7v10zm2-8h6v6H9V9z" + }, + "children": [] + }] +}; +exports.ic_select_all_outline = ic_select_all_outline; \ No newline at end of file diff --git a/dist/md/ic_select_all_twotone.js b/dist/md/ic_select_all_twotone.js new file mode 100644 index 000000000..4dd752d71 --- /dev/null +++ b/dist/md/ic_select_all_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_select_all_twotone = void 0; +var ic_select_all_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 5h2V3c-1.1 0-2 .9-2 2zm0 8h2v-2H3v2zm4 8h2v-2H7v2zM3 9h2V7H3v2zm10-6h-2v2h2V3zm6 0v2h2c0-1.1-.9-2-2-2zM5 21v-2H3c0 1.1.9 2 2 2zm-2-4h2v-2H3v2zM9 3H7v2h2V3zm2 18h2v-2h-2v2zm8-8h2v-2h-2v2zm0 8c1.1 0 2-.9 2-2h-2v2zm0-12h2V7h-2v2zm0 8h2v-2h-2v2zm-4 4h2v-2h-2v2zm0-16h2V3h-2v2zM7 17h10V7H7v10zm2-8h6v6H9V9z" + }, + "children": [] + }] +}; +exports.ic_select_all_twotone = ic_select_all_twotone; \ No newline at end of file diff --git a/dist/md/ic_self_improvement.js b/dist/md/ic_self_improvement.js new file mode 100644 index 000000000..5500b81d9 --- /dev/null +++ b/dist/md/ic_self_improvement.js @@ -0,0 +1,71 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_self_improvement = void 0; +var ic_self_improvement = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "6", + "r": "2" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "6", + "r": "2" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M21,16v-2c-2.24,0-4.16-0.96-5.6-2.68l-1.34-1.6C13.68,9.26,13.12,9,12.53,9h-1.05c-0.59,0-1.15,0.26-1.53,0.72l-1.34,1.6 C7.16,13.04,5.24,14,3,14v2c2.77,0,5.19-1.17,7-3.25V15l-3.88,1.55C5.45,16.82,5,17.48,5,18.21C5,19.2,5.8,20,6.79,20H9v-0.5 c0-1.38,1.12-2.5,2.5-2.5h3c0.28,0,0.5,0.22,0.5,0.5S14.78,18,14.5,18h-3c-0.83,0-1.5,0.67-1.5,1.5V20h7.21 C18.2,20,19,19.2,19,18.21c0-0.73-0.45-1.39-1.12-1.66L14,15v-2.25C15.81,14.83,18.23,16,21,16z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21,16v-2c-2.24,0-4.16-0.96-5.6-2.68l-1.34-1.6C13.68,9.26,13.12,9,12.53,9h-1.05c-0.59,0-1.15,0.26-1.53,0.72l-1.34,1.6 C7.16,13.04,5.24,14,3,14v2c2.77,0,5.19-1.17,7-3.25V15l-3.88,1.55C5.45,16.82,5,17.48,5,18.21C5,19.2,5.8,20,6.79,20H9v-0.5 c0-1.38,1.12-2.5,2.5-2.5h3c0.28,0,0.5,0.22,0.5,0.5S14.78,18,14.5,18h-3c-0.83,0-1.5,0.67-1.5,1.5V20h7.21 C18.2,20,19,19.2,19,18.21c0-0.73-0.45-1.39-1.12-1.66L14,15v-2.25C15.81,14.83,18.23,16,21,16z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_self_improvement = ic_self_improvement; \ No newline at end of file diff --git a/dist/md/ic_self_improvement_outline.js b/dist/md/ic_self_improvement_outline.js new file mode 100644 index 000000000..bb79c0306 --- /dev/null +++ b/dist/md/ic_self_improvement_outline.js @@ -0,0 +1,71 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_self_improvement_outline = void 0; +var ic_self_improvement_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "6", + "r": "2" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "6", + "r": "2" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M21,16v-2c-2.24,0-4.16-0.96-5.6-2.68l-1.34-1.6C13.68,9.26,13.12,9,12.53,9h-1.05c-0.59,0-1.15,0.26-1.53,0.72l-1.34,1.6 C7.16,13.04,5.24,14,3,14v2c2.77,0,5.19-1.17,7-3.25V15l-3.88,1.55C5.45,16.82,5,17.48,5,18.21C5,19.2,5.8,20,6.79,20H9v-0.5 c0-1.38,1.12-2.5,2.5-2.5h3c0.28,0,0.5,0.22,0.5,0.5S14.78,18,14.5,18h-3c-0.83,0-1.5,0.67-1.5,1.5V20h7.21 C18.2,20,19,19.2,19,18.21c0-0.73-0.45-1.39-1.12-1.66L14,15v-2.25C15.81,14.83,18.23,16,21,16z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21,16v-2c-2.24,0-4.16-0.96-5.6-2.68l-1.34-1.6C13.68,9.26,13.12,9,12.53,9h-1.05c-0.59,0-1.15,0.26-1.53,0.72l-1.34,1.6 C7.16,13.04,5.24,14,3,14v2c2.77,0,5.19-1.17,7-3.25V15l-3.88,1.55C5.45,16.82,5,17.48,5,18.21C5,19.2,5.8,20,6.79,20H9v-0.5 c0-1.38,1.12-2.5,2.5-2.5h3c0.28,0,0.5,0.22,0.5,0.5S14.78,18,14.5,18h-3c-0.83,0-1.5,0.67-1.5,1.5V20h7.21 C18.2,20,19,19.2,19,18.21c0-0.73-0.45-1.39-1.12-1.66L14,15v-2.25C15.81,14.83,18.23,16,21,16z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_self_improvement_outline = ic_self_improvement_outline; \ No newline at end of file diff --git a/dist/md/ic_self_improvement_twotone.js b/dist/md/ic_self_improvement_twotone.js new file mode 100644 index 000000000..f995170df --- /dev/null +++ b/dist/md/ic_self_improvement_twotone.js @@ -0,0 +1,71 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_self_improvement_twotone = void 0; +var ic_self_improvement_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "6", + "r": "2" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "6", + "r": "2" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M21,16v-2c-2.24,0-4.16-0.96-5.6-2.68l-1.34-1.6C13.68,9.26,13.12,9,12.53,9h-1.05c-0.59,0-1.15,0.26-1.53,0.72l-1.34,1.6 C7.16,13.04,5.24,14,3,14v2c2.77,0,5.19-1.17,7-3.25V15l-3.88,1.55C5.45,16.82,5,17.48,5,18.21C5,19.2,5.8,20,6.79,20H9v-0.5 c0-1.38,1.12-2.5,2.5-2.5h3c0.28,0,0.5,0.22,0.5,0.5S14.78,18,14.5,18h-3c-0.83,0-1.5,0.67-1.5,1.5V20h7.21 C18.2,20,19,19.2,19,18.21c0-0.73-0.45-1.39-1.12-1.66L14,15v-2.25C15.81,14.83,18.23,16,21,16z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21,16v-2c-2.24,0-4.16-0.96-5.6-2.68l-1.34-1.6C13.68,9.26,13.12,9,12.53,9h-1.05c-0.59,0-1.15,0.26-1.53,0.72l-1.34,1.6 C7.16,13.04,5.24,14,3,14v2c2.77,0,5.19-1.17,7-3.25V15l-3.88,1.55C5.45,16.82,5,17.48,5,18.21C5,19.2,5.8,20,6.79,20H9v-0.5 c0-1.38,1.12-2.5,2.5-2.5h3c0.28,0,0.5,0.22,0.5,0.5S14.78,18,14.5,18h-3c-0.83,0-1.5,0.67-1.5,1.5V20h7.21 C18.2,20,19,19.2,19,18.21c0-0.73-0.45-1.39-1.12-1.66L14,15v-2.25C15.81,14.83,18.23,16,21,16z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_self_improvement_twotone = ic_self_improvement_twotone; \ No newline at end of file diff --git a/dist/md/ic_send.js b/dist/md/ic_send.js new file mode 100644 index 000000000..9cbe7b5cd --- /dev/null +++ b/dist/md/ic_send.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_send = void 0; +var ic_send = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M2.01 21L23 12 2.01 3 2 10l15 2-15 2z" + }, + "children": [] + }] +}; +exports.ic_send = ic_send; \ No newline at end of file diff --git a/dist/md/ic_send_and_archive.js b/dist/md/ic_send_and_archive.js new file mode 100644 index 000000000..033c078f2 --- /dev/null +++ b/dist/md/ic_send_and_archive.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_send_and_archive = void 0; +var ic_send_and_archive = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 10h-3L2 3v7l9 2-9 2v7l8-3.5V21c0 1.1.9 2 2 2h9c1.1 0 2-.9 2-2v-9c0-1.1-.9-2-2-2zm0 11h-9v-9h9v9zm-4.5-1L13 16h2v-3h3v3h2l-3.5 4z" + }, + "children": [] + }] +}; +exports.ic_send_and_archive = ic_send_and_archive; \ No newline at end of file diff --git a/dist/md/ic_send_outline.js b/dist/md/ic_send_outline.js new file mode 100644 index 000000000..22305021f --- /dev/null +++ b/dist/md/ic_send_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_send_outline = void 0; +var ic_send_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4.01 6.03l7.51 3.22-7.52-1 .01-2.22m7.5 8.72L4 17.97v-2.22l7.51-1M2.01 3L2 10l15 2-15 2 .01 7L23 12 2.01 3z" + }, + "children": [] + }] +}; +exports.ic_send_outline = ic_send_outline; \ No newline at end of file diff --git a/dist/md/ic_send_to_mobile.js b/dist/md/ic_send_to_mobile.js new file mode 100644 index 000000000..5cbb5e6b6 --- /dev/null +++ b/dist/md/ic_send_to_mobile.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_send_to_mobile = void 0; +var ic_send_to_mobile = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17,17h2v4c0,1.1-0.9,2-2,2H7c-1.1,0-2-0.9-2-2V3c0-1.1,0.9-1.99,2-1.99L17,1c1.1,0,2,0.9,2,2v4h-2V6H7v12h10V17z M22,12 l-4-4v3h-5v2h5v3L22,12z" + }, + "children": [] + }] +}; +exports.ic_send_to_mobile = ic_send_to_mobile; \ No newline at end of file diff --git a/dist/md/ic_send_twotone.js b/dist/md/ic_send_twotone.js new file mode 100644 index 000000000..6ba3be433 --- /dev/null +++ b/dist/md/ic_send_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_send_twotone = void 0; +var ic_send_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 8.25l7.51 1-7.5-3.22zm.01 9.72l7.5-3.22-7.51 1z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M2.01 3L2 10l15 2-15 2 .01 7L23 12 2.01 3zM4 8.25V6.03l7.51 3.22-7.51-1zm.01 9.72v-2.22l7.51-1-7.51 3.22z" + }, + "children": [] + }] +}; +exports.ic_send_twotone = ic_send_twotone; \ No newline at end of file diff --git a/dist/md/ic_sensor_door.js b/dist/md/ic_sensor_door.js new file mode 100644 index 000000000..b7ff0f250 --- /dev/null +++ b/dist/md/ic_sensor_door.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sensor_door = void 0; +var ic_sensor_door = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M18,2H6C4.9,2,4,2.9,4,4v18h16V4C20,2.9,19.1,2,18,2z M15.5,13.5c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5 S17,11.17,17,12S16.33,13.5,15.5,13.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18,2H6C4.9,2,4,2.9,4,4v18h16V4C20,2.9,19.1,2,18,2z M15.5,13.5c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5 S17,11.17,17,12S16.33,13.5,15.5,13.5z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_sensor_door = ic_sensor_door; \ No newline at end of file diff --git a/dist/md/ic_sensor_door_outline.js b/dist/md/ic_sensor_door_outline.js new file mode 100644 index 000000000..21ba7ed84 --- /dev/null +++ b/dist/md/ic_sensor_door_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sensor_door_outline = void 0; +var ic_sensor_door_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M18,4v16H6V4H18 M18,2H6C4.9,2,4,2.9,4,4v18h16V4C20,2.9,19.1,2,18,2L18,2z M15.5,10.5c-0.83,0-1.5,0.67-1.5,1.5 s0.67,1.5,1.5,1.5c0.83,0,1.5-0.67,1.5-1.5S16.33,10.5,15.5,10.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18,4v16H6V4H18 M18,2H6C4.9,2,4,2.9,4,4v18h16V4C20,2.9,19.1,2,18,2L18,2z M15.5,10.5c-0.83,0-1.5,0.67-1.5,1.5 s0.67,1.5,1.5,1.5c0.83,0,1.5-0.67,1.5-1.5S16.33,10.5,15.5,10.5z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_sensor_door_outline = ic_sensor_door_outline; \ No newline at end of file diff --git a/dist/md/ic_sensor_door_twotone.js b/dist/md/ic_sensor_door_twotone.js new file mode 100644 index 000000000..038fc9160 --- /dev/null +++ b/dist/md/ic_sensor_door_twotone.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sensor_door_twotone = void 0; +var ic_sensor_door_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M18,4v16H6V4H18 M15.5,10.5c-0.83,0-1.5,0.67-1.5,1.5s0.67,1.5,1.5,1.5c0.83,0,1.5-0.67,1.5-1.5 S16.33,10.5,15.5,10.5z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18,4v16H6V4H18 M15.5,10.5c-0.83,0-1.5,0.67-1.5,1.5s0.67,1.5,1.5,1.5c0.83,0,1.5-0.67,1.5-1.5 S16.33,10.5,15.5,10.5z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M18,4v16H6V4H18 M18,2H6C4.9,2,4,2.9,4,4v18h16V4C20,2.9,19.1,2,18,2L18,2z M15.5,10.5c-0.83,0-1.5,0.67-1.5,1.5 s0.67,1.5,1.5,1.5c0.83,0,1.5-0.67,1.5-1.5S16.33,10.5,15.5,10.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18,4v16H6V4H18 M18,2H6C4.9,2,4,2.9,4,4v18h16V4C20,2.9,19.1,2,18,2L18,2z M15.5,10.5c-0.83,0-1.5,0.67-1.5,1.5 s0.67,1.5,1.5,1.5c0.83,0,1.5-0.67,1.5-1.5S16.33,10.5,15.5,10.5z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_sensor_door_twotone = ic_sensor_door_twotone; \ No newline at end of file diff --git a/dist/md/ic_sensor_window.js b/dist/md/ic_sensor_window.js new file mode 100644 index 000000000..290343a68 --- /dev/null +++ b/dist/md/ic_sensor_window.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sensor_window = void 0; +var ic_sensor_window = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M18,4v16H6V4H18 M18,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C20,2.9,19.1,2,18,2L18,2z M7,19h10v-6H7 V19z M10,10h4v1h3V5H7v6h3V10z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18,4v16H6V4H18 M18,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C20,2.9,19.1,2,18,2L18,2z M7,19h10v-6H7 V19z M10,10h4v1h3V5H7v6h3V10z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_sensor_window = ic_sensor_window; \ No newline at end of file diff --git a/dist/md/ic_sensor_window_outline.js b/dist/md/ic_sensor_window_outline.js new file mode 100644 index 000000000..1c9fc1cd1 --- /dev/null +++ b/dist/md/ic_sensor_window_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sensor_window_outline = void 0; +var ic_sensor_window_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M18,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C20,2.9,19.1,2,18,2z M18,4v7h-4v-1h-4v1H6V4H18z M6,20 v-7h12v7H6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C20,2.9,19.1,2,18,2z M18,4v7h-4v-1h-4v1H6V4H18z M6,20 v-7h12v7H6z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_sensor_window_outline = ic_sensor_window_outline; \ No newline at end of file diff --git a/dist/md/ic_sensor_window_twotone.js b/dist/md/ic_sensor_window_twotone.js new file mode 100644 index 000000000..cadba6aa7 --- /dev/null +++ b/dist/md/ic_sensor_window_twotone.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sensor_window_twotone = void 0; +var ic_sensor_window_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M18,4v7h-4v-1h-4v1H6V4H18z M6,20v-7h12v7H6z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18,4v7h-4v-1h-4v1H6V4H18z M6,20v-7h12v7H6z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M18,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C20,2.9,19.1,2,18,2z M18,4v7h-4v-1h-4v1H6V4H18z M6,20 v-7h12v7H6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C20,2.9,19.1,2,18,2z M18,4v7h-4v-1h-4v1H6V4H18z M6,20 v-7h12v7H6z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_sensor_window_twotone = ic_sensor_window_twotone; \ No newline at end of file diff --git a/dist/md/ic_sentiment_dissatisfied.js b/dist/md/ic_sentiment_dissatisfied.js new file mode 100644 index 000000000..2c4a8f174 --- /dev/null +++ b/dist/md/ic_sentiment_dissatisfied.js @@ -0,0 +1,40 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sentiment_dissatisfied = void 0; +var ic_sentiment_dissatisfied = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "15.5", + "cy": "9.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "8.5", + "cy": "9.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm0-3.5c.73 0 1.39.19 1.97.53.12-.14.86-.98 1.01-1.14-.85-.56-1.87-.89-2.98-.89-1.11 0-2.13.33-2.99.88.97 1.09.01.02 1.01 1.14.59-.33 1.25-.52 1.98-.52z" + }, + "children": [] + }] +}; +exports.ic_sentiment_dissatisfied = ic_sentiment_dissatisfied; \ No newline at end of file diff --git a/dist/md/ic_sentiment_dissatisfied_outline.js b/dist/md/ic_sentiment_dissatisfied_outline.js new file mode 100644 index 000000000..e77c9c0cf --- /dev/null +++ b/dist/md/ic_sentiment_dissatisfied_outline.js @@ -0,0 +1,40 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sentiment_dissatisfied_outline = void 0; +var ic_sentiment_dissatisfied_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "15.5", + "cy": "9.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "8.5", + "cy": "9.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 14c-2.33 0-4.32 1.45-5.12 3.5h1.67c.69-1.19 1.97-2 3.45-2s2.75.81 3.45 2h1.67c-.8-2.05-2.79-3.5-5.12-3.5zm-.01-12C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" + }, + "children": [] + }] +}; +exports.ic_sentiment_dissatisfied_outline = ic_sentiment_dissatisfied_outline; \ No newline at end of file diff --git a/dist/md/ic_sentiment_dissatisfied_twotone.js b/dist/md/ic_sentiment_dissatisfied_twotone.js new file mode 100644 index 000000000..14ecff016 --- /dev/null +++ b/dist/md/ic_sentiment_dissatisfied_twotone.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sentiment_dissatisfied_twotone = void 0; +var ic_sentiment_dissatisfied_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm3.5 4c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-7 0c.83 0 1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5 7.67 8 8.5 8zm6.95 9.5c-.7-1.19-1.97-2-3.45-2s-2.76.81-3.45 2H6.88C7.68 15.45 9.67 14 12 14s4.32 1.45 5.12 3.5h-1.67z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "15.5", + "cy": "9.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "8.5", + "cy": "9.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm0-6c-2.33 0-4.32 1.45-5.12 3.5h1.67c.69-1.19 1.97-2 3.45-2s2.75.81 3.45 2h1.67c-.8-2.05-2.79-3.5-5.12-3.5z" + }, + "children": [] + }] +}; +exports.ic_sentiment_dissatisfied_twotone = ic_sentiment_dissatisfied_twotone; \ No newline at end of file diff --git a/dist/md/ic_sentiment_neutral.js b/dist/md/ic_sentiment_neutral.js new file mode 100644 index 000000000..6c5cc1e24 --- /dev/null +++ b/dist/md/ic_sentiment_neutral.js @@ -0,0 +1,46 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sentiment_neutral = void 0; +var ic_sentiment_neutral = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 15.5h6v1H9v-1z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "15.5", + "cy": "9.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "8.5", + "cy": "9.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" + }, + "children": [] + }] +}; +exports.ic_sentiment_neutral = ic_sentiment_neutral; \ No newline at end of file diff --git a/dist/md/ic_sentiment_neutral_outline.js b/dist/md/ic_sentiment_neutral_outline.js new file mode 100644 index 000000000..a85e57a3b --- /dev/null +++ b/dist/md/ic_sentiment_neutral_outline.js @@ -0,0 +1,46 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sentiment_neutral_outline = void 0; +var ic_sentiment_neutral_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 14h6v1.5H9z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "15.5", + "cy": "9.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "8.5", + "cy": "9.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" + }, + "children": [] + }] +}; +exports.ic_sentiment_neutral_outline = ic_sentiment_neutral_outline; \ No newline at end of file diff --git a/dist/md/ic_sentiment_neutral_twotone.js b/dist/md/ic_sentiment_neutral_twotone.js new file mode 100644 index 000000000..528275917 --- /dev/null +++ b/dist/md/ic_sentiment_neutral_twotone.js @@ -0,0 +1,53 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sentiment_neutral_twotone = void 0; +var ic_sentiment_neutral_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zM7 9.5C7 8.67 7.67 8 8.5 8s1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5zm8 6H9V14h6v1.5zm.5-4.5c-.83 0-1.5-.67-1.5-1.5S14.67 8 15.5 8s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 14h6v1.5H9z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "15.5", + "cy": "9.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "8.5", + "cy": "9.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" + }, + "children": [] + }] +}; +exports.ic_sentiment_neutral_twotone = ic_sentiment_neutral_twotone; \ No newline at end of file diff --git a/dist/md/ic_sentiment_satisfied.js b/dist/md/ic_sentiment_satisfied.js new file mode 100644 index 000000000..47a1523ca --- /dev/null +++ b/dist/md/ic_sentiment_satisfied.js @@ -0,0 +1,40 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sentiment_satisfied = void 0; +var ic_sentiment_satisfied = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "15.5", + "cy": "9.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "8.5", + "cy": "9.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm0-4c-.73 0-1.38-.18-1.96-.52-.12.14-.86.98-1.01 1.15.86.55 1.87.87 2.97.87 1.11 0 2.12-.33 2.98-.88-.97-1.09-.01-.02-1.01-1.15-.59.35-1.24.53-1.97.53z" + }, + "children": [] + }] +}; +exports.ic_sentiment_satisfied = ic_sentiment_satisfied; \ No newline at end of file diff --git a/dist/md/ic_sentiment_satisfied_alt.js b/dist/md/ic_sentiment_satisfied_alt.js new file mode 100644 index 000000000..59259d8da --- /dev/null +++ b/dist/md/ic_sentiment_satisfied_alt.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sentiment_satisfied_alt = void 0; +var ic_sentiment_satisfied_alt = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "15.5", + "cy": "9.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "8.5", + "cy": "9.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "15.5", + "cy": "9.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "8.5", + "cy": "9.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm0-2.5c2.33 0 4.32-1.45 5.12-3.5h-1.67c-.69 1.19-1.97 2-3.45 2s-2.75-.81-3.45-2H6.88c.8 2.05 2.79 3.5 5.12 3.5z" + }, + "children": [] + }] +}; +exports.ic_sentiment_satisfied_alt = ic_sentiment_satisfied_alt; \ No newline at end of file diff --git a/dist/md/ic_sentiment_satisfied_alt_outline.js b/dist/md/ic_sentiment_satisfied_alt_outline.js new file mode 100644 index 000000000..e0c1f85ec --- /dev/null +++ b/dist/md/ic_sentiment_satisfied_alt_outline.js @@ -0,0 +1,40 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sentiment_satisfied_alt_outline = void 0; +var ic_sentiment_satisfied_alt_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "15.5", + "cy": "9.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "8.5", + "cy": "9.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 16c-1.48 0-2.75-.81-3.45-2H6.88c.8 2.05 2.79 3.5 5.12 3.5s4.32-1.45 5.12-3.5h-1.67c-.69 1.19-1.97 2-3.45 2zm-.01-14C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" + }, + "children": [] + }] +}; +exports.ic_sentiment_satisfied_alt_outline = ic_sentiment_satisfied_alt_outline; \ No newline at end of file diff --git a/dist/md/ic_sentiment_satisfied_alt_twotone.js b/dist/md/ic_sentiment_satisfied_alt_twotone.js new file mode 100644 index 000000000..60bfebe52 --- /dev/null +++ b/dist/md/ic_sentiment_satisfied_alt_twotone.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sentiment_satisfied_alt_twotone = void 0; +var ic_sentiment_satisfied_alt_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm3.5 4c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-7 0c.83 0 1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5 7.67 8 8.5 8zm3.5 9.5c-2.33 0-4.32-1.45-5.12-3.5h1.67c.7 1.19 1.97 2 3.45 2s2.76-.81 3.45-2h1.67c-.8 2.05-2.79 3.5-5.12 3.5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "15.5", + "cy": "9.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "8.5", + "cy": "9.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 16c-1.48 0-2.75-.81-3.45-2H6.88c.8 2.05 2.79 3.5 5.12 3.5s4.32-1.45 5.12-3.5h-1.67c-.69 1.19-1.97 2-3.45 2zm-.01-14C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" + }, + "children": [] + }] +}; +exports.ic_sentiment_satisfied_alt_twotone = ic_sentiment_satisfied_alt_twotone; \ No newline at end of file diff --git a/dist/md/ic_sentiment_satisfied_outline.js b/dist/md/ic_sentiment_satisfied_outline.js new file mode 100644 index 000000000..022600601 --- /dev/null +++ b/dist/md/ic_sentiment_satisfied_outline.js @@ -0,0 +1,40 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sentiment_satisfied_outline = void 0; +var ic_sentiment_satisfied_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "15.5", + "cy": "9.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "8.5", + "cy": "9.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 16c-1.48 0-2.75-.81-3.45-2H6.88c.8 2.05 2.79 3.5 5.12 3.5s4.32-1.45 5.12-3.5h-1.67c-.7 1.19-1.97 2-3.45 2zm-.01-14C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" + }, + "children": [] + }] +}; +exports.ic_sentiment_satisfied_outline = ic_sentiment_satisfied_outline; \ No newline at end of file diff --git a/dist/md/ic_sentiment_satisfied_twotone.js b/dist/md/ic_sentiment_satisfied_twotone.js new file mode 100644 index 000000000..28366fe79 --- /dev/null +++ b/dist/md/ic_sentiment_satisfied_twotone.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sentiment_satisfied_twotone = void 0; +var ic_sentiment_satisfied_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm3.5 4c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-7 0c.83 0 1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5 7.67 8 8.5 8zm3.5 9.5c-2.33 0-4.32-1.45-5.12-3.5h1.67c.7 1.19 1.97 2 3.45 2s2.75-.81 3.45-2h1.67c-.8 2.05-2.79 3.5-5.12 3.5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "15.5", + "cy": "9.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "8.5", + "cy": "9.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 16c-1.48 0-2.75-.81-3.45-2H6.88c.8 2.05 2.79 3.5 5.12 3.5s4.32-1.45 5.12-3.5h-1.67c-.7 1.19-1.97 2-3.45 2zm-.01-14C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" + }, + "children": [] + }] +}; +exports.ic_sentiment_satisfied_twotone = ic_sentiment_satisfied_twotone; \ No newline at end of file diff --git a/dist/md/ic_sentiment_very_dissatisfied.js b/dist/md/ic_sentiment_very_dissatisfied.js new file mode 100644 index 000000000..90be687e9 --- /dev/null +++ b/dist/md/ic_sentiment_very_dissatisfied.js @@ -0,0 +1,40 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sentiment_very_dissatisfied = void 0; +var ic_sentiment_very_dissatisfied = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "15.5", + "cy": "9.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "8.5", + "cy": "9.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm0-6c-2.33 0-4.32 1.45-5.12 3.5h1.67c.69-1.19 1.97-2 3.45-2s2.75.81 3.45 2h1.67c-.8-2.05-2.79-3.5-5.12-3.5z" + }, + "children": [] + }] +}; +exports.ic_sentiment_very_dissatisfied = ic_sentiment_very_dissatisfied; \ No newline at end of file diff --git a/dist/md/ic_sentiment_very_dissatisfied_outline.js b/dist/md/ic_sentiment_very_dissatisfied_outline.js new file mode 100644 index 000000000..e96153a3d --- /dev/null +++ b/dist/md/ic_sentiment_very_dissatisfied_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sentiment_very_dissatisfied_outline = void 0; +var ic_sentiment_very_dissatisfied_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 13.5c-2.33 0-4.31 1.46-5.11 3.5h10.22c-.8-2.04-2.78-3.5-5.11-3.5zM7.82 12l1.06-1.06L9.94 12 11 10.94 9.94 9.88 11 8.82 9.94 7.76 8.88 8.82 7.82 7.76 6.76 8.82l1.06 1.06-1.06 1.06zm4.17-10C6.47 2 2 6.47 2 12s4.47 10 9.99 10S22 17.53 22 12 17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm4.18-12.24l-1.06 1.06-1.06-1.06L13 8.82l1.06 1.06L13 10.94 14.06 12l1.06-1.06L16.18 12l1.06-1.06-1.06-1.06 1.06-1.06z" + }, + "children": [] + }] +}; +exports.ic_sentiment_very_dissatisfied_outline = ic_sentiment_very_dissatisfied_outline; \ No newline at end of file diff --git a/dist/md/ic_sentiment_very_dissatisfied_twotone.js b/dist/md/ic_sentiment_very_dissatisfied_twotone.js new file mode 100644 index 000000000..9a66563b7 --- /dev/null +++ b/dist/md/ic_sentiment_very_dissatisfied_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sentiment_very_dissatisfied_twotone = void 0; +var ic_sentiment_very_dissatisfied_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zM6.76 8.82l1.06-1.06 1.06 1.06 1.06-1.06L11 8.82 9.94 9.88 11 10.94 9.94 12l-1.06-1.06L7.82 12l-1.06-1.06 1.06-1.06-1.06-1.06zM6.89 17c.8-2.04 2.78-3.5 5.11-3.5s4.31 1.46 5.11 3.5H6.89zm10.35-6.06L16.18 12l-1.06-1.06L14.06 12 13 10.94l1.06-1.06L13 8.82l1.06-1.06 1.06 1.06 1.06-1.06 1.06 1.06-1.06 1.06 1.06 1.06z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 13.5c-2.33 0-4.31 1.46-5.11 3.5h10.22c-.8-2.04-2.78-3.5-5.11-3.5zM7.82 12l1.06-1.06L9.94 12 11 10.94 9.94 9.88 11 8.82 9.94 7.76 8.88 8.82 7.82 7.76 6.76 8.82l1.06 1.06-1.06 1.06zm4.17-10C6.47 2 2 6.47 2 12s4.47 10 9.99 10S22 17.53 22 12 17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm4.18-12.24l-1.06 1.06-1.06-1.06L13 8.82l1.06 1.06L13 10.94 14.06 12l1.06-1.06L16.18 12l1.06-1.06-1.06-1.06 1.06-1.06z" + }, + "children": [] + }] +}; +exports.ic_sentiment_very_dissatisfied_twotone = ic_sentiment_very_dissatisfied_twotone; \ No newline at end of file diff --git a/dist/md/ic_sentiment_very_satisfied.js b/dist/md/ic_sentiment_very_satisfied.js new file mode 100644 index 000000000..49d64971c --- /dev/null +++ b/dist/md/ic_sentiment_very_satisfied.js @@ -0,0 +1,40 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sentiment_very_satisfied = void 0; +var ic_sentiment_very_satisfied = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "15.5", + "cy": "9.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "8.5", + "cy": "9.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm-5-6c.78 2.34 2.72 4 5 4s4.22-1.66 5-4H7z" + }, + "children": [] + }] +}; +exports.ic_sentiment_very_satisfied = ic_sentiment_very_satisfied; \ No newline at end of file diff --git a/dist/md/ic_sentiment_very_satisfied_outline.js b/dist/md/ic_sentiment_very_satisfied_outline.js new file mode 100644 index 000000000..6a3eb4837 --- /dev/null +++ b/dist/md/ic_sentiment_very_satisfied_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sentiment_very_satisfied_outline = void 0; +var ic_sentiment_very_satisfied_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.99 2C6.47 2 2 6.47 2 12s4.47 10 9.99 10S22 17.53 22 12 17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm1-10.06L14.06 11l1.06-1.06L16.18 11l1.06-1.06-2.12-2.12L13 9.94zm-4.12 0L9.94 11 11 9.94 8.88 7.82 6.76 9.94 7.82 11l1.06-1.06zM12 17.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z" + }, + "children": [] + }] +}; +exports.ic_sentiment_very_satisfied_outline = ic_sentiment_very_satisfied_outline; \ No newline at end of file diff --git a/dist/md/ic_sentiment_very_satisfied_twotone.js b/dist/md/ic_sentiment_very_satisfied_twotone.js new file mode 100644 index 000000000..088a95b9d --- /dev/null +++ b/dist/md/ic_sentiment_very_satisfied_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sentiment_very_satisfied_twotone = void 0; +var ic_sentiment_very_satisfied_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zM8.88 7.82L11 9.94 9.94 11 8.88 9.94 7.82 11 6.76 9.94l2.12-2.12zM12 17.5c-2.33 0-4.31-1.46-5.11-3.5h10.22c-.8 2.04-2.78 3.5-5.11 3.5zm4.18-6.5l-1.06-1.06L14.06 11 13 9.94l2.12-2.12 2.12 2.12L16.18 11z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8.88 9.94L9.94 11 11 9.94 8.88 7.82 6.76 9.94 7.82 11zm4.12 0L14.06 11l1.06-1.06L16.18 11l1.06-1.06-2.12-2.12zM11.99 2C6.47 2 2 6.47 2 12s4.47 10 9.99 10S22 17.53 22 12 17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm0-2.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z" + }, + "children": [] + }] +}; +exports.ic_sentiment_very_satisfied_twotone = ic_sentiment_very_satisfied_twotone; \ No newline at end of file diff --git a/dist/md/ic_set_meal.js b/dist/md/ic_set_meal.js new file mode 100644 index 000000000..6ee73223d --- /dev/null +++ b/dist/md/ic_set_meal.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_set_meal = void 0; +var ic_set_meal = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21.05,17.56L3.08,18.5L3,17l17.98-0.94L21.05,17.56z M21,19.48H3v1.5h18V19.48z M22,5v7c0,1.1-0.9,2-2,2H4 c-1.1,0-2-0.9-2-2V5c0-1.1,0.9-2,2-2h16C21.1,3,22,3.9,22,5z M20,6c-1.68,0-3.04,0.98-3.21,2.23C16.15,7.5,14.06,5.5,10.25,5.5 c-4.67,0-6.75,3-6.75,3s2.08,3,6.75,3c3.81,0,5.9-2,6.54-2.73C16.96,10.02,18.32,11,20,11V6z" + }, + "children": [] + }] +}; +exports.ic_set_meal = ic_set_meal; \ No newline at end of file diff --git a/dist/md/ic_set_meal_outline.js b/dist/md/ic_set_meal_outline.js new file mode 100644 index 000000000..e561ee126 --- /dev/null +++ b/dist/md/ic_set_meal_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_set_meal_outline = void 0; +var ic_set_meal_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21.05,17.56L3.08,18.5L3,17l17.98-0.94L21.05,17.56z M21,19.48H3v1.5h18V19.48z M23,13V4c0-1.1-0.9-2-2-2H3 C1.9,2,1,2.9,1,4v9c0,1.1,0.9,2,2,2h18C22.1,15,23,14.1,23,13z M21,13H3V4h18V13z M20,6c-1.68,0-3.04,0.98-3.21,2.23 C16.15,7.5,14.06,5.5,10.25,5.5c-4.67,0-6.75,3-6.75,3s2.08,3,6.75,3c3.81,0,5.9-2,6.54-2.73C16.96,10.02,18.32,11,20,11V6z" + }, + "children": [] + }] +}; +exports.ic_set_meal_outline = ic_set_meal_outline; \ No newline at end of file diff --git a/dist/md/ic_set_meal_twotone.js b/dist/md/ic_set_meal_twotone.js new file mode 100644 index 000000000..29b322be2 --- /dev/null +++ b/dist/md/ic_set_meal_twotone.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_set_meal_twotone = void 0; +var ic_set_meal_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21,13H3V4h18V13z M20,6c-1.68,0-3.04,0.98-3.21,2.23C16.15,7.5,14.06,5.5,10.25,5.5c-4.67,0-6.75,3-6.75,3 s2.08,3,6.75,3c3.81,0,5.9-2,6.54-2.73C16.96,10.02,18.32,11,20,11V6z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21.05,17.56L3.08,18.5L3,17l17.98-0.94L21.05,17.56z M21,19.48H3v1.5h18V19.48z M23,13V4c0-1.1-0.9-2-2-2H3 C1.9,2,1,2.9,1,4v9c0,1.1,0.9,2,2,2h18C22.1,15,23,14.1,23,13z M21,13H3V4h18V13z M20,6c-1.68,0-3.04,0.98-3.21,2.23 C16.15,7.5,14.06,5.5,10.25,5.5c-4.67,0-6.75,3-6.75,3s2.08,3,6.75,3c3.81,0,5.9-2,6.54-2.73C16.96,10.02,18.32,11,20,11V6z" + }, + "children": [] + }] +}; +exports.ic_set_meal_twotone = ic_set_meal_twotone; \ No newline at end of file diff --git a/dist/md/ic_settings.js b/dist/md/ic_settings.js new file mode 100644 index 000000000..94f7151f3 --- /dev/null +++ b/dist/md/ic_settings.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_settings = void 0; +var ic_settings = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M0,0h24v24H0V0z", + "fill": "none" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M0,0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19.14,12.94c0.04-0.3,0.06-0.61,0.06-0.94c0-0.32-0.02-0.64-0.07-0.94l2.03-1.58c0.18-0.14,0.23-0.41,0.12-0.61 l-1.92-3.32c-0.12-0.22-0.37-0.29-0.59-0.22l-2.39,0.96c-0.5-0.38-1.03-0.7-1.62-0.94L14.4,2.81c-0.04-0.24-0.24-0.41-0.48-0.41 h-3.84c-0.24,0-0.43,0.17-0.47,0.41L9.25,5.35C8.66,5.59,8.12,5.92,7.63,6.29L5.24,5.33c-0.22-0.08-0.47,0-0.59,0.22L2.74,8.87 C2.62,9.08,2.66,9.34,2.86,9.48l2.03,1.58C4.84,11.36,4.8,11.69,4.8,12s0.02,0.64,0.07,0.94l-2.03,1.58 c-0.18,0.14-0.23,0.41-0.12,0.61l1.92,3.32c0.12,0.22,0.37,0.29,0.59,0.22l2.39-0.96c0.5,0.38,1.03,0.7,1.62,0.94l0.36,2.54 c0.05,0.24,0.24,0.41,0.48,0.41h3.84c0.24,0,0.44-0.17,0.47-0.41l0.36-2.54c0.59-0.24,1.13-0.56,1.62-0.94l2.39,0.96 c0.22,0.08,0.47,0,0.59-0.22l1.92-3.32c0.12-0.22,0.07-0.47-0.12-0.61L19.14,12.94z M12,15.6c-1.98,0-3.6-1.62-3.6-3.6 s1.62-3.6,3.6-3.6s3.6,1.62,3.6,3.6S13.98,15.6,12,15.6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19.14,12.94c0.04-0.3,0.06-0.61,0.06-0.94c0-0.32-0.02-0.64-0.07-0.94l2.03-1.58c0.18-0.14,0.23-0.41,0.12-0.61 l-1.92-3.32c-0.12-0.22-0.37-0.29-0.59-0.22l-2.39,0.96c-0.5-0.38-1.03-0.7-1.62-0.94L14.4,2.81c-0.04-0.24-0.24-0.41-0.48-0.41 h-3.84c-0.24,0-0.43,0.17-0.47,0.41L9.25,5.35C8.66,5.59,8.12,5.92,7.63,6.29L5.24,5.33c-0.22-0.08-0.47,0-0.59,0.22L2.74,8.87 C2.62,9.08,2.66,9.34,2.86,9.48l2.03,1.58C4.84,11.36,4.8,11.69,4.8,12s0.02,0.64,0.07,0.94l-2.03,1.58 c-0.18,0.14-0.23,0.41-0.12,0.61l1.92,3.32c0.12,0.22,0.37,0.29,0.59,0.22l2.39-0.96c0.5,0.38,1.03,0.7,1.62,0.94l0.36,2.54 c0.05,0.24,0.24,0.41,0.48,0.41h3.84c0.24,0,0.44-0.17,0.47-0.41l0.36-2.54c0.59-0.24,1.13-0.56,1.62-0.94l2.39,0.96 c0.22,0.08,0.47,0,0.59-0.22l1.92-3.32c0.12-0.22,0.07-0.47-0.12-0.61L19.14,12.94z M12,15.6c-1.98,0-3.6-1.62-3.6-3.6 s1.62-3.6,3.6-3.6s3.6,1.62,3.6,3.6S13.98,15.6,12,15.6z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_settings = ic_settings; \ No newline at end of file diff --git a/dist/md/ic_settings_applications.js b/dist/md/ic_settings_applications.js new file mode 100644 index 000000000..84fd3bba2 --- /dev/null +++ b/dist/md/ic_settings_applications.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_settings_applications = void 0; +var ic_settings_applications = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm7-7H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.11 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm-1.75 9c0 .23-.02.46-.05.68l1.48 1.16c.13.11.17.3.08.45l-1.4 2.42c-.09.15-.27.21-.43.15l-1.74-.7c-.36.28-.76.51-1.18.69l-.26 1.85c-.03.17-.18.3-.35.3h-2.8c-.17 0-.32-.13-.35-.29l-.26-1.85c-.43-.18-.82-.41-1.18-.69l-1.74.7c-.16.06-.34 0-.43-.15l-1.4-2.42c-.09-.15-.05-.34.08-.45l1.48-1.16c-.03-.23-.05-.46-.05-.69 0-.23.02-.46.05-.68l-1.48-1.16c-.13-.11-.17-.3-.08-.45l1.4-2.42c.09-.15.27-.21.43-.15l1.74.7c.36-.28.76-.51 1.18-.69l.26-1.85c.03-.17.18-.3.35-.3h2.8c.17 0 .32.13.35.29l.26 1.85c.43.18.82.41 1.18.69l1.74-.7c.16-.06.34 0 .43.15l1.4 2.42c.09.15.05.34-.08.45l-1.48 1.16c.03.23.05.46.05.69z" + }, + "children": [] + }] +}; +exports.ic_settings_applications = ic_settings_applications; \ No newline at end of file diff --git a/dist/md/ic_settings_applications_outline.js b/dist/md/ic_settings_applications_outline.js new file mode 100644 index 000000000..6a56a23ea --- /dev/null +++ b/dist/md/ic_settings_applications_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_settings_applications_outline = void 0; +var ic_settings_applications_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6.21 13.97l1.2 2.07c.08.13.23.18.37.13l1.49-.6c.31.24.64.44 1.01.59l.22 1.59c.03.14.15.25.3.25h2.4c.15 0 .27-.11.3-.26l.22-1.59c.36-.15.7-.35 1.01-.59l1.49.6c.14.05.29 0 .37-.13l1.2-2.07c.08-.13.04-.29-.07-.39l-1.27-.99c.03-.19.04-.39.04-.58 0-.2-.02-.39-.04-.59l1.27-.99c.11-.09.15-.26.07-.39l-1.2-2.07c-.08-.13-.23-.18-.37-.13l-1.49.6c-.31-.24-.64-.44-1.01-.59l-.22-1.59c-.03-.14-.15-.25-.3-.25h-2.4c-.15 0-.27.11-.3.26l-.22 1.59c-.36.15-.71.34-1.01.58l-1.49-.6c-.14-.05-.29 0-.37.13l-1.2 2.07c-.08.13-.04.29.07.39l1.27.99c-.03.2-.05.39-.05.59 0 .2.02.39.04.59l-1.27.99c-.11.1-.14.26-.06.39zM12 10.29c.94 0 1.71.77 1.71 1.71s-.77 1.71-1.71 1.71-1.71-.77-1.71-1.71.77-1.71 1.71-1.71zM19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.11 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm0 16H5V5h14v14z" + }, + "children": [] + }] +}; +exports.ic_settings_applications_outline = ic_settings_applications_outline; \ No newline at end of file diff --git a/dist/md/ic_settings_applications_twotone.js b/dist/md/ic_settings_applications_twotone.js new file mode 100644 index 000000000..d00605f11 --- /dev/null +++ b/dist/md/ic_settings_applications_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_settings_applications_twotone = void 0; +var ic_settings_applications_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 19h14V5H5v14zm2.5-7c0-.2.02-.39.04-.58l-1.27-.99c-.11-.09-.15-.26-.07-.39l1.2-2.07c.08-.13.23-.18.37-.13l1.49.6c.31-.25.66-.44 1.02-.6l.22-1.59c.03-.14.15-.25.3-.25h2.4c.15 0 .27.11.3.25l.22 1.59c.37.15.7.35 1.01.59l1.49-.6c.14-.05.29 0 .37.13l1.2 2.07c.08.13.04.29-.07.39l-1.27.99c.03.2.04.39.04.59 0 .2-.02.39-.04.58l1.27.99c.11.09.15.26.07.39l-1.2 2.07c-.08.13-.23.18-.37.13l-1.49-.6c-.31.24-.65.44-1.01.59l-.22 1.59c-.03.15-.15.26-.3.26h-2.4c-.15 0-.27-.11-.3-.25l-.22-1.59c-.37-.15-.7-.35-1.01-.59l-1.49.6c-.14.05-.29 0-.37-.13l-1.2-2.07c-.08-.13-.04-.29.07-.39l1.27-.99c-.03-.2-.05-.39-.05-.59z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6.21 13.97l1.2 2.07c.08.13.23.18.37.13l1.49-.6c.31.24.64.44 1.01.59l.22 1.59c.03.14.15.25.3.25h2.4c.15 0 .27-.11.3-.26l.22-1.59c.36-.15.7-.35 1.01-.59l1.49.6c.14.05.29 0 .37-.13l1.2-2.07c.08-.13.04-.29-.07-.39l-1.27-.99c.03-.19.04-.39.04-.58 0-.2-.02-.39-.04-.59l1.27-.99c.11-.09.15-.26.07-.39l-1.2-2.07c-.08-.13-.23-.18-.37-.13l-1.49.6c-.31-.24-.64-.44-1.01-.59l-.22-1.59c-.03-.14-.15-.25-.3-.25h-2.4c-.15 0-.27.11-.3.26l-.22 1.59c-.36.15-.71.34-1.01.58l-1.49-.6c-.14-.05-.29 0-.37.13l-1.2 2.07c-.08.13-.04.29.07.39l1.27.99c-.03.2-.05.39-.05.59 0 .2.02.39.04.59l-1.27.99c-.11.1-.14.26-.06.39zM12 10.29c.94 0 1.71.77 1.71 1.71s-.77 1.71-1.71 1.71-1.71-.77-1.71-1.71.77-1.71 1.71-1.71zM19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.11 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm0 16H5V5h14v14z" + }, + "children": [] + }] +}; +exports.ic_settings_applications_twotone = ic_settings_applications_twotone; \ No newline at end of file diff --git a/dist/md/ic_settings_backup_restore.js b/dist/md/ic_settings_backup_restore.js new file mode 100644 index 000000000..687bb0f05 --- /dev/null +++ b/dist/md/ic_settings_backup_restore.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_settings_backup_restore = void 0; +var ic_settings_backup_restore = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 12c0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2 2-.9 2-2zm-2-9c-4.97 0-9 4.03-9 9H0l4 4 4-4H5c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.51 0-2.91-.49-4.06-1.3l-1.42 1.44C8.04 20.3 9.94 21 12 21c4.97 0 9-4.03 9-9s-4.03-9-9-9z" + }, + "children": [] + }] +}; +exports.ic_settings_backup_restore = ic_settings_backup_restore; \ No newline at end of file diff --git a/dist/md/ic_settings_backup_restore_outline.js b/dist/md/ic_settings_backup_restore_outline.js new file mode 100644 index 000000000..4d5a9691b --- /dev/null +++ b/dist/md/ic_settings_backup_restore_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_settings_backup_restore_outline = void 0; +var ic_settings_backup_restore_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 12c0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2 2-.9 2-2zm-2-9c-4.97 0-9 4.03-9 9H0l4 4 4-4H5c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.51 0-2.91-.49-4.06-1.3l-1.42 1.44C8.04 20.3 9.94 21 12 21c4.97 0 9-4.03 9-9s-4.03-9-9-9z" + }, + "children": [] + }] +}; +exports.ic_settings_backup_restore_outline = ic_settings_backup_restore_outline; \ No newline at end of file diff --git a/dist/md/ic_settings_backup_restore_twotone.js b/dist/md/ic_settings_backup_restore_twotone.js new file mode 100644 index 000000000..4b161be1f --- /dev/null +++ b/dist/md/ic_settings_backup_restore_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_settings_backup_restore_twotone = void 0; +var ic_settings_backup_restore_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 12c0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2 2-.9 2-2zm-2-9c-4.97 0-9 4.03-9 9H0l4 4 4-4H5c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.51 0-2.91-.49-4.06-1.3l-1.42 1.44C8.04 20.3 9.94 21 12 21c4.97 0 9-4.03 9-9s-4.03-9-9-9z" + }, + "children": [] + }] +}; +exports.ic_settings_backup_restore_twotone = ic_settings_backup_restore_twotone; \ No newline at end of file diff --git a/dist/md/ic_settings_bluetooth.js b/dist/md/ic_settings_bluetooth.js new file mode 100644 index 000000000..75a55f311 --- /dev/null +++ b/dist/md/ic_settings_bluetooth.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_settings_bluetooth = void 0; +var ic_settings_bluetooth = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 24h2v-2h-2v2zm-4 0h2v-2H7v2zm8 0h2v-2h-2v2zm2.71-18.29L12 0h-1v7.59L6.41 3 5 4.41 10.59 10 5 15.59 6.41 17 11 12.41V20h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 3.83l1.88 1.88L13 7.59V3.83zm1.88 10.46L13 16.17v-3.76l1.88 1.88z" + }, + "children": [] + }] +}; +exports.ic_settings_bluetooth = ic_settings_bluetooth; \ No newline at end of file diff --git a/dist/md/ic_settings_bluetooth_outline.js b/dist/md/ic_settings_bluetooth_outline.js new file mode 100644 index 000000000..c0931deb8 --- /dev/null +++ b/dist/md/ic_settings_bluetooth_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_settings_bluetooth_outline = void 0; +var ic_settings_bluetooth_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 24h2v-2h-2v2zm-4 0h2v-2H7v2zm8 0h2v-2h-2v2zm2.71-18.29L12 0h-1v7.59L6.41 3 5 4.41 10.59 10 5 15.59 6.41 17 11 12.41V20h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 3.83l1.88 1.88L13 7.59V3.83zm1.88 10.46L13 16.17v-3.76l1.88 1.88z" + }, + "children": [] + }] +}; +exports.ic_settings_bluetooth_outline = ic_settings_bluetooth_outline; \ No newline at end of file diff --git a/dist/md/ic_settings_bluetooth_twotone.js b/dist/md/ic_settings_bluetooth_twotone.js new file mode 100644 index 000000000..bdfdf7376 --- /dev/null +++ b/dist/md/ic_settings_bluetooth_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_settings_bluetooth_twotone = void 0; +var ic_settings_bluetooth_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 24h2v-2h-2v2zm-4 0h2v-2H7v2zm8 0h2v-2h-2v2zm2.71-18.29L12 0h-1v7.59L6.41 3 5 4.41 10.59 10 5 15.59 6.41 17 11 12.41V20h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 3.83l1.88 1.88L13 7.59V3.83zm1.88 10.46L13 16.17v-3.76l1.88 1.88z" + }, + "children": [] + }] +}; +exports.ic_settings_bluetooth_twotone = ic_settings_bluetooth_twotone; \ No newline at end of file diff --git a/dist/md/ic_settings_brightness.js b/dist/md/ic_settings_brightness.js new file mode 100644 index 000000000..ce710af60 --- /dev/null +++ b/dist/md/ic_settings_brightness.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_settings_brightness = void 0; +var ic_settings_brightness = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02zM8 16h2.5l1.5 1.5 1.5-1.5H16v-2.5l1.5-1.5-1.5-1.5V8h-2.5L12 6.5 10.5 8H8v2.5L6.5 12 8 13.5V16zm4-7c1.66 0 3 1.34 3 3s-1.34 3-3 3V9z" + }, + "children": [] + }] +}; +exports.ic_settings_brightness = ic_settings_brightness; \ No newline at end of file diff --git a/dist/md/ic_settings_brightness_outline.js b/dist/md/ic_settings_brightness_outline.js new file mode 100644 index 000000000..5c56f21c1 --- /dev/null +++ b/dist/md/ic_settings_brightness_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_settings_brightness_outline = void 0; +var ic_settings_brightness_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02zM8 16h2.5l1.5 1.5 1.5-1.5H16v-2.5l1.5-1.5-1.5-1.5V8h-2.5L12 6.5 10.5 8H8v2.5L6.5 12 8 13.5V16zm4-7c1.66 0 3 1.34 3 3s-1.34 3-3 3V9z" + }, + "children": [] + }] +}; +exports.ic_settings_brightness_outline = ic_settings_brightness_outline; \ No newline at end of file diff --git a/dist/md/ic_settings_brightness_twotone.js b/dist/md/ic_settings_brightness_twotone.js new file mode 100644 index 000000000..e5c62e5ba --- /dev/null +++ b/dist/md/ic_settings_brightness_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_settings_brightness_twotone = void 0; +var ic_settings_brightness_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 19.01h18V4.99H3v14.02zm5-8.51V8h2.5L12 6.5 13.5 8H16v2.5l1.5 1.5-1.5 1.5V16h-2.5L12 17.5 10.5 16H8v-2.5L6.5 12 8 10.5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8 16h2.5l1.5 1.5 1.5-1.5H16v-2.5l1.5-1.5-1.5-1.5V8h-2.5L12 6.5 10.5 8H8v2.5L6.5 12 8 13.5V16zm4-7c1.66 0 3 1.34 3 3s-1.34 3-3 3V9zm9-6H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02z" + }, + "children": [] + }] +}; +exports.ic_settings_brightness_twotone = ic_settings_brightness_twotone; \ No newline at end of file diff --git a/dist/md/ic_settings_cell.js b/dist/md/ic_settings_cell.js new file mode 100644 index 000000000..1b8099292 --- /dev/null +++ b/dist/md/ic_settings_cell.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_settings_cell = void 0; +var ic_settings_cell = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 24h2v-2H7v2zm4 0h2v-2h-2v2zm4 0h2v-2h-2v2zM16 .01L8 0C6.9 0 6 .9 6 2v16c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V2c0-1.1-.9-1.99-2-1.99zM16 16H8V4h8v12z" + }, + "children": [] + }] +}; +exports.ic_settings_cell = ic_settings_cell; \ No newline at end of file diff --git a/dist/md/ic_settings_cell_outline.js b/dist/md/ic_settings_cell_outline.js new file mode 100644 index 000000000..3808c7d27 --- /dev/null +++ b/dist/md/ic_settings_cell_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_settings_cell_outline = void 0; +var ic_settings_cell_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 22h2v2H7zm4 0h2v2h-2zm4 0h2v2h-2zM16 .01L8 0C6.9 0 6 .9 6 2v16c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V2c0-1.1-.9-1.99-2-1.99zM16 18H8v-1h8v1zm0-3H8V5h8v10zm0-12H8V2h8v1z" + }, + "children": [] + }] +}; +exports.ic_settings_cell_outline = ic_settings_cell_outline; \ No newline at end of file diff --git a/dist/md/ic_settings_cell_twotone.js b/dist/md/ic_settings_cell_twotone.js new file mode 100644 index 000000000..de01f5913 --- /dev/null +++ b/dist/md/ic_settings_cell_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_settings_cell_twotone = void 0; +var ic_settings_cell_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8 17h8v1H8zM8 2h8v1H8z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 22h2v2H7zm4 0h2v2h-2zm4 0h2v2h-2zM16 .01L8 0C6.9 0 6 .9 6 2v16c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V2c0-1.1-.9-1.99-2-1.99zM16 18H8v-1h8v1zm0-3H8V5h8v10zm0-12H8V2h8v1z" + }, + "children": [] + }] +}; +exports.ic_settings_cell_twotone = ic_settings_cell_twotone; \ No newline at end of file diff --git a/dist/md/ic_settings_ethernet.js b/dist/md/ic_settings_ethernet.js new file mode 100644 index 000000000..ff789a197 --- /dev/null +++ b/dist/md/ic_settings_ethernet.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_settings_ethernet = void 0; +var ic_settings_ethernet = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7.77 6.76L6.23 5.48.82 12l5.41 6.52 1.54-1.28L3.42 12l4.35-5.24zM7 13h2v-2H7v2zm10-2h-2v2h2v-2zm-6 2h2v-2h-2v2zm6.77-7.52l-1.54 1.28L20.58 12l-4.35 5.24 1.54 1.28L23.18 12l-5.41-6.52z" + }, + "children": [] + }] +}; +exports.ic_settings_ethernet = ic_settings_ethernet; \ No newline at end of file diff --git a/dist/md/ic_settings_ethernet_outline.js b/dist/md/ic_settings_ethernet_outline.js new file mode 100644 index 000000000..f7bf77f69 --- /dev/null +++ b/dist/md/ic_settings_ethernet_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_settings_ethernet_outline = void 0; +var ic_settings_ethernet_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7.77 6.76L6.23 5.48.82 12l5.41 6.52 1.54-1.28L3.42 12l4.35-5.24zM7 13h2v-2H7v2zm10-2h-2v2h2v-2zm-6 2h2v-2h-2v2zm6.77-7.52l-1.54 1.28L20.58 12l-4.35 5.24 1.54 1.28L23.18 12l-5.41-6.52z" + }, + "children": [] + }] +}; +exports.ic_settings_ethernet_outline = ic_settings_ethernet_outline; \ No newline at end of file diff --git a/dist/md/ic_settings_ethernet_twotone.js b/dist/md/ic_settings_ethernet_twotone.js new file mode 100644 index 000000000..1b40da314 --- /dev/null +++ b/dist/md/ic_settings_ethernet_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_settings_ethernet_twotone = void 0; +var ic_settings_ethernet_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7.77 6.76L6.23 5.48.82 12l5.41 6.52 1.54-1.28L3.42 12l4.35-5.24zM7 13h2v-2H7v2zm10-2h-2v2h2v-2zm-6 2h2v-2h-2v2zm6.77-7.52l-1.54 1.28L20.58 12l-4.35 5.24 1.54 1.28L23.18 12l-5.41-6.52z" + }, + "children": [] + }] +}; +exports.ic_settings_ethernet_twotone = ic_settings_ethernet_twotone; \ No newline at end of file diff --git a/dist/md/ic_settings_input_antenna.js b/dist/md/ic_settings_input_antenna.js new file mode 100644 index 000000000..b5aed6789 --- /dev/null +++ b/dist/md/ic_settings_input_antenna.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_settings_input_antenna = void 0; +var ic_settings_input_antenna = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 5c-3.87 0-7 3.13-7 7h2c0-2.76 2.24-5 5-5s5 2.24 5 5h2c0-3.87-3.13-7-7-7zm1 9.29c.88-.39 1.5-1.26 1.5-2.29 0-1.38-1.12-2.5-2.5-2.5S9.5 10.62 9.5 12c0 1.02.62 1.9 1.5 2.29v3.3L7.59 21 9 22.41l3-3 3 3L16.41 21 13 17.59v-3.3zM12 1C5.93 1 1 5.93 1 12h2c0-4.97 4.03-9 9-9s9 4.03 9 9h2c0-6.07-4.93-11-11-11z" + }, + "children": [] + }] +}; +exports.ic_settings_input_antenna = ic_settings_input_antenna; \ No newline at end of file diff --git a/dist/md/ic_settings_input_antenna_outline.js b/dist/md/ic_settings_input_antenna_outline.js new file mode 100644 index 000000000..6a3040b10 --- /dev/null +++ b/dist/md/ic_settings_input_antenna_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_settings_input_antenna_outline = void 0; +var ic_settings_input_antenna_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 5c-3.87 0-7 3.13-7 7h2c0-2.76 2.24-5 5-5s5 2.24 5 5h2c0-3.87-3.13-7-7-7zm1 9.29c.88-.39 1.5-1.26 1.5-2.29 0-1.38-1.12-2.5-2.5-2.5S9.5 10.62 9.5 12c0 1.02.62 1.9 1.5 2.29v3.3L7.59 21 9 22.41l3-3 3 3L16.41 21 13 17.59v-3.3zM12 1C5.93 1 1 5.93 1 12h2c0-4.97 4.03-9 9-9s9 4.03 9 9h2c0-6.07-4.93-11-11-11z" + }, + "children": [] + }] +}; +exports.ic_settings_input_antenna_outline = ic_settings_input_antenna_outline; \ No newline at end of file diff --git a/dist/md/ic_settings_input_antenna_twotone.js b/dist/md/ic_settings_input_antenna_twotone.js new file mode 100644 index 000000000..374af642c --- /dev/null +++ b/dist/md/ic_settings_input_antenna_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_settings_input_antenna_twotone = void 0; +var ic_settings_input_antenna_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 5c-3.87 0-7 3.13-7 7h2c0-2.76 2.24-5 5-5s5 2.24 5 5h2c0-3.87-3.13-7-7-7zm1 9.29c.88-.39 1.5-1.26 1.5-2.29 0-1.38-1.12-2.5-2.5-2.5S9.5 10.62 9.5 12c0 1.02.62 1.9 1.5 2.29v3.3L7.59 21 9 22.41l3-3 3 3L16.41 21 13 17.59v-3.3zM12 1C5.93 1 1 5.93 1 12h2c0-4.97 4.03-9 9-9s9 4.03 9 9h2c0-6.07-4.93-11-11-11z" + }, + "children": [] + }] +}; +exports.ic_settings_input_antenna_twotone = ic_settings_input_antenna_twotone; \ No newline at end of file diff --git a/dist/md/ic_settings_input_component.js b/dist/md/ic_settings_input_component.js new file mode 100644 index 000000000..e5ea20dc5 --- /dev/null +++ b/dist/md/ic_settings_input_component.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_settings_input_component = void 0; +var ic_settings_input_component = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 2c0-.55-.45-1-1-1s-1 .45-1 1v4H1v6h6V6H5V2zm4 14c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.41 2-1.51 2-2.82v-2H9v2zm-8 0c0 1.3.84 2.4 2 2.82V23h2v-4.18C6.16 18.4 7 17.3 7 16v-2H1v2zM21 6V2c0-.55-.45-1-1-1s-1 .45-1 1v4h-2v6h6V6h-2zm-8-4c0-.55-.45-1-1-1s-1 .45-1 1v4H9v6h6V6h-2V2zm4 14c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.41 2-1.51 2-2.82v-2h-6v2z" + }, + "children": [] + }] +}; +exports.ic_settings_input_component = ic_settings_input_component; \ No newline at end of file diff --git a/dist/md/ic_settings_input_component_outline.js b/dist/md/ic_settings_input_component_outline.js new file mode 100644 index 000000000..24f367c77 --- /dev/null +++ b/dist/md/ic_settings_input_component_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_settings_input_component_outline = void 0; +var ic_settings_input_component_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 2c0-.55-.45-1-1-1s-1 .45-1 1v4H1v10c0 1.3.84 2.4 2 2.82V23h2v-4.18C6.16 18.4 7 17.3 7 16V6H5V2zM4 17c-.55 0-1-.45-1-1v-2h2v2c0 .55-.45 1-1 1zm-1-5V8h2v4H3zM13 2c0-.55-.45-1-1-1s-1 .45-1 1v4H9v10c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.42 2-1.52 2-2.82V6h-2V2zm-1 15c-.55 0-1-.45-1-1v-2h2v2c0 .55-.45 1-1 1zm-1-5V8h2v4h-2zm10-6V2c0-.55-.45-1-1-1s-1 .45-1 1v4h-2v10c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.42 2-1.52 2-2.82V6h-2zm-1 11c-.55 0-1-.45-1-1v-2h2v2c0 .55-.45 1-1 1zm-1-5V8h2v4h-2z" + }, + "children": [] + }] +}; +exports.ic_settings_input_component_outline = ic_settings_input_component_outline; \ No newline at end of file diff --git a/dist/md/ic_settings_input_component_twotone.js b/dist/md/ic_settings_input_component_twotone.js new file mode 100644 index 000000000..fe7a3cc10 --- /dev/null +++ b/dist/md/ic_settings_input_component_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_settings_input_component_twotone = void 0; +var ic_settings_input_component_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 16c0 .55.45 1 1 1s1-.45 1-1v-2h-2v2zm-8 0c0 .55.45 1 1 1s1-.45 1-1v-2H3v2zm16 0c0 .55.45 1 1 1s1-.45 1-1v-2h-2v2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 2c0-.55-.45-1-1-1s-1 .45-1 1v4H1v10c0 1.3.84 2.4 2 2.82V23h2v-4.18C6.16 18.4 7 17.3 7 16V6H5V2zm0 14c0 .55-.45 1-1 1s-1-.45-1-1v-2h2v2zm0-4H3V8h2v4zm8-10c0-.55-.45-1-1-1s-1 .45-1 1v4H9v10c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.42 2-1.52 2-2.82V6h-2V2zm0 14c0 .55-.45 1-1 1s-1-.45-1-1v-2h2v2zm0-4h-2V8h2v4zm8-6V2c0-.55-.45-1-1-1s-1 .45-1 1v4h-2v10c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.42 2-1.52 2-2.82V6h-2zm0 10c0 .55-.45 1-1 1s-1-.45-1-1v-2h2v2zm0-4h-2V8h2v4z" + }, + "children": [] + }] +}; +exports.ic_settings_input_component_twotone = ic_settings_input_component_twotone; \ No newline at end of file diff --git a/dist/md/ic_settings_input_composite.js b/dist/md/ic_settings_input_composite.js new file mode 100644 index 000000000..d8cdf4aa5 --- /dev/null +++ b/dist/md/ic_settings_input_composite.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_settings_input_composite = void 0; +var ic_settings_input_composite = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 2c0-.55-.45-1-1-1s-1 .45-1 1v4H1v6h6V6H5V2zm4 14c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.41 2-1.51 2-2.82v-2H9v2zm-8 0c0 1.3.84 2.4 2 2.82V23h2v-4.18C6.16 18.4 7 17.3 7 16v-2H1v2zM21 6V2c0-.55-.45-1-1-1s-1 .45-1 1v4h-2v6h6V6h-2zm-8-4c0-.55-.45-1-1-1s-1 .45-1 1v4H9v6h6V6h-2V2zm4 14c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.41 2-1.51 2-2.82v-2h-6v2z" + }, + "children": [] + }] +}; +exports.ic_settings_input_composite = ic_settings_input_composite; \ No newline at end of file diff --git a/dist/md/ic_settings_input_composite_outline.js b/dist/md/ic_settings_input_composite_outline.js new file mode 100644 index 000000000..c34cb6c10 --- /dev/null +++ b/dist/md/ic_settings_input_composite_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_settings_input_composite_outline = void 0; +var ic_settings_input_composite_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 2c0-.55-.45-1-1-1s-1 .45-1 1v4H1v10c0 1.3.84 2.4 2 2.82V23h2v-4.18C6.16 18.4 7 17.3 7 16V6H5V2zM4 17c-.55 0-1-.45-1-1v-2h2v2c0 .55-.45 1-1 1zm-1-5V8h2v4H3zM13 2c0-.55-.45-1-1-1s-1 .45-1 1v4H9v10c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.42 2-1.52 2-2.82V6h-2V2zm-1 15c-.55 0-1-.45-1-1v-2h2v2c0 .55-.45 1-1 1zm-1-5V8h2v4h-2zm10-6V2c0-.55-.45-1-1-1s-1 .45-1 1v4h-2v10c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.42 2-1.52 2-2.82V6h-2zm-1 11c-.55 0-1-.45-1-1v-2h2v2c0 .55-.45 1-1 1zm-1-5V8h2v4h-2z" + }, + "children": [] + }] +}; +exports.ic_settings_input_composite_outline = ic_settings_input_composite_outline; \ No newline at end of file diff --git a/dist/md/ic_settings_input_composite_twotone.js b/dist/md/ic_settings_input_composite_twotone.js new file mode 100644 index 000000000..80b70351e --- /dev/null +++ b/dist/md/ic_settings_input_composite_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_settings_input_composite_twotone = void 0; +var ic_settings_input_composite_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 16c0 .55.45 1 1 1s1-.45 1-1v-2H3v2zm8 0c0 .55.45 1 1 1s1-.45 1-1v-2h-2v2zm8 0c0 .55.45 1 1 1s1-.45 1-1v-2h-2v2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 2c0-.55-.45-1-1-1s-1 .45-1 1v4H1v10c0 1.3.84 2.4 2 2.82V23h2v-4.18C6.16 18.4 7 17.3 7 16V6H5V2zm0 14c0 .55-.45 1-1 1s-1-.45-1-1v-2h2v2zm0-4H3V8h2v4zm8-10c0-.55-.45-1-1-1s-1 .45-1 1v4H9v10c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.42 2-1.52 2-2.82V6h-2V2zm0 14c0 .55-.45 1-1 1s-1-.45-1-1v-2h2v2zm0-4h-2V8h2v4zm8-6V2c0-.55-.45-1-1-1s-1 .45-1 1v4h-2v10c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.42 2-1.52 2-2.82V6h-2zm0 10c0 .55-.45 1-1 1s-1-.45-1-1v-2h2v2zm0-4h-2V8h2v4z" + }, + "children": [] + }] +}; +exports.ic_settings_input_composite_twotone = ic_settings_input_composite_twotone; \ No newline at end of file diff --git a/dist/md/ic_settings_input_hdmi.js b/dist/md/ic_settings_input_hdmi.js new file mode 100644 index 000000000..3a6bc4d4d --- /dev/null +++ b/dist/md/ic_settings_input_hdmi.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_settings_input_hdmi = void 0; +var ic_settings_input_hdmi = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 7V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v3H5v6l3 6v3h8v-3l3-6V7h-1zM8 4h8v3h-2V5h-1v2h-2V5h-1v2H8V4z" + }, + "children": [] + }] +}; +exports.ic_settings_input_hdmi = ic_settings_input_hdmi; \ No newline at end of file diff --git a/dist/md/ic_settings_input_hdmi_outline.js b/dist/md/ic_settings_input_hdmi_outline.js new file mode 100644 index 000000000..bd716055e --- /dev/null +++ b/dist/md/ic_settings_input_hdmi_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_settings_input_hdmi_outline = void 0; +var ic_settings_input_hdmi_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 7V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v3H5v6l3 6v3h8v-3l3-6V7h-1zM8 4h8v3h-2.01V5h-1v2H11V5h-1v2H8V4zm9 8.53l-3 6V20h-4v-1.47l-3-6V9h10v3.53z" + }, + "children": [] + }] +}; +exports.ic_settings_input_hdmi_outline = ic_settings_input_hdmi_outline; \ No newline at end of file diff --git a/dist/md/ic_settings_input_hdmi_twotone.js b/dist/md/ic_settings_input_hdmi_twotone.js new file mode 100644 index 000000000..37f9f6c71 --- /dev/null +++ b/dist/md/ic_settings_input_hdmi_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_settings_input_hdmi_twotone = void 0; +var ic_settings_input_hdmi_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8 9H7v3.53l2.79 5.58.21.42V20h4v-1.47l.21-.42L17 12.53V9h-1z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 7V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v3H5v6l3 6v3h8v-3l3-6V7h-1zM8 4h8v3h-2.01V5h-1v2H11V5h-1v2H8V4zm9 8.53l-3 6V20h-4v-1.47l-3-6V9h10v3.53z" + }, + "children": [] + }] +}; +exports.ic_settings_input_hdmi_twotone = ic_settings_input_hdmi_twotone; \ No newline at end of file diff --git a/dist/md/ic_settings_input_svideo.js b/dist/md/ic_settings_input_svideo.js new file mode 100644 index 000000000..ec741cf3b --- /dev/null +++ b/dist/md/ic_settings_input_svideo.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_settings_input_svideo = void 0; +var ic_settings_input_svideo = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8 11.5c0-.83-.67-1.5-1.5-1.5S5 10.67 5 11.5 5.67 13 6.5 13 8 12.33 8 11.5zm7-5c0-.83-.67-1.5-1.5-1.5h-3C9.67 5 9 5.67 9 6.5S9.67 8 10.5 8h3c.83 0 1.5-.67 1.5-1.5zM8.5 15c-.83 0-1.5.67-1.5 1.5S7.67 18 8.5 18s1.5-.67 1.5-1.5S9.33 15 8.5 15zM12 1C5.93 1 1 5.93 1 12s4.93 11 11 11 11-4.93 11-11S18.07 1 12 1zm0 20c-4.96 0-9-4.04-9-9s4.04-9 9-9 9 4.04 9 9-4.04 9-9 9zm5.5-11c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm-2 5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5z" + }, + "children": [] + }] +}; +exports.ic_settings_input_svideo = ic_settings_input_svideo; \ No newline at end of file diff --git a/dist/md/ic_settings_input_svideo_outline.js b/dist/md/ic_settings_input_svideo_outline.js new file mode 100644 index 000000000..4465ca5b7 --- /dev/null +++ b/dist/md/ic_settings_input_svideo_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_settings_input_svideo_outline = void 0; +var ic_settings_input_svideo_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8 11.5c0-.83-.67-1.5-1.5-1.5S5 10.67 5 11.5 5.67 13 6.5 13 8 12.33 8 11.5zm7-5c0-.83-.67-1.5-1.5-1.5h-3C9.67 5 9 5.67 9 6.5S9.67 8 10.5 8h3c.83 0 1.5-.67 1.5-1.5zM8.5 15c-.83 0-1.5.67-1.5 1.5S7.67 18 8.5 18s1.5-.67 1.5-1.5S9.33 15 8.5 15zM12 1C5.93 1 1 5.93 1 12s4.93 11 11 11 11-4.93 11-11S18.07 1 12 1zm0 20c-4.96 0-9-4.04-9-9s4.04-9 9-9 9 4.04 9 9-4.04 9-9 9zm5.5-11c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm-2 5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5z" + }, + "children": [] + }] +}; +exports.ic_settings_input_svideo_outline = ic_settings_input_svideo_outline; \ No newline at end of file diff --git a/dist/md/ic_settings_input_svideo_twotone.js b/dist/md/ic_settings_input_svideo_twotone.js new file mode 100644 index 000000000..63a7d311d --- /dev/null +++ b/dist/md/ic_settings_input_svideo_twotone.js @@ -0,0 +1,69 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_settings_input_svideo_twotone = void 0; +var ic_settings_input_svideo_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 3c-4.96 0-9 4.04-9 9s4.04 9 9 9 9-4.04 9-9-4.04-9-9-9zm-7 8.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5S7.33 13 6.5 13 5 12.33 5 11.5zM8.5 18c-.83 0-1.5-.67-1.5-1.5S7.67 15 8.5 15s1.5.67 1.5 1.5S9.33 18 8.5 18zm2-10C9.67 8 9 7.33 9 6.5S9.67 5 10.5 5h3c.83 0 1.5.67 1.5 1.5S14.33 8 13.5 8h-3zm5 10c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm2-5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 6.5c0-.83-.67-1.5-1.5-1.5h-3C9.67 5 9 5.67 9 6.5S9.67 8 10.5 8h3c.83 0 1.5-.67 1.5-1.5z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "15.5", + "cy": "16.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "17.5", + "cy": "11.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 1C5.93 1 1 5.93 1 12s4.93 11 11 11 11-4.93 11-11S18.07 1 12 1zm0 20c-4.96 0-9-4.04-9-9s4.04-9 9-9 9 4.04 9 9-4.04 9-9 9z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "6.5", + "cy": "11.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "8.5", + "cy": "16.5", + "r": "1.5" + }, + "children": [] + }] +}; +exports.ic_settings_input_svideo_twotone = ic_settings_input_svideo_twotone; \ No newline at end of file diff --git a/dist/md/ic_settings_outline.js b/dist/md/ic_settings_outline.js new file mode 100644 index 000000000..7e7dfc369 --- /dev/null +++ b/dist/md/ic_settings_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_settings_outline = void 0; +var ic_settings_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.43 12.98c.04-.32.07-.64.07-.98 0-.34-.03-.66-.07-.98l2.11-1.65c.19-.15.24-.42.12-.64l-2-3.46c-.09-.16-.26-.25-.44-.25-.06 0-.12.01-.17.03l-2.49 1c-.52-.4-1.08-.73-1.69-.98l-.38-2.65C14.46 2.18 14.25 2 14 2h-4c-.25 0-.46.18-.49.42l-.38 2.65c-.61.25-1.17.59-1.69.98l-2.49-1c-.06-.02-.12-.03-.18-.03-.17 0-.34.09-.43.25l-2 3.46c-.13.22-.07.49.12.64l2.11 1.65c-.04.32-.07.65-.07.98 0 .33.03.66.07.98l-2.11 1.65c-.19.15-.24.42-.12.64l2 3.46c.09.16.26.25.44.25.06 0 .12-.01.17-.03l2.49-1c.52.4 1.08.73 1.69.98l.38 2.65c.03.24.24.42.49.42h4c.25 0 .46-.18.49-.42l.38-2.65c.61-.25 1.17-.59 1.69-.98l2.49 1c.06.02.12.03.18.03.17 0 .34-.09.43-.25l2-3.46c.12-.22.07-.49-.12-.64l-2.11-1.65zm-1.98-1.71c.04.31.05.52.05.73 0 .21-.02.43-.05.73l-.14 1.13.89.7 1.08.84-.7 1.21-1.27-.51-1.04-.42-.9.68c-.43.32-.84.56-1.25.73l-1.06.43-.16 1.13-.2 1.35h-1.4l-.19-1.35-.16-1.13-1.06-.43c-.43-.18-.83-.41-1.23-.71l-.91-.7-1.06.43-1.27.51-.7-1.21 1.08-.84.89-.7-.14-1.13c-.03-.31-.05-.54-.05-.74s.02-.43.05-.73l.14-1.13-.89-.7-1.08-.84.7-1.21 1.27.51 1.04.42.9-.68c.43-.32.84-.56 1.25-.73l1.06-.43.16-1.13.2-1.35h1.39l.19 1.35.16 1.13 1.06.43c.43.18.83.41 1.23.71l.91.7 1.06-.43 1.27-.51.7 1.21-1.07.85-.89.7.14 1.13zM12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" + }, + "children": [] + }] +}; +exports.ic_settings_outline = ic_settings_outline; \ No newline at end of file diff --git a/dist/md/ic_settings_overscan.js b/dist/md/ic_settings_overscan.js new file mode 100644 index 000000000..30cd2a078 --- /dev/null +++ b/dist/md/ic_settings_overscan.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_settings_overscan = void 0; +var ic_settings_overscan = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12.01 5.5L10 8h4l-1.99-2.5zM18 10v4l2.5-1.99L18 10zM6 10l-2.5 2.01L6 14v-4zm8 6h-4l2.01 2.5L14 16zm7-13H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02z" + }, + "children": [] + }] +}; +exports.ic_settings_overscan = ic_settings_overscan; \ No newline at end of file diff --git a/dist/md/ic_settings_overscan_outline.js b/dist/md/ic_settings_overscan_outline.js new file mode 100644 index 000000000..beb162fb1 --- /dev/null +++ b/dist/md/ic_settings_overscan_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_settings_overscan_outline = void 0; +var ic_settings_overscan_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12.01 5.5L10 8h4l-1.99-2.5zM18 10v4l2.5-1.99L18 10zM6 10l-2.5 2.01L6 14v-4zm8 6h-4l2.01 2.5L14 16zm7-13H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02z" + }, + "children": [] + }] +}; +exports.ic_settings_overscan_outline = ic_settings_overscan_outline; \ No newline at end of file diff --git a/dist/md/ic_settings_overscan_twotone.js b/dist/md/ic_settings_overscan_twotone.js new file mode 100644 index 000000000..006acc1f7 --- /dev/null +++ b/dist/md/ic_settings_overscan_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_settings_overscan_twotone = void 0; +var ic_settings_overscan_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 19.01h18V4.99H3v14.02zM18 10l2.5 2.01L18 14v-4zm-5.99-4.5L14 8h-4l2.01-2.5zM14 16l-1.99 2.5L10 16h4zm-8-6v4l-2.5-1.99L6 10z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 16h-4l2.01 2.5zm4-6v4l2.5-1.99zm3-7H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02zM6 10l-2.5 2.01L6 14zm6.01-4.5L10 8h4z" + }, + "children": [] + }] +}; +exports.ic_settings_overscan_twotone = ic_settings_overscan_twotone; \ No newline at end of file diff --git a/dist/md/ic_settings_phone.js b/dist/md/ic_settings_phone.js new file mode 100644 index 000000000..fdabc0d98 --- /dev/null +++ b/dist/md/ic_settings_phone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_settings_phone = void 0; +var ic_settings_phone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 9h-2v2h2V9zm4 0h-2v2h2V9zm3 6.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.58l2.2-2.21c.28-.27.36-.66.25-1.01C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM19 9v2h2V9h-2z" + }, + "children": [] + }] +}; +exports.ic_settings_phone = ic_settings_phone; \ No newline at end of file diff --git a/dist/md/ic_settings_phone_outline.js b/dist/md/ic_settings_phone_outline.js new file mode 100644 index 000000000..b429eb076 --- /dev/null +++ b/dist/md/ic_settings_phone_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_settings_phone_outline = void 0; +var ic_settings_phone_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 9h2v2h-2zm4 0h2v2h-2zm5 6.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.58l2.2-2.21c.28-.27.36-.66.25-1.01C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.46 2.59L5.79 8.8c-.41-1.21-.67-2.48-.76-3.8zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM19 9h2v2h-2z" + }, + "children": [] + }] +}; +exports.ic_settings_phone_outline = ic_settings_phone_outline; \ No newline at end of file diff --git a/dist/md/ic_settings_phone_twotone.js b/dist/md/ic_settings_phone_twotone.js new file mode 100644 index 000000000..a48eba2f2 --- /dev/null +++ b/dist/md/ic_settings_phone_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_settings_phone_twotone = void 0; +var ic_settings_phone_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6.54 5h-1.5c.09 1.32.35 2.59.75 3.79l1.2-1.21c-.24-.83-.39-1.7-.45-2.58zm8.66 13.21c1.21.41 2.48.67 3.8.76v-1.5c-.88-.07-1.75-.22-2.6-.45l-1.2 1.19z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 9h2v2h-2zm4 0h2v2h-2zm5 6.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.58l2.2-2.21c.28-.27.36-.66.25-1.01C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.46 2.59L5.79 8.8c-.41-1.21-.67-2.48-.76-3.8zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM19 9h2v2h-2z" + }, + "children": [] + }] +}; +exports.ic_settings_phone_twotone = ic_settings_phone_twotone; \ No newline at end of file diff --git a/dist/md/ic_settings_power.js b/dist/md/ic_settings_power.js new file mode 100644 index 000000000..d18c1ef40 --- /dev/null +++ b/dist/md/ic_settings_power.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_settings_power = void 0; +var ic_settings_power = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 24h2v-2H7v2zm4 0h2v-2h-2v2zm2-22h-2v10h2V2zm3.56 2.44l-1.45 1.45C16.84 6.94 18 8.83 18 11c0 3.31-2.69 6-6 6s-6-2.69-6-6c0-2.17 1.16-4.06 2.88-5.12L7.44 4.44C5.36 5.88 4 8.28 4 11c0 4.42 3.58 8 8 8s8-3.58 8-8c0-2.72-1.36-5.12-3.44-6.56zM15 24h2v-2h-2v2z" + }, + "children": [] + }] +}; +exports.ic_settings_power = ic_settings_power; \ No newline at end of file diff --git a/dist/md/ic_settings_power_outline.js b/dist/md/ic_settings_power_outline.js new file mode 100644 index 000000000..2c737f6e6 --- /dev/null +++ b/dist/md/ic_settings_power_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_settings_power_outline = void 0; +var ic_settings_power_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 24h2v-2H7v2zm4 0h2v-2h-2v2zm2-22h-2v10h2V2zm3.56 2.44l-1.45 1.45C16.84 6.94 18 8.83 18 11c0 3.31-2.69 6-6 6s-6-2.69-6-6c0-2.17 1.16-4.06 2.88-5.12L7.44 4.44C5.36 5.88 4 8.28 4 11c0 4.42 3.58 8 8 8s8-3.58 8-8c0-2.72-1.36-5.12-3.44-6.56zM15 24h2v-2h-2v2z" + }, + "children": [] + }] +}; +exports.ic_settings_power_outline = ic_settings_power_outline; \ No newline at end of file diff --git a/dist/md/ic_settings_power_twotone.js b/dist/md/ic_settings_power_twotone.js new file mode 100644 index 000000000..fb5a5f52b --- /dev/null +++ b/dist/md/ic_settings_power_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_settings_power_twotone = void 0; +var ic_settings_power_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 24h2v-2H7v2zm4 0h2v-2h-2v2zm2-22h-2v10h2V2zm3.56 2.44l-1.45 1.45C16.84 6.94 18 8.83 18 11c0 3.31-2.69 6-6 6s-6-2.69-6-6c0-2.17 1.16-4.06 2.88-5.12L7.44 4.44C5.36 5.88 4 8.28 4 11c0 4.42 3.58 8 8 8s8-3.58 8-8c0-2.72-1.36-5.12-3.44-6.56zM15 24h2v-2h-2v2z" + }, + "children": [] + }] +}; +exports.ic_settings_power_twotone = ic_settings_power_twotone; \ No newline at end of file diff --git a/dist/md/ic_settings_remote.js b/dist/md/ic_settings_remote.js new file mode 100644 index 000000000..9566286a0 --- /dev/null +++ b/dist/md/ic_settings_remote.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_settings_remote = void 0; +var ic_settings_remote = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 9H9c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V10c0-.55-.45-1-1-1zm-3 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM7.05 6.05l1.41 1.41C9.37 6.56 10.62 6 12 6s2.63.56 3.54 1.46l1.41-1.41C15.68 4.78 13.93 4 12 4s-3.68.78-4.95 2.05zM12 0C8.96 0 6.21 1.23 4.22 3.22l1.41 1.41C7.26 3.01 9.51 2 12 2s4.74 1.01 6.36 2.64l1.41-1.41C17.79 1.23 15.04 0 12 0z" + }, + "children": [] + }] +}; +exports.ic_settings_remote = ic_settings_remote; \ No newline at end of file diff --git a/dist/md/ic_settings_remote_outline.js b/dist/md/ic_settings_remote_outline.js new file mode 100644 index 000000000..8a623b184 --- /dev/null +++ b/dist/md/ic_settings_remote_outline.js @@ -0,0 +1,38 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_settings_remote_outline = void 0; +var ic_settings_remote_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 9H9c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V10c0-.55-.45-1-1-1zm-1 12h-4V11h4v10z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "13", + "r": "1" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7.05 6.05l1.41 1.41C9.37 6.56 10.62 6 12 6s2.63.56 3.54 1.46l1.41-1.41C15.68 4.78 13.93 4 12 4s-3.68.78-4.95 2.05zM12 0C8.96 0 6.21 1.23 4.22 3.22l1.41 1.41C7.26 3.01 9.51 2 12 2s4.74 1.01 6.36 2.64l1.41-1.41C17.79 1.23 15.04 0 12 0z" + }, + "children": [] + }] +}; +exports.ic_settings_remote_outline = ic_settings_remote_outline; \ No newline at end of file diff --git a/dist/md/ic_settings_remote_twotone.js b/dist/md/ic_settings_remote_twotone.js new file mode 100644 index 000000000..d6b39897e --- /dev/null +++ b/dist/md/ic_settings_remote_twotone.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_settings_remote_twotone = void 0; +var ic_settings_remote_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 21h4V11h-4v10zm2-9c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 9H9c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V10c0-.55-.45-1-1-1zm-1 12h-4V11h4v10z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "13", + "r": "1" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7.05 6.05l1.41 1.41C9.37 6.56 10.62 6 12 6s2.63.56 3.54 1.46l1.41-1.41C15.68 4.78 13.93 4 12 4s-3.68.78-4.95 2.05zM12 0C8.96 0 6.21 1.23 4.22 3.22l1.41 1.41C7.26 3.01 9.51 2 12 2s4.74 1.01 6.36 2.64l1.41-1.41C17.79 1.23 15.04 0 12 0z" + }, + "children": [] + }] +}; +exports.ic_settings_remote_twotone = ic_settings_remote_twotone; \ No newline at end of file diff --git a/dist/md/ic_settings_system_daydream.js b/dist/md/ic_settings_system_daydream.js new file mode 100644 index 000000000..636203ea3 --- /dev/null +++ b/dist/md/ic_settings_system_daydream.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_settings_system_daydream = void 0; +var ic_settings_system_daydream = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 16h6.5c1.38 0 2.5-1.12 2.5-2.5S16.88 11 15.5 11h-.05c-.24-1.69-1.69-3-3.45-3-1.4 0-2.6.83-3.16 2.02h-.16C7.17 10.18 6 11.45 6 13c0 1.66 1.34 3 3 3zM21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02z" + }, + "children": [] + }] +}; +exports.ic_settings_system_daydream = ic_settings_system_daydream; \ No newline at end of file diff --git a/dist/md/ic_settings_system_daydream_outline.js b/dist/md/ic_settings_system_daydream_outline.js new file mode 100644 index 000000000..a71176cf0 --- /dev/null +++ b/dist/md/ic_settings_system_daydream_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_settings_system_daydream_outline = void 0; +var ic_settings_system_daydream_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.5 17H9c-2.21 0-4-1.79-4-4 0-1.93 1.36-3.56 3.22-3.92C9.04 7.8 10.47 7 12 7c1.95 0 3.66 1.28 4.26 3.09 1.58.36 2.74 1.75 2.74 3.41 0 1.93-1.57 3.5-3.5 3.5zm-6.76-5.98C7.74 11.15 7 11.99 7 13c0 1.1.9 2 2 2h6.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5h-.87l-.17-.86C14.29 9.92 13.23 9 12 9c-.96 0-1.84.57-2.26 1.45l-.27.57h-.73zM21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02z" + }, + "children": [] + }] +}; +exports.ic_settings_system_daydream_outline = ic_settings_system_daydream_outline; \ No newline at end of file diff --git a/dist/md/ic_settings_system_daydream_twotone.js b/dist/md/ic_settings_system_daydream_twotone.js new file mode 100644 index 000000000..2ba11e2eb --- /dev/null +++ b/dist/md/ic_settings_system_daydream_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_settings_system_daydream_twotone = void 0; +var ic_settings_system_daydream_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 15h6.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5h-.87l-.17-.86C14.29 9.92 13.23 9 12 9c-.96 0-1.84.57-2.26 1.45l-.27.57h-.73C7.74 11.15 7 11.99 7 13c0 1.1.9 2 2 2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 17h6.5c1.93 0 3.5-1.57 3.5-3.5 0-1.66-1.16-3.05-2.74-3.41C15.66 8.28 13.95 7 12 7c-1.53 0-2.96.8-3.78 2.08C6.36 9.44 5 11.07 5 13c0 2.21 1.79 4 4 4zm-.26-5.98h.74l.27-.57C10.16 9.57 11.04 9 12 9c1.23 0 2.29.92 2.46 2.14l.17.86h.87c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5H9c-1.1 0-2-.9-2-2 0-1.01.74-1.85 1.74-1.98zM21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02z" + }, + "children": [] + }] +}; +exports.ic_settings_system_daydream_twotone = ic_settings_system_daydream_twotone; \ No newline at end of file diff --git a/dist/md/ic_settings_twotone.js b/dist/md/ic_settings_twotone.js new file mode 100644 index 000000000..9531e270f --- /dev/null +++ b/dist/md/ic_settings_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_settings_twotone = void 0; +var ic_settings_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.28 8.6l-.7-1.21-1.27.51-1.06.43-.91-.7c-.39-.3-.8-.54-1.23-.71l-1.06-.43-.16-1.13L12.7 4h-1.4l-.19 1.35-.16 1.13-1.06.44c-.41.17-.82.41-1.25.73l-.9.68-1.05-.42-1.27-.52-.7 1.21 1.08.84.89.7-.14 1.13c-.03.3-.05.53-.05.73s.02.43.05.73l.14 1.13-.89.7-1.08.84.7 1.21 1.27-.51 1.06-.43.91.7c.39.3.8.54 1.23.71l1.06.43.16 1.13.19 1.36h1.39l.19-1.35.16-1.13 1.06-.43c.41-.17.82-.41 1.25-.73l.9-.68 1.04.42 1.27.51.7-1.21-1.08-.84-.89-.7.14-1.13c.04-.31.05-.52.05-.73 0-.21-.02-.43-.05-.73l-.14-1.13.89-.7 1.1-.84zM12 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.43 12.98c.04-.32.07-.64.07-.98 0-.34-.03-.66-.07-.98l2.11-1.65c.19-.15.24-.42.12-.64l-2-3.46c-.09-.16-.26-.25-.44-.25-.06 0-.12.01-.17.03l-2.49 1c-.52-.4-1.08-.73-1.69-.98l-.38-2.65C14.46 2.18 14.25 2 14 2h-4c-.25 0-.46.18-.49.42l-.38 2.65c-.61.25-1.17.59-1.69.98l-2.49-1c-.06-.02-.12-.03-.18-.03-.17 0-.34.09-.43.25l-2 3.46c-.13.22-.07.49.12.64l2.11 1.65c-.04.32-.07.65-.07.98s.03.66.07.98l-2.11 1.65c-.19.15-.24.42-.12.64l2 3.46c.09.16.26.25.44.25.06 0 .12-.01.17-.03l2.49-1c.52.4 1.08.73 1.69.98l.38 2.65c.03.24.24.42.49.42h4c.25 0 .46-.18.49-.42l.38-2.65c.61-.25 1.17-.59 1.69-.98l2.49 1c.06.02.12.03.18.03.17 0 .34-.09.43-.25l2-3.46c.12-.22.07-.49-.12-.64l-2.11-1.65zm-1.98-1.71c.04.31.05.52.05.73 0 .21-.02.43-.05.73l-.14 1.13.89.7 1.08.84-.7 1.21-1.27-.51-1.04-.42-.9.68c-.43.32-.84.56-1.25.73l-1.06.43-.16 1.13-.2 1.35h-1.4l-.19-1.35-.16-1.13-1.06-.43c-.43-.18-.83-.41-1.23-.71l-.91-.7-1.06.43-1.27.51-.7-1.21 1.08-.84.89-.7-.14-1.13c-.03-.31-.05-.54-.05-.74s.02-.43.05-.73l.14-1.13-.89-.7-1.08-.84.7-1.21 1.27.51 1.04.42.9-.68c.43-.32.84-.56 1.25-.73l1.06-.43.16-1.13.2-1.35h1.39l.19 1.35.16 1.13 1.06.43c.43.18.83.41 1.23.71l.91.7 1.06-.43 1.27-.51.7 1.21-1.07.85-.89.7.14 1.13zM12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" + }, + "children": [] + }] +}; +exports.ic_settings_twotone = ic_settings_twotone; \ No newline at end of file diff --git a/dist/md/ic_settings_voice.js b/dist/md/ic_settings_voice.js new file mode 100644 index 000000000..5ce38db75 --- /dev/null +++ b/dist/md/ic_settings_voice.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_settings_voice = void 0; +var ic_settings_voice = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 24h2v-2H7v2zm5-11c1.66 0 2.99-1.34 2.99-3L15 4c0-1.66-1.34-3-3-3S9 2.34 9 4v6c0 1.66 1.34 3 3 3zm-1 11h2v-2h-2v2zm4 0h2v-2h-2v2zm4-14h-1.7c0 3-2.54 5.1-5.3 5.1S6.7 13 6.7 10H5c0 3.41 2.72 6.23 6 6.72V20h2v-3.28c3.28-.49 6-3.31 6-6.72z" + }, + "children": [] + }] +}; +exports.ic_settings_voice = ic_settings_voice; \ No newline at end of file diff --git a/dist/md/ic_settings_voice_outline.js b/dist/md/ic_settings_voice_outline.js new file mode 100644 index 000000000..f2d5bcb94 --- /dev/null +++ b/dist/md/ic_settings_voice_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_settings_voice_outline = void 0; +var ic_settings_voice_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 22h2v2H7zm5-9c1.66 0 3-1.34 3-3V4c0-1.66-1.34-3-3-3S9 2.34 9 4v6c0 1.66 1.34 3 3 3zm-1-9c0-.55.45-1 1-1s1 .45 1 1v6c0 .56-.44 1-1 1-.55 0-1-.45-1-1V4zm0 18h2v2h-2zm4 0h2v2h-2zm4-12h-1.7c0 3-2.54 5.1-5.3 5.1S6.7 13 6.7 10H5c0 3.41 2.72 6.23 6 6.72V20h2v-3.28c3.28-.49 6-3.31 6-6.72z" + }, + "children": [] + }] +}; +exports.ic_settings_voice_outline = ic_settings_voice_outline; \ No newline at end of file diff --git a/dist/md/ic_settings_voice_twotone.js b/dist/md/ic_settings_voice_twotone.js new file mode 100644 index 000000000..79407ff25 --- /dev/null +++ b/dist/md/ic_settings_voice_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_settings_voice_twotone = void 0; +var ic_settings_voice_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 11c.56 0 .99-.44.99-1L13 4c0-.55-.45-1-1-1s-1 .45-1 1v6c0 .55.45 1 1 1z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 22h2v2H7zm5-9c1.66 0 2.99-1.34 2.99-3L15 4c0-1.66-1.34-3-3-3S9 2.34 9 4v6c0 1.66 1.34 3 3 3zm-1-9c0-.55.45-1 1-1s1 .45 1 1v6c0 .56-.44 1-1 1-.55 0-1-.45-1-1V4zm0 18h2v2h-2zm4 0h2v2h-2zm4-12h-1.7c0 3-2.54 5.1-5.3 5.1S6.7 13 6.7 10H5c0 3.41 2.72 6.23 6 6.72V20h2v-3.28c3.28-.49 6-3.31 6-6.72z" + }, + "children": [] + }] +}; +exports.ic_settings_voice_twotone = ic_settings_voice_twotone; \ No newline at end of file diff --git a/dist/md/ic_share.js b/dist/md/ic_share.js new file mode 100644 index 000000000..f2a85f782 --- /dev/null +++ b/dist/md/ic_share.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_share = void 0; +var ic_share = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 16.08c-.76 0-1.44.3-1.96.77L8.91 12.7c.05-.23.09-.46.09-.7s-.04-.47-.09-.7l7.05-4.11c.54.5 1.25.81 2.04.81 1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3c0 .24.04.47.09.7L8.04 9.81C7.5 9.31 6.79 9 6 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c.79 0 1.5-.31 2.04-.81l7.12 4.16c-.05.21-.08.43-.08.65 0 1.61 1.31 2.92 2.92 2.92 1.61 0 2.92-1.31 2.92-2.92s-1.31-2.92-2.92-2.92z" + }, + "children": [] + }] +}; +exports.ic_share = ic_share; \ No newline at end of file diff --git a/dist/md/ic_share_outline.js b/dist/md/ic_share_outline.js new file mode 100644 index 000000000..0c8aa3ac8 --- /dev/null +++ b/dist/md/ic_share_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_share_outline = void 0; +var ic_share_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 16.08c-.76 0-1.44.3-1.96.77L8.91 12.7c.05-.23.09-.46.09-.7s-.04-.47-.09-.7l7.05-4.11c.54.5 1.25.81 2.04.81 1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3c0 .24.04.47.09.7L8.04 9.81C7.5 9.31 6.79 9 6 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c.79 0 1.5-.31 2.04-.81l7.12 4.16c-.05.21-.08.43-.08.65 0 1.61 1.31 2.92 2.92 2.92s2.92-1.31 2.92-2.92c0-1.61-1.31-2.92-2.92-2.92zM18 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM6 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm12 7.02c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" + }, + "children": [] + }] +}; +exports.ic_share_outline = ic_share_outline; \ No newline at end of file diff --git a/dist/md/ic_share_twotone.js b/dist/md/ic_share_twotone.js new file mode 100644 index 000000000..55dc27160 --- /dev/null +++ b/dist/md/ic_share_twotone.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_share_twotone = void 0; +var ic_share_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "18", + "cy": "5", + "opacity": ".3", + "r": "1" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "6", + "cy": "12", + "opacity": ".3", + "r": "1" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "18", + "cy": "19.02", + "opacity": ".3", + "r": "1" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 16.08c-.76 0-1.44.3-1.96.77L8.91 12.7c.05-.23.09-.46.09-.7s-.04-.47-.09-.7l7.05-4.11c.54.5 1.25.81 2.04.81 1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3c0 .24.04.47.09.7L8.04 9.81C7.5 9.31 6.79 9 6 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c.79 0 1.5-.31 2.04-.81l7.12 4.16c-.05.21-.08.43-.08.65 0 1.61 1.31 2.92 2.92 2.92s2.92-1.31 2.92-2.92c0-1.61-1.31-2.92-2.92-2.92zM18 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM6 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm12 7.02c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" + }, + "children": [] + }] +}; +exports.ic_share_twotone = ic_share_twotone; \ No newline at end of file diff --git a/dist/md/ic_shield.js b/dist/md/ic_shield.js new file mode 100644 index 000000000..ff1d31a3d --- /dev/null +++ b/dist/md/ic_shield.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_shield = void 0; +var ic_shield = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4z" + }, + "children": [] + }] +}; +exports.ic_shield = ic_shield; \ No newline at end of file diff --git a/dist/md/ic_shop.js b/dist/md/ic_shop.js new file mode 100644 index 000000000..3853ec2c2 --- /dev/null +++ b/dist/md/ic_shop.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_shop = void 0; +var ic_shop = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 6V4c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H2v13c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6h-6zm-6-2h4v2h-4V4zM9 18V9l7.5 4L9 18z" + }, + "children": [] + }] +}; +exports.ic_shop = ic_shop; \ No newline at end of file diff --git a/dist/md/ic_shop_outline.js b/dist/md/ic_shop_outline.js new file mode 100644 index 000000000..2988645d6 --- /dev/null +++ b/dist/md/ic_shop_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_shop_outline = void 0; +var ic_shop_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 6V4c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H2v13c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6h-6zm-6-2h4v2h-4V4zm10 15H4V8h16v11zM9 18l7.5-5L9 9z" + }, + "children": [] + }] +}; +exports.ic_shop_outline = ic_shop_outline; \ No newline at end of file diff --git a/dist/md/ic_shop_two.js b/dist/md/ic_shop_two.js new file mode 100644 index 000000000..227aba153 --- /dev/null +++ b/dist/md/ic_shop_two.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_shop_two = void 0; +var ic_shop_two = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 9H1v11c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2H3V9zm15-4V3c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H5v11c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2V5h-5zm-6-2h4v2h-4V3zm0 12V8l5.5 3-5.5 4z" + }, + "children": [] + }] +}; +exports.ic_shop_two = ic_shop_two; \ No newline at end of file diff --git a/dist/md/ic_shop_two_outline.js b/dist/md/ic_shop_two_outline.js new file mode 100644 index 000000000..f684aa976 --- /dev/null +++ b/dist/md/ic_shop_two_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_shop_two_outline = void 0; +var ic_shop_two_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 9H1v11c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2H3V9zm15-4V3c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H5v11c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2V5h-5zm-6-2h4v2h-4V3zm9 13H7V7h14v9zm-9-1l5.5-4L12 8z" + }, + "children": [] + }] +}; +exports.ic_shop_two_outline = ic_shop_two_outline; \ No newline at end of file diff --git a/dist/md/ic_shop_two_twotone.js b/dist/md/ic_shop_two_twotone.js new file mode 100644 index 000000000..cf3045dc8 --- /dev/null +++ b/dist/md/ic_shop_two_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_shop_two_twotone = void 0; +var ic_shop_two_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 7v9h14V7H7zm5 8V8l5.5 3-5.5 4z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 9H1v11c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2H3V9zm15-4V3c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H5v11c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2V5h-5zm-6-2h4v2h-4V3zm9 13H7V7h14v9zm-9-1l5.5-4L12 8z" + }, + "children": [] + }] +}; +exports.ic_shop_two_twotone = ic_shop_two_twotone; \ No newline at end of file diff --git a/dist/md/ic_shop_twotone.js b/dist/md/ic_shop_twotone.js new file mode 100644 index 000000000..040db81de --- /dev/null +++ b/dist/md/ic_shop_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_shop_twotone = void 0; +var ic_shop_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 19h16V8H4v11zM9 9l7.5 4L9 18V9z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 6V4c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H2v13c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6h-6zm-6-2h4v2h-4V4zm10 15H4V8h16v11zM9 9v9l7.5-5z" + }, + "children": [] + }] +}; +exports.ic_shop_twotone = ic_shop_twotone; \ No newline at end of file diff --git a/dist/md/ic_shopping_bag.js b/dist/md/ic_shopping_bag.js new file mode 100644 index 000000000..f9f02ede0 --- /dev/null +++ b/dist/md/ic_shopping_bag.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_shopping_bag = void 0; +var ic_shopping_bag = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M18,6h-2c0-2.21-1.79-4-4-4S8,3.79,8,6H6C4.9,6,4,6.9,4,8v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8C20,6.9,19.1,6,18,6z M10,10c0,0.55-0.45,1-1,1s-1-0.45-1-1V8h2V10z M12,4c1.1,0,2,0.9,2,2h-4C10,4.9,10.9,4,12,4z M16,10c0,0.55-0.45,1-1,1 s-1-0.45-1-1V8h2V10z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18,6h-2c0-2.21-1.79-4-4-4S8,3.79,8,6H6C4.9,6,4,6.9,4,8v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8C20,6.9,19.1,6,18,6z M10,10c0,0.55-0.45,1-1,1s-1-0.45-1-1V8h2V10z M12,4c1.1,0,2,0.9,2,2h-4C10,4.9,10.9,4,12,4z M16,10c0,0.55-0.45,1-1,1 s-1-0.45-1-1V8h2V10z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_shopping_bag = ic_shopping_bag; \ No newline at end of file diff --git a/dist/md/ic_shopping_bag_outline.js b/dist/md/ic_shopping_bag_outline.js new file mode 100644 index 000000000..e0ae02172 --- /dev/null +++ b/dist/md/ic_shopping_bag_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_shopping_bag_outline = void 0; +var ic_shopping_bag_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M18,6h-2c0-2.21-1.79-4-4-4S8,3.79,8,6H6C4.9,6,4,6.9,4,8v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8C20,6.9,19.1,6,18,6z M12,4c1.1,0,2,0.9,2,2h-4C10,4.9,10.9,4,12,4z M18,20H6V8h2v2c0,0.55,0.45,1,1,1s1-0.45,1-1V8h4v2c0,0.55,0.45,1,1,1s1-0.45,1-1V8 h2V20z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18,6h-2c0-2.21-1.79-4-4-4S8,3.79,8,6H6C4.9,6,4,6.9,4,8v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8C20,6.9,19.1,6,18,6z M12,4c1.1,0,2,0.9,2,2h-4C10,4.9,10.9,4,12,4z M18,20H6V8h2v2c0,0.55,0.45,1,1,1s1-0.45,1-1V8h4v2c0,0.55,0.45,1,1,1s1-0.45,1-1V8 h2V20z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_shopping_bag_outline = ic_shopping_bag_outline; \ No newline at end of file diff --git a/dist/md/ic_shopping_bag_twotone.js b/dist/md/ic_shopping_bag_twotone.js new file mode 100644 index 000000000..cbd8b7f1f --- /dev/null +++ b/dist/md/ic_shopping_bag_twotone.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_shopping_bag_twotone = void 0; +var ic_shopping_bag_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M18,20H6V8h2v2c0,0.55,0.45,1,1,1s1-0.45,1-1V8h4v2c0,0.55,0.45,1,1,1s1-0.45,1-1V8h2V20z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18,20H6V8h2v2c0,0.55,0.45,1,1,1s1-0.45,1-1V8h4v2c0,0.55,0.45,1,1,1s1-0.45,1-1V8h2V20z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M18,6h-2c0-2.21-1.79-4-4-4S8,3.79,8,6H6C4.9,6,4,6.9,4,8v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8C20,6.9,19.1,6,18,6z M12,4c1.1,0,2,0.9,2,2h-4C10,4.9,10.9,4,12,4z M18,20H6V8h2v2c0,0.55,0.45,1,1,1s1-0.45,1-1V8h4v2c0,0.55,0.45,1,1,1s1-0.45,1-1V8 h2V20z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18,6h-2c0-2.21-1.79-4-4-4S8,3.79,8,6H6C4.9,6,4,6.9,4,8v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8C20,6.9,19.1,6,18,6z M12,4c1.1,0,2,0.9,2,2h-4C10,4.9,10.9,4,12,4z M18,20H6V8h2v2c0,0.55,0.45,1,1,1s1-0.45,1-1V8h4v2c0,0.55,0.45,1,1,1s1-0.45,1-1V8 h2V20z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_shopping_bag_twotone = ic_shopping_bag_twotone; \ No newline at end of file diff --git a/dist/md/ic_shopping_basket.js b/dist/md/ic_shopping_basket.js new file mode 100644 index 000000000..2ba0acc25 --- /dev/null +++ b/dist/md/ic_shopping_basket.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_shopping_basket = void 0; +var ic_shopping_basket = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17.21 9l-4.38-6.56c-.19-.28-.51-.42-.83-.42-.32 0-.64.14-.83.43L6.79 9H2c-.55 0-1 .45-1 1 0 .09.01.18.04.27l2.54 9.27c.23.84 1 1.46 1.92 1.46h13c.92 0 1.69-.62 1.93-1.46l2.54-9.27L23 10c0-.55-.45-1-1-1h-4.79zM9 9l3-4.4L15 9H9zm3 8c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" + }, + "children": [] + }] +}; +exports.ic_shopping_basket = ic_shopping_basket; \ No newline at end of file diff --git a/dist/md/ic_shopping_basket_outline.js b/dist/md/ic_shopping_basket_outline.js new file mode 100644 index 000000000..470930054 --- /dev/null +++ b/dist/md/ic_shopping_basket_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_shopping_basket_outline = void 0; +var ic_shopping_basket_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 9h-4.79l-4.38-6.56c-.19-.28-.51-.42-.83-.42s-.64.14-.83.43L6.79 9H2c-.55 0-1 .45-1 1 0 .09.01.18.04.27l2.54 9.27c.23.84 1 1.46 1.92 1.46h13c.92 0 1.69-.62 1.93-1.46l2.54-9.27L23 10c0-.55-.45-1-1-1zM12 4.8L14.8 9H9.2L12 4.8zM18.5 19l-12.99.01L3.31 11H20.7l-2.2 8zM12 13c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_shopping_basket_outline = ic_shopping_basket_outline; \ No newline at end of file diff --git a/dist/md/ic_shopping_basket_twotone.js b/dist/md/ic_shopping_basket_twotone.js new file mode 100644 index 000000000..d717e0d3e --- /dev/null +++ b/dist/md/ic_shopping_basket_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_shopping_basket_twotone = void 0; +var ic_shopping_basket_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3.31 11l2.2 8.01L18.5 19l2.2-8H3.31zM12 17c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 9h-4.79l-4.38-6.56c-.19-.28-.51-.42-.83-.42s-.64.14-.83.43L6.79 9H2c-.55 0-1 .45-1 1 0 .09.01.18.04.27l2.54 9.27c.23.84 1 1.46 1.92 1.46h13c.92 0 1.69-.62 1.93-1.46l2.54-9.27L23 10c0-.55-.45-1-1-1zM12 4.8L14.8 9H9.2L12 4.8zM18.5 19l-12.99.01L3.31 11H20.7l-2.2 8zM12 13c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_shopping_basket_twotone = ic_shopping_basket_twotone; \ No newline at end of file diff --git a/dist/md/ic_shopping_cart.js b/dist/md/ic_shopping_cart.js new file mode 100644 index 000000000..82541c55b --- /dev/null +++ b/dist/md/ic_shopping_cart.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_shopping_cart = void 0; +var ic_shopping_cart = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zM1 2v2h2l3.6 7.59-1.35 2.45c-.16.28-.25.61-.25.96 0 1.1.9 2 2 2h12v-2H7.42c-.14 0-.25-.11-.25-.25l.03-.12.9-1.63h7.45c.75 0 1.41-.41 1.75-1.03l3.58-6.49c.08-.14.12-.31.12-.48 0-.55-.45-1-1-1H5.21l-.94-2H1zm16 16c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_shopping_cart = ic_shopping_cart; \ No newline at end of file diff --git a/dist/md/ic_shopping_cart_outline.js b/dist/md/ic_shopping_cart_outline.js new file mode 100644 index 000000000..a44a85e39 --- /dev/null +++ b/dist/md/ic_shopping_cart_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_shopping_cart_outline = void 0; +var ic_shopping_cart_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.55 13c.75 0 1.41-.41 1.75-1.03l3.58-6.49c.37-.66-.11-1.48-.87-1.48H5.21l-.94-2H1v2h2l3.6 7.59-1.35 2.44C4.52 15.37 5.48 17 7 17h12v-2H7l1.1-2h7.45zM6.16 6h12.15l-2.76 5H8.53L6.16 6zM7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_shopping_cart_outline = ic_shopping_cart_outline; \ No newline at end of file diff --git a/dist/md/ic_shopping_cart_twotone.js b/dist/md/ic_shopping_cart_twotone.js new file mode 100644 index 000000000..07d9418e5 --- /dev/null +++ b/dist/md/ic_shopping_cart_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_shopping_cart_twotone = void 0; +var ic_shopping_cart_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.55 11l2.76-5H6.16l2.37 5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.55 13c.75 0 1.41-.41 1.75-1.03l3.58-6.49c.37-.66-.11-1.48-.87-1.48H5.21l-.94-2H1v2h2l3.6 7.59-1.35 2.44C4.52 15.37 5.48 17 7 17h12v-2H7l1.1-2h7.45zM6.16 6h12.15l-2.76 5H8.53L6.16 6zM7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_shopping_cart_twotone = ic_shopping_cart_twotone; \ No newline at end of file diff --git a/dist/md/ic_short_text.js b/dist/md/ic_short_text.js new file mode 100644 index 000000000..f5f0628de --- /dev/null +++ b/dist/md/ic_short_text.js @@ -0,0 +1,65 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_short_text = void 0; +var ic_short_text = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M4,9h16v2H4V9z M4,13h10v2H4V13z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M4,9h16v2H4V9z M4,13h10v2H4V13z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_short_text = ic_short_text; \ No newline at end of file diff --git a/dist/md/ic_short_text_outline.js b/dist/md/ic_short_text_outline.js new file mode 100644 index 000000000..a00fe0300 --- /dev/null +++ b/dist/md/ic_short_text_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_short_text_outline = void 0; +var ic_short_text_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 9h16v2H4V9zm0 4h10v2H4v-2z" + }, + "children": [] + }] +}; +exports.ic_short_text_outline = ic_short_text_outline; \ No newline at end of file diff --git a/dist/md/ic_short_text_twotone.js b/dist/md/ic_short_text_twotone.js new file mode 100644 index 000000000..fe8e08af2 --- /dev/null +++ b/dist/md/ic_short_text_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_short_text_twotone = void 0; +var ic_short_text_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 9h16v2H4zm0 4h10v2H4z" + }, + "children": [] + }] +}; +exports.ic_short_text_twotone = ic_short_text_twotone; \ No newline at end of file diff --git a/dist/md/ic_show_chart.js b/dist/md/ic_show_chart.js new file mode 100644 index 000000000..227ac88e3 --- /dev/null +++ b/dist/md/ic_show_chart.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_show_chart = void 0; +var ic_show_chart = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3.5 18.49l6-6.01 4 4L22 6.92l-1.41-1.41-7.09 7.97-4-4L2 16.99z" + }, + "children": [] + }] +}; +exports.ic_show_chart = ic_show_chart; \ No newline at end of file diff --git a/dist/md/ic_show_chart_outline.js b/dist/md/ic_show_chart_outline.js new file mode 100644 index 000000000..265e8fcbd --- /dev/null +++ b/dist/md/ic_show_chart_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_show_chart_outline = void 0; +var ic_show_chart_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3.5 18.49l6-6.01 4 4L22 6.92l-1.41-1.41-7.09 7.97-4-4L2 16.99l1.5 1.5z" + }, + "children": [] + }] +}; +exports.ic_show_chart_outline = ic_show_chart_outline; \ No newline at end of file diff --git a/dist/md/ic_show_chart_twotone.js b/dist/md/ic_show_chart_twotone.js new file mode 100644 index 000000000..e67493796 --- /dev/null +++ b/dist/md/ic_show_chart_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_show_chart_twotone = void 0; +var ic_show_chart_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13.5 13.48l-4-4L2 16.99l1.5 1.5 6-6.01 4 4L22 6.92l-1.41-1.41z" + }, + "children": [] + }] +}; +exports.ic_show_chart_twotone = ic_show_chart_twotone; \ No newline at end of file diff --git a/dist/md/ic_shuffle.js b/dist/md/ic_shuffle.js new file mode 100644 index 000000000..d609b6f34 --- /dev/null +++ b/dist/md/ic_shuffle.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_shuffle = void 0; +var ic_shuffle = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10.59 9.17L5.41 4 4 5.41l5.17 5.17 1.42-1.41zM14.5 4l2.04 2.04L4 18.59 5.41 20 17.96 7.46 20 9.5V4h-5.5zm.33 9.41l-1.41 1.41 3.13 3.13L14.5 20H20v-5.5l-2.04 2.04-3.13-3.13z" + }, + "children": [] + }] +}; +exports.ic_shuffle = ic_shuffle; \ No newline at end of file diff --git a/dist/md/ic_shuffle_on.js b/dist/md/ic_shuffle_on.js new file mode 100644 index 000000000..8c0c153e6 --- /dev/null +++ b/dist/md/ic_shuffle_on.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_shuffle_on = void 0; +var ic_shuffle_on = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 1H3c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zM10.59 9.17L5.41 4 4 5.41l5.17 5.17 1.42-1.41zM14.5 4l2.04 2.04L4 18.59 5.41 20 17.96 7.46 20 9.5V4h-5.5zm.33 9.41l-1.41 1.41 3.13 3.13L14.5 20H20v-5.5l-2.04 2.04-3.13-3.13z", + "fill-rule": "evenodd" + }, + "children": [] + }] +}; +exports.ic_shuffle_on = ic_shuffle_on; \ No newline at end of file diff --git a/dist/md/ic_shuffle_outline.js b/dist/md/ic_shuffle_outline.js new file mode 100644 index 000000000..775ef2b98 --- /dev/null +++ b/dist/md/ic_shuffle_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_shuffle_outline = void 0; +var ic_shuffle_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10.59 9.17L5.41 4 4 5.41l5.17 5.17 1.42-1.41zM14.5 4l2.04 2.04L4 18.59 5.41 20 17.96 7.46 20 9.5V4h-5.5zm.33 9.41l-1.41 1.41 3.13 3.13L14.5 20H20v-5.5l-2.04 2.04-3.13-3.13z" + }, + "children": [] + }] +}; +exports.ic_shuffle_outline = ic_shuffle_outline; \ No newline at end of file diff --git a/dist/md/ic_shuffle_twotone.js b/dist/md/ic_shuffle_twotone.js new file mode 100644 index 000000000..cc372ca64 --- /dev/null +++ b/dist/md/ic_shuffle_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_shuffle_twotone = void 0; +var ic_shuffle_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 4h-5.5l2.04 2.04L4 18.59 5.41 20 17.96 7.46 20 9.5zM5.41 4L4 5.41l5.17 5.17 1.42-1.41zM20 20v-5.5l-2.04 2.04-3.13-3.13-1.41 1.41 3.13 3.13L14.5 20z" + }, + "children": [] + }] +}; +exports.ic_shuffle_twotone = ic_shuffle_twotone; \ No newline at end of file diff --git a/dist/md/ic_shutter_speed.js b/dist/md/ic_shutter_speed.js new file mode 100644 index 000000000..e8f67f5c6 --- /dev/null +++ b/dist/md/ic_shutter_speed.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_shutter_speed = void 0; +var ic_shutter_speed = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 1H9v2h6V1zm4.03 6.39l1.42-1.42c-.43-.51-.9-.99-1.41-1.41l-1.42 1.42C16.07 4.74 14.12 4 12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9 9-4.03 9-9c0-2.12-.74-4.07-1.97-5.61zM12 20c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm-.32-5H6.35c.57 1.62 1.82 2.92 3.41 3.56l-.11-.06 2.03-3.5zm5.97-4c-.57-1.6-1.78-2.89-3.34-3.54L12.26 11h5.39zm-7.04 7.83c.45.11.91.17 1.39.17 1.34 0 2.57-.45 3.57-1.19l-2.11-3.9-2.85 4.92zM7.55 8.99C6.59 10.05 6 11.46 6 13c0 .34.04.67.09 1h4.72L7.55 8.99zm8.79 8.14C17.37 16.06 18 14.6 18 13c0-.34-.04-.67-.09-1h-4.34l2.77 5.13zm-3.01-9.98C12.9 7.06 12.46 7 12 7c-1.4 0-2.69.49-3.71 1.29l2.32 3.56 2.72-4.7z" + }, + "children": [] + }] +}; +exports.ic_shutter_speed = ic_shutter_speed; \ No newline at end of file diff --git a/dist/md/ic_shutter_speed_outline.js b/dist/md/ic_shutter_speed_outline.js new file mode 100644 index 000000000..e6f998e94 --- /dev/null +++ b/dist/md/ic_shutter_speed_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_shutter_speed_outline = void 0; +var ic_shutter_speed_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 1H9v2h6V1zm4.03 6.39l1.42-1.42c-.43-.51-.9-.99-1.41-1.41l-1.42 1.42C16.07 4.74 14.12 4 12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9 9-4.03 9-9c0-2.12-.74-4.07-1.97-5.61zM12 20c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm-.32-5H6.35c.57 1.62 1.82 2.92 3.41 3.56l-.11-.06 2.03-3.5zm5.97-4c-.57-1.6-1.78-2.89-3.34-3.54L12.26 11h5.39zm-7.04 7.83c.45.11.91.17 1.39.17 1.34 0 2.57-.45 3.57-1.19l-2.11-3.9-2.85 4.92zM7.55 8.99C6.59 10.05 6 11.46 6 13c0 .34.04.67.09 1h4.72L7.55 8.99zm8.79 8.14C17.37 16.06 18 14.6 18 13c0-.34-.04-.67-.09-1h-4.34l2.77 5.13zm-3.01-9.98C12.9 7.06 12.46 7 12 7c-1.4 0-2.69.49-3.71 1.29l2.32 3.56 2.72-4.7z" + }, + "children": [] + }] +}; +exports.ic_shutter_speed_outline = ic_shutter_speed_outline; \ No newline at end of file diff --git a/dist/md/ic_shutter_speed_twotone.js b/dist/md/ic_shutter_speed_twotone.js new file mode 100644 index 000000000..0d1303853 --- /dev/null +++ b/dist/md/ic_shutter_speed_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_shutter_speed_twotone = void 0; +var ic_shutter_speed_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 6c-3.87 0-7 3.13-7 7s3.13 7 7 7 7-3.13 7-7-3.13-7-7-7zm0 1c.46 0 .9.06 1.33.15l-2.72 4.7-2.32-3.56C9.31 7.49 10.6 7 12 7zm-6 6c0-1.54.59-2.95 1.55-4.01L10.81 14H6.09c-.05-.33-.09-.66-.09-1zm.35 2h5.33l-2.03 3.5.11.06c-1.59-.64-2.84-1.94-3.41-3.56zM12 19c-.48 0-.94-.06-1.39-.17l2.85-4.92 2.11 3.9c-1 .74-2.23 1.19-3.57 1.19zm6-6c0 1.6-.63 3.06-1.66 4.13L13.57 12h4.34c.05.33.09.66.09 1zm-5.74-2l2.05-3.54c1.56.65 2.77 1.94 3.34 3.54h-5.39z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7.55 8.99C6.59 10.05 6 11.46 6 13c0 .34.04.67.09 1h4.72L7.55 8.99zm6.76-1.53L12.26 11h5.39c-.57-1.6-1.78-2.89-3.34-3.54zm-.98-.31C12.9 7.06 12.46 7 12 7c-1.4 0-2.69.49-3.71 1.29l2.32 3.56 2.72-4.7zM11.68 15H6.35c.57 1.62 1.82 2.92 3.41 3.56l-.11-.06 2.03-3.5zm7.35-7.61l1.42-1.42c-.43-.51-.9-.99-1.41-1.41l-1.42 1.42C16.07 4.74 14.12 4 12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9 9-4.03 9-9c0-2.12-.74-4.07-1.97-5.61zM12 20c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zM9 1h6v2H9zm7.34 16.13C17.37 16.06 18 14.6 18 13c0-.34-.04-.67-.09-1h-4.34l2.77 5.13zm-5.73 1.7c.45.11.91.17 1.39.17 1.34 0 2.57-.45 3.57-1.19l-2.11-3.9-2.85 4.92z" + }, + "children": [] + }] +}; +exports.ic_shutter_speed_twotone = ic_shutter_speed_twotone; \ No newline at end of file diff --git a/dist/md/ic_sick.js b/dist/md/ic_sick.js new file mode 100644 index 000000000..b31fdc96f --- /dev/null +++ b/dist/md/ic_sick.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sick = void 0; +var ic_sick = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21,9c-1.1,0-2-0.9-2-2c0-1.1,2-4,2-4s2,2.9,2,4C23,8.1,22.1,9,21,9z M17.5,7c0-0.73,0.41-1.71,0.92-2.66 C16.68,2.88,14.44,2,11.99,2C6.47,2,2,6.48,2,12c0,5.52,4.47,10,9.99,10C17.52,22,22,17.52,22,12c0-0.55-0.06-1.09-0.14-1.62 C21.58,10.45,21.3,10.5,21,10.5C19.07,10.5,17.5,8.93,17.5,7z M15.62,7.38l1.06,1.06L15.62,9.5l1.06,1.06l-1.06,1.06L13.5,9.5 L15.62,7.38z M7.32,8.44l1.06-1.06L10.5,9.5l-2.12,2.12l-1.06-1.06L8.38,9.5L7.32,8.44z M15.44,17c-0.69-1.19-1.97-2-3.44-2 s-2.75,0.81-3.44,2H6.88c0.3-0.76,0.76-1.43,1.34-1.99L5.24,13.3c-0.45,0.26-1.01,0.28-1.49,0c-0.72-0.41-0.96-1.33-0.55-2.05 c0.41-0.72,1.33-0.96,2.05-0.55c0.48,0.28,0.74,0.78,0.74,1.29l3.58,2.07c0.73-0.36,1.55-0.56,2.43-0.56c2.33,0,4.32,1.45,5.12,3.5 H15.44z" + }, + "children": [] + }] +}; +exports.ic_sick = ic_sick; \ No newline at end of file diff --git a/dist/md/ic_sick_outline.js b/dist/md/ic_sick_outline.js new file mode 100644 index 000000000..c44fe6b93 --- /dev/null +++ b/dist/md/ic_sick_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sick_outline = void 0; +var ic_sick_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7.32,10.56L8.38,9.5L7.32,8.44l1.06-1.06L10.5,9.5l-2.12,2.12L7.32,10.56z M4.5,9c0.03,0,0.05,0.01,0.08,0.01 C5.77,6.07,8.64,4,12,4c2.19,0,4.16,0.88,5.61,2.3c0.15-0.6,0.45-1.29,0.81-1.96C16.68,2.88,14.44,2,11.99,2 c-4.88,0-8.94,3.51-9.81,8.14C2.74,9.44,3.59,9,4.5,9z M21,10.5c-0.42,0-0.82-0.09-1.19-0.22C19.93,10.83,20,11.41,20,12 c0,4.42-3.58,8-8,8c-3.36,0-6.23-2.07-7.42-5.01C4.55,14.99,4.53,15,4.5,15c-0.52,0-1.04-0.14-1.5-0.4 c-0.32-0.18-0.59-0.42-0.82-0.7c0.89,4.61,4.93,8.1,9.8,8.1C17.52,22,22,17.52,22,12c0-0.55-0.06-1.09-0.14-1.62 C21.58,10.45,21.3,10.5,21,10.5z M21,3c0,0-2,2.9-2,4c0,1.1,0.9,2,2,2s2-0.9,2-2C23,5.9,21,3,21,3z M15.62,7.38L13.5,9.5l2.12,2.12 l1.06-1.06L15.62,9.5l1.06-1.06L15.62,7.38z M8.56,17c0.69-1.19,1.97-2,3.44-2s2.75,0.81,3.44,2h1.68c-0.8-2.05-2.79-3.5-5.12-3.5 c-0.87,0-1.7,0.2-2.43,0.57l0,0L5.99,12c0-0.52-0.26-1.02-0.74-1.29c-0.72-0.41-1.63-0.17-2.05,0.55c-0.41,0.72-0.17,1.63,0.55,2.05 c0.48,0.28,1.05,0.25,1.49,0l2.97,1.72l0,0C7.64,15.56,7.18,16.24,6.88,17H8.56z" + }, + "children": [] + }] +}; +exports.ic_sick_outline = ic_sick_outline; \ No newline at end of file diff --git a/dist/md/ic_sick_twotone.js b/dist/md/ic_sick_twotone.js new file mode 100644 index 000000000..fce442075 --- /dev/null +++ b/dist/md/ic_sick_twotone.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sick_twotone = void 0; +var ic_sick_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7.32,10.56L8.38,9.5L7.32,8.44l1.06-1.06L10.5,9.5l-2.12,2.12L7.32,10.56z M4.5,9c0.03,0,0.05,0.01,0.08,0.01 C5.77,6.07,8.64,4,12,4c2.19,0,4.16,0.88,5.61,2.3c0.15-0.6,0.45-1.29,0.81-1.96C16.68,2.88,14.44,2,11.99,2 c-4.88,0-8.94,3.51-9.81,8.14C2.74,9.44,3.59,9,4.5,9z M21,10.5c-0.42,0-0.82-0.09-1.19-0.22C19.93,10.83,20,11.41,20,12 c0,4.42-3.58,8-8,8c-3.36,0-6.23-2.07-7.42-5.01C4.55,14.99,4.53,15,4.5,15c-0.52,0-1.04-0.14-1.5-0.4 c-0.32-0.18-0.59-0.42-0.82-0.7c0.89,4.61,4.93,8.1,9.8,8.1C17.52,22,22,17.52,22,12c0-0.55-0.06-1.09-0.14-1.62 C21.58,10.45,21.3,10.5,21,10.5z M21,3c0,0-2,2.9-2,4c0,1.1,0.9,2,2,2s2-0.9,2-2C23,5.9,21,3,21,3z M15.62,7.38L13.5,9.5l2.12,2.12 l1.06-1.06L15.62,9.5l1.06-1.06L15.62,7.38z M8.56,17c0.69-1.19,1.97-2,3.44-2s2.75,0.81,3.44,2h1.68c-0.8-2.05-2.79-3.5-5.12-3.5 c-0.87,0-1.7,0.2-2.43,0.57l0,0L5.99,12c0-0.52-0.26-1.02-0.74-1.29c-0.72-0.41-1.63-0.17-2.05,0.55c-0.41,0.72-0.17,1.63,0.55,2.05 c0.48,0.28,1.05,0.25,1.49,0l2.97,1.72l0,0C7.64,15.56,7.18,16.24,6.88,17H8.56z" + }, + "children": [] + }] +}; +exports.ic_sick_twotone = ic_sick_twotone; \ No newline at end of file diff --git a/dist/md/ic_signal_cellular_0_bar.js b/dist/md/ic_signal_cellular_0_bar.js new file mode 100644 index 000000000..38a31ad39 --- /dev/null +++ b/dist/md/ic_signal_cellular_0_bar.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_signal_cellular_0_bar = void 0; +var ic_signal_cellular_0_bar = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20,6.83V20H6.83L20,6.83 M22,2L2,22h20V2L22,2z" + }, + "children": [] + }] +}; +exports.ic_signal_cellular_0_bar = ic_signal_cellular_0_bar; \ No newline at end of file diff --git a/dist/md/ic_signal_cellular_0_bar_twotone.js b/dist/md/ic_signal_cellular_0_bar_twotone.js new file mode 100644 index 000000000..4e2006a86 --- /dev/null +++ b/dist/md/ic_signal_cellular_0_bar_twotone.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_signal_cellular_0_bar_twotone = void 0; +var ic_signal_cellular_0_bar_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M2 22h20V2L2 22z", + "fill-opacity": ".3" + }, + "children": [] + }] +}; +exports.ic_signal_cellular_0_bar_twotone = ic_signal_cellular_0_bar_twotone; \ No newline at end of file diff --git a/dist/md/ic_signal_cellular_1_bar.js b/dist/md/ic_signal_cellular_1_bar.js new file mode 100644 index 000000000..51486810a --- /dev/null +++ b/dist/md/ic_signal_cellular_1_bar.js @@ -0,0 +1,22 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_signal_cellular_1_bar = void 0; +var ic_signal_cellular_1_bar = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "fill-opacity": ".3", + "d": "M2 22h20V2z" + } + }, { + "name": "path", + "attribs": { + "d": "M12 12L2 22h10z" + } + }] +}; +exports.ic_signal_cellular_1_bar = ic_signal_cellular_1_bar; \ No newline at end of file diff --git a/dist/md/ic_signal_cellular_1_bar_twotone.js b/dist/md/ic_signal_cellular_1_bar_twotone.js new file mode 100644 index 000000000..b1b744ad7 --- /dev/null +++ b/dist/md/ic_signal_cellular_1_bar_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_signal_cellular_1_bar_twotone = void 0; +var ic_signal_cellular_1_bar_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M2 22h20V2L2 22z", + "fill-opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 12L2 22h10V12z" + }, + "children": [] + }] +}; +exports.ic_signal_cellular_1_bar_twotone = ic_signal_cellular_1_bar_twotone; \ No newline at end of file diff --git a/dist/md/ic_signal_cellular_2_bar.js b/dist/md/ic_signal_cellular_2_bar.js new file mode 100644 index 000000000..0608d2c8d --- /dev/null +++ b/dist/md/ic_signal_cellular_2_bar.js @@ -0,0 +1,22 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_signal_cellular_2_bar = void 0; +var ic_signal_cellular_2_bar = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "fill-opacity": ".3", + "d": "M2 22h20V2z" + } + }, { + "name": "path", + "attribs": { + "d": "M14 10L2 22h12z" + } + }] +}; +exports.ic_signal_cellular_2_bar = ic_signal_cellular_2_bar; \ No newline at end of file diff --git a/dist/md/ic_signal_cellular_2_bar_twotone.js b/dist/md/ic_signal_cellular_2_bar_twotone.js new file mode 100644 index 000000000..33fd67f4f --- /dev/null +++ b/dist/md/ic_signal_cellular_2_bar_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_signal_cellular_2_bar_twotone = void 0; +var ic_signal_cellular_2_bar_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M2 22h20V2L2 22z", + "fill-opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 10L2 22h12V10z" + }, + "children": [] + }] +}; +exports.ic_signal_cellular_2_bar_twotone = ic_signal_cellular_2_bar_twotone; \ No newline at end of file diff --git a/dist/md/ic_signal_cellular_3_bar.js b/dist/md/ic_signal_cellular_3_bar.js new file mode 100644 index 000000000..5a7f88fa4 --- /dev/null +++ b/dist/md/ic_signal_cellular_3_bar.js @@ -0,0 +1,22 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_signal_cellular_3_bar = void 0; +var ic_signal_cellular_3_bar = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "fill-opacity": ".3", + "d": "M2 22h20V2z" + } + }, { + "name": "path", + "attribs": { + "d": "M17 7L2 22h15z" + } + }] +}; +exports.ic_signal_cellular_3_bar = ic_signal_cellular_3_bar; \ No newline at end of file diff --git a/dist/md/ic_signal_cellular_3_bar_twotone.js b/dist/md/ic_signal_cellular_3_bar_twotone.js new file mode 100644 index 000000000..65268571e --- /dev/null +++ b/dist/md/ic_signal_cellular_3_bar_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_signal_cellular_3_bar_twotone = void 0; +var ic_signal_cellular_3_bar_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M2 22h20V2L2 22z", + "fill-opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 7L2 22h15V7z" + }, + "children": [] + }] +}; +exports.ic_signal_cellular_3_bar_twotone = ic_signal_cellular_3_bar_twotone; \ No newline at end of file diff --git a/dist/md/ic_signal_cellular_4_bar.js b/dist/md/ic_signal_cellular_4_bar.js new file mode 100644 index 000000000..ffa96a396 --- /dev/null +++ b/dist/md/ic_signal_cellular_4_bar.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_signal_cellular_4_bar = void 0; +var ic_signal_cellular_4_bar = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M2 22h20V2z" + }, + "children": [] + }] +}; +exports.ic_signal_cellular_4_bar = ic_signal_cellular_4_bar; \ No newline at end of file diff --git a/dist/md/ic_signal_cellular_4_bar_outline.js b/dist/md/ic_signal_cellular_4_bar_outline.js new file mode 100644 index 000000000..8e0817a22 --- /dev/null +++ b/dist/md/ic_signal_cellular_4_bar_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_signal_cellular_4_bar_outline = void 0; +var ic_signal_cellular_4_bar_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M2 22h20V2L2 22z" + }, + "children": [] + }] +}; +exports.ic_signal_cellular_4_bar_outline = ic_signal_cellular_4_bar_outline; \ No newline at end of file diff --git a/dist/md/ic_signal_cellular_4_bar_twotone.js b/dist/md/ic_signal_cellular_4_bar_twotone.js new file mode 100644 index 000000000..2097a018a --- /dev/null +++ b/dist/md/ic_signal_cellular_4_bar_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_signal_cellular_4_bar_twotone = void 0; +var ic_signal_cellular_4_bar_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M2 22h20V2L2 22z" + }, + "children": [] + }] +}; +exports.ic_signal_cellular_4_bar_twotone = ic_signal_cellular_4_bar_twotone; \ No newline at end of file diff --git a/dist/md/ic_signal_cellular_alt.js b/dist/md/ic_signal_cellular_alt.js new file mode 100644 index 000000000..0d6e5dc0e --- /dev/null +++ b/dist/md/ic_signal_cellular_alt.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_signal_cellular_alt = void 0; +var ic_signal_cellular_alt = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 4h3v16h-3zM5 14h3v6H5zm6-5h3v11h-3z" + }, + "children": [] + }] +}; +exports.ic_signal_cellular_alt = ic_signal_cellular_alt; \ No newline at end of file diff --git a/dist/md/ic_signal_cellular_alt_outline.js b/dist/md/ic_signal_cellular_alt_outline.js new file mode 100644 index 000000000..03b11389b --- /dev/null +++ b/dist/md/ic_signal_cellular_alt_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_signal_cellular_alt_outline = void 0; +var ic_signal_cellular_alt_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 4h3v16h-3V4zM5 14h3v6H5v-6zm6-5h3v11h-3V9z" + }, + "children": [] + }] +}; +exports.ic_signal_cellular_alt_outline = ic_signal_cellular_alt_outline; \ No newline at end of file diff --git a/dist/md/ic_signal_cellular_alt_twotone.js b/dist/md/ic_signal_cellular_alt_twotone.js new file mode 100644 index 000000000..a59bb48a7 --- /dev/null +++ b/dist/md/ic_signal_cellular_alt_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_signal_cellular_alt_twotone = void 0; +var ic_signal_cellular_alt_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 4h3v16h-3V4zM5 14h3v6H5v-6zm6-5h3v11h-3V9z" + }, + "children": [] + }] +}; +exports.ic_signal_cellular_alt_twotone = ic_signal_cellular_alt_twotone; \ No newline at end of file diff --git a/dist/md/ic_signal_cellular_connected_no_internet_0_bar.js b/dist/md/ic_signal_cellular_connected_no_internet_0_bar.js new file mode 100644 index 000000000..d3d248786 --- /dev/null +++ b/dist/md/ic_signal_cellular_connected_no_internet_0_bar.js @@ -0,0 +1,22 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_signal_cellular_connected_no_internet_0_bar = void 0; +var ic_signal_cellular_connected_no_internet_0_bar = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "fill-opacity": ".3", + "d": "M22 8V2L2 22h16V8z" + } + }, { + "name": "path", + "attribs": { + "d": "M20 22h2v-2h-2v2zm0-12v8h2v-8h-2z" + } + }] +}; +exports.ic_signal_cellular_connected_no_internet_0_bar = ic_signal_cellular_connected_no_internet_0_bar; \ No newline at end of file diff --git a/dist/md/ic_signal_cellular_connected_no_internet_0_bar_twotone.js b/dist/md/ic_signal_cellular_connected_no_internet_0_bar_twotone.js new file mode 100644 index 000000000..f00fce1c0 --- /dev/null +++ b/dist/md/ic_signal_cellular_connected_no_internet_0_bar_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_signal_cellular_connected_no_internet_0_bar_twotone = void 0; +var ic_signal_cellular_connected_no_internet_0_bar_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 8V2L2 22h16V8h4z", + "fill-opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 22h2v-2h-2v2zm0-12v8h2v-8h-2z" + }, + "children": [] + }] +}; +exports.ic_signal_cellular_connected_no_internet_0_bar_twotone = ic_signal_cellular_connected_no_internet_0_bar_twotone; \ No newline at end of file diff --git a/dist/md/ic_signal_cellular_connected_no_internet_1_bar.js b/dist/md/ic_signal_cellular_connected_no_internet_1_bar.js new file mode 100644 index 000000000..928586134 --- /dev/null +++ b/dist/md/ic_signal_cellular_connected_no_internet_1_bar.js @@ -0,0 +1,22 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_signal_cellular_connected_no_internet_1_bar = void 0; +var ic_signal_cellular_connected_no_internet_1_bar = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "fill-opacity": ".3", + "d": "M22 8V2L2 22h16V8z" + } + }, { + "name": "path", + "attribs": { + "d": "M20 10v8h2v-8h-2zm-8 12V12L2 22h10zm8 0h2v-2h-2v2z" + } + }] +}; +exports.ic_signal_cellular_connected_no_internet_1_bar = ic_signal_cellular_connected_no_internet_1_bar; \ No newline at end of file diff --git a/dist/md/ic_signal_cellular_connected_no_internet_1_bar_twotone.js b/dist/md/ic_signal_cellular_connected_no_internet_1_bar_twotone.js new file mode 100644 index 000000000..431767405 --- /dev/null +++ b/dist/md/ic_signal_cellular_connected_no_internet_1_bar_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_signal_cellular_connected_no_internet_1_bar_twotone = void 0; +var ic_signal_cellular_connected_no_internet_1_bar_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 8V2L2 22h16V8h4z", + "fill-opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 10v8h2v-8h-2zm-8 12V12L2 22h10zm8 0h2v-2h-2v2z" + }, + "children": [] + }] +}; +exports.ic_signal_cellular_connected_no_internet_1_bar_twotone = ic_signal_cellular_connected_no_internet_1_bar_twotone; \ No newline at end of file diff --git a/dist/md/ic_signal_cellular_connected_no_internet_2_bar.js b/dist/md/ic_signal_cellular_connected_no_internet_2_bar.js new file mode 100644 index 000000000..18f0fc3c2 --- /dev/null +++ b/dist/md/ic_signal_cellular_connected_no_internet_2_bar.js @@ -0,0 +1,22 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_signal_cellular_connected_no_internet_2_bar = void 0; +var ic_signal_cellular_connected_no_internet_2_bar = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "fill-opacity": ".3", + "d": "M22 8V2L2 22h16V8z" + } + }, { + "name": "path", + "attribs": { + "d": "M14 22V10L2 22h12zm6-12v8h2v-8h-2zm0 12h2v-2h-2v2z" + } + }] +}; +exports.ic_signal_cellular_connected_no_internet_2_bar = ic_signal_cellular_connected_no_internet_2_bar; \ No newline at end of file diff --git a/dist/md/ic_signal_cellular_connected_no_internet_2_bar_twotone.js b/dist/md/ic_signal_cellular_connected_no_internet_2_bar_twotone.js new file mode 100644 index 000000000..2c3d08e93 --- /dev/null +++ b/dist/md/ic_signal_cellular_connected_no_internet_2_bar_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_signal_cellular_connected_no_internet_2_bar_twotone = void 0; +var ic_signal_cellular_connected_no_internet_2_bar_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 8V2L2 22h16V8h4z", + "fill-opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 22V10L2 22h12zm6-12v8h2v-8h-2zm0 12h2v-2h-2v2z" + }, + "children": [] + }] +}; +exports.ic_signal_cellular_connected_no_internet_2_bar_twotone = ic_signal_cellular_connected_no_internet_2_bar_twotone; \ No newline at end of file diff --git a/dist/md/ic_signal_cellular_connected_no_internet_3_bar.js b/dist/md/ic_signal_cellular_connected_no_internet_3_bar.js new file mode 100644 index 000000000..a22896bd9 --- /dev/null +++ b/dist/md/ic_signal_cellular_connected_no_internet_3_bar.js @@ -0,0 +1,22 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_signal_cellular_connected_no_internet_3_bar = void 0; +var ic_signal_cellular_connected_no_internet_3_bar = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "fill-opacity": ".3", + "d": "M22 8V2L2 22h16V8z" + } + }, { + "name": "path", + "attribs": { + "d": "M17 22V7L2 22h15zm3-12v8h2v-8h-2zm0 12h2v-2h-2v2z" + } + }] +}; +exports.ic_signal_cellular_connected_no_internet_3_bar = ic_signal_cellular_connected_no_internet_3_bar; \ No newline at end of file diff --git a/dist/md/ic_signal_cellular_connected_no_internet_3_bar_twotone.js b/dist/md/ic_signal_cellular_connected_no_internet_3_bar_twotone.js new file mode 100644 index 000000000..6de6bfafa --- /dev/null +++ b/dist/md/ic_signal_cellular_connected_no_internet_3_bar_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_signal_cellular_connected_no_internet_3_bar_twotone = void 0; +var ic_signal_cellular_connected_no_internet_3_bar_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 8V2L2 22h16V8h4z", + "fill-opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 22V6L2 22h16zm2-12v8h2v-8h-2zm0 12h2v-2h-2v2z" + }, + "children": [] + }] +}; +exports.ic_signal_cellular_connected_no_internet_3_bar_twotone = ic_signal_cellular_connected_no_internet_3_bar_twotone; \ No newline at end of file diff --git a/dist/md/ic_signal_cellular_connected_no_internet_4_bar.js b/dist/md/ic_signal_cellular_connected_no_internet_4_bar.js new file mode 100644 index 000000000..943fb452a --- /dev/null +++ b/dist/md/ic_signal_cellular_connected_no_internet_4_bar.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_signal_cellular_connected_no_internet_4_bar = void 0; +var ic_signal_cellular_connected_no_internet_4_bar = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 18h2v-8h-2v8zm0 4h2v-2h-2v2zM2 22h16V8h4V2L2 22z" + }, + "children": [] + }] +}; +exports.ic_signal_cellular_connected_no_internet_4_bar = ic_signal_cellular_connected_no_internet_4_bar; \ No newline at end of file diff --git a/dist/md/ic_signal_cellular_connected_no_internet_4_bar_outline.js b/dist/md/ic_signal_cellular_connected_no_internet_4_bar_outline.js new file mode 100644 index 000000000..780576f36 --- /dev/null +++ b/dist/md/ic_signal_cellular_connected_no_internet_4_bar_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_signal_cellular_connected_no_internet_4_bar_outline = void 0; +var ic_signal_cellular_connected_no_internet_4_bar_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 18h2v-8h-2v8zm0 4h2v-2h-2v2zM2 22h16V8h4V2L2 22z" + }, + "children": [] + }] +}; +exports.ic_signal_cellular_connected_no_internet_4_bar_outline = ic_signal_cellular_connected_no_internet_4_bar_outline; \ No newline at end of file diff --git a/dist/md/ic_signal_cellular_connected_no_internet_4_bar_twotone.js b/dist/md/ic_signal_cellular_connected_no_internet_4_bar_twotone.js new file mode 100644 index 000000000..a59afcbb6 --- /dev/null +++ b/dist/md/ic_signal_cellular_connected_no_internet_4_bar_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_signal_cellular_connected_no_internet_4_bar_twotone = void 0; +var ic_signal_cellular_connected_no_internet_4_bar_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 18h2v-8h-2v8zm0 4h2v-2h-2v2zM2 22h16V8h4V2L2 22z" + }, + "children": [] + }] +}; +exports.ic_signal_cellular_connected_no_internet_4_bar_twotone = ic_signal_cellular_connected_no_internet_4_bar_twotone; \ No newline at end of file diff --git a/dist/md/ic_signal_cellular_no_sim.js b/dist/md/ic_signal_cellular_no_sim.js new file mode 100644 index 000000000..9d5aa92f1 --- /dev/null +++ b/dist/md/ic_signal_cellular_no_sim.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_signal_cellular_no_sim = void 0; +var ic_signal_cellular_no_sim = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M-618-2872H782V728H-618zM-1 0h26v24H-1zm1 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18.99 5c0-1.1-.89-2-1.99-2h-7L7.66 5.34 19 16.68 18.99 5zM3.65 3.88L2.38 5.15 5 7.77V19c0 1.1.9 2 2 2h10.01c.35 0 .67-.1.96-.26l1.88 1.88 1.27-1.27L3.65 3.88z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M.01 0h24v24h-24z", + "fill": "none" + }, + "children": [] + }] +}; +exports.ic_signal_cellular_no_sim = ic_signal_cellular_no_sim; \ No newline at end of file diff --git a/dist/md/ic_signal_cellular_no_sim_outline.js b/dist/md/ic_signal_cellular_no_sim_outline.js new file mode 100644 index 000000000..47b27dcc6 --- /dev/null +++ b/dist/md/ic_signal_cellular_no_sim_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_signal_cellular_no_sim_outline = void 0; +var ic_signal_cellular_no_sim_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10.83 5H17v9.11l2 2V5c0-1.1-.9-2-2-2h-7L7.94 5.06l1.42 1.42L10.83 5zm10.43 16.21L3.79 3.74 2.38 5.15 5 7.77V19c0 1.11.9 2 2 2h11.23l1.62 1.62 1.41-1.41zM7 19V9.79L16.23 19H7z" + }, + "children": [] + }] +}; +exports.ic_signal_cellular_no_sim_outline = ic_signal_cellular_no_sim_outline; \ No newline at end of file diff --git a/dist/md/ic_signal_cellular_no_sim_twotone.js b/dist/md/ic_signal_cellular_no_sim_twotone.js new file mode 100644 index 000000000..67aff128d --- /dev/null +++ b/dist/md/ic_signal_cellular_no_sim_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_signal_cellular_no_sim_twotone = void 0; +var ic_signal_cellular_no_sim_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10.83 5L9.36 6.47 17 14.11V5zM7 9.79V19h9.23z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10.83 5H17v9.11l2 2V5c0-1.1-.9-2-2-2h-7L7.94 5.06l1.42 1.42L10.83 5zm10.43 16.21L3.79 3.74 2.38 5.15 5 7.77V19c0 1.11.9 2 2 2h11.23l1.62 1.62 1.41-1.41zM7 19V9.79L16.23 19H7z" + }, + "children": [] + }] +}; +exports.ic_signal_cellular_no_sim_twotone = ic_signal_cellular_no_sim_twotone; \ No newline at end of file diff --git a/dist/md/ic_signal_cellular_null.js b/dist/md/ic_signal_cellular_null.js new file mode 100644 index 000000000..fb97911b4 --- /dev/null +++ b/dist/md/ic_signal_cellular_null.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_signal_cellular_null = void 0; +var ic_signal_cellular_null = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 6.83V20H6.83L20 6.83M22 2L2 22h20V2z" + }, + "children": [] + }] +}; +exports.ic_signal_cellular_null = ic_signal_cellular_null; \ No newline at end of file diff --git a/dist/md/ic_signal_cellular_null_outline.js b/dist/md/ic_signal_cellular_null_outline.js new file mode 100644 index 000000000..d13541cde --- /dev/null +++ b/dist/md/ic_signal_cellular_null_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_signal_cellular_null_outline = void 0; +var ic_signal_cellular_null_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 6.83V20H6.83L20 6.83M22 2L2 22h20V2z" + }, + "children": [] + }] +}; +exports.ic_signal_cellular_null_outline = ic_signal_cellular_null_outline; \ No newline at end of file diff --git a/dist/md/ic_signal_cellular_null_twotone.js b/dist/md/ic_signal_cellular_null_twotone.js new file mode 100644 index 000000000..c7aadd1fd --- /dev/null +++ b/dist/md/ic_signal_cellular_null_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_signal_cellular_null_twotone = void 0; +var ic_signal_cellular_null_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 6.83V20H6.83L20 6.83M22 2L2 22h20V2z" + }, + "children": [] + }] +}; +exports.ic_signal_cellular_null_twotone = ic_signal_cellular_null_twotone; \ No newline at end of file diff --git a/dist/md/ic_signal_cellular_off.js b/dist/md/ic_signal_cellular_off.js new file mode 100644 index 000000000..ee6e230b4 --- /dev/null +++ b/dist/md/ic_signal_cellular_off.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_signal_cellular_off = void 0; +var ic_signal_cellular_off = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 1l-8.59 8.59L21 18.18V1zM4.77 4.5L3.5 5.77l6.36 6.36L1 21h17.73l2 2L22 21.73 4.77 4.5z" + }, + "children": [] + }] +}; +exports.ic_signal_cellular_off = ic_signal_cellular_off; \ No newline at end of file diff --git a/dist/md/ic_signal_cellular_off_outline.js b/dist/md/ic_signal_cellular_off_outline.js new file mode 100644 index 000000000..54e8f7c0c --- /dev/null +++ b/dist/md/ic_signal_cellular_off_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_signal_cellular_off_outline = void 0; +var ic_signal_cellular_off_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 1l-8.31 8.31 8.31 8.3zM4.91 4.36L3.5 5.77l6.36 6.37L1 21h17.73l2 2 1.41-1.41z" + }, + "children": [] + }] +}; +exports.ic_signal_cellular_off_outline = ic_signal_cellular_off_outline; \ No newline at end of file diff --git a/dist/md/ic_signal_cellular_off_twotone.js b/dist/md/ic_signal_cellular_off_twotone.js new file mode 100644 index 000000000..004ac5c42 --- /dev/null +++ b/dist/md/ic_signal_cellular_off_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_signal_cellular_off_twotone = void 0; +var ic_signal_cellular_off_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 1l-8.31 8.31 8.31 8.3zM4.91 4.36L3.5 5.77l6.36 6.37L1 21h17.73l2 2 1.41-1.41z" + }, + "children": [] + }] +}; +exports.ic_signal_cellular_off_twotone = ic_signal_cellular_off_twotone; \ No newline at end of file diff --git a/dist/md/ic_signal_wifi_0_bar.js b/dist/md/ic_signal_wifi_0_bar.js new file mode 100644 index 000000000..40b8f2a91 --- /dev/null +++ b/dist/md/ic_signal_wifi_0_bar.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_signal_wifi_0_bar = void 0; +var ic_signal_wifi_0_bar = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12,6L12,6c3.33,0,6.49,1.08,9.08,3.07L12,18.17l-9.08-9.1C5.51,7.08,8.67,6,12,6 M12,4C7.31,4,3.07,5.9,0,8.98L12,21 L24,8.98C20.93,5.9,16.69,4,12,4L12,4z" + }, + "children": [] + }] +}; +exports.ic_signal_wifi_0_bar = ic_signal_wifi_0_bar; \ No newline at end of file diff --git a/dist/md/ic_signal_wifi_0_bar_twotone.js b/dist/md/ic_signal_wifi_0_bar_twotone.js new file mode 100644 index 000000000..3412c8585 --- /dev/null +++ b/dist/md/ic_signal_wifi_0_bar_twotone.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_signal_wifi_0_bar_twotone = void 0; +var ic_signal_wifi_0_bar_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12.01 21.49L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7l11.63 14.49.01.01.01-.01z", + "fill-opacity": ".3" + }, + "children": [] + }] +}; +exports.ic_signal_wifi_0_bar_twotone = ic_signal_wifi_0_bar_twotone; \ No newline at end of file diff --git a/dist/md/ic_signal_wifi_1_bar.js b/dist/md/ic_signal_wifi_1_bar.js new file mode 100644 index 000000000..7a7117020 --- /dev/null +++ b/dist/md/ic_signal_wifi_1_bar.js @@ -0,0 +1,22 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_signal_wifi_1_bar = void 0; +var ic_signal_wifi_1_bar = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "fill-opacity": ".3", + "d": "M12.01 21.49L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7l11.63 14.49.01.01.01-.01z" + } + }, { + "name": "path", + "attribs": { + "d": "M6.67 14.86L12 21.49v.01l.01-.01 5.33-6.63C17.06 14.65 15.03 13 12 13s-5.06 1.65-5.33 1.86z" + } + }] +}; +exports.ic_signal_wifi_1_bar = ic_signal_wifi_1_bar; \ No newline at end of file diff --git a/dist/md/ic_signal_wifi_1_bar_lock.js b/dist/md/ic_signal_wifi_1_bar_lock.js new file mode 100644 index 000000000..75ea23734 --- /dev/null +++ b/dist/md/ic_signal_wifi_1_bar_lock.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_signal_wifi_1_bar_lock = void 0; +var ic_signal_wifi_1_bar_lock = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M23 16v-1.5c0-1.4-1.1-2.5-2.5-2.5S18 13.1 18 14.5V16c-.5 0-1 .5-1 1v4c0 .5.5 1 1 1h5c.5 0 1-.5 1-1v-4c0-.5-.5-1-1-1zm-1 0h-3v-1.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5V16z" + } + }, { + "name": "path", + "attribs": { + "d": "M15.5 14.5c0-2.8 2.2-5 5-5 .4 0 .7 0 1 .1L23.6 7c-.4-.3-4.9-4-11.6-4C5.3 3 .8 6.7.4 7L12 21.5l3.5-4.3v-2.7z", + "opacity": ".3" + } + }, { + "name": "path", + "attribs": { + "d": "M6.7 14.9l5.3 6.6 3.5-4.3v-2.6c0-.2 0-.5.1-.7-.9-.5-2.2-.9-3.6-.9-3 0-5.1 1.7-5.3 1.9z" + } + }] +}; +exports.ic_signal_wifi_1_bar_lock = ic_signal_wifi_1_bar_lock; \ No newline at end of file diff --git a/dist/md/ic_signal_wifi_1_bar_lock_twotone.js b/dist/md/ic_signal_wifi_1_bar_lock_twotone.js new file mode 100644 index 000000000..8825fe42e --- /dev/null +++ b/dist/md/ic_signal_wifi_1_bar_lock_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_signal_wifi_1_bar_lock_twotone = void 0; +var ic_signal_wifi_1_bar_lock_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.5 14.5c0-2.8 2.2-5 5-5 .36 0 .71.04 1.05.11L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7L12 21.5l3.5-4.36V14.5z", + "fill-opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.5 14.5c0-.23.04-.46.07-.68-.92-.43-2.14-.82-3.57-.82-3 0-5.1 1.7-5.3 1.9l5.3 6.6 3.5-4.36V14.5zM23 16v-1.5c0-1.4-1.1-2.5-2.5-2.5S18 13.1 18 14.5V16c-.5 0-1 .5-1 1v4c0 .5.5 1 1 1h5c.5 0 1-.5 1-1v-4c0-.5-.5-1-1-1zm-1 0h-3v-1.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5V16z" + }, + "children": [] + }] +}; +exports.ic_signal_wifi_1_bar_lock_twotone = ic_signal_wifi_1_bar_lock_twotone; \ No newline at end of file diff --git a/dist/md/ic_signal_wifi_1_bar_twotone.js b/dist/md/ic_signal_wifi_1_bar_twotone.js new file mode 100644 index 000000000..88df0cfa3 --- /dev/null +++ b/dist/md/ic_signal_wifi_1_bar_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_signal_wifi_1_bar_twotone = void 0; +var ic_signal_wifi_1_bar_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12.01 21.49L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7l11.63 14.49.01.01.01-.01z", + "fill-opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6.67 14.86L12 21.49v.01l.01-.01 5.33-6.63C17.06 14.65 15.03 13 12 13s-5.06 1.65-5.33 1.86z" + }, + "children": [] + }] +}; +exports.ic_signal_wifi_1_bar_twotone = ic_signal_wifi_1_bar_twotone; \ No newline at end of file diff --git a/dist/md/ic_signal_wifi_2_bar.js b/dist/md/ic_signal_wifi_2_bar.js new file mode 100644 index 000000000..b048e20eb --- /dev/null +++ b/dist/md/ic_signal_wifi_2_bar.js @@ -0,0 +1,22 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_signal_wifi_2_bar = void 0; +var ic_signal_wifi_2_bar = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "fill-opacity": ".3", + "d": "M12.01 21.49L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7l11.63 14.49.01.01.01-.01z" + } + }, { + "name": "path", + "attribs": { + "d": "M4.79 12.52l7.2 8.98H12l.01-.01 7.2-8.98C18.85 12.24 16.1 10 12 10s-6.85 2.24-7.21 2.52z" + } + }] +}; +exports.ic_signal_wifi_2_bar = ic_signal_wifi_2_bar; \ No newline at end of file diff --git a/dist/md/ic_signal_wifi_2_bar_lock.js b/dist/md/ic_signal_wifi_2_bar_lock.js new file mode 100644 index 000000000..2dacad007 --- /dev/null +++ b/dist/md/ic_signal_wifi_2_bar_lock.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_signal_wifi_2_bar_lock = void 0; +var ic_signal_wifi_2_bar_lock = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M23 16v-1.5c0-1.4-1.1-2.5-2.5-2.5S18 13.1 18 14.5V16c-.5 0-1 .5-1 1v4c0 .5.5 1 1 1h5c.5 0 1-.5 1-1v-4c0-.5-.5-1-1-1zm-1 0h-3v-1.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5V16z" + } + }, { + "name": "path", + "attribs": { + "d": "M15.5 14.5c0-2.8 2.2-5 5-5 .4 0 .7 0 1 .1L23.6 7c-.4-.3-4.9-4-11.6-4C5.3 3 .8 6.7.4 7L12 21.5l3.5-4.3v-2.7z", + "opacity": ".3" + } + }, { + "name": "path", + "attribs": { + "d": "M4.8 12.5l7.2 9 3.5-4.4v-2.6c0-1.3.5-2.5 1.4-3.4C15.6 10.5 14 10 12 10c-4.1 0-6.8 2.2-7.2 2.5z" + } + }] +}; +exports.ic_signal_wifi_2_bar_lock = ic_signal_wifi_2_bar_lock; \ No newline at end of file diff --git a/dist/md/ic_signal_wifi_2_bar_lock_twotone.js b/dist/md/ic_signal_wifi_2_bar_lock_twotone.js new file mode 100644 index 000000000..74efc622b --- /dev/null +++ b/dist/md/ic_signal_wifi_2_bar_lock_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_signal_wifi_2_bar_lock_twotone = void 0; +var ic_signal_wifi_2_bar_lock_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.5 14.5c0-2.8 2.2-5 5-5 .36 0 .71.04 1.05.11L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7L12 21.5l3.5-4.36V14.5z", + "fill-opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.5 14.5c0-1.34.51-2.53 1.34-3.42C15.62 10.51 13.98 10 12 10c-4.1 0-6.8 2.2-7.2 2.5l7.2 9 3.5-4.38V14.5zM23 16v-1.5c0-1.4-1.1-2.5-2.5-2.5S18 13.1 18 14.5V16c-.5 0-1 .5-1 1v4c0 .5.5 1 1 1h5c.5 0 1-.5 1-1v-4c0-.5-.5-1-1-1zm-1 0h-3v-1.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5V16z" + }, + "children": [] + }] +}; +exports.ic_signal_wifi_2_bar_lock_twotone = ic_signal_wifi_2_bar_lock_twotone; \ No newline at end of file diff --git a/dist/md/ic_signal_wifi_2_bar_twotone.js b/dist/md/ic_signal_wifi_2_bar_twotone.js new file mode 100644 index 000000000..0b41726e8 --- /dev/null +++ b/dist/md/ic_signal_wifi_2_bar_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_signal_wifi_2_bar_twotone = void 0; +var ic_signal_wifi_2_bar_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7L12 21.5 23.64 7z", + "fill-opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4.79 12.52L12 21.5l7.21-8.99C18.85 12.24 16.1 10 12 10s-6.85 2.24-7.21 2.52z" + }, + "children": [] + }] +}; +exports.ic_signal_wifi_2_bar_twotone = ic_signal_wifi_2_bar_twotone; \ No newline at end of file diff --git a/dist/md/ic_signal_wifi_3_bar.js b/dist/md/ic_signal_wifi_3_bar.js new file mode 100644 index 000000000..0090091b8 --- /dev/null +++ b/dist/md/ic_signal_wifi_3_bar.js @@ -0,0 +1,22 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_signal_wifi_3_bar = void 0; +var ic_signal_wifi_3_bar = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "fill-opacity": ".3", + "d": "M12.01 21.49L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7l11.63 14.49.01.01.01-.01z" + } + }, { + "name": "path", + "attribs": { + "d": "M3.53 10.95l8.46 10.54.01.01.01-.01 8.46-10.54C20.04 10.62 16.81 8 12 8c-4.81 0-8.04 2.62-8.47 2.95z" + } + }] +}; +exports.ic_signal_wifi_3_bar = ic_signal_wifi_3_bar; \ No newline at end of file diff --git a/dist/md/ic_signal_wifi_3_bar_lock.js b/dist/md/ic_signal_wifi_3_bar_lock.js new file mode 100644 index 000000000..1b81eb2e0 --- /dev/null +++ b/dist/md/ic_signal_wifi_3_bar_lock.js @@ -0,0 +1,22 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_signal_wifi_3_bar_lock = void 0; +var ic_signal_wifi_3_bar_lock = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "opacity": ".3", + "d": "M12 3C5.3 3 .8 6.7.4 7l3.2 3.9L12 21.5l3.5-4.3v-2.6c0-2.2 1.4-4 3.3-4.7.3-.1.5-.2.8-.2.3-.1.6-.1.9-.1.4 0 .7 0 1 .1L23.6 7c-.4-.3-4.9-4-11.6-4z" + } + }, { + "name": "path", + "attribs": { + "d": "M23 16v-1.5c0-1.4-1.1-2.5-2.5-2.5S18 13.1 18 14.5V16c-.5 0-1 .5-1 1v4c0 .5.5 1 1 1h5c.5 0 1-.5 1-1v-4c0-.5-.5-1-1-1zm-1 0h-3v-1.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5V16zm-10 5.5l3.5-4.3v-2.6c0-2.2 1.4-4 3.3-4.7C17.3 9 14.9 8 12 8c-4.8 0-8 2.6-8.5 2.9" + } + }] +}; +exports.ic_signal_wifi_3_bar_lock = ic_signal_wifi_3_bar_lock; \ No newline at end of file diff --git a/dist/md/ic_signal_wifi_3_bar_lock_twotone.js b/dist/md/ic_signal_wifi_3_bar_lock_twotone.js new file mode 100644 index 000000000..d50118f1a --- /dev/null +++ b/dist/md/ic_signal_wifi_3_bar_lock_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_signal_wifi_3_bar_lock_twotone = void 0; +var ic_signal_wifi_3_bar_lock_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.5 14.5c0-2.8 2.2-5 5-5 .36 0 .71.04 1.05.11L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7L12 21.5l3.5-4.36V14.5z", + "fill-opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M23 16v-1.5c0-1.4-1.1-2.5-2.5-2.5S18 13.1 18 14.5V16c-.5 0-1 .5-1 1v4c0 .5.5 1 1 1h5c.5 0 1-.5 1-1v-4c0-.5-.5-1-1-1zm-1 0h-3v-1.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5V16zm-6.5-1.5c0-2.19 1.35-3.99 3.27-4.68C17.29 8.98 14.94 8 12 8c-4.81 0-8.04 2.62-8.47 2.95L12 21.5l3.5-4.36V14.5z" + }, + "children": [] + }] +}; +exports.ic_signal_wifi_3_bar_lock_twotone = ic_signal_wifi_3_bar_lock_twotone; \ No newline at end of file diff --git a/dist/md/ic_signal_wifi_3_bar_twotone.js b/dist/md/ic_signal_wifi_3_bar_twotone.js new file mode 100644 index 000000000..27baf6212 --- /dev/null +++ b/dist/md/ic_signal_wifi_3_bar_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_signal_wifi_3_bar_twotone = void 0; +var ic_signal_wifi_3_bar_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7L12 21.5 23.64 7z", + "fill-opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3.53 10.95L12 21.5l8.47-10.55C20.04 10.62 16.81 8 12 8s-8.04 2.62-8.47 2.95z" + }, + "children": [] + }] +}; +exports.ic_signal_wifi_3_bar_twotone = ic_signal_wifi_3_bar_twotone; \ No newline at end of file diff --git a/dist/md/ic_signal_wifi_4_bar.js b/dist/md/ic_signal_wifi_4_bar.js new file mode 100644 index 000000000..1acf36545 --- /dev/null +++ b/dist/md/ic_signal_wifi_4_bar.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_signal_wifi_4_bar = void 0; +var ic_signal_wifi_4_bar = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12.01 21.49L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7l11.63 14.49.01.01.01-.01z" + }, + "children": [] + }] +}; +exports.ic_signal_wifi_4_bar = ic_signal_wifi_4_bar; \ No newline at end of file diff --git a/dist/md/ic_signal_wifi_4_bar_lock.js b/dist/md/ic_signal_wifi_4_bar_lock.js new file mode 100644 index 000000000..f16fe33bb --- /dev/null +++ b/dist/md/ic_signal_wifi_4_bar_lock.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_signal_wifi_4_bar_lock = void 0; +var ic_signal_wifi_4_bar_lock = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M23 16v-1.5c0-1.4-1.1-2.5-2.5-2.5S18 13.1 18 14.5V16c-.5 0-1 .5-1 1v4c0 .5.5 1 1 1h5c.5 0 1-.5 1-1v-4c0-.5-.5-1-1-1zm-1 0h-3v-1.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5V16zm-6.5-1.5c0-2.8 2.2-5 5-5 .4 0 .7 0 1 .1L23.6 7c-.4-.3-4.9-4-11.6-4C5.3 3 .8 6.7.4 7L12 21.5l3.5-4.4v-2.6z" + }, + "children": [] + }] +}; +exports.ic_signal_wifi_4_bar_lock = ic_signal_wifi_4_bar_lock; \ No newline at end of file diff --git a/dist/md/ic_signal_wifi_4_bar_lock_outline.js b/dist/md/ic_signal_wifi_4_bar_lock_outline.js new file mode 100644 index 000000000..c192aae53 --- /dev/null +++ b/dist/md/ic_signal_wifi_4_bar_lock_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_signal_wifi_4_bar_lock_outline = void 0; +var ic_signal_wifi_4_bar_lock_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20.5 9.5c.36 0 .71.04 1.05.11L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7L12 21.5l3.5-4.36V14.5c0-2.8 2.2-5 5-5zM23 16v-1.5c0-1.4-1.1-2.5-2.5-2.5S18 13.1 18 14.5V16c-.5 0-1 .5-1 1v4c0 .5.5 1 1 1h5c.5 0 1-.5 1-1v-4c0-.5-.5-1-1-1zm-1 0h-3v-1.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5V16z" + }, + "children": [] + }] +}; +exports.ic_signal_wifi_4_bar_lock_outline = ic_signal_wifi_4_bar_lock_outline; \ No newline at end of file diff --git a/dist/md/ic_signal_wifi_4_bar_lock_twotone.js b/dist/md/ic_signal_wifi_4_bar_lock_twotone.js new file mode 100644 index 000000000..b5a5d9307 --- /dev/null +++ b/dist/md/ic_signal_wifi_4_bar_lock_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_signal_wifi_4_bar_lock_twotone = void 0; +var ic_signal_wifi_4_bar_lock_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20.5 9.5c.36 0 .71.04 1.05.11L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7L12 21.5l3.5-4.36V14.5c0-2.8 2.2-5 5-5zM23 16v-1.5c0-1.4-1.1-2.5-2.5-2.5S18 13.1 18 14.5V16c-.5 0-1 .5-1 1v4c0 .5.5 1 1 1h5c.5 0 1-.5 1-1v-4c0-.5-.5-1-1-1zm-1 0h-3v-1.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5V16z" + }, + "children": [] + }] +}; +exports.ic_signal_wifi_4_bar_lock_twotone = ic_signal_wifi_4_bar_lock_twotone; \ No newline at end of file diff --git a/dist/md/ic_signal_wifi_4_bar_outline.js b/dist/md/ic_signal_wifi_4_bar_outline.js new file mode 100644 index 000000000..54f83ac9e --- /dev/null +++ b/dist/md/ic_signal_wifi_4_bar_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_signal_wifi_4_bar_outline = void 0; +var ic_signal_wifi_4_bar_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12.01 21.49L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7l11.63 14.49.01.01.01-.01z" + }, + "children": [] + }] +}; +exports.ic_signal_wifi_4_bar_outline = ic_signal_wifi_4_bar_outline; \ No newline at end of file diff --git a/dist/md/ic_signal_wifi_4_bar_twotone.js b/dist/md/ic_signal_wifi_4_bar_twotone.js new file mode 100644 index 000000000..794ae4f87 --- /dev/null +++ b/dist/md/ic_signal_wifi_4_bar_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_signal_wifi_4_bar_twotone = void 0; +var ic_signal_wifi_4_bar_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12.01 21.49L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7l11.63 14.49.01.01.01-.01z" + }, + "children": [] + }] +}; +exports.ic_signal_wifi_4_bar_twotone = ic_signal_wifi_4_bar_twotone; \ No newline at end of file diff --git a/dist/md/ic_signal_wifi_off.js b/dist/md/ic_signal_wifi_off.js new file mode 100644 index 000000000..99dd9a0e0 --- /dev/null +++ b/dist/md/ic_signal_wifi_off.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_signal_wifi_off = void 0; +var ic_signal_wifi_off = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M23.64 7c-.45-.34-4.93-4-11.64-4-1.5 0-2.89.19-4.15.48L18.18 13.8 23.64 7zm-6.6 8.22L3.27 1.44 2 2.72l2.05 2.06C1.91 5.76.59 6.82.36 7l11.63 14.49.01.01.01-.01 3.9-4.86 3.32 3.32 1.27-1.27-3.46-3.46z" + }, + "children": [] + }] +}; +exports.ic_signal_wifi_off = ic_signal_wifi_off; \ No newline at end of file diff --git a/dist/md/ic_signal_wifi_off_outline.js b/dist/md/ic_signal_wifi_off_outline.js new file mode 100644 index 000000000..81f986396 --- /dev/null +++ b/dist/md/ic_signal_wifi_off_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_signal_wifi_off_outline = void 0; +var ic_signal_wifi_off_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M23.64 7c-.45-.34-4.93-4-11.64-4-1.32 0-2.55.14-3.69.38L18.43 13.5 23.64 7zM3.41 1.31L2 2.72l2.05 2.05C1.91 5.76.59 6.82.36 7L12 21.5l3.91-4.87 3.32 3.32 1.41-1.41L3.41 1.31z" + }, + "children": [] + }] +}; +exports.ic_signal_wifi_off_outline = ic_signal_wifi_off_outline; \ No newline at end of file diff --git a/dist/md/ic_signal_wifi_off_twotone.js b/dist/md/ic_signal_wifi_off_twotone.js new file mode 100644 index 000000000..694006008 --- /dev/null +++ b/dist/md/ic_signal_wifi_off_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_signal_wifi_off_twotone = void 0; +var ic_signal_wifi_off_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M23.64 7c-.45-.34-4.93-4-11.64-4-1.32 0-2.55.14-3.69.38L18.43 13.5 23.64 7zM3.41 1.31L2 2.72l2.05 2.05C1.91 5.76.59 6.82.36 7L12 21.5l3.91-4.87 3.32 3.32 1.41-1.41L3.41 1.31z" + }, + "children": [] + }] +}; +exports.ic_signal_wifi_off_twotone = ic_signal_wifi_off_twotone; \ No newline at end of file diff --git a/dist/md/ic_sim_card.js b/dist/md/ic_sim_card.js new file mode 100644 index 000000000..de68577c0 --- /dev/null +++ b/dist/md/ic_sim_card.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sim_card = void 0; +var ic_sim_card = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.99 4c0-1.1-.89-2-1.99-2h-8L4 8v12c0 1.1.9 2 2 2h12.01c1.1 0 1.99-.9 1.99-2l-.01-16zM9 19H7v-2h2v2zm8 0h-2v-2h2v2zm-8-4H7v-4h2v4zm4 4h-2v-4h2v4zm0-6h-2v-2h2v2zm4 2h-2v-4h2v4z" + }, + "children": [] + }] +}; +exports.ic_sim_card = ic_sim_card; \ No newline at end of file diff --git a/dist/md/ic_sim_card_alert.js b/dist/md/ic_sim_card_alert.js new file mode 100644 index 000000000..64c637a58 --- /dev/null +++ b/dist/md/ic_sim_card_alert.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sim_card_alert = void 0; +var ic_sim_card_alert = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 2h-8L4.02 8 4 20c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-5 15h-2v-2h2v2zm0-4h-2V8h2v5z" + }, + "children": [] + }] +}; +exports.ic_sim_card_alert = ic_sim_card_alert; \ No newline at end of file diff --git a/dist/md/ic_sim_card_outline.js b/dist/md/ic_sim_card_outline.js new file mode 100644 index 000000000..52ce38fe7 --- /dev/null +++ b/dist/md/ic_sim_card_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sim_card_outline = void 0; +var ic_sim_card_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 2h-8L4 8v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 2v16H6V8.83L10.83 4H18zM7 17h2v2H7zm8 0h2v2h-2zm-8-6h2v4H7zm4 4h2v4h-2zm0-4h2v2h-2zm4 0h2v4h-2z" + }, + "children": [] + }] +}; +exports.ic_sim_card_outline = ic_sim_card_outline; \ No newline at end of file diff --git a/dist/md/ic_sim_card_twotone.js b/dist/md/ic_sim_card_twotone.js new file mode 100644 index 000000000..f1cf118f2 --- /dev/null +++ b/dist/md/ic_sim_card_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sim_card_twotone = void 0; +var ic_sim_card_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 8.83V20h12V4h-7.17L6 8.83zM9 19H7v-2h2v2zm0-4H7v-4h2v4zm6-4h2v4h-2v-4zm0 6h2v2h-2v-2zm-4-6h2v2h-2v-2zm0 4h2v4h-2v-4z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 2h-8L4 8v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 2v16H6V8.83L10.83 4H18zM7 17h2v2H7zm8 0h2v2h-2zm-8-6h2v4H7zm4 4h2v4h-2zm0-4h2v2h-2zm4 0h2v4h-2z" + }, + "children": [] + }] +}; +exports.ic_sim_card_twotone = ic_sim_card_twotone; \ No newline at end of file diff --git a/dist/md/ic_single_bed.js b/dist/md/ic_single_bed.js new file mode 100644 index 000000000..a40564f0f --- /dev/null +++ b/dist/md/ic_single_bed.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_single_bed = void 0; +var ic_single_bed = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,12c0-1.1-0.9-2-2-2V7c0-1.1-0.9-2-2-2H8C6.9,5,6,5.9,6,7v3c-1.1,0-2,0.9-2,2v5h1.33L6,19h1l0.67-2h8.67L17,19h1l0.67-2 H20V12z M16,10h-3V7h3V10z M8,7h3v3H8V7z M6,12h12v3H6V12z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,12c0-1.1-0.9-2-2-2V7c0-1.1-0.9-2-2-2H8C6.9,5,6,5.9,6,7v3c-1.1,0-2,0.9-2,2v5h1.33L6,19h1l0.67-2h8.67L17,19h1l0.67-2 H20V12z M16,10h-3V7h3V10z M8,7h3v3H8V7z M6,12h12v3H6V12z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_single_bed = ic_single_bed; \ No newline at end of file diff --git a/dist/md/ic_single_bed_outline.js b/dist/md/ic_single_bed_outline.js new file mode 100644 index 000000000..afe63602a --- /dev/null +++ b/dist/md/ic_single_bed_outline.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_single_bed_outline = void 0; +var ic_single_bed_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,12c0-1.1-0.9-2-2-2V7c0-1.1-0.9-2-2-2H8C6.9,5,6,5.9,6,7v3c-1.1,0-2,0.9-2,2v5h1.33L6,19h1l0.67-2h8.67L17,19h1l0.67-2 H20V12z M16,10h-3V7h3V10z M8,7h3v3H8V7z M6,12h12v3H6V12z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,12c0-1.1-0.9-2-2-2V7c0-1.1-0.9-2-2-2H8C6.9,5,6,5.9,6,7v3c-1.1,0-2,0.9-2,2v5h1.33L6,19h1l0.67-2h8.67L17,19h1l0.67-2 H20V12z M16,10h-3V7h3V10z M8,7h3v3H8V7z M6,12h12v3H6V12z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_single_bed_outline = ic_single_bed_outline; \ No newline at end of file diff --git a/dist/md/ic_single_bed_twotone.js b/dist/md/ic_single_bed_twotone.js new file mode 100644 index 000000000..7beaddf51 --- /dev/null +++ b/dist/md/ic_single_bed_twotone.js @@ -0,0 +1,75 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_single_bed_twotone = void 0; +var ic_single_bed_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "height": "3", + "opacity": ".3", + "width": "12", + "x": "6", + "y": "12" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "3", + "opacity": ".3", + "width": "12", + "x": "6", + "y": "12" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M18,10V7c0-1.1-0.9-2-2-2H8C6.9,5,6,5.9,6,7v3c-1.1,0-2,0.9-2,2v5h1.33L6,19h1l0.67-2h8.67L17,19h1l0.67-2H20v-5 C20,10.9,19.1,10,18,10z M13,7h3v3h-3V7z M8,7h3v3H8V7z M18,15H6v-3h12V15z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18,10V7c0-1.1-0.9-2-2-2H8C6.9,5,6,5.9,6,7v3c-1.1,0-2,0.9-2,2v5h1.33L6,19h1l0.67-2h8.67L17,19h1l0.67-2H20v-5 C20,10.9,19.1,10,18,10z M13,7h3v3h-3V7z M8,7h3v3H8V7z M18,15H6v-3h12V15z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_single_bed_twotone = ic_single_bed_twotone; \ No newline at end of file diff --git a/dist/md/ic_skip_next.js b/dist/md/ic_skip_next.js new file mode 100644 index 000000000..f35170fbc --- /dev/null +++ b/dist/md/ic_skip_next.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_skip_next = void 0; +var ic_skip_next = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 18l8.5-6L6 6v12zM16 6v12h2V6h-2z" + }, + "children": [] + }] +}; +exports.ic_skip_next = ic_skip_next; \ No newline at end of file diff --git a/dist/md/ic_skip_next_outline.js b/dist/md/ic_skip_next_outline.js new file mode 100644 index 000000000..09ef46dbf --- /dev/null +++ b/dist/md/ic_skip_next_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_skip_next_outline = void 0; +var ic_skip_next_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 18l8.5-6L6 6v12zm2-8.14L11.03 12 8 14.14V9.86zM16 6h2v12h-2z" + }, + "children": [] + }] +}; +exports.ic_skip_next_outline = ic_skip_next_outline; \ No newline at end of file diff --git a/dist/md/ic_skip_next_twotone.js b/dist/md/ic_skip_next_twotone.js new file mode 100644 index 000000000..9a29d6e52 --- /dev/null +++ b/dist/md/ic_skip_next_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_skip_next_twotone = void 0; +var ic_skip_next_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8 9.86v4.28L11.03 12z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14.5 12L6 6v12l8.5-6zM8 9.86L11.03 12 8 14.14V9.86zM16 6h2v12h-2z" + }, + "children": [] + }] +}; +exports.ic_skip_next_twotone = ic_skip_next_twotone; \ No newline at end of file diff --git a/dist/md/ic_skip_previous.js b/dist/md/ic_skip_previous.js new file mode 100644 index 000000000..2c32e3cef --- /dev/null +++ b/dist/md/ic_skip_previous.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_skip_previous = void 0; +var ic_skip_previous = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 6h2v12H6zm3.5 6l8.5 6V6z" + }, + "children": [] + }] +}; +exports.ic_skip_previous = ic_skip_previous; \ No newline at end of file diff --git a/dist/md/ic_skip_previous_outline.js b/dist/md/ic_skip_previous_outline.js new file mode 100644 index 000000000..32d280ee0 --- /dev/null +++ b/dist/md/ic_skip_previous_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_skip_previous_outline = void 0; +var ic_skip_previous_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 6h2v12H6zm3.5 6l8.5 6V6l-8.5 6zm6.5 2.14L12.97 12 16 9.86v4.28z" + }, + "children": [] + }] +}; +exports.ic_skip_previous_outline = ic_skip_previous_outline; \ No newline at end of file diff --git a/dist/md/ic_skip_previous_twotone.js b/dist/md/ic_skip_previous_twotone.js new file mode 100644 index 000000000..4135053ee --- /dev/null +++ b/dist/md/ic_skip_previous_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_skip_previous_twotone = void 0; +var ic_skip_previous_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 14.14V9.86L12.97 12z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 6h2v12H6zm12 12V6l-8.5 6 8.5 6zm-2-3.86L12.97 12 16 9.86v4.28z" + }, + "children": [] + }] +}; +exports.ic_skip_previous_twotone = ic_skip_previous_twotone; \ No newline at end of file diff --git a/dist/md/ic_slideshow.js b/dist/md/ic_slideshow.js new file mode 100644 index 000000000..9bfa981ec --- /dev/null +++ b/dist/md/ic_slideshow.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_slideshow = void 0; +var ic_slideshow = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 8v8l5-4-5-4zm9-5H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" + }, + "children": [] + }] +}; +exports.ic_slideshow = ic_slideshow; \ No newline at end of file diff --git a/dist/md/ic_slideshow_outline.js b/dist/md/ic_slideshow_outline.js new file mode 100644 index 000000000..753cf5fde --- /dev/null +++ b/dist/md/ic_slideshow_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_slideshow_outline = void 0; +var ic_slideshow_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 8v8l5-4-5-4zm9-5H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" + }, + "children": [] + }] +}; +exports.ic_slideshow_outline = ic_slideshow_outline; \ No newline at end of file diff --git a/dist/md/ic_slideshow_twotone.js b/dist/md/ic_slideshow_twotone.js new file mode 100644 index 000000000..ab6b5618b --- /dev/null +++ b/dist/md/ic_slideshow_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_slideshow_twotone = void 0; +var ic_slideshow_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 19h14V5H5v14zm5-11l5 4-5 4V8z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM10 8v8l5-4z" + }, + "children": [] + }] +}; +exports.ic_slideshow_twotone = ic_slideshow_twotone; \ No newline at end of file diff --git a/dist/md/ic_slow_motion_video.js b/dist/md/ic_slow_motion_video.js new file mode 100644 index 000000000..245830b19 --- /dev/null +++ b/dist/md/ic_slow_motion_video.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_slow_motion_video = void 0; +var ic_slow_motion_video = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13.05 9.79L10 7.5v9l3.05-2.29L16 12zm0 0L10 7.5v9l3.05-2.29L16 12zm0 0L10 7.5v9l3.05-2.29L16 12zM11 4.07V2.05c-2.01.2-3.84 1-5.32 2.21L7.1 5.69c1.11-.86 2.44-1.44 3.9-1.62zM5.69 7.1L4.26 5.68C3.05 7.16 2.25 8.99 2.05 11h2.02c.18-1.46.76-2.79 1.62-3.9zM4.07 13H2.05c.2 2.01 1 3.84 2.21 5.32l1.43-1.43c-.86-1.1-1.44-2.43-1.62-3.89zm1.61 6.74C7.16 20.95 9 21.75 11 21.95v-2.02c-1.46-.18-2.79-.76-3.9-1.62l-1.42 1.43zM22 12c0 5.16-3.92 9.42-8.95 9.95v-2.02C16.97 19.41 20 16.05 20 12s-3.03-7.41-6.95-7.93V2.05C18.08 2.58 22 6.84 22 12z" + }, + "children": [] + }] +}; +exports.ic_slow_motion_video = ic_slow_motion_video; \ No newline at end of file diff --git a/dist/md/ic_slow_motion_video_outline.js b/dist/md/ic_slow_motion_video_outline.js new file mode 100644 index 000000000..2f951a348 --- /dev/null +++ b/dist/md/ic_slow_motion_video_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_slow_motion_video_outline = void 0; +var ic_slow_motion_video_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13.05 9.79L10 7.5v9l3.05-2.29L16 12l-2.95-2.21zm0 0L10 7.5v9l3.05-2.29L16 12l-2.95-2.21zm0 0L10 7.5v9l3.05-2.29L16 12l-2.95-2.21zM11 4.07V2.05c-2.01.2-3.84 1-5.32 2.21L7.1 5.69c1.11-.86 2.44-1.44 3.9-1.62zM5.69 7.1L4.26 5.68C3.05 7.16 2.25 8.99 2.05 11h2.02c.18-1.46.76-2.79 1.62-3.9zM4.07 13H2.05c.2 2.01 1 3.84 2.21 5.32l1.43-1.43c-.86-1.1-1.44-2.43-1.62-3.89zm1.61 6.74C7.16 20.95 9 21.75 11 21.95v-2.02c-1.46-.18-2.79-.76-3.9-1.62l-1.42 1.43zM22 12c0 5.16-3.92 9.42-8.95 9.95v-2.02C16.97 19.41 20 16.05 20 12s-3.03-7.41-6.95-7.93V2.05C18.08 2.58 22 6.84 22 12z" + }, + "children": [] + }] +}; +exports.ic_slow_motion_video_outline = ic_slow_motion_video_outline; \ No newline at end of file diff --git a/dist/md/ic_slow_motion_video_twotone.js b/dist/md/ic_slow_motion_video_twotone.js new file mode 100644 index 000000000..44ad6df2f --- /dev/null +++ b/dist/md/ic_slow_motion_video_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_slow_motion_video_twotone = void 0; +var ic_slow_motion_video_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4.26 18.32l1.43-1.43c-.86-1.1-1.44-2.43-1.62-3.89H2.05c.2 2.01 1 3.84 2.21 5.32zM7.1 5.69c1.11-.86 2.44-1.44 3.9-1.62V2.05c-2.01.2-3.84 1-5.32 2.21L7.1 5.69zM2.05 11h2.02c.18-1.46.76-2.79 1.62-3.9L4.26 5.68C3.05 7.16 2.25 8.99 2.05 11zm11-8.95v2.02C16.97 4.59 20 7.95 20 12s-3.03 7.41-6.95 7.93v2.02C18.08 21.42 22 17.16 22 12c0-5.16-3.92-9.42-8.95-9.95zM16 12l-2.95-2.21L10 7.5v9l3.05-2.29zM5.68 19.74C7.16 20.95 9 21.75 11 21.95v-2.02c-1.46-.18-2.79-.76-3.9-1.62l-1.42 1.43z" + }, + "children": [] + }] +}; +exports.ic_slow_motion_video_twotone = ic_slow_motion_video_twotone; \ No newline at end of file diff --git a/dist/md/ic_smart_button.js b/dist/md/ic_smart_button.js new file mode 100644 index 000000000..eebab4f71 --- /dev/null +++ b/dist/md/ic_smart_button.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_smart_button = void 0; +var ic_smart_button = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M22,9v6c0,1.1-0.9,2-2,2h-1l0-2h1V9H4v6h6v2H4c-1.1,0-2-0.9-2-2V9c0-1.1,0.9-2,2-2h16C21.1,7,22,7.9,22,9z M14.5,19 l1.09-2.41L18,15.5l-2.41-1.09L14.5,12l-1.09,2.41L11,15.5l2.41,1.09L14.5,19z M17,14l0.62-1.38L19,12l-1.38-0.62L17,10l-0.62,1.38 L15,12l1.38,0.62L17,14z M14.5,19l1.09-2.41L18,15.5l-2.41-1.09L14.5,12l-1.09,2.41L11,15.5l2.41,1.09L14.5,19z M17,14l0.62-1.38 L19,12l-1.38-0.62L17,10l-0.62,1.38L15,12l1.38,0.62L17,14z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,9v6c0,1.1-0.9,2-2,2h-1l0-2h1V9H4v6h6v2H4c-1.1,0-2-0.9-2-2V9c0-1.1,0.9-2,2-2h16C21.1,7,22,7.9,22,9z M14.5,19 l1.09-2.41L18,15.5l-2.41-1.09L14.5,12l-1.09,2.41L11,15.5l2.41,1.09L14.5,19z M17,14l0.62-1.38L19,12l-1.38-0.62L17,10l-0.62,1.38 L15,12l1.38,0.62L17,14z M14.5,19l1.09-2.41L18,15.5l-2.41-1.09L14.5,12l-1.09,2.41L11,15.5l2.41,1.09L14.5,19z M17,14l0.62-1.38 L19,12l-1.38-0.62L17,10l-0.62,1.38L15,12l1.38,0.62L17,14z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_smart_button = ic_smart_button; \ No newline at end of file diff --git a/dist/md/ic_smart_button_outline.js b/dist/md/ic_smart_button_outline.js new file mode 100644 index 000000000..29366acf7 --- /dev/null +++ b/dist/md/ic_smart_button_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_smart_button_outline = void 0; +var ic_smart_button_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M22,9v6c0,1.1-0.9,2-2,2h-1l0-2h1V9H4v6h6v2H4c-1.1,0-2-0.9-2-2V9c0-1.1,0.9-2,2-2h16C21.1,7,22,7.9,22,9z M14.5,19 l1.09-2.41L18,15.5l-2.41-1.09L14.5,12l-1.09,2.41L11,15.5l2.41,1.09L14.5,19z M17,14l0.62-1.38L19,12l-1.38-0.62L17,10l-0.62,1.38 L15,12l1.38,0.62L17,14z M14.5,19l1.09-2.41L18,15.5l-2.41-1.09L14.5,12l-1.09,2.41L11,15.5l2.41,1.09L14.5,19z M17,14l0.62-1.38 L19,12l-1.38-0.62L17,10l-0.62,1.38L15,12l1.38,0.62L17,14z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,9v6c0,1.1-0.9,2-2,2h-1l0-2h1V9H4v6h6v2H4c-1.1,0-2-0.9-2-2V9c0-1.1,0.9-2,2-2h16C21.1,7,22,7.9,22,9z M14.5,19 l1.09-2.41L18,15.5l-2.41-1.09L14.5,12l-1.09,2.41L11,15.5l2.41,1.09L14.5,19z M17,14l0.62-1.38L19,12l-1.38-0.62L17,10l-0.62,1.38 L15,12l1.38,0.62L17,14z M14.5,19l1.09-2.41L18,15.5l-2.41-1.09L14.5,12l-1.09,2.41L11,15.5l2.41,1.09L14.5,19z M17,14l0.62-1.38 L19,12l-1.38-0.62L17,10l-0.62,1.38L15,12l1.38,0.62L17,14z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_smart_button_outline = ic_smart_button_outline; \ No newline at end of file diff --git a/dist/md/ic_smart_button_twotone.js b/dist/md/ic_smart_button_twotone.js new file mode 100644 index 000000000..873e0c86f --- /dev/null +++ b/dist/md/ic_smart_button_twotone.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_smart_button_twotone = void 0; +var ic_smart_button_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M22,9v6c0,1.1-0.9,2-2,2h-1l0-2h1V9H4v6h6v2H4c-1.1,0-2-0.9-2-2V9c0-1.1,0.9-2,2-2h16C21.1,7,22,7.9,22,9z M14.5,19 l1.09-2.41L18,15.5l-2.41-1.09L14.5,12l-1.09,2.41L11,15.5l2.41,1.09L14.5,19z M17,14l0.62-1.38L19,12l-1.38-0.62L17,10l-0.62,1.38 L15,12l1.38,0.62L17,14z M14.5,19l1.09-2.41L18,15.5l-2.41-1.09L14.5,12l-1.09,2.41L11,15.5l2.41,1.09L14.5,19z M17,14l0.62-1.38 L19,12l-1.38-0.62L17,10l-0.62,1.38L15,12l1.38,0.62L17,14z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,9v6c0,1.1-0.9,2-2,2h-1l0-2h1V9H4v6h6v2H4c-1.1,0-2-0.9-2-2V9c0-1.1,0.9-2,2-2h16C21.1,7,22,7.9,22,9z M14.5,19 l1.09-2.41L18,15.5l-2.41-1.09L14.5,12l-1.09,2.41L11,15.5l2.41,1.09L14.5,19z M17,14l0.62-1.38L19,12l-1.38-0.62L17,10l-0.62,1.38 L15,12l1.38,0.62L17,14z M14.5,19l1.09-2.41L18,15.5l-2.41-1.09L14.5,12l-1.09,2.41L11,15.5l2.41,1.09L14.5,19z M17,14l0.62-1.38 L19,12l-1.38-0.62L17,10l-0.62,1.38L15,12l1.38,0.62L17,14z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_smart_button_twotone = ic_smart_button_twotone; \ No newline at end of file diff --git a/dist/md/ic_smartphone.js b/dist/md/ic_smartphone.js new file mode 100644 index 000000000..32ea48d4a --- /dev/null +++ b/dist/md/ic_smartphone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_smartphone = void 0; +var ic_smartphone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 1.01L7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z" + }, + "children": [] + }] +}; +exports.ic_smartphone = ic_smartphone; \ No newline at end of file diff --git a/dist/md/ic_smartphone_outline.js b/dist/md/ic_smartphone_outline.js new file mode 100644 index 000000000..1a38b69e4 --- /dev/null +++ b/dist/md/ic_smartphone_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_smartphone_outline = void 0; +var ic_smartphone_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 1.01L7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z" + }, + "children": [] + }] +}; +exports.ic_smartphone_outline = ic_smartphone_outline; \ No newline at end of file diff --git a/dist/md/ic_smartphone_twotone.js b/dist/md/ic_smartphone_twotone.js new file mode 100644 index 000000000..c73c3755b --- /dev/null +++ b/dist/md/ic_smartphone_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_smartphone_twotone = void 0; +var ic_smartphone_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 5h10v14H7z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 1.01L7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z" + }, + "children": [] + }] +}; +exports.ic_smartphone_twotone = ic_smartphone_twotone; \ No newline at end of file diff --git a/dist/md/ic_smoke_free.js b/dist/md/ic_smoke_free.js new file mode 100644 index 000000000..4ca8d2de0 --- /dev/null +++ b/dist/md/ic_smoke_free.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_smoke_free = void 0; +var ic_smoke_free = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M2 6l6.99 7H2v3h9.99l7 7 1.26-1.25-17-17zm18.5 7H22v3h-1.5zM18 13h1.5v3H18zm.85-8.12c.62-.61 1-1.45 1-2.38h-1.5c0 1.02-.83 1.85-1.85 1.85v1.5c2.24 0 4 1.83 4 4.07V12H22V9.92c0-2.23-1.28-4.15-3.15-5.04zM14.5 8.7h1.53c1.05 0 1.97.74 1.97 2.05V12h1.5v-1.59c0-1.8-1.6-3.16-3.47-3.16H14.5c-1.02 0-1.85-.98-1.85-2s.83-1.75 1.85-1.75V2c-1.85 0-3.35 1.5-3.35 3.35s1.5 3.35 3.35 3.35zm2.5 7.23V13h-2.93z" + }, + "children": [] + }] +}; +exports.ic_smoke_free = ic_smoke_free; \ No newline at end of file diff --git a/dist/md/ic_smoke_free_outline.js b/dist/md/ic_smoke_free_outline.js new file mode 100644 index 000000000..cf8f3087a --- /dev/null +++ b/dist/md/ic_smoke_free_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_smoke_free_outline = void 0; +var ic_smoke_free_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20.5 13H22v3h-1.5zM18 13h1.5v3H18zm-1 0h-2.34L17 15.34zm-2.5-4.35h1.53c1.05 0 1.97.74 1.97 2.05V12h1.5v-1.64c0-1.81-1.6-3.16-3.47-3.16H14.5c-1.02 0-1.85-.98-1.85-2s.83-1.75 1.85-1.75v-1.5c-1.85 0-3.35 1.5-3.35 3.35s1.5 3.35 3.35 3.35zm4.35-3.92c.62-.61 1-1.45 1-2.38h-1.5c0 1.02-.83 1.85-1.85 1.85v1.5c2.24 0 4 1.83 4 4.07V12H22V9.76c0-2.22-1.28-4.14-3.15-5.03zM3.41 4.59L2 6l7 7H2v3h10l7 7 1.41-1.41z" + }, + "children": [] + }] +}; +exports.ic_smoke_free_outline = ic_smoke_free_outline; \ No newline at end of file diff --git a/dist/md/ic_smoke_free_twotone.js b/dist/md/ic_smoke_free_twotone.js new file mode 100644 index 000000000..48880e0b1 --- /dev/null +++ b/dist/md/ic_smoke_free_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_smoke_free_twotone = void 0; +var ic_smoke_free_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20.5 13H22v3h-1.5zM18 13h1.5v3H18zm.85-8.27c.62-.61 1-1.45 1-2.38h-1.5c0 1.02-.83 1.85-1.85 1.85v1.5c2.24 0 4 1.83 4 4.07V12H22V9.76c0-2.22-1.28-4.14-3.15-5.03zM14.5 8.65h1.53c1.05 0 1.97.74 1.97 2.05V12h1.5v-1.64c0-1.81-1.6-3.16-3.47-3.16H14.5c-1.02 0-1.85-.98-1.85-2s.83-1.75 1.85-1.75v-1.5c-1.85 0-3.35 1.5-3.35 3.35s1.5 3.35 3.35 3.35zM17 13h-2.34L17 15.34zM3.41 4.59L2 6l7 7H2v3h10l7 7 1.41-1.41z" + }, + "children": [] + }] +}; +exports.ic_smoke_free_twotone = ic_smoke_free_twotone; \ No newline at end of file diff --git a/dist/md/ic_smoking_rooms.js b/dist/md/ic_smoking_rooms.js new file mode 100644 index 000000000..fb7208528 --- /dev/null +++ b/dist/md/ic_smoking_rooms.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_smoking_rooms = void 0; +var ic_smoking_rooms = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M2 16h15v3H2zm18.5 0H22v3h-1.5zM18 16h1.5v3H18zm.85-8.27c.62-.61 1-1.45 1-2.38C19.85 3.5 18.35 2 16.5 2v1.5c1.02 0 1.85.83 1.85 1.85S17.52 7.2 16.5 7.2v1.5c2.24 0 4 1.83 4 4.07V15H22v-2.24c0-2.22-1.28-4.14-3.15-5.03zm-2.82 2.47H14.5c-1.02 0-1.85-.98-1.85-2s.83-1.75 1.85-1.75v-1.5c-1.85 0-3.35 1.5-3.35 3.35s1.5 3.35 3.35 3.35h1.53c1.05 0 1.97.74 1.97 2.05V15h1.5v-1.64c0-1.81-1.6-3.16-3.47-3.16z" + }, + "children": [] + }] +}; +exports.ic_smoking_rooms = ic_smoking_rooms; \ No newline at end of file diff --git a/dist/md/ic_smoking_rooms_outline.js b/dist/md/ic_smoking_rooms_outline.js new file mode 100644 index 000000000..e1eb581b2 --- /dev/null +++ b/dist/md/ic_smoking_rooms_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_smoking_rooms_outline = void 0; +var ic_smoking_rooms_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 16h1.5v3H18zM2 16h15v3H2zm14.03-5.8H14.5c-1.02 0-1.85-.98-1.85-2s.83-1.75 1.85-1.75v-1.5c-1.85 0-3.35 1.5-3.35 3.35s1.5 3.35 3.35 3.35h1.53c1.05 0 1.97.74 1.97 2.05V15h1.5v-1.64c0-1.81-1.6-3.16-3.47-3.16zM20.5 16H22v3h-1.5zm-1.65-8.27c.62-.61 1-1.45 1-2.38C19.85 3.5 18.35 2 16.5 2v1.5c1.02 0 1.85.83 1.85 1.85S17.52 7.2 16.5 7.2v1.5c2.24 0 4 1.83 4 4.07V15H22v-2.24c0-2.22-1.28-4.14-3.15-5.03z" + }, + "children": [] + }] +}; +exports.ic_smoking_rooms_outline = ic_smoking_rooms_outline; \ No newline at end of file diff --git a/dist/md/ic_smoking_rooms_twotone.js b/dist/md/ic_smoking_rooms_twotone.js new file mode 100644 index 000000000..014af710c --- /dev/null +++ b/dist/md/ic_smoking_rooms_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_smoking_rooms_twotone = void 0; +var ic_smoking_rooms_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M2 16h15v3H2v-3zm18.5 0H22v3h-1.5v-3zM18 16h1.5v3H18v-3zm.85-8.27c.62-.61 1-1.45 1-2.38C19.85 3.5 18.35 2 16.5 2v1.5c1.02 0 1.85.83 1.85 1.85S17.52 7.2 16.5 7.2v1.5c2.24 0 4 1.83 4 4.07V15H22v-2.24c0-2.22-1.28-4.14-3.15-5.03zm-2.82 2.47H14.5c-1.02 0-1.85-.98-1.85-2s.83-1.75 1.85-1.75v-1.5c-1.85 0-3.35 1.5-3.35 3.35s1.5 3.35 3.35 3.35h1.53c1.05 0 1.97.74 1.97 2.05V15h1.5v-1.64c0-1.81-1.6-3.16-3.47-3.16z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M2 16h15v3H2v-3zm18.5 0H22v3h-1.5v-3zM18 16h1.5v3H18v-3zm.85-8.27c.62-.61 1-1.45 1-2.38C19.85 3.5 18.35 2 16.5 2v1.5c1.02 0 1.85.83 1.85 1.85S17.52 7.2 16.5 7.2v1.5c2.24 0 4 1.83 4 4.07V15H22v-2.24c0-2.22-1.28-4.14-3.15-5.03zm-2.82 2.47H14.5c-1.02 0-1.85-.98-1.85-2s.83-1.75 1.85-1.75v-1.5c-1.85 0-3.35 1.5-3.35 3.35s1.5 3.35 3.35 3.35h1.53c1.05 0 1.97.74 1.97 2.05V15h1.5v-1.64c0-1.81-1.6-3.16-3.47-3.16z" + }, + "children": [] + }] +}; +exports.ic_smoking_rooms_twotone = ic_smoking_rooms_twotone; \ No newline at end of file diff --git a/dist/md/ic_sms.js b/dist/md/ic_sms.js new file mode 100644 index 000000000..dc772bc94 --- /dev/null +++ b/dist/md/ic_sms.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sms = void 0; +var ic_sms = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM9 11H7V9h2v2zm4 0h-2V9h2v2zm4 0h-2V9h2v2z" + }, + "children": [] + }] +}; +exports.ic_sms = ic_sms; \ No newline at end of file diff --git a/dist/md/ic_sms_failed.js b/dist/md/ic_sms_failed.js new file mode 100644 index 000000000..4783bb961 --- /dev/null +++ b/dist/md/ic_sms_failed.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sms_failed = void 0; +var ic_sms_failed = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 12h-2v-2h2v2zm0-4h-2V6h2v4z" + }, + "children": [] + }] +}; +exports.ic_sms_failed = ic_sms_failed; \ No newline at end of file diff --git a/dist/md/ic_sms_failed_outline.js b/dist/md/ic_sms_failed_outline.js new file mode 100644 index 000000000..505b3e223 --- /dev/null +++ b/dist/md/ic_sms_failed_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sms_failed_outline = void 0; +var ic_sms_failed_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zm-9-4h2v2h-2zm0-6h2v4h-2z" + }, + "children": [] + }] +}; +exports.ic_sms_failed_outline = ic_sms_failed_outline; \ No newline at end of file diff --git a/dist/md/ic_sms_failed_twotone.js b/dist/md/ic_sms_failed_twotone.js new file mode 100644 index 000000000..b79920e80 --- /dev/null +++ b/dist/md/ic_sms_failed_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sms_failed_twotone = void 0; +var ic_sms_failed_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 17.17L5.17 16H20V4H4v13.17zM11 6h2v4h-2V6zm0 6h2v2h-2v-2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zm-9-4h2v2h-2zm0-6h2v4h-2z" + }, + "children": [] + }] +}; +exports.ic_sms_failed_twotone = ic_sms_failed_twotone; \ No newline at end of file diff --git a/dist/md/ic_sms_outline.js b/dist/md/ic_sms_outline.js new file mode 100644 index 000000000..5c569cc7d --- /dev/null +++ b/dist/md/ic_sms_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sms_outline = void 0; +var ic_sms_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zM7 9h2v2H7zm8 0h2v2h-2zm-4 0h2v2h-2z" + }, + "children": [] + }] +}; +exports.ic_sms_outline = ic_sms_outline; \ No newline at end of file diff --git a/dist/md/ic_sms_twotone.js b/dist/md/ic_sms_twotone.js new file mode 100644 index 000000000..895e704ea --- /dev/null +++ b/dist/md/ic_sms_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sms_twotone = void 0; +var ic_sms_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 17.17L5.17 16H20V4H4v13.17zM15 9h2v2h-2V9zm-4 0h2v2h-2V9zM7 9h2v2H7V9z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zM7 9h2v2H7zm8 0h2v2h-2zm-4 0h2v2h-2z" + }, + "children": [] + }] +}; +exports.ic_sms_twotone = ic_sms_twotone; \ No newline at end of file diff --git a/dist/md/ic_snippet_folder.js b/dist/md/ic_snippet_folder.js new file mode 100644 index 000000000..4cc2c9b16 --- /dev/null +++ b/dist/md/ic_snippet_folder.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_snippet_folder = void 0; +var ic_snippet_folder = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M15.88,10.5l1.62,1.62v3.38l-3,0v-5H15.88z M22,8v10c0,1.1-0.9,2-2,2H4c-1.1,0-2-0.9-2-2L2.01,6C2.01,4.9,2.9,4,4,4h6l2,2 h8C21.1,6,22,6.9,22,8z M19,11.5L16.5,9H13v8l6,0V11.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15.88,10.5l1.62,1.62v3.38l-3,0v-5H15.88z M22,8v10c0,1.1-0.9,2-2,2H4c-1.1,0-2-0.9-2-2L2.01,6C2.01,4.9,2.9,4,4,4h6l2,2 h8C21.1,6,22,6.9,22,8z M19,11.5L16.5,9H13v8l6,0V11.5z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_snippet_folder = ic_snippet_folder; \ No newline at end of file diff --git a/dist/md/ic_snippet_folder_outline.js b/dist/md/ic_snippet_folder_outline.js new file mode 100644 index 000000000..42b1f1567 --- /dev/null +++ b/dist/md/ic_snippet_folder_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_snippet_folder_outline = void 0; +var ic_snippet_folder_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M20,18L4,18V6h5.17 l2,2H20V18z M17.5,12.12v3.38l-3,0v-5h1.38L17.5,12.12z M13,9v8l6,0v-5.5L16.5,9H13z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M20,18L4,18V6h5.17 l2,2H20V18z M17.5,12.12v3.38l-3,0v-5h1.38L17.5,12.12z M13,9v8l6,0v-5.5L16.5,9H13z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_snippet_folder_outline = ic_snippet_folder_outline; \ No newline at end of file diff --git a/dist/md/ic_snippet_folder_twotone.js b/dist/md/ic_snippet_folder_twotone.js new file mode 100644 index 000000000..b0fc0cd94 --- /dev/null +++ b/dist/md/ic_snippet_folder_twotone.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_snippet_folder_twotone = void 0; +var ic_snippet_folder_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M9.17,6H4v12l16,0V8h-8.83L9.17,6z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M9.17,6H4v12l16,0V8h-8.83L9.17,6z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M20,18L4,18V6h5.17 l2,2H20V18z M17.5,12.12v3.38l-3,0v-5h1.38L17.5,12.12z M16.5,9H13v8l6,0v-5.5L16.5,9L16.5,9z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M20,18L4,18V6h5.17 l2,2H20V18z M17.5,12.12v3.38l-3,0v-5h1.38L17.5,12.12z M16.5,9H13v8l6,0v-5.5L16.5,9L16.5,9z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_snippet_folder_twotone = ic_snippet_folder_twotone; \ No newline at end of file diff --git a/dist/md/ic_snooze.js b/dist/md/ic_snooze.js new file mode 100644 index 000000000..375aad76d --- /dev/null +++ b/dist/md/ic_snooze.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_snooze = void 0; +var ic_snooze = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7.88 3.39L6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm-3-9h3.63L9 15.2V17h6v-2h-3.63L15 10.8V9H9v2z" + }, + "children": [] + }] +}; +exports.ic_snooze = ic_snooze; \ No newline at end of file diff --git a/dist/md/ic_snooze_outline.js b/dist/md/ic_snooze_outline.js new file mode 100644 index 000000000..ad3067fac --- /dev/null +++ b/dist/md/ic_snooze_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_snooze_outline = void 0; +var ic_snooze_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 11h3.63L9 15.2V17h6v-2h-3.63L15 10.8V9H9v2zm7.056-7.654l1.282-1.535 4.607 3.85-1.28 1.54zM3.336 7.19l-1.28-1.536L6.662 1.81l1.28 1.536zM12 6c3.86 0 7 3.14 7 7s-3.14 7-7 7-7-3.14-7-7 3.14-7 7-7m0-2c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9z" + }, + "children": [] + }] +}; +exports.ic_snooze_outline = ic_snooze_outline; \ No newline at end of file diff --git a/dist/md/ic_snooze_twotone.js b/dist/md/ic_snooze_twotone.js new file mode 100644 index 000000000..fe73c7212 --- /dev/null +++ b/dist/md/ic_snooze_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_snooze_twotone = void 0; +var ic_snooze_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 11h3.63L9 15.2V17h6v-2h-3.63L15 10.8V9H9zm8.337-9.19l4.607 3.845-1.28 1.535-4.61-3.843zm-10.674 0l1.282 1.536L3.337 7.19l-1.28-1.536zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z" + }, + "children": [] + }] +}; +exports.ic_snooze_twotone = ic_snooze_twotone; \ No newline at end of file diff --git a/dist/md/ic_soap.js b/dist/md/ic_soap.js new file mode 100644 index 000000000..d1694af6a --- /dev/null +++ b/dist/md/ic_soap.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_soap = void 0; +var ic_soap = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M9.12,5l-7.18,6.79C1.34,12.35,1,13.14,1,13.97V20c0,1.66,1.34,3,3,3h6.25H12h5.75c0.69,0,1.25-0.56,1.25-1.25 s-0.56-1.25-1.25-1.25H12v-1h7.75c0.69,0,1.25-0.56,1.25-1.25S20.44,17,19.75,17H12v-1h8.75c0.69,0,1.25-0.56,1.25-1.25 s-0.56-1.25-1.25-1.25H12v-1h6.75c0.69,0,1.25-0.56,1.25-1.25S19.44,10,18.75,10H8.86c0.64-1.11,1.48-2.58,1.49-2.61 c0.09-0.16,0.14-0.33,0.14-0.53c0-0.26-0.09-0.5-0.26-0.7C10.22,6.12,9.12,5,9.12,5L9.12,5z M14,6.25c0.41,0,0.75,0.34,0.75,0.75 S14.41,7.75,14,7.75S13.25,7.41,13.25,7S13.59,6.25,14,6.25 M14,4.75c-1.24,0-2.25,1.01-2.25,2.25S12.76,9.25,14,9.25 S16.25,8.24,16.25,7S15.24,4.75,14,4.75L14,4.75z M19.75,5.5c0.28,0,0.5,0.22,0.5,0.5s-0.22,0.5-0.5,0.5s-0.5-0.22-0.5-0.5 S19.47,5.5,19.75,5.5 M19.75,4c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S20.85,4,19.75,4L19.75,4z M16.5,1C15.67,1,15,1.67,15,2.5 S15.67,4,16.5,4C17.33,4,18,3.33,18,2.5S17.33,1,16.5,1z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M9.12,5l-7.18,6.79C1.34,12.35,1,13.14,1,13.97V20c0,1.66,1.34,3,3,3h6.25H12h5.75c0.69,0,1.25-0.56,1.25-1.25 s-0.56-1.25-1.25-1.25H12v-1h7.75c0.69,0,1.25-0.56,1.25-1.25S20.44,17,19.75,17H12v-1h8.75c0.69,0,1.25-0.56,1.25-1.25 s-0.56-1.25-1.25-1.25H12v-1h6.75c0.69,0,1.25-0.56,1.25-1.25S19.44,10,18.75,10H8.86c0.64-1.11,1.48-2.58,1.49-2.61 c0.09-0.16,0.14-0.33,0.14-0.53c0-0.26-0.09-0.5-0.26-0.7C10.22,6.12,9.12,5,9.12,5L9.12,5z M14,6.25c0.41,0,0.75,0.34,0.75,0.75 S14.41,7.75,14,7.75S13.25,7.41,13.25,7S13.59,6.25,14,6.25 M14,4.75c-1.24,0-2.25,1.01-2.25,2.25S12.76,9.25,14,9.25 S16.25,8.24,16.25,7S15.24,4.75,14,4.75L14,4.75z M19.75,5.5c0.28,0,0.5,0.22,0.5,0.5s-0.22,0.5-0.5,0.5s-0.5-0.22-0.5-0.5 S19.47,5.5,19.75,5.5 M19.75,4c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S20.85,4,19.75,4L19.75,4z M16.5,1C15.67,1,15,1.67,15,2.5 S15.67,4,16.5,4C17.33,4,18,3.33,18,2.5S17.33,1,16.5,1z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_soap = ic_soap; \ No newline at end of file diff --git a/dist/md/ic_soap_outline.js b/dist/md/ic_soap_outline.js new file mode 100644 index 000000000..bf23a0a5f --- /dev/null +++ b/dist/md/ic_soap_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_soap_outline = void 0; +var ic_soap_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M14.25,6C14.66,6,15,6.34,15,6.75S14.66,7.5,14.25,7.5S13.5,7.16,13.5,6.75S13.84,6,14.25,6 M14.25,4.5 C13.01,4.5,12,5.51,12,6.75S13.01,9,14.25,9s2.25-1.01,2.25-2.25S15.49,4.5,14.25,4.5L14.25,4.5z M20,5.5c0.28,0,0.5,0.22,0.5,0.5 S20.28,6.5,20,6.5S19.5,6.28,19.5,6S19.72,5.5,20,5.5 M20,4c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S21.1,4,20,4L20,4z M16.5,1 C15.67,1,15,1.67,15,2.5S15.67,4,16.5,4C17.33,4,18,3.33,18,2.5S17.33,1,16.5,1z M20.75,16c0.69,0,1.25-0.56,1.25-1.25 s-0.56-1.25-1.25-1.25H12v-1h6.75c0.69,0,1.25-0.56,1.25-1.25c0-0.67-0.53-1.2-1.18-1.24L8.87,10l1.48-2.6 c0.09-0.17,0.14-0.34,0.14-0.54c0-0.26-0.09-0.5-0.26-0.7L9.12,5l-7.18,6.8C1.34,12.36,1,13.15,1,13.97V20c0,1.66,1.34,3,3,3h13.75 c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h7.75c0.69,0,1.25-0.56,1.25-1.25S20.44,17,19.75,17H12v-1H20.75z M10,21H4 c-0.55,0-1-0.45-1-1v-6c0-0.39,0.23-0.64,0.36-0.75L7,9.87V12l3,0V21z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14.25,6C14.66,6,15,6.34,15,6.75S14.66,7.5,14.25,7.5S13.5,7.16,13.5,6.75S13.84,6,14.25,6 M14.25,4.5 C13.01,4.5,12,5.51,12,6.75S13.01,9,14.25,9s2.25-1.01,2.25-2.25S15.49,4.5,14.25,4.5L14.25,4.5z M20,5.5c0.28,0,0.5,0.22,0.5,0.5 S20.28,6.5,20,6.5S19.5,6.28,19.5,6S19.72,5.5,20,5.5 M20,4c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S21.1,4,20,4L20,4z M16.5,1 C15.67,1,15,1.67,15,2.5S15.67,4,16.5,4C17.33,4,18,3.33,18,2.5S17.33,1,16.5,1z M20.75,16c0.69,0,1.25-0.56,1.25-1.25 s-0.56-1.25-1.25-1.25H12v-1h6.75c0.69,0,1.25-0.56,1.25-1.25c0-0.67-0.53-1.2-1.18-1.24L8.87,10l1.48-2.6 c0.09-0.17,0.14-0.34,0.14-0.54c0-0.26-0.09-0.5-0.26-0.7L9.12,5l-7.18,6.8C1.34,12.36,1,13.15,1,13.97V20c0,1.66,1.34,3,3,3h13.75 c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h7.75c0.69,0,1.25-0.56,1.25-1.25S20.44,17,19.75,17H12v-1H20.75z M10,21H4 c-0.55,0-1-0.45-1-1v-6c0-0.39,0.23-0.64,0.36-0.75L7,9.87V12l3,0V21z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_soap_outline = ic_soap_outline; \ No newline at end of file diff --git a/dist/md/ic_soap_twotone.js b/dist/md/ic_soap_twotone.js new file mode 100644 index 000000000..42f60808c --- /dev/null +++ b/dist/md/ic_soap_twotone.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_soap_twotone = void 0; +var ic_soap_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M14.25,6C14.66,6,15,6.34,15,6.75S14.66,7.5,14.25,7.5S13.5,7.16,13.5,6.75S13.84,6,14.25,6 M20,5.5 c0.28,0,0.5,0.22,0.5,0.5S20.28,6.5,20,6.5S19.5,6.28,19.5,6S19.72,5.5,20,5.5 M10,21H4c-0.55,0-1-0.45-1-1v-6 c0-0.39,0.23-0.64,0.36-0.75L7,9.87V12l3,0V21z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14.25,6C14.66,6,15,6.34,15,6.75S14.66,7.5,14.25,7.5S13.5,7.16,13.5,6.75S13.84,6,14.25,6 M20,5.5 c0.28,0,0.5,0.22,0.5,0.5S20.28,6.5,20,6.5S19.5,6.28,19.5,6S19.72,5.5,20,5.5 M10,21H4c-0.55,0-1-0.45-1-1v-6 c0-0.39,0.23-0.64,0.36-0.75L7,9.87V12l3,0V21z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M14.25,6C14.66,6,15,6.34,15,6.75S14.66,7.5,14.25,7.5S13.5,7.16,13.5,6.75S13.84,6,14.25,6 M14.25,4.5 C13.01,4.5,12,5.51,12,6.75S13.01,9,14.25,9s2.25-1.01,2.25-2.25S15.49,4.5,14.25,4.5L14.25,4.5z M20,5.5c0.28,0,0.5,0.22,0.5,0.5 S20.28,6.5,20,6.5S19.5,6.28,19.5,6S19.72,5.5,20,5.5 M20,4c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S21.1,4,20,4L20,4z M16.5,1 C15.67,1,15,1.67,15,2.5S15.67,4,16.5,4C17.33,4,18,3.33,18,2.5S17.33,1,16.5,1z M20.75,16c0.69,0,1.25-0.56,1.25-1.25 s-0.56-1.25-1.25-1.25H12v-1h6.75c0.69,0,1.25-0.56,1.25-1.25c0-0.67-0.53-1.2-1.18-1.24L8.87,10l1.48-2.6 c0.09-0.17,0.14-0.34,0.14-0.54c0-0.26-0.09-0.5-0.26-0.7L9.12,5l-7.18,6.8C1.34,12.36,1,13.15,1,13.97V20c0,1.66,1.34,3,3,3h13.75 c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h7.75c0.69,0,1.25-0.56,1.25-1.25S20.44,17,19.75,17H12v-1H20.75z M10,21H4 c-0.55,0-1-0.45-1-1v-6c0-0.39,0.23-0.64,0.36-0.75L7,9.87V12l3,0V21z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14.25,6C14.66,6,15,6.34,15,6.75S14.66,7.5,14.25,7.5S13.5,7.16,13.5,6.75S13.84,6,14.25,6 M14.25,4.5 C13.01,4.5,12,5.51,12,6.75S13.01,9,14.25,9s2.25-1.01,2.25-2.25S15.49,4.5,14.25,4.5L14.25,4.5z M20,5.5c0.28,0,0.5,0.22,0.5,0.5 S20.28,6.5,20,6.5S19.5,6.28,19.5,6S19.72,5.5,20,5.5 M20,4c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S21.1,4,20,4L20,4z M16.5,1 C15.67,1,15,1.67,15,2.5S15.67,4,16.5,4C17.33,4,18,3.33,18,2.5S17.33,1,16.5,1z M20.75,16c0.69,0,1.25-0.56,1.25-1.25 s-0.56-1.25-1.25-1.25H12v-1h6.75c0.69,0,1.25-0.56,1.25-1.25c0-0.67-0.53-1.2-1.18-1.24L8.87,10l1.48-2.6 c0.09-0.17,0.14-0.34,0.14-0.54c0-0.26-0.09-0.5-0.26-0.7L9.12,5l-7.18,6.8C1.34,12.36,1,13.15,1,13.97V20c0,1.66,1.34,3,3,3h13.75 c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h7.75c0.69,0,1.25-0.56,1.25-1.25S20.44,17,19.75,17H12v-1H20.75z M10,21H4 c-0.55,0-1-0.45-1-1v-6c0-0.39,0.23-0.64,0.36-0.75L7,9.87V12l3,0V21z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_soap_twotone = ic_soap_twotone; \ No newline at end of file diff --git a/dist/md/ic_sort.js b/dist/md/ic_sort.js new file mode 100644 index 000000000..bb2b16e89 --- /dev/null +++ b/dist/md/ic_sort.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sort = void 0; +var ic_sort = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 18h6v-2H3v2zM3 6v2h18V6H3zm0 7h12v-2H3v2z" + }, + "children": [] + }] +}; +exports.ic_sort = ic_sort; \ No newline at end of file diff --git a/dist/md/ic_sort_by_alpha.js b/dist/md/ic_sort_by_alpha.js new file mode 100644 index 000000000..37c8a161d --- /dev/null +++ b/dist/md/ic_sort_by_alpha.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sort_by_alpha = void 0; +var ic_sort_by_alpha = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0zm0 0h24v24H0V0zm.75.75h22.5v22.5H.75z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14.94 4.66h-4.72l2.36-2.36zm-4.69 14.71h4.66l-2.33 2.33zM6.1 6.27L1.6 17.73h1.84l.92-2.45h5.11l.92 2.45h1.84L7.74 6.27H6.1zm-1.13 7.37l1.94-5.18 1.94 5.18H4.97zm10.76 2.5h6.12v1.59h-8.53v-1.29l5.92-8.56h-5.88v-1.6h8.3v1.26l-5.93 8.6z" + }, + "children": [] + }] +}; +exports.ic_sort_by_alpha = ic_sort_by_alpha; \ No newline at end of file diff --git a/dist/md/ic_sort_by_alpha_outline.js b/dist/md/ic_sort_by_alpha_outline.js new file mode 100644 index 000000000..d342371f6 --- /dev/null +++ b/dist/md/ic_sort_by_alpha_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sort_by_alpha_outline = void 0; +var ic_sort_by_alpha_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14.94 4.66h-4.72l2.36-2.36 2.36 2.36zm-4.69 14.71h4.66l-2.33 2.33-2.33-2.33zM6.1 6.27L1.6 17.73h1.84l.92-2.45h5.11l.92 2.45h1.84L7.74 6.27H6.1zm-1.13 7.37l1.94-5.18 1.94 5.18H4.97zm10.76 2.5h6.12v1.59h-8.53v-1.29l5.92-8.56h-5.88v-1.6h8.3v1.26l-5.93 8.6z" + }, + "children": [] + }] +}; +exports.ic_sort_by_alpha_outline = ic_sort_by_alpha_outline; \ No newline at end of file diff --git a/dist/md/ic_sort_by_alpha_twotone.js b/dist/md/ic_sort_by_alpha_twotone.js new file mode 100644 index 000000000..29a30cd3e --- /dev/null +++ b/dist/md/ic_sort_by_alpha_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sort_by_alpha_twotone = void 0; +var ic_sort_by_alpha_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14.94 4.66L12.58 2.3l-2.36 2.36zm-4.55 13.07h1.84L7.74 6.27H6.1L1.6 17.73h1.84l.92-2.45h5.11l.92 2.45zm-5.42-4.09l1.94-5.18 1.94 5.18H4.97zm7.61 8.06l2.33-2.33h-4.66zm9.08-14.16V6.28h-8.3v1.6h5.88l-5.92 8.56v1.29h8.53v-1.59h-6.12z" + }, + "children": [] + }] +}; +exports.ic_sort_by_alpha_twotone = ic_sort_by_alpha_twotone; \ No newline at end of file diff --git a/dist/md/ic_sort_outline.js b/dist/md/ic_sort_outline.js new file mode 100644 index 000000000..562fb5722 --- /dev/null +++ b/dist/md/ic_sort_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sort_outline = void 0; +var ic_sort_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 18h6v-2H3v2zM3 6v2h18V6H3zm0 7h12v-2H3v2z" + }, + "children": [] + }] +}; +exports.ic_sort_outline = ic_sort_outline; \ No newline at end of file diff --git a/dist/md/ic_sort_twotone.js b/dist/md/ic_sort_twotone.js new file mode 100644 index 000000000..ca2b6bfd3 --- /dev/null +++ b/dist/md/ic_sort_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sort_twotone = void 0; +var ic_sort_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 18h6v-2H3v2zM3 6v2h18V6H3zm0 7h12v-2H3v2z" + }, + "children": [] + }] +}; +exports.ic_sort_twotone = ic_sort_twotone; \ No newline at end of file diff --git a/dist/md/ic_source.js b/dist/md/ic_source.js new file mode 100644 index 000000000..e05ae97ea --- /dev/null +++ b/dist/md/ic_source.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_source = void 0; +var ic_source = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M14,16H6v-2h8V16z M18,12H6v-2h12V12z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M14,16H6v-2h8V16z M18,12H6v-2h12V12z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_source = ic_source; \ No newline at end of file diff --git a/dist/md/ic_source_outline.js b/dist/md/ic_source_outline.js new file mode 100644 index 000000000..5cc838fef --- /dev/null +++ b/dist/md/ic_source_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_source_outline = void 0; +var ic_source_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M20,18L4,18V6h5.17 l2,2H20V18z M18,12H6v-2h12V12z M14,16H6v-2h8V16z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M20,18L4,18V6h5.17 l2,2H20V18z M18,12H6v-2h12V12z M14,16H6v-2h8V16z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_source_outline = ic_source_outline; \ No newline at end of file diff --git a/dist/md/ic_source_twotone.js b/dist/md/ic_source_twotone.js new file mode 100644 index 000000000..5d0e49388 --- /dev/null +++ b/dist/md/ic_source_twotone.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_source_twotone = void 0; +var ic_source_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M9.17,6H4v12l16,0V8h-8.83L9.17,6z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M9.17,6H4v12l16,0V8h-8.83L9.17,6z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M20,18L4,18V6h5.17 l2,2H20V18z M18,12H6v-2h12V12z M14,16H6v-2h8V16z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M20,18L4,18V6h5.17 l2,2H20V18z M18,12H6v-2h12V12z M14,16H6v-2h8V16z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_source_twotone = ic_source_twotone; \ No newline at end of file diff --git a/dist/md/ic_south.js b/dist/md/ic_south.js new file mode 100644 index 000000000..66f601024 --- /dev/null +++ b/dist/md/ic_south.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_south = void 0; +var ic_south = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19,15l-1.41-1.41L13,18.17V2H11v16.17l-4.59-4.59L5,15l7,7L19,15z" + }, + "children": [] + }] +}; +exports.ic_south = ic_south; \ No newline at end of file diff --git a/dist/md/ic_south_east.js b/dist/md/ic_south_east.js new file mode 100644 index 000000000..f4909b146 --- /dev/null +++ b/dist/md/ic_south_east.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_south_east = void 0; +var ic_south_east = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19,9h-2v6.59L5.41,4L4,5.41L15.59,17H9v2h10V9z" + }, + "children": [] + }] +}; +exports.ic_south_east = ic_south_east; \ No newline at end of file diff --git a/dist/md/ic_south_east_outline.js b/dist/md/ic_south_east_outline.js new file mode 100644 index 000000000..850ce523f --- /dev/null +++ b/dist/md/ic_south_east_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_south_east_outline = void 0; +var ic_south_east_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19,9h-2v6.59L5.41,4L4,5.41L15.59,17H9v2h10V9z" + }, + "children": [] + }] +}; +exports.ic_south_east_outline = ic_south_east_outline; \ No newline at end of file diff --git a/dist/md/ic_south_east_twotone.js b/dist/md/ic_south_east_twotone.js new file mode 100644 index 000000000..3d843f11d --- /dev/null +++ b/dist/md/ic_south_east_twotone.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_south_east_twotone = void 0; +var ic_south_east_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19,9h-2v6.59L5.41,4L4,5.41L15.59,17H9v2h10V9z" + }, + "children": [] + }] +}; +exports.ic_south_east_twotone = ic_south_east_twotone; \ No newline at end of file diff --git a/dist/md/ic_south_outline.js b/dist/md/ic_south_outline.js new file mode 100644 index 000000000..7a675fad0 --- /dev/null +++ b/dist/md/ic_south_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_south_outline = void 0; +var ic_south_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19,15l-1.41-1.41L13,18.17V2H11v16.17l-4.59-4.59L5,15l7,7L19,15z" + }, + "children": [] + }] +}; +exports.ic_south_outline = ic_south_outline; \ No newline at end of file diff --git a/dist/md/ic_south_twotone.js b/dist/md/ic_south_twotone.js new file mode 100644 index 000000000..7046e6e85 --- /dev/null +++ b/dist/md/ic_south_twotone.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_south_twotone = void 0; +var ic_south_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19,15l-1.41-1.41L13,18.17V2H11v16.17l-4.59-4.59L5,15l7,7L19,15z" + }, + "children": [] + }] +}; +exports.ic_south_twotone = ic_south_twotone; \ No newline at end of file diff --git a/dist/md/ic_south_west.js b/dist/md/ic_south_west.js new file mode 100644 index 000000000..d34eb53b6 --- /dev/null +++ b/dist/md/ic_south_west.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_south_west = void 0; +var ic_south_west = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15,19v-2H8.41L20,5.41L18.59,4L7,15.59V9H5v10H15z" + }, + "children": [] + }] +}; +exports.ic_south_west = ic_south_west; \ No newline at end of file diff --git a/dist/md/ic_south_west_outline.js b/dist/md/ic_south_west_outline.js new file mode 100644 index 000000000..e763b6ea4 --- /dev/null +++ b/dist/md/ic_south_west_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_south_west_outline = void 0; +var ic_south_west_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15,19v-2H8.41L20,5.41L18.59,4L7,15.59V9H5v10H15z" + }, + "children": [] + }] +}; +exports.ic_south_west_outline = ic_south_west_outline; \ No newline at end of file diff --git a/dist/md/ic_south_west_twotone.js b/dist/md/ic_south_west_twotone.js new file mode 100644 index 000000000..f957dc32e --- /dev/null +++ b/dist/md/ic_south_west_twotone.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_south_west_twotone = void 0; +var ic_south_west_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15,19v-2H8.41L20,5.41L18.59,4L7,15.59V9H5v10H15z" + }, + "children": [] + }] +}; +exports.ic_south_west_twotone = ic_south_west_twotone; \ No newline at end of file diff --git a/dist/md/ic_spa.js b/dist/md/ic_spa.js new file mode 100644 index 000000000..f1f9a5d7e --- /dev/null +++ b/dist/md/ic_spa.js @@ -0,0 +1,30 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_spa = void 0; +var ic_spa = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0zm13.97 21.49c-.63.23-1.29.4-1.97.51.68-.12 1.33-.29 1.97-.51zM12 22c-.68-.12-1.33-.29-1.97-.51.64.22 1.29.39 1.97.51z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8.55 12c-1.07-.71-2.25-1.27-3.53-1.61 1.28.34 2.46.9 3.53 1.61zm10.43-1.61c-1.29.34-2.49.91-3.57 1.64 1.08-.73 2.28-1.3 3.57-1.64z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.49 9.63c-.18-2.79-1.31-5.51-3.43-7.63-2.14 2.14-3.32 4.86-3.55 7.63 1.28.68 2.46 1.56 3.49 2.63 1.03-1.06 2.21-1.94 3.49-2.63zm-6.5 2.65c-.14-.1-.3-.19-.45-.29.15.11.31.19.45.29zm6.42-.25c-.13.09-.27.16-.4.26.13-.1.27-.17.4-.26zM12 15.45C9.85 12.17 6.18 10 2 10c0 5.32 3.36 9.82 8.03 11.49.63.23 1.29.4 1.97.51.68-.12 1.33-.29 1.97-.51C18.64 19.82 22 15.32 22 10c-4.18 0-7.85 2.17-10 5.45z" + }, + "children": [] + }] +}; +exports.ic_spa = ic_spa; \ No newline at end of file diff --git a/dist/md/ic_spa_outline.js b/dist/md/ic_spa_outline.js new file mode 100644 index 000000000..8658d16b4 --- /dev/null +++ b/dist/md/ic_spa_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_spa_outline = void 0; +var ic_spa_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.49 9.63c-.18-2.79-1.31-5.51-3.43-7.63-2.14 2.14-3.32 4.86-3.55 7.63 1.28.68 2.46 1.56 3.49 2.63 1.03-1.06 2.21-1.94 3.49-2.63zm-3.44-4.44c.63 1.03 1.07 2.18 1.3 3.38-.47.3-.91.63-1.34.98-.42-.34-.87-.67-1.33-.97.25-1.2.71-2.35 1.37-3.39zM12 15.45c-.82-1.25-1.86-2.34-3.06-3.2-.13-.09-.27-.16-.4-.26.13.09.27.17.39.25C6.98 10.83 4.59 10 2 10c0 5.32 3.36 9.82 8.03 11.49.63.23 1.29.4 1.97.51.68-.12 1.33-.29 1.97-.51C18.64 19.82 22 15.32 22 10c-4.18 0-7.85 2.17-10 5.45zm1.32 4.15c-.44.15-.88.27-1.33.37-.44-.09-.87-.21-1.28-.36-3.29-1.18-5.7-3.99-6.45-7.35 1.1.26 2.15.71 3.12 1.33l-.02.01c.13.09.26.18.39.25l.07.04c.99.72 1.84 1.61 2.51 2.65L12 19.1l1.67-2.55c.69-1.05 1.55-1.95 2.53-2.66l.07-.05c.09-.05.18-.11.27-.17l-.01-.02c.98-.65 2.07-1.13 3.21-1.4-.75 3.37-3.15 6.18-6.42 7.35zm-4.33-7.32c-.02-.01-.04-.03-.05-.04 0 0 .01 0 .01.01.01.01.02.02.04.03z" + }, + "children": [] + }] +}; +exports.ic_spa_outline = ic_spa_outline; \ No newline at end of file diff --git a/dist/md/ic_spa_twotone.js b/dist/md/ic_spa_twotone.js new file mode 100644 index 000000000..503c1cfef --- /dev/null +++ b/dist/md/ic_spa_twotone.js @@ -0,0 +1,44 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_spa_twotone = void 0; +var ic_spa_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8.55 12c-1.07-.71-2.25-1.27-3.53-1.61 1.28.34 2.46.9 3.53 1.61zm10.43-1.61c-1.29.34-2.49.91-3.57 1.64 1.08-.73 2.28-1.3 3.57-1.64z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8.94 12.25c0-.01 0-.01 0 0-.13-.09-.27-.17-.4-.26.13.1.27.17.4.26zm4.41-3.67c-.22-1.21-.66-2.35-1.3-3.38-.66 1.04-1.12 2.19-1.37 3.39.46.3.9.62 1.33.97.42-.35.87-.68 1.34-.98zm3.19 5.08l.01.02c-.09.06-.18.12-.27.17l-.07.05c-.98.71-1.84 1.61-2.53 2.66L12 19.1l-1.67-2.55c-.68-1.03-1.52-1.92-2.51-2.65l-.07-.04c-.13-.08-.26-.16-.39-.25l.01-.01c-.96-.63-2.01-1.07-3.12-1.33.75 3.36 3.16 6.17 6.45 7.35.42.15.84.27 1.28.36.45-.09.89-.21 1.33-.37 3.27-1.17 5.67-3.98 6.43-7.34-1.14.26-2.23.73-3.2 1.39zm-7.55-1.38", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 15.45c-.82-1.25-1.86-2.34-3.06-3.2-.13-.09-.27-.16-.4-.26.13.09.27.17.39.25C6.98 10.83 4.59 10 2 10c0 5.32 3.36 9.82 8.03 11.49.63.23 1.29.4 1.97.51.68-.12 1.33-.29 1.97-.51C18.64 19.82 22 15.32 22 10c-4.18 0-7.85 2.17-10 5.45zm1.32 4.15c-.44.15-.88.27-1.33.37-.44-.09-.87-.21-1.28-.36-3.29-1.18-5.7-3.99-6.45-7.35 1.1.26 2.15.71 3.12 1.33l-.02.01c.13.09.26.18.39.25l.07.04c.99.72 1.84 1.61 2.51 2.65L12 19.1l1.67-2.55c.69-1.05 1.55-1.95 2.53-2.66l.07-.05c.09-.05.18-.11.27-.17l-.01-.02c.98-.65 2.07-1.13 3.21-1.4-.75 3.37-3.15 6.18-6.42 7.35zm2.17-9.97c-.18-2.79-1.31-5.51-3.43-7.63-2.14 2.14-3.32 4.86-3.55 7.63 1.28.68 2.46 1.56 3.49 2.63 1.03-1.06 2.21-1.94 3.49-2.63zm-3.44-4.44c.63 1.03 1.07 2.18 1.3 3.38-.47.3-.91.63-1.34.98-.42-.34-.87-.67-1.33-.97.25-1.2.71-2.35 1.37-3.39z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8.99 12.28c-.02-.01-.04-.03-.05-.04 0 0 .01 0 .01.01.01.01.02.02.04.03z", + "opacity": ".3" + }, + "children": [] + }] +}; +exports.ic_spa_twotone = ic_spa_twotone; \ No newline at end of file diff --git a/dist/md/ic_space_bar.js b/dist/md/ic_space_bar.js new file mode 100644 index 000000000..8efcd14a7 --- /dev/null +++ b/dist/md/ic_space_bar.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_space_bar = void 0; +var ic_space_bar = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 9v4H6V9H4v6h16V9z" + }, + "children": [] + }] +}; +exports.ic_space_bar = ic_space_bar; \ No newline at end of file diff --git a/dist/md/ic_space_bar_outline.js b/dist/md/ic_space_bar_outline.js new file mode 100644 index 000000000..6d9401b18 --- /dev/null +++ b/dist/md/ic_space_bar_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_space_bar_outline = void 0; +var ic_space_bar_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 9v4H6V9H4v6h16V9h-2z" + }, + "children": [] + }] +}; +exports.ic_space_bar_outline = ic_space_bar_outline; \ No newline at end of file diff --git a/dist/md/ic_space_bar_twotone.js b/dist/md/ic_space_bar_twotone.js new file mode 100644 index 000000000..bef29a9b4 --- /dev/null +++ b/dist/md/ic_space_bar_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_space_bar_twotone = void 0; +var ic_space_bar_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 13H6V9H4v6h16V9h-2z" + }, + "children": [] + }] +}; +exports.ic_space_bar_twotone = ic_space_bar_twotone; \ No newline at end of file diff --git a/dist/md/ic_speaker.js b/dist/md/ic_speaker.js new file mode 100644 index 000000000..552472e1b --- /dev/null +++ b/dist/md/ic_speaker.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_speaker = void 0; +var ic_speaker = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 2H7c-1.1 0-2 .9-2 2v16c0 1.1.9 1.99 2 1.99L17 22c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-5 2c1.1 0 2 .9 2 2s-.9 2-2 2c-1.11 0-2-.9-2-2s.89-2 2-2zm0 16c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z" + }, + "children": [] + }] +}; +exports.ic_speaker = ic_speaker; \ No newline at end of file diff --git a/dist/md/ic_speaker_group.js b/dist/md/ic_speaker_group.js new file mode 100644 index 000000000..fbdd798b7 --- /dev/null +++ b/dist/md/ic_speaker_group.js @@ -0,0 +1,38 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_speaker_group = void 0; +var ic_speaker_group = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18.2 1H9.8C8.81 1 8 1.81 8 2.8v14.4c0 .99.81 1.79 1.8 1.79l8.4.01c.99 0 1.8-.81 1.8-1.8V2.8c0-.99-.81-1.8-1.8-1.8zM14 3c1.1 0 2 .89 2 2s-.9 2-2 2-2-.89-2-2 .9-2 2-2zm0 13.5c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "14", + "cy": "12.5", + "r": "2.5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 5H4v16c0 1.1.89 2 2 2h10v-2H6V5z" + }, + "children": [] + }] +}; +exports.ic_speaker_group = ic_speaker_group; \ No newline at end of file diff --git a/dist/md/ic_speaker_group_outline.js b/dist/md/ic_speaker_group_outline.js new file mode 100644 index 000000000..03372f07b --- /dev/null +++ b/dist/md/ic_speaker_group_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_speaker_group_outline = void 0; +var ic_speaker_group_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18.2 1H9.8C8.81 1 8 1.81 8 2.8v14.4c0 .99.81 1.79 1.8 1.79l8.4.01c.99 0 1.8-.81 1.8-1.8V2.8c0-.99-.81-1.8-1.8-1.8zM18 17l-8-.01V3h8v14zm-4-9c1.1 0 2-.89 2-2s-.9-2-2-2-2 .89-2 2 .9 2 2 2zm0 8c1.93 0 3.5-1.57 3.5-3.5S15.93 9 14 9s-3.5 1.57-3.5 3.5S12.07 16 14 16zm0-5c.83 0 1.5.67 1.5 1.5S14.83 14 14 14s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zM6 5H4v16c0 1.1.89 2 2 2h10v-2H6V5z" + }, + "children": [] + }] +}; +exports.ic_speaker_group_outline = ic_speaker_group_outline; \ No newline at end of file diff --git a/dist/md/ic_speaker_group_twotone.js b/dist/md/ic_speaker_group_twotone.js new file mode 100644 index 000000000..77979de8b --- /dev/null +++ b/dist/md/ic_speaker_group_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_speaker_group_twotone = void 0; +var ic_speaker_group_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 16.99l8 .01V3h-8v13.99zM14 4c1.1 0 2 .89 2 2s-.9 2-2 2-2-.89-2-2 .9-2 2-2zm0 5c1.93 0 3.5 1.57 3.5 3.5S15.93 16 14 16s-3.5-1.57-3.5-3.5S12.07 9 14 9z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18.2 1H9.8C8.81 1 8 1.81 8 2.8v14.4c0 .99.81 1.79 1.8 1.79l8.4.01c.99 0 1.8-.81 1.8-1.8V2.8c0-.99-.81-1.8-1.8-1.8zM18 17l-8-.01V3h8v14zm-4-9c1.1 0 2-.89 2-2s-.9-2-2-2-2 .89-2 2 .9 2 2 2zm0 8c1.93 0 3.5-1.57 3.5-3.5S15.93 9 14 9s-3.5 1.57-3.5 3.5S12.07 16 14 16zm0-5c.83 0 1.5.67 1.5 1.5S14.83 14 14 14s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zM6 5H4v16c0 1.1.89 2 2 2h10v-2H6V5z" + }, + "children": [] + }] +}; +exports.ic_speaker_group_twotone = ic_speaker_group_twotone; \ No newline at end of file diff --git a/dist/md/ic_speaker_notes.js b/dist/md/ic_speaker_notes.js new file mode 100644 index 000000000..ac94a2d75 --- /dev/null +++ b/dist/md/ic_speaker_notes.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_speaker_notes = void 0; +var ic_speaker_notes = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM8 14H6v-2h2v2zm0-3H6V9h2v2zm0-3H6V6h2v2zm7 6h-5v-2h5v2zm3-3h-8V9h8v2zm0-3h-8V6h8v2z" + }, + "children": [] + }] +}; +exports.ic_speaker_notes = ic_speaker_notes; \ No newline at end of file diff --git a/dist/md/ic_speaker_notes_off.js b/dist/md/ic_speaker_notes_off.js new file mode 100644 index 000000000..bf586c0d0 --- /dev/null +++ b/dist/md/ic_speaker_notes_off.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_speaker_notes_off = void 0; +var ic_speaker_notes_off = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10.54 11l-.54-.54L7.54 8 6 6.46 2.38 2.84 1.27 1.73 0 3l2.01 2.01L2 22l4-4h9l5.73 5.73L22 22.46 17.54 18l-7-7zM8 14H6v-2h2v2zm-2-3V9l2 2H6zm14-9H4.08L10 7.92V6h8v2h-7.92l1 1H18v2h-4.92l6.99 6.99C21.14 17.95 22 17.08 22 16V4c0-1.1-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_speaker_notes_off = ic_speaker_notes_off; \ No newline at end of file diff --git a/dist/md/ic_speaker_notes_off_outline.js b/dist/md/ic_speaker_notes_off_outline.js new file mode 100644 index 000000000..f8eaabf3e --- /dev/null +++ b/dist/md/ic_speaker_notes_off_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_speaker_notes_off_outline = void 0; +var ic_speaker_notes_off_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 4v12h-1.34l1.91 1.91C21.39 17.66 22 16.9 22 16V4c0-1.1-.9-2-2-2H4.66l2 2H20zM6 12h2v2H6zm12-3h-6.34l2 2H18zm0-3h-8v1.34l.66.66H18zM1.41 1.59L0 3l2.01 2.01L2 22l4-4h9l5.73 5.73 1.41-1.41L1.41 1.59zM5.17 16L4 17.17V7l2 2v2h2l5 5H5.17z" + }, + "children": [] + }] +}; +exports.ic_speaker_notes_off_outline = ic_speaker_notes_off_outline; \ No newline at end of file diff --git a/dist/md/ic_speaker_notes_off_twotone.js b/dist/md/ic_speaker_notes_off_twotone.js new file mode 100644 index 000000000..4b6b01a2d --- /dev/null +++ b/dist/md/ic_speaker_notes_off_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_speaker_notes_off_twotone = void 0; +var ic_speaker_notes_off_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 11V9L4 7v10.17L5.17 16H13l-5-5H6zm2 3H6v-2h2v2zM20 4H6.66L10 7.34V6h8v2h-7.34l1 1H18v2h-4.34l5 5H20z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 4v12h-1.34l1.91 1.91C21.39 17.66 22 16.9 22 16V4c0-1.1-.9-2-2-2H4.66l2 2H20zM6 12h2v2H6zm12-1V9h-6.34l2 2zm0-3V6h-8v1.34l.66.66zM1.41 1.59L0 3l2 2.01V22l4-4h9l5.73 5.73 1.41-1.41L1.41 1.59zM5.17 16L4 17.17V7l2 2v2h2l5 5H5.17z" + }, + "children": [] + }] +}; +exports.ic_speaker_notes_off_twotone = ic_speaker_notes_off_twotone; \ No newline at end of file diff --git a/dist/md/ic_speaker_notes_outline.js b/dist/md/ic_speaker_notes_outline.js new file mode 100644 index 000000000..3b5a13723 --- /dev/null +++ b/dist/md/ic_speaker_notes_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_speaker_notes_outline = void 0; +var ic_speaker_notes_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17l-.59.59-.58.58V4h16v12zM6 12h2v2H6zm0-3h2v2H6zm0-3h2v2H6zm4 6h5v2h-5zm0-3h8v2h-8zm0-3h8v2h-8z" + }, + "children": [] + }] +}; +exports.ic_speaker_notes_outline = ic_speaker_notes_outline; \ No newline at end of file diff --git a/dist/md/ic_speaker_notes_twotone.js b/dist/md/ic_speaker_notes_twotone.js new file mode 100644 index 000000000..7eb5a0aa0 --- /dev/null +++ b/dist/md/ic_speaker_notes_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_speaker_notes_twotone = void 0; +var ic_speaker_notes_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 17.17l.59-.59.58-.58H20V4H4v13.17zM10 6h8v2h-8V6zm0 3h8v2h-8V9zm0 3h5v2h-5v-2zM6 6h2v2H6V6zm0 3h2v2H6V9zm0 3h2v2H6v-2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17l-.59.59-.58.58V4h16v12zM6 12h2v2H6zm0-3h2v2H6zm0-3h2v2H6zm4 6h5v2h-5zm0-3h8v2h-8zm0-3h8v2h-8z" + }, + "children": [] + }] +}; +exports.ic_speaker_notes_twotone = ic_speaker_notes_twotone; \ No newline at end of file diff --git a/dist/md/ic_speaker_outline.js b/dist/md/ic_speaker_outline.js new file mode 100644 index 000000000..1cce65ab0 --- /dev/null +++ b/dist/md/ic_speaker_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_speaker_outline = void 0; +var ic_speaker_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 2H7c-1.1 0-2 .9-2 2v16c0 1.1.9 1.99 2 1.99L17 22c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM7 20V4h10v16H7zm5-11c1.1 0 2-.9 2-2s-.9-2-2-2c-1.11 0-2 .9-2 2s.89 2 2 2zm0 2c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" + }, + "children": [] + }] +}; +exports.ic_speaker_outline = ic_speaker_outline; \ No newline at end of file diff --git a/dist/md/ic_speaker_phone.js b/dist/md/ic_speaker_phone.js new file mode 100644 index 000000000..9afb22bb1 --- /dev/null +++ b/dist/md/ic_speaker_phone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_speaker_phone = void 0; +var ic_speaker_phone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0zm0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 7.07L8.43 8.5c.91-.91 2.18-1.48 3.57-1.48s2.66.57 3.57 1.48L17 7.07C15.72 5.79 13.95 5 12 5s-3.72.79-5 2.07zM12 1C8.98 1 6.24 2.23 4.25 4.21l1.41 1.41C7.28 4 9.53 3 12 3s4.72 1 6.34 2.62l1.41-1.41C17.76 2.23 15.02 1 12 1zm2.86 9.01L9.14 10C8.51 10 8 10.51 8 11.14v9.71c0 .63.51 1.14 1.14 1.14h5.71c.63 0 1.14-.51 1.14-1.14v-9.71c.01-.63-.5-1.13-1.13-1.13zM15 20H9v-8h6v8z" + }, + "children": [] + }] +}; +exports.ic_speaker_phone = ic_speaker_phone; \ No newline at end of file diff --git a/dist/md/ic_speaker_phone_outline.js b/dist/md/ic_speaker_phone_outline.js new file mode 100644 index 000000000..0235c7bc1 --- /dev/null +++ b/dist/md/ic_speaker_phone_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_speaker_phone_outline = void 0; +var ic_speaker_phone_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 7.07L8.43 8.5c.91-.91 2.18-1.48 3.57-1.48s2.66.57 3.57 1.48L17 7.07C15.72 5.79 13.95 5 12 5s-3.72.79-5 2.07zM12 1C8.98 1 6.24 2.23 4.25 4.21l1.41 1.41C7.28 4 9.53 3 12 3s4.72 1 6.34 2.62l1.41-1.41C17.76 2.23 15.02 1 12 1zm2.86 9.01L9.14 10C8.51 10 8 10.51 8 11.14v9.71c0 .63.51 1.14 1.14 1.14h5.71c.63 0 1.14-.51 1.14-1.14v-9.71c.01-.63-.5-1.13-1.13-1.13zM15 20H9v-8h6v8z" + }, + "children": [] + }] +}; +exports.ic_speaker_phone_outline = ic_speaker_phone_outline; \ No newline at end of file diff --git a/dist/md/ic_speaker_phone_twotone.js b/dist/md/ic_speaker_phone_twotone.js new file mode 100644 index 000000000..03f1ae134 --- /dev/null +++ b/dist/md/ic_speaker_phone_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_speaker_phone_twotone = void 0; +var ic_speaker_phone_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 12h6v8H9z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 1C8.98 1 6.24 2.23 4.25 4.21l1.41 1.41C7.28 4 9.53 3 12 3s4.72 1 6.34 2.62l1.41-1.41C17.76 2.23 15.02 1 12 1zM7 7.07L8.43 8.5c.91-.91 2.18-1.48 3.57-1.48s2.66.57 3.57 1.48L17 7.07C15.72 5.79 13.95 5 12 5s-3.72.79-5 2.07zm7.86 2.94L9.14 10C8.51 10 8 10.51 8 11.14v9.71c0 .63.51 1.14 1.14 1.14h5.71c.63 0 1.14-.51 1.14-1.14v-9.71c.01-.63-.5-1.13-1.13-1.13zM15 20H9v-8h6v8z" + }, + "children": [] + }] +}; +exports.ic_speaker_phone_twotone = ic_speaker_phone_twotone; \ No newline at end of file diff --git a/dist/md/ic_speaker_twotone.js b/dist/md/ic_speaker_twotone.js new file mode 100644 index 000000000..f1da412d2 --- /dev/null +++ b/dist/md/ic_speaker_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_speaker_twotone = void 0; +var ic_speaker_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 4v16h10V4H7zm5 1c1.1 0 2 .9 2 2s-.9 2-2 2c-1.11 0-2-.9-2-2s.89-2 2-2zm0 14c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 2H7c-1.1 0-2 .9-2 2v16c0 1.1.9 1.99 2 1.99L17 22c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM7 20V4h10v16H7zm5-11c1.1 0 2-.9 2-2s-.9-2-2-2c-1.11 0-2 .9-2 2s.89 2 2 2zm0 2c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" + }, + "children": [] + }] +}; +exports.ic_speaker_twotone = ic_speaker_twotone; \ No newline at end of file diff --git a/dist/md/ic_speed.js b/dist/md/ic_speed.js new file mode 100644 index 000000000..b719736ff --- /dev/null +++ b/dist/md/ic_speed.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_speed = void 0; +var ic_speed = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20.38 8.57l-1.23 1.85a8 8 0 0 1-.22 7.58H5.07A8 8 0 0 1 15.58 6.85l1.85-1.23A10 10 0 0 0 3.35 19a2 2 0 0 0 1.72 1h13.85a2 2 0 0 0 1.74-1 10 10 0 0 0-.27-10.44zm-9.79 6.84a2 2 0 0 0 2.83 0l5.66-8.49-8.49 5.66a2 2 0 0 0 0 2.83z" + }, + "children": [] + }] +}; +exports.ic_speed = ic_speed; \ No newline at end of file diff --git a/dist/md/ic_speed_outline.js b/dist/md/ic_speed_outline.js new file mode 100644 index 000000000..d884a649b --- /dev/null +++ b/dist/md/ic_speed_outline.js @@ -0,0 +1,30 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_speed_outline = void 0; +var ic_speed_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20.38 8.57l-1.23 1.85a8 8 0 0 1-.22 7.58H5.07A8 8 0 0 1 15.58 6.85l1.85-1.23A10 10 0 0 0 3.35 19a2 2 0 0 0 1.72 1h13.85a2 2 0 0 0 1.74-1 10 10 0 0 0-.27-10.44z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10.59 15.41a2 2 0 0 0 2.83 0l5.66-8.49-8.49 5.66a2 2 0 0 0 0 2.83z" + }, + "children": [] + }] +}; +exports.ic_speed_outline = ic_speed_outline; \ No newline at end of file diff --git a/dist/md/ic_speed_twotone.js b/dist/md/ic_speed_twotone.js new file mode 100644 index 000000000..d4dd3e566 --- /dev/null +++ b/dist/md/ic_speed_twotone.js @@ -0,0 +1,30 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_speed_twotone = void 0; +var ic_speed_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20.38 8.57l-1.23 1.85a8 8 0 0 1-.22 7.58H5.07A8 8 0 0 1 15.58 6.85l1.85-1.23A10 10 0 0 0 3.35 19a2 2 0 0 0 1.72 1h13.85a2 2 0 0 0 1.74-1 10 10 0 0 0-.27-10.44z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10.59 15.41a2 2 0 0 0 2.83 0l5.66-8.49-8.49 5.66a2 2 0 0 0 0 2.83z" + }, + "children": [] + }] +}; +exports.ic_speed_twotone = ic_speed_twotone; \ No newline at end of file diff --git a/dist/md/ic_spellcheck.js b/dist/md/ic_spellcheck.js new file mode 100644 index 000000000..f99319a4c --- /dev/null +++ b/dist/md/ic_spellcheck.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_spellcheck = void 0; +var ic_spellcheck = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12.45 16h2.09L9.43 3H7.57L2.46 16h2.09l1.12-3h5.64l1.14 3zm-6.02-5L8.5 5.48 10.57 11H6.43zm15.16.59l-8.09 8.09L9.83 16l-1.41 1.41 5.09 5.09L23 13l-1.41-1.41z" + }, + "children": [] + }] +}; +exports.ic_spellcheck = ic_spellcheck; \ No newline at end of file diff --git a/dist/md/ic_spellcheck_outline.js b/dist/md/ic_spellcheck_outline.js new file mode 100644 index 000000000..94090a765 --- /dev/null +++ b/dist/md/ic_spellcheck_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_spellcheck_outline = void 0; +var ic_spellcheck_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12.45 16h2.09L9.43 3H7.57L2.46 16h2.09l1.12-3h5.64l1.14 3zm-6.02-5L8.5 5.48 10.57 11H6.43zm15.16.59l-8.09 8.09L9.83 16l-1.41 1.41 5.09 5.09L23 13l-1.41-1.41z" + }, + "children": [] + }] +}; +exports.ic_spellcheck_outline = ic_spellcheck_outline; \ No newline at end of file diff --git a/dist/md/ic_spellcheck_twotone.js b/dist/md/ic_spellcheck_twotone.js new file mode 100644 index 000000000..e42625064 --- /dev/null +++ b/dist/md/ic_spellcheck_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_spellcheck_twotone = void 0; +var ic_spellcheck_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12.45 16h2.09L9.43 3H7.57L2.46 16h2.09l1.12-3h5.64l1.14 3zm-6.02-5L8.5 5.48 10.57 11H6.43zm15.16.59l-8.09 8.09L9.83 16l-1.41 1.41 5.09 5.09L23 13l-1.41-1.41z" + }, + "children": [] + }] +}; +exports.ic_spellcheck_twotone = ic_spellcheck_twotone; \ No newline at end of file diff --git a/dist/md/ic_sports.js b/dist/md/ic_sports.js new file mode 100644 index 000000000..ba485638a --- /dev/null +++ b/dist/md/ic_sports.js @@ -0,0 +1,87 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sports = void 0; +var ic_sports = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M11.23,6C9.57,6,8.01,6.66,6.87,7.73C6.54,6.73,5.61,6,4.5,6C3.12,6,2,7.12,2,8.5C2,9.88,3.12,11,4.5,11 c0.21,0,0.41-0.03,0.61-0.08c-0.05,0.25-0.09,0.51-0.1,0.78c-0.18,3.68,2.95,6.68,6.68,6.27c2.55-0.28,4.68-2.26,5.19-4.77 c0.15-0.71,0.15-1.4,0.06-2.06c-0.09-0.6,0.38-1.13,0.99-1.13H22V6H11.23z M4.5,9C4.22,9,4,8.78,4,8.5C4,8.22,4.22,8,4.5,8 S5,8.22,5,8.5C5,8.78,4.78,9,4.5,9z M11,15c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3S12.66,15,11,15z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M11.23,6C9.57,6,8.01,6.66,6.87,7.73C6.54,6.73,5.61,6,4.5,6C3.12,6,2,7.12,2,8.5C2,9.88,3.12,11,4.5,11 c0.21,0,0.41-0.03,0.61-0.08c-0.05,0.25-0.09,0.51-0.1,0.78c-0.18,3.68,2.95,6.68,6.68,6.27c2.55-0.28,4.68-2.26,5.19-4.77 c0.15-0.71,0.15-1.4,0.06-2.06c-0.09-0.6,0.38-1.13,0.99-1.13H22V6H11.23z M4.5,9C4.22,9,4,8.78,4,8.5C4,8.22,4.22,8,4.5,8 S5,8.22,5,8.5C5,8.78,4.78,9,4.5,9z M11,15c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3S12.66,15,11,15z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "cx": "11", + "cy": "12", + "r": "2" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "11", + "cy": "12", + "r": "2" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_sports = ic_sports; \ No newline at end of file diff --git a/dist/md/ic_sports_bar.js b/dist/md/ic_sports_bar.js new file mode 100644 index 000000000..8aff48f24 --- /dev/null +++ b/dist/md/ic_sports_bar.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sports_bar = void 0; +var ic_sports_bar = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19,9h-1.56C17.79,8.41,18,7.73,18,7c0-2.21-1.79-4-4-4c-0.34,0-0.66,0.05-0.98,0.13C12.2,2.45,11.16,2.02,10,2.02 c-1.89,0-3.51,1.11-4.27,2.71C4.15,5.26,3,6.74,3,8.5c0,1.86,1.28,3.41,3,3.86L6,21h11v-2h2c1.1,0,2-0.9,2-2v-6C21,9.9,20.1,9,19,9z M7,10.5c-1.1,0-2-0.9-2-2c0-0.85,0.55-1.6,1.37-1.88l0.8-0.27l0.36-0.76C8,4.62,8.94,4.02,10,4.02c0.79,0,1.39,0.35,1.74,0.65 l0.78,0.65c0,0,0.64-0.32,1.47-0.32c1.1,0,2,0.9,2,2c0,0-3,0-3,0C9.67,7,9.15,10.5,7,10.5z M19,17h-2v-6h2V17z" + }, + "children": [] + }] +}; +exports.ic_sports_bar = ic_sports_bar; \ No newline at end of file diff --git a/dist/md/ic_sports_bar_outline.js b/dist/md/ic_sports_bar_outline.js new file mode 100644 index 000000000..2ae325082 --- /dev/null +++ b/dist/md/ic_sports_bar_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sports_bar_outline = void 0; +var ic_sports_bar_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15,19H8l0-6.63c1.26-0.34,2.11-1.27,2.77-1.99C11.6,9.47,12.08,9,13,9l2,0V19z M10,2.02c-1.89,0-3.51,1.11-4.27,2.71 C4.15,5.26,3,6.74,3,8.5c0,1.86,1.28,3.41,3,3.86L6,21h11v-2h2c1.1,0,2-0.9,2-2v-6c0-1.1-0.9-2-2-2h-1.56C17.79,8.41,18,7.73,18,7 c0-2.21-1.79-4-4-4c-0.34,0-0.66,0.05-0.98,0.13C12.2,2.45,11.16,2.02,10,2.02L10,2.02z M7,10.5c-1.1,0-2-0.9-2-2 c0-0.85,0.55-1.6,1.37-1.88l0.8-0.27l0.36-0.76C8,4.62,8.94,4.02,10,4.02c0.79,0,1.39,0.35,1.74,0.65l0.78,0.65 c0,0,0.64-0.32,1.47-0.32c1.1,0,2,0.9,2,2c0,0-3,0-3,0C9.67,7,9.15,10.5,7,10.5C7,10.5,7,10.5,7,10.5L7,10.5z M17,17v-6h2v6H17 L17,17z" + }, + "children": [] + }] +}; +exports.ic_sports_bar_outline = ic_sports_bar_outline; \ No newline at end of file diff --git a/dist/md/ic_sports_bar_twotone.js b/dist/md/ic_sports_bar_twotone.js new file mode 100644 index 000000000..ed8c6473a --- /dev/null +++ b/dist/md/ic_sports_bar_twotone.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sports_bar_twotone = void 0; +var ic_sports_bar_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15,19H8l0-6.63c1.26-0.34,2.11-1.27,2.77-1.99C11.6,9.47,12.08,9,13,9l2,0V19z M7,10.5c-1.1,0-2-0.9-2-2 c0-0.85,0.55-1.6,1.37-1.88l0.8-0.27l0.36-0.76C8,4.62,8.94,4.02,10,4.02c0.79,0,1.39,0.35,1.74,0.65l0.78,0.65 c0,0,0.64-0.32,1.47-0.32c1.1,0,2,0.9,2,2c0,0-3,0-3,0C9.67,7,9.15,10.5,7,10.5C7,10.5,7,10.5,7,10.5L7,10.5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15,19H8l0-6.63c1.26-0.34,2.11-1.27,2.77-1.99C11.6,9.47,12.08,9,13,9l2,0V19z M10,2.02c-1.89,0-3.51,1.11-4.27,2.71 C4.15,5.26,3,6.74,3,8.5c0,1.86,1.28,3.41,3,3.86L6,21h11v-2h2c1.1,0,2-0.9,2-2v-6c0-1.1-0.9-2-2-2h-1.56C17.79,8.41,18,7.73,18,7 c0-2.21-1.79-4-4-4c-0.34,0-0.66,0.05-0.98,0.13C12.2,2.45,11.16,2.02,10,2.02L10,2.02z M7,10.5c-1.1,0-2-0.9-2-2 c0-0.85,0.55-1.6,1.37-1.88l0.8-0.27l0.36-0.76C8,4.62,8.94,4.02,10,4.02c0.79,0,1.39,0.35,1.74,0.65l0.78,0.65 c0,0,0.64-0.32,1.47-0.32c1.1,0,2,0.9,2,2c0,0-3,0-3,0C9.67,7,9.15,10.5,7,10.5C7,10.5,7,10.5,7,10.5L7,10.5z M17,17v-6h2v6H17 L17,17z" + }, + "children": [] + }] +}; +exports.ic_sports_bar_twotone = ic_sports_bar_twotone; \ No newline at end of file diff --git a/dist/md/ic_sports_baseball.js b/dist/md/ic_sports_baseball.js new file mode 100644 index 000000000..e1681caef --- /dev/null +++ b/dist/md/ic_sports_baseball.js @@ -0,0 +1,103 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sports_baseball = void 0; +var ic_sports_baseball = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M3.81,6.28C2.67,7.9,2,9.87,2,12s0.67,4.1,1.81,5.72C6.23,16.95,8,14.68,8,12S6.23,7.05,3.81,6.28z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M3.81,6.28C2.67,7.9,2,9.87,2,12s0.67,4.1,1.81,5.72C6.23,16.95,8,14.68,8,12S6.23,7.05,3.81,6.28z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M20.19,6.28C17.77,7.05,16,9.32,16,12s1.77,4.95,4.19,5.72C21.33,16.1,22,14.13,22,12S21.33,7.9,20.19,6.28z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20.19,6.28C17.77,7.05,16,9.32,16,12s1.77,4.95,4.19,5.72C21.33,16.1,22,14.13,22,12S21.33,7.9,20.19,6.28z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M14,12c0-3.28,1.97-6.09,4.79-7.33C17.01,3.02,14.63,2,12,2S6.99,3.02,5.21,4.67C8.03,5.91,10,8.72,10,12 s-1.97,6.09-4.79,7.33C6.99,20.98,9.37,22,12,22s5.01-1.02,6.79-2.67C15.97,18.09,14,15.28,14,12z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14,12c0-3.28,1.97-6.09,4.79-7.33C17.01,3.02,14.63,2,12,2S6.99,3.02,5.21,4.67C8.03,5.91,10,8.72,10,12 s-1.97,6.09-4.79,7.33C6.99,20.98,9.37,22,12,22s5.01-1.02,6.79-2.67C15.97,18.09,14,15.28,14,12z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_sports_baseball = ic_sports_baseball; \ No newline at end of file diff --git a/dist/md/ic_sports_baseball_outline.js b/dist/md/ic_sports_baseball_outline.js new file mode 100644 index 000000000..0171dacbd --- /dev/null +++ b/dist/md/ic_sports_baseball_outline.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sports_baseball_outline = void 0; +var ic_sports_baseball_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M5.61,16.78C4.6,15.45,4,13.8,4,12 s0.6-3.45,1.61-4.78C7.06,8.31,8,10.05,8,12S7.06,15.69,5.61,16.78z M12,20c-1.89,0-3.63-0.66-5-1.76c1.83-1.47,3-3.71,3-6.24 S8.83,7.23,7,5.76C8.37,4.66,10.11,4,12,4s3.63,0.66,5,1.76c-1.83,1.47-3,3.71-3,6.24s1.17,4.77,3,6.24C15.63,19.34,13.89,20,12,20 z M18.39,16.78C16.94,15.69,16,13.95,16,12s0.94-3.69,2.39-4.78C19.4,8.55,20,10.2,20,12S19.4,15.45,18.39,16.78z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M5.61,16.78C4.6,15.45,4,13.8,4,12 s0.6-3.45,1.61-4.78C7.06,8.31,8,10.05,8,12S7.06,15.69,5.61,16.78z M12,20c-1.89,0-3.63-0.66-5-1.76c1.83-1.47,3-3.71,3-6.24 S8.83,7.23,7,5.76C8.37,4.66,10.11,4,12,4s3.63,0.66,5,1.76c-1.83,1.47-3,3.71-3,6.24s1.17,4.77,3,6.24C15.63,19.34,13.89,20,12,20 z M18.39,16.78C16.94,15.69,16,13.95,16,12s0.94-3.69,2.39-4.78C19.4,8.55,20,10.2,20,12S19.4,15.45,18.39,16.78z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_sports_baseball_outline = ic_sports_baseball_outline; \ No newline at end of file diff --git a/dist/md/ic_sports_baseball_twotone.js b/dist/md/ic_sports_baseball_twotone.js new file mode 100644 index 000000000..bd5a6eb41 --- /dev/null +++ b/dist/md/ic_sports_baseball_twotone.js @@ -0,0 +1,97 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sports_baseball_twotone = void 0; +var ic_sports_baseball_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M5.61,7.22C4.6,8.55,4,10.2,4,12s0.6,3.45,1.61,4.78C7.06,15.69,8,13.95,8,12S7.06,8.31,5.61,7.22z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M5.61,7.22C4.6,8.55,4,10.2,4,12s0.6,3.45,1.61,4.78C7.06,15.69,8,13.95,8,12S7.06,8.31,5.61,7.22z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M14,12c0-2.52,1.17-4.77,3-6.24C15.63,4.66,13.89,4,12,4S8.37,4.66,7,5.76c1.83,1.47,3,3.71,3,6.24 s-1.17,4.77-3,6.24c1.37,1.1,3.11,1.76,5,1.76s3.63-0.66,5-1.76C15.17,16.77,14,14.52,14,12z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14,12c0-2.52,1.17-4.77,3-6.24C15.63,4.66,13.89,4,12,4S8.37,4.66,7,5.76c1.83,1.47,3,3.71,3,6.24 s-1.17,4.77-3,6.24c1.37,1.1,3.11,1.76,5,1.76s3.63-0.66,5-1.76C15.17,16.77,14,14.52,14,12z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M18.39,7.22C16.94,8.31,16,10.05,16,12s0.94,3.69,2.39,4.78C19.4,15.45,20,13.8,20,12S19.4,8.55,18.39,7.22 z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18.39,7.22C16.94,8.31,16,10.05,16,12s0.94,3.69,2.39,4.78C19.4,15.45,20,13.8,20,12S19.4,8.55,18.39,7.22 z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M5.61,16.78C4.6,15.45,4,13.8,4,12 s0.6-3.45,1.61-4.78C7.06,8.31,8,10.05,8,12S7.06,15.69,5.61,16.78z M12,20c-1.89,0-3.63-0.66-5-1.76c1.83-1.47,3-3.71,3-6.24 S8.83,7.23,7,5.76C8.37,4.66,10.11,4,12,4s3.63,0.66,5,1.76c-1.83,1.47-3,3.71-3,6.24s1.17,4.77,3,6.24 C15.63,19.34,13.89,20,12,20z M18.39,16.78C16.94,15.69,16,13.95,16,12s0.94-3.69,2.39-4.78C19.4,8.55,20,10.2,20,12 S19.4,15.45,18.39,16.78z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M5.61,16.78C4.6,15.45,4,13.8,4,12 s0.6-3.45,1.61-4.78C7.06,8.31,8,10.05,8,12S7.06,15.69,5.61,16.78z M12,20c-1.89,0-3.63-0.66-5-1.76c1.83-1.47,3-3.71,3-6.24 S8.83,7.23,7,5.76C8.37,4.66,10.11,4,12,4s3.63,0.66,5,1.76c-1.83,1.47-3,3.71-3,6.24s1.17,4.77,3,6.24 C15.63,19.34,13.89,20,12,20z M18.39,16.78C16.94,15.69,16,13.95,16,12s0.94-3.69,2.39-4.78C19.4,8.55,20,10.2,20,12 S19.4,15.45,18.39,16.78z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_sports_baseball_twotone = ic_sports_baseball_twotone; \ No newline at end of file diff --git a/dist/md/ic_sports_basketball.js b/dist/md/ic_sports_basketball.js new file mode 100644 index 000000000..dc5e15720 --- /dev/null +++ b/dist/md/ic_sports_basketball.js @@ -0,0 +1,203 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sports_basketball = void 0; +var ic_sports_basketball = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M17.09,11h4.86c-0.16-1.61-0.71-3.11-1.54-4.4C18.68,7.43,17.42,9.05,17.09,11z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17.09,11h4.86c-0.16-1.61-0.71-3.11-1.54-4.4C18.68,7.43,17.42,9.05,17.09,11z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M6.91,11C6.58,9.05,5.32,7.43,3.59,6.6C2.76,7.89,2.21,9.39,2.05,11H6.91z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M6.91,11C6.58,9.05,5.32,7.43,3.59,6.6C2.76,7.89,2.21,9.39,2.05,11H6.91z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M15.07,11c0.32-2.59,1.88-4.79,4.06-6c-1.6-1.63-3.74-2.71-6.13-2.95V11H15.07z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15.07,11c0.32-2.59,1.88-4.79,4.06-6c-1.6-1.63-3.74-2.71-6.13-2.95V11H15.07z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M8.93,11H11V2.05C8.61,2.29,6.46,3.37,4.87,5C7.05,6.21,8.61,8.41,8.93,11z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M8.93,11H11V2.05C8.61,2.29,6.46,3.37,4.87,5C7.05,6.21,8.61,8.41,8.93,11z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M15.07,13H13v8.95c2.39-0.24,4.54-1.32,6.13-2.95C16.95,17.79,15.39,15.59,15.07,13z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15.07,13H13v8.95c2.39-0.24,4.54-1.32,6.13-2.95C16.95,17.79,15.39,15.59,15.07,13z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M3.59,17.4c1.72-0.83,2.99-2.46,3.32-4.4H2.05C2.21,14.61,2.76,16.11,3.59,17.4z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M3.59,17.4c1.72-0.83,2.99-2.46,3.32-4.4H2.05C2.21,14.61,2.76,16.11,3.59,17.4z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M17.09,13c0.33,1.95,1.59,3.57,3.32,4.4c0.83-1.29,1.38-2.79,1.54-4.4H17.09z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17.09,13c0.33,1.95,1.59,3.57,3.32,4.4c0.83-1.29,1.38-2.79,1.54-4.4H17.09z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M8.93,13c-0.32,2.59-1.88,4.79-4.06,6c1.6,1.63,3.74,2.71,6.13,2.95V13H8.93z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M8.93,13c-0.32,2.59-1.88,4.79-4.06,6c1.6,1.63,3.74,2.71,6.13,2.95V13H8.93z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_sports_basketball = ic_sports_basketball; \ No newline at end of file diff --git a/dist/md/ic_sports_basketball_outline.js b/dist/md/ic_sports_basketball_outline.js new file mode 100644 index 000000000..252eabb2c --- /dev/null +++ b/dist/md/ic_sports_basketball_outline.js @@ -0,0 +1,55 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sports_basketball_outline = void 0; +var ic_sports_basketball_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M5.23,7.75 C6.1,8.62,6.7,9.74,6.91,11H4.07C4.22,9.82,4.63,8.72,5.23,7.75z M4.07,13h2.84c-0.21,1.26-0.81,2.38-1.68,3.25 C4.63,15.28,4.22,14.18,4.07,13z M11,19.93c-1.73-0.22-3.29-1-4.49-2.14c1.3-1.24,2.19-2.91,2.42-4.79H11V19.93z M11,11H8.93 C8.69,9.12,7.81,7.44,6.5,6.2C7.71,5.06,9.27,4.29,11,4.07V11z M19.93,11h-2.84c0.21-1.26,0.81-2.38,1.68-3.25 C19.37,8.72,19.78,9.82,19.93,11z M13,4.07c1.73,0.22,3.29,0.99,4.5,2.13c-1.31,1.24-2.19,2.92-2.43,4.8H13V4.07z M13,19.93V13 h2.07c0.24,1.88,1.12,3.55,2.42,4.79C16.29,18.93,14.73,19.71,13,19.93z M18.77,16.25c-0.87-0.86-1.46-1.99-1.68-3.25h2.84 C19.78,14.18,19.37,15.28,18.77,16.25z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M5.23,7.75 C6.1,8.62,6.7,9.74,6.91,11H4.07C4.22,9.82,4.63,8.72,5.23,7.75z M4.07,13h2.84c-0.21,1.26-0.81,2.38-1.68,3.25 C4.63,15.28,4.22,14.18,4.07,13z M11,19.93c-1.73-0.22-3.29-1-4.49-2.14c1.3-1.24,2.19-2.91,2.42-4.79H11V19.93z M11,11H8.93 C8.69,9.12,7.81,7.44,6.5,6.2C7.71,5.06,9.27,4.29,11,4.07V11z M19.93,11h-2.84c0.21-1.26,0.81-2.38,1.68-3.25 C19.37,8.72,19.78,9.82,19.93,11z M13,4.07c1.73,0.22,3.29,0.99,4.5,2.13c-1.31,1.24-2.19,2.92-2.43,4.8H13V4.07z M13,19.93V13 h2.07c0.24,1.88,1.12,3.55,2.42,4.79C16.29,18.93,14.73,19.71,13,19.93z M18.77,16.25c-0.87-0.86-1.46-1.99-1.68-3.25h2.84 C19.78,14.18,19.37,15.28,18.77,16.25z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_sports_basketball_outline = ic_sports_basketball_outline; \ No newline at end of file diff --git a/dist/md/ic_sports_basketball_twotone.js b/dist/md/ic_sports_basketball_twotone.js new file mode 100644 index 000000000..68f61625d --- /dev/null +++ b/dist/md/ic_sports_basketball_twotone.js @@ -0,0 +1,167 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sports_basketball_twotone = void 0; +var ic_sports_basketball_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M8.93,11H11V4.07C9.27,4.29,7.71,5.06,6.5,6.2C7.81,7.44,8.69,9.12,8.93,11z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M8.93,11H11V4.07C9.27,4.29,7.71,5.06,6.5,6.2C7.81,7.44,8.69,9.12,8.93,11z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19.93,11c-0.15-1.18-0.56-2.28-1.16-3.25C17.9,8.62,17.3,9.74,17.09,11H19.93z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19.93,11c-0.15-1.18-0.56-2.28-1.16-3.25C17.9,8.62,17.3,9.74,17.09,11H19.93z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M5.23,7.75C4.63,8.72,4.22,9.82,4.07,11h2.84C6.7,9.74,6.1,8.62,5.23,7.75z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M5.23,7.75C4.63,8.72,4.22,9.82,4.07,11h2.84C6.7,9.74,6.1,8.62,5.23,7.75z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M4.07,13c0.15,1.18,0.56,2.28,1.16,3.25C6.1,15.38,6.7,14.26,6.91,13H4.07z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M4.07,13c0.15,1.18,0.56,2.28,1.16,3.25C6.1,15.38,6.7,14.26,6.91,13H4.07z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M6.51,17.79c1.2,1.14,2.76,1.92,4.49,2.14V13H8.93C8.7,14.88,7.81,16.55,6.51,17.79z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M6.51,17.79c1.2,1.14,2.76,1.92,4.49,2.14V13H8.93C8.7,14.88,7.81,16.55,6.51,17.79z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M17.5,6.2c-1.21-1.14-2.77-1.92-4.5-2.13V11h2.07C15.31,9.12,16.19,7.44,17.5,6.2z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17.5,6.2c-1.21-1.14-2.77-1.92-4.5-2.13V11h2.07C15.31,9.12,16.19,7.44,17.5,6.2z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M18.77,16.25c0.61-0.96,1.02-2.07,1.16-3.25h-2.84C17.3,14.26,17.9,15.38,18.77,16.25z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18.77,16.25c0.61-0.96,1.02-2.07,1.16-3.25h-2.84C17.3,14.26,17.9,15.38,18.77,16.25z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M13,13v6.93c1.73-0.22,3.29-1,4.49-2.14c-1.3-1.24-2.19-2.91-2.42-4.79H13z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M13,13v6.93c1.73-0.22,3.29-1,4.49-2.14c-1.3-1.24-2.19-2.91-2.42-4.79H13z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M5.23,7.75 C6.1,8.62,6.7,9.74,6.91,11H4.07C4.22,9.82,4.63,8.72,5.23,7.75z M4.07,13h2.84c-0.21,1.26-0.81,2.38-1.68,3.25 C4.63,15.28,4.22,14.18,4.07,13z M11,19.93c-1.73-0.22-3.29-1-4.49-2.14c1.3-1.24,2.19-2.91,2.42-4.79H11V19.93z M11,11H8.93 C8.69,9.12,7.81,7.44,6.5,6.2C7.71,5.06,9.27,4.29,11,4.07V11z M19.93,11h-2.84c0.21-1.26,0.81-2.38,1.68-3.25 C19.37,8.72,19.78,9.82,19.93,11z M13,4.07c1.73,0.22,3.29,0.99,4.5,2.13c-1.31,1.24-2.19,2.92-2.43,4.8H13V4.07z M13,19.93V13 h2.07c0.24,1.88,1.12,3.55,2.42,4.79C16.29,18.93,14.73,19.71,13,19.93z M18.77,16.25c-0.87-0.86-1.46-1.99-1.68-3.25h2.84 C19.78,14.18,19.37,15.28,18.77,16.25z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M5.23,7.75 C6.1,8.62,6.7,9.74,6.91,11H4.07C4.22,9.82,4.63,8.72,5.23,7.75z M4.07,13h2.84c-0.21,1.26-0.81,2.38-1.68,3.25 C4.63,15.28,4.22,14.18,4.07,13z M11,19.93c-1.73-0.22-3.29-1-4.49-2.14c1.3-1.24,2.19-2.91,2.42-4.79H11V19.93z M11,11H8.93 C8.69,9.12,7.81,7.44,6.5,6.2C7.71,5.06,9.27,4.29,11,4.07V11z M19.93,11h-2.84c0.21-1.26,0.81-2.38,1.68-3.25 C19.37,8.72,19.78,9.82,19.93,11z M13,4.07c1.73,0.22,3.29,0.99,4.5,2.13c-1.31,1.24-2.19,2.92-2.43,4.8H13V4.07z M13,19.93V13 h2.07c0.24,1.88,1.12,3.55,2.42,4.79C16.29,18.93,14.73,19.71,13,19.93z M18.77,16.25c-0.87-0.86-1.46-1.99-1.68-3.25h2.84 C19.78,14.18,19.37,15.28,18.77,16.25z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_sports_basketball_twotone = ic_sports_basketball_twotone; \ No newline at end of file diff --git a/dist/md/ic_sports_cricket.js b/dist/md/ic_sports_cricket.js new file mode 100644 index 000000000..47a032e02 --- /dev/null +++ b/dist/md/ic_sports_cricket.js @@ -0,0 +1,99 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sports_cricket = void 0; +var ic_sports_cricket = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M15.05,12.81L6.56,4.32c-0.39-0.39-1.02-0.39-1.41,0L2.32,7.15c-0.39,0.39-0.39,1.02,0,1.41l8.49,8.49 c0.39,0.39,1.02,0.39,1.41,0l2.83-2.83C15.44,13.83,15.44,13.2,15.05,12.81z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15.05,12.81L6.56,4.32c-0.39-0.39-1.02-0.39-1.41,0L2.32,7.15c-0.39,0.39-0.39,1.02,0,1.41l8.49,8.49 c0.39,0.39,1.02,0.39,1.41,0l2.83-2.83C15.44,13.83,15.44,13.2,15.05,12.81z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "6", + "transform": "matrix(0.7071 -0.7071 0.7071 0.7071 -8.5264 17.7562)", + "width": "2", + "x": "16.17", + "y": "16.17" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "6", + "transform": "matrix(0.7071 -0.7071 0.7071 0.7071 -8.5264 17.7562)", + "width": "2", + "x": "16.17", + "y": "16.17" + }, + "children": [] + }] + }] + }] + }, { + "name": "circle", + "attribs": { + "cx": "18.5", + "cy": "5.5", + "r": "3.5" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "18.5", + "cy": "5.5", + "r": "3.5" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_sports_cricket = ic_sports_cricket; \ No newline at end of file diff --git a/dist/md/ic_sports_cricket_outline.js b/dist/md/ic_sports_cricket_outline.js new file mode 100644 index 000000000..04acade35 --- /dev/null +++ b/dist/md/ic_sports_cricket_outline.js @@ -0,0 +1,87 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sports_cricket_outline = void 0; +var ic_sports_cricket_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M15.04,12.79l-8.5-8.5C6.35,4.1,6.09,4,5.83,4S5.32,4.1,5.13,4.29L2.29,7.13c-0.39,0.39-0.39,1.03,0,1.42l8.5,8.5 c0.2,0.2,0.45,0.29,0.71,0.29c0.26,0,0.51-0.1,0.71-0.29l2.83-2.83C15.43,13.82,15.43,13.18,15.04,12.79z M11.5,14.92L4.41,7.83 l1.42-1.42l7.09,7.09L11.5,14.92z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15.04,12.79l-8.5-8.5C6.35,4.1,6.09,4,5.83,4S5.32,4.1,5.13,4.29L2.29,7.13c-0.39,0.39-0.39,1.03,0,1.42l8.5,8.5 c0.2,0.2,0.45,0.29,0.71,0.29c0.26,0,0.51-0.1,0.71-0.29l2.83-2.83C15.43,13.82,15.43,13.18,15.04,12.79z M11.5,14.92L4.41,7.83 l1.42-1.42l7.09,7.09L11.5,14.92z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "6", + "transform": "matrix(0.7071 -0.7071 0.7071 0.7071 -8.5264 17.7562)", + "width": "2", + "x": "16.17", + "y": "16.17" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "6", + "transform": "matrix(0.7071 -0.7071 0.7071 0.7071 -8.5264 17.7562)", + "width": "2", + "x": "16.17", + "y": "16.17" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M18.5,2C16.57,2,15,3.57,15,5.5C15,7.43,16.57,9,18.5,9S22,7.43,22,5.5C22,3.57,20.43,2,18.5,2z M18.5,7 C17.67,7,17,6.33,17,5.5S17.67,4,18.5,4S20,4.67,20,5.5S19.33,7,18.5,7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18.5,2C16.57,2,15,3.57,15,5.5C15,7.43,16.57,9,18.5,9S22,7.43,22,5.5C22,3.57,20.43,2,18.5,2z M18.5,7 C17.67,7,17,6.33,17,5.5S17.67,4,18.5,4S20,4.67,20,5.5S19.33,7,18.5,7z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_sports_cricket_outline = ic_sports_cricket_outline; \ No newline at end of file diff --git a/dist/md/ic_sports_cricket_twotone.js b/dist/md/ic_sports_cricket_twotone.js new file mode 100644 index 000000000..4f9010f13 --- /dev/null +++ b/dist/md/ic_sports_cricket_twotone.js @@ -0,0 +1,127 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sports_cricket_twotone = void 0; +var ic_sports_cricket_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "height": "10.02", + "opacity": ".3", + "transform": "matrix(0.7071 -0.7071 0.7071 0.7071 -5.0045 9.2536)", + "width": "2.01", + "x": "7.66", + "y": "5.66" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "10.02", + "opacity": ".3", + "transform": "matrix(0.7071 -0.7071 0.7071 0.7071 -5.0045 9.2536)", + "width": "2.01", + "x": "7.66", + "y": "5.66" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "18.5", + "cy": "5.5", + "opacity": ".3", + "r": "1.5" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "18.5", + "cy": "5.5", + "opacity": ".3", + "r": "1.5" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M15.04,12.79l-8.5-8.5C6.35,4.1,6.09,4,5.83,4S5.32,4.1,5.13,4.29L2.29,7.13c-0.39,0.39-0.39,1.03,0,1.42l8.5,8.5 c0.2,0.2,0.45,0.29,0.71,0.29c0.26,0,0.51-0.1,0.71-0.29l2.83-2.83C15.43,13.82,15.43,13.18,15.04,12.79z M11.5,14.92L4.41,7.83 l1.42-1.42l7.09,7.09L11.5,14.92z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15.04,12.79l-8.5-8.5C6.35,4.1,6.09,4,5.83,4S5.32,4.1,5.13,4.29L2.29,7.13c-0.39,0.39-0.39,1.03,0,1.42l8.5,8.5 c0.2,0.2,0.45,0.29,0.71,0.29c0.26,0,0.51-0.1,0.71-0.29l2.83-2.83C15.43,13.82,15.43,13.18,15.04,12.79z M11.5,14.92L4.41,7.83 l1.42-1.42l7.09,7.09L11.5,14.92z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "6", + "transform": "matrix(0.7071 -0.7071 0.7071 0.7071 -8.5264 17.7562)", + "width": "2", + "x": "16.17", + "y": "16.17" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "6", + "transform": "matrix(0.7071 -0.7071 0.7071 0.7071 -8.5264 17.7562)", + "width": "2", + "x": "16.17", + "y": "16.17" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M18.5,2C16.57,2,15,3.57,15,5.5C15,7.43,16.57,9,18.5,9S22,7.43,22,5.5C22,3.57,20.43,2,18.5,2z M18.5,7 C17.67,7,17,6.33,17,5.5S17.67,4,18.5,4S20,4.67,20,5.5S19.33,7,18.5,7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18.5,2C16.57,2,15,3.57,15,5.5C15,7.43,16.57,9,18.5,9S22,7.43,22,5.5C22,3.57,20.43,2,18.5,2z M18.5,7 C17.67,7,17,6.33,17,5.5S17.67,4,18.5,4S20,4.67,20,5.5S19.33,7,18.5,7z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_sports_cricket_twotone = ic_sports_cricket_twotone; \ No newline at end of file diff --git a/dist/md/ic_sports_esports.js b/dist/md/ic_sports_esports.js new file mode 100644 index 000000000..e69c5b5cd --- /dev/null +++ b/dist/md/ic_sports_esports.js @@ -0,0 +1,55 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sports_esports = void 0; +var ic_sports_esports = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M21.58,16.09l-1.09-7.66C20.21,6.46,18.52,5,16.53,5H7.47C5.48,5,3.79,6.46,3.51,8.43l-1.09,7.66 C2.2,17.63,3.39,19,4.94,19h0c0.68,0,1.32-0.27,1.8-0.75L9,16h6l2.25,2.25c0.48,0.48,1.13,0.75,1.8,0.75h0 C20.61,19,21.8,17.63,21.58,16.09z M11,11H9v2H8v-2H6v-1h2V8h1v2h2V11z M15,10c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1 C16,9.55,15.55,10,15,10z M17,13c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C18,12.55,17.55,13,17,13z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21.58,16.09l-1.09-7.66C20.21,6.46,18.52,5,16.53,5H7.47C5.48,5,3.79,6.46,3.51,8.43l-1.09,7.66 C2.2,17.63,3.39,19,4.94,19h0c0.68,0,1.32-0.27,1.8-0.75L9,16h6l2.25,2.25c0.48,0.48,1.13,0.75,1.8,0.75h0 C20.61,19,21.8,17.63,21.58,16.09z M11,11H9v2H8v-2H6v-1h2V8h1v2h2V11z M15,10c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1 C16,9.55,15.55,10,15,10z M17,13c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C18,12.55,17.55,13,17,13z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_sports_esports = ic_sports_esports; \ No newline at end of file diff --git a/dist/md/ic_sports_esports_outline.js b/dist/md/ic_sports_esports_outline.js new file mode 100644 index 000000000..3202d1299 --- /dev/null +++ b/dist/md/ic_sports_esports_outline.js @@ -0,0 +1,99 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sports_esports_outline = void 0; +var ic_sports_esports_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M21.58,16.09l-1.09-7.66C20.21,6.46,18.52,5,16.53,5H7.47C5.48,5,3.79,6.46,3.51,8.43l-1.09,7.66 C2.2,17.63,3.39,19,4.94,19h0c0.68,0,1.32-0.27,1.8-0.75L9,16h6l2.25,2.25c0.48,0.48,1.13,0.75,1.8,0.75h0 C20.61,19,21.8,17.63,21.58,16.09z M19.48,16.81C19.4,16.9,19.27,17,19.06,17c-0.15,0-0.29-0.06-0.39-0.16L15.83,14H8.17 l-2.84,2.84C5.23,16.94,5.09,17,4.94,17c-0.21,0-0.34-0.1-0.42-0.19c-0.08-0.09-0.16-0.23-0.13-0.44l1.09-7.66 C5.63,7.74,6.48,7,7.47,7h9.06c0.99,0,1.84,0.74,1.98,1.72l1.09,7.66C19.63,16.58,19.55,16.72,19.48,16.81z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21.58,16.09l-1.09-7.66C20.21,6.46,18.52,5,16.53,5H7.47C5.48,5,3.79,6.46,3.51,8.43l-1.09,7.66 C2.2,17.63,3.39,19,4.94,19h0c0.68,0,1.32-0.27,1.8-0.75L9,16h6l2.25,2.25c0.48,0.48,1.13,0.75,1.8,0.75h0 C20.61,19,21.8,17.63,21.58,16.09z M19.48,16.81C19.4,16.9,19.27,17,19.06,17c-0.15,0-0.29-0.06-0.39-0.16L15.83,14H8.17 l-2.84,2.84C5.23,16.94,5.09,17,4.94,17c-0.21,0-0.34-0.1-0.42-0.19c-0.08-0.09-0.16-0.23-0.13-0.44l1.09-7.66 C5.63,7.74,6.48,7,7.47,7h9.06c0.99,0,1.84,0.74,1.98,1.72l1.09,7.66C19.63,16.58,19.55,16.72,19.48,16.81z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "9,8 8,8 8,10 6,10 6,11 8,11 8,13 9,13 9,11 11,11 11,10 9,10" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "9,8 8,8 8,10 6,10 6,11 8,11 8,13 9,13 9,11 11,11 11,10 9,10" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "17", + "cy": "12", + "r": "1" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "17", + "cy": "12", + "r": "1" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "15", + "cy": "9", + "r": "1" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "15", + "cy": "9", + "r": "1" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_sports_esports_outline = ic_sports_esports_outline; \ No newline at end of file diff --git a/dist/md/ic_sports_esports_twotone.js b/dist/md/ic_sports_esports_twotone.js new file mode 100644 index 000000000..e21c50d56 --- /dev/null +++ b/dist/md/ic_sports_esports_twotone.js @@ -0,0 +1,113 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sports_esports_twotone = void 0; +var ic_sports_esports_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M16.53,7H7.47C6.48,7,5.63,7.74,5.49,8.72L4.4,16.37c-0.03,0.21,0.05,0.35,0.13,0.44 C4.6,16.9,4.73,17,4.94,17c0.15,0,0.29-0.06,0.39-0.16L8.17,14h7.66l2.84,2.84c0.1,0.1,0.24,0.16,0.39,0.16 c0.21,0,0.34-0.1,0.42-0.19c0.08-0.09,0.16-0.23,0.13-0.44l-1.09-7.66C18.37,7.74,17.52,7,16.53,7z M11,11H9v2H8v-2H6v-1h2V8h1v2 h2V11z M15,10c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C16,9.55,15.55,10,15,10z M17,13c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C18,12.55,17.55,13,17,13z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M16.53,7H7.47C6.48,7,5.63,7.74,5.49,8.72L4.4,16.37c-0.03,0.21,0.05,0.35,0.13,0.44 C4.6,16.9,4.73,17,4.94,17c0.15,0,0.29-0.06,0.39-0.16L8.17,14h7.66l2.84,2.84c0.1,0.1,0.24,0.16,0.39,0.16 c0.21,0,0.34-0.1,0.42-0.19c0.08-0.09,0.16-0.23,0.13-0.44l-1.09-7.66C18.37,7.74,17.52,7,16.53,7z M11,11H9v2H8v-2H6v-1h2V8h1v2 h2V11z M15,10c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C16,9.55,15.55,10,15,10z M17,13c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C18,12.55,17.55,13,17,13z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M21.58,16.09l-1.09-7.66C20.21,6.46,18.52,5,16.53,5H7.47C5.48,5,3.79,6.46,3.51,8.43l-1.09,7.66 C2.2,17.63,3.39,19,4.94,19h0c0.68,0,1.32-0.27,1.8-0.75L9,16h6l2.25,2.25c0.48,0.48,1.13,0.75,1.8,0.75h0 C20.61,19,21.8,17.63,21.58,16.09z M19.48,16.81C19.4,16.9,19.27,17,19.06,17c-0.15,0-0.29-0.06-0.39-0.16L15.83,14H8.17 l-2.84,2.84C5.23,16.94,5.09,17,4.94,17c-0.21,0-0.34-0.1-0.42-0.19c-0.08-0.09-0.16-0.23-0.13-0.44l1.09-7.66 C5.63,7.74,6.48,7,7.47,7h9.06c0.99,0,1.84,0.74,1.98,1.72l1.09,7.66C19.63,16.58,19.55,16.72,19.48,16.81z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21.58,16.09l-1.09-7.66C20.21,6.46,18.52,5,16.53,5H7.47C5.48,5,3.79,6.46,3.51,8.43l-1.09,7.66 C2.2,17.63,3.39,19,4.94,19h0c0.68,0,1.32-0.27,1.8-0.75L9,16h6l2.25,2.25c0.48,0.48,1.13,0.75,1.8,0.75h0 C20.61,19,21.8,17.63,21.58,16.09z M19.48,16.81C19.4,16.9,19.27,17,19.06,17c-0.15,0-0.29-0.06-0.39-0.16L15.83,14H8.17 l-2.84,2.84C5.23,16.94,5.09,17,4.94,17c-0.21,0-0.34-0.1-0.42-0.19c-0.08-0.09-0.16-0.23-0.13-0.44l1.09-7.66 C5.63,7.74,6.48,7,7.47,7h9.06c0.99,0,1.84,0.74,1.98,1.72l1.09,7.66C19.63,16.58,19.55,16.72,19.48,16.81z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "9,8 8,8 8,10 6,10 6,11 8,11 8,13 9,13 9,11 11,11 11,10 9,10" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "9,8 8,8 8,10 6,10 6,11 8,11 8,13 9,13 9,11 11,11 11,10 9,10" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "17", + "cy": "12", + "r": "1" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "17", + "cy": "12", + "r": "1" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "15", + "cy": "9", + "r": "1" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "15", + "cy": "9", + "r": "1" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_sports_esports_twotone = ic_sports_esports_twotone; \ No newline at end of file diff --git a/dist/md/ic_sports_football.js b/dist/md/ic_sports_football.js new file mode 100644 index 000000000..d8f74d19a --- /dev/null +++ b/dist/md/ic_sports_football.js @@ -0,0 +1,79 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sports_football = void 0; +var ic_sports_football = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M3.02,15.62c-0.08,2.42,0.32,4.34,0.67,4.69s2.28,0.76,4.69,0.67L3.02,15.62z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M3.02,15.62c-0.08,2.42,0.32,4.34,0.67,4.69s2.28,0.76,4.69,0.67L3.02,15.62z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M13.08,3.28C10.75,3.7,8.29,4.62,6.46,6.46s-2.76,4.29-3.18,6.62l7.63,7.63c2.34-0.41,4.79-1.34,6.62-3.18 s2.76-4.29,3.18-6.62L13.08,3.28z M9.9,15.5l-1.4-1.4l5.6-5.6l1.4,1.4L9.9,15.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M13.08,3.28C10.75,3.7,8.29,4.62,6.46,6.46s-2.76,4.29-3.18,6.62l7.63,7.63c2.34-0.41,4.79-1.34,6.62-3.18 s2.76-4.29,3.18-6.62L13.08,3.28z M9.9,15.5l-1.4-1.4l5.6-5.6l1.4,1.4L9.9,15.5z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20.98,8.38c0.08-2.42-0.32-4.34-0.67-4.69s-2.28-0.76-4.69-0.67L20.98,8.38z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20.98,8.38c0.08-2.42-0.32-4.34-0.67-4.69s-2.28-0.76-4.69-0.67L20.98,8.38z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_sports_football = ic_sports_football; \ No newline at end of file diff --git a/dist/md/ic_sports_football_outline.js b/dist/md/ic_sports_football_outline.js new file mode 100644 index 000000000..1c82b9bf8 --- /dev/null +++ b/dist/md/ic_sports_football_outline.js @@ -0,0 +1,75 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sports_football_outline = void 0; +var ic_sports_football_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M20.31,3.69C19.99,3.36,18.37,3,16.26,3c-3.03,0-7.09,0.75-9.8,3.46C1.87,11.05,2.9,19.52,3.69,20.31 C4.01,20.64,5.63,21,7.74,21c3.03,0,7.09-0.75,9.8-3.46C22.13,12.95,21.1,4.48,20.31,3.69z M7.74,19c-1.14,0-2.02-0.12-2.53-0.23 c-0.18-0.79-0.3-2.21-0.17-3.83l4.01,4.01C8.53,18.99,8.08,19,7.74,19z M16.13,16.13c-1.33,1.33-3.06,2.05-4.66,2.44l-6.04-6.04 c0.42-1.68,1.16-3.37,2.45-4.65c1.32-1.32,3.05-2.04,4.64-2.43l6.05,6.05C18.15,13.17,17.4,14.85,16.13,16.13z M18.96,9.09 l-4.03-4.03C15.45,5.01,15.91,5,16.26,5c1.14,0,2.02,0.12,2.53,0.23C18.97,6.02,19.09,7.45,18.96,9.09z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20.31,3.69C19.99,3.36,18.37,3,16.26,3c-3.03,0-7.09,0.75-9.8,3.46C1.87,11.05,2.9,19.52,3.69,20.31 C4.01,20.64,5.63,21,7.74,21c3.03,0,7.09-0.75,9.8-3.46C22.13,12.95,21.1,4.48,20.31,3.69z M7.74,19c-1.14,0-2.02-0.12-2.53-0.23 c-0.18-0.79-0.3-2.21-0.17-3.83l4.01,4.01C8.53,18.99,8.08,19,7.74,19z M16.13,16.13c-1.33,1.33-3.06,2.05-4.66,2.44l-6.04-6.04 c0.42-1.68,1.16-3.37,2.45-4.65c1.32-1.32,3.05-2.04,4.64-2.43l6.05,6.05C18.15,13.17,17.4,14.85,16.13,16.13z M18.96,9.09 l-4.03-4.03C15.45,5.01,15.91,5,16.26,5c1.14,0,2.02,0.12,2.53,0.23C18.97,6.02,19.09,7.45,18.96,9.09z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "1.98", + "transform": "matrix(0.7071 -0.7071 0.7071 0.7071 -4.9706 12.0001)", + "width": "7.92", + "x": "8.04", + "y": "11.01" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "1.98", + "transform": "matrix(0.7071 -0.7071 0.7071 0.7071 -4.9706 12.0001)", + "width": "7.92", + "x": "8.04", + "y": "11.01" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_sports_football_outline = ic_sports_football_outline; \ No newline at end of file diff --git a/dist/md/ic_sports_football_twotone.js b/dist/md/ic_sports_football_twotone.js new file mode 100644 index 000000000..cd6398630 --- /dev/null +++ b/dist/md/ic_sports_football_twotone.js @@ -0,0 +1,117 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sports_football_twotone = void 0; +var ic_sports_football_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M16.26,5c-0.35,0-0.8,0.01-1.33,0.06l4.03,4.03c0.14-1.63,0.01-3.07-0.17-3.86C18.28,5.12,17.4,5,16.26,5z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M16.26,5c-0.35,0-0.8,0.01-1.33,0.06l4.03,4.03c0.14-1.63,0.01-3.07-0.17-3.86C18.28,5.12,17.4,5,16.26,5z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M5.21,18.77C5.72,18.88,6.6,19,7.74,19c0.34,0,0.79-0.01,1.3-0.05l-4.01-4.01 C4.91,16.56,5.03,17.98,5.21,18.77z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M5.21,18.77C5.72,18.88,6.6,19,7.74,19c0.34,0,0.79-0.01,1.3-0.05l-4.01-4.01 C4.91,16.56,5.03,17.98,5.21,18.77z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M7.87,7.87c-1.28,1.28-2.03,2.97-2.45,4.65l6.04,6.04c1.6-0.39,3.33-1.11,4.66-2.44 c1.28-1.28,2.03-2.95,2.44-4.63l-6.05-6.05C10.92,5.83,9.2,6.55,7.87,7.87z M15.5,9.9l-5.6,5.6l-1.4-1.4l5.6-5.6L15.5,9.9z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M7.87,7.87c-1.28,1.28-2.03,2.97-2.45,4.65l6.04,6.04c1.6-0.39,3.33-1.11,4.66-2.44 c1.28-1.28,2.03-2.95,2.44-4.63l-6.05-6.05C10.92,5.83,9.2,6.55,7.87,7.87z M15.5,9.9l-5.6,5.6l-1.4-1.4l5.6-5.6L15.5,9.9z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20.31,3.69C19.99,3.36,18.37,3,16.26,3c-3.03,0-7.09,0.75-9.8,3.46C1.87,11.05,2.9,19.52,3.69,20.31 C4.01,20.64,5.63,21,7.74,21c3.03,0,7.09-0.75,9.8-3.46C22.13,12.95,21.1,4.48,20.31,3.69z M7.74,19c-1.14,0-2.02-0.12-2.53-0.23 c-0.18-0.79-0.3-2.21-0.17-3.83l4.01,4.01C8.53,18.99,8.08,19,7.74,19z M16.13,16.13c-1.33,1.33-3.06,2.05-4.66,2.44l-6.04-6.04 c0.42-1.68,1.16-3.37,2.45-4.65c1.32-1.32,3.05-2.04,4.64-2.43l6.05,6.05C18.15,13.17,17.4,14.85,16.13,16.13z M18.96,9.09 l-4.03-4.03C15.45,5.01,15.91,5,16.26,5c1.14,0,2.02,0.12,2.53,0.23C18.97,6.02,19.09,7.45,18.96,9.09z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20.31,3.69C19.99,3.36,18.37,3,16.26,3c-3.03,0-7.09,0.75-9.8,3.46C1.87,11.05,2.9,19.52,3.69,20.31 C4.01,20.64,5.63,21,7.74,21c3.03,0,7.09-0.75,9.8-3.46C22.13,12.95,21.1,4.48,20.31,3.69z M7.74,19c-1.14,0-2.02-0.12-2.53-0.23 c-0.18-0.79-0.3-2.21-0.17-3.83l4.01,4.01C8.53,18.99,8.08,19,7.74,19z M16.13,16.13c-1.33,1.33-3.06,2.05-4.66,2.44l-6.04-6.04 c0.42-1.68,1.16-3.37,2.45-4.65c1.32-1.32,3.05-2.04,4.64-2.43l6.05,6.05C18.15,13.17,17.4,14.85,16.13,16.13z M18.96,9.09 l-4.03-4.03C15.45,5.01,15.91,5,16.26,5c1.14,0,2.02,0.12,2.53,0.23C18.97,6.02,19.09,7.45,18.96,9.09z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "1.98", + "transform": "matrix(0.7071 -0.7071 0.7071 0.7071 -4.9706 12.0001)", + "width": "7.92", + "x": "8.04", + "y": "11.01" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "1.98", + "transform": "matrix(0.7071 -0.7071 0.7071 0.7071 -4.9706 12.0001)", + "width": "7.92", + "x": "8.04", + "y": "11.01" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_sports_football_twotone = ic_sports_football_twotone; \ No newline at end of file diff --git a/dist/md/ic_sports_golf.js b/dist/md/ic_sports_golf.js new file mode 100644 index 000000000..7c3c00668 --- /dev/null +++ b/dist/md/ic_sports_golf.js @@ -0,0 +1,115 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sports_golf = void 0; +var ic_sports_golf = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,16c3.87,0,7-3.13,7-7c0-3.87-3.13-7-7-7S5,5.13,5,9C5,12.87,8.13,16,12,16z M12,4c2.76,0,5,2.24,5,5s-2.24,5-5,5 s-5-2.24-5-5S9.24,4,12,4z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,16c3.87,0,7-3.13,7-7c0-3.87-3.13-7-7-7S5,5.13,5,9C5,12.87,8.13,16,12,16z M12,4c2.76,0,5,2.24,5,5s-2.24,5-5,5 s-5-2.24-5-5S9.24,4,12,4z" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "10", + "cy": "8", + "r": "1" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "10", + "cy": "8", + "r": "1" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "14", + "cy": "8", + "r": "1" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "14", + "cy": "8", + "r": "1" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "6", + "r": "1" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "6", + "r": "1" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M7,19h2c1.1,0,2,0.9,2,2v1h2v-1c0-1.1,0.9-2,2-2h2v-2H7V19z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M7,19h2c1.1,0,2,0.9,2,2v1h2v-1c0-1.1,0.9-2,2-2h2v-2H7V19z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_sports_golf = ic_sports_golf; \ No newline at end of file diff --git a/dist/md/ic_sports_golf_outline.js b/dist/md/ic_sports_golf_outline.js new file mode 100644 index 000000000..f3fa6b694 --- /dev/null +++ b/dist/md/ic_sports_golf_outline.js @@ -0,0 +1,115 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sports_golf_outline = void 0; +var ic_sports_golf_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,16c3.87,0,7-3.13,7-7c0-3.87-3.13-7-7-7C8.13,2,5,5.13,5,9C5,12.87,8.13,16,12,16z M12,4c2.76,0,5,2.24,5,5 s-2.24,5-5,5s-5-2.24-5-5S9.24,4,12,4z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,16c3.87,0,7-3.13,7-7c0-3.87-3.13-7-7-7C8.13,2,5,5.13,5,9C5,12.87,8.13,16,12,16z M12,4c2.76,0,5,2.24,5,5 s-2.24,5-5,5s-5-2.24-5-5S9.24,4,12,4z" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "10", + "cy": "8", + "r": "1" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "10", + "cy": "8", + "r": "1" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "14", + "cy": "8", + "r": "1" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "14", + "cy": "8", + "r": "1" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "6", + "r": "1" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "6", + "r": "1" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M7,19h2c1.1,0,2,0.9,2,2v1h2v-1c0-1.1,0.9-2,2-2h2v-2H7V19z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M7,19h2c1.1,0,2,0.9,2,2v1h2v-1c0-1.1,0.9-2,2-2h2v-2H7V19z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_sports_golf_outline = ic_sports_golf_outline; \ No newline at end of file diff --git a/dist/md/ic_sports_golf_twotone.js b/dist/md/ic_sports_golf_twotone.js new file mode 100644 index 000000000..6a457cc05 --- /dev/null +++ b/dist/md/ic_sports_golf_twotone.js @@ -0,0 +1,129 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sports_golf_twotone = void 0; +var ic_sports_golf_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,14c2.76,0,5-2.24,5-5s-2.24-5-5-5S7,6.24,7,9S9.24,14,12,14z M14,7c0.55,0,1,0.45,1,1 c0,0.55-0.45,1-1,1s-1-0.45-1-1C13,7.45,13.45,7,14,7z M12,5c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1s-1-0.45-1-1 C11,5.45,11.45,5,12,5z M10,7c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1S9,8.55,9,8C9,7.45,9.45,7,10,7z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,14c2.76,0,5-2.24,5-5s-2.24-5-5-5S7,6.24,7,9S9.24,14,12,14z M14,7c0.55,0,1,0.45,1,1 c0,0.55-0.45,1-1,1s-1-0.45-1-1C13,7.45,13.45,7,14,7z M12,5c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1s-1-0.45-1-1 C11,5.45,11.45,5,12,5z M10,7c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1S9,8.55,9,8C9,7.45,9.45,7,10,7z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M12,16c3.87,0,7-3.13,7-7c0-3.87-3.13-7-7-7C8.13,2,5,5.13,5,9C5,12.87,8.13,16,12,16z M12,4c2.76,0,5,2.24,5,5 s-2.24,5-5,5s-5-2.24-5-5S9.24,4,12,4z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,16c3.87,0,7-3.13,7-7c0-3.87-3.13-7-7-7C8.13,2,5,5.13,5,9C5,12.87,8.13,16,12,16z M12,4c2.76,0,5,2.24,5,5 s-2.24,5-5,5s-5-2.24-5-5S9.24,4,12,4z" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "10", + "cy": "8", + "r": "1" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "10", + "cy": "8", + "r": "1" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "14", + "cy": "8", + "r": "1" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "14", + "cy": "8", + "r": "1" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "6", + "r": "1" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "6", + "r": "1" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M7,19h2c1.1,0,2,0.9,2,2v1h2v-1c0-1.1,0.9-2,2-2h2v-2H7V19z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M7,19h2c1.1,0,2,0.9,2,2v1h2v-1c0-1.1,0.9-2,2-2h2v-2H7V19z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_sports_golf_twotone = ic_sports_golf_twotone; \ No newline at end of file diff --git a/dist/md/ic_sports_handball.js b/dist/md/ic_sports_handball.js new file mode 100644 index 000000000..061674359 --- /dev/null +++ b/dist/md/ic_sports_handball.js @@ -0,0 +1,79 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sports_handball = void 0; +var ic_sports_handball = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M14.27,6C13.72,6.95,14.05,8.18,15,8.73c0.95,0.55,2.18,0.22,2.73-0.73c0.55-0.95,0.22-2.18-0.73-2.73 C16.05,4.72,14.82,5.05,14.27,6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14.27,6C13.72,6.95,14.05,8.18,15,8.73c0.95,0.55,2.18,0.22,2.73-0.73c0.55-0.95,0.22-2.18-0.73-2.73 C16.05,4.72,14.82,5.05,14.27,6z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M15.84,10.41c0,0-1.63-0.94-2.6-1.5c-2.38-1.38-3.2-4.44-1.82-6.82l-1.73-1C8.1,3.83,8.6,7.21,10.66,9.4l-5.15,8.92 l1.73,1l1.5-2.6l1.73,1l-3,5.2l1.73,1l6.29-10.89c1.14,1.55,1.33,3.69,0.31,5.46l1.73,1C19.13,16.74,18.81,12.91,15.84,10.41z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15.84,10.41c0,0-1.63-0.94-2.6-1.5c-2.38-1.38-3.2-4.44-1.82-6.82l-1.73-1C8.1,3.83,8.6,7.21,10.66,9.4l-5.15,8.92 l1.73,1l1.5-2.6l1.73,1l-3,5.2l1.73,1l6.29-10.89c1.14,1.55,1.33,3.69,0.31,5.46l1.73,1C19.13,16.74,18.81,12.91,15.84,10.41z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M12.75,3.8c0.72,0.41,1.63,0.17,2.05-0.55c0.41-0.72,0.17-1.63-0.55-2.05c-0.72-0.41-1.63-0.17-2.05,0.55 C11.79,2.47,12.03,3.39,12.75,3.8z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12.75,3.8c0.72,0.41,1.63,0.17,2.05-0.55c0.41-0.72,0.17-1.63-0.55-2.05c-0.72-0.41-1.63-0.17-2.05,0.55 C11.79,2.47,12.03,3.39,12.75,3.8z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_sports_handball = ic_sports_handball; \ No newline at end of file diff --git a/dist/md/ic_sports_handball_outline.js b/dist/md/ic_sports_handball_outline.js new file mode 100644 index 000000000..b38758163 --- /dev/null +++ b/dist/md/ic_sports_handball_outline.js @@ -0,0 +1,79 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sports_handball_outline = void 0; +var ic_sports_handball_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M14.27,6C13.72,6.95,14.05,8.18,15,8.73c0.95,0.55,2.18,0.22,2.73-0.73c0.55-0.95,0.22-2.18-0.73-2.73 C16.05,4.72,14.82,5.05,14.27,6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14.27,6C13.72,6.95,14.05,8.18,15,8.73c0.95,0.55,2.18,0.22,2.73-0.73c0.55-0.95,0.22-2.18-0.73-2.73 C16.05,4.72,14.82,5.05,14.27,6z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M15.84,10.41c0,0-1.63-0.94-2.6-1.5c-2.38-1.38-3.2-4.44-1.82-6.82l-1.73-1C8.1,3.83,8.6,7.21,10.66,9.4l-5.15,8.92 l1.73,1l1.5-2.6l1.73,1l-3,5.2l1.73,1l6.29-10.89c1.14,1.55,1.33,3.69,0.31,5.46l1.73,1C19.13,16.74,18.81,12.91,15.84,10.41z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15.84,10.41c0,0-1.63-0.94-2.6-1.5c-2.38-1.38-3.2-4.44-1.82-6.82l-1.73-1C8.1,3.83,8.6,7.21,10.66,9.4l-5.15,8.92 l1.73,1l1.5-2.6l1.73,1l-3,5.2l1.73,1l6.29-10.89c1.14,1.55,1.33,3.69,0.31,5.46l1.73,1C19.13,16.74,18.81,12.91,15.84,10.41z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M12.75,3.8c0.72,0.41,1.63,0.17,2.05-0.55c0.41-0.72,0.17-1.63-0.55-2.05c-0.72-0.41-1.63-0.17-2.05,0.55 C11.79,2.47,12.03,3.39,12.75,3.8z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12.75,3.8c0.72,0.41,1.63,0.17,2.05-0.55c0.41-0.72,0.17-1.63-0.55-2.05c-0.72-0.41-1.63-0.17-2.05,0.55 C11.79,2.47,12.03,3.39,12.75,3.8z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_sports_handball_outline = ic_sports_handball_outline; \ No newline at end of file diff --git a/dist/md/ic_sports_handball_twotone.js b/dist/md/ic_sports_handball_twotone.js new file mode 100644 index 000000000..b187c2a7d --- /dev/null +++ b/dist/md/ic_sports_handball_twotone.js @@ -0,0 +1,79 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sports_handball_twotone = void 0; +var ic_sports_handball_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M14.27,6C13.72,6.95,14.05,8.18,15,8.73c0.95,0.55,2.18,0.22,2.73-0.73c0.55-0.95,0.22-2.18-0.73-2.73 C16.05,4.72,14.82,5.05,14.27,6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14.27,6C13.72,6.95,14.05,8.18,15,8.73c0.95,0.55,2.18,0.22,2.73-0.73c0.55-0.95,0.22-2.18-0.73-2.73 C16.05,4.72,14.82,5.05,14.27,6z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M15.84,10.41c0,0-1.63-0.94-2.6-1.5c-2.38-1.38-3.2-4.44-1.82-6.82l-1.73-1C8.1,3.83,8.6,7.21,10.66,9.4l-5.15,8.92 l1.73,1l1.5-2.6l1.73,1l-3,5.2l1.73,1l6.29-10.89c1.14,1.55,1.33,3.69,0.31,5.46l1.73,1C19.13,16.74,18.81,12.91,15.84,10.41z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15.84,10.41c0,0-1.63-0.94-2.6-1.5c-2.38-1.38-3.2-4.44-1.82-6.82l-1.73-1C8.1,3.83,8.6,7.21,10.66,9.4l-5.15,8.92 l1.73,1l1.5-2.6l1.73,1l-3,5.2l1.73,1l6.29-10.89c1.14,1.55,1.33,3.69,0.31,5.46l1.73,1C19.13,16.74,18.81,12.91,15.84,10.41z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M12.75,3.8c0.72,0.41,1.63,0.17,2.05-0.55c0.41-0.72,0.17-1.63-0.55-2.05c-0.72-0.41-1.63-0.17-2.05,0.55 C11.79,2.47,12.03,3.39,12.75,3.8z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12.75,3.8c0.72,0.41,1.63,0.17,2.05-0.55c0.41-0.72,0.17-1.63-0.55-2.05c-0.72-0.41-1.63-0.17-2.05,0.55 C11.79,2.47,12.03,3.39,12.75,3.8z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_sports_handball_twotone = ic_sports_handball_twotone; \ No newline at end of file diff --git a/dist/md/ic_sports_hockey.js b/dist/md/ic_sports_hockey.js new file mode 100644 index 000000000..7444ab15e --- /dev/null +++ b/dist/md/ic_sports_hockey.js @@ -0,0 +1,99 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sports_hockey = void 0; +var ic_sports_hockey = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M2,17v3l2,0v-4H3C2.45,16,2,16.45,2,17z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M2,17v3l2,0v-4H3C2.45,16,2,16.45,2,17z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M9,16H5v4l4.69-0.01c0.38,0,0.72-0.21,0.89-0.55l0.87-1.9l-1.59-3.48L9,16z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M9,16H5v4l4.69-0.01c0.38,0,0.72-0.21,0.89-0.55l0.87-1.9l-1.59-3.48L9,16z" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M21.71,16.29C21.53,16.11,21.28,16,21,16h-1v4l2,0v-3C22,16.72,21.89,16.47,21.71,16.29z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21.71,16.29C21.53,16.11,21.28,16,21,16h-1v4l2,0v-3C22,16.72,21.89,16.47,21.71,16.29z" + }, + "children": [] + }] + }] + }] + }, { + "name": "path", + "attribs": { + "d": "M13.6,12.84L17.65,4H14.3l-1.76,3.97l-0.49,1.1L12,9.21L9.7,4H6.35l4.05,8.84l1.52,3.32L12,16.34l1.42,3.1 c0.17,0.34,0.51,0.55,0.89,0.55L19,20v-4h-4L13.6,12.84z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M13.6,12.84L17.65,4H14.3l-1.76,3.97l-0.49,1.1L12,9.21L9.7,4H6.35l4.05,8.84l1.52,3.32L12,16.34l1.42,3.1 c0.17,0.34,0.51,0.55,0.89,0.55L19,20v-4h-4L13.6,12.84z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_sports_hockey = ic_sports_hockey; \ No newline at end of file diff --git a/dist/md/ic_sports_hockey_outline.js b/dist/md/ic_sports_hockey_outline.js new file mode 100644 index 000000000..3e0e0f40f --- /dev/null +++ b/dist/md/ic_sports_hockey_outline.js @@ -0,0 +1,99 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sports_hockey_outline = void 0; +var ic_sports_hockey_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M2,17v3l2,0v-4H3C2.45,16,2,16.45,2,17z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M2,17v3l2,0v-4H3C2.45,16,2,16.45,2,17z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M9,16H5v4l4.69-0.01c0.38,0,0.72-0.21,0.89-0.55l0.87-1.9l-1.59-3.48L9,16z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M9,16H5v4l4.69-0.01c0.38,0,0.72-0.21,0.89-0.55l0.87-1.9l-1.59-3.48L9,16z" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M21.71,16.29C21.53,16.11,21.28,16,21,16h-1v4l2,0v-3C22,16.72,21.89,16.47,21.71,16.29z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21.71,16.29C21.53,16.11,21.28,16,21,16h-1v4l2,0v-3C22,16.72,21.89,16.47,21.71,16.29z" + }, + "children": [] + }] + }] + }] + }, { + "name": "path", + "attribs": { + "d": "M13.6,12.84L17.65,4H14.3l-1.76,3.97l-0.49,1.1L12,9.21L9.7,4H6.35l4.05,8.84l1.52,3.32L12,16.34l1.42,3.1 c0.17,0.34,0.51,0.55,0.89,0.55L19,20v-4h-4L13.6,12.84z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M13.6,12.84L17.65,4H14.3l-1.76,3.97l-0.49,1.1L12,9.21L9.7,4H6.35l4.05,8.84l1.52,3.32L12,16.34l1.42,3.1 c0.17,0.34,0.51,0.55,0.89,0.55L19,20v-4h-4L13.6,12.84z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_sports_hockey_outline = ic_sports_hockey_outline; \ No newline at end of file diff --git a/dist/md/ic_sports_hockey_twotone.js b/dist/md/ic_sports_hockey_twotone.js new file mode 100644 index 000000000..dd72ea6ec --- /dev/null +++ b/dist/md/ic_sports_hockey_twotone.js @@ -0,0 +1,99 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sports_hockey_twotone = void 0; +var ic_sports_hockey_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M2,17v3l2,0v-4H3C2.45,16,2,16.45,2,17z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M2,17v3l2,0v-4H3C2.45,16,2,16.45,2,17z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M9,16H5v4l4.69-0.01c0.38,0,0.72-0.21,0.89-0.55l0.87-1.9l-1.59-3.48L9,16z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M9,16H5v4l4.69-0.01c0.38,0,0.72-0.21,0.89-0.55l0.87-1.9l-1.59-3.48L9,16z" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M21.71,16.29C21.53,16.11,21.28,16,21,16h-1v4l2,0v-3C22,16.72,21.89,16.47,21.71,16.29z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21.71,16.29C21.53,16.11,21.28,16,21,16h-1v4l2,0v-3C22,16.72,21.89,16.47,21.71,16.29z" + }, + "children": [] + }] + }] + }] + }, { + "name": "path", + "attribs": { + "d": "M13.6,12.84L17.65,4H14.3l-1.76,3.97l-0.49,1.1L12,9.21L9.7,4H6.35l4.05,8.84l1.52,3.32L12,16.34l1.42,3.1 c0.17,0.34,0.51,0.55,0.89,0.55L19,20v-4h-4L13.6,12.84z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M13.6,12.84L17.65,4H14.3l-1.76,3.97l-0.49,1.1L12,9.21L9.7,4H6.35l4.05,8.84l1.52,3.32L12,16.34l1.42,3.1 c0.17,0.34,0.51,0.55,0.89,0.55L19,20v-4h-4L13.6,12.84z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_sports_hockey_twotone = ic_sports_hockey_twotone; \ No newline at end of file diff --git a/dist/md/ic_sports_kabaddi.js b/dist/md/ic_sports_kabaddi.js new file mode 100644 index 000000000..f7d75af6d --- /dev/null +++ b/dist/md/ic_sports_kabaddi.js @@ -0,0 +1,95 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sports_kabaddi = void 0; +var ic_sports_kabaddi = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "cx": "16.5", + "cy": "2.38", + "r": "2" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "16.5", + "cy": "2.38", + "r": "2" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M24,11.88v-4.7l-5.05-2.14c-0.97-0.41-2.09-0.06-2.65,0.84l0,0l-1,1.6c-0.67,1.18-1.91,2.06-3.41,2.32l0.06,0.06 c0.69,0.69,1.52,1.07,2.46,1.17c0.8-0.42,1.52-0.98,2.09-1.64l0.6,3l-1.16,1.1L15,14.38v0.76v6.74h2v-6l2.1-2l1.8,8H23l-2.18-11 l-0.62-3.1l1.8,0.7v3.4H24z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M24,11.88v-4.7l-5.05-2.14c-0.97-0.41-2.09-0.06-2.65,0.84l0,0l-1,1.6c-0.67,1.18-1.91,2.06-3.41,2.32l0.06,0.06 c0.69,0.69,1.52,1.07,2.46,1.17c0.8-0.42,1.52-0.98,2.09-1.64l0.6,3l-1.16,1.1L15,14.38v0.76v6.74h2v-6l2.1-2l1.8,8H23l-2.18-11 l-0.62-3.1l1.8,0.7v3.4H24z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M10.29,8.09c0.22,0.15,0.47,0.24,0.72,0.29c0.13,0.02,0.25,0.04,0.38,0.04s0.26-0.01,0.38-0.04 c0.13-0.02,0.25-0.06,0.37-0.11c0.24-0.1,0.47-0.24,0.66-0.44c0.49-0.49,0.67-1.17,0.55-1.8C13.28,5.66,13.1,5.29,12.8,5 c-0.19-0.19-0.42-0.34-0.66-0.44c-0.12-0.05-0.24-0.09-0.37-0.11s-0.25-0.04-0.38-0.04c-0.12,0-0.23,0.01-0.35,0.03 c-0.14,0.02-0.28,0.06-0.41,0.11C10.4,4.66,10.17,4.81,9.98,5C9.68,5.29,9.5,5.66,9.43,6.03c-0.12,0.63,0.06,1.31,0.55,1.8 C10.07,7.93,10.18,8.01,10.29,8.09z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M10.29,8.09c0.22,0.15,0.47,0.24,0.72,0.29c0.13,0.02,0.25,0.04,0.38,0.04s0.26-0.01,0.38-0.04 c0.13-0.02,0.25-0.06,0.37-0.11c0.24-0.1,0.47-0.24,0.66-0.44c0.49-0.49,0.67-1.17,0.55-1.8C13.28,5.66,13.1,5.29,12.8,5 c-0.19-0.19-0.42-0.34-0.66-0.44c-0.12-0.05-0.24-0.09-0.37-0.11s-0.25-0.04-0.38-0.04c-0.12,0-0.23,0.01-0.35,0.03 c-0.14,0.02-0.28,0.06-0.41,0.11C10.4,4.66,10.17,4.81,9.98,5C9.68,5.29,9.5,5.66,9.43,6.03c-0.12,0.63,0.06,1.31,0.55,1.8 C10.07,7.93,10.18,8.01,10.29,8.09z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M11.24,10.56l-2-2c-0.1-0.1-0.2-0.18-0.31-0.26C8.71,8.16,8.46,8.06,8.21,8.02C8.08,7.99,7.96,7.98,7.83,7.98 c-0.51,0-1.02,0.2-1.41,0.59l-3.34,3.34c-0.41,0.41-0.62,0.98-0.58,1.54C2.5,13.63,2.54,13.82,2.61,14l1.07,2.95l-3.63,3.63 L1.46,22l4.24-4.24v-2.22L7,16.75v5.13h2v-6l-2.12-2.12l2.36-2.36l0.71,0.71l0,0c1.29,1.26,2.97,2.04,5.03,2.04l-0.14-2.07 C13.34,12.06,12.14,11.46,11.24,10.56z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M11.24,10.56l-2-2c-0.1-0.1-0.2-0.18-0.31-0.26C8.71,8.16,8.46,8.06,8.21,8.02C8.08,7.99,7.96,7.98,7.83,7.98 c-0.51,0-1.02,0.2-1.41,0.59l-3.34,3.34c-0.41,0.41-0.62,0.98-0.58,1.54C2.5,13.63,2.54,13.82,2.61,14l1.07,2.95l-3.63,3.63 L1.46,22l4.24-4.24v-2.22L7,16.75v5.13h2v-6l-2.12-2.12l2.36-2.36l0.71,0.71l0,0c1.29,1.26,2.97,2.04,5.03,2.04l-0.14-2.07 C13.34,12.06,12.14,11.46,11.24,10.56z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_sports_kabaddi = ic_sports_kabaddi; \ No newline at end of file diff --git a/dist/md/ic_sports_kabaddi_outline.js b/dist/md/ic_sports_kabaddi_outline.js new file mode 100644 index 000000000..18e7cc736 --- /dev/null +++ b/dist/md/ic_sports_kabaddi_outline.js @@ -0,0 +1,95 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sports_kabaddi_outline = void 0; +var ic_sports_kabaddi_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "cx": "16.5", + "cy": "2.38", + "r": "2" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "16.5", + "cy": "2.38", + "r": "2" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M24,11.88v-4.7l-5.05-2.14c-0.97-0.41-2.09-0.06-2.65,0.84l0,0l-1,1.6c-0.67,1.18-1.91,2.06-3.41,2.32l0.06,0.06 c0.69,0.69,1.52,1.07,2.46,1.17c0.8-0.42,1.52-0.98,2.09-1.64l0.6,3l-1.16,1.1L15,14.38v0.76v6.74h2v-6l2.1-2l1.8,8H23l-2.18-11 l-0.62-3.1l1.8,0.7v3.4H24z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M24,11.88v-4.7l-5.05-2.14c-0.97-0.41-2.09-0.06-2.65,0.84l0,0l-1,1.6c-0.67,1.18-1.91,2.06-3.41,2.32l0.06,0.06 c0.69,0.69,1.52,1.07,2.46,1.17c0.8-0.42,1.52-0.98,2.09-1.64l0.6,3l-1.16,1.1L15,14.38v0.76v6.74h2v-6l2.1-2l1.8,8H23l-2.18-11 l-0.62-3.1l1.8,0.7v3.4H24z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M10.29,8.09c0.22,0.15,0.47,0.24,0.72,0.29c0.13,0.02,0.25,0.04,0.38,0.04s0.26-0.01,0.38-0.04 c0.13-0.02,0.25-0.06,0.37-0.11c0.24-0.1,0.47-0.24,0.66-0.44c0.49-0.49,0.67-1.17,0.55-1.8C13.28,5.66,13.1,5.29,12.8,5 c-0.19-0.19-0.42-0.34-0.66-0.44c-0.12-0.05-0.24-0.09-0.37-0.11s-0.25-0.04-0.38-0.04c-0.12,0-0.23,0.01-0.35,0.03 c-0.14,0.02-0.28,0.06-0.41,0.11C10.4,4.66,10.17,4.81,9.98,5C9.68,5.29,9.5,5.66,9.43,6.03c-0.12,0.63,0.06,1.31,0.55,1.8 C10.07,7.93,10.18,8.01,10.29,8.09z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M10.29,8.09c0.22,0.15,0.47,0.24,0.72,0.29c0.13,0.02,0.25,0.04,0.38,0.04s0.26-0.01,0.38-0.04 c0.13-0.02,0.25-0.06,0.37-0.11c0.24-0.1,0.47-0.24,0.66-0.44c0.49-0.49,0.67-1.17,0.55-1.8C13.28,5.66,13.1,5.29,12.8,5 c-0.19-0.19-0.42-0.34-0.66-0.44c-0.12-0.05-0.24-0.09-0.37-0.11s-0.25-0.04-0.38-0.04c-0.12,0-0.23,0.01-0.35,0.03 c-0.14,0.02-0.28,0.06-0.41,0.11C10.4,4.66,10.17,4.81,9.98,5C9.68,5.29,9.5,5.66,9.43,6.03c-0.12,0.63,0.06,1.31,0.55,1.8 C10.07,7.93,10.18,8.01,10.29,8.09z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M11.24,10.56l-2-2c-0.1-0.1-0.2-0.18-0.31-0.26C8.71,8.16,8.46,8.06,8.21,8.02C8.08,7.99,7.96,7.98,7.83,7.98 c-0.51,0-1.02,0.2-1.41,0.59l-3.34,3.34c-0.41,0.41-0.62,0.98-0.58,1.54C2.5,13.63,2.54,13.82,2.61,14l1.07,2.95l-3.63,3.63 L1.46,22l4.24-4.24v-2.22L7,16.75v5.13h2v-6l-2.12-2.12l2.36-2.36l0.71,0.71l0,0c1.29,1.26,2.97,2.04,5.03,2.04l-0.14-2.07 C13.34,12.06,12.14,11.46,11.24,10.56z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M11.24,10.56l-2-2c-0.1-0.1-0.2-0.18-0.31-0.26C8.71,8.16,8.46,8.06,8.21,8.02C8.08,7.99,7.96,7.98,7.83,7.98 c-0.51,0-1.02,0.2-1.41,0.59l-3.34,3.34c-0.41,0.41-0.62,0.98-0.58,1.54C2.5,13.63,2.54,13.82,2.61,14l1.07,2.95l-3.63,3.63 L1.46,22l4.24-4.24v-2.22L7,16.75v5.13h2v-6l-2.12-2.12l2.36-2.36l0.71,0.71l0,0c1.29,1.26,2.97,2.04,5.03,2.04l-0.14-2.07 C13.34,12.06,12.14,11.46,11.24,10.56z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_sports_kabaddi_outline = ic_sports_kabaddi_outline; \ No newline at end of file diff --git a/dist/md/ic_sports_kabaddi_twotone.js b/dist/md/ic_sports_kabaddi_twotone.js new file mode 100644 index 000000000..98d6daee9 --- /dev/null +++ b/dist/md/ic_sports_kabaddi_twotone.js @@ -0,0 +1,95 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sports_kabaddi_twotone = void 0; +var ic_sports_kabaddi_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "cx": "16.5", + "cy": "2.38", + "r": "2" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "16.5", + "cy": "2.38", + "r": "2" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M24,11.88v-4.7l-5.05-2.14c-0.97-0.41-2.09-0.06-2.65,0.84l0,0l-1,1.6c-0.67,1.18-1.91,2.06-3.41,2.32l0.06,0.06 c0.69,0.69,1.52,1.07,2.46,1.17c0.8-0.42,1.52-0.98,2.09-1.64l0.6,3l-1.16,1.1L15,14.38v0.76v6.74h2v-6l2.1-2l1.8,8H23l-2.18-11 l-0.62-3.1l1.8,0.7v3.4H24z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M24,11.88v-4.7l-5.05-2.14c-0.97-0.41-2.09-0.06-2.65,0.84l0,0l-1,1.6c-0.67,1.18-1.91,2.06-3.41,2.32l0.06,0.06 c0.69,0.69,1.52,1.07,2.46,1.17c0.8-0.42,1.52-0.98,2.09-1.64l0.6,3l-1.16,1.1L15,14.38v0.76v6.74h2v-6l2.1-2l1.8,8H23l-2.18-11 l-0.62-3.1l1.8,0.7v3.4H24z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M10.29,8.09c0.22,0.15,0.47,0.24,0.72,0.29c0.13,0.02,0.25,0.04,0.38,0.04s0.26-0.01,0.38-0.04 c0.13-0.02,0.25-0.06,0.37-0.11c0.24-0.1,0.47-0.24,0.66-0.44c0.49-0.49,0.67-1.17,0.55-1.8C13.28,5.66,13.1,5.29,12.8,5 c-0.19-0.19-0.42-0.34-0.66-0.44c-0.12-0.05-0.24-0.09-0.37-0.11s-0.25-0.04-0.38-0.04c-0.12,0-0.23,0.01-0.35,0.03 c-0.14,0.02-0.28,0.06-0.41,0.11C10.4,4.66,10.17,4.81,9.98,5C9.68,5.29,9.5,5.66,9.43,6.03c-0.12,0.63,0.06,1.31,0.55,1.8 C10.07,7.93,10.18,8.01,10.29,8.09z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M10.29,8.09c0.22,0.15,0.47,0.24,0.72,0.29c0.13,0.02,0.25,0.04,0.38,0.04s0.26-0.01,0.38-0.04 c0.13-0.02,0.25-0.06,0.37-0.11c0.24-0.1,0.47-0.24,0.66-0.44c0.49-0.49,0.67-1.17,0.55-1.8C13.28,5.66,13.1,5.29,12.8,5 c-0.19-0.19-0.42-0.34-0.66-0.44c-0.12-0.05-0.24-0.09-0.37-0.11s-0.25-0.04-0.38-0.04c-0.12,0-0.23,0.01-0.35,0.03 c-0.14,0.02-0.28,0.06-0.41,0.11C10.4,4.66,10.17,4.81,9.98,5C9.68,5.29,9.5,5.66,9.43,6.03c-0.12,0.63,0.06,1.31,0.55,1.8 C10.07,7.93,10.18,8.01,10.29,8.09z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M11.24,10.56l-2-2c-0.1-0.1-0.2-0.18-0.31-0.26C8.71,8.16,8.46,8.06,8.21,8.02C8.08,7.99,7.96,7.98,7.83,7.98 c-0.51,0-1.02,0.2-1.41,0.59l-3.34,3.34c-0.41,0.41-0.62,0.98-0.58,1.54C2.5,13.63,2.54,13.82,2.61,14l1.07,2.95l-3.63,3.63 L1.46,22l4.24-4.24v-2.22L7,16.75v5.13h2v-6l-2.12-2.12l2.36-2.36l0.71,0.71l0,0c1.29,1.26,2.97,2.04,5.03,2.04l-0.14-2.07 C13.34,12.06,12.14,11.46,11.24,10.56z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M11.24,10.56l-2-2c-0.1-0.1-0.2-0.18-0.31-0.26C8.71,8.16,8.46,8.06,8.21,8.02C8.08,7.99,7.96,7.98,7.83,7.98 c-0.51,0-1.02,0.2-1.41,0.59l-3.34,3.34c-0.41,0.41-0.62,0.98-0.58,1.54C2.5,13.63,2.54,13.82,2.61,14l1.07,2.95l-3.63,3.63 L1.46,22l4.24-4.24v-2.22L7,16.75v5.13h2v-6l-2.12-2.12l2.36-2.36l0.71,0.71l0,0c1.29,1.26,2.97,2.04,5.03,2.04l-0.14-2.07 C13.34,12.06,12.14,11.46,11.24,10.56z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_sports_kabaddi_twotone = ic_sports_kabaddi_twotone; \ No newline at end of file diff --git a/dist/md/ic_sports_mma.js b/dist/md/ic_sports_mma.js new file mode 100644 index 000000000..2cae32dd6 --- /dev/null +++ b/dist/md/ic_sports_mma.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sports_mma = void 0; +var ic_sports_mma = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M7,20c0,0.55,0.45,1,1,1h8c0.55,0,1-0.45,1-1v-3H7V20z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M7,20c0,0.55,0.45,1,1,1h8c0.55,0,1-0.45,1-1v-3H7V20z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M18,7c-0.55,0-1,0.45-1,1V5c0-1.1-0.9-2-2-2H7C5.9,3,5,3.9,5,5v5.8c0,0.13,0.01,0.26,0.04,0.39l0.8,4 c0.09,0.47,0.5,0.8,0.98,0.8h10.36c0.45,0,0.89-0.36,0.98-0.8l0.8-4C18.99,11.06,19,10.93,19,10.8V8C19,7.45,18.55,7,18,7z M15,10 H7V7h8V10z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18,7c-0.55,0-1,0.45-1,1V5c0-1.1-0.9-2-2-2H7C5.9,3,5,3.9,5,5v5.8c0,0.13,0.01,0.26,0.04,0.39l0.8,4 c0.09,0.47,0.5,0.8,0.98,0.8h10.36c0.45,0,0.89-0.36,0.98-0.8l0.8-4C18.99,11.06,19,10.93,19,10.8V8C19,7.45,18.55,7,18,7z M15,10 H7V7h8V10z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_sports_mma = ic_sports_mma; \ No newline at end of file diff --git a/dist/md/ic_sports_mma_outline.js b/dist/md/ic_sports_mma_outline.js new file mode 100644 index 000000000..545e1b752 --- /dev/null +++ b/dist/md/ic_sports_mma_outline.js @@ -0,0 +1,85 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sports_mma_outline = void 0; +var ic_sports_mma_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M7,20c0,0.55,0.45,1,1,1h8c0.55,0,1-0.45,1-1v-3H7V20z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M7,20c0,0.55,0.45,1,1,1h8c0.55,0,1-0.45,1-1v-3H7V20z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M18,7c-0.55,0-1,0.45-1,1V5c0-1.1-0.9-2-2-2H7C5.9,3,5,3.9,5,5v5.8c0,0.13,0.01,0.26,0.04,0.39l0.8,4 c0.09,0.47,0.5,0.8,0.98,0.8H17c0.55,0,1.09-0.44,1.2-0.98l0.77-3.83C18.99,11.06,19,10.93,19,10.8V9V8C19,7.45,18.55,7,18,7z M17,10.6c0,0.13-0.64,3.4-0.64,3.4H7.64c0,0-0.64-3.26-0.64-3.4V5h8v5h2V10.6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18,7c-0.55,0-1,0.45-1,1V5c0-1.1-0.9-2-2-2H7C5.9,3,5,3.9,5,5v5.8c0,0.13,0.01,0.26,0.04,0.39l0.8,4 c0.09,0.47,0.5,0.8,0.98,0.8H17c0.55,0,1.09-0.44,1.2-0.98l0.77-3.83C18.99,11.06,19,10.93,19,10.8V9V8C19,7.45,18.55,7,18,7z M17,10.6c0,0.13-0.64,3.4-0.64,3.4H7.64c0,0-0.64-3.26-0.64-3.4V5h8v5h2V10.6z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "3", + "width": "6", + "x": "8", + "y": "7" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "3", + "width": "6", + "x": "8", + "y": "7" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_sports_mma_outline = ic_sports_mma_outline; \ No newline at end of file diff --git a/dist/md/ic_sports_mma_twotone.js b/dist/md/ic_sports_mma_twotone.js new file mode 100644 index 000000000..3022a4d18 --- /dev/null +++ b/dist/md/ic_sports_mma_twotone.js @@ -0,0 +1,99 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sports_mma_twotone = void 0; +var ic_sports_mma_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M15,5H7v5.6C7,10.74,7.64,14,7.64,14h8.72c0,0,0.64-3.26,0.64-3.4V10h-2V5z M14,10H8V7h6V10z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15,5H7v5.6C7,10.74,7.64,14,7.64,14h8.72c0,0,0.64-3.26,0.64-3.4V10h-2V5z M14,10H8V7h6V10z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M7,20c0,0.55,0.45,1,1,1h8c0.55,0,1-0.45,1-1v-3H7V20z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M7,20c0,0.55,0.45,1,1,1h8c0.55,0,1-0.45,1-1v-3H7V20z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M18,7c-0.55,0-1,0.45-1,1V5c0-1.1-0.9-2-2-2H7C5.9,3,5,3.9,5,5v5.8c0,0.13,0.01,0.26,0.04,0.39l0.8,4 c0.09,0.47,0.5,0.8,0.98,0.8H17c0.55,0,1.09-0.44,1.2-0.98l0.77-3.83C18.99,11.06,19,10.93,19,10.8V9V8C19,7.45,18.55,7,18,7z M17,10.6c0,0.13-0.64,3.4-0.64,3.4H7.64c0,0-0.64-3.26-0.64-3.4V5h8v5h2V10.6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18,7c-0.55,0-1,0.45-1,1V5c0-1.1-0.9-2-2-2H7C5.9,3,5,3.9,5,5v5.8c0,0.13,0.01,0.26,0.04,0.39l0.8,4 c0.09,0.47,0.5,0.8,0.98,0.8H17c0.55,0,1.09-0.44,1.2-0.98l0.77-3.83C18.99,11.06,19,10.93,19,10.8V9V8C19,7.45,18.55,7,18,7z M17,10.6c0,0.13-0.64,3.4-0.64,3.4H7.64c0,0-0.64-3.26-0.64-3.4V5h8v5h2V10.6z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "3", + "width": "6", + "x": "8", + "y": "7" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "3", + "width": "6", + "x": "8", + "y": "7" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_sports_mma_twotone = ic_sports_mma_twotone; \ No newline at end of file diff --git a/dist/md/ic_sports_motorsports.js b/dist/md/ic_sports_motorsports.js new file mode 100644 index 000000000..dec566fd7 --- /dev/null +++ b/dist/md/ic_sports_motorsports.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sports_motorsports = void 0; +var ic_sports_motorsports = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,11.39c0-0.65-0.39-1.23-0.98-1.48L5.44,7.55c-1.48,1.68-2.32,3.7-2.8,5.45h7.75C11.28,13,12,12.28,12,11.39z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,11.39c0-0.65-0.39-1.23-0.98-1.48L5.44,7.55c-1.48,1.68-2.32,3.7-2.8,5.45h7.75C11.28,13,12,12.28,12,11.39z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M21.96,11.22c-0.41-4.41-4.56-7.49-8.98-7.2c-2.51,0.16-4.44,0.94-5.93,2.04l4.74,2.01c1.33,0.57,2.2,1.87,2.2,3.32 c0,1.99-1.62,3.61-3.61,3.61H2.21C2,16.31,2,17.2,2,17.2V18c0,1.1,0.9,2,2,2h10C18.67,20,22.41,15.99,21.96,11.22z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21.96,11.22c-0.41-4.41-4.56-7.49-8.98-7.2c-2.51,0.16-4.44,0.94-5.93,2.04l4.74,2.01c1.33,0.57,2.2,1.87,2.2,3.32 c0,1.99-1.62,3.61-3.61,3.61H2.21C2,16.31,2,17.2,2,17.2V18c0,1.1,0.9,2,2,2h10C18.67,20,22.41,15.99,21.96,11.22z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_sports_motorsports = ic_sports_motorsports; \ No newline at end of file diff --git a/dist/md/ic_sports_motorsports_outline.js b/dist/md/ic_sports_motorsports_outline.js new file mode 100644 index 000000000..a1f9b0866 --- /dev/null +++ b/dist/md/ic_sports_motorsports_outline.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sports_motorsports_outline = void 0; +var ic_sports_motorsports_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M21.96,11.22C21.57,7.01,17.76,4,13.56,4c-0.19,0-0.38,0.01-0.57,0.02C2,4.74,2,17.2,2,17.2V18c0,1.1,0.9,2,2,2h10 C18.67,20,22.41,15.99,21.96,11.22z M5.26,11.56c0.57-1.29,1.28-2.35,2.14-3.19l3.62,1.53c0.6,0.25,0.98,0.83,0.98,1.48 c0,0.89-0.72,1.61-1.61,1.61H4.72C4.87,12.53,5.04,12.05,5.26,11.56z M18.44,16.04C17.3,17.29,15.68,18,14,18H4v-0.8 c0-0.02,0.01-0.92,0.24-2.2h6.15c1.99,0,3.61-1.62,3.61-3.61c0-1.45-0.87-2.76-2.2-3.32L9.3,7.01c1.1-0.57,2.37-0.9,3.82-0.99 C13.27,6,13.42,6,13.56,6c3.31,0,6.13,2.37,6.41,5.41C20.13,13.13,19.59,14.77,18.44,16.04z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21.96,11.22C21.57,7.01,17.76,4,13.56,4c-0.19,0-0.38,0.01-0.57,0.02C2,4.74,2,17.2,2,17.2V18c0,1.1,0.9,2,2,2h10 C18.67,20,22.41,15.99,21.96,11.22z M5.26,11.56c0.57-1.29,1.28-2.35,2.14-3.19l3.62,1.53c0.6,0.25,0.98,0.83,0.98,1.48 c0,0.89-0.72,1.61-1.61,1.61H4.72C4.87,12.53,5.04,12.05,5.26,11.56z M18.44,16.04C17.3,17.29,15.68,18,14,18H4v-0.8 c0-0.02,0.01-0.92,0.24-2.2h6.15c1.99,0,3.61-1.62,3.61-3.61c0-1.45-0.87-2.76-2.2-3.32L9.3,7.01c1.1-0.57,2.37-0.9,3.82-0.99 C13.27,6,13.42,6,13.56,6c3.31,0,6.13,2.37,6.41,5.41C20.13,13.13,19.59,14.77,18.44,16.04z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_sports_motorsports_outline = ic_sports_motorsports_outline; \ No newline at end of file diff --git a/dist/md/ic_sports_motorsports_twotone.js b/dist/md/ic_sports_motorsports_twotone.js new file mode 100644 index 000000000..d39970070 --- /dev/null +++ b/dist/md/ic_sports_motorsports_twotone.js @@ -0,0 +1,69 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sports_motorsports_twotone = void 0; +var ic_sports_motorsports_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M13.56,6c-0.15,0-0.29,0-0.44,0.01c-1.45,0.1-2.72,0.43-3.82,0.99l2.5,1.06c1.33,0.57,2.2,1.87,2.2,3.32 c0,1.99-1.62,3.61-3.61,3.61H4.24C4.01,16.28,4,17.19,4,17.2V18h10c1.68,0,3.3-0.71,4.44-1.96c1.15-1.27,1.7-2.91,1.54-4.63 C19.69,8.37,16.87,6,13.56,6z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M13.56,6c-0.15,0-0.29,0-0.44,0.01c-1.45,0.1-2.72,0.43-3.82,0.99l2.5,1.06c1.33,0.57,2.2,1.87,2.2,3.32 c0,1.99-1.62,3.61-3.61,3.61H4.24C4.01,16.28,4,17.19,4,17.2V18h10c1.68,0,3.3-0.71,4.44-1.96c1.15-1.27,1.7-2.91,1.54-4.63 C19.69,8.37,16.87,6,13.56,6z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M21.96,11.22C21.57,7.01,17.76,4,13.56,4c-0.19,0-0.38,0.01-0.57,0.02C2,4.74,2,17.2,2,17.2V18c0,1.1,0.9,2,2,2h10 C18.67,20,22.41,15.99,21.96,11.22z M5.26,11.56c0.57-1.29,1.28-2.35,2.14-3.19l3.62,1.53c0.6,0.25,0.98,0.83,0.98,1.48 c0,0.89-0.72,1.61-1.61,1.61H4.72C4.87,12.53,5.04,12.05,5.26,11.56z M18.44,16.04C17.3,17.29,15.68,18,14,18H4v-0.8 c0-0.02,0.01-0.92,0.24-2.2h6.15c1.99,0,3.61-1.62,3.61-3.61c0-1.45-0.87-2.76-2.2-3.32L9.3,7.01c1.1-0.57,2.37-0.9,3.82-0.99 C13.27,6,13.42,6,13.56,6c3.31,0,6.13,2.37,6.41,5.41C20.13,13.13,19.59,14.77,18.44,16.04z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21.96,11.22C21.57,7.01,17.76,4,13.56,4c-0.19,0-0.38,0.01-0.57,0.02C2,4.74,2,17.2,2,17.2V18c0,1.1,0.9,2,2,2h10 C18.67,20,22.41,15.99,21.96,11.22z M5.26,11.56c0.57-1.29,1.28-2.35,2.14-3.19l3.62,1.53c0.6,0.25,0.98,0.83,0.98,1.48 c0,0.89-0.72,1.61-1.61,1.61H4.72C4.87,12.53,5.04,12.05,5.26,11.56z M18.44,16.04C17.3,17.29,15.68,18,14,18H4v-0.8 c0-0.02,0.01-0.92,0.24-2.2h6.15c1.99,0,3.61-1.62,3.61-3.61c0-1.45-0.87-2.76-2.2-3.32L9.3,7.01c1.1-0.57,2.37-0.9,3.82-0.99 C13.27,6,13.42,6,13.56,6c3.31,0,6.13,2.37,6.41,5.41C20.13,13.13,19.59,14.77,18.44,16.04z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_sports_motorsports_twotone = ic_sports_motorsports_twotone; \ No newline at end of file diff --git a/dist/md/ic_sports_outline.js b/dist/md/ic_sports_outline.js new file mode 100644 index 000000000..543814f02 --- /dev/null +++ b/dist/md/ic_sports_outline.js @@ -0,0 +1,87 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sports_outline = void 0; +var ic_sports_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M11.23,6C9.57,6,8.01,6.66,6.87,7.73C6.54,6.73,5.61,6,4.5,6C3.12,6,2,7.12,2,8.5C2,9.88,3.12,11,4.5,11 c0.21,0,0.41-0.03,0.61-0.08c-0.05,0.25-0.09,0.51-0.1,0.78c-0.18,3.68,2.95,6.68,6.68,6.27c2.55-0.28,4.68-2.26,5.19-4.77 c0.15-0.71,0.15-1.4,0.06-2.06c-0.09-0.6,0.38-1.13,0.99-1.13H22V6H11.23z M4.5,9C4.22,9,4,8.78,4,8.5C4,8.22,4.22,8,4.5,8 S5,8.22,5,8.5C5,8.78,4.78,9,4.5,9z M11,15c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3S12.66,15,11,15z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M11.23,6C9.57,6,8.01,6.66,6.87,7.73C6.54,6.73,5.61,6,4.5,6C3.12,6,2,7.12,2,8.5C2,9.88,3.12,11,4.5,11 c0.21,0,0.41-0.03,0.61-0.08c-0.05,0.25-0.09,0.51-0.1,0.78c-0.18,3.68,2.95,6.68,6.68,6.27c2.55-0.28,4.68-2.26,5.19-4.77 c0.15-0.71,0.15-1.4,0.06-2.06c-0.09-0.6,0.38-1.13,0.99-1.13H22V6H11.23z M4.5,9C4.22,9,4,8.78,4,8.5C4,8.22,4.22,8,4.5,8 S5,8.22,5,8.5C5,8.78,4.78,9,4.5,9z M11,15c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3S12.66,15,11,15z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "cx": "11", + "cy": "12", + "r": "2" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "11", + "cy": "12", + "r": "2" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_sports_outline = ic_sports_outline; \ No newline at end of file diff --git a/dist/md/ic_sports_rugby.js b/dist/md/ic_sports_rugby.js new file mode 100644 index 000000000..0a9642952 --- /dev/null +++ b/dist/md/ic_sports_rugby.js @@ -0,0 +1,55 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sports_rugby = void 0; +var ic_sports_rugby = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M20.49,3.51c-0.56-0.56-2.15-0.97-4.16-0.97c-3.08,0-7.15,0.96-9.98,3.79C1.66,11.03,2.1,19.07,3.51,20.49 c0.56,0.56,2.15,0.97,4.16,0.97c3.08,0,7.15-0.96,9.98-3.79C22.34,12.97,21.9,4.93,20.49,3.51z M7.76,7.76 c2.64-2.64,6.35-3.12,8.03-3.19c-2.05,0.94-4.46,2.45-6.61,4.61c-2.16,2.16-3.67,4.58-4.62,6.63C4.66,13.33,5.44,10.07,7.76,7.76z M16.24,16.24c-2.64,2.64-6.35,3.12-8.03,3.19c2.05-0.94,4.46-2.45,6.61-4.61c2.16-2.16,3.67-4.58,4.62-6.63 C19.34,10.67,18.56,13.93,16.24,16.24z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20.49,3.51c-0.56-0.56-2.15-0.97-4.16-0.97c-3.08,0-7.15,0.96-9.98,3.79C1.66,11.03,2.1,19.07,3.51,20.49 c0.56,0.56,2.15,0.97,4.16,0.97c3.08,0,7.15-0.96,9.98-3.79C22.34,12.97,21.9,4.93,20.49,3.51z M7.76,7.76 c2.64-2.64,6.35-3.12,8.03-3.19c-2.05,0.94-4.46,2.45-6.61,4.61c-2.16,2.16-3.67,4.58-4.62,6.63C4.66,13.33,5.44,10.07,7.76,7.76z M16.24,16.24c-2.64,2.64-6.35,3.12-8.03,3.19c2.05-0.94,4.46-2.45,6.61-4.61c2.16-2.16,3.67-4.58,4.62-6.63 C19.34,10.67,18.56,13.93,16.24,16.24z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_sports_rugby = ic_sports_rugby; \ No newline at end of file diff --git a/dist/md/ic_sports_rugby_outline.js b/dist/md/ic_sports_rugby_outline.js new file mode 100644 index 000000000..e0b19698f --- /dev/null +++ b/dist/md/ic_sports_rugby_outline.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sports_rugby_outline = void 0; +var ic_sports_rugby_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M20.49,3.51c-0.56-0.56-2.15-0.97-4.16-0.97c-3.08,0-7.15,0.96-9.98,3.79C1.66,11.03,2.1,19.07,3.51,20.49 c0.56,0.56,2.15,0.97,4.16,0.97c3.08,0,7.15-0.96,9.98-3.79C22.34,12.97,21.9,4.93,20.49,3.51z M5.71,18.29 c0.63-1.89,2.16-4.99,4.87-7.7c2.68-2.68,5.78-4.23,7.7-4.88c-0.63,1.89-2.16,4.99-4.88,7.7C10.74,16.09,7.64,17.64,5.71,18.29z M7.76,7.76c2.64-2.64,6.34-3.12,8.03-3.19c-2.05,0.94-4.46,2.46-6.61,4.61c-2.16,2.16-3.67,4.58-4.61,6.63 C4.66,13.33,5.44,10.07,7.76,7.76z M16.24,16.24c-2.64,2.64-6.34,3.12-8.03,3.19c2.05-0.94,4.46-2.46,6.61-4.61 c2.16-2.16,3.67-4.58,4.62-6.63C19.34,10.67,18.56,13.93,16.24,16.24z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20.49,3.51c-0.56-0.56-2.15-0.97-4.16-0.97c-3.08,0-7.15,0.96-9.98,3.79C1.66,11.03,2.1,19.07,3.51,20.49 c0.56,0.56,2.15,0.97,4.16,0.97c3.08,0,7.15-0.96,9.98-3.79C22.34,12.97,21.9,4.93,20.49,3.51z M5.71,18.29 c0.63-1.89,2.16-4.99,4.87-7.7c2.68-2.68,5.78-4.23,7.7-4.88c-0.63,1.89-2.16,4.99-4.88,7.7C10.74,16.09,7.64,17.64,5.71,18.29z M7.76,7.76c2.64-2.64,6.34-3.12,8.03-3.19c-2.05,0.94-4.46,2.46-6.61,4.61c-2.16,2.16-3.67,4.58-4.61,6.63 C4.66,13.33,5.44,10.07,7.76,7.76z M16.24,16.24c-2.64,2.64-6.34,3.12-8.03,3.19c2.05-0.94,4.46-2.46,6.61-4.61 c2.16-2.16,3.67-4.58,4.62-6.63C19.34,10.67,18.56,13.93,16.24,16.24z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_sports_rugby_outline = ic_sports_rugby_outline; \ No newline at end of file diff --git a/dist/md/ic_sports_rugby_twotone.js b/dist/md/ic_sports_rugby_twotone.js new file mode 100644 index 000000000..fa19e27ff --- /dev/null +++ b/dist/md/ic_sports_rugby_twotone.js @@ -0,0 +1,97 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sports_rugby_twotone = void 0; +var ic_sports_rugby_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M18.29,5.71c-1.93,0.64-5.02,2.19-7.7,4.88c-2.71,2.71-4.24,5.81-4.87,7.7c1.93-0.64,5.03-2.2,7.7-4.87 C16.13,10.7,17.66,7.6,18.29,5.71z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18.29,5.71c-1.93,0.64-5.02,2.19-7.7,4.88c-2.71,2.71-4.24,5.81-4.87,7.7c1.93-0.64,5.03-2.2,7.7-4.87 C16.13,10.7,17.66,7.6,18.29,5.71z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M9.17,9.17c2.15-2.15,4.56-3.67,6.61-4.61C14.1,4.64,10.4,5.12,7.76,7.76c-2.32,2.32-3.1,5.58-3.2,8.04 C5.5,13.75,7.01,11.33,9.17,9.17z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M9.17,9.17c2.15-2.15,4.56-3.67,6.61-4.61C14.1,4.64,10.4,5.12,7.76,7.76c-2.32,2.32-3.1,5.58-3.2,8.04 C5.5,13.75,7.01,11.33,9.17,9.17z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M14.83,14.83c-2.15,2.15-4.56,3.67-6.61,4.61c1.68-0.08,5.39-0.55,8.03-3.19c2.32-2.32,3.1-5.58,3.2-8.04 C18.5,10.25,16.99,12.67,14.83,14.83z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14.83,14.83c-2.15,2.15-4.56,3.67-6.61,4.61c1.68-0.08,5.39-0.55,8.03-3.19c2.32-2.32,3.1-5.58,3.2-8.04 C18.5,10.25,16.99,12.67,14.83,14.83z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20.49,3.51c-0.56-0.56-2.15-0.97-4.16-0.97c-3.08,0-7.15,0.96-9.98,3.79C1.66,11.03,2.1,19.07,3.51,20.49 c0.56,0.56,2.15,0.97,4.16,0.97c3.08,0,7.15-0.96,9.98-3.79C22.34,12.97,21.9,4.93,20.49,3.51z M5.71,18.29 c0.63-1.89,2.16-4.99,4.87-7.7c2.68-2.68,5.78-4.23,7.7-4.88c-0.63,1.89-2.16,4.99-4.88,7.7C10.74,16.09,7.64,17.64,5.71,18.29z M7.76,7.76c2.64-2.64,6.34-3.12,8.03-3.19c-2.05,0.94-4.46,2.46-6.61,4.61c-2.16,2.16-3.67,4.58-4.61,6.63 C4.66,13.33,5.44,10.07,7.76,7.76z M16.24,16.24c-2.64,2.64-6.34,3.12-8.03,3.19c2.05-0.94,4.46-2.46,6.61-4.61 c2.16-2.16,3.67-4.58,4.62-6.63C19.34,10.67,18.56,13.93,16.24,16.24z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20.49,3.51c-0.56-0.56-2.15-0.97-4.16-0.97c-3.08,0-7.15,0.96-9.98,3.79C1.66,11.03,2.1,19.07,3.51,20.49 c0.56,0.56,2.15,0.97,4.16,0.97c3.08,0,7.15-0.96,9.98-3.79C22.34,12.97,21.9,4.93,20.49,3.51z M5.71,18.29 c0.63-1.89,2.16-4.99,4.87-7.7c2.68-2.68,5.78-4.23,7.7-4.88c-0.63,1.89-2.16,4.99-4.88,7.7C10.74,16.09,7.64,17.64,5.71,18.29z M7.76,7.76c2.64-2.64,6.34-3.12,8.03-3.19c-2.05,0.94-4.46,2.46-6.61,4.61c-2.16,2.16-3.67,4.58-4.61,6.63 C4.66,13.33,5.44,10.07,7.76,7.76z M16.24,16.24c-2.64,2.64-6.34,3.12-8.03,3.19c2.05-0.94,4.46-2.46,6.61-4.61 c2.16-2.16,3.67-4.58,4.62-6.63C19.34,10.67,18.56,13.93,16.24,16.24z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_sports_rugby_twotone = ic_sports_rugby_twotone; \ No newline at end of file diff --git a/dist/md/ic_sports_soccer.js b/dist/md/ic_sports_soccer.js new file mode 100644 index 000000000..6d7f65c40 --- /dev/null +++ b/dist/md/ic_sports_soccer.js @@ -0,0 +1,55 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sports_soccer = void 0; +var ic_sports_soccer = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M13,5.3l1.35-0.95 c1.82,0.56,3.37,1.76,4.38,3.34l-0.39,1.34l-1.35,0.46L13,6.7V5.3z M9.65,4.35L11,5.3v1.4L7.01,9.49L5.66,9.03L5.27,7.69 C6.28,6.12,7.83,4.92,9.65,4.35z M7.08,17.11l-1.14,0.1C4.73,15.81,4,13.99,4,12c0-0.12,0.01-0.23,0.02-0.35l1-0.73L6.4,11.4 l1.46,4.34L7.08,17.11z M14.5,19.59C13.71,19.85,12.87,20,12,20s-1.71-0.15-2.5-0.41l-0.69-1.49L9.45,17h5.11l0.64,1.11 L14.5,19.59z M14.27,15H9.73l-1.35-4.02L12,8.44l3.63,2.54L14.27,15z M18.06,17.21l-1.14-0.1l-0.79-1.37l1.46-4.34l1.39-0.47 l1,0.73C19.99,11.77,20,11.88,20,12C20,13.99,19.27,15.81,18.06,17.21z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M13,5.3l1.35-0.95 c1.82,0.56,3.37,1.76,4.38,3.34l-0.39,1.34l-1.35,0.46L13,6.7V5.3z M9.65,4.35L11,5.3v1.4L7.01,9.49L5.66,9.03L5.27,7.69 C6.28,6.12,7.83,4.92,9.65,4.35z M7.08,17.11l-1.14,0.1C4.73,15.81,4,13.99,4,12c0-0.12,0.01-0.23,0.02-0.35l1-0.73L6.4,11.4 l1.46,4.34L7.08,17.11z M14.5,19.59C13.71,19.85,12.87,20,12,20s-1.71-0.15-2.5-0.41l-0.69-1.49L9.45,17h5.11l0.64,1.11 L14.5,19.59z M14.27,15H9.73l-1.35-4.02L12,8.44l3.63,2.54L14.27,15z M18.06,17.21l-1.14-0.1l-0.79-1.37l1.46-4.34l1.39-0.47 l1,0.73C19.99,11.77,20,11.88,20,12C20,13.99,19.27,15.81,18.06,17.21z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_sports_soccer = ic_sports_soccer; \ No newline at end of file diff --git a/dist/md/ic_sports_soccer_outline.js b/dist/md/ic_sports_soccer_outline.js new file mode 100644 index 000000000..54ad1334e --- /dev/null +++ b/dist/md/ic_sports_soccer_outline.js @@ -0,0 +1,55 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sports_soccer_outline = void 0; +var ic_sports_soccer_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M13,5.3l1.35-0.95 c1.82,0.56,3.37,1.76,4.38,3.34l-0.39,1.34l-1.35,0.46L13,6.7V5.3z M9.65,4.35L11,5.3v1.4L7.01,9.49L5.66,9.03L5.27,7.69 C6.28,6.12,7.83,4.92,9.65,4.35z M7.08,17.11l-1.14,0.1C4.73,15.81,4,13.99,4,12c0-0.12,0.01-0.23,0.02-0.35l1-0.73L6.4,11.4 l1.46,4.34L7.08,17.11z M14.5,19.59C13.71,19.85,12.87,20,12,20s-1.71-0.15-2.5-0.41l-0.69-1.49L9.45,17h5.11l0.64,1.11 L14.5,19.59z M14.27,15H9.73l-1.35-4.02L12,8.44l3.63,2.54L14.27,15z M18.06,17.21l-1.14-0.1l-0.79-1.37l1.46-4.34l1.39-0.47 l1,0.73C19.99,11.77,20,11.88,20,12C20,13.99,19.27,15.81,18.06,17.21z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M13,5.3l1.35-0.95 c1.82,0.56,3.37,1.76,4.38,3.34l-0.39,1.34l-1.35,0.46L13,6.7V5.3z M9.65,4.35L11,5.3v1.4L7.01,9.49L5.66,9.03L5.27,7.69 C6.28,6.12,7.83,4.92,9.65,4.35z M7.08,17.11l-1.14,0.1C4.73,15.81,4,13.99,4,12c0-0.12,0.01-0.23,0.02-0.35l1-0.73L6.4,11.4 l1.46,4.34L7.08,17.11z M14.5,19.59C13.71,19.85,12.87,20,12,20s-1.71-0.15-2.5-0.41l-0.69-1.49L9.45,17h5.11l0.64,1.11 L14.5,19.59z M14.27,15H9.73l-1.35-4.02L12,8.44l3.63,2.54L14.27,15z M18.06,17.21l-1.14-0.1l-0.79-1.37l1.46-4.34l1.39-0.47 l1,0.73C19.99,11.77,20,11.88,20,12C20,13.99,19.27,15.81,18.06,17.21z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_sports_soccer_outline = ic_sports_soccer_outline; \ No newline at end of file diff --git a/dist/md/ic_sports_soccer_twotone.js b/dist/md/ic_sports_soccer_twotone.js new file mode 100644 index 000000000..c1e125fed --- /dev/null +++ b/dist/md/ic_sports_soccer_twotone.js @@ -0,0 +1,207 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sports_soccer_twotone = void 0; +var ic_sports_soccer_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": { + "opacity": ".3" + }, + "children": [{ + "name": "g", + "attribs": { + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M7.01,9.49L11,6.7V5.3L9.65,4.35C7.83,4.92,6.28,6.12,5.27,7.69l0.39,1.34L7.01,9.49z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M7.01,9.49L11,6.7V5.3L9.65,4.35C7.83,4.92,6.28,6.12,5.27,7.69l0.39,1.34L7.01,9.49z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": { + "opacity": ".3" + }, + "children": [{ + "name": "g", + "attribs": { + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M5.01,10.92l-1,0.73C4.01,11.77,4,11.88,4,12c0,1.99,0.73,3.81,1.94,5.21l1.14-0.1l0.79-1.37L6.4,11.4L5.01,10.92z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M5.01,10.92l-1,0.73C4.01,11.77,4,11.88,4,12c0,1.99,0.73,3.81,1.94,5.21l1.14-0.1l0.79-1.37L6.4,11.4L5.01,10.92z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": { + "opacity": ".3" + }, + "children": [{ + "name": "g", + "attribs": { + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18.34,9.03l0.39-1.34c-1.01-1.57-2.55-2.77-4.38-3.34L13,5.3v1.4l3.99,2.79L18.34,9.03z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18.34,9.03l0.39-1.34c-1.01-1.57-2.55-2.77-4.38-3.34L13,5.3v1.4l3.99,2.79L18.34,9.03z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": { + "opacity": ".3" + }, + "children": [{ + "name": "g", + "attribs": { + "opacity": ".3" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "8.37,10.98 9.73,15 14.27,15 15.63,10.98 12,8.44" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "8.37,10.98 9.73,15 14.27,15 15.63,10.98 12,8.44" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": { + "opacity": ".3" + }, + "children": [{ + "name": "g", + "attribs": { + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M9.45,17l-0.64,1.11l0.69,1.49C10.29,19.85,11.13,20,12,20s1.71-0.15,2.5-0.41l0.69-1.49L14.55,17H9.45z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M9.45,17l-0.64,1.11l0.69,1.49C10.29,19.85,11.13,20,12,20s1.71-0.15,2.5-0.41l0.69-1.49L14.55,17H9.45z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": { + "opacity": ".3" + }, + "children": [{ + "name": "g", + "attribs": { + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19.98,11.65l-1-0.73L17.6,11.4l-1.46,4.34l0.79,1.37l1.14,0.1C19.27,15.81,20,13.99,20,12 C20,11.88,19.99,11.77,19.98,11.65z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19.98,11.65l-1-0.73L17.6,11.4l-1.46,4.34l0.79,1.37l1.14,0.1C19.27,15.81,20,13.99,20,12 C20,11.88,19.99,11.77,19.98,11.65z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M13,5.3l1.35-0.95 c1.82,0.56,3.37,1.76,4.38,3.34l-0.39,1.34l-1.35,0.46L13,6.7V5.3z M9.65,4.35L11,5.3v1.4L7.01,9.49L5.66,9.03L5.27,7.69 C6.28,6.12,7.83,4.92,9.65,4.35z M7.08,17.11l-1.14,0.1C4.73,15.81,4,13.99,4,12c0-0.12,0.01-0.23,0.02-0.35l1-0.73L6.4,11.4 l1.46,4.34L7.08,17.11z M14.5,19.59C13.71,19.85,12.87,20,12,20s-1.71-0.15-2.5-0.41l-0.69-1.49L9.45,17h5.11l0.64,1.11 L14.5,19.59z M14.27,15H9.73l-1.35-4.02L12,8.44l3.63,2.54L14.27,15z M18.06,17.21l-1.14-0.1l-0.79-1.37l1.46-4.34l1.39-0.47 l1,0.73C19.99,11.77,20,11.88,20,12C20,13.99,19.27,15.81,18.06,17.21z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M13,5.3l1.35-0.95 c1.82,0.56,3.37,1.76,4.38,3.34l-0.39,1.34l-1.35,0.46L13,6.7V5.3z M9.65,4.35L11,5.3v1.4L7.01,9.49L5.66,9.03L5.27,7.69 C6.28,6.12,7.83,4.92,9.65,4.35z M7.08,17.11l-1.14,0.1C4.73,15.81,4,13.99,4,12c0-0.12,0.01-0.23,0.02-0.35l1-0.73L6.4,11.4 l1.46,4.34L7.08,17.11z M14.5,19.59C13.71,19.85,12.87,20,12,20s-1.71-0.15-2.5-0.41l-0.69-1.49L9.45,17h5.11l0.64,1.11 L14.5,19.59z M14.27,15H9.73l-1.35-4.02L12,8.44l3.63,2.54L14.27,15z M18.06,17.21l-1.14-0.1l-0.79-1.37l1.46-4.34l1.39-0.47 l1,0.73C19.99,11.77,20,11.88,20,12C20,13.99,19.27,15.81,18.06,17.21z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_sports_soccer_twotone = ic_sports_soccer_twotone; \ No newline at end of file diff --git a/dist/md/ic_sports_tennis.js b/dist/md/ic_sports_tennis.js new file mode 100644 index 000000000..6c14e0272 --- /dev/null +++ b/dist/md/ic_sports_tennis.js @@ -0,0 +1,59 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sports_tennis = void 0; +var ic_sports_tennis = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M19.52,2.49c-2.34-2.34-6.62-1.87-9.55,1.06c-1.6,1.6-2.52,3.87-2.54,5.46c-0.02,1.58,0.26,3.89-1.35,5.5l-4.24,4.24 l1.42,1.42l4.24-4.24c1.61-1.61,3.92-1.33,5.5-1.35s3.86-0.94,5.46-2.54C21.38,9.11,21.86,4.83,19.52,2.49z M10.32,11.68 c-1.53-1.53-1.05-4.61,1.06-6.72s5.18-2.59,6.72-1.06c1.53,1.53,1.05,4.61-1.06,6.72S11.86,13.21,10.32,11.68z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19.52,2.49c-2.34-2.34-6.62-1.87-9.55,1.06c-1.6,1.6-2.52,3.87-2.54,5.46c-0.02,1.58,0.26,3.89-1.35,5.5l-4.24,4.24 l1.42,1.42l4.24-4.24c1.61-1.61,3.92-1.33,5.5-1.35s3.86-0.94,5.46-2.54C21.38,9.11,21.86,4.83,19.52,2.49z M10.32,11.68 c-1.53-1.53-1.05-4.61,1.06-6.72s5.18-2.59,6.72-1.06c1.53,1.53,1.05,4.61-1.06,6.72S11.86,13.21,10.32,11.68z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M18,17c0.53,0,1.04,0.21,1.41,0.59c0.78,0.78,0.78,2.05,0,2.83C19.04,20.79,18.53,21,18,21s-1.04-0.21-1.41-0.59 c-0.78-0.78-0.78-2.05,0-2.83C16.96,17.21,17.47,17,18,17 M18,15c-1.02,0-2.05,0.39-2.83,1.17c-1.56,1.56-1.56,4.09,0,5.66 C15.95,22.61,16.98,23,18,23s2.05-0.39,2.83-1.17c1.56-1.56,1.56-4.09,0-5.66C20.05,15.39,19.02,15,18,15L18,15z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18,17c0.53,0,1.04,0.21,1.41,0.59c0.78,0.78,0.78,2.05,0,2.83C19.04,20.79,18.53,21,18,21s-1.04-0.21-1.41-0.59 c-0.78-0.78-0.78-2.05,0-2.83C16.96,17.21,17.47,17,18,17 M18,15c-1.02,0-2.05,0.39-2.83,1.17c-1.56,1.56-1.56,4.09,0,5.66 C15.95,22.61,16.98,23,18,23s2.05-0.39,2.83-1.17c1.56-1.56,1.56-4.09,0-5.66C20.05,15.39,19.02,15,18,15L18,15z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_sports_tennis = ic_sports_tennis; \ No newline at end of file diff --git a/dist/md/ic_sports_tennis_outline.js b/dist/md/ic_sports_tennis_outline.js new file mode 100644 index 000000000..8a4efaebc --- /dev/null +++ b/dist/md/ic_sports_tennis_outline.js @@ -0,0 +1,59 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sports_tennis_outline = void 0; +var ic_sports_tennis_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M19.52,2.49c-2.34-2.34-6.62-1.87-9.55,1.06c-1.6,1.6-2.52,3.87-2.54,5.46c-0.02,1.58,0.26,3.89-1.35,5.5l-4.24,4.24 l1.42,1.42l4.24-4.24c1.61-1.61,3.92-1.33,5.5-1.35s3.86-0.94,5.46-2.54C21.38,9.11,21.86,4.83,19.52,2.49z M10.32,11.68 c-1.53-1.53-1.05-4.61,1.06-6.72s5.18-2.59,6.72-1.06c1.53,1.53,1.05,4.61-1.06,6.72S11.86,13.21,10.32,11.68z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19.52,2.49c-2.34-2.34-6.62-1.87-9.55,1.06c-1.6,1.6-2.52,3.87-2.54,5.46c-0.02,1.58,0.26,3.89-1.35,5.5l-4.24,4.24 l1.42,1.42l4.24-4.24c1.61-1.61,3.92-1.33,5.5-1.35s3.86-0.94,5.46-2.54C21.38,9.11,21.86,4.83,19.52,2.49z M10.32,11.68 c-1.53-1.53-1.05-4.61,1.06-6.72s5.18-2.59,6.72-1.06c1.53,1.53,1.05,4.61-1.06,6.72S11.86,13.21,10.32,11.68z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M18,17c0.53,0,1.04,0.21,1.41,0.59c0.78,0.78,0.78,2.05,0,2.83C19.04,20.79,18.53,21,18,21s-1.04-0.21-1.41-0.59 c-0.78-0.78-0.78-2.05,0-2.83C16.96,17.21,17.47,17,18,17 M18,15c-1.02,0-2.05,0.39-2.83,1.17c-1.56,1.56-1.56,4.09,0,5.66 C15.95,22.61,16.98,23,18,23s2.05-0.39,2.83-1.17c1.56-1.56,1.56-4.09,0-5.66C20.05,15.39,19.02,15,18,15L18,15z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18,17c0.53,0,1.04,0.21,1.41,0.59c0.78,0.78,0.78,2.05,0,2.83C19.04,20.79,18.53,21,18,21s-1.04-0.21-1.41-0.59 c-0.78-0.78-0.78-2.05,0-2.83C16.96,17.21,17.47,17,18,17 M18,15c-1.02,0-2.05,0.39-2.83,1.17c-1.56,1.56-1.56,4.09,0,5.66 C15.95,22.61,16.98,23,18,23s2.05-0.39,2.83-1.17c1.56-1.56,1.56-4.09,0-5.66C20.05,15.39,19.02,15,18,15L18,15z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_sports_tennis_outline = ic_sports_tennis_outline; \ No newline at end of file diff --git a/dist/md/ic_sports_tennis_twotone.js b/dist/md/ic_sports_tennis_twotone.js new file mode 100644 index 000000000..28b6f38f5 --- /dev/null +++ b/dist/md/ic_sports_tennis_twotone.js @@ -0,0 +1,59 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sports_tennis_twotone = void 0; +var ic_sports_tennis_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M19.52,2.49c-2.34-2.34-6.62-1.87-9.55,1.06c-1.6,1.6-2.52,3.87-2.54,5.46c-0.02,1.58,0.26,3.89-1.35,5.5l-4.24,4.24 l1.42,1.42l4.24-4.24c1.61-1.61,3.92-1.33,5.5-1.35s3.86-0.94,5.46-2.54C21.38,9.11,21.86,4.83,19.52,2.49z M10.32,11.68 c-1.53-1.53-1.05-4.61,1.06-6.72s5.18-2.59,6.72-1.06c1.53,1.53,1.05,4.61-1.06,6.72S11.86,13.21,10.32,11.68z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19.52,2.49c-2.34-2.34-6.62-1.87-9.55,1.06c-1.6,1.6-2.52,3.87-2.54,5.46c-0.02,1.58,0.26,3.89-1.35,5.5l-4.24,4.24 l1.42,1.42l4.24-4.24c1.61-1.61,3.92-1.33,5.5-1.35s3.86-0.94,5.46-2.54C21.38,9.11,21.86,4.83,19.52,2.49z M10.32,11.68 c-1.53-1.53-1.05-4.61,1.06-6.72s5.18-2.59,6.72-1.06c1.53,1.53,1.05,4.61-1.06,6.72S11.86,13.21,10.32,11.68z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M18,17c0.53,0,1.04,0.21,1.41,0.59c0.78,0.78,0.78,2.05,0,2.83C19.04,20.79,18.53,21,18,21s-1.04-0.21-1.41-0.59 c-0.78-0.78-0.78-2.05,0-2.83C16.96,17.21,17.47,17,18,17 M18,15c-1.02,0-2.05,0.39-2.83,1.17c-1.56,1.56-1.56,4.09,0,5.66 C15.95,22.61,16.98,23,18,23s2.05-0.39,2.83-1.17c1.56-1.56,1.56-4.09,0-5.66C20.05,15.39,19.02,15,18,15L18,15z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18,17c0.53,0,1.04,0.21,1.41,0.59c0.78,0.78,0.78,2.05,0,2.83C19.04,20.79,18.53,21,18,21s-1.04-0.21-1.41-0.59 c-0.78-0.78-0.78-2.05,0-2.83C16.96,17.21,17.47,17,18,17 M18,15c-1.02,0-2.05,0.39-2.83,1.17c-1.56,1.56-1.56,4.09,0,5.66 C15.95,22.61,16.98,23,18,23s2.05-0.39,2.83-1.17c1.56-1.56,1.56-4.09,0-5.66C20.05,15.39,19.02,15,18,15L18,15z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_sports_tennis_twotone = ic_sports_tennis_twotone; \ No newline at end of file diff --git a/dist/md/ic_sports_twotone.js b/dist/md/ic_sports_twotone.js new file mode 100644 index 000000000..51cfde0ab --- /dev/null +++ b/dist/md/ic_sports_twotone.js @@ -0,0 +1,87 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sports_twotone = void 0; +var ic_sports_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M11.23,6C9.57,6,8.01,6.66,6.87,7.73C6.54,6.73,5.61,6,4.5,6C3.12,6,2,7.12,2,8.5C2,9.88,3.12,11,4.5,11 c0.21,0,0.41-0.03,0.61-0.08c-0.05,0.25-0.09,0.51-0.1,0.78c-0.18,3.68,2.95,6.68,6.68,6.27c2.55-0.28,4.68-2.26,5.19-4.77 c0.15-0.71,0.15-1.4,0.06-2.06c-0.09-0.6,0.38-1.13,0.99-1.13H22V6H11.23z M4.5,9C4.22,9,4,8.78,4,8.5C4,8.22,4.22,8,4.5,8 S5,8.22,5,8.5C5,8.78,4.78,9,4.5,9z M11,15c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3S12.66,15,11,15z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M11.23,6C9.57,6,8.01,6.66,6.87,7.73C6.54,6.73,5.61,6,4.5,6C3.12,6,2,7.12,2,8.5C2,9.88,3.12,11,4.5,11 c0.21,0,0.41-0.03,0.61-0.08c-0.05,0.25-0.09,0.51-0.1,0.78c-0.18,3.68,2.95,6.68,6.68,6.27c2.55-0.28,4.68-2.26,5.19-4.77 c0.15-0.71,0.15-1.4,0.06-2.06c-0.09-0.6,0.38-1.13,0.99-1.13H22V6H11.23z M4.5,9C4.22,9,4,8.78,4,8.5C4,8.22,4.22,8,4.5,8 S5,8.22,5,8.5C5,8.78,4.78,9,4.5,9z M11,15c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3S12.66,15,11,15z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "cx": "11", + "cy": "12", + "r": "2" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "11", + "cy": "12", + "r": "2" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_sports_twotone = ic_sports_twotone; \ No newline at end of file diff --git a/dist/md/ic_sports_volleyball.js b/dist/md/ic_sports_volleyball.js new file mode 100644 index 000000000..bf7ca9235 --- /dev/null +++ b/dist/md/ic_sports_volleyball.js @@ -0,0 +1,115 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sports_volleyball = void 0; +var ic_sports_volleyball = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M6,4.01C3.58,5.84,2,8.73,2,12c0,1.46,0.32,2.85,0.89,4.11L6,14.31V4.01z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M6,4.01C3.58,5.84,2,8.73,2,12c0,1.46,0.32,2.85,0.89,4.11L6,14.31V4.01z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M11,11.42V2.05C9.94,2.16,8.93,2.43,8,2.84v10.32L11,11.42z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M11,11.42V2.05C9.94,2.16,8.93,2.43,8,2.84v10.32L11,11.42z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M12,13.15l-8.11,4.68c0.61,0.84,1.34,1.59,2.18,2.2L15,14.89L12,13.15z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,13.15l-8.11,4.68c0.61,0.84,1.34,1.59,2.18,2.2L15,14.89L12,13.15z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M13,7.96v3.46l8.11,4.68c0.42-0.93,0.7-1.93,0.82-2.98L13,7.96z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M13,7.96v3.46l8.11,4.68c0.42-0.93,0.7-1.93,0.82-2.98L13,7.96z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M8.07,21.2C9.28,21.71,10.6,22,12,22c3.34,0,6.29-1.65,8.11-4.16L17,16.04L8.07,21.2z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M8.07,21.2C9.28,21.71,10.6,22,12,22c3.34,0,6.29-1.65,8.11-4.16L17,16.04L8.07,21.2z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M21.92,10.81c-0.55-4.63-4.26-8.3-8.92-8.76v3.6L21.92,10.81z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21.92,10.81c-0.55-4.63-4.26-8.3-8.92-8.76v3.6L21.92,10.81z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_sports_volleyball = ic_sports_volleyball; \ No newline at end of file diff --git a/dist/md/ic_sports_volleyball_outline.js b/dist/md/ic_sports_volleyball_outline.js new file mode 100644 index 000000000..bc9ac9d13 --- /dev/null +++ b/dist/md/ic_sports_volleyball_outline.js @@ -0,0 +1,55 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sports_volleyball_outline = void 0; +var ic_sports_volleyball_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M13,4.07 c3.07,0.38,5.57,2.52,6.54,5.36L13,5.65V4.07z M8,5.08c1.18-0.69,3.33-1.06,3-1.02v7.35l-3,1.73V5.08z M4.63,15.1 C4.23,14.14,4,13.1,4,12c0-2.02,0.76-3.86,2-5.27v7.58L4.63,15.1z M5.64,16.83L12,13.15l3,1.73l-6.98,4.03 C7.09,18.38,6.28,17.68,5.64,16.83z M10.42,19.84 M12,20c-0.54,0-1.07-0.06-1.58-0.16l6.58-3.8l1.36,0.78 C16.9,18.75,14.6,20,12,20z M13,11.42V7.96l7,4.05c0,1.1-0.23,2.14-0.63,3.09L13,11.42z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M13,4.07 c3.07,0.38,5.57,2.52,6.54,5.36L13,5.65V4.07z M8,5.08c1.18-0.69,3.33-1.06,3-1.02v7.35l-3,1.73V5.08z M4.63,15.1 C4.23,14.14,4,13.1,4,12c0-2.02,0.76-3.86,2-5.27v7.58L4.63,15.1z M5.64,16.83L12,13.15l3,1.73l-6.98,4.03 C7.09,18.38,6.28,17.68,5.64,16.83z M10.42,19.84 M12,20c-0.54,0-1.07-0.06-1.58-0.16l6.58-3.8l1.36,0.78 C16.9,18.75,14.6,20,12,20z M13,11.42V7.96l7,4.05c0,1.1-0.23,2.14-0.63,3.09L13,11.42z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_sports_volleyball_outline = ic_sports_volleyball_outline; \ No newline at end of file diff --git a/dist/md/ic_sports_volleyball_twotone.js b/dist/md/ic_sports_volleyball_twotone.js new file mode 100644 index 000000000..0ecb9e469 --- /dev/null +++ b/dist/md/ic_sports_volleyball_twotone.js @@ -0,0 +1,139 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sports_volleyball_twotone = void 0; +var ic_sports_volleyball_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M6,6.73C4.76,8.14,4,9.98,4,12c0,1.1,0.23,2.14,0.63,3.1L6,14.31V6.73z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M6,6.73C4.76,8.14,4,9.98,4,12c0,1.1,0.23,2.14,0.63,3.1L6,14.31V6.73z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M11,4.08c-0.25,0.06-1.98,0.42-3,1.01v8.07l3-1.73V4.08z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M11,4.08c-0.25,0.06-1.98,0.42-3,1.01v8.07l3-1.73V4.08z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M13,4.07v1.58l6.54,3.79C18.57,6.59,16.07,4.45,13,4.07z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M13,4.07v1.58l6.54,3.79C18.57,6.59,16.07,4.45,13,4.07z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M12,13.15l-6.36,3.67c0.64,0.85,1.46,1.55,2.38,2.09L15,14.89L12,13.15z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,13.15l-6.36,3.67c0.64,0.85,1.46,1.55,2.38,2.09L15,14.89L12,13.15z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M13,7.96v3.46l6.37,3.68c0.4-0.95,0.63-1.99,0.63-3.09L13,7.96z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M13,7.96v3.46l6.37,3.68c0.4-0.95,0.63-1.99,0.63-3.09L13,7.96z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M10.42,19.84C10.93,19.94,11.46,20,12,20c2.6,0,4.9-1.25,6.36-3.17L17,16.04L10.42,19.84z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M10.42,19.84C10.93,19.94,11.46,20,12,20c2.6,0,4.9-1.25,6.36-3.17L17,16.04L10.42,19.84z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M13,4.07 c3.07,0.38,5.57,2.52,6.54,5.36L13,5.65V4.07z M8,5.08c1.02-0.59,2.75-0.95,3-1.01v7.35l-3,1.73V5.08z M4.63,15.1 C4.23,14.14,4,13.1,4,12c0-2.02,0.76-3.86,2-5.27v7.58L4.63,15.1z M5.64,16.83L12,13.15l3,1.73l-6.98,4.03 C7.09,18.38,6.28,17.68,5.64,16.83z M12,20c-0.54,0-1.07-0.06-1.58-0.16l6.58-3.8l1.36,0.78C16.9,18.75,14.6,20,12,20z M13,11.42 V7.96l7,4.05c0,1.1-0.23,2.14-0.63,3.09L13,11.42z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M13,4.07 c3.07,0.38,5.57,2.52,6.54,5.36L13,5.65V4.07z M8,5.08c1.02-0.59,2.75-0.95,3-1.01v7.35l-3,1.73V5.08z M4.63,15.1 C4.23,14.14,4,13.1,4,12c0-2.02,0.76-3.86,2-5.27v7.58L4.63,15.1z M5.64,16.83L12,13.15l3,1.73l-6.98,4.03 C7.09,18.38,6.28,17.68,5.64,16.83z M12,20c-0.54,0-1.07-0.06-1.58-0.16l6.58-3.8l1.36,0.78C16.9,18.75,14.6,20,12,20z M13,11.42 V7.96l7,4.05c0,1.1-0.23,2.14-0.63,3.09L13,11.42z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_sports_volleyball_twotone = ic_sports_volleyball_twotone; \ No newline at end of file diff --git a/dist/md/ic_square_foot.js b/dist/md/ic_square_foot.js new file mode 100644 index 000000000..83aa4d095 --- /dev/null +++ b/dist/md/ic_square_foot.js @@ -0,0 +1,55 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_square_foot = void 0; +var ic_square_foot = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M17.66,17.66l-1.06,1.06l-0.71-0.71l1.06-1.06l-1.94-1.94l-1.06,1.06l-0.71-0.71l1.06-1.06l-1.94-1.94l-1.06,1.06 l-0.71-0.71l1.06-1.06L9.7,9.7l-1.06,1.06l-0.71-0.71l1.06-1.06L7.05,7.05L5.99,8.11L5.28,7.4l1.06-1.06L4,4v14c0,1.1,0.9,2,2,2 h14L17.66,17.66z M7,17v-5.76L12.76,17H7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17.66,17.66l-1.06,1.06l-0.71-0.71l1.06-1.06l-1.94-1.94l-1.06,1.06l-0.71-0.71l1.06-1.06l-1.94-1.94l-1.06,1.06 l-0.71-0.71l1.06-1.06L9.7,9.7l-1.06,1.06l-0.71-0.71l1.06-1.06L7.05,7.05L5.99,8.11L5.28,7.4l1.06-1.06L4,4v14c0,1.1,0.9,2,2,2 h14L17.66,17.66z M7,17v-5.76L12.76,17H7z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_square_foot = ic_square_foot; \ No newline at end of file diff --git a/dist/md/ic_square_foot_outline.js b/dist/md/ic_square_foot_outline.js new file mode 100644 index 000000000..ff82e3883 --- /dev/null +++ b/dist/md/ic_square_foot_outline.js @@ -0,0 +1,55 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_square_foot_outline = void 0; +var ic_square_foot_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M17.66,17.66l-1.06,1.06l-0.71-0.71l1.06-1.06l-1.94-1.94l-1.06,1.06l-0.71-0.71l1.06-1.06l-1.94-1.94l-1.06,1.06 l-0.71-0.71l1.06-1.06L9.7,9.7l-1.06,1.06l-0.71-0.71l1.06-1.06L7.05,7.05L5.99,8.11L5.28,7.4l1.06-1.06L4,4v14c0,1.1,0.9,2,2,2 h14L17.66,17.66z M7,17v-5.76L12.76,17H7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17.66,17.66l-1.06,1.06l-0.71-0.71l1.06-1.06l-1.94-1.94l-1.06,1.06l-0.71-0.71l1.06-1.06l-1.94-1.94l-1.06,1.06 l-0.71-0.71l1.06-1.06L9.7,9.7l-1.06,1.06l-0.71-0.71l1.06-1.06L7.05,7.05L5.99,8.11L5.28,7.4l1.06-1.06L4,4v14c0,1.1,0.9,2,2,2 h14L17.66,17.66z M7,17v-5.76L12.76,17H7z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_square_foot_outline = ic_square_foot_outline; \ No newline at end of file diff --git a/dist/md/ic_square_foot_twotone.js b/dist/md/ic_square_foot_twotone.js new file mode 100644 index 000000000..33e63e647 --- /dev/null +++ b/dist/md/ic_square_foot_twotone.js @@ -0,0 +1,77 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_square_foot_twotone = void 0; +var ic_square_foot_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "opacity": ".3", + "points": "7,17 12.76,17 7,11.24" + }, + "children": [{ + "name": "polygon", + "attribs": { + "opacity": ".3", + "points": "7,17 12.76,17 7,11.24" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M17.66,17.66l-1.06,1.06l-0.71-0.71l1.06-1.06l-1.94-1.94l-1.06,1.06l-0.71-0.71l1.06-1.06l-1.94-1.94l-1.06,1.06 l-0.71-0.71l1.06-1.06L9.7,9.7l-1.06,1.06l-0.71-0.71l1.06-1.06L7.05,7.05L5.99,8.11L5.28,7.4l1.06-1.06L4,4v14c0,1.1,0.9,2,2,2 h14L17.66,17.66z M7,17v-5.76L12.76,17H7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17.66,17.66l-1.06,1.06l-0.71-0.71l1.06-1.06l-1.94-1.94l-1.06,1.06l-0.71-0.71l1.06-1.06l-1.94-1.94l-1.06,1.06 l-0.71-0.71l1.06-1.06L9.7,9.7l-1.06,1.06l-0.71-0.71l1.06-1.06L7.05,7.05L5.99,8.11L5.28,7.4l1.06-1.06L4,4v14c0,1.1,0.9,2,2,2 h14L17.66,17.66z M7,17v-5.76L12.76,17H7z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_square_foot_twotone = ic_square_foot_twotone; \ No newline at end of file diff --git a/dist/md/ic_stacked_bar_chart.js b/dist/md/ic_stacked_bar_chart.js new file mode 100644 index 000000000..5e31281b9 --- /dev/null +++ b/dist/md/ic_stacked_bar_chart.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_stacked_bar_chart = void 0; +var ic_stacked_bar_chart = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 10h3v10H6zm0-5h3v4H6zm10 11h3v4h-3zm0-3h3v2h-3zm-5 0h3v7h-3zm0-4h3v3h-3z" + }, + "children": [] + }] +}; +exports.ic_stacked_bar_chart = ic_stacked_bar_chart; \ No newline at end of file diff --git a/dist/md/ic_stacked_line_chart.js b/dist/md/ic_stacked_line_chart.js new file mode 100644 index 000000000..1b1ccee75 --- /dev/null +++ b/dist/md/ic_stacked_line_chart.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_stacked_line_chart = void 0; +var ic_stacked_line_chart = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M2,19.99l7.5-7.51l4,4l7.09-7.97L22,9.92l-8.5,9.56l-4-4l-6,6.01L2,19.99z M3.5,15.49l6-6.01l4,4L22,3.92l-1.41-1.41 l-7.09,7.97l-4-4L2,13.99L3.5,15.49z" + }, + "children": [] + }] +}; +exports.ic_stacked_line_chart = ic_stacked_line_chart; \ No newline at end of file diff --git a/dist/md/ic_stacked_line_chart_outline.js b/dist/md/ic_stacked_line_chart_outline.js new file mode 100644 index 000000000..1cad5ab7f --- /dev/null +++ b/dist/md/ic_stacked_line_chart_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_stacked_line_chart_outline = void 0; +var ic_stacked_line_chart_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M2,19.99l7.5-7.51l4,4l7.09-7.97L22,9.92l-8.5,9.56l-4-4l-6,6.01L2,19.99z M3.5,15.49l6-6.01l4,4L22,3.92l-1.41-1.41 l-7.09,7.97l-4-4L2,13.99L3.5,15.49z" + }, + "children": [] + }] +}; +exports.ic_stacked_line_chart_outline = ic_stacked_line_chart_outline; \ No newline at end of file diff --git a/dist/md/ic_stacked_line_chart_twotone.js b/dist/md/ic_stacked_line_chart_twotone.js new file mode 100644 index 000000000..af40dd716 --- /dev/null +++ b/dist/md/ic_stacked_line_chart_twotone.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_stacked_line_chart_twotone = void 0; +var ic_stacked_line_chart_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M2,19.99l7.5-7.51l4,4l7.09-7.97L22,9.92l-8.5,9.56l-4-4l-6,6.01L2,19.99z M3.5,15.49l6-6.01l4,4L22,3.92l-1.41-1.41 l-7.09,7.97l-4-4L2,13.99L3.5,15.49z" + }, + "children": [] + }] +}; +exports.ic_stacked_line_chart_twotone = ic_stacked_line_chart_twotone; \ No newline at end of file diff --git a/dist/md/ic_stairs.js b/dist/md/ic_stairs.js new file mode 100644 index 000000000..994c5bbd4 --- /dev/null +++ b/dist/md/ic_stairs.js @@ -0,0 +1,61 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_stairs = void 0; +var ic_stairs = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M18,8h-2.42v3.33H13v3.33h-2.58 V18H6v-2h2.42v-3.33H11V9.33h2.58V6H18V8z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M18,8h-2.42v3.33H13v3.33h-2.58 V18H6v-2h2.42v-3.33H11V9.33h2.58V6H18V8z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_stairs = ic_stairs; \ No newline at end of file diff --git a/dist/md/ic_stairs_outline.js b/dist/md/ic_stairs_outline.js new file mode 100644 index 000000000..5e739f451 --- /dev/null +++ b/dist/md/ic_stairs_outline.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_stairs_outline = void 0; +var ic_stairs_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19,5v14H5V5H19 M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3L19,3z M18,6h-4.42 v3.33H11v3.33H8.42V16H6v2h4.42v-3.33H13v-3.33h2.58V8H18V6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,5v14H5V5H19 M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3L19,3z M18,6h-4.42 v3.33H11v3.33H8.42V16H6v2h4.42v-3.33H13v-3.33h2.58V8H18V6z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_stairs_outline = ic_stairs_outline; \ No newline at end of file diff --git a/dist/md/ic_stairs_twotone.js b/dist/md/ic_stairs_twotone.js new file mode 100644 index 000000000..357570cc8 --- /dev/null +++ b/dist/md/ic_stairs_twotone.js @@ -0,0 +1,59 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_stairs_twotone = void 0; +var ic_stairs_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19,5v14H5V5H19 M18,6h-4.42v3.33H11v3.33H8.42V16H6v2h4.42v-3.33H13v-3.33h2.58V8H18V6z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,5v14H5V5H19 M18,6h-4.42v3.33H11v3.33H8.42V16H6v2h4.42v-3.33H13v-3.33h2.58V8H18V6z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19,5v14H5V5H19 M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3L19,3z M18,6h-4.42 v3.33H11v3.33H8.42V16H6v2h4.42v-3.33H13v-3.33h2.58V8H18V6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,5v14H5V5H19 M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3L19,3z M18,6h-4.42 v3.33H11v3.33H8.42V16H6v2h4.42v-3.33H13v-3.33h2.58V8H18V6z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_stairs_twotone = ic_stairs_twotone; \ No newline at end of file diff --git a/dist/md/ic_star.js b/dist/md/ic_star.js new file mode 100644 index 000000000..fd6dcaa63 --- /dev/null +++ b/dist/md/ic_star.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_star = void 0; +var ic_star = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z" + }, + "children": [] + }] +}; +exports.ic_star = ic_star; \ No newline at end of file diff --git a/dist/md/ic_star_border.js b/dist/md/ic_star_border.js new file mode 100644 index 000000000..ebc34914b --- /dev/null +++ b/dist/md/ic_star_border.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_star_border = void 0; +var ic_star_border = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z" + }, + "children": [] + }] +}; +exports.ic_star_border = ic_star_border; \ No newline at end of file diff --git a/dist/md/ic_star_border_outline.js b/dist/md/ic_star_border_outline.js new file mode 100644 index 000000000..c646e252d --- /dev/null +++ b/dist/md/ic_star_border_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_star_border_outline = void 0; +var ic_star_border_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z" + }, + "children": [] + }] +}; +exports.ic_star_border_outline = ic_star_border_outline; \ No newline at end of file diff --git a/dist/md/ic_star_border_purple500_outline.js b/dist/md/ic_star_border_purple500_outline.js new file mode 100644 index 000000000..cb9fca1cf --- /dev/null +++ b/dist/md/ic_star_border_purple500_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_star_border_purple500_outline = void 0; +var ic_star_border_purple500_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z" + }, + "children": [] + }] +}; +exports.ic_star_border_purple500_outline = ic_star_border_purple500_outline; \ No newline at end of file diff --git a/dist/md/ic_star_border_twotone.js b/dist/md/ic_star_border_twotone.js new file mode 100644 index 000000000..8acbf5ff5 --- /dev/null +++ b/dist/md/ic_star_border_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_star_border_twotone = void 0; +var ic_star_border_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z" + }, + "children": [] + }] +}; +exports.ic_star_border_twotone = ic_star_border_twotone; \ No newline at end of file diff --git a/dist/md/ic_star_half.js b/dist/md/ic_star_half.js new file mode 100644 index 000000000..cd6558684 --- /dev/null +++ b/dist/md/ic_star_half.js @@ -0,0 +1,65 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_star_half = void 0; +var ic_star_half = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,9.24l-7.19-0.62L12,2L9.19,8.63L2,9.24l5.46,4.73L5.82,21L12,17.27L18.18,21l-1.63-7.03L22,9.24z M12,15.4V6.1 l1.71,4.04l4.38,0.38l-3.32,2.88l1,4.28L12,15.4z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,9.24l-7.19-0.62L12,2L9.19,8.63L2,9.24l5.46,4.73L5.82,21L12,17.27L18.18,21l-1.63-7.03L22,9.24z M12,15.4V6.1 l1.71,4.04l4.38,0.38l-3.32,2.88l1,4.28L12,15.4z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_star_half = ic_star_half; \ No newline at end of file diff --git a/dist/md/ic_star_half_outline.js b/dist/md/ic_star_half_outline.js new file mode 100644 index 000000000..487c39146 --- /dev/null +++ b/dist/md/ic_star_half_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_star_half_outline = void 0; +var ic_star_half_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4V6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z" + }, + "children": [] + }] +}; +exports.ic_star_half_outline = ic_star_half_outline; \ No newline at end of file diff --git a/dist/md/ic_star_half_twotone.js b/dist/md/ic_star_half_twotone.js new file mode 100644 index 000000000..d9ac373c9 --- /dev/null +++ b/dist/md/ic_star_half_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_star_half_twotone = void 0; +var ic_star_half_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4V6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z" + }, + "children": [] + }] +}; +exports.ic_star_half_twotone = ic_star_half_twotone; \ No newline at end of file diff --git a/dist/md/ic_star_outline.js b/dist/md/ic_star_outline.js new file mode 100644 index 000000000..15d378a38 --- /dev/null +++ b/dist/md/ic_star_outline.js @@ -0,0 +1,59 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_star_outline = void 0; +var ic_star_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M0,0h24v24H0V0z", + "fill": "none" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M0,0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M0,0h24v24H0V0z", + "fill": "none" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M0,0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,17.27L18.18,21l-1.64-7.03L22,9.24l-7.19-0.61L12,2L9.19,8.63L2,9.24l5.46,4.73L5.82,21L12,17.27z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,17.27L18.18,21l-1.64-7.03L22,9.24l-7.19-0.61L12,2L9.19,8.63L2,9.24l5.46,4.73L5.82,21L12,17.27z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_star_outline = ic_star_outline; \ No newline at end of file diff --git a/dist/md/ic_star_outline_outline.js b/dist/md/ic_star_outline_outline.js new file mode 100644 index 000000000..f994c2643 --- /dev/null +++ b/dist/md/ic_star_outline_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_star_outline_outline = void 0; +var ic_star_outline_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z" + }, + "children": [] + }] +}; +exports.ic_star_outline_outline = ic_star_outline_outline; \ No newline at end of file diff --git a/dist/md/ic_star_outline_twotone.js b/dist/md/ic_star_outline_twotone.js new file mode 100644 index 000000000..2dbf78382 --- /dev/null +++ b/dist/md/ic_star_outline_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_star_outline_twotone = void 0; +var ic_star_outline_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z" + }, + "children": [] + }] +}; +exports.ic_star_outline_twotone = ic_star_outline_twotone; \ No newline at end of file diff --git a/dist/md/ic_star_purple500_outline.js b/dist/md/ic_star_purple500_outline.js new file mode 100644 index 000000000..c69f05944 --- /dev/null +++ b/dist/md/ic_star_purple500_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_star_purple500_outline = void 0; +var ic_star_purple500_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27z" + }, + "children": [] + }] +}; +exports.ic_star_purple500_outline = ic_star_purple500_outline; \ No newline at end of file diff --git a/dist/md/ic_star_rate.js b/dist/md/ic_star_rate.js new file mode 100644 index 000000000..8eed9315b --- /dev/null +++ b/dist/md/ic_star_rate.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_star_rate = void 0; +var ic_star_rate = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "14.43,10 12,2 9.57,10 2,10 8.18,14.41 5.83,22 12,17.31 18.18,22 15.83,14.41 22,10" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "14.43,10 12,2 9.57,10 2,10 8.18,14.41 5.83,22 12,17.31 18.18,22 15.83,14.41 22,10" + }, + "children": [] + }] + }] + }] +}; +exports.ic_star_rate = ic_star_rate; \ No newline at end of file diff --git a/dist/md/ic_star_rate_outline.js b/dist/md/ic_star_rate_outline.js new file mode 100644 index 000000000..57a873740 --- /dev/null +++ b/dist/md/ic_star_rate_outline.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_star_rate_outline = void 0; +var ic_star_rate_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M12,8.89L12.94,12h2.82l-2.27,1.62l0.93,3.01L12,14.79l-2.42,1.84l0.93-3.01L8.24,12h2.82L12,8.89 M12,2l-2.42,8H2 l6.17,4.41L5.83,22L12,17.31L18.18,22l-2.35-7.59L22,10h-7.58L12,2L12,2z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,8.89L12.94,12h2.82l-2.27,1.62l0.93,3.01L12,14.79l-2.42,1.84l0.93-3.01L8.24,12h2.82L12,8.89 M12,2l-2.42,8H2 l6.17,4.41L5.83,22L12,17.31L18.18,22l-2.35-7.59L22,10h-7.58L12,2L12,2z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_star_rate_outline = ic_star_rate_outline; \ No newline at end of file diff --git a/dist/md/ic_star_rate_twotone.js b/dist/md/ic_star_rate_twotone.js new file mode 100644 index 000000000..8db995a45 --- /dev/null +++ b/dist/md/ic_star_rate_twotone.js @@ -0,0 +1,59 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_star_rate_twotone = void 0; +var ic_star_rate_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "enable-background": "new", + "opacity": ".3", + "points": "12.94,12 12,8.89 11.06,12 8.24,12 10.51,13.62 9.58,16.63 12,14.79 14.42,16.63 13.49,13.62 15.76,12" + }, + "children": [{ + "name": "polygon", + "attribs": { + "enable-background": "new", + "opacity": ".3", + "points": "12.94,12 12,8.89 11.06,12 8.24,12 10.51,13.62 9.58,16.63 12,14.79 14.42,16.63 13.49,13.62 15.76,12" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M22,10h-7.58L12,2l-2.42,8H2l6.17,4.41L5.83,22L12,17.31L18.17,22l-2.35-7.59L22,10z M14.42,16.63L12,14.79l-2.42,1.84 l0.93-3.01L8.24,12h2.82L12,8.89L12.94,12h2.82l-2.27,1.62L14.42,16.63z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,10h-7.58L12,2l-2.42,8H2l6.17,4.41L5.83,22L12,17.31L18.17,22l-2.35-7.59L22,10z M14.42,16.63L12,14.79l-2.42,1.84 l0.93-3.01L8.24,12h2.82L12,8.89L12.94,12h2.82l-2.27,1.62L14.42,16.63z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_star_rate_twotone = ic_star_rate_twotone; \ No newline at end of file diff --git a/dist/md/ic_star_twotone.js b/dist/md/ic_star_twotone.js new file mode 100644 index 000000000..0272d803f --- /dev/null +++ b/dist/md/ic_star_twotone.js @@ -0,0 +1,81 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_star_twotone = void 0; +var ic_star_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M0,0h24v24H0V0z", + "fill": "none" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M0,0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M0,0h24v24H0V0z", + "fill": "none" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M0,0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "opacity": ".3", + "points": "12,15.4 8.24,17.67 9.24,13.39 5.92,10.51 10.3,10.13 12,6.1 13.71,10.14 18.09,10.52 14.77,13.4 15.77,17.68" + }, + "children": [{ + "name": "polygon", + "attribs": { + "opacity": ".3", + "points": "12,15.4 8.24,17.67 9.24,13.39 5.92,10.51 10.3,10.13 12,6.1 13.71,10.14 18.09,10.52 14.77,13.4 15.77,17.68" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M22,9.24l-7.19-0.62L12,2L9.19,8.63L2,9.24l5.46,4.73L5.82,21L12,17.27L18.18,21l-1.63-7.03L22,9.24z M12,15.4l-3.76,2.27 l1-4.28l-3.32-2.88l4.38-0.38L12,6.1l1.71,4.04l4.38,0.38l-3.32,2.88l1,4.28L12,15.4z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,9.24l-7.19-0.62L12,2L9.19,8.63L2,9.24l5.46,4.73L5.82,21L12,17.27L18.18,21l-1.63-7.03L22,9.24z M12,15.4l-3.76,2.27 l1-4.28l-3.32-2.88l4.38-0.38L12,6.1l1.71,4.04l4.38,0.38l-3.32,2.88l1,4.28L12,15.4z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_star_twotone = ic_star_twotone; \ No newline at end of file diff --git a/dist/md/ic_stars.js b/dist/md/ic_stars.js new file mode 100644 index 000000000..af58eec06 --- /dev/null +++ b/dist/md/ic_stars.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_stars = void 0; +var ic_stars = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm4.24 16L12 15.45 7.77 18l1.12-4.81-3.73-3.23 4.92-.42L12 5l1.92 4.53 4.92.42-3.73 3.23L16.23 18z" + }, + "children": [] + }] +}; +exports.ic_stars = ic_stars; \ No newline at end of file diff --git a/dist/md/ic_stars_outline.js b/dist/md/ic_stars_outline.js new file mode 100644 index 000000000..7925be884 --- /dev/null +++ b/dist/md/ic_stars_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_stars_outline = void 0; +var ic_stars_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm7.48 7.16l-5.01-.43-2-4.71c3.21.19 5.91 2.27 7.01 5.14zm-5.07 6.26L12 13.98l-2.39 1.44.63-2.72-2.11-1.83 2.78-.24L12 8.06l1.09 2.56 2.78.24-2.11 1.83.64 2.73zm-2.86-11.4l-2 4.72-5.02.43c1.1-2.88 3.8-4.97 7.02-5.15zM4 12c0-.64.08-1.26.23-1.86l3.79 3.28-1.11 4.75C5.13 16.7 4 14.48 4 12zm3.84 6.82L12 16.31l4.16 2.5c-1.22.75-2.64 1.19-4.17 1.19-1.52 0-2.94-.44-4.15-1.18zm9.25-.65l-1.11-4.75 3.79-3.28c.14.59.23 1.22.23 1.86 0 2.48-1.14 4.7-2.91 6.17z" + }, + "children": [] + }] +}; +exports.ic_stars_outline = ic_stars_outline; \ No newline at end of file diff --git a/dist/md/ic_stars_twotone.js b/dist/md/ic_stars_twotone.js new file mode 100644 index 000000000..0bbb2e70a --- /dev/null +++ b/dist/md/ic_stars_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_stars_twotone = void 0; +var ic_stars_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.47 9.16c-1.1-2.87-3.8-4.95-7.01-5.14l2 4.71 5.01.43zm-7.93-5.14c-3.22.18-5.92 2.27-7.02 5.15l5.02-.43 2-4.72zm-7.31 6.12C4.08 10.74 4 11.36 4 12c0 2.48 1.14 4.7 2.91 6.17l1.11-4.75-3.79-3.28zm15.54-.01l-3.79 3.28 1.1 4.76C18.86 16.7 20 14.48 20 12c0-.64-.09-1.27-.23-1.87zM7.84 18.82c1.21.74 2.63 1.18 4.15 1.18 1.53 0 2.95-.44 4.17-1.18L12 16.31l-4.16 2.51z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm7.48 7.16l-5.01-.43-2-4.71c3.21.19 5.91 2.27 7.01 5.14zM12 8.06l1.09 2.56 2.78.24-2.11 1.83.63 2.73L12 13.98l-2.39 1.44.63-2.72-2.11-1.83 2.78-.24L12 8.06zm-.46-4.04l-2 4.72-5.02.43c1.1-2.88 3.8-4.97 7.02-5.15zM4 12c0-.64.08-1.26.23-1.86l3.79 3.28-1.11 4.75C5.14 16.7 4 14.48 4 12zm7.99 8c-1.52 0-2.94-.44-4.15-1.18L12 16.31l4.16 2.51c-1.22.74-2.64 1.18-4.17 1.18zm5.1-1.83l-1.1-4.76 3.79-3.28c.13.6.22 1.23.22 1.87 0 2.48-1.14 4.7-2.91 6.17z" + }, + "children": [] + }] +}; +exports.ic_stars_twotone = ic_stars_twotone; \ No newline at end of file diff --git a/dist/md/ic_stay_current_landscape.js b/dist/md/ic_stay_current_landscape.js new file mode 100644 index 000000000..6a06f2c46 --- /dev/null +++ b/dist/md/ic_stay_current_landscape.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_stay_current_landscape = void 0; +var ic_stay_current_landscape = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M1.01 7L1 17c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2H3c-1.1 0-1.99.9-1.99 2zM19 7v10H5V7h14z" + }, + "children": [] + }] +}; +exports.ic_stay_current_landscape = ic_stay_current_landscape; \ No newline at end of file diff --git a/dist/md/ic_stay_current_landscape_outline.js b/dist/md/ic_stay_current_landscape_outline.js new file mode 100644 index 000000000..1593990d9 --- /dev/null +++ b/dist/md/ic_stay_current_landscape_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_stay_current_landscape_outline = void 0; +var ic_stay_current_landscape_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M1.01 7L1 17c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2H3c-1.1 0-1.99.9-1.99 2zM19 7v10H5V7h14z" + }, + "children": [] + }] +}; +exports.ic_stay_current_landscape_outline = ic_stay_current_landscape_outline; \ No newline at end of file diff --git a/dist/md/ic_stay_current_landscape_twotone.js b/dist/md/ic_stay_current_landscape_twotone.js new file mode 100644 index 000000000..f835a9008 --- /dev/null +++ b/dist/md/ic_stay_current_landscape_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_stay_current_landscape_twotone = void 0; +var ic_stay_current_landscape_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 7h14v10H5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 5H3c-1.1 0-1.99.9-1.99 2L1 17c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-2 12H5V7h14v10z" + }, + "children": [] + }] +}; +exports.ic_stay_current_landscape_twotone = ic_stay_current_landscape_twotone; \ No newline at end of file diff --git a/dist/md/ic_stay_current_portrait.js b/dist/md/ic_stay_current_portrait.js new file mode 100644 index 000000000..4d2b480d2 --- /dev/null +++ b/dist/md/ic_stay_current_portrait.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_stay_current_portrait = void 0; +var ic_stay_current_portrait = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 1.01L7 1c-1.1 0-1.99.9-1.99 2v18c0 1.1.89 2 1.99 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z" + }, + "children": [] + }] +}; +exports.ic_stay_current_portrait = ic_stay_current_portrait; \ No newline at end of file diff --git a/dist/md/ic_stay_current_portrait_outline.js b/dist/md/ic_stay_current_portrait_outline.js new file mode 100644 index 000000000..75804816f --- /dev/null +++ b/dist/md/ic_stay_current_portrait_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_stay_current_portrait_outline = void 0; +var ic_stay_current_portrait_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 1.01L7 1c-1.1 0-1.99.9-1.99 2v18c0 1.1.89 2 1.99 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z" + }, + "children": [] + }] +}; +exports.ic_stay_current_portrait_outline = ic_stay_current_portrait_outline; \ No newline at end of file diff --git a/dist/md/ic_stay_current_portrait_twotone.js b/dist/md/ic_stay_current_portrait_twotone.js new file mode 100644 index 000000000..501273cef --- /dev/null +++ b/dist/md/ic_stay_current_portrait_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_stay_current_portrait_twotone = void 0; +var ic_stay_current_portrait_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 5h10v14H7z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 1.01L7 1c-1.1 0-1.99.9-1.99 2v18c0 1.1.89 2 1.99 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z" + }, + "children": [] + }] +}; +exports.ic_stay_current_portrait_twotone = ic_stay_current_portrait_twotone; \ No newline at end of file diff --git a/dist/md/ic_stay_primary_landscape.js b/dist/md/ic_stay_primary_landscape.js new file mode 100644 index 000000000..e1fe4334e --- /dev/null +++ b/dist/md/ic_stay_primary_landscape.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_stay_primary_landscape = void 0; +var ic_stay_primary_landscape = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M1.01 7L1 17c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2H3c-1.1 0-1.99.9-1.99 2zM19 7v10H5V7h14z" + }, + "children": [] + }] +}; +exports.ic_stay_primary_landscape = ic_stay_primary_landscape; \ No newline at end of file diff --git a/dist/md/ic_stay_primary_landscape_outline.js b/dist/md/ic_stay_primary_landscape_outline.js new file mode 100644 index 000000000..5794ba115 --- /dev/null +++ b/dist/md/ic_stay_primary_landscape_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_stay_primary_landscape_outline = void 0; +var ic_stay_primary_landscape_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M1.01 7L1 17c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2H3c-1.1 0-1.99.9-1.99 2zM19 7v10H5V7h14z" + }, + "children": [] + }] +}; +exports.ic_stay_primary_landscape_outline = ic_stay_primary_landscape_outline; \ No newline at end of file diff --git a/dist/md/ic_stay_primary_landscape_twotone.js b/dist/md/ic_stay_primary_landscape_twotone.js new file mode 100644 index 000000000..ae387a845 --- /dev/null +++ b/dist/md/ic_stay_primary_landscape_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_stay_primary_landscape_twotone = void 0; +var ic_stay_primary_landscape_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 7h14v10H5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 5H3c-1.1 0-1.99.9-1.99 2L1 17c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-2 12H5V7h14v10z" + }, + "children": [] + }] +}; +exports.ic_stay_primary_landscape_twotone = ic_stay_primary_landscape_twotone; \ No newline at end of file diff --git a/dist/md/ic_stay_primary_portrait.js b/dist/md/ic_stay_primary_portrait.js new file mode 100644 index 000000000..fd20db65c --- /dev/null +++ b/dist/md/ic_stay_primary_portrait.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_stay_primary_portrait = void 0; +var ic_stay_primary_portrait = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 1.01L7 1c-1.1 0-1.99.9-1.99 2v18c0 1.1.89 2 1.99 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z" + }, + "children": [] + }] +}; +exports.ic_stay_primary_portrait = ic_stay_primary_portrait; \ No newline at end of file diff --git a/dist/md/ic_stay_primary_portrait_outline.js b/dist/md/ic_stay_primary_portrait_outline.js new file mode 100644 index 000000000..2a31cbb51 --- /dev/null +++ b/dist/md/ic_stay_primary_portrait_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_stay_primary_portrait_outline = void 0; +var ic_stay_primary_portrait_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 1.01L7 1c-1.1 0-1.99.9-1.99 2v18c0 1.1.89 2 1.99 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z" + }, + "children": [] + }] +}; +exports.ic_stay_primary_portrait_outline = ic_stay_primary_portrait_outline; \ No newline at end of file diff --git a/dist/md/ic_stay_primary_portrait_twotone.js b/dist/md/ic_stay_primary_portrait_twotone.js new file mode 100644 index 000000000..f21e65c54 --- /dev/null +++ b/dist/md/ic_stay_primary_portrait_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_stay_primary_portrait_twotone = void 0; +var ic_stay_primary_portrait_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 5h10v14H7z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 1.01L7 1c-1.1 0-1.99.9-1.99 2v18c0 1.1.89 2 1.99 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z" + }, + "children": [] + }] +}; +exports.ic_stay_primary_portrait_twotone = ic_stay_primary_portrait_twotone; \ No newline at end of file diff --git a/dist/md/ic_sticky_note_2.js b/dist/md/ic_sticky_note_2.js new file mode 100644 index 000000000..e9afea199 --- /dev/null +++ b/dist/md/ic_sticky_note_2.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sticky_note_2 = void 0; +var ic_sticky_note_2 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19,3H4.99C3.89,3,3,3.9,3,5l0.01,14c0,1.1,0.89,2,1.99,2h10l6-6V5C21,3.9,20.1,3,19,3z M7,8h10v2H7V8z M12,14H7v-2h5V14z M14,19.5V14h5.5L14,19.5z" + }, + "children": [] + }] +}; +exports.ic_sticky_note_2 = ic_sticky_note_2; \ No newline at end of file diff --git a/dist/md/ic_sticky_note_2_outline.js b/dist/md/ic_sticky_note_2_outline.js new file mode 100644 index 000000000..9ca96ed5d --- /dev/null +++ b/dist/md/ic_sticky_note_2_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sticky_note_2_outline = void 0; +var ic_sticky_note_2_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19,5v9l-5,0l0,5H5V5H19 M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h10l6-6V5C21,3.9,20.1,3,19,3z M12,14H7v-2h5V14z M17,10H7V8h10V10z" + }, + "children": [] + }] +}; +exports.ic_sticky_note_2_outline = ic_sticky_note_2_outline; \ No newline at end of file diff --git a/dist/md/ic_sticky_note_2_twotone.js b/dist/md/ic_sticky_note_2_twotone.js new file mode 100644 index 000000000..594819542 --- /dev/null +++ b/dist/md/ic_sticky_note_2_twotone.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sticky_note_2_twotone = void 0; +var ic_sticky_note_2_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5,5v14h9v-5h5V5H5z M12,14H7v-2h5V14z M17,10H7V8h10V10z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19,5v9l-5,0l0,5H5V5H19 M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h10l6-6V5C21,3.9,20.1,3,19,3z M12,14H7v-2h5V14z M17,10H7V8h10V10z" + }, + "children": [] + }] +}; +exports.ic_sticky_note_2_twotone = ic_sticky_note_2_twotone; \ No newline at end of file diff --git a/dist/md/ic_stop.js b/dist/md/ic_stop.js new file mode 100644 index 000000000..427f17049 --- /dev/null +++ b/dist/md/ic_stop.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_stop = void 0; +var ic_stop = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 6h12v12H6z" + }, + "children": [] + }] +}; +exports.ic_stop = ic_stop; \ No newline at end of file diff --git a/dist/md/ic_stop_circle.js b/dist/md/ic_stop_circle.js new file mode 100644 index 000000000..a2457ee15 --- /dev/null +++ b/dist/md/ic_stop_circle.js @@ -0,0 +1,49 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_stop_circle = void 0; +var ic_stop_circle = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M8,16h8V8H8V16z M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10 S17.52,2,12,2L12,2z", + "fill-rule": "evenodd" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M8,16h8V8H8V16z M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10 S17.52,2,12,2L12,2z", + "fill-rule": "evenodd" + }, + "children": [] + }] + }] + }] +}; +exports.ic_stop_circle = ic_stop_circle; \ No newline at end of file diff --git a/dist/md/ic_stop_circle_outline.js b/dist/md/ic_stop_circle_outline.js new file mode 100644 index 000000000..8eee34bcb --- /dev/null +++ b/dist/md/ic_stop_circle_outline.js @@ -0,0 +1,73 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_stop_circle_outline = void 0; +var ic_stop_circle_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "height": "8", + "width": "8", + "x": "8", + "y": "8" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "8", + "width": "8", + "x": "8", + "y": "8" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8c0-4.41,3.59-8,8-8 s8,3.59,8,8C20,16.41,16.41,20,12,20z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8c0-4.41,3.59-8,8-8 s8,3.59,8,8C20,16.41,16.41,20,12,20z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_stop_circle_outline = ic_stop_circle_outline; \ No newline at end of file diff --git a/dist/md/ic_stop_circle_twotone.js b/dist/md/ic_stop_circle_twotone.js new file mode 100644 index 000000000..44663fe24 --- /dev/null +++ b/dist/md/ic_stop_circle_twotone.js @@ -0,0 +1,87 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_stop_circle_twotone = void 0; +var ic_stop_circle_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,4c-4.41,0-8,3.59-8,8c0,4.41,3.59,8,8,8c4.41,0,8-3.59,8-8C20,7.59,16.41,4,12,4z M16,16H8V8h8V16z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,4c-4.41,0-8,3.59-8,8c0,4.41,3.59,8,8,8c4.41,0,8-3.59,8-8C20,7.59,16.41,4,12,4z M16,16H8V8h8V16z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "8", + "width": "8", + "x": "8", + "y": "8" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "8", + "width": "8", + "x": "8", + "y": "8" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8c0-4.41,3.59-8,8-8 c4.41,0,8,3.59,8,8C20,16.41,16.41,20,12,20z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8c0-4.41,3.59-8,8-8 c4.41,0,8,3.59,8,8C20,16.41,16.41,20,12,20z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_stop_circle_twotone = ic_stop_circle_twotone; \ No newline at end of file diff --git a/dist/md/ic_stop_outline.js b/dist/md/ic_stop_outline.js new file mode 100644 index 000000000..b45ebe8d6 --- /dev/null +++ b/dist/md/ic_stop_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_stop_outline = void 0; +var ic_stop_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 8v8H8V8h8m2-2H6v12h12V6z" + }, + "children": [] + }] +}; +exports.ic_stop_outline = ic_stop_outline; \ No newline at end of file diff --git a/dist/md/ic_stop_screen_share.js b/dist/md/ic_stop_screen_share.js new file mode 100644 index 000000000..220baaf74 --- /dev/null +++ b/dist/md/ic_stop_screen_share.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_stop_screen_share = void 0; +var ic_stop_screen_share = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21.22 18.02l2 2H24v-2h-2.78zm.77-2l.01-10c0-1.11-.9-2-2-2H7.22l5.23 5.23c.18-.04.36-.07.55-.1V7.02l4 3.73-1.58 1.47 5.54 5.54c.61-.33 1.03-.99 1.03-1.74zM2.39 1.73L1.11 3l1.54 1.54c-.4.36-.65.89-.65 1.48v10c0 1.1.89 2 2 2H0v2h18.13l2.71 2.71 1.27-1.27L2.39 1.73zM7 15.02c.31-1.48.92-2.95 2.07-4.06l1.59 1.59c-1.54.38-2.7 1.18-3.66 2.47z" + }, + "children": [] + }] +}; +exports.ic_stop_screen_share = ic_stop_screen_share; \ No newline at end of file diff --git a/dist/md/ic_stop_screen_share_outline.js b/dist/md/ic_stop_screen_share_outline.js new file mode 100644 index 000000000..fb33967e3 --- /dev/null +++ b/dist/md/ic_stop_screen_share_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_stop_screen_share_outline = void 0; +var ic_stop_screen_share_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21.79 18l2 2H24v-2h-2.21zM1.11 2.98l1.55 1.56c-.41.37-.66.89-.66 1.48V16c0 1.1.9 2 2.01 2H0v2h18.13l2.71 2.71 1.41-1.41L2.52 1.57 1.11 2.98zM4 6.02h.13l4.95 4.93C7.94 12.07 7.31 13.52 7 15c.96-1.29 2.13-2.08 3.67-2.46l3.46 3.48H4v-10zm16 0v10.19l1.3 1.3c.42-.37.7-.89.7-1.49v-10c0-1.11-.9-2-2-2H7.8l2 2H20zm-7.07 3.13l2.79 2.78 1.28-1.2L13 7v2.13l-.07.02z" + }, + "children": [] + }] +}; +exports.ic_stop_screen_share_outline = ic_stop_screen_share_outline; \ No newline at end of file diff --git a/dist/md/ic_stop_screen_share_twotone.js b/dist/md/ic_stop_screen_share_twotone.js new file mode 100644 index 000000000..70bcc23ff --- /dev/null +++ b/dist/md/ic_stop_screen_share_twotone.js @@ -0,0 +1,38 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_stop_screen_share_twotone = void 0; +var ic_stop_screen_share_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10.67 12.54C9.13 12.92 7.96 13.71 7 15c.31-1.48.94-2.93 2.08-4.05L4.13 6.02H4v10.01h10.14l-3.47-3.49z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21.79 18l2 2H24v-2h-2.21zM1.11 2.98l1.55 1.56c-.41.37-.66.89-.66 1.48V16c0 1.1.9 2 2.01 2H0v2h18.13l2.71 2.71 1.41-1.41L2.52 1.57 1.11 2.98zM4 6.02h.13l4.95 4.93C7.94 12.07 7.31 13.52 7 15c.96-1.29 2.13-2.08 3.67-2.46l3.46 3.48H4v-10zm16 0v10.19l1.3 1.3c.42-.37.7-.89.7-1.49v-10c0-1.11-.9-2-2-2H7.8l2 2H20zm-7.07 3.13l2.79 2.78 1.28-1.2L13 7v2.13l-.07.02z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 6.02H9.8l3.13 3.13c.02 0 .04-.01.07-.02V7l4 3.73-1.28 1.2L20 16.21V6.02z", + "opacity": ".3" + }, + "children": [] + }] +}; +exports.ic_stop_screen_share_twotone = ic_stop_screen_share_twotone; \ No newline at end of file diff --git a/dist/md/ic_stop_twotone.js b/dist/md/ic_stop_twotone.js new file mode 100644 index 000000000..d529f85bb --- /dev/null +++ b/dist/md/ic_stop_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_stop_twotone = void 0; +var ic_stop_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8 8h8v8H8z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 18h12V6H6v12zM8 8h8v8H8V8z" + }, + "children": [] + }] +}; +exports.ic_stop_twotone = ic_stop_twotone; \ No newline at end of file diff --git a/dist/md/ic_storage.js b/dist/md/ic_storage.js new file mode 100644 index 000000000..fb617d6ab --- /dev/null +++ b/dist/md/ic_storage.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_storage = void 0; +var ic_storage = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M2 20h20v-4H2v4zm2-3h2v2H4v-2zM2 4v4h20V4H2zm4 3H4V5h2v2zm-4 7h20v-4H2v4zm2-3h2v2H4v-2z" + }, + "children": [] + }] +}; +exports.ic_storage = ic_storage; \ No newline at end of file diff --git a/dist/md/ic_storage_outline.js b/dist/md/ic_storage_outline.js new file mode 100644 index 000000000..c439654e2 --- /dev/null +++ b/dist/md/ic_storage_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_storage_outline = void 0; +var ic_storage_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M2 20h20v-4H2v4zm2-3h2v2H4v-2zM2 4v4h20V4H2zm4 3H4V5h2v2zm-4 7h20v-4H2v4zm2-3h2v2H4v-2z" + }, + "children": [] + }] +}; +exports.ic_storage_outline = ic_storage_outline; \ No newline at end of file diff --git a/dist/md/ic_storage_twotone.js b/dist/md/ic_storage_twotone.js new file mode 100644 index 000000000..5d5decd7b --- /dev/null +++ b/dist/md/ic_storage_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_storage_twotone = void 0; +var ic_storage_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M2 20h20v-4H2v4zm2-3h2v2H4v-2zM2 4v4h20V4H2zm4 3H4V5h2v2zm-4 7h20v-4H2v4zm2-3h2v2H4v-2z" + }, + "children": [] + }] +}; +exports.ic_storage_twotone = ic_storage_twotone; \ No newline at end of file diff --git a/dist/md/ic_store.js b/dist/md/ic_store.js new file mode 100644 index 000000000..8e67ec38c --- /dev/null +++ b/dist/md/ic_store.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_store = void 0; +var ic_store = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 4H4v2h16V4zm1 10v-2l-1-5H4l-1 5v2h1v6h10v-6h4v6h2v-6h1zm-9 4H6v-4h6v4z" + }, + "children": [] + }] +}; +exports.ic_store = ic_store; \ No newline at end of file diff --git a/dist/md/ic_store_mall_directory.js b/dist/md/ic_store_mall_directory.js new file mode 100644 index 000000000..01ff1de09 --- /dev/null +++ b/dist/md/ic_store_mall_directory.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_store_mall_directory = void 0; +var ic_store_mall_directory = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 4H4v2h16V4zm1 10v-2l-1-5H4l-1 5v2h1v6h10v-6h4v6h2v-6h1zm-9 4H6v-4h6v4z" + }, + "children": [] + }] +}; +exports.ic_store_mall_directory = ic_store_mall_directory; \ No newline at end of file diff --git a/dist/md/ic_store_mall_directory_outline.js b/dist/md/ic_store_mall_directory_outline.js new file mode 100644 index 000000000..734bfc362 --- /dev/null +++ b/dist/md/ic_store_mall_directory_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_store_mall_directory_outline = void 0; +var ic_store_mall_directory_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18.36 9l.6 3H5.04l.6-3h12.72M20 4H4v2h16V4zm0 3H4l-1 5v2h1v6h10v-6h4v6h2v-6h1v-2l-1-5zM6 18v-4h6v4H6z" + }, + "children": [] + }] +}; +exports.ic_store_mall_directory_outline = ic_store_mall_directory_outline; \ No newline at end of file diff --git a/dist/md/ic_store_mall_directory_twotone.js b/dist/md/ic_store_mall_directory_twotone.js new file mode 100644 index 000000000..f12cd3782 --- /dev/null +++ b/dist/md/ic_store_mall_directory_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_store_mall_directory_twotone = void 0; +var ic_store_mall_directory_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5.64 9l-.6 3h13.92l-.6-3z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 7l-1 5v2h1v6h10v-6h4v6h2v-6h1v-2l-1-5H4zm8 11H6v-4h6v4zm-6.96-6l.6-3h12.72l.6 3H5.04zM4 4h16v2H4z" + }, + "children": [] + }] +}; +exports.ic_store_mall_directory_twotone = ic_store_mall_directory_twotone; \ No newline at end of file diff --git a/dist/md/ic_store_outline.js b/dist/md/ic_store_outline.js new file mode 100644 index 000000000..6b11448c0 --- /dev/null +++ b/dist/md/ic_store_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_store_outline = void 0; +var ic_store_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18.36 9l.6 3H5.04l.6-3h12.72M20 4H4v2h16V4zm0 3H4l-1 5v2h1v6h10v-6h4v6h2v-6h1v-2l-1-5zM6 18v-4h6v4H6z" + }, + "children": [] + }] +}; +exports.ic_store_outline = ic_store_outline; \ No newline at end of file diff --git a/dist/md/ic_store_twotone.js b/dist/md/ic_store_twotone.js new file mode 100644 index 000000000..e0770650f --- /dev/null +++ b/dist/md/ic_store_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_store_twotone = void 0; +var ic_store_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5.64 9l-.6 3h13.92l-.6-3z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 4h16v2H4zm16 3H4l-1 5v2h1v6h10v-6h4v6h2v-6h1v-2l-1-5zm-8 11H6v-4h6v4zm-6.96-6l.6-3h12.72l.6 3H5.04z" + }, + "children": [] + }] +}; +exports.ic_store_twotone = ic_store_twotone; \ No newline at end of file diff --git a/dist/md/ic_storefront.js b/dist/md/ic_storefront.js new file mode 100644 index 000000000..f81dc439c --- /dev/null +++ b/dist/md/ic_storefront.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_storefront = void 0; +var ic_storefront = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M21.9,8.89l-1.05-4.37c-0.22-0.9-1-1.52-1.91-1.52H5.05C4.15,3,3.36,3.63,3.15,4.52L2.1,8.89 c-0.24,1.02-0.02,2.06,0.62,2.88C2.8,11.88,2.91,11.96,3,12.06V19c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2v-6.94 c0.09-0.09,0.2-0.18,0.28-0.28C21.92,10.96,22.15,9.91,21.9,8.89z M18.91,4.99l1.05,4.37c0.1,0.42,0.01,0.84-0.25,1.17 C19.57,10.71,19.27,11,18.77,11c-0.61,0-1.14-0.49-1.21-1.14L16.98,5L18.91,4.99z M13,5h1.96l0.54,4.52 c0.05,0.39-0.07,0.78-0.33,1.07C14.95,10.85,14.63,11,14.22,11C13.55,11,13,10.41,13,9.69V5z M8.49,9.52L9.04,5H11v4.69 C11,10.41,10.45,11,9.71,11c-0.34,0-0.65-0.15-0.89-0.41C8.57,10.3,8.45,9.91,8.49,9.52z M4.04,9.36L5.05,5h1.97L6.44,9.86 C6.36,10.51,5.84,11,5.23,11c-0.49,0-0.8-0.29-0.93-0.47C4.03,10.21,3.94,9.78,4.04,9.36z M5,19v-6.03C5.08,12.98,5.15,13,5.23,13 c0.87,0,1.66-0.36,2.24-0.95c0.6,0.6,1.4,0.95,2.31,0.95c0.87,0,1.65-0.36,2.23-0.93c0.59,0.57,1.39,0.93,2.29,0.93 c0.84,0,1.64-0.35,2.24-0.95c0.58,0.59,1.37,0.95,2.24,0.95c0.08,0,0.15-0.02,0.23-0.03V19H5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21.9,8.89l-1.05-4.37c-0.22-0.9-1-1.52-1.91-1.52H5.05C4.15,3,3.36,3.63,3.15,4.52L2.1,8.89 c-0.24,1.02-0.02,2.06,0.62,2.88C2.8,11.88,2.91,11.96,3,12.06V19c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2v-6.94 c0.09-0.09,0.2-0.18,0.28-0.28C21.92,10.96,22.15,9.91,21.9,8.89z M18.91,4.99l1.05,4.37c0.1,0.42,0.01,0.84-0.25,1.17 C19.57,10.71,19.27,11,18.77,11c-0.61,0-1.14-0.49-1.21-1.14L16.98,5L18.91,4.99z M13,5h1.96l0.54,4.52 c0.05,0.39-0.07,0.78-0.33,1.07C14.95,10.85,14.63,11,14.22,11C13.55,11,13,10.41,13,9.69V5z M8.49,9.52L9.04,5H11v4.69 C11,10.41,10.45,11,9.71,11c-0.34,0-0.65-0.15-0.89-0.41C8.57,10.3,8.45,9.91,8.49,9.52z M4.04,9.36L5.05,5h1.97L6.44,9.86 C6.36,10.51,5.84,11,5.23,11c-0.49,0-0.8-0.29-0.93-0.47C4.03,10.21,3.94,9.78,4.04,9.36z M5,19v-6.03C5.08,12.98,5.15,13,5.23,13 c0.87,0,1.66-0.36,2.24-0.95c0.6,0.6,1.4,0.95,2.31,0.95c0.87,0,1.65-0.36,2.23-0.93c0.59,0.57,1.39,0.93,2.29,0.93 c0.84,0,1.64-0.35,2.24-0.95c0.58,0.59,1.37,0.95,2.24,0.95c0.08,0,0.15-0.02,0.23-0.03V19H5z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_storefront = ic_storefront; \ No newline at end of file diff --git a/dist/md/ic_storefront_outline.js b/dist/md/ic_storefront_outline.js new file mode 100644 index 000000000..5d22381eb --- /dev/null +++ b/dist/md/ic_storefront_outline.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_storefront_outline = void 0; +var ic_storefront_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M21.9,8.89l-1.05-4.37c-0.22-0.9-1-1.52-1.91-1.52H5.05C4.15,3,3.36,3.63,3.15,4.52L2.1,8.89 c-0.24,1.02-0.02,2.06,0.62,2.88C2.8,11.88,2.91,11.96,3,12.06V19c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2v-6.94 c0.09-0.09,0.2-0.18,0.28-0.28C21.92,10.96,22.15,9.91,21.9,8.89z M18.91,4.99l1.05,4.37c0.1,0.42,0.01,0.84-0.25,1.17 C19.57,10.71,19.27,11,18.77,11c-0.61,0-1.14-0.49-1.21-1.14L16.98,5L18.91,4.99z M13,5h1.96l0.54,4.52 c0.05,0.39-0.07,0.78-0.33,1.07C14.95,10.85,14.63,11,14.22,11C13.55,11,13,10.41,13,9.69V5z M8.49,9.52L9.04,5H11v4.69 C11,10.41,10.45,11,9.71,11c-0.34,0-0.65-0.15-0.89-0.41C8.57,10.3,8.45,9.91,8.49,9.52z M4.04,9.36L5.05,5h1.97L6.44,9.86 C6.36,10.51,5.84,11,5.23,11c-0.49,0-0.8-0.29-0.93-0.47C4.03,10.21,3.94,9.78,4.04,9.36z M5,19v-6.03C5.08,12.98,5.15,13,5.23,13 c0.87,0,1.66-0.36,2.24-0.95c0.6,0.6,1.4,0.95,2.31,0.95c0.87,0,1.65-0.36,2.23-0.93c0.59,0.57,1.39,0.93,2.29,0.93 c0.84,0,1.64-0.35,2.24-0.95c0.58,0.59,1.37,0.95,2.24,0.95c0.08,0,0.15-0.02,0.23-0.03V19H5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21.9,8.89l-1.05-4.37c-0.22-0.9-1-1.52-1.91-1.52H5.05C4.15,3,3.36,3.63,3.15,4.52L2.1,8.89 c-0.24,1.02-0.02,2.06,0.62,2.88C2.8,11.88,2.91,11.96,3,12.06V19c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2v-6.94 c0.09-0.09,0.2-0.18,0.28-0.28C21.92,10.96,22.15,9.91,21.9,8.89z M18.91,4.99l1.05,4.37c0.1,0.42,0.01,0.84-0.25,1.17 C19.57,10.71,19.27,11,18.77,11c-0.61,0-1.14-0.49-1.21-1.14L16.98,5L18.91,4.99z M13,5h1.96l0.54,4.52 c0.05,0.39-0.07,0.78-0.33,1.07C14.95,10.85,14.63,11,14.22,11C13.55,11,13,10.41,13,9.69V5z M8.49,9.52L9.04,5H11v4.69 C11,10.41,10.45,11,9.71,11c-0.34,0-0.65-0.15-0.89-0.41C8.57,10.3,8.45,9.91,8.49,9.52z M4.04,9.36L5.05,5h1.97L6.44,9.86 C6.36,10.51,5.84,11,5.23,11c-0.49,0-0.8-0.29-0.93-0.47C4.03,10.21,3.94,9.78,4.04,9.36z M5,19v-6.03C5.08,12.98,5.15,13,5.23,13 c0.87,0,1.66-0.36,2.24-0.95c0.6,0.6,1.4,0.95,2.31,0.95c0.87,0,1.65-0.36,2.23-0.93c0.59,0.57,1.39,0.93,2.29,0.93 c0.84,0,1.64-0.35,2.24-0.95c0.58,0.59,1.37,0.95,2.24,0.95c0.08,0,0.15-0.02,0.23-0.03V19H5z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_storefront_outline = ic_storefront_outline; \ No newline at end of file diff --git a/dist/md/ic_storefront_twotone.js b/dist/md/ic_storefront_twotone.js new file mode 100644 index 000000000..0a7ec4c50 --- /dev/null +++ b/dist/md/ic_storefront_twotone.js @@ -0,0 +1,119 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_storefront_twotone = void 0; +var ic_storefront_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M6.44,9.86L7.02,5H5.05L4.04,9.36c-0.1,0.42-0.01,0.84,0.25,1.17C4.43,10.71,4.73,11,5.23,11 C5.84,11,6.36,10.51,6.44,9.86z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M6.44,9.86L7.02,5H5.05L4.04,9.36c-0.1,0.42-0.01,0.84,0.25,1.17C4.43,10.71,4.73,11,5.23,11 C5.84,11,6.36,10.51,6.44,9.86z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M9.71,11C10.45,11,11,10.41,11,9.69V5H9.04L8.49,9.52c-0.05,0.39,0.07,0.78,0.33,1.07 C9.05,10.85,9.37,11,9.71,11z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M9.71,11C10.45,11,11,10.41,11,9.69V5H9.04L8.49,9.52c-0.05,0.39,0.07,0.78,0.33,1.07 C9.05,10.85,9.37,11,9.71,11z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M14.22,11c0.41,0,0.72-0.15,0.96-0.41c0.25-0.29,0.37-0.68,0.33-1.07L14.96,5H13v4.69 C13,10.41,13.55,11,14.22,11z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14.22,11c0.41,0,0.72-0.15,0.96-0.41c0.25-0.29,0.37-0.68,0.33-1.07L14.96,5H13v4.69 C13,10.41,13.55,11,14.22,11z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M18.91,4.99L16.98,5l0.58,4.86c0.08,0.65,0.6,1.14,1.21,1.14c0.49,0,0.8-0.29,0.93-0.47 c0.26-0.33,0.35-0.76,0.25-1.17L18.91,4.99z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18.91,4.99L16.98,5l0.58,4.86c0.08,0.65,0.6,1.14,1.21,1.14c0.49,0,0.8-0.29,0.93-0.47 c0.26-0.33,0.35-0.76,0.25-1.17L18.91,4.99z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M21.9,8.89l-1.05-4.37c-0.22-0.9-1-1.52-1.91-1.52H5.05C4.15,3,3.36,3.63,3.15,4.52L2.1,8.89 c-0.24,1.02-0.02,2.06,0.62,2.88C2.8,11.88,2.91,11.96,3,12.06V19c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2v-6.94 c0.09-0.09,0.2-0.18,0.28-0.28C21.92,10.96,22.15,9.91,21.9,8.89z M13,5h1.96l0.54,4.52c0.05,0.39-0.07,0.78-0.33,1.07 C14.95,10.85,14.63,11,14.22,11C13.55,11,13,10.41,13,9.69V5z M8.49,9.52L9.04,5H11v4.69C11,10.41,10.45,11,9.71,11 c-0.34,0-0.65-0.15-0.89-0.41C8.57,10.3,8.45,9.91,8.49,9.52z M4.29,10.53c-0.26-0.33-0.35-0.76-0.25-1.17L5.05,5h1.97L6.44,9.86 C6.36,10.51,5.84,11,5.23,11C4.73,11,4.43,10.71,4.29,10.53z M19,19H5v-6.03C5.08,12.98,5.15,13,5.23,13 c0.87,0,1.66-0.36,2.24-0.95c0.6,0.6,1.4,0.95,2.31,0.95c0.87,0,1.65-0.36,2.23-0.93c0.59,0.57,1.39,0.93,2.29,0.93 c0.84,0,1.64-0.35,2.24-0.95c0.58,0.59,1.37,0.95,2.24,0.95c0.08,0,0.15-0.02,0.23-0.03V19z M19.71,10.53 C19.57,10.71,19.27,11,18.77,11c-0.61,0-1.14-0.49-1.21-1.14L16.98,5l1.93-0.01l1.05,4.37C20.06,9.78,19.97,10.21,19.71,10.53z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21.9,8.89l-1.05-4.37c-0.22-0.9-1-1.52-1.91-1.52H5.05C4.15,3,3.36,3.63,3.15,4.52L2.1,8.89 c-0.24,1.02-0.02,2.06,0.62,2.88C2.8,11.88,2.91,11.96,3,12.06V19c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2v-6.94 c0.09-0.09,0.2-0.18,0.28-0.28C21.92,10.96,22.15,9.91,21.9,8.89z M13,5h1.96l0.54,4.52c0.05,0.39-0.07,0.78-0.33,1.07 C14.95,10.85,14.63,11,14.22,11C13.55,11,13,10.41,13,9.69V5z M8.49,9.52L9.04,5H11v4.69C11,10.41,10.45,11,9.71,11 c-0.34,0-0.65-0.15-0.89-0.41C8.57,10.3,8.45,9.91,8.49,9.52z M4.29,10.53c-0.26-0.33-0.35-0.76-0.25-1.17L5.05,5h1.97L6.44,9.86 C6.36,10.51,5.84,11,5.23,11C4.73,11,4.43,10.71,4.29,10.53z M19,19H5v-6.03C5.08,12.98,5.15,13,5.23,13 c0.87,0,1.66-0.36,2.24-0.95c0.6,0.6,1.4,0.95,2.31,0.95c0.87,0,1.65-0.36,2.23-0.93c0.59,0.57,1.39,0.93,2.29,0.93 c0.84,0,1.64-0.35,2.24-0.95c0.58,0.59,1.37,0.95,2.24,0.95c0.08,0,0.15-0.02,0.23-0.03V19z M19.71,10.53 C19.57,10.71,19.27,11,18.77,11c-0.61,0-1.14-0.49-1.21-1.14L16.98,5l1.93-0.01l1.05,4.37C20.06,9.78,19.97,10.21,19.71,10.53z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_storefront_twotone = ic_storefront_twotone; \ No newline at end of file diff --git a/dist/md/ic_straighten.js b/dist/md/ic_straighten.js new file mode 100644 index 000000000..8ca3f06fb --- /dev/null +++ b/dist/md/ic_straighten.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_straighten = void 0; +var ic_straighten = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 6H3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 10H3V8h2v4h2V8h2v4h2V8h2v4h2V8h2v4h2V8h2v8z" + }, + "children": [] + }] +}; +exports.ic_straighten = ic_straighten; \ No newline at end of file diff --git a/dist/md/ic_straighten_outline.js b/dist/md/ic_straighten_outline.js new file mode 100644 index 000000000..ae24cfdcd --- /dev/null +++ b/dist/md/ic_straighten_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_straighten_outline = void 0; +var ic_straighten_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 6H3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 10H3V8h2v4h2V8h2v4h2V8h2v4h2V8h2v4h2V8h2v8z" + }, + "children": [] + }] +}; +exports.ic_straighten_outline = ic_straighten_outline; \ No newline at end of file diff --git a/dist/md/ic_straighten_twotone.js b/dist/md/ic_straighten_twotone.js new file mode 100644 index 000000000..c7177f996 --- /dev/null +++ b/dist/md/ic_straighten_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_straighten_twotone = void 0; +var ic_straighten_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 12h-2V8h-2v4h-2V8h-2v4H9V8H7v4H5V8H3v8h18V8h-2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 6H3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 10H3V8h2v4h2V8h2v4h2V8h2v4h2V8h2v4h2V8h2v8z" + }, + "children": [] + }] +}; +exports.ic_straighten_twotone = ic_straighten_twotone; \ No newline at end of file diff --git a/dist/md/ic_stream.js b/dist/md/ic_stream.js new file mode 100644 index 000000000..716dc7d18 --- /dev/null +++ b/dist/md/ic_stream.js @@ -0,0 +1,56 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_stream = void 0; +var ic_stream = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "20", + "cy": "12", + "r": "2" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "4", + "cy": "12", + "r": "2" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "20", + "r": "2" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10.05 8.59L6.03 4.55h-.01l-.31-.32-1.42 1.41 4.02 4.05.01-.01.31.32zm3.893.027l4.405-4.392L19.76 5.64l-4.405 4.393zM10.01 15.36l-1.42-1.41-4.03 4.01-.32.33 1.41 1.41 4.03-4.02zm9.75 2.94l-3.99-4.01-.36-.35L14 15.35l3.99 4.01.35.35z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "4", + "r": "2" + }, + "children": [] + }] +}; +exports.ic_stream = ic_stream; \ No newline at end of file diff --git a/dist/md/ic_streetview.js b/dist/md/ic_streetview.js new file mode 100644 index 000000000..c6ca21059 --- /dev/null +++ b/dist/md/ic_streetview.js @@ -0,0 +1,38 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_streetview = void 0; +var ic_streetview = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12.56 14.33c-.34.27-.56.7-.56 1.17V21h7c1.1 0 2-.9 2-2v-5.98c-.94-.33-1.95-.52-3-.52-2.03 0-3.93.7-5.44 1.83z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "18", + "cy": "6", + "r": "5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.5 6c0-1.08.27-2.1.74-3H5c-1.1 0-2 .9-2 2v14c0 .55.23 1.05.59 1.41l9.82-9.82C12.23 9.42 11.5 7.8 11.5 6z" + }, + "children": [] + }] +}; +exports.ic_streetview = ic_streetview; \ No newline at end of file diff --git a/dist/md/ic_streetview_outline.js b/dist/md/ic_streetview_outline.js new file mode 100644 index 000000000..00a4f0947 --- /dev/null +++ b/dist/md/ic_streetview_outline.js @@ -0,0 +1,38 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_streetview_outline = void 0; +var ic_streetview_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12.56 14.33c-.34.27-.56.7-.56 1.17V21h7c1.1 0 2-.9 2-2v-5.98c-.94-.33-1.95-.52-3-.52-2.03 0-3.93.7-5.44 1.83z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "18", + "cy": "6", + "r": "5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.5 6c0-1.08.27-2.1.74-3H5c-1.1 0-2 .9-2 2v14c0 .55.23 1.05.59 1.41l9.82-9.82C12.23 9.42 11.5 7.8 11.5 6z" + }, + "children": [] + }] +}; +exports.ic_streetview_outline = ic_streetview_outline; \ No newline at end of file diff --git a/dist/md/ic_streetview_twotone.js b/dist/md/ic_streetview_twotone.js new file mode 100644 index 000000000..90d6cc829 --- /dev/null +++ b/dist/md/ic_streetview_twotone.js @@ -0,0 +1,38 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_streetview_twotone = void 0; +var ic_streetview_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12.56 14.33c-.34.27-.56.7-.56 1.17V21h7c1.1 0 2-.9 2-2v-5.98c-.94-.33-1.95-.52-3-.52-2.03 0-3.93.7-5.44 1.83z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "18", + "cy": "6", + "r": "5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.5 6c0-1.08.27-2.1.74-3H5c-1.1 0-2 .9-2 2v14c0 .55.23 1.05.59 1.41l9.82-9.82C12.23 9.42 11.5 7.8 11.5 6z" + }, + "children": [] + }] +}; +exports.ic_streetview_twotone = ic_streetview_twotone; \ No newline at end of file diff --git a/dist/md/ic_strikethrough_s.js b/dist/md/ic_strikethrough_s.js new file mode 100644 index 000000000..042b9af42 --- /dev/null +++ b/dist/md/ic_strikethrough_s.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_strikethrough_s = void 0; +var ic_strikethrough_s = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M6.85,7.08C6.85,4.37,9.45,3,12.24,3c1.64,0,3,0.49,3.9,1.28c0.77,0.65,1.46,1.73,1.46,3.24h-3.01 c0-0.31-0.05-0.59-0.15-0.85c-0.29-0.86-1.2-1.28-2.25-1.28c-1.86,0-2.34,1.02-2.34,1.7c0,0.48,0.25,0.88,0.74,1.21 C10.97,8.55,11.36,8.78,12,9H7.39C7.18,8.66,6.85,8.11,6.85,7.08z M21,12v-2H3v2h9.62c1.15,0.45,1.96,0.75,1.96,1.97 c0,1-0.81,1.67-2.28,1.67c-1.54,0-2.93-0.54-2.93-2.51H6.4c0,0.55,0.08,1.13,0.24,1.58c0.81,2.29,3.29,3.3,5.67,3.3 c2.27,0,5.3-0.89,5.3-4.05c0-0.3-0.01-1.16-0.48-1.94H21V12z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M6.85,7.08C6.85,4.37,9.45,3,12.24,3c1.64,0,3,0.49,3.9,1.28c0.77,0.65,1.46,1.73,1.46,3.24h-3.01 c0-0.31-0.05-0.59-0.15-0.85c-0.29-0.86-1.2-1.28-2.25-1.28c-1.86,0-2.34,1.02-2.34,1.7c0,0.48,0.25,0.88,0.74,1.21 C10.97,8.55,11.36,8.78,12,9H7.39C7.18,8.66,6.85,8.11,6.85,7.08z M21,12v-2H3v2h9.62c1.15,0.45,1.96,0.75,1.96,1.97 c0,1-0.81,1.67-2.28,1.67c-1.54,0-2.93-0.54-2.93-2.51H6.4c0,0.55,0.08,1.13,0.24,1.58c0.81,2.29,3.29,3.3,5.67,3.3 c2.27,0,5.3-0.89,5.3-4.05c0-0.3-0.01-1.16-0.48-1.94H21V12z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_strikethrough_s = ic_strikethrough_s; \ No newline at end of file diff --git a/dist/md/ic_strikethrough_s_outline.js b/dist/md/ic_strikethrough_s_outline.js new file mode 100644 index 000000000..da6ea8137 --- /dev/null +++ b/dist/md/ic_strikethrough_s_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_strikethrough_s_outline = void 0; +var ic_strikethrough_s_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7.24 8.75c-.26-.48-.39-1.03-.39-1.67 0-.61.13-1.16.4-1.67.26-.5.63-.93 1.11-1.29.48-.35 1.05-.63 1.7-.83.66-.19 1.39-.29 2.18-.29.81 0 1.54.11 2.21.34.66.22 1.23.54 1.69.94.47.4.83.88 1.08 1.43s.38 1.15.38 1.81h-3.01c0-.31-.05-.59-.15-.85-.09-.27-.24-.49-.44-.68-.2-.19-.45-.33-.75-.44-.3-.1-.66-.16-1.06-.16-.39 0-.74.04-1.03.13s-.53.21-.72.36c-.19.16-.34.34-.44.55-.1.21-.15.43-.15.66 0 .48.25.88.74 1.21.38.25.77.48 1.41.7H7.39c-.05-.08-.11-.17-.15-.25zM21 12v-2H3v2h9.62c.18.07.4.14.55.2.37.17.66.34.87.51s.35.36.43.57c.07.2.11.43.11.69 0 .23-.05.45-.14.66-.09.2-.23.38-.42.53-.19.15-.42.26-.71.35-.29.08-.63.13-1.01.13-.43 0-.83-.04-1.18-.13s-.66-.23-.91-.42c-.25-.19-.45-.44-.59-.75s-.25-.76-.25-1.21H6.4c0 .55.08 1.13.24 1.58s.37.85.65 1.21c.28.35.6.66.98.92.37.26.78.48 1.22.65.44.17.9.3 1.38.39.48.08.96.13 1.44.13.8 0 1.53-.09 2.18-.28s1.21-.45 1.67-.79c.46-.34.82-.77 1.07-1.27s.38-1.07.38-1.71c0-.6-.1-1.14-.31-1.61-.05-.11-.11-.23-.17-.33H21V12z" + }, + "children": [] + }] +}; +exports.ic_strikethrough_s_outline = ic_strikethrough_s_outline; \ No newline at end of file diff --git a/dist/md/ic_strikethrough_s_twotone.js b/dist/md/ic_strikethrough_s_twotone.js new file mode 100644 index 000000000..f60fcba16 --- /dev/null +++ b/dist/md/ic_strikethrough_s_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_strikethrough_s_twotone = void 0; +var ic_strikethrough_s_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10.44 5.88c.19-.15.43-.27.72-.36.29-.09.64-.13 1.03-.13.4 0 .76.06 1.06.16.3.11.55.25.75.44s.35.41.44.68c.1.26.15.54.15.85h3.01c0-.66-.13-1.26-.38-1.81s-.61-1.03-1.08-1.43c-.46-.4-1.03-.72-1.69-.94-.67-.23-1.4-.34-2.21-.34-.79 0-1.52.1-2.18.29-.65.2-1.22.48-1.7.83-.48.36-.85.79-1.11 1.29-.27.51-.4 1.06-.4 1.67 0 .64.13 1.19.39 1.67.04.08.1.17.15.25H12c-.64-.22-1.03-.45-1.41-.7-.49-.33-.74-.73-.74-1.21 0-.23.05-.45.15-.66s.25-.39.44-.55zM3 12h9.62c.18.07.4.14.55.2.37.17.66.34.87.51.21.17.35.36.43.57.07.2.11.43.11.69 0 .23-.05.45-.14.66-.09.2-.23.38-.42.53-.19.15-.42.26-.71.35-.29.08-.63.13-1.01.13-.43 0-.83-.04-1.18-.13s-.66-.23-.91-.42-.45-.44-.59-.75-.25-.76-.25-1.21H6.4c0 .55.08 1.13.24 1.58.16.45.37.85.65 1.21.28.35.6.66.98.92.37.26.78.48 1.22.65s.9.3 1.38.39c.48.08.96.13 1.44.13.8 0 1.53-.09 2.18-.28.65-.19 1.21-.45 1.67-.79.46-.34.82-.77 1.07-1.27s.38-1.07.38-1.71c0-.6-.1-1.14-.31-1.61-.05-.11-.11-.23-.17-.33H21V10H3v2z" + }, + "children": [] + }] +}; +exports.ic_strikethrough_s_twotone = ic_strikethrough_s_twotone; \ No newline at end of file diff --git a/dist/md/ic_stroller.js b/dist/md/ic_stroller.js new file mode 100644 index 000000000..1758720a7 --- /dev/null +++ b/dist/md/ic_stroller.js @@ -0,0 +1,95 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_stroller = void 0; +var ic_stroller = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "cx": "16", + "cy": "20", + "r": "2" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "16", + "cy": "20", + "r": "2" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "6", + "cy": "20", + "r": "2" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "6", + "cy": "20", + "r": "2" + }, + "children": [] + }] + }] + }] + }, { + "name": "path", + "attribs": { + "d": "M22,7V6.48C22,4.56,20.52,3,18.65,3c-1.66,0-2.54,1.27-3.18,2.03l-8.8,10.32C6.12,16,6.58,17,7.43,17L15,17 c1.1,0,2-0.9,2-2V6.27C17.58,5.59,17.97,5,18.65,5C19.42,5,20,5.66,20,6.48V7H22z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,7V6.48C22,4.56,20.52,3,18.65,3c-1.66,0-2.54,1.27-3.18,2.03l-8.8,10.32C6.12,16,6.58,17,7.43,17L15,17 c1.1,0,2-0.9,2-2V6.27C17.58,5.59,17.97,5,18.65,5C19.42,5,20,5.66,20,6.48V7H22z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M14.3,4.1C13.03,3.4,11.56,3,10,3C8.03,3,6.21,3.64,4.72,4.72l4.89,4.89L14.3,4.1z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14.3,4.1C13.03,3.4,11.56,3,10,3C8.03,3,6.21,3.64,4.72,4.72l4.89,4.89L14.3,4.1z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_stroller = ic_stroller; \ No newline at end of file diff --git a/dist/md/ic_stroller_outline.js b/dist/md/ic_stroller_outline.js new file mode 100644 index 000000000..3ae4ece08 --- /dev/null +++ b/dist/md/ic_stroller_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_stroller_outline = void 0; +var ic_stroller_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M18,20c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2S18,18.9,18,20z M6,18c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S7.1,18,6,18z M15,8.66L9.6,15H15V8.66 M18.65,3C20.52,3,22,4.56,22,6.48V7h-2V6.48C20,5.66,19.42,5,18.65,5C17.97,5,17.58,5.59,17,6.27V15 c0,1.1-0.9,2-2,2H7.43c-0.85,0-1.31-1-0.76-1.65l8.8-10.32C16.11,4.27,16.99,3,18.65,3L18.65,3z M10,5C9.35,5,8.71,5.09,8.09,5.27 l1.4,1.4l1.37-1.61C10.58,5.02,10.29,5,10,5 M10,3c1.56,0,3.03,0.4,4.3,1.1l-4.7,5.51L4.72,4.72C6.21,3.64,8.03,3,10,3L10,3z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18,20c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2S18,18.9,18,20z M6,18c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S7.1,18,6,18z M15,8.66L9.6,15H15V8.66 M18.65,3C20.52,3,22,4.56,22,6.48V7h-2V6.48C20,5.66,19.42,5,18.65,5C17.97,5,17.58,5.59,17,6.27V15 c0,1.1-0.9,2-2,2H7.43c-0.85,0-1.31-1-0.76-1.65l8.8-10.32C16.11,4.27,16.99,3,18.65,3L18.65,3z M10,5C9.35,5,8.71,5.09,8.09,5.27 l1.4,1.4l1.37-1.61C10.58,5.02,10.29,5,10,5 M10,3c1.56,0,3.03,0.4,4.3,1.1l-4.7,5.51L4.72,4.72C6.21,3.64,8.03,3,10,3L10,3z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_stroller_outline = ic_stroller_outline; \ No newline at end of file diff --git a/dist/md/ic_stroller_twotone.js b/dist/md/ic_stroller_twotone.js new file mode 100644 index 000000000..359490225 --- /dev/null +++ b/dist/md/ic_stroller_twotone.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_stroller_twotone = void 0; +var ic_stroller_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M10,5c0.29,0,0.58,0.02,0.86,0.05L9.49,6.66l-1.4-1.4C8.71,5.09,9.35,5,10,5 M15,8.66V15H9.6L15,8.66", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M10,5c0.29,0,0.58,0.02,0.86,0.05L9.49,6.66l-1.4-1.4C8.71,5.09,9.35,5,10,5 M15,8.66V15H9.6L15,8.66", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M10,5c0.29,0,0.58,0.02,0.86,0.05L9.49,6.66l-1.4-1.4C8.71,5.09,9.35,5,10,5 M15,8.66V15H9.6L15,8.66 M18.65,3 c-1.66,0-2.54,1.27-3.18,2.03l-8.8,10.32C6.12,16,6.58,17,7.43,17H15c1.1,0,2-0.9,2-2V6.27C17.58,5.59,17.97,5,18.65,5 C19.42,5,20,5.66,20,6.48V7h2V6.48C22,4.56,20.52,3,18.65,3L18.65,3z M10,3C8.03,3,6.21,3.64,4.72,4.72l4.89,4.89l4.7-5.51 C13.03,3.4,11.56,3,10,3L10,3z M16,18c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S17.1,18,16,18L16,18z M6,18c-1.1,0-2,0.9-2,2 s0.9,2,2,2s2-0.9,2-2S7.1,18,6,18L6,18z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M10,5c0.29,0,0.58,0.02,0.86,0.05L9.49,6.66l-1.4-1.4C8.71,5.09,9.35,5,10,5 M15,8.66V15H9.6L15,8.66 M18.65,3 c-1.66,0-2.54,1.27-3.18,2.03l-8.8,10.32C6.12,16,6.58,17,7.43,17H15c1.1,0,2-0.9,2-2V6.27C17.58,5.59,17.97,5,18.65,5 C19.42,5,20,5.66,20,6.48V7h2V6.48C22,4.56,20.52,3,18.65,3L18.65,3z M10,3C8.03,3,6.21,3.64,4.72,4.72l4.89,4.89l4.7-5.51 C13.03,3.4,11.56,3,10,3L10,3z M16,18c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S17.1,18,16,18L16,18z M6,18c-1.1,0-2,0.9-2,2 s0.9,2,2,2s2-0.9,2-2S7.1,18,6,18L6,18z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_stroller_twotone = ic_stroller_twotone; \ No newline at end of file diff --git a/dist/md/ic_style.js b/dist/md/ic_style.js new file mode 100644 index 000000000..23ae67b46 --- /dev/null +++ b/dist/md/ic_style.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_style = void 0; +var ic_style = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M2.53 19.65l1.34.56v-9.03l-2.43 5.86c-.41 1.02.08 2.19 1.09 2.61zm19.5-3.7L17.07 3.98c-.31-.75-1.04-1.21-1.81-1.23-.26 0-.53.04-.79.15L7.1 5.95c-.75.31-1.21 1.03-1.23 1.8-.01.27.04.54.15.8l4.96 11.97c.31.76 1.05 1.22 1.83 1.23.26 0 .52-.05.77-.15l7.36-3.05c1.02-.42 1.51-1.59 1.09-2.6zM7.88 8.75c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-2 11c0 1.1.9 2 2 2h1.45l-3.45-8.34v6.34z" + }, + "children": [] + }] +}; +exports.ic_style = ic_style; \ No newline at end of file diff --git a/dist/md/ic_style_outline.js b/dist/md/ic_style_outline.js new file mode 100644 index 000000000..976bb7a9e --- /dev/null +++ b/dist/md/ic_style_outline.js @@ -0,0 +1,38 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_style_outline = void 0; +var ic_style_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M2.53 19.65l1.34.56v-9.03l-2.43 5.86c-.41 1.02.08 2.19 1.09 2.61zm19.5-3.7L17.07 3.98c-.31-.75-1.04-1.21-1.81-1.23-.26 0-.53.04-.79.15L7.1 5.95c-.75.31-1.21 1.03-1.23 1.8-.01.27.04.54.15.8l4.96 11.97c.31.76 1.05 1.22 1.83 1.23.26 0 .52-.05.77-.15l7.36-3.05c1.02-.42 1.51-1.59 1.09-2.6zm-9.2 3.8L7.87 7.79l7.35-3.04h.01l4.95 11.95-7.35 3.05z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "11", + "cy": "9", + "r": "1" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5.88 19.75c0 1.1.9 2 2 2h1.45l-3.45-8.34v6.34z" + }, + "children": [] + }] +}; +exports.ic_style_outline = ic_style_outline; \ No newline at end of file diff --git a/dist/md/ic_style_twotone.js b/dist/md/ic_style_twotone.js new file mode 100644 index 000000000..ea9b2cae9 --- /dev/null +++ b/dist/md/ic_style_twotone.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_style_twotone = void 0; +var ic_style_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.22 4.75L7.87 7.79l4.96 11.96 7.35-3.05-4.96-11.95zM11 10c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3.87 11.18l-2.43 5.86c-.41 1.02.08 2.19 1.09 2.61l1.34.56v-9.03zm18.16 4.77L17.07 3.98c-.31-.75-1.04-1.21-1.81-1.23-.26 0-.53.04-.79.15L7.1 5.95c-.75.31-1.21 1.03-1.23 1.8-.01.27.04.54.15.8l4.96 11.97c.31.76 1.05 1.22 1.83 1.23.26 0 .52-.05.77-.15l7.36-3.05c1.02-.42 1.51-1.59 1.09-2.6zm-9.2 3.8L7.87 7.79l7.35-3.04h.01l4.95 11.95-7.35 3.05z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "11", + "cy": "9", + "r": "1" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9.33 21.75l-3.45-8.34v6.34c0 1.1.9 2 2 2h1.45z" + }, + "children": [] + }] +}; +exports.ic_style_twotone = ic_style_twotone; \ No newline at end of file diff --git a/dist/md/ic_subdirectory_arrow_left.js b/dist/md/ic_subdirectory_arrow_left.js new file mode 100644 index 000000000..610372bd8 --- /dev/null +++ b/dist/md/ic_subdirectory_arrow_left.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_subdirectory_arrow_left = void 0; +var ic_subdirectory_arrow_left = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 9l1.42 1.42L8.83 14H18V4h2v12H8.83l3.59 3.58L11 21l-6-6 6-6z" + }, + "children": [] + }] +}; +exports.ic_subdirectory_arrow_left = ic_subdirectory_arrow_left; \ No newline at end of file diff --git a/dist/md/ic_subdirectory_arrow_left_outline.js b/dist/md/ic_subdirectory_arrow_left_outline.js new file mode 100644 index 000000000..ffd05fae3 --- /dev/null +++ b/dist/md/ic_subdirectory_arrow_left_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_subdirectory_arrow_left_outline = void 0; +var ic_subdirectory_arrow_left_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 9l1.42 1.42L8.83 14H18V4h2v12H8.83l3.59 3.58L11 21l-6-6 6-6z" + }, + "children": [] + }] +}; +exports.ic_subdirectory_arrow_left_outline = ic_subdirectory_arrow_left_outline; \ No newline at end of file diff --git a/dist/md/ic_subdirectory_arrow_left_twotone.js b/dist/md/ic_subdirectory_arrow_left_twotone.js new file mode 100644 index 000000000..92d79af09 --- /dev/null +++ b/dist/md/ic_subdirectory_arrow_left_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_subdirectory_arrow_left_twotone = void 0; +var ic_subdirectory_arrow_left_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 9l1.42 1.42L8.83 14H18V4h2v12H8.83l3.59 3.58L11 21l-6-6 6-6z" + }, + "children": [] + }] +}; +exports.ic_subdirectory_arrow_left_twotone = ic_subdirectory_arrow_left_twotone; \ No newline at end of file diff --git a/dist/md/ic_subdirectory_arrow_right.js b/dist/md/ic_subdirectory_arrow_right.js new file mode 100644 index 000000000..ad700e98c --- /dev/null +++ b/dist/md/ic_subdirectory_arrow_right.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_subdirectory_arrow_right = void 0; +var ic_subdirectory_arrow_right = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 15l-6 6-1.42-1.42L15.17 16H4V4h2v10h9.17l-3.59-3.58L13 9l6 6z" + }, + "children": [] + }] +}; +exports.ic_subdirectory_arrow_right = ic_subdirectory_arrow_right; \ No newline at end of file diff --git a/dist/md/ic_subdirectory_arrow_right_outline.js b/dist/md/ic_subdirectory_arrow_right_outline.js new file mode 100644 index 000000000..2c1931e12 --- /dev/null +++ b/dist/md/ic_subdirectory_arrow_right_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_subdirectory_arrow_right_outline = void 0; +var ic_subdirectory_arrow_right_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M24 24H0V0h24v24z", + "fill": "none", + "opacity": ".87" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 15l-6 6-1.42-1.42L15.17 16H4V4h2v10h9.17l-3.59-3.58L13 9l6 6z" + }, + "children": [] + }] +}; +exports.ic_subdirectory_arrow_right_outline = ic_subdirectory_arrow_right_outline; \ No newline at end of file diff --git a/dist/md/ic_subdirectory_arrow_right_twotone.js b/dist/md/ic_subdirectory_arrow_right_twotone.js new file mode 100644 index 000000000..4c273a031 --- /dev/null +++ b/dist/md/ic_subdirectory_arrow_right_twotone.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_subdirectory_arrow_right_twotone = void 0; +var ic_subdirectory_arrow_right_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M24 24H0V0h24v24z", + "fill": "none", + "opacity": ".87" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 15l-6 6-1.42-1.42L15.17 16H4V4h2v10h9.17l-3.59-3.58L13 9l6 6z" + }, + "children": [] + }] +}; +exports.ic_subdirectory_arrow_right_twotone = ic_subdirectory_arrow_right_twotone; \ No newline at end of file diff --git a/dist/md/ic_subject.js b/dist/md/ic_subject.js new file mode 100644 index 000000000..635250f62 --- /dev/null +++ b/dist/md/ic_subject.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_subject = void 0; +var ic_subject = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 17H4v2h10v-2zm6-8H4v2h16V9zM4 15h16v-2H4v2zM4 5v2h16V5H4z" + }, + "children": [] + }] +}; +exports.ic_subject = ic_subject; \ No newline at end of file diff --git a/dist/md/ic_subject_outline.js b/dist/md/ic_subject_outline.js new file mode 100644 index 000000000..212610a12 --- /dev/null +++ b/dist/md/ic_subject_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_subject_outline = void 0; +var ic_subject_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 17H4v2h10v-2zm6-8H4v2h16V9zM4 15h16v-2H4v2zM4 5v2h16V5H4z" + }, + "children": [] + }] +}; +exports.ic_subject_outline = ic_subject_outline; \ No newline at end of file diff --git a/dist/md/ic_subject_twotone.js b/dist/md/ic_subject_twotone.js new file mode 100644 index 000000000..2e3b0e096 --- /dev/null +++ b/dist/md/ic_subject_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_subject_twotone = void 0; +var ic_subject_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 17H4v2h10v-2zm6-8H4v2h16V9zM4 15h16v-2H4v2zM4 5v2h16V5H4z" + }, + "children": [] + }] +}; +exports.ic_subject_twotone = ic_subject_twotone; \ No newline at end of file diff --git a/dist/md/ic_subscript.js b/dist/md/ic_subscript.js new file mode 100644 index 000000000..c2ddcd857 --- /dev/null +++ b/dist/md/ic_subscript.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_subscript = void 0; +var ic_subscript = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M22,18h-2v1h3v1h-4v-2c0-0.55,0.45-1,1-1h2v-1h-3v-1h3c0.55,0,1,0.45,1,1v1C23,17.55,22.55,18,22,18z M5.88,18h2.66 l3.4-5.42h0.12l3.4,5.42h2.66l-4.65-7.27L17.81,4h-2.68l-3.07,4.99h-0.12L8.85,4H6.19l4.32,6.73L5.88,18z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,18h-2v1h3v1h-4v-2c0-0.55,0.45-1,1-1h2v-1h-3v-1h3c0.55,0,1,0.45,1,1v1C23,17.55,22.55,18,22,18z M5.88,18h2.66 l3.4-5.42h0.12l3.4,5.42h2.66l-4.65-7.27L17.81,4h-2.68l-3.07,4.99h-0.12L8.85,4H6.19l4.32,6.73L5.88,18z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_subscript = ic_subscript; \ No newline at end of file diff --git a/dist/md/ic_subscript_outline.js b/dist/md/ic_subscript_outline.js new file mode 100644 index 000000000..332e79138 --- /dev/null +++ b/dist/md/ic_subscript_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_subscript_outline = void 0; +var ic_subscript_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M22,18h-2v1h3v1h-4v-2c0-0.55,0.45-1,1-1h2v-1h-3v-1h3c0.55,0,1,0.45,1,1v1C23,17.55,22.55,18,22,18z M5.88,18h2.66 l3.4-5.42h0.12l3.4,5.42h2.66l-4.65-7.27L17.81,4h-2.68l-3.07,4.99h-0.12L8.85,4H6.19l4.32,6.73L5.88,18z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,18h-2v1h3v1h-4v-2c0-0.55,0.45-1,1-1h2v-1h-3v-1h3c0.55,0,1,0.45,1,1v1C23,17.55,22.55,18,22,18z M5.88,18h2.66 l3.4-5.42h0.12l3.4,5.42h2.66l-4.65-7.27L17.81,4h-2.68l-3.07,4.99h-0.12L8.85,4H6.19l4.32,6.73L5.88,18z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_subscript_outline = ic_subscript_outline; \ No newline at end of file diff --git a/dist/md/ic_subscript_twotone.js b/dist/md/ic_subscript_twotone.js new file mode 100644 index 000000000..c448ed9a4 --- /dev/null +++ b/dist/md/ic_subscript_twotone.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_subscript_twotone = void 0; +var ic_subscript_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M22,18h-2v1h3v1h-4v-2c0-0.55,0.45-1,1-1h2v-1h-3v-1h3c0.55,0,1,0.45,1,1v1C23,17.55,22.55,18,22,18z M5.88,18h2.66 l3.4-5.42h0.12l3.4,5.42h2.66l-4.65-7.27L17.81,4h-2.68l-3.07,4.99h-0.12L8.85,4H6.19l4.32,6.73L5.88,18z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,18h-2v1h3v1h-4v-2c0-0.55,0.45-1,1-1h2v-1h-3v-1h3c0.55,0,1,0.45,1,1v1C23,17.55,22.55,18,22,18z M5.88,18h2.66 l3.4-5.42h0.12l3.4,5.42h2.66l-4.65-7.27L17.81,4h-2.68l-3.07,4.99h-0.12L8.85,4H6.19l4.32,6.73L5.88,18z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_subscript_twotone = ic_subscript_twotone; \ No newline at end of file diff --git a/dist/md/ic_subscriptions.js b/dist/md/ic_subscriptions.js new file mode 100644 index 000000000..79f0945ba --- /dev/null +++ b/dist/md/ic_subscriptions.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_subscriptions = void 0; +var ic_subscriptions = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M20 8H4V6h16v2zm-2-6H6v2h12V2zm4 10v8c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2v-8c0-1.1.9-2 2-2h16c1.1 0 2 .9 2 2zm-6 4l-6-3.27v6.53L16 16z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }] +}; +exports.ic_subscriptions = ic_subscriptions; \ No newline at end of file diff --git a/dist/md/ic_subscriptions_outline.js b/dist/md/ic_subscriptions_outline.js new file mode 100644 index 000000000..c427d17c3 --- /dev/null +++ b/dist/md/ic_subscriptions_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_subscriptions_outline = void 0; +var ic_subscriptions_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 6h16v2H4zm2-4h12v2H6zm14 8H4c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-8c0-1.1-.9-2-2-2zm0 10H4v-8h16v8zm-10-7.27v6.53L16 16z" + }, + "children": [] + }] +}; +exports.ic_subscriptions_outline = ic_subscriptions_outline; \ No newline at end of file diff --git a/dist/md/ic_subscriptions_twotone.js b/dist/md/ic_subscriptions_twotone.js new file mode 100644 index 000000000..7c692cc88 --- /dev/null +++ b/dist/md/ic_subscriptions_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_subscriptions_twotone = void 0; +var ic_subscriptions_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 20h16v-8H4v8zm6-7.27L16 16l-6 3.26v-6.53z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 6h16v2H4zm2-4h12v2H6zm14 8H4c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-8c0-1.1-.9-2-2-2zm0 10H4v-8h16v8zm-10-7.27v6.53L16 16z" + }, + "children": [] + }] +}; +exports.ic_subscriptions_twotone = ic_subscriptions_twotone; \ No newline at end of file diff --git a/dist/md/ic_subtitles.js b/dist/md/ic_subtitles.js new file mode 100644 index 000000000..3e8c6efca --- /dev/null +++ b/dist/md/ic_subtitles.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_subtitles = void 0; +var ic_subtitles = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM4 12h4v2H4v-2zm10 6H4v-2h10v2zm6 0h-4v-2h4v2zm0-4H10v-2h10v2z" + }, + "children": [] + }] +}; +exports.ic_subtitles = ic_subtitles; \ No newline at end of file diff --git a/dist/md/ic_subtitles_off.js b/dist/md/ic_subtitles_off.js new file mode 100644 index 000000000..46dbcc000 --- /dev/null +++ b/dist/md/ic_subtitles_off.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_subtitles_off = void 0; +var ic_subtitles_off = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,4H6.83l8,8H20v2h-3.17l4.93,4.93C21.91,18.65,22,18.34,22,18V6C22,4.9,21.1,4,20,4z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,4H6.83l8,8H20v2h-3.17l4.93,4.93C21.91,18.65,22,18.34,22,18V6C22,4.9,21.1,4,20,4z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M1.04,3.87l1.2,1.2C2.09,5.35,2,5.66,2,6v12c0,1.1,0.9,2,2,2h13.17l2.96,2.96l1.41-1.41L2.45,2.45L1.04,3.87z M8,12v2H4 v-2H8z M14,16.83V18H4v-2h9.17L14,16.83z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M1.04,3.87l1.2,1.2C2.09,5.35,2,5.66,2,6v12c0,1.1,0.9,2,2,2h13.17l2.96,2.96l1.41-1.41L2.45,2.45L1.04,3.87z M8,12v2H4 v-2H8z M14,16.83V18H4v-2h9.17L14,16.83z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_subtitles_off = ic_subtitles_off; \ No newline at end of file diff --git a/dist/md/ic_subtitles_off_outline.js b/dist/md/ic_subtitles_off_outline.js new file mode 100644 index 000000000..1c5e6a113 --- /dev/null +++ b/dist/md/ic_subtitles_off_outline.js @@ -0,0 +1,79 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_subtitles_off_outline = void 0; +var ic_subtitles_off_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,4H6.83l2,2H20v11.17l1.76,1.76C21.91,18.65,22,18.34,22,18V6C22,4.9,21.1,4,20,4z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,4H6.83l2,2H20v11.17l1.76,1.76C21.91,18.65,22,18.34,22,18V6C22,4.9,21.1,4,20,4z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "18,10 12.83,10 14.83,12 18,12" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "18,10 12.83,10 14.83,12 18,12" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M1.04,3.87l1.2,1.2C2.09,5.35,2,5.66,2,6v12c0,1.1,0.9,2,2,2h13.17l2.96,2.96l1.41-1.41L2.45,2.45L1.04,3.87z M4,6.83 L7.17,10H6v2h2v-1.17L11.17,14H6v2h7.17l2,2H4V6.83z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M1.04,3.87l1.2,1.2C2.09,5.35,2,5.66,2,6v12c0,1.1,0.9,2,2,2h13.17l2.96,2.96l1.41-1.41L2.45,2.45L1.04,3.87z M4,6.83 L7.17,10H6v2h2v-1.17L11.17,14H6v2h7.17l2,2H4V6.83z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_subtitles_off_outline = ic_subtitles_off_outline; \ No newline at end of file diff --git a/dist/md/ic_subtitles_off_twotone.js b/dist/md/ic_subtitles_off_twotone.js new file mode 100644 index 000000000..994a60993 --- /dev/null +++ b/dist/md/ic_subtitles_off_twotone.js @@ -0,0 +1,115 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_subtitles_off_twotone = void 0; +var ic_subtitles_off_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "opacity": ".3", + "points": "8.83,6 12.83,10 18,10 18,12 14.83,12 20,17.17 20,6" + }, + "children": [{ + "name": "polygon", + "attribs": { + "opacity": ".3", + "points": "8.83,6 12.83,10 18,10 18,12 14.83,12 20,17.17 20,6" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "opacity": ".3", + "points": "15.17,18 13.17,16 6,16 6,14 11.17,14 8,10.83 8,12 6,12 6,10 7.17,10 4,6.83 4,18" + }, + "children": [{ + "name": "polygon", + "attribs": { + "opacity": ".3", + "points": "15.17,18 13.17,16 6,16 6,14 11.17,14 8,10.83 8,12 6,12 6,10 7.17,10 4,6.83 4,18" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "18,10 12.83,10 14.83,12 18,12" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "18,10 12.83,10 14.83,12 18,12" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20,4H6.83l2,2H20v11.17l1.76,1.76C21.91,18.65,22,18.34,22,18V6C22,4.9,21.1,4,20,4z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,4H6.83l2,2H20v11.17l1.76,1.76C21.91,18.65,22,18.34,22,18V6C22,4.9,21.1,4,20,4z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M1.04,3.87l1.2,1.2C2.09,5.35,2,5.66,2,6v12c0,1.1,0.9,2,2,2h13.17l2.96,2.96l1.41-1.41L2.45,2.45L1.04,3.87z M4,6.83 L7.17,10H6v2h2v-1.17L11.17,14H6v2h7.17l2,2H4V6.83z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M1.04,3.87l1.2,1.2C2.09,5.35,2,5.66,2,6v12c0,1.1,0.9,2,2,2h13.17l2.96,2.96l1.41-1.41L2.45,2.45L1.04,3.87z M4,6.83 L7.17,10H6v2h2v-1.17L11.17,14H6v2h7.17l2,2H4V6.83z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_subtitles_off_twotone = ic_subtitles_off_twotone; \ No newline at end of file diff --git a/dist/md/ic_subtitles_outline.js b/dist/md/ic_subtitles_outline.js new file mode 100644 index 000000000..d68ce5d24 --- /dev/null +++ b/dist/md/ic_subtitles_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_subtitles_outline = void 0; +var ic_subtitles_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h16v12zM6 10h2v2H6zm0 4h8v2H6zm10 0h2v2h-2zm-6-4h8v2h-8z" + }, + "children": [] + }] +}; +exports.ic_subtitles_outline = ic_subtitles_outline; \ No newline at end of file diff --git a/dist/md/ic_subtitles_twotone.js b/dist/md/ic_subtitles_twotone.js new file mode 100644 index 000000000..1ee6517ec --- /dev/null +++ b/dist/md/ic_subtitles_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_subtitles_twotone = void 0; +var ic_subtitles_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 18h16V6H4v12zm14-2h-2v-2h2v2zm-8-6h8v2h-8v-2zm-4 0h2v2H6v-2zm0 4h8v2H6v-2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h16v12zM6 10h2v2H6zm0 4h8v2H6zm10 0h2v2h-2zm-6-4h8v2h-8z" + }, + "children": [] + }] +}; +exports.ic_subtitles_twotone = ic_subtitles_twotone; \ No newline at end of file diff --git a/dist/md/ic_subway.js b/dist/md/ic_subway.js new file mode 100644 index 000000000..b73d30fe8 --- /dev/null +++ b/dist/md/ic_subway.js @@ -0,0 +1,40 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_subway = void 0; +var ic_subway = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v24h24V0H0zm22 22H2V8.86C2 6.05 3.53 3.84 6.2 2.8 8 2.09 10.14 2 12 2c1.86 0 4 .09 5.8.8C20.47 3.84 22 6.05 22 8.86V22z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "15.5", + "cy": "16", + "r": "1" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "8.5", + "cy": "16", + "r": "1" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7.01 9h10v5h-10zM17.8 2.8C16 2.09 13.86 2 12 2c-1.86 0-4 .09-5.8.8C3.53 3.84 2 6.05 2 8.86V22h20V8.86c0-2.81-1.53-5.02-4.2-6.06zm.2 13.08c0 1.45-1.18 2.62-2.63 2.62l1.13 1.12V20H15l-1.5-1.5h-2.83L9.17 20H7.5v-.38l1.12-1.12C7.18 18.5 6 17.32 6 15.88V9c0-2.63 3-3 6-3 3.32 0 6 .38 6 3v6.88z" + }, + "children": [] + }] +}; +exports.ic_subway = ic_subway; \ No newline at end of file diff --git a/dist/md/ic_subway_outline.js b/dist/md/ic_subway_outline.js new file mode 100644 index 000000000..46ac2255f --- /dev/null +++ b/dist/md/ic_subway_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_subway_outline = void 0; +var ic_subway_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17.8 2.8C16 2.09 13.86 2 12 2s-4 .09-5.8.8C3.53 3.84 2 6.05 2 8.86V22h20V8.86c0-2.81-1.53-5.02-4.2-6.06zM9.17 20l1.5-1.5h2.66l1.5 1.5H9.17zm-2.16-6V9h10v5h-10zm9.49 2c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1zm-8-1c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM20 20h-3.5v-.38l-1.15-1.16c1.49-.17 2.65-1.42 2.65-2.96V9c0-2.63-3-3-6-3s-6 .37-6 3v6.5c0 1.54 1.16 2.79 2.65 2.96L7.5 19.62V20H4V8.86c0-2 1.01-3.45 2.93-4.2C8.41 4.08 10.32 4 12 4s3.59.08 5.07.66c1.92.75 2.93 2.2 2.93 4.2V20z" + }, + "children": [] + }] +}; +exports.ic_subway_outline = ic_subway_outline; \ No newline at end of file diff --git a/dist/md/ic_subway_twotone.js b/dist/md/ic_subway_twotone.js new file mode 100644 index 000000000..abbb82fe8 --- /dev/null +++ b/dist/md/ic_subway_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_subway_twotone = void 0; +var ic_subway_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10.67 18.5L9.17 20h5.66l-1.5-1.5zm6.4-13.84C15.59 4.08 13.68 4 12 4s-3.59.08-5.07.66C5.01 5.41 4 6.86 4 8.86V20h3.5v-.38l1.15-1.16C7.16 18.29 6 17.04 6 15.5V9c0-2.63 3-3 6-3s6 .37 6 3v6.5c0 1.54-1.16 2.79-2.65 2.96l1.15 1.16V20H20V8.86c0-2-1.01-3.45-2.93-4.2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17.8 2.8C16 2.09 13.86 2 12 2s-4 .09-5.8.8C3.53 3.84 2 6.05 2 8.86V22h20V8.86c0-2.81-1.53-5.02-4.2-6.06zM9.17 20l1.5-1.5h2.66l1.5 1.5H9.17zm-2.16-6V9h10v5h-10zm9.49 2c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1zm-8-1c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM20 20h-3.5v-.38l-1.15-1.16c1.49-.17 2.65-1.42 2.65-2.96V9c0-2.63-3-3-6-3s-6 .37-6 3v6.5c0 1.54 1.16 2.79 2.65 2.96L7.5 19.62V20H4V8.86c0-2 1.01-3.45 2.93-4.2C8.41 4.08 10.32 4 12 4s3.59.08 5.07.66c1.92.75 2.93 2.2 2.93 4.2V20z" + }, + "children": [] + }] +}; +exports.ic_subway_twotone = ic_subway_twotone; \ No newline at end of file diff --git a/dist/md/ic_superscript.js b/dist/md/ic_superscript.js new file mode 100644 index 000000000..cf889f085 --- /dev/null +++ b/dist/md/ic_superscript.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_superscript = void 0; +var ic_superscript = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0", + "y": "0" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0", + "y": "0" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M22,7h-2v1h3v1h-4V7c0-0.55,0.45-1,1-1h2V5h-3V4h3c0.55,0,1,0.45,1,1v1C23,6.55,22.55,7,22,7z M5.88,20h2.66l3.4-5.42h0.12 l3.4,5.42h2.66l-4.65-7.27L17.81,6h-2.68l-3.07,4.99h-0.12L8.85,6H6.19l4.32,6.73L5.88,20z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,7h-2v1h3v1h-4V7c0-0.55,0.45-1,1-1h2V5h-3V4h3c0.55,0,1,0.45,1,1v1C23,6.55,22.55,7,22,7z M5.88,20h2.66l3.4-5.42h0.12 l3.4,5.42h2.66l-4.65-7.27L17.81,6h-2.68l-3.07,4.99h-0.12L8.85,6H6.19l4.32,6.73L5.88,20z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_superscript = ic_superscript; \ No newline at end of file diff --git a/dist/md/ic_superscript_outline.js b/dist/md/ic_superscript_outline.js new file mode 100644 index 000000000..98294a35a --- /dev/null +++ b/dist/md/ic_superscript_outline.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_superscript_outline = void 0; +var ic_superscript_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0", + "y": "0" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0", + "y": "0" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M22,7h-2v1h3v1h-4V7c0-0.55,0.45-1,1-1h2V5h-3V4h3c0.55,0,1,0.45,1,1v1C23,6.55,22.55,7,22,7z M5.88,20h2.66l3.4-5.42h0.12 l3.4,5.42h2.66l-4.65-7.27L17.81,6h-2.68l-3.07,4.99h-0.12L8.85,6H6.19l4.32,6.73L5.88,20z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,7h-2v1h3v1h-4V7c0-0.55,0.45-1,1-1h2V5h-3V4h3c0.55,0,1,0.45,1,1v1C23,6.55,22.55,7,22,7z M5.88,20h2.66l3.4-5.42h0.12 l3.4,5.42h2.66l-4.65-7.27L17.81,6h-2.68l-3.07,4.99h-0.12L8.85,6H6.19l4.32,6.73L5.88,20z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_superscript_outline = ic_superscript_outline; \ No newline at end of file diff --git a/dist/md/ic_superscript_twotone.js b/dist/md/ic_superscript_twotone.js new file mode 100644 index 000000000..fd3698eb5 --- /dev/null +++ b/dist/md/ic_superscript_twotone.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_superscript_twotone = void 0; +var ic_superscript_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0", + "y": "0" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0", + "y": "0" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M22,7h-2v1h3v1h-4V7c0-0.55,0.45-1,1-1h2V5h-3V4h3c0.55,0,1,0.45,1,1v1C23,6.55,22.55,7,22,7z M5.88,20h2.66l3.4-5.42h0.12 l3.4,5.42h2.66l-4.65-7.27L17.81,6h-2.68l-3.07,4.99h-0.12L8.85,6H6.19l4.32,6.73L5.88,20z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,7h-2v1h3v1h-4V7c0-0.55,0.45-1,1-1h2V5h-3V4h3c0.55,0,1,0.45,1,1v1C23,6.55,22.55,7,22,7z M5.88,20h2.66l3.4-5.42h0.12 l3.4,5.42h2.66l-4.65-7.27L17.81,6h-2.68l-3.07,4.99h-0.12L8.85,6H6.19l4.32,6.73L5.88,20z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_superscript_twotone = ic_superscript_twotone; \ No newline at end of file diff --git a/dist/md/ic_supervised_user_circle.js b/dist/md/ic_supervised_user_circle.js new file mode 100644 index 000000000..ec709d186 --- /dev/null +++ b/dist/md/ic_supervised_user_circle.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_supervised_user_circle = void 0; +var ic_supervised_user_circle = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.99 2c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zm3.61 6.34c1.07 0 1.93.86 1.93 1.93 0 1.07-.86 1.93-1.93 1.93-1.07 0-1.93-.86-1.93-1.93-.01-1.07.86-1.93 1.93-1.93zm-6-1.58c1.3 0 2.36 1.06 2.36 2.36 0 1.3-1.06 2.36-2.36 2.36s-2.36-1.06-2.36-2.36c0-1.31 1.05-2.36 2.36-2.36zm0 9.13v3.75c-2.4-.75-4.3-2.6-5.14-4.96 1.05-1.12 3.67-1.69 5.14-1.69.53 0 1.2.08 1.9.22-1.64.87-1.9 2.02-1.9 2.68zM11.99 20c-.27 0-.53-.01-.79-.04v-4.07c0-1.42 2.94-2.13 4.4-2.13 1.07 0 2.92.39 3.84 1.15-1.17 2.97-4.06 5.09-7.45 5.09z" + }, + "children": [] + }] +}; +exports.ic_supervised_user_circle = ic_supervised_user_circle; \ No newline at end of file diff --git a/dist/md/ic_supervised_user_circle_outline.js b/dist/md/ic_supervised_user_circle_outline.js new file mode 100644 index 000000000..e5f7fc098 --- /dev/null +++ b/dist/md/ic_supervised_user_circle_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_supervised_user_circle_outline = void 0; +var ic_supervised_user_circle_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12.5 10c0-1.65-1.35-3-3-3s-3 1.35-3 3 1.35 3 3 3 3-1.35 3-3zm-3 1c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6.5 2c1.11 0 2-.89 2-2 0-1.11-.89-2-2-2-1.11 0-2.01.89-2 2 0 1.11.89 2 2 2zM11.99 2.01c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zM5.84 17.12c.68-.54 2.27-1.11 3.66-1.11.07 0 .15.01.23.01.24-.64.67-1.29 1.3-1.86-.56-.1-1.09-.16-1.53-.16-1.3 0-3.39.45-4.73 1.43-.5-1.04-.78-2.2-.78-3.43 0-4.41 3.59-8 8-8s8 3.59 8 8c0 1.2-.27 2.34-.75 3.37-1-.59-2.36-.87-3.24-.87-1.52 0-4.5.81-4.5 2.7v2.78c-2.27-.13-4.29-1.21-5.66-2.86z" + }, + "children": [] + }] +}; +exports.ic_supervised_user_circle_outline = ic_supervised_user_circle_outline; \ No newline at end of file diff --git a/dist/md/ic_supervised_user_circle_twotone.js b/dist/md/ic_supervised_user_circle_twotone.js new file mode 100644 index 000000000..4da1f599a --- /dev/null +++ b/dist/md/ic_supervised_user_circle_twotone.js @@ -0,0 +1,40 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_supervised_user_circle_twotone = void 0; +var ic_supervised_user_circle_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "9.5", + "cy": "10", + "opacity": ".3", + "r": "1" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.5 17.21c0-1.88 2.98-2.7 4.5-2.7.88 0 2.24.27 3.24.87.48-1.02.75-2.16.75-3.37 0-4.41-3.59-8-8-8s-8 3.59-8 8c0 1.23.29 2.39.78 3.43 1.34-.98 3.43-1.43 4.73-1.43.44 0 .97.05 1.53.16-.63.57-1.06 1.22-1.3 1.86-.08 0-.15-.01-.23-.01-1.38 0-2.98.57-3.66 1.11 1.37 1.65 3.39 2.73 5.66 2.86v-2.78zM16 9c1.11 0 2 .89 2 2 0 1.11-.89 2-2 2-1.11 0-2-.89-2-2-.01-1.11.89-2 2-2zm-6.5 4c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12.5 10c0-1.65-1.35-3-3-3s-3 1.35-3 3 1.35 3 3 3 3-1.35 3-3zm-3 1c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6.5 2c1.11 0 2-.89 2-2 0-1.11-.89-2-2-2-1.11 0-2.01.89-2 2 0 1.11.89 2 2 2zM11.99 2.01c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zM5.84 17.12c.68-.54 2.27-1.11 3.66-1.11.07 0 .15.01.23.01.24-.64.67-1.29 1.3-1.86-.56-.1-1.09-.16-1.53-.16-1.3 0-3.39.45-4.73 1.43-.5-1.04-.78-2.2-.78-3.43 0-4.41 3.59-8 8-8s8 3.59 8 8c0 1.2-.27 2.34-.75 3.37-1-.59-2.36-.87-3.24-.87-1.52 0-4.5.81-4.5 2.7v2.78c-2.27-.13-4.29-1.21-5.66-2.86z" + }, + "children": [] + }] +}; +exports.ic_supervised_user_circle_twotone = ic_supervised_user_circle_twotone; \ No newline at end of file diff --git a/dist/md/ic_supervisor_account.js b/dist/md/ic_supervisor_account.js new file mode 100644 index 000000000..488ba78d9 --- /dev/null +++ b/dist/md/ic_supervisor_account.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_supervisor_account = void 0; +var ic_supervisor_account = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16.5 12c1.38 0 2.49-1.12 2.49-2.5S17.88 7 16.5 7C15.12 7 14 8.12 14 9.5s1.12 2.5 2.5 2.5zM9 11c1.66 0 2.99-1.34 2.99-3S10.66 5 9 5C7.34 5 6 6.34 6 8s1.34 3 3 3zm7.5 3c-1.83 0-5.5.92-5.5 2.75V19h11v-2.25c0-1.83-3.67-2.75-5.5-2.75zM9 13c-2.33 0-7 1.17-7 3.5V19h7v-2.25c0-.85.33-2.34 2.37-3.47C10.5 13.1 9.66 13 9 13z" + }, + "children": [] + }] +}; +exports.ic_supervisor_account = ic_supervisor_account; \ No newline at end of file diff --git a/dist/md/ic_supervisor_account_outline.js b/dist/md/ic_supervisor_account_outline.js new file mode 100644 index 000000000..2aee3260a --- /dev/null +++ b/dist/md/ic_supervisor_account_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_supervisor_account_outline = void 0; +var ic_supervisor_account_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 12c1.93 0 3.5-1.57 3.5-3.5S10.93 5 9 5 5.5 6.57 5.5 8.5 7.07 12 9 12zm0-5c.83 0 1.5.67 1.5 1.5S9.83 10 9 10s-1.5-.67-1.5-1.5S8.17 7 9 7zm.05 10H4.77c.99-.5 2.7-1 4.23-1 .11 0 .23.01.34.01.34-.73.93-1.33 1.64-1.81-.73-.13-1.42-.2-1.98-.2-2.34 0-7 1.17-7 3.5V19h7v-1.5c0-.17.02-.34.05-.5zm7.45-2.5c-1.84 0-5.5 1.01-5.5 3V19h11v-1.5c0-1.99-3.66-3-5.5-3zm1.21-1.82c.76-.43 1.29-1.24 1.29-2.18C19 9.12 17.88 8 16.5 8S14 9.12 14 10.5c0 .94.53 1.75 1.29 2.18.36.2.77.32 1.21.32s.85-.12 1.21-.32z" + }, + "children": [] + }] +}; +exports.ic_supervisor_account_outline = ic_supervisor_account_outline; \ No newline at end of file diff --git a/dist/md/ic_supervisor_account_twotone.js b/dist/md/ic_supervisor_account_twotone.js new file mode 100644 index 000000000..d4a25a31e --- /dev/null +++ b/dist/md/ic_supervisor_account_twotone.js @@ -0,0 +1,40 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_supervisor_account_twotone = void 0; +var ic_supervisor_account_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "9", + "cy": "8.5", + "opacity": ".3", + "r": "1.5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4.77 17h4.28c.01-.06.12-.58.29-.99-.11 0-.23-.01-.34-.01-1.53 0-3.25.5-4.23 1z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 12c1.93 0 3.5-1.57 3.5-3.5S10.93 5 9 5 5.5 6.57 5.5 8.5 7.07 12 9 12zm0-5c.83 0 1.5.67 1.5 1.5S9.83 10 9 10s-1.5-.67-1.5-1.5S8.17 7 9 7zm.05 10H4.77c.99-.5 2.7-1 4.23-1 .11 0 .23.01.34.01.34-.73.93-1.33 1.64-1.81-.73-.13-1.42-.2-1.98-.2-2.34 0-7 1.17-7 3.5V19h7v-1.5c0-.17.02-.34.05-.5zm7.45-2.5c-1.84 0-5.5 1.01-5.5 3V19h11v-1.5c0-1.99-3.66-3-5.5-3zm1.21-1.82c.76-.43 1.29-1.24 1.29-2.18C19 9.12 17.88 8 16.5 8S14 9.12 14 10.5c0 .94.53 1.75 1.29 2.18.36.2.77.32 1.21.32s.85-.12 1.21-.32z" + }, + "children": [] + }] +}; +exports.ic_supervisor_account_twotone = ic_supervisor_account_twotone; \ No newline at end of file diff --git a/dist/md/ic_support.js b/dist/md/ic_support.js new file mode 100644 index 000000000..49e123683 --- /dev/null +++ b/dist/md/ic_support.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_support = void 0; +var ic_support = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M19.46,9.12l-2.78,1.15 c-0.51-1.36-1.58-2.44-2.95-2.94l1.15-2.78C16.98,5.35,18.65,7.02,19.46,9.12z M12,15c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3 S13.66,15,12,15z M9.13,4.54l1.17,2.78c-1.38,0.5-2.47,1.59-2.98,2.97L4.54,9.13C5.35,7.02,7.02,5.35,9.13,4.54z M4.54,14.87 l2.78-1.15c0.51,1.38,1.59,2.46,2.97,2.96l-1.17,2.78C7.02,18.65,5.35,16.98,4.54,14.87z M14.88,19.46l-1.15-2.78 c1.37-0.51,2.45-1.59,2.95-2.97l2.78,1.17C18.65,16.98,16.98,18.65,14.88,19.46z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M19.46,9.12l-2.78,1.15 c-0.51-1.36-1.58-2.44-2.95-2.94l1.15-2.78C16.98,5.35,18.65,7.02,19.46,9.12z M12,15c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3 S13.66,15,12,15z M9.13,4.54l1.17,2.78c-1.38,0.5-2.47,1.59-2.98,2.97L4.54,9.13C5.35,7.02,7.02,5.35,9.13,4.54z M4.54,14.87 l2.78-1.15c0.51,1.38,1.59,2.46,2.97,2.96l-1.17,2.78C7.02,18.65,5.35,16.98,4.54,14.87z M14.88,19.46l-1.15-2.78 c1.37-0.51,2.45-1.59,2.95-2.97l2.78,1.17C18.65,16.98,16.98,18.65,14.88,19.46z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_support = ic_support; \ No newline at end of file diff --git a/dist/md/ic_support_agent.js b/dist/md/ic_support_agent.js new file mode 100644 index 000000000..9da87dddf --- /dev/null +++ b/dist/md/ic_support_agent.js @@ -0,0 +1,99 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_support_agent = void 0; +var ic_support_agent = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M21,12.22C21,6.73,16.74,3,12,3c-4.69,0-9,3.65-9,9.28C2.4,12.62,2,13.26,2,14v2c0,1.1,0.9,2,2,2h1v-6.1 c0-3.87,3.13-7,7-7s7,3.13,7,7V19h-8v2h8c1.1,0,2-0.9,2-2v-1.22c0.59-0.31,1-0.92,1-1.64v-2.3C22,13.14,21.59,12.53,21,12.22z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21,12.22C21,6.73,16.74,3,12,3c-4.69,0-9,3.65-9,9.28C2.4,12.62,2,13.26,2,14v2c0,1.1,0.9,2,2,2h1v-6.1 c0-3.87,3.13-7,7-7s7,3.13,7,7V19h-8v2h8c1.1,0,2-0.9,2-2v-1.22c0.59-0.31,1-0.92,1-1.64v-2.3C22,13.14,21.59,12.53,21,12.22z" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "9", + "cy": "13", + "r": "1" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "9", + "cy": "13", + "r": "1" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "15", + "cy": "13", + "r": "1" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "15", + "cy": "13", + "r": "1" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M18,11.03C17.52,8.18,15.04,6,12.05,6c-3.03,0-6.29,2.51-6.03,6.45c2.47-1.01,4.33-3.21,4.86-5.89 C12.19,9.19,14.88,11,18,11.03z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18,11.03C17.52,8.18,15.04,6,12.05,6c-3.03,0-6.29,2.51-6.03,6.45c2.47-1.01,4.33-3.21,4.86-5.89 C12.19,9.19,14.88,11,18,11.03z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_support_agent = ic_support_agent; \ No newline at end of file diff --git a/dist/md/ic_support_agent_outline.js b/dist/md/ic_support_agent_outline.js new file mode 100644 index 000000000..f16a8985a --- /dev/null +++ b/dist/md/ic_support_agent_outline.js @@ -0,0 +1,99 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_support_agent_outline = void 0; +var ic_support_agent_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M21,12.22C21,6.73,16.74,3,12,3c-4.69,0-9,3.65-9,9.28C2.4,12.62,2,13.26,2,14v2c0,1.1,0.9,2,2,2h1v-6.1 c0-3.87,3.13-7,7-7s7,3.13,7,7V19h-8v2h8c1.1,0,2-0.9,2-2v-1.22c0.59-0.31,1-0.92,1-1.64v-2.3C22,13.14,21.59,12.53,21,12.22z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21,12.22C21,6.73,16.74,3,12,3c-4.69,0-9,3.65-9,9.28C2.4,12.62,2,13.26,2,14v2c0,1.1,0.9,2,2,2h1v-6.1 c0-3.87,3.13-7,7-7s7,3.13,7,7V19h-8v2h8c1.1,0,2-0.9,2-2v-1.22c0.59-0.31,1-0.92,1-1.64v-2.3C22,13.14,21.59,12.53,21,12.22z" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "9", + "cy": "13", + "r": "1" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "9", + "cy": "13", + "r": "1" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "15", + "cy": "13", + "r": "1" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "15", + "cy": "13", + "r": "1" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M18,11.03C17.52,8.18,15.04,6,12.05,6c-3.03,0-6.29,2.51-6.03,6.45c2.47-1.01,4.33-3.21,4.86-5.89 C12.19,9.19,14.88,11,18,11.03z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18,11.03C17.52,8.18,15.04,6,12.05,6c-3.03,0-6.29,2.51-6.03,6.45c2.47-1.01,4.33-3.21,4.86-5.89 C12.19,9.19,14.88,11,18,11.03z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_support_agent_outline = ic_support_agent_outline; \ No newline at end of file diff --git a/dist/md/ic_support_agent_twotone.js b/dist/md/ic_support_agent_twotone.js new file mode 100644 index 000000000..f86b5529f --- /dev/null +++ b/dist/md/ic_support_agent_twotone.js @@ -0,0 +1,99 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_support_agent_twotone = void 0; +var ic_support_agent_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M21,12.22C21,6.73,16.74,3,12,3c-4.69,0-9,3.65-9,9.28C2.4,12.62,2,13.26,2,14v2c0,1.1,0.9,2,2,2h1v-6.1 c0-3.87,3.13-7,7-7s7,3.13,7,7V19h-8v2h8c1.1,0,2-0.9,2-2v-1.22c0.59-0.31,1-0.92,1-1.64v-2.3C22,13.14,21.59,12.53,21,12.22z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21,12.22C21,6.73,16.74,3,12,3c-4.69,0-9,3.65-9,9.28C2.4,12.62,2,13.26,2,14v2c0,1.1,0.9,2,2,2h1v-6.1 c0-3.87,3.13-7,7-7s7,3.13,7,7V19h-8v2h8c1.1,0,2-0.9,2-2v-1.22c0.59-0.31,1-0.92,1-1.64v-2.3C22,13.14,21.59,12.53,21,12.22z" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "9", + "cy": "13", + "r": "1" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "9", + "cy": "13", + "r": "1" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "15", + "cy": "13", + "r": "1" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "15", + "cy": "13", + "r": "1" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M18,11.03C17.52,8.18,15.04,6,12.05,6c-3.03,0-6.29,2.51-6.03,6.45c2.47-1.01,4.33-3.21,4.86-5.89 C12.19,9.19,14.88,11,18,11.03z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18,11.03C17.52,8.18,15.04,6,12.05,6c-3.03,0-6.29,2.51-6.03,6.45c2.47-1.01,4.33-3.21,4.86-5.89 C12.19,9.19,14.88,11,18,11.03z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_support_agent_twotone = ic_support_agent_twotone; \ No newline at end of file diff --git a/dist/md/ic_support_outline.js b/dist/md/ic_support_outline.js new file mode 100644 index 000000000..554bdbf87 --- /dev/null +++ b/dist/md/ic_support_outline.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_support_outline = void 0; +var ic_support_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M19.46,9.12l-2.78,1.15 c-0.51-1.36-1.58-2.44-2.95-2.94l1.15-2.78C16.98,5.35,18.65,7.02,19.46,9.12z M12,15c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3 S13.66,15,12,15z M9.13,4.54l1.17,2.78c-1.38,0.5-2.47,1.59-2.98,2.97L4.54,9.13C5.35,7.02,7.02,5.35,9.13,4.54z M4.54,14.87 l2.78-1.15c0.51,1.38,1.59,2.46,2.97,2.96l-1.17,2.78C7.02,18.65,5.35,16.98,4.54,14.87z M14.88,19.46l-1.15-2.78 c1.37-0.51,2.45-1.59,2.95-2.97l2.78,1.17C18.65,16.98,16.98,18.65,14.88,19.46z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M19.46,9.12l-2.78,1.15 c-0.51-1.36-1.58-2.44-2.95-2.94l1.15-2.78C16.98,5.35,18.65,7.02,19.46,9.12z M12,15c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3 S13.66,15,12,15z M9.13,4.54l1.17,2.78c-1.38,0.5-2.47,1.59-2.98,2.97L4.54,9.13C5.35,7.02,7.02,5.35,9.13,4.54z M4.54,14.87 l2.78-1.15c0.51,1.38,1.59,2.46,2.97,2.96l-1.17,2.78C7.02,18.65,5.35,16.98,4.54,14.87z M14.88,19.46l-1.15-2.78 c1.37-0.51,2.45-1.59,2.95-2.97l2.78,1.17C18.65,16.98,16.98,18.65,14.88,19.46z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_support_outline = ic_support_outline; \ No newline at end of file diff --git a/dist/md/ic_support_twotone.js b/dist/md/ic_support_twotone.js new file mode 100644 index 000000000..1e4838a02 --- /dev/null +++ b/dist/md/ic_support_twotone.js @@ -0,0 +1,111 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_support_twotone = void 0; +var ic_support_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M10.3,7.32L9.13,4.54C7.02,5.35,5.35,7.02,4.54,9.13l2.78,1.15C7.83,8.9,8.92,7.82,10.3,7.32z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M10.3,7.32L9.13,4.54C7.02,5.35,5.35,7.02,4.54,9.13l2.78,1.15C7.83,8.9,8.92,7.82,10.3,7.32z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M7.32,13.72l-2.78,1.15c0.81,2.1,2.48,3.78,4.59,4.59l1.17-2.78C8.91,16.18,7.83,15.09,7.32,13.72z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M7.32,13.72l-2.78,1.15c0.81,2.1,2.48,3.78,4.59,4.59l1.17-2.78C8.91,16.18,7.83,15.09,7.32,13.72z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M16.67,10.27l2.78-1.15c-0.81-2.1-2.48-3.77-4.58-4.58l-1.15,2.78C15.09,7.83,16.17,8.9,16.67,10.27z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M16.67,10.27l2.78-1.15c-0.81-2.1-2.48-3.77-4.58-4.58l-1.15,2.78C15.09,7.83,16.17,8.9,16.67,10.27z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M16.68,13.71c-0.5,1.37-1.58,2.46-2.95,2.97l1.15,2.78c2.1-0.81,3.77-2.48,4.58-4.58L16.68,13.71z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M16.68,13.71c-0.5,1.37-1.58,2.46-2.95,2.97l1.15,2.78c2.1-0.81,3.77-2.48,4.58-4.58L16.68,13.71z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M14.87,4.54 c2.1,0.81,3.77,2.48,4.58,4.58l-2.78,1.15c-0.51-1.36-1.58-2.44-2.95-2.94L14.87,4.54z M9.13,4.54l1.17,2.78 c-1.38,0.5-2.47,1.59-2.98,2.97L4.54,9.13C5.35,7.02,7.02,5.35,9.13,4.54z M9.13,19.46c-2.1-0.81-3.78-2.48-4.59-4.59l2.78-1.15 c0.51,1.38,1.59,2.46,2.97,2.96L9.13,19.46z M9,12c0-1.66,1.34-3,3-3s3,1.34,3,3s-1.34,3-3,3S9,13.66,9,12z M14.88,19.46 l-1.15-2.78c1.37-0.51,2.45-1.59,2.95-2.97l2.78,1.17C18.65,16.98,16.98,18.65,14.88,19.46z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M14.87,4.54 c2.1,0.81,3.77,2.48,4.58,4.58l-2.78,1.15c-0.51-1.36-1.58-2.44-2.95-2.94L14.87,4.54z M9.13,4.54l1.17,2.78 c-1.38,0.5-2.47,1.59-2.98,2.97L4.54,9.13C5.35,7.02,7.02,5.35,9.13,4.54z M9.13,19.46c-2.1-0.81-3.78-2.48-4.59-4.59l2.78-1.15 c0.51,1.38,1.59,2.46,2.97,2.96L9.13,19.46z M9,12c0-1.66,1.34-3,3-3s3,1.34,3,3s-1.34,3-3,3S9,13.66,9,12z M14.88,19.46 l-1.15-2.78c1.37-0.51,2.45-1.59,2.95-2.97l2.78,1.17C18.65,16.98,16.98,18.65,14.88,19.46z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_support_twotone = ic_support_twotone; \ No newline at end of file diff --git a/dist/md/ic_surround_sound.js b/dist/md/ic_surround_sound.js new file mode 100644 index 000000000..5d8a7c9a8 --- /dev/null +++ b/dist/md/ic_surround_sound.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_surround_sound = void 0; +var ic_surround_sound = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM7.76 16.24l-1.41 1.41C4.78 16.1 4 14.05 4 12c0-2.05.78-4.1 2.34-5.66l1.41 1.41C6.59 8.93 6 10.46 6 12s.59 3.07 1.76 4.24zM12 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm5.66 1.66l-1.41-1.41C17.41 15.07 18 13.54 18 12s-.59-3.07-1.76-4.24l1.41-1.41C19.22 7.9 20 9.95 20 12c0 2.05-.78 4.1-2.34 5.66zM12 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_surround_sound = ic_surround_sound; \ No newline at end of file diff --git a/dist/md/ic_surround_sound_outline.js b/dist/md/ic_surround_sound_outline.js new file mode 100644 index 000000000..560acfbb0 --- /dev/null +++ b/dist/md/ic_surround_sound_outline.js @@ -0,0 +1,131 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_surround_sound_outline = void 0; +var ic_surround_sound_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M20,18H4V6h16V18z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M20,18H4V6h16V18z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M8.29,15.71C7.27,14.69,6.75,13.35,6.75,12c0-1.35,0.52-2.69,1.53-3.72L7.05,7.05C5.68,8.41,5,10.21,5,12 s0.68,3.59,2.06,4.94L8.29,15.71z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M8.29,15.71C7.27,14.69,6.75,13.35,6.75,12c0-1.35,0.52-2.69,1.53-3.72L7.05,7.05C5.68,8.41,5,10.21,5,12 s0.68,3.59,2.06,4.94L8.29,15.71z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M12,15.5c1.93,0,3.5-1.57,3.5-3.5c0-1.93-1.57-3.5-3.5-3.5c-1.93,0-3.5,1.57-3.5,3.5C8.5,13.93,10.07,15.5,12,15.5z M12,10.5c0.83,0,1.5,0.67,1.5,1.5s-0.67,1.5-1.5,1.5s-1.5-0.67-1.5-1.5S11.17,10.5,12,10.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,15.5c1.93,0,3.5-1.57,3.5-3.5c0-1.93-1.57-3.5-3.5-3.5c-1.93,0-3.5,1.57-3.5,3.5C8.5,13.93,10.07,15.5,12,15.5z M12,10.5c0.83,0,1.5,0.67,1.5,1.5s-0.67,1.5-1.5,1.5s-1.5-0.67-1.5-1.5S11.17,10.5,12,10.5z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M15.72,15.72l1.23,1.23C18.32,15.59,19,13.79,19,12s-0.68-3.59-2.06-4.94l-1.23,1.23c1.02,1.02,1.54,2.36,1.54,3.71 C17.25,13.35,16.73,14.69,15.72,15.72z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15.72,15.72l1.23,1.23C18.32,15.59,19,13.79,19,12s-0.68-3.59-2.06-4.94l-1.23,1.23c1.02,1.02,1.54,2.36,1.54,3.71 C17.25,13.35,16.73,14.69,15.72,15.72z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_surround_sound_outline = ic_surround_sound_outline; \ No newline at end of file diff --git a/dist/md/ic_surround_sound_twotone.js b/dist/md/ic_surround_sound_twotone.js new file mode 100644 index 000000000..40d77c65a --- /dev/null +++ b/dist/md/ic_surround_sound_twotone.js @@ -0,0 +1,145 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_surround_sound_twotone = void 0; +var ic_surround_sound_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M4,18h16V6H4V18z M16.94,7.06C18.32,8.41,19,10.21,19,12s-0.68,3.59-2.05,4.95l-1.23-1.23 c1.02-1.03,1.53-2.37,1.53-3.72c0-1.35-0.52-2.69-1.54-3.71L16.94,7.06z M12,8.5c1.93,0,3.5,1.57,3.5,3.5c0,1.93-1.57,3.5-3.5,3.5 c-1.93,0-3.5-1.57-3.5-3.5C8.5,10.07,10.07,8.5,12,8.5z M7.05,7.05l1.23,1.23C7.27,9.31,6.75,10.65,6.75,12 c0,1.35,0.52,2.69,1.54,3.71l-1.23,1.23C5.68,15.59,5,13.79,5,12S5.68,8.41,7.05,7.05z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M4,18h16V6H4V18z M16.94,7.06C18.32,8.41,19,10.21,19,12s-0.68,3.59-2.05,4.95l-1.23-1.23 c1.02-1.03,1.53-2.37,1.53-3.72c0-1.35-0.52-2.69-1.54-3.71L16.94,7.06z M12,8.5c1.93,0,3.5,1.57,3.5,3.5c0,1.93-1.57,3.5-3.5,3.5 c-1.93,0-3.5-1.57-3.5-3.5C8.5,10.07,10.07,8.5,12,8.5z M7.05,7.05l1.23,1.23C7.27,9.31,6.75,10.65,6.75,12 c0,1.35,0.52,2.69,1.54,3.71l-1.23,1.23C5.68,15.59,5,13.79,5,12S5.68,8.41,7.05,7.05z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M20,18H4V6h16V18z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M20,18H4V6h16V18z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M8.29,15.71C7.27,14.69,6.75,13.35,6.75,12c0-1.35,0.52-2.69,1.53-3.72L7.05,7.05C5.68,8.41,5,10.21,5,12 s0.68,3.59,2.06,4.94L8.29,15.71z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M8.29,15.71C7.27,14.69,6.75,13.35,6.75,12c0-1.35,0.52-2.69,1.53-3.72L7.05,7.05C5.68,8.41,5,10.21,5,12 s0.68,3.59,2.06,4.94L8.29,15.71z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M12,15.5c1.93,0,3.5-1.57,3.5-3.5c0-1.93-1.57-3.5-3.5-3.5c-1.93,0-3.5,1.57-3.5,3.5C8.5,13.93,10.07,15.5,12,15.5z M12,10.5c0.83,0,1.5,0.67,1.5,1.5s-0.67,1.5-1.5,1.5s-1.5-0.67-1.5-1.5S11.17,10.5,12,10.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,15.5c1.93,0,3.5-1.57,3.5-3.5c0-1.93-1.57-3.5-3.5-3.5c-1.93,0-3.5,1.57-3.5,3.5C8.5,13.93,10.07,15.5,12,15.5z M12,10.5c0.83,0,1.5,0.67,1.5,1.5s-0.67,1.5-1.5,1.5s-1.5-0.67-1.5-1.5S11.17,10.5,12,10.5z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M15.72,15.72l1.23,1.23C18.32,15.59,19,13.79,19,12s-0.68-3.59-2.06-4.94l-1.23,1.23c1.02,1.02,1.54,2.36,1.54,3.71 C17.25,13.35,16.73,14.69,15.72,15.72z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15.72,15.72l1.23,1.23C18.32,15.59,19,13.79,19,12s-0.68-3.59-2.06-4.94l-1.23,1.23c1.02,1.02,1.54,2.36,1.54,3.71 C17.25,13.35,16.73,14.69,15.72,15.72z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_surround_sound_twotone = ic_surround_sound_twotone; \ No newline at end of file diff --git a/dist/md/ic_swap_calls.js b/dist/md/ic_swap_calls.js new file mode 100644 index 000000000..c42f8a182 --- /dev/null +++ b/dist/md/ic_swap_calls.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_swap_calls = void 0; +var ic_swap_calls = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 4l-4 4h3v7c0 1.1-.9 2-2 2s-2-.9-2-2V8c0-2.21-1.79-4-4-4S5 5.79 5 8v7H2l4 4 4-4H7V8c0-1.1.9-2 2-2s2 .9 2 2v7c0 2.21 1.79 4 4 4s4-1.79 4-4V8h3l-4-4z" + }, + "children": [] + }] +}; +exports.ic_swap_calls = ic_swap_calls; \ No newline at end of file diff --git a/dist/md/ic_swap_calls_outline.js b/dist/md/ic_swap_calls_outline.js new file mode 100644 index 000000000..b0c4afac7 --- /dev/null +++ b/dist/md/ic_swap_calls_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_swap_calls_outline = void 0; +var ic_swap_calls_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 4l-4 4h3v7c0 1.1-.9 2-2 2s-2-.9-2-2V8c0-2.21-1.79-4-4-4S5 5.79 5 8v7H2l4 4 4-4H7V8c0-1.1.9-2 2-2s2 .9 2 2v7c0 2.21 1.79 4 4 4s4-1.79 4-4V8h3l-4-4z" + }, + "children": [] + }] +}; +exports.ic_swap_calls_outline = ic_swap_calls_outline; \ No newline at end of file diff --git a/dist/md/ic_swap_calls_twotone.js b/dist/md/ic_swap_calls_twotone.js new file mode 100644 index 000000000..6f912a709 --- /dev/null +++ b/dist/md/ic_swap_calls_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_swap_calls_twotone = void 0; +var ic_swap_calls_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 8h3v7c0 1.1-.9 2-2 2s-2-.9-2-2V8c0-2.21-1.79-4-4-4S5 5.79 5 8v7H2l4 4 4-4H7V8c0-1.1.9-2 2-2s2 .9 2 2v7c0 2.21 1.79 4 4 4s4-1.79 4-4V8h3l-4-4-4 4z" + }, + "children": [] + }] +}; +exports.ic_swap_calls_twotone = ic_swap_calls_twotone; \ No newline at end of file diff --git a/dist/md/ic_swap_horiz.js b/dist/md/ic_swap_horiz.js new file mode 100644 index 000000000..925c75a4d --- /dev/null +++ b/dist/md/ic_swap_horiz.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_swap_horiz = void 0; +var ic_swap_horiz = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6.99 11L3 15l3.99 4v-3H14v-2H6.99v-3zM21 9l-3.99-4v3H10v2h7.01v3L21 9z" + }, + "children": [] + }] +}; +exports.ic_swap_horiz = ic_swap_horiz; \ No newline at end of file diff --git a/dist/md/ic_swap_horiz_outline.js b/dist/md/ic_swap_horiz_outline.js new file mode 100644 index 000000000..d6f24edde --- /dev/null +++ b/dist/md/ic_swap_horiz_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_swap_horiz_outline = void 0; +var ic_swap_horiz_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6.99 11L3 15l3.99 4v-3H14v-2H6.99v-3zM21 9l-3.99-4v3H10v2h7.01v3L21 9z" + }, + "children": [] + }] +}; +exports.ic_swap_horiz_outline = ic_swap_horiz_outline; \ No newline at end of file diff --git a/dist/md/ic_swap_horiz_twotone.js b/dist/md/ic_swap_horiz_twotone.js new file mode 100644 index 000000000..76d9c0f30 --- /dev/null +++ b/dist/md/ic_swap_horiz_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_swap_horiz_twotone = void 0; +var ic_swap_horiz_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6.99 11L3 15l3.99 4v-3H14v-2H6.99v-3zM21 9l-3.99-4v3H10v2h7.01v3L21 9z" + }, + "children": [] + }] +}; +exports.ic_swap_horiz_twotone = ic_swap_horiz_twotone; \ No newline at end of file diff --git a/dist/md/ic_swap_horizontal_circle.js b/dist/md/ic_swap_horizontal_circle.js new file mode 100644 index 000000000..bce66893b --- /dev/null +++ b/dist/md/ic_swap_horizontal_circle.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_swap_horizontal_circle = void 0; +var ic_swap_horizontal_circle = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 12c0-5.52-4.48-10-10-10S2 6.48 2 12s4.48 10 10 10 10-4.48 10-10zm-7-5.5l3.5 3.5-3.5 3.5V11h-4V9h4V6.5zm-6 11L5.5 14 9 10.5V13h4v2H9v2.5z" + }, + "children": [] + }] +}; +exports.ic_swap_horizontal_circle = ic_swap_horizontal_circle; \ No newline at end of file diff --git a/dist/md/ic_swap_horizontal_circle_outline.js b/dist/md/ic_swap_horizontal_circle_outline.js new file mode 100644 index 000000000..c12e72b95 --- /dev/null +++ b/dist/md/ic_swap_horizontal_circle_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_swap_horizontal_circle_outline = void 0; +var ic_swap_horizontal_circle_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm3-13.5V9h-4v2h4v2.5l3.5-3.5zm-6 4L5.5 14 9 17.5V15h4v-2H9z" + }, + "children": [] + }] +}; +exports.ic_swap_horizontal_circle_outline = ic_swap_horizontal_circle_outline; \ No newline at end of file diff --git a/dist/md/ic_swap_horizontal_circle_twotone.js b/dist/md/ic_swap_horizontal_circle_twotone.js new file mode 100644 index 000000000..416d2b545 --- /dev/null +++ b/dist/md/ic_swap_horizontal_circle_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_swap_horizontal_circle_twotone = void 0; +var ic_swap_horizontal_circle_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm1 11H9v2.5L5.5 14 9 10.5V13h4v2zm2-1.5V11h-4V9h4V6.5l3.5 3.5-3.5 3.5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm3-13.5V9h-4v2h4v2.5l3.5-3.5zm-6 4L5.5 14 9 17.5V15h4v-2H9z" + }, + "children": [] + }] +}; +exports.ic_swap_horizontal_circle_twotone = ic_swap_horizontal_circle_twotone; \ No newline at end of file diff --git a/dist/md/ic_swap_vert.js b/dist/md/ic_swap_vert.js new file mode 100644 index 000000000..767f82b56 --- /dev/null +++ b/dist/md/ic_swap_vert.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_swap_vert = void 0; +var ic_swap_vert = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 17.01V10h-2v7.01h-3L15 21l4-3.99h-3zM9 3L5 6.99h3V14h2V6.99h3L9 3z" + }, + "children": [] + }] +}; +exports.ic_swap_vert = ic_swap_vert; \ No newline at end of file diff --git a/dist/md/ic_swap_vert_outline.js b/dist/md/ic_swap_vert_outline.js new file mode 100644 index 000000000..9e1109df6 --- /dev/null +++ b/dist/md/ic_swap_vert_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_swap_vert_outline = void 0; +var ic_swap_vert_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 17.01V10h-2v7.01h-3L15 21l4-3.99h-3zM9 3L5 6.99h3V14h2V6.99h3L9 3zm7 14.01V10h-2v7.01h-3L15 21l4-3.99h-3zM9 3L5 6.99h3V14h2V6.99h3L9 3z" + }, + "children": [] + }] +}; +exports.ic_swap_vert_outline = ic_swap_vert_outline; \ No newline at end of file diff --git a/dist/md/ic_swap_vert_twotone.js b/dist/md/ic_swap_vert_twotone.js new file mode 100644 index 000000000..2ad26c2c0 --- /dev/null +++ b/dist/md/ic_swap_vert_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_swap_vert_twotone = void 0; +var ic_swap_vert_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 17.01V10h-2v7.01h-3L15 21l4-3.99h-3zM9 3L5 6.99h3V14h2V6.99h3L9 3z" + }, + "children": [] + }] +}; +exports.ic_swap_vert_twotone = ic_swap_vert_twotone; \ No newline at end of file diff --git a/dist/md/ic_swap_vertical_circle.js b/dist/md/ic_swap_vertical_circle.js new file mode 100644 index 000000000..14823fba0 --- /dev/null +++ b/dist/md/ic_swap_vertical_circle.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_swap_vertical_circle = void 0; +var ic_swap_vertical_circle = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM6.5 9L10 5.5 13.5 9H11v4H9V9H6.5zm11 6L14 18.5 10.5 15H13v-4h2v4h2.5z" + }, + "children": [] + }] +}; +exports.ic_swap_vertical_circle = ic_swap_vertical_circle; \ No newline at end of file diff --git a/dist/md/ic_swap_vertical_circle_outline.js b/dist/md/ic_swap_vertical_circle_outline.js new file mode 100644 index 000000000..eb2dedb89 --- /dev/null +++ b/dist/md/ic_swap_vertical_circle_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_swap_vertical_circle_outline = void 0; +var ic_swap_vertical_circle_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zM6.5 9L10 5.5 13.5 9H11v4H9V9zm11 6L14 18.5 10.5 15H13v-4h2v4z" + }, + "children": [] + }] +}; +exports.ic_swap_vertical_circle_outline = ic_swap_vertical_circle_outline; \ No newline at end of file diff --git a/dist/md/ic_swap_vertical_circle_twotone.js b/dist/md/ic_swap_vertical_circle_twotone.js new file mode 100644 index 000000000..629c00ed9 --- /dev/null +++ b/dist/md/ic_swap_vertical_circle_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_swap_vertical_circle_twotone = void 0; +var ic_swap_vertical_circle_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zM6.5 9L10 5.5 13.5 9H11v4H9V9H6.5zm7.5 9.5L10.5 15H13v-4h2v4h2.5L14 18.5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-1-7V9h2.5L10 5.5 6.5 9H9v4zm4-2h-2v4h-2.5l3.5 3.5 3.5-3.5H15z" + }, + "children": [] + }] +}; +exports.ic_swap_vertical_circle_twotone = ic_swap_vertical_circle_twotone; \ No newline at end of file diff --git a/dist/md/ic_swipe.js b/dist/md/ic_swipe.js new file mode 100644 index 000000000..63b2a2cf9 --- /dev/null +++ b/dist/md/ic_swipe.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_swipe = void 0; +var ic_swipe = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.75 16.25c0 .06-.01.13-.02.2l-.75 5.27c-.11.73-.69 1.28-1.44 1.28h-6.79c-.41 0-.79-.17-1.06-.44l-4.94-4.94.79-.8c.2-.2.48-.33.79-.33.09 0 .16.02.24.03l3.43.72V6.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v6h.76c.19 0 .37.04.54.11l4.54 2.26c.53.22.91.76.91 1.38zm.38-12.38C18.69 2.17 15.6 1 12 1S5.31 2.17 3.87 3.87L2 2v5h5L4.93 4.93c1-1.29 3.7-2.43 7.07-2.43s6.07 1.14 7.07 2.43L17 7h5V2l-1.87 1.87z" + }, + "children": [] + }] +}; +exports.ic_swipe = ic_swipe; \ No newline at end of file diff --git a/dist/md/ic_switch_account.js b/dist/md/ic_switch_account.js new file mode 100644 index 000000000..e017b7a81 --- /dev/null +++ b/dist/md/ic_switch_account.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_switch_account = void 0; +var ic_switch_account = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-6 2c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm6 12H8v-1.5c0-1.99 4-3 6-3s6 1.01 6 3V16z" + }, + "children": [] + }] +}; +exports.ic_switch_account = ic_switch_account; \ No newline at end of file diff --git a/dist/md/ic_switch_camera.js b/dist/md/ic_switch_camera.js new file mode 100644 index 000000000..01edf90cd --- /dev/null +++ b/dist/md/ic_switch_camera.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_switch_camera = void 0; +var ic_switch_camera = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 4h-3.17L15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-5 11.5V13H9v2.5L5.5 12 9 8.5V11h6V8.5l3.5 3.5-3.5 3.5z" + }, + "children": [] + }] +}; +exports.ic_switch_camera = ic_switch_camera; \ No newline at end of file diff --git a/dist/md/ic_switch_camera_outline.js b/dist/md/ic_switch_camera_outline.js new file mode 100644 index 000000000..a87b29f6e --- /dev/null +++ b/dist/md/ic_switch_camera_outline.js @@ -0,0 +1,30 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_switch_camera_outline = void 0; +var ic_switch_camera_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 4h-3.17L15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM9.88 4h4.24l1.83 2H20v12H4V6h4.05" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 11H9V8.5L5.5 12 9 15.5V13h6v2.5l3.5-3.5L15 8.5z" + }, + "children": [] + }] +}; +exports.ic_switch_camera_outline = ic_switch_camera_outline; \ No newline at end of file diff --git a/dist/md/ic_switch_camera_twotone.js b/dist/md/ic_switch_camera_twotone.js new file mode 100644 index 000000000..90a925ba1 --- /dev/null +++ b/dist/md/ic_switch_camera_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_switch_camera_twotone = void 0; +var ic_switch_camera_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14.12 4H9.88L8.05 6H4v12h16V6h-4.05l-1.83-2zM15 15.5V13H9v2.5L5.5 12 9 8.5V11h6V8.5l3.5 3.5-3.5 3.5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 4h-3.17L15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h4.05l1.83-2h4.24l1.83 2H20v12zm-5-7H9V8.5L5.5 12 9 15.5V13h6v2.5l3.5-3.5L15 8.5z" + }, + "children": [] + }] +}; +exports.ic_switch_camera_twotone = ic_switch_camera_twotone; \ No newline at end of file diff --git a/dist/md/ic_switch_left.js b/dist/md/ic_switch_left.js new file mode 100644 index 000000000..315a0e7c4 --- /dev/null +++ b/dist/md/ic_switch_left.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_switch_left = void 0; +var ic_switch_left = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8.5,8.62v6.76L5.12,12L8.5,8.62 M10,5l-7,7l7,7V5L10,5z M14,5v14l7-7L14,5z" + }, + "children": [] + }] +}; +exports.ic_switch_left = ic_switch_left; \ No newline at end of file diff --git a/dist/md/ic_switch_left_outline.js b/dist/md/ic_switch_left_outline.js new file mode 100644 index 000000000..b7537cfa4 --- /dev/null +++ b/dist/md/ic_switch_left_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_switch_left_outline = void 0; +var ic_switch_left_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8.5,8.62v6.76L5.12,12L8.5,8.62 M10,5l-7,7l7,7V5L10,5z M14,5v14l7-7L14,5z" + }, + "children": [] + }] +}; +exports.ic_switch_left_outline = ic_switch_left_outline; \ No newline at end of file diff --git a/dist/md/ic_switch_left_twotone.js b/dist/md/ic_switch_left_twotone.js new file mode 100644 index 000000000..481ba44cd --- /dev/null +++ b/dist/md/ic_switch_left_twotone.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_switch_left_twotone = void 0; +var ic_switch_left_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "opacity": ".3", + "points": "8.5,8.62 8.5,15.38 5.12,12 8.5,8.62" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8.5,8.62v6.76L5.12,12L8.5,8.62 M10,5l-7,7l7,7V5L10,5z M14,5v14l7-7L14,5z" + }, + "children": [] + }] +}; +exports.ic_switch_left_twotone = ic_switch_left_twotone; \ No newline at end of file diff --git a/dist/md/ic_switch_right.js b/dist/md/ic_switch_right.js new file mode 100644 index 000000000..2aa213875 --- /dev/null +++ b/dist/md/ic_switch_right.js @@ -0,0 +1,26 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_switch_right = void 0; +var ic_switch_right = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "transform": "matrix(-1 -1.224647e-16 1.224647e-16 -1 24 24)", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.5,15.38V8.62L18.88,12L15.5,15.38 M14,19l7-7l-7-7V19L14,19z M10,19V5l-7,7L10,19z" + }, + "children": [] + }] +}; +exports.ic_switch_right = ic_switch_right; \ No newline at end of file diff --git a/dist/md/ic_switch_right_outline.js b/dist/md/ic_switch_right_outline.js new file mode 100644 index 000000000..7d4230725 --- /dev/null +++ b/dist/md/ic_switch_right_outline.js @@ -0,0 +1,26 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_switch_right_outline = void 0; +var ic_switch_right_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "transform": "matrix(-1 -1.224647e-16 1.224647e-16 -1 24 24)", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.5,15.38V8.62L18.88,12L15.5,15.38 M14,19l7-7l-7-7V19L14,19z M10,19V5l-7,7L10,19z" + }, + "children": [] + }] +}; +exports.ic_switch_right_outline = ic_switch_right_outline; \ No newline at end of file diff --git a/dist/md/ic_switch_right_twotone.js b/dist/md/ic_switch_right_twotone.js new file mode 100644 index 000000000..d87262012 --- /dev/null +++ b/dist/md/ic_switch_right_twotone.js @@ -0,0 +1,33 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_switch_right_twotone = void 0; +var ic_switch_right_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "transform": "matrix(-1 -1.224647e-16 1.224647e-16 -1 24 24)", + "width": "24" + }, + "children": [] + }, { + "name": "polyline", + "attribs": { + "opacity": ".3", + "points": "15.5,15.38 15.5,8.62 18.88,12 15.5,15.38" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.5,15.38V8.62L18.88,12L15.5,15.38 M14,19l7-7l-7-7V19L14,19z M10,19V5l-7,7L10,19z" + }, + "children": [] + }] +}; +exports.ic_switch_right_twotone = ic_switch_right_twotone; \ No newline at end of file diff --git a/dist/md/ic_switch_video.js b/dist/md/ic_switch_video.js new file mode 100644 index 000000000..30eb84c33 --- /dev/null +++ b/dist/md/ic_switch_video.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_switch_video = void 0; +var ic_switch_video = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 9.5V6c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-3.5l4 4v-13l-4 4zm-5 6V13H7v2.5L3.5 12 7 8.5V11h6V8.5l3.5 3.5-3.5 3.5z" + }, + "children": [] + }] +}; +exports.ic_switch_video = ic_switch_video; \ No newline at end of file diff --git a/dist/md/ic_switch_video_outline.js b/dist/md/ic_switch_video_outline.js new file mode 100644 index 000000000..deff328ca --- /dev/null +++ b/dist/md/ic_switch_video_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_switch_video_outline = void 0; +var ic_switch_video_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8 13h4v2l3-3-3-3v2H8V9l-3 3 3 3zm10-3.5V6c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-3.5l4 4v-13l-4 4zM16 17H4V7h12v10z" + }, + "children": [] + }] +}; +exports.ic_switch_video_outline = ic_switch_video_outline; \ No newline at end of file diff --git a/dist/md/ic_switch_video_twotone.js b/dist/md/ic_switch_video_twotone.js new file mode 100644 index 000000000..0644be43b --- /dev/null +++ b/dist/md/ic_switch_video_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_switch_video_twotone = void 0; +var ic_switch_video_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 17h12V7H4v10zm4-8v2h4V9l3 3-3 3v-2H8v2l-3-3 3-3z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8 13h4v2l3-3-3-3v2H8V9l-3 3 3 3zm10-3.5V6c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-3.5l4 4v-13l-4 4zM16 17H4V7h12v10z" + }, + "children": [] + }] +}; +exports.ic_switch_video_twotone = ic_switch_video_twotone; \ No newline at end of file diff --git a/dist/md/ic_sync.js b/dist/md/ic_sync.js new file mode 100644 index 000000000..b84f4c00b --- /dev/null +++ b/dist/md/ic_sync.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sync = void 0; +var ic_sync = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4V1L8 5l4 4V6c3.31 0 6 2.69 6 6 0 1.01-.25 1.97-.7 2.8l1.46 1.46C19.54 15.03 20 13.57 20 12c0-4.42-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6 0-1.01.25-1.97.7-2.8L5.24 7.74C4.46 8.97 4 10.43 4 12c0 4.42 3.58 8 8 8v3l4-4-4-4v3z" + }, + "children": [] + }] +}; +exports.ic_sync = ic_sync; \ No newline at end of file diff --git a/dist/md/ic_sync_alt.js b/dist/md/ic_sync_alt.js new file mode 100644 index 000000000..d10690867 --- /dev/null +++ b/dist/md/ic_sync_alt.js @@ -0,0 +1,75 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sync_alt = void 0; +var ic_sync_alt = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,8l-4-4v3H3v2h15v3L22,8z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,8l-4-4v3H3v2h15v3L22,8z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M2,16l4,4v-3h15v-2H6v-3L2,16z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M2,16l4,4v-3h15v-2H6v-3L2,16z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_sync_alt = ic_sync_alt; \ No newline at end of file diff --git a/dist/md/ic_sync_alt_outline.js b/dist/md/ic_sync_alt_outline.js new file mode 100644 index 000000000..6c2a87f99 --- /dev/null +++ b/dist/md/ic_sync_alt_outline.js @@ -0,0 +1,75 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sync_alt_outline = void 0; +var ic_sync_alt_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,8l-4-4v3H3v2h15v3L22,8z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,8l-4-4v3H3v2h15v3L22,8z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M2,16l4,4v-3h15v-2H6v-3L2,16z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M2,16l4,4v-3h15v-2H6v-3L2,16z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_sync_alt_outline = ic_sync_alt_outline; \ No newline at end of file diff --git a/dist/md/ic_sync_alt_twotone.js b/dist/md/ic_sync_alt_twotone.js new file mode 100644 index 000000000..b7a04f3af --- /dev/null +++ b/dist/md/ic_sync_alt_twotone.js @@ -0,0 +1,75 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sync_alt_twotone = void 0; +var ic_sync_alt_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,8l-4-4v3H3v2h15v3L22,8z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,8l-4-4v3H3v2h15v3L22,8z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M2,16l4,4v-3h15v-2H6v-3L2,16z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M2,16l4,4v-3h15v-2H6v-3L2,16z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_sync_alt_twotone = ic_sync_alt_twotone; \ No newline at end of file diff --git a/dist/md/ic_sync_disabled.js b/dist/md/ic_sync_disabled.js new file mode 100644 index 000000000..0c6786321 --- /dev/null +++ b/dist/md/ic_sync_disabled.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sync_disabled = void 0; +var ic_sync_disabled = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0zm0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 6.35V4.26c-.8.21-1.55.54-2.23.96l1.46 1.46c.25-.12.5-.24.77-.33zm-7.14-.94l2.36 2.36C4.45 8.99 4 10.44 4 12c0 2.21.91 4.2 2.36 5.64L4 20h6v-6l-2.24 2.24C6.68 15.15 6 13.66 6 12c0-1 .25-1.94.68-2.77l8.08 8.08c-.25.13-.5.25-.77.34v2.09c.8-.21 1.55-.54 2.23-.96l2.36 2.36 1.27-1.27L4.14 4.14 2.86 5.41zM20 4h-6v6l2.24-2.24C17.32 8.85 18 10.34 18 12c0 1-.25 1.94-.68 2.77l1.46 1.46C19.55 15.01 20 13.56 20 12c0-2.21-.91-4.2-2.36-5.64L20 4z" + }, + "children": [] + }] +}; +exports.ic_sync_disabled = ic_sync_disabled; \ No newline at end of file diff --git a/dist/md/ic_sync_disabled_outline.js b/dist/md/ic_sync_disabled_outline.js new file mode 100644 index 000000000..1bcf8e748 --- /dev/null +++ b/dist/md/ic_sync_disabled_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sync_disabled_outline = void 0; +var ic_sync_disabled_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0zm0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 6.35V4.26c-.66.17-1.29.43-1.88.75l1.5 1.5c.13-.05.25-.11.38-.16zM20 12c0-2.21-.91-4.2-2.36-5.64L20 4h-6v6l2.24-2.24C17.32 8.85 18 10.34 18 12c0 .85-.19 1.65-.51 2.38l1.5 1.5C19.63 14.74 20 13.41 20 12zM4.27 4L2.86 5.41l2.36 2.36C4.45 8.99 4 10.44 4 12c0 2.21.91 4.2 2.36 5.64L4 20h6v-6l-2.24 2.24C6.68 15.15 6 13.66 6 12c0-1 .25-1.94.68-2.77l8.08 8.08c-.25.13-.5.24-.76.34v2.09c.8-.21 1.55-.54 2.23-.96l2.58 2.58 1.41-1.41L4.27 4z" + }, + "children": [] + }] +}; +exports.ic_sync_disabled_outline = ic_sync_disabled_outline; \ No newline at end of file diff --git a/dist/md/ic_sync_disabled_twotone.js b/dist/md/ic_sync_disabled_twotone.js new file mode 100644 index 000000000..995e29348 --- /dev/null +++ b/dist/md/ic_sync_disabled_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sync_disabled_twotone = void 0; +var ic_sync_disabled_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0zm0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 6.35V4.26c-.66.17-1.29.43-1.88.75l1.5 1.5c.13-.05.25-.11.38-.16zM20 12c0-2.21-.91-4.2-2.36-5.64L20 4h-6v6l2.24-2.24C17.32 8.85 18 10.34 18 12c0 .85-.19 1.65-.51 2.38l1.5 1.5C19.63 14.74 20 13.41 20 12zM4.27 4L2.86 5.41l2.36 2.36C4.45 8.99 4 10.44 4 12c0 2.21.91 4.2 2.36 5.64L4 20h6v-6l-2.24 2.24C6.68 15.15 6 13.66 6 12c0-1 .25-1.94.68-2.77l8.08 8.08c-.25.13-.5.24-.76.34v2.09c.8-.21 1.55-.54 2.23-.96l2.58 2.58 1.41-1.41L4.27 4z" + }, + "children": [] + }] +}; +exports.ic_sync_disabled_twotone = ic_sync_disabled_twotone; \ No newline at end of file diff --git a/dist/md/ic_sync_outline.js b/dist/md/ic_sync_outline.js new file mode 100644 index 000000000..c654765c2 --- /dev/null +++ b/dist/md/ic_sync_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sync_outline = void 0; +var ic_sync_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M.01 0h24v24h-24V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4V1L8 5l4 4V6c3.31 0 6 2.69 6 6 0 1.01-.25 1.97-.7 2.8l1.46 1.46C19.54 15.03 20 13.57 20 12c0-4.42-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6 0-1.01.25-1.97.7-2.8L5.24 7.74C4.46 8.97 4 10.43 4 12c0 4.42 3.58 8 8 8v3l4-4-4-4v3z" + }, + "children": [] + }] +}; +exports.ic_sync_outline = ic_sync_outline; \ No newline at end of file diff --git a/dist/md/ic_sync_problem.js b/dist/md/ic_sync_problem.js new file mode 100644 index 000000000..c911cd67c --- /dev/null +++ b/dist/md/ic_sync_problem.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sync_problem = void 0; +var ic_sync_problem = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 12c0 2.21.91 4.2 2.36 5.64L3 20h6v-6l-2.24 2.24C5.68 15.15 5 13.66 5 12c0-2.61 1.67-4.83 4-5.65V4.26C5.55 5.15 3 8.27 3 12zm8 5h2v-2h-2v2zM21 4h-6v6l2.24-2.24C18.32 8.85 19 10.34 19 12c0 2.61-1.67 4.83-4 5.65v2.09c3.45-.89 6-4.01 6-7.74 0-2.21-.91-4.2-2.36-5.64L21 4zm-10 9h2V7h-2v6z" + }, + "children": [] + }] +}; +exports.ic_sync_problem = ic_sync_problem; \ No newline at end of file diff --git a/dist/md/ic_sync_problem_outline.js b/dist/md/ic_sync_problem_outline.js new file mode 100644 index 000000000..a314a4d29 --- /dev/null +++ b/dist/md/ic_sync_problem_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sync_problem_outline = void 0; +var ic_sync_problem_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 12c0 2.21.91 4.2 2.36 5.64L3 20h6v-6l-2.24 2.24C5.68 15.15 5 13.66 5 12c0-2.61 1.67-4.83 4-5.65V4.26C5.55 5.15 3 8.27 3 12zm8 5h2v-2h-2v2zM21 4h-6v6l2.24-2.24C18.32 8.85 19 10.34 19 12c0 2.61-1.67 4.83-4 5.65v2.09c3.45-.89 6-4.01 6-7.74 0-2.21-.91-4.2-2.36-5.64L21 4zm-10 9h2V7h-2v6z" + }, + "children": [] + }] +}; +exports.ic_sync_problem_outline = ic_sync_problem_outline; \ No newline at end of file diff --git a/dist/md/ic_sync_problem_twotone.js b/dist/md/ic_sync_problem_twotone.js new file mode 100644 index 000000000..2b1d0e32a --- /dev/null +++ b/dist/md/ic_sync_problem_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sync_problem_twotone = void 0; +var ic_sync_problem_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 12c0 2.21.91 4.2 2.36 5.64L3 20h6v-6l-2.24 2.24C5.68 15.15 5 13.66 5 12c0-2.61 1.67-4.83 4-5.65V4.26C5.55 5.15 3 8.27 3 12zm8 5h2v-2h-2v2zM21 4h-6v6l2.24-2.24C18.32 8.85 19 10.34 19 12c0 2.61-1.67 4.83-4 5.65v2.09c3.45-.89 6-4.01 6-7.74 0-2.21-.91-4.2-2.36-5.64L21 4zm-10 9h2V7h-2v6z" + }, + "children": [] + }] +}; +exports.ic_sync_problem_twotone = ic_sync_problem_twotone; \ No newline at end of file diff --git a/dist/md/ic_sync_twotone.js b/dist/md/ic_sync_twotone.js new file mode 100644 index 000000000..ac1a9d6b8 --- /dev/null +++ b/dist/md/ic_sync_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_sync_twotone = void 0; +var ic_sync_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M.01 0h24v24h-24V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12.01 4V1l-4 4 4 4V6c3.31 0 6 2.69 6 6 0 1.01-.25 1.97-.7 2.8l1.46 1.46c.78-1.23 1.24-2.69 1.24-4.26 0-4.42-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6 0-1.01.25-1.97.7-2.8L5.25 7.74C4.47 8.97 4.01 10.43 4.01 12c0 4.42 3.58 8 8 8v3l4-4-4-4v3z" + }, + "children": [] + }] +}; +exports.ic_sync_twotone = ic_sync_twotone; \ No newline at end of file diff --git a/dist/md/ic_system_update.js b/dist/md/ic_system_update.js new file mode 100644 index 000000000..51f396034 --- /dev/null +++ b/dist/md/ic_system_update.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_system_update = void 0; +var ic_system_update = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 1.01L7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14zm-1-6h-3V8h-2v5H8l4 4 4-4z" + }, + "children": [] + }] +}; +exports.ic_system_update = ic_system_update; \ No newline at end of file diff --git a/dist/md/ic_system_update_alt.js b/dist/md/ic_system_update_alt.js new file mode 100644 index 000000000..6890e9fcc --- /dev/null +++ b/dist/md/ic_system_update_alt.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_system_update_alt = void 0; +var ic_system_update_alt = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 .5h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 16.5l4-4h-3v-9h-2v9H8l4 4zm9-13h-6v1.99h6v14.03H3V5.49h6V3.5H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2v-14c0-1.1-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_system_update_alt = ic_system_update_alt; \ No newline at end of file diff --git a/dist/md/ic_system_update_alt_outline.js b/dist/md/ic_system_update_alt_outline.js new file mode 100644 index 000000000..0d0fa67eb --- /dev/null +++ b/dist/md/ic_system_update_alt_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_system_update_alt_outline = void 0; +var ic_system_update_alt_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0zm0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 16l4-4h-3V3h-2v9H8l4 4zm9-13h-6v1.99h6v14.03H3V4.99h6V3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 13l4-4h-3V3h-2v9H8l4 4zm9-13h-6v1.99h6v14.03H3V4.99h6V3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_system_update_alt_outline = ic_system_update_alt_outline; \ No newline at end of file diff --git a/dist/md/ic_system_update_alt_twotone.js b/dist/md/ic_system_update_alt_twotone.js new file mode 100644 index 000000000..226d9407d --- /dev/null +++ b/dist/md/ic_system_update_alt_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_system_update_alt_twotone = void 0; +var ic_system_update_alt_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0zm0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 16l4-4h-3V3h-2v9H8l4 4zm9-13h-6v1.99h6v14.03H3V4.99h6V3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_system_update_alt_twotone = ic_system_update_alt_twotone; \ No newline at end of file diff --git a/dist/md/ic_system_update_outline.js b/dist/md/ic_system_update_outline.js new file mode 100644 index 000000000..e9a3aba42 --- /dev/null +++ b/dist/md/ic_system_update_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_system_update_outline = void 0; +var ic_system_update_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 1.01L7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14zm-1-6h-3V8h-2v5H8l4 4 4-4z" + }, + "children": [] + }] +}; +exports.ic_system_update_outline = ic_system_update_outline; \ No newline at end of file diff --git a/dist/md/ic_system_update_twotone.js b/dist/md/ic_system_update_twotone.js new file mode 100644 index 000000000..92111b88e --- /dev/null +++ b/dist/md/ic_system_update_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_system_update_twotone = void 0; +var ic_system_update_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 19h10V5H7v14zm4-6V8h2v5h3l-4 4-4-4h3z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 13h-3V8h-2v5H8l4 4zm1-11.99L7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z" + }, + "children": [] + }] +}; +exports.ic_system_update_twotone = ic_system_update_twotone; \ No newline at end of file diff --git a/dist/md/ic_tab.js b/dist/md/ic_tab.js new file mode 100644 index 000000000..7fda9479d --- /dev/null +++ b/dist/md/ic_tab.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_tab = void 0; +var ic_tab = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h10v4h8v10z" + }, + "children": [] + }] +}; +exports.ic_tab = ic_tab; \ No newline at end of file diff --git a/dist/md/ic_tab_outline.js b/dist/md/ic_tab_outline.js new file mode 100644 index 000000000..3771d43d3 --- /dev/null +++ b/dist/md/ic_tab_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_tab_outline = void 0; +var ic_tab_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0zm0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h10v4h8v10z" + }, + "children": [] + }] +}; +exports.ic_tab_outline = ic_tab_outline; \ No newline at end of file diff --git a/dist/md/ic_tab_twotone.js b/dist/md/ic_tab_twotone.js new file mode 100644 index 000000000..7bac8417e --- /dev/null +++ b/dist/md/ic_tab_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_tab_twotone = void 0; +var ic_tab_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0zm0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h10v4h8v10z" + }, + "children": [] + }] +}; +exports.ic_tab_twotone = ic_tab_twotone; \ No newline at end of file diff --git a/dist/md/ic_tab_unselected.js b/dist/md/ic_tab_unselected.js new file mode 100644 index 000000000..20dd617c6 --- /dev/null +++ b/dist/md/ic_tab_unselected.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_tab_unselected = void 0; +var ic_tab_unselected = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M1 9h2V7H1v2zm0 4h2v-2H1v2zm0-8h2V3c-1.1 0-2 .9-2 2zm8 16h2v-2H9v2zm-8-4h2v-2H1v2zm2 4v-2H1c0 1.1.9 2 2 2zM21 3h-8v6h10V5c0-1.1-.9-2-2-2zm0 14h2v-2h-2v2zM9 5h2V3H9v2zM5 21h2v-2H5v2zM5 5h2V3H5v2zm16 16c1.1 0 2-.9 2-2h-2v2zm0-8h2v-2h-2v2zm-8 8h2v-2h-2v2zm4 0h2v-2h-2v2z" + }, + "children": [] + }] +}; +exports.ic_tab_unselected = ic_tab_unselected; \ No newline at end of file diff --git a/dist/md/ic_tab_unselected_outline.js b/dist/md/ic_tab_unselected_outline.js new file mode 100644 index 000000000..7acd47714 --- /dev/null +++ b/dist/md/ic_tab_unselected_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_tab_unselected_outline = void 0; +var ic_tab_unselected_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M1 9h2V7H1v2zm0 4h2v-2H1v2zm0-8h2V3c-1.1 0-2 .9-2 2zm8 16h2v-2H9v2zm-8-4h2v-2H1v2zm2 4v-2H1c0 1.1.9 2 2 2zM21 3h-8v6h10V5c0-1.1-.9-2-2-2zm0 14h2v-2h-2v2zM9 5h2V3H9v2zM5 21h2v-2H5v2zM5 5h2V3H5v2zm16 16c1.1 0 2-.9 2-2h-2v2zm0-8h2v-2h-2v2zm-8 8h2v-2h-2v2zm4 0h2v-2h-2v2z" + }, + "children": [] + }] +}; +exports.ic_tab_unselected_outline = ic_tab_unselected_outline; \ No newline at end of file diff --git a/dist/md/ic_tab_unselected_twotone.js b/dist/md/ic_tab_unselected_twotone.js new file mode 100644 index 000000000..22cbf04b5 --- /dev/null +++ b/dist/md/ic_tab_unselected_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_tab_unselected_twotone = void 0; +var ic_tab_unselected_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M1 9h2V7H1v2zm0 4h2v-2H1v2zm0-8h2V3c-1.1 0-2 .9-2 2zm8 16h2v-2H9v2zm-8-4h2v-2H1v2zm2 4v-2H1c0 1.1.9 2 2 2zM21 3h-8v6h10V5c0-1.1-.9-2-2-2zm0 14h2v-2h-2v2zM9 5h2V3H9v2zM5 21h2v-2H5v2zM5 5h2V3H5v2zm16 16c1.1 0 2-.9 2-2h-2v2zm0-8h2v-2h-2v2zm-8 8h2v-2h-2v2zm4 0h2v-2h-2v2z" + }, + "children": [] + }] +}; +exports.ic_tab_unselected_twotone = ic_tab_unselected_twotone; \ No newline at end of file diff --git a/dist/md/ic_table_chart.js b/dist/md/ic_table_chart.js new file mode 100644 index 000000000..5d9f393a4 --- /dev/null +++ b/dist/md/ic_table_chart.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_table_chart = void 0; +var ic_table_chart = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 10.02h5V21h-5zM17 21h3c1.1 0 2-.9 2-2v-9h-5v11zm3-18H5c-1.1 0-2 .9-2 2v3h19V5c0-1.1-.9-2-2-2zM3 19c0 1.1.9 2 2 2h3V10H3v9z" + }, + "children": [] + }] +}; +exports.ic_table_chart = ic_table_chart; \ No newline at end of file diff --git a/dist/md/ic_table_chart_outline.js b/dist/md/ic_table_chart_outline.js new file mode 100644 index 000000000..d4f226bc6 --- /dev/null +++ b/dist/md/ic_table_chart_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_table_chart_outline = void 0; +var ic_table_chart_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h15c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 2v3H5V5h15zm-5 14h-5v-9h5v9zM5 10h3v9H5v-9zm12 9v-9h3v9h-3z" + }, + "children": [] + }] +}; +exports.ic_table_chart_outline = ic_table_chart_outline; \ No newline at end of file diff --git a/dist/md/ic_table_chart_twotone.js b/dist/md/ic_table_chart_twotone.js new file mode 100644 index 000000000..806b4b0b6 --- /dev/null +++ b/dist/md/ic_table_chart_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_table_chart_twotone = void 0; +var ic_table_chart_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 5h15v3H5zm12 5h3v9h-3zm-7 0h5v9h-5zm-5 0h3v9H5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h15c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM8 19H5v-9h3v9zm7 0h-5v-9h5v9zm5 0h-3v-9h3v9zm0-11H5V5h15v3z" + }, + "children": [] + }] +}; +exports.ic_table_chart_twotone = ic_table_chart_twotone; \ No newline at end of file diff --git a/dist/md/ic_table_rows.js b/dist/md/ic_table_rows.js new file mode 100644 index 000000000..9fd0f568d --- /dev/null +++ b/dist/md/ic_table_rows.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_table_rows = void 0; +var ic_table_rows = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M22,7H2V2h20V7z M22,9.5H2v5h20V9.5z M22,17H2v5h20V17z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,7H2V2h20V7z M22,9.5H2v5h20V9.5z M22,17H2v5h20V17z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_table_rows = ic_table_rows; \ No newline at end of file diff --git a/dist/md/ic_table_rows_outline.js b/dist/md/ic_table_rows_outline.js new file mode 100644 index 000000000..f8962b065 --- /dev/null +++ b/dist/md/ic_table_rows_outline.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_table_rows_outline = void 0; +var ic_table_rows_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }] + }, { + "name": "path", + "attribs": { + "d": "M22,2H2v20h20V2L22,2z M4,8V4h16v4H4L4,8z M4,14v-4h16v4H4L4,14z M4,20v-4h16v4H4L4,20z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,2H2v20h20V2L22,2z M4,8V4h16v4H4L4,8z M4,14v-4h16v4H4L4,14z M4,20v-4h16v4H4L4,20z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_table_rows_outline = ic_table_rows_outline; \ No newline at end of file diff --git a/dist/md/ic_table_rows_twotone.js b/dist/md/ic_table_rows_twotone.js new file mode 100644 index 000000000..14593251f --- /dev/null +++ b/dist/md/ic_table_rows_twotone.js @@ -0,0 +1,83 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_table_rows_twotone = void 0; +var ic_table_rows_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": { + "opacity": ".3" + }, + "children": [{ + "name": "g", + "attribs": { + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,4v4H4V4H20z M20,10v4H4v-4H20z M4,20v-4h16v4H4z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,4v4H4V4H20z M20,10v4H4v-4H20z M4,20v-4h16v4H4z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M2,2v20h20V2H2z M20,4v4H4V4H20z M20,10v4H4v-4H20z M4,20v-4h16v4H4z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M2,2v20h20V2H2z M20,4v4H4V4H20z M20,10v4H4v-4H20z M4,20v-4h16v4H4z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_table_rows_twotone = ic_table_rows_twotone; \ No newline at end of file diff --git a/dist/md/ic_table_view.js b/dist/md/ic_table_view.js new file mode 100644 index 000000000..e1c22a9a0 --- /dev/null +++ b/dist/md/ic_table_view.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_table_view = void 0; +var ic_table_view = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19,7H9C7.9,7,7,7.9,7,9v10c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V9C21,7.9,20.1,7,19,7z M19,9v2H9V9H19z M13,15v-2h2v2H13z M15,17v2h-2v-2H15z M11,15H9v-2h2V15z M17,13h2v2h-2V13z M9,17h2v2H9V17z M17,19v-2h2v2H17z M6,17H5c-1.1,0-2-0.9-2-2V5 c0-1.1,0.9-2,2-2h10c1.1,0,2,0.9,2,2v1h-2V5H5v10h1V17z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,7H9C7.9,7,7,7.9,7,9v10c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V9C21,7.9,20.1,7,19,7z M19,9v2H9V9H19z M13,15v-2h2v2H13z M15,17v2h-2v-2H15z M11,15H9v-2h2V15z M17,13h2v2h-2V13z M9,17h2v2H9V17z M17,19v-2h2v2H17z M6,17H5c-1.1,0-2-0.9-2-2V5 c0-1.1,0.9-2,2-2h10c1.1,0,2,0.9,2,2v1h-2V5H5v10h1V17z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_table_view = ic_table_view; \ No newline at end of file diff --git a/dist/md/ic_table_view_outline.js b/dist/md/ic_table_view_outline.js new file mode 100644 index 000000000..abacde6ed --- /dev/null +++ b/dist/md/ic_table_view_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_table_view_outline = void 0; +var ic_table_view_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19,7H9C7.9,7,7,7.9,7,9v10c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V9C21,7.9,20.1,7,19,7z M19,9v2H9V9H19z M13,15v-2h2v2H13z M15,17v2h-2v-2H15z M11,15H9v-2h2V15z M17,13h2v2h-2V13z M9,17h2v2H9V17z M17,19v-2h2v2H17z M6,17H5c-1.1,0-2-0.9-2-2V5 c0-1.1,0.9-2,2-2h10c1.1,0,2,0.9,2,2v1h-2V5H5v10h1V17z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,7H9C7.9,7,7,7.9,7,9v10c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V9C21,7.9,20.1,7,19,7z M19,9v2H9V9H19z M13,15v-2h2v2H13z M15,17v2h-2v-2H15z M11,15H9v-2h2V15z M17,13h2v2h-2V13z M9,17h2v2H9V17z M17,19v-2h2v2H17z M6,17H5c-1.1,0-2-0.9-2-2V5 c0-1.1,0.9-2,2-2h10c1.1,0,2,0.9,2,2v1h-2V5H5v10h1V17z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_table_view_outline = ic_table_view_outline; \ No newline at end of file diff --git a/dist/md/ic_table_view_twotone.js b/dist/md/ic_table_view_twotone.js new file mode 100644 index 000000000..b3a9b8a5f --- /dev/null +++ b/dist/md/ic_table_view_twotone.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_table_view_twotone = void 0; +var ic_table_view_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19,9v2H9V9H19z M13,15v-2h2v2H13z M15,17v2h-2v-2H15z M11,15H9v-2h2V15z M17,13h2v2h-2V13z M9,17h2v2H9V17z M17,19v-2h2v2H17z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,9v2H9V9H19z M13,15v-2h2v2H13z M15,17v2h-2v-2H15z M11,15H9v-2h2V15z M17,13h2v2h-2V13z M9,17h2v2H9V17z M17,19v-2h2v2H17z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19,7H9C7.9,7,7,7.9,7,9v10c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V9C21,7.9,20.1,7,19,7z M19,9v2H9V9H19z M13,15v-2h2v2H13z M15,17v2h-2v-2H15z M11,15H9v-2h2V15z M17,13h2v2h-2V13z M9,17h2v2H9V17z M17,19v-2h2v2H17z M6,17H5c-1.1,0-2-0.9-2-2V5 c0-1.1,0.9-2,2-2h10c1.1,0,2,0.9,2,2v1h-2V5H5v10h1V17z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,7H9C7.9,7,7,7.9,7,9v10c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V9C21,7.9,20.1,7,19,7z M19,9v2H9V9H19z M13,15v-2h2v2H13z M15,17v2h-2v-2H15z M11,15H9v-2h2V15z M17,13h2v2h-2V13z M9,17h2v2H9V17z M17,19v-2h2v2H17z M6,17H5c-1.1,0-2-0.9-2-2V5 c0-1.1,0.9-2,2-2h10c1.1,0,2,0.9,2,2v1h-2V5H5v10h1V17z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_table_view_twotone = ic_table_view_twotone; \ No newline at end of file diff --git a/dist/md/ic_tablet.js b/dist/md/ic_tablet.js new file mode 100644 index 000000000..d5a69be9f --- /dev/null +++ b/dist/md/ic_tablet.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_tablet = void 0; +var ic_tablet = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 4H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h18c1.1 0 1.99-.9 1.99-2L23 6c0-1.1-.9-2-2-2zm-2 14H5V6h14v12z" + }, + "children": [] + }] +}; +exports.ic_tablet = ic_tablet; \ No newline at end of file diff --git a/dist/md/ic_tablet_android.js b/dist/md/ic_tablet_android.js new file mode 100644 index 000000000..688c40f8b --- /dev/null +++ b/dist/md/ic_tablet_android.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_tablet_android = void 0; +var ic_tablet_android = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M18,0H6C4.34,0,3,1.34,3,3v18c0,1.66,1.34,3,3,3h12c1.66,0,3-1.34,3-3V3C21,1.34,19.66,0,18,0z M14,22h-4v-1h4V22z M19.25,19H4.75V3h14.5V19z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18,0H6C4.34,0,3,1.34,3,3v18c0,1.66,1.34,3,3,3h12c1.66,0,3-1.34,3-3V3C21,1.34,19.66,0,18,0z M14,22h-4v-1h4V22z M19.25,19H4.75V3h14.5V19z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_tablet_android = ic_tablet_android; \ No newline at end of file diff --git a/dist/md/ic_tablet_android_outline.js b/dist/md/ic_tablet_android_outline.js new file mode 100644 index 000000000..8cfd48791 --- /dev/null +++ b/dist/md/ic_tablet_android_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_tablet_android_outline = void 0; +var ic_tablet_android_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0zm0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 0H6C4.34 0 3 1.34 3 3v18c0 1.66 1.34 3 3 3h12c1.66 0 3-1.34 3-3V3c0-1.66-1.34-3-3-3zm-4 22h-4v-1h4v1zm5.25-3H4.75V3h14.5v16z" + }, + "children": [] + }] +}; +exports.ic_tablet_android_outline = ic_tablet_android_outline; \ No newline at end of file diff --git a/dist/md/ic_tablet_android_twotone.js b/dist/md/ic_tablet_android_twotone.js new file mode 100644 index 000000000..126f31448 --- /dev/null +++ b/dist/md/ic_tablet_android_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_tablet_android_twotone = void 0; +var ic_tablet_android_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0zm0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4.75 3h14.5v16H4.75z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 0H6C4.34 0 3 1.34 3 3v18c0 1.66 1.34 3 3 3h12c1.66 0 3-1.34 3-3V3c0-1.66-1.34-3-3-3zm-4 22h-4v-1h4v1zm5.25-3H4.75V3h14.5v16z" + }, + "children": [] + }] +}; +exports.ic_tablet_android_twotone = ic_tablet_android_twotone; \ No newline at end of file diff --git a/dist/md/ic_tablet_mac.js b/dist/md/ic_tablet_mac.js new file mode 100644 index 000000000..968ff9505 --- /dev/null +++ b/dist/md/ic_tablet_mac.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_tablet_mac = void 0; +var ic_tablet_mac = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.5 0h-14C3.12 0 2 1.12 2 2.5v19C2 22.88 3.12 24 4.5 24h14c1.38 0 2.5-1.12 2.5-2.5v-19C21 1.12 19.88 0 18.5 0zm-7 23c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm7.5-4H4V3h15v16z" + }, + "children": [] + }] +}; +exports.ic_tablet_mac = ic_tablet_mac; \ No newline at end of file diff --git a/dist/md/ic_tablet_mac_outline.js b/dist/md/ic_tablet_mac_outline.js new file mode 100644 index 000000000..41cfb7354 --- /dev/null +++ b/dist/md/ic_tablet_mac_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_tablet_mac_outline = void 0; +var ic_tablet_mac_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18.5 0h-14C3.12 0 2 1.12 2 2.5v19C2 22.88 3.12 24 4.5 24h14c1.38 0 2.5-1.12 2.5-2.5v-19C21 1.12 19.88 0 18.5 0zm-7 23c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm7.5-4H4V3h15v16z" + }, + "children": [] + }] +}; +exports.ic_tablet_mac_outline = ic_tablet_mac_outline; \ No newline at end of file diff --git a/dist/md/ic_tablet_mac_twotone.js b/dist/md/ic_tablet_mac_twotone.js new file mode 100644 index 000000000..a33149875 --- /dev/null +++ b/dist/md/ic_tablet_mac_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_tablet_mac_twotone = void 0; +var ic_tablet_mac_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 3h15v16H4z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18.5 0h-14C3.12 0 2 1.12 2 2.5v19C2 22.88 3.12 24 4.5 24h14c1.38 0 2.5-1.12 2.5-2.5v-19C21 1.12 19.88 0 18.5 0zm-7 23c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm7.5-4H4V3h15v16z" + }, + "children": [] + }] +}; +exports.ic_tablet_mac_twotone = ic_tablet_mac_twotone; \ No newline at end of file diff --git a/dist/md/ic_tablet_outline.js b/dist/md/ic_tablet_outline.js new file mode 100644 index 000000000..73e531cf8 --- /dev/null +++ b/dist/md/ic_tablet_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_tablet_outline = void 0; +var ic_tablet_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 4H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h18c1.1 0 1.99-.9 1.99-2L23 6c0-1.1-.9-2-2-2zm-2 14H5V6h14v12z" + }, + "children": [] + }] +}; +exports.ic_tablet_outline = ic_tablet_outline; \ No newline at end of file diff --git a/dist/md/ic_tablet_twotone.js b/dist/md/ic_tablet_twotone.js new file mode 100644 index 000000000..1e9399b7b --- /dev/null +++ b/dist/md/ic_tablet_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_tablet_twotone = void 0; +var ic_tablet_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 6h14v12H5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 4H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h18c1.1 0 1.99-.9 1.99-2L23 6c0-1.1-.9-2-2-2zm-2 14H5V6h14v12z" + }, + "children": [] + }] +}; +exports.ic_tablet_twotone = ic_tablet_twotone; \ No newline at end of file diff --git a/dist/md/ic_tag.js b/dist/md/ic_tag.js new file mode 100644 index 000000000..35f6d9f0a --- /dev/null +++ b/dist/md/ic_tag.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_tag = void 0; +var ic_tag = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M20 10V8h-4V4h-2v4h-4V4H8v4H4v2h4v4H4v2h4v4h2v-4h4v4h2v-4h4v-2h-4v-4h4zm-6 4h-4v-4h4v4z" + }, + "children": [] + }] +}; +exports.ic_tag = ic_tag; \ No newline at end of file diff --git a/dist/md/ic_tag_faces.js b/dist/md/ic_tag_faces.js new file mode 100644 index 000000000..ad7e885f7 --- /dev/null +++ b/dist/md/ic_tag_faces.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_tag_faces = void 0; +var ic_tag_faces = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 6.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z" + }, + "children": [] + }] +}; +exports.ic_tag_faces = ic_tag_faces; \ No newline at end of file diff --git a/dist/md/ic_tag_faces_outline.js b/dist/md/ic_tag_faces_outline.js new file mode 100644 index 000000000..fa745bb7a --- /dev/null +++ b/dist/md/ic_tag_faces_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_tag_faces_outline = void 0; +var ic_tag_faces_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 6.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z" + }, + "children": [] + }] +}; +exports.ic_tag_faces_outline = ic_tag_faces_outline; \ No newline at end of file diff --git a/dist/md/ic_tag_faces_twotone.js b/dist/md/ic_tag_faces_twotone.js new file mode 100644 index 000000000..c8b22386f --- /dev/null +++ b/dist/md/ic_tag_faces_twotone.js @@ -0,0 +1,53 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_tag_faces_twotone = void 0; +var ic_tag_faces_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm3.5 4c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-7 0c.83 0 1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5 7.67 8 8.5 8zm3.5 9.5c-2.33 0-4.31-1.46-5.11-3.5h10.22c-.8 2.04-2.78 3.5-5.11 3.5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "8.5", + "cy": "9.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 17.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "15.5", + "cy": "9.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" + }, + "children": [] + }] +}; +exports.ic_tag_faces_twotone = ic_tag_faces_twotone; \ No newline at end of file diff --git a/dist/md/ic_takeout_dining.js b/dist/md/ic_takeout_dining.js new file mode 100644 index 000000000..b719e73fa --- /dev/null +++ b/dist/md/ic_takeout_dining.js @@ -0,0 +1,49 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_takeout_dining = void 0; +var ic_takeout_dining = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M5.26,11h13.48l-0.67,9H5.93L5.26,11z M9.02,4h5.95L19,7.38l1.59-1.59L22,7.21 L19.21,10H4.79L2,7.21l1.41-1.41L5,7.38L9.02,4z", + "fill-rule": "evenodd" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M5.26,11h13.48l-0.67,9H5.93L5.26,11z M9.02,4h5.95L19,7.38l1.59-1.59L22,7.21 L19.21,10H4.79L2,7.21l1.41-1.41L5,7.38L9.02,4z", + "fill-rule": "evenodd" + }, + "children": [] + }] + }] + }] +}; +exports.ic_takeout_dining = ic_takeout_dining; \ No newline at end of file diff --git a/dist/md/ic_tap_and_play.js b/dist/md/ic_tap_and_play.js new file mode 100644 index 000000000..becf17364 --- /dev/null +++ b/dist/md/ic_tap_and_play.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_tap_and_play = void 0; +var ic_tap_and_play = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M2 16v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0 4v3h3c0-1.66-1.34-3-3-3zm0-8v2c4.97 0 9 4.03 9 9h2c0-6.08-4.92-11-11-11zM17 1.01L7 1c-1.1 0-2 .9-2 2v7.37c.69.16 1.36.37 2 .64V5h10v13h-3.03c.52 1.25.84 2.59.95 4H17c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99z" + }, + "children": [] + }] +}; +exports.ic_tap_and_play = ic_tap_and_play; \ No newline at end of file diff --git a/dist/md/ic_tap_and_play_outline.js b/dist/md/ic_tap_and_play_outline.js new file mode 100644 index 000000000..97fad7f5d --- /dev/null +++ b/dist/md/ic_tap_and_play_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_tap_and_play_outline = void 0; +var ic_tap_and_play_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M2 16v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0 4v3h3c0-1.66-1.34-3-3-3zm0-8v2c4.97 0 9 4.03 9 9h2c0-6.08-4.92-11-11-11zM17 1.01L7 1c-1.1 0-2 .9-2 2v7.37c.69.16 1.36.37 2 .64V5h10v13h-3.03c.52 1.25.84 2.59.95 4H17c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99z" + }, + "children": [] + }] +}; +exports.ic_tap_and_play_outline = ic_tap_and_play_outline; \ No newline at end of file diff --git a/dist/md/ic_tap_and_play_twotone.js b/dist/md/ic_tap_and_play_twotone.js new file mode 100644 index 000000000..03ee17ca5 --- /dev/null +++ b/dist/md/ic_tap_and_play_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_tap_and_play_twotone = void 0; +var ic_tap_and_play_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M2 16v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0 4v3h3c0-1.66-1.34-3-3-3zm0-8v2c4.97 0 9 4.03 9 9h2c0-6.08-4.92-11-11-11zM17 1.01L7 1c-1.1 0-2 .9-2 2v7.37c.69.16 1.36.37 2 .64V5h10v13h-3.03c.52 1.25.84 2.59.95 4H17c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99z" + }, + "children": [] + }] +}; +exports.ic_tap_and_play_twotone = ic_tap_and_play_twotone; \ No newline at end of file diff --git a/dist/md/ic_tapas.js b/dist/md/ic_tapas.js new file mode 100644 index 000000000..9aa6366bc --- /dev/null +++ b/dist/md/ic_tapas.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_tapas = void 0; +var ic_tapas = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22,10V1h-8v9c0,1.86,1.28,3.41,3,3.86V21h-2v2h6v-2h-2v-7.14C20.72,13.41,22,11.86,22,10z M20,3v3h-4V3H20z M12.5,11.5 c0,1.38-1.12,2.5-2.5,2.5H8v9H6v-9H4c-1.38,0-2.5-1.12-2.5-2.5C1.5,10.12,2.62,9,4,9h2V8H4C2.62,8,1.5,6.88,1.5,5.5 C1.5,4.12,2.62,3,4,3h2V1h2v2h2c1.38,0,2.5,1.12,2.5,2.5C12.5,6.88,11.38,8,10,8H8v1h2C11.38,9,12.5,10.12,12.5,11.5z" + }, + "children": [] + }] +}; +exports.ic_tapas = ic_tapas; \ No newline at end of file diff --git a/dist/md/ic_tapas_outline.js b/dist/md/ic_tapas_outline.js new file mode 100644 index 000000000..996371632 --- /dev/null +++ b/dist/md/ic_tapas_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_tapas_outline = void 0; +var ic_tapas_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22,10V1h-8v9c0,1.86,1.28,3.41,3,3.86V21h-2v2h6v-2h-2v-7.14C20.72,13.41,22,11.86,22,10z M20,3v3h-4V3H20z M16,10V8h4v2 c0,1.1-0.9,2-2,2S16,11.1,16,10z M10,9H8V8h2c1.38,0,2.5-1.12,2.5-2.5C12.5,4.12,11.38,3,10,3H8V1H6v2H4C2.62,3,1.5,4.12,1.5,5.5 C1.5,6.88,2.62,8,4,8h2v1H4c-1.38,0-2.5,1.12-2.5,2.5C1.5,12.88,2.62,14,4,14h2v9h2v-9h2c1.38,0,2.5-1.12,2.5-2.5 C12.5,10.12,11.38,9,10,9z M4,6C3.72,6,3.5,5.78,3.5,5.5S3.72,5,4,5h6c0.28,0,0.5,0.22,0.5,0.5S10.28,6,10,6H4z M10,12H4 c-0.28,0-0.5-0.22-0.5-0.5S3.72,11,4,11h6c0.28,0,0.5,0.22,0.5,0.5S10.28,12,10,12z" + }, + "children": [] + }] +}; +exports.ic_tapas_outline = ic_tapas_outline; \ No newline at end of file diff --git a/dist/md/ic_tapas_twotone.js b/dist/md/ic_tapas_twotone.js new file mode 100644 index 000000000..4df6fbdd8 --- /dev/null +++ b/dist/md/ic_tapas_twotone.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_tapas_twotone = void 0; +var ic_tapas_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16,10V8h4v2c0,1.1-0.9,2-2,2S16,11.1,16,10z M4,6C3.72,6,3.5,5.78,3.5,5.5S3.72,5,4,5h6 c0.28,0,0.5,0.22,0.5,0.5S10.28,6,10,6H4z M10,12H4c-0.28,0-0.5-0.22-0.5-0.5S3.72,11,4,11h6c0.28,0,0.5,0.22,0.5,0.5 S10.28,12,10,12z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22,10V1h-8v9c0,1.86,1.28,3.41,3,3.86V21h-2v2h6v-2h-2v-7.14C20.72,13.41,22,11.86,22,10z M20,3v3h-4V3H20z M16,10V8h4v2 c0,1.1-0.9,2-2,2S16,11.1,16,10z M10,9H8V8h2c1.38,0,2.5-1.12,2.5-2.5C12.5,4.12,11.38,3,10,3H8V1H6v2H4C2.62,3,1.5,4.12,1.5,5.5 C1.5,6.88,2.62,8,4,8h2v1H4c-1.38,0-2.5,1.12-2.5,2.5C1.5,12.88,2.62,14,4,14h2v9h2v-9h2c1.38,0,2.5-1.12,2.5-2.5 C12.5,10.12,11.38,9,10,9z M4,6C3.72,6,3.5,5.78,3.5,5.5S3.72,5,4,5h6c0.28,0,0.5,0.22,0.5,0.5S10.28,6,10,6H4z M10,12H4 c-0.28,0-0.5-0.22-0.5-0.5S3.72,11,4,11h6c0.28,0,0.5,0.22,0.5,0.5S10.28,12,10,12z" + }, + "children": [] + }] +}; +exports.ic_tapas_twotone = ic_tapas_twotone; \ No newline at end of file diff --git a/dist/md/ic_taxi_alert.js b/dist/md/ic_taxi_alert.js new file mode 100644 index 000000000..19e9f953c --- /dev/null +++ b/dist/md/ic_taxi_alert.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_taxi_alert = void 0; +var ic_taxi_alert = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M23 8A7 7 0 0 0 9.68 5H7v2H4.5a1.5 1.5 0 0 0-1.42 1.01L1 14v8a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1h12v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-7.68A7.01 7.01 0 0 0 23 8zm-18.5.5h4.53a6.93 6.93 0 0 0 2.08 4.5H3l1.5-4.5zm0 9.5a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3zm11 0a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3zm2.93-5.63l-.21.11-.18.09a4.97 4.97 0 0 1-.42.16l-.22.07-.23.06-.2.05a5 5 0 0 1-5.94-4.41A4.07 4.07 0 0 1 11 8l.02-.47.02-.17.04-.28.04-.21.05-.21.07-.24.05-.13a4.99 4.99 0 0 1 9.69 1.7 4.96 4.96 0 0 1-2.55 4.38zM15 4h2v5h-2zm0 6h2v2h-2z" + }, + "children": [] + }] +}; +exports.ic_taxi_alert = ic_taxi_alert; \ No newline at end of file diff --git a/dist/md/ic_terrain.js b/dist/md/ic_terrain.js new file mode 100644 index 000000000..527d69596 --- /dev/null +++ b/dist/md/ic_terrain.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_terrain = void 0; +var ic_terrain = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 6l-3.75 5 2.85 3.8-1.6 1.2C9.81 13.75 7 10 7 10l-6 8h22L14 6z" + }, + "children": [] + }] +}; +exports.ic_terrain = ic_terrain; \ No newline at end of file diff --git a/dist/md/ic_terrain_outline.js b/dist/md/ic_terrain_outline.js new file mode 100644 index 000000000..fd76ab97d --- /dev/null +++ b/dist/md/ic_terrain_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_terrain_outline = void 0; +var ic_terrain_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 6l-4.22 5.63 1.25 1.67L14 9.33 19 16h-8.46l-4.01-5.37L1 18h22L14 6zM5 16l1.52-2.03L8.04 16H5z" + }, + "children": [] + }] +}; +exports.ic_terrain_outline = ic_terrain_outline; \ No newline at end of file diff --git a/dist/md/ic_terrain_twotone.js b/dist/md/ic_terrain_twotone.js new file mode 100644 index 000000000..d1d399bfe --- /dev/null +++ b/dist/md/ic_terrain_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_terrain_twotone = void 0; +var ic_terrain_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 16h3.04l-1.52-2.03z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9.78 11.63l1.25 1.67L14 9.33 19 16h-8.46l-4.01-5.37L1 18h22L14 6l-4.22 5.63zM5 16l1.52-2.03L8.04 16H5z" + }, + "children": [] + }] +}; +exports.ic_terrain_twotone = ic_terrain_twotone; \ No newline at end of file diff --git a/dist/md/ic_text_fields.js b/dist/md/ic_text_fields.js new file mode 100644 index 000000000..9aafc973d --- /dev/null +++ b/dist/md/ic_text_fields.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_text_fields = void 0; +var ic_text_fields = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M2.5,4v3h5v12h3V7h5V4H2.5z M21.5,9h-9v3h3v7h3v-7h3V9z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M2.5,4v3h5v12h3V7h5V4H2.5z M21.5,9h-9v3h3v7h3v-7h3V9z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_text_fields = ic_text_fields; \ No newline at end of file diff --git a/dist/md/ic_text_fields_outline.js b/dist/md/ic_text_fields_outline.js new file mode 100644 index 000000000..9104d3aab --- /dev/null +++ b/dist/md/ic_text_fields_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_text_fields_outline = void 0; +var ic_text_fields_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M2.5 4v3h5v12h3V7h5V4h-13zm19 5h-9v3h3v7h3v-7h3V9z" + }, + "children": [] + }] +}; +exports.ic_text_fields_outline = ic_text_fields_outline; \ No newline at end of file diff --git a/dist/md/ic_text_fields_twotone.js b/dist/md/ic_text_fields_twotone.js new file mode 100644 index 000000000..baeb35f7d --- /dev/null +++ b/dist/md/ic_text_fields_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_text_fields_twotone = void 0; +var ic_text_fields_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12.5 12h3v7h3v-7h3V9h-9zm3-8h-13v3h5v12h3V7h5z" + }, + "children": [] + }] +}; +exports.ic_text_fields_twotone = ic_text_fields_twotone; \ No newline at end of file diff --git a/dist/md/ic_text_format.js b/dist/md/ic_text_format.js new file mode 100644 index 000000000..c051559c4 --- /dev/null +++ b/dist/md/ic_text_format.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_text_format = void 0; +var ic_text_format = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 17v2h14v-2H5zm4.5-4.2h5l.9 2.2h2.1L12.75 4h-1.5L6.5 15h2.1l.9-2.2zM12 5.98L13.87 11h-3.74L12 5.98z" + }, + "children": [] + }] +}; +exports.ic_text_format = ic_text_format; \ No newline at end of file diff --git a/dist/md/ic_text_format_outline.js b/dist/md/ic_text_format_outline.js new file mode 100644 index 000000000..388bca127 --- /dev/null +++ b/dist/md/ic_text_format_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_text_format_outline = void 0; +var ic_text_format_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 17v2h14v-2H5zm4.5-4.2h5l.9 2.2h2.1L12.75 4h-1.5L6.5 15h2.1l.9-2.2zM12 5.98L13.87 11h-3.74L12 5.98z" + }, + "children": [] + }] +}; +exports.ic_text_format_outline = ic_text_format_outline; \ No newline at end of file diff --git a/dist/md/ic_text_format_twotone.js b/dist/md/ic_text_format_twotone.js new file mode 100644 index 000000000..4004e2978 --- /dev/null +++ b/dist/md/ic_text_format_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_text_format_twotone = void 0; +var ic_text_format_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 17v2h14v-2H5zm4.5-4.2h5l.9 2.2h2.1L12.75 4h-1.5L6.5 15h2.1l.9-2.2zM12 5.98L13.87 11h-3.74L12 5.98z" + }, + "children": [] + }] +}; +exports.ic_text_format_twotone = ic_text_format_twotone; \ No newline at end of file diff --git a/dist/md/ic_text_rotate_up.js b/dist/md/ic_text_rotate_up.js new file mode 100644 index 000000000..6299be9d5 --- /dev/null +++ b/dist/md/ic_text_rotate_up.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_text_rotate_up = void 0; +var ic_text_rotate_up = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 12v1.5l11 4.75v-2.1l-2.2-.9v-5l2.2-.9v-2.1L3 12zm7 2.62l-5.02-1.87L10 10.88v3.74zm8-10.37l-3 3h2v12.5h2V7.25h2l-3-3z" + }, + "children": [] + }] +}; +exports.ic_text_rotate_up = ic_text_rotate_up; \ No newline at end of file diff --git a/dist/md/ic_text_rotate_up_outline.js b/dist/md/ic_text_rotate_up_outline.js new file mode 100644 index 000000000..635869340 --- /dev/null +++ b/dist/md/ic_text_rotate_up_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_text_rotate_up_outline = void 0; +var ic_text_rotate_up_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 4l-3 3h2v13h2V7h2l-3-3zm-6.2 11.5v-5l2.2-.9V7.5L3 12.25v1.5l11 4.75v-2.1l-2.2-.9zM4.98 13L10 11.13v3.74L4.98 13z" + }, + "children": [] + }] +}; +exports.ic_text_rotate_up_outline = ic_text_rotate_up_outline; \ No newline at end of file diff --git a/dist/md/ic_text_rotate_up_twotone.js b/dist/md/ic_text_rotate_up_twotone.js new file mode 100644 index 000000000..393e93d01 --- /dev/null +++ b/dist/md/ic_text_rotate_up_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_text_rotate_up_twotone = void 0; +var ic_text_rotate_up_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 4l-3 3h2v13h2V7h2l-3-3zm-6.2 11.5v-5l2.2-.9V7.5L3 12.25v1.5l11 4.75v-2.1l-2.2-.9zM4.98 13L10 11.13v3.74L4.98 13z" + }, + "children": [] + }] +}; +exports.ic_text_rotate_up_twotone = ic_text_rotate_up_twotone; \ No newline at end of file diff --git a/dist/md/ic_text_rotate_vertical.js b/dist/md/ic_text_rotate_vertical.js new file mode 100644 index 000000000..316b0b6be --- /dev/null +++ b/dist/md/ic_text_rotate_vertical.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_text_rotate_vertical = void 0; +var ic_text_rotate_vertical = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.75 5h-1.5L9.5 16h2.1l.9-2.2h5l.9 2.2h2.1L15.75 5zm-2.62 7L15 6.98 16.87 12h-3.74zM6 19.75l3-3H7V4.25H5v12.5H3l3 3z" + }, + "children": [] + }] +}; +exports.ic_text_rotate_vertical = ic_text_rotate_vertical; \ No newline at end of file diff --git a/dist/md/ic_text_rotate_vertical_outline.js b/dist/md/ic_text_rotate_vertical_outline.js new file mode 100644 index 000000000..f0a1ec73b --- /dev/null +++ b/dist/md/ic_text_rotate_vertical_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_text_rotate_vertical_outline = void 0; +var ic_text_rotate_vertical_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.75 5h-1.5L9.5 16h2.1l.9-2.2h5l.9 2.2h2.1L15.75 5zm-2.62 7L15 6.98 16.87 12h-3.74zM6 20l3-3H7V4H5v13H3l3 3z" + }, + "children": [] + }] +}; +exports.ic_text_rotate_vertical_outline = ic_text_rotate_vertical_outline; \ No newline at end of file diff --git a/dist/md/ic_text_rotate_vertical_twotone.js b/dist/md/ic_text_rotate_vertical_twotone.js new file mode 100644 index 000000000..554ab37bf --- /dev/null +++ b/dist/md/ic_text_rotate_vertical_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_text_rotate_vertical_twotone = void 0; +var ic_text_rotate_vertical_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.75 5h-1.5L9.5 16h2.1l.9-2.2h5l.9 2.2h2.1L15.75 5zm-2.62 7L15 6.98 16.87 12h-3.74zM6 20l3-3H7V4H5v13H3l3 3z" + }, + "children": [] + }] +}; +exports.ic_text_rotate_vertical_twotone = ic_text_rotate_vertical_twotone; \ No newline at end of file diff --git a/dist/md/ic_text_rotation_angledown.js b/dist/md/ic_text_rotation_angledown.js new file mode 100644 index 000000000..a9d23d846 --- /dev/null +++ b/dist/md/ic_text_rotation_angledown.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_text_rotation_angledown = void 0; +var ic_text_rotation_angledown = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.4 4.91l-1.06-1.06L7.2 8.27l1.48 1.48 2.19-.92 3.54 3.54-.92 2.19 1.48 1.48L19.4 4.91zm-6.81 3.1l4.87-2.23-2.23 4.87-2.64-2.64zM14.27 21v-4.24l-1.41 1.41-8.84-8.84-1.42 1.42 8.84 8.84L10.03 21h4.24z" + }, + "children": [] + }] +}; +exports.ic_text_rotation_angledown = ic_text_rotation_angledown; \ No newline at end of file diff --git a/dist/md/ic_text_rotation_angledown_outline.js b/dist/md/ic_text_rotation_angledown_outline.js new file mode 100644 index 000000000..8ca52d1d2 --- /dev/null +++ b/dist/md/ic_text_rotation_angledown_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_text_rotation_angledown_outline = void 0; +var ic_text_rotation_angledown_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 21v-4.24l-1.41 1.41-9.2-9.19-1.41 1.41 9.19 9.19L10.76 21H15zM11.25 8.48l3.54 3.54-.92 2.19 1.48 1.48 4.42-11.14-1.06-1.05L7.57 7.92 9.06 9.4l2.19-.92zm6.59-3.05l-2.23 4.87-2.64-2.64 4.87-2.23z" + }, + "children": [] + }] +}; +exports.ic_text_rotation_angledown_outline = ic_text_rotation_angledown_outline; \ No newline at end of file diff --git a/dist/md/ic_text_rotation_angledown_twotone.js b/dist/md/ic_text_rotation_angledown_twotone.js new file mode 100644 index 000000000..2ca766b98 --- /dev/null +++ b/dist/md/ic_text_rotation_angledown_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_text_rotation_angledown_twotone = void 0; +var ic_text_rotation_angledown_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 21v-4.24l-1.41 1.41-9.2-9.19-1.41 1.41 9.19 9.19L10.76 21H15zM11.25 8.48l3.54 3.54-.92 2.19 1.48 1.48 4.42-11.14-1.06-1.05L7.57 7.92 9.06 9.4l2.19-.92zm6.59-3.05l-2.23 4.87-2.64-2.64 4.87-2.23z" + }, + "children": [] + }] +}; +exports.ic_text_rotation_angledown_twotone = ic_text_rotation_angledown_twotone; \ No newline at end of file diff --git a/dist/md/ic_text_rotation_angleup.js b/dist/md/ic_text_rotation_angleup.js new file mode 100644 index 000000000..78f455440 --- /dev/null +++ b/dist/md/ic_text_rotation_angleup.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_text_rotation_angleup = void 0; +var ic_text_rotation_angleup = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4.49 4.21L3.43 5.27 7.85 16.4l1.48-1.48-.92-2.19 3.54-3.54 2.19.92 1.48-1.48L4.49 4.21zm3.09 6.8L5.36 6.14l4.87 2.23-2.65 2.64zm12.99-1.68h-4.24l1.41 1.41-8.84 8.84L10.32 21l8.84-8.84 1.41 1.41V9.33z" + }, + "children": [] + }] +}; +exports.ic_text_rotation_angleup = ic_text_rotation_angleup; \ No newline at end of file diff --git a/dist/md/ic_text_rotation_angleup_outline.js b/dist/md/ic_text_rotation_angleup_outline.js new file mode 100644 index 000000000..d0554892e --- /dev/null +++ b/dist/md/ic_text_rotation_angleup_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_text_rotation_angleup_outline = void 0; +var ic_text_rotation_angleup_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16.76 9l1.41 1.41-9.19 9.19 1.41 1.41 9.19-9.19L21 13.24V9h-4.24zm-8.28 3.75l3.54-3.54 2.19.92 1.48-1.48L4.56 4.23 3.5 5.29l4.42 11.14 1.48-1.48-.92-2.2zm-.82-1.72L5.43 6.16l4.87 2.23-2.64 2.64z" + }, + "children": [] + }] +}; +exports.ic_text_rotation_angleup_outline = ic_text_rotation_angleup_outline; \ No newline at end of file diff --git a/dist/md/ic_text_rotation_angleup_twotone.js b/dist/md/ic_text_rotation_angleup_twotone.js new file mode 100644 index 000000000..75fc5f3f6 --- /dev/null +++ b/dist/md/ic_text_rotation_angleup_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_text_rotation_angleup_twotone = void 0; +var ic_text_rotation_angleup_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16.76 9l1.41 1.41-9.19 9.19 1.41 1.41 9.19-9.19L21 13.24V9h-4.24zm-8.28 3.75l3.54-3.54 2.19.92 1.48-1.48L4.56 4.23 3.5 5.29l4.42 11.14 1.48-1.48-.92-2.2zm-.82-1.72L5.43 6.16l4.87 2.23-2.64 2.64z" + }, + "children": [] + }] +}; +exports.ic_text_rotation_angleup_twotone = ic_text_rotation_angleup_twotone; \ No newline at end of file diff --git a/dist/md/ic_text_rotation_down.js b/dist/md/ic_text_rotation_down.js new file mode 100644 index 000000000..3399752d1 --- /dev/null +++ b/dist/md/ic_text_rotation_down.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_text_rotation_down = void 0; +var ic_text_rotation_down = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 12v-1.5L10 5.75v2.1l2.2.9v5l-2.2.9v2.1L21 12zm-7-2.62l5.02 1.87L14 13.12V9.38zM6 19.75l3-3H7V4.25H5v12.5H3l3 3z" + }, + "children": [] + }] +}; +exports.ic_text_rotation_down = ic_text_rotation_down; \ No newline at end of file diff --git a/dist/md/ic_text_rotation_down_outline.js b/dist/md/ic_text_rotation_down_outline.js new file mode 100644 index 000000000..14c5061d5 --- /dev/null +++ b/dist/md/ic_text_rotation_down_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_text_rotation_down_outline = void 0; +var ic_text_rotation_down_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 20l3-3H7V4H5v13H3l3 3zm6.2-11.5v5l-2.2.9v2.1l11-4.75v-1.5L10 5.5v2.1l2.2.9zm6.82 2.5L14 12.87V9.13L19.02 11z" + }, + "children": [] + }] +}; +exports.ic_text_rotation_down_outline = ic_text_rotation_down_outline; \ No newline at end of file diff --git a/dist/md/ic_text_rotation_down_twotone.js b/dist/md/ic_text_rotation_down_twotone.js new file mode 100644 index 000000000..f2fd9682e --- /dev/null +++ b/dist/md/ic_text_rotation_down_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_text_rotation_down_twotone = void 0; +var ic_text_rotation_down_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 20l3-3H7V4H5v13H3l3 3zm6.2-11.5v5l-2.2.9v2.1l11-4.75v-1.5L10 5.5v2.1l2.2.9zm6.82 2.5L14 12.87V9.13L19.02 11z" + }, + "children": [] + }] +}; +exports.ic_text_rotation_down_twotone = ic_text_rotation_down_twotone; \ No newline at end of file diff --git a/dist/md/ic_text_rotation_none.js b/dist/md/ic_text_rotation_none.js new file mode 100644 index 000000000..678ca90f4 --- /dev/null +++ b/dist/md/ic_text_rotation_none.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_text_rotation_none = void 0; +var ic_text_rotation_none = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12.75 3h-1.5L6.5 14h2.1l.9-2.2h5l.9 2.2h2.1L12.75 3zm-2.62 7L12 4.98 13.87 10h-3.74zm10.37 8l-3-3v2H5v2h12.5v2l3-3z" + }, + "children": [] + }] +}; +exports.ic_text_rotation_none = ic_text_rotation_none; \ No newline at end of file diff --git a/dist/md/ic_text_rotation_none_outline.js b/dist/md/ic_text_rotation_none_outline.js new file mode 100644 index 000000000..89523036f --- /dev/null +++ b/dist/md/ic_text_rotation_none_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_text_rotation_none_outline = void 0; +var ic_text_rotation_none_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 18l-3-3v2H5v2h13v2l3-3zM9.5 11.8h5l.9 2.2h2.1L12.75 3h-1.5L6.5 14h2.1l.9-2.2zM12 4.98L13.87 10h-3.74L12 4.98z" + }, + "children": [] + }] +}; +exports.ic_text_rotation_none_outline = ic_text_rotation_none_outline; \ No newline at end of file diff --git a/dist/md/ic_text_rotation_none_twotone.js b/dist/md/ic_text_rotation_none_twotone.js new file mode 100644 index 000000000..1b07d3aaa --- /dev/null +++ b/dist/md/ic_text_rotation_none_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_text_rotation_none_twotone = void 0; +var ic_text_rotation_none_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 18l-3-3v2H5v2h13v2l3-3zM9.5 11.8h5l.9 2.2h2.1L12.75 3h-1.5L6.5 14h2.1l.9-2.2zM12 4.98L13.87 10h-3.74L12 4.98z" + }, + "children": [] + }] +}; +exports.ic_text_rotation_none_twotone = ic_text_rotation_none_twotone; \ No newline at end of file diff --git a/dist/md/ic_text_snippet.js b/dist/md/ic_text_snippet.js new file mode 100644 index 000000000..75a57c766 --- /dev/null +++ b/dist/md/ic_text_snippet.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_text_snippet = void 0; +var ic_text_snippet = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20.41,8.41l-4.83-4.83C15.21,3.21,14.7,3,14.17,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V9.83 C21,9.3,20.79,8.79,20.41,8.41z M7,7h7v2H7V7z M17,17H7v-2h10V17z M17,13H7v-2h10V13z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20.41,8.41l-4.83-4.83C15.21,3.21,14.7,3,14.17,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V9.83 C21,9.3,20.79,8.79,20.41,8.41z M7,7h7v2H7V7z M17,17H7v-2h10V17z M17,13H7v-2h10V13z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_text_snippet = ic_text_snippet; \ No newline at end of file diff --git a/dist/md/ic_text_snippet_outline.js b/dist/md/ic_text_snippet_outline.js new file mode 100644 index 000000000..13d19dfb6 --- /dev/null +++ b/dist/md/ic_text_snippet_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_text_snippet_outline = void 0; +var ic_text_snippet_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M14.17,5L19,9.83V19H5V5L14.17,5L14.17,5 M14.17,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V9.83 c0-0.53-0.21-1.04-0.59-1.41l-4.83-4.83C15.21,3.21,14.7,3,14.17,3L14.17,3z M7,15h10v2H7V15z M7,11h10v2H7V11z M7,7h7v2H7V7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14.17,5L19,9.83V19H5V5L14.17,5L14.17,5 M14.17,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V9.83 c0-0.53-0.21-1.04-0.59-1.41l-4.83-4.83C15.21,3.21,14.7,3,14.17,3L14.17,3z M7,15h10v2H7V15z M7,11h10v2H7V11z M7,7h7v2H7V7z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_text_snippet_outline = ic_text_snippet_outline; \ No newline at end of file diff --git a/dist/md/ic_text_snippet_twotone.js b/dist/md/ic_text_snippet_twotone.js new file mode 100644 index 000000000..46f00467c --- /dev/null +++ b/dist/md/ic_text_snippet_twotone.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_text_snippet_twotone = void 0; +var ic_text_snippet_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M14.17,5L19,9.83V19H5V5L14.17,5L14.17,5 M7,15h10v2H7V15z M7,11h10v2H7V11z M7,7h7v2H7V7z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14.17,5L19,9.83V19H5V5L14.17,5L14.17,5 M7,15h10v2H7V15z M7,11h10v2H7V11z M7,7h7v2H7V7z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M14.17,5L19,9.83V19H5V5L14.17,5L14.17,5 M14.17,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V9.83 c0-0.53-0.21-1.04-0.59-1.41l-4.83-4.83C15.21,3.21,14.7,3,14.17,3L14.17,3z M7,15h10v2H7V15z M7,11h10v2H7V11z M7,7h7v2H7V7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14.17,5L19,9.83V19H5V5L14.17,5L14.17,5 M14.17,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V9.83 c0-0.53-0.21-1.04-0.59-1.41l-4.83-4.83C15.21,3.21,14.7,3,14.17,3L14.17,3z M7,15h10v2H7V15z M7,11h10v2H7V11z M7,7h7v2H7V7z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_text_snippet_twotone = ic_text_snippet_twotone; \ No newline at end of file diff --git a/dist/md/ic_textsms.js b/dist/md/ic_textsms.js new file mode 100644 index 000000000..9b8009d8d --- /dev/null +++ b/dist/md/ic_textsms.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_textsms = void 0; +var ic_textsms = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM9 11H7V9h2v2zm4 0h-2V9h2v2zm4 0h-2V9h2v2z" + }, + "children": [] + }] +}; +exports.ic_textsms = ic_textsms; \ No newline at end of file diff --git a/dist/md/ic_textsms_outline.js b/dist/md/ic_textsms_outline.js new file mode 100644 index 000000000..eb4b1ab8a --- /dev/null +++ b/dist/md/ic_textsms_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_textsms_outline = void 0; +var ic_textsms_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H6l-2 2V4h16v12zM7 9h2v2H7zm4 0h2v2h-2zm4 0h2v2h-2z" + }, + "children": [] + }] +}; +exports.ic_textsms_outline = ic_textsms_outline; \ No newline at end of file diff --git a/dist/md/ic_textsms_twotone.js b/dist/md/ic_textsms_twotone.js new file mode 100644 index 000000000..8c5329ef8 --- /dev/null +++ b/dist/md/ic_textsms_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_textsms_twotone = void 0; +var ic_textsms_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 18l2-2h14V4H4v14zm11-9h2v2h-2V9zm-4 0h2v2h-2V9zM7 9h2v2H7V9z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H6l-2 2V4h16v12zM7 9h2v2H7zm4 0h2v2h-2zm4 0h2v2h-2z" + }, + "children": [] + }] +}; +exports.ic_textsms_twotone = ic_textsms_twotone; \ No newline at end of file diff --git a/dist/md/ic_texture.js b/dist/md/ic_texture.js new file mode 100644 index 000000000..0f6b8c1ca --- /dev/null +++ b/dist/md/ic_texture.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_texture = void 0; +var ic_texture = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.51 3.08L3.08 19.51c.09.34.27.65.51.9.25.24.56.42.9.51L20.93 4.49c-.19-.69-.73-1.23-1.42-1.41zM11.88 3L3 11.88v2.83L14.71 3h-2.83zM5 3c-1.1 0-2 .9-2 2v2l4-4H5zm14 18c.55 0 1.05-.22 1.41-.59.37-.36.59-.86.59-1.41v-2l-4 4h2zm-9.71 0h2.83L21 12.12V9.29L9.29 21z" + }, + "children": [] + }] +}; +exports.ic_texture = ic_texture; \ No newline at end of file diff --git a/dist/md/ic_texture_outline.js b/dist/md/ic_texture_outline.js new file mode 100644 index 000000000..7c04543f3 --- /dev/null +++ b/dist/md/ic_texture_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_texture_outline = void 0; +var ic_texture_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.51 3.08L3.08 19.51c.09.34.27.65.51.9.25.24.56.42.9.51L20.93 4.49c-.19-.69-.73-1.23-1.42-1.41zM11.88 3L3 11.88v2.83L14.71 3h-2.83zM5 3c-1.1 0-2 .9-2 2v2l4-4H5zm14 18c.55 0 1.05-.22 1.41-.59.37-.36.59-.86.59-1.41v-2l-4 4h2zm-9.71 0h2.83L21 12.12V9.29L9.29 21z" + }, + "children": [] + }] +}; +exports.ic_texture_outline = ic_texture_outline; \ No newline at end of file diff --git a/dist/md/ic_texture_twotone.js b/dist/md/ic_texture_twotone.js new file mode 100644 index 000000000..131f854e5 --- /dev/null +++ b/dist/md/ic_texture_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_texture_twotone = void 0; +var ic_texture_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.88 3L3 11.88v2.83L14.71 3zM3 5v2l4-4H5c-1.1 0-2 .9-2 2zm16.51-1.92L3.08 19.51c.09.34.27.65.51.9.25.24.56.42.9.51L20.93 4.49c-.19-.69-.73-1.23-1.42-1.41zM21 9.29L9.29 21h2.83L21 12.12zm-.59 11.12c.37-.36.59-.86.59-1.41v-2l-4 4h2c.55 0 1.05-.22 1.41-.59z" + }, + "children": [] + }] +}; +exports.ic_texture_twotone = ic_texture_twotone; \ No newline at end of file diff --git a/dist/md/ic_theater_comedy.js b/dist/md/ic_theater_comedy.js new file mode 100644 index 000000000..683e4d84f --- /dev/null +++ b/dist/md/ic_theater_comedy.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_theater_comedy = void 0; +var ic_theater_comedy = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M2,16.5C2,19.54,4.46,22,7.5,22s5.5-2.46,5.5-5.5V10H2V16.5z M7.5,18.5C6.12,18.5,5,17.83,5,17h5 C10,17.83,8.88,18.5,7.5,18.5z M10,13c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1s-1-0.45-1-1C9,13.45,9.45,13,10,13z M5,13 c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1s-1-0.45-1-1C4,13.45,4.45,13,5,13z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M2,16.5C2,19.54,4.46,22,7.5,22s5.5-2.46,5.5-5.5V10H2V16.5z M7.5,18.5C6.12,18.5,5,17.83,5,17h5 C10,17.83,8.88,18.5,7.5,18.5z M10,13c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1s-1-0.45-1-1C9,13.45,9.45,13,10,13z M5,13 c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1s-1-0.45-1-1C4,13.45,4.45,13,5,13z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M11,3v6h3v2.5c0-0.83,1.12-1.5,2.5-1.5c1.38,0,2.5,0.67,2.5,1.5h-5V14v0.39c0.75,0.38,1.6,0.61,2.5,0.61 c3.04,0,5.5-2.46,5.5-5.5V3H11z M14,8.08c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C15,7.64,14.55,8.08,14,8.08z M19,8.08 c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C20,7.64,19.55,8.08,19,8.08z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M11,3v6h3v2.5c0-0.83,1.12-1.5,2.5-1.5c1.38,0,2.5,0.67,2.5,1.5h-5V14v0.39c0.75,0.38,1.6,0.61,2.5,0.61 c3.04,0,5.5-2.46,5.5-5.5V3H11z M14,8.08c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C15,7.64,14.55,8.08,14,8.08z M19,8.08 c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C20,7.64,19.55,8.08,19,8.08z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_theater_comedy = ic_theater_comedy; \ No newline at end of file diff --git a/dist/md/ic_theaters.js b/dist/md/ic_theaters.js new file mode 100644 index 000000000..7b6431dfe --- /dev/null +++ b/dist/md/ic_theaters.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_theaters = void 0; +var ic_theaters = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 3v2h-2V3H8v2H6V3H4v18h2v-2h2v2h8v-2h2v2h2V3h-2zM8 17H6v-2h2v2zm0-4H6v-2h2v2zm0-4H6V7h2v2zm10 8h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V7h2v2z" + }, + "children": [] + }] +}; +exports.ic_theaters = ic_theaters; \ No newline at end of file diff --git a/dist/md/ic_theaters_outline.js b/dist/md/ic_theaters_outline.js new file mode 100644 index 000000000..50b448cc4 --- /dev/null +++ b/dist/md/ic_theaters_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_theaters_outline = void 0; +var ic_theaters_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 3v2h-2V3H8v2H6V3H4v18h2v-2h2v2h8v-2h2v2h2V3h-2zM8 17H6v-2h2v2zm0-4H6v-2h2v2zm0-4H6V7h2v2zm6 10h-4V5h4v14zm4-2h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V7h2v2z" + }, + "children": [] + }] +}; +exports.ic_theaters_outline = ic_theaters_outline; \ No newline at end of file diff --git a/dist/md/ic_theaters_twotone.js b/dist/md/ic_theaters_twotone.js new file mode 100644 index 000000000..00cdb0479 --- /dev/null +++ b/dist/md/ic_theaters_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_theaters_twotone = void 0; +var ic_theaters_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 3v2h-2V3H8v2H6V3H4v18h2v-2h2v2h8v-2h2v2h2V3h-2zM8 17H6v-2h2v2zm0-4H6v-2h2v2zm0-4H6V7h2v2zm6 10h-4V5h4v14zm4-2h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V7h2v2z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 5h4v14h-4z", + "opacity": ".3" + }, + "children": [] + }] +}; +exports.ic_theaters_twotone = ic_theaters_twotone; \ No newline at end of file diff --git a/dist/md/ic_thermostat_outline.js b/dist/md/ic_thermostat_outline.js new file mode 100644 index 000000000..2ea079861 --- /dev/null +++ b/dist/md/ic_thermostat_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_thermostat_outline = void 0; +var ic_thermostat_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 13V5c0-1.66-1.34-3-3-3S9 3.34 9 5v8c-1.21.91-2 2.37-2 4 0 2.76 2.24 5 5 5s5-2.24 5-5c0-1.63-.79-3.09-2-4zm-4-8c0-.55.45-1 1-1s1 .45 1 1h-1v1h1v2h-1v1h1v2h-2V5z" + }, + "children": [] + }] +}; +exports.ic_thermostat_outline = ic_thermostat_outline; \ No newline at end of file diff --git a/dist/md/ic_thermostat_twotone.js b/dist/md/ic_thermostat_twotone.js new file mode 100644 index 000000000..2d92be48e --- /dev/null +++ b/dist/md/ic_thermostat_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_thermostat_twotone = void 0; +var ic_thermostat_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 13V5c0-1.66-1.34-3-3-3S9 3.34 9 5v8c-1.21.91-2 2.37-2 4 0 2.76 2.24 5 5 5s5-2.24 5-5c0-1.63-.79-3.09-2-4zm-4-8c0-.55.45-1 1-1s1 .45 1 1h-1v1h1v2h-1v1h1v2h-2V5z" + }, + "children": [] + }] +}; +exports.ic_thermostat_twotone = ic_thermostat_twotone; \ No newline at end of file diff --git a/dist/md/ic_thumb_down.js b/dist/md/ic_thumb_down.js new file mode 100644 index 000000000..0b759216d --- /dev/null +++ b/dist/md/ic_thumb_down.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_thumb_down = void 0; +var ic_thumb_down = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 3H6c-.83 0-1.54.5-1.84 1.22l-3.02 7.05c-.09.23-.14.47-.14.73v2c0 1.1.9 2 2 2h6.31l-.95 4.57-.03.32c0 .41.17.79.44 1.06L9.83 23l6.59-6.59c.36-.36.58-.86.58-1.41V5c0-1.1-.9-2-2-2zm4 0v12h4V3h-4z" + }, + "children": [] + }] +}; +exports.ic_thumb_down = ic_thumb_down; \ No newline at end of file diff --git a/dist/md/ic_thumb_down_alt.js b/dist/md/ic_thumb_down_alt.js new file mode 100644 index 000000000..f882e0f5c --- /dev/null +++ b/dist/md/ic_thumb_down_alt.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_thumb_down_alt = void 0; +var ic_thumb_down_alt = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M24 24H0V0h24v24z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 4h-2c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h2V4zM2.17 11.12c-.11.25-.17.52-.17.8V13c0 1.1.9 2 2 2h5.5l-.92 4.65c-.05.22-.02.46.08.66.23.45.52.86.88 1.22L10 22l6.41-6.41c.38-.38.59-.89.59-1.42V6.34C17 5.05 15.95 4 14.66 4h-8.1c-.71 0-1.36.37-1.72.97l-2.67 6.15z" + }, + "children": [] + }] +}; +exports.ic_thumb_down_alt = ic_thumb_down_alt; \ No newline at end of file diff --git a/dist/md/ic_thumb_down_alt_outline.js b/dist/md/ic_thumb_down_alt_outline.js new file mode 100644 index 000000000..d9edc9785 --- /dev/null +++ b/dist/md/ic_thumb_down_alt_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_thumb_down_alt_outline = void 0; +var ic_thumb_down_alt_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none", + "opacity": ".87" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 3H6c-.83 0-1.54.5-1.84 1.22l-3.02 7.05c-.09.23-.14.47-.14.73v2c0 1.1.9 2 2 2h6.31l-.95 4.57-.03.32c0 .41.17.79.44 1.06L9.83 23l6.58-6.59c.37-.36.59-.86.59-1.41V5c0-1.1-.9-2-2-2zm0 12l-4.34 4.34L11.77 14H3v-2l3-7h9v10zm4-12h4v12h-4z" + }, + "children": [] + }] +}; +exports.ic_thumb_down_alt_outline = ic_thumb_down_alt_outline; \ No newline at end of file diff --git a/dist/md/ic_thumb_down_alt_twotone.js b/dist/md/ic_thumb_down_alt_twotone.js new file mode 100644 index 000000000..82d9d2317 --- /dev/null +++ b/dist/md/ic_thumb_down_alt_twotone.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_thumb_down_alt_twotone = void 0; +var ic_thumb_down_alt_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none", + "opacity": ".87" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 12v2h8.77l-1.11 5.34L15 15V5H6z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 3H6c-.83 0-1.54.5-1.84 1.22l-3.02 7.05c-.09.23-.14.47-.14.73v2c0 1.1.9 2 2 2h6.31l-.95 4.57-.03.32c0 .41.17.79.44 1.06L9.83 23l6.58-6.59c.37-.36.59-.86.59-1.41V5c0-1.1-.9-2-2-2zm0 12l-4.34 4.34L11.77 14H3v-2l3-7h9v10zm4-12h4v12h-4z" + }, + "children": [] + }] +}; +exports.ic_thumb_down_alt_twotone = ic_thumb_down_alt_twotone; \ No newline at end of file diff --git a/dist/md/ic_thumb_down_off_alt.js b/dist/md/ic_thumb_down_off_alt.js new file mode 100644 index 000000000..a18acb7f5 --- /dev/null +++ b/dist/md/ic_thumb_down_off_alt.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_thumb_down_off_alt = void 0; +var ic_thumb_down_off_alt = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M24 24H0V0h24v24z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10.89 18.28l.57-2.89c.12-.59-.04-1.2-.42-1.66-.38-.46-.94-.73-1.54-.73H4v-1.08L6.57 6h8.09c.18 0 .34.16.34.34v7.84l-4.11 4.1M10 22l6.41-6.41c.38-.38.59-.89.59-1.42V6.34C17 5.05 15.95 4 14.66 4h-8.1c-.71 0-1.36.37-1.72.97l-2.67 6.15c-.11.25-.17.52-.17.8V13c0 1.1.9 2 2 2h5.5l-.92 4.65c-.05.22-.02.46.08.66.23.45.52.86.88 1.22L10 22zm10-7h2V4h-2c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1z" + }, + "children": [] + }] +}; +exports.ic_thumb_down_off_alt = ic_thumb_down_off_alt; \ No newline at end of file diff --git a/dist/md/ic_thumb_down_outline.js b/dist/md/ic_thumb_down_outline.js new file mode 100644 index 000000000..ce5bfb81d --- /dev/null +++ b/dist/md/ic_thumb_down_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_thumb_down_outline = void 0; +var ic_thumb_down_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0zm0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 3H6c-.83 0-1.54.5-1.84 1.22l-3.02 7.05c-.09.23-.14.47-.14.73v2c0 1.1.9 2 2 2h6.31l-.95 4.57-.03.32c0 .41.17.79.44 1.06L9.83 23l6.59-6.59c.36-.36.58-.86.58-1.41V5c0-1.1-.9-2-2-2zm0 12l-4.34 4.34L12 14H3v-2l3-7h9v10zm4-12h4v12h-4z" + }, + "children": [] + }] +}; +exports.ic_thumb_down_outline = ic_thumb_down_outline; \ No newline at end of file diff --git a/dist/md/ic_thumb_down_twotone.js b/dist/md/ic_thumb_down_twotone.js new file mode 100644 index 000000000..9763bc311 --- /dev/null +++ b/dist/md/ic_thumb_down_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_thumb_down_twotone = void 0; +var ic_thumb_down_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0zm0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 12v2h9l-1.34 5.34L15 15V5H6z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 3H6c-.83 0-1.54.5-1.84 1.22l-3.02 7.05c-.09.23-.14.47-.14.73v2c0 1.1.9 2 2 2h6.31l-.95 4.57-.03.32c0 .41.17.79.44 1.06L9.83 23l6.59-6.59c.36-.36.58-.86.58-1.41V5c0-1.1-.9-2-2-2zm0 12l-4.34 4.34L12 14H3v-2l3-7h9v10zm4-12h4v12h-4z" + }, + "children": [] + }] +}; +exports.ic_thumb_down_twotone = ic_thumb_down_twotone; \ No newline at end of file diff --git a/dist/md/ic_thumb_up.js b/dist/md/ic_thumb_up.js new file mode 100644 index 000000000..7cd73b6d1 --- /dev/null +++ b/dist/md/ic_thumb_up.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_thumb_up = void 0; +var ic_thumb_up = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M1 21h4V9H1v12zm22-11c0-1.1-.9-2-2-2h-6.31l.95-4.57.03-.32c0-.41-.17-.79-.44-1.06L14.17 1 7.59 7.59C7.22 7.95 7 8.45 7 9v10c0 1.1.9 2 2 2h9c.83 0 1.54-.5 1.84-1.22l3.02-7.05c.09-.23.14-.47.14-.73v-2z" + }, + "children": [] + }] +}; +exports.ic_thumb_up = ic_thumb_up; \ No newline at end of file diff --git a/dist/md/ic_thumb_up_alt.js b/dist/md/ic_thumb_up_alt.js new file mode 100644 index 000000000..de10a1eb0 --- /dev/null +++ b/dist/md/ic_thumb_up_alt.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_thumb_up_alt = void 0; +var ic_thumb_up_alt = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M24 24H0V0h24v24z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M2 20h2c.55 0 1-.45 1-1v-9c0-.55-.45-1-1-1H2v11zm19.83-7.12c.11-.25.17-.52.17-.8V11c0-1.1-.9-2-2-2h-5.5l.92-4.65c.05-.22.02-.46-.08-.66-.23-.45-.52-.86-.88-1.22L14 2 7.59 8.41C7.21 8.79 7 9.3 7 9.83v7.84C7 18.95 8.05 20 9.34 20h8.11c.7 0 1.36-.37 1.72-.97l2.66-6.15z" + }, + "children": [] + }] +}; +exports.ic_thumb_up_alt = ic_thumb_up_alt; \ No newline at end of file diff --git a/dist/md/ic_thumb_up_alt_outline.js b/dist/md/ic_thumb_up_alt_outline.js new file mode 100644 index 000000000..36eae1f7c --- /dev/null +++ b/dist/md/ic_thumb_up_alt_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_thumb_up_alt_outline = void 0; +var ic_thumb_up_alt_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none", + "opacity": ".87" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 8h-6.31l.95-4.57.03-.32c0-.41-.17-.79-.44-1.06L14.17 1 7.59 7.59C7.22 7.95 7 8.45 7 9v10c0 1.1.9 2 2 2h9c.83 0 1.54-.5 1.84-1.22l3.02-7.05c.09-.23.14-.47.14-.73v-2c0-1.1-.9-2-2-2zm0 4l-3 7H9V9l4.34-4.34L12.23 10H21v2zM1 9h4v12H1z" + }, + "children": [] + }] +}; +exports.ic_thumb_up_alt_outline = ic_thumb_up_alt_outline; \ No newline at end of file diff --git a/dist/md/ic_thumb_up_alt_twotone.js b/dist/md/ic_thumb_up_alt_twotone.js new file mode 100644 index 000000000..0a63187c5 --- /dev/null +++ b/dist/md/ic_thumb_up_alt_twotone.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_thumb_up_alt_twotone = void 0; +var ic_thumb_up_alt_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none", + "opacity": ".87" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13.34 4.66L9 9v10h9l3-7v-2h-8.77z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 8h-6.31l.95-4.57.03-.32c0-.41-.17-.79-.44-1.06L14.17 1 7.59 7.59C7.22 7.95 7 8.45 7 9v10c0 1.1.9 2 2 2h9c.83 0 1.54-.5 1.84-1.22l3.02-7.05c.09-.23.14-.47.14-.73v-2c0-1.1-.9-2-2-2zm0 4l-3 7H9V9l4.34-4.34L12.23 10H21v2zM1 9h4v12H1z" + }, + "children": [] + }] +}; +exports.ic_thumb_up_alt_twotone = ic_thumb_up_alt_twotone; \ No newline at end of file diff --git a/dist/md/ic_thumb_up_off_alt.js b/dist/md/ic_thumb_up_off_alt.js new file mode 100644 index 000000000..1a0cd0d26 --- /dev/null +++ b/dist/md/ic_thumb_up_off_alt.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_thumb_up_off_alt = void 0; +var ic_thumb_up_off_alt = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13.11 5.72l-.57 2.89c-.12.59.04 1.2.42 1.66.38.46.94.73 1.54.73H20v1.08L17.43 18H9.34c-.18 0-.34-.16-.34-.34V9.82l4.11-4.1M14 2L7.59 8.41C7.21 8.79 7 9.3 7 9.83v7.83C7 18.95 8.05 20 9.34 20h8.1c.71 0 1.36-.37 1.72-.97l2.67-6.15c.11-.25.17-.52.17-.8V11c0-1.1-.9-2-2-2h-5.5l.92-4.65c.05-.22.02-.46-.08-.66-.23-.45-.52-.86-.88-1.22L14 2zM4 9H2v11h2c.55 0 1-.45 1-1v-9c0-.55-.45-1-1-1z" + }, + "children": [] + }] +}; +exports.ic_thumb_up_off_alt = ic_thumb_up_off_alt; \ No newline at end of file diff --git a/dist/md/ic_thumb_up_outline.js b/dist/md/ic_thumb_up_outline.js new file mode 100644 index 000000000..f634e7fa1 --- /dev/null +++ b/dist/md/ic_thumb_up_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_thumb_up_outline = void 0; +var ic_thumb_up_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0zm0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 21h9c.83 0 1.54-.5 1.84-1.22l3.02-7.05c.09-.23.14-.47.14-.73v-2c0-1.1-.9-2-2-2h-6.31l.95-4.57.03-.32c0-.41-.17-.79-.44-1.06L14.17 1 7.58 7.59C7.22 7.95 7 8.45 7 9v10c0 1.1.9 2 2 2zM9 9l4.34-4.34L12 10h9v2l-3 7H9V9zM1 9h4v12H1z" + }, + "children": [] + }] +}; +exports.ic_thumb_up_outline = ic_thumb_up_outline; \ No newline at end of file diff --git a/dist/md/ic_thumb_up_twotone.js b/dist/md/ic_thumb_up_twotone.js new file mode 100644 index 000000000..d67d4f05f --- /dev/null +++ b/dist/md/ic_thumb_up_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_thumb_up_twotone = void 0; +var ic_thumb_up_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0zm0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 12v-2h-9l1.34-5.34L9 9v10h9z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 21h9c.83 0 1.54-.5 1.84-1.22l3.02-7.05c.09-.23.14-.47.14-.73v-2c0-1.1-.9-2-2-2h-6.31l.95-4.57.03-.32c0-.41-.17-.79-.44-1.06L14.17 1 7.58 7.59C7.22 7.95 7 8.45 7 9v10c0 1.1.9 2 2 2zM9 9l4.34-4.34L12 10h9v2l-3 7H9V9zM1 9h4v12H1z" + }, + "children": [] + }] +}; +exports.ic_thumb_up_twotone = ic_thumb_up_twotone; \ No newline at end of file diff --git a/dist/md/ic_thumbs_up_down.js b/dist/md/ic_thumbs_up_down.js new file mode 100644 index 000000000..2e22dbf84 --- /dev/null +++ b/dist/md/ic_thumbs_up_down.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_thumbs_up_down = void 0; +var ic_thumbs_up_down = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 6c0-.55-.45-1-1-1H5.82l.66-3.18.02-.23c0-.31-.13-.59-.33-.8L5.38 0 .44 4.94C.17 5.21 0 5.59 0 6v6.5c0 .83.67 1.5 1.5 1.5h6.75c.62 0 1.15-.38 1.38-.91l2.26-5.29c.07-.17.11-.36.11-.55V6zm10.5 4h-6.75c-.62 0-1.15.38-1.38.91l-2.26 5.29c-.07.17-.11.36-.11.55V18c0 .55.45 1 1 1h5.18l-.66 3.18-.02.24c0 .31.13.59.33.8l.79.78 4.94-4.94c.27-.27.44-.65.44-1.06v-6.5c0-.83-.67-1.5-1.5-1.5z" + }, + "children": [] + }] +}; +exports.ic_thumbs_up_down = ic_thumbs_up_down; \ No newline at end of file diff --git a/dist/md/ic_thumbs_up_down_outline.js b/dist/md/ic_thumbs_up_down_outline.js new file mode 100644 index 000000000..aabefd9ab --- /dev/null +++ b/dist/md/ic_thumbs_up_down_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_thumbs_up_down_outline = void 0; +var ic_thumbs_up_down_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0zm0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 6c0-.55-.45-1-1-1H5.82l.66-3.18.02-.23c0-.31-.13-.59-.33-.8L5.38 0 .44 4.94C.17 5.21 0 5.59 0 6v6.5c0 .83.67 1.5 1.5 1.5h6.75c.62 0 1.15-.38 1.38-.91l2.26-5.29c.07-.17.11-.36.11-.55V6zm-2 1.13L7.92 12H2V6.21l1.93-1.93L3.36 7H10v.13zM22.5 10h-6.75c-.62 0-1.15.38-1.38.91l-2.26 5.29c-.07.17-.11.36-.11.55V18c0 .55.45 1 1 1h5.18l-.66 3.18-.02.24c0 .31.13.59.33.8l.79.78 4.94-4.94c.27-.27.44-.65.44-1.06v-6.5c0-.83-.67-1.5-1.5-1.5zm-.5 7.79l-1.93 1.93.57-2.72H14v-.13L16.08 12H22v5.79z" + }, + "children": [] + }] +}; +exports.ic_thumbs_up_down_outline = ic_thumbs_up_down_outline; \ No newline at end of file diff --git a/dist/md/ic_thumbs_up_down_twotone.js b/dist/md/ic_thumbs_up_down_twotone.js new file mode 100644 index 000000000..7d1b861ca --- /dev/null +++ b/dist/md/ic_thumbs_up_down_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_thumbs_up_down_twotone = void 0; +var ic_thumbs_up_down_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0zm0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 6c0-.55-.45-1-1-1H5.82l.66-3.18.02-.23c0-.31-.13-.59-.33-.8L5.38 0 .44 4.94C.17 5.21 0 5.59 0 6v6.5c0 .83.67 1.5 1.5 1.5h6.75c.62 0 1.15-.38 1.38-.91l2.26-5.29c.07-.17.11-.36.11-.55V6zm-2 1.13L7.92 12H2V6.21l1.93-1.93L3.36 7H10v.13zM22.5 10h-6.75c-.62 0-1.15.38-1.38.91l-2.26 5.29c-.07.17-.11.36-.11.55V18c0 .55.45 1 1 1h5.18l-.66 3.18-.02.24c0 .31.13.59.33.8l.79.78 4.94-4.94c.27-.27.44-.65.44-1.06v-6.5c0-.83-.67-1.5-1.5-1.5zm-.5 7.79l-1.93 1.93.57-2.72H14v-.13L16.08 12H22v5.79z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3.93 4.28L2 6.21V12h5.92L10 7.13V7H3.36zM14 16.87V17h6.64l-.57 2.72L22 17.79V12h-5.92z", + "opacity": ".3" + }, + "children": [] + }] +}; +exports.ic_thumbs_up_down_twotone = ic_thumbs_up_down_twotone; \ No newline at end of file diff --git a/dist/md/ic_time_to_leave.js b/dist/md/ic_time_to_leave.js new file mode 100644 index 000000000..6e4f8e342 --- /dev/null +++ b/dist/md/ic_time_to_leave.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_time_to_leave = void 0; +var ic_time_to_leave = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18.92 5.01C18.72 4.42 18.16 4 17.5 4h-11c-.66 0-1.21.42-1.42 1.01L3 11v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.5 15c-.83 0-1.5-.67-1.5-1.5S5.67 12 6.5 12s1.5.67 1.5 1.5S7.33 15 6.5 15zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 10l1.5-4.5h11L19 10H5z" + }, + "children": [] + }] +}; +exports.ic_time_to_leave = ic_time_to_leave; \ No newline at end of file diff --git a/dist/md/ic_time_to_leave_outline.js b/dist/md/ic_time_to_leave_outline.js new file mode 100644 index 000000000..356a9d092 --- /dev/null +++ b/dist/md/ic_time_to_leave_outline.js @@ -0,0 +1,40 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_time_to_leave_outline = void 0; +var ic_time_to_leave_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18.92 5.01C18.72 4.42 18.16 4 17.5 4h-11c-.66 0-1.21.42-1.42 1.01L3 11v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.85 6h10.29l1.04 3H5.81l1.04-3zM19 16H5v-4.66l.12-.34h13.77l.11.34V16z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "7.5", + "cy": "13.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "16.5", + "cy": "13.5", + "r": "1.5" + }, + "children": [] + }] +}; +exports.ic_time_to_leave_outline = ic_time_to_leave_outline; \ No newline at end of file diff --git a/dist/md/ic_time_to_leave_twotone.js b/dist/md/ic_time_to_leave_twotone.js new file mode 100644 index 000000000..9432bd1e1 --- /dev/null +++ b/dist/md/ic_time_to_leave_twotone.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_time_to_leave_twotone = void 0; +var ic_time_to_leave_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5.12 11l-.12.34V16h14v-4.66l-.12-.34H5.12zm2.38 4c-.83 0-1.5-.67-1.5-1.5S6.67 12 7.5 12s1.5.67 1.5 1.5S8.33 15 7.5 15zm9 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18.92 5.01C18.72 4.42 18.16 4 17.5 4h-11c-.66 0-1.21.42-1.42 1.01L3 11v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.85 6h10.29l1.04 3H5.81l1.04-3zM19 16H5v-4.66l.12-.34h13.77l.11.34V16z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "7.5", + "cy": "13.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "16.5", + "cy": "13.5", + "r": "1.5" + }, + "children": [] + }] +}; +exports.ic_time_to_leave_twotone = ic_time_to_leave_twotone; \ No newline at end of file diff --git a/dist/md/ic_timelapse.js b/dist/md/ic_timelapse.js new file mode 100644 index 000000000..54abe9063 --- /dev/null +++ b/dist/md/ic_timelapse.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_timelapse = void 0; +var ic_timelapse = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16.24 7.76C15.07 6.59 13.54 6 12 6v6l-4.24 4.24c2.34 2.34 6.14 2.34 8.49 0 2.34-2.34 2.34-6.14-.01-8.48zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" + }, + "children": [] + }] +}; +exports.ic_timelapse = ic_timelapse; \ No newline at end of file diff --git a/dist/md/ic_timelapse_outline.js b/dist/md/ic_timelapse_outline.js new file mode 100644 index 000000000..1508c4128 --- /dev/null +++ b/dist/md/ic_timelapse_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_timelapse_outline = void 0; +var ic_timelapse_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16.24 7.75c-1.17-1.17-2.7-1.76-4.24-1.76v6l-4.24 4.24c2.34 2.34 6.14 2.34 8.49 0 2.34-2.34 2.34-6.14-.01-8.48zM12 1.99c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" + }, + "children": [] + }] +}; +exports.ic_timelapse_outline = ic_timelapse_outline; \ No newline at end of file diff --git a/dist/md/ic_timelapse_twotone.js b/dist/md/ic_timelapse_twotone.js new file mode 100644 index 000000000..4fdde4775 --- /dev/null +++ b/dist/md/ic_timelapse_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_timelapse_twotone = void 0; +var ic_timelapse_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 3.99c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm4.25 12.24c-2.35 2.34-6.15 2.34-8.49 0L12 11.99v-6c1.54 0 3.07.59 4.24 1.76 2.35 2.34 2.35 6.14.01 8.48z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16.24 7.75c-1.17-1.17-2.7-1.76-4.24-1.76v6l-4.24 4.24c2.34 2.34 6.14 2.34 8.49 0 2.34-2.34 2.34-6.14-.01-8.48zM12 1.99c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" + }, + "children": [] + }] +}; +exports.ic_timelapse_twotone = ic_timelapse_twotone; \ No newline at end of file diff --git a/dist/md/ic_timeline.js b/dist/md/ic_timeline.js new file mode 100644 index 000000000..0eed39428 --- /dev/null +++ b/dist/md/ic_timeline.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_timeline = void 0; +var ic_timeline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M23,8c0,1.1-0.9,2-2,2c-0.18,0-0.35-0.02-0.51-0.07l-3.56,3.55C16.98,13.64,17,13.82,17,14c0,1.1-0.9,2-2,2s-2-0.9-2-2 c0-0.18,0.02-0.36,0.07-0.52l-2.55-2.55C10.36,10.98,10.18,11,10,11s-0.36-0.02-0.52-0.07l-4.55,4.56C4.98,15.65,5,15.82,5,16 c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2c0.18,0,0.35,0.02,0.51,0.07l4.56-4.55C8.02,9.36,8,9.18,8,9c0-1.1,0.9-2,2-2s2,0.9,2,2 c0,0.18-0.02,0.36-0.07,0.52l2.55,2.55C14.64,12.02,14.82,12,15,12s0.36,0.02,0.52,0.07l3.55-3.56C19.02,8.35,19,8.18,19,8 c0-1.1,0.9-2,2-2S23,6.9,23,8z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M23,8c0,1.1-0.9,2-2,2c-0.18,0-0.35-0.02-0.51-0.07l-3.56,3.55C16.98,13.64,17,13.82,17,14c0,1.1-0.9,2-2,2s-2-0.9-2-2 c0-0.18,0.02-0.36,0.07-0.52l-2.55-2.55C10.36,10.98,10.18,11,10,11s-0.36-0.02-0.52-0.07l-4.55,4.56C4.98,15.65,5,15.82,5,16 c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2c0.18,0,0.35,0.02,0.51,0.07l4.56-4.55C8.02,9.36,8,9.18,8,9c0-1.1,0.9-2,2-2s2,0.9,2,2 c0,0.18-0.02,0.36-0.07,0.52l2.55,2.55C14.64,12.02,14.82,12,15,12s0.36,0.02,0.52,0.07l3.55-3.56C19.02,8.35,19,8.18,19,8 c0-1.1,0.9-2,2-2S23,6.9,23,8z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_timeline = ic_timeline; \ No newline at end of file diff --git a/dist/md/ic_timeline_outline.js b/dist/md/ic_timeline_outline.js new file mode 100644 index 000000000..f2a0d8fae --- /dev/null +++ b/dist/md/ic_timeline_outline.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_timeline_outline = void 0; +var ic_timeline_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M23,8c0,1.1-0.9,2-2,2c-0.18,0-0.35-0.02-0.51-0.07l-3.56,3.55C16.98,13.64,17,13.82,17,14c0,1.1-0.9,2-2,2s-2-0.9-2-2 c0-0.18,0.02-0.36,0.07-0.52l-2.55-2.55C10.36,10.98,10.18,11,10,11c-0.18,0-0.36-0.02-0.52-0.07l-4.55,4.56 C4.98,15.65,5,15.82,5,16c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2c0.18,0,0.35,0.02,0.51,0.07l4.56-4.55C8.02,9.36,8,9.18,8,9 c0-1.1,0.9-2,2-2s2,0.9,2,2c0,0.18-0.02,0.36-0.07,0.52l2.55,2.55C14.64,12.02,14.82,12,15,12c0.18,0,0.36,0.02,0.52,0.07 l3.55-3.56C19.02,8.35,19,8.18,19,8c0-1.1,0.9-2,2-2S23,6.9,23,8z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M23,8c0,1.1-0.9,2-2,2c-0.18,0-0.35-0.02-0.51-0.07l-3.56,3.55C16.98,13.64,17,13.82,17,14c0,1.1-0.9,2-2,2s-2-0.9-2-2 c0-0.18,0.02-0.36,0.07-0.52l-2.55-2.55C10.36,10.98,10.18,11,10,11c-0.18,0-0.36-0.02-0.52-0.07l-4.55,4.56 C4.98,15.65,5,15.82,5,16c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2c0.18,0,0.35,0.02,0.51,0.07l4.56-4.55C8.02,9.36,8,9.18,8,9 c0-1.1,0.9-2,2-2s2,0.9,2,2c0,0.18-0.02,0.36-0.07,0.52l2.55,2.55C14.64,12.02,14.82,12,15,12c0.18,0,0.36,0.02,0.52,0.07 l3.55-3.56C19.02,8.35,19,8.18,19,8c0-1.1,0.9-2,2-2S23,6.9,23,8z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_timeline_outline = ic_timeline_outline; \ No newline at end of file diff --git a/dist/md/ic_timeline_twotone.js b/dist/md/ic_timeline_twotone.js new file mode 100644 index 000000000..013a1be7d --- /dev/null +++ b/dist/md/ic_timeline_twotone.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_timeline_twotone = void 0; +var ic_timeline_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M23,8c0,1.1-0.9,2-2,2c-0.18,0-0.35-0.02-0.51-0.07l-3.56,3.55C16.98,13.64,17,13.82,17,14c0,1.1-0.9,2-2,2s-2-0.9-2-2 c0-0.18,0.02-0.36,0.07-0.52l-2.55-2.55C10.36,10.98,10.18,11,10,11c-0.18,0-0.36-0.02-0.52-0.07l-4.55,4.56 C4.98,15.65,5,15.82,5,16c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2c0.18,0,0.35,0.02,0.51,0.07l4.56-4.55C8.02,9.36,8,9.18,8,9 c0-1.1,0.9-2,2-2s2,0.9,2,2c0,0.18-0.02,0.36-0.07,0.52l2.55,2.55C14.64,12.02,14.82,12,15,12c0.18,0,0.36,0.02,0.52,0.07 l3.55-3.56C19.02,8.35,19,8.18,19,8c0-1.1,0.9-2,2-2S23,6.9,23,8z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M23,8c0,1.1-0.9,2-2,2c-0.18,0-0.35-0.02-0.51-0.07l-3.56,3.55C16.98,13.64,17,13.82,17,14c0,1.1-0.9,2-2,2s-2-0.9-2-2 c0-0.18,0.02-0.36,0.07-0.52l-2.55-2.55C10.36,10.98,10.18,11,10,11c-0.18,0-0.36-0.02-0.52-0.07l-4.55,4.56 C4.98,15.65,5,15.82,5,16c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2c0.18,0,0.35,0.02,0.51,0.07l4.56-4.55C8.02,9.36,8,9.18,8,9 c0-1.1,0.9-2,2-2s2,0.9,2,2c0,0.18-0.02,0.36-0.07,0.52l2.55,2.55C14.64,12.02,14.82,12,15,12c0.18,0,0.36,0.02,0.52,0.07 l3.55-3.56C19.02,8.35,19,8.18,19,8c0-1.1,0.9-2,2-2S23,6.9,23,8z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_timeline_twotone = ic_timeline_twotone; \ No newline at end of file diff --git a/dist/md/ic_timer.js b/dist/md/ic_timer.js new file mode 100644 index 000000000..5a6fea419 --- /dev/null +++ b/dist/md/ic_timer.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_timer = void 0; +var ic_timer = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 1H9v2h6V1zm-4 13h2V8h-2v6zm8.03-6.61l1.42-1.42c-.43-.51-.9-.99-1.41-1.41l-1.42 1.42C16.07 4.74 14.12 4 12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9 9-4.03 9-9c0-2.12-.74-4.07-1.97-5.61zM12 20c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" + }, + "children": [] + }] +}; +exports.ic_timer = ic_timer; \ No newline at end of file diff --git a/dist/md/ic_timer_10.js b/dist/md/ic_timer_10.js new file mode 100644 index 000000000..3bc288bd7 --- /dev/null +++ b/dist/md/ic_timer_10.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_timer_10 = void 0; +var ic_timer_10 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0zm0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M0 7.72V9.4l3-1V18h2V6h-.25L0 7.72zm23.78 6.65c-.14-.28-.35-.53-.63-.74-.28-.21-.61-.39-1.01-.53s-.85-.27-1.35-.38c-.35-.07-.64-.15-.87-.23-.23-.08-.41-.16-.55-.25-.14-.09-.23-.19-.28-.3-.05-.11-.08-.24-.08-.39 0-.14.03-.28.09-.41.06-.13.15-.25.27-.34.12-.1.27-.18.45-.24s.4-.09.64-.09c.25 0 .47.04.66.11.19.07.35.17.48.29.13.12.22.26.29.42.06.16.1.32.1.49h1.95c0-.39-.08-.75-.24-1.09-.16-.34-.39-.63-.69-.88-.3-.25-.66-.44-1.09-.59C21.49 9.07 21 9 20.46 9c-.51 0-.98.07-1.39.21-.41.14-.77.33-1.06.57-.29.24-.51.52-.67.84-.16.32-.23.65-.23 1.01s.08.69.23.96c.15.28.36.52.64.73.27.21.6.38.98.53.38.14.81.26 1.27.36.39.08.71.17.95.26s.43.19.57.29c.13.1.22.22.27.34.05.12.07.25.07.39 0 .32-.13.57-.4.77-.27.2-.66.29-1.17.29-.22 0-.43-.02-.64-.08-.21-.05-.4-.13-.56-.24-.17-.11-.3-.26-.41-.44-.11-.18-.17-.41-.18-.67h-1.89c0 .36.08.71.24 1.05.16.34.39.65.7.93.31.27.69.49 1.15.66.46.17.98.25 1.58.25.53 0 1.01-.06 1.44-.19.43-.13.8-.31 1.11-.54.31-.23.54-.51.71-.83.17-.32.25-.67.25-1.06-.02-.4-.09-.74-.24-1.02zm-9.96-7.32c-.34-.4-.75-.7-1.23-.88-.47-.18-1.01-.27-1.59-.27-.58 0-1.11.09-1.59.27-.48.18-.89.47-1.23.88-.34.41-.6.93-.79 1.59-.18.65-.28 1.45-.28 2.39v1.92c0 .94.09 1.74.28 2.39.19.66.45 1.19.8 1.6.34.41.75.71 1.23.89.48.18 1.01.28 1.59.28.59 0 1.12-.09 1.59-.28.48-.18.88-.48 1.22-.89.34-.41.6-.94.78-1.6.18-.65.28-1.45.28-2.39v-1.92c0-.94-.09-1.74-.28-2.39-.18-.66-.44-1.19-.78-1.59zm-.92 6.17c0 .6-.04 1.11-.12 1.53-.08.42-.2.76-.36 1.02-.16.26-.36.45-.59.57-.23.12-.51.18-.82.18-.3 0-.58-.06-.82-.18s-.44-.31-.6-.57c-.16-.26-.29-.6-.38-1.02-.09-.42-.13-.93-.13-1.53v-2.5c0-.6.04-1.11.13-1.52.09-.41.21-.74.38-1 .16-.25.36-.43.6-.55.24-.11.51-.17.81-.17.31 0 .58.06.81.17.24.11.44.29.6.55.16.25.29.58.37.99.08.41.13.92.13 1.52v2.51z" + }, + "children": [] + }] +}; +exports.ic_timer_10 = ic_timer_10; \ No newline at end of file diff --git a/dist/md/ic_timer_10_outline.js b/dist/md/ic_timer_10_outline.js new file mode 100644 index 000000000..5b2c5d12a --- /dev/null +++ b/dist/md/ic_timer_10_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_timer_10_outline = void 0; +var ic_timer_10_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M-.01 7.72V9.4l3-1V18h2V6h-.25L-.01 7.72zm23.78 6.65c-.14-.28-.35-.53-.63-.74-.28-.21-.61-.39-1.01-.53s-.85-.27-1.35-.38c-.35-.07-.64-.15-.87-.23-.23-.08-.41-.16-.55-.25s-.23-.19-.28-.3c-.05-.11-.08-.24-.08-.39 0-.14.03-.28.09-.41s.15-.25.27-.34c.12-.1.27-.18.45-.24s.4-.09.64-.09c.25 0 .47.04.66.11s.35.17.48.29.22.26.29.42c.06.16.1.32.1.49h1.95c0-.39-.08-.75-.24-1.09s-.39-.63-.69-.88c-.3-.25-.66-.44-1.09-.59-.43-.15-.92-.22-1.46-.22-.51 0-.98.07-1.39.21s-.77.33-1.06.57c-.29.24-.51.52-.67.84-.16.32-.23.65-.23 1.01s.08.69.23.96c.15.28.36.52.64.73.27.21.6.38.98.53.38.14.81.26 1.27.36.39.08.71.17.95.26s.43.19.57.29c.13.1.22.22.27.34.05.12.07.25.07.39 0 .32-.13.57-.4.77s-.66.29-1.17.29c-.22 0-.43-.02-.64-.08-.21-.05-.4-.13-.56-.24-.17-.11-.3-.26-.41-.44-.11-.18-.17-.41-.18-.67h-1.89c0 .36.08.71.24 1.05s.39.65.7.93c.31.27.69.49 1.15.66s.98.25 1.58.25c.53 0 1.01-.06 1.44-.19.43-.13.8-.31 1.11-.54.31-.23.54-.51.71-.83.17-.32.25-.67.25-1.06-.02-.4-.09-.74-.24-1.02zm-9.96-7.32c-.34-.4-.75-.7-1.23-.88-.47-.18-1.01-.27-1.59-.27s-1.11.09-1.59.27c-.48.18-.89.47-1.23.88-.34.41-.6.93-.79 1.59-.18.65-.28 1.45-.28 2.39v1.92c0 .94.09 1.74.28 2.39.19.66.45 1.19.8 1.6.34.41.75.71 1.23.89s1.01.28 1.59.28c.59 0 1.12-.09 1.59-.28.48-.18.88-.48 1.22-.89s.6-.94.78-1.6c.18-.65.28-1.45.28-2.39v-1.92c0-.94-.09-1.74-.28-2.39-.18-.66-.44-1.19-.78-1.59zm-.92 6.17c0 .6-.04 1.11-.12 1.53s-.2.76-.36 1.02c-.16.26-.36.45-.59.57-.23.12-.51.18-.82.18-.3 0-.58-.06-.82-.18s-.44-.31-.6-.57c-.16-.26-.29-.6-.38-1.02s-.13-.93-.13-1.53v-2.5c0-.6.04-1.11.13-1.52s.21-.74.38-1c.16-.25.36-.43.6-.55.24-.11.51-.17.81-.17.31 0 .58.06.81.17.24.11.44.29.6.55.16.25.29.58.37.99s.13.92.13 1.52v2.51h-.01z" + }, + "children": [] + }] +}; +exports.ic_timer_10_outline = ic_timer_10_outline; \ No newline at end of file diff --git a/dist/md/ic_timer_10_twotone.js b/dist/md/ic_timer_10_twotone.js new file mode 100644 index 000000000..3a2d49db1 --- /dev/null +++ b/dist/md/ic_timer_10_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_timer_10_twotone = void 0; +var ic_timer_10_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M2.99 18h2V6h-.25L-.01 7.72V9.4l3-1zm9.59-11.83c-.47-.18-1.01-.27-1.59-.27s-1.11.09-1.59.27c-.48.18-.89.47-1.23.88-.34.41-.6.93-.79 1.59-.18.65-.28 1.45-.28 2.39v1.92c0 .94.09 1.74.28 2.39.19.66.45 1.19.8 1.6.34.41.75.71 1.23.89.48.18 1.01.28 1.59.28.59 0 1.12-.09 1.59-.28.48-.18.88-.48 1.22-.89.34-.41.6-.94.78-1.6.18-.65.28-1.45.28-2.39v-1.92c0-.94-.09-1.74-.28-2.39-.18-.66-.44-1.19-.78-1.59s-.75-.7-1.23-.88zm.32 7.05h-.01c0 .6-.04 1.11-.12 1.53-.08.42-.2.76-.36 1.02-.16.26-.36.45-.59.57s-.51.18-.82.18c-.3 0-.58-.06-.82-.18s-.44-.31-.6-.57c-.16-.26-.29-.6-.38-1.02-.09-.42-.13-.93-.13-1.53v-2.5c0-.6.04-1.11.13-1.52.09-.41.21-.74.38-1 .16-.25.36-.43.6-.55.24-.11.51-.17.81-.17.31 0 .58.06.81.17.24.11.44.29.6.55.16.25.29.58.37.99.08.41.13.92.13 1.52v2.51zm10.24.41c-.28-.21-.61-.39-1.01-.53s-.85-.27-1.35-.38c-.35-.07-.64-.15-.87-.23-.23-.08-.41-.16-.55-.25-.14-.09-.23-.19-.28-.3-.05-.11-.08-.24-.08-.39 0-.14.03-.28.09-.41.06-.13.15-.25.27-.34.12-.1.27-.18.45-.24s.4-.09.64-.09c.25 0 .47.04.66.11.19.07.35.17.48.29.13.12.22.26.29.42.06.16.1.32.1.49h1.95c0-.39-.08-.75-.24-1.09-.16-.34-.39-.63-.69-.88s-.66-.44-1.09-.59c-.43-.15-.92-.22-1.46-.22-.51 0-.98.07-1.39.21-.41.14-.77.33-1.06.57s-.51.52-.67.84c-.16.32-.23.65-.23 1.01s.08.69.23.96c.15.28.36.52.64.73.27.21.6.38.98.53.38.14.81.26 1.27.36.39.08.71.17.95.26s.43.19.57.29c.13.1.22.22.27.34s.07.25.07.39c0 .32-.13.57-.4.77-.27.2-.66.29-1.17.29-.22 0-.43-.02-.64-.08-.21-.05-.4-.13-.56-.24-.17-.11-.3-.26-.41-.44-.11-.18-.17-.41-.18-.67h-1.89c0 .36.08.71.24 1.05.16.34.39.65.7.93.31.27.69.49 1.15.66.46.17.98.25 1.58.25.53 0 1.01-.06 1.44-.19s.8-.31 1.11-.54c.31-.23.54-.51.71-.83.17-.32.25-.67.25-1.06-.02-.4-.09-.74-.24-1.02-.14-.28-.35-.53-.63-.74z" + }, + "children": [] + }] +}; +exports.ic_timer_10_twotone = ic_timer_10_twotone; \ No newline at end of file diff --git a/dist/md/ic_timer_3.js b/dist/md/ic_timer_3.js new file mode 100644 index 000000000..2af21bd52 --- /dev/null +++ b/dist/md/ic_timer_3.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_timer_3 = void 0; +var ic_timer_3 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0zm0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.61 12.97c-.16-.24-.36-.46-.62-.65-.25-.19-.56-.35-.93-.48.3-.14.57-.3.8-.5.23-.2.42-.41.57-.64.15-.23.27-.46.34-.71.08-.24.11-.49.11-.73 0-.55-.09-1.04-.28-1.46-.18-.42-.44-.77-.78-1.06-.33-.28-.73-.5-1.2-.64-.45-.13-.97-.2-1.53-.2-.55 0-1.06.08-1.52.24-.47.17-.87.4-1.2.69-.33.29-.6.63-.78 1.03-.2.39-.29.83-.29 1.29h1.98c0-.26.05-.49.14-.69.09-.2.22-.38.38-.52.17-.14.36-.25.58-.33.22-.08.46-.12.73-.12.61 0 1.06.16 1.36.47.3.31.44.75.44 1.32 0 .27-.04.52-.12.74-.08.22-.21.41-.38.57-.17.16-.38.28-.63.37-.25.09-.55.13-.89.13H6.72v1.57H7.9c.34 0 .64.04.91.11.27.08.5.19.69.35.19.16.34.36.44.61.1.24.16.54.16.87 0 .62-.18 1.09-.53 1.42-.35.33-.84.49-1.45.49-.29 0-.56-.04-.8-.13-.24-.08-.44-.2-.61-.36-.17-.16-.3-.34-.39-.56-.09-.22-.14-.46-.14-.72H4.19c0 .55.11 1.03.32 1.45.21.42.5.77.86 1.05s.77.49 1.24.63.96.21 1.48.21c.57 0 1.09-.08 1.58-.23.49-.15.91-.38 1.26-.68.36-.3.64-.66.84-1.1.2-.43.3-.93.3-1.48 0-.29-.04-.58-.11-.86-.08-.25-.19-.51-.35-.76zm9.26 1.4c-.14-.28-.35-.53-.63-.74-.28-.21-.61-.39-1.01-.53s-.85-.27-1.35-.38c-.35-.07-.64-.15-.87-.23-.23-.08-.41-.16-.55-.25-.14-.09-.23-.19-.28-.3-.05-.11-.08-.24-.08-.39s.03-.28.09-.41c.06-.13.15-.25.27-.34.12-.1.27-.18.45-.24s.4-.09.64-.09c.25 0 .47.04.66.11.19.07.35.17.48.29.13.12.22.26.29.42.06.16.1.32.1.49h1.95c0-.39-.08-.75-.24-1.09-.16-.34-.39-.63-.69-.88-.3-.25-.66-.44-1.09-.59-.43-.15-.92-.22-1.46-.22-.51 0-.98.07-1.39.21-.41.14-.77.33-1.06.57-.29.24-.51.52-.67.84-.16.32-.23.65-.23 1.01s.08.68.23.96c.15.28.37.52.64.73.27.21.6.38.98.53.38.14.81.26 1.27.36.39.08.71.17.95.26s.43.19.57.29c.13.1.22.22.27.34.05.12.07.25.07.39 0 .32-.13.57-.4.77-.27.2-.66.29-1.17.29-.22 0-.43-.02-.64-.08-.21-.05-.4-.13-.56-.24-.17-.11-.3-.26-.41-.44-.11-.18-.17-.41-.18-.67h-1.89c0 .36.08.71.24 1.05.16.34.39.65.7.93.31.27.69.49 1.15.66.46.17.98.25 1.58.25.53 0 1.01-.06 1.44-.19.43-.13.8-.31 1.11-.54.31-.23.54-.51.71-.83.17-.32.25-.67.25-1.06-.02-.4-.09-.74-.24-1.02z" + }, + "children": [] + }] +}; +exports.ic_timer_3 = ic_timer_3; \ No newline at end of file diff --git a/dist/md/ic_timer_3_outline.js b/dist/md/ic_timer_3_outline.js new file mode 100644 index 000000000..4264d8753 --- /dev/null +++ b/dist/md/ic_timer_3_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_timer_3_outline = void 0; +var ic_timer_3_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.61 12.97c-.16-.24-.36-.46-.62-.65-.25-.19-.56-.35-.93-.48.3-.14.57-.3.8-.5.23-.2.42-.41.57-.64.15-.23.27-.46.34-.71.08-.24.11-.49.11-.73 0-.55-.09-1.04-.28-1.46-.18-.42-.44-.77-.78-1.06-.33-.28-.73-.5-1.2-.64-.45-.13-.97-.2-1.53-.2-.55 0-1.06.08-1.52.24-.47.17-.87.4-1.2.69-.33.29-.6.63-.78 1.03-.2.39-.29.83-.29 1.29h1.98c0-.26.05-.49.14-.69.09-.2.22-.38.38-.52.17-.14.36-.25.58-.33s.46-.12.73-.12c.61 0 1.06.16 1.36.47.3.31.44.75.44 1.32 0 .27-.04.52-.12.74-.08.22-.21.41-.38.57s-.38.28-.63.37-.55.13-.89.13H6.72v1.57H7.9c.34 0 .64.04.91.11.27.08.5.19.69.35.19.16.34.36.44.61.1.24.16.54.16.87 0 .62-.18 1.09-.53 1.42-.35.33-.84.49-1.45.49-.29 0-.56-.04-.8-.13-.24-.08-.44-.2-.61-.36s-.3-.34-.39-.56c-.09-.22-.14-.46-.14-.72H4.19c0 .55.11 1.03.32 1.45.21.42.5.77.86 1.05s.77.49 1.24.63.96.21 1.48.21c.57 0 1.09-.08 1.58-.23s.91-.38 1.26-.68c.36-.3.64-.66.84-1.1.2-.43.3-.93.3-1.48 0-.29-.04-.58-.11-.86-.08-.25-.19-.51-.35-.76zm9.26 1.4c-.14-.28-.35-.53-.63-.74-.28-.21-.61-.39-1.01-.53s-.85-.27-1.35-.38c-.35-.07-.64-.15-.87-.23-.23-.08-.41-.16-.55-.25s-.23-.19-.28-.3c-.05-.11-.08-.24-.08-.39s.03-.28.09-.41.15-.25.27-.34c.12-.1.27-.18.45-.24s.4-.09.64-.09c.25 0 .47.04.66.11s.35.17.48.29.22.26.29.42c.06.16.1.32.1.49h1.95c0-.39-.08-.75-.24-1.09s-.39-.63-.69-.88c-.3-.25-.66-.44-1.09-.59-.43-.15-.92-.22-1.46-.22-.51 0-.98.07-1.39.21s-.77.33-1.06.57c-.29.24-.51.52-.67.84s-.23.65-.23 1.01.08.68.23.96.37.52.64.73c.27.21.6.38.98.53.38.14.81.26 1.27.36.39.08.71.17.95.26s.43.19.57.29c.13.1.22.22.27.34.05.12.07.25.07.39 0 .32-.13.57-.4.77s-.66.29-1.17.29c-.22 0-.43-.02-.64-.08-.21-.05-.4-.13-.56-.24-.17-.11-.3-.26-.41-.44-.11-.18-.17-.41-.18-.67h-1.89c0 .36.08.71.24 1.05s.39.65.7.93c.31.27.69.49 1.15.66.46.17.98.25 1.58.25.53 0 1.01-.06 1.44-.19.43-.13.8-.31 1.11-.54.31-.23.54-.51.71-.83.17-.32.25-.67.25-1.06-.02-.4-.09-.74-.24-1.02z" + }, + "children": [] + }] +}; +exports.ic_timer_3_outline = ic_timer_3_outline; \ No newline at end of file diff --git a/dist/md/ic_timer_3_twotone.js b/dist/md/ic_timer_3_twotone.js new file mode 100644 index 000000000..20d126d32 --- /dev/null +++ b/dist/md/ic_timer_3_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_timer_3_twotone = void 0; +var ic_timer_3_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16.46 10.8c.12-.1.27-.18.45-.24s.4-.09.64-.09c.25 0 .47.04.66.11.19.07.35.17.48.29s.22.26.29.42c.06.16.1.32.1.49h1.95c0-.39-.08-.75-.24-1.09-.16-.34-.39-.63-.69-.88-.3-.25-.66-.44-1.09-.59-.43-.15-.92-.22-1.46-.22-.51 0-.98.07-1.39.21-.41.14-.77.33-1.06.57-.29.24-.51.52-.67.84-.16.32-.23.65-.23 1.01s.08.68.23.96c.15.28.37.52.64.73.27.21.6.38.98.53.38.14.81.26 1.27.36.39.08.71.17.95.26s.43.19.57.29c.13.1.22.22.27.34s.07.25.07.39c0 .32-.13.57-.4.77-.27.2-.66.29-1.17.29-.22 0-.43-.02-.64-.08-.21-.05-.4-.13-.56-.24-.17-.11-.3-.26-.41-.44s-.17-.41-.18-.67h-1.89c0 .36.08.71.24 1.05.16.34.39.65.7.93.31.27.69.49 1.15.66.46.17.98.25 1.58.25.53 0 1.01-.06 1.44-.19.43-.13.8-.31 1.11-.54.31-.23.54-.51.71-.83.17-.32.25-.67.25-1.06-.02-.4-.09-.74-.24-1.02-.14-.28-.35-.53-.63-.74-.28-.21-.61-.39-1.01-.53s-.85-.27-1.35-.38c-.35-.07-.64-.15-.87-.23s-.41-.16-.55-.25c-.14-.09-.23-.19-.28-.3-.05-.11-.08-.24-.08-.39s.03-.28.09-.41c.06-.13.15-.25.27-.34zm-8.34 5.71c-.29 0-.56-.04-.8-.13-.24-.08-.44-.2-.61-.36-.17-.16-.3-.34-.39-.56-.09-.22-.14-.46-.14-.72H4.19c0 .55.11 1.03.32 1.45.21.42.5.77.86 1.05s.77.49 1.24.63.96.21 1.48.21c.57 0 1.09-.08 1.58-.23.49-.15.91-.38 1.26-.68.36-.3.64-.66.84-1.1.2-.43.3-.93.3-1.48 0-.29-.04-.58-.11-.86-.08-.25-.19-.51-.35-.76-.16-.24-.36-.46-.62-.65-.25-.19-.56-.35-.93-.48.3-.14.57-.3.8-.5.23-.2.42-.41.57-.64.15-.23.27-.46.34-.71.08-.24.11-.49.11-.73 0-.55-.09-1.04-.28-1.46-.18-.42-.44-.77-.78-1.06-.33-.28-.73-.5-1.2-.64-.45-.13-.97-.2-1.53-.2-.55 0-1.06.08-1.52.24-.47.17-.87.4-1.2.69-.33.29-.6.63-.78 1.03-.2.39-.29.83-.29 1.29h1.98c0-.26.05-.49.14-.69.09-.2.22-.38.38-.52.17-.14.36-.25.58-.33.22-.08.46-.12.73-.12.61 0 1.06.16 1.36.47.3.31.44.75.44 1.32 0 .27-.04.52-.12.74-.08.22-.21.41-.38.57-.17.16-.38.28-.63.37-.25.09-.55.13-.89.13H6.72v1.57H7.9c.34 0 .64.04.91.11.27.08.5.19.69.35.19.16.34.36.44.61.1.24.16.54.16.87 0 .62-.18 1.09-.53 1.42-.35.33-.84.49-1.45.49z" + }, + "children": [] + }] +}; +exports.ic_timer_3_twotone = ic_timer_3_twotone; \ No newline at end of file diff --git a/dist/md/ic_timer_off.js b/dist/md/ic_timer_off.js new file mode 100644 index 000000000..9ea55e266 --- /dev/null +++ b/dist/md/ic_timer_off.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_timer_off = void 0; +var ic_timer_off = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0zm0 0h24v24H0zm0 0h24v24H0zm0 0h24v24H0zm0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.04 4.55l-1.42 1.42C16.07 4.74 14.12 4 12 4c-1.83 0-3.53.55-4.95 1.48l1.46 1.46C9.53 6.35 10.73 6 12 6c3.87 0 7 3.13 7 7 0 1.27-.35 2.47-.94 3.49l1.45 1.45C20.45 16.53 21 14.83 21 13c0-2.12-.74-4.07-1.97-5.61l1.42-1.42-1.41-1.42zM15 1H9v2h6V1zm-4 8.44l2 2V8h-2v1.44zM3.02 4L1.75 5.27 4.5 8.03C3.55 9.45 3 11.16 3 13c0 4.97 4.02 9 9 9 1.84 0 3.55-.55 4.98-1.5l2.5 2.5 1.27-1.27-7.71-7.71L3.02 4zM12 20c-3.87 0-7-3.13-7-7 0-1.28.35-2.48.95-3.52l9.56 9.56c-1.03.61-2.23.96-3.51.96z" + }, + "children": [] + }] +}; +exports.ic_timer_off = ic_timer_off; \ No newline at end of file diff --git a/dist/md/ic_timer_off_outline.js b/dist/md/ic_timer_off_outline.js new file mode 100644 index 000000000..71b37d170 --- /dev/null +++ b/dist/md/ic_timer_off_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_timer_off_outline = void 0; +var ic_timer_off_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 8v.86l2 2V8zM9 1h6v2H9zm3 5c3.87 0 7 3.13 7 7 0 1.12-.27 2.18-.74 3.12l1.47 1.47C20.53 16.25 21 14.68 21 13c0-2.12-.74-4.07-1.97-5.61l1.42-1.42c-.43-.51-.9-.99-1.41-1.41l-1.42 1.42C16.07 4.74 14.12 4 12 4c-1.68 0-3.25.47-4.59 1.27l1.47 1.47c.94-.47 2-.74 3.12-.74zM3.16 3.86L1.75 5.27 4.5 8.02C3.56 9.45 3 11.16 3 13c0 4.97 4.02 9 9 9 1.84 0 3.55-.55 4.98-1.5l2.5 2.5 1.41-1.41L3.16 3.86zM12 20c-3.87 0-7-3.13-7-7 0-1.29.35-2.49.96-3.52l9.57 9.57c-1.04.6-2.24.95-3.53.95z" + }, + "children": [] + }] +}; +exports.ic_timer_off_outline = ic_timer_off_outline; \ No newline at end of file diff --git a/dist/md/ic_timer_off_twotone.js b/dist/md/ic_timer_off_twotone.js new file mode 100644 index 000000000..c04408e40 --- /dev/null +++ b/dist/md/ic_timer_off_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_timer_off_twotone = void 0; +var ic_timer_off_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 6c-1.12 0-2.18.27-3.12.74L11 8.86V8h2v2.86l5.26 5.26c.47-.94.74-2 .74-3.12 0-3.87-3.13-7-7-7zm0 14c1.29 0 2.49-.35 3.52-.96L5.96 9.48C5.35 10.51 5 11.71 5 13c0 3.87 3.13 7 7 7z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 6c3.87 0 7 3.13 7 7 0 1.12-.27 2.18-.74 3.12l1.47 1.47C20.53 16.25 21 14.68 21 13c0-2.12-.74-4.07-1.97-5.61l1.42-1.42c-.43-.51-.9-.99-1.41-1.41l-1.42 1.42C16.07 4.74 14.12 4 12 4c-1.68 0-3.25.47-4.59 1.27l1.47 1.47c.94-.47 2-.74 3.12-.74zm-1 2v.86l2 2V8zM9 1h6v2H9zM3.16 3.86L1.75 5.27 4.5 8.02C3.56 9.45 3 11.16 3 13c0 4.97 4.02 9 9 9 1.84 0 3.55-.55 4.98-1.5l2.5 2.5 1.41-1.41L3.16 3.86zM12 20c-3.87 0-7-3.13-7-7 0-1.29.35-2.49.96-3.52l9.57 9.57c-1.04.6-2.24.95-3.53.95z" + }, + "children": [] + }] +}; +exports.ic_timer_off_twotone = ic_timer_off_twotone; \ No newline at end of file diff --git a/dist/md/ic_timer_outline.js b/dist/md/ic_timer_outline.js new file mode 100644 index 000000000..67c19b418 --- /dev/null +++ b/dist/md/ic_timer_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_timer_outline = void 0; +var ic_timer_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.07 1.01h-6v2h6v-2zm-4 13h2v-6h-2v6zm8.03-6.62l1.42-1.42c-.43-.51-.9-.99-1.41-1.41l-1.42 1.42C16.14 4.74 14.19 4 12.07 4c-4.97 0-9 4.03-9 9s4.02 9 9 9 9-4.03 9-9c0-2.11-.74-4.06-1.97-5.61zm-7.03 12.62c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" + }, + "children": [] + }] +}; +exports.ic_timer_outline = ic_timer_outline; \ No newline at end of file diff --git a/dist/md/ic_timer_twotone.js b/dist/md/ic_timer_twotone.js new file mode 100644 index 000000000..fafd4d2c7 --- /dev/null +++ b/dist/md/ic_timer_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_timer_twotone = void 0; +var ic_timer_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12.07 6.01c-3.87 0-7 3.13-7 7s3.13 7 7 7 7-3.13 7-7-3.13-7-7-7zm1 8h-2v-6h2v6z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9.07 1.01h6v2h-6zm2 7h2v6h-2zm8.03-.62l1.42-1.42c-.43-.51-.9-.99-1.41-1.41l-1.42 1.42C16.14 4.74 14.19 4 12.07 4c-4.97 0-9 4.03-9 9s4.02 9 9 9 9-4.03 9-9c0-2.11-.74-4.07-1.97-5.61zm-7.03 12.62c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" + }, + "children": [] + }] +}; +exports.ic_timer_twotone = ic_timer_twotone; \ No newline at end of file diff --git a/dist/md/ic_title.js b/dist/md/ic_title.js new file mode 100644 index 000000000..98c2bb4a3 --- /dev/null +++ b/dist/md/ic_title.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_title = void 0; +var ic_title = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 4v3h5.5v12h3V7H19V4z" + }, + "children": [] + }] +}; +exports.ic_title = ic_title; \ No newline at end of file diff --git a/dist/md/ic_title_outline.js b/dist/md/ic_title_outline.js new file mode 100644 index 000000000..a9f2cf881 --- /dev/null +++ b/dist/md/ic_title_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_title_outline = void 0; +var ic_title_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 4v3h5.5v12h3V7H19V4H5z" + }, + "children": [] + }] +}; +exports.ic_title_outline = ic_title_outline; \ No newline at end of file diff --git a/dist/md/ic_title_twotone.js b/dist/md/ic_title_twotone.js new file mode 100644 index 000000000..60e1d218e --- /dev/null +++ b/dist/md/ic_title_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_title_twotone = void 0; +var ic_title_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 7h5.5v12h3V7H19V4H5z" + }, + "children": [] + }] +}; +exports.ic_title_twotone = ic_title_twotone; \ No newline at end of file diff --git a/dist/md/ic_toc.js b/dist/md/ic_toc.js new file mode 100644 index 000000000..e3b60725e --- /dev/null +++ b/dist/md/ic_toc.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_toc = void 0; +var ic_toc = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 9h14V7H3v2zm0 4h14v-2H3v2zm0 4h14v-2H3v2zm16 0h2v-2h-2v2zm0-10v2h2V7h-2zm0 6h2v-2h-2v2z" + }, + "children": [] + }] +}; +exports.ic_toc = ic_toc; \ No newline at end of file diff --git a/dist/md/ic_toc_outline.js b/dist/md/ic_toc_outline.js new file mode 100644 index 000000000..f0b4e6a9e --- /dev/null +++ b/dist/md/ic_toc_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_toc_outline = void 0; +var ic_toc_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0zm0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 9h14V7H3v2zm0 4h14v-2H3v2zm0 4h14v-2H3v2zm16 0h2v-2h-2v2zm0-10v2h2V7h-2zm0 6h2v-2h-2v2z" + }, + "children": [] + }] +}; +exports.ic_toc_outline = ic_toc_outline; \ No newline at end of file diff --git a/dist/md/ic_toc_twotone.js b/dist/md/ic_toc_twotone.js new file mode 100644 index 000000000..4c08d8aa1 --- /dev/null +++ b/dist/md/ic_toc_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_toc_twotone = void 0; +var ic_toc_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0zm0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 9h14V7H3v2zm0 4h14v-2H3v2zm0 4h14v-2H3v2zm16 0h2v-2h-2v2zm0-10v2h2V7h-2zm0 6h2v-2h-2v2z" + }, + "children": [] + }] +}; +exports.ic_toc_twotone = ic_toc_twotone; \ No newline at end of file diff --git a/dist/md/ic_today.js b/dist/md/ic_today.js new file mode 100644 index 000000000..93dc3ab27 --- /dev/null +++ b/dist/md/ic_today.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_today = void 0; +var ic_today = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11zM7 10h5v5H7z" + }, + "children": [] + }] +}; +exports.ic_today = ic_today; \ No newline at end of file diff --git a/dist/md/ic_today_outline.js b/dist/md/ic_today_outline.js new file mode 100644 index 000000000..e9079fb60 --- /dev/null +++ b/dist/md/ic_today_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_today_outline = void 0; +var ic_today_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V9h14v10zm0-12H5V5h14v2zM7 11h5v5H7z" + }, + "children": [] + }] +}; +exports.ic_today_outline = ic_today_outline; \ No newline at end of file diff --git a/dist/md/ic_today_twotone.js b/dist/md/ic_today_twotone.js new file mode 100644 index 000000000..92b793c5a --- /dev/null +++ b/dist/md/ic_today_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_today_twotone = void 0; +var ic_today_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V9h14v10zm0-12H5V5h14v2zm-7 4H7v5h5v-5z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 5h14v2H5z", + "opacity": ".3" + }, + "children": [] + }] +}; +exports.ic_today_twotone = ic_today_twotone; \ No newline at end of file diff --git a/dist/md/ic_toggle_off.js b/dist/md/ic_toggle_off.js new file mode 100644 index 000000000..d800ac7ef --- /dev/null +++ b/dist/md/ic_toggle_off.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_toggle_off = void 0; +var ic_toggle_off = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h10c2.76 0 5-2.24 5-5s-2.24-5-5-5zM7 15c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z" + }, + "children": [] + }] +}; +exports.ic_toggle_off = ic_toggle_off; \ No newline at end of file diff --git a/dist/md/ic_toggle_off_outline.js b/dist/md/ic_toggle_off_outline.js new file mode 100644 index 000000000..dc8af0ad4 --- /dev/null +++ b/dist/md/ic_toggle_off_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_toggle_off_outline = void 0; +var ic_toggle_off_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 6H7c-3.31 0-6 2.69-6 6s2.69 6 6 6h10c3.31 0 6-2.69 6-6s-2.69-6-6-6zm0 10H7c-2.21 0-4-1.79-4-4s1.79-4 4-4h10c2.21 0 4 1.79 4 4s-1.79 4-4 4zM7 9c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z" + }, + "children": [] + }] +}; +exports.ic_toggle_off_outline = ic_toggle_off_outline; \ No newline at end of file diff --git a/dist/md/ic_toggle_off_twotone.js b/dist/md/ic_toggle_off_twotone.js new file mode 100644 index 000000000..f626cf1c7 --- /dev/null +++ b/dist/md/ic_toggle_off_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_toggle_off_twotone = void 0; +var ic_toggle_off_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 8H7c-2.21 0-4 1.79-4 4s1.79 4 4 4h10c2.21 0 4-1.79 4-4s-1.79-4-4-4zM7 15c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 6H7c-3.31 0-6 2.69-6 6s2.69 6 6 6h10c3.31 0 6-2.69 6-6s-2.69-6-6-6zm0 10H7c-2.21 0-4-1.79-4-4s1.79-4 4-4h10c2.21 0 4 1.79 4 4s-1.79 4-4 4zM7 9c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z" + }, + "children": [] + }] +}; +exports.ic_toggle_off_twotone = ic_toggle_off_twotone; \ No newline at end of file diff --git a/dist/md/ic_toggle_on.js b/dist/md/ic_toggle_on.js new file mode 100644 index 000000000..2cd5c2d11 --- /dev/null +++ b/dist/md/ic_toggle_on.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_toggle_on = void 0; +var ic_toggle_on = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h10c2.76 0 5-2.24 5-5s-2.24-5-5-5zm0 8c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z" + }, + "children": [] + }] +}; +exports.ic_toggle_on = ic_toggle_on; \ No newline at end of file diff --git a/dist/md/ic_toggle_on_outline.js b/dist/md/ic_toggle_on_outline.js new file mode 100644 index 000000000..45328d4ff --- /dev/null +++ b/dist/md/ic_toggle_on_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_toggle_on_outline = void 0; +var ic_toggle_on_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 6H7c-3.31 0-6 2.69-6 6s2.69 6 6 6h10c3.31 0 6-2.69 6-6s-2.69-6-6-6zm0 10H7c-2.21 0-4-1.79-4-4s1.79-4 4-4h10c2.21 0 4 1.79 4 4s-1.79 4-4 4zm0-7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z" + }, + "children": [] + }] +}; +exports.ic_toggle_on_outline = ic_toggle_on_outline; \ No newline at end of file diff --git a/dist/md/ic_toggle_on_twotone.js b/dist/md/ic_toggle_on_twotone.js new file mode 100644 index 000000000..eb25ef53b --- /dev/null +++ b/dist/md/ic_toggle_on_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_toggle_on_twotone = void 0; +var ic_toggle_on_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 8H7c-2.21 0-4 1.79-4 4s1.79 4 4 4h10c2.21 0 4-1.79 4-4s-1.79-4-4-4zm0 7c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 6H7c-3.31 0-6 2.69-6 6s2.69 6 6 6h10c3.31 0 6-2.69 6-6s-2.69-6-6-6zm0 10H7c-2.21 0-4-1.79-4-4s1.79-4 4-4h10c2.21 0 4 1.79 4 4s-1.79 4-4 4zm0-7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z" + }, + "children": [] + }] +}; +exports.ic_toggle_on_twotone = ic_toggle_on_twotone; \ No newline at end of file diff --git a/dist/md/ic_toll.js b/dist/md/ic_toll.js new file mode 100644 index 000000000..bb50e9013 --- /dev/null +++ b/dist/md/ic_toll.js @@ -0,0 +1,30 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_toll = void 0; +var ic_toll = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 12c0-2.61 1.67-4.83 4-5.65V4.26C3.55 5.15 1 8.27 1 12s2.55 6.85 6 7.74v-2.09c-2.33-.82-4-3.04-4-5.65z" + }, + "children": [] + }] +}; +exports.ic_toll = ic_toll; \ No newline at end of file diff --git a/dist/md/ic_toll_outline.js b/dist/md/ic_toll_outline.js new file mode 100644 index 000000000..db3e32d19 --- /dev/null +++ b/dist/md/ic_toll_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_toll_outline = void 0; +var ic_toll_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zM3 12c0-2.61 1.67-4.83 4-5.65V4.26C3.55 5.15 1 8.27 1 12s2.55 6.85 6 7.74v-2.09c-2.33-.82-4-3.04-4-5.65z" + }, + "children": [] + }] +}; +exports.ic_toll_outline = ic_toll_outline; \ No newline at end of file diff --git a/dist/md/ic_toll_twotone.js b/dist/md/ic_toll_twotone.js new file mode 100644 index 000000000..1f170582a --- /dev/null +++ b/dist/md/ic_toll_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_toll_twotone = void 0; +var ic_toll_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zM3 12c0-2.61 1.67-4.83 4-5.65V4.26C3.55 5.15 1 8.27 1 12c0 3.73 2.55 6.85 6 7.74v-2.09c-2.33-.82-4-3.04-4-5.65z" + }, + "children": [] + }] +}; +exports.ic_toll_twotone = ic_toll_twotone; \ No newline at end of file diff --git a/dist/md/ic_tonality.js b/dist/md/ic_tonality.js new file mode 100644 index 000000000..ad8deae43 --- /dev/null +++ b/dist/md/ic_tonality.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_tonality = void 0; +var ic_tonality = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.94-.49-7-3.85-7-7.93s3.05-7.44 7-7.93v15.86zm2-15.86c1.03.13 2 .45 2.87.93H13v-.93zM13 7h5.24c.25.31.48.65.68 1H13V7zm0 3h6.74c.08.33.15.66.19 1H13v-1zm0 9.93V19h2.87c-.87.48-1.84.8-2.87.93zM18.24 17H13v-1h5.92c-.2.35-.43.69-.68 1zm1.5-3H13v-1h6.93c-.04.34-.11.67-.19 1z" + }, + "children": [] + }] +}; +exports.ic_tonality = ic_tonality; \ No newline at end of file diff --git a/dist/md/ic_tonality_outline.js b/dist/md/ic_tonality_outline.js new file mode 100644 index 000000000..c1fc56c9b --- /dev/null +++ b/dist/md/ic_tonality_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_tonality_outline = void 0; +var ic_tonality_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.94-.49-7-3.85-7-7.93s3.05-7.44 7-7.93v15.86zm2-15.86c1.03.13 2 .45 2.87.93H13v-.93zM13 7h5.24c.25.31.48.65.68 1H13V7zm0 3h6.74c.08.33.15.66.19 1H13v-1zm0 9.93V19h2.87c-.87.48-1.84.8-2.87.93zM18.24 17H13v-1h5.92c-.2.35-.43.69-.68 1zm1.5-3H13v-1h6.93c-.04.34-.11.67-.19 1z" + }, + "children": [] + }] +}; +exports.ic_tonality_outline = ic_tonality_outline; \ No newline at end of file diff --git a/dist/md/ic_tonality_twotone.js b/dist/md/ic_tonality_twotone.js new file mode 100644 index 000000000..72f498b53 --- /dev/null +++ b/dist/md/ic_tonality_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_tonality_twotone = void 0; +var ic_tonality_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 12c0 4.08 3.06 7.44 7 7.93V4.07C7.05 4.56 4 7.92 4 12z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.94-.49-7-3.85-7-7.93s3.05-7.44 7-7.93v15.86zm2-15.86c1.03.13 2 .45 2.87.93H13v-.93zM13 7h5.24c.25.31.48.65.68 1H13V7zm0 3h6.74c.08.33.15.66.19 1H13v-1zm0 9.93V19h2.87c-.87.48-1.84.8-2.87.93zM18.24 17H13v-1h5.92c-.2.35-.43.69-.68 1zm1.5-3H13v-1h6.93c-.04.34-.11.67-.19 1z" + }, + "children": [] + }] +}; +exports.ic_tonality_twotone = ic_tonality_twotone; \ No newline at end of file diff --git a/dist/md/ic_topic.js b/dist/md/ic_topic.js new file mode 100644 index 000000000..40814f581 --- /dev/null +++ b/dist/md/ic_topic.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_topic = void 0; +var ic_topic = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M14,16H6v-2h8V16z M18,12H6v-2h12V12z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M14,16H6v-2h8V16z M18,12H6v-2h12V12z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_topic = ic_topic; \ No newline at end of file diff --git a/dist/md/ic_topic_outline.js b/dist/md/ic_topic_outline.js new file mode 100644 index 000000000..73f7c8267 --- /dev/null +++ b/dist/md/ic_topic_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_topic_outline = void 0; +var ic_topic_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16.77c0.68,0,1.23-0.56,1.23-1.23V8C22,6.9,21.1,6,20,6z M20,18L4,18V6h5.17l2,2H20V18z M18,12H6v-2h12V12z M14,16H6v-2h8V16z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16.77c0.68,0,1.23-0.56,1.23-1.23V8C22,6.9,21.1,6,20,6z M20,18L4,18V6h5.17l2,2H20V18z M18,12H6v-2h12V12z M14,16H6v-2h8V16z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_topic_outline = ic_topic_outline; \ No newline at end of file diff --git a/dist/md/ic_topic_twotone.js b/dist/md/ic_topic_twotone.js new file mode 100644 index 000000000..f43ae0038 --- /dev/null +++ b/dist/md/ic_topic_twotone.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_topic_twotone = void 0; +var ic_topic_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20,18L4,18V6h5.17l2,2H20V18z M18,12H6v-2h12V12z M14,16H6v-2h8V16z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,18L4,18V6h5.17l2,2H20V18z M18,12H6v-2h12V12z M14,16H6v-2h8V16z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16.77c0.68,0,1.23-0.56,1.23-1.23V8C22,6.9,21.1,6,20,6z M20,18L4,18V6h5.17l2,2H20V18z M18,12H6v-2h12V12z M14,16H6v-2h8V16z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16.77c0.68,0,1.23-0.56,1.23-1.23V8C22,6.9,21.1,6,20,6z M20,18L4,18V6h5.17l2,2H20V18z M18,12H6v-2h12V12z M14,16H6v-2h8V16z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_topic_twotone = ic_topic_twotone; \ No newline at end of file diff --git a/dist/md/ic_touch_app.js b/dist/md/ic_touch_app.js new file mode 100644 index 000000000..b47e2af20 --- /dev/null +++ b/dist/md/ic_touch_app.js @@ -0,0 +1,65 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_touch_app = void 0; +var ic_touch_app = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M9,11.24V7.5C9,6.12,10.12,5,11.5,5S14,6.12,14,7.5v3.74c1.21-0.81,2-2.18,2-3.74C16,5.01,13.99,3,11.5,3S7,5.01,7,7.5 C7,9.06,7.79,10.43,9,11.24z M18.84,15.87l-4.54-2.26c-0.17-0.07-0.35-0.11-0.54-0.11H13v-6C13,6.67,12.33,6,11.5,6 S10,6.67,10,7.5v10.74c-3.6-0.76-3.54-0.75-3.67-0.75c-0.31,0-0.59,0.13-0.79,0.33l-0.79,0.8l4.94,4.94 C9.96,23.83,10.34,24,10.75,24h6.79c0.75,0,1.33-0.55,1.44-1.28l0.75-5.27c0.01-0.07,0.02-0.14,0.02-0.2 C19.75,16.63,19.37,16.09,18.84,15.87z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M9,11.24V7.5C9,6.12,10.12,5,11.5,5S14,6.12,14,7.5v3.74c1.21-0.81,2-2.18,2-3.74C16,5.01,13.99,3,11.5,3S7,5.01,7,7.5 C7,9.06,7.79,10.43,9,11.24z M18.84,15.87l-4.54-2.26c-0.17-0.07-0.35-0.11-0.54-0.11H13v-6C13,6.67,12.33,6,11.5,6 S10,6.67,10,7.5v10.74c-3.6-0.76-3.54-0.75-3.67-0.75c-0.31,0-0.59,0.13-0.79,0.33l-0.79,0.8l4.94,4.94 C9.96,23.83,10.34,24,10.75,24h6.79c0.75,0,1.33-0.55,1.44-1.28l0.75-5.27c0.01-0.07,0.02-0.14,0.02-0.2 C19.75,16.63,19.37,16.09,18.84,15.87z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_touch_app = ic_touch_app; \ No newline at end of file diff --git a/dist/md/ic_touch_app_outline.js b/dist/md/ic_touch_app_outline.js new file mode 100644 index 000000000..6d666a22b --- /dev/null +++ b/dist/md/ic_touch_app_outline.js @@ -0,0 +1,55 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_touch_app_outline = void 0; +var ic_touch_app_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M18.19,12.44l-3.24-1.62c1.29-1,2.12-2.56,2.12-4.32c0-3.03-2.47-5.5-5.5-5.5s-5.5,2.47-5.5,5.5c0,2.13,1.22,3.98,3,4.89 v3.26c-2.15-0.46-2.02-0.44-2.26-0.44c-0.53,0-1.03,0.21-1.41,0.59L4,16.22l5.09,5.09C9.52,21.75,10.12,22,10.74,22h6.3 c0.98,0,1.81-0.7,1.97-1.67l0.8-4.71C20.03,14.32,19.38,13.04,18.19,12.44z M17.84,15.29L17.04,20h-6.3 c-0.09,0-0.17-0.04-0.24-0.1l-3.68-3.68l4.25,0.89V6.5c0-0.28,0.22-0.5,0.5-0.5c0.28,0,0.5,0.22,0.5,0.5v6h1.76l3.46,1.73 C17.69,14.43,17.91,14.86,17.84,15.29z M8.07,6.5c0-1.93,1.57-3.5,3.5-3.5s3.5,1.57,3.5,3.5c0,0.95-0.38,1.81-1,2.44V6.5 c0-1.38-1.12-2.5-2.5-2.5c-1.38,0-2.5,1.12-2.5,2.5v2.44C8.45,8.31,8.07,7.45,8.07,6.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18.19,12.44l-3.24-1.62c1.29-1,2.12-2.56,2.12-4.32c0-3.03-2.47-5.5-5.5-5.5s-5.5,2.47-5.5,5.5c0,2.13,1.22,3.98,3,4.89 v3.26c-2.15-0.46-2.02-0.44-2.26-0.44c-0.53,0-1.03,0.21-1.41,0.59L4,16.22l5.09,5.09C9.52,21.75,10.12,22,10.74,22h6.3 c0.98,0,1.81-0.7,1.97-1.67l0.8-4.71C20.03,14.32,19.38,13.04,18.19,12.44z M17.84,15.29L17.04,20h-6.3 c-0.09,0-0.17-0.04-0.24-0.1l-3.68-3.68l4.25,0.89V6.5c0-0.28,0.22-0.5,0.5-0.5c0.28,0,0.5,0.22,0.5,0.5v6h1.76l3.46,1.73 C17.69,14.43,17.91,14.86,17.84,15.29z M8.07,6.5c0-1.93,1.57-3.5,3.5-3.5s3.5,1.57,3.5,3.5c0,0.95-0.38,1.81-1,2.44V6.5 c0-1.38-1.12-2.5-2.5-2.5c-1.38,0-2.5,1.12-2.5,2.5v2.44C8.45,8.31,8.07,7.45,8.07,6.5z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_touch_app_outline = ic_touch_app_outline; \ No newline at end of file diff --git a/dist/md/ic_touch_app_twotone.js b/dist/md/ic_touch_app_twotone.js new file mode 100644 index 000000000..6bc062378 --- /dev/null +++ b/dist/md/ic_touch_app_twotone.js @@ -0,0 +1,71 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_touch_app_twotone = void 0; +var ic_touch_app_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M18.19,12.44l-3.24-1.62c1.29-1,2.12-2.56,2.12-4.32c0-3.03-2.47-5.5-5.5-5.5s-5.5,2.47-5.5,5.5c0,2.13,1.22,3.98,3,4.89 v3.26c-2.08-0.44-2.01-0.44-2.26-0.44c-0.53,0-1.03,0.21-1.41,0.59L4,16.22l5.09,5.09C9.52,21.75,10.12,22,10.74,22h6.3 c0.98,0,1.81-0.7,1.97-1.67l0.8-4.71C20.03,14.32,19.38,13.04,18.19,12.44z M8.07,6.5c0-1.93,1.57-3.5,3.5-3.5s3.5,1.57,3.5,3.5 c0,0.95-0.38,1.81-1,2.44V6.5c0-1.38-1.12-2.5-2.5-2.5c-1.38,0-2.5,1.12-2.5,2.5v2.44C8.45,8.31,8.07,7.45,8.07,6.5z M17.84,15.29 L17.04,20h-6.3c-0.09,0-0.17-0.04-0.24-0.1l-3.68-3.68l4.25,0.89V6.5c0-0.28,0.22-0.5,0.5-0.5c0.28,0,0.5,0.22,0.5,0.5v6h1.76 l3.46,1.73C17.69,14.43,17.91,14.86,17.84,15.29z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18.19,12.44l-3.24-1.62c1.29-1,2.12-2.56,2.12-4.32c0-3.03-2.47-5.5-5.5-5.5s-5.5,2.47-5.5,5.5c0,2.13,1.22,3.98,3,4.89 v3.26c-2.08-0.44-2.01-0.44-2.26-0.44c-0.53,0-1.03,0.21-1.41,0.59L4,16.22l5.09,5.09C9.52,21.75,10.12,22,10.74,22h6.3 c0.98,0,1.81-0.7,1.97-1.67l0.8-4.71C20.03,14.32,19.38,13.04,18.19,12.44z M8.07,6.5c0-1.93,1.57-3.5,3.5-3.5s3.5,1.57,3.5,3.5 c0,0.95-0.38,1.81-1,2.44V6.5c0-1.38-1.12-2.5-2.5-2.5c-1.38,0-2.5,1.12-2.5,2.5v2.44C8.45,8.31,8.07,7.45,8.07,6.5z M17.84,15.29 L17.04,20h-6.3c-0.09,0-0.17-0.04-0.24-0.1l-3.68-3.68l4.25,0.89V6.5c0-0.28,0.22-0.5,0.5-0.5c0.28,0,0.5,0.22,0.5,0.5v6h1.76 l3.46,1.73C17.69,14.43,17.91,14.86,17.84,15.29z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M17.3,14.23l-3.46-1.73h-1.77v-6c0-0.28-0.22-0.5-0.5-0.5 c-0.28,0-0.5,0.22-0.5,0.5v10.61l-4.25-0.89l3.68,3.68c0.06,0.06,0.15,0.1,0.24,0.1h6.3l0.8-4.71 C17.91,14.86,17.69,14.43,17.3,14.23z", + "enable-background": "new", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17.3,14.23l-3.46-1.73h-1.77v-6c0-0.28-0.22-0.5-0.5-0.5 c-0.28,0-0.5,0.22-0.5,0.5v10.61l-4.25-0.89l3.68,3.68c0.06,0.06,0.15,0.1,0.24,0.1h6.3l0.8-4.71 C17.91,14.86,17.69,14.43,17.3,14.23z", + "enable-background": "new", + "opacity": ".3" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_touch_app_twotone = ic_touch_app_twotone; \ No newline at end of file diff --git a/dist/md/ic_tour.js b/dist/md/ic_tour.js new file mode 100644 index 000000000..d644048b7 --- /dev/null +++ b/dist/md/ic_tour.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_tour = void 0; +var ic_tour = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 4H7V2H5v20h2v-8h14l-2-5 2-5zm-6 5c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2z" + }, + "children": [] + }] +}; +exports.ic_tour = ic_tour; \ No newline at end of file diff --git a/dist/md/ic_tour_outline.js b/dist/md/ic_tour_outline.js new file mode 100644 index 000000000..015549443 --- /dev/null +++ b/dist/md/ic_tour_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_tour_outline = void 0; +var ic_tour_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M21,4h-8h-1H7V2H5v2v10v8h2v-8h4h1h9l-2-5L21,4z M17.14,9.74l0.9,2.26H12h-1H7V6h5h1h5.05l-0.9,2.26L16.85,9L17.14,9.74z M14,9c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2S14,7.9,14,9z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21,4h-8h-1H7V2H5v2v10v8h2v-8h4h1h9l-2-5L21,4z M17.14,9.74l0.9,2.26H12h-1H7V6h5h1h5.05l-0.9,2.26L16.85,9L17.14,9.74z M14,9c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2S14,7.9,14,9z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_tour_outline = ic_tour_outline; \ No newline at end of file diff --git a/dist/md/ic_tour_twotone.js b/dist/md/ic_tour_twotone.js new file mode 100644 index 000000000..7dfa37491 --- /dev/null +++ b/dist/md/ic_tour_twotone.js @@ -0,0 +1,73 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_tour_twotone = void 0; +var ic_tour_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "opacity": ".3", + "points": "7,12 7,6 18.05,6 16.85,9 18.05,12" + }, + "children": [{ + "name": "polygon", + "attribs": { + "opacity": ".3", + "points": "7,12 7,6 18.05,6 16.85,9 18.05,12" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M21,4h-8h-1H7V2H5v2v10v8h2v-8h4h1h9l-2-5L21,4z M7,12V6h11.05l-1.2,3l1.2,3H7z M14,9c0,1.1-0.9,2-2,2s-2-0.9-2-2 s0.9-2,2-2S14,7.9,14,9z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21,4h-8h-1H7V2H5v2v10v8h2v-8h4h1h9l-2-5L21,4z M7,12V6h11.05l-1.2,3l1.2,3H7z M14,9c0,1.1-0.9,2-2,2s-2-0.9-2-2 s0.9-2,2-2S14,7.9,14,9z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_tour_twotone = ic_tour_twotone; \ No newline at end of file diff --git a/dist/md/ic_toys.js b/dist/md/ic_toys.js new file mode 100644 index 000000000..420d0cd59 --- /dev/null +++ b/dist/md/ic_toys.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_toys = void 0; +var ic_toys = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 12c0-3 2.5-5.5 5.5-5.5S23 9 23 12H12zm0 0c0 3-2.5 5.5-5.5 5.5S1 15 1 12h11zm0 0c-3 0-5.5-2.5-5.5-5.5S9 1 12 1v11zm0 0c3 0 5.5 2.5 5.5 5.5S15 23 12 23V12z" + }, + "children": [] + }] +}; +exports.ic_toys = ic_toys; \ No newline at end of file diff --git a/dist/md/ic_toys_outline.js b/dist/md/ic_toys_outline.js new file mode 100644 index 000000000..10e491af7 --- /dev/null +++ b/dist/md/ic_toys_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_toys_outline = void 0; +var ic_toys_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0zm0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 23h-1v-6.57C9.93 17.4 8.52 18 7 18c-3.25 0-6-2.75-6-6v-1h6.57C6.6 9.93 6 8.52 6 7c0-3.25 2.75-6 6-6h1v6.57C14.07 6.6 15.48 6 17 6c3.25 0 6 2.75 6 6v1h-6.57c.97 1.07 1.57 2.48 1.57 4 0 3.25-2.75 6-6 6zm1-9.87v7.74c1.7-.46 3-2.04 3-3.87s-1.3-3.41-3-3.87zM3.13 13c.46 1.7 2.04 3 3.87 3s3.41-1.3 3.87-3H3.13zm10-2h7.74c-.46-1.7-2.05-3-3.87-3s-3.41 1.3-3.87 3zM11 3.13C9.3 3.59 8 5.18 8 7s1.3 3.41 3 3.87V3.13z" + }, + "children": [] + }] +}; +exports.ic_toys_outline = ic_toys_outline; \ No newline at end of file diff --git a/dist/md/ic_toys_twotone.js b/dist/md/ic_toys_twotone.js new file mode 100644 index 000000000..3a6711f8a --- /dev/null +++ b/dist/md/ic_toys_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_toys_twotone = void 0; +var ic_toys_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0zm0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 16c1.82 0 3.41-1.3 3.87-3H3.13c.46 1.7 2.05 3 3.87 3zm1-9c0 1.82 1.3 3.41 3 3.87V3.13C9.3 3.59 8 5.18 8 7zm9 1c-1.82 0-3.41 1.3-3.87 3h7.74c-.46-1.7-2.05-3-3.87-3zm-4 5.13v7.74c1.7-.46 3-2.04 3-3.87s-1.3-3.41-3-3.87z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M23 12c0-3.25-2.75-6-6-6-1.52 0-2.93.6-4 1.57V1h-1C8.75 1 6 3.75 6 7c0 1.52.6 2.93 1.57 4H1v1c0 3.25 2.75 6 6 6 1.52 0 2.93-.6 4-1.57V23h1c3.25 0 6-2.75 6-6 0-1.52-.6-2.93-1.57-4H23v-1zM7 16c-1.82 0-3.41-1.3-3.87-3h7.74c-.46 1.7-2.05 3-3.87 3zm4-5.13C9.3 10.41 8 8.82 8 7s1.3-3.41 3-3.87v7.74zm2 10v-7.74c1.7.46 3 2.04 3 3.87s-1.3 3.41-3 3.87zm.13-9.87c.46-1.7 2.04-3 3.87-3s3.41 1.3 3.87 3h-7.74z" + }, + "children": [] + }] +}; +exports.ic_toys_twotone = ic_toys_twotone; \ No newline at end of file diff --git a/dist/md/ic_track_changes.js b/dist/md/ic_track_changes.js new file mode 100644 index 000000000..9acbce309 --- /dev/null +++ b/dist/md/ic_track_changes.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_track_changes = void 0; +var ic_track_changes = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.07 4.93l-1.41 1.41C19.1 7.79 20 9.79 20 12c0 4.42-3.58 8-8 8s-8-3.58-8-8c0-4.08 3.05-7.44 7-7.93v2.02C8.16 6.57 6 9.03 6 12c0 3.31 2.69 6 6 6s6-2.69 6-6c0-1.66-.67-3.16-1.76-4.24l-1.41 1.41C15.55 9.9 16 10.9 16 12c0 2.21-1.79 4-4 4s-4-1.79-4-4c0-1.86 1.28-3.41 3-3.86v2.14c-.6.35-1 .98-1 1.72 0 1.1.9 2 2 2s2-.9 2-2c0-.74-.4-1.38-1-1.72V2h-1C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10c0-2.76-1.12-5.26-2.93-7.07z" + }, + "children": [] + }] +}; +exports.ic_track_changes = ic_track_changes; \ No newline at end of file diff --git a/dist/md/ic_track_changes_outline.js b/dist/md/ic_track_changes_outline.js new file mode 100644 index 000000000..a9257ae9e --- /dev/null +++ b/dist/md/ic_track_changes_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_track_changes_outline = void 0; +var ic_track_changes_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.07 4.93l-1.41 1.41C19.1 7.79 20 9.79 20 12c0 4.42-3.58 8-8 8s-8-3.58-8-8c0-4.08 3.05-7.44 7-7.93v2.02C8.16 6.57 6 9.03 6 12c0 3.31 2.69 6 6 6s6-2.69 6-6c0-1.66-.67-3.16-1.76-4.24l-1.41 1.41C15.55 9.9 16 10.9 16 12c0 2.21-1.79 4-4 4s-4-1.79-4-4c0-1.86 1.28-3.41 3-3.86v2.14c-.6.35-1 .98-1 1.72 0 1.1.9 2 2 2s2-.9 2-2c0-.74-.4-1.38-1-1.72V2h-1C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10c0-2.76-1.12-5.26-2.93-7.07z" + }, + "children": [] + }] +}; +exports.ic_track_changes_outline = ic_track_changes_outline; \ No newline at end of file diff --git a/dist/md/ic_track_changes_twotone.js b/dist/md/ic_track_changes_twotone.js new file mode 100644 index 000000000..17fb5343e --- /dev/null +++ b/dist/md/ic_track_changes_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_track_changes_twotone = void 0; +var ic_track_changes_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.07 4.93l-1.41 1.41C19.1 7.79 20 9.79 20 12c0 4.42-3.58 8-8 8s-8-3.58-8-8c0-4.08 3.05-7.44 7-7.93v2.02C8.16 6.57 6 9.03 6 12c0 3.31 2.69 6 6 6s6-2.69 6-6c0-1.66-.67-3.16-1.76-4.24l-1.41 1.41C15.55 9.9 16 10.9 16 12c0 2.21-1.79 4-4 4s-4-1.79-4-4c0-1.86 1.28-3.41 3-3.86v2.14c-.6.35-1 .98-1 1.72 0 1.1.9 2 2 2s2-.9 2-2c0-.74-.4-1.38-1-1.72V2h-1C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10c0-2.76-1.12-5.26-2.93-7.07z" + }, + "children": [] + }] +}; +exports.ic_track_changes_twotone = ic_track_changes_twotone; \ No newline at end of file diff --git a/dist/md/ic_traffic.js b/dist/md/ic_traffic.js new file mode 100644 index 000000000..420ed28e6 --- /dev/null +++ b/dist/md/ic_traffic.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_traffic = void 0; +var ic_traffic = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 10h-3V8.86c1.72-.45 3-2 3-3.86h-3V4c0-.55-.45-1-1-1H8c-.55 0-1 .45-1 1v1H4c0 1.86 1.28 3.41 3 3.86V10H4c0 1.86 1.28 3.41 3 3.86V15H4c0 1.86 1.28 3.41 3 3.86V20c0 .55.45 1 1 1h8c.55 0 1-.45 1-1v-1.14c1.72-.45 3-2 3-3.86h-3v-1.14c1.72-.45 3-2 3-3.86zm-8 9c-1.11 0-2-.9-2-2s.89-2 2-2c1.1 0 2 .9 2 2s-.89 2-2 2zm0-5c-1.11 0-2-.9-2-2s.89-2 2-2c1.1 0 2 .9 2 2s-.89 2-2 2zm0-5c-1.11 0-2-.9-2-2 0-1.11.89-2 2-2 1.1 0 2 .89 2 2 0 1.1-.89 2-2 2z" + }, + "children": [] + }] +}; +exports.ic_traffic = ic_traffic; \ No newline at end of file diff --git a/dist/md/ic_traffic_outline.js b/dist/md/ic_traffic_outline.js new file mode 100644 index 000000000..e2f9d7239 --- /dev/null +++ b/dist/md/ic_traffic_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_traffic_outline = void 0; +var ic_traffic_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 10h-3V8.86c1.72-.45 3-2 3-3.86h-3V4c0-.55-.45-1-1-1H8c-.55 0-1 .45-1 1v1H4c0 1.86 1.28 3.41 3 3.86V10H4c0 1.86 1.28 3.41 3 3.86V15H4c0 1.86 1.28 3.41 3 3.86V20c0 .55.45 1 1 1h8c.55 0 1-.45 1-1v-1.14c1.72-.45 3-2 3-3.86h-3v-1.14c1.72-.45 3-2 3-3.86zm-5 9H9V5h6v14zm-3-1c.83 0 1.5-.67 1.5-1.5S12.83 15 12 15s-1.5.67-1.5 1.5.67 1.5 1.5 1.5zm0-4.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM12 9c.83 0 1.5-.67 1.5-1.5S12.83 6 12 6s-1.5.67-1.5 1.5S11.17 9 12 9z" + }, + "children": [] + }] +}; +exports.ic_traffic_outline = ic_traffic_outline; \ No newline at end of file diff --git a/dist/md/ic_traffic_twotone.js b/dist/md/ic_traffic_twotone.js new file mode 100644 index 000000000..dccec1aac --- /dev/null +++ b/dist/md/ic_traffic_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_traffic_twotone = void 0; +var ic_traffic_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 19h6V5H9v14zm3-13c.83 0 1.5.67 1.5 1.5S12.83 9 12 9s-1.5-.67-1.5-1.5S11.17 6 12 6zm0 4.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm0 4.5c.83 0 1.5.67 1.5 1.5S12.83 18 12 18s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 5h-3V4c0-.55-.45-1-1-1H8c-.55 0-1 .45-1 1v1H4c0 1.86 1.28 3.41 3 3.86V10H4c0 1.86 1.28 3.41 3 3.86V15H4c0 1.86 1.28 3.41 3 3.86V20c0 .55.45 1 1 1h8c.55 0 1-.45 1-1v-1.14c1.72-.45 3-2 3-3.86h-3v-1.14c1.72-.45 3-2 3-3.86h-3V8.86c1.72-.45 3-2 3-3.86zm-5 14H9V5h6v14zm-3-1c.83 0 1.5-.67 1.5-1.5S12.83 15 12 15s-1.5.67-1.5 1.5.67 1.5 1.5 1.5zm0-4.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM12 9c.83 0 1.5-.67 1.5-1.5S12.83 6 12 6s-1.5.67-1.5 1.5S11.17 9 12 9z" + }, + "children": [] + }] +}; +exports.ic_traffic_twotone = ic_traffic_twotone; \ No newline at end of file diff --git a/dist/md/ic_train.js b/dist/md/ic_train.js new file mode 100644 index 000000000..1ee28e401 --- /dev/null +++ b/dist/md/ic_train.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_train = void 0; +var ic_train = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h2.23l2-2H14l2 2h2v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zM7.5 17c-.83 0-1.5-.67-1.5-1.5S6.67 14 7.5 14s1.5.67 1.5 1.5S8.33 17 7.5 17zm3.5-7H6V6h5v4zm2 0V6h5v4h-5zm3.5 7c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" + }, + "children": [] + }] +}; +exports.ic_train = ic_train; \ No newline at end of file diff --git a/dist/md/ic_train_outline.js b/dist/md/ic_train_outline.js new file mode 100644 index 000000000..f4a27df6f --- /dev/null +++ b/dist/md/ic_train_outline.js @@ -0,0 +1,40 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_train_outline = void 0; +var ic_train_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "8.5", + "cy": "14.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "15.5", + "cy": "14.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h2l2-2h4l2 2h2v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-4-4-8-4zm0 2c3.51 0 4.96.48 5.57 1H6.43c.61-.52 2.06-1 5.57-1zM6 7h5v3H6V7zm12 8.5c0 .83-.67 1.5-1.5 1.5h-9c-.83 0-1.5-.67-1.5-1.5V12h12v3.5zm0-5.5h-5V7h5v3z" + }, + "children": [] + }] +}; +exports.ic_train_outline = ic_train_outline; \ No newline at end of file diff --git a/dist/md/ic_train_twotone.js b/dist/md/ic_train_twotone.js new file mode 100644 index 000000000..6f7ff7b4f --- /dev/null +++ b/dist/md/ic_train_twotone.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_train_twotone = void 0; +var ic_train_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4c-3.51 0-4.96.48-5.57 1h11.13c-.6-.52-2.05-1-5.56-1zM6 15.5c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5V12H6v3.5zm9.5-2.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-7 0c.83 0 1.5.67 1.5 1.5S9.33 16 8.5 16 7 15.33 7 14.5 7.67 13 8.5 13z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "8.5", + "cy": "14.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "15.5", + "cy": "14.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h2l2-2h4l2 2h2v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-4-4-8-4zm0 2c3.51 0 4.96.48 5.57 1H6.43c.61-.52 2.06-1 5.57-1zM6 7h5v3H6V7zm12 8.5c0 .83-.67 1.5-1.5 1.5h-9c-.83 0-1.5-.67-1.5-1.5V12h12v3.5zm0-5.5h-5V7h5v3z" + }, + "children": [] + }] +}; +exports.ic_train_twotone = ic_train_twotone; \ No newline at end of file diff --git a/dist/md/ic_tram.js b/dist/md/ic_tram.js new file mode 100644 index 000000000..bc4ddd452 --- /dev/null +++ b/dist/md/ic_tram.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_tram = void 0; +var ic_tram = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 16.94V8.5c0-2.79-2.61-3.4-6.01-3.49l.76-1.51H17V2H7v1.5h4.75l-.76 1.52C7.86 5.11 5 5.73 5 8.5v8.44c0 1.45 1.19 2.66 2.59 2.97L6 21.5v.5h2.23l2-2H14l2 2h2v-.5L16.5 20h-.08c1.69 0 2.58-1.37 2.58-3.06zm-7 1.56c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm5-4.5H7V9h10v5z" + }, + "children": [] + }] +}; +exports.ic_tram = ic_tram; \ No newline at end of file diff --git a/dist/md/ic_tram_outline.js b/dist/md/ic_tram_outline.js new file mode 100644 index 000000000..bd66c289d --- /dev/null +++ b/dist/md/ic_tram_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_tram_outline = void 0; +var ic_tram_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 5l.75-1.5H17V2H7v1.5h4.75L11 5c-3.13.09-6 .73-6 3.5V17c0 1.5 1.11 2.73 2.55 2.95L6 21.5v.5h2l2-2h4l2 2h2v-.5l-1.55-1.55h-.01.01C17.89 19.73 19 18.5 19 17V8.5c0-2.77-2.87-3.41-6-3.5zm-1.97 2h1.94c2.75.08 3.62.58 3.9 1H7.13c.28-.42 1.15-.92 3.9-1zm-.18 10.95H7.74C7.3 17.84 7 17.45 7 17v-1h3.89c-.24.27-.39.61-.39 1 0 .36.13.69.35.95zM17 17c0 .45-.3.84-.74.95h-3.11c.22-.26.35-.59.35-.95 0-.39-.15-.73-.39-1H17v1zm0-3H7v-4h10v4z" + }, + "children": [] + }] +}; +exports.ic_tram_outline = ic_tram_outline; \ No newline at end of file diff --git a/dist/md/ic_tram_twotone.js b/dist/md/ic_tram_twotone.js new file mode 100644 index 000000000..c7857a25f --- /dev/null +++ b/dist/md/ic_tram_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_tram_twotone = void 0; +var ic_tram_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12.97 7h-1.94c-2.75.08-3.62.58-3.9 1h9.74c-.28-.42-1.15-.92-3.9-1zM7 16v1c0 .45.3.84.74.95h3.11c-.22-.26-.35-.59-.35-.95 0-.39.15-.73.39-1H7zm6.5 1c0 .36-.13.69-.35.95h3.11c.44-.11.74-.5.74-.95v-1h-3.89c.24.27.39.61.39 1z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 5l.75-1.5H17V2H7v1.5h4.75L11 5c-3.13.09-6 .73-6 3.5V17c0 1.5 1.11 2.73 2.55 2.95L6 21.5v.5h2l2-2h4l2 2h2v-.5l-1.55-1.55h-.01.01C17.89 19.73 19 18.5 19 17V8.5c0-2.77-2.87-3.41-6-3.5zm-1.97 2h1.94c2.75.08 3.62.58 3.9 1H7.13c.28-.42 1.15-.92 3.9-1zm-.18 10.95H7.74C7.3 17.84 7 17.45 7 17v-1h3.89c-.24.27-.39.61-.39 1 0 .36.13.69.35.95zM17 17c0 .45-.3.84-.74.95h-3.11c.22-.26.35-.59.35-.95 0-.39-.15-.73-.39-1H17v1zm0-3H7v-4h10v4z" + }, + "children": [] + }] +}; +exports.ic_tram_twotone = ic_tram_twotone; \ No newline at end of file diff --git a/dist/md/ic_transfer_within_a_station.js b/dist/md/ic_transfer_within_a_station.js new file mode 100644 index 000000000..19f722051 --- /dev/null +++ b/dist/md/ic_transfer_within_a_station.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_transfer_within_a_station = void 0; +var ic_transfer_within_a_station = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16.49 15.5v-1.75L14 16.25l2.49 2.5V17H22v-1.5zm3.02 4.25H14v1.5h5.51V23L22 20.5 19.51 18zM9.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM5.75 8.9L3 23h2.1l1.75-8L9 17v6h2v-7.55L8.95 13.4l.6-3C10.85 12 12.8 13 15 13v-2c-1.85 0-3.45-1-4.35-2.45l-.95-1.6C9.35 6.35 8.7 6 8 6c-.25 0-.5.05-.75.15L2 8.3V13h2V9.65l1.75-.75" + }, + "children": [] + }] +}; +exports.ic_transfer_within_a_station = ic_transfer_within_a_station; \ No newline at end of file diff --git a/dist/md/ic_transfer_within_a_station_outline.js b/dist/md/ic_transfer_within_a_station_outline.js new file mode 100644 index 000000000..2f49b64ca --- /dev/null +++ b/dist/md/ic_transfer_within_a_station_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_transfer_within_a_station_outline = void 0; +var ic_transfer_within_a_station_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16.49 15.5v-1.75L14 16.25l2.49 2.5V17H22v-1.5h-5.51zm3.02 4.25H14v1.5h5.51V23L22 20.5 19.51 18v1.75zM9.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM5.75 8.9L3 23h2.1l1.75-8L9 17v6h2v-7.55L8.95 13.4l.6-3C10.85 12 12.8 13 15 13v-2c-1.85 0-3.45-1-4.35-2.45l-.95-1.6C9.35 6.35 8.7 6 8 6c-.25 0-.5.05-.75.15L2 8.3V13h2V9.65l1.75-.75" + }, + "children": [] + }] +}; +exports.ic_transfer_within_a_station_outline = ic_transfer_within_a_station_outline; \ No newline at end of file diff --git a/dist/md/ic_transfer_within_a_station_twotone.js b/dist/md/ic_transfer_within_a_station_twotone.js new file mode 100644 index 000000000..38dd8c923 --- /dev/null +++ b/dist/md/ic_transfer_within_a_station_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_transfer_within_a_station_twotone = void 0; +var ic_transfer_within_a_station_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16.49 13.75L14 16.25l2.49 2.5V17H22v-1.5h-5.51zm3.02 6H14v1.5h5.51V23L22 20.5 19.51 18zM7.5 3.5c0 1.1.9 2 2 2s2-.9 2-2-.9-2-2-2-2 .9-2 2zm2.05 6.9C10.85 12 12.8 13 15 13v-2c-1.85 0-3.45-1-4.35-2.45l-.95-1.6C9.35 6.35 8.7 6 8 6c-.25 0-.5.05-.75.15L2 8.3V13h2V9.65l1.75-.75L3 23h2.1l1.75-8L9 17v6h2v-7.55L8.95 13.4l.6-3z" + }, + "children": [] + }] +}; +exports.ic_transfer_within_a_station_twotone = ic_transfer_within_a_station_twotone; \ No newline at end of file diff --git a/dist/md/ic_transform.js b/dist/md/ic_transform.js new file mode 100644 index 000000000..6a2694ae1 --- /dev/null +++ b/dist/md/ic_transform.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_transform = void 0; +var ic_transform = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 18v-2H8V4h2L7 1 4 4h2v2H2v2h4v8c0 1.1.9 2 2 2h8v2h-2l3 3 3-3h-2v-2h4zM10 8h6v6h2V8c0-1.1-.9-2-2-2h-6v2z" + }, + "children": [] + }] +}; +exports.ic_transform = ic_transform; \ No newline at end of file diff --git a/dist/md/ic_transform_outline.js b/dist/md/ic_transform_outline.js new file mode 100644 index 000000000..ec746e718 --- /dev/null +++ b/dist/md/ic_transform_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_transform_outline = void 0; +var ic_transform_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 18v-2H8V4h2L7 1 4 4h2v2H2v2h4v8c0 1.1.9 2 2 2h8v2h-2l3 3 3-3h-2v-2h4zM10 8h6v6h2V8c0-1.1-.9-2-2-2h-6v2z" + }, + "children": [] + }] +}; +exports.ic_transform_outline = ic_transform_outline; \ No newline at end of file diff --git a/dist/md/ic_transform_twotone.js b/dist/md/ic_transform_twotone.js new file mode 100644 index 000000000..2eb1a12cc --- /dev/null +++ b/dist/md/ic_transform_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_transform_twotone = void 0; +var ic_transform_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8 4h2L7 1 4 4h2v2H2v2h4v8c0 1.1.9 2 2 2h8v2h-2l3 3 3-3h-2v-2h4v-2H8V4zm10 10V8c0-1.1-.9-2-2-2h-6v2h6v6h2z" + }, + "children": [] + }] +}; +exports.ic_transform_twotone = ic_transform_twotone; \ No newline at end of file diff --git a/dist/md/ic_transit_enterexit.js b/dist/md/ic_transit_enterexit.js new file mode 100644 index 000000000..946585d15 --- /dev/null +++ b/dist/md/ic_transit_enterexit.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_transit_enterexit = void 0; +var ic_transit_enterexit = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 18H6V8h3v4.77L15.98 6 18 8.03 11.15 15H16v3z" + }, + "children": [] + }] +}; +exports.ic_transit_enterexit = ic_transit_enterexit; \ No newline at end of file diff --git a/dist/md/ic_transit_enterexit_outline.js b/dist/md/ic_transit_enterexit_outline.js new file mode 100644 index 000000000..4499eb66a --- /dev/null +++ b/dist/md/ic_transit_enterexit_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_transit_enterexit_outline = void 0; +var ic_transit_enterexit_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 18H6V8h3v4.77L15.98 6 18 8.03 11.15 15H16v3z" + }, + "children": [] + }] +}; +exports.ic_transit_enterexit_outline = ic_transit_enterexit_outline; \ No newline at end of file diff --git a/dist/md/ic_transit_enterexit_twotone.js b/dist/md/ic_transit_enterexit_twotone.js new file mode 100644 index 000000000..554930a60 --- /dev/null +++ b/dist/md/ic_transit_enterexit_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_transit_enterexit_twotone = void 0; +var ic_transit_enterexit_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.98 6L9 12.77V8H6v10h10v-3h-4.85L18 8.03z" + }, + "children": [] + }] +}; +exports.ic_transit_enterexit_twotone = ic_transit_enterexit_twotone; \ No newline at end of file diff --git a/dist/md/ic_translate.js b/dist/md/ic_translate.js new file mode 100644 index 000000000..1fd7707b3 --- /dev/null +++ b/dist/md/ic_translate.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_translate = void 0; +var ic_translate = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12.87 15.07l-2.54-2.51.03-.03c1.74-1.94 2.98-4.17 3.71-6.53H17V4h-7V2H8v2H1v1.99h11.17C11.5 7.92 10.44 9.75 9 11.35 8.07 10.32 7.3 9.19 6.69 8h-2c.73 1.63 1.73 3.17 2.98 4.56l-5.09 5.02L4 19l5-5 3.11 3.11.76-2.04zM18.5 10h-2L12 22h2l1.12-3h4.75L21 22h2l-4.5-12zm-2.62 7l1.62-4.33L19.12 17h-3.24z" + }, + "children": [] + }] +}; +exports.ic_translate = ic_translate; \ No newline at end of file diff --git a/dist/md/ic_translate_outline.js b/dist/md/ic_translate_outline.js new file mode 100644 index 000000000..fe43e886d --- /dev/null +++ b/dist/md/ic_translate_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_translate_outline = void 0; +var ic_translate_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12.87 15.07l-2.54-2.51.03-.03c1.74-1.94 2.98-4.17 3.71-6.53H17V4h-7V2H8v2H1v1.99h11.17C11.5 7.92 10.44 9.75 9 11.35 8.07 10.32 7.3 9.19 6.69 8h-2c.73 1.63 1.73 3.17 2.98 4.56l-5.09 5.02L4 19l5-5 3.11 3.11.76-2.04zM18.5 10h-2L12 22h2l1.12-3h4.75L21 22h2l-4.5-12zm-2.62 7l1.62-4.33L19.12 17h-3.24z" + }, + "children": [] + }] +}; +exports.ic_translate_outline = ic_translate_outline; \ No newline at end of file diff --git a/dist/md/ic_translate_twotone.js b/dist/md/ic_translate_twotone.js new file mode 100644 index 000000000..990338f5a --- /dev/null +++ b/dist/md/ic_translate_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_translate_twotone = void 0; +var ic_translate_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12.87 15.07l-2.54-2.51.03-.03c1.74-1.94 2.98-4.17 3.71-6.53H17V4h-7V2H8v2H1v1.99h11.17C11.5 7.92 10.44 9.75 9 11.35 8.07 10.32 7.3 9.19 6.69 8h-2c.73 1.63 1.73 3.17 2.98 4.56l-5.09 5.02L4 19l5-5 3.11 3.11.76-2.04zM18.5 10h-2L12 22h2l1.12-3h4.75L21 22h2l-4.5-12zm-2.62 7l1.62-4.33L19.12 17h-3.24z" + }, + "children": [] + }] +}; +exports.ic_translate_twotone = ic_translate_twotone; \ No newline at end of file diff --git a/dist/md/ic_trending_down.js b/dist/md/ic_trending_down.js new file mode 100644 index 000000000..f3d1b696c --- /dev/null +++ b/dist/md/ic_trending_down.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_trending_down = void 0; +var ic_trending_down = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 18l2.29-2.29-4.88-4.88-4 4L2 7.41 3.41 6l6 6 4-4 6.3 6.29L22 12v6z" + }, + "children": [] + }] +}; +exports.ic_trending_down = ic_trending_down; \ No newline at end of file diff --git a/dist/md/ic_trending_down_outline.js b/dist/md/ic_trending_down_outline.js new file mode 100644 index 000000000..d122f5344 --- /dev/null +++ b/dist/md/ic_trending_down_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_trending_down_outline = void 0; +var ic_trending_down_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 18l2.29-2.29-4.88-4.88-4 4L2 7.41 3.41 6l6 6 4-4 6.3 6.29L22 12v6h-6z" + }, + "children": [] + }] +}; +exports.ic_trending_down_outline = ic_trending_down_outline; \ No newline at end of file diff --git a/dist/md/ic_trending_down_twotone.js b/dist/md/ic_trending_down_twotone.js new file mode 100644 index 000000000..afeecafe2 --- /dev/null +++ b/dist/md/ic_trending_down_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_trending_down_twotone = void 0; +var ic_trending_down_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 18l2.29-2.29-4.88-4.88-4 4L2 7.41 3.41 6l6 6 4-4 6.3 6.29L22 12v6h-6z" + }, + "children": [] + }] +}; +exports.ic_trending_down_twotone = ic_trending_down_twotone; \ No newline at end of file diff --git a/dist/md/ic_trending_flat.js b/dist/md/ic_trending_flat.js new file mode 100644 index 000000000..43920d31b --- /dev/null +++ b/dist/md/ic_trending_flat.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_trending_flat = void 0; +var ic_trending_flat = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 12l-4-4v3H3v2h15v3z" + }, + "children": [] + }] +}; +exports.ic_trending_flat = ic_trending_flat; \ No newline at end of file diff --git a/dist/md/ic_trending_flat_outline.js b/dist/md/ic_trending_flat_outline.js new file mode 100644 index 000000000..ec7de8f23 --- /dev/null +++ b/dist/md/ic_trending_flat_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_trending_flat_outline = void 0; +var ic_trending_flat_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 12l-4-4v3H3v2h15v3l4-4z" + }, + "children": [] + }] +}; +exports.ic_trending_flat_outline = ic_trending_flat_outline; \ No newline at end of file diff --git a/dist/md/ic_trending_flat_twotone.js b/dist/md/ic_trending_flat_twotone.js new file mode 100644 index 000000000..23b2db302 --- /dev/null +++ b/dist/md/ic_trending_flat_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_trending_flat_twotone = void 0; +var ic_trending_flat_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 12l-4-4v3H3v2h15v3l4-4z" + }, + "children": [] + }] +}; +exports.ic_trending_flat_twotone = ic_trending_flat_twotone; \ No newline at end of file diff --git a/dist/md/ic_trending_up.js b/dist/md/ic_trending_up.js new file mode 100644 index 000000000..1c2fdbb87 --- /dev/null +++ b/dist/md/ic_trending_up.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_trending_up = void 0; +var ic_trending_up = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 6l2.29 2.29-4.88 4.88-4-4L2 16.59 3.41 18l6-6 4 4 6.3-6.29L22 12V6z" + }, + "children": [] + }] +}; +exports.ic_trending_up = ic_trending_up; \ No newline at end of file diff --git a/dist/md/ic_trending_up_outline.js b/dist/md/ic_trending_up_outline.js new file mode 100644 index 000000000..d9bdecac2 --- /dev/null +++ b/dist/md/ic_trending_up_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_trending_up_outline = void 0; +var ic_trending_up_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 6l2.29 2.29-4.88 4.88-4-4L2 16.59 3.41 18l6-6 4 4 6.3-6.29L22 12V6h-6z" + }, + "children": [] + }] +}; +exports.ic_trending_up_outline = ic_trending_up_outline; \ No newline at end of file diff --git a/dist/md/ic_trending_up_twotone.js b/dist/md/ic_trending_up_twotone.js new file mode 100644 index 000000000..bf2b12021 --- /dev/null +++ b/dist/md/ic_trending_up_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_trending_up_twotone = void 0; +var ic_trending_up_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 6l2.29 2.29-4.88 4.88-4-4L2 16.59 3.41 18l6-6 4 4 6.3-6.29L22 12V6h-6z" + }, + "children": [] + }] +}; +exports.ic_trending_up_twotone = ic_trending_up_twotone; \ No newline at end of file diff --git a/dist/md/ic_trip_origin.js b/dist/md/ic_trip_origin.js new file mode 100644 index 000000000..ce7e72ad0 --- /dev/null +++ b/dist/md/ic_trip_origin.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_trip_origin = void 0; +var ic_trip_origin = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M2 12C2 6.48 6.48 2 12 2s10 4.48 10 10-4.48 10-10 10S2 17.52 2 12zm10 6c3.31 0 6-2.69 6-6s-2.69-6-6-6-6 2.69-6 6 2.69 6 6 6z" + }, + "children": [] + }] +}; +exports.ic_trip_origin = ic_trip_origin; \ No newline at end of file diff --git a/dist/md/ic_trip_origin_outline.js b/dist/md/ic_trip_origin_outline.js new file mode 100644 index 000000000..89fc6821f --- /dev/null +++ b/dist/md/ic_trip_origin_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_trip_origin_outline = void 0; +var ic_trip_origin_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M2 12C2 6.48 6.48 2 12 2s10 4.48 10 10-4.48 10-10 10S2 17.52 2 12zm10 6c3.31 0 6-2.69 6-6s-2.69-6-6-6-6 2.69-6 6 2.69 6 6 6z" + }, + "children": [] + }] +}; +exports.ic_trip_origin_outline = ic_trip_origin_outline; \ No newline at end of file diff --git a/dist/md/ic_trip_origin_twotone.js b/dist/md/ic_trip_origin_twotone.js new file mode 100644 index 000000000..caf5fe355 --- /dev/null +++ b/dist/md/ic_trip_origin_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_trip_origin_twotone = void 0; +var ic_trip_origin_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 16c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z" + }, + "children": [] + }] +}; +exports.ic_trip_origin_twotone = ic_trip_origin_twotone; \ No newline at end of file diff --git a/dist/md/ic_tty.js b/dist/md/ic_tty.js new file mode 100644 index 000000000..0d4657f6a --- /dev/null +++ b/dist/md/ic_tty.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_tty = void 0; +var ic_tty = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M14,4h2v2h-2V4z M13,7h2v2h-2V7z M11,4h2v2h-2V4z M18,9h-2V7h2V9z M19,6h-2V4h2V6z M21,9h-2V7h2V9z M22,6h-2V4h2V6z M14.62,14.38L12.1,16.9c-2.5-1.43-4.57-3.5-6-6l2.52-2.52C8.86,8.14,8.96,7.8,8.9,7.48L8.16,3.8C8.07,3.34,7.66,3,7.18,3H3.03 C2.47,3,2,3.47,2.03,4.03C2.2,6.92,3.05,9.63,4.43,12c1.58,2.73,3.85,4.99,6.57,6.57c2.37,1.37,5.08,2.23,7.97,2.4 c0.56,0.03,1.03-0.44,1.03-1v-4.15c0-0.48-0.34-0.89-0.8-0.98l-3.67-0.73C15.2,14.04,14.86,14.14,14.62,14.38z M14,10h2v2h-2V10z M11,10h2v2h-2V10z M19,12h-2v-2h2V12z M22,12h-2v-2h2V12z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14,4h2v2h-2V4z M13,7h2v2h-2V7z M11,4h2v2h-2V4z M18,9h-2V7h2V9z M19,6h-2V4h2V6z M21,9h-2V7h2V9z M22,6h-2V4h2V6z M14.62,14.38L12.1,16.9c-2.5-1.43-4.57-3.5-6-6l2.52-2.52C8.86,8.14,8.96,7.8,8.9,7.48L8.16,3.8C8.07,3.34,7.66,3,7.18,3H3.03 C2.47,3,2,3.47,2.03,4.03C2.2,6.92,3.05,9.63,4.43,12c1.58,2.73,3.85,4.99,6.57,6.57c2.37,1.37,5.08,2.23,7.97,2.4 c0.56,0.03,1.03-0.44,1.03-1v-4.15c0-0.48-0.34-0.89-0.8-0.98l-3.67-0.73C15.2,14.04,14.86,14.14,14.62,14.38z M14,10h2v2h-2V10z M11,10h2v2h-2V10z M19,12h-2v-2h2V12z M22,12h-2v-2h2V12z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_tty = ic_tty; \ No newline at end of file diff --git a/dist/md/ic_tty_outline.js b/dist/md/ic_tty_outline.js new file mode 100644 index 000000000..27938ad88 --- /dev/null +++ b/dist/md/ic_tty_outline.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_tty_outline = void 0; +var ic_tty_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M16,6h-2V4h2V6z M18,7h-2v2h2V7z M19,9h2V7h-2V9z M19,4h-2v2h2V4z M15,7h-2v2h2V7z M19,10h-2v2h2V10z M16,10h-2v2h2V10z M13,4h-2v2h2V4z M20,15.82v4.15c0,0.56-0.47,1.03-1.03,1c-2.89-0.17-5.6-1.03-7.97-2.4C8.27,16.99,6.01,14.73,4.43,12 C3.05,9.63,2.2,6.92,2.03,4.03C2,3.47,2.47,3,3.03,3h4.15c0.48,0,0.89,0.34,0.98,0.8L8.9,7.48c0.07,0.33-0.04,0.67-0.27,0.9 L6.1,10.9c1.43,2.5,3.5,4.57,6,6l2.52-2.52c0.24-0.24,0.58-0.34,0.9-0.27l3.67,0.73C19.66,14.93,20,15.34,20,15.82z M5.18,8.99 l1.65-1.65L6.36,5H4.13C4.3,6.37,4.66,7.71,5.18,8.99z M18,16.64l-2.34-0.47l-1.65,1.65c1.28,0.52,2.63,0.87,3.99,1.05V16.64z M20,4v2h2V4H20z M20,12h2v-2h-2V12z M13,10h-2v2h2V10z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M16,6h-2V4h2V6z M18,7h-2v2h2V7z M19,9h2V7h-2V9z M19,4h-2v2h2V4z M15,7h-2v2h2V7z M19,10h-2v2h2V10z M16,10h-2v2h2V10z M13,4h-2v2h2V4z M20,15.82v4.15c0,0.56-0.47,1.03-1.03,1c-2.89-0.17-5.6-1.03-7.97-2.4C8.27,16.99,6.01,14.73,4.43,12 C3.05,9.63,2.2,6.92,2.03,4.03C2,3.47,2.47,3,3.03,3h4.15c0.48,0,0.89,0.34,0.98,0.8L8.9,7.48c0.07,0.33-0.04,0.67-0.27,0.9 L6.1,10.9c1.43,2.5,3.5,4.57,6,6l2.52-2.52c0.24-0.24,0.58-0.34,0.9-0.27l3.67,0.73C19.66,14.93,20,15.34,20,15.82z M5.18,8.99 l1.65-1.65L6.36,5H4.13C4.3,6.37,4.66,7.71,5.18,8.99z M18,16.64l-2.34-0.47l-1.65,1.65c1.28,0.52,2.63,0.87,3.99,1.05V16.64z M20,4v2h2V4H20z M20,12h2v-2h-2V12z M13,10h-2v2h2V10z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_tty_outline = ic_tty_outline; \ No newline at end of file diff --git a/dist/md/ic_tty_twotone.js b/dist/md/ic_tty_twotone.js new file mode 100644 index 000000000..80401029b --- /dev/null +++ b/dist/md/ic_tty_twotone.js @@ -0,0 +1,59 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_tty_twotone = void 0; +var ic_tty_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M4.13,5C4.3,6.37,4.66,7.71,5.18,8.99l1.65-1.65L6.36,5H4.13z M15.66,16.17l-1.65,1.65 c1.28,0.52,2.63,0.87,3.99,1.05v-2.23L15.66,16.17z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M4.13,5C4.3,6.37,4.66,7.71,5.18,8.99l1.65-1.65L6.36,5H4.13z M15.66,16.17l-1.65,1.65 c1.28,0.52,2.63,0.87,3.99,1.05v-2.23L15.66,16.17z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19.2,14.84l-3.67-0.73c-0.33-0.07-0.67,0.04-0.9,0.27L12.1,16.9c-2.5-1.43-4.57-3.5-6-6l2.52-2.52 C8.86,8.14,8.96,7.8,8.9,7.48L8.16,3.8C8.07,3.34,7.66,3,7.18,3H3.03C2.47,3,2,3.47,2.03,4.03C2.2,6.92,3.05,9.63,4.43,12 c1.58,2.73,3.85,4.99,6.57,6.57c2.37,1.37,5.08,2.23,7.97,2.4c0.56,0.03,1.03-0.44,1.03-1v-4.15C20,15.34,19.66,14.93,19.2,14.84z M4.13,5h2.23l0.47,2.34L5.18,8.99C4.66,7.71,4.3,6.37,4.13,5z M18,18.87c-1.37-0.17-2.71-0.53-3.99-1.05l1.65-1.65L18,16.64V18.87 z M14,4h2v2h-2V4z M13,7h2v2h-2V7z M11,4h2v2h-2V4z M18,9h-2V7h2V9z M19,6h-2V4h2V6z M21,9h-2V7h2V9z M22,6h-2V4h2V6z M14,10h2v2 h-2V10z M11,10h2v2h-2V10z M19,12h-2v-2h2V12z M22,12h-2v-2h2V12z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19.2,14.84l-3.67-0.73c-0.33-0.07-0.67,0.04-0.9,0.27L12.1,16.9c-2.5-1.43-4.57-3.5-6-6l2.52-2.52 C8.86,8.14,8.96,7.8,8.9,7.48L8.16,3.8C8.07,3.34,7.66,3,7.18,3H3.03C2.47,3,2,3.47,2.03,4.03C2.2,6.92,3.05,9.63,4.43,12 c1.58,2.73,3.85,4.99,6.57,6.57c2.37,1.37,5.08,2.23,7.97,2.4c0.56,0.03,1.03-0.44,1.03-1v-4.15C20,15.34,19.66,14.93,19.2,14.84z M4.13,5h2.23l0.47,2.34L5.18,8.99C4.66,7.71,4.3,6.37,4.13,5z M18,18.87c-1.37-0.17-2.71-0.53-3.99-1.05l1.65-1.65L18,16.64V18.87 z M14,4h2v2h-2V4z M13,7h2v2h-2V7z M11,4h2v2h-2V4z M18,9h-2V7h2V9z M19,6h-2V4h2V6z M21,9h-2V7h2V9z M22,6h-2V4h2V6z M14,10h2v2 h-2V10z M11,10h2v2h-2V10z M19,12h-2v-2h2V12z M22,12h-2v-2h2V12z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_tty_twotone = ic_tty_twotone; \ No newline at end of file diff --git a/dist/md/ic_tune.js b/dist/md/ic_tune.js new file mode 100644 index 000000000..0b0f7b1de --- /dev/null +++ b/dist/md/ic_tune.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_tune = void 0; +var ic_tune = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 17v2h6v-2H3zM3 5v2h10V5H3zm10 16v-2h8v-2h-8v-2h-2v6h2zM7 9v2H3v2h4v2h2V9H7zm14 4v-2H11v2h10zm-6-4h2V7h4V5h-4V3h-2v6z" + }, + "children": [] + }] +}; +exports.ic_tune = ic_tune; \ No newline at end of file diff --git a/dist/md/ic_tune_outline.js b/dist/md/ic_tune_outline.js new file mode 100644 index 000000000..25ff49ffc --- /dev/null +++ b/dist/md/ic_tune_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_tune_outline = void 0; +var ic_tune_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 17v2h6v-2H3zM3 5v2h10V5H3zm10 16v-2h8v-2h-8v-2h-2v6h2zM7 9v2H3v2h4v2h2V9H7zm14 4v-2H11v2h10zm-6-4h2V7h4V5h-4V3h-2v6z" + }, + "children": [] + }] +}; +exports.ic_tune_outline = ic_tune_outline; \ No newline at end of file diff --git a/dist/md/ic_tune_twotone.js b/dist/md/ic_tune_twotone.js new file mode 100644 index 000000000..a5f9a830c --- /dev/null +++ b/dist/md/ic_tune_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_tune_twotone = void 0; +var ic_tune_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 5h10v2H3zm4 6H3v2h4v2h2V9H7zm6 4h-2v6h2v-2h8v-2h-8zM3 17h6v2H3zm8-6h10v2H11zm6-8h-2v6h2V7h4V5h-4z" + }, + "children": [] + }] +}; +exports.ic_tune_twotone = ic_tune_twotone; \ No newline at end of file diff --git a/dist/md/ic_turned_in.js b/dist/md/ic_turned_in.js new file mode 100644 index 000000000..765a9680e --- /dev/null +++ b/dist/md/ic_turned_in.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_turned_in = void 0; +var ic_turned_in = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 3H7c-1.1 0-1.99.9-1.99 2L5 21l7-3 7 3V5c0-1.1-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_turned_in = ic_turned_in; \ No newline at end of file diff --git a/dist/md/ic_turned_in_not.js b/dist/md/ic_turned_in_not.js new file mode 100644 index 000000000..538a2eb8c --- /dev/null +++ b/dist/md/ic_turned_in_not.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_turned_in_not = void 0; +var ic_turned_in_not = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 3H7c-1.1 0-1.99.9-1.99 2L5 21l7-3 7 3V5c0-1.1-.9-2-2-2zm0 15l-5-2.18L7 18V5h10v13z" + }, + "children": [] + }] +}; +exports.ic_turned_in_not = ic_turned_in_not; \ No newline at end of file diff --git a/dist/md/ic_turned_in_not_outline.js b/dist/md/ic_turned_in_not_outline.js new file mode 100644 index 000000000..95f518502 --- /dev/null +++ b/dist/md/ic_turned_in_not_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_turned_in_not_outline = void 0; +var ic_turned_in_not_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 3H7c-1.1 0-1.99.9-1.99 2L5 21l7-3 7 3V5c0-1.1-.9-2-2-2zm0 15l-5-2.18L7 18V5h10v13z" + }, + "children": [] + }] +}; +exports.ic_turned_in_not_outline = ic_turned_in_not_outline; \ No newline at end of file diff --git a/dist/md/ic_turned_in_not_twotone.js b/dist/md/ic_turned_in_not_twotone.js new file mode 100644 index 000000000..44d49846a --- /dev/null +++ b/dist/md/ic_turned_in_not_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_turned_in_not_twotone = void 0; +var ic_turned_in_not_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 3H7c-1.1 0-1.99.9-1.99 2L5 21l7-3 7 3V5c0-1.1-.9-2-2-2zm0 15l-5-2.18L7 18V5h10v13z" + }, + "children": [] + }] +}; +exports.ic_turned_in_not_twotone = ic_turned_in_not_twotone; \ No newline at end of file diff --git a/dist/md/ic_turned_in_outline.js b/dist/md/ic_turned_in_outline.js new file mode 100644 index 000000000..7721a684e --- /dev/null +++ b/dist/md/ic_turned_in_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_turned_in_outline = void 0; +var ic_turned_in_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 3H7c-1.1 0-1.99.9-1.99 2L5 21l7-3 7 3V5c0-1.1-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_turned_in_outline = ic_turned_in_outline; \ No newline at end of file diff --git a/dist/md/ic_turned_in_twotone.js b/dist/md/ic_turned_in_twotone.js new file mode 100644 index 000000000..eb7d84f20 --- /dev/null +++ b/dist/md/ic_turned_in_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_turned_in_twotone = void 0; +var ic_turned_in_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 3H7c-1.1 0-1.99.9-1.99 2L5 21l7-3 7 3V5c0-1.1-.9-2-2-2zm0 14.97l-4.21-1.81-.79-.34-.79.34L7 17.97V5h10v12.97z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 17.97l4.21-1.81.79-.34.79.34L17 17.97V5H7z", + "opacity": ".3" + }, + "children": [] + }] +}; +exports.ic_turned_in_twotone = ic_turned_in_twotone; \ No newline at end of file diff --git a/dist/md/ic_tv.js b/dist/md/ic_tv.js new file mode 100644 index 000000000..66189ab50 --- /dev/null +++ b/dist/md/ic_tv.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_tv = void 0; +var ic_tv = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.1-.9-2-2-2zm0 14H3V5h18v12z" + }, + "children": [] + }] +}; +exports.ic_tv = ic_tv; \ No newline at end of file diff --git a/dist/md/ic_tv_off.js b/dist/md/ic_tv_off.js new file mode 100644 index 000000000..615c0e337 --- /dev/null +++ b/dist/md/ic_tv_off.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_tv_off = void 0; +var ic_tv_off = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M1 3.54l1.53 1.53C1.65 5.28 1 6.06 1 7v12c0 1.1.9 2 2 2h15.46l2 2 1.26-1.27L2.27 2.27 1 3.54zM3 19V7h1.46l12 12H3zM21 5h-7.58l3.29-3.3L16 1l-4 4-4-4-.7.7L10.58 5H7.52l2 2H21v11.48l1.65 1.65c.22-.32.35-.71.35-1.13V7c0-1.11-.89-2-2-2z" + }, + "children": [] + }] +}; +exports.ic_tv_off = ic_tv_off; \ No newline at end of file diff --git a/dist/md/ic_tv_off_outline.js b/dist/md/ic_tv_off_outline.js new file mode 100644 index 000000000..dbcbfc450 --- /dev/null +++ b/dist/md/ic_tv_off_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_tv_off_outline = void 0; +var ic_tv_off_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 7v10.88l1.85 1.85c.09-.23.15-.47.15-.73V7c0-1.11-.89-2-2-2h-7.58l3.29-3.3L16 1l-4 4-4-4-.7.7L10.58 5H8.12l2 2H21zm-.54 16l1.26-1.27-1.26 1.26zM2.41 2.13l-.14.14L1 3.54l1.53 1.53C1.65 5.28 1 6.06 1 7v12c0 1.1.9 2 2 2h15.46l1.99 1.99 1.26-1.26.15-.15L2.41 2.13zM3 19V7h1.46l12 12H3z" + }, + "children": [] + }] +}; +exports.ic_tv_off_outline = ic_tv_off_outline; \ No newline at end of file diff --git a/dist/md/ic_tv_off_twotone.js b/dist/md/ic_tv_off_twotone.js new file mode 100644 index 000000000..b1532047f --- /dev/null +++ b/dist/md/ic_tv_off_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_tv_off_twotone = void 0; +var ic_tv_off_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 19h13.46l-12-12H3zm7.12-12L21 17.88V7z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 7v10.88l1.85 1.85c.09-.23.15-.47.15-.73V7c0-1.11-.89-2-2-2h-7.58l3.29-3.3L16 1l-4 4-4-4-.7.7L10.58 5H8.12l2 2H21zm-.54 16l1.26-1.27-1.26 1.26zM2.41 2.13l-.14.14L1 3.54l1.53 1.53C1.65 5.28 1 6.06 1 7v12c0 1.1.9 2 2 2h15.46l1.99 1.99 1.26-1.26.15-.15L2.41 2.13zM3 19V7h1.46l12 12H3z" + }, + "children": [] + }] +}; +exports.ic_tv_off_twotone = ic_tv_off_twotone; \ No newline at end of file diff --git a/dist/md/ic_tv_outline.js b/dist/md/ic_tv_outline.js new file mode 100644 index 000000000..c0d6cd660 --- /dev/null +++ b/dist/md/ic_tv_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_tv_outline = void 0; +var ic_tv_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.1-.9-2-2-2zm0 14H3V5h18v12z" + }, + "children": [] + }] +}; +exports.ic_tv_outline = ic_tv_outline; \ No newline at end of file diff --git a/dist/md/ic_tv_twotone.js b/dist/md/ic_tv_twotone.js new file mode 100644 index 000000000..1b0972f81 --- /dev/null +++ b/dist/md/ic_tv_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_tv_twotone = void 0; +var ic_tv_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 5h18v12H3z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.1-.9-2-2-2zm0 14H3V5h18v12z" + }, + "children": [] + }] +}; +exports.ic_tv_twotone = ic_tv_twotone; \ No newline at end of file diff --git a/dist/md/ic_two_wheeler.js b/dist/md/ic_two_wheeler.js new file mode 100644 index 000000000..ffe34ceb8 --- /dev/null +++ b/dist/md/ic_two_wheeler.js @@ -0,0 +1,49 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_two_wheeler = void 0; +var ic_two_wheeler = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "fill-rule": "evenodd", + "height": "24", + "width": "24", + "x": "0", + "y": "0" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "fill-rule": "evenodd", + "height": "24", + "width": "24", + "x": "0", + "y": "0" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20,11c-0.18,0-0.36,0.03-0.53,0.05L17.41,9H20V6l-3.72,1.86L13.41,5H9v2h3.59l2,2H11l-4,2L5,9H0v2h4c-2.21,0-4,1.79-4,4 c0,2.21,1.79,4,4,4c2.21,0,4-1.79,4-4l2,2h3l3.49-6.1l1.01,1.01C16.59,12.64,16,13.75,16,15c0,2.21,1.79,4,4,4c2.21,0,4-1.79,4-4 C24,12.79,22.21,11,20,11z M4,17c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2c1.1,0,2,0.9,2,2C6,16.1,5.1,17,4,17z M20,17c-1.1,0-2-0.9-2-2 c0-1.1,0.9-2,2-2s2,0.9,2,2C22,16.1,21.1,17,20,17z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,11c-0.18,0-0.36,0.03-0.53,0.05L17.41,9H20V6l-3.72,1.86L13.41,5H9v2h3.59l2,2H11l-4,2L5,9H0v2h4c-2.21,0-4,1.79-4,4 c0,2.21,1.79,4,4,4c2.21,0,4-1.79,4-4l2,2h3l3.49-6.1l1.01,1.01C16.59,12.64,16,13.75,16,15c0,2.21,1.79,4,4,4c2.21,0,4-1.79,4-4 C24,12.79,22.21,11,20,11z M4,17c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2c1.1,0,2,0.9,2,2C6,16.1,5.1,17,4,17z M20,17c-1.1,0-2-0.9-2-2 c0-1.1,0.9-2,2-2s2,0.9,2,2C22,16.1,21.1,17,20,17z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_two_wheeler = ic_two_wheeler; \ No newline at end of file diff --git a/dist/md/ic_two_wheeler_outline.js b/dist/md/ic_two_wheeler_outline.js new file mode 100644 index 000000000..36847ca7c --- /dev/null +++ b/dist/md/ic_two_wheeler_outline.js @@ -0,0 +1,49 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_two_wheeler_outline = void 0; +var ic_two_wheeler_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "fill-rule": "evenodd", + "height": "24", + "width": "24", + "x": "0", + "y": "0" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "fill-rule": "evenodd", + "height": "24", + "width": "24", + "x": "0", + "y": "0" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M4.17,11L4.17,11C4.12,11,4.06,11,4,11H4.17 M13.41,5H9v2h3.59l2,2H11l-4,2L5,9H0v2h4c-2.21,0-4,1.79-4,4 c0,2.21,1.79,4,4,4c2.21,0,4-1.79,4-4l2,2h3l3.49-6.1l1.01,1.01C16.59,12.64,16,13.75,16,15c0,2.21,1.79,4,4,4c2.21,0,4-1.79,4-4 c0-2.21-1.79-4-4-4c-0.18,0-0.36,0.03-0.53,0.05L17.41,9H20V6l-3.72,1.86L13.41,5L13.41,5z M20,17c-1.1,0-2-0.9-2-2 c0-1.1,0.9-2,2-2c1.1,0,2,0.9,2,2C22,16.1,21.1,17,20,17L20,17z M4,17c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2c1.1,0,2,0.9,2,2 C6,16.1,5.1,17,4,17L4,17z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M4.17,11L4.17,11C4.12,11,4.06,11,4,11H4.17 M13.41,5H9v2h3.59l2,2H11l-4,2L5,9H0v2h4c-2.21,0-4,1.79-4,4 c0,2.21,1.79,4,4,4c2.21,0,4-1.79,4-4l2,2h3l3.49-6.1l1.01,1.01C16.59,12.64,16,13.75,16,15c0,2.21,1.79,4,4,4c2.21,0,4-1.79,4-4 c0-2.21-1.79-4-4-4c-0.18,0-0.36,0.03-0.53,0.05L17.41,9H20V6l-3.72,1.86L13.41,5L13.41,5z M20,17c-1.1,0-2-0.9-2-2 c0-1.1,0.9-2,2-2c1.1,0,2,0.9,2,2C22,16.1,21.1,17,20,17L20,17z M4,17c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2c1.1,0,2,0.9,2,2 C6,16.1,5.1,17,4,17L4,17z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_two_wheeler_outline = ic_two_wheeler_outline; \ No newline at end of file diff --git a/dist/md/ic_two_wheeler_twotone.js b/dist/md/ic_two_wheeler_twotone.js new file mode 100644 index 000000000..c1ec21307 --- /dev/null +++ b/dist/md/ic_two_wheeler_twotone.js @@ -0,0 +1,49 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_two_wheeler_twotone = void 0; +var ic_two_wheeler_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "fill-rule": "evenodd", + "height": "24", + "width": "24", + "x": "0", + "y": "0" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "fill-rule": "evenodd", + "height": "24", + "width": "24", + "x": "0", + "y": "0" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M4.17,11L4.17,11C4.12,11,4.06,11,4,11H4.17 M13.41,5H9v2h3.59l2,2H11l-4,2L5,9H0v2h4c-2.21,0-4,1.79-4,4 c0,2.21,1.79,4,4,4c2.21,0,4-1.79,4-4l2,2h3l3.49-6.1l1.01,1.01C16.59,12.64,16,13.75,16,15c0,2.21,1.79,4,4,4c2.21,0,4-1.79,4-4 c0-2.21-1.79-4-4-4c-0.18,0-0.36,0.03-0.53,0.05L17.41,9H20V6l-3.72,1.86L13.41,5L13.41,5z M20,17c-1.1,0-2-0.9-2-2 c0-1.1,0.9-2,2-2c1.1,0,2,0.9,2,2C22,16.1,21.1,17,20,17L20,17z M4,17c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2c1.1,0,2,0.9,2,2 C6,16.1,5.1,17,4,17L4,17z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M4.17,11L4.17,11C4.12,11,4.06,11,4,11H4.17 M13.41,5H9v2h3.59l2,2H11l-4,2L5,9H0v2h4c-2.21,0-4,1.79-4,4 c0,2.21,1.79,4,4,4c2.21,0,4-1.79,4-4l2,2h3l3.49-6.1l1.01,1.01C16.59,12.64,16,13.75,16,15c0,2.21,1.79,4,4,4c2.21,0,4-1.79,4-4 c0-2.21-1.79-4-4-4c-0.18,0-0.36,0.03-0.53,0.05L17.41,9H20V6l-3.72,1.86L13.41,5L13.41,5z M20,17c-1.1,0-2-0.9-2-2 c0-1.1,0.9-2,2-2c1.1,0,2,0.9,2,2C22,16.1,21.1,17,20,17L20,17z M4,17c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2c1.1,0,2,0.9,2,2 C6,16.1,5.1,17,4,17L4,17z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_two_wheeler_twotone = ic_two_wheeler_twotone; \ No newline at end of file diff --git a/dist/md/ic_umbrella.js b/dist/md/ic_umbrella.js new file mode 100644 index 000000000..ac7b3568b --- /dev/null +++ b/dist/md/ic_umbrella.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_umbrella = void 0; +var ic_umbrella = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M14.5,6.92L13,5.77V3.88V3.4c0-0.26,0.22-0.48,0.5-0.48c0.28,0,0.5,0.21,0.5,0.48V4h2V3.4C16,2.07,14.88,1,13.5,1 C12.12,1,11,2.07,11,3.4v0.48v1.89L9.5,6.92L6,6.07l5.05,15.25C11.2,21.77,11.6,22,12,22s0.8-0.23,0.95-0.69L18,6.07L14.5,6.92z M13.28,8.5l0.76,0.58l0.92-0.23L13,14.8V8.29L13.28,8.5z M9.96,9.09l0.76-0.58L11,8.29v6.51L9.03,8.86L9.96,9.09z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14.5,6.92L13,5.77V3.88V3.4c0-0.26,0.22-0.48,0.5-0.48c0.28,0,0.5,0.21,0.5,0.48V4h2V3.4C16,2.07,14.88,1,13.5,1 C12.12,1,11,2.07,11,3.4v0.48v1.89L9.5,6.92L6,6.07l5.05,15.25C11.2,21.77,11.6,22,12,22s0.8-0.23,0.95-0.69L18,6.07L14.5,6.92z M13.28,8.5l0.76,0.58l0.92-0.23L13,14.8V8.29L13.28,8.5z M9.96,9.09l0.76-0.58L11,8.29v6.51L9.03,8.86L9.96,9.09z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_umbrella = ic_umbrella; \ No newline at end of file diff --git a/dist/md/ic_umbrella_outline.js b/dist/md/ic_umbrella_outline.js new file mode 100644 index 000000000..692eeb5ea --- /dev/null +++ b/dist/md/ic_umbrella_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_umbrella_outline = void 0; +var ic_umbrella_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M14.5,6.92L13,5.77V3.88V3.4c0-0.26,0.22-0.48,0.5-0.48c0.28,0,0.5,0.21,0.5,0.48V4h2V3.4C16,2.07,14.88,1,13.5,1 C12.12,1,11,2.07,11,3.4v0.48v1.89L9.5,6.92L6,6.07l5.05,15.25C11.2,21.77,11.6,22,12,22s0.8-0.23,0.95-0.69L18,6.07L14.5,6.92z M13.28,8.5l0.76,0.58l0.92-0.23L13,14.8V8.29L13.28,8.5z M9.96,9.09l0.76-0.58L11,8.29v6.51L9.03,8.86L9.96,9.09z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14.5,6.92L13,5.77V3.88V3.4c0-0.26,0.22-0.48,0.5-0.48c0.28,0,0.5,0.21,0.5,0.48V4h2V3.4C16,2.07,14.88,1,13.5,1 C12.12,1,11,2.07,11,3.4v0.48v1.89L9.5,6.92L6,6.07l5.05,15.25C11.2,21.77,11.6,22,12,22s0.8-0.23,0.95-0.69L18,6.07L14.5,6.92z M13.28,8.5l0.76,0.58l0.92-0.23L13,14.8V8.29L13.28,8.5z M9.96,9.09l0.76-0.58L11,8.29v6.51L9.03,8.86L9.96,9.09z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_umbrella_outline = ic_umbrella_outline; \ No newline at end of file diff --git a/dist/md/ic_umbrella_twotone.js b/dist/md/ic_umbrella_twotone.js new file mode 100644 index 000000000..a1603a189 --- /dev/null +++ b/dist/md/ic_umbrella_twotone.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_umbrella_twotone = void 0; +var ic_umbrella_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M13.28,8.5l0.76,0.58l0.92-0.23L13,14.8V8.29L13.28,8.5z M9.03,8.86L11,14.8V8.29L10.72,8.5L9.96,9.09 L9.03,8.86z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M13.28,8.5l0.76,0.58l0.92-0.23L13,14.8V8.29L13.28,8.5z M9.03,8.86L11,14.8V8.29L10.72,8.5L9.96,9.09 L9.03,8.86z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M14.5,6.92L13,5.77V3.88V3.4c0-0.26,0.22-0.48,0.5-0.48c0.28,0,0.5,0.21,0.5,0.48V4h2V3.4C16,2.07,14.88,1,13.5,1 C12.12,1,11,2.07,11,3.4v0.48v1.89L9.5,6.92L6,6.07l5.05,15.25C11.2,21.77,11.6,22,12,22s0.8-0.23,0.95-0.69L18,6.07L14.5,6.92z M13.28,8.5l0.76,0.58l0.92-0.23L13,14.8V8.29L13.28,8.5z M9.96,9.09l0.76-0.58L11,8.29v6.51L9.03,8.86L9.96,9.09z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14.5,6.92L13,5.77V3.88V3.4c0-0.26,0.22-0.48,0.5-0.48c0.28,0,0.5,0.21,0.5,0.48V4h2V3.4C16,2.07,14.88,1,13.5,1 C12.12,1,11,2.07,11,3.4v0.48v1.89L9.5,6.92L6,6.07l5.05,15.25C11.2,21.77,11.6,22,12,22s0.8-0.23,0.95-0.69L18,6.07L14.5,6.92z M13.28,8.5l0.76,0.58l0.92-0.23L13,14.8V8.29L13.28,8.5z M9.96,9.09l0.76-0.58L11,8.29v6.51L9.03,8.86L9.96,9.09z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_umbrella_twotone = ic_umbrella_twotone; \ No newline at end of file diff --git a/dist/md/ic_unarchive.js b/dist/md/ic_unarchive.js new file mode 100644 index 000000000..a347c3c9c --- /dev/null +++ b/dist/md/ic_unarchive.js @@ -0,0 +1,65 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_unarchive = void 0; +var ic_unarchive = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M20.55,5.22l-1.39-1.68C18.88,3.21,18.47,3,18,3H6C5.53,3,5.12,3.21,4.85,3.55L3.46,5.22C3.17,5.57,3,6.01,3,6.5V19 c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2V6.5C21,6.01,20.83,5.57,20.55,5.22z M12,9.5l5.5,5.5H14v2h-4v-2H6.5L12,9.5z M5.12,5 l0.82-1h12l0.93,1H5.12z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20.55,5.22l-1.39-1.68C18.88,3.21,18.47,3,18,3H6C5.53,3,5.12,3.21,4.85,3.55L3.46,5.22C3.17,5.57,3,6.01,3,6.5V19 c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2V6.5C21,6.01,20.83,5.57,20.55,5.22z M12,9.5l5.5,5.5H14v2h-4v-2H6.5L12,9.5z M5.12,5 l0.82-1h12l0.93,1H5.12z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_unarchive = ic_unarchive; \ No newline at end of file diff --git a/dist/md/ic_unarchive_outline.js b/dist/md/ic_unarchive_outline.js new file mode 100644 index 000000000..4c6cd1187 --- /dev/null +++ b/dist/md/ic_unarchive_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_unarchive_outline = void 0; +var ic_unarchive_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20.54 5.23l-1.39-1.68C18.88 3.21 18.47 3 18 3H6c-.47 0-.88.21-1.16.55L3.46 5.23C3.17 5.57 3 6.02 3 6.5V19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6.5c0-.48-.17-.93-.46-1.27zM6.24 5h11.52l.83 1H5.42l.82-1zM5 19V8h14v11H5zm3-5h2.55v3h2.9v-3H16l-4-4z" + }, + "children": [] + }] +}; +exports.ic_unarchive_outline = ic_unarchive_outline; \ No newline at end of file diff --git a/dist/md/ic_unarchive_twotone.js b/dist/md/ic_unarchive_twotone.js new file mode 100644 index 000000000..4cfdc6704 --- /dev/null +++ b/dist/md/ic_unarchive_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_unarchive_twotone = void 0; +var ic_unarchive_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 19h14V8H5v11zm7-9l4 4h-2.55v3h-2.91v-3H8l4-4z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20.54 5.23l-1.39-1.68C18.88 3.21 18.47 3 18 3H6c-.47 0-.88.21-1.16.55L3.46 5.23C3.17 5.57 3 6.02 3 6.5V19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6.5c0-.48-.17-.93-.46-1.27zM6.24 5h11.52l.83 1H5.42l.82-1zM19 19H5V8h14v11zm-8.45-2h2.9v-3H16l-4-4-4 4h2.55z" + }, + "children": [] + }] +}; +exports.ic_unarchive_twotone = ic_unarchive_twotone; \ No newline at end of file diff --git a/dist/md/ic_undo.js b/dist/md/ic_undo.js new file mode 100644 index 000000000..fb31c1558 --- /dev/null +++ b/dist/md/ic_undo.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_undo = void 0; +var ic_undo = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12.5 8c-2.65 0-5.05.99-6.9 2.6L2 7v9h9l-3.62-3.62c1.39-1.16 3.16-1.88 5.12-1.88 3.54 0 6.55 2.31 7.6 5.5l2.37-.78C21.08 11.03 17.15 8 12.5 8z" + }, + "children": [] + }] +}; +exports.ic_undo = ic_undo; \ No newline at end of file diff --git a/dist/md/ic_undo_outline.js b/dist/md/ic_undo_outline.js new file mode 100644 index 000000000..1f7ce425f --- /dev/null +++ b/dist/md/ic_undo_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_undo_outline = void 0; +var ic_undo_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12.5 8c-2.65 0-5.05.99-6.9 2.6L2 7v9h9l-3.62-3.62c1.39-1.16 3.16-1.88 5.12-1.88 3.54 0 6.55 2.31 7.6 5.5l2.37-.78C21.08 11.03 17.15 8 12.5 8z" + }, + "children": [] + }] +}; +exports.ic_undo_outline = ic_undo_outline; \ No newline at end of file diff --git a/dist/md/ic_undo_twotone.js b/dist/md/ic_undo_twotone.js new file mode 100644 index 000000000..31ff1c881 --- /dev/null +++ b/dist/md/ic_undo_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_undo_twotone = void 0; +var ic_undo_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12.5 8c-2.65 0-5.05.99-6.9 2.6L2 7v9h9l-3.62-3.62c1.39-1.16 3.16-1.88 5.12-1.88 3.54 0 6.55 2.31 7.6 5.5l2.37-.78C21.08 11.03 17.15 8 12.5 8z" + }, + "children": [] + }] +}; +exports.ic_undo_twotone = ic_undo_twotone; \ No newline at end of file diff --git a/dist/md/ic_unfold_less.js b/dist/md/ic_unfold_less.js new file mode 100644 index 000000000..d201878d8 --- /dev/null +++ b/dist/md/ic_unfold_less.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_unfold_less = void 0; +var ic_unfold_less = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7.41 18.59L8.83 20 12 16.83 15.17 20l1.41-1.41L12 14l-4.59 4.59zm9.18-13.18L15.17 4 12 7.17 8.83 4 7.41 5.41 12 10l4.59-4.59z" + }, + "children": [] + }] +}; +exports.ic_unfold_less = ic_unfold_less; \ No newline at end of file diff --git a/dist/md/ic_unfold_less_outline.js b/dist/md/ic_unfold_less_outline.js new file mode 100644 index 000000000..cb6e42a4a --- /dev/null +++ b/dist/md/ic_unfold_less_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_unfold_less_outline = void 0; +var ic_unfold_less_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M24 0v24H0V0h24z", + "fill": "none", + "opacity": ".87" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7.41 18.59L8.83 20 12 16.83 15.17 20l1.41-1.41L12 14l-4.59 4.59zm9.18-13.18L15.17 4 12 7.17 8.83 4 7.41 5.41 12 10l4.59-4.59z" + }, + "children": [] + }] +}; +exports.ic_unfold_less_outline = ic_unfold_less_outline; \ No newline at end of file diff --git a/dist/md/ic_unfold_less_twotone.js b/dist/md/ic_unfold_less_twotone.js new file mode 100644 index 000000000..a4043d173 --- /dev/null +++ b/dist/md/ic_unfold_less_twotone.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_unfold_less_twotone = void 0; +var ic_unfold_less_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M24 0v24H0V0h24z", + "fill": "none", + "opacity": ".87" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7.41 18.59L8.83 20 12 16.83 15.17 20l1.41-1.41L12 14l-4.59 4.59zm9.18-13.18L15.17 4 12 7.17 8.83 4 7.41 5.41 12 10l4.59-4.59z" + }, + "children": [] + }] +}; +exports.ic_unfold_less_twotone = ic_unfold_less_twotone; \ No newline at end of file diff --git a/dist/md/ic_unfold_more.js b/dist/md/ic_unfold_more.js new file mode 100644 index 000000000..8c36be0ad --- /dev/null +++ b/dist/md/ic_unfold_more.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_unfold_more = void 0; +var ic_unfold_more = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 5.83L15.17 9l1.41-1.41L12 3 7.41 7.59 8.83 9 12 5.83zm0 12.34L8.83 15l-1.41 1.41L12 21l4.59-4.59L15.17 15 12 18.17z" + }, + "children": [] + }] +}; +exports.ic_unfold_more = ic_unfold_more; \ No newline at end of file diff --git a/dist/md/ic_unfold_more_outline.js b/dist/md/ic_unfold_more_outline.js new file mode 100644 index 000000000..dd0bf47f8 --- /dev/null +++ b/dist/md/ic_unfold_more_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_unfold_more_outline = void 0; +var ic_unfold_more_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 5.83L15.17 9l1.41-1.41L12 3 7.41 7.59 8.83 9 12 5.83zm0 12.34L8.83 15l-1.41 1.41L12 21l4.59-4.59L15.17 15 12 18.17z" + }, + "children": [] + }] +}; +exports.ic_unfold_more_outline = ic_unfold_more_outline; \ No newline at end of file diff --git a/dist/md/ic_unfold_more_twotone.js b/dist/md/ic_unfold_more_twotone.js new file mode 100644 index 000000000..b025305de --- /dev/null +++ b/dist/md/ic_unfold_more_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_unfold_more_twotone = void 0; +var ic_unfold_more_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 5.83L15.17 9l1.41-1.41L12 3 7.41 7.59 8.83 9 12 5.83zm0 12.34L8.83 15l-1.41 1.41L12 21l4.59-4.59L15.17 15 12 18.17z" + }, + "children": [] + }] +}; +exports.ic_unfold_more_twotone = ic_unfold_more_twotone; \ No newline at end of file diff --git a/dist/md/ic_unpublished.js b/dist/md/ic_unpublished.js new file mode 100644 index 000000000..298b07efa --- /dev/null +++ b/dist/md/ic_unpublished.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_unpublished = void 0; +var ic_unpublished = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21.19,21.19L2.81,2.81L1.39,4.22l2.27,2.27C2.61,8.07,2,9.96,2,12c0,5.52,4.48,10,10,10c2.04,0,3.93-0.61,5.51-1.66 l2.27,2.27L21.19,21.19z M10.59,16.6l-4.24-4.24l1.41-1.41l2.83,2.83l0.18-0.18l1.41,1.41L10.59,16.6z M13.59,10.76l-7.1-7.1 C8.07,2.61,9.96,2,12,2c5.52,0,10,4.48,10,10c0,2.04-0.61,3.93-1.66,5.51l-5.34-5.34l2.65-2.65l-1.41-1.41L13.59,10.76z" + }, + "children": [] + }] +}; +exports.ic_unpublished = ic_unpublished; \ No newline at end of file diff --git a/dist/md/ic_unpublished_outline.js b/dist/md/ic_unpublished_outline.js new file mode 100644 index 000000000..20f9785c2 --- /dev/null +++ b/dist/md/ic_unpublished_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_unpublished_outline = void 0; +var ic_unpublished_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7.94,5.12L6.49,3.66C8.07,2.61,9.96,2,12,2c5.52,0,10,4.48,10,10c0,2.04-0.61,3.93-1.66,5.51l-1.46-1.46 C19.59,14.86,20,13.48,20,12c0-4.41-3.59-8-8-8C10.52,4,9.14,4.41,7.94,5.12z M17.66,9.53l-1.41-1.41l-2.65,2.65l1.41,1.41 L17.66,9.53z M19.78,22.61l-2.27-2.27C15.93,21.39,14.04,22,12,22C6.48,22,2,17.52,2,12c0-2.04,0.61-3.93,1.66-5.51L1.39,4.22 l1.41-1.41l18.38,18.38L19.78,22.61z M16.06,18.88l-3.88-3.88l-1.59,1.59l-4.24-4.24l1.41-1.41l2.83,2.83l0.18-0.18L5.12,7.94 C4.41,9.14,4,10.52,4,12c0,4.41,3.59,8,8,8C13.48,20,14.86,19.59,16.06,18.88z" + }, + "children": [] + }] +}; +exports.ic_unpublished_outline = ic_unpublished_outline; \ No newline at end of file diff --git a/dist/md/ic_unpublished_twotone.js b/dist/md/ic_unpublished_twotone.js new file mode 100644 index 000000000..6bfbf5199 --- /dev/null +++ b/dist/md/ic_unpublished_twotone.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_unpublished_twotone = void 0; +var ic_unpublished_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13.59,10.76l2.65-2.65l1.41,1.41l-2.65,2.65l3.88,3.88C19.59,14.86,20,13.48,20,12c0-4.41-3.59-8-8-8 c-1.48,0-2.86,0.41-4.06,1.12L13.59,10.76z M17.66,9.53l-1.41-1.41l-2.65,2.65l1.41,1.41L17.66,9.53z M16.06,18.88l-3.88-3.88 l-1.59,1.59l-4.24-4.24l1.41-1.41l2.83,2.83l0.18-0.18L5.12,7.94C4.41,9.14,4,10.52,4,12c0,4.41,3.59,8,8,8 C13.48,20,14.86,19.59,16.06,18.88z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7.94,5.12L6.49,3.66C8.07,2.61,9.96,2,12,2c5.52,0,10,4.48,10,10c0,2.04-0.61,3.93-1.66,5.51l-1.46-1.46 C19.59,14.86,20,13.48,20,12c0-4.41-3.59-8-8-8C10.52,4,9.14,4.41,7.94,5.12z M17.66,9.53l-1.41-1.41l-2.65,2.65l1.41,1.41 L17.66,9.53z M19.78,22.61l-2.27-2.27C15.93,21.39,14.04,22,12,22C6.48,22,2,17.52,2,12c0-2.04,0.61-3.93,1.66-5.51L1.39,4.22 l1.41-1.41l18.38,18.38L19.78,22.61z M16.06,18.88l-3.88-3.88l-1.59,1.59l-4.24-4.24l1.41-1.41l2.83,2.83l0.18-0.18L5.12,7.94 C4.41,9.14,4,10.52,4,12c0,4.41,3.59,8,8,8C13.48,20,14.86,19.59,16.06,18.88z" + }, + "children": [] + }] +}; +exports.ic_unpublished_twotone = ic_unpublished_twotone; \ No newline at end of file diff --git a/dist/md/ic_unsubscribe.js b/dist/md/ic_unsubscribe.js new file mode 100644 index 000000000..8e9a7c2e4 --- /dev/null +++ b/dist/md/ic_unsubscribe.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_unsubscribe = void 0; +var ic_unsubscribe = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.5 13c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm2 4h-4v-1h4v1zm-6.95 0c-.02-.17-.05-.33-.05-.5 0-2.76 2.24-5 5-5 .92 0 1.76.26 2.5.69V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h8.55zM12 10.5L5 7V5l7 3.5L19 5v2l-7 3.5z" + }, + "children": [] + }] +}; +exports.ic_unsubscribe = ic_unsubscribe; \ No newline at end of file diff --git a/dist/md/ic_unsubscribe_outline.js b/dist/md/ic_unsubscribe_outline.js new file mode 100644 index 000000000..49b9334ac --- /dev/null +++ b/dist/md/ic_unsubscribe_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_unsubscribe_outline = void 0; +var ic_unsubscribe_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20.99 14.04V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h10.05c.28 1.92 2.1 3.35 4.18 2.93 1.34-.27 2.43-1.37 2.7-2.71.25-1.24-.16-2.39-.94-3.18zm-2-9.04L12 8.5 5 5h13.99zm-3.64 10H5V7l7 3.5L19 7v6.05c-.16-.02-.33-.05-.5-.05-1.39 0-2.59.82-3.15 2zm5.15 2h-4v-1h4v1z" + }, + "children": [] + }] +}; +exports.ic_unsubscribe_outline = ic_unsubscribe_outline; \ No newline at end of file diff --git a/dist/md/ic_unsubscribe_twotone.js b/dist/md/ic_unsubscribe_twotone.js new file mode 100644 index 000000000..31881268b --- /dev/null +++ b/dist/md/ic_unsubscribe_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_unsubscribe_twotone = void 0; +var ic_unsubscribe_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18.99 5H5l7 3.5zm.01 8.05V7l-7 3.5L5 7v8h10.35c.56-1.18 1.76-2 3.15-2 .17 0 .34.03.5.05z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20.99 14.04V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h10.05c.28 1.92 2.1 3.35 4.18 2.93 1.34-.27 2.43-1.37 2.7-2.71.25-1.24-.16-2.39-.94-3.18zm-2-9.04L12 8.5 5 5h13.99zm-3.64 10H5V7l7 3.5L19 7v6.05c-.16-.02-.33-.05-.5-.05-1.39 0-2.59.82-3.15 2zm5.15 2h-4v-1h4v1z" + }, + "children": [] + }] +}; +exports.ic_unsubscribe_twotone = ic_unsubscribe_twotone; \ No newline at end of file diff --git a/dist/md/ic_update.js b/dist/md/ic_update.js new file mode 100644 index 000000000..559343932 --- /dev/null +++ b/dist/md/ic_update.js @@ -0,0 +1,65 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_update = void 0; +var ic_update = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M21,10.12h-6.78l2.74-2.82c-2.73-2.7-7.15-2.8-9.88-0.1c-2.73,2.71-2.73,7.08,0,9.79s7.15,2.71,9.88,0 C18.32,15.65,19,14.08,19,12.1h2c0,1.98-0.88,4.55-2.64,6.29c-3.51,3.48-9.21,3.48-12.72,0c-3.5-3.47-3.53-9.11-0.02-12.58 s9.14-3.47,12.65,0L21,3V10.12z M12.5,8v4.25l3.5,2.08l-0.72,1.21L11,13V8H12.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21,10.12h-6.78l2.74-2.82c-2.73-2.7-7.15-2.8-9.88-0.1c-2.73,2.71-2.73,7.08,0,9.79s7.15,2.71,9.88,0 C18.32,15.65,19,14.08,19,12.1h2c0,1.98-0.88,4.55-2.64,6.29c-3.51,3.48-9.21,3.48-12.72,0c-3.5-3.47-3.53-9.11-0.02-12.58 s9.14-3.47,12.65,0L21,3V10.12z M12.5,8v4.25l3.5,2.08l-0.72,1.21L11,13V8H12.5z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_update = ic_update; \ No newline at end of file diff --git a/dist/md/ic_update_outline.js b/dist/md/ic_update_outline.js new file mode 100644 index 000000000..4a90f916c --- /dev/null +++ b/dist/md/ic_update_outline.js @@ -0,0 +1,55 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_update_outline = void 0; +var ic_update_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M11,8v5l4.25,2.52l0.77-1.28l-3.52-2.09V8H11z M21,10V3l-2.64,2.64C16.74,4.01,14.49,3,12,3c-4.97,0-9,4.03-9,9 s4.03,9,9,9s9-4.03,9-9h-2c0,3.86-3.14,7-7,7s-7-3.14-7-7s3.14-7,7-7c1.93,0,3.68,0.79,4.95,2.05L14,10H21z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M11,8v5l4.25,2.52l0.77-1.28l-3.52-2.09V8H11z M21,10V3l-2.64,2.64C16.74,4.01,14.49,3,12,3c-4.97,0-9,4.03-9,9 s4.03,9,9,9s9-4.03,9-9h-2c0,3.86-3.14,7-7,7s-7-3.14-7-7s3.14-7,7-7c1.93,0,3.68,0.79,4.95,2.05L14,10H21z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_update_outline = ic_update_outline; \ No newline at end of file diff --git a/dist/md/ic_update_twotone.js b/dist/md/ic_update_twotone.js new file mode 100644 index 000000000..ee39a78cc --- /dev/null +++ b/dist/md/ic_update_twotone.js @@ -0,0 +1,55 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_update_twotone = void 0; +var ic_update_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M11,8v5l4.25,2.52l0.77-1.28l-3.52-2.09V8H11z M21,10V3l-2.64,2.64C16.74,4.01,14.49,3,12,3c-4.97,0-9,4.03-9,9 s4.03,9,9,9s9-4.03,9-9h-2c0,3.86-3.14,7-7,7s-7-3.14-7-7s3.14-7,7-7c1.93,0,3.68,0.79,4.95,2.05L14,10H21z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M11,8v5l4.25,2.52l0.77-1.28l-3.52-2.09V8H11z M21,10V3l-2.64,2.64C16.74,4.01,14.49,3,12,3c-4.97,0-9,4.03-9,9 s4.03,9,9,9s9-4.03,9-9h-2c0,3.86-3.14,7-7,7s-7-3.14-7-7s3.14-7,7-7c1.93,0,3.68,0.79,4.95,2.05L14,10H21z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_update_twotone = ic_update_twotone; \ No newline at end of file diff --git a/dist/md/ic_upgrade.js b/dist/md/ic_upgrade.js new file mode 100644 index 000000000..5aaf57b20 --- /dev/null +++ b/dist/md/ic_upgrade.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_upgrade = void 0; +var ic_upgrade = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M16,18v2H8v-2H16z M11,7.99V16h2V7.99h3L12,4L8,7.99H11z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M16,18v2H8v-2H16z M11,7.99V16h2V7.99h3L12,4L8,7.99H11z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_upgrade = ic_upgrade; \ No newline at end of file diff --git a/dist/md/ic_upgrade_outline.js b/dist/md/ic_upgrade_outline.js new file mode 100644 index 000000000..735a34414 --- /dev/null +++ b/dist/md/ic_upgrade_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_upgrade_outline = void 0; +var ic_upgrade_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M16,18v2H8v-2H16z M11,7.99V16h2V7.99h3L12,4L8,7.99H11z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M16,18v2H8v-2H16z M11,7.99V16h2V7.99h3L12,4L8,7.99H11z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_upgrade_outline = ic_upgrade_outline; \ No newline at end of file diff --git a/dist/md/ic_upgrade_twotone.js b/dist/md/ic_upgrade_twotone.js new file mode 100644 index 000000000..83e900431 --- /dev/null +++ b/dist/md/ic_upgrade_twotone.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_upgrade_twotone = void 0; +var ic_upgrade_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M16,18v2H8v-2H16z M11,7.99V16h2V7.99h3L12,4L8,7.99H11z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M16,18v2H8v-2H16z M11,7.99V16h2V7.99h3L12,4L8,7.99H11z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_upgrade_twotone = ic_upgrade_twotone; \ No newline at end of file diff --git a/dist/md/ic_upload_file.js b/dist/md/ic_upload_file.js new file mode 100644 index 000000000..51614db04 --- /dev/null +++ b/dist/md/ic_upload_file.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_upload_file = void 0; +var ic_upload_file = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm4 18H6V4h7v5h5v11zM8 15.01l1.41 1.41L11 14.84V19h2v-4.16l1.59 1.59L16 15.01 12.01 11z" + }, + "children": [] + }] +}; +exports.ic_upload_file = ic_upload_file; \ No newline at end of file diff --git a/dist/md/ic_upload_outline.js b/dist/md/ic_upload_outline.js new file mode 100644 index 000000000..348963486 --- /dev/null +++ b/dist/md/ic_upload_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_upload_outline = void 0; +var ic_upload_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 16h6v-6h4l-7-7-7 7h4v6zm3-10.17L14.17 8H13v6h-2V8H9.83L12 5.83zM5 18h14v2H5z" + }, + "children": [] + }] +}; +exports.ic_upload_outline = ic_upload_outline; \ No newline at end of file diff --git a/dist/md/ic_upload_twotone.js b/dist/md/ic_upload_twotone.js new file mode 100644 index 000000000..5bd4b14a7 --- /dev/null +++ b/dist/md/ic_upload_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_upload_twotone = void 0; +var ic_upload_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9.83 8H11v6h2V8h1.17L12 5.83z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 3l-7 7h4v6h6v-6h4l-7-7zm1 5v6h-2V8H9.83L12 5.83 14.17 8H13zM5 18h14v2H5z" + }, + "children": [] + }] +}; +exports.ic_upload_twotone = ic_upload_twotone; \ No newline at end of file diff --git a/dist/md/ic_usb.js b/dist/md/ic_usb.js new file mode 100644 index 000000000..9a22d5661 --- /dev/null +++ b/dist/md/ic_usb.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_usb = void 0; +var ic_usb = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 7v4h1v2h-3V5h2l-3-4-3 4h2v8H8v-2.07c.7-.37 1.2-1.08 1.2-1.93 0-1.21-.99-2.2-2.2-2.2-1.21 0-2.2.99-2.2 2.2 0 .85.5 1.56 1.2 1.93V13c0 1.11.89 2 2 2h3v3.05c-.71.37-1.2 1.1-1.2 1.95 0 1.22.99 2.2 2.2 2.2 1.21 0 2.2-.98 2.2-2.2 0-.85-.49-1.58-1.2-1.95V15h3c1.11 0 2-.89 2-2v-2h1V7h-4z" + }, + "children": [] + }] +}; +exports.ic_usb = ic_usb; \ No newline at end of file diff --git a/dist/md/ic_usb_outline.js b/dist/md/ic_usb_outline.js new file mode 100644 index 000000000..015887309 --- /dev/null +++ b/dist/md/ic_usb_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_usb_outline = void 0; +var ic_usb_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 7v4h1v2h-3V5h2l-3-4-3 4h2v8H8v-2.07c.7-.37 1.2-1.08 1.2-1.93 0-1.21-.99-2.2-2.2-2.2S4.8 7.79 4.8 9c0 .85.5 1.56 1.2 1.93V13c0 1.11.89 2 2 2h3v3.05c-.71.37-1.2 1.1-1.2 1.95 0 1.22.99 2.2 2.2 2.2s2.2-.98 2.2-2.2c0-.85-.49-1.58-1.2-1.95V15h3c1.11 0 2-.89 2-2v-2h1V7h-4z" + }, + "children": [] + }] +}; +exports.ic_usb_outline = ic_usb_outline; \ No newline at end of file diff --git a/dist/md/ic_usb_twotone.js b/dist/md/ic_usb_twotone.js new file mode 100644 index 000000000..140ee19bc --- /dev/null +++ b/dist/md/ic_usb_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_usb_twotone = void 0; +var ic_usb_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 7v4h1v2h-3V5h2l-3-4-3 4h2v8H8v-2.07c.7-.37 1.2-1.08 1.2-1.93 0-1.21-.99-2.2-2.2-2.2S4.8 7.79 4.8 9c0 .85.5 1.56 1.2 1.93V13c0 1.11.89 2 2 2h3v3.05c-.71.37-1.2 1.1-1.2 1.95 0 1.22.99 2.2 2.2 2.2s2.2-.98 2.2-2.2c0-.85-.49-1.58-1.2-1.95V15h3c1.11 0 2-.89 2-2v-2h1V7h-4z" + }, + "children": [] + }] +}; +exports.ic_usb_twotone = ic_usb_twotone; \ No newline at end of file diff --git a/dist/md/ic_verified.js b/dist/md/ic_verified.js new file mode 100644 index 000000000..06afd8d67 --- /dev/null +++ b/dist/md/ic_verified.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_verified = void 0; +var ic_verified = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M23,12l-2.44-2.79l0.34-3.69l-3.61-0.82L15.4,1.5L12,2.96L8.6,1.5L6.71,4.69L3.1,5.5L3.44,9.2L1,12l2.44,2.79l-0.34,3.7 l3.61,0.82L8.6,22.5l3.4-1.47l3.4,1.46l1.89-3.19l3.61-0.82l-0.34-3.69L23,12z M10.09,16.72l-3.8-3.81l1.48-1.48l2.32,2.33 l5.85-5.87l1.48,1.48L10.09,16.72z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M23,12l-2.44-2.79l0.34-3.69l-3.61-0.82L15.4,1.5L12,2.96L8.6,1.5L6.71,4.69L3.1,5.5L3.44,9.2L1,12l2.44,2.79l-0.34,3.7 l3.61,0.82L8.6,22.5l3.4-1.47l3.4,1.46l1.89-3.19l3.61-0.82l-0.34-3.69L23,12z M10.09,16.72l-3.8-3.81l1.48-1.48l2.32,2.33 l5.85-5.87l1.48,1.48L10.09,16.72z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_verified = ic_verified; \ No newline at end of file diff --git a/dist/md/ic_verified_outline.js b/dist/md/ic_verified_outline.js new file mode 100644 index 000000000..76a564f72 --- /dev/null +++ b/dist/md/ic_verified_outline.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_verified_outline = void 0; +var ic_verified_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M23,11.99l-2.44-2.79l0.34-3.69l-3.61-0.82L15.4,1.5L12,2.96L8.6,1.5L6.71,4.69L3.1,5.5L3.44,9.2L1,11.99l2.44,2.79 l-0.34,3.7l3.61,0.82L8.6,22.5l3.4-1.47l3.4,1.46l1.89-3.19l3.61-0.82l-0.34-3.69L23,11.99z M19.05,13.47l-0.56,0.65l0.08,0.85 l0.18,1.95l-1.9,0.43l-0.84,0.19l-0.44,0.74l-0.99,1.68l-1.78-0.77L12,18.85l-0.79,0.34l-1.78,0.77l-0.99-1.67l-0.44-0.74 l-0.84-0.19l-1.9-0.43l0.18-1.96l0.08-0.85l-0.56-0.65l-1.29-1.47l1.29-1.48l0.56-0.65L5.43,9.01L5.25,7.07l1.9-0.43l0.84-0.19 l0.44-0.74l0.99-1.68l1.78,0.77L12,5.14l0.79-0.34l1.78-0.77l0.99,1.68l0.44,0.74l0.84,0.19l1.9,0.43l-0.18,1.95l-0.08,0.85 l0.56,0.65l1.29,1.47L19.05,13.47z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M23,11.99l-2.44-2.79l0.34-3.69l-3.61-0.82L15.4,1.5L12,2.96L8.6,1.5L6.71,4.69L3.1,5.5L3.44,9.2L1,11.99l2.44,2.79 l-0.34,3.7l3.61,0.82L8.6,22.5l3.4-1.47l3.4,1.46l1.89-3.19l3.61-0.82l-0.34-3.69L23,11.99z M19.05,13.47l-0.56,0.65l0.08,0.85 l0.18,1.95l-1.9,0.43l-0.84,0.19l-0.44,0.74l-0.99,1.68l-1.78-0.77L12,18.85l-0.79,0.34l-1.78,0.77l-0.99-1.67l-0.44-0.74 l-0.84-0.19l-1.9-0.43l0.18-1.96l0.08-0.85l-0.56-0.65l-1.29-1.47l1.29-1.48l0.56-0.65L5.43,9.01L5.25,7.07l1.9-0.43l0.84-0.19 l0.44-0.74l0.99-1.68l1.78,0.77L12,5.14l0.79-0.34l1.78-0.77l0.99,1.68l0.44,0.74l0.84,0.19l1.9,0.43l-0.18,1.95l-0.08,0.85 l0.56,0.65l1.29,1.47L19.05,13.47z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "10.09,13.75 7.77,11.42 6.29,12.91 10.09,16.72 17.43,9.36 15.95,7.87" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "10.09,13.75 7.77,11.42 6.29,12.91 10.09,16.72 17.43,9.36 15.95,7.87" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_verified_outline = ic_verified_outline; \ No newline at end of file diff --git a/dist/md/ic_verified_twotone.js b/dist/md/ic_verified_twotone.js new file mode 100644 index 000000000..4b2170764 --- /dev/null +++ b/dist/md/ic_verified_twotone.js @@ -0,0 +1,81 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_verified_twotone = void 0; +var ic_verified_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M18.49,9.88l0.08-0.85l0.18-1.95l-1.9-0.43l-0.84-0.19l-0.44-0.74l-0.99-1.68L12.79,4.8L12,5.14L11.21,4.8 L9.42,4.03L8.43,5.71L7.99,6.45L7.15,6.64l-1.9,0.43l0.18,1.94l0.08,0.85l-0.56,0.65l-1.29,1.48l1.29,1.47l0.56,0.65l-0.08,0.85 l-0.18,1.96l1.9,0.43l0.84,0.19l0.44,0.74l0.99,1.67l1.78-0.77L12,18.85l0.79,0.34l1.78,0.77l0.99-1.68l0.44-0.74l0.84-0.19 l1.9-0.43l-0.18-1.95l-0.08-0.85l0.56-0.65l1.29-1.47l-1.29-1.47L18.49,9.88z M10.09,16.72l-3.8-3.81l1.48-1.48l2.32,2.33 l5.85-5.87l1.48,1.48L10.09,16.72z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18.49,9.88l0.08-0.85l0.18-1.95l-1.9-0.43l-0.84-0.19l-0.44-0.74l-0.99-1.68L12.79,4.8L12,5.14L11.21,4.8 L9.42,4.03L8.43,5.71L7.99,6.45L7.15,6.64l-1.9,0.43l0.18,1.94l0.08,0.85l-0.56,0.65l-1.29,1.48l1.29,1.47l0.56,0.65l-0.08,0.85 l-0.18,1.96l1.9,0.43l0.84,0.19l0.44,0.74l0.99,1.67l1.78-0.77L12,18.85l0.79,0.34l1.78,0.77l0.99-1.68l0.44-0.74l0.84-0.19 l1.9-0.43l-0.18-1.95l-0.08-0.85l0.56-0.65l1.29-1.47l-1.29-1.47L18.49,9.88z M10.09,16.72l-3.8-3.81l1.48-1.48l2.32,2.33 l5.85-5.87l1.48,1.48L10.09,16.72z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M23,11.99l-2.44-2.79l0.34-3.69l-3.61-0.82L15.4,1.5L12,2.96L8.6,1.5L6.71,4.69L3.1,5.5L3.44,9.2L1,11.99l2.44,2.79 l-0.34,3.7l3.61,0.82L8.6,22.5l3.4-1.47l3.4,1.46l1.89-3.19l3.61-0.82l-0.34-3.69L23,11.99z M19.05,13.47l-0.56,0.65l0.08,0.85 l0.18,1.95l-1.9,0.43l-0.84,0.19l-0.44,0.74l-0.99,1.68l-1.78-0.77L12,18.85l-0.79,0.34l-1.78,0.77l-0.99-1.67l-0.44-0.74 l-0.84-0.19l-1.9-0.43l0.18-1.96l0.08-0.85l-0.56-0.65l-1.29-1.47l1.29-1.48l0.56-0.65L5.43,9.01L5.25,7.07l1.9-0.43l0.84-0.19 l0.44-0.74l0.99-1.68l1.78,0.77L12,5.14l0.79-0.34l1.78-0.77l0.99,1.68l0.44,0.74l0.84,0.19l1.9,0.43l-0.18,1.95l-0.08,0.85 l0.56,0.65l1.29,1.47L19.05,13.47z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M23,11.99l-2.44-2.79l0.34-3.69l-3.61-0.82L15.4,1.5L12,2.96L8.6,1.5L6.71,4.69L3.1,5.5L3.44,9.2L1,11.99l2.44,2.79 l-0.34,3.7l3.61,0.82L8.6,22.5l3.4-1.47l3.4,1.46l1.89-3.19l3.61-0.82l-0.34-3.69L23,11.99z M19.05,13.47l-0.56,0.65l0.08,0.85 l0.18,1.95l-1.9,0.43l-0.84,0.19l-0.44,0.74l-0.99,1.68l-1.78-0.77L12,18.85l-0.79,0.34l-1.78,0.77l-0.99-1.67l-0.44-0.74 l-0.84-0.19l-1.9-0.43l0.18-1.96l0.08-0.85l-0.56-0.65l-1.29-1.47l1.29-1.48l0.56-0.65L5.43,9.01L5.25,7.07l1.9-0.43l0.84-0.19 l0.44-0.74l0.99-1.68l1.78,0.77L12,5.14l0.79-0.34l1.78-0.77l0.99,1.68l0.44,0.74l0.84,0.19l1.9,0.43l-0.18,1.95l-0.08,0.85 l0.56,0.65l1.29,1.47L19.05,13.47z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "10.09,13.75 7.77,11.42 6.29,12.91 10.09,16.72 17.43,9.36 15.95,7.87" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "10.09,13.75 7.77,11.42 6.29,12.91 10.09,16.72 17.43,9.36 15.95,7.87" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_verified_twotone = ic_verified_twotone; \ No newline at end of file diff --git a/dist/md/ic_verified_user.js b/dist/md/ic_verified_user.js new file mode 100644 index 000000000..69ac59217 --- /dev/null +++ b/dist/md/ic_verified_user.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_verified_user = void 0; +var ic_verified_user = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm-2 16l-4-4 1.41-1.41L10 14.17l6.59-6.59L18 9l-8 8z" + }, + "children": [] + }] +}; +exports.ic_verified_user = ic_verified_user; \ No newline at end of file diff --git a/dist/md/ic_verified_user_outline.js b/dist/md/ic_verified_user_outline.js new file mode 100644 index 000000000..e0f9c5b0e --- /dev/null +++ b/dist/md/ic_verified_user_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_verified_user_outline = void 0; +var ic_verified_user_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm7 10c0 4.52-2.98 8.69-7 9.93-4.02-1.24-7-5.41-7-9.93V6.3l7-3.11 7 3.11V11zm-11.59.59L6 13l4 4 8-8-1.41-1.42L10 14.17z" + }, + "children": [] + }] +}; +exports.ic_verified_user_outline = ic_verified_user_outline; \ No newline at end of file diff --git a/dist/md/ic_verified_user_twotone.js b/dist/md/ic_verified_user_twotone.js new file mode 100644 index 000000000..e24c0a0ad --- /dev/null +++ b/dist/md/ic_verified_user_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_verified_user_twotone = void 0; +var ic_verified_user_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm7 10c0 4.52-2.98 8.69-7 9.93-4.02-1.24-7-5.41-7-9.93V6.3l7-3.11 7 3.11V11zm-11.59.59L6 13l4 4 8-8-1.41-1.42L10 14.17z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 6.3V11c0 4.52 2.98 8.69 7 9.93 4.02-1.23 7-5.41 7-9.93V6.3l-7-3.11L5 6.3zM18 9l-8 8-4-4 1.41-1.41L10 14.17l6.59-6.59L18 9z", + "opacity": ".3" + }, + "children": [] + }] +}; +exports.ic_verified_user_twotone = ic_verified_user_twotone; \ No newline at end of file diff --git a/dist/md/ic_vertical_align_bottom.js b/dist/md/ic_vertical_align_bottom.js new file mode 100644 index 000000000..2997577fd --- /dev/null +++ b/dist/md/ic_vertical_align_bottom.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_vertical_align_bottom = void 0; +var ic_vertical_align_bottom = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 13h-3V3h-2v10H8l4 4 4-4zM4 19v2h16v-2H4z" + }, + "children": [] + }] +}; +exports.ic_vertical_align_bottom = ic_vertical_align_bottom; \ No newline at end of file diff --git a/dist/md/ic_vertical_align_bottom_outline.js b/dist/md/ic_vertical_align_bottom_outline.js new file mode 100644 index 000000000..1a2dc5103 --- /dev/null +++ b/dist/md/ic_vertical_align_bottom_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_vertical_align_bottom_outline = void 0; +var ic_vertical_align_bottom_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 13h-3V3h-2v10H8l4 4 4-4zM4 19v2h16v-2H4z" + }, + "children": [] + }] +}; +exports.ic_vertical_align_bottom_outline = ic_vertical_align_bottom_outline; \ No newline at end of file diff --git a/dist/md/ic_vertical_align_bottom_twotone.js b/dist/md/ic_vertical_align_bottom_twotone.js new file mode 100644 index 000000000..1ad0bac37 --- /dev/null +++ b/dist/md/ic_vertical_align_bottom_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_vertical_align_bottom_twotone = void 0; +var ic_vertical_align_bottom_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 3v10H8l4 4 4-4h-3V3zM4 19h16v2H4z" + }, + "children": [] + }] +}; +exports.ic_vertical_align_bottom_twotone = ic_vertical_align_bottom_twotone; \ No newline at end of file diff --git a/dist/md/ic_vertical_align_center.js b/dist/md/ic_vertical_align_center.js new file mode 100644 index 000000000..1c89b2a69 --- /dev/null +++ b/dist/md/ic_vertical_align_center.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_vertical_align_center = void 0; +var ic_vertical_align_center = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8 19h3v4h2v-4h3l-4-4-4 4zm8-14h-3V1h-2v4H8l4 4 4-4zM4 11v2h16v-2H4z" + }, + "children": [] + }] +}; +exports.ic_vertical_align_center = ic_vertical_align_center; \ No newline at end of file diff --git a/dist/md/ic_vertical_align_center_outline.js b/dist/md/ic_vertical_align_center_outline.js new file mode 100644 index 000000000..bb8de3145 --- /dev/null +++ b/dist/md/ic_vertical_align_center_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_vertical_align_center_outline = void 0; +var ic_vertical_align_center_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8 19h3v4h2v-4h3l-4-4-4 4zm8-14h-3V1h-2v4H8l4 4 4-4zM4 11v2h16v-2H4z" + }, + "children": [] + }] +}; +exports.ic_vertical_align_center_outline = ic_vertical_align_center_outline; \ No newline at end of file diff --git a/dist/md/ic_vertical_align_center_twotone.js b/dist/md/ic_vertical_align_center_twotone.js new file mode 100644 index 000000000..1a0873d49 --- /dev/null +++ b/dist/md/ic_vertical_align_center_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_vertical_align_center_twotone = void 0; +var ic_vertical_align_center_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 1v4H8l4 4 4-4h-3V1zM4 11h16v2H4zm4 8h3v4h2v-4h3l-4-4z" + }, + "children": [] + }] +}; +exports.ic_vertical_align_center_twotone = ic_vertical_align_center_twotone; \ No newline at end of file diff --git a/dist/md/ic_vertical_align_top.js b/dist/md/ic_vertical_align_top.js new file mode 100644 index 000000000..2daa58cf6 --- /dev/null +++ b/dist/md/ic_vertical_align_top.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_vertical_align_top = void 0; +var ic_vertical_align_top = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8 11h3v10h2V11h3l-4-4-4 4zM4 3v2h16V3H4z" + }, + "children": [] + }] +}; +exports.ic_vertical_align_top = ic_vertical_align_top; \ No newline at end of file diff --git a/dist/md/ic_vertical_align_top_outline.js b/dist/md/ic_vertical_align_top_outline.js new file mode 100644 index 000000000..f898e025a --- /dev/null +++ b/dist/md/ic_vertical_align_top_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_vertical_align_top_outline = void 0; +var ic_vertical_align_top_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8 11h3v10h2V11h3l-4-4-4 4zM4 3v2h16V3H4z" + }, + "children": [] + }] +}; +exports.ic_vertical_align_top_outline = ic_vertical_align_top_outline; \ No newline at end of file diff --git a/dist/md/ic_vertical_align_top_twotone.js b/dist/md/ic_vertical_align_top_twotone.js new file mode 100644 index 000000000..8257d1941 --- /dev/null +++ b/dist/md/ic_vertical_align_top_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_vertical_align_top_twotone = void 0; +var ic_vertical_align_top_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 3h16v2H4zm4 8h3v10h2V11h3l-4-4z" + }, + "children": [] + }] +}; +exports.ic_vertical_align_top_twotone = ic_vertical_align_top_twotone; \ No newline at end of file diff --git a/dist/md/ic_vertical_split.js b/dist/md/ic_vertical_split.js new file mode 100644 index 000000000..c72814a5e --- /dev/null +++ b/dist/md/ic_vertical_split.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_vertical_split = void 0; +var ic_vertical_split = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 15h8v-2H3v2zm0 4h8v-2H3v2zm0-8h8V9H3v2zm0-6v2h8V5H3zm10 0h8v14h-8V5z" + }, + "children": [] + }] +}; +exports.ic_vertical_split = ic_vertical_split; \ No newline at end of file diff --git a/dist/md/ic_vertical_split_outline.js b/dist/md/ic_vertical_split_outline.js new file mode 100644 index 000000000..3683488d8 --- /dev/null +++ b/dist/md/ic_vertical_split_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_vertical_split_outline = void 0; +var ic_vertical_split_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 13h8v2H3zm0 4h8v2H3zm0-8h8v2H3zm0-4h8v2H3zm16 2v10h-4V7h4m2-2h-8v14h8V5z" + }, + "children": [] + }] +}; +exports.ic_vertical_split_outline = ic_vertical_split_outline; \ No newline at end of file diff --git a/dist/md/ic_vertical_split_twotone.js b/dist/md/ic_vertical_split_twotone.js new file mode 100644 index 000000000..3e931c7db --- /dev/null +++ b/dist/md/ic_vertical_split_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_vertical_split_twotone = void 0; +var ic_vertical_split_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 7h4v10h-4z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 13h8v2H3zm0 4h8v2H3zm0-8h8v2H3zm0-4h8v2H3zm10 0v14h8V5h-8zm6 12h-4V7h4v10z" + }, + "children": [] + }] +}; +exports.ic_vertical_split_twotone = ic_vertical_split_twotone; \ No newline at end of file diff --git a/dist/md/ic_vibration.js b/dist/md/ic_vibration.js new file mode 100644 index 000000000..993aebd6d --- /dev/null +++ b/dist/md/ic_vibration.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_vibration = void 0; +var ic_vibration = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M0 15h2V9H0v6zm3 2h2V7H3v10zm19-8v6h2V9h-2zm-3 8h2V7h-2v10zM16.5 3h-9C6.67 3 6 3.67 6 4.5v15c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5v-15c0-.83-.67-1.5-1.5-1.5zM16 19H8V5h8v14z" + }, + "children": [] + }] +}; +exports.ic_vibration = ic_vibration; \ No newline at end of file diff --git a/dist/md/ic_vibration_outline.js b/dist/md/ic_vibration_outline.js new file mode 100644 index 000000000..0b816ed88 --- /dev/null +++ b/dist/md/ic_vibration_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_vibration_outline = void 0; +var ic_vibration_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M0 15h2V9H0v6zm3 2h2V7H3v10zm19-8v6h2V9h-2zm-3 8h2V7h-2v10zM16.5 3h-9C6.67 3 6 3.67 6 4.5v15c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5v-15c0-.83-.67-1.5-1.5-1.5zM16 19H8V5h8v14z" + }, + "children": [] + }] +}; +exports.ic_vibration_outline = ic_vibration_outline; \ No newline at end of file diff --git a/dist/md/ic_vibration_twotone.js b/dist/md/ic_vibration_twotone.js new file mode 100644 index 000000000..418c88b5a --- /dev/null +++ b/dist/md/ic_vibration_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_vibration_twotone = void 0; +var ic_vibration_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8 5h8v14H8z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 7h2v10h-2zm3 2h2v6h-2zM0 9h2v6H0zm16.5-6h-9C6.67 3 6 3.67 6 4.5v15c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5v-15c0-.83-.67-1.5-1.5-1.5zM16 19H8V5h8v14zM3 7h2v10H3z" + }, + "children": [] + }] +}; +exports.ic_vibration_twotone = ic_vibration_twotone; \ No newline at end of file diff --git a/dist/md/ic_video_call.js b/dist/md/ic_video_call.js new file mode 100644 index 000000000..2f358ffdb --- /dev/null +++ b/dist/md/ic_video_call.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_video_call = void 0; +var ic_video_call = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 10.5V7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4zM14 13h-3v3H9v-3H6v-2h3V8h2v3h3v2z" + }, + "children": [] + }] +}; +exports.ic_video_call = ic_video_call; \ No newline at end of file diff --git a/dist/md/ic_video_call_outline.js b/dist/md/ic_video_call_outline.js new file mode 100644 index 000000000..b20a7d4a8 --- /dev/null +++ b/dist/md/ic_video_call_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_video_call_outline = void 0; +var ic_video_call_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 10.5V7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4zM15 16H5V8h10v8zm-6-1h2v-2h2v-2h-2V9H9v2H7v2h2z" + }, + "children": [] + }] +}; +exports.ic_video_call_outline = ic_video_call_outline; \ No newline at end of file diff --git a/dist/md/ic_video_call_twotone.js b/dist/md/ic_video_call_twotone.js new file mode 100644 index 000000000..87537106a --- /dev/null +++ b/dist/md/ic_video_call_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_video_call_twotone = void 0; +var ic_video_call_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 16h10V8H5v8zm2-5h2V9h2v2h2v2h-2v2H9v-2H7v-2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4V7zm-2 9H5V8h10v8zm-6-1h2v-2h2v-2h-2V9H9v2H7v2h2z" + }, + "children": [] + }] +}; +exports.ic_video_call_twotone = ic_video_call_twotone; \ No newline at end of file diff --git a/dist/md/ic_video_label.js b/dist/md/ic_video_label.js new file mode 100644 index 000000000..bdb96f473 --- /dev/null +++ b/dist/md/ic_video_label.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_video_label = void 0; +var ic_video_label = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 13H3V5h18v11z" + }, + "children": [] + }] +}; +exports.ic_video_label = ic_video_label; \ No newline at end of file diff --git a/dist/md/ic_video_label_outline.js b/dist/md/ic_video_label_outline.js new file mode 100644 index 000000000..4c2a74fcf --- /dev/null +++ b/dist/md/ic_video_label_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_video_label_outline = void 0; +var ic_video_label_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 13H3V5h18v11z" + }, + "children": [] + }] +}; +exports.ic_video_label_outline = ic_video_label_outline; \ No newline at end of file diff --git a/dist/md/ic_video_label_twotone.js b/dist/md/ic_video_label_twotone.js new file mode 100644 index 000000000..6d6528917 --- /dev/null +++ b/dist/md/ic_video_label_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_video_label_twotone = void 0; +var ic_video_label_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 5h18v11H3z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 13H3V5h18v11z" + }, + "children": [] + }] +}; +exports.ic_video_label_twotone = ic_video_label_twotone; \ No newline at end of file diff --git a/dist/md/ic_video_library.js b/dist/md/ic_video_library.js new file mode 100644 index 000000000..452c2cf4d --- /dev/null +++ b/dist/md/ic_video_library.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_video_library = void 0; +var ic_video_library = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-8 12.5v-9l6 4.5-6 4.5z" + }, + "children": [] + }] +}; +exports.ic_video_library = ic_video_library; \ No newline at end of file diff --git a/dist/md/ic_video_library_outline.js b/dist/md/ic_video_library_outline.js new file mode 100644 index 000000000..607891973 --- /dev/null +++ b/dist/md/ic_video_library_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_video_library_outline = void 0; +var ic_video_library_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zM12 5.5v9l6-4.5z" + }, + "children": [] + }] +}; +exports.ic_video_library_outline = ic_video_library_outline; \ No newline at end of file diff --git a/dist/md/ic_video_library_twotone.js b/dist/md/ic_video_library_twotone.js new file mode 100644 index 000000000..7a44770b8 --- /dev/null +++ b/dist/md/ic_video_library_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_video_library_twotone = void 0; +var ic_video_library_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8 16h12V4H8v12zm4-10.5l6 4.5-6 4.5v-9z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zM12 5.5v9l6-4.5z" + }, + "children": [] + }] +}; +exports.ic_video_library_twotone = ic_video_library_twotone; \ No newline at end of file diff --git a/dist/md/ic_video_settings.js b/dist/md/ic_video_settings.js new file mode 100644 index 000000000..92d3c9fd7 --- /dev/null +++ b/dist/md/ic_video_settings.js @@ -0,0 +1,79 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_video_settings = void 0; +var ic_video_settings = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M3,6h18v5h2V6c0-1.1-0.9-2-2-2H3C1.9,4,1,4.9,1,6v12c0,1.1,0.9,2,2,2h9v-2H3V6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M3,6h18v5h2V6c0-1.1-0.9-2-2-2H3C1.9,4,1,4.9,1,6v12c0,1.1,0.9,2,2,2h9v-2H3V6z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "15,12 9,8 9,16" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "15,12 9,8 9,16" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M22.71,18.43c0.03-0.29,0.04-0.58,0.01-0.86l1.07-0.85c0.1-0.08,0.12-0.21,0.06-0.32l-1.03-1.79 c-0.06-0.11-0.19-0.15-0.31-0.11L21.23,15c-0.23-0.17-0.48-0.31-0.75-0.42l-0.2-1.36C20.26,13.09,20.16,13,20.03,13h-2.07 c-0.12,0-0.23,0.09-0.25,0.21l-0.2,1.36c-0.26,0.11-0.51,0.26-0.74,0.42l-1.28-0.5c-0.12-0.05-0.25,0-0.31,0.11l-1.03,1.79 c-0.06,0.11-0.04,0.24,0.06,0.32l1.07,0.86c-0.03,0.29-0.04,0.58-0.01,0.86l-1.07,0.85c-0.1,0.08-0.12,0.21-0.06,0.32l1.03,1.79 c0.06,0.11,0.19,0.15,0.31,0.11l1.27-0.5c0.23,0.17,0.48,0.31,0.75,0.42l0.2,1.36c0.02,0.12,0.12,0.21,0.25,0.21h2.07 c0.12,0,0.23-0.09,0.25-0.21l0.2-1.36c0.26-0.11,0.51-0.26,0.74-0.42l1.28,0.5c0.12,0.05,0.25,0,0.31-0.11l1.03-1.79 c0.06-0.11,0.04-0.24-0.06-0.32L22.71,18.43z M19,19.5c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5 S19.83,19.5,19,19.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M22.71,18.43c0.03-0.29,0.04-0.58,0.01-0.86l1.07-0.85c0.1-0.08,0.12-0.21,0.06-0.32l-1.03-1.79 c-0.06-0.11-0.19-0.15-0.31-0.11L21.23,15c-0.23-0.17-0.48-0.31-0.75-0.42l-0.2-1.36C20.26,13.09,20.16,13,20.03,13h-2.07 c-0.12,0-0.23,0.09-0.25,0.21l-0.2,1.36c-0.26,0.11-0.51,0.26-0.74,0.42l-1.28-0.5c-0.12-0.05-0.25,0-0.31,0.11l-1.03,1.79 c-0.06,0.11-0.04,0.24,0.06,0.32l1.07,0.86c-0.03,0.29-0.04,0.58-0.01,0.86l-1.07,0.85c-0.1,0.08-0.12,0.21-0.06,0.32l1.03,1.79 c0.06,0.11,0.19,0.15,0.31,0.11l1.27-0.5c0.23,0.17,0.48,0.31,0.75,0.42l0.2,1.36c0.02,0.12,0.12,0.21,0.25,0.21h2.07 c0.12,0,0.23-0.09,0.25-0.21l0.2-1.36c0.26-0.11,0.51-0.26,0.74-0.42l1.28,0.5c0.12,0.05,0.25,0,0.31-0.11l1.03-1.79 c0.06-0.11,0.04-0.24-0.06-0.32L22.71,18.43z M19,19.5c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5 S19.83,19.5,19,19.5z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_video_settings = ic_video_settings; \ No newline at end of file diff --git a/dist/md/ic_video_settings_outline.js b/dist/md/ic_video_settings_outline.js new file mode 100644 index 000000000..d38ab8b51 --- /dev/null +++ b/dist/md/ic_video_settings_outline.js @@ -0,0 +1,79 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_video_settings_outline = void 0; +var ic_video_settings_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M3,6h18v5h2V6c0-1.1-0.9-2-2-2H3C1.9,4,1,4.9,1,6v12c0,1.1,0.9,2,2,2h9v-2H3V6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M3,6h18v5h2V6c0-1.1-0.9-2-2-2H3C1.9,4,1,4.9,1,6v12c0,1.1,0.9,2,2,2h9v-2H3V6z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "15,12 9,8 9,16" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "15,12 9,8 9,16" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M22.71,18.43c0.03-0.29,0.04-0.58,0.01-0.86l1.07-0.85c0.1-0.08,0.12-0.21,0.06-0.32l-1.03-1.79 c-0.06-0.11-0.19-0.15-0.31-0.11L21.23,15c-0.23-0.17-0.48-0.31-0.75-0.42l-0.2-1.36C20.26,13.09,20.16,13,20.03,13h-2.07 c-0.12,0-0.23,0.09-0.25,0.21l-0.2,1.36c-0.26,0.11-0.51,0.26-0.74,0.42l-1.28-0.5c-0.12-0.05-0.25,0-0.31,0.11l-1.03,1.79 c-0.06,0.11-0.04,0.24,0.06,0.32l1.07,0.86c-0.03,0.29-0.04,0.58-0.01,0.86l-1.07,0.85c-0.1,0.08-0.12,0.21-0.06,0.32l1.03,1.79 c0.06,0.11,0.19,0.15,0.31,0.11l1.27-0.5c0.23,0.17,0.48,0.31,0.75,0.42l0.2,1.36c0.02,0.12,0.12,0.21,0.25,0.21h2.07 c0.12,0,0.23-0.09,0.25-0.21l0.2-1.36c0.26-0.11,0.51-0.26,0.74-0.42l1.28,0.5c0.12,0.05,0.25,0,0.31-0.11l1.03-1.79 c0.06-0.11,0.04-0.24-0.06-0.32L22.71,18.43z M19,19.5c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5 S19.83,19.5,19,19.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M22.71,18.43c0.03-0.29,0.04-0.58,0.01-0.86l1.07-0.85c0.1-0.08,0.12-0.21,0.06-0.32l-1.03-1.79 c-0.06-0.11-0.19-0.15-0.31-0.11L21.23,15c-0.23-0.17-0.48-0.31-0.75-0.42l-0.2-1.36C20.26,13.09,20.16,13,20.03,13h-2.07 c-0.12,0-0.23,0.09-0.25,0.21l-0.2,1.36c-0.26,0.11-0.51,0.26-0.74,0.42l-1.28-0.5c-0.12-0.05-0.25,0-0.31,0.11l-1.03,1.79 c-0.06,0.11-0.04,0.24,0.06,0.32l1.07,0.86c-0.03,0.29-0.04,0.58-0.01,0.86l-1.07,0.85c-0.1,0.08-0.12,0.21-0.06,0.32l1.03,1.79 c0.06,0.11,0.19,0.15,0.31,0.11l1.27-0.5c0.23,0.17,0.48,0.31,0.75,0.42l0.2,1.36c0.02,0.12,0.12,0.21,0.25,0.21h2.07 c0.12,0,0.23-0.09,0.25-0.21l0.2-1.36c0.26-0.11,0.51-0.26,0.74-0.42l1.28,0.5c0.12,0.05,0.25,0,0.31-0.11l1.03-1.79 c0.06-0.11,0.04-0.24-0.06-0.32L22.71,18.43z M19,19.5c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5 S19.83,19.5,19,19.5z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_video_settings_outline = ic_video_settings_outline; \ No newline at end of file diff --git a/dist/md/ic_video_settings_twotone.js b/dist/md/ic_video_settings_twotone.js new file mode 100644 index 000000000..4d3f32c42 --- /dev/null +++ b/dist/md/ic_video_settings_twotone.js @@ -0,0 +1,79 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_video_settings_twotone = void 0; +var ic_video_settings_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M3,6h18v5h2V6c0-1.1-0.9-2-2-2H3C1.9,4,1,4.9,1,6v12c0,1.1,0.9,2,2,2h9v-2H3V6z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M3,6h18v5h2V6c0-1.1-0.9-2-2-2H3C1.9,4,1,4.9,1,6v12c0,1.1,0.9,2,2,2h9v-2H3V6z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "15,12 9,8 9,16" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "15,12 9,8 9,16" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M22.71,18.43c0.03-0.29,0.04-0.58,0.01-0.86l1.07-0.85c0.1-0.08,0.12-0.21,0.06-0.32l-1.03-1.79 c-0.06-0.11-0.19-0.15-0.31-0.11L21.23,15c-0.23-0.17-0.48-0.31-0.75-0.42l-0.2-1.36C20.26,13.09,20.16,13,20.03,13h-2.07 c-0.12,0-0.23,0.09-0.25,0.21l-0.2,1.36c-0.26,0.11-0.51,0.26-0.74,0.42l-1.28-0.5c-0.12-0.05-0.25,0-0.31,0.11l-1.03,1.79 c-0.06,0.11-0.04,0.24,0.06,0.32l1.07,0.86c-0.03,0.29-0.04,0.58-0.01,0.86l-1.07,0.85c-0.1,0.08-0.12,0.21-0.06,0.32l1.03,1.79 c0.06,0.11,0.19,0.15,0.31,0.11l1.27-0.5c0.23,0.17,0.48,0.31,0.75,0.42l0.2,1.36c0.02,0.12,0.12,0.21,0.25,0.21h2.07 c0.12,0,0.23-0.09,0.25-0.21l0.2-1.36c0.26-0.11,0.51-0.26,0.74-0.42l1.28,0.5c0.12,0.05,0.25,0,0.31-0.11l1.03-1.79 c0.06-0.11,0.04-0.24-0.06-0.32L22.71,18.43z M19,19.5c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5 S19.83,19.5,19,19.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M22.71,18.43c0.03-0.29,0.04-0.58,0.01-0.86l1.07-0.85c0.1-0.08,0.12-0.21,0.06-0.32l-1.03-1.79 c-0.06-0.11-0.19-0.15-0.31-0.11L21.23,15c-0.23-0.17-0.48-0.31-0.75-0.42l-0.2-1.36C20.26,13.09,20.16,13,20.03,13h-2.07 c-0.12,0-0.23,0.09-0.25,0.21l-0.2,1.36c-0.26,0.11-0.51,0.26-0.74,0.42l-1.28-0.5c-0.12-0.05-0.25,0-0.31,0.11l-1.03,1.79 c-0.06,0.11-0.04,0.24,0.06,0.32l1.07,0.86c-0.03,0.29-0.04,0.58-0.01,0.86l-1.07,0.85c-0.1,0.08-0.12,0.21-0.06,0.32l1.03,1.79 c0.06,0.11,0.19,0.15,0.31,0.11l1.27-0.5c0.23,0.17,0.48,0.31,0.75,0.42l0.2,1.36c0.02,0.12,0.12,0.21,0.25,0.21h2.07 c0.12,0,0.23-0.09,0.25-0.21l0.2-1.36c0.26-0.11,0.51-0.26,0.74-0.42l1.28,0.5c0.12,0.05,0.25,0,0.31-0.11l1.03-1.79 c0.06-0.11,0.04-0.24-0.06-0.32L22.71,18.43z M19,19.5c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5 S19.83,19.5,19,19.5z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_video_settings_twotone = ic_video_settings_twotone; \ No newline at end of file diff --git a/dist/md/ic_videocam.js b/dist/md/ic_videocam.js new file mode 100644 index 000000000..031b8b782 --- /dev/null +++ b/dist/md/ic_videocam.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_videocam = void 0; +var ic_videocam = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 10.5V7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4z" + }, + "children": [] + }] +}; +exports.ic_videocam = ic_videocam; \ No newline at end of file diff --git a/dist/md/ic_videocam_off.js b/dist/md/ic_videocam_off.js new file mode 100644 index 000000000..62c7e7460 --- /dev/null +++ b/dist/md/ic_videocam_off.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_videocam_off = void 0; +var ic_videocam_off = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0zm0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 6.5l-4 4V7c0-.55-.45-1-1-1H9.82L21 17.18V6.5zM3.27 2L2 3.27 4.73 6H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.21 0 .39-.08.54-.18L19.73 21 21 19.73 3.27 2z" + }, + "children": [] + }] +}; +exports.ic_videocam_off = ic_videocam_off; \ No newline at end of file diff --git a/dist/md/ic_videocam_off_outline.js b/dist/md/ic_videocam_off_outline.js new file mode 100644 index 000000000..421cb090e --- /dev/null +++ b/dist/md/ic_videocam_off_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_videocam_off_outline = void 0; +var ic_videocam_off_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9.56 8l-2-2-4.15-4.14L2 3.27 4.73 6H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.21 0 .39-.08.55-.18L19.73 21l1.41-1.41-8.86-8.86L9.56 8zM5 16V8h1.73l8 8H5zm10-8v2.61l6 6V6.5l-4 4V7c0-.55-.45-1-1-1h-5.61l2 2H15z" + }, + "children": [] + }] +}; +exports.ic_videocam_off_outline = ic_videocam_off_outline; \ No newline at end of file diff --git a/dist/md/ic_videocam_off_twotone.js b/dist/md/ic_videocam_off_twotone.js new file mode 100644 index 000000000..a3d470df6 --- /dev/null +++ b/dist/md/ic_videocam_off_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_videocam_off_twotone = void 0; +var ic_videocam_off_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12.39 8L15 10.61V8zM5 8v8h9.73l-8-8z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3.41 1.86L2 3.27 4.73 6H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.21 0 .39-.08.55-.18L19.73 21l1.41-1.41L3.41 1.86zM5 16V8h1.73l8 8H5zm10-8v2.61l6 6V6.5l-4 4V7c0-.55-.45-1-1-1h-5.61l2 2H15z" + }, + "children": [] + }] +}; +exports.ic_videocam_off_twotone = ic_videocam_off_twotone; \ No newline at end of file diff --git a/dist/md/ic_videocam_outline.js b/dist/md/ic_videocam_outline.js new file mode 100644 index 000000000..042e2629b --- /dev/null +++ b/dist/md/ic_videocam_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_videocam_outline = void 0; +var ic_videocam_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 8v8H5V8h10m1-2H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4V7c0-.55-.45-1-1-1z" + }, + "children": [] + }] +}; +exports.ic_videocam_outline = ic_videocam_outline; \ No newline at end of file diff --git a/dist/md/ic_videocam_twotone.js b/dist/md/ic_videocam_twotone.js new file mode 100644 index 000000000..96193bb59 --- /dev/null +++ b/dist/md/ic_videocam_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_videocam_twotone = void 0; +var ic_videocam_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 8h10v8H5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4V7zm-2 9H5V8h10v8z" + }, + "children": [] + }] +}; +exports.ic_videocam_twotone = ic_videocam_twotone; \ No newline at end of file diff --git a/dist/md/ic_videogame_asset.js b/dist/md/ic_videogame_asset.js new file mode 100644 index 000000000..3349d2ba3 --- /dev/null +++ b/dist/md/ic_videogame_asset.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_videogame_asset = void 0; +var ic_videogame_asset = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0v24h24V0H0zm23 16c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V8c0-1.1.9-2 2-2h18c1.1 0 2 .9 2 2v8z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 6H3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-10 7H8v3H6v-3H3v-2h3V8h2v3h3v2zm4.5 2c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm4-3c-.83 0-1.5-.67-1.5-1.5S18.67 9 19.5 9s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" + }, + "children": [] + }] +}; +exports.ic_videogame_asset = ic_videogame_asset; \ No newline at end of file diff --git a/dist/md/ic_videogame_asset_outline.js b/dist/md/ic_videogame_asset_outline.js new file mode 100644 index 000000000..cf89f5a4e --- /dev/null +++ b/dist/md/ic_videogame_asset_outline.js @@ -0,0 +1,40 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_videogame_asset_outline = void 0; +var ic_videogame_asset_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 6H3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 10H3V8h18v8zM6 15h2v-2h2v-2H8V9H6v2H4v2h2z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "14.5", + "cy": "13.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "18.5", + "cy": "10.5", + "r": "1.5" + }, + "children": [] + }] +}; +exports.ic_videogame_asset_outline = ic_videogame_asset_outline; \ No newline at end of file diff --git a/dist/md/ic_videogame_asset_twotone.js b/dist/md/ic_videogame_asset_twotone.js new file mode 100644 index 000000000..4b1eea4ec --- /dev/null +++ b/dist/md/ic_videogame_asset_twotone.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_videogame_asset_twotone = void 0; +var ic_videogame_asset_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 16h18V8H3v8zm15.5-7c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-4 3c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zM4 11h2V9h2v2h2v2H8v2H6v-2H4v-2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 6H3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 10H3V8h18v8zM6 15h2v-2h2v-2H8V9H6v2H4v2h2z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "14.5", + "cy": "13.5", + "r": "1.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "18.5", + "cy": "10.5", + "r": "1.5" + }, + "children": [] + }] +}; +exports.ic_videogame_asset_twotone = ic_videogame_asset_twotone; \ No newline at end of file diff --git a/dist/md/ic_view_agenda.js b/dist/md/ic_view_agenda.js new file mode 100644 index 000000000..9f6b291c7 --- /dev/null +++ b/dist/md/ic_view_agenda.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_view_agenda = void 0; +var ic_view_agenda = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 13H3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h17c.55 0 1-.45 1-1v-6c0-.55-.45-1-1-1zm0-10H3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h17c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1z" + }, + "children": [] + }] +}; +exports.ic_view_agenda = ic_view_agenda; \ No newline at end of file diff --git a/dist/md/ic_view_agenda_outline.js b/dist/md/ic_view_agenda_outline.js new file mode 100644 index 000000000..9d0e1ed6b --- /dev/null +++ b/dist/md/ic_view_agenda_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_view_agenda_outline = void 0; +var ic_view_agenda_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 5v4H4V5h15m0 10v4H4v-4h15m1-12H3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h17c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1zm0 10H3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h17c.55 0 1-.45 1-1v-6c0-.55-.45-1-1-1z" + }, + "children": [] + }] +}; +exports.ic_view_agenda_outline = ic_view_agenda_outline; \ No newline at end of file diff --git a/dist/md/ic_view_agenda_twotone.js b/dist/md/ic_view_agenda_twotone.js new file mode 100644 index 000000000..c3e47e2fa --- /dev/null +++ b/dist/md/ic_view_agenda_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_view_agenda_twotone = void 0; +var ic_view_agenda_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 3H3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h17c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1zm-1 6H4V5h15v4zm1 4H3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h17c.55 0 1-.45 1-1v-6c0-.55-.45-1-1-1zm-1 6H4v-4h15v4z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 15h15v4H4zM4 5h15v4H4z", + "opacity": ".3" + }, + "children": [] + }] +}; +exports.ic_view_agenda_twotone = ic_view_agenda_twotone; \ No newline at end of file diff --git a/dist/md/ic_view_array.js b/dist/md/ic_view_array.js new file mode 100644 index 000000000..3780107fa --- /dev/null +++ b/dist/md/ic_view_array.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_view_array = void 0; +var ic_view_array = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 18h3V5H4v13zM18 5v13h3V5h-3zM8 18h9V5H8v13z" + }, + "children": [] + }] +}; +exports.ic_view_array = ic_view_array; \ No newline at end of file diff --git a/dist/md/ic_view_array_outline.js b/dist/md/ic_view_array_outline.js new file mode 100644 index 000000000..2c6e3aa5c --- /dev/null +++ b/dist/md/ic_view_array_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_view_array_outline = void 0; +var ic_view_array_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 7v9h-5V7h5m6-2h-3v13h3V5zm-4 0H8v13h9V5zM7 5H4v13h3V5z" + }, + "children": [] + }] +}; +exports.ic_view_array_outline = ic_view_array_outline; \ No newline at end of file diff --git a/dist/md/ic_view_array_twotone.js b/dist/md/ic_view_array_twotone.js new file mode 100644 index 000000000..d315e3fce --- /dev/null +++ b/dist/md/ic_view_array_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_view_array_twotone = void 0; +var ic_view_array_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 5h3v13H4zm14 0h3v13h-3zM8 18h9V5H8v13zm2-11h5v9h-5V7z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 7h5v9h-5z", + "opacity": ".3" + }, + "children": [] + }] +}; +exports.ic_view_array_twotone = ic_view_array_twotone; \ No newline at end of file diff --git a/dist/md/ic_view_carousel.js b/dist/md/ic_view_carousel.js new file mode 100644 index 000000000..dd27d7f81 --- /dev/null +++ b/dist/md/ic_view_carousel.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_view_carousel = void 0; +var ic_view_carousel = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 19h10V4H7v15zm-5-2h4V6H2v11zM18 6v11h4V6h-4z" + }, + "children": [] + }] +}; +exports.ic_view_carousel = ic_view_carousel; \ No newline at end of file diff --git a/dist/md/ic_view_carousel_outline.js b/dist/md/ic_view_carousel_outline.js new file mode 100644 index 000000000..3914afaf9 --- /dev/null +++ b/dist/md/ic_view_carousel_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_view_carousel_outline = void 0; +var ic_view_carousel_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M2 6h4v11H2zm5 13h10V4H7v15zM9 6h6v11H9V6zm9 0h4v11h-4z" + }, + "children": [] + }] +}; +exports.ic_view_carousel_outline = ic_view_carousel_outline; \ No newline at end of file diff --git a/dist/md/ic_view_carousel_twotone.js b/dist/md/ic_view_carousel_twotone.js new file mode 100644 index 000000000..40af36f44 --- /dev/null +++ b/dist/md/ic_view_carousel_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_view_carousel_twotone = void 0; +var ic_view_carousel_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 6h4v11h-4zM7 19h10V4H7v15zM9 6h6v11H9V6zM2 6h4v11H2z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 6h6v11H9z", + "opacity": ".3" + }, + "children": [] + }] +}; +exports.ic_view_carousel_twotone = ic_view_carousel_twotone; \ No newline at end of file diff --git a/dist/md/ic_view_column.js b/dist/md/ic_view_column.js new file mode 100644 index 000000000..671b296cc --- /dev/null +++ b/dist/md/ic_view_column.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_view_column = void 0; +var ic_view_column = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 18h5V5h-5v13zm-6 0h5V5H4v13zM16 5v13h5V5h-5z" + }, + "children": [] + }] +}; +exports.ic_view_column = ic_view_column; \ No newline at end of file diff --git a/dist/md/ic_view_column_outline.js b/dist/md/ic_view_column_outline.js new file mode 100644 index 000000000..7e8f560e4 --- /dev/null +++ b/dist/md/ic_view_column_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_view_column_outline = void 0; +var ic_view_column_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 5v13h17V5H4zm10 2v9h-3V7h3zM6 7h3v9H6V7zm13 9h-3V7h3v9z" + }, + "children": [] + }] +}; +exports.ic_view_column_outline = ic_view_column_outline; \ No newline at end of file diff --git a/dist/md/ic_view_column_twotone.js b/dist/md/ic_view_column_twotone.js new file mode 100644 index 000000000..824761d7f --- /dev/null +++ b/dist/md/ic_view_column_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_view_column_twotone = void 0; +var ic_view_column_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 7h3v9H6zm5 0h3v9h-3zm5 0h3v9h-3z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 5v13h17V5H4zm5 11H6V7h3v9zm5 0h-3V7h3v9zm5 0h-3V7h3v9z" + }, + "children": [] + }] +}; +exports.ic_view_column_twotone = ic_view_column_twotone; \ No newline at end of file diff --git a/dist/md/ic_view_comfy.js b/dist/md/ic_view_comfy.js new file mode 100644 index 000000000..fbbe4763c --- /dev/null +++ b/dist/md/ic_view_comfy.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_view_comfy = void 0; +var ic_view_comfy = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 9h4V5H3v4zm0 5h4v-4H3v4zm5 0h4v-4H8v4zm5 0h4v-4h-4v4zM8 9h4V5H8v4zm5-4v4h4V5h-4zm5 9h4v-4h-4v4zM3 19h4v-4H3v4zm5 0h4v-4H8v4zm5 0h4v-4h-4v4zm5 0h4v-4h-4v4zm0-14v4h4V5h-4z" + }, + "children": [] + }] +}; +exports.ic_view_comfy = ic_view_comfy; \ No newline at end of file diff --git a/dist/md/ic_view_comfy_outline.js b/dist/md/ic_view_comfy_outline.js new file mode 100644 index 000000000..6f0236315 --- /dev/null +++ b/dist/md/ic_view_comfy_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_view_comfy_outline = void 0; +var ic_view_comfy_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 5v14h19V5H3zm17 4h-2.25V7H20v2zM9.25 11h2.25v2H9.25v-2zm-2 2H5v-2h2.25v2zm4.25-4H9.25V7h2.25v2zm2-2h2.25v2H13.5V7zm-2 8v2H9.25v-2h2.25zm2 0h2.25v2H13.5v-2zm0-2v-2h2.25v2H13.5zm4.25-2H20v2h-2.25v-2zM7.25 7v2H5V7h2.25zM5 15h2.25v2H5v-2zm12.75 2v-2H20v2h-2.25z" + }, + "children": [] + }] +}; +exports.ic_view_comfy_outline = ic_view_comfy_outline; \ No newline at end of file diff --git a/dist/md/ic_view_comfy_twotone.js b/dist/md/ic_view_comfy_twotone.js new file mode 100644 index 000000000..02c80a841 --- /dev/null +++ b/dist/md/ic_view_comfy_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_view_comfy_twotone = void 0; +var ic_view_comfy_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9.25 11h2.25v2H9.25zm0 4h2.25v2H9.25zm0-8h2.25v2H9.25zm4.25 8h2.25v2H13.5zM5 15h2.25v2H5zm0-4h2.25v2H5zm0-4h2.25v2H5zm12.75 0H20v2h-2.25zm-4.25 4h2.25v2H13.5zm0-4h2.25v2H13.5zm4.25 8H20v2h-2.25zm0-4H20v2h-2.25z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 5v14h19V5H3zm4.25 12H5v-2h2.25v2zm0-4H5v-2h2.25v2zm0-4H5V7h2.25v2zm4.25 8H9.25v-2h2.25v2zm0-4H9.25v-2h2.25v2zm0-4H9.25V7h2.25v2zm4.25 8H13.5v-2h2.25v2zm0-4H13.5v-2h2.25v2zm0-4H13.5V7h2.25v2zM20 17h-2.25v-2H20v2zm0-4h-2.25v-2H20v2zm0-4h-2.25V7H20v2z" + }, + "children": [] + }] +}; +exports.ic_view_comfy_twotone = ic_view_comfy_twotone; \ No newline at end of file diff --git a/dist/md/ic_view_compact.js b/dist/md/ic_view_compact.js new file mode 100644 index 000000000..058e2176d --- /dev/null +++ b/dist/md/ic_view_compact.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_view_compact = void 0; +var ic_view_compact = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 19h6v-7H3v7zm7 0h12v-7H10v7zM3 5v6h19V5H3z" + }, + "children": [] + }] +}; +exports.ic_view_compact = ic_view_compact; \ No newline at end of file diff --git a/dist/md/ic_view_compact_outline.js b/dist/md/ic_view_compact_outline.js new file mode 100644 index 000000000..bf4221cc4 --- /dev/null +++ b/dist/md/ic_view_compact_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_view_compact_outline = void 0; +var ic_view_compact_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 5v14h19V5H3zm2 2h15v4H5V7zm0 10v-4h4v4H5zm6 0v-4h9v4h-9z" + }, + "children": [] + }] +}; +exports.ic_view_compact_outline = ic_view_compact_outline; \ No newline at end of file diff --git a/dist/md/ic_view_compact_twotone.js b/dist/md/ic_view_compact_twotone.js new file mode 100644 index 000000000..b2b5339da --- /dev/null +++ b/dist/md/ic_view_compact_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_view_compact_twotone = void 0; +var ic_view_compact_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 13h9v4h-9zm-6 0h4v4H5zm0-6h15v4H5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 5v14h19V5H3zm6 12H5v-4h4v4zm11 0h-9v-4h9v4zm0-6H5V7h15v4z" + }, + "children": [] + }] +}; +exports.ic_view_compact_twotone = ic_view_compact_twotone; \ No newline at end of file diff --git a/dist/md/ic_view_day.js b/dist/md/ic_view_day.js new file mode 100644 index 000000000..146c64f43 --- /dev/null +++ b/dist/md/ic_view_day.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_view_day = void 0; +var ic_view_day = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M2 21h19v-3H2v3zM20 8H3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h17c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zM2 3v3h19V3H2z" + }, + "children": [] + }] +}; +exports.ic_view_day = ic_view_day; \ No newline at end of file diff --git a/dist/md/ic_view_day_outline.js b/dist/md/ic_view_day_outline.js new file mode 100644 index 000000000..ad94bb1ff --- /dev/null +++ b/dist/md/ic_view_day_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_view_day_outline = void 0; +var ic_view_day_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 18H2v2h19v-2zm-2-8v4H4v-4h15m1-2H3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h17c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm1-4H2v2h19V4z" + }, + "children": [] + }] +}; +exports.ic_view_day_outline = ic_view_day_outline; \ No newline at end of file diff --git a/dist/md/ic_view_day_twotone.js b/dist/md/ic_view_day_twotone.js new file mode 100644 index 000000000..c19984bad --- /dev/null +++ b/dist/md/ic_view_day_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_view_day_twotone = void 0; +var ic_view_day_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 10h15v4H4z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M2 18h19v2H2zM20 8H3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h17c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-1 6H4v-4h15v4zM2 4h19v2H2z" + }, + "children": [] + }] +}; +exports.ic_view_day_twotone = ic_view_day_twotone; \ No newline at end of file diff --git a/dist/md/ic_view_headline.js b/dist/md/ic_view_headline.js new file mode 100644 index 000000000..0f3b3f0d5 --- /dev/null +++ b/dist/md/ic_view_headline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_view_headline = void 0; +var ic_view_headline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 15h16v-2H4v2zm0 4h16v-2H4v2zm0-8h16V9H4v2zm0-6v2h16V5H4z" + }, + "children": [] + }] +}; +exports.ic_view_headline = ic_view_headline; \ No newline at end of file diff --git a/dist/md/ic_view_headline_outline.js b/dist/md/ic_view_headline_outline.js new file mode 100644 index 000000000..f86806685 --- /dev/null +++ b/dist/md/ic_view_headline_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_view_headline_outline = void 0; +var ic_view_headline_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 15h16v-2H4v2zm0 4h16v-2H4v2zm0-8h16V9H4v2zm0-6v2h16V5H4z" + }, + "children": [] + }] +}; +exports.ic_view_headline_outline = ic_view_headline_outline; \ No newline at end of file diff --git a/dist/md/ic_view_headline_twotone.js b/dist/md/ic_view_headline_twotone.js new file mode 100644 index 000000000..2abdc280f --- /dev/null +++ b/dist/md/ic_view_headline_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_view_headline_twotone = void 0; +var ic_view_headline_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 15h16v-2H4v2zm0 4h16v-2H4v2zm0-8h16V9H4v2zm0-6v2h16V5H4z" + }, + "children": [] + }] +}; +exports.ic_view_headline_twotone = ic_view_headline_twotone; \ No newline at end of file diff --git a/dist/md/ic_view_in_ar.js b/dist/md/ic_view_in_ar.js new file mode 100644 index 000000000..20f8efcc8 --- /dev/null +++ b/dist/md/ic_view_in_ar.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_view_in_ar = void 0; +var ic_view_in_ar = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18.25 7.6l-5.5-3.18c-.46-.27-1.04-.27-1.5 0L5.75 7.6c-.46.27-.75.76-.75 1.3v6.35c0 .54.29 1.03.75 1.3l5.5 3.18c.46.27 1.04.27 1.5 0l5.5-3.18c.46-.27.75-.76.75-1.3V8.9c0-.54-.29-1.03-.75-1.3zM7 14.96v-4.62l4 2.32v4.61l-4-2.31zm5-4.03L8 8.61l4-2.31 4 2.31-4 2.32zm1 6.34v-4.61l4-2.32v4.62l-4 2.31zM7 2H3.5C2.67 2 2 2.67 2 3.5V7h2V4h3V2zm10 0h3.5c.83 0 1.5.67 1.5 1.5V7h-2V4h-3V2zM7 22H3.5c-.83 0-1.5-.67-1.5-1.5V17h2v3h3v2zm10 0h3.5c.83 0 1.5-.67 1.5-1.5V17h-2v3h-3v2z" + }, + "children": [] + }] +}; +exports.ic_view_in_ar = ic_view_in_ar; \ No newline at end of file diff --git a/dist/md/ic_view_list.js b/dist/md/ic_view_list.js new file mode 100644 index 000000000..c7d7d00cd --- /dev/null +++ b/dist/md/ic_view_list.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_view_list = void 0; +var ic_view_list = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 14h4v-4H4v4zm0 5h4v-4H4v4zM4 9h4V5H4v4zm5 5h12v-4H9v4zm0 5h12v-4H9v4zM9 5v4h12V5H9z" + }, + "children": [] + }] +}; +exports.ic_view_list = ic_view_list; \ No newline at end of file diff --git a/dist/md/ic_view_list_outline.js b/dist/md/ic_view_list_outline.js new file mode 100644 index 000000000..48b770b73 --- /dev/null +++ b/dist/md/ic_view_list_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_view_list_outline = void 0; +var ic_view_list_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none", + "opacity": ".87" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 5v14h17V5H3zm4 2v2H5V7h2zm-2 6v-2h2v2H5zm0 2h2v2H5v-2zm13 2H9v-2h9v2zm0-4H9v-2h9v2zm0-4H9V7h9v2z" + }, + "children": [] + }] +}; +exports.ic_view_list_outline = ic_view_list_outline; \ No newline at end of file diff --git a/dist/md/ic_view_list_twotone.js b/dist/md/ic_view_list_twotone.js new file mode 100644 index 000000000..be8d250ac --- /dev/null +++ b/dist/md/ic_view_list_twotone.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_view_list_twotone = void 0; +var ic_view_list_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none", + "opacity": ".87" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 11h2v2H5zm0 4h2v2H5zm0-8h2v2H5zm4 0h9v2H9zm0 8h9v2H9zm0-4h9v2H9z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 5v14h17V5H3zm4 12H5v-2h2v2zm0-4H5v-2h2v2zm0-4H5V7h2v2zm11 8H9v-2h9v2zm0-4H9v-2h9v2zm0-4H9V7h9v2z" + }, + "children": [] + }] +}; +exports.ic_view_list_twotone = ic_view_list_twotone; \ No newline at end of file diff --git a/dist/md/ic_view_module.js b/dist/md/ic_view_module.js new file mode 100644 index 000000000..d709ddbb5 --- /dev/null +++ b/dist/md/ic_view_module.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_view_module = void 0; +var ic_view_module = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 11h5V5H4v6zm0 7h5v-6H4v6zm6 0h5v-6h-5v6zm6 0h5v-6h-5v6zm-6-7h5V5h-5v6zm6-6v6h5V5h-5z" + }, + "children": [] + }] +}; +exports.ic_view_module = ic_view_module; \ No newline at end of file diff --git a/dist/md/ic_view_module_outline.js b/dist/md/ic_view_module_outline.js new file mode 100644 index 000000000..ac67bc7cc --- /dev/null +++ b/dist/md/ic_view_module_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_view_module_outline = void 0; +var ic_view_module_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 5v13h17V5H4zm10 2v3.5h-3V7h3zM6 7h3v3.5H6V7zm0 9v-3.5h3V16H6zm5 0v-3.5h3V16h-3zm8 0h-3v-3.5h3V16zm-3-5.5V7h3v3.5h-3z" + }, + "children": [] + }] +}; +exports.ic_view_module_outline = ic_view_module_outline; \ No newline at end of file diff --git a/dist/md/ic_view_module_twotone.js b/dist/md/ic_view_module_twotone.js new file mode 100644 index 000000000..534504fc6 --- /dev/null +++ b/dist/md/ic_view_module_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_view_module_twotone = void 0; +var ic_view_module_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11 12.5h3V16h-3zM11 7h3v3.5h-3zm-5 5.5h3V16H6zM6 7h3v3.5H6zm10 0h3v3.5h-3zm0 5.5h3V16h-3z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 5v13h17V5H4zm5 11H6v-3.5h3V16zm0-5.5H6V7h3v3.5zm5 5.5h-3v-3.5h3V16zm0-5.5h-3V7h3v3.5zm5 5.5h-3v-3.5h3V16zm0-5.5h-3V7h3v3.5z" + }, + "children": [] + }] +}; +exports.ic_view_module_twotone = ic_view_module_twotone; \ No newline at end of file diff --git a/dist/md/ic_view_quilt.js b/dist/md/ic_view_quilt.js new file mode 100644 index 000000000..6832ffc60 --- /dev/null +++ b/dist/md/ic_view_quilt.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_view_quilt = void 0; +var ic_view_quilt = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 18h5v-6h-5v6zm-6 0h5V5H4v13zm12 0h5v-6h-5v6zM10 5v6h11V5H10z" + }, + "children": [] + }] +}; +exports.ic_view_quilt = ic_view_quilt; \ No newline at end of file diff --git a/dist/md/ic_view_quilt_outline.js b/dist/md/ic_view_quilt_outline.js new file mode 100644 index 000000000..449bab22d --- /dev/null +++ b/dist/md/ic_view_quilt_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_view_quilt_outline = void 0; +var ic_view_quilt_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 5v13h17V5H4zm2 11V7h3v9H6zm5 0v-3.5h3V16h-3zm8 0h-3v-3.5h3V16zm-8-5.5V7h8v3.5h-8z" + }, + "children": [] + }] +}; +exports.ic_view_quilt_outline = ic_view_quilt_outline; \ No newline at end of file diff --git a/dist/md/ic_view_quilt_twotone.js b/dist/md/ic_view_quilt_twotone.js new file mode 100644 index 000000000..d60537d88 --- /dev/null +++ b/dist/md/ic_view_quilt_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_view_quilt_twotone = void 0; +var ic_view_quilt_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 12.5h3V16h-3zM6 7h3v9H6zm5 5.5h3V16h-3zM11 7h8v3.5h-8z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 5v13h17V5H4zm5 11H6V7h3v9zm5 0h-3v-3.5h3V16zm5 0h-3v-3.5h3V16zm0-5.5h-8V7h8v3.5z" + }, + "children": [] + }] +}; +exports.ic_view_quilt_twotone = ic_view_quilt_twotone; \ No newline at end of file diff --git a/dist/md/ic_view_sidebar.js b/dist/md/ic_view_sidebar.js new file mode 100644 index 000000000..9912335fe --- /dev/null +++ b/dist/md/ic_view_sidebar.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_view_sidebar = void 0; +var ic_view_sidebar = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M16,20H2V4h14V20z M18,8h4V4h-4V8z M18,20h4v-4h-4V20z M18,14h4v-4h-4V14z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M16,20H2V4h14V20z M18,8h4V4h-4V8z M18,20h4v-4h-4V20z M18,14h4v-4h-4V14z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_view_sidebar = ic_view_sidebar; \ No newline at end of file diff --git a/dist/md/ic_view_sidebar_outline.js b/dist/md/ic_view_sidebar_outline.js new file mode 100644 index 000000000..344adfeb8 --- /dev/null +++ b/dist/md/ic_view_sidebar_outline.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_view_sidebar_outline = void 0; +var ic_view_sidebar_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M2,4v16h20V4H2z M20,8.67h-2.5V6H20V8.67z M17.5,10.67H20v2.67h-2.5V10.67z M4,6h11.5v12H4V6z M17.5,18v-2.67H20V18H17.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M2,4v16h20V4H2z M20,8.67h-2.5V6H20V8.67z M17.5,10.67H20v2.67h-2.5V10.67z M4,6h11.5v12H4V6z M17.5,18v-2.67H20V18H17.5z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_view_sidebar_outline = ic_view_sidebar_outline; \ No newline at end of file diff --git a/dist/md/ic_view_sidebar_twotone.js b/dist/md/ic_view_sidebar_twotone.js new file mode 100644 index 000000000..bb68fd31e --- /dev/null +++ b/dist/md/ic_view_sidebar_twotone.js @@ -0,0 +1,75 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_view_sidebar_twotone = void 0; +var ic_view_sidebar_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": { + "opacity": ".3" + }, + "children": [{ + "name": "g", + "attribs": { + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,8.67h-2.5V6H20V8.67z M17.5,10.67H20v2.67h-2.5V10.67z M4,6h11.5v12H4V6z M17.5,18v-2.67H20V18H17.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,8.67h-2.5V6H20V8.67z M17.5,10.67H20v2.67h-2.5V10.67z M4,6h11.5v12H4V6z M17.5,18v-2.67H20V18H17.5z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M2,4v16h20V4H2z M20,8.67h-2.5V6H20V8.67z M17.5,10.67H20v2.67h-2.5V10.67z M4,6h11.5v12H4V6z M17.5,18v-2.67H20V18H17.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M2,4v16h20V4H2z M20,8.67h-2.5V6H20V8.67z M17.5,10.67H20v2.67h-2.5V10.67z M4,6h11.5v12H4V6z M17.5,18v-2.67H20V18H17.5z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_view_sidebar_twotone = ic_view_sidebar_twotone; \ No newline at end of file diff --git a/dist/md/ic_view_stream.js b/dist/md/ic_view_stream.js new file mode 100644 index 000000000..4ffa7b926 --- /dev/null +++ b/dist/md/ic_view_stream.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_view_stream = void 0; +var ic_view_stream = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 18h17v-6H4v6zM4 5v6h17V5H4z" + }, + "children": [] + }] +}; +exports.ic_view_stream = ic_view_stream; \ No newline at end of file diff --git a/dist/md/ic_view_stream_outline.js b/dist/md/ic_view_stream_outline.js new file mode 100644 index 000000000..f207530b8 --- /dev/null +++ b/dist/md/ic_view_stream_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_view_stream_outline = void 0; +var ic_view_stream_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 6v12h17V6H4zm15 10H6v-3h13v3zM6 11V8h13v3H6z" + }, + "children": [] + }] +}; +exports.ic_view_stream_outline = ic_view_stream_outline; \ No newline at end of file diff --git a/dist/md/ic_view_stream_twotone.js b/dist/md/ic_view_stream_twotone.js new file mode 100644 index 000000000..cc1b97960 --- /dev/null +++ b/dist/md/ic_view_stream_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_view_stream_twotone = void 0; +var ic_view_stream_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 13h13v3H6zm0-5h13v3H6z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 6v12h17V6H4zm15 10H6v-3h13v3zm0-5H6V8h13v3z" + }, + "children": [] + }] +}; +exports.ic_view_stream_twotone = ic_view_stream_twotone; \ No newline at end of file diff --git a/dist/md/ic_view_week.js b/dist/md/ic_view_week.js new file mode 100644 index 000000000..347ce51f9 --- /dev/null +++ b/dist/md/ic_view_week.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_view_week = void 0; +var ic_view_week = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 5H3c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h3c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zm14 0h-3c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h3c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zm-7 0h-3c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h3c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1z" + }, + "children": [] + }] +}; +exports.ic_view_week = ic_view_week; \ No newline at end of file diff --git a/dist/md/ic_view_week_outline.js b/dist/md/ic_view_week_outline.js new file mode 100644 index 000000000..2a4b3af90 --- /dev/null +++ b/dist/md/ic_view_week_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_view_week_outline = void 0; +var ic_view_week_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 4H3c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zM8 18H4V6h4v12zm6 0h-4V6h4v12zm6 0h-4V6h4v12z" + }, + "children": [] + }] +}; +exports.ic_view_week_outline = ic_view_week_outline; \ No newline at end of file diff --git a/dist/md/ic_view_week_twotone.js b/dist/md/ic_view_week_twotone.js new file mode 100644 index 000000000..4c1e07cd1 --- /dev/null +++ b/dist/md/ic_view_week_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_view_week_twotone = void 0; +var ic_view_week_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 4H3c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zM8 18H4V6h4v12zm6 0h-4V6h4v12zm6 0h-4V6h4v12z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 6h4v12h-4zm6 0h4v12h-4zM4 6h4v12H4z", + "opacity": ".3" + }, + "children": [] + }] +}; +exports.ic_view_week_twotone = ic_view_week_twotone; \ No newline at end of file diff --git a/dist/md/ic_vignette.js b/dist/md/ic_vignette.js new file mode 100644 index 000000000..d0bfb02d7 --- /dev/null +++ b/dist/md/ic_vignette.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_vignette = void 0; +var ic_vignette = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 15c-4.42 0-8-2.69-8-6s3.58-6 8-6 8 2.69 8 6-3.58 6-8 6z" + }, + "children": [] + }] +}; +exports.ic_vignette = ic_vignette; \ No newline at end of file diff --git a/dist/md/ic_vignette_outline.js b/dist/md/ic_vignette_outline.js new file mode 100644 index 000000000..b408e72c2 --- /dev/null +++ b/dist/md/ic_vignette_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_vignette_outline = void 0; +var ic_vignette_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 5v14H3V5h18m0-2H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 5c3.25 0 6 1.83 6 4s-2.75 4-6 4-6-1.83-6-4 2.75-4 6-4m0-2c-4.42 0-8 2.69-8 6s3.58 6 8 6 8-2.69 8-6-3.58-6-8-6z" + }, + "children": [] + }] +}; +exports.ic_vignette_outline = ic_vignette_outline; \ No newline at end of file diff --git a/dist/md/ic_vignette_twotone.js b/dist/md/ic_vignette_twotone.js new file mode 100644 index 000000000..464dcbc3e --- /dev/null +++ b/dist/md/ic_vignette_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_vignette_twotone = void 0; +var ic_vignette_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 19h18V5H3v14zm9-13c4.42 0 8 2.69 8 6s-3.58 6-8 6-8-2.69-8-6 3.58-6 8-6z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zm-9-1c4.42 0 8-2.69 8-6s-3.58-6-8-6-8 2.69-8 6 3.58 6 8 6zm0-10c3.25 0 6 1.83 6 4s-2.75 4-6 4-6-1.83-6-4 2.75-4 6-4z" + }, + "children": [] + }] +}; +exports.ic_vignette_twotone = ic_vignette_twotone; \ No newline at end of file diff --git a/dist/md/ic_visibility.js b/dist/md/ic_visibility.js new file mode 100644 index 000000000..1c333950b --- /dev/null +++ b/dist/md/ic_visibility.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_visibility = void 0; +var ic_visibility = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z" + }, + "children": [] + }] +}; +exports.ic_visibility = ic_visibility; \ No newline at end of file diff --git a/dist/md/ic_visibility_off.js b/dist/md/ic_visibility_off.js new file mode 100644 index 000000000..019b65130 --- /dev/null +++ b/dist/md/ic_visibility_off.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_visibility_off = void 0; +var ic_visibility_off = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0zm0 0h24v24H0zm0 0h24v24H0zm0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 7c2.76 0 5 2.24 5 5 0 .65-.13 1.26-.36 1.83l2.92 2.92c1.51-1.26 2.7-2.89 3.43-4.75-1.73-4.39-6-7.5-11-7.5-1.4 0-2.74.25-3.98.7l2.16 2.16C10.74 7.13 11.35 7 12 7zM2 4.27l2.28 2.28.46.46C3.08 8.3 1.78 10.02 1 12c1.73 4.39 6 7.5 11 7.5 1.55 0 3.03-.3 4.38-.84l.42.42L19.73 22 21 20.73 3.27 3 2 4.27zM7.53 9.8l1.55 1.55c-.05.21-.08.43-.08.65 0 1.66 1.34 3 3 3 .22 0 .44-.03.65-.08l1.55 1.55c-.67.33-1.41.53-2.2.53-2.76 0-5-2.24-5-5 0-.79.2-1.53.53-2.2zm4.31-.78l3.15 3.15.02-.16c0-1.66-1.34-3-3-3l-.17.01z" + }, + "children": [] + }] +}; +exports.ic_visibility_off = ic_visibility_off; \ No newline at end of file diff --git a/dist/md/ic_visibility_off_outline.js b/dist/md/ic_visibility_off_outline.js new file mode 100644 index 000000000..e1e7565cb --- /dev/null +++ b/dist/md/ic_visibility_off_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_visibility_off_outline = void 0; +var ic_visibility_off_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 6c3.79 0 7.17 2.13 8.82 5.5-.59 1.22-1.42 2.27-2.41 3.12l1.41 1.41c1.39-1.23 2.49-2.77 3.18-4.53C21.27 7.11 17 4 12 4c-1.27 0-2.49.2-3.64.57l1.65 1.65C10.66 6.09 11.32 6 12 6zm-1.07 1.14L13 9.21c.57.25 1.03.71 1.28 1.28l2.07 2.07c.08-.34.14-.7.14-1.07C16.5 9.01 14.48 7 12 7c-.37 0-.72.05-1.07.14zM2.01 3.87l2.68 2.68C3.06 7.83 1.77 9.53 1 11.5 2.73 15.89 7 19 12 19c1.52 0 2.98-.29 4.32-.82l3.42 3.42 1.41-1.41L3.42 2.45 2.01 3.87zm7.5 7.5l2.61 2.61c-.04.01-.08.02-.12.02-1.38 0-2.5-1.12-2.5-2.5 0-.05.01-.08.01-.13zm-3.4-3.4l1.75 1.75c-.23.55-.36 1.15-.36 1.78 0 2.48 2.02 4.5 4.5 4.5.63 0 1.23-.13 1.77-.36l.98.98c-.88.24-1.8.38-2.75.38-3.79 0-7.17-2.13-8.82-5.5.7-1.43 1.72-2.61 2.93-3.53z" + }, + "children": [] + }] +}; +exports.ic_visibility_off_outline = ic_visibility_off_outline; \ No newline at end of file diff --git a/dist/md/ic_visibility_off_twotone.js b/dist/md/ic_visibility_off_twotone.js new file mode 100644 index 000000000..09e9887e0 --- /dev/null +++ b/dist/md/ic_visibility_off_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_visibility_off_twotone = void 0; +var ic_visibility_off_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 14c.04 0 .08-.01.12-.01l-2.61-2.61c0 .04-.01.08-.01.12 0 1.38 1.12 2.5 2.5 2.5zm1.01-4.79l1.28 1.28c-.26-.57-.71-1.03-1.28-1.28zm7.81 2.29C19.17 8.13 15.79 6 12 6c-.68 0-1.34.09-1.99.22l.92.92c.35-.09.7-.14 1.07-.14 2.48 0 4.5 2.02 4.5 4.5 0 .37-.06.72-.14 1.07l2.05 2.05c.98-.86 1.81-1.91 2.41-3.12zM12 17c.95 0 1.87-.13 2.75-.39l-.98-.98c-.54.24-1.14.37-1.77.37-2.48 0-4.5-2.02-4.5-4.5 0-.63.13-1.23.36-1.77L6.11 7.97c-1.22.91-2.23 2.1-2.93 3.52C4.83 14.86 8.21 17 12 17z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 6c3.79 0 7.17 2.13 8.82 5.5-.59 1.22-1.42 2.27-2.41 3.12l1.41 1.41c1.39-1.23 2.49-2.77 3.18-4.53C21.27 7.11 17 4 12 4c-1.27 0-2.49.2-3.64.57l1.65 1.65C10.66 6.09 11.32 6 12 6zm2.28 4.49l2.07 2.07c.08-.34.14-.7.14-1.07C16.5 9.01 14.48 7 12 7c-.37 0-.72.06-1.07.14L13 9.21c.58.25 1.03.71 1.28 1.28zM2.01 3.87l2.68 2.68C3.06 7.83 1.77 9.53 1 11.5 2.73 15.89 7 19 12 19c1.52 0 2.98-.29 4.32-.82l3.42 3.42 1.41-1.41L3.42 2.45 2.01 3.87zm7.5 7.5l2.61 2.61c-.04.01-.08.02-.12.02-1.38 0-2.5-1.12-2.5-2.5 0-.05.01-.08.01-.13zm-3.4-3.4l1.75 1.75c-.23.55-.36 1.15-.36 1.78 0 2.48 2.02 4.5 4.5 4.5.63 0 1.23-.13 1.77-.36l.98.98c-.88.24-1.8.38-2.75.38-3.79 0-7.17-2.13-8.82-5.5.7-1.43 1.72-2.61 2.93-3.53z" + }, + "children": [] + }] +}; +exports.ic_visibility_off_twotone = ic_visibility_off_twotone; \ No newline at end of file diff --git a/dist/md/ic_visibility_outline.js b/dist/md/ic_visibility_outline.js new file mode 100644 index 000000000..c1fec9e12 --- /dev/null +++ b/dist/md/ic_visibility_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_visibility_outline = void 0; +var ic_visibility_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 6c3.79 0 7.17 2.13 8.82 5.5C19.17 14.87 15.79 17 12 17s-7.17-2.13-8.82-5.5C4.83 8.13 8.21 6 12 6m0-2C7 4 2.73 7.11 1 11.5 2.73 15.89 7 19 12 19s9.27-3.11 11-7.5C21.27 7.11 17 4 12 4zm0 5c1.38 0 2.5 1.12 2.5 2.5S13.38 14 12 14s-2.5-1.12-2.5-2.5S10.62 9 12 9m0-2c-2.48 0-4.5 2.02-4.5 4.5S9.52 16 12 16s4.5-2.02 4.5-4.5S14.48 7 12 7z" + }, + "children": [] + }] +}; +exports.ic_visibility_outline = ic_visibility_outline; \ No newline at end of file diff --git a/dist/md/ic_visibility_twotone.js b/dist/md/ic_visibility_twotone.js new file mode 100644 index 000000000..c144e3910 --- /dev/null +++ b/dist/md/ic_visibility_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_visibility_twotone = void 0; +var ic_visibility_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 6c-3.79 0-7.17 2.13-8.82 5.5C4.83 14.87 8.21 17 12 17s7.17-2.13 8.82-5.5C19.17 8.13 15.79 6 12 6zm0 10c-2.48 0-4.5-2.02-4.5-4.5S9.52 7 12 7s4.5 2.02 4.5 4.5S14.48 16 12 16z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 4C7 4 2.73 7.11 1 11.5 2.73 15.89 7 19 12 19s9.27-3.11 11-7.5C21.27 7.11 17 4 12 4zm0 13c-3.79 0-7.17-2.13-8.82-5.5C4.83 8.13 8.21 6 12 6s7.17 2.13 8.82 5.5C19.17 14.87 15.79 17 12 17zm0-10c-2.48 0-4.5 2.02-4.5 4.5S9.52 16 12 16s4.5-2.02 4.5-4.5S14.48 7 12 7zm0 7c-1.38 0-2.5-1.12-2.5-2.5S10.62 9 12 9s2.5 1.12 2.5 2.5S13.38 14 12 14z" + }, + "children": [] + }] +}; +exports.ic_visibility_twotone = ic_visibility_twotone; \ No newline at end of file diff --git a/dist/md/ic_voice_chat.js b/dist/md/ic_voice_chat.js new file mode 100644 index 000000000..5c719f0d9 --- /dev/null +++ b/dist/md/ic_voice_chat.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_voice_chat = void 0; +var ic_voice_chat = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-2 12l-4-3.2V14H6V6h8v3.2L18 6v8z" + }, + "children": [] + }] +}; +exports.ic_voice_chat = ic_voice_chat; \ No newline at end of file diff --git a/dist/md/ic_voice_chat_outline.js b/dist/md/ic_voice_chat_outline.js new file mode 100644 index 000000000..ab8ac1121 --- /dev/null +++ b/dist/md/ic_voice_chat_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_voice_chat_outline = void 0; +var ic_voice_chat_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zm-6-5.4l3 2.4V7l-3 2.4V7H7v6h7z" + }, + "children": [] + }] +}; +exports.ic_voice_chat_outline = ic_voice_chat_outline; \ No newline at end of file diff --git a/dist/md/ic_voice_chat_twotone.js b/dist/md/ic_voice_chat_twotone.js new file mode 100644 index 000000000..1ecf1e414 --- /dev/null +++ b/dist/md/ic_voice_chat_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_voice_chat_twotone = void 0; +var ic_voice_chat_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 17.17L5.17 16H20V4H4v13.17zM7 7h7v2.4L17 7v6l-3-2.4V13H7V7z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zm-6-5.4l3 2.4V7l-3 2.4V7H7v6h7z" + }, + "children": [] + }] +}; +exports.ic_voice_chat_twotone = ic_voice_chat_twotone; \ No newline at end of file diff --git a/dist/md/ic_voice_over_off.js b/dist/md/ic_voice_over_off.js new file mode 100644 index 000000000..ec544e436 --- /dev/null +++ b/dist/md/ic_voice_over_off.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_voice_over_off = void 0; +var ic_voice_over_off = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12.99 9.18c0-.06.01-.12.01-.18 0-2.21-1.79-4-4-4-.06 0-.12.01-.18.01l4.17 4.17zm-6.1-3.56L4.27 3 3 4.27l2.62 2.62C5.23 7.5 5 8.22 5 9c0 2.21 1.79 4 4 4 .78 0 1.5-.23 2.11-.62L19.73 21 21 19.73l-8.62-8.62-5.49-5.49zM9 15c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4zm7.76-9.64l-1.68 1.69c.84 1.18.84 2.71 0 3.89l1.68 1.69c2.02-2.02 2.02-5.07 0-7.27zM20.07 2l-1.63 1.63c2.77 3.02 2.77 7.56 0 10.74L20.07 16c3.9-3.89 3.91-9.95 0-14z" + }, + "children": [] + }] +}; +exports.ic_voice_over_off = ic_voice_over_off; \ No newline at end of file diff --git a/dist/md/ic_voice_over_off_outline.js b/dist/md/ic_voice_over_off_outline.js new file mode 100644 index 000000000..130249730 --- /dev/null +++ b/dist/md/ic_voice_over_off_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_voice_over_off_outline = void 0; +var ic_voice_over_off_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16.76 5.36l-1.68 1.69c.8 1.13.83 2.58.09 3.74l1.7 1.7c1.9-2.02 1.87-4.98-.11-7.13zM20.07 2l-1.63 1.63c2.72 2.97 2.76 7.39.14 10.56l1.64 1.64c3.74-3.89 3.71-9.84-.15-13.83zM9.43 5.04l3.53 3.53c-.2-1.86-1.67-3.33-3.53-3.53zM4.41 2.86L3 4.27l2.62 2.62C5.23 7.5 5 8.22 5 9c0 2.21 1.79 4 4 4 .78 0 1.5-.23 2.11-.62l4.4 4.4C13.74 15.6 10.78 15 9 15c-2.67 0-8 1.34-8 4v2h16v-2c0-.37-.11-.7-.29-1.02L19.73 21l1.41-1.41L4.41 2.86zM3 19c.22-.72 3.31-2 6-2 2.7 0 5.8 1.29 6 2H3zm6-8c-1.1 0-2-.9-2-2 0-.22.04-.42.11-.62l2.51 2.51c-.2.07-.4.11-.62.11z" + }, + "children": [] + }] +}; +exports.ic_voice_over_off_outline = ic_voice_over_off_outline; \ No newline at end of file diff --git a/dist/md/ic_voice_over_off_twotone.js b/dist/md/ic_voice_over_off_twotone.js new file mode 100644 index 000000000..9895be04e --- /dev/null +++ b/dist/md/ic_voice_over_off_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_voice_over_off_twotone = void 0; +var ic_voice_over_off_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 17c-2.69 0-5.77 1.28-6 2h12c-.2-.71-3.3-2-6-2zM7 9c0 1.1.9 2 2 2 .22 0 .42-.04.62-.11L7.11 8.38c-.07.2-.11.4-.11.62z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16.76 5.36l-1.68 1.69c.8 1.13.83 2.58.09 3.74l1.7 1.7c1.9-2.02 1.87-4.98-.11-7.13zM20.07 2l-1.63 1.63c2.72 2.97 2.76 7.39.14 10.56l1.64 1.64c3.74-3.89 3.71-9.84-.15-13.83zM9.43 5.04l3.53 3.53c-.2-1.86-1.67-3.33-3.53-3.53zM4.41 2.86L3 4.27l2.62 2.62C5.23 7.5 5 8.22 5 9c0 2.21 1.79 4 4 4 .78 0 1.5-.23 2.11-.62l4.4 4.4C13.74 15.6 10.78 15 9 15c-2.67 0-8 1.34-8 4v2h16v-2c0-.37-.11-.7-.29-1.02L19.73 21l1.41-1.41L4.41 2.86zM3 19c.22-.72 3.31-2 6-2 2.7 0 5.8 1.29 6 2H3zm6-8c-1.1 0-2-.9-2-2 0-.22.04-.42.11-.62l2.51 2.51c-.2.07-.4.11-.62.11z" + }, + "children": [] + }] +}; +exports.ic_voice_over_off_twotone = ic_voice_over_off_twotone; \ No newline at end of file diff --git a/dist/md/ic_voicemail.js b/dist/md/ic_voicemail.js new file mode 100644 index 000000000..793fa9acc --- /dev/null +++ b/dist/md/ic_voicemail.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_voicemail = void 0; +var ic_voicemail = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18.5 6C15.46 6 13 8.46 13 11.5c0 1.33.47 2.55 1.26 3.5H9.74c.79-.95 1.26-2.17 1.26-3.5C11 8.46 8.54 6 5.5 6S0 8.46 0 11.5 2.46 17 5.5 17h13c3.04 0 5.5-2.46 5.5-5.5S21.54 6 18.5 6zm-13 9C3.57 15 2 13.43 2 11.5S3.57 8 5.5 8 9 9.57 9 11.5 7.43 15 5.5 15zm13 0c-1.93 0-3.5-1.57-3.5-3.5S16.57 8 18.5 8 22 9.57 22 11.5 20.43 15 18.5 15z" + }, + "children": [] + }] +}; +exports.ic_voicemail = ic_voicemail; \ No newline at end of file diff --git a/dist/md/ic_voicemail_outline.js b/dist/md/ic_voicemail_outline.js new file mode 100644 index 000000000..4e6bb89ad --- /dev/null +++ b/dist/md/ic_voicemail_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_voicemail_outline = void 0; +var ic_voicemail_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18.5 6C15.46 6 13 8.46 13 11.5c0 1.33.47 2.55 1.26 3.5H9.74c.79-.95 1.26-2.17 1.26-3.5C11 8.46 8.54 6 5.5 6S0 8.46 0 11.5 2.46 17 5.5 17h13c3.04 0 5.5-2.46 5.5-5.5S21.54 6 18.5 6zm-13 9C3.57 15 2 13.43 2 11.5S3.57 8 5.5 8 9 9.57 9 11.5 7.43 15 5.5 15zm13 0c-1.93 0-3.5-1.57-3.5-3.5S16.57 8 18.5 8 22 9.57 22 11.5 20.43 15 18.5 15z" + }, + "children": [] + }] +}; +exports.ic_voicemail_outline = ic_voicemail_outline; \ No newline at end of file diff --git a/dist/md/ic_voicemail_twotone.js b/dist/md/ic_voicemail_twotone.js new file mode 100644 index 000000000..e9c29dff3 --- /dev/null +++ b/dist/md/ic_voicemail_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_voicemail_twotone = void 0; +var ic_voicemail_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18.5 6C15.46 6 13 8.46 13 11.5c0 1.33.47 2.55 1.26 3.5H9.74c.79-.95 1.26-2.17 1.26-3.5C11 8.46 8.54 6 5.5 6S0 8.46 0 11.5 2.46 17 5.5 17h13c3.04 0 5.5-2.46 5.5-5.5S21.54 6 18.5 6zm-13 9C3.57 15 2 13.43 2 11.5S3.57 8 5.5 8 9 9.57 9 11.5 7.43 15 5.5 15zm13 0c-1.93 0-3.5-1.57-3.5-3.5S16.57 8 18.5 8 22 9.57 22 11.5 20.43 15 18.5 15z" + }, + "children": [] + }] +}; +exports.ic_voicemail_twotone = ic_voicemail_twotone; \ No newline at end of file diff --git a/dist/md/ic_volume_down.js b/dist/md/ic_volume_down.js new file mode 100644 index 000000000..e450e3a6c --- /dev/null +++ b/dist/md/ic_volume_down.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_volume_down = void 0; +var ic_volume_down = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18.5 12c0-1.77-1.02-3.29-2.5-4.03v8.05c1.48-.73 2.5-2.25 2.5-4.02zM5 9v6h4l5 5V4L9 9H5z" + }, + "children": [] + }] +}; +exports.ic_volume_down = ic_volume_down; \ No newline at end of file diff --git a/dist/md/ic_volume_down_outline.js b/dist/md/ic_volume_down_outline.js new file mode 100644 index 000000000..a2359df9e --- /dev/null +++ b/dist/md/ic_volume_down_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_volume_down_outline = void 0; +var ic_volume_down_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 7.97v8.05c1.48-.73 2.5-2.25 2.5-4.02 0-1.77-1.02-3.29-2.5-4.03zM5 9v6h4l5 5V4L9 9H5zm7-.17v6.34L9.83 13H7v-2h2.83L12 8.83z" + }, + "children": [] + }] +}; +exports.ic_volume_down_outline = ic_volume_down_outline; \ No newline at end of file diff --git a/dist/md/ic_volume_down_twotone.js b/dist/md/ic_volume_down_twotone.js new file mode 100644 index 000000000..bb336e820 --- /dev/null +++ b/dist/md/ic_volume_down_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_volume_down_twotone = void 0; +var ic_volume_down_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 13h2.83L12 15.17V8.83L9.83 11H7z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 7.97v8.05c1.48-.73 2.5-2.25 2.5-4.02 0-1.77-1.02-3.29-2.5-4.03zM5 9v6h4l5 5V4L9 9H5zm7-.17v6.34L9.83 13H7v-2h2.83L12 8.83z" + }, + "children": [] + }] +}; +exports.ic_volume_down_twotone = ic_volume_down_twotone; \ No newline at end of file diff --git a/dist/md/ic_volume_mute.js b/dist/md/ic_volume_mute.js new file mode 100644 index 000000000..0e3efba0f --- /dev/null +++ b/dist/md/ic_volume_mute.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_volume_mute = void 0; +var ic_volume_mute = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 9v6h4l5 5V4l-5 5H7z" + }, + "children": [] + }] +}; +exports.ic_volume_mute = ic_volume_mute; \ No newline at end of file diff --git a/dist/md/ic_volume_mute_outline.js b/dist/md/ic_volume_mute_outline.js new file mode 100644 index 000000000..2d8ad8085 --- /dev/null +++ b/dist/md/ic_volume_mute_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_volume_mute_outline = void 0; +var ic_volume_mute_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 8.83v6.34L11.83 13H9v-2h2.83L14 8.83M16 4l-5 5H7v6h4l5 5V4z" + }, + "children": [] + }] +}; +exports.ic_volume_mute_outline = ic_volume_mute_outline; \ No newline at end of file diff --git a/dist/md/ic_volume_mute_twotone.js b/dist/md/ic_volume_mute_twotone.js new file mode 100644 index 000000000..6b36ebbb4 --- /dev/null +++ b/dist/md/ic_volume_mute_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_volume_mute_twotone = void 0; +var ic_volume_mute_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9 13h2.83L14 15.17V8.83L11.83 11H9z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 9v6h4l5 5V4l-5 5H7zm7-.17v6.34L11.83 13H9v-2h2.83L14 8.83z" + }, + "children": [] + }] +}; +exports.ic_volume_mute_twotone = ic_volume_mute_twotone; \ No newline at end of file diff --git a/dist/md/ic_volume_off.js b/dist/md/ic_volume_off.js new file mode 100644 index 000000000..1ff5ef40f --- /dev/null +++ b/dist/md/ic_volume_off.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_volume_off = void 0; +var ic_volume_off = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16.5 12c0-1.77-1.02-3.29-2.5-4.03v2.21l2.45 2.45c.03-.2.05-.41.05-.63zm2.5 0c0 .94-.2 1.82-.54 2.64l1.51 1.51C20.63 14.91 21 13.5 21 12c0-4.28-2.99-7.86-7-8.77v2.06c2.89.86 5 3.54 5 6.71zM4.27 3L3 4.27 7.73 9H3v6h4l5 5v-6.73l4.25 4.25c-.67.52-1.42.93-2.25 1.18v2.06c1.38-.31 2.63-.95 3.69-1.81L19.73 21 21 19.73l-9-9L4.27 3zM12 4L9.91 6.09 12 8.18V4z" + }, + "children": [] + }] +}; +exports.ic_volume_off = ic_volume_off; \ No newline at end of file diff --git a/dist/md/ic_volume_off_outline.js b/dist/md/ic_volume_off_outline.js new file mode 100644 index 000000000..d949e0e3b --- /dev/null +++ b/dist/md/ic_volume_off_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_volume_off_outline = void 0; +var ic_volume_off_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4.34 2.93L2.93 4.34 7.29 8.7 7 9H3v6h4l5 5v-6.59l4.18 4.18c-.65.49-1.38.88-2.18 1.11v2.06c1.34-.3 2.57-.92 3.61-1.75l2.05 2.05 1.41-1.41L4.34 2.93zM10 15.17L7.83 13H5v-2h2.83l.88-.88L10 11.41v3.76zM19 12c0 .82-.15 1.61-.41 2.34l1.53 1.53c.56-1.17.88-2.48.88-3.87 0-4.28-2.99-7.86-7-8.77v2.06c2.89.86 5 3.54 5 6.71zm-7-8l-1.88 1.88L12 7.76zm4.5 8c0-1.77-1.02-3.29-2.5-4.03v1.79l2.48 2.48c.01-.08.02-.16.02-.24z" + }, + "children": [] + }] +}; +exports.ic_volume_off_outline = ic_volume_off_outline; \ No newline at end of file diff --git a/dist/md/ic_volume_off_twotone.js b/dist/md/ic_volume_off_twotone.js new file mode 100644 index 000000000..bd9c53662 --- /dev/null +++ b/dist/md/ic_volume_off_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_volume_off_twotone = void 0; +var ic_volume_off_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7.83 11H5v2h2.83L10 15.17v-3.76l-1.29-1.29z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4.34 2.93L2.93 4.34 7.29 8.7 7 9H3v6h4l5 5v-6.59l4.18 4.18c-.65.49-1.38.88-2.18 1.11v2.06c1.34-.3 2.57-.92 3.61-1.75l2.05 2.05 1.41-1.41L4.34 2.93zM10 15.17L7.83 13H5v-2h2.83l.88-.88L10 11.41v3.76zM19 12c0 .82-.15 1.61-.41 2.34l1.53 1.53c.56-1.17.88-2.48.88-3.87 0-4.28-2.99-7.86-7-8.77v2.06c2.89.86 5 3.54 5 6.71zm-7-8l-1.88 1.88L12 7.76zm4.5 8c0-1.77-1.02-3.29-2.5-4.03v1.79l2.48 2.48c.01-.08.02-.16.02-.24z" + }, + "children": [] + }] +}; +exports.ic_volume_off_twotone = ic_volume_off_twotone; \ No newline at end of file diff --git a/dist/md/ic_volume_up.js b/dist/md/ic_volume_up.js new file mode 100644 index 000000000..27e4587c3 --- /dev/null +++ b/dist/md/ic_volume_up.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_volume_up = void 0; +var ic_volume_up = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 9v6h4l5 5V4L7 9H3zm13.5 3c0-1.77-1.02-3.29-2.5-4.03v8.05c1.48-.73 2.5-2.25 2.5-4.02zM14 3.23v2.06c2.89.86 5 3.54 5 6.71s-2.11 5.85-5 6.71v2.06c4.01-.91 7-4.49 7-8.77s-2.99-7.86-7-8.77z" + }, + "children": [] + }] +}; +exports.ic_volume_up = ic_volume_up; \ No newline at end of file diff --git a/dist/md/ic_volume_up_outline.js b/dist/md/ic_volume_up_outline.js new file mode 100644 index 000000000..da6331a32 --- /dev/null +++ b/dist/md/ic_volume_up_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_volume_up_outline = void 0; +var ic_volume_up_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 9v6h4l5 5V4L7 9H3zm7-.17v6.34L7.83 13H5v-2h2.83L10 8.83zM16.5 12c0-1.77-1.02-3.29-2.5-4.03v8.05c1.48-.73 2.5-2.25 2.5-4.02zM14 3.23v2.06c2.89.86 5 3.54 5 6.71s-2.11 5.85-5 6.71v2.06c4.01-.91 7-4.49 7-8.77 0-4.28-2.99-7.86-7-8.77z" + }, + "children": [] + }] +}; +exports.ic_volume_up_outline = ic_volume_up_outline; \ No newline at end of file diff --git a/dist/md/ic_volume_up_twotone.js b/dist/md/ic_volume_up_twotone.js new file mode 100644 index 000000000..6a47f9689 --- /dev/null +++ b/dist/md/ic_volume_up_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_volume_up_twotone = void 0; +var ic_volume_up_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 13h2.83L10 15.17V8.83L7.83 11H5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3 9v6h4l5 5V4L7 9H3zm7-.17v6.34L7.83 13H5v-2h2.83L10 8.83zm4-.86v8.05c1.48-.73 2.5-2.25 2.5-4.02 0-1.77-1.02-3.29-2.5-4.03zm0-4.74v2.06c2.89.86 5 3.54 5 6.71s-2.11 5.85-5 6.71v2.06c4.01-.91 7-4.49 7-8.77 0-4.28-2.99-7.86-7-8.77z" + }, + "children": [] + }] +}; +exports.ic_volume_up_twotone = ic_volume_up_twotone; \ No newline at end of file diff --git a/dist/md/ic_volunteer_activism.js b/dist/md/ic_volunteer_activism.js new file mode 100644 index 000000000..e8da1c7d2 --- /dev/null +++ b/dist/md/ic_volunteer_activism.js @@ -0,0 +1,85 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_volunteer_activism = void 0; +var ic_volunteer_activism = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "height": "11", + "width": "4", + "x": "1", + "y": "11" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "11", + "width": "4", + "x": "1", + "y": "11" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M16,3.25C16.65,2.49,17.66,2,18.7,2C20.55,2,22,3.45,22,5.3c0,2.27-2.91,4.9-6,7.7c-3.09-2.81-6-5.44-6-7.7 C10,3.45,11.45,2,13.3,2C14.34,2,15.35,2.49,16,3.25z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M16,3.25C16.65,2.49,17.66,2,18.7,2C20.55,2,22,3.45,22,5.3c0,2.27-2.91,4.9-6,7.7c-3.09-2.81-6-5.44-6-7.7 C10,3.45,11.45,2,13.3,2C14.34,2,15.35,2.49,16,3.25z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20,17h-7l-2.09-0.73l0.33-0.94L13,16h2.82c0.65,0,1.18-0.53,1.18-1.18v0c0-0.49-0.31-0.93-0.77-1.11L8.97,11H7v9.02 L14,22l8.01-3v0C22,17.9,21.11,17,20,17z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,17h-7l-2.09-0.73l0.33-0.94L13,16h2.82c0.65,0,1.18-0.53,1.18-1.18v0c0-0.49-0.31-0.93-0.77-1.11L8.97,11H7v9.02 L14,22l8.01-3v0C22,17.9,21.11,17,20,17z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_volunteer_activism = ic_volunteer_activism; \ No newline at end of file diff --git a/dist/md/ic_vpn_key.js b/dist/md/ic_vpn_key.js new file mode 100644 index 000000000..59924dcc9 --- /dev/null +++ b/dist/md/ic_vpn_key.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_vpn_key = void 0; +var ic_vpn_key = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12.65 10C11.83 7.67 9.61 6 7 6c-3.31 0-6 2.69-6 6s2.69 6 6 6c2.61 0 4.83-1.67 5.65-4H17v4h4v-4h2v-4H12.65zM7 14c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" + }, + "children": [] + }] +}; +exports.ic_vpn_key = ic_vpn_key; \ No newline at end of file diff --git a/dist/md/ic_vpn_key_outline.js b/dist/md/ic_vpn_key_outline.js new file mode 100644 index 000000000..cb50a0b4e --- /dev/null +++ b/dist/md/ic_vpn_key_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_vpn_key_outline = void 0; +var ic_vpn_key_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 19h-6v-4h-2.68c-1.14 2.42-3.6 4-6.32 4-3.86 0-7-3.14-7-7s3.14-7 7-7c2.72 0 5.17 1.58 6.32 4H24v6h-2v4zm-4-2h2v-4h2v-2H11.94l-.23-.67C11.01 8.34 9.11 7 7 7c-2.76 0-5 2.24-5 5s2.24 5 5 5c2.11 0 4.01-1.34 4.71-3.33l.23-.67H18v4zM7 15c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3zm0-4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z" + }, + "children": [] + }] +}; +exports.ic_vpn_key_outline = ic_vpn_key_outline; \ No newline at end of file diff --git a/dist/md/ic_vpn_key_twotone.js b/dist/md/ic_vpn_key_twotone.js new file mode 100644 index 000000000..d4829b214 --- /dev/null +++ b/dist/md/ic_vpn_key_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_vpn_key_twotone = void 0; +var ic_vpn_key_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.71 10.33C11.01 8.34 9.11 7 7 7c-2.76 0-5 2.24-5 5s2.24 5 5 5c2.11 0 4.01-1.34 4.71-3.33l.23-.67H18v4h2v-4h2v-2H11.94l-.23-.67zM7 15c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 5c-3.86 0-7 3.14-7 7s3.14 7 7 7c2.72 0 5.17-1.58 6.32-4H16v4h6v-4h2V9H13.32C12.17 6.58 9.72 5 7 5zm15 8h-2v4h-2v-4h-6.06l-.23.67C11.01 15.66 9.11 17 7 17c-2.76 0-5-2.24-5-5s2.24-5 5-5c2.11 0 4.01 1.34 4.71 3.33l.23.67H22v2zM7 9c-1.65 0-3 1.35-3 3s1.35 3 3 3 3-1.35 3-3-1.35-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" + }, + "children": [] + }] +}; +exports.ic_vpn_key_twotone = ic_vpn_key_twotone; \ No newline at end of file diff --git a/dist/md/ic_vpn_lock.js b/dist/md/ic_vpn_lock.js new file mode 100644 index 000000000..af36b318d --- /dev/null +++ b/dist/md/ic_vpn_lock.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_vpn_lock = void 0; +var ic_vpn_lock = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22 4v-.5C22 2.12 20.88 1 19.5 1S17 2.12 17 3.5V4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm-.8 0h-3.4v-.5c0-.94.76-1.7 1.7-1.7s1.7.76 1.7 1.7V4zm-2.28 8c.04.33.08.66.08 1 0 2.08-.8 3.97-2.1 5.39-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H7v-2h2c.55 0 1-.45 1-1V8h2c1.1 0 2-.9 2-2V3.46c-.95-.3-1.95-.46-3-.46C5.48 3 1 7.48 1 13s4.48 10 10 10 10-4.48 10-10c0-.34-.02-.67-.05-1h-2.03zM10 20.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L8 16v1c0 1.1.9 2 2 2v1.93z" + }, + "children": [] + }] +}; +exports.ic_vpn_lock = ic_vpn_lock; \ No newline at end of file diff --git a/dist/md/ic_vpn_lock_outline.js b/dist/md/ic_vpn_lock_outline.js new file mode 100644 index 000000000..dde3def78 --- /dev/null +++ b/dist/md/ic_vpn_lock_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_vpn_lock_outline = void 0; +var ic_vpn_lock_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18.92 12c.04.33.08.66.08 1 0 2.08-.8 3.97-2.1 5.39-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H7v-2h2c.55 0 1-.45 1-1V8h2c1.1 0 2-.9 2-2V3.46c-.95-.3-1.95-.46-3-.46C5.48 3 1 7.48 1 13s4.48 10 10 10 10-4.48 10-10c0-.34-.02-.67-.05-1h-2.03zM10 20.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L8 16v1c0 1.1.9 2 2 2v1.93zM22 4v-.5C22 2.12 20.88 1 19.5 1S17 2.12 17 3.5V4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm-1 0h-3v-.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5V4z" + }, + "children": [] + }] +}; +exports.ic_vpn_lock_outline = ic_vpn_lock_outline; \ No newline at end of file diff --git a/dist/md/ic_vpn_lock_twotone.js b/dist/md/ic_vpn_lock_twotone.js new file mode 100644 index 000000000..863dd7138 --- /dev/null +++ b/dist/md/ic_vpn_lock_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_vpn_lock_twotone = void 0; +var ic_vpn_lock_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 8h-2v2c0 .55-.45 1-1 1H7v2h6c.55 0 1 .45 1 1v3h1c.9 0 1.64.58 1.9 1.39C18.2 16.97 19 15.08 19 13c0-.34-.04-.67-.08-1H17c-1.65 0-3-1.35-3-3V6c0 1.1-.9 2-2 2zm-4 9v-1l-4.79-4.79C3.08 11.79 3 12.38 3 13c0 4.08 3.05 7.44 7 7.93V19c-1.1 0-2-.9-2-2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18.92 12c.04.33.08.66.08 1 0 2.08-.8 3.97-2.1 5.39-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H7v-2h2c.55 0 1-.45 1-1V8h2c1.1 0 2-.9 2-2V3.46c-.95-.3-1.95-.46-3-.46C5.48 3 1 7.48 1 13s4.48 10 10 10 10-4.48 10-10c0-.34-.02-.67-.05-1h-2.03zM10 20.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L8 16v1c0 1.1.9 2 2 2v1.93zM22 4v-.5C22 2.12 20.88 1 19.5 1S17 2.12 17 3.5V4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm-1 0h-3v-.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5V4z" + }, + "children": [] + }] +}; +exports.ic_vpn_lock_twotone = ic_vpn_lock_twotone; \ No newline at end of file diff --git a/dist/md/ic_wallpaper.js b/dist/md/ic_wallpaper.js new file mode 100644 index 000000000..423e6d0a0 --- /dev/null +++ b/dist/md/ic_wallpaper.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_wallpaper = void 0; +var ic_wallpaper = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 4h7V2H4c-1.1 0-2 .9-2 2v7h2V4zm6 9l-4 5h12l-3-4-2.03 2.71L10 13zm7-4.5c0-.83-.67-1.5-1.5-1.5S14 7.67 14 8.5s.67 1.5 1.5 1.5S17 9.33 17 8.5zM20 2h-7v2h7v7h2V4c0-1.1-.9-2-2-2zm0 18h-7v2h7c1.1 0 2-.9 2-2v-7h-2v7zM4 13H2v7c0 1.1.9 2 2 2h7v-2H4v-7z" + }, + "children": [] + }] +}; +exports.ic_wallpaper = ic_wallpaper; \ No newline at end of file diff --git a/dist/md/ic_wallpaper_outline.js b/dist/md/ic_wallpaper_outline.js new file mode 100644 index 000000000..a6994f41f --- /dev/null +++ b/dist/md/ic_wallpaper_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_wallpaper_outline = void 0; +var ic_wallpaper_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 4h7V2H4c-1.1 0-2 .9-2 2v7h2V4zm6 9l-4 5h12l-3-4-2.03 2.71L10 13zm7-4.5c0-.83-.67-1.5-1.5-1.5S14 7.67 14 8.5s.67 1.5 1.5 1.5S17 9.33 17 8.5zM20 2h-7v2h7v7h2V4c0-1.1-.9-2-2-2zm0 18h-7v2h7c1.1 0 2-.9 2-2v-7h-2v7zM4 13H2v7c0 1.1.9 2 2 2h7v-2H4v-7z" + }, + "children": [] + }] +}; +exports.ic_wallpaper_outline = ic_wallpaper_outline; \ No newline at end of file diff --git a/dist/md/ic_wallpaper_twotone.js b/dist/md/ic_wallpaper_twotone.js new file mode 100644 index 000000000..1f1d4eec1 --- /dev/null +++ b/dist/md/ic_wallpaper_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_wallpaper_twotone = void 0; +var ic_wallpaper_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 4h7V2H4c-1.1 0-2 .9-2 2v7h2V4zm6 9l-4 5h12l-3-4-2.03 2.71L10 13zm7-4.5c0-.83-.67-1.5-1.5-1.5S14 7.67 14 8.5s.67 1.5 1.5 1.5S17 9.33 17 8.5zM20 2h-7v2h7v7h2V4c0-1.1-.9-2-2-2zm0 18h-7v2h7c1.1 0 2-.9 2-2v-7h-2v7zM4 13H2v7c0 1.1.9 2 2 2h7v-2H4v-7z" + }, + "children": [] + }] +}; +exports.ic_wallpaper_twotone = ic_wallpaper_twotone; \ No newline at end of file diff --git a/dist/md/ic_warning.js b/dist/md/ic_warning.js new file mode 100644 index 000000000..45fa28edc --- /dev/null +++ b/dist/md/ic_warning.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_warning = void 0; +var ic_warning = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M1 21h22L12 2 1 21zm12-3h-2v-2h2v2zm0-4h-2v-4h2v4z" + }, + "children": [] + }] +}; +exports.ic_warning = ic_warning; \ No newline at end of file diff --git a/dist/md/ic_warning_amber_outline.js b/dist/md/ic_warning_amber_outline.js new file mode 100644 index 000000000..00f4bcee5 --- /dev/null +++ b/dist/md/ic_warning_amber_outline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_warning_amber_outline = void 0; +var ic_warning_amber_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 5.99L19.53 19H4.47L12 5.99M12 2L1 21h22L12 2zm1 14h-2v2h2v-2zm0-6h-2v4h2v-4z" + }, + "children": [] + }] +}; +exports.ic_warning_amber_outline = ic_warning_amber_outline; \ No newline at end of file diff --git a/dist/md/ic_warning_amber_twotone.js b/dist/md/ic_warning_amber_twotone.js new file mode 100644 index 000000000..66b9821fa --- /dev/null +++ b/dist/md/ic_warning_amber_twotone.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_warning_amber_twotone = void 0; +var ic_warning_amber_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M1 21h22L12 2 1 21zm3.47-2L12 5.99 19.53 19H4.47zM11 16h2v2h-2zm0-6h2v4h-2z" + }, + "children": [] + }] +}; +exports.ic_warning_amber_twotone = ic_warning_amber_twotone; \ No newline at end of file diff --git a/dist/md/ic_warning_outline.js b/dist/md/ic_warning_outline.js new file mode 100644 index 000000000..932150584 --- /dev/null +++ b/dist/md/ic_warning_outline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_warning_outline = void 0; +var ic_warning_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M1 21h22L12 2 1 21zm12-3h-2v-2h2v2zm0-4h-2v-4h2v4z" + }, + "children": [] + }] +}; +exports.ic_warning_outline = ic_warning_outline; \ No newline at end of file diff --git a/dist/md/ic_warning_twotone.js b/dist/md/ic_warning_twotone.js new file mode 100644 index 000000000..491d9ca9f --- /dev/null +++ b/dist/md/ic_warning_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_warning_twotone = void 0; +var ic_warning_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M4.47 19h15.06L12 5.99 4.47 19zM13 18h-2v-2h2v2zm0-4h-2v-4h2v4z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M1 21h22L12 2 1 21zm3.47-2L12 5.99 19.53 19H4.47zM11 16h2v2h-2zm0-6h2v4h-2z" + }, + "children": [] + }] +}; +exports.ic_warning_twotone = ic_warning_twotone; \ No newline at end of file diff --git a/dist/md/ic_wash.js b/dist/md/ic_wash.js new file mode 100644 index 000000000..65bc468f1 --- /dev/null +++ b/dist/md/ic_wash.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_wash = void 0; +var ic_wash = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M18.5,8C19.88,8,21,6.88,21,5.5C21,3.83,18.5,1,18.5,1S16,3.83,16,5.5C16,6.88,17.12,8,18.5,8z M13.5,9 C14.33,9,15,8.33,15,7.5C15,6.66,13.5,5,13.5,5S12,6.66,12,7.5C12,8.33,12.67,9,13.5,9z M9.12,5l-7.18,6.79 C1.34,12.35,1,13.14,1,13.97V20c0,1.66,1.34,3,3,3h6.25H12h5.75c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h7.75 c0.69,0,1.25-0.56,1.25-1.25S20.44,17,19.75,17H12v-1h8.75c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h6.75 c0.69,0,1.25-0.56,1.25-1.25S19.44,10,18.75,10H8.86c0.64-1.11,1.48-2.58,1.49-2.61c0.09-0.16,0.14-0.33,0.14-0.53 c0-0.26-0.09-0.5-0.26-0.7C10.22,6.12,9.12,5,9.12,5L9.12,5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18.5,8C19.88,8,21,6.88,21,5.5C21,3.83,18.5,1,18.5,1S16,3.83,16,5.5C16,6.88,17.12,8,18.5,8z M13.5,9 C14.33,9,15,8.33,15,7.5C15,6.66,13.5,5,13.5,5S12,6.66,12,7.5C12,8.33,12.67,9,13.5,9z M9.12,5l-7.18,6.79 C1.34,12.35,1,13.14,1,13.97V20c0,1.66,1.34,3,3,3h6.25H12h5.75c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h7.75 c0.69,0,1.25-0.56,1.25-1.25S20.44,17,19.75,17H12v-1h8.75c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h6.75 c0.69,0,1.25-0.56,1.25-1.25S19.44,10,18.75,10H8.86c0.64-1.11,1.48-2.58,1.49-2.61c0.09-0.16,0.14-0.33,0.14-0.53 c0-0.26-0.09-0.5-0.26-0.7C10.22,6.12,9.12,5,9.12,5L9.12,5z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_wash = ic_wash; \ No newline at end of file diff --git a/dist/md/ic_wash_outline.js b/dist/md/ic_wash_outline.js new file mode 100644 index 000000000..42ab45f85 --- /dev/null +++ b/dist/md/ic_wash_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_wash_outline = void 0; +var ic_wash_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20.75,16c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h6.75c0.69,0,1.25-0.56,1.25-1.25 c0-0.67-0.53-1.2-1.18-1.24L8.87,10l1.48-2.6c0.09-0.17,0.14-0.34,0.14-0.54c0-0.26-0.09-0.5-0.26-0.7L9.12,5l-7.18,6.8 C1.34,12.36,1,13.15,1,13.97V20c0,1.66,1.34,3,3,3h13.75c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h7.75 c0.69,0,1.25-0.56,1.25-1.25S20.44,17,19.75,17H12v-1H20.75z M10,21H4c-0.55,0-1-0.45-1-1v-6c0-0.39,0.23-0.64,0.36-0.75L7,9.87V12 l3,0V21z M13.5,9C14.33,9,15,8.33,15,7.5C15,6.66,13.5,5,13.5,5S12,6.66,12,7.5C12,8.33,12.67,9,13.5,9z M18.5,1 c0,0-2.5,2.83-2.5,4.5C16,6.88,17.12,8,18.5,8S21,6.88,21,5.5C21,3.83,18.5,1,18.5,1z M18.5,6.5c-0.55,0-1-0.45-1-1 c0-0.4,0.43-1.22,1-2.05c0.57,0.83,1,1.65,1,2.05C19.5,6.05,19.05,6.5,18.5,6.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20.75,16c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h6.75c0.69,0,1.25-0.56,1.25-1.25 c0-0.67-0.53-1.2-1.18-1.24L8.87,10l1.48-2.6c0.09-0.17,0.14-0.34,0.14-0.54c0-0.26-0.09-0.5-0.26-0.7L9.12,5l-7.18,6.8 C1.34,12.36,1,13.15,1,13.97V20c0,1.66,1.34,3,3,3h13.75c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h7.75 c0.69,0,1.25-0.56,1.25-1.25S20.44,17,19.75,17H12v-1H20.75z M10,21H4c-0.55,0-1-0.45-1-1v-6c0-0.39,0.23-0.64,0.36-0.75L7,9.87V12 l3,0V21z M13.5,9C14.33,9,15,8.33,15,7.5C15,6.66,13.5,5,13.5,5S12,6.66,12,7.5C12,8.33,12.67,9,13.5,9z M18.5,1 c0,0-2.5,2.83-2.5,4.5C16,6.88,17.12,8,18.5,8S21,6.88,21,5.5C21,3.83,18.5,1,18.5,1z M18.5,6.5c-0.55,0-1-0.45-1-1 c0-0.4,0.43-1.22,1-2.05c0.57,0.83,1,1.65,1,2.05C19.5,6.05,19.05,6.5,18.5,6.5z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_wash_outline = ic_wash_outline; \ No newline at end of file diff --git a/dist/md/ic_wash_twotone.js b/dist/md/ic_wash_twotone.js new file mode 100644 index 000000000..ab66f8e06 --- /dev/null +++ b/dist/md/ic_wash_twotone.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_wash_twotone = void 0; +var ic_wash_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M10,21H4c-0.55,0-1-0.45-1-1v-6c0-0.39,0.23-0.64,0.36-0.75L7,9.87V12l3,0V21z M18.5,6.5c-0.55,0-1-0.45-1-1 c0-0.4,0.43-1.22,1-2.05c0.57,0.83,1,1.65,1,2.05C19.5,6.05,19.05,6.5,18.5,6.5z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M10,21H4c-0.55,0-1-0.45-1-1v-6c0-0.39,0.23-0.64,0.36-0.75L7,9.87V12l3,0V21z M18.5,6.5c-0.55,0-1-0.45-1-1 c0-0.4,0.43-1.22,1-2.05c0.57,0.83,1,1.65,1,2.05C19.5,6.05,19.05,6.5,18.5,6.5z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20.75,16c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h6.75c0.69,0,1.25-0.56,1.25-1.25 c0-0.67-0.53-1.2-1.18-1.24L8.87,10l1.48-2.6c0.09-0.17,0.14-0.34,0.14-0.54c0-0.26-0.09-0.5-0.26-0.7L9.12,5l-7.18,6.8 C1.34,12.36,1,13.15,1,13.97V20c0,1.66,1.34,3,3,3h13.75c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h7.75 c0.69,0,1.25-0.56,1.25-1.25S20.44,17,19.75,17H12v-1H20.75z M10,21H4c-0.55,0-1-0.45-1-1v-6c0-0.39,0.23-0.64,0.36-0.75L7,9.87V12 l3,0V21z M13.5,9C14.33,9,15,8.33,15,7.5C15,6.66,13.5,5,13.5,5S12,6.66,12,7.5C12,8.33,12.67,9,13.5,9z M18.5,1 c0,0-2.5,2.83-2.5,4.5C16,6.88,17.12,8,18.5,8S21,6.88,21,5.5C21,3.83,18.5,1,18.5,1z M18.5,6.5c-0.55,0-1-0.45-1-1 c0-0.4,0.43-1.22,1-2.05c0.57,0.83,1,1.65,1,2.05C19.5,6.05,19.05,6.5,18.5,6.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20.75,16c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h6.75c0.69,0,1.25-0.56,1.25-1.25 c0-0.67-0.53-1.2-1.18-1.24L8.87,10l1.48-2.6c0.09-0.17,0.14-0.34,0.14-0.54c0-0.26-0.09-0.5-0.26-0.7L9.12,5l-7.18,6.8 C1.34,12.36,1,13.15,1,13.97V20c0,1.66,1.34,3,3,3h13.75c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h7.75 c0.69,0,1.25-0.56,1.25-1.25S20.44,17,19.75,17H12v-1H20.75z M10,21H4c-0.55,0-1-0.45-1-1v-6c0-0.39,0.23-0.64,0.36-0.75L7,9.87V12 l3,0V21z M13.5,9C14.33,9,15,8.33,15,7.5C15,6.66,13.5,5,13.5,5S12,6.66,12,7.5C12,8.33,12.67,9,13.5,9z M18.5,1 c0,0-2.5,2.83-2.5,4.5C16,6.88,17.12,8,18.5,8S21,6.88,21,5.5C21,3.83,18.5,1,18.5,1z M18.5,6.5c-0.55,0-1-0.45-1-1 c0-0.4,0.43-1.22,1-2.05c0.57,0.83,1,1.65,1,2.05C19.5,6.05,19.05,6.5,18.5,6.5z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_wash_twotone = ic_wash_twotone; \ No newline at end of file diff --git a/dist/md/ic_watch.js b/dist/md/ic_watch.js new file mode 100644 index 000000000..af107c49e --- /dev/null +++ b/dist/md/ic_watch.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_watch = void 0; +var ic_watch = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none", + "opacity": ".1" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 12c0-2.54-1.19-4.81-3.04-6.27L16 0H8l-.95 5.73C5.19 7.19 4 9.45 4 12s1.19 4.81 3.05 6.27L8 24h8l.96-5.73C18.81 16.81 20 14.54 20 12zM6 12c0-3.31 2.69-6 6-6s6 2.69 6 6-2.69 6-6 6-6-2.69-6-6z" + }, + "children": [] + }] +}; +exports.ic_watch = ic_watch; \ No newline at end of file diff --git a/dist/md/ic_watch_later.js b/dist/md/ic_watch_later.js new file mode 100644 index 000000000..29d1e381d --- /dev/null +++ b/dist/md/ic_watch_later.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_watch_later = void 0; +var ic_watch_later = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M16.2,16.2L11,13V7h1.5v5.2l4.5,2.7L16.2,16.2z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M16.2,16.2L11,13V7h1.5v5.2l4.5,2.7L16.2,16.2z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_watch_later = ic_watch_later; \ No newline at end of file diff --git a/dist/md/ic_watch_later_outline.js b/dist/md/ic_watch_later_outline.js new file mode 100644 index 000000000..034206d9a --- /dev/null +++ b/dist/md/ic_watch_later_outline.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_watch_later_outline = void 0; +var ic_watch_later_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8 S16.41,20,12,20z M12.5,7H11v6l5.2,3.2l0.8-1.3l-4.5-2.7V7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8 S16.41,20,12,20z M12.5,7H11v6l5.2,3.2l0.8-1.3l-4.5-2.7V7z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_watch_later_outline = ic_watch_later_outline; \ No newline at end of file diff --git a/dist/md/ic_watch_later_twotone.js b/dist/md/ic_watch_later_twotone.js new file mode 100644 index 000000000..689eb821a --- /dev/null +++ b/dist/md/ic_watch_later_twotone.js @@ -0,0 +1,73 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_watch_later_twotone = void 0; +var ic_watch_later_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,4c-4.41,0-8,3.59-8,8s3.59,8,8,8s8-3.59,8-8S16.41,4,12,4z M16.2,16.2 L11,13V7h1.5v5.2l4.5,2.7L16.2,16.2z", + "enable-background": "new", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,4c-4.41,0-8,3.59-8,8s3.59,8,8,8s8-3.59,8-8S16.41,4,12,4z M16.2,16.2 L11,13V7h1.5v5.2l4.5,2.7L16.2,16.2z", + "enable-background": "new", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8 S16.41,20,12,20z M12.5,7H11v6l5.2,3.2l0.8-1.3l-4.5-2.7V7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8 S16.41,20,12,20z M12.5,7H11v6l5.2,3.2l0.8-1.3l-4.5-2.7V7z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_watch_later_twotone = ic_watch_later_twotone; \ No newline at end of file diff --git a/dist/md/ic_watch_outline.js b/dist/md/ic_watch_outline.js new file mode 100644 index 000000000..434cc8d72 --- /dev/null +++ b/dist/md/ic_watch_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_watch_outline = void 0; +var ic_watch_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14.31 2l.41 2.48C13.87 4.17 12.96 4 12 4c-.95 0-1.87.17-2.71.47L9.7 2h4.61m.41 17.52L14.31 22H9.7l-.41-2.47c.84.3 1.76.47 2.71.47.96 0 1.87-.17 2.72-.48M16 0H8l-.95 5.73C5.19 7.19 4 9.45 4 12s1.19 4.81 3.05 6.27L8 24h8l.96-5.73C18.81 16.81 20 14.54 20 12s-1.19-4.81-3.04-6.27L16 0zm-4 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z" + }, + "children": [] + }] +}; +exports.ic_watch_outline = ic_watch_outline; \ No newline at end of file diff --git a/dist/md/ic_watch_twotone.js b/dist/md/ic_watch_twotone.js new file mode 100644 index 000000000..bf0eb80f7 --- /dev/null +++ b/dist/md/ic_watch_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_watch_twotone = void 0; +var ic_watch_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14.72 4.48L14.31 2H9.7l-.41 2.47C10.13 4.17 11.05 4 12 4c.96 0 1.87.17 2.72.48zM9.29 19.53L9.7 22h4.61l.41-2.48c-.85.31-1.76.48-2.72.48-.95 0-1.87-.17-2.71-.47z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16.96 5.73L16 0H8l-.95 5.73C5.19 7.19 4 9.45 4 12s1.19 4.81 3.05 6.27L8 24h8l.96-5.73C18.81 16.81 20 14.54 20 12s-1.19-4.81-3.04-6.27zM9.7 2h4.61l.41 2.48C13.87 4.17 12.96 4 12 4c-.95 0-1.87.17-2.71.47L9.7 2zm4.61 20H9.7l-.41-2.47c.84.3 1.76.47 2.71.47.96 0 1.87-.17 2.72-.48L14.31 22zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z" + }, + "children": [] + }] +}; +exports.ic_watch_twotone = ic_watch_twotone; \ No newline at end of file diff --git a/dist/md/ic_water_damage.js b/dist/md/ic_water_damage.js new file mode 100644 index 000000000..85e2ffe60 --- /dev/null +++ b/dist/md/ic_water_damage.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_water_damage = void 0; +var ic_water_damage = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12,3L2,12h3v8h14v-8h3L12,3z M12,16c-1.1,0-2-0.9-2-2c0-1.1,2-4,2-4s2,2.9,2,4C14,15.1,13.1,16,12,16z" + }, + "children": [] + }] +}; +exports.ic_water_damage = ic_water_damage; \ No newline at end of file diff --git a/dist/md/ic_water_damage_outline.js b/dist/md/ic_water_damage_outline.js new file mode 100644 index 000000000..5acb089d8 --- /dev/null +++ b/dist/md/ic_water_damage_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_water_damage_outline = void 0; +var ic_water_damage_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12,3L2,12h3v8h14v-8h3L12,3z M7,18v-7.81l5-4.5l5,4.5V18H7z M14,14c0,1.1-0.9,2-2,2s-2-0.9-2-2c0-1.1,2-4,2-4 S14,12.9,14,14z" + }, + "children": [] + }] +}; +exports.ic_water_damage_outline = ic_water_damage_outline; \ No newline at end of file diff --git a/dist/md/ic_water_damage_twotone.js b/dist/md/ic_water_damage_twotone.js new file mode 100644 index 000000000..b33f3b761 --- /dev/null +++ b/dist/md/ic_water_damage_twotone.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_water_damage_twotone = void 0; +var ic_water_damage_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12,5.69l-5,4.5V18h10v-7.81L12,5.69z M12,16c-1.1,0-2-0.9-2-2c0-1.1,2-4,2-4s2,2.9,2,4 C14,15.1,13.1,16,12,16z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12,3L2,12h3v8h14v-8h3L12,3z M7,18v-7.81l5-4.5l5,4.5V18H7z M14,14c0,1.1-0.9,2-2,2s-2-0.9-2-2c0-1.1,2-4,2-4 S14,12.9,14,14z" + }, + "children": [] + }] +}; +exports.ic_water_damage_twotone = ic_water_damage_twotone; \ No newline at end of file diff --git a/dist/md/ic_waterfall_chart.js b/dist/md/ic_waterfall_chart.js new file mode 100644 index 000000000..1f9777594 --- /dev/null +++ b/dist/md/ic_waterfall_chart.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_waterfall_chart = void 0; +var ic_waterfall_chart = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 4h3v16h-3zM3 13h3v7H3zm11-9h3v3h-3zm-4 1h3v4h-3zm-3 5h3v4H7z" + }, + "children": [] + }] +}; +exports.ic_waterfall_chart = ic_waterfall_chart; \ No newline at end of file diff --git a/dist/md/ic_waves.js b/dist/md/ic_waves.js new file mode 100644 index 000000000..b6b15c843 --- /dev/null +++ b/dist/md/ic_waves.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_waves = void 0; +var ic_waves = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M17 16.99c-1.35 0-2.2.42-2.95.8-.65.33-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.38-1.57-.8-2.95-.8s-2.2.42-2.95.8c-.65.33-1.17.6-2.05.6v1.95c1.35 0 2.2-.42 2.95-.8.65-.33 1.17-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.42 2.95-.8c.65-.33 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.75.38 1.58.8 2.95.8v-1.95c-.9 0-1.4-.25-2.05-.6-.75-.38-1.6-.8-2.95-.8zm0-4.45c-1.35 0-2.2.43-2.95.8-.65.32-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.38-1.57-.8-2.95-.8s-2.2.43-2.95.8c-.65.32-1.17.6-2.05.6v1.95c1.35 0 2.2-.43 2.95-.8.65-.35 1.15-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.35 1.15-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.58.8 2.95.8v-1.95c-.9 0-1.4-.25-2.05-.6-.75-.38-1.6-.8-2.95-.8zm2.95-8.08c-.75-.38-1.58-.8-2.95-.8s-2.2.42-2.95.8c-.65.32-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.37-1.57-.8-2.95-.8s-2.2.42-2.95.8c-.65.33-1.17.6-2.05.6v1.93c1.35 0 2.2-.43 2.95-.8.65-.33 1.17-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.32 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.75.38 1.58.8 2.95.8V5.04c-.9 0-1.4-.25-2.05-.58zM17 8.09c-1.35 0-2.2.43-2.95.8-.65.35-1.15.6-2.05.6s-1.4-.25-2.05-.6c-.75-.38-1.57-.8-2.95-.8s-2.2.43-2.95.8c-.65.35-1.15.6-2.05.6v1.95c1.35 0 2.2-.43 2.95-.8.65-.32 1.18-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.32 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.75.38 1.58.8 2.95.8V9.49c-.9 0-1.4-.25-2.05-.6-.75-.38-1.6-.8-2.95-.8z" + }, + "children": [] + }] +}; +exports.ic_waves = ic_waves; \ No newline at end of file diff --git a/dist/md/ic_waves_outline.js b/dist/md/ic_waves_outline.js new file mode 100644 index 000000000..42615f5f4 --- /dev/null +++ b/dist/md/ic_waves_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_waves_outline = void 0; +var ic_waves_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 16.99c-1.35 0-2.2.42-2.95.8-.65.33-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.38-1.57-.8-2.95-.8s-2.2.42-2.95.8c-.65.33-1.17.6-2.05.6v1.95c1.35 0 2.2-.42 2.95-.8.65-.33 1.17-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.42 2.95-.8c.65-.33 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.75.38 1.58.8 2.95.8v-1.95c-.9 0-1.4-.25-2.05-.6-.75-.38-1.6-.8-2.95-.8zm0-4.45c-1.35 0-2.2.43-2.95.8-.65.32-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.38-1.57-.8-2.95-.8s-2.2.43-2.95.8c-.65.32-1.17.6-2.05.6v1.95c1.35 0 2.2-.43 2.95-.8.65-.35 1.15-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.35 1.15-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.58.8 2.95.8v-1.95c-.9 0-1.4-.25-2.05-.6-.75-.38-1.6-.8-2.95-.8zm2.95-8.08c-.75-.38-1.58-.8-2.95-.8s-2.2.42-2.95.8c-.65.32-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.37-1.57-.8-2.95-.8s-2.2.42-2.95.8c-.65.33-1.17.6-2.05.6v1.93c1.35 0 2.2-.43 2.95-.8.65-.33 1.17-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.32 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.75.38 1.58.8 2.95.8V5.04c-.9 0-1.4-.25-2.05-.58zM17 8.09c-1.35 0-2.2.43-2.95.8-.65.35-1.15.6-2.05.6s-1.4-.25-2.05-.6c-.75-.38-1.57-.8-2.95-.8s-2.2.43-2.95.8c-.65.35-1.15.6-2.05.6v1.95c1.35 0 2.2-.43 2.95-.8.65-.32 1.18-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.32 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.75.38 1.58.8 2.95.8V9.49c-.9 0-1.4-.25-2.05-.6-.75-.38-1.6-.8-2.95-.8z" + }, + "children": [] + }] +}; +exports.ic_waves_outline = ic_waves_outline; \ No newline at end of file diff --git a/dist/md/ic_waves_twotone.js b/dist/md/ic_waves_twotone.js new file mode 100644 index 000000000..e2bb9a07e --- /dev/null +++ b/dist/md/ic_waves_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_waves_twotone = void 0; +var ic_waves_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 16.99c-1.35 0-2.2.42-2.95.8-.65.33-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.38-1.57-.8-2.95-.8s-2.2.42-2.95.8c-.65.33-1.17.6-2.05.6v1.95c1.35 0 2.2-.42 2.95-.8.65-.33 1.17-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.42 2.95-.8c.65-.33 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.75.38 1.58.8 2.95.8v-1.95c-.9 0-1.4-.25-2.05-.6-.75-.38-1.6-.8-2.95-.8zm0-4.45c-1.35 0-2.2.43-2.95.8-.65.32-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.38-1.57-.8-2.95-.8s-2.2.43-2.95.8c-.65.32-1.17.6-2.05.6v1.95c1.35 0 2.2-.43 2.95-.8.65-.35 1.15-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.35 1.15-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.58.8 2.95.8v-1.95c-.9 0-1.4-.25-2.05-.6-.75-.38-1.6-.8-2.95-.8zm2.95-8.08c-.75-.38-1.58-.8-2.95-.8s-2.2.42-2.95.8c-.65.32-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.37-1.57-.8-2.95-.8s-2.2.42-2.95.8c-.65.33-1.17.6-2.05.6v1.93c1.35 0 2.2-.43 2.95-.8.65-.33 1.17-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.32 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.75.38 1.58.8 2.95.8V5.04c-.9 0-1.4-.25-2.05-.58zM17 8.09c-1.35 0-2.2.43-2.95.8-.65.35-1.15.6-2.05.6s-1.4-.25-2.05-.6c-.75-.38-1.57-.8-2.95-.8s-2.2.43-2.95.8c-.65.35-1.15.6-2.05.6v1.95c1.35 0 2.2-.43 2.95-.8.65-.32 1.18-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.32 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.75.38 1.58.8 2.95.8V9.49c-.9 0-1.4-.25-2.05-.6-.75-.38-1.6-.8-2.95-.8z" + }, + "children": [] + }] +}; +exports.ic_waves_twotone = ic_waves_twotone; \ No newline at end of file diff --git a/dist/md/ic_wb_auto.js b/dist/md/ic_wb_auto.js new file mode 100644 index 000000000..79fb7729f --- /dev/null +++ b/dist/md/ic_wb_auto.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_wb_auto = void 0; +var ic_wb_auto = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6.85 12.65h2.3L8 9l-1.15 3.65zM22 7l-1.2 6.29L19.3 7h-1.6l-1.49 6.29L15 7h-.76C12.77 5.17 10.53 4 8 4c-4.42 0-8 3.58-8 8s3.58 8 8 8c3.13 0 5.84-1.81 7.15-4.43l.1.43H17l1.5-6.1L20 16h1.75l2.05-9H22zm-11.7 9l-.7-2H6.4l-.7 2H3.8L7 7h2l3.2 9h-1.9z" + }, + "children": [] + }] +}; +exports.ic_wb_auto = ic_wb_auto; \ No newline at end of file diff --git a/dist/md/ic_wb_auto_outline.js b/dist/md/ic_wb_auto_outline.js new file mode 100644 index 000000000..79cc50372 --- /dev/null +++ b/dist/md/ic_wb_auto_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_wb_auto_outline = void 0; +var ic_wb_auto_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 7l-3.2 9h1.9l.7-2h3.2l.7 2h1.9L9 7H7zm-.15 5.65L8 9l1.15 3.65h-2.3zM22 7l-1.2 6.29L19.3 7h-1.6l-1.49 6.29L15 7h-.76l-.01.01C12.76 5.18 10.53 4 8 4c-4.42 0-8 3.58-8 8s3.58 8 8 8c2.96 0 5.55-1.61 6.93-4 .03-.06.05-.12.08-.18.05-.08.09-.17.14-.25l.1.43H17l1.5-6.1L20 16h1.75l2.05-9H22zm-8.63 7.67C12.38 16.64 10.35 18 8 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6c0 .96-.23 1.86-.63 2.67z" + }, + "children": [] + }] +}; +exports.ic_wb_auto_outline = ic_wb_auto_outline; \ No newline at end of file diff --git a/dist/md/ic_wb_auto_twotone.js b/dist/md/ic_wb_auto_twotone.js new file mode 100644 index 000000000..70d75e333 --- /dev/null +++ b/dist/md/ic_wb_auto_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_wb_auto_twotone = void 0; +var ic_wb_auto_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M8 6c-3.31 0-6 2.69-6 6s2.69 6 6 6c2.35 0 4.38-1.36 5.36-3.32l.01-.01c.4-.81.63-1.71.63-2.67 0-3.31-2.69-6-6-6zm2.3 10l-.7-2H6.4l-.7 2H3.8L7 7h2l3.2 9h-1.9zm-3.45-3.35h2.3L8 9z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 7l-3.2 9h1.9l.7-2h3.2l.7 2h1.9L9 7H7zm-.15 5.65L8 9l1.15 3.65h-2.3zm13.95.64L19.3 7h-1.6l-1.49 6.29L15 7h-.76l-.01.01C12.76 5.18 10.53 4 8 4c-4.42 0-8 3.58-8 8s3.58 8 8 8c2.96 0 5.55-1.61 6.93-4 .03-.06.05-.12.08-.18.05-.08.09-.17.14-.25l.1.43H17l1.5-6.1L20 16h1.75l2.05-9H22l-1.2 6.29zm-7.43 1.38C12.38 16.64 10.35 18 8 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6c0 .96-.23 1.86-.63 2.67z" + }, + "children": [] + }] +}; +exports.ic_wb_auto_twotone = ic_wb_auto_twotone; \ No newline at end of file diff --git a/dist/md/ic_wb_cloudy.js b/dist/md/ic_wb_cloudy.js new file mode 100644 index 000000000..076f5a839 --- /dev/null +++ b/dist/md/ic_wb_cloudy.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_wb_cloudy = void 0; +var ic_wb_cloudy = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.36 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.64-4.96z" + }, + "children": [] + }] +}; +exports.ic_wb_cloudy = ic_wb_cloudy; \ No newline at end of file diff --git a/dist/md/ic_wb_cloudy_outline.js b/dist/md/ic_wb_cloudy_outline.js new file mode 100644 index 000000000..4977dc038 --- /dev/null +++ b/dist/md/ic_wb_cloudy_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_wb_cloudy_outline = void 0; +var ic_wb_cloudy_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12.01 6c2.61 0 4.89 1.86 5.4 4.43l.3 1.5 1.52.11c1.56.11 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3h-13c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.95 6 12.01 6m0-2C9.12 4 6.6 5.64 5.35 8.04 2.35 8.36.01 10.91.01 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.64-4.96C18.68 6.59 15.65 4 12.01 4z" + }, + "children": [] + }] +}; +exports.ic_wb_cloudy_outline = ic_wb_cloudy_outline; \ No newline at end of file diff --git a/dist/md/ic_wb_cloudy_twotone.js b/dist/md/ic_wb_cloudy_twotone.js new file mode 100644 index 000000000..d4e2451e8 --- /dev/null +++ b/dist/md/ic_wb_cloudy_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_wb_cloudy_twotone = void 0; +var ic_wb_cloudy_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.23 12.04l-1.52-.11-.3-1.5C16.89 7.86 14.62 6 12.01 6 9.95 6 8.08 7.14 7.13 8.96l-.5.95-1.07.11c-2.02.22-3.55 1.93-3.55 3.98 0 2.21 1.79 4 4 4h13c1.65 0 3-1.35 3-3 0-1.55-1.23-2.86-2.78-2.96z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19.36 10.04C18.67 6.59 15.65 4 12.01 4 9.11 4 6.6 5.64 5.35 8.04 2.35 8.36.01 10.91.01 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19.01 18h-13c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.95 6 12.01 6c2.61 0 4.89 1.86 5.4 4.43l.3 1.5 1.52.11c1.56.11 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3z" + }, + "children": [] + }] +}; +exports.ic_wb_cloudy_twotone = ic_wb_cloudy_twotone; \ No newline at end of file diff --git a/dist/md/ic_wb_incandescent.js b/dist/md/ic_wb_incandescent.js new file mode 100644 index 000000000..01e70b816 --- /dev/null +++ b/dist/md/ic_wb_incandescent.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_wb_incandescent = void 0; +var ic_wb_incandescent = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3.55 18.54l1.41 1.41 1.79-1.8-1.41-1.41-1.79 1.8zM11 22.45h2V19.5h-2v2.95zM4 10.5H1v2h3v-2zm11-4.19V1.5H9v4.81C7.21 7.35 6 9.28 6 11.5c0 3.31 2.69 6 6 6s6-2.69 6-6c0-2.22-1.21-4.15-3-5.19zm5 4.19v2h3v-2h-3zm-2.76 7.66l1.79 1.8 1.41-1.41-1.8-1.79-1.4 1.4z" + }, + "children": [] + }] +}; +exports.ic_wb_incandescent = ic_wb_incandescent; \ No newline at end of file diff --git a/dist/md/ic_wb_incandescent_outline.js b/dist/md/ic_wb_incandescent_outline.js new file mode 100644 index 000000000..704f32867 --- /dev/null +++ b/dist/md/ic_wb_incandescent_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_wb_incandescent_outline = void 0; +var ic_wb_incandescent_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3.55 19.09l1.41 1.41 1.79-1.8-1.41-1.41zM11 20h2v3h-2zM1 11h3v2H1zm12-6.95v3.96l1 .58c1.24.72 2 2.04 2 3.46 0 2.21-1.79 4-4 4s-4-1.79-4-4c0-1.42.77-2.74 2-3.46l1-.58V4.05h2m2-2H9v4.81C7.21 7.9 6 9.83 6 12.05c0 3.31 2.69 6 6 6s6-2.69 6-6c0-2.22-1.21-4.15-3-5.19V2.05zM20 11h3v2h-3zm-2.76 7.71l1.79 1.8 1.41-1.41-1.8-1.79z" + }, + "children": [] + }] +}; +exports.ic_wb_incandescent_outline = ic_wb_incandescent_outline; \ No newline at end of file diff --git a/dist/md/ic_wb_incandescent_twotone.js b/dist/md/ic_wb_incandescent_twotone.js new file mode 100644 index 000000000..c7cd177af --- /dev/null +++ b/dist/md/ic_wb_incandescent_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_wb_incandescent_twotone = void 0; +var ic_wb_incandescent_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 8.59l-1-.58V4.05h-2v3.96l-1 .58c-1.24.72-2 2.04-2 3.46 0 2.21 1.79 4 4 4s4-1.79 4-4c0-1.42-.77-2.74-2-3.46z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M3.55 19.09l1.41 1.41 1.79-1.8-1.41-1.41zM11 20h2v3h-2zM1 11h3v2H1zm14-4.14V2.05H9v4.81C7.21 7.9 6 9.83 6 12.05c0 3.31 2.69 6 6 6s6-2.69 6-6c0-2.22-1.21-4.15-3-5.19zm-3 9.19c-2.21 0-4-1.79-4-4 0-1.42.77-2.74 2-3.46l1-.58V4.05h2v3.96l1 .58c1.24.72 2 2.04 2 3.46 0 2.21-1.79 4-4 4zM20 11h3v2h-3zm-2.76 7.71l1.79 1.8 1.41-1.41-1.8-1.79z" + }, + "children": [] + }] +}; +exports.ic_wb_incandescent_twotone = ic_wb_incandescent_twotone; \ No newline at end of file diff --git a/dist/md/ic_wb_iridescent.js b/dist/md/ic_wb_iridescent.js new file mode 100644 index 000000000..6d836b209 --- /dev/null +++ b/dist/md/ic_wb_iridescent.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_wb_iridescent = void 0; +var ic_wb_iridescent = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 14.5h14v-6H5v6zM11 .55V3.5h2V.55h-2zm8.04 2.5l-1.79 1.79 1.41 1.41 1.8-1.79-1.42-1.41zM13 22.45V19.5h-2v2.95h2zm7.45-3.91l-1.8-1.79-1.41 1.41 1.79 1.8 1.42-1.42zM3.55 4.46l1.79 1.79 1.41-1.41-1.79-1.79-1.41 1.41zm1.41 15.49l1.79-1.8-1.41-1.41-1.79 1.79 1.41 1.42z" + }, + "children": [] + }] +}; +exports.ic_wb_iridescent = ic_wb_iridescent; \ No newline at end of file diff --git a/dist/md/ic_wb_iridescent_outline.js b/dist/md/ic_wb_iridescent_outline.js new file mode 100644 index 000000000..57313405f --- /dev/null +++ b/dist/md/ic_wb_iridescent_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_wb_iridescent_outline = void 0; +var ic_wb_iridescent_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 15h14V9H5v6zm2-4h10v2H7v-2zm4-10h2v3h-2zm9.46 4.01L19.04 3.6l-1.79 1.79 1.41 1.41zM11 20h2v3h-2zm6.24-1.29l1.79 1.8 1.42-1.42-1.8-1.79zM4.96 3.595l1.788 1.79L5.34 6.79 3.553 5.003zM3.55 19.08l1.41 1.42 1.79-1.8-1.41-1.41z" + }, + "children": [] + }] +}; +exports.ic_wb_iridescent_outline = ic_wb_iridescent_outline; \ No newline at end of file diff --git a/dist/md/ic_wb_iridescent_twotone.js b/dist/md/ic_wb_iridescent_twotone.js new file mode 100644 index 000000000..d420809e7 --- /dev/null +++ b/dist/md/ic_wb_iridescent_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_wb_iridescent_twotone = void 0; +var ic_wb_iridescent_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M7 11h10v2H7z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 15h14V9H5v6zm2-4h10v2H7v-2zm4-10h2v3h-2zm6.25 4.39l1.41 1.41 1.8-1.79-1.42-1.41zM11 20h2v3h-2zm6.24-1.29l1.79 1.8 1.42-1.42-1.8-1.79zM5.34 6.805l-1.788-1.79L4.96 3.61l1.788 1.788zM3.55 19.08l1.41 1.42 1.79-1.8-1.41-1.41z" + }, + "children": [] + }] +}; +exports.ic_wb_iridescent_twotone = ic_wb_iridescent_twotone; \ No newline at end of file diff --git a/dist/md/ic_wb_shade.js b/dist/md/ic_wb_shade.js new file mode 100644 index 000000000..d8b4ed82e --- /dev/null +++ b/dist/md/ic_wb_shade.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_wb_shade = void 0; +var ic_wb_shade = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 12v2.5l5.5 5.5H22zm0 8h3l-3-3zM8 4l-6 6h2v10h8V10h2L8 4zm1 10H7v-4h2v4z" + }, + "children": [] + }] +}; +exports.ic_wb_shade = ic_wb_shade; \ No newline at end of file diff --git a/dist/md/ic_wb_sunny.js b/dist/md/ic_wb_sunny.js new file mode 100644 index 000000000..189ab29c0 --- /dev/null +++ b/dist/md/ic_wb_sunny.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_wb_sunny = void 0; +var ic_wb_sunny = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6.76 4.84l-1.8-1.79-1.41 1.41 1.79 1.79 1.42-1.41zM4 10.5H1v2h3v-2zm9-9.95h-2V3.5h2V.55zm7.45 3.91l-1.41-1.41-1.79 1.79 1.41 1.41 1.79-1.79zm-3.21 13.7l1.79 1.8 1.41-1.41-1.8-1.79-1.4 1.4zM20 10.5v2h3v-2h-3zm-8-5c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm-1 16.95h2V19.5h-2v2.95zm-7.45-3.91l1.41 1.41 1.79-1.8-1.41-1.41-1.79 1.8z" + }, + "children": [] + }] +}; +exports.ic_wb_sunny = ic_wb_sunny; \ No newline at end of file diff --git a/dist/md/ic_wb_sunny_outline.js b/dist/md/ic_wb_sunny_outline.js new file mode 100644 index 000000000..5c7e37645 --- /dev/null +++ b/dist/md/ic_wb_sunny_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_wb_sunny_outline = void 0; +var ic_wb_sunny_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6.76 4.84l-1.8-1.79-1.41 1.41 1.79 1.79zM1 10.5h3v2H1zM11 .55h2V3.5h-2zm8.04 2.495l1.408 1.407-1.79 1.79-1.407-1.408zm-1.8 15.115l1.79 1.8 1.41-1.41-1.8-1.79zM20 10.5h3v2h-3zm-8-5c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm-1 4h2v2.95h-2zm-7.45-.96l1.41 1.41 1.79-1.8-1.41-1.41z" + }, + "children": [] + }] +}; +exports.ic_wb_sunny_outline = ic_wb_sunny_outline; \ No newline at end of file diff --git a/dist/md/ic_wb_sunny_twotone.js b/dist/md/ic_wb_sunny_twotone.js new file mode 100644 index 000000000..993c3bade --- /dev/null +++ b/dist/md/ic_wb_sunny_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_wb_sunny_twotone = void 0; +var ic_wb_sunny_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 7.5c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5.34 6.25l1.42-1.41-1.8-1.79-1.41 1.41zM1 10.5h3v2H1zM11 .55h2V3.5h-2zm7.66 5.705l-1.41-1.407 1.79-1.79 1.406 1.41zM17.24 18.16l1.79 1.8 1.41-1.41-1.8-1.79zM20 10.5h3v2h-3zm-8-5c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm-1 4h2v2.95h-2zm-7.45-.96l1.41 1.41 1.79-1.8-1.41-1.41z" + }, + "children": [] + }] +}; +exports.ic_wb_sunny_twotone = ic_wb_sunny_twotone; \ No newline at end of file diff --git a/dist/md/ic_wb_twighlight.js b/dist/md/ic_wb_twighlight.js new file mode 100644 index 000000000..1dbf476b3 --- /dev/null +++ b/dist/md/ic_wb_twighlight.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_wb_twighlight = void 0; +var ic_wb_twighlight = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16.954 8.66l2.12-2.12 1.415 1.414-2.13 2.12zM17.9 14c-.5-2.85-2.95-5-5.9-5s-5.45 2.15-5.9 5h11.8zM2 16h20v4H2zm9-12h2v3h-2zM3.54 7.925L4.954 6.51l2.122 2.122-1.415 1.415z" + }, + "children": [] + }] +}; +exports.ic_wb_twighlight = ic_wb_twighlight; \ No newline at end of file diff --git a/dist/md/ic_wc.js b/dist/md/ic_wc.js new file mode 100644 index 000000000..f47efee16 --- /dev/null +++ b/dist/md/ic_wc.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_wc = void 0; +var ic_wc = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5.5 22v-7.5H4V9c0-1.1.9-2 2-2h3c1.1 0 2 .9 2 2v5.5H9.5V22h-4zM18 22v-6h3l-2.54-7.63C18.18 7.55 17.42 7 16.56 7h-.12c-.86 0-1.63.55-1.9 1.37L12 16h3v6h3zM7.5 6c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2zm9 0c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2z" + }, + "children": [] + }] +}; +exports.ic_wc = ic_wc; \ No newline at end of file diff --git a/dist/md/ic_wc_outline.js b/dist/md/ic_wc_outline.js new file mode 100644 index 000000000..62a863087 --- /dev/null +++ b/dist/md/ic_wc_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_wc_outline = void 0; +var ic_wc_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M.01 0h24v24h-24V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5.5 22v-7.5H4V9c0-1.1.9-2 2-2h3c1.1 0 2 .9 2 2v5.5H9.5V22h-4zM18 22v-6h3l-2.54-7.63C18.18 7.55 17.42 7 16.56 7h-.12c-.86 0-1.63.55-1.9 1.37L12 16h3v6h3zM7.5 6c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2zm9 0c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2z" + }, + "children": [] + }] +}; +exports.ic_wc_outline = ic_wc_outline; \ No newline at end of file diff --git a/dist/md/ic_wc_twotone.js b/dist/md/ic_wc_twotone.js new file mode 100644 index 000000000..57f4a7df1 --- /dev/null +++ b/dist/md/ic_wc_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_wc_twotone = void 0; +var ic_wc_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M.01 0h24v24h-24V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5.5 22v-7.5H4V9c0-1.1.9-2 2-2h3c1.1 0 2 .9 2 2v5.5H9.5V22h-4zM18 22v-6h3l-2.54-7.63C18.18 7.55 17.42 7 16.56 7h-.12c-.86 0-1.63.55-1.9 1.37L12 16h3v6h3zM7.5 6c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2zm9 0c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2z" + }, + "children": [] + }] +}; +exports.ic_wc_twotone = ic_wc_twotone; \ No newline at end of file diff --git a/dist/md/ic_web.js b/dist/md/ic_web.js new file mode 100644 index 000000000..1a7cd7903 --- /dev/null +++ b/dist/md/ic_web.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_web = void 0; +var ic_web = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-5 14H4v-4h11v4zm0-5H4V9h11v4zm5 5h-4V9h4v9z" + }, + "children": [] + }] +}; +exports.ic_web = ic_web; \ No newline at end of file diff --git a/dist/md/ic_web_asset.js b/dist/md/ic_web_asset.js new file mode 100644 index 000000000..bd5a50d58 --- /dev/null +++ b/dist/md/ic_web_asset.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_web_asset = void 0; +var ic_web_asset = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.89-2-2-2zm0 14H5V8h14v10z" + }, + "children": [] + }] +}; +exports.ic_web_asset = ic_web_asset; \ No newline at end of file diff --git a/dist/md/ic_web_asset_outline.js b/dist/md/ic_web_asset_outline.js new file mode 100644 index 000000000..04dc39000 --- /dev/null +++ b/dist/md/ic_web_asset_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_web_asset_outline = void 0; +var ic_web_asset_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.89-2-2-2zm0 14H5V8h14v10z" + }, + "children": [] + }] +}; +exports.ic_web_asset_outline = ic_web_asset_outline; \ No newline at end of file diff --git a/dist/md/ic_web_asset_twotone.js b/dist/md/ic_web_asset_twotone.js new file mode 100644 index 000000000..d21741d6f --- /dev/null +++ b/dist/md/ic_web_asset_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_web_asset_twotone = void 0; +var ic_web_asset_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 8h14v10H5z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.89-2-2-2zm0 14H5V8h14v10z" + }, + "children": [] + }] +}; +exports.ic_web_asset_twotone = ic_web_asset_twotone; \ No newline at end of file diff --git a/dist/md/ic_web_outline.js b/dist/md/ic_web_outline.js new file mode 100644 index 000000000..2ccc5361a --- /dev/null +++ b/dist/md/ic_web_outline.js @@ -0,0 +1,87 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_web_outline = void 0; +var ic_web_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20,4H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M4,9h10.5v3.5H4V9z M4,14.5 h10.5V18L4,18V14.5z M20,18l-3.5,0V9H20V18z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,4H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M4,9h10.5v3.5H4V9z M4,14.5 h10.5V18L4,18V14.5z M20,18l-3.5,0V9H20V18z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_web_outline = ic_web_outline; \ No newline at end of file diff --git a/dist/md/ic_web_twotone.js b/dist/md/ic_web_twotone.js new file mode 100644 index 000000000..7231cf1b4 --- /dev/null +++ b/dist/md/ic_web_twotone.js @@ -0,0 +1,155 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_web_twotone = void 0; +var ic_web_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "height": "3.5", + "opacity": ".3", + "width": "10.5", + "x": "4", + "y": "9" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "3.5", + "opacity": ".3", + "width": "10.5", + "x": "4", + "y": "9" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "3.5", + "opacity": ".3", + "width": "10.5", + "x": "4", + "y": "14.5" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "3.5", + "opacity": ".3", + "width": "10.5", + "x": "4", + "y": "14.5" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "height": "9", + "opacity": ".3", + "width": "3.5", + "x": "16.5", + "y": "9" + }, + "children": [{ + "name": "rect", + "attribs": { + "height": "9", + "opacity": ".3", + "width": "3.5", + "x": "16.5", + "y": "9" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20,4H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M14.5,18L4,18v-3.5h10.5 V18z M14.5,12.5H4V9h10.5V12.5z M20,18l-3.5,0V9H20V18z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,4H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M14.5,18L4,18v-3.5h10.5 V18z M14.5,12.5H4V9h10.5V12.5z M20,18l-3.5,0V9H20V18z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_web_twotone = ic_web_twotone; \ No newline at end of file diff --git a/dist/md/ic_weekend.js b/dist/md/ic_weekend.js new file mode 100644 index 000000000..8858ec4a4 --- /dev/null +++ b/dist/md/ic_weekend.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_weekend = void 0; +var ic_weekend = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M21,10c-1.1,0-2,0.9-2,2v3H5v-3c0-1.1-0.89-2-2-2s-2,0.9-2,2v5c0,1.1,0.9,2,2,2h18c1.1,0,2-0.9,2-2v-5 C23,10.9,22.1,10,21,10z M18,5H6C4.9,5,4,5.9,4,7v2.15c1.16,0.41,2,1.52,2,2.81V14h12v-2.03c0-1.3,0.84-2.4,2-2.81V7 C20,5.9,19.1,5,18,5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21,10c-1.1,0-2,0.9-2,2v3H5v-3c0-1.1-0.89-2-2-2s-2,0.9-2,2v5c0,1.1,0.9,2,2,2h18c1.1,0,2-0.9,2-2v-5 C23,10.9,22.1,10,21,10z M18,5H6C4.9,5,4,5.9,4,7v2.15c1.16,0.41,2,1.52,2,2.81V14h12v-2.03c0-1.3,0.84-2.4,2-2.81V7 C20,5.9,19.1,5,18,5z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_weekend = ic_weekend; \ No newline at end of file diff --git a/dist/md/ic_weekend_outline.js b/dist/md/ic_weekend_outline.js new file mode 100644 index 000000000..83e485f26 --- /dev/null +++ b/dist/md/ic_weekend_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_weekend_outline = void 0; +var ic_weekend_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 9V7c0-1.65-1.35-3-3-3H6C4.35 4 3 5.35 3 7v2c-1.65 0-3 1.35-3 3v5c0 1.65 1.35 3 3 3h18c1.65 0 3-1.35 3-3v-5c0-1.65-1.35-3-3-3zM5 7c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v2.78c-.61.55-1 1.34-1 2.22v2H6v-2c0-.88-.39-1.67-1-2.22V7zm17 10c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1v-5c0-.55.45-1 1-1s1 .45 1 1v4h16v-4c0-.55.45-1 1-1s1 .45 1 1v5z" + }, + "children": [] + }] +}; +exports.ic_weekend_outline = ic_weekend_outline; \ No newline at end of file diff --git a/dist/md/ic_weekend_twotone.js b/dist/md/ic_weekend_twotone.js new file mode 100644 index 000000000..07afd90f7 --- /dev/null +++ b/dist/md/ic_weekend_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_weekend_twotone = void 0; +var ic_weekend_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 11c-.55 0-1 .45-1 1v4H4v-4c0-.55-.45-1-1-1s-1 .45-1 1v5c0 .55.45 1 1 1h18c.55 0 1-.45 1-1v-5c0-.55-.45-1-1-1zM6 14h12v-2c0-.88.39-1.67 1-2.22V7c0-.55-.45-1-1-1H6c-.55 0-1 .45-1 1v2.78c.61.55 1 1.34 1 2.22v2z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 9V7c0-1.65-1.35-3-3-3H6C4.35 4 3 5.35 3 7v2c-1.65 0-3 1.35-3 3v5c0 1.65 1.35 3 3 3h18c1.65 0 3-1.35 3-3v-5c0-1.65-1.35-3-3-3zM5 7c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v2.78c-.61.55-1 1.34-1 2.22v2H6v-2c0-.88-.39-1.67-1-2.22V7zm17 10c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1v-5c0-.55.45-1 1-1s1 .45 1 1v4h16v-4c0-.55.45-1 1-1s1 .45 1 1v5z" + }, + "children": [] + }] +}; +exports.ic_weekend_twotone = ic_weekend_twotone; \ No newline at end of file diff --git a/dist/md/ic_west.js b/dist/md/ic_west.js new file mode 100644 index 000000000..f10902ad0 --- /dev/null +++ b/dist/md/ic_west.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_west = void 0; +var ic_west = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9,19l1.41-1.41L5.83,13H22V11H5.83l4.59-4.59L9,5l-7,7L9,19z" + }, + "children": [] + }] +}; +exports.ic_west = ic_west; \ No newline at end of file diff --git a/dist/md/ic_west_outline.js b/dist/md/ic_west_outline.js new file mode 100644 index 000000000..fe5047d74 --- /dev/null +++ b/dist/md/ic_west_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_west_outline = void 0; +var ic_west_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9,19l1.41-1.41L5.83,13H22V11H5.83l4.59-4.59L9,5l-7,7L9,19z" + }, + "children": [] + }] +}; +exports.ic_west_outline = ic_west_outline; \ No newline at end of file diff --git a/dist/md/ic_west_twotone.js b/dist/md/ic_west_twotone.js new file mode 100644 index 000000000..09a802a22 --- /dev/null +++ b/dist/md/ic_west_twotone.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_west_twotone = void 0; +var ic_west_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M9,19l1.41-1.41L5.83,13H22V11H5.83l4.59-4.59L9,5l-7,7L9,19z" + }, + "children": [] + }] +}; +exports.ic_west_twotone = ic_west_twotone; \ No newline at end of file diff --git a/dist/md/ic_whatshot.js b/dist/md/ic_whatshot.js new file mode 100644 index 000000000..f1a316cd8 --- /dev/null +++ b/dist/md/ic_whatshot.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_whatshot = void 0; +var ic_whatshot = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13.5.67s.74 2.65.74 4.8c0 2.06-1.35 3.73-3.41 3.73-2.07 0-3.63-1.67-3.63-3.73l.03-.36C5.21 7.51 4 10.62 4 14c0 4.42 3.58 8 8 8s8-3.58 8-8C20 8.61 17.41 3.8 13.5.67zM11.71 19c-1.78 0-3.22-1.4-3.22-3.14 0-1.62 1.05-2.76 2.81-3.12 1.77-.36 3.6-1.21 4.62-2.58.39 1.29.59 2.65.59 4.04 0 2.65-2.15 4.8-4.8 4.8z" + }, + "children": [] + }] +}; +exports.ic_whatshot = ic_whatshot; \ No newline at end of file diff --git a/dist/md/ic_whatshot_outline.js b/dist/md/ic_whatshot_outline.js new file mode 100644 index 000000000..71a77992a --- /dev/null +++ b/dist/md/ic_whatshot_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_whatshot_outline = void 0; +var ic_whatshot_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.57 13.16c-1.36.28-2.17 1.16-2.17 2.41 0 1.34 1.11 2.42 2.49 2.42 2.05 0 3.71-1.66 3.71-3.71 0-1.07-.15-2.12-.46-3.12-.79 1.07-2.2 1.72-3.57 2zM13.5.67s.74 2.65.74 4.8c0 2.06-1.35 3.73-3.41 3.73-2.07 0-3.63-1.67-3.63-3.73l.03-.36C5.21 7.51 4 10.62 4 14c0 4.42 3.58 8 8 8s8-3.58 8-8C20 8.61 17.41 3.8 13.5.67zM12 20c-3.31 0-6-2.69-6-6 0-1.53.3-3.04.86-4.43 1.01 1.01 2.41 1.63 3.97 1.63 2.66 0 4.75-1.83 5.28-4.43C17.34 8.97 18 11.44 18 14c0 3.31-2.69 6-6 6z" + }, + "children": [] + }] +}; +exports.ic_whatshot_outline = ic_whatshot_outline; \ No newline at end of file diff --git a/dist/md/ic_whatshot_twotone.js b/dist/md/ic_whatshot_twotone.js new file mode 100644 index 000000000..41f41e55f --- /dev/null +++ b/dist/md/ic_whatshot_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_whatshot_twotone = void 0; +var ic_whatshot_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16.11 6.77c-.53 2.6-2.62 4.43-5.28 4.43-1.56 0-2.96-.62-3.97-1.63C6.3 10.96 6 12.47 6 14c0 3.31 2.69 6 6 6s6-2.69 6-6c0-2.56-.66-5.03-1.89-7.23zm-4.22 11.22c-1.37 0-2.49-1.08-2.49-2.42 0-1.25.81-2.13 2.17-2.41 1.37-.28 2.78-.93 3.57-1.99.3 1 .46 2.05.46 3.12 0 2.04-1.66 3.7-3.71 3.7z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M11.57 13.16c-1.36.28-2.17 1.16-2.17 2.41 0 1.34 1.11 2.42 2.49 2.42 2.05 0 3.71-1.66 3.71-3.71 0-1.07-.15-2.12-.46-3.12-.79 1.07-2.2 1.72-3.57 2zM13.5.67s.74 2.65.74 4.8c0 2.06-1.35 3.73-3.41 3.73-2.07 0-3.63-1.67-3.63-3.73l.03-.36C5.21 7.51 4 10.62 4 14c0 4.42 3.58 8 8 8s8-3.58 8-8C20 8.61 17.41 3.8 13.5.67zM12 20c-3.31 0-6-2.69-6-6 0-1.53.3-3.04.86-4.43 1.01 1.01 2.41 1.63 3.97 1.63 2.66 0 4.75-1.83 5.28-4.43C17.34 8.97 18 11.44 18 14c0 3.31-2.69 6-6 6z" + }, + "children": [] + }] +}; +exports.ic_whatshot_twotone = ic_whatshot_twotone; \ No newline at end of file diff --git a/dist/md/ic_wheelchair_pickup.js b/dist/md/ic_wheelchair_pickup.js new file mode 100644 index 000000000..0f147e722 --- /dev/null +++ b/dist/md/ic_wheelchair_pickup.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_wheelchair_pickup = void 0; +var ic_wheelchair_pickup = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M4.5,4c0-1.11,0.89-2,2-2s2,0.89,2,2s-0.89,2-2,2S4.5,5.11,4.5,4z M10,10.95V9c0-1.1-0.9-2-2-2H5C3.9,7,3,7.9,3,9v6h2v7 h3.5v-0.11c-1.24-1.26-2-2.99-2-4.89C6.5,14.42,7.91,12.16,10,10.95z M16.5,17c0,1.65-1.35,3-3,3s-3-1.35-3-3 c0-1.11,0.61-2.06,1.5-2.58v-2.16C9.98,12.9,8.5,14.77,8.5,17c0,2.76,2.24,5,5,5s5-2.24,5-5H16.5z M19.54,14H15V8h-2v8h5.46 l2.47,3.71l1.66-1.11L19.54,14z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M4.5,4c0-1.11,0.89-2,2-2s2,0.89,2,2s-0.89,2-2,2S4.5,5.11,4.5,4z M10,10.95V9c0-1.1-0.9-2-2-2H5C3.9,7,3,7.9,3,9v6h2v7 h3.5v-0.11c-1.24-1.26-2-2.99-2-4.89C6.5,14.42,7.91,12.16,10,10.95z M16.5,17c0,1.65-1.35,3-3,3s-3-1.35-3-3 c0-1.11,0.61-2.06,1.5-2.58v-2.16C9.98,12.9,8.5,14.77,8.5,17c0,2.76,2.24,5,5,5s5-2.24,5-5H16.5z M19.54,14H15V8h-2v8h5.46 l2.47,3.71l1.66-1.11L19.54,14z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_wheelchair_pickup = ic_wheelchair_pickup; \ No newline at end of file diff --git a/dist/md/ic_wheelchair_pickup_outline.js b/dist/md/ic_wheelchair_pickup_outline.js new file mode 100644 index 000000000..92fd11067 --- /dev/null +++ b/dist/md/ic_wheelchair_pickup_outline.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_wheelchair_pickup_outline = void 0; +var ic_wheelchair_pickup_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M4.5,4c0-1.11,0.89-2,2-2s2,0.89,2,2s-0.89,2-2,2S4.5,5.11,4.5,4z M10,10.95V9c0-1.1-0.9-2-2-2H5C3.9,7,3,7.9,3,9v6h2v7 h3.5v-0.11c-1.24-1.26-2-2.99-2-4.89C6.5,14.42,7.91,12.16,10,10.95z M16.5,17c0,1.65-1.35,3-3,3s-3-1.35-3-3 c0-1.11,0.61-2.06,1.5-2.58v-2.16C9.98,12.9,8.5,14.77,8.5,17c0,2.76,2.24,5,5,5s5-2.24,5-5H16.5z M19.54,14H15V8h-2v8h5.46 l2.47,3.71l1.66-1.11L19.54,14z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M4.5,4c0-1.11,0.89-2,2-2s2,0.89,2,2s-0.89,2-2,2S4.5,5.11,4.5,4z M10,10.95V9c0-1.1-0.9-2-2-2H5C3.9,7,3,7.9,3,9v6h2v7 h3.5v-0.11c-1.24-1.26-2-2.99-2-4.89C6.5,14.42,7.91,12.16,10,10.95z M16.5,17c0,1.65-1.35,3-3,3s-3-1.35-3-3 c0-1.11,0.61-2.06,1.5-2.58v-2.16C9.98,12.9,8.5,14.77,8.5,17c0,2.76,2.24,5,5,5s5-2.24,5-5H16.5z M19.54,14H15V8h-2v8h5.46 l2.47,3.71l1.66-1.11L19.54,14z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_wheelchair_pickup_outline = ic_wheelchair_pickup_outline; \ No newline at end of file diff --git a/dist/md/ic_wheelchair_pickup_twotone.js b/dist/md/ic_wheelchair_pickup_twotone.js new file mode 100644 index 000000000..0e24b686e --- /dev/null +++ b/dist/md/ic_wheelchair_pickup_twotone.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_wheelchair_pickup_twotone = void 0; +var ic_wheelchair_pickup_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24", + "x": "0" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M4.5,4c0-1.11,0.89-2,2-2s2,0.89,2,2s-0.89,2-2,2S4.5,5.11,4.5,4z M10,10.95V9c0-1.1-0.9-2-2-2H5C3.9,7,3,7.9,3,9v6h2v7 h3.5v-0.11c-1.24-1.26-2-2.99-2-4.89C6.5,14.42,7.91,12.16,10,10.95z M16.5,17c0,1.65-1.35,3-3,3s-3-1.35-3-3 c0-1.11,0.61-2.06,1.5-2.58v-2.16C9.98,12.9,8.5,14.77,8.5,17c0,2.76,2.24,5,5,5s5-2.24,5-5H16.5z M19.54,14H15V8h-2v8h5.46 l2.47,3.71l1.66-1.11L19.54,14z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M4.5,4c0-1.11,0.89-2,2-2s2,0.89,2,2s-0.89,2-2,2S4.5,5.11,4.5,4z M10,10.95V9c0-1.1-0.9-2-2-2H5C3.9,7,3,7.9,3,9v6h2v7 h3.5v-0.11c-1.24-1.26-2-2.99-2-4.89C6.5,14.42,7.91,12.16,10,10.95z M16.5,17c0,1.65-1.35,3-3,3s-3-1.35-3-3 c0-1.11,0.61-2.06,1.5-2.58v-2.16C9.98,12.9,8.5,14.77,8.5,17c0,2.76,2.24,5,5,5s5-2.24,5-5H16.5z M19.54,14H15V8h-2v8h5.46 l2.47,3.71l1.66-1.11L19.54,14z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_wheelchair_pickup_twotone = ic_wheelchair_pickup_twotone; \ No newline at end of file diff --git a/dist/md/ic_where_to_vote.js b/dist/md/ic_where_to_vote.js new file mode 100644 index 000000000..4f1bfef63 --- /dev/null +++ b/dist/md/ic_where_to_vote.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_where_to_vote = void 0; +var ic_where_to_vote = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 2c3.86 0 7 3.14 7 7 0 5.25-7 13-7 13S5 14.25 5 9c0-3.86 3.14-7 7-7zm-1.53 12L17 7.41 15.6 6l-5.13 5.18L8.4 9.09 7 10.5l3.47 3.5z" + }, + "children": [] + }] +}; +exports.ic_where_to_vote = ic_where_to_vote; \ No newline at end of file diff --git a/dist/md/ic_where_to_vote_outline.js b/dist/md/ic_where_to_vote_outline.js new file mode 100644 index 000000000..b450c15d0 --- /dev/null +++ b/dist/md/ic_where_to_vote_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_where_to_vote_outline = void 0; +var ic_where_to_vote_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 1C7.59 1 4 4.59 4 9c0 5.57 6.96 13.34 7.26 13.67l.74.82.74-.82C13.04 22.34 20 14.57 20 9c0-4.41-3.59-8-8-8zm0 19.47C9.82 17.86 6 12.54 6 9c0-3.31 2.69-6 6-6s6 2.69 6 6c0 3.83-4.25 9.36-6 11.47zm-1.53-9.3L8.71 9.4l-1.42 1.42L10.47 14l6.01-6.01-1.41-1.42z" + }, + "children": [] + }] +}; +exports.ic_where_to_vote_outline = ic_where_to_vote_outline; \ No newline at end of file diff --git a/dist/md/ic_where_to_vote_twotone.js b/dist/md/ic_where_to_vote_twotone.js new file mode 100644 index 000000000..c47dd8e2b --- /dev/null +++ b/dist/md/ic_where_to_vote_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_where_to_vote_twotone = void 0; +var ic_where_to_vote_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 3C8.69 3 6 5.69 6 9c0 3.54 3.82 8.86 6 11.47 1.75-2.11 6-7.63 6-11.47 0-3.31-2.69-6-6-6zm-1.53 11l-3.18-3.18L8.71 9.4l1.77 1.77 4.6-4.6 1.41 1.41L10.47 14z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 1C7.59 1 4 4.59 4 9c0 5.57 6.96 13.34 7.26 13.67l.74.82.74-.82C13.04 22.34 20 14.57 20 9c0-4.41-3.59-8-8-8zm0 19.47C9.82 17.86 6 12.54 6 9c0-3.31 2.69-6 6-6s6 2.69 6 6c0 3.83-4.25 9.36-6 11.47zm3.07-13.9l-4.6 4.6L8.71 9.4l-1.42 1.42L10.47 14l6.01-6.01z" + }, + "children": [] + }] +}; +exports.ic_where_to_vote_twotone = ic_where_to_vote_twotone; \ No newline at end of file diff --git a/dist/md/ic_widgets.js b/dist/md/ic_widgets.js new file mode 100644 index 000000000..ec7c075ef --- /dev/null +++ b/dist/md/ic_widgets.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_widgets = void 0; +var ic_widgets = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13 13v8h8v-8h-8zM3 21h8v-8H3v8zM3 3v8h8V3H3zm13.66-1.31L11 7.34 16.66 13l5.66-5.66-5.66-5.65z" + }, + "children": [] + }] +}; +exports.ic_widgets = ic_widgets; \ No newline at end of file diff --git a/dist/md/ic_widgets_outline.js b/dist/md/ic_widgets_outline.js new file mode 100644 index 000000000..a9a84692e --- /dev/null +++ b/dist/md/ic_widgets_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_widgets_outline = void 0; +var ic_widgets_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16.66 4.52l2.83 2.83-2.83 2.83-2.83-2.83 2.83-2.83M9 5v4H5V5h4m10 10v4h-4v-4h4M9 15v4H5v-4h4m7.66-13.31L11 7.34 16.66 13l5.66-5.66-5.66-5.65zM11 3H3v8h8V3zm10 10h-8v8h8v-8zm-10 0H3v8h8v-8z" + }, + "children": [] + }] +}; +exports.ic_widgets_outline = ic_widgets_outline; \ No newline at end of file diff --git a/dist/md/ic_widgets_twotone.js b/dist/md/ic_widgets_twotone.js new file mode 100644 index 000000000..9263c6cfa --- /dev/null +++ b/dist/md/ic_widgets_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_widgets_twotone = void 0; +var ic_widgets_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M5 5h4v4H5zm10 10h4v4h-4zM5 15h4v4H5zM16.66 4.52l-2.83 2.82 2.83 2.83 2.83-2.83z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16.66 1.69L11 7.34 16.66 13l5.66-5.66-5.66-5.65zm-2.83 5.65l2.83-2.83 2.83 2.83-2.83 2.83-2.83-2.83zM3 3v8h8V3H3zm6 6H5V5h4v4zM3 21h8v-8H3v8zm2-6h4v4H5v-4zm8-2v8h8v-8h-8zm6 6h-4v-4h4v4z" + }, + "children": [] + }] +}; +exports.ic_widgets_twotone = ic_widgets_twotone; \ No newline at end of file diff --git a/dist/md/ic_wifi.js b/dist/md/ic_wifi.js new file mode 100644 index 000000000..bd61d0117 --- /dev/null +++ b/dist/md/ic_wifi.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_wifi = void 0; +var ic_wifi = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M1 9l2 2c4.97-4.97 13.03-4.97 18 0l2-2C16.93 2.93 7.08 2.93 1 9zm8 8l3 3 3-3c-1.65-1.66-4.34-1.66-6 0zm-4-4l2 2c2.76-2.76 7.24-2.76 10 0l2-2C15.14 9.14 8.87 9.14 5 13z" + }, + "children": [] + }] +}; +exports.ic_wifi = ic_wifi; \ No newline at end of file diff --git a/dist/md/ic_wifi_calling.js b/dist/md/ic_wifi_calling.js new file mode 100644 index 000000000..eaa991cd5 --- /dev/null +++ b/dist/md/ic_wifi_calling.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_wifi_calling = void 0; +var ic_wifi_calling = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,4.95C21.79,4.78,19.67,3,16.5,3c-3.18,0-5.29,1.78-5.5,1.95L16.5,12L22,4.95z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,4.95C21.79,4.78,19.67,3,16.5,3c-3.18,0-5.29,1.78-5.5,1.95L16.5,12L22,4.95z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20,15.51c-1.24,0-2.45-0.2-3.57-0.57c-0.35-0.12-0.75-0.03-1.02,0.24l-2.2,2.2c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2 C9.1,8.31,9.18,7.92,9.07,7.57C8.7,6.45,8.5,5.25,8.5,4c0-0.55-0.45-1-1-1H4C3.45,3,3,3.45,3,4c0,9.39,7.61,17,17,17 c0.55,0,1-0.45,1-1v-3.49C21,15.96,20.55,15.51,20,15.51z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,15.51c-1.24,0-2.45-0.2-3.57-0.57c-0.35-0.12-0.75-0.03-1.02,0.24l-2.2,2.2c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2 C9.1,8.31,9.18,7.92,9.07,7.57C8.7,6.45,8.5,5.25,8.5,4c0-0.55-0.45-1-1-1H4C3.45,3,3,3.45,3,4c0,9.39,7.61,17,17,17 c0.55,0,1-0.45,1-1v-3.49C21,15.96,20.55,15.51,20,15.51z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_wifi_calling = ic_wifi_calling; \ No newline at end of file diff --git a/dist/md/ic_wifi_calling_outline.js b/dist/md/ic_wifi_calling_outline.js new file mode 100644 index 000000000..1ec1749ac --- /dev/null +++ b/dist/md/ic_wifi_calling_outline.js @@ -0,0 +1,83 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_wifi_calling_outline = void 0; +var ic_wifi_calling_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,15.51c-1.24,0-2.45-0.2-3.57-0.57c-0.1-0.04-0.21-0.05-0.31-0.05c-0.26,0-0.51,0.1-0.71,0.29l-2.2,2.2 c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2C9.1,8.31,9.18,7.92,9.07,7.57C8.7,6.45,8.5,5.25,8.5,4c0-0.55-0.45-1-1-1H4 C3.45,3,3,3.45,3,4c0,9.39,7.61,17,17,17c0.55,0,1-0.45,1-1v-3.49C21,15.96,20.55,15.51,20,15.51z M5.03,5h1.5 C6.6,5.89,6.75,6.76,6.99,7.59l-1.2,1.2C5.38,7.59,5.12,6.32,5.03,5z M19,18.97c-1.32-0.09-2.59-0.35-3.8-0.75l1.19-1.19 c0.85,0.24,1.72,0.39,2.6,0.45V18.97z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,15.51c-1.24,0-2.45-0.2-3.57-0.57c-0.1-0.04-0.21-0.05-0.31-0.05c-0.26,0-0.51,0.1-0.71,0.29l-2.2,2.2 c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2C9.1,8.31,9.18,7.92,9.07,7.57C8.7,6.45,8.5,5.25,8.5,4c0-0.55-0.45-1-1-1H4 C3.45,3,3,3.45,3,4c0,9.39,7.61,17,17,17c0.55,0,1-0.45,1-1v-3.49C21,15.96,20.55,15.51,20,15.51z M5.03,5h1.5 C6.6,5.89,6.75,6.76,6.99,7.59l-1.2,1.2C5.38,7.59,5.12,6.32,5.03,5z M19,18.97c-1.32-0.09-2.59-0.35-3.8-0.75l1.19-1.19 c0.85,0.24,1.72,0.39,2.6,0.45V18.97z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,4.95C21.79,4.78,19.67,3,16.5,3c-3.18,0-5.29,1.78-5.5,1.95L16.5,12L22,4.95z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,4.95C21.79,4.78,19.67,3,16.5,3c-3.18,0-5.29,1.78-5.5,1.95L16.5,12L22,4.95z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_wifi_calling_outline = ic_wifi_calling_outline; \ No newline at end of file diff --git a/dist/md/ic_wifi_calling_twotone.js b/dist/md/ic_wifi_calling_twotone.js new file mode 100644 index 000000000..4f0d4aebd --- /dev/null +++ b/dist/md/ic_wifi_calling_twotone.js @@ -0,0 +1,103 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_wifi_calling_twotone = void 0; +var ic_wifi_calling_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M15.2,18.21c1.2,0.41,2.48,0.67,3.8,0.75v-1.49c-0.88-0.07-1.75-0.22-2.6-0.45L15.2,18.21z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15.2,18.21c1.2,0.41,2.48,0.67,3.8,0.75v-1.49c-0.88-0.07-1.75-0.22-2.6-0.45L15.2,18.21z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M6.54,5h-1.5c0.09,1.32,0.35,2.59,0.75,3.8l1.2-1.2C6.75,6.76,6.6,5.89,6.54,5z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M6.54,5h-1.5c0.09,1.32,0.35,2.59,0.75,3.8l1.2-1.2C6.75,6.76,6.6,5.89,6.54,5z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20,15.51c-1.24,0-2.45-0.2-3.57-0.57c-0.1-0.04-0.21-0.05-0.31-0.05c-0.26,0-0.51,0.1-0.71,0.29l-2.2,2.2 c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2C9.1,8.31,9.18,7.92,9.07,7.57C8.7,6.45,8.5,5.25,8.5,4c0-0.55-0.45-1-1-1H4 C3.45,3,3,3.45,3,4c0,9.39,7.61,17,17,17c0.55,0,1-0.45,1-1v-3.49C21,15.96,20.55,15.51,20,15.51z M5.03,5h1.5 C6.6,5.89,6.75,6.76,6.99,7.59l-1.2,1.2C5.38,7.59,5.12,6.32,5.03,5z M19,18.97c-1.32-0.09-2.59-0.35-3.8-0.75l1.19-1.19 c0.85,0.24,1.72,0.39,2.6,0.45V18.97z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20,15.51c-1.24,0-2.45-0.2-3.57-0.57c-0.1-0.04-0.21-0.05-0.31-0.05c-0.26,0-0.51,0.1-0.71,0.29l-2.2,2.2 c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2C9.1,8.31,9.18,7.92,9.07,7.57C8.7,6.45,8.5,5.25,8.5,4c0-0.55-0.45-1-1-1H4 C3.45,3,3,3.45,3,4c0,9.39,7.61,17,17,17c0.55,0,1-0.45,1-1v-3.49C21,15.96,20.55,15.51,20,15.51z M5.03,5h1.5 C6.6,5.89,6.75,6.76,6.99,7.59l-1.2,1.2C5.38,7.59,5.12,6.32,5.03,5z M19,18.97c-1.32-0.09-2.59-0.35-3.8-0.75l1.19-1.19 c0.85,0.24,1.72,0.39,2.6,0.45V18.97z" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,4.95C21.79,4.78,19.67,3,16.5,3c-3.18,0-5.29,1.78-5.5,1.95L16.5,12L22,4.95z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M22,4.95C21.79,4.78,19.67,3,16.5,3c-3.18,0-5.29,1.78-5.5,1.95L16.5,12L22,4.95z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_wifi_calling_twotone = ic_wifi_calling_twotone; \ No newline at end of file diff --git a/dist/md/ic_wifi_lock.js b/dist/md/ic_wifi_lock.js new file mode 100644 index 000000000..c50112ee4 --- /dev/null +++ b/dist/md/ic_wifi_lock.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_wifi_lock = void 0; +var ic_wifi_lock = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20.5 9.5c.28 0 .55.04.81.08L24 6c-3.34-2.51-7.5-4-12-4S3.34 3.49 0 6l12 16 3.5-4.67V14.5c0-2.76 2.24-5 5-5zM23 16v-1.5c0-1.38-1.12-2.5-2.5-2.5S18 13.12 18 14.5V16c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1zm-1 0h-3v-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5V16z" + }, + "children": [] + }] +}; +exports.ic_wifi_lock = ic_wifi_lock; \ No newline at end of file diff --git a/dist/md/ic_wifi_lock_outline.js b/dist/md/ic_wifi_lock_outline.js new file mode 100644 index 000000000..fdf8db8b8 --- /dev/null +++ b/dist/md/ic_wifi_lock_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_wifi_lock_outline = void 0; +var ic_wifi_lock_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21.31 9.58L24 6c-3.34-2.51-7.5-4-12-4S3.34 3.49 0 6l12 16 3.5-4.67V14.5c0-2.76 2.24-5 5-5 .28 0 .55.04.81.08zM23 16v-1.5c0-1.38-1.12-2.5-2.5-2.5S18 13.12 18 14.5V16c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1zm-1 0h-3v-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5V16z" + }, + "children": [] + }] +}; +exports.ic_wifi_lock_outline = ic_wifi_lock_outline; \ No newline at end of file diff --git a/dist/md/ic_wifi_lock_twotone.js b/dist/md/ic_wifi_lock_twotone.js new file mode 100644 index 000000000..c59a650aa --- /dev/null +++ b/dist/md/ic_wifi_lock_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_wifi_lock_twotone = void 0; +var ic_wifi_lock_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21.31 9.58L24 6c-3.34-2.51-7.5-4-12-4S3.34 3.49 0 6l12 16 3.5-4.67V14.5c0-2.76 2.24-5 5-5 .28 0 .55.04.81.08zM23 16v-1.5c0-1.38-1.12-2.5-2.5-2.5S18 13.12 18 14.5V16c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1zm-1 0h-3v-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5V16z" + }, + "children": [] + }] +}; +exports.ic_wifi_lock_twotone = ic_wifi_lock_twotone; \ No newline at end of file diff --git a/dist/md/ic_wifi_off.js b/dist/md/ic_wifi_off.js new file mode 100644 index 000000000..05262404f --- /dev/null +++ b/dist/md/ic_wifi_off.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_wifi_off = void 0; +var ic_wifi_off = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M24 .01c0-.01 0-.01 0 0L0 0v24h24V.01zM0 0h24v24H0V0zm0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M22.99 9C19.15 5.16 13.8 3.76 8.84 4.78l2.52 2.52c3.47-.17 6.99 1.05 9.63 3.7l2-2zm-4 4c-1.29-1.29-2.84-2.13-4.49-2.56l3.53 3.53.96-.97zM2 3.05L5.07 6.1C3.6 6.82 2.22 7.78 1 9l1.99 2c1.24-1.24 2.67-2.16 4.2-2.77l2.24 2.24C7.81 10.89 6.27 11.73 5 13v.01L6.99 15c1.36-1.36 3.14-2.04 4.92-2.06L18.98 20l1.27-1.26L3.29 1.79 2 3.05zM9 17l3 3 3-3c-1.65-1.66-4.34-1.66-6 0z" + }, + "children": [] + }] +}; +exports.ic_wifi_off = ic_wifi_off; \ No newline at end of file diff --git a/dist/md/ic_wifi_off_outline.js b/dist/md/ic_wifi_off_outline.js new file mode 100644 index 000000000..649d94b3d --- /dev/null +++ b/dist/md/ic_wifi_off_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_wifi_off_outline = void 0; +var ic_wifi_off_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 11l2-2c-3.73-3.73-8.87-5.15-13.7-4.31l2.58 2.58c3.3-.02 6.61 1.22 9.12 3.73zm-2 2c-1.08-1.08-2.36-1.85-3.72-2.33l3.02 3.02.7-.69zM9 17l3 3 3-3c-1.65-1.66-4.34-1.66-6 0zM3.41 1.64L2 3.05 5.05 6.1C3.59 6.83 2.22 7.79 1 9l2 2c1.23-1.23 2.65-2.16 4.17-2.78l2.24 2.24C7.79 10.89 6.27 11.74 5 13l2 2c1.35-1.35 3.11-2.04 4.89-2.06l7.08 7.08 1.41-1.41L3.41 1.64z" + }, + "children": [] + }] +}; +exports.ic_wifi_off_outline = ic_wifi_off_outline; \ No newline at end of file diff --git a/dist/md/ic_wifi_off_twotone.js b/dist/md/ic_wifi_off_twotone.js new file mode 100644 index 000000000..d56c82d6e --- /dev/null +++ b/dist/md/ic_wifi_off_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_wifi_off_twotone = void 0; +var ic_wifi_off_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21 11l2-2c-3.73-3.73-8.87-5.15-13.7-4.31l2.58 2.58c3.3-.02 6.61 1.22 9.12 3.73zm-2 2c-1.08-1.08-2.36-1.85-3.72-2.33l3.02 3.02.7-.69zM9 17l3 3 3-3c-1.65-1.66-4.34-1.66-6 0zM3.41 1.64L2 3.05 5.05 6.1C3.59 6.83 2.22 7.79 1 9l2 2c1.23-1.23 2.65-2.16 4.17-2.78l2.24 2.24C7.79 10.89 6.27 11.74 5 13l2 2c1.35-1.35 3.11-2.04 4.89-2.06l7.08 7.08 1.41-1.41L3.41 1.64z" + }, + "children": [] + }] +}; +exports.ic_wifi_off_twotone = ic_wifi_off_twotone; \ No newline at end of file diff --git a/dist/md/ic_wifi_outline.js b/dist/md/ic_wifi_outline.js new file mode 100644 index 000000000..006d55ebf --- /dev/null +++ b/dist/md/ic_wifi_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_wifi_outline = void 0; +var ic_wifi_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0zm0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M1 9l2 2c4.97-4.97 13.03-4.97 18 0l2-2C16.93 2.93 7.08 2.93 1 9zm8 8l3 3 3-3c-1.65-1.66-4.34-1.66-6 0zm-4-4l2 2c2.76-2.76 7.24-2.76 10 0l2-2C15.14 9.14 8.87 9.14 5 13z" + }, + "children": [] + }] +}; +exports.ic_wifi_outline = ic_wifi_outline; \ No newline at end of file diff --git a/dist/md/ic_wifi_protected_setup.js b/dist/md/ic_wifi_protected_setup.js new file mode 100644 index 000000000..2ac374754 --- /dev/null +++ b/dist/md/ic_wifi_protected_setup.js @@ -0,0 +1,83 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_wifi_protected_setup = void 0; +var ic_wifi_protected_setup = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M16.71,5.29L19,3h-8v8l2.3-2.3c1.97,1.46,3.25,3.78,3.25,6.42c0,1.31-0.32,2.54-0.88,3.63c2.33-1.52,3.88-4.14,3.88-7.13 C19.55,9.1,18.44,6.85,16.71,5.29z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M16.71,5.29L19,3h-8v8l2.3-2.3c1.97,1.46,3.25,3.78,3.25,6.42c0,1.31-0.32,2.54-0.88,3.63c2.33-1.52,3.88-4.14,3.88-7.13 C19.55,9.1,18.44,6.85,16.71,5.29z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M7.46,8.88c0-1.31,0.32-2.54,0.88-3.63C6,6.77,4.46,9.39,4.46,12.38c0,2.52,1.1,4.77,2.84,6.33L5,21h8v-8l-2.3,2.3 C8.74,13.84,7.46,11.52,7.46,8.88z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M7.46,8.88c0-1.31,0.32-2.54,0.88-3.63C6,6.77,4.46,9.39,4.46,12.38c0,2.52,1.1,4.77,2.84,6.33L5,21h8v-8l-2.3,2.3 C8.74,13.84,7.46,11.52,7.46,8.88z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_wifi_protected_setup = ic_wifi_protected_setup; \ No newline at end of file diff --git a/dist/md/ic_wifi_protected_setup_outline.js b/dist/md/ic_wifi_protected_setup_outline.js new file mode 100644 index 000000000..6f9eed422 --- /dev/null +++ b/dist/md/ic_wifi_protected_setup_outline.js @@ -0,0 +1,83 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_wifi_protected_setup_outline = void 0; +var ic_wifi_protected_setup_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M16.71,5.29L19,3h-8v8l2.3-2.3c1.97,1.46,3.25,3.78,3.25,6.42c0,1.31-0.32,2.54-0.88,3.63c2.33-1.52,3.88-4.14,3.88-7.13 C19.55,9.1,18.44,6.85,16.71,5.29z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M16.71,5.29L19,3h-8v8l2.3-2.3c1.97,1.46,3.25,3.78,3.25,6.42c0,1.31-0.32,2.54-0.88,3.63c2.33-1.52,3.88-4.14,3.88-7.13 C19.55,9.1,18.44,6.85,16.71,5.29z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M7.46,8.88c0-1.31,0.32-2.54,0.88-3.63C6,6.77,4.46,9.39,4.46,12.38c0,2.52,1.1,4.77,2.84,6.33L5,21h8v-8l-2.3,2.3 C8.74,13.84,7.46,11.52,7.46,8.88z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M7.46,8.88c0-1.31,0.32-2.54,0.88-3.63C6,6.77,4.46,9.39,4.46,12.38c0,2.52,1.1,4.77,2.84,6.33L5,21h8v-8l-2.3,2.3 C8.74,13.84,7.46,11.52,7.46,8.88z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_wifi_protected_setup_outline = ic_wifi_protected_setup_outline; \ No newline at end of file diff --git a/dist/md/ic_wifi_protected_setup_twotone.js b/dist/md/ic_wifi_protected_setup_twotone.js new file mode 100644 index 000000000..b71f71fe1 --- /dev/null +++ b/dist/md/ic_wifi_protected_setup_twotone.js @@ -0,0 +1,83 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_wifi_protected_setup_twotone = void 0; +var ic_wifi_protected_setup_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M16.71,5.29L19,3h-8v8l2.3-2.3c1.97,1.46,3.25,3.78,3.25,6.42c0,1.31-0.32,2.54-0.88,3.63c2.33-1.52,3.88-4.14,3.88-7.13 C19.55,9.1,18.44,6.85,16.71,5.29z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M16.71,5.29L19,3h-8v8l2.3-2.3c1.97,1.46,3.25,3.78,3.25,6.42c0,1.31-0.32,2.54-0.88,3.63c2.33-1.52,3.88-4.14,3.88-7.13 C19.55,9.1,18.44,6.85,16.71,5.29z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M7.46,8.88c0-1.31,0.32-2.54,0.88-3.63C6,6.77,4.46,9.39,4.46,12.38c0,2.52,1.1,4.77,2.84,6.33L5,21h8v-8l-2.3,2.3 C8.74,13.84,7.46,11.52,7.46,8.88z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M7.46,8.88c0-1.31,0.32-2.54,0.88-3.63C6,6.77,4.46,9.39,4.46,12.38c0,2.52,1.1,4.77,2.84,6.33L5,21h8v-8l-2.3,2.3 C8.74,13.84,7.46,11.52,7.46,8.88z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_wifi_protected_setup_twotone = ic_wifi_protected_setup_twotone; \ No newline at end of file diff --git a/dist/md/ic_wifi_tethering.js b/dist/md/ic_wifi_tethering.js new file mode 100644 index 000000000..322ea61e3 --- /dev/null +++ b/dist/md/ic_wifi_tethering.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_wifi_tethering = void 0; +var ic_wifi_tethering = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 11c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 2c0-3.31-2.69-6-6-6s-6 2.69-6 6c0 2.22 1.21 4.15 3 5.19l1-1.74c-1.19-.7-2-1.97-2-3.45 0-2.21 1.79-4 4-4s4 1.79 4 4c0 1.48-.81 2.75-2 3.45l1 1.74c1.79-1.04 3-2.97 3-5.19zM12 3C6.48 3 2 7.48 2 13c0 3.7 2.01 6.92 4.99 8.65l1-1.73C5.61 18.53 4 15.96 4 13c0-4.42 3.58-8 8-8s8 3.58 8 8c0 2.96-1.61 5.53-4 6.92l1 1.73c2.99-1.73 5-4.95 5-8.65 0-5.52-4.48-10-10-10z" + }, + "children": [] + }] +}; +exports.ic_wifi_tethering = ic_wifi_tethering; \ No newline at end of file diff --git a/dist/md/ic_wifi_tethering_outline.js b/dist/md/ic_wifi_tethering_outline.js new file mode 100644 index 000000000..9ea0df2f4 --- /dev/null +++ b/dist/md/ic_wifi_tethering_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_wifi_tethering_outline = void 0; +var ic_wifi_tethering_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 11c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 2c0-3.31-2.69-6-6-6s-6 2.69-6 6c0 2.22 1.21 4.15 3 5.19l1-1.74c-1.19-.7-2-1.97-2-3.45 0-2.21 1.79-4 4-4s4 1.79 4 4c0 1.48-.81 2.75-2 3.45l1 1.74c1.79-1.04 3-2.97 3-5.19zM12 3C6.48 3 2 7.48 2 13c0 3.7 2.01 6.92 4.99 8.65l1-1.73C5.61 18.53 4 15.96 4 13c0-4.42 3.58-8 8-8s8 3.58 8 8c0 2.96-1.61 5.53-4 6.92l1 1.73c2.99-1.73 5-4.95 5-8.65 0-5.52-4.48-10-10-10z" + }, + "children": [] + }] +}; +exports.ic_wifi_tethering_outline = ic_wifi_tethering_outline; \ No newline at end of file diff --git a/dist/md/ic_wifi_tethering_twotone.js b/dist/md/ic_wifi_tethering_twotone.js new file mode 100644 index 000000000..69c733489 --- /dev/null +++ b/dist/md/ic_wifi_tethering_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_wifi_tethering_twotone = void 0; +var ic_wifi_tethering_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 11c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 2c0-3.31-2.69-6-6-6s-6 2.69-6 6c0 2.22 1.21 4.15 3 5.19l1-1.74c-1.19-.7-2-1.97-2-3.45 0-2.21 1.79-4 4-4s4 1.79 4 4c0 1.48-.81 2.75-2 3.45l1 1.74c1.79-1.04 3-2.97 3-5.19zM12 3C6.48 3 2 7.48 2 13c0 3.7 2.01 6.92 4.99 8.65l1-1.73C5.61 18.53 4 15.96 4 13c0-4.42 3.58-8 8-8s8 3.58 8 8c0 2.96-1.61 5.53-4 6.92l1 1.73c2.99-1.73 5-4.95 5-8.65 0-5.52-4.48-10-10-10z" + }, + "children": [] + }] +}; +exports.ic_wifi_tethering_twotone = ic_wifi_tethering_twotone; \ No newline at end of file diff --git a/dist/md/ic_wifi_twotone.js b/dist/md/ic_wifi_twotone.js new file mode 100644 index 000000000..3b077f3c5 --- /dev/null +++ b/dist/md/ic_wifi_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_wifi_twotone = void 0; +var ic_wifi_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0zm0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M1 9l2 2c4.97-4.97 13.03-4.97 18 0l2-2C16.93 2.93 7.08 2.93 1 9zm8 8l3 3 3-3c-1.65-1.66-4.34-1.66-6 0zm-4-4l2 2c2.76-2.76 7.24-2.76 10 0l2-2C15.14 9.14 8.87 9.14 5 13z" + }, + "children": [] + }] +}; +exports.ic_wifi_twotone = ic_wifi_twotone; \ No newline at end of file diff --git a/dist/md/ic_wine_bar.js b/dist/md/ic_wine_bar.js new file mode 100644 index 000000000..7767d9865 --- /dev/null +++ b/dist/md/ic_wine_bar.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_wine_bar = void 0; +var ic_wine_bar = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6,3l0,6c0,2.97,2.16,5.43,5,5.91V19H8v2h8v-2h-3v-4.09c2.84-0.48,5-2.94,5-5.91l0-6H6z M16,8H8l0-3h8C16,5,16,8,16,8z" + }, + "children": [] + }] +}; +exports.ic_wine_bar = ic_wine_bar; \ No newline at end of file diff --git a/dist/md/ic_wine_bar_outline.js b/dist/md/ic_wine_bar_outline.js new file mode 100644 index 000000000..46e80ee88 --- /dev/null +++ b/dist/md/ic_wine_bar_outline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_wine_bar_outline = void 0; +var ic_wine_bar_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6,3l0,6c0,2.97,2.16,5.43,5,5.91V19H8v2h8v-2h-3v-4.09c2.84-0.48,5-2.94,5-5.91V3H6z M12,13c-1.86,0-3.41-1.28-3.86-3h7.72 C15.41,11.72,13.86,13,12,13z M16,8H8l0-3h8L16,8z" + }, + "children": [] + }] +}; +exports.ic_wine_bar_outline = ic_wine_bar_outline; \ No newline at end of file diff --git a/dist/md/ic_wine_bar_twotone.js b/dist/md/ic_wine_bar_twotone.js new file mode 100644 index 000000000..4ea7ea75e --- /dev/null +++ b/dist/md/ic_wine_bar_twotone.js @@ -0,0 +1,32 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_wine_bar_twotone = void 0; +var ic_wine_bar_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12,13c-1.86,0-3.41-1.28-3.86-3h7.72C15.41,11.72,13.86,13,12,13z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6,3l0,6c0,2.97,2.16,5.43,5,5.91V19H8v2h8v-2h-3v-4.09c2.84-0.48,5-2.94,5-5.91V3H6z M12,13c-1.86,0-3.41-1.28-3.86-3h7.72 C15.41,11.72,13.86,13,12,13z M16,8H8l0-3h8L16,8z" + }, + "children": [] + }] +}; +exports.ic_wine_bar_twotone = ic_wine_bar_twotone; \ No newline at end of file diff --git a/dist/md/ic_work.js b/dist/md/ic_work.js new file mode 100644 index 000000000..6e6d9cd4b --- /dev/null +++ b/dist/md/ic_work.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_work = void 0; +var ic_work = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 6h-4V4c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-6 0h-4V4h4v2z" + }, + "children": [] + }] +}; +exports.ic_work = ic_work; \ No newline at end of file diff --git a/dist/md/ic_work_off.js b/dist/md/ic_work_off.js new file mode 100644 index 000000000..3f3769949 --- /dev/null +++ b/dist/md/ic_work_off.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_work_off = void 0; +var ic_work_off = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M23 21.74l-1.46-1.46L7.21 5.95 3.25 1.99 1.99 3.25l2.7 2.7h-.64c-1.11 0-1.99.89-1.99 2l-.01 11c0 1.11.89 2 2 2h15.64L21.74 23 23 21.74zM22 7.95c.05-1.11-.84-2-1.95-1.95h-4V3.95c0-1.11-.89-2-2-1.95h-4c-1.11-.05-2 .84-2 1.95v.32l13.95 14V7.95zM14.05 6H10V3.95h4.05V6z" + }, + "children": [] + }] +}; +exports.ic_work_off = ic_work_off; \ No newline at end of file diff --git a/dist/md/ic_work_off_outline.js b/dist/md/ic_work_off_outline.js new file mode 100644 index 000000000..826043249 --- /dev/null +++ b/dist/md/ic_work_off_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_work_off_outline = void 0; +var ic_work_off_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 4h4v2h-3.6l2 2H20v7.6l2 2V8c0-1.11-.89-2-2-2h-4V4c0-1.11-.89-2-2-2h-4c-.99 0-1.8.7-1.96 1.64L10 5.6V4zM3.4 1.84L1.99 3.25 4.74 6H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h15.74l2 2 1.41-1.41L3.4 1.84zM4 19V8h2.74l11 11H4z" + }, + "children": [] + }] +}; +exports.ic_work_off_outline = ic_work_off_outline; \ No newline at end of file diff --git a/dist/md/ic_work_off_twotone.js b/dist/md/ic_work_off_twotone.js new file mode 100644 index 000000000..671b48fb1 --- /dev/null +++ b/dist/md/ic_work_off_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_work_off_twotone = void 0; +var ic_work_off_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 8v11h13.74l-11-11zm8.4 0l7.6 7.6V8z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M10 4h4v2h-3.6l2 2H20v7.6l2 2V8c0-1.11-.89-2-2-2h-4V4c0-1.11-.89-2-2-2h-4c-.99 0-1.8.7-1.96 1.64L10 5.6V4zM3.4 1.84L1.99 3.25 4.74 6H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h15.74l2 2 1.41-1.41L3.4 1.84zM4 19V8h2.74l11 11H4z" + }, + "children": [] + }] +}; +exports.ic_work_off_twotone = ic_work_off_twotone; \ No newline at end of file diff --git a/dist/md/ic_work_outline.js b/dist/md/ic_work_outline.js new file mode 100644 index 000000000..07e329889 --- /dev/null +++ b/dist/md/ic_work_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_work_outline = void 0; +var ic_work_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 6h-4V4c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-6 0h-4V4h4v2z" + }, + "children": [] + }] +}; +exports.ic_work_outline = ic_work_outline; \ No newline at end of file diff --git a/dist/md/ic_work_outline_outline.js b/dist/md/ic_work_outline_outline.js new file mode 100644 index 000000000..1913b3c4d --- /dev/null +++ b/dist/md/ic_work_outline_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_work_outline_outline = void 0; +var ic_work_outline_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14 6V4h-4v2h4zM4 8v11h16V8H4zm16-2c1.11 0 2 .89 2 2v11c0 1.11-.89 2-2 2H4c-1.11 0-2-.89-2-2l.01-11c0-1.11.88-2 1.99-2h4V4c0-1.11.89-2 2-2h4c1.11 0 2 .89 2 2v2h4z" + }, + "children": [] + }] +}; +exports.ic_work_outline_outline = ic_work_outline_outline; \ No newline at end of file diff --git a/dist/md/ic_work_outline_twotone.js b/dist/md/ic_work_outline_twotone.js new file mode 100644 index 000000000..8defac617 --- /dev/null +++ b/dist/md/ic_work_outline_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_work_outline_twotone = void 0; +var ic_work_outline_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 6h-4V4c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zM10 4h4v2h-4V4zm10 15H4V8h16v11z" + }, + "children": [] + }] +}; +exports.ic_work_outline_twotone = ic_work_outline_twotone; \ No newline at end of file diff --git a/dist/md/ic_work_twotone.js b/dist/md/ic_work_twotone.js new file mode 100644 index 000000000..253d9612f --- /dev/null +++ b/dist/md/ic_work_twotone.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_work_twotone = void 0; +var ic_work_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 8h16v11H4z", + "opacity": ".3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M20 6h-4V4c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zM10 4h4v2h-4V4zm10 15H4V8h16v11z" + }, + "children": [] + }] +}; +exports.ic_work_twotone = ic_work_twotone; \ No newline at end of file diff --git a/dist/md/ic_workspaces_filled.js b/dist/md/ic_workspaces_filled.js new file mode 100644 index 000000000..ac94ca6e2 --- /dev/null +++ b/dist/md/ic_workspaces_filled.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_workspaces_filled = void 0; +var ic_workspaces_filled = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 13c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm6-10C9.8 3 8 4.8 8 7s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm6 10c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4z" + }, + "children": [] + }] +}; +exports.ic_workspaces_filled = ic_workspaces_filled; \ No newline at end of file diff --git a/dist/md/ic_workspaces_outline.js b/dist/md/ic_workspaces_outline.js new file mode 100644 index 000000000..e66955354 --- /dev/null +++ b/dist/md/ic_workspaces_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_workspaces_outline = void 0; +var ic_workspaces_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M6 15c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0-2c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm6-8c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0-2C9.8 3 8 4.8 8 7s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm6 12c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0-2c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4z" + }, + "children": [] + }] +}; +exports.ic_workspaces_outline = ic_workspaces_outline; \ No newline at end of file diff --git a/dist/md/ic_wrap_text.js b/dist/md/ic_wrap_text.js new file mode 100644 index 000000000..e99225826 --- /dev/null +++ b/dist/md/ic_wrap_text.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_wrap_text = void 0; +var ic_wrap_text = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 19h6v-2H4v2zM20 5H4v2h16V5zm-3 6H4v2h13.25c1.1 0 2 .9 2 2s-.9 2-2 2H15v-2l-3 3 3 3v-2h2c2.21 0 4-1.79 4-4s-1.79-4-4-4z" + }, + "children": [] + }] +}; +exports.ic_wrap_text = ic_wrap_text; \ No newline at end of file diff --git a/dist/md/ic_wrap_text_outline.js b/dist/md/ic_wrap_text_outline.js new file mode 100644 index 000000000..ffde93216 --- /dev/null +++ b/dist/md/ic_wrap_text_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_wrap_text_outline = void 0; +var ic_wrap_text_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 19h6v-2H4v2zM20 5H4v2h16V5zm-3 6H4v2h13.25c1.1 0 2 .9 2 2s-.9 2-2 2H15v-2l-3 3 3 3v-2h2c2.21 0 4-1.79 4-4s-1.79-4-4-4z" + }, + "children": [] + }] +}; +exports.ic_wrap_text_outline = ic_wrap_text_outline; \ No newline at end of file diff --git a/dist/md/ic_wrap_text_twotone.js b/dist/md/ic_wrap_text_twotone.js new file mode 100644 index 000000000..ab3681bd0 --- /dev/null +++ b/dist/md/ic_wrap_text_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_wrap_text_twotone = void 0; +var ic_wrap_text_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M4 17h6v2H4zm13-6H4v2h13.25c1.1 0 2 .9 2 2s-.9 2-2 2H15v-2l-3 3 3 3v-2h2c2.21 0 4-1.79 4-4s-1.79-4-4-4zM4 5h16v2H4z" + }, + "children": [] + }] +}; +exports.ic_wrap_text_twotone = ic_wrap_text_twotone; \ No newline at end of file diff --git a/dist/md/ic_wrong_location.js b/dist/md/ic_wrong_location.js new file mode 100644 index 000000000..b882f797e --- /dev/null +++ b/dist/md/ic_wrong_location.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_wrong_location = void 0; +var ic_wrong_location = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M14,10V3.26C13.35,3.09,12.68,3,12,3c-4.2,0-8,3.22-8,8.2c0,3.32,2.67,7.25,8,11.8c5.33-4.55,8-8.48,8-11.8 c0-0.41-0.04-0.81-0.09-1.2H14z M12,13c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2C14,12.1,13.1,13,12,13z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14,10V3.26C13.35,3.09,12.68,3,12,3c-4.2,0-8,3.22-8,8.2c0,3.32,2.67,7.25,8,11.8c5.33-4.55,8-8.48,8-11.8 c0-0.41-0.04-0.81-0.09-1.2H14z M12,13c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2C14,12.1,13.1,13,12,13z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "22.54,2.88 21.12,1.46 19,3.59 16.88,1.46 15.46,2.88 17.59,5 15.46,7.12 16.88,8.54 19,6.41 21.12,8.54 22.54,7.12 20.41,5" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "22.54,2.88 21.12,1.46 19,3.59 16.88,1.46 15.46,2.88 17.59,5 15.46,7.12 16.88,8.54 19,6.41 21.12,8.54 22.54,7.12 20.41,5" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_wrong_location = ic_wrong_location; \ No newline at end of file diff --git a/dist/md/ic_wrong_location_outline.js b/dist/md/ic_wrong_location_outline.js new file mode 100644 index 000000000..f395413ee --- /dev/null +++ b/dist/md/ic_wrong_location_outline.js @@ -0,0 +1,83 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_wrong_location_outline = void 0; +var ic_wrong_location_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M18,11c0,0.07,0,0.13,0,0.2c0,2.34-1.95,5.44-6,9.14c-4.05-3.7-6-6.79-6-9.14C6,7.57,8.65,5,12,5c0.34,0,0.68,0.03,1,0.08 V3.06C12.67,3.02,12.34,3,12,3c-4.2,0-8,3.22-8,8.2c0,3.32,2.67,7.25,8,11.8c5.33-4.55,8-8.48,8-11.8c0-0.07,0-0.13,0-0.2H18z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18,11c0,0.07,0,0.13,0,0.2c0,2.34-1.95,5.44-6,9.14c-4.05-3.7-6-6.79-6-9.14C6,7.57,8.65,5,12,5c0.34,0,0.68,0.03,1,0.08 V3.06C12.67,3.02,12.34,3,12,3c-4.2,0-8,3.22-8,8.2c0,3.32,2.67,7.25,8,11.8c5.33-4.55,8-8.48,8-11.8c0-0.07,0-0.13,0-0.2H18z" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "11", + "r": "2" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "11", + "r": "2" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "22.54,2.88 21.12,1.46 19,3.59 16.88,1.46 15.46,2.88 17.59,5 15.46,7.12 16.88,8.54 19,6.41 21.12,8.54 22.54,7.12 20.41,5" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "22.54,2.88 21.12,1.46 19,3.59 16.88,1.46 15.46,2.88 17.59,5 15.46,7.12 16.88,8.54 19,6.41 21.12,8.54 22.54,7.12 20.41,5" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_wrong_location_outline = ic_wrong_location_outline; \ No newline at end of file diff --git a/dist/md/ic_wrong_location_twotone.js b/dist/md/ic_wrong_location_twotone.js new file mode 100644 index 000000000..a4d777412 --- /dev/null +++ b/dist/md/ic_wrong_location_twotone.js @@ -0,0 +1,83 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_wrong_location_twotone = void 0; +var ic_wrong_location_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M18,11c0,0.07,0,0.13,0,0.2c0,2.34-1.95,5.44-6,9.14c-4.05-3.7-6-6.79-6-9.14C6,7.57,8.65,5,12,5c0.34,0,0.68,0.03,1,0.08 V3.06C12.67,3.02,12.34,3,12,3c-4.2,0-8,3.22-8,8.2c0,3.32,2.67,7.25,8,11.8c5.33-4.55,8-8.48,8-11.8c0-0.07,0-0.13,0-0.2H18z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18,11c0,0.07,0,0.13,0,0.2c0,2.34-1.95,5.44-6,9.14c-4.05-3.7-6-6.79-6-9.14C6,7.57,8.65,5,12,5c0.34,0,0.68,0.03,1,0.08 V3.06C12.67,3.02,12.34,3,12,3c-4.2,0-8,3.22-8,8.2c0,3.32,2.67,7.25,8,11.8c5.33-4.55,8-8.48,8-11.8c0-0.07,0-0.13,0-0.2H18z" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "11", + "r": "2" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "11", + "r": "2" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "22.54,2.88 21.12,1.46 19,3.59 16.88,1.46 15.46,2.88 17.59,5 15.46,7.12 16.88,8.54 19,6.41 21.12,8.54 22.54,7.12 20.41,5" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "22.54,2.88 21.12,1.46 19,3.59 16.88,1.46 15.46,2.88 17.59,5 15.46,7.12 16.88,8.54 19,6.41 21.12,8.54 22.54,7.12 20.41,5" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ic_wrong_location_twotone = ic_wrong_location_twotone; \ No newline at end of file diff --git a/dist/md/ic_wysiwyg.js b/dist/md/ic_wysiwyg.js new file mode 100644 index 000000000..f00fcd3a9 --- /dev/null +++ b/dist/md/ic_wysiwyg.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_wysiwyg = void 0; +var ic_wysiwyg = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19,3H5C3.89,3,3,3.9,3,5v14c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.11,3,19,3z M19,19H5V7h14V19z M17,12H7v-2 h10V12z M13,16H7v-2h6V16z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,3H5C3.89,3,3,3.9,3,5v14c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.11,3,19,3z M19,19H5V7h14V19z M17,12H7v-2 h10V12z M13,16H7v-2h6V16z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_wysiwyg = ic_wysiwyg; \ No newline at end of file diff --git a/dist/md/ic_wysiwyg_outline.js b/dist/md/ic_wysiwyg_outline.js new file mode 100644 index 000000000..808796012 --- /dev/null +++ b/dist/md/ic_wysiwyg_outline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_wysiwyg_outline = void 0; +var ic_wysiwyg_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19,3H5C3.89,3,3,3.9,3,5v14c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.11,3,19,3z M19,19H5V7h14V19z M17,12H7v-2 h10V12z M13,16H7v-2h6V16z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,3H5C3.89,3,3,3.9,3,5v14c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.11,3,19,3z M19,19H5V7h14V19z M17,12H7v-2 h10V12z M13,16H7v-2h6V16z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_wysiwyg_outline = ic_wysiwyg_outline; \ No newline at end of file diff --git a/dist/md/ic_wysiwyg_twotone.js b/dist/md/ic_wysiwyg_twotone.js new file mode 100644 index 000000000..ef7fe5017 --- /dev/null +++ b/dist/md/ic_wysiwyg_twotone.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_wysiwyg_twotone = void 0; +var ic_wysiwyg_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19,19H5V7h14V19z M17,12H7v-2h10V12z M13,16H7v-2h6V16z", + "opacity": ".3" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,19H5V7h14V19z M17,12H7v-2h10V12z M13,16H7v-2h6V16z", + "opacity": ".3" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19,3H5C3.89,3,3,3.9,3,5v14c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.11,3,19,3z M19,19H5V7h14V19z M17,12H7v-2 h10V12z M13,16H7v-2h6V16z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19,3H5C3.89,3,3,3.9,3,5v14c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.11,3,19,3z M19,19H5V7h14V19z M17,12H7v-2 h10V12z M13,16H7v-2h6V16z" + }, + "children": [] + }] + }] + }] +}; +exports.ic_wysiwyg_twotone = ic_wysiwyg_twotone; \ No newline at end of file diff --git a/dist/md/ic_youtube_searched_for.js b/dist/md/ic_youtube_searched_for.js new file mode 100644 index 000000000..5c74514e2 --- /dev/null +++ b/dist/md/ic_youtube_searched_for.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_youtube_searched_for = void 0; +var ic_youtube_searched_for = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0zm0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17.01 14h-.8l-.27-.27c.98-1.14 1.57-2.61 1.57-4.23 0-3.59-2.91-6.5-6.5-6.5s-6.5 3-6.5 6.5H2l3.84 4 4.16-4H6.51C6.51 7 8.53 5 11.01 5s4.5 2.01 4.5 4.5c0 2.48-2.02 4.5-4.5 4.5-.65 0-1.26-.14-1.82-.38L7.71 15.1c.97.57 2.09.9 3.3.9 1.61 0 3.08-.59 4.22-1.57l.27.27v.79l5.01 4.99L22 19l-4.99-5z" + }, + "children": [] + }] +}; +exports.ic_youtube_searched_for = ic_youtube_searched_for; \ No newline at end of file diff --git a/dist/md/ic_youtube_searched_for_outline.js b/dist/md/ic_youtube_searched_for_outline.js new file mode 100644 index 000000000..4032d84a6 --- /dev/null +++ b/dist/md/ic_youtube_searched_for_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_youtube_searched_for_outline = void 0; +var ic_youtube_searched_for_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0zm0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17.01 14h-.8l-.27-.27c.98-1.14 1.57-2.61 1.57-4.23 0-3.59-2.91-6.5-6.5-6.5s-6.5 3-6.5 6.5H2l3.84 4 4.16-4H6.51C6.51 7 8.53 5 11.01 5s4.5 2.01 4.5 4.5c0 2.48-2.02 4.5-4.5 4.5-.65 0-1.26-.14-1.82-.38L7.71 15.1c.97.57 2.09.9 3.3.9 1.61 0 3.08-.59 4.22-1.57l.27.27v.79l5.01 4.99L22 19l-4.99-5z" + }, + "children": [] + }] +}; +exports.ic_youtube_searched_for_outline = ic_youtube_searched_for_outline; \ No newline at end of file diff --git a/dist/md/ic_youtube_searched_for_twotone.js b/dist/md/ic_youtube_searched_for_twotone.js new file mode 100644 index 000000000..90fa3faa5 --- /dev/null +++ b/dist/md/ic_youtube_searched_for_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_youtube_searched_for_twotone = void 0; +var ic_youtube_searched_for_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0zm0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17.01 14h-.8l-.27-.27c.98-1.14 1.57-2.61 1.57-4.23 0-3.59-2.91-6.5-6.5-6.5s-6.5 3-6.5 6.5H2l3.84 4 4.16-4H6.51C6.51 7 8.53 5 11.01 5s4.5 2.01 4.5 4.5c0 2.48-2.02 4.5-4.5 4.5-.65 0-1.26-.14-1.82-.38L7.71 15.1c.97.57 2.09.9 3.3.9 1.61 0 3.08-.59 4.22-1.57l.27.27v.79l5.01 4.99L22 19l-4.99-5z" + }, + "children": [] + }] +}; +exports.ic_youtube_searched_for_twotone = ic_youtube_searched_for_twotone; \ No newline at end of file diff --git a/dist/md/ic_zoom_in.js b/dist/md/ic_zoom_in.js new file mode 100644 index 000000000..56e9614ff --- /dev/null +++ b/dist/md/ic_zoom_in.js @@ -0,0 +1,30 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_zoom_in = void 0; +var ic_zoom_in = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12 10h-2v2H9v-2H7V9h2V7h1v2h2v1z" + }, + "children": [] + }] +}; +exports.ic_zoom_in = ic_zoom_in; \ No newline at end of file diff --git a/dist/md/ic_zoom_in_outline.js b/dist/md/ic_zoom_in_outline.js new file mode 100644 index 000000000..482d602a8 --- /dev/null +++ b/dist/md/ic_zoom_in_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_zoom_in_outline = void 0; +var ic_zoom_in_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zm.5-7H9v2H7v1h2v2h1v-2h2V9h-2z" + }, + "children": [] + }] +}; +exports.ic_zoom_in_outline = ic_zoom_in_outline; \ No newline at end of file diff --git a/dist/md/ic_zoom_in_twotone.js b/dist/md/ic_zoom_in_twotone.js new file mode 100644 index 000000000..d7aef4228 --- /dev/null +++ b/dist/md/ic_zoom_in_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_zoom_in_twotone = void 0; +var ic_zoom_in_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zm.5-7H9v2H7v1h2v2h1v-2h2V9h-2z" + }, + "children": [] + }] +}; +exports.ic_zoom_in_twotone = ic_zoom_in_twotone; \ No newline at end of file diff --git a/dist/md/ic_zoom_out.js b/dist/md/ic_zoom_out.js new file mode 100644 index 000000000..d6b748c46 --- /dev/null +++ b/dist/md/ic_zoom_out.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_zoom_out = void 0; +var ic_zoom_out = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zM7 9h5v1H7z" + }, + "children": [] + }] +}; +exports.ic_zoom_out = ic_zoom_out; \ No newline at end of file diff --git a/dist/md/ic_zoom_out_map.js b/dist/md/ic_zoom_out_map.js new file mode 100644 index 000000000..5dd454db2 --- /dev/null +++ b/dist/md/ic_zoom_out_map.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_zoom_out_map = void 0; +var ic_zoom_out_map = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [{ + "name": "rect", + "attribs": { + "fill": "none", + "height": "24", + "width": "24" + }, + "children": [] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M15,3l2.3,2.3l-2.89,2.87l1.42,1.42L18.7,6.7L21,9V3H15z M3,9l2.3-2.3l2.87,2.89l1.42-1.42L6.7,5.3L9,3H3V9z M9,21 l-2.3-2.3l2.89-2.87l-1.42-1.42L5.3,17.3L3,15v6H9z M21,15l-2.3,2.3l-2.87-2.89l-1.42,1.42l2.89,2.87L15,21h6V15z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15,3l2.3,2.3l-2.89,2.87l1.42,1.42L18.7,6.7L21,9V3H15z M3,9l2.3-2.3l2.87,2.89l1.42-1.42L6.7,5.3L9,3H3V9z M9,21 l-2.3-2.3l2.89-2.87l-1.42-1.42L5.3,17.3L3,15v6H9z M21,15l-2.3,2.3l-2.87-2.89l-1.42,1.42l2.89,2.87L15,21h6V15z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.ic_zoom_out_map = ic_zoom_out_map; \ No newline at end of file diff --git a/dist/md/ic_zoom_out_map_outline.js b/dist/md/ic_zoom_out_map_outline.js new file mode 100644 index 000000000..a6d437ba9 --- /dev/null +++ b/dist/md/ic_zoom_out_map_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_zoom_out_map_outline = void 0; +var ic_zoom_out_map_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15 3l2.3 2.3-2.89 2.87 1.42 1.42L18.7 6.7 21 9V3h-6zM3 9l2.3-2.3 2.87 2.89 1.42-1.42L6.7 5.3 9 3H3v6zm6 12l-2.3-2.3 2.89-2.87-1.42-1.42L5.3 17.3 3 15v6h6zm12-6l-2.3 2.3-2.87-2.89-1.42 1.42 2.89 2.87L15 21h6v-6z" + }, + "children": [] + }] +}; +exports.ic_zoom_out_map_outline = ic_zoom_out_map_outline; \ No newline at end of file diff --git a/dist/md/ic_zoom_out_map_twotone.js b/dist/md/ic_zoom_out_map_twotone.js new file mode 100644 index 000000000..86cd075bf --- /dev/null +++ b/dist/md/ic_zoom_out_map_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_zoom_out_map_twotone = void 0; +var ic_zoom_out_map_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17.3 5.3l-2.89 2.87 1.42 1.42L18.7 6.7 21 9V3h-6zM9 3H3v6l2.3-2.3 2.87 2.89 1.42-1.42L6.7 5.3zm-.83 11.41L5.3 17.3 3 15v6h6l-2.3-2.3 2.89-2.87zm7.66 0l-1.42 1.42 2.89 2.87L15 21h6v-6l-2.3 2.3z" + }, + "children": [] + }] +}; +exports.ic_zoom_out_map_twotone = ic_zoom_out_map_twotone; \ No newline at end of file diff --git a/dist/md/ic_zoom_out_outline.js b/dist/md/ic_zoom_out_outline.js new file mode 100644 index 000000000..5fc663c46 --- /dev/null +++ b/dist/md/ic_zoom_out_outline.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_zoom_out_outline = void 0; +var ic_zoom_out_outline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zM7 9h5v1H7z" + }, + "children": [] + }] +}; +exports.ic_zoom_out_outline = ic_zoom_out_outline; \ No newline at end of file diff --git a/dist/md/ic_zoom_out_twotone.js b/dist/md/ic_zoom_out_twotone.js new file mode 100644 index 000000000..e2497cd63 --- /dev/null +++ b/dist/md/ic_zoom_out_twotone.js @@ -0,0 +1,24 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ic_zoom_out_twotone = void 0; +var ic_zoom_out_twotone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 0h24v24H0V0z", + "fill": "none" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zM7 9h5v1H7z" + }, + "children": [] + }] +}; +exports.ic_zoom_out_twotone = ic_zoom_out_twotone; \ No newline at end of file diff --git a/dist/md/index.js b/dist/md/index.js new file mode 100644 index 000000000..17ee26763 --- /dev/null +++ b/dist/md/index.js @@ -0,0 +1 @@ +"use strict";Object.defineProperty(exports,"__esModule",{value:true});exports.ic_adb_outline=exports.ic_adb=exports.ic_ad_units_twotone=exports.ic_ad_units_outline=exports.ic_ad_units=exports.ic_account_tree_twotone=exports.ic_account_tree_outline=exports.ic_account_tree=exports.ic_account_circle_twotone=exports.ic_account_circle_outline=exports.ic_account_circle=exports.ic_account_box_twotone=exports.ic_account_box_outline=exports.ic_account_box=exports.ic_account_balance_wallet_twotone=exports.ic_account_balance_wallet_outline=exports.ic_account_balance_wallet=exports.ic_account_balance_twotone=exports.ic_account_balance_outline=exports.ic_account_balance=exports.ic_accessible_twotone=exports.ic_accessible_outline=exports.ic_accessible_forward_twotone=exports.ic_accessible_forward_outline=exports.ic_accessible_forward=exports.ic_accessible=exports.ic_accessibility_twotone=exports.ic_accessibility_outline=exports.ic_accessibility_new_twotone=exports.ic_accessibility_new_outline=exports.ic_accessibility_new=exports.ic_accessibility=exports.ic_access_time_twotone=exports.ic_access_time_outline=exports.ic_access_time=exports.ic_access_alarms_twotone=exports.ic_access_alarms_outline=exports.ic_access_alarms=exports.ic_access_alarm_twotone=exports.ic_access_alarm_outline=exports.ic_access_alarm=exports.ic_ac_unit_twotone=exports.ic_ac_unit_outline=exports.ic_ac_unit=exports.ic_9mp=exports.ic_9k_plus=exports.ic_9k=exports.ic_8mp=exports.ic_8k_plus=exports.ic_8k=exports.ic_7mp=exports.ic_7k_plus=exports.ic_7k=exports.ic_6mp=exports.ic_6k_plus=exports.ic_6k=exports.ic_6_ft_apart_twotone=exports.ic_6_ft_apart_outline=exports.ic_6_ft_apart=exports.ic_5mp=exports.ic_5k_plus=exports.ic_5k=exports.ic_5g_twotone=exports.ic_5g_outline=exports.ic_5g=exports.ic_4mp=exports.ic_4k_twotone=exports.ic_4k_plus=exports.ic_4k_outline=exports.ic_4k=exports.ic_3mp=exports.ic_3k_plus=exports.ic_3k=exports.ic_3d_rotation_twotone=exports.ic_3d_rotation_outline=exports.ic_3d_rotation=exports.ic_360_twotone=exports.ic_360_outline=exports.ic_360=exports.ic_2mp=exports.ic_2k_plus=exports.ic_2k=exports.ic_24mp=exports.ic_23mp=exports.ic_22mp=exports.ic_21mp=exports.ic_20mp=exports.ic_1k_plus=exports.ic_1k=exports.ic_19mp=exports.ic_18mp=exports.ic_17mp=exports.ic_16mp=exports.ic_15mp=exports.ic_14mp=exports.ic_13mp=exports.ic_12mp=exports.ic_11mp=exports.ic_10mp=exports.ic_10k=void 0;exports.ic_airplanemode_active_outline=exports.ic_airplanemode_active=exports.ic_airline_seat_recline_normal_twotone=exports.ic_airline_seat_recline_normal_outline=exports.ic_airline_seat_recline_normal=exports.ic_airline_seat_recline_extra_twotone=exports.ic_airline_seat_recline_extra_outline=exports.ic_airline_seat_recline_extra=exports.ic_airline_seat_legroom_reduced_twotone=exports.ic_airline_seat_legroom_reduced_outline=exports.ic_airline_seat_legroom_reduced=exports.ic_airline_seat_legroom_normal_twotone=exports.ic_airline_seat_legroom_normal_outline=exports.ic_airline_seat_legroom_normal=exports.ic_airline_seat_legroom_extra_twotone=exports.ic_airline_seat_legroom_extra_outline=exports.ic_airline_seat_legroom_extra=exports.ic_airline_seat_individual_suite_twotone=exports.ic_airline_seat_individual_suite_outline=exports.ic_airline_seat_individual_suite=exports.ic_airline_seat_flat_twotone=exports.ic_airline_seat_flat_outline=exports.ic_airline_seat_flat_angled_twotone=exports.ic_airline_seat_flat_angled_outline=exports.ic_airline_seat_flat_angled=exports.ic_airline_seat_flat=exports.ic_agriculture_twotone=exports.ic_agriculture_outline=exports.ic_agriculture=exports.ic_admin_panel_settings_twotone=exports.ic_admin_panel_settings_outline=exports.ic_admin_panel_settings=exports.ic_adjust_twotone=exports.ic_adjust_outline=exports.ic_adjust=exports.ic_addchart_twotone=exports.ic_addchart_outline=exports.ic_addchart=exports.ic_add_twotone=exports.ic_add_to_queue_twotone=exports.ic_add_to_queue_outline=exports.ic_add_to_queue=exports.ic_add_to_photos_twotone=exports.ic_add_to_photos_outline=exports.ic_add_to_photos=exports.ic_add_to_home_screen_twotone=exports.ic_add_to_home_screen_outline=exports.ic_add_to_home_screen=exports.ic_add_to_drive=exports.ic_add_task_twotone=exports.ic_add_task_outline=exports.ic_add_task=exports.ic_add_shopping_cart_twotone=exports.ic_add_shopping_cart_outline=exports.ic_add_shopping_cart=exports.ic_add_road_twotone=exports.ic_add_road_outline=exports.ic_add_road=exports.ic_add_photo_alternate_twotone=exports.ic_add_photo_alternate_outline=exports.ic_add_photo_alternate=exports.ic_add_outline=exports.ic_add_moderator=exports.ic_add_location_twotone=exports.ic_add_location_outline=exports.ic_add_location_alt_twotone=exports.ic_add_location_alt_outline=exports.ic_add_location_alt=exports.ic_add_location=exports.ic_add_link=exports.ic_add_ic_call_twotone=exports.ic_add_ic_call_outline=exports.ic_add_ic_call=exports.ic_add_comment_twotone=exports.ic_add_comment_outline=exports.ic_add_comment=exports.ic_add_circle_twotone=exports.ic_add_circle_outline_twotone=exports.ic_add_circle_outline_outline=exports.ic_add_circle_outline=exports.ic_add_circle=exports.ic_add_chart=exports.ic_add_call=exports.ic_add_business_twotone=exports.ic_add_business_outline=exports.ic_add_business=exports.ic_add_box_twotone=exports.ic_add_box_outline=exports.ic_add_box=exports.ic_add_alert_twotone=exports.ic_add_alert_outline=exports.ic_add_alert=exports.ic_add_alarm_twotone=exports.ic_add_alarm_outline=exports.ic_add_alarm=exports.ic_add_a_photo_twotone=exports.ic_add_a_photo_outline=exports.ic_add_a_photo=exports.ic_add=exports.ic_adb_twotone=void 0;exports.ic_arrow_drop_down_twotone=exports.ic_arrow_drop_down_outline=exports.ic_arrow_drop_down_circle_twotone=exports.ic_arrow_drop_down_circle_outline=exports.ic_arrow_drop_down_circle=exports.ic_arrow_drop_down=exports.ic_arrow_downward_twotone=exports.ic_arrow_downward_outline=exports.ic_arrow_downward=exports.ic_arrow_circle_up_twotone=exports.ic_arrow_circle_up_outline=exports.ic_arrow_circle_up=exports.ic_arrow_circle_down_twotone=exports.ic_arrow_circle_down_outline=exports.ic_arrow_circle_down=exports.ic_arrow_back_twotone=exports.ic_arrow_back_outline=exports.ic_arrow_back_ios_twotone=exports.ic_arrow_back_ios_outline=exports.ic_arrow_back_ios=exports.ic_arrow_back=exports.ic_archive_twotone=exports.ic_archive_outline=exports.ic_archive=exports.ic_architecture_twotone=exports.ic_architecture_outline=exports.ic_architecture=exports.ic_apps_twotone=exports.ic_apps_outline=exports.ic_apps=exports.ic_approval=exports.ic_app_settings_alt_twotone=exports.ic_app_settings_alt_outline=exports.ic_app_settings_alt=exports.ic_app_registration=exports.ic_app_blocking_twotone=exports.ic_app_blocking_outline=exports.ic_app_blocking=exports.ic_api_twotone=exports.ic_api_outline=exports.ic_api=exports.ic_apartment_twotone=exports.ic_apartment_outline=exports.ic_apartment=exports.ic_announcement_twotone=exports.ic_announcement_outline=exports.ic_announcement=exports.ic_animation=exports.ic_android_twotone=exports.ic_android_outline=exports.ic_android=exports.ic_anchor_twotone=exports.ic_anchor_outline=exports.ic_anchor=exports.ic_analytics_twotone=exports.ic_analytics_outline=exports.ic_analytics=exports.ic_amp_stories_twotone=exports.ic_amp_stories_outline=exports.ic_amp_stories=exports.ic_alternate_email_twotone=exports.ic_alternate_email_outline=exports.ic_alternate_email=exports.ic_alt_route_twotone=exports.ic_alt_route_outline=exports.ic_alt_route=exports.ic_all_out_twotone=exports.ic_all_out_outline=exports.ic_all_out=exports.ic_all_inclusive_twotone=exports.ic_all_inclusive_outline=exports.ic_all_inclusive=exports.ic_all_inbox_twotone=exports.ic_all_inbox_outline=exports.ic_all_inbox=exports.ic_album_twotone=exports.ic_album_outline=exports.ic_album=exports.ic_alarm_twotone=exports.ic_alarm_outline=exports.ic_alarm_on_twotone=exports.ic_alarm_on_outline=exports.ic_alarm_on=exports.ic_alarm_off_twotone=exports.ic_alarm_off_outline=exports.ic_alarm_off=exports.ic_alarm_add_twotone=exports.ic_alarm_add_outline=exports.ic_alarm_add=exports.ic_alarm=exports.ic_airport_shuttle_twotone=exports.ic_airport_shuttle_outline=exports.ic_airport_shuttle=exports.ic_airplay_twotone=exports.ic_airplay_outline=exports.ic_airplay=exports.ic_airplanemode_inactive_twotone=exports.ic_airplanemode_inactive_outline=exports.ic_airplanemode_inactive=exports.ic_airplanemode_active_twotone=void 0;exports.ic_backpack=exports.ic_baby_changing_station_twotone=exports.ic_baby_changing_station_outline=exports.ic_baby_changing_station=exports.ic_av_timer_twotone=exports.ic_av_timer_outline=exports.ic_av_timer=exports.ic_autorenew_twotone=exports.ic_autorenew_outline=exports.ic_autorenew=exports.ic_auto_stories=exports.ic_auto_fix_off=exports.ic_auto_fix_normal=exports.ic_auto_fix_high=exports.ic_auto_delete_twotone=exports.ic_auto_delete_outline=exports.ic_auto_delete=exports.ic_auto_awesome_motion=exports.ic_auto_awesome_mosaic=exports.ic_auto_awesome=exports.ic_audiotrack_twotone=exports.ic_audiotrack_outline=exports.ic_audiotrack=exports.ic_attribution_twotone=exports.ic_attribution_outline=exports.ic_attractions=exports.ic_attachment_twotone=exports.ic_attachment_outline=exports.ic_attachment=exports.ic_attach_money_twotone=exports.ic_attach_money_outline=exports.ic_attach_money=exports.ic_attach_file_twotone=exports.ic_attach_file_outline=exports.ic_attach_file=exports.ic_attach_email_twotone=exports.ic_attach_email_outline=exports.ic_attach_email=exports.ic_atm_twotone=exports.ic_atm_outline=exports.ic_atm=exports.ic_assistant_twotone=exports.ic_assistant_photo_twotone=exports.ic_assistant_photo_outline=exports.ic_assistant_photo=exports.ic_assistant_outline=exports.ic_assistant_navigation=exports.ic_assistant_direction=exports.ic_assistant=exports.ic_assignment_twotone=exports.ic_assignment_turned_in_twotone=exports.ic_assignment_turned_in_outline=exports.ic_assignment_turned_in=exports.ic_assignment_returned_twotone=exports.ic_assignment_returned_outline=exports.ic_assignment_returned=exports.ic_assignment_return_twotone=exports.ic_assignment_return_outline=exports.ic_assignment_return=exports.ic_assignment_outline=exports.ic_assignment_late_twotone=exports.ic_assignment_late_outline=exports.ic_assignment_late=exports.ic_assignment_ind_twotone=exports.ic_assignment_ind_outline=exports.ic_assignment_ind=exports.ic_assignment=exports.ic_assessment_twotone=exports.ic_assessment_outline=exports.ic_assessment=exports.ic_aspect_ratio_twotone=exports.ic_aspect_ratio_outline=exports.ic_aspect_ratio=exports.ic_article_twotone=exports.ic_article_outline=exports.ic_article=exports.ic_art_track_twotone=exports.ic_art_track_outline=exports.ic_art_track=exports.ic_arrow_upward_twotone=exports.ic_arrow_upward_outline=exports.ic_arrow_upward=exports.ic_arrow_right_twotone=exports.ic_arrow_right_outline=exports.ic_arrow_right_alt_twotone=exports.ic_arrow_right_alt_outline=exports.ic_arrow_right_alt=exports.ic_arrow_right=exports.ic_arrow_left_twotone=exports.ic_arrow_left_outline=exports.ic_arrow_left=exports.ic_arrow_forward_twotone=exports.ic_arrow_forward_outline=exports.ic_arrow_forward_ios_twotone=exports.ic_arrow_forward_ios_outline=exports.ic_arrow_forward_ios=exports.ic_arrow_forward=exports.ic_arrow_drop_up_twotone=exports.ic_arrow_drop_up_outline=exports.ic_arrow_drop_up=void 0;exports.ic_blur_on_outline=exports.ic_blur_on=exports.ic_blur_off_twotone=exports.ic_blur_off_outline=exports.ic_blur_off=exports.ic_blur_linear_twotone=exports.ic_blur_linear_outline=exports.ic_blur_linear=exports.ic_blur_circular_twotone=exports.ic_blur_circular_outline=exports.ic_blur_circular=exports.ic_bluetooth_twotone=exports.ic_bluetooth_searching_twotone=exports.ic_bluetooth_searching_outline=exports.ic_bluetooth_searching=exports.ic_bluetooth_outline=exports.ic_bluetooth_disabled_twotone=exports.ic_bluetooth_disabled_outline=exports.ic_bluetooth_disabled=exports.ic_bluetooth_connected_twotone=exports.ic_bluetooth_connected_outline=exports.ic_bluetooth_connected=exports.ic_bluetooth_audio_twotone=exports.ic_bluetooth_audio_outline=exports.ic_bluetooth_audio=exports.ic_bluetooth=exports.ic_block_twotone=exports.ic_block_outline=exports.ic_block_flipped=exports.ic_block=exports.ic_biotech_twotone=exports.ic_biotech_outline=exports.ic_biotech=exports.ic_bike_scooter_twotone=exports.ic_bike_scooter_outline=exports.ic_bike_scooter=exports.ic_bento_twotone=exports.ic_bento_outline=exports.ic_bento=exports.ic_beenhere_twotone=exports.ic_beenhere_outline=exports.ic_beenhere=exports.ic_bedtime_twotone=exports.ic_bedtime_outline=exports.ic_bedtime=exports.ic_beach_access_twotone=exports.ic_beach_access_outline=exports.ic_beach_access=exports.ic_battery_unknown_twotone=exports.ic_battery_unknown_outline=exports.ic_battery_unknown=exports.ic_battery_std_twotone=exports.ic_battery_std_outline=exports.ic_battery_std=exports.ic_battery_full_twotone=exports.ic_battery_full_outline=exports.ic_battery_full=exports.ic_battery_charging_full_twotone=exports.ic_battery_charging_full_outline=exports.ic_battery_charging_full=exports.ic_battery_charging_90_twotone=exports.ic_battery_charging_80_twotone=exports.ic_battery_charging_60_twotone=exports.ic_battery_charging_50_twotone=exports.ic_battery_charging_30_twotone=exports.ic_battery_charging_20_twotone=exports.ic_battery_alert_twotone=exports.ic_battery_alert_outline=exports.ic_battery_alert=exports.ic_battery_90_twotone=exports.ic_battery_80_twotone=exports.ic_battery_60_twotone=exports.ic_battery_50_twotone=exports.ic_battery_30_twotone=exports.ic_battery_20_twotone=exports.ic_bathtub_twotone=exports.ic_bathtub_outline=exports.ic_bathtub=exports.ic_batch_prediction_twotone=exports.ic_batch_prediction_outline=exports.ic_batch_prediction=exports.ic_bar_chart_twotone=exports.ic_bar_chart_outline=exports.ic_bar_chart=exports.ic_ballot_twotone=exports.ic_ballot_outline=exports.ic_ballot=exports.ic_bakery_dining=exports.ic_badge=exports.ic_backup_twotone=exports.ic_backup_table_twotone=exports.ic_backup_table_outline=exports.ic_backup_table=exports.ic_backup_outline=exports.ic_backup=exports.ic_backspace_twotone=exports.ic_backspace_outline=exports.ic_backspace=exports.ic_backpack_twotone=exports.ic_backpack_outline=void 0;exports.ic_bubble_chart=exports.ic_brush_twotone=exports.ic_brush_outline=exports.ic_brush=exports.ic_brunch_dining=exports.ic_browser_not_supported_twotone=exports.ic_browser_not_supported_outline=exports.ic_browser_not_supported=exports.ic_broken_image_twotone=exports.ic_broken_image_outline=exports.ic_broken_image=exports.ic_brightness_medium_twotone=exports.ic_brightness_medium_outline=exports.ic_brightness_medium=exports.ic_brightness_low_twotone=exports.ic_brightness_low_outline=exports.ic_brightness_low=exports.ic_brightness_high_twotone=exports.ic_brightness_high_outline=exports.ic_brightness_high=exports.ic_brightness_auto_twotone=exports.ic_brightness_auto_outline=exports.ic_brightness_auto=exports.ic_brightness_7_twotone=exports.ic_brightness_7_outline=exports.ic_brightness_7=exports.ic_brightness_6_twotone=exports.ic_brightness_6_outline=exports.ic_brightness_6=exports.ic_brightness_5_twotone=exports.ic_brightness_5_outline=exports.ic_brightness_5=exports.ic_brightness_4_twotone=exports.ic_brightness_4_outline=exports.ic_brightness_4=exports.ic_brightness_3_twotone=exports.ic_brightness_3_outline=exports.ic_brightness_3=exports.ic_brightness_2_twotone=exports.ic_brightness_2_outline=exports.ic_brightness_2=exports.ic_brightness_1_twotone=exports.ic_brightness_1_outline=exports.ic_brightness_1=exports.ic_breakfast_dining=exports.ic_branding_watermark_twotone=exports.ic_branding_watermark_outline=exports.ic_branding_watermark=exports.ic_border_vertical_twotone=exports.ic_border_vertical_outline=exports.ic_border_vertical=exports.ic_border_top_twotone=exports.ic_border_top_outline=exports.ic_border_top=exports.ic_border_style_twotone=exports.ic_border_style_outline=exports.ic_border_style=exports.ic_border_right_twotone=exports.ic_border_right_outline=exports.ic_border_right=exports.ic_border_outer_twotone=exports.ic_border_outer_outline=exports.ic_border_outer=exports.ic_border_left_twotone=exports.ic_border_left_outline=exports.ic_border_left=exports.ic_border_inner_twotone=exports.ic_border_inner_outline=exports.ic_border_inner=exports.ic_border_horizontal_twotone=exports.ic_border_horizontal_outline=exports.ic_border_horizontal=exports.ic_border_color_twotone=exports.ic_border_color=exports.ic_border_clear_twotone=exports.ic_border_clear_outline=exports.ic_border_clear=exports.ic_border_bottom_twotone=exports.ic_border_bottom_outline=exports.ic_border_bottom=exports.ic_border_all_twotone=exports.ic_border_all_outline=exports.ic_border_all=exports.ic_bookmarks_twotone=exports.ic_bookmarks_outline=exports.ic_bookmarks=exports.ic_bookmark_twotone=exports.ic_bookmark_outline=exports.ic_bookmark_border_twotone=exports.ic_bookmark_border_outline=exports.ic_bookmark_border=exports.ic_bookmark=exports.ic_book_twotone=exports.ic_book_outline=exports.ic_book_online_twotone=exports.ic_book_online_outline=exports.ic_book_online=exports.ic_book=exports.ic_bolt=exports.ic_blur_on_twotone=void 0;exports.ic_card_membership_outline=exports.ic_card_membership=exports.ic_card_giftcard_twotone=exports.ic_card_giftcard_outline=exports.ic_card_giftcard=exports.ic_car_repair=exports.ic_car_rental=exports.ic_cancel_twotone=exports.ic_cancel_schedule_send_twotone=exports.ic_cancel_schedule_send_outline=exports.ic_cancel_schedule_send=exports.ic_cancel_presentation_twotone=exports.ic_cancel_presentation_outline=exports.ic_cancel_presentation=exports.ic_cancel_outline=exports.ic_cancel=exports.ic_campaign_twotone=exports.ic_campaign_outline=exports.ic_campaign=exports.ic_camera_twotone=exports.ic_camera_roll_twotone=exports.ic_camera_roll_outline=exports.ic_camera_roll=exports.ic_camera_rear_twotone=exports.ic_camera_rear_outline=exports.ic_camera_rear=exports.ic_camera_outline=exports.ic_camera_front_twotone=exports.ic_camera_front_outline=exports.ic_camera_front=exports.ic_camera_enhance_twotone=exports.ic_camera_enhance_outline=exports.ic_camera_enhance=exports.ic_camera_alt_twotone=exports.ic_camera_alt_outline=exports.ic_camera_alt=exports.ic_camera=exports.ic_call_twotone=exports.ic_call_to_action_twotone=exports.ic_call_to_action_outline=exports.ic_call_to_action=exports.ic_call_split_twotone=exports.ic_call_split_outline=exports.ic_call_split=exports.ic_call_received_twotone=exports.ic_call_received_outline=exports.ic_call_received=exports.ic_call_outline=exports.ic_call_missed_twotone=exports.ic_call_missed_outline=exports.ic_call_missed_outgoing_twotone=exports.ic_call_missed_outgoing_outline=exports.ic_call_missed_outgoing=exports.ic_call_missed=exports.ic_call_merge_twotone=exports.ic_call_merge_outline=exports.ic_call_merge=exports.ic_call_made_twotone=exports.ic_call_made_outline=exports.ic_call_made=exports.ic_call_end_twotone=exports.ic_call_end_outline=exports.ic_call_end=exports.ic_call=exports.ic_calendar_view_day_twotone=exports.ic_calendar_view_day_outline=exports.ic_calendar_view_day=exports.ic_calendar_today_twotone=exports.ic_calendar_today_outline=exports.ic_calendar_today=exports.ic_calculate_twotone=exports.ic_calculate_outline=exports.ic_calculate=exports.ic_cake_twotone=exports.ic_cake_outline=exports.ic_cake=exports.ic_cached_twotone=exports.ic_cached_outline=exports.ic_cached=exports.ic_business_twotone=exports.ic_business_outline=exports.ic_business_center_twotone=exports.ic_business_center_outline=exports.ic_business_center=exports.ic_business=exports.ic_bus_alert=exports.ic_burst_mode_twotone=exports.ic_burst_mode_outline=exports.ic_burst_mode=exports.ic_build_twotone=exports.ic_build_outline=exports.ic_build_circle_twotone=exports.ic_build_circle_outline=exports.ic_build_circle=exports.ic_build=exports.ic_bug_report_twotone=exports.ic_bug_report_outline=exports.ic_bug_report=exports.ic_bubble_chart_twotone=exports.ic_bubble_chart_outline=void 0;exports.ic_close_outline=exports.ic_close_fullscreen_twotone=exports.ic_close_fullscreen_outline=exports.ic_close_fullscreen=exports.ic_close=exports.ic_clear_twotone=exports.ic_clear_outline=exports.ic_clear_all_twotone=exports.ic_clear_all_outline=exports.ic_clear_all=exports.ic_clear=exports.ic_cleaning_services_twotone=exports.ic_cleaning_services_outline=exports.ic_cleaning_services=exports.ic_clean_hands_twotone=exports.ic_clean_hands_outline=exports.ic_clean_hands=exports.ic_class_twotone=exports.ic_class_outline=exports.ic_class=exports.ic_circle_notifications=exports.ic_circle=exports.ic_chrome_reader_mode_twotone=exports.ic_chrome_reader_mode_outline=exports.ic_chrome_reader_mode=exports.ic_child_friendly_twotone=exports.ic_child_friendly_outline=exports.ic_child_friendly=exports.ic_child_care_twotone=exports.ic_child_care_outline=exports.ic_child_care=exports.ic_chevron_right_twotone=exports.ic_chevron_right_outline=exports.ic_chevron_right=exports.ic_chevron_left_twotone=exports.ic_chevron_left_outline=exports.ic_chevron_left=exports.ic_checkroom_twotone=exports.ic_checkroom_outline=exports.ic_checkroom=exports.ic_check_twotone=exports.ic_check_outline=exports.ic_check_circle_twotone=exports.ic_check_circle_outline_twotone=exports.ic_check_circle_outline_outline=exports.ic_check_circle_outline=exports.ic_check_circle=exports.ic_check_box_twotone=exports.ic_check_box_outline_blank_twotone=exports.ic_check_box_outline_blank_outline=exports.ic_check_box_outline_blank=exports.ic_check_box_outline=exports.ic_check_box=exports.ic_check=exports.ic_chat_twotone=exports.ic_chat_outline=exports.ic_chat_bubble_twotone=exports.ic_chat_bubble_outline_twotone=exports.ic_chat_bubble_outline_outline=exports.ic_chat_bubble_outline=exports.ic_chat_bubble=exports.ic_chat=exports.ic_charging_station_twotone=exports.ic_charging_station_outline=exports.ic_charging_station=exports.ic_change_history_twotone=exports.ic_change_history_outline=exports.ic_change_history=exports.ic_center_focus_weak_twotone=exports.ic_center_focus_weak_outline=exports.ic_center_focus_weak=exports.ic_center_focus_strong_twotone=exports.ic_center_focus_strong_outline=exports.ic_center_focus_strong=exports.ic_cell_wifi_twotone=exports.ic_cell_wifi=exports.ic_celebration=exports.ic_category_twotone=exports.ic_category_outline=exports.ic_category=exports.ic_cast_twotone=exports.ic_cast_outline=exports.ic_cast_for_education_twotone=exports.ic_cast_for_education_outline=exports.ic_cast_for_education=exports.ic_cast_connected_twotone=exports.ic_cast_connected_outline=exports.ic_cast_connected=exports.ic_cast=exports.ic_casino_twotone=exports.ic_casino_outline=exports.ic_casino=exports.ic_cases=exports.ic_carpenter_twotone=exports.ic_carpenter_outline=exports.ic_carpenter=exports.ic_card_travel_twotone=exports.ic_card_travel_outline=exports.ic_card_travel=exports.ic_card_membership_twotone=void 0;exports.ic_content_cut_twotone=exports.ic_content_cut_outline=exports.ic_content_cut=exports.ic_content_copy_twotone=exports.ic_content_copy_outline=exports.ic_content_copy=exports.ic_contacts_twotone=exports.ic_contacts_outline=exports.ic_contacts=exports.ic_contactless_twotone=exports.ic_contactless_outline=exports.ic_contactless=exports.ic_contact_support_twotone=exports.ic_contact_support_outline=exports.ic_contact_support=exports.ic_contact_phone_twotone=exports.ic_contact_phone_outline=exports.ic_contact_phone=exports.ic_contact_page_twotone=exports.ic_contact_page_outline=exports.ic_contact_page=exports.ic_contact_mail_twotone=exports.ic_contact_mail_outline=exports.ic_contact_mail=exports.ic_construction_twotone=exports.ic_construction_outline=exports.ic_construction=exports.ic_connected_tv=exports.ic_connect_without_contact_twotone=exports.ic_connect_without_contact_outline=exports.ic_connect_without_contact=exports.ic_confirmation_number_twotone=exports.ic_confirmation_number_outline=exports.ic_confirmation_number=exports.ic_computer_twotone=exports.ic_computer_outline=exports.ic_computer=exports.ic_compress=exports.ic_compass_calibration_twotone=exports.ic_compass_calibration_outline=exports.ic_compass_calibration=exports.ic_compare_twotone=exports.ic_compare_outline=exports.ic_compare_arrows_twotone=exports.ic_compare_arrows_outline=exports.ic_compare_arrows=exports.ic_compare=exports.ic_commute_twotone=exports.ic_commute_outline=exports.ic_commute=exports.ic_comment_twotone=exports.ic_comment_outline=exports.ic_comment_bank_twotone=exports.ic_comment_bank_outline=exports.ic_comment_bank=exports.ic_comment=exports.ic_colorize_twotone=exports.ic_colorize_outline=exports.ic_colorize=exports.ic_color_lens_twotone=exports.ic_color_lens_outline=exports.ic_color_lens=exports.ic_collections_twotone=exports.ic_collections_outline=exports.ic_collections_bookmark_twotone=exports.ic_collections_bookmark_outline=exports.ic_collections_bookmark=exports.ic_collections=exports.ic_code_twotone=exports.ic_code_outline=exports.ic_code=exports.ic_cloud_upload_twotone=exports.ic_cloud_upload_outline=exports.ic_cloud_upload=exports.ic_cloud_twotone=exports.ic_cloud_queue_twotone=exports.ic_cloud_queue_outline=exports.ic_cloud_queue=exports.ic_cloud_outline=exports.ic_cloud_off_twotone=exports.ic_cloud_off_outline=exports.ic_cloud_off=exports.ic_cloud_download_twotone=exports.ic_cloud_download_outline=exports.ic_cloud_download=exports.ic_cloud_done_twotone=exports.ic_cloud_done_outline=exports.ic_cloud_done=exports.ic_cloud_circle_twotone=exports.ic_cloud_circle_outline=exports.ic_cloud_circle=exports.ic_cloud=exports.ic_closed_caption_twotone=exports.ic_closed_caption_outline=exports.ic_closed_caption_off=exports.ic_closed_caption_disabled_twotone=exports.ic_closed_caption_disabled_outline=exports.ic_closed_caption_disabled=exports.ic_closed_caption=exports.ic_close_twotone=void 0;exports.ic_departure_board_outline=exports.ic_departure_board=exports.ic_delivery_dining=exports.ic_delete_twotone=exports.ic_delete_sweep_twotone=exports.ic_delete_sweep_outline=exports.ic_delete_sweep=exports.ic_delete_outline_twotone=exports.ic_delete_outline_outline=exports.ic_delete_outline=exports.ic_delete_forever_twotone=exports.ic_delete_forever_outline=exports.ic_delete_forever=exports.ic_delete=exports.ic_dehaze_twotone=exports.ic_dehaze_outline=exports.ic_dehaze=exports.ic_deck_twotone=exports.ic_deck_outline=exports.ic_deck=exports.ic_date_range_twotone=exports.ic_date_range_outline=exports.ic_date_range=exports.ic_data_usage_twotone=exports.ic_data_usage_outline=exports.ic_data_usage=exports.ic_dashboard_twotone=exports.ic_dashboard_outline=exports.ic_dashboard_customize=exports.ic_dashboard=exports.ic_dangerous=exports.ic_crop_twotone=exports.ic_crop_square_twotone=exports.ic_crop_square_outline=exports.ic_crop_square=exports.ic_crop_rotate_twotone=exports.ic_crop_rotate_outline=exports.ic_crop_rotate=exports.ic_crop_portrait_twotone=exports.ic_crop_portrait_outline=exports.ic_crop_portrait=exports.ic_crop_outline=exports.ic_crop_original_twotone=exports.ic_crop_original_outline=exports.ic_crop_original=exports.ic_crop_landscape_twotone=exports.ic_crop_landscape_outline=exports.ic_crop_landscape=exports.ic_crop_free_twotone=exports.ic_crop_free_outline=exports.ic_crop_free=exports.ic_crop_din_twotone=exports.ic_crop_din_outline=exports.ic_crop_din=exports.ic_crop_7_5_twotone=exports.ic_crop_7_5_outline=exports.ic_crop_7_5=exports.ic_crop_5_4_twotone=exports.ic_crop_5_4_outline=exports.ic_crop_5_4=exports.ic_crop_3_2_twotone=exports.ic_crop_3_2_outline=exports.ic_crop_3_2=exports.ic_crop_16_9_twotone=exports.ic_crop_16_9_outline=exports.ic_crop_16_9=exports.ic_crop=exports.ic_credit_card_twotone=exports.ic_credit_card_outline=exports.ic_credit_card=exports.ic_create_twotone=exports.ic_create_outline=exports.ic_create_new_folder_twotone=exports.ic_create_new_folder_outline=exports.ic_create_new_folder=exports.ic_create=exports.ic_countertops_twotone=exports.ic_countertops_outline=exports.ic_countertops=exports.ic_corporate_fare_twotone=exports.ic_corporate_fare_outline=exports.ic_corporate_fare=exports.ic_coronavirus_twotone=exports.ic_coronavirus_outline=exports.ic_coronavirus=exports.ic_copyright_twotone=exports.ic_copyright_outline=exports.ic_copyright=exports.ic_control_point_twotone=exports.ic_control_point_outline=exports.ic_control_point_duplicate_twotone=exports.ic_control_point_duplicate_outline=exports.ic_control_point_duplicate=exports.ic_control_point=exports.ic_control_camera_twotone=exports.ic_control_camera_outline=exports.ic_control_camera=exports.ic_content_paste_twotone=exports.ic_content_paste_outline=exports.ic_content_paste=void 0;exports.ic_do_not_disturb_on=exports.ic_do_not_disturb_off=exports.ic_do_not_disturb_alt=exports.ic_do_not_disturb=exports.ic_do_disturb_twotone=exports.ic_do_disturb_outline=exports.ic_do_disturb_on_twotone=exports.ic_do_disturb_on_outline=exports.ic_do_disturb_off_twotone=exports.ic_do_disturb_off_outline=exports.ic_do_disturb_alt_twotone=exports.ic_do_disturb_alt_outline=exports.ic_dns_twotone=exports.ic_dns_outline=exports.ic_dns=exports.ic_disc_full_twotone=exports.ic_disc_full_outline=exports.ic_disc_full=exports.ic_disabled_by_default_twotone=exports.ic_disabled_by_default_outline=exports.ic_disabled_by_default=exports.ic_dirty_lens=exports.ic_directions_walk_twotone=exports.ic_directions_walk_outline=exports.ic_directions_walk=exports.ic_directions_twotone=exports.ic_directions_transit_twotone=exports.ic_directions_transit_outline=exports.ic_directions_transit=exports.ic_directions_subway_twotone=exports.ic_directions_subway_outline=exports.ic_directions_subway=exports.ic_directions_run_twotone=exports.ic_directions_run_outline=exports.ic_directions_run=exports.ic_directions_railway_twotone=exports.ic_directions_railway_outline=exports.ic_directions_railway=exports.ic_directions_outline=exports.ic_directions_off_twotone=exports.ic_directions_off_outline=exports.ic_directions_off=exports.ic_directions_car_twotone=exports.ic_directions_car_outline=exports.ic_directions_car=exports.ic_directions_bus_twotone=exports.ic_directions_bus_outline=exports.ic_directions_bus=exports.ic_directions_boat_twotone=exports.ic_directions_boat_outline=exports.ic_directions_boat=exports.ic_directions_bike_twotone=exports.ic_directions_bike_outline=exports.ic_directions_bike=exports.ic_directions=exports.ic_dinner_dining=exports.ic_dialpad_twotone=exports.ic_dialpad_outline=exports.ic_dialpad=exports.ic_dialer_sip_twotone=exports.ic_dialer_sip_outline=exports.ic_dialer_sip=exports.ic_devices_twotone=exports.ic_devices_outline=exports.ic_devices_other_twotone=exports.ic_devices_other_outline=exports.ic_devices_other=exports.ic_devices=exports.ic_device_unknown_twotone=exports.ic_device_unknown_outline=exports.ic_device_unknown=exports.ic_device_thermostat=exports.ic_device_hub_twotone=exports.ic_device_hub_outline=exports.ic_device_hub=exports.ic_developer_mode_twotone=exports.ic_developer_mode_outline=exports.ic_developer_mode=exports.ic_developer_board_twotone=exports.ic_developer_board_outline=exports.ic_developer_board=exports.ic_details_twotone=exports.ic_details_outline=exports.ic_details=exports.ic_desktop_windows_twotone=exports.ic_desktop_windows_outline=exports.ic_desktop_windows=exports.ic_desktop_mac_twotone=exports.ic_desktop_mac_outline=exports.ic_desktop_mac=exports.ic_desktop_access_disabled_twotone=exports.ic_desktop_access_disabled_outline=exports.ic_desktop_access_disabled=exports.ic_design_services_twotone=exports.ic_design_services_outline=exports.ic_design_services=exports.ic_description_twotone=exports.ic_description_outline=exports.ic_description=exports.ic_departure_board_twotone=void 0;exports.ic_electric_car=exports.ic_electric_bike_twotone=exports.ic_electric_bike_outline=exports.ic_electric_bike=exports.ic_elderly_twotone=exports.ic_elderly_outline=exports.ic_elderly=exports.ic_eject_twotone=exports.ic_eject_outline=exports.ic_eject=exports.ic_edit_twotone=exports.ic_edit_road_twotone=exports.ic_edit_road_outline=exports.ic_edit_road=exports.ic_edit_outline=exports.ic_edit_off=exports.ic_edit_location_twotone=exports.ic_edit_location_outline=exports.ic_edit_location=exports.ic_edit_attributes_twotone=exports.ic_edit_attributes_outline=exports.ic_edit_attributes=exports.ic_edit=exports.ic_eco_twotone=exports.ic_eco_outline=exports.ic_eco=exports.ic_east_twotone=exports.ic_east_outline=exports.ic_east=exports.ic_dynamic_form_twotone=exports.ic_dynamic_form_outline=exports.ic_dynamic_form=exports.ic_dynamic_feed_twotone=exports.ic_dynamic_feed_outline=exports.ic_dynamic_feed=exports.ic_dvr_twotone=exports.ic_dvr_outline=exports.ic_dvr=exports.ic_duo_twotone=exports.ic_duo_outline=exports.ic_duo=exports.ic_dry_twotone=exports.ic_dry_outline=exports.ic_dry_cleaning=exports.ic_dry=exports.ic_drive_folder_upload=exports.ic_drive_file_rename_outline=exports.ic_drive_file_move_outline=exports.ic_drive_file_move=exports.ic_drive_eta_twotone=exports.ic_drive_eta_outline=exports.ic_drive_eta=exports.ic_drag_indicator_twotone=exports.ic_drag_indicator_outline=exports.ic_drag_indicator=exports.ic_drag_handle_twotone=exports.ic_drag_handle_outline=exports.ic_drag_handle=exports.ic_drafts_twotone=exports.ic_drafts_outline=exports.ic_drafts=exports.ic_download_twotone=exports.ic_download_outline=exports.ic_download_done_twotone=exports.ic_download_done_outline=exports.ic_double_arrow_twotone=exports.ic_double_arrow_outline=exports.ic_double_arrow=exports.ic_donut_small_twotone=exports.ic_donut_small_outline=exports.ic_donut_small=exports.ic_donut_large_twotone=exports.ic_donut_large_outline=exports.ic_donut_large=exports.ic_done_twotone=exports.ic_done_outline_twotone=exports.ic_done_outline_outline=exports.ic_done_outline=exports.ic_done_all_twotone=exports.ic_done_all_outline=exports.ic_done_all=exports.ic_done=exports.ic_domain_verification_twotone=exports.ic_domain_verification_outline=exports.ic_domain_verification=exports.ic_domain_twotone=exports.ic_domain_outline=exports.ic_domain_disabled_twotone=exports.ic_domain_disabled_outline=exports.ic_domain_disabled=exports.ic_domain=exports.ic_dock_twotone=exports.ic_dock_outline=exports.ic_dock=exports.ic_do_not_touch_twotone=exports.ic_do_not_touch_outline=exports.ic_do_not_touch=exports.ic_do_not_step_twotone=exports.ic_do_not_step_outline=exports.ic_do_not_step=void 0;exports.ic_expand_more_twotone=exports.ic_expand_more_outline=exports.ic_expand_more=exports.ic_expand_less_twotone=exports.ic_expand_less_outline=exports.ic_expand_less=exports.ic_expand=exports.ic_exit_to_app_twotone=exports.ic_exit_to_app_outline=exports.ic_exit_to_app=exports.ic_event_twotone=exports.ic_event_seat_twotone=exports.ic_event_seat_outline=exports.ic_event_seat=exports.ic_event_outline=exports.ic_event_note_twotone=exports.ic_event_note_outline=exports.ic_event_note=exports.ic_event_busy_twotone=exports.ic_event_busy_outline=exports.ic_event_busy=exports.ic_event_available_twotone=exports.ic_event_available_outline=exports.ic_event_available=exports.ic_event=exports.ic_ev_station_twotone=exports.ic_ev_station_outline=exports.ic_ev_station=exports.ic_euro_twotone=exports.ic_euro_symbol_twotone=exports.ic_euro_symbol_outline=exports.ic_euro_symbol=exports.ic_euro_outline=exports.ic_euro=exports.ic_escalator_warning_twotone=exports.ic_escalator_warning_outline=exports.ic_escalator_warning=exports.ic_escalator_twotone=exports.ic_escalator_outline=exports.ic_escalator=exports.ic_error_twotone=exports.ic_error_outline_twotone=exports.ic_error_outline_outline=exports.ic_error_outline=exports.ic_error=exports.ic_equalizer_twotone=exports.ic_equalizer_outline=exports.ic_equalizer=exports.ic_enhanced_encryption_twotone=exports.ic_enhanced_encryption_outline=exports.ic_enhanced_encryption=exports.ic_engineering_twotone=exports.ic_engineering_outline=exports.ic_engineering=exports.ic_emoji_transportation_twotone=exports.ic_emoji_transportation_outline=exports.ic_emoji_transportation=exports.ic_emoji_symbols_twotone=exports.ic_emoji_symbols_outline=exports.ic_emoji_symbols=exports.ic_emoji_people_twotone=exports.ic_emoji_people_outline=exports.ic_emoji_people=exports.ic_emoji_objects_twotone=exports.ic_emoji_objects_outline=exports.ic_emoji_objects=exports.ic_emoji_nature_twotone=exports.ic_emoji_nature_outline=exports.ic_emoji_nature=exports.ic_emoji_food_beverage_twotone=exports.ic_emoji_food_beverage_outline=exports.ic_emoji_food_beverage=exports.ic_emoji_flags_twotone=exports.ic_emoji_flags_outline=exports.ic_emoji_flags=exports.ic_emoji_events_twotone=exports.ic_emoji_events_outline=exports.ic_emoji_events=exports.ic_emoji_emotions_twotone=exports.ic_emoji_emotions_outline=exports.ic_emoji_emotions=exports.ic_email_twotone=exports.ic_email_outline=exports.ic_email=exports.ic_elevator_twotone=exports.ic_elevator_outline=exports.ic_elevator=exports.ic_electrical_services_twotone=exports.ic_electrical_services_outline=exports.ic_electrical_services=exports.ic_electric_scooter_twotone=exports.ic_electric_scooter_outline=exports.ic_electric_scooter=exports.ic_electric_rickshaw_twotone=exports.ic_electric_rickshaw=exports.ic_electric_moped_twotone=exports.ic_electric_moped_outline=exports.ic_electric_moped=exports.ic_electric_car_twotone=exports.ic_electric_car_outline=void 0;exports.ic_filter_2=exports.ic_filter_1_twotone=exports.ic_filter_1_outline=exports.ic_filter_1=exports.ic_filter=exports.ic_file_upload=exports.ic_file_present=exports.ic_file_download_done=exports.ic_file_download=exports.ic_file_copy_twotone=exports.ic_file_copy_outline=exports.ic_file_copy=exports.ic_fiber_smart_record_twotone=exports.ic_fiber_smart_record_outline=exports.ic_fiber_smart_record=exports.ic_fiber_pin_twotone=exports.ic_fiber_pin_outline=exports.ic_fiber_pin=exports.ic_fiber_new_twotone=exports.ic_fiber_new_outline=exports.ic_fiber_new=exports.ic_fiber_manual_record_twotone=exports.ic_fiber_manual_record_outline=exports.ic_fiber_manual_record=exports.ic_fiber_dvr_twotone=exports.ic_fiber_dvr_outline=exports.ic_fiber_dvr=exports.ic_festival=exports.ic_fence_twotone=exports.ic_fence_outline=exports.ic_fence=exports.ic_feedback_twotone=exports.ic_feedback_outline=exports.ic_feedback=exports.ic_featured_video_twotone=exports.ic_featured_video_outline=exports.ic_featured_video=exports.ic_featured_play_list_twotone=exports.ic_featured_play_list_outline=exports.ic_featured_play_list=exports.ic_favorite_twotone=exports.ic_favorite_outline=exports.ic_favorite_border_twotone=exports.ic_favorite_border_outline=exports.ic_favorite_border=exports.ic_favorite=exports.ic_fastfood_twotone=exports.ic_fastfood_outline=exports.ic_fastfood=exports.ic_fast_rewind_twotone=exports.ic_fast_rewind_outline=exports.ic_fast_rewind=exports.ic_fast_forward_twotone=exports.ic_fast_forward_outline=exports.ic_fast_forward=exports.ic_family_restroom_twotone=exports.ic_family_restroom_outline=exports.ic_family_restroom=exports.ic_fact_check_twotone=exports.ic_fact_check_outline=exports.ic_fact_check=exports.ic_facebook_twotone=exports.ic_facebook_outline=exports.ic_facebook=exports.ic_face_unlock_twotone=exports.ic_face_unlock_outline=exports.ic_face_twotone=exports.ic_face_retouching_natural=exports.ic_face_outline=exports.ic_face=exports.ic_extension_twotone=exports.ic_extension_outline=exports.ic_extension=exports.ic_exposure_zero_twotone=exports.ic_exposure_zero_outline=exports.ic_exposure_zero=exports.ic_exposure_twotone=exports.ic_exposure_plus_2_twotone=exports.ic_exposure_plus_2_outline=exports.ic_exposure_plus_2=exports.ic_exposure_plus_1_twotone=exports.ic_exposure_plus_1_outline=exports.ic_exposure_plus_1=exports.ic_exposure_outline=exports.ic_exposure_neg_2_twotone=exports.ic_exposure_neg_2_outline=exports.ic_exposure_neg_2=exports.ic_exposure_neg_1_twotone=exports.ic_exposure_neg_1_outline=exports.ic_exposure_neg_1=exports.ic_exposure=exports.ic_explore_twotone=exports.ic_explore_outline=exports.ic_explore_off_twotone=exports.ic_explore_off_outline=exports.ic_explore_off=exports.ic_explore=exports.ic_explicit_twotone=exports.ic_explicit_outline=exports.ic_explicit=void 0;exports.ic_flight=exports.ic_flash_on_twotone=exports.ic_flash_on_outline=exports.ic_flash_on=exports.ic_flash_off_twotone=exports.ic_flash_off_outline=exports.ic_flash_off=exports.ic_flash_auto_twotone=exports.ic_flash_auto_outline=exports.ic_flash_auto=exports.ic_flare_twotone=exports.ic_flare_outline=exports.ic_flare=exports.ic_flaky_twotone=exports.ic_flaky_outline=exports.ic_flaky=exports.ic_flag_twotone=exports.ic_flag_outline=exports.ic_flag=exports.ic_fitness_center_twotone=exports.ic_fitness_center_outline=exports.ic_fitness_center=exports.ic_fit_screen=exports.ic_first_page_twotone=exports.ic_first_page_outline=exports.ic_first_page=exports.ic_fireplace_twotone=exports.ic_fireplace_outline=exports.ic_fireplace=exports.ic_fire_extinguisher_twotone=exports.ic_fire_extinguisher_outline=exports.ic_fire_extinguisher=exports.ic_fingerprint_twotone=exports.ic_fingerprint_outline=exports.ic_fingerprint=exports.ic_find_replace_twotone=exports.ic_find_replace_outline=exports.ic_find_replace=exports.ic_find_in_page_twotone=exports.ic_find_in_page_outline=exports.ic_find_in_page=exports.ic_filter_vintage_twotone=exports.ic_filter_vintage_outline=exports.ic_filter_vintage=exports.ic_filter_twotone=exports.ic_filter_tilt_shift_twotone=exports.ic_filter_tilt_shift_outline=exports.ic_filter_tilt_shift=exports.ic_filter_outline=exports.ic_filter_none_twotone=exports.ic_filter_none_outline=exports.ic_filter_none=exports.ic_filter_list_twotone=exports.ic_filter_list_outline=exports.ic_filter_list_alt=exports.ic_filter_list=exports.ic_filter_hdr_twotone=exports.ic_filter_hdr_outline=exports.ic_filter_hdr=exports.ic_filter_frames_twotone=exports.ic_filter_frames_outline=exports.ic_filter_frames=exports.ic_filter_drama_twotone=exports.ic_filter_drama_outline=exports.ic_filter_drama=exports.ic_filter_center_focus_twotone=exports.ic_filter_center_focus_outline=exports.ic_filter_center_focus=exports.ic_filter_b_and_w_twotone=exports.ic_filter_b_and_w_outline=exports.ic_filter_b_and_w=exports.ic_filter_alt_twotone=exports.ic_filter_alt_outline=exports.ic_filter_alt=exports.ic_filter_9_twotone=exports.ic_filter_9_plus_twotone=exports.ic_filter_9_plus_outline=exports.ic_filter_9_plus=exports.ic_filter_9_outline=exports.ic_filter_9=exports.ic_filter_8_twotone=exports.ic_filter_8_outline=exports.ic_filter_8=exports.ic_filter_7_twotone=exports.ic_filter_7_outline=exports.ic_filter_7=exports.ic_filter_6_twotone=exports.ic_filter_6_outline=exports.ic_filter_6=exports.ic_filter_5_twotone=exports.ic_filter_5_outline=exports.ic_filter_5=exports.ic_filter_4_twotone=exports.ic_filter_4_outline=exports.ic_filter_4=exports.ic_filter_3_twotone=exports.ic_filter_3_outline=exports.ic_filter_3=exports.ic_filter_2_twotone=exports.ic_filter_2_outline=void 0;exports.ic_format_size=exports.ic_format_shapes_twotone=exports.ic_format_shapes_outline=exports.ic_format_shapes=exports.ic_format_quote_twotone=exports.ic_format_quote_outline=exports.ic_format_quote=exports.ic_format_paint_twotone=exports.ic_format_paint_outline=exports.ic_format_paint=exports.ic_format_list_numbered_twotone=exports.ic_format_list_numbered_rtl_twotone=exports.ic_format_list_numbered_rtl_outline=exports.ic_format_list_numbered_rtl=exports.ic_format_list_numbered_outline=exports.ic_format_list_numbered=exports.ic_format_list_bulleted_twotone=exports.ic_format_list_bulleted_outline=exports.ic_format_list_bulleted=exports.ic_format_line_spacing_twotone=exports.ic_format_line_spacing_outline=exports.ic_format_line_spacing=exports.ic_format_italic_twotone=exports.ic_format_italic_outline=exports.ic_format_italic=exports.ic_format_indent_increase_twotone=exports.ic_format_indent_increase_outline=exports.ic_format_indent_increase=exports.ic_format_indent_decrease_twotone=exports.ic_format_indent_decrease_outline=exports.ic_format_indent_decrease=exports.ic_format_color_text_twotone=exports.ic_format_color_text=exports.ic_format_color_reset_twotone=exports.ic_format_color_reset_outline=exports.ic_format_color_reset=exports.ic_format_color_fill_twotone=exports.ic_format_color_fill=exports.ic_format_clear_twotone=exports.ic_format_clear_outline=exports.ic_format_clear=exports.ic_format_bold_twotone=exports.ic_format_bold_outline=exports.ic_format_bold=exports.ic_format_align_right_twotone=exports.ic_format_align_right_outline=exports.ic_format_align_right=exports.ic_format_align_left_twotone=exports.ic_format_align_left_outline=exports.ic_format_align_left=exports.ic_format_align_justify_twotone=exports.ic_format_align_justify_outline=exports.ic_format_align_justify=exports.ic_format_align_center_twotone=exports.ic_format_align_center_outline=exports.ic_format_align_center=exports.ic_food_bank_twotone=exports.ic_food_bank_outline=exports.ic_food_bank=exports.ic_font_download_twotone=exports.ic_font_download_outline=exports.ic_font_download=exports.ic_follow_the_signs_twotone=exports.ic_follow_the_signs_outline=exports.ic_follow_the_signs=exports.ic_folder_twotone=exports.ic_folder_special_twotone=exports.ic_folder_special_outline=exports.ic_folder_special=exports.ic_folder_shared_twotone=exports.ic_folder_shared_outline=exports.ic_folder_shared=exports.ic_folder_outline=exports.ic_folder_open_twotone=exports.ic_folder_open_outline=exports.ic_folder_open=exports.ic_folder=exports.ic_flip_twotone=exports.ic_flip_to_front_twotone=exports.ic_flip_to_front_outline=exports.ic_flip_to_front=exports.ic_flip_to_back_twotone=exports.ic_flip_to_back_outline=exports.ic_flip_to_back=exports.ic_flip_outline=exports.ic_flip_camera_ios_twotone=exports.ic_flip_camera_ios_outline=exports.ic_flip_camera_ios=exports.ic_flip_camera_android_twotone=exports.ic_flip_camera_android_outline=exports.ic_flip_camera_android=exports.ic_flip=exports.ic_flight_twotone=exports.ic_flight_takeoff_twotone=exports.ic_flight_takeoff_outline=exports.ic_flight_takeoff=exports.ic_flight_outline=exports.ic_flight_land_twotone=exports.ic_flight_land_outline=exports.ic_flight_land=void 0;exports.ic_grid_off_outline=exports.ic_grid_off=exports.ic_grass_twotone=exports.ic_grass_outline=exports.ic_grass=exports.ic_graphic_eq_twotone=exports.ic_graphic_eq_outline=exports.ic_graphic_eq=exports.ic_grain_twotone=exports.ic_grain_outline=exports.ic_grain=exports.ic_grading_twotone=exports.ic_grading_outline=exports.ic_grading=exports.ic_gradient_twotone=exports.ic_gradient_outline=exports.ic_gradient=exports.ic_grade_twotone=exports.ic_grade_outline=exports.ic_grade=exports.ic_gps_off_twotone=exports.ic_gps_off_outline=exports.ic_gps_off=exports.ic_gps_not_fixed_twotone=exports.ic_gps_not_fixed_outline=exports.ic_gps_not_fixed=exports.ic_gps_fixed_twotone=exports.ic_gps_fixed_outline=exports.ic_gps_fixed=exports.ic_golf_course_twotone=exports.ic_golf_course_outline=exports.ic_golf_course=exports.ic_gif_twotone=exports.ic_gif_outline=exports.ic_gif=exports.ic_get_app_twotone=exports.ic_get_app_outline=exports.ic_get_app=exports.ic_gesture_twotone=exports.ic_gesture_outline=exports.ic_gesture=exports.ic_gavel_twotone=exports.ic_gavel_outline=exports.ic_gavel=exports.ic_games_twotone=exports.ic_games_outline=exports.ic_games=exports.ic_gamepad_twotone=exports.ic_gamepad_outline=exports.ic_gamepad=exports.ic_g_translate_twotone=exports.ic_g_translate_outline=exports.ic_g_translate=exports.ic_functions_twotone=exports.ic_functions_outline=exports.ic_functions=exports.ic_fullscreen_twotone=exports.ic_fullscreen_outline=exports.ic_fullscreen_exit_twotone=exports.ic_fullscreen_exit_outline=exports.ic_fullscreen_exit=exports.ic_fullscreen=exports.ic_free_breakfast_twotone=exports.ic_free_breakfast_outline=exports.ic_free_breakfast=exports.ic_foundation_twotone=exports.ic_foundation_outline=exports.ic_foundation=exports.ic_forward_twotone=exports.ic_forward_to_inbox_twotone=exports.ic_forward_to_inbox_outline=exports.ic_forward_to_inbox=exports.ic_forward_outline=exports.ic_forward_5_twotone=exports.ic_forward_5_outline=exports.ic_forward_5=exports.ic_forward_30_twotone=exports.ic_forward_30_outline=exports.ic_forward_30=exports.ic_forward_10_twotone=exports.ic_forward_10_outline=exports.ic_forward_10=exports.ic_forward=exports.ic_forum_twotone=exports.ic_forum_outline=exports.ic_forum=exports.ic_format_underlined_twotone=exports.ic_format_underlined_outline=exports.ic_format_underlined=exports.ic_format_textdirection_r_to_l_twotone=exports.ic_format_textdirection_r_to_l_outline=exports.ic_format_textdirection_r_to_l=exports.ic_format_textdirection_l_to_r_twotone=exports.ic_format_textdirection_l_to_r_outline=exports.ic_format_textdirection_l_to_r=exports.ic_format_strikethrough_twotone=exports.ic_format_strikethrough_outline=exports.ic_format_strikethrough=exports.ic_format_size_twotone=exports.ic_format_size_outline=void 0;exports.ic_horizontal_split=exports.ic_horizontal_rule_twotone=exports.ic_horizontal_rule_outline=exports.ic_horizontal_rule=exports.ic_home_work_twotone=exports.ic_home_work_outline=exports.ic_home_work=exports.ic_home_twotone=exports.ic_home_repair_service_twotone=exports.ic_home_repair_service_outline=exports.ic_home_repair_service=exports.ic_home_outline=exports.ic_home_filled=exports.ic_home=exports.ic_history_twotone=exports.ic_history_toggle_off_twotone=exports.ic_history_toggle_off_outline=exports.ic_history_toggle_off=exports.ic_history_outline=exports.ic_history_edu_twotone=exports.ic_history_edu_outline=exports.ic_history_edu=exports.ic_history=exports.ic_highlight_twotone=exports.ic_highlight_outline=exports.ic_highlight_off_twotone=exports.ic_highlight_off_outline=exports.ic_highlight_off=exports.ic_highlight_alt_twotone=exports.ic_highlight_alt_outline=exports.ic_highlight_alt=exports.ic_highlight=exports.ic_high_quality_twotone=exports.ic_high_quality_outline=exports.ic_high_quality=exports.ic_help_twotone=exports.ic_help_outline_twotone=exports.ic_help_outline_outline=exports.ic_help_outline=exports.ic_help_center_twotone=exports.ic_help_center_outline=exports.ic_help_center=exports.ic_help=exports.ic_height_twotone=exports.ic_height_outline=exports.ic_height=exports.ic_hearing_twotone=exports.ic_hearing_outline=exports.ic_hearing_disabled_twotone=exports.ic_hearing_disabled_outline=exports.ic_hearing_disabled=exports.ic_hearing=exports.ic_healing_twotone=exports.ic_healing_outline=exports.ic_healing=exports.ic_headset_twotone=exports.ic_headset_outline=exports.ic_headset_off=exports.ic_headset_mic_twotone=exports.ic_headset_mic_outline=exports.ic_headset_mic=exports.ic_headset=exports.ic_hdr_weak_twotone=exports.ic_hdr_weak_outline=exports.ic_hdr_weak=exports.ic_hdr_strong_twotone=exports.ic_hdr_strong_outline=exports.ic_hdr_strong=exports.ic_hdr_on_twotone=exports.ic_hdr_on_outline=exports.ic_hdr_on=exports.ic_hdr_off_twotone=exports.ic_hdr_off_outline=exports.ic_hdr_off=exports.ic_hdr_enhanced_select=exports.ic_hd_twotone=exports.ic_hd_outline=exports.ic_hd=exports.ic_hardware=exports.ic_handyman_twotone=exports.ic_handyman_outline=exports.ic_handyman=exports.ic_hail=exports.ic_groups_twotone=exports.ic_groups_outline=exports.ic_groups=exports.ic_group_work_twotone=exports.ic_group_work_outline=exports.ic_group_work=exports.ic_group_twotone=exports.ic_group_outline=exports.ic_group_add_twotone=exports.ic_group_add_outline=exports.ic_group_add=exports.ic_group=exports.ic_grid_view=exports.ic_grid_on_twotone=exports.ic_grid_on_outline=exports.ic_grid_on=exports.ic_grid_off_twotone=void 0;exports.ic_insert_link_outline=exports.ic_insert_link=exports.ic_insert_invitation_twotone=exports.ic_insert_invitation_outline=exports.ic_insert_invitation=exports.ic_insert_emoticon_twotone=exports.ic_insert_emoticon_outline=exports.ic_insert_emoticon=exports.ic_insert_drive_file_twotone=exports.ic_insert_drive_file_outline=exports.ic_insert_drive_file=exports.ic_insert_comment_twotone=exports.ic_insert_comment_outline=exports.ic_insert_comment=exports.ic_insert_chart_twotone=exports.ic_insert_chart_outlined_twotone=exports.ic_insert_chart_outlined_outline=exports.ic_insert_chart_outlined=exports.ic_insert_chart_outline=exports.ic_insert_chart=exports.ic_input_twotone=exports.ic_input_outline=exports.ic_input=exports.ic_info_twotone=exports.ic_info_outline_twotone=exports.ic_info_outline=exports.ic_info=exports.ic_indeterminate_check_box_twotone=exports.ic_indeterminate_check_box_outline=exports.ic_indeterminate_check_box=exports.ic_inbox_twotone=exports.ic_inbox_outline=exports.ic_inbox=exports.ic_important_devices_twotone=exports.ic_important_devices_outline=exports.ic_important_devices=exports.ic_import_export_twotone=exports.ic_import_export_outline=exports.ic_import_export=exports.ic_import_contacts_twotone=exports.ic_import_contacts_outline=exports.ic_import_contacts=exports.ic_imagesearch_roller=exports.ic_image_twotone=exports.ic_image_search_twotone=exports.ic_image_search_outline=exports.ic_image_search=exports.ic_image_outline=exports.ic_image_not_supported_twotone=exports.ic_image_not_supported_outline=exports.ic_image_not_supported=exports.ic_image_aspect_ratio_twotone=exports.ic_image_aspect_ratio_outline=exports.ic_image_aspect_ratio=exports.ic_image=exports.ic_icecream=exports.ic_hvac_twotone=exports.ic_hvac_outline=exports.ic_hvac=exports.ic_https_twotone=exports.ic_https_outline=exports.ic_https=exports.ic_http_twotone=exports.ic_http_outline=exports.ic_http=exports.ic_how_to_vote_twotone=exports.ic_how_to_vote_outline=exports.ic_how_to_vote=exports.ic_how_to_reg_twotone=exports.ic_how_to_reg_outline=exports.ic_how_to_reg=exports.ic_house_twotone=exports.ic_house_siding_twotone=exports.ic_house_siding_outline=exports.ic_house_siding=exports.ic_house_outline=exports.ic_house=exports.ic_hourglass_top_twotone=exports.ic_hourglass_top_outline=exports.ic_hourglass_top=exports.ic_hourglass_full_twotone=exports.ic_hourglass_full_outline=exports.ic_hourglass_full=exports.ic_hourglass_empty_twotone=exports.ic_hourglass_empty_outline=exports.ic_hourglass_empty=exports.ic_hourglass_disabled_twotone=exports.ic_hourglass_disabled_outline=exports.ic_hourglass_disabled=exports.ic_hourglass_bottom_twotone=exports.ic_hourglass_bottom_outline=exports.ic_hourglass_bottom=exports.ic_hotel_twotone=exports.ic_hotel_outline=exports.ic_hotel=exports.ic_hot_tub_twotone=exports.ic_hot_tub_outline=exports.ic_hot_tub=exports.ic_horizontal_split_twotone=exports.ic_horizontal_split_outline=void 0;exports.ic_layers_outline=exports.ic_layers_clear_twotone=exports.ic_layers_clear_outline=exports.ic_layers_clear=exports.ic_layers=exports.ic_launch_twotone=exports.ic_launch_outline=exports.ic_launch=exports.ic_last_page_twotone=exports.ic_last_page_outline=exports.ic_last_page=exports.ic_laptop_windows_twotone=exports.ic_laptop_windows_outline=exports.ic_laptop_windows=exports.ic_laptop_twotone=exports.ic_laptop_outline=exports.ic_laptop_mac_twotone=exports.ic_laptop_mac_outline=exports.ic_laptop_mac=exports.ic_laptop_chromebook_twotone=exports.ic_laptop_chromebook_outline=exports.ic_laptop_chromebook=exports.ic_laptop=exports.ic_language_twotone=exports.ic_language_outline=exports.ic_language=exports.ic_landscape_twotone=exports.ic_landscape_outline=exports.ic_landscape=exports.ic_label_twotone=exports.ic_label_outline_twotone=exports.ic_label_outline=exports.ic_label_off_twotone=exports.ic_label_off_outline=exports.ic_label_off=exports.ic_label_important_twotone=exports.ic_label_important_outline_twotone=exports.ic_label_important_outline=exports.ic_label_important=exports.ic_label=exports.ic_kitchen_twotone=exports.ic_kitchen_outline=exports.ic_kitchen=exports.ic_king_bed_twotone=exports.ic_king_bed_outline=exports.ic_king_bed=exports.ic_keyboard_voice_twotone=exports.ic_keyboard_voice_outline=exports.ic_keyboard_voice=exports.ic_keyboard_twotone=exports.ic_keyboard_tab_twotone=exports.ic_keyboard_tab_outline=exports.ic_keyboard_tab=exports.ic_keyboard_return_twotone=exports.ic_keyboard_return_outline=exports.ic_keyboard_return=exports.ic_keyboard_outline=exports.ic_keyboard_hide_twotone=exports.ic_keyboard_hide_outline=exports.ic_keyboard_hide=exports.ic_keyboard_capslock_twotone=exports.ic_keyboard_capslock_outline=exports.ic_keyboard_capslock=exports.ic_keyboard_backspace_twotone=exports.ic_keyboard_backspace_outline=exports.ic_keyboard_backspace=exports.ic_keyboard_arrow_up_twotone=exports.ic_keyboard_arrow_up_outline=exports.ic_keyboard_arrow_up=exports.ic_keyboard_arrow_right_twotone=exports.ic_keyboard_arrow_right_outline=exports.ic_keyboard_arrow_right=exports.ic_keyboard_arrow_left_twotone=exports.ic_keyboard_arrow_left_outline=exports.ic_keyboard_arrow_left=exports.ic_keyboard_arrow_down_twotone=exports.ic_keyboard_arrow_down_outline=exports.ic_keyboard_arrow_down=exports.ic_keyboard=exports.ic_iso_twotone=exports.ic_iso_outline=exports.ic_iso=exports.ic_ios_share=exports.ic_invert_colors_twotone=exports.ic_invert_colors_outline=exports.ic_invert_colors_off_twotone=exports.ic_invert_colors_off_outline=exports.ic_invert_colors_off=exports.ic_invert_colors=exports.ic_inventory=exports.ic_integration_instructions_twotone=exports.ic_integration_instructions_outline=exports.ic_integration_instructions=exports.ic_insights_twotone=exports.ic_insights_outline=exports.ic_insights=exports.ic_insert_photo_twotone=exports.ic_insert_photo_outline=exports.ic_insert_photo=exports.ic_insert_link_twotone=void 0;exports.ic_local_grocery_store_outline=exports.ic_local_grocery_store=exports.ic_local_gas_station_twotone=exports.ic_local_gas_station_outline=exports.ic_local_gas_station=exports.ic_local_florist_twotone=exports.ic_local_florist_outline=exports.ic_local_florist=exports.ic_local_fire_department_twotone=exports.ic_local_fire_department_outline=exports.ic_local_fire_department=exports.ic_local_drink_twotone=exports.ic_local_drink_outline=exports.ic_local_drink=exports.ic_local_dining_twotone=exports.ic_local_dining_outline=exports.ic_local_dining=exports.ic_local_convenience_store_twotone=exports.ic_local_convenience_store_outline=exports.ic_local_convenience_store=exports.ic_local_car_wash_twotone=exports.ic_local_car_wash_outline=exports.ic_local_car_wash=exports.ic_local_cafe_twotone=exports.ic_local_cafe_outline=exports.ic_local_cafe=exports.ic_local_bar_twotone=exports.ic_local_bar_outline=exports.ic_local_bar=exports.ic_local_atm_twotone=exports.ic_local_atm_outline=exports.ic_local_atm=exports.ic_local_airport_twotone=exports.ic_local_airport_outline=exports.ic_local_airport=exports.ic_local_activity_twotone=exports.ic_local_activity_outline=exports.ic_local_activity=exports.ic_live_tv_twotone=exports.ic_live_tv_outline=exports.ic_live_tv=exports.ic_live_help_twotone=exports.ic_live_help_outline=exports.ic_live_help=exports.ic_list_twotone=exports.ic_list_outline=exports.ic_list_alt_twotone=exports.ic_list_alt_outline=exports.ic_list_alt=exports.ic_list=exports.ic_liquor=exports.ic_linked_camera_twotone=exports.ic_linked_camera_outline=exports.ic_linked_camera=exports.ic_link_twotone=exports.ic_link_outline=exports.ic_link_off_twotone=exports.ic_link_off_outline=exports.ic_link_off=exports.ic_link=exports.ic_linear_scale_twotone=exports.ic_linear_scale_outline=exports.ic_linear_scale=exports.ic_line_weight_twotone=exports.ic_line_weight_outline=exports.ic_line_weight=exports.ic_line_style_twotone=exports.ic_line_style_outline=exports.ic_line_style=exports.ic_lightbulb_outline_twotone=exports.ic_lightbulb_outline=exports.ic_lightbulb=exports.ic_library_music_twotone=exports.ic_library_music_outline=exports.ic_library_music=exports.ic_library_books_twotone=exports.ic_library_books_outline=exports.ic_library_books=exports.ic_library_add_twotone=exports.ic_library_add_outline=exports.ic_library_add_check_twotone=exports.ic_library_add_check_outline=exports.ic_library_add_check=exports.ic_library_add=exports.ic_lens_twotone=exports.ic_lens_outline=exports.ic_lens=exports.ic_legend_toggle_twotone=exports.ic_legend_toggle_outline=exports.ic_legend_toggle=exports.ic_leak_remove_twotone=exports.ic_leak_remove_outline=exports.ic_leak_remove=exports.ic_leak_add_twotone=exports.ic_leak_add_outline=exports.ic_leak_add=exports.ic_leaderboard_twotone=exports.ic_leaderboard_outline=exports.ic_leaderboard=exports.ic_layers_twotone=void 0;exports.ic_looks_outline=exports.ic_looks_one_twotone=exports.ic_looks_one_outline=exports.ic_looks_one=exports.ic_looks_6_twotone=exports.ic_looks_6_outline=exports.ic_looks_6=exports.ic_looks_5_twotone=exports.ic_looks_5_outline=exports.ic_looks_5=exports.ic_looks_4_twotone=exports.ic_looks_4_outline=exports.ic_looks_4=exports.ic_looks_3_twotone=exports.ic_looks_3_outline=exports.ic_looks_3=exports.ic_looks=exports.ic_logout=exports.ic_login_twotone=exports.ic_login_outline=exports.ic_login=exports.ic_lock_twotone=exports.ic_lock_outline_twotone=exports.ic_lock_outline=exports.ic_lock_open_twotone=exports.ic_lock_open_outline=exports.ic_lock_open=exports.ic_lock_clock=exports.ic_lock=exports.ic_location_searching_twotone=exports.ic_location_searching_outline=exports.ic_location_searching=exports.ic_location_pin=exports.ic_location_on_twotone=exports.ic_location_on_outline=exports.ic_location_on=exports.ic_location_off_twotone=exports.ic_location_off_outline=exports.ic_location_off=exports.ic_location_disabled_twotone=exports.ic_location_disabled_outline=exports.ic_location_disabled=exports.ic_location_city_twotone=exports.ic_location_city_outline=exports.ic_location_city=exports.ic_local_taxi_twotone=exports.ic_local_taxi_outline=exports.ic_local_taxi=exports.ic_local_shipping_twotone=exports.ic_local_shipping_outline=exports.ic_local_shipping=exports.ic_local_see_twotone=exports.ic_local_see_outline=exports.ic_local_see=exports.ic_local_printshop_twotone=exports.ic_local_printshop_outline=exports.ic_local_printshop=exports.ic_local_post_office_twotone=exports.ic_local_post_office_outline=exports.ic_local_post_office=exports.ic_local_police_twotone=exports.ic_local_police_outline=exports.ic_local_police=exports.ic_local_play_twotone=exports.ic_local_play_outline=exports.ic_local_play=exports.ic_local_pizza_twotone=exports.ic_local_pizza_outline=exports.ic_local_pizza=exports.ic_local_phone_twotone=exports.ic_local_phone_outline=exports.ic_local_phone=exports.ic_local_pharmacy_twotone=exports.ic_local_pharmacy_outline=exports.ic_local_pharmacy=exports.ic_local_parking_twotone=exports.ic_local_parking_outline=exports.ic_local_parking=exports.ic_local_offer_twotone=exports.ic_local_offer_outline=exports.ic_local_offer=exports.ic_local_movies_twotone=exports.ic_local_movies_outline=exports.ic_local_movies=exports.ic_local_mall_twotone=exports.ic_local_mall_outline=exports.ic_local_mall=exports.ic_local_library_twotone=exports.ic_local_library_outline=exports.ic_local_library=exports.ic_local_laundry_service_twotone=exports.ic_local_laundry_service_outline=exports.ic_local_laundry_service=exports.ic_local_hotel_twotone=exports.ic_local_hotel_outline=exports.ic_local_hotel=exports.ic_local_hospital_twotone=exports.ic_local_hospital_outline=exports.ic_local_hospital=exports.ic_local_grocery_store_twotone=void 0;exports.ic_military_tech_outline=exports.ic_military_tech=exports.ic_microwave_twotone=exports.ic_microwave_outline=exports.ic_microwave=exports.ic_mic_twotone=exports.ic_mic_outline=exports.ic_mic_off_twotone=exports.ic_mic_off_outline=exports.ic_mic_off=exports.ic_mic_none_twotone=exports.ic_mic_none_outline=exports.ic_mic_none=exports.ic_mic_external_on=exports.ic_mic_external_off=exports.ic_mic=exports.ic_message_twotone=exports.ic_message_outline=exports.ic_message=exports.ic_merge_type_twotone=exports.ic_merge_type_outline=exports.ic_merge_type=exports.ic_menu_twotone=exports.ic_menu_outline=exports.ic_menu_open_twotone=exports.ic_menu_open_outline=exports.ic_menu_open=exports.ic_menu_book_twotone=exports.ic_menu_book_outline=exports.ic_menu_book=exports.ic_menu=exports.ic_memory_twotone=exports.ic_memory_outline=exports.ic_memory=exports.ic_meeting_room_twotone=exports.ic_meeting_room_outline=exports.ic_meeting_room=exports.ic_medical_services_twotone=exports.ic_medical_services_outline=exports.ic_medical_services=exports.ic_mediation_twotone=exports.ic_mediation_outline=exports.ic_mediation=exports.ic_maximize_twotone=exports.ic_maximize_outline=exports.ic_maximize=exports.ic_masks_twotone=exports.ic_masks_outline=exports.ic_masks=exports.ic_markunread_twotone=exports.ic_markunread_outline=exports.ic_markunread_mailbox_twotone=exports.ic_markunread_mailbox_outline=exports.ic_markunread_mailbox=exports.ic_markunread=exports.ic_mark_email_unread_twotone=exports.ic_mark_email_unread_outline=exports.ic_mark_email_unread=exports.ic_mark_email_read_twotone=exports.ic_mark_email_read_outline=exports.ic_mark_email_read=exports.ic_mark_chat_unread_twotone=exports.ic_mark_chat_unread_outline=exports.ic_mark_chat_unread=exports.ic_mark_chat_read_twotone=exports.ic_mark_chat_read_outline=exports.ic_mark_chat_read=exports.ic_mark_as_unread=exports.ic_margin=exports.ic_maps_ugc_twotone=exports.ic_maps_ugc_outline=exports.ic_maps_ugc=exports.ic_map_twotone=exports.ic_map_outline=exports.ic_map=exports.ic_mail_twotone=exports.ic_mail_outline_twotone=exports.ic_mail_outline_outline=exports.ic_mail_outline=exports.ic_mail=exports.ic_lunch_dining=exports.ic_luggage_twotone=exports.ic_luggage_outline=exports.ic_luggage=exports.ic_loyalty_twotone=exports.ic_loyalty_outline=exports.ic_loyalty=exports.ic_low_priority_twotone=exports.ic_low_priority_outline=exports.ic_low_priority=exports.ic_loupe_twotone=exports.ic_loupe_outline=exports.ic_loupe=exports.ic_loop_twotone=exports.ic_loop_outline=exports.ic_loop=exports.ic_looks_twotone=exports.ic_looks_two_twotone=exports.ic_looks_two_outline=exports.ic_looks_two=void 0;exports.ic_museum=exports.ic_multiple_stop_twotone=exports.ic_multiple_stop_outline=exports.ic_multiple_stop=exports.ic_multiline_chart_twotone=exports.ic_multiline_chart_outline=exports.ic_multiline_chart=exports.ic_mp=exports.ic_movie_twotone=exports.ic_movie_outline=exports.ic_movie_filter_twotone=exports.ic_movie_filter_outline=exports.ic_movie_filter=exports.ic_movie_creation_twotone=exports.ic_movie_creation_outline=exports.ic_movie_creation=exports.ic_movie=exports.ic_move_to_inbox_twotone=exports.ic_move_to_inbox_outline=exports.ic_move_to_inbox=exports.ic_mouse_twotone=exports.ic_mouse_outline=exports.ic_mouse=exports.ic_motion_photos_paused_twotone=exports.ic_motion_photos_paused_outline=exports.ic_motion_photos_paused=exports.ic_motion_photos_pause_twotone=exports.ic_motion_photos_pause_outline=exports.ic_motion_photos_pause=exports.ic_motion_photos_on_twotone=exports.ic_motion_photos_on_outline=exports.ic_motion_photos_on=exports.ic_motion_photos_off=exports.ic_more_vert_twotone=exports.ic_more_vert_outline=exports.ic_more_vert=exports.ic_more_twotone=exports.ic_more_time_twotone=exports.ic_more_time_outline=exports.ic_more_time=exports.ic_more_outline=exports.ic_more_horiz_twotone=exports.ic_more_horiz_outline=exports.ic_more_horiz=exports.ic_more=exports.ic_moped_twotone=exports.ic_moped_outline=exports.ic_moped=exports.ic_mood_twotone=exports.ic_mood_outline=exports.ic_mood_bad_twotone=exports.ic_mood_bad_outline=exports.ic_mood_bad=exports.ic_mood=exports.ic_monochrome_photos_twotone=exports.ic_monochrome_photos_outline=exports.ic_monochrome_photos=exports.ic_monitor=exports.ic_money_twotone=exports.ic_money_outline=exports.ic_money_off_twotone=exports.ic_money_off_outline=exports.ic_money_off_csred_twotone=exports.ic_money_off_csred_outline=exports.ic_money_off=exports.ic_money=exports.ic_monetization_on_twotone=exports.ic_monetization_on_outline=exports.ic_monetization_on=exports.ic_model_training_twotone=exports.ic_model_training_outline=exports.ic_model_training=exports.ic_mode_twotone=exports.ic_mode_outline=exports.ic_mode_edit=exports.ic_mode_comment_twotone=exports.ic_mode_comment_outline=exports.ic_mode_comment=exports.ic_mobile_screen_share_twotone=exports.ic_mobile_screen_share_outline=exports.ic_mobile_screen_share=exports.ic_mobile_off_twotone=exports.ic_mobile_off_outline=exports.ic_mobile_off=exports.ic_mobile_friendly_twotone=exports.ic_mobile_friendly_outline=exports.ic_mobile_friendly=exports.ic_mms_twotone=exports.ic_mms_outline=exports.ic_mms=exports.ic_missed_video_call_twotone=exports.ic_missed_video_call_outline=exports.ic_missed_video_call=exports.ic_miscellaneous_services_twotone=exports.ic_miscellaneous_services_outline=exports.ic_miscellaneous_services=exports.ic_minimize_twotone=exports.ic_minimize_outline=exports.ic_minimize=exports.ic_military_tech_twotone=void 0;exports.ic_no_photography_outline=exports.ic_no_photography=exports.ic_no_meeting_room_twotone=exports.ic_no_meeting_room_outline=exports.ic_no_meeting_room=exports.ic_no_meals_twotone=exports.ic_no_meals_outline=exports.ic_no_meals_ouline=exports.ic_no_meals=exports.ic_no_luggage_twotone=exports.ic_no_luggage_outline=exports.ic_no_luggage=exports.ic_no_food_twotone=exports.ic_no_food_outline=exports.ic_no_food=exports.ic_no_flash_twotone=exports.ic_no_flash_outline=exports.ic_no_flash=exports.ic_no_encryption_twotone=exports.ic_no_encryption_outline=exports.ic_no_encryption_gmailerrorred_twotone=exports.ic_no_encryption_gmailerrorred_outline=exports.ic_no_encryption=exports.ic_no_drinks_twotone=exports.ic_no_drinks_outline=exports.ic_no_drinks=exports.ic_no_cell_twotone=exports.ic_no_cell_outline=exports.ic_no_cell=exports.ic_no_backpack_twotone=exports.ic_no_backpack_outline=exports.ic_no_backpack=exports.ic_nights_stay_twotone=exports.ic_nights_stay_outline=exports.ic_nights_stay=exports.ic_nightlight_round=exports.ic_nightlife=exports.ic_night_shelter_twotone=exports.ic_night_shelter_outline=exports.ic_night_shelter=exports.ic_nfc_twotone=exports.ic_nfc_outline=exports.ic_nfc=exports.ic_next_week_twotone=exports.ic_next_week_outline=exports.ic_next_week=exports.ic_next_plan_twotone=exports.ic_next_plan_outline=exports.ic_next_plan=exports.ic_new_releases_twotone=exports.ic_new_releases_outline=exports.ic_new_releases=exports.ic_network_wifi_twotone=exports.ic_network_wifi=exports.ic_network_locked_twotone=exports.ic_network_locked_outline=exports.ic_network_locked=exports.ic_network_check_twotone=exports.ic_network_check_outline=exports.ic_network_check=exports.ic_network_cell_twotone=exports.ic_network_cell=exports.ic_near_me_twotone=exports.ic_near_me_outline=exports.ic_near_me_disabled_twotone=exports.ic_near_me_disabled_outline=exports.ic_near_me_disabled=exports.ic_near_me=exports.ic_navigation_twotone=exports.ic_navigation_outline=exports.ic_navigation=exports.ic_navigate_next_twotone=exports.ic_navigate_next_outline=exports.ic_navigate_next=exports.ic_navigate_before_twotone=exports.ic_navigate_before_outline=exports.ic_navigate_before=exports.ic_nature_twotone=exports.ic_nature_people_twotone=exports.ic_nature_people_outline=exports.ic_nature_people=exports.ic_nature_outline=exports.ic_nature=exports.ic_nat_twotone=exports.ic_nat_outline=exports.ic_nat=exports.ic_my_location_twotone=exports.ic_my_location_outline=exports.ic_my_location=exports.ic_music_video_twotone=exports.ic_music_video_outline=exports.ic_music_video=exports.ic_music_off_twotone=exports.ic_music_off_outline=exports.ic_music_off=exports.ic_music_note_twotone=exports.ic_music_note_outline=exports.ic_music_note=exports.ic_museum_twotone=exports.ic_museum_outline=void 0;exports.ic_outlined_flag_twotone=exports.ic_outlined_flag_outline=exports.ic_outlined_flag=exports.ic_outlet_twotone=exports.ic_outlet_outline=exports.ic_outlet=exports.ic_outgoing_mail=exports.ic_outdoor_grill_twotone=exports.ic_outdoor_grill_outline=exports.ic_outdoor_grill=exports.ic_outbox=exports.ic_outbond_twotone=exports.ic_outbond_outline=exports.ic_outbond=exports.ic_open_with_twotone=exports.ic_open_with_outline=exports.ic_open_with=exports.ic_open_in_new_twotone=exports.ic_open_in_new_outline=exports.ic_open_in_new=exports.ic_open_in_full_twotone=exports.ic_open_in_full_outline=exports.ic_open_in_full=exports.ic_open_in_browser_twotone=exports.ic_open_in_browser_outline=exports.ic_open_in_browser=exports.ic_opacity_twotone=exports.ic_opacity_outline=exports.ic_opacity=exports.ic_online_prediction_twotone=exports.ic_online_prediction_outline=exports.ic_online_prediction=exports.ic_ondemand_video_twotone=exports.ic_ondemand_video_outline=exports.ic_ondemand_video=exports.ic_offline_share=exports.ic_offline_pin_twotone=exports.ic_offline_pin_outline=exports.ic_offline_pin=exports.ic_offline_bolt_twotone=exports.ic_offline_bolt_outline=exports.ic_offline_bolt=exports.ic_notifications_twotone=exports.ic_notifications_paused_twotone=exports.ic_notifications_paused_outline=exports.ic_notifications_paused=exports.ic_notifications_outline=exports.ic_notifications_off_twotone=exports.ic_notifications_off_outline=exports.ic_notifications_off=exports.ic_notifications_none_twotone=exports.ic_notifications_none_outline=exports.ic_notifications_none=exports.ic_notifications_active_twotone=exports.ic_notifications_active_outline=exports.ic_notifications_active=exports.ic_notifications=exports.ic_notification_important_twotone=exports.ic_notification_important_outline=exports.ic_notification_important=exports.ic_notes_twotone=exports.ic_notes_outline=exports.ic_notes=exports.ic_note_twotone=exports.ic_note_outline=exports.ic_note_add_twotone=exports.ic_note_add_outline=exports.ic_note_add=exports.ic_note=exports.ic_not_started_twotone=exports.ic_not_started_outline=exports.ic_not_started=exports.ic_not_listed_location_twotone=exports.ic_not_listed_location_outline=exports.ic_not_listed_location=exports.ic_not_interested_twotone=exports.ic_not_interested_outline=exports.ic_not_interested=exports.ic_not_accessible_twotone=exports.ic_not_accessible_outline=exports.ic_not_accessible=exports.ic_north_west_twotone=exports.ic_north_west_outline=exports.ic_north_west=exports.ic_north_twotone=exports.ic_north_outline=exports.ic_north_east_twotone=exports.ic_north_east_outline=exports.ic_north_east=exports.ic_north=exports.ic_no_transfer_twotone=exports.ic_no_transfer_outline=exports.ic_no_transfer=exports.ic_no_stroller_twotone=exports.ic_no_stroller_outline=exports.ic_no_stroller=exports.ic_no_sim_twotone=exports.ic_no_sim_outline=exports.ic_no_sim=exports.ic_no_photography_twotone=void 0;exports.ic_person_add_alt_1=exports.ic_person_add_alt=exports.ic_person_add=exports.ic_person=exports.ic_perm_scan_wifi_twotone=exports.ic_perm_scan_wifi_outline=exports.ic_perm_scan_wifi=exports.ic_perm_phone_msg_twotone=exports.ic_perm_phone_msg_outline=exports.ic_perm_phone_msg=exports.ic_perm_media_twotone=exports.ic_perm_media_outline=exports.ic_perm_media=exports.ic_perm_identity_twotone=exports.ic_perm_identity_outline=exports.ic_perm_identity=exports.ic_perm_device_information_twotone=exports.ic_perm_device_information_outline=exports.ic_perm_device_information=exports.ic_perm_data_setting_twotone=exports.ic_perm_data_setting_outline=exports.ic_perm_data_setting=exports.ic_perm_contact_calendar_twotone=exports.ic_perm_contact_calendar_outline=exports.ic_perm_contact_calendar=exports.ic_perm_camera_mic_twotone=exports.ic_perm_camera_mic_outline=exports.ic_perm_camera_mic=exports.ic_people_twotone=exports.ic_people_outline_twotone=exports.ic_people_outline_outline=exports.ic_people_outline=exports.ic_people_alt_twotone=exports.ic_people_alt_outline=exports.ic_people_alt=exports.ic_people=exports.ic_pending_twotone=exports.ic_pending_outline=exports.ic_pending_actions_twotone=exports.ic_pending_actions_outline=exports.ic_pending_actions=exports.ic_pending=exports.ic_pedal_bike_twotone=exports.ic_pedal_bike_outline=exports.ic_pedal_bike=exports.ic_payments_twotone=exports.ic_payments_outline=exports.ic_payments=exports.ic_payment_twotone=exports.ic_payment_outline=exports.ic_payment=exports.ic_pause_twotone=exports.ic_pause_presentation_twotone=exports.ic_pause_presentation_outline=exports.ic_pause_presentation=exports.ic_pause_outline=exports.ic_pause_circle_outline_twotone=exports.ic_pause_circle_outline_outline=exports.ic_pause_circle_outline=exports.ic_pause_circle_filled_twotone=exports.ic_pause_circle_filled_outline=exports.ic_pause_circle_filled=exports.ic_pause=exports.ic_party_mode_twotone=exports.ic_party_mode_outline=exports.ic_party_mode=exports.ic_park=exports.ic_panorama_wide_angle_twotone=exports.ic_panorama_wide_angle_select=exports.ic_panorama_wide_angle_outline=exports.ic_panorama_wide_angle=exports.ic_panorama_vertical_twotone=exports.ic_panorama_vertical_select=exports.ic_panorama_vertical_outline=exports.ic_panorama_vertical=exports.ic_panorama_twotone=exports.ic_panorama_photosphere_select=exports.ic_panorama_photosphere=exports.ic_panorama_outline=exports.ic_panorama_horizontal_twotone=exports.ic_panorama_horizontal_select=exports.ic_panorama_horizontal_outline=exports.ic_panorama_horizontal=exports.ic_panorama_fish_eye_twotone=exports.ic_panorama_fish_eye_outline=exports.ic_panorama_fish_eye=exports.ic_panorama=exports.ic_pan_tool_twotone=exports.ic_pan_tool_outline=exports.ic_pan_tool=exports.ic_palette_twotone=exports.ic_palette_outline=exports.ic_palette=exports.ic_pageview_twotone=exports.ic_pageview_outline=exports.ic_pageview=exports.ic_pages_twotone=exports.ic_pages_outline=exports.ic_pages=exports.ic_padding=void 0;exports.ic_photo_camera_outline=exports.ic_photo_camera_front=exports.ic_photo_camera_back=exports.ic_photo_camera=exports.ic_photo_album_twotone=exports.ic_photo_album_outline=exports.ic_photo_album=exports.ic_photo=exports.ic_phonelink_twotone=exports.ic_phonelink_setup_twotone=exports.ic_phonelink_setup_outline=exports.ic_phonelink_setup=exports.ic_phonelink_ring_twotone=exports.ic_phonelink_ring_outline=exports.ic_phonelink_ring=exports.ic_phonelink_outline=exports.ic_phonelink_off_twotone=exports.ic_phonelink_off_outline=exports.ic_phonelink_off=exports.ic_phonelink_lock_twotone=exports.ic_phonelink_lock_outline=exports.ic_phonelink_lock=exports.ic_phonelink_erase_twotone=exports.ic_phonelink_erase_outline=exports.ic_phonelink_erase=exports.ic_phonelink=exports.ic_phone_twotone=exports.ic_phone_paused_twotone=exports.ic_phone_paused_outline=exports.ic_phone_paused=exports.ic_phone_outline=exports.ic_phone_missed_twotone=exports.ic_phone_missed_outline=exports.ic_phone_missed=exports.ic_phone_locked_twotone=exports.ic_phone_locked_outline=exports.ic_phone_locked=exports.ic_phone_iphone_twotone=exports.ic_phone_iphone_outline=exports.ic_phone_iphone=exports.ic_phone_in_talk_twotone=exports.ic_phone_in_talk_outline=exports.ic_phone_in_talk=exports.ic_phone_forwarded_twotone=exports.ic_phone_forwarded_outline=exports.ic_phone_forwarded=exports.ic_phone_enabled_twotone=exports.ic_phone_enabled_outline=exports.ic_phone_enabled=exports.ic_phone_disabled_twotone=exports.ic_phone_disabled_outline=exports.ic_phone_disabled=exports.ic_phone_callback_twotone=exports.ic_phone_callback_outline=exports.ic_phone_callback=exports.ic_phone_bluetooth_speaker_twotone=exports.ic_phone_bluetooth_speaker_outline=exports.ic_phone_bluetooth_speaker=exports.ic_phone_android_twotone=exports.ic_phone_android_outline=exports.ic_phone_android=exports.ic_phone=exports.ic_pets_twotone=exports.ic_pets_outline=exports.ic_pets=exports.ic_pest_control_twotone=exports.ic_pest_control_rodent_twotone=exports.ic_pest_control_rodent_outline=exports.ic_pest_control_rodent=exports.ic_pest_control_outline=exports.ic_pest_control=exports.ic_personal_video_twotone=exports.ic_personal_video_outline=exports.ic_personal_video=exports.ic_person_twotone=exports.ic_person_search_twotone=exports.ic_person_search_outline=exports.ic_person_search=exports.ic_person_remove_twotone=exports.ic_person_remove_outline=exports.ic_person_remove_alt_1_twotone=exports.ic_person_remove_alt_1_outline=exports.ic_person_remove_alt_1=exports.ic_person_remove=exports.ic_person_pin_twotone=exports.ic_person_pin_outline=exports.ic_person_pin_circle_twotone=exports.ic_person_pin_circle_outline=exports.ic_person_pin_circle=exports.ic_person_pin=exports.ic_person_outline_twotone=exports.ic_person_outline_outline=exports.ic_person_outline=exports.ic_person_add_twotone=exports.ic_person_add_outline=exports.ic_person_add_disabled_twotone=exports.ic_person_add_disabled_outline=exports.ic_person_add_disabled=exports.ic_person_add_alt_1_twotone=exports.ic_person_add_alt_1_outline=void 0;exports.ic_power_off=exports.ic_power_input_twotone=exports.ic_power_input_outline=exports.ic_power_input=exports.ic_power=exports.ic_post_add_twotone=exports.ic_post_add_outline=exports.ic_post_add=exports.ic_portrait_twotone=exports.ic_portrait_outline=exports.ic_portrait=exports.ic_portable_wifi_off_twotone=exports.ic_portable_wifi_off_outline=exports.ic_portable_wifi_off=exports.ic_pool_twotone=exports.ic_pool_outline=exports.ic_pool=exports.ic_polymer_twotone=exports.ic_polymer_outline=exports.ic_polymer=exports.ic_poll_twotone=exports.ic_poll_outline=exports.ic_poll=exports.ic_policy_twotone=exports.ic_policy_outline=exports.ic_policy=exports.ic_point_of_sale_twotone=exports.ic_point_of_sale_outline=exports.ic_point_of_sale=exports.ic_plus_one_twotone=exports.ic_plus_one_outline=exports.ic_plus_one=exports.ic_plumbing_twotone=exports.ic_plumbing_outline=exports.ic_plumbing=exports.ic_playlist_play_twotone=exports.ic_playlist_play_outline=exports.ic_playlist_play=exports.ic_playlist_add_twotone=exports.ic_playlist_add_outline=exports.ic_playlist_add_check_twotone=exports.ic_playlist_add_check_outline=exports.ic_playlist_add_check=exports.ic_playlist_add=exports.ic_play_for_work_twotone=exports.ic_play_for_work_outline=exports.ic_play_for_work=exports.ic_play_disabled=exports.ic_play_circle_outline_twotone=exports.ic_play_circle_outline_outline=exports.ic_play_circle_outline=exports.ic_play_circle_filled_twotone=exports.ic_play_circle_filled_outline=exports.ic_play_circle_filled=exports.ic_play_arrow_twotone=exports.ic_play_arrow_outline=exports.ic_play_arrow=exports.ic_plagiarism_twotone=exports.ic_plagiarism_outline=exports.ic_plagiarism=exports.ic_place_twotone=exports.ic_place_outline=exports.ic_place=exports.ic_pivot_table_chart=exports.ic_pin_drop_twotone=exports.ic_pin_drop_outline=exports.ic_pin_drop=exports.ic_pie_chart_twotone=exports.ic_pie_chart_outlined=exports.ic_pie_chart_outline_twotone=exports.ic_pie_chart_outline_outline=exports.ic_pie_chart_outline=exports.ic_pie_chart=exports.ic_picture_in_picture_twotone=exports.ic_picture_in_picture_outline=exports.ic_picture_in_picture_alt_twotone=exports.ic_picture_in_picture_alt_outline=exports.ic_picture_in_picture_alt=exports.ic_picture_in_picture=exports.ic_picture_as_pdf_twotone=exports.ic_picture_as_pdf_outline=exports.ic_picture_as_pdf=exports.ic_photo_twotone=exports.ic_photo_size_select_small_twotone=exports.ic_photo_size_select_small_outline=exports.ic_photo_size_select_small=exports.ic_photo_size_select_large_twotone=exports.ic_photo_size_select_large_outline=exports.ic_photo_size_select_large=exports.ic_photo_size_select_actual_twotone=exports.ic_photo_size_select_actual_outline=exports.ic_photo_size_select_actual=exports.ic_photo_outline=exports.ic_photo_library_twotone=exports.ic_photo_library_outline=exports.ic_photo_library=exports.ic_photo_filter_twotone=exports.ic_photo_filter_outline=exports.ic_photo_filter=exports.ic_photo_camera_twotone=void 0;exports.ic_record_voice_over=exports.ic_recommend=exports.ic_recent_actors_twotone=exports.ic_recent_actors_outline=exports.ic_recent_actors=exports.ic_receipt_twotone=exports.ic_receipt_outline=exports.ic_receipt_long_twotone=exports.ic_receipt_long_outline=exports.ic_receipt_long=exports.ic_receipt=exports.ic_read_more_twotone=exports.ic_read_more_outline=exports.ic_read_more=exports.ic_rate_review_twotone=exports.ic_rate_review_outline=exports.ic_rate_review=exports.ic_ramen_dining=exports.ic_railway_alert=exports.ic_radio_twotone=exports.ic_radio_outline=exports.ic_radio_button_unchecked_twotone=exports.ic_radio_button_unchecked_outline=exports.ic_radio_button_unchecked=exports.ic_radio_button_checked_twotone=exports.ic_radio_button_checked_outline=exports.ic_radio_button_checked=exports.ic_radio=exports.ic_quickreply_twotone=exports.ic_quickreply_outline=exports.ic_quickreply=exports.ic_queue_twotone=exports.ic_queue_play_next_twotone=exports.ic_queue_play_next_outline=exports.ic_queue_play_next=exports.ic_queue_outline=exports.ic_queue_music_twotone=exports.ic_queue_music_outline=exports.ic_queue_music=exports.ic_queue=exports.ic_question_answer_twotone=exports.ic_question_answer_outline=exports.ic_question_answer=exports.ic_query_builder_twotone=exports.ic_query_builder_outline=exports.ic_query_builder=exports.ic_qr_code_twotone=exports.ic_qr_code_scanner_twotone=exports.ic_qr_code_scanner_outline=exports.ic_qr_code_scanner=exports.ic_qr_code_outline=exports.ic_qr_code=exports.ic_push_pin_twotone=exports.ic_push_pin_outline=exports.ic_push_pin=exports.ic_published_with_changes_twotone=exports.ic_published_with_changes_outline=exports.ic_published_with_changes=exports.ic_publish_twotone=exports.ic_publish_outline=exports.ic_publish=exports.ic_public_twotone=exports.ic_public_outline=exports.ic_public_off_twotone=exports.ic_public_off_outline=exports.ic_public_off=exports.ic_public=exports.ic_psychology_twotone=exports.ic_psychology_outline=exports.ic_psychology=exports.ic_privacy_tip_twotone=exports.ic_privacy_tip_outline=exports.ic_privacy_tip=exports.ic_priority_high_twotone=exports.ic_priority_high_outline=exports.ic_priority_high=exports.ic_print_twotone=exports.ic_print_outline=exports.ic_print_disabled_twotone=exports.ic_print_disabled_outline=exports.ic_print_disabled=exports.ic_print=exports.ic_preview_twotone=exports.ic_preview_outline=exports.ic_preview=exports.ic_present_to_all_twotone=exports.ic_present_to_all_outline=exports.ic_present_to_all=exports.ic_pregnant_woman_twotone=exports.ic_pregnant_woman_outline=exports.ic_pregnant_woman=exports.ic_precision_manufacturing_twotone=exports.ic_precision_manufacturing_outline=exports.ic_power_twotone=exports.ic_power_settings_new_twotone=exports.ic_power_settings_new_outline=exports.ic_power_settings_new=exports.ic_power_outline=exports.ic_power_off_twotone=exports.ic_power_off_outline=void 0;exports.ic_ring_volume=exports.ic_rice_bowl_twotone=exports.ic_rice_bowl_outline=exports.ic_rice_bowl=exports.ic_restore_twotone=exports.ic_restore_page_twotone=exports.ic_restore_page_outline=exports.ic_restore_page=exports.ic_restore_outline=exports.ic_restore_from_trash_twotone=exports.ic_restore_from_trash_outline=exports.ic_restore_from_trash=exports.ic_restore=exports.ic_restaurant_twotone=exports.ic_restaurant_outline=exports.ic_restaurant_menu_twotone=exports.ic_restaurant_menu_outline=exports.ic_restaurant_menu=exports.ic_restaurant=exports.ic_reset_tv=exports.ic_request_quote_twotone=exports.ic_request_quote_outline=exports.ic_request_quote=exports.ic_request_page_twotone=exports.ic_request_page_outline=exports.ic_request_page=exports.ic_report_twotone=exports.ic_report_problem_twotone=exports.ic_report_problem_outline=exports.ic_report_problem=exports.ic_report_outline=exports.ic_report_off_twotone=exports.ic_report_off_outline=exports.ic_report_off=exports.ic_report_gmailerrorred_twotone=exports.ic_report_gmailerrorred_outline=exports.ic_report=exports.ic_reply_twotone=exports.ic_reply_outline=exports.ic_reply_all_twotone=exports.ic_reply_all_outline=exports.ic_reply_all=exports.ic_reply=exports.ic_replay_twotone=exports.ic_replay_outline=exports.ic_replay_circle_filled=exports.ic_replay_5_twotone=exports.ic_replay_5_outline=exports.ic_replay_5=exports.ic_replay_30_twotone=exports.ic_replay_30_outline=exports.ic_replay_30=exports.ic_replay_10_twotone=exports.ic_replay_10_outline=exports.ic_replay_10=exports.ic_replay=exports.ic_repeat_twotone=exports.ic_repeat_outline=exports.ic_repeat_one_twotone=exports.ic_repeat_one_outline=exports.ic_repeat_one_on=exports.ic_repeat_one=exports.ic_repeat_on=exports.ic_repeat=exports.ic_reorder_twotone=exports.ic_reorder_outline=exports.ic_reorder=exports.ic_remove_twotone=exports.ic_remove_shopping_cart_twotone=exports.ic_remove_shopping_cart_outline=exports.ic_remove_shopping_cart=exports.ic_remove_red_eye_twotone=exports.ic_remove_red_eye_outline=exports.ic_remove_red_eye=exports.ic_remove_outline=exports.ic_remove_moderator=exports.ic_remove_from_queue_twotone=exports.ic_remove_from_queue_outline=exports.ic_remove_from_queue=exports.ic_remove_done=exports.ic_remove_circle_twotone=exports.ic_remove_circle_outline_twotone=exports.ic_remove_circle_outline_outline=exports.ic_remove_circle_outline=exports.ic_remove_circle=exports.ic_remove=exports.ic_refresh_twotone=exports.ic_refresh_outline=exports.ic_refresh=exports.ic_reduce_capacity_twotone=exports.ic_reduce_capacity_outline=exports.ic_reduce_capacity=exports.ic_redo_twotone=exports.ic_redo_outline=exports.ic_redo=exports.ic_redeem_twotone=exports.ic_redeem_outline=exports.ic_redeem=exports.ic_record_voice_over_twotone=exports.ic_record_voice_over_outline=void 0;exports.ic_sd_card_alert_twotone=exports.ic_sd_card_alert_outline=exports.ic_sd_card=exports.ic_sd=exports.ic_screen_share_twotone=exports.ic_screen_share_outline=exports.ic_screen_share=exports.ic_screen_search_desktop=exports.ic_screen_rotation_twotone=exports.ic_screen_rotation_outline=exports.ic_screen_rotation=exports.ic_screen_lock_rotation_twotone=exports.ic_screen_lock_rotation_outline=exports.ic_screen_lock_rotation=exports.ic_screen_lock_portrait_twotone=exports.ic_screen_lock_portrait_outline=exports.ic_screen_lock_portrait=exports.ic_screen_lock_landscape_twotone=exports.ic_screen_lock_landscape_outline=exports.ic_screen_lock_landscape=exports.ic_score_twotone=exports.ic_score_outline=exports.ic_score=exports.ic_science_twotone=exports.ic_science_outline=exports.ic_science=exports.ic_school_twotone=exports.ic_school_outline=exports.ic_school=exports.ic_schedule_twotone=exports.ic_schedule_send=exports.ic_schedule_outline=exports.ic_schedule=exports.ic_scatter_plot_twotone=exports.ic_scatter_plot_outline=exports.ic_scatter_plot=exports.ic_scanner_twotone=exports.ic_scanner_outline=exports.ic_scanner=exports.ic_saved_search=exports.ic_save_twotone=exports.ic_save_outline=exports.ic_save_alt_twotone=exports.ic_save_alt_outline=exports.ic_save_alt=exports.ic_save=exports.ic_satellite_twotone=exports.ic_satellite_outline=exports.ic_satellite=exports.ic_sanitizer_twotone=exports.ic_sanitizer_outline=exports.ic_sanitizer=exports.ic_rv_hookup_twotone=exports.ic_rv_hookup_outline=exports.ic_rv_hookup=exports.ic_run_circle_twotone=exports.ic_run_circle_outline=exports.ic_run_circle=exports.ic_rule_twotone=exports.ic_rule_outline=exports.ic_rule_folder_twotone=exports.ic_rule_folder_outline=exports.ic_rule_folder=exports.ic_rule=exports.ic_rtt=exports.ic_rss_feed_twotone=exports.ic_rss_feed_outline=exports.ic_rss_feed=exports.ic_rowing_twotone=exports.ic_rowing_outline=exports.ic_rowing=exports.ic_router_twotone=exports.ic_router_outline=exports.ic_router=exports.ic_rounded_corner_twotone=exports.ic_rounded_corner_outline=exports.ic_rounded_corner=exports.ic_rotate_right_twotone=exports.ic_rotate_right_outline=exports.ic_rotate_right=exports.ic_rotate_left_twotone=exports.ic_rotate_left_outline=exports.ic_rotate_left=exports.ic_rotate_90_degrees_ccw_twotone=exports.ic_rotate_90_degrees_ccw_outline=exports.ic_rotate_90_degrees_ccw=exports.ic_room_twotone=exports.ic_room_service_twotone=exports.ic_room_service_outline=exports.ic_room_service=exports.ic_room_preferences_twotone=exports.ic_room_preferences_outline=exports.ic_room_preferences=exports.ic_room_outline=exports.ic_room=exports.ic_roofing_twotone=exports.ic_roofing_outline=exports.ic_roofing=exports.ic_ring_volume_twotone=exports.ic_ring_volume_outline=void 0;exports.ic_settings_remote_twotone=exports.ic_settings_remote_outline=exports.ic_settings_remote=exports.ic_settings_power_twotone=exports.ic_settings_power_outline=exports.ic_settings_power=exports.ic_settings_phone_twotone=exports.ic_settings_phone_outline=exports.ic_settings_phone=exports.ic_settings_overscan_twotone=exports.ic_settings_overscan_outline=exports.ic_settings_overscan=exports.ic_settings_outline=exports.ic_settings_input_svideo_twotone=exports.ic_settings_input_svideo_outline=exports.ic_settings_input_svideo=exports.ic_settings_input_hdmi_twotone=exports.ic_settings_input_hdmi_outline=exports.ic_settings_input_hdmi=exports.ic_settings_input_composite_twotone=exports.ic_settings_input_composite_outline=exports.ic_settings_input_composite=exports.ic_settings_input_component_twotone=exports.ic_settings_input_component_outline=exports.ic_settings_input_component=exports.ic_settings_input_antenna_twotone=exports.ic_settings_input_antenna_outline=exports.ic_settings_input_antenna=exports.ic_settings_ethernet_twotone=exports.ic_settings_ethernet_outline=exports.ic_settings_ethernet=exports.ic_settings_cell_twotone=exports.ic_settings_cell_outline=exports.ic_settings_cell=exports.ic_settings_brightness_twotone=exports.ic_settings_brightness_outline=exports.ic_settings_brightness=exports.ic_settings_bluetooth_twotone=exports.ic_settings_bluetooth_outline=exports.ic_settings_bluetooth=exports.ic_settings_backup_restore_twotone=exports.ic_settings_backup_restore_outline=exports.ic_settings_backup_restore=exports.ic_settings_applications_twotone=exports.ic_settings_applications_outline=exports.ic_settings_applications=exports.ic_settings=exports.ic_set_meal_twotone=exports.ic_set_meal_outline=exports.ic_set_meal=exports.ic_sentiment_very_satisfied_twotone=exports.ic_sentiment_very_satisfied_outline=exports.ic_sentiment_very_satisfied=exports.ic_sentiment_very_dissatisfied_twotone=exports.ic_sentiment_very_dissatisfied_outline=exports.ic_sentiment_very_dissatisfied=exports.ic_sentiment_satisfied_twotone=exports.ic_sentiment_satisfied_outline=exports.ic_sentiment_satisfied_alt_twotone=exports.ic_sentiment_satisfied_alt_outline=exports.ic_sentiment_satisfied_alt=exports.ic_sentiment_satisfied=exports.ic_sentiment_neutral_twotone=exports.ic_sentiment_neutral_outline=exports.ic_sentiment_neutral=exports.ic_sentiment_dissatisfied_twotone=exports.ic_sentiment_dissatisfied_outline=exports.ic_sentiment_dissatisfied=exports.ic_sensor_window_twotone=exports.ic_sensor_window_outline=exports.ic_sensor_window=exports.ic_sensor_door_twotone=exports.ic_sensor_door_outline=exports.ic_sensor_door=exports.ic_send_twotone=exports.ic_send_to_mobile=exports.ic_send_outline=exports.ic_send_and_archive=exports.ic_send=exports.ic_self_improvement_twotone=exports.ic_self_improvement_outline=exports.ic_self_improvement=exports.ic_select_all_twotone=exports.ic_select_all_outline=exports.ic_select_all=exports.ic_segment=exports.ic_security_twotone=exports.ic_security_outline=exports.ic_security=exports.ic_search_twotone=exports.ic_search_outline=exports.ic_search_off_twotone=exports.ic_search_off_outline=exports.ic_search_off=exports.ic_search=exports.ic_sd_storage_twotone=exports.ic_sd_storage_outline=exports.ic_sd_storage=exports.ic_sd_card_twotone=exports.ic_sd_card_outline=void 0;exports.ic_slideshow=exports.ic_skip_previous_twotone=exports.ic_skip_previous_outline=exports.ic_skip_previous=exports.ic_skip_next_twotone=exports.ic_skip_next_outline=exports.ic_skip_next=exports.ic_single_bed_twotone=exports.ic_single_bed_outline=exports.ic_single_bed=exports.ic_sim_card_twotone=exports.ic_sim_card_outline=exports.ic_sim_card_alert=exports.ic_sim_card=exports.ic_signal_wifi_off_twotone=exports.ic_signal_wifi_off_outline=exports.ic_signal_wifi_off=exports.ic_signal_wifi_4_bar_twotone=exports.ic_signal_wifi_4_bar_outline=exports.ic_signal_wifi_4_bar_lock_twotone=exports.ic_signal_wifi_4_bar_lock_outline=exports.ic_signal_wifi_4_bar_lock=exports.ic_signal_wifi_4_bar=exports.ic_signal_wifi_3_bar_twotone=exports.ic_signal_wifi_3_bar_lock_twotone=exports.ic_signal_wifi_2_bar_twotone=exports.ic_signal_wifi_2_bar_lock_twotone=exports.ic_signal_wifi_1_bar_twotone=exports.ic_signal_wifi_1_bar_lock_twotone=exports.ic_signal_wifi_0_bar_twotone=exports.ic_signal_wifi_0_bar=exports.ic_signal_cellular_off_twotone=exports.ic_signal_cellular_off_outline=exports.ic_signal_cellular_off=exports.ic_signal_cellular_null_twotone=exports.ic_signal_cellular_null_outline=exports.ic_signal_cellular_null=exports.ic_signal_cellular_no_sim_twotone=exports.ic_signal_cellular_no_sim_outline=exports.ic_signal_cellular_no_sim=exports.ic_signal_cellular_connected_no_internet_4_bar_twotone=exports.ic_signal_cellular_connected_no_internet_4_bar_outline=exports.ic_signal_cellular_connected_no_internet_4_bar=exports.ic_signal_cellular_connected_no_internet_3_bar_twotone=exports.ic_signal_cellular_connected_no_internet_2_bar_twotone=exports.ic_signal_cellular_connected_no_internet_1_bar_twotone=exports.ic_signal_cellular_connected_no_internet_0_bar_twotone=exports.ic_signal_cellular_alt_twotone=exports.ic_signal_cellular_alt_outline=exports.ic_signal_cellular_alt=exports.ic_signal_cellular_4_bar_twotone=exports.ic_signal_cellular_4_bar_outline=exports.ic_signal_cellular_4_bar=exports.ic_signal_cellular_3_bar_twotone=exports.ic_signal_cellular_2_bar_twotone=exports.ic_signal_cellular_1_bar_twotone=exports.ic_signal_cellular_0_bar_twotone=exports.ic_signal_cellular_0_bar=exports.ic_sick_twotone=exports.ic_sick_outline=exports.ic_sick=exports.ic_shutter_speed_twotone=exports.ic_shutter_speed_outline=exports.ic_shutter_speed=exports.ic_shuffle_twotone=exports.ic_shuffle_outline=exports.ic_shuffle_on=exports.ic_shuffle=exports.ic_show_chart_twotone=exports.ic_show_chart_outline=exports.ic_show_chart=exports.ic_short_text_twotone=exports.ic_short_text_outline=exports.ic_short_text=exports.ic_shopping_cart_twotone=exports.ic_shopping_cart_outline=exports.ic_shopping_cart=exports.ic_shopping_basket_twotone=exports.ic_shopping_basket_outline=exports.ic_shopping_basket=exports.ic_shopping_bag_twotone=exports.ic_shopping_bag_outline=exports.ic_shopping_bag=exports.ic_shop_twotone=exports.ic_shop_two_twotone=exports.ic_shop_two_outline=exports.ic_shop_two=exports.ic_shop_outline=exports.ic_shop=exports.ic_shield=exports.ic_share_twotone=exports.ic_share_outline=exports.ic_share=exports.ic_settings_voice_twotone=exports.ic_settings_voice_outline=exports.ic_settings_voice=exports.ic_settings_twotone=exports.ic_settings_system_daydream_twotone=exports.ic_settings_system_daydream_outline=exports.ic_settings_system_daydream=void 0;exports.ic_sports_handball=exports.ic_sports_golf_twotone=exports.ic_sports_golf_outline=exports.ic_sports_golf=exports.ic_sports_football_twotone=exports.ic_sports_football_outline=exports.ic_sports_football=exports.ic_sports_esports_twotone=exports.ic_sports_esports_outline=exports.ic_sports_esports=exports.ic_sports_cricket_twotone=exports.ic_sports_cricket_outline=exports.ic_sports_cricket=exports.ic_sports_basketball_twotone=exports.ic_sports_basketball_outline=exports.ic_sports_basketball=exports.ic_sports_baseball_twotone=exports.ic_sports_baseball_outline=exports.ic_sports_baseball=exports.ic_sports_bar_twotone=exports.ic_sports_bar_outline=exports.ic_sports_bar=exports.ic_sports=exports.ic_spellcheck_twotone=exports.ic_spellcheck_outline=exports.ic_spellcheck=exports.ic_speed_twotone=exports.ic_speed_outline=exports.ic_speed=exports.ic_speaker_twotone=exports.ic_speaker_phone_twotone=exports.ic_speaker_phone_outline=exports.ic_speaker_phone=exports.ic_speaker_outline=exports.ic_speaker_notes_twotone=exports.ic_speaker_notes_outline=exports.ic_speaker_notes_off_twotone=exports.ic_speaker_notes_off_outline=exports.ic_speaker_notes_off=exports.ic_speaker_notes=exports.ic_speaker_group_twotone=exports.ic_speaker_group_outline=exports.ic_speaker_group=exports.ic_speaker=exports.ic_space_bar_twotone=exports.ic_space_bar_outline=exports.ic_space_bar=exports.ic_spa_twotone=exports.ic_spa_outline=exports.ic_spa=exports.ic_south_west_twotone=exports.ic_south_west_outline=exports.ic_south_west=exports.ic_south_twotone=exports.ic_south_outline=exports.ic_south_east_twotone=exports.ic_south_east_outline=exports.ic_south_east=exports.ic_south=exports.ic_source_twotone=exports.ic_source_outline=exports.ic_source=exports.ic_sort_twotone=exports.ic_sort_outline=exports.ic_sort_by_alpha_twotone=exports.ic_sort_by_alpha_outline=exports.ic_sort_by_alpha=exports.ic_sort=exports.ic_soap_twotone=exports.ic_soap_outline=exports.ic_soap=exports.ic_snooze_twotone=exports.ic_snooze_outline=exports.ic_snooze=exports.ic_snippet_folder_twotone=exports.ic_snippet_folder_outline=exports.ic_snippet_folder=exports.ic_sms_twotone=exports.ic_sms_outline=exports.ic_sms_failed_twotone=exports.ic_sms_failed_outline=exports.ic_sms_failed=exports.ic_sms=exports.ic_smoking_rooms_twotone=exports.ic_smoking_rooms_outline=exports.ic_smoking_rooms=exports.ic_smoke_free_twotone=exports.ic_smoke_free_outline=exports.ic_smoke_free=exports.ic_smartphone_twotone=exports.ic_smartphone_outline=exports.ic_smartphone=exports.ic_smart_button_twotone=exports.ic_smart_button_outline=exports.ic_smart_button=exports.ic_slow_motion_video_twotone=exports.ic_slow_motion_video_outline=exports.ic_slow_motion_video=exports.ic_slideshow_twotone=exports.ic_slideshow_outline=void 0;exports.ic_streetview_twotone=exports.ic_streetview_outline=exports.ic_streetview=exports.ic_stream=exports.ic_straighten_twotone=exports.ic_straighten_outline=exports.ic_straighten=exports.ic_storefront_twotone=exports.ic_storefront_outline=exports.ic_storefront=exports.ic_store_twotone=exports.ic_store_outline=exports.ic_store_mall_directory_twotone=exports.ic_store_mall_directory_outline=exports.ic_store_mall_directory=exports.ic_store=exports.ic_storage_twotone=exports.ic_storage_outline=exports.ic_storage=exports.ic_stop_twotone=exports.ic_stop_screen_share_twotone=exports.ic_stop_screen_share_outline=exports.ic_stop_screen_share=exports.ic_stop_outline=exports.ic_stop_circle_twotone=exports.ic_stop_circle_outline=exports.ic_stop_circle=exports.ic_stop=exports.ic_sticky_note_2_twotone=exports.ic_sticky_note_2_outline=exports.ic_sticky_note_2=exports.ic_stay_primary_portrait_twotone=exports.ic_stay_primary_portrait_outline=exports.ic_stay_primary_portrait=exports.ic_stay_primary_landscape_twotone=exports.ic_stay_primary_landscape_outline=exports.ic_stay_primary_landscape=exports.ic_stay_current_portrait_twotone=exports.ic_stay_current_portrait_outline=exports.ic_stay_current_portrait=exports.ic_stay_current_landscape_twotone=exports.ic_stay_current_landscape_outline=exports.ic_stay_current_landscape=exports.ic_stars_twotone=exports.ic_stars_outline=exports.ic_stars=exports.ic_star_twotone=exports.ic_star_rate_twotone=exports.ic_star_rate_outline=exports.ic_star_rate=exports.ic_star_purple500_outline=exports.ic_star_outline_twotone=exports.ic_star_outline_outline=exports.ic_star_outline=exports.ic_star_half_twotone=exports.ic_star_half_outline=exports.ic_star_half=exports.ic_star_border_twotone=exports.ic_star_border_purple500_outline=exports.ic_star_border_outline=exports.ic_star_border=exports.ic_star=exports.ic_stairs_twotone=exports.ic_stairs_outline=exports.ic_stairs=exports.ic_stacked_line_chart_twotone=exports.ic_stacked_line_chart_outline=exports.ic_stacked_line_chart=exports.ic_stacked_bar_chart=exports.ic_square_foot_twotone=exports.ic_square_foot_outline=exports.ic_square_foot=exports.ic_sports_volleyball_twotone=exports.ic_sports_volleyball_outline=exports.ic_sports_volleyball=exports.ic_sports_twotone=exports.ic_sports_tennis_twotone=exports.ic_sports_tennis_outline=exports.ic_sports_tennis=exports.ic_sports_soccer_twotone=exports.ic_sports_soccer_outline=exports.ic_sports_soccer=exports.ic_sports_rugby_twotone=exports.ic_sports_rugby_outline=exports.ic_sports_rugby=exports.ic_sports_outline=exports.ic_sports_motorsports_twotone=exports.ic_sports_motorsports_outline=exports.ic_sports_motorsports=exports.ic_sports_mma_twotone=exports.ic_sports_mma_outline=exports.ic_sports_mma=exports.ic_sports_kabaddi_twotone=exports.ic_sports_kabaddi_outline=exports.ic_sports_kabaddi=exports.ic_sports_hockey_twotone=exports.ic_sports_hockey_outline=exports.ic_sports_hockey=exports.ic_sports_handball_twotone=exports.ic_sports_handball_outline=void 0;exports.ic_tab_outline=exports.ic_tab=exports.ic_system_update_twotone=exports.ic_system_update_outline=exports.ic_system_update_alt_twotone=exports.ic_system_update_alt_outline=exports.ic_system_update_alt=exports.ic_system_update=exports.ic_sync_twotone=exports.ic_sync_problem_twotone=exports.ic_sync_problem_outline=exports.ic_sync_problem=exports.ic_sync_outline=exports.ic_sync_disabled_twotone=exports.ic_sync_disabled_outline=exports.ic_sync_disabled=exports.ic_sync_alt_twotone=exports.ic_sync_alt_outline=exports.ic_sync_alt=exports.ic_sync=exports.ic_switch_video_twotone=exports.ic_switch_video_outline=exports.ic_switch_video=exports.ic_switch_right_twotone=exports.ic_switch_right_outline=exports.ic_switch_right=exports.ic_switch_left_twotone=exports.ic_switch_left_outline=exports.ic_switch_left=exports.ic_switch_camera_twotone=exports.ic_switch_camera_outline=exports.ic_switch_camera=exports.ic_switch_account=exports.ic_swipe=exports.ic_swap_vertical_circle_twotone=exports.ic_swap_vertical_circle_outline=exports.ic_swap_vertical_circle=exports.ic_swap_vert_twotone=exports.ic_swap_vert_outline=exports.ic_swap_vert=exports.ic_swap_horizontal_circle_twotone=exports.ic_swap_horizontal_circle_outline=exports.ic_swap_horizontal_circle=exports.ic_swap_horiz_twotone=exports.ic_swap_horiz_outline=exports.ic_swap_horiz=exports.ic_swap_calls_twotone=exports.ic_swap_calls_outline=exports.ic_swap_calls=exports.ic_surround_sound_twotone=exports.ic_surround_sound_outline=exports.ic_surround_sound=exports.ic_support_twotone=exports.ic_support_outline=exports.ic_support_agent_twotone=exports.ic_support_agent_outline=exports.ic_support_agent=exports.ic_support=exports.ic_supervisor_account_twotone=exports.ic_supervisor_account_outline=exports.ic_supervisor_account=exports.ic_supervised_user_circle_twotone=exports.ic_supervised_user_circle_outline=exports.ic_supervised_user_circle=exports.ic_superscript_twotone=exports.ic_superscript_outline=exports.ic_superscript=exports.ic_subway_twotone=exports.ic_subway_outline=exports.ic_subway=exports.ic_subtitles_twotone=exports.ic_subtitles_outline=exports.ic_subtitles_off_twotone=exports.ic_subtitles_off_outline=exports.ic_subtitles_off=exports.ic_subtitles=exports.ic_subscriptions_twotone=exports.ic_subscriptions_outline=exports.ic_subscriptions=exports.ic_subscript_twotone=exports.ic_subscript_outline=exports.ic_subscript=exports.ic_subject_twotone=exports.ic_subject_outline=exports.ic_subject=exports.ic_subdirectory_arrow_right_twotone=exports.ic_subdirectory_arrow_right_outline=exports.ic_subdirectory_arrow_right=exports.ic_subdirectory_arrow_left_twotone=exports.ic_subdirectory_arrow_left_outline=exports.ic_subdirectory_arrow_left=exports.ic_style_twotone=exports.ic_style_outline=exports.ic_style=exports.ic_stroller_twotone=exports.ic_stroller_outline=exports.ic_stroller=exports.ic_strikethrough_s_twotone=exports.ic_strikethrough_s_outline=exports.ic_strikethrough_s=void 0;exports.ic_timeline=exports.ic_timelapse_twotone=exports.ic_timelapse_outline=exports.ic_timelapse=exports.ic_time_to_leave_twotone=exports.ic_time_to_leave_outline=exports.ic_time_to_leave=exports.ic_thumbs_up_down_twotone=exports.ic_thumbs_up_down_outline=exports.ic_thumbs_up_down=exports.ic_thumb_up_twotone=exports.ic_thumb_up_outline=exports.ic_thumb_up_off_alt=exports.ic_thumb_up_alt_twotone=exports.ic_thumb_up_alt_outline=exports.ic_thumb_up_alt=exports.ic_thumb_up=exports.ic_thumb_down_twotone=exports.ic_thumb_down_outline=exports.ic_thumb_down_off_alt=exports.ic_thumb_down_alt_twotone=exports.ic_thumb_down_alt_outline=exports.ic_thumb_down_alt=exports.ic_thumb_down=exports.ic_thermostat_twotone=exports.ic_thermostat_outline=exports.ic_theaters_twotone=exports.ic_theaters_outline=exports.ic_theaters=exports.ic_theater_comedy=exports.ic_texture_twotone=exports.ic_texture_outline=exports.ic_texture=exports.ic_textsms_twotone=exports.ic_textsms_outline=exports.ic_textsms=exports.ic_text_snippet_twotone=exports.ic_text_snippet_outline=exports.ic_text_snippet=exports.ic_text_rotation_none_twotone=exports.ic_text_rotation_none_outline=exports.ic_text_rotation_none=exports.ic_text_rotation_down_twotone=exports.ic_text_rotation_down_outline=exports.ic_text_rotation_down=exports.ic_text_rotation_angleup_twotone=exports.ic_text_rotation_angleup_outline=exports.ic_text_rotation_angleup=exports.ic_text_rotation_angledown_twotone=exports.ic_text_rotation_angledown_outline=exports.ic_text_rotation_angledown=exports.ic_text_rotate_vertical_twotone=exports.ic_text_rotate_vertical_outline=exports.ic_text_rotate_vertical=exports.ic_text_rotate_up_twotone=exports.ic_text_rotate_up_outline=exports.ic_text_rotate_up=exports.ic_text_format_twotone=exports.ic_text_format_outline=exports.ic_text_format=exports.ic_text_fields_twotone=exports.ic_text_fields_outline=exports.ic_text_fields=exports.ic_terrain_twotone=exports.ic_terrain_outline=exports.ic_terrain=exports.ic_taxi_alert=exports.ic_tapas_twotone=exports.ic_tapas_outline=exports.ic_tapas=exports.ic_tap_and_play_twotone=exports.ic_tap_and_play_outline=exports.ic_tap_and_play=exports.ic_takeout_dining=exports.ic_tag_faces_twotone=exports.ic_tag_faces_outline=exports.ic_tag_faces=exports.ic_tag=exports.ic_tablet_twotone=exports.ic_tablet_outline=exports.ic_tablet_mac_twotone=exports.ic_tablet_mac_outline=exports.ic_tablet_mac=exports.ic_tablet_android_twotone=exports.ic_tablet_android_outline=exports.ic_tablet_android=exports.ic_tablet=exports.ic_table_view_twotone=exports.ic_table_view_outline=exports.ic_table_view=exports.ic_table_rows_twotone=exports.ic_table_rows_outline=exports.ic_table_rows=exports.ic_table_chart_twotone=exports.ic_table_chart_outline=exports.ic_table_chart=exports.ic_tab_unselected_twotone=exports.ic_tab_unselected_outline=exports.ic_tab_unselected=exports.ic_tab_twotone=void 0;exports.ic_tv_outline=exports.ic_tv_off_twotone=exports.ic_tv_off_outline=exports.ic_tv_off=exports.ic_tv=exports.ic_turned_in_twotone=exports.ic_turned_in_outline=exports.ic_turned_in_not_twotone=exports.ic_turned_in_not_outline=exports.ic_turned_in_not=exports.ic_turned_in=exports.ic_tune_twotone=exports.ic_tune_outline=exports.ic_tune=exports.ic_tty_twotone=exports.ic_tty_outline=exports.ic_tty=exports.ic_trip_origin_twotone=exports.ic_trip_origin_outline=exports.ic_trip_origin=exports.ic_trending_up_twotone=exports.ic_trending_up_outline=exports.ic_trending_up=exports.ic_trending_flat_twotone=exports.ic_trending_flat_outline=exports.ic_trending_flat=exports.ic_trending_down_twotone=exports.ic_trending_down_outline=exports.ic_trending_down=exports.ic_translate_twotone=exports.ic_translate_outline=exports.ic_translate=exports.ic_transit_enterexit_twotone=exports.ic_transit_enterexit_outline=exports.ic_transit_enterexit=exports.ic_transform_twotone=exports.ic_transform_outline=exports.ic_transform=exports.ic_transfer_within_a_station_twotone=exports.ic_transfer_within_a_station_outline=exports.ic_transfer_within_a_station=exports.ic_tram_twotone=exports.ic_tram_outline=exports.ic_tram=exports.ic_train_twotone=exports.ic_train_outline=exports.ic_train=exports.ic_traffic_twotone=exports.ic_traffic_outline=exports.ic_traffic=exports.ic_track_changes_twotone=exports.ic_track_changes_outline=exports.ic_track_changes=exports.ic_toys_twotone=exports.ic_toys_outline=exports.ic_toys=exports.ic_tour_twotone=exports.ic_tour_outline=exports.ic_tour=exports.ic_touch_app_twotone=exports.ic_touch_app_outline=exports.ic_touch_app=exports.ic_topic_twotone=exports.ic_topic_outline=exports.ic_topic=exports.ic_tonality_twotone=exports.ic_tonality_outline=exports.ic_tonality=exports.ic_toll_twotone=exports.ic_toll_outline=exports.ic_toll=exports.ic_toggle_on_twotone=exports.ic_toggle_on_outline=exports.ic_toggle_on=exports.ic_toggle_off_twotone=exports.ic_toggle_off_outline=exports.ic_toggle_off=exports.ic_today_twotone=exports.ic_today_outline=exports.ic_today=exports.ic_toc_twotone=exports.ic_toc_outline=exports.ic_toc=exports.ic_title_twotone=exports.ic_title_outline=exports.ic_title=exports.ic_timer_twotone=exports.ic_timer_outline=exports.ic_timer_off_twotone=exports.ic_timer_off_outline=exports.ic_timer_off=exports.ic_timer_3_twotone=exports.ic_timer_3_outline=exports.ic_timer_3=exports.ic_timer_10_twotone=exports.ic_timer_10_outline=exports.ic_timer_10=exports.ic_timer=exports.ic_timeline_twotone=exports.ic_timeline_outline=void 0;exports.ic_view_day_twotone=exports.ic_view_day_outline=exports.ic_view_day=exports.ic_view_compact_twotone=exports.ic_view_compact_outline=exports.ic_view_compact=exports.ic_view_comfy_twotone=exports.ic_view_comfy_outline=exports.ic_view_comfy=exports.ic_view_column_twotone=exports.ic_view_column_outline=exports.ic_view_column=exports.ic_view_carousel_twotone=exports.ic_view_carousel_outline=exports.ic_view_carousel=exports.ic_view_array_twotone=exports.ic_view_array_outline=exports.ic_view_array=exports.ic_view_agenda_twotone=exports.ic_view_agenda_outline=exports.ic_view_agenda=exports.ic_videogame_asset_twotone=exports.ic_videogame_asset_outline=exports.ic_videogame_asset=exports.ic_videocam_twotone=exports.ic_videocam_outline=exports.ic_videocam_off_twotone=exports.ic_videocam_off_outline=exports.ic_videocam_off=exports.ic_videocam=exports.ic_video_settings_twotone=exports.ic_video_settings_outline=exports.ic_video_settings=exports.ic_video_library_twotone=exports.ic_video_library_outline=exports.ic_video_library=exports.ic_video_label_twotone=exports.ic_video_label_outline=exports.ic_video_label=exports.ic_video_call_twotone=exports.ic_video_call_outline=exports.ic_video_call=exports.ic_vibration_twotone=exports.ic_vibration_outline=exports.ic_vibration=exports.ic_vertical_split_twotone=exports.ic_vertical_split_outline=exports.ic_vertical_split=exports.ic_vertical_align_top_twotone=exports.ic_vertical_align_top_outline=exports.ic_vertical_align_top=exports.ic_vertical_align_center_twotone=exports.ic_vertical_align_center_outline=exports.ic_vertical_align_center=exports.ic_vertical_align_bottom_twotone=exports.ic_vertical_align_bottom_outline=exports.ic_vertical_align_bottom=exports.ic_verified_user_twotone=exports.ic_verified_user_outline=exports.ic_verified_user=exports.ic_verified_twotone=exports.ic_verified_outline=exports.ic_verified=exports.ic_usb_twotone=exports.ic_usb_outline=exports.ic_usb=exports.ic_upload_twotone=exports.ic_upload_outline=exports.ic_upload_file=exports.ic_upgrade_twotone=exports.ic_upgrade_outline=exports.ic_upgrade=exports.ic_update_twotone=exports.ic_update_outline=exports.ic_update=exports.ic_unsubscribe_twotone=exports.ic_unsubscribe_outline=exports.ic_unsubscribe=exports.ic_unpublished_twotone=exports.ic_unpublished_outline=exports.ic_unpublished=exports.ic_unfold_more_twotone=exports.ic_unfold_more_outline=exports.ic_unfold_more=exports.ic_unfold_less_twotone=exports.ic_unfold_less_outline=exports.ic_unfold_less=exports.ic_undo_twotone=exports.ic_undo_outline=exports.ic_undo=exports.ic_unarchive_twotone=exports.ic_unarchive_outline=exports.ic_unarchive=exports.ic_umbrella_twotone=exports.ic_umbrella_outline=exports.ic_umbrella=exports.ic_two_wheeler_twotone=exports.ic_two_wheeler_outline=exports.ic_two_wheeler=exports.ic_tv_twotone=void 0;exports.ic_wb_twighlight=exports.ic_wb_sunny_twotone=exports.ic_wb_sunny_outline=exports.ic_wb_sunny=exports.ic_wb_shade=exports.ic_wb_iridescent_twotone=exports.ic_wb_iridescent_outline=exports.ic_wb_iridescent=exports.ic_wb_incandescent_twotone=exports.ic_wb_incandescent_outline=exports.ic_wb_incandescent=exports.ic_wb_cloudy_twotone=exports.ic_wb_cloudy_outline=exports.ic_wb_cloudy=exports.ic_wb_auto_twotone=exports.ic_wb_auto_outline=exports.ic_wb_auto=exports.ic_waves_twotone=exports.ic_waves_outline=exports.ic_waves=exports.ic_waterfall_chart=exports.ic_water_damage_twotone=exports.ic_water_damage_outline=exports.ic_water_damage=exports.ic_watch_twotone=exports.ic_watch_outline=exports.ic_watch_later_twotone=exports.ic_watch_later_outline=exports.ic_watch_later=exports.ic_watch=exports.ic_wash_twotone=exports.ic_wash_outline=exports.ic_wash=exports.ic_warning_twotone=exports.ic_warning_outline=exports.ic_warning_amber_twotone=exports.ic_warning_amber_outline=exports.ic_warning=exports.ic_wallpaper_twotone=exports.ic_wallpaper_outline=exports.ic_wallpaper=exports.ic_vpn_lock_twotone=exports.ic_vpn_lock_outline=exports.ic_vpn_lock=exports.ic_vpn_key_twotone=exports.ic_vpn_key_outline=exports.ic_vpn_key=exports.ic_volunteer_activism=exports.ic_volume_up_twotone=exports.ic_volume_up_outline=exports.ic_volume_up=exports.ic_volume_off_twotone=exports.ic_volume_off_outline=exports.ic_volume_off=exports.ic_volume_mute_twotone=exports.ic_volume_mute_outline=exports.ic_volume_mute=exports.ic_volume_down_twotone=exports.ic_volume_down_outline=exports.ic_volume_down=exports.ic_voicemail_twotone=exports.ic_voicemail_outline=exports.ic_voicemail=exports.ic_voice_over_off_twotone=exports.ic_voice_over_off_outline=exports.ic_voice_over_off=exports.ic_voice_chat_twotone=exports.ic_voice_chat_outline=exports.ic_voice_chat=exports.ic_visibility_twotone=exports.ic_visibility_outline=exports.ic_visibility_off_twotone=exports.ic_visibility_off_outline=exports.ic_visibility_off=exports.ic_visibility=exports.ic_vignette_twotone=exports.ic_vignette_outline=exports.ic_vignette=exports.ic_view_week_twotone=exports.ic_view_week_outline=exports.ic_view_week=exports.ic_view_stream_twotone=exports.ic_view_stream_outline=exports.ic_view_stream=exports.ic_view_sidebar_twotone=exports.ic_view_sidebar_outline=exports.ic_view_sidebar=exports.ic_view_quilt_twotone=exports.ic_view_quilt_outline=exports.ic_view_quilt=exports.ic_view_module_twotone=exports.ic_view_module_outline=exports.ic_view_module=exports.ic_view_list_twotone=exports.ic_view_list_outline=exports.ic_view_list=exports.ic_view_in_ar=exports.ic_view_headline_twotone=exports.ic_view_headline_outline=exports.ic_view_headline=void 0;exports.ic_zoom_out_twotone=exports.ic_zoom_out_outline=exports.ic_zoom_out_map_twotone=exports.ic_zoom_out_map_outline=exports.ic_zoom_out_map=exports.ic_zoom_out=exports.ic_zoom_in_twotone=exports.ic_zoom_in_outline=exports.ic_zoom_in=exports.ic_youtube_searched_for_twotone=exports.ic_youtube_searched_for_outline=exports.ic_youtube_searched_for=exports.ic_wysiwyg_twotone=exports.ic_wysiwyg_outline=exports.ic_wysiwyg=exports.ic_wrong_location_twotone=exports.ic_wrong_location_outline=exports.ic_wrong_location=exports.ic_wrap_text_twotone=exports.ic_wrap_text_outline=exports.ic_wrap_text=exports.ic_workspaces_outline=exports.ic_workspaces_filled=exports.ic_work_twotone=exports.ic_work_outline_twotone=exports.ic_work_outline_outline=exports.ic_work_outline=exports.ic_work_off_twotone=exports.ic_work_off_outline=exports.ic_work_off=exports.ic_work=exports.ic_wine_bar_twotone=exports.ic_wine_bar_outline=exports.ic_wine_bar=exports.ic_wifi_twotone=exports.ic_wifi_tethering_twotone=exports.ic_wifi_tethering_outline=exports.ic_wifi_tethering=exports.ic_wifi_protected_setup_twotone=exports.ic_wifi_protected_setup_outline=exports.ic_wifi_protected_setup=exports.ic_wifi_outline=exports.ic_wifi_off_twotone=exports.ic_wifi_off_outline=exports.ic_wifi_off=exports.ic_wifi_lock_twotone=exports.ic_wifi_lock_outline=exports.ic_wifi_lock=exports.ic_wifi_calling_twotone=exports.ic_wifi_calling_outline=exports.ic_wifi_calling=exports.ic_wifi=exports.ic_widgets_twotone=exports.ic_widgets_outline=exports.ic_widgets=exports.ic_where_to_vote_twotone=exports.ic_where_to_vote_outline=exports.ic_where_to_vote=exports.ic_wheelchair_pickup_twotone=exports.ic_wheelchair_pickup_outline=exports.ic_wheelchair_pickup=exports.ic_whatshot_twotone=exports.ic_whatshot_outline=exports.ic_whatshot=exports.ic_west_twotone=exports.ic_west_outline=exports.ic_west=exports.ic_weekend_twotone=exports.ic_weekend_outline=exports.ic_weekend=exports.ic_web_twotone=exports.ic_web_outline=exports.ic_web_asset_twotone=exports.ic_web_asset_outline=exports.ic_web_asset=exports.ic_web=exports.ic_wc_twotone=exports.ic_wc_outline=exports.ic_wc=void 0;var ic_3d_rotation={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7.52 21.48C4.25 19.94 1.91 16.76 1.55 13H.05C.56 19.16 5.71 24 12 24l.66-.03-3.81-3.81-1.33 1.32zm.89-6.52c-.19 0-.37-.03-.52-.08-.16-.06-.29-.13-.4-.24-.11-.1-.2-.22-.26-.37-.06-.14-.09-.3-.09-.47h-1.3c0 .36.07.68.21.95.14.27.33.5.56.69.24.18.51.32.82.41.3.1.62.15.96.15.37 0 .72-.05 1.03-.15.32-.1.6-.25.83-.44s.42-.43.55-.72c.13-.29.2-.61.2-.97 0-.19-.02-.38-.07-.56-.05-.18-.12-.35-.23-.51-.1-.16-.24-.3-.4-.43-.17-.13-.37-.23-.61-.31.2-.09.37-.2.52-.33.15-.13.27-.27.37-.42.1-.15.17-.3.22-.46.05-.16.07-.32.07-.48 0-.36-.06-.68-.18-.96-.12-.28-.29-.51-.51-.69-.2-.19-.47-.33-.77-.43C9.1 8.05 8.76 8 8.39 8c-.36 0-.69.05-1 .16-.3.11-.57.26-.79.45-.21.19-.38.41-.51.67-.12.26-.18.54-.18.85h1.3c0-.17.03-.32.09-.45s.14-.25.25-.34c.11-.09.23-.17.38-.22.15-.05.3-.08.48-.08.4 0 .7.1.89.31.19.2.29.49.29.86 0 .18-.03.34-.08.49-.05.15-.14.27-.25.37-.11.1-.25.18-.41.24-.16.06-.36.09-.58.09H7.5v1.03h.77c.22 0 .42.02.6.07s.33.13.45.23c.12.11.22.24.29.4.07.16.1.35.1.57 0 .41-.12.72-.35.93-.23.23-.55.33-.95.33zm8.55-5.92c-.32-.33-.7-.59-1.14-.77-.43-.18-.92-.27-1.46-.27H12v8h2.3c.55 0 1.06-.09 1.51-.27.45-.18.84-.43 1.16-.76.32-.33.57-.73.74-1.19.17-.47.26-.99.26-1.57v-.4c0-.58-.09-1.1-.26-1.57-.18-.47-.43-.87-.75-1.2zm-.39 3.16c0 .42-.05.79-.14 1.13-.1.33-.24.62-.43.85-.19.23-.43.41-.71.53-.29.12-.62.18-.99.18h-.91V9.12h.97c.72 0 1.27.23 1.64.69.38.46.57 1.12.57 1.99v.4zM12 0l-.66.03 3.81 3.81 1.33-1.33c3.27 1.55 5.61 4.72 5.96 8.48h1.5C23.44 4.84 18.29 0 12 0z"},"children":[]}]};exports.ic_3d_rotation=ic_3d_rotation;var ic_3d_rotation_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7.53 21.48C4.26 19.94 1.92 16.76 1.56 13H.06c.51 6.16 5.66 11 11.95 11l.66-.03-3.81-3.81-1.33 1.32zm.89-6.52c-.19 0-.37-.03-.52-.08-.16-.06-.29-.13-.4-.24-.11-.1-.2-.22-.26-.37-.06-.14-.09-.3-.09-.47h-1.3c0 .36.07.68.21.95.14.27.33.5.56.69.24.18.51.32.82.41.3.1.62.15.96.15.37 0 .72-.05 1.03-.15.32-.1.6-.25.83-.44s.42-.43.55-.72.2-.61.2-.97c0-.19-.02-.38-.07-.56-.05-.18-.12-.35-.23-.51-.1-.16-.24-.3-.4-.43-.17-.13-.37-.23-.61-.31.2-.09.37-.2.52-.33.15-.13.27-.27.37-.42.1-.15.17-.3.22-.46s.07-.32.07-.48c0-.36-.06-.68-.18-.96s-.29-.51-.51-.69c-.2-.19-.47-.33-.77-.43C9.11 8.05 8.77 8 8.4 8c-.36 0-.69.05-1 .16-.3.11-.57.26-.79.45-.21.19-.38.41-.51.67-.12.26-.18.54-.18.85h1.3c0-.17.03-.32.09-.45s.14-.25.25-.34.23-.17.38-.22.3-.08.48-.08c.4 0 .7.1.89.31.19.2.29.49.29.86 0 .18-.03.34-.08.49s-.14.27-.25.37c-.11.1-.25.18-.41.24-.16.06-.36.09-.58.09h-.77v1.03h.77c.22 0 .42.02.6.07s.33.13.45.23c.12.11.22.24.29.4s.1.35.1.57c0 .41-.12.72-.35.93-.23.23-.55.33-.95.33zm8.55-5.92c-.32-.33-.7-.59-1.14-.77-.44-.18-.93-.27-1.47-.27H12v8h2.3c.55 0 1.06-.09 1.51-.27s.84-.43 1.16-.76c.32-.33.57-.73.74-1.19.17-.47.26-.99.26-1.57v-.4c0-.58-.09-1.1-.26-1.57s-.42-.87-.74-1.2zm-.39 3.16c0 .42-.05.79-.14 1.13-.1.33-.24.62-.43.85-.19.23-.43.41-.71.53-.29.12-.62.18-.99.18h-.91V9.12h.97c.72 0 1.27.23 1.64.69.38.46.57 1.12.57 1.99v.4zM12.01 0l-.66.03 3.81 3.81 1.33-1.33c3.27 1.55 5.61 4.72 5.96 8.48h1.5C23.45 4.84 18.3 0 12.01 0z"},"children":[]}]};exports.ic_3d_rotation_outline=ic_3d_rotation_outline;var ic_3d_rotation_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7.53 21.48C4.26 19.94 1.92 16.76 1.56 13H.06c.51 6.16 5.66 11 11.95 11l.66-.03-3.81-3.81-1.33 1.32zm.89-6.52c-.19 0-.37-.03-.52-.08-.16-.06-.29-.13-.4-.24-.11-.1-.2-.22-.26-.37-.06-.14-.09-.3-.09-.47h-1.3c0 .36.07.68.21.95.14.27.33.5.56.69.24.18.51.32.82.41.3.1.62.15.96.15.37 0 .72-.05 1.03-.15.32-.1.6-.25.83-.44s.42-.43.55-.72.2-.61.2-.97c0-.19-.02-.38-.07-.56-.05-.18-.12-.35-.23-.51-.1-.16-.24-.3-.4-.43-.17-.13-.37-.23-.61-.31.2-.09.37-.2.52-.33.15-.13.27-.27.37-.42.1-.15.17-.3.22-.46s.07-.32.07-.48c0-.36-.06-.68-.18-.96s-.29-.51-.51-.69c-.2-.19-.47-.33-.77-.43C9.11 8.05 8.77 8 8.4 8c-.36 0-.69.05-1 .16-.3.11-.57.26-.79.45-.21.19-.38.41-.51.67-.12.26-.18.54-.18.85h1.3c0-.17.03-.32.09-.45s.14-.25.25-.34.23-.17.38-.22.3-.08.48-.08c.4 0 .7.1.89.31.19.2.29.49.29.86 0 .18-.03.34-.08.49s-.14.27-.25.37c-.11.1-.25.18-.41.24-.16.06-.36.09-.58.09h-.77v1.03h.77c.22 0 .42.02.6.07s.33.13.45.23c.12.11.22.24.29.4s.1.35.1.57c0 .41-.12.72-.35.93-.23.23-.55.33-.95.33zm8.55-5.92c-.32-.33-.7-.59-1.14-.77-.44-.18-.93-.27-1.47-.27H12v8h2.3c.55 0 1.06-.09 1.51-.27s.84-.43 1.16-.76c.32-.33.57-.73.74-1.19.17-.47.26-.99.26-1.57v-.4c0-.58-.09-1.1-.26-1.57s-.42-.87-.74-1.2zm-.39 3.16c0 .42-.05.79-.14 1.13-.1.33-.24.62-.43.85-.19.23-.43.41-.71.53-.29.12-.62.18-.99.18h-.91V9.12h.97c.72 0 1.27.23 1.64.69.38.46.57 1.12.57 1.99v.4zM12.01 0l-.66.03 3.81 3.81 1.33-1.33c3.27 1.55 5.61 4.72 5.96 8.48h1.5C23.45 4.84 18.3 0 12.01 0z"},"children":[]}]};exports.ic_3d_rotation_twotone=ic_3d_rotation_twotone;var ic_accessibility={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm9 7h-6v13h-2v-6h-2v6H9V9H3V7h18v2z"},"children":[]}]};exports.ic_accessibility=ic_accessibility;var ic_accessibility_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm9 7h-6v13h-2v-6h-2v6H9V9H3V7h18v2z"},"children":[]}]};exports.ic_accessibility_outline=ic_accessibility_outline;var ic_accessibility_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm9 7h-6v13h-2v-6h-2v6H9V9H3V7h18v2z"},"children":[]}]};exports.ic_accessibility_twotone=ic_accessibility_twotone;var ic_accessibility_new={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20.5 6c-2.61.7-5.67 1-8.5 1s-5.89-.3-8.5-1L3 8c1.86.5 4 .83 6 1v13h2v-6h2v6h2V9c2-.17 4.14-.5 6-1l-.5-2zM12 6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z"},"children":[]}]};exports.ic_accessibility_new=ic_accessibility_new;var ic_accessibility_new_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20.5 6c-2.61.7-5.67 1-8.5 1s-5.89-.3-8.5-1L3 8c1.86.5 4 .83 6 1v13h2v-6h2v6h2V9c2-.17 4.14-.5 6-1l-.5-2zM12 6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z"},"children":[]}]};exports.ic_accessibility_new_outline=ic_accessibility_new_outline;var ic_accessibility_new_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20.5 6c-2.61.7-5.67 1-8.5 1s-5.89-.3-8.5-1L3 8c1.86.5 4 .83 6 1v13h2v-6h2v6h2V9c2-.17 4.14-.5 6-1l-.5-2zM12 6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z"},"children":[]}]};exports.ic_accessibility_new_twotone=ic_accessibility_new_twotone;var ic_accessible={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"12","cy":"4","r":"2"},"children":[]},{"name":"path","attribs":{"d":"M19 13v-2c-1.54.02-3.09-.75-4.07-1.83l-1.29-1.43c-.17-.19-.38-.34-.61-.45-.01 0-.01-.01-.02-.01H13c-.35-.2-.75-.3-1.19-.26C10.76 7.11 10 8.04 10 9.09V15c0 1.1.9 2 2 2h5v5h2v-5.5c0-1.1-.9-2-2-2h-3v-3.45c1.29 1.07 3.25 1.94 5 1.95zm-6.17 5c-.41 1.16-1.52 2-2.83 2-1.66 0-3-1.34-3-3 0-1.31.84-2.41 2-2.83V12.1c-2.28.46-4 2.48-4 4.9 0 2.76 2.24 5 5 5 2.42 0 4.44-1.72 4.9-4h-2.07z"},"children":[]}]};exports.ic_accessible=ic_accessible;var ic_accessible_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"12","cy":"4","r":"2"},"children":[]},{"name":"path","attribs":{"d":"M19 13v-2c-1.54.02-3.09-.75-4.07-1.83l-1.29-1.43c-.17-.19-.38-.34-.61-.45-.01 0-.01-.01-.02-.01H13c-.35-.2-.75-.3-1.19-.26C10.76 7.11 10 8.04 10 9.09V15c0 1.1.9 2 2 2h5v5h2v-5.5c0-1.1-.9-2-2-2h-3v-3.45c1.29 1.07 3.25 1.94 5 1.95zm-9 7c-1.66 0-3-1.34-3-3 0-1.31.84-2.41 2-2.83V12.1c-2.28.46-4 2.48-4 4.9 0 2.76 2.24 5 5 5 2.42 0 4.44-1.72 4.9-4h-2.07c-.41 1.16-1.52 2-2.83 2z"},"children":[]}]};exports.ic_accessible_outline=ic_accessible_outline;var ic_accessible_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"12","cy":"4","r":"2"},"children":[]},{"name":"path","attribs":{"d":"M19 13v-2c-1.54.02-3.09-.75-4.07-1.83l-1.29-1.43c-.17-.19-.38-.34-.61-.45-.01 0-.01-.01-.02-.01H13c-.35-.2-.75-.3-1.19-.26C10.76 7.11 10 8.04 10 9.09V15c0 1.1.9 2 2 2h5v5h2v-5.5c0-1.1-.9-2-2-2h-3v-3.45c1.29 1.07 3.25 1.94 5 1.95zm-6.17 5c-.41 1.16-1.52 2-2.83 2-1.66 0-3-1.34-3-3 0-1.31.84-2.41 2-2.83V12.1c-2.28.46-4 2.48-4 4.9 0 2.76 2.24 5 5 5 2.42 0 4.44-1.72 4.9-4h-2.07z"},"children":[]}]};exports.ic_accessible_twotone=ic_accessible_twotone;var ic_accessible_forward={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"17","cy":"4.54","r":"2"},"children":[]},{"name":"path","attribs":{"d":"M14 17h-2c0 1.65-1.35 3-3 3s-3-1.35-3-3 1.35-3 3-3v-2c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5zm3-3.5h-1.86l1.67-3.67C17.42 8.5 16.44 7 14.96 7h-5.2c-.81 0-1.54.47-1.87 1.2L7.22 10l1.92.53L9.79 9H12l-1.83 4.1c-.6 1.33.39 2.9 1.85 2.9H17v5h2v-5.5c0-1.1-.9-2-2-2z"},"children":[]}]};exports.ic_accessible_forward=ic_accessible_forward;var ic_accessible_forward_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"18","cy":"4.54","r":"2"},"children":[]},{"name":"path","attribs":{"d":"M15 17h-2c0 1.65-1.35 3-3 3s-3-1.35-3-3 1.35-3 3-3v-2c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5zm3-3.5h-1.86l1.67-3.67C18.42 8.5 17.44 7 15.96 7h-5.2c-.81 0-1.54.47-1.87 1.2L8.22 10l1.92.53.65-1.53H13l-1.83 4.1c-.6 1.33.39 2.9 1.85 2.9H18v5h2v-5.5c0-1.1-.9-2-2-2z"},"children":[]}]};exports.ic_accessible_forward_outline=ic_accessible_forward_outline;var ic_accessible_forward_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"18","cy":"4.54","r":"2"},"children":[]},{"name":"path","attribs":{"d":"M15 17h-2c0 1.65-1.35 3-3 3s-3-1.35-3-3 1.35-3 3-3v-2c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5zm3-3.5h-1.86l1.67-3.67C18.42 8.5 17.44 7 15.96 7h-5.2c-.81 0-1.54.47-1.87 1.2L8.22 10l1.92.53.65-1.53H13l-1.83 4.1c-.6 1.33.39 2.9 1.85 2.9H18v5h2v-5.5c0-1.1-.9-2-2-2z"},"children":[]}]};exports.ic_accessible_forward_twotone=ic_accessible_forward_twotone;var ic_account_balance={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"height":"7","width":"3","x":"4","y":"10"},"children":[{"name":"rect","attribs":{"height":"7","width":"3","x":"4","y":"10"},"children":[]}]},{"name":"rect","attribs":{"height":"7","width":"3","x":"10.5","y":"10"},"children":[{"name":"rect","attribs":{"height":"7","width":"3","x":"10.5","y":"10"},"children":[]}]},{"name":"rect","attribs":{"height":"3","width":"20","x":"2","y":"19"},"children":[{"name":"rect","attribs":{"height":"3","width":"20","x":"2","y":"19"},"children":[]}]},{"name":"rect","attribs":{"height":"7","width":"3","x":"17","y":"10"},"children":[{"name":"rect","attribs":{"height":"7","width":"3","x":"17","y":"10"},"children":[]}]},{"name":"polygon","attribs":{"points":"12,1 2,6 2,8 22,8 22,6"},"children":[{"name":"polygon","attribs":{"points":"12,1 2,6 2,8 22,8 22,6"},"children":[]}]}]}]}]}]};exports.ic_account_balance=ic_account_balance;var ic_account_balance_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6.5 10h-2v7h2v-7zm6 0h-2v7h2v-7zm8.5 9H2v2h19v-2zm-2.5-9h-2v7h2v-7zm-7-6.74L16.71 6H6.29l5.21-2.74m0-2.26L2 6v2h19V6l-9.5-5z"},"children":[]}]};exports.ic_account_balance_outline=ic_account_balance_outline;var ic_account_balance_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6.29 6l5.21-2.74L16.71 6z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M6.5 10h-2v7h2v-7zm6 0h-2v7h2v-7zm8.5 9H2v2h19v-2zm-2.5-9h-2v7h2v-7zm-7-9L2 6v2h19V6l-9.5-5zM6.29 6l5.21-2.74L16.71 6H6.29z"},"children":[]}]};exports.ic_account_balance_twotone=ic_account_balance_twotone;var ic_account_balance_wallet={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 18v1c0 1.1-.9 2-2 2H5c-1.11 0-2-.9-2-2V5c0-1.1.89-2 2-2h14c1.1 0 2 .9 2 2v1h-9c-1.11 0-2 .9-2 2v8c0 1.1.89 2 2 2h9zm-9-2h10V8H12v8zm4-2.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z"},"children":[]}]};exports.ic_account_balance_wallet=ic_account_balance_wallet;var ic_account_balance_wallet_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 7.28V5c0-1.1-.9-2-2-2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2v-2.28c.59-.35 1-.98 1-1.72V9c0-.74-.41-1.37-1-1.72zM20 9v6h-7V9h7zM5 19V5h14v2h-6c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h6v2H5z"},"children":[]},{"name":"circle","attribs":{"cx":"16","cy":"12","r":"1.5"},"children":[]}]};exports.ic_account_balance_wallet_outline=ic_account_balance_wallet_outline;var ic_account_balance_wallet_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13 17c-1.1 0-2-.9-2-2V9c0-1.1.9-2 2-2h6V5H5v14h14v-2h-6z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M21 7.28V5c0-1.1-.9-2-2-2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2v-2.28c.59-.35 1-.98 1-1.72V9c0-.74-.41-1.38-1-1.72zM20 9v6h-7V9h7zM5 19V5h14v2h-6c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h6v2H5z"},"children":[]},{"name":"circle","attribs":{"cx":"16","cy":"12","r":"1.5"},"children":[]}]};exports.ic_account_balance_wallet_twotone=ic_account_balance_wallet_twotone;var ic_account_box={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 5v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.11 0-2 .9-2 2zm12 4c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3 3 1.34 3 3zm-9 8c0-2 4-3.1 6-3.1s6 1.1 6 3.1v1H6v-1z"},"children":[]}]};exports.ic_account_box=ic_account_box;var ic_account_box_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 5v14H5V5h14m0-2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 9c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3zm0-4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm6 10H6v-1.53c0-2.5 3.97-3.58 6-3.58s6 1.08 6 3.58V18zm-9.69-2h7.38c-.69-.56-2.38-1.12-3.69-1.12s-3.01.56-3.69 1.12z"},"children":[]}]};exports.ic_account_box_outline=ic_account_box_outline;var ic_account_box_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 19h14V5H5v14zm7-13c1.65 0 3 1.35 3 3s-1.35 3-3 3-3-1.35-3-3 1.35-3 3-3zM6 16.47c0-2.5 3.97-3.58 6-3.58s6 1.08 6 3.58V18H6v-1.53z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 12c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm7-5H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-1-2.53c0-2.5-3.97-3.58-6-3.58s-6 1.08-6 3.58V18h12v-1.53zM8.31 16c.69-.56 2.38-1.12 3.69-1.12s3.01.56 3.69 1.12H8.31z"},"children":[]}]};exports.ic_account_box_twotone=ic_account_box_twotone;var ic_account_circle={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 3c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm0 14.2c-2.5 0-4.71-1.28-6-3.22.03-1.99 4-3.08 6-3.08 1.99 0 5.97 1.09 6 3.08-1.29 1.94-3.5 3.22-6 3.22z"},"children":[]}]};exports.ic_account_circle=ic_account_circle;var ic_account_circle_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM7.07 18.28c.43-.9 3.05-1.78 4.93-1.78s4.51.88 4.93 1.78C15.57 19.36 13.86 20 12 20s-3.57-.64-4.93-1.72zm11.29-1.45c-1.43-1.74-4.9-2.33-6.36-2.33s-4.93.59-6.36 2.33C4.62 15.49 4 13.82 4 12c0-4.41 3.59-8 8-8s8 3.59 8 8c0 1.82-.62 3.49-1.64 4.83zM12 6c-1.94 0-3.5 1.56-3.5 3.5S10.06 13 12 13s3.5-1.56 3.5-3.5S13.94 6 12 6zm0 5c-.83 0-1.5-.67-1.5-1.5S11.17 8 12 8s1.5.67 1.5 1.5S12.83 11 12 11z"},"children":[]}]};exports.ic_account_circle_outline=ic_account_circle_outline;var ic_account_circle_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 4c-4.41 0-8 3.59-8 8 0 1.82.62 3.49 1.64 4.83 1.43-1.74 4.9-2.33 6.36-2.33s4.93.59 6.36 2.33C19.38 15.49 20 13.82 20 12c0-4.41-3.59-8-8-8zm0 9c-1.94 0-3.5-1.56-3.5-3.5S10.06 6 12 6s3.5 1.56 3.5 3.5S13.94 13 12 13z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM7.07 18.28c.43-.9 3.05-1.78 4.93-1.78s4.51.88 4.93 1.78C15.57 19.36 13.86 20 12 20s-3.57-.64-4.93-1.72zm11.29-1.45c-1.43-1.74-4.9-2.33-6.36-2.33s-4.93.59-6.36 2.33C4.62 15.49 4 13.82 4 12c0-4.41 3.59-8 8-8s8 3.59 8 8c0 1.82-.62 3.49-1.64 4.83zM12 6c-1.94 0-3.5 1.56-3.5 3.5S10.06 13 12 13s3.5-1.56 3.5-3.5S13.94 6 12 6zm0 5c-.83 0-1.5-.67-1.5-1.5S11.17 8 12 8s1.5.67 1.5 1.5S12.83 11 12 11z"},"children":[]}]};exports.ic_account_circle_twotone=ic_account_circle_twotone;var ic_add_shopping_cart={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0zm18.31 6l-2.76 5z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11 9h2V6h3V4h-3V1h-2v3H8v2h3v3zm-4 9c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2zm-9.83-3.25l.03-.12.9-1.63h7.45c.75 0 1.41-.41 1.75-1.03l3.86-7.01L19.42 4h-.01l-1.1 2-2.76 5H8.53l-.13-.27L6.16 6l-.95-2-.94-2H1v2h2l3.6 7.59-1.35 2.45c-.16.28-.25.61-.25.96 0 1.1.9 2 2 2h12v-2H7.42c-.13 0-.25-.11-.25-.25z"},"children":[]}]};exports.ic_add_shopping_cart=ic_add_shopping_cart;var ic_add_shopping_cart_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11 9h2V6h3V4h-3V1h-2v3H8v2h3v3zm-4 9c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2zm-8.9-5h7.45c.75 0 1.41-.41 1.75-1.03l3.86-7.01L19.42 4l-3.87 7H8.53L4.27 2H1v2h2l3.6 7.59-1.35 2.44C4.52 15.37 5.48 17 7 17h12v-2H7l1.1-2z"},"children":[]}]};exports.ic_add_shopping_cart_outline=ic_add_shopping_cart_outline;var ic_add_shopping_cart_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11 9h2V6h3V4h-3V1h-2v3H8v2h3v3zm-4 9c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2zm-8.9-5h7.45c.75 0 1.41-.41 1.75-1.03l3.86-7.01L19.41 4l-3.86 7H8.53L4.27 2H1v2h2l3.6 7.59-1.35 2.44C4.52 15.37 5.48 17 7 17h12v-2H7l1.1-2z"},"children":[]}]};exports.ic_add_shopping_cart_twotone=ic_add_shopping_cart_twotone;var ic_add_task={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M22,5.18L10.59,16.6l-4.24-4.24l1.41-1.41l2.83,2.83l10-10L22,5.18z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8 c1.57,0,3.04,0.46,4.28,1.25l1.45-1.45C16.1,2.67,14.13,2,12,2C6.48,2,2,6.48,2,12s4.48,10,10,10c1.73,0,3.36-0.44,4.78-1.22 l-1.5-1.5C14.28,19.74,13.17,20,12,20z M19,15h-3v2h3v3h2v-3h3v-2h-3v-3h-2V15z"},"children":[]}]};exports.ic_add_task=ic_add_task;var ic_add_task_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M22,5.18L10.59,16.6l-4.24-4.24l1.41-1.41l2.83,2.83l10-10L22,5.18z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8 c1.57,0,3.04,0.46,4.28,1.25l1.45-1.45C16.1,2.67,14.13,2,12,2C6.48,2,2,6.48,2,12s4.48,10,10,10c1.73,0,3.36-0.44,4.78-1.22 l-1.5-1.5C14.28,19.74,13.17,20,12,20z M19,15h-3v2h3v3h2v-3h3v-2h-3v-3h-2V15z"},"children":[]}]};exports.ic_add_task_outline=ic_add_task_outline;var ic_add_task_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M22,5.18L10.59,16.6l-4.24-4.24l1.41-1.41l2.83,2.83l10-10L22,5.18z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8 c1.57,0,3.04,0.46,4.28,1.25l1.45-1.45C16.1,2.67,14.13,2,12,2C6.48,2,2,6.48,2,12s4.48,10,10,10c1.73,0,3.36-0.44,4.78-1.22 l-1.5-1.5C14.28,19.74,13.17,20,12,20z M19,15h-3v2h3v3h2v-3h3v-2h-3v-3h-2V15z"},"children":[]}]};exports.ic_add_task_twotone=ic_add_task_twotone;var ic_add_to_drive={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7.71 3.52L1.15 15l3.42 5.99 6.56-11.47-3.42-6zM13.35 15H9.73L6.3 21h8.24c-.96-1.06-1.54-2.46-1.54-4 0-.7.13-1.37.35-2zM20 16v-3h-2v3h-3v2h3v3h2v-3h3v-2h-3zm.71-4.75L15.42 2H8.58v.01l6.15 10.77C15.82 11.68 17.33 11 19 11c.59 0 1.17.09 1.71.25z"},"children":[]}]};exports.ic_add_to_drive=ic_add_to_drive;var ic_addchart={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 5v2h-3v3h-2V7h-3V5h3V2h2v3h3zm-3 14H5V5h6V3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-6h-2v6zm-4-6v4h2v-4h-2zm-4 4h2V9h-2v8zm-2 0v-6H7v6h2z"},"children":[]}]};exports.ic_addchart=ic_addchart;var ic_addchart_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M22,5v2h-3v3h-2V7h-3V5h3V2h2v3H22z M19,19H5V5h6V3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2v-6h-2V19z M15,13v4h2v-4H15z M11,17h2V9h-2V17z M9,17v-6H7v6H9z"},"children":[{"name":"path","attribs":{"d":"M22,5v2h-3v3h-2V7h-3V5h3V2h2v3H22z M19,19H5V5h6V3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2v-6h-2V19z M15,13v4h2v-4H15z M11,17h2V9h-2V17z M9,17v-6H7v6H9z"},"children":[]}]}]}]};exports.ic_addchart_outline=ic_addchart_outline;var ic_addchart_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M22,5v2h-3v3h-2V7h-3V5h3V2h2v3H22z M19,19H5V5h6V3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2v-6h-2V19z M15,13v4h2v-4H15z M11,17h2V9h-2V17z M9,17v-6H7v6H9z"},"children":[{"name":"path","attribs":{"d":"M22,5v2h-3v3h-2V7h-3V5h3V2h2v3H22z M19,19H5V5h6V3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2v-6h-2V19z M15,13v4h2v-4H15z M11,17h2V9h-2V17z M9,17v-6H7v6H9z"},"children":[]}]}]}]};exports.ic_addchart_twotone=ic_addchart_twotone;var ic_admin_panel_settings={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M17,11c0.34,0,0.67,0.04,1,0.09V6.27L10.5,3L3,6.27v4.91c0,4.54,3.2,8.79,7.5,9.82c0.55-0.13,1.08-0.32,1.6-0.55 C11.41,19.47,11,18.28,11,17C11,13.69,13.69,11,17,11z"},"children":[{"name":"path","attribs":{"d":"M17,11c0.34,0,0.67,0.04,1,0.09V6.27L10.5,3L3,6.27v4.91c0,4.54,3.2,8.79,7.5,9.82c0.55-0.13,1.08-0.32,1.6-0.55 C11.41,19.47,11,18.28,11,17C11,13.69,13.69,11,17,11z"},"children":[]}]},{"name":"path","attribs":{"d":"M17,13c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C21,14.79,19.21,13,17,13z M17,14.38c0.62,0,1.12,0.51,1.12,1.12 s-0.51,1.12-1.12,1.12s-1.12-0.51-1.12-1.12S16.38,14.38,17,14.38z M17,19.75c-0.93,0-1.74-0.46-2.24-1.17 c0.05-0.72,1.51-1.08,2.24-1.08s2.19,0.36,2.24,1.08C18.74,19.29,17.93,19.75,17,19.75z"},"children":[{"name":"path","attribs":{"d":"M17,13c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C21,14.79,19.21,13,17,13z M17,14.38c0.62,0,1.12,0.51,1.12,1.12 s-0.51,1.12-1.12,1.12s-1.12-0.51-1.12-1.12S16.38,14.38,17,14.38z M17,19.75c-0.93,0-1.74-0.46-2.24-1.17 c0.05-0.72,1.51-1.08,2.24-1.08s2.19,0.36,2.24,1.08C18.74,19.29,17.93,19.75,17,19.75z"},"children":[]}]}]}]}]}]};exports.ic_admin_panel_settings=ic_admin_panel_settings;var ic_admin_panel_settings_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"cx":"17","cy":"15.5","fill-rule":"evenodd","r":"1.12"},"children":[{"name":"circle","attribs":{"cx":"17","cy":"15.5","fill-rule":"evenodd","r":"1.12"},"children":[]}]},{"name":"path","attribs":{"d":"M17,17.5c-0.73,0-2.19,0.36-2.24,1.08c0.5,0.71,1.32,1.17,2.24,1.17 s1.74-0.46,2.24-1.17C19.19,17.86,17.73,17.5,17,17.5z","fill-rule":"evenodd"},"children":[{"name":"path","attribs":{"d":"M17,17.5c-0.73,0-2.19,0.36-2.24,1.08c0.5,0.71,1.32,1.17,2.24,1.17 s1.74-0.46,2.24-1.17C19.19,17.86,17.73,17.5,17,17.5z","fill-rule":"evenodd"},"children":[]}]},{"name":"path","attribs":{"d":"M18,11.09V6.27L10.5,3L3,6.27v4.91c0,4.54,3.2,8.79,7.5,9.82 c0.55-0.13,1.08-0.32,1.6-0.55C13.18,21.99,14.97,23,17,23c3.31,0,6-2.69,6-6C23,14.03,20.84,11.57,18,11.09z M11,17 c0,0.56,0.08,1.11,0.23,1.62c-0.24,0.11-0.48,0.22-0.73,0.3c-3.17-1-5.5-4.24-5.5-7.74v-3.6l5.5-2.4l5.5,2.4v3.51 C13.16,11.57,11,14.03,11,17z M17,21c-2.21,0-4-1.79-4-4c0-2.21,1.79-4,4-4s4,1.79,4,4C21,19.21,19.21,21,17,21z","fill-rule":"evenodd"},"children":[{"name":"path","attribs":{"d":"M18,11.09V6.27L10.5,3L3,6.27v4.91c0,4.54,3.2,8.79,7.5,9.82 c0.55-0.13,1.08-0.32,1.6-0.55C13.18,21.99,14.97,23,17,23c3.31,0,6-2.69,6-6C23,14.03,20.84,11.57,18,11.09z M11,17 c0,0.56,0.08,1.11,0.23,1.62c-0.24,0.11-0.48,0.22-0.73,0.3c-3.17-1-5.5-4.24-5.5-7.74v-3.6l5.5-2.4l5.5,2.4v3.51 C13.16,11.57,11,14.03,11,17z M17,21c-2.21,0-4-1.79-4-4c0-2.21,1.79-4,4-4s4,1.79,4,4C21,19.21,19.21,21,17,21z","fill-rule":"evenodd"},"children":[]}]}]}]}]}]};exports.ic_admin_panel_settings_outline=ic_admin_panel_settings_outline;var ic_admin_panel_settings_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M16,7.58l-5.5-2.4L5,7.58v3.6c0,3.5,2.33,6.74,5.5,7.74c0.25-0.08,0.49-0.2,0.73-0.3 C11.08,18.11,11,17.56,11,17c0-2.97,2.16-5.43,5-5.91V7.58z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M16,7.58l-5.5-2.4L5,7.58v3.6c0,3.5,2.33,6.74,5.5,7.74c0.25-0.08,0.49-0.2,0.73-0.3 C11.08,18.11,11,17.56,11,17c0-2.97,2.16-5.43,5-5.91V7.58z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M17,13c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C21,14.79,19.21,13,17,13z M17,14.38 c0.62,0,1.12,0.51,1.12,1.12s-0.51,1.12-1.12,1.12s-1.12-0.51-1.12-1.12S16.38,14.38,17,14.38z M17,19.75 c-0.93,0-1.74-0.46-2.24-1.17c0.05-0.72,1.51-1.08,2.24-1.08s2.19,0.36,2.24,1.08C18.74,19.29,17.93,19.75,17,19.75z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M17,13c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C21,14.79,19.21,13,17,13z M17,14.38 c0.62,0,1.12,0.51,1.12,1.12s-0.51,1.12-1.12,1.12s-1.12-0.51-1.12-1.12S16.38,14.38,17,14.38z M17,19.75 c-0.93,0-1.74-0.46-2.24-1.17c0.05-0.72,1.51-1.08,2.24-1.08s2.19,0.36,2.24,1.08C18.74,19.29,17.93,19.75,17,19.75z","opacity":".3"},"children":[]}]},{"name":"circle","attribs":{"cx":"17","cy":"15.5","r":"1.12"},"children":[{"name":"circle","attribs":{"cx":"17","cy":"15.5","r":"1.12"},"children":[]}]},{"name":"path","attribs":{"d":"M18,11.09V6.27L10.5,3L3,6.27v4.91c0,4.54,3.2,8.79,7.5,9.82c0.55-0.13,1.08-0.32,1.6-0.55C13.18,21.99,14.97,23,17,23 c3.31,0,6-2.69,6-6C23,14.03,20.84,11.57,18,11.09z M11,17c0,0.56,0.08,1.11,0.23,1.62c-0.24,0.11-0.48,0.22-0.73,0.3 c-3.17-1-5.5-4.24-5.5-7.74v-3.6l5.5-2.4l5.5,2.4v3.51C13.16,11.57,11,14.03,11,17z M17,21c-2.21,0-4-1.79-4-4c0-2.21,1.79-4,4-4 s4,1.79,4,4C21,19.21,19.21,21,17,21z"},"children":[{"name":"path","attribs":{"d":"M18,11.09V6.27L10.5,3L3,6.27v4.91c0,4.54,3.2,8.79,7.5,9.82c0.55-0.13,1.08-0.32,1.6-0.55C13.18,21.99,14.97,23,17,23 c3.31,0,6-2.69,6-6C23,14.03,20.84,11.57,18,11.09z M11,17c0,0.56,0.08,1.11,0.23,1.62c-0.24,0.11-0.48,0.22-0.73,0.3 c-3.17-1-5.5-4.24-5.5-7.74v-3.6l5.5-2.4l5.5,2.4v3.51C13.16,11.57,11,14.03,11,17z M17,21c-2.21,0-4-1.79-4-4c0-2.21,1.79-4,4-4 s4,1.79,4,4C21,19.21,19.21,21,17,21z"},"children":[]}]},{"name":"path","attribs":{"d":"M17,17.5c-0.73,0-2.19,0.36-2.24,1.08c0.5,0.71,1.32,1.17,2.24,1.17s1.74-0.46,2.24-1.17C19.19,17.86,17.73,17.5,17,17.5z"},"children":[{"name":"path","attribs":{"d":"M17,17.5c-0.73,0-2.19,0.36-2.24,1.08c0.5,0.71,1.32,1.17,2.24,1.17s1.74-0.46,2.24-1.17C19.19,17.86,17.73,17.5,17,17.5z"},"children":[]}]}]}]}]}]};exports.ic_admin_panel_settings_twotone=ic_admin_panel_settings_twotone;var ic_alarm={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM7.88 3.39L6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM12.5 8H11v6l4.75 2.85.75-1.23-4-2.37V8zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z"},"children":[]}]};exports.ic_alarm=ic_alarm;var ic_alarm_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12.5 8H11v6l4.75 2.85.75-1.23-4-2.37zm4.837-6.19l4.607 3.845-1.28 1.535-4.61-3.843zm-10.674 0l1.282 1.536L3.337 7.19l-1.28-1.536zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z"},"children":[]}]};exports.ic_alarm_outline=ic_alarm_outline;var ic_alarm_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 6c-3.86 0-7 3.14-7 7s3.14 7 7 7 7-3.14 7-7-3.14-7-7-7zm3.75 10.85L11 14V8h1.5v5.25l4 2.37-.75 1.23z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12.5 8H11v6l4.75 2.85.75-1.23-4-2.37zm4.837-6.19l4.607 3.845-1.28 1.535-4.61-3.843zm-10.674 0l1.282 1.536L3.337 7.19l-1.28-1.536zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z"},"children":[]}]};exports.ic_alarm_twotone=ic_alarm_twotone;var ic_alarm_add={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7.88 3.39L6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm1-11h-2v3H8v2h3v3h2v-3h3v-2h-3V9z"},"children":[]}]};exports.ic_alarm_add=ic_alarm_add;var ic_alarm_add_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17.337 1.81l4.607 3.845-1.28 1.535-4.61-3.843zm-10.674 0l1.282 1.536L3.337 7.19l-1.28-1.536zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7zm1-11h-2v3H8v2h3v3h2v-3h3v-2h-3z"},"children":[]}]};exports.ic_alarm_add_outline=ic_alarm_add_outline;var ic_alarm_add_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 6c-3.86 0-7 3.14-7 7s3.14 7 7 7 7-3.14 7-7-3.14-7-7-7zm4 8h-3v3h-2v-3H8v-2h3V9h2v3h3v2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M17.337 1.81l4.607 3.845-1.28 1.535-4.61-3.843zm-10.674 0l1.282 1.536L3.337 7.19l-1.28-1.536zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7zm1-11h-2v3H8v2h3v3h2v-3h3v-2h-3z"},"children":[]}]};exports.ic_alarm_add_twotone=ic_alarm_add_twotone;var ic_alarm_off={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 6c3.87 0 7 3.13 7 7 0 .84-.16 1.65-.43 2.4l1.52 1.52c.58-1.19.91-2.51.91-3.92 0-4.97-4.03-9-9-9-1.41 0-2.73.33-3.92.91L9.6 6.43C10.35 6.16 11.16 6 12 6zm10-.28l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM2.92 2.29L1.65 3.57 2.98 4.9l-1.11.93 1.42 1.42 1.11-.94.8.8C3.83 8.69 3 10.75 3 13c0 4.97 4.02 9 9 9 2.25 0 4.31-.83 5.89-2.2l2.2 2.2 1.27-1.27L3.89 3.27l-.97-.98zm13.55 16.1C15.26 19.39 13.7 20 12 20c-3.87 0-7-3.13-7-7 0-1.7.61-3.26 1.61-4.47l9.86 9.86zM8.02 3.28L6.6 1.86l-.86.71 1.42 1.42.86-.71z"},"children":[]}]};exports.ic_alarm_off=ic_alarm_off;var ic_alarm_off_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10.04 6.29C10.66 6.11 11.32 6 12 6c3.86 0 7 3.14 7 7 0 .68-.11 1.34-.29 1.96l1.56 1.56c.47-1.08.73-2.27.73-3.52 0-4.97-4.03-9-9-9-1.25 0-2.44.26-3.53.72l1.57 1.57zm7.297-4.48l4.607 3.845-1.28 1.535-4.61-3.843zM3.02 2.1L1.61 3.51l1.37 1.37-.92.77 1.28 1.54 1.06-.88.8.8C3.83 8.69 3 10.75 3 13c0 4.97 4.03 9 9 9 2.25 0 4.31-.83 5.89-2.2l2.1 2.1 1.41-1.41L3.02 2.1zM12 20c-3.86 0-7-3.14-7-7 0-1.7.61-3.26 1.62-4.47l9.85 9.85C15.26 19.39 13.7 20 12 20zM7.48 3.73l.46-.38-1.28-1.54-.6.5z"},"children":[]}]};exports.ic_alarm_off_outline=ic_alarm_off_outline;var ic_alarm_off_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10.04 6.29C10.66 6.11 11.32 6 12 6c3.86 0 7 3.14 7 7 0 .68-.11 1.34-.29 1.96l1.56 1.56c.47-1.08.73-2.27.73-3.52 0-4.97-4.03-9-9-9-1.25 0-2.44.26-3.53.72l1.57 1.57zm7.297-4.48l4.607 3.845-1.28 1.535-4.61-3.843zm1.903 16.51l-1.43-1.43-9.7-9.7-1.43-1.43-.74-.74L4.52 3.6l-1.5-1.5-1.41 1.41 1.37 1.37-.92.77 1.28 1.54 1.06-.88.8.8C3.83 8.69 3 10.75 3 13c0 4.97 4.03 9 9 9 2.25 0 4.31-.83 5.89-2.2l2.1 2.1 1.41-1.41-2.16-2.17zM12 20c-3.86 0-7-3.14-7-7 0-1.7.61-3.26 1.62-4.47l9.85 9.85C15.26 19.39 13.7 20 12 20zM7.48 3.73l.46-.38-1.28-1.54-.6.5z"},"children":[]}]};exports.ic_alarm_off_twotone=ic_alarm_off_twotone;var ic_alarm_on={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM7.88 3.39L6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm-1.46-5.47L8.41 12.4l-1.06 1.06 3.18 3.18 6-6-1.06-1.06-4.93 4.95z"},"children":[]}]};exports.ic_alarm_on=ic_alarm_on;var ic_alarm_on_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10.54 14.53L8.41 12.4l-1.06 1.06 3.18 3.18 6-6-1.06-1.06zm6.797-12.72l4.607 3.845-1.28 1.535-4.61-3.843zm-10.674 0l1.282 1.536L3.337 7.19l-1.28-1.536zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z"},"children":[]}]};exports.ic_alarm_on_outline=ic_alarm_on_outline;var ic_alarm_on_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 6c-3.86 0-7 3.14-7 7s3.14 7 7 7 7-3.14 7-7-3.14-7-7-7zm-1.47 10.64l-3.18-3.18 1.06-1.06 2.13 2.13 4.93-4.95 1.06 1.06-6 6z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M10.54 14.53L8.41 12.4l-1.06 1.06 3.18 3.18 6-6-1.06-1.06zm6.797-12.72l4.607 3.845-1.28 1.535-4.61-3.843zm-10.674 0l1.282 1.536L3.337 7.19l-1.28-1.536zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z"},"children":[]}]};exports.ic_alarm_on_twotone=ic_alarm_on_twotone;var ic_all_inbox={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v7c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 6h-4c0 1.62-1.38 3-3 3s-3-1.38-3-3H5V5h14v4zm-4 7h6v3c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2v-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3z"},"children":[]}]};exports.ic_all_inbox=ic_all_inbox;var ic_all_inbox_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v7c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5 10h3.13c.21.78.67 1.47 1.27 2H5v-2zm14 2h-4.4c.6-.53 1.06-1.22 1.27-2H19v2zm0-4h-5v1c0 1.07-.93 2-2 2s-2-.93-2-2V8H5V5h14v3zm-2 7h-3v1c0 .47-.19.9-.48 1.25-.37.45-.92.75-1.52.75s-1.15-.3-1.52-.75c-.29-.35-.48-.78-.48-1.25v-1H3v4c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-4h-4zM5 17h3.13c.02.09.06.17.09.25.24.68.65 1.28 1.18 1.75H5v-2zm14 2h-4.4c.54-.47.95-1.07 1.18-1.75.03-.08.07-.16.09-.25H19v2z"},"children":[]}]};exports.ic_all_inbox_outline=ic_all_inbox_outline;var ic_all_inbox_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v7c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5 10h3.13c.21.78.67 1.47 1.27 2H5v-2zm14 2h-4.4c.6-.53 1.06-1.22 1.27-2H19v2zm0-4h-5v1c0 1.07-.93 2-2 2s-2-.93-2-2V8H5V5h14v3zm-5 7v1c0 .47-.19.9-.48 1.25-.37.45-.92.75-1.52.75s-1.15-.3-1.52-.75c-.29-.35-.48-.78-.48-1.25v-1H3v4c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-4h-7zm-9 2h3.13c.02.09.06.17.09.25.24.68.65 1.28 1.18 1.75H5v-2zm14 2h-4.4c.54-.47.95-1.07 1.18-1.75.03-.08.07-.16.09-.25H19v2z"},"children":[]},{"name":"path","attribs":{"d":"M8.13 10H5v2h4.4c-.6-.53-1.06-1.22-1.27-2zm6.47 2H19v-2h-3.13c-.21.78-.67 1.47-1.27 2zm-6.38 5.25c-.03-.08-.06-.16-.09-.25H5v2h4.4c-.53-.47-.94-1.07-1.18-1.75zm7.65-.25c-.02.09-.06.17-.09.25-.23.68-.64 1.28-1.18 1.75H19v-2h-3.13z","opacity":".3"},"children":[]}]};exports.ic_all_inbox_twotone=ic_all_inbox_twotone;var ic_all_out={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M16.21 4.16l4 4v-4zm4 12l-4 4h4zm-12 4l-4-4v4zm-4-12l4-4h-4zm12.95-.95c-2.73-2.73-7.17-2.73-9.9 0s-2.73 7.17 0 9.9 7.17 2.73 9.9 0 2.73-7.16 0-9.9zm-1.1 8.8c-2.13 2.13-5.57 2.13-7.7 0s-2.13-5.57 0-7.7 5.57-2.13 7.7 0 2.13 5.57 0 7.7z"},"children":[]},{"name":"path","attribs":{"d":"M.21.16h24v24h-24z","fill":"none"},"children":[]}]};exports.ic_all_out=ic_all_out;var ic_all_out_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 4v4l4-4zm12 0l4 4V4zm4 16v-4l-4 4zM4 20h4l-4-4zm15-8c0-3.87-3.13-7-7-7s-7 3.13-7 7 3.13 7 7 7 7-3.13 7-7zm-7 5c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z"},"children":[]}]};exports.ic_all_out_outline=ic_all_out_outline;var ic_all_out_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"12","cy":"12","opacity":".3","r":"5"},"children":[]},{"name":"path","attribs":{"d":"M4 4v4l4-4zm12 0l4 4V4zm4 16v-4l-4 4zM4 20h4l-4-4zm15-8c0-3.87-3.13-7-7-7s-7 3.13-7 7 3.13 7 7 7 7-3.13 7-7zm-7 5c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z"},"children":[]}]};exports.ic_all_out_twotone=ic_all_out_twotone;var ic_analytics={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 17H7v-5h2v5zm4 0h-2v-3h2v3zm0-5h-2v-2h2v2zm4 5h-2V7h2v10z"},"children":[]}]};exports.ic_analytics=ic_analytics;var ic_analytics_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z"},"children":[{"name":"path","attribs":{"d":"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z"},"children":[]}]},{"name":"rect","attribs":{"height":"5","width":"2","x":"7","y":"12"},"children":[{"name":"rect","attribs":{"height":"5","width":"2","x":"7","y":"12"},"children":[]}]},{"name":"rect","attribs":{"height":"10","width":"2","x":"15","y":"7"},"children":[{"name":"rect","attribs":{"height":"10","width":"2","x":"15","y":"7"},"children":[]}]},{"name":"rect","attribs":{"height":"3","width":"2","x":"11","y":"14"},"children":[{"name":"rect","attribs":{"height":"3","width":"2","x":"11","y":"14"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"2","x":"11","y":"10"},"children":[{"name":"rect","attribs":{"height":"2","width":"2","x":"11","y":"10"},"children":[]}]}]}]}]}]};exports.ic_analytics_outline=ic_analytics_outline;var ic_analytics_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"height":"14","opacity":".3","width":"14","x":"5","y":"5"},"children":[{"name":"rect","attribs":{"height":"14","opacity":".3","width":"14","x":"5","y":"5"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z"},"children":[{"name":"path","attribs":{"d":"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z"},"children":[]}]},{"name":"rect","attribs":{"height":"5","width":"2","x":"7","y":"12"},"children":[{"name":"rect","attribs":{"height":"5","width":"2","x":"7","y":"12"},"children":[]}]},{"name":"rect","attribs":{"height":"10","width":"2","x":"15","y":"7"},"children":[{"name":"rect","attribs":{"height":"10","width":"2","x":"15","y":"7"},"children":[]}]},{"name":"rect","attribs":{"height":"3","width":"2","x":"11","y":"14"},"children":[{"name":"rect","attribs":{"height":"3","width":"2","x":"11","y":"14"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"2","x":"11","y":"10"},"children":[{"name":"rect","attribs":{"height":"2","width":"2","x":"11","y":"10"},"children":[]}]}]}]}]}]}]}]};exports.ic_analytics_twotone=ic_analytics_twotone;var ic_anchor={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M17,15l1.55,1.55c-0.96,1.69-3.33,3.04-5.55,3.37V11h3V9h-3V7.82C14.16,7.4,15,6.3,15,5c0-1.65-1.35-3-3-3S9,3.35,9,5 c0,1.3,0.84,2.4,2,2.82V9H8v2h3v8.92c-2.22-0.33-4.59-1.68-5.55-3.37L7,15l-4-3v3c0,3.88,4.92,7,9,7s9-3.12,9-7v-3L17,15z M12,4 c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S11.45,4,12,4z"},"children":[{"name":"path","attribs":{"d":"M17,15l1.55,1.55c-0.96,1.69-3.33,3.04-5.55,3.37V11h3V9h-3V7.82C14.16,7.4,15,6.3,15,5c0-1.65-1.35-3-3-3S9,3.35,9,5 c0,1.3,0.84,2.4,2,2.82V9H8v2h3v8.92c-2.22-0.33-4.59-1.68-5.55-3.37L7,15l-4-3v3c0,3.88,4.92,7,9,7s9-3.12,9-7v-3L17,15z M12,4 c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S11.45,4,12,4z"},"children":[]}]}]}]};exports.ic_anchor=ic_anchor;var ic_anchor_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M17,15l1.55,1.55c-0.96,1.69-3.33,3.04-5.55,3.37V11h3V9h-3V7.82C14.16,7.4,15,6.3,15,5c0-1.65-1.35-3-3-3S9,3.35,9,5 c0,1.3,0.84,2.4,2,2.82V9H8v2h3v8.92c-2.22-0.33-4.59-1.68-5.55-3.37L7,15l-4-3v3c0,3.88,4.92,7,9,7s9-3.12,9-7v-3L17,15z M12,4 c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S11.45,4,12,4z"},"children":[{"name":"path","attribs":{"d":"M17,15l1.55,1.55c-0.96,1.69-3.33,3.04-5.55,3.37V11h3V9h-3V7.82C14.16,7.4,15,6.3,15,5c0-1.65-1.35-3-3-3S9,3.35,9,5 c0,1.3,0.84,2.4,2,2.82V9H8v2h3v8.92c-2.22-0.33-4.59-1.68-5.55-3.37L7,15l-4-3v3c0,3.88,4.92,7,9,7s9-3.12,9-7v-3L17,15z M12,4 c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S11.45,4,12,4z"},"children":[]}]}]}]};exports.ic_anchor_outline=ic_anchor_outline;var ic_anchor_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M17,15l1.55,1.55c-0.96,1.69-3.33,3.04-5.55,3.37V11h3V9h-3V7.82C14.16,7.4,15,6.3,15,5c0-1.65-1.35-3-3-3S9,3.35,9,5 c0,1.3,0.84,2.4,2,2.82V9H8v2h3v8.92c-2.22-0.33-4.59-1.68-5.55-3.37L7,15l-4-3v3c0,3.88,4.92,7,9,7s9-3.12,9-7v-3L17,15z M12,4 c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S11.45,4,12,4z"},"children":[{"name":"path","attribs":{"d":"M17,15l1.55,1.55c-0.96,1.69-3.33,3.04-5.55,3.37V11h3V9h-3V7.82C14.16,7.4,15,6.3,15,5c0-1.65-1.35-3-3-3S9,3.35,9,5 c0,1.3,0.84,2.4,2,2.82V9H8v2h3v8.92c-2.22-0.33-4.59-1.68-5.55-3.37L7,15l-4-3v3c0,3.88,4.92,7,9,7s9-3.12,9-7v-3L17,15z M12,4 c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S11.45,4,12,4z"},"children":[]}]}]}]};exports.ic_anchor_twotone=ic_anchor_twotone;var ic_android={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M17.6,9.48l1.84-3.18c0.16-0.31,0.04-0.69-0.26-0.85c-0.29-0.15-0.65-0.06-0.83,0.22l-1.88,3.24 c-2.86-1.21-6.08-1.21-8.94,0L5.65,5.67c-0.19-0.29-0.58-0.38-0.87-0.2C4.5,5.65,4.41,6.01,4.56,6.3L6.4,9.48 C3.3,11.25,1.28,14.44,1,18h22C22.72,14.44,20.7,11.25,17.6,9.48z M7,15.25c-0.69,0-1.25-0.56-1.25-1.25 c0-0.69,0.56-1.25,1.25-1.25S8.25,13.31,8.25,14C8.25,14.69,7.69,15.25,7,15.25z M17,15.25c-0.69,0-1.25-0.56-1.25-1.25 c0-0.69,0.56-1.25,1.25-1.25s1.25,0.56,1.25,1.25C18.25,14.69,17.69,15.25,17,15.25z"},"children":[{"name":"path","attribs":{"d":"M17.6,9.48l1.84-3.18c0.16-0.31,0.04-0.69-0.26-0.85c-0.29-0.15-0.65-0.06-0.83,0.22l-1.88,3.24 c-2.86-1.21-6.08-1.21-8.94,0L5.65,5.67c-0.19-0.29-0.58-0.38-0.87-0.2C4.5,5.65,4.41,6.01,4.56,6.3L6.4,9.48 C3.3,11.25,1.28,14.44,1,18h22C22.72,14.44,20.7,11.25,17.6,9.48z M7,15.25c-0.69,0-1.25-0.56-1.25-1.25 c0-0.69,0.56-1.25,1.25-1.25S8.25,13.31,8.25,14C8.25,14.69,7.69,15.25,7,15.25z M17,15.25c-0.69,0-1.25-0.56-1.25-1.25 c0-0.69,0.56-1.25,1.25-1.25s1.25,0.56,1.25,1.25C18.25,14.69,17.69,15.25,17,15.25z"},"children":[]}]}]}]};exports.ic_android=ic_android;var ic_android_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6 18c0 .55.45 1 1 1h1v3.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5V19h2v3.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5V19h1c.55 0 1-.45 1-1V8H6v10zM3.5 8C2.67 8 2 8.67 2 9.5v7c0 .83.67 1.5 1.5 1.5S5 17.33 5 16.5v-7C5 8.67 4.33 8 3.5 8zm17 0c-.83 0-1.5.67-1.5 1.5v7c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5v-7c0-.83-.67-1.5-1.5-1.5zm-4.97-5.84l1.3-1.3c.2-.2.2-.51 0-.71s-.51-.2-.71 0l-1.48 1.48C13.85 1.23 12.95 1 12 1c-.96 0-1.86.23-2.66.63L7.85.15c-.2-.2-.51-.2-.71 0-.2.2-.2.51 0 .71l1.31 1.31C6.97 3.26 6 5.01 6 7h12c0-1.99-.97-3.75-2.47-4.84zM10 5H9V4h1v1zm5 0h-1V4h1v1z"},"children":[]}]};exports.ic_android_outline=ic_android_outline;var ic_android_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6 18c0 .55.45 1 1 1h1v3.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5V19h2v3.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5V19h1c.55 0 1-.45 1-1V8H6v10zM3.5 8C2.67 8 2 8.67 2 9.5v7c0 .83.67 1.5 1.5 1.5S5 17.33 5 16.5v-7C5 8.67 4.33 8 3.5 8zm17 0c-.83 0-1.5.67-1.5 1.5v7c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5v-7c0-.83-.67-1.5-1.5-1.5zm-4.97-5.84l1.3-1.3c.2-.2.2-.51 0-.71s-.51-.2-.71 0l-1.48 1.48C13.85 1.23 12.95 1 12 1c-.96 0-1.86.23-2.66.63L7.85.15c-.2-.2-.51-.2-.71 0-.2.2-.2.51 0 .71l1.31 1.31C6.97 3.26 6 5.01 6 7h12c0-1.99-.97-3.75-2.47-4.84zM10 5H9V4h1v1zm5 0h-1V4h1v1z"},"children":[]}]};exports.ic_android_twotone=ic_android_twotone;var ic_announcement={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 9h-2V5h2v6zm0 4h-2v-2h2v2z"},"children":[]}]};exports.ic_announcement=ic_announcement;var ic_announcement_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zM11 5h2v6h-2zm0 8h2v2h-2z"},"children":[]}]};exports.ic_announcement_outline=ic_announcement_outline;var ic_announcement_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 4v13.17l.59-.59.58-.58H20V4H4zm9 11h-2v-2h2v2zm0-4h-2V5h2v6z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17l-.59.59-.58.58V4h16v12zM11 5h2v6h-2zm0 8h2v2h-2z"},"children":[]}]};exports.ic_announcement_twotone=ic_announcement_twotone;var ic_api={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M14,12l-2,2l-2-2l2-2L14,12z M12,6l2.12,2.12l2.5-2.5L12,1L7.38,5.62l2.5,2.5L12,6z M6,12l2.12-2.12l-2.5-2.5L1,12 l4.62,4.62l2.5-2.5L6,12z M18,12l-2.12,2.12l2.5,2.5L23,12l-4.62-4.62l-2.5,2.5L18,12z M12,18l-2.12-2.12l-2.5,2.5L12,23l4.62-4.62 l-2.5-2.5L12,18z"},"children":[{"name":"path","attribs":{"d":"M14,12l-2,2l-2-2l2-2L14,12z M12,6l2.12,2.12l2.5-2.5L12,1L7.38,5.62l2.5,2.5L12,6z M6,12l2.12-2.12l-2.5-2.5L1,12 l4.62,4.62l2.5-2.5L6,12z M18,12l-2.12,2.12l2.5,2.5L23,12l-4.62-4.62l-2.5,2.5L18,12z M12,18l-2.12-2.12l-2.5,2.5L12,23l4.62-4.62 l-2.5-2.5L12,18z"},"children":[]}]}]}]};exports.ic_api=ic_api;var ic_api_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M14,12l-2,2l-2-2l2-2L14,12z M12,6l2.12,2.12l2.5-2.5L12,1L7.38,5.62l2.5,2.5L12,6z M6,12l2.12-2.12l-2.5-2.5L1,12 l4.62,4.62l2.5-2.5L6,12z M18,12l-2.12,2.12l2.5,2.5L23,12l-4.62-4.62l-2.5,2.5L18,12z M12,18l-2.12-2.12l-2.5,2.5L12,23l4.62-4.62 l-2.5-2.5L12,18z"},"children":[{"name":"path","attribs":{"d":"M14,12l-2,2l-2-2l2-2L14,12z M12,6l2.12,2.12l2.5-2.5L12,1L7.38,5.62l2.5,2.5L12,6z M6,12l2.12-2.12l-2.5-2.5L1,12 l4.62,4.62l2.5-2.5L6,12z M18,12l-2.12,2.12l2.5,2.5L23,12l-4.62-4.62l-2.5,2.5L18,12z M12,18l-2.12-2.12l-2.5,2.5L12,23l4.62-4.62 l-2.5-2.5L12,18z"},"children":[]}]}]}]};exports.ic_api_outline=ic_api_outline;var ic_api_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M14,12l-2,2l-2-2l2-2L14,12z M12,6l2.12,2.12l2.5-2.5L12,1L7.38,5.62l2.5,2.5L12,6z M6,12l2.12-2.12l-2.5-2.5L1,12 l4.62,4.62l2.5-2.5L6,12z M18,12l-2.12,2.12l2.5,2.5L23,12l-4.62-4.62l-2.5,2.5L18,12z M12,18l-2.12-2.12l-2.5,2.5L12,23l4.62-4.62 l-2.5-2.5L12,18z"},"children":[{"name":"path","attribs":{"d":"M14,12l-2,2l-2-2l2-2L14,12z M12,6l2.12,2.12l2.5-2.5L12,1L7.38,5.62l2.5,2.5L12,6z M6,12l2.12-2.12l-2.5-2.5L1,12 l4.62,4.62l2.5-2.5L6,12z M18,12l-2.12,2.12l2.5,2.5L23,12l-4.62-4.62l-2.5,2.5L18,12z M12,18l-2.12-2.12l-2.5,2.5L12,23l4.62-4.62 l-2.5-2.5L12,18z"},"children":[]}]}]}]};exports.ic_api_twotone=ic_api_twotone;var ic_app_blocking={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm-2.5 4c0-1.38 1.12-2.5 2.5-2.5.42 0 .8.11 1.15.29l-3.36 3.36c-.18-.35-.29-.73-.29-1.15zm2.5 2.5c-.42 0-.8-.11-1.15-.29l3.36-3.36c.18.35.29.73.29 1.15 0 1.38-1.12 2.5-2.5 2.5zM17 18H7V6h10v1h2V3c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2v-4h-2v1z"},"children":[]}]};exports.ic_app_blocking=ic_app_blocking;var ic_app_blocking_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M18,8c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C22,9.79,20.21,8,18,8z M15.5,12c0-1.38,1.12-2.5,2.5-2.5 c0.42,0,0.8,0.11,1.15,0.29l-3.36,3.36C15.61,12.8,15.5,12.42,15.5,12z M18,14.5c-0.42,0-0.8-0.11-1.15-0.29l3.36-3.36 c0.18,0.35,0.29,0.73,0.29,1.15C20.5,13.38,19.38,14.5,18,14.5z"},"children":[{"name":"path","attribs":{"d":"M18,8c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C22,9.79,20.21,8,18,8z M15.5,12c0-1.38,1.12-2.5,2.5-2.5 c0.42,0,0.8,0.11,1.15,0.29l-3.36,3.36C15.61,12.8,15.5,12.42,15.5,12z M18,14.5c-0.42,0-0.8-0.11-1.15-0.29l3.36-3.36 c0.18,0.35,0.29,0.73,0.29,1.15C20.5,13.38,19.38,14.5,18,14.5z"},"children":[]}]},{"name":"path","attribs":{"d":"M17,18H7V6h10v1h2V6V5V3c0-1.1-0.9-2-2-2H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2v-2v-1v-1h-2V18z M7,3 h10v1H7V3z M17,21H7v-1h10V21z"},"children":[{"name":"path","attribs":{"d":"M17,18H7V6h10v1h2V6V5V3c0-1.1-0.9-2-2-2H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2v-2v-1v-1h-2V18z M7,3 h10v1H7V3z M17,21H7v-1h10V21z"},"children":[]}]}]}]}]}]};exports.ic_app_blocking_outline=ic_app_blocking_outline;var ic_app_blocking_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M18,8c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C22,9.79,20.21,8,18,8z M15.5,12c0-1.38,1.12-2.5,2.5-2.5 c0.42,0,0.8,0.11,1.15,0.29l-3.36,3.36C15.61,12.8,15.5,12.42,15.5,12z M18,14.5c-0.42,0-0.8-0.11-1.15-0.29l3.36-3.36 c0.18,0.35,0.29,0.73,0.29,1.15C20.5,13.38,19.38,14.5,18,14.5z"},"children":[{"name":"path","attribs":{"d":"M18,8c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C22,9.79,20.21,8,18,8z M15.5,12c0-1.38,1.12-2.5,2.5-2.5 c0.42,0,0.8,0.11,1.15,0.29l-3.36,3.36C15.61,12.8,15.5,12.42,15.5,12z M18,14.5c-0.42,0-0.8-0.11-1.15-0.29l3.36-3.36 c0.18,0.35,0.29,0.73,0.29,1.15C20.5,13.38,19.38,14.5,18,14.5z"},"children":[]}]},{"name":"path","attribs":{"d":"M17,18H7V6h10v1h2V6V5V3c0-1.1-0.9-2-2-2H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2v-2v-1v-1h-2V18z M7,3 h10v1H7V3z M17,21H7v-1h10V21z"},"children":[{"name":"path","attribs":{"d":"M17,18H7V6h10v1h2V6V5V3c0-1.1-0.9-2-2-2H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2v-2v-1v-1h-2V18z M7,3 h10v1H7V3z M17,21H7v-1h10V21z"},"children":[]}]}]}]}]}]},{"name":"rect","attribs":{"height":"1","opacity":".3","width":"10","x":"7","y":"3"},"children":[{"name":"rect","attribs":{"height":"1","opacity":".3","width":"10","x":"7","y":"3"},"children":[]}]},{"name":"rect","attribs":{"height":"1","opacity":".3","width":"10","x":"7","y":"20"},"children":[{"name":"rect","attribs":{"height":"1","opacity":".3","width":"10","x":"7","y":"20"},"children":[]}]}]}]};exports.ic_app_blocking_twotone=ic_app_blocking_twotone;var ic_arrow_circle_down={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8s-8-3.59-8-8S7.59,4,12,4 M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10 c5.52,0,10-4.48,10-10C22,6.48,17.52,2,12,2L12,2z M13,12l0-4h-2l0,4H8l4,4l4-4H13z"},"children":[{"name":"path","attribs":{"d":"M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8s-8-3.59-8-8S7.59,4,12,4 M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10 c5.52,0,10-4.48,10-10C22,6.48,17.52,2,12,2L12,2z M13,12l0-4h-2l0,4H8l4,4l4-4H13z"},"children":[]}]}]}]};exports.ic_arrow_circle_down=ic_arrow_circle_down;var ic_arrow_circle_down_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8s-8-3.59-8-8S7.59,4,12,4 M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10 c5.52,0,10-4.48,10-10C22,6.48,17.52,2,12,2L12,2z M13,12l0-4h-2l0,4H8l4,4l4-4H13z"},"children":[{"name":"path","attribs":{"d":"M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8s-8-3.59-8-8S7.59,4,12,4 M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10 c5.52,0,10-4.48,10-10C22,6.48,17.52,2,12,2L12,2z M13,12l0-4h-2l0,4H8l4,4l4-4H13z"},"children":[]}]}]}]};exports.ic_arrow_circle_down_outline=ic_arrow_circle_down_outline;var ic_arrow_circle_down_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M12,4c-4.41,0-8,3.59-8,8s3.59,8,8,8s8-3.59,8-8S16.41,4,12,4z M12,16l-4-4h3l0-4h2l0,4h3L12,16z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M12,4c-4.41,0-8,3.59-8,8s3.59,8,8,8s8-3.59,8-8S16.41,4,12,4z M12,16l-4-4h3l0-4h2l0,4h3L12,16z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8s-8-3.59-8-8S7.59,4,12,4 M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10 c5.52,0,10-4.48,10-10C22,6.48,17.52,2,12,2L12,2z M13,12l0-4h-2l0,4H8l4,4l4-4H13z"},"children":[{"name":"path","attribs":{"d":"M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8s-8-3.59-8-8S7.59,4,12,4 M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10 c5.52,0,10-4.48,10-10C22,6.48,17.52,2,12,2L12,2z M13,12l0-4h-2l0,4H8l4,4l4-4H13z"},"children":[]}]}]}]};exports.ic_arrow_circle_down_twotone=ic_arrow_circle_down_twotone;var ic_arrow_circle_up={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8S16.41,20,12,20 M12,22c5.52,0,10-4.48,10-10c0-5.52-4.48-10-10-10 C6.48,2,2,6.48,2,12C2,17.52,6.48,22,12,22L12,22z M11,12l0,4h2l0-4h3l-4-4l-4,4H11z"},"children":[{"name":"path","attribs":{"d":"M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8S16.41,20,12,20 M12,22c5.52,0,10-4.48,10-10c0-5.52-4.48-10-10-10 C6.48,2,2,6.48,2,12C2,17.52,6.48,22,12,22L12,22z M11,12l0,4h2l0-4h3l-4-4l-4,4H11z"},"children":[]}]}]}]};exports.ic_arrow_circle_up=ic_arrow_circle_up;var ic_arrow_circle_up_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8S16.41,20,12,20 M12,22c5.52,0,10-4.48,10-10c0-5.52-4.48-10-10-10 C6.48,2,2,6.48,2,12C2,17.52,6.48,22,12,22L12,22z M11,12l0,4h2l0-4h3l-4-4l-4,4H11z"},"children":[{"name":"path","attribs":{"d":"M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8S16.41,20,12,20 M12,22c5.52,0,10-4.48,10-10c0-5.52-4.48-10-10-10 C6.48,2,2,6.48,2,12C2,17.52,6.48,22,12,22L12,22z M11,12l0,4h2l0-4h3l-4-4l-4,4H11z"},"children":[]}]}]}]};exports.ic_arrow_circle_up_outline=ic_arrow_circle_up_outline;var ic_arrow_circle_up_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8S16.41,20,12,20 M11,12l0,4h2l0-4h3l-4-4l-4,4H11z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8S16.41,20,12,20 M11,12l0,4h2l0-4h3l-4-4l-4,4H11z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8S16.41,20,12,20 M12,22c5.52,0,10-4.48,10-10c0-5.52-4.48-10-10-10 C6.48,2,2,6.48,2,12C2,17.52,6.48,22,12,22L12,22z M11,12l0,4h2l0-4h3l-4-4l-4,4H11z"},"children":[{"name":"path","attribs":{"d":"M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8S16.41,20,12,20 M12,22c5.52,0,10-4.48,10-10c0-5.52-4.48-10-10-10 C6.48,2,2,6.48,2,12C2,17.52,6.48,22,12,22L12,22z M11,12l0,4h2l0-4h3l-4-4l-4,4H11z"},"children":[]}]}]}]};exports.ic_arrow_circle_up_twotone=ic_arrow_circle_up_twotone;var ic_arrow_right_alt={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16.01 11H4v2h12.01v3L20 12l-3.99-4z"},"children":[]}]};exports.ic_arrow_right_alt=ic_arrow_right_alt;var ic_arrow_right_alt_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16.01 11H4v2h12.01v3L20 12l-3.99-4v3z"},"children":[]}]};exports.ic_arrow_right_alt_outline=ic_arrow_right_alt_outline;var ic_arrow_right_alt_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16.01 11H4v2h12.01v3L20 12l-3.99-4v3z"},"children":[]}]};exports.ic_arrow_right_alt_twotone=ic_arrow_right_alt_twotone;var ic_article={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-5 14H7v-2h7v2zm3-4H7v-2h10v2zm0-4H7V7h10v2z"},"children":[]}]};exports.ic_article=ic_article;var ic_article_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M19,5v14H5V5H19 M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3L19,3z"},"children":[{"name":"path","attribs":{"d":"M19,5v14H5V5H19 M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3L19,3z"},"children":[]}]}]}]},{"name":"path","attribs":{"d":"M14,17H7v-2h7V17z M17,13H7v-2h10V13z M17,9H7V7h10V9z"},"children":[{"name":"path","attribs":{"d":"M14,17H7v-2h7V17z M17,13H7v-2h10V13z M17,9H7V7h10V9z"},"children":[]}]}]}]};exports.ic_article_outline=ic_article_outline;var ic_article_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","y":"0"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","y":"0"},"children":[]}]},{"name":"path","attribs":{"d":"M5,5v14h14V5H5z M14,17H7v-2h7V17z M17,13H7v-2h10V13z M17,9H7V7h10V9z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M5,5v14h14V5H5z M14,17H7v-2h7V17z M17,13H7v-2h10V13z M17,9H7V7h10V9z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z M17,13H7v-2h10 V13z M17,9H7V7h10V9z M14,17H7v-2h7V17z"},"children":[{"name":"path","attribs":{"d":"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z M17,13H7v-2h10 V13z M17,9H7V7h10V9z M14,17H7v-2h7V17z"},"children":[]}]}]}]};exports.ic_article_twotone=ic_article_twotone;var ic_aspect_ratio={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 12h-2v3h-3v2h5v-5zM7 9h3V7H5v5h2V9zm14-6H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02z"},"children":[]}]};exports.ic_aspect_ratio=ic_aspect_ratio;var ic_aspect_ratio_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 12h-2v3h-3v2h5v-5zM7 9h3V7H5v5h2V9zm14-6H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02z"},"children":[]}]};exports.ic_aspect_ratio_outline=ic_aspect_ratio_outline;var ic_aspect_ratio_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 19.01h18V4.99H3v14.02zM14 15h3v-3h2v5h-5v-2zM5 7h5v2H7v3H5V7z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02zM7 9h3V7H5v5h2zm12 3h-2v3h-3v2h5z"},"children":[]}]};exports.ic_aspect_ratio_twotone=ic_aspect_ratio_twotone;var ic_assessment={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z"},"children":[]}]};exports.ic_assessment=ic_assessment;var ic_assessment_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM7 10h2v7H7zm4-3h2v10h-2zm4 6h2v4h-2z"},"children":[]}]};exports.ic_assessment_outline=ic_assessment_outline;var ic_assessment_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 5v14h14V5H5zm4 12H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM7 10h2v7H7zm4-3h2v10h-2zm4 6h2v4h-2z"},"children":[]}]};exports.ic_assessment_twotone=ic_assessment_twotone;var ic_assignment={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm2 14H7v-2h7v2zm3-4H7v-2h10v2zm0-4H7V7h10v2z"},"children":[]}]};exports.ic_assignment=ic_assignment;var ic_assignment_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 15h7v2H7zm0-4h10v2H7zm0-4h10v2H7zm12-4h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64-.1.23-.16.49-.16.77v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 19H5V5h14v14z"},"children":[]}]};exports.ic_assignment_outline=ic_assignment_outline;var ic_assignment_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 5v14h14V5H5zm9 12H7v-2h7v2zm3-4H7v-2h10v2zm0-4H7V7h10v2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M7 15h7v2H7zm0-4h10v2H7zm0-4h10v2H7zm12-4h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64S3 4.72 3 5v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 19H5V5h14v14z"},"children":[]}]};exports.ic_assignment_twotone=ic_assignment_twotone;var ic_assignment_ind={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm0 4c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm6 12H6v-1.4c0-2 4-3.1 6-3.1s6 1.1 6 3.1V19z"},"children":[]}]};exports.ic_assignment_ind=ic_assignment_ind;var ic_assignment_ind_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.22 0 .41.1.55.25.12.13.2.31.2.5 0 .41-.34.75-.75.75s-.75-.34-.75-.75c0-.19.08-.37.2-.5.14-.15.33-.25.55-.25zM19 19H5V5h14v14zM12 6c-1.65 0-3 1.35-3 3s1.35 3 3 3 3-1.35 3-3-1.35-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-6 6.47V18h12v-1.53c0-2.5-3.97-3.58-6-3.58s-6 1.07-6 3.58zM8.31 16c.69-.56 2.38-1.12 3.69-1.12s3.01.56 3.69 1.12H8.31z"},"children":[]}]};exports.ic_assignment_ind_outline=ic_assignment_ind_outline;var ic_assignment_ind_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 5H5v14h14V5zm-7 1c1.65 0 3 1.35 3 3s-1.35 3-3 3-3-1.35-3-3 1.35-3 3-3zm6 12H6v-1.53c0-2.5 3.97-3.58 6-3.58s6 1.08 6 3.58V18z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20.66 3.88c-.14-.21-.33-.4-.54-.54-.11-.07-.22-.13-.34-.18-.24-.1-.5-.16-.78-.16h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c.28 0 .54-.06.78-.16.12-.05.23-.11.34-.18.21-.14.4-.33.54-.54.21-.32.34-.71.34-1.12V5c0-.41-.13-.8-.34-1.12zM12 2.75c.22 0 .41.1.55.25.12.13.2.31.2.5 0 .41-.34.75-.75.75s-.75-.34-.75-.75c0-.19.08-.37.2-.5.14-.15.33-.25.55-.25zM19 19H5V5h14v14zm-7-7c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0 2.88c-2.03 0-6 1.08-6 3.58V18h12v-1.53c0-2.51-3.97-3.59-6-3.59zM8.31 16c.69-.56 2.38-1.12 3.69-1.12s3.01.56 3.69 1.12H8.31z"},"children":[]}]};exports.ic_assignment_ind_twotone=ic_assignment_ind_twotone;var ic_assignment_late={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-6 15h-2v-2h2v2zm0-4h-2V8h2v6zm-1-9c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z"},"children":[]}]};exports.ic_assignment_late=ic_assignment_late;var ic_assignment_late_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11 15h2v2h-2zm0-8h2v6h-2zm8-4h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64-.1.23-.16.49-.16.77v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 19H5V5h14v14z"},"children":[]}]};exports.ic_assignment_late_outline=ic_assignment_late_outline;var ic_assignment_late_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 5v14h14V5H5zm8 12h-2v-2h2v2zm0-4h-2V7h2v6z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M11 15h2v2h-2zm0-8h2v6h-2zm8-4h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64S3 4.72 3 5v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 19H5V5h14v14z"},"children":[]}]};exports.ic_assignment_late_twotone=ic_assignment_late_twotone;var ic_assignment_return={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm4 12h-4v3l-5-5 5-5v3h4v4z"},"children":[]}]};exports.ic_assignment_return=ic_assignment_return;var ic_assignment_return_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 14h4v-4h-4V7l-5 5 5 5zm7-11h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64-.1.23-.16.49-.16.77v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 19H5V5h14v14z"},"children":[]}]};exports.ic_assignment_return_outline=ic_assignment_return_outline;var ic_assignment_return_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 5v14h14V5H5zm11 9h-4v3l-5-5 5-5v3h4v4z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 7l-5 5 5 5v-3h4v-4h-4zm7-4h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64S3 4.72 3 5v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 19H5V5h14v14z"},"children":[]}]};exports.ic_assignment_return_twotone=ic_assignment_return_twotone;var ic_assignment_returned={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm0 15l-5-5h3V9h4v4h3l-5 5z"},"children":[]}]};exports.ic_assignment_returned=ic_assignment_returned;var ic_assignment_returned_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 12h-3V8h-4v4H7l5 5zm2-9h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64-.1.23-.16.49-.16.77v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 19H5V5h14v14z"},"children":[]}]};exports.ic_assignment_returned_outline=ic_assignment_returned_outline;var ic_assignment_returned_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 19h14V5H5v14zm5-7V8h4v4h3l-5 5-5-5h3z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M17 12h-3V8h-4v4H7l5 5zm2-9h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64S3 4.72 3 5v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 19H5V5h14v14z"},"children":[]}]};exports.ic_assignment_returned_twotone=ic_assignment_returned_twotone;var ic_assignment_turned_in={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-2 14l-4-4 1.41-1.41L10 14.17l6.59-6.59L18 9l-8 8z"},"children":[]}]};exports.ic_assignment_turned_in=ic_assignment_turned_in;var ic_assignment_turned_in_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 9l-1.41-1.42L10 14.17l-2.59-2.58L6 13l4 4zm1-6h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64-.1.23-.16.49-.16.77v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 19H5V5h14v14z"},"children":[]}]};exports.ic_assignment_turned_in_outline=ic_assignment_turned_in_outline;var ic_assignment_turned_in_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 19h14V5H5v14zm2.41-7.41L10 14.17l6.59-6.59L18 9l-8 8-4-4 1.41-1.41z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M18 9l-1.41-1.42L10 14.17l-2.59-2.58L6 13l4 4zm1-6h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64S3 4.72 3 5v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 19H5V5h14v14z"},"children":[]}]};exports.ic_assignment_turned_in_twotone=ic_assignment_turned_in_twotone;var ic_autorenew={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 6v3l4-4-4-4v3c-4.42 0-8 3.58-8 8 0 1.57.46 3.03 1.24 4.26L6.7 14.8c-.45-.83-.7-1.79-.7-2.8 0-3.31 2.69-6 6-6zm6.76 1.74L17.3 9.2c.44.84.7 1.79.7 2.8 0 3.31-2.69 6-6 6v-3l-4 4 4 4v-3c4.42 0 8-3.58 8-8 0-1.57-.46-3.03-1.24-4.26z"},"children":[]}]};exports.ic_autorenew=ic_autorenew;var ic_autorenew_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 6v3l4-4-4-4v3c-4.42 0-8 3.58-8 8 0 1.57.46 3.03 1.24 4.26L6.7 14.8c-.45-.83-.7-1.79-.7-2.8 0-3.31 2.69-6 6-6zm6.76 1.74L17.3 9.2c.44.84.7 1.79.7 2.8 0 3.31-2.69 6-6 6v-3l-4 4 4 4v-3c4.42 0 8-3.58 8-8 0-1.57-.46-3.03-1.24-4.26z"},"children":[]}]};exports.ic_autorenew_outline=ic_autorenew_outline;var ic_autorenew_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 6v3l4-4-4-4v3c-4.42 0-8 3.58-8 8 0 1.57.46 3.03 1.24 4.26L6.7 14.8c-.45-.83-.7-1.79-.7-2.8 0-3.31 2.69-6 6-6zm6.76 1.74L17.3 9.2c.44.84.7 1.79.7 2.8 0 3.31-2.69 6-6 6v-3l-4 4 4 4v-3c4.42 0 8-3.58 8-8 0-1.57-.46-3.03-1.24-4.26z"},"children":[]}]};exports.ic_autorenew_twotone=ic_autorenew_twotone;var ic_backup={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM14 13v4h-4v-4H7l5-5 5 5h-3z"},"children":[]}]};exports.ic_backup=ic_backup;var ic_backup_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.94 6 12 6c2.62 0 4.88 1.86 5.39 4.43l.3 1.5 1.53.11c1.56.1 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3zM8 13h2.55v3h2.9v-3H16l-4-4z"},"children":[]}]};exports.ic_backup_outline=ic_backup_outline;var ic_backup_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19.21 12.04l-1.53-.11-.3-1.5C16.88 7.86 14.62 6 12 6 9.94 6 8.08 7.14 7.12 8.96l-.5.95-1.07.11C3.53 10.24 2 11.95 2 14c0 2.21 1.79 4 4 4h13c1.65 0 3-1.35 3-3 0-1.55-1.22-2.86-2.79-2.96zm-5.76.96v3h-2.91v-3H8l4-4 4 4h-2.55z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.94 6 12 6c2.62 0 4.88 1.86 5.39 4.43l.3 1.5 1.53.11c1.56.1 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3zM8 13h2.55v3h2.9v-3H16l-4-4z"},"children":[]}]};exports.ic_backup_twotone=ic_backup_twotone;var ic_backup_table={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M20,6v14H6v2h14c1.1,0,2-0.9,2-2V6H20z"},"children":[{"name":"path","attribs":{"d":"M20,6v14H6v2h14c1.1,0,2-0.9,2-2V6H20z"},"children":[]}]},{"name":"path","attribs":{"d":"M16,2H4C2.9,2,2,2.9,2,4v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C18,2.9,17.1,2,16,2z M9,16H4v-5h5V16z M16,16h-5v-5h5 V16z M16,9H4V4h12V9z"},"children":[{"name":"path","attribs":{"d":"M16,2H4C2.9,2,2,2.9,2,4v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C18,2.9,17.1,2,16,2z M9,16H4v-5h5V16z M16,16h-5v-5h5 V16z M16,9H4V4h12V9z"},"children":[]}]}]}]}]}]};exports.ic_backup_table=ic_backup_table;var ic_backup_table_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M20,6v14H6v2h14c1.1,0,2-0.9,2-2V6H20z"},"children":[{"name":"path","attribs":{"d":"M20,6v14H6v2h14c1.1,0,2-0.9,2-2V6H20z"},"children":[]}]},{"name":"path","attribs":{"d":"M16,2H4C2.9,2,2,2.9,2,4v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C18,2.9,17.1,2,16,2z M9,16H4v-5h5V16z M16,16h-5v-5h5 V16z M16,9H4V4h12V9z"},"children":[{"name":"path","attribs":{"d":"M16,2H4C2.9,2,2,2.9,2,4v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C18,2.9,17.1,2,16,2z M9,16H4v-5h5V16z M16,16h-5v-5h5 V16z M16,9H4V4h12V9z"},"children":[]}]}]}]}]}]};exports.ic_backup_table_outline=ic_backup_table_outline;var ic_backup_table_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"height":"5","opacity":".3","width":"5","x":"11","y":"11"},"children":[{"name":"rect","attribs":{"height":"5","opacity":".3","width":"5","x":"11","y":"11"},"children":[]}]},{"name":"rect","attribs":{"height":"5","opacity":".3","width":"5","x":"4","y":"11"},"children":[{"name":"rect","attribs":{"height":"5","opacity":".3","width":"5","x":"4","y":"11"},"children":[]}]},{"name":"rect","attribs":{"height":"5","opacity":".3","width":"12","x":"4","y":"4"},"children":[{"name":"rect","attribs":{"height":"5","opacity":".3","width":"12","x":"4","y":"4"},"children":[]}]},{"name":"path","attribs":{"d":"M20,6v14H6v2h14c1.1,0,2-0.9,2-2V6H20z"},"children":[{"name":"path","attribs":{"d":"M20,6v14H6v2h14c1.1,0,2-0.9,2-2V6H20z"},"children":[]}]},{"name":"path","attribs":{"d":"M18,16V4c0-1.1-0.9-2-2-2H4C2.9,2,2,2.9,2,4v12c0,1.1,0.9,2,2,2h12C17.1,18,18,17.1,18,16z M4,4h12v5H4V4z M9,16H4v-5h5 V16z M11,11h5v5h-5V11z"},"children":[{"name":"path","attribs":{"d":"M18,16V4c0-1.1-0.9-2-2-2H4C2.9,2,2,2.9,2,4v12c0,1.1,0.9,2,2,2h12C17.1,18,18,17.1,18,16z M4,4h12v5H4V4z M9,16H4v-5h5 V16z M11,11h5v5h-5V11z"},"children":[]}]}]}]}]}]};exports.ic_backup_table_twotone=ic_backup_table_twotone;var ic_batch_prediction={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[]}]},{"name":"path","attribs":{"d":"M17,8H7c-1.1,0-2,0.9-2,2v10c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V10C19,8.9,18.1,8,17,8z M13,20.5h-2V19h2V20.5z M13,18h-2 c0-1.5-2.5-3-2.5-5c0-1.93,1.57-3.5,3.5-3.5c1.93,0,3.5,1.57,3.5,3.5C15.5,15,13,16.5,13,18z M18,6.5H6v0C6,5.67,6.67,5,7.5,5h9 C17.33,5,18,5.67,18,6.5L18,6.5z M17,3.5H7v0C7,2.67,7.67,2,8.5,2h7C16.33,2,17,2.67,17,3.5L17,3.5z"},"children":[{"name":"path","attribs":{"d":"M17,8H7c-1.1,0-2,0.9-2,2v10c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V10C19,8.9,18.1,8,17,8z M13,20.5h-2V19h2V20.5z M13,18h-2 c0-1.5-2.5-3-2.5-5c0-1.93,1.57-3.5,3.5-3.5c1.93,0,3.5,1.57,3.5,3.5C15.5,15,13,16.5,13,18z M18,6.5H6v0C6,5.67,6.67,5,7.5,5h9 C17.33,5,18,5.67,18,6.5L18,6.5z M17,3.5H7v0C7,2.67,7.67,2,8.5,2h7C16.33,2,17,2.67,17,3.5L17,3.5z"},"children":[]}]}]}]};exports.ic_batch_prediction=ic_batch_prediction;var ic_batch_prediction_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[]}]},{"name":"path","attribs":{"d":"M17,8H7c-1.1,0-2,0.9-2,2v10c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V10C19,8.9,18.1,8,17,8z M13,20.5h-2V19h2V20.5z M13,18h-2 c0-1.5-2.5-3-2.5-5c0-1.93,1.57-3.5,3.5-3.5c1.93,0,3.5,1.57,3.5,3.5C15.5,15,13,16.5,13,18z M18,6.5H6v0C6,5.67,6.67,5,7.5,5h9 C17.33,5,18,5.67,18,6.5L18,6.5z M17,3.5H7v0C7,2.67,7.67,2,8.5,2h7C16.33,2,17,2.67,17,3.5L17,3.5z"},"children":[{"name":"path","attribs":{"d":"M17,8H7c-1.1,0-2,0.9-2,2v10c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V10C19,8.9,18.1,8,17,8z M13,20.5h-2V19h2V20.5z M13,18h-2 c0-1.5-2.5-3-2.5-5c0-1.93,1.57-3.5,3.5-3.5c1.93,0,3.5,1.57,3.5,3.5C15.5,15,13,16.5,13,18z M18,6.5H6v0C6,5.67,6.67,5,7.5,5h9 C17.33,5,18,5.67,18,6.5L18,6.5z M17,3.5H7v0C7,2.67,7.67,2,8.5,2h7C16.33,2,17,2.67,17,3.5L17,3.5z"},"children":[]}]}]}]};exports.ic_batch_prediction_outline=ic_batch_prediction_outline;var ic_batch_prediction_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[]}]},{"name":"path","attribs":{"d":"M13,20.5h-2V19h2V20.5z M13,18h-2c0-1.5-2.5-3-2.5-5c0-1.93,1.57-3.5,3.5-3.5c1.93,0,3.5,1.57,3.5,3.5 C15.5,15,13,16.5,13,18z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M13,20.5h-2V19h2V20.5z M13,18h-2c0-1.5-2.5-3-2.5-5c0-1.93,1.57-3.5,3.5-3.5c1.93,0,3.5,1.57,3.5,3.5 C15.5,15,13,16.5,13,18z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M17,8H7c-1.1,0-2,0.9-2,2v10c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V10C19,8.9,18.1,8,17,8z M13,20.5h-2V19h2V20.5z M13,18h-2 c0-1.5-2.5-3-2.5-5c0-1.93,1.57-3.5,3.5-3.5c1.93,0,3.5,1.57,3.5,3.5C15.5,15,13,16.5,13,18z M18,6.5H6v0C6,5.67,6.67,5,7.5,5h9 C17.33,5,18,5.67,18,6.5L18,6.5z M17,3.5H7v0C7,2.67,7.67,2,8.5,2h7C16.33,2,17,2.67,17,3.5L17,3.5z"},"children":[{"name":"path","attribs":{"d":"M17,8H7c-1.1,0-2,0.9-2,2v10c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V10C19,8.9,18.1,8,17,8z M13,20.5h-2V19h2V20.5z M13,18h-2 c0-1.5-2.5-3-2.5-5c0-1.93,1.57-3.5,3.5-3.5c1.93,0,3.5,1.57,3.5,3.5C15.5,15,13,16.5,13,18z M18,6.5H6v0C6,5.67,6.67,5,7.5,5h9 C17.33,5,18,5.67,18,6.5L18,6.5z M17,3.5H7v0C7,2.67,7.67,2,8.5,2h7C16.33,2,17,2.67,17,3.5L17,3.5z"},"children":[]}]}]}]};exports.ic_batch_prediction_twotone=ic_batch_prediction_twotone;var ic_book={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM6 4h5v8l-2.5-1.5L6 12V4z"},"children":[]}]};exports.ic_book=ic_book;var ic_book_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM9 4h2v5l-1-.75L9 9V4zm9 16H6V4h1v9l3-2.25L13 13V4h5v16z"},"children":[]}]};exports.ic_book_outline=ic_book_outline;var ic_book_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13 13l-3-2.25L7 13V4H6v16h12V4h-5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM9 4h2v5l-1-.75L9 9V4zm9 16H6V4h1v9l3-2.25L13 13V4h5v16z"},"children":[]}]};exports.ic_book_twotone=ic_book_twotone;var ic_book_online={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M17,1H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1,17,1z M7,18V6h10v12H7z M16,11V9.14 C16,8.51,15.55,8,15,8H9C8.45,8,8,8.51,8,9.14l0,1.96c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1l0,1.76C8,15.49,8.45,16,9,16h6 c0.55,0,1-0.51,1-1.14V13c-0.55,0-1-0.45-1-1C15,11.45,15.45,11,16,11z M12.5,14.5h-1v-1h1V14.5z M12.5,12.5h-1v-1h1V12.5z M12.5,10.5h-1v-1h1V10.5z"},"children":[{"name":"path","attribs":{"d":"M17,1H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1,17,1z M7,18V6h10v12H7z M16,11V9.14 C16,8.51,15.55,8,15,8H9C8.45,8,8,8.51,8,9.14l0,1.96c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1l0,1.76C8,15.49,8.45,16,9,16h6 c0.55,0,1-0.51,1-1.14V13c-0.55,0-1-0.45-1-1C15,11.45,15.45,11,16,11z M12.5,14.5h-1v-1h1V14.5z M12.5,12.5h-1v-1h1V12.5z M12.5,10.5h-1v-1h1V10.5z"},"children":[]}]}]}]};exports.ic_book_online=ic_book_online;var ic_book_online_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M17,4H7V3h10V4z M17,21H7v-1h10V21z M17,1H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1,17,1 L17,1z M7,6h10v12H7V6z M16,11V9.14C16,8.51,15.55,8,15,8H9C8.45,8,8,8.51,8,9.14l0,1.96c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1 l0,1.76C8,15.49,8.45,16,9,16h6c0.55,0,1-0.51,1-1.14V13c-0.55,0-1-0.45-1-1C15,11.45,15.45,11,16,11z M12.5,14.5h-1v-1h1V14.5z M12.5,12.5h-1v-1h1V12.5z M12.5,10.5h-1v-1h1V10.5z"},"children":[]}]};exports.ic_book_online_outline=ic_book_online_outline;var ic_book_online_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M17,4H7V3h10V4z M17,21H7v-1h10V21z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M17,4H7V3h10V4z M17,21H7v-1h10V21z M17,1H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1,17,1 L17,1z M7,6h10v12H7V6z M16,11V9.14C16,8.51,15.55,8,15,8H9C8.45,8,8,8.51,8,9.14l0,1.96c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1 l0,1.76C8,15.49,8.45,16,9,16h6c0.55,0,1-0.51,1-1.14V13c-0.55,0-1-0.45-1-1C15,11.45,15.45,11,16,11z M12.5,14.5h-1v-1h1V14.5z M12.5,12.5h-1v-1h1V12.5z M12.5,10.5h-1v-1h1V10.5z"},"children":[]}]};exports.ic_book_online_twotone=ic_book_online_twotone;var ic_bookmark={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 3H7c-1.1 0-1.99.9-1.99 2L5 21l7-3 7 3V5c0-1.1-.9-2-2-2z"},"children":[]}]};exports.ic_bookmark=ic_bookmark;var ic_bookmark_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 3H7c-1.1 0-2 .9-2 2v16l7-3 7 3V5c0-1.1-.9-2-2-2z"},"children":[]}]};exports.ic_bookmark_outline=ic_bookmark_outline;var ic_bookmark_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 17.97l5-2.15 5 2.15V5H7z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M17 3H7c-1.1 0-2 .9-2 2v16l7-3 7 3V5c0-1.1-.9-2-2-2zm0 14.97l-5-2.14-5 2.14V5h10v12.97z"},"children":[]}]};exports.ic_bookmark_twotone=ic_bookmark_twotone;var ic_bookmark_border={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 3H7c-1.1 0-1.99.9-1.99 2L5 21l7-3 7 3V5c0-1.1-.9-2-2-2zm0 15l-5-2.18L7 18V5h10v13z"},"children":[]}]};exports.ic_bookmark_border=ic_bookmark_border;var ic_bookmark_border_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 3H7c-1.1 0-2 .9-2 2v16l7-3 7 3V5c0-1.1-.9-2-2-2zm0 15l-5-2.18L7 18V5h10v13z"},"children":[]}]};exports.ic_bookmark_border_outline=ic_bookmark_border_outline;var ic_bookmark_border_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 3H7c-1.1 0-2 .9-2 2v16l7-3 7 3V5c0-1.1-.9-2-2-2zm0 15l-5-2.18L7 18V5h10v13z"},"children":[]}]};exports.ic_bookmark_border_twotone=ic_bookmark_border_twotone;var ic_bookmarks={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 18l2 1V3c0-1.1-.9-2-2-2H8.99C7.89 1 7 1.9 7 3h10c1.1 0 2 .9 2 2v13zM15 5H5c-1.1 0-2 .9-2 2v16l7-3 7 3V7c0-1.1-.9-2-2-2z"},"children":[]}]};exports.ic_bookmarks=ic_bookmarks;var ic_bookmarks_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15 7v12.97l-4.21-1.81-.79-.34-.79.34L5 19.97V7h10m4-6H8.99C7.89 1 7 1.9 7 3h10c1.1 0 2 .9 2 2v13l2 1V3c0-1.1-.9-2-2-2zm-4 4H5c-1.1 0-2 .9-2 2v16l7-3 7 3V7c0-1.1-.9-2-2-2z"},"children":[]}]};exports.ic_bookmarks_outline=ic_bookmarks_outline;var ic_bookmarks_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 1H8.99C7.89 1 7 1.9 7 3h10c1.1 0 2 .9 2 2v13l2 1V3c0-1.1-.9-2-2-2zm-4 4H5c-1.1 0-2 .9-2 2v16l7-3 7 3V7c0-1.1-.9-2-2-2zm0 14.97l-4.21-1.81-.79-.34-.79.34L5 19.97V7h10v12.97z"},"children":[]},{"name":"path","attribs":{"d":"M5 19.97l5-2.15 5 2.15V7H5z","opacity":".3"},"children":[]}]};exports.ic_bookmarks_twotone=ic_bookmarks_twotone;var ic_bug_report={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 8h-2.81c-.45-.78-1.07-1.45-1.82-1.96L17 4.41 15.59 3l-2.17 2.17C12.96 5.06 12.49 5 12 5c-.49 0-.96.06-1.41.17L8.41 3 7 4.41l1.62 1.63C7.88 6.55 7.26 7.22 6.81 8H4v2h2.09c-.05.33-.09.66-.09 1v1H4v2h2v1c0 .34.04.67.09 1H4v2h2.81c1.04 1.79 2.97 3 5.19 3s4.15-1.21 5.19-3H20v-2h-2.09c.05-.33.09-.66.09-1v-1h2v-2h-2v-1c0-.34-.04-.67-.09-1H20V8zm-6 8h-4v-2h4v2zm0-4h-4v-2h4v2z"},"children":[]}]};exports.ic_bug_report=ic_bug_report;var ic_bug_report_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 8h-2.81c-.45-.78-1.07-1.45-1.82-1.96L17 4.41 15.59 3l-2.17 2.17C12.96 5.06 12.49 5 12 5s-.96.06-1.41.17L8.41 3 7 4.41l1.62 1.63C7.88 6.55 7.26 7.22 6.81 8H4v2h2.09c-.05.33-.09.66-.09 1v1H4v2h2v1c0 .34.04.67.09 1H4v2h2.81c1.04 1.79 2.97 3 5.19 3s4.15-1.21 5.19-3H20v-2h-2.09c.05-.33.09-.66.09-1v-1h2v-2h-2v-1c0-.34-.04-.67-.09-1H20V8zm-4 4v3c0 .22-.03.47-.07.7l-.1.65-.37.65c-.72 1.24-2.04 2-3.46 2s-2.74-.77-3.46-2l-.37-.64-.1-.65C8.03 15.48 8 15.23 8 15v-4c0-.23.03-.48.07-.7l.1-.65.37-.65c.3-.52.72-.97 1.21-1.31l.57-.39.74-.18c.31-.08.63-.12.94-.12.32 0 .63.04.95.12l.68.16.61.42c.5.34.91.78 1.21 1.31l.38.65.1.65c.04.22.07.47.07.69v1zm-6 2h4v2h-4zm0-4h4v2h-4z"},"children":[]}]};exports.ic_bug_report_outline=ic_bug_report_outline;var ic_bug_report_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.83 9.65L15.46 9c-.3-.53-.71-.96-1.21-1.31l-.61-.42-.68-.16C12.63 7.04 12.32 7 12 7c-.31 0-.63.04-.94.11l-.74.18-.57.4c-.49.34-.91.79-1.21 1.31l-.37.65-.1.65c-.04.23-.07.48-.07.7v4c0 .22.03.47.07.7l.1.65.37.65c.72 1.24 2.04 2 3.46 2s2.74-.77 3.46-2l.37-.64.1-.65c.04-.24.07-.49.07-.71v-4c0-.22-.03-.47-.07-.7l-.1-.65zM14 16h-4v-2h4v2zm0-4h-4v-2h4v2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 8h-2.81c-.45-.78-1.07-1.45-1.82-1.96L17 4.41 15.59 3l-2.17 2.17C12.96 5.06 12.49 5 12 5s-.96.06-1.41.17L8.41 3 7 4.41l1.62 1.63C7.88 6.55 7.26 7.22 6.81 8H4v2h2.09c-.05.33-.09.66-.09 1v1H4v2h2v1c0 .34.04.67.09 1H4v2h2.81c1.04 1.79 2.97 3 5.19 3s4.15-1.21 5.19-3H20v-2h-2.09c.05-.33.09-.66.09-1v-1h2v-2h-2v-1c0-.34-.04-.67-.09-1H20V8zm-4 4v3c0 .22-.03.47-.07.7l-.1.65-.37.65c-.72 1.24-2.04 2-3.46 2s-2.74-.77-3.46-2l-.37-.64-.1-.65C8.03 15.47 8 15.22 8 15v-4c0-.22.03-.47.07-.7l.1-.65.37-.65c.3-.52.72-.97 1.21-1.31l.57-.39.74-.18c.31-.08.63-.12.94-.12.32 0 .63.04.95.12l.68.16.61.42c.5.34.91.78 1.21 1.31l.38.65.1.65c.04.22.07.47.07.69v1zm-6 2h4v2h-4zm0-4h4v2h-4z"},"children":[]}]};exports.ic_bug_report_twotone=ic_bug_report_twotone;var ic_build={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"clip-rule":"evenodd","d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22.7 19l-9.1-9.1c.9-2.3.4-5-1.5-6.9-2-2-5-2.4-7.4-1.3L9 6 6 9 1.6 4.7C.4 7.1.9 10.1 2.9 12.1c1.9 1.9 4.6 2.4 6.9 1.5l9.1 9.1c.4.4 1 .4 1.4 0l2.3-2.3c.5-.4.5-1.1.1-1.4z"},"children":[]}]};exports.ic_build=ic_build;var ic_build_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22.61 18.99l-9.08-9.08c.93-2.34.45-5.1-1.44-7C9.79.61 6.21.4 3.66 2.26L7.5 6.11 6.08 7.52 2.25 3.69C.39 6.23.6 9.82 2.9 12.11c1.86 1.86 4.57 2.35 6.89 1.48l9.11 9.11c.39.39 1.02.39 1.41 0l2.3-2.3c.4-.38.4-1.01 0-1.41zm-3 1.6l-9.46-9.46c-.61.45-1.29.72-2 .82-1.36.2-2.79-.21-3.83-1.25C3.37 9.76 2.93 8.5 3 7.26l3.09 3.09 4.24-4.24-3.09-3.09c1.24-.07 2.49.37 3.44 1.31 1.08 1.08 1.49 2.57 1.24 3.96-.12.71-.42 1.37-.88 1.96l9.45 9.45-.88.89z"},"children":[]}]};exports.ic_build_outline=ic_build_outline;var ic_build_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11.92 8.28c.24-1.4-.16-2.89-1.24-3.96-.94-.95-2.2-1.39-3.44-1.32l3.09 3.09-4.24 4.24L3 7.24c-.07 1.24.37 2.49 1.31 3.44 1.04 1.04 2.47 1.45 3.83 1.25.71-.1 1.4-.38 2-.82l9.46 9.46.88-.88-9.45-9.45c.47-.6.77-1.26.89-1.96z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M22.61 18.97L13.54 9.9c.93-2.34.45-5.1-1.44-7C9.8.6 6.22.39 3.67 2.25L7.5 6.08 6.08 7.5 2.25 3.67C.39 6.21.6 9.79 2.9 12.09c1.86 1.86 4.57 2.35 6.89 1.48l9.11 9.11c.39.39 1.02.39 1.41 0l2.3-2.3c.4-.38.4-1.02 0-1.41zm-3 1.6l-9.46-9.46c-.61.45-1.29.72-2 .82-1.36.2-2.79-.21-3.83-1.25-.95-.94-1.39-2.2-1.32-3.44l3.09 3.09 4.24-4.24L7.24 3c1.24-.07 2.49.37 3.44 1.31 1.08 1.08 1.49 2.57 1.24 3.96-.12.7-.42 1.36-.88 1.95l9.45 9.45-.88.9z"},"children":[]}]};exports.ic_build_twotone=ic_build_twotone;var ic_build_circle={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10 C22,6.48,17.52,2,12,2z M16.9,15.49l-1.4,1.4c-0.2,0.2-0.51,0.2-0.71,0l-3.41-3.41c-1.22,0.43-2.64,0.17-3.62-0.81 c-1.11-1.11-1.3-2.79-0.59-4.1l2.35,2.35l1.41-1.41L8.58,7.17c1.32-0.71,2.99-0.52,4.1,0.59c0.98,0.98,1.24,2.4,0.81,3.62 l3.41,3.41C17.09,14.98,17.09,15.3,16.9,15.49z","fill-rule":"evenodd"},"children":[{"name":"path","attribs":{"d":"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10 C22,6.48,17.52,2,12,2z M16.9,15.49l-1.4,1.4c-0.2,0.2-0.51,0.2-0.71,0l-3.41-3.41c-1.22,0.43-2.64,0.17-3.62-0.81 c-1.11-1.11-1.3-2.79-0.59-4.1l2.35,2.35l1.41-1.41L8.58,7.17c1.32-0.71,2.99-0.52,4.1,0.59c0.98,0.98,1.24,2.4,0.81,3.62 l3.41,3.41C17.09,14.98,17.09,15.3,16.9,15.49z","fill-rule":"evenodd"},"children":[]}]}]}]}]}]};exports.ic_build_circle=ic_build_circle;var ic_build_circle_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10 C22,6.48,17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8c0-4.41,3.59-8,8-8s8,3.59,8,8C20,16.41,16.41,20,12,20z","fill-rule":"evenodd"},"children":[{"name":"path","attribs":{"d":"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10 C22,6.48,17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8c0-4.41,3.59-8,8-8s8,3.59,8,8C20,16.41,16.41,20,12,20z","fill-rule":"evenodd"},"children":[]}]},{"name":"path","attribs":{"d":"M13.49,11.38c0.43-1.22,0.17-2.64-0.81-3.62c-1.11-1.11-2.79-1.3-4.1-0.59 l2.35,2.35l-1.41,1.41L7.17,8.58c-0.71,1.32-0.52,2.99,0.59,4.1c0.98,0.98,2.4,1.24,3.62,0.81l3.41,3.41c0.2,0.2,0.51,0.2,0.71,0 l1.4-1.4c0.2-0.2,0.2-0.51,0-0.71L13.49,11.38z","fill-rule":"evenodd"},"children":[{"name":"path","attribs":{"d":"M13.49,11.38c0.43-1.22,0.17-2.64-0.81-3.62c-1.11-1.11-2.79-1.3-4.1-0.59 l2.35,2.35l-1.41,1.41L7.17,8.58c-0.71,1.32-0.52,2.99,0.59,4.1c0.98,0.98,2.4,1.24,3.62,0.81l3.41,3.41c0.2,0.2,0.51,0.2,0.71,0 l1.4-1.4c0.2-0.2,0.2-0.51,0-0.71L13.49,11.38z","fill-rule":"evenodd"},"children":[]}]}]}]}]}]};exports.ic_build_circle_outline=ic_build_circle_outline;var ic_build_circle_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M12,4c-4.41,0-8,3.59-8,8c0,4.41,3.59,8,8,8c4.41,0,8-3.59,8-8C20,7.59,16.41,4,12,4z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M12,4c-4.41,0-8,3.59-8,8c0,4.41,3.59,8,8,8c4.41,0,8-3.59,8-8C20,7.59,16.41,4,12,4z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8 c0-4.41,3.59-8,8-8c4.41,0,8,3.59,8,8C20,16.41,16.41,20,12,20z"},"children":[{"name":"path","attribs":{"d":"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8 c0-4.41,3.59-8,8-8c4.41,0,8,3.59,8,8C20,16.41,16.41,20,12,20z"},"children":[]}]},{"name":"path","attribs":{"d":"M12.68,7.76c-1.11-1.11-2.79-1.3-4.1-0.59l2.35,2.35l-1.41,1.41L7.17,8.58c-0.71,1.32-0.52,2.99,0.59,4.1 c0.98,0.98,2.4,1.24,3.62,0.81l3.41,3.41c0.2,0.2,0.51,0.2,0.71,0l1.4-1.4c0.2-0.2,0.2-0.51,0-0.71l-3.41-3.41 C13.92,10.15,13.66,8.74,12.68,7.76z"},"children":[{"name":"path","attribs":{"d":"M12.68,7.76c-1.11-1.11-2.79-1.3-4.1-0.59l2.35,2.35l-1.41,1.41L7.17,8.58c-0.71,1.32-0.52,2.99,0.59,4.1 c0.98,0.98,2.4,1.24,3.62,0.81l3.41,3.41c0.2,0.2,0.51,0.2,0.71,0l1.4-1.4c0.2-0.2,0.2-0.51,0-0.71l-3.41-3.41 C13.92,10.15,13.66,8.74,12.68,7.76z"},"children":[]}]}]}]}]}]};exports.ic_build_circle_twotone=ic_build_circle_twotone;var ic_cached={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 8l-4 4h3c0 3.31-2.69 6-6 6-1.01 0-1.97-.25-2.8-.7l-1.46 1.46C8.97 19.54 10.43 20 12 20c4.42 0 8-3.58 8-8h3l-4-4zM6 12c0-3.31 2.69-6 6-6 1.01 0 1.97.25 2.8.7l1.46-1.46C15.03 4.46 13.57 4 12 4c-4.42 0-8 3.58-8 8H1l4 4 4-4H6z"},"children":[]}]};exports.ic_cached=ic_cached;var ic_cached_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 8l-4 4h3c0 3.31-2.69 6-6 6-1.01 0-1.97-.25-2.8-.7l-1.46 1.46C8.97 19.54 10.43 20 12 20c4.42 0 8-3.58 8-8h3l-4-4zM6 12c0-3.31 2.69-6 6-6 1.01 0 1.97.25 2.8.7l1.46-1.46C15.03 4.46 13.57 4 12 4c-4.42 0-8 3.58-8 8H1l4 4 4-4H6z"},"children":[]}]};exports.ic_cached_outline=ic_cached_outline;var ic_cached_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 8l-4 4h3c0 3.31-2.69 6-6 6-1.01 0-1.97-.25-2.8-.7l-1.46 1.46C8.97 19.54 10.43 20 12 20c4.42 0 8-3.58 8-8h3l-4-4zM6 12c0-3.31 2.69-6 6-6 1.01 0 1.97.25 2.8.7l1.46-1.46C15.03 4.46 13.57 4 12 4c-4.42 0-8 3.58-8 8H1l4 4 4-4H6z"},"children":[]}]};exports.ic_cached_twotone=ic_cached_twotone;var ic_calendar_today={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 3h-1V1h-2v2H7V1H5v2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 18H4V8h16v13z"},"children":[]}]};exports.ic_calendar_today=ic_calendar_today;var ic_calendar_today_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 3h-1V1h-2v2H7V1H5v2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 18H4V10h16v11zm0-13H4V5h16v3z"},"children":[]}]};exports.ic_calendar_today_outline=ic_calendar_today_outline;var ic_calendar_today_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 3h-1V1h-2v2H7V1H5v2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 2v3H4V5h16zM4 21V10h16v11H4z"},"children":[]},{"name":"path","attribs":{"d":"M4 5.01h16V8H4z","opacity":".3"},"children":[]}]};exports.ic_calendar_today_twotone=ic_calendar_today_twotone;var ic_calendar_view_day={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 17h18v2H3zm0-7h18v5H3zm0-4h18v2H3z"},"children":[]}]};exports.ic_calendar_view_day=ic_calendar_view_day;var ic_calendar_view_day_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 17h18v2H3zm16-5v1H5v-1h14m2-2H3v5h18v-5zM3 6h18v2H3z"},"children":[]}]};exports.ic_calendar_view_day_outline=ic_calendar_view_day_outline;var ic_calendar_view_day_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 17h18v2H3zm16-5v1H5v-1h14m2-2H3v5h18v-5zM3 6h18v2H3z"},"children":[]},{"name":"path","attribs":{"d":"M5 12h14v1H5z","opacity":".3"},"children":[]}]};exports.ic_calendar_view_day_twotone=ic_calendar_view_day_twotone;var ic_camera_enhance={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9 3L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2h-3.17L15 3H9zm3 15c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z"},"children":[]},{"name":"path","attribs":{"d":"M12 17l1.25-2.75L16 13l-2.75-1.25L12 9l-1.25 2.75L8 13l2.75 1.25z"},"children":[]}]};exports.ic_camera_enhance=ic_camera_enhance;var ic_camera_enhance_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 10l-.94 2.06L9 13l2.06.94L12 16l.94-2.06L15 13l-2.06-.94zm8-5h-3.17L15 3H9L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 14H4V7h4.05l.59-.65L9.88 5h4.24l1.24 1.35.59.65H20v12zM12 8c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3z"},"children":[]}]};exports.ic_camera_enhance_outline=ic_camera_enhance_outline;var ic_camera_enhance_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.95 7l-.59-.65L14.12 5H9.88L8.65 6.35l-.6.65H4v12h16V7h-4.05zM12 18c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 10l-.94 2.06L9 13l2.06.94L12 16l.94-2.06L15 13l-2.06-.94zm8-5h-3.17L15 3H9L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 14H4V7h4.05l.59-.65L9.88 5h4.24l1.24 1.35.59.65H20v12zM12 8c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3z"},"children":[]}]};exports.ic_camera_enhance_twotone=ic_camera_enhance_twotone;var ic_cancel_schedule_send={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M16.5,9c-0.42,0-0.83,0.04-1.24,0.11L1.01,3L1,10l9,2l-9,2l0.01,7l8.07-3.46C9.59,21.19,12.71,24,16.5,24 c4.14,0,7.5-3.36,7.5-7.5S20.64,9,16.5,9z M16.5,22c-3.03,0-5.5-2.47-5.5-5.5s2.47-5.5,5.5-5.5s5.5,2.47,5.5,5.5S19.53,22,16.5,22 z"},"children":[{"name":"path","attribs":{"d":"M16.5,9c-0.42,0-0.83,0.04-1.24,0.11L1.01,3L1,10l9,2l-9,2l0.01,7l8.07-3.46C9.59,21.19,12.71,24,16.5,24 c4.14,0,7.5-3.36,7.5-7.5S20.64,9,16.5,9z M16.5,22c-3.03,0-5.5-2.47-5.5-5.5s2.47-5.5,5.5-5.5s5.5,2.47,5.5,5.5S19.53,22,16.5,22 z"},"children":[]}]},{"name":"polygon","attribs":{"points":"18.27,14.03 16.5,15.79 14.73,14.03 14.03,14.73 15.79,16.5 14.03,18.27 14.73,18.97 16.5,17.21 18.27,18.97 18.97,18.27 17.21,16.5 18.97,14.73"},"children":[{"name":"polygon","attribs":{"points":"18.27,14.03 16.5,15.79 14.73,14.03 14.03,14.73 15.79,16.5 14.03,18.27 14.73,18.97 16.5,17.21 18.27,18.97 18.97,18.27 17.21,16.5 18.97,14.73"},"children":[]}]}]}]}]}]};exports.ic_cancel_schedule_send=ic_cancel_schedule_send;var ic_cancel_schedule_send_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M16.5,9c-0.42,0-0.83,0.04-1.24,0.11L1.01,3L1,10l10.06,1.34c-0.42,0.44-0.78,0.93-1.09,1.46L1,14l0.01,7l8.07-3.46 C9.59,21.19,12.71,24,16.5,24c4.14,0,7.5-3.36,7.5-7.5S20.64,9,16.5,9z M3,8.25l0.01-2.22l7.51,3.22L3,8.25z M9.1,15.36L3,17.97 v-2.22l6.17-0.82C9.14,15.07,9.12,15.21,9.1,15.36z M16.5,22c-3.03,0-5.5-2.47-5.5-5.5s2.47-5.5,5.5-5.5s5.5,2.47,5.5,5.5 S19.53,22,16.5,22z"},"children":[{"name":"path","attribs":{"d":"M16.5,9c-0.42,0-0.83,0.04-1.24,0.11L1.01,3L1,10l10.06,1.34c-0.42,0.44-0.78,0.93-1.09,1.46L1,14l0.01,7l8.07-3.46 C9.59,21.19,12.71,24,16.5,24c4.14,0,7.5-3.36,7.5-7.5S20.64,9,16.5,9z M3,8.25l0.01-2.22l7.51,3.22L3,8.25z M9.1,15.36L3,17.97 v-2.22l6.17-0.82C9.14,15.07,9.12,15.21,9.1,15.36z M16.5,22c-3.03,0-5.5-2.47-5.5-5.5s2.47-5.5,5.5-5.5s5.5,2.47,5.5,5.5 S19.53,22,16.5,22z"},"children":[]}]},{"name":"polygon","attribs":{"points":"18.27,14.03 16.5,15.79 14.73,14.03 14.03,14.73 15.79,16.5 14.03,18.27 14.73,18.97 16.5,17.21 18.27,18.97 18.97,18.27 17.21,16.5 18.97,14.73"},"children":[{"name":"polygon","attribs":{"points":"18.27,14.03 16.5,15.79 14.73,14.03 14.03,14.73 15.79,16.5 14.03,18.27 14.73,18.97 16.5,17.21 18.27,18.97 18.97,18.27 17.21,16.5 18.97,14.73"},"children":[]}]}]}]}]}]};exports.ic_cancel_schedule_send_outline=ic_cancel_schedule_send_outline;var ic_cancel_schedule_send_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M3,17.97l6.1-2.61c0.02-0.14,0.04-0.29,0.07-0.43L3,15.75V17.97z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M3,17.97l6.1-2.61c0.02-0.14,0.04-0.29,0.07-0.43L3,15.75V17.97z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M16.5,11c-3.03,0-5.5,2.47-5.5,5.5s2.47,5.5,5.5,5.5s5.5-2.47,5.5-5.5S19.53,11,16.5,11z M18.97,18.27 l-0.71,0.71l-1.77-1.77l-1.77,1.77l-0.71-0.71l1.77-1.77l-1.77-1.77l0.71-0.71l1.77,1.77l1.77-1.77l0.71,0.71l-1.77,1.77 L18.97,18.27z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M16.5,11c-3.03,0-5.5,2.47-5.5,5.5s2.47,5.5,5.5,5.5s5.5-2.47,5.5-5.5S19.53,11,16.5,11z M18.97,18.27 l-0.71,0.71l-1.77-1.77l-1.77,1.77l-0.71-0.71l1.77-1.77l-1.77-1.77l0.71-0.71l1.77,1.77l1.77-1.77l0.71,0.71l-1.77,1.77 L18.97,18.27z","opacity":".3"},"children":[]}]},{"name":"polygon","attribs":{"opacity":".3","points":"3,8.25 10.52,9.25 3.01,6.03"},"children":[{"name":"polygon","attribs":{"opacity":".3","points":"3,8.25 10.52,9.25 3.01,6.03"},"children":[]}]},{"name":"path","attribs":{"d":"M16.5,9c-0.42,0-0.83,0.04-1.24,0.11c0,0,0,0,0,0L1.01,3L1,10l10.06,1.34c-0.42,0.44-0.78,0.93-1.09,1.46L1,14l0.01,7 l8.07-3.46c0,0,0,0,0,0C9.59,21.19,12.71,24,16.5,24c4.14,0,7.5-3.36,7.5-7.5S20.64,9,16.5,9z M3,8.25l0.01-2.22l7.51,3.22L3,8.25 z M9.1,15.36L3,17.97v-2.22l6.17-0.82C9.14,15.07,9.12,15.21,9.1,15.36z M16.5,22c-3.03,0-5.5-2.47-5.5-5.5s2.47-5.5,5.5-5.5 s5.5,2.47,5.5,5.5S19.53,22,16.5,22z"},"children":[{"name":"path","attribs":{"d":"M16.5,9c-0.42,0-0.83,0.04-1.24,0.11c0,0,0,0,0,0L1.01,3L1,10l10.06,1.34c-0.42,0.44-0.78,0.93-1.09,1.46L1,14l0.01,7 l8.07-3.46c0,0,0,0,0,0C9.59,21.19,12.71,24,16.5,24c4.14,0,7.5-3.36,7.5-7.5S20.64,9,16.5,9z M3,8.25l0.01-2.22l7.51,3.22L3,8.25 z M9.1,15.36L3,17.97v-2.22l6.17-0.82C9.14,15.07,9.12,15.21,9.1,15.36z M16.5,22c-3.03,0-5.5-2.47-5.5-5.5s2.47-5.5,5.5-5.5 s5.5,2.47,5.5,5.5S19.53,22,16.5,22z"},"children":[]}]},{"name":"polygon","attribs":{"points":"18.27,14.03 16.5,15.79 14.73,14.03 14.03,14.73 15.79,16.5 14.03,18.27 14.73,18.97 16.5,17.21 18.27,18.97 18.97,18.27 17.21,16.5 18.97,14.73"},"children":[{"name":"polygon","attribs":{"points":"18.27,14.03 16.5,15.79 14.73,14.03 14.03,14.73 15.79,16.5 14.03,18.27 14.73,18.97 16.5,17.21 18.27,18.97 18.97,18.27 17.21,16.5 18.97,14.73"},"children":[]}]}]}]}]}]};exports.ic_cancel_schedule_send_twotone=ic_cancel_schedule_send_twotone;var ic_card_giftcard={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 6h-2.18c.11-.31.18-.65.18-1 0-1.66-1.34-3-3-3-1.05 0-1.96.54-2.5 1.35l-.5.67-.5-.68C10.96 2.54 10.05 2 9 2 7.34 2 6 3.34 6 5c0 .35.07.69.18 1H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-5-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm11 15H4v-2h16v2zm0-5H4V8h5.08L7 10.83 8.62 12 11 8.76l1-1.36 1 1.36L15.38 12 17 10.83 14.92 8H20v6z"},"children":[]}]};exports.ic_card_giftcard=ic_card_giftcard;var ic_card_giftcard_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 6h-2.18c.11-.31.18-.65.18-1 0-1.66-1.34-3-3-3-1.05 0-1.96.54-2.5 1.35l-.5.67-.5-.68C10.96 2.54 10.05 2 9 2 7.34 2 6 3.34 6 5c0 .35.07.69.18 1H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-5-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm11 15H4v-2h16v2zm0-5H4V8h5.08L7 10.83 8.62 12 12 7.4l3.38 4.6L17 10.83 14.92 8H20v6z"},"children":[]}]};exports.ic_card_giftcard_outline=ic_card_giftcard_outline;var ic_card_giftcard_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 17h16v2H4zm13-6.17L15.38 12 12 7.4 8.62 12 7 10.83 9.08 8H4v6h16V8h-5.08z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 6h-2.18c.11-.31.18-.65.18-1 0-1.66-1.34-3-3-3-1.05 0-1.96.54-2.5 1.35l-.5.67-.5-.68C10.96 2.54 10.05 2 9 2 7.34 2 6 3.34 6 5c0 .35.07.69.18 1H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-5-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm11 15H4v-2h16v2zm0-5H4V8h5.08L7 10.83 8.62 12 12 7.4l3.38 4.6L17 10.83 14.92 8H20v6z"},"children":[]}]};exports.ic_card_giftcard_twotone=ic_card_giftcard_twotone;var ic_card_membership={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 2H4c-1.11 0-2 .89-2 2v11c0 1.11.89 2 2 2h4v5l4-2 4 2v-5h4c1.11 0 2-.89 2-2V4c0-1.11-.89-2-2-2zm0 13H4v-2h16v2zm0-5H4V4h16v6z"},"children":[]}]};exports.ic_card_membership=ic_card_membership;var ic_card_membership_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 2H4c-1.11 0-2 .89-2 2v11c0 1.11.89 2 2 2h4v5l4-2 4 2v-5h4c1.11 0 2-.89 2-2V4c0-1.11-.89-2-2-2zm0 13H4v-2h16v2zm0-5H4V4h16v6z"},"children":[]}]};exports.ic_card_membership_outline=ic_card_membership_outline;var ic_card_membership_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 4h16v6H4zm0 9h16v2H4z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 2H4c-1.11 0-2 .89-2 2v11c0 1.11.89 2 2 2h4v5l4-2 4 2v-5h4c1.11 0 2-.89 2-2V4c0-1.11-.89-2-2-2zm0 13H4v-2h16v2zm0-5H4V4h16v6z"},"children":[]}]};exports.ic_card_membership_twotone=ic_card_membership_twotone;var ic_card_travel={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 6h-3V4c0-1.11-.89-2-2-2H9c-1.11 0-2 .89-2 2v2H4c-1.11 0-2 .89-2 2v11c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zM9 4h6v2H9V4zm11 15H4v-2h16v2zm0-5H4V8h3v2h2V8h6v2h2V8h3v6z"},"children":[]}]};exports.ic_card_travel=ic_card_travel;var ic_card_travel_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 6h-3V4c0-1.11-.89-2-2-2H9c-1.11 0-2 .89-2 2v2H4c-1.11 0-2 .89-2 2v11c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zM9 4h6v2H9V4zm11 15H4v-2h16v2zm0-5H4V8h3v2h2V8h6v2h2V8h3v6z"},"children":[]}]};exports.ic_card_travel_outline=ic_card_travel_outline;var ic_card_travel_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 17h16v2H4zm13-7h-2V8H9v2H7V8H4v6h16V8h-3z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 6h-3V4c0-1.11-.89-2-2-2H9c-1.11 0-2 .89-2 2v2H4c-1.11 0-2 .89-2 2v11c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zM9 4h6v2H9V4zm11 15H4v-2h16v2zm0-5H4V8h3v2h2V8h6v2h2V8h3v6z"},"children":[]}]};exports.ic_card_travel_twotone=ic_card_travel_twotone;var ic_change_history={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 7.77L18.39 18H5.61L12 7.77M12 4L2 20h20L12 4z"},"children":[]}]};exports.ic_change_history=ic_change_history;var ic_change_history_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 7.77L18.39 18H5.61L12 7.77M12 4L2 20h20L12 4z"},"children":[]}]};exports.ic_change_history_outline=ic_change_history_outline;var ic_change_history_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 7.77L5.61 18h12.78z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 4L2 20h20L12 4zm0 3.77L18.39 18H5.61L12 7.77z"},"children":[]}]};exports.ic_change_history_twotone=ic_change_history_twotone;var ic_check_circle={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"},"children":[]}]};exports.ic_check_circle=ic_check_circle;var ic_check_circle_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm4.59-12.42L10 14.17l-2.59-2.58L6 13l4 4 8-8z"},"children":[]}]};exports.ic_check_circle_outline=ic_check_circle_outline;var ic_check_circle_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm-2 13l-4-4 1.41-1.41L10 14.17l6.59-6.59L18 9l-8 8z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm4.59-12.42L10 14.17l-2.59-2.58L6 13l4 4 8-8z"},"children":[]}]};exports.ic_check_circle_twotone=ic_check_circle_twotone;var ic_check_circle_outline_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm4.59-12.42L10 14.17l-2.59-2.58L6 13l4 4 8-8z"},"children":[]}]};exports.ic_check_circle_outline_outline=ic_check_circle_outline_outline;var ic_check_circle_outline_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm4.59-12.42L10 14.17l-2.59-2.58L6 13l4 4 8-8z"},"children":[]}]};exports.ic_check_circle_outline_twotone=ic_check_circle_outline_twotone;var ic_chrome_reader_mode={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M-74 29h48v48h-48V29zM0 0h24v24H0V0zm0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13 12h7v1.5h-7zm0-2.5h7V11h-7zm0 5h7V16h-7zM21 4H3c-1.1 0-2 .9-2 2v13c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 15h-9V6h9v13z"},"children":[]}]};exports.ic_chrome_reader_mode=ic_chrome_reader_mode;var ic_chrome_reader_mode_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 4H3c-1.1 0-2 .9-2 2v13c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM3 19V6h8v13H3zm18 0h-8V6h8v13zm-7-9.5h6V11h-6zm0 2.5h6v1.5h-6zm0 2.5h6V16h-6z"},"children":[]}]};exports.ic_chrome_reader_mode_outline=ic_chrome_reader_mode_outline;var ic_chrome_reader_mode_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 6h8v13H3z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M21 4H3c-1.1 0-2 .9-2 2v13c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM11 19H3V6h8v13zm10 0h-8V6h8v13zm-7-9.5h6V11h-6zm0 2.5h6v1.5h-6zm0 2.5h6V16h-6z"},"children":[]}]};exports.ic_chrome_reader_mode_twotone=ic_chrome_reader_mode_twotone;var ic_circle_notifications={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 16.5c-.83 0-1.5-.67-1.5-1.5h3c0 .83-.67 1.5-1.5 1.5zm5-2.5H7v-1l1-1v-2.61C8 9.27 9.03 7.47 11 7v-.5c0-.57.43-1 1-1s1 .43 1 1V7c1.97.47 3 2.28 3 4.39V14l1 1v1z"},"children":[]}]};exports.ic_circle_notifications=ic_circle_notifications;var ic_class={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM6 4h5v8l-2.5-1.5L6 12V4z"},"children":[]}]};exports.ic_class=ic_class;var ic_class_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM9 4h2v5l-1-.75L9 9V4zm9 16H6V4h1v9l3-2.25L13 13V4h5v16z"},"children":[]}]};exports.ic_class_outline=ic_class_outline;var ic_class_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13 13l-3-2.25L7 13V4H6v16h12V4h-5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM9 4h2v5l-1-.75L9 9V4zm9 16H6V4h1v9l3-2.25L13 13V4h5v16z"},"children":[]}]};exports.ic_class_twotone=ic_class_twotone;var ic_close_fullscreen={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M22,3.41l-5.29,5.29L20,12h-8V4l3.29,3.29L20.59,2L22,3.41z M3.41,22l5.29-5.29L12,20v-8H4l3.29,3.29L2,20.59L3.41,22z"},"children":[]}]};exports.ic_close_fullscreen=ic_close_fullscreen;var ic_close_fullscreen_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M22,3.41l-5.29,5.29L20,12h-8V4l3.29,3.29L20.59,2L22,3.41z M3.41,22l5.29-5.29L12,20v-8H4l3.29,3.29L2,20.59L3.41,22z"},"children":[]}]};exports.ic_close_fullscreen_outline=ic_close_fullscreen_outline;var ic_close_fullscreen_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M22,3.41l-5.29,5.29L20,12h-8V4l3.29,3.29L20.59,2L22,3.41z M3.41,22l5.29-5.29L12,20v-8H4l3.29,3.29L2,20.59L3.41,22z"},"children":[]}]};exports.ic_close_fullscreen_twotone=ic_close_fullscreen_twotone;var ic_code={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9.4 16.6L4.8 12l4.6-4.6L8 6l-6 6 6 6 1.4-1.4zm5.2 0l4.6-4.6-4.6-4.6L16 6l6 6-6 6-1.4-1.4z"},"children":[]}]};exports.ic_code=ic_code;var ic_code_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9.4 16.6L4.8 12l4.6-4.6L8 6l-6 6 6 6 1.4-1.4zm5.2 0l4.6-4.6-4.6-4.6L16 6l6 6-6 6-1.4-1.4z"},"children":[]}]};exports.ic_code_outline=ic_code_outline;var ic_code_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9.4 16.6L4.8 12l4.6-4.6L8 6l-6 6 6 6 1.4-1.4zm5.2 0l4.6-4.6-4.6-4.6L16 6l6 6-6 6-1.4-1.4z"},"children":[]}]};exports.ic_code_twotone=ic_code_twotone;var ic_comment_bank={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M20,2H4C2.9,2,2,2.9,2,4v18l4-4h14c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M19,13l-2.5-1.5L14,13V5h5V13z"},"children":[{"name":"path","attribs":{"d":"M20,2H4C2.9,2,2,2.9,2,4v18l4-4h14c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M19,13l-2.5-1.5L14,13V5h5V13z"},"children":[]}]}]}]};exports.ic_comment_bank=ic_comment_bank;var ic_comment_bank_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"18,14 18,6 13,6 13,14 15.5,12.5"},"children":[{"name":"polygon","attribs":{"points":"18,14 18,6 13,6 13,14 15.5,12.5"},"children":[]}]},{"name":"path","attribs":{"d":"M20,2H4C2.9,2,2,2.9,2,4v18l4-4h14c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M20,16H6l-2,2V4h16V16z"},"children":[{"name":"path","attribs":{"d":"M20,2H4C2.9,2,2,2.9,2,4v18l4-4h14c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M20,16H6l-2,2V4h16V16z"},"children":[]}]}]}]}]}]};exports.ic_comment_bank_outline=ic_comment_bank_outline;var ic_comment_bank_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M4,18l2-2h14V4H4V18z M13,6h5v8l-2.5-1.5L13,14V6z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M4,18l2-2h14V4H4V18z M13,6h5v8l-2.5-1.5L13,14V6z","opacity":".3"},"children":[]}]},{"name":"polygon","attribs":{"points":"18,14 18,6 13,6 13,14 15.5,12.5"},"children":[{"name":"polygon","attribs":{"points":"18,14 18,6 13,6 13,14 15.5,12.5"},"children":[]}]},{"name":"path","attribs":{"d":"M20,2H4C2.9,2,2,2.9,2,4v18l4-4h14c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M20,16H6l-2,2V4h16V16z"},"children":[{"name":"path","attribs":{"d":"M20,2H4C2.9,2,2,2.9,2,4v18l4-4h14c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M20,16H6l-2,2V4h16V16z"},"children":[]}]}]}]}]}]};exports.ic_comment_bank_twotone=ic_comment_bank_twotone;var ic_commute={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 4H5C3.34 4 2 5.34 2 7v8c0 1.66 1.34 3 3 3l-1 1v1h1l2-2.03L9 18v-5H4V5.98L13 6v2h2V7c0-1.66-1.34-3-3-3zM5 14c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm15.57-4.34c-.14-.4-.52-.66-.97-.66h-7.19c-.46 0-.83.26-.98.66L10 13.77l.01 5.51c0 .38.31.72.69.72h.62c.38 0 .68-.38.68-.76V18h8v1.24c0 .38.31.76.69.76h.61c.38 0 .69-.34.69-.72l.01-1.37v-4.14l-1.43-4.11zm-8.16.34h7.19l1.03 3h-9.25l1.03-3zM12 16c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm8 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z"},"children":[]}]};exports.ic_commute=ic_commute;var ic_commute_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 4H5C3.34 4 2 5.34 2 7v8c0 1.66 1.34 3 3 3l-1 1v1h1l2-2h2v-5H4V6h9v2h2V7c0-1.66-1.34-3-3-3zM5 14c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm15.57-4.34c-.14-.4-.52-.66-.97-.66h-7.19c-.46 0-.83.26-.98.66l-1.42 4.11v5.51c0 .38.31.72.69.72h.62c.38 0 .68-.38.68-.76V18h8v1.24c0 .38.31.76.69.76h.61c.38 0 .69-.34.69-.72l.01-1.37v-4.14l-1.43-4.11zm-8.16.34h7.19l1.03 3h-9.25l1.03-3zM12 16c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm8 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z"},"children":[]}]};exports.ic_commute_outline=ic_commute_outline;var ic_commute_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 4H5C3.34 4 2 5.34 2 7v8c0 1.66 1.34 3 3 3l-1 1v1h1l2-2h2v-5H4V6h9v2h2V7c0-1.66-1.34-3-3-3zM5 14c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm15.57-4.34c-.14-.4-.52-.66-.97-.66h-7.19c-.46 0-.83.26-.98.66l-1.42 4.11v5.51c0 .38.31.72.69.72h.62c.38 0 .68-.38.68-.76V18h8v1.24c0 .38.31.76.69.76h.61c.38 0 .69-.34.69-.72l.01-1.37v-4.14l-1.43-4.11zm-8.16.34h7.19l1.03 3h-9.25l1.03-3zM12 16c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm8 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z"},"children":[]}]};exports.ic_commute_twotone=ic_commute_twotone;var ic_compare_arrows={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M9.01,14H2v2h7.01v3L13,15l-3.99-4V14z M14.99,13v-3H22V8h-7.01V5L11,9L14.99,13z"},"children":[{"name":"path","attribs":{"d":"M9.01,14H2v2h7.01v3L13,15l-3.99-4V14z M14.99,13v-3H22V8h-7.01V5L11,9L14.99,13z"},"children":[]}]}]}]}]}]}]}]};exports.ic_compare_arrows=ic_compare_arrows;var ic_compare_arrows_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9.01 14H2v2h7.01v3L13 15l-3.99-4v3zm5.98-1v-3H22V8h-7.01V5L11 9l3.99 4z"},"children":[]}]};exports.ic_compare_arrows_outline=ic_compare_arrows_outline;var ic_compare_arrows_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9.01 14H2v2h7.01v3L13 15l-3.99-4v3zm5.98-1v-3H22V8h-7.01V5L11 9l3.99 4z"},"children":[]}]};exports.ic_compare_arrows_twotone=ic_compare_arrows_twotone;var ic_compress={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8 19h3v3h2v-3h3l-4-4-4 4zm8-15h-3V1h-2v3H8l4 4 4-4zM4 9v2h16V9H4z"},"children":[]},{"name":"path","attribs":{"d":"M4 12h16v2H4z"},"children":[]},{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]}]};exports.ic_compress=ic_compress;var ic_contact_page={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M14,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8L14,2z M12,10c1.1,0,2,0.9,2,2c0,1.1-0.9,2-2,2s-2-0.9-2-2 C10,10.9,10.9,10,12,10z M16,18H8v-0.57c0-0.81,0.48-1.53,1.22-1.85C10.07,15.21,11.01,15,12,15c0.99,0,1.93,0.21,2.78,0.58 C15.52,15.9,16,16.62,16,17.43V18z"},"children":[]}]};exports.ic_contact_page=ic_contact_page;var ic_contact_page_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M13.17,4L18,8.83V20H6V4H13.17 M14,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8L14,2L14,2z M12,14 c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2s-2,0.9-2,2C10,13.1,10.9,14,12,14z M16,17.43c0-0.81-0.48-1.53-1.22-1.85 C13.93,15.21,12.99,15,12,15c-0.99,0-1.93,0.21-2.78,0.58C8.48,15.9,8,16.62,8,17.43V18h8V17.43z"},"children":[]}]};exports.ic_contact_page_outline=ic_contact_page_outline;var ic_contact_page_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M13.17,4L18,8.83V20H6V4H13.17 M12,14c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2s-2,0.9-2,2C10,13.1,10.9,14,12,14z M16,17.43c0-0.81-0.48-1.53-1.22-1.85C13.93,15.21,12.99,15,12,15c-0.99,0-1.93,0.21-2.78,0.58C8.48,15.9,8,16.62,8,17.43V18h8 V17.43z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M13.17,4L18,8.83V20H6V4H13.17 M14,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8L14,2L14,2z M12,14 c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2s-2,0.9-2,2C10,13.1,10.9,14,12,14z M16,17.43c0-0.81-0.48-1.53-1.22-1.85 C13.93,15.21,12.99,15,12,15c-0.99,0-1.93,0.21-2.78,0.58C8.48,15.9,8,16.62,8,17.43V18h8V17.43z"},"children":[]}]};exports.ic_contact_page_twotone=ic_contact_page_twotone;var ic_contact_support={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11.5 2C6.81 2 3 5.81 3 10.5S6.81 19 11.5 19h.5v3c4.86-2.34 8-7 8-11.5C20 5.81 16.19 2 11.5 2zm1 14.5h-2v-2h2v2zm0-3.5h-2c0-3.25 3-3 3-5 0-1.1-.9-2-2-2s-2 .9-2 2h-2c0-2.21 1.79-4 4-4s4 1.79 4 4c0 2.5-3 2.75-3 5z"},"children":[]}]};exports.ic_contact_support=ic_contact_support;var ic_contact_support_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11 23.59v-3.6c-5.01-.26-9-4.42-9-9.49C2 5.26 6.26 1 11.5 1S21 5.26 21 10.5c0 4.95-3.44 9.93-8.57 12.4l-1.43.69zM11.5 3C7.36 3 4 6.36 4 10.5S7.36 18 11.5 18H13v2.3c3.64-2.3 6-6.08 6-9.8C19 6.36 15.64 3 11.5 3zm-1 11.5h2v2h-2zm2-1.5h-2c0-3.25 3-3 3-5 0-1.1-.9-2-2-2s-2 .9-2 2h-2c0-2.21 1.79-4 4-4s4 1.79 4 4c0 2.5-3 2.75-3 5z"},"children":[]}]};exports.ic_contact_support_outline=ic_contact_support_outline;var ic_contact_support_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11.5 3C7.36 3 4 6.36 4 10.5S7.36 18 11.5 18H13v2.3c3.64-2.3 6-6.08 6-9.8C19 6.36 15.64 3 11.5 3zm1 13.5h-2v-2h2v2zm0-3.5h-2c0-3.25 3-3 3-5 0-1.1-.9-2-2-2s-2 .9-2 2h-2c0-2.21 1.79-4 4-4s4 1.79 4 4c0 2.5-3 2.75-3 5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M11.5 1C6.26 1 2 5.26 2 10.5c0 5.07 3.99 9.23 9 9.49v3.6l1.43-.69C17.56 20.43 21 15.45 21 10.5 21 5.26 16.74 1 11.5 1zM13 20.3V18h-1.5C7.36 18 4 14.64 4 10.5S7.36 3 11.5 3 19 6.36 19 10.5c0 3.73-2.36 7.51-6 9.8zm-2.5-5.8h2v2h-2zm1-10.5c-2.21 0-4 1.79-4 4h2c0-1.1.9-2 2-2s2 .9 2 2c0 2-3 1.75-3 5h2c0-2.25 3-2.5 3-5 0-2.21-1.79-4-4-4z"},"children":[]}]};exports.ic_contact_support_twotone=ic_contact_support_twotone;var ic_contactless={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M8.46,14.45L7.1,13.83 c0.28-0.61,0.41-1.24,0.4-1.86c-0.01-0.63-0.14-1.24-0.4-1.8l1.36-0.63c0.35,0.75,0.53,1.56,0.54,2.4 C9.01,12.8,8.83,13.64,8.46,14.45z M11.53,16.01l-1.3-0.74c0.52-0.92,0.78-1.98,0.78-3.15c0-1.19-0.27-2.33-0.8-3.4l1.34-0.67 c0.64,1.28,0.96,2.65,0.96,4.07C12.51,13.55,12.18,14.86,11.53,16.01z M14.67,17.33l-1.35-0.66c0.78-1.6,1.18-3.18,1.18-4.69 c0-1.51-0.4-3.07-1.18-4.64l1.34-0.67C15.56,8.45,16,10.23,16,11.98C16,13.72,15.56,15.52,14.67,17.33z"},"children":[{"name":"path","attribs":{"d":"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M8.46,14.45L7.1,13.83 c0.28-0.61,0.41-1.24,0.4-1.86c-0.01-0.63-0.14-1.24-0.4-1.8l1.36-0.63c0.35,0.75,0.53,1.56,0.54,2.4 C9.01,12.8,8.83,13.64,8.46,14.45z M11.53,16.01l-1.3-0.74c0.52-0.92,0.78-1.98,0.78-3.15c0-1.19-0.27-2.33-0.8-3.4l1.34-0.67 c0.64,1.28,0.96,2.65,0.96,4.07C12.51,13.55,12.18,14.86,11.53,16.01z M14.67,17.33l-1.35-0.66c0.78-1.6,1.18-3.18,1.18-4.69 c0-1.51-0.4-3.07-1.18-4.64l1.34-0.67C15.56,8.45,16,10.23,16,11.98C16,13.72,15.56,15.52,14.67,17.33z"},"children":[]}]}]}]};exports.ic_contactless=ic_contactless;var ic_contactless_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,20c-4.42,0-8-3.58-8-8 s3.58-8,8-8s8,3.58,8,8S16.42,20,12,20z"},"children":[{"name":"path","attribs":{"d":"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,20c-4.42,0-8-3.58-8-8 s3.58-8,8-8s8,3.58,8,8S16.42,20,12,20z"},"children":[]}]},{"name":"path","attribs":{"d":"M7.1,10.18c0.26,0.56,0.39,1.16,0.4,1.8c0.01,0.63-0.13,1.25-0.4,1.86l1.37,0.62c0.37-0.81,0.55-1.65,0.54-2.5 c-0.01-0.84-0.19-1.65-0.54-2.4L7.1,10.18z"},"children":[{"name":"path","attribs":{"d":"M7.1,10.18c0.26,0.56,0.39,1.16,0.4,1.8c0.01,0.63-0.13,1.25-0.4,1.86l1.37,0.62c0.37-0.81,0.55-1.65,0.54-2.5 c-0.01-0.84-0.19-1.65-0.54-2.4L7.1,10.18z"},"children":[]}]},{"name":"path","attribs":{"d":"M13.33,7.33c0.78,1.57,1.18,3.14,1.18,4.64c0,1.51-0.4,3.09-1.18,4.69l1.35,0.66c0.88-1.81,1.33-3.61,1.33-5.35 c0-1.74-0.45-3.53-1.33-5.31L13.33,7.33z"},"children":[{"name":"path","attribs":{"d":"M13.33,7.33c0.78,1.57,1.18,3.14,1.18,4.64c0,1.51-0.4,3.09-1.18,4.69l1.35,0.66c0.88-1.81,1.33-3.61,1.33-5.35 c0-1.74-0.45-3.53-1.33-5.31L13.33,7.33z"},"children":[]}]},{"name":"path","attribs":{"d":"M10.2,8.72c0.53,1.07,0.8,2.21,0.8,3.4c0,1.17-0.26,2.23-0.78,3.15l1.3,0.74c0.65-1.15,0.98-2.45,0.98-3.89 c0-1.42-0.32-2.79-0.96-4.07L10.2,8.72z"},"children":[{"name":"path","attribs":{"d":"M10.2,8.72c0.53,1.07,0.8,2.21,0.8,3.4c0,1.17-0.26,2.23-0.78,3.15l1.3,0.74c0.65-1.15,0.98-2.45,0.98-3.89 c0-1.42-0.32-2.79-0.96-4.07L10.2,8.72z"},"children":[]}]}]}]}]}]};exports.ic_contactless_outline=ic_contactless_outline;var ic_contactless_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M12,4c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S16.42,4,12,4z M8.46,14.45L7.1,13.83 c0.28-0.61,0.41-1.24,0.4-1.86c-0.01-0.63-0.14-1.24-0.4-1.8l1.36-0.63c0.35,0.75,0.53,1.56,0.54,2.4 C9.01,12.8,8.83,13.64,8.46,14.45z M11.53,16.01l-1.3-0.74c0.52-0.92,0.78-1.98,0.78-3.15c0-1.19-0.27-2.33-0.8-3.4l1.34-0.67 c0.64,1.28,0.96,2.65,0.96,4.07C12.51,13.55,12.18,14.86,11.53,16.01z M14.67,17.33l-1.35-0.66c0.78-1.6,1.18-3.18,1.18-4.69 c0-1.51-0.4-3.07-1.18-4.64l1.34-0.67C15.56,8.45,16,10.23,16,11.98C16,13.72,15.56,15.52,14.67,17.33z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M12,4c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S16.42,4,12,4z M8.46,14.45L7.1,13.83 c0.28-0.61,0.41-1.24,0.4-1.86c-0.01-0.63-0.14-1.24-0.4-1.8l1.36-0.63c0.35,0.75,0.53,1.56,0.54,2.4 C9.01,12.8,8.83,13.64,8.46,14.45z M11.53,16.01l-1.3-0.74c0.52-0.92,0.78-1.98,0.78-3.15c0-1.19-0.27-2.33-0.8-3.4l1.34-0.67 c0.64,1.28,0.96,2.65,0.96,4.07C12.51,13.55,12.18,14.86,11.53,16.01z M14.67,17.33l-1.35-0.66c0.78-1.6,1.18-3.18,1.18-4.69 c0-1.51-0.4-3.07-1.18-4.64l1.34-0.67C15.56,8.45,16,10.23,16,11.98C16,13.72,15.56,15.52,14.67,17.33z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,20c-4.42,0-8-3.58-8-8 s3.58-8,8-8s8,3.58,8,8S16.42,20,12,20z"},"children":[{"name":"path","attribs":{"d":"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,20c-4.42,0-8-3.58-8-8 s3.58-8,8-8s8,3.58,8,8S16.42,20,12,20z"},"children":[]}]},{"name":"path","attribs":{"d":"M7.1,10.18c0.26,0.56,0.39,1.16,0.4,1.8c0.01,0.63-0.13,1.25-0.4,1.86l1.37,0.62c0.37-0.81,0.55-1.65,0.54-2.5 c-0.01-0.84-0.19-1.65-0.54-2.4L7.1,10.18z"},"children":[{"name":"path","attribs":{"d":"M7.1,10.18c0.26,0.56,0.39,1.16,0.4,1.8c0.01,0.63-0.13,1.25-0.4,1.86l1.37,0.62c0.37-0.81,0.55-1.65,0.54-2.5 c-0.01-0.84-0.19-1.65-0.54-2.4L7.1,10.18z"},"children":[]}]},{"name":"path","attribs":{"d":"M13.33,7.33c0.78,1.57,1.18,3.14,1.18,4.64c0,1.51-0.4,3.09-1.18,4.69l1.35,0.66c0.88-1.81,1.33-3.61,1.33-5.35 c0-1.74-0.45-3.53-1.33-5.31L13.33,7.33z"},"children":[{"name":"path","attribs":{"d":"M13.33,7.33c0.78,1.57,1.18,3.14,1.18,4.64c0,1.51-0.4,3.09-1.18,4.69l1.35,0.66c0.88-1.81,1.33-3.61,1.33-5.35 c0-1.74-0.45-3.53-1.33-5.31L13.33,7.33z"},"children":[]}]},{"name":"path","attribs":{"d":"M10.2,8.72c0.53,1.07,0.8,2.21,0.8,3.4c0,1.17-0.26,2.23-0.78,3.15l1.3,0.74c0.65-1.15,0.98-2.45,0.98-3.89 c0-1.42-0.32-2.79-0.96-4.07L10.2,8.72z"},"children":[{"name":"path","attribs":{"d":"M10.2,8.72c0.53,1.07,0.8,2.21,0.8,3.4c0,1.17-0.26,2.23-0.78,3.15l1.3,0.74c0.65-1.15,0.98-2.45,0.98-3.89 c0-1.42-0.32-2.79-0.96-4.07L10.2,8.72z"},"children":[]}]}]}]}]}]};exports.ic_contactless_twotone=ic_contactless_twotone;var ic_copyright={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M11.88,9.14c1.28,0.06,1.61,1.15,1.63,1.66h1.79c-0.08-1.98-1.49-3.19-3.45-3.19C9.64,7.61,8,9,8,12.14 c0,1.94,0.93,4.24,3.84,4.24c2.22,0,3.41-1.65,3.44-2.95h-1.79c-0.03,0.59-0.45,1.38-1.63,1.44C10.55,14.83,10,13.81,10,12.14 C10,9.25,11.28,9.16,11.88,9.14z M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8 s3.59-8,8-8s8,3.59,8,8S16.41,20,12,20z"},"children":[{"name":"path","attribs":{"d":"M11.88,9.14c1.28,0.06,1.61,1.15,1.63,1.66h1.79c-0.08-1.98-1.49-3.19-3.45-3.19C9.64,7.61,8,9,8,12.14 c0,1.94,0.93,4.24,3.84,4.24c2.22,0,3.41-1.65,3.44-2.95h-1.79c-0.03,0.59-0.45,1.38-1.63,1.44C10.55,14.83,10,13.81,10,12.14 C10,9.25,11.28,9.16,11.88,9.14z M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8 s3.59-8,8-8s8,3.59,8,8S16.41,20,12,20z"},"children":[]}]}]}]}]}]}]}]};exports.ic_copyright=ic_copyright;var ic_copyright_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10.08 10.86c.05-.33.16-.62.3-.87s.34-.46.59-.62c.24-.15.54-.22.91-.23.23.01.44.05.63.13.2.09.38.21.52.36s.25.33.34.53.13.42.14.64h1.79c-.02-.47-.11-.9-.28-1.29s-.4-.73-.7-1.01-.66-.5-1.08-.66-.88-.23-1.39-.23c-.65 0-1.22.11-1.7.34s-.88.53-1.2.92-.56.84-.71 1.36S8 11.29 8 11.87v.27c0 .58.08 1.12.23 1.64s.39.97.71 1.35.72.69 1.2.91c.48.22 1.05.34 1.7.34.47 0 .91-.08 1.32-.23s.77-.36 1.08-.63.56-.58.74-.94.29-.74.3-1.15h-1.79c-.01.21-.06.4-.15.58s-.21.33-.36.46-.32.23-.52.3c-.19.07-.39.09-.6.1-.36-.01-.66-.08-.89-.23-.25-.16-.45-.37-.59-.62s-.25-.55-.3-.88-.08-.67-.08-1v-.27c0-.35.03-.68.08-1.01zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"},"children":[]}]};exports.ic_copyright_outline=ic_copyright_outline;var ic_copyright_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm-1.92 9.14c.05.33.16.63.3.88s.34.46.59.62c.23.15.53.22.89.23.21-.01.41-.03.6-.1.2-.07.37-.17.52-.3.15-.13.27-.28.36-.46.09-.18.14-.37.15-.58h1.79c-.01.41-.12.79-.3 1.15-.18.36-.43.67-.74.94-.31.27-.67.48-1.08.63-.41.15-.85.23-1.32.23-.65 0-1.22-.12-1.7-.34-.48-.22-.88-.53-1.2-.91s-.56-.83-.71-1.35c-.15-.52-.23-1.06-.23-1.64v-.27c0-.58.09-1.12.24-1.64.15-.52.39-.97.71-1.36s.72-.69 1.2-.92c.48-.23 1.05-.34 1.7-.34.51 0 .97.07 1.39.23.42.16.78.38 1.08.66.3.28.53.62.7 1.01.17.39.26.82.28 1.29h-1.79c-.01-.22-.05-.44-.14-.64-.09-.2-.2-.38-.34-.53-.14-.15-.32-.27-.52-.36-.19-.08-.4-.12-.63-.13-.37.01-.67.08-.91.23-.25.16-.45.37-.59.62s-.25.54-.3.87c-.05.33-.08.66-.08 1.01v.27c0 .33.03.67.08 1z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M10.08 10.86c.05-.33.16-.62.3-.87s.34-.46.59-.62c.24-.15.54-.22.91-.23.23.01.44.05.63.13.2.09.38.21.52.36s.25.33.34.53c.09.2.13.42.14.64h1.79c-.02-.47-.11-.9-.28-1.29-.17-.39-.4-.73-.7-1.01-.3-.28-.66-.5-1.08-.66-.42-.16-.88-.23-1.39-.23-.65 0-1.22.11-1.7.34-.48.23-.88.53-1.2.92s-.56.84-.71 1.36c-.15.52-.24 1.06-.24 1.64v.27c0 .58.08 1.12.23 1.64.15.52.39.97.71 1.35s.72.69 1.2.91c.48.22 1.05.34 1.7.34.47 0 .91-.08 1.32-.23.41-.15.77-.36 1.08-.63.31-.27.56-.58.74-.94.18-.36.29-.74.3-1.15h-1.79c-.01.21-.06.4-.15.58-.09.18-.21.33-.36.46s-.32.23-.52.3c-.19.07-.39.09-.6.1-.36-.01-.66-.08-.89-.23-.25-.16-.45-.37-.59-.62s-.25-.55-.3-.88c-.05-.33-.08-.67-.08-1v-.27c0-.35.03-.68.08-1.01zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"},"children":[]}]};exports.ic_copyright_twotone=ic_copyright_twotone;var ic_credit_card={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4v-6h16v6zm0-10H4V6h16v2z"},"children":[]}]};exports.ic_credit_card=ic_credit_card;var ic_credit_card_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4v-6h16v6zm0-10H4V6h16v2z"},"children":[]}]};exports.ic_credit_card_outline=ic_credit_card_outline;var ic_credit_card_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 12h16v6H4zm0-6h16v2H4z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4v-6h16v6zm0-10H4V6h16v2z"},"children":[]}]};exports.ic_credit_card_twotone=ic_credit_card_twotone;var ic_dangerous={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.73 3H8.27L3 8.27v7.46L8.27 21h7.46L21 15.73V8.27L15.73 3zM17 15.74L15.74 17 12 13.26 8.26 17 7 15.74 10.74 12 7 8.26 8.26 7 12 10.74 15.74 7 17 8.26 13.26 12 17 15.74z"},"children":[]}]};exports.ic_dangerous=ic_dangerous;var ic_dashboard={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 13h8V3H3v10zm0 8h8v-6H3v6zm10 0h8V11h-8v10zm0-18v6h8V3h-8z"},"children":[]}]};exports.ic_dashboard=ic_dashboard;var ic_dashboard_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 5v2h-4V5h4M9 5v6H5V5h4m10 8v6h-4v-6h4M9 17v2H5v-2h4M21 3h-8v6h8V3zM11 3H3v10h8V3zm10 8h-8v10h8V11zm-10 4H3v6h8v-6z"},"children":[]}]};exports.ic_dashboard_outline=ic_dashboard_outline;var ic_dashboard_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 5h4v6H5zm10 8h4v6h-4zM5 17h4v2H5zM15 5h4v2h-4z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M3 13h8V3H3v10zm2-8h4v6H5V5zm8 16h8V11h-8v10zm2-8h4v6h-4v-6zM13 3v6h8V3h-8zm6 4h-4V5h4v2zM3 21h8v-6H3v6zm2-4h4v2H5v-2z"},"children":[]}]};exports.ic_dashboard_twotone=ic_dashboard_twotone;var ic_dashboard_customize={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 3h8v8H3zm10 0h8v8h-8zM3 13h8v8H3zm15 0h-2v3h-3v2h3v3h2v-3h3v-2h-3z"},"children":[]}]};exports.ic_dashboard_customize=ic_dashboard_customize;var ic_date_range={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9 11H7v2h2v-2zm4 0h-2v2h2v-2zm4 0h-2v2h2v-2zm2-7h-1V2h-2v2H8V2H6v2H5c-1.11 0-1.99.9-1.99 2L3 20c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V9h14v11z"},"children":[]}]};exports.ic_date_range=ic_date_range;var ic_date_range_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 11h2v2H7v-2zm14-5v14c0 1.1-.9 2-2 2H5c-1.11 0-2-.9-2-2l.01-14c0-1.1.88-2 1.99-2h1V2h2v2h8V2h2v2h1c1.1 0 2 .9 2 2zM5 8h14V6H5v2zm14 12V10H5v10h14zm-4-7h2v-2h-2v2zm-4 0h2v-2h-2v2z"},"children":[]}]};exports.ic_date_range_outline=ic_date_range_outline;var ic_date_range_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 8h14V6H5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M7 11h2v2H7zm12-7h-1V2h-2v2H8V2H6v2H5c-1.11 0-1.99.9-1.99 2L3 20c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V10h14v10zm0-12H5V6h14v2zm-4 3h2v2h-2zm-4 0h2v2h-2z"},"children":[]}]};exports.ic_date_range_twotone=ic_date_range_twotone;var ic_delete={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM19 4h-3.5l-1-1h-5l-1 1H5v2h14V4z"},"children":[]}]};exports.ic_delete=ic_delete;var ic_delete_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16 9v10H8V9h8m-1.5-6h-5l-1 1H5v2h14V4h-3.5l-1-1zM18 7H6v12c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7z"},"children":[]}]};exports.ic_delete_outline=ic_delete_outline;var ic_delete_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8 9h8v10H8z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M15.5 4l-1-1h-5l-1 1H5v2h14V4zM6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM8 9h8v10H8V9z"},"children":[]}]};exports.ic_delete_twotone=ic_delete_twotone;var ic_delete_forever={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zm2.46-7.12l1.41-1.41L12 12.59l2.12-2.12 1.41 1.41L13.41 14l2.12 2.12-1.41 1.41L12 15.41l-2.12 2.12-1.41-1.41L10.59 14l-2.13-2.12zM15.5 4l-1-1h-5l-1 1H5v2h14V4z"},"children":[]}]};exports.ic_delete_forever=ic_delete_forever;var ic_delete_forever_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14.12 10.47L12 12.59l-2.13-2.12-1.41 1.41L10.59 14l-2.12 2.12 1.41 1.41L12 15.41l2.12 2.12 1.41-1.41L13.41 14l2.12-2.12zM15.5 4l-1-1h-5l-1 1H5v2h14V4zM6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM8 9h8v10H8V9z"},"children":[]}]};exports.ic_delete_forever_outline=ic_delete_forever_outline;var ic_delete_forever_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16 9H8v10h8V9zm-.47 7.12l-1.41 1.41L12 15.41l-2.12 2.12-1.41-1.41L10.59 14l-2.13-2.12 1.41-1.41L12 12.59l2.12-2.12 1.41 1.41L13.41 14l2.12 2.12z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M14.12 10.47L12 12.59l-2.13-2.12-1.41 1.41L10.59 14l-2.12 2.12 1.41 1.41L12 15.41l2.12 2.12 1.41-1.41L13.41 14l2.12-2.12zM15.5 4l-1-1h-5l-1 1H5v2h14V4zM6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM8 9h8v10H8V9z"},"children":[]}]};exports.ic_delete_forever_twotone=ic_delete_forever_twotone;var ic_delete_outline_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM8 9h8v10H8V9zm7.5-5l-1-1h-5l-1 1H5v2h14V4h-3.5z"},"children":[]}]};exports.ic_delete_outline_outline=ic_delete_outline_outline;var ic_delete_outline_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM8 9h8v10H8V9zm7.5-5l-1-1h-5l-1 1H5v2h14V4h-3.5z"},"children":[]}]};exports.ic_delete_outline_twotone=ic_delete_outline_twotone;var ic_description={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm2 16H8v-2h8v2zm0-4H8v-2h8v2zm-3-5V3.5L18.5 9H13z"},"children":[]}]};exports.ic_description=ic_description;var ic_description_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8 16h8v2H8zm0-4h8v2H8zm6-10H6c-1.1 0-2 .9-2 2v16c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm4 18H6V4h7v5h5v11z"},"children":[]}]};exports.ic_description_outline=ic_description_outline;var ic_description_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13 4H6v16h12V9h-5V4zm3 14H8v-2h8v2zm0-6v2H8v-2h8z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M8 16h8v2H8zm0-4h8v2H8zm6-10H6c-1.1 0-2 .9-2 2v16c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm4 18H6V4h7v5h5v11z"},"children":[]}]};exports.ic_description_twotone=ic_description_twotone;var ic_disabled_by_default={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M3,3v18h18V3H3z M17,15.59L15.59,17L12,13.41L8.41,17L7,15.59L10.59,12L7,8.41L8.41,7L12,10.59L15.59,7L17,8.41L13.41,12 L17,15.59z"},"children":[]}]};exports.ic_disabled_by_default=ic_disabled_by_default;var ic_disabled_by_default_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M19,19H5V5h14V19z M3,3v18h18V3H3z M17,15.59L15.59,17L12,13.41L8.41,17L7,15.59L10.59,12L7,8.41L8.41,7L12,10.59L15.59,7 L17,8.41L13.41,12L17,15.59z"},"children":[]}]};exports.ic_disabled_by_default_outline=ic_disabled_by_default_outline;var ic_disabled_by_default_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M5,5v14h14V5H5z M17,15.59L15.59,17L12,13.41L8.41,17L7,15.59L10.59,12L7,8.41L8.41,7L12,10.59L15.59,7 L17,8.41L13.41,12L17,15.59z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M19,19H5V5h14V19z M3,3v18h18V3H3z M17,15.59L15.59,17L12,13.41L8.41,17L7,15.59L10.59,12L7,8.41L8.41,7L12,10.59L15.59,7 L17,8.41L13.41,12L17,15.59z"},"children":[]}]};exports.ic_disabled_by_default_twotone=ic_disabled_by_default_twotone;var ic_dns={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 13H4c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h16c.55 0 1-.45 1-1v-6c0-.55-.45-1-1-1zM7 19c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM20 3H4c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h16c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1zM7 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"},"children":[]}]};exports.ic_dns=ic_dns;var ic_dns_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 15v4H5v-4h14m1-2H4c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h16c.55 0 1-.45 1-1v-6c0-.55-.45-1-1-1zM7 18.5c-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM19 5v4H5V5h14m1-2H4c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h16c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1zM7 8.5c-.82 0-1.5-.67-1.5-1.5S6.18 5.5 7 5.5s1.5.68 1.5 1.5S7.83 8.5 7 8.5z"},"children":[]}]};exports.ic_dns_outline=ic_dns_outline;var ic_dns_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 9h14V5H5v4zm2-3.5c.83 0 1.5.67 1.5 1.5S7.83 8.5 7 8.5 5.5 7.83 5.5 7 6.17 5.5 7 5.5zM5 19h14v-4H5v4zm2-3.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 13H4c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h16c.55 0 1-.45 1-1v-6c0-.55-.45-1-1-1zm-1 6H5v-4h14v4zm-12-.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM20 3H4c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h16c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1zm-1 6H5V5h14v4zM7 8.5c.83 0 1.5-.67 1.5-1.5S7.83 5.5 7 5.5 5.5 6.17 5.5 7 6.17 8.5 7 8.5z"},"children":[]}]};exports.ic_dns_twotone=ic_dns_twotone;var ic_done={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"},"children":[]}]};exports.ic_done=ic_done;var ic_done_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"},"children":[]}]};exports.ic_done_outline=ic_done_outline;var ic_done_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"},"children":[]}]};exports.ic_done_twotone=ic_done_twotone;var ic_done_all={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 7l-1.41-1.41-6.34 6.34 1.41 1.41L18 7zm4.24-1.41L11.66 16.17 7.48 12l-1.41 1.41L11.66 19l12-12-1.42-1.41zM.41 13.41L6 19l1.41-1.41L1.83 12 .41 13.41z"},"children":[]}]};exports.ic_done_all=ic_done_all;var ic_done_all_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 7l-1.41-1.41-6.34 6.34 1.41 1.41L18 7zm4.24-1.41L11.66 16.17 7.48 12l-1.41 1.41L11.66 19l12-12-1.42-1.41zM.41 13.41L6 19l1.41-1.41L1.83 12 .41 13.41z"},"children":[]}]};exports.ic_done_all_outline=ic_done_all_outline;var ic_done_all_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 7l-1.41-1.41-6.34 6.34 1.41 1.41L18 7zm4.24-1.41L11.66 16.17 7.48 12l-1.41 1.41L11.66 19l12-12-1.42-1.41zM.41 13.41L6 19l1.41-1.41L1.83 12 .41 13.41z"},"children":[]}]};exports.ic_done_all_twotone=ic_done_all_twotone;var ic_done_outline_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19.77 4.93l1.4 1.4L8.43 19.07l-5.6-5.6 1.4-1.4 4.2 4.2L19.77 4.93m0-2.83L8.43 13.44l-4.2-4.2L0 13.47l8.43 8.43L24 6.33 19.77 2.1z"},"children":[]}]};exports.ic_done_outline_outline=ic_done_outline_outline;var ic_done_outline_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19.77 4.93l1.4 1.4L8.43 19.07l-5.6-5.6 1.4-1.4 4.2 4.2L19.77 4.93m0-2.83L8.43 13.44l-4.2-4.2L0 13.47l8.43 8.43L24 6.33 19.77 2.1z"},"children":[]}]};exports.ic_done_outline_twotone=ic_done_outline_twotone;var ic_donut_large={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M11,5.08V2C6,2.5,2,6.81,2,12s4,9.5,9,10v-3.08c-3-0.48-6-3.4-6-6.92S8,5.56,11,5.08z M18.97,11H22c-0.47-5-4-8.53-9-9 v3.08C16,5.51,18.54,8,18.97,11z M13,18.92V22c5-0.47,8.53-4,9-9h-3.03C18.54,16,16,18.49,13,18.92z"},"children":[{"name":"path","attribs":{"d":"M11,5.08V2C6,2.5,2,6.81,2,12s4,9.5,9,10v-3.08c-3-0.48-6-3.4-6-6.92S8,5.56,11,5.08z M18.97,11H22c-0.47-5-4-8.53-9-9 v3.08C16,5.51,18.54,8,18.97,11z M13,18.92V22c5-0.47,8.53-4,9-9h-3.03C18.54,16,16,18.49,13,18.92z"},"children":[]}]}]}]}]}]}]}]};exports.ic_donut_large=ic_donut_large;var ic_donut_large_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13 5.08c3.06.44 5.48 2.86 5.92 5.92h3.03c-.47-4.72-4.23-8.48-8.95-8.95v3.03zM18.92 13c-.44 3.06-2.86 5.48-5.92 5.92v3.03c4.72-.47 8.48-4.23 8.95-8.95h-3.03zM11 18.92c-3.39-.49-6-3.4-6-6.92s2.61-6.43 6-6.92V2.05c-5.05.5-9 4.76-9 9.95 0 5.19 3.95 9.45 9 9.95v-3.03z"},"children":[]}]};exports.ic_donut_large_outline=ic_donut_large_outline;var ic_donut_large_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13 5.08c3.06.44 5.48 2.86 5.92 5.92h3.03c-.47-4.72-4.23-8.48-8.95-8.95v3.03zM18.92 13c-.44 3.06-2.86 5.48-5.92 5.92v3.03c4.72-.47 8.48-4.23 8.95-8.95h-3.03zM11 18.92c-3.39-.49-6-3.4-6-6.92s2.61-6.43 6-6.92V2.05c-5.05.5-9 4.76-9 9.95 0 5.19 3.95 9.45 9 9.95v-3.03z"},"children":[]}]};exports.ic_donut_large_twotone=ic_donut_large_twotone;var ic_donut_small={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11 9.16V2c-5 .5-9 4.79-9 10s4 9.5 9 10v-7.16c-1-.41-2-1.52-2-2.84s1-2.43 2-2.84zM14.86 11H22c-.48-4.75-4-8.53-9-9v7.16c1 .3 1.52.98 1.86 1.84zM13 14.84V22c5-.47 8.52-4.25 9-9h-7.14c-.34.86-.86 1.54-1.86 1.84z"},"children":[]}]};exports.ic_donut_small=ic_donut_small;var ic_donut_small_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14.82 11h7.13c-.47-4.72-4.23-8.48-8.95-8.95v7.13c.85.31 1.51.97 1.82 1.82zM15 4.58C17 5.4 18.6 7 19.42 9h-3.43c-.28-.37-.62-.71-.99-.99V4.58zM2 12c0 5.19 3.95 9.45 9 9.95v-7.13C9.84 14.4 9 13.3 9 12c0-1.3.84-2.4 2-2.82V2.05c-5.05.5-9 4.76-9 9.95zm7-7.42v3.44c-1.23.92-2 2.39-2 3.98 0 1.59.77 3.06 2 3.99v3.44C6.04 18.24 4 15.35 4 12c0-3.35 2.04-6.24 5-7.42zm4 10.24v7.13c4.72-.47 8.48-4.23 8.95-8.95h-7.13c-.31.85-.97 1.51-1.82 1.82zm2 1.17c.37-.28.71-.61.99-.99h3.43C18.6 17 17 18.6 15 19.42v-3.43z"},"children":[]}]};exports.ic_donut_small_outline=ic_donut_small_outline;var ic_donut_small_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.99 9h3.43C18.6 7 17 5.4 15 4.58v3.43c.37.28.71.62.99.99zM4 12c0 3.35 2.04 6.24 5 7.42v-3.44c-1.23-.93-2-2.4-2-3.99C7 10.4 7.77 8.93 9 8V4.58C6.04 5.76 4 8.65 4 12zm11 3.99v3.43c2-.82 3.6-2.42 4.42-4.42h-3.43c-.28.37-.62.71-.99.99z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M14.82 11h7.13c-.47-4.72-4.23-8.48-8.95-8.95v7.13c.85.31 1.51.97 1.82 1.82zM15 4.58C17 5.4 18.6 7 19.42 9h-3.43c-.28-.37-.62-.71-.99-.99V4.58zM2 12c0 5.19 3.95 9.45 9 9.95v-7.13C9.84 14.4 9 13.3 9 12c0-1.3.84-2.4 2-2.82V2.05c-5.05.5-9 4.76-9 9.95zm7-7.42v3.44c-1.23.92-2 2.39-2 3.98 0 1.59.77 3.06 2 3.99v3.44C6.04 18.24 4 15.35 4 12c0-3.35 2.04-6.24 5-7.42zm4 10.24v7.13c4.72-.47 8.48-4.23 8.95-8.95h-7.13c-.31.85-.97 1.51-1.82 1.82zm2 1.17c.37-.28.71-.61.99-.99h3.43C18.6 17 17 18.6 15 19.42v-3.43z"},"children":[]}]};exports.ic_donut_small_twotone=ic_donut_small_twotone;var ic_drag_indicator={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11 18c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm-2-8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 4c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"},"children":[]}]};exports.ic_drag_indicator=ic_drag_indicator;var ic_drag_indicator_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11 18c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm-2-8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 4c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"},"children":[]}]};exports.ic_drag_indicator_outline=ic_drag_indicator_outline;var ic_drag_indicator_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11 18c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm-2-8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 4c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"},"children":[]}]};exports.ic_drag_indicator_twotone=ic_drag_indicator_twotone;var ic_dynamic_form={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M17,20v-9h-2V4h7l-2,5h2L17,20z M15,13v7H4c-1.1,0-2-0.9-2-2v-3c0-1.1,0.9-2,2-2H15z M6.25,15.75h-1.5v1.5h1.5V15.75z M13,4v7H4c-1.1,0-2-0.9-2-2V6c0-1.1,0.9-2,2-2H13z M6.25,6.75h-1.5v1.5h1.5V6.75z"},"children":[{"name":"path","attribs":{"d":"M17,20v-9h-2V4h7l-2,5h2L17,20z M15,13v7H4c-1.1,0-2-0.9-2-2v-3c0-1.1,0.9-2,2-2H15z M6.25,15.75h-1.5v1.5h1.5V15.75z M13,4v7H4c-1.1,0-2-0.9-2-2V6c0-1.1,0.9-2,2-2H13z M6.25,6.75h-1.5v1.5h1.5V6.75z"},"children":[]}]}]}]};exports.ic_dynamic_form=ic_dynamic_form;var ic_dynamic_form_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M13,11H4c-1.1,0-2-0.9-2-2V6c0-1.1,0.9-2,2-2h9V11z M4,9h7V6H4V9z M15,20H4c-1.1,0-2-0.9-2-2v-3c0-1.1,0.9-2,2-2h11V20z M4,18h9v-3H4V18z M22,9h-2l2-5h-7v7h2v9L22,9z M4.75,17.25h1.5v-1.5h-1.5V17.25z M4.75,8.25h1.5v-1.5h-1.5V8.25z"},"children":[{"name":"path","attribs":{"d":"M13,11H4c-1.1,0-2-0.9-2-2V6c0-1.1,0.9-2,2-2h9V11z M4,9h7V6H4V9z M15,20H4c-1.1,0-2-0.9-2-2v-3c0-1.1,0.9-2,2-2h11V20z M4,18h9v-3H4V18z M22,9h-2l2-5h-7v7h2v9L22,9z M4.75,17.25h1.5v-1.5h-1.5V17.25z M4.75,8.25h1.5v-1.5h-1.5V8.25z"},"children":[]}]}]}]};exports.ic_dynamic_form_outline=ic_dynamic_form_outline;var ic_dynamic_form_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M4,9h7V6H4V9z M4,18h9v-3H4V18z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M4,9h7V6H4V9z M4,18h9v-3H4V18z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M13,11H4c-1.1,0-2-0.9-2-2V6c0-1.1,0.9-2,2-2h9V11z M4,9h7V6H4V9z M15,20H4c-1.1,0-2-0.9-2-2v-3c0-1.1,0.9-2,2-2h11V20z M4,18h9v-3H4V18z M22,9h-2l2-5h-7v7h2v9L22,9z M4.75,17.25h1.5v-1.5h-1.5V17.25z M4.75,8.25h1.5v-1.5h-1.5V8.25z"},"children":[{"name":"path","attribs":{"d":"M13,11H4c-1.1,0-2-0.9-2-2V6c0-1.1,0.9-2,2-2h9V11z M4,9h7V6H4V9z M15,20H4c-1.1,0-2-0.9-2-2v-3c0-1.1,0.9-2,2-2h11V20z M4,18h9v-3H4V18z M22,9h-2l2-5h-7v7h2v9L22,9z M4.75,17.25h1.5v-1.5h-1.5V17.25z M4.75,8.25h1.5v-1.5h-1.5V8.25z"},"children":[]}]}]}]};exports.ic_dynamic_form_twotone=ic_dynamic_form_twotone;var ic_eco={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M6.05,8.05c-2.73,2.73-2.73,7.15-0.02,9.88c1.47-3.4,4.09-6.24,7.36-7.93c-2.77,2.34-4.71,5.61-5.39,9.32 c2.6,1.23,5.8,0.78,7.95-1.37C19.43,14.47,20,4,20,4S9.53,4.57,6.05,8.05z"},"children":[{"name":"path","attribs":{"d":"M6.05,8.05c-2.73,2.73-2.73,7.15-0.02,9.88c1.47-3.4,4.09-6.24,7.36-7.93c-2.77,2.34-4.71,5.61-5.39,9.32 c2.6,1.23,5.8,0.78,7.95-1.37C19.43,14.47,20,4,20,4S9.53,4.57,6.05,8.05z"},"children":[]}]}]}]}]}]};exports.ic_eco=ic_eco;var ic_eco_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M6.05,8.05c-2.73,2.73-2.73,7.17,0,9.9C7.42,19.32,9.21,20,11,20s3.58-0.68,4.95-2.05C19.43,14.47,20,4,20,4 S9.53,4.57,6.05,8.05z M14.54,16.54C13.59,17.48,12.34,18,11,18c-0.89,0-1.73-0.25-2.48-0.68c0.92-2.88,2.62-5.41,4.88-7.32 c-2.63,1.36-4.84,3.46-6.37,6c-1.48-1.96-1.35-4.75,0.44-6.54C9.21,7.72,14.04,6.65,17.8,6.2C17.35,9.96,16.28,14.79,14.54,16.54z"},"children":[{"name":"path","attribs":{"d":"M6.05,8.05c-2.73,2.73-2.73,7.17,0,9.9C7.42,19.32,9.21,20,11,20s3.58-0.68,4.95-2.05C19.43,14.47,20,4,20,4 S9.53,4.57,6.05,8.05z M14.54,16.54C13.59,17.48,12.34,18,11,18c-0.89,0-1.73-0.25-2.48-0.68c0.92-2.88,2.62-5.41,4.88-7.32 c-2.63,1.36-4.84,3.46-6.37,6c-1.48-1.96-1.35-4.75,0.44-6.54C9.21,7.72,14.04,6.65,17.8,6.2C17.35,9.96,16.28,14.79,14.54,16.54z"},"children":[]}]}]}]};exports.ic_eco_outline=ic_eco_outline;var ic_eco_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M7.46,9.46C5.68,11.25,5.55,14.04,7.03,16c1.53-2.54,3.73-4.64,6.37-6c-2.26,1.91-3.95,4.44-4.88,7.32 C9.27,17.75,10.11,18,11,18c1.34,0,2.59-0.52,3.54-1.46c1.74-1.74,2.81-6.57,3.26-10.33C14.04,6.65,9.21,7.72,7.46,9.46z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M7.46,9.46C5.68,11.25,5.55,14.04,7.03,16c1.53-2.54,3.73-4.64,6.37-6c-2.26,1.91-3.95,4.44-4.88,7.32 C9.27,17.75,10.11,18,11,18c1.34,0,2.59-0.52,3.54-1.46c1.74-1.74,2.81-6.57,3.26-10.33C14.04,6.65,9.21,7.72,7.46,9.46z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M6.05,8.05c-2.73,2.73-2.73,7.17,0,9.9C7.42,19.32,9.21,20,11,20s3.58-0.68,4.95-2.05C19.43,14.47,20,4,20,4 S9.53,4.57,6.05,8.05z M14.54,16.54C13.59,17.48,12.34,18,11,18c-0.89,0-1.73-0.25-2.48-0.68c0.92-2.88,2.62-5.41,4.88-7.32 c-2.63,1.36-4.84,3.46-6.37,6c-1.48-1.96-1.35-4.75,0.44-6.54C9.21,7.72,14.04,6.65,17.8,6.2C17.35,9.96,16.28,14.79,14.54,16.54z"},"children":[{"name":"path","attribs":{"d":"M6.05,8.05c-2.73,2.73-2.73,7.17,0,9.9C7.42,19.32,9.21,20,11,20s3.58-0.68,4.95-2.05C19.43,14.47,20,4,20,4 S9.53,4.57,6.05,8.05z M14.54,16.54C13.59,17.48,12.34,18,11,18c-0.89,0-1.73-0.25-2.48-0.68c0.92-2.88,2.62-5.41,4.88-7.32 c-2.63,1.36-4.84,3.46-6.37,6c-1.48-1.96-1.35-4.75,0.44-6.54C9.21,7.72,14.04,6.65,17.8,6.2C17.35,9.96,16.28,14.79,14.54,16.54z"},"children":[]}]}]}]}]}]};exports.ic_eco_twotone=ic_eco_twotone;var ic_edit_off={"viewBox":"0 0 24 24","children":[{"name":"title","attribs":{},"children":[]},{"name":"path","attribs":{"d":"M0 0h24v24H0zm0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12.126 8.125l1.937-1.937 3.747 3.747-1.937 1.938zM20.71 5.63l-2.34-2.34a1 1 0 0 0-1.41 0l-1.83 1.83 3.75 3.75L20.71 7a1 1 0 0 0 0-1.37zM2 5l6.63 6.63L3 17.25V21h3.75l5.63-5.62L18 21l2-2L4 3 2 5z"},"children":[]}]};exports.ic_edit_off=ic_edit_off;var ic_eject={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 24V0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 17h14v2H5zm7-12L5.33 15h13.34z"},"children":[]}]};exports.ic_eject=ic_eject;var ic_eject_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 17h14v2H5zm7-12L5.33 15h13.34L12 5zm0 3.6l2.93 4.4H9.07L12 8.6z"},"children":[]}]};exports.ic_eject_outline=ic_eject_outline;var ic_eject_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 8.6L9.07 13h5.86z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M5 17h14v2H5zm7-12L5.33 15h13.34L12 5zm0 3.6l2.93 4.4H9.07L12 8.6z"},"children":[]}]};exports.ic_eject_twotone=ic_eject_twotone;var ic_euro_symbol={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15 18.5c-2.51 0-4.68-1.42-5.76-3.5H15v-2H8.58c-.05-.33-.08-.66-.08-1s.03-.67.08-1H15V9H9.24C10.32 6.92 12.5 5.5 15 5.5c1.61 0 3.09.59 4.23 1.57L21 5.3C19.41 3.87 17.3 3 15 3c-3.92 0-7.24 2.51-8.48 6H3v2h3.06c-.04.33-.06.66-.06 1 0 .34.02.67.06 1H3v2h3.52c1.24 3.49 4.56 6 8.48 6 2.31 0 4.41-.87 6-2.3l-1.78-1.77c-1.13.98-2.6 1.57-4.22 1.57z"},"children":[]}]};exports.ic_euro_symbol=ic_euro_symbol;var ic_euro_symbol_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15 18.5c-2.51 0-4.68-1.42-5.76-3.5H15v-2H8.58c-.05-.33-.08-.66-.08-1s.03-.67.08-1H15V9H9.24C10.32 6.92 12.5 5.5 15 5.5c1.61 0 3.09.59 4.23 1.57L21 5.3C19.41 3.87 17.3 3 15 3c-3.92 0-7.24 2.51-8.48 6H3v2h3.06c-.04.33-.06.66-.06 1s.02.67.06 1H3v2h3.52c1.24 3.49 4.56 6 8.48 6 2.31 0 4.41-.87 6-2.3l-1.78-1.77c-1.13.98-2.6 1.57-4.22 1.57z"},"children":[]}]};exports.ic_euro_symbol_outline=ic_euro_symbol_outline;var ic_euro_symbol_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15 18.5c-2.51 0-4.68-1.42-5.76-3.5H15v-2H8.58c-.05-.33-.08-.66-.08-1s.03-.67.08-1H15V9H9.24C10.32 6.92 12.5 5.5 15 5.5c1.61 0 3.09.59 4.23 1.57L21 5.3C19.41 3.87 17.3 3 15 3c-3.92 0-7.24 2.51-8.48 6H3v2h3.06c-.04.33-.06.66-.06 1s.02.67.06 1H3v2h3.52c1.24 3.49 4.56 6 8.48 6 2.31 0 4.41-.87 6-2.3l-1.78-1.77c-1.13.98-2.6 1.57-4.22 1.57z"},"children":[]}]};exports.ic_euro_symbol_twotone=ic_euro_symbol_twotone;var ic_event={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 12h-5v5h5v-5zM16 1v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2h-1V1h-2zm3 18H5V8h14v11z"},"children":[]}]};exports.ic_event=ic_event;var ic_event_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 4h-1V2h-2v2H8V2H6v2H5c-1.11 0-1.99.9-1.99 2L3 20c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V10h14v10zm0-12H5V6h14v2zm-7 5h5v5h-5z"},"children":[]}]};exports.ic_event_outline=ic_event_outline;var ic_event_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 8h14V6H5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M19 4h-1V2h-2v2H8V2H6v2H5c-1.11 0-1.99.9-1.99 2L3 20c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V10h14v10zm0-12H5V6h14v2zm-7 5h5v5h-5z"},"children":[]}]};exports.ic_event_twotone=ic_event_twotone;var ic_event_seat={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M4,18v3h3v-3h10v3h3v-6H4V18z M19,10h3v3h-3V10z M2,10h3v3H2V10z M17,13H7V5c0-1.1,0.9-2,2-2h6c1.1,0,2,0.9,2,2V13z"},"children":[{"name":"path","attribs":{"d":"M4,18v3h3v-3h10v3h3v-6H4V18z M19,10h3v3h-3V10z M2,10h3v3H2V10z M17,13H7V5c0-1.1,0.9-2,2-2h6c1.1,0,2,0.9,2,2V13z"},"children":[]}]}]}]}]}]}]}]};exports.ic_event_seat=ic_event_seat;var ic_event_seat_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15 5v7H9V5h6m0-2H9c-1.1 0-2 .9-2 2v9h10V5c0-1.1-.9-2-2-2zm7 7h-3v3h3v-3zM5 10H2v3h3v-3zm15 5H4v6h2v-4h12v4h2v-6z"},"children":[]}]};exports.ic_event_seat_outline=ic_event_seat_outline;var ic_event_seat_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9 5h6v7H9z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M4 21h2v-4h12v4h2v-6H4zM17 5c0-1.1-.9-2-2-2H9c-1.1 0-2 .9-2 2v9h10V5zm-2 7H9V5h6v7zm4-2h3v3h-3zM2 10h3v3H2z"},"children":[]}]};exports.ic_event_seat_twotone=ic_event_seat_twotone;var ic_exit_to_app={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10.09 15.59L11.5 17l5-5-5-5-1.41 1.41L12.67 11H3v2h9.67l-2.58 2.59zM19 3H5c-1.11 0-2 .9-2 2v4h2V5h14v14H5v-4H3v4c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"},"children":[]}]};exports.ic_exit_to_app=ic_exit_to_app;var ic_exit_to_app_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10.09 15.59L11.5 17l5-5-5-5-1.41 1.41L12.67 11H3v2h9.67l-2.58 2.59zM19 3H5c-1.11 0-2 .9-2 2v4h2V5h14v14H5v-4H3v4c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"},"children":[]}]};exports.ic_exit_to_app_outline=ic_exit_to_app_outline;var ic_exit_to_app_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10.09 15.59L11.5 17l5-5-5-5-1.41 1.41L12.67 11H3v2h9.67l-2.58 2.59zM19 3H5c-1.11 0-2 .9-2 2v4h2V5h14v14H5v-4H3v4c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"},"children":[]}]};exports.ic_exit_to_app_twotone=ic_exit_to_app_twotone;var ic_expand={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 20h16v2H4zM4 2h16v2H4zm9 7h3l-4-4-4 4h3v6H8l4 4 4-4h-3z"},"children":[]},{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]}]};exports.ic_expand=ic_expand;var ic_explore={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 10.9c-.61 0-1.1.49-1.1 1.1s.49 1.1 1.1 1.1c.61 0 1.1-.49 1.1-1.1s-.49-1.1-1.1-1.1zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm2.19 12.19L6 18l3.81-8.19L18 6l-3.81 8.19z"},"children":[]}]};exports.ic_explore=ic_explore;var ic_explore_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-5.5-2.5l7.51-3.49L17.5 6.5 9.99 9.99 6.5 17.5zm5.5-6.6c.61 0 1.1.49 1.1 1.1s-.49 1.1-1.1 1.1-1.1-.49-1.1-1.1.49-1.1 1.1-1.1z"},"children":[]}]};exports.ic_explore_outline=ic_explore_outline;var ic_explore_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm2.01 10.01L6.5 17.5l3.49-7.51L17.5 6.5l-3.49 7.51z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-5.5-2.5l7.51-3.49L17.5 6.5 9.99 9.99 6.5 17.5zm5.5-6.6c.61 0 1.1.49 1.1 1.1s-.49 1.1-1.1 1.1-1.1-.49-1.1-1.1.49-1.1 1.1-1.1z"},"children":[]}]};exports.ic_explore_twotone=ic_explore_twotone;var ic_explore_off={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14.19 14.19l-1.41-1.41-1.56-1.56L11 11 9.81 9.81 4.93 4.93 2.27 2.27 1 3.54l2.78 2.78c-.11.16-.21.32-.31.48-.04.07-.09.14-.13.21-.09.15-.17.31-.25.47-.05.1-.1.21-.16.32-.06.14-.13.28-.19.43-.1.24-.19.48-.27.73l-.09.3c-.05.2-.1.39-.14.59-.02.11-.04.22-.07.33-.04.2-.07.4-.09.61-.01.1-.03.2-.03.3-.03.29-.05.6-.05.91 0 5.52 4.48 10 10 10 .31 0 .62-.02.92-.05l.3-.03c.2-.02.41-.06.61-.09.11-.02.22-.04.33-.07.2-.04.39-.09.58-.15.1-.03.2-.05.3-.09.25-.08.49-.17.73-.27.15-.06.29-.13.43-.19.11-.05.22-.1.33-.16.16-.08.31-.16.46-.25.07-.04.14-.09.21-.13.16-.1.32-.2.48-.31L20.46 23l1.27-1.27-2.66-2.66-4.88-4.88zM6 18l3-6.46L12.46 15 6 18zm16-6c0 .31-.02.62-.05.92l-.03.3c-.02.2-.06.41-.09.61-.02.11-.04.22-.07.33-.04.2-.09.39-.15.58-.03.1-.05.21-.09.31-.08.25-.17.49-.27.73-.06.15-.13.29-.19.43-.05.11-.1.22-.16.33-.08.16-.16.31-.25.46-.04.07-.09.14-.13.21-.1.16-.2.32-.31.48L15 12.46 18 6l-6.46 3-5.22-5.22c.16-.11.32-.21.48-.31.07-.04.14-.09.21-.13.15-.09.31-.17.46-.25.11-.05.22-.1.33-.16.14-.06.28-.13.43-.19.24-.1.48-.19.73-.27l.31-.09c.19-.05.38-.11.58-.15.11-.02.22-.04.33-.07.2-.04.4-.07.61-.09.1-.01.2-.03.3-.03.29-.02.6-.04.91-.04 5.52 0 10 4.48 10 10z"},"children":[]}]};exports.ic_explore_off=ic_explore_off;var ic_explore_off_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 4c4.41 0 8 3.59 8 8 0 1.48-.41 2.86-1.12 4.06l1.46 1.46C21.39 15.93 22 14.04 22 12c0-5.52-4.48-10-10-10-2.04 0-3.93.61-5.51 1.66l1.46 1.46C9.14 4.41 10.52 4 12 4zm2.91 8.08L17.5 6.5l-5.58 2.59 2.99 2.99zM2.1 4.93l1.56 1.56C2.61 8.07 2 9.96 2 12c0 5.52 4.48 10 10 10 2.04 0 3.93-.61 5.51-1.66l1.56 1.56 1.41-1.41L3.51 3.51 2.1 4.93zm3.02 3.01l3.98 3.98-2.6 5.58 5.58-2.59 3.98 3.98c-1.2.7-2.58 1.11-4.06 1.11-4.41 0-8-3.59-8-8 0-1.48.41-2.86 1.12-4.06z"},"children":[]}]};exports.ic_explore_off_outline=ic_explore_off_outline;var ic_explore_off_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 20c1.48 0 2.86-.41 4.06-1.12l-3.98-3.98-5.58 2.6 2.59-5.58-3.97-3.98C4.41 9.14 4 10.52 4 12c0 4.41 3.59 8 8 8zm0-16c-1.48 0-2.86.41-4.06 1.12l3.98 3.98 5.58-2.6-2.59 5.58 3.98 3.98c.7-1.2 1.11-2.58 1.11-4.06 0-4.41-3.59-8-8-8z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M17.5 6.5l-5.58 2.59 2.99 2.99zM2.1 4.93l1.56 1.56C2.61 8.07 2 9.96 2 12c0 5.52 4.48 10 10 10 2.04 0 3.93-.61 5.51-1.66l1.56 1.56 1.41-1.41L3.51 3.51 2.1 4.93zm3.02 3.01l3.98 3.98-2.6 5.58 5.58-2.59 3.98 3.98c-1.2.7-2.58 1.11-4.06 1.11-4.41 0-8-3.59-8-8 0-1.48.41-2.86 1.12-4.06zM12 4c4.41 0 8 3.59 8 8 0 1.48-.41 2.86-1.12 4.06l1.46 1.46C21.39 15.93 22 14.04 22 12c0-5.52-4.48-10-10-10-2.04 0-3.93.61-5.51 1.66l1.46 1.46C9.14 4.41 10.52 4 12 4z"},"children":[]}]};exports.ic_explore_off_twotone=ic_explore_off_twotone;var ic_extension={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20.5 11H19V7c0-1.1-.9-2-2-2h-4V3.5C13 2.12 11.88 1 10.5 1S8 2.12 8 3.5V5H4c-1.1 0-1.99.9-1.99 2v3.8H3.5c1.49 0 2.7 1.21 2.7 2.7s-1.21 2.7-2.7 2.7H2V20c0 1.1.9 2 2 2h3.8v-1.5c0-1.49 1.21-2.7 2.7-2.7 1.49 0 2.7 1.21 2.7 2.7V22H17c1.1 0 2-.9 2-2v-4h1.5c1.38 0 2.5-1.12 2.5-2.5S21.88 11 20.5 11z"},"children":[]}]};exports.ic_extension=ic_extension;var ic_extension_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10.5 4.5c.28 0 .5.22.5.5v2h6v6h2c.28 0 .5.22.5.5s-.22.5-.5.5h-2v6h-2.12c-.68-1.75-2.39-3-4.38-3s-3.7 1.25-4.38 3H4v-2.12c1.75-.68 3-2.39 3-4.38 0-1.99-1.24-3.7-2.99-4.38L4 7h6V5c0-.28.22-.5.5-.5m0-2C9.12 2.5 8 3.62 8 5H4c-1.1 0-1.99.9-1.99 2v3.8h.29c1.49 0 2.7 1.21 2.7 2.7s-1.21 2.7-2.7 2.7H2V20c0 1.1.9 2 2 2h3.8v-.3c0-1.49 1.21-2.7 2.7-2.7s2.7 1.21 2.7 2.7v.3H17c1.1 0 2-.9 2-2v-4c1.38 0 2.5-1.12 2.5-2.5S20.38 11 19 11V7c0-1.1-.9-2-2-2h-4c0-1.38-1.12-2.5-2.5-2.5z"},"children":[]}]};exports.ic_extension_outline=ic_extension_outline;var ic_extension_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 13h-2V7h-6V5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v2H4l.01 2.12C5.76 9.8 7 11.51 7 13.5c0 1.99-1.25 3.7-3 4.38V20h2.12c.68-1.75 2.39-3 4.38-3 1.99 0 3.7 1.25 4.38 3H17v-6h2c.28 0 .5-.22.5-.5s-.22-.5-.5-.5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M19 11V7c0-1.1-.9-2-2-2h-4c0-1.38-1.12-2.5-2.5-2.5S8 3.62 8 5H4c-1.1 0-1.99.9-1.99 2v3.8h.29c1.49 0 2.7 1.21 2.7 2.7s-1.21 2.7-2.7 2.7H2V20c0 1.1.9 2 2 2h3.8v-.3c0-1.49 1.21-2.7 2.7-2.7s2.7 1.21 2.7 2.7v.3H17c1.1 0 2-.9 2-2v-4c1.38 0 2.5-1.12 2.5-2.5S20.38 11 19 11zm0 3h-2v6h-2.12c-.68-1.75-2.39-3-4.38-3-1.99 0-3.7 1.25-4.38 3H4v-2.12c1.75-.68 3-2.39 3-4.38 0-1.99-1.24-3.7-2.99-4.38L4 7h6V5c0-.28.22-.5.5-.5s.5.22.5.5v2h6v6h2c.28 0 .5.22.5.5s-.22.5-.5.5z"},"children":[]}]};exports.ic_extension_twotone=ic_extension_twotone;var ic_face={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9 11.75c-.69 0-1.25.56-1.25 1.25s.56 1.25 1.25 1.25 1.25-.56 1.25-1.25-.56-1.25-1.25-1.25zm6 0c-.69 0-1.25.56-1.25 1.25s.56 1.25 1.25 1.25 1.25-.56 1.25-1.25-.56-1.25-1.25-1.25zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8 0-.29.02-.58.05-.86 2.36-1.05 4.23-2.98 5.21-5.37C11.07 8.33 14.05 10 17.42 10c.78 0 1.53-.09 2.25-.26.21.71.33 1.47.33 2.26 0 4.41-3.59 8-8 8z"},"children":[]}]};exports.ic_face=ic_face;var ic_face_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10.25 13c0 .69-.56 1.25-1.25 1.25S7.75 13.69 7.75 13s.56-1.25 1.25-1.25 1.25.56 1.25 1.25zM15 11.75c-.69 0-1.25.56-1.25 1.25s.56 1.25 1.25 1.25 1.25-.56 1.25-1.25-.56-1.25-1.25-1.25zm7 .25c0 5.52-4.48 10-10 10S2 17.52 2 12 6.48 2 12 2s10 4.48 10 10zM10.66 4.12C12.06 6.44 14.6 8 17.5 8c.46 0 .91-.05 1.34-.12C17.44 5.56 14.9 4 12 4c-.46 0-.91.05-1.34.12zM4.42 9.47c1.71-.97 3.03-2.55 3.66-4.44C6.37 6 5.05 7.58 4.42 9.47zM20 12c0-.78-.12-1.53-.33-2.24-.7.15-1.42.24-2.17.24-3.13 0-5.92-1.44-7.76-3.69C8.69 8.87 6.6 10.88 4 11.86c.01.04 0 .09 0 .14 0 4.41 3.59 8 8 8s8-3.59 8-8z"},"children":[]}]};exports.ic_face_outline=ic_face_outline;var ic_face_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17.5 8c.46 0 .91-.05 1.34-.12C17.44 5.56 14.9 4 12 4c-.46 0-.91.05-1.34.12C12.06 6.44 14.6 8 17.5 8zM8.08 5.03C6.37 6 5.05 7.58 4.42 9.47c1.71-.97 3.03-2.55 3.66-4.44z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 2c2.9 0 5.44 1.56 6.84 3.88-.43.07-.88.12-1.34.12-2.9 0-5.44-1.56-6.84-3.88.43-.07.88-.12 1.34-.12zM8.08 5.03C7.45 6.92 6.13 8.5 4.42 9.47 5.05 7.58 6.37 6 8.08 5.03zM12 20c-4.41 0-8-3.59-8-8 0-.05.01-.1.01-.15 2.6-.98 4.68-2.99 5.74-5.55 1.83 2.26 4.62 3.7 7.75 3.7.75 0 1.47-.09 2.17-.24.21.71.33 1.46.33 2.24 0 4.41-3.59 8-8 8z"},"children":[]},{"name":"circle","attribs":{"cx":"9","cy":"13","r":"1.25"},"children":[]},{"name":"circle","attribs":{"cx":"15","cy":"13","r":"1.25"},"children":[]}]};exports.ic_face_twotone=ic_face_twotone;var ic_face_unlock_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10.25 13c0 .69-.56 1.25-1.25 1.25S7.75 13.69 7.75 13s.56-1.25 1.25-1.25 1.25.56 1.25 1.25zM15 11.75c-.69 0-1.25.56-1.25 1.25s.56 1.25 1.25 1.25 1.25-.56 1.25-1.25-.56-1.25-1.25-1.25zm7 .25c0 5.52-4.48 10-10 10S2 17.52 2 12 6.48 2 12 2s10 4.48 10 10zM10.66 4.12C12.06 6.44 14.6 8 17.5 8c.46 0 .91-.05 1.34-.12C17.44 5.56 14.9 4 12 4c-.46 0-.91.05-1.34.12zM4.42 9.47c1.71-.97 3.03-2.55 3.66-4.44C6.37 6 5.05 7.58 4.42 9.47zM20 12c0-.78-.12-1.53-.33-2.24-.7.15-1.42.24-2.17.24-3.13 0-5.92-1.44-7.76-3.69C8.69 8.87 6.6 10.88 4 11.86c.01.04 0 .09 0 .14 0 4.41 3.59 8 8 8s8-3.59 8-8z"},"children":[]}]};exports.ic_face_unlock_outline=ic_face_unlock_outline;var ic_face_unlock_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10.25 13c0 .69-.56 1.25-1.25 1.25S7.75 13.69 7.75 13s.56-1.25 1.25-1.25 1.25.56 1.25 1.25zM15 11.75c-.69 0-1.25.56-1.25 1.25s.56 1.25 1.25 1.25 1.25-.56 1.25-1.25-.56-1.25-1.25-1.25zm7 .25c0 5.52-4.48 10-10 10S2 17.52 2 12 6.48 2 12 2s10 4.48 10 10zM10.66 4.12C12.06 6.44 14.6 8 17.5 8c.46 0 .91-.05 1.34-.12C17.44 5.56 14.9 4 12 4c-.46 0-.91.05-1.34.12zM4.42 9.47c1.71-.97 3.03-2.55 3.66-4.44C6.37 6 5.05 7.58 4.42 9.47zM20 12c0-.78-.12-1.53-.33-2.24-.7.15-1.42.24-2.17.24-3.13 0-5.92-1.44-7.76-3.69C8.69 8.87 6.6 10.88 4 11.86c.01.04 0 .09 0 .14 0 4.41 3.59 8 8 8s8-3.59 8-8z"},"children":[]}]};exports.ic_face_unlock_twotone=ic_face_unlock_twotone;var ic_fact_check={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M20,3H4C2.9,3,2,3.9,2,5v14c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V5 C22,3.9,21.1,3,20,3z M10,17H5v-2h5V17z M10,13H5v-2h5V13z M10,9H5V7h5V9z M14.82,15L12,12.16l1.41-1.41l1.41,1.42L17.99,9 l1.42,1.42L14.82,15z","fill-rule":"evenodd"},"children":[{"name":"path","attribs":{"d":"M20,3H4C2.9,3,2,3.9,2,5v14c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V5 C22,3.9,21.1,3,20,3z M10,17H5v-2h5V17z M10,13H5v-2h5V13z M10,9H5V7h5V9z M14.82,15L12,12.16l1.41-1.41l1.41,1.42L17.99,9 l1.42,1.42L14.82,15z","fill-rule":"evenodd"},"children":[]}]}]}]}]}]};exports.ic_fact_check=ic_fact_check;var ic_fact_check_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M20,3H4C2.9,3,2,3.9,2,5v14c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V5 C22,3.9,21.1,3,20,3z M20,19H4V5h16V19z","fill-rule":"evenodd"},"children":[{"name":"path","attribs":{"d":"M20,3H4C2.9,3,2,3.9,2,5v14c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V5 C22,3.9,21.1,3,20,3z M20,19H4V5h16V19z","fill-rule":"evenodd"},"children":[]}]},{"name":"polygon","attribs":{"fill-rule":"evenodd","points":"19.41,10.42 17.99,9 14.82,12.17 13.41,10.75 12,12.16 14.82,15"},"children":[{"name":"polygon","attribs":{"fill-rule":"evenodd","points":"19.41,10.42 17.99,9 14.82,12.17 13.41,10.75 12,12.16 14.82,15"},"children":[]}]},{"name":"rect","attribs":{"fill-rule":"evenodd","height":"2","width":"5","x":"5","y":"7"},"children":[{"name":"rect","attribs":{"fill-rule":"evenodd","height":"2","width":"5","x":"5","y":"7"},"children":[]}]},{"name":"rect","attribs":{"fill-rule":"evenodd","height":"2","width":"5","x":"5","y":"11"},"children":[{"name":"rect","attribs":{"fill-rule":"evenodd","height":"2","width":"5","x":"5","y":"11"},"children":[]}]},{"name":"rect","attribs":{"fill-rule":"evenodd","height":"2","width":"5","x":"5","y":"15"},"children":[{"name":"rect","attribs":{"fill-rule":"evenodd","height":"2","width":"5","x":"5","y":"15"},"children":[]}]}]}]}]}]};exports.ic_fact_check_outline=ic_fact_check_outline;var ic_fact_check_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M4,19h16V5H4V19z M13.41,10.75l1.41,1.42L17.99,9l1.42,1.42L14.82,15L12,12.16L13.41,10.75z M5,7h5v2H5V7z M5,11h5v2H5V11z M5,15h5v2H5V15z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M4,19h16V5H4V19z M13.41,10.75l1.41,1.42L17.99,9l1.42,1.42L14.82,15L12,12.16L13.41,10.75z M5,7h5v2H5V7z M5,11h5v2H5V11z M5,15h5v2H5V15z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M20,3H4C2.9,3,2,3.9,2,5v14c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V5C22,3.9,21.1,3,20,3z M20,19H4V5h16V19z"},"children":[{"name":"path","attribs":{"d":"M20,3H4C2.9,3,2,3.9,2,5v14c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V5C22,3.9,21.1,3,20,3z M20,19H4V5h16V19z"},"children":[]}]},{"name":"polygon","attribs":{"points":"19.41,10.42 17.99,9 14.82,12.17 13.41,10.75 12,12.16 14.82,15"},"children":[{"name":"polygon","attribs":{"points":"19.41,10.42 17.99,9 14.82,12.17 13.41,10.75 12,12.16 14.82,15"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"5","x":"5","y":"7"},"children":[{"name":"rect","attribs":{"height":"2","width":"5","x":"5","y":"7"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"5","x":"5","y":"11"},"children":[{"name":"rect","attribs":{"height":"2","width":"5","x":"5","y":"11"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"5","x":"5","y":"15"},"children":[{"name":"rect","attribs":{"height":"2","width":"5","x":"5","y":"15"},"children":[]}]}]}]}]}]};exports.ic_fact_check_twotone=ic_fact_check_twotone;var ic_favorite={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z"},"children":[]}]};exports.ic_favorite=ic_favorite;var ic_favorite_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z"},"children":[]}]};exports.ic_favorite_outline=ic_favorite_outline;var ic_favorite_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16.5 5c-1.54 0-3.04.99-3.56 2.36h-1.87C10.54 5.99 9.04 5 7.5 5 5.5 5 4 6.5 4 8.5c0 2.89 3.14 5.74 7.9 10.05l.1.1.1-.1C16.86 14.24 20 11.39 20 8.5c0-2-1.5-3.5-3.5-3.5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M16.5 3c-1.74 0-3.41.81-4.5 2.09C10.91 3.81 9.24 3 7.5 3 4.42 3 2 5.42 2 8.5c0 3.78 3.4 6.86 8.55 11.54L12 21.35l1.45-1.32C18.6 15.36 22 12.28 22 8.5 22 5.42 19.58 3 16.5 3zm-4.4 15.55l-.1.1-.1-.1C7.14 14.24 4 11.39 4 8.5 4 6.5 5.5 5 7.5 5c1.54 0 3.04.99 3.57 2.36h1.87C13.46 5.99 14.96 5 16.5 5c2 0 3.5 1.5 3.5 3.5 0 2.89-3.14 5.74-7.9 10.05z"},"children":[]}]};exports.ic_favorite_twotone=ic_favorite_twotone;var ic_favorite_border={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16.5 3c-1.74 0-3.41.81-4.5 2.09C10.91 3.81 9.24 3 7.5 3 4.42 3 2 5.42 2 8.5c0 3.78 3.4 6.86 8.55 11.54L12 21.35l1.45-1.32C18.6 15.36 22 12.28 22 8.5 22 5.42 19.58 3 16.5 3zm-4.4 15.55l-.1.1-.1-.1C7.14 14.24 4 11.39 4 8.5 4 6.5 5.5 5 7.5 5c1.54 0 3.04.99 3.57 2.36h1.87C13.46 5.99 14.96 5 16.5 5c2 0 3.5 1.5 3.5 3.5 0 2.89-3.14 5.74-7.9 10.05z"},"children":[]}]};exports.ic_favorite_border=ic_favorite_border;var ic_favorite_border_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16.5 3c-1.74 0-3.41.81-4.5 2.09C10.91 3.81 9.24 3 7.5 3 4.42 3 2 5.42 2 8.5c0 3.78 3.4 6.86 8.55 11.54L12 21.35l1.45-1.32C18.6 15.36 22 12.28 22 8.5 22 5.42 19.58 3 16.5 3zm-4.4 15.55l-.1.1-.1-.1C7.14 14.24 4 11.39 4 8.5 4 6.5 5.5 5 7.5 5c1.54 0 3.04.99 3.57 2.36h1.87C13.46 5.99 14.96 5 16.5 5c2 0 3.5 1.5 3.5 3.5 0 2.89-3.14 5.74-7.9 10.05z"},"children":[]}]};exports.ic_favorite_border_outline=ic_favorite_border_outline;var ic_favorite_border_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16.5 3c-1.74 0-3.41.81-4.5 2.09C10.91 3.81 9.24 3 7.5 3 4.42 3 2 5.42 2 8.5c0 3.78 3.4 6.86 8.55 11.54L12 21.35l1.45-1.32C18.6 15.36 22 12.28 22 8.5 22 5.42 19.58 3 16.5 3zm-4.4 15.55l-.1.1-.1-.1C7.14 14.24 4 11.39 4 8.5 4 6.5 5.5 5 7.5 5c1.54 0 3.04.99 3.57 2.36h1.87C13.46 5.99 14.96 5 16.5 5c2 0 3.5 1.5 3.5 3.5 0 2.89-3.14 5.74-7.9 10.05z"},"children":[]}]};exports.ic_favorite_border_twotone=ic_favorite_border_twotone;var ic_feedback={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 12h-2v-2h2v2zm0-4h-2V6h2v4z"},"children":[]}]};exports.ic_feedback=ic_feedback;var ic_feedback_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17l-.59.59-.58.58V4h16v12zm-9-4h2v2h-2zm0-6h2v4h-2z"},"children":[]}]};exports.ic_feedback_outline=ic_feedback_outline;var ic_feedback_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 17.17L5.17 16H20V4H4v13.17zM11 6h2v4h-2V6zm0 6h2v2h-2v-2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zm-9-4h2v2h-2zm0-6h2v4h-2z"},"children":[]}]};exports.ic_feedback_twotone=ic_feedback_twotone;var ic_file_present={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V7l-5-5zM6 20V4h8v4h4v12H6zm10-10v5c0 2.21-1.79 4-4 4s-4-1.79-4-4V8.5c0-1.47 1.26-2.64 2.76-2.49 1.3.13 2.24 1.32 2.24 2.63V15h-2V8.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5V15c0 1.1.9 2 2 2s2-.9 2-2v-5h2z"},"children":[]}]};exports.ic_file_present=ic_file_present;var ic_filter_alt={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M0,0h24 M24,24H0","fill":"none"},"children":[{"name":"path","attribs":{"d":"M0,0h24 M24,24H0","fill":"none"},"children":[]}]},{"name":"path","attribs":{"d":"M4.25,5.61C6.27,8.2,10,13,10,13v6c0,0.55,0.45,1,1,1h2c0.55,0,1-0.45,1-1v-6c0,0,3.72-4.8,5.74-7.39 C20.25,4.95,19.78,4,18.95,4H5.04C4.21,4,3.74,4.95,4.25,5.61z"},"children":[{"name":"path","attribs":{"d":"M4.25,5.61C6.27,8.2,10,13,10,13v6c0,0.55,0.45,1,1,1h2c0.55,0,1-0.45,1-1v-6c0,0,3.72-4.8,5.74-7.39 C20.25,4.95,19.78,4,18.95,4H5.04C4.21,4,3.74,4.95,4.25,5.61z"},"children":[]}]},{"name":"path","attribs":{"d":"M0,0h24v24H0V0z","fill":"none"},"children":[{"name":"path","attribs":{"d":"M0,0h24v24H0V0z","fill":"none"},"children":[]}]}]}]};exports.ic_filter_alt=ic_filter_alt;var ic_filter_alt_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M0,0h24 M24,24H0","fill":"none"},"children":[{"name":"path","attribs":{"d":"M0,0h24 M24,24H0","fill":"none"},"children":[]}]},{"name":"path","attribs":{"d":"M7,6h10l-5.01,6.3L7,6z M4.25,5.61C6.27,8.2,10,13,10,13v6c0,0.55,0.45,1,1,1h2c0.55,0,1-0.45,1-1v-6 c0,0,3.72-4.8,5.74-7.39C20.25,4.95,19.78,4,18.95,4H5.04C4.21,4,3.74,4.95,4.25,5.61z"},"children":[{"name":"path","attribs":{"d":"M7,6h10l-5.01,6.3L7,6z M4.25,5.61C6.27,8.2,10,13,10,13v6c0,0.55,0.45,1,1,1h2c0.55,0,1-0.45,1-1v-6 c0,0,3.72-4.8,5.74-7.39C20.25,4.95,19.78,4,18.95,4H5.04C4.21,4,3.74,4.95,4.25,5.61z"},"children":[]}]},{"name":"path","attribs":{"d":"M0,0h24v24H0V0z","fill":"none"},"children":[{"name":"path","attribs":{"d":"M0,0h24v24H0V0z","fill":"none"},"children":[]}]}]}]};exports.ic_filter_alt_outline=ic_filter_alt_outline;var ic_filter_alt_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M0,0h24 M24,24H0","fill":"none"},"children":[{"name":"path","attribs":{"d":"M0,0h24 M24,24H0","fill":"none"},"children":[]}]},{"name":"path","attribs":{"d":"M7,6h10l-5.01,6.3L7,6z M4.25,5.61C6.27,8.2,10,13,10,13v6c0,0.55,0.45,1,1,1h2c0.55,0,1-0.45,1-1v-6 c0,0,3.72-4.8,5.74-7.39C20.25,4.95,19.78,4,18.95,4H5.04C4.21,4,3.74,4.95,4.25,5.61z"},"children":[{"name":"path","attribs":{"d":"M7,6h10l-5.01,6.3L7,6z M4.25,5.61C6.27,8.2,10,13,10,13v6c0,0.55,0.45,1,1,1h2c0.55,0,1-0.45,1-1v-6 c0,0,3.72-4.8,5.74-7.39C20.25,4.95,19.78,4,18.95,4H5.04C4.21,4,3.74,4.95,4.25,5.61z"},"children":[]}]},{"name":"path","attribs":{"d":"M0,0h24v24H0V0z","fill":"none"},"children":[{"name":"path","attribs":{"d":"M0,0h24v24H0V0z","fill":"none"},"children":[]}]}]},{"name":"polygon","attribs":{"opacity":".3","points":"7,6 17,6 11.99,12.3"},"children":[]}]};exports.ic_filter_alt_twotone=ic_filter_alt_twotone;var ic_filter_list_alt={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M0 0h24m0 24H0","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4.25 5.66c.1.13 5.74 7.33 5.74 7.33V19c0 .55.45 1 1.01 1h2.01c.55 0 1.01-.45 1.01-1v-6.02s5.49-7.02 5.75-7.34C20.03 5.32 20 5 20 5c0-.55-.45-1-1.01-1H5.01C4.4 4 4 4.48 4 5c0 .2.06.44.25.66z"},"children":[]}]};exports.ic_filter_list_alt=ic_filter_list_alt;var ic_find_in_page={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 19.59V8l-6-6H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c.45 0 .85-.15 1.19-.4l-4.43-4.43c-.8.52-1.74.83-2.76.83-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5c0 1.02-.31 1.96-.83 2.75L20 19.59zM9 13c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3z"},"children":[]}]};exports.ic_find_in_page=ic_find_in_page;var ic_find_in_page_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zM6 4h7l5 5v8.58l-1.84-1.84c1.28-1.94 1.07-4.57-.64-6.28C14.55 8.49 13.28 8 12 8c-1.28 0-2.55.49-3.53 1.46-1.95 1.95-1.95 5.11 0 7.05.97.97 2.25 1.46 3.53 1.46.96 0 1.92-.28 2.75-.83L17.6 20H6V4zm8.11 11.1c-.56.56-1.31.88-2.11.88s-1.55-.31-2.11-.88c-.56-.56-.88-1.31-.88-2.11s.31-1.55.88-2.11c.56-.57 1.31-.88 2.11-.88s1.55.31 2.11.88c.56.56.88 1.31.88 2.11s-.31 1.55-.88 2.11z"},"children":[]}]};exports.ic_find_in_page_outline=ic_find_in_page_outline;var ic_find_in_page_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6 4v16h11.6l-2.85-2.85c-.83.55-1.79.83-2.75.83-1.28 0-2.55-.49-3.53-1.46-1.95-1.95-1.95-5.11 0-7.05C9.45 8.49 10.72 8 12 8c1.28 0 2.55.49 3.53 1.46 1.71 1.71 1.92 4.34.64 6.28L18 17.58V9l-5-5H6z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm4 15.58l-1.84-1.84c1.28-1.94 1.07-4.57-.64-6.28C14.55 8.49 13.28 8 12 8c-1.28 0-2.55.49-3.53 1.46-1.95 1.95-1.95 5.11 0 7.05.97.97 2.25 1.46 3.53 1.46.96 0 1.92-.28 2.75-.83L17.6 20H6V4h7l5 5v8.58zm-3.01-4.59c0 .8-.31 1.55-.88 2.11-.56.56-1.31.88-2.11.88s-1.55-.31-2.11-.88c-.56-.56-.88-1.31-.88-2.11s.31-1.55.88-2.11S11.2 10 12 10s1.55.31 2.11.88c.57.56.88 1.31.88 2.11z"},"children":[]}]};exports.ic_find_in_page_twotone=ic_find_in_page_twotone;var ic_find_replace={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11 6c1.38 0 2.63.56 3.54 1.46L12 10h6V4l-2.05 2.05C14.68 4.78 12.93 4 11 4c-3.53 0-6.43 2.61-6.92 6H6.1c.46-2.28 2.48-4 4.9-4zm5.64 9.14c.66-.9 1.12-1.97 1.28-3.14H15.9c-.46 2.28-2.48 4-4.9 4-1.38 0-2.63-.56-3.54-1.46L10 12H4v6l2.05-2.05C7.32 17.22 9.07 18 11 18c1.55 0 2.98-.51 4.14-1.36L20 21.49 21.49 20l-4.85-4.86z"},"children":[]}]};exports.ic_find_replace=ic_find_replace;var ic_find_replace_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11 6c1.38 0 2.63.56 3.54 1.46L12 10h6V4l-2.05 2.05C14.68 4.78 12.93 4 11 4c-3.53 0-6.43 2.61-6.92 6H6.1c.46-2.28 2.48-4 4.9-4zm5.64 9.14c.66-.9 1.12-1.97 1.28-3.14H15.9c-.46 2.28-2.48 4-4.9 4-1.38 0-2.63-.56-3.54-1.46L10 12H4v6l2.05-2.05C7.32 17.22 9.07 18 11 18c1.55 0 2.98-.51 4.14-1.36L20 21.49 21.49 20l-4.85-4.86z"},"children":[]}]};exports.ic_find_replace_outline=ic_find_replace_outline;var ic_find_replace_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11 6c1.38 0 2.63.56 3.54 1.46L12 10h6V4l-2.05 2.05C14.68 4.78 12.93 4 11 4c-3.53 0-6.43 2.61-6.92 6H6.1c.46-2.28 2.48-4 4.9-4zm5.64 9.14c.66-.9 1.12-1.97 1.28-3.14H15.9c-.46 2.28-2.48 4-4.9 4-1.38 0-2.63-.56-3.54-1.46L10 12H4v6l2.05-2.05C7.32 17.22 9.07 18 11 18c1.55 0 2.98-.51 4.14-1.36L20 21.49 21.49 20l-4.85-4.86z"},"children":[]}]};exports.ic_find_replace_twotone=ic_find_replace_twotone;var ic_fingerprint={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17.81 4.47c-.08 0-.16-.02-.23-.06C15.66 3.42 14 3 12.01 3c-1.98 0-3.86.47-5.57 1.41-.24.13-.54.04-.68-.2-.13-.24-.04-.55.2-.68C7.82 2.52 9.86 2 12.01 2c2.13 0 3.99.47 6.03 1.52.25.13.34.43.21.67-.09.18-.26.28-.44.28zM3.5 9.72c-.1 0-.2-.03-.29-.09-.23-.16-.28-.47-.12-.7.99-1.4 2.25-2.5 3.75-3.27C9.98 4.04 14 4.03 17.15 5.65c1.5.77 2.76 1.86 3.75 3.25.16.22.11.54-.12.7-.23.16-.54.11-.7-.12-.9-1.26-2.04-2.25-3.39-2.94-2.87-1.47-6.54-1.47-9.4.01-1.36.7-2.5 1.7-3.4 2.96-.08.14-.23.21-.39.21zm6.25 12.07c-.13 0-.26-.05-.35-.15-.87-.87-1.34-1.43-2.01-2.64-.69-1.23-1.05-2.73-1.05-4.34 0-2.97 2.54-5.39 5.66-5.39s5.66 2.42 5.66 5.39c0 .28-.22.5-.5.5s-.5-.22-.5-.5c0-2.42-2.09-4.39-4.66-4.39-2.57 0-4.66 1.97-4.66 4.39 0 1.44.32 2.77.93 3.85.64 1.15 1.08 1.64 1.85 2.42.19.2.19.51 0 .71-.11.1-.24.15-.37.15zm7.17-1.85c-1.19 0-2.24-.3-3.1-.89-1.49-1.01-2.38-2.65-2.38-4.39 0-.28.22-.5.5-.5s.5.22.5.5c0 1.41.72 2.74 1.94 3.56.71.48 1.54.71 2.54.71.24 0 .64-.03 1.04-.1.27-.05.53.13.58.41.05.27-.13.53-.41.58-.57.11-1.07.12-1.21.12zM14.91 22c-.04 0-.09-.01-.13-.02-1.59-.44-2.63-1.03-3.72-2.1-1.4-1.39-2.17-3.24-2.17-5.22 0-1.62 1.38-2.94 3.08-2.94 1.7 0 3.08 1.32 3.08 2.94 0 1.07.93 1.94 2.08 1.94s2.08-.87 2.08-1.94c0-3.77-3.25-6.83-7.25-6.83-2.84 0-5.44 1.58-6.61 4.03-.39.81-.59 1.76-.59 2.8 0 .78.07 2.01.67 3.61.1.26-.03.55-.29.64-.26.1-.55-.04-.64-.29-.49-1.31-.73-2.61-.73-3.96 0-1.2.23-2.29.68-3.24 1.33-2.79 4.28-4.6 7.51-4.6 4.55 0 8.25 3.51 8.25 7.83 0 1.62-1.38 2.94-3.08 2.94s-3.08-1.32-3.08-2.94c0-1.07-.93-1.94-2.08-1.94s-2.08.87-2.08 1.94c0 1.71.66 3.31 1.87 4.51.95.94 1.86 1.46 3.27 1.85.27.07.42.35.35.61-.05.23-.26.38-.47.38z"},"children":[]}]};exports.ic_fingerprint=ic_fingerprint;var ic_fingerprint_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17.81 4.47c-.08 0-.16-.02-.23-.06C15.66 3.42 14 3 12.01 3c-1.98 0-3.86.47-5.57 1.41-.24.13-.54.04-.68-.2-.13-.24-.04-.55.2-.68C7.82 2.52 9.86 2 12.01 2c2.13 0 3.99.47 6.03 1.52.25.13.34.43.21.67-.09.18-.26.28-.44.28zM3.5 9.72c-.1 0-.2-.03-.29-.09-.23-.16-.28-.47-.12-.7.99-1.4 2.25-2.5 3.75-3.27C9.98 4.04 14 4.03 17.15 5.65c1.5.77 2.76 1.86 3.75 3.25.16.22.11.54-.12.7-.23.16-.54.11-.7-.12-.9-1.26-2.04-2.25-3.39-2.94-2.87-1.47-6.54-1.47-9.4.01-1.36.7-2.5 1.7-3.4 2.96-.08.14-.23.21-.39.21zm6.25 12.07c-.13 0-.26-.05-.35-.15-.87-.87-1.34-1.43-2.01-2.64-.69-1.23-1.05-2.73-1.05-4.34 0-2.97 2.54-5.39 5.66-5.39s5.66 2.42 5.66 5.39c0 .28-.22.5-.5.5s-.5-.22-.5-.5c0-2.42-2.09-4.39-4.66-4.39s-4.66 1.97-4.66 4.39c0 1.44.32 2.77.93 3.85.64 1.15 1.08 1.64 1.85 2.42.19.2.19.51 0 .71-.11.1-.24.15-.37.15zm7.17-1.85c-1.19 0-2.24-.3-3.1-.89-1.49-1.01-2.38-2.65-2.38-4.39 0-.28.22-.5.5-.5s.5.22.5.5c0 1.41.72 2.74 1.94 3.56.71.48 1.54.71 2.54.71.24 0 .64-.03 1.04-.1.27-.05.53.13.58.41.05.27-.13.53-.41.58-.57.11-1.07.12-1.21.12zM14.91 22c-.04 0-.09-.01-.13-.02-1.59-.44-2.63-1.03-3.72-2.1-1.4-1.39-2.17-3.24-2.17-5.22 0-1.62 1.38-2.94 3.08-2.94s3.08 1.32 3.08 2.94c0 1.07.93 1.94 2.08 1.94s2.08-.87 2.08-1.94c0-3.77-3.25-6.83-7.25-6.83-2.84 0-5.44 1.58-6.61 4.03-.39.81-.59 1.76-.59 2.8 0 .78.07 2.01.67 3.61.1.26-.03.55-.29.64-.26.1-.55-.04-.64-.29-.49-1.31-.73-2.61-.73-3.96 0-1.2.23-2.29.68-3.24 1.33-2.79 4.28-4.6 7.51-4.6 4.55 0 8.25 3.51 8.25 7.83 0 1.62-1.38 2.94-3.08 2.94s-3.08-1.32-3.08-2.94c0-1.07-.93-1.94-2.08-1.94s-2.08.87-2.08 1.94c0 1.71.66 3.31 1.87 4.51.95.94 1.86 1.46 3.27 1.85.27.07.42.35.35.61-.05.23-.26.38-.47.38z"},"children":[]}]};exports.ic_fingerprint_outline=ic_fingerprint_outline;var ic_fingerprint_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17.81 4.47c-.08 0-.16-.02-.23-.06C15.66 3.42 14 3 12.01 3c-1.98 0-3.86.47-5.57 1.41-.24.13-.54.04-.68-.2-.13-.24-.04-.55.2-.68C7.82 2.52 9.86 2 12.01 2c2.13 0 3.99.47 6.03 1.52.25.13.34.43.21.67-.09.18-.26.28-.44.28zM3.5 9.72c-.1 0-.2-.03-.29-.09-.23-.16-.28-.47-.12-.7.99-1.4 2.25-2.5 3.75-3.27C9.98 4.04 14 4.03 17.15 5.65c1.5.77 2.76 1.86 3.75 3.25.16.22.11.54-.12.7-.23.16-.54.11-.7-.12-.9-1.26-2.04-2.25-3.39-2.94-2.87-1.47-6.54-1.47-9.4.01-1.36.7-2.5 1.7-3.4 2.96-.08.14-.23.21-.39.21zm6.25 12.07c-.13 0-.26-.05-.35-.15-.87-.87-1.34-1.43-2.01-2.64-.69-1.23-1.05-2.73-1.05-4.34 0-2.97 2.54-5.39 5.66-5.39s5.66 2.42 5.66 5.39c0 .28-.22.5-.5.5s-.5-.22-.5-.5c0-2.42-2.09-4.39-4.66-4.39s-4.66 1.97-4.66 4.39c0 1.44.32 2.77.93 3.85.64 1.15 1.08 1.64 1.85 2.42.19.2.19.51 0 .71-.11.1-.24.15-.37.15zm7.17-1.85c-1.19 0-2.24-.3-3.1-.89-1.49-1.01-2.38-2.65-2.38-4.39 0-.28.22-.5.5-.5s.5.22.5.5c0 1.41.72 2.74 1.94 3.56.71.48 1.54.71 2.54.71.24 0 .64-.03 1.04-.1.27-.05.53.13.58.41.05.27-.13.53-.41.58-.57.11-1.07.12-1.21.12zM14.91 22c-.04 0-.09-.01-.13-.02-1.59-.44-2.63-1.03-3.72-2.1-1.4-1.39-2.17-3.24-2.17-5.22 0-1.62 1.38-2.94 3.08-2.94s3.08 1.32 3.08 2.94c0 1.07.93 1.94 2.08 1.94s2.08-.87 2.08-1.94c0-3.77-3.25-6.83-7.25-6.83-2.84 0-5.44 1.58-6.61 4.03-.39.81-.59 1.76-.59 2.8 0 .78.07 2.01.67 3.61.1.26-.03.55-.29.64-.26.1-.55-.04-.64-.29-.49-1.31-.73-2.61-.73-3.96 0-1.2.23-2.29.68-3.24 1.33-2.79 4.28-4.6 7.51-4.6 4.55 0 8.25 3.51 8.25 7.83 0 1.62-1.38 2.94-3.08 2.94s-3.08-1.32-3.08-2.94c0-1.07-.93-1.94-2.08-1.94s-2.08.87-2.08 1.94c0 1.71.66 3.31 1.87 4.51.95.94 1.86 1.46 3.27 1.85.27.07.42.35.35.61-.05.23-.26.38-.47.38z"},"children":[]}]};exports.ic_fingerprint_twotone=ic_fingerprint_twotone;var ic_fit_screen={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 4h3c1.1 0 2 .9 2 2v2h-2V6h-3V4zM4 8V6h3V4H4c-1.1 0-2 .9-2 2v2h2zm16 8v2h-3v2h3c1.1 0 2-.9 2-2v-2h-2zM7 18H4v-2H2v2c0 1.1.9 2 2 2h3v-2zM18 8H6v8h12V8z"},"children":[]}]};exports.ic_fit_screen=ic_fit_screen;var ic_flaky={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M14.05,17.58l-0.01,0.01l-2.4-2.4l1.06-1.06l1.35,1.35L16.54,13l1.06,1.06 l-3.54,3.54L14.05,17.58z M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M7.34,6.28l1.41,1.41l1.41-1.41 l1.06,1.06L9.81,8.75l1.41,1.41l-1.06,1.06L8.75,9.81l-1.41,1.41l-1.06-1.06l1.41-1.41L6.28,7.34L7.34,6.28z M12,20 c-2.2,0-4.2-0.9-5.7-2.3L17.7,6.3C19.1,7.8,20,9.8,20,12C20,16.4,16.4,20,12,20z","fill-rule":"evenodd"},"children":[{"name":"path","attribs":{"d":"M14.05,17.58l-0.01,0.01l-2.4-2.4l1.06-1.06l1.35,1.35L16.54,13l1.06,1.06 l-3.54,3.54L14.05,17.58z M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M7.34,6.28l1.41,1.41l1.41-1.41 l1.06,1.06L9.81,8.75l1.41,1.41l-1.06,1.06L8.75,9.81l-1.41,1.41l-1.06-1.06l1.41-1.41L6.28,7.34L7.34,6.28z M12,20 c-2.2,0-4.2-0.9-5.7-2.3L17.7,6.3C19.1,7.8,20,9.8,20,12C20,16.4,16.4,20,12,20z","fill-rule":"evenodd"},"children":[]}]}]}]};exports.ic_flaky=ic_flaky;var ic_flaky_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M14.05,17.58l-0.01,0.01l-2.4-2.4l1.06-1.06l1.35,1.35L16.54,13l1.06,1.06 l-3.54,3.54L14.05,17.58z M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M7.34,6.28l1.41,1.41l1.41-1.41 l1.06,1.06L9.81,8.75l1.41,1.41l-1.06,1.06L8.75,9.81l-1.41,1.41l-1.06-1.06l1.41-1.41L6.28,7.34L7.34,6.28z M12,20 c-2.2,0-4.2-0.9-5.7-2.3L17.7,6.3C19.1,7.8,20,9.8,20,12C20,16.4,16.4,20,12,20z","fill-rule":"evenodd"},"children":[{"name":"path","attribs":{"d":"M14.05,17.58l-0.01,0.01l-2.4-2.4l1.06-1.06l1.35,1.35L16.54,13l1.06,1.06 l-3.54,3.54L14.05,17.58z M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M7.34,6.28l1.41,1.41l1.41-1.41 l1.06,1.06L9.81,8.75l1.41,1.41l-1.06,1.06L8.75,9.81l-1.41,1.41l-1.06-1.06l1.41-1.41L6.28,7.34L7.34,6.28z M12,20 c-2.2,0-4.2-0.9-5.7-2.3L17.7,6.3C19.1,7.8,20,9.8,20,12C20,16.4,16.4,20,12,20z","fill-rule":"evenodd"},"children":[]}]}]}]};exports.ic_flaky_outline=ic_flaky_outline;var ic_flaky_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M14.05,17.58l-0.01,0.01l-2.4-2.4l1.06-1.06l1.35,1.35L16.54,13l1.06,1.06 l-3.54,3.54L14.05,17.58z M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M7.34,6.28l1.41,1.41l1.41-1.41 l1.06,1.06L9.81,8.75l1.41,1.41l-1.06,1.06L8.75,9.81l-1.41,1.41l-1.06-1.06l1.41-1.41L6.28,7.34L7.34,6.28z M12,20 c-2.2,0-4.2-0.9-5.7-2.3L17.7,6.3C19.1,7.8,20,9.8,20,12C20,16.4,16.4,20,12,20z","fill-rule":"evenodd"},"children":[{"name":"path","attribs":{"d":"M14.05,17.58l-0.01,0.01l-2.4-2.4l1.06-1.06l1.35,1.35L16.54,13l1.06,1.06 l-3.54,3.54L14.05,17.58z M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M7.34,6.28l1.41,1.41l1.41-1.41 l1.06,1.06L9.81,8.75l1.41,1.41l-1.06,1.06L8.75,9.81l-1.41,1.41l-1.06-1.06l1.41-1.41L6.28,7.34L7.34,6.28z M12,20 c-2.2,0-4.2-0.9-5.7-2.3L17.7,6.3C19.1,7.8,20,9.8,20,12C20,16.4,16.4,20,12,20z","fill-rule":"evenodd"},"children":[]}]}]}]};exports.ic_flaky_twotone=ic_flaky_twotone;var ic_flight_land={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M2.5,19h19v2h-19V19z M19.34,15.85c0.8,0.21,1.62-0.26,1.84-1.06c0.21-0.8-0.26-1.62-1.06-1.84l-5.31-1.42l-2.76-9.02 L10.12,2v8.28L5.15,8.95L4.22,6.63L2.77,6.24v5.17L19.34,15.85z"},"children":[{"name":"path","attribs":{"d":"M2.5,19h19v2h-19V19z M19.34,15.85c0.8,0.21,1.62-0.26,1.84-1.06c0.21-0.8-0.26-1.62-1.06-1.84l-5.31-1.42l-2.76-9.02 L10.12,2v8.28L5.15,8.95L4.22,6.63L2.77,6.24v5.17L19.34,15.85z"},"children":[]}]}]}]}]}]}]}]};exports.ic_flight_land=ic_flight_land;var ic_flight_land_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M2.5 19h19v2h-19v-2zm16.84-3.15c.8.21 1.62-.26 1.84-1.06.21-.8-.26-1.62-1.06-1.84l-5.31-1.42-2.76-9.02L10.12 2v8.28L5.15 8.95l-.93-2.32-1.45-.39v5.17l16.57 4.44z"},"children":[]}]};exports.ic_flight_land_outline=ic_flight_land_outline;var ic_flight_land_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M2.5 19h19v2h-19v-2zm16.84-3.15c.8.21 1.62-.26 1.84-1.06.21-.8-.26-1.62-1.06-1.84l-5.31-1.42-2.76-9.02L10.12 2v8.28L5.15 8.95l-.93-2.32-1.45-.39v5.17l16.57 4.44z"},"children":[]}]};exports.ic_flight_land_twotone=ic_flight_land_twotone;var ic_flight_takeoff={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M2.5,19h19v2h-19V19z M22.07,9.64c-0.21-0.8-1.04-1.28-1.84-1.06L14.92,10l-6.9-6.43L6.09,4.08l4.14,7.17l-4.97,1.33 l-1.97-1.54l-1.45,0.39l2.59,4.49c0,0,7.12-1.9,16.57-4.43C21.81,11.26,22.28,10.44,22.07,9.64z"},"children":[{"name":"path","attribs":{"d":"M2.5,19h19v2h-19V19z M22.07,9.64c-0.21-0.8-1.04-1.28-1.84-1.06L14.92,10l-6.9-6.43L6.09,4.08l4.14,7.17l-4.97,1.33 l-1.97-1.54l-1.45,0.39l2.59,4.49c0,0,7.12-1.9,16.57-4.43C21.81,11.26,22.28,10.44,22.07,9.64z"},"children":[]}]}]}]}]}]}]}]};exports.ic_flight_takeoff=ic_flight_takeoff;var ic_flight_takeoff_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M2.5 19h19v2h-19v-2zm19.57-9.36c-.21-.8-1.04-1.28-1.84-1.06L14.92 10l-6.9-6.43-1.93.51 4.14 7.17-4.97 1.33-1.97-1.54-1.45.39 2.59 4.49L21 11.49c.81-.23 1.28-1.05 1.07-1.85z"},"children":[]}]};exports.ic_flight_takeoff_outline=ic_flight_takeoff_outline;var ic_flight_takeoff_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M2.5 19h19v2h-19v-2zm19.57-9.36c-.21-.8-1.04-1.28-1.84-1.06L14.92 10l-6.9-6.43-1.93.51 4.14 7.17-4.97 1.33-1.97-1.54-1.45.39 2.59 4.49L21 11.49c.81-.23 1.28-1.05 1.07-1.85z"},"children":[]}]};exports.ic_flight_takeoff_twotone=ic_flight_takeoff_twotone;var ic_flip_to_back={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9 7H7v2h2V7zm0 4H7v2h2v-2zm0-8c-1.11 0-2 .9-2 2h2V3zm4 12h-2v2h2v-2zm6-12v2h2c0-1.1-.9-2-2-2zm-6 0h-2v2h2V3zM9 17v-2H7c0 1.1.89 2 2 2zm10-4h2v-2h-2v2zm0-4h2V7h-2v2zm0 8c1.1 0 2-.9 2-2h-2v2zM5 7H3v12c0 1.1.89 2 2 2h12v-2H5V7zm10-2h2V3h-2v2zm0 12h2v-2h-2v2z"},"children":[]}]};exports.ic_flip_to_back=ic_flip_to_back;var ic_flip_to_back_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9 7H7v2h2V7zm0 4H7v2h2v-2zm0-8c-1.11 0-2 .9-2 2h2V3zm4 12h-2v2h2v-2zm6-12v2h2c0-1.1-.9-2-2-2zm-6 0h-2v2h2V3zM9 17v-2H7c0 1.1.89 2 2 2zm10-4h2v-2h-2v2zm0-4h2V7h-2v2zm0 8c1.1 0 2-.9 2-2h-2v2zM5 7H3v12c0 1.1.89 2 2 2h12v-2H5V7zm10-2h2V3h-2v2zm0 12h2v-2h-2v2z"},"children":[]}]};exports.ic_flip_to_back_outline=ic_flip_to_back_outline;var ic_flip_to_back_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9 7H7v2h2V7zm0 4H7v2h2v-2zm0-8c-1.11 0-2 .9-2 2h2V3zm4 12h-2v2h2v-2zm6-12v2h2c0-1.1-.9-2-2-2zm-6 0h-2v2h2V3zM9 17v-2H7c0 1.1.89 2 2 2zm10-4h2v-2h-2v2zm0-4h2V7h-2v2zm0 8c1.1 0 2-.9 2-2h-2v2zM5 7H3v12c0 1.1.89 2 2 2h12v-2H5V7zm10-2h2V3h-2v2zm0 12h2v-2h-2v2z"},"children":[]}]};exports.ic_flip_to_back_twotone=ic_flip_to_back_twotone;var ic_flip_to_front={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 13h2v-2H3v2zm0 4h2v-2H3v2zm2 4v-2H3c0 1.1.89 2 2 2zM3 9h2V7H3v2zm12 12h2v-2h-2v2zm4-18H9c-1.11 0-2 .9-2 2v10c0 1.1.89 2 2 2h10c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 12H9V5h10v10zm-8 6h2v-2h-2v2zm-4 0h2v-2H7v2z"},"children":[]}]};exports.ic_flip_to_front=ic_flip_to_front;var ic_flip_to_front_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 13h2v-2H3v2zm0 4h2v-2H3v2zm2 4v-2H3c0 1.1.89 2 2 2zM3 9h2V7H3v2zm12 12h2v-2h-2v2zm4-18H9c-1.11 0-2 .9-2 2v10c0 1.1.89 2 2 2h10c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 12H9V5h10v10zm-8 6h2v-2h-2v2zm-4 0h2v-2H7v2z"},"children":[]}]};exports.ic_flip_to_front_outline=ic_flip_to_front_outline;var ic_flip_to_front_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 13h2v-2H3v2zm0 4h2v-2H3v2zm2 4v-2H3c0 1.1.89 2 2 2zM3 9h2V7H3v2zm12 12h2v-2h-2v2zm4-18H9c-1.11 0-2 .9-2 2v10c0 1.1.89 2 2 2h10c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 12H9V5h10v10zm-8 6h2v-2h-2v2zm-4 0h2v-2H7v2z"},"children":[]}]};exports.ic_flip_to_front_twotone=ic_flip_to_front_twotone;var ic_g_translate={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M21 4H11l-1-3H3c-1.1 0-2 .9-2 2v15c0 1.1.9 2 2 2h8l1 3h9c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM7 16c-2.76 0-5-2.24-5-5s2.24-5 5-5c1.35 0 2.48.5 3.35 1.3L9.03 8.57c-.38-.36-1.04-.78-2.03-.78-1.74 0-3.15 1.44-3.15 3.21S5.26 14.21 7 14.21c2.01 0 2.84-1.44 2.92-2.41H7v-1.71h4.68c.07.31.12.61.12 1.02C11.8 13.97 9.89 16 7 16zm6.17-5.42h3.7c-.43 1.25-1.11 2.43-2.05 3.47-.31-.35-.6-.72-.86-1.1l-.79-2.37zm8.33 9.92c0 .55-.45 1-1 1H14l2-2.5-1.04-3.1 3.1 3.1.92-.92-3.3-3.25.02-.02c1.13-1.25 1.93-2.69 2.4-4.22H20v-1.3h-4.53V8h-1.29v1.29h-1.44L11.46 5.5h9.04c.55 0 1 .45 1 1v14z"},"children":[]},{"name":"path","attribs":{"d":"M0 0h24v24H0zm0 0h24v24H0z","fill":"none"},"children":[]}]};exports.ic_g_translate=ic_g_translate;var ic_g_translate_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 5h-9.12L10 2H4c-1.1 0-2 .9-2 2v13c0 1.1.9 2 2 2h7l1 3h8c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zM7.17 14.59c-2.25 0-4.09-1.83-4.09-4.09s1.83-4.09 4.09-4.09c1.04 0 1.99.37 2.74 1.07l.07.06-1.23 1.18-.06-.05c-.29-.27-.78-.59-1.52-.59-1.31 0-2.38 1.09-2.38 2.42s1.07 2.42 2.38 2.42c1.37 0 1.96-.87 2.12-1.46H7.08V9.91h3.95l.01.07c.04.21.05.4.05.61 0 2.35-1.61 4-3.92 4zm6.03-1.71c.33.6.74 1.18 1.19 1.7l-.54.53-.65-2.23zm.77-.76h-.99l-.31-1.04h3.99s-.34 1.31-1.56 2.74c-.52-.62-.89-1.23-1.13-1.7zM21 20c0 .55-.45 1-1 1h-7l2-2-.81-2.77.92-.92L17.79 18l.73-.73-2.71-2.68c.9-1.03 1.6-2.25 1.92-3.51H19v-1.04h-3.64V9h-1.04v1.04h-1.96L11.18 6H20c.55 0 1 .45 1 1v13z"},"children":[]}]};exports.ic_g_translate_outline=ic_g_translate_outline;var ic_g_translate_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 5h-9.12L10 2H4c-1.1 0-2 .9-2 2v13c0 1.1.9 2 2 2h7l1 3h8c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zM7.17 14.59c-2.25 0-4.09-1.83-4.09-4.09s1.83-4.09 4.09-4.09c1.04 0 1.99.37 2.74 1.07l.07.06-1.23 1.18-.06-.05c-.29-.27-.78-.59-1.52-.59-1.31 0-2.38 1.09-2.38 2.42 0 1.33 1.07 2.42 2.38 2.42 1.37 0 1.96-.87 2.12-1.46H7.08V9.91h3.95l.01.07c.04.21.05.4.05.61 0 2.35-1.61 4-3.92 4zm5.5-3.51h3.99s-.34 1.31-1.56 2.74c-.52-.62-.89-1.23-1.13-1.7h-.99l-.31-1.04zm1.72 3.5l-.54.53-.65-2.23c.33.6.74 1.18 1.19 1.7zM21 20c0 .55-.45 1-1 1h-7l2-2-.81-2.77.92-.92L17.79 18l.73-.73-2.71-2.68c.9-1.03 1.6-2.25 1.92-3.51H19v-1.04h-3.64V9h-1.04v1.04h-1.96L11.18 6H20c.55 0 1 .45 1 1v13z"},"children":[]}]};exports.ic_g_translate_twotone=ic_g_translate_twotone;var ic_gavel={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"height":"20","transform":"matrix(0.7075 -0.7067 0.7067 0.7075 -5.6854 13.7194)","width":"4","x":"11.73","y":"3.73"},"children":[{"name":"rect","attribs":{"height":"20","transform":"matrix(0.7075 -0.7067 0.7067 0.7075 -5.6854 13.7194)","width":"4","x":"11.73","y":"3.73"},"children":[]}]},{"name":"rect","attribs":{"height":"8","transform":"matrix(0.707 -0.7072 0.7072 0.707 0.3157 11.246)","width":"4","x":"11.73","y":"1.24"},"children":[{"name":"rect","attribs":{"height":"8","transform":"matrix(0.707 -0.7072 0.7072 0.707 0.3157 11.246)","width":"4","x":"11.73","y":"1.24"},"children":[]}]},{"name":"rect","attribs":{"height":"8","transform":"matrix(0.7071 -0.7071 0.7071 0.7071 -8.1722 7.7256)","width":"4","x":"3.24","y":"9.73"},"children":[{"name":"rect","attribs":{"height":"8","transform":"matrix(0.7071 -0.7071 0.7071 0.7071 -8.1722 7.7256)","width":"4","x":"3.24","y":"9.73"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"12","x":"1","y":"21"},"children":[{"name":"rect","attribs":{"height":"2","width":"12","x":"1","y":"21"},"children":[]}]}]}]}]}]};exports.ic_gavel=ic_gavel;var ic_gavel_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M1 21h12v2H1v-2zM5.24 8.07l2.83-2.83 14.14 14.14-2.83 2.83L5.24 8.07zM12.32 1l5.66 5.66-2.83 2.83-5.66-5.66L12.32 1zM3.83 9.48l5.66 5.66-2.83 2.83L1 12.31l2.83-2.83z"},"children":[]}]};exports.ic_gavel_outline=ic_gavel_outline;var ic_gavel_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M1 21h12v2H1v-2zM5.24 8.07l2.83-2.83 14.14 14.14-2.83 2.83L5.24 8.07zM12.32 1l5.66 5.66-2.83 2.83-5.66-5.66L12.32 1zM3.83 9.48l5.66 5.66-2.83 2.83L1 12.31l2.83-2.83z"},"children":[]}]};exports.ic_gavel_twotone=ic_gavel_twotone;var ic_get_app={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 9h-4V3H9v6H5l7 7 7-7zM5 18v2h14v-2H5z"},"children":[]}]};exports.ic_get_app=ic_get_app;var ic_get_app_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13 5v6h1.17L12 13.17 9.83 11H11V5h2m2-2H9v6H5l7 7 7-7h-4V3zm4 15H5v2h14v-2z"},"children":[]}]};exports.ic_get_app_outline=ic_get_app_outline;var ic_get_app_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14.17 11H13V5h-2v6H9.83L12 13.17z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M19 9h-4V3H9v6H5l7 7 7-7zm-8 2V5h2v6h1.17L12 13.17 9.83 11H11zm-6 7h14v2H5z"},"children":[]}]};exports.ic_get_app_twotone=ic_get_app_twotone;var ic_gif={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"height":"6","width":"1.5","x":"11.5","y":"9"},"children":[{"name":"rect","attribs":{"height":"6","width":"1.5","x":"11.5","y":"9"},"children":[]}]},{"name":"path","attribs":{"d":"M9,9H6c-0.6,0-1,0.5-1,1v4c0,0.5,0.4,1,1,1h3c0.6,0,1-0.5,1-1v-2H8.5v1.5h-2v-3H10V10C10,9.5,9.6,9,9,9z"},"children":[{"name":"path","attribs":{"d":"M9,9H6c-0.6,0-1,0.5-1,1v4c0,0.5,0.4,1,1,1h3c0.6,0,1-0.5,1-1v-2H8.5v1.5h-2v-3H10V10C10,9.5,9.6,9,9,9z"},"children":[]}]},{"name":"polygon","attribs":{"points":"19,10.5 19,9 14.5,9 14.5,15 16,15 16,13 18,13 18,11.5 16,11.5 16,10.5"},"children":[{"name":"polygon","attribs":{"points":"19,10.5 19,9 14.5,9 14.5,15 16,15 16,13 18,13 18,11.5 16,11.5 16,10.5"},"children":[]}]}]}]}]}]};exports.ic_gif=ic_gif;var ic_gif_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11.5 9H13v6h-1.5V9zM9 9H6c-.6 0-1 .5-1 1v4c0 .5.4 1 1 1h3c.6 0 1-.5 1-1v-2H8.5v1.5h-2v-3H10V10c0-.5-.4-1-1-1zm10 1.5V9h-4.5v6H16v-2h2v-1.5h-2v-1h3z"},"children":[]}]};exports.ic_gif_outline=ic_gif_outline;var ic_gif_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11.5 9H13v6h-1.5V9zM9 9H6c-.6 0-1 .5-1 1v4c0 .5.4 1 1 1h3c.6 0 1-.5 1-1v-2H8.5v1.5h-2v-3H10V10c0-.5-.4-1-1-1zm10 1.5V9h-4.5v6H16v-2h2v-1.5h-2v-1h3z","opacity":".87"},"children":[]}]};exports.ic_gif_twotone=ic_gif_twotone;var ic_grade={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"},"children":[]}]};exports.ic_grade=ic_grade;var ic_grade_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 7.13l.97 2.29.47 1.11 1.2.1 2.47.21-1.88 1.63-.91.79.27 1.18.56 2.41-2.12-1.28-1.03-.64-1.03.62-2.12 1.28.56-2.41.27-1.18-.91-.79-1.88-1.63 2.47-.21 1.2-.1.47-1.11.97-2.27M12 2L9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2z"},"children":[]}]};exports.ic_grade_outline=ic_grade_outline;var ic_grade_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17.11 10.83l-2.47-.21-1.2-.1-.47-1.11L12 7.13l-.97 2.28-.47 1.11-1.2.1-2.47.21 1.88 1.63.91.79-.27 1.17-.57 2.42 2.13-1.28 1.03-.63 1.03.63 2.13 1.28-.57-2.42-.27-1.17.91-.79z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.64-7.03L22 9.24zm-7.41 5.18l.56 2.41-2.12-1.28-1.03-.62-1.03.62-2.12 1.28.56-2.41.27-1.18-.91-.79-1.88-1.63 2.47-.21 1.2-.1.47-1.11.97-2.27.97 2.29.47 1.11 1.2.1 2.47.21-1.88 1.63-.91.79.27 1.16z"},"children":[]}]};exports.ic_grade_twotone=ic_grade_twotone;var ic_grading={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M4,7h16v2H4V7z M4,13h16v-2H4V13z M4,17h7v-2H4V17z M4,21h7v-2H4V21z M15.41,18.17L14,16.75l-1.41,1.41L15.41,21L20,16.42 L18.58,15L15.41,18.17z M4,3v2h16V3H4z"},"children":[{"name":"path","attribs":{"d":"M4,7h16v2H4V7z M4,13h16v-2H4V13z M4,17h7v-2H4V17z M4,21h7v-2H4V21z M15.41,18.17L14,16.75l-1.41,1.41L15.41,21L20,16.42 L18.58,15L15.41,18.17z M4,3v2h16V3H4z"},"children":[]}]}]}]};exports.ic_grading=ic_grading;var ic_grading_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M4,7h16v2H4V7z M4,13h16v-2H4V13z M4,17h7v-2H4V17z M4,21h7v-2H4V21z M15.41,18.17L14,16.75l-1.41,1.41L15.41,21L20,16.42 L18.58,15L15.41,18.17z M4,3v2h16V3H4z"},"children":[{"name":"path","attribs":{"d":"M4,7h16v2H4V7z M4,13h16v-2H4V13z M4,17h7v-2H4V17z M4,21h7v-2H4V21z M15.41,18.17L14,16.75l-1.41,1.41L15.41,21L20,16.42 L18.58,15L15.41,18.17z M4,3v2h16V3H4z"},"children":[]}]}]}]};exports.ic_grading_outline=ic_grading_outline;var ic_grading_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M4,7h16v2H4V7z M4,13h16v-2H4V13z M4,17h7v-2H4V17z M4,21h7v-2H4V21z M15.41,18.17L14,16.75l-1.41,1.41L15.41,21L20,16.42 L18.58,15L15.41,18.17z M4,3v2h16V3H4z"},"children":[{"name":"path","attribs":{"d":"M4,7h16v2H4V7z M4,13h16v-2H4V13z M4,17h7v-2H4V17z M4,21h7v-2H4V21z M15.41,18.17L14,16.75l-1.41,1.41L15.41,21L20,16.42 L18.58,15L15.41,18.17z M4,3v2h16V3H4z"},"children":[]}]}]}]};exports.ic_grading_twotone=ic_grading_twotone;var ic_group_work={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM8 17.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5zM9.5 8c0-1.38 1.12-2.5 2.5-2.5s2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5S9.5 9.38 9.5 8zm6.5 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z"},"children":[]}]};exports.ic_group_work=ic_group_work;var ic_group_work_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"},"children":[]},{"name":"circle","attribs":{"cx":"8","cy":"14","r":"2"},"children":[]},{"name":"circle","attribs":{"cx":"12","cy":"8","r":"2"},"children":[]},{"name":"circle","attribs":{"cx":"16","cy":"14","r":"2"},"children":[]}]};exports.ic_group_work_outline=ic_group_work_outline;var ic_group_work_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zM8 16c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm4-6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm4 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"},"children":[]},{"name":"circle","attribs":{"cx":"8","cy":"14","r":"2"},"children":[]},{"name":"circle","attribs":{"cx":"12","cy":"8","r":"2"},"children":[]},{"name":"circle","attribs":{"cx":"16","cy":"14","r":"2"},"children":[]}]};exports.ic_group_work_twotone=ic_group_work_twotone;var ic_help={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 17h-2v-2h2v2zm2.07-7.75l-.9.92C13.45 12.9 13 13.5 13 15h-2v-.5c0-1.1.45-2.1 1.17-2.83l1.24-1.26c.37-.36.59-.86.59-1.41 0-1.1-.9-2-2-2s-2 .9-2 2H8c0-2.21 1.79-4 4-4s4 1.79 4 4c0 .88-.36 1.68-.93 2.25z"},"children":[]}]};exports.ic_help=ic_help;var ic_help_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 17h-2v-2h2v2zm2.07-7.75l-.9.92C13.45 12.9 13 13.5 13 15h-2v-.5c0-1.1.45-2.1 1.17-2.83l1.24-1.26c.37-.36.59-.86.59-1.41 0-1.1-.9-2-2-2s-2 .9-2 2H8c0-2.21 1.79-4 4-4s4 1.79 4 4c0 .88-.36 1.68-.93 2.25z"},"children":[]}]};exports.ic_help_outline=ic_help_outline;var ic_help_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm1 14h-2v-2h2v2zm0-3h-2c0-3.25 3-3 3-5 0-1.1-.9-2-2-2s-2 .9-2 2H8c0-2.21 1.79-4 4-4s4 1.79 4 4c0 2.5-3 2.75-3 5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M11 16h2v2h-2zm1-14C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-14c-2.21 0-4 1.79-4 4h2c0-1.1.9-2 2-2s2 .9 2 2c0 2-3 1.75-3 5h2c0-2.25 3-2.5 3-5 0-2.21-1.79-4-4-4z"},"children":[]}]};exports.ic_help_twotone=ic_help_twotone;var ic_help_center={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M12.01,18 c-0.7,0-1.26-0.56-1.26-1.26c0-0.71,0.56-1.25,1.26-1.25c0.71,0,1.25,0.54,1.25,1.25C13.25,17.43,12.72,18,12.01,18z M15.02,10.6 c-0.76,1.11-1.48,1.46-1.87,2.17c-0.16,0.29-0.22,0.48-0.22,1.41h-1.82c0-0.49-0.08-1.29,0.31-1.98c0.49-0.87,1.42-1.39,1.96-2.16 c0.57-0.81,0.25-2.33-1.37-2.33c-1.06,0-1.58,0.8-1.8,1.48L8.56,8.49C9.01,7.15,10.22,6,11.99,6c1.48,0,2.49,0.67,3.01,1.52 C15.44,8.24,15.7,9.59,15.02,10.6z"},"children":[{"name":"path","attribs":{"d":"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M12.01,18 c-0.7,0-1.26-0.56-1.26-1.26c0-0.71,0.56-1.25,1.26-1.25c0.71,0,1.25,0.54,1.25,1.25C13.25,17.43,12.72,18,12.01,18z M15.02,10.6 c-0.76,1.11-1.48,1.46-1.87,2.17c-0.16,0.29-0.22,0.48-0.22,1.41h-1.82c0-0.49-0.08-1.29,0.31-1.98c0.49-0.87,1.42-1.39,1.96-2.16 c0.57-0.81,0.25-2.33-1.37-2.33c-1.06,0-1.58,0.8-1.8,1.48L8.56,8.49C9.01,7.15,10.22,6,11.99,6c1.48,0,2.49,0.67,3.01,1.52 C15.44,8.24,15.7,9.59,15.02,10.6z"},"children":[]}]}]}]};exports.ic_help_center=ic_help_center;var ic_help_center_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M13.25,16.74c0,0.69-0.53,1.26-1.25,1.26c-0.7,0-1.26-0.56-1.26-1.26c0-0.71,0.56-1.25,1.26-1.25 C12.71,15.49,13.25,16.04,13.25,16.74z M11.99,6c-1.77,0-2.98,1.15-3.43,2.49l1.64,0.69c0.22-0.67,0.74-1.48,1.8-1.48 c1.62,0,1.94,1.52,1.37,2.33c-0.54,0.77-1.47,1.29-1.96,2.16c-0.39,0.69-0.31,1.49-0.31,1.98h1.82c0-0.93,0.07-1.12,0.22-1.41 c0.39-0.72,1.11-1.06,1.87-2.17c0.68-1,0.42-2.36-0.02-3.08C14.48,6.67,13.47,6,11.99,6z M19,5H5v14h14V5 M19,3c1.1,0,2,0.9,2,2v14 c0,1.1-0.9,2-2,2H5c-1.1,0-2-0.9-2-2V5c0-1.1,0.9-2,2-2H19L19,3z"},"children":[{"name":"path","attribs":{"d":"M13.25,16.74c0,0.69-0.53,1.26-1.25,1.26c-0.7,0-1.26-0.56-1.26-1.26c0-0.71,0.56-1.25,1.26-1.25 C12.71,15.49,13.25,16.04,13.25,16.74z M11.99,6c-1.77,0-2.98,1.15-3.43,2.49l1.64,0.69c0.22-0.67,0.74-1.48,1.8-1.48 c1.62,0,1.94,1.52,1.37,2.33c-0.54,0.77-1.47,1.29-1.96,2.16c-0.39,0.69-0.31,1.49-0.31,1.98h1.82c0-0.93,0.07-1.12,0.22-1.41 c0.39-0.72,1.11-1.06,1.87-2.17c0.68-1,0.42-2.36-0.02-3.08C14.48,6.67,13.47,6,11.99,6z M19,5H5v14h14V5 M19,3c1.1,0,2,0.9,2,2v14 c0,1.1-0.9,2-2,2H5c-1.1,0-2-0.9-2-2V5c0-1.1,0.9-2,2-2H19L19,3z"},"children":[]}]}]}]};exports.ic_help_center_outline=ic_help_center_outline;var ic_help_center_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M5,5v14h14V5H5z M12.01,18c-0.7,0-1.26-0.56-1.26-1.26c0-0.71,0.56-1.25,1.26-1.25 c0.71,0,1.25,0.54,1.25,1.25C13.25,17.43,12.72,18,12.01,18z M15.02,10.6c-0.76,1.11-1.48,1.46-1.87,2.17 c-0.16,0.29-0.22,0.48-0.22,1.41h-1.82c0-0.49-0.08-1.29,0.31-1.98c0.49-0.87,1.42-1.39,1.96-2.16c0.57-0.81,0.25-2.33-1.37-2.33 c-1.06,0-1.58,0.8-1.8,1.48L8.56,8.49C9.01,7.15,10.22,6,11.99,6c1.48,0,2.49,0.67,3.01,1.52C15.44,8.24,15.7,9.59,15.02,10.6z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M5,5v14h14V5H5z M12.01,18c-0.7,0-1.26-0.56-1.26-1.26c0-0.71,0.56-1.25,1.26-1.25 c0.71,0,1.25,0.54,1.25,1.25C13.25,17.43,12.72,18,12.01,18z M15.02,10.6c-0.76,1.11-1.48,1.46-1.87,2.17 c-0.16,0.29-0.22,0.48-0.22,1.41h-1.82c0-0.49-0.08-1.29,0.31-1.98c0.49-0.87,1.42-1.39,1.96-2.16c0.57-0.81,0.25-2.33-1.37-2.33 c-1.06,0-1.58,0.8-1.8,1.48L8.56,8.49C9.01,7.15,10.22,6,11.99,6c1.48,0,2.49,0.67,3.01,1.52C15.44,8.24,15.7,9.59,15.02,10.6z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M13.25,16.74c0,0.69-0.53,1.26-1.25,1.26c-0.7,0-1.26-0.56-1.26-1.26c0-0.71,0.56-1.25,1.26-1.25 C12.71,15.49,13.25,16.04,13.25,16.74z M11.99,6c-1.77,0-2.98,1.15-3.43,2.49l1.64,0.69c0.22-0.67,0.74-1.48,1.8-1.48 c1.62,0,1.94,1.52,1.37,2.33c-0.54,0.77-1.47,1.29-1.96,2.16c-0.39,0.69-0.31,1.49-0.31,1.98h1.82c0-0.93,0.07-1.12,0.22-1.41 c0.39-0.72,1.11-1.06,1.87-2.17c0.68-1,0.42-2.36-0.02-3.08C14.48,6.67,13.47,6,11.99,6z M19,5H5v14h14V5 M19,3c1.1,0,2,0.9,2,2v14 c0,1.1-0.9,2-2,2H5c-1.1,0-2-0.9-2-2V5c0-1.1,0.9-2,2-2H19L19,3z"},"children":[{"name":"path","attribs":{"d":"M13.25,16.74c0,0.69-0.53,1.26-1.25,1.26c-0.7,0-1.26-0.56-1.26-1.26c0-0.71,0.56-1.25,1.26-1.25 C12.71,15.49,13.25,16.04,13.25,16.74z M11.99,6c-1.77,0-2.98,1.15-3.43,2.49l1.64,0.69c0.22-0.67,0.74-1.48,1.8-1.48 c1.62,0,1.94,1.52,1.37,2.33c-0.54,0.77-1.47,1.29-1.96,2.16c-0.39,0.69-0.31,1.49-0.31,1.98h1.82c0-0.93,0.07-1.12,0.22-1.41 c0.39-0.72,1.11-1.06,1.87-2.17c0.68-1,0.42-2.36-0.02-3.08C14.48,6.67,13.47,6,11.99,6z M19,5H5v14h14V5 M19,3c1.1,0,2,0.9,2,2v14 c0,1.1-0.9,2-2,2H5c-1.1,0-2-0.9-2-2V5c0-1.1,0.9-2,2-2H19L19,3z"},"children":[]}]}]}]};exports.ic_help_center_twotone=ic_help_center_twotone;var ic_help_outline_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11 18h2v-2h-2v2zm1-16C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-14c-2.21 0-4 1.79-4 4h2c0-1.1.9-2 2-2s2 .9 2 2c0 2-3 1.75-3 5h2c0-2.25 3-2.5 3-5 0-2.21-1.79-4-4-4z"},"children":[]}]};exports.ic_help_outline_outline=ic_help_outline_outline;var ic_help_outline_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11 16h2v2h-2zm1-14C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-14c-2.21 0-4 1.79-4 4h2c0-1.1.9-2 2-2s2 .9 2 2c0 2-3 1.75-3 5h2c0-2.25 3-2.5 3-5 0-2.21-1.79-4-4-4z"},"children":[]}]};exports.ic_help_outline_twotone=ic_help_outline_twotone;var ic_highlight_alt={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 5h-2V3h2v2zm-2 16h2v-2.59L19.59 21 21 19.59 18.41 17H21v-2h-6v6zm4-12h2V7h-2v2zm0 4h2v-2h-2v2zm-8 8h2v-2h-2v2zM7 5h2V3H7v2zM3 17h2v-2H3v2zm2 4v-2H3c0 1.1.9 2 2 2zM19 3v2h2c0-1.1-.9-2-2-2zm-8 2h2V3h-2v2zM3 9h2V7H3v2zm4 12h2v-2H7v2zm-4-8h2v-2H3v2zm0-8h2V3c-1.1 0-2 .9-2 2z"},"children":[]}]};exports.ic_highlight_alt=ic_highlight_alt;var ic_highlight_alt_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M17,5h-2V3h2V5z M15,15v6l2.29-2.29L19.59,21L21,19.59l-2.29-2.29L21,15H15z M19,9h2V7h-2V9z M19,13h2v-2h-2V13z M11,21h2 v-2h-2V21z M7,5h2V3H7V5z M3,17h2v-2H3V17z M5,21v-2H3C3,20.1,3.9,21,5,21z M19,3v2h2C21,3.9,20.1,3,19,3z M11,5h2V3h-2V5z M3,9h2 V7H3V9z M7,21h2v-2H7V21z M3,13h2v-2H3V13z M3,5h2V3C3.9,3,3,3.9,3,5z"},"children":[{"name":"path","attribs":{"d":"M17,5h-2V3h2V5z M15,15v6l2.29-2.29L19.59,21L21,19.59l-2.29-2.29L21,15H15z M19,9h2V7h-2V9z M19,13h2v-2h-2V13z M11,21h2 v-2h-2V21z M7,5h2V3H7V5z M3,17h2v-2H3V17z M5,21v-2H3C3,20.1,3.9,21,5,21z M19,3v2h2C21,3.9,20.1,3,19,3z M11,5h2V3h-2V5z M3,9h2 V7H3V9z M7,21h2v-2H7V21z M3,13h2v-2H3V13z M3,5h2V3C3.9,3,3,3.9,3,5z"},"children":[]}]}]}]};exports.ic_highlight_alt_outline=ic_highlight_alt_outline;var ic_highlight_alt_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M17,5h-2V3h2V5z M15,15v6l2.29-2.29L19.59,21L21,19.59l-2.29-2.29L21,15H15z M19,9h2V7h-2V9z M19,13h2v-2h-2V13z M11,21h2 v-2h-2V21z M7,5h2V3H7V5z M3,17h2v-2H3V17z M5,21v-2H3C3,20.1,3.9,21,5,21z M19,3v2h2C21,3.9,20.1,3,19,3z M11,5h2V3h-2V5z M3,9h2 V7H3V9z M7,21h2v-2H7V21z M3,13h2v-2H3V13z M3,5h2V3C3.9,3,3,3.9,3,5z"},"children":[{"name":"path","attribs":{"d":"M17,5h-2V3h2V5z M15,15v6l2.29-2.29L19.59,21L21,19.59l-2.29-2.29L21,15H15z M19,9h2V7h-2V9z M19,13h2v-2h-2V13z M11,21h2 v-2h-2V21z M7,5h2V3H7V5z M3,17h2v-2H3V17z M5,21v-2H3C3,20.1,3.9,21,5,21z M19,3v2h2C21,3.9,20.1,3,19,3z M11,5h2V3h-2V5z M3,9h2 V7H3V9z M7,21h2v-2H7V21z M3,13h2v-2H3V13z M3,5h2V3C3.9,3,3,3.9,3,5z"},"children":[]}]}]}]};exports.ic_highlight_alt_twotone=ic_highlight_alt_twotone;var ic_highlight_off={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14.59 8L12 10.59 9.41 8 8 9.41 10.59 12 8 14.59 9.41 16 12 13.41 14.59 16 16 14.59 13.41 12 16 9.41 14.59 8zM12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"},"children":[]}]};exports.ic_highlight_off=ic_highlight_off;var ic_highlight_off_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14.59 8L12 10.59 9.41 8 8 9.41 10.59 12 8 14.59 9.41 16 12 13.41 14.59 16 16 14.59 13.41 12 16 9.41 14.59 8zM12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"},"children":[]}]};exports.ic_highlight_off_outline=ic_highlight_off_outline;var ic_highlight_off_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm4 10.59L14.59 16 12 13.41 9.41 16 8 14.59 10.59 12 8 9.41 9.41 8 12 10.59 14.59 8 16 9.41 13.41 12 16 14.59z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M14.59 8L12 10.59 9.41 8 8 9.41 10.59 12 8 14.59 9.41 16 12 13.41 14.59 16 16 14.59 13.41 12 16 9.41zM12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"},"children":[]}]};exports.ic_highlight_off_twotone=ic_highlight_off_twotone;var ic_history={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13 3c-4.97 0-9 4.03-9 9H1l3.89 3.89.07.14L9 12H6c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.93 0-3.68-.79-4.94-2.06l-1.42 1.42C8.27 19.99 10.51 21 13 21c4.97 0 9-4.03 9-9s-4.03-9-9-9zm-1 5v5l4.28 2.54.72-1.21-3.5-2.08V8H12z"},"children":[]}]};exports.ic_history=ic_history;var ic_history_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13 3c-4.97 0-9 4.03-9 9H1l3.89 3.89.07.14L9 12H6c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.93 0-3.68-.79-4.94-2.06l-1.42 1.42C8.27 19.99 10.51 21 13 21c4.97 0 9-4.03 9-9s-4.03-9-9-9zm-1 5v5l4.25 2.52.77-1.28-3.52-2.09V8z"},"children":[]}]};exports.ic_history_outline=ic_history_outline;var ic_history_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13 3c-4.97 0-9 4.03-9 9H1l3.89 3.89.07.14L9 12H6c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.93 0-3.68-.79-4.94-2.06l-1.42 1.42C8.27 19.99 10.51 21 13 21c4.97 0 9-4.03 9-9s-4.03-9-9-9zm-1 5v5l4.25 2.52.77-1.28-3.52-2.09V8z"},"children":[]}]};exports.ic_history_twotone=ic_history_twotone;var ic_history_toggle_off={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M15.1,19.37l1,1.74c-0.96,0.44-2.01,0.73-3.1,0.84v-2.02C13.74,19.84,14.44,19.65,15.1,19.37z M4.07,13H2.05 c0.11,1.1,0.4,2.14,0.84,3.1l1.74-1C4.35,14.44,4.16,13.74,4.07,13z M15.1,4.63l1-1.74C15.14,2.45,14.1,2.16,13,2.05v2.02 C13.74,4.16,14.44,4.35,15.1,4.63z M19.93,11h2.02c-0.11-1.1-0.4-2.14-0.84-3.1l-1.74,1C19.65,9.56,19.84,10.26,19.93,11z M8.9,19.37l-1,1.74c0.96,0.44,2.01,0.73,3.1,0.84v-2.02C10.26,19.84,9.56,19.65,8.9,19.37z M11,4.07V2.05 c-1.1,0.11-2.14,0.4-3.1,0.84l1,1.74C9.56,4.35,10.26,4.16,11,4.07z M18.36,7.17l1.74-1.01c-0.63-0.87-1.4-1.64-2.27-2.27 l-1.01,1.74C17.41,6.08,17.92,6.59,18.36,7.17z M4.63,8.9l-1.74-1C2.45,8.86,2.16,9.9,2.05,11h2.02C4.16,10.26,4.35,9.56,4.63,8.9z M19.93,13c-0.09,0.74-0.28,1.44-0.56,2.1l1.74,1c0.44-0.96,0.73-2.01,0.84-3.1H19.93z M16.83,18.36l1.01,1.74 c0.87-0.63,1.64-1.4,2.27-2.27l-1.74-1.01C17.92,17.41,17.41,17.92,16.83,18.36z M7.17,5.64L6.17,3.89 C5.29,4.53,4.53,5.29,3.9,6.17l1.74,1.01C6.08,6.59,6.59,6.08,7.17,5.64z M5.64,16.83L3.9,17.83c0.63,0.87,1.4,1.64,2.27,2.27 l1.01-1.74C6.59,17.92,6.08,17.41,5.64,16.83z M13,7h-2v5.41l4.29,4.29l1.41-1.41L13,11.59V7z"},"children":[{"name":"path","attribs":{"d":"M15.1,19.37l1,1.74c-0.96,0.44-2.01,0.73-3.1,0.84v-2.02C13.74,19.84,14.44,19.65,15.1,19.37z M4.07,13H2.05 c0.11,1.1,0.4,2.14,0.84,3.1l1.74-1C4.35,14.44,4.16,13.74,4.07,13z M15.1,4.63l1-1.74C15.14,2.45,14.1,2.16,13,2.05v2.02 C13.74,4.16,14.44,4.35,15.1,4.63z M19.93,11h2.02c-0.11-1.1-0.4-2.14-0.84-3.1l-1.74,1C19.65,9.56,19.84,10.26,19.93,11z M8.9,19.37l-1,1.74c0.96,0.44,2.01,0.73,3.1,0.84v-2.02C10.26,19.84,9.56,19.65,8.9,19.37z M11,4.07V2.05 c-1.1,0.11-2.14,0.4-3.1,0.84l1,1.74C9.56,4.35,10.26,4.16,11,4.07z M18.36,7.17l1.74-1.01c-0.63-0.87-1.4-1.64-2.27-2.27 l-1.01,1.74C17.41,6.08,17.92,6.59,18.36,7.17z M4.63,8.9l-1.74-1C2.45,8.86,2.16,9.9,2.05,11h2.02C4.16,10.26,4.35,9.56,4.63,8.9z M19.93,13c-0.09,0.74-0.28,1.44-0.56,2.1l1.74,1c0.44-0.96,0.73-2.01,0.84-3.1H19.93z M16.83,18.36l1.01,1.74 c0.87-0.63,1.64-1.4,2.27-2.27l-1.74-1.01C17.92,17.41,17.41,17.92,16.83,18.36z M7.17,5.64L6.17,3.89 C5.29,4.53,4.53,5.29,3.9,6.17l1.74,1.01C6.08,6.59,6.59,6.08,7.17,5.64z M5.64,16.83L3.9,17.83c0.63,0.87,1.4,1.64,2.27,2.27 l1.01-1.74C6.59,17.92,6.08,17.41,5.64,16.83z M13,7h-2v5.41l4.29,4.29l1.41-1.41L13,11.59V7z"},"children":[]}]}]}]};exports.ic_history_toggle_off=ic_history_toggle_off;var ic_history_toggle_off_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M15.1,19.37l1,1.74c-0.96,0.44-2.01,0.73-3.1,0.84v-2.02C13.74,19.84,14.44,19.65,15.1,19.37z M4.07,13H2.05 c0.11,1.1,0.4,2.14,0.84,3.1l1.74-1C4.35,14.44,4.16,13.74,4.07,13z M15.1,4.63l1-1.74C15.14,2.45,14.1,2.16,13,2.05v2.02 C13.74,4.16,14.44,4.35,15.1,4.63z M19.93,11h2.02c-0.11-1.1-0.4-2.14-0.84-3.1l-1.74,1C19.65,9.56,19.84,10.26,19.93,11z M8.9,19.37l-1,1.74c0.96,0.44,2.01,0.73,3.1,0.84v-2.02C10.26,19.84,9.56,19.65,8.9,19.37z M11,4.07V2.05 c-1.1,0.11-2.14,0.4-3.1,0.84l1,1.74C9.56,4.35,10.26,4.16,11,4.07z M18.36,7.17l1.74-1.01c-0.63-0.87-1.4-1.64-2.27-2.27 l-1.01,1.74C17.41,6.08,17.92,6.59,18.36,7.17z M4.63,8.9l-1.74-1C2.45,8.86,2.16,9.9,2.05,11h2.02C4.16,10.26,4.35,9.56,4.63,8.9z M19.93,13c-0.09,0.74-0.28,1.44-0.56,2.1l1.74,1c0.44-0.96,0.73-2.01,0.84-3.1H19.93z M16.83,18.36l1.01,1.74 c0.87-0.63,1.64-1.4,2.27-2.27l-1.74-1.01C17.92,17.41,17.41,17.92,16.83,18.36z M7.17,5.64L6.17,3.89 C5.29,4.53,4.53,5.29,3.9,6.17l1.74,1.01C6.08,6.59,6.59,6.08,7.17,5.64z M5.64,16.83L3.9,17.83c0.63,0.87,1.4,1.64,2.27,2.27 l1.01-1.74C6.59,17.92,6.08,17.41,5.64,16.83z M13,7h-2v5.41l4.29,4.29l1.41-1.41L13,11.59V7z"},"children":[{"name":"path","attribs":{"d":"M15.1,19.37l1,1.74c-0.96,0.44-2.01,0.73-3.1,0.84v-2.02C13.74,19.84,14.44,19.65,15.1,19.37z M4.07,13H2.05 c0.11,1.1,0.4,2.14,0.84,3.1l1.74-1C4.35,14.44,4.16,13.74,4.07,13z M15.1,4.63l1-1.74C15.14,2.45,14.1,2.16,13,2.05v2.02 C13.74,4.16,14.44,4.35,15.1,4.63z M19.93,11h2.02c-0.11-1.1-0.4-2.14-0.84-3.1l-1.74,1C19.65,9.56,19.84,10.26,19.93,11z M8.9,19.37l-1,1.74c0.96,0.44,2.01,0.73,3.1,0.84v-2.02C10.26,19.84,9.56,19.65,8.9,19.37z M11,4.07V2.05 c-1.1,0.11-2.14,0.4-3.1,0.84l1,1.74C9.56,4.35,10.26,4.16,11,4.07z M18.36,7.17l1.74-1.01c-0.63-0.87-1.4-1.64-2.27-2.27 l-1.01,1.74C17.41,6.08,17.92,6.59,18.36,7.17z M4.63,8.9l-1.74-1C2.45,8.86,2.16,9.9,2.05,11h2.02C4.16,10.26,4.35,9.56,4.63,8.9z M19.93,13c-0.09,0.74-0.28,1.44-0.56,2.1l1.74,1c0.44-0.96,0.73-2.01,0.84-3.1H19.93z M16.83,18.36l1.01,1.74 c0.87-0.63,1.64-1.4,2.27-2.27l-1.74-1.01C17.92,17.41,17.41,17.92,16.83,18.36z M7.17,5.64L6.17,3.89 C5.29,4.53,4.53,5.29,3.9,6.17l1.74,1.01C6.08,6.59,6.59,6.08,7.17,5.64z M5.64,16.83L3.9,17.83c0.63,0.87,1.4,1.64,2.27,2.27 l1.01-1.74C6.59,17.92,6.08,17.41,5.64,16.83z M13,7h-2v5.41l4.29,4.29l1.41-1.41L13,11.59V7z"},"children":[]}]}]}]};exports.ic_history_toggle_off_outline=ic_history_toggle_off_outline;var ic_history_toggle_off_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M15.1,19.37l1,1.74c-0.96,0.44-2.01,0.73-3.1,0.84v-2.02C13.74,19.84,14.44,19.65,15.1,19.37z M4.07,13H2.05 c0.11,1.1,0.4,2.14,0.84,3.1l1.74-1C4.35,14.44,4.16,13.74,4.07,13z M15.1,4.63l1-1.74C15.14,2.45,14.1,2.16,13,2.05v2.02 C13.74,4.16,14.44,4.35,15.1,4.63z M19.93,11h2.02c-0.11-1.1-0.4-2.14-0.84-3.1l-1.74,1C19.65,9.56,19.84,10.26,19.93,11z M8.9,19.37l-1,1.74c0.96,0.44,2.01,0.73,3.1,0.84v-2.02C10.26,19.84,9.56,19.65,8.9,19.37z M11,4.07V2.05 c-1.1,0.11-2.14,0.4-3.1,0.84l1,1.74C9.56,4.35,10.26,4.16,11,4.07z M18.36,7.17l1.74-1.01c-0.63-0.87-1.4-1.64-2.27-2.27 l-1.01,1.74C17.41,6.08,17.92,6.59,18.36,7.17z M4.63,8.9l-1.74-1C2.45,8.86,2.16,9.9,2.05,11h2.02C4.16,10.26,4.35,9.56,4.63,8.9z M19.93,13c-0.09,0.74-0.28,1.44-0.56,2.1l1.74,1c0.44-0.96,0.73-2.01,0.84-3.1H19.93z M16.83,18.36l1.01,1.74 c0.87-0.63,1.64-1.4,2.27-2.27l-1.74-1.01C17.92,17.41,17.41,17.92,16.83,18.36z M7.17,5.64L6.17,3.89 C5.29,4.53,4.53,5.29,3.9,6.17l1.74,1.01C6.08,6.59,6.59,6.08,7.17,5.64z M5.64,16.83L3.9,17.83c0.63,0.87,1.4,1.64,2.27,2.27 l1.01-1.74C6.59,17.92,6.08,17.41,5.64,16.83z M13,7h-2v5.41l4.29,4.29l1.41-1.41L13,11.59V7z"},"children":[{"name":"path","attribs":{"d":"M15.1,19.37l1,1.74c-0.96,0.44-2.01,0.73-3.1,0.84v-2.02C13.74,19.84,14.44,19.65,15.1,19.37z M4.07,13H2.05 c0.11,1.1,0.4,2.14,0.84,3.1l1.74-1C4.35,14.44,4.16,13.74,4.07,13z M15.1,4.63l1-1.74C15.14,2.45,14.1,2.16,13,2.05v2.02 C13.74,4.16,14.44,4.35,15.1,4.63z M19.93,11h2.02c-0.11-1.1-0.4-2.14-0.84-3.1l-1.74,1C19.65,9.56,19.84,10.26,19.93,11z M8.9,19.37l-1,1.74c0.96,0.44,2.01,0.73,3.1,0.84v-2.02C10.26,19.84,9.56,19.65,8.9,19.37z M11,4.07V2.05 c-1.1,0.11-2.14,0.4-3.1,0.84l1,1.74C9.56,4.35,10.26,4.16,11,4.07z M18.36,7.17l1.74-1.01c-0.63-0.87-1.4-1.64-2.27-2.27 l-1.01,1.74C17.41,6.08,17.92,6.59,18.36,7.17z M4.63,8.9l-1.74-1C2.45,8.86,2.16,9.9,2.05,11h2.02C4.16,10.26,4.35,9.56,4.63,8.9z M19.93,13c-0.09,0.74-0.28,1.44-0.56,2.1l1.74,1c0.44-0.96,0.73-2.01,0.84-3.1H19.93z M16.83,18.36l1.01,1.74 c0.87-0.63,1.64-1.4,2.27-2.27l-1.74-1.01C17.92,17.41,17.41,17.92,16.83,18.36z M7.17,5.64L6.17,3.89 C5.29,4.53,4.53,5.29,3.9,6.17l1.74,1.01C6.08,6.59,6.59,6.08,7.17,5.64z M5.64,16.83L3.9,17.83c0.63,0.87,1.4,1.64,2.27,2.27 l1.01-1.74C6.59,17.92,6.08,17.41,5.64,16.83z M13,7h-2v5.41l4.29,4.29l1.41-1.41L13,11.59V7z"},"children":[]}]}]}]};exports.ic_history_toggle_off_twotone=ic_history_toggle_off_twotone;var ic_home={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z"},"children":[]}]};exports.ic_home=ic_home;var ic_home_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 5.69l5 4.5V18h-2v-6H9v6H7v-7.81l5-4.5M12 3L2 12h3v8h6v-6h2v6h6v-8h3L12 3z"},"children":[]}]};exports.ic_home_outline=ic_home_outline;var ic_home_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 3L2 12h3v8h6v-6h2v6h6v-8h3L12 3zm5 15h-2v-6H9v6H7v-7.81l5-4.5 5 4.5V18z"},"children":[]},{"name":"path","attribs":{"d":"M7 10.19V18h2v-6h6v6h2v-7.81l-5-4.5z","opacity":".3"},"children":[]}]};exports.ic_home_twotone=ic_home_twotone;var ic_home_filled={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 3L4 9v12h5v-7h6v7h5V9z"},"children":[]}]};exports.ic_home_filled=ic_home_filled;var ic_horizontal_split={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 19h18v-6H3v6zm0-8h18V9H3v2zm0-6v2h18V5H3z"},"children":[]}]};exports.ic_horizontal_split=ic_horizontal_split;var ic_horizontal_split_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 15v2H5v-2h14m2-10H3v2h18V5zm0 4H3v2h18V9zm0 4H3v6h18v-6z"},"children":[]}]};exports.ic_horizontal_split_outline=ic_horizontal_split_outline;var ic_horizontal_split_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 15v2H5v-2h14m2-10H3v2h18V5zm0 4H3v2h18V9zm0 4H3v6h18v-6z"},"children":[]},{"name":"path","attribs":{"d":"M5 15h14v2H5z","opacity":".3"},"children":[]}]};exports.ic_horizontal_split_twotone=ic_horizontal_split_twotone;var ic_hourglass_disabled={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"8,4 16,4 16,7.5 13.16,10.34 14.41,11.59 18,8.01 17.99,8 18,8 18,2 6,2 6,3.17 8,5.17"},"children":[{"name":"polygon","attribs":{"points":"8,4 16,4 16,7.5 13.16,10.34 14.41,11.59 18,8.01 17.99,8 18,8 18,2 6,2 6,3.17 8,5.17"},"children":[]}]},{"name":"path","attribs":{"d":"M2.1,2.1L0.69,3.51l8.9,8.9L6,16l0.01,0.01H6V22h12v-1.17l2.49,2.49l1.41-1.41L2.1,2.1z M16,20H8v-3.5l2.84-2.84L16,18.83 V20z"},"children":[{"name":"path","attribs":{"d":"M2.1,2.1L0.69,3.51l8.9,8.9L6,16l0.01,0.01H6V22h12v-1.17l2.49,2.49l1.41-1.41L2.1,2.1z M16,20H8v-3.5l2.84-2.84L16,18.83 V20z"},"children":[]}]}]}]}]}]};exports.ic_hourglass_disabled=ic_hourglass_disabled;var ic_hourglass_disabled_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"8,4 16,4 16,7.5 13.16,10.34 14.41,11.59 18,8.01 17.99,8 18,8 18,2 6,2 6,3.17 8,5.17"},"children":[{"name":"polygon","attribs":{"points":"8,4 16,4 16,7.5 13.16,10.34 14.41,11.59 18,8.01 17.99,8 18,8 18,2 6,2 6,3.17 8,5.17"},"children":[]}]},{"name":"path","attribs":{"d":"M2.1,2.1L0.69,3.51l8.9,8.9L6,16l0.01,0.01H6V22h12v-1.17l2.49,2.49l1.41-1.41L2.1,2.1z M16,20H8v-3.5l2.84-2.84L16,18.83 V20z"},"children":[{"name":"path","attribs":{"d":"M2.1,2.1L0.69,3.51l8.9,8.9L6,16l0.01,0.01H6V22h12v-1.17l2.49,2.49l1.41-1.41L2.1,2.1z M16,20H8v-3.5l2.84-2.84L16,18.83 V20z"},"children":[]}]}]}]}]}]};exports.ic_hourglass_disabled_outline=ic_hourglass_disabled_outline;var ic_hourglass_disabled_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"8,4 16,4 16,7.5 13.16,10.34 14.41,11.59 18,8.01 17.99,8 18,8 18,2 6,2 6,3.17 8,5.17"},"children":[{"name":"polygon","attribs":{"points":"8,4 16,4 16,7.5 13.16,10.34 14.41,11.59 18,8.01 17.99,8 18,8 18,2 6,2 6,3.17 8,5.17"},"children":[]}]},{"name":"path","attribs":{"d":"M2.1,2.1L0.69,3.51l8.9,8.9L6,16l0.01,0.01H6V22h12v-1.17l2.49,2.49l1.41-1.41L2.1,2.1z M16,20H8v-3.5l2.84-2.84L16,18.83 V20z"},"children":[{"name":"path","attribs":{"d":"M2.1,2.1L0.69,3.51l8.9,8.9L6,16l0.01,0.01H6V22h12v-1.17l2.49,2.49l1.41-1.41L2.1,2.1z M16,20H8v-3.5l2.84-2.84L16,18.83 V20z"},"children":[]}]}]}]}]}]};exports.ic_hourglass_disabled_twotone=ic_hourglass_disabled_twotone;var ic_hourglass_empty={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6 2v6h.01L6 8.01 10 12l-4 4 .01.01H6V22h12v-5.99h-.01L18 16l-4-4 4-3.99-.01-.01H18V2H6zm10 14.5V20H8v-3.5l4-4 4 4zm-4-5l-4-4V4h8v3.5l-4 4z"},"children":[]}]};exports.ic_hourglass_empty=ic_hourglass_empty;var ic_hourglass_empty_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6 2v6h.01L6 8.01 10 12l-4 4 .01.01H6V22h12v-5.99h-.01L18 16l-4-4 4-3.99-.01-.01H18V2H6zm10 14.5V20H8v-3.5l4-4 4 4zm-4-5l-4-4V4h8v3.5l-4 4z"},"children":[]}]};exports.ic_hourglass_empty_outline=ic_hourglass_empty_outline;var ic_hourglass_empty_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 2H6v6h.01L6 8.01 10 12l-4 4 .01.01H6V22h12v-5.99h-.01L18 16l-4-4 4-3.99-.01-.01H18V2zm-2 14.5V20H8v-3.5l4-4 4 4zm0-9l-4 4-4-4V4h8v3.5z"},"children":[]}]};exports.ic_hourglass_empty_twotone=ic_hourglass_empty_twotone;var ic_hourglass_full={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6 2v6h.01L6 8.01 10 12l-4 4 .01.01H6V22h12v-5.99h-.01L18 16l-4-4 4-3.99-.01-.01H18V2H6z"},"children":[]}]};exports.ic_hourglass_full=ic_hourglass_full;var ic_hourglass_full_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6 2v6h.01L6 8.01 10 12l-4 4 .01.01H6V22h12v-5.99h-.01L18 16l-4-4 4-3.99-.01-.01H18V2H6z"},"children":[]}]};exports.ic_hourglass_full_outline=ic_hourglass_full_outline;var ic_hourglass_full_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8 7.5l4 4 4-4V4H8zm0 9V20h8v-3.5l-4-4z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M18 2H6v6h.01L6 8.01 10 12l-4 4 .01.01H6V22h12v-5.99h-.01L18 16l-4-4 4-3.99-.01-.01H18V2zm-2 14.5V20H8v-3.5l4-4 4 4zm0-9l-4 4-4-4V4h8v3.5z"},"children":[]}]};exports.ic_hourglass_full_twotone=ic_hourglass_full_twotone;var ic_http={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M4.5 11h-2V9H1v6h1.5v-2.5h2V15H6V9H4.5v2zm2.5-.5h1.5V15H10v-4.5h1.5V9H7v1.5zm5.5 0H14V15h1.5v-4.5H17V9h-4.5v1.5zm9-1.5H18v6h1.5v-2h2c.8 0 1.5-.7 1.5-1.5v-1c0-.8-.7-1.5-1.5-1.5zm0 2.5h-2v-1h2v1z"},"children":[]},{"name":"path","attribs":{"d":"M24 24H0V0h24v24z","fill":"none"},"children":[]}]};exports.ic_http=ic_http;var ic_http_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M24 24H0V0h24v24z","fill":"none","opacity":".87"},"children":[]},{"name":"path","attribs":{"d":"M4.5 11h-2V9H1v6h1.5v-2.5h2V15H6V9H4.5v2zm2.5-.5h1.5V15H10v-4.5h1.5V9H7v1.5zm5.5 0H14V15h1.5v-4.5H17V9h-4.5v1.5zm9-1.5H18v6h1.5v-2h2c.8 0 1.5-.7 1.5-1.5v-1c0-.8-.7-1.5-1.5-1.5zm0 2.5h-2v-1h2v1z"},"children":[]}]};exports.ic_http_outline=ic_http_outline;var ic_http_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M24 24H0V0h24v24z","fill":"none","opacity":".87"},"children":[]},{"name":"path","attribs":{"d":"M4.5 11h-2V9H1v6h1.5v-2.5h2V15H6V9H4.5v2zm2.5-.5h1.5V15H10v-4.5h1.5V9H7v1.5zm5.5 0H14V15h1.5v-4.5H17V9h-4.5v1.5zm9-1.5H18v6h1.5v-2h2c.8 0 1.5-.7 1.5-1.5v-1c0-.8-.7-1.5-1.5-1.5zm0 2.5h-2v-1h2v1z"},"children":[]}]};exports.ic_http_twotone=ic_http_twotone;var ic_https={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2z"},"children":[]}]};exports.ic_https=ic_https;var ic_https_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zM9 6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9V6zm9 14H6V10h12v10zm-6-3c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z"},"children":[]}]};exports.ic_https_outline=ic_https_outline;var ic_https_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6 20h12V10H6v10zm6-7c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zM9 6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9V6zm9 14H6V10h12v10zm-6-3c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z"},"children":[]}]};exports.ic_https_twotone=ic_https_twotone;var ic_important_devices={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M23 11.01L18 11c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-9c0-.55-.45-.99-1-.99zM23 20h-5v-7h5v7zM20 2H2C.89 2 0 2.89 0 4v12c0 1.1.89 2 2 2h7v2H7v2h8v-2h-2v-2h2v-2H2V4h18v5h2V4c0-1.11-.9-2-2-2zm-8.03 7L11 6l-.97 3H7l2.47 1.76-.94 2.91 2.47-1.8 2.47 1.8-.94-2.91L15 9h-3.03z"},"children":[]}]};exports.ic_important_devices=ic_important_devices;var ic_important_devices_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M23 11.01L18 11c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-9c0-.55-.45-.99-1-.99zM23 20h-5v-7h5v7zM20 2H2C.89 2 0 2.89 0 4v12c0 1.1.89 2 2 2h7v2H7v2h8v-2h-2v-2h2v-2H2V4h18v5h2V4c0-1.11-.9-2-2-2zm-8.03 7L11 6l-.97 3H7l2.47 1.76-.94 2.91 2.47-1.8 2.47 1.8-.94-2.91L15 9h-3.03z"},"children":[]}]};exports.ic_important_devices_outline=ic_important_devices_outline;var ic_important_devices_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 13h5v7h-5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M23 11.01L18 11c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-9c0-.55-.45-.99-1-.99zM23 20h-5v-7h5v7zM2 4h18v5h2V4c0-1.11-.9-2-2-2H2C.89 2 0 2.89 0 4v12c0 1.1.89 2 2 2h7v2H7v2h8v-2h-2v-2h2v-2H2V4zm9 2l-.97 3H7l2.47 1.76-.94 2.91 2.47-1.8 2.47 1.8-.94-2.91L15 9h-3.03z"},"children":[]}]};exports.ic_important_devices_twotone=ic_important_devices_twotone;var ic_info={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z"},"children":[]}]};exports.ic_info=ic_info;var ic_info_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11 7h2v2h-2zm0 4h2v6h-2zm1-9C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"},"children":[]}]};exports.ic_info_outline=ic_info_outline;var ic_info_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm1 13h-2v-6h2v6zm0-8h-2V7h2v2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M11 7h2v2h-2zm0 4h2v6h-2zm1-9C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"},"children":[]}]};exports.ic_info_twotone=ic_info_twotone;var ic_info_outline_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{"fill":"none"},"children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z"},"children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z"},"children":[]}]},{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","opacity":".87"},"children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","opacity":".87"},"children":[]}]}]},{"name":"path","attribs":{"d":"M11 17h2v-6h-2v6zm1-15C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zM11 9h2V7h-2v2z"},"children":[]}]};exports.ic_info_outline_twotone=ic_info_outline_twotone;var ic_input={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 3.01H3c-1.1 0-2 .9-2 2V9h2V4.99h18v14.03H3V15H1v4.01c0 1.1.9 1.98 2 1.98h18c1.1 0 2-.88 2-1.98v-14c0-1.11-.9-2-2-2zM11 16l4-4-4-4v3H1v2h10v3z"},"children":[]}]};exports.ic_input=ic_input;var ic_input_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{"fill":"none"},"children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z"},"children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z"},"children":[]}]},{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","opacity":".87"},"children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","opacity":".87"},"children":[]}]}]},{"name":"path","attribs":{"d":"M21 3.01H3c-1.1 0-2 .9-2 2V9h2V4.99h18v14.03H3V15H1v4.01c0 1.1.9 1.98 2 1.98h18c1.1 0 2-.88 2-1.98v-14c0-1.11-.9-2-2-2zM11 16l4-4-4-4v3H1v2h10v3zM21 3.01H3c-1.1 0-2 .9-2 2V9h2V4.99h18v14.03H3V15H1v4.01c0 1.1.9 1.98 2 1.98h18c1.1 0 2-.88 2-1.98v-14c0-1.11-.9-2-2-2zM11 16l4-4-4-4v3H1v2h10v3z"},"children":[]}]};exports.ic_input_outline=ic_input_outline;var ic_input_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{"fill":"none"},"children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z"},"children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z"},"children":[]}]},{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","opacity":".87"},"children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","opacity":".87"},"children":[]}]}]},{"name":"path","attribs":{"d":"M21 3.01H3c-1.1 0-2 .9-2 2V9h2V4.99h18v14.03H3V15H1v4.01c0 1.1.9 1.98 2 1.98h18c1.1 0 2-.88 2-1.98v-14c0-1.11-.9-2-2-2zM11 16l4-4-4-4v3H1v2h10v3z"},"children":[]}]};exports.ic_input_twotone=ic_input_twotone;var ic_integration_instructions={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"circle","attribs":{"cx":"12","cy":"3.5","fill":"none","r":".75"},"children":[{"name":"circle","attribs":{"cx":"12","cy":"3.5","fill":"none","r":".75"},"children":[]}]},{"name":"circle","attribs":{"cx":"12","cy":"3.5","fill":"none","r":".75"},"children":[{"name":"circle","attribs":{"cx":"12","cy":"3.5","fill":"none","r":".75"},"children":[]}]},{"name":"circle","attribs":{"cx":"12","cy":"3.5","fill":"none","r":".75"},"children":[{"name":"circle","attribs":{"cx":"12","cy":"3.5","fill":"none","r":".75"},"children":[]}]},{"name":"path","attribs":{"d":"M19,3h-4.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H5C4.86,3,4.73,3.01,4.6,3.04C4.21,3.12,3.86,3.32,3.59,3.59 c-0.18,0.18-0.33,0.4-0.43,0.64C3.06,4.46,3,4.72,3,5v14c0,0.27,0.06,0.54,0.16,0.78c0.1,0.24,0.25,0.45,0.43,0.64 c0.27,0.27,0.62,0.47,1.01,0.55C4.73,20.99,4.86,21,5,21h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M11,14.17l-1.41,1.42L6,12 l3.59-3.59L11,9.83L8.83,12L11,14.17z M12,4.25c-0.41,0-0.75-0.34-0.75-0.75S11.59,2.75,12,2.75s0.75,0.34,0.75,0.75 S12.41,4.25,12,4.25z M14.41,15.59L13,14.17L15.17,12L13,9.83l1.41-1.42L18,12L14.41,15.59z"},"children":[{"name":"path","attribs":{"d":"M19,3h-4.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H5C4.86,3,4.73,3.01,4.6,3.04C4.21,3.12,3.86,3.32,3.59,3.59 c-0.18,0.18-0.33,0.4-0.43,0.64C3.06,4.46,3,4.72,3,5v14c0,0.27,0.06,0.54,0.16,0.78c0.1,0.24,0.25,0.45,0.43,0.64 c0.27,0.27,0.62,0.47,1.01,0.55C4.73,20.99,4.86,21,5,21h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M11,14.17l-1.41,1.42L6,12 l3.59-3.59L11,9.83L8.83,12L11,14.17z M12,4.25c-0.41,0-0.75-0.34-0.75-0.75S11.59,2.75,12,2.75s0.75,0.34,0.75,0.75 S12.41,4.25,12,4.25z M14.41,15.59L13,14.17L15.17,12L13,9.83l1.41-1.42L18,12L14.41,15.59z"},"children":[]}]}]}]};exports.ic_integration_instructions=ic_integration_instructions;var ic_integration_instructions_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"circle","attribs":{"cx":"12","cy":"3.5","fill":"none","r":".75"},"children":[{"name":"circle","attribs":{"cx":"12","cy":"3.5","fill":"none","r":".75"},"children":[]}]},{"name":"circle","attribs":{"cx":"12","cy":"3.5","fill":"none","r":".75"},"children":[{"name":"circle","attribs":{"cx":"12","cy":"3.5","fill":"none","r":".75"},"children":[]}]},{"name":"polygon","attribs":{"fill":"none","points":"5,15 5,16 5,19 19,19 19,16 19,15 19,5 5,5"},"children":[{"name":"polygon","attribs":{"fill":"none","points":"5,15 5,16 5,19 19,19 19,16 19,15 19,5 5,5"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"11,14.17 8.83,12 11,9.83 9.59,8.41 6,12 9.59,15.59"},"children":[{"name":"polygon","attribs":{"points":"11,14.17 8.83,12 11,9.83 9.59,8.41 6,12 9.59,15.59"},"children":[]}]},{"name":"polygon","attribs":{"points":"14.41,15.59 18,12 14.41,8.41 13,9.83 15.17,12 13,14.17"},"children":[{"name":"polygon","attribs":{"points":"14.41,15.59 18,12 14.41,8.41 13,9.83 15.17,12 13,14.17"},"children":[]}]},{"name":"path","attribs":{"d":"M19,3h-4.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H5C4.86,3,4.73,3.01,4.6,3.04C4.21,3.12,3.86,3.32,3.59,3.59 c-0.18,0.18-0.33,0.4-0.43,0.64C3.06,4.46,3,4.72,3,5v10v1v3c0,0.27,0.06,0.54,0.16,0.78c0.1,0.24,0.25,0.45,0.43,0.64 c0.27,0.27,0.62,0.47,1.01,0.55C4.73,20.99,4.86,21,5,21h14c1.1,0,2-0.9,2-2v-3v-1V5C21,3.9,20.1,3,19,3z M12,2.75 c0.41,0,0.75,0.34,0.75,0.75S12.41,4.25,12,4.25s-0.75-0.34-0.75-0.75S11.59,2.75,12,2.75z M19,15v1v3H5v-3v-1V5h14V15z"},"children":[{"name":"path","attribs":{"d":"M19,3h-4.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H5C4.86,3,4.73,3.01,4.6,3.04C4.21,3.12,3.86,3.32,3.59,3.59 c-0.18,0.18-0.33,0.4-0.43,0.64C3.06,4.46,3,4.72,3,5v10v1v3c0,0.27,0.06,0.54,0.16,0.78c0.1,0.24,0.25,0.45,0.43,0.64 c0.27,0.27,0.62,0.47,1.01,0.55C4.73,20.99,4.86,21,5,21h14c1.1,0,2-0.9,2-2v-3v-1V5C21,3.9,20.1,3,19,3z M12,2.75 c0.41,0,0.75,0.34,0.75,0.75S12.41,4.25,12,4.25s-0.75-0.34-0.75-0.75S11.59,2.75,12,2.75z M19,15v1v3H5v-3v-1V5h14V15z"},"children":[]}]}]}]}]}]};exports.ic_integration_instructions_outline=ic_integration_instructions_outline;var ic_integration_instructions_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"circle","attribs":{"cx":"12","cy":"3.5","fill":"none","r":".75"},"children":[{"name":"circle","attribs":{"cx":"12","cy":"3.5","fill":"none","r":".75"},"children":[]}]},{"name":"circle","attribs":{"cx":"12","cy":"3.5","fill":"none","r":".75"},"children":[{"name":"circle","attribs":{"cx":"12","cy":"3.5","fill":"none","r":".75"},"children":[]}]},{"name":"line","attribs":{"fill":"none","x1":"19","x2":"5","y1":"5","y2":"5"},"children":[{"name":"line","attribs":{"fill":"none","x1":"19","x2":"5","y1":"5","y2":"5"},"children":[]}]},{"name":"line","attribs":{"fill":"none","x1":"5","x2":"19","y1":"19","y2":"19"},"children":[{"name":"line","attribs":{"fill":"none","x1":"5","x2":"19","y1":"19","y2":"19"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"11,14.17 8.83,12 11,9.83 9.59,8.41 6,12 9.59,15.59"},"children":[{"name":"polygon","attribs":{"points":"11,14.17 8.83,12 11,9.83 9.59,8.41 6,12 9.59,15.59"},"children":[]}]},{"name":"polygon","attribs":{"points":"14.41,15.59 18,12 14.41,8.41 13,9.83 15.17,12 13,14.17"},"children":[{"name":"polygon","attribs":{"points":"14.41,15.59 18,12 14.41,8.41 13,9.83 15.17,12 13,14.17"},"children":[]}]},{"name":"path","attribs":{"d":"M19,3h-4.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H5C4.86,3,4.73,3.01,4.6,3.04C4.21,3.12,3.86,3.32,3.59,3.59 c-0.18,0.18-0.33,0.4-0.43,0.64C3.06,4.46,3,4.72,3,5v10v1v3c0,0.27,0.06,0.54,0.16,0.78c0.1,0.24,0.25,0.45,0.43,0.64 c0.27,0.27,0.62,0.47,1.01,0.55C4.73,20.99,4.86,21,5,21h14c1.1,0,2-0.9,2-2v-3v-1V5C21,3.9,20.1,3,19,3z M12,2.75 c0.41,0,0.75,0.34,0.75,0.75S12.41,4.25,12,4.25s-0.75-0.34-0.75-0.75S11.59,2.75,12,2.75z M19,19H5V5h14V19z"},"children":[{"name":"path","attribs":{"d":"M19,3h-4.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H5C4.86,3,4.73,3.01,4.6,3.04C4.21,3.12,3.86,3.32,3.59,3.59 c-0.18,0.18-0.33,0.4-0.43,0.64C3.06,4.46,3,4.72,3,5v10v1v3c0,0.27,0.06,0.54,0.16,0.78c0.1,0.24,0.25,0.45,0.43,0.64 c0.27,0.27,0.62,0.47,1.01,0.55C4.73,20.99,4.86,21,5,21h14c1.1,0,2-0.9,2-2v-3v-1V5C21,3.9,20.1,3,19,3z M12,2.75 c0.41,0,0.75,0.34,0.75,0.75S12.41,4.25,12,4.25s-0.75-0.34-0.75-0.75S11.59,2.75,12,2.75z M19,19H5V5h14V19z"},"children":[]}]}]}]}]},{"name":"line","attribs":{"fill":"none","opacity":".3","x1":"19","x2":"5","y1":"5","y2":"5"},"children":[]},{"name":"line","attribs":{"fill":"none","opacity":".3","x1":"5","x2":"19","y1":"19","y2":"19"},"children":[]},{"name":"rect","attribs":{"height":"14","opacity":".3","width":"14","x":"5","y":"5"},"children":[]}]};exports.ic_integration_instructions_twotone=ic_integration_instructions_twotone;var ic_invert_colors={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M24 0H0v24h24z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17.66 7.93L12 2.27 6.34 7.93c-3.12 3.12-3.12 8.19 0 11.31C7.9 20.8 9.95 21.58 12 21.58c2.05 0 4.1-.78 5.66-2.34 3.12-3.12 3.12-8.19 0-11.31zM12 19.59c-1.6 0-3.11-.62-4.24-1.76C6.62 16.69 6 15.19 6 13.59s.62-3.11 1.76-4.24L12 5.1v14.49z"},"children":[]}]};exports.ic_invert_colors=ic_invert_colors;var ic_invert_colors_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M24 0H0v24h24V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17.66 7.93L12 2.27 6.34 7.93c-3.12 3.12-3.12 8.19 0 11.31C7.9 20.8 9.95 21.58 12 21.58s4.1-.78 5.66-2.34c3.12-3.12 3.12-8.19 0-11.31zM12 19.59c-1.6 0-3.11-.62-4.24-1.76C6.62 16.69 6 15.19 6 13.59s.62-3.11 1.76-4.24L12 5.1v14.49z"},"children":[]}]};exports.ic_invert_colors_outline=ic_invert_colors_outline;var ic_invert_colors_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M24 0H0v24h24V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6 13.59c0 1.6.62 3.1 1.76 4.24 1.13 1.14 2.64 1.76 4.24 1.76V5.1L7.76 9.35C6.62 10.48 6 11.99 6 13.59z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M17.66 7.93L12 2.27 6.34 7.93c-3.12 3.12-3.12 8.19 0 11.31C7.9 20.8 9.95 21.58 12 21.58s4.1-.78 5.66-2.34c3.12-3.12 3.12-8.19 0-11.31zM12 19.59c-1.6 0-3.11-.62-4.24-1.76C6.62 16.69 6 15.19 6 13.59s.62-3.11 1.76-4.24L12 5.1v14.49z"},"children":[]}]};exports.ic_invert_colors_twotone=ic_invert_colors_twotone;var ic_label={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17.63 5.84C17.27 5.33 16.67 5 16 5L5 5.01C3.9 5.01 3 5.9 3 7v10c0 1.1.9 1.99 2 1.99L16 19c.67 0 1.27-.33 1.63-.84L22 12l-4.37-6.16z"},"children":[]}]};exports.ic_label=ic_label;var ic_label_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17.63 5.84C17.27 5.33 16.67 5 16 5L5 5.01C3.9 5.01 3 5.9 3 7v10c0 1.1.9 1.99 2 1.99L16 19c.67 0 1.27-.33 1.63-.84L22 12l-4.37-6.16zM16 17H5V7h11l3.55 5L16 17z"},"children":[]}]};exports.ic_label_outline=ic_label_outline;var ic_label_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16 7H5v10h11l3.55-5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M17.63 5.84C17.27 5.33 16.67 5 16 5L5 5.01C3.9 5.01 3 5.9 3 7v10c0 1.1.9 1.99 2 1.99L16 19c.67 0 1.27-.33 1.63-.84L22 12l-4.37-6.16zM16 17H5V7h11l3.55 5L16 17z"},"children":[]}]};exports.ic_label_twotone=ic_label_twotone;var ic_label_important={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3.5 18.99l11 .01c.67 0 1.27-.33 1.63-.84L20.5 12l-4.37-6.16c-.36-.51-.96-.84-1.63-.84l-11 .01L8.34 12 3.5 18.99z"},"children":[]}]};exports.ic_label_important=ic_label_important;var ic_label_important_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 18.99h11c.67 0 1.27-.32 1.63-.83L21 12l-4.37-6.16C16.27 5.33 15.67 5 15 5H4l5 7-5 6.99z"},"children":[]}]};exports.ic_label_important_outline=ic_label_important_outline;var ic_label_important_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15 7H7.89l3.57 5-3.57 5H15l3.55-5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M16.63 5.84C16.27 5.33 15.67 5 15 5H4l5 7-5 6.99h11c.67 0 1.27-.32 1.63-.83L21 12l-4.37-6.16zM15 17H7.89l3.57-5-3.57-5H15l3.55 5L15 17z"},"children":[]}]};exports.ic_label_important_twotone=ic_label_important_twotone;var ic_label_important_outline_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15 19H3l4.5-7L3 5h12c.65 0 1.26.31 1.63.84L21 12l-4.37 6.16c-.37.52-.98.84-1.63.84zm-8.5-2H15l3.5-5L15 7H6.5l3.5 5-3.5 5z"},"children":[]}]};exports.ic_label_important_outline_twotone=ic_label_important_outline_twotone;var ic_label_off={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3.25 2.75l17 17L19 21l-2-2H5c-1.1 0-2-.9-2-2V7c0-.55.23-1.05.59-1.41L2 4l1.25-1.25zM22 12l-4.37-6.16C17.27 5.33 16.67 5 16 5H8l11 11 3-4z"},"children":[]}]};exports.ic_label_off=ic_label_off;var ic_label_off_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16 7l3.55 5-1.63 2.29 1.43 1.43L22 12l-4.37-6.16C17.27 5.33 16.67 5 16 5l-7.37.01 2 1.99H16zM2 4.03l1.58 1.58C3.22 5.96 3 6.46 3 7v10c0 1.1.9 1.99 2 1.99L16 19c.28 0 .55-.07.79-.18L18.97 21l1.41-1.41L3.41 2.62 2 4.03zM14.97 17H5V7.03L14.97 17z"},"children":[]}]};exports.ic_label_off_outline=ic_label_off_outline;var ic_label_off_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 7.03V17h9.97zM16 7h-5.37l7.29 7.29L19.55 12z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M16 7l3.55 5-1.63 2.29 1.43 1.43L22 12l-4.37-6.16C17.27 5.33 16.67 5 16 5l-7.37.01 2 1.99H16zM2 4.03l1.58 1.58C3.22 5.96 3 6.46 3 7v10c0 1.1.9 1.99 2 1.99L16 19c.28 0 .55-.07.79-.18L18.97 21l1.41-1.41L3.41 2.62 2 4.03zm3 3L14.97 17H5V7.03z"},"children":[]}]};exports.ic_label_off_twotone=ic_label_off_twotone;var ic_label_outline_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17.63 5.84C17.27 5.33 16.67 5 16 5L5 5.01C3.9 5.01 3 5.9 3 7v10c0 1.1.9 1.99 2 1.99L16 19c.67 0 1.27-.33 1.63-.84L22 12l-4.37-6.16zM16 17H5V7h11l3.55 5L16 17z"},"children":[]}]};exports.ic_label_outline_twotone=ic_label_outline_twotone;var ic_language={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm6.93 6h-2.95c-.32-1.25-.78-2.45-1.38-3.56 1.84.63 3.37 1.91 4.33 3.56zM12 4.04c.83 1.2 1.48 2.53 1.91 3.96h-3.82c.43-1.43 1.08-2.76 1.91-3.96zM4.26 14C4.1 13.36 4 12.69 4 12s.1-1.36.26-2h3.38c-.08.66-.14 1.32-.14 2 0 .68.06 1.34.14 2H4.26zm.82 2h2.95c.32 1.25.78 2.45 1.38 3.56-1.84-.63-3.37-1.9-4.33-3.56zm2.95-8H5.08c.96-1.66 2.49-2.93 4.33-3.56C8.81 5.55 8.35 6.75 8.03 8zM12 19.96c-.83-1.2-1.48-2.53-1.91-3.96h3.82c-.43 1.43-1.08 2.76-1.91 3.96zM14.34 14H9.66c-.09-.66-.16-1.32-.16-2 0-.68.07-1.35.16-2h4.68c.09.65.16 1.32.16 2 0 .68-.07 1.34-.16 2zm.25 5.56c.6-1.11 1.06-2.31 1.38-3.56h2.95c-.96 1.65-2.49 2.93-4.33 3.56zM16.36 14c.08-.66.14-1.32.14-2 0-.68-.06-1.34-.14-2h3.38c.16.64.26 1.31.26 2s-.1 1.36-.26 2h-3.38z"},"children":[]}]};exports.ic_language=ic_language;var ic_language_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm6.93 6h-2.95c-.32-1.25-.78-2.45-1.38-3.56 1.84.63 3.37 1.91 4.33 3.56zM12 4.04c.83 1.2 1.48 2.53 1.91 3.96h-3.82c.43-1.43 1.08-2.76 1.91-3.96zM4.26 14C4.1 13.36 4 12.69 4 12s.1-1.36.26-2h3.38c-.08.66-.14 1.32-.14 2s.06 1.34.14 2H4.26zm.82 2h2.95c.32 1.25.78 2.45 1.38 3.56-1.84-.63-3.37-1.9-4.33-3.56zm2.95-8H5.08c.96-1.66 2.49-2.93 4.33-3.56C8.81 5.55 8.35 6.75 8.03 8zM12 19.96c-.83-1.2-1.48-2.53-1.91-3.96h3.82c-.43 1.43-1.08 2.76-1.91 3.96zM14.34 14H9.66c-.09-.66-.16-1.32-.16-2s.07-1.35.16-2h4.68c.09.65.16 1.32.16 2s-.07 1.34-.16 2zm.25 5.56c.6-1.11 1.06-2.31 1.38-3.56h2.95c-.96 1.65-2.49 2.93-4.33 3.56zM16.36 14c.08-.66.14-1.32.14-2s-.06-1.34-.14-2h3.38c.16.64.26 1.31.26 2s-.1 1.36-.26 2h-3.38z"},"children":[]}]};exports.ic_language_outline=ic_language_outline;var ic_language_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5.08 8h2.95c.32-1.25.78-2.45 1.38-3.56-1.84.63-3.37 1.9-4.33 3.56zm2.42 4c0-.68.06-1.34.14-2H4.26c-.16.64-.26 1.31-.26 2s.1 1.36.26 2h3.38c-.08-.66-.14-1.32-.14-2zm-2.42 4c.96 1.66 2.49 2.93 4.33 3.56-.6-1.11-1.06-2.31-1.38-3.56H5.08zM12 4.04c-.83 1.2-1.48 2.53-1.91 3.96h3.82c-.43-1.43-1.08-2.76-1.91-3.96zM18.92 8c-.96-1.65-2.49-2.93-4.33-3.56.6 1.11 1.06 2.31 1.38 3.56h2.95zM12 19.96c.83-1.2 1.48-2.53 1.91-3.96h-3.82c.43 1.43 1.08 2.76 1.91 3.96zm2.59-.4c1.84-.63 3.37-1.91 4.33-3.56h-2.95c-.32 1.25-.78 2.45-1.38 3.56zM19.74 10h-3.38c.08.66.14 1.32.14 2s-.06 1.34-.14 2h3.38c.16-.64.26-1.31.26-2s-.1-1.36-.26-2zM9.66 10c-.09.65-.16 1.32-.16 2s.07 1.34.16 2h4.68c.09-.66.16-1.32.16-2s-.07-1.35-.16-2H9.66z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm6.93 6h-2.95c-.32-1.25-.78-2.45-1.38-3.56 1.84.63 3.37 1.91 4.33 3.56zM12 4.04c.83 1.2 1.48 2.53 1.91 3.96h-3.82c.43-1.43 1.08-2.76 1.91-3.96zM4.26 14C4.1 13.36 4 12.69 4 12s.1-1.36.26-2h3.38c-.08.66-.14 1.32-.14 2s.06 1.34.14 2H4.26zm.82 2h2.95c.32 1.25.78 2.45 1.38 3.56-1.84-.63-3.37-1.9-4.33-3.56zm2.95-8H5.08c.96-1.66 2.49-2.93 4.33-3.56C8.81 5.55 8.35 6.75 8.03 8zM12 19.96c-.83-1.2-1.48-2.53-1.91-3.96h3.82c-.43 1.43-1.08 2.76-1.91 3.96zM14.34 14H9.66c-.09-.66-.16-1.32-.16-2s.07-1.35.16-2h4.68c.09.65.16 1.32.16 2s-.07 1.34-.16 2zm.25 5.56c.6-1.11 1.06-2.31 1.38-3.56h2.95c-.96 1.65-2.49 2.93-4.33 3.56zM16.36 14c.08-.66.14-1.32.14-2s-.06-1.34-.14-2h3.38c.16.64.26 1.31.26 2s-.1 1.36-.26 2h-3.38z"},"children":[]}]};exports.ic_language_twotone=ic_language_twotone;var ic_launch={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 19H5V5h7V3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2v-7h-2v7zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3h-7z"},"children":[]}]};exports.ic_launch=ic_launch;var ic_launch_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 19H5V5h7V3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2v-7h-2v7zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3h-7z"},"children":[]}]};exports.ic_launch_outline=ic_launch_outline;var ic_launch_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 19H5V5h7V3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2v-7h-2v7zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3h-7z"},"children":[]}]};exports.ic_launch_twotone=ic_launch_twotone;var ic_leaderboard={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M7.5,21H2V9h5.5V21z M14.75,3h-5.5v18h5.5V3z M22,11h-5.5v10H22V11z"},"children":[{"name":"path","attribs":{"d":"M7.5,21H2V9h5.5V21z M14.75,3h-5.5v18h5.5V3z M22,11h-5.5v10H22V11z"},"children":[]}]}]}]};exports.ic_leaderboard=ic_leaderboard;var ic_leaderboard_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M16,11V3H8v6H2v12h20V11H16z M10,5h4v14h-4V5z M4,11h4v8H4V11z M20,19h-4v-6h4V19z"},"children":[{"name":"path","attribs":{"d":"M16,11V3H8v6H2v12h20V11H16z M10,5h4v14h-4V5z M4,11h4v8H4V11z M20,19h-4v-6h4V19z"},"children":[]}]}]}]};exports.ic_leaderboard_outline=ic_leaderboard_outline;var ic_leaderboard_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"g","attribs":{"opacity":".3"},"children":[{"name":"path","attribs":{"d":"M10,5h4v14h-4V5z M4,11h4v8H4V11z M20,19h-4v-6h4V19z"},"children":[{"name":"path","attribs":{"d":"M10,5h4v14h-4V5z M4,11h4v8H4V11z M20,19h-4v-6h4V19z"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M16,11V3H8v6H2v12h20V11H16z M10,5h4v14h-4V5z M4,11h4v8H4V11z M20,19h-4v-6h4V19z"},"children":[{"name":"path","attribs":{"d":"M16,11V3H8v6H2v12h20V11H16z M10,5h4v14h-4V5z M4,11h4v8H4V11z M20,19h-4v-6h4V19z"},"children":[]}]}]}]};exports.ic_leaderboard_twotone=ic_leaderboard_twotone;var ic_lightbulb={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9 21c0 .5.4 1 1 1h4c.6 0 1-.5 1-1v-1H9v1zm3-19C8.1 2 5 5.1 5 9c0 2.4 1.2 4.5 3 5.7V17c0 .5.4 1 1 1h6c.6 0 1-.5 1-1v-2.3c1.8-1.3 3-3.4 3-5.7 0-3.9-3.1-7-7-7z"},"children":[]}]};exports.ic_lightbulb=ic_lightbulb;var ic_lightbulb_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9 21c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-1H9v1zm3-19C8.14 2 5 5.14 5 9c0 2.38 1.19 4.47 3 5.74V17c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-2.26c1.81-1.27 3-3.36 3-5.74 0-3.86-3.14-7-7-7zm2.85 11.1l-.85.6V16h-4v-2.3l-.85-.6C7.8 12.16 7 10.63 7 9c0-2.76 2.24-5 5-5s5 2.24 5 5c0 1.63-.8 3.16-2.15 4.1z"},"children":[]}]};exports.ic_lightbulb_outline=ic_lightbulb_outline;var ic_lightbulb_outline_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9 21c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-1H9v1zm3-19C8.14 2 5 5.14 5 9c0 2.38 1.19 4.47 3 5.74V17c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-2.26c1.81-1.27 3-3.36 3-5.74 0-3.86-3.14-7-7-7zm2.85 11.1l-.85.6V16h-4v-2.3l-.85-.6C7.8 12.16 7 10.63 7 9c0-2.76 2.24-5 5-5s5 2.24 5 5c0 1.63-.8 3.16-2.15 4.1z"},"children":[]}]};exports.ic_lightbulb_outline_twotone=ic_lightbulb_outline_twotone;var ic_line_style={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M3,16h5v-2H3V16z M9.5,16h5v-2h-5V16z M16,16h5v-2h-5V16z M3,20h2v-2H3V20z M7,20h2v-2H7V20z M11,20h2v-2h-2V20z M15,20 h2v-2h-2V20z M19,20h2v-2h-2V20z M3,12h8v-2H3V12z M13,12h8v-2h-8V12z M3,4v4h18V4H3z"},"children":[{"name":"path","attribs":{"d":"M3,16h5v-2H3V16z M9.5,16h5v-2h-5V16z M16,16h5v-2h-5V16z M3,20h2v-2H3V20z M7,20h2v-2H7V20z M11,20h2v-2h-2V20z M15,20 h2v-2h-2V20z M19,20h2v-2h-2V20z M3,12h8v-2H3V12z M13,12h8v-2h-8V12z M3,4v4h18V4H3z"},"children":[]}]}]}]}]}]}]}]};exports.ic_line_style=ic_line_style;var ic_line_style_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 16h5v-2H3v2zm6.5 0h5v-2h-5v2zm6.5 0h5v-2h-5v2zM3 20h2v-2H3v2zm4 0h2v-2H7v2zm4 0h2v-2h-2v2zm4 0h2v-2h-2v2zm4 0h2v-2h-2v2zM3 12h8v-2H3v2zm10 0h8v-2h-8v2zM3 4v4h18V4H3z"},"children":[]}]};exports.ic_line_style_outline=ic_line_style_outline;var ic_line_style_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 16h5v-2H3v2zm6.5 0h5v-2h-5v2zm6.5 0h5v-2h-5v2zM3 20h2v-2H3v2zm4 0h2v-2H7v2zm4 0h2v-2h-2v2zm4 0h2v-2h-2v2zm4 0h2v-2h-2v2zM3 12h8v-2H3v2zm10 0h8v-2h-8v2zM3 4v4h18V4H3z"},"children":[]}]};exports.ic_line_style_twotone=ic_line_style_twotone;var ic_line_weight={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M3,17h18v-2H3V17z M3,20h18v-1H3V20z M3,13h18v-3H3V13z M3,4v4h18V4H3z"},"children":[{"name":"path","attribs":{"d":"M3,17h18v-2H3V17z M3,20h18v-1H3V20z M3,13h18v-3H3V13z M3,4v4h18V4H3z"},"children":[]}]}]}]}]}]}]}]};exports.ic_line_weight=ic_line_weight;var ic_line_weight_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 17h18v-2H3v2zm0 3h18v-1H3v1zm0-7h18v-3H3v3zm0-9v4h18V4H3z"},"children":[]}]};exports.ic_line_weight_outline=ic_line_weight_outline;var ic_line_weight_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 17h18v-2H3v2zm0 3h18v-1H3v1zm0-7h18v-3H3v3zm0-9v4h18V4H3z"},"children":[]}]};exports.ic_line_weight_twotone=ic_line_weight_twotone;var ic_list={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 13h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm4 4h14v-2H7v2zm0 4h14v-2H7v2zM7 7v2h14V7H7z"},"children":[]}]};exports.ic_list=ic_list;var ic_list_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{"fill":"none"},"children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z"},"children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z"},"children":[]}]},{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","opacity":".87"},"children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","opacity":".87"},"children":[]}]}]},{"name":"path","attribs":{"d":"M3 13h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm4 4h14v-2H7v2zm0 4h14v-2H7v2zM7 7v2h14V7H7zm-4 6h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm4 4h14v-2H7v2zm0 4h14v-2H7v2zM7 7v2h14V7H7z"},"children":[]}]};exports.ic_list_outline=ic_list_outline;var ic_list_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{"fill":"none"},"children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z"},"children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z"},"children":[]}]},{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","opacity":".87"},"children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","opacity":".87"},"children":[]}]}]},{"name":"path","attribs":{"d":"M3 13h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm4 4h14v-2H7v2zm0 4h14v-2H7v2zM7 7v2h14V7H7zm-4 6h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm4 4h14v-2H7v2zm0 4h14v-2H7v2zM7 7v2h14V7H7z"},"children":[]}]};exports.ic_list_twotone=ic_list_twotone;var ic_lock={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2z"},"children":[]}]};exports.ic_lock=ic_lock;var ic_lock_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{"fill":"none"},"children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z"},"children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z"},"children":[]}]},{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","opacity":".87"},"children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","opacity":".87"},"children":[]}]}]},{"name":"path","attribs":{"d":"M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zM9 6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9V6zm9 14H6V10h12v10zm-6-3c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z"},"children":[]}]};exports.ic_lock_outline=ic_lock_outline;var ic_lock_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{"fill":"none"},"children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z"},"children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z"},"children":[]}]},{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","opacity":".87"},"children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","opacity":".87"},"children":[]}]}]},{"name":"path","attribs":{"d":"M6 20h12V10H6v10zm6-7c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zM9 6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9V6zm9 14H6V10h12v10zm-6-3c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z"},"children":[]}]};exports.ic_lock_twotone=ic_lock_twotone;var ic_lock_clock={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14.5 14.2l2.9 1.7-.8 1.3L13 15v-5h1.5v4.2zM22 14c0 4.41-3.59 8-8 8-2.02 0-3.86-.76-5.27-2H4c-1.15 0-2-.85-2-2V9c0-1.12.89-1.96 2-2v-.5C4 4.01 6.01 2 8.5 2c2.34 0 4.24 1.79 4.46 4.08.34-.05.69-.08 1.04-.08 4.41 0 8 3.59 8 8zM6 7h5v-.74C10.88 4.99 9.8 4 8.5 4 7.12 4 6 5.12 6 6.5V7zm14 7c0-3.31-2.69-6-6-6s-6 2.69-6 6 2.69 6 6 6 6-2.69 6-6z"},"children":[]}]};exports.ic_lock_clock=ic_lock_clock;var ic_lock_open={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 17c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm6-9h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6h1.9c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm0 12H6V10h12v10z"},"children":[]}]};exports.ic_lock_open=ic_lock_open;var ic_lock_open_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6h2c0-1.66 1.34-3 3-3s3 1.34 3 3v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm0 12H6V10h12v10zm-6-3c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z"},"children":[]}]};exports.ic_lock_open_outline=ic_lock_open_outline;var ic_lock_open_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6 20h12V10H6v10zm6-7c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6h2c0-1.66 1.34-3 3-3s3 1.34 3 3v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm0 12H6V10h12v10zm-6-3c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z"},"children":[]}]};exports.ic_lock_open_twotone=ic_lock_open_twotone;var ic_lock_outline_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zM9 6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9V6zm9 14H6V10h12v10zm-6-3c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z"},"children":[]}]};exports.ic_lock_outline_twotone=ic_lock_outline_twotone;var ic_login={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M11,7L9.6,8.4l2.6,2.6H2v2h10.2l-2.6,2.6L11,17l5-5L11,7z M20,19h-8v2h8c1.1,0,2-0.9,2-2V5c0-1.1-0.9-2-2-2h-8v2h8V19z"},"children":[{"name":"path","attribs":{"d":"M11,7L9.6,8.4l2.6,2.6H2v2h10.2l-2.6,2.6L11,17l5-5L11,7z M20,19h-8v2h8c1.1,0,2-0.9,2-2V5c0-1.1-0.9-2-2-2h-8v2h8V19z"},"children":[]}]}]}]};exports.ic_login=ic_login;var ic_login_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M11,7L9.6,8.4l2.6,2.6H2v2h10.2l-2.6,2.6L11,17l5-5L11,7z M20,19h-8v2h8c1.1,0,2-0.9,2-2V5c0-1.1-0.9-2-2-2h-8v2h8V19z"},"children":[{"name":"path","attribs":{"d":"M11,7L9.6,8.4l2.6,2.6H2v2h10.2l-2.6,2.6L11,17l5-5L11,7z M20,19h-8v2h8c1.1,0,2-0.9,2-2V5c0-1.1-0.9-2-2-2h-8v2h8V19z"},"children":[]}]}]}]};exports.ic_login_outline=ic_login_outline;var ic_login_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M11,7L9.6,8.4l2.6,2.6H2v2h10.2l-2.6,2.6L11,17l5-5L11,7z M20,19h-8v2h8c1.1,0,2-0.9,2-2V5c0-1.1-0.9-2-2-2h-8v2h8V19z"},"children":[{"name":"path","attribs":{"d":"M11,7L9.6,8.4l2.6,2.6H2v2h10.2l-2.6,2.6L11,17l5-5L11,7z M20,19h-8v2h8c1.1,0,2-0.9,2-2V5c0-1.1-0.9-2-2-2h-8v2h8V19z"},"children":[]}]}]}]};exports.ic_login_twotone=ic_login_twotone;var ic_logout={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 7l-1.41 1.41L18.17 11H8v2h10.17l-2.58 2.58L17 17l5-5zM4 5h8V3H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h8v-2H4V5z"},"children":[]}]};exports.ic_logout=ic_logout;var ic_loyalty={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21.41 11.58l-9-9C12.05 2.22 11.55 2 11 2H4c-1.1 0-2 .9-2 2v7c0 .55.22 1.05.59 1.42l9 9c.36.36.86.58 1.41.58.55 0 1.05-.22 1.41-.59l7-7c.37-.36.59-.86.59-1.41 0-.55-.23-1.06-.59-1.42zM5.5 7C4.67 7 4 6.33 4 5.5S4.67 4 5.5 4 7 4.67 7 5.5 6.33 7 5.5 7zm11.77 8.27L13 19.54l-4.27-4.27C8.28 14.81 8 14.19 8 13.5c0-1.38 1.12-2.5 2.5-2.5.69 0 1.32.28 1.77.74l.73.72.73-.73c.45-.45 1.08-.73 1.77-.73 1.38 0 2.5 1.12 2.5 2.5 0 .69-.28 1.32-.73 1.77z"},"children":[]}]};exports.ic_loyalty=ic_loyalty;var ic_loyalty_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21.41 11.58l-9-9C12.05 2.22 11.55 2 11 2H4c-1.1 0-2 .9-2 2v7c0 .55.22 1.05.59 1.42l9 9c.36.36.86.58 1.41.58s1.05-.22 1.41-.59l7-7c.37-.36.59-.86.59-1.41s-.23-1.06-.59-1.42zM13 20.01L4 11V4h7v-.01l9 9-7 7.02z"},"children":[]},{"name":"circle","attribs":{"cx":"6.5","cy":"6.5","r":"1.5"},"children":[]},{"name":"path","attribs":{"d":"M8.9 12.55c0 .57.23 1.07.6 1.45l3.5 3.5 3.5-3.5c.37-.37.6-.89.6-1.45 0-1.13-.92-2.05-2.05-2.05-.57 0-1.08.23-1.45.6l-.6.6-.6-.59c-.37-.38-.89-.61-1.45-.61-1.13 0-2.05.92-2.05 2.05z"},"children":[]}]};exports.ic_loyalty_outline=ic_loyalty_outline;var ic_loyalty_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11 4H4v7l9 9.01L20 13l-9-9zM6.5 8C5.67 8 5 7.33 5 6.5S5.67 5 6.5 5 8 5.67 8 6.5 7.33 8 6.5 8zm6.5 3.7l.6-.6c.37-.37.89-.6 1.45-.6 1.13 0 2.05.92 2.05 2.05 0 .57-.23 1.08-.6 1.45L13 17.5 9.5 14c-.37-.38-.6-.89-.6-1.45 0-1.13.92-2.05 2.05-2.05.57 0 1.08.23 1.45.61l.6.59z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M21.41 11.58l-9-9C12.05 2.22 11.55 2 11 2H4c-1.1 0-2 .9-2 2v7c0 .55.22 1.05.59 1.42l9 9c.36.36.86.58 1.41.58s1.05-.22 1.41-.59l7-7c.37-.36.59-.86.59-1.41s-.23-1.06-.59-1.42zM13 20.01L4 11V4h7v-.01l9 9-7 7.02z"},"children":[]},{"name":"circle","attribs":{"cx":"6.5","cy":"6.5","r":"1.5"},"children":[]},{"name":"path","attribs":{"d":"M8.9 12.55c0 .57.23 1.07.6 1.45l3.5 3.5 3.5-3.5c.37-.37.6-.89.6-1.45 0-1.13-.92-2.05-2.05-2.05-.57 0-1.08.23-1.45.6l-.6.6-.6-.59c-.37-.38-.89-.61-1.45-.61-1.13 0-2.05.92-2.05 2.05z"},"children":[]}]};exports.ic_loyalty_twotone=ic_loyalty_twotone;var ic_mark_as_unread={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18.83 7h-2.6L10.5 4 4 7.4V17c-1.1 0-2-.9-2-2V7.17c0-.53.32-1.09.8-1.34L10.5 2l7.54 3.83c.43.23.73.7.79 1.17zM20 8H7c-1.1 0-2 .9-2 2v9c0 1.1.9 2 2 2h13c1.1 0 2-.9 2-2v-9c0-1.1-.9-2-2-2zm0 3.67L13.5 15 7 11.67V10l6.5 3.33L20 10v1.67z"},"children":[]}]};exports.ic_mark_as_unread=ic_mark_as_unread;var ic_markunread_mailbox={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M-618-3000H782V600H-618zM0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 6H10v6H8V4h6V0H6v6H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2z"},"children":[]}]};exports.ic_markunread_mailbox=ic_markunread_mailbox;var ic_markunread_mailbox_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 6H10v2h10v12H4V8h2v4h2V4h6V0H6v6H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2z"},"children":[]}]};exports.ic_markunread_mailbox_outline=ic_markunread_mailbox_outline;var ic_markunread_mailbox_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 12H6V8H4v12h16V8H10z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 6H10v2h10v12H4V8h2v4h2V4h6V0H6v6H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2z"},"children":[]}]};exports.ic_markunread_mailbox_twotone=ic_markunread_mailbox_twotone;var ic_maximize={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 3h18v2H3z"},"children":[]}]};exports.ic_maximize=ic_maximize;var ic_maximize_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 3h18v2H3V3z"},"children":[]}]};exports.ic_maximize_outline=ic_maximize_outline;var ic_maximize_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 3h18v2H3V3z"},"children":[]}]};exports.ic_maximize_twotone=ic_maximize_twotone;var ic_mediation={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 12l-4 4-1.41-1.41L18.17 13h-5.23c-.34 3.1-2.26 5.72-4.94 7.05C7.96 21.69 6.64 23 5 23c-1.66 0-3-1.34-3-3s1.34-3 3-3c.95 0 1.78.45 2.33 1.14 1.9-1.03 3.26-2.91 3.58-5.14h-3.1C7.4 14.16 6.3 15 5 15c-1.66 0-3-1.34-3-3s1.34-3 3-3c1.3 0 2.4.84 2.82 2h3.1c-.32-2.23-1.69-4.1-3.59-5.14C6.78 6.55 5.95 7 5 7 3.34 7 2 5.66 2 4s1.34-3 3-3c1.64 0 2.96 1.31 2.99 2.95 2.68 1.33 4.6 3.95 4.94 7.05h5.23l-1.58-1.59L18 8l4 4z"},"children":[]}]};exports.ic_mediation=ic_mediation;var ic_mediation_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M18,16l4-4l-4-4v3h-5.06c-0.34-3.1-2.26-5.72-4.94-7.05C7.96,2.31,6.64,1,5,1C3.34,1,2,2.34,2,4s1.34,3,3,3 c0.95,0,1.78-0.45,2.33-1.14C9.23,6.9,10.6,8.77,10.92,11h-3.1C7.4,9.84,6.3,9,5,9c-1.66,0-3,1.34-3,3s1.34,3,3,3 c1.3,0,2.4-0.84,2.82-2h3.1c-0.32,2.23-1.69,4.1-3.58,5.14C6.78,17.45,5.95,17,5,17c-1.66,0-3,1.34-3,3s1.34,3,3,3 c1.64,0,2.96-1.31,2.99-2.95c2.68-1.33,4.6-3.95,4.94-7.05H18V16z"},"children":[{"name":"path","attribs":{"d":"M18,16l4-4l-4-4v3h-5.06c-0.34-3.1-2.26-5.72-4.94-7.05C7.96,2.31,6.64,1,5,1C3.34,1,2,2.34,2,4s1.34,3,3,3 c0.95,0,1.78-0.45,2.33-1.14C9.23,6.9,10.6,8.77,10.92,11h-3.1C7.4,9.84,6.3,9,5,9c-1.66,0-3,1.34-3,3s1.34,3,3,3 c1.3,0,2.4-0.84,2.82-2h3.1c-0.32,2.23-1.69,4.1-3.58,5.14C6.78,17.45,5.95,17,5,17c-1.66,0-3,1.34-3,3s1.34,3,3,3 c1.64,0,2.96-1.31,2.99-2.95c2.68-1.33,4.6-3.95,4.94-7.05H18V16z"},"children":[]}]}]}]};exports.ic_mediation_outline=ic_mediation_outline;var ic_mediation_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M18,16l4-4l-4-4v3h-5.06c-0.34-3.1-2.26-5.72-4.94-7.05C7.96,2.31,6.64,1,5,1C3.34,1,2,2.34,2,4s1.34,3,3,3 c0.95,0,1.78-0.45,2.33-1.14C9.23,6.9,10.6,8.77,10.92,11h-3.1C7.4,9.84,6.3,9,5,9c-1.66,0-3,1.34-3,3s1.34,3,3,3 c1.3,0,2.4-0.84,2.82-2h3.1c-0.32,2.23-1.69,4.1-3.58,5.14C6.78,17.45,5.95,17,5,17c-1.66,0-3,1.34-3,3s1.34,3,3,3 c1.64,0,2.96-1.31,2.99-2.95c2.68-1.33,4.6-3.95,4.94-7.05H18V16z"},"children":[{"name":"path","attribs":{"d":"M18,16l4-4l-4-4v3h-5.06c-0.34-3.1-2.26-5.72-4.94-7.05C7.96,2.31,6.64,1,5,1C3.34,1,2,2.34,2,4s1.34,3,3,3 c0.95,0,1.78-0.45,2.33-1.14C9.23,6.9,10.6,8.77,10.92,11h-3.1C7.4,9.84,6.3,9,5,9c-1.66,0-3,1.34-3,3s1.34,3,3,3 c1.3,0,2.4-0.84,2.82-2h3.1c-0.32,2.23-1.69,4.1-3.58,5.14C6.78,17.45,5.95,17,5,17c-1.66,0-3,1.34-3,3s1.34,3,3,3 c1.64,0,2.96-1.31,2.99-2.95c2.68-1.33,4.6-3.95,4.94-7.05H18V16z"},"children":[]}]}]}]}]}]};exports.ic_mediation_twotone=ic_mediation_twotone;var ic_minimize={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6 19h12v2H6z"},"children":[]}]};exports.ic_minimize=ic_minimize;var ic_minimize_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6 19h12v2H6v-2z"},"children":[]}]};exports.ic_minimize_outline=ic_minimize_outline;var ic_minimize_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6 19h12v2H6v-2z"},"children":[]}]};exports.ic_minimize_twotone=ic_minimize_twotone;var ic_model_training={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M15.5,13.5c0,2-2.5,3.5-2.5,5h-2c0-1.5-2.5-3-2.5-5c0-1.93,1.57-3.5,3.5-3.5h0C13.93,10,15.5,11.57,15.5,13.5z M13,19.5h-2 V21h2V19.5z M19,13c0,1.68-0.59,3.21-1.58,4.42l1.42,1.42C20.18,17.27,21,15.23,21,13c0-2.74-1.23-5.19-3.16-6.84l-1.42,1.42 C17.99,8.86,19,10.82,19,13z M16,5l-4-4v3c0,0,0,0,0,0c-4.97,0-9,4.03-9,9c0,2.23,0.82,4.27,2.16,5.84l1.42-1.42 C5.59,16.21,5,14.68,5,13c0-3.86,3.14-7,7-7c0,0,0,0,0,0v3L16,5z"},"children":[{"name":"path","attribs":{"d":"M15.5,13.5c0,2-2.5,3.5-2.5,5h-2c0-1.5-2.5-3-2.5-5c0-1.93,1.57-3.5,3.5-3.5h0C13.93,10,15.5,11.57,15.5,13.5z M13,19.5h-2 V21h2V19.5z M19,13c0,1.68-0.59,3.21-1.58,4.42l1.42,1.42C20.18,17.27,21,15.23,21,13c0-2.74-1.23-5.19-3.16-6.84l-1.42,1.42 C17.99,8.86,19,10.82,19,13z M16,5l-4-4v3c0,0,0,0,0,0c-4.97,0-9,4.03-9,9c0,2.23,0.82,4.27,2.16,5.84l1.42-1.42 C5.59,16.21,5,14.68,5,13c0-3.86,3.14-7,7-7c0,0,0,0,0,0v3L16,5z"},"children":[]}]}]}]};exports.ic_model_training=ic_model_training;var ic_model_training_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M15.5,13.5c0,2-2.5,3.5-2.5,5h-2c0-1.5-2.5-3-2.5-5c0-1.93,1.57-3.5,3.5-3.5h0C13.93,10,15.5,11.57,15.5,13.5z M13,19.5h-2 V21h2V19.5z M19,13c0,1.68-0.59,3.21-1.58,4.42l1.42,1.42C20.18,17.27,21,15.23,21,13c0-2.74-1.23-5.19-3.16-6.84l-1.42,1.42 C17.99,8.86,19,10.82,19,13z M16,5l-4-4v3c0,0,0,0,0,0c-4.97,0-9,4.03-9,9c0,2.23,0.82,4.27,2.16,5.84l1.42-1.42 C5.59,16.21,5,14.68,5,13c0-3.86,3.14-7,7-7c0,0,0,0,0,0v3L16,5z"},"children":[{"name":"path","attribs":{"d":"M15.5,13.5c0,2-2.5,3.5-2.5,5h-2c0-1.5-2.5-3-2.5-5c0-1.93,1.57-3.5,3.5-3.5h0C13.93,10,15.5,11.57,15.5,13.5z M13,19.5h-2 V21h2V19.5z M19,13c0,1.68-0.59,3.21-1.58,4.42l1.42,1.42C20.18,17.27,21,15.23,21,13c0-2.74-1.23-5.19-3.16-6.84l-1.42,1.42 C17.99,8.86,19,10.82,19,13z M16,5l-4-4v3c0,0,0,0,0,0c-4.97,0-9,4.03-9,9c0,2.23,0.82,4.27,2.16,5.84l1.42-1.42 C5.59,16.21,5,14.68,5,13c0-3.86,3.14-7,7-7c0,0,0,0,0,0v3L16,5z"},"children":[]}]}]}]};exports.ic_model_training_outline=ic_model_training_outline;var ic_model_training_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M15.5,13.5c0,2-2.5,3.5-2.5,5h-2c0-1.5-2.5-3-2.5-5c0-1.93,1.57-3.5,3.5-3.5h0C13.93,10,15.5,11.57,15.5,13.5z M13,19.5h-2 V21h2V19.5z M19,13c0,1.68-0.59,3.21-1.58,4.42l1.42,1.42C20.18,17.27,21,15.23,21,13c0-2.74-1.23-5.19-3.16-6.84l-1.42,1.42 C17.99,8.86,19,10.82,19,13z M16,5l-4-4v3c0,0,0,0,0,0c-4.97,0-9,4.03-9,9c0,2.23,0.82,4.27,2.16,5.84l1.42-1.42 C5.59,16.21,5,14.68,5,13c0-3.86,3.14-7,7-7c0,0,0,0,0,0v3L16,5z"},"children":[{"name":"path","attribs":{"d":"M15.5,13.5c0,2-2.5,3.5-2.5,5h-2c0-1.5-2.5-3-2.5-5c0-1.93,1.57-3.5,3.5-3.5h0C13.93,10,15.5,11.57,15.5,13.5z M13,19.5h-2 V21h2V19.5z M19,13c0,1.68-0.59,3.21-1.58,4.42l1.42,1.42C20.18,17.27,21,15.23,21,13c0-2.74-1.23-5.19-3.16-6.84l-1.42,1.42 C17.99,8.86,19,10.82,19,13z M16,5l-4-4v3c0,0,0,0,0,0c-4.97,0-9,4.03-9,9c0,2.23,0.82,4.27,2.16,5.84l1.42-1.42 C5.59,16.21,5,14.68,5,13c0-3.86,3.14-7,7-7c0,0,0,0,0,0v3L16,5z"},"children":[]}]}]}]};exports.ic_model_training_twotone=ic_model_training_twotone;var ic_next_plan={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M18,13.97h-5l2.26-2.26 c-0.91-1.06-2.25-1.74-3.76-1.74c-2.37,0-4.35,1.66-4.86,3.88l-0.96-0.32c0.64-2.62,3-4.56,5.82-4.56c1.78,0,3.37,0.79,4.47,2.03 L18,8.97V13.97z"},"children":[{"name":"path","attribs":{"d":"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M18,13.97h-5l2.26-2.26 c-0.91-1.06-2.25-1.74-3.76-1.74c-2.37,0-4.35,1.66-4.86,3.88l-0.96-0.32c0.64-2.62,3-4.56,5.82-4.56c1.78,0,3.37,0.79,4.47,2.03 L18,8.97V13.97z"},"children":[]}]}]}]};exports.ic_next_plan=ic_next_plan;var ic_next_plan_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,20c-4.42,0-8-3.58-8-8 s3.58-8,8-8s8,3.58,8,8S16.42,20,12,20z"},"children":[{"name":"path","attribs":{"d":"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,20c-4.42,0-8-3.58-8-8 s3.58-8,8-8s8,3.58,8,8S16.42,20,12,20z"},"children":[]}]},{"name":"path","attribs":{"d":"M15.97,11.03C14.87,9.79,13.28,9,11.5,9c-2.82,0-5.18,1.95-5.82,4.56l0.96,0.32C7.15,11.66,9.13,10,11.5,10 c1.51,0,2.85,0.68,3.76,1.74L13,14h5V9L15.97,11.03z"},"children":[{"name":"path","attribs":{"d":"M15.97,11.03C14.87,9.79,13.28,9,11.5,9c-2.82,0-5.18,1.95-5.82,4.56l0.96,0.32C7.15,11.66,9.13,10,11.5,10 c1.51,0,2.85,0.68,3.76,1.74L13,14h5V9L15.97,11.03z"},"children":[]}]}]}]}]}]};exports.ic_next_plan_outline=ic_next_plan_outline;var ic_next_plan_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M12,4c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S16.42,4,12,4z M13,14l2.26-2.26 C14.35,10.68,13.01,10,11.5,10c-2.37,0-4.35,1.66-4.86,3.88l-0.96-0.32C6.32,10.95,8.68,9,11.5,9c1.78,0,3.37,0.79,4.47,2.03L18,9 v5H13z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M12,4c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S16.42,4,12,4z M13,14l2.26-2.26 C14.35,10.68,13.01,10,11.5,10c-2.37,0-4.35,1.66-4.86,3.88l-0.96-0.32C6.32,10.95,8.68,9,11.5,9c1.78,0,3.37,0.79,4.47,2.03L18,9 v5H13z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,20c-4.42,0-8-3.58-8-8 s3.58-8,8-8s8,3.58,8,8S16.42,20,12,20z"},"children":[{"name":"path","attribs":{"d":"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,20c-4.42,0-8-3.58-8-8 s3.58-8,8-8s8,3.58,8,8S16.42,20,12,20z"},"children":[]}]},{"name":"path","attribs":{"d":"M15.97,11.03C14.87,9.79,13.28,9,11.5,9c-2.82,0-5.18,1.95-5.82,4.56l0.96,0.32C7.15,11.66,9.13,10,11.5,10 c1.51,0,2.85,0.68,3.76,1.74L13,14h5V9L15.97,11.03z"},"children":[{"name":"path","attribs":{"d":"M15.97,11.03C14.87,9.79,13.28,9,11.5,9c-2.82,0-5.18,1.95-5.82,4.56l0.96,0.32C7.15,11.66,9.13,10,11.5,10 c1.51,0,2.85,0.68,3.76,1.74L13,14h5V9L15.97,11.03z"},"children":[]}]}]}]}]}]};exports.ic_next_plan_twotone=ic_next_plan_twotone;var ic_nightlight_round={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12.01 12c0-3.57 2.2-6.62 5.31-7.87.89-.36.75-1.69-.19-1.9-1.1-.24-2.27-.3-3.48-.14-4.51.6-8.12 4.31-8.59 8.83C4.44 16.93 9.13 22 15.01 22c.73 0 1.43-.08 2.12-.23.95-.21 1.1-1.53.2-1.9-3.22-1.29-5.33-4.41-5.32-7.87z"},"children":[]}]};exports.ic_nightlight_round=ic_nightlight_round;var ic_not_accessible={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M14,11.05l-3.42-3.42c0.32-0.34,0.74-0.57,1.23-0.61c0.48-0.04,0.84,0.07,1.2,0.26c0.19,0.1,0.39,0.22,0.63,0.46l1.29,1.43 c0.98,1.08,2.53,1.85,4.07,1.83v2C17.25,12.99,15.29,12.12,14,11.05z M12,6c1.1,0,2-0.9,2-2s-0.9-2-2-2c-1.1,0-2,0.9-2,2 S10.9,6,12,6z M2.81,2.81L1.39,4.22L10,12.83V15c0,1.1,0.9,2,2,2h2.17l5.61,5.61l1.41-1.41L2.81,2.81z M10,20c-1.66,0-3-1.34-3-3 c0-1.31,0.84-2.41,2-2.83V12.1c-2.28,0.46-4,2.48-4,4.9c0,2.76,2.24,5,5,5c2.42,0,4.44-1.72,4.9-4h-2.07 C12.42,19.16,11.31,20,10,20z"},"children":[{"name":"path","attribs":{"d":"M14,11.05l-3.42-3.42c0.32-0.34,0.74-0.57,1.23-0.61c0.48-0.04,0.84,0.07,1.2,0.26c0.19,0.1,0.39,0.22,0.63,0.46l1.29,1.43 c0.98,1.08,2.53,1.85,4.07,1.83v2C17.25,12.99,15.29,12.12,14,11.05z M12,6c1.1,0,2-0.9,2-2s-0.9-2-2-2c-1.1,0-2,0.9-2,2 S10.9,6,12,6z M2.81,2.81L1.39,4.22L10,12.83V15c0,1.1,0.9,2,2,2h2.17l5.61,5.61l1.41-1.41L2.81,2.81z M10,20c-1.66,0-3-1.34-3-3 c0-1.31,0.84-2.41,2-2.83V12.1c-2.28,0.46-4,2.48-4,4.9c0,2.76,2.24,5,5,5c2.42,0,4.44-1.72,4.9-4h-2.07 C12.42,19.16,11.31,20,10,20z"},"children":[]}]}]}]};exports.ic_not_accessible=ic_not_accessible;var ic_not_accessible_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M10,4c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S10,5.1,10,4z M19,13v-2c-1.54,0.02-3.09-0.75-4.07-1.83l-1.29-1.43 C13.4,7.5,13.2,7.38,13.01,7.28c-0.36-0.19-0.72-0.3-1.2-0.26c-0.49,0.04-0.91,0.27-1.23,0.61L14,11.05 C15.29,12.12,17.25,12.99,19,13z M10,20c-1.66,0-3-1.34-3-3c0-1.31,0.84-2.41,2-2.83V12.1c-2.28,0.46-4,2.48-4,4.9 c0,2.76,2.24,5,5,5c2.42,0,4.44-1.72,4.9-4h-2.07C12.42,19.16,11.31,20,10,20z M2.81,2.81L1.39,4.22L10,12.83V15c0,1.1,0.9,2,2,2 h2.17l5.61,5.61l1.41-1.41L2.81,2.81z"},"children":[{"name":"path","attribs":{"d":"M10,4c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S10,5.1,10,4z M19,13v-2c-1.54,0.02-3.09-0.75-4.07-1.83l-1.29-1.43 C13.4,7.5,13.2,7.38,13.01,7.28c-0.36-0.19-0.72-0.3-1.2-0.26c-0.49,0.04-0.91,0.27-1.23,0.61L14,11.05 C15.29,12.12,17.25,12.99,19,13z M10,20c-1.66,0-3-1.34-3-3c0-1.31,0.84-2.41,2-2.83V12.1c-2.28,0.46-4,2.48-4,4.9 c0,2.76,2.24,5,5,5c2.42,0,4.44-1.72,4.9-4h-2.07C12.42,19.16,11.31,20,10,20z M2.81,2.81L1.39,4.22L10,12.83V15c0,1.1,0.9,2,2,2 h2.17l5.61,5.61l1.41-1.41L2.81,2.81z"},"children":[]}]}]}]};exports.ic_not_accessible_outline=ic_not_accessible_outline;var ic_not_accessible_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M10,4c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S10,5.1,10,4z M19,13v-2c-1.54,0.02-3.09-0.75-4.07-1.83l-1.29-1.43 C13.4,7.5,13.2,7.38,13.01,7.28c-0.36-0.19-0.72-0.3-1.2-0.26c-0.49,0.04-0.91,0.27-1.23,0.61L14,11.05 C15.29,12.12,17.25,12.99,19,13z M10,20c-1.66,0-3-1.34-3-3c0-1.31,0.84-2.41,2-2.83V12.1c-2.28,0.46-4,2.48-4,4.9 c0,2.76,2.24,5,5,5c2.42,0,4.44-1.72,4.9-4h-2.07C12.42,19.16,11.31,20,10,20z M2.81,2.81L1.39,4.22L10,12.83V15c0,1.1,0.9,2,2,2 h2.17l5.61,5.61l1.41-1.41L2.81,2.81z"},"children":[{"name":"path","attribs":{"d":"M10,4c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S10,5.1,10,4z M19,13v-2c-1.54,0.02-3.09-0.75-4.07-1.83l-1.29-1.43 C13.4,7.5,13.2,7.38,13.01,7.28c-0.36-0.19-0.72-0.3-1.2-0.26c-0.49,0.04-0.91,0.27-1.23,0.61L14,11.05 C15.29,12.12,17.25,12.99,19,13z M10,20c-1.66,0-3-1.34-3-3c0-1.31,0.84-2.41,2-2.83V12.1c-2.28,0.46-4,2.48-4,4.9 c0,2.76,2.24,5,5,5c2.42,0,4.44-1.72,4.9-4h-2.07C12.42,19.16,11.31,20,10,20z M2.81,2.81L1.39,4.22L10,12.83V15c0,1.1,0.9,2,2,2 h2.17l5.61,5.61l1.41-1.41L2.81,2.81z"},"children":[]}]}]}]};exports.ic_not_accessible_twotone=ic_not_accessible_twotone;var ic_not_started={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M11,16H9V8h2V16z M12,16V8l5,4L12,16z"},"children":[{"name":"path","attribs":{"d":"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M11,16H9V8h2V16z M12,16V8l5,4L12,16z"},"children":[]}]}]}]};exports.ic_not_started=ic_not_started;var ic_not_started_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8s-8-3.59-8-8S7.59,4,12,4 M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10 s10-4.48,10-10C22,6.48,17.52,2,12,2L12,2z M11,8H9v8h2V8z M17,12l-5-4v8L17,12z"},"children":[{"name":"path","attribs":{"d":"M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8s-8-3.59-8-8S7.59,4,12,4 M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10 s10-4.48,10-10C22,6.48,17.52,2,12,2L12,2z M11,8H9v8h2V8z M17,12l-5-4v8L17,12z"},"children":[]}]}]}]};exports.ic_not_started_outline=ic_not_started_outline;var ic_not_started_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M12,4c-4.41,0-8,3.59-8,8c0,4.41,3.59,8,8,8s8-3.59,8-8C20,7.59,16.41,4,12,4z M11,16H9V8h2V16z M12,16V8 l5,4L12,16z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M12,4c-4.41,0-8,3.59-8,8c0,4.41,3.59,8,8,8s8-3.59,8-8C20,7.59,16.41,4,12,4z M11,16H9V8h2V16z M12,16V8 l5,4L12,16z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8s-8-3.59-8-8S7.59,4,12,4 M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10 s10-4.48,10-10C22,6.48,17.52,2,12,2L12,2z M11,8H9v8h2V8z M17,12l-5-4v8L17,12z"},"children":[{"name":"path","attribs":{"d":"M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8s-8-3.59-8-8S7.59,4,12,4 M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10 s10-4.48,10-10C22,6.48,17.52,2,12,2L12,2z M11,8H9v8h2V8z M17,12l-5-4v8L17,12z"},"children":[]}]}]}]};exports.ic_not_started_twotone=ic_not_started_twotone;var ic_note_add={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm2 14h-3v3h-2v-3H8v-2h3v-3h2v3h3v2zm-3-7V3.5L18.5 9H13z"},"children":[]}]};exports.ic_note_add=ic_note_add;var ic_note_add_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13 11h-2v3H8v2h3v3h2v-3h3v-2h-3zm1-9H6c-1.1 0-2 .9-2 2v16c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm4 18H6V4h7v5h5v11z"},"children":[]}]};exports.ic_note_add_outline=ic_note_add_outline;var ic_note_add_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13 4H6v16h12V9h-5V4zm3 10v2h-3v3h-2v-3H8v-2h3v-3h2v3h3z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M13 11h-2v3H8v2h3v3h2v-3h3v-2h-3zm1-9H6c-1.1 0-2 .9-2 2v16c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm4 18H6V4h7v5h5v11z"},"children":[]}]};exports.ic_note_add_twotone=ic_note_add_twotone;var ic_offline_bolt={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2.02c-5.51 0-9.98 4.47-9.98 9.98s4.47 9.98 9.98 9.98 9.98-4.47 9.98-9.98S17.51 2.02 12 2.02zM11.48 20v-6.26H8L13 4v6.26h3.35L11.48 20z"},"children":[]}]};exports.ic_offline_bolt=ic_offline_bolt;var ic_offline_bolt_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2.02c-5.51 0-9.98 4.47-9.98 9.98s4.47 9.98 9.98 9.98 9.98-4.47 9.98-9.98S17.51 2.02 12 2.02zm0 17.96c-4.4 0-7.98-3.58-7.98-7.98S7.6 4.02 12 4.02 19.98 7.6 19.98 12 16.4 19.98 12 19.98zM12.75 5l-4.5 8.5h3.14V19l4.36-8.5h-3z"},"children":[]}]};exports.ic_offline_bolt_outline=ic_offline_bolt_outline;var ic_offline_bolt_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 4.02C7.6 4.02 4.02 7.6 4.02 12S7.6 19.98 12 19.98s7.98-3.58 7.98-7.98S16.4 4.02 12 4.02zM11.39 19v-5.5H8.25l4.5-8.5v5.5h3L11.39 19z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 2.02c-5.51 0-9.98 4.47-9.98 9.98s4.47 9.98 9.98 9.98 9.98-4.47 9.98-9.98S17.51 2.02 12 2.02zm0 17.96c-4.4 0-7.98-3.58-7.98-7.98S7.6 4.02 12 4.02 19.98 7.6 19.98 12 16.4 19.98 12 19.98zM12.75 5l-4.5 8.5h3.14V19l4.36-8.5h-3V5z"},"children":[]}]};exports.ic_offline_bolt_twotone=ic_offline_bolt_twotone;var ic_offline_pin={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M17,18H7v-2h10V18z M10.3,14L7,10.7l1.4-1.4l1.9,1.9 l5.3-5.3L17,7.3L10.3,14z"},"children":[{"name":"path","attribs":{"d":"M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M17,18H7v-2h10V18z M10.3,14L7,10.7l1.4-1.4l1.9,1.9 l5.3-5.3L17,7.3L10.3,14z"},"children":[]}]}]}]}]}]}]}]};exports.ic_offline_pin=ic_offline_pin;var ic_offline_pin_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-5-5h10v2H7zm3.3-3.8L8.4 9.3 7 10.7l3.3 3.3L17 7.3l-1.4-1.4z"},"children":[]}]};exports.ic_offline_pin_outline=ic_offline_pin_outline;var ic_offline_pin_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm5 13H7v-2h10v2zm-6.7-3L7 10.7l1.4-1.4 1.9 1.9 5.3-5.3L17 7.3 10.3 14z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-5-5h10v2H7zm3.3-3.8L8.4 9.3 7 10.7l3.3 3.3L17 7.3l-1.4-1.4z"},"children":[]}]};exports.ic_offline_pin_twotone=ic_offline_pin_twotone;var ic_online_prediction={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M15.5,11.5c0,2-2.5,3.5-2.5,5h-2c0-1.5-2.5-3-2.5-5C8.5,9.57,10.07,8,12,8S15.5,9.57,15.5,11.5z M13,17.5h-2V19h2V17.5z M22,12c0-2.76-1.12-5.26-2.93-7.07l-1.06,1.06C19.55,7.53,20.5,9.66,20.5,12c0,2.34-0.95,4.47-2.49,6.01l1.06,1.06 C20.88,17.26,22,14.76,22,12z M3.5,12c0-2.34,0.95-4.47,2.49-6.01L4.93,4.93C3.12,6.74,2,9.24,2,12c0,2.76,1.12,5.26,2.93,7.07 l1.06-1.06C4.45,16.47,3.5,14.34,3.5,12z M17.5,12c0,1.52-0.62,2.89-1.61,3.89l1.06,1.06C18.22,15.68,19,13.93,19,12 c0-1.93-0.78-3.68-2.05-4.95l-1.06,1.06C16.88,9.11,17.5,10.48,17.5,12z M7.05,16.95l1.06-1.06c-1-1-1.61-2.37-1.61-3.89 c0-1.52,0.62-2.89,1.61-3.89L7.05,7.05C5.78,8.32,5,10.07,5,12C5,13.93,5.78,15.68,7.05,16.95z"},"children":[{"name":"path","attribs":{"d":"M15.5,11.5c0,2-2.5,3.5-2.5,5h-2c0-1.5-2.5-3-2.5-5C8.5,9.57,10.07,8,12,8S15.5,9.57,15.5,11.5z M13,17.5h-2V19h2V17.5z M22,12c0-2.76-1.12-5.26-2.93-7.07l-1.06,1.06C19.55,7.53,20.5,9.66,20.5,12c0,2.34-0.95,4.47-2.49,6.01l1.06,1.06 C20.88,17.26,22,14.76,22,12z M3.5,12c0-2.34,0.95-4.47,2.49-6.01L4.93,4.93C3.12,6.74,2,9.24,2,12c0,2.76,1.12,5.26,2.93,7.07 l1.06-1.06C4.45,16.47,3.5,14.34,3.5,12z M17.5,12c0,1.52-0.62,2.89-1.61,3.89l1.06,1.06C18.22,15.68,19,13.93,19,12 c0-1.93-0.78-3.68-2.05-4.95l-1.06,1.06C16.88,9.11,17.5,10.48,17.5,12z M7.05,16.95l1.06-1.06c-1-1-1.61-2.37-1.61-3.89 c0-1.52,0.62-2.89,1.61-3.89L7.05,7.05C5.78,8.32,5,10.07,5,12C5,13.93,5.78,15.68,7.05,16.95z"},"children":[]}]}]}]};exports.ic_online_prediction=ic_online_prediction;var ic_online_prediction_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M15.5,11.5c0,2-2.5,3.5-2.5,5h-2c0-1.5-2.5-3-2.5-5C8.5,9.57,10.07,8,12,8S15.5,9.57,15.5,11.5z M13,17.5h-2V19h2V17.5z M22,12c0-2.76-1.12-5.26-2.93-7.07l-1.06,1.06C19.55,7.53,20.5,9.66,20.5,12c0,2.34-0.95,4.47-2.49,6.01l1.06,1.06 C20.88,17.26,22,14.76,22,12z M3.5,12c0-2.34,0.95-4.47,2.49-6.01L4.93,4.93C3.12,6.74,2,9.24,2,12c0,2.76,1.12,5.26,2.93,7.07 l1.06-1.06C4.45,16.47,3.5,14.34,3.5,12z M17.5,12c0,1.52-0.62,2.89-1.61,3.89l1.06,1.06C18.22,15.68,19,13.93,19,12 c0-1.93-0.78-3.68-2.05-4.95l-1.06,1.06C16.88,9.11,17.5,10.48,17.5,12z M7.05,16.95l1.06-1.06c-1-1-1.61-2.37-1.61-3.89 c0-1.52,0.62-2.89,1.61-3.89L7.05,7.05C5.78,8.32,5,10.07,5,12C5,13.93,5.78,15.68,7.05,16.95z"},"children":[{"name":"path","attribs":{"d":"M15.5,11.5c0,2-2.5,3.5-2.5,5h-2c0-1.5-2.5-3-2.5-5C8.5,9.57,10.07,8,12,8S15.5,9.57,15.5,11.5z M13,17.5h-2V19h2V17.5z M22,12c0-2.76-1.12-5.26-2.93-7.07l-1.06,1.06C19.55,7.53,20.5,9.66,20.5,12c0,2.34-0.95,4.47-2.49,6.01l1.06,1.06 C20.88,17.26,22,14.76,22,12z M3.5,12c0-2.34,0.95-4.47,2.49-6.01L4.93,4.93C3.12,6.74,2,9.24,2,12c0,2.76,1.12,5.26,2.93,7.07 l1.06-1.06C4.45,16.47,3.5,14.34,3.5,12z M17.5,12c0,1.52-0.62,2.89-1.61,3.89l1.06,1.06C18.22,15.68,19,13.93,19,12 c0-1.93-0.78-3.68-2.05-4.95l-1.06,1.06C16.88,9.11,17.5,10.48,17.5,12z M7.05,16.95l1.06-1.06c-1-1-1.61-2.37-1.61-3.89 c0-1.52,0.62-2.89,1.61-3.89L7.05,7.05C5.78,8.32,5,10.07,5,12C5,13.93,5.78,15.68,7.05,16.95z"},"children":[]}]}]}]};exports.ic_online_prediction_outline=ic_online_prediction_outline;var ic_online_prediction_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M15.5,11.5c0,2-2.5,3.5-2.5,5h-2c0-1.5-2.5-3-2.5-5C8.5,9.57,10.07,8,12,8S15.5,9.57,15.5,11.5z M13,17.5h-2V19h2V17.5z M22,12c0-2.76-1.12-5.26-2.93-7.07l-1.06,1.06C19.55,7.53,20.5,9.66,20.5,12c0,2.34-0.95,4.47-2.49,6.01l1.06,1.06 C20.88,17.26,22,14.76,22,12z M3.5,12c0-2.34,0.95-4.47,2.49-6.01L4.93,4.93C3.12,6.74,2,9.24,2,12c0,2.76,1.12,5.26,2.93,7.07 l1.06-1.06C4.45,16.47,3.5,14.34,3.5,12z M17.5,12c0,1.52-0.62,2.89-1.61,3.89l1.06,1.06C18.22,15.68,19,13.93,19,12 c0-1.93-0.78-3.68-2.05-4.95l-1.06,1.06C16.88,9.11,17.5,10.48,17.5,12z M7.05,16.95l1.06-1.06c-1-1-1.61-2.37-1.61-3.89 c0-1.52,0.62-2.89,1.61-3.89L7.05,7.05C5.78,8.32,5,10.07,5,12C5,13.93,5.78,15.68,7.05,16.95z"},"children":[{"name":"path","attribs":{"d":"M15.5,11.5c0,2-2.5,3.5-2.5,5h-2c0-1.5-2.5-3-2.5-5C8.5,9.57,10.07,8,12,8S15.5,9.57,15.5,11.5z M13,17.5h-2V19h2V17.5z M22,12c0-2.76-1.12-5.26-2.93-7.07l-1.06,1.06C19.55,7.53,20.5,9.66,20.5,12c0,2.34-0.95,4.47-2.49,6.01l1.06,1.06 C20.88,17.26,22,14.76,22,12z M3.5,12c0-2.34,0.95-4.47,2.49-6.01L4.93,4.93C3.12,6.74,2,9.24,2,12c0,2.76,1.12,5.26,2.93,7.07 l1.06-1.06C4.45,16.47,3.5,14.34,3.5,12z M17.5,12c0,1.52-0.62,2.89-1.61,3.89l1.06,1.06C18.22,15.68,19,13.93,19,12 c0-1.93-0.78-3.68-2.05-4.95l-1.06,1.06C16.88,9.11,17.5,10.48,17.5,12z M7.05,16.95l1.06-1.06c-1-1-1.61-2.37-1.61-3.89 c0-1.52,0.62-2.89,1.61-3.89L7.05,7.05C5.78,8.32,5,10.07,5,12C5,13.93,5.78,15.68,7.05,16.95z"},"children":[]}]}]}]};exports.ic_online_prediction_twotone=ic_online_prediction_twotone;var ic_opacity={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M24 0H0v24h24V0zm0 0H0v24h24V0zM0 24h24V0H0v24z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17.66 8L12 2.35 6.34 8C4.78 9.56 4 11.64 4 13.64s.78 4.11 2.34 5.67 3.61 2.35 5.66 2.35 4.1-.79 5.66-2.35S20 15.64 20 13.64 19.22 9.56 17.66 8zM6 14c.01-2 .62-3.27 1.76-4.4L12 5.27l4.24 4.38C17.38 10.77 17.99 12 18 14H6z"},"children":[]}]};exports.ic_opacity=ic_opacity;var ic_opacity_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M24 0H0v24h24V0zm0 0H0v24h24V0zM0 24h24V0H0v24z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17.66 8L12 2.35 6.34 8C4.78 9.56 4 11.64 4 13.64s.78 4.11 2.34 5.67 3.61 2.35 5.66 2.35 4.1-.79 5.66-2.35S20 15.64 20 13.64 19.22 9.56 17.66 8zM6 14c.01-2 .62-3.27 1.76-4.4L12 5.27l4.24 4.38C17.38 10.77 17.99 12 18 14H6z"},"children":[]}]};exports.ic_opacity_outline=ic_opacity_outline;var ic_opacity_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M24 0H0v24h24V0zm0 0H0v24h24V0zM0 24h24V0H0v24z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16.24 9.65L12 5.27 7.76 9.6C6.62 10.73 6.01 12 6 14h12c-.01-2-.62-3.23-1.76-4.35z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M17.66 8L12 2.35 6.34 8C4.78 9.56 4 11.64 4 13.64s.78 4.11 2.34 5.67 3.61 2.35 5.66 2.35 4.1-.79 5.66-2.35S20 15.64 20 13.64 19.22 9.56 17.66 8zM6 14c.01-2 .62-3.27 1.76-4.4L12 5.27l4.24 4.38C17.38 10.77 17.99 12 18 14H6z"},"children":[]}]};exports.ic_opacity_twotone=ic_opacity_twotone;var ic_open_in_browser={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h4v-2H5V8h14v10h-4v2h4c1.1 0 2-.9 2-2V6c0-1.1-.89-2-2-2zm-7 6l-4 4h3v6h2v-6h3l-4-4z"},"children":[]}]};exports.ic_open_in_browser=ic_open_in_browser;var ic_open_in_browser_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h4v-2H5V8h14v10h-4v2h4c1.1 0 2-.9 2-2V6c0-1.1-.89-2-2-2zm-7 6l-4 4h3v6h2v-6h3l-4-4z"},"children":[]}]};exports.ic_open_in_browser_outline=ic_open_in_browser_outline;var ic_open_in_browser_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h4v-2H5V8h14v10h-4v2h4c1.1 0 2-.9 2-2V6c0-1.1-.89-2-2-2zm-7 6l-4 4h3v6h2v-6h3l-4-4z"},"children":[]}]};exports.ic_open_in_browser_twotone=ic_open_in_browser_twotone;var ic_open_in_full={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"polygon","attribs":{"points":"21,11 21,3 13,3 16.29,6.29 6.29,16.29 3,13 3,21 11,21 7.71,17.71 17.71,7.71"},"children":[]}]};exports.ic_open_in_full=ic_open_in_full;var ic_open_in_full_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"polygon","attribs":{"points":"21,11 21,3 13,3 16.29,6.29 6.29,16.29 3,13 3,21 11,21 7.71,17.71 17.71,7.71"},"children":[]}]};exports.ic_open_in_full_outline=ic_open_in_full_outline;var ic_open_in_full_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"polygon","attribs":{"points":"21,11 21,3 13,3 16.29,6.29 6.29,16.29 3,13 3,21 11,21 7.71,17.71 17.71,7.71"},"children":[]}]};exports.ic_open_in_full_twotone=ic_open_in_full_twotone;var ic_open_in_new={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 19H5V5h7V3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2v-7h-2v7zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3h-7z"},"children":[]}]};exports.ic_open_in_new=ic_open_in_new;var ic_open_in_new_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 19H5V5h7V3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2v-7h-2v7zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3h-7z"},"children":[]}]};exports.ic_open_in_new_outline=ic_open_in_new_outline;var ic_open_in_new_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 19H5V5h7V3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2v-7h-2v7zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3h-7z"},"children":[]}]};exports.ic_open_in_new_twotone=ic_open_in_new_twotone;var ic_open_with={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 9h4V6h3l-5-5-5 5h3v3zm-1 1H6V7l-5 5 5 5v-3h3v-4zm14 2l-5-5v3h-3v4h3v3l5-5zm-9 3h-4v3H7l5 5 5-5h-3v-3z"},"children":[]}]};exports.ic_open_with=ic_open_with;var ic_open_with_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 9h4V6h3l-5-5-5 5h3v3zm-1 1H6V7l-5 5 5 5v-3h3v-4zm14 2l-5-5v3h-3v4h3v3l5-5zm-9 3h-4v3H7l5 5 5-5h-3v-3z"},"children":[]}]};exports.ic_open_with_outline=ic_open_with_outline;var ic_open_with_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 9h4V6h3l-5-5-5 5h3v3zm-1 1H6V7l-5 5 5 5v-3h3v-4zm14 2l-5-5v3h-3v4h3v3l5-5zm-9 3h-4v3H7l5 5 5-5h-3v-3z"},"children":[]}]};exports.ic_open_with_twotone=ic_open_with_twotone;var ic_outbond={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0","y":"0"},"children":[]},{"name":"path","attribs":{"d":"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M13.88,11.54l-4.96,4.96l-1.41-1.41 l4.96-4.96L10.34,8l5.65,0.01L16,13.66L13.88,11.54z"},"children":[]}]};exports.ic_outbond=ic_outbond;var ic_outbond_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0","y":"0"},"children":[]},{"name":"path","attribs":{"d":"M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8s-8-3.59-8-8S7.59,4,12,4 M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10 C22,6.48,17.52,2,12,2L12,2z M13.88,11.54l-4.96,4.96l-1.41-1.41l4.96-4.96L10.34,8l5.65,0.01L16,13.66L13.88,11.54z"},"children":[]}]};exports.ic_outbond_outline=ic_outbond_outline;var ic_outbond_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0","y":"0"},"children":[]},{"name":"path","attribs":{"d":"M12,4c-4.41,0-8,3.59-8,8c0,4.41,3.59,8,8,8s8-3.59,8-8C20,7.59,16.41,4,12,4z M13.88,11.54l-4.96,4.96 l-1.41-1.41l4.96-4.96L10.34,8l5.65,0.01L16,13.66L13.88,11.54z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8s-8-3.59-8-8S7.59,4,12,4 M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10 C22,6.48,17.52,2,12,2L12,2z M13.88,11.54l-4.96,4.96l-1.41-1.41l4.96-4.96L10.34,8l5.65,0.01L16,13.66L13.88,11.54z"},"children":[]}]};exports.ic_outbond_twotone=ic_outbond_twotone;var ic_outbox={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H4.99c-1.11 0-1.98.9-1.98 2L3 19c0 1.1.88 2 1.99 2H19c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 12h-4c0 1.66-1.35 3-3 3s-3-1.34-3-3H4.99V5H19v10zM8 11h2v3h4v-3h2l-4-4-4 4z"},"children":[]}]};exports.ic_outbox=ic_outbox;var ic_outgoing_mail={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M18.5,11c0.17,0,0.34,0.01,0.5,0.03V6.87C19,5.84,18.16,5,17.13,5H3.87C2.84,5,2,5.84,2,6.87v10.26 C2,18.16,2.84,19,3.87,19h9.73C13.22,18.25,13,17.4,13,16.5C13,13.46,15.46,11,18.5,11z M10.4,13L4,9.19V7h0.23l6.18,3.68L16.74,7 H17v2.16L10.4,13z"},"children":[{"name":"path","attribs":{"d":"M18.5,11c0.17,0,0.34,0.01,0.5,0.03V6.87C19,5.84,18.16,5,17.13,5H3.87C2.84,5,2,5.84,2,6.87v10.26 C2,18.16,2.84,19,3.87,19h9.73C13.22,18.25,13,17.4,13,16.5C13,13.46,15.46,11,18.5,11z M10.4,13L4,9.19V7h0.23l6.18,3.68L16.74,7 H17v2.16L10.4,13z"},"children":[]}]},{"name":"polygon","attribs":{"points":"19,13 17.59,14.41 19.17,16 15,16 15,18 19.17,18 17.59,19.59 19,21 23,17"},"children":[{"name":"polygon","attribs":{"points":"19,13 17.59,14.41 19.17,16 15,16 15,18 19.17,18 17.59,19.59 19,21 23,17"},"children":[]}]}]}]}]}]};exports.ic_outgoing_mail=ic_outgoing_mail;var ic_outlet={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M9,12c-0.55,0-1-0.45-1-1V8 c0-0.55,0.45-1,1-1s1,0.45,1,1v3C10,11.55,9.55,12,9,12z M14,18h-4v-2c0-1.1,0.9-2,2-2c1.1,0,2,0.9,2,2V18z M16,11 c0,0.55-0.45,1-1,1c-0.55,0-1-0.45-1-1V8c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1V11z"},"children":[]}]};exports.ic_outlet=ic_outlet;var ic_outlet_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8s-8-3.59-8-8S7.59,4,12,4 M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10 S17.52,2,12,2L12,2z M10,11V8c0-0.55-0.45-1-1-1h0C8.45,7,8,7.45,8,8v3c0,0.55,0.45,1,1,1h0C9.55,12,10,11.55,10,11z M16,11V8 c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v3c0,0.55,0.45,1,1,1h0C15.55,12,16,11.55,16,11z M14,16c0-1.1-0.9-2-2-2h0 c-1.1,0-2,0.9-2,2v2h4V16z"},"children":[]}]};exports.ic_outlet_outline=ic_outlet_outline;var ic_outlet_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8s-8-3.59-8-8S7.59,4,12,4 M10,11V8c0-0.55-0.45-1-1-1h0 C8.45,7,8,7.45,8,8v3c0,0.55,0.45,1,1,1h0C9.55,12,10,11.55,10,11z M16,11V8c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v3 c0,0.55,0.45,1,1,1h0C15.55,12,16,11.55,16,11z M14,16c0-1.1-0.9-2-2-2h0c-1.1,0-2,0.9-2,2v2h4V16z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8s-8-3.59-8-8S7.59,4,12,4 M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10 S17.52,2,12,2L12,2z M10,11V8c0-0.55-0.45-1-1-1h0C8.45,7,8,7.45,8,8v3c0,0.55,0.45,1,1,1h0C9.55,12,10,11.55,10,11z M16,11V8 c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v3c0,0.55,0.45,1,1,1h0C15.55,12,16,11.55,16,11z M14,16c0-1.1-0.9-2-2-2h0 c-1.1,0-2,0.9-2,2v2h4V16z"},"children":[]}]};exports.ic_outlet_twotone=ic_outlet_twotone;var ic_pageview={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11.5 9C10.12 9 9 10.12 9 11.5s1.12 2.5 2.5 2.5 2.5-1.12 2.5-2.5S12.88 9 11.5 9zM20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-3.21 14.21l-2.91-2.91c-.69.44-1.51.7-2.39.7C9.01 16 7 13.99 7 11.5S9.01 7 11.5 7 16 9.01 16 11.5c0 .88-.26 1.69-.7 2.39l2.91 2.9-1.42 1.42z"},"children":[]}]};exports.ic_pageview=ic_pageview;var ic_pageview_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11.49 16c.88 0 1.7-.26 2.39-.7l2.44 2.44 1.42-1.42-2.44-2.43c.44-.7.7-1.51.7-2.39C16 9.01 13.99 7 11.5 7S7 9.01 7 11.5 9.01 16 11.49 16zm.01-7c1.38 0 2.5 1.12 2.5 2.5S12.88 14 11.5 14 9 12.88 9 11.5 10.12 9 11.5 9zM20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h16v12z"},"children":[]}]};exports.ic_pageview_outline=ic_pageview_outline;var ic_pageview_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 18h16V6H4v12zm7.5-11c2.49 0 4.5 2.01 4.5 4.5 0 .88-.26 1.69-.7 2.39l2.44 2.43-1.42 1.42-2.44-2.44c-.69.44-1.51.7-2.39.7C9.01 16 7 13.99 7 11.5S9.01 7 11.5 7z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M11.49 16c.88 0 1.7-.26 2.39-.7l2.44 2.44 1.42-1.42-2.44-2.43c.44-.7.7-1.51.7-2.39C16 9.01 13.99 7 11.5 7S7 9.01 7 11.5 9.01 16 11.49 16zm.01-7c1.38 0 2.5 1.12 2.5 2.5S12.88 14 11.5 14 9 12.88 9 11.5 10.12 9 11.5 9zM20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h16v12z"},"children":[]}]};exports.ic_pageview_twotone=ic_pageview_twotone;var ic_pan_tool={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M23,5.5V20c0,2.2-1.8,4-4,4h-7.3c-1.08,0-2.1-0.43-2.85-1.19L1,14.83c0,0,1.26-1.23,1.3-1.25 c0.22-0.19,0.49-0.29,0.79-0.29c0.22,0,0.42,0.06,0.6,0.16C3.73,13.46,8,15.91,8,15.91V4c0-0.83,0.67-1.5,1.5-1.5S11,3.17,11,4v7 h1V1.5C12,0.67,12.67,0,13.5,0S15,0.67,15,1.5V11h1V2.5C16,1.67,16.67,1,17.5,1S19,1.67,19,2.5V11h1V5.5C20,4.67,20.67,4,21.5,4 S23,4.67,23,5.5z"},"children":[{"name":"path","attribs":{"d":"M23,5.5V20c0,2.2-1.8,4-4,4h-7.3c-1.08,0-2.1-0.43-2.85-1.19L1,14.83c0,0,1.26-1.23,1.3-1.25 c0.22-0.19,0.49-0.29,0.79-0.29c0.22,0,0.42,0.06,0.6,0.16C3.73,13.46,8,15.91,8,15.91V4c0-0.83,0.67-1.5,1.5-1.5S11,3.17,11,4v7 h1V1.5C12,0.67,12.67,0,13.5,0S15,0.67,15,1.5V11h1V2.5C16,1.67,16.67,1,17.5,1S19,1.67,19,2.5V11h1V5.5C20,4.67,20.67,4,21.5,4 S23,4.67,23,5.5z"},"children":[]}]}]}]}]}]}]}]};exports.ic_pan_tool=ic_pan_tool;var ic_pan_tool_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 24h-6.55c-1.08 0-2.14-.45-2.89-1.23l-7.3-7.61 2.07-1.83c.62-.55 1.53-.66 2.26-.27L8 14.34V4.79c0-1.38 1.12-2.5 2.5-2.5.17 0 .34.02.51.05.09-1.3 1.17-2.33 2.49-2.33.86 0 1.61.43 2.06 1.09.29-.12.61-.18.94-.18 1.38 0 2.5 1.12 2.5 2.5v.28c.16-.03.33-.05.5-.05 1.38 0 2.5 1.12 2.5 2.5V20c0 2.21-1.79 4-4 4zM4.14 15.28l5.86 6.1c.38.39.9.62 1.44.62H18c1.1 0 2-.9 2-2V6.15c0-.28-.22-.5-.5-.5s-.5.22-.5.5V12h-2V3.42c0-.28-.22-.5-.5-.5s-.5.22-.5.5V12h-2V2.51c0-.28-.22-.5-.5-.5s-.5.22-.5.5V12h-2V4.79c0-.28-.22-.5-.5-.5s-.5.23-.5.5v12.87l-5.35-2.83-.51.45z"},"children":[]}]};exports.ic_pan_tool_outline=ic_pan_tool_outline;var ic_pan_tool_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19.5 5.65c-.28 0-.5.22-.5.5V12h-2V3.42c0-.28-.22-.5-.5-.5s-.5.22-.5.5V12h-2V2.51c0-.28-.22-.5-.5-.5s-.5.22-.5.5V12h-2V4.79c0-.28-.22-.5-.5-.5s-.5.23-.5.5v12.87l-5.35-2.83-.51.45 5.86 6.1c.38.39.9.62 1.44.62H18c1.1 0 2-.9 2-2V6.15c0-.28-.22-.5-.5-.5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M19.5 3.65c-.17 0-.34.02-.5.05v-.28c0-1.38-1.12-2.5-2.5-2.5-.33 0-.65.06-.94.18C15.11.44 14.35.01 13.5.01c-1.32 0-2.41 1.03-2.49 2.33-.16-.03-.33-.05-.51-.05-1.38 0-2.5 1.12-2.5 2.5v9.55l-2.41-1.28c-.73-.39-1.64-.28-2.26.27l-2.07 1.83 7.3 7.61c.75.78 1.8 1.23 2.89 1.23H18c2.21 0 4-1.79 4-4V6.15c0-1.38-1.12-2.5-2.5-2.5zM20 20c0 1.1-.9 2-2 2h-6.55c-.54 0-1.07-.22-1.44-.62l-5.86-6.11.51-.45L10 17.66V4.79c0-.28.22-.5.5-.5s.5.23.5.5V12h2V2.51c0-.28.22-.5.5-.5s.5.22.5.5V12h2V3.42c0-.28.22-.5.5-.5s.5.22.5.5V12h2V6.15c0-.28.22-.5.5-.5s.5.22.5.5V20z"},"children":[]}]};exports.ic_pan_tool_twotone=ic_pan_tool_twotone;var ic_payment={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4v-6h16v6zm0-10H4V6h16v2z"},"children":[]}]};exports.ic_payment=ic_payment;var ic_payment_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4v-6h16v6zm0-10H4V6h16v2z"},"children":[]}]};exports.ic_payment_outline=ic_payment_outline;var ic_payment_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 6h16v2H4zm0 6h16v6H4z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4v-6h16v6zm0-10H4V6h16v2z"},"children":[]}]};exports.ic_payment_twotone=ic_payment_twotone;var ic_pending={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M7,13.5c-0.83,0-1.5-0.67-1.5-1.5 c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5C8.5,12.83,7.83,13.5,7,13.5z M12,13.5c-0.83,0-1.5-0.67-1.5-1.5 c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5C13.5,12.83,12.83,13.5,12,13.5z M17,13.5c-0.83,0-1.5-0.67-1.5-1.5 c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5C18.5,12.83,17.83,13.5,17,13.5z"},"children":[{"name":"path","attribs":{"d":"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M7,13.5c-0.83,0-1.5-0.67-1.5-1.5 c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5C8.5,12.83,7.83,13.5,7,13.5z M12,13.5c-0.83,0-1.5-0.67-1.5-1.5 c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5C13.5,12.83,12.83,13.5,12,13.5z M17,13.5c-0.83,0-1.5-0.67-1.5-1.5 c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5C18.5,12.83,17.83,13.5,17,13.5z"},"children":[]}]}]}]};exports.ic_pending=ic_pending;var ic_pending_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,20c-4.42,0-8-3.58-8-8 c0-4.42,3.58-8,8-8s8,3.58,8,8C20,16.42,16.42,20,12,20z"},"children":[{"name":"path","attribs":{"d":"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,20c-4.42,0-8-3.58-8-8 c0-4.42,3.58-8,8-8s8,3.58,8,8C20,16.42,16.42,20,12,20z"},"children":[]}]},{"name":"circle","attribs":{"cx":"7","cy":"12","r":"1.5"},"children":[{"name":"circle","attribs":{"cx":"7","cy":"12","r":"1.5"},"children":[]}]},{"name":"circle","attribs":{"cx":"12","cy":"12","r":"1.5"},"children":[{"name":"circle","attribs":{"cx":"12","cy":"12","r":"1.5"},"children":[]}]},{"name":"circle","attribs":{"cx":"17","cy":"12","r":"1.5"},"children":[{"name":"circle","attribs":{"cx":"17","cy":"12","r":"1.5"},"children":[]}]}]}]}]}]};exports.ic_pending_outline=ic_pending_outline;var ic_pending_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M12,4c-4.42,0-8,3.58-8,8c0,4.42,3.58,8,8,8s8-3.58,8-8C20,7.58,16.42,4,12,4z M7,13.5 c-0.83,0-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5C8.5,12.83,7.83,13.5,7,13.5z M12,13.5 c-0.83,0-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5C13.5,12.83,12.83,13.5,12,13.5z M17,13.5 c-0.83,0-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5C18.5,12.83,17.83,13.5,17,13.5z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M12,4c-4.42,0-8,3.58-8,8c0,4.42,3.58,8,8,8s8-3.58,8-8C20,7.58,16.42,4,12,4z M7,13.5 c-0.83,0-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5C8.5,12.83,7.83,13.5,7,13.5z M12,13.5 c-0.83,0-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5C13.5,12.83,12.83,13.5,12,13.5z M17,13.5 c-0.83,0-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5C18.5,12.83,17.83,13.5,17,13.5z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,20c-4.42,0-8-3.58-8-8 c0-4.42,3.58-8,8-8s8,3.58,8,8C20,16.42,16.42,20,12,20z"},"children":[{"name":"path","attribs":{"d":"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,20c-4.42,0-8-3.58-8-8 c0-4.42,3.58-8,8-8s8,3.58,8,8C20,16.42,16.42,20,12,20z"},"children":[]}]},{"name":"circle","attribs":{"cx":"7","cy":"12","r":"1.5"},"children":[{"name":"circle","attribs":{"cx":"7","cy":"12","r":"1.5"},"children":[]}]},{"name":"circle","attribs":{"cx":"12","cy":"12","r":"1.5"},"children":[{"name":"circle","attribs":{"cx":"12","cy":"12","r":"1.5"},"children":[]}]},{"name":"circle","attribs":{"cx":"17","cy":"12","r":"1.5"},"children":[{"name":"circle","attribs":{"cx":"17","cy":"12","r":"1.5"},"children":[]}]}]}]}]}]};exports.ic_pending_twotone=ic_pending_twotone;var ic_pending_actions={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M17,12c-2.76,0-5,2.24-5,5s2.24,5,5,5c2.76,0,5-2.24,5-5S19.76,12,17,12z M18.65,19.35l-2.15-2.15V14h1v2.79l1.85,1.85 L18.65,19.35z M18,3h-3.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H6C4.9,3,4,3.9,4,5v15c0,1.1,0.9,2,2,2h6.11 c-0.59-0.57-1.07-1.25-1.42-2H6V5h2v3h8V5h2v5.08c0.71,0.1,1.38,0.31,2,0.6V5C20,3.9,19.1,3,18,3z M12,5c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1C13,4.55,12.55,5,12,5z"},"children":[{"name":"path","attribs":{"d":"M17,12c-2.76,0-5,2.24-5,5s2.24,5,5,5c2.76,0,5-2.24,5-5S19.76,12,17,12z M18.65,19.35l-2.15-2.15V14h1v2.79l1.85,1.85 L18.65,19.35z M18,3h-3.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H6C4.9,3,4,3.9,4,5v15c0,1.1,0.9,2,2,2h6.11 c-0.59-0.57-1.07-1.25-1.42-2H6V5h2v3h8V5h2v5.08c0.71,0.1,1.38,0.31,2,0.6V5C20,3.9,19.1,3,18,3z M12,5c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1C13,4.55,12.55,5,12,5z"},"children":[]}]}]}]};exports.ic_pending_actions=ic_pending_actions;var ic_pending_actions_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M17,12c-2.76,0-5,2.24-5,5s2.24,5,5,5c2.76,0,5-2.24,5-5S19.76,12,17,12z M18.65,19.35l-2.15-2.15V14h1v2.79l1.85,1.85 L18.65,19.35z M18,3h-3.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H6C4.9,3,4,3.9,4,5v15c0,1.1,0.9,2,2,2h6.11 c-0.59-0.57-1.07-1.25-1.42-2H6V5h2v3h8V5h2v5.08c0.71,0.1,1.38,0.31,2,0.6V5C20,3.9,19.1,3,18,3z M12,5c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1C13,4.55,12.55,5,12,5z"},"children":[{"name":"path","attribs":{"d":"M17,12c-2.76,0-5,2.24-5,5s2.24,5,5,5c2.76,0,5-2.24,5-5S19.76,12,17,12z M18.65,19.35l-2.15-2.15V14h1v2.79l1.85,1.85 L18.65,19.35z M18,3h-3.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H6C4.9,3,4,3.9,4,5v15c0,1.1,0.9,2,2,2h6.11 c-0.59-0.57-1.07-1.25-1.42-2H6V5h2v3h8V5h2v5.08c0.71,0.1,1.38,0.31,2,0.6V5C20,3.9,19.1,3,18,3z M12,5c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1C13,4.55,12.55,5,12,5z"},"children":[]}]}]}]};exports.ic_pending_actions_outline=ic_pending_actions_outline;var ic_pending_actions_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M18.65,19.35l-2.15-2.15V14h1v2.79l1.85,1.85L18.65,19.35z M17,10c0.34,0,0.67,0.03,1,0.08V5h-2v3H8V5H6v15 h4.68C10.25,19.09,10,18.08,10,17C10,13.13,13.13,10,17,10z M12,5c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1 C13,4.55,12.55,5,12,5z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M18.65,19.35l-2.15-2.15V14h1v2.79l1.85,1.85L18.65,19.35z M17,10c0.34,0,0.67,0.03,1,0.08V5h-2v3H8V5H6v15 h4.68C10.25,19.09,10,18.08,10,17C10,13.13,13.13,10,17,10z M12,5c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1 C13,4.55,12.55,5,12,5z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M17,12c-2.76,0-5,2.24-5,5s2.24,5,5,5c2.76,0,5-2.24,5-5S19.76,12,17,12z M18.65,19.35l-2.15-2.15V14h1v2.79l1.85,1.85 L18.65,19.35z M18,3h-3.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H6C4.9,3,4,3.9,4,5v15c0,1.1,0.9,2,2,2h6.11 c-0.59-0.57-1.07-1.25-1.42-2H6V5h2v3h8V5h2v5.08c0.71,0.1,1.38,0.31,2,0.6V5C20,3.9,19.1,3,18,3z M12,5c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1C13,4.55,12.55,5,12,5z"},"children":[{"name":"path","attribs":{"d":"M17,12c-2.76,0-5,2.24-5,5s2.24,5,5,5c2.76,0,5-2.24,5-5S19.76,12,17,12z M18.65,19.35l-2.15-2.15V14h1v2.79l1.85,1.85 L18.65,19.35z M18,3h-3.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H6C4.9,3,4,3.9,4,5v15c0,1.1,0.9,2,2,2h6.11 c-0.59-0.57-1.07-1.25-1.42-2H6V5h2v3h8V5h2v5.08c0.71,0.1,1.38,0.31,2,0.6V5C20,3.9,19.1,3,18,3z M12,5c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1C13,4.55,12.55,5,12,5z"},"children":[]}]}]}]};exports.ic_pending_actions_twotone=ic_pending_actions_twotone;var ic_perm_camera_mic={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 5h-3.17L15 3H9L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7v-2.09c-2.83-.48-5-2.94-5-5.91h2c0 2.21 1.79 4 4 4s4-1.79 4-4h2c0 2.97-2.17 5.43-5 5.91V21h7c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-6 8c0 1.1-.9 2-2 2s-2-.9-2-2V9c0-1.1.9-2 2-2s2 .9 2 2v4z"},"children":[]}]};exports.ic_perm_camera_mic=ic_perm_camera_mic;var ic_perm_camera_mic_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 6c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2s2-.9 2-2V8c0-1.1-.9-2-2-2zm8-1h-3.17l-1.86-2H8.96L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 14h-7v-1.09c2.83-.48 5-2.94 5-5.91h-2c0 2.21-1.79 4-4 4s-4-1.79-4-4H6c0 2.97 2.17 5.43 5 5.91V19H4V7h4.21l.59-.65L10.04 5h4.24l1.24 1.35.59.65H20v12z"},"children":[]}]};exports.ic_perm_camera_mic_outline=ic_perm_camera_mic_outline;var ic_perm_camera_mic_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16.11 7l-.59-.65L14.28 5h-4.24L8.81 6.35l-.6.65H4v12h7v-1.09c-2.83-.48-5-2.94-5-5.91h2c0 2.21 1.79 4 4 4s4-1.79 4-4h2c0 2.97-2.17 5.43-5 5.91V19h7V7h-3.89zM14 12c0 1.1-.9 2-2 2s-2-.9-2-2V8c0-1.1.9-2 2-2s2 .9 2 2v4z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 6c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2s2-.9 2-2V8c0-1.1-.9-2-2-2zm8-1h-3.17l-1.86-2H8.96L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 14h-7v-1.09c2.83-.48 5-2.94 5-5.91h-2c0 2.21-1.79 4-4 4s-4-1.79-4-4H6c0 2.97 2.17 5.43 5 5.91V19H4V7h4.21l.59-.65L10.04 5h4.24l1.24 1.35.59.65H20v12z"},"children":[]}]};exports.ic_perm_camera_mic_twotone=ic_perm_camera_mic_twotone;var ic_perm_contact_calendar={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 3c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm6 12H6v-1c0-2 4-3.1 6-3.1s6 1.1 6 3.1v1z"},"children":[]}]};exports.ic_perm_contact_calendar=ic_perm_contact_calendar;var ic_perm_contact_calendar_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20.84 4.22c-.05-.12-.11-.23-.18-.34-.14-.21-.33-.4-.54-.54-.11-.07-.22-.13-.34-.18-.24-.1-.5-.16-.78-.16h-1V1h-2v2H8V1H6v2H5c-.42 0-.8.13-1.12.34-.21.14-.4.33-.54.54-.07.11-.13.22-.18.34-.1.24-.16.5-.16.78v14c0 1.1.89 2 2 2h14c.28 0 .54-.06.78-.16.12-.05.23-.11.34-.18.21-.14.4-.33.54-.54.21-.32.34-.71.34-1.12V5c0-.28-.06-.54-.16-.78zM5 19V5h14v14H5zm7-6.12c-2.03 0-6 1.08-6 3.58V18h12v-1.53c0-2.51-3.97-3.59-6-3.59zM8.31 16c.69-.56 2.38-1.12 3.69-1.12s3.01.56 3.69 1.12H8.31zM12 12c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z"},"children":[]}]};exports.ic_perm_contact_calendar_outline=ic_perm_contact_calendar_outline;var ic_perm_contact_calendar_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16 5H5v14h14V5h-3zm-4 1c1.65 0 3 1.35 3 3s-1.35 3-3 3-3-1.35-3-3 1.35-3 3-3zm6 12H6v-1.53c0-2.5 3.97-3.58 6-3.58s6 1.08 6 3.58V18z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20.84 4.22c-.05-.12-.11-.23-.18-.34-.14-.21-.33-.4-.54-.54-.11-.07-.22-.13-.34-.18-.24-.1-.5-.16-.78-.16h-1V1h-2v2H8V1H6v2H5c-.42 0-.8.13-1.12.34-.21.14-.4.33-.54.54-.07.11-.13.22-.18.34-.1.24-.16.5-.16.78v14c0 1.1.89 2 2 2h14c.28 0 .54-.06.78-.16.12-.05.23-.11.34-.18.21-.14.4-.33.54-.54.21-.32.34-.71.34-1.12V5c0-.28-.06-.54-.16-.78zM19 19H5V5h14v14zm-7-6.12c-2.03 0-6 1.08-6 3.58V18h12v-1.53c0-2.51-3.97-3.59-6-3.59zM8.31 16c.69-.56 2.38-1.12 3.69-1.12s3.01.56 3.69 1.12H8.31zM12 12c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z"},"children":[]}]};exports.ic_perm_contact_calendar_twotone=ic_perm_contact_calendar_twotone;var ic_perm_data_setting={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18.99 11.5c.34 0 .67.03 1 .07L20 0 0 20h11.56c-.04-.33-.07-.66-.07-1 0-4.14 3.36-7.5 7.5-7.5zm3.71 7.99c.02-.16.04-.32.04-.49 0-.17-.01-.33-.04-.49l1.06-.83c.09-.08.12-.21.06-.32l-1-1.73c-.06-.11-.19-.15-.31-.11l-1.24.5c-.26-.2-.54-.37-.85-.49l-.19-1.32c-.01-.12-.12-.21-.24-.21h-2c-.12 0-.23.09-.25.21l-.19 1.32c-.3.13-.59.29-.85.49l-1.24-.5c-.11-.04-.24 0-.31.11l-1 1.73c-.06.11-.04.24.06.32l1.06.83c-.02.16-.03.32-.03.49 0 .17.01.33.03.49l-1.06.83c-.09.08-.12.21-.06.32l1 1.73c.06.11.19.15.31.11l1.24-.5c.26.2.54.37.85.49l.19 1.32c.02.12.12.21.25.21h2c.12 0 .23-.09.25-.21l.19-1.32c.3-.13.59-.29.84-.49l1.25.5c.11.04.24 0 .31-.11l1-1.73c.06-.11.03-.24-.06-.32l-1.07-.83zm-3.71 1.01c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z"},"children":[]}]};exports.ic_perm_data_setting=ic_perm_data_setting;var ic_perm_data_setting_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17.99 11.57H20V0L0 20h11.56v-2H4.83L17.99 4.83v6.74zm5.78 8.75l-1.07-.83c.02-.16.04-.32.04-.49 0-.17-.01-.33-.04-.49l1.06-.83c.09-.08.12-.21.06-.32l-1-1.73c-.06-.11-.19-.15-.31-.11l-1.24.5c-.26-.2-.54-.37-.85-.49l-.19-1.32c-.01-.12-.12-.21-.24-.21h-2c-.12 0-.23.09-.25.21l-.19 1.32c-.3.13-.59.29-.85.49l-1.24-.5c-.11-.04-.24 0-.31.11l-1 1.73c-.06.11-.04.24.06.32l1.06.83c-.02.16-.03.32-.03.49 0 .17.01.33.03.49l-1.06.83c-.09.08-.12.21-.06.32l1 1.73c.06.11.19.15.31.11l1.24-.5c.26.2.54.37.85.49l.19 1.32c.02.12.12.21.25.21h2c.12 0 .23-.09.25-.21l.19-1.32c.3-.13.59-.29.84-.49l1.25.5c.11.04.24 0 .31-.11l1-1.73c.06-.11.03-.24-.06-.32zm-4.78.18c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z"},"children":[]}]};exports.ic_perm_data_setting_outline=ic_perm_data_setting_outline;var ic_perm_data_setting_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17.99 11.57H20V0L0 20h11.56v-2H4.83L17.99 4.83v6.74zm5.78 8.75l-1.07-.83c.02-.16.04-.32.04-.49 0-.17-.01-.33-.04-.49l1.06-.83c.09-.08.12-.21.06-.32l-1-1.73c-.06-.11-.19-.15-.31-.11l-1.24.5c-.26-.2-.54-.37-.85-.49l-.19-1.32c-.01-.12-.12-.21-.24-.21h-2c-.12 0-.23.09-.25.21l-.19 1.32c-.3.13-.59.29-.85.49l-1.24-.5c-.11-.04-.24 0-.31.11l-1 1.73c-.06.11-.04.24.06.32l1.06.83c-.02.16-.03.32-.03.49 0 .17.01.33.03.49l-1.06.83c-.09.08-.12.21-.06.32l1 1.73c.06.11.19.15.31.11l1.24-.5c.26.2.54.37.85.49l.19 1.32c.02.12.12.21.25.21h2c.12 0 .23-.09.25-.21l.19-1.32c.3-.13.59-.29.84-.49l1.25.5c.11.04.24 0 .31-.11l1-1.73c.06-.11.03-.24-.06-.32zm-4.78.18c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z"},"children":[]}]};exports.ic_perm_data_setting_twotone=ic_perm_data_setting_twotone;var ic_perm_device_information={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13 7h-2v2h2V7zm0 4h-2v6h2v-6zm4-9.99L7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z"},"children":[]}]};exports.ic_perm_device_information=ic_perm_device_information;var ic_perm_device_information_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11 7h2v2h-2zm0 4h2v6h-2zm6-9.99L7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 21H7v-1h10v1zm0-3H7V6h10v12zM7 4V3h10v1H7z"},"children":[]}]};exports.ic_perm_device_information_outline=ic_perm_device_information_outline;var ic_perm_device_information_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 20h10v1H7zM7 3h10v1H7z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M11 7h2v2h-2zm0 4h2v6h-2zm6-9.99L7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 21H7v-1h10v1zm0-3H7V6h10v12zm0-14H7V3h10v1z"},"children":[]}]};exports.ic_perm_device_information_twotone=ic_perm_device_information_twotone;var ic_perm_identity={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 5.9c1.16 0 2.1.94 2.1 2.1s-.94 2.1-2.1 2.1S9.9 9.16 9.9 8s.94-2.1 2.1-2.1m0 9c2.97 0 6.1 1.46 6.1 2.1v1.1H5.9V17c0-.64 3.13-2.1 6.1-2.1M12 4C9.79 4 8 5.79 8 8s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 9c-2.67 0-8 1.34-8 4v3h16v-3c0-2.66-5.33-4-8-4z"},"children":[]}]};exports.ic_perm_identity=ic_perm_identity;var ic_perm_identity_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0 9c2.7 0 5.8 1.29 6 2v1H6v-.99c.2-.72 3.3-2.01 6-2.01m0-11C9.79 4 8 5.79 8 8s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 9c-2.67 0-8 1.34-8 4v3h16v-3c0-2.66-5.33-4-8-4z"},"children":[]}]};exports.ic_perm_identity_outline=ic_perm_identity_outline;var ic_perm_identity_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"12","cy":"8","opacity":".3","r":"2"},"children":[]},{"name":"path","attribs":{"d":"M12 15c-2.7 0-5.8 1.29-6 2.01V18h12v-1c-.2-.71-3.3-2-6-2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm0 7c-2.67 0-8 1.34-8 4v3h16v-3c0-2.66-5.33-4-8-4zm6 5H6v-.99c.2-.72 3.3-2.01 6-2.01s5.8 1.29 6 2v1z"},"children":[]}]};exports.ic_perm_identity_twotone=ic_perm_identity_twotone;var ic_perm_media={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M2 6H0v5h.01L0 20c0 1.1.9 2 2 2h18v-2H2V6zm20-2h-8l-2-2H6c-1.1 0-1.99.9-1.99 2L4 16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM7 15l4.5-6 3.5 4.51 2.5-3.01L21 15H7z"},"children":[]}]};exports.ic_perm_media=ic_perm_media;var ic_perm_media_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M2 6H0v5h.01L0 20c0 1.1.9 2 2 2h18v-2H2V6zm5 9h14l-3.5-4.5-2.5 3.01L11.5 9zM22 4h-8l-2-2H6c-1.1 0-1.99.9-1.99 2L4 16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 12H6V4h5.17l1.41 1.41.59.59H22v10z"},"children":[]}]};exports.ic_perm_media_outline=ic_perm_media_outline;var ic_perm_media_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13.17 6l-.59-.59L11.17 4H6v12h16V6h-8.83zm4.33 4.5L21 15H7l4.5-6 3.5 4.51 2.5-3.01z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M2 6H0v5h.01L0 20c0 1.1.9 2 2 2h18v-2H2V6zm5 9h14l-3.5-4.5-2.5 3.01L11.5 9zM22 4h-8l-2-2H6c-1.1 0-1.99.9-1.99 2L4 16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 12H6V4h5.17l1.41 1.41.59.59H22v10z"},"children":[]}]};exports.ic_perm_media_twotone=ic_perm_media_twotone;var ic_perm_phone_msg={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 15.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.58l2.2-2.21c.28-.27.36-.66.25-1.01C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM12 3v10l3-3h6V3h-9z"},"children":[]}]};exports.ic_perm_phone_msg=ic_perm_phone_msg;var ic_perm_phone_msg_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 15.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.58l2.2-2.21c.28-.27.36-.66.25-1.01C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.46 2.59L5.79 8.8c-.41-1.21-.67-2.48-.76-3.8zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM12 3v10l3-3h6V3h-9zm7 5h-5V5h5v3z"},"children":[]}]};exports.ic_perm_phone_msg_outline=ic_perm_phone_msg_outline;var ic_perm_phone_msg_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.2 18.21c1.21.41 2.48.67 3.8.76v-1.5c-.88-.07-1.75-.22-2.6-.45l-1.2 1.19zM6.54 5h-1.5c.09 1.32.35 2.59.75 3.79l1.2-1.21c-.24-.83-.39-1.7-.45-2.58zM14 8h5V5h-5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 15.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.58l2.2-2.21c.28-.27.36-.66.25-1.01C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.46 2.59L5.79 8.8c-.41-1.21-.67-2.48-.76-3.8zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM12 3v10l3-3h6V3h-9zm7 5h-5V5h5v3z"},"children":[]}]};exports.ic_perm_phone_msg_twotone=ic_perm_phone_msg_twotone;var ic_perm_scan_wifi={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 3C6.95 3 3.15 4.85 0 7.23L12 22 24 7.25C20.85 4.87 17.05 3 12 3zm1 13h-2v-6h2v6zm-2-8V6h2v2h-2z"},"children":[]}]};exports.ic_perm_scan_wifi=ic_perm_scan_wifi;var ic_perm_scan_wifi_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 3C6.95 3 3.15 4.85 0 7.23L12 22 24 7.25C20.85 4.87 17.05 3 12 3zM2.92 7.65C5.8 5.85 8.74 5 12 5c3.25 0 6.18.85 9.08 2.67L12 18.83 2.92 7.65zM11 10h2v6h-2zm0-4h2v2h-2z"},"children":[]}]};exports.ic_perm_scan_wifi_outline=ic_perm_scan_wifi_outline;var ic_perm_scan_wifi_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 5c-3.26 0-6.2.85-9.08 2.65L12 18.83l9.08-11.16C18.18 5.85 15.25 5 12 5zm1 11h-2v-6h2v6zm-2-8V6h2v2h-2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 3C6.95 3 3.15 4.85 0 7.23L12 22 24 7.25C20.85 4.87 17.05 3 12 3zM2.92 7.65C5.8 5.85 8.74 5 12 5c3.25 0 6.18.85 9.08 2.67L12 18.83 2.92 7.65zM11 10h2v6h-2zm0-4h2v2h-2z"},"children":[]}]};exports.ic_perm_scan_wifi_twotone=ic_perm_scan_wifi_twotone;var ic_pets={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"4.5","cy":"9.5","r":"2.5"},"children":[]},{"name":"circle","attribs":{"cx":"9","cy":"5.5","r":"2.5"},"children":[]},{"name":"circle","attribs":{"cx":"15","cy":"5.5","r":"2.5"},"children":[]},{"name":"circle","attribs":{"cx":"19.5","cy":"9.5","r":"2.5"},"children":[]},{"name":"path","attribs":{"d":"M17.34 14.86c-.87-1.02-1.6-1.89-2.48-2.91-.46-.54-1.05-1.08-1.75-1.32-.11-.04-.22-.07-.33-.09-.25-.04-.52-.04-.78-.04s-.53 0-.79.05c-.11.02-.22.05-.33.09-.7.24-1.28.78-1.75 1.32-.87 1.02-1.6 1.89-2.48 2.91-1.31 1.31-2.92 2.76-2.62 4.79.29 1.02 1.02 2.03 2.33 2.32.73.15 3.06-.44 5.54-.44h.18c2.48 0 4.81.58 5.54.44 1.31-.29 2.04-1.31 2.33-2.32.31-2.04-1.3-3.49-2.61-4.8z"},"children":[]}]};exports.ic_pets=ic_pets;var ic_pets_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"4.5","cy":"9.5","r":"2.5"},"children":[]},{"name":"circle","attribs":{"cx":"9","cy":"5.5","r":"2.5"},"children":[]},{"name":"circle","attribs":{"cx":"15","cy":"5.5","r":"2.5"},"children":[]},{"name":"circle","attribs":{"cx":"19.5","cy":"9.5","r":"2.5"},"children":[]},{"name":"path","attribs":{"d":"M17.34 14.86c-.87-1.02-1.6-1.89-2.48-2.91-.46-.54-1.05-1.08-1.75-1.32-.11-.04-.22-.07-.33-.09-.25-.04-.52-.04-.78-.04s-.53 0-.79.05c-.11.02-.22.05-.33.09-.7.24-1.28.78-1.75 1.32-.87 1.02-1.6 1.89-2.48 2.91-1.31 1.31-2.92 2.76-2.62 4.79.29 1.02 1.02 2.03 2.33 2.32.73.15 3.06-.44 5.54-.44h.18c2.48 0 4.81.58 5.54.44 1.31-.29 2.04-1.31 2.33-2.32.31-2.04-1.3-3.49-2.61-4.8z"},"children":[]}]};exports.ic_pets_outline=ic_pets_outline;var ic_pets_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"4.5","cy":"9.5","r":"2.5"},"children":[]},{"name":"circle","attribs":{"cx":"9","cy":"5.5","r":"2.5"},"children":[]},{"name":"circle","attribs":{"cx":"15","cy":"5.5","r":"2.5"},"children":[]},{"name":"circle","attribs":{"cx":"19.5","cy":"9.5","r":"2.5"},"children":[]},{"name":"path","attribs":{"d":"M17.34 14.86c-.87-1.02-1.6-1.89-2.48-2.91-.46-.54-1.05-1.08-1.75-1.32-.11-.04-.22-.07-.33-.09-.25-.04-.52-.04-.78-.04s-.53 0-.79.05c-.11.02-.22.05-.33.09-.7.24-1.28.78-1.75 1.32-.87 1.02-1.6 1.89-2.48 2.91-1.31 1.31-2.92 2.76-2.62 4.79.29 1.02 1.02 2.03 2.33 2.32.73.15 3.06-.44 5.54-.44h.18c2.48 0 4.81.58 5.54.44 1.31-.29 2.04-1.31 2.33-2.32.31-2.04-1.3-3.49-2.61-4.8z"},"children":[]}]};exports.ic_pets_twotone=ic_pets_twotone;var ic_picture_in_picture={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 7h-8v6h8V7zm2-4H3c-1.1 0-2 .9-2 2v14c0 1.1.9 1.98 2 1.98h18c1.1 0 2-.88 2-1.98V5c0-1.1-.9-2-2-2zm0 16.01H3V4.98h18v14.03z"},"children":[]}]};exports.ic_picture_in_picture=ic_picture_in_picture;var ic_picture_in_picture_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 7h-8v6h8V7zm-2 4h-4V9h4v2zm4-8H3c-1.1 0-2 .9-2 2v14c0 1.1.9 1.98 2 1.98h18c1.1 0 2-.88 2-1.98V5c0-1.1-.9-2-2-2zm0 16.01H3V4.98h18v14.03z"},"children":[]}]};exports.ic_picture_in_picture_outline=ic_picture_in_picture_outline;var ic_picture_in_picture_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 7h-8v6h8V7zm-2 4h-4V9h4v2z"},"children":[]},{"name":"path","attribs":{"d":"M13 9h4v2h-4z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 1.98 2 1.98h18c1.1 0 2-.88 2-1.98V5c0-1.1-.9-2-2-2zm0 16.01H3V4.98h18v14.03z"},"children":[]}]};exports.ic_picture_in_picture_twotone=ic_picture_in_picture_twotone;var ic_picture_in_picture_alt={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 11h-8v6h8v-6zm4 8V4.98C23 3.88 22.1 3 21 3H3c-1.1 0-2 .88-2 1.98V19c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2zm-2 .02H3V4.97h18v14.05z"},"children":[]}]};exports.ic_picture_in_picture_alt=ic_picture_in_picture_alt;var ic_picture_in_picture_alt_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 11h-8v6h8v-6zm-2 4h-4v-2h4v2zm4-12H3c-1.1 0-2 .88-2 1.98V19c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V4.98C23 3.88 22.1 3 21 3zm0 16.02H3V4.97h18v14.05z"},"children":[]}]};exports.ic_picture_in_picture_alt_outline=ic_picture_in_picture_alt_outline;var ic_picture_in_picture_alt_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 11h-8v6h8v-6zm-2 4h-4v-2h4v2zm4-12H3c-1.1 0-2 .88-2 1.98V19c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V4.98C23 3.88 22.1 3 21 3zm0 16.02H3V4.97h18v14.05z"},"children":[]},{"name":"path","attribs":{"d":"M13 13h4v2h-4z","opacity":".3"},"children":[]}]};exports.ic_picture_in_picture_alt_twotone=ic_picture_in_picture_alt_twotone;var ic_plagiarism={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M14,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.89,2,1.99,2H18c1.1,0,2-0.9,2-2V8L14,2z M15.04,19.45l-1.88-1.88 c-1.33,0.71-3.01,0.53-4.13-0.59c-1.37-1.37-1.37-3.58,0-4.95c1.37-1.37,3.58-1.37,4.95,0c1.12,1.12,1.31,2.8,0.59,4.13l1.88,1.88 L15.04,19.45z M13,9V3.5L18.5,9H13z"},"children":[{"name":"path","attribs":{"d":"M14,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.89,2,1.99,2H18c1.1,0,2-0.9,2-2V8L14,2z M15.04,19.45l-1.88-1.88 c-1.33,0.71-3.01,0.53-4.13-0.59c-1.37-1.37-1.37-3.58,0-4.95c1.37-1.37,3.58-1.37,4.95,0c1.12,1.12,1.31,2.8,0.59,4.13l1.88,1.88 L15.04,19.45z M13,9V3.5L18.5,9H13z"},"children":[]}]},{"name":"circle","attribs":{"cx":"11.5","cy":"14.5","r":"1.5"},"children":[{"name":"circle","attribs":{"cx":"11.5","cy":"14.5","r":"1.5"},"children":[]}]}]}]}]}]};exports.ic_plagiarism=ic_plagiarism;var ic_plagiarism_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M14,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.89,2,1.99,2H18c1.1,0,2-0.9,2-2V8L14,2z M18,20L6,20V4h7v5h5V20z"},"children":[{"name":"path","attribs":{"d":"M14,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.89,2,1.99,2H18c1.1,0,2-0.9,2-2V8L14,2z M18,20L6,20V4h7v5h5V20z"},"children":[]}]},{"name":"path","attribs":{"d":"M9.03,11.03c-1.37,1.37-1.37,3.58,0,4.95c1.12,1.12,2.8,1.31,4.13,0.59l1.88,1.88l1.41-1.41l-1.88-1.88 c0.71-1.33,0.53-3.01-0.59-4.13C12.61,9.66,10.39,9.66,9.03,11.03z M12.56,14.56c-0.59,0.59-1.54,0.59-2.12,0 c-0.59-0.59-0.59-1.54,0-2.12c0.59-0.59,1.54-0.59,2.12,0C13.15,13.03,13.15,13.97,12.56,14.56z"},"children":[{"name":"path","attribs":{"d":"M9.03,11.03c-1.37,1.37-1.37,3.58,0,4.95c1.12,1.12,2.8,1.31,4.13,0.59l1.88,1.88l1.41-1.41l-1.88-1.88 c0.71-1.33,0.53-3.01-0.59-4.13C12.61,9.66,10.39,9.66,9.03,11.03z M12.56,14.56c-0.59,0.59-1.54,0.59-2.12,0 c-0.59-0.59-0.59-1.54,0-2.12c0.59-0.59,1.54-0.59,2.12,0C13.15,13.03,13.15,13.97,12.56,14.56z"},"children":[]}]}]}]}]}]};exports.ic_plagiarism_outline=ic_plagiarism_outline;var ic_plagiarism_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M13,4H6v16l12,0V9h-5V4z M13.97,11.03c1.12,1.12,1.31,2.8,0.59,4.13l1.88,1.88l-1.41,1.41l-1.88-1.88 c-1.33,0.71-3.01,0.53-4.13-0.59c-1.37-1.37-1.37-3.58,0-4.95C10.39,9.66,12.61,9.66,13.97,11.03z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M13,4H6v16l12,0V9h-5V4z M13.97,11.03c1.12,1.12,1.31,2.8,0.59,4.13l1.88,1.88l-1.41,1.41l-1.88-1.88 c-1.33,0.71-3.01,0.53-4.13-0.59c-1.37-1.37-1.37-3.58,0-4.95C10.39,9.66,12.61,9.66,13.97,11.03z","opacity":".3"},"children":[]}]},{"name":"circle","attribs":{"cx":"11.5","cy":"13.5","opacity":".3","r":"1.5"},"children":[{"name":"circle","attribs":{"cx":"11.5","cy":"13.5","opacity":".3","r":"1.5"},"children":[]}]},{"name":"path","attribs":{"d":"M14,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.89,2,1.99,2H18c1.1,0,2-0.9,2-2V8L14,2z M18,20L6,20V4h7v5h5V20z"},"children":[{"name":"path","attribs":{"d":"M14,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.89,2,1.99,2H18c1.1,0,2-0.9,2-2V8L14,2z M18,20L6,20V4h7v5h5V20z"},"children":[]}]},{"name":"path","attribs":{"d":"M9.03,11.03c-1.37,1.37-1.37,3.58,0,4.95c1.12,1.12,2.8,1.31,4.13,0.59l1.88,1.88l1.41-1.41l-1.88-1.88 c0.71-1.33,0.53-3.01-0.59-4.13C12.61,9.66,10.39,9.66,9.03,11.03z M12.56,14.56c-0.59,0.59-1.54,0.59-2.12,0 c-0.59-0.59-0.59-1.54,0-2.12c0.59-0.59,1.54-0.59,2.12,0C13.15,13.03,13.15,13.97,12.56,14.56z"},"children":[{"name":"path","attribs":{"d":"M9.03,11.03c-1.37,1.37-1.37,3.58,0,4.95c1.12,1.12,2.8,1.31,4.13,0.59l1.88,1.88l1.41-1.41l-1.88-1.88 c0.71-1.33,0.53-3.01-0.59-4.13C12.61,9.66,10.39,9.66,9.03,11.03z M12.56,14.56c-0.59,0.59-1.54,0.59-2.12,0 c-0.59-0.59-0.59-1.54,0-2.12c0.59-0.59,1.54-0.59,2.12,0C13.15,13.03,13.15,13.97,12.56,14.56z"},"children":[]}]}]}]}]}]};exports.ic_plagiarism_twotone=ic_plagiarism_twotone;var ic_play_for_work={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11 5v5.59H7.5l4.5 4.5 4.5-4.5H13V5h-2zm-5 9c0 3.31 2.69 6 6 6s6-2.69 6-6h-2c0 2.21-1.79 4-4 4s-4-1.79-4-4H6z"},"children":[]}]};exports.ic_play_for_work=ic_play_for_work;var ic_play_for_work_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11 5v5.59H7.5l4.5 4.5 4.5-4.5H13V5h-2zm-5 9c0 3.31 2.69 6 6 6s6-2.69 6-6h-2c0 2.21-1.79 4-4 4s-4-1.79-4-4H6z"},"children":[]}]};exports.ic_play_for_work_outline=ic_play_for_work_outline;var ic_play_for_work_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11 5v5.59H7.5l4.5 4.5 4.5-4.5H13V5h-2zm-5 9c0 3.31 2.69 6 6 6s6-2.69 6-6h-2c0 2.21-1.79 4-4 4s-4-1.79-4-4H6z"},"children":[]}]};exports.ic_play_for_work_twotone=ic_play_for_work_twotone;var ic_polymer={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 4h-4L7.11 16.63 4.5 12 9 4H5L.5 12 5 20h4l7.89-12.63L19.5 12 15 20h4l4.5-8z"},"children":[]}]};exports.ic_polymer=ic_polymer;var ic_polymer_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 4h-4L7.11 16.63 4.5 12 9 4H5L.5 12 5 20h4l7.89-12.63L19.5 12 15 20h4l4.5-8L19 4z"},"children":[]}]};exports.ic_polymer_outline=ic_polymer_outline;var ic_polymer_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 4h-4L7.11 16.63 4.5 12 9 4H5L.5 12 5 20h4l7.89-12.63L19.5 12 15 20h4l4.5-8L19 4z"},"children":[]}]};exports.ic_polymer_twotone=ic_polymer_twotone;var ic_power_settings_new={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13 3h-2v10h2V3zm4.83 2.17l-1.42 1.42C17.99 7.86 19 9.81 19 12c0 3.87-3.13 7-7 7s-7-3.13-7-7c0-2.19 1.01-4.14 2.58-5.42L6.17 5.17C4.23 6.82 3 9.26 3 12c0 4.97 4.03 9 9 9s9-4.03 9-9c0-2.74-1.23-5.18-3.17-6.83z"},"children":[]}]};exports.ic_power_settings_new=ic_power_settings_new;var ic_power_settings_new_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13 3h-2v10h2V3zm4.83 2.17l-1.42 1.42C17.99 7.86 19 9.81 19 12c0 3.87-3.13 7-7 7s-7-3.13-7-7c0-2.19 1.01-4.14 2.58-5.42L6.17 5.17C4.23 6.82 3 9.26 3 12c0 4.97 4.03 9 9 9s9-4.03 9-9c0-2.74-1.23-5.18-3.17-6.83z"},"children":[]}]};exports.ic_power_settings_new_outline=ic_power_settings_new_outline;var ic_power_settings_new_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13 3h-2v10h2V3zm4.83 2.17l-1.42 1.42C17.99 7.86 19 9.81 19 12c0 3.87-3.13 7-7 7s-7-3.13-7-7c0-2.19 1.01-4.14 2.58-5.42L6.17 5.17C4.23 6.82 3 9.26 3 12c0 4.97 4.03 9 9 9s9-4.03 9-9c0-2.74-1.23-5.18-3.17-6.83z"},"children":[]}]};exports.ic_power_settings_new_twotone=ic_power_settings_new_twotone;var ic_pregnant_woman={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M9,4c0-1.11,0.89-2,2-2s2,0.89,2,2s-0.89,2-2,2S9,5.11,9,4z M16,13c-0.01-1.34-0.83-2.51-2-3c0-1.66-1.34-3-3-3 s-3,1.34-3,3v7h2v5h3v-5h3V13z"},"children":[{"name":"path","attribs":{"d":"M9,4c0-1.11,0.89-2,2-2s2,0.89,2,2s-0.89,2-2,2S9,5.11,9,4z M16,13c-0.01-1.34-0.83-2.51-2-3c0-1.66-1.34-3-3-3 s-3,1.34-3,3v7h2v5h3v-5h3V13z"},"children":[]}]}]}]}]}]}]}]};exports.ic_pregnant_woman=ic_pregnant_woman;var ic_pregnant_woman_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9 4c0-1.11.89-2 2-2s2 .89 2 2-.89 2-2 2-2-.89-2-2zm7 9c-.01-1.34-.83-2.51-2-3 0-1.66-1.34-3-3-3s-3 1.34-3 3v7h2v5h3v-5h3v-4z"},"children":[]}]};exports.ic_pregnant_woman_outline=ic_pregnant_woman_outline;var ic_pregnant_woman_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9 4c0-1.11.89-2 2-2s2 .89 2 2-.89 2-2 2-2-.89-2-2zm7 9c-.01-1.34-.83-2.51-2-3 0-1.66-1.34-3-3-3s-3 1.34-3 3v7h2v5h3v-5h3v-4z"},"children":[]}]};exports.ic_pregnant_woman_twotone=ic_pregnant_woman_twotone;var ic_preview={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M19,3H5C3.89,3,3,3.9,3,5v14c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.11,3,19,3z M19,19H5V7h14V19z M13.5,13 c0,0.83-0.67,1.5-1.5,1.5s-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5S13.5,12.17,13.5,13z M12,9c-2.73,0-5.06,1.66-6,4 c0.94,2.34,3.27,4,6,4s5.06-1.66,6-4C17.06,10.66,14.73,9,12,9z M12,15.5c-1.38,0-2.5-1.12-2.5-2.5c0-1.38,1.12-2.5,2.5-2.5 c1.38,0,2.5,1.12,2.5,2.5C14.5,14.38,13.38,15.5,12,15.5z"},"children":[{"name":"path","attribs":{"d":"M19,3H5C3.89,3,3,3.9,3,5v14c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.11,3,19,3z M19,19H5V7h14V19z M13.5,13 c0,0.83-0.67,1.5-1.5,1.5s-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5S13.5,12.17,13.5,13z M12,9c-2.73,0-5.06,1.66-6,4 c0.94,2.34,3.27,4,6,4s5.06-1.66,6-4C17.06,10.66,14.73,9,12,9z M12,15.5c-1.38,0-2.5-1.12-2.5-2.5c0-1.38,1.12-2.5,2.5-2.5 c1.38,0,2.5,1.12,2.5,2.5C14.5,14.38,13.38,15.5,12,15.5z"},"children":[]}]}]}]};exports.ic_preview=ic_preview;var ic_preview_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M19,3H5C3.89,3,3,3.9,3,5v14c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.11,3,19,3z M19,19H5V7h14V19z M12,10.5 c1.84,0,3.48,0.96,4.34,2.5c-0.86,1.54-2.5,2.5-4.34,2.5S8.52,14.54,7.66,13C8.52,11.46,10.16,10.5,12,10.5 M12,9 c-2.73,0-5.06,1.66-6,4c0.94,2.34,3.27,4,6,4s5.06-1.66,6-4C17.06,10.66,14.73,9,12,9L12,9z M12,14.5c-0.83,0-1.5-0.67-1.5-1.5 s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S12.83,14.5,12,14.5z"},"children":[{"name":"path","attribs":{"d":"M19,3H5C3.89,3,3,3.9,3,5v14c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.11,3,19,3z M19,19H5V7h14V19z M12,10.5 c1.84,0,3.48,0.96,4.34,2.5c-0.86,1.54-2.5,2.5-4.34,2.5S8.52,14.54,7.66,13C8.52,11.46,10.16,10.5,12,10.5 M12,9 c-2.73,0-5.06,1.66-6,4c0.94,2.34,3.27,4,6,4s5.06-1.66,6-4C17.06,10.66,14.73,9,12,9L12,9z M12,14.5c-0.83,0-1.5-0.67-1.5-1.5 s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S12.83,14.5,12,14.5z"},"children":[]}]}]}]};exports.ic_preview_outline=ic_preview_outline;var ic_preview_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M19,19H5V7h14V19z M12,10.5c1.84,0,3.48,0.96,4.34,2.5c-0.86,1.54-2.5,2.5-4.34,2.5S8.52,14.54,7.66,13 C8.52,11.46,10.16,10.5,12,10.5 M12,9c-2.73,0-5.06,1.66-6,4c0.94,2.34,3.27,4,6,4s5.06-1.66,6-4C17.06,10.66,14.73,9,12,9L12,9z M12,14.5c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S12.83,14.5,12,14.5z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M19,19H5V7h14V19z M12,10.5c1.84,0,3.48,0.96,4.34,2.5c-0.86,1.54-2.5,2.5-4.34,2.5S8.52,14.54,7.66,13 C8.52,11.46,10.16,10.5,12,10.5 M12,9c-2.73,0-5.06,1.66-6,4c0.94,2.34,3.27,4,6,4s5.06-1.66,6-4C17.06,10.66,14.73,9,12,9L12,9z M12,14.5c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S12.83,14.5,12,14.5z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M19,3H5C3.89,3,3,3.9,3,5v14c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.11,3,19,3z M19,19H5V7h14V19z M12,10.5 c1.84,0,3.48,0.96,4.34,2.5c-0.86,1.54-2.5,2.5-4.34,2.5S8.52,14.54,7.66,13C8.52,11.46,10.16,10.5,12,10.5 M12,9 c-2.73,0-5.06,1.66-6,4c0.94,2.34,3.27,4,6,4s5.06-1.66,6-4C17.06,10.66,14.73,9,12,9L12,9z M12,14.5c-0.83,0-1.5-0.67-1.5-1.5 s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S12.83,14.5,12,14.5z"},"children":[{"name":"path","attribs":{"d":"M19,3H5C3.89,3,3,3.9,3,5v14c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.11,3,19,3z M19,19H5V7h14V19z M12,10.5 c1.84,0,3.48,0.96,4.34,2.5c-0.86,1.54-2.5,2.5-4.34,2.5S8.52,14.54,7.66,13C8.52,11.46,10.16,10.5,12,10.5 M12,9 c-2.73,0-5.06,1.66-6,4c0.94,2.34,3.27,4,6,4s5.06-1.66,6-4C17.06,10.66,14.73,9,12,9L12,9z M12,14.5c-0.83,0-1.5-0.67-1.5-1.5 s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S12.83,14.5,12,14.5z"},"children":[]}]}]}]};exports.ic_preview_twotone=ic_preview_twotone;var ic_print={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 8H5c-1.66 0-3 1.34-3 3v6h4v4h12v-4h4v-6c0-1.66-1.34-3-3-3zm-3 11H8v-5h8v5zm3-7c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-1-9H6v4h12V3z"},"children":[]}]};exports.ic_print=ic_print;var ic_print_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 8h-1V3H6v5H5c-1.66 0-3 1.34-3 3v6h4v4h12v-4h4v-6c0-1.66-1.34-3-3-3zM8 5h8v3H8V5zm8 12v2H8v-4h8v2zm2-2v-2H6v2H4v-4c0-.55.45-1 1-1h14c.55 0 1 .45 1 1v4h-2z"},"children":[]},{"name":"circle","attribs":{"cx":"18","cy":"11.5","r":"1"},"children":[]}]};exports.ic_print_outline=ic_print_outline;var ic_print_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8 5h8v3H8z","opacity":".3"},"children":[]},{"name":"circle","attribs":{"cx":"18","cy":"11.5","r":"1"},"children":[]},{"name":"path","attribs":{"d":"M19 8h-1V3H6v5H5c-1.66 0-3 1.34-3 3v6h4v4h12v-4h4v-6c0-1.66-1.34-3-3-3zM8 5h8v3H8V5zm8 14H8v-4h8v4zm4-4h-2v-2H6v2H4v-4c0-.55.45-1 1-1h14c.55 0 1 .45 1 1v4z"},"children":[]},{"name":"path","attribs":{"d":"M6 13h12v2h2v-4c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1v4h2v-2zm12-2.5c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z","opacity":".3"},"children":[]}]};exports.ic_print_twotone=ic_print_twotone;var ic_privacy_tip={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M12,1L3,5v6c0,5.55,3.84,10.74,9,12c5.16-1.26,9-6.45,9-12V5L12,1L12,1z M11,7h2v2h-2V7z M11,11h2v6h-2V11z"},"children":[{"name":"path","attribs":{"d":"M12,1L3,5v6c0,5.55,3.84,10.74,9,12c5.16-1.26,9-6.45,9-12V5L12,1L12,1z M11,7h2v2h-2V7z M11,11h2v6h-2V11z"},"children":[]}]}]}]};exports.ic_privacy_tip=ic_privacy_tip;var ic_privacy_tip_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M12,3.19l7,3.11V11c0,4.52-2.98,8.69-7,9.93C7.98,19.69,5,15.52,5,11V6.3L12,3.19 M12,1L3,5v6c0,5.55,3.84,10.74,9,12 c5.16-1.26,9-6.45,9-12V5L12,1L12,1z M11,7h2v2h-2V7z M11,11h2v6h-2V11z"},"children":[{"name":"path","attribs":{"d":"M12,3.19l7,3.11V11c0,4.52-2.98,8.69-7,9.93C7.98,19.69,5,15.52,5,11V6.3L12,3.19 M12,1L3,5v6c0,5.55,3.84,10.74,9,12 c5.16-1.26,9-6.45,9-12V5L12,1L12,1z M11,7h2v2h-2V7z M11,11h2v6h-2V11z"},"children":[]}]}]}]};exports.ic_privacy_tip_outline=ic_privacy_tip_outline;var ic_privacy_tip_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M12,3.19L5,6.3V11c0,4.52,2.98,8.69,7,9.93c4.02-1.23,7-5.41,7-9.93V6.3L12,3.19z M13,17h-2v-6h2V17z M13,9 h-2V7h2V9z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M12,3.19L5,6.3V11c0,4.52,2.98,8.69,7,9.93c4.02-1.23,7-5.41,7-9.93V6.3L12,3.19z M13,17h-2v-6h2V17z M13,9 h-2V7h2V9z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M12,3.19l7,3.11V11c0,4.52-2.98,8.69-7,9.93C7.98,19.69,5,15.52,5,11V6.3L12,3.19 M12,1L3,5v6c0,5.55,3.84,10.74,9,12 c5.16-1.26,9-6.45,9-12V5L12,1L12,1z M11,7h2v2h-2V7z M11,11h2v6h-2V11z"},"children":[{"name":"path","attribs":{"d":"M12,3.19l7,3.11V11c0,4.52-2.98,8.69-7,9.93C7.98,19.69,5,15.52,5,11V6.3L12,3.19 M12,1L3,5v6c0,5.55,3.84,10.74,9,12 c5.16-1.26,9-6.45,9-12V5L12,1L12,1z M11,7h2v2h-2V7z M11,11h2v6h-2V11z"},"children":[]}]}]}]};exports.ic_privacy_tip_twotone=ic_privacy_tip_twotone;var ic_published_with_changes={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M17.66,9.53l-7.07,7.07l-4.24-4.24l1.41-1.41l2.83,2.83l5.66-5.66L17.66,9.53z M4,12c0-2.33,1.02-4.42,2.62-5.88L9,8.5v-6H3 l2.2,2.2C3.24,6.52,2,9.11,2,12c0,5.19,3.95,9.45,9,9.95v-2.02C7.06,19.44,4,16.07,4,12z M22,12c0-5.19-3.95-9.45-9-9.95v2.02 c3.94,0.49,7,3.86,7,7.93c0,2.33-1.02,4.42-2.62,5.88L15,15.5v6h6l-2.2-2.2C20.76,17.48,22,14.89,22,12z"},"children":[]}]};exports.ic_published_with_changes=ic_published_with_changes;var ic_published_with_changes_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M18.6,19.5H21v2h-6v-6h2v2.73c1.83-1.47,3-3.71,3-6.23c0-4.07-3.06-7.44-7-7.93V2.05c5.05,0.5,9,4.76,9,9.95 C22,14.99,20.68,17.67,18.6,19.5z M4,12c0-2.52,1.17-4.77,3-6.23V8.5h2v-6H3v2h2.4C3.32,6.33,2,9.01,2,12c0,5.19,3.95,9.45,9,9.95 v-2.02C7.06,19.44,4,16.07,4,12z M16.24,8.11l-5.66,5.66l-2.83-2.83l-1.41,1.41l4.24,4.24l7.07-7.07L16.24,8.11z"},"children":[]}]};exports.ic_published_with_changes_outline=ic_published_with_changes_outline;var ic_published_with_changes_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M17.66,9.53l-7.07,7.07l-4.24-4.24l1.41-1.41l2.83,2.83l5.66-5.66L17.66,9.53z M4,12c0-2.33,1.02-4.42,2.62-5.88L9,8.5v-6H3 l2.2,2.2C3.24,6.52,2,9.11,2,12c0,5.19,3.95,9.45,9,9.95v-2.02C7.06,19.44,4,16.07,4,12z M22,12c0-5.19-3.95-9.45-9-9.95v2.02 c3.94,0.49,7,3.86,7,7.93c0,2.33-1.02,4.42-2.62,5.88L15,15.5v6h6l-2.2-2.2C20.76,17.48,22,14.89,22,12z"},"children":[]}]};exports.ic_published_with_changes_twotone=ic_published_with_changes_twotone;var ic_query_builder={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"},"children":[]},{"name":"path","attribs":{"d":"M12.5 7H11v6l5.25 3.15.75-1.23-4.5-2.67z"},"children":[]}]};exports.ic_query_builder=ic_query_builder;var ic_query_builder_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z"},"children":[]}]};exports.ic_query_builder_outline=ic_query_builder_outline;var ic_query_builder_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm4.25 12.15L11 13V7h1.5v5.25l4.5 2.67-.75 1.23z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z"},"children":[]}]};exports.ic_query_builder_twotone=ic_query_builder_twotone;var ic_question_answer={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 6h-2v9H6v2c0 .55.45 1 1 1h11l4 4V7c0-.55-.45-1-1-1zm-4 6V3c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v14l4-4h10c.55 0 1-.45 1-1z"},"children":[]}]};exports.ic_question_answer=ic_question_answer;var ic_question_answer_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15 4v7H5.17l-.59.59-.58.58V4h11m1-2H3c-.55 0-1 .45-1 1v14l4-4h10c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm5 4h-2v9H6v2c0 .55.45 1 1 1h11l4 4V7c0-.55-.45-1-1-1z"},"children":[]}]};exports.ic_question_answer_outline=ic_question_answer_outline;var ic_question_answer_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15 11V4H4v8.17l.59-.58.58-.59H6z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M21 6h-2v9H6v2c0 .55.45 1 1 1h11l4 4V7c0-.55-.45-1-1-1zm-5 7c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v14l4-4h10zM4.59 11.59l-.59.58V4h11v7H5.17l-.58.59z"},"children":[]}]};exports.ic_question_answer_twotone=ic_question_answer_twotone;var ic_quickreply={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M22,4c0-1.1-0.9-2-2-2H4C2.9,2,2.01,2.9,2.01,4L2,22l4-4h9v-8h7V4z"},"children":[{"name":"path","attribs":{"d":"M22,4c0-1.1-0.9-2-2-2H4C2.9,2,2.01,2.9,2.01,4L2,22l4-4h9v-8h7V4z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"22.5,16 20.3,16 22,12 17,12 17,18 19,18 19,23"},"children":[{"name":"polygon","attribs":{"points":"22.5,16 20.3,16 22,12 17,12 17,18 19,18 19,23"},"children":[]}]}]}]}]}]}]}]};exports.ic_quickreply=ic_quickreply;var ic_quickreply_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M4,17.17V4h16v6h2V4c0-1.1-0.9-2-2-2H4C2.9,2,2.01,2.9,2.01,4L2,22l4-4h9v-2H5.17L4,17.17z"},"children":[{"name":"path","attribs":{"d":"M4,17.17V4h16v6h2V4c0-1.1-0.9-2-2-2H4C2.9,2,2.01,2.9,2.01,4L2,22l4-4h9v-2H5.17L4,17.17z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"22.5,16 20.3,16 22,12 17,12 17,18 19,18 19,23"},"children":[{"name":"polygon","attribs":{"points":"22.5,16 20.3,16 22,12 17,12 17,18 19,18 19,23"},"children":[]}]}]}]}]}]}]}]};exports.ic_quickreply_outline=ic_quickreply_outline;var ic_quickreply_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{"opacity":".3"},"children":[{"name":"g","attribs":{"opacity":".3"},"children":[{"name":"polygon","attribs":{"points":"4,4 4,17.17 5.17,16 15,16 15,10 20,10 20,4"},"children":[{"name":"polygon","attribs":{"points":"4,4 4,17.17 5.17,16 15,16 15,10 20,10 20,4"},"children":[]}]}]}]},{"name":"path","attribs":{"d":"M5.17,16L4,17.17V4h16v6h2V4c0-1.1-0.9-2-2-2H4C2.9,2,2.01,2.9,2.01,4L2,22l4-4h9v-2H5.17z"},"children":[{"name":"path","attribs":{"d":"M5.17,16L4,17.17V4h16v6h2V4c0-1.1-0.9-2-2-2H4C2.9,2,2.01,2.9,2.01,4L2,22l4-4h9v-2H5.17z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"19,23 22.5,16 20.3,16 22,12 17,12 17,18 19,18"},"children":[{"name":"polygon","attribs":{"points":"19,23 22.5,16 20.3,16 22,12 17,12 17,18 19,18"},"children":[]}]}]}]}]}]}]}]};exports.ic_quickreply_twotone=ic_quickreply_twotone;var ic_receipt={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 17H6v-2h12v2zm0-4H6v-2h12v2zm0-4H6V7h12v2zM3 22l1.5-1.5L6 22l1.5-1.5L9 22l1.5-1.5L12 22l1.5-1.5L15 22l1.5-1.5L18 22l1.5-1.5L21 22V2l-1.5 1.5L18 2l-1.5 1.5L15 2l-1.5 1.5L12 2l-1.5 1.5L9 2 7.5 3.5 6 2 4.5 3.5 3 2v20z"},"children":[]}]};exports.ic_receipt=ic_receipt;var ic_receipt_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19.5 3.5L18 2l-1.5 1.5L15 2l-1.5 1.5L12 2l-1.5 1.5L9 2 7.5 3.5 6 2 4.5 3.5 3 2v20l1.5-1.5L6 22l1.5-1.5L9 22l1.5-1.5L12 22l1.5-1.5L15 22l1.5-1.5L18 22l1.5-1.5L21 22V2l-1.5 1.5zM19 19.09H5V4.91h14v14.18zM6 15h12v2H6zm0-4h12v2H6zm0-4h12v2H6z"},"children":[]}]};exports.ic_receipt_outline=ic_receipt_outline;var ic_receipt_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 19.09h14V4.91H5v14.18zM6 7h12v2H6V7zm0 4h12v2H6v-2zm0 4h12v2H6v-2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M19.5 3.5L18 2l-1.5 1.5L15 2l-1.5 1.5L12 2l-1.5 1.5L9 2 7.5 3.5 6 2 4.5 3.5 3 2v20l1.5-1.5L6 22l1.5-1.5L9 22l1.5-1.5L12 22l1.5-1.5L15 22l1.5-1.5L18 22l1.5-1.5L21 22V2l-1.5 1.5zM19 19.09H5V4.91h14v14.18zM6 15h12v2H6zm0-4h12v2H6zm0-4h12v2H6z"},"children":[]}]};exports.ic_receipt_twotone=ic_receipt_twotone;var ic_record_voice_over={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"9","cy":"9","r":"4"},"children":[]},{"name":"path","attribs":{"d":"M9 15c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4zm7.76-9.64l-1.68 1.69c.84 1.18.84 2.71 0 3.89l1.68 1.69c2.02-2.02 2.02-5.07 0-7.27zM20.07 2l-1.63 1.63c2.77 3.02 2.77 7.56 0 10.74L20.07 16c3.9-3.89 3.91-9.95 0-14z"},"children":[]}]};exports.ic_record_voice_over=ic_record_voice_over;var ic_record_voice_over_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9 13c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm0 8c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4zm-6 4c.22-.72 3.31-2 6-2 2.7 0 5.8 1.29 6 2H3zM15.08 7.05c.84 1.18.84 2.71 0 3.89l1.68 1.69c2.02-2.02 2.02-5.07 0-7.27l-1.68 1.69zM20.07 2l-1.63 1.63c2.77 3.02 2.77 7.56 0 10.74L20.07 16c3.9-3.89 3.91-9.95 0-14z"},"children":[]}]};exports.ic_record_voice_over_outline=ic_record_voice_over_outline;var ic_record_voice_over_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"g","attribs":{"opacity":".3"},"children":[{"name":"circle","attribs":{"cx":"9","cy":"9","r":"2"},"children":[{"name":"circle","attribs":{"cx":"9","cy":"9","r":"2"},"children":[]}]},{"name":"path","attribs":{"d":"M9 17c-2.69 0-5.77 1.28-6 2h12c-.2-.71-3.3-2-6-2z"},"children":[{"name":"path","attribs":{"d":"M9 17c-2.69 0-5.77 1.28-6 2h12c-.2-.71-3.3-2-6-2z"},"children":[]}]}]},{"name":"path","attribs":{"d":"M9 13c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm0 8c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4zm-6 4c.22-.72 3.31-2 6-2 2.7 0 5.8 1.29 6 2H3zM16.76 5.36l-1.68 1.69c.84 1.18.84 2.71 0 3.89l1.68 1.69c2.02-2.02 2.02-5.07 0-7.27zM20.07 2l-1.63 1.63c2.77 3.02 2.77 7.56 0 10.74L20.07 16c3.9-3.89 3.91-9.95 0-14z"},"children":[]}]};exports.ic_record_voice_over_twotone=ic_record_voice_over_twotone;var ic_redeem={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 6h-2.18c.11-.31.18-.65.18-1 0-1.66-1.34-3-3-3-1.05 0-1.96.54-2.5 1.35l-.5.67-.5-.68C10.96 2.54 10.05 2 9 2 7.34 2 6 3.34 6 5c0 .35.07.69.18 1H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-5-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm11 15H4v-2h16v2zm0-5H4V8h5.08L7 10.83 8.62 12 11 8.76l1-1.36 1 1.36L15.38 12 17 10.83 14.92 8H20v6z"},"children":[]}]};exports.ic_redeem=ic_redeem;var ic_redeem_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 6h-2.18c.11-.31.18-.65.18-1 0-1.66-1.34-3-3-3-1.05 0-1.96.54-2.5 1.35l-.5.67-.5-.68C10.96 2.54 10.05 2 9 2 7.34 2 6 3.34 6 5c0 .35.07.69.18 1H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-5-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm11 15H4v-2h16v2zm0-5H4V8h5.08L7 10.83 8.62 12 11 8.76l1-1.36 1 1.36L15.38 12 17 10.83 14.92 8H20v6z"},"children":[]}]};exports.ic_redeem_outline=ic_redeem_outline;var ic_redeem_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 17h16v2H4zm13-6.17L15.38 12 13 8.76 12 7.4l-1 1.36L8.62 12 7 10.83 9.08 8H4v6h16V8h-5.08z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 6h-2.18c.11-.31.18-.65.18-1 0-1.66-1.34-3-3-3-1.05 0-1.96.54-2.5 1.35l-.5.67-.5-.68C10.96 2.54 10.05 2 9 2 7.34 2 6 3.34 6 5c0 .35.07.69.18 1H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-5-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm11 15H4v-2h16v2zm0-5H4V8h5.08L7 10.83 8.62 12 11 8.76l1-1.36 1 1.36L15.38 12 17 10.83 14.92 8H20v6z"},"children":[]}]};exports.ic_redeem_twotone=ic_redeem_twotone;var ic_remove_done={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0zm0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M1.79 12l5.58 5.59L5.96 19 .37 13.41 1.79 12zm.45-7.78L12.9 14.89l-1.28 1.28L7.44 12l-1.41 1.41L11.62 19l2.69-2.69 4.89 4.89 1.41-1.41L3.65 2.81 2.24 4.22zm14.9 9.27L23.62 7 22.2 5.59l-6.48 6.48 1.42 1.42zM17.96 7l-1.41-1.41-3.65 3.66 1.41 1.41L17.96 7z"},"children":[]}]};exports.ic_remove_done=ic_remove_done;var ic_remove_shopping_cart={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22.73 22.73L2.77 2.77 2 2l-.73-.73L0 2.54l4.39 4.39 2.21 4.66-1.35 2.45c-.16.28-.25.61-.25.96 0 1.1.9 2 2 2h7.46l1.38 1.38c-.5.36-.83.95-.83 1.62 0 1.1.89 2 1.99 2 .67 0 1.26-.33 1.62-.84L21.46 24l1.27-1.27zM7.42 15c-.14 0-.25-.11-.25-.25l.03-.12.9-1.63h2.36l2 2H7.42zm8.13-2c.75 0 1.41-.41 1.75-1.03l3.58-6.49c.08-.14.12-.31.12-.48 0-.55-.45-1-1-1H6.54l9.01 9zM7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2z"},"children":[]}]};exports.ic_remove_shopping_cart=ic_remove_shopping_cart;var ic_remove_shopping_cart_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M1.41 1.13L0 2.54l4.39 4.39 2.21 4.66-1.35 2.45c-.16.28-.25.61-.25.96 0 1.1.9 2 2 2h7.46l1.38 1.38c-.5.36-.83.95-.83 1.62 0 1.1.89 2 1.99 2 .67 0 1.26-.33 1.62-.84L21.46 24l1.41-1.41L1.41 1.13zM7 15l1.1-2h2.36l2 2H7zM20 4H7.12l2 2h9.19l-2.76 5h-1.44l1.94 1.94c.54-.14.99-.49 1.25-.97l3.58-6.49C21.25 4.82 20.76 4 20 4zM7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2z"},"children":[]}]};exports.ic_remove_shopping_cart_outline=ic_remove_shopping_cart_outline;var ic_remove_shopping_cart_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M1.41 1.13L0 2.54l4.39 4.39 2.21 4.66-1.35 2.45c-.16.28-.25.61-.25.96 0 1.1.9 2 2 2h7.46l1.38 1.38c-.5.36-.83.95-.83 1.62 0 1.1.89 2 1.99 2 .67 0 1.26-.33 1.62-.84L21.46 24l1.41-1.41L1.41 1.13zM7 15l1.1-2h2.36l2 2H7z"},"children":[]},{"name":"path","attribs":{"d":"M18.31 6H9.12l4.99 5h1.44z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 4H7.12l2 2h9.19l-2.76 5h-1.44l1.94 1.94c.54-.14.99-.49 1.25-.97l3.58-6.49C21.25 4.82 20.76 4 20 4zM7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2z"},"children":[]}]};exports.ic_remove_shopping_cart_twotone=ic_remove_shopping_cart_twotone;var ic_reorder={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 15h18v-2H3v2zm0 4h18v-2H3v2zm0-8h18V9H3v2zm0-6v2h18V5H3z"},"children":[]}]};exports.ic_reorder=ic_reorder;var ic_reorder_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 15h18v-2H3v2zm0 4h18v-2H3v2zm0-8h18V9H3v2zm0-6v2h18V5H3z"},"children":[]}]};exports.ic_reorder_outline=ic_reorder_outline;var ic_reorder_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 15h18v-2H3v2zm0 4h18v-2H3v2zm0-8h18V9H3v2zm0-6v2h18V5H3z"},"children":[]}]};exports.ic_reorder_twotone=ic_reorder_twotone;var ic_report_problem={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M1 21h22L12 2 1 21zm12-3h-2v-2h2v2zm0-4h-2v-4h2v4z"},"children":[]}]};exports.ic_report_problem=ic_report_problem;var ic_report_problem_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 5.99L19.53 19H4.47L12 5.99M12 2L1 21h22L12 2zm1 14h-2v2h2v-2zm0-6h-2v4h2v-4z"},"children":[]}]};exports.ic_report_problem_outline=ic_report_problem_outline;var ic_report_problem_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 5.99L4.47 19h15.06L12 5.99zM13 18h-2v-2h2v2zm-2-4v-4h2v4h-2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 2L1 21h22L12 2zm0 3.99L19.53 19H4.47L12 5.99zM11 16h2v2h-2zm0-6h2v4h-2z"},"children":[]}]};exports.ic_report_problem_twotone=ic_report_problem_twotone;var ic_request_page={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M14,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8L14,2z M15,11h-4v1h3c0.55,0,1,0.45,1,1v3 c0,0.55-0.45,1-1,1h-1v1h-2v-1H9v-2h4v-1h-3c-0.55,0-1-0.45-1-1v-3c0-0.55,0.45-1,1-1h1V8h2v1h2V11z"},"children":[]}]};exports.ic_request_page=ic_request_page;var ic_request_page_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M13.17,4L18,8.83V20H6V4H13.17 M14,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8L14,2L14,2z M15,11h-4v1h3 c0.55,0,1,0.45,1,1v3c0,0.55-0.45,1-1,1h-1v1h-2v-1H9v-2h4v-1h-3c-0.55,0-1-0.45-1-1v-3c0-0.55,0.45-1,1-1h1V8h2v1h2V11z"},"children":[]}]};exports.ic_request_page_outline=ic_request_page_outline;var ic_request_page_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M13.17,4H6v16h12V8.83L13.17,4z M15,11h-4v1h3c0.55,0,1,0.45,1,1v3c0,0.55-0.45,1-1,1h-1v1h-2v-1H9v-2h4v-1 h-3c-0.55,0-1-0.45-1-1v-3c0-0.55,0.45-1,1-1h1V8h2v1h2V11z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M13.17,4L18,8.83V20H6V4H13.17 M14,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8L14,2L14,2z M15,11h-4v1h3 c0.55,0,1,0.45,1,1v3c0,0.55-0.45,1-1,1h-1v1h-2v-1H9v-2h4v-1h-3c-0.55,0-1-0.45-1-1v-3c0-0.55,0.45-1,1-1h1V8h2v1h2V11z"},"children":[]}]};exports.ic_request_page_twotone=ic_request_page_twotone;var ic_restore={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13 3c-4.97 0-9 4.03-9 9H1l3.89 3.89.07.14L9 12H6c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.93 0-3.68-.79-4.94-2.06l-1.42 1.42C8.27 19.99 10.51 21 13 21c4.97 0 9-4.03 9-9s-4.03-9-9-9zm-1 5v5l4.28 2.54.72-1.21-3.5-2.08V8H12z"},"children":[]}]};exports.ic_restore=ic_restore;var ic_restore_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13 3c-4.97 0-9 4.03-9 9H1l4 3.99L9 12H6c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.93 0-3.68-.79-4.94-2.06l-1.42 1.42C8.27 19.99 10.51 21 13 21c4.97 0 9-4.03 9-9s-4.03-9-9-9zm-1 5v5l4.25 2.52.77-1.28-3.52-2.09V8z"},"children":[]}]};exports.ic_restore_outline=ic_restore_outline;var ic_restore_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13 3c-4.97 0-9 4.03-9 9H1l4 3.99L9 12H6c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.93 0-3.68-.79-4.94-2.06l-1.42 1.42C8.27 19.99 10.51 21 13 21c4.97 0 9-4.03 9-9s-4.03-9-9-9zm-1 5v5l4.25 2.52.77-1.28-3.52-2.09V8z"},"children":[]}]};exports.ic_restore_twotone=ic_restore_twotone;var ic_restore_from_trash={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 4h-3.5l-1-1h-5l-1 1H5v2h14zM6 7v12c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6zm8 7v4h-4v-4H8l4-4 4 4h-2z"},"children":[]}]};exports.ic_restore_from_trash=ic_restore_from_trash;var ic_restore_from_trash_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.5 4l-1-1h-5l-1 1H5v2h14V4zM6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zm2-5V9h8v10H8v-5zm2 4h4v-4h2l-4-4-4 4h2z"},"children":[]}]};exports.ic_restore_from_trash_outline=ic_restore_from_trash_outline;var ic_restore_from_trash_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16 14h-2v4h-4v-4H8v5h8zm0 0V9H8v5l4-4z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zm2-5V9h8v10H8v-5zm7.5-10l-1-1h-5l-1 1H5v2h14V4zM10 18h4v-4h2l-4-4-4 4h2z"},"children":[]}]};exports.ic_restore_from_trash_twotone=ic_restore_from_trash_twotone;var ic_restore_page={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm-2 16c-2.05 0-3.81-1.24-4.58-3h1.71c.63.9 1.68 1.5 2.87 1.5 1.93 0 3.5-1.57 3.5-3.5S13.93 9.5 12 9.5c-1.35 0-2.52.78-3.1 1.9l1.6 1.6h-4V9l1.3 1.3C8.69 8.92 10.23 8 12 8c2.76 0 5 2.24 5 5s-2.24 5-5 5z"},"children":[]}]};exports.ic_restore_page=ic_restore_page;var ic_restore_page_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm4 18H6V4h7.17L18 8.83V20zm-9.55-9.43L7.28 9.4V13h3.6l-1.44-1.44c.52-1.01 1.58-1.71 2.79-1.71 1.74 0 3.15 1.41 3.15 3.15s-1.41 3.15-3.15 3.15c-1.07 0-2.02-.54-2.58-1.35H8.1c.69 1.58 2.28 2.7 4.12 2.7 2.48 0 4.5-2.02 4.5-4.5s-2.02-4.5-4.5-4.5c-1.59 0-2.97.83-3.77 2.07z"},"children":[]}]};exports.ic_restore_page_outline=ic_restore_page_outline;var ic_restore_page_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6 4v16h12V8.83L13.17 4H6zm10.72 9c0 2.48-2.02 4.5-4.5 4.5-1.84 0-3.43-1.12-4.12-2.7h1.54c.57.81 1.51 1.35 2.58 1.35 1.74 0 3.15-1.41 3.15-3.15s-1.41-3.15-3.15-3.15c-1.21 0-2.27.7-2.79 1.71L10.88 13h-3.6V9.4l1.17 1.17c.8-1.24 2.19-2.07 3.78-2.07 2.48 0 4.49 2.02 4.49 4.5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm4 18H6V4h7.17L18 8.83V20zm-9.55-9.43L7.28 9.4V13h3.6l-1.44-1.44c.52-1.01 1.58-1.71 2.79-1.71 1.74 0 3.15 1.41 3.15 3.15s-1.41 3.15-3.15 3.15c-1.07 0-2.02-.54-2.58-1.35H8.1c.69 1.58 2.28 2.7 4.12 2.7 2.48 0 4.5-2.02 4.5-4.5s-2.02-4.5-4.5-4.5c-1.59 0-2.97.83-3.77 2.07z"},"children":[]}]};exports.ic_restore_page_twotone=ic_restore_page_twotone;var ic_room={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z"},"children":[]}]};exports.ic_room=ic_room;var ic_room_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zM7 9c0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.88-2.88 7.19-5 9.88C9.92 16.21 7 11.85 7 9z"},"children":[]},{"name":"circle","attribs":{"cx":"12","cy":"9","r":"2.5"},"children":[]}]};exports.ic_room_outline=ic_room_outline;var ic_room_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 4C9.24 4 7 6.24 7 9c0 2.85 2.92 7.21 5 9.88 2.11-2.69 5-7 5-9.88 0-2.76-2.24-5-5-5zm0 7.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zM7 9c0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.88-2.88 7.19-5 9.88C9.92 16.21 7 11.85 7 9z"},"children":[]},{"name":"circle","attribs":{"cx":"12","cy":"9","r":"2.5"},"children":[]}]};exports.ic_room_twotone=ic_room_twotone;var ic_rounded_corner={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M19,19h2v2h-2V19z M19,17h2v-2h-2V17z M3,13h2v-2H3V13z M3,17h2v-2H3V17z M3,9h2V7H3V9z M3,5h2V3H3V5z M7,5h2V3H7V5z M15,21h2v-2h-2V21z M11,21h2v-2h-2V21z M15,21h2v-2h-2V21z M7,21h2v-2H7V21z M3,21h2v-2H3V21z M21,8c0-2.76-2.24-5-5-5h-5v2h5 c1.65,0,3,1.35,3,3v5h2V8z"},"children":[{"name":"path","attribs":{"d":"M19,19h2v2h-2V19z M19,17h2v-2h-2V17z M3,13h2v-2H3V13z M3,17h2v-2H3V17z M3,9h2V7H3V9z M3,5h2V3H3V5z M7,5h2V3H7V5z M15,21h2v-2h-2V21z M11,21h2v-2h-2V21z M15,21h2v-2h-2V21z M7,21h2v-2H7V21z M3,21h2v-2H3V21z M21,8c0-2.76-2.24-5-5-5h-5v2h5 c1.65,0,3,1.35,3,3v5h2V8z"},"children":[]}]}]}]}]}]}]}]};exports.ic_rounded_corner=ic_rounded_corner;var ic_rounded_corner_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 19h2v2h-2v-2zm0-2h2v-2h-2v2zM3 13h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm0-4h2V3H3v2zm4 0h2V3H7v2zm8 16h2v-2h-2v2zm-4 0h2v-2h-2v2zm4 0h2v-2h-2v2zm-8 0h2v-2H7v2zm-4 0h2v-2H3v2zM21 8c0-2.76-2.24-5-5-5h-5v2h5c1.65 0 3 1.35 3 3v5h2V8z"},"children":[]}]};exports.ic_rounded_corner_outline=ic_rounded_corner_outline;var ic_rounded_corner_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 19h2v2h-2v-2zm0-2h2v-2h-2v2zM3 13h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm0-4h2V3H3v2zm4 0h2V3H7v2zm8 16h2v-2h-2v2zm-4 0h2v-2h-2v2zm4 0h2v-2h-2v2zm-8 0h2v-2H7v2zm-4 0h2v-2H3v2zM21 8c0-2.76-2.24-5-5-5h-5v2h5c1.65 0 3 1.35 3 3v5h2V8z"},"children":[]}]};exports.ic_rounded_corner_twotone=ic_rounded_corner_twotone;var ic_rowing={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M8.5,14.5L4,19l1.5,1.5L9,17h2L8.5,14.5z M15,1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S16.1,1,15,1z M21,21.01L18,24 l-2.99-3.01V19.5l-7.1-7.09C7.6,12.46,7.3,12.48,7,12.48v-2.16c1.66,0.03,3.61-0.87,4.67-2.04l1.4-1.55 C13.42,6.34,14.06,6,14.72,6h0.03C15.99,6.01,17,7.02,17,8.26v5.75c0,0.84-0.35,1.61-0.92,2.16l-3.58-3.58v-2.27 c-0.63,0.52-1.43,1.02-2.29,1.39L16.5,18H18L21,21.01z"},"children":[{"name":"path","attribs":{"d":"M8.5,14.5L4,19l1.5,1.5L9,17h2L8.5,14.5z M15,1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S16.1,1,15,1z M21,21.01L18,24 l-2.99-3.01V19.5l-7.1-7.09C7.6,12.46,7.3,12.48,7,12.48v-2.16c1.66,0.03,3.61-0.87,4.67-2.04l1.4-1.55 C13.42,6.34,14.06,6,14.72,6h0.03C15.99,6.01,17,7.02,17,8.26v5.75c0,0.84-0.35,1.61-0.92,2.16l-3.58-3.58v-2.27 c-0.63,0.52-1.43,1.02-2.29,1.39L16.5,18H18L21,21.01z"},"children":[]}]}]}]}]}]}]}]};exports.ic_rowing=ic_rowing;var ic_rowing_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8.5 14.5L4 19l1.5 1.5L9 17h2l-2.5-2.5zM15 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 20.01L18 24l-2.99-3.01V19.5l-7.1-7.09c-.31.05-.61.07-.91.07v-2.16c1.66.03 3.61-.87 4.67-2.04l1.4-1.55c.19-.21.43-.38.69-.5.29-.14.62-.23.96-.23h.03C15.99 6.01 17 7.02 17 8.26v5.75c0 .84-.35 1.61-.92 2.16l-3.58-3.58v-2.27c-.63.52-1.43 1.02-2.29 1.39L16.5 18H18l3 3.01z"},"children":[]}]};exports.ic_rowing_outline=ic_rowing_outline;var ic_rowing_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8.5 14.5L4 19l1.5 1.5L9 17h2l-2.5-2.5zM15 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 20.01L18 24l-2.99-3.01V19.5l-7.1-7.09c-.31.05-.61.07-.91.07v-2.16c1.66.03 3.61-.87 4.67-2.04l1.4-1.55c.19-.21.43-.38.69-.5.29-.14.62-.23.96-.23h.03C15.99 6.01 17 7.02 17 8.26v5.75c0 .84-.35 1.61-.92 2.16l-3.58-3.58v-2.27c-.63.52-1.43 1.02-2.29 1.39L16.5 18H18l3 3.01z"},"children":[]}]};exports.ic_rowing_twotone=ic_rowing_twotone;var ic_rule={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M16.54,11L13,7.46l1.41-1.41l2.12,2.12l4.24-4.24l1.41,1.41L16.54,11z M11,7H2v2h9V7z M21,13.41L19.59,12L17,14.59 L14.41,12L13,13.41L15.59,16L13,18.59L14.41,20L17,17.41L19.59,20L21,18.59L18.41,16L21,13.41z M11,15H2v2h9V15z"},"children":[{"name":"path","attribs":{"d":"M16.54,11L13,7.46l1.41-1.41l2.12,2.12l4.24-4.24l1.41,1.41L16.54,11z M11,7H2v2h9V7z M21,13.41L19.59,12L17,14.59 L14.41,12L13,13.41L15.59,16L13,18.59L14.41,20L17,17.41L19.59,20L21,18.59L18.41,16L21,13.41z M11,15H2v2h9V15z"},"children":[]}]}]}]};exports.ic_rule=ic_rule;var ic_rule_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M16.54,11L13,7.46l1.41-1.41l2.12,2.12l4.24-4.24l1.41,1.41L16.54,11z M11,7H2v2h9V7z M21,13.41L19.59,12L17,14.59 L14.41,12L13,13.41L15.59,16L13,18.59L14.41,20L17,17.41L19.59,20L21,18.59L18.41,16L21,13.41z M11,15H2v2h9V15z"},"children":[{"name":"path","attribs":{"d":"M16.54,11L13,7.46l1.41-1.41l2.12,2.12l4.24-4.24l1.41,1.41L16.54,11z M11,7H2v2h9V7z M21,13.41L19.59,12L17,14.59 L14.41,12L13,13.41L15.59,16L13,18.59L14.41,20L17,17.41L19.59,20L21,18.59L18.41,16L21,13.41z M11,15H2v2h9V15z"},"children":[]}]}]}]};exports.ic_rule_outline=ic_rule_outline;var ic_rule_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M16.54,11L13,7.46l1.41-1.41l2.12,2.12l4.24-4.24l1.41,1.41L16.54,11z M11,7H2v2h9V7z M21,13.41L19.59,12L17,14.59 L14.41,12L13,13.41L15.59,16L13,18.59L14.41,20L17,17.41L19.59,20L21,18.59L18.41,16L21,13.41z M11,15H2v2h9V15z"},"children":[{"name":"path","attribs":{"d":"M16.54,11L13,7.46l1.41-1.41l2.12,2.12l4.24-4.24l1.41,1.41L16.54,11z M11,7H2v2h9V7z M21,13.41L19.59,12L17,14.59 L14.41,12L13,13.41L15.59,16L13,18.59L14.41,20L17,17.41L19.59,20L21,18.59L18.41,16L21,13.41z M11,15H2v2h9V15z"},"children":[]}]}]}]};exports.ic_rule_twotone=ic_rule_twotone;var ic_saved_search={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zm-2.17-1.5l2.14-1.53 2.14 1.53-.83-2.46 2.15-1.5h-2.62L9.47 6l-.84 2.54H6l2.14 1.49z"},"children":[]}]};exports.ic_saved_search=ic_saved_search;var ic_schedule={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"},"children":[]},{"name":"path","attribs":{"d":"M12.5 7H11v6l5.25 3.15.75-1.23-4.5-2.67z"},"children":[]}]};exports.ic_schedule=ic_schedule;var ic_schedule_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z"},"children":[]}]};exports.ic_schedule_outline=ic_schedule_outline;var ic_schedule_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm4.25 12.15L11 13V7h1.5v5.25l4.5 2.67-.75 1.23z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z"},"children":[]}]};exports.ic_schedule_twotone=ic_schedule_twotone;var ic_schedule_send={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16.5 12.5H15v4l3 2 .75-1.23-2.25-1.52V12.5zM16 9L2 3v7l9 2-9 2v7l7.27-3.11C10.09 20.83 12.79 23 16 23c3.86 0 7-3.14 7-7s-3.14-7-7-7zm0 12c-2.75 0-4.98-2.22-5-4.97v-.07c.02-2.74 2.25-4.97 5-4.97 2.76 0 5 2.24 5 5S18.76 21 16 21z"},"children":[]}]};exports.ic_schedule_send=ic_schedule_send;var ic_search={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"},"children":[]}]};exports.ic_search=ic_search;var ic_search_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"},"children":[]}]};exports.ic_search_outline=ic_search_outline;var ic_search_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"},"children":[]}]};exports.ic_search_twotone=ic_search_twotone;var ic_search_off={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M15.5,14h-0.79l-0.28-0.27C15.41,12.59,16,11.11,16,9.5C16,5.91,13.09,3,9.5,3C6.08,3,3.28,5.64,3.03,9h2.02 C5.3,6.75,7.18,5,9.5,5C11.99,5,14,7.01,14,9.5S11.99,14,9.5,14c-0.17,0-0.33-0.03-0.5-0.05v2.02C9.17,15.99,9.33,16,9.5,16 c1.61,0,3.09-0.59,4.23-1.57L14,14.71v0.79l5,4.99L20.49,19L15.5,14z"},"children":[{"name":"path","attribs":{"d":"M15.5,14h-0.79l-0.28-0.27C15.41,12.59,16,11.11,16,9.5C16,5.91,13.09,3,9.5,3C6.08,3,3.28,5.64,3.03,9h2.02 C5.3,6.75,7.18,5,9.5,5C11.99,5,14,7.01,14,9.5S11.99,14,9.5,14c-0.17,0-0.33-0.03-0.5-0.05v2.02C9.17,15.99,9.33,16,9.5,16 c1.61,0,3.09-0.59,4.23-1.57L14,14.71v0.79l5,4.99L20.49,19L15.5,14z"},"children":[]}]},{"name":"polygon","attribs":{"points":"6.47,10.82 4,13.29 1.53,10.82 0.82,11.53 3.29,14 0.82,16.47 1.53,17.18 4,14.71 6.47,17.18 7.18,16.47 4.71,14 7.18,11.53"},"children":[{"name":"polygon","attribs":{"points":"6.47,10.82 4,13.29 1.53,10.82 0.82,11.53 3.29,14 0.82,16.47 1.53,17.18 4,14.71 6.47,17.18 7.18,16.47 4.71,14 7.18,11.53"},"children":[]}]}]}]}]}]};exports.ic_search_off=ic_search_off;var ic_search_off_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M15.5,14h-0.79l-0.28-0.27C15.41,12.59,16,11.11,16,9.5C16,5.91,13.09,3,9.5,3C6.08,3,3.28,5.64,3.03,9h2.02 C5.3,6.75,7.18,5,9.5,5C11.99,5,14,7.01,14,9.5S11.99,14,9.5,14c-0.17,0-0.33-0.03-0.5-0.05v2.02C9.17,15.99,9.33,16,9.5,16 c1.61,0,3.09-0.59,4.23-1.57L14,14.71v0.79l5,4.99L20.49,19L15.5,14z"},"children":[{"name":"path","attribs":{"d":"M15.5,14h-0.79l-0.28-0.27C15.41,12.59,16,11.11,16,9.5C16,5.91,13.09,3,9.5,3C6.08,3,3.28,5.64,3.03,9h2.02 C5.3,6.75,7.18,5,9.5,5C11.99,5,14,7.01,14,9.5S11.99,14,9.5,14c-0.17,0-0.33-0.03-0.5-0.05v2.02C9.17,15.99,9.33,16,9.5,16 c1.61,0,3.09-0.59,4.23-1.57L14,14.71v0.79l5,4.99L20.49,19L15.5,14z"},"children":[]}]},{"name":"polygon","attribs":{"points":"6.47,10.82 4,13.29 1.53,10.82 0.82,11.53 3.29,14 0.82,16.47 1.53,17.18 4,14.71 6.47,17.18 7.18,16.47 4.71,14 7.18,11.53"},"children":[{"name":"polygon","attribs":{"points":"6.47,10.82 4,13.29 1.53,10.82 0.82,11.53 3.29,14 0.82,16.47 1.53,17.18 4,14.71 6.47,17.18 7.18,16.47 4.71,14 7.18,11.53"},"children":[]}]}]}]}]}]};exports.ic_search_off_outline=ic_search_off_outline;var ic_search_off_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M15.5,14h-0.79l-0.28-0.27C15.41,12.59,16,11.11,16,9.5C16,5.91,13.09,3,9.5,3C6.08,3,3.28,5.64,3.03,9h2.02 C5.3,6.75,7.18,5,9.5,5C11.99,5,14,7.01,14,9.5S11.99,14,9.5,14c-0.17,0-0.33-0.03-0.5-0.05v2.02C9.17,15.99,9.33,16,9.5,16 c1.61,0,3.09-0.59,4.23-1.57L14,14.71v0.79l5,4.99L20.49,19L15.5,14z"},"children":[{"name":"path","attribs":{"d":"M15.5,14h-0.79l-0.28-0.27C15.41,12.59,16,11.11,16,9.5C16,5.91,13.09,3,9.5,3C6.08,3,3.28,5.64,3.03,9h2.02 C5.3,6.75,7.18,5,9.5,5C11.99,5,14,7.01,14,9.5S11.99,14,9.5,14c-0.17,0-0.33-0.03-0.5-0.05v2.02C9.17,15.99,9.33,16,9.5,16 c1.61,0,3.09-0.59,4.23-1.57L14,14.71v0.79l5,4.99L20.49,19L15.5,14z"},"children":[]}]},{"name":"polygon","attribs":{"points":"6.47,10.82 4,13.29 1.53,10.82 0.82,11.53 3.29,14 0.82,16.47 1.53,17.18 4,14.71 6.47,17.18 7.18,16.47 4.71,14 7.18,11.53"},"children":[{"name":"polygon","attribs":{"points":"6.47,10.82 4,13.29 1.53,10.82 0.82,11.53 3.29,14 0.82,16.47 1.53,17.18 4,14.71 6.47,17.18 7.18,16.47 4.71,14 7.18,11.53"},"children":[]}]}]}]}]}]};exports.ic_search_off_twotone=ic_search_off_twotone;var ic_segment={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9 18h12v-2H9v2zM3 6v2h18V6H3zm6 7h12v-2H9v2z"},"children":[]}]};exports.ic_segment=ic_segment;var ic_send_and_archive={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 10h-3L2 3v7l9 2-9 2v7l8-3.5V21c0 1.1.9 2 2 2h9c1.1 0 2-.9 2-2v-9c0-1.1-.9-2-2-2zm0 11h-9v-9h9v9zm-4.5-1L13 16h2v-3h3v3h2l-3.5 4z"},"children":[]}]};exports.ic_send_and_archive=ic_send_and_archive;var ic_settings={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M0,0h24v24H0V0z","fill":"none"},"children":[{"name":"path","attribs":{"d":"M0,0h24v24H0V0z","fill":"none"},"children":[]}]},{"name":"path","attribs":{"d":"M19.14,12.94c0.04-0.3,0.06-0.61,0.06-0.94c0-0.32-0.02-0.64-0.07-0.94l2.03-1.58c0.18-0.14,0.23-0.41,0.12-0.61 l-1.92-3.32c-0.12-0.22-0.37-0.29-0.59-0.22l-2.39,0.96c-0.5-0.38-1.03-0.7-1.62-0.94L14.4,2.81c-0.04-0.24-0.24-0.41-0.48-0.41 h-3.84c-0.24,0-0.43,0.17-0.47,0.41L9.25,5.35C8.66,5.59,8.12,5.92,7.63,6.29L5.24,5.33c-0.22-0.08-0.47,0-0.59,0.22L2.74,8.87 C2.62,9.08,2.66,9.34,2.86,9.48l2.03,1.58C4.84,11.36,4.8,11.69,4.8,12s0.02,0.64,0.07,0.94l-2.03,1.58 c-0.18,0.14-0.23,0.41-0.12,0.61l1.92,3.32c0.12,0.22,0.37,0.29,0.59,0.22l2.39-0.96c0.5,0.38,1.03,0.7,1.62,0.94l0.36,2.54 c0.05,0.24,0.24,0.41,0.48,0.41h3.84c0.24,0,0.44-0.17,0.47-0.41l0.36-2.54c0.59-0.24,1.13-0.56,1.62-0.94l2.39,0.96 c0.22,0.08,0.47,0,0.59-0.22l1.92-3.32c0.12-0.22,0.07-0.47-0.12-0.61L19.14,12.94z M12,15.6c-1.98,0-3.6-1.62-3.6-3.6 s1.62-3.6,3.6-3.6s3.6,1.62,3.6,3.6S13.98,15.6,12,15.6z"},"children":[{"name":"path","attribs":{"d":"M19.14,12.94c0.04-0.3,0.06-0.61,0.06-0.94c0-0.32-0.02-0.64-0.07-0.94l2.03-1.58c0.18-0.14,0.23-0.41,0.12-0.61 l-1.92-3.32c-0.12-0.22-0.37-0.29-0.59-0.22l-2.39,0.96c-0.5-0.38-1.03-0.7-1.62-0.94L14.4,2.81c-0.04-0.24-0.24-0.41-0.48-0.41 h-3.84c-0.24,0-0.43,0.17-0.47,0.41L9.25,5.35C8.66,5.59,8.12,5.92,7.63,6.29L5.24,5.33c-0.22-0.08-0.47,0-0.59,0.22L2.74,8.87 C2.62,9.08,2.66,9.34,2.86,9.48l2.03,1.58C4.84,11.36,4.8,11.69,4.8,12s0.02,0.64,0.07,0.94l-2.03,1.58 c-0.18,0.14-0.23,0.41-0.12,0.61l1.92,3.32c0.12,0.22,0.37,0.29,0.59,0.22l2.39-0.96c0.5,0.38,1.03,0.7,1.62,0.94l0.36,2.54 c0.05,0.24,0.24,0.41,0.48,0.41h3.84c0.24,0,0.44-0.17,0.47-0.41l0.36-2.54c0.59-0.24,1.13-0.56,1.62-0.94l2.39,0.96 c0.22,0.08,0.47,0,0.59-0.22l1.92-3.32c0.12-0.22,0.07-0.47-0.12-0.61L19.14,12.94z M12,15.6c-1.98,0-3.6-1.62-3.6-3.6 s1.62-3.6,3.6-3.6s3.6,1.62,3.6,3.6S13.98,15.6,12,15.6z"},"children":[]}]}]}]};exports.ic_settings=ic_settings;var ic_settings_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19.43 12.98c.04-.32.07-.64.07-.98 0-.34-.03-.66-.07-.98l2.11-1.65c.19-.15.24-.42.12-.64l-2-3.46c-.09-.16-.26-.25-.44-.25-.06 0-.12.01-.17.03l-2.49 1c-.52-.4-1.08-.73-1.69-.98l-.38-2.65C14.46 2.18 14.25 2 14 2h-4c-.25 0-.46.18-.49.42l-.38 2.65c-.61.25-1.17.59-1.69.98l-2.49-1c-.06-.02-.12-.03-.18-.03-.17 0-.34.09-.43.25l-2 3.46c-.13.22-.07.49.12.64l2.11 1.65c-.04.32-.07.65-.07.98 0 .33.03.66.07.98l-2.11 1.65c-.19.15-.24.42-.12.64l2 3.46c.09.16.26.25.44.25.06 0 .12-.01.17-.03l2.49-1c.52.4 1.08.73 1.69.98l.38 2.65c.03.24.24.42.49.42h4c.25 0 .46-.18.49-.42l.38-2.65c.61-.25 1.17-.59 1.69-.98l2.49 1c.06.02.12.03.18.03.17 0 .34-.09.43-.25l2-3.46c.12-.22.07-.49-.12-.64l-2.11-1.65zm-1.98-1.71c.04.31.05.52.05.73 0 .21-.02.43-.05.73l-.14 1.13.89.7 1.08.84-.7 1.21-1.27-.51-1.04-.42-.9.68c-.43.32-.84.56-1.25.73l-1.06.43-.16 1.13-.2 1.35h-1.4l-.19-1.35-.16-1.13-1.06-.43c-.43-.18-.83-.41-1.23-.71l-.91-.7-1.06.43-1.27.51-.7-1.21 1.08-.84.89-.7-.14-1.13c-.03-.31-.05-.54-.05-.74s.02-.43.05-.73l.14-1.13-.89-.7-1.08-.84.7-1.21 1.27.51 1.04.42.9-.68c.43-.32.84-.56 1.25-.73l1.06-.43.16-1.13.2-1.35h1.39l.19 1.35.16 1.13 1.06.43c.43.18.83.41 1.23.71l.91.7 1.06-.43 1.27-.51.7 1.21-1.07.85-.89.7.14 1.13zM12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"},"children":[]}]};exports.ic_settings_outline=ic_settings_outline;var ic_settings_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19.28 8.6l-.7-1.21-1.27.51-1.06.43-.91-.7c-.39-.3-.8-.54-1.23-.71l-1.06-.43-.16-1.13L12.7 4h-1.4l-.19 1.35-.16 1.13-1.06.44c-.41.17-.82.41-1.25.73l-.9.68-1.05-.42-1.27-.52-.7 1.21 1.08.84.89.7-.14 1.13c-.03.3-.05.53-.05.73s.02.43.05.73l.14 1.13-.89.7-1.08.84.7 1.21 1.27-.51 1.06-.43.91.7c.39.3.8.54 1.23.71l1.06.43.16 1.13.19 1.36h1.39l.19-1.35.16-1.13 1.06-.43c.41-.17.82-.41 1.25-.73l.9-.68 1.04.42 1.27.51.7-1.21-1.08-.84-.89-.7.14-1.13c.04-.31.05-.52.05-.73 0-.21-.02-.43-.05-.73l-.14-1.13.89-.7 1.1-.84zM12 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M19.43 12.98c.04-.32.07-.64.07-.98 0-.34-.03-.66-.07-.98l2.11-1.65c.19-.15.24-.42.12-.64l-2-3.46c-.09-.16-.26-.25-.44-.25-.06 0-.12.01-.17.03l-2.49 1c-.52-.4-1.08-.73-1.69-.98l-.38-2.65C14.46 2.18 14.25 2 14 2h-4c-.25 0-.46.18-.49.42l-.38 2.65c-.61.25-1.17.59-1.69.98l-2.49-1c-.06-.02-.12-.03-.18-.03-.17 0-.34.09-.43.25l-2 3.46c-.13.22-.07.49.12.64l2.11 1.65c-.04.32-.07.65-.07.98s.03.66.07.98l-2.11 1.65c-.19.15-.24.42-.12.64l2 3.46c.09.16.26.25.44.25.06 0 .12-.01.17-.03l2.49-1c.52.4 1.08.73 1.69.98l.38 2.65c.03.24.24.42.49.42h4c.25 0 .46-.18.49-.42l.38-2.65c.61-.25 1.17-.59 1.69-.98l2.49 1c.06.02.12.03.18.03.17 0 .34-.09.43-.25l2-3.46c.12-.22.07-.49-.12-.64l-2.11-1.65zm-1.98-1.71c.04.31.05.52.05.73 0 .21-.02.43-.05.73l-.14 1.13.89.7 1.08.84-.7 1.21-1.27-.51-1.04-.42-.9.68c-.43.32-.84.56-1.25.73l-1.06.43-.16 1.13-.2 1.35h-1.4l-.19-1.35-.16-1.13-1.06-.43c-.43-.18-.83-.41-1.23-.71l-.91-.7-1.06.43-1.27.51-.7-1.21 1.08-.84.89-.7-.14-1.13c-.03-.31-.05-.54-.05-.74s.02-.43.05-.73l.14-1.13-.89-.7-1.08-.84.7-1.21 1.27.51 1.04.42.9-.68c.43-.32.84-.56 1.25-.73l1.06-.43.16-1.13.2-1.35h1.39l.19 1.35.16 1.13 1.06.43c.43.18.83.41 1.23.71l.91.7 1.06-.43 1.27-.51.7 1.21-1.07.85-.89.7.14 1.13zM12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"},"children":[]}]};exports.ic_settings_twotone=ic_settings_twotone;var ic_settings_applications={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm7-7H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.11 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm-1.75 9c0 .23-.02.46-.05.68l1.48 1.16c.13.11.17.3.08.45l-1.4 2.42c-.09.15-.27.21-.43.15l-1.74-.7c-.36.28-.76.51-1.18.69l-.26 1.85c-.03.17-.18.3-.35.3h-2.8c-.17 0-.32-.13-.35-.29l-.26-1.85c-.43-.18-.82-.41-1.18-.69l-1.74.7c-.16.06-.34 0-.43-.15l-1.4-2.42c-.09-.15-.05-.34.08-.45l1.48-1.16c-.03-.23-.05-.46-.05-.69 0-.23.02-.46.05-.68l-1.48-1.16c-.13-.11-.17-.3-.08-.45l1.4-2.42c.09-.15.27-.21.43-.15l1.74.7c.36-.28.76-.51 1.18-.69l.26-1.85c.03-.17.18-.3.35-.3h2.8c.17 0 .32.13.35.29l.26 1.85c.43.18.82.41 1.18.69l1.74-.7c.16-.06.34 0 .43.15l1.4 2.42c.09.15.05.34-.08.45l-1.48 1.16c.03.23.05.46.05.69z"},"children":[]}]};exports.ic_settings_applications=ic_settings_applications;var ic_settings_applications_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6.21 13.97l1.2 2.07c.08.13.23.18.37.13l1.49-.6c.31.24.64.44 1.01.59l.22 1.59c.03.14.15.25.3.25h2.4c.15 0 .27-.11.3-.26l.22-1.59c.36-.15.7-.35 1.01-.59l1.49.6c.14.05.29 0 .37-.13l1.2-2.07c.08-.13.04-.29-.07-.39l-1.27-.99c.03-.19.04-.39.04-.58 0-.2-.02-.39-.04-.59l1.27-.99c.11-.09.15-.26.07-.39l-1.2-2.07c-.08-.13-.23-.18-.37-.13l-1.49.6c-.31-.24-.64-.44-1.01-.59l-.22-1.59c-.03-.14-.15-.25-.3-.25h-2.4c-.15 0-.27.11-.3.26l-.22 1.59c-.36.15-.71.34-1.01.58l-1.49-.6c-.14-.05-.29 0-.37.13l-1.2 2.07c-.08.13-.04.29.07.39l1.27.99c-.03.2-.05.39-.05.59 0 .2.02.39.04.59l-1.27.99c-.11.1-.14.26-.06.39zM12 10.29c.94 0 1.71.77 1.71 1.71s-.77 1.71-1.71 1.71-1.71-.77-1.71-1.71.77-1.71 1.71-1.71zM19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.11 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm0 16H5V5h14v14z"},"children":[]}]};exports.ic_settings_applications_outline=ic_settings_applications_outline;var ic_settings_applications_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 19h14V5H5v14zm2.5-7c0-.2.02-.39.04-.58l-1.27-.99c-.11-.09-.15-.26-.07-.39l1.2-2.07c.08-.13.23-.18.37-.13l1.49.6c.31-.25.66-.44 1.02-.6l.22-1.59c.03-.14.15-.25.3-.25h2.4c.15 0 .27.11.3.25l.22 1.59c.37.15.7.35 1.01.59l1.49-.6c.14-.05.29 0 .37.13l1.2 2.07c.08.13.04.29-.07.39l-1.27.99c.03.2.04.39.04.59 0 .2-.02.39-.04.58l1.27.99c.11.09.15.26.07.39l-1.2 2.07c-.08.13-.23.18-.37.13l-1.49-.6c-.31.24-.65.44-1.01.59l-.22 1.59c-.03.15-.15.26-.3.26h-2.4c-.15 0-.27-.11-.3-.25l-.22-1.59c-.37-.15-.7-.35-1.01-.59l-1.49.6c-.14.05-.29 0-.37-.13l-1.2-2.07c-.08-.13-.04-.29.07-.39l1.27-.99c-.03-.2-.05-.39-.05-.59z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M6.21 13.97l1.2 2.07c.08.13.23.18.37.13l1.49-.6c.31.24.64.44 1.01.59l.22 1.59c.03.14.15.25.3.25h2.4c.15 0 .27-.11.3-.26l.22-1.59c.36-.15.7-.35 1.01-.59l1.49.6c.14.05.29 0 .37-.13l1.2-2.07c.08-.13.04-.29-.07-.39l-1.27-.99c.03-.19.04-.39.04-.58 0-.2-.02-.39-.04-.59l1.27-.99c.11-.09.15-.26.07-.39l-1.2-2.07c-.08-.13-.23-.18-.37-.13l-1.49.6c-.31-.24-.64-.44-1.01-.59l-.22-1.59c-.03-.14-.15-.25-.3-.25h-2.4c-.15 0-.27.11-.3.26l-.22 1.59c-.36.15-.71.34-1.01.58l-1.49-.6c-.14-.05-.29 0-.37.13l-1.2 2.07c-.08.13-.04.29.07.39l1.27.99c-.03.2-.05.39-.05.59 0 .2.02.39.04.59l-1.27.99c-.11.1-.14.26-.06.39zM12 10.29c.94 0 1.71.77 1.71 1.71s-.77 1.71-1.71 1.71-1.71-.77-1.71-1.71.77-1.71 1.71-1.71zM19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.11 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm0 16H5V5h14v14z"},"children":[]}]};exports.ic_settings_applications_twotone=ic_settings_applications_twotone;var ic_settings_backup_restore={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14 12c0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2 2-.9 2-2zm-2-9c-4.97 0-9 4.03-9 9H0l4 4 4-4H5c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.51 0-2.91-.49-4.06-1.3l-1.42 1.44C8.04 20.3 9.94 21 12 21c4.97 0 9-4.03 9-9s-4.03-9-9-9z"},"children":[]}]};exports.ic_settings_backup_restore=ic_settings_backup_restore;var ic_settings_backup_restore_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14 12c0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2 2-.9 2-2zm-2-9c-4.97 0-9 4.03-9 9H0l4 4 4-4H5c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.51 0-2.91-.49-4.06-1.3l-1.42 1.44C8.04 20.3 9.94 21 12 21c4.97 0 9-4.03 9-9s-4.03-9-9-9z"},"children":[]}]};exports.ic_settings_backup_restore_outline=ic_settings_backup_restore_outline;var ic_settings_backup_restore_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14 12c0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2 2-.9 2-2zm-2-9c-4.97 0-9 4.03-9 9H0l4 4 4-4H5c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.51 0-2.91-.49-4.06-1.3l-1.42 1.44C8.04 20.3 9.94 21 12 21c4.97 0 9-4.03 9-9s-4.03-9-9-9z"},"children":[]}]};exports.ic_settings_backup_restore_twotone=ic_settings_backup_restore_twotone;var ic_settings_bluetooth={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11 24h2v-2h-2v2zm-4 0h2v-2H7v2zm8 0h2v-2h-2v2zm2.71-18.29L12 0h-1v7.59L6.41 3 5 4.41 10.59 10 5 15.59 6.41 17 11 12.41V20h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 3.83l1.88 1.88L13 7.59V3.83zm1.88 10.46L13 16.17v-3.76l1.88 1.88z"},"children":[]}]};exports.ic_settings_bluetooth=ic_settings_bluetooth;var ic_settings_bluetooth_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11 24h2v-2h-2v2zm-4 0h2v-2H7v2zm8 0h2v-2h-2v2zm2.71-18.29L12 0h-1v7.59L6.41 3 5 4.41 10.59 10 5 15.59 6.41 17 11 12.41V20h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 3.83l1.88 1.88L13 7.59V3.83zm1.88 10.46L13 16.17v-3.76l1.88 1.88z"},"children":[]}]};exports.ic_settings_bluetooth_outline=ic_settings_bluetooth_outline;var ic_settings_bluetooth_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11 24h2v-2h-2v2zm-4 0h2v-2H7v2zm8 0h2v-2h-2v2zm2.71-18.29L12 0h-1v7.59L6.41 3 5 4.41 10.59 10 5 15.59 6.41 17 11 12.41V20h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 3.83l1.88 1.88L13 7.59V3.83zm1.88 10.46L13 16.17v-3.76l1.88 1.88z"},"children":[]}]};exports.ic_settings_bluetooth_twotone=ic_settings_bluetooth_twotone;var ic_settings_brightness={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02zM8 16h2.5l1.5 1.5 1.5-1.5H16v-2.5l1.5-1.5-1.5-1.5V8h-2.5L12 6.5 10.5 8H8v2.5L6.5 12 8 13.5V16zm4-7c1.66 0 3 1.34 3 3s-1.34 3-3 3V9z"},"children":[]}]};exports.ic_settings_brightness=ic_settings_brightness;var ic_settings_brightness_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02zM8 16h2.5l1.5 1.5 1.5-1.5H16v-2.5l1.5-1.5-1.5-1.5V8h-2.5L12 6.5 10.5 8H8v2.5L6.5 12 8 13.5V16zm4-7c1.66 0 3 1.34 3 3s-1.34 3-3 3V9z"},"children":[]}]};exports.ic_settings_brightness_outline=ic_settings_brightness_outline;var ic_settings_brightness_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 19.01h18V4.99H3v14.02zm5-8.51V8h2.5L12 6.5 13.5 8H16v2.5l1.5 1.5-1.5 1.5V16h-2.5L12 17.5 10.5 16H8v-2.5L6.5 12 8 10.5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M8 16h2.5l1.5 1.5 1.5-1.5H16v-2.5l1.5-1.5-1.5-1.5V8h-2.5L12 6.5 10.5 8H8v2.5L6.5 12 8 13.5V16zm4-7c1.66 0 3 1.34 3 3s-1.34 3-3 3V9zm9-6H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02z"},"children":[]}]};exports.ic_settings_brightness_twotone=ic_settings_brightness_twotone;var ic_settings_cell={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 24h2v-2H7v2zm4 0h2v-2h-2v2zm4 0h2v-2h-2v2zM16 .01L8 0C6.9 0 6 .9 6 2v16c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V2c0-1.1-.9-1.99-2-1.99zM16 16H8V4h8v12z"},"children":[]}]};exports.ic_settings_cell=ic_settings_cell;var ic_settings_cell_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 22h2v2H7zm4 0h2v2h-2zm4 0h2v2h-2zM16 .01L8 0C6.9 0 6 .9 6 2v16c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V2c0-1.1-.9-1.99-2-1.99zM16 18H8v-1h8v1zm0-3H8V5h8v10zm0-12H8V2h8v1z"},"children":[]}]};exports.ic_settings_cell_outline=ic_settings_cell_outline;var ic_settings_cell_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8 17h8v1H8zM8 2h8v1H8z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M7 22h2v2H7zm4 0h2v2h-2zm4 0h2v2h-2zM16 .01L8 0C6.9 0 6 .9 6 2v16c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V2c0-1.1-.9-1.99-2-1.99zM16 18H8v-1h8v1zm0-3H8V5h8v10zm0-12H8V2h8v1z"},"children":[]}]};exports.ic_settings_cell_twotone=ic_settings_cell_twotone;var ic_settings_ethernet={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7.77 6.76L6.23 5.48.82 12l5.41 6.52 1.54-1.28L3.42 12l4.35-5.24zM7 13h2v-2H7v2zm10-2h-2v2h2v-2zm-6 2h2v-2h-2v2zm6.77-7.52l-1.54 1.28L20.58 12l-4.35 5.24 1.54 1.28L23.18 12l-5.41-6.52z"},"children":[]}]};exports.ic_settings_ethernet=ic_settings_ethernet;var ic_settings_ethernet_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7.77 6.76L6.23 5.48.82 12l5.41 6.52 1.54-1.28L3.42 12l4.35-5.24zM7 13h2v-2H7v2zm10-2h-2v2h2v-2zm-6 2h2v-2h-2v2zm6.77-7.52l-1.54 1.28L20.58 12l-4.35 5.24 1.54 1.28L23.18 12l-5.41-6.52z"},"children":[]}]};exports.ic_settings_ethernet_outline=ic_settings_ethernet_outline;var ic_settings_ethernet_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7.77 6.76L6.23 5.48.82 12l5.41 6.52 1.54-1.28L3.42 12l4.35-5.24zM7 13h2v-2H7v2zm10-2h-2v2h2v-2zm-6 2h2v-2h-2v2zm6.77-7.52l-1.54 1.28L20.58 12l-4.35 5.24 1.54 1.28L23.18 12l-5.41-6.52z"},"children":[]}]};exports.ic_settings_ethernet_twotone=ic_settings_ethernet_twotone;var ic_settings_input_antenna={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 5c-3.87 0-7 3.13-7 7h2c0-2.76 2.24-5 5-5s5 2.24 5 5h2c0-3.87-3.13-7-7-7zm1 9.29c.88-.39 1.5-1.26 1.5-2.29 0-1.38-1.12-2.5-2.5-2.5S9.5 10.62 9.5 12c0 1.02.62 1.9 1.5 2.29v3.3L7.59 21 9 22.41l3-3 3 3L16.41 21 13 17.59v-3.3zM12 1C5.93 1 1 5.93 1 12h2c0-4.97 4.03-9 9-9s9 4.03 9 9h2c0-6.07-4.93-11-11-11z"},"children":[]}]};exports.ic_settings_input_antenna=ic_settings_input_antenna;var ic_settings_input_antenna_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 5c-3.87 0-7 3.13-7 7h2c0-2.76 2.24-5 5-5s5 2.24 5 5h2c0-3.87-3.13-7-7-7zm1 9.29c.88-.39 1.5-1.26 1.5-2.29 0-1.38-1.12-2.5-2.5-2.5S9.5 10.62 9.5 12c0 1.02.62 1.9 1.5 2.29v3.3L7.59 21 9 22.41l3-3 3 3L16.41 21 13 17.59v-3.3zM12 1C5.93 1 1 5.93 1 12h2c0-4.97 4.03-9 9-9s9 4.03 9 9h2c0-6.07-4.93-11-11-11z"},"children":[]}]};exports.ic_settings_input_antenna_outline=ic_settings_input_antenna_outline;var ic_settings_input_antenna_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 5c-3.87 0-7 3.13-7 7h2c0-2.76 2.24-5 5-5s5 2.24 5 5h2c0-3.87-3.13-7-7-7zm1 9.29c.88-.39 1.5-1.26 1.5-2.29 0-1.38-1.12-2.5-2.5-2.5S9.5 10.62 9.5 12c0 1.02.62 1.9 1.5 2.29v3.3L7.59 21 9 22.41l3-3 3 3L16.41 21 13 17.59v-3.3zM12 1C5.93 1 1 5.93 1 12h2c0-4.97 4.03-9 9-9s9 4.03 9 9h2c0-6.07-4.93-11-11-11z"},"children":[]}]};exports.ic_settings_input_antenna_twotone=ic_settings_input_antenna_twotone;var ic_settings_input_component={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 2c0-.55-.45-1-1-1s-1 .45-1 1v4H1v6h6V6H5V2zm4 14c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.41 2-1.51 2-2.82v-2H9v2zm-8 0c0 1.3.84 2.4 2 2.82V23h2v-4.18C6.16 18.4 7 17.3 7 16v-2H1v2zM21 6V2c0-.55-.45-1-1-1s-1 .45-1 1v4h-2v6h6V6h-2zm-8-4c0-.55-.45-1-1-1s-1 .45-1 1v4H9v6h6V6h-2V2zm4 14c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.41 2-1.51 2-2.82v-2h-6v2z"},"children":[]}]};exports.ic_settings_input_component=ic_settings_input_component;var ic_settings_input_component_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 2c0-.55-.45-1-1-1s-1 .45-1 1v4H1v10c0 1.3.84 2.4 2 2.82V23h2v-4.18C6.16 18.4 7 17.3 7 16V6H5V2zM4 17c-.55 0-1-.45-1-1v-2h2v2c0 .55-.45 1-1 1zm-1-5V8h2v4H3zM13 2c0-.55-.45-1-1-1s-1 .45-1 1v4H9v10c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.42 2-1.52 2-2.82V6h-2V2zm-1 15c-.55 0-1-.45-1-1v-2h2v2c0 .55-.45 1-1 1zm-1-5V8h2v4h-2zm10-6V2c0-.55-.45-1-1-1s-1 .45-1 1v4h-2v10c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.42 2-1.52 2-2.82V6h-2zm-1 11c-.55 0-1-.45-1-1v-2h2v2c0 .55-.45 1-1 1zm-1-5V8h2v4h-2z"},"children":[]}]};exports.ic_settings_input_component_outline=ic_settings_input_component_outline;var ic_settings_input_component_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11 16c0 .55.45 1 1 1s1-.45 1-1v-2h-2v2zm-8 0c0 .55.45 1 1 1s1-.45 1-1v-2H3v2zm16 0c0 .55.45 1 1 1s1-.45 1-1v-2h-2v2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M5 2c0-.55-.45-1-1-1s-1 .45-1 1v4H1v10c0 1.3.84 2.4 2 2.82V23h2v-4.18C6.16 18.4 7 17.3 7 16V6H5V2zm0 14c0 .55-.45 1-1 1s-1-.45-1-1v-2h2v2zm0-4H3V8h2v4zm8-10c0-.55-.45-1-1-1s-1 .45-1 1v4H9v10c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.42 2-1.52 2-2.82V6h-2V2zm0 14c0 .55-.45 1-1 1s-1-.45-1-1v-2h2v2zm0-4h-2V8h2v4zm8-6V2c0-.55-.45-1-1-1s-1 .45-1 1v4h-2v10c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.42 2-1.52 2-2.82V6h-2zm0 10c0 .55-.45 1-1 1s-1-.45-1-1v-2h2v2zm0-4h-2V8h2v4z"},"children":[]}]};exports.ic_settings_input_component_twotone=ic_settings_input_component_twotone;var ic_settings_input_composite={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 2c0-.55-.45-1-1-1s-1 .45-1 1v4H1v6h6V6H5V2zm4 14c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.41 2-1.51 2-2.82v-2H9v2zm-8 0c0 1.3.84 2.4 2 2.82V23h2v-4.18C6.16 18.4 7 17.3 7 16v-2H1v2zM21 6V2c0-.55-.45-1-1-1s-1 .45-1 1v4h-2v6h6V6h-2zm-8-4c0-.55-.45-1-1-1s-1 .45-1 1v4H9v6h6V6h-2V2zm4 14c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.41 2-1.51 2-2.82v-2h-6v2z"},"children":[]}]};exports.ic_settings_input_composite=ic_settings_input_composite;var ic_settings_input_composite_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 2c0-.55-.45-1-1-1s-1 .45-1 1v4H1v10c0 1.3.84 2.4 2 2.82V23h2v-4.18C6.16 18.4 7 17.3 7 16V6H5V2zM4 17c-.55 0-1-.45-1-1v-2h2v2c0 .55-.45 1-1 1zm-1-5V8h2v4H3zM13 2c0-.55-.45-1-1-1s-1 .45-1 1v4H9v10c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.42 2-1.52 2-2.82V6h-2V2zm-1 15c-.55 0-1-.45-1-1v-2h2v2c0 .55-.45 1-1 1zm-1-5V8h2v4h-2zm10-6V2c0-.55-.45-1-1-1s-1 .45-1 1v4h-2v10c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.42 2-1.52 2-2.82V6h-2zm-1 11c-.55 0-1-.45-1-1v-2h2v2c0 .55-.45 1-1 1zm-1-5V8h2v4h-2z"},"children":[]}]};exports.ic_settings_input_composite_outline=ic_settings_input_composite_outline;var ic_settings_input_composite_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 16c0 .55.45 1 1 1s1-.45 1-1v-2H3v2zm8 0c0 .55.45 1 1 1s1-.45 1-1v-2h-2v2zm8 0c0 .55.45 1 1 1s1-.45 1-1v-2h-2v2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M5 2c0-.55-.45-1-1-1s-1 .45-1 1v4H1v10c0 1.3.84 2.4 2 2.82V23h2v-4.18C6.16 18.4 7 17.3 7 16V6H5V2zm0 14c0 .55-.45 1-1 1s-1-.45-1-1v-2h2v2zm0-4H3V8h2v4zm8-10c0-.55-.45-1-1-1s-1 .45-1 1v4H9v10c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.42 2-1.52 2-2.82V6h-2V2zm0 14c0 .55-.45 1-1 1s-1-.45-1-1v-2h2v2zm0-4h-2V8h2v4zm8-6V2c0-.55-.45-1-1-1s-1 .45-1 1v4h-2v10c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.42 2-1.52 2-2.82V6h-2zm0 10c0 .55-.45 1-1 1s-1-.45-1-1v-2h2v2zm0-4h-2V8h2v4z"},"children":[]}]};exports.ic_settings_input_composite_twotone=ic_settings_input_composite_twotone;var ic_settings_input_hdmi={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 7V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v3H5v6l3 6v3h8v-3l3-6V7h-1zM8 4h8v3h-2V5h-1v2h-2V5h-1v2H8V4z"},"children":[]}]};exports.ic_settings_input_hdmi=ic_settings_input_hdmi;var ic_settings_input_hdmi_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 7V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v3H5v6l3 6v3h8v-3l3-6V7h-1zM8 4h8v3h-2.01V5h-1v2H11V5h-1v2H8V4zm9 8.53l-3 6V20h-4v-1.47l-3-6V9h10v3.53z"},"children":[]}]};exports.ic_settings_input_hdmi_outline=ic_settings_input_hdmi_outline;var ic_settings_input_hdmi_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8 9H7v3.53l2.79 5.58.21.42V20h4v-1.47l.21-.42L17 12.53V9h-1z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M18 7V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v3H5v6l3 6v3h8v-3l3-6V7h-1zM8 4h8v3h-2.01V5h-1v2H11V5h-1v2H8V4zm9 8.53l-3 6V20h-4v-1.47l-3-6V9h10v3.53z"},"children":[]}]};exports.ic_settings_input_hdmi_twotone=ic_settings_input_hdmi_twotone;var ic_settings_input_svideo={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8 11.5c0-.83-.67-1.5-1.5-1.5S5 10.67 5 11.5 5.67 13 6.5 13 8 12.33 8 11.5zm7-5c0-.83-.67-1.5-1.5-1.5h-3C9.67 5 9 5.67 9 6.5S9.67 8 10.5 8h3c.83 0 1.5-.67 1.5-1.5zM8.5 15c-.83 0-1.5.67-1.5 1.5S7.67 18 8.5 18s1.5-.67 1.5-1.5S9.33 15 8.5 15zM12 1C5.93 1 1 5.93 1 12s4.93 11 11 11 11-4.93 11-11S18.07 1 12 1zm0 20c-4.96 0-9-4.04-9-9s4.04-9 9-9 9 4.04 9 9-4.04 9-9 9zm5.5-11c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm-2 5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5z"},"children":[]}]};exports.ic_settings_input_svideo=ic_settings_input_svideo;var ic_settings_input_svideo_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8 11.5c0-.83-.67-1.5-1.5-1.5S5 10.67 5 11.5 5.67 13 6.5 13 8 12.33 8 11.5zm7-5c0-.83-.67-1.5-1.5-1.5h-3C9.67 5 9 5.67 9 6.5S9.67 8 10.5 8h3c.83 0 1.5-.67 1.5-1.5zM8.5 15c-.83 0-1.5.67-1.5 1.5S7.67 18 8.5 18s1.5-.67 1.5-1.5S9.33 15 8.5 15zM12 1C5.93 1 1 5.93 1 12s4.93 11 11 11 11-4.93 11-11S18.07 1 12 1zm0 20c-4.96 0-9-4.04-9-9s4.04-9 9-9 9 4.04 9 9-4.04 9-9 9zm5.5-11c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm-2 5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5z"},"children":[]}]};exports.ic_settings_input_svideo_outline=ic_settings_input_svideo_outline;var ic_settings_input_svideo_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 3c-4.96 0-9 4.04-9 9s4.04 9 9 9 9-4.04 9-9-4.04-9-9-9zm-7 8.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5S7.33 13 6.5 13 5 12.33 5 11.5zM8.5 18c-.83 0-1.5-.67-1.5-1.5S7.67 15 8.5 15s1.5.67 1.5 1.5S9.33 18 8.5 18zm2-10C9.67 8 9 7.33 9 6.5S9.67 5 10.5 5h3c.83 0 1.5.67 1.5 1.5S14.33 8 13.5 8h-3zm5 10c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm2-5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M15 6.5c0-.83-.67-1.5-1.5-1.5h-3C9.67 5 9 5.67 9 6.5S9.67 8 10.5 8h3c.83 0 1.5-.67 1.5-1.5z"},"children":[]},{"name":"circle","attribs":{"cx":"15.5","cy":"16.5","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"17.5","cy":"11.5","r":"1.5"},"children":[]},{"name":"path","attribs":{"d":"M12 1C5.93 1 1 5.93 1 12s4.93 11 11 11 11-4.93 11-11S18.07 1 12 1zm0 20c-4.96 0-9-4.04-9-9s4.04-9 9-9 9 4.04 9 9-4.04 9-9 9z"},"children":[]},{"name":"circle","attribs":{"cx":"6.5","cy":"11.5","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"8.5","cy":"16.5","r":"1.5"},"children":[]}]};exports.ic_settings_input_svideo_twotone=ic_settings_input_svideo_twotone;var ic_settings_overscan={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12.01 5.5L10 8h4l-1.99-2.5zM18 10v4l2.5-1.99L18 10zM6 10l-2.5 2.01L6 14v-4zm8 6h-4l2.01 2.5L14 16zm7-13H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02z"},"children":[]}]};exports.ic_settings_overscan=ic_settings_overscan;var ic_settings_overscan_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12.01 5.5L10 8h4l-1.99-2.5zM18 10v4l2.5-1.99L18 10zM6 10l-2.5 2.01L6 14v-4zm8 6h-4l2.01 2.5L14 16zm7-13H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02z"},"children":[]}]};exports.ic_settings_overscan_outline=ic_settings_overscan_outline;var ic_settings_overscan_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 19.01h18V4.99H3v14.02zM18 10l2.5 2.01L18 14v-4zm-5.99-4.5L14 8h-4l2.01-2.5zM14 16l-1.99 2.5L10 16h4zm-8-6v4l-2.5-1.99L6 10z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M14 16h-4l2.01 2.5zm4-6v4l2.5-1.99zm3-7H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02zM6 10l-2.5 2.01L6 14zm6.01-4.5L10 8h4z"},"children":[]}]};exports.ic_settings_overscan_twotone=ic_settings_overscan_twotone;var ic_settings_phone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13 9h-2v2h2V9zm4 0h-2v2h2V9zm3 6.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.58l2.2-2.21c.28-.27.36-.66.25-1.01C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM19 9v2h2V9h-2z"},"children":[]}]};exports.ic_settings_phone=ic_settings_phone;var ic_settings_phone_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11 9h2v2h-2zm4 0h2v2h-2zm5 6.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.58l2.2-2.21c.28-.27.36-.66.25-1.01C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.46 2.59L5.79 8.8c-.41-1.21-.67-2.48-.76-3.8zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM19 9h2v2h-2z"},"children":[]}]};exports.ic_settings_phone_outline=ic_settings_phone_outline;var ic_settings_phone_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6.54 5h-1.5c.09 1.32.35 2.59.75 3.79l1.2-1.21c-.24-.83-.39-1.7-.45-2.58zm8.66 13.21c1.21.41 2.48.67 3.8.76v-1.5c-.88-.07-1.75-.22-2.6-.45l-1.2 1.19z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M11 9h2v2h-2zm4 0h2v2h-2zm5 6.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.58l2.2-2.21c.28-.27.36-.66.25-1.01C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.46 2.59L5.79 8.8c-.41-1.21-.67-2.48-.76-3.8zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM19 9h2v2h-2z"},"children":[]}]};exports.ic_settings_phone_twotone=ic_settings_phone_twotone;var ic_settings_power={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 24h2v-2H7v2zm4 0h2v-2h-2v2zm2-22h-2v10h2V2zm3.56 2.44l-1.45 1.45C16.84 6.94 18 8.83 18 11c0 3.31-2.69 6-6 6s-6-2.69-6-6c0-2.17 1.16-4.06 2.88-5.12L7.44 4.44C5.36 5.88 4 8.28 4 11c0 4.42 3.58 8 8 8s8-3.58 8-8c0-2.72-1.36-5.12-3.44-6.56zM15 24h2v-2h-2v2z"},"children":[]}]};exports.ic_settings_power=ic_settings_power;var ic_settings_power_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 24h2v-2H7v2zm4 0h2v-2h-2v2zm2-22h-2v10h2V2zm3.56 2.44l-1.45 1.45C16.84 6.94 18 8.83 18 11c0 3.31-2.69 6-6 6s-6-2.69-6-6c0-2.17 1.16-4.06 2.88-5.12L7.44 4.44C5.36 5.88 4 8.28 4 11c0 4.42 3.58 8 8 8s8-3.58 8-8c0-2.72-1.36-5.12-3.44-6.56zM15 24h2v-2h-2v2z"},"children":[]}]};exports.ic_settings_power_outline=ic_settings_power_outline;var ic_settings_power_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 24h2v-2H7v2zm4 0h2v-2h-2v2zm2-22h-2v10h2V2zm3.56 2.44l-1.45 1.45C16.84 6.94 18 8.83 18 11c0 3.31-2.69 6-6 6s-6-2.69-6-6c0-2.17 1.16-4.06 2.88-5.12L7.44 4.44C5.36 5.88 4 8.28 4 11c0 4.42 3.58 8 8 8s8-3.58 8-8c0-2.72-1.36-5.12-3.44-6.56zM15 24h2v-2h-2v2z"},"children":[]}]};exports.ic_settings_power_twotone=ic_settings_power_twotone;var ic_settings_remote={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15 9H9c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V10c0-.55-.45-1-1-1zm-3 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM7.05 6.05l1.41 1.41C9.37 6.56 10.62 6 12 6s2.63.56 3.54 1.46l1.41-1.41C15.68 4.78 13.93 4 12 4s-3.68.78-4.95 2.05zM12 0C8.96 0 6.21 1.23 4.22 3.22l1.41 1.41C7.26 3.01 9.51 2 12 2s4.74 1.01 6.36 2.64l1.41-1.41C17.79 1.23 15.04 0 12 0z"},"children":[]}]};exports.ic_settings_remote=ic_settings_remote;var ic_settings_remote_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15 9H9c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V10c0-.55-.45-1-1-1zm-1 12h-4V11h4v10z"},"children":[]},{"name":"circle","attribs":{"cx":"12","cy":"13","r":"1"},"children":[]},{"name":"path","attribs":{"d":"M7.05 6.05l1.41 1.41C9.37 6.56 10.62 6 12 6s2.63.56 3.54 1.46l1.41-1.41C15.68 4.78 13.93 4 12 4s-3.68.78-4.95 2.05zM12 0C8.96 0 6.21 1.23 4.22 3.22l1.41 1.41C7.26 3.01 9.51 2 12 2s4.74 1.01 6.36 2.64l1.41-1.41C17.79 1.23 15.04 0 12 0z"},"children":[]}]};exports.ic_settings_remote_outline=ic_settings_remote_outline;var ic_settings_remote_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 21h4V11h-4v10zm2-9c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M15 9H9c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V10c0-.55-.45-1-1-1zm-1 12h-4V11h4v10z"},"children":[]},{"name":"circle","attribs":{"cx":"12","cy":"13","r":"1"},"children":[]},{"name":"path","attribs":{"d":"M7.05 6.05l1.41 1.41C9.37 6.56 10.62 6 12 6s2.63.56 3.54 1.46l1.41-1.41C15.68 4.78 13.93 4 12 4s-3.68.78-4.95 2.05zM12 0C8.96 0 6.21 1.23 4.22 3.22l1.41 1.41C7.26 3.01 9.51 2 12 2s4.74 1.01 6.36 2.64l1.41-1.41C17.79 1.23 15.04 0 12 0z"},"children":[]}]};exports.ic_settings_remote_twotone=ic_settings_remote_twotone;var ic_settings_voice={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 24h2v-2H7v2zm5-11c1.66 0 2.99-1.34 2.99-3L15 4c0-1.66-1.34-3-3-3S9 2.34 9 4v6c0 1.66 1.34 3 3 3zm-1 11h2v-2h-2v2zm4 0h2v-2h-2v2zm4-14h-1.7c0 3-2.54 5.1-5.3 5.1S6.7 13 6.7 10H5c0 3.41 2.72 6.23 6 6.72V20h2v-3.28c3.28-.49 6-3.31 6-6.72z"},"children":[]}]};exports.ic_settings_voice=ic_settings_voice;var ic_settings_voice_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 22h2v2H7zm5-9c1.66 0 3-1.34 3-3V4c0-1.66-1.34-3-3-3S9 2.34 9 4v6c0 1.66 1.34 3 3 3zm-1-9c0-.55.45-1 1-1s1 .45 1 1v6c0 .56-.44 1-1 1-.55 0-1-.45-1-1V4zm0 18h2v2h-2zm4 0h2v2h-2zm4-12h-1.7c0 3-2.54 5.1-5.3 5.1S6.7 13 6.7 10H5c0 3.41 2.72 6.23 6 6.72V20h2v-3.28c3.28-.49 6-3.31 6-6.72z"},"children":[]}]};exports.ic_settings_voice_outline=ic_settings_voice_outline;var ic_settings_voice_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 11c.56 0 .99-.44.99-1L13 4c0-.55-.45-1-1-1s-1 .45-1 1v6c0 .55.45 1 1 1z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M7 22h2v2H7zm5-9c1.66 0 2.99-1.34 2.99-3L15 4c0-1.66-1.34-3-3-3S9 2.34 9 4v6c0 1.66 1.34 3 3 3zm-1-9c0-.55.45-1 1-1s1 .45 1 1v6c0 .56-.44 1-1 1-.55 0-1-.45-1-1V4zm0 18h2v2h-2zm4 0h2v2h-2zm4-12h-1.7c0 3-2.54 5.1-5.3 5.1S6.7 13 6.7 10H5c0 3.41 2.72 6.23 6 6.72V20h2v-3.28c3.28-.49 6-3.31 6-6.72z"},"children":[]}]};exports.ic_settings_voice_twotone=ic_settings_voice_twotone;var ic_shop={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16 6V4c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H2v13c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6h-6zm-6-2h4v2h-4V4zM9 18V9l7.5 4L9 18z"},"children":[]}]};exports.ic_shop=ic_shop;var ic_shop_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16 6V4c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H2v13c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6h-6zm-6-2h4v2h-4V4zm10 15H4V8h16v11zM9 18l7.5-5L9 9z"},"children":[]}]};exports.ic_shop_outline=ic_shop_outline;var ic_shop_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 19h16V8H4v11zM9 9l7.5 4L9 18V9z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M16 6V4c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H2v13c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6h-6zm-6-2h4v2h-4V4zm10 15H4V8h16v11zM9 9v9l7.5-5z"},"children":[]}]};exports.ic_shop_twotone=ic_shop_twotone;var ic_shop_two={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 9H1v11c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2H3V9zm15-4V3c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H5v11c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2V5h-5zm-6-2h4v2h-4V3zm0 12V8l5.5 3-5.5 4z"},"children":[]}]};exports.ic_shop_two=ic_shop_two;var ic_shop_two_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 9H1v11c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2H3V9zm15-4V3c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H5v11c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2V5h-5zm-6-2h4v2h-4V3zm9 13H7V7h14v9zm-9-1l5.5-4L12 8z"},"children":[]}]};exports.ic_shop_two_outline=ic_shop_two_outline;var ic_shop_two_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 7v9h14V7H7zm5 8V8l5.5 3-5.5 4z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M3 9H1v11c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2H3V9zm15-4V3c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H5v11c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2V5h-5zm-6-2h4v2h-4V3zm9 13H7V7h14v9zm-9-1l5.5-4L12 8z"},"children":[]}]};exports.ic_shop_two_twotone=ic_shop_two_twotone;var ic_shopping_bag={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M18,6h-2c0-2.21-1.79-4-4-4S8,3.79,8,6H6C4.9,6,4,6.9,4,8v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8C20,6.9,19.1,6,18,6z M10,10c0,0.55-0.45,1-1,1s-1-0.45-1-1V8h2V10z M12,4c1.1,0,2,0.9,2,2h-4C10,4.9,10.9,4,12,4z M16,10c0,0.55-0.45,1-1,1 s-1-0.45-1-1V8h2V10z"},"children":[{"name":"path","attribs":{"d":"M18,6h-2c0-2.21-1.79-4-4-4S8,3.79,8,6H6C4.9,6,4,6.9,4,8v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8C20,6.9,19.1,6,18,6z M10,10c0,0.55-0.45,1-1,1s-1-0.45-1-1V8h2V10z M12,4c1.1,0,2,0.9,2,2h-4C10,4.9,10.9,4,12,4z M16,10c0,0.55-0.45,1-1,1 s-1-0.45-1-1V8h2V10z"},"children":[]}]}]}]};exports.ic_shopping_bag=ic_shopping_bag;var ic_shopping_bag_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M18,6h-2c0-2.21-1.79-4-4-4S8,3.79,8,6H6C4.9,6,4,6.9,4,8v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8C20,6.9,19.1,6,18,6z M12,4c1.1,0,2,0.9,2,2h-4C10,4.9,10.9,4,12,4z M18,20H6V8h2v2c0,0.55,0.45,1,1,1s1-0.45,1-1V8h4v2c0,0.55,0.45,1,1,1s1-0.45,1-1V8 h2V20z"},"children":[{"name":"path","attribs":{"d":"M18,6h-2c0-2.21-1.79-4-4-4S8,3.79,8,6H6C4.9,6,4,6.9,4,8v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8C20,6.9,19.1,6,18,6z M12,4c1.1,0,2,0.9,2,2h-4C10,4.9,10.9,4,12,4z M18,20H6V8h2v2c0,0.55,0.45,1,1,1s1-0.45,1-1V8h4v2c0,0.55,0.45,1,1,1s1-0.45,1-1V8 h2V20z"},"children":[]}]}]}]};exports.ic_shopping_bag_outline=ic_shopping_bag_outline;var ic_shopping_bag_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M18,20H6V8h2v2c0,0.55,0.45,1,1,1s1-0.45,1-1V8h4v2c0,0.55,0.45,1,1,1s1-0.45,1-1V8h2V20z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M18,20H6V8h2v2c0,0.55,0.45,1,1,1s1-0.45,1-1V8h4v2c0,0.55,0.45,1,1,1s1-0.45,1-1V8h2V20z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M18,6h-2c0-2.21-1.79-4-4-4S8,3.79,8,6H6C4.9,6,4,6.9,4,8v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8C20,6.9,19.1,6,18,6z M12,4c1.1,0,2,0.9,2,2h-4C10,4.9,10.9,4,12,4z M18,20H6V8h2v2c0,0.55,0.45,1,1,1s1-0.45,1-1V8h4v2c0,0.55,0.45,1,1,1s1-0.45,1-1V8 h2V20z"},"children":[{"name":"path","attribs":{"d":"M18,6h-2c0-2.21-1.79-4-4-4S8,3.79,8,6H6C4.9,6,4,6.9,4,8v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8C20,6.9,19.1,6,18,6z M12,4c1.1,0,2,0.9,2,2h-4C10,4.9,10.9,4,12,4z M18,20H6V8h2v2c0,0.55,0.45,1,1,1s1-0.45,1-1V8h4v2c0,0.55,0.45,1,1,1s1-0.45,1-1V8 h2V20z"},"children":[]}]}]}]};exports.ic_shopping_bag_twotone=ic_shopping_bag_twotone;var ic_shopping_basket={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17.21 9l-4.38-6.56c-.19-.28-.51-.42-.83-.42-.32 0-.64.14-.83.43L6.79 9H2c-.55 0-1 .45-1 1 0 .09.01.18.04.27l2.54 9.27c.23.84 1 1.46 1.92 1.46h13c.92 0 1.69-.62 1.93-1.46l2.54-9.27L23 10c0-.55-.45-1-1-1h-4.79zM9 9l3-4.4L15 9H9zm3 8c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"},"children":[]}]};exports.ic_shopping_basket=ic_shopping_basket;var ic_shopping_basket_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 9h-4.79l-4.38-6.56c-.19-.28-.51-.42-.83-.42s-.64.14-.83.43L6.79 9H2c-.55 0-1 .45-1 1 0 .09.01.18.04.27l2.54 9.27c.23.84 1 1.46 1.92 1.46h13c.92 0 1.69-.62 1.93-1.46l2.54-9.27L23 10c0-.55-.45-1-1-1zM12 4.8L14.8 9H9.2L12 4.8zM18.5 19l-12.99.01L3.31 11H20.7l-2.2 8zM12 13c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"},"children":[]}]};exports.ic_shopping_basket_outline=ic_shopping_basket_outline;var ic_shopping_basket_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3.31 11l2.2 8.01L18.5 19l2.2-8H3.31zM12 17c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M22 9h-4.79l-4.38-6.56c-.19-.28-.51-.42-.83-.42s-.64.14-.83.43L6.79 9H2c-.55 0-1 .45-1 1 0 .09.01.18.04.27l2.54 9.27c.23.84 1 1.46 1.92 1.46h13c.92 0 1.69-.62 1.93-1.46l2.54-9.27L23 10c0-.55-.45-1-1-1zM12 4.8L14.8 9H9.2L12 4.8zM18.5 19l-12.99.01L3.31 11H20.7l-2.2 8zM12 13c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"},"children":[]}]};exports.ic_shopping_basket_twotone=ic_shopping_basket_twotone;var ic_shopping_cart={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zM1 2v2h2l3.6 7.59-1.35 2.45c-.16.28-.25.61-.25.96 0 1.1.9 2 2 2h12v-2H7.42c-.14 0-.25-.11-.25-.25l.03-.12.9-1.63h7.45c.75 0 1.41-.41 1.75-1.03l3.58-6.49c.08-.14.12-.31.12-.48 0-.55-.45-1-1-1H5.21l-.94-2H1zm16 16c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2z"},"children":[]}]};exports.ic_shopping_cart=ic_shopping_cart;var ic_shopping_cart_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.55 13c.75 0 1.41-.41 1.75-1.03l3.58-6.49c.37-.66-.11-1.48-.87-1.48H5.21l-.94-2H1v2h2l3.6 7.59-1.35 2.44C4.52 15.37 5.48 17 7 17h12v-2H7l1.1-2h7.45zM6.16 6h12.15l-2.76 5H8.53L6.16 6zM7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2z"},"children":[]}]};exports.ic_shopping_cart_outline=ic_shopping_cart_outline;var ic_shopping_cart_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.55 11l2.76-5H6.16l2.37 5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M15.55 13c.75 0 1.41-.41 1.75-1.03l3.58-6.49c.37-.66-.11-1.48-.87-1.48H5.21l-.94-2H1v2h2l3.6 7.59-1.35 2.44C4.52 15.37 5.48 17 7 17h12v-2H7l1.1-2h7.45zM6.16 6h12.15l-2.76 5H8.53L6.16 6zM7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2z"},"children":[]}]};exports.ic_shopping_cart_twotone=ic_shopping_cart_twotone;var ic_smart_button={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M22,9v6c0,1.1-0.9,2-2,2h-1l0-2h1V9H4v6h6v2H4c-1.1,0-2-0.9-2-2V9c0-1.1,0.9-2,2-2h16C21.1,7,22,7.9,22,9z M14.5,19 l1.09-2.41L18,15.5l-2.41-1.09L14.5,12l-1.09,2.41L11,15.5l2.41,1.09L14.5,19z M17,14l0.62-1.38L19,12l-1.38-0.62L17,10l-0.62,1.38 L15,12l1.38,0.62L17,14z M14.5,19l1.09-2.41L18,15.5l-2.41-1.09L14.5,12l-1.09,2.41L11,15.5l2.41,1.09L14.5,19z M17,14l0.62-1.38 L19,12l-1.38-0.62L17,10l-0.62,1.38L15,12l1.38,0.62L17,14z"},"children":[{"name":"path","attribs":{"d":"M22,9v6c0,1.1-0.9,2-2,2h-1l0-2h1V9H4v6h6v2H4c-1.1,0-2-0.9-2-2V9c0-1.1,0.9-2,2-2h16C21.1,7,22,7.9,22,9z M14.5,19 l1.09-2.41L18,15.5l-2.41-1.09L14.5,12l-1.09,2.41L11,15.5l2.41,1.09L14.5,19z M17,14l0.62-1.38L19,12l-1.38-0.62L17,10l-0.62,1.38 L15,12l1.38,0.62L17,14z M14.5,19l1.09-2.41L18,15.5l-2.41-1.09L14.5,12l-1.09,2.41L11,15.5l2.41,1.09L14.5,19z M17,14l0.62-1.38 L19,12l-1.38-0.62L17,10l-0.62,1.38L15,12l1.38,0.62L17,14z"},"children":[]}]}]}]};exports.ic_smart_button=ic_smart_button;var ic_smart_button_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M22,9v6c0,1.1-0.9,2-2,2h-1l0-2h1V9H4v6h6v2H4c-1.1,0-2-0.9-2-2V9c0-1.1,0.9-2,2-2h16C21.1,7,22,7.9,22,9z M14.5,19 l1.09-2.41L18,15.5l-2.41-1.09L14.5,12l-1.09,2.41L11,15.5l2.41,1.09L14.5,19z M17,14l0.62-1.38L19,12l-1.38-0.62L17,10l-0.62,1.38 L15,12l1.38,0.62L17,14z M14.5,19l1.09-2.41L18,15.5l-2.41-1.09L14.5,12l-1.09,2.41L11,15.5l2.41,1.09L14.5,19z M17,14l0.62-1.38 L19,12l-1.38-0.62L17,10l-0.62,1.38L15,12l1.38,0.62L17,14z"},"children":[{"name":"path","attribs":{"d":"M22,9v6c0,1.1-0.9,2-2,2h-1l0-2h1V9H4v6h6v2H4c-1.1,0-2-0.9-2-2V9c0-1.1,0.9-2,2-2h16C21.1,7,22,7.9,22,9z M14.5,19 l1.09-2.41L18,15.5l-2.41-1.09L14.5,12l-1.09,2.41L11,15.5l2.41,1.09L14.5,19z M17,14l0.62-1.38L19,12l-1.38-0.62L17,10l-0.62,1.38 L15,12l1.38,0.62L17,14z M14.5,19l1.09-2.41L18,15.5l-2.41-1.09L14.5,12l-1.09,2.41L11,15.5l2.41,1.09L14.5,19z M17,14l0.62-1.38 L19,12l-1.38-0.62L17,10l-0.62,1.38L15,12l1.38,0.62L17,14z"},"children":[]}]}]}]};exports.ic_smart_button_outline=ic_smart_button_outline;var ic_smart_button_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M22,9v6c0,1.1-0.9,2-2,2h-1l0-2h1V9H4v6h6v2H4c-1.1,0-2-0.9-2-2V9c0-1.1,0.9-2,2-2h16C21.1,7,22,7.9,22,9z M14.5,19 l1.09-2.41L18,15.5l-2.41-1.09L14.5,12l-1.09,2.41L11,15.5l2.41,1.09L14.5,19z M17,14l0.62-1.38L19,12l-1.38-0.62L17,10l-0.62,1.38 L15,12l1.38,0.62L17,14z M14.5,19l1.09-2.41L18,15.5l-2.41-1.09L14.5,12l-1.09,2.41L11,15.5l2.41,1.09L14.5,19z M17,14l0.62-1.38 L19,12l-1.38-0.62L17,10l-0.62,1.38L15,12l1.38,0.62L17,14z"},"children":[{"name":"path","attribs":{"d":"M22,9v6c0,1.1-0.9,2-2,2h-1l0-2h1V9H4v6h6v2H4c-1.1,0-2-0.9-2-2V9c0-1.1,0.9-2,2-2h16C21.1,7,22,7.9,22,9z M14.5,19 l1.09-2.41L18,15.5l-2.41-1.09L14.5,12l-1.09,2.41L11,15.5l2.41,1.09L14.5,19z M17,14l0.62-1.38L19,12l-1.38-0.62L17,10l-0.62,1.38 L15,12l1.38,0.62L17,14z M14.5,19l1.09-2.41L18,15.5l-2.41-1.09L14.5,12l-1.09,2.41L11,15.5l2.41,1.09L14.5,19z M17,14l0.62-1.38 L19,12l-1.38-0.62L17,10l-0.62,1.38L15,12l1.38,0.62L17,14z"},"children":[]}]}]}]};exports.ic_smart_button_twotone=ic_smart_button_twotone;var ic_source={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M14,16H6v-2h8V16z M18,12H6v-2h12V12z"},"children":[{"name":"path","attribs":{"d":"M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M14,16H6v-2h8V16z M18,12H6v-2h12V12z"},"children":[]}]}]}]};exports.ic_source=ic_source;var ic_source_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M20,18L4,18V6h5.17 l2,2H20V18z M18,12H6v-2h12V12z M14,16H6v-2h8V16z"},"children":[{"name":"path","attribs":{"d":"M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M20,18L4,18V6h5.17 l2,2H20V18z M18,12H6v-2h12V12z M14,16H6v-2h8V16z"},"children":[]}]}]}]};exports.ic_source_outline=ic_source_outline;var ic_source_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M9.17,6H4v12l16,0V8h-8.83L9.17,6z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M9.17,6H4v12l16,0V8h-8.83L9.17,6z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M20,18L4,18V6h5.17 l2,2H20V18z M18,12H6v-2h12V12z M14,16H6v-2h8V16z"},"children":[{"name":"path","attribs":{"d":"M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M20,18L4,18V6h5.17 l2,2H20V18z M18,12H6v-2h12V12z M14,16H6v-2h8V16z"},"children":[]}]}]}]};exports.ic_source_twotone=ic_source_twotone;var ic_speaker_notes={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM8 14H6v-2h2v2zm0-3H6V9h2v2zm0-3H6V6h2v2zm7 6h-5v-2h5v2zm3-3h-8V9h8v2zm0-3h-8V6h8v2z"},"children":[]}]};exports.ic_speaker_notes=ic_speaker_notes;var ic_speaker_notes_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17l-.59.59-.58.58V4h16v12zM6 12h2v2H6zm0-3h2v2H6zm0-3h2v2H6zm4 6h5v2h-5zm0-3h8v2h-8zm0-3h8v2h-8z"},"children":[]}]};exports.ic_speaker_notes_outline=ic_speaker_notes_outline;var ic_speaker_notes_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 17.17l.59-.59.58-.58H20V4H4v13.17zM10 6h8v2h-8V6zm0 3h8v2h-8V9zm0 3h5v2h-5v-2zM6 6h2v2H6V6zm0 3h2v2H6V9zm0 3h2v2H6v-2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17l-.59.59-.58.58V4h16v12zM6 12h2v2H6zm0-3h2v2H6zm0-3h2v2H6zm4 6h5v2h-5zm0-3h8v2h-8zm0-3h8v2h-8z"},"children":[]}]};exports.ic_speaker_notes_twotone=ic_speaker_notes_twotone;var ic_speaker_notes_off={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10.54 11l-.54-.54L7.54 8 6 6.46 2.38 2.84 1.27 1.73 0 3l2.01 2.01L2 22l4-4h9l5.73 5.73L22 22.46 17.54 18l-7-7zM8 14H6v-2h2v2zm-2-3V9l2 2H6zm14-9H4.08L10 7.92V6h8v2h-7.92l1 1H18v2h-4.92l6.99 6.99C21.14 17.95 22 17.08 22 16V4c0-1.1-.9-2-2-2z"},"children":[]}]};exports.ic_speaker_notes_off=ic_speaker_notes_off;var ic_speaker_notes_off_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 4v12h-1.34l1.91 1.91C21.39 17.66 22 16.9 22 16V4c0-1.1-.9-2-2-2H4.66l2 2H20zM6 12h2v2H6zm12-3h-6.34l2 2H18zm0-3h-8v1.34l.66.66H18zM1.41 1.59L0 3l2.01 2.01L2 22l4-4h9l5.73 5.73 1.41-1.41L1.41 1.59zM5.17 16L4 17.17V7l2 2v2h2l5 5H5.17z"},"children":[]}]};exports.ic_speaker_notes_off_outline=ic_speaker_notes_off_outline;var ic_speaker_notes_off_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6 11V9L4 7v10.17L5.17 16H13l-5-5H6zm2 3H6v-2h2v2zM20 4H6.66L10 7.34V6h8v2h-7.34l1 1H18v2h-4.34l5 5H20z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 4v12h-1.34l1.91 1.91C21.39 17.66 22 16.9 22 16V4c0-1.1-.9-2-2-2H4.66l2 2H20zM6 12h2v2H6zm12-1V9h-6.34l2 2zm0-3V6h-8v1.34l.66.66zM1.41 1.59L0 3l2 2.01V22l4-4h9l5.73 5.73 1.41-1.41L1.41 1.59zM5.17 16L4 17.17V7l2 2v2h2l5 5H5.17z"},"children":[]}]};exports.ic_speaker_notes_off_twotone=ic_speaker_notes_off_twotone;var ic_spellcheck={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12.45 16h2.09L9.43 3H7.57L2.46 16h2.09l1.12-3h5.64l1.14 3zm-6.02-5L8.5 5.48 10.57 11H6.43zm15.16.59l-8.09 8.09L9.83 16l-1.41 1.41 5.09 5.09L23 13l-1.41-1.41z"},"children":[]}]};exports.ic_spellcheck=ic_spellcheck;var ic_spellcheck_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12.45 16h2.09L9.43 3H7.57L2.46 16h2.09l1.12-3h5.64l1.14 3zm-6.02-5L8.5 5.48 10.57 11H6.43zm15.16.59l-8.09 8.09L9.83 16l-1.41 1.41 5.09 5.09L23 13l-1.41-1.41z"},"children":[]}]};exports.ic_spellcheck_outline=ic_spellcheck_outline;var ic_spellcheck_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12.45 16h2.09L9.43 3H7.57L2.46 16h2.09l1.12-3h5.64l1.14 3zm-6.02-5L8.5 5.48 10.57 11H6.43zm15.16.59l-8.09 8.09L9.83 16l-1.41 1.41 5.09 5.09L23 13l-1.41-1.41z"},"children":[]}]};exports.ic_spellcheck_twotone=ic_spellcheck_twotone;var ic_star_rate={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[]}]},{"name":"polygon","attribs":{"points":"14.43,10 12,2 9.57,10 2,10 8.18,14.41 5.83,22 12,17.31 18.18,22 15.83,14.41 22,10"},"children":[{"name":"polygon","attribs":{"points":"14.43,10 12,2 9.57,10 2,10 8.18,14.41 5.83,22 12,17.31 18.18,22 15.83,14.41 22,10"},"children":[]}]}]}]};exports.ic_star_rate=ic_star_rate;var ic_star_rate_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[]}]},{"name":"path","attribs":{"d":"M12,8.89L12.94,12h2.82l-2.27,1.62l0.93,3.01L12,14.79l-2.42,1.84l0.93-3.01L8.24,12h2.82L12,8.89 M12,2l-2.42,8H2 l6.17,4.41L5.83,22L12,17.31L18.18,22l-2.35-7.59L22,10h-7.58L12,2L12,2z"},"children":[{"name":"path","attribs":{"d":"M12,8.89L12.94,12h2.82l-2.27,1.62l0.93,3.01L12,14.79l-2.42,1.84l0.93-3.01L8.24,12h2.82L12,8.89 M12,2l-2.42,8H2 l6.17,4.41L5.83,22L12,17.31L18.18,22l-2.35-7.59L22,10h-7.58L12,2L12,2z"},"children":[]}]}]}]};exports.ic_star_rate_outline=ic_star_rate_outline;var ic_star_rate_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"polygon","attribs":{"enable-background":"new","opacity":".3","points":"12.94,12 12,8.89 11.06,12 8.24,12 10.51,13.62 9.58,16.63 12,14.79 14.42,16.63 13.49,13.62 15.76,12"},"children":[{"name":"polygon","attribs":{"enable-background":"new","opacity":".3","points":"12.94,12 12,8.89 11.06,12 8.24,12 10.51,13.62 9.58,16.63 12,14.79 14.42,16.63 13.49,13.62 15.76,12"},"children":[]}]},{"name":"path","attribs":{"d":"M22,10h-7.58L12,2l-2.42,8H2l6.17,4.41L5.83,22L12,17.31L18.17,22l-2.35-7.59L22,10z M14.42,16.63L12,14.79l-2.42,1.84 l0.93-3.01L8.24,12h2.82L12,8.89L12.94,12h2.82l-2.27,1.62L14.42,16.63z"},"children":[{"name":"path","attribs":{"d":"M22,10h-7.58L12,2l-2.42,8H2l6.17,4.41L5.83,22L12,17.31L18.17,22l-2.35-7.59L22,10z M14.42,16.63L12,14.79l-2.42,1.84 l0.93-3.01L8.24,12h2.82L12,8.89L12.94,12h2.82l-2.27,1.62L14.42,16.63z"},"children":[]}]}]}]};exports.ic_star_rate_twotone=ic_star_rate_twotone;var ic_stars={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm4.24 16L12 15.45 7.77 18l1.12-4.81-3.73-3.23 4.92-.42L12 5l1.92 4.53 4.92.42-3.73 3.23L16.23 18z"},"children":[]}]};exports.ic_stars=ic_stars;var ic_stars_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm7.48 7.16l-5.01-.43-2-4.71c3.21.19 5.91 2.27 7.01 5.14zm-5.07 6.26L12 13.98l-2.39 1.44.63-2.72-2.11-1.83 2.78-.24L12 8.06l1.09 2.56 2.78.24-2.11 1.83.64 2.73zm-2.86-11.4l-2 4.72-5.02.43c1.1-2.88 3.8-4.97 7.02-5.15zM4 12c0-.64.08-1.26.23-1.86l3.79 3.28-1.11 4.75C5.13 16.7 4 14.48 4 12zm3.84 6.82L12 16.31l4.16 2.5c-1.22.75-2.64 1.19-4.17 1.19-1.52 0-2.94-.44-4.15-1.18zm9.25-.65l-1.11-4.75 3.79-3.28c.14.59.23 1.22.23 1.86 0 2.48-1.14 4.7-2.91 6.17z"},"children":[]}]};exports.ic_stars_outline=ic_stars_outline;var ic_stars_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19.47 9.16c-1.1-2.87-3.8-4.95-7.01-5.14l2 4.71 5.01.43zm-7.93-5.14c-3.22.18-5.92 2.27-7.02 5.15l5.02-.43 2-4.72zm-7.31 6.12C4.08 10.74 4 11.36 4 12c0 2.48 1.14 4.7 2.91 6.17l1.11-4.75-3.79-3.28zm15.54-.01l-3.79 3.28 1.1 4.76C18.86 16.7 20 14.48 20 12c0-.64-.09-1.27-.23-1.87zM7.84 18.82c1.21.74 2.63 1.18 4.15 1.18 1.53 0 2.95-.44 4.17-1.18L12 16.31l-4.16 2.51z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm7.48 7.16l-5.01-.43-2-4.71c3.21.19 5.91 2.27 7.01 5.14zM12 8.06l1.09 2.56 2.78.24-2.11 1.83.63 2.73L12 13.98l-2.39 1.44.63-2.72-2.11-1.83 2.78-.24L12 8.06zm-.46-4.04l-2 4.72-5.02.43c1.1-2.88 3.8-4.97 7.02-5.15zM4 12c0-.64.08-1.26.23-1.86l3.79 3.28-1.11 4.75C5.14 16.7 4 14.48 4 12zm7.99 8c-1.52 0-2.94-.44-4.15-1.18L12 16.31l4.16 2.51c-1.22.74-2.64 1.18-4.17 1.18zm5.1-1.83l-1.1-4.76 3.79-3.28c.13.6.22 1.23.22 1.87 0 2.48-1.14 4.7-2.91 6.17z"},"children":[]}]};exports.ic_stars_twotone=ic_stars_twotone;var ic_sticky_note_2={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M19,3H4.99C3.89,3,3,3.9,3,5l0.01,14c0,1.1,0.89,2,1.99,2h10l6-6V5C21,3.9,20.1,3,19,3z M7,8h10v2H7V8z M12,14H7v-2h5V14z M14,19.5V14h5.5L14,19.5z"},"children":[]}]};exports.ic_sticky_note_2=ic_sticky_note_2;var ic_sticky_note_2_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M19,5v9l-5,0l0,5H5V5H19 M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h10l6-6V5C21,3.9,20.1,3,19,3z M12,14H7v-2h5V14z M17,10H7V8h10V10z"},"children":[]}]};exports.ic_sticky_note_2_outline=ic_sticky_note_2_outline;var ic_sticky_note_2_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M5,5v14h9v-5h5V5H5z M12,14H7v-2h5V14z M17,10H7V8h10V10z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M19,5v9l-5,0l0,5H5V5H19 M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h10l6-6V5C21,3.9,20.1,3,19,3z M12,14H7v-2h5V14z M17,10H7V8h10V10z"},"children":[]}]};exports.ic_sticky_note_2_twotone=ic_sticky_note_2_twotone;var ic_store={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 4H4v2h16V4zm1 10v-2l-1-5H4l-1 5v2h1v6h10v-6h4v6h2v-6h1zm-9 4H6v-4h6v4z"},"children":[]}]};exports.ic_store=ic_store;var ic_store_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18.36 9l.6 3H5.04l.6-3h12.72M20 4H4v2h16V4zm0 3H4l-1 5v2h1v6h10v-6h4v6h2v-6h1v-2l-1-5zM6 18v-4h6v4H6z"},"children":[]}]};exports.ic_store_outline=ic_store_outline;var ic_store_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5.64 9l-.6 3h13.92l-.6-3z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M4 4h16v2H4zm16 3H4l-1 5v2h1v6h10v-6h4v6h2v-6h1v-2l-1-5zm-8 11H6v-4h6v4zm-6.96-6l.6-3h12.72l.6 3H5.04z"},"children":[]}]};exports.ic_store_twotone=ic_store_twotone;var ic_subject={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14 17H4v2h10v-2zm6-8H4v2h16V9zM4 15h16v-2H4v2zM4 5v2h16V5H4z"},"children":[]}]};exports.ic_subject=ic_subject;var ic_subject_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14 17H4v2h10v-2zm6-8H4v2h16V9zM4 15h16v-2H4v2zM4 5v2h16V5H4z"},"children":[]}]};exports.ic_subject_outline=ic_subject_outline;var ic_subject_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14 17H4v2h10v-2zm6-8H4v2h16V9zM4 15h16v-2H4v2zM4 5v2h16V5H4z"},"children":[]}]};exports.ic_subject_twotone=ic_subject_twotone;var ic_subtitles_off={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M20,4H6.83l8,8H20v2h-3.17l4.93,4.93C21.91,18.65,22,18.34,22,18V6C22,4.9,21.1,4,20,4z"},"children":[{"name":"path","attribs":{"d":"M20,4H6.83l8,8H20v2h-3.17l4.93,4.93C21.91,18.65,22,18.34,22,18V6C22,4.9,21.1,4,20,4z"},"children":[]}]},{"name":"path","attribs":{"d":"M1.04,3.87l1.2,1.2C2.09,5.35,2,5.66,2,6v12c0,1.1,0.9,2,2,2h13.17l2.96,2.96l1.41-1.41L2.45,2.45L1.04,3.87z M8,12v2H4 v-2H8z M14,16.83V18H4v-2h9.17L14,16.83z"},"children":[{"name":"path","attribs":{"d":"M1.04,3.87l1.2,1.2C2.09,5.35,2,5.66,2,6v12c0,1.1,0.9,2,2,2h13.17l2.96,2.96l1.41-1.41L2.45,2.45L1.04,3.87z M8,12v2H4 v-2H8z M14,16.83V18H4v-2h9.17L14,16.83z"},"children":[]}]}]}]}]}]};exports.ic_subtitles_off=ic_subtitles_off;var ic_subtitles_off_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M20,4H6.83l2,2H20v11.17l1.76,1.76C21.91,18.65,22,18.34,22,18V6C22,4.9,21.1,4,20,4z"},"children":[{"name":"path","attribs":{"d":"M20,4H6.83l2,2H20v11.17l1.76,1.76C21.91,18.65,22,18.34,22,18V6C22,4.9,21.1,4,20,4z"},"children":[]}]},{"name":"polygon","attribs":{"points":"18,10 12.83,10 14.83,12 18,12"},"children":[{"name":"polygon","attribs":{"points":"18,10 12.83,10 14.83,12 18,12"},"children":[]}]},{"name":"path","attribs":{"d":"M1.04,3.87l1.2,1.2C2.09,5.35,2,5.66,2,6v12c0,1.1,0.9,2,2,2h13.17l2.96,2.96l1.41-1.41L2.45,2.45L1.04,3.87z M4,6.83 L7.17,10H6v2h2v-1.17L11.17,14H6v2h7.17l2,2H4V6.83z"},"children":[{"name":"path","attribs":{"d":"M1.04,3.87l1.2,1.2C2.09,5.35,2,5.66,2,6v12c0,1.1,0.9,2,2,2h13.17l2.96,2.96l1.41-1.41L2.45,2.45L1.04,3.87z M4,6.83 L7.17,10H6v2h2v-1.17L11.17,14H6v2h7.17l2,2H4V6.83z"},"children":[]}]}]}]}]}]};exports.ic_subtitles_off_outline=ic_subtitles_off_outline;var ic_subtitles_off_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"opacity":".3","points":"8.83,6 12.83,10 18,10 18,12 14.83,12 20,17.17 20,6"},"children":[{"name":"polygon","attribs":{"opacity":".3","points":"8.83,6 12.83,10 18,10 18,12 14.83,12 20,17.17 20,6"},"children":[]}]},{"name":"polygon","attribs":{"opacity":".3","points":"15.17,18 13.17,16 6,16 6,14 11.17,14 8,10.83 8,12 6,12 6,10 7.17,10 4,6.83 4,18"},"children":[{"name":"polygon","attribs":{"opacity":".3","points":"15.17,18 13.17,16 6,16 6,14 11.17,14 8,10.83 8,12 6,12 6,10 7.17,10 4,6.83 4,18"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"18,10 12.83,10 14.83,12 18,12"},"children":[{"name":"polygon","attribs":{"points":"18,10 12.83,10 14.83,12 18,12"},"children":[]}]},{"name":"path","attribs":{"d":"M20,4H6.83l2,2H20v11.17l1.76,1.76C21.91,18.65,22,18.34,22,18V6C22,4.9,21.1,4,20,4z"},"children":[{"name":"path","attribs":{"d":"M20,4H6.83l2,2H20v11.17l1.76,1.76C21.91,18.65,22,18.34,22,18V6C22,4.9,21.1,4,20,4z"},"children":[]}]},{"name":"path","attribs":{"d":"M1.04,3.87l1.2,1.2C2.09,5.35,2,5.66,2,6v12c0,1.1,0.9,2,2,2h13.17l2.96,2.96l1.41-1.41L2.45,2.45L1.04,3.87z M4,6.83 L7.17,10H6v2h2v-1.17L11.17,14H6v2h7.17l2,2H4V6.83z"},"children":[{"name":"path","attribs":{"d":"M1.04,3.87l1.2,1.2C2.09,5.35,2,5.66,2,6v12c0,1.1,0.9,2,2,2h13.17l2.96,2.96l1.41-1.41L2.45,2.45L1.04,3.87z M4,6.83 L7.17,10H6v2h2v-1.17L11.17,14H6v2h7.17l2,2H4V6.83z"},"children":[]}]}]}]}]}]}]}]};exports.ic_subtitles_off_twotone=ic_subtitles_off_twotone;var ic_supervised_user_circle={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11.99 2c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zm3.61 6.34c1.07 0 1.93.86 1.93 1.93 0 1.07-.86 1.93-1.93 1.93-1.07 0-1.93-.86-1.93-1.93-.01-1.07.86-1.93 1.93-1.93zm-6-1.58c1.3 0 2.36 1.06 2.36 2.36 0 1.3-1.06 2.36-2.36 2.36s-2.36-1.06-2.36-2.36c0-1.31 1.05-2.36 2.36-2.36zm0 9.13v3.75c-2.4-.75-4.3-2.6-5.14-4.96 1.05-1.12 3.67-1.69 5.14-1.69.53 0 1.2.08 1.9.22-1.64.87-1.9 2.02-1.9 2.68zM11.99 20c-.27 0-.53-.01-.79-.04v-4.07c0-1.42 2.94-2.13 4.4-2.13 1.07 0 2.92.39 3.84 1.15-1.17 2.97-4.06 5.09-7.45 5.09z"},"children":[]}]};exports.ic_supervised_user_circle=ic_supervised_user_circle;var ic_supervised_user_circle_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12.5 10c0-1.65-1.35-3-3-3s-3 1.35-3 3 1.35 3 3 3 3-1.35 3-3zm-3 1c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6.5 2c1.11 0 2-.89 2-2 0-1.11-.89-2-2-2-1.11 0-2.01.89-2 2 0 1.11.89 2 2 2zM11.99 2.01c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zM5.84 17.12c.68-.54 2.27-1.11 3.66-1.11.07 0 .15.01.23.01.24-.64.67-1.29 1.3-1.86-.56-.1-1.09-.16-1.53-.16-1.3 0-3.39.45-4.73 1.43-.5-1.04-.78-2.2-.78-3.43 0-4.41 3.59-8 8-8s8 3.59 8 8c0 1.2-.27 2.34-.75 3.37-1-.59-2.36-.87-3.24-.87-1.52 0-4.5.81-4.5 2.7v2.78c-2.27-.13-4.29-1.21-5.66-2.86z"},"children":[]}]};exports.ic_supervised_user_circle_outline=ic_supervised_user_circle_outline;var ic_supervised_user_circle_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"9.5","cy":"10","opacity":".3","r":"1"},"children":[]},{"name":"path","attribs":{"d":"M11.5 17.21c0-1.88 2.98-2.7 4.5-2.7.88 0 2.24.27 3.24.87.48-1.02.75-2.16.75-3.37 0-4.41-3.59-8-8-8s-8 3.59-8 8c0 1.23.29 2.39.78 3.43 1.34-.98 3.43-1.43 4.73-1.43.44 0 .97.05 1.53.16-.63.57-1.06 1.22-1.3 1.86-.08 0-.15-.01-.23-.01-1.38 0-2.98.57-3.66 1.11 1.37 1.65 3.39 2.73 5.66 2.86v-2.78zM16 9c1.11 0 2 .89 2 2 0 1.11-.89 2-2 2-1.11 0-2-.89-2-2-.01-1.11.89-2 2-2zm-6.5 4c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12.5 10c0-1.65-1.35-3-3-3s-3 1.35-3 3 1.35 3 3 3 3-1.35 3-3zm-3 1c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6.5 2c1.11 0 2-.89 2-2 0-1.11-.89-2-2-2-1.11 0-2.01.89-2 2 0 1.11.89 2 2 2zM11.99 2.01c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zM5.84 17.12c.68-.54 2.27-1.11 3.66-1.11.07 0 .15.01.23.01.24-.64.67-1.29 1.3-1.86-.56-.1-1.09-.16-1.53-.16-1.3 0-3.39.45-4.73 1.43-.5-1.04-.78-2.2-.78-3.43 0-4.41 3.59-8 8-8s8 3.59 8 8c0 1.2-.27 2.34-.75 3.37-1-.59-2.36-.87-3.24-.87-1.52 0-4.5.81-4.5 2.7v2.78c-2.27-.13-4.29-1.21-5.66-2.86z"},"children":[]}]};exports.ic_supervised_user_circle_twotone=ic_supervised_user_circle_twotone;var ic_supervisor_account={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16.5 12c1.38 0 2.49-1.12 2.49-2.5S17.88 7 16.5 7C15.12 7 14 8.12 14 9.5s1.12 2.5 2.5 2.5zM9 11c1.66 0 2.99-1.34 2.99-3S10.66 5 9 5C7.34 5 6 6.34 6 8s1.34 3 3 3zm7.5 3c-1.83 0-5.5.92-5.5 2.75V19h11v-2.25c0-1.83-3.67-2.75-5.5-2.75zM9 13c-2.33 0-7 1.17-7 3.5V19h7v-2.25c0-.85.33-2.34 2.37-3.47C10.5 13.1 9.66 13 9 13z"},"children":[]}]};exports.ic_supervisor_account=ic_supervisor_account;var ic_supervisor_account_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9 12c1.93 0 3.5-1.57 3.5-3.5S10.93 5 9 5 5.5 6.57 5.5 8.5 7.07 12 9 12zm0-5c.83 0 1.5.67 1.5 1.5S9.83 10 9 10s-1.5-.67-1.5-1.5S8.17 7 9 7zm.05 10H4.77c.99-.5 2.7-1 4.23-1 .11 0 .23.01.34.01.34-.73.93-1.33 1.64-1.81-.73-.13-1.42-.2-1.98-.2-2.34 0-7 1.17-7 3.5V19h7v-1.5c0-.17.02-.34.05-.5zm7.45-2.5c-1.84 0-5.5 1.01-5.5 3V19h11v-1.5c0-1.99-3.66-3-5.5-3zm1.21-1.82c.76-.43 1.29-1.24 1.29-2.18C19 9.12 17.88 8 16.5 8S14 9.12 14 10.5c0 .94.53 1.75 1.29 2.18.36.2.77.32 1.21.32s.85-.12 1.21-.32z"},"children":[]}]};exports.ic_supervisor_account_outline=ic_supervisor_account_outline;var ic_supervisor_account_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"9","cy":"8.5","opacity":".3","r":"1.5"},"children":[]},{"name":"path","attribs":{"d":"M4.77 17h4.28c.01-.06.12-.58.29-.99-.11 0-.23-.01-.34-.01-1.53 0-3.25.5-4.23 1z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M9 12c1.93 0 3.5-1.57 3.5-3.5S10.93 5 9 5 5.5 6.57 5.5 8.5 7.07 12 9 12zm0-5c.83 0 1.5.67 1.5 1.5S9.83 10 9 10s-1.5-.67-1.5-1.5S8.17 7 9 7zm.05 10H4.77c.99-.5 2.7-1 4.23-1 .11 0 .23.01.34.01.34-.73.93-1.33 1.64-1.81-.73-.13-1.42-.2-1.98-.2-2.34 0-7 1.17-7 3.5V19h7v-1.5c0-.17.02-.34.05-.5zm7.45-2.5c-1.84 0-5.5 1.01-5.5 3V19h11v-1.5c0-1.99-3.66-3-5.5-3zm1.21-1.82c.76-.43 1.29-1.24 1.29-2.18C19 9.12 17.88 8 16.5 8S14 9.12 14 10.5c0 .94.53 1.75 1.29 2.18.36.2.77.32 1.21.32s.85-.12 1.21-.32z"},"children":[]}]};exports.ic_supervisor_account_twotone=ic_supervisor_account_twotone;var ic_support={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M19.46,9.12l-2.78,1.15 c-0.51-1.36-1.58-2.44-2.95-2.94l1.15-2.78C16.98,5.35,18.65,7.02,19.46,9.12z M12,15c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3 S13.66,15,12,15z M9.13,4.54l1.17,2.78c-1.38,0.5-2.47,1.59-2.98,2.97L4.54,9.13C5.35,7.02,7.02,5.35,9.13,4.54z M4.54,14.87 l2.78-1.15c0.51,1.38,1.59,2.46,2.97,2.96l-1.17,2.78C7.02,18.65,5.35,16.98,4.54,14.87z M14.88,19.46l-1.15-2.78 c1.37-0.51,2.45-1.59,2.95-2.97l2.78,1.17C18.65,16.98,16.98,18.65,14.88,19.46z"},"children":[{"name":"path","attribs":{"d":"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M19.46,9.12l-2.78,1.15 c-0.51-1.36-1.58-2.44-2.95-2.94l1.15-2.78C16.98,5.35,18.65,7.02,19.46,9.12z M12,15c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3 S13.66,15,12,15z M9.13,4.54l1.17,2.78c-1.38,0.5-2.47,1.59-2.98,2.97L4.54,9.13C5.35,7.02,7.02,5.35,9.13,4.54z M4.54,14.87 l2.78-1.15c0.51,1.38,1.59,2.46,2.97,2.96l-1.17,2.78C7.02,18.65,5.35,16.98,4.54,14.87z M14.88,19.46l-1.15-2.78 c1.37-0.51,2.45-1.59,2.95-2.97l2.78,1.17C18.65,16.98,16.98,18.65,14.88,19.46z"},"children":[]}]}]}]};exports.ic_support=ic_support;var ic_support_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M19.46,9.12l-2.78,1.15 c-0.51-1.36-1.58-2.44-2.95-2.94l1.15-2.78C16.98,5.35,18.65,7.02,19.46,9.12z M12,15c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3 S13.66,15,12,15z M9.13,4.54l1.17,2.78c-1.38,0.5-2.47,1.59-2.98,2.97L4.54,9.13C5.35,7.02,7.02,5.35,9.13,4.54z M4.54,14.87 l2.78-1.15c0.51,1.38,1.59,2.46,2.97,2.96l-1.17,2.78C7.02,18.65,5.35,16.98,4.54,14.87z M14.88,19.46l-1.15-2.78 c1.37-0.51,2.45-1.59,2.95-2.97l2.78,1.17C18.65,16.98,16.98,18.65,14.88,19.46z"},"children":[{"name":"path","attribs":{"d":"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M19.46,9.12l-2.78,1.15 c-0.51-1.36-1.58-2.44-2.95-2.94l1.15-2.78C16.98,5.35,18.65,7.02,19.46,9.12z M12,15c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3 S13.66,15,12,15z M9.13,4.54l1.17,2.78c-1.38,0.5-2.47,1.59-2.98,2.97L4.54,9.13C5.35,7.02,7.02,5.35,9.13,4.54z M4.54,14.87 l2.78-1.15c0.51,1.38,1.59,2.46,2.97,2.96l-1.17,2.78C7.02,18.65,5.35,16.98,4.54,14.87z M14.88,19.46l-1.15-2.78 c1.37-0.51,2.45-1.59,2.95-2.97l2.78,1.17C18.65,16.98,16.98,18.65,14.88,19.46z"},"children":[]}]}]}]};exports.ic_support_outline=ic_support_outline;var ic_support_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M10.3,7.32L9.13,4.54C7.02,5.35,5.35,7.02,4.54,9.13l2.78,1.15C7.83,8.9,8.92,7.82,10.3,7.32z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M10.3,7.32L9.13,4.54C7.02,5.35,5.35,7.02,4.54,9.13l2.78,1.15C7.83,8.9,8.92,7.82,10.3,7.32z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M7.32,13.72l-2.78,1.15c0.81,2.1,2.48,3.78,4.59,4.59l1.17-2.78C8.91,16.18,7.83,15.09,7.32,13.72z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M7.32,13.72l-2.78,1.15c0.81,2.1,2.48,3.78,4.59,4.59l1.17-2.78C8.91,16.18,7.83,15.09,7.32,13.72z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M16.67,10.27l2.78-1.15c-0.81-2.1-2.48-3.77-4.58-4.58l-1.15,2.78C15.09,7.83,16.17,8.9,16.67,10.27z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M16.67,10.27l2.78-1.15c-0.81-2.1-2.48-3.77-4.58-4.58l-1.15,2.78C15.09,7.83,16.17,8.9,16.67,10.27z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M16.68,13.71c-0.5,1.37-1.58,2.46-2.95,2.97l1.15,2.78c2.1-0.81,3.77-2.48,4.58-4.58L16.68,13.71z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M16.68,13.71c-0.5,1.37-1.58,2.46-2.95,2.97l1.15,2.78c2.1-0.81,3.77-2.48,4.58-4.58L16.68,13.71z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M14.87,4.54 c2.1,0.81,3.77,2.48,4.58,4.58l-2.78,1.15c-0.51-1.36-1.58-2.44-2.95-2.94L14.87,4.54z M9.13,4.54l1.17,2.78 c-1.38,0.5-2.47,1.59-2.98,2.97L4.54,9.13C5.35,7.02,7.02,5.35,9.13,4.54z M9.13,19.46c-2.1-0.81-3.78-2.48-4.59-4.59l2.78-1.15 c0.51,1.38,1.59,2.46,2.97,2.96L9.13,19.46z M9,12c0-1.66,1.34-3,3-3s3,1.34,3,3s-1.34,3-3,3S9,13.66,9,12z M14.88,19.46 l-1.15-2.78c1.37-0.51,2.45-1.59,2.95-2.97l2.78,1.17C18.65,16.98,16.98,18.65,14.88,19.46z"},"children":[{"name":"path","attribs":{"d":"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M14.87,4.54 c2.1,0.81,3.77,2.48,4.58,4.58l-2.78,1.15c-0.51-1.36-1.58-2.44-2.95-2.94L14.87,4.54z M9.13,4.54l1.17,2.78 c-1.38,0.5-2.47,1.59-2.98,2.97L4.54,9.13C5.35,7.02,7.02,5.35,9.13,4.54z M9.13,19.46c-2.1-0.81-3.78-2.48-4.59-4.59l2.78-1.15 c0.51,1.38,1.59,2.46,2.97,2.96L9.13,19.46z M9,12c0-1.66,1.34-3,3-3s3,1.34,3,3s-1.34,3-3,3S9,13.66,9,12z M14.88,19.46 l-1.15-2.78c1.37-0.51,2.45-1.59,2.95-2.97l2.78,1.17C18.65,16.98,16.98,18.65,14.88,19.46z"},"children":[]}]}]}]}]}]};exports.ic_support_twotone=ic_support_twotone;var ic_swap_horiz={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6.99 11L3 15l3.99 4v-3H14v-2H6.99v-3zM21 9l-3.99-4v3H10v2h7.01v3L21 9z"},"children":[]}]};exports.ic_swap_horiz=ic_swap_horiz;var ic_swap_horiz_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6.99 11L3 15l3.99 4v-3H14v-2H6.99v-3zM21 9l-3.99-4v3H10v2h7.01v3L21 9z"},"children":[]}]};exports.ic_swap_horiz_outline=ic_swap_horiz_outline;var ic_swap_horiz_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6.99 11L3 15l3.99 4v-3H14v-2H6.99v-3zM21 9l-3.99-4v3H10v2h7.01v3L21 9z"},"children":[]}]};exports.ic_swap_horiz_twotone=ic_swap_horiz_twotone;var ic_swap_horizontal_circle={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 12c0-5.52-4.48-10-10-10S2 6.48 2 12s4.48 10 10 10 10-4.48 10-10zm-7-5.5l3.5 3.5-3.5 3.5V11h-4V9h4V6.5zm-6 11L5.5 14 9 10.5V13h4v2H9v2.5z"},"children":[]}]};exports.ic_swap_horizontal_circle=ic_swap_horizontal_circle;var ic_swap_horizontal_circle_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm3-13.5V9h-4v2h4v2.5l3.5-3.5zm-6 4L5.5 14 9 17.5V15h4v-2H9z"},"children":[]}]};exports.ic_swap_horizontal_circle_outline=ic_swap_horizontal_circle_outline;var ic_swap_horizontal_circle_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm1 11H9v2.5L5.5 14 9 10.5V13h4v2zm2-1.5V11h-4V9h4V6.5l3.5 3.5-3.5 3.5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm3-13.5V9h-4v2h4v2.5l3.5-3.5zm-6 4L5.5 14 9 17.5V15h4v-2H9z"},"children":[]}]};exports.ic_swap_horizontal_circle_twotone=ic_swap_horizontal_circle_twotone;var ic_swap_vert={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16 17.01V10h-2v7.01h-3L15 21l4-3.99h-3zM9 3L5 6.99h3V14h2V6.99h3L9 3z"},"children":[]}]};exports.ic_swap_vert=ic_swap_vert;var ic_swap_vert_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16 17.01V10h-2v7.01h-3L15 21l4-3.99h-3zM9 3L5 6.99h3V14h2V6.99h3L9 3zm7 14.01V10h-2v7.01h-3L15 21l4-3.99h-3zM9 3L5 6.99h3V14h2V6.99h3L9 3z"},"children":[]}]};exports.ic_swap_vert_outline=ic_swap_vert_outline;var ic_swap_vert_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16 17.01V10h-2v7.01h-3L15 21l4-3.99h-3zM9 3L5 6.99h3V14h2V6.99h3L9 3z"},"children":[]}]};exports.ic_swap_vert_twotone=ic_swap_vert_twotone;var ic_swap_vertical_circle={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM6.5 9L10 5.5 13.5 9H11v4H9V9H6.5zm11 6L14 18.5 10.5 15H13v-4h2v4h2.5z"},"children":[]}]};exports.ic_swap_vertical_circle=ic_swap_vertical_circle;var ic_swap_vertical_circle_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zM6.5 9L10 5.5 13.5 9H11v4H9V9zm11 6L14 18.5 10.5 15H13v-4h2v4z"},"children":[]}]};exports.ic_swap_vertical_circle_outline=ic_swap_vertical_circle_outline;var ic_swap_vertical_circle_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zM6.5 9L10 5.5 13.5 9H11v4H9V9H6.5zm7.5 9.5L10.5 15H13v-4h2v4h2.5L14 18.5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-1-7V9h2.5L10 5.5 6.5 9H9v4zm4-2h-2v4h-2.5l3.5 3.5 3.5-3.5H15z"},"children":[]}]};exports.ic_swap_vertical_circle_twotone=ic_swap_vertical_circle_twotone;var ic_swipe={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19.75 16.25c0 .06-.01.13-.02.2l-.75 5.27c-.11.73-.69 1.28-1.44 1.28h-6.79c-.41 0-.79-.17-1.06-.44l-4.94-4.94.79-.8c.2-.2.48-.33.79-.33.09 0 .16.02.24.03l3.43.72V6.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v6h.76c.19 0 .37.04.54.11l4.54 2.26c.53.22.91.76.91 1.38zm.38-12.38C18.69 2.17 15.6 1 12 1S5.31 2.17 3.87 3.87L2 2v5h5L4.93 4.93c1-1.29 3.7-2.43 7.07-2.43s6.07 1.14 7.07 2.43L17 7h5V2l-1.87 1.87z"},"children":[]}]};exports.ic_swipe=ic_swipe;var ic_sync_alt={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M22,8l-4-4v3H3v2h15v3L22,8z"},"children":[{"name":"path","attribs":{"d":"M22,8l-4-4v3H3v2h15v3L22,8z"},"children":[]}]},{"name":"path","attribs":{"d":"M2,16l4,4v-3h15v-2H6v-3L2,16z"},"children":[{"name":"path","attribs":{"d":"M2,16l4,4v-3h15v-2H6v-3L2,16z"},"children":[]}]}]}]}]}]};exports.ic_sync_alt=ic_sync_alt;var ic_sync_alt_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M22,8l-4-4v3H3v2h15v3L22,8z"},"children":[{"name":"path","attribs":{"d":"M22,8l-4-4v3H3v2h15v3L22,8z"},"children":[]}]},{"name":"path","attribs":{"d":"M2,16l4,4v-3h15v-2H6v-3L2,16z"},"children":[{"name":"path","attribs":{"d":"M2,16l4,4v-3h15v-2H6v-3L2,16z"},"children":[]}]}]}]}]}]};exports.ic_sync_alt_outline=ic_sync_alt_outline;var ic_sync_alt_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M22,8l-4-4v3H3v2h15v3L22,8z"},"children":[{"name":"path","attribs":{"d":"M22,8l-4-4v3H3v2h15v3L22,8z"},"children":[]}]},{"name":"path","attribs":{"d":"M2,16l4,4v-3h15v-2H6v-3L2,16z"},"children":[{"name":"path","attribs":{"d":"M2,16l4,4v-3h15v-2H6v-3L2,16z"},"children":[]}]}]}]}]}]};exports.ic_sync_alt_twotone=ic_sync_alt_twotone;var ic_system_update_alt={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 .5h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 16.5l4-4h-3v-9h-2v9H8l4 4zm9-13h-6v1.99h6v14.03H3V5.49h6V3.5H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2v-14c0-1.1-.9-2-2-2z"},"children":[]}]};exports.ic_system_update_alt=ic_system_update_alt;var ic_system_update_alt_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0zm0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 16l4-4h-3V3h-2v9H8l4 4zm9-13h-6v1.99h6v14.03H3V4.99h6V3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 13l4-4h-3V3h-2v9H8l4 4zm9-13h-6v1.99h6v14.03H3V4.99h6V3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"},"children":[]}]};exports.ic_system_update_alt_outline=ic_system_update_alt_outline;var ic_system_update_alt_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0zm0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 16l4-4h-3V3h-2v9H8l4 4zm9-13h-6v1.99h6v14.03H3V4.99h6V3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"},"children":[]}]};exports.ic_system_update_alt_twotone=ic_system_update_alt_twotone;var ic_tab={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h10v4h8v10z"},"children":[]}]};exports.ic_tab=ic_tab;var ic_tab_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0zm0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h10v4h8v10z"},"children":[]}]};exports.ic_tab_outline=ic_tab_outline;var ic_tab_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0zm0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h10v4h8v10z"},"children":[]}]};exports.ic_tab_twotone=ic_tab_twotone;var ic_tab_unselected={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M1 9h2V7H1v2zm0 4h2v-2H1v2zm0-8h2V3c-1.1 0-2 .9-2 2zm8 16h2v-2H9v2zm-8-4h2v-2H1v2zm2 4v-2H1c0 1.1.9 2 2 2zM21 3h-8v6h10V5c0-1.1-.9-2-2-2zm0 14h2v-2h-2v2zM9 5h2V3H9v2zM5 21h2v-2H5v2zM5 5h2V3H5v2zm16 16c1.1 0 2-.9 2-2h-2v2zm0-8h2v-2h-2v2zm-8 8h2v-2h-2v2zm4 0h2v-2h-2v2z"},"children":[]}]};exports.ic_tab_unselected=ic_tab_unselected;var ic_tab_unselected_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M1 9h2V7H1v2zm0 4h2v-2H1v2zm0-8h2V3c-1.1 0-2 .9-2 2zm8 16h2v-2H9v2zm-8-4h2v-2H1v2zm2 4v-2H1c0 1.1.9 2 2 2zM21 3h-8v6h10V5c0-1.1-.9-2-2-2zm0 14h2v-2h-2v2zM9 5h2V3H9v2zM5 21h2v-2H5v2zM5 5h2V3H5v2zm16 16c1.1 0 2-.9 2-2h-2v2zm0-8h2v-2h-2v2zm-8 8h2v-2h-2v2zm4 0h2v-2h-2v2z"},"children":[]}]};exports.ic_tab_unselected_outline=ic_tab_unselected_outline;var ic_tab_unselected_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M1 9h2V7H1v2zm0 4h2v-2H1v2zm0-8h2V3c-1.1 0-2 .9-2 2zm8 16h2v-2H9v2zm-8-4h2v-2H1v2zm2 4v-2H1c0 1.1.9 2 2 2zM21 3h-8v6h10V5c0-1.1-.9-2-2-2zm0 14h2v-2h-2v2zM9 5h2V3H9v2zM5 21h2v-2H5v2zM5 5h2V3H5v2zm16 16c1.1 0 2-.9 2-2h-2v2zm0-8h2v-2h-2v2zm-8 8h2v-2h-2v2zm4 0h2v-2h-2v2z"},"children":[]}]};exports.ic_tab_unselected_twotone=ic_tab_unselected_twotone;var ic_table_view={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M19,7H9C7.9,7,7,7.9,7,9v10c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V9C21,7.9,20.1,7,19,7z M19,9v2H9V9H19z M13,15v-2h2v2H13z M15,17v2h-2v-2H15z M11,15H9v-2h2V15z M17,13h2v2h-2V13z M9,17h2v2H9V17z M17,19v-2h2v2H17z M6,17H5c-1.1,0-2-0.9-2-2V5 c0-1.1,0.9-2,2-2h10c1.1,0,2,0.9,2,2v1h-2V5H5v10h1V17z"},"children":[{"name":"path","attribs":{"d":"M19,7H9C7.9,7,7,7.9,7,9v10c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V9C21,7.9,20.1,7,19,7z M19,9v2H9V9H19z M13,15v-2h2v2H13z M15,17v2h-2v-2H15z M11,15H9v-2h2V15z M17,13h2v2h-2V13z M9,17h2v2H9V17z M17,19v-2h2v2H17z M6,17H5c-1.1,0-2-0.9-2-2V5 c0-1.1,0.9-2,2-2h10c1.1,0,2,0.9,2,2v1h-2V5H5v10h1V17z"},"children":[]}]}]}]};exports.ic_table_view=ic_table_view;var ic_table_view_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M19,7H9C7.9,7,7,7.9,7,9v10c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V9C21,7.9,20.1,7,19,7z M19,9v2H9V9H19z M13,15v-2h2v2H13z M15,17v2h-2v-2H15z M11,15H9v-2h2V15z M17,13h2v2h-2V13z M9,17h2v2H9V17z M17,19v-2h2v2H17z M6,17H5c-1.1,0-2-0.9-2-2V5 c0-1.1,0.9-2,2-2h10c1.1,0,2,0.9,2,2v1h-2V5H5v10h1V17z"},"children":[{"name":"path","attribs":{"d":"M19,7H9C7.9,7,7,7.9,7,9v10c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V9C21,7.9,20.1,7,19,7z M19,9v2H9V9H19z M13,15v-2h2v2H13z M15,17v2h-2v-2H15z M11,15H9v-2h2V15z M17,13h2v2h-2V13z M9,17h2v2H9V17z M17,19v-2h2v2H17z M6,17H5c-1.1,0-2-0.9-2-2V5 c0-1.1,0.9-2,2-2h10c1.1,0,2,0.9,2,2v1h-2V5H5v10h1V17z"},"children":[]}]}]}]};exports.ic_table_view_outline=ic_table_view_outline;var ic_table_view_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M19,9v2H9V9H19z M13,15v-2h2v2H13z M15,17v2h-2v-2H15z M11,15H9v-2h2V15z M17,13h2v2h-2V13z M9,17h2v2H9V17z M17,19v-2h2v2H17z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M19,9v2H9V9H19z M13,15v-2h2v2H13z M15,17v2h-2v-2H15z M11,15H9v-2h2V15z M17,13h2v2h-2V13z M9,17h2v2H9V17z M17,19v-2h2v2H17z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M19,7H9C7.9,7,7,7.9,7,9v10c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V9C21,7.9,20.1,7,19,7z M19,9v2H9V9H19z M13,15v-2h2v2H13z M15,17v2h-2v-2H15z M11,15H9v-2h2V15z M17,13h2v2h-2V13z M9,17h2v2H9V17z M17,19v-2h2v2H17z M6,17H5c-1.1,0-2-0.9-2-2V5 c0-1.1,0.9-2,2-2h10c1.1,0,2,0.9,2,2v1h-2V5H5v10h1V17z"},"children":[{"name":"path","attribs":{"d":"M19,7H9C7.9,7,7,7.9,7,9v10c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V9C21,7.9,20.1,7,19,7z M19,9v2H9V9H19z M13,15v-2h2v2H13z M15,17v2h-2v-2H15z M11,15H9v-2h2V15z M17,13h2v2h-2V13z M9,17h2v2H9V17z M17,19v-2h2v2H17z M6,17H5c-1.1,0-2-0.9-2-2V5 c0-1.1,0.9-2,2-2h10c1.1,0,2,0.9,2,2v1h-2V5H5v10h1V17z"},"children":[]}]}]}]};exports.ic_table_view_twotone=ic_table_view_twotone;var ic_text_rotate_up={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 12v1.5l11 4.75v-2.1l-2.2-.9v-5l2.2-.9v-2.1L3 12zm7 2.62l-5.02-1.87L10 10.88v3.74zm8-10.37l-3 3h2v12.5h2V7.25h2l-3-3z"},"children":[]}]};exports.ic_text_rotate_up=ic_text_rotate_up;var ic_text_rotate_up_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 4l-3 3h2v13h2V7h2l-3-3zm-6.2 11.5v-5l2.2-.9V7.5L3 12.25v1.5l11 4.75v-2.1l-2.2-.9zM4.98 13L10 11.13v3.74L4.98 13z"},"children":[]}]};exports.ic_text_rotate_up_outline=ic_text_rotate_up_outline;var ic_text_rotate_up_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 4l-3 3h2v13h2V7h2l-3-3zm-6.2 11.5v-5l2.2-.9V7.5L3 12.25v1.5l11 4.75v-2.1l-2.2-.9zM4.98 13L10 11.13v3.74L4.98 13z"},"children":[]}]};exports.ic_text_rotate_up_twotone=ic_text_rotate_up_twotone;var ic_text_rotate_vertical={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.75 5h-1.5L9.5 16h2.1l.9-2.2h5l.9 2.2h2.1L15.75 5zm-2.62 7L15 6.98 16.87 12h-3.74zM6 19.75l3-3H7V4.25H5v12.5H3l3 3z"},"children":[]}]};exports.ic_text_rotate_vertical=ic_text_rotate_vertical;var ic_text_rotate_vertical_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.75 5h-1.5L9.5 16h2.1l.9-2.2h5l.9 2.2h2.1L15.75 5zm-2.62 7L15 6.98 16.87 12h-3.74zM6 20l3-3H7V4H5v13H3l3 3z"},"children":[]}]};exports.ic_text_rotate_vertical_outline=ic_text_rotate_vertical_outline;var ic_text_rotate_vertical_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.75 5h-1.5L9.5 16h2.1l.9-2.2h5l.9 2.2h2.1L15.75 5zm-2.62 7L15 6.98 16.87 12h-3.74zM6 20l3-3H7V4H5v13H3l3 3z"},"children":[]}]};exports.ic_text_rotate_vertical_twotone=ic_text_rotate_vertical_twotone;var ic_text_rotation_angledown={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19.4 4.91l-1.06-1.06L7.2 8.27l1.48 1.48 2.19-.92 3.54 3.54-.92 2.19 1.48 1.48L19.4 4.91zm-6.81 3.1l4.87-2.23-2.23 4.87-2.64-2.64zM14.27 21v-4.24l-1.41 1.41-8.84-8.84-1.42 1.42 8.84 8.84L10.03 21h4.24z"},"children":[]}]};exports.ic_text_rotation_angledown=ic_text_rotation_angledown;var ic_text_rotation_angledown_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15 21v-4.24l-1.41 1.41-9.2-9.19-1.41 1.41 9.19 9.19L10.76 21H15zM11.25 8.48l3.54 3.54-.92 2.19 1.48 1.48 4.42-11.14-1.06-1.05L7.57 7.92 9.06 9.4l2.19-.92zm6.59-3.05l-2.23 4.87-2.64-2.64 4.87-2.23z"},"children":[]}]};exports.ic_text_rotation_angledown_outline=ic_text_rotation_angledown_outline;var ic_text_rotation_angledown_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15 21v-4.24l-1.41 1.41-9.2-9.19-1.41 1.41 9.19 9.19L10.76 21H15zM11.25 8.48l3.54 3.54-.92 2.19 1.48 1.48 4.42-11.14-1.06-1.05L7.57 7.92 9.06 9.4l2.19-.92zm6.59-3.05l-2.23 4.87-2.64-2.64 4.87-2.23z"},"children":[]}]};exports.ic_text_rotation_angledown_twotone=ic_text_rotation_angledown_twotone;var ic_text_rotation_angleup={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4.49 4.21L3.43 5.27 7.85 16.4l1.48-1.48-.92-2.19 3.54-3.54 2.19.92 1.48-1.48L4.49 4.21zm3.09 6.8L5.36 6.14l4.87 2.23-2.65 2.64zm12.99-1.68h-4.24l1.41 1.41-8.84 8.84L10.32 21l8.84-8.84 1.41 1.41V9.33z"},"children":[]}]};exports.ic_text_rotation_angleup=ic_text_rotation_angleup;var ic_text_rotation_angleup_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16.76 9l1.41 1.41-9.19 9.19 1.41 1.41 9.19-9.19L21 13.24V9h-4.24zm-8.28 3.75l3.54-3.54 2.19.92 1.48-1.48L4.56 4.23 3.5 5.29l4.42 11.14 1.48-1.48-.92-2.2zm-.82-1.72L5.43 6.16l4.87 2.23-2.64 2.64z"},"children":[]}]};exports.ic_text_rotation_angleup_outline=ic_text_rotation_angleup_outline;var ic_text_rotation_angleup_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16.76 9l1.41 1.41-9.19 9.19 1.41 1.41 9.19-9.19L21 13.24V9h-4.24zm-8.28 3.75l3.54-3.54 2.19.92 1.48-1.48L4.56 4.23 3.5 5.29l4.42 11.14 1.48-1.48-.92-2.2zm-.82-1.72L5.43 6.16l4.87 2.23-2.64 2.64z"},"children":[]}]};exports.ic_text_rotation_angleup_twotone=ic_text_rotation_angleup_twotone;var ic_text_rotation_down={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 12v-1.5L10 5.75v2.1l2.2.9v5l-2.2.9v2.1L21 12zm-7-2.62l5.02 1.87L14 13.12V9.38zM6 19.75l3-3H7V4.25H5v12.5H3l3 3z"},"children":[]}]};exports.ic_text_rotation_down=ic_text_rotation_down;var ic_text_rotation_down_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6 20l3-3H7V4H5v13H3l3 3zm6.2-11.5v5l-2.2.9v2.1l11-4.75v-1.5L10 5.5v2.1l2.2.9zm6.82 2.5L14 12.87V9.13L19.02 11z"},"children":[]}]};exports.ic_text_rotation_down_outline=ic_text_rotation_down_outline;var ic_text_rotation_down_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6 20l3-3H7V4H5v13H3l3 3zm6.2-11.5v5l-2.2.9v2.1l11-4.75v-1.5L10 5.5v2.1l2.2.9zm6.82 2.5L14 12.87V9.13L19.02 11z"},"children":[]}]};exports.ic_text_rotation_down_twotone=ic_text_rotation_down_twotone;var ic_text_rotation_none={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12.75 3h-1.5L6.5 14h2.1l.9-2.2h5l.9 2.2h2.1L12.75 3zm-2.62 7L12 4.98 13.87 10h-3.74zm10.37 8l-3-3v2H5v2h12.5v2l3-3z"},"children":[]}]};exports.ic_text_rotation_none=ic_text_rotation_none;var ic_text_rotation_none_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 18l-3-3v2H5v2h13v2l3-3zM9.5 11.8h5l.9 2.2h2.1L12.75 3h-1.5L6.5 14h2.1l.9-2.2zM12 4.98L13.87 10h-3.74L12 4.98z"},"children":[]}]};exports.ic_text_rotation_none_outline=ic_text_rotation_none_outline;var ic_text_rotation_none_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 18l-3-3v2H5v2h13v2l3-3zM9.5 11.8h5l.9 2.2h2.1L12.75 3h-1.5L6.5 14h2.1l.9-2.2zM12 4.98L13.87 10h-3.74L12 4.98z"},"children":[]}]};exports.ic_text_rotation_none_twotone=ic_text_rotation_none_twotone;var ic_theaters={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 3v2h-2V3H8v2H6V3H4v18h2v-2h2v2h8v-2h2v2h2V3h-2zM8 17H6v-2h2v2zm0-4H6v-2h2v2zm0-4H6V7h2v2zm10 8h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V7h2v2z"},"children":[]}]};exports.ic_theaters=ic_theaters;var ic_theaters_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 3v2h-2V3H8v2H6V3H4v18h2v-2h2v2h8v-2h2v2h2V3h-2zM8 17H6v-2h2v2zm0-4H6v-2h2v2zm0-4H6V7h2v2zm6 10h-4V5h4v14zm4-2h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V7h2v2z"},"children":[]}]};exports.ic_theaters_outline=ic_theaters_outline;var ic_theaters_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 3v2h-2V3H8v2H6V3H4v18h2v-2h2v2h8v-2h2v2h2V3h-2zM8 17H6v-2h2v2zm0-4H6v-2h2v2zm0-4H6V7h2v2zm6 10h-4V5h4v14zm4-2h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V7h2v2z"},"children":[]},{"name":"path","attribs":{"d":"M10 5h4v14h-4z","opacity":".3"},"children":[]}]};exports.ic_theaters_twotone=ic_theaters_twotone;var ic_thumb_down={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15 3H6c-.83 0-1.54.5-1.84 1.22l-3.02 7.05c-.09.23-.14.47-.14.73v2c0 1.1.9 2 2 2h6.31l-.95 4.57-.03.32c0 .41.17.79.44 1.06L9.83 23l6.59-6.59c.36-.36.58-.86.58-1.41V5c0-1.1-.9-2-2-2zm4 0v12h4V3h-4z"},"children":[]}]};exports.ic_thumb_down=ic_thumb_down;var ic_thumb_down_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0zm0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15 3H6c-.83 0-1.54.5-1.84 1.22l-3.02 7.05c-.09.23-.14.47-.14.73v2c0 1.1.9 2 2 2h6.31l-.95 4.57-.03.32c0 .41.17.79.44 1.06L9.83 23l6.59-6.59c.36-.36.58-.86.58-1.41V5c0-1.1-.9-2-2-2zm0 12l-4.34 4.34L12 14H3v-2l3-7h9v10zm4-12h4v12h-4z"},"children":[]}]};exports.ic_thumb_down_outline=ic_thumb_down_outline;var ic_thumb_down_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0zm0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 12v2h9l-1.34 5.34L15 15V5H6z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M15 3H6c-.83 0-1.54.5-1.84 1.22l-3.02 7.05c-.09.23-.14.47-.14.73v2c0 1.1.9 2 2 2h6.31l-.95 4.57-.03.32c0 .41.17.79.44 1.06L9.83 23l6.59-6.59c.36-.36.58-.86.58-1.41V5c0-1.1-.9-2-2-2zm0 12l-4.34 4.34L12 14H3v-2l3-7h9v10zm4-12h4v12h-4z"},"children":[]}]};exports.ic_thumb_down_twotone=ic_thumb_down_twotone;var ic_thumb_down_off_alt={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M24 24H0V0h24v24z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10.89 18.28l.57-2.89c.12-.59-.04-1.2-.42-1.66-.38-.46-.94-.73-1.54-.73H4v-1.08L6.57 6h8.09c.18 0 .34.16.34.34v7.84l-4.11 4.1M10 22l6.41-6.41c.38-.38.59-.89.59-1.42V6.34C17 5.05 15.95 4 14.66 4h-8.1c-.71 0-1.36.37-1.72.97l-2.67 6.15c-.11.25-.17.52-.17.8V13c0 1.1.9 2 2 2h5.5l-.92 4.65c-.05.22-.02.46.08.66.23.45.52.86.88 1.22L10 22zm10-7h2V4h-2c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1z"},"children":[]}]};exports.ic_thumb_down_off_alt=ic_thumb_down_off_alt;var ic_thumb_up={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M1 21h4V9H1v12zm22-11c0-1.1-.9-2-2-2h-6.31l.95-4.57.03-.32c0-.41-.17-.79-.44-1.06L14.17 1 7.59 7.59C7.22 7.95 7 8.45 7 9v10c0 1.1.9 2 2 2h9c.83 0 1.54-.5 1.84-1.22l3.02-7.05c.09-.23.14-.47.14-.73v-2z"},"children":[]}]};exports.ic_thumb_up=ic_thumb_up;var ic_thumb_up_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0zm0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9 21h9c.83 0 1.54-.5 1.84-1.22l3.02-7.05c.09-.23.14-.47.14-.73v-2c0-1.1-.9-2-2-2h-6.31l.95-4.57.03-.32c0-.41-.17-.79-.44-1.06L14.17 1 7.58 7.59C7.22 7.95 7 8.45 7 9v10c0 1.1.9 2 2 2zM9 9l4.34-4.34L12 10h9v2l-3 7H9V9zM1 9h4v12H1z"},"children":[]}]};exports.ic_thumb_up_outline=ic_thumb_up_outline;var ic_thumb_up_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0zm0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 12v-2h-9l1.34-5.34L9 9v10h9z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M9 21h9c.83 0 1.54-.5 1.84-1.22l3.02-7.05c.09-.23.14-.47.14-.73v-2c0-1.1-.9-2-2-2h-6.31l.95-4.57.03-.32c0-.41-.17-.79-.44-1.06L14.17 1 7.58 7.59C7.22 7.95 7 8.45 7 9v10c0 1.1.9 2 2 2zM9 9l4.34-4.34L12 10h9v2l-3 7H9V9zM1 9h4v12H1z"},"children":[]}]};exports.ic_thumb_up_twotone=ic_thumb_up_twotone;var ic_thumb_up_off_alt={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13.11 5.72l-.57 2.89c-.12.59.04 1.2.42 1.66.38.46.94.73 1.54.73H20v1.08L17.43 18H9.34c-.18 0-.34-.16-.34-.34V9.82l4.11-4.1M14 2L7.59 8.41C7.21 8.79 7 9.3 7 9.83v7.83C7 18.95 8.05 20 9.34 20h8.1c.71 0 1.36-.37 1.72-.97l2.67-6.15c.11-.25.17-.52.17-.8V11c0-1.1-.9-2-2-2h-5.5l.92-4.65c.05-.22.02-.46-.08-.66-.23-.45-.52-.86-.88-1.22L14 2zM4 9H2v11h2c.55 0 1-.45 1-1v-9c0-.55-.45-1-1-1z"},"children":[]}]};exports.ic_thumb_up_off_alt=ic_thumb_up_off_alt;var ic_thumbs_up_down={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 6c0-.55-.45-1-1-1H5.82l.66-3.18.02-.23c0-.31-.13-.59-.33-.8L5.38 0 .44 4.94C.17 5.21 0 5.59 0 6v6.5c0 .83.67 1.5 1.5 1.5h6.75c.62 0 1.15-.38 1.38-.91l2.26-5.29c.07-.17.11-.36.11-.55V6zm10.5 4h-6.75c-.62 0-1.15.38-1.38.91l-2.26 5.29c-.07.17-.11.36-.11.55V18c0 .55.45 1 1 1h5.18l-.66 3.18-.02.24c0 .31.13.59.33.8l.79.78 4.94-4.94c.27-.27.44-.65.44-1.06v-6.5c0-.83-.67-1.5-1.5-1.5z"},"children":[]}]};exports.ic_thumbs_up_down=ic_thumbs_up_down;var ic_thumbs_up_down_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0zm0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 6c0-.55-.45-1-1-1H5.82l.66-3.18.02-.23c0-.31-.13-.59-.33-.8L5.38 0 .44 4.94C.17 5.21 0 5.59 0 6v6.5c0 .83.67 1.5 1.5 1.5h6.75c.62 0 1.15-.38 1.38-.91l2.26-5.29c.07-.17.11-.36.11-.55V6zm-2 1.13L7.92 12H2V6.21l1.93-1.93L3.36 7H10v.13zM22.5 10h-6.75c-.62 0-1.15.38-1.38.91l-2.26 5.29c-.07.17-.11.36-.11.55V18c0 .55.45 1 1 1h5.18l-.66 3.18-.02.24c0 .31.13.59.33.8l.79.78 4.94-4.94c.27-.27.44-.65.44-1.06v-6.5c0-.83-.67-1.5-1.5-1.5zm-.5 7.79l-1.93 1.93.57-2.72H14v-.13L16.08 12H22v5.79z"},"children":[]}]};exports.ic_thumbs_up_down_outline=ic_thumbs_up_down_outline;var ic_thumbs_up_down_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0zm0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 6c0-.55-.45-1-1-1H5.82l.66-3.18.02-.23c0-.31-.13-.59-.33-.8L5.38 0 .44 4.94C.17 5.21 0 5.59 0 6v6.5c0 .83.67 1.5 1.5 1.5h6.75c.62 0 1.15-.38 1.38-.91l2.26-5.29c.07-.17.11-.36.11-.55V6zm-2 1.13L7.92 12H2V6.21l1.93-1.93L3.36 7H10v.13zM22.5 10h-6.75c-.62 0-1.15.38-1.38.91l-2.26 5.29c-.07.17-.11.36-.11.55V18c0 .55.45 1 1 1h5.18l-.66 3.18-.02.24c0 .31.13.59.33.8l.79.78 4.94-4.94c.27-.27.44-.65.44-1.06v-6.5c0-.83-.67-1.5-1.5-1.5zm-.5 7.79l-1.93 1.93.57-2.72H14v-.13L16.08 12H22v5.79z"},"children":[]},{"name":"path","attribs":{"d":"M3.93 4.28L2 6.21V12h5.92L10 7.13V7H3.36zM14 16.87V17h6.64l-.57 2.72L22 17.79V12h-5.92z","opacity":".3"},"children":[]}]};exports.ic_thumbs_up_down_twotone=ic_thumbs_up_down_twotone;var ic_timeline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M23,8c0,1.1-0.9,2-2,2c-0.18,0-0.35-0.02-0.51-0.07l-3.56,3.55C16.98,13.64,17,13.82,17,14c0,1.1-0.9,2-2,2s-2-0.9-2-2 c0-0.18,0.02-0.36,0.07-0.52l-2.55-2.55C10.36,10.98,10.18,11,10,11s-0.36-0.02-0.52-0.07l-4.55,4.56C4.98,15.65,5,15.82,5,16 c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2c0.18,0,0.35,0.02,0.51,0.07l4.56-4.55C8.02,9.36,8,9.18,8,9c0-1.1,0.9-2,2-2s2,0.9,2,2 c0,0.18-0.02,0.36-0.07,0.52l2.55,2.55C14.64,12.02,14.82,12,15,12s0.36,0.02,0.52,0.07l3.55-3.56C19.02,8.35,19,8.18,19,8 c0-1.1,0.9-2,2-2S23,6.9,23,8z"},"children":[{"name":"path","attribs":{"d":"M23,8c0,1.1-0.9,2-2,2c-0.18,0-0.35-0.02-0.51-0.07l-3.56,3.55C16.98,13.64,17,13.82,17,14c0,1.1-0.9,2-2,2s-2-0.9-2-2 c0-0.18,0.02-0.36,0.07-0.52l-2.55-2.55C10.36,10.98,10.18,11,10,11s-0.36-0.02-0.52-0.07l-4.55,4.56C4.98,15.65,5,15.82,5,16 c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2c0.18,0,0.35,0.02,0.51,0.07l4.56-4.55C8.02,9.36,8,9.18,8,9c0-1.1,0.9-2,2-2s2,0.9,2,2 c0,0.18-0.02,0.36-0.07,0.52l2.55,2.55C14.64,12.02,14.82,12,15,12s0.36,0.02,0.52,0.07l3.55-3.56C19.02,8.35,19,8.18,19,8 c0-1.1,0.9-2,2-2S23,6.9,23,8z"},"children":[]}]}]}]}]}]}]}]};exports.ic_timeline=ic_timeline;var ic_timeline_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M23,8c0,1.1-0.9,2-2,2c-0.18,0-0.35-0.02-0.51-0.07l-3.56,3.55C16.98,13.64,17,13.82,17,14c0,1.1-0.9,2-2,2s-2-0.9-2-2 c0-0.18,0.02-0.36,0.07-0.52l-2.55-2.55C10.36,10.98,10.18,11,10,11c-0.18,0-0.36-0.02-0.52-0.07l-4.55,4.56 C4.98,15.65,5,15.82,5,16c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2c0.18,0,0.35,0.02,0.51,0.07l4.56-4.55C8.02,9.36,8,9.18,8,9 c0-1.1,0.9-2,2-2s2,0.9,2,2c0,0.18-0.02,0.36-0.07,0.52l2.55,2.55C14.64,12.02,14.82,12,15,12c0.18,0,0.36,0.02,0.52,0.07 l3.55-3.56C19.02,8.35,19,8.18,19,8c0-1.1,0.9-2,2-2S23,6.9,23,8z"},"children":[{"name":"path","attribs":{"d":"M23,8c0,1.1-0.9,2-2,2c-0.18,0-0.35-0.02-0.51-0.07l-3.56,3.55C16.98,13.64,17,13.82,17,14c0,1.1-0.9,2-2,2s-2-0.9-2-2 c0-0.18,0.02-0.36,0.07-0.52l-2.55-2.55C10.36,10.98,10.18,11,10,11c-0.18,0-0.36-0.02-0.52-0.07l-4.55,4.56 C4.98,15.65,5,15.82,5,16c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2c0.18,0,0.35,0.02,0.51,0.07l4.56-4.55C8.02,9.36,8,9.18,8,9 c0-1.1,0.9-2,2-2s2,0.9,2,2c0,0.18-0.02,0.36-0.07,0.52l2.55,2.55C14.64,12.02,14.82,12,15,12c0.18,0,0.36,0.02,0.52,0.07 l3.55-3.56C19.02,8.35,19,8.18,19,8c0-1.1,0.9-2,2-2S23,6.9,23,8z"},"children":[]}]}]}]}]}]};exports.ic_timeline_outline=ic_timeline_outline;var ic_timeline_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M23,8c0,1.1-0.9,2-2,2c-0.18,0-0.35-0.02-0.51-0.07l-3.56,3.55C16.98,13.64,17,13.82,17,14c0,1.1-0.9,2-2,2s-2-0.9-2-2 c0-0.18,0.02-0.36,0.07-0.52l-2.55-2.55C10.36,10.98,10.18,11,10,11c-0.18,0-0.36-0.02-0.52-0.07l-4.55,4.56 C4.98,15.65,5,15.82,5,16c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2c0.18,0,0.35,0.02,0.51,0.07l4.56-4.55C8.02,9.36,8,9.18,8,9 c0-1.1,0.9-2,2-2s2,0.9,2,2c0,0.18-0.02,0.36-0.07,0.52l2.55,2.55C14.64,12.02,14.82,12,15,12c0.18,0,0.36,0.02,0.52,0.07 l3.55-3.56C19.02,8.35,19,8.18,19,8c0-1.1,0.9-2,2-2S23,6.9,23,8z"},"children":[{"name":"path","attribs":{"d":"M23,8c0,1.1-0.9,2-2,2c-0.18,0-0.35-0.02-0.51-0.07l-3.56,3.55C16.98,13.64,17,13.82,17,14c0,1.1-0.9,2-2,2s-2-0.9-2-2 c0-0.18,0.02-0.36,0.07-0.52l-2.55-2.55C10.36,10.98,10.18,11,10,11c-0.18,0-0.36-0.02-0.52-0.07l-4.55,4.56 C4.98,15.65,5,15.82,5,16c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2c0.18,0,0.35,0.02,0.51,0.07l4.56-4.55C8.02,9.36,8,9.18,8,9 c0-1.1,0.9-2,2-2s2,0.9,2,2c0,0.18-0.02,0.36-0.07,0.52l2.55,2.55C14.64,12.02,14.82,12,15,12c0.18,0,0.36,0.02,0.52,0.07 l3.55-3.56C19.02,8.35,19,8.18,19,8c0-1.1,0.9-2,2-2S23,6.9,23,8z"},"children":[]}]}]}]}]}]};exports.ic_timeline_twotone=ic_timeline_twotone;var ic_toc={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 9h14V7H3v2zm0 4h14v-2H3v2zm0 4h14v-2H3v2zm16 0h2v-2h-2v2zm0-10v2h2V7h-2zm0 6h2v-2h-2v2z"},"children":[]}]};exports.ic_toc=ic_toc;var ic_toc_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0zm0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 9h14V7H3v2zm0 4h14v-2H3v2zm0 4h14v-2H3v2zm16 0h2v-2h-2v2zm0-10v2h2V7h-2zm0 6h2v-2h-2v2z"},"children":[]}]};exports.ic_toc_outline=ic_toc_outline;var ic_toc_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0zm0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 9h14V7H3v2zm0 4h14v-2H3v2zm0 4h14v-2H3v2zm16 0h2v-2h-2v2zm0-10v2h2V7h-2zm0 6h2v-2h-2v2z"},"children":[]}]};exports.ic_toc_twotone=ic_toc_twotone;var ic_today={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11zM7 10h5v5H7z"},"children":[]}]};exports.ic_today=ic_today;var ic_today_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V9h14v10zm0-12H5V5h14v2zM7 11h5v5H7z"},"children":[]}]};exports.ic_today_outline=ic_today_outline;var ic_today_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V9h14v10zm0-12H5V5h14v2zm-7 4H7v5h5v-5z"},"children":[]},{"name":"path","attribs":{"d":"M5 5h14v2H5z","opacity":".3"},"children":[]}]};exports.ic_today_twotone=ic_today_twotone;var ic_toll={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z"},"children":[]},{"name":"path","attribs":{"d":"M3 12c0-2.61 1.67-4.83 4-5.65V4.26C3.55 5.15 1 8.27 1 12s2.55 6.85 6 7.74v-2.09c-2.33-.82-4-3.04-4-5.65z"},"children":[]}]};exports.ic_toll=ic_toll;var ic_toll_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zM3 12c0-2.61 1.67-4.83 4-5.65V4.26C3.55 5.15 1 8.27 1 12s2.55 6.85 6 7.74v-2.09c-2.33-.82-4-3.04-4-5.65z"},"children":[]}]};exports.ic_toll_outline=ic_toll_outline;var ic_toll_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M15 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zM3 12c0-2.61 1.67-4.83 4-5.65V4.26C3.55 5.15 1 8.27 1 12c0 3.73 2.55 6.85 6 7.74v-2.09c-2.33-.82-4-3.04-4-5.65z"},"children":[]}]};exports.ic_toll_twotone=ic_toll_twotone;var ic_touch_app={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M9,11.24V7.5C9,6.12,10.12,5,11.5,5S14,6.12,14,7.5v3.74c1.21-0.81,2-2.18,2-3.74C16,5.01,13.99,3,11.5,3S7,5.01,7,7.5 C7,9.06,7.79,10.43,9,11.24z M18.84,15.87l-4.54-2.26c-0.17-0.07-0.35-0.11-0.54-0.11H13v-6C13,6.67,12.33,6,11.5,6 S10,6.67,10,7.5v10.74c-3.6-0.76-3.54-0.75-3.67-0.75c-0.31,0-0.59,0.13-0.79,0.33l-0.79,0.8l4.94,4.94 C9.96,23.83,10.34,24,10.75,24h6.79c0.75,0,1.33-0.55,1.44-1.28l0.75-5.27c0.01-0.07,0.02-0.14,0.02-0.2 C19.75,16.63,19.37,16.09,18.84,15.87z"},"children":[{"name":"path","attribs":{"d":"M9,11.24V7.5C9,6.12,10.12,5,11.5,5S14,6.12,14,7.5v3.74c1.21-0.81,2-2.18,2-3.74C16,5.01,13.99,3,11.5,3S7,5.01,7,7.5 C7,9.06,7.79,10.43,9,11.24z M18.84,15.87l-4.54-2.26c-0.17-0.07-0.35-0.11-0.54-0.11H13v-6C13,6.67,12.33,6,11.5,6 S10,6.67,10,7.5v10.74c-3.6-0.76-3.54-0.75-3.67-0.75c-0.31,0-0.59,0.13-0.79,0.33l-0.79,0.8l4.94,4.94 C9.96,23.83,10.34,24,10.75,24h6.79c0.75,0,1.33-0.55,1.44-1.28l0.75-5.27c0.01-0.07,0.02-0.14,0.02-0.2 C19.75,16.63,19.37,16.09,18.84,15.87z"},"children":[]}]}]}]}]}]}]}]};exports.ic_touch_app=ic_touch_app;var ic_touch_app_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M18.19,12.44l-3.24-1.62c1.29-1,2.12-2.56,2.12-4.32c0-3.03-2.47-5.5-5.5-5.5s-5.5,2.47-5.5,5.5c0,2.13,1.22,3.98,3,4.89 v3.26c-2.15-0.46-2.02-0.44-2.26-0.44c-0.53,0-1.03,0.21-1.41,0.59L4,16.22l5.09,5.09C9.52,21.75,10.12,22,10.74,22h6.3 c0.98,0,1.81-0.7,1.97-1.67l0.8-4.71C20.03,14.32,19.38,13.04,18.19,12.44z M17.84,15.29L17.04,20h-6.3 c-0.09,0-0.17-0.04-0.24-0.1l-3.68-3.68l4.25,0.89V6.5c0-0.28,0.22-0.5,0.5-0.5c0.28,0,0.5,0.22,0.5,0.5v6h1.76l3.46,1.73 C17.69,14.43,17.91,14.86,17.84,15.29z M8.07,6.5c0-1.93,1.57-3.5,3.5-3.5s3.5,1.57,3.5,3.5c0,0.95-0.38,1.81-1,2.44V6.5 c0-1.38-1.12-2.5-2.5-2.5c-1.38,0-2.5,1.12-2.5,2.5v2.44C8.45,8.31,8.07,7.45,8.07,6.5z"},"children":[{"name":"path","attribs":{"d":"M18.19,12.44l-3.24-1.62c1.29-1,2.12-2.56,2.12-4.32c0-3.03-2.47-5.5-5.5-5.5s-5.5,2.47-5.5,5.5c0,2.13,1.22,3.98,3,4.89 v3.26c-2.15-0.46-2.02-0.44-2.26-0.44c-0.53,0-1.03,0.21-1.41,0.59L4,16.22l5.09,5.09C9.52,21.75,10.12,22,10.74,22h6.3 c0.98,0,1.81-0.7,1.97-1.67l0.8-4.71C20.03,14.32,19.38,13.04,18.19,12.44z M17.84,15.29L17.04,20h-6.3 c-0.09,0-0.17-0.04-0.24-0.1l-3.68-3.68l4.25,0.89V6.5c0-0.28,0.22-0.5,0.5-0.5c0.28,0,0.5,0.22,0.5,0.5v6h1.76l3.46,1.73 C17.69,14.43,17.91,14.86,17.84,15.29z M8.07,6.5c0-1.93,1.57-3.5,3.5-3.5s3.5,1.57,3.5,3.5c0,0.95-0.38,1.81-1,2.44V6.5 c0-1.38-1.12-2.5-2.5-2.5c-1.38,0-2.5,1.12-2.5,2.5v2.44C8.45,8.31,8.07,7.45,8.07,6.5z"},"children":[]}]}]}]}]}]};exports.ic_touch_app_outline=ic_touch_app_outline;var ic_touch_app_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M18.19,12.44l-3.24-1.62c1.29-1,2.12-2.56,2.12-4.32c0-3.03-2.47-5.5-5.5-5.5s-5.5,2.47-5.5,5.5c0,2.13,1.22,3.98,3,4.89 v3.26c-2.08-0.44-2.01-0.44-2.26-0.44c-0.53,0-1.03,0.21-1.41,0.59L4,16.22l5.09,5.09C9.52,21.75,10.12,22,10.74,22h6.3 c0.98,0,1.81-0.7,1.97-1.67l0.8-4.71C20.03,14.32,19.38,13.04,18.19,12.44z M8.07,6.5c0-1.93,1.57-3.5,3.5-3.5s3.5,1.57,3.5,3.5 c0,0.95-0.38,1.81-1,2.44V6.5c0-1.38-1.12-2.5-2.5-2.5c-1.38,0-2.5,1.12-2.5,2.5v2.44C8.45,8.31,8.07,7.45,8.07,6.5z M17.84,15.29 L17.04,20h-6.3c-0.09,0-0.17-0.04-0.24-0.1l-3.68-3.68l4.25,0.89V6.5c0-0.28,0.22-0.5,0.5-0.5c0.28,0,0.5,0.22,0.5,0.5v6h1.76 l3.46,1.73C17.69,14.43,17.91,14.86,17.84,15.29z"},"children":[{"name":"path","attribs":{"d":"M18.19,12.44l-3.24-1.62c1.29-1,2.12-2.56,2.12-4.32c0-3.03-2.47-5.5-5.5-5.5s-5.5,2.47-5.5,5.5c0,2.13,1.22,3.98,3,4.89 v3.26c-2.08-0.44-2.01-0.44-2.26-0.44c-0.53,0-1.03,0.21-1.41,0.59L4,16.22l5.09,5.09C9.52,21.75,10.12,22,10.74,22h6.3 c0.98,0,1.81-0.7,1.97-1.67l0.8-4.71C20.03,14.32,19.38,13.04,18.19,12.44z M8.07,6.5c0-1.93,1.57-3.5,3.5-3.5s3.5,1.57,3.5,3.5 c0,0.95-0.38,1.81-1,2.44V6.5c0-1.38-1.12-2.5-2.5-2.5c-1.38,0-2.5,1.12-2.5,2.5v2.44C8.45,8.31,8.07,7.45,8.07,6.5z M17.84,15.29 L17.04,20h-6.3c-0.09,0-0.17-0.04-0.24-0.1l-3.68-3.68l4.25,0.89V6.5c0-0.28,0.22-0.5,0.5-0.5c0.28,0,0.5,0.22,0.5,0.5v6h1.76 l3.46,1.73C17.69,14.43,17.91,14.86,17.84,15.29z"},"children":[]}]},{"name":"path","attribs":{"d":"M17.3,14.23l-3.46-1.73h-1.77v-6c0-0.28-0.22-0.5-0.5-0.5 c-0.28,0-0.5,0.22-0.5,0.5v10.61l-4.25-0.89l3.68,3.68c0.06,0.06,0.15,0.1,0.24,0.1h6.3l0.8-4.71 C17.91,14.86,17.69,14.43,17.3,14.23z","enable-background":"new","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M17.3,14.23l-3.46-1.73h-1.77v-6c0-0.28-0.22-0.5-0.5-0.5 c-0.28,0-0.5,0.22-0.5,0.5v10.61l-4.25-0.89l3.68,3.68c0.06,0.06,0.15,0.1,0.24,0.1h6.3l0.8-4.71 C17.91,14.86,17.69,14.43,17.3,14.23z","enable-background":"new","opacity":".3"},"children":[]}]}]}]}]}]};exports.ic_touch_app_twotone=ic_touch_app_twotone;var ic_tour={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 4H7V2H5v20h2v-8h14l-2-5 2-5zm-6 5c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2z"},"children":[]}]};exports.ic_tour=ic_tour;var ic_tour_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M21,4h-8h-1H7V2H5v2v10v8h2v-8h4h1h9l-2-5L21,4z M17.14,9.74l0.9,2.26H12h-1H7V6h5h1h5.05l-0.9,2.26L16.85,9L17.14,9.74z M14,9c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2S14,7.9,14,9z"},"children":[{"name":"path","attribs":{"d":"M21,4h-8h-1H7V2H5v2v10v8h2v-8h4h1h9l-2-5L21,4z M17.14,9.74l0.9,2.26H12h-1H7V6h5h1h5.05l-0.9,2.26L16.85,9L17.14,9.74z M14,9c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2S14,7.9,14,9z"},"children":[]}]}]}]};exports.ic_tour_outline=ic_tour_outline;var ic_tour_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"opacity":".3","points":"7,12 7,6 18.05,6 16.85,9 18.05,12"},"children":[{"name":"polygon","attribs":{"opacity":".3","points":"7,12 7,6 18.05,6 16.85,9 18.05,12"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M21,4h-8h-1H7V2H5v2v10v8h2v-8h4h1h9l-2-5L21,4z M7,12V6h11.05l-1.2,3l1.2,3H7z M14,9c0,1.1-0.9,2-2,2s-2-0.9-2-2 s0.9-2,2-2S14,7.9,14,9z"},"children":[{"name":"path","attribs":{"d":"M21,4h-8h-1H7V2H5v2v10v8h2v-8h4h1h9l-2-5L21,4z M7,12V6h11.05l-1.2,3l1.2,3H7z M14,9c0,1.1-0.9,2-2,2s-2-0.9-2-2 s0.9-2,2-2S14,7.9,14,9z"},"children":[]}]}]}]}]}]}]}]};exports.ic_tour_twotone=ic_tour_twotone;var ic_track_changes={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19.07 4.93l-1.41 1.41C19.1 7.79 20 9.79 20 12c0 4.42-3.58 8-8 8s-8-3.58-8-8c0-4.08 3.05-7.44 7-7.93v2.02C8.16 6.57 6 9.03 6 12c0 3.31 2.69 6 6 6s6-2.69 6-6c0-1.66-.67-3.16-1.76-4.24l-1.41 1.41C15.55 9.9 16 10.9 16 12c0 2.21-1.79 4-4 4s-4-1.79-4-4c0-1.86 1.28-3.41 3-3.86v2.14c-.6.35-1 .98-1 1.72 0 1.1.9 2 2 2s2-.9 2-2c0-.74-.4-1.38-1-1.72V2h-1C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10c0-2.76-1.12-5.26-2.93-7.07z"},"children":[]}]};exports.ic_track_changes=ic_track_changes;var ic_track_changes_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19.07 4.93l-1.41 1.41C19.1 7.79 20 9.79 20 12c0 4.42-3.58 8-8 8s-8-3.58-8-8c0-4.08 3.05-7.44 7-7.93v2.02C8.16 6.57 6 9.03 6 12c0 3.31 2.69 6 6 6s6-2.69 6-6c0-1.66-.67-3.16-1.76-4.24l-1.41 1.41C15.55 9.9 16 10.9 16 12c0 2.21-1.79 4-4 4s-4-1.79-4-4c0-1.86 1.28-3.41 3-3.86v2.14c-.6.35-1 .98-1 1.72 0 1.1.9 2 2 2s2-.9 2-2c0-.74-.4-1.38-1-1.72V2h-1C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10c0-2.76-1.12-5.26-2.93-7.07z"},"children":[]}]};exports.ic_track_changes_outline=ic_track_changes_outline;var ic_track_changes_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19.07 4.93l-1.41 1.41C19.1 7.79 20 9.79 20 12c0 4.42-3.58 8-8 8s-8-3.58-8-8c0-4.08 3.05-7.44 7-7.93v2.02C8.16 6.57 6 9.03 6 12c0 3.31 2.69 6 6 6s6-2.69 6-6c0-1.66-.67-3.16-1.76-4.24l-1.41 1.41C15.55 9.9 16 10.9 16 12c0 2.21-1.79 4-4 4s-4-1.79-4-4c0-1.86 1.28-3.41 3-3.86v2.14c-.6.35-1 .98-1 1.72 0 1.1.9 2 2 2s2-.9 2-2c0-.74-.4-1.38-1-1.72V2h-1C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10c0-2.76-1.12-5.26-2.93-7.07z"},"children":[]}]};exports.ic_track_changes_twotone=ic_track_changes_twotone;var ic_translate={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12.87 15.07l-2.54-2.51.03-.03c1.74-1.94 2.98-4.17 3.71-6.53H17V4h-7V2H8v2H1v1.99h11.17C11.5 7.92 10.44 9.75 9 11.35 8.07 10.32 7.3 9.19 6.69 8h-2c.73 1.63 1.73 3.17 2.98 4.56l-5.09 5.02L4 19l5-5 3.11 3.11.76-2.04zM18.5 10h-2L12 22h2l1.12-3h4.75L21 22h2l-4.5-12zm-2.62 7l1.62-4.33L19.12 17h-3.24z"},"children":[]}]};exports.ic_translate=ic_translate;var ic_translate_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12.87 15.07l-2.54-2.51.03-.03c1.74-1.94 2.98-4.17 3.71-6.53H17V4h-7V2H8v2H1v1.99h11.17C11.5 7.92 10.44 9.75 9 11.35 8.07 10.32 7.3 9.19 6.69 8h-2c.73 1.63 1.73 3.17 2.98 4.56l-5.09 5.02L4 19l5-5 3.11 3.11.76-2.04zM18.5 10h-2L12 22h2l1.12-3h4.75L21 22h2l-4.5-12zm-2.62 7l1.62-4.33L19.12 17h-3.24z"},"children":[]}]};exports.ic_translate_outline=ic_translate_outline;var ic_translate_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12.87 15.07l-2.54-2.51.03-.03c1.74-1.94 2.98-4.17 3.71-6.53H17V4h-7V2H8v2H1v1.99h11.17C11.5 7.92 10.44 9.75 9 11.35 8.07 10.32 7.3 9.19 6.69 8h-2c.73 1.63 1.73 3.17 2.98 4.56l-5.09 5.02L4 19l5-5 3.11 3.11.76-2.04zM18.5 10h-2L12 22h2l1.12-3h4.75L21 22h2l-4.5-12zm-2.62 7l1.62-4.33L19.12 17h-3.24z"},"children":[]}]};exports.ic_translate_twotone=ic_translate_twotone;var ic_trending_down={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16 18l2.29-2.29-4.88-4.88-4 4L2 7.41 3.41 6l6 6 4-4 6.3 6.29L22 12v6z"},"children":[]}]};exports.ic_trending_down=ic_trending_down;var ic_trending_down_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16 18l2.29-2.29-4.88-4.88-4 4L2 7.41 3.41 6l6 6 4-4 6.3 6.29L22 12v6h-6z"},"children":[]}]};exports.ic_trending_down_outline=ic_trending_down_outline;var ic_trending_down_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16 18l2.29-2.29-4.88-4.88-4 4L2 7.41 3.41 6l6 6 4-4 6.3 6.29L22 12v6h-6z"},"children":[]}]};exports.ic_trending_down_twotone=ic_trending_down_twotone;var ic_trending_flat={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 12l-4-4v3H3v2h15v3z"},"children":[]}]};exports.ic_trending_flat=ic_trending_flat;var ic_trending_flat_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 12l-4-4v3H3v2h15v3l4-4z"},"children":[]}]};exports.ic_trending_flat_outline=ic_trending_flat_outline;var ic_trending_flat_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 12l-4-4v3H3v2h15v3l4-4z"},"children":[]}]};exports.ic_trending_flat_twotone=ic_trending_flat_twotone;var ic_trending_up={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16 6l2.29 2.29-4.88 4.88-4-4L2 16.59 3.41 18l6-6 4 4 6.3-6.29L22 12V6z"},"children":[]}]};exports.ic_trending_up=ic_trending_up;var ic_trending_up_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16 6l2.29 2.29-4.88 4.88-4-4L2 16.59 3.41 18l6-6 4 4 6.3-6.29L22 12V6h-6z"},"children":[]}]};exports.ic_trending_up_outline=ic_trending_up_outline;var ic_trending_up_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16 6l2.29 2.29-4.88 4.88-4-4L2 16.59 3.41 18l6-6 4 4 6.3-6.29L22 12V6h-6z"},"children":[]}]};exports.ic_trending_up_twotone=ic_trending_up_twotone;var ic_turned_in={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 3H7c-1.1 0-1.99.9-1.99 2L5 21l7-3 7 3V5c0-1.1-.9-2-2-2z"},"children":[]}]};exports.ic_turned_in=ic_turned_in;var ic_turned_in_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 3H7c-1.1 0-1.99.9-1.99 2L5 21l7-3 7 3V5c0-1.1-.9-2-2-2z"},"children":[]}]};exports.ic_turned_in_outline=ic_turned_in_outline;var ic_turned_in_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 3H7c-1.1 0-1.99.9-1.99 2L5 21l7-3 7 3V5c0-1.1-.9-2-2-2zm0 14.97l-4.21-1.81-.79-.34-.79.34L7 17.97V5h10v12.97z"},"children":[]},{"name":"path","attribs":{"d":"M7 17.97l4.21-1.81.79-.34.79.34L17 17.97V5H7z","opacity":".3"},"children":[]}]};exports.ic_turned_in_twotone=ic_turned_in_twotone;var ic_turned_in_not={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 3H7c-1.1 0-1.99.9-1.99 2L5 21l7-3 7 3V5c0-1.1-.9-2-2-2zm0 15l-5-2.18L7 18V5h10v13z"},"children":[]}]};exports.ic_turned_in_not=ic_turned_in_not;var ic_turned_in_not_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 3H7c-1.1 0-1.99.9-1.99 2L5 21l7-3 7 3V5c0-1.1-.9-2-2-2zm0 15l-5-2.18L7 18V5h10v13z"},"children":[]}]};exports.ic_turned_in_not_outline=ic_turned_in_not_outline;var ic_turned_in_not_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 3H7c-1.1 0-1.99.9-1.99 2L5 21l7-3 7 3V5c0-1.1-.9-2-2-2zm0 15l-5-2.18L7 18V5h10v13z"},"children":[]}]};exports.ic_turned_in_not_twotone=ic_turned_in_not_twotone;var ic_unpublished={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M21.19,21.19L2.81,2.81L1.39,4.22l2.27,2.27C2.61,8.07,2,9.96,2,12c0,5.52,4.48,10,10,10c2.04,0,3.93-0.61,5.51-1.66 l2.27,2.27L21.19,21.19z M10.59,16.6l-4.24-4.24l1.41-1.41l2.83,2.83l0.18-0.18l1.41,1.41L10.59,16.6z M13.59,10.76l-7.1-7.1 C8.07,2.61,9.96,2,12,2c5.52,0,10,4.48,10,10c0,2.04-0.61,3.93-1.66,5.51l-5.34-5.34l2.65-2.65l-1.41-1.41L13.59,10.76z"},"children":[]}]};exports.ic_unpublished=ic_unpublished;var ic_unpublished_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M7.94,5.12L6.49,3.66C8.07,2.61,9.96,2,12,2c5.52,0,10,4.48,10,10c0,2.04-0.61,3.93-1.66,5.51l-1.46-1.46 C19.59,14.86,20,13.48,20,12c0-4.41-3.59-8-8-8C10.52,4,9.14,4.41,7.94,5.12z M17.66,9.53l-1.41-1.41l-2.65,2.65l1.41,1.41 L17.66,9.53z M19.78,22.61l-2.27-2.27C15.93,21.39,14.04,22,12,22C6.48,22,2,17.52,2,12c0-2.04,0.61-3.93,1.66-5.51L1.39,4.22 l1.41-1.41l18.38,18.38L19.78,22.61z M16.06,18.88l-3.88-3.88l-1.59,1.59l-4.24-4.24l1.41-1.41l2.83,2.83l0.18-0.18L5.12,7.94 C4.41,9.14,4,10.52,4,12c0,4.41,3.59,8,8,8C13.48,20,14.86,19.59,16.06,18.88z"},"children":[]}]};exports.ic_unpublished_outline=ic_unpublished_outline;var ic_unpublished_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M13.59,10.76l2.65-2.65l1.41,1.41l-2.65,2.65l3.88,3.88C19.59,14.86,20,13.48,20,12c0-4.41-3.59-8-8-8 c-1.48,0-2.86,0.41-4.06,1.12L13.59,10.76z M17.66,9.53l-1.41-1.41l-2.65,2.65l1.41,1.41L17.66,9.53z M16.06,18.88l-3.88-3.88 l-1.59,1.59l-4.24-4.24l1.41-1.41l2.83,2.83l0.18-0.18L5.12,7.94C4.41,9.14,4,10.52,4,12c0,4.41,3.59,8,8,8 C13.48,20,14.86,19.59,16.06,18.88z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M7.94,5.12L6.49,3.66C8.07,2.61,9.96,2,12,2c5.52,0,10,4.48,10,10c0,2.04-0.61,3.93-1.66,5.51l-1.46-1.46 C19.59,14.86,20,13.48,20,12c0-4.41-3.59-8-8-8C10.52,4,9.14,4.41,7.94,5.12z M17.66,9.53l-1.41-1.41l-2.65,2.65l1.41,1.41 L17.66,9.53z M19.78,22.61l-2.27-2.27C15.93,21.39,14.04,22,12,22C6.48,22,2,17.52,2,12c0-2.04,0.61-3.93,1.66-5.51L1.39,4.22 l1.41-1.41l18.38,18.38L19.78,22.61z M16.06,18.88l-3.88-3.88l-1.59,1.59l-4.24-4.24l1.41-1.41l2.83,2.83l0.18-0.18L5.12,7.94 C4.41,9.14,4,10.52,4,12c0,4.41,3.59,8,8,8C13.48,20,14.86,19.59,16.06,18.88z"},"children":[]}]};exports.ic_unpublished_twotone=ic_unpublished_twotone;var ic_update={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M21,10.12h-6.78l2.74-2.82c-2.73-2.7-7.15-2.8-9.88-0.1c-2.73,2.71-2.73,7.08,0,9.79s7.15,2.71,9.88,0 C18.32,15.65,19,14.08,19,12.1h2c0,1.98-0.88,4.55-2.64,6.29c-3.51,3.48-9.21,3.48-12.72,0c-3.5-3.47-3.53-9.11-0.02-12.58 s9.14-3.47,12.65,0L21,3V10.12z M12.5,8v4.25l3.5,2.08l-0.72,1.21L11,13V8H12.5z"},"children":[{"name":"path","attribs":{"d":"M21,10.12h-6.78l2.74-2.82c-2.73-2.7-7.15-2.8-9.88-0.1c-2.73,2.71-2.73,7.08,0,9.79s7.15,2.71,9.88,0 C18.32,15.65,19,14.08,19,12.1h2c0,1.98-0.88,4.55-2.64,6.29c-3.51,3.48-9.21,3.48-12.72,0c-3.5-3.47-3.53-9.11-0.02-12.58 s9.14-3.47,12.65,0L21,3V10.12z M12.5,8v4.25l3.5,2.08l-0.72,1.21L11,13V8H12.5z"},"children":[]}]}]}]}]}]}]}]};exports.ic_update=ic_update;var ic_update_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M11,8v5l4.25,2.52l0.77-1.28l-3.52-2.09V8H11z M21,10V3l-2.64,2.64C16.74,4.01,14.49,3,12,3c-4.97,0-9,4.03-9,9 s4.03,9,9,9s9-4.03,9-9h-2c0,3.86-3.14,7-7,7s-7-3.14-7-7s3.14-7,7-7c1.93,0,3.68,0.79,4.95,2.05L14,10H21z"},"children":[{"name":"path","attribs":{"d":"M11,8v5l4.25,2.52l0.77-1.28l-3.52-2.09V8H11z M21,10V3l-2.64,2.64C16.74,4.01,14.49,3,12,3c-4.97,0-9,4.03-9,9 s4.03,9,9,9s9-4.03,9-9h-2c0,3.86-3.14,7-7,7s-7-3.14-7-7s3.14-7,7-7c1.93,0,3.68,0.79,4.95,2.05L14,10H21z"},"children":[]}]}]}]}]}]};exports.ic_update_outline=ic_update_outline;var ic_update_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M11,8v5l4.25,2.52l0.77-1.28l-3.52-2.09V8H11z M21,10V3l-2.64,2.64C16.74,4.01,14.49,3,12,3c-4.97,0-9,4.03-9,9 s4.03,9,9,9s9-4.03,9-9h-2c0,3.86-3.14,7-7,7s-7-3.14-7-7s3.14-7,7-7c1.93,0,3.68,0.79,4.95,2.05L14,10H21z"},"children":[{"name":"path","attribs":{"d":"M11,8v5l4.25,2.52l0.77-1.28l-3.52-2.09V8H11z M21,10V3l-2.64,2.64C16.74,4.01,14.49,3,12,3c-4.97,0-9,4.03-9,9 s4.03,9,9,9s9-4.03,9-9h-2c0,3.86-3.14,7-7,7s-7-3.14-7-7s3.14-7,7-7c1.93,0,3.68,0.79,4.95,2.05L14,10H21z"},"children":[]}]}]}]}]}]};exports.ic_update_twotone=ic_update_twotone;var ic_upgrade={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M16,18v2H8v-2H16z M11,7.99V16h2V7.99h3L12,4L8,7.99H11z"},"children":[{"name":"path","attribs":{"d":"M16,18v2H8v-2H16z M11,7.99V16h2V7.99h3L12,4L8,7.99H11z"},"children":[]}]}]}]};exports.ic_upgrade=ic_upgrade;var ic_upgrade_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M16,18v2H8v-2H16z M11,7.99V16h2V7.99h3L12,4L8,7.99H11z"},"children":[{"name":"path","attribs":{"d":"M16,18v2H8v-2H16z M11,7.99V16h2V7.99h3L12,4L8,7.99H11z"},"children":[]}]}]}]};exports.ic_upgrade_outline=ic_upgrade_outline;var ic_upgrade_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M16,18v2H8v-2H16z M11,7.99V16h2V7.99h3L12,4L8,7.99H11z"},"children":[{"name":"path","attribs":{"d":"M16,18v2H8v-2H16z M11,7.99V16h2V7.99h3L12,4L8,7.99H11z"},"children":[]}]}]}]};exports.ic_upgrade_twotone=ic_upgrade_twotone;var ic_verified={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M23,12l-2.44-2.79l0.34-3.69l-3.61-0.82L15.4,1.5L12,2.96L8.6,1.5L6.71,4.69L3.1,5.5L3.44,9.2L1,12l2.44,2.79l-0.34,3.7 l3.61,0.82L8.6,22.5l3.4-1.47l3.4,1.46l1.89-3.19l3.61-0.82l-0.34-3.69L23,12z M10.09,16.72l-3.8-3.81l1.48-1.48l2.32,2.33 l5.85-5.87l1.48,1.48L10.09,16.72z"},"children":[{"name":"path","attribs":{"d":"M23,12l-2.44-2.79l0.34-3.69l-3.61-0.82L15.4,1.5L12,2.96L8.6,1.5L6.71,4.69L3.1,5.5L3.44,9.2L1,12l2.44,2.79l-0.34,3.7 l3.61,0.82L8.6,22.5l3.4-1.47l3.4,1.46l1.89-3.19l3.61-0.82l-0.34-3.69L23,12z M10.09,16.72l-3.8-3.81l1.48-1.48l2.32,2.33 l5.85-5.87l1.48,1.48L10.09,16.72z"},"children":[]}]}]}]};exports.ic_verified=ic_verified;var ic_verified_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M23,11.99l-2.44-2.79l0.34-3.69l-3.61-0.82L15.4,1.5L12,2.96L8.6,1.5L6.71,4.69L3.1,5.5L3.44,9.2L1,11.99l2.44,2.79 l-0.34,3.7l3.61,0.82L8.6,22.5l3.4-1.47l3.4,1.46l1.89-3.19l3.61-0.82l-0.34-3.69L23,11.99z M19.05,13.47l-0.56,0.65l0.08,0.85 l0.18,1.95l-1.9,0.43l-0.84,0.19l-0.44,0.74l-0.99,1.68l-1.78-0.77L12,18.85l-0.79,0.34l-1.78,0.77l-0.99-1.67l-0.44-0.74 l-0.84-0.19l-1.9-0.43l0.18-1.96l0.08-0.85l-0.56-0.65l-1.29-1.47l1.29-1.48l0.56-0.65L5.43,9.01L5.25,7.07l1.9-0.43l0.84-0.19 l0.44-0.74l0.99-1.68l1.78,0.77L12,5.14l0.79-0.34l1.78-0.77l0.99,1.68l0.44,0.74l0.84,0.19l1.9,0.43l-0.18,1.95l-0.08,0.85 l0.56,0.65l1.29,1.47L19.05,13.47z"},"children":[{"name":"path","attribs":{"d":"M23,11.99l-2.44-2.79l0.34-3.69l-3.61-0.82L15.4,1.5L12,2.96L8.6,1.5L6.71,4.69L3.1,5.5L3.44,9.2L1,11.99l2.44,2.79 l-0.34,3.7l3.61,0.82L8.6,22.5l3.4-1.47l3.4,1.46l1.89-3.19l3.61-0.82l-0.34-3.69L23,11.99z M19.05,13.47l-0.56,0.65l0.08,0.85 l0.18,1.95l-1.9,0.43l-0.84,0.19l-0.44,0.74l-0.99,1.68l-1.78-0.77L12,18.85l-0.79,0.34l-1.78,0.77l-0.99-1.67l-0.44-0.74 l-0.84-0.19l-1.9-0.43l0.18-1.96l0.08-0.85l-0.56-0.65l-1.29-1.47l1.29-1.48l0.56-0.65L5.43,9.01L5.25,7.07l1.9-0.43l0.84-0.19 l0.44-0.74l0.99-1.68l1.78,0.77L12,5.14l0.79-0.34l1.78-0.77l0.99,1.68l0.44,0.74l0.84,0.19l1.9,0.43l-0.18,1.95l-0.08,0.85 l0.56,0.65l1.29,1.47L19.05,13.47z"},"children":[]}]},{"name":"polygon","attribs":{"points":"10.09,13.75 7.77,11.42 6.29,12.91 10.09,16.72 17.43,9.36 15.95,7.87"},"children":[{"name":"polygon","attribs":{"points":"10.09,13.75 7.77,11.42 6.29,12.91 10.09,16.72 17.43,9.36 15.95,7.87"},"children":[]}]}]}]}]}]};exports.ic_verified_outline=ic_verified_outline;var ic_verified_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M18.49,9.88l0.08-0.85l0.18-1.95l-1.9-0.43l-0.84-0.19l-0.44-0.74l-0.99-1.68L12.79,4.8L12,5.14L11.21,4.8 L9.42,4.03L8.43,5.71L7.99,6.45L7.15,6.64l-1.9,0.43l0.18,1.94l0.08,0.85l-0.56,0.65l-1.29,1.48l1.29,1.47l0.56,0.65l-0.08,0.85 l-0.18,1.96l1.9,0.43l0.84,0.19l0.44,0.74l0.99,1.67l1.78-0.77L12,18.85l0.79,0.34l1.78,0.77l0.99-1.68l0.44-0.74l0.84-0.19 l1.9-0.43l-0.18-1.95l-0.08-0.85l0.56-0.65l1.29-1.47l-1.29-1.47L18.49,9.88z M10.09,16.72l-3.8-3.81l1.48-1.48l2.32,2.33 l5.85-5.87l1.48,1.48L10.09,16.72z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M18.49,9.88l0.08-0.85l0.18-1.95l-1.9-0.43l-0.84-0.19l-0.44-0.74l-0.99-1.68L12.79,4.8L12,5.14L11.21,4.8 L9.42,4.03L8.43,5.71L7.99,6.45L7.15,6.64l-1.9,0.43l0.18,1.94l0.08,0.85l-0.56,0.65l-1.29,1.48l1.29,1.47l0.56,0.65l-0.08,0.85 l-0.18,1.96l1.9,0.43l0.84,0.19l0.44,0.74l0.99,1.67l1.78-0.77L12,18.85l0.79,0.34l1.78,0.77l0.99-1.68l0.44-0.74l0.84-0.19 l1.9-0.43l-0.18-1.95l-0.08-0.85l0.56-0.65l1.29-1.47l-1.29-1.47L18.49,9.88z M10.09,16.72l-3.8-3.81l1.48-1.48l2.32,2.33 l5.85-5.87l1.48,1.48L10.09,16.72z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M23,11.99l-2.44-2.79l0.34-3.69l-3.61-0.82L15.4,1.5L12,2.96L8.6,1.5L6.71,4.69L3.1,5.5L3.44,9.2L1,11.99l2.44,2.79 l-0.34,3.7l3.61,0.82L8.6,22.5l3.4-1.47l3.4,1.46l1.89-3.19l3.61-0.82l-0.34-3.69L23,11.99z M19.05,13.47l-0.56,0.65l0.08,0.85 l0.18,1.95l-1.9,0.43l-0.84,0.19l-0.44,0.74l-0.99,1.68l-1.78-0.77L12,18.85l-0.79,0.34l-1.78,0.77l-0.99-1.67l-0.44-0.74 l-0.84-0.19l-1.9-0.43l0.18-1.96l0.08-0.85l-0.56-0.65l-1.29-1.47l1.29-1.48l0.56-0.65L5.43,9.01L5.25,7.07l1.9-0.43l0.84-0.19 l0.44-0.74l0.99-1.68l1.78,0.77L12,5.14l0.79-0.34l1.78-0.77l0.99,1.68l0.44,0.74l0.84,0.19l1.9,0.43l-0.18,1.95l-0.08,0.85 l0.56,0.65l1.29,1.47L19.05,13.47z"},"children":[{"name":"path","attribs":{"d":"M23,11.99l-2.44-2.79l0.34-3.69l-3.61-0.82L15.4,1.5L12,2.96L8.6,1.5L6.71,4.69L3.1,5.5L3.44,9.2L1,11.99l2.44,2.79 l-0.34,3.7l3.61,0.82L8.6,22.5l3.4-1.47l3.4,1.46l1.89-3.19l3.61-0.82l-0.34-3.69L23,11.99z M19.05,13.47l-0.56,0.65l0.08,0.85 l0.18,1.95l-1.9,0.43l-0.84,0.19l-0.44,0.74l-0.99,1.68l-1.78-0.77L12,18.85l-0.79,0.34l-1.78,0.77l-0.99-1.67l-0.44-0.74 l-0.84-0.19l-1.9-0.43l0.18-1.96l0.08-0.85l-0.56-0.65l-1.29-1.47l1.29-1.48l0.56-0.65L5.43,9.01L5.25,7.07l1.9-0.43l0.84-0.19 l0.44-0.74l0.99-1.68l1.78,0.77L12,5.14l0.79-0.34l1.78-0.77l0.99,1.68l0.44,0.74l0.84,0.19l1.9,0.43l-0.18,1.95l-0.08,0.85 l0.56,0.65l1.29,1.47L19.05,13.47z"},"children":[]}]},{"name":"polygon","attribs":{"points":"10.09,13.75 7.77,11.42 6.29,12.91 10.09,16.72 17.43,9.36 15.95,7.87"},"children":[{"name":"polygon","attribs":{"points":"10.09,13.75 7.77,11.42 6.29,12.91 10.09,16.72 17.43,9.36 15.95,7.87"},"children":[]}]}]}]}]}]};exports.ic_verified_twotone=ic_verified_twotone;var ic_verified_user={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm-2 16l-4-4 1.41-1.41L10 14.17l6.59-6.59L18 9l-8 8z"},"children":[]}]};exports.ic_verified_user=ic_verified_user;var ic_verified_user_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm7 10c0 4.52-2.98 8.69-7 9.93-4.02-1.24-7-5.41-7-9.93V6.3l7-3.11 7 3.11V11zm-11.59.59L6 13l4 4 8-8-1.41-1.42L10 14.17z"},"children":[]}]};exports.ic_verified_user_outline=ic_verified_user_outline;var ic_verified_user_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm7 10c0 4.52-2.98 8.69-7 9.93-4.02-1.24-7-5.41-7-9.93V6.3l7-3.11 7 3.11V11zm-11.59.59L6 13l4 4 8-8-1.41-1.42L10 14.17z"},"children":[]},{"name":"path","attribs":{"d":"M5 6.3V11c0 4.52 2.98 8.69 7 9.93 4.02-1.23 7-5.41 7-9.93V6.3l-7-3.11L5 6.3zM18 9l-8 8-4-4 1.41-1.41L10 14.17l6.59-6.59L18 9z","opacity":".3"},"children":[]}]};exports.ic_verified_user_twotone=ic_verified_user_twotone;var ic_vertical_split={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 15h8v-2H3v2zm0 4h8v-2H3v2zm0-8h8V9H3v2zm0-6v2h8V5H3zm10 0h8v14h-8V5z"},"children":[]}]};exports.ic_vertical_split=ic_vertical_split;var ic_vertical_split_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 13h8v2H3zm0 4h8v2H3zm0-8h8v2H3zm0-4h8v2H3zm16 2v10h-4V7h4m2-2h-8v14h8V5z"},"children":[]}]};exports.ic_vertical_split_outline=ic_vertical_split_outline;var ic_vertical_split_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15 7h4v10h-4z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M3 13h8v2H3zm0 4h8v2H3zm0-8h8v2H3zm0-4h8v2H3zm10 0v14h8V5h-8zm6 12h-4V7h4v10z"},"children":[]}]};exports.ic_vertical_split_twotone=ic_vertical_split_twotone;var ic_view_agenda={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 13H3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h17c.55 0 1-.45 1-1v-6c0-.55-.45-1-1-1zm0-10H3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h17c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1z"},"children":[]}]};exports.ic_view_agenda=ic_view_agenda;var ic_view_agenda_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 5v4H4V5h15m0 10v4H4v-4h15m1-12H3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h17c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1zm0 10H3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h17c.55 0 1-.45 1-1v-6c0-.55-.45-1-1-1z"},"children":[]}]};exports.ic_view_agenda_outline=ic_view_agenda_outline;var ic_view_agenda_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 3H3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h17c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1zm-1 6H4V5h15v4zm1 4H3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h17c.55 0 1-.45 1-1v-6c0-.55-.45-1-1-1zm-1 6H4v-4h15v4z"},"children":[]},{"name":"path","attribs":{"d":"M4 15h15v4H4zM4 5h15v4H4z","opacity":".3"},"children":[]}]};exports.ic_view_agenda_twotone=ic_view_agenda_twotone;var ic_view_array={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 18h3V5H4v13zM18 5v13h3V5h-3zM8 18h9V5H8v13z"},"children":[]}]};exports.ic_view_array=ic_view_array;var ic_view_array_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15 7v9h-5V7h5m6-2h-3v13h3V5zm-4 0H8v13h9V5zM7 5H4v13h3V5z"},"children":[]}]};exports.ic_view_array_outline=ic_view_array_outline;var ic_view_array_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 5h3v13H4zm14 0h3v13h-3zM8 18h9V5H8v13zm2-11h5v9h-5V7z"},"children":[]},{"name":"path","attribs":{"d":"M10 7h5v9h-5z","opacity":".3"},"children":[]}]};exports.ic_view_array_twotone=ic_view_array_twotone;var ic_view_carousel={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 19h10V4H7v15zm-5-2h4V6H2v11zM18 6v11h4V6h-4z"},"children":[]}]};exports.ic_view_carousel=ic_view_carousel;var ic_view_carousel_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M2 6h4v11H2zm5 13h10V4H7v15zM9 6h6v11H9V6zm9 0h4v11h-4z"},"children":[]}]};exports.ic_view_carousel_outline=ic_view_carousel_outline;var ic_view_carousel_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 6h4v11h-4zM7 19h10V4H7v15zM9 6h6v11H9V6zM2 6h4v11H2z"},"children":[]},{"name":"path","attribs":{"d":"M9 6h6v11H9z","opacity":".3"},"children":[]}]};exports.ic_view_carousel_twotone=ic_view_carousel_twotone;var ic_view_column={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 18h5V5h-5v13zm-6 0h5V5H4v13zM16 5v13h5V5h-5z"},"children":[]}]};exports.ic_view_column=ic_view_column;var ic_view_column_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 5v13h17V5H4zm10 2v9h-3V7h3zM6 7h3v9H6V7zm13 9h-3V7h3v9z"},"children":[]}]};exports.ic_view_column_outline=ic_view_column_outline;var ic_view_column_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6 7h3v9H6zm5 0h3v9h-3zm5 0h3v9h-3z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M4 5v13h17V5H4zm5 11H6V7h3v9zm5 0h-3V7h3v9zm5 0h-3V7h3v9z"},"children":[]}]};exports.ic_view_column_twotone=ic_view_column_twotone;var ic_view_day={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M2 21h19v-3H2v3zM20 8H3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h17c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zM2 3v3h19V3H2z"},"children":[]}]};exports.ic_view_day=ic_view_day;var ic_view_day_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 18H2v2h19v-2zm-2-8v4H4v-4h15m1-2H3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h17c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm1-4H2v2h19V4z"},"children":[]}]};exports.ic_view_day_outline=ic_view_day_outline;var ic_view_day_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 10h15v4H4z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M2 18h19v2H2zM20 8H3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h17c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-1 6H4v-4h15v4zM2 4h19v2H2z"},"children":[]}]};exports.ic_view_day_twotone=ic_view_day_twotone;var ic_view_headline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 15h16v-2H4v2zm0 4h16v-2H4v2zm0-8h16V9H4v2zm0-6v2h16V5H4z"},"children":[]}]};exports.ic_view_headline=ic_view_headline;var ic_view_headline_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 15h16v-2H4v2zm0 4h16v-2H4v2zm0-8h16V9H4v2zm0-6v2h16V5H4z"},"children":[]}]};exports.ic_view_headline_outline=ic_view_headline_outline;var ic_view_headline_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 15h16v-2H4v2zm0 4h16v-2H4v2zm0-8h16V9H4v2zm0-6v2h16V5H4z"},"children":[]}]};exports.ic_view_headline_twotone=ic_view_headline_twotone;var ic_view_in_ar={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18.25 7.6l-5.5-3.18c-.46-.27-1.04-.27-1.5 0L5.75 7.6c-.46.27-.75.76-.75 1.3v6.35c0 .54.29 1.03.75 1.3l5.5 3.18c.46.27 1.04.27 1.5 0l5.5-3.18c.46-.27.75-.76.75-1.3V8.9c0-.54-.29-1.03-.75-1.3zM7 14.96v-4.62l4 2.32v4.61l-4-2.31zm5-4.03L8 8.61l4-2.31 4 2.31-4 2.32zm1 6.34v-4.61l4-2.32v4.62l-4 2.31zM7 2H3.5C2.67 2 2 2.67 2 3.5V7h2V4h3V2zm10 0h3.5c.83 0 1.5.67 1.5 1.5V7h-2V4h-3V2zM7 22H3.5c-.83 0-1.5-.67-1.5-1.5V17h2v3h3v2zm10 0h3.5c.83 0 1.5-.67 1.5-1.5V17h-2v3h-3v2z"},"children":[]}]};exports.ic_view_in_ar=ic_view_in_ar;var ic_view_list={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 14h4v-4H4v4zm0 5h4v-4H4v4zM4 9h4V5H4v4zm5 5h12v-4H9v4zm0 5h12v-4H9v4zM9 5v4h12V5H9z"},"children":[]}]};exports.ic_view_list=ic_view_list;var ic_view_list_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none","opacity":".87"},"children":[]},{"name":"path","attribs":{"d":"M3 5v14h17V5H3zm4 2v2H5V7h2zm-2 6v-2h2v2H5zm0 2h2v2H5v-2zm13 2H9v-2h9v2zm0-4H9v-2h9v2zm0-4H9V7h9v2z"},"children":[]}]};exports.ic_view_list_outline=ic_view_list_outline;var ic_view_list_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none","opacity":".87"},"children":[]},{"name":"path","attribs":{"d":"M5 11h2v2H5zm0 4h2v2H5zm0-8h2v2H5zm4 0h9v2H9zm0 8h9v2H9zm0-4h9v2H9z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M3 5v14h17V5H3zm4 12H5v-2h2v2zm0-4H5v-2h2v2zm0-4H5V7h2v2zm11 8H9v-2h9v2zm0-4H9v-2h9v2zm0-4H9V7h9v2z"},"children":[]}]};exports.ic_view_list_twotone=ic_view_list_twotone;var ic_view_module={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 11h5V5H4v6zm0 7h5v-6H4v6zm6 0h5v-6h-5v6zm6 0h5v-6h-5v6zm-6-7h5V5h-5v6zm6-6v6h5V5h-5z"},"children":[]}]};exports.ic_view_module=ic_view_module;var ic_view_module_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 5v13h17V5H4zm10 2v3.5h-3V7h3zM6 7h3v3.5H6V7zm0 9v-3.5h3V16H6zm5 0v-3.5h3V16h-3zm8 0h-3v-3.5h3V16zm-3-5.5V7h3v3.5h-3z"},"children":[]}]};exports.ic_view_module_outline=ic_view_module_outline;var ic_view_module_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11 12.5h3V16h-3zM11 7h3v3.5h-3zm-5 5.5h3V16H6zM6 7h3v3.5H6zm10 0h3v3.5h-3zm0 5.5h3V16h-3z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M4 5v13h17V5H4zm5 11H6v-3.5h3V16zm0-5.5H6V7h3v3.5zm5 5.5h-3v-3.5h3V16zm0-5.5h-3V7h3v3.5zm5 5.5h-3v-3.5h3V16zm0-5.5h-3V7h3v3.5z"},"children":[]}]};exports.ic_view_module_twotone=ic_view_module_twotone;var ic_view_quilt={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 18h5v-6h-5v6zm-6 0h5V5H4v13zm12 0h5v-6h-5v6zM10 5v6h11V5H10z"},"children":[]}]};exports.ic_view_quilt=ic_view_quilt;var ic_view_quilt_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 5v13h17V5H4zm2 11V7h3v9H6zm5 0v-3.5h3V16h-3zm8 0h-3v-3.5h3V16zm-8-5.5V7h8v3.5h-8z"},"children":[]}]};exports.ic_view_quilt_outline=ic_view_quilt_outline;var ic_view_quilt_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16 12.5h3V16h-3zM6 7h3v9H6zm5 5.5h3V16h-3zM11 7h8v3.5h-8z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M4 5v13h17V5H4zm5 11H6V7h3v9zm5 0h-3v-3.5h3V16zm5 0h-3v-3.5h3V16zm0-5.5h-8V7h8v3.5z"},"children":[]}]};exports.ic_view_quilt_twotone=ic_view_quilt_twotone;var ic_view_sidebar={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M16,20H2V4h14V20z M18,8h4V4h-4V8z M18,20h4v-4h-4V20z M18,14h4v-4h-4V14z"},"children":[{"name":"path","attribs":{"d":"M16,20H2V4h14V20z M18,8h4V4h-4V8z M18,20h4v-4h-4V20z M18,14h4v-4h-4V14z"},"children":[]}]}]}]};exports.ic_view_sidebar=ic_view_sidebar;var ic_view_sidebar_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M2,4v16h20V4H2z M20,8.67h-2.5V6H20V8.67z M17.5,10.67H20v2.67h-2.5V10.67z M4,6h11.5v12H4V6z M17.5,18v-2.67H20V18H17.5z"},"children":[{"name":"path","attribs":{"d":"M2,4v16h20V4H2z M20,8.67h-2.5V6H20V8.67z M17.5,10.67H20v2.67h-2.5V10.67z M4,6h11.5v12H4V6z M17.5,18v-2.67H20V18H17.5z"},"children":[]}]}]}]}]}]};exports.ic_view_sidebar_outline=ic_view_sidebar_outline;var ic_view_sidebar_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"g","attribs":{"opacity":".3"},"children":[{"name":"g","attribs":{"opacity":".3"},"children":[{"name":"path","attribs":{"d":"M20,8.67h-2.5V6H20V8.67z M17.5,10.67H20v2.67h-2.5V10.67z M4,6h11.5v12H4V6z M17.5,18v-2.67H20V18H17.5z"},"children":[{"name":"path","attribs":{"d":"M20,8.67h-2.5V6H20V8.67z M17.5,10.67H20v2.67h-2.5V10.67z M4,6h11.5v12H4V6z M17.5,18v-2.67H20V18H17.5z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M2,4v16h20V4H2z M20,8.67h-2.5V6H20V8.67z M17.5,10.67H20v2.67h-2.5V10.67z M4,6h11.5v12H4V6z M17.5,18v-2.67H20V18H17.5z"},"children":[{"name":"path","attribs":{"d":"M2,4v16h20V4H2z M20,8.67h-2.5V6H20V8.67z M17.5,10.67H20v2.67h-2.5V10.67z M4,6h11.5v12H4V6z M17.5,18v-2.67H20V18H17.5z"},"children":[]}]}]}]}]}]};exports.ic_view_sidebar_twotone=ic_view_sidebar_twotone;var ic_view_stream={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 18h17v-6H4v6zM4 5v6h17V5H4z"},"children":[]}]};exports.ic_view_stream=ic_view_stream;var ic_view_stream_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 6v12h17V6H4zm15 10H6v-3h13v3zM6 11V8h13v3H6z"},"children":[]}]};exports.ic_view_stream_outline=ic_view_stream_outline;var ic_view_stream_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6 13h13v3H6zm0-5h13v3H6z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M4 6v12h17V6H4zm15 10H6v-3h13v3zm0-5H6V8h13v3z"},"children":[]}]};exports.ic_view_stream_twotone=ic_view_stream_twotone;var ic_view_week={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6 5H3c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h3c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zm14 0h-3c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h3c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zm-7 0h-3c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h3c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1z"},"children":[]}]};exports.ic_view_week=ic_view_week;var ic_view_week_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 4H3c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zM8 18H4V6h4v12zm6 0h-4V6h4v12zm6 0h-4V6h4v12z"},"children":[]}]};exports.ic_view_week_outline=ic_view_week_outline;var ic_view_week_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 4H3c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zM8 18H4V6h4v12zm6 0h-4V6h4v12zm6 0h-4V6h4v12z"},"children":[]},{"name":"path","attribs":{"d":"M10 6h4v12h-4zm6 0h4v12h-4zM4 6h4v12H4z","opacity":".3"},"children":[]}]};exports.ic_view_week_twotone=ic_view_week_twotone;var ic_visibility={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z"},"children":[]}]};exports.ic_visibility=ic_visibility;var ic_visibility_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 6c3.79 0 7.17 2.13 8.82 5.5C19.17 14.87 15.79 17 12 17s-7.17-2.13-8.82-5.5C4.83 8.13 8.21 6 12 6m0-2C7 4 2.73 7.11 1 11.5 2.73 15.89 7 19 12 19s9.27-3.11 11-7.5C21.27 7.11 17 4 12 4zm0 5c1.38 0 2.5 1.12 2.5 2.5S13.38 14 12 14s-2.5-1.12-2.5-2.5S10.62 9 12 9m0-2c-2.48 0-4.5 2.02-4.5 4.5S9.52 16 12 16s4.5-2.02 4.5-4.5S14.48 7 12 7z"},"children":[]}]};exports.ic_visibility_outline=ic_visibility_outline;var ic_visibility_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 6c-3.79 0-7.17 2.13-8.82 5.5C4.83 14.87 8.21 17 12 17s7.17-2.13 8.82-5.5C19.17 8.13 15.79 6 12 6zm0 10c-2.48 0-4.5-2.02-4.5-4.5S9.52 7 12 7s4.5 2.02 4.5 4.5S14.48 16 12 16z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 4C7 4 2.73 7.11 1 11.5 2.73 15.89 7 19 12 19s9.27-3.11 11-7.5C21.27 7.11 17 4 12 4zm0 13c-3.79 0-7.17-2.13-8.82-5.5C4.83 8.13 8.21 6 12 6s7.17 2.13 8.82 5.5C19.17 14.87 15.79 17 12 17zm0-10c-2.48 0-4.5 2.02-4.5 4.5S9.52 16 12 16s4.5-2.02 4.5-4.5S14.48 7 12 7zm0 7c-1.38 0-2.5-1.12-2.5-2.5S10.62 9 12 9s2.5 1.12 2.5 2.5S13.38 14 12 14z"},"children":[]}]};exports.ic_visibility_twotone=ic_visibility_twotone;var ic_visibility_off={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0zm0 0h24v24H0zm0 0h24v24H0zm0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 7c2.76 0 5 2.24 5 5 0 .65-.13 1.26-.36 1.83l2.92 2.92c1.51-1.26 2.7-2.89 3.43-4.75-1.73-4.39-6-7.5-11-7.5-1.4 0-2.74.25-3.98.7l2.16 2.16C10.74 7.13 11.35 7 12 7zM2 4.27l2.28 2.28.46.46C3.08 8.3 1.78 10.02 1 12c1.73 4.39 6 7.5 11 7.5 1.55 0 3.03-.3 4.38-.84l.42.42L19.73 22 21 20.73 3.27 3 2 4.27zM7.53 9.8l1.55 1.55c-.05.21-.08.43-.08.65 0 1.66 1.34 3 3 3 .22 0 .44-.03.65-.08l1.55 1.55c-.67.33-1.41.53-2.2.53-2.76 0-5-2.24-5-5 0-.79.2-1.53.53-2.2zm4.31-.78l3.15 3.15.02-.16c0-1.66-1.34-3-3-3l-.17.01z"},"children":[]}]};exports.ic_visibility_off=ic_visibility_off;var ic_visibility_off_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 6c3.79 0 7.17 2.13 8.82 5.5-.59 1.22-1.42 2.27-2.41 3.12l1.41 1.41c1.39-1.23 2.49-2.77 3.18-4.53C21.27 7.11 17 4 12 4c-1.27 0-2.49.2-3.64.57l1.65 1.65C10.66 6.09 11.32 6 12 6zm-1.07 1.14L13 9.21c.57.25 1.03.71 1.28 1.28l2.07 2.07c.08-.34.14-.7.14-1.07C16.5 9.01 14.48 7 12 7c-.37 0-.72.05-1.07.14zM2.01 3.87l2.68 2.68C3.06 7.83 1.77 9.53 1 11.5 2.73 15.89 7 19 12 19c1.52 0 2.98-.29 4.32-.82l3.42 3.42 1.41-1.41L3.42 2.45 2.01 3.87zm7.5 7.5l2.61 2.61c-.04.01-.08.02-.12.02-1.38 0-2.5-1.12-2.5-2.5 0-.05.01-.08.01-.13zm-3.4-3.4l1.75 1.75c-.23.55-.36 1.15-.36 1.78 0 2.48 2.02 4.5 4.5 4.5.63 0 1.23-.13 1.77-.36l.98.98c-.88.24-1.8.38-2.75.38-3.79 0-7.17-2.13-8.82-5.5.7-1.43 1.72-2.61 2.93-3.53z"},"children":[]}]};exports.ic_visibility_off_outline=ic_visibility_off_outline;var ic_visibility_off_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 14c.04 0 .08-.01.12-.01l-2.61-2.61c0 .04-.01.08-.01.12 0 1.38 1.12 2.5 2.5 2.5zm1.01-4.79l1.28 1.28c-.26-.57-.71-1.03-1.28-1.28zm7.81 2.29C19.17 8.13 15.79 6 12 6c-.68 0-1.34.09-1.99.22l.92.92c.35-.09.7-.14 1.07-.14 2.48 0 4.5 2.02 4.5 4.5 0 .37-.06.72-.14 1.07l2.05 2.05c.98-.86 1.81-1.91 2.41-3.12zM12 17c.95 0 1.87-.13 2.75-.39l-.98-.98c-.54.24-1.14.37-1.77.37-2.48 0-4.5-2.02-4.5-4.5 0-.63.13-1.23.36-1.77L6.11 7.97c-1.22.91-2.23 2.1-2.93 3.52C4.83 14.86 8.21 17 12 17z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 6c3.79 0 7.17 2.13 8.82 5.5-.59 1.22-1.42 2.27-2.41 3.12l1.41 1.41c1.39-1.23 2.49-2.77 3.18-4.53C21.27 7.11 17 4 12 4c-1.27 0-2.49.2-3.64.57l1.65 1.65C10.66 6.09 11.32 6 12 6zm2.28 4.49l2.07 2.07c.08-.34.14-.7.14-1.07C16.5 9.01 14.48 7 12 7c-.37 0-.72.06-1.07.14L13 9.21c.58.25 1.03.71 1.28 1.28zM2.01 3.87l2.68 2.68C3.06 7.83 1.77 9.53 1 11.5 2.73 15.89 7 19 12 19c1.52 0 2.98-.29 4.32-.82l3.42 3.42 1.41-1.41L3.42 2.45 2.01 3.87zm7.5 7.5l2.61 2.61c-.04.01-.08.02-.12.02-1.38 0-2.5-1.12-2.5-2.5 0-.05.01-.08.01-.13zm-3.4-3.4l1.75 1.75c-.23.55-.36 1.15-.36 1.78 0 2.48 2.02 4.5 4.5 4.5.63 0 1.23-.13 1.77-.36l.98.98c-.88.24-1.8.38-2.75.38-3.79 0-7.17-2.13-8.82-5.5.7-1.43 1.72-2.61 2.93-3.53z"},"children":[]}]};exports.ic_visibility_off_twotone=ic_visibility_off_twotone;var ic_voice_over_off={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12.99 9.18c0-.06.01-.12.01-.18 0-2.21-1.79-4-4-4-.06 0-.12.01-.18.01l4.17 4.17zm-6.1-3.56L4.27 3 3 4.27l2.62 2.62C5.23 7.5 5 8.22 5 9c0 2.21 1.79 4 4 4 .78 0 1.5-.23 2.11-.62L19.73 21 21 19.73l-8.62-8.62-5.49-5.49zM9 15c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4zm7.76-9.64l-1.68 1.69c.84 1.18.84 2.71 0 3.89l1.68 1.69c2.02-2.02 2.02-5.07 0-7.27zM20.07 2l-1.63 1.63c2.77 3.02 2.77 7.56 0 10.74L20.07 16c3.9-3.89 3.91-9.95 0-14z"},"children":[]}]};exports.ic_voice_over_off=ic_voice_over_off;var ic_voice_over_off_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16.76 5.36l-1.68 1.69c.8 1.13.83 2.58.09 3.74l1.7 1.7c1.9-2.02 1.87-4.98-.11-7.13zM20.07 2l-1.63 1.63c2.72 2.97 2.76 7.39.14 10.56l1.64 1.64c3.74-3.89 3.71-9.84-.15-13.83zM9.43 5.04l3.53 3.53c-.2-1.86-1.67-3.33-3.53-3.53zM4.41 2.86L3 4.27l2.62 2.62C5.23 7.5 5 8.22 5 9c0 2.21 1.79 4 4 4 .78 0 1.5-.23 2.11-.62l4.4 4.4C13.74 15.6 10.78 15 9 15c-2.67 0-8 1.34-8 4v2h16v-2c0-.37-.11-.7-.29-1.02L19.73 21l1.41-1.41L4.41 2.86zM3 19c.22-.72 3.31-2 6-2 2.7 0 5.8 1.29 6 2H3zm6-8c-1.1 0-2-.9-2-2 0-.22.04-.42.11-.62l2.51 2.51c-.2.07-.4.11-.62.11z"},"children":[]}]};exports.ic_voice_over_off_outline=ic_voice_over_off_outline;var ic_voice_over_off_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9 17c-2.69 0-5.77 1.28-6 2h12c-.2-.71-3.3-2-6-2zM7 9c0 1.1.9 2 2 2 .22 0 .42-.04.62-.11L7.11 8.38c-.07.2-.11.4-.11.62z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M16.76 5.36l-1.68 1.69c.8 1.13.83 2.58.09 3.74l1.7 1.7c1.9-2.02 1.87-4.98-.11-7.13zM20.07 2l-1.63 1.63c2.72 2.97 2.76 7.39.14 10.56l1.64 1.64c3.74-3.89 3.71-9.84-.15-13.83zM9.43 5.04l3.53 3.53c-.2-1.86-1.67-3.33-3.53-3.53zM4.41 2.86L3 4.27l2.62 2.62C5.23 7.5 5 8.22 5 9c0 2.21 1.79 4 4 4 .78 0 1.5-.23 2.11-.62l4.4 4.4C13.74 15.6 10.78 15 9 15c-2.67 0-8 1.34-8 4v2h16v-2c0-.37-.11-.7-.29-1.02L19.73 21l1.41-1.41L4.41 2.86zM3 19c.22-.72 3.31-2 6-2 2.7 0 5.8 1.29 6 2H3zm6-8c-1.1 0-2-.9-2-2 0-.22.04-.42.11-.62l2.51 2.51c-.2.07-.4.11-.62.11z"},"children":[]}]};exports.ic_voice_over_off_twotone=ic_voice_over_off_twotone;var ic_watch_later={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M16.2,16.2L11,13V7h1.5v5.2l4.5,2.7L16.2,16.2z"},"children":[{"name":"path","attribs":{"d":"M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M16.2,16.2L11,13V7h1.5v5.2l4.5,2.7L16.2,16.2z"},"children":[]}]}]}]}]}]}]}]};exports.ic_watch_later=ic_watch_later;var ic_watch_later_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8 S16.41,20,12,20z M12.5,7H11v6l5.2,3.2l0.8-1.3l-4.5-2.7V7z"},"children":[{"name":"path","attribs":{"d":"M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8 S16.41,20,12,20z M12.5,7H11v6l5.2,3.2l0.8-1.3l-4.5-2.7V7z"},"children":[]}]}]}]}]}]};exports.ic_watch_later_outline=ic_watch_later_outline;var ic_watch_later_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M12,4c-4.41,0-8,3.59-8,8s3.59,8,8,8s8-3.59,8-8S16.41,4,12,4z M16.2,16.2 L11,13V7h1.5v5.2l4.5,2.7L16.2,16.2z","enable-background":"new","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M12,4c-4.41,0-8,3.59-8,8s3.59,8,8,8s8-3.59,8-8S16.41,4,12,4z M16.2,16.2 L11,13V7h1.5v5.2l4.5,2.7L16.2,16.2z","enable-background":"new","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8 S16.41,20,12,20z M12.5,7H11v6l5.2,3.2l0.8-1.3l-4.5-2.7V7z"},"children":[{"name":"path","attribs":{"d":"M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8 S16.41,20,12,20z M12.5,7H11v6l5.2,3.2l0.8-1.3l-4.5-2.7V7z"},"children":[]}]}]}]}]}]};exports.ic_watch_later_twotone=ic_watch_later_twotone;var ic_wifi_protected_setup={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M16.71,5.29L19,3h-8v8l2.3-2.3c1.97,1.46,3.25,3.78,3.25,6.42c0,1.31-0.32,2.54-0.88,3.63c2.33-1.52,3.88-4.14,3.88-7.13 C19.55,9.1,18.44,6.85,16.71,5.29z"},"children":[{"name":"path","attribs":{"d":"M16.71,5.29L19,3h-8v8l2.3-2.3c1.97,1.46,3.25,3.78,3.25,6.42c0,1.31-0.32,2.54-0.88,3.63c2.33-1.52,3.88-4.14,3.88-7.13 C19.55,9.1,18.44,6.85,16.71,5.29z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M7.46,8.88c0-1.31,0.32-2.54,0.88-3.63C6,6.77,4.46,9.39,4.46,12.38c0,2.52,1.1,4.77,2.84,6.33L5,21h8v-8l-2.3,2.3 C8.74,13.84,7.46,11.52,7.46,8.88z"},"children":[{"name":"path","attribs":{"d":"M7.46,8.88c0-1.31,0.32-2.54,0.88-3.63C6,6.77,4.46,9.39,4.46,12.38c0,2.52,1.1,4.77,2.84,6.33L5,21h8v-8l-2.3,2.3 C8.74,13.84,7.46,11.52,7.46,8.88z"},"children":[]}]}]}]}]}]}]}]};exports.ic_wifi_protected_setup=ic_wifi_protected_setup;var ic_wifi_protected_setup_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M16.71,5.29L19,3h-8v8l2.3-2.3c1.97,1.46,3.25,3.78,3.25,6.42c0,1.31-0.32,2.54-0.88,3.63c2.33-1.52,3.88-4.14,3.88-7.13 C19.55,9.1,18.44,6.85,16.71,5.29z"},"children":[{"name":"path","attribs":{"d":"M16.71,5.29L19,3h-8v8l2.3-2.3c1.97,1.46,3.25,3.78,3.25,6.42c0,1.31-0.32,2.54-0.88,3.63c2.33-1.52,3.88-4.14,3.88-7.13 C19.55,9.1,18.44,6.85,16.71,5.29z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M7.46,8.88c0-1.31,0.32-2.54,0.88-3.63C6,6.77,4.46,9.39,4.46,12.38c0,2.52,1.1,4.77,2.84,6.33L5,21h8v-8l-2.3,2.3 C8.74,13.84,7.46,11.52,7.46,8.88z"},"children":[{"name":"path","attribs":{"d":"M7.46,8.88c0-1.31,0.32-2.54,0.88-3.63C6,6.77,4.46,9.39,4.46,12.38c0,2.52,1.1,4.77,2.84,6.33L5,21h8v-8l-2.3,2.3 C8.74,13.84,7.46,11.52,7.46,8.88z"},"children":[]}]}]}]}]}]}]}]};exports.ic_wifi_protected_setup_outline=ic_wifi_protected_setup_outline;var ic_wifi_protected_setup_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M16.71,5.29L19,3h-8v8l2.3-2.3c1.97,1.46,3.25,3.78,3.25,6.42c0,1.31-0.32,2.54-0.88,3.63c2.33-1.52,3.88-4.14,3.88-7.13 C19.55,9.1,18.44,6.85,16.71,5.29z"},"children":[{"name":"path","attribs":{"d":"M16.71,5.29L19,3h-8v8l2.3-2.3c1.97,1.46,3.25,3.78,3.25,6.42c0,1.31-0.32,2.54-0.88,3.63c2.33-1.52,3.88-4.14,3.88-7.13 C19.55,9.1,18.44,6.85,16.71,5.29z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M7.46,8.88c0-1.31,0.32-2.54,0.88-3.63C6,6.77,4.46,9.39,4.46,12.38c0,2.52,1.1,4.77,2.84,6.33L5,21h8v-8l-2.3,2.3 C8.74,13.84,7.46,11.52,7.46,8.88z"},"children":[{"name":"path","attribs":{"d":"M7.46,8.88c0-1.31,0.32-2.54,0.88-3.63C6,6.77,4.46,9.39,4.46,12.38c0,2.52,1.1,4.77,2.84,6.33L5,21h8v-8l-2.3,2.3 C8.74,13.84,7.46,11.52,7.46,8.88z"},"children":[]}]}]}]}]}]}]}]};exports.ic_wifi_protected_setup_twotone=ic_wifi_protected_setup_twotone;var ic_work={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 6h-4V4c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-6 0h-4V4h4v2z"},"children":[]}]};exports.ic_work=ic_work;var ic_work_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 6h-4V4c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-6 0h-4V4h4v2z"},"children":[]}]};exports.ic_work_outline=ic_work_outline;var ic_work_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 8h16v11H4z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 6h-4V4c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zM10 4h4v2h-4V4zm10 15H4V8h16v11z"},"children":[]}]};exports.ic_work_twotone=ic_work_twotone;var ic_work_off={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M23 21.74l-1.46-1.46L7.21 5.95 3.25 1.99 1.99 3.25l2.7 2.7h-.64c-1.11 0-1.99.89-1.99 2l-.01 11c0 1.11.89 2 2 2h15.64L21.74 23 23 21.74zM22 7.95c.05-1.11-.84-2-1.95-1.95h-4V3.95c0-1.11-.89-2-2-1.95h-4c-1.11-.05-2 .84-2 1.95v.32l13.95 14V7.95zM14.05 6H10V3.95h4.05V6z"},"children":[]}]};exports.ic_work_off=ic_work_off;var ic_work_off_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 4h4v2h-3.6l2 2H20v7.6l2 2V8c0-1.11-.89-2-2-2h-4V4c0-1.11-.89-2-2-2h-4c-.99 0-1.8.7-1.96 1.64L10 5.6V4zM3.4 1.84L1.99 3.25 4.74 6H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h15.74l2 2 1.41-1.41L3.4 1.84zM4 19V8h2.74l11 11H4z"},"children":[]}]};exports.ic_work_off_outline=ic_work_off_outline;var ic_work_off_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 8v11h13.74l-11-11zm8.4 0l7.6 7.6V8z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M10 4h4v2h-3.6l2 2H20v7.6l2 2V8c0-1.11-.89-2-2-2h-4V4c0-1.11-.89-2-2-2h-4c-.99 0-1.8.7-1.96 1.64L10 5.6V4zM3.4 1.84L1.99 3.25 4.74 6H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h15.74l2 2 1.41-1.41L3.4 1.84zM4 19V8h2.74l11 11H4z"},"children":[]}]};exports.ic_work_off_twotone=ic_work_off_twotone;var ic_work_outline_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14 6V4h-4v2h4zM4 8v11h16V8H4zm16-2c1.11 0 2 .89 2 2v11c0 1.11-.89 2-2 2H4c-1.11 0-2-.89-2-2l.01-11c0-1.11.88-2 1.99-2h4V4c0-1.11.89-2 2-2h4c1.11 0 2 .89 2 2v2h4z"},"children":[]}]};exports.ic_work_outline_outline=ic_work_outline_outline;var ic_work_outline_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 6h-4V4c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zM10 4h4v2h-4V4zm10 15H4V8h16v11z"},"children":[]}]};exports.ic_work_outline_twotone=ic_work_outline_twotone;var ic_wysiwyg={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M19,3H5C3.89,3,3,3.9,3,5v14c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.11,3,19,3z M19,19H5V7h14V19z M17,12H7v-2 h10V12z M13,16H7v-2h6V16z"},"children":[{"name":"path","attribs":{"d":"M19,3H5C3.89,3,3,3.9,3,5v14c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.11,3,19,3z M19,19H5V7h14V19z M17,12H7v-2 h10V12z M13,16H7v-2h6V16z"},"children":[]}]}]}]};exports.ic_wysiwyg=ic_wysiwyg;var ic_wysiwyg_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M19,3H5C3.89,3,3,3.9,3,5v14c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.11,3,19,3z M19,19H5V7h14V19z M17,12H7v-2 h10V12z M13,16H7v-2h6V16z"},"children":[{"name":"path","attribs":{"d":"M19,3H5C3.89,3,3,3.9,3,5v14c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.11,3,19,3z M19,19H5V7h14V19z M17,12H7v-2 h10V12z M13,16H7v-2h6V16z"},"children":[]}]}]}]};exports.ic_wysiwyg_outline=ic_wysiwyg_outline;var ic_wysiwyg_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M19,19H5V7h14V19z M17,12H7v-2h10V12z M13,16H7v-2h6V16z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M19,19H5V7h14V19z M17,12H7v-2h10V12z M13,16H7v-2h6V16z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M19,3H5C3.89,3,3,3.9,3,5v14c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.11,3,19,3z M19,19H5V7h14V19z M17,12H7v-2 h10V12z M13,16H7v-2h6V16z"},"children":[{"name":"path","attribs":{"d":"M19,3H5C3.89,3,3,3.9,3,5v14c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.11,3,19,3z M19,19H5V7h14V19z M17,12H7v-2 h10V12z M13,16H7v-2h6V16z"},"children":[]}]}]}]};exports.ic_wysiwyg_twotone=ic_wysiwyg_twotone;var ic_youtube_searched_for={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0zm0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17.01 14h-.8l-.27-.27c.98-1.14 1.57-2.61 1.57-4.23 0-3.59-2.91-6.5-6.5-6.5s-6.5 3-6.5 6.5H2l3.84 4 4.16-4H6.51C6.51 7 8.53 5 11.01 5s4.5 2.01 4.5 4.5c0 2.48-2.02 4.5-4.5 4.5-.65 0-1.26-.14-1.82-.38L7.71 15.1c.97.57 2.09.9 3.3.9 1.61 0 3.08-.59 4.22-1.57l.27.27v.79l5.01 4.99L22 19l-4.99-5z"},"children":[]}]};exports.ic_youtube_searched_for=ic_youtube_searched_for;var ic_youtube_searched_for_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0zm0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17.01 14h-.8l-.27-.27c.98-1.14 1.57-2.61 1.57-4.23 0-3.59-2.91-6.5-6.5-6.5s-6.5 3-6.5 6.5H2l3.84 4 4.16-4H6.51C6.51 7 8.53 5 11.01 5s4.5 2.01 4.5 4.5c0 2.48-2.02 4.5-4.5 4.5-.65 0-1.26-.14-1.82-.38L7.71 15.1c.97.57 2.09.9 3.3.9 1.61 0 3.08-.59 4.22-1.57l.27.27v.79l5.01 4.99L22 19l-4.99-5z"},"children":[]}]};exports.ic_youtube_searched_for_outline=ic_youtube_searched_for_outline;var ic_youtube_searched_for_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0zm0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17.01 14h-.8l-.27-.27c.98-1.14 1.57-2.61 1.57-4.23 0-3.59-2.91-6.5-6.5-6.5s-6.5 3-6.5 6.5H2l3.84 4 4.16-4H6.51C6.51 7 8.53 5 11.01 5s4.5 2.01 4.5 4.5c0 2.48-2.02 4.5-4.5 4.5-.65 0-1.26-.14-1.82-.38L7.71 15.1c.97.57 2.09.9 3.3.9 1.61 0 3.08-.59 4.22-1.57l.27.27v.79l5.01 4.99L22 19l-4.99-5z"},"children":[]}]};exports.ic_youtube_searched_for_twotone=ic_youtube_searched_for_twotone;var ic_zoom_in={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"},"children":[]},{"name":"path","attribs":{"d":"M12 10h-2v2H9v-2H7V9h2V7h1v2h2v1z"},"children":[]}]};exports.ic_zoom_in=ic_zoom_in;var ic_zoom_in_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zm.5-7H9v2H7v1h2v2h1v-2h2V9h-2z"},"children":[]}]};exports.ic_zoom_in_outline=ic_zoom_in_outline;var ic_zoom_in_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zm.5-7H9v2H7v1h2v2h1v-2h2V9h-2z"},"children":[]}]};exports.ic_zoom_in_twotone=ic_zoom_in_twotone;var ic_zoom_out={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zM7 9h5v1H7z"},"children":[]}]};exports.ic_zoom_out=ic_zoom_out;var ic_zoom_out_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zM7 9h5v1H7z"},"children":[]}]};exports.ic_zoom_out_outline=ic_zoom_out_outline;var ic_zoom_out_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zM7 9h5v1H7z"},"children":[]}]};exports.ic_zoom_out_twotone=ic_zoom_out_twotone;var ic_add_alert={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10.01 21.01c0 1.1.89 1.99 1.99 1.99s1.99-.89 1.99-1.99h-3.98zm8.87-4.19V11c0-3.25-2.25-5.97-5.29-6.69v-.72C13.59 2.71 12.88 2 12 2s-1.59.71-1.59 1.59v.72C7.37 5.03 5.12 7.75 5.12 11v5.82L3 18.94V20h18v-1.06l-2.12-2.12zM16 13.01h-3v3h-2v-3H8V11h3V8h2v3h3v2.01z"},"children":[]}]};exports.ic_add_alert=ic_add_alert;var ic_add_alert_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M10.01 21.01c0 1.1.89 1.99 1.99 1.99s1.99-.89 1.99-1.99h-3.98zM12 6c2.76 0 5 2.24 5 5v7H7v-7c0-2.76 2.24-5 5-5zm0-4.5c-.83 0-1.5.67-1.5 1.5v1.17C7.36 4.85 5 7.65 5 11v6l-2 2v1h18v-1l-2-2v-6c0-3.35-2.36-6.15-5.5-6.83V3c0-.83-.67-1.5-1.5-1.5zM13 8h-2v3H8v2h3v3h2v-3h3v-2h-3z"},"children":[]}]};exports.ic_add_alert_outline=ic_add_alert_outline;var ic_add_alert_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M12 6c-2.76 0-5 2.24-5 5v7h10v-7c0-2.76-2.24-5-5-5zm4 7h-3v3h-2v-3H8v-2h3V8h2v3h3v2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 23c1.1 0 1.99-.89 1.99-1.99h-3.98c0 1.1.89 1.99 1.99 1.99zm7-6v-6c0-3.35-2.36-6.15-5.5-6.83V3c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v1.17C7.36 4.85 5 7.65 5 11v6l-2 2v1h18v-1l-2-2zm-2 1H7v-7c0-2.76 2.24-5 5-5s5 2.24 5 5v7zm-4-7V8h-2v3H8v2h3v3h2v-3h3v-2z"},"children":[]}]};exports.ic_add_alert_twotone=ic_add_alert_twotone;var ic_auto_delete={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"15,2 11.5,2 10.5,1 5.5,1 4.5,2 1,2 1,4 15,4"},"children":[{"name":"polygon","attribs":{"points":"15,2 11.5,2 10.5,1 5.5,1 4.5,2 1,2 1,4 15,4"},"children":[]}]},{"name":"path","attribs":{"d":"M16,9c-0.7,0-1.37,0.1-2,0.29V5H2v12c0,1.1,0.9,2,2,2h5.68c1.12,2.36,3.53,4,6.32,4c3.87,0,7-3.13,7-7 C23,12.13,19.87,9,16,9z M16,21c-2.76,0-5-2.24-5-5s2.24-5,5-5s5,2.24,5,5S18.76,21,16,21z"},"children":[{"name":"path","attribs":{"d":"M16,9c-0.7,0-1.37,0.1-2,0.29V5H2v12c0,1.1,0.9,2,2,2h5.68c1.12,2.36,3.53,4,6.32,4c3.87,0,7-3.13,7-7 C23,12.13,19.87,9,16,9z M16,21c-2.76,0-5-2.24-5-5s2.24-5,5-5s5,2.24,5,5S18.76,21,16,21z"},"children":[]}]},{"name":"polygon","attribs":{"points":"16.5,12 15,12 15,17 18.6,19.1 19.4,17.9 16.5,16.2"},"children":[{"name":"polygon","attribs":{"points":"16.5,12 15,12 15,17 18.6,19.1 19.4,17.9 16.5,16.2"},"children":[]}]}]}]}]}]};exports.ic_auto_delete=ic_auto_delete;var ic_auto_delete_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"15,2 11.5,2 10.5,1 5.5,1 4.5,2 1,2 1,4 15,4"},"children":[{"name":"polygon","attribs":{"points":"15,2 11.5,2 10.5,1 5.5,1 4.5,2 1,2 1,4 15,4"},"children":[]}]},{"name":"path","attribs":{"d":"M16,9c-0.7,0-1.37,0.1-2,0.29V5H2v12c0,1.1,0.9,2,2,2h5.68c1.12,2.36,3.53,4,6.32,4c3.87,0,7-3.13,7-7 C23,12.13,19.87,9,16,9z M9,16c0,0.34,0.03,0.67,0.08,1H4V7h8v3.26C10.19,11.53,9,13.62,9,16z M16,21c-2.76,0-5-2.24-5-5 s2.24-5,5-5s5,2.24,5,5S18.76,21,16,21z"},"children":[{"name":"path","attribs":{"d":"M16,9c-0.7,0-1.37,0.1-2,0.29V5H2v12c0,1.1,0.9,2,2,2h5.68c1.12,2.36,3.53,4,6.32,4c3.87,0,7-3.13,7-7 C23,12.13,19.87,9,16,9z M9,16c0,0.34,0.03,0.67,0.08,1H4V7h8v3.26C10.19,11.53,9,13.62,9,16z M16,21c-2.76,0-5-2.24-5-5 s2.24-5,5-5s5,2.24,5,5S18.76,21,16,21z"},"children":[]}]},{"name":"polygon","attribs":{"points":"16.5,12 15,12 15,17 18.6,19.1 19.4,17.9 16.5,16.2"},"children":[{"name":"polygon","attribs":{"points":"16.5,12 15,12 15,17 18.6,19.1 19.4,17.9 16.5,16.2"},"children":[]}]}]}]}]}]};exports.ic_auto_delete_outline=ic_auto_delete_outline;var ic_auto_delete_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M12,7H4v10h5.08C9.03,16.67,9,16.34,9,16c0-2.38,1.19-4.47,3-5.74V7z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M12,7H4v10h5.08C9.03,16.67,9,16.34,9,16c0-2.38,1.19-4.47,3-5.74V7z","opacity":".3"},"children":[]}]},{"name":"polygon","attribs":{"points":"15,2 11.5,2 10.5,1 5.5,1 4.5,2 1,2 1,4 15,4"},"children":[{"name":"polygon","attribs":{"points":"15,2 11.5,2 10.5,1 5.5,1 4.5,2 1,2 1,4 15,4"},"children":[]}]},{"name":"path","attribs":{"d":"M16,9c-0.7,0-1.37,0.1-2,0.29V5H2v12c0,1.1,0.9,2,2,2h5.68c1.12,2.36,3.53,4,6.32,4c3.87,0,7-3.13,7-7 C23,12.13,19.87,9,16,9z M9,16c0,0.34,0.03,0.67,0.08,1H4V7h8v3.26C10.19,11.53,9,13.62,9,16z M16,21c-2.76,0-5-2.24-5-5 s2.24-5,5-5s5,2.24,5,5S18.76,21,16,21z"},"children":[{"name":"path","attribs":{"d":"M16,9c-0.7,0-1.37,0.1-2,0.29V5H2v12c0,1.1,0.9,2,2,2h5.68c1.12,2.36,3.53,4,6.32,4c3.87,0,7-3.13,7-7 C23,12.13,19.87,9,16,9z M9,16c0,0.34,0.03,0.67,0.08,1H4V7h8v3.26C10.19,11.53,9,13.62,9,16z M16,21c-2.76,0-5-2.24-5-5 s2.24-5,5-5s5,2.24,5,5S18.76,21,16,21z"},"children":[]}]},{"name":"polygon","attribs":{"points":"16.5,12 15,12 15,17 18.6,19.1 19.4,17.9 16.5,16.2"},"children":[{"name":"polygon","attribs":{"points":"16.5,12 15,12 15,17 18.6,19.1 19.4,17.9 16.5,16.2"},"children":[]}]}]}]}]}]};exports.ic_auto_delete_twotone=ic_auto_delete_twotone;var ic_error={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z"},"children":[]}]};exports.ic_error=ic_error;var ic_error_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z"},"children":[]}]};exports.ic_error_outline=ic_error_outline;var ic_error_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm1 13h-2v-2h2v2zm0-4h-2V7h2v6z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm-1-5h2v2h-2zm0-8h2v6h-2z"},"children":[]}]};exports.ic_error_twotone=ic_error_twotone;var ic_error_outline_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M11 15h2v2h-2v-2zm0-8h2v6h-2V7zm.99-5C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"},"children":[]}]};exports.ic_error_outline_outline=ic_error_outline_outline;var ic_error_outline_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm-1-5h2v2h-2zm0-8h2v6h-2z"},"children":[]}]};exports.ic_error_outline_twotone=ic_error_outline_twotone;var ic_notification_important={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 16v-5c0-3.07-1.64-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.63 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2zm-5 0h-2v-2h2v2zm0-4h-2V8h2v4zm-1 10c1.1 0 2-.9 2-2h-4c0 1.1.89 2 2 2z"},"children":[]}]};exports.ic_notification_important=ic_notification_important;var ic_notification_important_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M10.01 21.01c0 1.1.89 1.99 1.99 1.99s1.99-.89 1.99-1.99h-3.98zM12 6c2.76 0 5 2.24 5 5v7H7v-7c0-2.76 2.24-5 5-5zm0-4.5c-.83 0-1.5.67-1.5 1.5v1.17C7.36 4.85 5 7.65 5 11v6l-2 2v1h18v-1l-2-2v-6c0-3.35-2.36-6.15-5.5-6.83V3c0-.83-.67-1.5-1.5-1.5zM11 8h2v4h-2zm0 6h2v2h-2z"},"children":[]}]};exports.ic_notification_important_outline=ic_notification_important_outline;var ic_notification_important_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M12 6c-2.76 0-5 2.24-5 5v7h10v-7c0-2.76-2.24-5-5-5zm1 10h-2v-2h2v2zm0-4h-2V8h2v4z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 23c1.1 0 1.99-.89 1.99-1.99h-3.98c0 1.1.89 1.99 1.99 1.99zm7-6v-6c0-3.35-2.36-6.15-5.5-6.83V3c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v1.17C7.36 4.85 5 7.65 5 11v6l-2 2v1h18v-1l-2-2zm-2 1H7v-7c0-2.76 2.24-5 5-5s5 2.24 5 5v7zM11 8h2v4h-2zm0 6h2v2h-2z"},"children":[]}]};exports.ic_notification_important_twotone=ic_notification_important_twotone;var ic_warning={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M1 21h22L12 2 1 21zm12-3h-2v-2h2v2zm0-4h-2v-4h2v4z"},"children":[]}]};exports.ic_warning=ic_warning;var ic_warning_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M1 21h22L12 2 1 21zm12-3h-2v-2h2v2zm0-4h-2v-4h2v4z"},"children":[]}]};exports.ic_warning_outline=ic_warning_outline;var ic_warning_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M4.47 19h15.06L12 5.99 4.47 19zM13 18h-2v-2h2v2zm0-4h-2v-4h2v4z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M1 21h22L12 2 1 21zm3.47-2L12 5.99 19.53 19H4.47zM11 16h2v2h-2zm0-6h2v4h-2z"},"children":[]}]};exports.ic_warning_twotone=ic_warning_twotone;var ic_warning_amber_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M12 5.99L19.53 19H4.47L12 5.99M12 2L1 21h22L12 2zm1 14h-2v2h2v-2zm0-6h-2v4h2v-4z"},"children":[]}]};exports.ic_warning_amber_outline=ic_warning_amber_outline;var ic_warning_amber_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M1 21h22L12 2 1 21zm3.47-2L12 5.99 19.53 19H4.47zM11 16h2v2h-2zm0-6h2v4h-2z"},"children":[]}]};exports.ic_warning_amber_twotone=ic_warning_amber_twotone;var ic_10k={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 10.5h1.5v3H10zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM7.5 15H6v-4.5H4.5V9h3v6zm5.5-1c0 .55-.45 1-1 1H9.5c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1H12c.55 0 1 .45 1 1v4zm6.5 1h-1.75L16 12.75V15h-1.5V9H16v2.25L17.75 9h1.75l-2.25 3 2.25 3z"},"children":[]}]};exports.ic_10k=ic_10k;var ic_1k={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8.5 12H9v-4.5H7.5V9h3v6zm7 0h-1.75L14 12.75V15h-1.5V9H14v2.25L15.75 9h1.75l-2.25 3 2.25 3z"},"children":[]}]};exports.ic_1k=ic_1k;var ic_1k_plus={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 15H7.5v-4.5H6V9h3v6zm4.75 0L12 12.75V15h-1.5V9H12v2.25L13.75 9h1.75l-2.25 3 2.25 3h-1.75zm5.75-2.5H18V14h-1v-1.5h-1.5v-1H17V10h1v1.5h1.5v1z"},"children":[]}]};exports.ic_1k_plus=ic_1k_plus;var ic_2k={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 9.5H8v1h3V15H6.5v-2.5c0-.55.45-1 1-1h2v-1h-3V9H10c.55 0 1 .45 1 1v1.5c0 .55-.45 1-1 1zm8 2.5h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z"},"children":[]}]};exports.ic_2k=ic_2k;var ic_2k_plus={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9.5 8.5c0 .55-.45 1-1 1h-2v1h3V15H5v-2.5c0-.55.45-1 1-1h2v-1H5V9h3.5c.55 0 1 .45 1 1v1.5zm4.75 3.5l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15h-1.75zM20 12.5h-1.5V14h-1v-1.5H16v-1h1.5V10h1v1.5H20v1z"},"children":[]}]};exports.ic_2k_plus=ic_2k_plus;var ic_3k={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8 11c0 .55-.45 1-1 1H6.5v-1.5h3v-1h-2v-1h2v-1h-3V9H10c.55 0 1 .45 1 1v4zm7 1h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z"},"children":[]}]};exports.ic_3k=ic_3k;var ic_3k_plus={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9.5 14c0 .55-.45 1-1 1H5v-1.5h3v-1H6v-1h2v-1H5V9h3.5c.55 0 1 .45 1 1v4zm6.5 1h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15zm4-2.5h-1.5V14h-1v-1.5H16v-1h1.5V10h1v1.5H20v1z"},"children":[]}]};exports.ic_3k_plus=ic_3k_plus;var ic_4k={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 10.5h-1V15H9.5v-1.5h-3V9H8v3h1.5V9H11v3h1v1.5zm6 1.5h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z"},"children":[]}]};exports.ic_4k=ic_4k;var ic_4k_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm0 16H5V5h14v14zm-9.5-4H11v-1.49h1V12h-1V9H9.5v3H8V9H6.5v4.5h3zm8.7 0l-2-3 2-3h-1.7l-2 3 2 3zm-3.7-3V9H13v6h1.5z"},"children":[]}]};exports.ic_4k_outline=ic_4k_outline;var ic_4k_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 5H5v14h14V5zm-7 8.51h-1V15H9.5v-1.5h-3V9H8v3h1.5V9H11v3h1v1.51zM18.2 15h-1.7l-2-3v3H13V9h1.5v3l2-3h1.7l-2 3 2 3z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M5 21h14c1.1 0 2-.9 2-2V5c0-1.1-.89-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.89 2 2 2zM5 5h14v14H5V5zm6 4H9.5v3H8V9H6.5v4.5h3V15H11v-1.49h1V12h-1zm5.5 0l-2 3 2 3h1.7l-2-3 2-3zM13 9v6h1.5V9z"},"children":[]}]};exports.ic_4k_twotone=ic_4k_twotone;var ic_4k_plus={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8.5 10.5h-1V15H8v-1.5H5V9h1.5v3H8V9h1.5v3h1v1.5zM16 15h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15zm4-2.5h-1.5V14h-1v-1.5H16v-1h1.5V10h1v1.5H20v1z"},"children":[]}]};exports.ic_4k_plus=ic_4k_plus;var ic_5g={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M17,13h2v2h-5V9h7c0-1.1-0.9-2-2-2h-5c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h5c1.1,0,2-0.9,2-2v-4h-4V13z"},"children":[{"name":"path","attribs":{"d":"M17,13h2v2h-5V9h7c0-1.1-0.9-2-2-2h-5c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h5c1.1,0,2-0.9,2-2v-4h-4V13z"},"children":[]}]},{"name":"path","attribs":{"d":"M3,13h5v2H3v2h5c1.1,0,2-0.9,2-2v-2c0-1.1-0.9-2-2-2H5V9h5V7H3V13z"},"children":[{"name":"path","attribs":{"d":"M3,13h5v2H3v2h5c1.1,0,2-0.9,2-2v-2c0-1.1-0.9-2-2-2H5V9h5V7H3V13z"},"children":[]}]}]}]}]}]};exports.ic_5g=ic_5g;var ic_5g_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M16.5,13H19v2h-5V9h7c0-1.1-0.9-2-2-2h-5c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h5c1.1,0,2-0.9,2-2v-4h-4.5V13z"},"children":[{"name":"path","attribs":{"d":"M16.5,13H19v2h-5V9h7c0-1.1-0.9-2-2-2h-5c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h5c1.1,0,2-0.9,2-2v-4h-4.5V13z"},"children":[]}]},{"name":"path","attribs":{"d":"M3,13h5v2H3v2h5c1.1,0,2-0.9,2-2v-2c0-1.1-0.9-2-2-2H5V9h5V7H3V13z"},"children":[{"name":"path","attribs":{"d":"M3,13h5v2H3v2h5c1.1,0,2-0.9,2-2v-2c0-1.1-0.9-2-2-2H5V9h5V7H3V13z"},"children":[]}]}]}]}]}]};exports.ic_5g_outline=ic_5g_outline;var ic_5g_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M16.5,13H19v2h-5V9h7c0-1.1-0.9-2-2-2h-5c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h5c1.1,0,2-0.9,2-2v-4h-4.5V13z"},"children":[{"name":"path","attribs":{"d":"M16.5,13H19v2h-5V9h7c0-1.1-0.9-2-2-2h-5c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h5c1.1,0,2-0.9,2-2v-4h-4.5V13z"},"children":[]}]},{"name":"path","attribs":{"d":"M3,13h5v2H3v2h5c1.1,0,2-0.9,2-2v-2c0-1.1-0.9-2-2-2H5V9h5V7H3V13z"},"children":[{"name":"path","attribs":{"d":"M3,13h5v2H3v2h5c1.1,0,2-0.9,2-2v-2c0-1.1-0.9-2-2-2H5V9h5V7H3V13z"},"children":[]}]}]}]}]}]};exports.ic_5g_twotone=ic_5g_twotone;var ic_5k={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8 7.5H8v1h2c.55 0 1 .45 1 1V14c0 .55-.45 1-1 1H6.5v-1.5h3v-1h-3V9H11v1.5zm7 4.5h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z"},"children":[]}]};exports.ic_5k=ic_5k;var ic_5k_plus={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9.5 7.5h-3v1h2c.55 0 1 .45 1 1V14c0 .55-.45 1-1 1H5v-1.5h3v-1H5V9h4.5v1.5zM16 15h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15zm4-2.5h-1.5V14h-1v-1.5H16v-1h1.5V10h1v1.5H20v1z"},"children":[]}]};exports.ic_5k_plus=ic_5k_plus;var ic_6k={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8 12.5h1.5V14H8zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8 7.5H8v1h2c.55 0 1 .45 1 1V14c0 .55-.45 1-1 1H7.5c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1H11v1.5zm7 4.5h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z"},"children":[]}]};exports.ic_6k=ic_6k;var ic_6k_plus={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6.5 12.5H8V14H6.5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9.5 7.5h-3v1h2c.55 0 1 .45 1 1V14c0 .55-.45 1-1 1H6c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3.5v1.5zM16 15h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15zm4-2.5h-1.5V14h-1v-1.5H16v-1h1.5V10h1v1.5H20v1z"},"children":[]}]};exports.ic_6k_plus=ic_6k_plus;var ic_7k={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9.5 15H7.75l1.38-4.5H6.5V9H10c.67 0 1.15.65.96 1.29L9.5 15zm8.5 0h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z"},"children":[]}]};exports.ic_7k=ic_7k;var ic_7k_plus={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM8 15H6.25l1.38-4.5H5V9h3.5c.67 0 1.15.65.96 1.29L8 15zm8 0h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15zm4-2.5h-1.5V14h-1v-1.5H16v-1h1.5V10h1v1.5H20v1z"},"children":[]}]};exports.ic_7k_plus=ic_7k_plus;var ic_8k={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8 12.5h1.5V14H8zM8 10h1.5v1.5H8zm11-7H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8 11c0 .55-.45 1-1 1H7.5c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1H10c.55 0 1 .45 1 1v4zm7 1h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z"},"children":[]}]};exports.ic_8k=ic_8k;var ic_8k_plus={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6.5 12.5H8V14H6.5zm0-2.5H8v1.5H6.5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9.5 14c0 .55-.45 1-1 1H6c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4zm6.5 1h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15zm4-2.5h-1.5V14h-1v-1.5H16v-1h1.5V10h1v1.5H20v1z"},"children":[]}]};exports.ic_8k_plus=ic_8k_plus;var ic_9k={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8 10h1.5v1.5H8zm11-7H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8 11c0 .55-.45 1-1 1H6.5v-1.5h3v-1h-2c-.55 0-1-.45-1-1V10c0-.55.45-1 1-1H10c.55 0 1 .45 1 1v4zm7 1h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z"},"children":[]}]};exports.ic_9k=ic_9k;var ic_9k_plus={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6.5 10H8v1.5H6.5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9.5 14c0 .55-.45 1-1 1H5v-1.5h3v-1H6c-.55 0-1-.45-1-1V10c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4zm6.5 1h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15zm4-2.5h-1.5V14h-1v-1.5H16v-1h1.5V10h1v1.5H20v1z"},"children":[]}]};exports.ic_9k_plus=ic_9k_plus;var ic_add_to_queue={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 3H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.11-.9-2-2-2zm0 14H3V5h18v12zm-5-7v2h-3v3h-2v-3H8v-2h3V7h2v3h3z"},"children":[]}]};exports.ic_add_to_queue=ic_add_to_queue;var ic_add_to_queue_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11 15h2v-3h3v-2h-3V7h-2v3H8v2h3zM21 3H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5v2h8v-2h5c1.1 0 2-.9 2-2V5c0-1.11-.9-2-2-2zm0 14H3V5h18v12z"},"children":[]}]};exports.ic_add_to_queue_outline=ic_add_to_queue_outline;var ic_add_to_queue_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 17h18V5H3v12zm5-7h3V7h2v3h3v2h-3v3h-2v-3H8v-2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M11 15h2v-3h3v-2h-3V7h-2v3H8v2h3zM21 3H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5v2h8v-2h5c1.1 0 2-.9 2-2V5c0-1.11-.9-2-2-2zm0 14H3V5h18v12z"},"children":[]}]};exports.ic_add_to_queue_twotone=ic_add_to_queue_twotone;var ic_airplay={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"6,22 18,22 12,16"},"children":[{"name":"polygon","attribs":{"points":"6,22 18,22 12,16"},"children":[]}]},{"name":"path","attribs":{"d":"M21,3H3C1.9,3,1,3.9,1,5v12c0,1.1,0.9,2,2,2h4v-2H3V5h18v12h-4v2h4c1.1,0,2-0.9,2-2V5C23,3.9,22.1,3,21,3z"},"children":[{"name":"path","attribs":{"d":"M21,3H3C1.9,3,1,3.9,1,5v12c0,1.1,0.9,2,2,2h4v-2H3V5h18v12h-4v2h4c1.1,0,2-0.9,2-2V5C23,3.9,22.1,3,21,3z"},"children":[]}]}]}]};exports.ic_airplay=ic_airplay;var ic_airplay_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"6,22 18,22 12,16"},"children":[{"name":"polygon","attribs":{"points":"6,22 18,22 12,16"},"children":[]}]},{"name":"path","attribs":{"d":"M21,3H3C1.9,3,1,3.9,1,5v12c0,1.1,0.9,2,2,2h4v-2H3V5h18v12h-4v2h4c1.1,0,2-0.9,2-2V5C23,3.9,22.1,3,21,3z"},"children":[{"name":"path","attribs":{"d":"M21,3H3C1.9,3,1,3.9,1,5v12c0,1.1,0.9,2,2,2h4v-2H3V5h18v12h-4v2h4c1.1,0,2-0.9,2-2V5C23,3.9,22.1,3,21,3z"},"children":[]}]}]}]}]}]};exports.ic_airplay_outline=ic_airplay_outline;var ic_airplay_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"6,22 18,22 12,16"},"children":[{"name":"polygon","attribs":{"points":"6,22 18,22 12,16"},"children":[]}]},{"name":"path","attribs":{"d":"M21,3H3C1.9,3,1,3.9,1,5v12c0,1.1,0.9,2,2,2h4v-2H3V5h18v12h-4v2h4c1.1,0,2-0.9,2-2V5C23,3.9,22.1,3,21,3z"},"children":[{"name":"path","attribs":{"d":"M21,3H3C1.9,3,1,3.9,1,5v12c0,1.1,0.9,2,2,2h4v-2H3V5h18v12h-4v2h4c1.1,0,2-0.9,2-2V5C23,3.9,22.1,3,21,3z"},"children":[]}]}]}]}]}]};exports.ic_airplay_twotone=ic_airplay_twotone;var ic_album={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 14.5c-2.49 0-4.5-2.01-4.5-4.5S9.51 7.5 12 7.5s4.5 2.01 4.5 4.5-2.01 4.5-4.5 4.5zm0-5.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z"},"children":[]}]};exports.ic_album=ic_album;var ic_album_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-12.5c-2.49 0-4.5 2.01-4.5 4.5s2.01 4.5 4.5 4.5 4.5-2.01 4.5-4.5-2.01-4.5-4.5-4.5zm0 5.5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z"},"children":[]}]};exports.ic_album_outline=ic_album_outline;var ic_album_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm0 12.5c-2.49 0-4.5-2.01-4.5-4.5S9.51 7.5 12 7.5s4.5 2.01 4.5 4.5-2.01 4.5-4.5 4.5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-12.5c-2.49 0-4.5 2.01-4.5 4.5s2.01 4.5 4.5 4.5 4.5-2.01 4.5-4.5-2.01-4.5-4.5-4.5zm0 5.5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z"},"children":[]}]};exports.ic_album_twotone=ic_album_twotone;var ic_art_track={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 13h-8v-2h8v2zm0-6h-8v2h8V7zm-8 10h8v-2h-8v2zm-2-8v6c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V9c0-1.1.9-2 2-2h6c1.1 0 2 .9 2 2zm-1.5 6l-2.25-3-1.75 2.26-1.25-1.51L3.5 15h7z"},"children":[]}]};exports.ic_art_track=ic_art_track;var ic_art_track_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 13h-8v-2h8v2zm0-6h-8v2h8V7zm-8 10h8v-2h-8v2zm-2-8v6c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V9c0-1.1.9-2 2-2h6c1.1 0 2 .9 2 2zm-1.5 6l-2.25-3-1.75 2.26-1.25-1.51L3.5 15h7z"},"children":[]}]};exports.ic_art_track_outline=ic_art_track_outline;var ic_art_track_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14 7h8v2h-8zm0 4h8v2h-8zm0 4h8v2h-8zM4 17h6c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2zm1.25-4.25l1.25 1.51L8.25 12l2.25 3h-7l1.75-2.25z"},"children":[]}]};exports.ic_art_track_twotone=ic_art_track_twotone;var ic_av_timer={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11 17c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1-1 .45-1 1zm0-14v4h2V5.08c3.39.49 6 3.39 6 6.92 0 3.87-3.13 7-7 7s-7-3.13-7-7c0-1.68.59-3.22 1.58-4.42L12 13l1.41-1.41-6.8-6.8v.02C4.42 6.45 3 9.05 3 12c0 4.97 4.02 9 9 9 4.97 0 9-4.03 9-9s-4.03-9-9-9h-1zm7 9c0-.55-.45-1-1-1s-1 .45-1 1 .45 1 1 1 1-.45 1-1zM6 12c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1-1 .45-1 1z"},"children":[]}]};exports.ic_av_timer=ic_av_timer;var ic_av_timer_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11 17c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1-1 .45-1 1zm0-14v4h2V5.08c3.39.49 6 3.39 6 6.92 0 3.87-3.13 7-7 7s-7-3.13-7-7c0-1.68.59-3.22 1.58-4.42L12 13l1.41-1.41-6.8-6.8v.02C4.42 6.45 3 9.05 3 12c0 4.97 4.02 9 9 9 4.97 0 9-4.03 9-9s-4.03-9-9-9h-1zm7 9c0-.55-.45-1-1-1s-1 .45-1 1 .45 1 1 1 1-.45 1-1zM6 12c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1-1 .45-1 1z"},"children":[]}]};exports.ic_av_timer_outline=ic_av_timer_outline;var ic_av_timer_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 21c4.97 0 9-4.03 9-9s-4.03-9-9-9h-1v4h2V5.08c3.39.49 6 3.39 6 6.92 0 3.87-3.13 7-7 7s-7-3.13-7-7c0-1.68.59-3.22 1.58-4.42L12 13l1.41-1.41-6.8-6.8v.02C4.42 6.45 3 9.05 3 12c0 4.97 4.02 9 9 9z"},"children":[]},{"name":"circle","attribs":{"cx":"12","cy":"17","r":"1"},"children":[]},{"name":"circle","attribs":{"cx":"17","cy":"12","r":"1"},"children":[]},{"name":"circle","attribs":{"cx":"7","cy":"12","r":"1"},"children":[]}]};exports.ic_av_timer_twotone=ic_av_timer_twotone;var ic_branding_watermark={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16h-9v-6h9v6z"},"children":[]}]};exports.ic_branding_watermark=ic_branding_watermark;var ic_branding_watermark_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zm-10-7h9v6h-9z"},"children":[]}]};exports.ic_branding_watermark_outline=ic_branding_watermark_outline;var ic_branding_watermark_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 19h18V5H3v14zm8-7h9v6h-9v-6z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zm-10-7h9v6h-9z"},"children":[]}]};exports.ic_branding_watermark_twotone=ic_branding_watermark_twotone;var ic_call_to_action={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3v-3h18v3z"},"children":[]}]};exports.ic_call_to_action=ic_call_to_action;var ic_call_to_action_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM5 15h14v3H5z"},"children":[]}]};exports.ic_call_to_action_outline=ic_call_to_action_outline;var ic_call_to_action_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 19h18V5H3v14zm2-4h14v3H5v-3z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM5 15h14v3H5z"},"children":[]}]};exports.ic_call_to_action_twotone=ic_call_to_action_twotone;var ic_closed_caption={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-8 7H9.5v-.5h-2v3h2V13H11v1c0 .55-.45 1-1 1H7c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v1zm7 0h-1.5v-.5h-2v3h2V13H18v1c0 .55-.45 1-1 1h-3c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v1z"},"children":[]}]};exports.ic_closed_caption=ic_closed_caption;var ic_closed_caption_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H5V6h14v12zM7 15h3c.55 0 1-.45 1-1v-1H9.5v.5h-2v-3h2v.5H11v-1c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm7 0h3c.55 0 1-.45 1-1v-1h-1.5v.5h-2v-3h2v.5H18v-1c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1z"},"children":[]}]};exports.ic_closed_caption_outline=ic_closed_caption_outline;var ic_closed_caption_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 6H5v12h14V6zm-8 5H9.5v-.5h-2v3h2V13H11v1c0 .55-.45 1-1 1H7c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v1zm7 0h-1.5v-.5h-2v3h2V13H18v1c0 .55-.45 1-1 1h-3c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v1z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M5 20h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2zM5 6h14v12H5V6zm5 3H7c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h3c.55 0 1-.45 1-1v-1H9.5v.5h-2v-3h2v.5H11v-1c0-.55-.45-1-1-1zm7 0h-3c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h3c.55 0 1-.45 1-1v-1h-1.5v.5h-2v-3h2v.5H18v-1c0-.55-.45-1-1-1z"},"children":[]}]};exports.ic_closed_caption_twotone=ic_closed_caption_twotone;var ic_closed_caption_disabled={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M6.83,4H19c1.1,0,2,0.9,2,2v12c0,0.05-0.01,0.1-0.02,0.16l-3.38-3.38C17.84,14.59,18,14.32,18,14v-1h-1.5v0.5h-0.17 l-1.83-1.83V10.5h2V11H18v-1c0-0.55-0.45-1-1-1h-3c-0.55,0-1,0.45-1,1v0.17L6.83,4z M19.78,22.61L17.17,20H5c-1.11,0-2-0.9-2-2V6 c0-0.05,0.02-0.1,0.02-0.15L1.39,4.22l1.41-1.41l18.38,18.38L19.78,22.61z M11,13.83L10.17,13H9.5v0.5h-2v-3h0.17L6.4,9.22 C6.16,9.41,6,9.68,6,10v4c0,0.55,0.45,1,1,1h3c0.55,0,1-0.45,1-1V13.83z"},"children":[]}]};exports.ic_closed_caption_disabled=ic_closed_caption_disabled;var ic_closed_caption_disabled_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M13,10c0-0.55,0.45-1,1-1h3c0.55,0,1,0.45,1,1v1h-1.5v-0.5h-2v1L13,10z M16.5,13.5l1.21,1.21C17.89,14.52,18,14.27,18,14v-1 h-1.5V13.5z M8.83,6H19v10.17l1.98,1.98c0-0.05,0.02-0.1,0.02-0.16V6c0-1.1-0.9-2-2-2H6.83L8.83,6z M19.78,22.61L17.17,20H5 c-1.11,0-2-0.9-2-2V6c0-0.05,0.02-0.1,0.02-0.15L1.39,4.22l1.41-1.41l18.38,18.38L19.78,22.61z M7.5,13.5h2V13h0.67l-2.5-2.5H7.5 V13.5z M15.17,18L11,13.83V14c0,0.55-0.45,1-1,1H7c-0.55,0-1-0.45-1-1v-4c0-0.32,0.16-0.59,0.4-0.78L5,7.83V18H15.17z"},"children":[]}]};exports.ic_closed_caption_disabled_outline=ic_closed_caption_disabled_outline;var ic_closed_caption_disabled_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M8.83,6H19v10.17l-1.4-1.4C17.84,14.59,18,14.32,18,14v-1h-1.5v0.5h-0.17 l-1.83-1.83V10.5h2V11H18v-1c0-0.55-0.45-1-1-1h-3c-0.55,0-1,0.45-1,1v0.17L8.83,6z M7.5,13.5h2V13h0.67l-2.5-2.5H7.5V13.5z M11,14 c0,0.55-0.45,1-1,1H7c-0.55,0-1-0.45-1-1v-4c0-0.32,0.16-0.59,0.4-0.78L5,7.83V18h10.17L11,13.83V14z","enable-background":"new","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M6.83,4H19c1.1,0,2,0.9,2,2v12c0,0.05-0.01,0.1-0.02,0.16L19,16.17V6H8.83L6.83,4z M19.78,22.61L17.17,20H5 c-1.11,0-2-0.9-2-2V6c0-0.05,0.02-0.1,0.02-0.15L1.39,4.22l1.41-1.41L18,18l1.82,1.82l1.37,1.37L19.78,22.61z M7.5,13.5h2V13h0.67 l-2.5-2.5H7.5V13.5z M15.17,18L11,13.83V14c0,0.55-0.45,1-1,1H7c-0.55,0-1-0.45-1-1v-4c0-0.32,0.16-0.59,0.4-0.78L5,7.83V18H15.17z M18,14v-1h-1.5v0.5h-0.17l1.28,1.28C17.84,14.59,18,14.32,18,14z M14.5,11.67V10.5h2V11H18v-1c0-0.55-0.45-1-1-1h-3 c-0.55,0-1,0.45-1,1v0.17L14.5,11.67z"},"children":[]}]};exports.ic_closed_caption_disabled_twotone=ic_closed_caption_disabled_twotone;var ic_closed_caption_off={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19.5 5.5v13h-15v-13h15zM19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-8 7H9.5v-.5h-2v3h2V13H11v1c0 .55-.45 1-1 1H7c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v1zm7 0h-1.5v-.5h-2v3h2V13H18v1c0 .55-.45 1-1 1h-3c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v1z"},"children":[]}]};exports.ic_closed_caption_off=ic_closed_caption_off;var ic_control_camera={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.54 5.54L13.77 7.3 12 5.54 10.23 7.3 8.46 5.54 12 2zm2.92 10l-1.76-1.77L18.46 12l-1.76-1.77 1.76-1.77L22 12zm-10 2.92l1.77-1.76L12 18.46l1.77-1.76 1.77 1.76L12 22zm-2.92-10l1.76 1.77L5.54 12l1.76 1.77-1.76 1.77L2 12z"},"children":[]},{"name":"circle","attribs":{"cx":"12","cy":"12","r":"3"},"children":[]}]};exports.ic_control_camera=ic_control_camera;var ic_control_camera_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5.54 8.46L2 12l3.54 3.54 1.76-1.77L5.54 12l1.76-1.77zm6.46 10l-1.77-1.76-1.77 1.76L12 22l3.54-3.54-1.77-1.76zm6.46-10l-1.76 1.77L18.46 12l-1.76 1.77 1.76 1.77L22 12zm-10-2.92l1.77 1.76L12 5.54l1.77 1.76 1.77-1.76L12 2z"},"children":[]},{"name":"circle","attribs":{"cx":"12","cy":"12","r":"3"},"children":[]}]};exports.ic_control_camera_outline=ic_control_camera_outline;var ic_control_camera_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7.3 13.77L5.54 12l1.76-1.77-1.76-1.77L2 12l3.54 3.54zm8.24 4.69l-1.77-1.76L12 18.46l-1.77-1.76-1.77 1.76L12 22zm2.92-2.92L22 12l-3.54-3.54-1.76 1.77L18.46 12l-1.76 1.77zM12 5.54l1.77 1.76 1.77-1.76L12 2 8.46 5.54l1.77 1.76z"},"children":[]},{"name":"circle","attribs":{"cx":"12","cy":"12","r":"3"},"children":[]}]};exports.ic_control_camera_twotone=ic_control_camera_twotone;var ic_equalizer={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 20h4V4h-4v16zm-6 0h4v-8H4v8zM16 9v11h4V9h-4z"},"children":[]}]};exports.ic_equalizer=ic_equalizer;var ic_equalizer_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 20h4V4h-4v16zm-6 0h4v-8H4v8zM16 9v11h4V9h-4z"},"children":[]}]};exports.ic_equalizer_outline=ic_equalizer_outline;var ic_equalizer_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16 9h4v11h-4zm-6-5h4v16h-4zm-6 8h4v8H4z"},"children":[]}]};exports.ic_equalizer_twotone=ic_equalizer_twotone;var ic_explicit={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4 6h-4v2h4v2h-4v2h4v2H9V7h6v2z"},"children":[]}]};exports.ic_explicit=ic_explicit;var ic_explicit_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-4-4h-4v-2h4v-2h-4V9h4V7H9v10h6z"},"children":[]}]};exports.ic_explicit_outline=ic_explicit_outline;var ic_explicit_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 19h14V5H5v14zM9 7h6v2h-4v2h4v2h-4v2h4v2H9V7z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M21 19V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zm-2 0H5V5h14v14zm-4-4h-4v-2h4v-2h-4V9h4V7H9v10h6z"},"children":[]}]};exports.ic_explicit_twotone=ic_explicit_twotone;var ic_fast_forward={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 18l8.5-6L4 6v12zm9-12v12l8.5-6L13 6z"},"children":[]}]};exports.ic_fast_forward=ic_fast_forward;var ic_fast_forward_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"path","attribs":{"d":"M15,9.86L18.03,12L15,14.14V9.86 M6,9.86L9.03,12L6,14.14V9.86 M13,6v12l8.5-6L13,6L13,6z M4,6v12l8.5-6L4,6L4,6z"},"children":[{"name":"path","attribs":{"d":"M15,9.86L18.03,12L15,14.14V9.86 M6,9.86L9.03,12L6,14.14V9.86 M13,6v12l8.5-6L13,6L13,6z M4,6v12l8.5-6L4,6L4,6z"},"children":[]}]}]}]};exports.ic_fast_forward_outline=ic_fast_forward_outline;var ic_fast_forward_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"opacity":".3","points":"15,9.86 15,14.14 18.03,12"},"children":[{"name":"polygon","attribs":{"opacity":".3","points":"15,9.86 15,14.14 18.03,12"},"children":[]}]},{"name":"polygon","attribs":{"opacity":".3","points":"6,9.86 6,14.14 9.03,12"},"children":[{"name":"polygon","attribs":{"opacity":".3","points":"6,9.86 6,14.14 9.03,12"},"children":[]}]},{"name":"path","attribs":{"d":"M4,18l8.5-6L4,6V18z M6,9.86L9.03,12L6,14.14V9.86z"},"children":[{"name":"path","attribs":{"d":"M4,18l8.5-6L4,6V18z M6,9.86L9.03,12L6,14.14V9.86z"},"children":[]}]},{"name":"path","attribs":{"d":"M21.5,12L13,6v12L21.5,12z M15,9.86L18.03,12L15,14.14V9.86z"},"children":[{"name":"path","attribs":{"d":"M21.5,12L13,6v12L21.5,12z M15,9.86L18.03,12L15,14.14V9.86z"},"children":[]}]}]}]}]}]};exports.ic_fast_forward_twotone=ic_fast_forward_twotone;var ic_fast_rewind={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11 18V6l-8.5 6 8.5 6zm.5-6l8.5 6V6l-8.5 6z"},"children":[]}]};exports.ic_fast_rewind=ic_fast_rewind;var ic_fast_rewind_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 9.86v4.28L14.97 12 18 9.86m-9 0v4.28L5.97 12 9 9.86M20 6l-8.5 6 8.5 6V6zm-9 0l-8.5 6 8.5 6V6z"},"children":[]}]};exports.ic_fast_rewind_outline=ic_fast_rewind_outline;var ic_fast_rewind_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9 14.14V9.86L5.97 12zm9 0V9.86L14.97 12z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M11 6l-8.5 6 8.5 6V6zm-2 8.14L5.97 12 9 9.86v4.28zM20 6l-8.5 6 8.5 6V6zm-2 8.14L14.97 12 18 9.86v4.28z"},"children":[]}]};exports.ic_fast_rewind_twotone=ic_fast_rewind_twotone;var ic_featured_play_list={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 8H3V9h9v2zm0-4H3V5h9v2z"},"children":[]}]};exports.ic_featured_play_list=ic_featured_play_list;var ic_featured_play_list_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM5 10h9v2H5zm0-3h9v2H5z"},"children":[]}]};exports.ic_featured_play_list_outline=ic_featured_play_list_outline;var ic_featured_play_list_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 19h18V5H3v14zM5 7h9v2H5V7zm0 3h9v2H5v-2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM5 10h9v2H5zm0-3h9v2H5z"},"children":[]}]};exports.ic_featured_play_list_twotone=ic_featured_play_list_twotone;var ic_featured_video={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 9H3V5h9v7z"},"children":[]}]};exports.ic_featured_video=ic_featured_video;var ic_featured_video_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM4 6h9v7H4z"},"children":[]}]};exports.ic_featured_video_outline=ic_featured_video_outline;var ic_featured_video_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 19h18V5H3v14zM4 6h9v7H4V6z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM4 6h9v7H4z"},"children":[]}]};exports.ic_featured_video_twotone=ic_featured_video_twotone;var ic_fiber_dvr={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M17.5,10.5h2v1h-2V10.5z M4.5,10.5h2v3h-2V10.5z M21,3H3C1.89,3,1,3.89,1,5v14c0,1.1,0.89,2,2,2h18c1.11,0,2-0.9,2-2V5 C23,3.89,22.11,3,21,3z M8,13.5C8,14.35,7.35,15,6.5,15H3V9h3.5C7.35,9,8,9.65,8,10.5V13.5z M12.62,15h-1.5L9.37,9h1.5l1,3.43 l1-3.43h1.5L12.62,15z M21,11.5c0,0.6-0.4,1.15-0.9,1.4L21,15h-1.5l-0.85-2H17.5v2H16V9h3.5c0.85,0,1.5,0.65,1.5,1.5V11.5z"},"children":[{"name":"path","attribs":{"d":"M17.5,10.5h2v1h-2V10.5z M4.5,10.5h2v3h-2V10.5z M21,3H3C1.89,3,1,3.89,1,5v14c0,1.1,0.89,2,2,2h18c1.11,0,2-0.9,2-2V5 C23,3.89,22.11,3,21,3z M8,13.5C8,14.35,7.35,15,6.5,15H3V9h3.5C7.35,9,8,9.65,8,10.5V13.5z M12.62,15h-1.5L9.37,9h1.5l1,3.43 l1-3.43h1.5L12.62,15z M21,11.5c0,0.6-0.4,1.15-0.9,1.4L21,15h-1.5l-0.85-2H17.5v2H16V9h3.5c0.85,0,1.5,0.65,1.5,1.5V11.5z"},"children":[]}]}]}]}]}]}]}]};exports.ic_fiber_dvr=ic_fiber_dvr;var ic_fiber_dvr_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11.87 12.43l-1-3.43h-1.5l1.75 6h1.5l1.75-6h-1.5zM21 11.5v-1c0-.85-.65-1.5-1.5-1.5H16v6h1.5v-2h1.15l.85 2H21l-.9-2.1c.5-.25.9-.8.9-1.4zm-1.5 0h-2v-1h2v1zM6.5 9H3v6h3.5c.85 0 1.5-.65 1.5-1.5v-3C8 9.65 7.35 9 6.5 9zm0 4.5h-2v-3h2v3z"},"children":[]}]};exports.ic_fiber_dvr_outline=ic_fiber_dvr_outline;var ic_fiber_dvr_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 11.56v-.89c0-.76-.58-1.33-1.33-1.33h-3.11v5.33h1.33v-1.78h1.02l.76 1.78H20l-.8-1.87c.44-.22.8-.71.8-1.24zm-1.33 0h-1.78v-.89h1.78v.89zM7.11 9.33H4v5.33h3.11c.76 0 1.33-.58 1.33-1.33v-2.67c0-.75-.57-1.33-1.33-1.33zm0 4H5.33v-2.67h1.78v2.67zm7-4h-1.34l-.89 3.05L11 9.33H9.66l1.56 5.34h1.33z"},"children":[]},{"name":"path","attribs":{"d":"M3 5h18v14H3z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M21 3H3c-1.11 0-2 .89-2 2v14c0 1.1.89 2 2 2h18c1.11 0 2-.9 2-2V5c0-1.11-.89-2-2-2zm0 16H3V5h18v14z"},"children":[]}]};exports.ic_fiber_dvr_twotone=ic_fiber_dvr_twotone;var ic_fiber_manual_record={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M24 24H0V0h24v24z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"12","cy":"12","r":"8"},"children":[]}]};exports.ic_fiber_manual_record=ic_fiber_manual_record;var ic_fiber_manual_record_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 6c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6 2.69-6 6-6m0-2c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8z"},"children":[]}]};exports.ic_fiber_manual_record_outline=ic_fiber_manual_record_outline;var ic_fiber_manual_record_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 18c3.31 0 6-2.69 6-6s-2.69-6-6-6-6 2.69-6 6 2.69 6 6 6z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 20c4.42 0 8-3.58 8-8s-3.58-8-8-8-8 3.58-8 8 3.58 8 8 8zm0-14c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6 2.69-6 6-6z"},"children":[]}]};exports.ic_fiber_manual_record_twotone=ic_fiber_manual_record_twotone;var ic_fiber_new={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M20,4H4C2.89,4,2.01,4.89,2.01,6L2,18c0,1.11,0.89,2,2,2h16c1.11,0,2-0.89,2-2V6C22,4.89,21.11,4,20,4z M8.5,15H7.3 l-2.55-3.5V15H3.5V9h1.25l2.5,3.5V9H8.5V15z M13.5,10.26H11v1.12h2.5v1.26H11v1.11h2.5V15h-4V9h4V10.26z M20.5,14 c0,0.55-0.45,1-1,1h-4c-0.55,0-1-0.45-1-1V9h1.25v4.51h1.13V9.99h1.25v3.51h1.12V9h1.25V14z"},"children":[{"name":"path","attribs":{"d":"M20,4H4C2.89,4,2.01,4.89,2.01,6L2,18c0,1.11,0.89,2,2,2h16c1.11,0,2-0.89,2-2V6C22,4.89,21.11,4,20,4z M8.5,15H7.3 l-2.55-3.5V15H3.5V9h1.25l2.5,3.5V9H8.5V15z M13.5,10.26H11v1.12h2.5v1.26H11v1.11h2.5V15h-4V9h4V10.26z M20.5,14 c0,0.55-0.45,1-1,1h-4c-0.55,0-1-0.45-1-1V9h1.25v4.51h1.13V9.99h1.25v3.51h1.12V9h1.25V14z"},"children":[]}]}]}]}]}]}]}]};exports.ic_fiber_new=ic_fiber_new;var ic_fiber_new_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7.25 12.5L4.75 9H3.5v6h1.25v-3.5L7.3 15h1.2V9H7.25zM9.5 15h4v-1.25H11v-1.11h2.5v-1.26H11v-1.12h2.5V9h-4zm9.75-6v4.5h-1.12V9.99h-1.25v3.52h-1.13V9H14.5v5c0 .55.45 1 1 1h4c.55 0 1-.45 1-1V9h-1.25z"},"children":[]}]};exports.ic_fiber_new_outline=ic_fiber_new_outline;var ic_fiber_new_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9.12 14.47V9.53H8.09v2.88L6.03 9.53H5v4.94h1.03v-2.88l2.1 2.88zm4.12-3.9V9.53h-3.3v4.94h3.3v-1.03h-2.06v-.91h2.06v-1.04h-2.06v-.92zm.82-1.04v4.12c0 .45.37.82.82.82h3.29c.45 0 .82-.37.82-.82V9.53h-1.03v3.71h-.92v-2.89h-1.03v2.9h-.93V9.53h-1.02z"},"children":[]},{"name":"path","attribs":{"d":"M4 6h16v12H4z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4V6h16v12z"},"children":[]}]};exports.ic_fiber_new_twotone=ic_fiber_new_twotone;var ic_fiber_pin={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5.5 10.5h2v1h-2zM20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zM9 11.5c0 .85-.65 1.5-1.5 1.5h-2v2H4V9h3.5c.85 0 1.5.65 1.5 1.5v1zm3.5 3.5H11V9h1.5v6zm7.5 0h-1.2l-2.55-3.5V15H15V9h1.25l2.5 3.5V9H20v6z"},"children":[]}]};exports.ic_fiber_pin=ic_fiber_pin;var ic_fiber_pin_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11 15h1.5V9H11v6zm7.75-6v3.5L16.25 9H15v6h1.25v-3.5L18.8 15H20V9h-1.25zM7.5 9H4v6h1.5v-2h2c.85 0 1.5-.65 1.5-1.5v-1C9 9.65 8.35 9 7.5 9zm0 2.5h-2v-1h2v1z"},"children":[]}]};exports.ic_fiber_pin_outline=ic_fiber_pin_outline;var ic_fiber_pin_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 14.62h1.31v-1.75h1.75c.74 0 1.31-.57 1.31-1.31v-.88c0-.74-.57-1.31-1.31-1.31H5v5.25zm1.31-3.93h1.75v.88H6.31v-.88zm5.03-1.31h1.31v5.25h-1.31zm3.28 5.24h1.1v-3.06l2.23 3.06H19V9.38h-1.09v3.06l-2.19-3.06h-1.1z"},"children":[]},{"name":"path","attribs":{"d":"M4 6h16v12H4z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4V6h16v12z"},"children":[]}]};exports.ic_fiber_pin_twotone=ic_fiber_pin_twotone;var ic_fiber_smart_record={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M24 24H0V0h24v24z","fill":"none"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"cx":"9","cy":"12","r":"8"},"children":[{"name":"circle","attribs":{"cx":"9","cy":"12","r":"8"},"children":[]}]},{"name":"path","attribs":{"d":"M17 4.26v2.09c2.33.82 4 3.04 4 5.65s-1.67 4.83-4 5.65v2.09c3.45-.89 6-4.01 6-7.74s-2.55-6.85-6-7.74z"},"children":[{"name":"path","attribs":{"d":"M17 4.26v2.09c2.33.82 4 3.04 4 5.65s-1.67 4.83-4 5.65v2.09c3.45-.89 6-4.01 6-7.74s-2.55-6.85-6-7.74z"},"children":[]}]}]}]};exports.ic_fiber_smart_record=ic_fiber_smart_record;var ic_fiber_smart_record_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zm8-13.74v2.09c2.33.82 4 3.04 4 5.65s-1.67 4.83-4 5.65v2.09c3.45-.89 6-4.01 6-7.74 0-3.73-2.55-6.85-6-7.74z"},"children":[]}]};exports.ic_fiber_smart_record_outline=ic_fiber_smart_record_outline;var ic_fiber_smart_record_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9 18c3.31 0 6-2.69 6-6s-2.69-6-6-6-6 2.69-6 6 2.69 6 6 6z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M9 20c4.42 0 8-3.58 8-8s-3.58-8-8-8-8 3.58-8 8 3.58 8 8 8zM9 6c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6 2.69-6 6-6zm8-1.74v2.09c2.33.82 4 3.04 4 5.65s-1.67 4.83-4 5.65v2.09c3.45-.89 6-4.01 6-7.74 0-3.73-2.55-6.85-6-7.74z"},"children":[]}]};exports.ic_fiber_smart_record_twotone=ic_fiber_smart_record_twotone;var ic_forward_10={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M18,13c0,3.31-2.69,6-6,6s-6-2.69-6-6s2.69-6,6-6v4l5-5l-5-5v4c-4.42,0-8,3.58-8,8c0,4.42,3.58,8,8,8s8-3.58,8-8H18z"},"children":[{"name":"path","attribs":{"d":"M18,13c0,3.31-2.69,6-6,6s-6-2.69-6-6s2.69-6,6-6v4l5-5l-5-5v4c-4.42,0-8,3.58-8,8c0,4.42,3.58,8,8,8s8-3.58,8-8H18z"},"children":[]}]},{"name":"polygon","attribs":{"points":"10.86,15.94 10.86,11.67 10.77,11.67 9,12.3 9,12.99 10.01,12.68 10.01,15.94"},"children":[{"name":"polygon","attribs":{"points":"10.86,15.94 10.86,11.67 10.77,11.67 9,12.3 9,12.99 10.01,12.68 10.01,15.94"},"children":[]}]},{"name":"path","attribs":{"d":"M12.25,13.44v0.74c0,1.9,1.31,1.82,1.44,1.82c0.14,0,1.44,0.09,1.44-1.82v-0.74c0-1.9-1.31-1.82-1.44-1.82 C13.55,11.62,12.25,11.53,12.25,13.44z M14.29,13.32v0.97c0,0.77-0.21,1.03-0.59,1.03c-0.38,0-0.6-0.26-0.6-1.03v-0.97 c0-0.75,0.22-1.01,0.59-1.01C14.07,12.3,14.29,12.57,14.29,13.32z"},"children":[{"name":"path","attribs":{"d":"M12.25,13.44v0.74c0,1.9,1.31,1.82,1.44,1.82c0.14,0,1.44,0.09,1.44-1.82v-0.74c0-1.9-1.31-1.82-1.44-1.82 C13.55,11.62,12.25,11.53,12.25,13.44z M14.29,13.32v0.97c0,0.77-0.21,1.03-0.59,1.03c-0.38,0-0.6-0.26-0.6-1.03v-0.97 c0-0.75,0.22-1.01,0.59-1.01C14.07,12.3,14.29,12.57,14.29,13.32z"},"children":[]}]}]}]}]}]};exports.ic_forward_10=ic_forward_10;var ic_forward_10_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M18,13c0,3.31-2.69,6-6,6s-6-2.69-6-6s2.69-6,6-6v4l5-5l-5-5v4c-4.42,0-8,3.58-8,8c0,4.42,3.58,8,8,8s8-3.58,8-8H18z"},"children":[{"name":"path","attribs":{"d":"M18,13c0,3.31-2.69,6-6,6s-6-2.69-6-6s2.69-6,6-6v4l5-5l-5-5v4c-4.42,0-8,3.58-8,8c0,4.42,3.58,8,8,8s8-3.58,8-8H18z"},"children":[]}]},{"name":"polygon","attribs":{"points":"10.9,16 10.9,11.73 10.81,11.73 9.04,12.36 9.04,13.05 10.05,12.74 10.05,16"},"children":[{"name":"polygon","attribs":{"points":"10.9,16 10.9,11.73 10.81,11.73 9.04,12.36 9.04,13.05 10.05,12.74 10.05,16"},"children":[]}]},{"name":"path","attribs":{"d":"M14.32,11.78c-0.18-0.07-0.37-0.1-0.59-0.1s-0.41,0.03-0.59,0.1s-0.33,0.18-0.45,0.33s-0.23,0.34-0.29,0.57 s-0.1,0.5-0.1,0.82v0.74c0,0.32,0.04,0.6,0.11,0.82s0.17,0.42,0.3,0.57s0.28,0.26,0.46,0.33s0.37,0.1,0.59,0.1s0.41-0.03,0.59-0.1 s0.33-0.18,0.45-0.33s0.22-0.34,0.29-0.57s0.1-0.5,0.1-0.82V13.5c0-0.32-0.04-0.6-0.11-0.82s-0.17-0.42-0.3-0.57 S14.49,11.85,14.32,11.78z M14.33,14.35c0,0.19-0.01,0.35-0.04,0.48s-0.06,0.24-0.11,0.32s-0.11,0.14-0.19,0.17 s-0.16,0.05-0.25,0.05s-0.18-0.02-0.25-0.05s-0.14-0.09-0.19-0.17s-0.09-0.19-0.12-0.32s-0.04-0.29-0.04-0.48v-0.97 c0-0.19,0.01-0.35,0.04-0.48s0.06-0.23,0.12-0.31s0.11-0.14,0.19-0.17s0.16-0.05,0.25-0.05s0.18,0.02,0.25,0.05 s0.14,0.09,0.19,0.17s0.09,0.18,0.12,0.31s0.04,0.29,0.04,0.48V14.35z"},"children":[{"name":"path","attribs":{"d":"M14.32,11.78c-0.18-0.07-0.37-0.1-0.59-0.1s-0.41,0.03-0.59,0.1s-0.33,0.18-0.45,0.33s-0.23,0.34-0.29,0.57 s-0.1,0.5-0.1,0.82v0.74c0,0.32,0.04,0.6,0.11,0.82s0.17,0.42,0.3,0.57s0.28,0.26,0.46,0.33s0.37,0.1,0.59,0.1s0.41-0.03,0.59-0.1 s0.33-0.18,0.45-0.33s0.22-0.34,0.29-0.57s0.1-0.5,0.1-0.82V13.5c0-0.32-0.04-0.6-0.11-0.82s-0.17-0.42-0.3-0.57 S14.49,11.85,14.32,11.78z M14.33,14.35c0,0.19-0.01,0.35-0.04,0.48s-0.06,0.24-0.11,0.32s-0.11,0.14-0.19,0.17 s-0.16,0.05-0.25,0.05s-0.18-0.02-0.25-0.05s-0.14-0.09-0.19-0.17s-0.09-0.19-0.12-0.32s-0.04-0.29-0.04-0.48v-0.97 c0-0.19,0.01-0.35,0.04-0.48s0.06-0.23,0.12-0.31s0.11-0.14,0.19-0.17s0.16-0.05,0.25-0.05s0.18,0.02,0.25,0.05 s0.14,0.09,0.19,0.17s0.09,0.18,0.12,0.31s0.04,0.29,0.04,0.48V14.35z"},"children":[]}]}]}]}]}]};exports.ic_forward_10_outline=ic_forward_10_outline;var ic_forward_10_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M18,13c0,3.31-2.69,6-6,6s-6-2.69-6-6s2.69-6,6-6v4l5-5l-5-5v4c-4.42,0-8,3.58-8,8c0,4.42,3.58,8,8,8s8-3.58,8-8H18z"},"children":[{"name":"path","attribs":{"d":"M18,13c0,3.31-2.69,6-6,6s-6-2.69-6-6s2.69-6,6-6v4l5-5l-5-5v4c-4.42,0-8,3.58-8,8c0,4.42,3.58,8,8,8s8-3.58,8-8H18z"},"children":[]}]},{"name":"polygon","attribs":{"points":"10.9,16 10.9,11.73 10.81,11.73 9.04,12.36 9.04,13.05 10.05,12.74 10.05,16"},"children":[{"name":"polygon","attribs":{"points":"10.9,16 10.9,11.73 10.81,11.73 9.04,12.36 9.04,13.05 10.05,12.74 10.05,16"},"children":[]}]},{"name":"path","attribs":{"d":"M14.32,11.78c-0.18-0.07-0.37-0.1-0.59-0.1s-0.41,0.03-0.59,0.1s-0.33,0.18-0.45,0.33s-0.23,0.34-0.29,0.57 s-0.1,0.5-0.1,0.82v0.74c0,0.32,0.04,0.6,0.11,0.82s0.17,0.42,0.3,0.57s0.28,0.26,0.46,0.33s0.37,0.1,0.59,0.1s0.41-0.03,0.59-0.1 s0.33-0.18,0.45-0.33s0.22-0.34,0.29-0.57s0.1-0.5,0.1-0.82V13.5c0-0.32-0.04-0.6-0.11-0.82s-0.17-0.42-0.3-0.57 S14.49,11.85,14.32,11.78z M14.33,14.35c0,0.19-0.01,0.35-0.04,0.48s-0.06,0.24-0.11,0.32s-0.11,0.14-0.19,0.17 s-0.16,0.05-0.25,0.05s-0.18-0.02-0.25-0.05s-0.14-0.09-0.19-0.17s-0.09-0.19-0.12-0.32s-0.04-0.29-0.04-0.48v-0.97 c0-0.19,0.01-0.35,0.04-0.48s0.06-0.23,0.12-0.31s0.11-0.14,0.19-0.17s0.16-0.05,0.25-0.05s0.18,0.02,0.25,0.05 s0.14,0.09,0.19,0.17s0.09,0.18,0.12,0.31s0.04,0.29,0.04,0.48V14.35z"},"children":[{"name":"path","attribs":{"d":"M14.32,11.78c-0.18-0.07-0.37-0.1-0.59-0.1s-0.41,0.03-0.59,0.1s-0.33,0.18-0.45,0.33s-0.23,0.34-0.29,0.57 s-0.1,0.5-0.1,0.82v0.74c0,0.32,0.04,0.6,0.11,0.82s0.17,0.42,0.3,0.57s0.28,0.26,0.46,0.33s0.37,0.1,0.59,0.1s0.41-0.03,0.59-0.1 s0.33-0.18,0.45-0.33s0.22-0.34,0.29-0.57s0.1-0.5,0.1-0.82V13.5c0-0.32-0.04-0.6-0.11-0.82s-0.17-0.42-0.3-0.57 S14.49,11.85,14.32,11.78z M14.33,14.35c0,0.19-0.01,0.35-0.04,0.48s-0.06,0.24-0.11,0.32s-0.11,0.14-0.19,0.17 s-0.16,0.05-0.25,0.05s-0.18-0.02-0.25-0.05s-0.14-0.09-0.19-0.17s-0.09-0.19-0.12-0.32s-0.04-0.29-0.04-0.48v-0.97 c0-0.19,0.01-0.35,0.04-0.48s0.06-0.23,0.12-0.31s0.11-0.14,0.19-0.17s0.16-0.05,0.25-0.05s0.18,0.02,0.25,0.05 s0.14,0.09,0.19,0.17s0.09,0.18,0.12,0.31s0.04,0.29,0.04,0.48V14.35z"},"children":[]}]}]}]}]}]};exports.ic_forward_10_twotone=ic_forward_10_twotone;var ic_forward_30={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M18,13c0,3.31-2.69,6-6,6s-6-2.69-6-6s2.69-6,6-6v4l5-5l-5-5v4c-4.42,0-8,3.58-8,8c0,4.42,3.58,8,8,8s8-3.58,8-8H18z"},"children":[{"name":"path","attribs":{"d":"M18,13c0,3.31-2.69,6-6,6s-6-2.69-6-6s2.69-6,6-6v4l5-5l-5-5v4c-4.42,0-8,3.58-8,8c0,4.42,3.58,8,8,8s8-3.58,8-8H18z"},"children":[]}]},{"name":"path","attribs":{"d":"M10.06,15.38c-0.29,0-0.62-0.17-0.62-0.54H8.59c0,0.97,0.9,1.23,1.45,1.23c0.87,0,1.51-0.46,1.51-1.25 c0-0.66-0.45-0.9-0.71-1c0.11-0.05,0.65-0.32,0.65-0.92c0-0.21-0.05-1.22-1.44-1.22c-0.62,0-1.4,0.35-1.4,1.16h0.85 c0-0.34,0.31-0.48,0.57-0.48c0.59,0,0.58,0.5,0.58,0.54c0,0.52-0.41,0.59-0.63,0.59H9.56v0.66h0.45c0.65,0,0.7,0.42,0.7,0.64 C10.71,15.11,10.5,15.38,10.06,15.38z"},"children":[{"name":"path","attribs":{"d":"M10.06,15.38c-0.29,0-0.62-0.17-0.62-0.54H8.59c0,0.97,0.9,1.23,1.45,1.23c0.87,0,1.51-0.46,1.51-1.25 c0-0.66-0.45-0.9-0.71-1c0.11-0.05,0.65-0.32,0.65-0.92c0-0.21-0.05-1.22-1.44-1.22c-0.62,0-1.4,0.35-1.4,1.16h0.85 c0-0.34,0.31-0.48,0.57-0.48c0.59,0,0.58,0.5,0.58,0.54c0,0.52-0.41,0.59-0.63,0.59H9.56v0.66h0.45c0.65,0,0.7,0.42,0.7,0.64 C10.71,15.11,10.5,15.38,10.06,15.38z"},"children":[]}]},{"name":"path","attribs":{"d":"M13.85,11.68c-0.14,0-1.44-0.08-1.44,1.82v0.74c0,1.9,1.31,1.82,1.44,1.82c0.14,0,1.44,0.09,1.44-1.82V13.5 C15.3,11.59,13.99,11.68,13.85,11.68z M14.45,14.35c0,0.77-0.21,1.03-0.59,1.03c-0.38,0-0.6-0.26-0.6-1.03v-0.97 c0-0.75,0.22-1.01,0.59-1.01c0.38,0,0.6,0.26,0.6,1.01V14.35z"},"children":[{"name":"path","attribs":{"d":"M13.85,11.68c-0.14,0-1.44-0.08-1.44,1.82v0.74c0,1.9,1.31,1.82,1.44,1.82c0.14,0,1.44,0.09,1.44-1.82V13.5 C15.3,11.59,13.99,11.68,13.85,11.68z M14.45,14.35c0,0.77-0.21,1.03-0.59,1.03c-0.38,0-0.6-0.26-0.6-1.03v-0.97 c0-0.75,0.22-1.01,0.59-1.01c0.38,0,0.6,0.26,0.6,1.01V14.35z"},"children":[]}]}]}]}]}]};exports.ic_forward_30=ic_forward_30;var ic_forward_30_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 13c0 3.31-2.69 6-6 6s-6-2.69-6-6 2.69-6 6-6v4l5-5-5-5v4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8h-2zm-7.46 2.22c-.06.05-.12.09-.2.12s-.17.04-.27.04c-.09 0-.17-.01-.25-.04s-.14-.06-.2-.11-.1-.1-.13-.17-.05-.14-.05-.22h-.85c0 .21.04.39.12.55s.19.28.33.38.29.18.46.23.35.07.53.07c.21 0 .41-.03.6-.08s.34-.14.48-.24.24-.24.32-.39.12-.33.12-.53c0-.23-.06-.44-.18-.61s-.3-.3-.54-.39c.1-.05.2-.1.28-.17s.15-.14.2-.22.1-.16.13-.25.04-.18.04-.27c0-.2-.04-.37-.11-.53s-.17-.28-.3-.38-.28-.18-.46-.23-.37-.08-.59-.08c-.19 0-.38.03-.54.08s-.32.13-.44.23-.23.22-.3.37-.11.3-.11.48h.85c0-.07.02-.14.05-.2s.07-.11.12-.15.11-.07.18-.1.14-.03.22-.03c.1 0 .18.01.25.04s.13.06.18.11.08.11.11.17.04.14.04.22c0 .18-.05.32-.16.43s-.26.16-.48.16h-.43v.66h.45c.11 0 .2.01.29.04s.16.06.22.11.11.12.14.2.05.18.05.29c0 .09-.01.17-.04.24s-.08.11-.13.17zm3.9-3.44c-.18-.07-.37-.1-.59-.1s-.41.03-.59.1-.33.18-.45.33-.23.34-.29.57-.1.5-.1.82v.74c0 .32.04.6.11.82s.17.42.3.57.28.26.46.33.37.1.59.1.41-.03.59-.1.33-.18.45-.33.22-.34.29-.57.1-.5.1-.82v-.74c0-.32-.04-.6-.11-.82s-.17-.42-.3-.57-.28-.26-.46-.33zm.01 2.57c0 .19-.01.35-.04.48s-.06.24-.11.32-.11.14-.19.17-.16.05-.25.05-.18-.02-.25-.05-.14-.09-.19-.17-.09-.19-.12-.32-.04-.29-.04-.48v-.97c0-.19.01-.35.04-.48s.06-.23.12-.31.11-.14.19-.17.16-.05.25-.05.18.02.25.05.14.09.19.17.09.18.12.31.04.29.04.48v.97z"},"children":[]}]};exports.ic_forward_30_outline=ic_forward_30_outline;var ic_forward_30_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 13c0 3.31-2.69 6-6 6s-6-2.69-6-6 2.69-6 6-6v4l5-5-5-5v4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8h-2zm-7.46 2.22c-.06.05-.12.09-.2.12s-.17.04-.27.04c-.09 0-.17-.01-.25-.04s-.14-.06-.2-.11-.1-.1-.13-.17-.05-.14-.05-.22h-.85c0 .21.04.39.12.55s.19.28.33.38.29.18.46.23.35.07.53.07c.21 0 .41-.03.6-.08s.34-.14.48-.24.24-.24.32-.39.12-.33.12-.53c0-.23-.06-.44-.18-.61s-.3-.3-.54-.39c.1-.05.2-.1.28-.17s.15-.14.2-.22.1-.16.13-.25.04-.18.04-.27c0-.2-.04-.37-.11-.53s-.17-.28-.3-.38-.28-.18-.46-.23-.37-.08-.59-.08c-.19 0-.38.03-.54.08s-.32.13-.44.23-.23.22-.3.37-.11.3-.11.48h.85c0-.07.02-.14.05-.2s.07-.11.12-.15.11-.07.18-.1.14-.03.22-.03c.1 0 .18.01.25.04s.13.06.18.11.08.11.11.17.04.14.04.22c0 .18-.05.32-.16.43s-.26.16-.48.16h-.43v.66h.45c.11 0 .2.01.29.04s.16.06.22.11.11.12.14.2.05.18.05.29c0 .09-.01.17-.04.24s-.08.11-.13.17zm3.9-3.44c-.18-.07-.37-.1-.59-.1s-.41.03-.59.1-.33.18-.45.33-.23.34-.29.57-.1.5-.1.82v.74c0 .32.04.6.11.82s.17.42.3.57.28.26.46.33.37.1.59.1.41-.03.59-.1.33-.18.45-.33.22-.34.29-.57.1-.5.1-.82v-.74c0-.32-.04-.6-.11-.82s-.17-.42-.3-.57-.28-.26-.46-.33zm.01 2.57c0 .19-.01.35-.04.48s-.06.24-.11.32-.11.14-.19.17-.16.05-.25.05-.18-.02-.25-.05-.14-.09-.19-.17-.09-.19-.12-.32-.04-.29-.04-.48v-.97c0-.19.01-.35.04-.48s.06-.23.12-.31.11-.14.19-.17.16-.05.25-.05.18.02.25.05.14.09.19.17.09.18.12.31.04.29.04.48v.97z"},"children":[]}]};exports.ic_forward_30_twotone=ic_forward_30_twotone;var ic_forward_5={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M18,13c0,3.31-2.69,6-6,6s-6-2.69-6-6s2.69-6,6-6v4l5-5l-5-5v4c-4.42,0-8,3.58-8,8c0,4.42,3.58,8,8,8c4.42,0,8-3.58,8-8 H18z"},"children":[{"name":"path","attribs":{"d":"M18,13c0,3.31-2.69,6-6,6s-6-2.69-6-6s2.69-6,6-6v4l5-5l-5-5v4c-4.42,0-8,3.58-8,8c0,4.42,3.58,8,8,8c4.42,0,8-3.58,8-8 H18z"},"children":[]}]},{"name":"path","attribs":{"d":"M12.03,15.38c-0.44,0-0.58-0.31-0.6-0.56h-0.84c0.03,0.85,0.79,1.25,1.44,1.25c0.93,0,1.44-0.63,1.44-1.43 c0-1.33-0.97-1.44-1.3-1.44c-0.2,0-0.43,0.05-0.64,0.16l0.11-0.92h1.7v-0.71h-2.39l-0.25,2.17l0.67,0.17 c0.13-0.13,0.28-0.23,0.57-0.23c0.4,0,0.69,0.23,0.69,0.75C12.62,14.64,12.65,15.38,12.03,15.38z"},"children":[{"name":"path","attribs":{"d":"M12.03,15.38c-0.44,0-0.58-0.31-0.6-0.56h-0.84c0.03,0.85,0.79,1.25,1.44,1.25c0.93,0,1.44-0.63,1.44-1.43 c0-1.33-0.97-1.44-1.3-1.44c-0.2,0-0.43,0.05-0.64,0.16l0.11-0.92h1.7v-0.71h-2.39l-0.25,2.17l0.67,0.17 c0.13-0.13,0.28-0.23,0.57-0.23c0.4,0,0.69,0.23,0.69,0.75C12.62,14.64,12.65,15.38,12.03,15.38z"},"children":[]}]}]}]}]}]};exports.ic_forward_5=ic_forward_5;var ic_forward_5_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17.95 13c0 3.31-2.69 6-6 6s-6-2.69-6-6 2.69-6 6-6v4l5-5-5-5v4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8h-2zm-5.52 2.15c-.05.07-.11.13-.18.17s-.17.06-.27.06c-.17 0-.31-.05-.42-.15s-.17-.24-.19-.41h-.84c.01.2.05.37.13.53s.19.28.32.39.29.19.46.24.35.08.53.08c.24 0 .46-.04.64-.12s.33-.18.45-.31.21-.28.27-.45.09-.35.09-.54c0-.22-.03-.43-.09-.6s-.14-.33-.25-.45-.25-.22-.41-.28-.34-.1-.55-.1c-.07 0-.14.01-.2.02s-.13.02-.18.04-.1.03-.15.05-.08.04-.11.05l.11-.92h1.7v-.71H10.9l-.25 2.17.67.17c.03-.03.06-.06.1-.09s.07-.05.12-.07.1-.04.15-.05.13-.02.2-.02c.12 0 .22.02.3.05s.16.09.21.15.1.14.13.24.04.19.04.31-.01.22-.03.31-.06.17-.11.24z"},"children":[]}]};exports.ic_forward_5_outline=ic_forward_5_outline;var ic_forward_5_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17.95 13c0 3.31-2.69 6-6 6s-6-2.69-6-6 2.69-6 6-6v4l5-5-5-5v4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8h-2zm-5.52 2.15c-.05.07-.11.13-.18.17s-.17.06-.27.06c-.17 0-.31-.05-.42-.15s-.17-.24-.19-.41h-.84c.01.2.05.37.13.53s.19.28.32.39.29.19.46.24.35.08.53.08c.24 0 .46-.04.64-.12s.33-.18.45-.31.21-.28.27-.45.09-.35.09-.54c0-.22-.03-.43-.09-.6s-.14-.33-.25-.45-.25-.22-.41-.28-.34-.1-.55-.1c-.07 0-.14.01-.2.02s-.13.02-.18.04-.1.03-.15.05-.08.04-.11.05l.11-.92h1.7v-.71H10.9l-.25 2.17.67.17c.03-.03.06-.06.1-.09s.07-.05.12-.07.1-.04.15-.05.13-.02.2-.02c.12 0 .22.02.3.05s.16.09.21.15.1.14.13.24.04.19.04.31-.01.22-.03.31-.06.17-.11.24z"},"children":[]}]};exports.ic_forward_5_twotone=ic_forward_5_twotone;var ic_games={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15 7.5V2H9v5.5l3 3 3-3zM7.5 9H2v6h5.5l3-3-3-3zM9 16.5V22h6v-5.5l-3-3-3 3zM16.5 9l-3 3 3 3H22V9h-5.5z"},"children":[]}]};exports.ic_games=ic_games;var ic_games_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13 4v2.67l-1 1-1-1V4h2m7 7v2h-2.67l-1-1 1-1H20M6.67 11l1 1-1 1H4v-2h2.67M12 16.33l1 1V20h-2v-2.67l1-1M15 2H9v5.5l3 3 3-3V2zm7 7h-5.5l-3 3 3 3H22V9zM7.5 9H2v6h5.5l3-3-3-3zm4.5 4.5l-3 3V22h6v-5.5l-3-3z"},"children":[]}]};exports.ic_games_outline=ic_games_outline;var ic_games_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11 17.33V20h2v-2.67l-1-1zm2-10.66V4h-2v2.67l1 1zM16.33 12l1 1H20v-2h-2.67zM4 11v2h2.67l1-1-1-1z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M2 9v6h5.5l3-3-3-3H2zm4.67 4H4v-2h2.67l1 1-1 1zM22 9h-5.5l-3 3 3 3H22V9zm-2 4h-2.67l-1-1 1-1H20v2zm-5 3.5l-3-3-3 3V22h6v-5.5zM13 20h-2v-2.67l1-1 1 1V20zM9 7.5l3 3 3-3V2H9v5.5zM11 4h2v2.67l-1 1-1-1V4z"},"children":[]}]};exports.ic_games_twotone=ic_games_twotone;var ic_hd={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8 12H9.5v-2h-2v2H6V9h1.5v2.5h2V9H11v6zm2-6h4c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1h-4V9zm1.5 4.5h2v-3h-2v3z"},"children":[]}]};exports.ic_hd=ic_hd;var ic_hd_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM7.5 13h2v2H11V9H9.5v2.5h-2V9H6v6h1.5zM18 14v-4c0-.55-.45-1-1-1h-4v6h4c.55 0 1-.45 1-1zm-1.5-.5h-2v-3h2v3z"},"children":[]}]};exports.ic_hd_outline=ic_hd_outline;var ic_hd_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14.5 10.5h2v3h-2zM19 5H5v14h14V5zm-8 10H9.5v-2h-2v2H6V9h1.5v2.5h2V9H11v6zm7-1c0 .55-.45 1-1 1h-4V9h4c.55 0 1 .45 1 1v4z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M5 21h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2zM5 5h14v14H5V5zm4.5 6.5h-2V9H6v6h1.5v-2h2v2H11V9H9.5zM17 9h-4v6h4c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1zm-.5 4.5h-2v-3h2v3z"},"children":[]}]};exports.ic_hd_twotone=ic_hd_twotone;var ic_hearing={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 20c-.29 0-.56-.06-.76-.15-.71-.37-1.21-.88-1.71-2.38-.51-1.56-1.47-2.29-2.39-3-.79-.61-1.61-1.24-2.32-2.53C9.29 10.98 9 9.93 9 9c0-2.8 2.2-5 5-5s5 2.2 5 5h2c0-3.93-3.07-7-7-7S7 5.07 7 9c0 1.26.38 2.65 1.07 3.9.91 1.65 1.98 2.48 2.85 3.15.81.62 1.39 1.07 1.71 2.05.6 1.82 1.37 2.84 2.73 3.55.51.23 1.07.35 1.64.35 2.21 0 4-1.79 4-4h-2c0 1.1-.9 2-2 2zM7.64 2.64L6.22 1.22C4.23 3.21 3 5.96 3 9s1.23 5.79 3.22 7.78l1.41-1.41C6.01 13.74 5 11.49 5 9s1.01-4.74 2.64-6.36zM11.5 9c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5-1.12-2.5-2.5-2.5-2.5 1.12-2.5 2.5z"},"children":[]}]};exports.ic_hearing=ic_hearing;var ic_hearing_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 20c-.29 0-.56-.06-.76-.15-.71-.37-1.21-.88-1.71-2.38-.51-1.56-1.47-2.29-2.39-3-.79-.61-1.61-1.24-2.32-2.53C9.29 10.98 9 9.93 9 9c0-2.8 2.2-5 5-5s5 2.2 5 5h2c0-3.93-3.07-7-7-7S7 5.07 7 9c0 1.26.38 2.65 1.07 3.9.91 1.65 1.98 2.48 2.85 3.15.81.62 1.39 1.07 1.71 2.05.6 1.82 1.37 2.84 2.73 3.55.51.23 1.07.35 1.64.35 2.21 0 4-1.79 4-4h-2c0 1.1-.9 2-2 2zM7.64 2.64L6.22 1.22C4.23 3.21 3 5.96 3 9s1.23 5.79 3.22 7.78l1.41-1.41C6.01 13.74 5 11.49 5 9s1.01-4.74 2.64-6.36zM11.5 9c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5-1.12-2.5-2.5-2.5-2.5 1.12-2.5 2.5z"},"children":[]}]};exports.ic_hearing_outline=ic_hearing_outline;var ic_hearing_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7.64 2.64L6.22 1.22C4.23 3.21 3 5.96 3 9s1.23 5.79 3.22 7.78l1.41-1.41C6.01 13.74 5 11.49 5 9s1.01-4.74 2.64-6.36z"},"children":[]},{"name":"circle","attribs":{"cx":"14","cy":"9","r":"2.5"},"children":[]},{"name":"path","attribs":{"d":"M17 20c-.29 0-.56-.06-.76-.15-.71-.37-1.21-.88-1.71-2.38-.51-1.56-1.47-2.29-2.39-3-.79-.61-1.61-1.24-2.32-2.53C9.29 10.98 9 9.93 9 9c0-2.8 2.2-5 5-5s5 2.2 5 5h2c0-3.93-3.07-7-7-7S7 5.07 7 9c0 1.26.38 2.65 1.07 3.9.91 1.65 1.98 2.48 2.85 3.15.81.62 1.39 1.07 1.71 2.05.6 1.82 1.37 2.84 2.73 3.55.51.23 1.07.35 1.64.35 2.21 0 4-1.79 4-4h-2c0 1.1-.9 2-2 2z"},"children":[]}]};exports.ic_hearing_twotone=ic_hearing_twotone;var ic_hearing_disabled={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M6.03,3.2C7.15,2.44,8.51,2,10,2c3.93,0,7,3.07,7,7c0,1.26-0.38,2.65-1.07,3.9c-0.02,0.04-0.05,0.08-0.08,0.13l-1.48-1.48 C14.77,10.69,15,9.8,15,9c0-2.8-2.2-5-5-5C9.08,4,8.24,4.26,7.5,4.67L6.03,3.2z M17.21,14.38l1.43,1.43C20.11,13.93,21,11.57,21,9 c0-3.04-1.23-5.79-3.22-7.78l-1.42,1.42C17.99,4.26,19,6.51,19,9C19,11.02,18.33,12.88,17.21,14.38z M10,6.5 c-0.21,0-0.4,0.03-0.59,0.08l3.01,3.01C12.47,9.4,12.5,9.21,12.5,9C12.5,7.62,11.38,6.5,10,6.5z M21.19,21.19L2.81,2.81L1.39,4.22 l2.13,2.13C3.19,7.16,3,8.05,3,9h2c0-0.36,0.05-0.71,0.12-1.05l6.61,6.61c-0.88,0.68-1.78,1.41-2.27,2.9c-0.5,1.5-1,2.01-1.71,2.38 C7.56,19.94,7.29,20,7,20c-1.1,0-2-0.9-2-2H3c0,2.21,1.79,4,4,4c0.57,0,1.13-0.12,1.64-0.35c1.36-0.71,2.13-1.73,2.73-3.55 c0.32-0.98,0.9-1.43,1.71-2.05c0.03-0.02,0.05-0.04,0.08-0.06l6.62,6.62L21.19,21.19z"},"children":[{"name":"path","attribs":{"d":"M6.03,3.2C7.15,2.44,8.51,2,10,2c3.93,0,7,3.07,7,7c0,1.26-0.38,2.65-1.07,3.9c-0.02,0.04-0.05,0.08-0.08,0.13l-1.48-1.48 C14.77,10.69,15,9.8,15,9c0-2.8-2.2-5-5-5C9.08,4,8.24,4.26,7.5,4.67L6.03,3.2z M17.21,14.38l1.43,1.43C20.11,13.93,21,11.57,21,9 c0-3.04-1.23-5.79-3.22-7.78l-1.42,1.42C17.99,4.26,19,6.51,19,9C19,11.02,18.33,12.88,17.21,14.38z M10,6.5 c-0.21,0-0.4,0.03-0.59,0.08l3.01,3.01C12.47,9.4,12.5,9.21,12.5,9C12.5,7.62,11.38,6.5,10,6.5z M21.19,21.19L2.81,2.81L1.39,4.22 l2.13,2.13C3.19,7.16,3,8.05,3,9h2c0-0.36,0.05-0.71,0.12-1.05l6.61,6.61c-0.88,0.68-1.78,1.41-2.27,2.9c-0.5,1.5-1,2.01-1.71,2.38 C7.56,19.94,7.29,20,7,20c-1.1,0-2-0.9-2-2H3c0,2.21,1.79,4,4,4c0.57,0,1.13-0.12,1.64-0.35c1.36-0.71,2.13-1.73,2.73-3.55 c0.32-0.98,0.9-1.43,1.71-2.05c0.03-0.02,0.05-0.04,0.08-0.06l6.62,6.62L21.19,21.19z"},"children":[]}]}]}]};exports.ic_hearing_disabled=ic_hearing_disabled;var ic_hearing_disabled_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M6.03,3.2C7.15,2.44,8.51,2,10,2c3.93,0,7,3.07,7,7c0,1.26-0.38,2.65-1.07,3.9c-0.02,0.04-0.05,0.08-0.08,0.13l-1.48-1.48 C14.77,10.69,15,9.8,15,9c0-2.8-2.2-5-5-5C9.08,4,8.24,4.26,7.5,4.67L6.03,3.2z M17.21,14.38l1.43,1.43C20.11,13.93,21,11.57,21,9 c0-3.04-1.23-5.79-3.22-7.78l-1.42,1.42C17.99,4.26,19,6.51,19,9C19,11.02,18.33,12.88,17.21,14.38z M10,6.5 c-0.21,0-0.4,0.03-0.59,0.08l3.01,3.01C12.47,9.4,12.5,9.21,12.5,9C12.5,7.62,11.38,6.5,10,6.5z M21.19,21.19L2.81,2.81L1.39,4.22 l2.13,2.13C3.19,7.16,3,8.05,3,9h2c0-0.36,0.05-0.71,0.12-1.05l6.61,6.61c-0.88,0.68-1.78,1.41-2.27,2.9c-0.5,1.5-1,2.01-1.71,2.38 C7.56,19.94,7.29,20,7,20c-1.1,0-2-0.9-2-2H3c0,2.21,1.79,4,4,4c0.57,0,1.13-0.12,1.64-0.35c1.36-0.71,2.13-1.73,2.73-3.55 c0.32-0.98,0.9-1.43,1.71-2.05c0.03-0.02,0.05-0.04,0.08-0.06l6.62,6.62L21.19,21.19z"},"children":[{"name":"path","attribs":{"d":"M6.03,3.2C7.15,2.44,8.51,2,10,2c3.93,0,7,3.07,7,7c0,1.26-0.38,2.65-1.07,3.9c-0.02,0.04-0.05,0.08-0.08,0.13l-1.48-1.48 C14.77,10.69,15,9.8,15,9c0-2.8-2.2-5-5-5C9.08,4,8.24,4.26,7.5,4.67L6.03,3.2z M17.21,14.38l1.43,1.43C20.11,13.93,21,11.57,21,9 c0-3.04-1.23-5.79-3.22-7.78l-1.42,1.42C17.99,4.26,19,6.51,19,9C19,11.02,18.33,12.88,17.21,14.38z M10,6.5 c-0.21,0-0.4,0.03-0.59,0.08l3.01,3.01C12.47,9.4,12.5,9.21,12.5,9C12.5,7.62,11.38,6.5,10,6.5z M21.19,21.19L2.81,2.81L1.39,4.22 l2.13,2.13C3.19,7.16,3,8.05,3,9h2c0-0.36,0.05-0.71,0.12-1.05l6.61,6.61c-0.88,0.68-1.78,1.41-2.27,2.9c-0.5,1.5-1,2.01-1.71,2.38 C7.56,19.94,7.29,20,7,20c-1.1,0-2-0.9-2-2H3c0,2.21,1.79,4,4,4c0.57,0,1.13-0.12,1.64-0.35c1.36-0.71,2.13-1.73,2.73-3.55 c0.32-0.98,0.9-1.43,1.71-2.05c0.03-0.02,0.05-0.04,0.08-0.06l6.62,6.62L21.19,21.19z"},"children":[]}]}]}]};exports.ic_hearing_disabled_outline=ic_hearing_disabled_outline;var ic_hearing_disabled_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M6.03,3.2C7.15,2.44,8.51,2,10,2c3.93,0,7,3.07,7,7c0,1.26-0.38,2.65-1.07,3.9c-0.02,0.04-0.05,0.08-0.08,0.13l-1.48-1.48 C14.77,10.69,15,9.8,15,9c0-2.8-2.2-5-5-5C9.08,4,8.24,4.26,7.5,4.67L6.03,3.2z M17.21,14.38l1.43,1.43C20.11,13.93,21,11.57,21,9 c0-3.04-1.23-5.79-3.22-7.78l-1.42,1.42C17.99,4.26,19,6.51,19,9C19,11.02,18.33,12.88,17.21,14.38z M10,6.5 c-0.21,0-0.4,0.03-0.59,0.08l3.01,3.01C12.47,9.4,12.5,9.21,12.5,9C12.5,7.62,11.38,6.5,10,6.5z M21.19,21.19L2.81,2.81L1.39,4.22 l2.13,2.13C3.19,7.16,3,8.05,3,9h2c0-0.36,0.05-0.71,0.12-1.05l6.61,6.61c-0.88,0.68-1.78,1.41-2.27,2.9c-0.5,1.5-1,2.01-1.71,2.38 C7.56,19.94,7.29,20,7,20c-1.1,0-2-0.9-2-2H3c0,2.21,1.79,4,4,4c0.57,0,1.13-0.12,1.64-0.35c1.36-0.71,2.13-1.73,2.73-3.55 c0.32-0.98,0.9-1.43,1.71-2.05c0.03-0.02,0.05-0.04,0.08-0.06l6.62,6.62L21.19,21.19z"},"children":[{"name":"path","attribs":{"d":"M6.03,3.2C7.15,2.44,8.51,2,10,2c3.93,0,7,3.07,7,7c0,1.26-0.38,2.65-1.07,3.9c-0.02,0.04-0.05,0.08-0.08,0.13l-1.48-1.48 C14.77,10.69,15,9.8,15,9c0-2.8-2.2-5-5-5C9.08,4,8.24,4.26,7.5,4.67L6.03,3.2z M17.21,14.38l1.43,1.43C20.11,13.93,21,11.57,21,9 c0-3.04-1.23-5.79-3.22-7.78l-1.42,1.42C17.99,4.26,19,6.51,19,9C19,11.02,18.33,12.88,17.21,14.38z M10,6.5 c-0.21,0-0.4,0.03-0.59,0.08l3.01,3.01C12.47,9.4,12.5,9.21,12.5,9C12.5,7.62,11.38,6.5,10,6.5z M21.19,21.19L2.81,2.81L1.39,4.22 l2.13,2.13C3.19,7.16,3,8.05,3,9h2c0-0.36,0.05-0.71,0.12-1.05l6.61,6.61c-0.88,0.68-1.78,1.41-2.27,2.9c-0.5,1.5-1,2.01-1.71,2.38 C7.56,19.94,7.29,20,7,20c-1.1,0-2-0.9-2-2H3c0,2.21,1.79,4,4,4c0.57,0,1.13-0.12,1.64-0.35c1.36-0.71,2.13-1.73,2.73-3.55 c0.32-0.98,0.9-1.43,1.71-2.05c0.03-0.02,0.05-0.04,0.08-0.06l6.62,6.62L21.19,21.19z"},"children":[]}]}]}]};exports.ic_hearing_disabled_twotone=ic_hearing_disabled_twotone;var ic_high_quality={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-8 11H9.5v-2h-2v2H6V9h1.5v2.5h2V9H11v6zm7-1c0 .55-.45 1-1 1h-.75v1.5h-1.5V15H14c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v4zm-3.5-.5h2v-3h-2v3z"},"children":[]}]};exports.ic_high_quality=ic_high_quality;var ic_high_quality_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H5V6h14v12zM7.5 13h2v2H11V9H9.5v2.5h-2V9H6v6h1.5zm6.5 2h.75v1.5h1.5V15H17c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.5-4.5h2v3h-2v-3z"},"children":[]}]};exports.ic_high_quality_outline=ic_high_quality_outline;var ic_high_quality_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 6H5v12h14V6zm-8 9H9.5v-2h-2v2H6V9h1.5v2.5h2V9H11v6zm7-1c0 .55-.45 1-1 1h-.75v1.5h-1.5V15H14c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v4zm-3.5-3.5h2v3h-2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M3 6v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2H5c-1.11 0-2 .9-2 2zm2 0h14v12H5V6zm4.5 5.5h-2V9H6v6h1.5v-2h2v2H11V9H9.5zM17 9h-3c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h.75v1.5h1.5V15H17c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1zm-.5 4.5h-2v-3h2v3z"},"children":[]}]};exports.ic_high_quality_twotone=ic_high_quality_twotone;var ic_library_add={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-1 9h-4v4h-2v-4H9V9h4V5h2v4h4v2z"},"children":[]}]};exports.ic_library_add=ic_library_add;var ic_library_add_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zm-7-2h2v-3h3V9h-3V6h-2v3h-3v2h3z"},"children":[]}]};exports.ic_library_add_outline=ic_library_add_outline;var ic_library_add_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8 16h12V4H8v12zm2-7h3V6h2v3h3v2h-3v3h-2v-3h-3V9z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M4 22h14v-2H4V6H2v14c0 1.1.9 2 2 2zM8 2c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H8zm12 14H8V4h12v12zm-7-2h2v-3h3V9h-3V6h-2v3h-3v2h3z"},"children":[]}]};exports.ic_library_add_twotone=ic_library_add_twotone;var ic_library_add_check={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7.53 12L9 10.5l1.4-1.41 2.07 2.08L17.6 6 19 7.41 12.47 14zM4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6z"},"children":[]}]};exports.ic_library_add_check=ic_library_add_check;var ic_library_add_check_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M20,4v12H8V4H20 M20,2H8C6.9,2,6,2.9,6,4v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2L20,2z M12.47,14 L9,10.5l1.4-1.41l2.07,2.08L17.6,6L19,7.41L12.47,14z M4,6H2v14c0,1.1,0.9,2,2,2h14v-2H4V6z"},"children":[{"name":"path","attribs":{"d":"M20,4v12H8V4H20 M20,2H8C6.9,2,6,2.9,6,4v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2L20,2z M12.47,14 L9,10.5l1.4-1.41l2.07,2.08L17.6,6L19,7.41L12.47,14z M4,6H2v14c0,1.1,0.9,2,2,2h14v-2H4V6z"},"children":[]}]},{"name":"path","attribs":{"d":"M0,0h24v24H0V0z","fill":"none"},"children":[{"name":"path","attribs":{"d":"M0,0h24v24H0V0z","fill":"none"},"children":[]}]}]}]};exports.ic_library_add_check_outline=ic_library_add_check_outline;var ic_library_add_check_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M8,16h12V4H8V16z M10.4,9.09l2.07,2.08L17.6,6L19,7.41L12.47,14L9,10.5L10.4,9.09z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M8,16h12V4H8V16z M10.4,9.09l2.07,2.08L17.6,6L19,7.41L12.47,14L9,10.5L10.4,9.09z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M20,2H8C6.9,2,6,2.9,6,4v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M20,16H8V4h12V16z M12.47,14 L9,10.5l1.4-1.41l2.07,2.08L17.6,6L19,7.41L12.47,14z M4,20h14v2H4c-1.1,0-2-0.9-2-2V6h2V20z"},"children":[{"name":"path","attribs":{"d":"M20,2H8C6.9,2,6,2.9,6,4v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M20,16H8V4h12V16z M12.47,14 L9,10.5l1.4-1.41l2.07,2.08L17.6,6L19,7.41L12.47,14z M4,20h14v2H4c-1.1,0-2-0.9-2-2V6h2V20z"},"children":[]}]}]}]},{"name":"path","attribs":{"d":"M0,0h24v24H0V0z","fill":"none"},"children":[{"name":"path","attribs":{"d":"M0,0h24v24H0V0z","fill":"none"},"children":[]}]}]}]};exports.ic_library_add_check_twotone=ic_library_add_check_twotone;var ic_library_books={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-1 9H9V9h10v2zm-4 4H9v-2h6v2zm4-8H9V5h10v2z"},"children":[]}]};exports.ic_library_books=ic_library_books;var ic_library_books_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zM10 9h8v2h-8zm0 3h4v2h-4zm0-6h8v2h-8z"},"children":[]}]};exports.ic_library_books_outline=ic_library_books_outline;var ic_library_books_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8 16h12V4H8v12zm2-10h8v2h-8V6zm0 3h8v2h-8V9zm0 3h4v2h-4v-2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M4 22h14v-2H4V6H2v14c0 1.1.9 2 2 2zM6 4v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2zm14 12H8V4h12v12zM10 9h8v2h-8zm0 3h4v2h-4zm0-6h8v2h-8z"},"children":[]}]};exports.ic_library_books_twotone=ic_library_books_twotone;var ic_library_music={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-2 5h-3v5.5c0 1.38-1.12 2.5-2.5 2.5S10 13.88 10 12.5s1.12-2.5 2.5-2.5c.57 0 1.08.19 1.5.51V5h4v2zM4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6z"},"children":[]}]};exports.ic_library_music=ic_library_music;var ic_library_music_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zm-7.5-1c1.38 0 2.5-1.12 2.5-2.5V7h3V5h-4v5.51c-.42-.32-.93-.51-1.5-.51-1.38 0-2.5 1.12-2.5 2.5s1.12 2.5 2.5 2.5zM4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6z"},"children":[]}]};exports.ic_library_music_outline=ic_library_music_outline;var ic_library_music_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8 16h12V4H8v12zm4.5-6c.57 0 1.08.19 1.5.51V5h4v2h-3v5.5c0 1.38-1.12 2.5-2.5 2.5S10 13.88 10 12.5s1.12-2.5 2.5-2.5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zm-7.5-1c1.38 0 2.5-1.12 2.5-2.5V7h3V5h-4v5.51c-.42-.32-.93-.51-1.5-.51-1.38 0-2.5 1.12-2.5 2.5s1.12 2.5 2.5 2.5zM2 6v14c0 1.1.9 2 2 2h14v-2H4V6H2z"},"children":[]}]};exports.ic_library_music_twotone=ic_library_music_twotone;var ic_loop={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 4V1L8 5l4 4V6c3.31 0 6 2.69 6 6 0 1.01-.25 1.97-.7 2.8l1.46 1.46C19.54 15.03 20 13.57 20 12c0-4.42-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6 0-1.01.25-1.97.7-2.8L5.24 7.74C4.46 8.97 4 10.43 4 12c0 4.42 3.58 8 8 8v3l4-4-4-4v3z"},"children":[]}]};exports.ic_loop=ic_loop;var ic_loop_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 4V1L8 5l4 4V6c3.31 0 6 2.69 6 6 0 1.01-.25 1.97-.7 2.8l1.46 1.46C19.54 15.03 20 13.57 20 12c0-4.42-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6 0-1.01.25-1.97.7-2.8L5.24 7.74C4.46 8.97 4 10.43 4 12c0 4.42 3.58 8 8 8v3l4-4-4-4v3z"},"children":[]}]};exports.ic_loop_outline=ic_loop_outline;var ic_loop_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 18c-3.31 0-6-2.69-6-6 0-1.01.25-1.97.7-2.8L5.24 7.74C4.46 8.97 4 10.43 4 12c0 4.42 3.58 8 8 8v3l4-4-4-4v3zm0-14V1L8 5l4 4V6c3.31 0 6 2.69 6 6 0 1.01-.25 1.97-.7 2.8l1.46 1.46C19.54 15.03 20 13.57 20 12c0-4.42-3.58-8-8-8z"},"children":[]}]};exports.ic_loop_twotone=ic_loop_twotone;var ic_mic={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 14c1.66 0 2.99-1.34 2.99-3L15 5c0-1.66-1.34-3-3-3S9 3.34 9 5v6c0 1.66 1.34 3 3 3zm5.3-3c0 3-2.54 5.1-5.3 5.1S6.7 14 6.7 11H5c0 3.41 2.72 6.23 6 6.72V21h2v-3.28c3.28-.48 6-3.3 6-6.72h-1.7z"},"children":[]}]};exports.ic_mic=ic_mic;var ic_mic_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M12,14c1.66,0,3-1.34,3-3V5c0-1.66-1.34-3-3-3S9,3.34,9,5v6C9,12.66,10.34,14,12,14z"},"children":[{"name":"path","attribs":{"d":"M12,14c1.66,0,3-1.34,3-3V5c0-1.66-1.34-3-3-3S9,3.34,9,5v6C9,12.66,10.34,14,12,14z"},"children":[]}]},{"name":"path","attribs":{"d":"M17,11c0,2.76-2.24,5-5,5s-5-2.24-5-5H5c0,3.53,2.61,6.43,6,6.92V21h2v-3.08c3.39-0.49,6-3.39,6-6.92H17z"},"children":[{"name":"path","attribs":{"d":"M17,11c0,2.76-2.24,5-5,5s-5-2.24-5-5H5c0,3.53,2.61,6.43,6,6.92V21h2v-3.08c3.39-0.49,6-3.39,6-6.92H17z"},"children":[]}]}]}]}]}]};exports.ic_mic_outline=ic_mic_outline;var ic_mic_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M12,12c0.55,0,1-0.45,1-1V5c0-0.55-0.45-1-1-1s-1,0.45-1,1v6C11,11.55,11.45,12,12,12z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M12,12c0.55,0,1-0.45,1-1V5c0-0.55-0.45-1-1-1s-1,0.45-1,1v6C11,11.55,11.45,12,12,12z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M12,14c1.66,0,3-1.34,3-3V5c0-1.66-1.34-3-3-3S9,3.34,9,5v6C9,12.66,10.34,14,12,14z M11,5c0-0.55,0.45-1,1-1s1,0.45,1,1 v6c0,0.55-0.45,1-1,1s-1-0.45-1-1V5z"},"children":[{"name":"path","attribs":{"d":"M12,14c1.66,0,3-1.34,3-3V5c0-1.66-1.34-3-3-3S9,3.34,9,5v6C9,12.66,10.34,14,12,14z M11,5c0-0.55,0.45-1,1-1s1,0.45,1,1 v6c0,0.55-0.45,1-1,1s-1-0.45-1-1V5z"},"children":[]}]},{"name":"path","attribs":{"d":"M17,11c0,2.76-2.24,5-5,5s-5-2.24-5-5H5c0,3.53,2.61,6.43,6,6.92V21h2v-3.08c3.39-0.49,6-3.39,6-6.92H17z"},"children":[{"name":"path","attribs":{"d":"M17,11c0,2.76-2.24,5-5,5s-5-2.24-5-5H5c0,3.53,2.61,6.43,6,6.92V21h2v-3.08c3.39-0.49,6-3.39,6-6.92H17z"},"children":[]}]}]}]}]}]};exports.ic_mic_twotone=ic_mic_twotone;var ic_mic_none={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 14c1.66 0 2.99-1.34 2.99-3L15 5c0-1.66-1.34-3-3-3S9 3.34 9 5v6c0 1.66 1.34 3 3 3zm-1.2-9.1c0-.66.54-1.2 1.2-1.2.66 0 1.2.54 1.2 1.2l-.01 6.2c0 .66-.53 1.2-1.19 1.2-.66 0-1.2-.54-1.2-1.2V4.9zm6.5 6.1c0 3-2.54 5.1-5.3 5.1S6.7 14 6.7 11H5c0 3.41 2.72 6.23 6 6.72V21h2v-3.28c3.28-.48 6-3.3 6-6.72h-1.7z"},"children":[]}]};exports.ic_mic_none=ic_mic_none;var ic_mic_none_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 14c1.66 0 3-1.34 3-3V5c0-1.66-1.34-3-3-3S9 3.34 9 5v6c0 1.66 1.34 3 3 3zm-1-9c0-.55.45-1 1-1s1 .45 1 1v6c0 .55-.45 1-1 1s-1-.45-1-1V5zm6 6c0 2.76-2.24 5-5 5s-5-2.24-5-5H5c0 3.53 2.61 6.43 6 6.92V21h2v-3.08c3.39-.49 6-3.39 6-6.92h-2z"},"children":[]}]};exports.ic_mic_none_outline=ic_mic_none_outline;var ic_mic_none_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 12c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1s-1 .45-1 1v6c0 .55.45 1 1 1z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 14c1.66 0 3-1.34 3-3V5c0-1.66-1.34-3-3-3S9 3.34 9 5v6c0 1.66 1.34 3 3 3zm-1-9c0-.55.45-1 1-1s1 .45 1 1v6c0 .55-.45 1-1 1s-1-.45-1-1V5zm6 6c0 2.76-2.24 5-5 5s-5-2.24-5-5H5c0 3.53 2.61 6.43 6 6.92V21h2v-3.08c3.39-.49 6-3.39 6-6.92h-2z"},"children":[]}]};exports.ic_mic_none_twotone=ic_mic_none_twotone;var ic_mic_off={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0zm0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 11h-1.7c0 .74-.16 1.43-.43 2.05l1.23 1.23c.56-.98.9-2.09.9-3.28zm-4.02.17c0-.06.02-.11.02-.17V5c0-1.66-1.34-3-3-3S9 3.34 9 5v.18l5.98 5.99zM4.27 3L3 4.27l6.01 6.01V11c0 1.66 1.33 3 2.99 3 .22 0 .44-.03.65-.08l1.66 1.66c-.71.33-1.5.52-2.31.52-2.76 0-5.3-2.1-5.3-5.1H5c0 3.41 2.72 6.23 6 6.72V21h2v-3.28c.91-.13 1.77-.45 2.54-.9L19.73 21 21 19.73 4.27 3z"},"children":[]}]};exports.ic_mic_off=ic_mic_off;var ic_mic_off_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10.8 4.9c0-.66.54-1.2 1.2-1.2s1.2.54 1.2 1.2l-.01 3.91L15 10.6V5c0-1.66-1.34-3-3-3-1.54 0-2.79 1.16-2.96 2.65l1.76 1.76V4.9zM19 11h-1.7c0 .58-.1 1.13-.27 1.64l1.27 1.27c.44-.88.7-1.87.7-2.91zM4.41 2.86L3 4.27l6 6V11c0 1.66 1.34 3 3 3 .23 0 .44-.03.65-.08l1.66 1.66c-.71.33-1.5.52-2.31.52-2.76 0-5.3-2.1-5.3-5.1H5c0 3.41 2.72 6.23 6 6.72V21h2v-3.28c.91-.13 1.77-.45 2.55-.9l4.2 4.2 1.41-1.41L4.41 2.86z"},"children":[]}]};exports.ic_mic_off_outline=ic_mic_off_outline;var ic_mic_off_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 3.7c-.66 0-1.2.54-1.2 1.2v1.51l2.39 2.39.01-3.9c0-.66-.54-1.2-1.2-1.2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M19 11h-1.7c0 .58-.1 1.13-.27 1.64l1.27 1.27c.44-.88.7-1.87.7-2.91zM4.41 2.86L3 4.27l6 6V11c0 1.66 1.34 3 3 3 .23 0 .44-.03.65-.08l1.66 1.66c-.71.33-1.5.52-2.31.52-2.76 0-5.3-2.1-5.3-5.1H5c0 3.41 2.72 6.23 6 6.72V21h2v-3.28c.91-.13 1.77-.45 2.55-.9l4.2 4.2 1.41-1.41L4.41 2.86zM10.8 4.9c0-.66.54-1.2 1.2-1.2s1.2.54 1.2 1.2l-.01 3.91L15 10.6V5c0-1.66-1.34-3-3-3-1.54 0-2.79 1.16-2.96 2.65l1.76 1.76V4.9z"},"children":[]}]};exports.ic_mic_off_twotone=ic_mic_off_twotone;var ic_missed_video_call={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 10.5V7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4zM10 15l-3.89-3.89v2.55H5V9.22h4.44v1.11H6.89l3.11 3.1 4.22-4.22.78.79-5 5z"},"children":[]}]};exports.ic_missed_video_call=ic_missed_video_call;var ic_missed_video_call_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 10.5V7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4zm-2-1.83V16H5V8h10v.67zm-7.89 2.44L11 15l3.77-3.79-.78-.79L11 13.43l-3.11-3.1h2.55V9.22H6v4.44h1.11z"},"children":[]}]};exports.ic_missed_video_call_outline=ic_missed_video_call_outline;var ic_missed_video_call_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15 13.5V8H5v8h10v-2.5zM11 15l-3.89-3.89v2.55H6V9.22h4.44v1.11H7.89l3.11 3.1 2.99-3.01.78.79L11 15z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M3 17c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4V7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10zm2-9h10v8H5V8zm6 5.43l-3.11-3.1h2.55V9.22H6v4.44h1.11v-2.55L11 15l3.77-3.79-.78-.79z"},"children":[]}]};exports.ic_missed_video_call_twotone=ic_missed_video_call_twotone;var ic_movie={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 4l2 4h-3l-2-4h-2l2 4h-3l-2-4H8l2 4H7L5 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4h-4z"},"children":[]}]};exports.ic_movie=ic_movie;var ic_movie_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 6.47L5.76 10H20v8H4V6.47M22 4h-4l2 4h-3l-2-4h-2l2 4h-3l-2-4H8l2 4H7L5 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4z"},"children":[]}]};exports.ic_movie_outline=ic_movie_outline;var ic_movie_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 10H5.76L4 6.47V18h16z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M2.01 6L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4h-4l2 4h-3l-2-4h-2l2 4h-3l-2-4H8l2 4H7L5 4H4c-1.1 0-1.99.9-1.99 2zM4 6.47L5.76 10H20v8H4V6.47z"},"children":[]}]};exports.ic_movie_twotone=ic_movie_twotone;var ic_music_video={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM8 15c0-1.66 1.34-3 3-3 .35 0 .69.07 1 .18V6h5v2h-3v7.03c-.02 1.64-1.35 2.97-3 2.97-1.66 0-3-1.34-3-3z"},"children":[]}]};exports.ic_music_video=ic_music_video;var ic_music_video_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM8 15c0-1.66 1.34-3 3-3 .35 0 .69.07 1 .18V6h5v2h-3v7.03c-.02 1.64-1.35 2.97-3 2.97-1.66 0-3-1.34-3-3z"},"children":[]}]};exports.ic_music_video_outline=ic_music_video_outline;var ic_music_video_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 19h18V5H3v14zm8-7c.35 0 .69.07 1 .18V6h5v2h-3v7.03c-.02 1.64-1.35 2.97-3 2.97-1.66 0-3-1.34-3-3s1.34-3 3-3z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zm-10-1c1.65 0 2.98-1.33 3-2.97V8h3V6h-5v6.18c-.31-.11-.65-.18-1-.18-1.66 0-3 1.34-3 3s1.34 3 3 3z"},"children":[]}]};exports.ic_music_video_twotone=ic_music_video_twotone;var ic_new_releases={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M23 12l-2.44-2.78.34-3.68-3.61-.82-1.89-3.18L12 3 8.6 1.54 6.71 4.72l-3.61.81.34 3.68L1 12l2.44 2.78-.34 3.69 3.61.82 1.89 3.18L12 21l3.4 1.46 1.89-3.18 3.61-.82-.34-3.68L23 12zm-10 5h-2v-2h2v2zm0-4h-2V7h2v6z"},"children":[]}]};exports.ic_new_releases=ic_new_releases;var ic_new_releases_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M23 12l-2.44-2.78.34-3.68-3.61-.82-1.89-3.18L12 3 8.6 1.54 6.71 4.72l-3.61.81.34 3.68L1 12l2.44 2.78-.34 3.69 3.61.82 1.89 3.18L12 21l3.4 1.46 1.89-3.18 3.61-.82-.34-3.68L23 12zm-4.51 2.11l.26 2.79-2.74.62-1.43 2.41L12 18.82l-2.58 1.11-1.43-2.41-2.74-.62.26-2.8L3.66 12l1.85-2.12-.26-2.78 2.74-.61 1.43-2.41L12 5.18l2.58-1.11 1.43 2.41 2.74.62-.26 2.79L20.34 12l-1.85 2.11zM11 15h2v2h-2zm0-8h2v6h-2z"},"children":[]}]};exports.ic_new_releases_outline=ic_new_releases_outline;var ic_new_releases_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18.49 9.89l.26-2.79-2.74-.62-1.43-2.41L12 5.18 9.42 4.07 7.99 6.48l-2.74.62.26 2.78L3.66 12l1.85 2.11-.26 2.8 2.74.62 1.43 2.41L12 18.82l2.58 1.11 1.43-2.41 2.74-.62-.26-2.79L20.34 12l-1.85-2.11zM13 17h-2v-2h2v2zm0-4h-2V7h2v6z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20.9 5.54l-3.61-.82-1.89-3.18L12 3 8.6 1.54 6.71 4.72l-3.61.81.34 3.68L1 12l2.44 2.78-.34 3.69 3.61.82 1.89 3.18L12 21l3.4 1.46 1.89-3.18 3.61-.82-.34-3.68L23 12l-2.44-2.78.34-3.68zM18.75 16.9l-2.74.62-1.43 2.41L12 18.82l-2.58 1.11-1.43-2.41-2.74-.62.26-2.8L3.66 12l1.85-2.12-.26-2.78 2.74-.61 1.43-2.41L12 5.18l2.58-1.11 1.43 2.41 2.74.62-.26 2.79L20.34 12l-1.85 2.11.26 2.79zM11 15h2v2h-2zm0-8h2v6h-2z"},"children":[]}]};exports.ic_new_releases_twotone=ic_new_releases_twotone;var ic_not_interested={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9L16.9 18.31C15.55 19.37 13.85 20 12 20zm6.31-3.1L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9z"},"children":[]}]};exports.ic_not_interested=ic_not_interested;var ic_not_interested_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9L16.9 18.31C15.55 19.37 13.85 20 12 20zm6.31-3.1L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9z"},"children":[]}]};exports.ic_not_interested_outline=ic_not_interested_outline;var ic_not_interested_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 22c5.52 0 10-4.48 10-10S17.52 2 12 2 2 6.48 2 12s4.48 10 10 10zm0-18c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9L7.1 5.69C8.45 4.63 10.15 4 12 4zM5.69 7.1L16.9 18.31C15.55 19.37 13.85 20 12 20c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9z"},"children":[]}]};exports.ic_not_interested_twotone=ic_not_interested_twotone;var ic_note={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 10l-6-6H4c-1.1 0-2 .9-2 2v12.01c0 1.1.9 1.99 2 1.99l16-.01c1.1 0 2-.89 2-1.99v-8zm-7-4.5l5.5 5.5H15V5.5z"},"children":[]}]};exports.ic_note=ic_note;var ic_note_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16 4H4c-1.1 0-2 .9-2 2v12.01c0 1.1.9 1.99 2 1.99h16c1.1 0 2-.9 2-2v-8l-6-6zM4 18.01V6h11v5h5v7.01H4z"},"children":[]}]};exports.ic_note_outline=ic_note_outline;var ic_note_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15 6H4v12.01h16V11h-5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M4 4c-1.1 0-2 .9-2 2v12.01c0 1.1.9 1.99 2 1.99h16c1.1 0 2-.9 2-2v-8l-6-6H4zm16 14.01H4V6h11v5h5v7.01z"},"children":[]}]};exports.ic_note_twotone=ic_note_twotone;var ic_pause={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6 19h4V5H6v14zm8-14v14h4V5h-4z"},"children":[]}]};exports.ic_pause=ic_pause;var ic_pause_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6 19h4V5H6v14zm8-14v14h4V5h-4z"},"children":[]}]};exports.ic_pause_outline=ic_pause_outline;var ic_pause_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6 5h4v14H6zm8 0h4v14h-4z"},"children":[]}]};exports.ic_pause_twotone=ic_pause_twotone;var ic_pause_circle_filled={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 14H9V8h2v8zm4 0h-2V8h2v8z"},"children":[]}]};exports.ic_pause_circle_filled=ic_pause_circle_filled;var ic_pause_circle_filled_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"path","attribs":{"d":"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M11,16H9V8h2V16z M15,16h-2V8h2V16z"},"children":[{"name":"path","attribs":{"d":"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M11,16H9V8h2V16z M15,16h-2V8h2V16z"},"children":[]}]}]}]};exports.ic_pause_circle_filled_outline=ic_pause_circle_filled_outline;var ic_pause_circle_filled_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M12,4c-4.41,0-8,3.59-8,8c0,4.41,3.59,8,8,8s8-3.59,8-8C20,7.59,16.41,4,12,4z M11,16H9V8h2V16z M15,16h-2 V8h2V16z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M12,4c-4.41,0-8,3.59-8,8c0,4.41,3.59,8,8,8s8-3.59,8-8C20,7.59,16.41,4,12,4z M11,16H9V8h2V16z M15,16h-2 V8h2V16z","opacity":".3"},"children":[]}]},{"name":"rect","attribs":{"height":"8","width":"2","x":"13","y":"8"},"children":[{"name":"rect","attribs":{"height":"8","width":"2","x":"13","y":"8"},"children":[]}]},{"name":"rect","attribs":{"height":"8","width":"2","x":"9","y":"8"},"children":[{"name":"rect","attribs":{"height":"8","width":"2","x":"9","y":"8"},"children":[]}]},{"name":"path","attribs":{"d":"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8 c0-4.41,3.59-8,8-8s8,3.59,8,8C20,16.41,16.41,20,12,20z"},"children":[{"name":"path","attribs":{"d":"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8 c0-4.41,3.59-8,8-8s8,3.59,8,8C20,16.41,16.41,20,12,20z"},"children":[]}]}]}]}]}]};exports.ic_pause_circle_filled_twotone=ic_pause_circle_filled_twotone;var ic_pause_circle_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9 16h2V8H9v8zm3-14C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm1-4h2V8h-2v8z"},"children":[]}]};exports.ic_pause_circle_outline=ic_pause_circle_outline;var ic_pause_circle_outline_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9 16h2V8H9v8zm3-14C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm1-4h2V8h-2v8z"},"children":[]}]};exports.ic_pause_circle_outline_outline=ic_pause_circle_outline_outline;var ic_pause_circle_outline_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13 8h2v8h-2zM9 8h2v8H9zm3 14c5.52 0 10-4.48 10-10S17.52 2 12 2 2 6.48 2 12s4.48 10 10 10zm0-18c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8z"},"children":[]}]};exports.ic_pause_circle_outline_twotone=ic_pause_circle_outline_twotone;var ic_play_arrow={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8 5v14l11-7z"},"children":[]}]};exports.ic_play_arrow=ic_play_arrow;var ic_play_arrow_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 8.64L15.27 12 10 15.36V8.64M8 5v14l11-7L8 5z"},"children":[]}]};exports.ic_play_arrow_outline=ic_play_arrow_outline;var ic_play_arrow_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 8.64v6.72L15.27 12z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M8 19l11-7L8 5v14zm2-10.36L15.27 12 10 15.36V8.64z"},"children":[]}]};exports.ic_play_arrow_twotone=ic_play_arrow_twotone;var ic_play_circle_filled={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 14.5v-9l6 4.5-6 4.5z"},"children":[]}]};exports.ic_play_circle_filled=ic_play_circle_filled;var ic_play_circle_filled_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 14.5v-9l6 4.5-6 4.5z"},"children":[]}]};exports.ic_play_circle_filled_outline=ic_play_circle_filled_outline;var ic_play_circle_filled_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 20c4.41 0 8-3.59 8-8s-3.59-8-8-8-8 3.59-8 8 3.59 8 8 8zM10 7.5l6 4.5-6 4.5v-9z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 22c5.52 0 10-4.48 10-10S17.52 2 12 2 2 6.48 2 12s4.48 10 10 10zm0-18c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8zm-2 3.5v9l6-4.5z"},"children":[]}]};exports.ic_play_circle_filled_twotone=ic_play_circle_filled_twotone;var ic_play_circle_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 16.5l6-4.5-6-4.5v9zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"},"children":[]}]};exports.ic_play_circle_outline=ic_play_circle_outline;var ic_play_circle_outline_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 16.5l6-4.5-6-4.5zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"},"children":[]}]};exports.ic_play_circle_outline_outline=ic_play_circle_outline_outline;var ic_play_circle_outline_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 16.5l6-4.5-6-4.5zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"},"children":[]}]};exports.ic_play_circle_outline_twotone=ic_play_circle_outline_twotone;var ic_play_disabled={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0zm0 0h24v24H0V0zm11.75 11.47l-.11-.11.11.11z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8 5.19V5l11 7-2.55 1.63L8 5.19zm12 14.54l-5.11-5.11L8 7.73 4.27 4 3 5.27l5 5V19l5.33-3.4 5.4 5.4L20 19.73z"},"children":[]}]};exports.ic_play_disabled=ic_play_disabled;var ic_playlist_add={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14 10H2v2h12v-2zm0-4H2v2h12V6zm4 8v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM2 16h8v-2H2v2z"},"children":[]}]};exports.ic_playlist_add=ic_playlist_add;var ic_playlist_add_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14 10H2v2h12v-2zm0-4H2v2h12V6zm4 8v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM2 16h8v-2H2v2z"},"children":[]}]};exports.ic_playlist_add_outline=ic_playlist_add_outline;var ic_playlist_add_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M2 14h8v2H2zm0-4h12v2H2zm0-4h12v2H2zm16 4h-2v4h-4v2h4v4h2v-4h4v-2h-4z"},"children":[]}]};exports.ic_playlist_add_twotone=ic_playlist_add_twotone;var ic_playlist_add_check={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M14,10H2v2h12V10z M14,6H2v2h12V6z M2,16h8v-2H2V16z M21.5,11.5L23,13l-6.99,7l-4.51-4.5L13,14l3.01,3L21.5,11.5z"},"children":[{"name":"path","attribs":{"d":"M14,10H2v2h12V10z M14,6H2v2h12V6z M2,16h8v-2H2V16z M21.5,11.5L23,13l-6.99,7l-4.51-4.5L13,14l3.01,3L21.5,11.5z"},"children":[]}]}]}]}]}]}]}]};exports.ic_playlist_add_check=ic_playlist_add_check;var ic_playlist_add_check_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14 10H2v2h12v-2zm0-4H2v2h12V6zM2 16h8v-2H2v2zm19.5-4.5L23 13l-6.99 7-4.51-4.5L13 14l3.01 3 5.49-5.5z"},"children":[]}]};exports.ic_playlist_add_check_outline=ic_playlist_add_check_outline;var ic_playlist_add_check_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M2 6h12v2H2zm0 4h12v2H2zm0 4h8v2H2zm14.01 3L13 14l-1.5 1.5 4.51 4.5L23 13l-1.5-1.5z"},"children":[]}]};exports.ic_playlist_add_check_twotone=ic_playlist_add_check_twotone;var ic_playlist_play={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 10h12v2H4zm0-4h12v2H4zm0 8h8v2H4zm10 0v6l5-3z"},"children":[]}]};exports.ic_playlist_play=ic_playlist_play;var ic_playlist_play_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 10h12v2H4zm0-4h12v2H4zm0 8h8v2H4zm10 0v6l5-3z"},"children":[]}]};exports.ic_playlist_play_outline=ic_playlist_play_outline;var ic_playlist_play_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 10h12v2H4zm0-4h12v2H4zm0 8h8v2H4zm10 6l5-3-5-3z"},"children":[]}]};exports.ic_playlist_play_twotone=ic_playlist_play_twotone;var ic_queue={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-1 9h-4v4h-2v-4H9V9h4V5h2v4h4v2z"},"children":[]}]};exports.ic_queue=ic_queue;var ic_queue_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zm-7-1h2v-4h4V9h-4V5h-2v4H9v2h4z"},"children":[]}]};exports.ic_queue_outline=ic_queue_outline;var ic_queue_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8 16h12V4H8v12zm1-7h4V5h2v4h4v2h-4v4h-2v-4H9V9z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M2 20c0 1.1.9 2 2 2h14v-2H4V6H2v14zM20 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zm-7-1h2v-4h4V9h-4V5h-2v4H9v2h4z"},"children":[]}]};exports.ic_queue_twotone=ic_queue_twotone;var ic_queue_music={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15 6H3v2h12V6zm0 4H3v2h12v-2zM3 16h8v-2H3v2zM17 6v8.18c-.31-.11-.65-.18-1-.18-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3V8h3V6h-5z"},"children":[]}]};exports.ic_queue_music=ic_queue_music;var ic_queue_music_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{"transform":"matrix(1 0 0 1 144 120)"},"children":[{"name":"g","attribs":{"transform":"matrix(1 0 0 1 144 120)"},"children":[{"name":"path","attribs":{"d":"M-122-114h-5v8.18c-0.31-0.11-0.65-0.18-1-0.18c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3v-9h3V-114 L-122-114z M-129-114h-12v2h12V-114L-129-114z M-129-110h-12v2h12V-110L-129-110z M-133-106h-8v2h8V-106L-133-106z M-129-103 c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1s-0.45,1-1,1C-128.55-102-129-102.45-129-103z"},"children":[{"name":"path","attribs":{"d":"M-122-114h-5v8.18c-0.31-0.11-0.65-0.18-1-0.18c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3v-9h3V-114 L-122-114z M-129-114h-12v2h12V-114L-129-114z M-129-110h-12v2h12V-110L-129-110z M-133-106h-8v2h8V-106L-133-106z M-129-103 c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1s-0.45,1-1,1C-128.55-102-129-102.45-129-103z"},"children":[]}]}]}]}]}]}]}]};exports.ic_queue_music_outline=ic_queue_music_outline;var ic_queue_music_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"cx":"16","cy":"17","opacity":".3","r":"1"},"children":[{"name":"circle","attribs":{"cx":"16","cy":"17","opacity":".3","r":"1"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"12","x":"3","y":"10"},"children":[{"name":"rect","attribs":{"height":"2","width":"12","x":"3","y":"10"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"8","x":"3","y":"14"},"children":[{"name":"rect","attribs":{"height":"2","width":"8","x":"3","y":"14"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"12","x":"3","y":"6"},"children":[{"name":"rect","attribs":{"height":"2","width":"12","x":"3","y":"6"},"children":[]}]},{"name":"path","attribs":{"d":"M17,14.18C16.69,14.07,16.35,14,16,14c-1.66,0-3,1.34-3,3c0,1.66,1.34,3,3,3s3-1.34,3-3V8h3V6h-5V14.18z M16,18 c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C17,17.55,16.55,18,16,18z"},"children":[{"name":"path","attribs":{"d":"M17,14.18C16.69,14.07,16.35,14,16,14c-1.66,0-3,1.34-3,3c0,1.66,1.34,3,3,3s3-1.34,3-3V8h3V6h-5V14.18z M16,18 c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C17,17.55,16.55,18,16,18z"},"children":[]}]}]}]}]}]};exports.ic_queue_music_twotone=ic_queue_music_twotone;var ic_queue_play_next={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M21,3H3C1.89,3,1,3.89,1,5v12c0,1.1,0.89,2,2,2h5v2h8v-2h2v-2H3V5h18v8h2V5C23,3.89,22.1,3,21,3z M13,10V7h-2v3H8v2h3v3 h2v-3h3v-2H13z M24,18l-4.5,4.5L18,21l3-3l-3-3l1.5-1.5L24,18z"},"children":[{"name":"path","attribs":{"d":"M21,3H3C1.89,3,1,3.89,1,5v12c0,1.1,0.89,2,2,2h5v2h8v-2h2v-2H3V5h18v8h2V5C23,3.89,22.1,3,21,3z M13,10V7h-2v3H8v2h3v3 h2v-3h3v-2H13z M24,18l-4.5,4.5L18,21l3-3l-3-3l1.5-1.5L24,18z"},"children":[]}]}]}]}]}]}]}]};exports.ic_queue_play_next=ic_queue_play_next;var ic_queue_play_next_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 3H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5v2h8v-2h2v-2H3V5h18v8h2V5c0-1.11-.9-2-2-2zm-8 7V7h-2v3H8v2h3v3h2v-3h3v-2h-3zm11 8l-4.5 4.5L18 21l3-3-3-3 1.5-1.5L24 18z"},"children":[]}]};exports.ic_queue_play_next_outline=ic_queue_play_next_outline;var ic_queue_play_next_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13 15v-3h3v-2h-3V7h-2v3H8v2h3v3zm5 0l3 3-3 3 1.5 1.5L24 18l-4.5-4.5zM8 19v2h8v-2h2v-2H3V5h18v8h2V5c0-1.11-.9-2-2-2H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5z"},"children":[]}]};exports.ic_queue_play_next_twotone=ic_queue_play_next_twotone;var ic_radio={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3.24 6.15C2.51 6.43 2 7.17 2 8v12c0 1.1.89 2 2 2h16c1.11 0 2-.9 2-2V8c0-1.11-.89-2-2-2H8.3l8.26-3.34L15.88 1 3.24 6.15zM7 20c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm13-8h-2v-2h-2v2H4V8h16v4z"},"children":[]}]};exports.ic_radio=ic_radio;var ic_radio_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 6H8.3l8.26-3.34L15.88 1 3.24 6.15C2.51 6.43 2 7.17 2 8v12c0 1.1.89 2 2 2h16c1.11 0 2-.9 2-2V8c0-1.11-.89-2-2-2zm0 2v3h-2V9h-2v2H4V8h16zM4 20v-7h16v7H4z"},"children":[]},{"name":"circle","attribs":{"cx":"8","cy":"16.48","r":"2.5"},"children":[]}]};exports.ic_radio_outline=ic_radio_outline;var ic_radio_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 13H4v7h16v-7zM8 18.98c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M2 20c0 1.1.89 2 2 2h16c1.11 0 2-.9 2-2V8c0-1.11-.89-2-2-2H8.3l8.26-3.34L15.88 1 3.24 6.15C2.51 6.43 2 7.17 2 8v12zM4 8h16v3h-2V9h-2v2H4V8zm0 5h16v7H4v-7z"},"children":[]},{"name":"circle","attribs":{"cx":"8","cy":"16.48","r":"2.5"},"children":[]}]};exports.ic_radio_twotone=ic_radio_twotone;var ic_recent_actors={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 5v14h2V5h-2zm-4 14h2V5h-2v14zM14 5H2c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zM8 7.75c1.24 0 2.25 1.01 2.25 2.25S9.24 12.25 8 12.25 5.75 11.24 5.75 10 6.76 7.75 8 7.75zM12.5 17h-9v-.75c0-1.5 3-2.25 4.5-2.25s4.5.75 4.5 2.25V17z"},"children":[]}]};exports.ic_recent_actors=ic_recent_actors;var ic_recent_actors_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 5h2v14h-2zm-4 0h2v14h-2zm-3 0H2c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zm-1 12H3V7h10v10z"},"children":[]},{"name":"circle","attribs":{"cx":"8","cy":"9.94","r":"1.95"},"children":[]},{"name":"path","attribs":{"d":"M11.89 15.35c0-1.3-2.59-1.95-3.89-1.95s-3.89.65-3.89 1.95V16h7.78v-.65z"},"children":[]}]};exports.ic_recent_actors_outline=ic_recent_actors_outline;var ic_recent_actors_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13 7H3v10h10V7zM8 8c1.07 0 1.95.87 1.95 1.95 0 1.07-.87 1.95-1.95 1.95s-1.95-.87-1.95-1.95S6.93 8 8 8zm3.89 8H4.11v-.65c0-1.3 2.59-1.95 3.89-1.95s3.89.65 3.89 1.95V16z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M21 5h2v14h-2zm-4 0h2v14h-2zm-3 14c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1H2c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12zM3 7h10v10H3V7z"},"children":[]},{"name":"circle","attribs":{"cx":"8","cy":"9.94","r":"1.95"},"children":[]},{"name":"path","attribs":{"d":"M8 13.4c-1.3 0-3.89.65-3.89 1.95V16h7.78v-.65c0-1.3-2.59-1.95-3.89-1.95z"},"children":[]}]};exports.ic_recent_actors_twotone=ic_recent_actors_twotone;var ic_remove_from_queue={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M21,3H3C1.89,3,1,3.89,1,5v12c0,1.1,0.89,2,2,2h5v2h8v-2h5c1.1,0,1.99-0.9,1.99-2L23,5C23,3.89,22.1,3,21,3z M21,17H3V5 h18V17z M16,10v2H8v-2H16z"},"children":[{"name":"path","attribs":{"d":"M21,3H3C1.89,3,1,3.89,1,5v12c0,1.1,0.89,2,2,2h5v2h8v-2h5c1.1,0,1.99-0.9,1.99-2L23,5C23,3.89,22.1,3,21,3z M21,17H3V5 h18V17z M16,10v2H8v-2H16z"},"children":[]}]}]}]}]}]}]}]};exports.ic_remove_from_queue=ic_remove_from_queue;var ic_remove_from_queue_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 3H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5v2h8v-2h5c1.1 0 2-.9 2-2V5c0-1.11-.9-2-2-2zm0 14H3V5h18v12zm-5-7v2H8v-2h8z"},"children":[]}]};exports.ic_remove_from_queue_outline=ic_remove_from_queue_outline;var ic_remove_from_queue_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 17h18V5H3v12zm5-7h8v2H8v-2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M21 3H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5v2h8v-2h5c1.1 0 2-.9 2-2V5c0-1.11-.9-2-2-2zm0 14H3V5h18v12zM8 10h8v2H8z"},"children":[]}]};exports.ic_remove_from_queue_twotone=ic_remove_from_queue_twotone;var ic_repeat={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 7h10v3l4-4-4-4v3H5v6h2V7zm10 10H7v-3l-4 4 4 4v-3h12v-6h-2v4z"},"children":[]}]};exports.ic_repeat=ic_repeat;var ic_repeat_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 7h10v3l4-4-4-4v3H5v6h2V7zm10 10H7v-3l-4 4 4 4v-3h12v-6h-2v4z"},"children":[]}]};exports.ic_repeat_outline=ic_repeat_outline;var ic_repeat_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 22v-3h12v-6h-2v4H7v-3l-4 4zM21 6l-4-4v3H5v6h2V7h10v3z"},"children":[]}]};exports.ic_repeat_twotone=ic_repeat_twotone;var ic_repeat_on={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 1H3c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zM7 7h10v3l4-4-4-4v3H5v6h2V7zm10 10H7v-3l-4 4 4 4v-3h12v-6h-2v4z","fill-rule":"evenodd"},"children":[]}]};exports.ic_repeat_on=ic_repeat_on;var ic_repeat_one={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 7h10v3l4-4-4-4v3H5v6h2V7zm10 10H7v-3l-4 4 4 4v-3h12v-6h-2v4zm-4-2V9h-1l-2 1v1h1.5v4H13z"},"children":[]}]};exports.ic_repeat_one=ic_repeat_one;var ic_repeat_one_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 7h10v3l4-4-4-4v3H5v6h2V7zm10 10H7v-3l-4 4 4 4v-3h12v-6h-2v4zm-4-2V9h-1l-2 1v1h1.5v4H13z"},"children":[]}]};exports.ic_repeat_one_outline=ic_repeat_one_outline;var ic_repeat_one_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13 15V9h-1l-2 1v1h1.5v4zm6-2h-2v4H7v-3l-4 4 4 4v-3h12zM17 2v3H5v6h2V7h10v3l4-4z"},"children":[]}]};exports.ic_repeat_one_twotone=ic_repeat_one_twotone;var ic_repeat_one_on={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 1H3c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zM7 7h10v3l4-4-4-4v3H5v6h2V7zm10 10H7v-3l-4 4 4 4v-3h12v-6h-2v4zm-4-2V9h-1l-2 1v1h1.5v4H13z","fill-rule":"evenodd"},"children":[]}]};exports.ic_repeat_one_on=ic_repeat_one_on;var ic_replay={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 5V1L7 6l5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6H4c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8z"},"children":[]}]};exports.ic_replay=ic_replay;var ic_replay_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"path","attribs":{"d":"M12,5V1L7,6l5,5V7c3.31,0,6,2.69,6,6s-2.69,6-6,6s-6-2.69-6-6H4c0,4.42,3.58,8,8,8s8-3.58,8-8S16.42,5,12,5z"},"children":[{"name":"path","attribs":{"d":"M12,5V1L7,6l5,5V7c3.31,0,6,2.69,6,6s-2.69,6-6,6s-6-2.69-6-6H4c0,4.42,3.58,8,8,8s8-3.58,8-8S16.42,5,12,5z"},"children":[]}]}]}]};exports.ic_replay_outline=ic_replay_outline;var ic_replay_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"path","attribs":{"d":"M7,6l5,5V7c3.31,0,6,2.69,6,6s-2.69,6-6,6s-6-2.69-6-6H4c0,4.42,3.58,8,8,8s8-3.58,8-8c0-4.42-3.58-8-8-8V1L7,6z"},"children":[{"name":"path","attribs":{"d":"M7,6l5,5V7c3.31,0,6,2.69,6,6s-2.69,6-6,6s-6-2.69-6-6H4c0,4.42,3.58,8,8,8s8-3.58,8-8c0-4.42-3.58-8-8-8V1L7,6z"},"children":[]}]}]}]};exports.ic_replay_twotone=ic_replay_twotone;var ic_replay_10={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M11.99,5V1l-5,5l5,5V7c3.31,0,6,2.69,6,6s-2.69,6-6,6s-6-2.69-6-6h-2c0,4.42,3.58,8,8,8s8-3.58,8-8S16.41,5,11.99,5z"},"children":[{"name":"path","attribs":{"d":"M11.99,5V1l-5,5l5,5V7c3.31,0,6,2.69,6,6s-2.69,6-6,6s-6-2.69-6-6h-2c0,4.42,3.58,8,8,8s8-3.58,8-8S16.41,5,11.99,5z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M10.89,16h-0.85v-3.26l-1.01,0.31v-0.69l1.77-0.63h0.09V16z"},"children":[{"name":"path","attribs":{"d":"M10.89,16h-0.85v-3.26l-1.01,0.31v-0.69l1.77-0.63h0.09V16z"},"children":[]}]},{"name":"path","attribs":{"d":"M15.17,14.24c0,0.32-0.03,0.6-0.1,0.82s-0.17,0.42-0.29,0.57s-0.28,0.26-0.45,0.33s-0.37,0.1-0.59,0.1 s-0.41-0.03-0.59-0.1s-0.33-0.18-0.46-0.33s-0.23-0.34-0.3-0.57s-0.11-0.5-0.11-0.82V13.5c0-0.32,0.03-0.6,0.1-0.82 s0.17-0.42,0.29-0.57s0.28-0.26,0.45-0.33s0.37-0.1,0.59-0.1s0.41,0.03,0.59,0.1c0.18,0.07,0.33,0.18,0.46,0.33 s0.23,0.34,0.3,0.57s0.11,0.5,0.11,0.82V14.24z M14.32,13.38c0-0.19-0.01-0.35-0.04-0.48s-0.07-0.23-0.12-0.31 s-0.11-0.14-0.19-0.17s-0.16-0.05-0.25-0.05s-0.18,0.02-0.25,0.05s-0.14,0.09-0.19,0.17s-0.09,0.18-0.12,0.31 s-0.04,0.29-0.04,0.48v0.97c0,0.19,0.01,0.35,0.04,0.48s0.07,0.24,0.12,0.32s0.11,0.14,0.19,0.17s0.16,0.05,0.25,0.05 s0.18-0.02,0.25-0.05s0.14-0.09,0.19-0.17s0.09-0.19,0.11-0.32s0.04-0.29,0.04-0.48V13.38z"},"children":[{"name":"path","attribs":{"d":"M15.17,14.24c0,0.32-0.03,0.6-0.1,0.82s-0.17,0.42-0.29,0.57s-0.28,0.26-0.45,0.33s-0.37,0.1-0.59,0.1 s-0.41-0.03-0.59-0.1s-0.33-0.18-0.46-0.33s-0.23-0.34-0.3-0.57s-0.11-0.5-0.11-0.82V13.5c0-0.32,0.03-0.6,0.1-0.82 s0.17-0.42,0.29-0.57s0.28-0.26,0.45-0.33s0.37-0.1,0.59-0.1s0.41,0.03,0.59,0.1c0.18,0.07,0.33,0.18,0.46,0.33 s0.23,0.34,0.3,0.57s0.11,0.5,0.11,0.82V14.24z M14.32,13.38c0-0.19-0.01-0.35-0.04-0.48s-0.07-0.23-0.12-0.31 s-0.11-0.14-0.19-0.17s-0.16-0.05-0.25-0.05s-0.18,0.02-0.25,0.05s-0.14,0.09-0.19,0.17s-0.09,0.18-0.12,0.31 s-0.04,0.29-0.04,0.48v0.97c0,0.19,0.01,0.35,0.04,0.48s0.07,0.24,0.12,0.32s0.11,0.14,0.19,0.17s0.16,0.05,0.25,0.05 s0.18-0.02,0.25-0.05s0.14-0.09,0.19-0.17s0.09-0.19,0.11-0.32s0.04-0.29,0.04-0.48V13.38z"},"children":[]}]}]}]}]}]}]}]};exports.ic_replay_10=ic_replay_10;var ic_replay_10_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11.99 5V1l-5 5 5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6h-2c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8zm-1.1 11h-.85v-3.26l-1.01.31v-.69l1.77-.63h.09V16zm4.28-1.76c0 .32-.03.6-.1.82s-.17.42-.29.57-.28.26-.45.33-.37.1-.59.1-.41-.03-.59-.1-.33-.18-.46-.33-.23-.34-.3-.57-.11-.5-.11-.82v-.74c0-.32.03-.6.1-.82s.17-.42.29-.57.28-.26.45-.33.37-.1.59-.1.41.03.59.1.33.18.46.33.23.34.3.57.11.5.11.82v.74zm-.85-.86c0-.19-.01-.35-.04-.48s-.07-.23-.12-.31-.11-.14-.19-.17-.16-.05-.25-.05-.18.02-.25.05-.14.09-.19.17-.09.18-.12.31-.04.29-.04.48v.97c0 .19.01.35.04.48s.07.24.12.32.11.14.19.17.16.05.25.05.18-.02.25-.05.14-.09.19-.17.09-.19.11-.32.04-.29.04-.48v-.97z"},"children":[]}]};exports.ic_replay_10_outline=ic_replay_10_outline;var ic_replay_10_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11.99 5V1l-5 5 5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6h-2c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8zm-1.1 11h-.85v-3.26l-1.01.31v-.69l1.77-.63h.09V16zm4.28-1.76c0 .32-.03.6-.1.82s-.17.42-.29.57-.28.26-.45.33-.37.1-.59.1-.41-.03-.59-.1-.33-.18-.46-.33-.23-.34-.3-.57-.11-.5-.11-.82v-.74c0-.32.03-.6.1-.82s.17-.42.29-.57.28-.26.45-.33.37-.1.59-.1.41.03.59.1.33.18.46.33.23.34.3.57.11.5.11.82v.74zm-.85-.86c0-.19-.01-.35-.04-.48s-.07-.23-.12-.31-.11-.14-.19-.17-.16-.05-.25-.05-.18.02-.25.05-.14.09-.19.17-.09.18-.12.31-.04.29-.04.48v.97c0 .19.01.35.04.48s.07.24.12.32.11.14.19.17.16.05.25.05.18-.02.25-.05.14-.09.19-.17.09-.19.11-.32.04-.29.04-.48v-.97z"},"children":[]}]};exports.ic_replay_10_twotone=ic_replay_10_twotone;var ic_replay_30={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M12,5V1L7,6l5,5V7c3.31,0,6,2.69,6,6s-2.69,6-6,6s-6-2.69-6-6H4c0,4.42,3.58,8,8,8s8-3.58,8-8S16.42,5,12,5z"},"children":[{"name":"path","attribs":{"d":"M12,5V1L7,6l5,5V7c3.31,0,6,2.69,6,6s-2.69,6-6,6s-6-2.69-6-6H4c0,4.42,3.58,8,8,8s8-3.58,8-8S16.42,5,12,5z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M9.56,13.49h0.45c0.21,0,0.37-0.05,0.48-0.16s0.16-0.25,0.16-0.43c0-0.08-0.01-0.15-0.04-0.22s-0.06-0.12-0.11-0.17 s-0.11-0.09-0.18-0.11s-0.16-0.04-0.25-0.04c-0.08,0-0.15,0.01-0.22,0.03s-0.13,0.05-0.18,0.1s-0.09,0.09-0.12,0.15 s-0.05,0.13-0.05,0.2H8.65c0-0.18,0.04-0.34,0.11-0.48s0.17-0.27,0.3-0.37s0.27-0.18,0.44-0.23s0.35-0.08,0.54-0.08 c0.21,0,0.41,0.03,0.59,0.08s0.33,0.13,0.46,0.23s0.23,0.23,0.3,0.38s0.11,0.33,0.11,0.53c0,0.09-0.01,0.18-0.04,0.27 s-0.07,0.17-0.13,0.25s-0.12,0.15-0.2,0.22s-0.17,0.12-0.28,0.17c0.24,0.09,0.42,0.21,0.54,0.39s0.18,0.38,0.18,0.61 c0,0.2-0.04,0.38-0.12,0.53s-0.18,0.29-0.32,0.39s-0.29,0.19-0.48,0.24s-0.38,0.08-0.6,0.08c-0.18,0-0.36-0.02-0.53-0.07 s-0.33-0.12-0.46-0.23s-0.25-0.23-0.33-0.38s-0.12-0.34-0.12-0.55h0.85c0,0.08,0.02,0.15,0.05,0.22s0.07,0.12,0.13,0.17 s0.12,0.09,0.2,0.11s0.16,0.04,0.25,0.04c0.1,0,0.19-0.01,0.27-0.04s0.15-0.07,0.2-0.12s0.1-0.11,0.13-0.18s0.04-0.15,0.04-0.24 c0-0.11-0.02-0.21-0.05-0.29s-0.08-0.15-0.14-0.2s-0.13-0.09-0.22-0.11s-0.18-0.04-0.29-0.04H9.56V13.49z"},"children":[{"name":"path","attribs":{"d":"M9.56,13.49h0.45c0.21,0,0.37-0.05,0.48-0.16s0.16-0.25,0.16-0.43c0-0.08-0.01-0.15-0.04-0.22s-0.06-0.12-0.11-0.17 s-0.11-0.09-0.18-0.11s-0.16-0.04-0.25-0.04c-0.08,0-0.15,0.01-0.22,0.03s-0.13,0.05-0.18,0.1s-0.09,0.09-0.12,0.15 s-0.05,0.13-0.05,0.2H8.65c0-0.18,0.04-0.34,0.11-0.48s0.17-0.27,0.3-0.37s0.27-0.18,0.44-0.23s0.35-0.08,0.54-0.08 c0.21,0,0.41,0.03,0.59,0.08s0.33,0.13,0.46,0.23s0.23,0.23,0.3,0.38s0.11,0.33,0.11,0.53c0,0.09-0.01,0.18-0.04,0.27 s-0.07,0.17-0.13,0.25s-0.12,0.15-0.2,0.22s-0.17,0.12-0.28,0.17c0.24,0.09,0.42,0.21,0.54,0.39s0.18,0.38,0.18,0.61 c0,0.2-0.04,0.38-0.12,0.53s-0.18,0.29-0.32,0.39s-0.29,0.19-0.48,0.24s-0.38,0.08-0.6,0.08c-0.18,0-0.36-0.02-0.53-0.07 s-0.33-0.12-0.46-0.23s-0.25-0.23-0.33-0.38s-0.12-0.34-0.12-0.55h0.85c0,0.08,0.02,0.15,0.05,0.22s0.07,0.12,0.13,0.17 s0.12,0.09,0.2,0.11s0.16,0.04,0.25,0.04c0.1,0,0.19-0.01,0.27-0.04s0.15-0.07,0.2-0.12s0.1-0.11,0.13-0.18s0.04-0.15,0.04-0.24 c0-0.11-0.02-0.21-0.05-0.29s-0.08-0.15-0.14-0.2s-0.13-0.09-0.22-0.11s-0.18-0.04-0.29-0.04H9.56V13.49z"},"children":[]}]},{"name":"path","attribs":{"d":"M15.3,14.24c0,0.32-0.03,0.6-0.1,0.82s-0.17,0.42-0.29,0.57s-0.28,0.26-0.45,0.33s-0.37,0.1-0.59,0.1 s-0.41-0.03-0.59-0.1s-0.33-0.18-0.46-0.33s-0.23-0.34-0.3-0.57s-0.11-0.5-0.11-0.82V13.5c0-0.32,0.03-0.6,0.1-0.82 s0.17-0.42,0.29-0.57s0.28-0.26,0.45-0.33s0.37-0.1,0.59-0.1s0.41,0.03,0.59,0.1s0.33,0.18,0.46,0.33s0.23,0.34,0.3,0.57 s0.11,0.5,0.11,0.82V14.24z M14.45,13.38c0-0.19-0.01-0.35-0.04-0.48c-0.03-0.13-0.07-0.23-0.12-0.31s-0.11-0.14-0.19-0.17 s-0.16-0.05-0.25-0.05s-0.18,0.02-0.25,0.05s-0.14,0.09-0.19,0.17s-0.09,0.18-0.12,0.31s-0.04,0.29-0.04,0.48v0.97 c0,0.19,0.01,0.35,0.04,0.48s0.07,0.24,0.12,0.32s0.11,0.14,0.19,0.17s0.16,0.05,0.25,0.05s0.18-0.02,0.25-0.05 s0.14-0.09,0.19-0.17s0.09-0.19,0.11-0.32c0.03-0.13,0.04-0.29,0.04-0.48V13.38z"},"children":[{"name":"path","attribs":{"d":"M15.3,14.24c0,0.32-0.03,0.6-0.1,0.82s-0.17,0.42-0.29,0.57s-0.28,0.26-0.45,0.33s-0.37,0.1-0.59,0.1 s-0.41-0.03-0.59-0.1s-0.33-0.18-0.46-0.33s-0.23-0.34-0.3-0.57s-0.11-0.5-0.11-0.82V13.5c0-0.32,0.03-0.6,0.1-0.82 s0.17-0.42,0.29-0.57s0.28-0.26,0.45-0.33s0.37-0.1,0.59-0.1s0.41,0.03,0.59,0.1s0.33,0.18,0.46,0.33s0.23,0.34,0.3,0.57 s0.11,0.5,0.11,0.82V14.24z M14.45,13.38c0-0.19-0.01-0.35-0.04-0.48c-0.03-0.13-0.07-0.23-0.12-0.31s-0.11-0.14-0.19-0.17 s-0.16-0.05-0.25-0.05s-0.18,0.02-0.25,0.05s-0.14,0.09-0.19,0.17s-0.09,0.18-0.12,0.31s-0.04,0.29-0.04,0.48v0.97 c0,0.19,0.01,0.35,0.04,0.48s0.07,0.24,0.12,0.32s0.11,0.14,0.19,0.17s0.16,0.05,0.25,0.05s0.18-0.02,0.25-0.05 s0.14-0.09,0.19-0.17s0.09-0.19,0.11-0.32c0.03-0.13,0.04-0.29,0.04-0.48V13.38z"},"children":[]}]}]}]}]}]}]}]};exports.ic_replay_30=ic_replay_30;var ic_replay_30_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 5V1L7 6l5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6H4c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8zm-2.44 8.49h.45c.21 0 .37-.05.48-.16s.16-.25.16-.43c0-.08-.01-.15-.04-.22s-.06-.12-.11-.17-.11-.09-.18-.11-.16-.04-.25-.04c-.08 0-.15.01-.22.03s-.13.05-.18.1-.09.09-.12.15-.05.13-.05.2h-.85c0-.18.04-.34.11-.48s.17-.27.3-.37.27-.18.44-.23.35-.08.54-.08c.21 0 .41.03.59.08s.33.13.46.23.23.23.3.38.11.33.11.53c0 .09-.01.18-.04.27s-.07.17-.13.25-.12.15-.2.22-.17.12-.28.17c.24.09.42.21.54.39s.18.38.18.61c0 .2-.04.38-.12.53s-.18.29-.32.39-.29.19-.48.24-.38.08-.6.08c-.18 0-.36-.02-.53-.07s-.33-.12-.46-.23-.25-.23-.33-.38-.12-.34-.12-.55h.85c0 .08.02.15.05.22s.07.12.13.17.12.09.2.11.16.04.25.04c.1 0 .19-.01.27-.04s.15-.07.2-.12.1-.11.13-.18.04-.15.04-.24c0-.11-.02-.21-.05-.29s-.08-.15-.14-.2-.13-.09-.22-.11-.18-.04-.29-.04h-.47v-.65zm5.74.75c0 .32-.03.6-.1.82s-.17.42-.29.57-.28.26-.45.33-.37.1-.59.1-.41-.03-.59-.1-.33-.18-.46-.33-.23-.34-.3-.57-.11-.5-.11-.82v-.74c0-.32.03-.6.1-.82s.17-.42.29-.57.28-.26.45-.33.37-.1.59-.1.41.03.59.1.33.18.46.33.23.34.3.57.11.5.11.82v.74zm-.85-.86c0-.19-.01-.35-.04-.48s-.07-.23-.12-.31-.11-.14-.19-.17-.16-.05-.25-.05-.18.02-.25.05-.14.09-.19.17-.09.18-.12.31-.04.29-.04.48v.97c0 .19.01.35.04.48s.07.24.12.32.11.14.19.17.16.05.25.05.18-.02.25-.05.14-.09.19-.17.09-.19.11-.32c.03-.13.04-.29.04-.48v-.97z"},"children":[]}]};exports.ic_replay_30_outline=ic_replay_30_outline;var ic_replay_30_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 5V1L7 6l5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6H4c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8zm-2.44 8.49h.45c.21 0 .37-.05.48-.16s.16-.25.16-.43c0-.08-.01-.15-.04-.22s-.06-.12-.11-.17-.11-.09-.18-.11-.16-.04-.25-.04c-.08 0-.15.01-.22.03s-.13.05-.18.1-.09.09-.12.15-.05.13-.05.2h-.85c0-.18.04-.34.11-.48s.17-.27.3-.37.27-.18.44-.23.35-.08.54-.08c.21 0 .41.03.59.08s.33.13.46.23.23.23.3.38.11.33.11.53c0 .09-.01.18-.04.27s-.07.17-.13.25-.12.15-.2.22-.17.12-.28.17c.24.09.42.21.54.39s.18.38.18.61c0 .2-.04.38-.12.53s-.18.29-.32.39-.29.19-.48.24-.38.08-.6.08c-.18 0-.36-.02-.53-.07s-.33-.12-.46-.23-.25-.23-.33-.38-.12-.34-.12-.55h.85c0 .08.02.15.05.22s.07.12.13.17.12.09.2.11.16.04.25.04c.1 0 .19-.01.27-.04s.15-.07.2-.12.1-.11.13-.18.04-.15.04-.24c0-.11-.02-.21-.05-.29s-.08-.15-.14-.2-.13-.09-.22-.11-.18-.04-.29-.04h-.47v-.65zm5.74.75c0 .32-.03.6-.1.82s-.17.42-.29.57-.28.26-.45.33-.37.1-.59.1-.41-.03-.59-.1-.33-.18-.46-.33-.23-.34-.3-.57-.11-.5-.11-.82v-.74c0-.32.03-.6.1-.82s.17-.42.29-.57.28-.26.45-.33.37-.1.59-.1.41.03.59.1.33.18.46.33.23.34.3.57.11.5.11.82v.74zm-.85-.86c0-.19-.01-.35-.04-.48s-.07-.23-.12-.31-.11-.14-.19-.17-.16-.05-.25-.05-.18.02-.25.05-.14.09-.19.17-.09.18-.12.31-.04.29-.04.48v.97c0 .19.01.35.04.48s.07.24.12.32.11.14.19.17.16.05.25.05.18-.02.25-.05.14-.09.19-.17.09-.19.11-.32c.03-.13.04-.29.04-.48v-.97z"},"children":[]}]};exports.ic_replay_30_twotone=ic_replay_30_twotone;var ic_replay_5={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M12,5V1L7,6l5,5V7c3.31,0,6,2.69,6,6s-2.69,6-6,6s-6-2.69-6-6H4c0,4.42,3.58,8,8,8s8-3.58,8-8S16.42,5,12,5z"},"children":[{"name":"path","attribs":{"d":"M12,5V1L7,6l5,5V7c3.31,0,6,2.69,6,6s-2.69,6-6,6s-6-2.69-6-6H4c0,4.42,3.58,8,8,8s8-3.58,8-8S16.42,5,12,5z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M10.69,13.9l0.25-2.17h2.39v0.71h-1.7l-0.11,0.92c0.03-0.02,0.07-0.03,0.11-0.05s0.09-0.04,0.15-0.05 s0.12-0.03,0.18-0.04s0.13-0.02,0.2-0.02c0.21,0,0.39,0.03,0.55,0.1s0.3,0.16,0.41,0.28s0.2,0.27,0.25,0.45s0.09,0.38,0.09,0.6 c0,0.19-0.03,0.37-0.09,0.54s-0.15,0.32-0.27,0.45s-0.27,0.24-0.45,0.31s-0.39,0.12-0.64,0.12c-0.18,0-0.36-0.03-0.53-0.08 s-0.32-0.14-0.46-0.24s-0.24-0.24-0.32-0.39s-0.13-0.33-0.13-0.53h0.84c0.02,0.18,0.08,0.32,0.19,0.41s0.25,0.15,0.42,0.15 c0.11,0,0.2-0.02,0.27-0.06s0.14-0.1,0.18-0.17s0.08-0.15,0.11-0.25s0.03-0.2,0.03-0.31s-0.01-0.21-0.04-0.31 s-0.07-0.17-0.13-0.24s-0.13-0.12-0.21-0.15s-0.19-0.05-0.3-0.05c-0.08,0-0.15,0.01-0.2,0.02s-0.11,0.03-0.15,0.05 s-0.08,0.05-0.12,0.07s-0.07,0.06-0.1,0.09L10.69,13.9z"},"children":[{"name":"path","attribs":{"d":"M10.69,13.9l0.25-2.17h2.39v0.71h-1.7l-0.11,0.92c0.03-0.02,0.07-0.03,0.11-0.05s0.09-0.04,0.15-0.05 s0.12-0.03,0.18-0.04s0.13-0.02,0.2-0.02c0.21,0,0.39,0.03,0.55,0.1s0.3,0.16,0.41,0.28s0.2,0.27,0.25,0.45s0.09,0.38,0.09,0.6 c0,0.19-0.03,0.37-0.09,0.54s-0.15,0.32-0.27,0.45s-0.27,0.24-0.45,0.31s-0.39,0.12-0.64,0.12c-0.18,0-0.36-0.03-0.53-0.08 s-0.32-0.14-0.46-0.24s-0.24-0.24-0.32-0.39s-0.13-0.33-0.13-0.53h0.84c0.02,0.18,0.08,0.32,0.19,0.41s0.25,0.15,0.42,0.15 c0.11,0,0.2-0.02,0.27-0.06s0.14-0.1,0.18-0.17s0.08-0.15,0.11-0.25s0.03-0.2,0.03-0.31s-0.01-0.21-0.04-0.31 s-0.07-0.17-0.13-0.24s-0.13-0.12-0.21-0.15s-0.19-0.05-0.3-0.05c-0.08,0-0.15,0.01-0.2,0.02s-0.11,0.03-0.15,0.05 s-0.08,0.05-0.12,0.07s-0.07,0.06-0.1,0.09L10.69,13.9z"},"children":[]}]}]}]}]}]}]}]};exports.ic_replay_5=ic_replay_5;var ic_replay_5_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 5V1L7 6l5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6H4c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8zm-1.31 8.9l.25-2.17h2.39v.71h-1.7l-.11.92c.03-.02.07-.03.11-.05s.09-.04.15-.05.12-.03.18-.04.13-.02.2-.02c.21 0 .39.03.55.1s.3.16.41.28.2.27.25.45.09.38.09.6c0 .19-.03.37-.09.54s-.15.32-.27.45-.27.24-.45.31-.39.12-.64.12c-.18 0-.36-.03-.53-.08s-.32-.14-.46-.24-.24-.24-.32-.39-.13-.33-.13-.53h.84c.02.18.08.32.19.41s.25.15.42.15c.11 0 .2-.02.27-.06s.14-.1.18-.17.08-.15.11-.25.03-.2.03-.31-.01-.21-.04-.31-.07-.17-.13-.24-.13-.12-.21-.15-.19-.05-.3-.05c-.08 0-.15.01-.2.02s-.11.03-.15.05-.08.05-.12.07-.07.06-.1.09l-.67-.16z"},"children":[]}]};exports.ic_replay_5_outline=ic_replay_5_outline;var ic_replay_5_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 5V1L7 6l5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6H4c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8zm-1.31 8.9l.25-2.17h2.39v.71h-1.7l-.11.92c.03-.02.07-.03.11-.05s.09-.04.15-.05.12-.03.18-.04.13-.02.2-.02c.21 0 .39.03.55.1s.3.16.41.28.2.27.25.45.09.38.09.6c0 .19-.03.37-.09.54s-.15.32-.27.45-.27.24-.45.31-.39.12-.64.12c-.18 0-.36-.03-.53-.08s-.32-.14-.46-.24-.24-.24-.32-.39-.13-.33-.13-.53h.84c.02.18.08.32.19.41s.25.15.42.15c.11 0 .2-.02.27-.06s.14-.1.18-.17.08-.15.11-.25.03-.2.03-.31-.01-.21-.04-.31-.07-.17-.13-.24-.13-.12-.21-.15-.19-.05-.3-.05c-.08 0-.15.01-.2.02s-.11.03-.15.05-.08.05-.12.07-.07.06-.1.09l-.67-.16z"},"children":[]}]};exports.ic_replay_5_twotone=ic_replay_5_twotone;var ic_replay_circle_filled={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm6 10c0 3.31-2.69 6-6 6s-6-2.69-6-6h2c0 2.21 1.79 4 4 4s4-1.79 4-4-1.79-4-4-4v3L8 7l4-4v3c3.31 0 6 2.69 6 6z","fill-rule":"evenodd"},"children":[]}]};exports.ic_replay_circle_filled=ic_replay_circle_filled;var ic_sd={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-6 6h4c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1h-4V9zm-3.5 4.5v-1H7c-.55 0-1-.45-1-1V10c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v1H9.5v-.5h-2v1H10c.55 0 1 .45 1 1V14c0 .55-.45 1-1 1H7c-.55 0-1-.45-1-1v-1h1.5v.5h2zm5 0h2v-3h-2v3z"},"children":[]}]};exports.ic_sd=ic_sd;var ic_shuffle={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10.59 9.17L5.41 4 4 5.41l5.17 5.17 1.42-1.41zM14.5 4l2.04 2.04L4 18.59 5.41 20 17.96 7.46 20 9.5V4h-5.5zm.33 9.41l-1.41 1.41 3.13 3.13L14.5 20H20v-5.5l-2.04 2.04-3.13-3.13z"},"children":[]}]};exports.ic_shuffle=ic_shuffle;var ic_shuffle_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10.59 9.17L5.41 4 4 5.41l5.17 5.17 1.42-1.41zM14.5 4l2.04 2.04L4 18.59 5.41 20 17.96 7.46 20 9.5V4h-5.5zm.33 9.41l-1.41 1.41 3.13 3.13L14.5 20H20v-5.5l-2.04 2.04-3.13-3.13z"},"children":[]}]};exports.ic_shuffle_outline=ic_shuffle_outline;var ic_shuffle_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 4h-5.5l2.04 2.04L4 18.59 5.41 20 17.96 7.46 20 9.5zM5.41 4L4 5.41l5.17 5.17 1.42-1.41zM20 20v-5.5l-2.04 2.04-3.13-3.13-1.41 1.41 3.13 3.13L14.5 20z"},"children":[]}]};exports.ic_shuffle_twotone=ic_shuffle_twotone;var ic_shuffle_on={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 1H3c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zM10.59 9.17L5.41 4 4 5.41l5.17 5.17 1.42-1.41zM14.5 4l2.04 2.04L4 18.59 5.41 20 17.96 7.46 20 9.5V4h-5.5zm.33 9.41l-1.41 1.41 3.13 3.13L14.5 20H20v-5.5l-2.04 2.04-3.13-3.13z","fill-rule":"evenodd"},"children":[]}]};exports.ic_shuffle_on=ic_shuffle_on;var ic_skip_next={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6 18l8.5-6L6 6v12zM16 6v12h2V6h-2z"},"children":[]}]};exports.ic_skip_next=ic_skip_next;var ic_skip_next_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6 18l8.5-6L6 6v12zm2-8.14L11.03 12 8 14.14V9.86zM16 6h2v12h-2z"},"children":[]}]};exports.ic_skip_next_outline=ic_skip_next_outline;var ic_skip_next_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8 9.86v4.28L11.03 12z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M14.5 12L6 6v12l8.5-6zM8 9.86L11.03 12 8 14.14V9.86zM16 6h2v12h-2z"},"children":[]}]};exports.ic_skip_next_twotone=ic_skip_next_twotone;var ic_skip_previous={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6 6h2v12H6zm3.5 6l8.5 6V6z"},"children":[]}]};exports.ic_skip_previous=ic_skip_previous;var ic_skip_previous_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6 6h2v12H6zm3.5 6l8.5 6V6l-8.5 6zm6.5 2.14L12.97 12 16 9.86v4.28z"},"children":[]}]};exports.ic_skip_previous_outline=ic_skip_previous_outline;var ic_skip_previous_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16 14.14V9.86L12.97 12z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M6 6h2v12H6zm12 12V6l-8.5 6 8.5 6zm-2-3.86L12.97 12 16 9.86v4.28z"},"children":[]}]};exports.ic_skip_previous_twotone=ic_skip_previous_twotone;var ic_slow_motion_video={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13.05 9.79L10 7.5v9l3.05-2.29L16 12zm0 0L10 7.5v9l3.05-2.29L16 12zm0 0L10 7.5v9l3.05-2.29L16 12zM11 4.07V2.05c-2.01.2-3.84 1-5.32 2.21L7.1 5.69c1.11-.86 2.44-1.44 3.9-1.62zM5.69 7.1L4.26 5.68C3.05 7.16 2.25 8.99 2.05 11h2.02c.18-1.46.76-2.79 1.62-3.9zM4.07 13H2.05c.2 2.01 1 3.84 2.21 5.32l1.43-1.43c-.86-1.1-1.44-2.43-1.62-3.89zm1.61 6.74C7.16 20.95 9 21.75 11 21.95v-2.02c-1.46-.18-2.79-.76-3.9-1.62l-1.42 1.43zM22 12c0 5.16-3.92 9.42-8.95 9.95v-2.02C16.97 19.41 20 16.05 20 12s-3.03-7.41-6.95-7.93V2.05C18.08 2.58 22 6.84 22 12z"},"children":[]}]};exports.ic_slow_motion_video=ic_slow_motion_video;var ic_slow_motion_video_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13.05 9.79L10 7.5v9l3.05-2.29L16 12l-2.95-2.21zm0 0L10 7.5v9l3.05-2.29L16 12l-2.95-2.21zm0 0L10 7.5v9l3.05-2.29L16 12l-2.95-2.21zM11 4.07V2.05c-2.01.2-3.84 1-5.32 2.21L7.1 5.69c1.11-.86 2.44-1.44 3.9-1.62zM5.69 7.1L4.26 5.68C3.05 7.16 2.25 8.99 2.05 11h2.02c.18-1.46.76-2.79 1.62-3.9zM4.07 13H2.05c.2 2.01 1 3.84 2.21 5.32l1.43-1.43c-.86-1.1-1.44-2.43-1.62-3.89zm1.61 6.74C7.16 20.95 9 21.75 11 21.95v-2.02c-1.46-.18-2.79-.76-3.9-1.62l-1.42 1.43zM22 12c0 5.16-3.92 9.42-8.95 9.95v-2.02C16.97 19.41 20 16.05 20 12s-3.03-7.41-6.95-7.93V2.05C18.08 2.58 22 6.84 22 12z"},"children":[]}]};exports.ic_slow_motion_video_outline=ic_slow_motion_video_outline;var ic_slow_motion_video_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4.26 18.32l1.43-1.43c-.86-1.1-1.44-2.43-1.62-3.89H2.05c.2 2.01 1 3.84 2.21 5.32zM7.1 5.69c1.11-.86 2.44-1.44 3.9-1.62V2.05c-2.01.2-3.84 1-5.32 2.21L7.1 5.69zM2.05 11h2.02c.18-1.46.76-2.79 1.62-3.9L4.26 5.68C3.05 7.16 2.25 8.99 2.05 11zm11-8.95v2.02C16.97 4.59 20 7.95 20 12s-3.03 7.41-6.95 7.93v2.02C18.08 21.42 22 17.16 22 12c0-5.16-3.92-9.42-8.95-9.95zM16 12l-2.95-2.21L10 7.5v9l3.05-2.29zM5.68 19.74C7.16 20.95 9 21.75 11 21.95v-2.02c-1.46-.18-2.79-.76-3.9-1.62l-1.42 1.43z"},"children":[]}]};exports.ic_slow_motion_video_twotone=ic_slow_motion_video_twotone;var ic_snooze={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7.88 3.39L6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm-3-9h3.63L9 15.2V17h6v-2h-3.63L15 10.8V9H9v2z"},"children":[]}]};exports.ic_snooze=ic_snooze;var ic_snooze_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9 11h3.63L9 15.2V17h6v-2h-3.63L15 10.8V9H9v2zm7.056-7.654l1.282-1.535 4.607 3.85-1.28 1.54zM3.336 7.19l-1.28-1.536L6.662 1.81l1.28 1.536zM12 6c3.86 0 7 3.14 7 7s-3.14 7-7 7-7-3.14-7-7 3.14-7 7-7m0-2c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9z"},"children":[]}]};exports.ic_snooze_outline=ic_snooze_outline;var ic_snooze_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9 11h3.63L9 15.2V17h6v-2h-3.63L15 10.8V9H9zm8.337-9.19l4.607 3.845-1.28 1.535-4.61-3.843zm-10.674 0l1.282 1.536L3.337 7.19l-1.28-1.536zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z"},"children":[]}]};exports.ic_snooze_twotone=ic_snooze_twotone;var ic_sort_by_alpha={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0zm0 0h24v24H0V0zm.75.75h22.5v22.5H.75z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14.94 4.66h-4.72l2.36-2.36zm-4.69 14.71h4.66l-2.33 2.33zM6.1 6.27L1.6 17.73h1.84l.92-2.45h5.11l.92 2.45h1.84L7.74 6.27H6.1zm-1.13 7.37l1.94-5.18 1.94 5.18H4.97zm10.76 2.5h6.12v1.59h-8.53v-1.29l5.92-8.56h-5.88v-1.6h8.3v1.26l-5.93 8.6z"},"children":[]}]};exports.ic_sort_by_alpha=ic_sort_by_alpha;var ic_sort_by_alpha_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14.94 4.66h-4.72l2.36-2.36 2.36 2.36zm-4.69 14.71h4.66l-2.33 2.33-2.33-2.33zM6.1 6.27L1.6 17.73h1.84l.92-2.45h5.11l.92 2.45h1.84L7.74 6.27H6.1zm-1.13 7.37l1.94-5.18 1.94 5.18H4.97zm10.76 2.5h6.12v1.59h-8.53v-1.29l5.92-8.56h-5.88v-1.6h8.3v1.26l-5.93 8.6z"},"children":[]}]};exports.ic_sort_by_alpha_outline=ic_sort_by_alpha_outline;var ic_sort_by_alpha_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14.94 4.66L12.58 2.3l-2.36 2.36zm-4.55 13.07h1.84L7.74 6.27H6.1L1.6 17.73h1.84l.92-2.45h5.11l.92 2.45zm-5.42-4.09l1.94-5.18 1.94 5.18H4.97zm7.61 8.06l2.33-2.33h-4.66zm9.08-14.16V6.28h-8.3v1.6h5.88l-5.92 8.56v1.29h8.53v-1.59h-6.12z"},"children":[]}]};exports.ic_sort_by_alpha_twotone=ic_sort_by_alpha_twotone;var ic_speed={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20.38 8.57l-1.23 1.85a8 8 0 0 1-.22 7.58H5.07A8 8 0 0 1 15.58 6.85l1.85-1.23A10 10 0 0 0 3.35 19a2 2 0 0 0 1.72 1h13.85a2 2 0 0 0 1.74-1 10 10 0 0 0-.27-10.44zm-9.79 6.84a2 2 0 0 0 2.83 0l5.66-8.49-8.49 5.66a2 2 0 0 0 0 2.83z"},"children":[]}]};exports.ic_speed=ic_speed;var ic_speed_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20.38 8.57l-1.23 1.85a8 8 0 0 1-.22 7.58H5.07A8 8 0 0 1 15.58 6.85l1.85-1.23A10 10 0 0 0 3.35 19a2 2 0 0 0 1.72 1h13.85a2 2 0 0 0 1.74-1 10 10 0 0 0-.27-10.44z"},"children":[]},{"name":"path","attribs":{"d":"M10.59 15.41a2 2 0 0 0 2.83 0l5.66-8.49-8.49 5.66a2 2 0 0 0 0 2.83z"},"children":[]}]};exports.ic_speed_outline=ic_speed_outline;var ic_speed_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20.38 8.57l-1.23 1.85a8 8 0 0 1-.22 7.58H5.07A8 8 0 0 1 15.58 6.85l1.85-1.23A10 10 0 0 0 3.35 19a2 2 0 0 0 1.72 1h13.85a2 2 0 0 0 1.74-1 10 10 0 0 0-.27-10.44z"},"children":[]},{"name":"path","attribs":{"d":"M10.59 15.41a2 2 0 0 0 2.83 0l5.66-8.49-8.49 5.66a2 2 0 0 0 0 2.83z"},"children":[]}]};exports.ic_speed_twotone=ic_speed_twotone;var ic_stop={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6 6h12v12H6z"},"children":[]}]};exports.ic_stop=ic_stop;var ic_stop_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16 8v8H8V8h8m2-2H6v12h12V6z"},"children":[]}]};exports.ic_stop_outline=ic_stop_outline;var ic_stop_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8 8h8v8H8z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M6 18h12V6H6v12zM8 8h8v8H8V8z"},"children":[]}]};exports.ic_stop_twotone=ic_stop_twotone;var ic_stop_circle={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M8,16h8V8H8V16z M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10 S17.52,2,12,2L12,2z","fill-rule":"evenodd"},"children":[{"name":"path","attribs":{"d":"M8,16h8V8H8V16z M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10 S17.52,2,12,2L12,2z","fill-rule":"evenodd"},"children":[]}]}]}]};exports.ic_stop_circle=ic_stop_circle;var ic_stop_circle_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"height":"8","width":"8","x":"8","y":"8"},"children":[{"name":"rect","attribs":{"height":"8","width":"8","x":"8","y":"8"},"children":[]}]},{"name":"path","attribs":{"d":"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8c0-4.41,3.59-8,8-8 s8,3.59,8,8C20,16.41,16.41,20,12,20z"},"children":[{"name":"path","attribs":{"d":"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8c0-4.41,3.59-8,8-8 s8,3.59,8,8C20,16.41,16.41,20,12,20z"},"children":[]}]}]}]}]}]};exports.ic_stop_circle_outline=ic_stop_circle_outline;var ic_stop_circle_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M12,4c-4.41,0-8,3.59-8,8c0,4.41,3.59,8,8,8c4.41,0,8-3.59,8-8C20,7.59,16.41,4,12,4z M16,16H8V8h8V16z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M12,4c-4.41,0-8,3.59-8,8c0,4.41,3.59,8,8,8c4.41,0,8-3.59,8-8C20,7.59,16.41,4,12,4z M16,16H8V8h8V16z","opacity":".3"},"children":[]}]},{"name":"rect","attribs":{"height":"8","width":"8","x":"8","y":"8"},"children":[{"name":"rect","attribs":{"height":"8","width":"8","x":"8","y":"8"},"children":[]}]},{"name":"path","attribs":{"d":"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8c0-4.41,3.59-8,8-8 c4.41,0,8,3.59,8,8C20,16.41,16.41,20,12,20z"},"children":[{"name":"path","attribs":{"d":"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8c0-4.41,3.59-8,8-8 c4.41,0,8,3.59,8,8C20,16.41,16.41,20,12,20z"},"children":[]}]}]}]}]}]};exports.ic_stop_circle_twotone=ic_stop_circle_twotone;var ic_subscriptions={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M20 8H4V6h16v2zm-2-6H6v2h12V2zm4 10v8c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2v-8c0-1.1.9-2 2-2h16c1.1 0 2 .9 2 2zm-6 4l-6-3.27v6.53L16 16z"},"children":[]},{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]}]};exports.ic_subscriptions=ic_subscriptions;var ic_subscriptions_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 6h16v2H4zm2-4h12v2H6zm14 8H4c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-8c0-1.1-.9-2-2-2zm0 10H4v-8h16v8zm-10-7.27v6.53L16 16z"},"children":[]}]};exports.ic_subscriptions_outline=ic_subscriptions_outline;var ic_subscriptions_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 20h16v-8H4v8zm6-7.27L16 16l-6 3.26v-6.53z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M4 6h16v2H4zm2-4h12v2H6zm14 8H4c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-8c0-1.1-.9-2-2-2zm0 10H4v-8h16v8zm-10-7.27v6.53L16 16z"},"children":[]}]};exports.ic_subscriptions_twotone=ic_subscriptions_twotone;var ic_subtitles={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM4 12h4v2H4v-2zm10 6H4v-2h10v2zm6 0h-4v-2h4v2zm0-4H10v-2h10v2z"},"children":[]}]};exports.ic_subtitles=ic_subtitles;var ic_subtitles_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h16v12zM6 10h2v2H6zm0 4h8v2H6zm10 0h2v2h-2zm-6-4h8v2h-8z"},"children":[]}]};exports.ic_subtitles_outline=ic_subtitles_outline;var ic_subtitles_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 18h16V6H4v12zm14-2h-2v-2h2v2zm-8-6h8v2h-8v-2zm-4 0h2v2H6v-2zm0 4h8v2H6v-2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h16v12zM6 10h2v2H6zm0 4h8v2H6zm10 0h2v2h-2zm-6-4h8v2h-8z"},"children":[]}]};exports.ic_subtitles_twotone=ic_subtitles_twotone;var ic_surround_sound={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM7.76 16.24l-1.41 1.41C4.78 16.1 4 14.05 4 12c0-2.05.78-4.1 2.34-5.66l1.41 1.41C6.59 8.93 6 10.46 6 12s.59 3.07 1.76 4.24zM12 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm5.66 1.66l-1.41-1.41C17.41 15.07 18 13.54 18 12s-.59-3.07-1.76-4.24l1.41-1.41C19.22 7.9 20 9.95 20 12c0 2.05-.78 4.1-2.34 5.66zM12 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"},"children":[]}]};exports.ic_surround_sound=ic_surround_sound;var ic_surround_sound_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M20,18H4V6h16V18z"},"children":[{"name":"path","attribs":{"d":"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M20,18H4V6h16V18z"},"children":[]}]},{"name":"path","attribs":{"d":"M8.29,15.71C7.27,14.69,6.75,13.35,6.75,12c0-1.35,0.52-2.69,1.53-3.72L7.05,7.05C5.68,8.41,5,10.21,5,12 s0.68,3.59,2.06,4.94L8.29,15.71z"},"children":[{"name":"path","attribs":{"d":"M8.29,15.71C7.27,14.69,6.75,13.35,6.75,12c0-1.35,0.52-2.69,1.53-3.72L7.05,7.05C5.68,8.41,5,10.21,5,12 s0.68,3.59,2.06,4.94L8.29,15.71z"},"children":[]}]},{"name":"path","attribs":{"d":"M12,15.5c1.93,0,3.5-1.57,3.5-3.5c0-1.93-1.57-3.5-3.5-3.5c-1.93,0-3.5,1.57-3.5,3.5C8.5,13.93,10.07,15.5,12,15.5z M12,10.5c0.83,0,1.5,0.67,1.5,1.5s-0.67,1.5-1.5,1.5s-1.5-0.67-1.5-1.5S11.17,10.5,12,10.5z"},"children":[{"name":"path","attribs":{"d":"M12,15.5c1.93,0,3.5-1.57,3.5-3.5c0-1.93-1.57-3.5-3.5-3.5c-1.93,0-3.5,1.57-3.5,3.5C8.5,13.93,10.07,15.5,12,15.5z M12,10.5c0.83,0,1.5,0.67,1.5,1.5s-0.67,1.5-1.5,1.5s-1.5-0.67-1.5-1.5S11.17,10.5,12,10.5z"},"children":[]}]},{"name":"path","attribs":{"d":"M15.72,15.72l1.23,1.23C18.32,15.59,19,13.79,19,12s-0.68-3.59-2.06-4.94l-1.23,1.23c1.02,1.02,1.54,2.36,1.54,3.71 C17.25,13.35,16.73,14.69,15.72,15.72z"},"children":[{"name":"path","attribs":{"d":"M15.72,15.72l1.23,1.23C18.32,15.59,19,13.79,19,12s-0.68-3.59-2.06-4.94l-1.23,1.23c1.02,1.02,1.54,2.36,1.54,3.71 C17.25,13.35,16.73,14.69,15.72,15.72z"},"children":[]}]}]}]}]}]};exports.ic_surround_sound_outline=ic_surround_sound_outline;var ic_surround_sound_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M4,18h16V6H4V18z M16.94,7.06C18.32,8.41,19,10.21,19,12s-0.68,3.59-2.05,4.95l-1.23-1.23 c1.02-1.03,1.53-2.37,1.53-3.72c0-1.35-0.52-2.69-1.54-3.71L16.94,7.06z M12,8.5c1.93,0,3.5,1.57,3.5,3.5c0,1.93-1.57,3.5-3.5,3.5 c-1.93,0-3.5-1.57-3.5-3.5C8.5,10.07,10.07,8.5,12,8.5z M7.05,7.05l1.23,1.23C7.27,9.31,6.75,10.65,6.75,12 c0,1.35,0.52,2.69,1.54,3.71l-1.23,1.23C5.68,15.59,5,13.79,5,12S5.68,8.41,7.05,7.05z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M4,18h16V6H4V18z M16.94,7.06C18.32,8.41,19,10.21,19,12s-0.68,3.59-2.05,4.95l-1.23-1.23 c1.02-1.03,1.53-2.37,1.53-3.72c0-1.35-0.52-2.69-1.54-3.71L16.94,7.06z M12,8.5c1.93,0,3.5,1.57,3.5,3.5c0,1.93-1.57,3.5-3.5,3.5 c-1.93,0-3.5-1.57-3.5-3.5C8.5,10.07,10.07,8.5,12,8.5z M7.05,7.05l1.23,1.23C7.27,9.31,6.75,10.65,6.75,12 c0,1.35,0.52,2.69,1.54,3.71l-1.23,1.23C5.68,15.59,5,13.79,5,12S5.68,8.41,7.05,7.05z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M20,18H4V6h16V18z"},"children":[{"name":"path","attribs":{"d":"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M20,18H4V6h16V18z"},"children":[]}]},{"name":"path","attribs":{"d":"M8.29,15.71C7.27,14.69,6.75,13.35,6.75,12c0-1.35,0.52-2.69,1.53-3.72L7.05,7.05C5.68,8.41,5,10.21,5,12 s0.68,3.59,2.06,4.94L8.29,15.71z"},"children":[{"name":"path","attribs":{"d":"M8.29,15.71C7.27,14.69,6.75,13.35,6.75,12c0-1.35,0.52-2.69,1.53-3.72L7.05,7.05C5.68,8.41,5,10.21,5,12 s0.68,3.59,2.06,4.94L8.29,15.71z"},"children":[]}]},{"name":"path","attribs":{"d":"M12,15.5c1.93,0,3.5-1.57,3.5-3.5c0-1.93-1.57-3.5-3.5-3.5c-1.93,0-3.5,1.57-3.5,3.5C8.5,13.93,10.07,15.5,12,15.5z M12,10.5c0.83,0,1.5,0.67,1.5,1.5s-0.67,1.5-1.5,1.5s-1.5-0.67-1.5-1.5S11.17,10.5,12,10.5z"},"children":[{"name":"path","attribs":{"d":"M12,15.5c1.93,0,3.5-1.57,3.5-3.5c0-1.93-1.57-3.5-3.5-3.5c-1.93,0-3.5,1.57-3.5,3.5C8.5,13.93,10.07,15.5,12,15.5z M12,10.5c0.83,0,1.5,0.67,1.5,1.5s-0.67,1.5-1.5,1.5s-1.5-0.67-1.5-1.5S11.17,10.5,12,10.5z"},"children":[]}]},{"name":"path","attribs":{"d":"M15.72,15.72l1.23,1.23C18.32,15.59,19,13.79,19,12s-0.68-3.59-2.06-4.94l-1.23,1.23c1.02,1.02,1.54,2.36,1.54,3.71 C17.25,13.35,16.73,14.69,15.72,15.72z"},"children":[{"name":"path","attribs":{"d":"M15.72,15.72l1.23,1.23C18.32,15.59,19,13.79,19,12s-0.68-3.59-2.06-4.94l-1.23,1.23c1.02,1.02,1.54,2.36,1.54,3.71 C17.25,13.35,16.73,14.69,15.72,15.72z"},"children":[]}]}]}]}]}]};exports.ic_surround_sound_twotone=ic_surround_sound_twotone;var ic_video_call={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 10.5V7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4zM14 13h-3v3H9v-3H6v-2h3V8h2v3h3v2z"},"children":[]}]};exports.ic_video_call=ic_video_call;var ic_video_call_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 10.5V7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4zM15 16H5V8h10v8zm-6-1h2v-2h2v-2h-2V9H9v2H7v2h2z"},"children":[]}]};exports.ic_video_call_outline=ic_video_call_outline;var ic_video_call_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 16h10V8H5v8zm2-5h2V9h2v2h2v2h-2v2H9v-2H7v-2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M17 7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4V7zm-2 9H5V8h10v8zm-6-1h2v-2h2v-2h-2V9H9v2H7v2h2z"},"children":[]}]};exports.ic_video_call_twotone=ic_video_call_twotone;var ic_video_label={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 13H3V5h18v11z"},"children":[]}]};exports.ic_video_label=ic_video_label;var ic_video_label_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 13H3V5h18v11z"},"children":[]}]};exports.ic_video_label_outline=ic_video_label_outline;var ic_video_label_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 5h18v11H3z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 13H3V5h18v11z"},"children":[]}]};exports.ic_video_label_twotone=ic_video_label_twotone;var ic_video_library={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-8 12.5v-9l6 4.5-6 4.5z"},"children":[]}]};exports.ic_video_library=ic_video_library;var ic_video_library_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zM12 5.5v9l6-4.5z"},"children":[]}]};exports.ic_video_library_outline=ic_video_library_outline;var ic_video_library_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8 16h12V4H8v12zm4-10.5l6 4.5-6 4.5v-9z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zM12 5.5v9l6-4.5z"},"children":[]}]};exports.ic_video_library_twotone=ic_video_library_twotone;var ic_video_settings={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M3,6h18v5h2V6c0-1.1-0.9-2-2-2H3C1.9,4,1,4.9,1,6v12c0,1.1,0.9,2,2,2h9v-2H3V6z"},"children":[{"name":"path","attribs":{"d":"M3,6h18v5h2V6c0-1.1-0.9-2-2-2H3C1.9,4,1,4.9,1,6v12c0,1.1,0.9,2,2,2h9v-2H3V6z"},"children":[]}]},{"name":"polygon","attribs":{"points":"15,12 9,8 9,16"},"children":[{"name":"polygon","attribs":{"points":"15,12 9,8 9,16"},"children":[]}]},{"name":"path","attribs":{"d":"M22.71,18.43c0.03-0.29,0.04-0.58,0.01-0.86l1.07-0.85c0.1-0.08,0.12-0.21,0.06-0.32l-1.03-1.79 c-0.06-0.11-0.19-0.15-0.31-0.11L21.23,15c-0.23-0.17-0.48-0.31-0.75-0.42l-0.2-1.36C20.26,13.09,20.16,13,20.03,13h-2.07 c-0.12,0-0.23,0.09-0.25,0.21l-0.2,1.36c-0.26,0.11-0.51,0.26-0.74,0.42l-1.28-0.5c-0.12-0.05-0.25,0-0.31,0.11l-1.03,1.79 c-0.06,0.11-0.04,0.24,0.06,0.32l1.07,0.86c-0.03,0.29-0.04,0.58-0.01,0.86l-1.07,0.85c-0.1,0.08-0.12,0.21-0.06,0.32l1.03,1.79 c0.06,0.11,0.19,0.15,0.31,0.11l1.27-0.5c0.23,0.17,0.48,0.31,0.75,0.42l0.2,1.36c0.02,0.12,0.12,0.21,0.25,0.21h2.07 c0.12,0,0.23-0.09,0.25-0.21l0.2-1.36c0.26-0.11,0.51-0.26,0.74-0.42l1.28,0.5c0.12,0.05,0.25,0,0.31-0.11l1.03-1.79 c0.06-0.11,0.04-0.24-0.06-0.32L22.71,18.43z M19,19.5c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5 S19.83,19.5,19,19.5z"},"children":[{"name":"path","attribs":{"d":"M22.71,18.43c0.03-0.29,0.04-0.58,0.01-0.86l1.07-0.85c0.1-0.08,0.12-0.21,0.06-0.32l-1.03-1.79 c-0.06-0.11-0.19-0.15-0.31-0.11L21.23,15c-0.23-0.17-0.48-0.31-0.75-0.42l-0.2-1.36C20.26,13.09,20.16,13,20.03,13h-2.07 c-0.12,0-0.23,0.09-0.25,0.21l-0.2,1.36c-0.26,0.11-0.51,0.26-0.74,0.42l-1.28-0.5c-0.12-0.05-0.25,0-0.31,0.11l-1.03,1.79 c-0.06,0.11-0.04,0.24,0.06,0.32l1.07,0.86c-0.03,0.29-0.04,0.58-0.01,0.86l-1.07,0.85c-0.1,0.08-0.12,0.21-0.06,0.32l1.03,1.79 c0.06,0.11,0.19,0.15,0.31,0.11l1.27-0.5c0.23,0.17,0.48,0.31,0.75,0.42l0.2,1.36c0.02,0.12,0.12,0.21,0.25,0.21h2.07 c0.12,0,0.23-0.09,0.25-0.21l0.2-1.36c0.26-0.11,0.51-0.26,0.74-0.42l1.28,0.5c0.12,0.05,0.25,0,0.31-0.11l1.03-1.79 c0.06-0.11,0.04-0.24-0.06-0.32L22.71,18.43z M19,19.5c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5 S19.83,19.5,19,19.5z"},"children":[]}]}]}]}]}]};exports.ic_video_settings=ic_video_settings;var ic_video_settings_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M3,6h18v5h2V6c0-1.1-0.9-2-2-2H3C1.9,4,1,4.9,1,6v12c0,1.1,0.9,2,2,2h9v-2H3V6z"},"children":[{"name":"path","attribs":{"d":"M3,6h18v5h2V6c0-1.1-0.9-2-2-2H3C1.9,4,1,4.9,1,6v12c0,1.1,0.9,2,2,2h9v-2H3V6z"},"children":[]}]},{"name":"polygon","attribs":{"points":"15,12 9,8 9,16"},"children":[{"name":"polygon","attribs":{"points":"15,12 9,8 9,16"},"children":[]}]},{"name":"path","attribs":{"d":"M22.71,18.43c0.03-0.29,0.04-0.58,0.01-0.86l1.07-0.85c0.1-0.08,0.12-0.21,0.06-0.32l-1.03-1.79 c-0.06-0.11-0.19-0.15-0.31-0.11L21.23,15c-0.23-0.17-0.48-0.31-0.75-0.42l-0.2-1.36C20.26,13.09,20.16,13,20.03,13h-2.07 c-0.12,0-0.23,0.09-0.25,0.21l-0.2,1.36c-0.26,0.11-0.51,0.26-0.74,0.42l-1.28-0.5c-0.12-0.05-0.25,0-0.31,0.11l-1.03,1.79 c-0.06,0.11-0.04,0.24,0.06,0.32l1.07,0.86c-0.03,0.29-0.04,0.58-0.01,0.86l-1.07,0.85c-0.1,0.08-0.12,0.21-0.06,0.32l1.03,1.79 c0.06,0.11,0.19,0.15,0.31,0.11l1.27-0.5c0.23,0.17,0.48,0.31,0.75,0.42l0.2,1.36c0.02,0.12,0.12,0.21,0.25,0.21h2.07 c0.12,0,0.23-0.09,0.25-0.21l0.2-1.36c0.26-0.11,0.51-0.26,0.74-0.42l1.28,0.5c0.12,0.05,0.25,0,0.31-0.11l1.03-1.79 c0.06-0.11,0.04-0.24-0.06-0.32L22.71,18.43z M19,19.5c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5 S19.83,19.5,19,19.5z"},"children":[{"name":"path","attribs":{"d":"M22.71,18.43c0.03-0.29,0.04-0.58,0.01-0.86l1.07-0.85c0.1-0.08,0.12-0.21,0.06-0.32l-1.03-1.79 c-0.06-0.11-0.19-0.15-0.31-0.11L21.23,15c-0.23-0.17-0.48-0.31-0.75-0.42l-0.2-1.36C20.26,13.09,20.16,13,20.03,13h-2.07 c-0.12,0-0.23,0.09-0.25,0.21l-0.2,1.36c-0.26,0.11-0.51,0.26-0.74,0.42l-1.28-0.5c-0.12-0.05-0.25,0-0.31,0.11l-1.03,1.79 c-0.06,0.11-0.04,0.24,0.06,0.32l1.07,0.86c-0.03,0.29-0.04,0.58-0.01,0.86l-1.07,0.85c-0.1,0.08-0.12,0.21-0.06,0.32l1.03,1.79 c0.06,0.11,0.19,0.15,0.31,0.11l1.27-0.5c0.23,0.17,0.48,0.31,0.75,0.42l0.2,1.36c0.02,0.12,0.12,0.21,0.25,0.21h2.07 c0.12,0,0.23-0.09,0.25-0.21l0.2-1.36c0.26-0.11,0.51-0.26,0.74-0.42l1.28,0.5c0.12,0.05,0.25,0,0.31-0.11l1.03-1.79 c0.06-0.11,0.04-0.24-0.06-0.32L22.71,18.43z M19,19.5c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5 S19.83,19.5,19,19.5z"},"children":[]}]}]}]}]}]};exports.ic_video_settings_outline=ic_video_settings_outline;var ic_video_settings_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M3,6h18v5h2V6c0-1.1-0.9-2-2-2H3C1.9,4,1,4.9,1,6v12c0,1.1,0.9,2,2,2h9v-2H3V6z"},"children":[{"name":"path","attribs":{"d":"M3,6h18v5h2V6c0-1.1-0.9-2-2-2H3C1.9,4,1,4.9,1,6v12c0,1.1,0.9,2,2,2h9v-2H3V6z"},"children":[]}]},{"name":"polygon","attribs":{"points":"15,12 9,8 9,16"},"children":[{"name":"polygon","attribs":{"points":"15,12 9,8 9,16"},"children":[]}]},{"name":"path","attribs":{"d":"M22.71,18.43c0.03-0.29,0.04-0.58,0.01-0.86l1.07-0.85c0.1-0.08,0.12-0.21,0.06-0.32l-1.03-1.79 c-0.06-0.11-0.19-0.15-0.31-0.11L21.23,15c-0.23-0.17-0.48-0.31-0.75-0.42l-0.2-1.36C20.26,13.09,20.16,13,20.03,13h-2.07 c-0.12,0-0.23,0.09-0.25,0.21l-0.2,1.36c-0.26,0.11-0.51,0.26-0.74,0.42l-1.28-0.5c-0.12-0.05-0.25,0-0.31,0.11l-1.03,1.79 c-0.06,0.11-0.04,0.24,0.06,0.32l1.07,0.86c-0.03,0.29-0.04,0.58-0.01,0.86l-1.07,0.85c-0.1,0.08-0.12,0.21-0.06,0.32l1.03,1.79 c0.06,0.11,0.19,0.15,0.31,0.11l1.27-0.5c0.23,0.17,0.48,0.31,0.75,0.42l0.2,1.36c0.02,0.12,0.12,0.21,0.25,0.21h2.07 c0.12,0,0.23-0.09,0.25-0.21l0.2-1.36c0.26-0.11,0.51-0.26,0.74-0.42l1.28,0.5c0.12,0.05,0.25,0,0.31-0.11l1.03-1.79 c0.06-0.11,0.04-0.24-0.06-0.32L22.71,18.43z M19,19.5c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5 S19.83,19.5,19,19.5z"},"children":[{"name":"path","attribs":{"d":"M22.71,18.43c0.03-0.29,0.04-0.58,0.01-0.86l1.07-0.85c0.1-0.08,0.12-0.21,0.06-0.32l-1.03-1.79 c-0.06-0.11-0.19-0.15-0.31-0.11L21.23,15c-0.23-0.17-0.48-0.31-0.75-0.42l-0.2-1.36C20.26,13.09,20.16,13,20.03,13h-2.07 c-0.12,0-0.23,0.09-0.25,0.21l-0.2,1.36c-0.26,0.11-0.51,0.26-0.74,0.42l-1.28-0.5c-0.12-0.05-0.25,0-0.31,0.11l-1.03,1.79 c-0.06,0.11-0.04,0.24,0.06,0.32l1.07,0.86c-0.03,0.29-0.04,0.58-0.01,0.86l-1.07,0.85c-0.1,0.08-0.12,0.21-0.06,0.32l1.03,1.79 c0.06,0.11,0.19,0.15,0.31,0.11l1.27-0.5c0.23,0.17,0.48,0.31,0.75,0.42l0.2,1.36c0.02,0.12,0.12,0.21,0.25,0.21h2.07 c0.12,0,0.23-0.09,0.25-0.21l0.2-1.36c0.26-0.11,0.51-0.26,0.74-0.42l1.28,0.5c0.12,0.05,0.25,0,0.31-0.11l1.03-1.79 c0.06-0.11,0.04-0.24-0.06-0.32L22.71,18.43z M19,19.5c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5 S19.83,19.5,19,19.5z"},"children":[]}]}]}]}]}]};exports.ic_video_settings_twotone=ic_video_settings_twotone;var ic_videocam={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 10.5V7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4z"},"children":[]}]};exports.ic_videocam=ic_videocam;var ic_videocam_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15 8v8H5V8h10m1-2H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4V7c0-.55-.45-1-1-1z"},"children":[]}]};exports.ic_videocam_outline=ic_videocam_outline;var ic_videocam_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 8h10v8H5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M17 7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4V7zm-2 9H5V8h10v8z"},"children":[]}]};exports.ic_videocam_twotone=ic_videocam_twotone;var ic_videocam_off={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0zm0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 6.5l-4 4V7c0-.55-.45-1-1-1H9.82L21 17.18V6.5zM3.27 2L2 3.27 4.73 6H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.21 0 .39-.08.54-.18L19.73 21 21 19.73 3.27 2z"},"children":[]}]};exports.ic_videocam_off=ic_videocam_off;var ic_videocam_off_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9.56 8l-2-2-4.15-4.14L2 3.27 4.73 6H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.21 0 .39-.08.55-.18L19.73 21l1.41-1.41-8.86-8.86L9.56 8zM5 16V8h1.73l8 8H5zm10-8v2.61l6 6V6.5l-4 4V7c0-.55-.45-1-1-1h-5.61l2 2H15z"},"children":[]}]};exports.ic_videocam_off_outline=ic_videocam_off_outline;var ic_videocam_off_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12.39 8L15 10.61V8zM5 8v8h9.73l-8-8z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M3.41 1.86L2 3.27 4.73 6H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.21 0 .39-.08.55-.18L19.73 21l1.41-1.41L3.41 1.86zM5 16V8h1.73l8 8H5zm10-8v2.61l6 6V6.5l-4 4V7c0-.55-.45-1-1-1h-5.61l2 2H15z"},"children":[]}]};exports.ic_videocam_off_twotone=ic_videocam_off_twotone;var ic_volume_down={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18.5 12c0-1.77-1.02-3.29-2.5-4.03v8.05c1.48-.73 2.5-2.25 2.5-4.02zM5 9v6h4l5 5V4L9 9H5z"},"children":[]}]};exports.ic_volume_down=ic_volume_down;var ic_volume_down_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16 7.97v8.05c1.48-.73 2.5-2.25 2.5-4.02 0-1.77-1.02-3.29-2.5-4.03zM5 9v6h4l5 5V4L9 9H5zm7-.17v6.34L9.83 13H7v-2h2.83L12 8.83z"},"children":[]}]};exports.ic_volume_down_outline=ic_volume_down_outline;var ic_volume_down_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 13h2.83L12 15.17V8.83L9.83 11H7z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M16 7.97v8.05c1.48-.73 2.5-2.25 2.5-4.02 0-1.77-1.02-3.29-2.5-4.03zM5 9v6h4l5 5V4L9 9H5zm7-.17v6.34L9.83 13H7v-2h2.83L12 8.83z"},"children":[]}]};exports.ic_volume_down_twotone=ic_volume_down_twotone;var ic_volume_mute={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 9v6h4l5 5V4l-5 5H7z"},"children":[]}]};exports.ic_volume_mute=ic_volume_mute;var ic_volume_mute_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14 8.83v6.34L11.83 13H9v-2h2.83L14 8.83M16 4l-5 5H7v6h4l5 5V4z"},"children":[]}]};exports.ic_volume_mute_outline=ic_volume_mute_outline;var ic_volume_mute_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9 13h2.83L14 15.17V8.83L11.83 11H9z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M7 9v6h4l5 5V4l-5 5H7zm7-.17v6.34L11.83 13H9v-2h2.83L14 8.83z"},"children":[]}]};exports.ic_volume_mute_twotone=ic_volume_mute_twotone;var ic_volume_off={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16.5 12c0-1.77-1.02-3.29-2.5-4.03v2.21l2.45 2.45c.03-.2.05-.41.05-.63zm2.5 0c0 .94-.2 1.82-.54 2.64l1.51 1.51C20.63 14.91 21 13.5 21 12c0-4.28-2.99-7.86-7-8.77v2.06c2.89.86 5 3.54 5 6.71zM4.27 3L3 4.27 7.73 9H3v6h4l5 5v-6.73l4.25 4.25c-.67.52-1.42.93-2.25 1.18v2.06c1.38-.31 2.63-.95 3.69-1.81L19.73 21 21 19.73l-9-9L4.27 3zM12 4L9.91 6.09 12 8.18V4z"},"children":[]}]};exports.ic_volume_off=ic_volume_off;var ic_volume_off_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4.34 2.93L2.93 4.34 7.29 8.7 7 9H3v6h4l5 5v-6.59l4.18 4.18c-.65.49-1.38.88-2.18 1.11v2.06c1.34-.3 2.57-.92 3.61-1.75l2.05 2.05 1.41-1.41L4.34 2.93zM10 15.17L7.83 13H5v-2h2.83l.88-.88L10 11.41v3.76zM19 12c0 .82-.15 1.61-.41 2.34l1.53 1.53c.56-1.17.88-2.48.88-3.87 0-4.28-2.99-7.86-7-8.77v2.06c2.89.86 5 3.54 5 6.71zm-7-8l-1.88 1.88L12 7.76zm4.5 8c0-1.77-1.02-3.29-2.5-4.03v1.79l2.48 2.48c.01-.08.02-.16.02-.24z"},"children":[]}]};exports.ic_volume_off_outline=ic_volume_off_outline;var ic_volume_off_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7.83 11H5v2h2.83L10 15.17v-3.76l-1.29-1.29z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M4.34 2.93L2.93 4.34 7.29 8.7 7 9H3v6h4l5 5v-6.59l4.18 4.18c-.65.49-1.38.88-2.18 1.11v2.06c1.34-.3 2.57-.92 3.61-1.75l2.05 2.05 1.41-1.41L4.34 2.93zM10 15.17L7.83 13H5v-2h2.83l.88-.88L10 11.41v3.76zM19 12c0 .82-.15 1.61-.41 2.34l1.53 1.53c.56-1.17.88-2.48.88-3.87 0-4.28-2.99-7.86-7-8.77v2.06c2.89.86 5 3.54 5 6.71zm-7-8l-1.88 1.88L12 7.76zm4.5 8c0-1.77-1.02-3.29-2.5-4.03v1.79l2.48 2.48c.01-.08.02-.16.02-.24z"},"children":[]}]};exports.ic_volume_off_twotone=ic_volume_off_twotone;var ic_volume_up={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 9v6h4l5 5V4L7 9H3zm13.5 3c0-1.77-1.02-3.29-2.5-4.03v8.05c1.48-.73 2.5-2.25 2.5-4.02zM14 3.23v2.06c2.89.86 5 3.54 5 6.71s-2.11 5.85-5 6.71v2.06c4.01-.91 7-4.49 7-8.77s-2.99-7.86-7-8.77z"},"children":[]}]};exports.ic_volume_up=ic_volume_up;var ic_volume_up_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 9v6h4l5 5V4L7 9H3zm7-.17v6.34L7.83 13H5v-2h2.83L10 8.83zM16.5 12c0-1.77-1.02-3.29-2.5-4.03v8.05c1.48-.73 2.5-2.25 2.5-4.02zM14 3.23v2.06c2.89.86 5 3.54 5 6.71s-2.11 5.85-5 6.71v2.06c4.01-.91 7-4.49 7-8.77 0-4.28-2.99-7.86-7-8.77z"},"children":[]}]};exports.ic_volume_up_outline=ic_volume_up_outline;var ic_volume_up_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 13h2.83L10 15.17V8.83L7.83 11H5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M3 9v6h4l5 5V4L7 9H3zm7-.17v6.34L7.83 13H5v-2h2.83L10 8.83zm4-.86v8.05c1.48-.73 2.5-2.25 2.5-4.02 0-1.77-1.02-3.29-2.5-4.03zm0-4.74v2.06c2.89.86 5 3.54 5 6.71s-2.11 5.85-5 6.71v2.06c4.01-.91 7-4.49 7-8.77 0-4.28-2.99-7.86-7-8.77z"},"children":[]}]};exports.ic_volume_up_twotone=ic_volume_up_twotone;var ic_web={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-5 14H4v-4h11v4zm0-5H4V9h11v4zm5 5h-4V9h4v9z"},"children":[]}]};exports.ic_web=ic_web;var ic_web_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"path","attribs":{"d":"M20,4H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M4,9h10.5v3.5H4V9z M4,14.5 h10.5V18L4,18V14.5z M20,18l-3.5,0V9H20V18z"},"children":[{"name":"path","attribs":{"d":"M20,4H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M4,9h10.5v3.5H4V9z M4,14.5 h10.5V18L4,18V14.5z M20,18l-3.5,0V9H20V18z"},"children":[]}]}]}]};exports.ic_web_outline=ic_web_outline;var ic_web_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"height":"3.5","opacity":".3","width":"10.5","x":"4","y":"9"},"children":[{"name":"rect","attribs":{"height":"3.5","opacity":".3","width":"10.5","x":"4","y":"9"},"children":[]}]},{"name":"rect","attribs":{"height":"3.5","opacity":".3","width":"10.5","x":"4","y":"14.5"},"children":[{"name":"rect","attribs":{"height":"3.5","opacity":".3","width":"10.5","x":"4","y":"14.5"},"children":[]}]},{"name":"rect","attribs":{"height":"9","opacity":".3","width":"3.5","x":"16.5","y":"9"},"children":[{"name":"rect","attribs":{"height":"9","opacity":".3","width":"3.5","x":"16.5","y":"9"},"children":[]}]},{"name":"path","attribs":{"d":"M20,4H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M14.5,18L4,18v-3.5h10.5 V18z M14.5,12.5H4V9h10.5V12.5z M20,18l-3.5,0V9H20V18z"},"children":[{"name":"path","attribs":{"d":"M20,4H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M14.5,18L4,18v-3.5h10.5 V18z M14.5,12.5H4V9h10.5V12.5z M20,18l-3.5,0V9H20V18z"},"children":[]}]}]}]}]}]};exports.ic_web_twotone=ic_web_twotone;var ic_web_asset={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.89-2-2-2zm0 14H5V8h14v10z"},"children":[]}]};exports.ic_web_asset=ic_web_asset;var ic_web_asset_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.89-2-2-2zm0 14H5V8h14v10z"},"children":[]}]};exports.ic_web_asset_outline=ic_web_asset_outline;var ic_web_asset_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 8h14v10H5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.89-2-2-2zm0 14H5V8h14v10z"},"children":[]}]};exports.ic_web_asset_twotone=ic_web_asset_twotone;var ic_add_ic_call={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 15.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM21 6h-3V3h-2v3h-3v2h3v3h2V8h3z"},"children":[]}]};exports.ic_add_ic_call=ic_add_ic_call;var ic_add_ic_call_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 15.45c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.4 8.5 5.2 8.5 3.95c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 4.95h1.5c.07.88.22 1.75.45 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79zM19 18.92c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM18 5.95v-3h-2v3h-3v2h3v3h2v-3h3v-2z"},"children":[]}]};exports.ic_add_ic_call_outline=ic_add_ic_call_outline;var ic_add_ic_call_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 17.41c-.88-.07-1.75-.22-2.6-.45l-1.2 1.2c1.21.41 2.48.67 3.8.76v-1.51zM6.54 4.95h-1.5c.09 1.32.34 2.58.75 3.79l1.2-1.21c-.24-.83-.39-1.7-.45-2.58z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 20.95c.55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.4 8.5 5.2 8.5 3.95c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17zm-3.6-3.99c.85.24 1.72.39 2.6.45v1.5c-1.32-.09-2.6-.35-3.8-.76l1.2-1.19zM5.03 4.95h1.5c.07.88.22 1.75.45 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79zm10.97 6h2v-3h3v-2h-3v-3h-2v3h-3v2h3z"},"children":[]}]};exports.ic_add_ic_call_twotone=ic_add_ic_call_twotone;var ic_alternate_email={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10h5v-2h-5c-4.34 0-8-3.66-8-8s3.66-8 8-8 8 3.66 8 8v1.43c0 .79-.71 1.57-1.5 1.57s-1.5-.78-1.5-1.57V12c0-2.76-2.24-5-5-5s-5 2.24-5 5 2.24 5 5 5c1.38 0 2.64-.56 3.54-1.47.65.89 1.77 1.47 2.96 1.47 1.97 0 3.5-1.6 3.5-3.57V12c0-5.52-4.48-10-10-10zm0 13c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z"},"children":[]}]};exports.ic_alternate_email=ic_alternate_email;var ic_alternate_email_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 1.95c-5.52 0-10 4.48-10 10s4.48 10 10 10h5v-2h-5c-4.34 0-8-3.66-8-8s3.66-8 8-8 8 3.66 8 8v1.43c0 .79-.71 1.57-1.5 1.57s-1.5-.78-1.5-1.57v-1.43c0-2.76-2.24-5-5-5s-5 2.24-5 5 2.24 5 5 5c1.38 0 2.64-.56 3.54-1.47.65.89 1.77 1.47 2.96 1.47 1.97 0 3.5-1.6 3.5-3.57v-1.43c0-5.52-4.48-10-10-10zm0 13c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z"},"children":[]}]};exports.ic_alternate_email_outline=ic_alternate_email_outline;var ic_alternate_email_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 21.95h5v-2h-5c-4.34 0-8-3.66-8-8s3.66-8 8-8 8 3.66 8 8v1.43c0 .79-.71 1.57-1.5 1.57s-1.5-.78-1.5-1.57v-1.43c0-2.76-2.24-5-5-5s-5 2.24-5 5 2.24 5 5 5c1.38 0 2.64-.56 3.54-1.47.65.89 1.77 1.47 2.96 1.47 1.97 0 3.5-1.6 3.5-3.57v-1.43c0-5.52-4.48-10-10-10s-10 4.48-10 10 4.48 10 10 10zm0-7c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z","fill-opacity":".9"},"children":[]}]};exports.ic_alternate_email_twotone=ic_alternate_email_twotone;var ic_app_registration={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"height":"4","width":"4","x":"10","y":"4"},"children":[{"name":"rect","attribs":{"height":"4","width":"4","x":"10","y":"4"},"children":[]}]},{"name":"rect","attribs":{"height":"4","width":"4","x":"4","y":"16"},"children":[{"name":"rect","attribs":{"height":"4","width":"4","x":"4","y":"16"},"children":[]}]},{"name":"rect","attribs":{"height":"4","width":"4","x":"4","y":"10"},"children":[{"name":"rect","attribs":{"height":"4","width":"4","x":"4","y":"10"},"children":[]}]},{"name":"rect","attribs":{"height":"4","width":"4","x":"4","y":"4"},"children":[{"name":"rect","attribs":{"height":"4","width":"4","x":"4","y":"4"},"children":[]}]},{"name":"polygon","attribs":{"points":"14,12.42 14,10 10,10 10,14 12.42,14"},"children":[{"name":"polygon","attribs":{"points":"14,12.42 14,10 10,10 10,14 12.42,14"},"children":[]}]},{"name":"path","attribs":{"d":"M20.88,11.29l-1.17-1.17c-0.16-0.16-0.42-0.16-0.58,0L18.25,11L20,12.75l0.88-0.88C21.04,11.71,21.04,11.45,20.88,11.29z"},"children":[{"name":"path","attribs":{"d":"M20.88,11.29l-1.17-1.17c-0.16-0.16-0.42-0.16-0.58,0L18.25,11L20,12.75l0.88-0.88C21.04,11.71,21.04,11.45,20.88,11.29z"},"children":[]}]},{"name":"polygon","attribs":{"points":"11,18.25 11,20 12.75,20 19.42,13.33 17.67,11.58"},"children":[{"name":"polygon","attribs":{"points":"11,18.25 11,20 12.75,20 19.42,13.33 17.67,11.58"},"children":[]}]},{"name":"rect","attribs":{"height":"4","width":"4","x":"16","y":"4"},"children":[{"name":"rect","attribs":{"height":"4","width":"4","x":"16","y":"4"},"children":[]}]}]}]}]}]};exports.ic_app_registration=ic_app_registration;var ic_business={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 7V3H2v18h20V7H12zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4 12H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm10 12h-8v-2h2v-2h-2v-2h2v-2h-2V9h8v10zm-2-8h-2v2h2v-2zm0 4h-2v2h2v-2z"},"children":[]}]};exports.ic_business=ic_business;var ic_business_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 7V3H2v18h20V7H12zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4 12H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm10 12h-8v-2h2v-2h-2v-2h2v-2h-2V9h8v10zm-2-8h-2v2h2v-2zm0 4h-2v2h2v-2z"},"children":[]}]};exports.ic_business_outline=ic_business_outline;var ic_business_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 11h2v2h-2v2h2v2h-2v2h8V9h-8v2zm4 0h2v2h-2v-2zm0 4h2v2h-2v-2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M16 15h2v2h-2zm0-4h2v2h-2zm6-4H12V3H2v18h20V7zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4 12H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm10 12h-8v-2h2v-2h-2v-2h2v-2h-2V9h8v10z"},"children":[]}]};exports.ic_business_twotone=ic_business_twotone;var ic_call={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20.01 15.38c-1.23 0-2.42-.2-3.53-.56-.35-.12-.74-.03-1.01.24l-1.57 1.97c-2.83-1.35-5.48-3.9-6.89-6.83l1.95-1.66c.27-.28.35-.67.24-1.02-.37-1.11-.56-2.3-.56-3.53 0-.54-.45-.99-.99-.99H4.19C3.65 3 3 3.24 3 3.99 3 13.28 10.73 21 20.01 21c.71 0 .99-.63.99-1.18v-3.45c0-.54-.45-.99-.99-.99z"},"children":[]}]};exports.ic_call=ic_call;var ic_call_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6.54 5c.06.89.21 1.76.45 2.59l-1.2 1.2c-.41-1.2-.67-2.47-.76-3.79h1.51m9.86 12.02c.85.24 1.72.39 2.6.45v1.49c-1.32-.09-2.59-.35-3.8-.75l1.2-1.19M7.5 3H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.49c0-.55-.45-1-1-1-1.24 0-2.45-.2-3.57-.57-.1-.04-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2c.28-.28.36-.67.25-1.02C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1z"},"children":[]}]};exports.ic_call_outline=ic_call_outline;var ic_call_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 17.47c-.88-.07-1.75-.22-2.6-.45l-1.19 1.19c1.2.41 2.48.67 3.8.75v-1.49zM6.54 5h-1.5c.09 1.32.35 2.59.75 3.8l1.2-1.2c-.24-.84-.39-1.71-.45-2.6z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 21c.55 0 1-.45 1-1v-3.49c0-.55-.45-1-1-1-1.24 0-2.45-.2-3.57-.57-.1-.04-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2c.28-.28.36-.67.25-1.02C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17zm-3.6-3.98c.85.24 1.72.39 2.6.45v1.49c-1.32-.09-2.59-.35-3.8-.75l1.2-1.19zM5.03 5h1.5c.07.89.22 1.76.46 2.59l-1.2 1.2c-.41-1.2-.67-2.47-.76-3.79z"},"children":[]}]};exports.ic_call_twotone=ic_call_twotone;var ic_call_end={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 9c-1.6 0-3.15.25-4.6.72v3.1c0 .39-.23.74-.56.9-.98.49-1.87 1.12-2.66 1.85-.18.18-.43.28-.7.28-.28 0-.53-.11-.71-.29L.29 13.08c-.18-.17-.29-.42-.29-.7 0-.28.11-.53.29-.71C3.34 8.78 7.46 7 12 7s8.66 1.78 11.71 4.67c.18.18.29.43.29.71 0 .28-.11.53-.29.71l-2.48 2.48c-.18.18-.43.29-.71.29-.27 0-.52-.11-.7-.28-.79-.74-1.69-1.36-2.67-1.85-.33-.16-.56-.5-.56-.9v-3.1C15.15 9.25 13.6 9 12 9z"},"children":[]}]};exports.ic_call_end=ic_call_end;var ic_call_end_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18.59 10.52c1.05.51 2.04 1.15 2.96 1.91l-1.07 1.07c-.58-.47-1.21-.89-1.88-1.27v-1.71m-13.2 0v1.7c-.65.37-1.28.79-1.87 1.27l-1.07-1.07c.91-.75 1.9-1.38 2.94-1.9M12 7C7.46 7 3.34 8.78.29 11.67c-.18.18-.29.43-.29.71s.11.53.29.7l2.48 2.48c.18.18.43.29.71.29.27 0 .52-.1.7-.28.79-.73 1.68-1.36 2.66-1.85.33-.16.56-.51.56-.9v-3.1C8.85 9.25 10.4 9 12 9s3.15.25 4.59.73v3.1c0 .4.23.74.56.9.98.49 1.88 1.11 2.67 1.85.18.17.43.28.7.28.28 0 .53-.11.71-.29l2.48-2.48c.18-.18.29-.43.29-.71s-.11-.53-.29-.71C20.66 8.78 16.54 7 12 7z"},"children":[]}]};exports.ic_call_end_outline=ic_call_end_outline;var ic_call_end_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18.59 12.23c.67.38 1.3.8 1.88 1.27l1.07-1.07c-.92-.75-1.91-1.39-2.96-1.91v1.71zM3.53 13.49c.59-.48 1.22-.9 1.87-1.27v-1.7c-1.04.51-2.03 1.15-2.94 1.9l1.07 1.07z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 7C7.46 7 3.34 8.78.29 11.67c-.18.18-.29.43-.29.71 0 .28.11.53.29.7l2.48 2.48c.18.18.43.29.71.29.27 0 .52-.1.7-.28.79-.73 1.68-1.36 2.66-1.85.33-.16.56-.51.56-.9v-3.1C8.85 9.25 10.4 9 12 9c1.6 0 3.15.25 4.59.73v3.1c0 .4.23.74.56.9.98.49 1.88 1.11 2.67 1.85.18.17.43.28.7.28.28 0 .53-.11.71-.29l2.48-2.48c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71C20.66 8.78 16.54 7 12 7zm-6.6 5.22c-.65.37-1.28.79-1.87 1.27l-1.07-1.07c.91-.75 1.9-1.38 2.94-1.9v1.7zm15.07 1.28c-.58-.47-1.21-.89-1.88-1.27v-1.71c1.05.51 2.04 1.15 2.96 1.91l-1.08 1.07z"},"children":[]}]};exports.ic_call_end_twotone=ic_call_end_twotone;var ic_call_made={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9 5v2h6.59L4 18.59 5.41 20 17 8.41V15h2V5z"},"children":[]}]};exports.ic_call_made=ic_call_made;var ic_call_made_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9 5v2h6.59L4 18.59 5.41 20 17 8.41V15h2V5H9z"},"children":[]}]};exports.ic_call_made_outline=ic_call_made_outline;var ic_call_made_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5.41 20L17 8.41V15h2V5H9v2h6.59L4 18.59z"},"children":[]}]};exports.ic_call_made_twotone=ic_call_made_twotone;var ic_call_merge={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 20.41L18.41 19 15 15.59 13.59 17 17 20.41zM7.5 8H11v5.59L5.59 19 7 20.41l6-6V8h3.5L12 3.5 7.5 8z"},"children":[]}]};exports.ic_call_merge=ic_call_merge;var ic_call_merge_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 20.41L18.41 19 15 15.59 13.59 17 17 20.41zM7.5 8H11v5.59L5.59 19 7 20.41l6-6V8h3.5L12 3.5 7.5 8z"},"children":[]}]};exports.ic_call_merge_outline=ic_call_merge_outline;var ic_call_merge_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16.997 20.41l-3.408-3.407 1.4-1.407 3.41 3.408zM5.59 19L7 20.41l6-6V8h3.5L12 3.5 7.5 8H11v5.59z"},"children":[]}]};exports.ic_call_merge_twotone=ic_call_merge_twotone;var ic_call_missed={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19.59 7L12 14.59 6.41 9H11V7H3v8h2v-4.59l7 7 9-9z"},"children":[]}]};exports.ic_call_missed=ic_call_missed;var ic_call_missed_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19.59 7L12 14.59 6.41 9H11V7H3v8h2v-4.59l7 7 9-9L19.59 7z"},"children":[]}]};exports.ic_call_missed_outline=ic_call_missed_outline;var ic_call_missed_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 10.41l7 7 9-9L19.59 7 12 14.59 6.41 9H11V7H3v8h2z"},"children":[]}]};exports.ic_call_missed_twotone=ic_call_missed_twotone;var ic_call_missed_outgoing={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M3,8.41l9,9l7-7V15h2V7h-8v2h4.59L12,14.59L4.41,7L3,8.41z"},"children":[{"name":"path","attribs":{"d":"M3,8.41l9,9l7-7V15h2V7h-8v2h4.59L12,14.59L4.41,7L3,8.41z"},"children":[]}]}]}]}]}]}]}]};exports.ic_call_missed_outgoing=ic_call_missed_outgoing;var ic_call_missed_outgoing_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 8.41l9 9 7-7V15h2V7h-8v2h4.59L12 14.59 4.41 7 3 8.41z"},"children":[]}]};exports.ic_call_missed_outgoing_outline=ic_call_missed_outgoing_outline;var ic_call_missed_outgoing_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 10.41V15h2V7h-8v2h4.59L12 14.59 4.41 7 3 8.41l9 9z"},"children":[]}]};exports.ic_call_missed_outgoing_twotone=ic_call_missed_outgoing_twotone;var ic_call_received={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 5.41L18.59 4 7 15.59V9H5v10h10v-2H8.41z"},"children":[]}]};exports.ic_call_received=ic_call_received;var ic_call_received_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 5.41L18.59 4 7 15.59V9H5v10h10v-2H8.41L20 5.41z"},"children":[]}]};exports.ic_call_received_outline=ic_call_received_outline;var ic_call_received_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15 17H8.41L20 5.41 18.59 4 7 15.59V9H5v10h10z"},"children":[]}]};exports.ic_call_received_twotone=ic_call_received_twotone;var ic_call_split={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14 4l2.29 2.29-2.88 2.88 1.42 1.42 2.88-2.88L20 10V4zm-4 0H4v6l2.29-2.29 4.71 4.7V20h2v-8.41l-5.29-5.3z"},"children":[]}]};exports.ic_call_split=ic_call_split;var ic_call_split_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14 4l2.29 2.29-2.88 2.88 1.42 1.42 2.88-2.88L20 10V4h-6zm-4 0H4v6l2.29-2.29 4.71 4.7V20h2v-8.41l-5.29-5.3L10 4z"},"children":[]}]};exports.ic_call_split_outline=ic_call_split_outline;var ic_call_split_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 4h-6l2.29 2.29-2.88 2.88 1.42 1.42 2.88-2.88L20 10zM4 4v6l2.29-2.29 4.71 4.7V20h2v-8.41l-5.29-5.3L10 4z"},"children":[]}]};exports.ic_call_split_twotone=ic_call_split_twotone;var ic_cancel_presentation={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 19.1H3V5h18v14.1zM21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"},"children":[]},{"name":"path","attribs":{"d":"M21 19.1H3V5h18v14.1zM21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14.59 8L12 10.59 9.41 8 8 9.41 10.59 12 8 14.59 9.41 16 12 13.41 14.59 16 16 14.59 13.41 12 16 9.41z"},"children":[]}]};exports.ic_cancel_presentation=ic_cancel_presentation;var ic_cancel_presentation_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM9.41 15.95L12 13.36l2.59 2.59L16 14.54l-2.59-2.59L16 9.36l-1.41-1.41L12 10.54 9.41 7.95 8 9.36l2.59 2.59L8 14.54z"},"children":[]}]};exports.ic_cancel_presentation_outline=ic_cancel_presentation_outline;var ic_cancel_presentation_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 19.1h18V4.95H3V19.1zm5-9.74l1.41-1.41L12 10.54l2.59-2.59L16 9.36l-2.59 2.59L16 14.54l-1.41 1.41L12 13.36l-2.59 2.59L8 14.54l2.59-2.59L8 9.36z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM9.41 15.95L12 13.36l2.59 2.59L16 14.54l-2.59-2.59L16 9.36l-1.41-1.41L12 10.54 9.41 7.95 8 9.36l2.59 2.59L8 14.54z"},"children":[]}]};exports.ic_cancel_presentation_twotone=ic_cancel_presentation_twotone;var ic_cell_wifi={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M18,9.98L6,22h12h4V5.97L18,9.98z M20,20h-2v-7.22l2-2V20z M5.22,7.22L3.93,5.93c3.9-3.91,10.24-3.91,14.15,0l-1.29,1.29 C13.6,4.03,8.41,4.03,5.22,7.22z M12.93,11.07L11,13l-1.93-1.93C10.14,10.01,11.86,10.01,12.93,11.07z M14.22,9.79 c-1.78-1.77-4.66-1.77-6.43,0L6.5,8.5c2.48-2.48,6.52-2.48,9,0L14.22,9.79z"},"children":[]}]};exports.ic_cell_wifi=ic_cell_wifi;var ic_cell_wifi_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 5.97l-4 4.01v2.8l2-2V20h-2v2h4z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M9.07 11.07L11 13l1.93-1.93c-1.07-1.06-2.79-1.06-3.86 0zm9.01-5.14c-3.91-3.91-10.25-3.91-14.15 0l1.29 1.29c3.19-3.19 8.38-3.19 11.57 0l1.29-1.29zM15.5 8.5c-2.48-2.48-6.52-2.48-9 0l1.29 1.29c1.77-1.77 4.65-1.77 6.43 0L15.5 8.5zm2.5 4.28v-2.8L6 22h12v-2.05z"},"children":[]}]};exports.ic_cell_wifi_twotone=ic_cell_wifi_twotone;var ic_chat={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM6 9h12v2H6V9zm8 5H6v-2h8v2zm4-6H6V6h12v2z"},"children":[]}]};exports.ic_chat=ic_chat;var ic_chat_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 4h16v12H5.17L4 17.17V4m0-2c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H4zm2 10h8v2H6v-2zm0-3h12v2H6V9zm0-3h12v2H6V6z"},"children":[]}]};exports.ic_chat_outline=ic_chat_outline;var ic_chat_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 4H4v13.17L5.17 16H20V4zm-6 10H6v-2h8v2zm4-3H6V9h12v2zm0-3H6V6h12v2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 18c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14zm-16-.83V4h16v12H5.17L4 17.17zM6 12h8v2H6zm0-3h12v2H6zm0-3h12v2H6z"},"children":[]}]};exports.ic_chat_twotone=ic_chat_twotone;var ic_chat_bubble={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2z"},"children":[]}]};exports.ic_chat_bubble=ic_chat_bubble;var ic_chat_bubble_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2z"},"children":[]}]};exports.ic_chat_bubble_outline=ic_chat_bubble_outline;var ic_chat_bubble_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 18l2-2h14V4H4z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H6l-2 2V4h16v12z"},"children":[]}]};exports.ic_chat_bubble_twotone=ic_chat_bubble_twotone;var ic_chat_bubble_outline_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H6l-2 2V4h16v12z"},"children":[]}]};exports.ic_chat_bubble_outline_outline=ic_chat_bubble_outline_outline;var ic_chat_bubble_outline_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H6l-2 2V4h16v12z"},"children":[]}]};exports.ic_chat_bubble_outline_twotone=ic_chat_bubble_outline_twotone;var ic_clear_all={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 13h14v-2H5v2zm-2 4h14v-2H3v2zM7 7v2h14V7H7z"},"children":[]}]};exports.ic_clear_all=ic_clear_all;var ic_clear_all_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 13h14v-2H5v2zm-2 4h14v-2H3v2zM7 7v2h14V7H7z"},"children":[]}]};exports.ic_clear_all_outline=ic_clear_all_outline;var ic_clear_all_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 11h14v2H5zm-2 4h14v2H3zm4-8h14v2H7z"},"children":[]}]};exports.ic_clear_all_twotone=ic_clear_all_twotone;var ic_comment={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21.99 4c0-1.1-.89-2-1.99-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4-.01-18zM18 14H6v-2h12v2zm0-3H6V9h12v2zm0-3H6V6h12v2z"},"children":[]}]};exports.ic_comment=ic_comment;var ic_comment_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21.99 4c0-1.1-.89-2-1.99-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4-.01-18zM20 4v13.17L18.83 16H4V4h16zM6 12h12v2H6zm0-3h12v2H6zm0-3h12v2H6z"},"children":[]}]};exports.ic_comment_outline=ic_comment_outline;var ic_comment_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 17.17V4H4v12h14.83L20 17.17zM18 14H6v-2h12v2zm0-3H6V9h12v2zm0-3H6V6h12v2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M4 18h14l4 4-.01-18c0-1.1-.89-2-1.99-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2zM4 4h16v13.17L18.83 16H4V4zm2 8h12v2H6zm0-3h12v2H6zm0-3h12v2H6z"},"children":[]}]};exports.ic_comment_twotone=ic_comment_twotone;var ic_contact_mail={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 8V7l-3 2-3-2v1l3 2 3-2zm1-5H2C.9 3 0 3.9 0 5v14c0 1.1.9 2 2 2h20c1.1 0 1.99-.9 1.99-2L24 5c0-1.1-.9-2-2-2zM8 6c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm6 12H2v-1c0-2 4-3.1 6-3.1s6 1.1 6 3.1v1zm8-6h-8V6h8v6z"},"children":[]}]};exports.ic_contact_mail=ic_contact_mail;var ic_contact_mail_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 3H2C.9 3 0 3.9 0 5v14c0 1.1.9 2 2 2h20c1.1 0 1.99-.9 1.99-2L24 5c0-1.1-.9-2-2-2zm0 16H2V5h20v14zM21 6h-7v5h7V6zm-1 2l-2.5 1.75L15 8V7l2.5 1.75L20 7v1zM9 12c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm6 8.59c0-2.5-3.97-3.58-6-3.58s-6 1.08-6 3.58V18h12v-1.41zM5.48 16c.74-.5 2.22-1 3.52-1s2.77.49 3.52 1H5.48z"},"children":[]}]};exports.ic_contact_mail_outline=ic_contact_mail_outline;var ic_contact_mail_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M2 19h20V5H2v14zM14 6h7v5h-7V6zM9 6c1.65 0 3 1.35 3 3s-1.35 3-3 3-3-1.35-3-3 1.35-3 3-3zM3 16.59C3 14.08 6.97 13 9 13s6 1.08 6 3.58V18H3v-1.41z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M22 3H2C.9 3 0 3.9 0 5v14c0 1.1.9 2 2 2h20c1.1 0 1.99-.9 1.99-2L24 5c0-1.1-.9-2-2-2zm0 16H2V5h20v14zM21 6h-7v5h7V6zm-1 2l-2.5 1.75L15 8V7l2.5 1.75L20 7v1zM9 12c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm6 8.59c0-2.5-3.97-3.58-6-3.58s-6 1.08-6 3.58V18h12v-1.41zM5.48 16c.74-.5 2.22-1 3.52-1s2.77.49 3.52 1H5.48z"},"children":[]}]};exports.ic_contact_mail_twotone=ic_contact_mail_twotone;var ic_contact_phone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 3H2C.9 3 0 3.9 0 5v14c0 1.1.9 2 2 2h20c1.1 0 1.99-.9 1.99-2L24 5c0-1.1-.9-2-2-2zM8 6c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm6 12H2v-1c0-2 4-3.1 6-3.1s6 1.1 6 3.1v1zm3.85-4h1.64L21 16l-1.99 1.99c-1.31-.98-2.28-2.38-2.73-3.99-.18-.64-.28-1.31-.28-2s.1-1.36.28-2c.45-1.62 1.42-3.01 2.73-3.99L21 8l-1.51 2h-1.64c-.22.63-.35 1.3-.35 2s.13 1.37.35 2z"},"children":[]}]};exports.ic_contact_phone=ic_contact_phone;var ic_contact_phone_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 3H2C.9 3 0 3.9 0 5v14c0 1.1.9 2 2 2h20c1.1 0 1.99-.9 1.99-2L24 5c0-1.1-.9-2-2-2zm0 16H2V5h20v14zm-2.99-1.01L21 16l-1.51-2h-1.64c-.22-.63-.35-1.3-.35-2s.13-1.37.35-2h1.64L21 8l-1.99-1.99c-1.31.98-2.28 2.37-2.73 3.99-.18.64-.28 1.31-.28 2s.1 1.36.28 2c.45 1.61 1.42 3.01 2.73 3.99zM9 12c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm6 8.59c0-2.5-3.97-3.58-6-3.58s-6 1.08-6 3.58V18h12v-1.41zM5.48 16c.74-.5 2.22-1 3.52-1s2.77.49 3.52 1H5.48z"},"children":[]}]};exports.ic_contact_phone_outline=ic_contact_phone_outline;var ic_contact_phone_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 5H2v14h20V5zM9 6c1.65 0 3 1.35 3 3s-1.35 3-3 3-3-1.35-3-3 1.35-3 3-3zm6 12H3v-1.41C3 14.08 6.97 13 9 13s6 1.08 6 3.58V18zm2.85-4h1.64L21 16l-1.99 1.99c-1.31-.98-2.28-2.38-2.73-3.99-.18-.64-.28-1.31-.28-2s.1-1.36.28-2c.45-1.62 1.42-3.01 2.73-3.99L21 8l-1.51 2h-1.64c-.22.63-.35 1.3-.35 2s.13 1.37.35 2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M2 21h20c1.1 0 1.99-.9 1.99-2L24 5c0-1.1-.9-2-2-2H2C.9 3 0 3.9 0 5v14c0 1.1.9 2 2 2zM2 5h20v14H2V5zm17.49 5L21 8l-1.99-1.99c-1.31.98-2.28 2.37-2.73 3.99-.18.64-.28 1.31-.28 2s.1 1.36.28 2c.45 1.61 1.42 3.01 2.73 3.99L21 16l-1.51-2h-1.64c-.22-.63-.35-1.3-.35-2s.13-1.37.35-2h1.64zM9 12c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm0 5c-2.03 0-6 1.08-6 3.58V18h12v-1.41C15 14.08 11.03 13 9 13zm-3.52 3c.74-.5 2.22-1 3.52-1s2.77.49 3.52 1H5.48z"},"children":[]}]};exports.ic_contact_phone_twotone=ic_contact_phone_twotone;var ic_contacts={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0zm0 0h24v24H0zm0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 0H4v2h16V0zM4 24h16v-2H4v2zM20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-8 2.75c1.24 0 2.25 1.01 2.25 2.25s-1.01 2.25-2.25 2.25S9.75 10.24 9.75 9 10.76 6.75 12 6.75zM17 17H7v-1.5c0-1.67 3.33-2.5 5-2.5s5 .83 5 2.5V17z"},"children":[]}]};exports.ic_contacts=ic_contacts;var ic_contacts_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h16v12zM4 0h16v2H4zm0 22h16v2H4zm8-10c1.38 0 2.5-1.12 2.5-2.5S13.38 7 12 7 9.5 8.12 9.5 9.5 10.62 12 12 12zm0-3.5c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm5 7.49C17 13.9 13.69 13 12 13s-5 .9-5 2.99V17h10v-1.01zm-8.19-.49c.61-.52 2.03-1 3.19-1 1.17 0 2.59.48 3.2 1H8.81z"},"children":[]}]};exports.ic_contacts_outline=ic_contacts_outline;var ic_contacts_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 6H4v12h16V6zm-8 1c1.38 0 2.5 1.12 2.5 2.5S13.38 12 12 12s-2.5-1.12-2.5-2.5S10.62 7 12 7zm5 10H7v-1.01C7 13.9 10.31 13 12 13s5 .9 5 2.99V17z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M4 20h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2zM4 6h16v12H4V6zm0-6h16v2H4zm0 22h16v2H4zm8-10c1.38 0 2.5-1.12 2.5-2.5S13.38 7 12 7 9.5 8.12 9.5 9.5 10.62 12 12 12zm0-3.5c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm0 4.5c-1.69 0-5 .9-5 2.99V17h10v-1.01C17 13.9 13.69 13 12 13zm-3.19 2.5c.61-.52 2.03-1 3.19-1 1.17 0 2.59.48 3.2 1H8.81z"},"children":[]}]};exports.ic_contacts_twotone=ic_contacts_twotone;var ic_desktop_access_disabled={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M23 16c0 1.1-.9 2-2 2h-1l-2-2h3V4H6L4 2h17c1.1 0 2 .9 2 2v12zm-5.5 2l-2-2zm-2.6 0l6 6 1.3-1.3-4.7-4.7-2-2L1.2 1.8 0 3.1l1 1V16c0 1.1.9 2 2 2h7v2H8v2h8v-2h-2v-2h.9zM3 16V6.1l9.9 9.9H3z"},"children":[]}]};exports.ic_desktop_access_disabled=ic_desktop_access_disabled;var ic_desktop_access_disabled_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M1.41 1.69L0 3.1l1 .99V16c0 1.1.89 2 1.99 2H10v2H8v2h8v-2h-2v-2h.9l6 6 1.41-1.41-20.9-20.9zM2.99 16V6.09L12.9 16H2.99zM4.55 2l2 2H21v12h-2.45l2 2h.44c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H4.55z"},"children":[]}]};exports.ic_desktop_access_disabled_outline=ic_desktop_access_disabled_outline;var ic_desktop_access_disabled_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M1.41 1.69L0 3.1l1 .99V16c0 1.1.89 2 1.99 2H10v2H8v2h8v-2h-2v-2h.9l6 6 1.41-1.41-20.9-20.9zM2.99 16V6.09L12.9 16H2.99zM4.55 2l2 2H21v12h-2.45l2 2h.44c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H4.55z"},"children":[]},{"name":"path","attribs":{"d":"M2.99 6.09V16h9.91zM6.55 4l12 12H21V4z","opacity":".3"},"children":[]}]};exports.ic_desktop_access_disabled_twotone=ic_desktop_access_disabled_twotone;var ic_dialer_sip={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 3h-1v5h1V3zm-2 2h-2V4h2V3h-3v3h2v1h-2v1h3V5zm3-2v5h1V6h2V3h-3zm2 2h-1V4h1v1zm0 10.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.01.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.27-.26.35-.65.24-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1z"},"children":[]}]};exports.ic_dialer_sip=ic_dialer_sip;var ic_dialer_sip_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16 3h1v5h-1zm-1 2h-2V4h2V3h-3v3h2v1h-2v1h3zm3-2v5h1V6h2V3h-3zm2 2h-1V4h1v1zm0 10.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.7.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.27-.26.35-.65.24-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.46 2.59L5.79 8.8c-.41-1.21-.67-2.48-.76-3.8zM19 18.97c-1.32-.09-2.59-.35-3.8-.75l1.2-1.2c.85.24 1.71.39 2.59.45v1.5z"},"children":[]}]};exports.ic_dialer_sip_outline=ic_dialer_sip_outline;var ic_dialer_sip_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.2 18.21c1.2.41 2.48.67 3.8.75v-1.5c-.88-.06-1.75-.22-2.59-.45l-1.21 1.2zM6.54 5h-1.5c.09 1.32.35 2.59.75 3.79l1.2-1.21c-.24-.83-.39-1.7-.45-2.58z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M16 3h1v5h-1zm-4 4v1h3V5h-2V4h2V3h-3v3h2v1zm9-4h-3v5h1V6h2V3zm-1 2h-1V4h1v1zm1 11.5c0-.55-.45-1-1-1-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.7.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.27-.26.35-.65.24-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5zM5.03 5h1.5c.07.88.22 1.75.46 2.59L5.79 8.8c-.41-1.21-.67-2.48-.76-3.8zM19 18.97c-1.32-.09-2.59-.35-3.8-.75l1.2-1.2c.85.24 1.71.39 2.59.45v1.5z"},"children":[]}]};exports.ic_dialer_sip_twotone=ic_dialer_sip_twotone;var ic_dialpad={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 19c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM6 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12-8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-6 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"},"children":[]}]};exports.ic_dialpad=ic_dialpad;var ic_dialpad_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 19c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM6 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12-8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-6 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"},"children":[]}]};exports.ic_dialpad_outline=ic_dialpad_outline;var ic_dialpad_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 7c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm2 8c0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2 2-.9 2-2zm-8 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM6 5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm12-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM6 17c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0-6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm6 6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0-6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0-6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z"},"children":[]}]};exports.ic_dialpad_twotone=ic_dialpad_twotone;var ic_domain_disabled={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0zm0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8 5h2v2h-.9L12 9.9V9h8v8.9l2 2V7H12V3H5.1L8 5.9zm8 6h2v2h-2zM1.3 1.8L.1 3.1 2 5v16h16l3 3 1.3-1.3-21-20.9zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm4 8H8v-2h2v2zm0-4H8v-2h2v2zm2 4v-2h2l2 2h-4z"},"children":[]}]};exports.ic_domain_disabled=ic_domain_disabled;var ic_domain_disabled_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M1.41 1.69L0 3.1l2 2V21h15.9l3 3 1.41-1.41-20.9-20.9zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm-2-4V9h2v2H4zm6 8H8v-2h2v2zm-2-4v-2h2v2H8zm4 4v-2h1.9l2 2H12zM8 5h2v2h-.45L12 9.45V9h8v8.45l2 2V7H12V3H5.55L8 5.45zm8 6h2v2h-2z"},"children":[]}]};exports.ic_domain_disabled_outline=ic_domain_disabled_outline;var ic_domain_disabled_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M1.41 1.69L0 3.1l2 2V21h15.9l3 3 1.41-1.41-20.9-20.9zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm-2-4V9h2v2H4zm6 8H8v-2h2v2zm-2-4v-2h2v2H8zm4 4v-2h1.9l2 2H12zM8 5h2v2h-.45L12 9.45V9h8v8.45l2 2V7H12V3H5.55L8 5.45zm8 6h2v2h-2z"},"children":[]},{"name":"path","attribs":{"d":"M12 9v.45l8 8V9h-8zm6 4h-2v-2h2v2z","opacity":".3"},"children":[]}]};exports.ic_domain_disabled_twotone=ic_domain_disabled_twotone;var ic_domain_verification={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"16.6,10.88 15.18,9.46 10.94,13.71 8.82,11.58 7.4,13 10.94,16.54"},"children":[{"name":"polygon","attribs":{"points":"16.6,10.88 15.18,9.46 10.94,13.71 8.82,11.58 7.4,13 10.94,16.54"},"children":[]}]},{"name":"path","attribs":{"d":"M19,4H5C3.89,4,3,4.9,3,6v12c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2V6C21,4.9,20.11,4,19,4z M19,18H5V8h14V18z"},"children":[{"name":"path","attribs":{"d":"M19,4H5C3.89,4,3,4.9,3,6v12c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2V6C21,4.9,20.11,4,19,4z M19,18H5V8h14V18z"},"children":[]}]}]}]}]}]};exports.ic_domain_verification=ic_domain_verification;var ic_domain_verification_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"16.6,10.88 15.18,9.46 10.94,13.71 8.82,11.58 7.4,13 10.94,16.54"},"children":[{"name":"polygon","attribs":{"points":"16.6,10.88 15.18,9.46 10.94,13.71 8.82,11.58 7.4,13 10.94,16.54"},"children":[]}]},{"name":"path","attribs":{"d":"M19,4H5C3.89,4,3,4.9,3,6v12c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2V6C21,4.9,20.11,4,19,4z M19,18H5V8h14V18z"},"children":[{"name":"path","attribs":{"d":"M19,4H5C3.89,4,3,4.9,3,6v12c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2V6C21,4.9,20.11,4,19,4z M19,18H5V8h14V18z"},"children":[]}]}]}]}]}]};exports.ic_domain_verification_outline=ic_domain_verification_outline;var ic_domain_verification_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M5,18h14V8H5V18z M8.82,11.58l2.12,2.12l4.24-4.24l1.41,1.41l-5.66,5.66L7.4,13L8.82,11.58z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M5,18h14V8H5V18z M8.82,11.58l2.12,2.12l4.24-4.24l1.41,1.41l-5.66,5.66L7.4,13L8.82,11.58z","opacity":".3"},"children":[]}]},{"name":"polygon","attribs":{"points":"16.6,10.88 15.18,9.46 10.94,13.71 8.82,11.58 7.4,13 10.94,16.54"},"children":[{"name":"polygon","attribs":{"points":"16.6,10.88 15.18,9.46 10.94,13.71 8.82,11.58 7.4,13 10.94,16.54"},"children":[]}]},{"name":"path","attribs":{"d":"M19,4H5C3.89,4,3,4.9,3,6v12c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2V6C21,4.9,20.11,4,19,4z M19,18H5V8h14V18z"},"children":[{"name":"path","attribs":{"d":"M19,4H5C3.89,4,3,4.9,3,6v12c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2V6C21,4.9,20.11,4,19,4z M19,18H5V8h14V18z"},"children":[]}]}]}]}]}]};exports.ic_domain_verification_twotone=ic_domain_verification_twotone;var ic_duo={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 2h-8C6.38 2 2 6.66 2 12.28 2 17.5 6.49 22 11.72 22 17.39 22 22 17.62 22 12V4c0-1.1-.9-2-2-2zm-3 13l-3-2v2H7V9h7v2l3-2v6z"},"children":[]}]};exports.ic_duo=ic_duo;var ic_duo_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 2h-8C6.38 2 2 6.66 2 12.28 2 17.5 6.49 22 11.72 22 17.39 22 22 17.62 22 12V4c0-1.1-.9-2-2-2zm-3 13l-3-2v2H7V9h7v2l3-2v6z"},"children":[]}]};exports.ic_duo_outline=ic_duo_outline;var ic_duo_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 2h-8C6.38 2 2 6.66 2 12.28 2 17.5 6.49 22 11.72 22 17.39 22 22 17.62 22 12V4c0-1.1-.9-2-2-2zm-3 13l-3-2v2H7V9h7v2l3-2v6z"},"children":[]}]};exports.ic_duo_twotone=ic_duo_twotone;var ic_email={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z"},"children":[]}]};exports.ic_email=ic_email;var ic_email_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6zm-2 0l-8 5-8-5h16zm0 12H4V8l8 5 8-5v10z"},"children":[]}]};exports.ic_email_outline=ic_email_outline;var ic_email_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 8l-8 5-8-5v10h16zm0-2H4l8 4.99z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M4 20h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2zM20 6l-8 4.99L4 6h16zM4 8l8 5 8-5v10H4V8z"},"children":[]}]};exports.ic_email_twotone=ic_email_twotone;var ic_forum={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 6h-2v9H6v2c0 .55.45 1 1 1h11l4 4V7c0-.55-.45-1-1-1zm-4 6V3c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v14l4-4h10c.55 0 1-.45 1-1z"},"children":[]}]};exports.ic_forum=ic_forum;var ic_forum_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15 4v7H5.17L4 12.17V4h11m1-2H3c-.55 0-1 .45-1 1v14l4-4h10c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm5 4h-2v9H6v2c0 .55.45 1 1 1h11l4 4V7c0-.55-.45-1-1-1z"},"children":[]}]};exports.ic_forum_outline=ic_forum_outline;var ic_forum_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15 11V4H4v8.17L5.17 11H6z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M16 13c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v14l4-4h10zm-12-.83V4h11v7H5.17L4 12.17zM22 7c0-.55-.45-1-1-1h-2v9H6v2c0 .55.45 1 1 1h11l4 4V7z"},"children":[]}]};exports.ic_forum_twotone=ic_forum_twotone;var ic_forward_to_inbox={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h9v-2H4V8l8,5l8-5v5h2V6C22,4.9,21.1,4,20,4z M12,11L4,6h16L12,11z M19,15l4,4 l-4,4v-3h-4v-2h4V15z"},"children":[{"name":"path","attribs":{"d":"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h9v-2H4V8l8,5l8-5v5h2V6C22,4.9,21.1,4,20,4z M12,11L4,6h16L12,11z M19,15l4,4 l-4,4v-3h-4v-2h4V15z"},"children":[]}]}]}]};exports.ic_forward_to_inbox=ic_forward_to_inbox;var ic_forward_to_inbox_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h9v-2H4V8l8,5l8-5v5h2V6C22,4.9,21.1,4,20,4z M12,11L4,6h16L12,11z M19,15l4,4 l-4,4v-3h-4v-2h4V15z"},"children":[{"name":"path","attribs":{"d":"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h9v-2H4V8l8,5l8-5v5h2V6C22,4.9,21.1,4,20,4z M12,11L4,6h16L12,11z M19,15l4,4 l-4,4v-3h-4v-2h4V15z"},"children":[]}]}]}]};exports.ic_forward_to_inbox_outline=ic_forward_to_inbox_outline;var ic_forward_to_inbox_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M13,18H4V8l8,5l8-5v5l-2,0C15.24,13,13,15.24,13,18L13,18z M12,11L4,6h16L12,11z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M13,18H4V8l8,5l8-5v5l-2,0C15.24,13,13,15.24,13,18L13,18z M12,11L4,6h16L12,11z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h9v-2H4V8l8,5l8-5v5h2V6C22,4.9,21.1,4,20,4z M12,11L4,6h16L12,11z M19,15l4,4 l-4,4v-3h-4v-2h4V15z"},"children":[{"name":"path","attribs":{"d":"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h9v-2H4V8l8,5l8-5v5h2V6C22,4.9,21.1,4,20,4z M12,11L4,6h16L12,11z M19,15l4,4 l-4,4v-3h-4v-2h4V15z"},"children":[]}]}]}]};exports.ic_forward_to_inbox_twotone=ic_forward_to_inbox_twotone;var ic_hourglass_bottom={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M18,22l-0.01-6L14,12l3.99-4.01L18,2H6v6l4,4l-4,3.99V22H18z M8,7.5V4h8v3.5l-4,4L8,7.5z"},"children":[{"name":"path","attribs":{"d":"M18,22l-0.01-6L14,12l3.99-4.01L18,2H6v6l4,4l-4,3.99V22H18z M8,7.5V4h8v3.5l-4,4L8,7.5z"},"children":[]}]}]}]};exports.ic_hourglass_bottom=ic_hourglass_bottom;var ic_hourglass_bottom_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M18,22l-0.01-6L14,12l3.99-4.01L18,2H6v6l4,4l-4,3.99V22H18z M8,7.5V4h8v3.5l-4,4L8,7.5z"},"children":[{"name":"path","attribs":{"d":"M18,22l-0.01-6L14,12l3.99-4.01L18,2H6v6l4,4l-4,3.99V22H18z M8,7.5V4h8v3.5l-4,4L8,7.5z"},"children":[]}]}]}]};exports.ic_hourglass_bottom_outline=ic_hourglass_bottom_outline;var ic_hourglass_bottom_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"opacity":".3","points":"16,16.5 12,12.5 8,16.5 8,20 16,20"},"children":[{"name":"polygon","attribs":{"opacity":".3","points":"16,16.5 12,12.5 8,16.5 8,20 16,20"},"children":[]}]},{"name":"polygon","attribs":{"opacity":".3","points":"16,16.5 12,12.5 8,16.5 8,20 16,20"},"children":[{"name":"polygon","attribs":{"opacity":".3","points":"16,16.5 12,12.5 8,16.5 8,20 16,20"},"children":[]}]},{"name":"path","attribs":{"d":"M6,22h12v-6l-4-4l3.99-4.01L18,2H6l0.01,5.99L10,12l-4,3.99V22z M8,7.5V4h8v3.5l-4,4L8,7.5z M8,16.5l4-4l4,4V20H8V16.5z"},"children":[{"name":"path","attribs":{"d":"M6,22h12v-6l-4-4l3.99-4.01L18,2H6l0.01,5.99L10,12l-4,3.99V22z M8,7.5V4h8v3.5l-4,4L8,7.5z M8,16.5l4-4l4,4V20H8V16.5z"},"children":[]}]}]}]}]}]};exports.ic_hourglass_bottom_twotone=ic_hourglass_bottom_twotone;var ic_hourglass_top={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M6,2l0.01,6L10,12l-3.99,4.01L6,22h12v-6l-4-4l4-3.99V2H6z M16,16.5V20H8v-3.5l4-4L16,16.5z"},"children":[{"name":"path","attribs":{"d":"M6,2l0.01,6L10,12l-3.99,4.01L6,22h12v-6l-4-4l4-3.99V2H6z M16,16.5V20H8v-3.5l4-4L16,16.5z"},"children":[]}]}]}]};exports.ic_hourglass_top=ic_hourglass_top;var ic_hourglass_top_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M6,2l0.01,6L10,12l-3.99,4.01L6,22h12v-6l-4-4l4-3.99V2H6z M16,16.5V20H8v-3.5l4-4L16,16.5z"},"children":[{"name":"path","attribs":{"d":"M6,2l0.01,6L10,12l-3.99,4.01L6,22h12v-6l-4-4l4-3.99V2H6z M16,16.5V20H8v-3.5l4-4L16,16.5z"},"children":[]}]}]}]};exports.ic_hourglass_top_outline=ic_hourglass_top_outline;var ic_hourglass_top_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"opacity":".3","points":"8,7.5 12,11.5 16,7.5 16,4 8,4"},"children":[{"name":"polygon","attribs":{"opacity":".3","points":"8,7.5 12,11.5 16,7.5 16,4 8,4"},"children":[]}]},{"name":"polygon","attribs":{"opacity":".3","points":"8,7.5 12,11.5 16,7.5 16,4 8,4"},"children":[{"name":"polygon","attribs":{"opacity":".3","points":"8,7.5 12,11.5 16,7.5 16,4 8,4"},"children":[]}]},{"name":"path","attribs":{"d":"M18,2H6v6l4,4l-3.99,4.01L6,22h12l-0.01-5.99L14,12l4-3.99V2z M16,16.5V20H8v-3.5l4-4L16,16.5z M16,7.5l-4,4l-4-4V4h8V7.5 z"},"children":[{"name":"path","attribs":{"d":"M18,2H6v6l4,4l-3.99,4.01L6,22h12l-0.01-5.99L14,12l4-3.99V2z M16,16.5V20H8v-3.5l4-4L16,16.5z M16,7.5l-4,4l-4-4V4h8V7.5 z"},"children":[]}]}]}]}]}]};exports.ic_hourglass_top_twotone=ic_hourglass_top_twotone;var ic_import_contacts={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M17.5,4.5c-1.95,0-4.05,0.4-5.5,1.5c-1.45-1.1-3.55-1.5-5.5-1.5S2.45,4.9,1,6v14.65c0,0.65,0.73,0.45,0.75,0.45 C3.1,20.45,5.05,20,6.5,20c1.95,0,4.05,0.4,5.5,1.5c1.35-0.85,3.8-1.5,5.5-1.5c1.65,0,3.35,0.3,4.75,1.05 C22.66,21.26,23,20.86,23,20.6V6C21.51,4.88,19.37,4.5,17.5,4.5z M21,18.5c-1.1-0.35-2.3-0.5-3.5-0.5c-1.7,0-4.15,0.65-5.5,1.5V8 c1.35-0.85,3.8-1.5,5.5-1.5c1.2,0,2.4,0.15,3.5,0.5V18.5z"},"children":[{"name":"path","attribs":{"d":"M17.5,4.5c-1.95,0-4.05,0.4-5.5,1.5c-1.45-1.1-3.55-1.5-5.5-1.5S2.45,4.9,1,6v14.65c0,0.65,0.73,0.45,0.75,0.45 C3.1,20.45,5.05,20,6.5,20c1.95,0,4.05,0.4,5.5,1.5c1.35-0.85,3.8-1.5,5.5-1.5c1.65,0,3.35,0.3,4.75,1.05 C22.66,21.26,23,20.86,23,20.6V6C21.51,4.88,19.37,4.5,17.5,4.5z M21,18.5c-1.1-0.35-2.3-0.5-3.5-0.5c-1.7,0-4.15,0.65-5.5,1.5V8 c1.35-0.85,3.8-1.5,5.5-1.5c1.2,0,2.4,0.15,3.5,0.5V18.5z"},"children":[]}]}]}]}]}]}]}]};exports.ic_import_contacts=ic_import_contacts;var ic_import_contacts_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 5c-1.11-.35-2.33-.5-3.5-.5-1.95 0-4.05.4-5.5 1.5-1.45-1.1-3.55-1.5-5.5-1.5S2.45 4.9 1 6v14.65c0 .25.25.5.5.5.1 0 .15-.05.25-.05C3.1 20.45 5.05 20 6.5 20c1.95 0 4.05.4 5.5 1.5 1.35-.85 3.8-1.5 5.5-1.5 1.65 0 3.35.3 4.75 1.05.1.05.15.05.25.05.25 0 .5-.25.5-.5V6c-.6-.45-1.25-.75-2-1zm0 13.5c-1.1-.35-2.3-.5-3.5-.5-1.7 0-4.15.65-5.5 1.5V8c1.35-.85 3.8-1.5 5.5-1.5 1.2 0 2.4.15 3.5.5v11.5z"},"children":[]}]};exports.ic_import_contacts_outline=ic_import_contacts_outline;var ic_import_contacts_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 5c-1.11-.35-2.33-.5-3.5-.5-1.95 0-4.05.4-5.5 1.5-1.45-1.1-3.55-1.5-5.5-1.5S2.45 4.9 1 6v14.65c0 .25.25.5.5.5.1 0 .15-.05.25-.05C3.1 20.45 5.05 20 6.5 20c1.95 0 4.05.4 5.5 1.5 1.35-.85 3.8-1.5 5.5-1.5 1.65 0 3.35.3 4.75 1.05.1.05.15.05.25.05.25 0 .5-.25.5-.5V6c-.6-.45-1.25-.75-2-1zM3 18.5V7c1.1-.35 2.3-.5 3.5-.5 1.34 0 3.13.41 4.5.99v11.5C9.63 18.41 7.84 18 6.5 18c-1.2 0-2.4.15-3.5.5zm18 0c-1.1-.35-2.3-.5-3.5-.5-1.34 0-3.13.41-4.5.99V7.49c1.37-.59 3.16-.99 4.5-.99 1.2 0 2.4.15 3.5.5v11.5z"},"children":[]},{"name":"path","attribs":{"d":"M11 7.49c-1.37-.58-3.16-.99-4.5-.99-1.2 0-2.4.15-3.5.5v11.5c1.1-.35 2.3-.5 3.5-.5 1.34 0 3.13.41 4.5.99V7.49z","opacity":".3"},"children":[]}]};exports.ic_import_contacts_twotone=ic_import_contacts_twotone;var ic_import_export={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9 3L5 6.99h3V14h2V6.99h3L9 3zm7 14.01V10h-2v7.01h-3L15 21l4-3.99h-3z"},"children":[]}]};exports.ic_import_export=ic_import_export;var ic_import_export_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9 3L5 6.99h3V14h2V6.99h3L9 3zm7 14.01V10h-2v7.01h-3L15 21l4-3.99h-3z"},"children":[]}]};exports.ic_import_export_outline=ic_import_export_outline;var ic_import_export_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 6.99h3V14h2V6.99h3L9 3zM14 10v7.01h-3L15 21l4-3.99h-3V10z"},"children":[]}]};exports.ic_import_export_twotone=ic_import_export_twotone;var ic_invert_colors_off={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0zm0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20.65 20.87l-2.35-2.35-6.3-6.29-3.56-3.57-1.42-1.41L4.27 4.5 3 5.77l2.78 2.78c-2.55 3.14-2.36 7.76.56 10.69C7.9 20.8 9.95 21.58 12 21.58c1.79 0 3.57-.59 5.03-1.78l2.7 2.7L21 21.23l-.35-.36zM12 19.59c-1.6 0-3.11-.62-4.24-1.76C6.62 16.69 6 15.19 6 13.59c0-1.32.43-2.57 1.21-3.6L12 14.77v4.82zM12 5.1v4.58l7.25 7.26c1.37-2.96.84-6.57-1.6-9.01L12 2.27l-3.7 3.7 1.41 1.41L12 5.1z"},"children":[]}]};exports.ic_invert_colors_off=ic_invert_colors_off;var ic_invert_colors_off_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 5.1v4.05l7.4 7.4c1.15-2.88.59-6.28-1.75-8.61L12 2.27 8.56 5.71l1.41 1.41L12 5.1zm-7.6-.73L2.99 5.78l2.78 2.78c-2.54 3.14-2.35 7.75.57 10.68C7.9 20.8 9.95 21.58 12 21.58c1.78 0 3.56-.59 5.02-1.77l2.7 2.7 1.41-1.41L4.4 4.37zM12 19.59c-1.6 0-3.11-.62-4.24-1.76C6.62 16.69 6 15.19 6 13.59c0-1.32.43-2.56 1.21-3.59L12 14.79v4.8z"},"children":[]}]};exports.ic_invert_colors_off_outline=ic_invert_colors_off_outline;var ic_invert_colors_off_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6 13.59c0 1.6.62 3.1 1.76 4.24 1.13 1.14 2.64 1.76 4.24 1.76v-4.8L7.21 10C6.43 11.03 6 12.27 6 13.59z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 5.1v4.05l7.4 7.4c1.15-2.88.59-6.28-1.75-8.61L12 2.27 8.56 5.71l1.41 1.41L12 5.1zm-7.6-.73L2.99 5.78l2.78 2.78c-2.54 3.14-2.35 7.75.57 10.68C7.9 20.8 9.95 21.58 12 21.58c1.78 0 3.56-.59 5.02-1.77l2.7 2.7 1.41-1.41L4.4 4.37zM12 19.59c-1.6 0-3.11-.62-4.24-1.76C6.62 16.69 6 15.19 6 13.59c0-1.32.43-2.56 1.21-3.59L12 14.79v4.8z"},"children":[]},{"name":"path","attribs":{"d":"M12 9.15V5.1L9.97 7.12z","opacity":".3"},"children":[]}]};exports.ic_invert_colors_off_twotone=ic_invert_colors_off_twotone;var ic_list_alt={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 5v14H5V5h14m1.1-2H3.9c-.5 0-.9.4-.9.9v16.2c0 .4.4.9.9.9h16.2c.4 0 .9-.5.9-.9V3.9c0-.5-.5-.9-.9-.9zM11 7h6v2h-6V7zm0 4h6v2h-6v-2zm0 4h6v2h-6zM7 7h2v2H7zm0 4h2v2H7zm0 4h2v2H7z"},"children":[]}]};exports.ic_list_alt=ic_list_alt;var ic_list_alt_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11 7h6v2h-6zm0 4h6v2h-6zm0 4h6v2h-6zM7 7h2v2H7zm0 4h2v2H7zm0 4h2v2H7zM20.1 3H3.9c-.5 0-.9.4-.9.9v16.2c0 .4.4.9.9.9h16.2c.4 0 .9-.5.9-.9V3.9c0-.5-.5-.9-.9-.9zM19 19H5V5h14v14z"},"children":[]}]};exports.ic_list_alt_outline=ic_list_alt_outline;var ic_list_alt_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 19h14V5H5v14zm6-12h6v2h-6V7zm0 4h6v2h-6v-2zm0 4h6v2h-6v-2zM7 7h2v2H7V7zm0 4h2v2H7v-2zm0 4h2v2H7v-2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M11 7h6v2h-6zm0 4h6v2h-6zm0 4h6v2h-6zM7 7h2v2H7zm0 4h2v2H7zm0 4h2v2H7zM20.1 3H3.9c-.5 0-.9.4-.9.9v16.2c0 .4.4.9.9.9h16.2c.4 0 .9-.5.9-.9V3.9c0-.5-.5-.9-.9-.9zM19 19H5V5h14v14z"},"children":[]}]};exports.ic_list_alt_twotone=ic_list_alt_twotone;var ic_live_help={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h4l3 3 3-3h4c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-6 16h-2v-2h2v2zm2.07-7.75l-.9.92C13.45 11.9 13 12.5 13 14h-2v-.5c0-1.1.45-2.1 1.17-2.83l1.24-1.26c.37-.36.59-.86.59-1.41 0-1.1-.9-2-2-2s-2 .9-2 2H8c0-2.21 1.79-4 4-4s4 1.79 4 4c0 .88-.36 1.68-.93 2.25z"},"children":[]}]};exports.ic_live_help=ic_live_help;var ic_live_help_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h4l3 3 3-3h4c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 16h-4.83l-.59.59L12 20.17l-1.59-1.59-.58-.58H5V4h14v14zm-8-3h2v2h-2zm1-8c1.1 0 2 .9 2 2 0 2-3 1.75-3 5h2c0-2.25 3-2.5 3-5 0-2.21-1.79-4-4-4S8 6.79 8 9h2c0-1.1.9-2 2-2z"},"children":[]}]};exports.ic_live_help_outline=ic_live_help_outline;var ic_live_help_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 18h4.83l.59.59L12 20.17l1.59-1.59.58-.58H19V4H5v14zm8-1h-2v-2h2v2zM12 5c2.21 0 4 1.79 4 4 0 2.5-3 2.75-3 5h-2c0-3.25 3-3 3-5 0-1.1-.9-2-2-2s-2 .9-2 2H8c0-2.21 1.79-4 4-4z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M21 4c0-1.1-.9-2-2-2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h4l3 3 3-3h4c1.1 0 2-.9 2-2V4zm-2 14h-4.83l-.59.59L12 20.17l-1.59-1.59-.58-.58H5V4h14v14zm-8-3h2v2h-2zm1-8c1.1 0 2 .9 2 2 0 2-3 1.75-3 5h2c0-2.25 3-2.5 3-5 0-2.21-1.79-4-4-4S8 6.79 8 9h2c0-1.1.9-2 2-2z"},"children":[]}]};exports.ic_live_help_twotone=ic_live_help_twotone;var ic_location_off={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0zm11.75 11.47l-.11-.11z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 6.5c1.38 0 2.5 1.12 2.5 2.5 0 .74-.33 1.39-.83 1.85l3.63 3.63c.98-1.86 1.7-3.8 1.7-5.48 0-3.87-3.13-7-7-7-1.98 0-3.76.83-5.04 2.15l3.19 3.19c.46-.52 1.11-.84 1.85-.84zm4.37 9.6l-4.63-4.63-.11-.11L3.27 3 2 4.27l3.18 3.18C5.07 7.95 5 8.47 5 9c0 5.25 7 13 7 13s1.67-1.85 3.38-4.35L18.73 21 20 19.73l-3.63-3.63z"},"children":[]}]};exports.ic_location_off=ic_location_off;var ic_location_off_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 4c2.76 0 5 2.24 5 5 0 1.06-.39 2.32-1 3.62l1.49 1.49C18.37 12.36 19 10.57 19 9c0-3.87-3.13-7-7-7-1.84 0-3.5.71-4.75 1.86l1.43 1.43C9.56 4.5 10.72 4 12 4zm0 2.5c-.59 0-1.13.21-1.56.56l3.5 3.5c.35-.43.56-.97.56-1.56 0-1.38-1.12-2.5-2.5-2.5zM3.41 2.86L2 4.27l3.18 3.18C5.07 7.95 5 8.47 5 9c0 5.25 7 13 7 13s1.67-1.85 3.38-4.35L18.73 21l1.41-1.41L3.41 2.86zM12 18.88c-2.01-2.58-4.8-6.74-4.98-9.59l6.92 6.92c-.65.98-1.33 1.89-1.94 2.67z"},"children":[]}]};exports.ic_location_off_outline=ic_location_off_outline;var ic_location_off_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 9c0 1.06-.39 2.32-1 3.62l1.49 1.49C18.37 12.36 19 10.57 19 9c0-3.87-3.13-7-7-7-1.84 0-3.5.71-4.75 1.86l1.43 1.43C9.56 4.5 10.72 4 12 4c2.76 0 5 2.24 5 5zm-5-2.5c-.59 0-1.13.21-1.56.56l3.5 3.5c.35-.43.56-.97.56-1.56 0-1.38-1.12-2.5-2.5-2.5zM3.41 2.86L2 4.27l3.18 3.18C5.07 7.95 5 8.47 5 9c0 5.25 7 13 7 13s1.67-1.85 3.38-4.35L18.73 21l1.41-1.41L3.41 2.86zM12 18.88c-2.01-2.58-4.8-6.74-4.98-9.59l6.92 6.92c-.65.98-1.33 1.89-1.94 2.67z"},"children":[]}]};exports.ic_location_off_twotone=ic_location_off_twotone;var ic_location_on={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z"},"children":[]}]};exports.ic_location_on=ic_location_on;var ic_location_on_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zM7 9c0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.88-2.88 7.19-5 9.88C9.92 16.21 7 11.85 7 9z"},"children":[]},{"name":"circle","attribs":{"cx":"12","cy":"9","r":"2.5"},"children":[]}]};exports.ic_location_on_outline=ic_location_on_outline;var ic_location_on_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 4C9.24 4 7 6.24 7 9c0 2.85 2.92 7.21 5 9.88 2.11-2.69 5-7 5-9.88 0-2.76-2.24-5-5-5zm0 7.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zM7 9c0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.88-2.88 7.19-5 9.88C9.92 16.21 7 11.85 7 9z"},"children":[]},{"name":"circle","attribs":{"cx":"12","cy":"9","r":"2.5"},"children":[]}]};exports.ic_location_on_twotone=ic_location_on_twotone;var ic_mail_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V8l8 5 8-5v10zm-8-7L4 6h16l-8 5z"},"children":[]}]};exports.ic_mail_outline=ic_mail_outline;var ic_mail_outline_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V8l8 5 8-5v10zm-8-7L4 6h16l-8 5z"},"children":[]}]};exports.ic_mail_outline_outline=ic_mail_outline_outline;var ic_mail_outline_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V8l8 5 8-5v10zm-8-7L4 6h16l-8 5z"},"children":[]}]};exports.ic_mail_outline_twotone=ic_mail_outline_twotone;var ic_mark_chat_read={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[]}]},{"name":"path","attribs":{"d":"M17.34,20l-3.54-3.54l1.41-1.41l2.12,2.12l4.24-4.24L23,14.34L17.34,20z M12,17c0-3.87,3.13-7,7-7c1.08,0,2.09,0.25,3,0.68 V4c0-1.1-0.9-2-2-2H4C2.9,2,2,2.9,2,4v18l4-4h6v0c0-0.17,0.01-0.33,0.03-0.5C12.01,17.34,12,17.17,12,17z"},"children":[{"name":"path","attribs":{"d":"M17.34,20l-3.54-3.54l1.41-1.41l2.12,2.12l4.24-4.24L23,14.34L17.34,20z M12,17c0-3.87,3.13-7,7-7c1.08,0,2.09,0.25,3,0.68 V4c0-1.1-0.9-2-2-2H4C2.9,2,2,2.9,2,4v18l4-4h6v0c0-0.17,0.01-0.33,0.03-0.5C12.01,17.34,12,17.17,12,17z"},"children":[]}]}]}]};exports.ic_mark_chat_read=ic_mark_chat_read;var ic_mark_chat_read_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M12,18l-6,0l-4,4V4c0-1.1,0.9-2,2-2h16c1.1,0,2,0.9,2,2v7l-2,0V4H4v12l8,0V18z M23,14.34l-1.41-1.41l-4.24,4.24l-2.12-2.12 l-1.41,1.41L17.34,20L23,14.34z"},"children":[{"name":"path","attribs":{"d":"M12,18l-6,0l-4,4V4c0-1.1,0.9-2,2-2h16c1.1,0,2,0.9,2,2v7l-2,0V4H4v12l8,0V18z M23,14.34l-1.41-1.41l-4.24,4.24l-2.12-2.12 l-1.41,1.41L17.34,20L23,14.34z"},"children":[]}]}]}]};exports.ic_mark_chat_read_outline=ic_mark_chat_read_outline;var ic_mark_chat_read_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[]}]},{"name":"path","attribs":{"d":"M19,10c0.34,0,0.67,0.03,1,0.08V4H4v12h8.08C12.57,12.61,15.47,10,19,10z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M19,10c0.34,0,0.67,0.03,1,0.08V4H4v12h8.08C12.57,12.61,15.47,10,19,10z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M17.34,20l-3.54-3.54l1.41-1.41l2.12,2.12l4.24-4.24L23,14.34L17.34,20z M12.08,16H4V4h16v6.08c0.71,0.1,1.38,0.31,2,0.6V4 c0-1.1-0.9-2-2-2H4C2.9,2,2,2.9,2,4v18l4-4h6v0c0-0.14,0.02-0.27,0.03-0.4C12.01,17.4,12,17.2,12,17C12,16.66,12.03,16.33,12.08,16 z"},"children":[{"name":"path","attribs":{"d":"M17.34,20l-3.54-3.54l1.41-1.41l2.12,2.12l4.24-4.24L23,14.34L17.34,20z M12.08,16H4V4h16v6.08c0.71,0.1,1.38,0.31,2,0.6V4 c0-1.1-0.9-2-2-2H4C2.9,2,2,2.9,2,4v18l4-4h6v0c0-0.14,0.02-0.27,0.03-0.4C12.01,17.4,12,17.2,12,17C12,16.66,12.03,16.33,12.08,16 z"},"children":[]}]}]}]};exports.ic_mark_chat_read_twotone=ic_mark_chat_read_twotone;var ic_mark_chat_unread={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","y":"0"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","y":"0"},"children":[]}]},{"name":"path","attribs":{"d":"M22,6.98V16c0,1.1-0.9,2-2,2H6l-4,4V4c0-1.1,0.9-2,2-2h10.1C14.04,2.32,14,2.66,14,3c0,2.76,2.24,5,5,5 C20.13,8,21.16,7.61,22,6.98z M16,3c0,1.66,1.34,3,3,3s3-1.34,3-3s-1.34-3-3-3S16,1.34,16,3z"},"children":[{"name":"path","attribs":{"d":"M22,6.98V16c0,1.1-0.9,2-2,2H6l-4,4V4c0-1.1,0.9-2,2-2h10.1C14.04,2.32,14,2.66,14,3c0,2.76,2.24,5,5,5 C20.13,8,21.16,7.61,22,6.98z M16,3c0,1.66,1.34,3,3,3s3-1.34,3-3s-1.34-3-3-3S16,1.34,16,3z"},"children":[]}]}]}]};exports.ic_mark_chat_unread=ic_mark_chat_unread;var ic_mark_chat_unread_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0","y":"0"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0","y":"0"},"children":[]}]},{"name":"path","attribs":{"d":"M22,6.98V16c0,1.1-0.9,2-2,2H6l-4,4V4c0-1.1,0.9-2,2-2h10.1C14.04,2.32,14,2.66,14,3s0.04,0.68,0.1,1H4v12h16V7.9 C20.74,7.75,21.42,7.42,22,6.98z M16,3c0,1.66,1.34,3,3,3s3-1.34,3-3s-1.34-3-3-3S16,1.34,16,3z"},"children":[{"name":"path","attribs":{"d":"M22,6.98V16c0,1.1-0.9,2-2,2H6l-4,4V4c0-1.1,0.9-2,2-2h10.1C14.04,2.32,14,2.66,14,3s0.04,0.68,0.1,1H4v12h16V7.9 C20.74,7.75,21.42,7.42,22,6.98z M16,3c0,1.66,1.34,3,3,3s3-1.34,3-3s-1.34-3-3-3S16,1.34,16,3z"},"children":[]}]}]}]};exports.ic_mark_chat_unread_outline=ic_mark_chat_unread_outline;var ic_mark_chat_unread_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","y":"0"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","y":"0"},"children":[]}]},{"name":"path","attribs":{"d":"M4,16h16V7.9C19.68,7.96,19.34,8,19,8c-2.42,0-4.44-1.72-4.9-4H4V16z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M4,16h16V7.9C19.68,7.96,19.34,8,19,8c-2.42,0-4.44-1.72-4.9-4H4V16z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M20,7.9c0.74-0.15,1.42-0.48,2-0.92V16c0,1.1-0.9,2-2,2H6l-4,4V4c0-1.1,0.9-2,2-2h10.1C14.04,2.32,14,2.66,14,3 s0.04,0.68,0.1,1H4v12h16V7.9z M16,3c0,1.66,1.34,3,3,3s3-1.34,3-3s-1.34-3-3-3S16,1.34,16,3z"},"children":[{"name":"path","attribs":{"d":"M20,7.9c0.74-0.15,1.42-0.48,2-0.92V16c0,1.1-0.9,2-2,2H6l-4,4V4c0-1.1,0.9-2,2-2h10.1C14.04,2.32,14,2.66,14,3 s0.04,0.68,0.1,1H4v12h16V7.9z M16,3c0,1.66,1.34,3,3,3s3-1.34,3-3s-1.34-3-3-3S16,1.34,16,3z"},"children":[]}]}]}]};exports.ic_mark_chat_unread_twotone=ic_mark_chat_unread_twotone;var ic_mark_email_read={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[]}]},{"name":"path","attribs":{"d":"M12,19c0-3.87,3.13-7,7-7c1.08,0,2.09,0.25,3,0.68V6c0-1.1-0.9-2-2-2H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h8.08 C12.03,19.67,12,19.34,12,19z M4,6l8,5l8-5v2l-8,5L4,8V6z M17.34,22l-3.54-3.54l1.41-1.41l2.12,2.12l4.24-4.24L23,16.34L17.34,22z"},"children":[{"name":"path","attribs":{"d":"M12,19c0-3.87,3.13-7,7-7c1.08,0,2.09,0.25,3,0.68V6c0-1.1-0.9-2-2-2H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h8.08 C12.03,19.67,12,19.34,12,19z M4,6l8,5l8-5v2l-8,5L4,8V6z M17.34,22l-3.54-3.54l1.41-1.41l2.12,2.12l4.24-4.24L23,16.34L17.34,22z"},"children":[]}]}]}]};exports.ic_mark_email_read=ic_mark_email_read;var ic_mark_email_read_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M20,4H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h8l0-2H4V8l8,5l8-5v5h2V6C22,4.9,21.1,4,20,4z M12,11L4,6h16L12,11z M17.34,22l-3.54-3.54l1.41-1.41l2.12,2.12l4.24-4.24L23,16.34L17.34,22z"},"children":[{"name":"path","attribs":{"d":"M20,4H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h8l0-2H4V8l8,5l8-5v5h2V6C22,4.9,21.1,4,20,4z M12,11L4,6h16L12,11z M17.34,22l-3.54-3.54l1.41-1.41l2.12,2.12l4.24-4.24L23,16.34L17.34,22z"},"children":[]}]}]}]};exports.ic_mark_email_read_outline=ic_mark_email_read_outline;var ic_mark_email_read_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M20,8v4.08C19.67,12.03,19.34,12,19,12c-3.53,0-6.43,2.61-6.92,6H4V8l8,5L20,8z M20,6H4l8,5L20,6z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M20,8v4.08C19.67,12.03,19.34,12,19,12c-3.53,0-6.43,2.61-6.92,6H4V8l8,5L20,8z M20,6H4l8,5L20,6z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M12.08,18H4V8l8,5l8-5v4.08c0.71,0.1,1.38,0.31,2,0.6V6c0-1.1-0.9-2-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2 h8.08C12.03,19.67,12,19.34,12,19S12.03,18.33,12.08,18z M20,6l-8,5L4,6H20z M17.34,22l-3.54-3.54l1.41-1.41l2.12,2.12l4.24-4.24 L23,16.34L17.34,22z"},"children":[{"name":"path","attribs":{"d":"M12.08,18H4V8l8,5l8-5v4.08c0.71,0.1,1.38,0.31,2,0.6V6c0-1.1-0.9-2-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2 h8.08C12.03,19.67,12,19.34,12,19S12.03,18.33,12.08,18z M20,6l-8,5L4,6H20z M17.34,22l-3.54-3.54l1.41-1.41l2.12,2.12l4.24-4.24 L23,16.34L17.34,22z"},"children":[]}]}]}]};exports.ic_mark_email_read_twotone=ic_mark_email_read_twotone;var ic_mark_email_unread={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M22,8.98V18c0,1.1-0.9,2-2,2H4c-1.1,0-2-0.9-2-2V6c0-1.1,0.9-2,2-2h10.1C14.04,4.32,14,4.66,14,5 c0,1.48,0.65,2.79,1.67,3.71L12,11L4,6v2l8,5l5.3-3.32C17.84,9.88,18.4,10,19,10C20.13,10,21.16,9.61,22,8.98z M16,5 c0,1.66,1.34,3,3,3s3-1.34,3-3s-1.34-3-3-3S16,3.34,16,5z"},"children":[{"name":"path","attribs":{"d":"M22,8.98V18c0,1.1-0.9,2-2,2H4c-1.1,0-2-0.9-2-2V6c0-1.1,0.9-2,2-2h10.1C14.04,4.32,14,4.66,14,5 c0,1.48,0.65,2.79,1.67,3.71L12,11L4,6v2l8,5l5.3-3.32C17.84,9.88,18.4,10,19,10C20.13,10,21.16,9.61,22,8.98z M16,5 c0,1.66,1.34,3,3,3s3-1.34,3-3s-1.34-3-3-3S16,3.34,16,5z"},"children":[]}]}]}]};exports.ic_mark_email_unread=ic_mark_email_unread;var ic_mark_email_unread_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[]}]},{"name":"path","attribs":{"d":"M22,8.98V18c0,1.1-0.9,2-2,2H4c-1.1,0-2-0.9-2-2L2.01,6C2.01,4.9,2.9,4,4,4h10.1C14.04,4.32,14,4.66,14,5s0.04,0.68,0.1,1 H4l8,5l3.67-2.29c0.47,0.43,1.02,0.76,1.63,0.98L12,13L4,8v10h16V9.9C20.74,9.75,21.42,9.42,22,8.98z M16,5c0,1.66,1.34,3,3,3 s3-1.34,3-3s-1.34-3-3-3S16,3.34,16,5z"},"children":[{"name":"path","attribs":{"d":"M22,8.98V18c0,1.1-0.9,2-2,2H4c-1.1,0-2-0.9-2-2L2.01,6C2.01,4.9,2.9,4,4,4h10.1C14.04,4.32,14,4.66,14,5s0.04,0.68,0.1,1 H4l8,5l3.67-2.29c0.47,0.43,1.02,0.76,1.63,0.98L12,13L4,8v10h16V9.9C20.74,9.75,21.42,9.42,22,8.98z M16,5c0,1.66,1.34,3,3,3 s3-1.34,3-3s-1.34-3-3-3S16,3.34,16,5z"},"children":[]}]}]}]};exports.ic_mark_email_unread_outline=ic_mark_email_unread_outline;var ic_mark_email_unread_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[]}]},{"name":"path","attribs":{"d":"M4,6h10.1c0.22,1.07,0.79,2,1.57,2.71L12,11L4,6z M4,8v10h16V9.9c-0.32,0.07-0.66,0.1-1,0.1 c-0.6,0-1.16-0.12-1.7-0.32L12,13L4,8z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M4,6h10.1c0.22,1.07,0.79,2,1.57,2.71L12,11L4,6z M4,8v10h16V9.9c-0.32,0.07-0.66,0.1-1,0.1 c-0.6,0-1.16-0.12-1.7-0.32L12,13L4,8z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M20,9.9c0.74-0.15,1.42-0.48,2-0.92V18c0,1.1-0.9,2-2,2H4c-1.1,0-2-0.9-2-2V6c0-1.1,0.9-2,2-2h10.1 C14.04,4.32,14,4.66,14,5s0.04,0.68,0.1,1H4l8,5l3.67-2.29c0.47,0.43,1.02,0.76,1.63,0.98L12,13L4,8v10h16V9.9z M16,5 c0,1.66,1.34,3,3,3s3-1.34,3-3s-1.34-3-3-3S16,3.34,16,5z"},"children":[{"name":"path","attribs":{"d":"M20,9.9c0.74-0.15,1.42-0.48,2-0.92V18c0,1.1-0.9,2-2,2H4c-1.1,0-2-0.9-2-2V6c0-1.1,0.9-2,2-2h10.1 C14.04,4.32,14,4.66,14,5s0.04,0.68,0.1,1H4l8,5l3.67-2.29c0.47,0.43,1.02,0.76,1.63,0.98L12,13L4,8v10h16V9.9z M16,5 c0,1.66,1.34,3,3,3s3-1.34,3-3s-1.34-3-3-3S16,3.34,16,5z"},"children":[]}]}]}]};exports.ic_mark_email_unread_twotone=ic_mark_email_unread_twotone;var ic_message={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-2 12H6v-2h12v2zm0-3H6V9h12v2zm0-3H6V6h12v2z"},"children":[]}]};exports.ic_message=ic_message;var ic_message_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 4h16v12H5.17L4 17.17V4m0-2c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H4zm2 10h12v2H6v-2zm0-3h12v2H6V9zm0-3h12v2H6V6z"},"children":[]}]};exports.ic_message_outline=ic_message_outline;var ic_message_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 4H4v13.17L5.17 16H20V4zm-2 10H6v-2h12v2zm0-3H6V9h12v2zm0-3H6V6h12v2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 18c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14zm-16-.83V4h16v12H5.17L4 17.17zM6 12h12v2H6zm0-3h12v2H6zm0-3h12v2H6z"},"children":[]}]};exports.ic_message_twotone=ic_message_twotone;var ic_mobile_screen_share={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 1.01L7 1c-1.1 0-1.99.9-1.99 2v18c0 1.1.89 2 1.99 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14zm-4.2-5.78v1.75l3.2-2.99L12.8 9v1.7c-3.11.43-4.35 2.56-4.8 4.7 1.11-1.5 2.58-2.18 4.8-2.18z"},"children":[]}]};exports.ic_mobile_screen_share=ic_mobile_screen_share;var ic_mobile_screen_share_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 1H7c-1.1 0-1.99.85-1.99 1.95v18C5.01 22.05 5.9 23 7 23h10c1.1 0 2-.95 2-2.05v-18C19 1.85 18.1 1 17 1zm0 18H7V5h10v14zm-4.2-5.76v1.75L16 12l-3.2-2.98v1.7c-3.11.43-4.35 2.56-4.8 4.7 1.11-1.5 2.58-2.18 4.8-2.18z"},"children":[]}]};exports.ic_mobile_screen_share_outline=ic_mobile_screen_share_outline;var ic_mobile_screen_share_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 19h10V5H7v14zm5.8-8.28v-1.7L16 12l-3.2 2.99v-1.75c-2.22 0-3.69.68-4.8 2.18.45-2.14 1.69-4.27 4.8-4.7z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M17 1H7c-1.1 0-1.99.85-1.99 1.95v18C5.01 22.05 5.9 23 7 23h10c1.1 0 2-.95 2-2.05V3c0-1.1-.9-2-2-2zm0 18H7V5h10v14zm-4.2-5.76v1.75L16 12l-3.2-2.98v1.7c-3.11.43-4.35 2.56-4.8 4.7 1.11-1.5 2.58-2.18 4.8-2.18z"},"children":[]}]};exports.ic_mobile_screen_share_twotone=ic_mobile_screen_share_twotone;var ic_more_time={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"10,8 10,14 14.7,16.9 15.5,15.7 11.5,13.3 11.5,8"},"children":[{"name":"polygon","attribs":{"points":"10,8 10,14 14.7,16.9 15.5,15.7 11.5,13.3 11.5,8"},"children":[]}]},{"name":"path","attribs":{"d":"M17.92,12c0.05,0.33,0.08,0.66,0.08,1c0,3.9-3.1,7-7,7s-7-3.1-7-7c0-3.9,3.1-7,7-7c0.7,0,1.37,0.1,2,0.29V4.23 C12.36,4.08,11.69,4,11,4c-5,0-9,4-9,9s4,9,9,9s9-4,9-9c0-0.34-0.02-0.67-0.06-1H17.92z"},"children":[{"name":"path","attribs":{"d":"M17.92,12c0.05,0.33,0.08,0.66,0.08,1c0,3.9-3.1,7-7,7s-7-3.1-7-7c0-3.9,3.1-7,7-7c0.7,0,1.37,0.1,2,0.29V4.23 C12.36,4.08,11.69,4,11,4c-5,0-9,4-9,9s4,9,9,9s9-4,9-9c0-0.34-0.02-0.67-0.06-1H17.92z"},"children":[]}]},{"name":"polygon","attribs":{"points":"20,5 20,2 18,2 18,5 15,5 15,7 18,7 18,10 20,10 20,7 23,7 23,5"},"children":[{"name":"polygon","attribs":{"points":"20,5 20,2 18,2 18,5 15,5 15,7 18,7 18,10 20,10 20,7 23,7 23,5"},"children":[]}]}]}]}]}]};exports.ic_more_time=ic_more_time;var ic_more_time_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"10,8 10,14 14.7,16.9 15.5,15.7 11.5,13.3 11.5,8"},"children":[{"name":"polygon","attribs":{"points":"10,8 10,14 14.7,16.9 15.5,15.7 11.5,13.3 11.5,8"},"children":[]}]},{"name":"path","attribs":{"d":"M17.92,12c0.05,0.33,0.08,0.66,0.08,1c0,3.9-3.1,7-7,7s-7-3.1-7-7c0-3.9,3.1-7,7-7c0.7,0,1.37,0.1,2,0.29V4.23 C12.36,4.08,11.69,4,11,4c-5,0-9,4-9,9s4,9,9,9s9-4,9-9c0-0.34-0.02-0.67-0.06-1H17.92z"},"children":[{"name":"path","attribs":{"d":"M17.92,12c0.05,0.33,0.08,0.66,0.08,1c0,3.9-3.1,7-7,7s-7-3.1-7-7c0-3.9,3.1-7,7-7c0.7,0,1.37,0.1,2,0.29V4.23 C12.36,4.08,11.69,4,11,4c-5,0-9,4-9,9s4,9,9,9s9-4,9-9c0-0.34-0.02-0.67-0.06-1H17.92z"},"children":[]}]},{"name":"polygon","attribs":{"points":"20,5 20,2 18,2 18,5 15,5 15,7 18,7 18,10 20,10 20,7 23,7 23,5"},"children":[{"name":"polygon","attribs":{"points":"20,5 20,2 18,2 18,5 15,5 15,7 18,7 18,10 20,10 20,7 23,7 23,5"},"children":[]}]}]}]}]}]};exports.ic_more_time_outline=ic_more_time_outline;var ic_more_time_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"10,8 10,14 14.7,16.9 15.5,15.7 11.5,13.3 11.5,8"},"children":[{"name":"polygon","attribs":{"points":"10,8 10,14 14.7,16.9 15.5,15.7 11.5,13.3 11.5,8"},"children":[]}]},{"name":"path","attribs":{"d":"M17.92,12c0.05,0.33,0.08,0.66,0.08,1c0,3.9-3.1,7-7,7s-7-3.1-7-7c0-3.9,3.1-7,7-7c0.7,0,1.37,0.1,2,0.29V4.23 C12.36,4.08,11.69,4,11,4c-5,0-9,4-9,9s4,9,9,9s9-4,9-9c0-0.34-0.02-0.67-0.06-1H17.92z"},"children":[{"name":"path","attribs":{"d":"M17.92,12c0.05,0.33,0.08,0.66,0.08,1c0,3.9-3.1,7-7,7s-7-3.1-7-7c0-3.9,3.1-7,7-7c0.7,0,1.37,0.1,2,0.29V4.23 C12.36,4.08,11.69,4,11,4c-5,0-9,4-9,9s4,9,9,9s9-4,9-9c0-0.34-0.02-0.67-0.06-1H17.92z"},"children":[]}]},{"name":"polygon","attribs":{"points":"20,5 20,2 18,2 18,5 15,5 15,7 18,7 18,10 20,10 20,7 23,7 23,5"},"children":[{"name":"polygon","attribs":{"points":"20,5 20,2 18,2 18,5 15,5 15,7 18,7 18,10 20,10 20,7 23,7 23,5"},"children":[]}]}]}]}]}]};exports.ic_more_time_twotone=ic_more_time_twotone;var ic_nat={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M6.82,13H11v-2H6.82C6.4,9.84,5.3,9,4,9c-1.66,0-3,1.34-3,3s1.34,3,3,3C5.3,15,6.4,14.16,6.82,13z M4,13 c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C5,12.55,4.55,13,4,13z"},"children":[{"name":"path","attribs":{"d":"M6.82,13H11v-2H6.82C6.4,9.84,5.3,9,4,9c-1.66,0-3,1.34-3,3s1.34,3,3,3C5.3,15,6.4,14.16,6.82,13z M4,13 c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C5,12.55,4.55,13,4,13z"},"children":[]}]},{"name":"path","attribs":{"d":"M23,12l-4-3v2h-4.05C14.45,5.95,10.19,2,5,2v2c4.42,0,8,3.58,8,8s-3.58,8-8,8v2c5.19,0,9.45-3.95,9.95-9H19v2L23,12z"},"children":[{"name":"path","attribs":{"d":"M23,12l-4-3v2h-4.05C14.45,5.95,10.19,2,5,2v2c4.42,0,8,3.58,8,8s-3.58,8-8,8v2c5.19,0,9.45-3.95,9.95-9H19v2L23,12z"},"children":[]}]}]}]}]}]};exports.ic_nat=ic_nat;var ic_nat_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M6.82,13H11v-2H6.82C6.4,9.84,5.3,9,4,9c-1.66,0-3,1.34-3,3s1.34,3,3,3C5.3,15,6.4,14.16,6.82,13z M4,13 c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C5,12.55,4.55,13,4,13z"},"children":[{"name":"path","attribs":{"d":"M6.82,13H11v-2H6.82C6.4,9.84,5.3,9,4,9c-1.66,0-3,1.34-3,3s1.34,3,3,3C5.3,15,6.4,14.16,6.82,13z M4,13 c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C5,12.55,4.55,13,4,13z"},"children":[]}]},{"name":"path","attribs":{"d":"M23,12l-4-3v2h-4.05C14.45,5.95,10.19,2,5,2v2c4.42,0,8,3.58,8,8s-3.58,8-8,8v2c5.19,0,9.45-3.95,9.95-9H19v2L23,12z"},"children":[{"name":"path","attribs":{"d":"M23,12l-4-3v2h-4.05C14.45,5.95,10.19,2,5,2v2c4.42,0,8,3.58,8,8s-3.58,8-8,8v2c5.19,0,9.45-3.95,9.95-9H19v2L23,12z"},"children":[]}]}]}]}]}]};exports.ic_nat_outline=ic_nat_outline;var ic_nat_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"cx":"4","cy":"12","opacity":".3","r":"1"},"children":[{"name":"circle","attribs":{"cx":"4","cy":"12","opacity":".3","r":"1"},"children":[]}]},{"name":"path","attribs":{"d":"M6.82,13H11v-2H6.82C6.4,9.84,5.3,9,4,9c-1.66,0-3,1.34-3,3s1.34,3,3,3C5.3,15,6.4,14.16,6.82,13z M4,13 c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C5,12.55,4.55,13,4,13z"},"children":[{"name":"path","attribs":{"d":"M6.82,13H11v-2H6.82C6.4,9.84,5.3,9,4,9c-1.66,0-3,1.34-3,3s1.34,3,3,3C5.3,15,6.4,14.16,6.82,13z M4,13 c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C5,12.55,4.55,13,4,13z"},"children":[]}]},{"name":"path","attribs":{"d":"M23,12l-4-3v2h-4.05C14.45,5.95,10.19,2,5,2v2c4.42,0,8,3.58,8,8s-3.58,8-8,8v2c5.19,0,9.45-3.95,9.95-9H19v2L23,12z"},"children":[{"name":"path","attribs":{"d":"M23,12l-4-3v2h-4.05C14.45,5.95,10.19,2,5,2v2c4.42,0,8,3.58,8,8s-3.58,8-8,8v2c5.19,0,9.45-3.95,9.95-9H19v2L23,12z"},"children":[]}]}]}]}]}]};exports.ic_nat_twotone=ic_nat_twotone;var ic_no_sim={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18.99 5c0-1.1-.89-2-1.99-2h-7L7.66 5.34 19 16.68 18.99 5zM3.65 3.88L2.38 5.15 5 7.77V19c0 1.1.9 2 2 2h10.01c.35 0 .67-.1.96-.26l1.88 1.88 1.27-1.27L3.65 3.88z"},"children":[]}]};exports.ic_no_sim=ic_no_sim;var ic_no_sim_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21.26 21.21L3.79 3.74 2.38 5.15l2.74 2.74-.12.12V19c0 1.1.9 2 2 2h10c.35 0 .68-.1.97-.26l1.88 1.88 1.41-1.41zM7 19V9.77L16.23 19H7zm3.84-14H17v9.11l2 2V5c0-1.1-.9-2-2-2h-6.99L7.95 5.06l1.41 1.41L10.84 5z"},"children":[]}]};exports.ic_no_sim_outline=ic_no_sim_outline;var ic_no_sim_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 19h9.23L7 9.77z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M3.79 3.74L2.38 5.15l2.74 2.74-.12.12V19c0 1.1.9 2 2 2h10c.35 0 .68-.1.97-.26l1.88 1.88 1.41-1.41L3.79 3.74zM7 19V9.77L16.23 19H7z"},"children":[]},{"name":"path","attribs":{"d":"M10.84 5L9.36 6.47 17 14.11V5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M10.84 5H17v9.11l2 2V5c0-1.1-.9-2-2-2h-6.99L7.95 5.06l1.41 1.41L10.84 5z"},"children":[]}]};exports.ic_no_sim_twotone=ic_no_sim_twotone;var ic_pause_presentation={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 19.1H3V5h18v14.1zM21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"},"children":[]},{"name":"path","attribs":{"d":"M21 19.1H3V5h18v14.1zM21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9 8h2v8H9zm4 0h2v8h-2z"},"children":[]}]};exports.ic_pause_presentation=ic_pause_presentation;var ic_pause_presentation_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 3H3c-1.1 0-2 .85-2 1.95v14c0 1.1.9 2.05 2 2.05h18c1.1 0 2-.95 2-2.05v-14C23 3.85 22.1 3 21 3zm0 16H3V5h18v14zM9 8h2v8H9zm4 0h2v8h-2z"},"children":[]}]};exports.ic_pause_presentation_outline=ic_pause_presentation_outline;var ic_pause_presentation_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 19h18V5H3v14zM13 8h2v8h-2V8zM9 8h2v8H9V8z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM9 8h2v8H9zm4 0h2v8h-2z"},"children":[]}]};exports.ic_pause_presentation_twotone=ic_pause_presentation_twotone;var ic_person_add_disabled={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"15","cy":"8","r":"4"},"children":[]},{"name":"path","attribs":{"d":"M23 20v-2c0-2.3-4.1-3.7-6.9-3.9l6 5.9h.9zm-11.6-5.5C9.2 15.1 7 16.3 7 18v2h9.9l4 4 1.3-1.3-21-20.9L0 3.1l4 4V10H1v2h3v3h2v-3h2.9l2.5 2.5zM6 10v-.9l.9.9H6z"},"children":[]}]};exports.ic_person_add_disabled=ic_person_add_disabled;var ic_person_add_disabled_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15 6c1.1 0 2 .9 2 2 0 .99-.73 1.82-1.67 1.97l-2.31-2.31C13.19 6.72 14.01 6 15 6m0-2c-2.21 0-4 1.79-4 4 0 .18.03.35.05.52l3.43 3.43c.17.02.34.05.52.05 2.21 0 4-1.79 4-4s-1.79-4-4-4zm1.69 10.16L22.53 20H23v-2c0-2.14-3.56-3.5-6.31-3.84zm-3.68 1.97L14.88 18H9c.08-.24.88-1.01 2.91-1.57l1.1-.3M1.41 1.71L0 3.12l4 4V10H1v2h3v3h2v-3h2.88l2.51 2.51C9.19 15.11 7 16.3 7 18v2h9.88l4 4 1.41-1.41L1.41 1.71zM6 10v-.88l.88.88H6z"},"children":[]}]};exports.ic_person_add_disabled_outline=ic_person_add_disabled_outline;var ic_person_add_disabled_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9 18h5.87L13 16.13l-1.1.3C9.89 16.99 9.08 17.76 9 18zm8-10c0-1.1-.9-2-2-2-.99 0-1.81.72-1.97 1.67l2.31 2.31C16.27 9.82 17 8.99 17 8z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M14.48 11.95c.17.02.34.05.52.05 2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4c0 .18.03.35.05.52l3.43 3.43zM15 6c1.1 0 2 .9 2 2 0 .99-.73 1.82-1.67 1.97l-2.31-2.31C13.19 6.72 14.01 6 15 6zm1.69 8.16L22.53 20H23v-2c0-2.14-3.56-3.5-6.31-3.84zM0 3.12l4 4V10H1v2h3v3h2v-3h2.88l2.51 2.51C9.19 15.11 7 16.3 7 18v2h9.88l4 4 1.41-1.41L1.41 1.71 0 3.12zm13.01 13.01L14.88 18H9c.08-.24.88-1.01 2.91-1.57l1.1-.3zM6 9.12l.88.88H6v-.88z"},"children":[]}]};exports.ic_person_add_disabled_twotone=ic_person_add_disabled_twotone;var ic_person_search={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"cx":"10","cy":"8","r":"4"},"children":[{"name":"circle","attribs":{"cx":"10","cy":"8","r":"4"},"children":[]}]},{"name":"path","attribs":{"d":"M10.35,14.01C7.62,13.91,2,15.27,2,18v2h9.54C9.07,17.24,10.31,14.11,10.35,14.01z"},"children":[{"name":"path","attribs":{"d":"M10.35,14.01C7.62,13.91,2,15.27,2,18v2h9.54C9.07,17.24,10.31,14.11,10.35,14.01z"},"children":[]}]},{"name":"path","attribs":{"d":"M19.43,18.02C19.79,17.43,20,16.74,20,16c0-2.21-1.79-4-4-4s-4,1.79-4,4c0,2.21,1.79,4,4,4c0.74,0,1.43-0.22,2.02-0.57 L20.59,22L22,20.59L19.43,18.02z M16,18c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2C18,17.1,17.1,18,16,18z"},"children":[{"name":"path","attribs":{"d":"M19.43,18.02C19.79,17.43,20,16.74,20,16c0-2.21-1.79-4-4-4s-4,1.79-4,4c0,2.21,1.79,4,4,4c0.74,0,1.43-0.22,2.02-0.57 L20.59,22L22,20.59L19.43,18.02z M16,18c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2C18,17.1,17.1,18,16,18z"},"children":[]}]}]}]}]}]};exports.ic_person_search=ic_person_search;var ic_person_search_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M10,12c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4S6,5.79,6,8C6,10.21,7.79,12,10,12z M10,6c1.1,0,2,0.9,2,2c0,1.1-0.9,2-2,2 S8,9.1,8,8C8,6.9,8.9,6,10,6z"},"children":[{"name":"path","attribs":{"d":"M10,12c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4S6,5.79,6,8C6,10.21,7.79,12,10,12z M10,6c1.1,0,2,0.9,2,2c0,1.1-0.9,2-2,2 S8,9.1,8,8C8,6.9,8.9,6,10,6z"},"children":[]}]},{"name":"path","attribs":{"d":"M4,18c0.22-0.72,3.31-2,6-2c0-0.7,0.13-1.37,0.35-1.99C7.62,13.91,2,15.27,2,18v2h9.54c-0.52-0.58-0.93-1.25-1.19-2H4z"},"children":[{"name":"path","attribs":{"d":"M4,18c0.22-0.72,3.31-2,6-2c0-0.7,0.13-1.37,0.35-1.99C7.62,13.91,2,15.27,2,18v2h9.54c-0.52-0.58-0.93-1.25-1.19-2H4z"},"children":[]}]},{"name":"path","attribs":{"d":"M19.43,18.02C19.79,17.43,20,16.74,20,16c0-2.21-1.79-4-4-4s-4,1.79-4,4c0,2.21,1.79,4,4,4c0.74,0,1.43-0.22,2.02-0.57 c0.93,0.93,1.62,1.62,2.57,2.57L22,20.59C20.5,19.09,21.21,19.79,19.43,18.02z M16,18c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2 C18,17.1,17.1,18,16,18z"},"children":[{"name":"path","attribs":{"d":"M19.43,18.02C19.79,17.43,20,16.74,20,16c0-2.21-1.79-4-4-4s-4,1.79-4,4c0,2.21,1.79,4,4,4c0.74,0,1.43-0.22,2.02-0.57 c0.93,0.93,1.62,1.62,2.57,2.57L22,20.59C20.5,19.09,21.21,19.79,19.43,18.02z M16,18c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2 C18,17.1,17.1,18,16,18z"},"children":[]}]}]}]}]}]};exports.ic_person_search_outline=ic_person_search_outline;var ic_person_search_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M4,18c0.22-0.72,3.31-2,6-2c0-0.7,0.13-1.37,0.35-1.99C7.62,13.91,2,15.27,2,18v2h9.54c-0.52-0.58-0.93-1.25-1.19-2H4z"},"children":[{"name":"path","attribs":{"d":"M4,18c0.22-0.72,3.31-2,6-2c0-0.7,0.13-1.37,0.35-1.99C7.62,13.91,2,15.27,2,18v2h9.54c-0.52-0.58-0.93-1.25-1.19-2H4z"},"children":[]}]},{"name":"path","attribs":{"d":"M10,13c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4C7.79,5,6,6.79,6,9C6,11.21,7.79,13,10,13z M10,7c1.1,0,2,0.89,2,2 c0,1.1-0.9,2-2,2s-2-0.9-2-2C8,7.89,8.9,7,10,7z"},"children":[{"name":"path","attribs":{"d":"M10,13c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4C7.79,5,6,6.79,6,9C6,11.21,7.79,13,10,13z M10,7c1.1,0,2,0.89,2,2 c0,1.1-0.9,2-2,2s-2-0.9-2-2C8,7.89,8.9,7,10,7z"},"children":[]}]},{"name":"g","attribs":{"opacity":".3"},"children":[{"name":"g","attribs":{"opacity":".3"},"children":[{"name":"path","attribs":{"d":"M10.35,18c0,0-0.35-0.79-0.35-2c-2.69,0-5.77,1.28-6,2H10.35z"},"children":[{"name":"path","attribs":{"d":"M10.35,18c0,0-0.35-0.79-0.35-2c-2.69,0-5.77,1.28-6,2H10.35z"},"children":[]}]}]}]},{"name":"path","attribs":{"d":"M19.43,18.02C19.79,17.43,20,16.74,20,16c0-2.21-1.79-4-4-4s-4,1.79-4,4c0,2.21,1.79,4,4,4c0.74,0,1.43-0.22,2.02-0.57 c0.93,0.93,1.62,1.62,2.57,2.57L22,20.59C20.5,19.09,21.21,19.79,19.43,18.02z M16,18c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2 s2,0.9,2,2C18,17.1,17.1,18,16,18z"},"children":[{"name":"path","attribs":{"d":"M19.43,18.02C19.79,17.43,20,16.74,20,16c0-2.21-1.79-4-4-4s-4,1.79-4,4c0,2.21,1.79,4,4,4c0.74,0,1.43-0.22,2.02-0.57 c0.93,0.93,1.62,1.62,2.57,2.57L22,20.59C20.5,19.09,21.21,19.79,19.43,18.02z M16,18c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2 s2,0.9,2,2C18,17.1,17.1,18,16,18z"},"children":[]}]}]}]},{"name":"g","attribs":{"opacity":".3"},"children":[{"name":"g","attribs":{"opacity":".3"},"children":[{"name":"circle","attribs":{"cx":"10","cy":"9","r":"2"},"children":[{"name":"circle","attribs":{"cx":"10","cy":"9","r":"2"},"children":[]}]}]}]}]}]}]}]};exports.ic_person_search_twotone=ic_person_search_twotone;var ic_phone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z"},"children":[]}]};exports.ic_phone=ic_phone;var ic_phone_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6.54 5c.06.89.21 1.76.45 2.59l-1.2 1.2c-.41-1.2-.67-2.47-.76-3.79h1.51m9.86 12.02c.85.24 1.72.39 2.6.45v1.49c-1.32-.09-2.59-.35-3.8-.75l1.2-1.19M7.5 3H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.49c0-.55-.45-1-1-1-1.24 0-2.45-.2-3.57-.57-.1-.04-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2c.28-.28.36-.67.25-1.02C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1z"},"children":[]}]};exports.ic_phone_outline=ic_phone_outline;var ic_phone_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 17.47c-.88-.07-1.75-.22-2.6-.45l-1.19 1.19c1.2.41 2.48.67 3.8.75v-1.49zM5.03 5c.09 1.32.35 2.59.75 3.8l1.2-1.2c-.23-.84-.38-1.71-.44-2.6H5.03z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M9.07 7.57C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.49c0-.55-.45-1-1-1-1.24 0-2.45-.2-3.57-.57-.1-.04-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2c.28-.28.36-.67.25-1.02zm7.33 9.45c.85.24 1.72.39 2.6.45v1.49c-1.32-.09-2.59-.35-3.8-.75l1.2-1.19zM5.79 8.8c-.41-1.21-.67-2.48-.76-3.8h1.5c.07.89.22 1.76.46 2.59L5.79 8.8z"},"children":[]}]};exports.ic_phone_twotone=ic_phone_twotone;var ic_phone_disabled={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17.34 14.54l-1.43-1.43c.56-.73 1.05-1.5 1.47-2.32l-2.2-2.2c-.28-.28-.36-.67-.25-1.02.37-1.12.57-2.32.57-3.57 0-.55.45-1 1-1H20c.55 0 1 .45 1 1 0 3.98-1.37 7.64-3.66 10.54zm-2.82 2.81C11.63 19.64 7.97 21 4 21c-.55 0-1-.45-1-1v-3.49c0-.55.45-1 1-1 1.24 0 2.45-.2 3.57-.57.35-.12.75-.03 1.02.24l2.2 2.2c.81-.42 1.58-.9 2.3-1.46L1.39 4.22l1.42-1.41L21.19 21.2l-1.41 1.41-5.26-5.26z"},"children":[]}]};exports.ic_phone_disabled=ic_phone_disabled;var ic_phone_disabled_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M17.34,14.54l-1.43-1.43c0.56-0.73,1.05-1.5,1.47-2.32l-2.2-2.2c-0.28-0.28-0.36-0.67-0.25-1.02 C15.3,6.45,15.5,5.25,15.5,4c0-0.55,0.45-1,1-1H20c0.55,0,1,0.45,1,1C21,7.98,19.63,11.64,17.34,14.54z M14.52,17.35 C11.63,19.64,7.97,21,4,21c-0.55,0-1-0.45-1-1v-3.49c0-0.55,0.45-1,1-1c1.24,0,2.45-0.2,3.57-0.57c0.1-0.04,0.21-0.05,0.31-0.05 c0.26,0,0.51,0.1,0.71,0.29l2.2,2.2c0.81-0.42,1.58-0.9,2.3-1.46L1.39,4.22l1.42-1.41L21.19,21.2l-1.41,1.41L14.52,17.35z M7.6,17.02c-0.85,0.24-1.72,0.39-2.6,0.45v1.49c1.32-0.09,2.59-0.35,3.8-0.75L7.6,17.02z M17.46,5 c-0.06,0.89-0.21,1.76-0.45,2.59l1.2,1.2c0.41-1.2,0.67-2.47,0.76-3.79H17.46z"},"children":[{"name":"path","attribs":{"d":"M17.34,14.54l-1.43-1.43c0.56-0.73,1.05-1.5,1.47-2.32l-2.2-2.2c-0.28-0.28-0.36-0.67-0.25-1.02 C15.3,6.45,15.5,5.25,15.5,4c0-0.55,0.45-1,1-1H20c0.55,0,1,0.45,1,1C21,7.98,19.63,11.64,17.34,14.54z M14.52,17.35 C11.63,19.64,7.97,21,4,21c-0.55,0-1-0.45-1-1v-3.49c0-0.55,0.45-1,1-1c1.24,0,2.45-0.2,3.57-0.57c0.1-0.04,0.21-0.05,0.31-0.05 c0.26,0,0.51,0.1,0.71,0.29l2.2,2.2c0.81-0.42,1.58-0.9,2.3-1.46L1.39,4.22l1.42-1.41L21.19,21.2l-1.41,1.41L14.52,17.35z M7.6,17.02c-0.85,0.24-1.72,0.39-2.6,0.45v1.49c1.32-0.09,2.59-0.35,3.8-0.75L7.6,17.02z M17.46,5 c-0.06,0.89-0.21,1.76-0.45,2.59l1.2,1.2c0.41-1.2,0.67-2.47,0.76-3.79H17.46z"},"children":[]}]}]}]}]}]};exports.ic_phone_disabled_outline=ic_phone_disabled_outline;var ic_phone_disabled_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M17.34,14.54l-1.43-1.43c0.56-0.73,1.05-1.5,1.47-2.32l-2.2-2.2c-0.28-0.28-0.36-0.67-0.25-1.02 C15.3,6.45,15.5,5.25,15.5,4c0-0.55,0.45-1,1-1H20c0.55,0,1,0.45,1,1C21,7.98,19.63,11.64,17.34,14.54z M14.52,17.35 C11.63,19.64,7.97,21,4,21c-0.55,0-1-0.45-1-1v-3.49c0-0.55,0.45-1,1-1c1.24,0,2.45-0.2,3.57-0.57c0.1-0.04,0.21-0.05,0.31-0.05 c0.26,0,0.51,0.1,0.71,0.29l2.2,2.2c0.81-0.42,1.58-0.9,2.3-1.46L1.39,4.22l1.42-1.41L21.19,21.2l-1.41,1.41L14.52,17.35z M17.46,5c-0.06,0.89-0.21,1.76-0.45,2.59l1.2,1.2c0.41-1.2,0.67-2.47,0.76-3.79H17.46z M7.6,17.02c-0.85,0.24-1.72,0.39-2.6,0.45 v1.49c1.32-0.09,2.59-0.35,3.8-0.75L7.6,17.02z"},"children":[{"name":"path","attribs":{"d":"M17.34,14.54l-1.43-1.43c0.56-0.73,1.05-1.5,1.47-2.32l-2.2-2.2c-0.28-0.28-0.36-0.67-0.25-1.02 C15.3,6.45,15.5,5.25,15.5,4c0-0.55,0.45-1,1-1H20c0.55,0,1,0.45,1,1C21,7.98,19.63,11.64,17.34,14.54z M14.52,17.35 C11.63,19.64,7.97,21,4,21c-0.55,0-1-0.45-1-1v-3.49c0-0.55,0.45-1,1-1c1.24,0,2.45-0.2,3.57-0.57c0.1-0.04,0.21-0.05,0.31-0.05 c0.26,0,0.51,0.1,0.71,0.29l2.2,2.2c0.81-0.42,1.58-0.9,2.3-1.46L1.39,4.22l1.42-1.41L21.19,21.2l-1.41,1.41L14.52,17.35z M17.46,5c-0.06,0.89-0.21,1.76-0.45,2.59l1.2,1.2c0.41-1.2,0.67-2.47,0.76-3.79H17.46z M7.6,17.02c-0.85,0.24-1.72,0.39-2.6,0.45 v1.49c1.32-0.09,2.59-0.35,3.8-0.75L7.6,17.02z"},"children":[]}]}]}]}]}]};exports.ic_phone_disabled_twotone=ic_phone_disabled_twotone;var ic_phone_enabled={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17.38 10.79l-2.2-2.2c-.28-.28-.36-.67-.25-1.02.37-1.12.57-2.32.57-3.57 0-.55.45-1 1-1H20c.55 0 1 .45 1 1 0 9.39-7.61 17-17 17-.55 0-1-.45-1-1v-3.49c0-.55.45-1 1-1 1.24 0 2.45-.2 3.57-.57.35-.12.75-.03 1.02.24l2.2 2.2c2.83-1.45 5.15-3.76 6.59-6.59z"},"children":[]}]};exports.ic_phone_enabled=ic_phone_enabled;var ic_phone_enabled_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M17.46,5c-0.06,0.89-0.21,1.76-0.45,2.59l1.2,1.2c0.41-1.2,0.67-2.47,0.76-3.79H17.46z M7.6,17.02 c-0.85,0.24-1.72,0.39-2.6,0.45v1.49c1.32-0.09,2.59-0.35,3.8-0.75L7.6,17.02z M16.5,3H20c0.55,0,1,0.45,1,1c0,9.39-7.61,17-17,17 c-0.55,0-1-0.45-1-1v-3.49c0-0.55,0.45-1,1-1c1.24,0,2.45-0.2,3.57-0.57c0.1-0.04,0.21-0.05,0.31-0.05c0.26,0,0.51,0.1,0.71,0.29 l2.2,2.2c2.83-1.45,5.15-3.76,6.59-6.59l-2.2-2.2c-0.28-0.28-0.36-0.67-0.25-1.02C15.3,6.45,15.5,5.25,15.5,4 C15.5,3.45,15.95,3,16.5,3z"},"children":[{"name":"path","attribs":{"d":"M17.46,5c-0.06,0.89-0.21,1.76-0.45,2.59l1.2,1.2c0.41-1.2,0.67-2.47,0.76-3.79H17.46z M7.6,17.02 c-0.85,0.24-1.72,0.39-2.6,0.45v1.49c1.32-0.09,2.59-0.35,3.8-0.75L7.6,17.02z M16.5,3H20c0.55,0,1,0.45,1,1c0,9.39-7.61,17-17,17 c-0.55,0-1-0.45-1-1v-3.49c0-0.55,0.45-1,1-1c1.24,0,2.45-0.2,3.57-0.57c0.1-0.04,0.21-0.05,0.31-0.05c0.26,0,0.51,0.1,0.71,0.29 l2.2,2.2c2.83-1.45,5.15-3.76,6.59-6.59l-2.2-2.2c-0.28-0.28-0.36-0.67-0.25-1.02C15.3,6.45,15.5,5.25,15.5,4 C15.5,3.45,15.95,3,16.5,3z"},"children":[]}]}]}]}]}]};exports.ic_phone_enabled_outline=ic_phone_enabled_outline;var ic_phone_enabled_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M21,4c0,9.39-7.61,17-17,17c-0.55,0-1-0.45-1-1v-3.49c0-0.55,0.45-1,1-1c1.24,0,2.45-0.2,3.57-0.57 c0.1-0.04,0.21-0.05,0.31-0.05c0.26,0,0.51,0.1,0.71,0.29l2.2,2.2c2.83-1.45,5.15-3.76,6.59-6.59l-2.2-2.2 c-0.28-0.28-0.36-0.67-0.25-1.02C15.3,6.45,15.5,5.25,15.5,4c0-0.55,0.45-1,1-1H20C20.55,3,21,3.45,21,4z M7.6,17.02 c-0.85,0.24-1.72,0.39-2.6,0.45v1.49c1.32-0.09,2.59-0.35,3.8-0.75L7.6,17.02z M17.46,5c-0.06,0.89-0.21,1.76-0.45,2.59l1.2,1.2 c0.41-1.2,0.67-2.47,0.76-3.79H17.46z"},"children":[{"name":"path","attribs":{"d":"M21,4c0,9.39-7.61,17-17,17c-0.55,0-1-0.45-1-1v-3.49c0-0.55,0.45-1,1-1c1.24,0,2.45-0.2,3.57-0.57 c0.1-0.04,0.21-0.05,0.31-0.05c0.26,0,0.51,0.1,0.71,0.29l2.2,2.2c2.83-1.45,5.15-3.76,6.59-6.59l-2.2-2.2 c-0.28-0.28-0.36-0.67-0.25-1.02C15.3,6.45,15.5,5.25,15.5,4c0-0.55,0.45-1,1-1H20C20.55,3,21,3.45,21,4z M7.6,17.02 c-0.85,0.24-1.72,0.39-2.6,0.45v1.49c1.32-0.09,2.59-0.35,3.8-0.75L7.6,17.02z M17.46,5c-0.06,0.89-0.21,1.76-0.45,2.59l1.2,1.2 c0.41-1.2,0.67-2.47,0.76-3.79H17.46z"},"children":[]}]}]}]}]}]};exports.ic_phone_enabled_twotone=ic_phone_enabled_twotone;var ic_phonelink_erase={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13 8.2l-1-1-4 4-4-4-1 1 4 4-4 4 1 1 4-4 4 4 1-1-4-4 4-4zM19 1H9c-1.1 0-2 .9-2 2v3h2V4h10v16H9v-2H7v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2z"},"children":[]}]};exports.ic_phonelink_erase=ic_phonelink_erase;var ic_phonelink_erase_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13 8.2l-1-1-4 4-4-4-1 1 4 4-4 4 1 1 4-4 4 4 1-1-4-4 4-4zM19 1H9c-1.1 0-2 .9-2 2v3h2V4h10v16H9v-2H7v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2z"},"children":[]}]};exports.ic_phonelink_erase_outline=ic_phonelink_erase_outline;var ic_phonelink_erase_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 17.2l4-4 4 4 1-1-4-4 4-4-1-1-4 4-4-4-1 1 4 4-4 4zM9 23h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2H9c-1.1 0-2 .9-2 2v3h2V4h10v16H9v-2H7v3c0 1.1.9 2 2 2z"},"children":[]}]};exports.ic_phonelink_erase_twotone=ic_phonelink_erase_twotone;var ic_phonelink_lock={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 1H9c-1.1 0-2 .9-2 2v3h2V4h10v16H9v-2H7v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-8.2 10V9.5C10.8 8.1 9.4 7 8 7S5.2 8.1 5.2 9.5V11c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3zm-1.3 0h-3V9.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3V11z"},"children":[]}]};exports.ic_phonelink_lock=ic_phonelink_lock;var ic_phonelink_lock_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 1H9c-1.1 0-2 .9-2 2v3h2V4h10v16H9v-2H7v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-8.2 10V9.5C10.8 8.1 9.4 7 8 7S5.2 8.1 5.2 9.5V11c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3zm-1.3 0h-3V9.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3V11z"},"children":[]}]};exports.ic_phonelink_lock_outline=ic_phonelink_lock_outline;var ic_phonelink_lock_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8 7C6.6 7 5.2 8.1 5.2 9.5V11c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3V9.5C10.8 8.1 9.4 7 8 7zm1.5 4h-3V9.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3V11zM21 21V3c0-1.1-.9-2-2-2H9c-1.1 0-2 .9-2 2v3h2V4h10v16H9v-2H7v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2z"},"children":[]}]};exports.ic_phonelink_lock_twotone=ic_phonelink_lock_twotone;var ic_phonelink_ring={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20.1 7.7l-1 1c1.8 1.8 1.8 4.6 0 6.5l1 1c2.5-2.3 2.5-6.1 0-8.5zM18 9.8l-1 1c.5.7.5 1.6 0 2.3l1 1c1.2-1.2 1.2-3 0-4.3zM14 1H4c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 19H4V4h10v16z"},"children":[]}]};exports.ic_phonelink_ring=ic_phonelink_ring;var ic_phonelink_ring_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20.1 7.7l-1 1c1.8 1.8 1.8 4.6 0 6.5l1 1c2.5-2.3 2.5-6.1 0-8.5zM18 9.8l-1 1c.5.7.5 1.6 0 2.3l1 1c1.2-1.2 1.2-3 0-4.3zM14 1H4c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 19H4V4h10v16z"},"children":[]}]};exports.ic_phonelink_ring_outline=ic_phonelink_ring_outline;var ic_phonelink_ring_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 4h10v16H4z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M14 1H4c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 19H4V4h10v16zm6.1-12.3l-1 1c1.8 1.8 1.8 4.6 0 6.5l1 1c2.5-2.3 2.5-6.1 0-8.5zM17 10.8c.5.7.5 1.6 0 2.3l1 1c1.2-1.2 1.2-3 0-4.3l-1 1z"},"children":[]}]};exports.ic_phonelink_ring_twotone=ic_phonelink_ring_twotone;var ic_phonelink_setup={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10.82 12.49c.02-.16.04-.32.04-.49 0-.17-.02-.33-.04-.49l1.08-.82c.1-.07.12-.21.06-.32l-1.03-1.73c-.06-.11-.2-.15-.31-.11l-1.28.5c-.27-.2-.56-.36-.87-.49l-.2-1.33c0-.12-.11-.21-.24-.21H5.98c-.13 0-.24.09-.26.21l-.2 1.32c-.31.12-.6.3-.87.49l-1.28-.5c-.12-.05-.25 0-.31.11l-1.03 1.73c-.06.12-.03.25.07.33l1.08.82c-.02.16-.03.33-.03.49 0 .17.02.33.04.49l-1.09.83c-.1.07-.12.21-.06.32l1.03 1.73c.06.11.2.15.31.11l1.28-.5c.27.2.56.36.87.49l.2 1.32c.01.12.12.21.25.21h2.06c.13 0 .24-.09.25-.21l.2-1.32c.31-.12.6-.3.87-.49l1.28.5c.12.05.25 0 .31-.11l1.03-1.73c.06-.11.04-.24-.06-.32l-1.1-.83zM7 13.75c-.99 0-1.8-.78-1.8-1.75s.81-1.75 1.8-1.75 1.8.78 1.8 1.75S8 13.75 7 13.75zM18 1.01L8 1c-1.1 0-2 .9-2 2v3h2V5h10v14H8v-1H6v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99z"},"children":[]}]};exports.ic_phonelink_setup=ic_phonelink_setup;var ic_phonelink_setup_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 3v3h2V4h10v16H9v-2H7v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2H9c-1.1 0-2 .9-2 2zm2.5 12.5c.29-.12.55-.29.8-.48l-.02.03 1.01.39c.23.09.49 0 .61-.22l.84-1.46c.12-.21.07-.49-.12-.64l-.85-.68-.02.03c.02-.16.05-.32.05-.48s-.03-.32-.05-.48l.02.03.85-.68c.19-.15.24-.43.12-.64l-.84-1.46c-.12-.21-.38-.31-.61-.22l-1.01.39.02.03c-.25-.17-.51-.34-.8-.46l-.17-1.08C9.3 7.18 9.09 7 8.84 7H7.16c-.25 0-.46.18-.49.42L6.5 8.5c-.29.12-.55.29-.8.48l.02-.03-1.02-.39c-.23-.09-.49 0-.61.22l-.84 1.46c-.12.21-.07.49.12.64l.85.68.02-.03c-.02.15-.05.31-.05.47s.03.32.05.48l-.02-.03-.85.68c-.19.15-.24.43-.12.64l.84 1.46c.12.21.38.31.61.22l1.01-.39-.01-.04c.25.19.51.36.8.48l.17 1.07c.03.25.24.43.49.43h1.68c.25 0 .46-.18.49-.42l.17-1.08zM6 12c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2z"},"children":[]}]};exports.ic_phonelink_setup_outline=ic_phonelink_setup_outline;var ic_phonelink_setup_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 3v3h2V4h10v16H9v-2H7v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2H9c-1.1 0-2 .9-2 2zm2.5 12.5c.29-.12.55-.29.8-.48l-.02.03 1.01.39c.23.09.49 0 .61-.22l.84-1.46c.12-.21.07-.49-.12-.64l-.85-.68-.02.03c.02-.16.05-.32.05-.48s-.03-.32-.05-.48l.02.03.85-.68c.19-.15.24-.43.12-.64l-.84-1.46c-.12-.21-.38-.31-.61-.22l-1.01.39.02.03c-.25-.17-.51-.34-.8-.46l-.17-1.08C9.3 7.18 9.09 7 8.84 7H7.16c-.25 0-.46.18-.49.42L6.5 8.5c-.29.12-.55.29-.8.48l.02-.03-1.02-.39c-.23-.09-.49 0-.61.22l-.84 1.46c-.12.21-.07.49.12.64l.85.68.02-.03c-.02.15-.05.31-.05.47s.03.32.05.48l-.02-.03-.85.68c-.19.15-.24.43-.12.64l.84 1.46c.12.21.38.31.61.22l1.01-.39-.01-.04c.25.19.51.36.8.48l.17 1.07c.03.25.24.43.49.43h1.68c.25 0 .46-.18.49-.42l.17-1.08zM6 12c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2z"},"children":[]}]};exports.ic_phonelink_setup_twotone=ic_phonelink_setup_twotone;var ic_portable_wifi_off={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0zm0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17.56 14.24c.28-.69.44-1.45.44-2.24 0-3.31-2.69-6-6-6-.79 0-1.55.16-2.24.44l1.62 1.62c.2-.03.41-.06.62-.06 2.21 0 4 1.79 4 4 0 .21-.02.42-.05.63l1.61 1.61zM12 4c4.42 0 8 3.58 8 8 0 1.35-.35 2.62-.95 3.74l1.47 1.47C21.46 15.69 22 13.91 22 12c0-5.52-4.48-10-10-10-1.91 0-3.69.55-5.21 1.47l1.46 1.46C9.37 4.34 10.65 4 12 4zM3.27 2.5L2 3.77l2.1 2.1C2.79 7.57 2 9.69 2 12c0 3.7 2.01 6.92 4.99 8.65l1-1.73C5.61 17.53 4 14.96 4 12c0-1.76.57-3.38 1.53-4.69l1.43 1.44C6.36 9.68 6 10.8 6 12c0 2.22 1.21 4.15 3 5.19l1-1.74c-1.19-.7-2-1.97-2-3.45 0-.65.17-1.25.44-1.79l1.58 1.58L10 12c0 1.1.9 2 2 2l.21-.02.01.01 7.51 7.51L21 20.23 4.27 3.5l-1-1z"},"children":[]}]};exports.ic_portable_wifi_off=ic_portable_wifi_off;var ic_portable_wifi_off_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3.42 2.36L2.01 3.78 4.1 5.87C2.79 7.57 2 9.69 2 12c0 3.7 2.01 6.92 4.99 8.65l1-1.73C5.61 17.53 4 14.96 4 12c0-1.76.57-3.38 1.53-4.69l1.43 1.44C6.36 9.68 6 10.8 6 12c0 2.22 1.21 4.15 3 5.19l1-1.74c-1.19-.7-2-1.97-2-3.45 0-.65.17-1.25.44-1.79l1.58 1.58L10 12c0 1.1.9 2 2 2l.21-.02 7.52 7.52 1.41-1.41L3.42 2.36zm14.29 11.46c.18-.57.29-1.19.29-1.82 0-3.31-2.69-6-6-6-.63 0-1.25.11-1.82.29l1.72 1.72c.03 0 .06-.01.1-.01 2.21 0 4 1.79 4 4 0 .04-.01.07-.01.11l1.72 1.71zM12 4c4.42 0 8 3.58 8 8 0 1.2-.29 2.32-.77 3.35l1.49 1.49C21.53 15.4 22 13.76 22 12c0-5.52-4.48-10-10-10-1.76 0-3.4.48-4.84 1.28l1.48 1.48C9.66 4.28 10.8 4 12 4z"},"children":[]}]};exports.ic_portable_wifi_off_outline=ic_portable_wifi_off_outline;var ic_portable_wifi_off_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3.42 2.36L2.01 3.78 4.1 5.87C2.79 7.57 2 9.69 2 12c0 3.7 2.01 6.92 4.99 8.65l1-1.73C5.61 17.53 4 14.96 4 12c0-1.76.57-3.38 1.53-4.69l1.43 1.44C6.36 9.68 6 10.8 6 12c0 2.22 1.21 4.15 3 5.19l1-1.74c-1.19-.7-2-1.97-2-3.45 0-.65.17-1.25.44-1.79l1.58 1.58L10 12c0 1.1.9 2 2 2l.21-.02 7.52 7.52 1.41-1.41L3.42 2.36zm14.29 11.46c.18-.57.29-1.19.29-1.82 0-3.31-2.69-6-6-6-.63 0-1.25.11-1.82.29l1.72 1.72c.03 0 .06-.01.1-.01 2.21 0 4 1.79 4 4 0 .04-.01.07-.01.11l1.72 1.71zM12 4c4.42 0 8 3.58 8 8 0 1.2-.29 2.32-.77 3.35l1.49 1.49C21.53 15.4 22 13.76 22 12c0-5.52-4.48-10-10-10-1.76 0-3.4.48-4.84 1.28l1.48 1.48C9.66 4.28 10.8 4 12 4z"},"children":[]}]};exports.ic_portable_wifi_off_twotone=ic_portable_wifi_off_twotone;var ic_present_to_all={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 3H3c-1.11 0-2 .89-2 2v14c0 1.11.89 2 2 2h18c1.11 0 2-.89 2-2V5c0-1.11-.89-2-2-2zm0 16.02H3V4.98h18v14.04zM10 12H8l4-4 4 4h-2v4h-4v-4z"},"children":[]}]};exports.ic_present_to_all=ic_present_to_all;var ic_present_to_all_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 3H3c-1.11 0-2 .89-2 2v14c0 1.11.89 2 2 2h18c1.11 0 2-.89 2-2V5c0-1.11-.89-2-2-2zm0 16.02H3V4.98h18v14.04zM10 12H8l4-4 4 4h-2v4h-4v-4z"},"children":[]}]};exports.ic_present_to_all_outline=ic_present_to_all_outline;var ic_present_to_all_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 19.02h18V4.98H3v14.04zM12 8l4 4h-2v4h-4v-4H8l4-4z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M10 16h4v-4h2l-4-4-4 4h2zM21 3H3c-1.11 0-2 .89-2 2v14c0 1.11.89 2 2 2h18c1.11 0 2-.89 2-2V5c0-1.11-.89-2-2-2zm0 16.02H3V4.98h18v14.04z"},"children":[]}]};exports.ic_present_to_all_twotone=ic_present_to_all_twotone;var ic_print_disabled={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19.1 17H22v-6c0-1.7-1.3-3-3-3h-9l9.1 9zm-.1-7c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-1-3V3H6v1.1L9 7zM1.2 1.8L0 3l4.9 5C3.3 8.1 2 9.4 2 11v6h4v4h11.9l3 3 1.3-1.3-21-20.9zM8 19v-5h2.9l5 5H8z"},"children":[]}]};exports.ic_print_disabled=ic_print_disabled;var ic_print_disabled_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M1.41 1.6L0 3.01 5 8c-1.66 0-3 1.34-3 3v6h4v4h12l2.95 2.96 1.41-1.41L1.41 1.6zM6 15H4v-4c0-.55.45-1 1-1h2l3 3H6v2zm2 4v-4h4l4 4H8zM8 5h8v3h-5.34l2 2H19c.55 0 1 .45 1 1v4l-2 .01V13h-2.34l4 4H22v-6c0-1.66-1.34-3-3-3h-1V3H6v.36l2 2V5z"},"children":[]},{"name":"circle","attribs":{"cx":"18","cy":"11.51","r":"1"},"children":[]}]};exports.ic_print_disabled_outline=ic_print_disabled_outline;var ic_print_disabled_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 10H5c-.55 0-1 .45-1 1v4h2v-2h4l-3-3z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M1.41 1.6L0 3.01 5 8c-1.66 0-3 1.34-3 3v6h4v4h12l2.95 2.96 1.41-1.41L1.41 1.6zM6 15H4v-4c0-.55.45-1 1-1h2l3 3H6v2zm2 4v-4h4l4 4H8z"},"children":[]},{"name":"path","attribs":{"d":"M18 15.01l2-.01v-4c0-.55-.45-1-1-1h-6.34l3 3H18v2.01zm-1-3.5c0-.55.45-1 1-1s1 .45 1 1-.45 1-1 1-1-.45-1-1z","opacity":".3"},"children":[]},{"name":"circle","attribs":{"cx":"18","cy":"11.51","r":"1"},"children":[]},{"name":"path","attribs":{"d":"M16 5H8v.35L10.66 8H16z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M19 8h-1V3H6v.36l2 2V5h8v3h-5.34l2 2H19c.55 0 1 .45 1 1v4l-2 .01V13h-2.34l4 4H22v-6c0-1.66-1.34-3-3-3z"},"children":[]}]};exports.ic_print_disabled_twotone=ic_print_disabled_twotone;var ic_qr_code={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M3,11h8V3H3V11z M5,5h4v4H5V5z"},"children":[{"name":"path","attribs":{"d":"M3,11h8V3H3V11z M5,5h4v4H5V5z"},"children":[]}]},{"name":"path","attribs":{"d":"M3,21h8v-8H3V21z M5,15h4v4H5V15z"},"children":[{"name":"path","attribs":{"d":"M3,21h8v-8H3V21z M5,15h4v4H5V15z"},"children":[]}]},{"name":"path","attribs":{"d":"M13,3v8h8V3H13z M19,9h-4V5h4V9z"},"children":[{"name":"path","attribs":{"d":"M13,3v8h8V3H13z M19,9h-4V5h4V9z"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"2","x":"19","y":"19"},"children":[{"name":"rect","attribs":{"height":"2","width":"2","x":"19","y":"19"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"2","x":"13","y":"13"},"children":[{"name":"rect","attribs":{"height":"2","width":"2","x":"13","y":"13"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"2","x":"15","y":"15"},"children":[{"name":"rect","attribs":{"height":"2","width":"2","x":"15","y":"15"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"2","x":"13","y":"17"},"children":[{"name":"rect","attribs":{"height":"2","width":"2","x":"13","y":"17"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"2","x":"15","y":"19"},"children":[{"name":"rect","attribs":{"height":"2","width":"2","x":"15","y":"19"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"2","x":"17","y":"17"},"children":[{"name":"rect","attribs":{"height":"2","width":"2","x":"17","y":"17"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"2","x":"17","y":"13"},"children":[{"name":"rect","attribs":{"height":"2","width":"2","x":"17","y":"13"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"2","x":"19","y":"15"},"children":[{"name":"rect","attribs":{"height":"2","width":"2","x":"19","y":"15"},"children":[]}]}]}]}]}]};exports.ic_qr_code=ic_qr_code;var ic_qr_code_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M3,11h8V3H3V11z M5,5h4v4H5V5z"},"children":[{"name":"path","attribs":{"d":"M3,11h8V3H3V11z M5,5h4v4H5V5z"},"children":[]}]},{"name":"path","attribs":{"d":"M3,21h8v-8H3V21z M5,15h4v4H5V15z"},"children":[{"name":"path","attribs":{"d":"M3,21h8v-8H3V21z M5,15h4v4H5V15z"},"children":[]}]},{"name":"path","attribs":{"d":"M13,3v8h8V3H13z M19,9h-4V5h4V9z"},"children":[{"name":"path","attribs":{"d":"M13,3v8h8V3H13z M19,9h-4V5h4V9z"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"2","x":"19","y":"19"},"children":[{"name":"rect","attribs":{"height":"2","width":"2","x":"19","y":"19"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"2","x":"13","y":"13"},"children":[{"name":"rect","attribs":{"height":"2","width":"2","x":"13","y":"13"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"2","x":"15","y":"15"},"children":[{"name":"rect","attribs":{"height":"2","width":"2","x":"15","y":"15"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"2","x":"13","y":"17"},"children":[{"name":"rect","attribs":{"height":"2","width":"2","x":"13","y":"17"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"2","x":"15","y":"19"},"children":[{"name":"rect","attribs":{"height":"2","width":"2","x":"15","y":"19"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"2","x":"17","y":"17"},"children":[{"name":"rect","attribs":{"height":"2","width":"2","x":"17","y":"17"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"2","x":"17","y":"13"},"children":[{"name":"rect","attribs":{"height":"2","width":"2","x":"17","y":"13"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"2","x":"19","y":"15"},"children":[{"name":"rect","attribs":{"height":"2","width":"2","x":"19","y":"15"},"children":[]}]}]}]}]}]};exports.ic_qr_code_outline=ic_qr_code_outline;var ic_qr_code_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"2","width":"2","x":"17","y":"15"},"children":[{"name":"rect","attribs":{"fill":"none","height":"2","width":"2","x":"17","y":"15"},"children":[]}]},{"name":"rect","attribs":{"fill":"none","height":"2","width":"2","x":"15","y":"17"},"children":[{"name":"rect","attribs":{"fill":"none","height":"2","width":"2","x":"15","y":"17"},"children":[]}]},{"name":"rect","attribs":{"height":"4","opacity":".3","width":"4","x":"5","y":"15"},"children":[{"name":"rect","attribs":{"height":"4","opacity":".3","width":"4","x":"5","y":"15"},"children":[]}]},{"name":"rect","attribs":{"height":"4","opacity":".3","width":"4","x":"5","y":"5"},"children":[{"name":"rect","attribs":{"height":"4","opacity":".3","width":"4","x":"5","y":"5"},"children":[]}]},{"name":"rect","attribs":{"height":"4","opacity":".3","width":"4","x":"15","y":"5"},"children":[{"name":"rect","attribs":{"height":"4","opacity":".3","width":"4","x":"15","y":"5"},"children":[]}]},{"name":"path","attribs":{"d":"M3,11h8V3H3V11z M5,5h4v4H5V5z"},"children":[{"name":"path","attribs":{"d":"M3,11h8V3H3V11z M5,5h4v4H5V5z"},"children":[]}]},{"name":"path","attribs":{"d":"M3,21h8v-8H3V21z M5,15h4v4H5V15z"},"children":[{"name":"path","attribs":{"d":"M3,21h8v-8H3V21z M5,15h4v4H5V15z"},"children":[]}]},{"name":"path","attribs":{"d":"M13,3v8h8V3H13z M19,9h-4V5h4V9z"},"children":[{"name":"path","attribs":{"d":"M13,3v8h8V3H13z M19,9h-4V5h4V9z"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"2","x":"19","y":"19"},"children":[{"name":"rect","attribs":{"height":"2","width":"2","x":"19","y":"19"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"2","x":"13","y":"13"},"children":[{"name":"rect","attribs":{"height":"2","width":"2","x":"13","y":"13"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"2","x":"15","y":"15"},"children":[{"name":"rect","attribs":{"height":"2","width":"2","x":"15","y":"15"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"2","x":"13","y":"17"},"children":[{"name":"rect","attribs":{"height":"2","width":"2","x":"13","y":"17"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"2","x":"15","y":"19"},"children":[{"name":"rect","attribs":{"height":"2","width":"2","x":"15","y":"19"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"2","x":"17","y":"17"},"children":[{"name":"rect","attribs":{"height":"2","width":"2","x":"17","y":"17"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"2","x":"17","y":"13"},"children":[{"name":"rect","attribs":{"height":"2","width":"2","x":"17","y":"13"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"2","x":"19","y":"15"},"children":[{"name":"rect","attribs":{"height":"2","width":"2","x":"19","y":"15"},"children":[]}]}]}]}]}]};exports.ic_qr_code_twotone=ic_qr_code_twotone;var ic_qr_code_scanner={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M9.5,6.5v3h-3v-3H9.5 M11,5H5v6h6V5L11,5z M9.5,14.5v3h-3v-3H9.5 M11,13H5v6h6V13L11,13z M17.5,6.5v3h-3v-3H17.5 M19,5h-6v6 h6V5L19,5z M13,13h1.5v1.5H13V13z M14.5,14.5H16V16h-1.5V14.5z M16,13h1.5v1.5H16V13z M13,16h1.5v1.5H13V16z M14.5,17.5H16V19h-1.5 V17.5z M16,16h1.5v1.5H16V16z M17.5,14.5H19V16h-1.5V14.5z M17.5,17.5H19V19h-1.5V17.5z M22,7h-2V4h-3V2h5V7z M22,22v-5h-2v3h-3v2 H22z M2,22h5v-2H4v-3H2V22z M2,2v5h2V4h3V2H2z"},"children":[]}]};exports.ic_qr_code_scanner=ic_qr_code_scanner;var ic_qr_code_scanner_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M9.5,6.5v3h-3v-3H9.5 M11,5H5v6h6V5L11,5z M9.5,14.5v3h-3v-3H9.5 M11,13H5v6h6V13L11,13z M17.5,6.5v3h-3v-3H17.5 M19,5h-6v6 h6V5L19,5z M13,13h1.5v1.5H13V13z M14.5,14.5H16V16h-1.5V14.5z M16,13h1.5v1.5H16V13z M13,16h1.5v1.5H13V16z M14.5,17.5H16V19h-1.5 V17.5z M16,16h1.5v1.5H16V16z M17.5,14.5H19V16h-1.5V14.5z M17.5,17.5H19V19h-1.5V17.5z M22,7h-2V4h-3V2h5V7z M22,22v-5h-2v3h-3v2 H22z M2,22h5v-2H4v-3H2V22z M2,2v5h2V4h3V2H2z"},"children":[]}]};exports.ic_qr_code_scanner_outline=ic_qr_code_scanner_outline;var ic_qr_code_scanner_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M9.5,6.5v3h-3v-3H9.5 M11,5H5v6h6V5L11,5z M9.5,14.5v3h-3v-3H9.5 M11,13H5v6h6V13L11,13z M17.5,6.5v3h-3v-3H17.5 M19,5h-6v6 h6V5L19,5z M13,13h1.5v1.5H13V13z M14.5,14.5H16V16h-1.5V14.5z M16,13h1.5v1.5H16V13z M13,16h1.5v1.5H13V16z M14.5,17.5H16V19h-1.5 V17.5z M16,16h1.5v1.5H16V16z M17.5,14.5H19V16h-1.5V14.5z M17.5,17.5H19V19h-1.5V17.5z M22,7h-2V4h-3V2h5V7z M22,22v-5h-2v3h-3v2 H22z M2,22h5v-2H4v-3H2V22z M2,2v5h2V4h3V2H2z"},"children":[]}]};exports.ic_qr_code_scanner_twotone=ic_qr_code_scanner_twotone;var ic_read_more={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"height":"2","width":"9","x":"13","y":"7"},"children":[{"name":"rect","attribs":{"height":"2","width":"9","x":"13","y":"7"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"9","x":"13","y":"15"},"children":[{"name":"rect","attribs":{"height":"2","width":"9","x":"13","y":"15"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"6","x":"16","y":"11"},"children":[{"name":"rect","attribs":{"height":"2","width":"6","x":"16","y":"11"},"children":[]}]},{"name":"polygon","attribs":{"points":"13,12 8,7 8,11 2,11 2,13 8,13 8,17"},"children":[{"name":"polygon","attribs":{"points":"13,12 8,7 8,11 2,11 2,13 8,13 8,17"},"children":[]}]}]}]}]}]};exports.ic_read_more=ic_read_more;var ic_read_more_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"height":"2","width":"9","x":"13","y":"7"},"children":[{"name":"rect","attribs":{"height":"2","width":"9","x":"13","y":"7"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"9","x":"13","y":"15"},"children":[{"name":"rect","attribs":{"height":"2","width":"9","x":"13","y":"15"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"6","x":"16","y":"11"},"children":[{"name":"rect","attribs":{"height":"2","width":"6","x":"16","y":"11"},"children":[]}]},{"name":"polygon","attribs":{"points":"13,12 8,7 8,11 2,11 2,13 8,13 8,17"},"children":[{"name":"polygon","attribs":{"points":"13,12 8,7 8,11 2,11 2,13 8,13 8,17"},"children":[]}]}]}]}]}]};exports.ic_read_more_outline=ic_read_more_outline;var ic_read_more_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"height":"2","width":"9","x":"13","y":"7"},"children":[{"name":"rect","attribs":{"height":"2","width":"9","x":"13","y":"7"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"9","x":"13","y":"15"},"children":[{"name":"rect","attribs":{"height":"2","width":"9","x":"13","y":"15"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"6","x":"16","y":"11"},"children":[{"name":"rect","attribs":{"height":"2","width":"6","x":"16","y":"11"},"children":[]}]},{"name":"polygon","attribs":{"points":"13,12 8,7 8,11 2,11 2,13 8,13 8,17"},"children":[{"name":"polygon","attribs":{"points":"13,12 8,7 8,11 2,11 2,13 8,13 8,17"},"children":[]}]}]}]}]}]};exports.ic_read_more_twotone=ic_read_more_twotone;var ic_ring_volume={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M23.71 16.67C20.66 13.78 16.54 12 12 12 7.46 12 3.34 13.78.29 16.67c-.18.18-.29.43-.29.71 0 .28.11.53.29.71l2.48 2.48c.18.18.43.29.71.29.27 0 .52-.11.7-.28.79-.74 1.69-1.36 2.66-1.85.33-.16.56-.5.56-.9v-3.1c1.45-.48 3-.73 4.6-.73s3.15.25 4.6.72v3.1c0 .39.23.74.56.9.98.49 1.87 1.12 2.66 1.85.18.18.43.28.7.28.28 0 .53-.11.71-.29l2.48-2.48c.18-.18.29-.43.29-.71 0-.27-.11-.52-.29-.7zM21.16 6.26l-1.41-1.41-3.56 3.55 1.41 1.41s3.45-3.52 3.56-3.55zM13 2h-2v5h2V2zM6.4 9.81L7.81 8.4 4.26 4.84 2.84 6.26c.11.03 3.56 3.55 3.56 3.55z"},"children":[]}]};exports.ic_ring_volume=ic_ring_volume;var ic_ring_volume_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M23.71 16.67C20.66 13.78 16.54 12 12 12 7.46 12 3.34 13.78.29 16.67c-.18.18-.29.43-.29.71 0 .28.11.53.29.71l2.48 2.48c.18.18.43.29.71.29.27 0 .52-.11.7-.28.79-.74 1.69-1.36 2.66-1.85.33-.16.56-.5.56-.9v-3.1c1.45-.48 3-.73 4.6-.73 1.6 0 3.15.25 4.6.72v3.1c0 .39.23.74.56.9.98.49 1.87 1.12 2.66 1.85.18.18.43.28.7.28.28 0 .53-.11.71-.29l2.48-2.48c.18-.18.29-.43.29-.71 0-.27-.11-.52-.29-.7zm-18.31.56c-.66.37-1.29.8-1.87 1.27l-1.07-1.07c.91-.75 1.9-1.39 2.95-1.9v1.7zm15.07 1.26c-.59-.48-1.21-.9-1.87-1.27v-1.7c1.04.51 2.03 1.15 2.94 1.9l-1.07 1.07zm.69-12.23l-1.41-1.41-3.56 3.55 1.41 1.41s3.45-3.52 3.56-3.55zM11 2h2v5h-2zM6.4 9.81L7.81 8.4 4.26 4.84 2.84 6.26c.11.03 3.56 3.55 3.56 3.55z"},"children":[]}]};exports.ic_ring_volume_outline=ic_ring_volume_outline;var ic_ring_volume_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18.6 17.22c.66.37 1.28.79 1.87 1.27l1.07-1.07c-.91-.75-1.9-1.38-2.94-1.9v1.7zM3.53 18.5c.58-.47 1.21-.89 1.87-1.27v-1.71c-1.05.51-2.03 1.15-2.95 1.9l1.08 1.08z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 12C7.46 12 3.34 13.78.29 16.67c-.18.18-.29.43-.29.71 0 .28.11.53.29.71l2.48 2.48c.18.18.43.29.71.29.27 0 .52-.11.7-.28.79-.74 1.69-1.36 2.66-1.85.33-.16.56-.5.56-.9v-3.1c1.45-.48 3-.73 4.6-.73 1.6 0 3.15.25 4.6.72v3.1c0 .39.23.74.56.9.98.49 1.87 1.12 2.66 1.85.18.18.43.28.7.28.28 0 .53-.11.71-.29l2.48-2.48c.18-.18.29-.43.29-.71 0-.27-.11-.52-.29-.7C20.66 13.78 16.54 12 12 12zm-6.6 5.23c-.66.37-1.29.8-1.87 1.27l-1.07-1.07c.91-.75 1.9-1.39 2.95-1.9v1.7zm15.07 1.26c-.59-.48-1.21-.9-1.87-1.27v-1.7c1.04.51 2.03 1.15 2.94 1.9l-1.07 1.07zM16.19 8.4l1.41 1.41s3.45-3.52 3.56-3.55l-1.41-1.41-3.56 3.55zM11 2h2v5h-2zM6.4 9.81L7.81 8.4 4.26 4.84 2.84 6.26c.11.03 3.56 3.55 3.56 3.55z"},"children":[]}]};exports.ic_ring_volume_twotone=ic_ring_volume_twotone;var ic_rss_feed={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"6.18","cy":"17.82","r":"2.18"},"children":[]},{"name":"path","attribs":{"d":"M4 4.44v2.83c7.03 0 12.73 5.7 12.73 12.73h2.83c0-8.59-6.97-15.56-15.56-15.56zm0 5.66v2.83c3.9 0 7.07 3.17 7.07 7.07h2.83c0-5.47-4.43-9.9-9.9-9.9z"},"children":[]}]};exports.ic_rss_feed=ic_rss_feed;var ic_rss_feed_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"6.18","cy":"17.82","r":"2.18"},"children":[]},{"name":"path","attribs":{"d":"M4 4.44v2.83c7.03 0 12.73 5.7 12.73 12.73h2.83c0-8.59-6.97-15.56-15.56-15.56zm0 5.66v2.83c3.9 0 7.07 3.17 7.07 7.07h2.83c0-5.47-4.43-9.9-9.9-9.9z"},"children":[]}]};exports.ic_rss_feed_outline=ic_rss_feed_outline;var ic_rss_feed_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"6.18","cy":"17.82","r":"2.18"},"children":[]},{"name":"path","attribs":{"d":"M4 4.44v2.83c7.03 0 12.73 5.7 12.73 12.73h2.83c0-8.59-6.97-15.56-15.56-15.56zm0 5.66v2.83c3.9 0 7.07 3.17 7.07 7.07h2.83c0-5.47-4.43-9.9-9.9-9.9z"},"children":[]}]};exports.ic_rss_feed_twotone=ic_rss_feed_twotone;var ic_rtt={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"title","attribs":{},"children":[]},{"name":"path","attribs":{"d":"M9.03 3l-1.11 7.07h2.62l.7-4.5h2.58L11.8 18.43H9.47L9.06 21h7.27l.4-2.57h-2.35l2-12.86h2.58l-.71 4.5h2.65L22 3H9.03zM8 5H4l-.31 2h4L8 5zm-.61 4h-4l-.31 2h4l.31-2zm.92 8h-6L2 19h6l.31-2zm.62-4h-6l-.31 2h6.01l.3-2z"},"children":[]}]};exports.ic_rtt=ic_rtt;var ic_screen_share={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 18c1.1 0 1.99-.9 1.99-2L22 6c0-1.11-.9-2-2-2H4c-1.11 0-2 .89-2 2v10c0 1.1.89 2 2 2H0v2h24v-2h-4zm-7-3.53v-2.19c-2.78 0-4.61.85-6 2.72.56-2.67 2.11-5.33 6-5.87V7l4 3.73-4 3.74z"},"children":[]}]};exports.ic_screen_share=ic_screen_share;var ic_screen_share_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 18c1.1 0 1.99-.9 1.99-2L22 6c0-1.11-.9-2-2-2H4c-1.11 0-2 .89-2 2v10c0 1.1.89 2 2 2H0v2h24v-2h-4zM4 16V6h16v10.01L4 16zm9-6.87c-3.89.54-5.44 3.2-6 5.87 1.39-1.87 3.22-2.72 6-2.72v2.19l4-3.74L13 7v2.13z"},"children":[]}]};exports.ic_screen_share_outline=ic_screen_share_outline;var ic_screen_share_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 16V6H4v10.01L20 16zm-7-1.53v-2.19c-2.78 0-4.61.85-6 2.72.56-2.67 2.11-5.33 6-5.87V7l4 3.73-4 3.74z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 18c1.1 0 1.99-.9 1.99-2L22 6c0-1.11-.9-2-2-2H4c-1.11 0-2 .89-2 2v10c0 1.1.89 2 2 2H0v2h24v-2h-4zM4 16V6h16v10.01L4 16zm9-6.87c-3.89.54-5.44 3.2-6 5.87 1.39-1.87 3.22-2.72 6-2.72v2.19l4-3.74L13 7v2.13z"},"children":[]}]};exports.ic_screen_share_twotone=ic_screen_share_twotone;var ic_sentiment_satisfied_alt={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"15.5","cy":"9.5","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"8.5","cy":"9.5","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"15.5","cy":"9.5","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"8.5","cy":"9.5","r":"1.5"},"children":[]},{"name":"path","attribs":{"d":"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm0-2.5c2.33 0 4.32-1.45 5.12-3.5h-1.67c-.69 1.19-1.97 2-3.45 2s-2.75-.81-3.45-2H6.88c.8 2.05 2.79 3.5 5.12 3.5z"},"children":[]}]};exports.ic_sentiment_satisfied_alt=ic_sentiment_satisfied_alt;var ic_sentiment_satisfied_alt_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"15.5","cy":"9.5","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"8.5","cy":"9.5","r":"1.5"},"children":[]},{"name":"path","attribs":{"d":"M12 16c-1.48 0-2.75-.81-3.45-2H6.88c.8 2.05 2.79 3.5 5.12 3.5s4.32-1.45 5.12-3.5h-1.67c-.69 1.19-1.97 2-3.45 2zm-.01-14C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"},"children":[]}]};exports.ic_sentiment_satisfied_alt_outline=ic_sentiment_satisfied_alt_outline;var ic_sentiment_satisfied_alt_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm3.5 4c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-7 0c.83 0 1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5 7.67 8 8.5 8zm3.5 9.5c-2.33 0-4.32-1.45-5.12-3.5h1.67c.7 1.19 1.97 2 3.45 2s2.76-.81 3.45-2h1.67c-.8 2.05-2.79 3.5-5.12 3.5z","opacity":".3"},"children":[]},{"name":"circle","attribs":{"cx":"15.5","cy":"9.5","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"8.5","cy":"9.5","r":"1.5"},"children":[]},{"name":"path","attribs":{"d":"M12 16c-1.48 0-2.75-.81-3.45-2H6.88c.8 2.05 2.79 3.5 5.12 3.5s4.32-1.45 5.12-3.5h-1.67c-.69 1.19-1.97 2-3.45 2zm-.01-14C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"},"children":[]}]};exports.ic_sentiment_satisfied_alt_twotone=ic_sentiment_satisfied_alt_twotone;var ic_speaker_phone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0zm0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 7.07L8.43 8.5c.91-.91 2.18-1.48 3.57-1.48s2.66.57 3.57 1.48L17 7.07C15.72 5.79 13.95 5 12 5s-3.72.79-5 2.07zM12 1C8.98 1 6.24 2.23 4.25 4.21l1.41 1.41C7.28 4 9.53 3 12 3s4.72 1 6.34 2.62l1.41-1.41C17.76 2.23 15.02 1 12 1zm2.86 9.01L9.14 10C8.51 10 8 10.51 8 11.14v9.71c0 .63.51 1.14 1.14 1.14h5.71c.63 0 1.14-.51 1.14-1.14v-9.71c.01-.63-.5-1.13-1.13-1.13zM15 20H9v-8h6v8z"},"children":[]}]};exports.ic_speaker_phone=ic_speaker_phone;var ic_speaker_phone_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 7.07L8.43 8.5c.91-.91 2.18-1.48 3.57-1.48s2.66.57 3.57 1.48L17 7.07C15.72 5.79 13.95 5 12 5s-3.72.79-5 2.07zM12 1C8.98 1 6.24 2.23 4.25 4.21l1.41 1.41C7.28 4 9.53 3 12 3s4.72 1 6.34 2.62l1.41-1.41C17.76 2.23 15.02 1 12 1zm2.86 9.01L9.14 10C8.51 10 8 10.51 8 11.14v9.71c0 .63.51 1.14 1.14 1.14h5.71c.63 0 1.14-.51 1.14-1.14v-9.71c.01-.63-.5-1.13-1.13-1.13zM15 20H9v-8h6v8z"},"children":[]}]};exports.ic_speaker_phone_outline=ic_speaker_phone_outline;var ic_speaker_phone_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9 12h6v8H9z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 1C8.98 1 6.24 2.23 4.25 4.21l1.41 1.41C7.28 4 9.53 3 12 3s4.72 1 6.34 2.62l1.41-1.41C17.76 2.23 15.02 1 12 1zM7 7.07L8.43 8.5c.91-.91 2.18-1.48 3.57-1.48s2.66.57 3.57 1.48L17 7.07C15.72 5.79 13.95 5 12 5s-3.72.79-5 2.07zm7.86 2.94L9.14 10C8.51 10 8 10.51 8 11.14v9.71c0 .63.51 1.14 1.14 1.14h5.71c.63 0 1.14-.51 1.14-1.14v-9.71c.01-.63-.5-1.13-1.13-1.13zM15 20H9v-8h6v8z"},"children":[]}]};exports.ic_speaker_phone_twotone=ic_speaker_phone_twotone;var ic_stay_current_landscape={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M1.01 7L1 17c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2H3c-1.1 0-1.99.9-1.99 2zM19 7v10H5V7h14z"},"children":[]}]};exports.ic_stay_current_landscape=ic_stay_current_landscape;var ic_stay_current_landscape_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M1.01 7L1 17c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2H3c-1.1 0-1.99.9-1.99 2zM19 7v10H5V7h14z"},"children":[]}]};exports.ic_stay_current_landscape_outline=ic_stay_current_landscape_outline;var ic_stay_current_landscape_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 7h14v10H5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M21 5H3c-1.1 0-1.99.9-1.99 2L1 17c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-2 12H5V7h14v10z"},"children":[]}]};exports.ic_stay_current_landscape_twotone=ic_stay_current_landscape_twotone;var ic_stay_current_portrait={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 1.01L7 1c-1.1 0-1.99.9-1.99 2v18c0 1.1.89 2 1.99 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z"},"children":[]}]};exports.ic_stay_current_portrait=ic_stay_current_portrait;var ic_stay_current_portrait_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 1.01L7 1c-1.1 0-1.99.9-1.99 2v18c0 1.1.89 2 1.99 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z"},"children":[]}]};exports.ic_stay_current_portrait_outline=ic_stay_current_portrait_outline;var ic_stay_current_portrait_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 5h10v14H7z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M17 1.01L7 1c-1.1 0-1.99.9-1.99 2v18c0 1.1.89 2 1.99 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z"},"children":[]}]};exports.ic_stay_current_portrait_twotone=ic_stay_current_portrait_twotone;var ic_stay_primary_landscape={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M1.01 7L1 17c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2H3c-1.1 0-1.99.9-1.99 2zM19 7v10H5V7h14z"},"children":[]}]};exports.ic_stay_primary_landscape=ic_stay_primary_landscape;var ic_stay_primary_landscape_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M1.01 7L1 17c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2H3c-1.1 0-1.99.9-1.99 2zM19 7v10H5V7h14z"},"children":[]}]};exports.ic_stay_primary_landscape_outline=ic_stay_primary_landscape_outline;var ic_stay_primary_landscape_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 7h14v10H5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M21 5H3c-1.1 0-1.99.9-1.99 2L1 17c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-2 12H5V7h14v10z"},"children":[]}]};exports.ic_stay_primary_landscape_twotone=ic_stay_primary_landscape_twotone;var ic_stay_primary_portrait={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 1.01L7 1c-1.1 0-1.99.9-1.99 2v18c0 1.1.89 2 1.99 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z"},"children":[]}]};exports.ic_stay_primary_portrait=ic_stay_primary_portrait;var ic_stay_primary_portrait_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 1.01L7 1c-1.1 0-1.99.9-1.99 2v18c0 1.1.89 2 1.99 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z"},"children":[]}]};exports.ic_stay_primary_portrait_outline=ic_stay_primary_portrait_outline;var ic_stay_primary_portrait_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 5h10v14H7z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M17 1.01L7 1c-1.1 0-1.99.9-1.99 2v18c0 1.1.89 2 1.99 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z"},"children":[]}]};exports.ic_stay_primary_portrait_twotone=ic_stay_primary_portrait_twotone;var ic_stop_screen_share={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21.22 18.02l2 2H24v-2h-2.78zm.77-2l.01-10c0-1.11-.9-2-2-2H7.22l5.23 5.23c.18-.04.36-.07.55-.1V7.02l4 3.73-1.58 1.47 5.54 5.54c.61-.33 1.03-.99 1.03-1.74zM2.39 1.73L1.11 3l1.54 1.54c-.4.36-.65.89-.65 1.48v10c0 1.1.89 2 2 2H0v2h18.13l2.71 2.71 1.27-1.27L2.39 1.73zM7 15.02c.31-1.48.92-2.95 2.07-4.06l1.59 1.59c-1.54.38-2.7 1.18-3.66 2.47z"},"children":[]}]};exports.ic_stop_screen_share=ic_stop_screen_share;var ic_stop_screen_share_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21.79 18l2 2H24v-2h-2.21zM1.11 2.98l1.55 1.56c-.41.37-.66.89-.66 1.48V16c0 1.1.9 2 2.01 2H0v2h18.13l2.71 2.71 1.41-1.41L2.52 1.57 1.11 2.98zM4 6.02h.13l4.95 4.93C7.94 12.07 7.31 13.52 7 15c.96-1.29 2.13-2.08 3.67-2.46l3.46 3.48H4v-10zm16 0v10.19l1.3 1.3c.42-.37.7-.89.7-1.49v-10c0-1.11-.9-2-2-2H7.8l2 2H20zm-7.07 3.13l2.79 2.78 1.28-1.2L13 7v2.13l-.07.02z"},"children":[]}]};exports.ic_stop_screen_share_outline=ic_stop_screen_share_outline;var ic_stop_screen_share_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10.67 12.54C9.13 12.92 7.96 13.71 7 15c.31-1.48.94-2.93 2.08-4.05L4.13 6.02H4v10.01h10.14l-3.47-3.49z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M21.79 18l2 2H24v-2h-2.21zM1.11 2.98l1.55 1.56c-.41.37-.66.89-.66 1.48V16c0 1.1.9 2 2.01 2H0v2h18.13l2.71 2.71 1.41-1.41L2.52 1.57 1.11 2.98zM4 6.02h.13l4.95 4.93C7.94 12.07 7.31 13.52 7 15c.96-1.29 2.13-2.08 3.67-2.46l3.46 3.48H4v-10zm16 0v10.19l1.3 1.3c.42-.37.7-.89.7-1.49v-10c0-1.11-.9-2-2-2H7.8l2 2H20zm-7.07 3.13l2.79 2.78 1.28-1.2L13 7v2.13l-.07.02z"},"children":[]},{"name":"path","attribs":{"d":"M20 6.02H9.8l3.13 3.13c.02 0 .04-.01.07-.02V7l4 3.73-1.28 1.2L20 16.21V6.02z","opacity":".3"},"children":[]}]};exports.ic_stop_screen_share_twotone=ic_stop_screen_share_twotone;var ic_swap_calls={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 4l-4 4h3v7c0 1.1-.9 2-2 2s-2-.9-2-2V8c0-2.21-1.79-4-4-4S5 5.79 5 8v7H2l4 4 4-4H7V8c0-1.1.9-2 2-2s2 .9 2 2v7c0 2.21 1.79 4 4 4s4-1.79 4-4V8h3l-4-4z"},"children":[]}]};exports.ic_swap_calls=ic_swap_calls;var ic_swap_calls_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 4l-4 4h3v7c0 1.1-.9 2-2 2s-2-.9-2-2V8c0-2.21-1.79-4-4-4S5 5.79 5 8v7H2l4 4 4-4H7V8c0-1.1.9-2 2-2s2 .9 2 2v7c0 2.21 1.79 4 4 4s4-1.79 4-4V8h3l-4-4z"},"children":[]}]};exports.ic_swap_calls_outline=ic_swap_calls_outline;var ic_swap_calls_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14 8h3v7c0 1.1-.9 2-2 2s-2-.9-2-2V8c0-2.21-1.79-4-4-4S5 5.79 5 8v7H2l4 4 4-4H7V8c0-1.1.9-2 2-2s2 .9 2 2v7c0 2.21 1.79 4 4 4s4-1.79 4-4V8h3l-4-4-4 4z"},"children":[]}]};exports.ic_swap_calls_twotone=ic_swap_calls_twotone;var ic_textsms={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM9 11H7V9h2v2zm4 0h-2V9h2v2zm4 0h-2V9h2v2z"},"children":[]}]};exports.ic_textsms=ic_textsms;var ic_textsms_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H6l-2 2V4h16v12zM7 9h2v2H7zm4 0h2v2h-2zm4 0h2v2h-2z"},"children":[]}]};exports.ic_textsms_outline=ic_textsms_outline;var ic_textsms_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 18l2-2h14V4H4v14zm11-9h2v2h-2V9zm-4 0h2v2h-2V9zM7 9h2v2H7V9z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H6l-2 2V4h16v12zM7 9h2v2H7zm4 0h2v2h-2zm4 0h2v2h-2z"},"children":[]}]};exports.ic_textsms_twotone=ic_textsms_twotone;var ic_unsubscribe={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M18.5 13c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm2 4h-4v-1h4v1zm-6.95 0c-.02-.17-.05-.33-.05-.5 0-2.76 2.24-5 5-5 .92 0 1.76.26 2.5.69V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h8.55zM12 10.5L5 7V5l7 3.5L19 5v2l-7 3.5z"},"children":[]}]};exports.ic_unsubscribe=ic_unsubscribe;var ic_unsubscribe_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20.99 14.04V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h10.05c.28 1.92 2.1 3.35 4.18 2.93 1.34-.27 2.43-1.37 2.7-2.71.25-1.24-.16-2.39-.94-3.18zm-2-9.04L12 8.5 5 5h13.99zm-3.64 10H5V7l7 3.5L19 7v6.05c-.16-.02-.33-.05-.5-.05-1.39 0-2.59.82-3.15 2zm5.15 2h-4v-1h4v1z"},"children":[]}]};exports.ic_unsubscribe_outline=ic_unsubscribe_outline;var ic_unsubscribe_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18.99 5H5l7 3.5zm.01 8.05V7l-7 3.5L5 7v8h10.35c.56-1.18 1.76-2 3.15-2 .17 0 .34.03.5.05z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20.99 14.04V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h10.05c.28 1.92 2.1 3.35 4.18 2.93 1.34-.27 2.43-1.37 2.7-2.71.25-1.24-.16-2.39-.94-3.18zm-2-9.04L12 8.5 5 5h13.99zm-3.64 10H5V7l7 3.5L19 7v6.05c-.16-.02-.33-.05-.5-.05-1.39 0-2.59.82-3.15 2zm5.15 2h-4v-1h4v1z"},"children":[]}]};exports.ic_unsubscribe_twotone=ic_unsubscribe_twotone;var ic_voicemail={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18.5 6C15.46 6 13 8.46 13 11.5c0 1.33.47 2.55 1.26 3.5H9.74c.79-.95 1.26-2.17 1.26-3.5C11 8.46 8.54 6 5.5 6S0 8.46 0 11.5 2.46 17 5.5 17h13c3.04 0 5.5-2.46 5.5-5.5S21.54 6 18.5 6zm-13 9C3.57 15 2 13.43 2 11.5S3.57 8 5.5 8 9 9.57 9 11.5 7.43 15 5.5 15zm13 0c-1.93 0-3.5-1.57-3.5-3.5S16.57 8 18.5 8 22 9.57 22 11.5 20.43 15 18.5 15z"},"children":[]}]};exports.ic_voicemail=ic_voicemail;var ic_voicemail_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18.5 6C15.46 6 13 8.46 13 11.5c0 1.33.47 2.55 1.26 3.5H9.74c.79-.95 1.26-2.17 1.26-3.5C11 8.46 8.54 6 5.5 6S0 8.46 0 11.5 2.46 17 5.5 17h13c3.04 0 5.5-2.46 5.5-5.5S21.54 6 18.5 6zm-13 9C3.57 15 2 13.43 2 11.5S3.57 8 5.5 8 9 9.57 9 11.5 7.43 15 5.5 15zm13 0c-1.93 0-3.5-1.57-3.5-3.5S16.57 8 18.5 8 22 9.57 22 11.5 20.43 15 18.5 15z"},"children":[]}]};exports.ic_voicemail_outline=ic_voicemail_outline;var ic_voicemail_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18.5 6C15.46 6 13 8.46 13 11.5c0 1.33.47 2.55 1.26 3.5H9.74c.79-.95 1.26-2.17 1.26-3.5C11 8.46 8.54 6 5.5 6S0 8.46 0 11.5 2.46 17 5.5 17h13c3.04 0 5.5-2.46 5.5-5.5S21.54 6 18.5 6zm-13 9C3.57 15 2 13.43 2 11.5S3.57 8 5.5 8 9 9.57 9 11.5 7.43 15 5.5 15zm13 0c-1.93 0-3.5-1.57-3.5-3.5S16.57 8 18.5 8 22 9.57 22 11.5 20.43 15 18.5 15z"},"children":[]}]};exports.ic_voicemail_twotone=ic_voicemail_twotone;var ic_vpn_key={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12.65 10C11.83 7.67 9.61 6 7 6c-3.31 0-6 2.69-6 6s2.69 6 6 6c2.61 0 4.83-1.67 5.65-4H17v4h4v-4h2v-4H12.65zM7 14c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"},"children":[]}]};exports.ic_vpn_key=ic_vpn_key;var ic_vpn_key_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 19h-6v-4h-2.68c-1.14 2.42-3.6 4-6.32 4-3.86 0-7-3.14-7-7s3.14-7 7-7c2.72 0 5.17 1.58 6.32 4H24v6h-2v4zm-4-2h2v-4h2v-2H11.94l-.23-.67C11.01 8.34 9.11 7 7 7c-2.76 0-5 2.24-5 5s2.24 5 5 5c2.11 0 4.01-1.34 4.71-3.33l.23-.67H18v4zM7 15c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3zm0-4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z"},"children":[]}]};exports.ic_vpn_key_outline=ic_vpn_key_outline;var ic_vpn_key_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11.71 10.33C11.01 8.34 9.11 7 7 7c-2.76 0-5 2.24-5 5s2.24 5 5 5c2.11 0 4.01-1.34 4.71-3.33l.23-.67H18v4h2v-4h2v-2H11.94l-.23-.67zM7 15c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M7 5c-3.86 0-7 3.14-7 7s3.14 7 7 7c2.72 0 5.17-1.58 6.32-4H16v4h6v-4h2V9H13.32C12.17 6.58 9.72 5 7 5zm15 8h-2v4h-2v-4h-6.06l-.23.67C11.01 15.66 9.11 17 7 17c-2.76 0-5-2.24-5-5s2.24-5 5-5c2.11 0 4.01 1.34 4.71 3.33l.23.67H22v2zM7 9c-1.65 0-3 1.35-3 3s1.35 3 3 3 3-1.35 3-3-1.35-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z"},"children":[]}]};exports.ic_vpn_key_twotone=ic_vpn_key_twotone;var ic_wifi_calling={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M22,4.95C21.79,4.78,19.67,3,16.5,3c-3.18,0-5.29,1.78-5.5,1.95L16.5,12L22,4.95z"},"children":[{"name":"path","attribs":{"d":"M22,4.95C21.79,4.78,19.67,3,16.5,3c-3.18,0-5.29,1.78-5.5,1.95L16.5,12L22,4.95z"},"children":[]}]},{"name":"path","attribs":{"d":"M20,15.51c-1.24,0-2.45-0.2-3.57-0.57c-0.35-0.12-0.75-0.03-1.02,0.24l-2.2,2.2c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2 C9.1,8.31,9.18,7.92,9.07,7.57C8.7,6.45,8.5,5.25,8.5,4c0-0.55-0.45-1-1-1H4C3.45,3,3,3.45,3,4c0,9.39,7.61,17,17,17 c0.55,0,1-0.45,1-1v-3.49C21,15.96,20.55,15.51,20,15.51z"},"children":[{"name":"path","attribs":{"d":"M20,15.51c-1.24,0-2.45-0.2-3.57-0.57c-0.35-0.12-0.75-0.03-1.02,0.24l-2.2,2.2c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2 C9.1,8.31,9.18,7.92,9.07,7.57C8.7,6.45,8.5,5.25,8.5,4c0-0.55-0.45-1-1-1H4C3.45,3,3,3.45,3,4c0,9.39,7.61,17,17,17 c0.55,0,1-0.45,1-1v-3.49C21,15.96,20.55,15.51,20,15.51z"},"children":[]}]}]}]}]}]};exports.ic_wifi_calling=ic_wifi_calling;var ic_wifi_calling_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M20,15.51c-1.24,0-2.45-0.2-3.57-0.57c-0.1-0.04-0.21-0.05-0.31-0.05c-0.26,0-0.51,0.1-0.71,0.29l-2.2,2.2 c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2C9.1,8.31,9.18,7.92,9.07,7.57C8.7,6.45,8.5,5.25,8.5,4c0-0.55-0.45-1-1-1H4 C3.45,3,3,3.45,3,4c0,9.39,7.61,17,17,17c0.55,0,1-0.45,1-1v-3.49C21,15.96,20.55,15.51,20,15.51z M5.03,5h1.5 C6.6,5.89,6.75,6.76,6.99,7.59l-1.2,1.2C5.38,7.59,5.12,6.32,5.03,5z M19,18.97c-1.32-0.09-2.59-0.35-3.8-0.75l1.19-1.19 c0.85,0.24,1.72,0.39,2.6,0.45V18.97z"},"children":[{"name":"path","attribs":{"d":"M20,15.51c-1.24,0-2.45-0.2-3.57-0.57c-0.1-0.04-0.21-0.05-0.31-0.05c-0.26,0-0.51,0.1-0.71,0.29l-2.2,2.2 c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2C9.1,8.31,9.18,7.92,9.07,7.57C8.7,6.45,8.5,5.25,8.5,4c0-0.55-0.45-1-1-1H4 C3.45,3,3,3.45,3,4c0,9.39,7.61,17,17,17c0.55,0,1-0.45,1-1v-3.49C21,15.96,20.55,15.51,20,15.51z M5.03,5h1.5 C6.6,5.89,6.75,6.76,6.99,7.59l-1.2,1.2C5.38,7.59,5.12,6.32,5.03,5z M19,18.97c-1.32-0.09-2.59-0.35-3.8-0.75l1.19-1.19 c0.85,0.24,1.72,0.39,2.6,0.45V18.97z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M22,4.95C21.79,4.78,19.67,3,16.5,3c-3.18,0-5.29,1.78-5.5,1.95L16.5,12L22,4.95z"},"children":[{"name":"path","attribs":{"d":"M22,4.95C21.79,4.78,19.67,3,16.5,3c-3.18,0-5.29,1.78-5.5,1.95L16.5,12L22,4.95z"},"children":[]}]}]}]}]}]}]}]};exports.ic_wifi_calling_outline=ic_wifi_calling_outline;var ic_wifi_calling_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M15.2,18.21c1.2,0.41,2.48,0.67,3.8,0.75v-1.49c-0.88-0.07-1.75-0.22-2.6-0.45L15.2,18.21z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M15.2,18.21c1.2,0.41,2.48,0.67,3.8,0.75v-1.49c-0.88-0.07-1.75-0.22-2.6-0.45L15.2,18.21z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M6.54,5h-1.5c0.09,1.32,0.35,2.59,0.75,3.8l1.2-1.2C6.75,6.76,6.6,5.89,6.54,5z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M6.54,5h-1.5c0.09,1.32,0.35,2.59,0.75,3.8l1.2-1.2C6.75,6.76,6.6,5.89,6.54,5z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M20,15.51c-1.24,0-2.45-0.2-3.57-0.57c-0.1-0.04-0.21-0.05-0.31-0.05c-0.26,0-0.51,0.1-0.71,0.29l-2.2,2.2 c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2C9.1,8.31,9.18,7.92,9.07,7.57C8.7,6.45,8.5,5.25,8.5,4c0-0.55-0.45-1-1-1H4 C3.45,3,3,3.45,3,4c0,9.39,7.61,17,17,17c0.55,0,1-0.45,1-1v-3.49C21,15.96,20.55,15.51,20,15.51z M5.03,5h1.5 C6.6,5.89,6.75,6.76,6.99,7.59l-1.2,1.2C5.38,7.59,5.12,6.32,5.03,5z M19,18.97c-1.32-0.09-2.59-0.35-3.8-0.75l1.19-1.19 c0.85,0.24,1.72,0.39,2.6,0.45V18.97z"},"children":[{"name":"path","attribs":{"d":"M20,15.51c-1.24,0-2.45-0.2-3.57-0.57c-0.1-0.04-0.21-0.05-0.31-0.05c-0.26,0-0.51,0.1-0.71,0.29l-2.2,2.2 c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2C9.1,8.31,9.18,7.92,9.07,7.57C8.7,6.45,8.5,5.25,8.5,4c0-0.55-0.45-1-1-1H4 C3.45,3,3,3.45,3,4c0,9.39,7.61,17,17,17c0.55,0,1-0.45,1-1v-3.49C21,15.96,20.55,15.51,20,15.51z M5.03,5h1.5 C6.6,5.89,6.75,6.76,6.99,7.59l-1.2,1.2C5.38,7.59,5.12,6.32,5.03,5z M19,18.97c-1.32-0.09-2.59-0.35-3.8-0.75l1.19-1.19 c0.85,0.24,1.72,0.39,2.6,0.45V18.97z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M22,4.95C21.79,4.78,19.67,3,16.5,3c-3.18,0-5.29,1.78-5.5,1.95L16.5,12L22,4.95z"},"children":[{"name":"path","attribs":{"d":"M22,4.95C21.79,4.78,19.67,3,16.5,3c-3.18,0-5.29,1.78-5.5,1.95L16.5,12L22,4.95z"},"children":[]}]}]}]}]}]}]}]};exports.ic_wifi_calling_twotone=ic_wifi_calling_twotone;var ic_add={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"},"children":[]}]};exports.ic_add=ic_add;var ic_add_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"},"children":[]}]};exports.ic_add_outline=ic_add_outline;var ic_add_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"},"children":[]}]};exports.ic_add_twotone=ic_add_twotone;var ic_add_box={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-2 10h-4v4h-2v-4H7v-2h4V7h2v4h4v2z"},"children":[]}]};exports.ic_add_box=ic_add_box;var ic_add_box_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-8-2h2v-4h4v-2h-4V7h-2v4H7v2h4z"},"children":[]}]};exports.ic_add_box_outline=ic_add_box_outline;var ic_add_box_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 19h14V5H5v14zm2-8h4V7h2v4h4v2h-4v4h-2v-4H7v-2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-8-2h2v-4h4v-2h-4V7h-2v4H7v2h4z"},"children":[]}]};exports.ic_add_box_twotone=ic_add_box_twotone;var ic_add_circle={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5 11h-4v4h-2v-4H7v-2h4V7h2v4h4v2z"},"children":[]}]};exports.ic_add_circle=ic_add_circle;var ic_add_circle_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5 11h-4v4h-2v-4H7v-2h4V7h2v4h4v2z"},"children":[]}]};exports.ic_add_circle_outline=ic_add_circle_outline;var ic_add_circle_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm5 9h-4v4h-2v-4H7v-2h4V7h2v4h4v2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4zm-1-5C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"},"children":[]}]};exports.ic_add_circle_twotone=ic_add_circle_twotone;var ic_add_circle_outline_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"},"children":[]}]};exports.ic_add_circle_outline_outline=ic_add_circle_outline_outline;var ic_add_circle_outline_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4zm-1-5C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"},"children":[]}]};exports.ic_add_circle_outline_twotone=ic_add_circle_outline_twotone;var ic_add_link={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8 11h8v2H8zm12.1 1H22c0-2.76-2.24-5-5-5h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1zM3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM19 12h-2v3h-3v2h3v3h2v-3h3v-2h-3z"},"children":[]}]};exports.ic_add_link=ic_add_link;var ic_amp_stories={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"height":"15","width":"10","x":"7","y":"4"},"children":[{"name":"rect","attribs":{"height":"15","width":"10","x":"7","y":"4"},"children":[]}]},{"name":"rect","attribs":{"height":"11","width":"2","x":"3","y":"6"},"children":[{"name":"rect","attribs":{"height":"11","width":"2","x":"3","y":"6"},"children":[]}]},{"name":"rect","attribs":{"height":"11","width":"2","x":"19","y":"6"},"children":[{"name":"rect","attribs":{"height":"11","width":"2","x":"19","y":"6"},"children":[]}]}]}]}]}]};exports.ic_amp_stories=ic_amp_stories;var ic_amp_stories_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M7,19h10V4H7V19z M9,6h6v11H9V6z"},"children":[{"name":"path","attribs":{"d":"M7,19h10V4H7V19z M9,6h6v11H9V6z"},"children":[]}]},{"name":"rect","attribs":{"height":"11","width":"2","x":"3","y":"6"},"children":[{"name":"rect","attribs":{"height":"11","width":"2","x":"3","y":"6"},"children":[]}]},{"name":"rect","attribs":{"height":"11","width":"2","x":"19","y":"6"},"children":[{"name":"rect","attribs":{"height":"11","width":"2","x":"19","y":"6"},"children":[]}]}]}]}]}]};exports.ic_amp_stories_outline=ic_amp_stories_outline;var ic_amp_stories_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{"opacity":".3"},"children":[{"name":"g","attribs":{"opacity":".3"},"children":[{"name":"rect","attribs":{"height":"11","width":"6","x":"9","y":"6"},"children":[{"name":"rect","attribs":{"height":"11","width":"6","x":"9","y":"6"},"children":[]}]}]}]},{"name":"path","attribs":{"d":"M7,19h10V4H7V19z M9,6h6v11H9V6z"},"children":[{"name":"path","attribs":{"d":"M7,19h10V4H7V19z M9,6h6v11H9V6z"},"children":[]}]},{"name":"rect","attribs":{"height":"11","width":"2","x":"3","y":"6"},"children":[{"name":"rect","attribs":{"height":"11","width":"2","x":"3","y":"6"},"children":[]}]},{"name":"rect","attribs":{"height":"11","width":"2","x":"19","y":"6"},"children":[{"name":"rect","attribs":{"height":"11","width":"2","x":"19","y":"6"},"children":[]}]}]}]}]}]};exports.ic_amp_stories_twotone=ic_amp_stories_twotone;var ic_archive={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20.54 5.23l-1.39-1.68C18.88 3.21 18.47 3 18 3H6c-.47 0-.88.21-1.16.55L3.46 5.23C3.17 5.57 3 6.02 3 6.5V19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6.5c0-.48-.17-.93-.46-1.27zM12 17.5L6.5 12H10v-2h4v2h3.5L12 17.5zM5.12 5l.81-1h12l.94 1H5.12z"},"children":[]}]};exports.ic_archive=ic_archive;var ic_archive_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20.54 5.23l-1.39-1.68C18.88 3.21 18.47 3 18 3H6c-.47 0-.88.21-1.16.55L3.46 5.23C3.17 5.57 3 6.02 3 6.5V19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6.5c0-.48-.17-.93-.46-1.27zM6.24 5h11.52l.81.97H5.44l.8-.97zM5 19V8h14v11H5zm8.45-9h-2.9v3H8l4 4 4-4h-2.55z"},"children":[]}]};exports.ic_archive_outline=ic_archive_outline;var ic_archive_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 19h14V8H5v11zm5.55-6v-3h2.91v3H16l-4 4-4-4h2.55z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M16 13h-2.55v-3h-2.9v3H8l4 4zm4.54-7.77l-1.39-1.68C18.88 3.21 18.47 3 18 3H6c-.47 0-.88.21-1.16.55L3.46 5.23C3.17 5.57 3 6.02 3 6.5V19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6.5c0-.48-.17-.93-.46-1.27zM6.24 5h11.52l.81.97H5.44l.8-.97zM19 19H5V8h14v11z"},"children":[]}]};exports.ic_archive_twotone=ic_archive_twotone;var ic_attribution_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 8.5c-.91 0-2.75.46-2.75 1.38v4.62h1.5V19h2.5v-4.5h1.5V9.88c0-.91-1.84-1.38-2.75-1.38zM12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"},"children":[]},{"name":"circle","attribs":{"cx":"12","cy":"6.5","r":"1.5"},"children":[]}]};exports.ic_attribution_outline=ic_attribution_outline;var ic_attribution_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 1c.83 0 1.5.67 1.5 1.5S12.83 8 12 8s-1.5-.67-1.5-1.5S11.17 5 12 5zm2.75 9.5h-1.5V19h-2.5v-4.5h-1.5V9.88c0-.92 1.84-1.38 2.75-1.38s2.75.47 2.75 1.38v4.62z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm0-11.5c-.91 0-2.75.46-2.75 1.38v4.62h1.5V19h2.5v-4.5h1.5V9.88c0-.91-1.84-1.38-2.75-1.38z"},"children":[]},{"name":"circle","attribs":{"cx":"12","cy":"6.5","r":"1.5"},"children":[]}]};exports.ic_attribution_twotone=ic_attribution_twotone;var ic_backspace={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 3H7c-.69 0-1.23.35-1.59.88L0 12l5.41 8.11c.36.53.9.89 1.59.89h15c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-3 12.59L17.59 17 14 13.41 10.41 17 9 15.59 12.59 12 9 8.41 10.41 7 14 10.59 17.59 7 19 8.41 15.41 12 19 15.59z"},"children":[]}]};exports.ic_backspace=ic_backspace;var ic_backspace_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 3H7c-.69 0-1.23.35-1.59.88L0 12l5.41 8.11c.36.53.9.89 1.59.89h15c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H7.07L2.4 12l4.66-7H22v14zm-11.59-2L14 13.41 17.59 17 19 15.59 15.41 12 19 8.41 17.59 7 14 10.59 10.41 7 9 8.41 12.59 12 9 15.59z"},"children":[]}]};exports.ic_backspace_outline=ic_backspace_outline;var ic_backspace_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7.06 5L2.4 12l4.67 7H22V5H7.06c.01 0 .01 0 0 0zM9 8.41L10.41 7 14 10.59 17.59 7 19 8.41 15.41 12 19 15.59 17.59 17 14 13.41 10.41 17 9 15.59 12.59 12 9 8.41z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M22 3H7c-.69 0-1.23.35-1.59.88L0 12l5.41 8.11c.36.53.9.89 1.59.89h15c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H7.07L2.4 12l4.66-7H22v14zm-11.59-2L14 13.41 17.59 17 19 15.59 15.41 12 19 8.41 17.59 7 14 10.59 10.41 7 9 8.41 12.59 12 9 15.59z"},"children":[]}]};exports.ic_backspace_twotone=ic_backspace_twotone;var ic_ballot={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","fill-rule":"evenodd","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M13,9.5h5v-2h-5V9.5z M13,16.5h5v-2h-5V16.5z M19,21H5c-1.1,0-2-0.9-2-2V5 c0-1.1,0.9-2,2-2h14c1.1,0,2,0.9,2,2v14C21,20.1,20.1,21,19,21z M6,11h5V6H6V11z M7,7h3v3H7V7z M6,18h5v-5H6V18z M7,14h3v3H7V14z","fill-rule":"evenodd"},"children":[]}]};exports.ic_ballot=ic_ballot;var ic_ballot_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13 7.5h5v2h-5zm0 7h5v2h-5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM11 6H6v5h5V6zm-1 4H7V7h3v3zm1 3H6v5h5v-5zm-1 4H7v-3h3v3z"},"children":[]}]};exports.ic_ballot_outline=ic_ballot_outline;var ic_ballot_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 14h3v3H7zm0-7h3v3H7zM5 19h14V5H5v14zm8-11.5h5v2h-5v-2zm0 7h5v2h-5v-2zM6 6h5v5H6V6zm0 7h5v5H6v-5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M13 7.5h5v2h-5zm0 7h5v2h-5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM11 6H6v5h5V6zm-1 4H7V7h3v3zm1 3H6v5h5v-5zm-1 4H7v-3h3v3z"},"children":[]}]};exports.ic_ballot_twotone=ic_ballot_twotone;var ic_biotech={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M7,19c-1.1,0-2,0.9-2,2h14c0-1.1-0.9-2-2-2h-4v-2h3c1.1,0,2-0.9,2-2h-8c-1.66,0-3-1.34-3-3c0-1.09,0.59-2.04,1.46-2.56 C8.17,9.03,8,8.54,8,8c0-0.21,0.04-0.42,0.09-0.62C6.28,8.13,5,9.92,5,12c0,2.76,2.24,5,5,5v2H7z"},"children":[{"name":"path","attribs":{"d":"M7,19c-1.1,0-2,0.9-2,2h14c0-1.1-0.9-2-2-2h-4v-2h3c1.1,0,2-0.9,2-2h-8c-1.66,0-3-1.34-3-3c0-1.09,0.59-2.04,1.46-2.56 C8.17,9.03,8,8.54,8,8c0-0.21,0.04-0.42,0.09-0.62C6.28,8.13,5,9.92,5,12c0,2.76,2.24,5,5,5v2H7z"},"children":[]}]},{"name":"path","attribs":{"d":"M10.56,5.51C11.91,5.54,13,6.64,13,8c0,0.75-0.33,1.41-0.85,1.87l0.59,1.62l0.94-0.34l0.34,0.94l1.88-0.68l-0.34-0.94 l0.94-0.34L13.76,2.6l-0.94,0.34L12.48,2L10.6,2.68l0.34,0.94L10,3.97L10.56,5.51z"},"children":[{"name":"path","attribs":{"d":"M10.56,5.51C11.91,5.54,13,6.64,13,8c0,0.75-0.33,1.41-0.85,1.87l0.59,1.62l0.94-0.34l0.34,0.94l1.88-0.68l-0.34-0.94 l0.94-0.34L13.76,2.6l-0.94,0.34L12.48,2L10.6,2.68l0.34,0.94L10,3.97L10.56,5.51z"},"children":[]}]},{"name":"circle","attribs":{"cx":"10.5","cy":"8","r":"1.5"},"children":[{"name":"circle","attribs":{"cx":"10.5","cy":"8","r":"1.5"},"children":[]}]}]}]}]}]};exports.ic_biotech=ic_biotech;var ic_biotech_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M7,19c-1.1,0-2,0.9-2,2h14c0-1.1-0.9-2-2-2h-4v-2h3c1.1,0,2-0.9,2-2h-8c-1.66,0-3-1.34-3-3c0-1.09,0.59-2.04,1.47-2.57 c0.41,0.59,1.06,1,1.83,1.06c0.7,0.06,1.36-0.19,1.85-0.62l0.59,1.61l0.94-0.34l0.34,0.94l1.88-0.68l-0.34-0.94l0.94-0.34 L13.76,2.6l-0.94,0.34L12.48,2L10.6,2.68l0.34,0.94L10,3.97l0.56,1.55C9.39,5.48,8.37,6.27,8.08,7.38C6.27,8.14,5,9.92,5,12 c0,2.76,2.24,5,5,5v2H7z M12.86,4.52l1.71,4.7l-0.94,0.34l-1.71-4.7L12.86,4.52z M10.5,7c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1 c-0.55,0-1-0.45-1-1C9.5,7.45,9.95,7,10.5,7z"},"children":[{"name":"path","attribs":{"d":"M7,19c-1.1,0-2,0.9-2,2h14c0-1.1-0.9-2-2-2h-4v-2h3c1.1,0,2-0.9,2-2h-8c-1.66,0-3-1.34-3-3c0-1.09,0.59-2.04,1.47-2.57 c0.41,0.59,1.06,1,1.83,1.06c0.7,0.06,1.36-0.19,1.85-0.62l0.59,1.61l0.94-0.34l0.34,0.94l1.88-0.68l-0.34-0.94l0.94-0.34 L13.76,2.6l-0.94,0.34L12.48,2L10.6,2.68l0.34,0.94L10,3.97l0.56,1.55C9.39,5.48,8.37,6.27,8.08,7.38C6.27,8.14,5,9.92,5,12 c0,2.76,2.24,5,5,5v2H7z M12.86,4.52l1.71,4.7l-0.94,0.34l-1.71-4.7L12.86,4.52z M10.5,7c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1 c-0.55,0-1-0.45-1-1C9.5,7.45,9.95,7,10.5,7z"},"children":[]}]}]}]};exports.ic_biotech_outline=ic_biotech_outline;var ic_biotech_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"height":"5","opacity":".3","transform":"matrix(0.9397 -0.342 0.342 0.9397 -1.6091 4.9556)","width":"1","x":"12.75","y":"4.54"},"children":[{"name":"rect","attribs":{"height":"5","opacity":".3","transform":"matrix(0.9397 -0.342 0.342 0.9397 -1.6091 4.9556)","width":"1","x":"12.75","y":"4.54"},"children":[]}]},{"name":"circle","attribs":{"cx":"10.5","cy":"8","opacity":".3","r":"1"},"children":[{"name":"circle","attribs":{"cx":"10.5","cy":"8","opacity":".3","r":"1"},"children":[]}]},{"name":"path","attribs":{"d":"M7,19c-1.1,0-2,0.9-2,2h14c0-1.1-0.9-2-2-2h-4v-2h3c1.1,0,2-0.9,2-2h-8c-1.66,0-3-1.34-3-3c0-1.09,0.59-2.04,1.47-2.57 c0.41,0.59,1.06,1,1.83,1.06c0.7,0.06,1.36-0.19,1.85-0.62l0.59,1.61l0.94-0.34l0.34,0.94l1.88-0.68l-0.34-0.94l0.94-0.34 L13.76,2.6l-0.94,0.34L12.48,2L10.6,2.68l0.34,0.94L10,3.97l0.56,1.55C9.39,5.48,8.37,6.27,8.08,7.38C6.27,8.14,5,9.92,5,12 c0,2.76,2.24,5,5,5v2H7z M12.86,4.52l1.71,4.7l-0.94,0.34l-1.71-4.7L12.86,4.52z M10.5,7c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1 c-0.55,0-1-0.45-1-1C9.5,7.45,9.95,7,10.5,7z"},"children":[{"name":"path","attribs":{"d":"M7,19c-1.1,0-2,0.9-2,2h14c0-1.1-0.9-2-2-2h-4v-2h3c1.1,0,2-0.9,2-2h-8c-1.66,0-3-1.34-3-3c0-1.09,0.59-2.04,1.47-2.57 c0.41,0.59,1.06,1,1.83,1.06c0.7,0.06,1.36-0.19,1.85-0.62l0.59,1.61l0.94-0.34l0.34,0.94l1.88-0.68l-0.34-0.94l0.94-0.34 L13.76,2.6l-0.94,0.34L12.48,2L10.6,2.68l0.34,0.94L10,3.97l0.56,1.55C9.39,5.48,8.37,6.27,8.08,7.38C6.27,8.14,5,9.92,5,12 c0,2.76,2.24,5,5,5v2H7z M12.86,4.52l1.71,4.7l-0.94,0.34l-1.71-4.7L12.86,4.52z M10.5,7c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1 c-0.55,0-1-0.45-1-1C9.5,7.45,9.95,7,10.5,7z"},"children":[]}]}]}]}]}]};exports.ic_biotech_twotone=ic_biotech_twotone;var ic_block={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM4 12c0-4.42 3.58-8 8-8 1.85 0 3.55.63 4.9 1.69L5.69 16.9C4.63 15.55 4 13.85 4 12zm8 8c-1.85 0-3.55-.63-4.9-1.69L18.31 7.1C19.37 8.45 20 10.15 20 12c0 4.42-3.58 8-8 8z"},"children":[]}]};exports.ic_block=ic_block;var ic_block_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM4 12c0-4.42 3.58-8 8-8 1.85 0 3.55.63 4.9 1.69L5.69 16.9C4.63 15.55 4 13.85 4 12zm8 8c-1.85 0-3.55-.63-4.9-1.69L18.31 7.1C19.37 8.45 20 10.15 20 12c0 4.42-3.58 8-8 8z"},"children":[]}]};exports.ic_block_outline=ic_block_outline;var ic_block_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM4 12c0-4.42 3.58-8 8-8 1.85 0 3.55.63 4.9 1.69L5.69 16.9C4.63 15.55 4 13.85 4 12zm8 8c-1.85 0-3.55-.63-4.9-1.69L18.31 7.1C19.37 8.45 20 10.15 20 12c0 4.42-3.58 8-8 8z"},"children":[]}]};exports.ic_block_twotone=ic_block_twotone;var ic_block_flipped={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M22,12c0-5.5-4.5-10-10-10S2,6.5,2,12s4.5,10,10,10S22,17.5,22,12z M5.7,7.1l11.2,11.2c-1.3,1.1-3,1.7-4.9,1.7 c-4.4,0-8-3.6-8-8C4,10.1,4.6,8.4,5.7,7.1z M20,12c0,1.9-0.6,3.6-1.7,4.9L7.1,5.7C8.4,4.6,10.1,4,12,4C16.4,4,20,7.6,20,12z"},"children":[{"name":"path","attribs":{"d":"M22,12c0-5.5-4.5-10-10-10S2,6.5,2,12s4.5,10,10,10S22,17.5,22,12z M5.7,7.1l11.2,11.2c-1.3,1.1-3,1.7-4.9,1.7 c-4.4,0-8-3.6-8-8C4,10.1,4.6,8.4,5.7,7.1z M20,12c0,1.9-0.6,3.6-1.7,4.9L7.1,5.7C8.4,4.6,10.1,4,12,4C16.4,4,20,7.6,20,12z"},"children":[]}]}]}]};exports.ic_block_flipped=ic_block_flipped;var ic_bolt={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M11 21h-1l1-7H7.5c-.58 0-.57-.32-.38-.66.19-.34.05-.08.07-.12C8.48 10.94 10.42 7.54 13 3h1l-1 7h3.5c.49 0 .56.33.47.51l-.07.15C12.96 17.55 11 21 11 21z"},"children":[]}]};exports.ic_bolt=ic_bolt;var ic_calculate={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M13.03,7.06L14.09,6l1.41,1.41 L16.91,6l1.06,1.06l-1.41,1.41l1.41,1.41l-1.06,1.06L15.5,9.54l-1.41,1.41l-1.06-1.06l1.41-1.41L13.03,7.06z M6.25,7.72h5v1.5h-5 V7.72z M11.5,16h-2v2H8v-2H6v-1.5h2v-2h1.5v2h2V16z M18,17.25h-5v-1.5h5V17.25z M18,14.75h-5v-1.5h5V14.75z"},"children":[{"name":"path","attribs":{"d":"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M13.03,7.06L14.09,6l1.41,1.41 L16.91,6l1.06,1.06l-1.41,1.41l1.41,1.41l-1.06,1.06L15.5,9.54l-1.41,1.41l-1.06-1.06l1.41-1.41L13.03,7.06z M6.25,7.72h5v1.5h-5 V7.72z M11.5,16h-2v2H8v-2H6v-1.5h2v-2h1.5v2h2V16z M18,17.25h-5v-1.5h5V17.25z M18,14.75h-5v-1.5h5V14.75z"},"children":[]}]}]}]};exports.ic_calculate=ic_calculate;var ic_calculate_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z"},"children":[{"name":"path","attribs":{"d":"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z"},"children":[]}]},{"name":"rect","attribs":{"height":"1.5","width":"5","x":"6.25","y":"7.72"},"children":[{"name":"rect","attribs":{"height":"1.5","width":"5","x":"6.25","y":"7.72"},"children":[]}]},{"name":"rect","attribs":{"height":"1.5","width":"5","x":"13","y":"15.75"},"children":[{"name":"rect","attribs":{"height":"1.5","width":"5","x":"13","y":"15.75"},"children":[]}]},{"name":"rect","attribs":{"height":"1.5","width":"5","x":"13","y":"13.25"},"children":[{"name":"rect","attribs":{"height":"1.5","width":"5","x":"13","y":"13.25"},"children":[]}]},{"name":"polygon","attribs":{"points":"8,18 9.5,18 9.5,16 11.5,16 11.5,14.5 9.5,14.5 9.5,12.5 8,12.5 8,14.5 6,14.5 6,16 8,16"},"children":[{"name":"polygon","attribs":{"points":"8,18 9.5,18 9.5,16 11.5,16 11.5,14.5 9.5,14.5 9.5,12.5 8,12.5 8,14.5 6,14.5 6,16 8,16"},"children":[]}]},{"name":"polygon","attribs":{"points":"14.09,10.95 15.5,9.54 16.91,10.95 17.97,9.89 16.56,8.47 17.97,7.06 16.91,6 15.5,7.41 14.09,6 13.03,7.06 14.44,8.47 13.03,9.89"},"children":[{"name":"polygon","attribs":{"points":"14.09,10.95 15.5,9.54 16.91,10.95 17.97,9.89 16.56,8.47 17.97,7.06 16.91,6 15.5,7.41 14.09,6 13.03,7.06 14.44,8.47 13.03,9.89"},"children":[]}]}]}]}]}]};exports.ic_calculate_outline=ic_calculate_outline;var ic_calculate_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M5,19h14V5H5V19z M13.03,7.06L14.09,6l1.41,1.41L16.91,6l1.06,1.06l-1.41,1.41l1.41,1.41l-1.06,1.06 L15.5,9.54l-1.41,1.41l-1.06-1.06l1.41-1.41L13.03,7.06z M13,13.25h5v1.5h-5V13.25z M13,15.75h5v1.5h-5V15.75z M6.25,7.72h5v1.5 h-5V7.72z M6,14.5h2v-2h1.5v2h2V16h-2v2H8v-2H6V14.5z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M5,19h14V5H5V19z M13.03,7.06L14.09,6l1.41,1.41L16.91,6l1.06,1.06l-1.41,1.41l1.41,1.41l-1.06,1.06 L15.5,9.54l-1.41,1.41l-1.06-1.06l1.41-1.41L13.03,7.06z M13,13.25h5v1.5h-5V13.25z M13,15.75h5v1.5h-5V15.75z M6.25,7.72h5v1.5 h-5V7.72z M6,14.5h2v-2h1.5v2h2V16h-2v2H8v-2H6V14.5z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z"},"children":[{"name":"path","attribs":{"d":"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z"},"children":[]}]},{"name":"rect","attribs":{"height":"1.5","width":"5","x":"6.25","y":"7.72"},"children":[{"name":"rect","attribs":{"height":"1.5","width":"5","x":"6.25","y":"7.72"},"children":[]}]},{"name":"rect","attribs":{"height":"1.5","width":"5","x":"13","y":"15.75"},"children":[{"name":"rect","attribs":{"height":"1.5","width":"5","x":"13","y":"15.75"},"children":[]}]},{"name":"rect","attribs":{"height":"1.5","width":"5","x":"13","y":"13.25"},"children":[{"name":"rect","attribs":{"height":"1.5","width":"5","x":"13","y":"13.25"},"children":[]}]},{"name":"polygon","attribs":{"points":"8,18 9.5,18 9.5,16 11.5,16 11.5,14.5 9.5,14.5 9.5,12.5 8,12.5 8,14.5 6,14.5 6,16 8,16"},"children":[{"name":"polygon","attribs":{"points":"8,18 9.5,18 9.5,16 11.5,16 11.5,14.5 9.5,14.5 9.5,12.5 8,12.5 8,14.5 6,14.5 6,16 8,16"},"children":[]}]},{"name":"polygon","attribs":{"points":"14.09,10.95 15.5,9.54 16.91,10.95 17.97,9.89 16.56,8.47 17.97,7.06 16.91,6 15.5,7.41 14.09,6 13.03,7.06 14.44,8.47 13.03,9.89"},"children":[{"name":"polygon","attribs":{"points":"14.09,10.95 15.5,9.54 16.91,10.95 17.97,9.89 16.56,8.47 17.97,7.06 16.91,6 15.5,7.41 14.09,6 13.03,7.06 14.44,8.47 13.03,9.89"},"children":[]}]}]}]}]}]};exports.ic_calculate_twotone=ic_calculate_twotone;var ic_clear={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"},"children":[]}]};exports.ic_clear=ic_clear;var ic_clear_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z"},"children":[]}]};exports.ic_clear_outline=ic_clear_outline;var ic_clear_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z"},"children":[]}]};exports.ic_clear_twotone=ic_clear_twotone;var ic_content_copy={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm3 4H8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h11c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 16H8V7h11v14z"},"children":[]}]};exports.ic_content_copy=ic_content_copy;var ic_content_copy_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm3 4H8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h11c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 16H8V7h11v14z"},"children":[]}]};exports.ic_content_copy_outline=ic_content_copy_outline;var ic_content_copy_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8 7h11v14H8z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm3 4H8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h11c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 16H8V7h11v14z"},"children":[]}]};exports.ic_content_copy_twotone=ic_content_copy_twotone;var ic_content_cut={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"6","cy":"18","fill":"none","r":"2"},"children":[]},{"name":"circle","attribs":{"cx":"12","cy":"12","fill":"none","r":".5"},"children":[]},{"name":"circle","attribs":{"cx":"6","cy":"6","fill":"none","r":"2"},"children":[]},{"name":"path","attribs":{"d":"M9.64 7.64c.23-.5.36-1.05.36-1.64 0-2.21-1.79-4-4-4S2 3.79 2 6s1.79 4 4 4c.59 0 1.14-.13 1.64-.36L10 12l-2.36 2.36C7.14 14.13 6.59 14 6 14c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4c0-.59-.13-1.14-.36-1.64L12 14l7 7h3v-1L9.64 7.64zM6 8c-1.1 0-2-.89-2-2s.9-2 2-2 2 .89 2 2-.9 2-2 2zm0 12c-1.1 0-2-.89-2-2s.9-2 2-2 2 .89 2 2-.9 2-2 2zm6-7.5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5.5.22.5.5-.22.5-.5.5zM19 3l-6 6 2 2 7-7V3z"},"children":[]}]};exports.ic_content_cut=ic_content_cut;var ic_content_cut_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9.64 7.64c.23-.5.36-1.05.36-1.64 0-2.21-1.79-4-4-4S2 3.79 2 6s1.79 4 4 4c.59 0 1.14-.13 1.64-.36L10 12l-2.36 2.36C7.14 14.13 6.59 14 6 14c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4c0-.59-.13-1.14-.36-1.64L12 14l7 7h3v-1L9.64 7.64zM6 8c-1.1 0-2-.89-2-2s.9-2 2-2 2 .89 2 2-.9 2-2 2zm0 12c-1.1 0-2-.89-2-2s.9-2 2-2 2 .89 2 2-.9 2-2 2zm6-7.5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5.5.22.5.5-.22.5-.5.5zM19 3l-6 6 2 2 7-7V3h-3z"},"children":[]}]};exports.ic_content_cut_outline=ic_content_cut_outline;var ic_content_cut_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3l-6 6 2 2 7-7V3zm-9 3c0-2.21-1.79-4-4-4S2 3.79 2 6s1.79 4 4 4c.59 0 1.14-.13 1.64-.36L10 12l-2.36 2.36C7.14 14.13 6.59 14 6 14c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4c0-.59-.13-1.14-.36-1.64L12 14l7 7h3v-1L9.64 7.64c.23-.5.36-1.05.36-1.64zM6 8c-1.1 0-2-.89-2-2s.9-2 2-2 2 .89 2 2-.9 2-2 2zm0 12c-1.1 0-2-.89-2-2s.9-2 2-2 2 .89 2 2-.9 2-2 2zm6-8.5c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5.22-.5.5-.5z"},"children":[]}]};exports.ic_content_cut_twotone=ic_content_cut_twotone;var ic_content_paste={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 2h-4.18C14.4.84 13.3 0 12 0c-1.3 0-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm7 18H5V4h2v3h10V4h2v16z"},"children":[]}]};exports.ic_content_paste=ic_content_paste;var ic_content_paste_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 2h-4.18C14.4.84 13.3 0 12 0S9.6.84 9.18 2H5c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm7 18H5V4h2v3h10V4h2v16z"},"children":[]}]};exports.ic_content_paste_outline=ic_content_paste_outline;var ic_content_paste_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 7H7V4H5v16h14V4h-2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M19 2h-4.18C14.4.84 13.3 0 12 0S9.6.84 9.18 2H5c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm7 18H5V4h2v3h10V4h2v16z"},"children":[]}]};exports.ic_content_paste_twotone=ic_content_paste_twotone;var ic_create={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z"},"children":[]}]};exports.ic_create=ic_create;var ic_create_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM5.92 19H5v-.92l9.06-9.06.92.92L5.92 19zM20.71 5.63l-2.34-2.34c-.2-.2-.45-.29-.71-.29s-.51.1-.7.29l-1.83 1.83 3.75 3.75 1.83-1.83c.39-.39.39-1.02 0-1.41z"},"children":[]}]};exports.ic_create_outline=ic_create_outline;var ic_create_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 18.08V19h.92l9.06-9.06-.92-.92z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM5.92 19H5v-.92l9.06-9.06.92.92L5.92 19zM20.71 5.63l-2.34-2.34c-.2-.2-.45-.29-.71-.29s-.51.1-.7.29l-1.83 1.83 3.75 3.75 1.83-1.83c.39-.39.39-1.02 0-1.41z"},"children":[]}]};exports.ic_create_twotone=ic_create_twotone;var ic_delete_sweep={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15 16h4v2h-4zm0-8h7v2h-7zm0 4h6v2h-6zM3 18c0 1.1.9 2 2 2h6c1.1 0 2-.9 2-2V8H3v10zM14 5h-3l-1-1H6L5 5H2v2h12z"},"children":[]}]};exports.ic_delete_sweep=ic_delete_sweep;var ic_delete_sweep_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15 16h4v2h-4zm0-8h7v2h-7zm0 4h6v2h-6zM3 18c0 1.1.9 2 2 2h6c1.1 0 2-.9 2-2V8H3v10zm2-8h6v8H5v-8zm5-6H6L5 5H2v2h12V5h-3z"},"children":[]}]};exports.ic_delete_sweep_outline=ic_delete_sweep_outline;var ic_delete_sweep_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 10h6v8H5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M15 16h4v2h-4zm0-8h7v2h-7zm0 4h6v2h-6zM3 18c0 1.1.9 2 2 2h6c1.1 0 2-.9 2-2V8H3v10zm2-8h6v8H5v-8zm5-6H6L5 5H2v2h12V5h-3z"},"children":[]}]};exports.ic_delete_sweep_twotone=ic_delete_sweep_twotone;var ic_drafts={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21.99 8c0-.72-.37-1.35-.94-1.7L12 1 2.95 6.3C2.38 6.65 2 7.28 2 8v10c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2l-.01-10zM12 13L3.74 7.84 12 3l8.26 4.84L12 13z"},"children":[]}]};exports.ic_drafts=ic_drafts;var ic_drafts_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21.99 8c0-.72-.37-1.35-.94-1.7L12 1 2.95 6.3C2.38 6.65 2 7.28 2 8v10c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2l-.01-10zm-2 0v.01L12 13 4 8l8-4.68L19.99 8zM4 18v-7.66l8 5.02 7.99-4.99L20 18H4z"},"children":[]}]};exports.ic_drafts_outline=ic_drafts_outline;var ic_drafts_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 15.36l-8-5.02V18h16l-.01-7.63z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M21.99 8c0-.72-.37-1.35-.94-1.7L12 1 2.95 6.3C2.38 6.65 2 7.28 2 8v10c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2l-.01-10zM12 3.32L19.99 8v.01L12 13 4 8l8-4.68zM4 18v-7.66l8 5.02 7.99-4.99L20 18H4z"},"children":[]}]};exports.ic_drafts_twotone=ic_drafts_twotone;var ic_dynamic_feed={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M8,8H6v7c0,1.1,0.9,2,2,2h9v-2H8V8z"},"children":[{"name":"path","attribs":{"d":"M8,8H6v7c0,1.1,0.9,2,2,2h9v-2H8V8z"},"children":[]}]},{"name":"path","attribs":{"d":"M20,3h-8c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V5C22,3.9,21.1,3,20,3z M20,11h-8V7h8V11z"},"children":[{"name":"path","attribs":{"d":"M20,3h-8c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V5C22,3.9,21.1,3,20,3z M20,11h-8V7h8V11z"},"children":[]}]},{"name":"path","attribs":{"d":"M4,12H2v7c0,1.1,0.9,2,2,2h9v-2H4V12z"},"children":[{"name":"path","attribs":{"d":"M4,12H2v7c0,1.1,0.9,2,2,2h9v-2H4V12z"},"children":[]}]}]}]}]},{"name":"g","attribs":{"display":"none"},"children":[{"name":"g","attribs":{"display":"inline"},"children":[{"name":"g","attribs":{"display":"inline"},"children":[]}]},{"name":"g","attribs":{"display":"inline"},"children":[{"name":"g","attribs":{"display":"inline"},"children":[{"name":"path","attribs":{"d":"M8,8H6v7c0,1.1,0.9,2,2,2h9v-2H8V8z"},"children":[{"name":"path","attribs":{"d":"M8,8H6v7c0,1.1,0.9,2,2,2h9v-2H8V8z"},"children":[]}]},{"name":"path","attribs":{"d":"M20,3h-8c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V5C22,3.9,21.1,3,20,3z M20,11h-8V7h8V11z"},"children":[{"name":"path","attribs":{"d":"M20,3h-8c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V5C22,3.9,21.1,3,20,3z M20,11h-8V7h8V11z"},"children":[]}]},{"name":"path","attribs":{"d":"M4,12H2v7c0,1.1,0.9,2,2,2h9v-2H4V12z"},"children":[{"name":"path","attribs":{"d":"M4,12H2v7c0,1.1,0.9,2,2,2h9v-2H4V12z"},"children":[]}]}]}]}]}]};exports.ic_dynamic_feed=ic_dynamic_feed;var ic_dynamic_feed_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M8,8H6v7c0,1.1,0.9,2,2,2h9v-2H8V8z"},"children":[{"name":"path","attribs":{"d":"M8,8H6v7c0,1.1,0.9,2,2,2h9v-2H8V8z"},"children":[]}]},{"name":"path","attribs":{"d":"M20,3h-8c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V5C22,3.9,21.1,3,20,3z M20,11h-8V7h8V11z"},"children":[{"name":"path","attribs":{"d":"M20,3h-8c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V5C22,3.9,21.1,3,20,3z M20,11h-8V7h8V11z"},"children":[]}]},{"name":"path","attribs":{"d":"M4,12H2v7c0,1.1,0.9,2,2,2h9v-2H4V12z"},"children":[{"name":"path","attribs":{"d":"M4,12H2v7c0,1.1,0.9,2,2,2h9v-2H4V12z"},"children":[]}]}]}]}]},{"name":"g","attribs":{"display":"none"},"children":[{"name":"g","attribs":{"display":"inline"},"children":[{"name":"g","attribs":{"display":"inline"},"children":[]}]},{"name":"g","attribs":{"display":"inline"},"children":[{"name":"g","attribs":{"display":"inline"},"children":[{"name":"path","attribs":{"d":"M8,8H6v7c0,1.1,0.9,2,2,2h9v-2H8V8z"},"children":[{"name":"path","attribs":{"d":"M8,8H6v7c0,1.1,0.9,2,2,2h9v-2H8V8z"},"children":[]}]},{"name":"path","attribs":{"d":"M20,3h-8c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V5C22,3.9,21.1,3,20,3z M20,11h-8V7h8V11z"},"children":[{"name":"path","attribs":{"d":"M20,3h-8c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V5C22,3.9,21.1,3,20,3z M20,11h-8V7h8V11z"},"children":[]}]},{"name":"path","attribs":{"d":"M4,12H2v7c0,1.1,0.9,2,2,2h9v-2H4V12z"},"children":[{"name":"path","attribs":{"d":"M4,12H2v7c0,1.1,0.9,2,2,2h9v-2H4V12z"},"children":[]}]}]}]}]}]};exports.ic_dynamic_feed_outline=ic_dynamic_feed_outline;var ic_dynamic_feed_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"height":"4","opacity":".3","width":"8","x":"12","y":"7"},"children":[{"name":"rect","attribs":{"height":"4","opacity":".3","width":"8","x":"12","y":"7"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M8,8H6v7c0,1.1,0.9,2,2,2h9v-2H8V8z"},"children":[{"name":"path","attribs":{"d":"M8,8H6v7c0,1.1,0.9,2,2,2h9v-2H8V8z"},"children":[]}]},{"name":"path","attribs":{"d":"M20,3h-8c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V5C22,3.9,21.1,3,20,3z M20,11h-8V7h8V11z"},"children":[{"name":"path","attribs":{"d":"M20,3h-8c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V5C22,3.9,21.1,3,20,3z M20,11h-8V7h8V11z"},"children":[]}]},{"name":"path","attribs":{"d":"M4,12H2v7c0,1.1,0.9,2,2,2h9v-2H4V12z"},"children":[{"name":"path","attribs":{"d":"M4,12H2v7c0,1.1,0.9,2,2,2h9v-2H4V12z"},"children":[]}]}]}]}]},{"name":"g","attribs":{"display":"none"},"children":[{"name":"rect","attribs":{"display":"inline","height":"4","opacity":".3","width":"8","x":"12","y":"7"},"children":[{"name":"rect","attribs":{"display":"inline","height":"4","opacity":".3","width":"8","x":"12","y":"7"},"children":[]}]},{"name":"g","attribs":{"display":"inline"},"children":[{"name":"g","attribs":{"display":"inline"},"children":[]}]},{"name":"g","attribs":{"display":"inline"},"children":[{"name":"g","attribs":{"display":"inline"},"children":[{"name":"path","attribs":{"d":"M8,8H6v7c0,1.1,0.9,2,2,2h9v-2H8V8z"},"children":[{"name":"path","attribs":{"d":"M8,8H6v7c0,1.1,0.9,2,2,2h9v-2H8V8z"},"children":[]}]},{"name":"path","attribs":{"d":"M20,3h-8c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V5C22,3.9,21.1,3,20,3z M20,11h-8V7h8V11z"},"children":[{"name":"path","attribs":{"d":"M20,3h-8c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V5C22,3.9,21.1,3,20,3z M20,11h-8V7h8V11z"},"children":[]}]},{"name":"path","attribs":{"d":"M4,12H2v7c0,1.1,0.9,2,2,2h9v-2H4V12z"},"children":[{"name":"path","attribs":{"d":"M4,12H2v7c0,1.1,0.9,2,2,2h9v-2H4V12z"},"children":[]}]}]}]}]}]};exports.ic_dynamic_feed_twotone=ic_dynamic_feed_twotone;var ic_file_copy={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm-1 4l6 6v10c0 1.1-.9 2-2 2H7.99C6.89 23 6 22.1 6 21l.01-14c0-1.1.89-2 1.99-2h7zm-1 7h5.5L14 6.5V12z"},"children":[]}]};exports.ic_file_copy=ic_file_copy;var ic_file_copy_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm-1 4H8c-1.1 0-1.99.9-1.99 2L6 21c0 1.1.89 2 1.99 2H19c1.1 0 2-.9 2-2V11l-6-6zM8 21V7h6v5h5v9H8z"},"children":[]}]};exports.ic_file_copy_outline=ic_file_copy_outline;var ic_file_copy_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14 7H8v14h11v-9h-5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm-1 4H8c-1.1 0-1.99.9-1.99 2L6 21c0 1.1.89 2 1.99 2H19c1.1 0 2-.9 2-2V11l-6-6zm4 16H8V7h6v5h5v9z"},"children":[]}]};exports.ic_file_copy_twotone=ic_file_copy_twotone;var ic_filter_list={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 18h4v-2h-4v2zM3 6v2h18V6H3zm3 7h12v-2H6v2z"},"children":[]}]};exports.ic_filter_list=ic_filter_list;var ic_filter_list_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 18h4v-2h-4v2zM3 6v2h18V6H3zm3 7h12v-2H6v2z"},"children":[]}]};exports.ic_filter_list_outline=ic_filter_list_outline;var ic_filter_list_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 18h4v-2h-4v2zM3 6v2h18V6H3zm3 7h12v-2H6v2z"},"children":[]}]};exports.ic_filter_list_twotone=ic_filter_list_twotone;var ic_flag={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14.4 6L14 4H5v17h2v-7h5.6l.4 2h7V6z"},"children":[]}]};exports.ic_flag=ic_flag;var ic_flag_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12.36 6l.4 2H18v6h-3.36l-.4-2H7V6h5.36M14 4H5v17h2v-7h5.6l.4 2h7V6h-5.6L14 4z"},"children":[]}]};exports.ic_flag_outline=ic_flag_outline;var ic_flag_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12.36 6H7v6h7.24l.4 2H18V8h-5.24z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M14.4 6L14 4H5v17h2v-7h5.6l.4 2h7V6h-5.6zm3.6 8h-3.36l-.4-2H7V6h5.36l.4 2H18v6z"},"children":[]}]};exports.ic_flag_twotone=ic_flag_twotone;var ic_font_download={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9.93 13.5h4.14L12 7.98zM20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-4.05 16.5l-1.14-3H9.17l-1.12 3H5.96l5.11-13h1.86l5.11 13h-2.09z"},"children":[]}]};exports.ic_font_download=ic_font_download;var ic_font_download_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9.17 15.5h5.64l1.14 3h2.09l-5.11-13h-1.86l-5.11 13h2.09l1.12-3zM12 7.98l2.07 5.52H9.93L12 7.98zM20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H4V4h16v16z"},"children":[]}]};exports.ic_font_download_outline=ic_font_download_outline;var ic_font_download_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 20h16V4H4v16zm7.07-14.5h1.86l5.11 13h-2.09l-1.14-3H9.17l-1.12 3H5.96l5.11-13zM12 7.98L9.93 13.5h4.14z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M9.17 15.5h5.64l1.14 3h2.09l-5.11-13h-1.86l-5.11 13h2.09l1.12-3zM12 7.98l2.07 5.52H9.93L12 7.98zM20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H4V4h16v16z"},"children":[]}]};exports.ic_font_download_twotone=ic_font_download_twotone;var ic_forward={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 8V4l8 8-8 8v-4H4V8z"},"children":[]}]};exports.ic_forward=ic_forward;var ic_forward_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14 8.83L17.17 12 14 15.17V14H6v-4h8V8.83M12 4v4H4v8h8v4l8-8-8-8z"},"children":[]}]};exports.ic_forward_outline=ic_forward_outline;var ic_forward_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14 14v1.17L17.17 12 14 8.83V10H6v4z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 12l-8-8v4H4v8h8v4l8-8zM6 14v-4h8V8.83L17.17 12 14 15.17V14H6z"},"children":[]}]};exports.ic_forward_twotone=ic_forward_twotone;var ic_gesture={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4.59 6.89c.7-.71 1.4-1.35 1.71-1.22.5.2 0 1.03-.3 1.52-.25.42-2.86 3.89-2.86 6.31 0 1.28.48 2.34 1.34 2.98.75.56 1.74.73 2.64.46 1.07-.31 1.95-1.4 3.06-2.77 1.21-1.49 2.83-3.44 4.08-3.44 1.63 0 1.65 1.01 1.76 1.79-3.78.64-5.38 3.67-5.38 5.37 0 1.7 1.44 3.09 3.21 3.09 1.63 0 4.29-1.33 4.69-6.1H21v-2.5h-2.47c-.15-1.65-1.09-4.2-4.03-4.2-2.25 0-4.18 1.91-4.94 2.84-.58.73-2.06 2.48-2.29 2.72-.25.3-.68.84-1.11.84-.45 0-.72-.83-.36-1.92.35-1.09 1.4-2.86 1.85-3.52.78-1.14 1.3-1.92 1.3-3.28C8.95 3.69 7.31 3 6.44 3 5.12 3 3.97 4 3.72 4.25c-.36.36-.66.66-.88.93l1.75 1.71zm9.29 11.66c-.31 0-.74-.26-.74-.72 0-.6.73-2.2 2.87-2.76-.3 2.69-1.43 3.48-2.13 3.48z"},"children":[]}]};exports.ic_gesture=ic_gesture;var ic_gesture_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4.59 6.89c.7-.71 1.4-1.35 1.71-1.22.5.2 0 1.03-.3 1.52-.25.42-2.86 3.89-2.86 6.31 0 1.28.48 2.34 1.34 2.98.75.56 1.74.73 2.64.46 1.07-.31 1.95-1.4 3.06-2.77 1.21-1.49 2.83-3.44 4.08-3.44 1.63 0 1.65 1.01 1.76 1.79-3.78.64-5.38 3.67-5.38 5.37 0 1.7 1.44 3.09 3.21 3.09 1.63 0 4.29-1.33 4.69-6.1H21v-2.5h-2.47c-.15-1.65-1.09-4.2-4.03-4.2-2.25 0-4.18 1.91-4.94 2.84-.58.73-2.06 2.48-2.29 2.72-.25.3-.68.84-1.11.84-.45 0-.72-.83-.36-1.92.35-1.09 1.4-2.86 1.85-3.52.78-1.14 1.3-1.92 1.3-3.28C8.95 3.69 7.31 3 6.44 3 5.12 3 3.97 4 3.72 4.25c-.36.36-.66.66-.88.93l1.75 1.71zm9.29 11.66c-.31 0-.74-.26-.74-.72 0-.6.73-2.2 2.87-2.76-.3 2.69-1.43 3.48-2.13 3.48z"},"children":[]}]};exports.ic_gesture_outline=ic_gesture_outline;var ic_gesture_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4.59 6.89c.7-.71 1.4-1.35 1.71-1.22.5.2 0 1.03-.3 1.52-.25.42-2.86 3.89-2.86 6.31 0 1.28.48 2.34 1.34 2.98.75.56 1.74.73 2.64.46 1.07-.31 1.95-1.4 3.06-2.77 1.21-1.49 2.83-3.44 4.08-3.44 1.63 0 1.65 1.01 1.76 1.79-3.78.64-5.38 3.67-5.38 5.37 0 1.7 1.44 3.09 3.21 3.09 1.63 0 4.29-1.33 4.69-6.1H21v-2.5h-2.47c-.15-1.65-1.09-4.2-4.03-4.2-2.25 0-4.18 1.91-4.94 2.84-.58.73-2.06 2.48-2.29 2.72-.25.3-.68.84-1.11.84-.45 0-.72-.83-.36-1.92.35-1.09 1.4-2.86 1.85-3.52.78-1.14 1.3-1.92 1.3-3.28C8.95 3.69 7.31 3 6.44 3 5.12 3 3.97 4 3.72 4.25c-.36.36-.66.66-.88.93l1.75 1.71zm9.29 11.66c-.31 0-.74-.26-.74-.72 0-.6.73-2.2 2.87-2.76-.3 2.69-1.43 3.48-2.13 3.48z"},"children":[]}]};exports.ic_gesture_twotone=ic_gesture_twotone;var ic_how_to_reg={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none","fill-rule":"evenodd"},"children":[]},{"name":"g","attribs":{"fill-rule":"evenodd"},"children":[{"name":"path","attribs":{"d":"M9 17l3-2.94c-.39-.04-.68-.06-1-.06-2.67 0-8 1.34-8 4v2h9l-3-3zm2-5c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4"},"children":[{"name":"path","attribs":{"d":"M9 17l3-2.94c-.39-.04-.68-.06-1-.06-2.67 0-8 1.34-8 4v2h9l-3-3zm2-5c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4"},"children":[]}]},{"name":"path","attribs":{"d":"M15.47 20.5L12 17l1.4-1.41 2.07 2.08 5.13-5.17 1.4 1.41z"},"children":[{"name":"path","attribs":{"d":"M15.47 20.5L12 17l1.4-1.41 2.07 2.08 5.13-5.17 1.4 1.41z"},"children":[]}]}]}]};exports.ic_how_to_reg=ic_how_to_reg;var ic_how_to_reg_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zM5 18c.2-.63 2.57-1.68 4.96-1.94l2.04-2c-.39-.04-.68-.06-1-.06-2.67 0-8 1.34-8 4v2h9l-2-2H5zm15.6-5.5l-5.13 5.17-2.07-2.08L12 17l3.47 3.5L22 13.91z"},"children":[]}]};exports.ic_how_to_reg_outline=ic_how_to_reg_outline;var ic_how_to_reg_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"11","cy":"8","opacity":".3","r":"2"},"children":[]},{"name":"path","attribs":{"d":"M5 18h4.99L9 17l.93-.94C7.55 16.33 5.2 17.37 5 18z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M11 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm-1 12H5c.2-.63 2.55-1.67 4.93-1.94h.03l.46-.45L12 14.06c-.39-.04-.68-.06-1-.06-2.67 0-8 1.34-8 4v2h9l-2-2zm10.6-5.5l-5.13 5.17-2.07-2.08L12 17l3.47 3.5L22 13.91z"},"children":[]}]};exports.ic_how_to_reg_twotone=ic_how_to_reg_twotone;var ic_how_to_vote={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 13h-.68l-2 2h1.91L19 17H5l1.78-2h2.05l-2-2H6l-3 3v4c0 1.1.89 2 1.99 2H19c1.1 0 2-.89 2-2v-4l-3-3zm-1-5.05l-4.95 4.95-3.54-3.54 4.95-4.95L17 7.95zm-4.24-5.66L6.39 8.66c-.39.39-.39 1.02 0 1.41l4.95 4.95c.39.39 1.02.39 1.41 0l6.36-6.36c.39-.39.39-1.02 0-1.41L14.16 2.3c-.38-.4-1.01-.4-1.4-.01z"},"children":[]}]};exports.ic_how_to_vote=ic_how_to_vote;var ic_how_to_vote_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 13h-.68l-2 2h1.91L19 17H5l1.78-2h2.05l-2-2H6l-3 3v4c0 1.1.89 2 1.99 2H19c1.1 0 2-.89 2-2v-4l-3-3zm1 7H5v-1h14v1zm-7.66-4.98c.39.39 1.02.39 1.41 0l6.36-6.36c.39-.39.39-1.02 0-1.41L14.16 2.3c-.38-.4-1.01-.4-1.4-.01L6.39 8.66c-.39.39-.39 1.02 0 1.41l4.95 4.95zm2.12-10.61L17 7.95l-4.95 4.95-3.54-3.54 4.95-4.95z"},"children":[]}]};exports.ic_how_to_vote_outline=ic_how_to_vote_outline;var ic_how_to_vote_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 19h14v1H5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M18 13h-.68l-2 2h1.91L19 17H5l1.78-2h2.05l-2-2H6l-3 3v4c0 1.1.89 2 1.99 2H19c1.1 0 2-.89 2-2v-4l-3-3zm1 7H5v-1h14v1z"},"children":[]},{"name":"path","attribs":{"d":"M12.048 12.905L8.505 9.362l4.95-4.95 3.543 3.543z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M19.11 7.25L14.16 2.3c-.38-.4-1.01-.4-1.4-.01L6.39 8.66c-.39.39-.39 1.02 0 1.41l4.95 4.95c.39.39 1.02.39 1.41 0l6.36-6.36c.39-.39.39-1.02 0-1.41zm-7.06 5.65L8.51 9.36l4.95-4.95L17 7.95l-4.95 4.95z"},"children":[]}]};exports.ic_how_to_vote_twotone=ic_how_to_vote_twotone;var ic_inbox={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H4.99c-1.11 0-1.98.89-1.98 2L3 19c0 1.1.88 2 1.99 2H19c1.1 0 2-.9 2-2V5c0-1.11-.9-2-2-2zm0 12h-4c0 1.66-1.35 3-3 3s-3-1.34-3-3H4.99V5H19v10z"},"children":[]}]};exports.ic_inbox=ic_inbox;var ic_inbox_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5v-3h3.56c.69 1.19 1.97 2 3.45 2s2.75-.81 3.45-2H19v3zm0-5h-4.99c0 1.1-.9 2-2 2s-2-.9-2-2H5V5h14v9z"},"children":[]}]};exports.ic_inbox_outline=ic_inbox_outline;var ic_inbox_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12.01 18c-1.48 0-2.75-.81-3.45-2H5v3h14v-3h-3.55c-.69 1.19-1.97 2-3.44 2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5v-3h3.56c.69 1.19 1.97 2 3.45 2s2.75-.81 3.45-2H19v3zm0-5h-5c0 1.1-.9 2-2 2s-2-.9-2-2H5V5h14v9z"},"children":[]}]};exports.ic_inbox_twotone=ic_inbox_twotone;var ic_insights={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M21,8c-1.45,0-2.26,1.44-1.93,2.51l-3.55,3.56c-0.3-0.09-0.74-0.09-1.04,0l-2.55-2.55C12.27,10.45,11.46,9,10,9 c-1.45,0-2.27,1.44-1.93,2.52l-4.56,4.55C2.44,15.74,1,16.55,1,18c0,1.1,0.9,2,2,2c1.45,0,2.26-1.44,1.93-2.51l4.55-4.56 c0.3,0.09,0.74,0.09,1.04,0l2.55,2.55C12.73,16.55,13.54,18,15,18c1.45,0,2.27-1.44,1.93-2.52l3.56-3.55 C21.56,12.26,23,11.45,23,10C23,8.9,22.1,8,21,8z"},"children":[{"name":"path","attribs":{"d":"M21,8c-1.45,0-2.26,1.44-1.93,2.51l-3.55,3.56c-0.3-0.09-0.74-0.09-1.04,0l-2.55-2.55C12.27,10.45,11.46,9,10,9 c-1.45,0-2.27,1.44-1.93,2.52l-4.56,4.55C2.44,15.74,1,16.55,1,18c0,1.1,0.9,2,2,2c1.45,0,2.26-1.44,1.93-2.51l4.55-4.56 c0.3,0.09,0.74,0.09,1.04,0l2.55,2.55C12.73,16.55,13.54,18,15,18c1.45,0,2.27-1.44,1.93-2.52l3.56-3.55 C21.56,12.26,23,11.45,23,10C23,8.9,22.1,8,21,8z"},"children":[]}]},{"name":"polygon","attribs":{"points":"15,9 15.94,6.93 18,6 15.94,5.07 15,3 14.08,5.07 12,6 14.08,6.93"},"children":[{"name":"polygon","attribs":{"points":"15,9 15.94,6.93 18,6 15.94,5.07 15,3 14.08,5.07 12,6 14.08,6.93"},"children":[]}]},{"name":"polygon","attribs":{"points":"3.5,11 4,9 6,8.5 4,8 3.5,6 3,8 1,8.5 3,9"},"children":[{"name":"polygon","attribs":{"points":"3.5,11 4,9 6,8.5 4,8 3.5,6 3,8 1,8.5 3,9"},"children":[]}]}]}]}]}]};exports.ic_insights=ic_insights;var ic_insights_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M21,8c-1.45,0-2.26,1.44-1.93,2.51l-3.55,3.56c-0.3-0.09-0.74-0.09-1.04,0l-2.55-2.55C12.27,10.45,11.46,9,10,9 c-1.45,0-2.27,1.44-1.93,2.52l-4.56,4.55C2.44,15.74,1,16.55,1,18c0,1.1,0.9,2,2,2c1.45,0,2.26-1.44,1.93-2.51l4.55-4.56 c0.3,0.09,0.74,0.09,1.04,0l2.55,2.55C12.73,16.55,13.54,18,15,18c1.45,0,2.27-1.44,1.93-2.52l3.56-3.55 C21.56,12.26,23,11.45,23,10C23,8.9,22.1,8,21,8z"},"children":[{"name":"path","attribs":{"d":"M21,8c-1.45,0-2.26,1.44-1.93,2.51l-3.55,3.56c-0.3-0.09-0.74-0.09-1.04,0l-2.55-2.55C12.27,10.45,11.46,9,10,9 c-1.45,0-2.27,1.44-1.93,2.52l-4.56,4.55C2.44,15.74,1,16.55,1,18c0,1.1,0.9,2,2,2c1.45,0,2.26-1.44,1.93-2.51l4.55-4.56 c0.3,0.09,0.74,0.09,1.04,0l2.55,2.55C12.73,16.55,13.54,18,15,18c1.45,0,2.27-1.44,1.93-2.52l3.56-3.55 C21.56,12.26,23,11.45,23,10C23,8.9,22.1,8,21,8z"},"children":[]}]},{"name":"polygon","attribs":{"points":"15,9 15.94,6.93 18,6 15.94,5.07 15,3 14.08,5.07 12,6 14.08,6.93"},"children":[{"name":"polygon","attribs":{"points":"15,9 15.94,6.93 18,6 15.94,5.07 15,3 14.08,5.07 12,6 14.08,6.93"},"children":[]}]},{"name":"polygon","attribs":{"points":"3.5,11 4,9 6,8.5 4,8 3.5,6 3,8 1,8.5 3,9"},"children":[{"name":"polygon","attribs":{"points":"3.5,11 4,9 6,8.5 4,8 3.5,6 3,8 1,8.5 3,9"},"children":[]}]}]}]}]}]};exports.ic_insights_outline=ic_insights_outline;var ic_insights_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M21,8c-1.45,0-2.26,1.44-1.93,2.51l-3.55,3.56c-0.3-0.09-0.74-0.09-1.04,0l-2.55-2.55C12.27,10.45,11.46,9,10,9 c-1.45,0-2.27,1.44-1.93,2.52l-4.56,4.55C2.44,15.74,1,16.55,1,18c0,1.1,0.9,2,2,2c1.45,0,2.26-1.44,1.93-2.51l4.55-4.56 c0.3,0.09,0.74,0.09,1.04,0l2.55,2.55C12.73,16.55,13.54,18,15,18c1.45,0,2.27-1.44,1.93-2.52l3.56-3.55 C21.56,12.26,23,11.45,23,10C23,8.9,22.1,8,21,8z"},"children":[{"name":"path","attribs":{"d":"M21,8c-1.45,0-2.26,1.44-1.93,2.51l-3.55,3.56c-0.3-0.09-0.74-0.09-1.04,0l-2.55-2.55C12.27,10.45,11.46,9,10,9 c-1.45,0-2.27,1.44-1.93,2.52l-4.56,4.55C2.44,15.74,1,16.55,1,18c0,1.1,0.9,2,2,2c1.45,0,2.26-1.44,1.93-2.51l4.55-4.56 c0.3,0.09,0.74,0.09,1.04,0l2.55,2.55C12.73,16.55,13.54,18,15,18c1.45,0,2.27-1.44,1.93-2.52l3.56-3.55 C21.56,12.26,23,11.45,23,10C23,8.9,22.1,8,21,8z"},"children":[]}]},{"name":"polygon","attribs":{"points":"15,9 15.94,6.93 18,6 15.94,5.07 15,3 14.08,5.07 12,6 14.08,6.93"},"children":[{"name":"polygon","attribs":{"points":"15,9 15.94,6.93 18,6 15.94,5.07 15,3 14.08,5.07 12,6 14.08,6.93"},"children":[]}]},{"name":"polygon","attribs":{"points":"3.5,11 4,9 6,8.5 4,8 3.5,6 3,8 1,8.5 3,9"},"children":[{"name":"polygon","attribs":{"points":"3.5,11 4,9 6,8.5 4,8 3.5,6 3,8 1,8.5 3,9"},"children":[]}]}]}]}]}]};exports.ic_insights_twotone=ic_insights_twotone;var ic_inventory={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 2H4c-1 0-2 .9-2 2v3.01c0 .72.43 1.34 1 1.69V20c0 1.1 1.1 2 2 2h14c.9 0 2-.9 2-2V8.7c.57-.35 1-.97 1-1.69V4c0-1.1-1-2-2-2zm-5 12H9v-2h6v2zm5-7H4V4l16-.02V7z"},"children":[]}]};exports.ic_inventory=ic_inventory;var ic_link={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z"},"children":[]}]};exports.ic_link=ic_link;var ic_link_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 7h-4v2h4c1.65 0 3 1.35 3 3s-1.35 3-3 3h-4v2h4c2.76 0 5-2.24 5-5s-2.24-5-5-5zm-6 8H7c-1.65 0-3-1.35-3-3s1.35-3 3-3h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-2zm-3-4h8v2H8z"},"children":[]}]};exports.ic_link_outline=ic_link_outline;var ic_link_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 7h-4v2h4c1.65 0 3 1.35 3 3s-1.35 3-3 3h-4v2h4c2.76 0 5-2.24 5-5s-2.24-5-5-5zm-6 8H7c-1.65 0-3-1.35-3-3s1.35-3 3-3h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-2zm-3-4h8v2H8z","opacity":".87"},"children":[]}]};exports.ic_link_twotone=ic_link_twotone;var ic_link_off={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 7h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1 0 1.43-.98 2.63-2.31 2.98l1.46 1.46C20.88 15.61 22 13.95 22 12c0-2.76-2.24-5-5-5zm-1 4h-2.19l2 2H16zM2 4.27l3.11 3.11C3.29 8.12 2 9.91 2 12c0 2.76 2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1 0-1.59 1.21-2.9 2.76-3.07L8.73 11H8v2h2.73L13 15.27V17h1.73l4.01 4L20 19.74 3.27 3 2 4.27z"},"children":[]},{"name":"path","attribs":{"d":"M0 24V0","fill":"none"},"children":[]}]};exports.ic_link_off=ic_link_off;var ic_link_off_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14.39 11L16 12.61V11zM17 7h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1 0 1.27-.77 2.37-1.87 2.84l1.4 1.4C21.05 15.36 22 13.79 22 12c0-2.76-2.24-5-5-5zM2 4.27l3.11 3.11C3.29 8.12 2 9.91 2 12c0 2.76 2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1 0-1.59 1.21-2.9 2.76-3.07L8.73 11H8v2h2.73L13 15.27V17h1.73l4.01 4.01 1.41-1.41L3.41 2.86 2 4.27z"},"children":[]}]};exports.ic_link_off_outline=ic_link_off_outline;var ic_link_off_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14.39 11L16 12.61V11zM17 7h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1 0 1.27-.77 2.37-1.87 2.84l1.4 1.4C21.05 15.36 22 13.79 22 12c0-2.76-2.24-5-5-5zM2 4.27l3.11 3.11C3.29 8.12 2 9.91 2 12c0 2.76 2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1 0-1.59 1.21-2.9 2.76-3.07L8.73 11H8v2h2.73L13 15.27V17h1.73l4.01 4.01 1.41-1.41L3.41 2.86 2 4.27z"},"children":[]}]};exports.ic_link_off_twotone=ic_link_off_twotone;var ic_low_priority={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14 5h8v2h-8zm0 5.5h8v2h-8zm0 5.5h8v2h-8zM2 11.5C2 15.08 4.92 18 8.5 18H9v2l3-3-3-3v2h-.5C6.02 16 4 13.98 4 11.5S6.02 7 8.5 7H12V5H8.5C4.92 5 2 7.92 2 11.5z"},"children":[]}]};exports.ic_low_priority=ic_low_priority;var ic_low_priority_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14 5h8v2h-8V5zm0 5.5h8v2h-8v-2zm0 5.5h8v2h-8v-2zM2 11.5C2 15.08 4.92 18 8.5 18H9v2l3-3-3-3v2h-.5C6.02 16 4 13.98 4 11.5S6.02 7 8.5 7H12V5H8.5C4.92 5 2 7.92 2 11.5z"},"children":[]}]};exports.ic_low_priority_outline=ic_low_priority_outline;var ic_low_priority_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14 5h8v2h-8V5zm0 5.5h8v2h-8v-2zm0 5.5h8v2h-8v-2zM2 11.5C2 15.08 4.92 18 8.5 18H9v2l3-3-3-3v2h-.5C6.02 16 4 13.98 4 11.5S6.02 7 8.5 7H12V5H8.5C4.92 5 2 7.92 2 11.5z"},"children":[]}]};exports.ic_low_priority_twotone=ic_low_priority_twotone;var ic_mail={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z"},"children":[]}]};exports.ic_mail=ic_mail;var ic_mail_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 6H4l8 4.99zM4 8v10h16V8l-8 5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 2l-8 4.99L4 6h16zm0 12H4V8l8 5 8-5v10z"},"children":[]}]};exports.ic_mail_twotone=ic_mail_twotone;var ic_markunread={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z"},"children":[]}]};exports.ic_markunread=ic_markunread;var ic_markunread_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6zm-2 0l-8 5-8-5h16zm0 12H4V8l8 5 8-5v10z"},"children":[]}]};exports.ic_markunread_outline=ic_markunread_outline;var ic_markunread_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 6H4l8 5zM4 8v10h16V8l-8 5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 2l-8 5-8-5h16zm0 12H4V8l8 5 8-5v10z"},"children":[]}]};exports.ic_markunread_twotone=ic_markunread_twotone;var ic_move_to_inbox={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H4.99c-1.11 0-1.98.9-1.98 2L3 19c0 1.1.88 2 1.99 2H19c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 12h-4c0 1.66-1.35 3-3 3s-3-1.34-3-3H4.99V5H19v10zm-3-5h-2V7h-4v3H8l4 4 4-4z"},"children":[]}]};exports.ic_move_to_inbox=ic_move_to_inbox;var ic_move_to_inbox_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16 9h-2.55V6h-2.9v3H8l4 4zm3-6H4.99C3.88 3 3 3.9 3 5v14c0 1.1.88 2 1.99 2H19c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5v-3h3.56c.69 1.19 1.97 2 3.45 2s2.75-.81 3.45-2H19v3zm0-5h-4.99c0 1.1-.9 2-2 2s-2-.9-2-2H5l-.01-9H19v9z"},"children":[]}]};exports.ic_move_to_inbox_outline=ic_move_to_inbox_outline;var ic_move_to_inbox_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12.01 18c-1.48 0-2.75-.81-3.45-2H5v3h14v-3h-3.55c-.69 1.19-1.97 2-3.44 2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M16 9h-2.55V6h-2.9v3H8l4 4zm3-6H4.99C3.88 3 3 3.9 3 5v14c0 1.1.88 2 1.99 2H19c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5v-3h3.56c.69 1.19 1.97 2 3.45 2s2.75-.81 3.45-2H19v3zm0-5h-4.99c0 1.1-.9 2-2 2s-2-.9-2-2H5l-.01-9H19v9z"},"children":[]}]};exports.ic_move_to_inbox_twotone=ic_move_to_inbox_twotone;var ic_next_week={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M20,7h-4V5c0-0.55-0.22-1.05-0.59-1.41C15.05,3.22,14.55,3,14,3h-4C8.9,3,8,3.9,8,5v2H4C2.9,7,2,7.9,2,9v11 c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V9C22,7.9,21.1,7,20,7z M10,5h4v2h-4V5z M11,18.5l-1-1l3-3l-3-3l1-1l4,4L11,18.5z"},"children":[{"name":"path","attribs":{"d":"M20,7h-4V5c0-0.55-0.22-1.05-0.59-1.41C15.05,3.22,14.55,3,14,3h-4C8.9,3,8,3.9,8,5v2H4C2.9,7,2,7.9,2,9v11 c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V9C22,7.9,21.1,7,20,7z M10,5h4v2h-4V5z M11,18.5l-1-1l3-3l-3-3l1-1l4,4L11,18.5z"},"children":[]}]}]}]}]}]}]}]};exports.ic_next_week=ic_next_week;var ic_next_week_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11 18.5l4-4-4-4-1 1 3 3-3 3zM20 7h-4V5c0-.55-.22-1.05-.59-1.41C15.05 3.22 14.55 3 14 3h-4c-1.1 0-2 .9-2 2v2H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zM10 5h4v2h-4V5zm10 15H4V9h16v11z"},"children":[]}]};exports.ic_next_week_outline=ic_next_week_outline;var ic_next_week_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 20h16V9H4v11zm6-8.5l1-1 4 4-4 4-1-1 3-3-3-3z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M11 18.5l4-4-4-4-1 1 3 3-3 3zM20 7h-4V5c0-.55-.22-1.05-.59-1.41C15.05 3.22 14.55 3 14 3h-4c-1.1 0-2 .9-2 2v2H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zM10 5h4v2h-4V5zm10 15H4V9h16v11z"},"children":[]}]};exports.ic_next_week_twotone=ic_next_week_twotone;var ic_outlined_flag={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14 6l-1-2H5v17h2v-7h5l1 2h7V6h-6zm4 8h-4l-1-2H7V6h5l1 2h5v6z"},"children":[]}]};exports.ic_outlined_flag=ic_outlined_flag;var ic_outlined_flag_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14 6l-1-2H5v17h2v-7h5l1 2h7V6h-6zm4 8h-4l-1-2H7V6h5l1 2h5v6z"},"children":[]}]};exports.ic_outlined_flag_outline=ic_outlined_flag_outline;var ic_outlined_flag_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14 6l-1-2H5v17h2v-7h5l1 2h7V6h-6zm4 8h-4l-1-2H7V6h5l1 2h5v6z"},"children":[]}]};exports.ic_outlined_flag_twotone=ic_outlined_flag_twotone;var ic_policy={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M21,5l-9-4L3,5v6c0,5.55,3.84,10.74,9,12c2.3-0.56,4.33-1.9,5.88-3.71l-3.12-3.12c-1.94,1.29-4.58,1.07-6.29-0.64 c-1.95-1.95-1.95-5.12,0-7.07c1.95-1.95,5.12-1.95,7.07,0c1.71,1.71,1.92,4.35,0.64,6.29l2.9,2.9C20.29,15.69,21,13.38,21,11V5z"},"children":[{"name":"path","attribs":{"d":"M21,5l-9-4L3,5v6c0,5.55,3.84,10.74,9,12c2.3-0.56,4.33-1.9,5.88-3.71l-3.12-3.12c-1.94,1.29-4.58,1.07-6.29-0.64 c-1.95-1.95-1.95-5.12,0-7.07c1.95-1.95,5.12-1.95,7.07,0c1.71,1.71,1.92,4.35,0.64,6.29l2.9,2.9C20.29,15.69,21,13.38,21,11V5z"},"children":[]}]},{"name":"circle","attribs":{"cx":"12","cy":"12","r":"3"},"children":[{"name":"circle","attribs":{"cx":"12","cy":"12","r":"3"},"children":[]}]}]}]}]}]};exports.ic_policy=ic_policy;var ic_policy_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M12,1L3,5v6c0,5.55,3.84,10.74,9,12c5.16-1.26,9-6.45,9-12V5L12,1z M19,11c0,1.85-0.51,3.65-1.38,5.21l-1.45-1.45 c1.29-1.94,1.07-4.58-0.64-6.29c-1.95-1.95-5.12-1.95-7.07,0c-1.95,1.95-1.95,5.12,0,7.07c1.71,1.71,4.35,1.92,6.29,0.64 l1.72,1.72c-1.19,1.42-2.73,2.51-4.47,3.04C7.98,19.69,5,15.52,5,11V6.3l7-3.11l7,3.11V11z M12,15c-1.66,0-3-1.34-3-3s1.34-3,3-3 s3,1.34,3,3S13.66,15,12,15z"},"children":[{"name":"path","attribs":{"d":"M12,1L3,5v6c0,5.55,3.84,10.74,9,12c5.16-1.26,9-6.45,9-12V5L12,1z M19,11c0,1.85-0.51,3.65-1.38,5.21l-1.45-1.45 c1.29-1.94,1.07-4.58-0.64-6.29c-1.95-1.95-5.12-1.95-7.07,0c-1.95,1.95-1.95,5.12,0,7.07c1.71,1.71,4.35,1.92,6.29,0.64 l1.72,1.72c-1.19,1.42-2.73,2.51-4.47,3.04C7.98,19.69,5,15.52,5,11V6.3l7-3.11l7,3.11V11z M12,15c-1.66,0-3-1.34-3-3s1.34-3,3-3 s3,1.34,3,3S13.66,15,12,15z"},"children":[]}]}]}]}]}]};exports.ic_policy_outline=ic_policy_outline;var ic_policy_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M5,6.3V11c0,4.52,2.98,8.69,7,9.93c1.74-0.53,3.28-1.62,4.47-3.04l-1.72-1.72 c-1.94,1.29-4.58,1.07-6.29-0.64c-1.95-1.95-1.95-5.12,0-7.07c1.95-1.95,5.12-1.95,7.07,0c1.71,1.71,1.92,4.35,0.64,6.29 l1.45,1.45C18.49,14.65,19,12.85,19,11V6.3l-7-3.11L5,6.3z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M5,6.3V11c0,4.52,2.98,8.69,7,9.93c1.74-0.53,3.28-1.62,4.47-3.04l-1.72-1.72 c-1.94,1.29-4.58,1.07-6.29-0.64c-1.95-1.95-1.95-5.12,0-7.07c1.95-1.95,5.12-1.95,7.07,0c1.71,1.71,1.92,4.35,0.64,6.29 l1.45,1.45C18.49,14.65,19,12.85,19,11V6.3l-7-3.11L5,6.3z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M12,1L3,5v6c0,5.55,3.84,10.74,9,12c0.65-0.16,1.27-0.38,1.87-0.65c1.8-0.82,3.36-2.13,4.57-3.74 C20.04,16.46,21,13.77,21,11V5L12,1z M19,11c0,1.85-0.51,3.65-1.38,5.21l-1.45-1.45c1.29-1.94,1.07-4.58-0.64-6.29 c-1.95-1.95-5.12-1.95-7.07,0c-1.95,1.95-1.95,5.12,0,7.07c1.71,1.71,4.35,1.92,6.29,0.64l1.72,1.72 c-1.19,1.42-2.73,2.51-4.47,3.04C7.98,19.69,5,15.52,5,11V6.3l7-3.11l7,3.11V11z M15,12c0,1.66-1.34,3-3,3s-3-1.34-3-3s1.34-3,3-3 S15,10.34,15,12z"},"children":[{"name":"path","attribs":{"d":"M12,1L3,5v6c0,5.55,3.84,10.74,9,12c0.65-0.16,1.27-0.38,1.87-0.65c1.8-0.82,3.36-2.13,4.57-3.74 C20.04,16.46,21,13.77,21,11V5L12,1z M19,11c0,1.85-0.51,3.65-1.38,5.21l-1.45-1.45c1.29-1.94,1.07-4.58-0.64-6.29 c-1.95-1.95-5.12-1.95-7.07,0c-1.95,1.95-1.95,5.12,0,7.07c1.71,1.71,4.35,1.92,6.29,0.64l1.72,1.72 c-1.19,1.42-2.73,2.51-4.47,3.04C7.98,19.69,5,15.52,5,11V6.3l7-3.11l7,3.11V11z M15,12c0,1.66-1.34,3-3,3s-3-1.34-3-3s1.34-3,3-3 S15,10.34,15,12z"},"children":[]}]}]}]}]}]};exports.ic_policy_twotone=ic_policy_twotone;var ic_push_pin={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M16,9V4l1,0c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H7C6.45,2,6,2.45,6,3v0 c0,0.55,0.45,1,1,1l1,0v5c0,1.66-1.34,3-3,3h0v2h5.97v7l1,1l1-1v-7H19v-2h0C17.34,12,16,10.66,16,9z","fill-rule":"evenodd"},"children":[{"name":"path","attribs":{"d":"M16,9V4l1,0c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H7C6.45,2,6,2.45,6,3v0 c0,0.55,0.45,1,1,1l1,0v5c0,1.66-1.34,3-3,3h0v2h5.97v7l1,1l1-1v-7H19v-2h0C17.34,12,16,10.66,16,9z","fill-rule":"evenodd"},"children":[]}]}]}]};exports.ic_push_pin=ic_push_pin;var ic_push_pin_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M14,4v5c0,1.12,0.37,2.16,1,3H9c0.65-0.86,1-1.9,1-3V4H14 M17,2H7C6.45,2,6,2.45,6,3c0,0.55,0.45,1,1,1c0,0,0,0,0,0l1,0v5 c0,1.66-1.34,3-3,3v2h5.97v7l1,1l1-1v-7H19v-2c0,0,0,0,0,0c-1.66,0-3-1.34-3-3V4l1,0c0,0,0,0,0,0c0.55,0,1-0.45,1-1 C18,2.45,17.55,2,17,2L17,2z"},"children":[{"name":"path","attribs":{"d":"M14,4v5c0,1.12,0.37,2.16,1,3H9c0.65-0.86,1-1.9,1-3V4H14 M17,2H7C6.45,2,6,2.45,6,3c0,0.55,0.45,1,1,1c0,0,0,0,0,0l1,0v5 c0,1.66-1.34,3-3,3v2h5.97v7l1,1l1-1v-7H19v-2c0,0,0,0,0,0c-1.66,0-3-1.34-3-3V4l1,0c0,0,0,0,0,0c0.55,0,1-0.45,1-1 C18,2.45,17.55,2,17,2L17,2z"},"children":[]}]}]}]};exports.ic_push_pin_outline=ic_push_pin_outline;var ic_push_pin_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M14,4h-4v5c0,1.1-0.35,2.14-1,3h6c-0.63-0.84-1-1.88-1-3V4z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M14,4h-4v5c0,1.1-0.35,2.14-1,3h6c-0.63-0.84-1-1.88-1-3V4z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M19,12c-1.66,0-3-1.34-3-3V4l1,0c0,0,0,0,0,0c0.55,0,1-0.45,1-1s-0.45-1-1-1H7C6.45,2,6,2.45,6,3s0.45,1,1,1c0,0,0,0,0,0 l1,0v5c0,1.66-1.34,3-3,3v2h5.97v7l1,1l1-1v-7H19L19,12C19,12,19,12,19,12z M9,12c0.65-0.86,1-1.9,1-3V4h4v5c0,1.12,0.37,2.16,1,3 H9z"},"children":[{"name":"path","attribs":{"d":"M19,12c-1.66,0-3-1.34-3-3V4l1,0c0,0,0,0,0,0c0.55,0,1-0.45,1-1s-0.45-1-1-1H7C6.45,2,6,2.45,6,3s0.45,1,1,1c0,0,0,0,0,0 l1,0v5c0,1.66-1.34,3-3,3v2h5.97v7l1,1l1-1v-7H19L19,12C19,12,19,12,19,12z M9,12c0.65-0.86,1-1.9,1-3V4h4v5c0,1.12,0.37,2.16,1,3 H9z"},"children":[]}]}]}]}]}]};exports.ic_push_pin_twotone=ic_push_pin_twotone;var ic_redo={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18.4 10.6C16.55 8.99 14.15 8 11.5 8c-4.65 0-8.58 3.03-9.96 7.22L3.9 16c1.05-3.19 4.05-5.5 7.6-5.5 1.95 0 3.73.72 5.12 1.88L13 16h9V7l-3.6 3.6z"},"children":[]}]};exports.ic_redo=ic_redo;var ic_redo_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18.4 10.6C16.55 8.99 14.15 8 11.5 8c-4.65 0-8.58 3.03-9.96 7.22L3.9 16c1.05-3.19 4.05-5.5 7.6-5.5 1.95 0 3.73.72 5.12 1.88L13 16h9V7l-3.6 3.6z"},"children":[]}]};exports.ic_redo_outline=ic_redo_outline;var ic_redo_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18.4 10.6C16.55 8.99 14.15 8 11.5 8c-4.65 0-8.58 3.03-9.96 7.22L3.9 16c1.05-3.19 4.05-5.5 7.6-5.5 1.95 0 3.73.72 5.12 1.88L13 16h9V7l-3.6 3.6z"},"children":[]}]};exports.ic_redo_twotone=ic_redo_twotone;var ic_remove={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 13H5v-2h14v2z"},"children":[]}]};exports.ic_remove=ic_remove;var ic_remove_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 13H5v-2h14v2z"},"children":[]}]};exports.ic_remove_outline=ic_remove_outline;var ic_remove_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 13H5v-2h14v2z"},"children":[]}]};exports.ic_remove_twotone=ic_remove_twotone;var ic_remove_circle={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5 11H7v-2h10v2z"},"children":[]}]};exports.ic_remove_circle=ic_remove_circle;var ic_remove_circle_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5 11H7v-2h10v2z"},"children":[]}]};exports.ic_remove_circle_outline=ic_remove_circle_outline;var ic_remove_circle_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm5 9H7v-2h10v2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M7 11h10v2H7zm5-9C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"},"children":[]}]};exports.ic_remove_circle_twotone=ic_remove_circle_twotone;var ic_remove_circle_outline_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 11v2h10v-2H7zm5-9C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"},"children":[]}]};exports.ic_remove_circle_outline_outline=ic_remove_circle_outline_outline;var ic_remove_circle_outline_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 11h10v2H7zm5-9C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"},"children":[]}]};exports.ic_remove_circle_outline_twotone=ic_remove_circle_outline_twotone;var ic_reply={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 9V5l-7 7 7 7v-4.1c5 0 8.5 1.6 11 5.1-1-5-4-10-11-11z"},"children":[]}]};exports.ic_reply=ic_reply;var ic_reply_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 9V5l-7 7 7 7v-4.1c5 0 8.5 1.6 11 5.1-1-5-4-10-11-11z"},"children":[]}]};exports.ic_reply_outline=ic_reply_outline;var ic_reply_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 9V5l-7 7 7 7v-4.1c5 0 8.5 1.6 11 5.1-1-5-4-10-11-11z"},"children":[]}]};exports.ic_reply_twotone=ic_reply_twotone;var ic_reply_all={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 8V5l-7 7 7 7v-3l-4-4 4-4zm6 1V5l-7 7 7 7v-4.1c5 0 8.5 1.6 11 5.1-1-5-4-10-11-11z"},"children":[]}]};exports.ic_reply_all=ic_reply_all;var ic_reply_all_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 8V5l-7 7 7 7v-3l-4-4 4-4zm6 1V5l-7 7 7 7v-4.1c5 0 8.5 1.6 11 5.1-1-5-4-10-11-11z"},"children":[]}]};exports.ic_reply_all_outline=ic_reply_all_outline;var ic_reply_all_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 8V5l-7 7 7 7v-3l-4-4 4-4zm6 1V5l-7 7 7 7v-4.1c5 0 8.5 1.6 11 5.1-1-5-4-10-11-11z"},"children":[]}]};exports.ic_reply_all_twotone=ic_reply_all_twotone;var ic_report={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.73 3H8.27L3 8.27v7.46L8.27 21h7.46L21 15.73V8.27L15.73 3zM12 17.3c-.72 0-1.3-.58-1.3-1.3 0-.72.58-1.3 1.3-1.3.72 0 1.3.58 1.3 1.3 0 .72-.58 1.3-1.3 1.3zm1-4.3h-2V7h2v6z"},"children":[]}]};exports.ic_report=ic_report;var ic_report_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.73 3H8.27L3 8.27v7.46L8.27 21h7.46L21 15.73V8.27L15.73 3zM19 14.9L14.9 19H9.1L5 14.9V9.1L9.1 5h5.8L19 9.1v5.8z"},"children":[]},{"name":"circle","attribs":{"cx":"12","cy":"16","r":"1"},"children":[]},{"name":"path","attribs":{"d":"M11 7h2v7h-2z"},"children":[]}]};exports.ic_report_outline=ic_report_outline;var ic_report_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9.1 5L5 9.1v5.8L9.1 19h5.8l4.1-4.1V9.1L14.9 5H9.1zM12 17c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm1-3h-2V7h2v7z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M15.73 3H8.27L3 8.27v7.46L8.27 21h7.46L21 15.73V8.27L15.73 3zM19 14.9L14.9 19H9.1L5 14.9V9.1L9.1 5h5.8L19 9.1v5.8z"},"children":[]},{"name":"circle","attribs":{"cx":"12","cy":"16","r":"1"},"children":[]},{"name":"path","attribs":{"d":"M11 7h2v7h-2z"},"children":[]}]};exports.ic_report_twotone=ic_report_twotone;var ic_report_gmailerrorred_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.73 3H8.27L3 8.27v7.46L8.27 21h7.46L21 15.73V8.27L15.73 3zM19 14.9L14.9 19H9.1L5 14.9V9.1L9.1 5h5.8L19 9.1v5.8z"},"children":[]},{"name":"circle","attribs":{"cx":"12","cy":"16","r":"1"},"children":[]},{"name":"path","attribs":{"d":"M11 7h2v7h-2z"},"children":[]}]};exports.ic_report_gmailerrorred_outline=ic_report_gmailerrorred_outline;var ic_report_gmailerrorred_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.73 3H8.27L3 8.27v7.46L8.27 21h7.46L21 15.73V8.27L15.73 3zM19 14.9L14.9 19H9.1L5 14.9V9.1L9.1 5h5.8L19 9.1v5.8z"},"children":[]},{"name":"circle","attribs":{"cx":"12","cy":"16","r":"1"},"children":[]},{"name":"path","attribs":{"d":"M11 7h2v7h-2z"},"children":[]}]};exports.ic_report_gmailerrorred_twotone=ic_report_gmailerrorred_twotone;var ic_report_off={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11 7h2v2.92l6.91 6.91 1.09-1.1V8.27L15.73 3H8.27L7.18 4.1 11 7.92zm11.27 14.73l-20-20.01L1 2.99l3.64 3.64L3 8.27v7.46L8.27 21h7.46l1.64-1.63L21 23l1.27-1.27zM12 17.3c-.72 0-1.3-.58-1.3-1.3s.58-1.3 1.3-1.3 1.3.58 1.3 1.3-.58 1.3-1.3 1.3z"},"children":[]}]};exports.ic_report_off=ic_report_off;var ic_report_off_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9.1 5h5.8L19 9.1v5.8l-.22.22 1.42 1.41.8-.8V8.27L15.73 3H8.27l-.8.8 1.41 1.42z"},"children":[]},{"name":"circle","attribs":{"cx":"12","cy":"16","r":"1"},"children":[]},{"name":"path","attribs":{"d":"M13 9.33V7h-2v.33zM2.41 1.58L1 2.99l3.64 3.64L3 8.27v7.46L8.27 21h7.46l1.64-1.64L21.01 23l1.41-1.41L2.41 1.58zM14.9 19H9.1L5 14.9V9.1l1.05-1.05 9.9 9.9L14.9 19z"},"children":[]}]};exports.ic_report_off_outline=ic_report_off_outline;var ic_report_off_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 9.1L14.9 5H9.1l-.22.22L11 7.33V7h2v2.33l5.78 5.79.22-.22zM6.05 8.04L5 9.1v5.8L9.1 19h5.8l1.05-1.05-9.9-9.91zM13 16c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M9.1 5h5.8L19 9.1v5.8l-.22.22 1.42 1.41.8-.8V8.27L15.73 3H8.27l-.8.8 1.41 1.42z"},"children":[]},{"name":"circle","attribs":{"cx":"12","cy":"16","r":"1"},"children":[]},{"name":"path","attribs":{"d":"M13 7h-2v.33l2 2zM2.41 1.58L1 2.99l3.64 3.64L3 8.27v7.46L8.27 21h7.46l1.64-1.64L21.01 23l1.41-1.41L2.41 1.58zM14.9 19H9.1L5 14.9V9.1l1.05-1.05 9.9 9.9L14.9 19z"},"children":[]}]};exports.ic_report_off_twotone=ic_report_off_twotone;var ic_save={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V7l-4-4zm-5 16c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm3-10H5V5h10v4z"},"children":[]}]};exports.ic_save=ic_save;var ic_save_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V7l-4-4zm2 16H5V5h11.17L19 7.83V19zm-7-7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zM6 6h9v4H6z"},"children":[]}]};exports.ic_save_outline=ic_save_outline;var ic_save_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 5v14h14V7.83L16.17 5H5zm7 13c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm3-8H6V6h9v4z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M17 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V7l-4-4zm2 16H5V5h11.17L19 7.83V19zm-7-7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zM6 6h9v4H6z"},"children":[]}]};exports.ic_save_twotone=ic_save_twotone;var ic_save_alt={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 12v7H5v-7H3v7c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-7h-2zm-6 .67l2.59-2.58L17 11.5l-5 5-5-5 1.41-1.41L11 12.67V3h2z"},"children":[]}]};exports.ic_save_alt=ic_save_alt;var ic_save_alt_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 12v7H5v-7H3v7c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-7h-2zm-6 .67l2.59-2.58L17 11.5l-5 5-5-5 1.41-1.41L11 12.67V3h2v9.67z"},"children":[]}]};exports.ic_save_alt_outline=ic_save_alt_outline;var ic_save_alt_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 12v7H5v-7H3v7c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-7h-2zm-6 .67l2.59-2.58L17 11.5l-5 5-5-5 1.41-1.41L11 12.67V3h2v9.67z"},"children":[]}]};exports.ic_save_alt_twotone=ic_save_alt_twotone;var ic_select_all={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 5h2V3c-1.1 0-2 .9-2 2zm0 8h2v-2H3v2zm4 8h2v-2H7v2zM3 9h2V7H3v2zm10-6h-2v2h2V3zm6 0v2h2c0-1.1-.9-2-2-2zM5 21v-2H3c0 1.1.9 2 2 2zm-2-4h2v-2H3v2zM9 3H7v2h2V3zm2 18h2v-2h-2v2zm8-8h2v-2h-2v2zm0 8c1.1 0 2-.9 2-2h-2v2zm0-12h2V7h-2v2zm0 8h2v-2h-2v2zm-4 4h2v-2h-2v2zm0-16h2V3h-2v2zM7 17h10V7H7v10zm2-8h6v6H9V9z"},"children":[]}]};exports.ic_select_all=ic_select_all;var ic_select_all_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 5h2V3c-1.1 0-2 .9-2 2zm0 8h2v-2H3v2zm4 8h2v-2H7v2zM3 9h2V7H3v2zm10-6h-2v2h2V3zm6 0v2h2c0-1.1-.9-2-2-2zM5 21v-2H3c0 1.1.9 2 2 2zm-2-4h2v-2H3v2zM9 3H7v2h2V3zm2 18h2v-2h-2v2zm8-8h2v-2h-2v2zm0 8c1.1 0 2-.9 2-2h-2v2zm0-12h2V7h-2v2zm0 8h2v-2h-2v2zm-4 4h2v-2h-2v2zm0-16h2V3h-2v2zM7 17h10V7H7v10zm2-8h6v6H9V9z"},"children":[]}]};exports.ic_select_all_outline=ic_select_all_outline;var ic_select_all_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 5h2V3c-1.1 0-2 .9-2 2zm0 8h2v-2H3v2zm4 8h2v-2H7v2zM3 9h2V7H3v2zm10-6h-2v2h2V3zm6 0v2h2c0-1.1-.9-2-2-2zM5 21v-2H3c0 1.1.9 2 2 2zm-2-4h2v-2H3v2zM9 3H7v2h2V3zm2 18h2v-2h-2v2zm8-8h2v-2h-2v2zm0 8c1.1 0 2-.9 2-2h-2v2zm0-12h2V7h-2v2zm0 8h2v-2h-2v2zm-4 4h2v-2h-2v2zm0-16h2V3h-2v2zM7 17h10V7H7v10zm2-8h6v6H9V9z"},"children":[]}]};exports.ic_select_all_twotone=ic_select_all_twotone;var ic_send={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M2.01 21L23 12 2.01 3 2 10l15 2-15 2z"},"children":[]}]};exports.ic_send=ic_send;var ic_send_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4.01 6.03l7.51 3.22-7.52-1 .01-2.22m7.5 8.72L4 17.97v-2.22l7.51-1M2.01 3L2 10l15 2-15 2 .01 7L23 12 2.01 3z"},"children":[]}]};exports.ic_send_outline=ic_send_outline;var ic_send_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 8.25l7.51 1-7.5-3.22zm.01 9.72l7.5-3.22-7.51 1z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M2.01 3L2 10l15 2-15 2 .01 7L23 12 2.01 3zM4 8.25V6.03l7.51 3.22-7.51-1zm.01 9.72v-2.22l7.51-1-7.51 3.22z"},"children":[]}]};exports.ic_send_twotone=ic_send_twotone;var ic_shield={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4z"},"children":[]}]};exports.ic_shield=ic_shield;var ic_sort={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 18h6v-2H3v2zM3 6v2h18V6H3zm0 7h12v-2H3v2z"},"children":[]}]};exports.ic_sort=ic_sort;var ic_sort_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 18h6v-2H3v2zM3 6v2h18V6H3zm0 7h12v-2H3v2z"},"children":[]}]};exports.ic_sort_outline=ic_sort_outline;var ic_sort_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 18h6v-2H3v2zM3 6v2h18V6H3zm0 7h12v-2H3v2z"},"children":[]}]};exports.ic_sort_twotone=ic_sort_twotone;var ic_square_foot={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M17.66,17.66l-1.06,1.06l-0.71-0.71l1.06-1.06l-1.94-1.94l-1.06,1.06l-0.71-0.71l1.06-1.06l-1.94-1.94l-1.06,1.06 l-0.71-0.71l1.06-1.06L9.7,9.7l-1.06,1.06l-0.71-0.71l1.06-1.06L7.05,7.05L5.99,8.11L5.28,7.4l1.06-1.06L4,4v14c0,1.1,0.9,2,2,2 h14L17.66,17.66z M7,17v-5.76L12.76,17H7z"},"children":[{"name":"path","attribs":{"d":"M17.66,17.66l-1.06,1.06l-0.71-0.71l1.06-1.06l-1.94-1.94l-1.06,1.06l-0.71-0.71l1.06-1.06l-1.94-1.94l-1.06,1.06 l-0.71-0.71l1.06-1.06L9.7,9.7l-1.06,1.06l-0.71-0.71l1.06-1.06L7.05,7.05L5.99,8.11L5.28,7.4l1.06-1.06L4,4v14c0,1.1,0.9,2,2,2 h14L17.66,17.66z M7,17v-5.76L12.76,17H7z"},"children":[]}]}]}]}]}]};exports.ic_square_foot=ic_square_foot;var ic_square_foot_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M17.66,17.66l-1.06,1.06l-0.71-0.71l1.06-1.06l-1.94-1.94l-1.06,1.06l-0.71-0.71l1.06-1.06l-1.94-1.94l-1.06,1.06 l-0.71-0.71l1.06-1.06L9.7,9.7l-1.06,1.06l-0.71-0.71l1.06-1.06L7.05,7.05L5.99,8.11L5.28,7.4l1.06-1.06L4,4v14c0,1.1,0.9,2,2,2 h14L17.66,17.66z M7,17v-5.76L12.76,17H7z"},"children":[{"name":"path","attribs":{"d":"M17.66,17.66l-1.06,1.06l-0.71-0.71l1.06-1.06l-1.94-1.94l-1.06,1.06l-0.71-0.71l1.06-1.06l-1.94-1.94l-1.06,1.06 l-0.71-0.71l1.06-1.06L9.7,9.7l-1.06,1.06l-0.71-0.71l1.06-1.06L7.05,7.05L5.99,8.11L5.28,7.4l1.06-1.06L4,4v14c0,1.1,0.9,2,2,2 h14L17.66,17.66z M7,17v-5.76L12.76,17H7z"},"children":[]}]}]}]}]}]};exports.ic_square_foot_outline=ic_square_foot_outline;var ic_square_foot_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"opacity":".3","points":"7,17 12.76,17 7,11.24"},"children":[{"name":"polygon","attribs":{"opacity":".3","points":"7,17 12.76,17 7,11.24"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M17.66,17.66l-1.06,1.06l-0.71-0.71l1.06-1.06l-1.94-1.94l-1.06,1.06l-0.71-0.71l1.06-1.06l-1.94-1.94l-1.06,1.06 l-0.71-0.71l1.06-1.06L9.7,9.7l-1.06,1.06l-0.71-0.71l1.06-1.06L7.05,7.05L5.99,8.11L5.28,7.4l1.06-1.06L4,4v14c0,1.1,0.9,2,2,2 h14L17.66,17.66z M7,17v-5.76L12.76,17H7z"},"children":[{"name":"path","attribs":{"d":"M17.66,17.66l-1.06,1.06l-0.71-0.71l1.06-1.06l-1.94-1.94l-1.06,1.06l-0.71-0.71l1.06-1.06l-1.94-1.94l-1.06,1.06 l-0.71-0.71l1.06-1.06L9.7,9.7l-1.06,1.06l-0.71-0.71l1.06-1.06L7.05,7.05L5.99,8.11L5.28,7.4l1.06-1.06L4,4v14c0,1.1,0.9,2,2,2 h14L17.66,17.66z M7,17v-5.76L12.76,17H7z"},"children":[]}]}]}]}]}]}]}]};exports.ic_square_foot_twotone=ic_square_foot_twotone;var ic_stacked_bar_chart={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6 10h3v10H6zm0-5h3v4H6zm10 11h3v4h-3zm0-3h3v2h-3zm-5 0h3v7h-3zm0-4h3v3h-3z"},"children":[]}]};exports.ic_stacked_bar_chart=ic_stacked_bar_chart;var ic_stream={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"20","cy":"12","r":"2"},"children":[]},{"name":"circle","attribs":{"cx":"4","cy":"12","r":"2"},"children":[]},{"name":"circle","attribs":{"cx":"12","cy":"20","r":"2"},"children":[]},{"name":"path","attribs":{"d":"M10.05 8.59L6.03 4.55h-.01l-.31-.32-1.42 1.41 4.02 4.05.01-.01.31.32zm3.893.027l4.405-4.392L19.76 5.64l-4.405 4.393zM10.01 15.36l-1.42-1.41-4.03 4.01-.32.33 1.41 1.41 4.03-4.02zm9.75 2.94l-3.99-4.01-.36-.35L14 15.35l3.99 4.01.35.35z"},"children":[]},{"name":"circle","attribs":{"cx":"12","cy":"4","r":"2"},"children":[]}]};exports.ic_stream=ic_stream;var ic_tag={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M20 10V8h-4V4h-2v4h-4V4H8v4H4v2h4v4H4v2h4v4h2v-4h4v4h2v-4h4v-2h-4v-4h4zm-6 4h-4v-4h4v4z"},"children":[]}]};exports.ic_tag=ic_tag;var ic_text_format={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 17v2h14v-2H5zm4.5-4.2h5l.9 2.2h2.1L12.75 4h-1.5L6.5 15h2.1l.9-2.2zM12 5.98L13.87 11h-3.74L12 5.98z"},"children":[]}]};exports.ic_text_format=ic_text_format;var ic_text_format_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 17v2h14v-2H5zm4.5-4.2h5l.9 2.2h2.1L12.75 4h-1.5L6.5 15h2.1l.9-2.2zM12 5.98L13.87 11h-3.74L12 5.98z"},"children":[]}]};exports.ic_text_format_outline=ic_text_format_outline;var ic_text_format_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 17v2h14v-2H5zm4.5-4.2h5l.9 2.2h2.1L12.75 4h-1.5L6.5 15h2.1l.9-2.2zM12 5.98L13.87 11h-3.74L12 5.98z"},"children":[]}]};exports.ic_text_format_twotone=ic_text_format_twotone;var ic_unarchive={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M20.55,5.22l-1.39-1.68C18.88,3.21,18.47,3,18,3H6C5.53,3,5.12,3.21,4.85,3.55L3.46,5.22C3.17,5.57,3,6.01,3,6.5V19 c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2V6.5C21,6.01,20.83,5.57,20.55,5.22z M12,9.5l5.5,5.5H14v2h-4v-2H6.5L12,9.5z M5.12,5 l0.82-1h12l0.93,1H5.12z"},"children":[{"name":"path","attribs":{"d":"M20.55,5.22l-1.39-1.68C18.88,3.21,18.47,3,18,3H6C5.53,3,5.12,3.21,4.85,3.55L3.46,5.22C3.17,5.57,3,6.01,3,6.5V19 c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2V6.5C21,6.01,20.83,5.57,20.55,5.22z M12,9.5l5.5,5.5H14v2h-4v-2H6.5L12,9.5z M5.12,5 l0.82-1h12l0.93,1H5.12z"},"children":[]}]}]}]}]}]}]}]};exports.ic_unarchive=ic_unarchive;var ic_unarchive_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20.54 5.23l-1.39-1.68C18.88 3.21 18.47 3 18 3H6c-.47 0-.88.21-1.16.55L3.46 5.23C3.17 5.57 3 6.02 3 6.5V19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6.5c0-.48-.17-.93-.46-1.27zM6.24 5h11.52l.83 1H5.42l.82-1zM5 19V8h14v11H5zm3-5h2.55v3h2.9v-3H16l-4-4z"},"children":[]}]};exports.ic_unarchive_outline=ic_unarchive_outline;var ic_unarchive_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 19h14V8H5v11zm7-9l4 4h-2.55v3h-2.91v-3H8l4-4z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20.54 5.23l-1.39-1.68C18.88 3.21 18.47 3 18 3H6c-.47 0-.88.21-1.16.55L3.46 5.23C3.17 5.57 3 6.02 3 6.5V19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6.5c0-.48-.17-.93-.46-1.27zM6.24 5h11.52l.83 1H5.42l.82-1zM19 19H5V8h14v11zm-8.45-2h2.9v-3H16l-4-4-4 4h2.55z"},"children":[]}]};exports.ic_unarchive_twotone=ic_unarchive_twotone;var ic_undo={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12.5 8c-2.65 0-5.05.99-6.9 2.6L2 7v9h9l-3.62-3.62c1.39-1.16 3.16-1.88 5.12-1.88 3.54 0 6.55 2.31 7.6 5.5l2.37-.78C21.08 11.03 17.15 8 12.5 8z"},"children":[]}]};exports.ic_undo=ic_undo;var ic_undo_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12.5 8c-2.65 0-5.05.99-6.9 2.6L2 7v9h9l-3.62-3.62c1.39-1.16 3.16-1.88 5.12-1.88 3.54 0 6.55 2.31 7.6 5.5l2.37-.78C21.08 11.03 17.15 8 12.5 8z"},"children":[]}]};exports.ic_undo_outline=ic_undo_outline;var ic_undo_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12.5 8c-2.65 0-5.05.99-6.9 2.6L2 7v9h9l-3.62-3.62c1.39-1.16 3.16-1.88 5.12-1.88 3.54 0 6.55 2.31 7.6 5.5l2.37-.78C21.08 11.03 17.15 8 12.5 8z"},"children":[]}]};exports.ic_undo_twotone=ic_undo_twotone;var ic_waves={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M17 16.99c-1.35 0-2.2.42-2.95.8-.65.33-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.38-1.57-.8-2.95-.8s-2.2.42-2.95.8c-.65.33-1.17.6-2.05.6v1.95c1.35 0 2.2-.42 2.95-.8.65-.33 1.17-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.42 2.95-.8c.65-.33 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.75.38 1.58.8 2.95.8v-1.95c-.9 0-1.4-.25-2.05-.6-.75-.38-1.6-.8-2.95-.8zm0-4.45c-1.35 0-2.2.43-2.95.8-.65.32-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.38-1.57-.8-2.95-.8s-2.2.43-2.95.8c-.65.32-1.17.6-2.05.6v1.95c1.35 0 2.2-.43 2.95-.8.65-.35 1.15-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.35 1.15-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.58.8 2.95.8v-1.95c-.9 0-1.4-.25-2.05-.6-.75-.38-1.6-.8-2.95-.8zm2.95-8.08c-.75-.38-1.58-.8-2.95-.8s-2.2.42-2.95.8c-.65.32-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.37-1.57-.8-2.95-.8s-2.2.42-2.95.8c-.65.33-1.17.6-2.05.6v1.93c1.35 0 2.2-.43 2.95-.8.65-.33 1.17-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.32 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.75.38 1.58.8 2.95.8V5.04c-.9 0-1.4-.25-2.05-.58zM17 8.09c-1.35 0-2.2.43-2.95.8-.65.35-1.15.6-2.05.6s-1.4-.25-2.05-.6c-.75-.38-1.57-.8-2.95-.8s-2.2.43-2.95.8c-.65.35-1.15.6-2.05.6v1.95c1.35 0 2.2-.43 2.95-.8.65-.32 1.18-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.32 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.75.38 1.58.8 2.95.8V9.49c-.9 0-1.4-.25-2.05-.6-.75-.38-1.6-.8-2.95-.8z"},"children":[]}]};exports.ic_waves=ic_waves;var ic_waves_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 16.99c-1.35 0-2.2.42-2.95.8-.65.33-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.38-1.57-.8-2.95-.8s-2.2.42-2.95.8c-.65.33-1.17.6-2.05.6v1.95c1.35 0 2.2-.42 2.95-.8.65-.33 1.17-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.42 2.95-.8c.65-.33 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.75.38 1.58.8 2.95.8v-1.95c-.9 0-1.4-.25-2.05-.6-.75-.38-1.6-.8-2.95-.8zm0-4.45c-1.35 0-2.2.43-2.95.8-.65.32-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.38-1.57-.8-2.95-.8s-2.2.43-2.95.8c-.65.32-1.17.6-2.05.6v1.95c1.35 0 2.2-.43 2.95-.8.65-.35 1.15-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.35 1.15-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.58.8 2.95.8v-1.95c-.9 0-1.4-.25-2.05-.6-.75-.38-1.6-.8-2.95-.8zm2.95-8.08c-.75-.38-1.58-.8-2.95-.8s-2.2.42-2.95.8c-.65.32-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.37-1.57-.8-2.95-.8s-2.2.42-2.95.8c-.65.33-1.17.6-2.05.6v1.93c1.35 0 2.2-.43 2.95-.8.65-.33 1.17-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.32 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.75.38 1.58.8 2.95.8V5.04c-.9 0-1.4-.25-2.05-.58zM17 8.09c-1.35 0-2.2.43-2.95.8-.65.35-1.15.6-2.05.6s-1.4-.25-2.05-.6c-.75-.38-1.57-.8-2.95-.8s-2.2.43-2.95.8c-.65.35-1.15.6-2.05.6v1.95c1.35 0 2.2-.43 2.95-.8.65-.32 1.18-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.32 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.75.38 1.58.8 2.95.8V9.49c-.9 0-1.4-.25-2.05-.6-.75-.38-1.6-.8-2.95-.8z"},"children":[]}]};exports.ic_waves_outline=ic_waves_outline;var ic_waves_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 16.99c-1.35 0-2.2.42-2.95.8-.65.33-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.38-1.57-.8-2.95-.8s-2.2.42-2.95.8c-.65.33-1.17.6-2.05.6v1.95c1.35 0 2.2-.42 2.95-.8.65-.33 1.17-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.42 2.95-.8c.65-.33 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.75.38 1.58.8 2.95.8v-1.95c-.9 0-1.4-.25-2.05-.6-.75-.38-1.6-.8-2.95-.8zm0-4.45c-1.35 0-2.2.43-2.95.8-.65.32-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.38-1.57-.8-2.95-.8s-2.2.43-2.95.8c-.65.32-1.17.6-2.05.6v1.95c1.35 0 2.2-.43 2.95-.8.65-.35 1.15-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.35 1.15-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.58.8 2.95.8v-1.95c-.9 0-1.4-.25-2.05-.6-.75-.38-1.6-.8-2.95-.8zm2.95-8.08c-.75-.38-1.58-.8-2.95-.8s-2.2.42-2.95.8c-.65.32-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.37-1.57-.8-2.95-.8s-2.2.42-2.95.8c-.65.33-1.17.6-2.05.6v1.93c1.35 0 2.2-.43 2.95-.8.65-.33 1.17-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.32 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.75.38 1.58.8 2.95.8V5.04c-.9 0-1.4-.25-2.05-.58zM17 8.09c-1.35 0-2.2.43-2.95.8-.65.35-1.15.6-2.05.6s-1.4-.25-2.05-.6c-.75-.38-1.57-.8-2.95-.8s-2.2.43-2.95.8c-.65.35-1.15.6-2.05.6v1.95c1.35 0 2.2-.43 2.95-.8.65-.32 1.18-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.32 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.75.38 1.58.8 2.95.8V9.49c-.9 0-1.4-.25-2.05-.6-.75-.38-1.6-.8-2.95-.8z"},"children":[]}]};exports.ic_waves_twotone=ic_waves_twotone;var ic_weekend={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M21,10c-1.1,0-2,0.9-2,2v3H5v-3c0-1.1-0.89-2-2-2s-2,0.9-2,2v5c0,1.1,0.9,2,2,2h18c1.1,0,2-0.9,2-2v-5 C23,10.9,22.1,10,21,10z M18,5H6C4.9,5,4,5.9,4,7v2.15c1.16,0.41,2,1.52,2,2.81V14h12v-2.03c0-1.3,0.84-2.4,2-2.81V7 C20,5.9,19.1,5,18,5z"},"children":[{"name":"path","attribs":{"d":"M21,10c-1.1,0-2,0.9-2,2v3H5v-3c0-1.1-0.89-2-2-2s-2,0.9-2,2v5c0,1.1,0.9,2,2,2h18c1.1,0,2-0.9,2-2v-5 C23,10.9,22.1,10,21,10z M18,5H6C4.9,5,4,5.9,4,7v2.15c1.16,0.41,2,1.52,2,2.81V14h12v-2.03c0-1.3,0.84-2.4,2-2.81V7 C20,5.9,19.1,5,18,5z"},"children":[]}]}]}]};exports.ic_weekend=ic_weekend;var ic_weekend_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 9V7c0-1.65-1.35-3-3-3H6C4.35 4 3 5.35 3 7v2c-1.65 0-3 1.35-3 3v5c0 1.65 1.35 3 3 3h18c1.65 0 3-1.35 3-3v-5c0-1.65-1.35-3-3-3zM5 7c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v2.78c-.61.55-1 1.34-1 2.22v2H6v-2c0-.88-.39-1.67-1-2.22V7zm17 10c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1v-5c0-.55.45-1 1-1s1 .45 1 1v4h16v-4c0-.55.45-1 1-1s1 .45 1 1v5z"},"children":[]}]};exports.ic_weekend_outline=ic_weekend_outline;var ic_weekend_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 11c-.55 0-1 .45-1 1v4H4v-4c0-.55-.45-1-1-1s-1 .45-1 1v5c0 .55.45 1 1 1h18c.55 0 1-.45 1-1v-5c0-.55-.45-1-1-1zM6 14h12v-2c0-.88.39-1.67 1-2.22V7c0-.55-.45-1-1-1H6c-.55 0-1 .45-1 1v2.78c.61.55 1 1.34 1 2.22v2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M21 9V7c0-1.65-1.35-3-3-3H6C4.35 4 3 5.35 3 7v2c-1.65 0-3 1.35-3 3v5c0 1.65 1.35 3 3 3h18c1.65 0 3-1.35 3-3v-5c0-1.65-1.35-3-3-3zM5 7c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v2.78c-.61.55-1 1.34-1 2.22v2H6v-2c0-.88-.39-1.67-1-2.22V7zm17 10c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1v-5c0-.55.45-1 1-1s1 .45 1 1v4h16v-4c0-.55.45-1 1-1s1 .45 1 1v5z"},"children":[]}]};exports.ic_weekend_twotone=ic_weekend_twotone;var ic_where_to_vote={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2c3.86 0 7 3.14 7 7 0 5.25-7 13-7 13S5 14.25 5 9c0-3.86 3.14-7 7-7zm-1.53 12L17 7.41 15.6 6l-5.13 5.18L8.4 9.09 7 10.5l3.47 3.5z"},"children":[]}]};exports.ic_where_to_vote=ic_where_to_vote;var ic_where_to_vote_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 1C7.59 1 4 4.59 4 9c0 5.57 6.96 13.34 7.26 13.67l.74.82.74-.82C13.04 22.34 20 14.57 20 9c0-4.41-3.59-8-8-8zm0 19.47C9.82 17.86 6 12.54 6 9c0-3.31 2.69-6 6-6s6 2.69 6 6c0 3.83-4.25 9.36-6 11.47zm-1.53-9.3L8.71 9.4l-1.42 1.42L10.47 14l6.01-6.01-1.41-1.42z"},"children":[]}]};exports.ic_where_to_vote_outline=ic_where_to_vote_outline;var ic_where_to_vote_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 3C8.69 3 6 5.69 6 9c0 3.54 3.82 8.86 6 11.47 1.75-2.11 6-7.63 6-11.47 0-3.31-2.69-6-6-6zm-1.53 11l-3.18-3.18L8.71 9.4l1.77 1.77 4.6-4.6 1.41 1.41L10.47 14z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 1C7.59 1 4 4.59 4 9c0 5.57 6.96 13.34 7.26 13.67l.74.82.74-.82C13.04 22.34 20 14.57 20 9c0-4.41-3.59-8-8-8zm0 19.47C9.82 17.86 6 12.54 6 9c0-3.31 2.69-6 6-6s6 2.69 6 6c0 3.83-4.25 9.36-6 11.47zm3.07-13.9l-4.6 4.6L8.71 9.4l-1.42 1.42L10.47 14l6.01-6.01z"},"children":[]}]};exports.ic_where_to_vote_twotone=ic_where_to_vote_twotone;var ic_access_alarm={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM7.88 3.39L6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM12.5 8H11v6l4.75 2.85.75-1.23-4-2.37V8zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z"},"children":[]}]};exports.ic_access_alarm=ic_access_alarm;var ic_access_alarm_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM7.88 3.39L6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM12.5 8H11v6l4.75 2.85.75-1.23-4-2.37V8zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z"},"children":[]}]};exports.ic_access_alarm_outline=ic_access_alarm_outline;var ic_access_alarm_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 6c-3.87 0-7 3.13-7 7s3.13 7 7 7 7-3.13 7-7-3.13-7-7-7zm3.75 10.85L11 14V8h1.5v5.25l4 2.37-.75 1.23z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm.5-12H11v6l4.75 2.85.75-1.23-4-2.37zM22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86zM7.88 3.39L6.6 1.86 2 5.71l1.29 1.53z"},"children":[]}]};exports.ic_access_alarm_twotone=ic_access_alarm_twotone;var ic_access_alarms={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M-618-568H782v3600H-618zM0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 5.7l-4.6-3.9-1.3 1.5 4.6 3.9L22 5.7zM7.9 3.4L6.6 1.9 2 5.7l1.3 1.5 4.6-3.8zM12.5 8H11v6l4.7 2.9.8-1.2-4-2.4V8zM12 4c-5 0-9 4-9 9s4 9 9 9 9-4 9-9-4-9-9-9zm0 16c-3.9 0-7-3.1-7-7s3.1-7 7-7 7 3.1 7 7-3.1 7-7 7z"},"children":[]}]};exports.ic_access_alarms=ic_access_alarms;var ic_access_alarms_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 5.7l-4.6-3.9-1.3 1.5 4.6 3.9L22 5.7zM7.9 3.4L6.6 1.9 2 5.7l1.3 1.5 4.6-3.8zM12.5 8H11v6l4.7 2.9.8-1.2-4-2.4V8zM12 4c-5 0-9 4-9 9s4 9 9 9 9-4 9-9-4-9-9-9zm0 16c-3.9 0-7-3.1-7-7s3.1-7 7-7 7 3.1 7 7-3.1 7-7 7z"},"children":[]}]};exports.ic_access_alarms_outline=ic_access_alarms_outline;var ic_access_alarms_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 6c-3.9 0-7 3.1-7 7s3.1 7 7 7 7-3.1 7-7-3.1-7-7-7zm3.7 10.9L11 14V8h1.5v5.3l4 2.4-.8 1.2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M22 5.7l-4.6-3.9-1.3 1.5 4.6 3.9zM12.5 8H11v6l4.7 2.9.8-1.2-4-2.4zM12 4c-5 0-9 4-9 9s4 9 9 9 9-4 9-9-4-9-9-9zm0 16c-3.9 0-7-3.1-7-7s3.1-7 7-7 7 3.1 7 7-3.1 7-7 7zM7.9 3.4L6.6 1.9 2 5.7l1.3 1.5z"},"children":[]}]};exports.ic_access_alarms_twotone=ic_access_alarms_twotone;var ic_access_time={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"},"children":[]},{"name":"path","attribs":{"d":"M12.5 7H11v6l5.25 3.15.75-1.23-4.5-2.67z"},"children":[]}]};exports.ic_access_time=ic_access_time;var ic_access_time_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z"},"children":[]}]};exports.ic_access_time_outline=ic_access_time_outline;var ic_access_time_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm4.25 12.15L11 13V7h1.5v5.25l4.5 2.67-.75 1.23z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z"},"children":[]}]};exports.ic_access_time_twotone=ic_access_time_twotone;var ic_ad_units={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 1H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 18H7V5h10v14zM8 6h8v2H8z"},"children":[]}]};exports.ic_ad_units=ic_ad_units;var ic_ad_units_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M17,1H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1,17,1L17,1z M7,4V3h10v1H7L7,4z M7,18V6 h10v12H7L7,18z M7,21v-1h10v1H7L7,21z"},"children":[{"name":"path","attribs":{"d":"M17,1H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1,17,1L17,1z M7,4V3h10v1H7L7,4z M7,18V6 h10v12H7L7,18z M7,21v-1h10v1H7L7,21z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"16,7 8,7 8,9 16,9 16,7"},"children":[{"name":"polygon","attribs":{"points":"16,7 8,7 8,9 16,9 16,7"},"children":[]}]}]}]}]}]}]}]};exports.ic_ad_units_outline=ic_ad_units_outline;var ic_ad_units_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"rect","attribs":{"height":"1","opacity":".3","width":"10","x":"7","y":"3"},"children":[{"name":"rect","attribs":{"height":"1","opacity":".3","width":"10","x":"7","y":"3"},"children":[]}]},{"name":"rect","attribs":{"height":"1","opacity":".3","width":"10","x":"7","y":"20"},"children":[{"name":"rect","attribs":{"height":"1","opacity":".3","width":"10","x":"7","y":"20"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M17,1H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1,17,1L17,1z M7,4V3h10v1H7L7,4z M7,18V6 h10v12H7L7,18z M7,21v-1h10v1H7L7,21z"},"children":[{"name":"path","attribs":{"d":"M17,1H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1,17,1L17,1z M7,4V3h10v1H7L7,4z M7,18V6 h10v12H7L7,18z M7,21v-1h10v1H7L7,21z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"16,7 8,7 8,9 16,9 16,7"},"children":[{"name":"polygon","attribs":{"points":"16,7 8,7 8,9 16,9 16,7"},"children":[]}]}]}]}]}]}]}]};exports.ic_ad_units_twotone=ic_ad_units_twotone;var ic_add_alarm={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7.88 3.39L6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm1-11h-2v3H8v2h3v3h2v-3h3v-2h-3V9z"},"children":[]}]};exports.ic_add_alarm=ic_add_alarm;var ic_add_alarm_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7.88 3.39L6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm1-11h-2v3H8v2h3v3h2v-3h3v-2h-3V9z"},"children":[]}]};exports.ic_add_alarm_outline=ic_add_alarm_outline;var ic_add_alarm_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 6c-3.87 0-7 3.13-7 7s3.13 7 7 7 7-3.13 7-7-3.13-7-7-7zm4 8h-3v3h-2v-3H8v-2h3V9h2v3h3v2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm1-11h-2v3H8v2h3v3h2v-3h3v-2h-3zm9-3.28l-4.6-3.86-1.29 1.53 4.6 3.86zM7.88 3.39L6.6 1.86 2 5.71l1.29 1.53z"},"children":[]}]};exports.ic_add_alarm_twotone=ic_add_alarm_twotone;var ic_add_to_home_screen={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 1.01L8 1c-1.1 0-2 .9-2 2v3h2V5h10v14H8v-1H6v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM10 15h2V8H5v2h3.59L3 15.59 4.41 17 10 11.41z"},"children":[]}]};exports.ic_add_to_home_screen=ic_add_to_home_screen;var ic_add_to_home_screen_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 1.01L8 1c-1.1 0-2 .9-2 2v3h2V5h10v14H8v-1H6v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM10 15h2V8H5v2h3.59L3 15.59 4.41 17 10 11.41V15z"},"children":[]}]};exports.ic_add_to_home_screen_outline=ic_add_to_home_screen_outline;var ic_add_to_home_screen_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 1.01L8 1c-1.1 0-2 .9-2 2v3h2V5h10v14H8v-1H6v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM10 15h2V8H5v2h3.59L3 15.59 4.41 17 10 11.41V15z"},"children":[]}]};exports.ic_add_to_home_screen_twotone=ic_add_to_home_screen_twotone;var ic_airplanemode_active={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M22,16v-2l-8.5-5V3.5C13.5,2.67,12.83,2,12,2s-1.5,0.67-1.5,1.5V9L2,14v2l8.5-2.5V19L8,20.5L8,22l4-1l4,1l0-1.5L13.5,19 v-5.5L22,16z"},"children":[{"name":"path","attribs":{"d":"M22,16v-2l-8.5-5V3.5C13.5,2.67,12.83,2,12,2s-1.5,0.67-1.5,1.5V9L2,14v2l8.5-2.5V19L8,20.5L8,22l4-1l4,1l0-1.5L13.5,19 v-5.5L22,16z"},"children":[]}]},{"name":"path","attribs":{"d":"M0,0h24v24H0V0z","fill":"none"},"children":[{"name":"path","attribs":{"d":"M0,0h24v24H0V0z","fill":"none"},"children":[]}]}]}]};exports.ic_airplanemode_active=ic_airplanemode_active;var ic_airplanemode_active_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M22,16v-2l-8.5-5V3.5C13.5,2.67,12.83,2,12,2s-1.5,0.67-1.5,1.5V9L2,14v2l8.5-2.5V19L8,20.5L8,22l4-1l4,1l0-1.5L13.5,19 v-5.5L22,16z"},"children":[{"name":"path","attribs":{"d":"M22,16v-2l-8.5-5V3.5C13.5,2.67,12.83,2,12,2s-1.5,0.67-1.5,1.5V9L2,14v2l8.5-2.5V19L8,20.5L8,22l4-1l4,1l0-1.5L13.5,19 v-5.5L22,16z"},"children":[]}]},{"name":"path","attribs":{"d":"M0,0h24v24H0V0z","fill":"none"},"children":[{"name":"path","attribs":{"d":"M0,0h24v24H0V0z","fill":"none"},"children":[]}]}]}]};exports.ic_airplanemode_active_outline=ic_airplanemode_active_outline;var ic_airplanemode_active_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M22,16v-2l-8.5-5V3.5C13.5,2.67,12.83,2,12,2s-1.5,0.67-1.5,1.5V9L2,14v2l8.5-2.5V19L8,20.5L8,22l4-1l4,1l0-1.5L13.5,19 v-5.5L22,16z"},"children":[{"name":"path","attribs":{"d":"M22,16v-2l-8.5-5V3.5C13.5,2.67,12.83,2,12,2s-1.5,0.67-1.5,1.5V9L2,14v2l8.5-2.5V19L8,20.5L8,22l4-1l4,1l0-1.5L13.5,19 v-5.5L22,16z"},"children":[]}]},{"name":"path","attribs":{"d":"M0,0h24v24H0V0z","fill":"none"},"children":[{"name":"path","attribs":{"d":"M0,0h24v24H0V0z","fill":"none"},"children":[]}]}]}]};exports.ic_airplanemode_active_twotone=ic_airplanemode_active_twotone;var ic_airplanemode_inactive={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M10.5,7.67V3.5C10.5,2.67,11.17,2,12,2c0.83,0,1.5,0.67,1.5,1.5V9l8.5,5v2l-4.49-1.32L10.5,7.67z M19.78,22.61l1.41-1.41 L13.5,13.5L9.56,9.56L2.81,2.81L1.39,4.22l6.38,6.38L2,14v2l8.5-2.5V19L8,20.5L8,22l4-1l4,1l0-1.5L13.5,19v-2.67L19.78,22.61z"},"children":[{"name":"path","attribs":{"d":"M10.5,7.67V3.5C10.5,2.67,11.17,2,12,2c0.83,0,1.5,0.67,1.5,1.5V9l8.5,5v2l-4.49-1.32L10.5,7.67z M19.78,22.61l1.41-1.41 L13.5,13.5L9.56,9.56L2.81,2.81L1.39,4.22l6.38,6.38L2,14v2l8.5-2.5V19L8,20.5L8,22l4-1l4,1l0-1.5L13.5,19v-2.67L19.78,22.61z"},"children":[]}]},{"name":"path","attribs":{"d":"M0,0h24v24H0V0z","fill":"none"},"children":[{"name":"path","attribs":{"d":"M0,0h24v24H0V0z","fill":"none"},"children":[]}]}]}]};exports.ic_airplanemode_inactive=ic_airplanemode_inactive;var ic_airplanemode_inactive_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M10.5,7.67V3.5C10.5,2.67,11.17,2,12,2c0.83,0,1.5,0.67,1.5,1.5V9l8.5,5v2l-4.49-1.32L10.5,7.67z M19.78,22.61l1.41-1.41 L13.5,13.5L9.56,9.56L2.81,2.81L1.39,4.22l6.38,6.38L2,14v2l8.5-2.5V19L8,20.5L8,22l4-1l4,1l0-1.5L13.5,19v-2.67L19.78,22.61z"},"children":[{"name":"path","attribs":{"d":"M10.5,7.67V3.5C10.5,2.67,11.17,2,12,2c0.83,0,1.5,0.67,1.5,1.5V9l8.5,5v2l-4.49-1.32L10.5,7.67z M19.78,22.61l1.41-1.41 L13.5,13.5L9.56,9.56L2.81,2.81L1.39,4.22l6.38,6.38L2,14v2l8.5-2.5V19L8,20.5L8,22l4-1l4,1l0-1.5L13.5,19v-2.67L19.78,22.61z"},"children":[]}]},{"name":"path","attribs":{"d":"M0,0h24v24H0V0z","fill":"none"},"children":[{"name":"path","attribs":{"d":"M0,0h24v24H0V0z","fill":"none"},"children":[]}]}]}]};exports.ic_airplanemode_inactive_outline=ic_airplanemode_inactive_outline;var ic_airplanemode_inactive_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M10.5,7.67V3.5C10.5,2.67,11.17,2,12,2c0.83,0,1.5,0.67,1.5,1.5V9l8.5,5v2l-4.49-1.32L10.5,7.67z M19.78,22.61l1.41-1.41 L13.5,13.5L9.56,9.56L2.81,2.81L1.39,4.22l6.38,6.38L2,14v2l8.5-2.5V19L8,20.5L8,22l4-1l4,1l0-1.5L13.5,19v-2.67L19.78,22.61z"},"children":[{"name":"path","attribs":{"d":"M10.5,7.67V3.5C10.5,2.67,11.17,2,12,2c0.83,0,1.5,0.67,1.5,1.5V9l8.5,5v2l-4.49-1.32L10.5,7.67z M19.78,22.61l1.41-1.41 L13.5,13.5L9.56,9.56L2.81,2.81L1.39,4.22l6.38,6.38L2,14v2l8.5-2.5V19L8,20.5L8,22l4-1l4,1l0-1.5L13.5,19v-2.67L19.78,22.61z"},"children":[]}]},{"name":"path","attribs":{"d":"M0,0h24v24H0V0z","fill":"none"},"children":[{"name":"path","attribs":{"d":"M0,0h24v24H0V0z","fill":"none"},"children":[]}]}]}]};exports.ic_airplanemode_inactive_twotone=ic_airplanemode_inactive_twotone;var ic_battery_20_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 17v3.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V17H7z"},"children":[]},{"name":"path","attribs":{"d":"M17 5.33C17 4.6 16.4 4 15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V17h10V5.33z","fill-opacity":".3"},"children":[]}]};exports.ic_battery_20_twotone=ic_battery_20_twotone;var ic_battery_30_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 5.33C17 4.6 16.4 4 15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V15h10V5.33z","fill-opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M7 15v5.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V15H7z"},"children":[]}]};exports.ic_battery_30_twotone=ic_battery_30_twotone;var ic_battery_50_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 5.33C17 4.6 16.4 4 15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V13h10V5.33z","fill-opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M7 13v7.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V13H7z"},"children":[]}]};exports.ic_battery_50_twotone=ic_battery_50_twotone;var ic_battery_60_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 5.33C17 4.6 16.4 4 15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V11h10V5.33z","fill-opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M7 11v9.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V11H7z"},"children":[]}]};exports.ic_battery_60_twotone=ic_battery_60_twotone;var ic_battery_80_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 5.33C17 4.6 16.4 4 15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V9h10V5.33z","fill-opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M7 9v11.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V9H7z"},"children":[]}]};exports.ic_battery_80_twotone=ic_battery_80_twotone;var ic_battery_90_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 5.33C17 4.6 16.4 4 15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V8h10V5.33z","fill-opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M7 8v12.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V8H7z"},"children":[]}]};exports.ic_battery_90_twotone=ic_battery_90_twotone;var ic_battery_alert={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zM13 18h-2v-2h2v2zm0-4h-2V9h2v5z"},"children":[]}]};exports.ic_battery_alert=ic_battery_alert;var ic_battery_alert_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zM13 18h-2v-2h2v2zm0-4h-2V9h2v5z"},"children":[]}]};exports.ic_battery_alert_outline=ic_battery_alert_outline;var ic_battery_alert_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zM13 18h-2v-2h2v2zm0-4h-2V9h2v5z"},"children":[]}]};exports.ic_battery_alert_twotone=ic_battery_alert_twotone;var ic_battery_charging_20_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11 20v-3H7v3.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V17h-4.4L11 20z"},"children":[]},{"name":"path","attribs":{"d":"M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V17h4v-2.5H9L13 7v5.5h2L12.6 17H17V5.33C17 4.6 16.4 4 15.67 4z","fill-opacity":".3"},"children":[]}]};exports.ic_battery_charging_20_twotone=ic_battery_charging_20_twotone;var ic_battery_charging_30_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v9.17h2L13 7v5.5h2l-1.07 2H17V5.33C17 4.6 16.4 4 15.67 4z","fill-opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M11 20v-5.5H7v6.17C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V14.5h-3.07L11 20z"},"children":[]}]};exports.ic_battery_charging_30_twotone=ic_battery_charging_30_twotone;var ic_battery_charging_50_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14.47 13.5L11 20v-5.5H9l.53-1H7v7.17C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V13.5h-2.53z"},"children":[]},{"name":"path","attribs":{"d":"M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v8.17h2.53L13 7v5.5h2l-.53 1H17V5.33C17 4.6 16.4 4 15.67 4z","fill-opacity":".3"},"children":[]}]};exports.ic_battery_charging_50_twotone=ic_battery_charging_50_twotone;var ic_battery_charging_60_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V11h3.87L13 7v4h4V5.33C17 4.6 16.4 4 15.67 4z","fill-opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M13 12.5h2L11 20v-5.5H9l1.87-3.5H7v9.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V11h-4v1.5z"},"children":[]}]};exports.ic_battery_charging_60_twotone=ic_battery_charging_60_twotone;var ic_battery_charging_80_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V9h4.93L13 7v2h4V5.33C17 4.6 16.4 4 15.67 4z","fill-opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M13 12.5h2L11 20v-5.5H9L11.93 9H7v11.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V9h-4v3.5z"},"children":[]}]};exports.ic_battery_charging_80_twotone=ic_battery_charging_80_twotone;var ic_battery_charging_90_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V8h5.47L13 7v1h4V5.33C17 4.6 16.4 4 15.67 4z","fill-opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M13 12.5h2L11 20v-5.5H9L12.47 8H7v12.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V8h-4v4.5z"},"children":[]}]};exports.ic_battery_charging_90_twotone=ic_battery_charging_90_twotone;var ic_battery_charging_full={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zM11 20v-5.5H9L13 7v5.5h2L11 20z"},"children":[]}]};exports.ic_battery_charging_full=ic_battery_charging_full;var ic_battery_charging_full_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zM11 20v-5.5H9L13 7v5.5h2L11 20z"},"children":[]}]};exports.ic_battery_charging_full_outline=ic_battery_charging_full_outline;var ic_battery_charging_full_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zM11 20v-5.5H9L13 7v5.5h2L11 20z"},"children":[]}]};exports.ic_battery_charging_full_twotone=ic_battery_charging_full_twotone;var ic_battery_full={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4z"},"children":[]}]};exports.ic_battery_full=ic_battery_full;var ic_battery_full_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4z"},"children":[]}]};exports.ic_battery_full_outline=ic_battery_full_outline;var ic_battery_full_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4z"},"children":[]}]};exports.ic_battery_full_twotone=ic_battery_full_twotone;var ic_battery_std={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4z"},"children":[]}]};exports.ic_battery_std=ic_battery_std;var ic_battery_std_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4z"},"children":[]}]};exports.ic_battery_std_outline=ic_battery_std_outline;var ic_battery_std_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4z"},"children":[]}]};exports.ic_battery_std_twotone=ic_battery_std_twotone;var ic_battery_unknown={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zm-2.72 13.95h-1.9v-1.9h1.9v1.9zm1.35-5.26s-.38.42-.67.71c-.48.48-.83 1.15-.83 1.6h-1.6c0-.83.46-1.52.93-2l.93-.94c.27-.27.44-.65.44-1.06 0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5H9c0-1.66 1.34-3 3-3s3 1.34 3 3c0 .66-.27 1.26-.7 1.69z"},"children":[]}]};exports.ic_battery_unknown=ic_battery_unknown;var ic_battery_unknown_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zM13 18h-2v-2h2v2zm1.3-5.31s-.38.42-.67.71c-.48.48-.83 1.15-.83 1.6h-1.6c0-.83.46-1.52.93-2l.93-.94c.27-.27.44-.65.44-1.06 0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5H9c0-1.66 1.34-3 3-3s3 1.34 3 3c0 .66-.27 1.26-.7 1.69z"},"children":[]}]};exports.ic_battery_unknown_outline=ic_battery_unknown_outline;var ic_battery_unknown_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zM13 18h-2v-2h2v2zm1.3-5.31s-.38.42-.67.71c-.48.48-.83 1.15-.83 1.6h-1.6c0-.83.46-1.52.93-2l.93-.94c.27-.27.44-.65.44-1.06 0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5H9c0-1.66 1.34-3 3-3s3 1.34 3 3c0 .66-.27 1.26-.7 1.69z"},"children":[]}]};exports.ic_battery_unknown_twotone=ic_battery_unknown_twotone;var ic_bluetooth={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17.71 7.71L12 2h-1v7.59L6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 5.83l1.88 1.88L13 9.59V5.83zm1.88 10.46L13 18.17v-3.76l1.88 1.88z"},"children":[]}]};exports.ic_bluetooth=ic_bluetooth;var ic_bluetooth_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17.71 7.71L12 2h-1v7.59L6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 5.83l1.88 1.88L13 9.59V5.83zm1.88 10.46L13 18.17v-3.76l1.88 1.88z"},"children":[]}]};exports.ic_bluetooth_outline=ic_bluetooth_outline;var ic_bluetooth_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17.71 7.71L12 2h-1v7.59L6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 5.83l1.88 1.88L13 9.59V5.83zm1.88 10.46L13 18.17v-3.76l1.88 1.88z"},"children":[]}]};exports.ic_bluetooth_twotone=ic_bluetooth_twotone;var ic_bluetooth_connected={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 12l-2-2-2 2 2 2 2-2zm10.71-4.29L12 2h-1v7.59L6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 5.83l1.88 1.88L13 9.59V5.83zm1.88 10.46L13 18.17v-3.76l1.88 1.88zM19 10l-2 2 2 2 2-2-2-2z"},"children":[]}]};exports.ic_bluetooth_connected=ic_bluetooth_connected;var ic_bluetooth_connected_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 12l-2-2-2 2 2 2 2-2zm10.71-4.29L12 2h-1v7.59L6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 5.83l1.88 1.88L13 9.59V5.83zm1.88 10.46L13 18.17v-3.76l1.88 1.88zM19 10l-2 2 2 2 2-2-2-2z"},"children":[]}]};exports.ic_bluetooth_connected_outline=ic_bluetooth_connected_outline;var ic_bluetooth_connected_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 12l-2-2-2 2 2 2 2-2zm10.71-4.29L12 2h-1v7.59L6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 5.83l1.88 1.88L13 9.59V5.83zm1.88 10.46L13 18.17v-3.76l1.88 1.88zM19 10l-2 2 2 2 2-2-2-2z"},"children":[]}]};exports.ic_bluetooth_connected_twotone=ic_bluetooth_connected_twotone;var ic_bluetooth_disabled={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13 5.83l1.88 1.88-1.6 1.6 1.41 1.41 3.02-3.02L12 2h-1v5.03l2 2v-3.2zM5.41 4L4 5.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l4.29-4.29 2.3 2.29L20 18.59 5.41 4zM13 18.17v-3.76l1.88 1.88L13 18.17z"},"children":[]}]};exports.ic_bluetooth_disabled=ic_bluetooth_disabled;var ic_bluetooth_disabled_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13 5.83l1.88 1.88-1.6 1.6 1.41 1.41 3.02-3.02L12 2h-1v5.03l2 2v-3.2zM5.41 4L4 5.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l4.29-4.29 2.3 2.29L20 18.59 5.41 4zM13 18.17v-3.76l1.88 1.88L13 18.17z"},"children":[]}]};exports.ic_bluetooth_disabled_outline=ic_bluetooth_disabled_outline;var ic_bluetooth_disabled_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13 5.83l1.88 1.88-1.6 1.6 1.41 1.41 3.02-3.02L12 2h-1v5.03l2 2v-3.2zM5.41 4L4 5.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l4.29-4.29 2.3 2.29L20 18.59 5.41 4zM13 18.17v-3.76l1.88 1.88L13 18.17z"},"children":[]}]};exports.ic_bluetooth_disabled_twotone=ic_bluetooth_disabled_twotone;var ic_bluetooth_searching={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14.24 12.01l2.32 2.32c.28-.72.44-1.51.44-2.33 0-.82-.16-1.59-.43-2.31l-2.33 2.32zm5.29-5.3l-1.26 1.26c.63 1.21.98 2.57.98 4.02s-.36 2.82-.98 4.02l1.2 1.2c.97-1.54 1.54-3.36 1.54-5.31-.01-1.89-.55-3.67-1.48-5.19zm-3.82 1L10 2H9v7.59L4.41 5 3 6.41 8.59 12 3 17.59 4.41 19 9 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM11 5.83l1.88 1.88L11 9.59V5.83zm1.88 10.46L11 18.17v-3.76l1.88 1.88z"},"children":[]}]};exports.ic_bluetooth_searching=ic_bluetooth_searching;var ic_bluetooth_searching_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14.24 12.01l2.32 2.32c.28-.72.44-1.51.44-2.33s-.16-1.59-.43-2.31l-2.33 2.32zm5.29-5.3l-1.26 1.26c.63 1.21.98 2.57.98 4.02s-.36 2.82-.98 4.02l1.2 1.2c.97-1.54 1.54-3.36 1.54-5.31-.01-1.89-.55-3.67-1.48-5.19zm-3.82 1L10 2H9v7.59L4.41 5 3 6.41 8.59 12 3 17.59 4.41 19 9 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM11 5.83l1.88 1.88L11 9.59V5.83zm1.88 10.46L11 18.17v-3.76l1.88 1.88z"},"children":[]}]};exports.ic_bluetooth_searching_outline=ic_bluetooth_searching_outline;var ic_bluetooth_searching_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14.24 12.01l2.32 2.32c.28-.72.44-1.51.44-2.33s-.16-1.59-.43-2.31l-2.33 2.32zm5.29-5.3l-1.26 1.26c.63 1.21.98 2.57.98 4.02s-.36 2.82-.98 4.02l1.2 1.2c.97-1.54 1.54-3.36 1.54-5.31-.01-1.89-.55-3.67-1.48-5.19zm-3.82 1L10 2H9v7.59L4.41 5 3 6.41 8.59 12 3 17.59 4.41 19 9 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM11 5.83l1.88 1.88L11 9.59V5.83zm1.88 10.46L11 18.17v-3.76l1.88 1.88z"},"children":[]}]};exports.ic_bluetooth_searching_twotone=ic_bluetooth_searching_twotone;var ic_brightness_auto={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10.85 12.65h2.3L12 9l-1.15 3.65zM20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zM14.3 16l-.7-2h-3.2l-.7 2H7.8L11 7h2l3.2 9h-1.9z"},"children":[]}]};exports.ic_brightness_auto=ic_brightness_auto;var ic_brightness_auto_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11 7l-3.2 9h1.9l.7-2h3.2l.7 2h1.9L13 7h-2zm-.15 5.65L12 9l1.15 3.65h-2.3zM20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48z"},"children":[]}]};exports.ic_brightness_auto_outline=ic_brightness_auto_outline;var ic_brightness_auto_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 9.52V6h-3.52L12 3.52 9.52 6H6v3.52L3.52 12 6 14.48V18h3.52L12 20.48 14.48 18H18v-3.52L20.48 12 18 9.52zM14.3 16l-.7-2h-3.2l-.7 2H7.8L11 7h2l3.2 9h-1.9zm-3.45-3.35h2.3L12 9z","fill-opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M11 7l-3.2 9h1.9l.7-2h3.2l.7 2h1.9L13 7h-2zm-.15 5.65L12 9l1.15 3.65h-2.3zM20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48z"},"children":[]}]};exports.ic_brightness_auto_twotone=ic_brightness_auto_twotone;var ic_brightness_high={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zm0-10c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4z"},"children":[]}]};exports.ic_brightness_high=ic_brightness_high;var ic_brightness_high_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z"},"children":[]},{"name":"circle","attribs":{"cx":"12","cy":"12","r":"2.5"},"children":[]}]};exports.ic_brightness_high_outline=ic_brightness_high_outline;var ic_brightness_high_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 9.52V6h-3.52L12 3.52 9.52 6H6v3.52L3.52 12 6 14.48V18h3.52L12 20.48 14.48 18H18v-3.52L20.48 12 18 9.52zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z","fill-opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z"},"children":[]},{"name":"circle","attribs":{"cx":"12","cy":"12","r":"2.5"},"children":[]}]};exports.ic_brightness_high_twotone=ic_brightness_high_twotone;var ic_brightness_low={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 15.31L23.31 12 20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z"},"children":[]}]};exports.ic_brightness_low=ic_brightness_low;var ic_brightness_low_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z"},"children":[]}]};exports.ic_brightness_low_outline=ic_brightness_low_outline;var ic_brightness_low_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 9.52V6h-3.52L12 3.52 9.52 6H6v3.52L3.52 12 6 14.48V18h3.52L12 20.48 14.48 18H18v-3.52L20.48 12 18 9.52zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z","fill-opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z"},"children":[]}]};exports.ic_brightness_low_twotone=ic_brightness_low_twotone;var ic_brightness_medium={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 15.31L23.31 12 20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69zM12 18V6c3.31 0 6 2.69 6 6s-2.69 6-6 6z"},"children":[]}]};exports.ic_brightness_medium=ic_brightness_medium;var ic_brightness_medium_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6v12c3.31 0 6-2.69 6-6s-2.69-6-6-6z"},"children":[]}]};exports.ic_brightness_medium_outline=ic_brightness_medium_outline;var ic_brightness_medium_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 9.52V6h-3.52L12 3.52 9.52 6H6v3.52L3.52 12 6 14.48V18h3.52L12 20.48 14.48 18H18v-3.52L20.48 12 18 9.52zM12 18V6c3.31 0 6 2.69 6 6s-2.69 6-6 6z","fill-opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6v12c3.31 0 6-2.69 6-6s-2.69-6-6-6z"},"children":[]}]};exports.ic_brightness_medium_twotone=ic_brightness_medium_twotone;var ic_data_usage={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13 2.05v3.03c3.39.49 6 3.39 6 6.92 0 .9-.18 1.75-.48 2.54l2.6 1.53c.56-1.24.88-2.62.88-4.07 0-5.18-3.95-9.45-9-9.95zM12 19c-3.87 0-7-3.13-7-7 0-3.53 2.61-6.43 6-6.92V2.05c-5.06.5-9 4.76-9 9.95 0 5.52 4.47 10 9.99 10 3.31 0 6.24-1.61 8.06-4.09l-2.6-1.53C16.17 17.98 14.21 19 12 19z"},"children":[]}]};exports.ic_data_usage=ic_data_usage;var ic_data_usage_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13 2.05v3.03c3.39.49 6 3.39 6 6.92 0 .9-.18 1.75-.48 2.54l2.6 1.53c.56-1.24.88-2.62.88-4.07 0-5.18-3.95-9.45-9-9.95zM12 19c-3.87 0-7-3.13-7-7 0-3.53 2.61-6.43 6-6.92V2.05c-5.06.5-9 4.76-9 9.95 0 5.52 4.47 10 9.99 10 3.31 0 6.24-1.61 8.06-4.09l-2.6-1.53C16.17 17.98 14.21 19 12 19z"},"children":[]}]};exports.ic_data_usage_outline=ic_data_usage_outline;var ic_data_usage_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13 2.05v3.03c3.39.49 6 3.39 6 6.92 0 .9-.18 1.75-.48 2.54l2.6 1.53c.56-1.24.88-2.62.88-4.07 0-5.18-3.95-9.45-9-9.95zM12 19c-3.87 0-7-3.13-7-7 0-3.53 2.61-6.43 6-6.92V2.05c-5.06.5-9 4.76-9 9.95 0 5.52 4.47 10 9.99 10 3.31 0 6.24-1.61 8.06-4.09l-2.6-1.53C16.17 17.98 14.21 19 12 19z"},"children":[]}]};exports.ic_data_usage_twotone=ic_data_usage_twotone;var ic_developer_mode={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 5h10v2h2V3c0-1.1-.9-1.99-2-1.99L7 1c-1.1 0-2 .9-2 2v4h2V5zm8.41 11.59L20 12l-4.59-4.59L14 8.83 17.17 12 14 15.17l1.41 1.42zM10 15.17L6.83 12 10 8.83 8.59 7.41 4 12l4.59 4.59L10 15.17zM17 19H7v-2H5v4c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2v-4h-2v2z"},"children":[]}]};exports.ic_developer_mode=ic_developer_mode;var ic_developer_mode_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 5h10v2h2V3c0-1.1-.9-1.99-2-1.99L7 1c-1.1 0-2 .9-2 2v4h2V5zm8.41 11.59L20 12l-4.59-4.59L14 8.83 17.17 12 14 15.17l1.41 1.42zM10 15.17L6.83 12 10 8.83 8.59 7.41 4 12l4.59 4.59L10 15.17zM17 19H7v-2H5v4c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2v-4h-2v2z"},"children":[]}]};exports.ic_developer_mode_outline=ic_developer_mode_outline;var ic_developer_mode_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 5h10v2h2V3c0-1.1-.9-1.99-2-1.99L7 1c-1.1 0-2 .9-2 2v4h2V5zm8.41 11.59L20 12l-4.59-4.59L14 8.83 17.17 12 14 15.17l1.41 1.42zM10 15.17L6.83 12 10 8.83 8.59 7.41 4 12l4.59 4.59L10 15.17zM17 19H7v-2H5v4c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2v-4h-2v2z"},"children":[]}]};exports.ic_developer_mode_twotone=ic_developer_mode_twotone;var ic_device_thermostat={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15 13V5c0-1.66-1.34-3-3-3S9 3.34 9 5v8c-1.21.91-2 2.37-2 4 0 2.76 2.24 5 5 5s5-2.24 5-5c0-1.63-.79-3.09-2-4zm-4-8c0-.55.45-1 1-1s1 .45 1 1h-1v1h1v2h-1v1h1v2h-2V5z"},"children":[]}]};exports.ic_device_thermostat=ic_device_thermostat;var ic_devices={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 6h18V4H4c-1.1 0-2 .9-2 2v11H0v3h14v-3H4V6zm19 2h-6c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-1 9h-4v-7h4v7z"},"children":[]}]};exports.ic_devices=ic_devices;var ic_devices_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 6h18V4H4c-1.1 0-2 .9-2 2v11H0v3h14v-3H4V6zm19 2h-6c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-1 9h-4v-7h4v7z"},"children":[]}]};exports.ic_devices_outline=ic_devices_outline;var ic_devices_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 10h4v7h-4z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M23 8h-6c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-1 9h-4v-7h4v7zM4 6h18V4H4c-1.1 0-2 .9-2 2v11H0v3h14v-3H4V6z"},"children":[]}]};exports.ic_devices_twotone=ic_devices_twotone;var ic_dvr={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.1-.9-2-2-2zm0 14H3V5h18v12zm-2-9H8v2h11V8zm0 4H8v2h11v-2zM7 8H5v2h2V8zm0 4H5v2h2v-2z"},"children":[]}]};exports.ic_dvr=ic_dvr;var ic_dvr_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v2h8v-2h5c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 14H3V5h18v12zm-2-9H8v2h11V8zm0 4H8v2h11v-2zM7 8H5v2h2V8zm0 4H5v2h2v-2z"},"children":[]}]};exports.ic_dvr_outline=ic_dvr_outline;var ic_dvr_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 17h18V5H3v12zm5-9h11v2H8V8zm0 4h11v2H8v-2zM5 8h2v2H5V8zm0 4h2v2H5v-2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M8 12h11v2H8zm0-4h11v2H8zm13-5H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v2h8v-2h5c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 14H3V5h18v12zM5 12h2v2H5zm0-4h2v2H5z"},"children":[]}]};exports.ic_dvr_twotone=ic_dvr_twotone;var ic_gps_fixed={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm8.94 3c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z"},"children":[]}]};exports.ic_gps_fixed=ic_gps_fixed;var ic_gps_fixed_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm8.94 3c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z"},"children":[]}]};exports.ic_gps_fixed_outline=ic_gps_fixed_outline;var ic_gps_fixed_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"12","cy":"12","opacity":".3","r":"2"},"children":[]},{"name":"path","attribs":{"d":"M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm8.94-3c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z"},"children":[]}]};exports.ic_gps_fixed_twotone=ic_gps_fixed_twotone;var ic_gps_not_fixed={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z"},"children":[]}]};exports.ic_gps_not_fixed=ic_gps_not_fixed;var ic_gps_not_fixed_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z"},"children":[]}]};exports.ic_gps_not_fixed_outline=ic_gps_not_fixed_outline;var ic_gps_not_fixed_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z"},"children":[]}]};exports.ic_gps_not_fixed_twotone=ic_gps_not_fixed_twotone;var ic_gps_off={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06c-1.13.12-2.19.46-3.16.97l1.5 1.5C10.16 5.19 11.06 5 12 5c3.87 0 7 3.13 7 7 0 .94-.19 1.84-.52 2.65l1.5 1.5c.5-.96.84-2.02.97-3.15H23v-2h-2.06zM3 4.27l2.04 2.04C3.97 7.62 3.25 9.23 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c1.77-.2 3.38-.91 4.69-1.98L19.73 21 21 19.73 4.27 3 3 4.27zm13.27 13.27C15.09 18.45 13.61 19 12 19c-3.87 0-7-3.13-7-7 0-1.61.55-3.09 1.46-4.27l9.81 9.81z"},"children":[]}]};exports.ic_gps_off=ic_gps_off;var ic_gps_off_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06c-.98.11-1.91.38-2.77.78l1.53 1.53C10.46 5.13 11.22 5 12 5c3.87 0 7 3.13 7 7 0 .79-.13 1.54-.37 2.24l1.53 1.53c.4-.86.67-1.79.78-2.77H23v-2h-2.06zM3 4.27l2.04 2.04C3.97 7.62 3.26 9.23 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c1.77-.2 3.38-.91 4.69-1.98L19.73 21l1.41-1.41L4.41 2.86 3 4.27zm13.27 13.27C15.09 18.45 13.61 19 12 19c-3.87 0-7-3.13-7-7 0-1.61.55-3.09 1.46-4.27l9.81 9.81z"},"children":[]}]};exports.ic_gps_off_outline=ic_gps_off_outline;var ic_gps_off_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06c-.98.11-1.91.38-2.77.78l1.53 1.53C10.46 5.13 11.22 5 12 5c3.87 0 7 3.13 7 7 0 .79-.13 1.54-.37 2.24l1.53 1.53c.4-.86.67-1.79.78-2.77H23v-2h-2.06zM3 4.27l2.04 2.04C3.97 7.62 3.26 9.23 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c1.77-.2 3.38-.91 4.69-1.98L19.73 21l1.41-1.41L4.41 2.86 3 4.27zm13.27 13.27C15.09 18.45 13.61 19 12 19c-3.87 0-7-3.13-7-7 0-1.61.55-3.09 1.46-4.27l9.81 9.81z"},"children":[]}]};exports.ic_gps_off_twotone=ic_gps_off_twotone;var ic_graphic_eq={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 18h2V6H7v12zm4 4h2V2h-2v20zm-8-8h2v-4H3v4zm12 4h2V6h-2v12zm4-8v4h2v-4h-2z"},"children":[]}]};exports.ic_graphic_eq=ic_graphic_eq;var ic_graphic_eq_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 18h2V6H7v12zm4 4h2V2h-2v20zm-8-8h2v-4H3v4zm12 4h2V6h-2v12zm4-8v4h2v-4h-2z"},"children":[]}]};exports.ic_graphic_eq_outline=ic_graphic_eq_outline;var ic_graphic_eq_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 18h2V6H7v12zm4 4h2V2h-2v20zm-8-8h2v-4H3v4zm12 4h2V6h-2v12zm4-8v4h2v-4h-2z"},"children":[]}]};exports.ic_graphic_eq_twotone=ic_graphic_eq_twotone;var ic_location_disabled={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06c-1.13.12-2.19.46-3.16.97l1.5 1.5C10.16 5.19 11.06 5 12 5c3.87 0 7 3.13 7 7 0 .94-.19 1.84-.52 2.65l1.5 1.5c.5-.96.84-2.02.97-3.15H23v-2h-2.06zM3 4.27l2.04 2.04C3.97 7.62 3.25 9.23 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c1.77-.2 3.38-.91 4.69-1.98L19.73 21 21 19.73 4.27 3 3 4.27zm13.27 13.27C15.09 18.45 13.61 19 12 19c-3.87 0-7-3.13-7-7 0-1.61.55-3.09 1.46-4.27l9.81 9.81z"},"children":[]}]};exports.ic_location_disabled=ic_location_disabled;var ic_location_disabled_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M23 13v-2h-2.06c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06c-.98.11-1.91.38-2.77.78l1.53 1.53C10.46 5.13 11.22 5 12 5c3.87 0 7 3.13 7 7 0 .79-.13 1.54-.37 2.24l1.53 1.53c.4-.86.67-1.79.78-2.77H23zM4.41 2.86L3 4.27l2.04 2.04C3.97 7.62 3.26 9.23 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c1.77-.2 3.38-.91 4.69-1.98L19.73 21l1.41-1.41L4.41 2.86zM12 19c-3.87 0-7-3.13-7-7 0-1.61.55-3.09 1.46-4.27l9.81 9.81C15.09 18.45 13.61 19 12 19z"},"children":[]}]};exports.ic_location_disabled_outline=ic_location_disabled_outline;var ic_location_disabled_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M23 13v-2h-2.06c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06c-.98.11-1.91.38-2.77.78l1.53 1.53C10.46 5.13 11.22 5 12 5c3.87 0 7 3.13 7 7 0 .79-.13 1.54-.37 2.24l1.53 1.53c.4-.86.67-1.79.78-2.77H23zM4.41 2.86L3 4.27l2.04 2.04C3.97 7.62 3.26 9.23 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c1.77-.2 3.38-.91 4.69-1.98L19.73 21l1.41-1.41L4.41 2.86zM12 19c-3.87 0-7-3.13-7-7 0-1.61.55-3.09 1.46-4.27l9.81 9.81C15.09 18.45 13.61 19 12 19z"},"children":[]}]};exports.ic_location_disabled_twotone=ic_location_disabled_twotone;var ic_location_searching={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z"},"children":[]}]};exports.ic_location_searching=ic_location_searching;var ic_location_searching_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z"},"children":[]}]};exports.ic_location_searching_outline=ic_location_searching_outline;var ic_location_searching_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z"},"children":[]}]};exports.ic_location_searching_twotone=ic_location_searching_twotone;var ic_mobile_friendly={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 1H9c-1.1 0-2 .9-2 2v3h2V4h10v16H9v-2H7v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zM7.01 13.47l-2.55-2.55-1.27 1.27L7 16l7.19-7.19-1.27-1.27z"},"children":[]}]};exports.ic_mobile_friendly=ic_mobile_friendly;var ic_mobile_friendly_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 1H9c-1.1 0-2 .9-2 2v3h2V4h10v16H9v-2H7v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zM7.01 13.47l-2.55-2.55-1.27 1.27L7 16l7.19-7.19-1.27-1.27-5.91 5.93z"},"children":[]}]};exports.ic_mobile_friendly_outline=ic_mobile_friendly_outline;var ic_mobile_friendly_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 1H9c-1.1 0-2 .9-2 2v3h2V4h10v16H9v-2H7v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zM7.01 13.47l-2.55-2.55-1.27 1.27L7 16l7.19-7.19-1.27-1.27-5.91 5.93z"},"children":[]}]};exports.ic_mobile_friendly_twotone=ic_mobile_friendly_twotone;var ic_mobile_off={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M2.76 2.49L1.49 3.76 5 7.27V21c0 1.1.9 2 2 2h10c1.02 0 1.85-.77 1.98-1.75l1.72 1.72 1.27-1.27L2.76 2.49zM7 19V9.27L16.73 19H7zM17 5v9.17l2 2V3c0-1.1-.9-2-2-2H7c-.85 0-1.58.54-1.87 1.3L7.83 5H17z"},"children":[]}]};exports.ic_mobile_off=ic_mobile_off;var ic_mobile_off_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 5v8.61l2 2V3c0-1.1-.9-2-2-2H7c-.71 0-1.33.37-1.68.93L8.39 5H17zM1.49 3.76L5 7.27V21c0 1.1.9 2 2 2h10c1.02 0 1.85-.77 1.98-1.75l1.72 1.72 1.41-1.41L2.9 2.35 1.49 3.76zM7 9.27L16.73 19H7V9.27z"},"children":[]}]};exports.ic_mobile_off_outline=ic_mobile_off_outline;var ic_mobile_off_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 5v8.61l2 2V3c0-1.1-.9-2-2-2H7c-.71 0-1.33.37-1.68.93L8.39 5H17zM1.49 3.76L5 7.27V21c0 1.1.9 2 2 2h10c1.02 0 1.85-.77 1.98-1.75l1.72 1.72 1.41-1.41L2.9 2.35 1.49 3.76zM7 9.27L16.73 19H7V9.27z"},"children":[]}]};exports.ic_mobile_off_twotone=ic_mobile_off_twotone;var ic_network_cell={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M2,22h20V2L2,22z M20,20h-3V9.83l3-3V20z"},"children":[]}]};exports.ic_network_cell=ic_network_cell;var ic_network_cell_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M2 22h20V2L2 22z","fill-opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M17 7L2 22h15V7z"},"children":[]}]};exports.ic_network_cell_twotone=ic_network_cell_twotone;var ic_network_wifi={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"path","attribs":{"d":"M24,8.98C20.93,5.9,16.69,4,12,4C7.31,4,3.07,5.9,0,8.98L12,21v0l0,0L24,8.98z M2.92,9.07C5.51,7.08,8.67,6,12,6 s6.49,1.08,9.08,3.07l-1.43,1.43C17.5,8.94,14.86,8,12,8s-5.5,0.94-7.65,2.51L2.92,9.07z"},"children":[]}]};exports.ic_network_wifi=ic_network_wifi;var ic_network_wifi_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7L12 21.5 23.64 7z","fill-opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M3.53 10.94L12 21.5l8.47-10.56c-.43-.33-3.66-2.95-8.47-2.95s-8.04 2.62-8.47 2.95z"},"children":[]}]};exports.ic_network_wifi_twotone=ic_network_wifi_twotone;var ic_nfc={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 20h16V4H4v16z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H4V4h16v16zM18 6h-5c-1.1 0-2 .9-2 2v2.28c-.6.35-1 .98-1 1.72 0 1.1.9 2 2 2s2-.9 2-2c0-.74-.4-1.38-1-1.72V8h3v8H8V8h2V6H6v12h12V6z"},"children":[]}]};exports.ic_nfc=ic_nfc;var ic_nfc_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H4V4h16v16zM18 6h-5c-1.1 0-2 .9-2 2v2.28c-.6.35-1 .98-1 1.72 0 1.1.9 2 2 2s2-.9 2-2c0-.74-.4-1.38-1-1.72V8h3v8H8V8h2V6H6v12h12V6z"},"children":[]}]};exports.ic_nfc_outline=ic_nfc_outline;var ic_nfc_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H4V4h16v16zM18 6h-5c-1.1 0-2 .9-2 2v2.28c-.6.35-1 .98-1 1.72 0 1.1.9 2 2 2s2-.9 2-2c0-.74-.4-1.38-1-1.72V8h3v8H8V8h2V6H6v12h12V6z"},"children":[]}]};exports.ic_nfc_twotone=ic_nfc_twotone;var ic_reset_tv={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 10h-8.01V7L9 11l3.99 4v-3H21v5H3V5h18v3h2V5c0-1.1-.9-2-2-2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2v-5H23c0-1.1-.9-2-2-2z"},"children":[]}]};exports.ic_reset_tv=ic_reset_tv;var ic_screen_lock_landscape={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 5H3c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-2 12H5V7h14v10zm-9-1h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1v-1c0-1.11-.9-2-2-2-1.11 0-2 .9-2 2v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1zm.8-6c0-.66.54-1.2 1.2-1.2.66 0 1.2.54 1.2 1.2v1h-2.4v-1z"},"children":[]}]};exports.ic_screen_lock_landscape=ic_screen_lock_landscape;var ic_screen_lock_landscape_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 5H3c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-2 12H5V7h14v10zm-9-1h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1v-1c0-1.11-.9-2-2-2-1.11 0-2 .9-2 2v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1zm.8-6c0-.66.54-1.2 1.2-1.2s1.2.54 1.2 1.2v1h-2.4v-1z"},"children":[]}]};exports.ic_screen_lock_landscape_outline=ic_screen_lock_landscape_outline;var ic_screen_lock_landscape_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13.2 10c0-.66-.54-1.2-1.2-1.2s-1.2.54-1.2 1.2v1h2.4v-1zM5 17h14V7H5v10zm4-5c0-.55.45-1 1-1v-1c0-1.1.89-2 2-2 1.1 0 2 .89 2 2v1c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1h-4c-.55 0-1-.45-1-1v-3z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M10 16h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1v-1c0-1.11-.9-2-2-2-1.11 0-2 .9-2 2v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1zm.8-6c0-.66.54-1.2 1.2-1.2s1.2.54 1.2 1.2v1h-2.4v-1zM21 5H3c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-2 12H5V7h14v10z"},"children":[]}]};exports.ic_screen_lock_landscape_twotone=ic_screen_lock_landscape_twotone;var ic_screen_lock_portrait={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 16h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1v-1c0-1.11-.9-2-2-2-1.11 0-2 .9-2 2v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1zm.8-6c0-.66.54-1.2 1.2-1.2.66 0 1.2.54 1.2 1.2v1h-2.4v-1zM17 1H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 18H7V5h10v14z"},"children":[]}]};exports.ic_screen_lock_portrait=ic_screen_lock_portrait;var ic_screen_lock_portrait_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 16h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1v-1c0-1.11-.9-2-2-2-1.11 0-2 .9-2 2v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1zm.8-6c0-.66.54-1.2 1.2-1.2s1.2.54 1.2 1.2v1h-2.4v-1zM17 1H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 18H7V5h10v14z"},"children":[]}]};exports.ic_screen_lock_portrait_outline=ic_screen_lock_portrait_outline;var ic_screen_lock_portrait_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13.2 10c0-.66-.54-1.2-1.2-1.2s-1.2.54-1.2 1.2v1h2.4v-1zM7 19h10V5H7v14zm2-7c0-.55.45-1 1-1v-1c0-1.1.89-2 2-2 1.1 0 2 .89 2 2v1c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1h-4c-.55 0-1-.45-1-1v-3z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M10 16h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1v-1c0-1.11-.9-2-2-2-1.11 0-2 .9-2 2v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1zm.8-6c0-.66.54-1.2 1.2-1.2s1.2.54 1.2 1.2v1h-2.4v-1zM17 1H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 18H7V5h10v14z"},"children":[]}]};exports.ic_screen_lock_portrait_twotone=ic_screen_lock_portrait_twotone;var ic_screen_lock_rotation={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M23.25 12.77l-2.57-2.57-1.41 1.41 2.22 2.22-5.66 5.66L4.51 8.17l5.66-5.66 2.1 2.1 1.41-1.41L11.23.75c-.59-.59-1.54-.59-2.12 0L2.75 7.11c-.59.59-.59 1.54 0 2.12l12.02 12.02c.59.59 1.54.59 2.12 0l6.36-6.36c.59-.59.59-1.54 0-2.12zM8.47 20.48C5.2 18.94 2.86 15.76 2.5 12H1c.51 6.16 5.66 11 11.95 11l.66-.03-3.81-3.82-1.33 1.33zM16 9h5c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1v-.5C21 1.12 19.88 0 18.5 0S16 1.12 16 2.5V3c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.8-6.5c0-.94.76-1.7 1.7-1.7s1.7.76 1.7 1.7V3h-3.4v-.5z"},"children":[]}]};exports.ic_screen_lock_rotation=ic_screen_lock_rotation;var ic_screen_lock_rotation_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22.3 13.77l-2.57-2.57-1.41 1.41 2.22 2.22-5.66 5.66L3.56 9.17l5.66-5.66 2.1 2.1 1.41-1.41-2.45-2.45c-.59-.59-1.54-.59-2.12 0L1.8 8.11c-.59.59-.59 1.54 0 2.12l12.02 12.02c.59.59 1.54.59 2.12 0l6.36-6.36c.59-.59.59-1.54 0-2.12zM7.52 21.48C4.25 19.94 1.91 16.76 1.55 13H.05C.56 19.16 5.71 24 12 24l.66-.03-3.81-3.82-1.33 1.33zM15.05 10h5c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1v-.5c0-1.38-1.12-2.5-2.5-2.5s-2.5 1.12-2.5 2.5V4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.8-6.5c0-.94.76-1.7 1.7-1.7s1.7.76 1.7 1.7V4h-3.4v-.5z"},"children":[]}]};exports.ic_screen_lock_rotation_outline=ic_screen_lock_rotation_outline;var ic_screen_lock_rotation_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22.3 13.77l-2.57-2.57-1.41 1.41 2.22 2.22-5.66 5.66L3.56 9.17l5.66-5.66 2.1 2.1 1.41-1.41-2.45-2.45c-.59-.59-1.54-.59-2.12 0L1.8 8.11c-.59.59-.59 1.54 0 2.12l12.02 12.02c.59.59 1.54.59 2.12 0l6.36-6.36c.59-.59.59-1.54 0-2.12zM7.52 21.48C4.25 19.94 1.91 16.76 1.55 13H.05C.56 19.16 5.71 24 12 24l.66-.03-3.81-3.82-1.33 1.33zM15.05 10h5c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1v-.5c0-1.38-1.12-2.5-2.5-2.5s-2.5 1.12-2.5 2.5V4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.8-6.5c0-.94.76-1.7 1.7-1.7s1.7.76 1.7 1.7V4h-3.4v-.5z"},"children":[]}]};exports.ic_screen_lock_rotation_twotone=ic_screen_lock_rotation_twotone;var ic_screen_rotation={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16.48 2.52c3.27 1.55 5.61 4.72 5.97 8.48h1.5C23.44 4.84 18.29 0 12 0l-.66.03 3.81 3.81 1.33-1.32zm-6.25-.77c-.59-.59-1.54-.59-2.12 0L1.75 8.11c-.59.59-.59 1.54 0 2.12l12.02 12.02c.59.59 1.54.59 2.12 0l6.36-6.36c.59-.59.59-1.54 0-2.12L10.23 1.75zm4.6 19.44L2.81 9.17l6.36-6.36 12.02 12.02-6.36 6.36zm-7.31.29C4.25 19.94 1.91 16.76 1.55 13H.05C.56 19.16 5.71 24 12 24l.66-.03-3.81-3.81-1.33 1.32z"},"children":[]}]};exports.ic_screen_rotation=ic_screen_rotation;var ic_screen_rotation_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16.48 2.52c3.27 1.55 5.61 4.72 5.97 8.48h1.5C23.44 4.84 18.29 0 12 0l-.66.03 3.81 3.81 1.33-1.32zm-6.25-.77c-.59-.59-1.54-.59-2.12 0L1.75 8.11c-.59.59-.59 1.54 0 2.12l12.02 12.02c.59.59 1.54.59 2.12 0l6.36-6.36c.59-.59.59-1.54 0-2.12L10.23 1.75zm4.6 19.44L2.81 9.17l6.36-6.36 12.02 12.02-6.36 6.36zm-7.31.29C4.25 19.94 1.91 16.76 1.55 13H.05C.56 19.16 5.71 24 12 24l.66-.03-3.81-3.81-1.33 1.32z"},"children":[]}]};exports.ic_screen_rotation_outline=ic_screen_rotation_outline;var ic_screen_rotation_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14.828 21.192L2.808 9.172l6.357-6.357 12.02 12.02z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M16.48 2.52c3.27 1.55 5.61 4.72 5.97 8.48h1.5C23.44 4.84 18.29 0 12 0l-.66.03 3.81 3.81 1.33-1.32zm-6.25-.77c-.59-.59-1.54-.59-2.12 0L1.75 8.11c-.59.59-.59 1.54 0 2.12l12.02 12.02c.59.59 1.54.59 2.12 0l6.36-6.36c.59-.59.59-1.54 0-2.12L10.23 1.75zm4.6 19.44L2.81 9.17l6.36-6.36 12.02 12.02-6.36 6.36zm-7.31.29C4.25 19.94 1.91 16.76 1.55 13H.05C.56 19.16 5.71 24 12 24l.66-.03-3.81-3.81-1.33 1.32z"},"children":[]}]};exports.ic_screen_rotation_twotone=ic_screen_rotation_twotone;var ic_screen_search_desktop={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"height":"1.8","style":"fill:none","width":"4.8","x":"9.6","y":"16.8"},"children":[{"name":"rect","attribs":{"height":"1.8","style":"fill:none","width":"4.8","x":"9.6","y":"16.8"},"children":[]}]},{"name":"path","attribs":{"d":"M20,18 C21.1,18 21.99,17.1 21.99,16 L22,6 C22,4.89 21.1,4 20,4 L4,4 C2.89,4 2,4.89 2,6 L2,16 C2,17.1 2.89,18 4,18 L0,18 L0,20 L24,20 L24,18 L20,18 Z M4,16 L4,6 L20,6 L20,16 L20,16.01 L4,16 Z M9.0967,9.9531 C9.0967,8.9261 9.9327,8.0891 10.9607,8.0891 C11.9877,8.0891 12.8247,8.9261 12.8247,9.9531 C12.8247,10.9801 11.9877,11.8171 10.9607,11.8171 C9.9327,11.8171 9.0967,10.9801 9.0967,9.9531 Z M16.1287,14.1891 L13.6467,11.7071 C13.9777,11.2021 14.1737,10.6001 14.1737,9.9531 C14.1737,8.1811 12.7327,6.7401 10.9607,6.7401 C9.1887,6.7401 7.7467,8.1811 7.7467,9.9531 C7.7467,11.7251 9.1887,13.1671 10.9607,13.1671 C11.5967,13.1671 12.1857,12.9751 12.6847,12.6561 L15.1737,15.1441 L16.1287,14.1891 Z"},"children":[{"name":"path","attribs":{"d":"M20,18 C21.1,18 21.99,17.1 21.99,16 L22,6 C22,4.89 21.1,4 20,4 L4,4 C2.89,4 2,4.89 2,6 L2,16 C2,17.1 2.89,18 4,18 L0,18 L0,20 L24,20 L24,18 L20,18 Z M4,16 L4,6 L20,6 L20,16 L20,16.01 L4,16 Z M9.0967,9.9531 C9.0967,8.9261 9.9327,8.0891 10.9607,8.0891 C11.9877,8.0891 12.8247,8.9261 12.8247,9.9531 C12.8247,10.9801 11.9877,11.8171 10.9607,11.8171 C9.9327,11.8171 9.0967,10.9801 9.0967,9.9531 Z M16.1287,14.1891 L13.6467,11.7071 C13.9777,11.2021 14.1737,10.6001 14.1737,9.9531 C14.1737,8.1811 12.7327,6.7401 10.9607,6.7401 C9.1887,6.7401 7.7467,8.1811 7.7467,9.9531 C7.7467,11.7251 9.1887,13.1671 10.9607,13.1671 C11.5967,13.1671 12.1857,12.9751 12.6847,12.6561 L15.1737,15.1441 L16.1287,14.1891 Z"},"children":[]}]}]}]},{"name":"rect","attribs":{"height":"24","style":"fill:none","width":"24"},"children":[{"name":"rect","attribs":{"height":"24","style":"fill:none","width":"24"},"children":[]}]}]}]}]}]};exports.ic_screen_search_desktop=ic_screen_search_desktop;var ic_sd_storage={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 2h-8L4.02 8 4 20c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-6 6h-2V4h2v4zm3 0h-2V4h2v4zm3 0h-2V4h2v4z"},"children":[]}]};exports.ic_sd_storage=ic_sd_storage;var ic_sd_storage_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 4v16H6V8.83L10.83 4H18m0-2h-8L4 8v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM9 7h2v4H9zm3 0h2v4h-2zm3 0h2v4h-2z"},"children":[]}]};exports.ic_sd_storage_outline=ic_sd_storage_outline;var ic_sd_storage_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6 8.83V20h12V4h-7.17L6 8.83zM15 7h2v4h-2V7zm-3 0h2v4h-2V7zm-1 4H9V7h2v4z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M18 2h-8L4 8v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H6V8.83L10.83 4H18v16zM9 7h2v4H9zm3 0h2v4h-2zm3 0h2v4h-2z"},"children":[]}]};exports.ic_sd_storage_twotone=ic_sd_storage_twotone;var ic_send_to_mobile={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M17,17h2v4c0,1.1-0.9,2-2,2H7c-1.1,0-2-0.9-2-2V3c0-1.1,0.9-1.99,2-1.99L17,1c1.1,0,2,0.9,2,2v4h-2V6H7v12h10V17z M22,12 l-4-4v3h-5v2h5v3L22,12z"},"children":[]}]};exports.ic_send_to_mobile=ic_send_to_mobile;var ic_settings_system_daydream={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9 16h6.5c1.38 0 2.5-1.12 2.5-2.5S16.88 11 15.5 11h-.05c-.24-1.69-1.69-3-3.45-3-1.4 0-2.6.83-3.16 2.02h-.16C7.17 10.18 6 11.45 6 13c0 1.66 1.34 3 3 3zM21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02z"},"children":[]}]};exports.ic_settings_system_daydream=ic_settings_system_daydream;var ic_settings_system_daydream_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.5 17H9c-2.21 0-4-1.79-4-4 0-1.93 1.36-3.56 3.22-3.92C9.04 7.8 10.47 7 12 7c1.95 0 3.66 1.28 4.26 3.09 1.58.36 2.74 1.75 2.74 3.41 0 1.93-1.57 3.5-3.5 3.5zm-6.76-5.98C7.74 11.15 7 11.99 7 13c0 1.1.9 2 2 2h6.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5h-.87l-.17-.86C14.29 9.92 13.23 9 12 9c-.96 0-1.84.57-2.26 1.45l-.27.57h-.73zM21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02z"},"children":[]}]};exports.ic_settings_system_daydream_outline=ic_settings_system_daydream_outline;var ic_settings_system_daydream_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9 15h6.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5h-.87l-.17-.86C14.29 9.92 13.23 9 12 9c-.96 0-1.84.57-2.26 1.45l-.27.57h-.73C7.74 11.15 7 11.99 7 13c0 1.1.9 2 2 2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M9 17h6.5c1.93 0 3.5-1.57 3.5-3.5 0-1.66-1.16-3.05-2.74-3.41C15.66 8.28 13.95 7 12 7c-1.53 0-2.96.8-3.78 2.08C6.36 9.44 5 11.07 5 13c0 2.21 1.79 4 4 4zm-.26-5.98h.74l.27-.57C10.16 9.57 11.04 9 12 9c1.23 0 2.29.92 2.46 2.14l.17.86h.87c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5H9c-1.1 0-2-.9-2-2 0-1.01.74-1.85 1.74-1.98zM21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02z"},"children":[]}]};exports.ic_settings_system_daydream_twotone=ic_settings_system_daydream_twotone;var ic_signal_cellular_0_bar={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M20,6.83V20H6.83L20,6.83 M22,2L2,22h20V2L22,2z"},"children":[]}]};exports.ic_signal_cellular_0_bar=ic_signal_cellular_0_bar;var ic_signal_cellular_0_bar_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M2 22h20V2L2 22z","fill-opacity":".3"},"children":[]}]};exports.ic_signal_cellular_0_bar_twotone=ic_signal_cellular_0_bar_twotone;var ic_signal_cellular_1_bar_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M2 22h20V2L2 22z","fill-opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 12L2 22h10V12z"},"children":[]}]};exports.ic_signal_cellular_1_bar_twotone=ic_signal_cellular_1_bar_twotone;var ic_signal_cellular_2_bar_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M2 22h20V2L2 22z","fill-opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M14 10L2 22h12V10z"},"children":[]}]};exports.ic_signal_cellular_2_bar_twotone=ic_signal_cellular_2_bar_twotone;var ic_signal_cellular_3_bar_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M2 22h20V2L2 22z","fill-opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M17 7L2 22h15V7z"},"children":[]}]};exports.ic_signal_cellular_3_bar_twotone=ic_signal_cellular_3_bar_twotone;var ic_signal_cellular_4_bar={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M2 22h20V2z"},"children":[]}]};exports.ic_signal_cellular_4_bar=ic_signal_cellular_4_bar;var ic_signal_cellular_4_bar_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M2 22h20V2L2 22z"},"children":[]}]};exports.ic_signal_cellular_4_bar_outline=ic_signal_cellular_4_bar_outline;var ic_signal_cellular_4_bar_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M2 22h20V2L2 22z"},"children":[]}]};exports.ic_signal_cellular_4_bar_twotone=ic_signal_cellular_4_bar_twotone;var ic_signal_cellular_alt={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 4h3v16h-3zM5 14h3v6H5zm6-5h3v11h-3z"},"children":[]}]};exports.ic_signal_cellular_alt=ic_signal_cellular_alt;var ic_signal_cellular_alt_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 4h3v16h-3V4zM5 14h3v6H5v-6zm6-5h3v11h-3V9z"},"children":[]}]};exports.ic_signal_cellular_alt_outline=ic_signal_cellular_alt_outline;var ic_signal_cellular_alt_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 4h3v16h-3V4zM5 14h3v6H5v-6zm6-5h3v11h-3V9z"},"children":[]}]};exports.ic_signal_cellular_alt_twotone=ic_signal_cellular_alt_twotone;var ic_signal_cellular_connected_no_internet_0_bar_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 8V2L2 22h16V8h4z","fill-opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 22h2v-2h-2v2zm0-12v8h2v-8h-2z"},"children":[]}]};exports.ic_signal_cellular_connected_no_internet_0_bar_twotone=ic_signal_cellular_connected_no_internet_0_bar_twotone;var ic_signal_cellular_connected_no_internet_1_bar_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 8V2L2 22h16V8h4z","fill-opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 10v8h2v-8h-2zm-8 12V12L2 22h10zm8 0h2v-2h-2v2z"},"children":[]}]};exports.ic_signal_cellular_connected_no_internet_1_bar_twotone=ic_signal_cellular_connected_no_internet_1_bar_twotone;var ic_signal_cellular_connected_no_internet_2_bar_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 8V2L2 22h16V8h4z","fill-opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M14 22V10L2 22h12zm6-12v8h2v-8h-2zm0 12h2v-2h-2v2z"},"children":[]}]};exports.ic_signal_cellular_connected_no_internet_2_bar_twotone=ic_signal_cellular_connected_no_internet_2_bar_twotone;var ic_signal_cellular_connected_no_internet_3_bar_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 8V2L2 22h16V8h4z","fill-opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M18 22V6L2 22h16zm2-12v8h2v-8h-2zm0 12h2v-2h-2v2z"},"children":[]}]};exports.ic_signal_cellular_connected_no_internet_3_bar_twotone=ic_signal_cellular_connected_no_internet_3_bar_twotone;var ic_signal_cellular_connected_no_internet_4_bar={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 18h2v-8h-2v8zm0 4h2v-2h-2v2zM2 22h16V8h4V2L2 22z"},"children":[]}]};exports.ic_signal_cellular_connected_no_internet_4_bar=ic_signal_cellular_connected_no_internet_4_bar;var ic_signal_cellular_connected_no_internet_4_bar_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 18h2v-8h-2v8zm0 4h2v-2h-2v2zM2 22h16V8h4V2L2 22z"},"children":[]}]};exports.ic_signal_cellular_connected_no_internet_4_bar_outline=ic_signal_cellular_connected_no_internet_4_bar_outline;var ic_signal_cellular_connected_no_internet_4_bar_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 18h2v-8h-2v8zm0 4h2v-2h-2v2zM2 22h16V8h4V2L2 22z"},"children":[]}]};exports.ic_signal_cellular_connected_no_internet_4_bar_twotone=ic_signal_cellular_connected_no_internet_4_bar_twotone;var ic_signal_cellular_no_sim={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M-618-2872H782V728H-618zM-1 0h26v24H-1zm1 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18.99 5c0-1.1-.89-2-1.99-2h-7L7.66 5.34 19 16.68 18.99 5zM3.65 3.88L2.38 5.15 5 7.77V19c0 1.1.9 2 2 2h10.01c.35 0 .67-.1.96-.26l1.88 1.88 1.27-1.27L3.65 3.88z"},"children":[]},{"name":"path","attribs":{"d":"M.01 0h24v24h-24z","fill":"none"},"children":[]}]};exports.ic_signal_cellular_no_sim=ic_signal_cellular_no_sim;var ic_signal_cellular_no_sim_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10.83 5H17v9.11l2 2V5c0-1.1-.9-2-2-2h-7L7.94 5.06l1.42 1.42L10.83 5zm10.43 16.21L3.79 3.74 2.38 5.15 5 7.77V19c0 1.11.9 2 2 2h11.23l1.62 1.62 1.41-1.41zM7 19V9.79L16.23 19H7z"},"children":[]}]};exports.ic_signal_cellular_no_sim_outline=ic_signal_cellular_no_sim_outline;var ic_signal_cellular_no_sim_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10.83 5L9.36 6.47 17 14.11V5zM7 9.79V19h9.23z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M10.83 5H17v9.11l2 2V5c0-1.1-.9-2-2-2h-7L7.94 5.06l1.42 1.42L10.83 5zm10.43 16.21L3.79 3.74 2.38 5.15 5 7.77V19c0 1.11.9 2 2 2h11.23l1.62 1.62 1.41-1.41zM7 19V9.79L16.23 19H7z"},"children":[]}]};exports.ic_signal_cellular_no_sim_twotone=ic_signal_cellular_no_sim_twotone;var ic_signal_cellular_null={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 6.83V20H6.83L20 6.83M22 2L2 22h20V2z"},"children":[]}]};exports.ic_signal_cellular_null=ic_signal_cellular_null;var ic_signal_cellular_null_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 6.83V20H6.83L20 6.83M22 2L2 22h20V2z"},"children":[]}]};exports.ic_signal_cellular_null_outline=ic_signal_cellular_null_outline;var ic_signal_cellular_null_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 6.83V20H6.83L20 6.83M22 2L2 22h20V2z"},"children":[]}]};exports.ic_signal_cellular_null_twotone=ic_signal_cellular_null_twotone;var ic_signal_cellular_off={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 1l-8.59 8.59L21 18.18V1zM4.77 4.5L3.5 5.77l6.36 6.36L1 21h17.73l2 2L22 21.73 4.77 4.5z"},"children":[]}]};exports.ic_signal_cellular_off=ic_signal_cellular_off;var ic_signal_cellular_off_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 1l-8.31 8.31 8.31 8.3zM4.91 4.36L3.5 5.77l6.36 6.37L1 21h17.73l2 2 1.41-1.41z"},"children":[]}]};exports.ic_signal_cellular_off_outline=ic_signal_cellular_off_outline;var ic_signal_cellular_off_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 1l-8.31 8.31 8.31 8.3zM4.91 4.36L3.5 5.77l6.36 6.37L1 21h17.73l2 2 1.41-1.41z"},"children":[]}]};exports.ic_signal_cellular_off_twotone=ic_signal_cellular_off_twotone;var ic_signal_wifi_0_bar={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M12,6L12,6c3.33,0,6.49,1.08,9.08,3.07L12,18.17l-9.08-9.1C5.51,7.08,8.67,6,12,6 M12,4C7.31,4,3.07,5.9,0,8.98L12,21 L24,8.98C20.93,5.9,16.69,4,12,4L12,4z"},"children":[]}]};exports.ic_signal_wifi_0_bar=ic_signal_wifi_0_bar;var ic_signal_wifi_0_bar_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12.01 21.49L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7l11.63 14.49.01.01.01-.01z","fill-opacity":".3"},"children":[]}]};exports.ic_signal_wifi_0_bar_twotone=ic_signal_wifi_0_bar_twotone;var ic_signal_wifi_1_bar_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12.01 21.49L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7l11.63 14.49.01.01.01-.01z","fill-opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M6.67 14.86L12 21.49v.01l.01-.01 5.33-6.63C17.06 14.65 15.03 13 12 13s-5.06 1.65-5.33 1.86z"},"children":[]}]};exports.ic_signal_wifi_1_bar_twotone=ic_signal_wifi_1_bar_twotone;var ic_signal_wifi_1_bar_lock_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.5 14.5c0-2.8 2.2-5 5-5 .36 0 .71.04 1.05.11L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7L12 21.5l3.5-4.36V14.5z","fill-opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M15.5 14.5c0-.23.04-.46.07-.68-.92-.43-2.14-.82-3.57-.82-3 0-5.1 1.7-5.3 1.9l5.3 6.6 3.5-4.36V14.5zM23 16v-1.5c0-1.4-1.1-2.5-2.5-2.5S18 13.1 18 14.5V16c-.5 0-1 .5-1 1v4c0 .5.5 1 1 1h5c.5 0 1-.5 1-1v-4c0-.5-.5-1-1-1zm-1 0h-3v-1.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5V16z"},"children":[]}]};exports.ic_signal_wifi_1_bar_lock_twotone=ic_signal_wifi_1_bar_lock_twotone;var ic_signal_wifi_2_bar_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7L12 21.5 23.64 7z","fill-opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M4.79 12.52L12 21.5l7.21-8.99C18.85 12.24 16.1 10 12 10s-6.85 2.24-7.21 2.52z"},"children":[]}]};exports.ic_signal_wifi_2_bar_twotone=ic_signal_wifi_2_bar_twotone;var ic_signal_wifi_2_bar_lock_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.5 14.5c0-2.8 2.2-5 5-5 .36 0 .71.04 1.05.11L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7L12 21.5l3.5-4.36V14.5z","fill-opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M15.5 14.5c0-1.34.51-2.53 1.34-3.42C15.62 10.51 13.98 10 12 10c-4.1 0-6.8 2.2-7.2 2.5l7.2 9 3.5-4.38V14.5zM23 16v-1.5c0-1.4-1.1-2.5-2.5-2.5S18 13.1 18 14.5V16c-.5 0-1 .5-1 1v4c0 .5.5 1 1 1h5c.5 0 1-.5 1-1v-4c0-.5-.5-1-1-1zm-1 0h-3v-1.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5V16z"},"children":[]}]};exports.ic_signal_wifi_2_bar_lock_twotone=ic_signal_wifi_2_bar_lock_twotone;var ic_signal_wifi_3_bar_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7L12 21.5 23.64 7z","fill-opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M3.53 10.95L12 21.5l8.47-10.55C20.04 10.62 16.81 8 12 8s-8.04 2.62-8.47 2.95z"},"children":[]}]};exports.ic_signal_wifi_3_bar_twotone=ic_signal_wifi_3_bar_twotone;var ic_signal_wifi_3_bar_lock_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.5 14.5c0-2.8 2.2-5 5-5 .36 0 .71.04 1.05.11L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7L12 21.5l3.5-4.36V14.5z","fill-opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M23 16v-1.5c0-1.4-1.1-2.5-2.5-2.5S18 13.1 18 14.5V16c-.5 0-1 .5-1 1v4c0 .5.5 1 1 1h5c.5 0 1-.5 1-1v-4c0-.5-.5-1-1-1zm-1 0h-3v-1.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5V16zm-6.5-1.5c0-2.19 1.35-3.99 3.27-4.68C17.29 8.98 14.94 8 12 8c-4.81 0-8.04 2.62-8.47 2.95L12 21.5l3.5-4.36V14.5z"},"children":[]}]};exports.ic_signal_wifi_3_bar_lock_twotone=ic_signal_wifi_3_bar_lock_twotone;var ic_signal_wifi_4_bar={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12.01 21.49L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7l11.63 14.49.01.01.01-.01z"},"children":[]}]};exports.ic_signal_wifi_4_bar=ic_signal_wifi_4_bar;var ic_signal_wifi_4_bar_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12.01 21.49L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7l11.63 14.49.01.01.01-.01z"},"children":[]}]};exports.ic_signal_wifi_4_bar_outline=ic_signal_wifi_4_bar_outline;var ic_signal_wifi_4_bar_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12.01 21.49L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7l11.63 14.49.01.01.01-.01z"},"children":[]}]};exports.ic_signal_wifi_4_bar_twotone=ic_signal_wifi_4_bar_twotone;var ic_signal_wifi_4_bar_lock={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M23 16v-1.5c0-1.4-1.1-2.5-2.5-2.5S18 13.1 18 14.5V16c-.5 0-1 .5-1 1v4c0 .5.5 1 1 1h5c.5 0 1-.5 1-1v-4c0-.5-.5-1-1-1zm-1 0h-3v-1.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5V16zm-6.5-1.5c0-2.8 2.2-5 5-5 .4 0 .7 0 1 .1L23.6 7c-.4-.3-4.9-4-11.6-4C5.3 3 .8 6.7.4 7L12 21.5l3.5-4.4v-2.6z"},"children":[]}]};exports.ic_signal_wifi_4_bar_lock=ic_signal_wifi_4_bar_lock;var ic_signal_wifi_4_bar_lock_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20.5 9.5c.36 0 .71.04 1.05.11L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7L12 21.5l3.5-4.36V14.5c0-2.8 2.2-5 5-5zM23 16v-1.5c0-1.4-1.1-2.5-2.5-2.5S18 13.1 18 14.5V16c-.5 0-1 .5-1 1v4c0 .5.5 1 1 1h5c.5 0 1-.5 1-1v-4c0-.5-.5-1-1-1zm-1 0h-3v-1.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5V16z"},"children":[]}]};exports.ic_signal_wifi_4_bar_lock_outline=ic_signal_wifi_4_bar_lock_outline;var ic_signal_wifi_4_bar_lock_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20.5 9.5c.36 0 .71.04 1.05.11L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7L12 21.5l3.5-4.36V14.5c0-2.8 2.2-5 5-5zM23 16v-1.5c0-1.4-1.1-2.5-2.5-2.5S18 13.1 18 14.5V16c-.5 0-1 .5-1 1v4c0 .5.5 1 1 1h5c.5 0 1-.5 1-1v-4c0-.5-.5-1-1-1zm-1 0h-3v-1.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5V16z"},"children":[]}]};exports.ic_signal_wifi_4_bar_lock_twotone=ic_signal_wifi_4_bar_lock_twotone;var ic_signal_wifi_off={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M23.64 7c-.45-.34-4.93-4-11.64-4-1.5 0-2.89.19-4.15.48L18.18 13.8 23.64 7zm-6.6 8.22L3.27 1.44 2 2.72l2.05 2.06C1.91 5.76.59 6.82.36 7l11.63 14.49.01.01.01-.01 3.9-4.86 3.32 3.32 1.27-1.27-3.46-3.46z"},"children":[]}]};exports.ic_signal_wifi_off=ic_signal_wifi_off;var ic_signal_wifi_off_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M23.64 7c-.45-.34-4.93-4-11.64-4-1.32 0-2.55.14-3.69.38L18.43 13.5 23.64 7zM3.41 1.31L2 2.72l2.05 2.05C1.91 5.76.59 6.82.36 7L12 21.5l3.91-4.87 3.32 3.32 1.41-1.41L3.41 1.31z"},"children":[]}]};exports.ic_signal_wifi_off_outline=ic_signal_wifi_off_outline;var ic_signal_wifi_off_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M23.64 7c-.45-.34-4.93-4-11.64-4-1.32 0-2.55.14-3.69.38L18.43 13.5 23.64 7zM3.41 1.31L2 2.72l2.05 2.05C1.91 5.76.59 6.82.36 7L12 21.5l3.91-4.87 3.32 3.32 1.41-1.41L3.41 1.31z"},"children":[]}]};exports.ic_signal_wifi_off_twotone=ic_signal_wifi_off_twotone;var ic_storage={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M2 20h20v-4H2v4zm2-3h2v2H4v-2zM2 4v4h20V4H2zm4 3H4V5h2v2zm-4 7h20v-4H2v4zm2-3h2v2H4v-2z"},"children":[]}]};exports.ic_storage=ic_storage;var ic_storage_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M2 20h20v-4H2v4zm2-3h2v2H4v-2zM2 4v4h20V4H2zm4 3H4V5h2v2zm-4 7h20v-4H2v4zm2-3h2v2H4v-2z"},"children":[]}]};exports.ic_storage_outline=ic_storage_outline;var ic_storage_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M2 20h20v-4H2v4zm2-3h2v2H4v-2zM2 4v4h20V4H2zm4 3H4V5h2v2zm-4 7h20v-4H2v4zm2-3h2v2H4v-2z"},"children":[]}]};exports.ic_storage_twotone=ic_storage_twotone;var ic_thermostat_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15 13V5c0-1.66-1.34-3-3-3S9 3.34 9 5v8c-1.21.91-2 2.37-2 4 0 2.76 2.24 5 5 5s5-2.24 5-5c0-1.63-.79-3.09-2-4zm-4-8c0-.55.45-1 1-1s1 .45 1 1h-1v1h1v2h-1v1h1v2h-2V5z"},"children":[]}]};exports.ic_thermostat_outline=ic_thermostat_outline;var ic_thermostat_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15 13V5c0-1.66-1.34-3-3-3S9 3.34 9 5v8c-1.21.91-2 2.37-2 4 0 2.76 2.24 5 5 5s5-2.24 5-5c0-1.63-.79-3.09-2-4zm-4-8c0-.55.45-1 1-1s1 .45 1 1h-1v1h1v2h-1v1h1v2h-2V5z"},"children":[]}]};exports.ic_thermostat_twotone=ic_thermostat_twotone;var ic_usb={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15 7v4h1v2h-3V5h2l-3-4-3 4h2v8H8v-2.07c.7-.37 1.2-1.08 1.2-1.93 0-1.21-.99-2.2-2.2-2.2-1.21 0-2.2.99-2.2 2.2 0 .85.5 1.56 1.2 1.93V13c0 1.11.89 2 2 2h3v3.05c-.71.37-1.2 1.1-1.2 1.95 0 1.22.99 2.2 2.2 2.2 1.21 0 2.2-.98 2.2-2.2 0-.85-.49-1.58-1.2-1.95V15h3c1.11 0 2-.89 2-2v-2h1V7h-4z"},"children":[]}]};exports.ic_usb=ic_usb;var ic_usb_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15 7v4h1v2h-3V5h2l-3-4-3 4h2v8H8v-2.07c.7-.37 1.2-1.08 1.2-1.93 0-1.21-.99-2.2-2.2-2.2S4.8 7.79 4.8 9c0 .85.5 1.56 1.2 1.93V13c0 1.11.89 2 2 2h3v3.05c-.71.37-1.2 1.1-1.2 1.95 0 1.22.99 2.2 2.2 2.2s2.2-.98 2.2-2.2c0-.85-.49-1.58-1.2-1.95V15h3c1.11 0 2-.89 2-2v-2h1V7h-4z"},"children":[]}]};exports.ic_usb_outline=ic_usb_outline;var ic_usb_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15 7v4h1v2h-3V5h2l-3-4-3 4h2v8H8v-2.07c.7-.37 1.2-1.08 1.2-1.93 0-1.21-.99-2.2-2.2-2.2S4.8 7.79 4.8 9c0 .85.5 1.56 1.2 1.93V13c0 1.11.89 2 2 2h3v3.05c-.71.37-1.2 1.1-1.2 1.95 0 1.22.99 2.2 2.2 2.2s2.2-.98 2.2-2.2c0-.85-.49-1.58-1.2-1.95V15h3c1.11 0 2-.89 2-2v-2h1V7h-4z"},"children":[]}]};exports.ic_usb_twotone=ic_usb_twotone;var ic_wallpaper={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 4h7V2H4c-1.1 0-2 .9-2 2v7h2V4zm6 9l-4 5h12l-3-4-2.03 2.71L10 13zm7-4.5c0-.83-.67-1.5-1.5-1.5S14 7.67 14 8.5s.67 1.5 1.5 1.5S17 9.33 17 8.5zM20 2h-7v2h7v7h2V4c0-1.1-.9-2-2-2zm0 18h-7v2h7c1.1 0 2-.9 2-2v-7h-2v7zM4 13H2v7c0 1.1.9 2 2 2h7v-2H4v-7z"},"children":[]}]};exports.ic_wallpaper=ic_wallpaper;var ic_wallpaper_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 4h7V2H4c-1.1 0-2 .9-2 2v7h2V4zm6 9l-4 5h12l-3-4-2.03 2.71L10 13zm7-4.5c0-.83-.67-1.5-1.5-1.5S14 7.67 14 8.5s.67 1.5 1.5 1.5S17 9.33 17 8.5zM20 2h-7v2h7v7h2V4c0-1.1-.9-2-2-2zm0 18h-7v2h7c1.1 0 2-.9 2-2v-7h-2v7zM4 13H2v7c0 1.1.9 2 2 2h7v-2H4v-7z"},"children":[]}]};exports.ic_wallpaper_outline=ic_wallpaper_outline;var ic_wallpaper_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 4h7V2H4c-1.1 0-2 .9-2 2v7h2V4zm6 9l-4 5h12l-3-4-2.03 2.71L10 13zm7-4.5c0-.83-.67-1.5-1.5-1.5S14 7.67 14 8.5s.67 1.5 1.5 1.5S17 9.33 17 8.5zM20 2h-7v2h7v7h2V4c0-1.1-.9-2-2-2zm0 18h-7v2h7c1.1 0 2-.9 2-2v-7h-2v7zM4 13H2v7c0 1.1.9 2 2 2h7v-2H4v-7z"},"children":[]}]};exports.ic_wallpaper_twotone=ic_wallpaper_twotone;var ic_widgets={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13 13v8h8v-8h-8zM3 21h8v-8H3v8zM3 3v8h8V3H3zm13.66-1.31L11 7.34 16.66 13l5.66-5.66-5.66-5.65z"},"children":[]}]};exports.ic_widgets=ic_widgets;var ic_widgets_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16.66 4.52l2.83 2.83-2.83 2.83-2.83-2.83 2.83-2.83M9 5v4H5V5h4m10 10v4h-4v-4h4M9 15v4H5v-4h4m7.66-13.31L11 7.34 16.66 13l5.66-5.66-5.66-5.65zM11 3H3v8h8V3zm10 10h-8v8h8v-8zm-10 0H3v8h8v-8z"},"children":[]}]};exports.ic_widgets_outline=ic_widgets_outline;var ic_widgets_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 5h4v4H5zm10 10h4v4h-4zM5 15h4v4H5zM16.66 4.52l-2.83 2.82 2.83 2.83 2.83-2.83z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M16.66 1.69L11 7.34 16.66 13l5.66-5.66-5.66-5.65zm-2.83 5.65l2.83-2.83 2.83 2.83-2.83 2.83-2.83-2.83zM3 3v8h8V3H3zm6 6H5V5h4v4zM3 21h8v-8H3v8zm2-6h4v4H5v-4zm8-2v8h8v-8h-8zm6 6h-4v-4h4v4z"},"children":[]}]};exports.ic_widgets_twotone=ic_widgets_twotone;var ic_wifi_lock={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20.5 9.5c.28 0 .55.04.81.08L24 6c-3.34-2.51-7.5-4-12-4S3.34 3.49 0 6l12 16 3.5-4.67V14.5c0-2.76 2.24-5 5-5zM23 16v-1.5c0-1.38-1.12-2.5-2.5-2.5S18 13.12 18 14.5V16c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1zm-1 0h-3v-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5V16z"},"children":[]}]};exports.ic_wifi_lock=ic_wifi_lock;var ic_wifi_lock_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21.31 9.58L24 6c-3.34-2.51-7.5-4-12-4S3.34 3.49 0 6l12 16 3.5-4.67V14.5c0-2.76 2.24-5 5-5 .28 0 .55.04.81.08zM23 16v-1.5c0-1.38-1.12-2.5-2.5-2.5S18 13.12 18 14.5V16c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1zm-1 0h-3v-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5V16z"},"children":[]}]};exports.ic_wifi_lock_outline=ic_wifi_lock_outline;var ic_wifi_lock_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21.31 9.58L24 6c-3.34-2.51-7.5-4-12-4S3.34 3.49 0 6l12 16 3.5-4.67V14.5c0-2.76 2.24-5 5-5 .28 0 .55.04.81.08zM23 16v-1.5c0-1.38-1.12-2.5-2.5-2.5S18 13.12 18 14.5V16c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1zm-1 0h-3v-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5V16z"},"children":[]}]};exports.ic_wifi_lock_twotone=ic_wifi_lock_twotone;var ic_wifi_tethering={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 11c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 2c0-3.31-2.69-6-6-6s-6 2.69-6 6c0 2.22 1.21 4.15 3 5.19l1-1.74c-1.19-.7-2-1.97-2-3.45 0-2.21 1.79-4 4-4s4 1.79 4 4c0 1.48-.81 2.75-2 3.45l1 1.74c1.79-1.04 3-2.97 3-5.19zM12 3C6.48 3 2 7.48 2 13c0 3.7 2.01 6.92 4.99 8.65l1-1.73C5.61 18.53 4 15.96 4 13c0-4.42 3.58-8 8-8s8 3.58 8 8c0 2.96-1.61 5.53-4 6.92l1 1.73c2.99-1.73 5-4.95 5-8.65 0-5.52-4.48-10-10-10z"},"children":[]}]};exports.ic_wifi_tethering=ic_wifi_tethering;var ic_wifi_tethering_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 11c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 2c0-3.31-2.69-6-6-6s-6 2.69-6 6c0 2.22 1.21 4.15 3 5.19l1-1.74c-1.19-.7-2-1.97-2-3.45 0-2.21 1.79-4 4-4s4 1.79 4 4c0 1.48-.81 2.75-2 3.45l1 1.74c1.79-1.04 3-2.97 3-5.19zM12 3C6.48 3 2 7.48 2 13c0 3.7 2.01 6.92 4.99 8.65l1-1.73C5.61 18.53 4 15.96 4 13c0-4.42 3.58-8 8-8s8 3.58 8 8c0 2.96-1.61 5.53-4 6.92l1 1.73c2.99-1.73 5-4.95 5-8.65 0-5.52-4.48-10-10-10z"},"children":[]}]};exports.ic_wifi_tethering_outline=ic_wifi_tethering_outline;var ic_wifi_tethering_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 11c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 2c0-3.31-2.69-6-6-6s-6 2.69-6 6c0 2.22 1.21 4.15 3 5.19l1-1.74c-1.19-.7-2-1.97-2-3.45 0-2.21 1.79-4 4-4s4 1.79 4 4c0 1.48-.81 2.75-2 3.45l1 1.74c1.79-1.04 3-2.97 3-5.19zM12 3C6.48 3 2 7.48 2 13c0 3.7 2.01 6.92 4.99 8.65l1-1.73C5.61 18.53 4 15.96 4 13c0-4.42 3.58-8 8-8s8 3.58 8 8c0 2.96-1.61 5.53-4 6.92l1 1.73c2.99-1.73 5-4.95 5-8.65 0-5.52-4.48-10-10-10z"},"children":[]}]};exports.ic_wifi_tethering_twotone=ic_wifi_tethering_twotone;var ic_add_chart={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6 9.99h2v7H6zm8 3h2v4h-2zm-4-6h2v10h-2zM20 7V4h-2v3h-3v2h3v3h2V9h3V7zm-2 12H4V5h12V3H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-5h-2v5z"},"children":[]}]};exports.ic_add_chart=ic_add_chart;var ic_add_comment={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21.99 4c0-1.1-.89-2-1.99-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4-.01-18zM17 11h-4v4h-2v-4H7V9h4V5h2v4h4v2z"},"children":[]}]};exports.ic_add_comment=ic_add_comment;var ic_add_comment_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 4c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4V4zm-2 13.17L18.83 16H4V4h16v13.17zM13 5h-2v4H7v2h4v4h2v-4h4V9h-4z"},"children":[]}]};exports.ic_add_comment_outline=ic_add_comment_outline;var ic_add_comment_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4V4c0-1.1-.9-2-2-2zm0 15.17L18.83 16H4V4h16v13.17zM13 5h-2v4H7v2h4v4h2v-4h4V9h-4z"},"children":[]},{"name":"path","attribs":{"d":"M4 4v12h14.83L20 17.17V4H4zm13 7h-4v4h-2v-4H7V9h4V5h2v4h4v2z","opacity":".3"},"children":[]}]};exports.ic_add_comment_twotone=ic_add_comment_twotone;var ic_attach_file={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16.5 6v11.5c0 2.21-1.79 4-4 4s-4-1.79-4-4V5c0-1.38 1.12-2.5 2.5-2.5s2.5 1.12 2.5 2.5v10.5c0 .55-.45 1-1 1s-1-.45-1-1V6H10v9.5c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5V5c0-2.21-1.79-4-4-4S7 2.79 7 5v12.5c0 3.04 2.46 5.5 5.5 5.5s5.5-2.46 5.5-5.5V6h-1.5z"},"children":[]}]};exports.ic_attach_file=ic_attach_file;var ic_attach_file_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16.5 6v11.5c0 2.21-1.79 4-4 4s-4-1.79-4-4V5c0-1.38 1.12-2.5 2.5-2.5s2.5 1.12 2.5 2.5v10.5c0 .55-.45 1-1 1s-1-.45-1-1V6H10v9.5c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5V5c0-2.21-1.79-4-4-4S7 2.79 7 5v12.5c0 3.04 2.46 5.5 5.5 5.5s5.5-2.46 5.5-5.5V6h-1.5z"},"children":[]}]};exports.ic_attach_file_outline=ic_attach_file_outline;var ic_attach_file_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12.5 23c3.04 0 5.5-2.46 5.5-5.5V6h-1.5v11.5c0 2.21-1.79 4-4 4s-4-1.79-4-4V5c0-1.38 1.12-2.5 2.5-2.5s2.5 1.12 2.5 2.5v10.5c0 .55-.45 1-1 1s-1-.45-1-1V6H10v9.5c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5V5c0-2.21-1.79-4-4-4S7 2.79 7 5v12.5c0 3.04 2.46 5.5 5.5 5.5z"},"children":[]}]};exports.ic_attach_file_twotone=ic_attach_file_twotone;var ic_attach_money={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11.8 10.9c-2.27-.59-3-1.2-3-2.15 0-1.09 1.01-1.85 2.7-1.85 1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-1.94.42-3.5 1.68-3.5 3.61 0 2.31 1.91 3.46 4.7 4.13 2.5.6 3 1.48 3 2.41 0 .69-.49 1.79-2.7 1.79-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c1.95-.37 3.5-1.5 3.5-3.55 0-2.84-2.43-3.81-4.7-4.4z"},"children":[]}]};exports.ic_attach_money=ic_attach_money;var ic_attach_money_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11.8 10.9c-2.27-.59-3-1.2-3-2.15 0-1.09 1.01-1.85 2.7-1.85 1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-1.94.42-3.5 1.68-3.5 3.61 0 2.31 1.91 3.46 4.7 4.13 2.5.6 3 1.48 3 2.41 0 .69-.49 1.79-2.7 1.79-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c1.95-.37 3.5-1.5 3.5-3.55 0-2.84-2.43-3.81-4.7-4.4z"},"children":[]}]};exports.ic_attach_money_outline=ic_attach_money_outline;var ic_attach_money_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11.5 17.1c-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c1.95-.37 3.5-1.5 3.5-3.55 0-2.84-2.43-3.81-4.7-4.4-2.27-.59-3-1.2-3-2.15 0-1.09 1.01-1.85 2.7-1.85 1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-1.94.42-3.5 1.68-3.5 3.61 0 2.31 1.91 3.46 4.7 4.13 2.5.6 3 1.48 3 2.41 0 .69-.49 1.79-2.7 1.79z"},"children":[]}]};exports.ic_attach_money_twotone=ic_attach_money_twotone;var ic_bar_chart={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 9.2h3V19H5zM10.6 5h2.8v14h-2.8zm5.6 8H19v6h-2.8z"},"children":[]}]};exports.ic_bar_chart=ic_bar_chart;var ic_bar_chart_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 9.2h3V19H5V9.2zM10.6 5h2.8v14h-2.8V5zm5.6 8H19v6h-2.8v-6z"},"children":[]}]};exports.ic_bar_chart_outline=ic_bar_chart_outline;var ic_bar_chart_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 9.2h3V19H5zM16.2 13H19v6h-2.8zm-5.6-8h2.8v14h-2.8z"},"children":[]}]};exports.ic_bar_chart_twotone=ic_bar_chart_twotone;var ic_border_all={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 3v18h18V3H3zm8 16H5v-6h6v6zm0-8H5V5h6v6zm8 8h-6v-6h6v6zm0-8h-6V5h6v6z"},"children":[]}]};exports.ic_border_all=ic_border_all;var ic_border_all_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 3v18h18V3H3zm8 16H5v-6h6v6zm0-8H5V5h6v6zm8 8h-6v-6h6v6zm0-8h-6V5h6v6z"},"children":[]}]};exports.ic_border_all_outline=ic_border_all_outline;var ic_border_all_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 3H3v18h18V3zM11 19H5v-6h6v6zm0-8H5V5h6v6zm8 8h-6v-6h6v6zm0-8h-6V5h6v6z"},"children":[]}]};exports.ic_border_all_twotone=ic_border_all_twotone;var ic_border_bottom={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9 11H7v2h2v-2zm4 4h-2v2h2v-2zM9 3H7v2h2V3zm4 8h-2v2h2v-2zM5 3H3v2h2V3zm8 4h-2v2h2V7zm4 4h-2v2h2v-2zm-4-8h-2v2h2V3zm4 0h-2v2h2V3zm2 10h2v-2h-2v2zm0 4h2v-2h-2v2zM5 7H3v2h2V7zm14-4v2h2V3h-2zm0 6h2V7h-2v2zM5 11H3v2h2v-2zM3 21h18v-2H3v2zm2-6H3v2h2v-2z"},"children":[]}]};exports.ic_border_bottom=ic_border_bottom;var ic_border_bottom_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9 11H7v2h2v-2zm4 4h-2v2h2v-2zM9 3H7v2h2V3zm4 8h-2v2h2v-2zM5 3H3v2h2V3zm8 4h-2v2h2V7zm4 4h-2v2h2v-2zm-4-8h-2v2h2V3zm4 0h-2v2h2V3zm2 10h2v-2h-2v2zm0 4h2v-2h-2v2zM5 7H3v2h2V7zm14-4v2h2V3h-2zm0 6h2V7h-2v2zM5 11H3v2h2v-2zM3 21h18v-2H3v2zm2-6H3v2h2v-2z"},"children":[]}]};exports.ic_border_bottom_outline=ic_border_bottom_outline;var ic_border_bottom_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 11h2v2H3zm0 4h2v2H3zm0 4h18v2H3zm16-4h2v2h-2zM3 7h2v2H3zm16 4h2v2h-2zm0-8h2v2h-2zm-4 8h2v2h-2zm4-4h2v2h-2zm-4-4h2v2h-2zm-8 8h2v2H7zM3 3h2v2H3zm8 4h2v2h-2zM7 3h2v2H7zm4 8h2v2h-2zm0 4h2v2h-2zm0-12h2v2h-2z"},"children":[]}]};exports.ic_border_bottom_twotone=ic_border_bottom_twotone;var ic_border_clear={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 5h2V3H7v2zm0 8h2v-2H7v2zm0 8h2v-2H7v2zm4-4h2v-2h-2v2zm0 4h2v-2h-2v2zm-8 0h2v-2H3v2zm0-4h2v-2H3v2zm0-4h2v-2H3v2zm0-4h2V7H3v2zm0-4h2V3H3v2zm8 8h2v-2h-2v2zm8 4h2v-2h-2v2zm0-4h2v-2h-2v2zm0 8h2v-2h-2v2zm0-12h2V7h-2v2zm-8 0h2V7h-2v2zm8-6v2h2V3h-2zm-8 2h2V3h-2v2zm4 16h2v-2h-2v2zm0-8h2v-2h-2v2zm0-8h2V3h-2v2z"},"children":[]}]};exports.ic_border_clear=ic_border_clear;var ic_border_clear_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 5h2V3H7v2zm0 8h2v-2H7v2zm0 8h2v-2H7v2zm4-4h2v-2h-2v2zm0 4h2v-2h-2v2zm-8 0h2v-2H3v2zm0-4h2v-2H3v2zm0-4h2v-2H3v2zm0-4h2V7H3v2zm0-4h2V3H3v2zm8 8h2v-2h-2v2zm8 4h2v-2h-2v2zm0-4h2v-2h-2v2zm0 8h2v-2h-2v2zm0-12h2V7h-2v2zm-8 0h2V7h-2v2zm8-6v2h2V3h-2zm-8 2h2V3h-2v2zm4 16h2v-2h-2v2zm0-8h2v-2h-2v2zm0-8h2V3h-2v2z"},"children":[]}]};exports.ic_border_clear_outline=ic_border_clear_outline;var ic_border_clear_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 3h2v2H7zm0 16h2v2H7zM3 3h2v2H3zm16 0h2v2h-2zm0 4h2v2h-2zm0 4h2v2h-2zM3 7h2v2H3zm0 12h2v2H3zm16 0h2v2h-2zm0-4h2v2h-2zM3 15h2v2H3zm0-4h2v2H3zm4 0h2v2H7zm8 0h2v2h-2zm-4 8h2v2h-2zm4 0h2v2h-2zm0-16h2v2h-2zm-4 0h2v2h-2zm0 4h2v2h-2zm0 8h2v2h-2zm0-4h2v2h-2z"},"children":[]}]};exports.ic_border_clear_twotone=ic_border_clear_twotone;var ic_border_color={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M22,24H2v-4h20V24z M13.06,5.19l3.75,3.75L7.75,18H4v-3.75L13.06,5.19z M17.88,7.87l-3.75-3.75 l1.83-1.83c0.39-0.39,1.02-0.39,1.41,0l2.34,2.34c0.39,0.39,0.39,1.02,0,1.41L17.88,7.87z","enable-background":"new"},"children":[]}]};exports.ic_border_color=ic_border_color;var ic_border_color_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14 6.08l-8 8V15h.92l8-8z","fill-opacity":".36"},"children":[]},{"name":"path","attribs":{"d":"M14 3.25l-10 10V17h3.75l10-10L14 3.25zM6.92 15H6v-.92l8-8 .92.92-8 8zM20.71 4.04c.39-.39.39-1.02 0-1.41L18.37.29c-.39-.39-1.02-.39-1.41 0L15 2.25 18.75 6l1.96-1.96z"},"children":[]},{"name":"path","attribs":{"d":"M0 20h24v4H0v-4z","fill-opacity":".36"},"children":[]}]};exports.ic_border_color_twotone=ic_border_color_twotone;var ic_border_horizontal={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 21h2v-2H3v2zM5 7H3v2h2V7zM3 17h2v-2H3v2zm4 4h2v-2H7v2zM5 3H3v2h2V3zm4 0H7v2h2V3zm8 0h-2v2h2V3zm-4 4h-2v2h2V7zm0-4h-2v2h2V3zm6 14h2v-2h-2v2zm-8 4h2v-2h-2v2zm-8-8h18v-2H3v2zM19 3v2h2V3h-2zm0 6h2V7h-2v2zm-8 8h2v-2h-2v2zm4 4h2v-2h-2v2zm4 0h2v-2h-2v2z"},"children":[]}]};exports.ic_border_horizontal=ic_border_horizontal;var ic_border_horizontal_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 21h2v-2H3v2zM5 7H3v2h2V7zM3 17h2v-2H3v2zm4 4h2v-2H7v2zM5 3H3v2h2V3zm4 0H7v2h2V3zm8 0h-2v2h2V3zm-4 4h-2v2h2V7zm0-4h-2v2h2V3zm6 14h2v-2h-2v2zm-8 4h2v-2h-2v2zm-8-8h18v-2H3v2zM19 3v2h2V3h-2zm0 6h2V7h-2v2zm-8 8h2v-2h-2v2zm4 4h2v-2h-2v2zm4 0h2v-2h-2v2z"},"children":[]}]};exports.ic_border_horizontal_outline=ic_border_horizontal_outline;var ic_border_horizontal_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11 3h2v2h-2zm8 0h2v2h-2zm0 4h2v2h-2zm-4-4h2v2h-2zM3 19h2v2H3zm0-4h2v2H3zm0-8h2v2H3zm4 12h2v2H7zm4-12h2v2h-2zM7 3h2v2H7zM3 3h2v2H3zm12 16h2v2h-2zm-4 0h2v2h-2zm8-4h2v2h-2zm0 4h2v2h-2zm-8-4h2v2h-2zm-8-4h18v2H3z"},"children":[]}]};exports.ic_border_horizontal_twotone=ic_border_horizontal_twotone;var ic_border_inner={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 21h2v-2H3v2zm4 0h2v-2H7v2zM5 7H3v2h2V7zM3 17h2v-2H3v2zM9 3H7v2h2V3zM5 3H3v2h2V3zm12 0h-2v2h2V3zm2 6h2V7h-2v2zm0-6v2h2V3h-2zm-4 18h2v-2h-2v2zM13 3h-2v8H3v2h8v8h2v-8h8v-2h-8V3zm6 18h2v-2h-2v2zm0-4h2v-2h-2v2z"},"children":[]}]};exports.ic_border_inner=ic_border_inner;var ic_border_inner_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 21h2v-2H3v2zm4 0h2v-2H7v2zM5 7H3v2h2V7zM3 17h2v-2H3v2zM9 3H7v2h2V3zM5 3H3v2h2V3zm12 0h-2v2h2V3zm2 6h2V7h-2v2zm0-6v2h2V3h-2zm-4 18h2v-2h-2v2zM13 3h-2v8H3v2h8v8h2v-8h8v-2h-8V3zm6 18h2v-2h-2v2zm0-4h2v-2h-2v2z"},"children":[]}]};exports.ic_border_inner_outline=ic_border_inner_outline;var ic_border_inner_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 15h2v2H3zM3 3h2v2H3zm0 16h2v2H3zm8 2h2v-8h8v-2h-8V3h-2v8H3v2h8zm-4-2h2v2H7zm12-4h2v2h-2zm-4 4h2v2h-2zm4 0h2v2h-2zM3 7h2v2H3zm16 0h2v2h-2zM7 3h2v2H7zm8 0h2v2h-2zm4 0h2v2h-2z"},"children":[]}]};exports.ic_border_inner_twotone=ic_border_inner_twotone;var ic_border_left={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11 21h2v-2h-2v2zm0-4h2v-2h-2v2zm0-12h2V3h-2v2zm0 4h2V7h-2v2zm0 4h2v-2h-2v2zm-4 8h2v-2H7v2zM7 5h2V3H7v2zm0 8h2v-2H7v2zm-4 8h2V3H3v18zM19 9h2V7h-2v2zm-4 12h2v-2h-2v2zm4-4h2v-2h-2v2zm0-14v2h2V3h-2zm0 10h2v-2h-2v2zm0 8h2v-2h-2v2zm-4-8h2v-2h-2v2zm0-8h2V3h-2v2z"},"children":[]}]};exports.ic_border_left=ic_border_left;var ic_border_left_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11 21h2v-2h-2v2zm0-4h2v-2h-2v2zm0-12h2V3h-2v2zm0 4h2V7h-2v2zm0 4h2v-2h-2v2zm-4 8h2v-2H7v2zM7 5h2V3H7v2zm0 8h2v-2H7v2zm-4 8h2V3H3v18zM19 9h2V7h-2v2zm-4 12h2v-2h-2v2zm4-4h2v-2h-2v2zm0-14v2h2V3h-2zm0 10h2v-2h-2v2zm0 8h2v-2h-2v2zm-4-8h2v-2h-2v2zm0-8h2V3h-2v2z"},"children":[]}]};exports.ic_border_left_outline=ic_border_left_outline;var ic_border_left_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11 3h2v2h-2zM3 3h2v18H3zm12 0h2v2h-2zm-4 16h2v2h-2zm0-4h2v2h-2zm4 4h2v2h-2zM11 7h2v2h-2zm0 4h2v2h-2zm8 4h2v2h-2zm0 4h2v2h-2zm0-12h2v2h-2zm0 4h2v2h-2zm0-8h2v2h-2zm-4 8h2v2h-2zm-8 8h2v2H7zm0-8h2v2H7zm0-8h2v2H7z"},"children":[]}]};exports.ic_border_left_twotone=ic_border_left_twotone;var ic_border_outer={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13 7h-2v2h2V7zm0 4h-2v2h2v-2zm4 0h-2v2h2v-2zM3 3v18h18V3H3zm16 16H5V5h14v14zm-6-4h-2v2h2v-2zm-4-4H7v2h2v-2z"},"children":[]}]};exports.ic_border_outer=ic_border_outer;var ic_border_outer_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13 7h-2v2h2V7zm0 4h-2v2h2v-2zm4 0h-2v2h2v-2zM3 3v18h18V3H3zm16 16H5V5h14v14zm-6-4h-2v2h2v-2zm-4-4H7v2h2v-2z"},"children":[]}]};exports.ic_border_outer_outline=ic_border_outer_outline;var ic_border_outer_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11 11h2v2h-2zm0-4h2v2h-2zm10-4H3v18h18V3zm-2 16H5V5h14v14zm-4-8h2v2h-2zm-8 0h2v2H7zm4 4h2v2h-2z"},"children":[]}]};exports.ic_border_outer_twotone=ic_border_outer_twotone;var ic_border_right={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 21h2v-2H7v2zM3 5h2V3H3v2zm4 0h2V3H7v2zm0 8h2v-2H7v2zm-4 8h2v-2H3v2zm8 0h2v-2h-2v2zm-8-8h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm8 8h2v-2h-2v2zm4-4h2v-2h-2v2zm4-10v18h2V3h-2zm-4 18h2v-2h-2v2zm0-16h2V3h-2v2zm-4 8h2v-2h-2v2zm0-8h2V3h-2v2zm0 4h2V7h-2v2z"},"children":[]}]};exports.ic_border_right=ic_border_right;var ic_border_right_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 21h2v-2H7v2zM3 5h2V3H3v2zm4 0h2V3H7v2zm0 8h2v-2H7v2zm-4 8h2v-2H3v2zm8 0h2v-2h-2v2zm-8-8h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm8 8h2v-2h-2v2zm4-4h2v-2h-2v2zm4-10v18h2V3h-2zm-4 18h2v-2h-2v2zm0-16h2V3h-2v2zm-4 8h2v-2h-2v2zm0-8h2V3h-2v2zm0 4h2V7h-2v2z"},"children":[]}]};exports.ic_border_right_outline=ic_border_right_outline;var ic_border_right_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 3h2v2H3zm0 16h2v2H3zM15 3h2v2h-2zm0 16h2v2h-2zm0-8h2v2h-2zM3 15h2v2H3zm0-4h2v2H3zm0-4h2v2H3zm8 8h2v2h-2zm-4-4h2v2H7zm0-8h2v2H7zm12 0h2v18h-2zM7 19h2v2H7zm4-16h2v2h-2zm0 4h2v2h-2zm0 4h2v2h-2zm0 8h2v2h-2z"},"children":[]}]};exports.ic_border_right_twotone=ic_border_right_twotone;var ic_border_style={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15 21h2v-2h-2v2zm4 0h2v-2h-2v2zM7 21h2v-2H7v2zm4 0h2v-2h-2v2zm8-4h2v-2h-2v2zm0-4h2v-2h-2v2zM3 3v18h2V5h16V3H3zm16 6h2V7h-2v2z"},"children":[]}]};exports.ic_border_style=ic_border_style;var ic_border_style_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15 21h2v-2h-2v2zm4 0h2v-2h-2v2zM7 21h2v-2H7v2zm4 0h2v-2h-2v2zm8-4h2v-2h-2v2zm0-4h2v-2h-2v2zM3 3v18h2V5h16V3H3zm16 6h2V7h-2v2z"},"children":[]}]};exports.ic_border_style_outline=ic_border_style_outline;var ic_border_style_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 19h2v2h-2zm0-8h2v2h-2zm0 4h2v2h-2zm-4 4h2v2h-2zM3 21h2V5h16V3H3zM19 7h2v2h-2zm-8 12h2v2h-2zm-4 0h2v2H7z"},"children":[]}]};exports.ic_border_style_twotone=ic_border_style_twotone;var ic_border_top={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 21h2v-2H7v2zm0-8h2v-2H7v2zm4 0h2v-2h-2v2zm0 8h2v-2h-2v2zm-8-4h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2v-2H3v2zm0-4h2V7H3v2zm8 8h2v-2h-2v2zm8-8h2V7h-2v2zm0 4h2v-2h-2v2zM3 3v2h18V3H3zm16 14h2v-2h-2v2zm-4 4h2v-2h-2v2zM11 9h2V7h-2v2zm8 12h2v-2h-2v2zm-4-8h2v-2h-2v2z"},"children":[]}]};exports.ic_border_top=ic_border_top;var ic_border_top_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 21h2v-2H7v2zm0-8h2v-2H7v2zm4 0h2v-2h-2v2zm0 8h2v-2h-2v2zm-8-4h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2v-2H3v2zm0-4h2V7H3v2zm8 8h2v-2h-2v2zm8-8h2V7h-2v2zm0 4h2v-2h-2v2zM3 3v2h18V3H3zm16 14h2v-2h-2v2zm-4 4h2v-2h-2v2zM11 9h2V7h-2v2zm8 12h2v-2h-2v2zm-4-8h2v-2h-2v2z"},"children":[]}]};exports.ic_border_top_outline=ic_border_top_outline;var ic_border_top_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 19h2v2h-2zM3 19h2v2H3zm8 0h2v2h-2zm-8-8h2v2H3zm0 4h2v2H3zm4 4h2v2H7zm4-12h2v2h-2zm0 4h2v2h-2zM3 7h2v2H3zm0-4h18v2H3zm8 12h2v2h-2zm4 4h2v2h-2zm-8-8h2v2H7zm8 0h2v2h-2zm4 4h2v2h-2zm0-4h2v2h-2zm0-4h2v2h-2z"},"children":[]}]};exports.ic_border_top_twotone=ic_border_top_twotone;var ic_border_vertical={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 9h2V7H3v2zm0-4h2V3H3v2zm4 16h2v-2H7v2zm0-8h2v-2H7v2zm-4 0h2v-2H3v2zm0 8h2v-2H3v2zm0-4h2v-2H3v2zM7 5h2V3H7v2zm12 12h2v-2h-2v2zm-8 4h2V3h-2v18zm8 0h2v-2h-2v2zm0-8h2v-2h-2v2zm0-10v2h2V3h-2zm0 6h2V7h-2v2zm-4-4h2V3h-2v2zm0 16h2v-2h-2v2zm0-8h2v-2h-2v2z"},"children":[]}]};exports.ic_border_vertical=ic_border_vertical;var ic_border_vertical_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 9h2V7H3v2zm0-4h2V3H3v2zm4 16h2v-2H7v2zm0-8h2v-2H7v2zm-4 0h2v-2H3v2zm0 8h2v-2H3v2zm0-4h2v-2H3v2zM7 5h2V3H7v2zm12 12h2v-2h-2v2zm-8 4h2V3h-2v18zm8 0h2v-2h-2v2zm0-8h2v-2h-2v2zm0-10v2h2V3h-2zm0 6h2V7h-2v2zm-4-4h2V3h-2v2zm0 16h2v-2h-2v2zm0-8h2v-2h-2v2z"},"children":[]}]};exports.ic_border_vertical_outline=ic_border_vertical_outline;var ic_border_vertical_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 3h2v2H7zm0 8h2v2H7zm0 8h2v2H7zm-4 0h2v2H3zM3 3h2v2H3zm0 8h2v2H3zm16-8h2v2h-2zM3 7h2v2H3zm8-4h2v18h-2zM3 15h2v2H3zm12-4h2v2h-2zm4 4h2v2h-2zm0-4h2v2h-2zm0-4h2v2h-2zm0 12h2v2h-2zm-4 0h2v2h-2zm0-16h2v2h-2z"},"children":[]}]};exports.ic_border_vertical_twotone=ic_border_vertical_twotone;var ic_bubble_chart={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"7.2","cy":"14.4","r":"3.2"},"children":[]},{"name":"circle","attribs":{"cx":"14.8","cy":"18","r":"2"},"children":[]},{"name":"circle","attribs":{"cx":"15.2","cy":"8.8","r":"4.8"},"children":[]}]};exports.ic_bubble_chart=ic_bubble_chart;var ic_bubble_chart_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 10c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm8.01-1c-1.65 0-3 1.35-3 3s1.35 3 3 3 3-1.35 3-3-1.35-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM16.5 3C13.47 3 11 5.47 11 8.5s2.47 5.5 5.5 5.5S22 11.53 22 8.5 19.53 3 16.5 3zm0 9c-1.93 0-3.5-1.57-3.5-3.5S14.57 5 16.5 5 20 6.57 20 8.5 18.43 12 16.5 12z"},"children":[]}]};exports.ic_bubble_chart_outline=ic_bubble_chart_outline;var ic_bubble_chart_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16.5 12c1.93 0 3.5-1.57 3.5-3.5S18.43 5 16.5 5 13 6.57 13 8.5s1.57 3.5 3.5 3.5z","opacity":".3"},"children":[]},{"name":"circle","attribs":{"cx":"15.01","cy":"18","opacity":".3","r":"1"},"children":[]},{"name":"circle","attribs":{"cx":"7","cy":"14","opacity":".3","r":"2"},"children":[]},{"name":"path","attribs":{"d":"M7 18c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm11.01 6c0-1.65-1.35-3-3-3s-3 1.35-3 3 1.35 3 3 3 3-1.35 3-3zm-4 0c0-.55.45-1 1-1s1 .45 1 1-.45 1-1 1-1-.45-1-1zm2.49-4c3.03 0 5.5-2.47 5.5-5.5S19.53 3 16.5 3 11 5.47 11 8.5s2.47 5.5 5.5 5.5zm0-9C18.43 5 20 6.57 20 8.5S18.43 12 16.5 12 13 10.43 13 8.5 14.57 5 16.5 5z"},"children":[]}]};exports.ic_bubble_chart_twotone=ic_bubble_chart_twotone;var ic_drag_handle={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M20,9H4v2h16V9z M4,15h16v-2H4V15z"},"children":[{"name":"path","attribs":{"d":"M20,9H4v2h16V9z M4,15h16v-2H4V15z"},"children":[]}]}]}]}]}]}]}]};exports.ic_drag_handle=ic_drag_handle;var ic_drag_handle_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 9H4v2h16V9zM4 15h16v-2H4v2z"},"children":[]}]};exports.ic_drag_handle_outline=ic_drag_handle_outline;var ic_drag_handle_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 9h16v2H4zm0 4h16v2H4z"},"children":[]}]};exports.ic_drag_handle_twotone=ic_drag_handle_twotone;var ic_format_align_center={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 15v2h10v-2H7zm-4 6h18v-2H3v2zm0-8h18v-2H3v2zm4-6v2h10V7H7zM3 3v2h18V3H3z"},"children":[]}]};exports.ic_format_align_center=ic_format_align_center;var ic_format_align_center_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 15v2h10v-2H7zm-4 6h18v-2H3v2zm0-8h18v-2H3v2zm4-6v2h10V7H7zM3 3v2h18V3H3z"},"children":[]}]};exports.ic_format_align_center_outline=ic_format_align_center_outline;var ic_format_align_center_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 3h18v2H3zm4 12h10v2H7zm0-8h10v2H7zm-4 4h18v2H3zm0 8h18v2H3z"},"children":[]}]};exports.ic_format_align_center_twotone=ic_format_align_center_twotone;var ic_format_align_justify={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 21h18v-2H3v2zm0-4h18v-2H3v2zm0-4h18v-2H3v2zm0-4h18V7H3v2zm0-6v2h18V3H3z"},"children":[]}]};exports.ic_format_align_justify=ic_format_align_justify;var ic_format_align_justify_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 21h18v-2H3v2zm0-4h18v-2H3v2zm0-4h18v-2H3v2zm0-4h18V7H3v2zm0-6v2h18V3H3z"},"children":[]}]};exports.ic_format_align_justify_outline=ic_format_align_justify_outline;var ic_format_align_justify_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 3h18v2H3zm0 8h18v2H3zm0 8h18v2H3zm0-4h18v2H3zm0-8h18v2H3z"},"children":[]}]};exports.ic_format_align_justify_twotone=ic_format_align_justify_twotone;var ic_format_align_left={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15 15H3v2h12v-2zm0-8H3v2h12V7zM3 13h18v-2H3v2zm0 8h18v-2H3v2zM3 3v2h18V3H3z"},"children":[]}]};exports.ic_format_align_left=ic_format_align_left;var ic_format_align_left_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15 15H3v2h12v-2zm0-8H3v2h12V7zM3 13h18v-2H3v2zm0 8h18v-2H3v2zM3 3v2h18V3H3z"},"children":[]}]};exports.ic_format_align_left_outline=ic_format_align_left_outline;var ic_format_align_left_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 19h18v2H3zM3 7h12v2H3zm0-4h18v2H3zm0 12h12v2H3zm0-4h18v2H3z"},"children":[]}]};exports.ic_format_align_left_twotone=ic_format_align_left_twotone;var ic_format_align_right={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 21h18v-2H3v2zm6-4h12v-2H9v2zm-6-4h18v-2H3v2zm6-4h12V7H9v2zM3 3v2h18V3H3z"},"children":[]}]};exports.ic_format_align_right=ic_format_align_right;var ic_format_align_right_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 21h18v-2H3v2zm6-4h12v-2H9v2zm-6-4h18v-2H3v2zm6-4h12V7H9v2zM3 3v2h18V3H3z"},"children":[]}]};exports.ic_format_align_right_outline=ic_format_align_right_outline;var ic_format_align_right_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 3h18v2H3zm0 16h18v2H3zm0-8h18v2H3zm6 4h12v2H9zm0-8h12v2H9z"},"children":[]}]};exports.ic_format_align_right_twotone=ic_format_align_right_twotone;var ic_format_bold={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.6 10.79c.97-.67 1.65-1.77 1.65-2.79 0-2.26-1.75-4-4-4H7v14h7.04c2.09 0 3.71-1.7 3.71-3.79 0-1.52-.86-2.82-2.15-3.42zM10 6.5h3c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5h-3v-3zm3.5 9H10v-3h3.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5z"},"children":[]}]};exports.ic_format_bold=ic_format_bold;var ic_format_bold_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.6 10.79c.97-.67 1.65-1.77 1.65-2.79 0-2.26-1.75-4-4-4H7v14h7.04c2.09 0 3.71-1.7 3.71-3.79 0-1.52-.86-2.82-2.15-3.42zM10 6.5h3c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5h-3v-3zm3.5 9H10v-3h3.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5z"},"children":[]}]};exports.ic_format_bold_outline=ic_format_bold_outline;var ic_format_bold_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17.25 8c0-2.26-1.75-4-4-4H7v14h7.04c2.09 0 3.71-1.7 3.71-3.79 0-1.52-.86-2.82-2.15-3.42.97-.67 1.65-1.77 1.65-2.79zM10 6.5h3c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5h-3v-3zm3.5 9H10v-3h3.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5z"},"children":[]}]};exports.ic_format_bold_twotone=ic_format_bold_twotone;var ic_format_clear={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3.27 5L2 6.27l6.97 6.97L6.5 19h3l1.57-3.66L16.73 21 18 19.73 3.55 5.27 3.27 5zM6 5v.18L8.82 8h2.4l-.72 1.68 2.1 2.1L14.21 8H20V5H6z"},"children":[]}]};exports.ic_format_clear=ic_format_clear;var ic_format_clear_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 8V5H6.39l3 3h1.83l-.55 1.28 2.09 2.1L14.21 8zM3.41 4.86L2 6.27l6.97 6.97L6.5 19h3l1.57-3.66L16.73 21l1.41-1.41z"},"children":[]}]};exports.ic_format_clear_outline=ic_format_clear_outline;var ic_format_clear_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 8V5H6.39l3 3h1.83l-.55 1.28 2.09 2.1L14.21 8zM3.41 4.86L2 6.27l6.97 6.97L6.5 19h3l1.57-3.66L16.73 21l1.41-1.41z"},"children":[]}]};exports.ic_format_clear_twotone=ic_format_clear_twotone;var ic_format_color_fill={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M16.56,8.94L7.62,0L6.21,1.41l2.38,2.38L3.44,8.94c-0.59,0.59-0.59,1.54,0,2.12l5.5,5.5C9.23,16.85,9.62,17,10,17 s0.77-0.15,1.06-0.44l5.5-5.5C17.15,10.48,17.15,9.53,16.56,8.94z M5.21,10L10,5.21L14.79,10H5.21z M19,11.5c0,0-2,2.17-2,3.5 c0,1.1,0.9,2,2,2s2-0.9,2-2C21,13.67,19,11.5,19,11.5z M2,20h20v4H2V20z"},"children":[]}]};exports.ic_format_color_fill=ic_format_color_fill;var ic_format_color_fill_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 5.21L5.21 10h9.58z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M19 17c1.1 0 2-.9 2-2 0-1.33-2-3.5-2-3.5s-2 2.17-2 3.5c0 1.1.9 2 2 2zm-10.06-.44c.29.29.68.44 1.06.44s.77-.15 1.06-.44l5.5-5.5c.59-.58.59-1.53 0-2.12L7.62 0 6.21 1.41l2.38 2.38-5.15 5.15c-.59.59-.59 1.54 0 2.12l5.5 5.5zM10 5.21L14.79 10H5.21L10 5.21z"},"children":[]},{"name":"path","attribs":{"d":"M0 20h24v4H0z","fill-opacity":".36"},"children":[]}]};exports.ic_format_color_fill_twotone=ic_format_color_fill_twotone;var ic_format_color_reset={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0zm0 0h24v24H0zm0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 14c0-4-6-10.8-6-10.8s-1.33 1.51-2.73 3.52l8.59 8.59c.09-.42.14-.86.14-1.31zm-.88 3.12L12.5 12.5 5.27 5.27 4 6.55l3.32 3.32C6.55 11.32 6 12.79 6 14c0 3.31 2.69 6 6 6 1.52 0 2.9-.57 3.96-1.5l2.63 2.63 1.27-1.27-2.74-2.74z"},"children":[]}]};exports.ic_format_color_reset=ic_format_color_reset;var ic_format_color_reset_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 6.36c1.53 2 3.08 4.43 3.71 6.24l2.23 2.23c.03-.27.06-.55.06-.83 0-3.98-6-10.8-6-10.8s-1.18 1.35-2.5 3.19l1.44 1.44c.34-.51.7-1 1.06-1.47zM5.41 5.14L4 6.55l3.32 3.32C6.55 11.33 6 12.79 6 14c0 3.31 2.69 6 6 6 1.52 0 2.9-.57 3.95-1.5l2.63 2.63L20 19.72 5.41 5.14zM12 18c-2.21 0-4-1.79-4-4 0-.69.32-1.62.81-2.64l5.72 5.72c-.7.56-1.57.92-2.53.92z"},"children":[]}]};exports.ic_format_color_reset_outline=ic_format_color_reset_outline;var ic_format_color_reset_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10.93 7.83l4.77 4.77c-.62-1.81-2.17-4.24-3.71-6.24-.35.47-.71.96-1.06 1.47zM12 18c.96 0 1.83-.36 2.53-.92l-5.72-5.72C8.32 12.38 8 13.31 8 14c0 2.21 1.79 4 4 4z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 6.36c1.53 2 3.08 4.43 3.71 6.24l2.23 2.23c.03-.27.06-.55.06-.83 0-3.98-6-10.8-6-10.8s-1.18 1.35-2.5 3.19l1.44 1.44c.34-.51.7-1 1.06-1.47zM5.41 5.14L4 6.55l3.32 3.32C6.55 11.33 6 12.79 6 14c0 3.31 2.69 6 6 6 1.52 0 2.9-.57 3.95-1.5l2.63 2.63L20 19.72 5.41 5.14zM12 18c-2.21 0-4-1.79-4-4 0-.69.32-1.62.81-2.64l5.72 5.72c-.7.56-1.57.92-2.53.92z"},"children":[]}]};exports.ic_format_color_reset_twotone=ic_format_color_reset_twotone;var ic_format_color_text={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M2,20h20v4H2V20z M5.49,17h2.42l1.27-3.58h5.65L16.09,17h2.42L13.25,3h-2.5L5.49,17z M9.91,11.39l2.03-5.79h0.12l2.03,5.79 H9.91z"},"children":[]}]};exports.ic_format_color_text=ic_format_color_text;var ic_format_color_text_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M0 20h24v4H0z","fill-opacity":".36"},"children":[]},{"name":"path","attribs":{"d":"M5.5 17h2.25l1.12-3h6.25l1.12 3h2.25L13 3h-2L5.5 17zm8.88-5H9.62L12 5.67 14.38 12z"},"children":[]}]};exports.ic_format_color_text_twotone=ic_format_color_text_twotone;var ic_format_indent_decrease={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11 17h10v-2H11v2zm-8-5l4 4V8l-4 4zm0 9h18v-2H3v2zM3 3v2h18V3H3zm8 6h10V7H11v2zm0 4h10v-2H11v2z"},"children":[]}]};exports.ic_format_indent_decrease=ic_format_indent_decrease;var ic_format_indent_decrease_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11 17h10v-2H11v2zm-8-5l4 4V8l-4 4zm0 9h18v-2H3v2zM3 3v2h18V3H3zm8 6h10V7H11v2zm0 4h10v-2H11v2z"},"children":[]}]};exports.ic_format_indent_decrease_outline=ic_format_indent_decrease_outline;var ic_format_indent_decrease_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 16V8l-4 4zm4-9h10v2H11zm0 4h10v2H11zm0 4h10v2H11zm-8 4h18v2H3zM3 3h18v2H3z"},"children":[]}]};exports.ic_format_indent_decrease_twotone=ic_format_indent_decrease_twotone;var ic_format_indent_increase={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 21h18v-2H3v2zM3 8v8l4-4-4-4zm8 9h10v-2H11v2zM3 3v2h18V3H3zm8 6h10V7H11v2zm0 4h10v-2H11v2z"},"children":[]}]};exports.ic_format_indent_increase=ic_format_indent_increase;var ic_format_indent_increase_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 21h18v-2H3v2zM3 8v8l4-4-4-4zm8 9h10v-2H11v2zM3 3v2h18V3H3zm8 6h10V7H11v2zm0 4h10v-2H11v2z"},"children":[]}]};exports.ic_format_indent_increase_outline=ic_format_indent_increase_outline;var ic_format_indent_increase_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 19h18v2H3zM3 3h18v2H3zm8 4h10v2H11zM3 8v8l4-4zm8 3h10v2H11zm0 4h10v2H11z"},"children":[]}]};exports.ic_format_indent_increase_twotone=ic_format_indent_increase_twotone;var ic_format_italic={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 4v3h2.21l-3.42 8H6v3h8v-3h-2.21l3.42-8H18V4z"},"children":[]}]};exports.ic_format_italic=ic_format_italic;var ic_format_italic_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 4v3h2.21l-3.42 8H6v3h8v-3h-2.21l3.42-8H18V4h-8z"},"children":[]}]};exports.ic_format_italic_outline=ic_format_italic_outline;var ic_format_italic_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6 15v3h8v-3h-2.21l3.42-8H18V4h-8v3h2.21l-3.42 8z"},"children":[]}]};exports.ic_format_italic_twotone=ic_format_italic_twotone;var ic_format_line_spacing={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6 7h2.5L5 3.5 1.5 7H4v10H1.5L5 20.5 8.5 17H6V7zm4-2v2h12V5H10zm0 14h12v-2H10v2zm0-6h12v-2H10v2z"},"children":[]}]};exports.ic_format_line_spacing=ic_format_line_spacing;var ic_format_line_spacing_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6 7h2.5L5 3.5 1.5 7H4v10H1.5L5 20.5 8.5 17H6V7zm4-2v2h12V5H10zm0 14h12v-2H10v2zm0-6h12v-2H10v2z"},"children":[]}]};exports.ic_format_line_spacing_outline=ic_format_line_spacing_outline;var ic_format_line_spacing_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 5h12v2H10zm0 12h12v2H10zm-8.5 0L5 20.5 8.5 17H6V7h2.5L5 3.5 1.5 7H4v10zm8.5-6h12v2H10z"},"children":[]}]};exports.ic_format_line_spacing_twotone=ic_format_line_spacing_twotone;var ic_format_list_bulleted={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 10.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0-6c-.83 0-1.5.67-1.5 1.5S3.17 7.5 4 7.5 5.5 6.83 5.5 6 4.83 4.5 4 4.5zm0 12c-.83 0-1.5.68-1.5 1.5s.68 1.5 1.5 1.5 1.5-.68 1.5-1.5-.67-1.5-1.5-1.5zM7 19h14v-2H7v2zm0-6h14v-2H7v2zm0-8v2h14V5H7z"},"children":[]}]};exports.ic_format_list_bulleted=ic_format_list_bulleted;var ic_format_list_bulleted_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 10.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0-6c-.83 0-1.5.67-1.5 1.5S3.17 7.5 4 7.5 5.5 6.83 5.5 6 4.83 4.5 4 4.5zm0 12c-.83 0-1.5.68-1.5 1.5s.68 1.5 1.5 1.5 1.5-.68 1.5-1.5-.67-1.5-1.5-1.5zM7 19h14v-2H7v2zm0-6h14v-2H7v2zm0-8v2h14V5H7z"},"children":[]}]};exports.ic_format_list_bulleted_outline=ic_format_list_bulleted_outline;var ic_format_list_bulleted_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 5h14v2H7z"},"children":[]},{"name":"circle","attribs":{"cx":"4","cy":"6","r":"1.5"},"children":[]},{"name":"path","attribs":{"d":"M7 11h14v2H7zm0 6h14v2H7zm-3 2.5c.82 0 1.5-.68 1.5-1.5s-.67-1.5-1.5-1.5-1.5.68-1.5 1.5.68 1.5 1.5 1.5z"},"children":[]},{"name":"circle","attribs":{"cx":"4","cy":"12","r":"1.5"},"children":[]}]};exports.ic_format_list_bulleted_twotone=ic_format_list_bulleted_twotone;var ic_format_list_numbered={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M2 17h2v.5H3v1h1v.5H2v1h3v-4H2v1zm1-9h1V4H2v1h1v3zm-1 3h1.8L2 13.1v.9h3v-1H3.2L5 10.9V10H2v1zm5-6v2h14V5H7zm0 14h14v-2H7v2zm0-6h14v-2H7v2z"},"children":[]}]};exports.ic_format_list_numbered=ic_format_list_numbered;var ic_format_list_numbered_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M2 17h2v.5H3v1h1v.5H2v1h3v-4H2v1zm1-9h1V4H2v1h1v3zm-1 3h1.8L2 13.1v.9h3v-1H3.2L5 10.9V10H2v1zm5-6v2h14V5H7zm0 14h14v-2H7v2zm0-6h14v-2H7v2z"},"children":[]}]};exports.ic_format_list_numbered_outline=ic_format_list_numbered_outline;var ic_format_list_numbered_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 13H3.2L5 10.9V10H2v1h1.8L2 13.1v.9h3zm2-8h14v2H7zM5 16H2v1h2v.5H3v1h1v.5H2v1h3zm2 1h14v2H7zM3 8h1V4H2v1h1zm4 3h14v2H7z"},"children":[]}]};exports.ic_format_list_numbered_twotone=ic_format_list_numbered_twotone;var ic_format_list_numbered_rtl={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 17h2v.5h-1v1h1v.5h-2v1h3v-4h-3zm1-9h1V4h-2v1h1zm-1 3h1.8L18 13.1v.9h3v-1h-1.8l1.8-2.1V10h-3zM2 5h14v2H2zm0 12h14v2H2zm0-6h14v2H2z"},"children":[]}]};exports.ic_format_list_numbered_rtl=ic_format_list_numbered_rtl;var ic_format_list_numbered_rtl_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 17h2v.5h-1v1h1v.5h-2v1h3v-4h-3v1zm1-9h1V4h-2v1h1v3zm-1 3h1.8L18 13.1v.9h3v-1h-1.8l1.8-2.1V10h-3v1zM2 5h14v2H2V5zm0 12h14v2H2v-2zm0-6h14v2H2v-2z"},"children":[]}]};exports.ic_format_list_numbered_rtl_outline=ic_format_list_numbered_rtl_outline;var ic_format_list_numbered_rtl_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M2 11h14v2H2zm16 6h2v.5h-1v1h1v.5h-2v1h3v-4h-3zm0-6h1.8L18 13.1v.9h3v-1h-1.8l1.8-2.1V10h-3zm2-3V4h-2v1h1v3zM2 17h14v2H2zM2 5h14v2H2z"},"children":[]}]};exports.ic_format_list_numbered_rtl_twotone=ic_format_list_numbered_rtl_twotone;var ic_format_paint={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 4V3c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V6h1v4H9v11c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-9h8V4h-3z"},"children":[]}]};exports.ic_format_paint=ic_format_paint;var ic_format_paint_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 4V3c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V6h1v4H9v11c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-9h8V4h-3zm-2 2H6V4h10v2z"},"children":[]}]};exports.ic_format_paint_outline=ic_format_paint_outline;var ic_format_paint_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6 4h10v2H6z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M17 2H5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V6h1v4H9v11c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-9h8V4h-3V3c0-.55-.45-1-1-1zm-1 4H6V4h10v2z"},"children":[]}]};exports.ic_format_paint_twotone=ic_format_paint_twotone;var ic_format_quote={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6 17h3l2-4V7H5v6h3zm8 0h3l2-4V7h-6v6h3z"},"children":[]}]};exports.ic_format_quote=ic_format_quote;var ic_format_quote_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18.62 18h-5.24l2-4H13V6h8v7.24L18.62 18zm-2-2h.76L19 12.76V8h-4v4h3.62l-2 4zm-8 2H3.38l2-4H3V6h8v7.24L8.62 18zm-2-2h.76L9 12.76V8H5v4h3.62l-2 4z"},"children":[]}]};exports.ic_format_quote_outline=ic_format_quote_outline;var ic_format_quote_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16.62 16h.76L19 12.76V8h-4v4h3.62zm-10 0h.76L9 12.76V8H5v4h3.62z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M18.62 18L21 13.24V6h-8v8h2.38l-2 4h5.24zM15 12V8h4v4.76L17.38 16h-.76l2-4H15zM3.38 18h5.24L11 13.24V6H3v8h2.38l-2 4zM5 12V8h4v4.76L7.38 16h-.76l2-4H5z"},"children":[]}]};exports.ic_format_quote_twotone=ic_format_quote_twotone;var ic_format_shapes={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M23 7V1h-6v2H7V1H1v6h2v10H1v6h6v-2h10v2h6v-6h-2V7h2zM3 3h2v2H3V3zm2 18H3v-2h2v2zm12-2H7v-2H5V7h2V5h10v2h2v10h-2v2zm4 2h-2v-2h2v2zM19 5V3h2v2h-2zm-5.27 9h-3.49l-.73 2H7.89l3.4-9h1.4l3.41 9h-1.63l-.74-2zm-3.04-1.26h2.61L12 8.91l-1.31 3.83z"},"children":[]}]};exports.ic_format_shapes=ic_format_shapes;var ic_format_shapes_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M23 7V1h-6v2H7V1H1v6h2v10H1v6h6v-2h10v2h6v-6h-2V7h2zM3 3h2v2H3V3zm2 18H3v-2h2v2zm12-2H7v-2H5V7h2V5h10v2h2v10h-2v2zm4 2h-2v-2h2v2zM19 5V3h2v2h-2zm-5.27 9h-3.49l-.73 2H7.89l3.4-9h1.4l3.41 9h-1.63l-.74-2zm-3.04-1.26h2.61L12 8.91l-1.31 3.83z"},"children":[]}]};exports.ic_format_shapes_outline=ic_format_shapes_outline;var ic_format_shapes_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 3h2v2H3zm16 16h2v2h-2zm0-16h2v2h-2zM3 19h2v2H3z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M11.29 7l-3.4 9h1.62l.73-2h3.49l.74 2h1.63l-3.41-9h-1.4zm-.6 5.74L12 8.91l1.3 3.83h-2.61zM17 3H7V1H1v6h2v10H1v6h6v-2h10v2h6v-6h-2V7h2V1h-6v2zM3 3h2v2H3V3zm2 18H3v-2h2v2zm16 0h-2v-2h2v2zM19 3h2v2h-2V3zm0 14h-2v2H7v-2H5V7h2V5h10v2h2v10z"},"children":[]}]};exports.ic_format_shapes_twotone=ic_format_shapes_twotone;var ic_format_size={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9 4v3h5v12h3V7h5V4H9zm-6 8h3v7h3v-7h3V9H3v3z"},"children":[]}]};exports.ic_format_size=ic_format_size;var ic_format_size_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9 4v3h5v12h3V7h5V4H9zm-6 8h3v7h3v-7h3V9H3v3z"},"children":[]}]};exports.ic_format_size_outline=ic_format_size_outline;var ic_format_size_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 12h3v7h3v-7h3V9H3zm6-5h5v12h3V7h5V4H9z"},"children":[]}]};exports.ic_format_size_twotone=ic_format_size_twotone;var ic_format_strikethrough={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 19h4v-3h-4v3zM5 4v3h5v3h4V7h5V4H5zM3 14h18v-2H3v2z"},"children":[]}]};exports.ic_format_strikethrough=ic_format_strikethrough;var ic_format_strikethrough_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 19h4v-3h-4v3zM5 4v3h5v3h4V7h5V4H5zM3 14h18v-2H3v2z"},"children":[]}]};exports.ic_format_strikethrough_outline=ic_format_strikethrough_outline;var ic_format_strikethrough_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 12h18v2H3zm11-2V7h5V4H5v3h5v3zm-4 6h4v3h-4z"},"children":[]}]};exports.ic_format_strikethrough_twotone=ic_format_strikethrough_twotone;var ic_format_textdirection_l_to_r={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9 10v5h2V4h2v11h2V4h2V2H9C6.79 2 5 3.79 5 6s1.79 4 4 4zm12 8l-4-4v3H5v2h12v3l4-4z"},"children":[]}]};exports.ic_format_textdirection_l_to_r=ic_format_textdirection_l_to_r;var ic_format_textdirection_l_to_r_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9 4v4c-1.1 0-2-.9-2-2s.9-2 2-2m8-2H9C6.79 2 5 3.79 5 6s1.79 4 4 4v5h2V4h2v11h2V4h2V2zm0 12v3H5v2h12v3l4-4-4-4z"},"children":[]}]};exports.ic_format_textdirection_l_to_r_outline=ic_format_textdirection_l_to_r_outline;var ic_format_textdirection_l_to_r_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9 8V4c-1.1 0-2 .9-2 2s.9 2 2 2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M9 10v5h2V4h2v11h2V4h2V2H9C6.79 2 5 3.79 5 6s1.79 4 4 4zm0-6v4c-1.1 0-2-.9-2-2s.9-2 2-2zm12 14l-4-4v3H5v2h12v3z"},"children":[]}]};exports.ic_format_textdirection_l_to_r_twotone=ic_format_textdirection_l_to_r_twotone;var ic_format_textdirection_r_to_l={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 10v5h2V4h2v11h2V4h2V2h-8C7.79 2 6 3.79 6 6s1.79 4 4 4zm-2 7v-3l-4 4 4 4v-3h12v-2H8z"},"children":[]}]};exports.ic_format_textdirection_r_to_l=ic_format_textdirection_r_to_l;var ic_format_textdirection_r_to_l_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 4v4c-1.1 0-2-.9-2-2s.9-2 2-2m8-2h-8C7.79 2 6 3.79 6 6s1.79 4 4 4v5h2V4h2v11h2V4h2V2zM8 14l-4 4 4 4v-3h12v-2H8v-3z"},"children":[]}]};exports.ic_format_textdirection_r_to_l_outline=ic_format_textdirection_r_to_l_outline;var ic_format_textdirection_r_to_l_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8 6c0 1.1.9 2 2 2V4c-1.1 0-2 .9-2 2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M6 6c0 2.21 1.79 4 4 4v5h2V4h2v11h2V4h2V2h-8C7.79 2 6 3.79 6 6zm4 2c-1.1 0-2-.9-2-2s.9-2 2-2v4zM4 18l4 4v-3h12v-2H8v-3z"},"children":[]}]};exports.ic_format_textdirection_r_to_l_twotone=ic_format_textdirection_r_to_l_twotone;var ic_format_underlined={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 17c3.31 0 6-2.69 6-6V3h-2.5v8c0 1.93-1.57 3.5-3.5 3.5S8.5 12.93 8.5 11V3H6v8c0 3.31 2.69 6 6 6zm-7 2v2h14v-2H5z"},"children":[]}]};exports.ic_format_underlined=ic_format_underlined;var ic_format_underlined_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 17c3.31 0 6-2.69 6-6V3h-2.5v8c0 1.93-1.57 3.5-3.5 3.5S8.5 12.93 8.5 11V3H6v8c0 3.31 2.69 6 6 6zm-7 2v2h14v-2H5z"},"children":[]}]};exports.ic_format_underlined_outline=ic_format_underlined_outline;var ic_format_underlined_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 19h14v2H5zM6 3v8c0 3.31 2.69 6 6 6s6-2.69 6-6V3h-2.5v8c0 1.93-1.57 3.5-3.5 3.5S8.5 12.93 8.5 11V3H6z"},"children":[]}]};exports.ic_format_underlined_twotone=ic_format_underlined_twotone;var ic_functions={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 4H6v2l6.5 6L6 18v2h12v-3h-7l5-5-5-5h7z"},"children":[]}]};exports.ic_functions=ic_functions;var ic_functions_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 4H6v2l6.5 6L6 18v2h12v-3h-7l5-5-5-5h7V4z"},"children":[]}]};exports.ic_functions_outline=ic_functions_outline;var ic_functions_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 17h-7l5-5-5-5h7V4H6v2l6.5 6L6 18v2h12z"},"children":[]}]};exports.ic_functions_twotone=ic_functions_twotone;var ic_height={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"polygon","attribs":{"points":"13,6.99 16,6.99 12,3 8,6.99 11,6.99 11,17.01 8,17.01 12,21 16,17.01 13,17.01"},"children":[{"name":"polygon","attribs":{"points":"13,6.99 16,6.99 12,3 8,6.99 11,6.99 11,17.01 8,17.01 12,21 16,17.01 13,17.01"},"children":[]}]}]}]};exports.ic_height=ic_height;var ic_height_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"polygon","attribs":{"points":"13,6.99 16,6.99 12,3 8,6.99 11,6.99 11,17.01 8,17.01 12,21 16,17.01 13,17.01"},"children":[{"name":"polygon","attribs":{"points":"13,6.99 16,6.99 12,3 8,6.99 11,6.99 11,17.01 8,17.01 12,21 16,17.01 13,17.01"},"children":[]}]}]}]};exports.ic_height_outline=ic_height_outline;var ic_height_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"polygon","attribs":{"points":"13,6.99 16,6.99 12,3 8,6.99 11,6.99 11,17.01 8,17.01 12,21 16,17.01 13,17.01"},"children":[{"name":"polygon","attribs":{"points":"13,6.99 16,6.99 12,3 8,6.99 11,6.99 11,17.01 8,17.01 12,21 16,17.01 13,17.01"},"children":[]}]}]}]};exports.ic_height_twotone=ic_height_twotone;var ic_highlight={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M6,14l3,3v5h6v-5l3-3V9H6V14z M11,2h2v3h-2V2z M3.5,5.88l1.41-1.41l2.12,2.12L5.62,8L3.5,5.88z M16.96,6.59l2.12-2.12 l1.41,1.41L18.38,8L16.96,6.59z"},"children":[{"name":"path","attribs":{"d":"M6,14l3,3v5h6v-5l3-3V9H6V14z M11,2h2v3h-2V2z M3.5,5.88l1.41-1.41l2.12,2.12L5.62,8L3.5,5.88z M16.96,6.59l2.12-2.12 l1.41,1.41L18.38,8L16.96,6.59z"},"children":[]}]}]}]}]}]}]}]};exports.ic_highlight=ic_highlight;var ic_highlight_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6 14l3 3v5h6v-5l3-3V9H6v5zm2-3h8v2.17l-3 3V20h-2v-3.83l-3-3V11zm3-9h2v3h-2zM3.502 5.874L4.916 4.46l2.122 2.12-1.414 1.415zm13.458.708l2.123-2.12 1.413 1.416-2.123 2.12z"},"children":[]}]};exports.ic_highlight_outline=ic_highlight_outline;var ic_highlight_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11 20h2v-3.83l3-3V11H8v2.17l3 3z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M6 14l3 3v5h6v-5l3-3V9H6v5zm2-3h8v2.17l-3 3V20h-2v-3.83l-3-3V11zm3-9h2v3h-2zM4.916 4.464l2.12 2.122L5.62 8 3.5 5.877zM18.372 8l-1.414-1.414 2.12-2.12 1.415 1.413z"},"children":[]}]};exports.ic_highlight_twotone=ic_highlight_twotone;var ic_horizontal_rule={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","fill-rule":"evenodd","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","fill-rule":"evenodd","height":"24","width":"24"},"children":[]}]},{"name":"rect","attribs":{"fill-rule":"evenodd","height":"2","width":"16","x":"4","y":"11"},"children":[{"name":"rect","attribs":{"fill-rule":"evenodd","height":"2","width":"16","x":"4","y":"11"},"children":[]}]}]}]};exports.ic_horizontal_rule=ic_horizontal_rule;var ic_horizontal_rule_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","fill-rule":"evenodd","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","fill-rule":"evenodd","height":"24","width":"24"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill-rule":"evenodd","height":"2","width":"16","x":"4","y":"11"},"children":[{"name":"rect","attribs":{"fill-rule":"evenodd","height":"2","width":"16","x":"4","y":"11"},"children":[]}]}]}]}]}]};exports.ic_horizontal_rule_outline=ic_horizontal_rule_outline;var ic_horizontal_rule_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","fill-rule":"evenodd","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","fill-rule":"evenodd","height":"24","width":"24"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill-rule":"evenodd","height":"2","width":"16","x":"4","y":"11"},"children":[{"name":"rect","attribs":{"fill-rule":"evenodd","height":"2","width":"16","x":"4","y":"11"},"children":[]}]}]}]}]}]};exports.ic_horizontal_rule_twotone=ic_horizontal_rule_twotone;var ic_insert_chart={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z"},"children":[]}]};exports.ic_insert_chart=ic_insert_chart;var ic_insert_chart_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM7 10h2v7H7zm4-3h2v10h-2zm4 6h2v4h-2z"},"children":[]}]};exports.ic_insert_chart_outline=ic_insert_chart_outline;var ic_insert_chart_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 5H5v14h14V5zM9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M3 5v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2zm2 0h14v14H5V5zm2 5h2v7H7zm4-3h2v10h-2zm4 6h2v4h-2z"},"children":[]}]};exports.ic_insert_chart_twotone=ic_insert_chart_twotone;var ic_insert_chart_outlined={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4zm2.5 2.1h-15V5h15v14.1zm0-16.1h-15c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h15c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"},"children":[]}]};exports.ic_insert_chart_outlined=ic_insert_chart_outlined;var ic_insert_chart_outlined_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4zm2 2H5V5h14v14zm0-16H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"},"children":[]}]};exports.ic_insert_chart_outlined_outline=ic_insert_chart_outlined_outline;var ic_insert_chart_outlined_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4zm2 2H5V5h14v14zm0-16H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"},"children":[]}]};exports.ic_insert_chart_outlined_twotone=ic_insert_chart_outlined_twotone;var ic_insert_comment={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4V4c0-1.1-.9-2-2-2zm-2 12H6v-2h12v2zm0-3H6V9h12v2zm0-3H6V6h12v2z"},"children":[]}]};exports.ic_insert_comment=ic_insert_comment;var ic_insert_comment_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 4v13.17L18.83 16H4V4h16m0-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4V4c0-1.1-.9-2-2-2zm-2 10H6v2h12v-2zm0-3H6v2h12V9zm0-3H6v2h12V6z"},"children":[]}]};exports.ic_insert_comment_outline=ic_insert_comment_outline;var ic_insert_comment_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 16h14.83L20 17.17V4H4v12zM6 6h12v2H6V6zm0 3h12v2H6V9zm0 3h12v2H6v-2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4V4c0-1.1-.9-2-2-2zm0 2v13.17L18.83 16H4V4h16zM6 12h12v2H6zm0-3h12v2H6zm0-3h12v2H6z"},"children":[]}]};exports.ic_insert_comment_twotone=ic_insert_comment_twotone;var ic_insert_drive_file={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6 2c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6H6zm7 7V3.5L18.5 9H13z"},"children":[]}]};exports.ic_insert_drive_file=ic_insert_drive_file;var ic_insert_drive_file_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zM6 20V4h7v5h5v11H6z"},"children":[]}]};exports.ic_insert_drive_file_outline=ic_insert_drive_file_outline;var ic_insert_drive_file_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13 4H6v16h12V9h-5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 8l-6-6H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8zm-2 12H6V4h7v5h5v11z"},"children":[]}]};exports.ic_insert_drive_file_twotone=ic_insert_drive_file_twotone;var ic_insert_emoticon={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 6.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z"},"children":[]}]};exports.ic_insert_emoticon=ic_insert_emoticon;var ic_insert_emoticon_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 6.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z"},"children":[]}]};exports.ic_insert_emoticon_outline=ic_insert_emoticon_outline;var ic_insert_emoticon_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm3.5 4c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-7 0c.83 0 1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5 7.67 8 8.5 8zm3.5 9.5c-2.33 0-4.31-1.46-5.11-3.5h10.22c-.8 2.04-2.78 3.5-5.11 3.5z","opacity":".3"},"children":[]},{"name":"circle","attribs":{"cx":"15.5","cy":"9.5","r":"1.5"},"children":[]},{"name":"path","attribs":{"d":"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"},"children":[]},{"name":"circle","attribs":{"cx":"8.5","cy":"9.5","r":"1.5"},"children":[]},{"name":"path","attribs":{"d":"M12 17.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z"},"children":[]}]};exports.ic_insert_emoticon_twotone=ic_insert_emoticon_twotone;var ic_insert_invitation={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 12h-5v5h5v-5zM16 1v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2h-1V1h-2zm3 18H5V8h14v11z"},"children":[]}]};exports.ic_insert_invitation=ic_insert_invitation;var ic_insert_invitation_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V9h14v10zm0-12H5V5h14v2zm-2 5h-5v5h5v-5z"},"children":[]}]};exports.ic_insert_invitation_outline=ic_insert_invitation_outline;var ic_insert_invitation_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 5H5v2h14z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M5 21h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2zM5 7V5h14v2H5zm0 2h14v10H5V9zm7 3h5v5h-5z"},"children":[]}]};exports.ic_insert_invitation_twotone=ic_insert_invitation_twotone;var ic_insert_link={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z"},"children":[]}]};exports.ic_insert_link=ic_insert_link;var ic_insert_link_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z"},"children":[]}]};exports.ic_insert_link_outline=ic_insert_link_outline;var ic_insert_link_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z"},"children":[]}]};exports.ic_insert_link_twotone=ic_insert_link_twotone;var ic_insert_photo={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 19V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zM8.5 13.5l2.5 3.01L14.5 12l4.5 6H5l3.5-4.5z"},"children":[]}]};exports.ic_insert_photo=ic_insert_photo;var ic_insert_photo_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4.86 8.86l-3 3.87L9 13.14 6 17h12l-3.86-5.14z"},"children":[]}]};exports.ic_insert_photo_outline=ic_insert_photo_outline;var ic_insert_photo_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 19h14V5H5v14zm4-5.86l2.14 2.58 3-3.87L18 17H6l3-3.86z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M3 5v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2zm16 14H5V5h14v14zm-4.86-7.14l-3 3.86L9 13.14 6 17h12z"},"children":[]}]};exports.ic_insert_photo_twotone=ic_insert_photo_twotone;var ic_linear_scale={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M19.5,9.5c-1.03,0-1.9,0.62-2.29,1.5h-2.92C13.9,10.12,13.03,9.5,12,9.5s-1.9,0.62-2.29,1.5H6.79 C6.4,10.12,5.53,9.5,4.5,9.5C3.12,9.5,2,10.62,2,12s1.12,2.5,2.5,2.5c1.03,0,1.9-0.62,2.29-1.5h2.92c0.39,0.88,1.26,1.5,2.29,1.5 s1.9-0.62,2.29-1.5h2.92c0.39,0.88,1.26,1.5,2.29,1.5c1.38,0,2.5-1.12,2.5-2.5S20.88,9.5,19.5,9.5z"},"children":[{"name":"path","attribs":{"d":"M19.5,9.5c-1.03,0-1.9,0.62-2.29,1.5h-2.92C13.9,10.12,13.03,9.5,12,9.5s-1.9,0.62-2.29,1.5H6.79 C6.4,10.12,5.53,9.5,4.5,9.5C3.12,9.5,2,10.62,2,12s1.12,2.5,2.5,2.5c1.03,0,1.9-0.62,2.29-1.5h2.92c0.39,0.88,1.26,1.5,2.29,1.5 s1.9-0.62,2.29-1.5h2.92c0.39,0.88,1.26,1.5,2.29,1.5c1.38,0,2.5-1.12,2.5-2.5S20.88,9.5,19.5,9.5z"},"children":[]}]}]}]}]}]}]}]};exports.ic_linear_scale=ic_linear_scale;var ic_linear_scale_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19.5 9.5c-1.03 0-1.9.62-2.29 1.5h-2.92c-.39-.88-1.26-1.5-2.29-1.5s-1.9.62-2.29 1.5H6.79c-.39-.88-1.26-1.5-2.29-1.5C3.12 9.5 2 10.62 2 12s1.12 2.5 2.5 2.5c1.03 0 1.9-.62 2.29-1.5h2.92c.39.88 1.26 1.5 2.29 1.5s1.9-.62 2.29-1.5h2.92c.39.88 1.26 1.5 2.29 1.5 1.38 0 2.5-1.12 2.5-2.5s-1.12-2.5-2.5-2.5z"},"children":[]}]};exports.ic_linear_scale_outline=ic_linear_scale_outline;var ic_linear_scale_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19.5 9.5c-1.03 0-1.9.62-2.29 1.5h-2.92c-.39-.88-1.26-1.5-2.29-1.5s-1.9.62-2.29 1.5H6.79c-.39-.88-1.26-1.5-2.29-1.5C3.12 9.5 2 10.62 2 12s1.12 2.5 2.5 2.5c1.03 0 1.9-.62 2.29-1.5h2.92c.39.88 1.26 1.5 2.29 1.5s1.9-.62 2.29-1.5h2.92c.39.88 1.26 1.5 2.29 1.5 1.38 0 2.5-1.12 2.5-2.5s-1.12-2.5-2.5-2.5z"},"children":[]}]};exports.ic_linear_scale_twotone=ic_linear_scale_twotone;var ic_margin={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 3v18h18V3H3zm16 16H5V5h14v14zM11 7h2v2h-2zM7 7h2v2H7zm8 0h2v2h-2zm-8 4h2v2H7zm4 0h2v2h-2zm4 0h2v2h-2z"},"children":[]}]};exports.ic_margin=ic_margin;var ic_merge_type={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 20.41L18.41 19 15 15.59 13.59 17 17 20.41zM7.5 8H11v5.59L5.59 19 7 20.41l6-6V8h3.5L12 3.5 7.5 8z"},"children":[]}]};exports.ic_merge_type=ic_merge_type;var ic_merge_type_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 20.41L18.41 19 15 15.59 13.59 17 17 20.41zM7.5 8H11v5.59L5.59 19 7 20.41l6-6V8h3.5L12 3.5 7.5 8z"},"children":[]}]};exports.ic_merge_type_outline=ic_merge_type_outline;var ic_merge_type_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5.59 19L7 20.41l6-6V8h3.5L12 3.5 7.5 8H11v5.59zm11.407 1.41l-3.408-3.407 1.4-1.407 3.41 3.408z"},"children":[]}]};exports.ic_merge_type_twotone=ic_merge_type_twotone;var ic_mode_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14.06 9.02l.92.92L5.92 19H5v-.92l9.06-9.06M17.66 3c-.25 0-.51.1-.7.29l-1.83 1.83 3.75 3.75 1.83-1.83c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.2-.2-.45-.29-.71-.29zm-3.6 3.19L3 17.25V21h3.75L17.81 9.94l-3.75-3.75z"},"children":[]}]};exports.ic_mode_outline=ic_mode_outline;var ic_mode_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14.06 9.02L5 18.08V19h.92l9.06-9.06z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M18.37 3.29c-.2-.2-.45-.29-.71-.29s-.51.1-.7.29l-1.83 1.83 3.75 3.75 1.83-1.83c.39-.39.39-1.02 0-1.41l-2.34-2.34zm-.56 6.65l-3.75-3.75L3 17.25V21h3.75L17.81 9.94zM5 19v-.92l9.06-9.06.92.92L5.92 19H5z"},"children":[]}]};exports.ic_mode_twotone=ic_mode_twotone;var ic_mode_comment={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21.99 4c0-1.1-.89-2-1.99-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4-.01-18z"},"children":[]}]};exports.ic_mode_comment=ic_mode_comment;var ic_mode_comment_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 17.17L18.83 16H4V4h16v13.17zM20 2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4V4c0-1.1-.9-2-2-2z"},"children":[]}]};exports.ic_mode_comment_outline=ic_mode_comment_outline;var ic_mode_comment_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4V4c0-1.1-.9-2-2-2zm0 15.17L18.83 16H4V4h16v13.17z"},"children":[]},{"name":"path","attribs":{"d":"M4 4v12h14.83L20 17.17V4z","opacity":".3"},"children":[]}]};exports.ic_mode_comment_twotone=ic_mode_comment_twotone;var ic_mode_edit={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z"},"children":[]}]};exports.ic_mode_edit=ic_mode_edit;var ic_monetization_on={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1.41 16.09V20h-2.67v-1.93c-1.71-.36-3.16-1.46-3.27-3.4h1.96c.1 1.05.82 1.87 2.65 1.87 1.96 0 2.4-.98 2.4-1.59 0-.83-.44-1.61-2.67-2.14-2.48-.6-4.18-1.62-4.18-3.67 0-1.72 1.39-2.84 3.11-3.21V4h2.67v1.95c1.86.45 2.79 1.86 2.85 3.39H14.3c-.05-1.11-.64-1.87-2.22-1.87-1.5 0-2.4.68-2.4 1.64 0 .84.65 1.39 2.67 1.91s4.18 1.39 4.18 3.91c-.01 1.83-1.38 2.83-3.12 3.16z"},"children":[]}]};exports.ic_monetization_on=ic_monetization_on;var ic_monetization_on_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm.31-8.86c-1.77-.45-2.34-.94-2.34-1.67 0-.84.79-1.43 2.1-1.43 1.38 0 1.9.66 1.94 1.64h1.71c-.05-1.34-.87-2.57-2.49-2.97V5H10.9v1.69c-1.51.32-2.72 1.3-2.72 2.81 0 1.79 1.49 2.69 3.66 3.21 1.95.46 2.34 1.15 2.34 1.87 0 .53-.39 1.39-2.1 1.39-1.6 0-2.23-.72-2.32-1.64H8.04c.1 1.7 1.36 2.66 2.86 2.97V19h2.34v-1.67c1.52-.29 2.72-1.16 2.73-2.77-.01-2.2-1.9-2.96-3.66-3.42z"},"children":[]}]};exports.ic_monetization_on_outline=ic_monetization_on_outline;var ic_monetization_on_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm1.23 13.33V19H10.9v-1.69c-1.5-.31-2.77-1.28-2.86-2.97h1.71c.09.92.72 1.64 2.32 1.64 1.71 0 2.1-.86 2.1-1.39 0-.73-.39-1.41-2.34-1.87-2.17-.53-3.66-1.42-3.66-3.21 0-1.51 1.22-2.48 2.72-2.81V5h2.34v1.71c1.63.39 2.44 1.63 2.49 2.97h-1.71c-.04-.97-.56-1.64-1.94-1.64-1.31 0-2.1.59-2.1 1.43 0 .73.57 1.22 2.34 1.67 1.77.46 3.66 1.22 3.66 3.42-.01 1.6-1.21 2.48-2.74 2.77z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm.31-8.86c-1.77-.45-2.34-.94-2.34-1.67 0-.84.79-1.43 2.1-1.43 1.38 0 1.9.66 1.94 1.64h1.71c-.05-1.34-.87-2.57-2.49-2.97V5H10.9v1.69c-1.51.32-2.72 1.3-2.72 2.81 0 1.79 1.49 2.69 3.66 3.21 1.95.46 2.34 1.15 2.34 1.87 0 .53-.39 1.39-2.1 1.39-1.6 0-2.23-.72-2.32-1.64H8.04c.1 1.7 1.36 2.66 2.86 2.97V19h2.34v-1.67c1.52-.29 2.72-1.16 2.73-2.77-.01-2.2-1.9-2.96-3.66-3.42z"},"children":[]}]};exports.ic_monetization_on_twotone=ic_monetization_on_twotone;var ic_money_off={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12.5 6.9c1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-.53.12-1.03.3-1.48.54l1.47 1.47c.41-.17.91-.27 1.51-.27zM5.33 4.06L4.06 5.33 7.5 8.77c0 2.08 1.56 3.21 3.91 3.91l3.51 3.51c-.34.48-1.05.91-2.42.91-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c.96-.18 1.82-.55 2.45-1.12l2.22 2.22 1.27-1.27L5.33 4.06z"},"children":[]}]};exports.ic_money_off=ic_money_off;var ic_money_off_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12.5 6.9c1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-.39.08-.75.21-1.1.36l1.51 1.51c.32-.08.69-.13 1.09-.13zM5.47 3.92L4.06 5.33 7.5 8.77c0 2.08 1.56 3.22 3.91 3.91l3.51 3.51c-.34.49-1.05.91-2.42.91-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c.96-.18 1.83-.55 2.46-1.12l2.22 2.22 1.41-1.41L5.47 3.92z"},"children":[]}]};exports.ic_money_off_outline=ic_money_off_outline;var ic_money_off_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12.5 6.9c1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-.39.08-.75.21-1.1.36l1.51 1.51c.32-.08.69-.13 1.09-.13zM5.47 3.92L4.06 5.33 7.5 8.77c0 2.08 1.56 3.22 3.91 3.91l3.51 3.51c-.34.49-1.05.91-2.42.91-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c.96-.18 1.83-.55 2.46-1.12l2.22 2.22 1.41-1.41L5.47 3.92z"},"children":[]}]};exports.ic_money_off_twotone=ic_money_off_twotone;var ic_money_off_csred_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12.5 6.9c1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-.39.08-.75.21-1.1.36l1.51 1.51c.32-.08.69-.13 1.09-.13zM5.47 3.92L4.06 5.33 7.5 8.77c0 2.08 1.56 3.22 3.91 3.91l3.51 3.51c-.34.49-1.05.91-2.42.91-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c.96-.18 1.83-.55 2.46-1.12l2.22 2.22 1.41-1.41L5.47 3.92z"},"children":[]}]};exports.ic_money_off_csred_outline=ic_money_off_csred_outline;var ic_money_off_csred_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12.5 6.9c1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-.39.08-.75.21-1.1.36l1.51 1.51c.32-.08.69-.13 1.09-.13zM5.47 3.92L4.06 5.33 7.5 8.77c0 2.08 1.56 3.22 3.91 3.91l3.51 3.51c-.34.49-1.05.91-2.42.91-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c.96-.18 1.83-.55 2.46-1.12l2.22 2.22 1.41-1.41L5.47 3.92z"},"children":[]}]};exports.ic_money_off_csred_twotone=ic_money_off_csred_twotone;var ic_multiline_chart={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 6.92l-1.41-1.41-2.85 3.21C15.68 6.4 12.83 5 9.61 5 6.72 5 4.07 6.16 2 8l1.42 1.42C5.12 7.93 7.27 7 9.61 7c2.74 0 5.09 1.26 6.77 3.24l-2.88 3.24-4-4L2 16.99l1.5 1.5 6-6.01 4 4 4.05-4.55c.75 1.35 1.25 2.9 1.44 4.55H21c-.22-2.3-.95-4.39-2.04-6.14L22 6.92z"},"children":[]}]};exports.ic_multiline_chart=ic_multiline_chart;var ic_multiline_chart_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 6.92l-1.41-1.41-2.85 3.21C15.68 6.4 12.83 5 9.61 5 6.72 5 4.07 6.16 2 8l1.42 1.42C5.12 7.93 7.27 7 9.61 7c2.74 0 5.09 1.26 6.77 3.24l-2.88 3.24-4-4L2 16.99l1.5 1.5 6-6.01 4 4 4.05-4.55c.75 1.35 1.25 2.9 1.44 4.55H21c-.22-2.3-.95-4.39-2.04-6.14L22 6.92z"},"children":[]}]};exports.ic_multiline_chart_outline=ic_multiline_chart_outline;var ic_multiline_chart_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 6.92l-1.41-1.41-2.85 3.21C15.68 6.4 12.83 5 9.61 5 6.72 5 4.07 6.16 2 8l1.42 1.42C5.12 7.93 7.27 7 9.61 7c2.74 0 5.09 1.26 6.77 3.24l-2.88 3.24-4-4L2 16.99l1.5 1.5 6-6.01 4 4 4.05-4.55c.75 1.35 1.25 2.9 1.44 4.55H21c-.22-2.3-.95-4.39-2.04-6.14L22 6.92z"},"children":[]}]};exports.ic_multiline_chart_twotone=ic_multiline_chart_twotone;var ic_notes={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 18h12v-2H3v2zM3 6v2h18V6H3zm0 7h18v-2H3v2z"},"children":[]}]};exports.ic_notes=ic_notes;var ic_notes_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 11.01L3 11v2h18zM3 16h12v2H3zM21 6H3v2.01L21 8z"},"children":[]}]};exports.ic_notes_outline=ic_notes_outline;var ic_notes_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 11.01L3 11v2h18zM3 16h12v2H3zM21 6H3v2.01L21 8z"},"children":[]}]};exports.ic_notes_twotone=ic_notes_twotone;var ic_padding={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 3v18h18V3H3zm16 16H5V5h14v14zM11 7h2v2h-2zM7 7h2v2H7zm8 0h2v2h-2z"},"children":[]}]};exports.ic_padding=ic_padding;var ic_pie_chart={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11 2v20c-5.07-.5-9-4.79-9-10s3.93-9.5 9-10zm2.03 0v8.99H22c-.47-4.74-4.24-8.52-8.97-8.99zm0 11.01V22c4.74-.47 8.5-4.25 8.97-8.99h-8.97z"},"children":[]}]};exports.ic_pie_chart=ic_pie_chart;var ic_pie_chart_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm7.93 9H13V4.07c3.61.45 6.48 3.32 6.93 6.93zM4 12c0-4.07 3.06-7.44 7-7.93v15.86c-3.94-.49-7-3.86-7-7.93zm9 7.93V13h6.93c-.45 3.61-3.32 6.48-6.93 6.93z"},"children":[]}]};exports.ic_pie_chart_outline=ic_pie_chart_outline;var ic_pie_chart_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 12c0 4.07 3.06 7.44 7 7.93V4.07C7.06 4.56 4 7.93 4 12zm9 7.93c3.61-.45 6.48-3.32 6.93-6.93H13v6.93zm0-15.86V11h6.93c-.45-3.61-3.32-6.48-6.93-6.93z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.94-.49-7-3.86-7-7.93s3.06-7.44 7-7.93v15.86zm2 0V13h6.93c-.45 3.61-3.32 6.48-6.93 6.93zM13 11V4.07c3.61.45 6.48 3.32 6.93 6.93H13z"},"children":[]}]};exports.ic_pie_chart_twotone=ic_pie_chart_twotone;var ic_pie_chart_outline_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm1 2.07c3.61.45 6.48 3.33 6.93 6.93H13V4.07zM4 12c0-4.06 3.07-7.44 7-7.93v15.87c-3.93-.5-7-3.88-7-7.94zm9 7.93V13h6.93c-.45 3.61-3.32 6.48-6.93 6.93z"},"children":[]}]};exports.ic_pie_chart_outline_outline=ic_pie_chart_outline_outline;var ic_pie_chart_outline_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm-1 17.94c-3.93-.5-7-3.88-7-7.94s3.07-7.44 7-7.93v15.87zm2-.01V13h6.93c-.45 3.61-3.32 6.48-6.93 6.93zM13 11V4.07c3.61.45 6.48 3.33 6.93 6.93H13z"},"children":[]}]};exports.ic_pie_chart_outline_twotone=ic_pie_chart_outline_twotone;var ic_pie_chart_outlined={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm1 2.07c3.61.45 6.48 3.33 6.93 6.93H13V4.07zM4 12c0-4.06 3.07-7.44 7-7.93v15.87c-3.93-.5-7-3.88-7-7.94zm9 7.93V13h6.93c-.45 3.61-3.32 6.48-6.93 6.93z"},"children":[]}]};exports.ic_pie_chart_outlined=ic_pie_chart_outlined;var ic_post_add={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M17,19.22H5V7h7V5H5C3.9,5,3,5.9,3,7v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-7h-2V19.22z"},"children":[{"name":"path","attribs":{"d":"M17,19.22H5V7h7V5H5C3.9,5,3,5.9,3,7v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-7h-2V19.22z"},"children":[]}]},{"name":"path","attribs":{"d":"M19,2h-2v3h-3c0.01,0.01,0,2,0,2h3v2.99c0.01,0.01,2,0,2,0V7h3V5h-3V2z"},"children":[{"name":"path","attribs":{"d":"M19,2h-2v3h-3c0.01,0.01,0,2,0,2h3v2.99c0.01,0.01,2,0,2,0V7h3V5h-3V2z"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"8","x":"7","y":"9"},"children":[{"name":"rect","attribs":{"height":"2","width":"8","x":"7","y":"9"},"children":[]}]},{"name":"polygon","attribs":{"points":"7,12 7,14 15,14 15,12 12,12"},"children":[{"name":"polygon","attribs":{"points":"7,12 7,14 15,14 15,12 12,12"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"8","x":"7","y":"15"},"children":[{"name":"rect","attribs":{"height":"2","width":"8","x":"7","y":"15"},"children":[]}]}]}]}]}]};exports.ic_post_add=ic_post_add;var ic_post_add_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M17,19.22H5V7h7V5H5C3.9,5,3,5.9,3,7v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-7h-2V19.22z"},"children":[{"name":"path","attribs":{"d":"M17,19.22H5V7h7V5H5C3.9,5,3,5.9,3,7v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-7h-2V19.22z"},"children":[]}]},{"name":"path","attribs":{"d":"M19,2h-2v3h-3c0.01,0.01,0,2,0,2h3v2.99c0.01,0.01,2,0,2,0V7h3V5h-3V2z"},"children":[{"name":"path","attribs":{"d":"M19,2h-2v3h-3c0.01,0.01,0,2,0,2h3v2.99c0.01,0.01,2,0,2,0V7h3V5h-3V2z"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"8","x":"7","y":"9"},"children":[{"name":"rect","attribs":{"height":"2","width":"8","x":"7","y":"9"},"children":[]}]},{"name":"polygon","attribs":{"points":"7,12 7,14 15,14 15,12 12,12"},"children":[{"name":"polygon","attribs":{"points":"7,12 7,14 15,14 15,12 12,12"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"8","x":"7","y":"15"},"children":[{"name":"rect","attribs":{"height":"2","width":"8","x":"7","y":"15"},"children":[]}]}]}]}]}]};exports.ic_post_add_outline=ic_post_add_outline;var ic_post_add_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M17,19.22H5V7h7V5H5C3.9,5,3,5.9,3,7v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-7h-2V19.22z"},"children":[{"name":"path","attribs":{"d":"M17,19.22H5V7h7V5H5C3.9,5,3,5.9,3,7v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-7h-2V19.22z"},"children":[]}]},{"name":"path","attribs":{"d":"M19,2h-2v3h-3c0.01,0.01,0,2,0,2h3v2.99c0.01,0.01,2,0,2,0V7h3V5h-3V2z"},"children":[{"name":"path","attribs":{"d":"M19,2h-2v3h-3c0.01,0.01,0,2,0,2h3v2.99c0.01,0.01,2,0,2,0V7h3V5h-3V2z"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"8","x":"7","y":"9"},"children":[{"name":"rect","attribs":{"height":"2","width":"8","x":"7","y":"9"},"children":[]}]},{"name":"polygon","attribs":{"points":"7,12 7,14 15,14 15,12 12,12"},"children":[{"name":"polygon","attribs":{"points":"7,12 7,14 15,14 15,12 12,12"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"8","x":"7","y":"15"},"children":[{"name":"rect","attribs":{"height":"2","width":"8","x":"7","y":"15"},"children":[]}]}]}]}]}]};exports.ic_post_add_twotone=ic_post_add_twotone;var ic_publish={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 4v2h14V4H5zm0 10h4v6h6v-6h4l-7-7-7 7z"},"children":[]}]};exports.ic_publish=ic_publish;var ic_publish_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 4h14v2H5zm0 10h4v6h6v-6h4l-7-7-7 7zm8-2v6h-2v-6H9.83L12 9.83 14.17 12H13z"},"children":[]}]};exports.ic_publish_outline=ic_publish_outline;var ic_publish_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9.83 12H11v6h2v-6h1.17L12 9.83z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M5 4h14v2H5zm7 3l-7 7h4v6h6v-6h4l-7-7zm1 5v6h-2v-6H9.83L12 9.83 14.17 12H13z"},"children":[]}]};exports.ic_publish_twotone=ic_publish_twotone;var ic_scatter_plot={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"cx":"7","cy":"14","r":"3"},"children":[{"name":"circle","attribs":{"cx":"7","cy":"14","r":"3"},"children":[]}]},{"name":"circle","attribs":{"cx":"11","cy":"6","r":"3"},"children":[{"name":"circle","attribs":{"cx":"11","cy":"6","r":"3"},"children":[]}]},{"name":"circle","attribs":{"cx":"16.6","cy":"17.6","r":"3"},"children":[{"name":"circle","attribs":{"cx":"16.6","cy":"17.6","r":"3"},"children":[]}]}]}]};exports.ic_scatter_plot=ic_scatter_plot;var ic_scatter_plot_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 18c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm4-2c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm5.6 17.6c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"},"children":[]}]};exports.ic_scatter_plot_outline=ic_scatter_plot_outline;var ic_scatter_plot_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"11","cy":"6","opacity":".3","r":"2"},"children":[]},{"name":"circle","attribs":{"cx":"16.6","cy":"17.6","opacity":".3","r":"2"},"children":[]},{"name":"circle","attribs":{"cx":"7","cy":"14","opacity":".3","r":"2"},"children":[]},{"name":"path","attribs":{"d":"M7 10c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm8-10c0-2.21-1.79-4-4-4S7 3.79 7 6s1.79 4 4 4 4-1.79 4-4zm-4 2c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm5.6 5.6c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"},"children":[]}]};exports.ic_scatter_plot_twotone=ic_scatter_plot_twotone;var ic_score={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 2h1.5v3l2-3h1.7l-2 3 2 3h-1.7l-2-3v3H12V5zM7 7.25h2.5V6.5H7V5h4v3.75H8.5v.75H11V11H7V7.25zM19 13l-6 6-4-4-4 4v-2.5l4-4 4 4 6-6V13z"},"children":[]}]};exports.ic_score=ic_score;var ic_score_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5l4-4 4 4 6-6v6zm0-8.5l-6 6-4-4-4 4V5h14v5.5zM13.5 9V6H12v6h1.5zm3.7 3l-2-3 2-3h-1.7l-2 3 2 3zM11 10.5H8.5v-.75H11V6H7v1.5h2.5v.75H7V12h4z"},"children":[]}]};exports.ic_score_outline=ic_score_outline;var ic_score_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 19h8l-4-4zm0-2.5l4-4 4 4 6-6V5H5v11.5zM12 6h1.5v3l2-3h1.7l-2 3 2 3h-1.7l-2-3v3H12V6zM7 8.25h2.5V7.5H7V6h4v3.75H8.5v.75H11V12H7V8.25zM19 19v-6l-6 6z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5l4-4 4 4 6-6v6zm0-8.5l-6 6-4-4-4 4V5h14v5.5zM13.5 9V6H12v6h1.5zm3.7 3l-2-3 2-3h-1.7l-2 3 2 3zM11 10.5H8.5v-.75H11V6H7v1.5h2.5v.75H7V12h4z"},"children":[]}]};exports.ic_score_twotone=ic_score_twotone;var ic_short_text={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M4,9h16v2H4V9z M4,13h10v2H4V13z"},"children":[{"name":"path","attribs":{"d":"M4,9h16v2H4V9z M4,13h10v2H4V13z"},"children":[]}]}]}]}]}]}]}]};exports.ic_short_text=ic_short_text;var ic_short_text_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 9h16v2H4V9zm0 4h10v2H4v-2z"},"children":[]}]};exports.ic_short_text_outline=ic_short_text_outline;var ic_short_text_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 9h16v2H4zm0 4h10v2H4z"},"children":[]}]};exports.ic_short_text_twotone=ic_short_text_twotone;var ic_show_chart={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3.5 18.49l6-6.01 4 4L22 6.92l-1.41-1.41-7.09 7.97-4-4L2 16.99z"},"children":[]}]};exports.ic_show_chart=ic_show_chart;var ic_show_chart_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3.5 18.49l6-6.01 4 4L22 6.92l-1.41-1.41-7.09 7.97-4-4L2 16.99l1.5 1.5z"},"children":[]}]};exports.ic_show_chart_outline=ic_show_chart_outline;var ic_show_chart_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13.5 13.48l-4-4L2 16.99l1.5 1.5 6-6.01 4 4L22 6.92l-1.41-1.41z"},"children":[]}]};exports.ic_show_chart_twotone=ic_show_chart_twotone;var ic_space_bar={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 9v4H6V9H4v6h16V9z"},"children":[]}]};exports.ic_space_bar=ic_space_bar;var ic_space_bar_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 9v4H6V9H4v6h16V9h-2z"},"children":[]}]};exports.ic_space_bar_outline=ic_space_bar_outline;var ic_space_bar_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 13H6V9H4v6h16V9h-2z"},"children":[]}]};exports.ic_space_bar_twotone=ic_space_bar_twotone;var ic_stacked_line_chart={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M2,19.99l7.5-7.51l4,4l7.09-7.97L22,9.92l-8.5,9.56l-4-4l-6,6.01L2,19.99z M3.5,15.49l6-6.01l4,4L22,3.92l-1.41-1.41 l-7.09,7.97l-4-4L2,13.99L3.5,15.49z"},"children":[]}]};exports.ic_stacked_line_chart=ic_stacked_line_chart;var ic_stacked_line_chart_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M2,19.99l7.5-7.51l4,4l7.09-7.97L22,9.92l-8.5,9.56l-4-4l-6,6.01L2,19.99z M3.5,15.49l6-6.01l4,4L22,3.92l-1.41-1.41 l-7.09,7.97l-4-4L2,13.99L3.5,15.49z"},"children":[]}]};exports.ic_stacked_line_chart_outline=ic_stacked_line_chart_outline;var ic_stacked_line_chart_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M2,19.99l7.5-7.51l4,4l7.09-7.97L22,9.92l-8.5,9.56l-4-4l-6,6.01L2,19.99z M3.5,15.49l6-6.01l4,4L22,3.92l-1.41-1.41 l-7.09,7.97l-4-4L2,13.99L3.5,15.49z"},"children":[]}]};exports.ic_stacked_line_chart_twotone=ic_stacked_line_chart_twotone;var ic_strikethrough_s={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M6.85,7.08C6.85,4.37,9.45,3,12.24,3c1.64,0,3,0.49,3.9,1.28c0.77,0.65,1.46,1.73,1.46,3.24h-3.01 c0-0.31-0.05-0.59-0.15-0.85c-0.29-0.86-1.2-1.28-2.25-1.28c-1.86,0-2.34,1.02-2.34,1.7c0,0.48,0.25,0.88,0.74,1.21 C10.97,8.55,11.36,8.78,12,9H7.39C7.18,8.66,6.85,8.11,6.85,7.08z M21,12v-2H3v2h9.62c1.15,0.45,1.96,0.75,1.96,1.97 c0,1-0.81,1.67-2.28,1.67c-1.54,0-2.93-0.54-2.93-2.51H6.4c0,0.55,0.08,1.13,0.24,1.58c0.81,2.29,3.29,3.3,5.67,3.3 c2.27,0,5.3-0.89,5.3-4.05c0-0.3-0.01-1.16-0.48-1.94H21V12z"},"children":[{"name":"path","attribs":{"d":"M6.85,7.08C6.85,4.37,9.45,3,12.24,3c1.64,0,3,0.49,3.9,1.28c0.77,0.65,1.46,1.73,1.46,3.24h-3.01 c0-0.31-0.05-0.59-0.15-0.85c-0.29-0.86-1.2-1.28-2.25-1.28c-1.86,0-2.34,1.02-2.34,1.7c0,0.48,0.25,0.88,0.74,1.21 C10.97,8.55,11.36,8.78,12,9H7.39C7.18,8.66,6.85,8.11,6.85,7.08z M21,12v-2H3v2h9.62c1.15,0.45,1.96,0.75,1.96,1.97 c0,1-0.81,1.67-2.28,1.67c-1.54,0-2.93-0.54-2.93-2.51H6.4c0,0.55,0.08,1.13,0.24,1.58c0.81,2.29,3.29,3.3,5.67,3.3 c2.27,0,5.3-0.89,5.3-4.05c0-0.3-0.01-1.16-0.48-1.94H21V12z"},"children":[]}]}]}]}]}]}]}]};exports.ic_strikethrough_s=ic_strikethrough_s;var ic_strikethrough_s_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7.24 8.75c-.26-.48-.39-1.03-.39-1.67 0-.61.13-1.16.4-1.67.26-.5.63-.93 1.11-1.29.48-.35 1.05-.63 1.7-.83.66-.19 1.39-.29 2.18-.29.81 0 1.54.11 2.21.34.66.22 1.23.54 1.69.94.47.4.83.88 1.08 1.43s.38 1.15.38 1.81h-3.01c0-.31-.05-.59-.15-.85-.09-.27-.24-.49-.44-.68-.2-.19-.45-.33-.75-.44-.3-.1-.66-.16-1.06-.16-.39 0-.74.04-1.03.13s-.53.21-.72.36c-.19.16-.34.34-.44.55-.1.21-.15.43-.15.66 0 .48.25.88.74 1.21.38.25.77.48 1.41.7H7.39c-.05-.08-.11-.17-.15-.25zM21 12v-2H3v2h9.62c.18.07.4.14.55.2.37.17.66.34.87.51s.35.36.43.57c.07.2.11.43.11.69 0 .23-.05.45-.14.66-.09.2-.23.38-.42.53-.19.15-.42.26-.71.35-.29.08-.63.13-1.01.13-.43 0-.83-.04-1.18-.13s-.66-.23-.91-.42c-.25-.19-.45-.44-.59-.75s-.25-.76-.25-1.21H6.4c0 .55.08 1.13.24 1.58s.37.85.65 1.21c.28.35.6.66.98.92.37.26.78.48 1.22.65.44.17.9.3 1.38.39.48.08.96.13 1.44.13.8 0 1.53-.09 2.18-.28s1.21-.45 1.67-.79c.46-.34.82-.77 1.07-1.27s.38-1.07.38-1.71c0-.6-.1-1.14-.31-1.61-.05-.11-.11-.23-.17-.33H21V12z"},"children":[]}]};exports.ic_strikethrough_s_outline=ic_strikethrough_s_outline;var ic_strikethrough_s_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10.44 5.88c.19-.15.43-.27.72-.36.29-.09.64-.13 1.03-.13.4 0 .76.06 1.06.16.3.11.55.25.75.44s.35.41.44.68c.1.26.15.54.15.85h3.01c0-.66-.13-1.26-.38-1.81s-.61-1.03-1.08-1.43c-.46-.4-1.03-.72-1.69-.94-.67-.23-1.4-.34-2.21-.34-.79 0-1.52.1-2.18.29-.65.2-1.22.48-1.7.83-.48.36-.85.79-1.11 1.29-.27.51-.4 1.06-.4 1.67 0 .64.13 1.19.39 1.67.04.08.1.17.15.25H12c-.64-.22-1.03-.45-1.41-.7-.49-.33-.74-.73-.74-1.21 0-.23.05-.45.15-.66s.25-.39.44-.55zM3 12h9.62c.18.07.4.14.55.2.37.17.66.34.87.51.21.17.35.36.43.57.07.2.11.43.11.69 0 .23-.05.45-.14.66-.09.2-.23.38-.42.53-.19.15-.42.26-.71.35-.29.08-.63.13-1.01.13-.43 0-.83-.04-1.18-.13s-.66-.23-.91-.42-.45-.44-.59-.75-.25-.76-.25-1.21H6.4c0 .55.08 1.13.24 1.58.16.45.37.85.65 1.21.28.35.6.66.98.92.37.26.78.48 1.22.65s.9.3 1.38.39c.48.08.96.13 1.44.13.8 0 1.53-.09 2.18-.28.65-.19 1.21-.45 1.67-.79.46-.34.82-.77 1.07-1.27s.38-1.07.38-1.71c0-.6-.1-1.14-.31-1.61-.05-.11-.11-.23-.17-.33H21V10H3v2z"},"children":[]}]};exports.ic_strikethrough_s_twotone=ic_strikethrough_s_twotone;var ic_subscript={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M22,18h-2v1h3v1h-4v-2c0-0.55,0.45-1,1-1h2v-1h-3v-1h3c0.55,0,1,0.45,1,1v1C23,17.55,22.55,18,22,18z M5.88,18h2.66 l3.4-5.42h0.12l3.4,5.42h2.66l-4.65-7.27L17.81,4h-2.68l-3.07,4.99h-0.12L8.85,4H6.19l4.32,6.73L5.88,18z"},"children":[{"name":"path","attribs":{"d":"M22,18h-2v1h3v1h-4v-2c0-0.55,0.45-1,1-1h2v-1h-3v-1h3c0.55,0,1,0.45,1,1v1C23,17.55,22.55,18,22,18z M5.88,18h2.66 l3.4-5.42h0.12l3.4,5.42h2.66l-4.65-7.27L17.81,4h-2.68l-3.07,4.99h-0.12L8.85,4H6.19l4.32,6.73L5.88,18z"},"children":[]}]}]}]};exports.ic_subscript=ic_subscript;var ic_subscript_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M22,18h-2v1h3v1h-4v-2c0-0.55,0.45-1,1-1h2v-1h-3v-1h3c0.55,0,1,0.45,1,1v1C23,17.55,22.55,18,22,18z M5.88,18h2.66 l3.4-5.42h0.12l3.4,5.42h2.66l-4.65-7.27L17.81,4h-2.68l-3.07,4.99h-0.12L8.85,4H6.19l4.32,6.73L5.88,18z"},"children":[{"name":"path","attribs":{"d":"M22,18h-2v1h3v1h-4v-2c0-0.55,0.45-1,1-1h2v-1h-3v-1h3c0.55,0,1,0.45,1,1v1C23,17.55,22.55,18,22,18z M5.88,18h2.66 l3.4-5.42h0.12l3.4,5.42h2.66l-4.65-7.27L17.81,4h-2.68l-3.07,4.99h-0.12L8.85,4H6.19l4.32,6.73L5.88,18z"},"children":[]}]}]}]};exports.ic_subscript_outline=ic_subscript_outline;var ic_subscript_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M22,18h-2v1h3v1h-4v-2c0-0.55,0.45-1,1-1h2v-1h-3v-1h3c0.55,0,1,0.45,1,1v1C23,17.55,22.55,18,22,18z M5.88,18h2.66 l3.4-5.42h0.12l3.4,5.42h2.66l-4.65-7.27L17.81,4h-2.68l-3.07,4.99h-0.12L8.85,4H6.19l4.32,6.73L5.88,18z"},"children":[{"name":"path","attribs":{"d":"M22,18h-2v1h3v1h-4v-2c0-0.55,0.45-1,1-1h2v-1h-3v-1h3c0.55,0,1,0.45,1,1v1C23,17.55,22.55,18,22,18z M5.88,18h2.66 l3.4-5.42h0.12l3.4,5.42h2.66l-4.65-7.27L17.81,4h-2.68l-3.07,4.99h-0.12L8.85,4H6.19l4.32,6.73L5.88,18z"},"children":[]}]}]}]};exports.ic_subscript_twotone=ic_subscript_twotone;var ic_superscript={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0","y":"0"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0","y":"0"},"children":[]}]},{"name":"path","attribs":{"d":"M22,7h-2v1h3v1h-4V7c0-0.55,0.45-1,1-1h2V5h-3V4h3c0.55,0,1,0.45,1,1v1C23,6.55,22.55,7,22,7z M5.88,20h2.66l3.4-5.42h0.12 l3.4,5.42h2.66l-4.65-7.27L17.81,6h-2.68l-3.07,4.99h-0.12L8.85,6H6.19l4.32,6.73L5.88,20z"},"children":[{"name":"path","attribs":{"d":"M22,7h-2v1h3v1h-4V7c0-0.55,0.45-1,1-1h2V5h-3V4h3c0.55,0,1,0.45,1,1v1C23,6.55,22.55,7,22,7z M5.88,20h2.66l3.4-5.42h0.12 l3.4,5.42h2.66l-4.65-7.27L17.81,6h-2.68l-3.07,4.99h-0.12L8.85,6H6.19l4.32,6.73L5.88,20z"},"children":[]}]}]}]};exports.ic_superscript=ic_superscript;var ic_superscript_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0","y":"0"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0","y":"0"},"children":[]}]},{"name":"path","attribs":{"d":"M22,7h-2v1h3v1h-4V7c0-0.55,0.45-1,1-1h2V5h-3V4h3c0.55,0,1,0.45,1,1v1C23,6.55,22.55,7,22,7z M5.88,20h2.66l3.4-5.42h0.12 l3.4,5.42h2.66l-4.65-7.27L17.81,6h-2.68l-3.07,4.99h-0.12L8.85,6H6.19l4.32,6.73L5.88,20z"},"children":[{"name":"path","attribs":{"d":"M22,7h-2v1h3v1h-4V7c0-0.55,0.45-1,1-1h2V5h-3V4h3c0.55,0,1,0.45,1,1v1C23,6.55,22.55,7,22,7z M5.88,20h2.66l3.4-5.42h0.12 l3.4,5.42h2.66l-4.65-7.27L17.81,6h-2.68l-3.07,4.99h-0.12L8.85,6H6.19l4.32,6.73L5.88,20z"},"children":[]}]}]}]};exports.ic_superscript_outline=ic_superscript_outline;var ic_superscript_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0","y":"0"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0","y":"0"},"children":[]}]},{"name":"path","attribs":{"d":"M22,7h-2v1h3v1h-4V7c0-0.55,0.45-1,1-1h2V5h-3V4h3c0.55,0,1,0.45,1,1v1C23,6.55,22.55,7,22,7z M5.88,20h2.66l3.4-5.42h0.12 l3.4,5.42h2.66l-4.65-7.27L17.81,6h-2.68l-3.07,4.99h-0.12L8.85,6H6.19l4.32,6.73L5.88,20z"},"children":[{"name":"path","attribs":{"d":"M22,7h-2v1h3v1h-4V7c0-0.55,0.45-1,1-1h2V5h-3V4h3c0.55,0,1,0.45,1,1v1C23,6.55,22.55,7,22,7z M5.88,20h2.66l3.4-5.42h0.12 l3.4,5.42h2.66l-4.65-7.27L17.81,6h-2.68l-3.07,4.99h-0.12L8.85,6H6.19l4.32,6.73L5.88,20z"},"children":[]}]}]}]};exports.ic_superscript_twotone=ic_superscript_twotone;var ic_table_chart={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 10.02h5V21h-5zM17 21h3c1.1 0 2-.9 2-2v-9h-5v11zm3-18H5c-1.1 0-2 .9-2 2v3h19V5c0-1.1-.9-2-2-2zM3 19c0 1.1.9 2 2 2h3V10H3v9z"},"children":[]}]};exports.ic_table_chart=ic_table_chart;var ic_table_chart_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h15c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 2v3H5V5h15zm-5 14h-5v-9h5v9zM5 10h3v9H5v-9zm12 9v-9h3v9h-3z"},"children":[]}]};exports.ic_table_chart_outline=ic_table_chart_outline;var ic_table_chart_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 5h15v3H5zm12 5h3v9h-3zm-7 0h5v9h-5zm-5 0h3v9H5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h15c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM8 19H5v-9h3v9zm7 0h-5v-9h5v9zm5 0h-3v-9h3v9zm0-11H5V5h15v3z"},"children":[]}]};exports.ic_table_chart_twotone=ic_table_chart_twotone;var ic_table_rows={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M22,7H2V2h20V7z M22,9.5H2v5h20V9.5z M22,17H2v5h20V17z"},"children":[{"name":"path","attribs":{"d":"M22,7H2V2h20V7z M22,9.5H2v5h20V9.5z M22,17H2v5h20V17z"},"children":[]}]}]}]};exports.ic_table_rows=ic_table_rows;var ic_table_rows_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]}]},{"name":"path","attribs":{"d":"M22,2H2v20h20V2L22,2z M4,8V4h16v4H4L4,8z M4,14v-4h16v4H4L4,14z M4,20v-4h16v4H4L4,20z"},"children":[{"name":"path","attribs":{"d":"M22,2H2v20h20V2L22,2z M4,8V4h16v4H4L4,8z M4,14v-4h16v4H4L4,14z M4,20v-4h16v4H4L4,20z"},"children":[]}]}]}]};exports.ic_table_rows_outline=ic_table_rows_outline;var ic_table_rows_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]}]},{"name":"g","attribs":{"opacity":".3"},"children":[{"name":"g","attribs":{"opacity":".3"},"children":[{"name":"path","attribs":{"d":"M20,4v4H4V4H20z M20,10v4H4v-4H20z M4,20v-4h16v4H4z"},"children":[{"name":"path","attribs":{"d":"M20,4v4H4V4H20z M20,10v4H4v-4H20z M4,20v-4h16v4H4z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M2,2v20h20V2H2z M20,4v4H4V4H20z M20,10v4H4v-4H20z M4,20v-4h16v4H4z"},"children":[{"name":"path","attribs":{"d":"M2,2v20h20V2H2z M20,4v4H4V4H20z M20,10v4H4v-4H20z M4,20v-4h16v4H4z"},"children":[]}]}]}]}]}]};exports.ic_table_rows_twotone=ic_table_rows_twotone;var ic_text_fields={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M2.5,4v3h5v12h3V7h5V4H2.5z M21.5,9h-9v3h3v7h3v-7h3V9z"},"children":[{"name":"path","attribs":{"d":"M2.5,4v3h5v12h3V7h5V4H2.5z M21.5,9h-9v3h3v7h3v-7h3V9z"},"children":[]}]}]}]}]}]}]}]};exports.ic_text_fields=ic_text_fields;var ic_text_fields_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M2.5 4v3h5v12h3V7h5V4h-13zm19 5h-9v3h3v7h3v-7h3V9z"},"children":[]}]};exports.ic_text_fields_outline=ic_text_fields_outline;var ic_text_fields_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12.5 12h3v7h3v-7h3V9h-9zm3-8h-13v3h5v12h3V7h5z"},"children":[]}]};exports.ic_text_fields_twotone=ic_text_fields_twotone;var ic_title={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 4v3h5.5v12h3V7H19V4z"},"children":[]}]};exports.ic_title=ic_title;var ic_title_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 4v3h5.5v12h3V7H19V4H5z"},"children":[]}]};exports.ic_title_outline=ic_title_outline;var ic_title_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 7h5.5v12h3V7H19V4H5z"},"children":[]}]};exports.ic_title_twotone=ic_title_twotone;var ic_vertical_align_bottom={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16 13h-3V3h-2v10H8l4 4 4-4zM4 19v2h16v-2H4z"},"children":[]}]};exports.ic_vertical_align_bottom=ic_vertical_align_bottom;var ic_vertical_align_bottom_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16 13h-3V3h-2v10H8l4 4 4-4zM4 19v2h16v-2H4z"},"children":[]}]};exports.ic_vertical_align_bottom_outline=ic_vertical_align_bottom_outline;var ic_vertical_align_bottom_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11 3v10H8l4 4 4-4h-3V3zM4 19h16v2H4z"},"children":[]}]};exports.ic_vertical_align_bottom_twotone=ic_vertical_align_bottom_twotone;var ic_vertical_align_center={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8 19h3v4h2v-4h3l-4-4-4 4zm8-14h-3V1h-2v4H8l4 4 4-4zM4 11v2h16v-2H4z"},"children":[]}]};exports.ic_vertical_align_center=ic_vertical_align_center;var ic_vertical_align_center_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8 19h3v4h2v-4h3l-4-4-4 4zm8-14h-3V1h-2v4H8l4 4 4-4zM4 11v2h16v-2H4z"},"children":[]}]};exports.ic_vertical_align_center_outline=ic_vertical_align_center_outline;var ic_vertical_align_center_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11 1v4H8l4 4 4-4h-3V1zM4 11h16v2H4zm4 8h3v4h2v-4h3l-4-4z"},"children":[]}]};exports.ic_vertical_align_center_twotone=ic_vertical_align_center_twotone;var ic_vertical_align_top={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8 11h3v10h2V11h3l-4-4-4 4zM4 3v2h16V3H4z"},"children":[]}]};exports.ic_vertical_align_top=ic_vertical_align_top;var ic_vertical_align_top_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8 11h3v10h2V11h3l-4-4-4 4zM4 3v2h16V3H4z"},"children":[]}]};exports.ic_vertical_align_top_outline=ic_vertical_align_top_outline;var ic_vertical_align_top_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 3h16v2H4zm4 8h3v10h2V11h3l-4-4z"},"children":[]}]};exports.ic_vertical_align_top_twotone=ic_vertical_align_top_twotone;var ic_wrap_text={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 19h6v-2H4v2zM20 5H4v2h16V5zm-3 6H4v2h13.25c1.1 0 2 .9 2 2s-.9 2-2 2H15v-2l-3 3 3 3v-2h2c2.21 0 4-1.79 4-4s-1.79-4-4-4z"},"children":[]}]};exports.ic_wrap_text=ic_wrap_text;var ic_wrap_text_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 19h6v-2H4v2zM20 5H4v2h16V5zm-3 6H4v2h13.25c1.1 0 2 .9 2 2s-.9 2-2 2H15v-2l-3 3 3 3v-2h2c2.21 0 4-1.79 4-4s-1.79-4-4-4z"},"children":[]}]};exports.ic_wrap_text_outline=ic_wrap_text_outline;var ic_wrap_text_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 17h6v2H4zm13-6H4v2h13.25c1.1 0 2 .9 2 2s-.9 2-2 2H15v-2l-3 3 3 3v-2h2c2.21 0 4-1.79 4-4s-1.79-4-4-4zM4 5h16v2H4z"},"children":[]}]};exports.ic_wrap_text_twotone=ic_wrap_text_twotone;var ic_approval={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 16v6h16v-6c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2zm14 2H6v-2h12v2zM12 2C9.24 2 7 4.24 7 7l5 7 5-7c0-2.76-2.24-5-5-5zm0 9L9 7c0-1.66 1.34-3 3-3s3 1.34 3 3l-3 4z"},"children":[]}]};exports.ic_approval=ic_approval;var ic_attach_email={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M21,10V4c0-1.1-0.9-2-2-2H3C1.9,2,1.01,2.9,1.01,4L1,16c0,1.1,0.9,2,2,2h11v-5c0-1.66,1.34-3,3-3H21z M11,11L3,6V4l8,5 l8-5v2L11,11z"},"children":[{"name":"path","attribs":{"d":"M21,10V4c0-1.1-0.9-2-2-2H3C1.9,2,1.01,2.9,1.01,4L1,16c0,1.1,0.9,2,2,2h11v-5c0-1.66,1.34-3,3-3H21z M11,11L3,6V4l8,5 l8-5v2L11,11z"},"children":[]}]},{"name":"path","attribs":{"d":"M21,14v4c0,1.1-0.9,2-2,2s-2-0.9-2-2v-4.5c0-0.28,0.22-0.5,0.5-0.5s0.5,0.22,0.5,0.5V18h2v-4.5c0-1.38-1.12-2.5-2.5-2.5 S15,12.12,15,13.5V18c0,2.21,1.79,4,4,4s4-1.79,4-4v-4H21z"},"children":[{"name":"path","attribs":{"d":"M21,14v4c0,1.1-0.9,2-2,2s-2-0.9-2-2v-4.5c0-0.28,0.22-0.5,0.5-0.5s0.5,0.22,0.5,0.5V18h2v-4.5c0-1.38-1.12-2.5-2.5-2.5 S15,12.12,15,13.5V18c0,2.21,1.79,4,4,4s4-1.79,4-4v-4H21z"},"children":[]}]}]}]}]}]};exports.ic_attach_email=ic_attach_email;var ic_attach_email_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M3,6l8,5l8-5v3h2V4c0-1.1-0.9-2-2-2H3C1.9,2,1.01,2.9,1.01,4L1,16c0,1.1,0.9,2,2,2h10v-2H3V6z M19,4l-8,5L3,4H19z"},"children":[{"name":"path","attribs":{"d":"M3,6l8,5l8-5v3h2V4c0-1.1-0.9-2-2-2H3C1.9,2,1.01,2.9,1.01,4L1,16c0,1.1,0.9,2,2,2h10v-2H3V6z M19,4l-8,5L3,4H19z"},"children":[]}]},{"name":"path","attribs":{"d":"M21,14v4c0,1.1-0.9,2-2,2s-2-0.9-2-2v-4.5c0-0.28,0.22-0.5,0.5-0.5s0.5,0.22,0.5,0.5V18h2v-4.5c0-1.38-1.12-2.5-2.5-2.5 S15,12.12,15,13.5V18c0,2.21,1.79,4,4,4s4-1.79,4-4v-4H21z"},"children":[{"name":"path","attribs":{"d":"M21,14v4c0,1.1-0.9,2-2,2s-2-0.9-2-2v-4.5c0-0.28,0.22-0.5,0.5-0.5s0.5,0.22,0.5,0.5V18h2v-4.5c0-1.38-1.12-2.5-2.5-2.5 S15,12.12,15,13.5V18c0,2.21,1.79,4,4,4s4-1.79,4-4v-4H21z"},"children":[]}]}]}]}]}]};exports.ic_attach_email_outline=ic_attach_email_outline;var ic_attach_email_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M3,6l8,5l8-5v3h2V4c0-1.1-0.9-2-2-2H3C1.9,2,1.01,2.9,1.01,4L1,16c0,1.1,0.9,2,2,2h10v-2H3V6z M19,4l-8,5L3,4H19z"},"children":[{"name":"path","attribs":{"d":"M3,6l8,5l8-5v3h2V4c0-1.1-0.9-2-2-2H3C1.9,2,1.01,2.9,1.01,4L1,16c0,1.1,0.9,2,2,2h10v-2H3V6z M19,4l-8,5L3,4H19z"},"children":[]}]},{"name":"path","attribs":{"d":"M21,14v4c0,1.1-0.9,2-2,2s-2-0.9-2-2v-4.5c0-0.28,0.22-0.5,0.5-0.5s0.5,0.22,0.5,0.5V18h2v-4.5c0-1.38-1.12-2.5-2.5-2.5 S15,12.12,15,13.5V18c0,2.21,1.79,4,4,4s4-1.79,4-4v-4H21z"},"children":[{"name":"path","attribs":{"d":"M21,14v4c0,1.1-0.9,2-2,2s-2-0.9-2-2v-4.5c0-0.28,0.22-0.5,0.5-0.5s0.5,0.22,0.5,0.5V18h2v-4.5c0-1.38-1.12-2.5-2.5-2.5 S15,12.12,15,13.5V18c0,2.21,1.79,4,4,4s4-1.79,4-4v-4H21z"},"children":[]}]}]}]}]}]};exports.ic_attach_email_twotone=ic_attach_email_twotone;var ic_attachment={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M2 12.5C2 9.46 4.46 7 7.5 7H18c2.21 0 4 1.79 4 4s-1.79 4-4 4H9.5C8.12 15 7 13.88 7 12.5S8.12 10 9.5 10H17v2H9.41c-.55 0-.55 1 0 1H18c1.1 0 2-.9 2-2s-.9-2-2-2H7.5C5.57 9 4 10.57 4 12.5S5.57 16 7.5 16H17v2H7.5C4.46 18 2 15.54 2 12.5z"},"children":[]}]};exports.ic_attachment=ic_attachment;var ic_attachment_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18.5 16H7c-2.21 0-4-1.79-4-4s1.79-4 4-4h12.5c1.38 0 2.5 1.12 2.5 2.5S20.88 13 19.5 13H9c-.55 0-1-.45-1-1s.45-1 1-1h9.5V9.5H9c-1.38 0-2.5 1.12-2.5 2.5s1.12 2.5 2.5 2.5h10.5c2.21 0 4-1.79 4-4s-1.79-4-4-4H7c-3.04 0-5.5 2.46-5.5 5.5s2.46 5.5 5.5 5.5h11.5V16z"},"children":[]}]};exports.ic_attachment_outline=ic_attachment_outline;var ic_attachment_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18.5 16H7c-2.21 0-4-1.79-4-4s1.79-4 4-4h12.5c1.38 0 2.5 1.12 2.5 2.5S20.88 13 19.5 13H9c-.55 0-1-.45-1-1s.45-1 1-1h9.5V9.5H9c-1.38 0-2.5 1.12-2.5 2.5s1.12 2.5 2.5 2.5h10.5c2.21 0 4-1.79 4-4s-1.79-4-4-4H7c-3.04 0-5.5 2.46-5.5 5.5s2.46 5.5 5.5 5.5h11.5V16z"},"children":[]}]};exports.ic_attachment_twotone=ic_attachment_twotone;var ic_cloud={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96z"},"children":[]}]};exports.ic_cloud=ic_cloud;var ic_cloud_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 6c2.62 0 4.88 1.86 5.39 4.43l.3 1.5 1.53.11c1.56.1 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3H6c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.94 6 12 6m0-2C9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96C18.67 6.59 15.64 4 12 4z"},"children":[]}]};exports.ic_cloud_outline=ic_cloud_outline;var ic_cloud_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19.21 12.04l-1.53-.11-.3-1.5C16.88 7.86 14.62 6 12 6 9.94 6 8.08 7.14 7.12 8.96l-.5.95-1.07.11C3.53 10.24 2 11.95 2 14c0 2.21 1.79 4 4 4h13c1.65 0 3-1.35 3-3 0-1.55-1.22-2.86-2.79-2.96z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.94 6 12 6c2.62 0 4.88 1.86 5.39 4.43l.3 1.5 1.53.11c1.56.1 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3z"},"children":[]}]};exports.ic_cloud_twotone=ic_cloud_twotone;var ic_cloud_circle={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm4.5 14H8c-1.66 0-3-1.34-3-3s1.34-3 3-3l.14.01C8.58 8.28 10.13 7 12 7c2.21 0 4 1.79 4 4h.5c1.38 0 2.5 1.12 2.5 2.5S17.88 16 16.5 16z"},"children":[]}]};exports.ic_cloud_circle=ic_cloud_circle;var ic_cloud_circle_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm4.29-9.81c-.4-2.01-2.16-3.52-4.29-3.52-1.69 0-3.15.96-3.88 2.36C6.36 9.21 5 10.7 5 12.5 5 14.43 6.57 16 8.5 16h7.58c1.61 0 2.92-1.31 2.92-2.92 0-1.54-1.2-2.79-2.71-2.89zM16 14H8.5c-.83 0-1.5-.67-1.5-1.5S7.67 11 8.5 11h.9l.49-1.05c.41-.79 1.22-1.28 2.11-1.28 1.13 0 2.11.8 2.33 1.91l.28 1.42H16c.55 0 1 .45 1 1s-.45 1-1 1z"},"children":[]}]};exports.ic_cloud_circle_outline=ic_cloud_circle_outline;var ic_cloud_circle_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm4.08 12H8.5C6.57 16 5 14.43 5 12.5c0-1.8 1.36-3.29 3.12-3.48.73-1.4 2.19-2.36 3.88-2.36 2.12 0 3.89 1.51 4.29 3.52 1.52.1 2.71 1.35 2.71 2.89 0 1.62-1.31 2.93-2.92 2.93z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm4.29-9.81c-.4-2.01-2.16-3.52-4.29-3.52-1.69 0-3.15.96-3.88 2.36C6.36 9.21 5 10.7 5 12.5 5 14.43 6.57 16 8.5 16h7.58c1.61 0 2.92-1.31 2.92-2.92 0-1.54-1.2-2.79-2.71-2.89zM16 14H8.5c-.83 0-1.5-.67-1.5-1.5S7.67 11 8.5 11h.9l.49-1.05c.41-.79 1.22-1.28 2.11-1.28 1.13 0 2.11.8 2.33 1.91l.28 1.42H16c.55 0 1 .45 1 1s-.45 1-1 1z"},"children":[]}]};exports.ic_cloud_circle_twotone=ic_cloud_circle_twotone;var ic_cloud_done={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM10 17l-3.5-3.5 1.41-1.41L10 14.17 15.18 9l1.41 1.41L10 17z"},"children":[]}]};exports.ic_cloud_done=ic_cloud_done;var ic_cloud_done_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.94 6 12 6c2.62 0 4.88 1.86 5.39 4.43l.3 1.5 1.53.11c1.56.1 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3zm-9-3.82l-2.09-2.09L6.5 13.5 10 17l6.01-6.01-1.41-1.41z"},"children":[]}]};exports.ic_cloud_done_outline=ic_cloud_done_outline;var ic_cloud_done_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19.21 12.04l-1.53-.11-.3-1.5C16.88 7.86 14.62 6 12 6 9.94 6 8.08 7.14 7.12 8.96l-.5.95-1.07.11C3.53 10.24 2 11.95 2 14c0 2.21 1.79 4 4 4h13c1.65 0 3-1.35 3-3 0-1.55-1.22-2.86-2.79-2.96zM10 17l-3.5-3.5 1.41-1.41L10 14.18l4.6-4.6 1.41 1.41L10 17z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.94 6 12 6c2.62 0 4.88 1.86 5.39 4.43l.3 1.5 1.53.11c1.56.1 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3zm-9-3.82l-2.09-2.09L6.5 13.5 10 17l6.01-6.01-1.41-1.41z"},"children":[]}]};exports.ic_cloud_done_twotone=ic_cloud_done_twotone;var ic_cloud_download={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM17 13l-5 5-5-5h3V9h4v4h3z"},"children":[]}]};exports.ic_cloud_download=ic_cloud_download;var ic_cloud_download_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.94 6 12 6c2.62 0 4.88 1.86 5.39 4.43l.3 1.5 1.53.11c1.56.1 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3zm-5.55-8h-2.9v3H8l4 4 4-4h-2.55z"},"children":[]}]};exports.ic_cloud_download_outline=ic_cloud_download_outline;var ic_cloud_download_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19.21 12.04l-1.53-.11-.3-1.5C16.88 7.86 14.62 6 12 6 9.94 6 8.08 7.14 7.12 8.96l-.5.95-1.07.11C3.53 10.24 2 11.95 2 14c0 2.21 1.79 4 4 4h13c1.65 0 3-1.35 3-3 0-1.55-1.22-2.86-2.79-2.96zM12 17l-4-4h2.55v-3h2.91v3H16l-4 4z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.94 6 12 6c2.62 0 4.88 1.86 5.39 4.43l.3 1.5 1.53.11c1.56.1 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3zm-5.55-8h-2.9v3H8l4 4 4-4h-2.55z"},"children":[]}]};exports.ic_cloud_download_twotone=ic_cloud_download_twotone;var ic_cloud_off={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19.35 10.04C18.67 6.59 15.64 4 12 4c-1.48 0-2.85.43-4.01 1.17l1.46 1.46C10.21 6.23 11.08 6 12 6c3.04 0 5.5 2.46 5.5 5.5v.5H19c1.66 0 3 1.34 3 3 0 1.13-.64 2.11-1.56 2.62l1.45 1.45C23.16 18.16 24 16.68 24 15c0-2.64-2.05-4.78-4.65-4.96zM3 5.27l2.75 2.74C2.56 8.15 0 10.77 0 14c0 3.31 2.69 6 6 6h11.73l2 2L21 20.73 4.27 4 3 5.27zM7.73 10l8 8H6c-2.21 0-4-1.79-4-4s1.79-4 4-4h1.73z"},"children":[]}]};exports.ic_cloud_off=ic_cloud_off;var ic_cloud_off_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M24 15c0-2.64-2.05-4.78-4.65-4.96C18.67 6.59 15.64 4 12 4c-1.33 0-2.57.36-3.65.97l1.49 1.49C10.51 6.17 11.23 6 12 6c3.04 0 5.5 2.46 5.5 5.5v.5H19c1.66 0 3 1.34 3 3 0 .99-.48 1.85-1.21 2.4l1.41 1.41c1.09-.92 1.8-2.27 1.8-3.81zM4.41 3.86L3 5.27l2.77 2.77h-.42C2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h11.73l2 2 1.41-1.41L4.41 3.86zM6 18c-2.21 0-4-1.79-4-4s1.79-4 4-4h1.73l8 8H6z"},"children":[]}]};exports.ic_cloud_off_outline=ic_cloud_off_outline;var ic_cloud_off_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 15c0-1.66-1.34-3-3-3h-1.5v-.5C17.5 8.46 15.04 6 12 6c-.77 0-1.49.17-2.16.46L20.79 17.4c.73-.55 1.21-1.41 1.21-2.4zM2 14c0 2.21 1.79 4 4 4h9.73l-8-8H6c-2.21 0-4 1.79-4 4z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M19.35 10.04C18.67 6.59 15.64 4 12 4c-1.33 0-2.57.36-3.65.97l1.49 1.49C10.51 6.17 11.23 6 12 6c3.04 0 5.5 2.46 5.5 5.5v.5H19c1.66 0 3 1.34 3 3 0 .99-.48 1.85-1.21 2.4l1.41 1.41c1.09-.92 1.8-2.27 1.8-3.81 0-2.64-2.05-4.78-4.65-4.96zM3 5.27l2.77 2.77h-.42C2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h11.73l2 2 1.41-1.41L4.41 3.86 3 5.27zM7.73 10l8 8H6c-2.21 0-4-1.79-4-4s1.79-4 4-4h1.73z"},"children":[]}]};exports.ic_cloud_off_twotone=ic_cloud_off_twotone;var ic_cloud_queue={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4s1.79-4 4-4h.71C7.37 7.69 9.48 6 12 6c3.04 0 5.5 2.46 5.5 5.5v.5H19c1.66 0 3 1.34 3 3s-1.34 3-3 3z"},"children":[]}]};exports.ic_cloud_queue=ic_cloud_queue;var ic_cloud_queue_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4s1.79-4 4-4h.71C7.37 7.69 9.48 6 12 6c3.04 0 5.5 2.46 5.5 5.5v.5H19c1.66 0 3 1.34 3 3s-1.34 3-3 3z"},"children":[]}]};exports.ic_cloud_queue_outline=ic_cloud_queue_outline;var ic_cloud_queue_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 12h-1.5v-.5C17.5 8.46 15.04 6 12 6c-2.52 0-4.63 1.69-5.29 4H6c-2.21 0-4 1.79-4 4s1.79 4 4 4h13c1.66 0 3-1.34 3-3s-1.34-3-3-3z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4s1.79-4 4-4h.71C7.37 7.69 9.48 6 12 6c3.04 0 5.5 2.46 5.5 5.5v.5H19c1.66 0 3 1.34 3 3s-1.34 3-3 3z"},"children":[]}]};exports.ic_cloud_queue_twotone=ic_cloud_queue_twotone;var ic_cloud_upload={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM14 13v4h-4v-4H7l5-5 5 5h-3z"},"children":[]}]};exports.ic_cloud_upload=ic_cloud_upload;var ic_cloud_upload_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.94 6 12 6c2.62 0 4.88 1.86 5.39 4.43l.3 1.5 1.53.11c1.56.1 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3zM8 13h2.55v3h2.9v-3H16l-4-4z"},"children":[]}]};exports.ic_cloud_upload_outline=ic_cloud_upload_outline;var ic_cloud_upload_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19.21 12.04l-1.53-.11-.3-1.5C16.88 7.86 14.62 6 12 6 9.94 6 8.08 7.14 7.12 8.96l-.5.95-1.07.11C3.53 10.24 2 11.95 2 14c0 2.21 1.79 4 4 4h13c1.65 0 3-1.35 3-3 0-1.55-1.22-2.86-2.79-2.96zm-5.76.96v3h-2.91v-3H8l4-4 4 4h-2.55z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.94 6 12 6c2.62 0 4.88 1.86 5.39 4.43l.3 1.5 1.53.11c1.56.1 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3zM8 13h2.55v3h2.9v-3H16l-4-4z"},"children":[]}]};exports.ic_cloud_upload_twotone=ic_cloud_upload_twotone;var ic_create_new_folder={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 6h-8l-2-2H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-1 8h-3v3h-2v-3h-3v-2h3V9h2v3h3v2z"},"children":[]}]};exports.ic_create_new_folder=ic_create_new_folder;var ic_create_new_folder_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 6h-8l-2-2H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm0 12H4V6h5.17l2 2H20v10zm-8-4h2v2h2v-2h2v-2h-2v-2h-2v2h-2z"},"children":[]}]};exports.ic_create_new_folder_outline=ic_create_new_folder_outline;var ic_create_new_folder_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11.17 8l-.59-.59L9.17 6H4v12h16V8h-8.83zM14 10h2v2h2v2h-2v2h-2v-2h-2v-2h2v-2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 6h-8l-2-2H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm0 12H4V6h5.17l1.41 1.41.59.59H20v10zm-8-4h2v2h2v-2h2v-2h-2v-2h-2v2h-2z"},"children":[]}]};exports.ic_create_new_folder_twotone=ic_create_new_folder_twotone;var ic_download_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 9h-4V3H9v6H5l7 7 7-7zm-8 2V5h2v6h1.17L12 13.17 9.83 11H11zm-6 7h14v2H5z"},"children":[]}]};exports.ic_download_outline=ic_download_outline;var ic_download_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13 9V5h-2v6H9.83L12 13.17 14.17 11H13z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M15 9V3H9v6H5l7 7 7-7h-4zm-3 4.17L9.83 11H11V5h2v6h1.17L12 13.17zM5 18h14v2H5z"},"children":[]}]};exports.ic_download_twotone=ic_download_twotone;var ic_download_done_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 18h14v2H5v-2zm4.6-2.7L5 10.7l2-1.9 2.6 2.6L17 4l2 2-9.4 9.3z"},"children":[]}]};exports.ic_download_done_outline=ic_download_done_outline;var ic_download_done_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 18h14v2H5v-2zm4.6-2.7L5 10.7l2-1.9 2.6 2.6L17 4l2 2-9.4 9.3z"},"children":[]}]};exports.ic_download_done_twotone=ic_download_done_twotone;var ic_drive_file_move={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 6h-8l-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-6 12v-3h-4v-4h4V8l5 5-5 5z"},"children":[]}]};exports.ic_drive_file_move=ic_drive_file_move;var ic_drive_file_move_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V8h16v10zm-8.01-9l-1.41 1.41L12.16 12H8v2h4.16l-1.59 1.59L11.99 17 16 13.01 11.99 9z"},"children":[]}]};exports.ic_drive_file_move_outline=ic_drive_file_move_outline;var ic_drive_file_rename_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18.41 5.8L17.2 4.59c-.78-.78-2.05-.78-2.83 0l-2.68 2.68L3 15.96V20h4.04l8.74-8.74 2.63-2.63c.79-.78.79-2.05 0-2.83zM6.21 18H5v-1.21l8.66-8.66 1.21 1.21L6.21 18zM11 20l4-4h6v4H11z"},"children":[]}]};exports.ic_drive_file_rename_outline=ic_drive_file_rename_outline;var ic_drive_folder_upload={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V8h16v10zM8 13.01l1.41 1.41L11 12.84V17h2v-4.16l1.59 1.59L16 13.01 12.01 9 8 13.01z"},"children":[]}]};exports.ic_drive_folder_upload=ic_drive_folder_upload;var ic_file_download={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 9h-4V3H9v6H5l7 7 7-7zM5 18v2h14v-2H5z"},"children":[]}]};exports.ic_file_download=ic_file_download;var ic_file_download_done={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 18h14v2H5v-2zm4.6-2.7L5 10.7l2-1.9 2.6 2.6L17 4l2 2-9.4 9.3z"},"children":[]}]};exports.ic_file_download_done=ic_file_download_done;var ic_file_upload={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9 16h6v-6h4l-7-7-7 7h4zm-4 2h14v2H5z"},"children":[]}]};exports.ic_file_upload=ic_file_upload;var ic_folder={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2h-8l-2-2z"},"children":[]}]};exports.ic_folder=ic_folder;var ic_folder_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9.17 6l2 2H20v10H4V6h5.17M10 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2h-8l-2-2z"},"children":[]}]};exports.ic_folder_outline=ic_folder_outline;var ic_folder_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11.17 8l-.58-.59L9.17 6H4v12h16V8h-8z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V6h5.17l1.41 1.41.59.59H20v10z"},"children":[]}]};exports.ic_folder_twotone=ic_folder_twotone;var ic_folder_open={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V8h16v10z"},"children":[]}]};exports.ic_folder_open=ic_folder_open;var ic_folder_open_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V8h16v10z"},"children":[]}]};exports.ic_folder_open_outline=ic_folder_open_outline;var ic_folder_open_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 8h16v10H4z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V8h16v10z"},"children":[]}]};exports.ic_folder_open_twotone=ic_folder_open_twotone;var ic_folder_shared={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-5 3c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm4 8h-8v-1c0-1.33 2.67-2 4-2s4 .67 4 2v1z"},"children":[]}]};exports.ic_folder_shared=ic_folder_shared;var ic_folder_shared_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V6h5.17l2 2H20v10zm-5-5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-4 4h8v-1c0-1.33-2.67-2-4-2s-4 .67-4 2v1z"},"children":[]}]};exports.ic_folder_shared_outline=ic_folder_shared_outline;var ic_folder_shared_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11.17 8l-.59-.59L9.17 6H4v12h16V8h-8.83zM19 16v1h-8v-1c0-1.33 2.67-2 4-2s4 .67 4 2zm-4-7c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V6h5.17l2 2H20v10zm-5-5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-4 3v1h8v-1c0-1.33-2.67-2-4-2s-4 .67-4 2z"},"children":[]}]};exports.ic_folder_shared_twotone=ic_folder_shared_twotone;var ic_grid_view={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{"fill-rule":"evenodd"},"children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]}]},{"name":"path","attribs":{"d":"M3 3v8h8V3H3zm6 6H5V5h4v4zm-6 4v8h8v-8H3zm6 6H5v-4h4v4zm4-16v8h8V3h-8zm6 6h-4V5h4v4zm-6 4v8h8v-8h-8zm6 6h-4v-4h4v4z"},"children":[{"name":"path","attribs":{"d":"M3 3v8h8V3H3zm6 6H5V5h4v4zm-6 4v8h8v-8H3zm6 6H5v-4h4v4zm4-16v8h8V3h-8zm6 6h-4V5h4v4zm-6 4v8h8v-8h-8zm6 6h-4v-4h4v4z"},"children":[]}]}]}]};exports.ic_grid_view=ic_grid_view;var ic_request_quote={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M14,2H6C4.9,2,4.01,2.9,4.01,4L4,20c0,1.1,0.89,2,1.99,2H18c1.1,0,2-0.9,2-2V8L14,2z M15,12h-4v1h3c0.55,0,1,0.45,1,1v3 c0,0.55-0.45,1-1,1h-1v1h-2v-1H9v-2h4v-1h-3c-0.55,0-1-0.45-1-1v-3c0-0.55,0.45-1,1-1h1V9h2v1h2V12z M13,8V3.5L17.5,8H13z"},"children":[{"name":"path","attribs":{"d":"M14,2H6C4.9,2,4.01,2.9,4.01,4L4,20c0,1.1,0.89,2,1.99,2H18c1.1,0,2-0.9,2-2V8L14,2z M15,12h-4v1h3c0.55,0,1,0.45,1,1v3 c0,0.55-0.45,1-1,1h-1v1h-2v-1H9v-2h4v-1h-3c-0.55,0-1-0.45-1-1v-3c0-0.55,0.45-1,1-1h1V9h2v1h2V12z M13,8V3.5L17.5,8H13z"},"children":[]}]}]}]};exports.ic_request_quote=ic_request_quote;var ic_request_quote_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M14,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8L14,2z M6,20V4h7v4h5v12H6z M11,19h2v-1h1 c0.55,0,1-0.45,1-1v-3c0-0.55-0.45-1-1-1h-3v-1h4v-2h-2V9h-2v1h-1c-0.55,0-1,0.45-1,1v3c0,0.55,0.45,1,1,1h3v1H9v2h2V19z"},"children":[{"name":"path","attribs":{"d":"M14,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8L14,2z M6,20V4h7v4h5v12H6z M11,19h2v-1h1 c0.55,0,1-0.45,1-1v-3c0-0.55-0.45-1-1-1h-3v-1h4v-2h-2V9h-2v1h-1c-0.55,0-1,0.45-1,1v3c0,0.55,0.45,1,1,1h3v1H9v2h2V19z"},"children":[]}]}]}]};exports.ic_request_quote_outline=ic_request_quote_outline;var ic_request_quote_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M6,20V4h7v4h5v12H6z M11,19h2v-1h1c0.55,0,1-0.45,1-1v-3c0-0.55-0.45-1-1-1h-3v-1h4v-2h-2V9h-2v1h-1 c-0.55,0-1,0.45-1,1v3c0,0.55,0.45,1,1,1h3v1H9v2h2V19z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M6,20V4h7v4h5v12H6z M11,19h2v-1h1c0.55,0,1-0.45,1-1v-3c0-0.55-0.45-1-1-1h-3v-1h4v-2h-2V9h-2v1h-1 c-0.55,0-1,0.45-1,1v3c0,0.55,0.45,1,1,1h3v1H9v2h2V19z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M14,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8L14,2z M6,20V4h7v4h5v12H6z M11,19h2v-1h1 c0.55,0,1-0.45,1-1v-3c0-0.55-0.45-1-1-1h-3v-1h4v-2h-2V9h-2v1h-1c-0.55,0-1,0.45-1,1v3c0,0.55,0.45,1,1,1h3v1H9v2h2V19z"},"children":[{"name":"path","attribs":{"d":"M14,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8L14,2z M6,20V4h7v4h5v12H6z M11,19h2v-1h1 c0.55,0,1-0.45,1-1v-3c0-0.55-0.45-1-1-1h-3v-1h4v-2h-2V9h-2v1h-1c-0.55,0-1,0.45-1,1v3c0,0.55,0.45,1,1,1h3v1H9v2h2V19z"},"children":[]}]}]}]};exports.ic_request_quote_twotone=ic_request_quote_twotone;var ic_rule_folder={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M7.83,16L5,13.17 l1.41-1.41l1.41,1.41l3.54-3.54l1.41,1.41L7.83,16z M17.41,13L19,14.59L17.59,16L16,14.41L14.41,16L13,14.59L14.59,13L13,11.41 L14.41,10L16,11.59L17.59,10L19,11.41L17.41,13z"},"children":[{"name":"path","attribs":{"d":"M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M7.83,16L5,13.17 l1.41-1.41l1.41,1.41l3.54-3.54l1.41,1.41L7.83,16z M17.41,13L19,14.59L17.59,16L16,14.41L14.41,16L13,14.59L14.59,13L13,11.41 L14.41,10L16,11.59L17.59,10L19,11.41L17.41,13z"},"children":[]}]}]}]};exports.ic_rule_folder=ic_rule_folder;var ic_rule_folder_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M7.83,16L5,13.17l1.41-1.41l1.41,1.41l3.54-3.54l1.41,1.41L7.83,16z M17.41,13L19,14.59L17.59,16L16,14.41L14.41,16 L13,14.59L14.59,13L13,11.41L14.41,10L16,11.59L17.59,10L19,11.41L17.41,13z M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18 c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M20,18L4,18V6h5.17l2,2H20V18z"},"children":[{"name":"path","attribs":{"d":"M7.83,16L5,13.17l1.41-1.41l1.41,1.41l3.54-3.54l1.41,1.41L7.83,16z M17.41,13L19,14.59L17.59,16L16,14.41L14.41,16 L13,14.59L14.59,13L13,11.41L14.41,10L16,11.59L17.59,10L19,11.41L17.41,13z M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18 c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M20,18L4,18V6h5.17l2,2H20V18z"},"children":[]}]}]}]};exports.ic_rule_folder_outline=ic_rule_folder_outline;var ic_rule_folder_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M11.17,8l-2-2H4v12l16,0V8H11.17z M7.83,16L5,13.17l1.41-1.41l1.41,1.41l3.54-3.54l1.41,1.41L7.83,16z M19,14.59L17.59,16L16,14.41L14.41,16L13,14.59L14.59,13L13,11.41L14.41,10L16,11.59L17.59,10L19,11.41L17.41,13L19,14.59z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M11.17,8l-2-2H4v12l16,0V8H11.17z M7.83,16L5,13.17l1.41-1.41l1.41,1.41l3.54-3.54l1.41,1.41L7.83,16z M19,14.59L17.59,16L16,14.41L14.41,16L13,14.59L14.59,13L13,11.41L14.41,10L16,11.59L17.59,10L19,11.41L17.41,13L19,14.59z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M7.83,16L5,13.17l1.41-1.41l1.41,1.41l3.54-3.54l1.41,1.41L7.83,16z M17.41,13L19,14.59L17.59,16L16,14.41L14.41,16 L13,14.59L14.59,13L13,11.41L14.41,10L16,11.59L17.59,10L19,11.41L17.41,13z M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18 c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M20,18L4,18V6h5.17l2,2H20V18z"},"children":[{"name":"path","attribs":{"d":"M7.83,16L5,13.17l1.41-1.41l1.41,1.41l3.54-3.54l1.41,1.41L7.83,16z M17.41,13L19,14.59L17.59,16L16,14.41L14.41,16 L13,14.59L14.59,13L13,11.41L14.41,10L16,11.59L17.59,10L19,11.41L17.41,13z M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18 c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M20,18L4,18V6h5.17l2,2H20V18z"},"children":[]}]}]}]};exports.ic_rule_folder_twotone=ic_rule_folder_twotone;var ic_snippet_folder={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M15.88,10.5l1.62,1.62v3.38l-3,0v-5H15.88z M22,8v10c0,1.1-0.9,2-2,2H4c-1.1,0-2-0.9-2-2L2.01,6C2.01,4.9,2.9,4,4,4h6l2,2 h8C21.1,6,22,6.9,22,8z M19,11.5L16.5,9H13v8l6,0V11.5z"},"children":[{"name":"path","attribs":{"d":"M15.88,10.5l1.62,1.62v3.38l-3,0v-5H15.88z M22,8v10c0,1.1-0.9,2-2,2H4c-1.1,0-2-0.9-2-2L2.01,6C2.01,4.9,2.9,4,4,4h6l2,2 h8C21.1,6,22,6.9,22,8z M19,11.5L16.5,9H13v8l6,0V11.5z"},"children":[]}]}]}]};exports.ic_snippet_folder=ic_snippet_folder;var ic_snippet_folder_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M20,18L4,18V6h5.17 l2,2H20V18z M17.5,12.12v3.38l-3,0v-5h1.38L17.5,12.12z M13,9v8l6,0v-5.5L16.5,9H13z"},"children":[{"name":"path","attribs":{"d":"M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M20,18L4,18V6h5.17 l2,2H20V18z M17.5,12.12v3.38l-3,0v-5h1.38L17.5,12.12z M13,9v8l6,0v-5.5L16.5,9H13z"},"children":[]}]}]}]};exports.ic_snippet_folder_outline=ic_snippet_folder_outline;var ic_snippet_folder_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M9.17,6H4v12l16,0V8h-8.83L9.17,6z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M9.17,6H4v12l16,0V8h-8.83L9.17,6z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M20,18L4,18V6h5.17 l2,2H20V18z M17.5,12.12v3.38l-3,0v-5h1.38L17.5,12.12z M16.5,9H13v8l6,0v-5.5L16.5,9L16.5,9z"},"children":[{"name":"path","attribs":{"d":"M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M20,18L4,18V6h5.17 l2,2H20V18z M17.5,12.12v3.38l-3,0v-5h1.38L17.5,12.12z M16.5,9H13v8l6,0v-5.5L16.5,9L16.5,9z"},"children":[]}]}]}]};exports.ic_snippet_folder_twotone=ic_snippet_folder_twotone;var ic_text_snippet={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M20.41,8.41l-4.83-4.83C15.21,3.21,14.7,3,14.17,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V9.83 C21,9.3,20.79,8.79,20.41,8.41z M7,7h7v2H7V7z M17,17H7v-2h10V17z M17,13H7v-2h10V13z"},"children":[{"name":"path","attribs":{"d":"M20.41,8.41l-4.83-4.83C15.21,3.21,14.7,3,14.17,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V9.83 C21,9.3,20.79,8.79,20.41,8.41z M7,7h7v2H7V7z M17,17H7v-2h10V17z M17,13H7v-2h10V13z"},"children":[]}]}]}]};exports.ic_text_snippet=ic_text_snippet;var ic_text_snippet_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M14.17,5L19,9.83V19H5V5L14.17,5L14.17,5 M14.17,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V9.83 c0-0.53-0.21-1.04-0.59-1.41l-4.83-4.83C15.21,3.21,14.7,3,14.17,3L14.17,3z M7,15h10v2H7V15z M7,11h10v2H7V11z M7,7h7v2H7V7z"},"children":[{"name":"path","attribs":{"d":"M14.17,5L19,9.83V19H5V5L14.17,5L14.17,5 M14.17,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V9.83 c0-0.53-0.21-1.04-0.59-1.41l-4.83-4.83C15.21,3.21,14.7,3,14.17,3L14.17,3z M7,15h10v2H7V15z M7,11h10v2H7V11z M7,7h7v2H7V7z"},"children":[]}]}]}]};exports.ic_text_snippet_outline=ic_text_snippet_outline;var ic_text_snippet_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M14.17,5L19,9.83V19H5V5L14.17,5L14.17,5 M7,15h10v2H7V15z M7,11h10v2H7V11z M7,7h7v2H7V7z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M14.17,5L19,9.83V19H5V5L14.17,5L14.17,5 M7,15h10v2H7V15z M7,11h10v2H7V11z M7,7h7v2H7V7z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M14.17,5L19,9.83V19H5V5L14.17,5L14.17,5 M14.17,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V9.83 c0-0.53-0.21-1.04-0.59-1.41l-4.83-4.83C15.21,3.21,14.7,3,14.17,3L14.17,3z M7,15h10v2H7V15z M7,11h10v2H7V11z M7,7h7v2H7V7z"},"children":[{"name":"path","attribs":{"d":"M14.17,5L19,9.83V19H5V5L14.17,5L14.17,5 M14.17,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V9.83 c0-0.53-0.21-1.04-0.59-1.41l-4.83-4.83C15.21,3.21,14.7,3,14.17,3L14.17,3z M7,15h10v2H7V15z M7,11h10v2H7V11z M7,7h7v2H7V7z"},"children":[]}]}]}]};exports.ic_text_snippet_twotone=ic_text_snippet_twotone;var ic_topic={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M14,16H6v-2h8V16z M18,12H6v-2h12V12z"},"children":[{"name":"path","attribs":{"d":"M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M14,16H6v-2h8V16z M18,12H6v-2h12V12z"},"children":[]}]}]}]};exports.ic_topic=ic_topic;var ic_topic_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16.77c0.68,0,1.23-0.56,1.23-1.23V8C22,6.9,21.1,6,20,6z M20,18L4,18V6h5.17l2,2H20V18z M18,12H6v-2h12V12z M14,16H6v-2h8V16z"},"children":[{"name":"path","attribs":{"d":"M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16.77c0.68,0,1.23-0.56,1.23-1.23V8C22,6.9,21.1,6,20,6z M20,18L4,18V6h5.17l2,2H20V18z M18,12H6v-2h12V12z M14,16H6v-2h8V16z"},"children":[]}]}]}]};exports.ic_topic_outline=ic_topic_outline;var ic_topic_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M20,18L4,18V6h5.17l2,2H20V18z M18,12H6v-2h12V12z M14,16H6v-2h8V16z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M20,18L4,18V6h5.17l2,2H20V18z M18,12H6v-2h12V12z M14,16H6v-2h8V16z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16.77c0.68,0,1.23-0.56,1.23-1.23V8C22,6.9,21.1,6,20,6z M20,18L4,18V6h5.17l2,2H20V18z M18,12H6v-2h12V12z M14,16H6v-2h8V16z"},"children":[{"name":"path","attribs":{"d":"M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16.77c0.68,0,1.23-0.56,1.23-1.23V8C22,6.9,21.1,6,20,6z M20,18L4,18V6h5.17l2,2H20V18z M18,12H6v-2h12V12z M14,16H6v-2h8V16z"},"children":[]}]}]}]};exports.ic_topic_twotone=ic_topic_twotone;var ic_upload_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9 16h6v-6h4l-7-7-7 7h4v6zm3-10.17L14.17 8H13v6h-2V8H9.83L12 5.83zM5 18h14v2H5z"},"children":[]}]};exports.ic_upload_outline=ic_upload_outline;var ic_upload_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9.83 8H11v6h2V8h1.17L12 5.83z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 3l-7 7h4v6h6v-6h4l-7-7zm1 5v6h-2V8H9.83L12 5.83 14.17 8H13zM5 18h14v2H5z"},"children":[]}]};exports.ic_upload_twotone=ic_upload_twotone;var ic_upload_file={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm4 18H6V4h7v5h5v11zM8 15.01l1.41 1.41L11 14.84V19h2v-4.16l1.59 1.59L16 15.01 12.01 11z"},"children":[]}]};exports.ic_upload_file=ic_upload_file;var ic_workspaces_filled={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6 13c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm6-10C9.8 3 8 4.8 8 7s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm6 10c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4z"},"children":[]}]};exports.ic_workspaces_filled=ic_workspaces_filled;var ic_workspaces_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6 15c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0-2c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm6-8c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0-2C9.8 3 8 4.8 8 7s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm6 12c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0-2c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4z"},"children":[]}]};exports.ic_workspaces_outline=ic_workspaces_outline;var ic_browser_not_supported={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M19,6v10.5l1.95,1.95C20.98,18.3,21,18.15,21,18V6c0-1.1-0.9-2-2-2H6.5l2,2H19z"},"children":[{"name":"path","attribs":{"d":"M19,6v10.5l1.95,1.95C20.98,18.3,21,18.15,21,18V6c0-1.1-0.9-2-2-2H6.5l2,2H19z"},"children":[]}]},{"name":"path","attribs":{"d":"M3.22,3.32L1.95,4.59L3,5.64L3,18c0,1.1,0.9,2,2,2h12.36l2.06,2.06l1.27-1.27L3.22,3.32z M15,18H5V7.64L15.36,18H15z"},"children":[{"name":"path","attribs":{"d":"M3.22,3.32L1.95,4.59L3,5.64L3,18c0,1.1,0.9,2,2,2h12.36l2.06,2.06l1.27-1.27L3.22,3.32z M15,18H5V7.64L15.36,18H15z"},"children":[]}]}]}]}]}]};exports.ic_browser_not_supported=ic_browser_not_supported;var ic_browser_not_supported_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M19,6v10.5l1.95,1.95C20.98,18.3,21,18.15,21,18V6c0-1.1-0.9-2-2-2H6.5l2,2H19z"},"children":[{"name":"path","attribs":{"d":"M19,6v10.5l1.95,1.95C20.98,18.3,21,18.15,21,18V6c0-1.1-0.9-2-2-2H6.5l2,2H19z"},"children":[]}]},{"name":"path","attribs":{"d":"M3.22,3.32L1.95,4.59L3,5.64L3,18c0,1.1,0.9,2,2,2h12.36l2.06,2.06l1.27-1.27L3.22,3.32z M15,18H5V7.64L15.36,18H15z"},"children":[{"name":"path","attribs":{"d":"M3.22,3.32L1.95,4.59L3,5.64L3,18c0,1.1,0.9,2,2,2h12.36l2.06,2.06l1.27-1.27L3.22,3.32z M15,18H5V7.64L15.36,18H15z"},"children":[]}]}]}]}]}]};exports.ic_browser_not_supported_outline=ic_browser_not_supported_outline;var ic_browser_not_supported_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M19,6v10.5l1.95,1.95C20.98,18.3,21,18.15,21,18V6c0-1.1-0.9-2-2-2H6.5l2,2H19z"},"children":[{"name":"path","attribs":{"d":"M19,6v10.5l1.95,1.95C20.98,18.3,21,18.15,21,18V6c0-1.1-0.9-2-2-2H6.5l2,2H19z"},"children":[]}]},{"name":"path","attribs":{"d":"M3.22,3.32L1.95,4.59L3,5.64L3,18c0,1.1,0.9,2,2,2h12.36l2.06,2.06l1.27-1.27L3.22,3.32z M15,18H5V7.64L15.36,18H15z"},"children":[{"name":"path","attribs":{"d":"M3.22,3.32L1.95,4.59L3,5.64L3,18c0,1.1,0.9,2,2,2h12.36l2.06,2.06l1.27-1.27L3.22,3.32z M15,18H5V7.64L15.36,18H15z"},"children":[]}]}]}]}]}]};exports.ic_browser_not_supported_twotone=ic_browser_not_supported_twotone;var ic_cast={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none","opacity":".1"},"children":[]},{"name":"path","attribs":{"d":"M21 3H3c-1.1 0-2 .9-2 2v3h2V5h18v14h-7v2h7c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM1 18v3h3c0-1.66-1.34-3-3-3zm0-4v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0-4v2c4.97 0 9 4.03 9 9h2c0-6.08-4.93-11-11-11z"},"children":[]}]};exports.ic_cast=ic_cast;var ic_cast_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0zm0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 3H3c-1.1 0-2 .9-2 2v3h2V5h18v14h-7v2h7c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM1 18v3h3c0-1.66-1.34-3-3-3zm0-4v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0-4v2c4.97 0 9 4.03 9 9h2c0-6.08-4.93-11-11-11z"},"children":[]}]};exports.ic_cast_outline=ic_cast_outline;var ic_cast_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0zm0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 3H3c-1.1 0-2 .9-2 2v3h2V5h18v14h-7v2h7c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM1 18v3h3c0-1.66-1.34-3-3-3zm0-4v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0-4v2c4.97 0 9 4.03 9 9h2c0-6.08-4.93-11-11-11z"},"children":[]}]};exports.ic_cast_twotone=ic_cast_twotone;var ic_cast_connected={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none","opacity":".1"},"children":[]},{"name":"path","attribs":{"d":"M1 18v3h3c0-1.66-1.34-3-3-3zm0-4v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm18-7H5v1.63c3.96 1.28 7.09 4.41 8.37 8.37H19V7zM1 10v2c4.97 0 9 4.03 9 9h2c0-6.08-4.93-11-11-11zm20-7H3c-1.1 0-2 .9-2 2v3h2V5h18v14h-7v2h7c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"},"children":[]}]};exports.ic_cast_connected=ic_cast_connected;var ic_cast_connected_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0zm0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M1 18v3h3c0-1.66-1.34-3-3-3zm0-4v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0-4v2c4.97 0 9 4.03 9 9h2c0-6.08-4.93-11-11-11zm20-7H3c-1.1 0-2 .9-2 2v3h2V5h18v14h-7v2h7c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5 7v2h12v6h-3v2h5V7z"},"children":[]}]};exports.ic_cast_connected_outline=ic_cast_connected_outline;var ic_cast_connected_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0zm0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 9H5.95c2.83 1.17 5.15 3.3 6.56 6H17V9z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M1 18v3h3c0-1.66-1.34-3-3-3zm0-4v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0-4v2c4.97 0 9 4.03 9 9h2c0-6.08-4.93-11-11-11zm20-7H3c-1.1 0-2 .9-2 2v3h2V5h18v14h-7v2h7c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5 7v1.63c.32.1.63.24.95.37H17v6h-4.49c.15.29.29.58.42.88.16.36.31.74.44 1.12H19V7H5z"},"children":[]}]};exports.ic_cast_connected_twotone=ic_cast_connected_twotone;var ic_cast_for_education={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M21,3H3C1.9,3,1,3.9,1,5v3h2V5h18v14h-7v2h7c1.1,0,2-0.9,2-2V5C23,3.9,22.1,3,21,3z M1,18v3h3C4,19.34,2.66,18,1,18z M1,14 v2c2.76,0,5,2.24,5,5h2C8,17.13,4.87,14,1,14z M1,10v2c4.97,0,9,4.03,9,9h2C12,14.92,7.07,10,1,10z M11,11.09v2L14.5,15l3.5-1.91 v-2L14.5,13L11,11.09z M14.5,6L9,9l5.5,3L20,9L14.5,6z"},"children":[{"name":"path","attribs":{"d":"M21,3H3C1.9,3,1,3.9,1,5v3h2V5h18v14h-7v2h7c1.1,0,2-0.9,2-2V5C23,3.9,22.1,3,21,3z M1,18v3h3C4,19.34,2.66,18,1,18z M1,14 v2c2.76,0,5,2.24,5,5h2C8,17.13,4.87,14,1,14z M1,10v2c4.97,0,9,4.03,9,9h2C12,14.92,7.07,10,1,10z M11,11.09v2L14.5,15l3.5-1.91 v-2L14.5,13L11,11.09z M14.5,6L9,9l5.5,3L20,9L14.5,6z"},"children":[]}]},{"name":"path","attribs":{"d":"M0,0h24v24H0V0z","fill":"none"},"children":[{"name":"path","attribs":{"d":"M0,0h24v24H0V0z","fill":"none"},"children":[]}]}]}]};exports.ic_cast_for_education=ic_cast_for_education;var ic_cast_for_education_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 3H3c-1.1 0-2 .9-2 2v3h2V5h18v14h-7v2h7c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM1 18v3h3c0-1.66-1.34-3-3-3zm0-4v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0-4v2c4.97 0 9 4.03 9 9h2c0-6.08-4.93-11-11-11zm10 1.09v2L14.5 15l3.5-1.91v-2L14.5 13 11 11.09zM14.5 6L9 9l5.5 3L20 9l-5.5-3z"},"children":[]}]};exports.ic_cast_for_education_outline=ic_cast_for_education_outline;var ic_cast_for_education_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 3H3c-1.1 0-2 .9-2 2v3h2V5h18v14h-7v2h7c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM1 18v3h3c0-1.66-1.34-3-3-3zm0-4v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0-4v2c4.97 0 9 4.03 9 9h2c0-6.08-4.93-11-11-11zm10 1.09v2L14.5 15l3.5-1.91v-2L14.5 13 11 11.09zM14.5 6L9 9l5.5 3L20 9l-5.5-3z"},"children":[]}]};exports.ic_cast_for_education_twotone=ic_cast_for_education_twotone;var ic_computer={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 18c1.1 0 1.99-.9 1.99-2L22 6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2H0v2h24v-2h-4zM4 6h16v10H4V6z"},"children":[]}]};exports.ic_computer=ic_computer;var ic_computer_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 18c1.1 0 1.99-.9 1.99-2L22 6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2H0v2h24v-2h-4zM4 6h16v10H4V6z"},"children":[]}]};exports.ic_computer_outline=ic_computer_outline;var ic_computer_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 6h16v10H4z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 18c1.1 0 1.99-.9 1.99-2L22 6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2H0v2h24v-2h-4zM4 6h16v10H4V6z"},"children":[]}]};exports.ic_computer_twotone=ic_computer_twotone;var ic_connected_tv={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.1-.9-2-2-2zm0 14H3V5h18v12zM4 14v2h2c0-1.11-.89-2-2-2zm0-3v1.43c1.97 0 3.57 1.6 3.57 3.57H9c0-2.76-2.24-5-5-5zm0-3v1.45c3.61 0 6.55 2.93 6.55 6.55H12c0-4.42-3.59-8-8-8z"},"children":[]}]};exports.ic_connected_tv=ic_connected_tv;var ic_desktop_mac={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7l-2 3v1h8v-1l-2-3h7c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 12H3V4h18v10z"},"children":[]}]};exports.ic_desktop_mac=ic_desktop_mac;var ic_desktop_mac_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7l-2 3v1h8v-1l-2-3h7c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 12H3V4h18v10z"},"children":[]}]};exports.ic_desktop_mac_outline=ic_desktop_mac_outline;var ic_desktop_mac_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 4h18v10H3z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M21 2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7l-2 3v1h8v-1l-2-3h7c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 12H3V4h18v10z"},"children":[]}]};exports.ic_desktop_mac_twotone=ic_desktop_mac_twotone;var ic_desktop_windows={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7v2H8v2h8v-2h-2v-2h7c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H3V4h18v12z"},"children":[]}]};exports.ic_desktop_windows=ic_desktop_windows;var ic_desktop_windows_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7v2H8v2h8v-2h-2v-2h7c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H3V4h18v12z"},"children":[]}]};exports.ic_desktop_windows_outline=ic_desktop_windows_outline;var ic_desktop_windows_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 4h18v12H3z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M21 2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7v2H8v2h8v-2h-2v-2h7c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H3V4h18v12z"},"children":[]}]};exports.ic_desktop_windows_twotone=ic_desktop_windows_twotone;var ic_developer_board={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M22 9V7h-2V5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-2h2v-2h-2v-2h2v-2h-2V9h2zm-4 10H4V5h14v14zM6 13h5v4H6zm6-6h4v3h-4zM6 7h5v5H6zm6 4h4v6h-4z"},"children":[]},{"name":"path","attribs":{"d":"M0 0h24v24H0zm0 0h24v24H0z","fill":"none"},"children":[]}]};exports.ic_developer_board=ic_developer_board;var ic_developer_board_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0zm0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 9V7h-2V5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-2h2v-2h-2v-2h2v-2h-2V9h2zm-4 10H4V5h14v14zM6 13h5v4H6v-4zm6-6h4v3h-4V7zM6 7h5v5H6V7zm6 4h4v6h-4v-6z"},"children":[]}]};exports.ic_developer_board_outline=ic_developer_board_outline;var ic_developer_board_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0zm0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 19h14V5H4v14zm8-12h4v3h-4V7zm0 4h4v6h-4v-6zM6 7h5v5H6V7zm0 6h5v4H6v-4z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M6 13h5v4H6zm0-6h5v5H6zm6 0h4v3h-4zm0 4h4v6h-4zm10-2V7h-2V5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-2h2v-2h-2v-2h2v-2h-2V9h2zm-4 10H4V5h14v14z"},"children":[]}]};exports.ic_developer_board_twotone=ic_developer_board_twotone;var ic_device_hub={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 16l-4-4V8.82C14.16 8.4 15 7.3 15 6c0-1.66-1.34-3-3-3S9 4.34 9 6c0 1.3.84 2.4 2 2.82V12l-4 4H3v5h5v-3.05l4-4.2 4 4.2V21h5v-5h-4z"},"children":[]}]};exports.ic_device_hub=ic_device_hub;var ic_device_hub_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0zm0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 16l-4-4V8.82C14.16 8.4 15 7.3 15 6c0-1.66-1.34-3-3-3S9 4.34 9 6c0 1.3.84 2.4 2 2.82V12l-4 4H3v5h5v-3.05l4-4.2 4 4.2V21h5v-5h-4z"},"children":[]}]};exports.ic_device_hub_outline=ic_device_hub_outline;var ic_device_hub_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0zm0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 16l-4-4V8.82C14.16 8.4 15 7.3 15 6c0-1.66-1.34-3-3-3S9 4.34 9 6c0 1.3.84 2.4 2 2.82V12l-4 4H3v5h5v-3.05l4-4.2 4 4.2V21h5v-5h-4z"},"children":[]}]};exports.ic_device_hub_twotone=ic_device_hub_twotone;var ic_device_unknown={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 1H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 18H7V5h10v14zM12 6.72c-1.96 0-3.5 1.52-3.5 3.47h1.75c0-.93.82-1.75 1.75-1.75s1.75.82 1.75 1.75c0 1.75-2.63 1.57-2.63 4.45h1.76c0-1.96 2.62-2.19 2.62-4.45 0-1.96-1.54-3.47-3.5-3.47zm-.88 8.8h1.76v1.76h-1.76z"},"children":[]}]};exports.ic_device_unknown=ic_device_unknown;var ic_device_unknown_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 1H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 18H7V5h10v14zM12 6.72c-1.96 0-3.5 1.52-3.5 3.47h1.75c0-.93.82-1.75 1.75-1.75s1.75.82 1.75 1.75c0 1.75-2.63 1.57-2.63 4.45h1.76c0-1.96 2.62-2.19 2.62-4.45 0-1.96-1.54-3.47-3.5-3.47zM11 16h2v2h-2v-2z"},"children":[]}]};exports.ic_device_unknown_outline=ic_device_unknown_outline;var ic_device_unknown_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 19h10V5H7v14zm6-1h-2v-2h2v2zM12 6.72c1.96 0 3.5 1.51 3.5 3.47 0 2.26-2.62 2.49-2.62 4.45h-1.76c0-2.88 2.63-2.7 2.63-4.45 0-.93-.82-1.75-1.75-1.75s-1.75.82-1.75 1.75H8.5c0-1.95 1.54-3.47 3.5-3.47z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M11 16h2v2h-2zm6-15H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 18H7V5h10v14zM12 8.44c.93 0 1.75.82 1.75 1.75 0 1.75-2.63 1.57-2.63 4.45h1.76c0-1.96 2.62-2.19 2.62-4.45 0-1.96-1.54-3.47-3.5-3.47s-3.5 1.52-3.5 3.47h1.75c0-.93.82-1.75 1.75-1.75z"},"children":[]}]};exports.ic_device_unknown_twotone=ic_device_unknown_twotone;var ic_devices_other={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 6h18V4H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h4v-2H3V6zm10 6H9v1.78c-.61.55-1 1.33-1 2.22s.39 1.67 1 2.22V20h4v-1.78c.61-.55 1-1.34 1-2.22s-.39-1.67-1-2.22V12zm-2 5.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM22 8h-6c-.5 0-1 .5-1 1v10c0 .5.5 1 1 1h6c.5 0 1-.5 1-1V9c0-.5-.5-1-1-1zm-1 10h-4v-8h4v8z"},"children":[]}]};exports.ic_devices_other=ic_devices_other;var ic_devices_other_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 6h18V4H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h4v-2H3V6zm10 6H9v1.78c-.61.55-1 1.33-1 2.22 0 .89.39 1.67 1 2.22V20h4v-1.78c.61-.55 1-1.34 1-2.22s-.39-1.67-1-2.22V12zm-2 5.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM22 8h-6c-.5 0-1 .5-1 1v10c0 .5.5 1 1 1h6c.5 0 1-.5 1-1V9c0-.5-.5-1-1-1zm-1 10h-4v-8h4v8z"},"children":[]}]};exports.ic_devices_other_outline=ic_devices_other_outline;var ic_devices_other_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 10h4v8h-4z","opacity":".3"},"children":[]},{"name":"circle","attribs":{"cx":"11","cy":"16","opacity":".3","r":"1.5"},"children":[]},{"name":"path","attribs":{"d":"M3 6h18V4H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h4v-2H3V6zm19 2h-6c-.5 0-1 .5-1 1v10c0 .5.5 1 1 1h6c.5 0 1-.5 1-1V9c0-.5-.5-1-1-1zm-1 10h-4v-8h4v8zm-8-6H9v1.78c-.61.55-1 1.33-1 2.22s.39 1.67 1 2.22V20h4v-1.78c.61-.55 1-1.34 1-2.22s-.39-1.67-1-2.22V12zm-2 5.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z"},"children":[]}]};exports.ic_devices_other_twotone=ic_devices_other_twotone;var ic_dock={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8 23h8v-2H8v2zm8-21.99L8 1c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM16 15H8V5h8v10z"},"children":[]}]};exports.ic_dock=ic_dock;var ic_dock_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8 23h8v-2H8v2zm8-21.99L8 1c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM16 15H8V5h8v10z"},"children":[]}]};exports.ic_dock_outline=ic_dock_outline;var ic_dock_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8 5h8v10H8z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M8 21h8v2H8zm8-19.99L8 1c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM16 15H8V5h8v10z"},"children":[]}]};exports.ic_dock_twotone=ic_dock_twotone;var ic_gamepad={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15 7.5V2H9v5.5l3 3 3-3zM7.5 9H2v6h5.5l3-3-3-3zM9 16.5V22h6v-5.5l-3-3-3 3zM16.5 9l-3 3 3 3H22V9h-5.5z"},"children":[]}]};exports.ic_gamepad=ic_gamepad;var ic_gamepad_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13 4v2.67l-1 1-1-1V4h2m7 7v2h-2.67l-1-1 1-1H20M6.67 11l1 1-1 1H4v-2h2.67M12 16.33l1 1V20h-2v-2.67l1-1M15 2H9v5.5l3 3 3-3V2zm7 7h-5.5l-3 3 3 3H22V9zM7.5 9H2v6h5.5l3-3-3-3zm4.5 4.5l-3 3V22h6v-5.5l-3-3z"},"children":[]}]};exports.ic_gamepad_outline=ic_gamepad_outline;var ic_gamepad_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6.67 11H4v2h2.67l1-1zM13 6.67V4h-2v2.67l1 1zm-2 10.66V20h2v-2.67l-1-1zM16.33 12l1 1H20v-2h-2.67z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M9 16.5V22h6v-5.5l-3-3-3 3zm4 3.5h-2v-2.67l1-1 1 1V20zm2-12.5V2H9v5.5l3 3 3-3zM11 4h2v2.67l-1 1-1-1V4zM7.5 9H2v6h5.5l3-3-3-3zm-.83 4H4v-2h2.67l1 1-1 1zm9.83-4l-3 3 3 3H22V9h-5.5zm3.5 4h-2.67l-1-1 1-1H20v2z"},"children":[]}]};exports.ic_gamepad_twotone=ic_gamepad_twotone;var ic_headset={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none","opacity":".1"},"children":[]},{"name":"path","attribs":{"d":"M12 1c-4.97 0-9 4.03-9 9v7c0 1.66 1.34 3 3 3h3v-8H5v-2c0-3.87 3.13-7 7-7s7 3.13 7 7v2h-4v8h3c1.66 0 3-1.34 3-3v-7c0-4.97-4.03-9-9-9z"},"children":[]}]};exports.ic_headset=ic_headset;var ic_headset_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 14v3c0 .55-.45 1-1 1h-1v-4h2M7 14v4H6c-.55 0-1-.45-1-1v-3h2m5-13c-4.97 0-9 4.03-9 9v7c0 1.66 1.34 3 3 3h3v-8H5v-2c0-3.87 3.13-7 7-7s7 3.13 7 7v2h-4v8h3c1.66 0 3-1.34 3-3v-7c0-4.97-4.03-9-9-9z"},"children":[]}]};exports.ic_headset_outline=ic_headset_outline;var ic_headset_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 18h1c.55 0 1-.45 1-1v-3h-2v4zM5 17c0 .55.45 1 1 1h1v-4H5v3z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 1c-4.97 0-9 4.03-9 9v7c0 1.66 1.34 3 3 3h3v-8H5v-2c0-3.87 3.13-7 7-7s7 3.13 7 7v2h-4v8h3c1.66 0 3-1.34 3-3v-7c0-4.97-4.03-9-9-9zM7 14v4H6c-.55 0-1-.45-1-1v-3h2zm12 3c0 .55-.45 1-1 1h-1v-4h2v3z"},"children":[]}]};exports.ic_headset_twotone=ic_headset_twotone;var ic_headset_mic={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none","opacity":".1"},"children":[]},{"name":"path","attribs":{"d":"M12 1c-4.97 0-9 4.03-9 9v7c0 1.66 1.34 3 3 3h3v-8H5v-2c0-3.87 3.13-7 7-7s7 3.13 7 7v2h-4v8h4v1h-7v2h6c1.66 0 3-1.34 3-3V10c0-4.97-4.03-9-9-9z"},"children":[]}]};exports.ic_headset_mic=ic_headset_mic;var ic_headset_mic_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 14v4h-2v-4h2M7 14v4H6c-.55 0-1-.45-1-1v-3h2m5-13c-4.97 0-9 4.03-9 9v7c0 1.66 1.34 3 3 3h3v-8H5v-2c0-3.87 3.13-7 7-7s7 3.13 7 7v2h-4v8h4v1h-7v2h6c1.66 0 3-1.34 3-3V10c0-4.97-4.03-9-9-9z"},"children":[]}]};exports.ic_headset_mic_outline=ic_headset_mic_outline;var ic_headset_mic_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 17c0 .55.45 1 1 1h1v-4H5v3zm12-3h2v4h-2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 1c-4.97 0-9 4.03-9 9v7c0 1.66 1.34 3 3 3h3v-8H5v-2c0-3.87 3.13-7 7-7s7 3.13 7 7v2h-4v8h4v1h-7v2h6c1.66 0 3-1.34 3-3V10c0-4.97-4.03-9-9-9zM7 14v4H6c-.55 0-1-.45-1-1v-3h2zm12 4h-2v-4h2v4z"},"children":[]}]};exports.ic_headset_mic_twotone=ic_headset_mic_twotone;var ic_headset_off={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 4c3.87 0 7 3.13 7 7v2h-2.92L21 17.92V11c0-4.97-4.03-9-9-9-1.95 0-3.76.62-5.23 1.68l1.44 1.44C9.3 4.41 10.6 4 12 4zM2.27 1.72L1 3l3.33 3.32C3.49 7.68 3 9.29 3 11v7c0 1.66 1.34 3 3 3h3v-8H5v-2c0-1.17.29-2.26.79-3.22L15 17v4h3c.3 0 .59-.06.86-.14L21 23l1.27-1.27-20-20.01z"},"children":[]}]};exports.ic_headset_off=ic_headset_off;var ic_keyboard={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M20 5H4c-1.1 0-1.99.9-1.99 2L2 17c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-9 3h2v2h-2V8zm0 3h2v2h-2v-2zM8 8h2v2H8V8zm0 3h2v2H8v-2zm-1 2H5v-2h2v2zm0-3H5V8h2v2zm9 7H8v-2h8v2zm0-4h-2v-2h2v2zm0-3h-2V8h2v2zm3 3h-2v-2h2v2zm0-3h-2V8h2v2z"},"children":[]},{"name":"path","attribs":{"d":"M0 0h24v24H0zm0 0h24v24H0z","fill":"none"},"children":[]}]};exports.ic_keyboard=ic_keyboard;var ic_keyboard_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0zm0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 7v10H4V7h16m0-2H4c-1.1 0-1.99.9-1.99 2L2 17c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-9 3h2v2h-2zm0 3h2v2h-2zM8 8h2v2H8zm0 3h2v2H8zm-3 0h2v2H5zm0-3h2v2H5zm3 6h8v2H8zm6-3h2v2h-2zm0-3h2v2h-2zm3 3h2v2h-2zm0-3h2v2h-2z"},"children":[]}]};exports.ic_keyboard_outline=ic_keyboard_outline;var ic_keyboard_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0zm0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 17h16V7H4v10zm13-9h2v2h-2V8zm0 3h2v2h-2v-2zm-3-3h2v2h-2V8zm0 3h2v2h-2v-2zm-3-3h2v2h-2V8zm0 3h2v2h-2v-2zM8 8h2v2H8V8zm0 3h2v2H8v-2zm0 3h8v2H8v-2zM5 8h2v2H5V8zm0 3h2v2H5v-2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 5H4c-1.1 0-1.99.9-1.99 2L2 17c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 12H4V7h16v10zm-9-9h2v2h-2zm0 3h2v2h-2zM8 8h2v2H8zm0 3h2v2H8zm-3 0h2v2H5zm0-3h2v2H5zm3 6h8v2H8zm6-3h2v2h-2zm0-3h2v2h-2zm3 3h2v2h-2zm0-3h2v2h-2z"},"children":[]}]};exports.ic_keyboard_twotone=ic_keyboard_twotone;var ic_keyboard_arrow_down={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"},"children":[]}]};exports.ic_keyboard_arrow_down=ic_keyboard_arrow_down;var ic_keyboard_arrow_down_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"},"children":[]}]};exports.ic_keyboard_arrow_down_outline=ic_keyboard_arrow_down_outline;var ic_keyboard_arrow_down_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"},"children":[]}]};exports.ic_keyboard_arrow_down_twotone=ic_keyboard_arrow_down_twotone;var ic_keyboard_arrow_left={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.41 16.59L10.83 12l4.58-4.59L14 6l-6 6 6 6 1.41-1.41z"},"children":[]}]};exports.ic_keyboard_arrow_left=ic_keyboard_arrow_left;var ic_keyboard_arrow_left_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.41 16.59L10.83 12l4.58-4.59L14 6l-6 6 6 6 1.41-1.41z"},"children":[]}]};exports.ic_keyboard_arrow_left_outline=ic_keyboard_arrow_left_outline;var ic_keyboard_arrow_left_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.41 16.59L10.83 12l4.58-4.59L14 6l-6 6 6 6 1.41-1.41z"},"children":[]}]};exports.ic_keyboard_arrow_left_twotone=ic_keyboard_arrow_left_twotone;var ic_keyboard_arrow_right={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"},"children":[]}]};exports.ic_keyboard_arrow_right=ic_keyboard_arrow_right;var ic_keyboard_arrow_right_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"},"children":[]}]};exports.ic_keyboard_arrow_right_outline=ic_keyboard_arrow_right_outline;var ic_keyboard_arrow_right_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"},"children":[]}]};exports.ic_keyboard_arrow_right_twotone=ic_keyboard_arrow_right_twotone;var ic_keyboard_arrow_up={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7.41 15.41L12 10.83l4.59 4.58L18 14l-6-6-6 6z"},"children":[]}]};exports.ic_keyboard_arrow_up=ic_keyboard_arrow_up;var ic_keyboard_arrow_up_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7.41 15.41L12 10.83l4.59 4.58L18 14l-6-6-6 6 1.41 1.41z"},"children":[]}]};exports.ic_keyboard_arrow_up_outline=ic_keyboard_arrow_up_outline;var ic_keyboard_arrow_up_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7.41 15.41L12 10.83l4.59 4.58L18 14l-6-6-6 6 1.41 1.41z"},"children":[]}]};exports.ic_keyboard_arrow_up_twotone=ic_keyboard_arrow_up_twotone;var ic_keyboard_backspace={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 11H6.83l3.58-3.59L9 6l-6 6 6 6 1.41-1.41L6.83 13H21z"},"children":[]}]};exports.ic_keyboard_backspace=ic_keyboard_backspace;var ic_keyboard_backspace_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 11H6.83l3.58-3.59L9 6l-6 6 6 6 1.41-1.41L6.83 13H21v-2z"},"children":[]}]};exports.ic_keyboard_backspace_outline=ic_keyboard_backspace_outline;var ic_keyboard_backspace_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 11H6.83l3.58-3.59L9 6l-6 6 6 6 1.41-1.41L6.83 13H21v-2z"},"children":[]}]};exports.ic_keyboard_backspace_twotone=ic_keyboard_backspace_twotone;var ic_keyboard_capslock={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 8.41L16.59 13 18 11.59l-6-6-6 6L7.41 13 12 8.41zM6 18h12v-2H6v2z"},"children":[]}]};exports.ic_keyboard_capslock=ic_keyboard_capslock;var ic_keyboard_capslock_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 8.41L16.59 13 18 11.59l-6-6-6 6L7.41 13 12 8.41zM6 18h12v-2H6v2z"},"children":[]}]};exports.ic_keyboard_capslock_outline=ic_keyboard_capslock_outline;var ic_keyboard_capslock_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 8.41L16.59 13 18 11.59l-6-6-6 6L7.41 13 12 8.41zM6 18h12v-2H6v2z"},"children":[]}]};exports.ic_keyboard_capslock_twotone=ic_keyboard_capslock_twotone;var ic_keyboard_hide={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 3H4c-1.1 0-1.99.9-1.99 2L2 15c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 3h2v2h-2V6zm0 3h2v2h-2V9zM8 6h2v2H8V6zm0 3h2v2H8V9zm-1 2H5V9h2v2zm0-3H5V6h2v2zm9 7H8v-2h8v2zm0-4h-2V9h2v2zm0-3h-2V6h2v2zm3 3h-2V9h2v2zm0-3h-2V6h2v2zm-7 15l4-4H8l4 4z"},"children":[]}]};exports.ic_keyboard_hide=ic_keyboard_hide;var ic_keyboard_hide_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 3H4c-1.1 0-1.99.9-1.99 2L2 15c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 12H4V5h16v10zm-9-9h2v2h-2zm0 3h2v2h-2zM8 6h2v2H8zm0 3h2v2H8zM5 9h2v2H5zm0-3h2v2H5zm3 6h8v2H8zm6-3h2v2h-2zm0-3h2v2h-2zm3 3h2v2h-2zm0-3h2v2h-2zm-5 17l4-4H8z"},"children":[]}]};exports.ic_keyboard_hide_outline=ic_keyboard_hide_outline;var ic_keyboard_hide_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 15h16V5H4v10zm13-9h2v2h-2V6zm0 3h2v2h-2V9zm-3-3h2v2h-2V6zm0 3h2v2h-2V9zm-3-3h2v2h-2V6zm0 3h2v2h-2V9zM8 6h2v2H8V6zm0 3h2v2H8V9zm0 3h8v2H8v-2zM5 6h2v2H5V6zm0 3h2v2H5V9z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 3H4c-1.1 0-1.99.9-1.99 2L2 15c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 12H4V5h16v10zm-9-9h2v2h-2zm0 3h2v2h-2zM8 6h2v2H8zm0 3h2v2H8zM5 9h2v2H5zm0-3h2v2H5zm3 6h8v2H8zm6-3h2v2h-2zm0-3h2v2h-2zm3 3h2v2h-2zm0-3h2v2h-2zm-5 17l4-4H8l4 4z"},"children":[]}]};exports.ic_keyboard_hide_twotone=ic_keyboard_hide_twotone;var ic_keyboard_return={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 7v4H5.83l3.58-3.59L8 6l-6 6 6 6 1.41-1.41L5.83 13H21V7z"},"children":[]}]};exports.ic_keyboard_return=ic_keyboard_return;var ic_keyboard_return_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 7v4H5.83l3.58-3.59L8 6l-6 6 6 6 1.41-1.41L5.83 13H21V7h-2z"},"children":[]}]};exports.ic_keyboard_return_outline=ic_keyboard_return_outline;var ic_keyboard_return_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 7v4H5.83l3.58-3.59L8 6l-6 6 6 6 1.41-1.41L5.83 13H21V7h-2z"},"children":[]}]};exports.ic_keyboard_return_twotone=ic_keyboard_return_twotone;var ic_keyboard_tab={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11.59 7.41L15.17 11H1v2h14.17l-3.59 3.59L13 18l6-6-6-6-1.41 1.41zM20 6v12h2V6h-2z"},"children":[]}]};exports.ic_keyboard_tab=ic_keyboard_tab;var ic_keyboard_tab_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11.59 7.41L15.17 11H1v2h14.17l-3.59 3.59L13 18l6-6-6-6-1.41 1.41zM20 6v12h2V6h-2z"},"children":[]}]};exports.ic_keyboard_tab_outline=ic_keyboard_tab_outline;var ic_keyboard_tab_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11.59 7.41L15.17 11H1v2h14.17l-3.59 3.59L13 18l6-6-6-6-1.41 1.41zM20 6v12h2V6h-2z"},"children":[]}]};exports.ic_keyboard_tab_twotone=ic_keyboard_tab_twotone;var ic_keyboard_voice={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 15c1.66 0 2.99-1.34 2.99-3L15 6c0-1.66-1.34-3-3-3S9 4.34 9 6v6c0 1.66 1.34 3 3 3zm5.3-3c0 3-2.54 5.1-5.3 5.1S6.7 15 6.7 12H5c0 3.42 2.72 6.23 6 6.72V22h2v-3.28c3.28-.48 6-3.3 6-6.72h-1.7z"},"children":[]}]};exports.ic_keyboard_voice=ic_keyboard_voice;var ic_keyboard_voice_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 15c1.66 0 2.99-1.34 2.99-3L15 6c0-1.66-1.34-3-3-3S9 4.34 9 6v6c0 1.66 1.34 3 3 3zm-1.2-9.1c0-.66.54-1.2 1.2-1.2s1.2.54 1.2 1.2l-.01 6.2c0 .66-.53 1.2-1.19 1.2s-1.2-.54-1.2-1.2V5.9zm6.5 6.1c0 3-2.54 5.1-5.3 5.1S6.7 15 6.7 12H5c0 3.41 2.72 6.23 6 6.72V22h2v-3.28c3.28-.48 6-3.3 6-6.72h-1.7z"},"children":[]}]};exports.ic_keyboard_voice_outline=ic_keyboard_voice_outline;var ic_keyboard_voice_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 13.3c.66 0 1.19-.54 1.19-1.2l.01-6.2c0-.66-.54-1.2-1.2-1.2s-1.2.54-1.2 1.2v6.2c0 .66.54 1.2 1.2 1.2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 15c1.66 0 2.99-1.34 2.99-3L15 6c0-1.66-1.34-3-3-3S9 4.34 9 6v6c0 1.66 1.34 3 3 3zm-1.2-9.1c0-.66.54-1.2 1.2-1.2s1.2.54 1.2 1.2l-.01 6.2c0 .66-.53 1.2-1.19 1.2s-1.2-.54-1.2-1.2V5.9zm6.5 6.1c0 3-2.54 5.1-5.3 5.1S6.7 15 6.7 12H5c0 3.41 2.72 6.23 6 6.72V22h2v-3.28c3.28-.48 6-3.3 6-6.72h-1.7z"},"children":[]}]};exports.ic_keyboard_voice_twotone=ic_keyboard_voice_twotone;var ic_laptop={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M20,18c1.1,0,2-0.9,2-2V6c0-1.1-0.9-2-2-2H4C2.9,4,2,4.9,2,6v10c0,1.1,0.9,2,2,2H0v2h24v-2H20z M4,6h16v10H4V6z"},"children":[{"name":"path","attribs":{"d":"M20,18c1.1,0,2-0.9,2-2V6c0-1.1-0.9-2-2-2H4C2.9,4,2,4.9,2,6v10c0,1.1,0.9,2,2,2H0v2h24v-2H20z M4,6h16v10H4V6z"},"children":[]}]}]}]}]}]}]}]};exports.ic_laptop=ic_laptop;var ic_laptop_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M20,18c1.1,0,2-0.9,2-2V6c0-1.1-0.9-2-2-2H4C2.9,4,2,4.9,2,6v10c0,1.1,0.9,2,2,2H0v2h24v-2H20z M4,6h16v10H4V6z"},"children":[{"name":"path","attribs":{"d":"M20,18c1.1,0,2-0.9,2-2V6c0-1.1-0.9-2-2-2H4C2.9,4,2,4.9,2,6v10c0,1.1,0.9,2,2,2H0v2h24v-2H20z M4,6h16v10H4V6z"},"children":[]}]}]}]}]}]};exports.ic_laptop_outline=ic_laptop_outline;var ic_laptop_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M4,6h16v10H4V6z","enable-background":"new","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M4,6h16v10H4V6z","enable-background":"new","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M20,18c1.1,0,2-0.9,2-2V6c0-1.1-0.9-2-2-2H4C2.9,4,2,4.9,2,6v10c0,1.1,0.9,2,2,2H0v2h24v-2H20z M4,6h16v10H4V6z"},"children":[{"name":"path","attribs":{"d":"M20,18c1.1,0,2-0.9,2-2V6c0-1.1-0.9-2-2-2H4C2.9,4,2,4.9,2,6v10c0,1.1,0.9,2,2,2H0v2h24v-2H20z M4,6h16v10H4V6z"},"children":[]}]}]}]}]}]};exports.ic_laptop_twotone=ic_laptop_twotone;var ic_laptop_chromebook={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 18V3H2v15H0v2h24v-2h-2zm-8 0h-4v-1h4v1zm6-3H4V5h16v10z"},"children":[]}]};exports.ic_laptop_chromebook=ic_laptop_chromebook;var ic_laptop_chromebook_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 18V3H2v15H0v2h24v-2h-2zm-8 0h-4v-1h4v1zm6-3H4V5h16v10z"},"children":[]}]};exports.ic_laptop_chromebook_outline=ic_laptop_chromebook_outline;var ic_laptop_chromebook_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 5h16v10H4z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M22 18V3H2v15H0v2h24v-2h-2zm-8 0h-4v-1h4v1zm6-3H4V5h16v10z"},"children":[]}]};exports.ic_laptop_chromebook_twotone=ic_laptop_chromebook_twotone;var ic_laptop_mac={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 18c1.1 0 1.99-.9 1.99-2L22 5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2H0c0 1.1.9 2 2 2h20c1.1 0 2-.9 2-2h-4zM4 5h16v11H4V5zm8 14c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z"},"children":[]}]};exports.ic_laptop_mac=ic_laptop_mac;var ic_laptop_mac_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 18c1.1 0 1.99-.9 1.99-2L22 5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2H0c0 1.1.9 2 2 2h20c1.1 0 2-.9 2-2h-4zM4 5h16v11H4V5zm8 14c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z"},"children":[]}]};exports.ic_laptop_mac_outline=ic_laptop_mac_outline;var ic_laptop_mac_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 5h16v11H4z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 18c1.1 0 1.99-.9 1.99-2L22 5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2H0c0 1.1.9 2 2 2h20c1.1 0 2-.9 2-2h-4zM4 5h16v11H4V5zm8 14c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z"},"children":[]}]};exports.ic_laptop_mac_twotone=ic_laptop_mac_twotone;var ic_laptop_windows={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 18v-1c1.1 0 1.99-.9 1.99-2L22 5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2v1H0v2h24v-2h-4zM4 5h16v10H4V5z"},"children":[]}]};exports.ic_laptop_windows=ic_laptop_windows;var ic_laptop_windows_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 18v-1c1.1 0 1.99-.9 1.99-2L22 5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2v1H0v2h24v-2h-4zM4 5h16v10H4V5z"},"children":[]}]};exports.ic_laptop_windows_outline=ic_laptop_windows_outline;var ic_laptop_windows_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 5h16v10H4z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 18v-1c1.1 0 1.99-.9 1.99-2L22 5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2v1H0v2h24v-2h-4zM4 5h16v10H4V5z"},"children":[]}]};exports.ic_laptop_windows_twotone=ic_laptop_windows_twotone;var ic_memory={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15 9H9v6h6V9zm-2 4h-2v-2h2v2zm8-2V9h-2V7c0-1.1-.9-2-2-2h-2V3h-2v2h-2V3H9v2H7c-1.1 0-2 .9-2 2v2H3v2h2v2H3v2h2v2c0 1.1.9 2 2 2h2v2h2v-2h2v2h2v-2h2c1.1 0 2-.9 2-2v-2h2v-2h-2v-2h2zm-4 6H7V7h10v10z"},"children":[]}]};exports.ic_memory=ic_memory;var ic_memory_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15 9H9v6h6V9zm-2 4h-2v-2h2v2zm8-2V9h-2V7c0-1.1-.9-2-2-2h-2V3h-2v2h-2V3H9v2H7c-1.1 0-2 .9-2 2v2H3v2h2v2H3v2h2v2c0 1.1.9 2 2 2h2v2h2v-2h2v2h2v-2h2c1.1 0 2-.9 2-2v-2h2v-2h-2v-2h2zm-4 6H7V7h10v10z"},"children":[]}]};exports.ic_memory_outline=ic_memory_outline;var ic_memory_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 17h10V7H7v10zm2-8h6v6H9V9z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M21 11V9h-2V7c0-1.1-.9-2-2-2h-2V3h-2v2h-2V3H9v2H7c-1.1 0-2 .9-2 2v2H3v2h2v2H3v2h2v2c0 1.1.9 2 2 2h2v2h2v-2h2v2h2v-2h2c1.1 0 2-.9 2-2v-2h2v-2h-2v-2h2zm-4 6H7V7h10v10zm-2-8H9v6h6V9zm-2 4h-2v-2h2v2z"},"children":[]}]};exports.ic_memory_twotone=ic_memory_twotone;var ic_monitor={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M20 3H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2h3l-1 1v2h12v-2l-1-1h3c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 13H4V5h16v11z"},"children":[]}]};exports.ic_monitor=ic_monitor;var ic_mouse={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13 1.07V9h7c0-4.08-3.05-7.44-7-7.93zM4 15c0 4.42 3.58 8 8 8s8-3.58 8-8v-4H4v4zm7-13.93C7.05 1.56 4 4.92 4 9h7V1.07z"},"children":[]}]};exports.ic_mouse=ic_mouse;var ic_mouse_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 9c-.04-4.39-3.6-7.93-8-7.93S4.04 4.61 4 9v6c0 4.42 3.58 8 8 8s8-3.58 8-8V9zm-2 0h-5V3.16c2.81.47 4.96 2.9 5 5.84zm-7-5.84V9H6c.04-2.94 2.19-5.37 5-5.84zM18 15c0 3.31-2.69 6-6 6s-6-2.69-6-6v-4h12v4z"},"children":[]}]};exports.ic_mouse_outline=ic_mouse_outline;var ic_mouse_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13 3.16V9h5c-.04-2.94-2.19-5.37-5-5.84zm-2 0C8.19 3.63 6.04 6.06 6 9h5V3.16zM11 11H6v4c0 3.31 2.69 6 6 6s6-2.69 6-6v-4h-7z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 9c-.04-4.39-3.6-7.93-8-7.93S4.04 4.61 4 9v6c0 4.42 3.58 8 8 8s8-3.58 8-8V9zm-7-5.84c2.81.47 4.96 2.9 5 5.84h-5V3.16zm-2 0V9H6c.04-2.94 2.19-5.37 5-5.84zM18 15c0 3.31-2.69 6-6 6s-6-2.69-6-6v-4h12v4z"},"children":[]}]};exports.ic_mouse_twotone=ic_mouse_twotone;var ic_phone_android={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16 1H8C6.34 1 5 2.34 5 4v16c0 1.66 1.34 3 3 3h8c1.66 0 3-1.34 3-3V4c0-1.66-1.34-3-3-3zm-2 20h-4v-1h4v1zm3.25-3H6.75V4h10.5v14z"},"children":[]}]};exports.ic_phone_android=ic_phone_android;var ic_phone_android_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16 1H8C6.34 1 5 2.34 5 4v16c0 1.66 1.34 3 3 3h8c1.66 0 3-1.34 3-3V4c0-1.66-1.34-3-3-3zm1 17H7V4h10v14zm-3 3h-4v-1h4v1z"},"children":[]}]};exports.ic_phone_android_outline=ic_phone_android_outline;var ic_phone_android_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 4h10v14H7z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M16 1H8C6.34 1 5 2.34 5 4v16c0 1.66 1.34 3 3 3h8c1.66 0 3-1.34 3-3V4c0-1.66-1.34-3-3-3zm-2 20h-4v-1h4v1zm3-3H7V4h10v14z"},"children":[]}]};exports.ic_phone_android_twotone=ic_phone_android_twotone;var ic_phone_iphone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.5 1h-8C6.12 1 5 2.12 5 3.5v17C5 21.88 6.12 23 7.5 23h8c1.38 0 2.5-1.12 2.5-2.5v-17C18 2.12 16.88 1 15.5 1zm-4 21c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm4.5-4H7V4h9v14z"},"children":[]}]};exports.ic_phone_iphone=ic_phone_iphone;var ic_phone_iphone_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.5 1h-8C6.12 1 5 2.12 5 3.5v17C5 21.88 6.12 23 7.5 23h8c1.38 0 2.5-1.12 2.5-2.5v-17C18 2.12 16.88 1 15.5 1zm-4 21c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm4.5-4H7V4h9v14z"},"children":[]}]};exports.ic_phone_iphone_outline=ic_phone_iphone_outline;var ic_phone_iphone_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 4h9v14H7z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M15.5 1h-8C6.12 1 5 2.12 5 3.5v17C5 21.88 6.12 23 7.5 23h8c1.38 0 2.5-1.12 2.5-2.5v-17C18 2.12 16.88 1 15.5 1zm-4 21c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm4.5-4H7V4h9v14z"},"children":[]}]};exports.ic_phone_iphone_twotone=ic_phone_iphone_twotone;var ic_phonelink={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 6h18V4H4c-1.1 0-2 .9-2 2v11H0v3h14v-3H4V6zm19 2h-6c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-1 9h-4v-7h4v7z"},"children":[]}]};exports.ic_phonelink=ic_phonelink;var ic_phonelink_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 6h18V4H4c-1.1 0-2 .9-2 2v11H0v3h14v-3H4V6zm19 2h-6c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-1 9h-4v-7h4v7z"},"children":[]}]};exports.ic_phonelink_outline=ic_phonelink_outline;var ic_phonelink_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 10h4v7h-4z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M4 6h18V4H4c-1.1 0-2 .9-2 2v11H0v3h14v-3H4V6zm19 2h-6c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-1 9h-4v-7h4v7z"},"children":[]}]};exports.ic_phonelink_twotone=ic_phonelink_twotone;var ic_phonelink_off={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0zm0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 6V4H6.82l2 2H22zM1.92 1.65L.65 2.92l1.82 1.82C2.18 5.08 2 5.52 2 6v11H0v3h17.73l2.35 2.35 1.27-1.27L3.89 3.62 1.92 1.65zM4 6.27L14.73 17H4V6.27zM23 8h-6c-.55 0-1 .45-1 1v4.18l2 2V10h4v7h-2.18l3 3H23c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1z"},"children":[]}]};exports.ic_phonelink_off=ic_phonelink_off;var ic_phonelink_off_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0zm0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 6V4H7.39l2 2zm2 13V9c0-.55-.45-1-1-1h-6c-.55 0-1 .45-1 1v3.61l2 2V10h4v7h-1.61l2.93 2.93c.39-.13.68-.49.68-.93zM2.06 1.51L.65 2.92l1.82 1.82C2.18 5.08 2 5.52 2 6v11H0v3h17.73l2.35 2.35 1.41-1.41L2.06 1.51zM4 17V6.27L14.73 17H4z"},"children":[]}]};exports.ic_phonelink_off_outline=ic_phonelink_off_outline;var ic_phonelink_off_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0zm0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 17v-7h-4v4.61L20.39 17z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M23 8h-6c-.55 0-1 .45-1 1v3.61l2 2V10h4v7h-1.61l2.93 2.93c.39-.13.68-.49.68-.93V9c0-.55-.45-1-1-1zm-1-2V4H7.39l2 2zM.65 2.92l1.82 1.82C2.18 5.08 2 5.52 2 6v11H0v3h17.73l2.35 2.35 1.41-1.41L2.06 1.51.65 2.92zM4 6.27L14.73 17H4V6.27z"},"children":[]}]};exports.ic_phonelink_off_twotone=ic_phonelink_off_twotone;var ic_point_of_sale={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M17,2H7C5.9,2,5,2.9,5,4v2c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V4C19,2.9,18.1,2,17,2z M17,6H7V4h10V6z M20,22H4 c-1.1,0-2-0.9-2-2v-1h20v1C22,21.1,21.1,22,20,22z M18.53,10.19C18.21,9.47,17.49,9,16.7,9H7.3c-0.79,0-1.51,0.47-1.83,1.19L2,18 h20L18.53,10.19z M9.5,16h-1C8.22,16,8,15.78,8,15.5C8,15.22,8.22,15,8.5,15h1c0.28,0,0.5,0.22,0.5,0.5C10,15.78,9.78,16,9.5,16z M9.5,14h-1C8.22,14,8,13.78,8,13.5C8,13.22,8.22,13,8.5,13h1c0.28,0,0.5,0.22,0.5,0.5C10,13.78,9.78,14,9.5,14z M9.5,12h-1 C8.22,12,8,11.78,8,11.5C8,11.22,8.22,11,8.5,11h1c0.28,0,0.5,0.22,0.5,0.5C10,11.78,9.78,12,9.5,12z M12.5,16h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C13,15.78,12.78,16,12.5,16z M12.5,14h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C13,13.78,12.78,14,12.5,14z M12.5,12h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C13,11.78,12.78,12,12.5,12z M15.5,16h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C16,15.78,15.78,16,15.5,16z M15.5,14h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C16,13.78,15.78,14,15.5,14z M15.5,12h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C16,11.78,15.78,12,15.5,12z"},"children":[{"name":"path","attribs":{"d":"M17,2H7C5.9,2,5,2.9,5,4v2c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V4C19,2.9,18.1,2,17,2z M17,6H7V4h10V6z M20,22H4 c-1.1,0-2-0.9-2-2v-1h20v1C22,21.1,21.1,22,20,22z M18.53,10.19C18.21,9.47,17.49,9,16.7,9H7.3c-0.79,0-1.51,0.47-1.83,1.19L2,18 h20L18.53,10.19z M9.5,16h-1C8.22,16,8,15.78,8,15.5C8,15.22,8.22,15,8.5,15h1c0.28,0,0.5,0.22,0.5,0.5C10,15.78,9.78,16,9.5,16z M9.5,14h-1C8.22,14,8,13.78,8,13.5C8,13.22,8.22,13,8.5,13h1c0.28,0,0.5,0.22,0.5,0.5C10,13.78,9.78,14,9.5,14z M9.5,12h-1 C8.22,12,8,11.78,8,11.5C8,11.22,8.22,11,8.5,11h1c0.28,0,0.5,0.22,0.5,0.5C10,11.78,9.78,12,9.5,12z M12.5,16h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C13,15.78,12.78,16,12.5,16z M12.5,14h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C13,13.78,12.78,14,12.5,14z M12.5,12h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C13,11.78,12.78,12,12.5,12z M15.5,16h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C16,15.78,15.78,16,15.5,16z M15.5,14h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C16,13.78,15.78,14,15.5,14z M15.5,12h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C16,11.78,15.78,12,15.5,12z"},"children":[]}]}]}]};exports.ic_point_of_sale=ic_point_of_sale;var ic_point_of_sale_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M17,2H7C5.9,2,5,2.9,5,4v2c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V4C19,2.9,18.1,2,17,2z M17,6H7V4h10V6z M20,22H4 c-1.1,0-2-0.9-2-2v-1h20v1C22,21.1,21.1,22,20,22z M18.53,10.19C18.21,9.47,17.49,9,16.7,9H7.3c-0.79,0-1.51,0.47-1.83,1.19L2,18 h20L18.53,10.19z M9.5,16h-1C8.22,16,8,15.78,8,15.5C8,15.22,8.22,15,8.5,15h1c0.28,0,0.5,0.22,0.5,0.5C10,15.78,9.78,16,9.5,16z M9.5,14h-1C8.22,14,8,13.78,8,13.5C8,13.22,8.22,13,8.5,13h1c0.28,0,0.5,0.22,0.5,0.5C10,13.78,9.78,14,9.5,14z M9.5,12h-1 C8.22,12,8,11.78,8,11.5C8,11.22,8.22,11,8.5,11h1c0.28,0,0.5,0.22,0.5,0.5C10,11.78,9.78,12,9.5,12z M12.5,16h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C13,15.78,12.78,16,12.5,16z M12.5,14h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C13,13.78,12.78,14,12.5,14z M12.5,12h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C13,11.78,12.78,12,12.5,12z M15.5,16h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C16,15.78,15.78,16,15.5,16z M15.5,14h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C16,13.78,15.78,14,15.5,14z M15.5,12h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C16,11.78,15.78,12,15.5,12z"},"children":[{"name":"path","attribs":{"d":"M17,2H7C5.9,2,5,2.9,5,4v2c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V4C19,2.9,18.1,2,17,2z M17,6H7V4h10V6z M20,22H4 c-1.1,0-2-0.9-2-2v-1h20v1C22,21.1,21.1,22,20,22z M18.53,10.19C18.21,9.47,17.49,9,16.7,9H7.3c-0.79,0-1.51,0.47-1.83,1.19L2,18 h20L18.53,10.19z M9.5,16h-1C8.22,16,8,15.78,8,15.5C8,15.22,8.22,15,8.5,15h1c0.28,0,0.5,0.22,0.5,0.5C10,15.78,9.78,16,9.5,16z M9.5,14h-1C8.22,14,8,13.78,8,13.5C8,13.22,8.22,13,8.5,13h1c0.28,0,0.5,0.22,0.5,0.5C10,13.78,9.78,14,9.5,14z M9.5,12h-1 C8.22,12,8,11.78,8,11.5C8,11.22,8.22,11,8.5,11h1c0.28,0,0.5,0.22,0.5,0.5C10,11.78,9.78,12,9.5,12z M12.5,16h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C13,15.78,12.78,16,12.5,16z M12.5,14h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C13,13.78,12.78,14,12.5,14z M12.5,12h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C13,11.78,12.78,12,12.5,12z M15.5,16h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C16,15.78,15.78,16,15.5,16z M15.5,14h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C16,13.78,15.78,14,15.5,14z M15.5,12h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C16,11.78,15.78,12,15.5,12z"},"children":[]}]}]}]};exports.ic_point_of_sale_outline=ic_point_of_sale_outline;var ic_point_of_sale_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M9.5,16h-1C8.22,16,8,15.78,8,15.5C8,15.22,8.22,15,8.5,15h1c0.28,0,0.5,0.22,0.5,0.5 C10,15.78,9.78,16,9.5,16z M10,13.5c0-0.28-0.22-0.5-0.5-0.5h-1C8.22,13,8,13.22,8,13.5C8,13.78,8.22,14,8.5,14h1 C9.78,14,10,13.78,10,13.5z M10,11.5c0-0.28-0.22-0.5-0.5-0.5h-1C8.22,11,8,11.22,8,11.5C8,11.78,8.22,12,8.5,12h1 C9.78,12,10,11.78,10,11.5z M13,15.5c0-0.28-0.22-0.5-0.5-0.5h-1c-0.28,0-0.5,0.22-0.5,0.5c0,0.28,0.22,0.5,0.5,0.5h1 C12.78,16,13,15.78,13,15.5z M13,13.5c0-0.28-0.22-0.5-0.5-0.5h-1c-0.28,0-0.5,0.22-0.5,0.5c0,0.28,0.22,0.5,0.5,0.5h1 C12.78,14,13,13.78,13,13.5z M13,11.5c0-0.28-0.22-0.5-0.5-0.5h-1c-0.28,0-0.5,0.22-0.5,0.5c0,0.28,0.22,0.5,0.5,0.5h1 C12.78,12,13,11.78,13,11.5z M16,15.5c0-0.28-0.22-0.5-0.5-0.5h-1c-0.28,0-0.5,0.22-0.5,0.5c0,0.28,0.22,0.5,0.5,0.5h1 C15.78,16,16,15.78,16,15.5z M16,13.5c0-0.28-0.22-0.5-0.5-0.5h-1c-0.28,0-0.5,0.22-0.5,0.5c0,0.28,0.22,0.5,0.5,0.5h1 C15.78,14,16,13.78,16,13.5z M16,11.5c0-0.28-0.22-0.5-0.5-0.5h-1c-0.28,0-0.5,0.22-0.5,0.5c0,0.28,0.22,0.5,0.5,0.5h1 C15.78,12,16,11.78,16,11.5z M17,4H7v2h10V4z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M9.5,16h-1C8.22,16,8,15.78,8,15.5C8,15.22,8.22,15,8.5,15h1c0.28,0,0.5,0.22,0.5,0.5 C10,15.78,9.78,16,9.5,16z M10,13.5c0-0.28-0.22-0.5-0.5-0.5h-1C8.22,13,8,13.22,8,13.5C8,13.78,8.22,14,8.5,14h1 C9.78,14,10,13.78,10,13.5z M10,11.5c0-0.28-0.22-0.5-0.5-0.5h-1C8.22,11,8,11.22,8,11.5C8,11.78,8.22,12,8.5,12h1 C9.78,12,10,11.78,10,11.5z M13,15.5c0-0.28-0.22-0.5-0.5-0.5h-1c-0.28,0-0.5,0.22-0.5,0.5c0,0.28,0.22,0.5,0.5,0.5h1 C12.78,16,13,15.78,13,15.5z M13,13.5c0-0.28-0.22-0.5-0.5-0.5h-1c-0.28,0-0.5,0.22-0.5,0.5c0,0.28,0.22,0.5,0.5,0.5h1 C12.78,14,13,13.78,13,13.5z M13,11.5c0-0.28-0.22-0.5-0.5-0.5h-1c-0.28,0-0.5,0.22-0.5,0.5c0,0.28,0.22,0.5,0.5,0.5h1 C12.78,12,13,11.78,13,11.5z M16,15.5c0-0.28-0.22-0.5-0.5-0.5h-1c-0.28,0-0.5,0.22-0.5,0.5c0,0.28,0.22,0.5,0.5,0.5h1 C15.78,16,16,15.78,16,15.5z M16,13.5c0-0.28-0.22-0.5-0.5-0.5h-1c-0.28,0-0.5,0.22-0.5,0.5c0,0.28,0.22,0.5,0.5,0.5h1 C15.78,14,16,13.78,16,13.5z M16,11.5c0-0.28-0.22-0.5-0.5-0.5h-1c-0.28,0-0.5,0.22-0.5,0.5c0,0.28,0.22,0.5,0.5,0.5h1 C15.78,12,16,11.78,16,11.5z M17,4H7v2h10V4z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M17,2H7C5.9,2,5,2.9,5,4v2c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V4C19,2.9,18.1,2,17,2z M17,6H7V4h10V6z M20,22H4 c-1.1,0-2-0.9-2-2v-1h20v1C22,21.1,21.1,22,20,22z M18.53,10.19C18.21,9.47,17.49,9,16.7,9H7.3c-0.79,0-1.51,0.47-1.83,1.19L2,18 h20L18.53,10.19z M9.5,16h-1C8.22,16,8,15.78,8,15.5C8,15.22,8.22,15,8.5,15h1c0.28,0,0.5,0.22,0.5,0.5C10,15.78,9.78,16,9.5,16z M9.5,14h-1C8.22,14,8,13.78,8,13.5C8,13.22,8.22,13,8.5,13h1c0.28,0,0.5,0.22,0.5,0.5C10,13.78,9.78,14,9.5,14z M9.5,12h-1 C8.22,12,8,11.78,8,11.5C8,11.22,8.22,11,8.5,11h1c0.28,0,0.5,0.22,0.5,0.5C10,11.78,9.78,12,9.5,12z M12.5,16h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C13,15.78,12.78,16,12.5,16z M12.5,14h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C13,13.78,12.78,14,12.5,14z M12.5,12h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C13,11.78,12.78,12,12.5,12z M15.5,16h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C16,15.78,15.78,16,15.5,16z M15.5,14h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C16,13.78,15.78,14,15.5,14z M15.5,12h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C16,11.78,15.78,12,15.5,12z"},"children":[{"name":"path","attribs":{"d":"M17,2H7C5.9,2,5,2.9,5,4v2c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V4C19,2.9,18.1,2,17,2z M17,6H7V4h10V6z M20,22H4 c-1.1,0-2-0.9-2-2v-1h20v1C22,21.1,21.1,22,20,22z M18.53,10.19C18.21,9.47,17.49,9,16.7,9H7.3c-0.79,0-1.51,0.47-1.83,1.19L2,18 h20L18.53,10.19z M9.5,16h-1C8.22,16,8,15.78,8,15.5C8,15.22,8.22,15,8.5,15h1c0.28,0,0.5,0.22,0.5,0.5C10,15.78,9.78,16,9.5,16z M9.5,14h-1C8.22,14,8,13.78,8,13.5C8,13.22,8.22,13,8.5,13h1c0.28,0,0.5,0.22,0.5,0.5C10,13.78,9.78,14,9.5,14z M9.5,12h-1 C8.22,12,8,11.78,8,11.5C8,11.22,8.22,11,8.5,11h1c0.28,0,0.5,0.22,0.5,0.5C10,11.78,9.78,12,9.5,12z M12.5,16h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C13,15.78,12.78,16,12.5,16z M12.5,14h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C13,13.78,12.78,14,12.5,14z M12.5,12h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C13,11.78,12.78,12,12.5,12z M15.5,16h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C16,15.78,15.78,16,15.5,16z M15.5,14h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C16,13.78,15.78,14,15.5,14z M15.5,12h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C16,11.78,15.78,12,15.5,12z"},"children":[]}]}]}]};exports.ic_point_of_sale_twotone=ic_point_of_sale_twotone;var ic_power_input={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M2 9v2h19V9H2zm0 6h5v-2H2v2zm7 0h5v-2H9v2zm7 0h5v-2h-5v2z"},"children":[]}]};exports.ic_power_input=ic_power_input;var ic_power_input_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M2 9v2h19V9H2zm0 6h5v-2H2v2zm7 0h5v-2H9v2zm7 0h5v-2h-5v2z"},"children":[]}]};exports.ic_power_input_outline=ic_power_input_outline;var ic_power_input_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M2 9v2h19V9H2zm0 6h5v-2H2v2zm7 0h5v-2H9v2zm7 0h5v-2h-5v2z"},"children":[]}]};exports.ic_power_input_twotone=ic_power_input_twotone;var ic_router={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20.2 5.9l.8-.8C19.6 3.7 17.8 3 16 3s-3.6.7-5 2.1l.8.8C13 4.8 14.5 4.2 16 4.2s3 .6 4.2 1.7zm-.9.8c-.9-.9-2.1-1.4-3.3-1.4s-2.4.5-3.3 1.4l.8.8c.7-.7 1.6-1 2.5-1 .9 0 1.8.3 2.5 1l.8-.8zM19 13h-2V9h-2v4H5c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-4c0-1.1-.9-2-2-2zM8 18H6v-2h2v2zm3.5 0h-2v-2h2v2zm3.5 0h-2v-2h2v2z"},"children":[]}]};exports.ic_router=ic_router;var ic_router_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0zm0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16 4.2c1.5 0 3 .6 4.2 1.7l.8-.8C19.6 3.7 17.8 3 16 3s-3.6.7-5 2.1l.8.8C13 4.8 14.5 4.2 16 4.2zm-3.3 2.5l.8.8c.7-.7 1.6-1 2.5-1s1.8.3 2.5 1l.8-.8c-.9-.9-2.1-1.4-3.3-1.4s-2.4.5-3.3 1.4zM19 13h-2V9h-2v4H5c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-4c0-1.1-.9-2-2-2zm0 6H5v-4h14v4zM6 16h2v2H6zm3.5 0h2v2h-2zm3.5 0h2v2h-2z"},"children":[]}]};exports.ic_router_outline=ic_router_outline;var ic_router_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0zm0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15 15H5v4h14v-4h-4zm-7 3H6v-2h2v2zm3.5 0h-2v-2h2v2zm3.5 0h-2v-2h2v2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M16 4.2c1.5 0 3 .6 4.2 1.7l.8-.8C19.6 3.7 17.8 3 16 3s-3.6.7-5 2.1l.8.8C13 4.8 14.5 4.2 16 4.2zm-3.3 2.5l.8.8c.7-.7 1.6-1 2.5-1s1.8.3 2.5 1l.8-.8c-.9-.9-2.1-1.4-3.3-1.4s-2.4.5-3.3 1.4zM19 13h-2V9h-2v4H5c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-4c0-1.1-.9-2-2-2zm0 6H5v-4h14v4zM6 16h2v2H6zm3.5 0h2v2h-2zm3.5 0h2v2h-2z"},"children":[]}]};exports.ic_router_twotone=ic_router_twotone;var ic_scanner={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19.8 10.7L4.2 5l-.7 1.9L17.6 12H5c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-5.5c0-.8-.5-1.6-1.2-1.8zM7 17H5v-2h2v2zm12 0H9v-2h10v2z"},"children":[]}]};exports.ic_scanner=ic_scanner;var ic_scanner_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19.8 10.7L4.2 5l-.7 1.9L17.6 12H5c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-5.5c0-.8-.5-1.6-1.2-1.8zM19 18H5v-4h14v4zM6 15h2v2H6zm4 0h8v2h-8z"},"children":[]}]};exports.ic_scanner_outline=ic_scanner_outline;var ic_scanner_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 14v4h14v-4H5zm3 3H6v-2h2v2zm10 0h-8v-2h8v2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M19.8 10.7L4.2 5l-.7 1.9L17.6 12H5c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-5.5c0-.8-.5-1.6-1.2-1.8zM19 18H5v-4h14v4zM6 15h2v2H6zm4 0h8v2h-8z"},"children":[]}]};exports.ic_scanner_twotone=ic_scanner_twotone;var ic_security={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm0 10.99h7c-.53 4.12-3.28 7.79-7 8.94V12H5V6.3l7-3.11v8.8z"},"children":[]}]};exports.ic_security=ic_security;var ic_security_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm0 10.99h7c-.53 4.12-3.28 7.79-7 8.94V12H5V6.3l7-3.11v8.8z"},"children":[]}]};exports.ic_security_outline=ic_security_outline;var ic_security_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 3.19L5 6.3V12h7v8.93c3.72-1.15 6.47-4.82 7-8.94h-7v-8.8z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm0 19.93V12H5V6.3l7-3.11v8.8h7c-.53 4.12-3.28 7.79-7 8.94z"},"children":[]}]};exports.ic_security_twotone=ic_security_twotone;var ic_sim_card={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19.99 4c0-1.1-.89-2-1.99-2h-8L4 8v12c0 1.1.9 2 2 2h12.01c1.1 0 1.99-.9 1.99-2l-.01-16zM9 19H7v-2h2v2zm8 0h-2v-2h2v2zm-8-4H7v-4h2v4zm4 4h-2v-4h2v4zm0-6h-2v-2h2v2zm4 2h-2v-4h2v4z"},"children":[]}]};exports.ic_sim_card=ic_sim_card;var ic_sim_card_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 2h-8L4 8v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 2v16H6V8.83L10.83 4H18zM7 17h2v2H7zm8 0h2v2h-2zm-8-6h2v4H7zm4 4h2v4h-2zm0-4h2v2h-2zm4 0h2v4h-2z"},"children":[]}]};exports.ic_sim_card_outline=ic_sim_card_outline;var ic_sim_card_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6 8.83V20h12V4h-7.17L6 8.83zM9 19H7v-2h2v2zm0-4H7v-4h2v4zm6-4h2v4h-2v-4zm0 6h2v2h-2v-2zm-4-6h2v2h-2v-2zm0 4h2v4h-2v-4z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M18 2h-8L4 8v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 2v16H6V8.83L10.83 4H18zM7 17h2v2H7zm8 0h2v2h-2zm-8-6h2v4H7zm4 4h2v4h-2zm0-4h2v2h-2zm4 0h2v4h-2z"},"children":[]}]};exports.ic_sim_card_twotone=ic_sim_card_twotone;var ic_smartphone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 1.01L7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z"},"children":[]}]};exports.ic_smartphone=ic_smartphone;var ic_smartphone_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 1.01L7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z"},"children":[]}]};exports.ic_smartphone_outline=ic_smartphone_outline;var ic_smartphone_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 5h10v14H7z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M17 1.01L7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z"},"children":[]}]};exports.ic_smartphone_twotone=ic_smartphone_twotone;var ic_speaker={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 2H7c-1.1 0-2 .9-2 2v16c0 1.1.9 1.99 2 1.99L17 22c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-5 2c1.1 0 2 .9 2 2s-.9 2-2 2c-1.11 0-2-.9-2-2s.89-2 2-2zm0 16c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z"},"children":[]}]};exports.ic_speaker=ic_speaker;var ic_speaker_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 2H7c-1.1 0-2 .9-2 2v16c0 1.1.9 1.99 2 1.99L17 22c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM7 20V4h10v16H7zm5-11c1.1 0 2-.9 2-2s-.9-2-2-2c-1.11 0-2 .9-2 2s.89 2 2 2zm0 2c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"},"children":[]}]};exports.ic_speaker_outline=ic_speaker_outline;var ic_speaker_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 4v16h10V4H7zm5 1c1.1 0 2 .9 2 2s-.9 2-2 2c-1.11 0-2-.9-2-2s.89-2 2-2zm0 14c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M17 2H7c-1.1 0-2 .9-2 2v16c0 1.1.9 1.99 2 1.99L17 22c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM7 20V4h10v16H7zm5-11c1.1 0 2-.9 2-2s-.9-2-2-2c-1.11 0-2 .9-2 2s.89 2 2 2zm0 2c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"},"children":[]}]};exports.ic_speaker_twotone=ic_speaker_twotone;var ic_speaker_group={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18.2 1H9.8C8.81 1 8 1.81 8 2.8v14.4c0 .99.81 1.79 1.8 1.79l8.4.01c.99 0 1.8-.81 1.8-1.8V2.8c0-.99-.81-1.8-1.8-1.8zM14 3c1.1 0 2 .89 2 2s-.9 2-2 2-2-.89-2-2 .9-2 2-2zm0 13.5c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z"},"children":[]},{"name":"circle","attribs":{"cx":"14","cy":"12.5","r":"2.5"},"children":[]},{"name":"path","attribs":{"d":"M6 5H4v16c0 1.1.89 2 2 2h10v-2H6V5z"},"children":[]}]};exports.ic_speaker_group=ic_speaker_group;var ic_speaker_group_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18.2 1H9.8C8.81 1 8 1.81 8 2.8v14.4c0 .99.81 1.79 1.8 1.79l8.4.01c.99 0 1.8-.81 1.8-1.8V2.8c0-.99-.81-1.8-1.8-1.8zM18 17l-8-.01V3h8v14zm-4-9c1.1 0 2-.89 2-2s-.9-2-2-2-2 .89-2 2 .9 2 2 2zm0 8c1.93 0 3.5-1.57 3.5-3.5S15.93 9 14 9s-3.5 1.57-3.5 3.5S12.07 16 14 16zm0-5c.83 0 1.5.67 1.5 1.5S14.83 14 14 14s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zM6 5H4v16c0 1.1.89 2 2 2h10v-2H6V5z"},"children":[]}]};exports.ic_speaker_group_outline=ic_speaker_group_outline;var ic_speaker_group_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 16.99l8 .01V3h-8v13.99zM14 4c1.1 0 2 .89 2 2s-.9 2-2 2-2-.89-2-2 .9-2 2-2zm0 5c1.93 0 3.5 1.57 3.5 3.5S15.93 16 14 16s-3.5-1.57-3.5-3.5S12.07 9 14 9z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M18.2 1H9.8C8.81 1 8 1.81 8 2.8v14.4c0 .99.81 1.79 1.8 1.79l8.4.01c.99 0 1.8-.81 1.8-1.8V2.8c0-.99-.81-1.8-1.8-1.8zM18 17l-8-.01V3h8v14zm-4-9c1.1 0 2-.89 2-2s-.9-2-2-2-2 .89-2 2 .9 2 2 2zm0 8c1.93 0 3.5-1.57 3.5-3.5S15.93 9 14 9s-3.5 1.57-3.5 3.5S12.07 16 14 16zm0-5c.83 0 1.5.67 1.5 1.5S14.83 14 14 14s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zM6 5H4v16c0 1.1.89 2 2 2h10v-2H6V5z"},"children":[]}]};exports.ic_speaker_group_twotone=ic_speaker_group_twotone;var ic_tablet={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 4H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h18c1.1 0 1.99-.9 1.99-2L23 6c0-1.1-.9-2-2-2zm-2 14H5V6h14v12z"},"children":[]}]};exports.ic_tablet=ic_tablet;var ic_tablet_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 4H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h18c1.1 0 1.99-.9 1.99-2L23 6c0-1.1-.9-2-2-2zm-2 14H5V6h14v12z"},"children":[]}]};exports.ic_tablet_outline=ic_tablet_outline;var ic_tablet_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 6h14v12H5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M21 4H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h18c1.1 0 1.99-.9 1.99-2L23 6c0-1.1-.9-2-2-2zm-2 14H5V6h14v12z"},"children":[]}]};exports.ic_tablet_twotone=ic_tablet_twotone;var ic_tablet_android={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M18,0H6C4.34,0,3,1.34,3,3v18c0,1.66,1.34,3,3,3h12c1.66,0,3-1.34,3-3V3C21,1.34,19.66,0,18,0z M14,22h-4v-1h4V22z M19.25,19H4.75V3h14.5V19z"},"children":[{"name":"path","attribs":{"d":"M18,0H6C4.34,0,3,1.34,3,3v18c0,1.66,1.34,3,3,3h12c1.66,0,3-1.34,3-3V3C21,1.34,19.66,0,18,0z M14,22h-4v-1h4V22z M19.25,19H4.75V3h14.5V19z"},"children":[]}]}]}]}]}]}]}]};exports.ic_tablet_android=ic_tablet_android;var ic_tablet_android_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0zm0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 0H6C4.34 0 3 1.34 3 3v18c0 1.66 1.34 3 3 3h12c1.66 0 3-1.34 3-3V3c0-1.66-1.34-3-3-3zm-4 22h-4v-1h4v1zm5.25-3H4.75V3h14.5v16z"},"children":[]}]};exports.ic_tablet_android_outline=ic_tablet_android_outline;var ic_tablet_android_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0zm0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4.75 3h14.5v16H4.75z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M18 0H6C4.34 0 3 1.34 3 3v18c0 1.66 1.34 3 3 3h12c1.66 0 3-1.34 3-3V3c0-1.66-1.34-3-3-3zm-4 22h-4v-1h4v1zm5.25-3H4.75V3h14.5v16z"},"children":[]}]};exports.ic_tablet_android_twotone=ic_tablet_android_twotone;var ic_tablet_mac={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M18.5 0h-14C3.12 0 2 1.12 2 2.5v19C2 22.88 3.12 24 4.5 24h14c1.38 0 2.5-1.12 2.5-2.5v-19C21 1.12 19.88 0 18.5 0zm-7 23c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm7.5-4H4V3h15v16z"},"children":[]}]};exports.ic_tablet_mac=ic_tablet_mac;var ic_tablet_mac_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18.5 0h-14C3.12 0 2 1.12 2 2.5v19C2 22.88 3.12 24 4.5 24h14c1.38 0 2.5-1.12 2.5-2.5v-19C21 1.12 19.88 0 18.5 0zm-7 23c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm7.5-4H4V3h15v16z"},"children":[]}]};exports.ic_tablet_mac_outline=ic_tablet_mac_outline;var ic_tablet_mac_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 3h15v16H4z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M18.5 0h-14C3.12 0 2 1.12 2 2.5v19C2 22.88 3.12 24 4.5 24h14c1.38 0 2.5-1.12 2.5-2.5v-19C21 1.12 19.88 0 18.5 0zm-7 23c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm7.5-4H4V3h15v16z"},"children":[]}]};exports.ic_tablet_mac_twotone=ic_tablet_mac_twotone;var ic_toys={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 12c0-3 2.5-5.5 5.5-5.5S23 9 23 12H12zm0 0c0 3-2.5 5.5-5.5 5.5S1 15 1 12h11zm0 0c-3 0-5.5-2.5-5.5-5.5S9 1 12 1v11zm0 0c3 0 5.5 2.5 5.5 5.5S15 23 12 23V12z"},"children":[]}]};exports.ic_toys=ic_toys;var ic_toys_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0zm0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 23h-1v-6.57C9.93 17.4 8.52 18 7 18c-3.25 0-6-2.75-6-6v-1h6.57C6.6 9.93 6 8.52 6 7c0-3.25 2.75-6 6-6h1v6.57C14.07 6.6 15.48 6 17 6c3.25 0 6 2.75 6 6v1h-6.57c.97 1.07 1.57 2.48 1.57 4 0 3.25-2.75 6-6 6zm1-9.87v7.74c1.7-.46 3-2.04 3-3.87s-1.3-3.41-3-3.87zM3.13 13c.46 1.7 2.04 3 3.87 3s3.41-1.3 3.87-3H3.13zm10-2h7.74c-.46-1.7-2.05-3-3.87-3s-3.41 1.3-3.87 3zM11 3.13C9.3 3.59 8 5.18 8 7s1.3 3.41 3 3.87V3.13z"},"children":[]}]};exports.ic_toys_outline=ic_toys_outline;var ic_toys_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0zm0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 16c1.82 0 3.41-1.3 3.87-3H3.13c.46 1.7 2.05 3 3.87 3zm1-9c0 1.82 1.3 3.41 3 3.87V3.13C9.3 3.59 8 5.18 8 7zm9 1c-1.82 0-3.41 1.3-3.87 3h7.74c-.46-1.7-2.05-3-3.87-3zm-4 5.13v7.74c1.7-.46 3-2.04 3-3.87s-1.3-3.41-3-3.87z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M23 12c0-3.25-2.75-6-6-6-1.52 0-2.93.6-4 1.57V1h-1C8.75 1 6 3.75 6 7c0 1.52.6 2.93 1.57 4H1v1c0 3.25 2.75 6 6 6 1.52 0 2.93-.6 4-1.57V23h1c3.25 0 6-2.75 6-6 0-1.52-.6-2.93-1.57-4H23v-1zM7 16c-1.82 0-3.41-1.3-3.87-3h7.74c-.46 1.7-2.05 3-3.87 3zm4-5.13C9.3 10.41 8 8.82 8 7s1.3-3.41 3-3.87v7.74zm2 10v-7.74c1.7.46 3 2.04 3 3.87s-1.3 3.41-3 3.87zm.13-9.87c.46-1.7 2.04-3 3.87-3s3.41 1.3 3.87 3h-7.74z"},"children":[]}]};exports.ic_toys_twotone=ic_toys_twotone;var ic_tv={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.1-.9-2-2-2zm0 14H3V5h18v12z"},"children":[]}]};exports.ic_tv=ic_tv;var ic_tv_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.1-.9-2-2-2zm0 14H3V5h18v12z"},"children":[]}]};exports.ic_tv_outline=ic_tv_outline;var ic_tv_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 5h18v12H3z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.1-.9-2-2-2zm0 14H3V5h18v12z"},"children":[]}]};exports.ic_tv_twotone=ic_tv_twotone;var ic_videogame_asset={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0v24h24V0H0zm23 16c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V8c0-1.1.9-2 2-2h18c1.1 0 2 .9 2 2v8z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 6H3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-10 7H8v3H6v-3H3v-2h3V8h2v3h3v2zm4.5 2c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm4-3c-.83 0-1.5-.67-1.5-1.5S18.67 9 19.5 9s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z"},"children":[]}]};exports.ic_videogame_asset=ic_videogame_asset;var ic_videogame_asset_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 6H3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 10H3V8h18v8zM6 15h2v-2h2v-2H8V9H6v2H4v2h2z"},"children":[]},{"name":"circle","attribs":{"cx":"14.5","cy":"13.5","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"18.5","cy":"10.5","r":"1.5"},"children":[]}]};exports.ic_videogame_asset_outline=ic_videogame_asset_outline;var ic_videogame_asset_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 16h18V8H3v8zm15.5-7c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-4 3c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zM4 11h2V9h2v2h2v2H8v2H6v-2H4v-2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M21 6H3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 10H3V8h18v8zM6 15h2v-2h2v-2H8V9H6v2H4v2h2z"},"children":[]},{"name":"circle","attribs":{"cx":"14.5","cy":"13.5","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"18.5","cy":"10.5","r":"1.5"},"children":[]}]};exports.ic_videogame_asset_twotone=ic_videogame_asset_twotone;var ic_watch={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none","opacity":".1"},"children":[]},{"name":"path","attribs":{"d":"M20 12c0-2.54-1.19-4.81-3.04-6.27L16 0H8l-.95 5.73C5.19 7.19 4 9.45 4 12s1.19 4.81 3.05 6.27L8 24h8l.96-5.73C18.81 16.81 20 14.54 20 12zM6 12c0-3.31 2.69-6 6-6s6 2.69 6 6-2.69 6-6 6-6-2.69-6-6z"},"children":[]}]};exports.ic_watch=ic_watch;var ic_watch_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14.31 2l.41 2.48C13.87 4.17 12.96 4 12 4c-.95 0-1.87.17-2.71.47L9.7 2h4.61m.41 17.52L14.31 22H9.7l-.41-2.47c.84.3 1.76.47 2.71.47.96 0 1.87-.17 2.72-.48M16 0H8l-.95 5.73C5.19 7.19 4 9.45 4 12s1.19 4.81 3.05 6.27L8 24h8l.96-5.73C18.81 16.81 20 14.54 20 12s-1.19-4.81-3.04-6.27L16 0zm-4 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z"},"children":[]}]};exports.ic_watch_outline=ic_watch_outline;var ic_watch_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14.72 4.48L14.31 2H9.7l-.41 2.47C10.13 4.17 11.05 4 12 4c.96 0 1.87.17 2.72.48zM9.29 19.53L9.7 22h4.61l.41-2.48c-.85.31-1.76.48-2.72.48-.95 0-1.87-.17-2.71-.47z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M16.96 5.73L16 0H8l-.95 5.73C5.19 7.19 4 9.45 4 12s1.19 4.81 3.05 6.27L8 24h8l.96-5.73C18.81 16.81 20 14.54 20 12s-1.19-4.81-3.04-6.27zM9.7 2h4.61l.41 2.48C13.87 4.17 12.96 4 12 4c-.95 0-1.87.17-2.71.47L9.7 2zm4.61 20H9.7l-.41-2.47c.84.3 1.76.47 2.71.47.96 0 1.87-.17 2.72-.48L14.31 22zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z"},"children":[]}]};exports.ic_watch_twotone=ic_watch_twotone;var ic_sensor_door={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M18,2H6C4.9,2,4,2.9,4,4v18h16V4C20,2.9,19.1,2,18,2z M15.5,13.5c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5 S17,11.17,17,12S16.33,13.5,15.5,13.5z"},"children":[{"name":"path","attribs":{"d":"M18,2H6C4.9,2,4,2.9,4,4v18h16V4C20,2.9,19.1,2,18,2z M15.5,13.5c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5 S17,11.17,17,12S16.33,13.5,15.5,13.5z"},"children":[]}]}]}]};exports.ic_sensor_door=ic_sensor_door;var ic_sensor_door_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M18,4v16H6V4H18 M18,2H6C4.9,2,4,2.9,4,4v18h16V4C20,2.9,19.1,2,18,2L18,2z M15.5,10.5c-0.83,0-1.5,0.67-1.5,1.5 s0.67,1.5,1.5,1.5c0.83,0,1.5-0.67,1.5-1.5S16.33,10.5,15.5,10.5z"},"children":[{"name":"path","attribs":{"d":"M18,4v16H6V4H18 M18,2H6C4.9,2,4,2.9,4,4v18h16V4C20,2.9,19.1,2,18,2L18,2z M15.5,10.5c-0.83,0-1.5,0.67-1.5,1.5 s0.67,1.5,1.5,1.5c0.83,0,1.5-0.67,1.5-1.5S16.33,10.5,15.5,10.5z"},"children":[]}]}]}]};exports.ic_sensor_door_outline=ic_sensor_door_outline;var ic_sensor_door_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M18,4v16H6V4H18 M15.5,10.5c-0.83,0-1.5,0.67-1.5,1.5s0.67,1.5,1.5,1.5c0.83,0,1.5-0.67,1.5-1.5 S16.33,10.5,15.5,10.5z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M18,4v16H6V4H18 M15.5,10.5c-0.83,0-1.5,0.67-1.5,1.5s0.67,1.5,1.5,1.5c0.83,0,1.5-0.67,1.5-1.5 S16.33,10.5,15.5,10.5z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M18,4v16H6V4H18 M18,2H6C4.9,2,4,2.9,4,4v18h16V4C20,2.9,19.1,2,18,2L18,2z M15.5,10.5c-0.83,0-1.5,0.67-1.5,1.5 s0.67,1.5,1.5,1.5c0.83,0,1.5-0.67,1.5-1.5S16.33,10.5,15.5,10.5z"},"children":[{"name":"path","attribs":{"d":"M18,4v16H6V4H18 M18,2H6C4.9,2,4,2.9,4,4v18h16V4C20,2.9,19.1,2,18,2L18,2z M15.5,10.5c-0.83,0-1.5,0.67-1.5,1.5 s0.67,1.5,1.5,1.5c0.83,0,1.5-0.67,1.5-1.5S16.33,10.5,15.5,10.5z"},"children":[]}]}]}]};exports.ic_sensor_door_twotone=ic_sensor_door_twotone;var ic_sensor_window={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M18,4v16H6V4H18 M18,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C20,2.9,19.1,2,18,2L18,2z M7,19h10v-6H7 V19z M10,10h4v1h3V5H7v6h3V10z"},"children":[{"name":"path","attribs":{"d":"M18,4v16H6V4H18 M18,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C20,2.9,19.1,2,18,2L18,2z M7,19h10v-6H7 V19z M10,10h4v1h3V5H7v6h3V10z"},"children":[]}]}]}]};exports.ic_sensor_window=ic_sensor_window;var ic_sensor_window_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M18,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C20,2.9,19.1,2,18,2z M18,4v7h-4v-1h-4v1H6V4H18z M6,20 v-7h12v7H6z"},"children":[{"name":"path","attribs":{"d":"M18,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C20,2.9,19.1,2,18,2z M18,4v7h-4v-1h-4v1H6V4H18z M6,20 v-7h12v7H6z"},"children":[]}]}]}]};exports.ic_sensor_window_outline=ic_sensor_window_outline;var ic_sensor_window_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M18,4v7h-4v-1h-4v1H6V4H18z M6,20v-7h12v7H6z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M18,4v7h-4v-1h-4v1H6V4H18z M6,20v-7h12v7H6z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M18,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C20,2.9,19.1,2,18,2z M18,4v7h-4v-1h-4v1H6V4H18z M6,20 v-7h12v7H6z"},"children":[{"name":"path","attribs":{"d":"M18,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C20,2.9,19.1,2,18,2z M18,4v7h-4v-1h-4v1H6V4H18z M6,20 v-7h12v7H6z"},"children":[]}]}]}]};exports.ic_sensor_window_twotone=ic_sensor_window_twotone;var ic_10mp={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13.5 7H15v3h-1.5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 5.5v6H8.5V7H7V5.5h3zm6.5 5c0 .55-.45 1-1 1H13c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4zm-1 3.5H17v1.5h-1.5z"},"children":[]}]};exports.ic_10mp=ic_10mp;var ic_11mp={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM11 5.5v6H9.5V7H8V5.5h3zm5 0v6h-1.5V7H13V5.5h3zm-.5 8.5H17v1.5h-1.5z"},"children":[]}]};exports.ic_11mp=ic_11mp;var ic_12mp={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 5.5v6H8.5V7H7V5.5h3zM15.5 9h-2v1h3v1.5H12V9c0-.55.45-1 1-1h2V7h-3V5.5h3.5c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1zm0 5H17v1.5h-1.5z"},"children":[]}]};exports.ic_12mp=ic_12mp;var ic_13mp={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 5.5v6H8.5V7H7V5.5h3zm6.5 5c0 .55-.45 1-1 1H12V10h3V9h-2V8h2V7h-3V5.5h3.5c.55 0 1 .45 1 1v4zm-1 3.5H17v1.5h-1.5z"},"children":[]}]};exports.ic_13mp=ic_13mp;var ic_14mp={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 5.5v6H8.5V7H7V5.5h3zm7.5 4.5h-1v1.5H15V10h-3V5.5h1.5v3H15v-3h1.5v3h1V10zm-2 4H17v1.5h-1.5z"},"children":[]}]};exports.ic_14mp=ic_14mp;var ic_15mp={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 5.5v6H8.5V7H7V5.5h3zM16.5 7h-3v1h2c.55 0 1 .45 1 1v1.5c0 .55-.45 1-1 1H12V10h3V9h-3V5.5h4.5V7zm-1 7H17v1.5h-1.5z"},"children":[]}]};exports.ic_15mp=ic_15mp;var ic_16mp={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13.5 9H15v1.5h-1.5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 5.5v6H8.5V7H7V5.5h3zm3 6c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3.5V7h-3v1h2c.55 0 1 .45 1 1v1.5c0 .55-.45 1-1 1H13zm2.5 2.5H17v1.5h-1.5z"},"children":[]}]};exports.ic_16mp=ic_16mp;var ic_17mp={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 5.5v6H8.5V7H7V5.5h3zm5 6h-1.75L14.62 7H12V5.5h3.5c.67 0 1.15.65.96 1.29L15 11.5zm.5 2.5H17v1.5h-1.5z"},"children":[]}]};exports.ic_17mp=ic_17mp;var ic_18mp={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 5.5v6H8.5V7H7V5.5h3zm6.5 5c0 .55-.45 1-1 1H13c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4zm-3 0H15V9h-1.5v1.5zm0-2.5H15V6.5h-1.5V8zm2 6H17v1.5h-1.5z"},"children":[]}]};exports.ic_18mp=ic_18mp;var ic_19mp={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 7h3V9h-2c-.55 0-1-.45-1-1V6.5c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1H12V10zm1.5-2H15V6.5h-1.5V8zM7 5.5h3v6H8.5V7H7V5.5zm5 13h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm6.5-2.5c0 .55-.45 1-1 1h-2v1.5H14v-6h3.5c.55 0 1 .45 1 1V16zm-3-2H17v1.5h-1.5z"},"children":[]}]};exports.ic_19mp=ic_19mp;var ic_20mp={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14.5 7H16v3h-1.5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zm2-8c0 .55-.45 1-1 1H14c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4zM10 9H8v1h3v1.5H6.5V9c0-.55.45-1 1-1h2V7h-3V5.5H10c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1zm5.5 5H17v1.5h-1.5z"},"children":[]}]};exports.ic_20mp=ic_20mp;var ic_21mp={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM11 9H9v1h3v1.5H7.5V9c0-.55.45-1 1-1h2V7h-3V5.5H11c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1zm3-3.5h3v6h-1.5V7H14V5.5zm1.5 8.5H17v1.5h-1.5z"},"children":[]}]};exports.ic_21mp=ic_21mp;var ic_22mp={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 9H8v1h3v1.5H6.5V9c0-.55.45-1 1-1h2V7h-3V5.5H10c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1zm6.5 0h-2v1h3v1.5H13V9c0-.55.45-1 1-1h2V7h-3V5.5h3.5c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1zm-1 5H17v1.5h-1.5z"},"children":[]}]};exports.ic_22mp=ic_22mp;var ic_23mp={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 9H8v1h3v1.5H6.5V9c0-.55.45-1 1-1h2V7h-3V5.5H10c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1zm7.5 1.5c0 .55-.45 1-1 1H13V10h3V9h-2V8h2V7h-3V5.5h3.5c.55 0 1 .45 1 1v4zm-2 3.5H17v1.5h-1.5z"},"children":[]}]};exports.ic_23mp=ic_23mp;var ic_24mp={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 9H8v1h3v1.5H6.5V9c0-.55.45-1 1-1h2V7h-3V5.5H10c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1zm8.5 1h-1v1.5H16V10h-3V5.5h1.5v3H16v-3h1.5v3h1V10zm-3 4H17v1.5h-1.5z"},"children":[]}]};exports.ic_24mp=ic_24mp;var ic_2mp={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zm-2-9.5h-2v1h3v1.5H10V9c0-.55.45-1 1-1h2V7h-3V5.5h3.5c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1zm2 5H17v1.5h-1.5z"},"children":[]}]};exports.ic_2mp=ic_2mp;var ic_3mp={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zm-1-8c0 .55-.45 1-1 1H10V10h3V9h-2V8h2V7h-3V5.5h3.5c.55 0 1 .45 1 1v4zm1 3.5H17v1.5h-1.5z"},"children":[]}]};exports.ic_3mp=ic_3mp;var ic_4mp={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3-8.5h-1v1.5h-1.5V10h-3V5.5H11v3h1.5v-3H14v3h1V10zm.5 8.5H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zm0-4.5H17v1.5h-1.5z"},"children":[]}]};exports.ic_4mp=ic_4mp;var ic_5mp={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM14.5 7h-3v1h2c.55 0 1 .45 1 1v1.5c0 .55-.45 1-1 1H10V10h3V9h-3V5.5h4.5V7zm1 7H17v1.5h-1.5z"},"children":[]}]};exports.ic_5mp=ic_5mp;var ic_6mp={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11.5 9H13v1.5h-1.5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm-1-7c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3.5V7h-3v1h2c.55 0 1 .45 1 1v1.5c0 .55-.45 1-1 1H11zm4.5 7H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zm0-4.5H17v1.5h-1.5z"},"children":[]}]};exports.ic_6mp=ic_6mp;var ic_7mp={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zm-2.5-7h-1.75L12.62 7H10V5.5h3.5c.67 0 1.15.65.96 1.29L13 11.5zm2.5 2.5H17v1.5h-1.5z"},"children":[]}]};exports.ic_7mp=ic_7mp;var ic_8mp={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11.5 9H13v1.5h-1.5zm0-2.5H13V8h-1.5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zm-1-8c0 .55-.45 1-1 1H11c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4zm1 3.5H17v1.5h-1.5z"},"children":[]}]};exports.ic_8mp=ic_8mp;var ic_9mp={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11.5 6.5H13V8h-1.5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zm-1-8c0 .55-.45 1-1 1H10V10h3V9h-2c-.55 0-1-.45-1-1V6.5c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4zm1 3.5H17v1.5h-1.5z"},"children":[]}]};exports.ic_9mp=ic_9mp;var ic_add_a_photo={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M3,4V1h2v3h3v2H5v3H3V6H0V4H3z M6,10V7h3V4h7l1.83,2H21c1.1,0,2,0.9,2,2v12c0,1.1-0.9,2-2,2H5c-1.1,0-2-0.9-2-2V10H6z M13,19c2.76,0,5-2.24,5-5s-2.24-5-5-5s-5,2.24-5,5S10.24,19,13,19z M9.8,14c0,1.77,1.43,3.2,3.2,3.2s3.2-1.43,3.2-3.2 s-1.43-3.2-3.2-3.2S9.8,12.23,9.8,14z"},"children":[]}]};exports.ic_add_a_photo=ic_add_a_photo;var ic_add_a_photo_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 6h-3.17L16 4h-6v2h5.12l1.83 2H21v12H5v-9H3v9c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zM8 14c0 2.76 2.24 5 5 5s5-2.24 5-5-2.24-5-5-5-5 2.24-5 5zm5-3c1.65 0 3 1.35 3 3s-1.35 3-3 3-3-1.35-3-3 1.35-3 3-3zM5 6h3V4H5V1H3v3H0v2h3v3h2z"},"children":[]}]};exports.ic_add_a_photo_outline=ic_add_a_photo_outline;var ic_add_a_photo_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6 7v3H5v10h16V8h-4.05l-1.83-2H9v1H6zm7 2c2.76 0 5 2.24 5 5s-2.24 5-5 5-5-2.24-5-5 2.24-5 5-5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M21 6h-3.17L16 4H9v2h6.12l1.83 2H21v12H5V10H3v10c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zM8 14c0 2.76 2.24 5 5 5s5-2.24 5-5-2.24-5-5-5-5 2.24-5 5zm5-3c1.65 0 3 1.35 3 3s-1.35 3-3 3-3-1.35-3-3 1.35-3 3-3zM5 9V6h3V4H5V1H3v3H0v2h3v3z"},"children":[]}]};exports.ic_add_a_photo_twotone=ic_add_a_photo_twotone;var ic_add_photo_alternate={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 7v2.99s-1.99.01-2 0V7h-3s.01-1.99 0-2h3V2h2v3h3v2h-3zm-3 4V8h-3V5H5c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-8h-3zM5 19l3-4 2 3 3-4 4 5H5z"},"children":[]}]};exports.ic_add_photo_alternate=ic_add_photo_alternate;var ic_add_photo_alternate_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 20H4V6h9V4H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-9h-2v9zm-7.79-3.17l-1.96-2.36L5.5 18h11l-3.54-4.71zM20 4V1h-2v3h-3c.01.01 0 2 0 2h3v2.99c.01.01 2 0 2 0V6h3V4h-3z"},"children":[]}]};exports.ic_add_photo_alternate_outline=ic_add_photo_alternate_outline;var ic_add_photo_alternate_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10.21 16.83l-1.96-2.36L5.5 18h11l-3.54-4.71z"},"children":[]},{"name":"path","attribs":{"d":"M16.5 18h-11l2.75-3.53 1.96 2.36 2.75-3.54L16.5 18zM17 7h-3V6H4v14h14V10h-1V7z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 4V1h-2v3h-3v2h3v2.99h2V6h3V4zm-2 16H4V6h10V4H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V10h-2v10z"},"children":[]}]};exports.ic_add_photo_alternate_twotone=ic_add_photo_alternate_twotone;var ic_add_to_photos={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-1 9h-4v4h-2v-4H9V9h4V5h2v4h4v2z"},"children":[]}]};exports.ic_add_to_photos=ic_add_to_photos;var ic_add_to_photos_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zm-7-1h2v-4h4V9h-4V5h-2v4H9v2h4z"},"children":[]}]};exports.ic_add_to_photos_outline=ic_add_to_photos_outline;var ic_add_to_photos_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 4H8v12h12V4zm-1 7h-4v4h-2v-4H9V9h4V5h2v4h4v2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M4 22h14v-2H4V6H2v14c0 1.1.9 2 2 2zm4-4h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2zM8 4h12v12H8V4zm7 1h-2v4H9v2h4v4h2v-4h4V9h-4z"},"children":[]}]};exports.ic_add_to_photos_twotone=ic_add_to_photos_twotone;var ic_adjust={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm3-8c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3 3 1.34 3 3z"},"children":[]}]};exports.ic_adjust=ic_adjust;var ic_adjust_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm3-8c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3 3 1.34 3 3z"},"children":[]}]};exports.ic_adjust_outline=ic_adjust_outline;var ic_adjust_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 9c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0-7C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"},"children":[]}]};exports.ic_adjust_twotone=ic_adjust_twotone;var ic_animation={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15 2c-2.71 0-5.05 1.54-6.22 3.78-1.28.67-2.34 1.72-3 3C3.54 9.95 2 12.29 2 15c0 3.87 3.13 7 7 7 2.71 0 5.05-1.54 6.22-3.78 1.28-.67 2.34-1.72 3-3C20.46 14.05 22 11.71 22 9c0-3.87-3.13-7-7-7zM9 20c-2.76 0-5-2.24-5-5 0-1.12.37-2.16 1-3 0 3.87 3.13 7 7 7-.84.63-1.88 1-3 1zm3-3c-2.76 0-5-2.24-5-5 0-1.12.37-2.16 1-3 0 3.86 3.13 6.99 7 7-.84.63-1.88 1-3 1zm4.7-3.3c-.53.19-1.1.3-1.7.3-2.76 0-5-2.24-5-5 0-.6.11-1.17.3-1.7.53-.19 1.1-.3 1.7-.3 2.76 0 5 2.24 5 5 0 .6-.11 1.17-.3 1.7zM19 12c0-3.86-3.13-6.99-7-7 .84-.63 1.87-1 3-1 2.76 0 5 2.24 5 5 0 1.12-.37 2.16-1 3z"},"children":[]},{"name":"path","attribs":{"d":"M0 0h24v24H0zm0 0h24v24H0z","fill":"none"},"children":[]}]};exports.ic_animation=ic_animation;var ic_assistant={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h4l3 3 3-3h4c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-5.12 10.88L12 17l-1.88-4.12L6 11l4.12-1.88L12 5l1.88 4.12L18 11l-4.12 1.88z"},"children":[]}]};exports.ic_assistant=ic_assistant;var ic_assistant_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h4l3 3 3-3h4c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 16h-4.83l-.59.59L12 20.17l-1.59-1.59-.58-.58H5V4h14v14zm-7-1l1.88-4.12L18 11l-4.12-1.88L12 5l-1.88 4.12L6 11l4.12 1.88z"},"children":[]}]};exports.ic_assistant_outline=ic_assistant_outline;var ic_assistant_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9.83 18l.59.59L12 20.17l1.59-1.59.58-.58H19V4H5v14h4.83zm.29-8.88L12 5l1.88 4.12L18 11l-4.12 1.88L12 17l-1.88-4.12L6 11l4.12-1.88z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M5 20h4l3 3 3-3h4c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2zM5 4h14v14h-4.83l-.59.59L12 20.17l-1.59-1.59-.58-.58H5V4zm7 13l1.88-4.12L18 11l-4.12-1.88L12 5l-1.88 4.12L6 11l4.12 1.88z"},"children":[]}]};exports.ic_assistant_twotone=ic_assistant_twotone;var ic_assistant_photo={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14.4 6L14 4H5v17h2v-7h5.6l.4 2h7V6z"},"children":[]}]};exports.ic_assistant_photo=ic_assistant_photo;var ic_assistant_photo_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12.36 6l.08.39.32 1.61H18v6h-3.36l-.08-.39-.32-1.61H7V6h5.36M14 4H5v17h2v-7h5.6l.4 2h7V6h-5.6L14 4z"},"children":[]}]};exports.ic_assistant_photo_outline=ic_assistant_photo_outline;var ic_assistant_photo_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14.24 12l.4 2H18V8h-5.24l-.4-2H7v6z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M7 14h5.6l.4 2h7V6h-5.6L14 4H5v17h2v-7zm0-8h5.36l.4 2H18v6h-3.36l-.4-2H7V6z"},"children":[]}]};exports.ic_assistant_photo_twotone=ic_assistant_photo_twotone;var ic_audiotrack={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 3v9.28c-.47-.17-.97-.28-1.5-.28C8.01 12 6 14.01 6 16.5S8.01 21 10.5 21c2.31 0 4.2-1.75 4.45-4H15V6h4V3h-7z"},"children":[]}]};exports.ic_audiotrack=ic_audiotrack;var ic_audiotrack_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 3v10.55c-.59-.34-1.27-.55-2-.55-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4V7h4V3h-6zm-2 16c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"},"children":[]}]};exports.ic_audiotrack_outline=ic_audiotrack_outline;var ic_audiotrack_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"10","cy":"17","opacity":".3","r":"2"},"children":[]},{"name":"path","attribs":{"d":"M10 21c2.21 0 4-1.79 4-4V7h4V3h-6v10.55c-.59-.34-1.27-.55-2-.55-2.21 0-4 1.79-4 4s1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2z"},"children":[]}]};exports.ic_audiotrack_twotone=ic_audiotrack_twotone;var ic_auto_awesome={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 9l1.25-2.75L23 5l-2.75-1.25L19 1l-1.25 2.75L15 5l2.75 1.25L19 9zm-7.5.5L9 4 6.5 9.5 1 12l5.5 2.5L9 20l2.5-5.5L17 12l-5.5-2.5zM19 15l-1.25 2.75L15 19l2.75 1.25L19 23l1.25-2.75L23 19l-2.75-1.25L19 15z"},"children":[]}]};exports.ic_auto_awesome=ic_auto_awesome;var ic_auto_awesome_mosaic={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 5v14c0 1.1.89 2 2 2h6V3H5c-1.11 0-2 .9-2 2zm16-2h-6v8h8V5c0-1.1-.9-2-2-2zm-6 18h6c1.1 0 2-.9 2-2v-6h-8v8z"},"children":[]}]};exports.ic_auto_awesome_mosaic=ic_auto_awesome_mosaic;var ic_auto_awesome_motion={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14 2H4c-1.11 0-2 .9-2 2v10h2V4h10V2zm4 4H8c-1.11 0-2 .9-2 2v10h2V8h10V6zm2 4h-8c-1.11 0-2 .9-2 2v8c0 1.1.89 2 2 2h8c1.1 0 2-.9 2-2v-8c0-1.1-.9-2-2-2z"},"children":[]}]};exports.ic_auto_awesome_motion=ic_auto_awesome_motion;var ic_auto_fix_high={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7.5 5.6L10 7 8.6 4.5 10 2 7.5 3.4 5 2l1.4 2.5L5 7zm12 9.8L17 14l1.4 2.5L17 19l2.5-1.4L22 19l-1.4-2.5L22 14zM22 2l-2.5 1.4L17 2l1.4 2.5L17 7l2.5-1.4L22 7l-1.4-2.5zm-7.63 5.29c-.39-.39-1.02-.39-1.41 0L1.29 18.96c-.39.39-.39 1.02 0 1.41l2.34 2.34c.39.39 1.02.39 1.41 0L16.7 11.05c.39-.39.39-1.02 0-1.41l-2.33-2.35zm-1.03 5.49l-2.12-2.12 2.44-2.44 2.12 2.12-2.44 2.44z"},"children":[]}]};exports.ic_auto_fix_high=ic_auto_fix_high;var ic_auto_fix_normal={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 2l-2.5 1.4L17 2l1.4 2.5L17 7l2.5-1.4L22 7l-1.4-2.5zm-7.63 5.29c-.39-.39-1.02-.39-1.41 0L1.29 18.96c-.39.39-.39 1.02 0 1.41l2.34 2.34c.39.39 1.02.39 1.41 0L16.7 11.05c.39-.39.39-1.02 0-1.41l-2.33-2.35zm-1.03 5.49l-2.12-2.12 2.44-2.44 2.12 2.12-2.44 2.44z"},"children":[]}]};exports.ic_auto_fix_normal=ic_auto_fix_normal;var ic_auto_fix_off={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0zm0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M23 1l-2.5 1.4L18 1l1.4 2.5L18 6l2.5-1.4L23 6l-1.4-2.5L23 1zm-8.34 6.22l2.12 2.12-2.44 2.44.81.81 2.55-2.55c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0L11.4 8.84l.81.81 2.45-2.43zm-.78 6.65l-3.75-3.75-6.86-6.86L2 4.53l6.86 6.86-6.57 6.57c-.39.39-.39 1.02 0 1.41l2.34 2.34c.39.39 1.02.39 1.41 0l6.57-6.57L19.47 22l1.27-1.27-6.86-6.86z"},"children":[]}]};exports.ic_auto_fix_off=ic_auto_fix_off;var ic_auto_stories={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 1l-5 5v11l5-4.5V1zM1 6v14.65c0 .25.25.5.5.5.1 0 .15-.05.25-.05C3.1 20.45 5.05 20 6.5 20c1.95 0 4.05.4 5.5 1.5V6c-1.45-1.1-3.55-1.5-5.5-1.5S2.45 4.9 1 6zm22 13.5V6c-.6-.45-1.25-.75-2-1v13.5c-1.1-.35-2.3-.5-3.5-.5-1.7 0-4.15.65-5.5 1.5v2c1.35-.85 3.8-1.5 5.5-1.5 1.65 0 3.35.3 4.75 1.05.1.05.15.05.25.05.25 0 .5-.25.5-.5v-1.1z"},"children":[]}]};exports.ic_auto_stories=ic_auto_stories;var ic_bedtime={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M12.34,2.02C6.59,1.82,2,6.42,2,12c0,5.52,4.48,10,10,10c3.71,0,6.93-2.02,8.66-5.02C13.15,16.73,8.57,8.55,12.34,2.02z"},"children":[{"name":"path","attribs":{"d":"M12.34,2.02C6.59,1.82,2,6.42,2,12c0,5.52,4.48,10,10,10c3.71,0,6.93-2.02,8.66-5.02C13.15,16.73,8.57,8.55,12.34,2.02z"},"children":[]}]}]}]}]}]};exports.ic_bedtime=ic_bedtime;var ic_bedtime_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M9.27,4.49c-1.63,7.54,3.75,12.41,7.66,13.8C15.54,19.38,13.81,20,12,20c-4.41,0-8-3.59-8-8C4,8.55,6.2,5.6,9.27,4.49 M11.99,2.01C6.4,2.01,2,6.54,2,12c0,5.52,4.48,10,10,10c3.71,0,6.93-2.02,8.66-5.02c-7.51-0.25-12.09-8.43-8.32-14.97 C12.22,2.01,12.11,2.01,11.99,2.01L11.99,2.01z"},"children":[{"name":"path","attribs":{"d":"M9.27,4.49c-1.63,7.54,3.75,12.41,7.66,13.8C15.54,19.38,13.81,20,12,20c-4.41,0-8-3.59-8-8C4,8.55,6.2,5.6,9.27,4.49 M11.99,2.01C6.4,2.01,2,6.54,2,12c0,5.52,4.48,10,10,10c3.71,0,6.93-2.02,8.66-5.02c-7.51-0.25-12.09-8.43-8.32-14.97 C12.22,2.01,12.11,2.01,11.99,2.01L11.99,2.01z"},"children":[]}]}]}]};exports.ic_bedtime_outline=ic_bedtime_outline;var ic_bedtime_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{"opacity":".3"},"children":[{"name":"g","attribs":{"opacity":".3"},"children":[{"name":"path","attribs":{"d":"M9.27,4.49C6.2,5.6,4,8.55,4,12c0,4.41,3.59,8,8,8c1.81,0,3.54-0.62,4.93-1.71C13.02,16.9,7.64,12.03,9.27,4.49z"},"children":[{"name":"path","attribs":{"d":"M9.27,4.49C6.2,5.6,4,8.55,4,12c0,4.41,3.59,8,8,8c1.81,0,3.54-0.62,4.93-1.71C13.02,16.9,7.64,12.03,9.27,4.49z"},"children":[]}]}]}]},{"name":"path","attribs":{"d":"M12.34,2.02c-0.12,0-0.23-0.01-0.35-0.01C6.4,2.01,2,6.54,2,12c0,5.52,4.48,10,10,10c3.71,0,6.93-2.02,8.66-5.02 C13.15,16.73,8.57,8.55,12.34,2.02z M12,20c-4.41,0-8-3.59-8-8c0-3.45,2.2-6.4,5.27-7.51c-1.63,7.54,3.75,12.41,7.66,13.8 C15.54,19.38,13.81,20,12,20z"},"children":[{"name":"path","attribs":{"d":"M12.34,2.02c-0.12,0-0.23-0.01-0.35-0.01C6.4,2.01,2,6.54,2,12c0,5.52,4.48,10,10,10c3.71,0,6.93-2.02,8.66-5.02 C13.15,16.73,8.57,8.55,12.34,2.02z M12,20c-4.41,0-8-3.59-8-8c0-3.45,2.2-6.4,5.27-7.51c-1.63,7.54,3.75,12.41,7.66,13.8 C15.54,19.38,13.81,20,12,20z"},"children":[]}]}]}]}]}]};exports.ic_bedtime_twotone=ic_bedtime_twotone;var ic_blur_circular={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zM7 9.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm3 7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-3-3c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm3-6c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM14 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-1.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm3 6c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-4c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm2-3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-3.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z"},"children":[]}]};exports.ic_blur_circular=ic_blur_circular;var ic_blur_circular_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zM7 9.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm3 7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-3-3c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm3-6c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM14 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-1.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm3 6c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-4c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm2-3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-3.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z"},"children":[]}]};exports.ic_blur_circular_outline=ic_blur_circular_outline;var ic_blur_circular_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14 7.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z"},"children":[]},{"name":"circle","attribs":{"cx":"14","cy":"10","r":"1"},"children":[]},{"name":"circle","attribs":{"cx":"14","cy":"14","r":"1"},"children":[]},{"name":"path","attribs":{"d":"M10 16.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z"},"children":[]},{"name":"circle","attribs":{"cx":"10","cy":"10","r":"1"},"children":[]},{"name":"path","attribs":{"d":"M7 13.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zM7 9.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z"},"children":[]},{"name":"circle","attribs":{"cx":"10","cy":"14","r":"1"},"children":[]},{"name":"path","attribs":{"d":"M10 7.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm4 9c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm3-7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0 4c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z"},"children":[]}]};exports.ic_blur_circular_twotone=ic_blur_circular_twotone;var ic_blur_linear={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 17.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM9 13c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zM3 21h18v-2H3v2zM5 9.5c.83 0 1.5-.67 1.5-1.5S5.83 6.5 5 6.5 3.5 7.17 3.5 8 4.17 9.5 5 9.5zm0 4c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM9 17c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm8-.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM3 3v2h18V3H3zm14 5.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm0 4c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM13 9c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1z"},"children":[]}]};exports.ic_blur_linear=ic_blur_linear;var ic_blur_linear_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 17.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM9 13c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zM3 21h18v-2H3v2zM5 9.5c.83 0 1.5-.67 1.5-1.5S5.83 6.5 5 6.5 3.5 7.17 3.5 8 4.17 9.5 5 9.5zm0 4c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM9 17c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm8-.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM3 3v2h18V3H3zm14 5.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm0 4c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM13 9c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1z"},"children":[]}]};exports.ic_blur_linear_outline=ic_blur_linear_outline;var ic_blur_linear_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 16.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z"},"children":[]},{"name":"circle","attribs":{"cx":"9","cy":"12","r":"1"},"children":[]},{"name":"circle","attribs":{"cx":"13","cy":"8","r":"1"},"children":[]},{"name":"circle","attribs":{"cx":"13","cy":"16","r":"1"},"children":[]},{"name":"path","attribs":{"d":"M17 12.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z"},"children":[]},{"name":"circle","attribs":{"cx":"13","cy":"12","r":"1"},"children":[]},{"name":"path","attribs":{"d":"M3 3h18v2H3z"},"children":[]},{"name":"circle","attribs":{"cx":"5","cy":"8","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"5","cy":"12","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"5","cy":"16","r":"1.5"},"children":[]},{"name":"path","attribs":{"d":"M17 8.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z"},"children":[]},{"name":"circle","attribs":{"cx":"9","cy":"16","r":"1"},"children":[]},{"name":"circle","attribs":{"cx":"9","cy":"8","r":"1"},"children":[]},{"name":"path","attribs":{"d":"M3 19h18v2H3z"},"children":[]}]};exports.ic_blur_linear_twotone=ic_blur_linear_twotone;var ic_blur_off={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm-.2 4.48l.2.02c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5l.02.2c.09.67.61 1.19 1.28 1.28zM14 3.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm-4 0c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm11 7c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM10 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm8 8c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm-4 13.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM2.5 5.27l3.78 3.78L6 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1c0-.1-.03-.19-.06-.28l2.81 2.81c-.71.11-1.25.73-1.25 1.47 0 .83.67 1.5 1.5 1.5.74 0 1.36-.54 1.47-1.25l2.81 2.81c-.09-.03-.18-.06-.28-.06-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1c0-.1-.03-.19-.06-.28l3.78 3.78L20 20.23 3.77 4 2.5 5.27zM10 17c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm11-3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM6 13c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zM3 9.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 11c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM6 17c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm-3-3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z"},"children":[]}]};exports.ic_blur_off=ic_blur_off;var ic_blur_off_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"14","cy":"6","r":"1"},"children":[]},{"name":"path","attribs":{"d":"M13.8 11.48l.2.02c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5l.02.2c.09.67.61 1.19 1.28 1.28zM14 3.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm-4 0c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z"},"children":[]},{"name":"circle","attribs":{"cx":"18","cy":"10","r":"1"},"children":[]},{"name":"circle","attribs":{"cx":"18","cy":"6","r":"1"},"children":[]},{"name":"path","attribs":{"d":"M21 10.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z"},"children":[]},{"name":"circle","attribs":{"cx":"10","cy":"6","r":"1"},"children":[]},{"name":"circle","attribs":{"cx":"18","cy":"14","r":"1"},"children":[]},{"name":"circle","attribs":{"cx":"6","cy":"18","r":"1"},"children":[]},{"name":"path","attribs":{"d":"M14 20.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7-7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-18 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z"},"children":[]},{"name":"circle","attribs":{"cx":"10","cy":"18","r":"1"},"children":[]},{"name":"path","attribs":{"d":"M3 9.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 11c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z"},"children":[]},{"name":"circle","attribs":{"cx":"6","cy":"14","r":"1"},"children":[]},{"name":"path","attribs":{"d":"M2.5 5.27L6 8.77l.28.28L6 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1c0-.1-.03-.19-.06-.28l2.81 2.81c-.71.11-1.25.73-1.25 1.47 0 .83.67 1.5 1.5 1.5.74 0 1.36-.54 1.47-1.25l2.81 2.81c-.09-.03-.18-.06-.28-.06-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1c0-.1-.03-.19-.06-.28l3.78 3.78h.01l1.41-1.41L3.91 3.86 2.5 5.27z"},"children":[]}]};exports.ic_blur_off_outline=ic_blur_off_outline;var ic_blur_off_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"14","cy":"6","r":"1"},"children":[]},{"name":"path","attribs":{"d":"M13.8 11.48l.2.02c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5l.02.2c.09.67.61 1.19 1.28 1.28zM14 3.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm-4 0c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z"},"children":[]},{"name":"circle","attribs":{"cx":"18","cy":"10","r":"1"},"children":[]},{"name":"circle","attribs":{"cx":"18","cy":"6","r":"1"},"children":[]},{"name":"path","attribs":{"d":"M21 10.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z"},"children":[]},{"name":"circle","attribs":{"cx":"10","cy":"6","r":"1"},"children":[]},{"name":"circle","attribs":{"cx":"18","cy":"14","r":"1"},"children":[]},{"name":"circle","attribs":{"cx":"6","cy":"18","r":"1"},"children":[]},{"name":"path","attribs":{"d":"M14 20.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7-7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-18 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z"},"children":[]},{"name":"circle","attribs":{"cx":"10","cy":"18","r":"1"},"children":[]},{"name":"path","attribs":{"d":"M3 9.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 11c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z"},"children":[]},{"name":"circle","attribs":{"cx":"6","cy":"14","r":"1"},"children":[]},{"name":"path","attribs":{"d":"M2.5 5.27L6 8.77l.28.28L6 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1c0-.1-.03-.19-.06-.28l2.81 2.81c-.71.11-1.25.73-1.25 1.47 0 .83.67 1.5 1.5 1.5.74 0 1.36-.54 1.47-1.25l2.81 2.81c-.09-.03-.18-.06-.28-.06-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1c0-.1-.03-.19-.06-.28l3.78 3.78h.01l1.41-1.41L3.91 3.86 2.5 5.27z"},"children":[]}]};exports.ic_blur_off_twotone=ic_blur_off_twotone;var ic_blur_on={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6 13c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm-3 .5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM6 5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm15 5.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM14 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-3.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm-11 10c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-17c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM10 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 5.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm8 .5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm3 8.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM14 17c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-4-12c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0 8.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm4-4.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0-4c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5z"},"children":[]}]};exports.ic_blur_on=ic_blur_on;var ic_blur_on_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6 13c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm-3 .5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM6 5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm15 5.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM14 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-3.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm-11 10c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-17c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM10 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 5.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm8 .5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm3 8.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM14 17c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-4-12c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0 8.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm4-4.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0-4c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5z"},"children":[]}]};exports.ic_blur_on_outline=ic_blur_on_outline;var ic_blur_on_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"14","cy":"10","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"14","cy":"18","r":"1"},"children":[]},{"name":"circle","attribs":{"cx":"14","cy":"14","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"14","cy":"6","r":"1"},"children":[]},{"name":"path","attribs":{"d":"M3 9.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM14.5 3c0-.28-.22-.5-.5-.5s-.5.22-.5.5.22.5.5.5.5-.22.5-.5zM21 14.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z"},"children":[]},{"name":"circle","attribs":{"cx":"18","cy":"18","r":"1"},"children":[]},{"name":"path","attribs":{"d":"M13.5 21c0 .28.22.5.5.5s.5-.22.5-.5-.22-.5-.5-.5-.5.22-.5.5zM21 10.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z"},"children":[]},{"name":"circle","attribs":{"cx":"18","cy":"14","r":"1"},"children":[]},{"name":"circle","attribs":{"cx":"18","cy":"6","r":"1"},"children":[]},{"name":"circle","attribs":{"cx":"6","cy":"18","r":"1"},"children":[]},{"name":"circle","attribs":{"cx":"6","cy":"14","r":"1"},"children":[]},{"name":"path","attribs":{"d":"M3.5 14c0-.28-.22-.5-.5-.5s-.5.22-.5.5.22.5.5.5.5-.22.5-.5z"},"children":[]},{"name":"circle","attribs":{"cx":"10","cy":"6","r":"1"},"children":[]},{"name":"circle","attribs":{"cx":"6","cy":"10","r":"1"},"children":[]},{"name":"circle","attribs":{"cx":"6","cy":"6","r":"1"},"children":[]},{"name":"path","attribs":{"d":"M9.5 21c0 .28.22.5.5.5s.5-.22.5-.5-.22-.5-.5-.5-.5.22-.5.5z"},"children":[]},{"name":"circle","attribs":{"cx":"10","cy":"18","r":"1"},"children":[]},{"name":"path","attribs":{"d":"M10.5 3c0-.28-.22-.5-.5-.5s-.5.22-.5.5.22.5.5.5.5-.22.5-.5z"},"children":[]},{"name":"circle","attribs":{"cx":"10","cy":"14","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"10","cy":"10","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"18","cy":"10","r":"1"},"children":[]}]};exports.ic_blur_on_twotone=ic_blur_on_twotone;var ic_brightness_1={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"12","cy":"12","r":"10"},"children":[]}]};exports.ic_brightness_1=ic_brightness_1;var ic_brightness_1_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 4c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8m0-2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z"},"children":[]}]};exports.ic_brightness_1_outline=ic_brightness_1_outline;var ic_brightness_1_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 20c4.41 0 8-3.59 8-8s-3.59-8-8-8-8 3.59-8 8 3.59 8 8 8z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 22c5.52 0 10-4.48 10-10S17.52 2 12 2 2 6.48 2 12s4.48 10 10 10zm0-18c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8z"},"children":[]}]};exports.ic_brightness_1_twotone=ic_brightness_1_twotone;var ic_brightness_2={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 2c-1.82 0-3.53.5-5 1.35C7.99 5.08 10 8.3 10 12s-2.01 6.92-5 8.65C6.47 21.5 8.18 22 10 22c5.52 0 10-4.48 10-10S15.52 2 10 2z"},"children":[]}]};exports.ic_brightness_2=ic_brightness_2;var ic_brightness_2_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 4c4.41 0 8 3.59 8 8s-3.59 8-8 8c-.34 0-.68-.02-1.01-.07C10.9 17.77 12 14.95 12 12s-1.1-5.77-3.01-7.93C9.32 4.02 9.66 4 10 4m0-2c-1.82 0-3.53.5-5 1.35C7.99 5.08 10 8.3 10 12s-2.01 6.92-5 8.65C6.47 21.5 8.18 22 10 22c5.52 0 10-4.48 10-10S15.52 2 10 2z"},"children":[]}]};exports.ic_brightness_2_outline=ic_brightness_2_outline;var ic_brightness_2_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 12c0-4.41-3.59-8-8-8-.34 0-.68.02-1.01.07C10.9 6.23 12 9.05 12 12c0 2.95-1.1 5.77-3.01 7.93.33.05.67.07 1.01.07 4.41 0 8-3.59 8-8z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M5 20.65C6.47 21.5 8.18 22 10 22c5.52 0 10-4.48 10-10S15.52 2 10 2c-1.82 0-3.53.5-5 1.35C7.99 5.08 10 8.3 10 12s-2.01 6.92-5 8.65zM12 12c0-2.95-1.1-5.77-3.01-7.93C9.32 4.02 9.66 4 10 4c4.41 0 8 3.59 8 8s-3.59 8-8 8c-.34 0-.68-.02-1.01-.07C10.9 17.77 12 14.95 12 12z"},"children":[]}]};exports.ic_brightness_2_twotone=ic_brightness_2_twotone;var ic_brightness_3={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9 2c-1.05 0-2.05.16-3 .46 4.06 1.27 7 5.06 7 9.54 0 4.48-2.94 8.27-7 9.54.95.3 1.95.46 3 .46 5.52 0 10-4.48 10-10S14.52 2 9 2z"},"children":[]}]};exports.ic_brightness_3=ic_brightness_3;var ic_brightness_3_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12.7 4.91C15.25 6.24 17 8.92 17 12s-1.75 5.76-4.3 7.09c1.46-2 2.3-4.46 2.3-7.09s-.84-5.09-2.3-7.09M9 2c-1.05 0-2.05.16-3 .46 4.06 1.27 7 5.06 7 9.54s-2.94 8.27-7 9.54c.95.3 1.95.46 3 .46 5.52 0 10-4.48 10-10S14.52 2 9 2z"},"children":[]}]};exports.ic_brightness_3_outline=ic_brightness_3_outline;var ic_brightness_3_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12.7 4.91c1.46 2 2.3 4.46 2.3 7.09s-.84 5.09-2.3 7.09C15.25 17.76 17 15.08 17 12s-1.75-5.76-4.3-7.09z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M9 2c-1.05 0-2.05.16-3 .46 4.06 1.27 7 5.06 7 9.54 0 4.48-2.94 8.27-7 9.54.95.3 1.95.46 3 .46 5.52 0 10-4.48 10-10S14.52 2 9 2zm3.7 17.09c1.46-2 2.3-4.46 2.3-7.09s-.84-5.09-2.3-7.09C15.25 6.24 17 8.92 17 12s-1.75 5.76-4.3 7.09z"},"children":[]}]};exports.ic_brightness_3_twotone=ic_brightness_3_twotone;var ic_brightness_4={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zM12 18c-.89 0-1.74-.2-2.5-.55C11.56 16.5 13 14.42 13 12s-1.44-4.5-3.5-5.45C10.26 6.2 11.11 6 12 6c3.31 0 6 2.69 6 6s-2.69 6-6 6z"},"children":[]}]};exports.ic_brightness_4=ic_brightness_4;var ic_brightness_4_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12.29 7c-.74 0-1.45.17-2.08.46 1.72.79 2.92 2.53 2.92 4.54s-1.2 3.75-2.92 4.54c.63.29 1.34.46 2.08.46 2.76 0 5-2.24 5-5s-2.24-5-5-5z"},"children":[]}]};exports.ic_brightness_4_outline=ic_brightness_4_outline;var ic_brightness_4_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 9.52V6h-3.52L12 3.52 9.52 6H6v3.52L3.52 12 6 14.48V18h3.52L12 20.48 14.48 18H18v-3.52L20.48 12 18 9.52zM12.29 17c-.74 0-1.45-.17-2.08-.46 1.72-.79 2.92-2.52 2.92-4.54s-1.2-3.75-2.92-4.54c.63-.29 1.34-.46 2.08-.46 2.76 0 5 2.24 5 5s-2.24 5-5 5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12.29 7c-.74 0-1.45.17-2.08.46 1.72.79 2.92 2.53 2.92 4.54s-1.2 3.75-2.92 4.54c.63.29 1.34.46 2.08.46 2.76 0 5-2.24 5-5s-2.24-5-5-5z"},"children":[]}]};exports.ic_brightness_4_twotone=ic_brightness_4_twotone;var ic_brightness_5={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 15.31L23.31 12 20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z"},"children":[]}]};exports.ic_brightness_5=ic_brightness_5;var ic_brightness_5_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6.5c-3.03 0-5.5 2.47-5.5 5.5s2.47 5.5 5.5 5.5 5.5-2.47 5.5-5.5-2.47-5.5-5.5-5.5zm0 9c-1.93 0-3.5-1.57-3.5-3.5s1.57-3.5 3.5-3.5 3.5 1.57 3.5 3.5-1.57 3.5-3.5 3.5z"},"children":[]}]};exports.ic_brightness_5_outline=ic_brightness_5_outline;var ic_brightness_5_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 9.52V6h-3.52L12 3.52 9.52 6H6v3.52L3.52 12 6 14.48V18h3.52L12 20.48 14.48 18H18v-3.52L20.48 12 18 9.52zm-6 7.98c-3.03 0-5.5-2.47-5.5-5.5S8.97 6.5 12 6.5s5.5 2.47 5.5 5.5-2.47 5.5-5.5 5.5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6.5c-3.03 0-5.5 2.47-5.5 5.5s2.47 5.5 5.5 5.5 5.5-2.47 5.5-5.5-2.47-5.5-5.5-5.5zm0 9c-1.93 0-3.5-1.57-3.5-3.5s1.57-3.5 3.5-3.5 3.5 1.57 3.5 3.5-1.57 3.5-3.5 3.5z"},"children":[]}]};exports.ic_brightness_5_twotone=ic_brightness_5_twotone;var ic_brightness_6={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 15.31L23.31 12 20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69zM12 18V6c3.31 0 6 2.69 6 6s-2.69 6-6 6z"},"children":[]}]};exports.ic_brightness_6=ic_brightness_6;var ic_brightness_6_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6.5v11c3.03 0 5.5-2.47 5.5-5.5S15.03 6.5 12 6.5z"},"children":[]}]};exports.ic_brightness_6_outline=ic_brightness_6_outline;var ic_brightness_6_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 9.52V6h-3.52L12 3.52 9.52 6H6v3.52L3.52 12 6 14.48V18h3.52L12 20.48 14.48 18H18v-3.52L20.48 12 18 9.52zm-6 7.98v-11c3.03 0 5.5 2.47 5.5 5.5s-2.47 5.5-5.5 5.5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6.5v11c3.03 0 5.5-2.47 5.5-5.5S15.03 6.5 12 6.5z"},"children":[]}]};exports.ic_brightness_6_twotone=ic_brightness_6_twotone;var ic_brightness_7={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zm0-10c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4z"},"children":[]}]};exports.ic_brightness_7=ic_brightness_7;var ic_brightness_7_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6.5c-3.03 0-5.5 2.47-5.5 5.5s2.47 5.5 5.5 5.5 5.5-2.47 5.5-5.5-2.47-5.5-5.5-5.5zm0 9c-1.93 0-3.5-1.57-3.5-3.5s1.57-3.5 3.5-3.5 3.5 1.57 3.5 3.5-1.57 3.5-3.5 3.5z"},"children":[]},{"name":"circle","attribs":{"cx":"12","cy":"12","r":"2"},"children":[]}]};exports.ic_brightness_7_outline=ic_brightness_7_outline;var ic_brightness_7_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 9.52V6h-3.52L12 3.52 9.52 6H6v3.52L3.52 12 6 14.48V18h3.52L12 20.48 14.48 18H18v-3.52L20.48 12 18 9.52zm-6 7.98c-3.03 0-5.5-2.47-5.5-5.5S8.97 6.5 12 6.5s5.5 2.47 5.5 5.5-2.47 5.5-5.5 5.5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6.5c-3.03 0-5.5 2.47-5.5 5.5s2.47 5.5 5.5 5.5 5.5-2.47 5.5-5.5-2.47-5.5-5.5-5.5zm0 9c-1.93 0-3.5-1.57-3.5-3.5s1.57-3.5 3.5-3.5 3.5 1.57 3.5 3.5-1.57 3.5-3.5 3.5z"},"children":[]},{"name":"circle","attribs":{"cx":"12","cy":"12","r":"2"},"children":[]}]};exports.ic_brightness_7_twotone=ic_brightness_7_twotone;var ic_broken_image={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0zm0 0h24v24H0zm21 19c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2h14c1.1 0 2 .9 2 2","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 5v6.59l-3-3.01-4 4.01-4-4-4 4-3-3.01V5c0-1.1.9-2 2-2h14c1.1 0 2 .9 2 2zm-3 6.42l3 3.01V19c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2v-6.58l3 2.99 4-4 4 4 4-3.99z"},"children":[]}]};exports.ic_broken_image=ic_broken_image;var ic_broken_image_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5v-4.58l.99.99 4-4 4 4 4-3.99L19 12.43V19zm0-9.41l-1.01-1.01-4 4.01-4-4-4 4-.99-1V5h14v4.59z"},"children":[]}]};exports.ic_broken_image_outline=ic_broken_image_outline;var ic_broken_image_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13.99 15.41l-4-4-4 4-.99-.99V19h14v-6.57l-1.01-1.01zM5 11.59l.99 1 4-4 4 4 4-4.01L19 9.59V5H5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5v-4.58l.99.99 4-4 4 4 4-3.99L19 12.43V19zm0-9.41l-1.01-1.01-4 4.01-4-4-4 4-.99-1V5h14v4.59z"},"children":[]}]};exports.ic_broken_image_twotone=ic_broken_image_twotone;var ic_brush={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 14c-1.66 0-3 1.34-3 3 0 1.31-1.16 2-2 2 .92 1.22 2.49 2 4 2 2.21 0 4-1.79 4-4 0-1.66-1.34-3-3-3zm13.71-9.37l-1.34-1.34c-.39-.39-1.02-.39-1.41 0L9 12.25 11.75 15l8.96-8.96c.39-.39.39-1.02 0-1.41z"},"children":[]}]};exports.ic_brush=ic_brush;var ic_brush_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 16c.55 0 1 .45 1 1 0 1.1-.9 2-2 2-.17 0-.33-.02-.5-.05.31-.55.5-1.21.5-1.95 0-.55.45-1 1-1M18.67 3c-.26 0-.51.1-.71.29L9 12.25 11.75 15l8.96-8.96c.39-.39.39-1.02 0-1.41l-1.34-1.34c-.2-.2-.45-.29-.7-.29zM7 14c-1.66 0-3 1.34-3 3 0 1.31-1.16 2-2 2 .92 1.22 2.49 2 4 2 2.21 0 4-1.79 4-4 0-1.66-1.34-3-3-3z"},"children":[]}]};exports.ic_brush_outline=ic_brush_outline;var ic_brush_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8 17c0-.55-.45-1-1-1s-1 .45-1 1c0 .74-.19 1.4-.5 1.95.17.03.33.05.5.05 1.1 0 2-.9 2-2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M11.75 15l8.96-8.96c.39-.39.39-1.02 0-1.41l-1.34-1.34c-.2-.2-.45-.29-.7-.29s-.51.1-.71.29L9 12.25 11.75 15zM6 21c2.21 0 4-1.79 4-4 0-1.66-1.34-3-3-3s-3 1.34-3 3c0 1.31-1.16 2-2 2 .92 1.22 2.49 2 4 2zm0-4c0-.55.45-1 1-1s1 .45 1 1c0 1.1-.9 2-2 2-.17 0-.33-.02-.5-.05.31-.55.5-1.21.5-1.95z"},"children":[]}]};exports.ic_brush_twotone=ic_brush_twotone;var ic_burst_mode={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M1 5h2v14H1zm4 0h2v14H5zm17 0H10c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zM11 17l2.5-3.15L15.29 16l2.5-3.22L21 17H11z"},"children":[]}]};exports.ic_burst_mode=ic_burst_mode;var ic_burst_mode_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M1 5h2v14H1zm4 0h2v14H5zm17 0H10c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zm-1 12H11V7h10v10zm-3.57-4.38l-2 2.57L14 13.47l-2 2.52h8z"},"children":[]}]};exports.ic_burst_mode_outline=ic_burst_mode_outline;var ic_burst_mode_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11 17h10V7H11v10zm3-3.53l1.43 1.72 2-2.58L20 15.99h-8l2-2.52z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M1 5h2v14H1zm4 0h2v14H5zm17 0H10c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zm-1 12H11V7h10v10zm-3.57-4.38l-2 2.57L14 13.47l-2 2.52h8z"},"children":[]}]};exports.ic_burst_mode_twotone=ic_burst_mode_twotone;var ic_camera={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9.4 10.5l4.77-8.26C13.47 2.09 12.75 2 12 2c-2.4 0-4.6.85-6.32 2.25l3.66 6.35.06-.1zM21.54 9c-.92-2.92-3.15-5.26-6-6.34L11.88 9h9.66zm.26 1h-7.49l.29.5 4.76 8.25C21 16.97 22 14.61 22 12c0-.69-.07-1.35-.2-2zM8.54 12l-3.9-6.75C3.01 7.03 2 9.39 2 12c0 .69.07 1.35.2 2h7.49l-1.15-2zm-6.08 3c.92 2.92 3.15 5.26 6 6.34L12.12 15H2.46zm11.27 0l-3.9 6.76c.7.15 1.42.24 2.17.24 2.4 0 4.6-.85 6.32-2.25l-3.66-6.35-.93 1.6z"},"children":[]}]};exports.ic_camera=ic_camera;var ic_camera_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14.25 2.26l-.08-.04-.01.02C13.46 2.09 12.74 2 12 2 6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10c0-4.75-3.31-8.72-7.75-9.74zM19.41 9h-7.99l2.71-4.7c2.4.66 4.35 2.42 5.28 4.7zM13.1 4.08L10.27 9l-1.15 2L6.4 6.3C7.84 4.88 9.82 4 12 4c.37 0 .74.03 1.1.08zM5.7 7.09L8.54 12l1.15 2H4.26C4.1 13.36 4 12.69 4 12c0-1.85.64-3.55 1.7-4.91zM4.59 15h7.98l-2.71 4.7c-2.4-.67-4.34-2.42-5.27-4.7zm6.31 4.91L14.89 13l2.72 4.7C16.16 19.12 14.18 20 12 20c-.38 0-.74-.04-1.1-.09zm7.4-3l-4-6.91h5.43c.17.64.27 1.31.27 2 0 1.85-.64 3.55-1.7 4.91z"},"children":[]}]};exports.ic_camera_outline=ic_camera_outline;var ic_camera_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10.9 19.91c.36.05.72.09 1.1.09 2.18 0 4.16-.88 5.61-2.3L14.89 13l-3.99 6.91zm-1.04-.21l2.71-4.7H4.59c.93 2.28 2.87 4.03 5.27 4.7zM8.54 12L5.7 7.09C4.64 8.45 4 10.15 4 12c0 .69.1 1.36.26 2h5.43l-1.15-2zm9.76 4.91C19.36 15.55 20 13.85 20 12c0-.69-.1-1.36-.26-2h-5.43l3.99 6.91zM13.73 9h5.68c-.93-2.28-2.88-4.04-5.28-4.7L11.42 9h2.31zm-3.46 0l2.83-4.92C12.74 4.03 12.37 4 12 4c-2.18 0-4.16.88-5.6 2.3L9.12 11l1.15-2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 22c5.52 0 10-4.48 10-10 0-4.75-3.31-8.72-7.75-9.74l-.08-.04-.01.02C13.46 2.09 12.74 2 12 2 6.48 2 2 6.48 2 12s4.48 10 10 10zm0-2c-.38 0-.74-.04-1.1-.09L14.89 13l2.72 4.7C16.16 19.12 14.18 20 12 20zm8-8c0 1.85-.64 3.55-1.7 4.91l-4-6.91h5.43c.17.64.27 1.31.27 2zm-.59-3h-7.99l2.71-4.7c2.4.66 4.35 2.42 5.28 4.7zM12 4c.37 0 .74.03 1.1.08L10.27 9l-1.15 2L6.4 6.3C7.84 4.88 9.82 4 12 4zm-8 8c0-1.85.64-3.55 1.7-4.91L8.54 12l1.15 2H4.26C4.1 13.36 4 12.69 4 12zm6.27 3h2.3l-2.71 4.7c-2.4-.67-4.35-2.42-5.28-4.7h5.69z"},"children":[]}]};exports.ic_camera_twotone=ic_camera_twotone;var ic_camera_alt={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"12","cy":"12","r":"3.2"},"children":[]},{"name":"path","attribs":{"d":"M9 2L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2h-3.17L15 2H9zm3 15c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z"},"children":[]}]};exports.ic_camera_alt=ic_camera_alt;var ic_camera_alt_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 4h-3.17L15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h4.05l1.83-2h4.24l1.83 2H20v12zM12 7c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3z"},"children":[]}]};exports.ic_camera_alt_outline=ic_camera_alt_outline;var ic_camera_alt_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14.12 4H9.88L8.05 6H4v12h16V6h-4.05l-1.83-2zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 4h-3.17L15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h4.05l1.83-2h4.24l1.83 2H20v12zM12 7c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3z"},"children":[]}]};exports.ic_camera_alt_twotone=ic_camera_alt_twotone;var ic_camera_front={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 20H5v2h5v2l3-3-3-3v2zm4 0v2h5v-2h-5zM12 8c1.1 0 2-.9 2-2s-.9-2-2-2-1.99.9-1.99 2S10.9 8 12 8zm5-8H7C5.9 0 5 .9 5 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V2c0-1.1-.9-2-2-2zM7 2h10v10.5c0-1.67-3.33-2.5-5-2.5s-5 .83-5 2.5V2z"},"children":[]}]};exports.ic_camera_front=ic_camera_front;var ic_camera_front_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 20v2h5v2l3-3-3-3v2zm9 0h5v2h-5zM11.99 8C13.1 8 14 7.1 14 6s-.9-2-2.01-2S10 4.9 10 6s.89 2 1.99 2zM17 0H7C5.9 0 5 .9 5 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V2c0-1.1-.9-2-2-2zm0 16H7v-2h10v2zm0-3.5c0-1.67-3.33-2.5-5-2.5s-5 .83-5 2.5V2h10v10.5z"},"children":[]}]};exports.ic_camera_front_outline=ic_camera_front_outline;var ic_camera_front_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 14h10v2H7z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M5 20v2h5v2l3-3-3-3v2zm9 0h5v2h-5zM11.99 8C13.1 8 14 7.1 14 6s-.9-2-2.01-2S10 4.9 10 6s.89 2 1.99 2zM17 0H7C5.9 0 5 .9 5 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V2c0-1.1-.9-2-2-2zm0 16H7v-2h10v2zm0-3.5c0-1.67-3.33-2.5-5-2.5s-5 .83-5 2.5V2h10v10.5z"},"children":[]}]};exports.ic_camera_front_twotone=ic_camera_front_twotone;var ic_camera_rear={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 20H5v2h5v2l3-3-3-3v2zm4 0v2h5v-2h-5zm3-20H7C5.9 0 5 .9 5 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V2c0-1.1-.9-2-2-2zm-5 6c-1.11 0-2-.9-2-2s.89-2 1.99-2 2 .9 2 2C14 5.1 13.1 6 12 6z"},"children":[]}]};exports.ic_camera_rear=ic_camera_rear;var ic_camera_rear_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 20v2h5v2l3-3-3-3v2zm9 0h5v2h-5zm3-20H7C5.9 0 5 .9 5 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V2c0-1.1-.9-2-2-2zm0 16H7V2h10v14zm-5-9c1.1 0 2-.9 1.99-2 0-1.1-.9-2-2-2S10 3.9 10 5s.89 2 2 2z"},"children":[]}]};exports.ic_camera_rear_outline=ic_camera_rear_outline;var ic_camera_rear_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 16h10V2H7v14zm4.99-13c1.1 0 2 .9 2 2C14 6.1 13.1 7 12 7c-1.11 0-2-.9-2-2s.89-2 1.99-2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M5 20v2h5v2l3-3-3-3v2zm9 0h5v2h-5zm5-18c0-1.1-.9-2-2-2H7C5.9 0 5 .9 5 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V2zm-2 14H7V2h10v14zm-5-9c1.1 0 2-.9 1.99-2 0-1.1-.9-2-2-2S10 3.9 10 5s.89 2 2 2z"},"children":[]}]};exports.ic_camera_rear_twotone=ic_camera_rear_twotone;var ic_camera_roll={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14 5c0-1.1-.9-2-2-2h-1V2c0-.55-.45-1-1-1H6c-.55 0-1 .45-1 1v1H4c-1.1 0-2 .9-2 2v15c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2h8V5h-8zm-2 13h-2v-2h2v2zm0-9h-2V7h2v2zm4 9h-2v-2h2v2zm0-9h-2V7h2v2zm4 9h-2v-2h2v2zm0-9h-2V7h2v2z"},"children":[]}]};exports.ic_camera_roll=ic_camera_roll;var ic_camera_roll_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14 5c0-1.1-.9-2-2-2h-1V2c0-.55-.45-1-1-1H6c-.55 0-1 .45-1 1v1H4c-1.1 0-2 .9-2 2v15c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2h8V5h-8zm6 13h-8v2H4V5h3V3h2v2h3v2h8v11zM9 15h2v2H9zm0-7h2v2H9zm4 7h2v2h-2zm0-7h2v2h-2zm4 7h2v2h-2zm0-7h2v2h-2z"},"children":[]}]};exports.ic_camera_roll_outline=ic_camera_roll_outline;var ic_camera_roll_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 5H9V3H7v2H4v15h8v-2h8V7h-8V5zm-1 12H9v-2h2v2zm0-7H9V8h2v2zm6-2h2v2h-2V8zm0 7h2v2h-2v-2zm-4-7h2v2h-2V8zm0 7h2v2h-2v-2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M14 5c0-1.1-.9-2-2-2h-1V2c0-.55-.45-1-1-1H6c-.55 0-1 .45-1 1v1H4c-1.1 0-2 .9-2 2v15c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2h8V5h-8zm6 13h-8v2H4V5h3V3h2v2h3v2h8v11zM9 15h2v2H9zm0-7h2v2H9zm4 7h2v2h-2zm0-7h2v2h-2zm4 7h2v2h-2zm0-7h2v2h-2z"},"children":[]}]};exports.ic_camera_roll_twotone=ic_camera_roll_twotone;var ic_cases={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 6V4l-2-2h-5L9 4v2H5v11s1 2 2 2h13s2-.98 2-2V6h-4zM4 9H2v11c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2H4V9zm7-4c0-.55.53-1 1-1h3c.46 0 1 .54 1 1v1h-5V5zM5 6h17v11c0 1.1-.9 2-2 2H7c-1.1 0-2-.9-2-2V6z"},"children":[]}]};exports.ic_cases=ic_cases;var ic_center_focus_strong={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm-7 7H3v4c0 1.1.9 2 2 2h4v-2H5v-4zM5 5h4V3H5c-1.1 0-2 .9-2 2v4h2V5zm14-2h-4v2h4v4h2V5c0-1.1-.9-2-2-2zm0 16h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4z"},"children":[]}]};exports.ic_center_focus_strong=ic_center_focus_strong;var ic_center_focus_strong_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 12c0-2.76-2.24-5-5-5s-5 2.24-5 5 2.24 5 5 5 5-2.24 5-5zm-5 3c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3zm-7 0H3v4c0 1.1.9 2 2 2h4v-2H5v-4zM5 5h4V3H5c-1.1 0-2 .9-2 2v4h2V5zm14-2h-4v2h4v4h2V5c0-1.1-.9-2-2-2zm0 16h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4z"},"children":[]}]};exports.ic_center_focus_strong_outline=ic_center_focus_strong_outline;var ic_center_focus_strong_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"12","cy":"12","opacity":".3","r":"3"},"children":[]},{"name":"path","attribs":{"d":"M7 12c0 2.76 2.24 5 5 5s5-2.24 5-5-2.24-5-5-5-5 2.24-5 5zm8 0c0 1.65-1.35 3-3 3s-3-1.35-3-3 1.35-3 3-3 3 1.35 3 3zM3 19c0 1.1.9 2 2 2h4v-2H5v-4H3v4zM3 5v4h2V5h4V3H5c-1.1 0-2 .9-2 2zm18 0c0-1.1-.9-2-2-2h-4v2h4v4h2V5zm-2 14h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4z"},"children":[]}]};exports.ic_center_focus_strong_twotone=ic_center_focus_strong_twotone;var ic_center_focus_weak={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 15H3v4c0 1.1.9 2 2 2h4v-2H5v-4zM5 5h4V3H5c-1.1 0-2 .9-2 2v4h2V5zm14-2h-4v2h4v4h2V5c0-1.1-.9-2-2-2zm0 16h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4zM12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"},"children":[]}]};exports.ic_center_focus_weak=ic_center_focus_weak;var ic_center_focus_weak_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 15H3v4c0 1.1.9 2 2 2h4v-2H5v-4zM5 5h4V3H5c-1.1 0-2 .9-2 2v4h2V5zm7 3c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm7-11h-4v2h4v4h2V5c0-1.1-.9-2-2-2zm0 16h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4z"},"children":[]}]};exports.ic_center_focus_weak_outline=ic_center_focus_weak_outline;var ic_center_focus_weak_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M3 19c0 1.1.9 2 2 2h4v-2H5v-4H3v4zM3 5v4h2V5h4V3H5c-1.1 0-2 .9-2 2zm9 3c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm9-9c0-1.1-.9-2-2-2h-4v2h4v4h2V5zm-2 14h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4z"},"children":[]}]};exports.ic_center_focus_weak_twotone=ic_center_focus_weak_twotone;var ic_circle={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2z"},"children":[]}]};exports.ic_circle=ic_circle;var ic_collections={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 16V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2zm-11-4l2.03 2.71L16 11l4 5H8l3-4zM2 6v14c0 1.1.9 2 2 2h14v-2H4V6H2z"},"children":[]}]};exports.ic_collections=ic_collections;var ic_collections_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 4v12H8V4h12m0-2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-8.5 9.67l1.69 2.26 2.48-3.1L19 15H9zM2 6v14c0 1.1.9 2 2 2h14v-2H4V6H2z"},"children":[]}]};exports.ic_collections_outline=ic_collections_outline;var ic_collections_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8 16h12V4H8v12zm3.5-4.33l1.69 2.26 2.48-3.09L19 15H9l2.5-3.33z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M8 2c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H8zm12 14H8V4h12v12zm-4.33-5.17l-2.48 3.09-1.69-2.25L9 15h10zM4 22h14v-2H4V6H2v14c0 1.1.9 2 2 2z"},"children":[]}]};exports.ic_collections_twotone=ic_collections_twotone;var ic_collections_bookmark={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6z"},"children":[]},{"name":"path","attribs":{"d":"M20 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 10l-2.5-1.5L15 12V4h5v8z"},"children":[]}]};exports.ic_collections_bookmark=ic_collections_bookmark;var ic_collections_bookmark_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-3 2v5l-1-.75L15 9V4h2zm3 12H8V4h5v9l3-2.25L19 13V4h1v12z"},"children":[]}]};exports.ic_collections_bookmark_outline=ic_collections_bookmark_outline;var ic_collections_bookmark_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 4h-1v9l-3-2.25L13 13V4H8v12h12z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M4 22h14v-2H4V6H2v14c0 1.1.9 2 2 2zm18-6V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2zM15 4h2v5l-1-.75L15 9V4zM8 4h5v9l3-2.25L19 13V4h1v12H8V4z"},"children":[]}]};exports.ic_collections_bookmark_twotone=ic_collections_bookmark_twotone;var ic_color_lens={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 3c-4.97 0-9 4.03-9 9s4.03 9 9 9c.83 0 1.5-.67 1.5-1.5 0-.39-.15-.74-.39-1.01-.23-.26-.38-.61-.38-.99 0-.83.67-1.5 1.5-1.5H16c2.76 0 5-2.24 5-5 0-4.42-4.03-8-9-8zm-5.5 9c-.83 0-1.5-.67-1.5-1.5S5.67 9 6.5 9 8 9.67 8 10.5 7.33 12 6.5 12zm3-4C8.67 8 8 7.33 8 6.5S8.67 5 9.5 5s1.5.67 1.5 1.5S10.33 8 9.5 8zm5 0c-.83 0-1.5-.67-1.5-1.5S13.67 5 14.5 5s1.5.67 1.5 1.5S15.33 8 14.5 8zm3 4c-.83 0-1.5-.67-1.5-1.5S16.67 9 17.5 9s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z"},"children":[]}]};exports.ic_color_lens=ic_color_lens;var ic_color_lens_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 22C6.49 22 2 17.51 2 12S6.49 2 12 2s10 4.04 10 9c0 3.31-2.69 6-6 6h-1.77c-.28 0-.5.22-.5.5 0 .12.05.23.13.33.41.47.64 1.06.64 1.67 0 1.38-1.12 2.5-2.5 2.5zm0-18c-4.41 0-8 3.59-8 8s3.59 8 8 8c.28 0 .5-.22.5-.5 0-.16-.08-.28-.14-.35-.41-.46-.63-1.05-.63-1.65 0-1.38 1.12-2.5 2.5-2.5H16c2.21 0 4-1.79 4-4 0-3.86-3.59-7-8-7z"},"children":[]},{"name":"circle","attribs":{"cx":"6.5","cy":"11.5","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"9.5","cy":"7.5","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"14.5","cy":"7.5","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"17.5","cy":"11.5","r":"1.5"},"children":[]}]};exports.ic_color_lens_outline=ic_color_lens_outline;var ic_color_lens_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8c.28 0 .5-.22.5-.5 0-.16-.08-.28-.14-.35-.41-.46-.63-1.05-.63-1.65 0-1.38 1.12-2.5 2.5-2.5H16c2.21 0 4-1.79 4-4 0-3.86-3.59-7-8-7zm-5.5 9c-.83 0-1.5-.67-1.5-1.5S5.67 10 6.5 10s1.5.67 1.5 1.5S7.33 13 6.5 13zm3-4C8.67 9 8 8.33 8 7.5S8.67 6 9.5 6s1.5.67 1.5 1.5S10.33 9 9.5 9zm5 0c-.83 0-1.5-.67-1.5-1.5S13.67 6 14.5 6s1.5.67 1.5 1.5S15.33 9 14.5 9zm4.5 2.5c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10c1.38 0 2.5-1.12 2.5-2.5 0-.61-.23-1.21-.64-1.67-.08-.09-.13-.21-.13-.33 0-.28.22-.5.5-.5H16c3.31 0 6-2.69 6-6 0-4.96-4.49-9-10-9zm4 13h-1.77c-1.38 0-2.5 1.12-2.5 2.5 0 .61.22 1.19.63 1.65.06.07.14.19.14.35 0 .28-.22.5-.5.5-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.14 8 7c0 2.21-1.79 4-4 4z"},"children":[]},{"name":"circle","attribs":{"cx":"6.5","cy":"11.5","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"9.5","cy":"7.5","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"14.5","cy":"7.5","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"17.5","cy":"11.5","r":"1.5"},"children":[]}]};exports.ic_color_lens_twotone=ic_color_lens_twotone;var ic_colorize={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20.71 5.63l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-3.12 3.12-1.93-1.91-1.41 1.41 1.42 1.42L3 16.25V21h4.75l8.92-8.92 1.42 1.42 1.41-1.41-1.92-1.92 3.12-3.12c.4-.4.4-1.03.01-1.42zM6.92 19L5 17.08l8.06-8.06 1.92 1.92L6.92 19z"},"children":[]}]};exports.ic_colorize=ic_colorize;var ic_colorize_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17.66 5.41l.92.92-2.69 2.69-.92-.92 2.69-2.69M17.67 3c-.26 0-.51.1-.71.29l-3.12 3.12-1.93-1.91-1.41 1.41 1.42 1.42L3 16.25V21h4.75l8.92-8.92 1.42 1.42 1.41-1.41-1.92-1.92 3.12-3.12c.4-.4.4-1.03.01-1.42l-2.34-2.34c-.2-.19-.45-.29-.7-.29zM6.92 19L5 17.08l8.06-8.06 1.92 1.92L6.92 19z"},"children":[]}]};exports.ic_colorize_outline=ic_colorize_outline;var ic_colorize_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.896 9.023l-.92-.92L17.67 5.41l.92.92z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20.71 5.63l-2.34-2.34c-.2-.2-.45-.29-.71-.29s-.51.1-.7.29l-3.12 3.12-1.93-1.91-1.41 1.41 1.42 1.42L3 16.25V21h4.75l8.92-8.92 1.42 1.42 1.41-1.41-1.92-1.92 3.12-3.12c.4-.4.4-1.03.01-1.42zM6.92 19L5 17.08l8.06-8.06 1.92 1.92L6.92 19zm8.98-9.97l-.93-.93 2.69-2.69.92.92-2.68 2.7z"},"children":[]}]};exports.ic_colorize_twotone=ic_colorize_twotone;var ic_compare={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h5v2h2V1h-2v2zm0 15H5l5-6v6zm9-15h-5v2h5v13l-5-6v9h5c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"},"children":[]}]};exports.ic_compare=ic_compare;var ic_compare_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h5v2h2V1h-2v2zm0 15H5l5-6v6zm9-15h-5v2h5v13l-5-6v9h5c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"},"children":[]}]};exports.ic_compare_outline=ic_compare_outline;var ic_compare_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 5h-5v7l5 6zm-9 13v-6l-5 6z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M19 3h-5v2h5v13l-5-6v9h5c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-2h-2v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h5v2h2V1zm-2 17H5l5-6v6z"},"children":[]}]};exports.ic_compare_twotone=ic_compare_twotone;var ic_control_point={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"},"children":[]}]};exports.ic_control_point=ic_control_point;var ic_control_point_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"},"children":[]}]};exports.ic_control_point_outline=ic_control_point_outline;var ic_control_point_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm5 9h-4v4h-2v-4H7v-2h4V7h2v4h4v2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm1-13h-2v4H7v2h4v4h2v-4h4v-2h-4z"},"children":[]}]};exports.ic_control_point_twotone=ic_control_point_twotone;var ic_control_point_duplicate={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16 8h-2v3h-3v2h3v3h2v-3h3v-2h-3zM2 12c0-2.79 1.64-5.2 4.01-6.32V3.52C2.52 4.76 0 8.09 0 12s2.52 7.24 6.01 8.48v-2.16C3.64 17.2 2 14.79 2 12zm13-9c-4.96 0-9 4.04-9 9s4.04 9 9 9 9-4.04 9-9-4.04-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z"},"children":[]}]};exports.ic_control_point_duplicate=ic_control_point_duplicate;var ic_control_point_duplicate_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16 8h-2v3h-3v2h3v3h2v-3h3v-2h-3V8zM2 12c0-2.79 1.64-5.2 4.01-6.32V3.52C2.52 4.76 0 8.09 0 12s2.52 7.24 6.01 8.48v-2.16C3.64 17.2 2 14.79 2 12zm13-9c-4.96 0-9 4.04-9 9s4.04 9 9 9 9-4.04 9-9-4.04-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z"},"children":[]}]};exports.ic_control_point_duplicate_outline=ic_control_point_duplicate_outline;var ic_control_point_duplicate_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15 5c-3.86 0-7 3.14-7 7s3.14 7 7 7 7-3.14 7-7-3.14-7-7-7zm4 8h-3v3h-2v-3h-3v-2h3V8h2v3h3v2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M16 8h-2v3h-3v2h3v3h2v-3h3v-2h-3zm-1-5c-4.96 0-9 4.04-9 9s4.04 9 9 9 9-4.04 9-9-4.04-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7zM2 12c0-2.79 1.64-5.2 4.01-6.32V3.52C2.52 4.76 0 8.09 0 12s2.52 7.24 6.01 8.48v-2.16C3.64 17.2 2 14.79 2 12z"},"children":[]}]};exports.ic_control_point_duplicate_twotone=ic_control_point_duplicate_twotone;var ic_crop={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 15h2V7c0-1.1-.9-2-2-2H9v2h8v8zM7 17V1H5v4H1v2h4v10c0 1.1.9 2 2 2h10v4h2v-4h4v-2H7z"},"children":[]}]};exports.ic_crop=ic_crop;var ic_crop_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 15h2V7c0-1.1-.9-2-2-2H9v2h8v8zM7 17V1H5v4H1v2h4v10c0 1.1.9 2 2 2h10v4h2v-4h4v-2H7z"},"children":[]}]};exports.ic_crop_outline=ic_crop_outline;var ic_crop_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 17c0 1.1.9 2 2 2h10v4h2v-4h4v-2H7V1H5v4H1v2h4v10zm14-2V7c0-1.1-.9-2-2-2H9v2h8v8h2z"},"children":[]}]};exports.ic_crop_twotone=ic_crop_twotone;var ic_crop_16_9={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 6H5c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 10H5V8h14v8z"},"children":[]}]};exports.ic_crop_16_9=ic_crop_16_9;var ic_crop_16_9_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 6H5c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 10H5V8h14v8z"},"children":[]}]};exports.ic_crop_16_9_outline=ic_crop_16_9_outline;var ic_crop_16_9_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 6H5c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 10H5V8h14v8z"},"children":[]}]};exports.ic_crop_16_9_twotone=ic_crop_16_9_twotone;var ic_crop_3_2={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 4H5c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H5V6h14v12z"},"children":[]}]};exports.ic_crop_3_2=ic_crop_3_2;var ic_crop_3_2_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 4H5c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H5V6h14v12z"},"children":[]}]};exports.ic_crop_3_2_outline=ic_crop_3_2_outline;var ic_crop_3_2_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 4H5c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H5V6h14v12z"},"children":[]}]};exports.ic_crop_3_2_twotone=ic_crop_3_2_twotone;var ic_crop_5_4={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 5H5c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 12H5V7h14v10z"},"children":[]}]};exports.ic_crop_5_4=ic_crop_5_4;var ic_crop_5_4_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 5H5c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 12H5V7h14v10z"},"children":[]}]};exports.ic_crop_5_4_outline=ic_crop_5_4_outline;var ic_crop_5_4_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 5H5c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 12H5V7h14v10z"},"children":[]}]};exports.ic_crop_5_4_twotone=ic_crop_5_4_twotone;var ic_crop_7_5={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 7H5c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zm0 8H5V9h14v6z"},"children":[]}]};exports.ic_crop_7_5=ic_crop_7_5;var ic_crop_7_5_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 7H5c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zm0 8H5V9h14v6z"},"children":[]}]};exports.ic_crop_7_5_outline=ic_crop_7_5_outline;var ic_crop_7_5_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 7H5c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zm0 8H5V9h14v6z"},"children":[]}]};exports.ic_crop_7_5_twotone=ic_crop_7_5_twotone;var ic_crop_din={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z"},"children":[]}]};exports.ic_crop_din=ic_crop_din;var ic_crop_din_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z"},"children":[]}]};exports.ic_crop_din_outline=ic_crop_din_outline;var ic_crop_din_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z"},"children":[]}]};exports.ic_crop_din_twotone=ic_crop_din_twotone;var ic_crop_free={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 5v4h2V5h4V3H5c-1.1 0-2 .9-2 2zm2 10H3v4c0 1.1.9 2 2 2h4v-2H5v-4zm14 4h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4zm0-16h-4v2h4v4h2V5c0-1.1-.9-2-2-2z"},"children":[]}]};exports.ic_crop_free=ic_crop_free;var ic_crop_free_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 5v4h2V5h4V3H5c-1.1 0-2 .9-2 2zm2 10H3v4c0 1.1.9 2 2 2h4v-2H5v-4zm14 4h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4zm0-16h-4v2h4v4h2V5c0-1.1-.9-2-2-2z"},"children":[]}]};exports.ic_crop_free_outline=ic_crop_free_outline;var ic_crop_free_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 19c0 1.1.9 2 2 2h4v-2H5v-4H3v4zM21 5c0-1.1-.9-2-2-2h-4v2h4v4h2V5zM5 5h4V3H5c-1.1 0-2 .9-2 2v4h2V5zm16 14v-4h-2v4h-4v2h4c1.1 0 2-.9 2-2z"},"children":[]}]};exports.ic_crop_free_twotone=ic_crop_free_twotone;var ic_crop_landscape={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 5H5c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 12H5V7h14v10z"},"children":[]}]};exports.ic_crop_landscape=ic_crop_landscape;var ic_crop_landscape_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 5H5c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 12H5V7h14v10z"},"children":[]}]};exports.ic_crop_landscape_outline=ic_crop_landscape_outline;var ic_crop_landscape_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 5H5c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 12H5V7h14v10z"},"children":[]}]};exports.ic_crop_landscape_twotone=ic_crop_landscape_twotone;var ic_crop_original={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-5.04-6.71l-2.75 3.54-1.96-2.36L6.5 17h11l-3.54-4.71z"},"children":[]}]};exports.ic_crop_original=ic_crop_original;var ic_crop_original_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-5.04-6.71l-2.75 3.54-1.96-2.36L6.5 17h11l-3.54-4.71z"},"children":[]}]};exports.ic_crop_original_outline=ic_crop_original_outline;var ic_crop_original_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-5.04-6.71l-2.75 3.54-1.96-2.36L6.5 17h11z"},"children":[]}]};exports.ic_crop_original_twotone=ic_crop_original_twotone;var ic_crop_portrait={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 3H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H7V5h10v14z"},"children":[]}]};exports.ic_crop_portrait=ic_crop_portrait;var ic_crop_portrait_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 3H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H7V5h10v14z"},"children":[]}]};exports.ic_crop_portrait_outline=ic_crop_portrait_outline;var ic_crop_portrait_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 3H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H7V5h10v14z"},"children":[]}]};exports.ic_crop_portrait_twotone=ic_crop_portrait_twotone;var ic_crop_rotate={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0zm0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7.47 21.49C4.2 19.93 1.86 16.76 1.5 13H0c.51 6.16 5.66 11 11.95 11 .23 0 .44-.02.66-.03L8.8 20.15l-1.33 1.34zM12.05 0c-.23 0-.44.02-.66.04l3.81 3.81 1.33-1.33C19.8 4.07 22.14 7.24 22.5 11H24c-.51-6.16-5.66-11-11.95-11zM16 14h2V8c0-1.11-.9-2-2-2h-6v2h6v6zm-8 2V4H6v2H4v2h2v8c0 1.1.89 2 2 2h8v2h2v-2h2v-2H8z"},"children":[]}]};exports.ic_crop_rotate=ic_crop_rotate;var ic_crop_rotate_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7.47 21.49C4.2 19.93 1.86 16.76 1.5 13H0c.51 6.16 5.66 11 11.95 11 .23 0 .44-.02.66-.03L8.8 20.15l-1.33 1.34zM12.05 0c-.23 0-.44.02-.66.04l3.81 3.81 1.33-1.33C19.8 4.07 22.14 7.24 22.5 11H24c-.51-6.16-5.66-11-11.95-11zM16 14h2V8c0-1.11-.9-2-2-2h-6v2h6v6zm-8 2V4H6v2H4v2h2v8c0 1.1.89 2 2 2h8v2h2v-2h2v-2H8z"},"children":[]}]};exports.ic_crop_rotate_outline=ic_crop_rotate_outline;var ic_crop_rotate_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11.95 24c.23 0 .44-.02.66-.03L8.8 20.15l-1.33 1.34C4.2 19.93 1.86 16.76 1.5 13H0c.51 6.16 5.66 11 11.95 11zm.1-24c-.23 0-.44.02-.66.04l3.81 3.81 1.33-1.33C19.8 4.07 22.14 7.24 22.5 11H24c-.51-6.16-5.66-11-11.95-11zM16 6h-6v2h6v6h2V8c0-1.11-.9-2-2-2zm2 12h2v-2H8V4H6v2H4v2h2v8c0 1.1.89 2 2 2h8v2h2v-2z"},"children":[]}]};exports.ic_crop_rotate_twotone=ic_crop_rotate_twotone;var ic_crop_square={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 4H6c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H6V6h12v12z"},"children":[]}]};exports.ic_crop_square=ic_crop_square;var ic_crop_square_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 4H6c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H6V6h12v12z"},"children":[]}]};exports.ic_crop_square_outline=ic_crop_square_outline;var ic_crop_square_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 4H6c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H6V6h12v12z"},"children":[]}]};exports.ic_crop_square_twotone=ic_crop_square_twotone;var ic_dehaze={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M2 15.5v2h20v-2H2zm0-5v2h20v-2H2zm0-5v2h20v-2H2z"},"children":[]}]};exports.ic_dehaze=ic_dehaze;var ic_dehaze_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M2 16v2h20v-2H2zm0-5v2h20v-2H2zm0-5v2h20V6H2z"},"children":[]}]};exports.ic_dehaze_outline=ic_dehaze_outline;var ic_dehaze_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M2 16v2h20v-2H2zm0-5v2h20v-2H2zm0-5v2h20V6H2z"},"children":[]}]};exports.ic_dehaze_twotone=ic_dehaze_twotone;var ic_details={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M12,3L2,21h20L12,3z M13,8.92L18.6,19H13V8.92z M11,8.92V19H5.4L11,8.92z"},"children":[]}]};exports.ic_details=ic_details;var ic_details_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M12,3L2,21h20L12,3z M13,8.92L18.6,19H13V8.92z M11,8.92V19H5.4L11,8.92z"},"children":[]}]};exports.ic_details_outline=ic_details_outline;var ic_details_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M13,8.92L18.6,19H13V8.92z M11,8.92V19H5.4L11,8.92z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12,3L2,21h20L12,3z M13,8.92L18.6,19H13V8.92z M11,8.92V19H5.4L11,8.92z"},"children":[]}]};exports.ic_details_twotone=ic_details_twotone;var ic_dirty_lens={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12.95 19H20V7H4v12h7.24c.14-.98.42-2.05-.16-2.43-.89-.59-1.27 2.06-2.8 1.35-1.39-1.12 1.05-1.29.5-3.27-.22-.79-2.28.36-2.4-1.24-.08-1 1.49-.74 1.51-1.49.03-.75-1.03-1.05-.25-1.91.22-.24.71-.26.91-.19.79.27 1.55 1.82 2.51 1.19 1.03-.66-1.88-2.35 0-2.86 1.64-.44 1.31 2.08 2.65 2.44 1.94.52 2.65-4.55 4.41-2.33 1.85 2.33-3.43 2.27-2.85 4.01.34 1.01 2.15-1.2 2.76.53.64 1.83-3.09.82-3.04 1.66.06.83 2.41.55 1.64 2.12-1.14 1.86-3-1.03-3.81.09-.39.57-.09 1.49.13 2.33zM20 5c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V7c0-1.1.9-2 2-2h3.17L9 3h6l1.83 2H20zm-1.86 13.01c-.47 0-.86-.38-.86-.86s.38-.86.86-.86c.47 0 .86.38.86.86s-.38.86-.86.86z"},"children":[]}]};exports.ic_dirty_lens=ic_dirty_lens;var ic_edit={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z"},"children":[]}]};exports.ic_edit=ic_edit;var ic_edit_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14.06 9.02l.92.92L5.92 19H5v-.92l9.06-9.06M17.66 3c-.25 0-.51.1-.7.29l-1.83 1.83 3.75 3.75 1.83-1.83c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.2-.2-.45-.29-.71-.29zm-3.6 3.19L3 17.25V21h3.75L17.81 9.94l-3.75-3.75z"},"children":[]}]};exports.ic_edit_outline=ic_edit_outline;var ic_edit_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 18.08V19h.92l9.06-9.06-.92-.92z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.2-.2-.45-.29-.71-.29s-.51.1-.7.29l-1.83 1.83 3.75 3.75 1.83-1.83zM3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM5.92 19H5v-.92l9.06-9.06.92.92L5.92 19z"},"children":[]}]};exports.ic_edit_twotone=ic_edit_twotone;var ic_euro={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"path","attribs":{"d":"M15,18.5c-2.51,0-4.68-1.42-5.76-3.5H15l1-2H8.58c-0.05-0.33-0.08-0.66-0.08-1s0.03-0.67,0.08-1H15l1-2H9.24 C10.32,6.92,12.5,5.5,15,5.5c1.61,0,3.09,0.59,4.23,1.57L21,5.3C19.41,3.87,17.3,3,15,3c-3.92,0-7.24,2.51-8.48,6H3l-1,2h4.06 C6.02,11.33,6,11.66,6,12s0.02,0.67,0.06,1H3l-1,2h4.52c1.24,3.49,4.56,6,8.48,6c2.31,0,4.41-0.87,6-2.3l-1.78-1.77 C18.09,17.91,16.62,18.5,15,18.5z"},"children":[{"name":"path","attribs":{"d":"M15,18.5c-2.51,0-4.68-1.42-5.76-3.5H15l1-2H8.58c-0.05-0.33-0.08-0.66-0.08-1s0.03-0.67,0.08-1H15l1-2H9.24 C10.32,6.92,12.5,5.5,15,5.5c1.61,0,3.09,0.59,4.23,1.57L21,5.3C19.41,3.87,17.3,3,15,3c-3.92,0-7.24,2.51-8.48,6H3l-1,2h4.06 C6.02,11.33,6,11.66,6,12s0.02,0.67,0.06,1H3l-1,2h4.52c1.24,3.49,4.56,6,8.48,6c2.31,0,4.41-0.87,6-2.3l-1.78-1.77 C18.09,17.91,16.62,18.5,15,18.5z"},"children":[]}]}]}]};exports.ic_euro=ic_euro;var ic_euro_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"path","attribs":{"d":"M15,18.5c-2.51,0-4.68-1.42-5.76-3.5H15l1-2H8.58c-0.05-0.33-0.08-0.66-0.08-1s0.03-0.67,0.08-1H15l1-2H9.24 C10.32,6.92,12.5,5.5,15,5.5c1.61,0,3.09,0.59,4.23,1.57L21,5.3C19.41,3.87,17.3,3,15,3c-3.92,0-7.24,2.51-8.48,6H3l-1,2h4.06 C6.02,11.33,6,11.66,6,12s0.02,0.67,0.06,1H3l-1,2h4.52c1.24,3.49,4.56,6,8.48,6c2.31,0,4.41-0.87,6-2.3l-1.78-1.77 C18.09,17.91,16.62,18.5,15,18.5z"},"children":[{"name":"path","attribs":{"d":"M15,18.5c-2.51,0-4.68-1.42-5.76-3.5H15l1-2H8.58c-0.05-0.33-0.08-0.66-0.08-1s0.03-0.67,0.08-1H15l1-2H9.24 C10.32,6.92,12.5,5.5,15,5.5c1.61,0,3.09,0.59,4.23,1.57L21,5.3C19.41,3.87,17.3,3,15,3c-3.92,0-7.24,2.51-8.48,6H3l-1,2h4.06 C6.02,11.33,6,11.66,6,12s0.02,0.67,0.06,1H3l-1,2h4.52c1.24,3.49,4.56,6,8.48,6c2.31,0,4.41-0.87,6-2.3l-1.78-1.77 C18.09,17.91,16.62,18.5,15,18.5z"},"children":[]}]}]}]};exports.ic_euro_outline=ic_euro_outline;var ic_euro_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"path","attribs":{"d":"M15,18.5c-2.51,0-4.68-1.42-5.76-3.5H15l1-2H8.58c-0.05-0.33-0.08-0.66-0.08-1s0.03-0.67,0.08-1H15l1-2H9.24 C10.32,6.92,12.5,5.5,15,5.5c1.61,0,3.09,0.59,4.23,1.57L21,5.3C19.41,3.87,17.3,3,15,3c-3.92,0-7.24,2.51-8.48,6H3l-1,2h4.06 C6.02,11.33,6,11.66,6,12s0.02,0.67,0.06,1H3l-1,2h4.52c1.24,3.49,4.56,6,8.48,6c2.31,0,4.41-0.87,6-2.3l-1.78-1.77 C18.09,17.91,16.62,18.5,15,18.5z"},"children":[{"name":"path","attribs":{"d":"M15,18.5c-2.51,0-4.68-1.42-5.76-3.5H15l1-2H8.58c-0.05-0.33-0.08-0.66-0.08-1s0.03-0.67,0.08-1H15l1-2H9.24 C10.32,6.92,12.5,5.5,15,5.5c1.61,0,3.09,0.59,4.23,1.57L21,5.3C19.41,3.87,17.3,3,15,3c-3.92,0-7.24,2.51-8.48,6H3l-1,2h4.06 C6.02,11.33,6,11.66,6,12s0.02,0.67,0.06,1H3l-1,2h4.52c1.24,3.49,4.56,6,8.48,6c2.31,0,4.41-0.87,6-2.3l-1.78-1.77 C18.09,17.91,16.62,18.5,15,18.5z"},"children":[]}]}]}]};exports.ic_euro_twotone=ic_euro_twotone;var ic_exposure={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM6 7h5v1.5H6V7zm13 12H5L19 5v14zm-4.5-3v2H16v-2h2v-1.5h-2v-2h-1.5v2h-2V16z"},"children":[]}]};exports.ic_exposure=ic_exposure;var ic_exposure_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1.41 2L5 17.59V5h12.59zM6.41 19L19 6.41V19H6.41zM6 7h5v1.5H6zm10 5.5h-1.5v2h-2V16h2v2H16v-2h2v-1.5h-2z"},"children":[]}]};exports.ic_exposure_outline=ic_exposure_outline;var ic_exposure_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 19V5L5 19h14zm-4.5-4.5v-2H16v2h2V16h-2v2h-1.5v-2h-2v-1.5h2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM6 7h5v1.5H6V7zm13 12H5L19 5v14zm-4.5-3v2H16v-2h2v-1.5h-2v-2h-1.5v2h-2V16z"},"children":[]}]};exports.ic_exposure_twotone=ic_exposure_twotone;var ic_exposure_neg_1={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0zm0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 11v2h8v-2H4zm15 7h-2V7.38L14 8.4V6.7L18.7 5h.3v13z"},"children":[]}]};exports.ic_exposure_neg_1=ic_exposure_neg_1;var ic_exposure_neg_1_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 11v2h8v-2H4zm15 7h-2V7.38L14 8.4V6.7L18.7 5h.3v13z"},"children":[]}]};exports.ic_exposure_neg_1_outline=ic_exposure_neg_1_outline;var ic_exposure_neg_1_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 18V5h-.3L14 6.7v1.7l3-1.02V18zM4 11h8v2H4z"},"children":[]}]};exports.ic_exposure_neg_1_twotone=ic_exposure_neg_1_twotone;var ic_exposure_neg_2={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0zm0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.05 16.29l2.86-3.07c.38-.39.72-.79 1.04-1.18.32-.39.59-.78.82-1.17.23-.39.41-.78.54-1.17s.19-.79.19-1.18c0-.53-.09-1.02-.27-1.46-.18-.44-.44-.81-.78-1.11-.34-.31-.77-.54-1.26-.71-.51-.16-1.08-.24-1.72-.24-.69 0-1.31.11-1.85.32-.54.21-1 .51-1.36.88-.37.37-.65.8-.84 1.3-.18.47-.27.97-.28 1.5h2.14c.01-.31.05-.6.13-.87.09-.29.23-.54.4-.75.18-.21.41-.37.68-.49.27-.12.6-.18.96-.18.31 0 .58.05.81.15.23.1.43.25.59.43.16.18.28.4.37.65.08.25.13.52.13.81 0 .22-.03.43-.08.65-.06.22-.15.45-.29.7-.14.25-.32.53-.56.83-.23.3-.52.65-.88 1.03l-4.17 4.55V18H21v-1.71h-5.95zM2 11v2h8v-2H2z"},"children":[]}]};exports.ic_exposure_neg_2=ic_exposure_neg_2;var ic_exposure_neg_2_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.05 16.29l2.86-3.07c.38-.39.72-.79 1.04-1.18.32-.39.59-.78.82-1.17s.41-.78.54-1.17.19-.79.19-1.18c0-.53-.09-1.02-.27-1.46s-.44-.81-.78-1.11c-.34-.31-.77-.54-1.26-.71-.51-.16-1.08-.24-1.72-.24-.69 0-1.31.11-1.85.32-.54.21-1 .51-1.36.88-.37.37-.65.8-.84 1.3-.18.47-.27.97-.28 1.5h2.14c.01-.31.05-.6.13-.87.09-.29.23-.54.4-.75.18-.21.41-.37.68-.49s.6-.18.96-.18c.31 0 .58.05.81.15s.43.25.59.43.28.4.37.65c.08.25.13.52.13.81 0 .22-.03.43-.08.65-.06.22-.15.45-.29.7-.14.25-.32.53-.56.83-.23.3-.52.65-.88 1.03l-4.17 4.55V18H21v-1.71h-5.95zM2 11v2h8v-2H2z"},"children":[]}]};exports.ic_exposure_neg_2_outline=ic_exposure_neg_2_outline;var ic_exposure_neg_2_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17.98 10.1c-.14.25-.32.53-.56.83-.23.3-.52.65-.88 1.03l-4.17 4.55V18H21v-1.71h-5.95l2.86-3.07c.38-.39.72-.79 1.04-1.18s.59-.78.82-1.17c.23-.39.41-.78.54-1.17.13-.39.19-.79.19-1.18 0-.53-.09-1.02-.27-1.46s-.44-.81-.78-1.11c-.34-.31-.77-.54-1.26-.71-.51-.16-1.08-.24-1.72-.24-.69 0-1.31.11-1.85.32-.54.21-1 .51-1.36.88-.37.37-.65.8-.84 1.3-.18.47-.27.97-.28 1.5h2.14c.01-.31.05-.6.13-.87.09-.29.23-.54.4-.75.18-.21.41-.37.68-.49.27-.12.6-.18.96-.18.31 0 .58.05.81.15s.43.25.59.43c.16.18.28.4.37.65.08.25.13.52.13.81 0 .22-.03.43-.08.65-.06.22-.15.45-.29.7zM2 11h8v2H2z"},"children":[]}]};exports.ic_exposure_neg_2_twotone=ic_exposure_neg_2_twotone;var ic_exposure_plus_1={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0zm0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 7H8v4H4v2h4v4h2v-4h4v-2h-4V7zm10 11h-2V7.38L15 8.4V6.7L19.7 5h.3v13z"},"children":[]}]};exports.ic_exposure_plus_1=ic_exposure_plus_1;var ic_exposure_plus_1_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 7H8v4H4v2h4v4h2v-4h4v-2h-4V7zm10 11h-2V7.38L15 8.4V6.7L19.7 5h.3v13z"},"children":[]}]};exports.ic_exposure_plus_1_outline=ic_exposure_plus_1_outline;var ic_exposure_plus_1_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 18V5h-.3L15 6.7v1.7l3-1.02V18zm-10-1v-4h4v-2h-4V7H8v4H4v2h4v4z"},"children":[]}]};exports.ic_exposure_plus_1_twotone=ic_exposure_plus_1_twotone;var ic_exposure_plus_2={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0zm0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16.05 16.29l2.86-3.07c.38-.39.72-.79 1.04-1.18.32-.39.59-.78.82-1.17.23-.39.41-.78.54-1.17.13-.39.19-.79.19-1.18 0-.53-.09-1.02-.27-1.46-.18-.44-.44-.81-.78-1.11-.34-.31-.77-.54-1.26-.71-.51-.16-1.08-.24-1.72-.24-.69 0-1.31.11-1.85.32-.54.21-1 .51-1.36.88-.37.37-.65.8-.84 1.3-.18.47-.27.97-.28 1.5h2.14c.01-.31.05-.6.13-.87.09-.29.23-.54.4-.75.18-.21.41-.37.68-.49.27-.12.6-.18.96-.18.31 0 .58.05.81.15.23.1.43.25.59.43.16.18.28.4.37.65.08.25.13.52.13.81 0 .22-.03.43-.08.65-.06.22-.15.45-.29.7-.14.25-.32.53-.56.83-.23.3-.52.65-.88 1.03l-4.17 4.55V18H22v-1.71h-5.95zM8 7H6v4H2v2h4v4h2v-4h4v-2H8V7z"},"children":[]}]};exports.ic_exposure_plus_2=ic_exposure_plus_2;var ic_exposure_plus_2_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16.05 16.29l2.86-3.07c.38-.39.72-.79 1.04-1.18.32-.39.59-.78.82-1.17s.41-.78.54-1.17c.13-.39.19-.79.19-1.18 0-.53-.09-1.02-.27-1.46s-.44-.81-.78-1.11c-.34-.31-.77-.54-1.26-.71-.51-.16-1.08-.24-1.72-.24-.69 0-1.31.11-1.85.32-.54.21-1 .51-1.36.88-.37.37-.65.8-.84 1.3-.18.47-.27.97-.28 1.5h2.14c.01-.31.05-.6.13-.87.09-.29.23-.54.4-.75.18-.21.41-.37.68-.49s.6-.18.96-.18c.31 0 .58.05.81.15s.43.25.59.43.28.4.37.65c.08.25.13.52.13.81 0 .22-.03.43-.08.65-.06.22-.15.45-.29.7-.14.25-.32.53-.56.83-.23.3-.52.65-.88 1.03l-4.17 4.55V18H22v-1.71h-5.95zM8 7H6v4H2v2h4v4h2v-4h4v-2H8V7z"},"children":[]}]};exports.ic_exposure_plus_2_outline=ic_exposure_plus_2_outline;var ic_exposure_plus_2_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8 17v-4h4v-2H8V7H6v4H2v2h4v4zm11.95-4.96c.32-.39.59-.78.82-1.17.23-.39.41-.78.54-1.17.13-.39.19-.79.19-1.18 0-.53-.09-1.02-.27-1.46s-.44-.81-.78-1.11c-.34-.31-.77-.54-1.26-.71-.51-.16-1.08-.24-1.72-.24-.69 0-1.31.11-1.85.32-.54.21-1 .51-1.36.88-.37.37-.65.8-.84 1.3-.18.47-.27.97-.28 1.5h2.14c.01-.31.05-.6.13-.87.09-.29.23-.54.4-.75.18-.21.41-.37.68-.49.27-.12.6-.18.96-.18.31 0 .58.05.81.15s.43.25.59.43c.16.18.28.4.37.65.08.25.13.52.13.81 0 .22-.03.43-.08.65-.06.22-.15.45-.29.7-.14.25-.32.53-.56.83-.23.3-.52.65-.88 1.03l-4.17 4.55V18H22v-1.71h-5.95l2.86-3.07c.38-.39.72-.79 1.04-1.18z"},"children":[]}]};exports.ic_exposure_plus_2_twotone=ic_exposure_plus_2_twotone;var ic_exposure_zero={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0zm0 0h24v24H0zm0 0h24v24H0zm0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16.14 12.5c0 1-.1 1.85-.3 2.55-.2.7-.48 1.27-.83 1.7-.36.44-.79.75-1.3.95-.51.2-1.07.3-1.7.3-.62 0-1.18-.1-1.69-.3-.51-.2-.95-.51-1.31-.95-.36-.44-.65-1.01-.85-1.7-.2-.7-.3-1.55-.3-2.55v-2.04c0-1 .1-1.85.3-2.55.2-.7.48-1.26.84-1.69.36-.43.8-.74 1.31-.93C10.81 5.1 11.38 5 12 5c.63 0 1.19.1 1.7.29.51.19.95.5 1.31.93.36.43.64.99.84 1.69.2.7.3 1.54.3 2.55v2.04zm-2.11-2.36c0-.64-.05-1.18-.13-1.62-.09-.44-.22-.79-.4-1.06-.17-.27-.39-.46-.64-.58-.25-.13-.54-.19-.86-.19-.32 0-.61.06-.86.18s-.47.31-.64.58c-.17.27-.31.62-.4 1.06s-.13.98-.13 1.62v2.67c0 .64.05 1.18.14 1.62.09.45.23.81.4 1.09s.39.48.64.61.54.19.87.19c.33 0 .62-.06.87-.19s.46-.33.63-.61c.17-.28.3-.64.39-1.09.09-.45.13-.99.13-1.62v-2.66z"},"children":[]}]};exports.ic_exposure_zero=ic_exposure_zero;var ic_exposure_zero_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16.14 12.5c0 1-.1 1.85-.3 2.55s-.48 1.27-.83 1.7c-.36.44-.79.75-1.3.95s-1.07.3-1.7.3c-.62 0-1.18-.1-1.69-.3-.51-.2-.95-.51-1.31-.95s-.65-1.01-.85-1.7c-.2-.7-.3-1.55-.3-2.55v-2.04c0-1 .1-1.85.3-2.55.2-.7.48-1.26.84-1.69.36-.43.8-.74 1.31-.93C10.81 5.1 11.38 5 12 5c.63 0 1.19.1 1.7.29.51.19.95.5 1.31.93.36.43.64.99.84 1.69.2.7.3 1.54.3 2.55v2.04h-.01zm-2.11-2.36c0-.64-.05-1.18-.13-1.62-.09-.44-.22-.79-.4-1.06-.17-.27-.39-.46-.64-.58-.25-.13-.54-.19-.86-.19s-.61.06-.86.18-.47.31-.64.58-.31.62-.4 1.06-.13.98-.13 1.62v2.67c0 .64.05 1.18.14 1.62.09.45.23.81.4 1.09s.39.48.64.61.54.19.87.19.62-.06.87-.19.46-.33.63-.61.3-.64.39-1.09.13-.99.13-1.62v-2.66h-.01z"},"children":[]}]};exports.ic_exposure_zero_outline=ic_exposure_zero_outline;var ic_exposure_zero_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.01 6.22c-.36-.43-.8-.74-1.31-.93S12.63 5 12 5c-.62 0-1.19.1-1.69.29-.51.19-.95.5-1.31.93s-.64.99-.84 1.69c-.2.7-.3 1.55-.3 2.55v2.04c0 1 .1 1.85.3 2.55.2.69.49 1.26.85 1.7s.8.75 1.31.95c.51.2 1.07.3 1.69.3.63 0 1.19-.1 1.7-.3.51-.2.94-.51 1.3-.95.35-.43.63-1 .83-1.7.2-.7.3-1.55.3-2.55h.01v-2.04c0-1.01-.1-1.85-.3-2.55-.2-.7-.48-1.26-.84-1.69zm-.97 6.58c0 .63-.04 1.17-.13 1.62-.09.45-.22.81-.39 1.09s-.38.48-.63.61-.54.19-.87.19c-.33 0-.62-.06-.87-.19s-.47-.33-.64-.61c-.17-.28-.31-.64-.4-1.09-.09-.44-.14-.98-.14-1.62v-2.67c0-.64.04-1.18.13-1.62.09-.44.23-.79.4-1.06s.39-.46.64-.58.54-.18.86-.18.61.06.86.19c.25.12.47.31.64.58.18.27.31.62.4 1.06.08.44.13.98.13 1.62h.01v2.66z"},"children":[]}]};exports.ic_exposure_zero_twotone=ic_exposure_zero_twotone;var ic_face_retouching_natural={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"9","cy":"13","r":"1.25"},"children":[]},{"name":"path","attribs":{"d":"M20.77 8.58l-.92 2.01c.09.46.15.93.15 1.41 0 4.41-3.59 8-8 8s-8-3.59-8-8c0-.05.01-.1 0-.14 2.6-.98 4.69-2.99 5.74-5.55C11.58 8.56 14.37 10 17.5 10c.45 0 .89-.04 1.33-.1l-.6-1.32-.88-1.93-1.93-.88-2.79-1.27 2.79-1.27.71-.32C14.87 2.33 13.47 2 12 2 6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10c0-1.47-.33-2.87-.9-4.13l-.33.71z"},"children":[]},{"name":"circle","attribs":{"cx":"15","cy":"13","r":"1.25"},"children":[]},{"name":"path","attribs":{"d":"M20.6 5.6L19.5 8l-1.1-2.4L16 4.5l2.4-1.1L19.5 1l1.1 2.4L23 4.5z"},"children":[]}]};exports.ic_face_retouching_natural=ic_face_retouching_natural;var ic_filter={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.96 10.29l-2.75 3.54-1.96-2.36L8.5 15h11l-3.54-4.71zM3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14z"},"children":[]}]};exports.ic_filter=ic_filter;var ic_filter_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.96 10.29l-2.75 3.54-1.96-2.36L8.5 15h11l-3.54-4.71zM3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14z"},"children":[]}]};exports.ic_filter_outline=ic_filter_outline;var ic_filter_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 17h14V3H7v14zm4.25-5.53l1.96 2.36 2.75-3.54L19.5 15h-11l2.75-3.53z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M1 21c0 1.1.9 2 2 2h16v-2H3V5H1v16zM21 1H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zm-5.04-6.71l-2.75 3.54-1.96-2.36L8.5 15h11z"},"children":[]}]};exports.ic_filter_twotone=ic_filter_twotone;var ic_filter_1={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm11 10h2V5h-4v2h2v8zm7-14H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14z"},"children":[]}]};exports.ic_filter_1=ic_filter_1;var ic_filter_1_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm11 10h2V5h-4v2h2v8zm7-14H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14z"},"children":[]}]};exports.ic_filter_1_outline=ic_filter_1_outline;var ic_filter_1_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 17h14V3H7v14zm5-12h4v10h-2V7h-2V5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M14 15h2V5h-4v2h2zm7-14H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zM1 5v16c0 1.1.9 2 2 2h16v-2H3V5H1z"},"children":[]}]};exports.ic_filter_1_twotone=ic_filter_1_twotone;var ic_filter_2={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zm-4-4h-4v-2h2c1.1 0 2-.89 2-2V7c0-1.11-.9-2-2-2h-4v2h4v2h-2c-1.1 0-2 .89-2 2v4h6v-2z"},"children":[]}]};exports.ic_filter_2=ic_filter_2;var ic_filter_2_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zm-4-4h-4v-2h2c1.1 0 2-.89 2-2V7c0-1.11-.9-2-2-2h-4v2h4v2h-2c-1.1 0-2 .89-2 2v4h6v-2z"},"children":[]}]};exports.ic_filter_2_outline=ic_filter_2_outline;var ic_filter_2_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 17h14V3H7v14zm4-6c0-1.11.9-2 2-2h2V7h-4V5h4c1.1 0 2 .89 2 2v2c0 1.11-.9 2-2 2h-2v2h4v2h-6v-4z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M17 13h-4v-2h2c1.1 0 2-.89 2-2V7c0-1.11-.9-2-2-2h-4v2h4v2h-2c-1.1 0-2 .89-2 2v4h6v-2zm4-12H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zM1 21c0 1.1.9 2 2 2h16v-2H3V5H1v16z"},"children":[]}]};exports.ic_filter_2_twotone=ic_filter_2_twotone;var ic_filter_3={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 1H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zM3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm14 8v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V7c0-1.11-.9-2-2-2h-4v2h4v2h-2v2h2v2h-4v2h4c1.1 0 2-.89 2-2z"},"children":[]}]};exports.ic_filter_3=ic_filter_3;var ic_filter_3_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 1H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zM3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm14 8v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V7c0-1.11-.9-2-2-2h-4v2h4v2h-2v2h2v2h-4v2h4c1.1 0 2-.89 2-2z"},"children":[]}]};exports.ic_filter_3_outline=ic_filter_3_outline;var ic_filter_3_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 17h14V3H7v14zm4-4h4v-2h-2V9h2V7h-4V5h4c1.1 0 2 .89 2 2v1.5c0 .83-.67 1.5-1.5 1.5.83 0 1.5.67 1.5 1.5V13c0 1.11-.9 2-2 2h-4v-2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M21 1H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zm-4-4v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V7c0-1.11-.9-2-2-2h-4v2h4v2h-2v2h2v2h-4v2h4c1.1 0 2-.89 2-2zm2 10v-2H3V5H1v16c0 1.1.9 2 2 2h16z"},"children":[]}]};exports.ic_filter_3_twotone=ic_filter_3_twotone;var ic_filter_4={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm12 10h2V5h-2v4h-2V5h-2v6h4v4zm6-14H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14z"},"children":[]}]};exports.ic_filter_4=ic_filter_4;var ic_filter_4_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm12 10h2V5h-2v4h-2V5h-2v6h4v4zm6-14H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14z"},"children":[]}]};exports.ic_filter_4_outline=ic_filter_4_outline;var ic_filter_4_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 3H7v14h14V3zm-4 12h-2v-4h-4V5h2v4h2V5h2v10z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M3 23h16v-2H3V5H1v16c0 1.1.9 2 2 2zm4-4h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2zM7 3h14v14H7V3zm8 6h-2V5h-2v6h4v4h2V5h-2z"},"children":[]}]};exports.ic_filter_4_twotone=ic_filter_4_twotone;var ic_filter_5={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 1H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zM3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm14 8v-2c0-1.11-.9-2-2-2h-2V7h4V5h-6v6h4v2h-4v2h4c1.1 0 2-.89 2-2z"},"children":[]}]};exports.ic_filter_5=ic_filter_5;var ic_filter_5_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 1H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zM3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm14 8v-2c0-1.11-.9-2-2-2h-2V7h4V5h-6v6h4v2h-4v2h4c1.1 0 2-.89 2-2z"},"children":[]}]};exports.ic_filter_5_outline=ic_filter_5_outline;var ic_filter_5_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 17h14V3H7v14zm4-4h4v-2h-4V5h6v2h-4v2h2c1.1 0 2 .89 2 2v2c0 1.11-.9 2-2 2h-4v-2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M19 23v-2H3V5H1v16c0 1.1.9 2 2 2h16zm-2-10v-2c0-1.11-.9-2-2-2h-2V7h4V5h-6v6h4v2h-4v2h4c1.1 0 2-.89 2-2zm4-12H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14z"},"children":[]}]};exports.ic_filter_5_twotone=ic_filter_5_twotone;var ic_filter_6={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zm-8-2h2c1.1 0 2-.89 2-2v-2c0-1.11-.9-2-2-2h-2V7h4V5h-4c-1.1 0-2 .89-2 2v6c0 1.11.9 2 2 2zm0-4h2v2h-2v-2z"},"children":[]}]};exports.ic_filter_6=ic_filter_6;var ic_filter_6_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zm-8-2h2c1.1 0 2-.89 2-2v-2c0-1.11-.9-2-2-2h-2V7h4V5h-4c-1.1 0-2 .89-2 2v6c0 1.11.9 2 2 2zm0-4h2v2h-2v-2z"},"children":[]}]};exports.ic_filter_6_outline=ic_filter_6_outline;var ic_filter_6_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 17h14V3H7v14zm4-10c0-1.11.9-2 2-2h4v2h-4v2h2c1.1 0 2 .89 2 2v2c0 1.11-.9 2-2 2h-2c-1.1 0-2-.89-2-2V7zm2 4h2v2h-2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M21 1H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zm-8-2h2c1.1 0 2-.89 2-2v-2c0-1.11-.9-2-2-2h-2V7h4V5h-4c-1.1 0-2 .89-2 2v6c0 1.11.9 2 2 2zm0-4h2v2h-2v-2zM3 23h16v-2H3V5H1v16c0 1.1.9 2 2 2z"},"children":[]}]};exports.ic_filter_6_twotone=ic_filter_6_twotone;var ic_filter_7={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zm-8-2l4-8V5h-6v2h4l-4 8h2z"},"children":[]}]};exports.ic_filter_7=ic_filter_7;var ic_filter_7_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zm-8-2l4-8V5h-6v2h4l-4 8h2z"},"children":[]}]};exports.ic_filter_7_outline=ic_filter_7_outline;var ic_filter_7_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 17h14V3H7v14zm4-10V5h6v2l-4 8h-2l4-8h-4z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M3 23h16v-2H3V5H1v16c0 1.1.9 2 2 2zm10-8l4-8V5h-6v2h4l-4 8zm8-14H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14z"},"children":[]}]};exports.ic_filter_7_twotone=ic_filter_7_twotone;var ic_filter_8={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zm-8-2h2c1.1 0 2-.89 2-2v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V7c0-1.11-.9-2-2-2h-2c-1.1 0-2 .89-2 2v1.5c0 .83.67 1.5 1.5 1.5-.83 0-1.5.67-1.5 1.5V13c0 1.11.9 2 2 2zm0-8h2v2h-2V7zm0 4h2v2h-2v-2z"},"children":[]}]};exports.ic_filter_8=ic_filter_8;var ic_filter_8_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zm-8-2h2c1.1 0 2-.89 2-2v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V7c0-1.11-.9-2-2-2h-2c-1.1 0-2 .89-2 2v1.5c0 .83.67 1.5 1.5 1.5-.83 0-1.5.67-1.5 1.5V13c0 1.11.9 2 2 2zm0-8h2v2h-2V7zm0 4h2v2h-2v-2z"},"children":[]}]};exports.ic_filter_8_outline=ic_filter_8_outline;var ic_filter_8_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 17h14V3H7v14zm4-5.5c0-.83.67-1.5 1.5-1.5-.83 0-1.5-.67-1.5-1.5V7c0-1.11.9-2 2-2h2c1.1 0 2 .89 2 2v1.5c0 .83-.67 1.5-1.5 1.5.83 0 1.5.67 1.5 1.5V13c0 1.11-.9 2-2 2h-2c-1.1 0-2-.89-2-2v-1.5zM13 7h2v2h-2zm0 4h2v2h-2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M21 1H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zM3 23h16v-2H3V5H1v16c0 1.1.9 2 2 2zm10-8h2c1.1 0 2-.89 2-2v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V7c0-1.11-.9-2-2-2h-2c-1.1 0-2 .89-2 2v1.5c0 .83.67 1.5 1.5 1.5-.83 0-1.5.67-1.5 1.5V13c0 1.11.9 2 2 2zm0-8h2v2h-2V7zm0 4h2v2h-2v-2z"},"children":[]}]};exports.ic_filter_8_twotone=ic_filter_8_twotone;var ic_filter_9={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zM15 5h-2c-1.1 0-2 .89-2 2v2c0 1.11.9 2 2 2h2v2h-4v2h4c1.1 0 2-.89 2-2V7c0-1.11-.9-2-2-2zm0 4h-2V7h2v2z"},"children":[]}]};exports.ic_filter_9=ic_filter_9;var ic_filter_9_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zM15 5h-2c-1.1 0-2 .89-2 2v2c0 1.11.9 2 2 2h2v2h-4v2h4c1.1 0 2-.89 2-2V7c0-1.11-.9-2-2-2zm0 4h-2V7h2v2z"},"children":[]}]};exports.ic_filter_9_outline=ic_filter_9_outline;var ic_filter_9_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13 7h2v2h-2zM7 17h14V3H7v14zm4-4h4v-2h-2c-1.1 0-2-.89-2-2V7c0-1.11.9-2 2-2h2c1.1 0 2 .89 2 2v6c0 1.11-.9 2-2 2h-4v-2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M21 1H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zM3 23h16v-2H3V5H1v16c0 1.1.9 2 2 2zm14-10V7c0-1.11-.9-2-2-2h-2c-1.1 0-2 .89-2 2v2c0 1.11.9 2 2 2h2v2h-4v2h4c1.1 0 2-.89 2-2zm-4-4V7h2v2h-2z"},"children":[]}]};exports.ic_filter_9_twotone=ic_filter_9_twotone;var ic_filter_9_plus={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm11 7V8c0-1.11-.9-2-2-2h-1c-1.1 0-2 .89-2 2v1c0 1.11.9 2 2 2h1v1H9v2h3c1.1 0 2-.89 2-2zm-3-3V8h1v1h-1zm10-8H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 8h-2V7h-2v2h-2v2h2v2h2v-2h2v6H7V3h14v6z"},"children":[]}]};exports.ic_filter_9_plus=ic_filter_9_plus;var ic_filter_9_plus_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm11 7V8c0-1.11-.9-2-2-2h-1c-1.1 0-2 .89-2 2v1c0 1.11.9 2 2 2h1v1H9v2h3c1.1 0 2-.89 2-2zm-3-3V8h1v1h-1zm10-8H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 8h-2V7h-2v2h-2v2h2v2h2v-2h2v6H7V3h14v6z"},"children":[]}]};exports.ic_filter_9_plus_outline=ic_filter_9_plus_outline;var ic_filter_9_plus_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 17h14v-6h-2v2h-2v-2h-2V9h2V7h2v2h2V3H7v14zm2-5h3v-1h-1c-1.1 0-2-.89-2-2V8c0-1.11.9-2 2-2h1c1.1 0 2 .89 2 2v4c0 1.11-.9 2-2 2H9v-2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M19 21H3V5H1v16c0 1.1.9 2 2 2h16v-2z"},"children":[]},{"name":"path","attribs":{"d":"M11 8h1v1h-1z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 6h-1c-1.1 0-2 .89-2 2v1c0 1.11.9 2 2 2h1v1H9v2h3c1.1 0 2-.89 2-2V8c0-1.11-.9-2-2-2zm0 3h-1V8h1v1zm9-8H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 8h-2V7h-2v2h-2v2h2v2h2v-2h2v6H7V3h14v6z"},"children":[]}]};exports.ic_filter_9_plus_twotone=ic_filter_9_plus_twotone;var ic_filter_b_and_w={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16l-7-8v8H5l7-8V5h7v14z"},"children":[]}]};exports.ic_filter_b_and_w=ic_filter_b_and_w;var ic_filter_b_and_w_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16l-7-8v8H5l7-8V5h7v14z"},"children":[]}]};exports.ic_filter_b_and_w_outline=ic_filter_b_and_w_outline;var ic_filter_b_and_w_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 5h-7v6l7 8zm-7 14v-8l-7 8z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M21 19V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zm-9 0H5l7-8V5h7v14l-7-8v8z"},"children":[]}]};exports.ic_filter_b_and_w_twotone=ic_filter_b_and_w_twotone;var ic_filter_center_focus={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 15H3v4c0 1.1.9 2 2 2h4v-2H5v-4zM5 5h4V3H5c-1.1 0-2 .9-2 2v4h2V5zm14-2h-4v2h4v4h2V5c0-1.1-.9-2-2-2zm0 16h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4zM12 9c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z"},"children":[]}]};exports.ic_filter_center_focus=ic_filter_center_focus;var ic_filter_center_focus_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 15H3v4c0 1.1.9 2 2 2h4v-2H5v-4zM5 5h4V3H5c-1.1 0-2 .9-2 2v4h2V5zm14-2h-4v2h4v4h2V5c0-1.1-.9-2-2-2zm0 16h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4zM12 9c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z"},"children":[]}]};exports.ic_filter_center_focus_outline=ic_filter_center_focus_outline;var ic_filter_center_focus_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 5h4V3H5c-1.1 0-2 .9-2 2v4h2V5zm7 4c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm7-6h-4v2h4v4h2V5c0-1.1-.9-2-2-2zm0 16h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4zM5 15H3v4c0 1.1.9 2 2 2h4v-2H5v-4z"},"children":[]}]};exports.ic_filter_center_focus_twotone=ic_filter_center_focus_twotone;var ic_filter_drama={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.61 5.64 5.36 8.04 2.35 8.36 0 10.9 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4h2c0-2.76-1.86-5.08-4.4-5.78C8.61 6.88 10.2 6 12 6c3.03 0 5.5 2.47 5.5 5.5v.5H19c1.65 0 3 1.35 3 3s-1.35 3-3 3z"},"children":[]}]};exports.ic_filter_drama=ic_filter_drama;var ic_filter_drama_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.61 5.64 5.36 8.04 2.35 8.36 0 10.9 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4h2c0-2.76-1.86-5.08-4.4-5.78C8.61 6.88 10.2 6 12 6c3.03 0 5.5 2.47 5.5 5.5v.5H19c1.65 0 3 1.35 3 3s-1.35 3-3 3z"},"children":[]}]};exports.ic_filter_drama_outline=ic_filter_drama_outline;var ic_filter_drama_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 12h-1.5v-.5C17.5 8.47 15.03 6 12 6c-1.8 0-3.39.88-4.4 2.22 2.54.7 4.4 3.02 4.4 5.78h-2c0-2.21-1.79-4-4-4s-4 1.79-4 4 1.79 4 4 4h13c1.65 0 3-1.35 3-3s-1.35-3-3-3z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.61 5.64 5.36 8.04 2.35 8.36 0 10.9 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4h2c0-2.76-1.86-5.08-4.4-5.78C8.61 6.88 10.2 6 12 6c3.03 0 5.5 2.47 5.5 5.5v.5H19c1.65 0 3 1.35 3 3s-1.35 3-3 3z"},"children":[]}]};exports.ic_filter_drama_twotone=ic_filter_drama_twotone;var ic_filter_frames={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 4h-4l-4-4-4 4H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H4V6h4.52l3.52-3.5L15.52 6H20v14zM18 8H6v10h12"},"children":[]}]};exports.ic_filter_frames=ic_filter_frames;var ic_filter_frames_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 4h-4l-4-4-4 4H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H4V6h4.52l3.52-3.5L15.52 6H20v14zM6 18h12V8H6v10zm2-8h8v6H8v-6z"},"children":[]}]};exports.ic_filter_frames_outline=ic_filter_frames_outline;var ic_filter_frames_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8 10h8v6H8z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 4h-4l-4-4-4 4H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H4V6h4.52l3.52-3.5L15.52 6H20v14zM6 18h12V8H6v10zm2-8h8v6H8v-6z"},"children":[]}]};exports.ic_filter_frames_twotone=ic_filter_frames_twotone;var ic_filter_hdr={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14 6l-3.75 5 2.85 3.8-1.6 1.2C9.81 13.75 7 10 7 10l-6 8h22L14 6z"},"children":[]}]};exports.ic_filter_hdr=ic_filter_hdr;var ic_filter_hdr_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14 6l-4.22 5.63 1.25 1.67L14 9.33 19 16h-8.46l-4.01-5.37L1 18h22L14 6zM5 16l1.52-2.03L8.04 16H5z"},"children":[]}]};exports.ic_filter_hdr_outline=ic_filter_hdr_outline;var ic_filter_hdr_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 16h3.04l-1.52-2.03z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M9.78 11.63l1.25 1.67L14 9.33 19 16h-8.46l-4.01-5.37L1 18h22L14 6l-4.22 5.63zM5 16l1.52-2.03L8.04 16H5z"},"children":[]}]};exports.ic_filter_hdr_twotone=ic_filter_hdr_twotone;var ic_filter_none={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14z"},"children":[]}]};exports.ic_filter_none=ic_filter_none;var ic_filter_none_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14z"},"children":[]}]};exports.ic_filter_none_outline=ic_filter_none_outline;var ic_filter_none_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 3h14v14H7z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M3 23h16v-2H3V5H1v16c0 1.1.9 2 2 2zM21 1H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14z"},"children":[]}]};exports.ic_filter_none_twotone=ic_filter_none_twotone;var ic_filter_tilt_shift={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11 4.07V2.05c-2.01.2-3.84 1-5.32 2.21L7.1 5.69c1.11-.86 2.44-1.44 3.9-1.62zm7.32.19C16.84 3.05 15.01 2.25 13 2.05v2.02c1.46.18 2.79.76 3.9 1.62l1.42-1.43zM19.93 11h2.02c-.2-2.01-1-3.84-2.21-5.32L18.31 7.1c.86 1.11 1.44 2.44 1.62 3.9zM5.69 7.1L4.26 5.68C3.05 7.16 2.25 8.99 2.05 11h2.02c.18-1.46.76-2.79 1.62-3.9zM4.07 13H2.05c.2 2.01 1 3.84 2.21 5.32l1.43-1.43c-.86-1.1-1.44-2.43-1.62-3.89zM15 12c0-1.66-1.34-3-3-3s-3 1.34-3 3 1.34 3 3 3 3-1.34 3-3zm3.31 4.9l1.43 1.43c1.21-1.48 2.01-3.32 2.21-5.32h-2.02c-.18 1.45-.76 2.78-1.62 3.89zM13 19.93v2.02c2.01-.2 3.84-1 5.32-2.21l-1.43-1.43c-1.1.86-2.43 1.44-3.89 1.62zm-7.32-.19C7.16 20.95 9 21.75 11 21.95v-2.02c-1.46-.18-2.79-.76-3.9-1.62l-1.42 1.43z"},"children":[]}]};exports.ic_filter_tilt_shift=ic_filter_tilt_shift;var ic_filter_tilt_shift_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11 4.07V2.05c-2.01.2-3.84 1-5.32 2.21L7.1 5.69c1.11-.86 2.44-1.44 3.9-1.62zm7.32.19C16.84 3.05 15.01 2.25 13 2.05v2.02c1.46.18 2.79.76 3.9 1.62l1.42-1.43zM19.93 11h2.02c-.2-2.01-1-3.84-2.21-5.32L18.31 7.1c.86 1.11 1.44 2.44 1.62 3.9zM5.69 7.1L4.26 5.68C3.05 7.16 2.25 8.99 2.05 11h2.02c.18-1.46.76-2.79 1.62-3.9zM4.07 13H2.05c.2 2.01 1 3.84 2.21 5.32l1.43-1.43c-.86-1.1-1.44-2.43-1.62-3.89zM15 12c0-1.66-1.34-3-3-3s-3 1.34-3 3 1.34 3 3 3 3-1.34 3-3zm3.31 4.9l1.43 1.43c1.21-1.48 2.01-3.32 2.21-5.32h-2.02c-.18 1.45-.76 2.78-1.62 3.89zM13 19.93v2.02c2.01-.2 3.84-1 5.32-2.21l-1.43-1.43c-1.1.86-2.43 1.44-3.89 1.62zm-7.32-.19C7.16 20.95 9 21.75 11 21.95v-2.02c-1.46-.18-2.79-.76-3.9-1.62l-1.42 1.43z"},"children":[]}]};exports.ic_filter_tilt_shift_outline=ic_filter_tilt_shift_outline;var ic_filter_tilt_shift_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13 2.05v2.02c1.46.18 2.79.76 3.9 1.62l1.42-1.43C16.84 3.05 15.01 2.25 13 2.05zm0 17.88v2.02c2.01-.2 3.84-1 5.32-2.21l-1.43-1.43c-1.1.86-2.43 1.44-3.89 1.62zm-8.74-1.61l1.43-1.43c-.86-1.1-1.44-2.43-1.62-3.89H2.05c.2 2.01 1 3.84 2.21 5.32zM2.05 11h2.02c.18-1.46.76-2.79 1.62-3.9L4.26 5.68C3.05 7.16 2.25 8.99 2.05 11zm16.26-3.9c.86 1.11 1.44 2.44 1.62 3.9h2.02c-.2-2.01-1-3.84-2.21-5.32L18.31 7.1zM7.1 5.69c1.11-.86 2.44-1.44 3.9-1.62V2.05c-2.01.2-3.84 1-5.32 2.21L7.1 5.69zM5.68 19.74C7.16 20.95 9 21.75 11 21.95v-2.02c-1.46-.18-2.79-.76-3.9-1.62l-1.42 1.43zm16.27-6.73h-2.02c-.18 1.45-.76 2.78-1.62 3.89l1.43 1.43c1.21-1.48 2.01-3.32 2.21-5.32zM9 12c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3z"},"children":[]}]};exports.ic_filter_tilt_shift_twotone=ic_filter_tilt_shift_twotone;var ic_filter_vintage={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18.7 12.4c-.28-.16-.57-.29-.86-.4.29-.11.58-.24.86-.4 1.92-1.11 2.99-3.12 3-5.19-1.79-1.03-4.07-1.11-6 0-.28.16-.54.35-.78.54.05-.31.08-.63.08-.95 0-2.22-1.21-4.15-3-5.19C10.21 1.85 9 3.78 9 6c0 .32.03.64.08.95-.24-.2-.5-.39-.78-.55-1.92-1.11-4.2-1.03-6 0 0 2.07 1.07 4.08 3 5.19.28.16.57.29.86.4-.29.11-.58.24-.86.4-1.92 1.11-2.99 3.12-3 5.19 1.79 1.03 4.07 1.11 6 0 .28-.16.54-.35.78-.54-.05.32-.08.64-.08.96 0 2.22 1.21 4.15 3 5.19 1.79-1.04 3-2.97 3-5.19 0-.32-.03-.64-.08-.95.24.2.5.38.78.54 1.92 1.11 4.2 1.03 6 0-.01-2.07-1.08-4.08-3-5.19zM12 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z"},"children":[]}]};exports.ic_filter_vintage=ic_filter_vintage;var ic_filter_vintage_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18.7 12.4c-.28-.16-.57-.29-.86-.4.29-.11.58-.24.86-.4 1.92-1.11 2.99-3.12 3-5.19-.91-.52-1.95-.8-3.01-.8-1.02 0-2.05.26-2.99.8-.28.16-.54.35-.78.54.05-.31.08-.63.08-.95 0-2.22-1.21-4.15-3-5.19C10.21 1.85 9 3.78 9 6c0 .32.03.64.08.95-.24-.2-.5-.39-.78-.55-.94-.54-1.97-.8-2.99-.8-1.05 0-2.1.28-3.01.8 0 2.07 1.07 4.08 3 5.19.28.16.57.29.86.4-.29.11-.58.24-.86.4-1.92 1.11-2.99 3.12-3 5.19.91.52 1.95.8 3.01.8 1.02 0 2.05-.26 2.99-.8.28-.16.54-.35.78-.54-.05.32-.08.64-.08.96 0 2.22 1.21 4.15 3 5.19 1.79-1.04 3-2.97 3-5.19 0-.32-.03-.64-.08-.95.24.2.5.38.78.54.94.54 1.97.8 2.99.8 1.05 0 2.1-.28 3.01-.8-.01-2.07-1.08-4.08-3-5.19zm-2.54-3.88c.21-.17.38-.29.54-.37.61-.35 1.3-.54 2-.54.27 0 .53.03.79.08-.31.91-.94 1.69-1.78 2.18-.17.1-.36.18-.58.27l-1.38.52c-.17-.46-.41-.87-.72-1.24l1.13-.9zM12 3.37c.63.72 1 1.66 1 2.63 0 .19-.02.41-.05.63l-.23 1.44C12.48 8.03 12.24 8 12 8s-.48.03-.71.07l-.23-1.44C11.02 6.41 11 6.19 11 6c0-.98.37-1.91 1-2.63zM4.51 7.68c.26-.06.53-.08.8-.08.69 0 1.38.18 1.99.54.15.09.32.2.49.35l1.15.96c-.3.36-.53.76-.7 1.2l-1.38-.52c-.21-.09-.4-.18-.56-.27-.87-.5-1.49-1.27-1.79-2.18zm3.33 7.79c-.21.17-.38.29-.54.37-.61.35-1.3.54-2 .54-.27 0-.53-.03-.79-.08.31-.91.94-1.69 1.78-2.18.17-.1.36-.18.58-.27l1.38-.52c.16.46.41.88.72 1.24l-1.13.9zM12 20.63c-.63-.72-1-1.66-1-2.63 0-.2.02-.41.06-.65l.22-1.42c.23.04.47.07.72.07.24 0 .48-.03.71-.07l.23 1.44c.04.22.06.44.06.63 0 .98-.37 1.91-1 2.63zm6.69-4.24c-.69 0-1.38-.18-1.99-.54-.18-.1-.34-.22-.49-.34l-1.15-.96c.3-.36.54-.76.7-1.21l1.38.52c.22.08.41.17.57.26.85.49 1.47 1.27 1.78 2.18-.27.07-.54.09-.8.09z"},"children":[]}]};exports.ic_filter_vintage_outline=ic_filter_vintage_outline;var ic_filter_vintage_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18.69 7.61c-.7 0-1.39.19-2 .54-.16.09-.32.21-.54.37l-1.13.9c.31.36.56.78.72 1.24l1.38-.52c.22-.08.41-.17.58-.27.84-.49 1.47-1.27 1.78-2.18-.26-.06-.52-.08-.79-.08zm-1.56 6.26l-1.38-.52c-.16.45-.4.85-.7 1.21l1.15.96c.15.12.31.24.49.34.61.35 1.3.54 1.99.54.27 0 .53-.03.8-.08-.31-.91-.94-1.69-1.78-2.18-.16-.1-.35-.19-.57-.27zM11 6c0 .19.02.41.05.63l.23 1.44c.24-.04.48-.07.72-.07s.48.03.71.07l.23-1.44c.04-.22.06-.44.06-.63 0-.98-.37-1.91-1-2.63-.63.72-1 1.65-1 2.63zm1.71 9.93c-.23.04-.47.07-.71.07-.25 0-.49-.03-.72-.07l-.22 1.42c-.04.24-.06.45-.06.65 0 .98.37 1.91 1 2.63.63-.72 1-1.66 1-2.63 0-.19-.02-.41-.05-.63l-.24-1.44zm-5.84-5.81l1.38.52c.16-.44.4-.85.7-1.2L7.8 8.49c-.17-.15-.34-.27-.49-.35-.62-.36-1.3-.54-2-.54-.27 0-.54.03-.81.08.3.91.93 1.68 1.79 2.18.17.09.36.18.58.26zm0 3.74c-.22.08-.41.17-.58.27-.84.49-1.47 1.27-1.78 2.18.26.05.52.08.79.08.7 0 1.39-.19 2-.54.16-.09.32-.21.54-.37l1.13-.89c-.31-.36-.56-.78-.72-1.24l-1.38.51z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M18.7 12.4c-.28-.16-.57-.29-.86-.4.29-.11.58-.24.86-.4 1.92-1.11 2.99-3.12 3-5.19-.91-.52-1.95-.8-3.01-.8-1.02 0-2.05.26-2.99.8-.28.16-.54.35-.78.54.05-.31.08-.63.08-.95 0-2.22-1.21-4.15-3-5.19C10.21 1.85 9 3.78 9 6c0 .32.03.64.08.95-.24-.2-.5-.39-.78-.55-.94-.54-1.97-.8-2.99-.8-1.05 0-2.1.28-3.01.8 0 2.07 1.07 4.08 3 5.19.28.16.57.29.86.4-.29.11-.58.24-.86.4-1.92 1.11-2.99 3.12-3 5.19.91.52 1.95.8 3.01.8 1.02 0 2.05-.26 2.99-.8.28-.16.54-.35.78-.54-.05.32-.08.64-.08.96 0 2.22 1.21 4.15 3 5.19 1.79-1.04 3-2.97 3-5.19 0-.32-.03-.64-.08-.95.24.2.5.38.78.54.94.54 1.97.8 2.99.8 1.05 0 2.1-.28 3.01-.8-.01-2.07-1.08-4.08-3-5.19zM4.51 7.68c.26-.06.53-.08.8-.08.69 0 1.38.18 1.99.54.15.09.32.2.49.35l1.15.96c-.3.36-.53.76-.7 1.2l-1.38-.52c-.21-.09-.4-.18-.56-.27-.87-.5-1.49-1.27-1.79-2.18zm3.33 7.79c-.21.17-.38.29-.54.37-.61.35-1.3.54-2 .54-.27 0-.53-.03-.79-.08.31-.91.94-1.69 1.78-2.18.17-.1.36-.18.58-.27l1.38-.52c.16.46.41.88.72 1.24l-1.13.9zM12 3.37c.63.72 1 1.66 1 2.63 0 .19-.02.41-.05.63l-.23 1.44C12.48 8.03 12.24 8 12 8s-.48.03-.71.07l-.23-1.44C11.02 6.41 11 6.19 11 6c0-.98.37-1.91 1-2.63zm0 17.26c-.63-.72-1-1.66-1-2.63 0-.2.02-.41.06-.65l.22-1.42c.23.04.47.07.72.07.24 0 .48-.03.71-.07l.23 1.44c.04.22.06.44.06.63 0 .98-.37 1.91-1 2.63zM12 14c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm4.16-5.48c.21-.17.38-.29.54-.37.61-.35 1.3-.54 2-.54.27 0 .53.03.79.08-.31.91-.94 1.69-1.78 2.18-.17.1-.36.18-.58.27l-1.38.52c-.17-.46-.41-.87-.72-1.24l1.13-.9zm2.53 7.87c-.69 0-1.38-.18-1.99-.54-.18-.1-.34-.22-.49-.34l-1.15-.96c.3-.36.54-.76.7-1.21l1.38.52c.22.08.41.17.57.26.85.49 1.47 1.27 1.78 2.18-.27.07-.54.09-.8.09z"},"children":[]}]};exports.ic_filter_vintage_twotone=ic_filter_vintage_twotone;var ic_flare={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 11H1v2h6v-2zm2.17-3.24L7.05 5.64 5.64 7.05l2.12 2.12 1.41-1.41zM13 1h-2v6h2V1zm5.36 6.05l-1.41-1.41-2.12 2.12 1.41 1.41 2.12-2.12zM17 11v2h6v-2h-6zm-5-2c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm2.83 7.24l2.12 2.12 1.41-1.41-2.12-2.12-1.41 1.41zm-9.19.71l1.41 1.41 2.12-2.12-1.41-1.41-2.12 2.12zM11 23h2v-6h-2v6z"},"children":[]}]};exports.ic_flare=ic_flare;var ic_flare_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 11H1v2h6v-2zm2.17-3.24L7.05 5.64 5.64 7.05l2.12 2.12 1.41-1.41zM13 1h-2v6h2V1zm5.36 6.05l-1.41-1.41-2.12 2.12 1.41 1.41 2.12-2.12zM17 11v2h6v-2h-6zm-5-2c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm2.83 7.24l2.12 2.12 1.41-1.41-2.12-2.12-1.41 1.41zm-9.19.71l1.41 1.41 2.12-2.12-1.41-1.41-2.12 2.12zM11 23h2v-6h-2v6z"},"children":[]}]};exports.ic_flare_outline=ic_flare_outline;var ic_flare_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5.644 7.05L7.05 5.645l2.123 2.122-1.408 1.407zM11 1h2v6h-2zm5.242 13.834l2.12 2.12-1.406 1.408-2.12-2.12zM14.834 7.76l2.12-2.123 1.41 1.407-2.123 2.122zm-5.668 8.482l-2.122 2.12-1.407-1.406 2.122-2.122zM12 9c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm-1 8h2v6h-2zM1 11h6v2H1zm16 0h6v2h-6z"},"children":[]}]};exports.ic_flare_twotone=ic_flare_twotone;var ic_flash_auto={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 2v12h3v9l7-12H9l4-9H3zm16 0h-2l-3.2 9h1.9l.7-2h3.2l.7 2h1.9L19 2zm-2.15 5.65L18 4l1.15 3.65h-2.3z"},"children":[]}]};exports.ic_flash_auto=ic_flash_auto;var ic_flash_auto_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 2v12h3v9l7-12H9l4-9H3zm16 0h-2l-3.2 9h1.9l.7-2h3.2l.7 2h1.9L19 2zm-2.15 5.65L18 4l1.15 3.65h-2.3z"},"children":[]}]};exports.ic_flash_auto_outline=ic_flash_auto_outline;var ic_flash_auto_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 2v12h3v9l7-12H9l4-9zm14 0l-3.2 9h1.9l.7-2h3.2l.7 2h1.9L19 2h-2zm-.15 5.65L18 4l1.15 3.65h-2.3z"},"children":[]}]};exports.ic_flash_auto_twotone=ic_flash_auto_twotone;var ic_flash_off={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3.27 3L2 4.27l5 5V13h3v9l3.58-6.14L17.73 20 19 18.73 3.27 3zM17 10h-4l4-8H7v2.18l8.46 8.46L17 10z"},"children":[]}]};exports.ic_flash_off=ic_flash_off;var ic_flash_off_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 10h-3.61l2.28 2.28zm0-8H7v1.61l6.13 6.13zm-13.59.86L2 4.27l5 5V13h3v9l3.58-6.15L17.73 20l1.41-1.41z"},"children":[]}]};exports.ic_flash_off_outline=ic_flash_off_outline;var ic_flash_off_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 10h-3.61l2.28 2.28zm0-8H7v1.61l6.13 6.13zm-13.59.86L2 4.27l5 5V13h3v9l3.58-6.15L17.73 20l1.41-1.41z"},"children":[]}]};exports.ic_flash_off_twotone=ic_flash_off_twotone;var ic_flash_on={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 2v11h3v9l7-12h-4l4-8z"},"children":[]}]};exports.ic_flash_on=ic_flash_on;var ic_flash_on_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 2v11h3v9l7-12h-4l3-8z"},"children":[]}]};exports.ic_flash_on_outline=ic_flash_on_outline;var ic_flash_on_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 10h-4l3-8H7v11h3v9z"},"children":[]}]};exports.ic_flash_on_twotone=ic_flash_on_twotone;var ic_flip={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15 21h2v-2h-2v2zm4-12h2V7h-2v2zM3 5v14c0 1.1.9 2 2 2h4v-2H5V5h4V3H5c-1.1 0-2 .9-2 2zm16-2v2h2c0-1.1-.9-2-2-2zm-8 20h2V1h-2v22zm8-6h2v-2h-2v2zM15 5h2V3h-2v2zm4 8h2v-2h-2v2zm0 8c1.1 0 2-.9 2-2h-2v2z"},"children":[]}]};exports.ic_flip=ic_flip;var ic_flip_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15 21h2v-2h-2v2zm4-12h2V7h-2v2zM3 5v14c0 1.1.9 2 2 2h4v-2H5V5h4V3H5c-1.1 0-2 .9-2 2zm16-2v2h2c0-1.1-.9-2-2-2zm-8 20h2V1h-2v22zm8-6h2v-2h-2v2zM15 5h2V3h-2v2zm4 8h2v-2h-2v2zm0 8c1.1 0 2-.9 2-2h-2v2z"},"children":[]}]};exports.ic_flip_outline=ic_flip_outline;var ic_flip_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 7h2v2h-2zm0 14c1.1 0 2-.9 2-2h-2v2zm0-6h2v2h-2zm0-4h2v2h-2zM9 5V3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h4v-2H5V5h4zm10-2v2h2c0-1.1-.9-2-2-2zm-8-2h2v22h-2zm4 2h2v2h-2zm0 16h2v2h-2z"},"children":[]}]};exports.ic_flip_twotone=ic_flip_twotone;var ic_flip_camera_android={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M9,12c0,1.66,1.34,3,3,3s3-1.34,3-3s-1.34-3-3-3S9,10.34,9,12z"},"children":[{"name":"path","attribs":{"d":"M9,12c0,1.66,1.34,3,3,3s3-1.34,3-3s-1.34-3-3-3S9,10.34,9,12z"},"children":[]}]},{"name":"path","attribs":{"d":"M8,10V8H5.09C6.47,5.61,9.05,4,12,4c3.72,0,6.85,2.56,7.74,6h2.06c-0.93-4.56-4.96-8-9.8-8C8.73,2,5.82,3.58,4,6.01V4H2v6 H8z"},"children":[{"name":"path","attribs":{"d":"M8,10V8H5.09C6.47,5.61,9.05,4,12,4c3.72,0,6.85,2.56,7.74,6h2.06c-0.93-4.56-4.96-8-9.8-8C8.73,2,5.82,3.58,4,6.01V4H2v6 H8z"},"children":[]}]},{"name":"path","attribs":{"d":"M16,14v2h2.91c-1.38,2.39-3.96,4-6.91,4c-3.72,0-6.85-2.56-7.74-6H2.2c0.93,4.56,4.96,8,9.8,8c3.27,0,6.18-1.58,8-4.01V20 h2v-6H16z"},"children":[{"name":"path","attribs":{"d":"M16,14v2h2.91c-1.38,2.39-3.96,4-6.91,4c-3.72,0-6.85-2.56-7.74-6H2.2c0.93,4.56,4.96,8,9.8,8c3.27,0,6.18-1.58,8-4.01V20 h2v-6H16z"},"children":[]}]}]}]}]}]};exports.ic_flip_camera_android=ic_flip_camera_android;var ic_flip_camera_android_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M9,12c0,1.66,1.34,3,3,3s3-1.34,3-3s-1.34-3-3-3S9,10.34,9,12z M13,12c0,0.55-0.45,1-1,1s-1-0.45-1-1s0.45-1,1-1 S13,11.45,13,12z"},"children":[{"name":"path","attribs":{"d":"M9,12c0,1.66,1.34,3,3,3s3-1.34,3-3s-1.34-3-3-3S9,10.34,9,12z M13,12c0,0.55-0.45,1-1,1s-1-0.45-1-1s0.45-1,1-1 S13,11.45,13,12z"},"children":[]}]},{"name":"path","attribs":{"d":"M8,10V8H5.09C6.47,5.61,9.05,4,12,4c3.72,0,6.85,2.56,7.74,6h2.06c-0.93-4.56-4.96-8-9.8-8C8.73,2,5.82,3.58,4,6.01V4H2v6 H8z"},"children":[{"name":"path","attribs":{"d":"M8,10V8H5.09C6.47,5.61,9.05,4,12,4c3.72,0,6.85,2.56,7.74,6h2.06c-0.93-4.56-4.96-8-9.8-8C8.73,2,5.82,3.58,4,6.01V4H2v6 H8z"},"children":[]}]},{"name":"path","attribs":{"d":"M16,14v2h2.91c-1.38,2.39-3.96,4-6.91,4c-3.72,0-6.85-2.56-7.74-6H2.2c0.93,4.56,4.96,8,9.8,8c3.27,0,6.18-1.58,8-4.01V20 h2v-6H16z"},"children":[{"name":"path","attribs":{"d":"M16,14v2h2.91c-1.38,2.39-3.96,4-6.91,4c-3.72,0-6.85-2.56-7.74-6H2.2c0.93,4.56,4.96,8,9.8,8c3.27,0,6.18-1.58,8-4.01V20 h2v-6H16z"},"children":[]}]}]}]}]}]};exports.ic_flip_camera_android_outline=ic_flip_camera_android_outline;var ic_flip_camera_android_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"cx":"12","cy":"12","opacity":".3","r":"1"},"children":[{"name":"circle","attribs":{"cx":"12","cy":"12","opacity":".3","r":"1"},"children":[]}]},{"name":"path","attribs":{"d":"M9,12c0,1.66,1.34,3,3,3s3-1.34,3-3s-1.34-3-3-3S9,10.34,9,12z M13,12c0,0.55-0.45,1-1,1s-1-0.45-1-1s0.45-1,1-1 S13,11.45,13,12z"},"children":[{"name":"path","attribs":{"d":"M9,12c0,1.66,1.34,3,3,3s3-1.34,3-3s-1.34-3-3-3S9,10.34,9,12z M13,12c0,0.55-0.45,1-1,1s-1-0.45-1-1s0.45-1,1-1 S13,11.45,13,12z"},"children":[]}]},{"name":"path","attribs":{"d":"M8,8H5.09C6.47,5.61,9.05,4,12,4c3.72,0,6.85,2.56,7.74,6h2.06c-0.93-4.56-4.96-8-9.8-8C8.73,2,5.82,3.58,4,6.01V4H2v6h6 V8z"},"children":[{"name":"path","attribs":{"d":"M8,8H5.09C6.47,5.61,9.05,4,12,4c3.72,0,6.85,2.56,7.74,6h2.06c-0.93-4.56-4.96-8-9.8-8C8.73,2,5.82,3.58,4,6.01V4H2v6h6 V8z"},"children":[]}]},{"name":"path","attribs":{"d":"M16,14v2h2.91c-1.38,2.39-3.96,4-6.91,4c-3.72,0-6.85-2.56-7.74-6H2.2c0.93,4.56,4.96,8,9.8,8c3.27,0,6.18-1.58,8-4.01V20 h2v-6H16z"},"children":[{"name":"path","attribs":{"d":"M16,14v2h2.91c-1.38,2.39-3.96,4-6.91,4c-3.72,0-6.85-2.56-7.74-6H2.2c0.93,4.56,4.96,8,9.8,8c3.27,0,6.18-1.58,8-4.01V20 h2v-6H16z"},"children":[]}]}]}]}]}]};exports.ic_flip_camera_android_twotone=ic_flip_camera_android_twotone;var ic_flip_camera_ios={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M20,5h-3.17L15,3H9L7.17,5H4C2.9,5,2,5.9,2,7v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V7C22,5.9,21.1,5,20,5z M12,18 c-2.76,0-5-2.24-5-5H5l2.5-2.5L10,13H8c0,2.21,1.79,4,4,4c0.58,0,1.13-0.13,1.62-0.35l0.74,0.74C13.65,17.76,12.86,18,12,18z M16.5,15.5L14,13h2c0-2.21-1.79-4-4-4c-0.58,0-1.13,0.13-1.62,0.35L9.64,8.62C10.35,8.24,11.14,8,12,8c2.76,0,5,2.24,5,5h2 L16.5,15.5z"},"children":[{"name":"path","attribs":{"d":"M20,5h-3.17L15,3H9L7.17,5H4C2.9,5,2,5.9,2,7v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V7C22,5.9,21.1,5,20,5z M12,18 c-2.76,0-5-2.24-5-5H5l2.5-2.5L10,13H8c0,2.21,1.79,4,4,4c0.58,0,1.13-0.13,1.62-0.35l0.74,0.74C13.65,17.76,12.86,18,12,18z M16.5,15.5L14,13h2c0-2.21-1.79-4-4-4c-0.58,0-1.13,0.13-1.62,0.35L9.64,8.62C10.35,8.24,11.14,8,12,8c2.76,0,5,2.24,5,5h2 L16.5,15.5z"},"children":[]}]}]}]}]}]};exports.ic_flip_camera_ios=ic_flip_camera_ios;var ic_flip_camera_ios_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M20,5h-3.17L15,3H9L7.17,5H4C2.9,5,2,5.9,2,7v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V7C22,5.9,21.1,5,20,5z M20,19H4V7 h3.17h0.88l0.59-0.65L9.88,5h4.24l1.24,1.35L15.95,7h0.88H20V19z"},"children":[{"name":"path","attribs":{"d":"M20,5h-3.17L15,3H9L7.17,5H4C2.9,5,2,5.9,2,7v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V7C22,5.9,21.1,5,20,5z M20,19H4V7 h3.17h0.88l0.59-0.65L9.88,5h4.24l1.24,1.35L15.95,7h0.88H20V19z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M12,17c-2.21,0-4-1.79-4-4h2l-2.5-2.5L5,13h2c0,2.76,2.24,5,5,5c0.86,0,1.65-0.24,2.36-0.62l-0.74-0.74 C13.13,16.87,12.58,17,12,17z"},"children":[{"name":"path","attribs":{"d":"M12,17c-2.21,0-4-1.79-4-4h2l-2.5-2.5L5,13h2c0,2.76,2.24,5,5,5c0.86,0,1.65-0.24,2.36-0.62l-0.74-0.74 C13.13,16.87,12.58,17,12,17z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M12,8c-0.86,0-1.65,0.24-2.36,0.62l0.74,0.73C10.87,9.13,11.42,9,12,9c2.21,0,4,1.79,4,4h-2l2.5,2.5L19,13h-2 C17,10.24,14.76,8,12,8z"},"children":[{"name":"path","attribs":{"d":"M12,8c-0.86,0-1.65,0.24-2.36,0.62l0.74,0.73C10.87,9.13,11.42,9,12,9c2.21,0,4,1.79,4,4h-2l2.5,2.5L19,13h-2 C17,10.24,14.76,8,12,8z"},"children":[]}]}]}]}]}]}]}]};exports.ic_flip_camera_ios_outline=ic_flip_camera_ios_outline;var ic_flip_camera_ios_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M14.12,5H9.88L8.05,7H4v12h16V7h-4.05L14.12,5z M12,18c-2.76,0-5-2.24-5-5H5l2.49-2.49L7.5,10.5L10,13H9.97 H8c0,2.21,1.79,4,4,4c0.58,0,1.13-0.13,1.62-0.35l0.74,0.74C13.65,17.76,12.86,18,12,18z M19,13l-2.49,2.49L16.5,15.5L14,13h0.03 H16c0-2.21-1.79-4-4-4c-0.58,0-1.13,0.13-1.62,0.35L9.64,8.62C10.35,8.24,11.14,8,12,8c2.76,0,5,2.24,5,5H19z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M14.12,5H9.88L8.05,7H4v12h16V7h-4.05L14.12,5z M12,18c-2.76,0-5-2.24-5-5H5l2.49-2.49L7.5,10.5L10,13H9.97 H8c0,2.21,1.79,4,4,4c0.58,0,1.13-0.13,1.62-0.35l0.74,0.74C13.65,17.76,12.86,18,12,18z M19,13l-2.49,2.49L16.5,15.5L14,13h0.03 H16c0-2.21-1.79-4-4-4c-0.58,0-1.13,0.13-1.62,0.35L9.64,8.62C10.35,8.24,11.14,8,12,8c2.76,0,5,2.24,5,5H19z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M20,5h-3.17L15,3H9L7.17,5H4C2.9,5,2,5.9,2,7v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V7C22,5.9,21.1,5,20,5z M20,19H4V7 h4.05l1.83-2h4.24l1.83,2H20V19z"},"children":[{"name":"path","attribs":{"d":"M20,5h-3.17L15,3H9L7.17,5H4C2.9,5,2,5.9,2,7v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V7C22,5.9,21.1,5,20,5z M20,19H4V7 h4.05l1.83-2h4.24l1.83,2H20V19z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M12,17c-2.21,0-4-1.79-4-4h1.97H10l-2.5-2.5l-0.01,0.01L5,13h2c0,2.76,2.24,5,5,5c0.86,0,1.65-0.24,2.36-0.62l-0.74-0.74 C13.13,16.87,12.58,17,12,17z"},"children":[{"name":"path","attribs":{"d":"M12,17c-2.21,0-4-1.79-4-4h1.97H10l-2.5-2.5l-0.01,0.01L5,13h2c0,2.76,2.24,5,5,5c0.86,0,1.65-0.24,2.36-0.62l-0.74-0.74 C13.13,16.87,12.58,17,12,17z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M12,8c-0.86,0-1.65,0.24-2.36,0.62l0.74,0.73C10.87,9.13,11.42,9,12,9c2.21,0,4,1.79,4,4h-1.97H14l2.5,2.5l0.01-0.01 L19,13h-2C17,10.24,14.76,8,12,8z"},"children":[{"name":"path","attribs":{"d":"M12,8c-0.86,0-1.65,0.24-2.36,0.62l0.74,0.73C10.87,9.13,11.42,9,12,9c2.21,0,4,1.79,4,4h-1.97H14l2.5,2.5l0.01-0.01 L19,13h-2C17,10.24,14.76,8,12,8z"},"children":[]}]}]}]}]}]}]}]};exports.ic_flip_camera_ios_twotone=ic_flip_camera_ios_twotone;var ic_gradient={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11 9h2v2h-2zm-2 2h2v2H9zm4 0h2v2h-2zm2-2h2v2h-2zM7 9h2v2H7zm12-6H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 18H7v-2h2v2zm4 0h-2v-2h2v2zm4 0h-2v-2h2v2zm2-7h-2v2h2v2h-2v-2h-2v2h-2v-2h-2v2H9v-2H7v2H5v-2h2v-2H5V5h14v6z"},"children":[]}]};exports.ic_gradient=ic_gradient;var ic_gradient_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11 9h2v2h-2V9zm-2 2h2v2H9v-2zm4 0h2v2h-2v-2zm2-2h2v2h-2V9zM7 9h2v2H7V9zm12-6H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 18H7v-2h2v2zm4 0h-2v-2h2v2zm4 0h-2v-2h2v2zm2-7h-2v2h2v2h-2v-2h-2v2h-2v-2h-2v2H9v-2H7v2H5v-2h2v-2H5V5h14v6z"},"children":[]}]};exports.ic_gradient_outline=ic_gradient_outline;var ic_gradient_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13 11h2v2h-2zm6 10c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14zM9 18H7v-2h2v2zm4 0h-2v-2h2v2zm4 0h-2v-2h2v2zM5 13h2v-2H5V5h14v6h-2v2h2v2h-2v-2h-2v2h-2v-2h-2v2H9v-2H7v2H5v-2zm2-4h2v2H7zm8 0h2v2h-2zm-4 0h2v2h-2zm-2 2h2v2H9z"},"children":[]}]};exports.ic_gradient_twotone=ic_gradient_twotone;var ic_grain={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 12c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM6 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12-8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-4 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm4-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-4-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-4-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"},"children":[]}]};exports.ic_grain=ic_grain;var ic_grain_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 12c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM6 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12-8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-4 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm4-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-4-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-4-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"},"children":[]}]};exports.ic_grain_outline=ic_grain_outline;var ic_grain_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM6 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm8 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-4 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0-12c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm4 12c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-8 4c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z"},"children":[]}]};exports.ic_grain_twotone=ic_grain_twotone;var ic_grid_off={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8 4v1.45l2 2V4h4v4h-3.45l2 2H14v1.45l2 2V10h4v4h-3.45l2 2H20v1.45l2 2V4c0-1.1-.9-2-2-2H4.55l2 2H8zm8 0h4v4h-4V4zM1.27 1.27L0 2.55l2 2V20c0 1.1.9 2 2 2h15.46l2 2 1.27-1.27L1.27 1.27zM10 12.55L11.45 14H10v-1.45zm-6-6L5.45 8H4V6.55zM8 20H4v-4h4v4zm0-6H4v-4h3.45l.55.55V14zm6 6h-4v-4h3.45l.55.54V20zm2 0v-1.46L17.46 20H16z"},"children":[]}]};exports.ic_grid_off=ic_grid_off;var ic_grid_off_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8 4v.89l2 2V4h4v4h-2.89l2 2H14v.89l2 2V10h4v4h-2.89l2 2H20v.89l2 2V4c0-1.1-.9-2-2-2H5.11l2 2H8zm8 0h4v4h-4V4zM1.41 1.14L0 2.55l2 2V20c0 1.1.9 2 2 2h15.45l2.01 2.01 1.41-1.41L1.41 1.14zM10 12.55L11.45 14H10v-1.45zm-6-6L5.45 8H4V6.55zM8 20H4v-4h4v4zm0-6H4v-4h3.45l.55.55V14zm6 6h-4v-4h3.45l.55.55V20zm2 0v-1.45L17.45 20H16z"},"children":[]}]};exports.ic_grid_off_outline=ic_grid_off_outline;var ic_grid_off_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 14v-4h-4v2.89L17.11 14zm-10-1.45V14h1.45zM14 10h-.89l.89.89zm5.11 6l.89.89V16zM8 4h-.89l.89.89zm6 4V4h-4v2.89L11.11 8zm2-4h4v4h-4zm-6 12v4h4v-3.45l-.55-.55zm-6-6v4h4v-3.45L7.45 10zm12 10h1.45L16 18.55zM4 16h4v4H4zm0-9.45V8h1.45z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M8 4v.89l2 2V4h4v4h-2.89l2 2H14v.89l2 2V10h4v4h-2.89l2 2H20v.89l2 2V4c0-1.1-.9-2-2-2H5.11l2 2H8zm8 0h4v4h-4V4zM1.41 1.14L0 2.55l2 2V20c0 1.1.9 2 2 2h15.45l2.01 2.01 1.41-1.41L1.41 1.14zM10 12.55L11.45 14H10v-1.45zm-6-6L5.45 8H4V6.55zM8 20H4v-4h4v4zm0-6H4v-4h3.45l.55.55V14zm6 6h-4v-4h3.45l.55.55V20zm2 0v-1.45L17.45 20H16z"},"children":[]}]};exports.ic_grid_off_twotone=ic_grid_off_twotone;var ic_grid_on={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM8 20H4v-4h4v4zm0-6H4v-4h4v4zm0-6H4V4h4v4zm6 12h-4v-4h4v4zm0-6h-4v-4h4v4zm0-6h-4V4h4v4zm6 12h-4v-4h4v4zm0-6h-4v-4h4v4zm0-6h-4V4h4v4z"},"children":[]}]};exports.ic_grid_on=ic_grid_on;var ic_grid_on_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM8 20H4v-4h4v4zm0-6H4v-4h4v4zm0-6H4V4h4v4zm6 12h-4v-4h4v4zm0-6h-4v-4h4v4zm0-6h-4V4h4v4zm6 12h-4v-4h4v4zm0-6h-4v-4h4v4zm0-6h-4V4h4v4z"},"children":[]}]};exports.ic_grid_on_outline=ic_grid_on_outline;var ic_grid_on_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 10h4v4h-4zm0 6h4v4h-4zM4 4h4v4H4zm0 6h4v4H4zm0 6h4v4H4zM16 4h4v4h-4zm0 6h4v4h-4zm0 6h4v4h-4zM10 4h4v4h-4z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM8 20H4v-4h4v4zm0-6H4v-4h4v4zm0-6H4V4h4v4zm6 12h-4v-4h4v4zm0-6h-4v-4h4v4zm0-6h-4V4h4v4zm6 12h-4v-4h4v4zm0-6h-4v-4h4v4zm0-6h-4V4h4v4z"},"children":[]}]};exports.ic_grid_on_twotone=ic_grid_on_twotone;var ic_hdr_enhanced_select={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6 2.69-6 6-6zm0 2C9.79 4 8 5.79 8 8s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm1 7h-2V9H9V7h2V5h2v2h2v2h-2v2zm11 9h-2v2h-1.5v-2h-2v-1.5h2v-2H22v2h2V20zm-6-1.5c0 .6-.4 1.1-.9 1.4L18 22h-1.5l-.9-2h-1.1v2H13v-6h3.5c.8 0 1.5.7 1.5 1.5v1zm-1.5 0v-1h-2v1h2zm-13-.5v-2H5v6H3.5v-2.5h-2V22H0v-6h1.5v2h2zm6.5-2c.8 0 1.5.7 1.5 1.5v3c0 .8-.7 1.5-1.5 1.5H6.5v-6H10zm0 4.5v-3H8v3h2z"},"children":[]}]};exports.ic_hdr_enhanced_select=ic_hdr_enhanced_select;var ic_hdr_off={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M17.5 15v-2h1.1l.9 2H21l-.9-2.1c.5-.2.9-.8.9-1.4v-1c0-.8-.7-1.5-1.5-1.5H16v4.9l1.1 1.1h.4zm0-4.5h2v1h-2v-1zm-4.5 0v.4l1.5 1.5v-1.9c0-.8-.7-1.5-1.5-1.5h-1.9l1.5 1.5h.4zm-3.5-1l-7-7-1.1 1L6.9 9h-.4v2h-2V9H3v6h1.5v-2.5h2V15H8v-4.9l1.5 1.5V15h3.4l7.6 7.6 1.1-1.1-12.1-12z"},"children":[]}]};exports.ic_hdr_off=ic_hdr_off;var ic_hdr_off_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17.5 15v-2h1.1l.9 2H21l-.9-2.1c.5-.3.9-.8.9-1.4v-1c0-.8-.7-1.5-1.5-1.5H16v4.86L17.14 15h.36zm0-4.5h2v1h-2v-1zm-4.5 0v.36l1.5 1.5V10.5c0-.8-.7-1.5-1.5-1.5h-1.86l1.5 1.5H13zM2.51 2.49L1.45 3.55 6.9 9h-.4v2h-2V9H3v6h1.5v-2.5h2V15H8v-4.9l1.5 1.5V15h3.4l7.6 7.6 1.06-1.06z"},"children":[]}]};exports.ic_hdr_off_outline=ic_hdr_off_outline;var ic_hdr_off_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17.5 15v-2h1.1l.9 2H21l-.9-2.1c.5-.3.9-.8.9-1.4v-1c0-.8-.7-1.5-1.5-1.5H16v4.86L17.14 15h.36zm0-4.5h2v1h-2v-1zm-4.5 0v.36l1.5 1.5V10.5c0-.8-.7-1.5-1.5-1.5h-1.86l1.5 1.5H13zM2.51 2.49L1.45 3.55 6.9 9h-.4v2h-2V9H3v6h1.5v-2.5h2V15H8v-4.9l1.5 1.5V15h3.4l7.6 7.6 1.06-1.06z"},"children":[]}]};exports.ic_hdr_off_twotone=ic_hdr_off_twotone;var ic_hdr_on={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 11.5v-1c0-.8-.7-1.5-1.5-1.5H16v6h1.5v-2h1.1l.9 2H21l-.9-2.1c.5-.3.9-.8.9-1.4zm-1.5 0h-2v-1h2v1zm-13-.5h-2V9H3v6h1.5v-2.5h2V15H8V9H6.5v2zM13 9H9.5v6H13c.8 0 1.5-.7 1.5-1.5v-3c0-.8-.7-1.5-1.5-1.5zm0 4.5h-2v-3h2v3z"},"children":[]}]};exports.ic_hdr_on=ic_hdr_on;var ic_hdr_on_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 11.5v-1c0-.8-.7-1.5-1.5-1.5H16v6h1.5v-2h1.1l.9 2H21l-.9-2.1c.5-.3.9-.8.9-1.4zm-1.5 0h-2v-1h2v1zm-13-.5h-2V9H3v6h1.5v-2.5h2V15H8V9H6.5v2zM13 9H9.5v6H13c.8 0 1.5-.7 1.5-1.5v-3c0-.8-.7-1.5-1.5-1.5zm0 4.5h-2v-3h2v3z"},"children":[]}]};exports.ic_hdr_on_outline=ic_hdr_on_outline;var ic_hdr_on_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13 9H9.5v6H13c.8 0 1.5-.7 1.5-1.5v-3c0-.8-.7-1.5-1.5-1.5zm0 4.5h-2v-3h2v3zm8-2v-1c0-.8-.7-1.5-1.5-1.5H16v6h1.5v-2h1.1l.9 2H21l-.9-2.1c.5-.3.9-.8.9-1.4zm-1.5 0h-2v-1h2v1zm-13-.5h-2V9H3v6h1.5v-2.5h2V15H8V9H6.5z"},"children":[]}]};exports.ic_hdr_on_twotone=ic_hdr_on_twotone;var ic_hdr_strong={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zM5 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"},"children":[]}]};exports.ic_hdr_strong=ic_hdr_strong;var ic_hdr_strong_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zM5 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"},"children":[]}]};exports.ic_hdr_strong_outline=ic_hdr_strong_outline;var ic_hdr_strong_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M17 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zM5 16c2.21 0 4-1.79 4-4S7.21 8 5 8s-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2z"},"children":[]}]};exports.ic_hdr_strong_twotone=ic_hdr_strong_twotone;var ic_hdr_weak={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm12-2c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z"},"children":[]}]};exports.ic_hdr_weak=ic_hdr_weak;var ic_hdr_weak_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm12-2c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z"},"children":[]}]};exports.ic_hdr_weak_outline=ic_hdr_weak_outline;var ic_hdr_weak_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z"},"children":[]},{"name":"circle","attribs":{"cx":"5","cy":"12","opacity":".3","r":"2"},"children":[]},{"name":"path","attribs":{"d":"M5 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"},"children":[]}]};exports.ic_hdr_weak_twotone=ic_hdr_weak_twotone;var ic_healing={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17.73 12.02l3.98-3.98c.39-.39.39-1.02 0-1.41l-4.34-4.34c-.39-.39-1.02-.39-1.41 0l-3.98 3.98L8 2.29C7.8 2.1 7.55 2 7.29 2c-.25 0-.51.1-.7.29L2.25 6.63c-.39.39-.39 1.02 0 1.41l3.98 3.98L2.25 16c-.39.39-.39 1.02 0 1.41l4.34 4.34c.39.39 1.02.39 1.41 0l3.98-3.98 3.98 3.98c.2.2.45.29.71.29.26 0 .51-.1.71-.29l4.34-4.34c.39-.39.39-1.02 0-1.41l-3.99-3.98zM12 9c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-4.71 1.96L3.66 7.34l3.63-3.63 3.62 3.62-3.62 3.63zM10 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2 2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm2.66 9.34l-3.63-3.62 3.63-3.63 3.62 3.62-3.62 3.63z"},"children":[]}]};exports.ic_healing=ic_healing;var ic_healing_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17.73 12.02l3.98-3.98c.39-.39.39-1.02 0-1.41l-4.34-4.34c-.39-.39-1.02-.39-1.41 0l-3.98 3.98L8 2.29C7.8 2.1 7.55 2 7.29 2c-.25 0-.51.1-.7.29L2.25 6.63c-.39.39-.39 1.02 0 1.41l3.98 3.98L2.25 16c-.39.39-.39 1.02 0 1.41l4.34 4.34c.39.39 1.02.39 1.41 0l3.98-3.98 3.98 3.98c.2.2.45.29.71.29.26 0 .51-.1.71-.29l4.34-4.34c.39-.39.39-1.02 0-1.41l-3.99-3.98zM12 9c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-4.71 1.96L3.66 7.34l3.63-3.63 3.62 3.62-3.62 3.63zM10 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2 2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm2.66 9.34l-3.63-3.62 3.63-3.63 3.62 3.62-3.62 3.63z"},"children":[]}]};exports.ic_healing_outline=ic_healing_outline;var ic_healing_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13.03 16.72l3.63 3.62 3.62-3.63-3.62-3.62zM7.29 3.71L3.66 7.34l3.63 3.62 3.62-3.63z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M17.73 12.02l3.98-3.98c.39-.39.39-1.02 0-1.41l-4.34-4.34c-.39-.39-1.02-.39-1.41 0l-3.98 3.98L8 2.29C7.8 2.1 7.55 2 7.29 2c-.25 0-.51.1-.7.29L2.25 6.63c-.39.39-.39 1.02 0 1.41l3.98 3.98L2.25 16c-.39.39-.39 1.02 0 1.41l4.34 4.34c.39.39 1.02.39 1.41 0l3.98-3.98 3.98 3.98c.2.2.45.29.71.29s.51-.1.71-.29l4.34-4.34c.39-.39.39-1.02 0-1.41l-3.99-3.98zM12 9c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-4.71 1.96L3.66 7.34l3.63-3.63 3.62 3.62-3.62 3.63zM10 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2 2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm2.66 9.34l-3.63-3.62 3.63-3.63 3.62 3.62-3.62 3.63z"},"children":[]}]};exports.ic_healing_twotone=ic_healing_twotone;var ic_image={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 19V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zM8.5 13.5l2.5 3.01L14.5 12l4.5 6H5l3.5-4.5z"},"children":[]}]};exports.ic_image=ic_image;var ic_image_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4.86 8.86l-3 3.87L9 13.14 6 17h12l-3.86-5.14z"},"children":[]}]};exports.ic_image_outline=ic_image_outline;var ic_image_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 19h14V5H5v14zm4-5.86l2.14 2.58 3-3.87L18 17H6l3-3.86z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-4.86-7.14l-3 3.86L9 13.14 6 17h12z"},"children":[]}]};exports.ic_image_twotone=ic_image_twotone;var ic_image_aspect_ratio={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16 10h-2v2h2v-2zm0 4h-2v2h2v-2zm-8-4H6v2h2v-2zm4 0h-2v2h2v-2zm8-6H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h16v12z"},"children":[]}]};exports.ic_image_aspect_ratio=ic_image_aspect_ratio;var ic_image_aspect_ratio_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16 10h-2v2h2v-2zm0 4h-2v2h2v-2zm-8-4H6v2h2v-2zm4 0h-2v2h2v-2zm8-6H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h16v12z"},"children":[]}]};exports.ic_image_aspect_ratio_outline=ic_image_aspect_ratio_outline;var ic_image_aspect_ratio_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 18h16V6H4v12zm10-8h2v2h-2v-2zm0 4h2v2h-2v-2zm-4-4h2v2h-2v-2zm-4 0h2v2H6v-2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M14 10h2v2h-2zm0 4h2v2h-2zm-8-4h2v2H6zm4 0h2v2h-2zm10-6H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h16v12z"},"children":[]}]};exports.ic_image_aspect_ratio_twotone=ic_image_aspect_ratio_twotone;var ic_image_not_supported={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M21.9,21.9l-8.49-8.49l0,0L3.59,3.59l0,0L2.1,2.1L0.69,3.51L3,5.83V19c0,1.1,0.9,2,2,2h13.17l2.31,2.31L21.9,21.9z M5,18 l3.5-4.5l2.5,3.01L12.17,15l3,3H5z M21,18.17L5.83,3H19c1.1,0,2,0.9,2,2V18.17z"},"children":[{"name":"path","attribs":{"d":"M21.9,21.9l-8.49-8.49l0,0L3.59,3.59l0,0L2.1,2.1L0.69,3.51L3,5.83V19c0,1.1,0.9,2,2,2h13.17l2.31,2.31L21.9,21.9z M5,18 l3.5-4.5l2.5,3.01L12.17,15l3,3H5z M21,18.17L5.83,3H19c1.1,0,2,0.9,2,2V18.17z"},"children":[]}]}]}]};exports.ic_image_not_supported=ic_image_not_supported;var ic_image_not_supported_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M21.9,21.9l-6.1-6.1l-2.69-2.69l0,0L5,5l0,0L3.59,3.59l0,0L2.1,2.1L0.69,3.51L3,5.83V19c0,1.1,0.9,2,2,2h13.17l2.31,2.31 L21.9,21.9z M5,19V7.83l6.84,6.84L11,15.72L9,13l-3,4h8.17l2,2H5z M7.83,5l-2-2H19c1.1,0,2,0.9,2,2v13.17l-2-2V5H7.83z"},"children":[{"name":"path","attribs":{"d":"M21.9,21.9l-6.1-6.1l-2.69-2.69l0,0L5,5l0,0L3.59,3.59l0,0L2.1,2.1L0.69,3.51L3,5.83V19c0,1.1,0.9,2,2,2h13.17l2.31,2.31 L21.9,21.9z M5,19V7.83l6.84,6.84L11,15.72L9,13l-3,4h8.17l2,2H5z M7.83,5l-2-2H19c1.1,0,2,0.9,2,2v13.17l-2-2V5H7.83z"},"children":[]}]}]}]};exports.ic_image_not_supported_outline=ic_image_not_supported_outline;var ic_image_not_supported_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M7.83,5H19v11.17L7.83,5z M16.17,19l-2-2H6l3-4l2,2.72l0.84-1.05L5,7.83V19H16.17z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M7.83,5H19v11.17L7.83,5z M16.17,19l-2-2H6l3-4l2,2.72l0.84-1.05L5,7.83V19H16.17z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M5.83,3H19c1.1,0,2,0.9,2,2v13.17l-2-2V5H7.83L5.83,3z M20.49,23.31L18.17,21H5c-1.1,0-2-0.9-2-2V5.83L0.69,3.51L2.1,2.1 l1.49,1.49L5,5l8.11,8.11l2.69,2.69L19,19l1.41,1.41l1.49,1.49L20.49,23.31z M16.17,19l-2-2H6l3-4l2,2.72l0.84-1.05L5,7.83V19 H16.17z"},"children":[{"name":"path","attribs":{"d":"M5.83,3H19c1.1,0,2,0.9,2,2v13.17l-2-2V5H7.83L5.83,3z M20.49,23.31L18.17,21H5c-1.1,0-2-0.9-2-2V5.83L0.69,3.51L2.1,2.1 l1.49,1.49L5,5l8.11,8.11l2.69,2.69L19,19l1.41,1.41l1.49,1.49L20.49,23.31z M16.17,19l-2-2H6l3-4l2,2.72l0.84-1.05L5,7.83V19 H16.17z"},"children":[]}]}]}]}]}]};exports.ic_image_not_supported_twotone=ic_image_not_supported_twotone;var ic_image_search={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 13v7H4V6h5.02c.05-.71.22-1.38.48-2H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-5l-2-2zm-1.5 5h-11l2.75-3.53 1.96 2.36 2.75-3.54zm2.8-9.11c.44-.7.7-1.51.7-2.39C20 4.01 17.99 2 15.5 2S11 4.01 11 6.5s2.01 4.5 4.49 4.5c.88 0 1.7-.26 2.39-.7L21 13.42 22.42 12 19.3 8.89zM15.5 9C14.12 9 13 7.88 13 6.5S14.12 4 15.5 4 18 5.12 18 6.5 16.88 9 15.5 9z"},"children":[]}]};exports.ic_image_search=ic_image_search;var ic_image_search_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 13v7H4V6h5.02c.05-.71.22-1.38.48-2H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-5l-2-2zm-1.5 5h-11l2.75-3.53 1.96 2.36 2.75-3.54L16.5 18zm2.8-9.11c.44-.7.7-1.51.7-2.39C20 4.01 17.99 2 15.5 2S11 4.01 11 6.5s2.01 4.5 4.49 4.5c.88 0 1.7-.26 2.39-.7L21 13.42 22.42 12 19.3 8.89zM15.5 9C14.12 9 13 7.88 13 6.5S14.12 4 15.5 4 18 5.12 18 6.5 16.88 9 15.5 9z"},"children":[]}]};exports.ic_image_search_outline=ic_image_search_outline;var ic_image_search_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17.7 11.53c-.7.31-1.45.47-2.21.47C12.46 12 10 9.53 10 6.5c0-.17.01-.34.03-.5H4v14h14v-8.17l-.3-.3zM5.5 18l2.75-3.53 1.96 2.36 2.75-3.54L16.5 18h-11z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M10.21 16.83l-1.96-2.36L5.5 18h11l-3.54-4.71zM20 6.5C20 4.01 17.99 2 15.5 2S11 4.01 11 6.5s2.01 4.5 4.49 4.5c.88 0 1.7-.26 2.39-.7L21 13.42 22.42 12 19.3 8.89c.44-.7.7-1.51.7-2.39zM15.5 9C14.12 9 13 7.88 13 6.5S14.12 4 15.5 4 18 5.12 18 6.5 16.88 9 15.5 9zM18 20H4V6h6.03c.06-.72.27-1.39.58-2H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-6.17l-2-2V20z"},"children":[]}]};exports.ic_image_search_twotone=ic_image_search_twotone;var ic_iso={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0zm0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5.5 7.5h2v-2H9v2h2V9H9v2H7.5V9h-2V7.5zM19 19H5L19 5v14zm-2-2v-1.5h-5V17h5z"},"children":[]}]};exports.ic_iso=ic_iso;var ic_iso_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5.5 7.5h2v-2H9v2h2V9H9v2H7.5V9h-2V7.5zM19 19H5L19 5v14zm-2-2v-1.5h-5V17h5z"},"children":[]}]};exports.ic_iso_outline=ic_iso_outline;var ic_iso_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 19V5L5 19h14zm-2-3.5V17h-5v-1.5h5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 15.5h5V17h-5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5.5 7.5h2v-2H9v2h2V9H9v2H7.5V9h-2V7.5zM19 19H5L19 5v14z"},"children":[]}]};exports.ic_iso_twotone=ic_iso_twotone;var ic_landscape={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14 6l-3.75 5 2.85 3.8-1.6 1.2C9.81 13.75 7 10 7 10l-6 8h22L14 6z"},"children":[]}]};exports.ic_landscape=ic_landscape;var ic_landscape_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14 6l-4.22 5.63 1.25 1.67L14 9.33 19 16h-8.46l-4.01-5.37L1 18h22L14 6zM5 16l1.52-2.03L8.04 16H5z"},"children":[]}]};exports.ic_landscape_outline=ic_landscape_outline;var ic_landscape_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 16h3.04l-1.52-2.03z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M9.78 11.63l1.25 1.67L14 9.33 19 16h-8.46l-4.01-5.37L1 18h22L14 6l-4.22 5.63zM5 16l1.52-2.03L8.04 16H5z"},"children":[]}]};exports.ic_landscape_twotone=ic_landscape_twotone;var ic_leak_add={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6 3H3v3c1.66 0 3-1.34 3-3zm8 0h-2c0 4.97-4.03 9-9 9v2c6.08 0 11-4.93 11-11zm-4 0H8c0 2.76-2.24 5-5 5v2c3.87 0 7-3.13 7-7zm0 18h2c0-4.97 4.03-9 9-9v-2c-6.07 0-11 4.93-11 11zm8 0h3v-3c-1.66 0-3 1.34-3 3zm-4 0h2c0-2.76 2.24-5 5-5v-2c-3.87 0-7 3.13-7 7z"},"children":[]}]};exports.ic_leak_add=ic_leak_add;var ic_leak_add_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6 3H3v3c1.66 0 3-1.34 3-3zm8 0h-2c0 4.97-4.03 9-9 9v2c6.08 0 11-4.93 11-11zm-4 0H8c0 2.76-2.24 5-5 5v2c3.87 0 7-3.13 7-7zm0 18h2c0-4.97 4.03-9 9-9v-2c-6.07 0-11 4.93-11 11zm8 0h3v-3c-1.66 0-3 1.34-3 3zm-4 0h2c0-2.76 2.24-5 5-5v-2c-3.87 0-7 3.13-7 7z"},"children":[]}]};exports.ic_leak_add_outline=ic_leak_add_outline;var ic_leak_add_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 21h3v-3c-1.66 0-3 1.34-3 3zM3 14c6.08 0 11-4.93 11-11h-2c0 4.97-4.03 9-9 9v2zm11 7h2c0-2.76 2.24-5 5-5v-2c-3.87 0-7 3.13-7 7zM3 10c3.87 0 7-3.13 7-7H8c0 2.76-2.24 5-5 5v2zm7 11h2c0-4.97 4.03-9 9-9v-2c-6.07 0-11 4.93-11 11zM3 3v3c1.66 0 3-1.34 3-3H3z"},"children":[]}]};exports.ic_leak_add_twotone=ic_leak_add_twotone;var ic_leak_remove={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 3H8c0 .37-.04.72-.12 1.06l1.59 1.59C9.81 4.84 10 3.94 10 3zM3 4.27l2.84 2.84C5.03 7.67 4.06 8 3 8v2c1.61 0 3.09-.55 4.27-1.46L8.7 9.97C7.14 11.24 5.16 12 3 12v2c2.71 0 5.19-.99 7.11-2.62l2.5 2.5C10.99 15.81 10 18.29 10 21h2c0-2.16.76-4.14 2.03-5.69l1.43 1.43C14.55 17.91 14 19.39 14 21h2c0-1.06.33-2.03.89-2.84L19.73 21 21 19.73 4.27 3 3 4.27zM14 3h-2c0 1.5-.37 2.91-1.02 4.16l1.46 1.46C13.42 6.98 14 5.06 14 3zm5.94 13.12c.34-.08.69-.12 1.06-.12v-2c-.94 0-1.84.19-2.66.52l1.6 1.6zm-4.56-4.56l1.46 1.46C18.09 12.37 19.5 12 21 12v-2c-2.06 0-3.98.58-5.62 1.56z"},"children":[]}]};exports.ic_leak_remove=ic_leak_remove;var ic_leak_remove_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14 3h-2c0 1.35-.31 2.63-.84 3.77l1.49 1.49C13.51 6.7 14 4.91 14 3zm7 9v-2c-1.91 0-3.7.49-5.27 1.35l1.49 1.49c1.15-.53 2.43-.84 3.78-.84zm0 4v-2c-.79 0-1.54.13-2.24.37l1.68 1.68c.19-.01.37-.05.56-.05zM10 3H8c0 .19-.04.37-.06.56l1.68 1.68c.25-.7.38-1.46.38-2.24zm-5.59-.14L3 4.27l2.84 2.84C5.03 7.67 4.06 8 3 8v2c1.61 0 3.09-.55 4.27-1.46L8.7 9.97C7.14 11.24 5.16 12 3 12v2c2.72 0 5.2-.99 7.11-2.62l2.51 2.51C10.99 15.81 10 18.29 10 21h2c0-2.16.76-4.14 2.03-5.7l1.43 1.43C14.55 17.91 14 19.39 14 21h2c0-1.06.33-2.03.89-2.84L19.73 21l1.41-1.41L4.41 2.86z"},"children":[]}]};exports.ic_leak_remove_outline=ic_leak_remove_outline;var ic_leak_remove_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14 3h-2c0 1.35-.31 2.63-.84 3.77l1.49 1.49C13.51 6.7 14 4.91 14 3zm7 9v-2c-1.91 0-3.7.49-5.27 1.35l1.49 1.49c1.15-.53 2.43-.84 3.78-.84zm0 4v-2c-.79 0-1.54.13-2.24.37l1.68 1.68c.19-.01.37-.05.56-.05zM10 3H8c0 .19-.04.37-.06.56l1.68 1.68c.25-.7.38-1.46.38-2.24zm-5.59-.14L3 4.27l2.84 2.84C5.03 7.67 4.06 8 3 8v2c1.61 0 3.09-.55 4.27-1.46L8.7 9.97C7.14 11.24 5.16 12 3 12v2c2.72 0 5.2-.99 7.11-2.62l2.51 2.51C10.99 15.81 10 18.29 10 21h2c0-2.16.76-4.14 2.03-5.7l1.43 1.43C14.55 17.91 14 19.39 14 21h2c0-1.06.33-2.03.89-2.84L19.73 21l1.41-1.41L4.41 2.86z"},"children":[]}]};exports.ic_leak_remove_twotone=ic_leak_remove_twotone;var ic_lens={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z"},"children":[]}]};exports.ic_lens=ic_lens;var ic_lens_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 4c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8m0-2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z"},"children":[]}]};exports.ic_lens_outline=ic_lens_outline;var ic_lens_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"},"children":[]}]};exports.ic_lens_twotone=ic_lens_twotone;var ic_linked_camera={"viewBox":"0 0 24 24","children":[{"name":"circle","attribs":{"cx":"12","cy":"14","r":"3.2"},"children":[]},{"name":"circle","attribs":{"cx":"12","cy":"14","fill":"none","r":"5"},"children":[]},{"name":"path","attribs":{"d":"M16 3.33c2.58 0 4.67 2.09 4.67 4.67H22c0-3.31-2.69-6-6-6v1.33M16 6c1.11 0 2 .89 2 2h1.33c0-1.84-1.49-3.33-3.33-3.33V6"},"children":[]},{"name":"path","attribs":{"d":"M24 0H0v24h24V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 9c0-1.11-.89-2-2-2V4H9L7.17 6H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V9h-5zm-5 10c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z"},"children":[]}]};exports.ic_linked_camera=ic_linked_camera;var ic_linked_camera_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 9v11H4V8h4.05l1.83-2H15V4H9L7.17 6H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V9h-2zm.67-1.01H22C21.99 4.68 19.31 2 16 2v1.33c2.58 0 4.66 2.08 4.67 4.66zm-2.67 0h1.33c-.01-1.84-1.49-3.32-3.33-3.32V6c1.11 0 1.99.89 2 1.99zM7 14c0 2.76 2.24 5 5 5s5-2.24 5-5-2.24-5-5-5-5 2.24-5 5zm8 0c0 1.65-1.35 3-3 3s-3-1.35-3-3 1.35-3 3-3 3 1.34 3 3z"},"children":[]}]};exports.ic_linked_camera_outline=ic_linked_camera_outline;var ic_linked_camera_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 20H4V8h4.05l1.83-2H15V4H9L7.17 6H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V9h-2v11zM16 2v1.33c2.58 0 4.66 2.09 4.67 4.66H22C21.99 4.68 19.31 2 16 2zm0 2.67V6c1.11 0 1.99.89 2 1.99h1.33c-.01-1.84-1.49-3.32-3.33-3.32z"},"children":[]},{"name":"path","attribs":{"d":"M14.98 10.01c-.13-.09-.26-.18-.39-.26.14.08.27.17.39.26zM17 9c0-.37-.11-.71-.28-1.01-.18-.3-.43-.55-.73-.72C15.7 7.1 15.36 7 15 7V6H9.88L8.05 8H4v12h16V9h-3zm-5 10c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 9c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3z"},"children":[]}]};exports.ic_linked_camera_twotone=ic_linked_camera_twotone;var ic_looks={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 10c-3.86 0-7 3.14-7 7h2c0-2.76 2.24-5 5-5s5 2.24 5 5h2c0-3.86-3.14-7-7-7zm0-4C5.93 6 1 10.93 1 17h2c0-4.96 4.04-9 9-9s9 4.04 9 9h2c0-6.07-4.93-11-11-11z"},"children":[]}]};exports.ic_looks=ic_looks;var ic_looks_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 10c-3.86 0-7 3.14-7 7h2c0-2.76 2.24-5 5-5s5 2.24 5 5h2c0-3.86-3.14-7-7-7zm0-4C5.93 6 1 10.93 1 17h2c0-4.96 4.04-9 9-9s9 4.04 9 9h2c0-6.07-4.93-11-11-11z"},"children":[]}]};exports.ic_looks_outline=ic_looks_outline;var ic_looks_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 6C5.93 6 1 10.93 1 17h2c0-4.96 4.04-9 9-9s9 4.04 9 9h2c0-6.07-4.93-11-11-11zm0 6c2.76 0 5 2.24 5 5h2c0-3.86-3.14-7-7-7s-7 3.14-7 7h2c0-2.76 2.24-5 5-5z"},"children":[]}]};exports.ic_looks_twotone=ic_looks_twotone;var ic_looks_3={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M.01 0h24v24h-24z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19.01 3h-14c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4 7.5c0 .83-.67 1.5-1.5 1.5.83 0 1.5.67 1.5 1.5V15c0 1.11-.9 2-2 2h-4v-2h4v-2h-2v-2h2V9h-4V7h4c1.1 0 2 .89 2 2v1.5z"},"children":[]}]};exports.ic_looks_3=ic_looks_3;var ic_looks_3_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-4-4v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V9c0-1.11-.9-2-2-2H9v2h4v2h-2v2h2v2H9v2h4c1.1 0 2-.89 2-2z"},"children":[]}]};exports.ic_looks_3_outline=ic_looks_3_outline;var ic_looks_3_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 19h14V5H5v14zm4-4h4v-2h-2v-2h2V9H9V7h4c1.1 0 2 .89 2 2v1.5c0 .83-.67 1.5-1.5 1.5.83 0 1.5.67 1.5 1.5V15c0 1.11-.9 2-2 2H9v-2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-4-4v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V9c0-1.11-.9-2-2-2H9v2h4v2h-2v2h2v2H9v2h4c1.1 0 2-.89 2-2z"},"children":[]}]};exports.ic_looks_3_twotone=ic_looks_3_twotone;var ic_looks_4={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4 14h-2v-4H9V7h2v4h2V7h2v10z"},"children":[]}]};exports.ic_looks_4=ic_looks_4;var ic_looks_4_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M.04 0h24v24h-24V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19.04 3h-14c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16h-14V5h14v14zm-6-2h2V7h-2v4h-2V7h-2v6h4z"},"children":[]}]};exports.ic_looks_4_outline=ic_looks_4_outline;var ic_looks_4_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M.04 0h24v24h-24V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5.04 19h14V5h-14v14zm4-12h2v4h2V7h2v10h-2v-4h-4V7z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M19.04 3h-14c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16h-14V5h14v14zm-6-2h2V7h-2v4h-2V7h-2v6h4z"},"children":[]}]};exports.ic_looks_4_twotone=ic_looks_4_twotone;var ic_looks_5={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4 6h-4v2h2c1.1 0 2 .89 2 2v2c0 1.11-.9 2-2 2H9v-2h4v-2H9V7h6v2z"},"children":[]}]};exports.ic_looks_5=ic_looks_5;var ic_looks_5_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-4-4v-2c0-1.11-.9-2-2-2h-2V9h4V7H9v6h4v2H9v2h4c1.1 0 2-.89 2-2z"},"children":[]}]};exports.ic_looks_5_outline=ic_looks_5_outline;var ic_looks_5_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 5H5v14h14V5zm-4 4h-4v2h2c1.1 0 2 .89 2 2v2c0 1.11-.9 2-2 2H9v-2h4v-2H9V7h6v2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M5 21h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2zM5 5h14v14H5V5zm4 8h4v2H9v2h4c1.1 0 2-.89 2-2v-2c0-1.11-.9-2-2-2h-2V9h4V7H9v6z"},"children":[]}]};exports.ic_looks_5_twotone=ic_looks_5_twotone;var ic_looks_6={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11 15h2v-2h-2v2zm8-12H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4 6h-4v2h2c1.1 0 2 .89 2 2v2c0 1.11-.9 2-2 2h-2c-1.1 0-2-.89-2-2V9c0-1.11.9-2 2-2h4v2z"},"children":[]}]};exports.ic_looks_6=ic_looks_6;var ic_looks_6_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11 17h2c1.1 0 2-.89 2-2v-2c0-1.11-.9-2-2-2h-2V9h4V7h-4c-1.1 0-2 .89-2 2v6c0 1.11.9 2 2 2zm0-4h2v2h-2v-2zm8-10H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z"},"children":[]}]};exports.ic_looks_6_outline=ic_looks_6_outline;var ic_looks_6_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11 13h2v2h-2zm8-8H5v14h14V5zm-4 4h-4v2h2c1.1 0 2 .89 2 2v2c0 1.11-.9 2-2 2h-2c-1.1 0-2-.89-2-2V9c0-1.11.9-2 2-2h4v2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M9 9v6c0 1.11.9 2 2 2h2c1.1 0 2-.89 2-2v-2c0-1.11-.9-2-2-2h-2V9h4V7h-4c-1.1 0-2 .89-2 2zm4 4v2h-2v-2h2zm-8 8h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2zM5 5h14v14H5V5z"},"children":[]}]};exports.ic_looks_6_twotone=ic_looks_6_twotone;var ic_looks_one={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-5 14h-2V9h-2V7h4v10z"},"children":[]}]};exports.ic_looks_one=ic_looks_one;var ic_looks_one_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-7-2h2V7h-4v2h2z"},"children":[]}]};exports.ic_looks_one_outline=ic_looks_one_outline;var ic_looks_one_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 5H5v14h14V5zm-5 12h-2V9h-2V7h4v10z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M5 21h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2zM5 5h14v14H5V5zm5 4h2v8h2V7h-4z"},"children":[]}]};exports.ic_looks_one_twotone=ic_looks_one_twotone;var ic_looks_two={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4 8c0 1.11-.9 2-2 2h-2v2h4v2H9v-4c0-1.11.9-2 2-2h2V9H9V7h4c1.1 0 2 .89 2 2v2z"},"children":[]}]};exports.ic_looks_two=ic_looks_two;var ic_looks_two_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-4-4h-4v-2h2c1.1 0 2-.89 2-2V9c0-1.11-.9-2-2-2H9v2h4v2h-2c-1.1 0-2 .89-2 2v4h6v-2z"},"children":[]}]};exports.ic_looks_two_outline=ic_looks_two_outline;var ic_looks_two_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 5H5v14h14V5zm-4 6c0 1.11-.9 2-2 2h-2v2h4v2H9v-4c0-1.11.9-2 2-2h2V9H9V7h4c1.1 0 2 .89 2 2v2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M5 21h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2zM5 5h14v14H5V5zm8 2H9v2h4v2h-2c-1.1 0-2 .89-2 2v4h6v-2h-4v-2h2c1.1 0 2-.89 2-2V9c0-1.11-.9-2-2-2z"},"children":[]}]};exports.ic_looks_two_twotone=ic_looks_two_twotone;var ic_loupe={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.49 2 2 6.49 2 12s4.49 10 10 10h8c1.1 0 2-.9 2-2v-8c0-5.51-4.49-10-10-10zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"},"children":[]}]};exports.ic_loupe=ic_loupe;var ic_loupe_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.49 2 2 6.49 2 12s4.49 10 10 10h8c1.1 0 2-.9 2-2v-8c0-5.51-4.49-10-10-10zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"},"children":[]}]};exports.ic_loupe_outline=ic_loupe_outline;var ic_loupe_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 20c4.41 0 8-3.59 8-8s-3.59-8-8-8-8 3.59-8 8 3.59 8 8 8zm-5-9h4V7h2v4h4v2h-4v4h-2v-4H7v-2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M11 17h2v-4h4v-2h-4V7h-2v4H7v2h4zm1 5h8c1.1 0 2-.9 2-2v-8c0-5.51-4.49-10-10-10S2 6.49 2 12s4.49 10 10 10zm0-18c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8z"},"children":[]}]};exports.ic_loupe_twotone=ic_loupe_twotone;var ic_mic_external_off={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21.19 21.19L2.81 2.81 1.39 4.22 5.17 8H4l1 10h1c0 2.21 1.79 4 4 4s4-1.79 4-4v-1.17l5.78 5.78 1.41-1.42zM12 18c0 1.1-.9 2-2 2s-2-.9-2-2h1l.56-5.61L12 14.83V18zm2-12v5.17l-2-2V6c0-2.21 1.79-4 4-4s4 1.79 4 4v11.17l-2-2V6c0-1.1-.9-2-2-2s-2 .9-2 2zm-4-1c0 .62-.2 1.18-.52 1.66L5.33 2.51C5.81 2.19 6.38 2 7 2c1.66 0 3 1.34 3 3z"},"children":[]}]};exports.ic_mic_external_off=ic_mic_external_off;var ic_mic_external_on={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9.22 7H4.78C4.3 6.47 4 5.77 4 5c0-1.66 1.34-3 3-3s3 1.34 3 3c0 .77-.3 1.47-.78 2zM16 2c2.21 0 4 1.79 4 4v16h-2V6c0-1.1-.9-2-2-2s-2 .9-2 2v12c0 2.21-1.79 4-4 4s-4-1.79-4-4H5L4 8h6L9 18H8c0 1.1.9 2 2 2s2-.9 2-2V6c0-2.21 1.79-4 4-4z"},"children":[]}]};exports.ic_mic_external_on=ic_mic_external_on;var ic_monochrome_photos={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M-74 29h48v48h-48V29z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 5h-3.2L15 3H9L7.2 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 14h-8v-1c-2.8 0-5-2.2-5-5s2.2-5 5-5V7h8v12zm-3-6c0-2.8-2.2-5-5-5v1.8c1.8 0 3.2 1.4 3.2 3.2s-1.4 3.2-3.2 3.2V18c2.8 0 5-2.2 5-5zm-8.2 0c0 1.8 1.4 3.2 3.2 3.2V9.8c-1.8 0-3.2 1.4-3.2 3.2z"},"children":[]}]};exports.ic_monochrome_photos=ic_monochrome_photos;var ic_monochrome_photos_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 5h-3.2L15 3H9L7.2 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 14h-8v-1c-2.8 0-5-2.2-5-5s2.2-5 5-5V7h8v12zm-3-6c0-2.8-2.2-5-5-5v1.8c1.8 0 3.2 1.4 3.2 3.2s-1.4 3.2-3.2 3.2V18c2.8 0 5-2.2 5-5zm-8.2 0c0 1.8 1.4 3.2 3.2 3.2V9.8c-1.8 0-3.2 1.4-3.2 3.2z"},"children":[]}]};exports.ic_monochrome_photos_outline=ic_monochrome_photos_outline;var ic_monochrome_photos_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 18v-1.8c-1.8 0-3.2-1.4-3.2-3.2s1.4-3.2 3.2-3.2V8c-2.8 0-5 2.2-5 5s2.2 5 5 5zm5-5c0 2.8-2.2 5-5 5v1h8V7h-8v1c2.8 0 5 2.2 5 5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M4 21h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2h-3.2L15 3H9L7.2 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2zm8-13V7h8v12h-8v-1c-2.8 0-5-2.2-5-5s2.2-5 5-5zm3.2 5c0 1.8-1.4 3.2-3.2 3.2V18c2.8 0 5-2.2 5-5s-2.2-5-5-5v1.8c1.8 0 3.2 1.4 3.2 3.2zm-6.4 0c0 1.8 1.4 3.2 3.2 3.2V9.8c-1.8 0-3.2 1.4-3.2 3.2z"},"children":[]}]};exports.ic_monochrome_photos_twotone=ic_monochrome_photos_twotone;var ic_motion_photos_off={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20.84 20.84L3.16 3.16 1.89 4.43l1.89 1.89C2.66 7.93 2 9.89 2 12c0 5.52 4.48 10 10 10 2.11 0 4.07-.66 5.68-1.77l1.89 1.89 1.27-1.28zM12 20c-4.41 0-8-3.59-8-8 0-1.55.45-3 1.22-4.23l1.46 1.46C6.25 10.06 6 11 6 12c0 3.31 2.69 6 6 6 1 0 1.94-.25 2.77-.68l1.46 1.46C15 19.55 13.55 20 12 20zM6.32 3.77C7.93 2.66 9.89 2 12 2c5.52 0 10 4.48 10 10 0 2.11-.66 4.07-1.77 5.68l-1.45-1.45C19.55 15 20 13.55 20 12c0-4.41-3.59-8-8-8-1.55 0-3 .45-4.23 1.22L6.32 3.77zM18 12c0 1-.25 1.94-.68 2.77L9.23 6.68C10.06 6.25 11 6 12 6c3.31 0 6 2.69 6 6z"},"children":[]}]};exports.ic_motion_photos_off=ic_motion_photos_off;var ic_motion_photos_on={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0","y":"0"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0","y":"0"},"children":[]}]},{"name":"path","attribs":{"d":"M10,16.5v-9l6,4.5L10,16.5z M22,12c0,5.52-4.48,10-10,10S2,17.52,2,12c0-1.19,0.22-2.32,0.6-3.38L4.48,9.3 C4.17,10.14,4,11.05,4,12c0,4.41,3.59,8,8,8s8-3.59,8-8s-3.59-8-8-8c-0.95,0-1.85,0.17-2.69,0.48L8.63,2.59C9.69,2.22,10.82,2,12,2 C17.52,2,22,6.48,22,12z M5.5,4C4.67,4,4,4.67,4,5.5S4.67,7,5.5,7S7,6.33,7,5.5S6.33,4,5.5,4z"},"children":[{"name":"path","attribs":{"d":"M10,16.5v-9l6,4.5L10,16.5z M22,12c0,5.52-4.48,10-10,10S2,17.52,2,12c0-1.19,0.22-2.32,0.6-3.38L4.48,9.3 C4.17,10.14,4,11.05,4,12c0,4.41,3.59,8,8,8s8-3.59,8-8s-3.59-8-8-8c-0.95,0-1.85,0.17-2.69,0.48L8.63,2.59C9.69,2.22,10.82,2,12,2 C17.52,2,22,6.48,22,12z M5.5,4C4.67,4,4,4.67,4,5.5S4.67,7,5.5,7S7,6.33,7,5.5S6.33,4,5.5,4z"},"children":[]}]}]}]};exports.ic_motion_photos_on=ic_motion_photos_on;var ic_motion_photos_on_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0","y":"0"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0","y":"0"},"children":[]}]},{"name":"path","attribs":{"d":"M10,16.5v-9l6,4.5L10,16.5z M22,12c0,5.52-4.48,10-10,10S2,17.52,2,12c0-1.19,0.22-2.32,0.6-3.38L4.48,9.3 C4.17,10.14,4,11.05,4,12c0,4.41,3.59,8,8,8s8-3.59,8-8s-3.59-8-8-8c-0.95,0-1.85,0.17-2.69,0.48L8.63,2.59C9.69,2.22,10.82,2,12,2 C17.52,2,22,6.48,22,12z M5.5,4C4.67,4,4,4.67,4,5.5S4.67,7,5.5,7S7,6.33,7,5.5S6.33,4,5.5,4z"},"children":[{"name":"path","attribs":{"d":"M10,16.5v-9l6,4.5L10,16.5z M22,12c0,5.52-4.48,10-10,10S2,17.52,2,12c0-1.19,0.22-2.32,0.6-3.38L4.48,9.3 C4.17,10.14,4,11.05,4,12c0,4.41,3.59,8,8,8s8-3.59,8-8s-3.59-8-8-8c-0.95,0-1.85,0.17-2.69,0.48L8.63,2.59C9.69,2.22,10.82,2,12,2 C17.52,2,22,6.48,22,12z M5.5,4C4.67,4,4,4.67,4,5.5S4.67,7,5.5,7S7,6.33,7,5.5S6.33,4,5.5,4z"},"children":[]}]}]}]};exports.ic_motion_photos_on_outline=ic_motion_photos_on_outline;var ic_motion_photos_on_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0","y":"0"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0","y":"0"},"children":[]}]},{"name":"path","attribs":{"d":"M10,16.5v-9l6,4.5L10,16.5z M22,12c0,5.52-4.48,10-10,10S2,17.52,2,12c0-1.19,0.22-2.32,0.6-3.38L4.48,9.3 C4.17,10.14,4,11.05,4,12c0,4.41,3.59,8,8,8s8-3.59,8-8s-3.59-8-8-8c-0.95,0-1.85,0.17-2.69,0.48L8.63,2.59C9.69,2.22,10.82,2,12,2 C17.52,2,22,6.48,22,12z M5.5,4C4.67,4,4,4.67,4,5.5S4.67,7,5.5,7S7,6.33,7,5.5S6.33,4,5.5,4z"},"children":[{"name":"path","attribs":{"d":"M10,16.5v-9l6,4.5L10,16.5z M22,12c0,5.52-4.48,10-10,10S2,17.52,2,12c0-1.19,0.22-2.32,0.6-3.38L4.48,9.3 C4.17,10.14,4,11.05,4,12c0,4.41,3.59,8,8,8s8-3.59,8-8s-3.59-8-8-8c-0.95,0-1.85,0.17-2.69,0.48L8.63,2.59C9.69,2.22,10.82,2,12,2 C17.52,2,22,6.48,22,12z M5.5,4C4.67,4,4,4.67,4,5.5S4.67,7,5.5,7S7,6.33,7,5.5S6.33,4,5.5,4z"},"children":[]}]}]}]};exports.ic_motion_photos_on_twotone=ic_motion_photos_on_twotone;var ic_motion_photos_pause={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M22,12c0,5.52-4.48,10-10,10S2,17.52,2,12c0-1.19,0.22-2.32,0.6-3.38L4.48,9.3C4.17,10.14,4,11.05,4,12c0,4.41,3.59,8,8,8 s8-3.59,8-8s-3.59-8-8-8c-0.95,0-1.85,0.17-2.69,0.48L8.63,2.59C9.69,2.22,10.82,2,12,2C17.52,2,22,6.48,22,12z M5.5,4 C4.67,4,4,4.67,4,5.5S4.67,7,5.5,7S7,6.33,7,5.5S6.33,4,5.5,4z M18,12c0,3.31-2.69,6-6,6s-6-2.69-6-6s2.69-6,6-6S18,8.69,18,12z M11,9H9v6h2V9z M15,9h-2v6h2V9z"},"children":[]}]};exports.ic_motion_photos_pause=ic_motion_photos_pause;var ic_motion_photos_pause_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M22,12c0,5.52-4.48,10-10,10S2,17.52,2,12c0-1.19,0.22-2.32,0.6-3.38L4.48,9.3C4.17,10.14,4,11.05,4,12c0,4.41,3.59,8,8,8 s8-3.59,8-8s-3.59-8-8-8c-0.95,0-1.85,0.17-2.69,0.48L8.63,2.59C9.69,2.22,10.82,2,12,2C17.52,2,22,6.48,22,12z M5.5,7 C6.33,7,7,6.33,7,5.5S6.33,4,5.5,4S4,4.67,4,5.5S4.67,7,5.5,7z M9,9v6h2V9H9z M13,9v6h2V9H13z"},"children":[]}]};exports.ic_motion_photos_pause_outline=ic_motion_photos_pause_outline;var ic_motion_photos_pause_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M22,12c0,5.52-4.48,10-10,10S2,17.52,2,12c0-1.19,0.22-2.32,0.6-3.38L4.48,9.3C4.17,10.14,4,11.05,4,12c0,4.41,3.59,8,8,8 s8-3.59,8-8s-3.59-8-8-8c-0.95,0-1.85,0.17-2.69,0.48L8.63,2.59C9.69,2.22,10.82,2,12,2C17.52,2,22,6.48,22,12z M5.5,7 C6.33,7,7,6.33,7,5.5S6.33,4,5.5,4S4,4.67,4,5.5S4.67,7,5.5,7z M9,9v6h2V9H9z M13,9v6h2V9H13z"},"children":[]}]};exports.ic_motion_photos_pause_twotone=ic_motion_photos_pause_twotone;var ic_motion_photos_paused={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M22,12c0,5.52-4.48,10-10,10S2,17.52,2,12c0-1.19,0.22-2.32,0.6-3.38L4.48,9.3C4.17,10.14,4,11.05,4,12c0,4.41,3.59,8,8,8 s8-3.59,8-8s-3.59-8-8-8c-0.95,0-1.85,0.17-2.69,0.48L8.63,2.59C9.69,2.22,10.82,2,12,2C17.52,2,22,6.48,22,12z M5.5,4 C4.67,4,4,4.67,4,5.5S4.67,7,5.5,7S7,6.33,7,5.5S6.33,4,5.5,4z M11,16V8H9v8H11z M15,16V8h-2v8H15z"},"children":[{"name":"path","attribs":{"d":"M22,12c0,5.52-4.48,10-10,10S2,17.52,2,12c0-1.19,0.22-2.32,0.6-3.38L4.48,9.3C4.17,10.14,4,11.05,4,12c0,4.41,3.59,8,8,8 s8-3.59,8-8s-3.59-8-8-8c-0.95,0-1.85,0.17-2.69,0.48L8.63,2.59C9.69,2.22,10.82,2,12,2C17.52,2,22,6.48,22,12z M5.5,4 C4.67,4,4,4.67,4,5.5S4.67,7,5.5,7S7,6.33,7,5.5S6.33,4,5.5,4z M11,16V8H9v8H11z M15,16V8h-2v8H15z"},"children":[]}]}]}]};exports.ic_motion_photos_paused=ic_motion_photos_paused;var ic_motion_photos_paused_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M22,12c0,5.52-4.48,10-10,10S2,17.52,2,12c0-1.19,0.22-2.32,0.6-3.38L4.48,9.3C4.17,10.14,4,11.05,4,12c0,4.41,3.59,8,8,8 s8-3.59,8-8s-3.59-8-8-8c-0.95,0-1.85,0.17-2.69,0.48L8.63,2.59C9.69,2.22,10.82,2,12,2C17.52,2,22,6.48,22,12z M5.5,4 C4.67,4,4,4.67,4,5.5S4.67,7,5.5,7S7,6.33,7,5.5S6.33,4,5.5,4z M11,16V8H9v8H11z M15,16V8h-2v8H15z"},"children":[{"name":"path","attribs":{"d":"M22,12c0,5.52-4.48,10-10,10S2,17.52,2,12c0-1.19,0.22-2.32,0.6-3.38L4.48,9.3C4.17,10.14,4,11.05,4,12c0,4.41,3.59,8,8,8 s8-3.59,8-8s-3.59-8-8-8c-0.95,0-1.85,0.17-2.69,0.48L8.63,2.59C9.69,2.22,10.82,2,12,2C17.52,2,22,6.48,22,12z M5.5,4 C4.67,4,4,4.67,4,5.5S4.67,7,5.5,7S7,6.33,7,5.5S6.33,4,5.5,4z M11,16V8H9v8H11z M15,16V8h-2v8H15z"},"children":[]}]}]}]};exports.ic_motion_photos_paused_outline=ic_motion_photos_paused_outline;var ic_motion_photos_paused_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M22,12c0,5.52-4.48,10-10,10S2,17.52,2,12c0-1.19,0.22-2.32,0.6-3.38L4.48,9.3C4.17,10.14,4,11.05,4,12c0,4.41,3.59,8,8,8 s8-3.59,8-8s-3.59-8-8-8c-0.95,0-1.85,0.17-2.69,0.48L8.63,2.59C9.69,2.22,10.82,2,12,2C17.52,2,22,6.48,22,12z M5.5,4 C4.67,4,4,4.67,4,5.5S4.67,7,5.5,7S7,6.33,7,5.5S6.33,4,5.5,4z M11,16V8H9v8H11z M15,16V8h-2v8H15z"},"children":[{"name":"path","attribs":{"d":"M22,12c0,5.52-4.48,10-10,10S2,17.52,2,12c0-1.19,0.22-2.32,0.6-3.38L4.48,9.3C4.17,10.14,4,11.05,4,12c0,4.41,3.59,8,8,8 s8-3.59,8-8s-3.59-8-8-8c-0.95,0-1.85,0.17-2.69,0.48L8.63,2.59C9.69,2.22,10.82,2,12,2C17.52,2,22,6.48,22,12z M5.5,4 C4.67,4,4,4.67,4,5.5S4.67,7,5.5,7S7,6.33,7,5.5S6.33,4,5.5,4z M11,16V8H9v8H11z M15,16V8h-2v8H15z"},"children":[]}]}]}]};exports.ic_motion_photos_paused_twotone=ic_motion_photos_paused_twotone;var ic_movie_creation={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 4l2 4h-3l-2-4h-2l2 4h-3l-2-4H8l2 4H7L5 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4h-4z"},"children":[]}]};exports.ic_movie_creation=ic_movie_creation;var ic_movie_creation_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5.76 10H20v8H4V6.47M22 4h-4l2 4h-3l-2-4h-2l2 4h-3l-2-4H8l2 4H7L5 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4z"},"children":[]}]};exports.ic_movie_creation_outline=ic_movie_creation_outline;var ic_movie_creation_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 6.47V18h16v-8H5.76z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M18 4l2 4h-3l-2-4h-2l2 4h-3l-2-4H8l2 4H7L5 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4h-4zm2 14H4V6.47L5.76 10H20v8z"},"children":[]}]};exports.ic_movie_creation_twotone=ic_movie_creation_twotone;var ic_movie_filter={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 4l2 3h-3l-2-3h-2l2 3h-3l-2-3H8l2 3H7L5 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4h-4zm-6.75 11.25L10 18l-1.25-2.75L6 14l2.75-1.25L10 10l1.25 2.75L14 14l-2.75 1.25zm5.69-3.31L16 14l-.94-2.06L13 11l2.06-.94L16 8l.94 2.06L19 11l-2.06.94z"},"children":[]}]};exports.ic_movie_filter=ic_movie_filter;var ic_movie_filter_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 11l-.94 2.06L7 14l2.06.94L10 17l.94-2.06L13 14l-2.06-.94zm8.01-7l2 4h-3l-2-4h-2l2 4h-3l-2-4h-2l2 4h-3l-2-4h-1c-1.1 0-1.99.9-1.99 2l-.01 12c0 1.1.9 2 2 2h16c1.1 0 1.99-.9 1.99-2V4h-3.99zm2 14h-16V6.47L5.77 10H16l-.63 1.37L14 12l1.37.63L16 14l.63-1.37L18 12l-1.37-.63L16 10h4.01v8z"},"children":[]}]};exports.ic_movie_filter_outline=ic_movie_filter_outline;var ic_movie_filter_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16.63 11.37L18 12l-1.37.63L16 14l-.63-1.37L14 12l1.37-.63L16 10H5.77L4.01 6.47V18h16v-8H16l.63 1.37zm-5.69 3.57L10 17l-.94-2.06L7 14l2.06-.94L10 11l.94 2.06L13 14l-2.06.94z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M10 11l-.94 2.06L7 14l2.06.94L10 17l.94-2.06L13 14l-2.06-.94zm8.01-7l2 4h-3l-2-4h-2l2 4h-3l-2-4h-2l2 4h-3l-2-4h-1c-1.1 0-1.99.9-1.99 2l-.01 12c0 1.1.9 2 2 2h16c1.1 0 1.99-.9 1.99-2V4h-3.99zm2 14h-16V6.47L5.77 10H16l-.63 1.37L14 12l1.37.63L16 14l.63-1.37L18 12l-1.37-.63L16 10h4.01v8z"},"children":[]}]};exports.ic_movie_filter_twotone=ic_movie_filter_twotone;var ic_mp={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM6.5 9H11c.55 0 1 .45 1 1v5h-1.5v-4.5h-1v3H8v-3H7V15H5.5v-5c0-.55.45-1 1-1zm9 6H14V9h3.5c.55 0 1 .45 1 1v2.5c0 .55-.45 1-1 1h-2V15zm0-3H17v-1.5h-1.5V12z"},"children":[]}]};exports.ic_mp=ic_mp;var ic_music_note={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 3v10.55c-.59-.34-1.27-.55-2-.55-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4V7h4V3h-6z"},"children":[]}]};exports.ic_music_note=ic_music_note;var ic_music_note_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 3l.01 10.55c-.59-.34-1.27-.55-2-.55C7.79 13 6 14.79 6 17s1.79 4 4.01 4S14 19.21 14 17V7h4V3h-6zm-1.99 16c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"},"children":[]}]};exports.ic_music_note_outline=ic_music_note_outline;var ic_music_note_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"10.01","cy":"17","opacity":".3","r":"2"},"children":[]},{"name":"path","attribs":{"d":"M12 3l.01 10.55c-.59-.34-1.27-.55-2-.55C7.79 13 6 14.79 6 17s1.79 4 4.01 4S14 19.21 14 17V7h4V3h-6zm-1.99 16c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"},"children":[]}]};exports.ic_music_note_twotone=ic_music_note_twotone;var ic_music_off={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4.27 3L3 4.27l9 9v.28c-.59-.34-1.27-.55-2-.55-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4v-1.73L19.73 21 21 19.73 4.27 3zM14 7h4V3h-6v5.18l2 2z"},"children":[]}]};exports.ic_music_off=ic_music_off;var ic_music_off_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14 7h4V3h-6v4.61l2 2zm-2 3.44L4.41 2.86 3 4.27l9 9v.28c-.94-.54-2.1-.75-3.33-.32-1.34.48-2.37 1.67-2.61 3.07-.46 2.74 1.86 5.08 4.59 4.65 1.96-.31 3.35-2.11 3.35-4.1v-1.58L19.73 21l1.41-1.41L12 10.44zM10 19c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"},"children":[]}]};exports.ic_music_off_outline=ic_music_off_outline;var ic_music_off_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"10","cy":"17","opacity":".3","r":"2"},"children":[]},{"name":"path","attribs":{"d":"M14 7h4V3h-6v4.61l2 2zm-2 3.44L4.41 2.86 3 4.27l9 9v.28c-.94-.54-2.1-.75-3.33-.32-1.34.48-2.37 1.67-2.61 3.07-.46 2.74 1.86 5.08 4.59 4.65 1.96-.31 3.35-2.11 3.35-4.1v-1.58L19.73 21l1.41-1.41L12 10.44zM10 19c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"},"children":[]}]};exports.ic_music_off_twotone=ic_music_off_twotone;var ic_nature={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13 16.12c3.47-.41 6.17-3.36 6.17-6.95 0-3.87-3.13-7-7-7s-7 3.13-7 7c0 3.47 2.52 6.34 5.83 6.89V20H5v2h14v-2h-6v-3.88z"},"children":[]}]};exports.ic_nature=ic_nature;var ic_nature_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13 16.12h-.03c3.49-.4 6.2-3.36 6.2-6.95 0-3.87-3.13-7-7-7s-7 3.13-7 7c0 3.47 2.52 6.34 5.83 6.89V20H5v2h14v-2h-6v-3.88zM7.17 9.17c0-2.76 2.24-5 5-5s5 2.24 5 5-2.24 5-5 5-5-2.24-5-5z"},"children":[]}]};exports.ic_nature_outline=ic_nature_outline;var ic_nature_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12.17 4.17c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.25-5-5-5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M19.17 9.17c0-3.87-3.13-7-7-7s-7 3.13-7 7c0 3.47 2.52 6.34 5.83 6.89V20H5v2h14v-2h-6v-3.88h-.03c3.49-.4 6.2-3.36 6.2-6.95zm-7 5c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.25 5-5 5z"},"children":[]}]};exports.ic_nature_twotone=ic_nature_twotone;var ic_nature_people={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22.17 9.17c0-3.87-3.13-7-7-7s-7 3.13-7 7c0 3.47 2.52 6.34 5.83 6.89V20H6v-3h1v-4c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v4h1v5h16v-2h-3v-3.88c3.47-.41 6.17-3.36 6.17-6.95zM4.5 11c.83 0 1.5-.67 1.5-1.5S5.33 8 4.5 8 3 8.67 3 9.5 3.67 11 4.5 11z"},"children":[]}]};exports.ic_nature_people=ic_nature_people;var ic_nature_people_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"4.5","cy":"9.5","r":"1.5"},"children":[]},{"name":"path","attribs":{"d":"M22.17 9.17c0-3.87-3.13-7-7-7s-7 3.13-7 7c0 3.47 2.52 6.34 5.83 6.89V20H6v-3h1v-4c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v4h1v5h16v-2h-3v-3.88c3.47-.41 6.17-3.36 6.17-6.95zm-7 5c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z"},"children":[]}]};exports.ic_nature_people_outline=ic_nature_people_outline;var ic_nature_people_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"15.17","cy":"9.17","opacity":".3","r":"5"},"children":[]},{"name":"circle","attribs":{"cx":"4.5","cy":"9.5","r":"1.5"},"children":[]},{"name":"path","attribs":{"d":"M15.17 2.17c-3.87 0-7 3.13-7 7 0 3.47 2.52 6.34 5.83 6.89V20H6v-3h1v-4c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v4h1v5h16v-2h-3v-3.88c3.47-.41 6.17-3.36 6.17-6.95 0-3.87-3.13-7-7-7zm0 12c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z"},"children":[]}]};exports.ic_nature_people_twotone=ic_nature_people_twotone;var ic_navigate_before={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z"},"children":[]}]};exports.ic_navigate_before=ic_navigate_before;var ic_navigate_before_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.61 7.41L14.2 6l-6 6 6 6 1.41-1.41L11.03 12l4.58-4.59z"},"children":[]}]};exports.ic_navigate_before_outline=ic_navigate_before_outline;var ic_navigate_before_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14.2 6l-6 6 6 6 1.41-1.41L11.03 12l4.58-4.59z"},"children":[]}]};exports.ic_navigate_before_twotone=ic_navigate_before_twotone;var ic_navigate_next={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z"},"children":[]}]};exports.ic_navigate_next=ic_navigate_next;var ic_navigate_next_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10.02 6L8.61 7.41 13.19 12l-4.58 4.59L10.02 18l6-6-6-6z"},"children":[]}]};exports.ic_navigate_next_outline=ic_navigate_next_outline;var ic_navigate_next_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10.02 18l6-6-6-6-1.41 1.41L13.19 12l-4.58 4.59z"},"children":[]}]};exports.ic_navigate_next_twotone=ic_navigate_next_twotone;var ic_palette={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 3c-4.97 0-9 4.03-9 9s4.03 9 9 9c.83 0 1.5-.67 1.5-1.5 0-.39-.15-.74-.39-1.01-.23-.26-.38-.61-.38-.99 0-.83.67-1.5 1.5-1.5H16c2.76 0 5-2.24 5-5 0-4.42-4.03-8-9-8zm-5.5 9c-.83 0-1.5-.67-1.5-1.5S5.67 9 6.5 9 8 9.67 8 10.5 7.33 12 6.5 12zm3-4C8.67 8 8 7.33 8 6.5S8.67 5 9.5 5s1.5.67 1.5 1.5S10.33 8 9.5 8zm5 0c-.83 0-1.5-.67-1.5-1.5S13.67 5 14.5 5s1.5.67 1.5 1.5S15.33 8 14.5 8zm3 4c-.83 0-1.5-.67-1.5-1.5S16.67 9 17.5 9s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z"},"children":[]}]};exports.ic_palette=ic_palette;var ic_palette_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 22C6.49 22 2 17.51 2 12S6.49 2 12 2s10 4.04 10 9c0 3.31-2.69 6-6 6h-1.77c-.28 0-.5.22-.5.5 0 .12.05.23.13.33.41.47.64 1.06.64 1.67 0 1.38-1.12 2.5-2.5 2.5zm0-18c-4.41 0-8 3.59-8 8s3.59 8 8 8c.28 0 .5-.22.5-.5 0-.16-.08-.28-.14-.35-.41-.46-.63-1.05-.63-1.65 0-1.38 1.12-2.5 2.5-2.5H16c2.21 0 4-1.79 4-4 0-3.86-3.59-7-8-7z"},"children":[]},{"name":"circle","attribs":{"cx":"6.5","cy":"11.5","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"9.5","cy":"7.5","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"14.5","cy":"7.5","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"17.5","cy":"11.5","r":"1.5"},"children":[]}]};exports.ic_palette_outline=ic_palette_outline;var ic_palette_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8c.28 0 .5-.22.5-.5 0-.16-.08-.28-.14-.35-.41-.46-.63-1.05-.63-1.65 0-1.38 1.12-2.5 2.5-2.5H16c2.21 0 4-1.79 4-4 0-3.86-3.59-7-8-7zm-5.5 9c-.83 0-1.5-.67-1.5-1.5S5.67 10 6.5 10s1.5.67 1.5 1.5S7.33 13 6.5 13zm3-4C8.67 9 8 8.33 8 7.5S8.67 6 9.5 6s1.5.67 1.5 1.5S10.33 9 9.5 9zm5 0c-.83 0-1.5-.67-1.5-1.5S13.67 6 14.5 6s1.5.67 1.5 1.5S15.33 9 14.5 9zm4.5 2.5c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10c1.38 0 2.5-1.12 2.5-2.5 0-.61-.23-1.21-.64-1.67-.08-.09-.13-.21-.13-.33 0-.28.22-.5.5-.5H16c3.31 0 6-2.69 6-6 0-4.96-4.49-9-10-9zm4 13h-1.77c-1.38 0-2.5 1.12-2.5 2.5 0 .61.22 1.19.63 1.65.06.07.14.19.14.35 0 .28-.22.5-.5.5-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.14 8 7c0 2.21-1.79 4-4 4z"},"children":[]},{"name":"circle","attribs":{"cx":"6.5","cy":"11.5","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"9.5","cy":"7.5","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"14.5","cy":"7.5","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"17.5","cy":"11.5","r":"1.5"},"children":[]}]};exports.ic_palette_twotone=ic_palette_twotone;var ic_panorama={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M23 18V6c0-1.1-.9-2-2-2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2zM8.5 12.5l2.5 3.01L14.5 11l4.5 6H5l3.5-4.5z"},"children":[]}]};exports.ic_panorama=ic_panorama;var ic_panorama_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 4H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H3V6h18v12zm-6.5-7L11 15.51 8.5 12.5 5 17h14z"},"children":[]}]};exports.ic_panorama_outline=ic_panorama_outline;var ic_panorama_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 18h18V6H3v12zm5.5-5.5l2.5 3.01L14.5 11l4.5 6H5l3.5-4.5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M21 4H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H3V6h18v12zm-6.5-7L11 15.51 8.5 12.5 5 17h14z"},"children":[]}]};exports.ic_panorama_twotone=ic_panorama_twotone;var ic_panorama_fish_eye={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"},"children":[]}]};exports.ic_panorama_fish_eye=ic_panorama_fish_eye;var ic_panorama_fish_eye_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"},"children":[]}]};exports.ic_panorama_fish_eye_outline=ic_panorama_fish_eye_outline;var ic_panorama_fish_eye_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"},"children":[]}]};exports.ic_panorama_fish_eye_twotone=ic_panorama_fish_eye_twotone;var ic_panorama_horizontal={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 6.54v10.91c-2.6-.77-5.28-1.16-8-1.16-2.72 0-5.4.39-8 1.16V6.54c2.6.77 5.28 1.16 8 1.16 2.72.01 5.4-.38 8-1.16M21.43 4c-.1 0-.2.02-.31.06C18.18 5.16 15.09 5.7 12 5.7c-3.09 0-6.18-.55-9.12-1.64-.11-.04-.22-.06-.31-.06-.34 0-.57.23-.57.63v14.75c0 .39.23.62.57.62.1 0 .2-.02.31-.06 2.94-1.1 6.03-1.64 9.12-1.64 3.09 0 6.18.55 9.12 1.64.11.04.21.06.31.06.33 0 .57-.23.57-.63V4.63c0-.4-.24-.63-.57-.63z"},"children":[]}]};exports.ic_panorama_horizontal=ic_panorama_horizontal;var ic_panorama_horizontal_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 6.54v10.91c-2.6-.77-5.28-1.16-8-1.16s-5.4.39-8 1.16V6.54c2.6.77 5.28 1.16 8 1.16 2.72.01 5.4-.38 8-1.16M21.43 4c-.1 0-.2.02-.31.06C18.18 5.16 15.09 5.7 12 5.7s-6.18-.55-9.12-1.64C2.77 4.02 2.66 4 2.57 4c-.34 0-.57.23-.57.63v14.75c0 .39.23.62.57.62.1 0 .2-.02.31-.06 2.94-1.1 6.03-1.64 9.12-1.64s6.18.55 9.12 1.64c.11.04.21.06.31.06.33 0 .57-.23.57-.63V4.63c0-.4-.24-.63-.57-.63z"},"children":[]}]};exports.ic_panorama_horizontal_outline=ic_panorama_horizontal_outline;var ic_panorama_horizontal_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 6.54v10.91c2.6-.77 5.28-1.16 8-1.16s5.4.39 8 1.16V6.54c-2.6.78-5.28 1.17-8 1.16-2.72 0-5.4-.39-8-1.16z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M21.43 4c-.1 0-.2.02-.31.06C18.18 5.16 15.09 5.7 12 5.7s-6.18-.55-9.12-1.64C2.77 4.02 2.66 4 2.57 4c-.34 0-.57.23-.57.63v14.75c0 .39.23.62.57.62.1 0 .2-.02.31-.06 2.94-1.1 6.03-1.64 9.12-1.64s6.18.55 9.12 1.64c.11.04.21.06.31.06.33 0 .57-.23.57-.63V4.63c0-.4-.24-.63-.57-.63zM20 17.45c-2.6-.77-5.28-1.16-8-1.16s-5.4.39-8 1.16V6.54c2.6.77 5.28 1.16 8 1.16 2.72.01 5.4-.38 8-1.16v10.91z"},"children":[]}]};exports.ic_panorama_horizontal_twotone=ic_panorama_horizontal_twotone;var ic_panorama_horizontal_select={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21.43 4c-.1 0-.2.02-.31.06C18.18 5.16 15.09 5.7 12 5.7s-6.18-.55-9.12-1.64C2.77 4.02 2.66 4 2.57 4c-.34 0-.57.23-.57.63v14.75c0 .39.23.62.57.62.1 0 .2-.02.31-.06 2.94-1.1 6.03-1.64 9.12-1.64s6.18.55 9.12 1.64c.11.04.21.06.31.06.33 0 .57-.23.57-.63V4.63c0-.4-.24-.63-.57-.63z"},"children":[]}]};exports.ic_panorama_horizontal_select=ic_panorama_horizontal_select;var ic_panorama_photosphere={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21.4 11.32v2.93c-.1.05-2.17.85-3.33 1.17-.94.26-3.84.73-6.07.73-3.7 0-7-.7-9.16-1.8-.08-.04-.16-.06-.24-.1V9.76c6.02-2.84 12.6-2.92 18.8 0v1.56zm-9.39 8.88c-2.5 0-4.87-1.15-6.41-3.12 4.19 1.22 8.57 1.23 12.82-.01-1.54 1.97-3.9 3.13-6.41 3.13zM12 3.8c2.6 0 4.91 1.23 6.41 3.12-4.1-1.19-8.48-1.26-12.83.01C7.08 5.03 9.4 3.8 12 3.8zm10.49 4.71c-.47-.23-.93-.44-1.4-.64C19.52 4.41 16.05 2 12 2S4.47 4.41 2.9 7.88c-.47.2-.93.41-1.4.63-.31.15-.5.48-.5.83v5.32c0 .35.19.68.51.83.47.23.93.44 1.39.64 3.55 7.83 14.65 7.82 18.2 0 .47-.2.93-.41 1.39-.63.31-.17.51-.49.51-.84V9.34c0-.35-.19-.68-.51-.83z"},"children":[]}]};exports.ic_panorama_photosphere=ic_panorama_photosphere;var ic_panorama_photosphere_select={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22.49 8.51c-.47-.23-.93-.44-1.4-.64C19.52 4.41 16.05 2 12 2S4.47 4.41 2.9 7.88c-.47.2-.93.41-1.4.63-.31.15-.5.48-.5.83v5.32c0 .35.19.68.51.83.47.23.93.44 1.39.64 3.55 7.83 14.65 7.82 18.2 0 .47-.2.93-.41 1.39-.63.31-.17.51-.49.51-.84V9.34c0-.35-.19-.68-.51-.83zM12 3.8c2.6 0 4.91 1.23 6.41 3.12-4.1-1.19-8.48-1.26-12.83.01C7.08 5.03 9.4 3.8 12 3.8zM5.6 17.08c4.19 1.22 8.57 1.23 12.82-.01-1.54 1.97-3.9 3.13-6.41 3.13-2.5 0-4.87-1.15-6.41-3.12z"},"children":[]}]};exports.ic_panorama_photosphere_select=ic_panorama_photosphere_select;var ic_panorama_vertical={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19.94 21.12c-1.1-2.94-1.64-6.03-1.64-9.12 0-3.09.55-6.18 1.64-9.12.04-.11.06-.22.06-.31 0-.34-.23-.57-.63-.57H4.63c-.4 0-.63.23-.63.57 0 .1.02.2.06.31C5.16 5.82 5.71 8.91 5.71 12c0 3.09-.55 6.18-1.64 9.12-.05.11-.07.22-.07.31 0 .33.23.57.63.57h14.75c.39 0 .63-.24.63-.57-.01-.1-.03-.2-.07-.31zM6.54 20c.77-2.6 1.16-5.28 1.16-8 0-2.72-.39-5.4-1.16-8h10.91c-.77 2.6-1.16 5.28-1.16 8 0 2.72.39 5.4 1.16 8H6.54z"},"children":[]}]};exports.ic_panorama_vertical=ic_panorama_vertical;var ic_panorama_vertical_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19.94 21.12c-1.1-2.94-1.64-6.03-1.64-9.12s.55-6.18 1.64-9.12c.04-.11.06-.22.06-.31 0-.34-.23-.57-.63-.57H4.63c-.4 0-.63.23-.63.57 0 .1.02.2.06.31C5.16 5.82 5.71 8.91 5.71 12s-.55 6.18-1.64 9.12c-.05.11-.07.22-.07.31 0 .33.23.57.63.57h14.75c.39 0 .63-.24.63-.57-.01-.1-.03-.2-.07-.31zM6.54 20c.77-2.6 1.16-5.28 1.16-8s-.39-5.4-1.16-8h10.91c-.77 2.6-1.16 5.28-1.16 8s.39 5.4 1.16 8H6.54z"},"children":[]}]};exports.ic_panorama_vertical_outline=ic_panorama_vertical_outline;var ic_panorama_vertical_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6.54 4c.77 2.6 1.16 5.28 1.16 8 0 2.72-.39 5.4-1.16 8h10.91c-.77-2.6-1.16-5.28-1.16-8 0-2.72.39-5.4 1.16-8H6.54z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M19.94 21.12c-1.1-2.94-1.64-6.03-1.64-9.12 0-3.09.55-6.18 1.64-9.12.04-.11.06-.22.06-.31 0-.34-.23-.57-.63-.57H4.63c-.4 0-.63.23-.63.57 0 .1.02.2.06.31C5.16 5.82 5.71 8.91 5.71 12c0 3.09-.55 6.18-1.64 9.12-.05.11-.07.22-.07.31 0 .33.23.57.63.57h14.75c.39 0 .63-.24.63-.57-.01-.1-.03-.2-.07-.31zM17.45 20H6.54c.77-2.6 1.16-5.28 1.16-8 0-2.72-.39-5.4-1.16-8h10.91c-.77 2.6-1.16 5.28-1.16 8 0 2.72.39 5.4 1.16 8z"},"children":[]}]};exports.ic_panorama_vertical_twotone=ic_panorama_vertical_twotone;var ic_panorama_vertical_select={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19.93 21.12c-1.1-2.94-1.64-6.03-1.64-9.12s.55-6.18 1.64-9.12c.05-.11.07-.22.07-.31 0-.34-.24-.57-.64-.57H4.62c-.4 0-.63.23-.63.57 0 .1.02.2.06.31C5.16 5.82 5.7 8.91 5.7 12s-.55 6.18-1.64 9.12c-.05.11-.07.22-.07.31 0 .33.23.57.63.57h14.75c.39 0 .63-.24.63-.57 0-.1-.02-.2-.07-.31z"},"children":[]}]};exports.ic_panorama_vertical_select=ic_panorama_vertical_select;var ic_panorama_wide_angle={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 6c2.45 0 4.71.2 7.29.64.47 1.78.71 3.58.71 5.36 0 1.78-.24 3.58-.71 5.36-2.58.44-4.84.64-7.29.64s-4.71-.2-7.29-.64C4.24 15.58 4 13.78 4 12c0-1.78.24-3.58.71-5.36C7.29 6.2 9.55 6 12 6m0-2c-2.73 0-5.22.24-7.95.72l-.93.16-.25.9C2.29 7.85 2 9.93 2 12s.29 4.15.87 6.22l.25.89.93.16c2.73.49 5.22.73 7.95.73s5.22-.24 7.95-.72l.93-.16.25-.89c.58-2.08.87-4.16.87-6.23s-.29-4.15-.87-6.22l-.25-.89-.93-.16C17.22 4.24 14.73 4 12 4z"},"children":[]}]};exports.ic_panorama_wide_angle=ic_panorama_wide_angle;var ic_panorama_wide_angle_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 6c2.45 0 4.71.2 7.29.64.47 1.78.71 3.58.71 5.36s-.24 3.58-.71 5.36c-2.58.44-4.84.64-7.29.64s-4.71-.2-7.29-.64C4.24 15.58 4 13.78 4 12s.24-3.58.71-5.36C7.29 6.2 9.55 6 12 6m0-2c-2.73 0-5.22.24-7.95.72l-.93.16-.25.9C2.29 7.85 2 9.93 2 12s.29 4.15.87 6.22l.25.89.93.16c2.73.49 5.22.73 7.95.73s5.22-.24 7.95-.72l.93-.16.25-.89c.58-2.08.87-4.16.87-6.23s-.29-4.15-.87-6.22l-.25-.89-.93-.16C17.22 4.24 14.73 4 12 4z"},"children":[]}]};exports.ic_panorama_wide_angle_outline=ic_panorama_wide_angle_outline;var ic_panorama_wide_angle_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 6c-2.45 0-4.71.2-7.29.64C4.24 8.42 4 10.22 4 12c0 1.78.24 3.58.71 5.36 2.58.44 4.84.64 7.29.64s4.71-.2 7.29-.64c.47-1.78.71-3.58.71-5.36 0-1.78-.24-3.58-.71-5.36C16.71 6.2 14.45 6 12 6z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M21.13 5.78l-.25-.89-.93-.16C17.22 4.24 14.73 4 12 4s-5.22.24-7.95.72l-.93.16-.25.9C2.29 7.85 2 9.93 2 12s.29 4.15.87 6.22l.25.89.93.16c2.73.49 5.22.73 7.95.73s5.22-.24 7.95-.72l.93-.16.25-.89c.58-2.08.87-4.16.87-6.23s-.29-4.15-.87-6.22zm-1.84 11.58c-2.58.44-4.84.64-7.29.64s-4.71-.2-7.29-.64C4.24 15.58 4 13.78 4 12c0-1.78.24-3.58.71-5.36C7.29 6.2 9.55 6 12 6s4.71.2 7.29.64c.47 1.78.71 3.58.71 5.36 0 1.78-.24 3.58-.71 5.36z"},"children":[]}]};exports.ic_panorama_wide_angle_twotone=ic_panorama_wide_angle_twotone;var ic_panorama_wide_angle_select={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 4c-2.73 0-5.22.24-7.95.72l-.93.16-.25.9C2.29 7.85 2 9.93 2 12s.29 4.15.87 6.22l.25.89.93.16c2.73.49 5.22.73 7.95.73s5.22-.24 7.95-.72l.93-.16.25-.89c.58-2.08.87-4.16.87-6.23s-.29-4.15-.87-6.22l-.25-.89-.93-.16C17.22 4.24 14.73 4 12 4z"},"children":[]}]};exports.ic_panorama_wide_angle_select=ic_panorama_wide_angle_select;var ic_photo={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 19V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zM8.5 13.5l2.5 3.01L14.5 12l4.5 6H5l3.5-4.5z"},"children":[]}]};exports.ic_photo=ic_photo;var ic_photo_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4.86 8.86l-3 3.87L9 13.14 6 17h12l-3.86-5.14z"},"children":[]}]};exports.ic_photo_outline=ic_photo_outline;var ic_photo_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 5H5v14h14V5zM6 17l3-3.86 2.14 2.58 3-3.87L18 17H6z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M5 21h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2zM5 5h14v14H5V5zm6.14 10.72L9 13.14 6 17h12l-3.86-5.14z"},"children":[]}]};exports.ic_photo_twotone=ic_photo_twotone;var ic_photo_album={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM6 4h5v8l-2.5-1.5L6 12V4zm0 15l3-3.86 2.14 2.58 3-3.86L18 19H6z"},"children":[]}]};exports.ic_photo_album=ic_photo_album;var ic_photo_album_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 2v5l-1-.75L9 9V4h2zm7 16H6V4h1v9l3-2.25L13 13V4h5v16zm-6.72-2.04L9.5 15.81 7 19h10l-3.22-4.26z"},"children":[]}]};exports.ic_photo_album_outline=ic_photo_album_outline;var ic_photo_album_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13 13l-3-2.25L7 13V4H6v16h12V4h-5v9zm4 6H7l2.5-3.19 1.78 2.15 2.5-3.22L17 19z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM9 4h2v5l-1-.75L9 9V4zm9 16H6V4h1v9l3-2.25L13 13V4h5v16zm-8.5-4.19L7 19h10l-3.22-4.26-2.5 3.22z"},"children":[]}]};exports.ic_photo_album_twotone=ic_photo_album_twotone;var ic_photo_camera={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"12","cy":"12","r":"3.2"},"children":[]},{"name":"path","attribs":{"d":"M9 2L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2h-3.17L15 2H9zm3 15c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z"},"children":[]}]};exports.ic_photo_camera=ic_photo_camera;var ic_photo_camera_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14.12 4l1.83 2H20v12H4V6h4.05l1.83-2h4.24M15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2h-3.17L15 2zm-3 7c1.65 0 3 1.35 3 3s-1.35 3-3 3-3-1.35-3-3 1.35-3 3-3m0-2c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5z"},"children":[]}]};exports.ic_photo_camera_outline=ic_photo_camera_outline;var ic_photo_camera_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 6h-4.05l-1.83-2H9.88L8.05 6H4v12h16V6zm-8 11c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M4 20h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2h-3.17L15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2zM4 6h4.05l1.83-2h4.24l1.83 2H20v12H4V6zm8 1c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3z"},"children":[]}]};exports.ic_photo_camera_twotone=ic_photo_camera_twotone;var ic_photo_camera_back={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 5c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V7c0-1.1.9-2 2-2h3.17L9 3h6l1.83 2H20zm0 14V7H4v12h16zm-6-7l-3 3.72L9 13l-3 4h12l-4-5z"},"children":[]}]};exports.ic_photo_camera_back=ic_photo_camera_back;var ic_photo_camera_front={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 10.48l4-3.98v11l-4-3.98V18c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h12c1.1 0 2 .9 2 2v4.48zm-2-.79V6H4v12h12V9.69zM10 12c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm0 1c1.34 0 4 .67 4 2v1H6v-1c0-1.33 2.66-2 4-2z"},"children":[]}]};exports.ic_photo_camera_front=ic_photo_camera_front;var ic_photo_filter={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19.02 10v9H5V5h9V3H5.02c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-9h-2zM17 10l.94-2.06L20 7l-2.06-.94L17 4l-.94 2.06L14 7l2.06.94zm-3.75.75L12 8l-1.25 2.75L8 12l2.75 1.25L12 16l1.25-2.75L16 12z"},"children":[]}]};exports.ic_photo_filter=ic_photo_filter;var ic_photo_filter_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 10v9H4.98V5h9V3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-9h-2zm-2.94-2.06L17 10l.94-2.06L20 7l-2.06-.94L17 4l-.94 2.06L14 7zM12 8l-1.25 2.75L8 12l2.75 1.25L12 16l1.25-2.75L16 12l-2.75-1.25z"},"children":[]}]};exports.ic_photo_filter_outline=ic_photo_filter_outline;var ic_photo_filter_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 10v9H4.98V5h9V3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-9h-2zm-2.94-2.06L17 10l.94-2.06L20 7l-2.06-.94L17 4l-.94 2.06L14 7zM12 8l-1.25 2.75L8 12l2.75 1.25L12 16l1.25-2.75L16 12l-2.75-1.25z"},"children":[]}]};exports.ic_photo_filter_twotone=ic_photo_filter_twotone;var ic_photo_library={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 16V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2zm-11-4l2.03 2.71L16 11l4 5H8l3-4zM2 6v14c0 1.1.9 2 2 2h14v-2H4V6H2z"},"children":[]}]};exports.ic_photo_library=ic_photo_library;var ic_photo_library_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 4v12H8V4h12m0-2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-8.5 9.67l1.69 2.26 2.48-3.1L19 15H9zM2 6v14c0 1.1.9 2 2 2h14v-2H4V6H2z"},"children":[]}]};exports.ic_photo_library_outline=ic_photo_library_outline;var ic_photo_library_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8 16h12V4H8v12zm3.5-4.33l1.69 2.26 2.48-3.09L19 15H9l2.5-3.33z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M22 16V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2zm-2 0H8V4h12v12zm-4.33-5.17l-2.48 3.09-1.69-2.25L9 15h10zM4 22h14v-2H4V6H2v14c0 1.1.9 2 2 2z"},"children":[]}]};exports.ic_photo_library_twotone=ic_photo_library_twotone;var ic_photo_size_select_actual={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M24 24H0V0h24v24z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 3H3C2 3 1 4 1 5v14c0 1.1.9 2 2 2h18c1 0 2-1 2-2V5c0-1-1-2-2-2zM5 17l3.5-4.5 2.5 3.01L14.5 11l4.5 6H5z"},"children":[]}]};exports.ic_photo_size_select_actual=ic_photo_size_select_actual;var ic_photo_size_select_actual_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 3H3C2 3 1 4 1 5v14c0 1.1.9 2 2 2h18c1 0 2-1 2-2V5c0-1-1-2-2-2zm0 15.92c-.02.03-.06.06-.08.08H3V5.08L3.08 5h17.83c.03.02.06.06.08.08v13.84zm-10-3.41L8.5 12.5 5 17h14l-4.5-6z"},"children":[]}]};exports.ic_photo_size_select_actual_outline=ic_photo_size_select_actual_outline;var ic_photo_size_select_actual_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3.08 5L3 5.08V19h17.92c.03-.02.06-.06.08-.08V5.08L20.92 5H3.08zM5 17l3.5-4.5 2.5 3.01L14.5 11l4.5 6H5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M21 3H3C2 3 1 4 1 5v14c0 1.1.9 2 2 2h18c1 0 2-1 2-2V5c0-1-1-2-2-2zm0 15.92c-.02.03-.06.06-.08.08H3V5.08L3.08 5h17.83c.03.02.06.06.08.08v13.84zm-10-3.41L8.5 12.5 5 17h14l-4.5-6z"},"children":[]}]};exports.ic_photo_size_select_actual_twotone=ic_photo_size_select_actual_twotone;var ic_photo_size_select_large={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M24 24H0V0h24v24z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 15h2v2h-2v-2zm0-4h2v2h-2v-2zm2 8h-2v2c1 0 2-1 2-2zM13 3h2v2h-2V3zm8 4h2v2h-2V7zm0-4v2h2c0-1-1-2-2-2zM1 7h2v2H1V7zm16-4h2v2h-2V3zm0 16h2v2h-2v-2zM3 3C2 3 1 4 1 5h2V3zm6 0h2v2H9V3zM5 3h2v2H5V3zm-4 8v8c0 1.1.9 2 2 2h12V11H1zm2 8l2.5-3.21 1.79 2.15 2.5-3.22L13 19H3z"},"children":[]}]};exports.ic_photo_size_select_large=ic_photo_size_select_large;var ic_photo_size_select_large_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 15h2v2h-2v-2zm0-4h2v2h-2v-2zm2 8h-2v2c1 0 2-1 2-2zM13 3h2v2h-2V3zm8 4h2v2h-2V7zm0-4v2h2c0-1-1-2-2-2zM1 7h2v2H1V7zm16-4h2v2h-2V3zm0 16h2v2h-2v-2zM3 3C2 3 1 4 1 5h2V3zm6 0h2v2H9V3zM5 3h2v2H5V3zm-4 8v8c0 1.1.9 2 2 2h12V11H1zm2 8l2.5-3.21 1.79 2.15 2.5-3.22L13 19H3z"},"children":[]}]};exports.ic_photo_size_select_large_outline=ic_photo_size_select_large_outline;var ic_photo_size_select_large_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 19h2v2h-2zM1 19c0 1.1.9 2 2 2h12V11H1v8zm4.5-3.21l1.79 2.15 2.5-3.22L13 19H3l2.5-3.21zM17 3h2v2h-2zm4 8h2v2h-2zm0 4h2v2h-2zM3 3C2 3 1 4 1 5h2V3zm18 4h2v2h-2zm-8-4h2v2h-2zm8 18c1 0 2-1 2-2h-2v2zM1 7h2v2H1zm8-4h2v2H9zM5 3h2v2H5zm16 0v2h2c0-1-1-2-2-2z"},"children":[]}]};exports.ic_photo_size_select_large_twotone=ic_photo_size_select_large_twotone;var ic_photo_size_select_small={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0zm24 24H0V0h24v24z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M23 15h-2v2h2v-2zm0-4h-2v2h2v-2zm0 8h-2v2c1 0 2-1 2-2zM15 3h-2v2h2V3zm8 4h-2v2h2V7zm-2-4v2h2c0-1-1-2-2-2zM3 21h8v-6H1v4c0 1.1.9 2 2 2zM3 7H1v2h2V7zm12 12h-2v2h2v-2zm4-16h-2v2h2V3zm0 16h-2v2h2v-2zM3 3C2 3 1 4 1 5h2V3zm0 8H1v2h2v-2zm8-8H9v2h2V3zM7 3H5v2h2V3z"},"children":[]}]};exports.ic_photo_size_select_small=ic_photo_size_select_small;var ic_photo_size_select_small_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M23 15h-2v2h2v-2zm0-4h-2v2h2v-2zm0 8h-2v2c1 0 2-1 2-2zM15 3h-2v2h2V3zm8 4h-2v2h2V7zm-2-4v2h2c0-1-1-2-2-2zM3 21h8v-6H1v4c0 1.1.9 2 2 2zM3 7H1v2h2V7zm12 12h-2v2h2v-2zm4-16h-2v2h2V3zm0 16h-2v2h2v-2zM3 3C2 3 1 4 1 5h2V3zm0 8H1v2h2v-2zm8-8H9v2h2V3zM7 3H5v2h2V3z"},"children":[]}]};exports.ic_photo_size_select_small_outline=ic_photo_size_select_small_outline;var ic_photo_size_select_small_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 19h2v2h-2zm-4 0h2v2h-2zM1 19c0 1.1.9 2 2 2h8v-6H1v4zM9 3h2v2H9zM5 3h2v2H5zm12 0h2v2h-2zM1 11h2v2H1zm0-4h2v2H1zm2-4C2 3 1 4 1 5h2V3zm10 0h2v2h-2zm8 18c1 0 2-1 2-2h-2v2zm0-10h2v2h-2zm0-8v2h2c0-1-1-2-2-2zm0 12h2v2h-2zm0-8h2v2h-2z"},"children":[]}]};exports.ic_photo_size_select_small_twotone=ic_photo_size_select_small_twotone;var ic_picture_as_pdf={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-8.5 7.5c0 .83-.67 1.5-1.5 1.5H9v2H7.5V7H10c.83 0 1.5.67 1.5 1.5v1zm5 2c0 .83-.67 1.5-1.5 1.5h-2.5V7H15c.83 0 1.5.67 1.5 1.5v3zm4-3H19v1h1.5V11H19v2h-1.5V7h3v1.5zM9 9.5h1v-1H9v1zM4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm10 5.5h1v-3h-1v3z"},"children":[]}]};exports.ic_picture_as_pdf=ic_picture_as_pdf;var ic_picture_as_pdf_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zM4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm12 6V9c0-.55-.45-1-1-1h-2v5h2c.55 0 1-.45 1-1zm-2-3h1v3h-1V9zm4 2h1v-1h-1V9h1V8h-2v5h1zm-8 0h1c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1H9v5h1v-2zm0-2h1v1h-1V9z"},"children":[]}]};exports.ic_picture_as_pdf_outline=ic_picture_as_pdf_outline;var ic_picture_as_pdf_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6z"},"children":[]},{"name":"path","attribs":{"d":"M10 9h1v1h-1zm4 0h1v3h-1zm-6 7h12V4H8v12zm9-8h2v1h-1v1h1v1h-1v2h-1V8zm-4 0h2c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1h-2V8zM9 8h2c.55 0 1 .45 1 1v1c0 .55-.45 1-1 1h-1v2H9V8z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zm-4-4V9c0-.55-.45-1-1-1h-2v5h2c.55 0 1-.45 1-1zm-2-3h1v3h-1V9zm4 2h1v-1h-1V9h1V8h-2v5h1zm-8 0h1c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1H9v5h1v-2zm0-2h1v1h-1V9z"},"children":[]}]};exports.ic_picture_as_pdf_twotone=ic_picture_as_pdf_twotone;var ic_portrait={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 12.25c1.24 0 2.25-1.01 2.25-2.25S13.24 7.75 12 7.75 9.75 8.76 9.75 10s1.01 2.25 2.25 2.25zm4.5 4c0-1.5-3-2.25-4.5-2.25s-4.5.75-4.5 2.25V17h9v-.75zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z"},"children":[]}]};exports.ic_portrait=ic_portrait;var ic_portrait_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 12c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm6 8.58c0-2.5-3.97-3.58-6-3.58s-6 1.08-6 3.58V18h12v-1.42zM8.48 16c.74-.51 2.23-1 3.52-1s2.78.49 3.52 1H8.48zM19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z"},"children":[]}]};exports.ic_portrait_outline=ic_portrait_outline;var ic_portrait_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 19h14V5H5v14zm7-13c1.65 0 3 1.35 3 3s-1.35 3-3 3-3-1.35-3-3 1.35-3 3-3zM6 16.58C6 14.08 9.97 13 12 13s6 1.08 6 3.58V18H6v-1.42z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 12c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm6 8.58c0-2.5-3.97-3.58-6-3.58s-6 1.08-6 3.58V18h12v-1.42zM8.48 16c.74-.51 2.23-1 3.52-1s2.78.49 3.52 1H8.48zM19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z"},"children":[]}]};exports.ic_portrait_twotone=ic_portrait_twotone;var ic_receipt_long={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0,0h24v24H0V0z","fill":"none"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M19.5,3.5L18,2l-1.5,1.5L15,2l-1.5,1.5L12,2l-1.5,1.5L9,2L7.5,3.5L6,2v14H3v3c0,1.66,1.34,3,3,3h12c1.66,0,3-1.34,3-3V2 L19.5,3.5z M19,19c0,0.55-0.45,1-1,1s-1-0.45-1-1v-3H8V5h11V19z"},"children":[{"name":"path","attribs":{"d":"M19.5,3.5L18,2l-1.5,1.5L15,2l-1.5,1.5L12,2l-1.5,1.5L9,2L7.5,3.5L6,2v14H3v3c0,1.66,1.34,3,3,3h12c1.66,0,3-1.34,3-3V2 L19.5,3.5z M19,19c0,0.55-0.45,1-1,1s-1-0.45-1-1v-3H8V5h11V19z"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"6","x":"9","y":"7"},"children":[{"name":"rect","attribs":{"height":"2","width":"6","x":"9","y":"7"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"2","x":"16","y":"7"},"children":[{"name":"rect","attribs":{"height":"2","width":"2","x":"16","y":"7"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"6","x":"9","y":"10"},"children":[{"name":"rect","attribs":{"height":"2","width":"6","x":"9","y":"10"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"2","x":"16","y":"10"},"children":[{"name":"rect","attribs":{"height":"2","width":"2","x":"16","y":"10"},"children":[]}]}]}]};exports.ic_receipt_long=ic_receipt_long;var ic_receipt_long_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0,0h24v24H0V0z","fill":"none"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M19.5,3.5L18,2l-1.5,1.5L15,2l-1.5,1.5L12,2l-1.5,1.5L9,2L7.5,3.5L6,2v14H3v3c0,1.66,1.34,3,3,3h12c1.66,0,3-1.34,3-3V2 L19.5,3.5z M15,20H6c-0.55,0-1-0.45-1-1v-1h10V20z M19,19c0,0.55-0.45,1-1,1s-1-0.45-1-1v-3H8V5h11V19z"},"children":[{"name":"path","attribs":{"d":"M19.5,3.5L18,2l-1.5,1.5L15,2l-1.5,1.5L12,2l-1.5,1.5L9,2L7.5,3.5L6,2v14H3v3c0,1.66,1.34,3,3,3h12c1.66,0,3-1.34,3-3V2 L19.5,3.5z M15,20H6c-0.55,0-1-0.45-1-1v-1h10V20z M19,19c0,0.55-0.45,1-1,1s-1-0.45-1-1v-3H8V5h11V19z"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"6","x":"9","y":"7"},"children":[{"name":"rect","attribs":{"height":"2","width":"6","x":"9","y":"7"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"2","x":"16","y":"7"},"children":[{"name":"rect","attribs":{"height":"2","width":"2","x":"16","y":"7"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"6","x":"9","y":"10"},"children":[{"name":"rect","attribs":{"height":"2","width":"6","x":"9","y":"10"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"2","x":"16","y":"10"},"children":[{"name":"rect","attribs":{"height":"2","width":"2","x":"16","y":"10"},"children":[]}]}]}]};exports.ic_receipt_long_outline=ic_receipt_long_outline;var ic_receipt_long_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M19,19c0,0.55-0.45,1-1,1s-1-0.45-1-1v-3H8V5h11V19z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M0,0h24v24H0V0z","fill":"none"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M19.5,3.5L18,2l-1.5,1.5L15,2l-1.5,1.5L12,2l-1.5,1.5L9,2L7.5,3.5L6,2v14H3v3c0,1.66,1.34,3,3,3h12c1.66,0,3-1.34,3-3V2 L19.5,3.5z M19,19c0,0.55-0.45,1-1,1s-1-0.45-1-1v-3H8V5h11V19z"},"children":[{"name":"path","attribs":{"d":"M19.5,3.5L18,2l-1.5,1.5L15,2l-1.5,1.5L12,2l-1.5,1.5L9,2L7.5,3.5L6,2v14H3v3c0,1.66,1.34,3,3,3h12c1.66,0,3-1.34,3-3V2 L19.5,3.5z M19,19c0,0.55-0.45,1-1,1s-1-0.45-1-1v-3H8V5h11V19z"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"6","x":"9","y":"7"},"children":[{"name":"rect","attribs":{"height":"2","width":"6","x":"9","y":"7"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"2","x":"16","y":"7"},"children":[{"name":"rect","attribs":{"height":"2","width":"2","x":"16","y":"7"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"6","x":"9","y":"10"},"children":[{"name":"rect","attribs":{"height":"2","width":"6","x":"9","y":"10"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"2","x":"16","y":"10"},"children":[{"name":"rect","attribs":{"height":"2","width":"2","x":"16","y":"10"},"children":[]}]}]}]};exports.ic_receipt_long_twotone=ic_receipt_long_twotone;var ic_remove_red_eye={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z"},"children":[]}]};exports.ic_remove_red_eye=ic_remove_red_eye;var ic_remove_red_eye_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 6.5c3.79 0 7.17 2.13 8.82 5.5-1.65 3.37-5.02 5.5-8.82 5.5S4.83 15.37 3.18 12C4.83 8.63 8.21 6.5 12 6.5m0-2C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zm0 5c1.38 0 2.5 1.12 2.5 2.5s-1.12 2.5-2.5 2.5-2.5-1.12-2.5-2.5 1.12-2.5 2.5-2.5m0-2c-2.48 0-4.5 2.02-4.5 4.5s2.02 4.5 4.5 4.5 4.5-2.02 4.5-4.5-2.02-4.5-4.5-4.5z"},"children":[]}]};exports.ic_remove_red_eye_outline=ic_remove_red_eye_outline;var ic_remove_red_eye_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 6.5c-3.79 0-7.17 2.13-8.82 5.5 1.65 3.37 5.02 5.5 8.82 5.5s7.17-2.13 8.82-5.5C19.17 8.63 15.79 6.5 12 6.5zm0 10c-2.48 0-4.5-2.02-4.5-4.5S9.52 7.5 12 7.5s4.5 2.02 4.5 4.5-2.02 4.5-4.5 4.5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zm0 13c-3.79 0-7.17-2.13-8.82-5.5C4.83 8.63 8.21 6.5 12 6.5s7.17 2.13 8.82 5.5c-1.65 3.37-5.03 5.5-8.82 5.5zm0-10c-2.48 0-4.5 2.02-4.5 4.5s2.02 4.5 4.5 4.5 4.5-2.02 4.5-4.5-2.02-4.5-4.5-4.5zm0 7c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z"},"children":[]}]};exports.ic_remove_red_eye_twotone=ic_remove_red_eye_twotone;var ic_rotate_90_degrees_ccw={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7.34 6.41L.86 12.9l6.49 6.48 6.49-6.48-6.5-6.49zM3.69 12.9l3.66-3.66L11 12.9l-3.66 3.66-3.65-3.66zm15.67-6.26C17.61 4.88 15.3 4 13 4V.76L8.76 5 13 9.24V6c1.79 0 3.58.68 4.95 2.05 2.73 2.73 2.73 7.17 0 9.9C16.58 19.32 14.79 20 13 20c-.97 0-1.94-.21-2.84-.61l-1.49 1.49C10.02 21.62 11.51 22 13 22c2.3 0 4.61-.88 6.36-2.64 3.52-3.51 3.52-9.21 0-12.72z"},"children":[]}]};exports.ic_rotate_90_degrees_ccw=ic_rotate_90_degrees_ccw;var ic_rotate_90_degrees_ccw_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7.34 6.41L.86 12.9l6.49 6.48 6.49-6.48-6.5-6.49zM3.69 12.9l3.66-3.66L11 12.9l-3.66 3.66-3.65-3.66zm15.67-6.26C17.61 4.88 15.3 4 13 4V.76L8.76 5 13 9.24V6c1.79 0 3.58.68 4.95 2.05 2.73 2.73 2.73 7.17 0 9.9C16.58 19.32 14.79 20 13 20c-.97 0-1.94-.21-2.84-.61l-1.49 1.49C10.02 21.62 11.51 22 13 22c2.3 0 4.61-.88 6.36-2.64 3.52-3.51 3.52-9.21 0-12.72z"},"children":[]}]};exports.ic_rotate_90_degrees_ccw_outline=ic_rotate_90_degrees_ccw_outline;var ic_rotate_90_degrees_ccw_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7.35 9.24L3.69 12.9l3.65 3.66L11 12.9z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M7.34 6.41L.86 12.9l6.49 6.48 6.49-6.48-6.5-6.49zm0 10.15L3.69 12.9l3.66-3.66L11 12.9l-3.66 3.66zm12.02-9.92C17.61 4.88 15.3 4 13 4V.76L8.76 5 13 9.24V6c1.79 0 3.58.68 4.95 2.05 2.73 2.73 2.73 7.17 0 9.9C16.58 19.32 14.79 20 13 20c-.97 0-1.94-.21-2.84-.61l-1.49 1.49C10.02 21.62 11.51 22 13 22c2.3 0 4.61-.88 6.36-2.64 3.52-3.51 3.52-9.21 0-12.72z"},"children":[]}]};exports.ic_rotate_90_degrees_ccw_twotone=ic_rotate_90_degrees_ccw_twotone;var ic_rotate_left={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7.11 8.53L5.7 7.11C4.8 8.27 4.24 9.61 4.07 11h2.02c.14-.87.49-1.72 1.02-2.47zM6.09 13H4.07c.17 1.39.72 2.73 1.62 3.89l1.41-1.42c-.52-.75-.87-1.59-1.01-2.47zm1.01 5.32c1.16.9 2.51 1.44 3.9 1.61V17.9c-.87-.15-1.71-.49-2.46-1.03L7.1 18.32zM13 4.07V1L8.45 5.55 13 10V6.09c2.84.48 5 2.94 5 5.91s-2.16 5.43-5 5.91v2.02c3.95-.49 7-3.85 7-7.93s-3.05-7.44-7-7.93z"},"children":[]}]};exports.ic_rotate_left=ic_rotate_left;var ic_rotate_left_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7.11 8.53L5.7 7.11C4.8 8.27 4.24 9.61 4.07 11h2.02c.14-.87.49-1.72 1.02-2.47zM6.09 13H4.07c.17 1.39.72 2.73 1.62 3.89l1.41-1.42c-.52-.75-.87-1.59-1.01-2.47zm1.01 5.32c1.16.9 2.51 1.44 3.9 1.61V17.9c-.87-.15-1.71-.49-2.46-1.03L7.1 18.32zM13 4.07V1L8.45 5.55 13 10V6.09c2.84.48 5 2.94 5 5.91s-2.16 5.43-5 5.91v2.02c3.95-.49 7-3.85 7-7.93s-3.05-7.44-7-7.93z"},"children":[]}]};exports.ic_rotate_left_outline=ic_rotate_left_outline;var ic_rotate_left_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13 17.91v2.02c3.95-.49 7-3.85 7-7.93s-3.05-7.44-7-7.93V1L8.45 5.55 13 10V6.09c2.84.48 5 2.94 5 5.91s-2.16 5.43-5 5.91zm-7.31-1.02l1.41-1.42c-.52-.75-.87-1.59-1.01-2.47H4.07c.17 1.39.72 2.73 1.62 3.89zm1.42-8.36L5.7 7.11C4.8 8.27 4.24 9.61 4.07 11h2.02c.14-.87.49-1.72 1.02-2.47zM11 17.9c-.87-.15-1.71-.49-2.46-1.03L7.1 18.32c1.16.9 2.51 1.44 3.9 1.61V17.9z"},"children":[]}]};exports.ic_rotate_left_twotone=ic_rotate_left_twotone;var ic_rotate_right={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.55 5.55L11 1v3.07C7.06 4.56 4 7.92 4 12s3.05 7.44 7 7.93v-2.02c-2.84-.48-5-2.94-5-5.91s2.16-5.43 5-5.91V10l4.55-4.45zM19.93 11c-.17-1.39-.72-2.73-1.62-3.89l-1.42 1.42c.54.75.88 1.6 1.02 2.47h2.02zM13 17.9v2.02c1.39-.17 2.74-.71 3.9-1.61l-1.44-1.44c-.75.54-1.59.89-2.46 1.03zm3.89-2.42l1.42 1.41c.9-1.16 1.45-2.5 1.62-3.89h-2.02c-.14.87-.48 1.72-1.02 2.48z"},"children":[]}]};exports.ic_rotate_right=ic_rotate_right;var ic_rotate_right_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.55 5.55L11 1v3.07C7.06 4.56 4 7.92 4 12s3.05 7.44 7 7.93v-2.02c-2.84-.48-5-2.94-5-5.91s2.16-5.43 5-5.91V10l4.55-4.45zM19.93 11c-.17-1.39-.72-2.73-1.62-3.89l-1.42 1.42c.54.75.88 1.6 1.02 2.47h2.02zM13 17.9v2.02c1.39-.17 2.74-.71 3.9-1.61l-1.44-1.44c-.75.54-1.59.89-2.46 1.03zm3.89-2.42l1.42 1.41c.9-1.16 1.45-2.5 1.62-3.89h-2.02c-.14.87-.48 1.72-1.02 2.48z"},"children":[]}]};exports.ic_rotate_right_outline=ic_rotate_right_outline;var ic_rotate_right_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19.93 11c-.17-1.39-.72-2.73-1.62-3.89l-1.42 1.42c.54.75.88 1.6 1.02 2.47h2.02zM11 1v3.07C7.06 4.56 4 7.92 4 12s3.05 7.44 7 7.93v-2.02c-2.84-.48-5-2.94-5-5.91s2.16-5.43 5-5.91V10l4.55-4.45L11 1zm4.46 15.87c-.75.54-1.59.89-2.46 1.03v2.02c1.39-.17 2.74-.71 3.9-1.61l-1.44-1.44zm2.85.02c.9-1.16 1.45-2.5 1.62-3.89h-2.02c-.14.87-.48 1.72-1.02 2.48l1.42 1.41z"},"children":[]}]};exports.ic_rotate_right_twotone=ic_rotate_right_twotone;var ic_shutter_speed={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15 1H9v2h6V1zm4.03 6.39l1.42-1.42c-.43-.51-.9-.99-1.41-1.41l-1.42 1.42C16.07 4.74 14.12 4 12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9 9-4.03 9-9c0-2.12-.74-4.07-1.97-5.61zM12 20c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm-.32-5H6.35c.57 1.62 1.82 2.92 3.41 3.56l-.11-.06 2.03-3.5zm5.97-4c-.57-1.6-1.78-2.89-3.34-3.54L12.26 11h5.39zm-7.04 7.83c.45.11.91.17 1.39.17 1.34 0 2.57-.45 3.57-1.19l-2.11-3.9-2.85 4.92zM7.55 8.99C6.59 10.05 6 11.46 6 13c0 .34.04.67.09 1h4.72L7.55 8.99zm8.79 8.14C17.37 16.06 18 14.6 18 13c0-.34-.04-.67-.09-1h-4.34l2.77 5.13zm-3.01-9.98C12.9 7.06 12.46 7 12 7c-1.4 0-2.69.49-3.71 1.29l2.32 3.56 2.72-4.7z"},"children":[]}]};exports.ic_shutter_speed=ic_shutter_speed;var ic_shutter_speed_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15 1H9v2h6V1zm4.03 6.39l1.42-1.42c-.43-.51-.9-.99-1.41-1.41l-1.42 1.42C16.07 4.74 14.12 4 12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9 9-4.03 9-9c0-2.12-.74-4.07-1.97-5.61zM12 20c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm-.32-5H6.35c.57 1.62 1.82 2.92 3.41 3.56l-.11-.06 2.03-3.5zm5.97-4c-.57-1.6-1.78-2.89-3.34-3.54L12.26 11h5.39zm-7.04 7.83c.45.11.91.17 1.39.17 1.34 0 2.57-.45 3.57-1.19l-2.11-3.9-2.85 4.92zM7.55 8.99C6.59 10.05 6 11.46 6 13c0 .34.04.67.09 1h4.72L7.55 8.99zm8.79 8.14C17.37 16.06 18 14.6 18 13c0-.34-.04-.67-.09-1h-4.34l2.77 5.13zm-3.01-9.98C12.9 7.06 12.46 7 12 7c-1.4 0-2.69.49-3.71 1.29l2.32 3.56 2.72-4.7z"},"children":[]}]};exports.ic_shutter_speed_outline=ic_shutter_speed_outline;var ic_shutter_speed_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 6c-3.87 0-7 3.13-7 7s3.13 7 7 7 7-3.13 7-7-3.13-7-7-7zm0 1c.46 0 .9.06 1.33.15l-2.72 4.7-2.32-3.56C9.31 7.49 10.6 7 12 7zm-6 6c0-1.54.59-2.95 1.55-4.01L10.81 14H6.09c-.05-.33-.09-.66-.09-1zm.35 2h5.33l-2.03 3.5.11.06c-1.59-.64-2.84-1.94-3.41-3.56zM12 19c-.48 0-.94-.06-1.39-.17l2.85-4.92 2.11 3.9c-1 .74-2.23 1.19-3.57 1.19zm6-6c0 1.6-.63 3.06-1.66 4.13L13.57 12h4.34c.05.33.09.66.09 1zm-5.74-2l2.05-3.54c1.56.65 2.77 1.94 3.34 3.54h-5.39z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M7.55 8.99C6.59 10.05 6 11.46 6 13c0 .34.04.67.09 1h4.72L7.55 8.99zm6.76-1.53L12.26 11h5.39c-.57-1.6-1.78-2.89-3.34-3.54zm-.98-.31C12.9 7.06 12.46 7 12 7c-1.4 0-2.69.49-3.71 1.29l2.32 3.56 2.72-4.7zM11.68 15H6.35c.57 1.62 1.82 2.92 3.41 3.56l-.11-.06 2.03-3.5zm7.35-7.61l1.42-1.42c-.43-.51-.9-.99-1.41-1.41l-1.42 1.42C16.07 4.74 14.12 4 12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9 9-4.03 9-9c0-2.12-.74-4.07-1.97-5.61zM12 20c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zM9 1h6v2H9zm7.34 16.13C17.37 16.06 18 14.6 18 13c0-.34-.04-.67-.09-1h-4.34l2.77 5.13zm-5.73 1.7c.45.11.91.17 1.39.17 1.34 0 2.57-.45 3.57-1.19l-2.11-3.9-2.85 4.92z"},"children":[]}]};exports.ic_shutter_speed_twotone=ic_shutter_speed_twotone;var ic_slideshow={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 8v8l5-4-5-4zm9-5H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z"},"children":[]}]};exports.ic_slideshow=ic_slideshow;var ic_slideshow_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 8v8l5-4-5-4zm9-5H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z"},"children":[]}]};exports.ic_slideshow_outline=ic_slideshow_outline;var ic_slideshow_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 19h14V5H5v14zm5-11l5 4-5 4V8z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM10 8v8l5-4z"},"children":[]}]};exports.ic_slideshow_twotone=ic_slideshow_twotone;var ic_straighten={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 6H3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 10H3V8h2v4h2V8h2v4h2V8h2v4h2V8h2v4h2V8h2v8z"},"children":[]}]};exports.ic_straighten=ic_straighten;var ic_straighten_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 6H3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 10H3V8h2v4h2V8h2v4h2V8h2v4h2V8h2v4h2V8h2v8z"},"children":[]}]};exports.ic_straighten_outline=ic_straighten_outline;var ic_straighten_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 12h-2V8h-2v4h-2V8h-2v4H9V8H7v4H5V8H3v8h18V8h-2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M21 6H3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 10H3V8h2v4h2V8h2v4h2V8h2v4h2V8h2v4h2V8h2v8z"},"children":[]}]};exports.ic_straighten_twotone=ic_straighten_twotone;var ic_style={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M2.53 19.65l1.34.56v-9.03l-2.43 5.86c-.41 1.02.08 2.19 1.09 2.61zm19.5-3.7L17.07 3.98c-.31-.75-1.04-1.21-1.81-1.23-.26 0-.53.04-.79.15L7.1 5.95c-.75.31-1.21 1.03-1.23 1.8-.01.27.04.54.15.8l4.96 11.97c.31.76 1.05 1.22 1.83 1.23.26 0 .52-.05.77-.15l7.36-3.05c1.02-.42 1.51-1.59 1.09-2.6zM7.88 8.75c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-2 11c0 1.1.9 2 2 2h1.45l-3.45-8.34v6.34z"},"children":[]}]};exports.ic_style=ic_style;var ic_style_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M2.53 19.65l1.34.56v-9.03l-2.43 5.86c-.41 1.02.08 2.19 1.09 2.61zm19.5-3.7L17.07 3.98c-.31-.75-1.04-1.21-1.81-1.23-.26 0-.53.04-.79.15L7.1 5.95c-.75.31-1.21 1.03-1.23 1.8-.01.27.04.54.15.8l4.96 11.97c.31.76 1.05 1.22 1.83 1.23.26 0 .52-.05.77-.15l7.36-3.05c1.02-.42 1.51-1.59 1.09-2.6zm-9.2 3.8L7.87 7.79l7.35-3.04h.01l4.95 11.95-7.35 3.05z"},"children":[]},{"name":"circle","attribs":{"cx":"11","cy":"9","r":"1"},"children":[]},{"name":"path","attribs":{"d":"M5.88 19.75c0 1.1.9 2 2 2h1.45l-3.45-8.34v6.34z"},"children":[]}]};exports.ic_style_outline=ic_style_outline;var ic_style_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.22 4.75L7.87 7.79l4.96 11.96 7.35-3.05-4.96-11.95zM11 10c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M3.87 11.18l-2.43 5.86c-.41 1.02.08 2.19 1.09 2.61l1.34.56v-9.03zm18.16 4.77L17.07 3.98c-.31-.75-1.04-1.21-1.81-1.23-.26 0-.53.04-.79.15L7.1 5.95c-.75.31-1.21 1.03-1.23 1.8-.01.27.04.54.15.8l4.96 11.97c.31.76 1.05 1.22 1.83 1.23.26 0 .52-.05.77-.15l7.36-3.05c1.02-.42 1.51-1.59 1.09-2.6zm-9.2 3.8L7.87 7.79l7.35-3.04h.01l4.95 11.95-7.35 3.05z"},"children":[]},{"name":"circle","attribs":{"cx":"11","cy":"9","r":"1"},"children":[]},{"name":"path","attribs":{"d":"M9.33 21.75l-3.45-8.34v6.34c0 1.1.9 2 2 2h1.45z"},"children":[]}]};exports.ic_style_twotone=ic_style_twotone;var ic_switch_camera={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 4h-3.17L15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-5 11.5V13H9v2.5L5.5 12 9 8.5V11h6V8.5l3.5 3.5-3.5 3.5z"},"children":[]}]};exports.ic_switch_camera=ic_switch_camera;var ic_switch_camera_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 4h-3.17L15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM9.88 4h4.24l1.83 2H20v12H4V6h4.05"},"children":[]},{"name":"path","attribs":{"d":"M15 11H9V8.5L5.5 12 9 15.5V13h6v2.5l3.5-3.5L15 8.5z"},"children":[]}]};exports.ic_switch_camera_outline=ic_switch_camera_outline;var ic_switch_camera_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14.12 4H9.88L8.05 6H4v12h16V6h-4.05l-1.83-2zM15 15.5V13H9v2.5L5.5 12 9 8.5V11h6V8.5l3.5 3.5-3.5 3.5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 4h-3.17L15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h4.05l1.83-2h4.24l1.83 2H20v12zm-5-7H9V8.5L5.5 12 9 15.5V13h6v2.5l3.5-3.5L15 8.5z"},"children":[]}]};exports.ic_switch_camera_twotone=ic_switch_camera_twotone;var ic_switch_video={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 9.5V6c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-3.5l4 4v-13l-4 4zm-5 6V13H7v2.5L3.5 12 7 8.5V11h6V8.5l3.5 3.5-3.5 3.5z"},"children":[]}]};exports.ic_switch_video=ic_switch_video;var ic_switch_video_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8 13h4v2l3-3-3-3v2H8V9l-3 3 3 3zm10-3.5V6c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-3.5l4 4v-13l-4 4zM16 17H4V7h12v10z"},"children":[]}]};exports.ic_switch_video_outline=ic_switch_video_outline;var ic_switch_video_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 17h12V7H4v10zm4-8v2h4V9l3 3-3 3v-2H8v2l-3-3 3-3z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M8 13h4v2l3-3-3-3v2H8V9l-3 3 3 3zm10-3.5V6c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-3.5l4 4v-13l-4 4zM16 17H4V7h12v10z"},"children":[]}]};exports.ic_switch_video_twotone=ic_switch_video_twotone;var ic_tag_faces={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 6.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z"},"children":[]}]};exports.ic_tag_faces=ic_tag_faces;var ic_tag_faces_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 6.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z"},"children":[]}]};exports.ic_tag_faces_outline=ic_tag_faces_outline;var ic_tag_faces_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm3.5 4c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-7 0c.83 0 1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5 7.67 8 8.5 8zm3.5 9.5c-2.33 0-4.31-1.46-5.11-3.5h10.22c-.8 2.04-2.78 3.5-5.11 3.5z","opacity":".3"},"children":[]},{"name":"circle","attribs":{"cx":"8.5","cy":"9.5","r":"1.5"},"children":[]},{"name":"path","attribs":{"d":"M12 17.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z"},"children":[]},{"name":"circle","attribs":{"cx":"15.5","cy":"9.5","r":"1.5"},"children":[]},{"name":"path","attribs":{"d":"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"},"children":[]}]};exports.ic_tag_faces_twotone=ic_tag_faces_twotone;var ic_texture={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19.51 3.08L3.08 19.51c.09.34.27.65.51.9.25.24.56.42.9.51L20.93 4.49c-.19-.69-.73-1.23-1.42-1.41zM11.88 3L3 11.88v2.83L14.71 3h-2.83zM5 3c-1.1 0-2 .9-2 2v2l4-4H5zm14 18c.55 0 1.05-.22 1.41-.59.37-.36.59-.86.59-1.41v-2l-4 4h2zm-9.71 0h2.83L21 12.12V9.29L9.29 21z"},"children":[]}]};exports.ic_texture=ic_texture;var ic_texture_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19.51 3.08L3.08 19.51c.09.34.27.65.51.9.25.24.56.42.9.51L20.93 4.49c-.19-.69-.73-1.23-1.42-1.41zM11.88 3L3 11.88v2.83L14.71 3h-2.83zM5 3c-1.1 0-2 .9-2 2v2l4-4H5zm14 18c.55 0 1.05-.22 1.41-.59.37-.36.59-.86.59-1.41v-2l-4 4h2zm-9.71 0h2.83L21 12.12V9.29L9.29 21z"},"children":[]}]};exports.ic_texture_outline=ic_texture_outline;var ic_texture_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11.88 3L3 11.88v2.83L14.71 3zM3 5v2l4-4H5c-1.1 0-2 .9-2 2zm16.51-1.92L3.08 19.51c.09.34.27.65.51.9.25.24.56.42.9.51L20.93 4.49c-.19-.69-.73-1.23-1.42-1.41zM21 9.29L9.29 21h2.83L21 12.12zm-.59 11.12c.37-.36.59-.86.59-1.41v-2l-4 4h2c.55 0 1.05-.22 1.41-.59z"},"children":[]}]};exports.ic_texture_twotone=ic_texture_twotone;var ic_timelapse={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16.24 7.76C15.07 6.59 13.54 6 12 6v6l-4.24 4.24c2.34 2.34 6.14 2.34 8.49 0 2.34-2.34 2.34-6.14-.01-8.48zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"},"children":[]}]};exports.ic_timelapse=ic_timelapse;var ic_timelapse_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16.24 7.75c-1.17-1.17-2.7-1.76-4.24-1.76v6l-4.24 4.24c2.34 2.34 6.14 2.34 8.49 0 2.34-2.34 2.34-6.14-.01-8.48zM12 1.99c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"},"children":[]}]};exports.ic_timelapse_outline=ic_timelapse_outline;var ic_timelapse_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 3.99c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm4.25 12.24c-2.35 2.34-6.15 2.34-8.49 0L12 11.99v-6c1.54 0 3.07.59 4.24 1.76 2.35 2.34 2.35 6.14.01 8.48z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M16.24 7.75c-1.17-1.17-2.7-1.76-4.24-1.76v6l-4.24 4.24c2.34 2.34 6.14 2.34 8.49 0 2.34-2.34 2.34-6.14-.01-8.48zM12 1.99c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"},"children":[]}]};exports.ic_timelapse_twotone=ic_timelapse_twotone;var ic_timer={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15 1H9v2h6V1zm-4 13h2V8h-2v6zm8.03-6.61l1.42-1.42c-.43-.51-.9-.99-1.41-1.41l-1.42 1.42C16.07 4.74 14.12 4 12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9 9-4.03 9-9c0-2.12-.74-4.07-1.97-5.61zM12 20c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z"},"children":[]}]};exports.ic_timer=ic_timer;var ic_timer_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.07 1.01h-6v2h6v-2zm-4 13h2v-6h-2v6zm8.03-6.62l1.42-1.42c-.43-.51-.9-.99-1.41-1.41l-1.42 1.42C16.14 4.74 14.19 4 12.07 4c-4.97 0-9 4.03-9 9s4.02 9 9 9 9-4.03 9-9c0-2.11-.74-4.06-1.97-5.61zm-7.03 12.62c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z"},"children":[]}]};exports.ic_timer_outline=ic_timer_outline;var ic_timer_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12.07 6.01c-3.87 0-7 3.13-7 7s3.13 7 7 7 7-3.13 7-7-3.13-7-7-7zm1 8h-2v-6h2v6z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M9.07 1.01h6v2h-6zm2 7h2v6h-2zm8.03-.62l1.42-1.42c-.43-.51-.9-.99-1.41-1.41l-1.42 1.42C16.14 4.74 14.19 4 12.07 4c-4.97 0-9 4.03-9 9s4.02 9 9 9 9-4.03 9-9c0-2.11-.74-4.07-1.97-5.61zm-7.03 12.62c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z"},"children":[]}]};exports.ic_timer_twotone=ic_timer_twotone;var ic_timer_10={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0zm0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M0 7.72V9.4l3-1V18h2V6h-.25L0 7.72zm23.78 6.65c-.14-.28-.35-.53-.63-.74-.28-.21-.61-.39-1.01-.53s-.85-.27-1.35-.38c-.35-.07-.64-.15-.87-.23-.23-.08-.41-.16-.55-.25-.14-.09-.23-.19-.28-.3-.05-.11-.08-.24-.08-.39 0-.14.03-.28.09-.41.06-.13.15-.25.27-.34.12-.1.27-.18.45-.24s.4-.09.64-.09c.25 0 .47.04.66.11.19.07.35.17.48.29.13.12.22.26.29.42.06.16.1.32.1.49h1.95c0-.39-.08-.75-.24-1.09-.16-.34-.39-.63-.69-.88-.3-.25-.66-.44-1.09-.59C21.49 9.07 21 9 20.46 9c-.51 0-.98.07-1.39.21-.41.14-.77.33-1.06.57-.29.24-.51.52-.67.84-.16.32-.23.65-.23 1.01s.08.69.23.96c.15.28.36.52.64.73.27.21.6.38.98.53.38.14.81.26 1.27.36.39.08.71.17.95.26s.43.19.57.29c.13.1.22.22.27.34.05.12.07.25.07.39 0 .32-.13.57-.4.77-.27.2-.66.29-1.17.29-.22 0-.43-.02-.64-.08-.21-.05-.4-.13-.56-.24-.17-.11-.3-.26-.41-.44-.11-.18-.17-.41-.18-.67h-1.89c0 .36.08.71.24 1.05.16.34.39.65.7.93.31.27.69.49 1.15.66.46.17.98.25 1.58.25.53 0 1.01-.06 1.44-.19.43-.13.8-.31 1.11-.54.31-.23.54-.51.71-.83.17-.32.25-.67.25-1.06-.02-.4-.09-.74-.24-1.02zm-9.96-7.32c-.34-.4-.75-.7-1.23-.88-.47-.18-1.01-.27-1.59-.27-.58 0-1.11.09-1.59.27-.48.18-.89.47-1.23.88-.34.41-.6.93-.79 1.59-.18.65-.28 1.45-.28 2.39v1.92c0 .94.09 1.74.28 2.39.19.66.45 1.19.8 1.6.34.41.75.71 1.23.89.48.18 1.01.28 1.59.28.59 0 1.12-.09 1.59-.28.48-.18.88-.48 1.22-.89.34-.41.6-.94.78-1.6.18-.65.28-1.45.28-2.39v-1.92c0-.94-.09-1.74-.28-2.39-.18-.66-.44-1.19-.78-1.59zm-.92 6.17c0 .6-.04 1.11-.12 1.53-.08.42-.2.76-.36 1.02-.16.26-.36.45-.59.57-.23.12-.51.18-.82.18-.3 0-.58-.06-.82-.18s-.44-.31-.6-.57c-.16-.26-.29-.6-.38-1.02-.09-.42-.13-.93-.13-1.53v-2.5c0-.6.04-1.11.13-1.52.09-.41.21-.74.38-1 .16-.25.36-.43.6-.55.24-.11.51-.17.81-.17.31 0 .58.06.81.17.24.11.44.29.6.55.16.25.29.58.37.99.08.41.13.92.13 1.52v2.51z"},"children":[]}]};exports.ic_timer_10=ic_timer_10;var ic_timer_10_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M-.01 7.72V9.4l3-1V18h2V6h-.25L-.01 7.72zm23.78 6.65c-.14-.28-.35-.53-.63-.74-.28-.21-.61-.39-1.01-.53s-.85-.27-1.35-.38c-.35-.07-.64-.15-.87-.23-.23-.08-.41-.16-.55-.25s-.23-.19-.28-.3c-.05-.11-.08-.24-.08-.39 0-.14.03-.28.09-.41s.15-.25.27-.34c.12-.1.27-.18.45-.24s.4-.09.64-.09c.25 0 .47.04.66.11s.35.17.48.29.22.26.29.42c.06.16.1.32.1.49h1.95c0-.39-.08-.75-.24-1.09s-.39-.63-.69-.88c-.3-.25-.66-.44-1.09-.59-.43-.15-.92-.22-1.46-.22-.51 0-.98.07-1.39.21s-.77.33-1.06.57c-.29.24-.51.52-.67.84-.16.32-.23.65-.23 1.01s.08.69.23.96c.15.28.36.52.64.73.27.21.6.38.98.53.38.14.81.26 1.27.36.39.08.71.17.95.26s.43.19.57.29c.13.1.22.22.27.34.05.12.07.25.07.39 0 .32-.13.57-.4.77s-.66.29-1.17.29c-.22 0-.43-.02-.64-.08-.21-.05-.4-.13-.56-.24-.17-.11-.3-.26-.41-.44-.11-.18-.17-.41-.18-.67h-1.89c0 .36.08.71.24 1.05s.39.65.7.93c.31.27.69.49 1.15.66s.98.25 1.58.25c.53 0 1.01-.06 1.44-.19.43-.13.8-.31 1.11-.54.31-.23.54-.51.71-.83.17-.32.25-.67.25-1.06-.02-.4-.09-.74-.24-1.02zm-9.96-7.32c-.34-.4-.75-.7-1.23-.88-.47-.18-1.01-.27-1.59-.27s-1.11.09-1.59.27c-.48.18-.89.47-1.23.88-.34.41-.6.93-.79 1.59-.18.65-.28 1.45-.28 2.39v1.92c0 .94.09 1.74.28 2.39.19.66.45 1.19.8 1.6.34.41.75.71 1.23.89s1.01.28 1.59.28c.59 0 1.12-.09 1.59-.28.48-.18.88-.48 1.22-.89s.6-.94.78-1.6c.18-.65.28-1.45.28-2.39v-1.92c0-.94-.09-1.74-.28-2.39-.18-.66-.44-1.19-.78-1.59zm-.92 6.17c0 .6-.04 1.11-.12 1.53s-.2.76-.36 1.02c-.16.26-.36.45-.59.57-.23.12-.51.18-.82.18-.3 0-.58-.06-.82-.18s-.44-.31-.6-.57c-.16-.26-.29-.6-.38-1.02s-.13-.93-.13-1.53v-2.5c0-.6.04-1.11.13-1.52s.21-.74.38-1c.16-.25.36-.43.6-.55.24-.11.51-.17.81-.17.31 0 .58.06.81.17.24.11.44.29.6.55.16.25.29.58.37.99s.13.92.13 1.52v2.51h-.01z"},"children":[]}]};exports.ic_timer_10_outline=ic_timer_10_outline;var ic_timer_10_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M2.99 18h2V6h-.25L-.01 7.72V9.4l3-1zm9.59-11.83c-.47-.18-1.01-.27-1.59-.27s-1.11.09-1.59.27c-.48.18-.89.47-1.23.88-.34.41-.6.93-.79 1.59-.18.65-.28 1.45-.28 2.39v1.92c0 .94.09 1.74.28 2.39.19.66.45 1.19.8 1.6.34.41.75.71 1.23.89.48.18 1.01.28 1.59.28.59 0 1.12-.09 1.59-.28.48-.18.88-.48 1.22-.89.34-.41.6-.94.78-1.6.18-.65.28-1.45.28-2.39v-1.92c0-.94-.09-1.74-.28-2.39-.18-.66-.44-1.19-.78-1.59s-.75-.7-1.23-.88zm.32 7.05h-.01c0 .6-.04 1.11-.12 1.53-.08.42-.2.76-.36 1.02-.16.26-.36.45-.59.57s-.51.18-.82.18c-.3 0-.58-.06-.82-.18s-.44-.31-.6-.57c-.16-.26-.29-.6-.38-1.02-.09-.42-.13-.93-.13-1.53v-2.5c0-.6.04-1.11.13-1.52.09-.41.21-.74.38-1 .16-.25.36-.43.6-.55.24-.11.51-.17.81-.17.31 0 .58.06.81.17.24.11.44.29.6.55.16.25.29.58.37.99.08.41.13.92.13 1.52v2.51zm10.24.41c-.28-.21-.61-.39-1.01-.53s-.85-.27-1.35-.38c-.35-.07-.64-.15-.87-.23-.23-.08-.41-.16-.55-.25-.14-.09-.23-.19-.28-.3-.05-.11-.08-.24-.08-.39 0-.14.03-.28.09-.41.06-.13.15-.25.27-.34.12-.1.27-.18.45-.24s.4-.09.64-.09c.25 0 .47.04.66.11.19.07.35.17.48.29.13.12.22.26.29.42.06.16.1.32.1.49h1.95c0-.39-.08-.75-.24-1.09-.16-.34-.39-.63-.69-.88s-.66-.44-1.09-.59c-.43-.15-.92-.22-1.46-.22-.51 0-.98.07-1.39.21-.41.14-.77.33-1.06.57s-.51.52-.67.84c-.16.32-.23.65-.23 1.01s.08.69.23.96c.15.28.36.52.64.73.27.21.6.38.98.53.38.14.81.26 1.27.36.39.08.71.17.95.26s.43.19.57.29c.13.1.22.22.27.34s.07.25.07.39c0 .32-.13.57-.4.77-.27.2-.66.29-1.17.29-.22 0-.43-.02-.64-.08-.21-.05-.4-.13-.56-.24-.17-.11-.3-.26-.41-.44-.11-.18-.17-.41-.18-.67h-1.89c0 .36.08.71.24 1.05.16.34.39.65.7.93.31.27.69.49 1.15.66.46.17.98.25 1.58.25.53 0 1.01-.06 1.44-.19s.8-.31 1.11-.54c.31-.23.54-.51.71-.83.17-.32.25-.67.25-1.06-.02-.4-.09-.74-.24-1.02-.14-.28-.35-.53-.63-.74z"},"children":[]}]};exports.ic_timer_10_twotone=ic_timer_10_twotone;var ic_timer_3={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0zm0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11.61 12.97c-.16-.24-.36-.46-.62-.65-.25-.19-.56-.35-.93-.48.3-.14.57-.3.8-.5.23-.2.42-.41.57-.64.15-.23.27-.46.34-.71.08-.24.11-.49.11-.73 0-.55-.09-1.04-.28-1.46-.18-.42-.44-.77-.78-1.06-.33-.28-.73-.5-1.2-.64-.45-.13-.97-.2-1.53-.2-.55 0-1.06.08-1.52.24-.47.17-.87.4-1.2.69-.33.29-.6.63-.78 1.03-.2.39-.29.83-.29 1.29h1.98c0-.26.05-.49.14-.69.09-.2.22-.38.38-.52.17-.14.36-.25.58-.33.22-.08.46-.12.73-.12.61 0 1.06.16 1.36.47.3.31.44.75.44 1.32 0 .27-.04.52-.12.74-.08.22-.21.41-.38.57-.17.16-.38.28-.63.37-.25.09-.55.13-.89.13H6.72v1.57H7.9c.34 0 .64.04.91.11.27.08.5.19.69.35.19.16.34.36.44.61.1.24.16.54.16.87 0 .62-.18 1.09-.53 1.42-.35.33-.84.49-1.45.49-.29 0-.56-.04-.8-.13-.24-.08-.44-.2-.61-.36-.17-.16-.3-.34-.39-.56-.09-.22-.14-.46-.14-.72H4.19c0 .55.11 1.03.32 1.45.21.42.5.77.86 1.05s.77.49 1.24.63.96.21 1.48.21c.57 0 1.09-.08 1.58-.23.49-.15.91-.38 1.26-.68.36-.3.64-.66.84-1.1.2-.43.3-.93.3-1.48 0-.29-.04-.58-.11-.86-.08-.25-.19-.51-.35-.76zm9.26 1.4c-.14-.28-.35-.53-.63-.74-.28-.21-.61-.39-1.01-.53s-.85-.27-1.35-.38c-.35-.07-.64-.15-.87-.23-.23-.08-.41-.16-.55-.25-.14-.09-.23-.19-.28-.3-.05-.11-.08-.24-.08-.39s.03-.28.09-.41c.06-.13.15-.25.27-.34.12-.1.27-.18.45-.24s.4-.09.64-.09c.25 0 .47.04.66.11.19.07.35.17.48.29.13.12.22.26.29.42.06.16.1.32.1.49h1.95c0-.39-.08-.75-.24-1.09-.16-.34-.39-.63-.69-.88-.3-.25-.66-.44-1.09-.59-.43-.15-.92-.22-1.46-.22-.51 0-.98.07-1.39.21-.41.14-.77.33-1.06.57-.29.24-.51.52-.67.84-.16.32-.23.65-.23 1.01s.08.68.23.96c.15.28.37.52.64.73.27.21.6.38.98.53.38.14.81.26 1.27.36.39.08.71.17.95.26s.43.19.57.29c.13.1.22.22.27.34.05.12.07.25.07.39 0 .32-.13.57-.4.77-.27.2-.66.29-1.17.29-.22 0-.43-.02-.64-.08-.21-.05-.4-.13-.56-.24-.17-.11-.3-.26-.41-.44-.11-.18-.17-.41-.18-.67h-1.89c0 .36.08.71.24 1.05.16.34.39.65.7.93.31.27.69.49 1.15.66.46.17.98.25 1.58.25.53 0 1.01-.06 1.44-.19.43-.13.8-.31 1.11-.54.31-.23.54-.51.71-.83.17-.32.25-.67.25-1.06-.02-.4-.09-.74-.24-1.02z"},"children":[]}]};exports.ic_timer_3=ic_timer_3;var ic_timer_3_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11.61 12.97c-.16-.24-.36-.46-.62-.65-.25-.19-.56-.35-.93-.48.3-.14.57-.3.8-.5.23-.2.42-.41.57-.64.15-.23.27-.46.34-.71.08-.24.11-.49.11-.73 0-.55-.09-1.04-.28-1.46-.18-.42-.44-.77-.78-1.06-.33-.28-.73-.5-1.2-.64-.45-.13-.97-.2-1.53-.2-.55 0-1.06.08-1.52.24-.47.17-.87.4-1.2.69-.33.29-.6.63-.78 1.03-.2.39-.29.83-.29 1.29h1.98c0-.26.05-.49.14-.69.09-.2.22-.38.38-.52.17-.14.36-.25.58-.33s.46-.12.73-.12c.61 0 1.06.16 1.36.47.3.31.44.75.44 1.32 0 .27-.04.52-.12.74-.08.22-.21.41-.38.57s-.38.28-.63.37-.55.13-.89.13H6.72v1.57H7.9c.34 0 .64.04.91.11.27.08.5.19.69.35.19.16.34.36.44.61.1.24.16.54.16.87 0 .62-.18 1.09-.53 1.42-.35.33-.84.49-1.45.49-.29 0-.56-.04-.8-.13-.24-.08-.44-.2-.61-.36s-.3-.34-.39-.56c-.09-.22-.14-.46-.14-.72H4.19c0 .55.11 1.03.32 1.45.21.42.5.77.86 1.05s.77.49 1.24.63.96.21 1.48.21c.57 0 1.09-.08 1.58-.23s.91-.38 1.26-.68c.36-.3.64-.66.84-1.1.2-.43.3-.93.3-1.48 0-.29-.04-.58-.11-.86-.08-.25-.19-.51-.35-.76zm9.26 1.4c-.14-.28-.35-.53-.63-.74-.28-.21-.61-.39-1.01-.53s-.85-.27-1.35-.38c-.35-.07-.64-.15-.87-.23-.23-.08-.41-.16-.55-.25s-.23-.19-.28-.3c-.05-.11-.08-.24-.08-.39s.03-.28.09-.41.15-.25.27-.34c.12-.1.27-.18.45-.24s.4-.09.64-.09c.25 0 .47.04.66.11s.35.17.48.29.22.26.29.42c.06.16.1.32.1.49h1.95c0-.39-.08-.75-.24-1.09s-.39-.63-.69-.88c-.3-.25-.66-.44-1.09-.59-.43-.15-.92-.22-1.46-.22-.51 0-.98.07-1.39.21s-.77.33-1.06.57c-.29.24-.51.52-.67.84s-.23.65-.23 1.01.08.68.23.96.37.52.64.73c.27.21.6.38.98.53.38.14.81.26 1.27.36.39.08.71.17.95.26s.43.19.57.29c.13.1.22.22.27.34.05.12.07.25.07.39 0 .32-.13.57-.4.77s-.66.29-1.17.29c-.22 0-.43-.02-.64-.08-.21-.05-.4-.13-.56-.24-.17-.11-.3-.26-.41-.44-.11-.18-.17-.41-.18-.67h-1.89c0 .36.08.71.24 1.05s.39.65.7.93c.31.27.69.49 1.15.66.46.17.98.25 1.58.25.53 0 1.01-.06 1.44-.19.43-.13.8-.31 1.11-.54.31-.23.54-.51.71-.83.17-.32.25-.67.25-1.06-.02-.4-.09-.74-.24-1.02z"},"children":[]}]};exports.ic_timer_3_outline=ic_timer_3_outline;var ic_timer_3_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16.46 10.8c.12-.1.27-.18.45-.24s.4-.09.64-.09c.25 0 .47.04.66.11.19.07.35.17.48.29s.22.26.29.42c.06.16.1.32.1.49h1.95c0-.39-.08-.75-.24-1.09-.16-.34-.39-.63-.69-.88-.3-.25-.66-.44-1.09-.59-.43-.15-.92-.22-1.46-.22-.51 0-.98.07-1.39.21-.41.14-.77.33-1.06.57-.29.24-.51.52-.67.84-.16.32-.23.65-.23 1.01s.08.68.23.96c.15.28.37.52.64.73.27.21.6.38.98.53.38.14.81.26 1.27.36.39.08.71.17.95.26s.43.19.57.29c.13.1.22.22.27.34s.07.25.07.39c0 .32-.13.57-.4.77-.27.2-.66.29-1.17.29-.22 0-.43-.02-.64-.08-.21-.05-.4-.13-.56-.24-.17-.11-.3-.26-.41-.44s-.17-.41-.18-.67h-1.89c0 .36.08.71.24 1.05.16.34.39.65.7.93.31.27.69.49 1.15.66.46.17.98.25 1.58.25.53 0 1.01-.06 1.44-.19.43-.13.8-.31 1.11-.54.31-.23.54-.51.71-.83.17-.32.25-.67.25-1.06-.02-.4-.09-.74-.24-1.02-.14-.28-.35-.53-.63-.74-.28-.21-.61-.39-1.01-.53s-.85-.27-1.35-.38c-.35-.07-.64-.15-.87-.23s-.41-.16-.55-.25c-.14-.09-.23-.19-.28-.3-.05-.11-.08-.24-.08-.39s.03-.28.09-.41c.06-.13.15-.25.27-.34zm-8.34 5.71c-.29 0-.56-.04-.8-.13-.24-.08-.44-.2-.61-.36-.17-.16-.3-.34-.39-.56-.09-.22-.14-.46-.14-.72H4.19c0 .55.11 1.03.32 1.45.21.42.5.77.86 1.05s.77.49 1.24.63.96.21 1.48.21c.57 0 1.09-.08 1.58-.23.49-.15.91-.38 1.26-.68.36-.3.64-.66.84-1.1.2-.43.3-.93.3-1.48 0-.29-.04-.58-.11-.86-.08-.25-.19-.51-.35-.76-.16-.24-.36-.46-.62-.65-.25-.19-.56-.35-.93-.48.3-.14.57-.3.8-.5.23-.2.42-.41.57-.64.15-.23.27-.46.34-.71.08-.24.11-.49.11-.73 0-.55-.09-1.04-.28-1.46-.18-.42-.44-.77-.78-1.06-.33-.28-.73-.5-1.2-.64-.45-.13-.97-.2-1.53-.2-.55 0-1.06.08-1.52.24-.47.17-.87.4-1.2.69-.33.29-.6.63-.78 1.03-.2.39-.29.83-.29 1.29h1.98c0-.26.05-.49.14-.69.09-.2.22-.38.38-.52.17-.14.36-.25.58-.33.22-.08.46-.12.73-.12.61 0 1.06.16 1.36.47.3.31.44.75.44 1.32 0 .27-.04.52-.12.74-.08.22-.21.41-.38.57-.17.16-.38.28-.63.37-.25.09-.55.13-.89.13H6.72v1.57H7.9c.34 0 .64.04.91.11.27.08.5.19.69.35.19.16.34.36.44.61.1.24.16.54.16.87 0 .62-.18 1.09-.53 1.42-.35.33-.84.49-1.45.49z"},"children":[]}]};exports.ic_timer_3_twotone=ic_timer_3_twotone;var ic_timer_off={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0zm0 0h24v24H0zm0 0h24v24H0zm0 0h24v24H0zm0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19.04 4.55l-1.42 1.42C16.07 4.74 14.12 4 12 4c-1.83 0-3.53.55-4.95 1.48l1.46 1.46C9.53 6.35 10.73 6 12 6c3.87 0 7 3.13 7 7 0 1.27-.35 2.47-.94 3.49l1.45 1.45C20.45 16.53 21 14.83 21 13c0-2.12-.74-4.07-1.97-5.61l1.42-1.42-1.41-1.42zM15 1H9v2h6V1zm-4 8.44l2 2V8h-2v1.44zM3.02 4L1.75 5.27 4.5 8.03C3.55 9.45 3 11.16 3 13c0 4.97 4.02 9 9 9 1.84 0 3.55-.55 4.98-1.5l2.5 2.5 1.27-1.27-7.71-7.71L3.02 4zM12 20c-3.87 0-7-3.13-7-7 0-1.28.35-2.48.95-3.52l9.56 9.56c-1.03.61-2.23.96-3.51.96z"},"children":[]}]};exports.ic_timer_off=ic_timer_off;var ic_timer_off_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11 8v.86l2 2V8zM9 1h6v2H9zm3 5c3.87 0 7 3.13 7 7 0 1.12-.27 2.18-.74 3.12l1.47 1.47C20.53 16.25 21 14.68 21 13c0-2.12-.74-4.07-1.97-5.61l1.42-1.42c-.43-.51-.9-.99-1.41-1.41l-1.42 1.42C16.07 4.74 14.12 4 12 4c-1.68 0-3.25.47-4.59 1.27l1.47 1.47c.94-.47 2-.74 3.12-.74zM3.16 3.86L1.75 5.27 4.5 8.02C3.56 9.45 3 11.16 3 13c0 4.97 4.02 9 9 9 1.84 0 3.55-.55 4.98-1.5l2.5 2.5 1.41-1.41L3.16 3.86zM12 20c-3.87 0-7-3.13-7-7 0-1.29.35-2.49.96-3.52l9.57 9.57c-1.04.6-2.24.95-3.53.95z"},"children":[]}]};exports.ic_timer_off_outline=ic_timer_off_outline;var ic_timer_off_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 6c-1.12 0-2.18.27-3.12.74L11 8.86V8h2v2.86l5.26 5.26c.47-.94.74-2 .74-3.12 0-3.87-3.13-7-7-7zm0 14c1.29 0 2.49-.35 3.52-.96L5.96 9.48C5.35 10.51 5 11.71 5 13c0 3.87 3.13 7 7 7z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 6c3.87 0 7 3.13 7 7 0 1.12-.27 2.18-.74 3.12l1.47 1.47C20.53 16.25 21 14.68 21 13c0-2.12-.74-4.07-1.97-5.61l1.42-1.42c-.43-.51-.9-.99-1.41-1.41l-1.42 1.42C16.07 4.74 14.12 4 12 4c-1.68 0-3.25.47-4.59 1.27l1.47 1.47c.94-.47 2-.74 3.12-.74zm-1 2v.86l2 2V8zM9 1h6v2H9zM3.16 3.86L1.75 5.27 4.5 8.02C3.56 9.45 3 11.16 3 13c0 4.97 4.02 9 9 9 1.84 0 3.55-.55 4.98-1.5l2.5 2.5 1.41-1.41L3.16 3.86zM12 20c-3.87 0-7-3.13-7-7 0-1.29.35-2.49.96-3.52l9.57 9.57c-1.04.6-2.24.95-3.53.95z"},"children":[]}]};exports.ic_timer_off_twotone=ic_timer_off_twotone;var ic_tonality={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.94-.49-7-3.85-7-7.93s3.05-7.44 7-7.93v15.86zm2-15.86c1.03.13 2 .45 2.87.93H13v-.93zM13 7h5.24c.25.31.48.65.68 1H13V7zm0 3h6.74c.08.33.15.66.19 1H13v-1zm0 9.93V19h2.87c-.87.48-1.84.8-2.87.93zM18.24 17H13v-1h5.92c-.2.35-.43.69-.68 1zm1.5-3H13v-1h6.93c-.04.34-.11.67-.19 1z"},"children":[]}]};exports.ic_tonality=ic_tonality;var ic_tonality_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.94-.49-7-3.85-7-7.93s3.05-7.44 7-7.93v15.86zm2-15.86c1.03.13 2 .45 2.87.93H13v-.93zM13 7h5.24c.25.31.48.65.68 1H13V7zm0 3h6.74c.08.33.15.66.19 1H13v-1zm0 9.93V19h2.87c-.87.48-1.84.8-2.87.93zM18.24 17H13v-1h5.92c-.2.35-.43.69-.68 1zm1.5-3H13v-1h6.93c-.04.34-.11.67-.19 1z"},"children":[]}]};exports.ic_tonality_outline=ic_tonality_outline;var ic_tonality_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 12c0 4.08 3.06 7.44 7 7.93V4.07C7.05 4.56 4 7.92 4 12z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.94-.49-7-3.85-7-7.93s3.05-7.44 7-7.93v15.86zm2-15.86c1.03.13 2 .45 2.87.93H13v-.93zM13 7h5.24c.25.31.48.65.68 1H13V7zm0 3h6.74c.08.33.15.66.19 1H13v-1zm0 9.93V19h2.87c-.87.48-1.84.8-2.87.93zM18.24 17H13v-1h5.92c-.2.35-.43.69-.68 1zm1.5-3H13v-1h6.93c-.04.34-.11.67-.19 1z"},"children":[]}]};exports.ic_tonality_twotone=ic_tonality_twotone;var ic_transform={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 18v-2H8V4h2L7 1 4 4h2v2H2v2h4v8c0 1.1.9 2 2 2h8v2h-2l3 3 3-3h-2v-2h4zM10 8h6v6h2V8c0-1.1-.9-2-2-2h-6v2z"},"children":[]}]};exports.ic_transform=ic_transform;var ic_transform_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 18v-2H8V4h2L7 1 4 4h2v2H2v2h4v8c0 1.1.9 2 2 2h8v2h-2l3 3 3-3h-2v-2h4zM10 8h6v6h2V8c0-1.1-.9-2-2-2h-6v2z"},"children":[]}]};exports.ic_transform_outline=ic_transform_outline;var ic_transform_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8 4h2L7 1 4 4h2v2H2v2h4v8c0 1.1.9 2 2 2h8v2h-2l3 3 3-3h-2v-2h4v-2H8V4zm10 10V8c0-1.1-.9-2-2-2h-6v2h6v6h2z"},"children":[]}]};exports.ic_transform_twotone=ic_transform_twotone;var ic_tune={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 17v2h6v-2H3zM3 5v2h10V5H3zm10 16v-2h8v-2h-8v-2h-2v6h2zM7 9v2H3v2h4v2h2V9H7zm14 4v-2H11v2h10zm-6-4h2V7h4V5h-4V3h-2v6z"},"children":[]}]};exports.ic_tune=ic_tune;var ic_tune_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 17v2h6v-2H3zM3 5v2h10V5H3zm10 16v-2h8v-2h-8v-2h-2v6h2zM7 9v2H3v2h4v2h2V9H7zm14 4v-2H11v2h10zm-6-4h2V7h4V5h-4V3h-2v6z"},"children":[]}]};exports.ic_tune_outline=ic_tune_outline;var ic_tune_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 5h10v2H3zm4 6H3v2h4v2h2V9H7zm6 4h-2v6h2v-2h8v-2h-8zM3 17h6v2H3zm8-6h10v2H11zm6-8h-2v6h2V7h4V5h-4z"},"children":[]}]};exports.ic_tune_twotone=ic_tune_twotone;var ic_view_comfy={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 9h4V5H3v4zm0 5h4v-4H3v4zm5 0h4v-4H8v4zm5 0h4v-4h-4v4zM8 9h4V5H8v4zm5-4v4h4V5h-4zm5 9h4v-4h-4v4zM3 19h4v-4H3v4zm5 0h4v-4H8v4zm5 0h4v-4h-4v4zm5 0h4v-4h-4v4zm0-14v4h4V5h-4z"},"children":[]}]};exports.ic_view_comfy=ic_view_comfy;var ic_view_comfy_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 5v14h19V5H3zm17 4h-2.25V7H20v2zM9.25 11h2.25v2H9.25v-2zm-2 2H5v-2h2.25v2zm4.25-4H9.25V7h2.25v2zm2-2h2.25v2H13.5V7zm-2 8v2H9.25v-2h2.25zm2 0h2.25v2H13.5v-2zm0-2v-2h2.25v2H13.5zm4.25-2H20v2h-2.25v-2zM7.25 7v2H5V7h2.25zM5 15h2.25v2H5v-2zm12.75 2v-2H20v2h-2.25z"},"children":[]}]};exports.ic_view_comfy_outline=ic_view_comfy_outline;var ic_view_comfy_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9.25 11h2.25v2H9.25zm0 4h2.25v2H9.25zm0-8h2.25v2H9.25zm4.25 8h2.25v2H13.5zM5 15h2.25v2H5zm0-4h2.25v2H5zm0-4h2.25v2H5zm12.75 0H20v2h-2.25zm-4.25 4h2.25v2H13.5zm0-4h2.25v2H13.5zm4.25 8H20v2h-2.25zm0-4H20v2h-2.25z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M3 5v14h19V5H3zm4.25 12H5v-2h2.25v2zm0-4H5v-2h2.25v2zm0-4H5V7h2.25v2zm4.25 8H9.25v-2h2.25v2zm0-4H9.25v-2h2.25v2zm0-4H9.25V7h2.25v2zm4.25 8H13.5v-2h2.25v2zm0-4H13.5v-2h2.25v2zm0-4H13.5V7h2.25v2zM20 17h-2.25v-2H20v2zm0-4h-2.25v-2H20v2zm0-4h-2.25V7H20v2z"},"children":[]}]};exports.ic_view_comfy_twotone=ic_view_comfy_twotone;var ic_view_compact={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 19h6v-7H3v7zm7 0h12v-7H10v7zM3 5v6h19V5H3z"},"children":[]}]};exports.ic_view_compact=ic_view_compact;var ic_view_compact_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 5v14h19V5H3zm2 2h15v4H5V7zm0 10v-4h4v4H5zm6 0v-4h9v4h-9z"},"children":[]}]};exports.ic_view_compact_outline=ic_view_compact_outline;var ic_view_compact_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11 13h9v4h-9zm-6 0h4v4H5zm0-6h15v4H5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M3 5v14h19V5H3zm6 12H5v-4h4v4zm11 0h-9v-4h9v4zm0-6H5V7h15v4z"},"children":[]}]};exports.ic_view_compact_twotone=ic_view_compact_twotone;var ic_vignette={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 15c-4.42 0-8-2.69-8-6s3.58-6 8-6 8 2.69 8 6-3.58 6-8 6z"},"children":[]}]};exports.ic_vignette=ic_vignette;var ic_vignette_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 5v14H3V5h18m0-2H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 5c3.25 0 6 1.83 6 4s-2.75 4-6 4-6-1.83-6-4 2.75-4 6-4m0-2c-4.42 0-8 2.69-8 6s3.58 6 8 6 8-2.69 8-6-3.58-6-8-6z"},"children":[]}]};exports.ic_vignette_outline=ic_vignette_outline;var ic_vignette_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 19h18V5H3v14zm9-13c4.42 0 8 2.69 8 6s-3.58 6-8 6-8-2.69-8-6 3.58-6 8-6z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zm-9-1c4.42 0 8-2.69 8-6s-3.58-6-8-6-8 2.69-8 6 3.58 6 8 6zm0-10c3.25 0 6 1.83 6 4s-2.75 4-6 4-6-1.83-6-4 2.75-4 6-4z"},"children":[]}]};exports.ic_vignette_twotone=ic_vignette_twotone;var ic_wb_auto={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6.85 12.65h2.3L8 9l-1.15 3.65zM22 7l-1.2 6.29L19.3 7h-1.6l-1.49 6.29L15 7h-.76C12.77 5.17 10.53 4 8 4c-4.42 0-8 3.58-8 8s3.58 8 8 8c3.13 0 5.84-1.81 7.15-4.43l.1.43H17l1.5-6.1L20 16h1.75l2.05-9H22zm-11.7 9l-.7-2H6.4l-.7 2H3.8L7 7h2l3.2 9h-1.9z"},"children":[]}]};exports.ic_wb_auto=ic_wb_auto;var ic_wb_auto_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 7l-3.2 9h1.9l.7-2h3.2l.7 2h1.9L9 7H7zm-.15 5.65L8 9l1.15 3.65h-2.3zM22 7l-1.2 6.29L19.3 7h-1.6l-1.49 6.29L15 7h-.76l-.01.01C12.76 5.18 10.53 4 8 4c-4.42 0-8 3.58-8 8s3.58 8 8 8c2.96 0 5.55-1.61 6.93-4 .03-.06.05-.12.08-.18.05-.08.09-.17.14-.25l.1.43H17l1.5-6.1L20 16h1.75l2.05-9H22zm-8.63 7.67C12.38 16.64 10.35 18 8 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6c0 .96-.23 1.86-.63 2.67z"},"children":[]}]};exports.ic_wb_auto_outline=ic_wb_auto_outline;var ic_wb_auto_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8 6c-3.31 0-6 2.69-6 6s2.69 6 6 6c2.35 0 4.38-1.36 5.36-3.32l.01-.01c.4-.81.63-1.71.63-2.67 0-3.31-2.69-6-6-6zm2.3 10l-.7-2H6.4l-.7 2H3.8L7 7h2l3.2 9h-1.9zm-3.45-3.35h2.3L8 9z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M7 7l-3.2 9h1.9l.7-2h3.2l.7 2h1.9L9 7H7zm-.15 5.65L8 9l1.15 3.65h-2.3zm13.95.64L19.3 7h-1.6l-1.49 6.29L15 7h-.76l-.01.01C12.76 5.18 10.53 4 8 4c-4.42 0-8 3.58-8 8s3.58 8 8 8c2.96 0 5.55-1.61 6.93-4 .03-.06.05-.12.08-.18.05-.08.09-.17.14-.25l.1.43H17l1.5-6.1L20 16h1.75l2.05-9H22l-1.2 6.29zm-7.43 1.38C12.38 16.64 10.35 18 8 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6c0 .96-.23 1.86-.63 2.67z"},"children":[]}]};exports.ic_wb_auto_twotone=ic_wb_auto_twotone;var ic_wb_cloudy={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19.36 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.64-4.96z"},"children":[]}]};exports.ic_wb_cloudy=ic_wb_cloudy;var ic_wb_cloudy_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12.01 6c2.61 0 4.89 1.86 5.4 4.43l.3 1.5 1.52.11c1.56.11 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3h-13c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.95 6 12.01 6m0-2C9.12 4 6.6 5.64 5.35 8.04 2.35 8.36.01 10.91.01 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.64-4.96C18.68 6.59 15.65 4 12.01 4z"},"children":[]}]};exports.ic_wb_cloudy_outline=ic_wb_cloudy_outline;var ic_wb_cloudy_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19.23 12.04l-1.52-.11-.3-1.5C16.89 7.86 14.62 6 12.01 6 9.95 6 8.08 7.14 7.13 8.96l-.5.95-1.07.11c-2.02.22-3.55 1.93-3.55 3.98 0 2.21 1.79 4 4 4h13c1.65 0 3-1.35 3-3 0-1.55-1.23-2.86-2.78-2.96z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M19.36 10.04C18.67 6.59 15.65 4 12.01 4 9.11 4 6.6 5.64 5.35 8.04 2.35 8.36.01 10.91.01 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19.01 18h-13c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.95 6 12.01 6c2.61 0 4.89 1.86 5.4 4.43l.3 1.5 1.52.11c1.56.11 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3z"},"children":[]}]};exports.ic_wb_cloudy_twotone=ic_wb_cloudy_twotone;var ic_wb_incandescent={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3.55 18.54l1.41 1.41 1.79-1.8-1.41-1.41-1.79 1.8zM11 22.45h2V19.5h-2v2.95zM4 10.5H1v2h3v-2zm11-4.19V1.5H9v4.81C7.21 7.35 6 9.28 6 11.5c0 3.31 2.69 6 6 6s6-2.69 6-6c0-2.22-1.21-4.15-3-5.19zm5 4.19v2h3v-2h-3zm-2.76 7.66l1.79 1.8 1.41-1.41-1.8-1.79-1.4 1.4z"},"children":[]}]};exports.ic_wb_incandescent=ic_wb_incandescent;var ic_wb_incandescent_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3.55 19.09l1.41 1.41 1.79-1.8-1.41-1.41zM11 20h2v3h-2zM1 11h3v2H1zm12-6.95v3.96l1 .58c1.24.72 2 2.04 2 3.46 0 2.21-1.79 4-4 4s-4-1.79-4-4c0-1.42.77-2.74 2-3.46l1-.58V4.05h2m2-2H9v4.81C7.21 7.9 6 9.83 6 12.05c0 3.31 2.69 6 6 6s6-2.69 6-6c0-2.22-1.21-4.15-3-5.19V2.05zM20 11h3v2h-3zm-2.76 7.71l1.79 1.8 1.41-1.41-1.8-1.79z"},"children":[]}]};exports.ic_wb_incandescent_outline=ic_wb_incandescent_outline;var ic_wb_incandescent_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14 8.59l-1-.58V4.05h-2v3.96l-1 .58c-1.24.72-2 2.04-2 3.46 0 2.21 1.79 4 4 4s4-1.79 4-4c0-1.42-.77-2.74-2-3.46z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M3.55 19.09l1.41 1.41 1.79-1.8-1.41-1.41zM11 20h2v3h-2zM1 11h3v2H1zm14-4.14V2.05H9v4.81C7.21 7.9 6 9.83 6 12.05c0 3.31 2.69 6 6 6s6-2.69 6-6c0-2.22-1.21-4.15-3-5.19zm-3 9.19c-2.21 0-4-1.79-4-4 0-1.42.77-2.74 2-3.46l1-.58V4.05h2v3.96l1 .58c1.24.72 2 2.04 2 3.46 0 2.21-1.79 4-4 4zM20 11h3v2h-3zm-2.76 7.71l1.79 1.8 1.41-1.41-1.8-1.79z"},"children":[]}]};exports.ic_wb_incandescent_twotone=ic_wb_incandescent_twotone;var ic_wb_iridescent={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 14.5h14v-6H5v6zM11 .55V3.5h2V.55h-2zm8.04 2.5l-1.79 1.79 1.41 1.41 1.8-1.79-1.42-1.41zM13 22.45V19.5h-2v2.95h2zm7.45-3.91l-1.8-1.79-1.41 1.41 1.79 1.8 1.42-1.42zM3.55 4.46l1.79 1.79 1.41-1.41-1.79-1.79-1.41 1.41zm1.41 15.49l1.79-1.8-1.41-1.41-1.79 1.79 1.41 1.42z"},"children":[]}]};exports.ic_wb_iridescent=ic_wb_iridescent;var ic_wb_iridescent_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 15h14V9H5v6zm2-4h10v2H7v-2zm4-10h2v3h-2zm9.46 4.01L19.04 3.6l-1.79 1.79 1.41 1.41zM11 20h2v3h-2zm6.24-1.29l1.79 1.8 1.42-1.42-1.8-1.79zM4.96 3.595l1.788 1.79L5.34 6.79 3.553 5.003zM3.55 19.08l1.41 1.42 1.79-1.8-1.41-1.41z"},"children":[]}]};exports.ic_wb_iridescent_outline=ic_wb_iridescent_outline;var ic_wb_iridescent_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 11h10v2H7z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M5 15h14V9H5v6zm2-4h10v2H7v-2zm4-10h2v3h-2zm6.25 4.39l1.41 1.41 1.8-1.79-1.42-1.41zM11 20h2v3h-2zm6.24-1.29l1.79 1.8 1.42-1.42-1.8-1.79zM5.34 6.805l-1.788-1.79L4.96 3.61l1.788 1.788zM3.55 19.08l1.41 1.42 1.79-1.8-1.41-1.41z"},"children":[]}]};exports.ic_wb_iridescent_twotone=ic_wb_iridescent_twotone;var ic_wb_shade={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14 12v2.5l5.5 5.5H22zm0 8h3l-3-3zM8 4l-6 6h2v10h8V10h2L8 4zm1 10H7v-4h2v4z"},"children":[]}]};exports.ic_wb_shade=ic_wb_shade;var ic_wb_sunny={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6.76 4.84l-1.8-1.79-1.41 1.41 1.79 1.79 1.42-1.41zM4 10.5H1v2h3v-2zm9-9.95h-2V3.5h2V.55zm7.45 3.91l-1.41-1.41-1.79 1.79 1.41 1.41 1.79-1.79zm-3.21 13.7l1.79 1.8 1.41-1.41-1.8-1.79-1.4 1.4zM20 10.5v2h3v-2h-3zm-8-5c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm-1 16.95h2V19.5h-2v2.95zm-7.45-3.91l1.41 1.41 1.79-1.8-1.41-1.41-1.79 1.8z"},"children":[]}]};exports.ic_wb_sunny=ic_wb_sunny;var ic_wb_sunny_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6.76 4.84l-1.8-1.79-1.41 1.41 1.79 1.79zM1 10.5h3v2H1zM11 .55h2V3.5h-2zm8.04 2.495l1.408 1.407-1.79 1.79-1.407-1.408zm-1.8 15.115l1.79 1.8 1.41-1.41-1.8-1.79zM20 10.5h3v2h-3zm-8-5c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm-1 4h2v2.95h-2zm-7.45-.96l1.41 1.41 1.79-1.8-1.41-1.41z"},"children":[]}]};exports.ic_wb_sunny_outline=ic_wb_sunny_outline;var ic_wb_sunny_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 7.5c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M5.34 6.25l1.42-1.41-1.8-1.79-1.41 1.41zM1 10.5h3v2H1zM11 .55h2V3.5h-2zm7.66 5.705l-1.41-1.407 1.79-1.79 1.406 1.41zM17.24 18.16l1.79 1.8 1.41-1.41-1.8-1.79zM20 10.5h3v2h-3zm-8-5c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm-1 4h2v2.95h-2zm-7.45-.96l1.41 1.41 1.79-1.8-1.41-1.41z"},"children":[]}]};exports.ic_wb_sunny_twotone=ic_wb_sunny_twotone;var ic_wb_twighlight={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16.954 8.66l2.12-2.12 1.415 1.414-2.13 2.12zM17.9 14c-.5-2.85-2.95-5-5.9-5s-5.45 2.15-5.9 5h11.8zM2 16h20v4H2zm9-12h2v3h-2zM3.54 7.925L4.954 6.51l2.122 2.122-1.415 1.415z"},"children":[]}]};exports.ic_wb_twighlight=ic_wb_twighlight;var ic_360={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 7C6.48 7 2 9.24 2 12c0 2.24 2.94 4.13 7 4.77V20l4-4-4-4v2.73c-3.15-.56-5-1.9-5-2.73 0-1.06 3.04-3 8-3s8 1.94 8 3c0 .73-1.46 1.89-4 2.53v2.05c3.53-.77 6-2.53 6-4.58 0-2.76-4.48-5-10-5z"},"children":[]}]};exports.ic_360=ic_360;var ic_360_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 7C6.48 7 2 9.24 2 12c0 2.24 2.94 4.13 7 4.77V20l4-4-4-4v2.73c-3.15-.56-5-1.9-5-2.73 0-1.06 3.04-3 8-3s8 1.94 8 3c0 .73-1.46 1.89-4 2.53v2.05c3.53-.77 6-2.53 6-4.58 0-2.76-4.48-5-10-5z"},"children":[]}]};exports.ic_360_outline=ic_360_outline;var ic_360_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9 16.77V20l4-4-4-4v2.73c-3.15-.56-5-1.9-5-2.73 0-1.06 3.04-3 8-3s8 1.94 8 3c0 .73-1.46 1.89-4 2.53v2.05c3.53-.77 6-2.53 6-4.58 0-2.76-4.48-5-10-5S2 9.24 2 12c0 2.24 2.94 4.13 7 4.77z"},"children":[]}]};exports.ic_360_twotone=ic_360_twotone;var ic_add_business={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M15,17h2v-3h1v-2l-1-5H2l-1,5v2h1v6h9v-6h4V17z M9,18H4v-4h5V18z"},"children":[{"name":"path","attribs":{"d":"M15,17h2v-3h1v-2l-1-5H2l-1,5v2h1v6h9v-6h4V17z M9,18H4v-4h5V18z"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"15","x":"2","y":"4"},"children":[{"name":"rect","attribs":{"height":"2","width":"15","x":"2","y":"4"},"children":[]}]},{"name":"polygon","attribs":{"points":"20,18 20,15 18,15 18,18 15,18 15,20 18,20 18,23 20,23 20,20 23,20 23,18"},"children":[{"name":"polygon","attribs":{"points":"20,18 20,15 18,15 18,18 15,18 15,20 18,20 18,23 20,23 20,20 23,20 23,18"},"children":[]}]}]}]}]}]};exports.ic_add_business=ic_add_business;var ic_add_business_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"height":"2","width":"15","x":"2","y":"4"},"children":[{"name":"rect","attribs":{"height":"2","width":"15","x":"2","y":"4"},"children":[]}]},{"name":"path","attribs":{"d":"M15,17h2v-3h1v-2l-1-5H2l-1,5v2h1v6h9v-6h4V17z M9,18H4v-4h5V18z M3.04,12l0.6-3h11.72l0.6,3H3.04z"},"children":[{"name":"path","attribs":{"d":"M15,17h2v-3h1v-2l-1-5H2l-1,5v2h1v6h9v-6h4V17z M9,18H4v-4h5V18z M3.04,12l0.6-3h11.72l0.6,3H3.04z"},"children":[]}]},{"name":"polygon","attribs":{"points":"23,18 20,18 20,15 18,15 18,18 15,18 15,20 18,20 18,23 20,23 20,20 23,20"},"children":[{"name":"polygon","attribs":{"points":"23,18 20,18 20,15 18,15 18,18 15,18 15,20 18,20 18,23 20,23 20,20 23,20"},"children":[]}]}]}]}]}]};exports.ic_add_business_outline=ic_add_business_outline;var ic_add_business_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"opacity":".3","points":"15.36,9 3.64,9 3.04,12 15.96,12"},"children":[{"name":"polygon","attribs":{"opacity":".3","points":"15.36,9 3.64,9 3.04,12 15.96,12"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"15","x":"2","y":"4"},"children":[{"name":"rect","attribs":{"height":"2","width":"15","x":"2","y":"4"},"children":[]}]},{"name":"path","attribs":{"d":"M15,17h2v-3h1v-2l-1-5H2l-1,5v2h1v6h9v-6h4V17z M9,18H4v-4h5V18z M3.04,12l0.6-3h11.72l0.6,3H3.04z"},"children":[{"name":"path","attribs":{"d":"M15,17h2v-3h1v-2l-1-5H2l-1,5v2h1v6h9v-6h4V17z M9,18H4v-4h5V18z M3.04,12l0.6-3h11.72l0.6,3H3.04z"},"children":[]}]},{"name":"polygon","attribs":{"points":"20,18 20,15 18,15 18,18 15,18 15,20 18,20 18,23 20,23 20,20 23,20 23,18"},"children":[{"name":"polygon","attribs":{"points":"20,18 20,15 18,15 18,18 15,18 15,20 18,20 18,23 20,23 20,20 23,20 23,18"},"children":[]}]}]}]}]}]};exports.ic_add_business_twotone=ic_add_business_twotone;var ic_add_location={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C8.14 2 5 5.14 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.86-3.14-7-7-7zm4 8h-3v3h-2v-3H8V8h3V5h2v3h3v2z"},"children":[]}]};exports.ic_add_location=ic_add_location;var ic_add_location_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M13,6v3h3v2h-3v3h-2v-3H8V9h3V6H13z M18,10.2C18,6.57,15.35,4,12,4s-6,2.57-6,6.2 c0,2.34,1.95,5.44,6,9.14C16.05,15.64,18,12.54,18,10.2z M12,2c4.2,0,8,3.22,8,8.2c0,3.32-2.67,7.25-8,11.8 c-5.33-4.55-8-8.48-8-11.8C4,5.22,7.8,2,12,2z"},"children":[{"name":"path","attribs":{"d":"M13,6v3h3v2h-3v3h-2v-3H8V9h3V6H13z M18,10.2C18,6.57,15.35,4,12,4s-6,2.57-6,6.2 c0,2.34,1.95,5.44,6,9.14C16.05,15.64,18,12.54,18,10.2z M12,2c4.2,0,8,3.22,8,8.2c0,3.32-2.67,7.25-8,11.8 c-5.33-4.55-8-8.48-8-11.8C4,5.22,7.8,2,12,2z"},"children":[]}]}]}]}]}]}]}]}]}]};exports.ic_add_location_outline=ic_add_location_outline;var ic_add_location_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M18.5,10.2c0,2.57-2.1,5.79-6.16,9.51L12,20.01l-0.34-0.31 C7.6,15.99,5.5,12.77,5.5,10.2c0-3.84,2.82-6.7,6.5-6.7S18.5,6.35,18.5,10.2z","enable-background":"new","opacity":".3"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M13,6v3h3v2h-3v3h-2v-3H8V9h3V6H13z M18,10.2C18,6.57,15.35,4,12,4s-6,2.57-6,6.2c0,2.34,1.95,5.44,6,9.14 C16.05,15.64,18,12.54,18,10.2z M12,2c4.2,0,8,3.22,8,8.2c0,3.32-2.67,7.25-8,11.8c-5.33-4.55-8-8.48-8-11.8C4,5.22,7.8,2,12,2z"},"children":[{"name":"path","attribs":{"d":"M13,6v3h3v2h-3v3h-2v-3H8V9h3V6H13z M18,10.2C18,6.57,15.35,4,12,4s-6,2.57-6,6.2c0,2.34,1.95,5.44,6,9.14 C16.05,15.64,18,12.54,18,10.2z M12,2c4.2,0,8,3.22,8,8.2c0,3.32-2.67,7.25-8,11.8c-5.33-4.55-8-8.48-8-11.8C4,5.22,7.8,2,12,2z"},"children":[]}]}]}]}]}]};exports.ic_add_location_twotone=ic_add_location_twotone;var ic_add_location_alt={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 1v3h3v2h-3v3h-2V6h-3V4h3V1h2zm-8 12c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm2-9.75V7h3v3h2.92c.05.39.08.79.08 1.2 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8C4 6.22 7.8 3 12 3c.68 0 1.35.08 2 .25z"},"children":[]}]};exports.ic_add_location_alt=ic_add_location_alt;var ic_add_location_alt_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 1v3h3v2h-3v3h-2V6h-3V4h3V1h2zm-8 12c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm1-9.94v2.02A6.53 6.53 0 0 0 12 5c-3.35 0-6 2.57-6 6.2 0 2.34 1.95 5.44 6 9.14 4.05-3.7 6-6.79 6-9.14V11h2v.2c0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8C4 6.22 7.8 3 12 3c.34 0 .67.02 1 .06z"},"children":[]}]};exports.ic_add_location_alt_outline=ic_add_location_alt_outline;var ic_add_location_alt_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M14,4.8V7h3v3h1.41c0.06,0.39,0.09,0.79,0.09,1.2c0,2.57-2.1,5.79-6.16,9.51L12,21.01l-0.34-0.31 C7.6,16.99,5.5,13.77,5.5,11.2c0-3.84,2.82-6.7,6.5-6.7C12.7,4.5,13.37,4.6,14,4.8z","fill-opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20,1v3h3v2h-3v3h-2V6h-3V4h3V1H20z M12,13c-1.1,0-2-0.9-2-2s0.9-2,2-2s2,0.9,2,2S13.1,13,12,13z M14,3.25v2.08 C13.38,5.11,12.7,5,12,5c-3.35,0-6,2.57-6,6.2c0,2.34,1.95,5.44,6,9.14c4.05-3.7,6-6.79,6-9.14c0-0.41-0.03-0.81-0.1-1.2h2.02 c0.05,0.39,0.08,0.79,0.08,1.2c0,3.32-2.67,7.25-8,11.8c-5.33-4.55-8-8.48-8-11.8C4,6.22,7.8,3,12,3C12.68,3,13.35,3.08,14,3.25z"},"children":[]}]};exports.ic_add_location_alt_twotone=ic_add_location_alt_twotone;var ic_add_road={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"20,18 20,15 18,15 18,18 15,18 15,20 18,20 18,23 20,23 20,20 23,20 23,18"},"children":[{"name":"polygon","attribs":{"points":"20,18 20,15 18,15 18,18 15,18 15,20 18,20 18,23 20,23 20,20 23,20 23,18"},"children":[]}]},{"name":"rect","attribs":{"height":"9","width":"2","x":"18","y":"4"},"children":[{"name":"rect","attribs":{"height":"9","width":"2","x":"18","y":"4"},"children":[]}]},{"name":"rect","attribs":{"height":"16","width":"2","x":"4","y":"4"},"children":[{"name":"rect","attribs":{"height":"16","width":"2","x":"4","y":"4"},"children":[]}]},{"name":"rect","attribs":{"height":"4","width":"2","x":"11","y":"4"},"children":[{"name":"rect","attribs":{"height":"4","width":"2","x":"11","y":"4"},"children":[]}]},{"name":"rect","attribs":{"height":"4","width":"2","x":"11","y":"10"},"children":[{"name":"rect","attribs":{"height":"4","width":"2","x":"11","y":"10"},"children":[]}]},{"name":"rect","attribs":{"height":"4","width":"2","x":"11","y":"16"},"children":[{"name":"rect","attribs":{"height":"4","width":"2","x":"11","y":"16"},"children":[]}]}]}]}]}]};exports.ic_add_road=ic_add_road;var ic_add_road_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"20,18 20,15 18,15 18,18 15,18 15,20 18,20 18,23 20,23 20,20 23,20 23,18"},"children":[{"name":"polygon","attribs":{"points":"20,18 20,15 18,15 18,18 15,18 15,20 18,20 18,23 20,23 20,20 23,20 23,18"},"children":[]}]},{"name":"rect","attribs":{"height":"9","width":"2","x":"18","y":"4"},"children":[{"name":"rect","attribs":{"height":"9","width":"2","x":"18","y":"4"},"children":[]}]},{"name":"rect","attribs":{"height":"16","width":"2","x":"4","y":"4"},"children":[{"name":"rect","attribs":{"height":"16","width":"2","x":"4","y":"4"},"children":[]}]},{"name":"rect","attribs":{"height":"4","width":"2","x":"11","y":"4"},"children":[{"name":"rect","attribs":{"height":"4","width":"2","x":"11","y":"4"},"children":[]}]},{"name":"rect","attribs":{"height":"4","width":"2","x":"11","y":"10"},"children":[{"name":"rect","attribs":{"height":"4","width":"2","x":"11","y":"10"},"children":[]}]},{"name":"rect","attribs":{"height":"4","width":"2","x":"11","y":"16"},"children":[{"name":"rect","attribs":{"height":"4","width":"2","x":"11","y":"16"},"children":[]}]}]}]}]}]};exports.ic_add_road_outline=ic_add_road_outline;var ic_add_road_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"20,18 20,15 18,15 18,18 15,18 15,20 18,20 18,23 20,23 20,20 23,20 23,18"},"children":[{"name":"polygon","attribs":{"points":"20,18 20,15 18,15 18,18 15,18 15,20 18,20 18,23 20,23 20,20 23,20 23,18"},"children":[]}]},{"name":"rect","attribs":{"height":"9","width":"2","x":"18","y":"4"},"children":[{"name":"rect","attribs":{"height":"9","width":"2","x":"18","y":"4"},"children":[]}]},{"name":"rect","attribs":{"height":"16","width":"2","x":"4","y":"4"},"children":[{"name":"rect","attribs":{"height":"16","width":"2","x":"4","y":"4"},"children":[]}]},{"name":"rect","attribs":{"height":"4","width":"2","x":"11","y":"4"},"children":[{"name":"rect","attribs":{"height":"4","width":"2","x":"11","y":"4"},"children":[]}]},{"name":"rect","attribs":{"height":"4","width":"2","x":"11","y":"10"},"children":[{"name":"rect","attribs":{"height":"4","width":"2","x":"11","y":"10"},"children":[]}]},{"name":"rect","attribs":{"height":"4","width":"2","x":"11","y":"16"},"children":[{"name":"rect","attribs":{"height":"4","width":"2","x":"11","y":"16"},"children":[]}]}]}]}]}]};exports.ic_add_road_twotone=ic_add_road_twotone;var ic_agriculture={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M19.5,12c0.93,0,1.78,0.28,2.5,0.76V8c0-1.1-0.9-2-2-2h-6.29l-1.06-1.06l1.41-1.41l-0.71-0.71L9.82,6.35l0.71,0.71 l1.41-1.41L13,6.71V9c0,1.1-0.9,2-2,2h-0.54c0.95,1.06,1.54,2.46,1.54,4c0,0.34-0.04,0.67-0.09,1h3.14 C15.3,13.75,17.19,12,19.5,12z"},"children":[{"name":"path","attribs":{"d":"M19.5,12c0.93,0,1.78,0.28,2.5,0.76V8c0-1.1-0.9-2-2-2h-6.29l-1.06-1.06l1.41-1.41l-0.71-0.71L9.82,6.35l0.71,0.71 l1.41-1.41L13,6.71V9c0,1.1-0.9,2-2,2h-0.54c0.95,1.06,1.54,2.46,1.54,4c0,0.34-0.04,0.67-0.09,1h3.14 C15.3,13.75,17.19,12,19.5,12z"},"children":[]}]},{"name":"path","attribs":{"d":"M19.5,13c-1.93,0-3.5,1.57-3.5,3.5s1.57,3.5,3.5,3.5s3.5-1.57,3.5-3.5S21.43,13,19.5,13z M19.5,18 c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S20.33,18,19.5,18z"},"children":[{"name":"path","attribs":{"d":"M19.5,13c-1.93,0-3.5,1.57-3.5,3.5s1.57,3.5,3.5,3.5s3.5-1.57,3.5-3.5S21.43,13,19.5,13z M19.5,18 c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S20.33,18,19.5,18z"},"children":[]}]},{"name":"path","attribs":{"d":"M4,9h5c0-1.1-0.9-2-2-2H4C3.45,7,3,7.45,3,8C3,8.55,3.45,9,4,9z"},"children":[{"name":"path","attribs":{"d":"M4,9h5c0-1.1-0.9-2-2-2H4C3.45,7,3,7.45,3,8C3,8.55,3.45,9,4,9z"},"children":[]}]},{"name":"path","attribs":{"d":"M9.83,13.82l-0.18-0.47L10.58,13c-0.46-1.06-1.28-1.91-2.31-2.43l-0.4,0.89l-0.46-0.21l0.4-0.9C7.26,10.13,6.64,10,6,10 c-0.53,0-1.04,0.11-1.52,0.26l0.34,0.91l-0.47,0.18L4,10.42c-1.06,0.46-1.91,1.28-2.43,2.31l0.89,0.4l-0.21,0.46l-0.9-0.4 C1.13,13.74,1,14.36,1,15c0,0.53,0.11,1.04,0.26,1.52l0.91-0.34l0.18,0.47L1.42,17c0.46,1.06,1.28,1.91,2.31,2.43l0.4-0.89 l0.46,0.21l-0.4,0.9C4.74,19.87,5.36,20,6,20c0.53,0,1.04-0.11,1.52-0.26l-0.34-0.91l0.47-0.18L8,19.58 c1.06-0.46,1.91-1.28,2.43-2.31l-0.89-0.4l0.21-0.46l0.9,0.4C10.87,16.26,11,15.64,11,15c0-0.53-0.11-1.04-0.26-1.52L9.83,13.82z M7.15,17.77c-1.53,0.63-3.29-0.09-3.92-1.62c-0.63-1.53,0.09-3.29,1.62-3.92c1.53-0.63,3.29,0.09,3.92,1.62 C9.41,15.38,8.68,17.14,7.15,17.77z"},"children":[{"name":"path","attribs":{"d":"M9.83,13.82l-0.18-0.47L10.58,13c-0.46-1.06-1.28-1.91-2.31-2.43l-0.4,0.89l-0.46-0.21l0.4-0.9C7.26,10.13,6.64,10,6,10 c-0.53,0-1.04,0.11-1.52,0.26l0.34,0.91l-0.47,0.18L4,10.42c-1.06,0.46-1.91,1.28-2.43,2.31l0.89,0.4l-0.21,0.46l-0.9-0.4 C1.13,13.74,1,14.36,1,15c0,0.53,0.11,1.04,0.26,1.52l0.91-0.34l0.18,0.47L1.42,17c0.46,1.06,1.28,1.91,2.31,2.43l0.4-0.89 l0.46,0.21l-0.4,0.9C4.74,19.87,5.36,20,6,20c0.53,0,1.04-0.11,1.52-0.26l-0.34-0.91l0.47-0.18L8,19.58 c1.06-0.46,1.91-1.28,2.43-2.31l-0.89-0.4l0.21-0.46l0.9,0.4C10.87,16.26,11,15.64,11,15c0-0.53-0.11-1.04-0.26-1.52L9.83,13.82z M7.15,17.77c-1.53,0.63-3.29-0.09-3.92-1.62c-0.63-1.53,0.09-3.29,1.62-3.92c1.53-0.63,3.29,0.09,3.92,1.62 C9.41,15.38,8.68,17.14,7.15,17.77z"},"children":[]}]}]}]}]}]};exports.ic_agriculture=ic_agriculture;var ic_agriculture_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M4,9h5c0-1.1-0.9-2-2-2H4C3.45,7,3,7.45,3,8C3,8.55,3.45,9,4,9z"},"children":[{"name":"path","attribs":{"d":"M4,9h5c0-1.1-0.9-2-2-2H4C3.45,7,3,7.45,3,8C3,8.55,3.45,9,4,9z"},"children":[]}]},{"name":"path","attribs":{"d":"M22,14.06V8c0-1.1-0.9-2-2-2h-6.29l-1.06-1.06l1.41-1.41l-0.71-0.71L9.82,6.35l0.71,0.71l1.41-1.41L13,6.71V9 c0,1.1-0.9,2-2,2H8.96c-0.22-0.16-0.45-0.3-0.69-0.43l-0.4,0.89l-0.46-0.21l0.4-0.9C7.26,10.13,6.64,10,6,10 c-0.53,0-1.04,0.11-1.52,0.26l0.34,0.91l-0.47,0.18L4,10.42c-1.06,0.46-1.91,1.28-2.43,2.31l0.89,0.4l-0.21,0.46l-0.9-0.4 C1.13,13.74,1,14.36,1,15c0,0.53,0.11,1.04,0.26,1.52l0.91-0.34l0.18,0.47L1.42,17c0.46,1.06,1.28,1.91,2.31,2.43l0.4-0.89 l0.46,0.21l-0.4,0.9C4.74,19.87,5.36,20,6,20c0.53,0,1.04-0.11,1.52-0.26l-0.34-0.91l0.47-0.18L8,19.58 c1.06-0.46,1.91-1.28,2.43-2.31l-0.89-0.4l0.21-0.46l0.9,0.4c0.1-0.26,0.18-0.54,0.24-0.82h5.16C16.03,16.16,16,16.33,16,16.5 c0,1.93,1.57,3.5,3.5,3.5s3.5-1.57,3.5-3.5C23,15.55,22.62,14.69,22,14.06z M6,18c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3 S7.66,18,6,18z M10.87,14c-0.04-0.18-0.08-0.35-0.13-0.52l-0.91,0.34l-0.18-0.47L10.58,13c0,0,0.42,0,0.42,0c2.21,0,4-1.79,4-4V8 h5v5.05C19.84,13.03,19.67,13,19.5,13c-0.95,0-1.81,0.38-2.44,1H10.87z M19.5,18c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5 s1.5,0.67,1.5,1.5S20.33,18,19.5,18z"},"children":[{"name":"path","attribs":{"d":"M22,14.06V8c0-1.1-0.9-2-2-2h-6.29l-1.06-1.06l1.41-1.41l-0.71-0.71L9.82,6.35l0.71,0.71l1.41-1.41L13,6.71V9 c0,1.1-0.9,2-2,2H8.96c-0.22-0.16-0.45-0.3-0.69-0.43l-0.4,0.89l-0.46-0.21l0.4-0.9C7.26,10.13,6.64,10,6,10 c-0.53,0-1.04,0.11-1.52,0.26l0.34,0.91l-0.47,0.18L4,10.42c-1.06,0.46-1.91,1.28-2.43,2.31l0.89,0.4l-0.21,0.46l-0.9-0.4 C1.13,13.74,1,14.36,1,15c0,0.53,0.11,1.04,0.26,1.52l0.91-0.34l0.18,0.47L1.42,17c0.46,1.06,1.28,1.91,2.31,2.43l0.4-0.89 l0.46,0.21l-0.4,0.9C4.74,19.87,5.36,20,6,20c0.53,0,1.04-0.11,1.52-0.26l-0.34-0.91l0.47-0.18L8,19.58 c1.06-0.46,1.91-1.28,2.43-2.31l-0.89-0.4l0.21-0.46l0.9,0.4c0.1-0.26,0.18-0.54,0.24-0.82h5.16C16.03,16.16,16,16.33,16,16.5 c0,1.93,1.57,3.5,3.5,3.5s3.5-1.57,3.5-3.5C23,15.55,22.62,14.69,22,14.06z M6,18c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3 S7.66,18,6,18z M10.87,14c-0.04-0.18-0.08-0.35-0.13-0.52l-0.91,0.34l-0.18-0.47L10.58,13c0,0,0.42,0,0.42,0c2.21,0,4-1.79,4-4V8 h5v5.05C19.84,13.03,19.67,13,19.5,13c-0.95,0-1.81,0.38-2.44,1H10.87z M19.5,18c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5 s1.5,0.67,1.5,1.5S20.33,18,19.5,18z"},"children":[]}]}]}]}]}]};exports.ic_agriculture_outline=ic_agriculture_outline;var ic_agriculture_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M4,9h5c0-1.1-0.9-2-2-2H4C3.45,7,3,7.45,3,8C3,8.55,3.45,9,4,9z"},"children":[{"name":"path","attribs":{"d":"M4,9h5c0-1.1-0.9-2-2-2H4C3.45,7,3,7.45,3,8C3,8.55,3.45,9,4,9z"},"children":[]}]},{"name":"path","attribs":{"d":"M22,14.06V8c0-1.1-0.9-2-2-2h-6.29l-1.06-1.06l1.41-1.41l-0.71-0.71L9.82,6.35l0.71,0.71l1.41-1.41L13,6.71V9 c0,1.1-0.9,2-2,2H8.96c-0.22-0.16-0.45-0.3-0.69-0.43l-0.4,0.89l-0.46-0.21l0.4-0.9C7.26,10.13,6.64,10,6,10 c-0.53,0-1.04,0.11-1.52,0.26l0.34,0.91l-0.47,0.18L4,10.42c-1.06,0.46-1.91,1.28-2.43,2.31l0.89,0.4l-0.21,0.46l-0.9-0.4 C1.13,13.74,1,14.36,1,15c0,0.53,0.11,1.04,0.26,1.52l0.91-0.34l0.18,0.47L1.42,17c0.46,1.06,1.28,1.91,2.31,2.43l0.4-0.89 l0.46,0.21l-0.4,0.9C4.74,19.87,5.36,20,6,20c0.53,0,1.04-0.11,1.52-0.26l-0.34-0.91l0.47-0.18L8,19.58 c1.06-0.46,1.91-1.28,2.43-2.31l-0.89-0.4l0.21-0.46l0.9,0.4c0.1-0.26,0.18-0.54,0.24-0.82h5.16C16.03,16.16,16,16.33,16,16.5 c0,1.93,1.57,3.5,3.5,3.5s3.5-1.57,3.5-3.5C23,15.55,22.62,14.69,22,14.06z M6,18c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3 S7.66,18,6,18z M10.87,14c-0.04-0.18-0.08-0.35-0.13-0.52l-0.91,0.34l-0.18-0.47L10.58,13c0,0,0.42,0,0.42,0c2.21,0,4-1.79,4-4V8 h5v5.05C19.84,13.03,19.67,13,19.5,13c-0.95,0-1.81,0.38-2.44,1H10.87z M19.5,18c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5 s1.5,0.67,1.5,1.5S20.33,18,19.5,18z"},"children":[{"name":"path","attribs":{"d":"M22,14.06V8c0-1.1-0.9-2-2-2h-6.29l-1.06-1.06l1.41-1.41l-0.71-0.71L9.82,6.35l0.71,0.71l1.41-1.41L13,6.71V9 c0,1.1-0.9,2-2,2H8.96c-0.22-0.16-0.45-0.3-0.69-0.43l-0.4,0.89l-0.46-0.21l0.4-0.9C7.26,10.13,6.64,10,6,10 c-0.53,0-1.04,0.11-1.52,0.26l0.34,0.91l-0.47,0.18L4,10.42c-1.06,0.46-1.91,1.28-2.43,2.31l0.89,0.4l-0.21,0.46l-0.9-0.4 C1.13,13.74,1,14.36,1,15c0,0.53,0.11,1.04,0.26,1.52l0.91-0.34l0.18,0.47L1.42,17c0.46,1.06,1.28,1.91,2.31,2.43l0.4-0.89 l0.46,0.21l-0.4,0.9C4.74,19.87,5.36,20,6,20c0.53,0,1.04-0.11,1.52-0.26l-0.34-0.91l0.47-0.18L8,19.58 c1.06-0.46,1.91-1.28,2.43-2.31l-0.89-0.4l0.21-0.46l0.9,0.4c0.1-0.26,0.18-0.54,0.24-0.82h5.16C16.03,16.16,16,16.33,16,16.5 c0,1.93,1.57,3.5,3.5,3.5s3.5-1.57,3.5-3.5C23,15.55,22.62,14.69,22,14.06z M6,18c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3 S7.66,18,6,18z M10.87,14c-0.04-0.18-0.08-0.35-0.13-0.52l-0.91,0.34l-0.18-0.47L10.58,13c0,0,0.42,0,0.42,0c2.21,0,4-1.79,4-4V8 h5v5.05C19.84,13.03,19.67,13,19.5,13c-0.95,0-1.81,0.38-2.44,1H10.87z M19.5,18c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5 s1.5,0.67,1.5,1.5S20.33,18,19.5,18z"},"children":[]}]}]}]},{"name":"path","attribs":{"d":"M20,13.05V8h-5v1c0,2.21-1.79,4-4,4c0,0-0.42,0-0.42,0c0.14,0.32,0.25,0.65,0.32,1h6.16 c0.63-0.62,1.49-1,2.44-1C19.67,13,19.84,13.03,20,13.05z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M20,13.05V8h-5v1c0,2.21-1.79,4-4,4c0,0-0.42,0-0.42,0c0.14,0.32,0.25,0.65,0.32,1h6.16 c0.63-0.62,1.49-1,2.44-1C19.67,13,19.84,13.03,20,13.05z","opacity":".3"},"children":[]}]}]}]}]}]};exports.ic_agriculture_twotone=ic_agriculture_twotone;var ic_alt_route={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M9.78,11.16l-1.42,1.42c-0.68-0.69-1.34-1.58-1.79-2.94l1.94-0.49C8.83,10.04,9.28,10.65,9.78,11.16z M11,6L7,2L3,6h3.02 C6.04,6.81,6.1,7.54,6.21,8.17l1.94-0.49C8.08,7.2,8.03,6.63,8.02,6H11z M21,6l-4-4l-4,4h2.99c-0.1,3.68-1.28,4.75-2.54,5.88 c-0.5,0.44-1.01,0.92-1.45,1.55c-0.34-0.49-0.73-0.88-1.13-1.24L9.46,13.6C10.39,14.45,11,15.14,11,17c0,0,0,0,0,0h0v5h2v-5 c0,0,0,0,0,0c0-2.02,0.71-2.66,1.79-3.63c1.38-1.24,3.08-2.78,3.2-7.37H21z"},"children":[{"name":"path","attribs":{"d":"M9.78,11.16l-1.42,1.42c-0.68-0.69-1.34-1.58-1.79-2.94l1.94-0.49C8.83,10.04,9.28,10.65,9.78,11.16z M11,6L7,2L3,6h3.02 C6.04,6.81,6.1,7.54,6.21,8.17l1.94-0.49C8.08,7.2,8.03,6.63,8.02,6H11z M21,6l-4-4l-4,4h2.99c-0.1,3.68-1.28,4.75-2.54,5.88 c-0.5,0.44-1.01,0.92-1.45,1.55c-0.34-0.49-0.73-0.88-1.13-1.24L9.46,13.6C10.39,14.45,11,15.14,11,17c0,0,0,0,0,0h0v5h2v-5 c0,0,0,0,0,0c0-2.02,0.71-2.66,1.79-3.63c1.38-1.24,3.08-2.78,3.2-7.37H21z"},"children":[]}]}]}]};exports.ic_alt_route=ic_alt_route;var ic_alt_route_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M9.78,11.16l-1.42,1.42c-0.68-0.69-1.34-1.58-1.79-2.94l1.94-0.49C8.83,10.04,9.28,10.65,9.78,11.16z M11,6L7,2L3,6h3.02 C6.04,6.81,6.1,7.54,6.21,8.17l1.94-0.49C8.08,7.2,8.03,6.63,8.02,6H11z M21,6l-4-4l-4,4h2.99c-0.1,3.68-1.28,4.75-2.54,5.88 c-0.5,0.44-1.01,0.92-1.45,1.55c-0.34-0.49-0.73-0.88-1.13-1.24L9.46,13.6C10.39,14.45,11,15.14,11,17c0,0,0,0,0,0h0v5h2v-5 c0,0,0,0,0,0c0-2.02,0.71-2.66,1.79-3.63c1.38-1.24,3.08-2.78,3.2-7.37H21z"},"children":[{"name":"path","attribs":{"d":"M9.78,11.16l-1.42,1.42c-0.68-0.69-1.34-1.58-1.79-2.94l1.94-0.49C8.83,10.04,9.28,10.65,9.78,11.16z M11,6L7,2L3,6h3.02 C6.04,6.81,6.1,7.54,6.21,8.17l1.94-0.49C8.08,7.2,8.03,6.63,8.02,6H11z M21,6l-4-4l-4,4h2.99c-0.1,3.68-1.28,4.75-2.54,5.88 c-0.5,0.44-1.01,0.92-1.45,1.55c-0.34-0.49-0.73-0.88-1.13-1.24L9.46,13.6C10.39,14.45,11,15.14,11,17c0,0,0,0,0,0h0v5h2v-5 c0,0,0,0,0,0c0-2.02,0.71-2.66,1.79-3.63c1.38-1.24,3.08-2.78,3.2-7.37H21z"},"children":[]}]}]}]};exports.ic_alt_route_outline=ic_alt_route_outline;var ic_alt_route_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M9.78,11.16l-1.42,1.42c-0.68-0.69-1.34-1.58-1.79-2.94l1.94-0.49C8.83,10.04,9.28,10.65,9.78,11.16z M11,6L7,2L3,6h3.02 C6.04,6.81,6.1,7.54,6.21,8.17l1.94-0.49C8.08,7.2,8.03,6.63,8.02,6H11z M21,6l-4-4l-4,4h2.99c-0.1,3.68-1.28,4.75-2.54,5.88 c-0.5,0.44-1.01,0.92-1.45,1.55c-0.34-0.49-0.73-0.88-1.13-1.24L9.46,13.6C10.39,14.45,11,15.14,11,17c0,0,0,0,0,0h0v5h2v-5 c0,0,0,0,0,0c0-2.02,0.71-2.66,1.79-3.63c1.38-1.24,3.08-2.78,3.2-7.37H21z"},"children":[{"name":"path","attribs":{"d":"M9.78,11.16l-1.42,1.42c-0.68-0.69-1.34-1.58-1.79-2.94l1.94-0.49C8.83,10.04,9.28,10.65,9.78,11.16z M11,6L7,2L3,6h3.02 C6.04,6.81,6.1,7.54,6.21,8.17l1.94-0.49C8.08,7.2,8.03,6.63,8.02,6H11z M21,6l-4-4l-4,4h2.99c-0.1,3.68-1.28,4.75-2.54,5.88 c-0.5,0.44-1.01,0.92-1.45,1.55c-0.34-0.49-0.73-0.88-1.13-1.24L9.46,13.6C10.39,14.45,11,15.14,11,17c0,0,0,0,0,0h0v5h2v-5 c0,0,0,0,0,0c0-2.02,0.71-2.66,1.79-3.63c1.38-1.24,3.08-2.78,3.2-7.37H21z"},"children":[]}]}]}]};exports.ic_alt_route_twotone=ic_alt_route_twotone;var ic_atm={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8 9v1.5h2.25V15h1.5v-4.5H14V9zM6 9H3c-.55 0-1 .45-1 1v5h1.5v-1.5h2V15H7v-5c0-.55-.45-1-1-1zm-.5 3h-2v-1.5h2V12zM21 9h-4.5c-.55 0-1 .45-1 1v5H17v-4.5h1V14h1.5v-3.51h1V15H22v-5c0-.55-.45-1-1-1z"},"children":[]}]};exports.ic_atm=ic_atm;var ic_atm_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8 9v1.5h2.25V15h1.5v-4.5H14V9H8zM6 9H3c-.55 0-1 .45-1 1v5h1.5v-1.5h2V15H7v-5c0-.55-.45-1-1-1zm-.5 3h-2v-1.5h2V12zM21 9h-4.5c-.55 0-1 .45-1 1v5H17v-4.5h1V14h1.5v-3.51h1V15H22v-5c0-.55-.45-1-1-1z"},"children":[]}]};exports.ic_atm_outline=ic_atm_outline;var ic_atm_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3.5 13.5h2V15H7v-5c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v5h1.5v-1.5zm0-3h2V12h-2v-1.5zm13.5 0h1V14h1.5v-3.51h1V15H22v-5c0-.55-.45-1-1-1h-4.5c-.55 0-1 .45-1 1v5H17v-4.5zM10.25 15h1.5v-4.5H14V9H8v1.5h2.25z"},"children":[]}]};exports.ic_atm_twotone=ic_atm_twotone;var ic_attractions={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M10.43,18.75C10.8,18.29,11.37,18,12,18c0.63,0,1.19,0.29,1.56,0.75c0.39-0.09,0.76-0.21,1.12-0.36l-1.42-3.18 c-0.39,0.15-0.82,0.23-1.26,0.23c-0.46,0-0.9-0.09-1.3-0.25l-1.43,3.19C9.65,18.54,10.03,18.67,10.43,18.75z M5.15,10 c-0.16,0.59-0.25,1.21-0.25,1.85c0,0.75,0.12,1.47,0.33,2.15c0.63,0.05,1.22,0.4,1.56,0.99c0.33,0.57,0.35,1.23,0.11,1.79 c0.27,0.27,0.56,0.53,0.87,0.76l1.52-3.39v0c-0.47-0.58-0.75-1.32-0.75-2.13c0-1.89,1.55-3.41,3.46-3.41 c1.91,0,3.46,1.53,3.46,3.41c0,0.82-0.29,1.57-0.78,2.16l1.5,3.35c0.32-0.24,0.62-0.5,0.9-0.79c-0.22-0.55-0.2-1.2,0.12-1.75 c0.33-0.57,0.9-0.92,1.52-0.99c0.22-0.68,0.34-1.41,0.34-2.16c0-0.64-0.09-1.27-0.25-1.86c-0.64-0.04-1.26-0.39-1.6-1 c-0.36-0.62-0.35-1.36-0.03-1.95c-0.91-0.98-2.1-1.71-3.44-2.05C13.39,5.6,12.74,6,12,6c-0.74,0-1.39-0.41-1.74-1.01 C8.92,5.33,7.73,6.04,6.82,7.02C7.15,7.62,7.17,8.37,6.8,9C6.45,9.62,5.81,9.97,5.15,10z M3.85,9.58C3.07,8.98,2.83,7.88,3.34,7 c0.51-0.88,1.58-1.23,2.49-0.85c1.11-1.17,2.56-2.03,4.18-2.42C10.15,2.75,10.99,2,12,2c1.01,0,1.85,0.75,1.98,1.73 c1.63,0.39,3.07,1.24,4.18,2.42c0.91-0.38,1.99-0.03,2.49,0.85c0.51,0.88,0.27,1.98-0.51,2.58c0.23,0.77,0.35,1.58,0.35,2.42 s-0.12,1.65-0.35,2.42c0.78,0.6,1.02,1.7,0.51,2.58c-0.51,0.88-1.58,1.23-2.49,0.85c-0.4,0.43-0.85,0.81-1.34,1.15l1.34,3H16.3 l-0.97-2.17c-0.43,0.18-0.88,0.33-1.34,0.44C13.85,21.25,13.01,22,12,22c-1.01,0-1.85-0.75-1.98-1.73 C9.54,20.15,9.08,20,8.64,19.81L7.66,22H5.78l1.36-3.03c-0.47-0.33-0.91-0.71-1.3-1.12C4.92,18.23,3.85,17.88,3.34,17 c-0.51-0.88-0.27-1.98,0.51-2.58C3.62,13.65,3.5,12.84,3.5,12S3.62,10.35,3.85,9.58z"},"children":[{"name":"path","attribs":{"d":"M10.43,18.75C10.8,18.29,11.37,18,12,18c0.63,0,1.19,0.29,1.56,0.75c0.39-0.09,0.76-0.21,1.12-0.36l-1.42-3.18 c-0.39,0.15-0.82,0.23-1.26,0.23c-0.46,0-0.9-0.09-1.3-0.25l-1.43,3.19C9.65,18.54,10.03,18.67,10.43,18.75z M5.15,10 c-0.16,0.59-0.25,1.21-0.25,1.85c0,0.75,0.12,1.47,0.33,2.15c0.63,0.05,1.22,0.4,1.56,0.99c0.33,0.57,0.35,1.23,0.11,1.79 c0.27,0.27,0.56,0.53,0.87,0.76l1.52-3.39v0c-0.47-0.58-0.75-1.32-0.75-2.13c0-1.89,1.55-3.41,3.46-3.41 c1.91,0,3.46,1.53,3.46,3.41c0,0.82-0.29,1.57-0.78,2.16l1.5,3.35c0.32-0.24,0.62-0.5,0.9-0.79c-0.22-0.55-0.2-1.2,0.12-1.75 c0.33-0.57,0.9-0.92,1.52-0.99c0.22-0.68,0.34-1.41,0.34-2.16c0-0.64-0.09-1.27-0.25-1.86c-0.64-0.04-1.26-0.39-1.6-1 c-0.36-0.62-0.35-1.36-0.03-1.95c-0.91-0.98-2.1-1.71-3.44-2.05C13.39,5.6,12.74,6,12,6c-0.74,0-1.39-0.41-1.74-1.01 C8.92,5.33,7.73,6.04,6.82,7.02C7.15,7.62,7.17,8.37,6.8,9C6.45,9.62,5.81,9.97,5.15,10z M3.85,9.58C3.07,8.98,2.83,7.88,3.34,7 c0.51-0.88,1.58-1.23,2.49-0.85c1.11-1.17,2.56-2.03,4.18-2.42C10.15,2.75,10.99,2,12,2c1.01,0,1.85,0.75,1.98,1.73 c1.63,0.39,3.07,1.24,4.18,2.42c0.91-0.38,1.99-0.03,2.49,0.85c0.51,0.88,0.27,1.98-0.51,2.58c0.23,0.77,0.35,1.58,0.35,2.42 s-0.12,1.65-0.35,2.42c0.78,0.6,1.02,1.7,0.51,2.58c-0.51,0.88-1.58,1.23-2.49,0.85c-0.4,0.43-0.85,0.81-1.34,1.15l1.34,3H16.3 l-0.97-2.17c-0.43,0.18-0.88,0.33-1.34,0.44C13.85,21.25,13.01,22,12,22c-1.01,0-1.85-0.75-1.98-1.73 C9.54,20.15,9.08,20,8.64,19.81L7.66,22H5.78l1.36-3.03c-0.47-0.33-0.91-0.71-1.3-1.12C4.92,18.23,3.85,17.88,3.34,17 c-0.51-0.88-0.27-1.98,0.51-2.58C3.62,13.65,3.5,12.84,3.5,12S3.62,10.35,3.85,9.58z"},"children":[]}]}]}]};exports.ic_attractions=ic_attractions;var ic_badge={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M20,7h-5V4c0-1.1-0.9-2-2-2h-2C9.9,2,9,2.9,9,4v3H4C2.9,7,2,7.9,2,9v11c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V9 C22,7.9,21.1,7,20,7z M9,12c0.83,0,1.5,0.67,1.5,1.5S9.83,15,9,15s-1.5-0.67-1.5-1.5S8.17,12,9,12z M12,18H6v-0.75c0-1,2-1.5,3-1.5 s3,0.5,3,1.5V18z M13,9h-2V4h2V9z M18,16.5h-4V15h4V16.5z M18,13.5h-4V12h4V13.5z"},"children":[{"name":"path","attribs":{"d":"M20,7h-5V4c0-1.1-0.9-2-2-2h-2C9.9,2,9,2.9,9,4v3H4C2.9,7,2,7.9,2,9v11c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V9 C22,7.9,21.1,7,20,7z M9,12c0.83,0,1.5,0.67,1.5,1.5S9.83,15,9,15s-1.5-0.67-1.5-1.5S8.17,12,9,12z M12,18H6v-0.75c0-1,2-1.5,3-1.5 s3,0.5,3,1.5V18z M13,9h-2V4h2V9z M18,16.5h-4V15h4V16.5z M18,13.5h-4V12h4V13.5z"},"children":[]}]}]}]};exports.ic_badge=ic_badge;var ic_bakery_dining={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M19.28,16.34C18.07,15.45,17.46,15,17.46,15s0.32-0.59,0.96-1.78 c0.38-0.59,1.22-0.59,1.6,0l0.81,1.26c0.19,0.3,0.21,0.68,0.06,1l-0.22,0.47C20.42,16.49,19.76,16.67,19.28,16.34z M4.72,16.34 c-0.48,0.33-1.13,0.15-1.39-0.38L3.1,15.49c-0.15-0.32-0.13-0.7,0.06-1l0.81-1.26c0.38-0.59,1.22-0.59,1.6,0 C6.22,14.41,6.54,15,6.54,15S5.93,15.45,4.72,16.34z M15.36,9.37c0.09-0.68,0.73-1.06,1.27-0.75l1.59,0.9 c0.46,0.26,0.63,0.91,0.36,1.41L16.5,15h-1.8L15.36,9.37z M8.63,9.37L9.3,15H7.5l-2.09-4.08c-0.27-0.5-0.1-1.15,0.36-1.41l1.59-0.9 C7.89,8.31,8.54,8.69,8.63,9.37z M13.8,15h-3.6L9.46,8.12C9.39,7.53,9.81,7,10.34,7h3.3c0.53,0,0.94,0.53,0.88,1.12L13.8,15z","fill-rule":"evenodd"},"children":[{"name":"path","attribs":{"d":"M19.28,16.34C18.07,15.45,17.46,15,17.46,15s0.32-0.59,0.96-1.78 c0.38-0.59,1.22-0.59,1.6,0l0.81,1.26c0.19,0.3,0.21,0.68,0.06,1l-0.22,0.47C20.42,16.49,19.76,16.67,19.28,16.34z M4.72,16.34 c-0.48,0.33-1.13,0.15-1.39-0.38L3.1,15.49c-0.15-0.32-0.13-0.7,0.06-1l0.81-1.26c0.38-0.59,1.22-0.59,1.6,0 C6.22,14.41,6.54,15,6.54,15S5.93,15.45,4.72,16.34z M15.36,9.37c0.09-0.68,0.73-1.06,1.27-0.75l1.59,0.9 c0.46,0.26,0.63,0.91,0.36,1.41L16.5,15h-1.8L15.36,9.37z M8.63,9.37L9.3,15H7.5l-2.09-4.08c-0.27-0.5-0.1-1.15,0.36-1.41l1.59-0.9 C7.89,8.31,8.54,8.69,8.63,9.37z M13.8,15h-3.6L9.46,8.12C9.39,7.53,9.81,7,10.34,7h3.3c0.53,0,0.94,0.53,0.88,1.12L13.8,15z","fill-rule":"evenodd"},"children":[]}]}]}]};exports.ic_bakery_dining=ic_bakery_dining;var ic_beenhere={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 1H5c-1.1 0-1.99.9-1.99 2L3 15.93c0 .69.35 1.3.88 1.66L12 23l8.11-5.41c.53-.36.88-.97.88-1.66L21 3c0-1.1-.9-2-2-2zm-9 15l-5-5 1.41-1.41L10 13.17l7.59-7.59L19 7l-9 9z"},"children":[]}]};exports.ic_beenhere=ic_beenhere;var ic_beenhere_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 1H5c-1.1 0-1.99.9-1.99 2L3 15.93c0 .69.35 1.3.88 1.66L12 23l8.11-5.41c.53-.36.88-.97.88-1.66L21 3c0-1.1-.9-2-2-2zm-7 19.6l-7-4.66V3h14v12.93l-7 4.67zm-2.01-7.42l-2.58-2.59L6 12l4 4 8-8-1.42-1.42z"},"children":[]}]};exports.ic_beenhere_outline=ic_beenhere_outline;var ic_beenhere_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5v12.93l7 4.66 7-4.67V3zm-9 13l-4-4 1.41-1.41 2.58 2.58 6.59-6.59L18 8l-8 8z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M19 1H5c-1.1 0-1.99.9-1.99 2L3 15.93c0 .69.35 1.3.88 1.66L12 23l8.11-5.41c.53-.36.88-.97.88-1.66L21 3c0-1.1-.9-2-2-2zm-7 19.6l-7-4.66V3h14v12.93l-7 4.67zm-2.01-7.42l-2.58-2.59L6 12l4 4 8-8-1.42-1.42z"},"children":[]}]};exports.ic_beenhere_twotone=ic_beenhere_twotone;var ic_bike_scooter={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M10,14h0.74L8.82,5.56C8.61,4.65,7.8,4,6.87,4H3v2h3.87l1.42,6.25c0,0-0.01,0-0.01,0C6.12,12.9,4.47,14.73,4.09,17H0v2h6 v-1C6,15.79,7.79,14,10,14z"},"children":[{"name":"path","attribs":{"d":"M10,14h0.74L8.82,5.56C8.61,4.65,7.8,4,6.87,4H3v2h3.87l1.42,6.25c0,0-0.01,0-0.01,0C6.12,12.9,4.47,14.73,4.09,17H0v2h6 v-1C6,15.79,7.79,14,10,14z"},"children":[]}]},{"name":"path","attribs":{"d":"M19,8h-0.82l-1.35-3.69C16.55,3.52,15.8,3,14.96,3H11v2h3.96l1.1,3H10.4l0.46,2H15c-0.43,0.58-0.75,1.25-0.9,2h-2.79 l0.46,2h2.33c0.44,2.23,2.31,3.88,4.65,3.99c2.8,0.13,5.25-2.19,5.25-5C24,10.2,21.8,8,19,8z M19,16c-1.68,0-3-1.32-3-3 c0-0.93,0.41-1.73,1.05-2.28l0.96,2.64l1.88-0.68l-0.97-2.67c0.03,0,0.06-0.01,0.09-0.01c1.68,0,3,1.32,3,3S20.68,16,19,16z"},"children":[{"name":"path","attribs":{"d":"M19,8h-0.82l-1.35-3.69C16.55,3.52,15.8,3,14.96,3H11v2h3.96l1.1,3H10.4l0.46,2H15c-0.43,0.58-0.75,1.25-0.9,2h-2.79 l0.46,2h2.33c0.44,2.23,2.31,3.88,4.65,3.99c2.8,0.13,5.25-2.19,5.25-5C24,10.2,21.8,8,19,8z M19,16c-1.68,0-3-1.32-3-3 c0-0.93,0.41-1.73,1.05-2.28l0.96,2.64l1.88-0.68l-0.97-2.67c0.03,0,0.06-0.01,0.09-0.01c1.68,0,3,1.32,3,3S20.68,16,19,16z"},"children":[]}]},{"name":"path","attribs":{"d":"M10,15c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S11.66,15,10,15z M10,19c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S10.55,19,10,19z"},"children":[{"name":"path","attribs":{"d":"M10,15c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S11.66,15,10,15z M10,19c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S10.55,19,10,19z"},"children":[]}]}]}]}]}]};exports.ic_bike_scooter=ic_bike_scooter;var ic_bike_scooter_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M10,14h0.74L8.82,5.56C8.61,4.65,7.8,4,6.87,4H3v2h3.87l1.42,6.25c0,0-0.01,0-0.01,0C6.12,12.9,4.47,14.73,4.09,17H0v2h6 v-1C6,15.79,7.79,14,10,14z"},"children":[{"name":"path","attribs":{"d":"M10,14h0.74L8.82,5.56C8.61,4.65,7.8,4,6.87,4H3v2h3.87l1.42,6.25c0,0-0.01,0-0.01,0C6.12,12.9,4.47,14.73,4.09,17H0v2h6 v-1C6,15.79,7.79,14,10,14z"},"children":[]}]},{"name":"path","attribs":{"d":"M19,8h-0.82l-1.35-3.69C16.55,3.52,15.8,3,14.96,3H11v2h3.96l1.1,3H10.4l0.46,2H15c-0.43,0.58-0.75,1.25-0.9,2h-2.79 l0.46,2h2.33c0.44,2.23,2.31,3.88,4.65,3.99c2.8,0.13,5.25-2.19,5.25-5C24,10.2,21.8,8,19,8z M19,16c-1.68,0-3-1.32-3-3 c0-0.93,0.41-1.73,1.05-2.28l0.96,2.64l1.88-0.68l-0.97-2.67c0.03,0,0.06-0.01,0.09-0.01c1.68,0,3,1.32,3,3S20.68,16,19,16z"},"children":[{"name":"path","attribs":{"d":"M19,8h-0.82l-1.35-3.69C16.55,3.52,15.8,3,14.96,3H11v2h3.96l1.1,3H10.4l0.46,2H15c-0.43,0.58-0.75,1.25-0.9,2h-2.79 l0.46,2h2.33c0.44,2.23,2.31,3.88,4.65,3.99c2.8,0.13,5.25-2.19,5.25-5C24,10.2,21.8,8,19,8z M19,16c-1.68,0-3-1.32-3-3 c0-0.93,0.41-1.73,1.05-2.28l0.96,2.64l1.88-0.68l-0.97-2.67c0.03,0,0.06-0.01,0.09-0.01c1.68,0,3,1.32,3,3S20.68,16,19,16z"},"children":[]}]},{"name":"path","attribs":{"d":"M10,15c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S11.66,15,10,15z M10,19c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S10.55,19,10,19z"},"children":[{"name":"path","attribs":{"d":"M10,15c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S11.66,15,10,15z M10,19c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S10.55,19,10,19z"},"children":[]}]}]}]}]}]};exports.ic_bike_scooter_outline=ic_bike_scooter_outline;var ic_bike_scooter_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M10,14h0.74L8.82,5.56C8.61,4.65,7.8,4,6.87,4H3v2h3.87l1.42,6.25c0,0-0.01,0-0.01,0C6.12,12.9,4.47,14.73,4.09,17H0v2h6 v-1C6,15.79,7.79,14,10,14z"},"children":[{"name":"path","attribs":{"d":"M10,14h0.74L8.82,5.56C8.61,4.65,7.8,4,6.87,4H3v2h3.87l1.42,6.25c0,0-0.01,0-0.01,0C6.12,12.9,4.47,14.73,4.09,17H0v2h6 v-1C6,15.79,7.79,14,10,14z"},"children":[]}]},{"name":"path","attribs":{"d":"M19,8h-0.82l-1.35-3.69C16.55,3.52,15.8,3,14.96,3H11v2h3.96l1.1,3H10.4l0.46,2H15c-0.43,0.58-0.75,1.25-0.9,2h-2.79 l0.46,2h2.33c0.44,2.23,2.31,3.88,4.65,3.99c2.8,0.13,5.25-2.19,5.25-5C24,10.2,21.8,8,19,8z M19,16c-1.68,0-3-1.32-3-3 c0-0.93,0.41-1.73,1.05-2.28l0.96,2.64l1.88-0.68l-0.97-2.67c0.03,0,0.06-0.01,0.09-0.01c1.68,0,3,1.32,3,3S20.68,16,19,16z"},"children":[{"name":"path","attribs":{"d":"M19,8h-0.82l-1.35-3.69C16.55,3.52,15.8,3,14.96,3H11v2h3.96l1.1,3H10.4l0.46,2H15c-0.43,0.58-0.75,1.25-0.9,2h-2.79 l0.46,2h2.33c0.44,2.23,2.31,3.88,4.65,3.99c2.8,0.13,5.25-2.19,5.25-5C24,10.2,21.8,8,19,8z M19,16c-1.68,0-3-1.32-3-3 c0-0.93,0.41-1.73,1.05-2.28l0.96,2.64l1.88-0.68l-0.97-2.67c0.03,0,0.06-0.01,0.09-0.01c1.68,0,3,1.32,3,3S20.68,16,19,16z"},"children":[]}]},{"name":"path","attribs":{"d":"M10,15c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S11.66,15,10,15z M10,19c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S10.55,19,10,19z"},"children":[{"name":"path","attribs":{"d":"M10,15c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S11.66,15,10,15z M10,19c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S10.55,19,10,19z"},"children":[]}]}]}]}]}]};exports.ic_bike_scooter_twotone=ic_bike_scooter_twotone;var ic_breakfast_dining={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M18,3H6C3.79,3,2,4.79,2,7c0,1.48,0.81,2.75,2,3.45V19c0,1.1,0.9,2,2,2h12 c1.1,0,2-0.9,2-2v-8.55c1.19-0.69,2-1.97,2-3.45C22,4.79,20.21,3,18,3z M14,15h-4v-4h4V15z","fill-rule":"evenodd"},"children":[{"name":"path","attribs":{"d":"M18,3H6C3.79,3,2,4.79,2,7c0,1.48,0.81,2.75,2,3.45V19c0,1.1,0.9,2,2,2h12 c1.1,0,2-0.9,2-2v-8.55c1.19-0.69,2-1.97,2-3.45C22,4.79,20.21,3,18,3z M14,15h-4v-4h4V15z","fill-rule":"evenodd"},"children":[]}]}]}]};exports.ic_breakfast_dining=ic_breakfast_dining;var ic_brunch_dining={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M18,8h2V4h-2V8z M15.51,22H2.49C2.22,22,2,21.78,2,21.5V20h14v1.5 C16,21.78,15.78,22,15.51,22z M18,15.89l-0.4-0.42c-1.02-1.08-1.6-2.52-1.6-4V2h6v9.51c0,1.46-0.54,2.87-1.53,3.94L20,15.97V20h2v2 h-4V15.89z M7,16v-2h4v2h4.5c0.28,0,0.5,0.22,0.5,0.5v1c0,0.28-0.22,0.5-0.5,0.5h-13C2.22,18,2,17.78,2,17.5v-1 C2,16.22,2.22,16,2.5,16H7z","fill-rule":"evenodd"},"children":[{"name":"path","attribs":{"d":"M18,8h2V4h-2V8z M15.51,22H2.49C2.22,22,2,21.78,2,21.5V20h14v1.5 C16,21.78,15.78,22,15.51,22z M18,15.89l-0.4-0.42c-1.02-1.08-1.6-2.52-1.6-4V2h6v9.51c0,1.46-0.54,2.87-1.53,3.94L20,15.97V20h2v2 h-4V15.89z M7,16v-2h4v2h4.5c0.28,0,0.5,0.22,0.5,0.5v1c0,0.28-0.22,0.5-0.5,0.5h-13C2.22,18,2,17.78,2,17.5v-1 C2,16.22,2.22,16,2.5,16H7z","fill-rule":"evenodd"},"children":[]}]}]}]};exports.ic_brunch_dining=ic_brunch_dining;var ic_bus_alert={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16 1a7 7 0 0 0-5.78 3.05l.02-.03C9.84 4 9.42 4 9 4c-4.42 0-8 .5-8 4v10c0 .88.39 1.67 1 2.22V22a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1h8v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1.78c.61-.55 1-1.34 1-2.22v-3.08A7 7 0 0 0 16 1zM4.5 19a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3zM3 13V8h6c0 1.96.81 3.73 2.11 5H3zm10.5 6a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3zm2.5-6a5 5 0 1 1 0-10 5 5 0 0 1 0 10zm-1-9h2v5h-2zm0 6h2v2h-2z"},"children":[]}]};exports.ic_bus_alert=ic_bus_alert;var ic_car_rental={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M16.39,9H7.61C7.18,9,6.8,9.28,6.66,9.68l-1.66,5v6.81C5,21.78,5.23,22,5.5,22h1C6.78,22,7,21.78,7,21.5V20h10v1.5 c0,0.28,0.22,0.5,0.5,0.5h1c0.28,0,0.5-0.22,0.5-0.5v-6.81l-1.66-5C17.2,9.28,16.82,9,16.39,9z M7.78,18 c-0.68,0-1.22-0.54-1.22-1.22s0.54-1.22,1.22-1.22S9,16.11,9,16.78S8.46,18,7.78,18z M16.22,18C15.55,18,15,17.46,15,16.78 s0.54-1.22,1.22-1.22s1.22,0.54,1.22,1.22S16.9,18,16.22,18z M6.29,14l1.33-4h8.78l1.33,4H6.29z"},"children":[{"name":"path","attribs":{"d":"M16.39,9H7.61C7.18,9,6.8,9.28,6.66,9.68l-1.66,5v6.81C5,21.78,5.23,22,5.5,22h1C6.78,22,7,21.78,7,21.5V20h10v1.5 c0,0.28,0.22,0.5,0.5,0.5h1c0.28,0,0.5-0.22,0.5-0.5v-6.81l-1.66-5C17.2,9.28,16.82,9,16.39,9z M7.78,18 c-0.68,0-1.22-0.54-1.22-1.22s0.54-1.22,1.22-1.22S9,16.11,9,16.78S8.46,18,7.78,18z M16.22,18C15.55,18,15,17.46,15,16.78 s0.54-1.22,1.22-1.22s1.22,0.54,1.22,1.22S16.9,18,16.22,18z M6.29,14l1.33-4h8.78l1.33,4H6.29z"},"children":[]}]},{"name":"path","attribs":{"d":"M10.83,3C10.41,1.83,9.3,1,8,1C6.34,1,5,2.34,5,4c0,1.65,1.34,3,3,3c1.3,0,2.41-0.84,2.83-2H16v2h2V5h1V3H10.83z M8,5 C7.45,5,7,4.55,7,4s0.45-1,1-1s1,0.45,1,1S8.55,5,8,5z"},"children":[{"name":"path","attribs":{"d":"M10.83,3C10.41,1.83,9.3,1,8,1C6.34,1,5,2.34,5,4c0,1.65,1.34,3,3,3c1.3,0,2.41-0.84,2.83-2H16v2h2V5h1V3H10.83z M8,5 C7.45,5,7,4.55,7,4s0.45-1,1-1s1,0.45,1,1S8.55,5,8,5z"},"children":[]}]}]}]}]}]};exports.ic_car_rental=ic_car_rental;var ic_car_repair={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M16.22,12c0.68,0,1.22-0.54,1.22-1.22c0-0.67-0.54-1.22-1.22-1.22S15,10.11,15,10.78C15,11.46,15.55,12,16.22,12z M6.56,10.78c0,0.67,0.54,1.22,1.22,1.22S9,11.46,9,10.78c0-0.67-0.54-1.22-1.22-1.22S6.56,10.11,6.56,10.78z M7.61,4L6.28,8h11.43 l-1.33-4H7.61z M16.28,3c0,0,0.54,0.01,0.92,0.54c0.02,0.02,0.03,0.04,0.05,0.07c0.07,0.11,0.14,0.24,0.19,0.4 C17.66,4.66,19,8.69,19,8.69v6.5c0,0.45-0.35,0.81-0.78,0.81h-0.44C17.35,16,17,15.64,17,15.19V14H7v1.19C7,15.64,6.65,16,6.22,16 H5.78C5.35,16,5,15.64,5,15.19v-6.5c0,0,1.34-4.02,1.55-4.69c0.05-0.16,0.12-0.28,0.19-0.4C6.77,3.58,6.78,3.56,6.8,3.54 C7.18,3.01,7.72,3,7.72,3H16.28z M4,17.01h16V19h-7v3h-2v-3H4V17.01z"},"children":[{"name":"path","attribs":{"d":"M16.22,12c0.68,0,1.22-0.54,1.22-1.22c0-0.67-0.54-1.22-1.22-1.22S15,10.11,15,10.78C15,11.46,15.55,12,16.22,12z M6.56,10.78c0,0.67,0.54,1.22,1.22,1.22S9,11.46,9,10.78c0-0.67-0.54-1.22-1.22-1.22S6.56,10.11,6.56,10.78z M7.61,4L6.28,8h11.43 l-1.33-4H7.61z M16.28,3c0,0,0.54,0.01,0.92,0.54c0.02,0.02,0.03,0.04,0.05,0.07c0.07,0.11,0.14,0.24,0.19,0.4 C17.66,4.66,19,8.69,19,8.69v6.5c0,0.45-0.35,0.81-0.78,0.81h-0.44C17.35,16,17,15.64,17,15.19V14H7v1.19C7,15.64,6.65,16,6.22,16 H5.78C5.35,16,5,15.64,5,15.19v-6.5c0,0,1.34-4.02,1.55-4.69c0.05-0.16,0.12-0.28,0.19-0.4C6.77,3.58,6.78,3.56,6.8,3.54 C7.18,3.01,7.72,3,7.72,3H16.28z M4,17.01h16V19h-7v3h-2v-3H4V17.01z"},"children":[]}]}]}]};exports.ic_car_repair=ic_car_repair;var ic_category={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2l-5.5 9h11z"},"children":[]},{"name":"circle","attribs":{"cx":"17.5","cy":"17.5","r":"4.5"},"children":[]},{"name":"path","attribs":{"d":"M3 13.5h8v8H3z"},"children":[]}]};exports.ic_category=ic_category;var ic_category_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2l-5.5 9h11L12 2zm0 3.84L13.93 9h-3.87L12 5.84zM17.5 13c-2.49 0-4.5 2.01-4.5 4.5s2.01 4.5 4.5 4.5 4.5-2.01 4.5-4.5-2.01-4.5-4.5-4.5zm0 7c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5zM3 21.5h8v-8H3v8zm2-6h4v4H5v-4z"},"children":[]}]};exports.ic_category_outline=ic_category_outline;var ic_category_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"17.5","cy":"17.5","opacity":".3","r":"2.5"},"children":[]},{"name":"path","attribs":{"d":"M5 15.5h4v4H5zm7-9.66L10.07 9h3.86z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 2l-5.5 9h11L12 2zm0 3.84L13.93 9h-3.87L12 5.84zM17.5 13c-2.49 0-4.5 2.01-4.5 4.5s2.01 4.5 4.5 4.5 4.5-2.01 4.5-4.5-2.01-4.5-4.5-4.5zm0 7c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5zM11 13.5H3v8h8v-8zm-2 6H5v-4h4v4z"},"children":[]}]};exports.ic_category_twotone=ic_category_twotone;var ic_celebration={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"2,22 16,17 7,8"},"children":[{"name":"polygon","attribs":{"points":"2,22 16,17 7,8"},"children":[]}]},{"name":"path","attribs":{"d":"M14.53,12.53l5.59-5.59c0.49-0.49,1.28-0.49,1.77,0l0.59,0.59l1.06-1.06l-0.59-0.59c-1.07-1.07-2.82-1.07-3.89,0 l-5.59,5.59L14.53,12.53z"},"children":[{"name":"path","attribs":{"d":"M14.53,12.53l5.59-5.59c0.49-0.49,1.28-0.49,1.77,0l0.59,0.59l1.06-1.06l-0.59-0.59c-1.07-1.07-2.82-1.07-3.89,0 l-5.59,5.59L14.53,12.53z"},"children":[]}]},{"name":"path","attribs":{"d":"M10.06,6.88L9.47,7.47l1.06,1.06l0.59-0.59c1.07-1.07,1.07-2.82,0-3.89l-0.59-0.59L9.47,4.53l0.59,0.59 C10.54,5.6,10.54,6.4,10.06,6.88z"},"children":[{"name":"path","attribs":{"d":"M10.06,6.88L9.47,7.47l1.06,1.06l0.59-0.59c1.07-1.07,1.07-2.82,0-3.89l-0.59-0.59L9.47,4.53l0.59,0.59 C10.54,5.6,10.54,6.4,10.06,6.88z"},"children":[]}]},{"name":"path","attribs":{"d":"M17.06,11.88l-1.59,1.59l1.06,1.06l1.59-1.59c0.49-0.49,1.28-0.49,1.77,0l1.61,1.61l1.06-1.06l-1.61-1.61 C19.87,10.81,18.13,10.81,17.06,11.88z"},"children":[{"name":"path","attribs":{"d":"M17.06,11.88l-1.59,1.59l1.06,1.06l1.59-1.59c0.49-0.49,1.28-0.49,1.77,0l1.61,1.61l1.06-1.06l-1.61-1.61 C19.87,10.81,18.13,10.81,17.06,11.88z"},"children":[]}]},{"name":"path","attribs":{"d":"M15.06,5.88l-3.59,3.59l1.06,1.06l3.59-3.59c1.07-1.07,1.07-2.82,0-3.89l-1.59-1.59l-1.06,1.06l1.59,1.59 C15.54,4.6,15.54,5.4,15.06,5.88z"},"children":[{"name":"path","attribs":{"d":"M15.06,5.88l-3.59,3.59l1.06,1.06l3.59-3.59c1.07-1.07,1.07-2.82,0-3.89l-1.59-1.59l-1.06,1.06l1.59,1.59 C15.54,4.6,15.54,5.4,15.06,5.88z"},"children":[]}]}]}]}]}]};exports.ic_celebration=ic_celebration;var ic_cleaning_services={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M16,11h-1V3c0-1.1-0.9-2-2-2h-2C9.9,1,9,1.9,9,3v8H8c-2.76,0-5,2.24-5,5v7h18v-7C21,13.24,18.76,11,16,11z M19,21h-2v-3 c0-0.55-0.45-1-1-1s-1,0.45-1,1v3h-2v-3c0-0.55-0.45-1-1-1s-1,0.45-1,1v3H9v-3c0-0.55-0.45-1-1-1s-1,0.45-1,1v3H5v-5 c0-1.65,1.35-3,3-3h8c1.65,0,3,1.35,3,3V21z"},"children":[{"name":"path","attribs":{"d":"M16,11h-1V3c0-1.1-0.9-2-2-2h-2C9.9,1,9,1.9,9,3v8H8c-2.76,0-5,2.24-5,5v7h18v-7C21,13.24,18.76,11,16,11z M19,21h-2v-3 c0-0.55-0.45-1-1-1s-1,0.45-1,1v3h-2v-3c0-0.55-0.45-1-1-1s-1,0.45-1,1v3H9v-3c0-0.55-0.45-1-1-1s-1,0.45-1,1v3H5v-5 c0-1.65,1.35-3,3-3h8c1.65,0,3,1.35,3,3V21z"},"children":[]}]}]}]};exports.ic_cleaning_services=ic_cleaning_services;var ic_cleaning_services_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M16,11h-1V3c0-1.1-0.9-2-2-2h-2C9.9,1,9,1.9,9,3v8H8c-2.76,0-5,2.24-5,5v7h18v-7C21,13.24,18.76,11,16,11z M11,3h2v8h-2V3 z M19,21h-2v-3c0-0.55-0.45-1-1-1s-1,0.45-1,1v3h-2v-3c0-0.55-0.45-1-1-1s-1,0.45-1,1v3H9v-3c0-0.55-0.45-1-1-1s-1,0.45-1,1v3H5 v-5c0-1.65,1.35-3,3-3h8c1.65,0,3,1.35,3,3V21z"},"children":[{"name":"path","attribs":{"d":"M16,11h-1V3c0-1.1-0.9-2-2-2h-2C9.9,1,9,1.9,9,3v8H8c-2.76,0-5,2.24-5,5v7h18v-7C21,13.24,18.76,11,16,11z M11,3h2v8h-2V3 z M19,21h-2v-3c0-0.55-0.45-1-1-1s-1,0.45-1,1v3h-2v-3c0-0.55-0.45-1-1-1s-1,0.45-1,1v3H9v-3c0-0.55-0.45-1-1-1s-1,0.45-1,1v3H5 v-5c0-1.65,1.35-3,3-3h8c1.65,0,3,1.35,3,3V21z"},"children":[]}]}]}]}]}]};exports.ic_cleaning_services_outline=ic_cleaning_services_outline;var ic_cleaning_services_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"height":"8","opacity":".3","width":"2","x":"11","y":"3"},"children":[{"name":"rect","attribs":{"height":"8","opacity":".3","width":"2","x":"11","y":"3"},"children":[]}]},{"name":"path","attribs":{"d":"M16,13H8c-1.65,0-3,1.35-3,3v5h2v-3c0-0.55,0.45-1,1-1s1,0.45,1,1v3h2v-3c0-0.55,0.45-1,1-1s1,0.45,1,1v3h2 v-3c0-0.55,0.45-1,1-1s1,0.45,1,1v3h2v-5C19,14.35,17.65,13,16,13z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M16,13H8c-1.65,0-3,1.35-3,3v5h2v-3c0-0.55,0.45-1,1-1s1,0.45,1,1v3h2v-3c0-0.55,0.45-1,1-1s1,0.45,1,1v3h2 v-3c0-0.55,0.45-1,1-1s1,0.45,1,1v3h2v-5C19,14.35,17.65,13,16,13z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M16,11h-1V3c0-1.1-0.9-2-2-2h-2C9.9,1,9,1.9,9,3v8H8c-2.76,0-5,2.24-5,5v7h18v-7C21,13.24,18.76,11,16,11z M11,3h2v8h-2V3 z M19,21h-2v-3c0-0.55-0.45-1-1-1s-1,0.45-1,1v3h-2v-3c0-0.55-0.45-1-1-1s-1,0.45-1,1v3H9v-3c0-0.55-0.45-1-1-1s-1,0.45-1,1v3H5 v-5c0-1.65,1.35-3,3-3h8c1.65,0,3,1.35,3,3V21z"},"children":[{"name":"path","attribs":{"d":"M16,11h-1V3c0-1.1-0.9-2-2-2h-2C9.9,1,9,1.9,9,3v8H8c-2.76,0-5,2.24-5,5v7h18v-7C21,13.24,18.76,11,16,11z M11,3h2v8h-2V3 z M19,21h-2v-3c0-0.55-0.45-1-1-1s-1,0.45-1,1v3h-2v-3c0-0.55-0.45-1-1-1s-1,0.45-1,1v3H9v-3c0-0.55-0.45-1-1-1s-1,0.45-1,1v3H5 v-5c0-1.65,1.35-3,3-3h8c1.65,0,3,1.35,3,3V21z"},"children":[]}]}]}]}]}]};exports.ic_cleaning_services_twotone=ic_cleaning_services_twotone;var ic_compass_calibration={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"12","cy":"17","r":"4"},"children":[]},{"name":"path","attribs":{"d":"M12 10.07c1.95 0 3.72.79 5 2.07l5-5C19.44 4.59 15.9 3 12 3S4.56 4.59 2 7.15l5 5c1.28-1.28 3.05-2.08 5-2.08z"},"children":[]}]};exports.ic_compass_calibration=ic_compass_calibration;var ic_compass_calibration_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 12c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3zm0-17C8.1 3 4.56 4.59 2 7.15l5 5c1.28-1.28 3.05-2.08 5-2.08s3.72.79 5 2.07l5-5C19.44 4.59 15.9 3 12 3zm4.84 6.47c-1.44-.91-3.1-1.4-4.84-1.4-1.74 0-3.41.49-4.85 1.41L4.94 7.26C6.99 5.79 9.44 5 12 5c2.56 0 5 .79 7.05 2.26l-2.21 2.21z"},"children":[]}]};exports.ic_compass_calibration_outline=ic_compass_calibration_outline;var ic_compass_calibration_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4.94 7.26l2.21 2.21c1.44-.91 3.11-1.4 4.85-1.4 1.74 0 3.41.49 4.84 1.4l2.21-2.21C17 5.79 14.56 5 12 5c-2.56 0-5.01.79-7.06 2.26z","opacity":".3"},"children":[]},{"name":"circle","attribs":{"cx":"12","cy":"17","opacity":".3","r":"3"},"children":[]},{"name":"path","attribs":{"d":"M17 17c0-2.76-2.24-5-5-5s-5 2.24-5 5 2.24 5 5 5 5-2.24 5-5zm-8 0c0-1.65 1.35-3 3-3s3 1.35 3 3-1.35 3-3 3-3-1.35-3-3zM2 7.15l5 5c1.28-1.28 3.05-2.08 5-2.08s3.72.79 5 2.07l5-5C19.44 4.59 15.9 3 12 3 8.1 3 4.56 4.59 2 7.15zm14.84 2.32c-1.44-.91-3.1-1.4-4.84-1.4-1.74 0-3.41.49-4.85 1.41L4.94 7.26C6.99 5.79 9.44 5 12 5c2.56 0 5 .79 7.05 2.26l-2.21 2.21z"},"children":[]}]};exports.ic_compass_calibration_twotone=ic_compass_calibration_twotone;var ic_delivery_dining={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M19,7c0-1.1-0.9-2-2-2h-3v2h3v2.65L13.52,14H10V9H6c-2.21,0-4,1.79-4,4v3h2c0,1.66,1.34,3,3,3s3-1.34,3-3h4.48L19,10.35V7 z M7,17c-0.55,0-1-0.45-1-1h2C8,16.55,7.55,17,7,17z"},"children":[{"name":"path","attribs":{"d":"M19,7c0-1.1-0.9-2-2-2h-3v2h3v2.65L13.52,14H10V9H6c-2.21,0-4,1.79-4,4v3h2c0,1.66,1.34,3,3,3s3-1.34,3-3h4.48L19,10.35V7 z M7,17c-0.55,0-1-0.45-1-1h2C8,16.55,7.55,17,7,17z"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"5","x":"5","y":"6"},"children":[{"name":"rect","attribs":{"height":"2","width":"5","x":"5","y":"6"},"children":[]}]},{"name":"path","attribs":{"d":"M19,13c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,13,19,13z M19,17c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S19.55,17,19,17z"},"children":[{"name":"path","attribs":{"d":"M19,13c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,13,19,13z M19,17c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S19.55,17,19,17z"},"children":[]}]}]}]}]}]};exports.ic_delivery_dining=ic_delivery_dining;var ic_departure_board={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16 1c-2.4 0-4.52 1.21-5.78 3.05.01-.01.01-.02.02-.03C9.84 4 9.42 4 9 4c-4.42 0-8 .5-8 4v10c0 .88.39 1.67 1 2.22V22c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h8v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1.78c.61-.55 1-1.34 1-2.22v-3.08c3.39-.49 6-3.39 6-6.92 0-3.87-3.13-7-7-7zM4.5 19c-.83 0-1.5-.67-1.5-1.5S3.67 16 4.5 16s1.5.67 1.5 1.5S5.33 19 4.5 19zM3 13V8h6c0 1.96.81 3.73 2.11 5H3zm10.5 6c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm2.5-6c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm.5-9H15v5l3.62 2.16.75-1.23-2.87-1.68z"},"children":[]}]};exports.ic_departure_board=ic_departure_board;var ic_departure_board_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"5.5","cy":"16.5","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"12.5","cy":"16.5","r":"1.5"},"children":[]},{"name":"path","attribs":{"d":"M16 1c-2.39 0-4.49 1.2-5.75 3.02C9.84 4.01 9.43 4 9 4c-4.42 0-8 .5-8 4v10c0 .88.39 1.67 1 2.22V22c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h8v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1.78c.61-.55 1-1.34 1-2.22v-3.08c3.39-.49 6-3.39 6-6.92 0-3.87-3.13-7-7-7zM9 6h.29c-.09.32-.16.66-.21.99H3.34C3.89 6.46 5.31 6 9 6zM3 8.99h6.08c.16 1.11.57 2.13 1.18 3.01H3V8.99zM15 18c0 .37-.21.62-.34.73l-.29.27H3.63l-.29-.27C3.21 18.62 3 18.37 3 18v-4h9.41c.78.47 1.65.79 2.59.92V18zm1-5c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm.5-9H15v5l3.62 2.16.75-1.23-2.87-1.68z"},"children":[]}]};exports.ic_departure_board_outline=ic_departure_board_outline;var ic_departure_board_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9.29 6H9c-3.69 0-5.11.46-5.66.99h5.74c.05-.33.12-.67.21-.99zM3 14v4c0 .37.21.62.34.73l.29.27h10.74l.29-.27c.13-.11.34-.36.34-.73v-3.08c-.94-.13-1.81-.45-2.59-.92H3zm2.5 4c-.83 0-1.5-.67-1.5-1.5S4.67 15 5.5 15s1.5.67 1.5 1.5S6.33 18 5.5 18zm8.5-1.5c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5z","opacity":".3"},"children":[]},{"name":"circle","attribs":{"cx":"5.5","cy":"16.5","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"12.5","cy":"16.5","r":"1.5"},"children":[]},{"name":"path","attribs":{"d":"M16 1c-2.39 0-4.49 1.2-5.75 3.02C9.84 4.01 9.43 4 9 4c-4.42 0-8 .5-8 4v10c0 .88.39 1.67 1 2.22V22c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h8v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1.78c.61-.55 1-1.34 1-2.22v-3.08c3.39-.49 6-3.39 6-6.92 0-3.87-3.13-7-7-7zM9 6h.29c-.09.32-.16.66-.21.99H3.34C3.89 6.46 5.31 6 9 6zM3 8.99h6.08c.16 1.11.57 2.13 1.18 3.01H3V8.99zM15 18c0 .37-.21.62-.34.73l-.29.27H3.63l-.29-.27C3.21 18.62 3 18.37 3 18v-4h9.41c.78.47 1.65.79 2.59.92V18zm1-5c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm.5-9H15v5l3.62 2.16.75-1.23-2.87-1.68z"},"children":[]}]};exports.ic_departure_board_twotone=ic_departure_board_twotone;var ic_design_services={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M16.24,11.51l1.57-1.57l-3.75-3.75l-1.57,1.57L8.35,3.63c-0.78-0.78-2.05-0.78-2.83,0l-1.9,1.9 c-0.78,0.78-0.78,2.05,0,2.83l4.13,4.13L3,17.25V21h3.75l4.76-4.76l4.13,4.13c0.95,0.95,2.23,0.6,2.83,0l1.9-1.9 c0.78-0.78,0.78-2.05,0-2.83L16.24,11.51z M9.18,11.07L5.04,6.94l1.89-1.9c0,0,0,0,0,0l1.27,1.27L7.02,7.5l1.41,1.41l1.19-1.19 l1.45,1.45L9.18,11.07z M17.06,18.96l-4.13-4.13l1.9-1.9l1.45,1.45l-1.19,1.19l1.41,1.41l1.19-1.19l1.27,1.27L17.06,18.96z"},"children":[{"name":"path","attribs":{"d":"M16.24,11.51l1.57-1.57l-3.75-3.75l-1.57,1.57L8.35,3.63c-0.78-0.78-2.05-0.78-2.83,0l-1.9,1.9 c-0.78,0.78-0.78,2.05,0,2.83l4.13,4.13L3,17.25V21h3.75l4.76-4.76l4.13,4.13c0.95,0.95,2.23,0.6,2.83,0l1.9-1.9 c0.78-0.78,0.78-2.05,0-2.83L16.24,11.51z M9.18,11.07L5.04,6.94l1.89-1.9c0,0,0,0,0,0l1.27,1.27L7.02,7.5l1.41,1.41l1.19-1.19 l1.45,1.45L9.18,11.07z M17.06,18.96l-4.13-4.13l1.9-1.9l1.45,1.45l-1.19,1.19l1.41,1.41l1.19-1.19l1.27,1.27L17.06,18.96z"},"children":[]}]},{"name":"path","attribs":{"d":"M20.71,7.04c0.39-0.39,0.39-1.02,0-1.41l-2.34-2.34c-0.47-0.47-1.12-0.29-1.41,0l-1.83,1.83l3.75,3.75L20.71,7.04z"},"children":[{"name":"path","attribs":{"d":"M20.71,7.04c0.39-0.39,0.39-1.02,0-1.41l-2.34-2.34c-0.47-0.47-1.12-0.29-1.41,0l-1.83,1.83l3.75,3.75L20.71,7.04z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]}]}]};exports.ic_design_services=ic_design_services;var ic_design_services_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M20.97,7.27c0.39-0.39,0.39-1.02,0-1.41l-2.83-2.83c-0.39-0.39-1.02-0.39-1.41,0l-4.49,4.49L8.35,3.63 c-0.78-0.78-2.05-0.78-2.83,0l-1.9,1.9c-0.78,0.78-0.78,2.05,0,2.83l3.89,3.89L3,16.76V21h4.24l4.52-4.52l3.89,3.89 c0.95,0.95,2.23,0.6,2.83,0l1.9-1.9c0.78-0.78,0.78-2.05,0-2.83l-3.89-3.89L20.97,7.27z M5.04,6.94l1.89-1.9c0,0,0,0,0,0 l1.27,1.27L7.02,7.5l1.41,1.41l1.19-1.19l1.2,1.2l-1.9,1.9L5.04,6.94z M16.27,14.38l-1.19,1.19l1.41,1.41l1.19-1.19l1.27,1.27 l-1.9,1.9l-3.89-3.89l1.9-1.9L16.27,14.38z M6.41,19H5v-1.41l9.61-9.61l1.3,1.3l0.11,0.11L6.41,19z M16.02,6.56l1.41-1.41 l1.41,1.41l-1.41,1.41L16.02,6.56z"},"children":[{"name":"path","attribs":{"d":"M20.97,7.27c0.39-0.39,0.39-1.02,0-1.41l-2.83-2.83c-0.39-0.39-1.02-0.39-1.41,0l-4.49,4.49L8.35,3.63 c-0.78-0.78-2.05-0.78-2.83,0l-1.9,1.9c-0.78,0.78-0.78,2.05,0,2.83l3.89,3.89L3,16.76V21h4.24l4.52-4.52l3.89,3.89 c0.95,0.95,2.23,0.6,2.83,0l1.9-1.9c0.78-0.78,0.78-2.05,0-2.83l-3.89-3.89L20.97,7.27z M5.04,6.94l1.89-1.9c0,0,0,0,0,0 l1.27,1.27L7.02,7.5l1.41,1.41l1.19-1.19l1.2,1.2l-1.9,1.9L5.04,6.94z M16.27,14.38l-1.19,1.19l1.41,1.41l1.19-1.19l1.27,1.27 l-1.9,1.9l-3.89-3.89l1.9-1.9L16.27,14.38z M6.41,19H5v-1.41l9.61-9.61l1.3,1.3l0.11,0.11L6.41,19z M16.02,6.56l1.41-1.41 l1.41,1.41l-1.41,1.41L16.02,6.56z"},"children":[]}]}]}]}]}]};exports.ic_design_services_outline=ic_design_services_outline;var ic_design_services_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"opacity":".3","points":"15.91,9.28 14.61,7.98 5,17.59 5,19 6.41,19 16.02,9.39"},"children":[{"name":"polygon","attribs":{"opacity":".3","points":"15.91,9.28 14.61,7.98 5,17.59 5,19 6.41,19 16.02,9.39"},"children":[]}]},{"name":"polygon","attribs":{"opacity":".3","points":"10.83,8.93 9.63,7.73 8.44,8.92 7.02,7.5 8.21,6.32 6.94,5.04 6.94,5.04 5.04,6.94 8.93,10.83"},"children":[{"name":"polygon","attribs":{"opacity":".3","points":"10.83,8.93 9.63,7.73 8.44,8.92 7.02,7.5 8.21,6.32 6.94,5.04 6.94,5.04 5.04,6.94 8.93,10.83"},"children":[]}]},{"name":"polygon","attribs":{"opacity":".3","points":"16.27,14.38 15.07,13.17 13.17,15.07 17.06,18.96 18.96,17.06 17.69,15.79 16.5,16.98 15.08,15.57"},"children":[{"name":"polygon","attribs":{"opacity":".3","points":"16.27,14.38 15.07,13.17 13.17,15.07 17.06,18.96 18.96,17.06 17.69,15.79 16.5,16.98 15.08,15.57"},"children":[]}]},{"name":"rect","attribs":{"height":"2","opacity":".3","transform":"matrix(0.7071 -0.7071 0.7071 0.7071 0.4645 14.2513)","width":"2","x":"16.44","y":"5.56"},"children":[{"name":"rect","attribs":{"height":"2","opacity":".3","transform":"matrix(0.7071 -0.7071 0.7071 0.7071 0.4645 14.2513)","width":"2","x":"16.44","y":"5.56"},"children":[]}]},{"name":"path","attribs":{"d":"M20.97,5.86l-2.83-2.83c-0.39-0.39-1.02-0.39-1.41,0l-4.49,4.49L8.35,3.63c-0.78-0.78-2.05-0.78-2.83,0l-1.9,1.9 c-0.78,0.78-0.78,2.05,0,2.83l3.89,3.89L3,16.76V21h4.24l4.52-4.52l3.89,3.89c0.95,0.95,2.23,0.6,2.83,0l1.9-1.9 c0.78-0.78,0.78-2.05,0-2.83l-3.89-3.89l4.49-4.49C21.36,6.88,21.36,6.25,20.97,5.86z M5.04,6.94l1.89-1.9c0,0,0,0,0,0l1.27,1.27 L7.02,7.5l1.41,1.41l1.19-1.19l1.2,1.2l-1.9,1.9L5.04,6.94z M6.41,19H5v-1.41l9.61-9.61l1.3,1.3l0.11,0.11L6.41,19z M16.5,16.98 l1.19-1.19l1.27,1.27l-1.9,1.9l-3.89-3.89l1.9-1.9l1.2,1.2l-1.19,1.19L16.5,16.98z M17.44,7.98l-1.41-1.41l1.41-1.41l1.41,1.41 L17.44,7.98z"},"children":[{"name":"path","attribs":{"d":"M20.97,5.86l-2.83-2.83c-0.39-0.39-1.02-0.39-1.41,0l-4.49,4.49L8.35,3.63c-0.78-0.78-2.05-0.78-2.83,0l-1.9,1.9 c-0.78,0.78-0.78,2.05,0,2.83l3.89,3.89L3,16.76V21h4.24l4.52-4.52l3.89,3.89c0.95,0.95,2.23,0.6,2.83,0l1.9-1.9 c0.78-0.78,0.78-2.05,0-2.83l-3.89-3.89l4.49-4.49C21.36,6.88,21.36,6.25,20.97,5.86z M5.04,6.94l1.89-1.9c0,0,0,0,0,0l1.27,1.27 L7.02,7.5l1.41,1.41l1.19-1.19l1.2,1.2l-1.9,1.9L5.04,6.94z M6.41,19H5v-1.41l9.61-9.61l1.3,1.3l0.11,0.11L6.41,19z M16.5,16.98 l1.19-1.19l1.27,1.27l-1.9,1.9l-3.89-3.89l1.9-1.9l1.2,1.2l-1.19,1.19L16.5,16.98z M17.44,7.98l-1.41-1.41l1.41-1.41l1.41,1.41 L17.44,7.98z"},"children":[]}]}]}]}]}]};exports.ic_design_services_twotone=ic_design_services_twotone;var ic_dinner_dining={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M2,19h20l-2,2H4L2,19z M5,6h1v1H5V6z M5,4h1v1H5V4z M9,4v1H7V4H9z M9,7H7V6h2V7z M6,15.23c-0.36,0.11-0.69,0.28-1,0.47V8h1 V15.23z M4,16.52C3.62,16.96,3.32,17.45,3.16,18h16.82c0.01-0.16,0.03-0.33,0.03-0.5c0-3.04-2.46-5.5-5.5-5.5 c-2.29,0-4.25,1.4-5.08,3.4C8.84,15.15,8.19,15,7.5,15c-0.17,0-0.33,0.02-0.5,0.04V8h2c1.03,0.06,1.9-0.96,2-2h10V5H11 c-0.1-1.05-0.97-1.97-2-2H3v1h1v1H3v1h1v1H3v1h1V16.52z"},"children":[{"name":"path","attribs":{"d":"M2,19h20l-2,2H4L2,19z M5,6h1v1H5V6z M5,4h1v1H5V4z M9,4v1H7V4H9z M9,7H7V6h2V7z M6,15.23c-0.36,0.11-0.69,0.28-1,0.47V8h1 V15.23z M4,16.52C3.62,16.96,3.32,17.45,3.16,18h16.82c0.01-0.16,0.03-0.33,0.03-0.5c0-3.04-2.46-5.5-5.5-5.5 c-2.29,0-4.25,1.4-5.08,3.4C8.84,15.15,8.19,15,7.5,15c-0.17,0-0.33,0.02-0.5,0.04V8h2c1.03,0.06,1.9-0.96,2-2h10V5H11 c-0.1-1.05-0.97-1.97-2-2H3v1h1v1H3v1h1v1H3v1h1V16.52z"},"children":[]}]}]}]};exports.ic_dinner_dining=ic_dinner_dining;var ic_directions={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21.71 11.29l-9-9c-.39-.39-1.02-.39-1.41 0l-9 9c-.39.39-.39 1.02 0 1.41l9 9c.39.39 1.02.39 1.41 0l9-9c.39-.38.39-1.01 0-1.41zM14 14.5V12h-4v3H8v-4c0-.55.45-1 1-1h5V7.5l3.5 3.5-3.5 3.5z"},"children":[]}]};exports.ic_directions=ic_directions;var ic_directions_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22.43 10.59l-9.01-9.01c-.75-.75-2.07-.76-2.83 0l-9 9c-.78.78-.78 2.04 0 2.82l9 9c.39.39.9.58 1.41.58.51 0 1.02-.19 1.41-.58l8.99-8.99c.79-.76.8-2.02.03-2.82zm-10.42 10.4l-9-9 9-9 9 9-9 9zM8 11v4h2v-3h4v2.5l3.5-3.5L14 7.5V10H9c-.55 0-1 .45-1 1z"},"children":[]}]};exports.ic_directions_outline=ic_directions_outline;var ic_directions_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3.01 12l9 9L21 12l-9-9-8.99 9zM14 7.5l3.5 3.5-3.5 3.5V12h-4v3H8v-4c0-.55.45-1 1-1h5V7.5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M13.42 1.58c-.75-.75-2.07-.76-2.83 0l-9 9c-.78.78-.78 2.04 0 2.82l9 9c.39.39.9.58 1.41.58.51 0 1.02-.19 1.41-.58l8.99-8.99c.78-.76.79-2.03.02-2.82l-9-9.01zm-1.41 19.41l-9-9 9-9 9 9-9 9zM8 11v4h2v-3h4v2.5l3.5-3.5L14 7.5V10H9c-.55 0-1 .45-1 1z"},"children":[]}]};exports.ic_directions_twotone=ic_directions_twotone;var ic_directions_bike={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM5 12c-2.8 0-5 2.2-5 5s2.2 5 5 5 5-2.2 5-5-2.2-5-5-5zm0 8.5c-1.9 0-3.5-1.6-3.5-3.5s1.6-3.5 3.5-3.5 3.5 1.6 3.5 3.5-1.6 3.5-3.5 3.5zm5.8-10l2.4-2.4.8.8c1.3 1.3 3 2.1 5.1 2.1V9c-1.5 0-2.7-.6-3.6-1.5l-1.9-1.9c-.5-.4-1-.6-1.6-.6s-1.1.2-1.4.6L7.8 8.4c-.4.4-.6.9-.6 1.4 0 .6.2 1.1.6 1.4L11 14v5h2v-6.2l-2.2-2.3zM19 12c-2.8 0-5 2.2-5 5s2.2 5 5 5 5-2.2 5-5-2.2-5-5-5zm0 8.5c-1.9 0-3.5-1.6-3.5-3.5s1.6-3.5 3.5-3.5 3.5 1.6 3.5 3.5-1.6 3.5-3.5 3.5z"},"children":[]}]};exports.ic_directions_bike=ic_directions_bike;var ic_directions_bike_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM5 12c-2.8 0-5 2.2-5 5s2.2 5 5 5 5-2.2 5-5-2.2-5-5-5zm0 8.5c-1.9 0-3.5-1.6-3.5-3.5s1.6-3.5 3.5-3.5 3.5 1.6 3.5 3.5-1.6 3.5-3.5 3.5zm5.8-10l2.4-2.4.8.8c1.3 1.3 3 2.1 5.1 2.1V9c-1.5 0-2.7-.6-3.6-1.5l-1.9-1.9c-.5-.4-1-.6-1.6-.6s-1.1.2-1.4.6L7.8 8.4c-.4.4-.6.9-.6 1.4 0 .6.2 1.1.6 1.4L11 14v5h2v-6.2l-2.2-2.3zM19 12c-2.8 0-5 2.2-5 5s2.2 5 5 5 5-2.2 5-5-2.2-5-5-5zm0 8.5c-1.9 0-3.5-1.6-3.5-3.5s1.6-3.5 3.5-3.5 3.5 1.6 3.5 3.5-1.6 3.5-3.5 3.5z"},"children":[]}]};exports.ic_directions_bike_outline=ic_directions_bike_outline;var ic_directions_bike_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM5 22c2.8 0 5-2.2 5-5s-2.2-5-5-5-5 2.2-5 5 2.2 5 5 5zm0-8.5c1.9 0 3.5 1.6 3.5 3.5S6.9 20.5 5 20.5 1.5 18.9 1.5 17s1.6-3.5 3.5-3.5zm2.8-2.3L11 14v5h2v-6.2l-2.2-2.3 2.4-2.4.8.8c1.3 1.3 3 2.1 5.1 2.1V9c-1.5 0-2.7-.6-3.6-1.5l-1.9-1.9c-.5-.4-1-.6-1.6-.6s-1.1.2-1.4.6L7.8 8.4c-.4.4-.6.9-.6 1.4 0 .6.2 1.1.6 1.4zM19 12c-2.8 0-5 2.2-5 5s2.2 5 5 5 5-2.2 5-5-2.2-5-5-5zm0 8.5c-1.9 0-3.5-1.6-3.5-3.5s1.6-3.5 3.5-3.5 3.5 1.6 3.5 3.5-1.6 3.5-3.5 3.5z"},"children":[]}]};exports.ic_directions_bike_twotone=ic_directions_bike_twotone;var ic_directions_boat={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 21c-1.39 0-2.78-.47-4-1.32-2.44 1.71-5.56 1.71-8 0C6.78 20.53 5.39 21 4 21H2v2h2c1.38 0 2.74-.35 4-.99 2.52 1.29 5.48 1.29 8 0 1.26.65 2.62.99 4 .99h2v-2h-2zM3.95 19H4c1.6 0 3.02-.88 4-2 .98 1.12 2.4 2 4 2s3.02-.88 4-2c.98 1.12 2.4 2 4 2h.05l1.89-6.68c.08-.26.06-.54-.06-.78s-.34-.42-.6-.5L20 10.62V6c0-1.1-.9-2-2-2h-3V1H9v3H6c-1.1 0-2 .9-2 2v4.62l-1.29.42c-.26.08-.48.26-.6.5s-.15.52-.06.78L3.95 19zM6 6h12v3.97L12 8 6 9.97V6z"},"children":[]}]};exports.ic_directions_boat=ic_directions_boat;var ic_directions_boat_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13 3v1h-2V3h2m-1 7.11l5.38 1.77 2.39.78-1.12 3.97c-.54-.3-.94-.71-1.14-.94L16 13.96l-1.51 1.72c-.34.4-1.28 1.32-2.49 1.32s-2.15-.92-2.49-1.32L8 13.96l-1.51 1.72c-.2.23-.6.63-1.14.93l-1.13-3.96 2.4-.79L12 10.11M15 1H9v3H6c-1.1 0-2 .9-2 2v4.62l-1.29.42c-.26.08-.48.26-.6.5s-.15.52-.06.78L3.95 19H4c1.6 0 3.02-.88 4-2 .98 1.12 2.4 2 4 2s3.02-.88 4-2c.98 1.12 2.4 2 4 2h.05l1.89-6.68c.08-.26.06-.54-.06-.78s-.34-.42-.6-.5L20 10.62V6c0-1.1-.9-2-2-2h-3V1zM6 9.97V6h12v3.97L12 8 6 9.97zm10 9.71c-1.22.85-2.61 1.28-4 1.28s-2.78-.43-4-1.28C6.78 20.53 5.39 21 4 21H2v2h2c1.38 0 2.74-.35 4-.99 1.26.64 2.63.97 4 .97s2.74-.32 4-.97c1.26.65 2.62.99 4 .99h2v-2h-2c-1.39 0-2.78-.47-4-1.32z"},"children":[]}]};exports.ic_directions_boat_outline=ic_directions_boat_outline;var ic_directions_boat_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6.49 15.68L8 13.96l1.51 1.72c.34.4 1.28 1.32 2.49 1.32 1.21 0 2.15-.92 2.49-1.32L16 13.96l1.51 1.72c.2.23.6.64 1.14.94l1.12-3.97-2.39-.78L12 10.11l-5.38 1.77-2.4.79 1.13 3.96c.55-.31.94-.72 1.14-.95zM11 3h2v1h-2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M3.95 19H4c1.6 0 3.02-.88 4-2 .98 1.12 2.4 2 4 2s3.02-.88 4-2c.98 1.12 2.4 2 4 2h.05l1.89-6.68c.08-.26.06-.54-.06-.78s-.34-.42-.6-.5L20 10.62V6c0-1.1-.9-2-2-2h-3V1H9v3H6c-1.1 0-2 .9-2 2v4.62l-1.29.42c-.26.08-.48.26-.6.5s-.15.52-.06.78L3.95 19zM11 3h2v1h-2V3zM6 6h12v3.97L12 8 6 9.97V6zm.62 5.87L12 10.11l5.38 1.77 2.39.78-1.12 3.97c-.54-.3-.94-.71-1.14-.94L16 13.96l-1.51 1.72c-.34.4-1.28 1.32-2.49 1.32-1.21 0-2.15-.92-2.49-1.32L8 13.96l-1.51 1.72c-.2.23-.6.63-1.14.93l-1.13-3.96 2.4-.78zM8 22.01c1.26.64 2.63.97 4 .97s2.74-.32 4-.97c1.26.65 2.62.99 4 .99h2v-2h-2c-1.39 0-2.78-.47-4-1.32-1.22.85-2.61 1.28-4 1.28s-2.78-.43-4-1.28C6.78 20.53 5.39 21 4 21H2v2h2c1.38 0 2.74-.35 4-.99z"},"children":[]}]};exports.ic_directions_boat_twotone=ic_directions_boat_twotone;var ic_directions_bus={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 16c0 .88.39 1.67 1 2.22V20c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h8v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1.78c.61-.55 1-1.34 1-2.22V6c0-3.5-3.58-4-8-4s-8 .5-8 4v10zm3.5 1c-.83 0-1.5-.67-1.5-1.5S6.67 14 7.5 14s1.5.67 1.5 1.5S8.33 17 7.5 17zm9 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm1.5-6H6V6h12v5z"},"children":[]}]};exports.ic_directions_bus=ic_directions_bus;var ic_directions_bus_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2c-4.42 0-8 .5-8 4v10c0 .88.39 1.67 1 2.22V20c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h8v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1.78c.61-.55 1-1.34 1-2.22V6c0-3.5-3.58-4-8-4zm5.66 2.99H6.34C6.89 4.46 8.31 4 12 4s5.11.46 5.66.99zm.34 2V10H6V6.99h12zm-.34 9.74l-.29.27H6.63l-.29-.27C6.21 16.62 6 16.37 6 16v-4h12v4c0 .37-.21.62-.34.73z"},"children":[]},{"name":"circle","attribs":{"cx":"8.5","cy":"14.5","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"15.5","cy":"14.5","r":"1.5"},"children":[]}]};exports.ic_directions_bus_outline=ic_directions_bus_outline;var ic_directions_bus_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17.37 17l.29-.27c.13-.11.34-.36.34-.73v-4H6v4c0 .37.21.62.34.73l.29.27h10.74zM8.5 16c-.83 0-1.5-.67-1.5-1.5S7.67 13 8.5 13s1.5.67 1.5 1.5S9.33 16 8.5 16zm5.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5zM12 4c-3.69 0-5.11.46-5.66.99h11.31C17.11 4.46 15.69 4 12 4z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M17 21h1c.55 0 1-.45 1-1v-1.78c.61-.55 1-1.34 1-2.22V6c0-3.5-3.58-4-8-4s-8 .5-8 4v10c0 .88.39 1.67 1 2.22V20c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h8v1c0 .55.45 1 1 1zM12 4c3.69 0 5.11.46 5.66.99H6.34C6.89 4.46 8.31 4 12 4zM6 6.99h12V10H6V6.99zM8 17H6.63l-.29-.27C6.21 16.62 6 16.37 6 16v-4h12v4c0 .37-.21.62-.34.73l-.29.27H8z"},"children":[]},{"name":"circle","attribs":{"cx":"8.5","cy":"14.5","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"15.5","cy":"14.5","r":"1.5"},"children":[]}]};exports.ic_directions_bus_twotone=ic_directions_bus_twotone;var ic_directions_car={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18.92 6.01C18.72 5.42 18.16 5 17.5 5h-11c-.66 0-1.21.42-1.42 1.01L3 12v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.5 16c-.83 0-1.5-.67-1.5-1.5S5.67 13 6.5 13s1.5.67 1.5 1.5S7.33 16 6.5 16zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 11l1.5-4.5h11L19 11H5z"},"children":[]}]};exports.ic_directions_car=ic_directions_car;var ic_directions_car_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18.92 6.01C18.72 5.42 18.16 5 17.5 5h-11c-.66 0-1.21.42-1.42 1.01L3 12v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.85 7h10.29l1.08 3.11H5.77L6.85 7zM19 17H5v-5h14v5z"},"children":[]},{"name":"circle","attribs":{"cx":"7.5","cy":"14.5","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"16.5","cy":"14.5","r":"1.5"},"children":[]}]};exports.ic_directions_car_outline=ic_directions_car_outline;var ic_directions_car_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 17h14v-5H5v5zm11.5-4c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-9 0c.83 0 1.5.67 1.5 1.5S8.33 16 7.5 16 6 15.33 6 14.5 6.67 13 7.5 13z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M18.92 6.01C18.72 5.42 18.16 5 17.5 5h-11c-.66 0-1.21.42-1.42 1.01L3 12v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.85 7h10.29l1.08 3.11H5.77L6.85 7zM19 17H5v-5h14v5z"},"children":[]},{"name":"circle","attribs":{"cx":"7.5","cy":"14.5","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"16.5","cy":"14.5","r":"1.5"},"children":[]}]};exports.ic_directions_car_twotone=ic_directions_car_twotone;var ic_directions_railway={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 15.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V5c0-3.5-3.58-4-8-4s-8 .5-8 4v10.5zm8 1.5c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm6-7H6V5h12v5z"},"children":[]}]};exports.ic_directions_railway=ic_directions_railway;var ic_directions_railway_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 1c-4.42 0-8 .5-8 4v10.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V5c0-3.5-3.58-4-8-4zm0 2c6 0 6 1.2 6 2H6c0-.8 0-2 6-2zm6 4v3H6V7h12zm-1.5 10h-9c-.83 0-1.5-.67-1.5-1.5V12h12v3.5c0 .83-.67 1.5-1.5 1.5zM12 12.5c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"},"children":[]}]};exports.ic_directions_railway_outline=ic_directions_railway_outline;var ic_directions_railway_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6 15.5c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5V12H6v3.5zm6-3c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zM12 3C6 3 6 4.2 6 5h12c0-.8 0-2-6-2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 15.5V5c0-3.5-3.58-4-8-4s-8 .5-8 4v10.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5zm-2 0c0 .83-.67 1.5-1.5 1.5h-9c-.83 0-1.5-.67-1.5-1.5V12h12v3.5zm0-5.5H6V7h12v3zM6 5c0-.8 0-2 6-2s6 1.2 6 2H6zm6 11.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z"},"children":[]}]};exports.ic_directions_railway_twotone=ic_directions_railway_twotone;var ic_directions_run={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13.49 5.48c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-3.6 13.9l1-4.4 2.1 2v6h2v-7.5l-2.1-2 .6-3c1.3 1.5 3.3 2.5 5.5 2.5v-2c-1.9 0-3.5-1-4.3-2.4l-1-1.6c-.4-.6-1-1-1.7-1-.3 0-.5.1-.8.1l-5.2 2.2v4.7h2v-3.4l1.8-.7-1.6 8.1-4.9-1-.4 2 7 1.4z"},"children":[]}]};exports.ic_directions_run=ic_directions_run;var ic_directions_run_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13.49 5.48c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-3.6 13.9l1-4.4 2.1 2v6h2v-7.5l-2.1-2 .6-3c1.3 1.5 3.3 2.5 5.5 2.5v-2c-1.9 0-3.5-1-4.3-2.4l-1-1.6c-.4-.6-1-1-1.7-1-.3 0-.5.1-.8.1l-5.2 2.2v4.7h2v-3.4l1.8-.7-1.6 8.1-4.9-1-.4 2 7 1.4z"},"children":[]}]};exports.ic_directions_run_outline=ic_directions_run_outline;var ic_directions_run_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11.49 3.48c0 1.1.9 2 2 2s2-.9 2-2-.9-2-2-2-2 .9-2 2zm-.6 11.5l2.1 2v6h2v-7.5l-2.1-2 .6-3c1.3 1.5 3.3 2.5 5.5 2.5v-2c-1.9 0-3.5-1-4.3-2.4l-1-1.6c-.4-.6-1-1-1.7-1-.3 0-.5.1-.8.1l-5.2 2.2v4.7h2v-3.4l1.8-.7-1.6 8.1-4.9-1-.4 2 7 1.4 1-4.4z"},"children":[]}]};exports.ic_directions_run_twotone=ic_directions_run_twotone;var ic_directions_subway={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2c-4.42 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zM7.5 17c-.83 0-1.5-.67-1.5-1.5S6.67 14 7.5 14s1.5.67 1.5 1.5S8.33 17 7.5 17zm3.5-6H6V6h5v5zm5.5 6c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm1.5-6h-5V6h5v5z"},"children":[]}]};exports.ic_directions_subway=ic_directions_subway;var ic_directions_subway_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zm5.66 3H6.43c.61-.52 2.06-1 5.57-1 3.71 0 5.12.46 5.66 1zM11 7v3H6V7h5zm2 0h5v3h-5V7zm3.5 10h-9c-.83 0-1.5-.67-1.5-1.5V12h12v3.5c0 .83-.67 1.5-1.5 1.5z"},"children":[]},{"name":"circle","attribs":{"cx":"8.5","cy":"14.5","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"15.5","cy":"14.5","r":"1.5"},"children":[]}]};exports.ic_directions_subway_outline=ic_directions_subway_outline;var ic_directions_subway_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 4c-3.51 0-4.96.48-5.57 1h11.23c-.54-.54-1.95-1-5.66-1zM6 15.5c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5V12H6v3.5zm9.5-2.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-7 0c.83 0 1.5.67 1.5 1.5S9.33 16 8.5 16 7 15.33 7 14.5 7.67 13 8.5 13z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zm0 2c3.71 0 5.12.46 5.66 1H6.43c.61-.52 2.06-1 5.57-1zM6 7h5v3H6V7zm12 8.5c0 .83-.67 1.5-1.5 1.5h-9c-.83 0-1.5-.67-1.5-1.5V12h12v3.5zm0-5.5h-5V7h5v3z"},"children":[]},{"name":"circle","attribs":{"cx":"8.5","cy":"14.5","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"15.5","cy":"14.5","r":"1.5"},"children":[]}]};exports.ic_directions_subway_twotone=ic_directions_subway_twotone;var ic_directions_transit={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2c-4.42 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zM7.5 17c-.83 0-1.5-.67-1.5-1.5S6.67 14 7.5 14s1.5.67 1.5 1.5S8.33 17 7.5 17zm3.5-6H6V6h5v5zm5.5 6c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm1.5-6h-5V6h5v5z"},"children":[]}]};exports.ic_directions_transit=ic_directions_transit;var ic_directions_transit_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zm5.66 3H6.43c.61-.52 2.06-1 5.57-1 3.71 0 5.12.46 5.66 1zM11 7v3H6V7h5zm2 0h5v3h-5V7zm3.5 10h-9c-.83 0-1.5-.67-1.5-1.5V12h12v3.5c0 .83-.67 1.5-1.5 1.5z"},"children":[]},{"name":"circle","attribs":{"cx":"8.5","cy":"14.5","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"15.5","cy":"14.5","r":"1.5"},"children":[]}]};exports.ic_directions_transit_outline=ic_directions_transit_outline;var ic_directions_transit_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 4c-3.51 0-4.96.48-5.57 1h11.23c-.54-.54-1.95-1-5.66-1zM7.5 17h9c.83 0 1.5-.67 1.5-1.5V12H6v3.5c0 .83.67 1.5 1.5 1.5zm8-4c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-7 0c.83 0 1.5.67 1.5 1.5S9.33 16 8.5 16 7 15.33 7 14.5 7.67 13 8.5 13z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M4 6v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4-4 0-8 .5-8 4zm14 4h-5V7h5v3zm-6-6c3.71 0 5.12.46 5.66 1H6.43c.61-.52 2.06-1 5.57-1zM6 7h5v3H6V7zm0 5h12v3.5c0 .83-.67 1.5-1.5 1.5h-9c-.83 0-1.5-.67-1.5-1.5V12z"},"children":[]},{"name":"circle","attribs":{"cx":"8.5","cy":"14.5","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"15.5","cy":"14.5","r":"1.5"},"children":[]}]};exports.ic_directions_transit_twotone=ic_directions_transit_twotone;var ic_directions_walk={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM9.8 8.9L7 23h2.1l1.8-8 2.1 2v6h2v-7.5l-2.1-2 .6-3C14.8 12 16.8 13 19 13v-2c-1.9 0-3.5-1-4.3-2.4l-1-1.6c-.4-.6-1-1-1.7-1-.3 0-.5.1-.8.1L6 8.3V13h2V9.6l1.8-.7"},"children":[]}]};exports.ic_directions_walk=ic_directions_walk;var ic_directions_walk_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM9.8 8.9L7 23h2.1l1.8-8 2.1 2v6h2v-7.5l-2.1-2 .6-3C14.8 12 16.8 13 19 13v-2c-1.9 0-3.5-1-4.3-2.4l-1-1.6c-.56-.89-1.68-1.25-2.65-.84L6 8.3V13h2V9.6l1.8-.7"},"children":[]}]};exports.ic_directions_walk_outline=ic_directions_walk_outline;var ic_directions_walk_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM9.8 8.9L7 23h2.1l1.8-8 2.1 2v6h2v-7.5l-2.1-2 .6-3C14.8 12 16.8 13 19 13v-2c-1.9 0-3.5-1-4.3-2.4l-1-1.6c-.56-.89-1.68-1.25-2.65-.84L6 8.3V13h2V9.6l1.8-.7"},"children":[]}]};exports.ic_directions_walk_twotone=ic_directions_walk_twotone;var ic_dry_cleaning={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M19.56,11.36L13,8.44V7c0-0.55-0.45-1-1-1l0,0c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1h2c0-1.84-1.66-3.3-3.56-2.95 C10.26,2.27,9.29,3.22,9.06,4.4C8.76,5.96,9.66,7.34,11,7.82v0.63l-6.56,2.92C3.56,11.75,3,12.62,3,13.57v0.01 C3,14.92,4.08,16,5.42,16H7v6h10v-6h1.58c1.34,0,2.42-1.08,2.42-2.42v-0.01C21,12.62,20.44,11.75,19.56,11.36z M18.58,14H17v-1H7v1 H5.42C5.19,14,5,13.81,5,13.57c0-0.17,0.1-0.32,0.25-0.38l6.75-3l6.75,3C18.9,13.26,19,13.41,19,13.58C19,13.81,18.81,14,18.58,14z"},"children":[{"name":"path","attribs":{"d":"M19.56,11.36L13,8.44V7c0-0.55-0.45-1-1-1l0,0c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1h2c0-1.84-1.66-3.3-3.56-2.95 C10.26,2.27,9.29,3.22,9.06,4.4C8.76,5.96,9.66,7.34,11,7.82v0.63l-6.56,2.92C3.56,11.75,3,12.62,3,13.57v0.01 C3,14.92,4.08,16,5.42,16H7v6h10v-6h1.58c1.34,0,2.42-1.08,2.42-2.42v-0.01C21,12.62,20.44,11.75,19.56,11.36z M18.58,14H17v-1H7v1 H5.42C5.19,14,5,13.81,5,13.57c0-0.17,0.1-0.32,0.25-0.38l6.75-3l6.75,3C18.9,13.26,19,13.41,19,13.58C19,13.81,18.81,14,18.58,14z"},"children":[]}]}]}]};exports.ic_dry_cleaning=ic_dry_cleaning;var ic_edit_attributes={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"class":"st0","d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17.63 7H6.37C3.96 7 2 9.24 2 12s1.96 5 4.37 5h11.26c2.41 0 4.37-2.24 4.37-5s-1.96-5-4.37-5zM7.24 14.46l-2.57-2.57.7-.7 1.87 1.87 3.52-3.52.7.7-4.22 4.22z"},"children":[]}]};exports.ic_edit_attributes=ic_edit_attributes;var ic_edit_attributes_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17.63 7H6.37C3.96 7 2 9.24 2 12s1.96 5 4.37 5h11.26c2.41 0 4.37-2.24 4.37-5s-1.96-5-4.37-5zm0 8H6.37C5.09 15 4 13.63 4 12s1.09-3 2.37-3h11.26C18.91 9 20 10.37 20 12s-1.09 3-2.37 3zM7.24 13.06l-1.87-1.87-.7.7 2.57 2.57 4.22-4.22-.7-.7z"},"children":[]}]};exports.ic_edit_attributes_outline=ic_edit_attributes_outline;var ic_edit_attributes_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17.63 9H6.37C5.09 9 4 10.37 4 12s1.09 3 2.37 3h11.26c1.28 0 2.37-1.37 2.37-3s-1.09-3-2.37-3zM7.24 14.46l-2.57-2.57.7-.7 1.87 1.87 3.52-3.52.7.7-4.22 4.22z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M17.63 7H6.37C3.96 7 2 9.24 2 12s1.96 5 4.37 5h11.26c2.41 0 4.37-2.24 4.37-5s-1.96-5-4.37-5zm0 8H6.37C5.09 15 4 13.63 4 12s1.09-3 2.37-3h11.26C18.91 9 20 10.37 20 12s-1.09 3-2.37 3zM7.24 13.06l-1.87-1.87-.7.7 2.57 2.57 4.22-4.22-.7-.7z"},"children":[]}]};exports.ic_edit_attributes_twotone=ic_edit_attributes_twotone;var ic_edit_location={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C8.14 2 5 5.14 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.86-3.14-7-7-7zm-1.56 10H9v-1.44l3.35-3.34 1.43 1.43L10.44 12zm4.45-4.45l-.7.7-1.44-1.44.7-.7c.15-.15.39-.15.54 0l.9.9c.15.15.15.39 0 .54z"},"children":[]}]};exports.ic_edit_location=ic_edit_location;var ic_edit_location_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18.17 4.91L17.1 3.84l-5.55 5.55v1.08h1.08l5.54-5.56zM16 2.74l1.29-1.29a1.49 1.49 0 0 1 2.12 0l1.15 1.15c.59.59.59 1.54 0 2.12l-.68.68-.02.02-.58.58-6 6H10V8.74l6-6zm-2.28-.55l-.55.55-1.27 1.27c-3.3.05-5.9 2.6-5.9 6.2 0 2.34 1.95 5.44 6 9.14 4.05-3.7 6-6.79 6-9.14v-.1l1.8-1.8c.13.6.2 1.24.2 1.9 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8 0-4.98 3.8-8.2 8-8.2.58 0 1.16.06 1.72.18z"},"children":[]}]};exports.ic_edit_location_outline=ic_edit_location_outline;var ic_edit_location_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M14.11,14h-0.83H10H8v-2V8.74V7.91l0.59-0.59L11.91,4C8.61,4.05,6,6.6,6,10.2c0,2.34,1.95,5.44,6,9.14 c4.05-3.7,6-6.79,6-9.14c0-0.03,0-0.06,0-0.08l-3.3,3.3L14.11,14z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M18.17,4.91L17.1,3.84l-5.55,5.55v1.08h1.08L18.17,4.91z M16,2.74l1.29-1.29c0.58-0.59,1.52-0.59,2.11-0.01 c0,0,0.01,0.01,0.01,0.01l1.15,1.15c0.59,0.59,0.59,1.54,0,2.12L19.88,5.4l-0.02,0.02L19.28,6l-6,6H10V8.74L16,2.74z M13.72,2.19 l-0.55,0.55L11.9,4.01C8.6,4.06,6,6.61,6,10.21c0,2.34,1.95,5.44,6,9.14c4.05-3.7,6-6.79,6-9.14v-0.1l1.8-1.8 c0.13,0.6,0.2,1.24,0.2,1.9c0,3.32-2.67,7.25-8,11.8c-5.33-4.55-8-8.48-8-11.8c0-4.98,3.8-8.2,8-8.2 C12.58,2.01,13.16,2.07,13.72,2.19z"},"children":[]},{"name":"polygon","attribs":{"opacity":".3","points":"18.17,4.91 17.1,3.84 11.55,9.39 11.55,10.47 12.63,10.47"},"children":[]}]};exports.ic_edit_location_twotone=ic_edit_location_twotone;var ic_edit_road={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"18,4 16,4 16,11.9 18,9.9"},"children":[{"name":"polygon","attribs":{"points":"18,4 16,4 16,11.9 18,9.9"},"children":[]}]},{"name":"rect","attribs":{"height":"16","width":"2","x":"4","y":"4"},"children":[{"name":"rect","attribs":{"height":"16","width":"2","x":"4","y":"4"},"children":[]}]},{"name":"rect","attribs":{"height":"4","width":"2","x":"10","y":"4"},"children":[{"name":"rect","attribs":{"height":"4","width":"2","x":"10","y":"4"},"children":[]}]},{"name":"rect","attribs":{"height":"4","width":"2","x":"10","y":"10"},"children":[{"name":"rect","attribs":{"height":"4","width":"2","x":"10","y":"10"},"children":[]}]},{"name":"rect","attribs":{"height":"4","width":"2","x":"10","y":"16"},"children":[{"name":"rect","attribs":{"height":"4","width":"2","x":"10","y":"16"},"children":[]}]},{"name":"path","attribs":{"d":"M22.56,12.59l-1.15-1.15c-0.59-0.59-1.54-0.59-2.12,0L14,16.73V20h3.27l5.29-5.29C23.15,14.12,23.15,13.17,22.56,12.59z M16.58,18.45h-1.03v-1.03L19,13.97L20.03,15L16.58,18.45z"},"children":[{"name":"path","attribs":{"d":"M22.56,12.59l-1.15-1.15c-0.59-0.59-1.54-0.59-2.12,0L14,16.73V20h3.27l5.29-5.29C23.15,14.12,23.15,13.17,22.56,12.59z M16.58,18.45h-1.03v-1.03L19,13.97L20.03,15L16.58,18.45z"},"children":[]}]}]}]}]}]};exports.ic_edit_road=ic_edit_road;var ic_edit_road_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"18,4 16,4 16,11.9 18,9.9"},"children":[{"name":"polygon","attribs":{"points":"18,4 16,4 16,11.9 18,9.9"},"children":[]}]},{"name":"rect","attribs":{"height":"16","width":"2","x":"4","y":"4"},"children":[{"name":"rect","attribs":{"height":"16","width":"2","x":"4","y":"4"},"children":[]}]},{"name":"rect","attribs":{"height":"4","width":"2","x":"10","y":"4"},"children":[{"name":"rect","attribs":{"height":"4","width":"2","x":"10","y":"4"},"children":[]}]},{"name":"rect","attribs":{"height":"4","width":"2","x":"10","y":"10"},"children":[{"name":"rect","attribs":{"height":"4","width":"2","x":"10","y":"10"},"children":[]}]},{"name":"rect","attribs":{"height":"4","width":"2","x":"10","y":"16"},"children":[{"name":"rect","attribs":{"height":"4","width":"2","x":"10","y":"16"},"children":[]}]},{"name":"path","attribs":{"d":"M22.56,12.59l-1.15-1.15c-0.59-0.59-1.54-0.59-2.12,0L14,16.73V20h3.27l5.29-5.29C23.15,14.12,23.15,13.17,22.56,12.59z M16.58,18.45h-1.03v-1.03L19,13.97L20.03,15L16.58,18.45z"},"children":[{"name":"path","attribs":{"d":"M22.56,12.59l-1.15-1.15c-0.59-0.59-1.54-0.59-2.12,0L14,16.73V20h3.27l5.29-5.29C23.15,14.12,23.15,13.17,22.56,12.59z M16.58,18.45h-1.03v-1.03L19,13.97L20.03,15L16.58,18.45z"},"children":[]}]}]}]}]}]};exports.ic_edit_road_outline=ic_edit_road_outline;var ic_edit_road_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"opacity":".3","points":"15.55,17.42 15.55,18.45 16.58,18.45 20.03,15 19,13.97"},"children":[{"name":"polygon","attribs":{"opacity":".3","points":"15.55,17.42 15.55,18.45 16.58,18.45 20.03,15 19,13.97"},"children":[]}]},{"name":"polygon","attribs":{"points":"18,4 16,4 16,11.9 18,9.9"},"children":[{"name":"polygon","attribs":{"points":"18,4 16,4 16,11.9 18,9.9"},"children":[]}]},{"name":"rect","attribs":{"height":"16","width":"2","x":"4","y":"4"},"children":[{"name":"rect","attribs":{"height":"16","width":"2","x":"4","y":"4"},"children":[]}]},{"name":"rect","attribs":{"height":"4","width":"2","x":"10","y":"4"},"children":[{"name":"rect","attribs":{"height":"4","width":"2","x":"10","y":"4"},"children":[]}]},{"name":"rect","attribs":{"height":"4","width":"2","x":"10","y":"10"},"children":[{"name":"rect","attribs":{"height":"4","width":"2","x":"10","y":"10"},"children":[]}]},{"name":"rect","attribs":{"height":"4","width":"2","x":"10","y":"16"},"children":[{"name":"rect","attribs":{"height":"4","width":"2","x":"10","y":"16"},"children":[]}]},{"name":"path","attribs":{"d":"M22.56,12.59l-1.15-1.15c-0.59-0.59-1.54-0.59-2.12,0L14,16.73V20h3.27l5.29-5.29C23.15,14.12,23.15,13.17,22.56,12.59z M16.58,18.45h-1.03v-1.03L19,13.97L20.03,15L16.58,18.45z"},"children":[{"name":"path","attribs":{"d":"M22.56,12.59l-1.15-1.15c-0.59-0.59-1.54-0.59-2.12,0L14,16.73V20h3.27l5.29-5.29C23.15,14.12,23.15,13.17,22.56,12.59z M16.58,18.45h-1.03v-1.03L19,13.97L20.03,15L16.58,18.45z"},"children":[]}]}]}]}]}]};exports.ic_edit_road_twotone=ic_edit_road_twotone;var ic_electric_bike={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M19,7h-0.82l-1.7-4.68C16.19,1.53,15.44,1,14.6,1H12v2h2.6l1.46,4h-4.81l-0.36-1H12V4H7v2h1.75l1.82,5H9.9 C9.46,8.77,7.59,7.12,5.25,7.01C2.45,6.87,0,9.2,0,12c0,2.8,2.2,5,5,5c2.46,0,4.45-1.69,4.9-4h4.2c0.44,2.23,2.31,3.88,4.65,3.99 c2.8,0.13,5.25-2.19,5.25-5C24,9.2,21.8,7,19,7z M7.82,13c-0.4,1.17-1.49,2-2.82,2c-1.68,0-3-1.32-3-3s1.32-3,3-3 c1.33,0,2.42,0.83,2.82,2H5v2H7.82z M14.1,11h-1.4l-0.73-2H15C14.56,9.58,14.24,10.25,14.1,11z M19,15c-1.68,0-3-1.32-3-3 c0-0.93,0.41-1.73,1.05-2.28l0.96,2.64l1.88-0.68l-0.97-2.67C18.94,9.01,18.97,9,19,9c1.68,0,3,1.32,3,3S20.68,15,19,15z"},"children":[{"name":"path","attribs":{"d":"M19,7h-0.82l-1.7-4.68C16.19,1.53,15.44,1,14.6,1H12v2h2.6l1.46,4h-4.81l-0.36-1H12V4H7v2h1.75l1.82,5H9.9 C9.46,8.77,7.59,7.12,5.25,7.01C2.45,6.87,0,9.2,0,12c0,2.8,2.2,5,5,5c2.46,0,4.45-1.69,4.9-4h4.2c0.44,2.23,2.31,3.88,4.65,3.99 c2.8,0.13,5.25-2.19,5.25-5C24,9.2,21.8,7,19,7z M7.82,13c-0.4,1.17-1.49,2-2.82,2c-1.68,0-3-1.32-3-3s1.32-3,3-3 c1.33,0,2.42,0.83,2.82,2H5v2H7.82z M14.1,11h-1.4l-0.73-2H15C14.56,9.58,14.24,10.25,14.1,11z M19,15c-1.68,0-3-1.32-3-3 c0-0.93,0.41-1.73,1.05-2.28l0.96,2.64l1.88-0.68l-0.97-2.67C18.94,9.01,18.97,9,19,9c1.68,0,3,1.32,3,3S20.68,15,19,15z"},"children":[]}]},{"name":"polygon","attribs":{"points":"11,20 7,20 13,23 13,21 17,21 11,18"},"children":[{"name":"polygon","attribs":{"points":"11,20 7,20 13,23 13,21 17,21 11,18"},"children":[]}]}]}]}]}]};exports.ic_electric_bike=ic_electric_bike;var ic_electric_bike_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M19,7h-0.82l-1.7-4.68C16.19,1.53,15.44,1,14.6,1H12v2h2.6l1.46,4h-4.81l-0.36-1H12V4H7v2h1.75l1.82,5H9.9 C9.46,8.77,7.59,7.12,5.25,7.01C2.45,6.87,0,9.2,0,12c0,2.8,2.2,5,5,5c2.46,0,4.45-1.69,4.9-4h4.2c0.44,2.23,2.31,3.88,4.65,3.99 c2.8,0.13,5.25-2.19,5.25-5C24,9.2,21.8,7,19,7z M7.82,13c-0.4,1.17-1.49,2-2.82,2c-1.68,0-3-1.32-3-3s1.32-3,3-3 c1.33,0,2.42,0.83,2.82,2H5v2H7.82z M14.1,11h-1.4l-0.73-2H15C14.56,9.58,14.24,10.25,14.1,11z M19,15c-1.68,0-3-1.32-3-3 c0-0.93,0.41-1.73,1.05-2.28l0.96,2.64l1.88-0.68l-0.97-2.67C18.94,9.01,18.97,9,19,9c1.68,0,3,1.32,3,3S20.68,15,19,15z"},"children":[{"name":"path","attribs":{"d":"M19,7h-0.82l-1.7-4.68C16.19,1.53,15.44,1,14.6,1H12v2h2.6l1.46,4h-4.81l-0.36-1H12V4H7v2h1.75l1.82,5H9.9 C9.46,8.77,7.59,7.12,5.25,7.01C2.45,6.87,0,9.2,0,12c0,2.8,2.2,5,5,5c2.46,0,4.45-1.69,4.9-4h4.2c0.44,2.23,2.31,3.88,4.65,3.99 c2.8,0.13,5.25-2.19,5.25-5C24,9.2,21.8,7,19,7z M7.82,13c-0.4,1.17-1.49,2-2.82,2c-1.68,0-3-1.32-3-3s1.32-3,3-3 c1.33,0,2.42,0.83,2.82,2H5v2H7.82z M14.1,11h-1.4l-0.73-2H15C14.56,9.58,14.24,10.25,14.1,11z M19,15c-1.68,0-3-1.32-3-3 c0-0.93,0.41-1.73,1.05-2.28l0.96,2.64l1.88-0.68l-0.97-2.67C18.94,9.01,18.97,9,19,9c1.68,0,3,1.32,3,3S20.68,15,19,15z"},"children":[]}]},{"name":"polygon","attribs":{"points":"11,20 7,20 13,23 13,21 17,21 11,18"},"children":[{"name":"polygon","attribs":{"points":"11,20 7,20 13,23 13,21 17,21 11,18"},"children":[]}]}]}]}]}]};exports.ic_electric_bike_outline=ic_electric_bike_outline;var ic_electric_bike_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M19,7h-0.82l-1.7-4.68C16.19,1.53,15.44,1,14.6,1H12v2h2.6l1.46,4h-4.81l-0.36-1H12V4H7v2h1.75l1.82,5H9.9 C9.46,8.77,7.59,7.12,5.25,7.01C2.45,6.87,0,9.2,0,12c0,2.8,2.2,5,5,5c2.46,0,4.45-1.69,4.9-4h4.2c0.44,2.23,2.31,3.88,4.65,3.99 c2.8,0.13,5.25-2.19,5.25-5C24,9.2,21.8,7,19,7z M7.82,13c-0.4,1.17-1.49,2-2.82,2c-1.68,0-3-1.32-3-3s1.32-3,3-3 c1.33,0,2.42,0.83,2.82,2H5v2H7.82z M14.1,11h-1.4l-0.73-2H15C14.56,9.58,14.24,10.25,14.1,11z M19,15c-1.68,0-3-1.32-3-3 c0-0.93,0.41-1.73,1.05-2.28l0.96,2.64l1.88-0.68l-0.97-2.67C18.94,9.01,18.97,9,19,9c1.68,0,3,1.32,3,3S20.68,15,19,15z"},"children":[{"name":"path","attribs":{"d":"M19,7h-0.82l-1.7-4.68C16.19,1.53,15.44,1,14.6,1H12v2h2.6l1.46,4h-4.81l-0.36-1H12V4H7v2h1.75l1.82,5H9.9 C9.46,8.77,7.59,7.12,5.25,7.01C2.45,6.87,0,9.2,0,12c0,2.8,2.2,5,5,5c2.46,0,4.45-1.69,4.9-4h4.2c0.44,2.23,2.31,3.88,4.65,3.99 c2.8,0.13,5.25-2.19,5.25-5C24,9.2,21.8,7,19,7z M7.82,13c-0.4,1.17-1.49,2-2.82,2c-1.68,0-3-1.32-3-3s1.32-3,3-3 c1.33,0,2.42,0.83,2.82,2H5v2H7.82z M14.1,11h-1.4l-0.73-2H15C14.56,9.58,14.24,10.25,14.1,11z M19,15c-1.68,0-3-1.32-3-3 c0-0.93,0.41-1.73,1.05-2.28l0.96,2.64l1.88-0.68l-0.97-2.67C18.94,9.01,18.97,9,19,9c1.68,0,3,1.32,3,3S20.68,15,19,15z"},"children":[]}]},{"name":"polygon","attribs":{"points":"11,20 7,20 13,23 13,21 17,21 11,18"},"children":[{"name":"polygon","attribs":{"points":"11,20 7,20 13,23 13,21 17,21 11,18"},"children":[]}]}]}]}]}]};exports.ic_electric_bike_twotone=ic_electric_bike_twotone;var ic_electric_car={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M18.92,2.01C18.72,1.42,18.16,1,17.5,1h-11C5.84,1,5.29,1.42,5.08,2.01L3,8v8c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-1h12 v1c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1V8L18.92,2.01z M6.5,12C5.67,12,5,11.33,5,10.5S5.67,9,6.5,9S8,9.67,8,10.5 S7.33,12,6.5,12z M17.5,12c-0.83,0-1.5-0.67-1.5-1.5S16.67,9,17.5,9S19,9.67,19,10.5S18.33,12,17.5,12z M5,7l1.5-4.5h11L19,7H5z"},"children":[{"name":"path","attribs":{"d":"M18.92,2.01C18.72,1.42,18.16,1,17.5,1h-11C5.84,1,5.29,1.42,5.08,2.01L3,8v8c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-1h12 v1c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1V8L18.92,2.01z M6.5,12C5.67,12,5,11.33,5,10.5S5.67,9,6.5,9S8,9.67,8,10.5 S7.33,12,6.5,12z M17.5,12c-0.83,0-1.5-0.67-1.5-1.5S16.67,9,17.5,9S19,9.67,19,10.5S18.33,12,17.5,12z M5,7l1.5-4.5h11L19,7H5z"},"children":[]}]},{"name":"polygon","attribs":{"points":"7,20 11,20 11,18 17,21 13,21 13,23"},"children":[{"name":"polygon","attribs":{"points":"7,20 11,20 11,18 17,21 13,21 13,23"},"children":[]}]}]}]};exports.ic_electric_car=ic_electric_car;var ic_electric_car_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M18.92,2.01C18.72,1.42,18.16,1,17.5,1h-11C5.84,1,5.29,1.42,5.08,2.01L3,8v8c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-1 h12v1c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1V8L18.92,2.01z M6.85,3h10.29l1.08,3.11H5.77L6.85,3z M19,13H5V8h14V13z"},"children":[{"name":"path","attribs":{"d":"M18.92,2.01C18.72,1.42,18.16,1,17.5,1h-11C5.84,1,5.29,1.42,5.08,2.01L3,8v8c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-1 h12v1c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1V8L18.92,2.01z M6.85,3h10.29l1.08,3.11H5.77L6.85,3z M19,13H5V8h14V13z"},"children":[]}]},{"name":"circle","attribs":{"cx":"7.5","cy":"10.5","r":"1.5"},"children":[{"name":"circle","attribs":{"cx":"7.5","cy":"10.5","r":"1.5"},"children":[]}]},{"name":"circle","attribs":{"cx":"16.5","cy":"10.5","r":"1.5"},"children":[{"name":"circle","attribs":{"cx":"16.5","cy":"10.5","r":"1.5"},"children":[]}]}]}]},{"name":"polygon","attribs":{"points":"7,20 11,20 11,18 17,21 13,21 13,23"},"children":[{"name":"polygon","attribs":{"points":"7,20 11,20 11,18 17,21 13,21 13,23"},"children":[]}]}]}]};exports.ic_electric_car_outline=ic_electric_car_outline;var ic_electric_car_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M5,13h14V8H5V13z M16.5,9c0.83,0,1.5,0.67,1.5,1.5c0,0.83-0.67,1.5-1.5,1.5S15,11.33,15,10.5 C15,9.67,15.67,9,16.5,9z M7.5,9C8.33,9,9,9.67,9,10.5C9,11.33,8.33,12,7.5,12S6,11.33,6,10.5C6,9.67,6.67,9,7.5,9z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M5,13h14V8H5V13z M16.5,9c0.83,0,1.5,0.67,1.5,1.5c0,0.83-0.67,1.5-1.5,1.5S15,11.33,15,10.5 C15,9.67,15.67,9,16.5,9z M7.5,9C8.33,9,9,9.67,9,10.5C9,11.33,8.33,12,7.5,12S6,11.33,6,10.5C6,9.67,6.67,9,7.5,9z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M18.92,2.01C18.72,1.42,18.16,1,17.5,1h-11C5.84,1,5.29,1.42,5.08,2.01L3,8v8c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-1 h12v1c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1V8L18.92,2.01z M6.85,3h10.29l1.08,3.11H5.77L6.85,3z M19,13H5V8h14V13z"},"children":[{"name":"path","attribs":{"d":"M18.92,2.01C18.72,1.42,18.16,1,17.5,1h-11C5.84,1,5.29,1.42,5.08,2.01L3,8v8c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-1 h12v1c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1V8L18.92,2.01z M6.85,3h10.29l1.08,3.11H5.77L6.85,3z M19,13H5V8h14V13z"},"children":[]}]},{"name":"circle","attribs":{"cx":"7.5","cy":"10.5","r":"1.5"},"children":[{"name":"circle","attribs":{"cx":"7.5","cy":"10.5","r":"1.5"},"children":[]}]},{"name":"circle","attribs":{"cx":"16.5","cy":"10.5","r":"1.5"},"children":[{"name":"circle","attribs":{"cx":"16.5","cy":"10.5","r":"1.5"},"children":[]}]}]}]},{"name":"polygon","attribs":{"points":"7,20 11,20 11,18 17,21 13,21 13,23"},"children":[{"name":"polygon","attribs":{"points":"7,20 11,20 11,18 17,21 13,21 13,23"},"children":[]}]}]}]};exports.ic_electric_car_twotone=ic_electric_car_twotone;var ic_electric_moped={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M19,5c0-1.1-0.9-2-2-2h-3v2h3v2.65L13.52,12H10V7H6c-2.21,0-4,1.79-4,4v3h2c0,1.66,1.34,3,3,3s3-1.34,3-3h4.48L19,8.35V5z M7,15c-0.55,0-1-0.45-1-1h2C8,14.55,7.55,15,7,15z"},"children":[{"name":"path","attribs":{"d":"M19,5c0-1.1-0.9-2-2-2h-3v2h3v2.65L13.52,12H10V7H6c-2.21,0-4,1.79-4,4v3h2c0,1.66,1.34,3,3,3s3-1.34,3-3h4.48L19,8.35V5z M7,15c-0.55,0-1-0.45-1-1h2C8,14.55,7.55,15,7,15z"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"5","x":"5","y":"4"},"children":[{"name":"rect","attribs":{"height":"2","width":"5","x":"5","y":"4"},"children":[]}]},{"name":"path","attribs":{"d":"M19,11c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,11,19,11z M19,15c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S19.55,15,19,15z"},"children":[{"name":"path","attribs":{"d":"M19,11c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,11,19,11z M19,15c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S19.55,15,19,15z"},"children":[]}]}]}]},{"name":"polygon","attribs":{"points":"7,20 11,20 11,18 17,21 13,21 13,23"},"children":[{"name":"polygon","attribs":{"points":"7,20 11,20 11,18 17,21 13,21 13,23"},"children":[]}]}]}]};exports.ic_electric_moped=ic_electric_moped;var ic_electric_moped_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M19,5c0-1.1-0.9-2-2-2h-3v2h3v2.65L13.52,12H10V7H6c-2.21,0-4,1.79-4,4v3h2c0,1.66,1.34,3,3,3s3-1.34,3-3h4.48L19,8.35V5z M4,12v-1c0-1.1,0.9-2,2-2h2v3H4z M7,15c-0.55,0-1-0.45-1-1h2C8,14.55,7.55,15,7,15z"},"children":[{"name":"path","attribs":{"d":"M19,5c0-1.1-0.9-2-2-2h-3v2h3v2.65L13.52,12H10V7H6c-2.21,0-4,1.79-4,4v3h2c0,1.66,1.34,3,3,3s3-1.34,3-3h4.48L19,8.35V5z M4,12v-1c0-1.1,0.9-2,2-2h2v3H4z M7,15c-0.55,0-1-0.45-1-1h2C8,14.55,7.55,15,7,15z"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"5","x":"5","y":"4"},"children":[{"name":"rect","attribs":{"height":"2","width":"5","x":"5","y":"4"},"children":[]}]},{"name":"path","attribs":{"d":"M19,11c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,11,19,11z M19,15c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S19.55,15,19,15z"},"children":[{"name":"path","attribs":{"d":"M19,11c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,11,19,11z M19,15c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S19.55,15,19,15z"},"children":[]}]}]}]},{"name":"polygon","attribs":{"points":"7,20 11,20 11,18 17,21 13,21 13,23"},"children":[{"name":"polygon","attribs":{"points":"7,20 11,20 11,18 17,21 13,21 13,23"},"children":[]}]}]}]};exports.ic_electric_moped_outline=ic_electric_moped_outline;var ic_electric_moped_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M4,11v1h4V9H6C4.9,9,4,9.9,4,11z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M4,11v1h4V9H6C4.9,9,4,9.9,4,11z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M19,5c0-1.1-0.9-2-2-2h-3v2h3v2.65L13.52,12H10V7H6c-2.21,0-4,1.79-4,4v3h2c0,1.66,1.34,3,3,3s3-1.34,3-3h4.48L19,8.35V5z M7,15c-0.55,0-1-0.45-1-1h2C8,14.55,7.55,15,7,15z M8,12H4v-1c0-1.1,0.9-2,2-2h2V12z"},"children":[{"name":"path","attribs":{"d":"M19,5c0-1.1-0.9-2-2-2h-3v2h3v2.65L13.52,12H10V7H6c-2.21,0-4,1.79-4,4v3h2c0,1.66,1.34,3,3,3s3-1.34,3-3h4.48L19,8.35V5z M7,15c-0.55,0-1-0.45-1-1h2C8,14.55,7.55,15,7,15z M8,12H4v-1c0-1.1,0.9-2,2-2h2V12z"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"5","x":"5","y":"4"},"children":[{"name":"rect","attribs":{"height":"2","width":"5","x":"5","y":"4"},"children":[]}]},{"name":"path","attribs":{"d":"M19,11c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,11,19,11z M19,15c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S19.55,15,19,15z"},"children":[{"name":"path","attribs":{"d":"M19,11c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,11,19,11z M19,15c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S19.55,15,19,15z"},"children":[]}]}]}]},{"name":"polygon","attribs":{"points":"7,20 11,20 11,18 17,21 13,21 13,23"},"children":[{"name":"polygon","attribs":{"points":"7,20 11,20 11,18 17,21 13,21 13,23"},"children":[]}]}]}]};exports.ic_electric_moped_twotone=ic_electric_moped_twotone;var ic_electric_rickshaw={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M21,11.18V9.72c0-0.47-0.16-0.92-0.46-1.28L16.6,3.72C16.22,3.26,15.66,3,15.06,3H3C1.9,3,1,3.9,1,5v8c0,1.1,0.9,2,2,2 h0.18C3.6,16.16,4.7,17,6,17s2.4-0.84,2.82-2h8.37c0.41,1.16,1.51,2,2.82,2c1.66,0,3-1.34,3-3C23,12.7,22.16,11.6,21,11.18z M18.4,9H16V6.12L18.4,9z M3,5h4v4H3V5z M6,15c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S6.55,15,6,15z M9,13v-2h3V9H9V5h5v8H9z M20,15c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S20.55,15,20,15z"},"children":[{"name":"path","attribs":{"d":"M21,11.18V9.72c0-0.47-0.16-0.92-0.46-1.28L16.6,3.72C16.22,3.26,15.66,3,15.06,3H3C1.9,3,1,3.9,1,5v8c0,1.1,0.9,2,2,2 h0.18C3.6,16.16,4.7,17,6,17s2.4-0.84,2.82-2h8.37c0.41,1.16,1.51,2,2.82,2c1.66,0,3-1.34,3-3C23,12.7,22.16,11.6,21,11.18z M18.4,9H16V6.12L18.4,9z M3,5h4v4H3V5z M6,15c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S6.55,15,6,15z M9,13v-2h3V9H9V5h5v8H9z M20,15c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S20.55,15,20,15z"},"children":[]}]},{"name":"polygon","attribs":{"points":"7,20 11,20 11,18 17,21 13,21 13,23"},"children":[{"name":"polygon","attribs":{"points":"7,20 11,20 11,18 17,21 13,21 13,23"},"children":[]}]}]}]};exports.ic_electric_rickshaw=ic_electric_rickshaw;var ic_electric_rickshaw_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M21,11.18V9.72c0-0.47-0.16-0.92-0.46-1.28L16.6,3.72C16.22,3.26,15.66,3,15.06,3H3C1.9,3,1,3.9,1,5v8c0,1.1,0.9,2,2,2 h0.18C3.6,16.16,4.7,17,6,17s2.4-0.84,2.82-2h8.37c0.41,1.16,1.51,2,2.82,2c1.66,0,3-1.34,3-3C23,12.7,22.16,11.6,21,11.18z M6,15 c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S6.55,15,6,15z M7,11.17C6.69,11.06,6.35,11,6,11c-1.3,0-2.42,0.84-2.83,2H3v-3h4V11.17 z M7,8H3V5h4V8z M14,13H9v-3h3V8H9V5h5V13z M16,6.12L18.4,9H16V6.12z M17.17,13H16v-2h3v0.17C18.15,11.47,17.47,12.15,17.17,13z M20,15c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S20.55,15,20,15z"},"children":[{"name":"path","attribs":{"d":"M21,11.18V9.72c0-0.47-0.16-0.92-0.46-1.28L16.6,3.72C16.22,3.26,15.66,3,15.06,3H3C1.9,3,1,3.9,1,5v8c0,1.1,0.9,2,2,2 h0.18C3.6,16.16,4.7,17,6,17s2.4-0.84,2.82-2h8.37c0.41,1.16,1.51,2,2.82,2c1.66,0,3-1.34,3-3C23,12.7,22.16,11.6,21,11.18z M6,15 c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S6.55,15,6,15z M7,11.17C6.69,11.06,6.35,11,6,11c-1.3,0-2.42,0.84-2.83,2H3v-3h4V11.17 z M7,8H3V5h4V8z M14,13H9v-3h3V8H9V5h5V13z M16,6.12L18.4,9H16V6.12z M17.17,13H16v-2h3v0.17C18.15,11.47,17.47,12.15,17.17,13z M20,15c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S20.55,15,20,15z"},"children":[]}]}]}]},{"name":"polygon","attribs":{"points":"7,20 11,20 11,18 17,21 13,21 13,23"},"children":[{"name":"polygon","attribs":{"points":"7,20 11,20 11,18 17,21 13,21 13,23"},"children":[]}]}]}]};exports.ic_electric_rickshaw_twotone=ic_electric_rickshaw_twotone;var ic_electric_scooter={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M7.82,16H15v-1c0-2.21,1.79-4,4-4h0.74l-1.9-8.44C17.63,1.65,16.82,1,15.89,1H12v2h3.89l1.4,6.25c0,0-0.01,0-0.01,0 c-2.16,0.65-3.81,2.48-4.19,4.75H7.82c-0.48-1.34-1.86-2.24-3.42-1.94c-1.18,0.23-2.13,1.2-2.35,2.38C1.7,16.34,3.16,18,5,18 C6.3,18,7.4,17.16,7.82,16z M5,16c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S5.55,16,5,16z"},"children":[{"name":"path","attribs":{"d":"M7.82,16H15v-1c0-2.21,1.79-4,4-4h0.74l-1.9-8.44C17.63,1.65,16.82,1,15.89,1H12v2h3.89l1.4,6.25c0,0-0.01,0-0.01,0 c-2.16,0.65-3.81,2.48-4.19,4.75H7.82c-0.48-1.34-1.86-2.24-3.42-1.94c-1.18,0.23-2.13,1.2-2.35,2.38C1.7,16.34,3.16,18,5,18 C6.3,18,7.4,17.16,7.82,16z M5,16c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S5.55,16,5,16z"},"children":[]}]},{"name":"path","attribs":{"d":"M19,12c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,12,19,12z M19,16c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S19.55,16,19,16z"},"children":[{"name":"path","attribs":{"d":"M19,12c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,12,19,12z M19,16c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S19.55,16,19,16z"},"children":[]}]},{"name":"polygon","attribs":{"points":"11,20 7,20 13,23 13,21 17,21 11,18"},"children":[{"name":"polygon","attribs":{"points":"11,20 7,20 13,23 13,21 17,21 11,18"},"children":[]}]}]}]}]}]};exports.ic_electric_scooter=ic_electric_scooter;var ic_electric_scooter_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M7.82,16H15v-1c0-2.21,1.79-4,4-4h0.74l-1.9-8.44C17.63,1.65,16.82,1,15.89,1H12v2h3.89l1.4,6.25c0,0-0.01,0-0.01,0 c-2.16,0.65-3.81,2.48-4.19,4.75H7.82c-0.48-1.34-1.86-2.24-3.42-1.94c-1.18,0.23-2.13,1.2-2.35,2.38C1.7,16.34,3.16,18,5,18 C6.3,18,7.4,17.16,7.82,16z M5,16c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S5.55,16,5,16z"},"children":[{"name":"path","attribs":{"d":"M7.82,16H15v-1c0-2.21,1.79-4,4-4h0.74l-1.9-8.44C17.63,1.65,16.82,1,15.89,1H12v2h3.89l1.4,6.25c0,0-0.01,0-0.01,0 c-2.16,0.65-3.81,2.48-4.19,4.75H7.82c-0.48-1.34-1.86-2.24-3.42-1.94c-1.18,0.23-2.13,1.2-2.35,2.38C1.7,16.34,3.16,18,5,18 C6.3,18,7.4,17.16,7.82,16z M5,16c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S5.55,16,5,16z"},"children":[]}]},{"name":"path","attribs":{"d":"M19,12c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,12,19,12z M19,16c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S19.55,16,19,16z"},"children":[{"name":"path","attribs":{"d":"M19,12c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,12,19,12z M19,16c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S19.55,16,19,16z"},"children":[]}]},{"name":"polygon","attribs":{"points":"11,20 7,20 13,23 13,21 17,21 11,18"},"children":[{"name":"polygon","attribs":{"points":"11,20 7,20 13,23 13,21 17,21 11,18"},"children":[]}]}]}]}]}]};exports.ic_electric_scooter_outline=ic_electric_scooter_outline;var ic_electric_scooter_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M7.82,16H15v-1c0-2.21,1.79-4,4-4h0.74l-1.9-8.44C17.63,1.65,16.82,1,15.89,1H12v2h3.89l1.4,6.25c0,0-0.01,0-0.01,0 c-2.16,0.65-3.81,2.48-4.19,4.75H7.82c-0.48-1.34-1.86-2.24-3.42-1.94c-1.18,0.23-2.13,1.2-2.35,2.38C1.7,16.34,3.16,18,5,18 C6.3,18,7.4,17.16,7.82,16z M5,16c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S5.55,16,5,16z"},"children":[{"name":"path","attribs":{"d":"M7.82,16H15v-1c0-2.21,1.79-4,4-4h0.74l-1.9-8.44C17.63,1.65,16.82,1,15.89,1H12v2h3.89l1.4,6.25c0,0-0.01,0-0.01,0 c-2.16,0.65-3.81,2.48-4.19,4.75H7.82c-0.48-1.34-1.86-2.24-3.42-1.94c-1.18,0.23-2.13,1.2-2.35,2.38C1.7,16.34,3.16,18,5,18 C6.3,18,7.4,17.16,7.82,16z M5,16c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S5.55,16,5,16z"},"children":[]}]},{"name":"path","attribs":{"d":"M19,12c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,12,19,12z M19,16c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S19.55,16,19,16z"},"children":[{"name":"path","attribs":{"d":"M19,12c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,12,19,12z M19,16c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S19.55,16,19,16z"},"children":[]}]},{"name":"polygon","attribs":{"points":"11,20 7,20 13,23 13,21 17,21 11,18"},"children":[{"name":"polygon","attribs":{"points":"11,20 7,20 13,23 13,21 17,21 11,18"},"children":[]}]}]}]}]}]};exports.ic_electric_scooter_twotone=ic_electric_scooter_twotone;var ic_electrical_services={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M21,14c0-0.55-0.45-1-1-1h-2v2h2C20.55,15,21,14.55,21,14z"},"children":[{"name":"path","attribs":{"d":"M21,14c0-0.55-0.45-1-1-1h-2v2h2C20.55,15,21,14.55,21,14z"},"children":[]}]},{"name":"path","attribs":{"d":"M20,17h-2v2h2c0.55,0,1-0.45,1-1C21,17.45,20.55,17,20,17z"},"children":[{"name":"path","attribs":{"d":"M20,17h-2v2h2c0.55,0,1-0.45,1-1C21,17.45,20.55,17,20,17z"},"children":[]}]},{"name":"path","attribs":{"d":"M12,14h-2v4h2c0,1.1,0.9,2,2,2h3v-8h-3C12.9,12,12,12.9,12,14z"},"children":[{"name":"path","attribs":{"d":"M12,14h-2v4h2c0,1.1,0.9,2,2,2h3v-8h-3C12.9,12,12,12.9,12,14z"},"children":[]}]},{"name":"path","attribs":{"d":"M5,13c0-1.1,0.9-2,2-2h1.5c1.93,0,3.5-1.57,3.5-3.5S10.43,4,8.5,4H5C4.45,4,4,4.45,4,5c0,0.55,0.45,1,1,1h3.5 C9.33,6,10,6.67,10,7.5S9.33,9,8.5,9H7c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4h2v-2H7C5.9,15,5,14.1,5,13z"},"children":[{"name":"path","attribs":{"d":"M5,13c0-1.1,0.9-2,2-2h1.5c1.93,0,3.5-1.57,3.5-3.5S10.43,4,8.5,4H5C4.45,4,4,4.45,4,5c0,0.55,0.45,1,1,1h3.5 C9.33,6,10,6.67,10,7.5S9.33,9,8.5,9H7c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4h2v-2H7C5.9,15,5,14.1,5,13z"},"children":[]}]}]}]}]}]};exports.ic_electrical_services=ic_electrical_services;var ic_electrical_services_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M21,14c0-0.55-0.45-1-1-1h-2v2h2C20.55,15,21,14.55,21,14z"},"children":[{"name":"path","attribs":{"d":"M21,14c0-0.55-0.45-1-1-1h-2v2h2C20.55,15,21,14.55,21,14z"},"children":[]}]},{"name":"path","attribs":{"d":"M20,17h-2v2h2c0.55,0,1-0.45,1-1C21,17.45,20.55,17,20,17z"},"children":[{"name":"path","attribs":{"d":"M20,17h-2v2h2c0.55,0,1-0.45,1-1C21,17.45,20.55,17,20,17z"},"children":[]}]},{"name":"path","attribs":{"d":"M12,14h-2v4h2c0,1.1,0.9,2,2,2h3v-8h-3C12.9,12,12,12.9,12,14z"},"children":[{"name":"path","attribs":{"d":"M12,14h-2v4h2c0,1.1,0.9,2,2,2h3v-8h-3C12.9,12,12,12.9,12,14z"},"children":[]}]},{"name":"path","attribs":{"d":"M5,13c0-1.1,0.9-2,2-2h1.5c1.93,0,3.5-1.57,3.5-3.5S10.43,4,8.5,4H5C4.45,4,4,4.45,4,5c0,0.55,0.45,1,1,1h3.5 C9.33,6,10,6.67,10,7.5S9.33,9,8.5,9H7c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4h2v-2H7C5.9,15,5,14.1,5,13z"},"children":[{"name":"path","attribs":{"d":"M5,13c0-1.1,0.9-2,2-2h1.5c1.93,0,3.5-1.57,3.5-3.5S10.43,4,8.5,4H5C4.45,4,4,4.45,4,5c0,0.55,0.45,1,1,1h3.5 C9.33,6,10,6.67,10,7.5S9.33,9,8.5,9H7c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4h2v-2H7C5.9,15,5,14.1,5,13z"},"children":[]}]}]}]}]}]};exports.ic_electrical_services_outline=ic_electrical_services_outline;var ic_electrical_services_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M20,15h-2v-2h2c0.55,0,1,0.45,1,1v0C21,14.55,20.55,15,20,15z"},"children":[{"name":"path","attribs":{"d":"M20,15h-2v-2h2c0.55,0,1,0.45,1,1v0C21,14.55,20.55,15,20,15z"},"children":[]}]},{"name":"path","attribs":{"d":"M20,19h-2v-2h2c0.55,0,1,0.45,1,1v0C21,18.55,20.55,19,20,19z"},"children":[{"name":"path","attribs":{"d":"M20,19h-2v-2h2c0.55,0,1,0.45,1,1v0C21,18.55,20.55,19,20,19z"},"children":[]}]},{"name":"path","attribs":{"d":"M14,12L14,12L14,12c-1.1,0-2,0.9-2,2v0h-2v4h2v0c0,1.1,0.9,2,2,2h0h3l0,0v-8H14z"},"children":[{"name":"path","attribs":{"d":"M14,12L14,12L14,12c-1.1,0-2,0.9-2,2v0h-2v4h2v0c0,1.1,0.9,2,2,2h0h3l0,0v-8H14z"},"children":[]}]},{"name":"path","attribs":{"d":"M4,5L4,5c0,0.55,0.45,1,1,1h3.5C9.33,6,10,6.67,10,7.5v0C10,8.33,9.33,9,8.5,9H7c-2.21,0-4,1.79-4,4v0c0,2.21,1.79,4,4,4h2 v-2H7c-1.1,0-2-0.9-2-2v0c0-1.1,0.9-2,2-2h1.5c1.93,0,3.5-1.57,3.5-3.5v0C12,5.57,10.43,4,8.5,4H5C4.45,4,4,4.45,4,5z"},"children":[{"name":"path","attribs":{"d":"M4,5L4,5c0,0.55,0.45,1,1,1h3.5C9.33,6,10,6.67,10,7.5v0C10,8.33,9.33,9,8.5,9H7c-2.21,0-4,1.79-4,4v0c0,2.21,1.79,4,4,4h2 v-2H7c-1.1,0-2-0.9-2-2v0c0-1.1,0.9-2,2-2h1.5c1.93,0,3.5-1.57,3.5-3.5v0C12,5.57,10.43,4,8.5,4H5C4.45,4,4,4.45,4,5z"},"children":[]}]}]}]};exports.ic_electrical_services_twotone=ic_electrical_services_twotone;var ic_ev_station={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19.77 7.23l.01-.01-3.72-3.72L15 4.56l2.11 2.11c-.94.36-1.61 1.26-1.61 2.33 0 1.38 1.12 2.5 2.5 2.5.36 0 .69-.08 1-.21v7.21c0 .55-.45 1-1 1s-1-.45-1-1V14c0-1.1-.9-2-2-2h-1V5c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2v16h10v-7.5h1.5v5c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5V9c0-.69-.28-1.32-.73-1.77zM18 10c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM8 18v-4.5H6L10 6v5h2l-4 7z"},"children":[]}]};exports.ic_ev_station=ic_ev_station;var ic_ev_station_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19.77 7.23l.01-.01-3.72-3.72L15 4.56l2.11 2.11c-.94.36-1.61 1.26-1.61 2.33 0 1.38 1.12 2.5 2.5 2.5.36 0 .69-.08 1-.21v7.21c0 .55-.45 1-1 1s-1-.45-1-1V14c0-1.1-.9-2-2-2h-1V5c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2v16h10v-7.5h1.5v5c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5V9c0-.69-.28-1.32-.73-1.77zM12 11v8H6V5h6v6zm6-1c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-8-4l-4 7.5h2V18l4-7h-2z"},"children":[]}]};exports.ic_ev_station_outline=ic_ev_station_outline;var ic_ev_station_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8 13.5H6V19h6v-8l-4 7zm-2 0L10 6v5h2V5H6z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 3H6c-1.1 0-2 .9-2 2v16h10v-7.5h1.5v5c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5V9c0-.69-.28-1.32-.73-1.77l.01-.01-3.72-3.72L15 4.56l2.11 2.11c-.94.36-1.61 1.26-1.61 2.33 0 1.38 1.12 2.5 2.5 2.5.36 0 .69-.08 1-.21v7.21c0 .55-.45 1-1 1s-1-.45-1-1V14c0-1.1-.9-2-2-2h-1V5c0-1.1-.9-2-2-2zm0 8v8H6V5h6v6zm6-1c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-8-4l-4 7.5h2V18l4-7h-2z"},"children":[]}]};exports.ic_ev_station_twotone=ic_ev_station_twotone;var ic_fastfood={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18.06 22.99h1.66c.84 0 1.53-.64 1.63-1.46L23 5.05h-5V1h-1.97v4.05h-4.97l.3 2.34c1.71.47 3.31 1.32 4.27 2.26 1.44 1.42 2.43 2.89 2.43 5.29v8.05zM1 21.99V21h15.03v.99c0 .55-.45 1-1.01 1H2.01c-.56 0-1.01-.45-1.01-1zm15.03-7c0-8-15.03-8-15.03 0h15.03zM1.02 17h15v2h-15z"},"children":[]}]};exports.ic_fastfood=ic_fastfood;var ic_fastfood_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M1 21.98c0 .56.45 1.01 1.01 1.01H15c.56 0 1.01-.45 1.01-1.01V21H1v.98zM8.5 8.99C4.75 8.99 1 11 1 15h15c0-4-3.75-6.01-7.5-6.01zM3.62 13c1.11-1.55 3.47-2.01 4.88-2.01s3.77.46 4.88 2.01H3.62zM1 17h15v2H1zM18 5V1h-2v4h-5l.23 2h9.56l-1.4 14H18v2h1.72c.84 0 1.53-.65 1.63-1.47L23 5h-5z"},"children":[]}]};exports.ic_fastfood_outline=ic_fastfood_outline;var ic_fastfood_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M1 21.98c0 .56.45 1.01 1.01 1.01H15c.56 0 1.01-.45 1.01-1.01V21H1v.98z"},"children":[]},{"name":"path","attribs":{"d":"M8.5 10.99c-1.42 0-3.77.46-4.88 2.01h9.77c-1.12-1.55-3.47-2.01-4.89-2.01z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M8.5 8.99C4.75 8.99 1 11 1 15h15c0-4-3.75-6.01-7.5-6.01zM3.62 13c1.11-1.55 3.47-2.01 4.88-2.01s3.77.46 4.88 2.01H3.62zM1 17h15v2H1zM18 5V1h-2v4h-5l.23 2h9.56l-1.4 14H18v2h1.72c.84 0 1.53-.65 1.63-1.47L23 5h-5z"},"children":[]}]};exports.ic_fastfood_twotone=ic_fastfood_twotone;var ic_festival={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"13,5.7 13,4 16,4 15,2.51 16,1 11,1 11,5.7 2,12 2,22 9,22 9,17 12.03,15 15,17 15,22 22,22 22,12"},"children":[{"name":"polygon","attribs":{"points":"13,5.7 13,4 16,4 15,2.51 16,1 11,1 11,5.7 2,12 2,22 9,22 9,17 12.03,15 15,17 15,22 22,22 22,12"},"children":[]}]}]}]};exports.ic_festival=ic_festival;var ic_flight={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 16v-2l-8-5V3.5c0-.83-.67-1.5-1.5-1.5S10 2.67 10 3.5V9l-8 5v2l8-2.5V19l-2 1.5V22l3.5-1 3.5 1v-1.5L13 19v-5.5l8 2.5z"},"children":[]}]};exports.ic_flight=ic_flight;var ic_flight_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 16v-2l-8-5V3.5c0-.83-.67-1.5-1.5-1.5S10 2.67 10 3.5V9l-8 5v2l8-2.5V19l-2 1.5V22l3.5-1 3.5 1v-1.5L13 19v-5.5l8 2.5z"},"children":[]}]};exports.ic_flight_outline=ic_flight_outline;var ic_flight_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 19l-2 1.5V22l3.5-1 3.5 1v-1.5L13 19v-5.5l8 2.5v-2l-8-5V3.5c0-.83-.67-1.5-1.5-1.5S10 2.67 10 3.5V9l-8 5v2l8-2.5V19z"},"children":[]}]};exports.ic_flight_twotone=ic_flight_twotone;var ic_hail={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm5-4h2v.4c-.1 2.2-.8 3.9-2.3 5.1-.5.4-1.1.7-1.7.9V22h-2v-6h-2v6H9V10.1c-.3.1-.5.2-.6.3-.9.7-1.39 1.6-1.4 3.1v.5H5v-.5c0-2 .71-3.59 2.11-4.79C8.21 7.81 10 7 12 7s2.68-.46 3.48-1.06C16.48 5.14 17 4 17 2.5V2zM4 16h3v6H4v-6z"},"children":[]}]};exports.ic_hail=ic_hail;var ic_handyman={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M21.67,18.17l-5.3-5.3h-0.99l-2.54,2.54v0.99l5.3,5.3c0.39,0.39,1.02,0.39,1.41,0l2.12-2.12 C22.06,19.2,22.06,18.56,21.67,18.17z"},"children":[{"name":"path","attribs":{"d":"M21.67,18.17l-5.3-5.3h-0.99l-2.54,2.54v0.99l5.3,5.3c0.39,0.39,1.02,0.39,1.41,0l2.12-2.12 C22.06,19.2,22.06,18.56,21.67,18.17z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M17.34,10.19l1.41-1.41l2.12,2.12c1.17-1.17,1.17-3.07,0-4.24l-3.54-3.54l-1.41,1.41V1.71L15.22,1l-3.54,3.54l0.71,0.71 h2.83l-1.41,1.41l1.06,1.06l-2.89,2.89L7.85,6.48V5.06L4.83,2.04L2,4.87l3.03,3.03h1.41l4.13,4.13l-0.85,0.85H7.6l-5.3,5.3 c-0.39,0.39-0.39,1.02,0,1.41l2.12,2.12c0.39,0.39,1.02,0.39,1.41,0l5.3-5.3v-2.12l5.15-5.15L17.34,10.19z"},"children":[{"name":"path","attribs":{"d":"M17.34,10.19l1.41-1.41l2.12,2.12c1.17-1.17,1.17-3.07,0-4.24l-3.54-3.54l-1.41,1.41V1.71L15.22,1l-3.54,3.54l0.71,0.71 h2.83l-1.41,1.41l1.06,1.06l-2.89,2.89L7.85,6.48V5.06L4.83,2.04L2,4.87l3.03,3.03h1.41l4.13,4.13l-0.85,0.85H7.6l-5.3,5.3 c-0.39,0.39-0.39,1.02,0,1.41l2.12,2.12c0.39,0.39,1.02,0.39,1.41,0l5.3-5.3v-2.12l5.15-5.15L17.34,10.19z"},"children":[]}]}]}]}]}]}]}]};exports.ic_handyman=ic_handyman;var ic_handyman_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M21.67,18.17l-5.3-5.3h-0.99l-2.54,2.54v0.99l5.3,5.3c0.39,0.39,1.02,0.39,1.41,0l2.12-2.12 C22.06,19.2,22.06,18.56,21.67,18.17z M18.84,19.59l-4.24-4.24l0.71-0.71l4.24,4.24L18.84,19.59z"},"children":[{"name":"path","attribs":{"d":"M21.67,18.17l-5.3-5.3h-0.99l-2.54,2.54v0.99l5.3,5.3c0.39,0.39,1.02,0.39,1.41,0l2.12-2.12 C22.06,19.2,22.06,18.56,21.67,18.17z M18.84,19.59l-4.24-4.24l0.71-0.71l4.24,4.24L18.84,19.59z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M17.34,10.19l1.41-1.41l2.12,2.12c1.17-1.17,1.17-3.07,0-4.24l-3.54-3.54l-1.41,1.41V1.71L15.22,1l-3.54,3.54l0.71,0.71 h2.83l-1.41,1.41l1.06,1.06l-2.89,2.89L7.85,6.48V5.06L4.83,2.04L2,4.87l3.03,3.03h1.41l4.13,4.13l-0.85,0.85H7.6l-5.3,5.3 c-0.39,0.39-0.39,1.02,0,1.41l2.12,2.12c0.39,0.39,1.02,0.39,1.41,0l5.3-5.3v-2.12l5.15-5.15L17.34,10.19z M9.36,15.34 l-4.24,4.24l-0.71-0.71l4.24-4.24l0,0L9.36,15.34L9.36,15.34z"},"children":[{"name":"path","attribs":{"d":"M17.34,10.19l1.41-1.41l2.12,2.12c1.17-1.17,1.17-3.07,0-4.24l-3.54-3.54l-1.41,1.41V1.71L15.22,1l-3.54,3.54l0.71,0.71 h2.83l-1.41,1.41l1.06,1.06l-2.89,2.89L7.85,6.48V5.06L4.83,2.04L2,4.87l3.03,3.03h1.41l4.13,4.13l-0.85,0.85H7.6l-5.3,5.3 c-0.39,0.39-0.39,1.02,0,1.41l2.12,2.12c0.39,0.39,1.02,0.39,1.41,0l5.3-5.3v-2.12l5.15-5.15L17.34,10.19z M9.36,15.34 l-4.24,4.24l-0.71-0.71l4.24-4.24l0,0L9.36,15.34L9.36,15.34z"},"children":[]}]}]}]}]}]}]}]};exports.ic_handyman_outline=ic_handyman_outline;var ic_handyman_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{"opacity":".3"},"children":[{"name":"g","attribs":{"opacity":".3"},"children":[{"name":"polygon","attribs":{"points":"8.66,14.64 4.41,18.88 5.12,19.59 9.36,15.34 9.36,15.34 8.66,14.64"},"children":[{"name":"polygon","attribs":{"points":"8.66,14.64 4.41,18.88 5.12,19.59 9.36,15.34 9.36,15.34 8.66,14.64"},"children":[]}]}]}]},{"name":"g","attribs":{"opacity":".3"},"children":[{"name":"g","attribs":{"opacity":".3"},"children":[{"name":"rect","attribs":{"height":"6","transform":"matrix(0.7071 -0.7071 0.7071 0.7071 -7.0983 17.0848)","width":"1","x":"16.57","y":"14.11"},"children":[{"name":"rect","attribs":{"height":"6","transform":"matrix(0.7071 -0.7071 0.7071 0.7071 -7.0983 17.0848)","width":"1","x":"16.57","y":"14.11"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M21.67,18.17l-5.3-5.3h-0.99l-2.54,2.54v0.99l5.3,5.3c0.39,0.39,1.02,0.39,1.41,0l2.12-2.12 C22.06,19.2,22.06,18.56,21.67,18.17z M18.84,19.59l-4.24-4.24l0.71-0.71l4.24,4.24L18.84,19.59z"},"children":[{"name":"path","attribs":{"d":"M21.67,18.17l-5.3-5.3h-0.99l-2.54,2.54v0.99l5.3,5.3c0.39,0.39,1.02,0.39,1.41,0l2.12-2.12 C22.06,19.2,22.06,18.56,21.67,18.17z M18.84,19.59l-4.24-4.24l0.71-0.71l4.24,4.24L18.84,19.59z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M17.34,10.19l1.41-1.41l2.12,2.12c1.17-1.17,1.17-3.07,0-4.24l-3.54-3.54l-1.41,1.41V1.71L15.22,1l-3.54,3.54l0.71,0.71 h2.83l-1.41,1.41l1.06,1.06l-2.89,2.89L7.85,6.48V5.06L4.83,2.04L2,4.87l3.03,3.03h1.41l4.13,4.13l-0.85,0.85H7.6l-5.3,5.3 c-0.39,0.39-0.39,1.02,0,1.41l2.12,2.12c0.39,0.39,1.02,0.39,1.41,0l5.3-5.3v-2.12l5.15-5.15L17.34,10.19z M9.36,15.34 l-4.24,4.24l-0.71-0.71l4.24-4.24l0,0L9.36,15.34L9.36,15.34z"},"children":[{"name":"path","attribs":{"d":"M17.34,10.19l1.41-1.41l2.12,2.12c1.17-1.17,1.17-3.07,0-4.24l-3.54-3.54l-1.41,1.41V1.71L15.22,1l-3.54,3.54l0.71,0.71 h2.83l-1.41,1.41l1.06,1.06l-2.89,2.89L7.85,6.48V5.06L4.83,2.04L2,4.87l3.03,3.03h1.41l4.13,4.13l-0.85,0.85H7.6l-5.3,5.3 c-0.39,0.39-0.39,1.02,0,1.41l2.12,2.12c0.39,0.39,1.02,0.39,1.41,0l5.3-5.3v-2.12l5.15-5.15L17.34,10.19z M9.36,15.34 l-4.24,4.24l-0.71-0.71l4.24-4.24l0,0L9.36,15.34L9.36,15.34z"},"children":[]}]}]}]}]}]}]}]};exports.ic_handyman_twotone=ic_handyman_twotone;var ic_hardware={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M18,3l-3,3V3H9C6.24,3,4,5.24,4,8h5v3h6V8l3,3h2V3H18z"},"children":[{"name":"path","attribs":{"d":"M18,3l-3,3V3H9C6.24,3,4,5.24,4,8h5v3h6V8l3,3h2V3H18z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M9,13v7c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1v-7H9z"},"children":[{"name":"path","attribs":{"d":"M9,13v7c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1v-7H9z"},"children":[]}]}]}]}]}]}]}]};exports.ic_hardware=ic_hardware;var ic_home_repair_service={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"18,16 16,16 16,15 8,15 8,16 6,16 6,15 2,15 2,20 22,20 22,15 18,15"},"children":[{"name":"polygon","attribs":{"points":"18,16 16,16 16,15 8,15 8,16 6,16 6,15 2,15 2,20 22,20 22,15 18,15"},"children":[]}]},{"name":"path","attribs":{"d":"M20,8h-3V6c0-1.1-0.9-2-2-2H9C7.9,4,7,4.9,7,6v2H4c-1.1,0-2,0.9-2,2v4h4v-2h2v2h8v-2h2v2h4v-4C22,8.9,21.1,8,20,8z M15,8 H9V6h6V8z"},"children":[{"name":"path","attribs":{"d":"M20,8h-3V6c0-1.1-0.9-2-2-2H9C7.9,4,7,4.9,7,6v2H4c-1.1,0-2,0.9-2,2v4h4v-2h2v2h8v-2h2v2h4v-4C22,8.9,21.1,8,20,8z M15,8 H9V6h6V8z"},"children":[]}]}]}]}]}]};exports.ic_home_repair_service=ic_home_repair_service;var ic_home_repair_service_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M20,8h-3V6c0-1.1-0.9-2-2-2H9C7.9,4,7,4.9,7,6v2H4c-1.1,0-2,0.9-2,2v10h20V10C22,8.9,21.1,8,20,8z M9,6h6v2H9V6z M20,18H4 v-3h2v1h2v-1h8v1h2v-1h2V18z M18,13v-1h-2v1H8v-1H6v1H4v-3h3h10h3v3H18z"},"children":[{"name":"path","attribs":{"d":"M20,8h-3V6c0-1.1-0.9-2-2-2H9C7.9,4,7,4.9,7,6v2H4c-1.1,0-2,0.9-2,2v10h20V10C22,8.9,21.1,8,20,8z M9,6h6v2H9V6z M20,18H4 v-3h2v1h2v-1h8v1h2v-1h2V18z M18,13v-1h-2v1H8v-1H6v1H4v-3h3h10h3v3H18z"},"children":[]}]}]}]}]}]};exports.ic_home_repair_service_outline=ic_home_repair_service_outline;var ic_home_repair_service_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M20,8h-3V6c0-1.1-0.9-2-2-2H9C7.9,4,7,4.9,7,6v2H4c-1.1,0-2,0.9-2,2v10h20V10C22,8.9,21.1,8,20,8z M9,6h6v2H9V6z M20,18 H4v-3h2v1h2v-1h8v1h2v-1h2V18z M20,13h-2v-1h-2v1H8v-1H6v1H4v-3h3h10h3V13z"},"children":[{"name":"path","attribs":{"d":"M20,8h-3V6c0-1.1-0.9-2-2-2H9C7.9,4,7,4.9,7,6v2H4c-1.1,0-2,0.9-2,2v10h20V10C22,8.9,21.1,8,20,8z M9,6h6v2H9V6z M20,18 H4v-3h2v1h2v-1h8v1h2v-1h2V18z M20,13h-2v-1h-2v1H8v-1H6v1H4v-3h3h10h3V13z"},"children":[]}]}]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{"opacity":".3"},"children":[{"name":"g","attribs":{"opacity":".3"},"children":[{"name":"polygon","attribs":{"points":"18,16 16,16 16,15 8,15 8,16 6,16 6,15 4,15 4,18 20,18 20,15 18,15"},"children":[{"name":"polygon","attribs":{"points":"18,16 16,16 16,15 8,15 8,16 6,16 6,15 4,15 4,18 20,18 20,15 18,15"},"children":[]}]}]}]},{"name":"g","attribs":{"opacity":".3"},"children":[{"name":"g","attribs":{"opacity":".3"},"children":[{"name":"polygon","attribs":{"points":"4,10 4,13 6,13 6,12 8,12 8,13 16,13 16,12 18,12 18,13 20,13 20,10 17,10 7,10"},"children":[{"name":"polygon","attribs":{"points":"4,10 4,13 6,13 6,12 8,12 8,13 16,13 16,12 18,12 18,13 20,13 20,10 17,10 7,10"},"children":[]}]}]}]}]}]}]}]};exports.ic_home_repair_service_twotone=ic_home_repair_service_twotone;var ic_hotel={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 13c1.66 0 3-1.34 3-3S8.66 7 7 7s-3 1.34-3 3 1.34 3 3 3zm12-6h-8v7H3V5H1v15h2v-3h18v3h2v-9c0-2.21-1.79-4-4-4z"},"children":[]}]};exports.ic_hotel=ic_hotel;var ic_hotel_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 14c1.66 0 3-1.34 3-3S8.66 8 7 8s-3 1.34-3 3 1.34 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm12-3h-8v8H3V5H1v15h2v-3h18v3h2v-9c0-2.21-1.79-4-4-4zm2 8h-8V9h6c1.1 0 2 .9 2 2v4z"},"children":[]}]};exports.ic_hotel_outline=ic_hotel_outline;var ic_hotel_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 9h-6v6h8v-4c0-1.1-.9-2-2-2z","opacity":".3"},"children":[]},{"name":"circle","attribs":{"cx":"7","cy":"11","opacity":".3","r":"1"},"children":[]},{"name":"path","attribs":{"d":"M4 11c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3zm4 0c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1zm11-4h-8v8H3V5H1v15h2v-3h18v3h2v-9c0-2.21-1.79-4-4-4zm2 8h-8V9h6c1.1 0 2 .9 2 2v4z"},"children":[]}]};exports.ic_hotel_twotone=ic_hotel_twotone;var ic_hvac={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M12,16c1.01,0,1.91-0.39,2.62-1H9.38C10.09,15.61,10.99,16,12,16z"},"children":[{"name":"path","attribs":{"d":"M12,16c1.01,0,1.91-0.39,2.62-1H9.38C10.09,15.61,10.99,16,12,16z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M8.56,14h6.89c0.26-0.45,0.44-0.96,0.51-1.5h-7.9C8.12,13.04,8.29,13.55,8.56,14z"},"children":[{"name":"path","attribs":{"d":"M8.56,14h6.89c0.26-0.45,0.44-0.96,0.51-1.5h-7.9C8.12,13.04,8.29,13.55,8.56,14z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M12,8c-1.01,0-1.91,0.39-2.62,1h5.24C13.91,8.39,13.01,8,12,8z"},"children":[{"name":"path","attribs":{"d":"M12,8c-1.01,0-1.91,0.39-2.62,1h5.24C13.91,8.39,13.01,8,12,8z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M8.56,10c-0.26,0.45-0.44,0.96-0.51,1.5h7.9c-0.07-0.54-0.24-1.05-0.51-1.5H8.56z"},"children":[{"name":"path","attribs":{"d":"M8.56,10c-0.26,0.45-0.44,0.96-0.51,1.5h7.9c-0.07-0.54-0.24-1.05-0.51-1.5H8.56z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M12,18c-3.31,0-6-2.69-6-6 s2.69-6,6-6s6,2.69,6,6S15.31,18,12,18z"},"children":[{"name":"path","attribs":{"d":"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M12,18c-3.31,0-6-2.69-6-6 s2.69-6,6-6s6,2.69,6,6S15.31,18,12,18z"},"children":[]}]}]}]}]}]}]}]};exports.ic_hvac=ic_hvac;var ic_hvac_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z"},"children":[{"name":"path","attribs":{"d":"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z"},"children":[]}]},{"name":"path","attribs":{"d":"M12,18c3.31,0,6-2.69,6-6s-2.69-6-6-6s-6,2.69-6,6S8.69,18,12,18z M15.44,10c0.26,0.45,0.44,0.96,0.51,1.5h-7.9 c0.07-0.54,0.24-1.05,0.51-1.5H15.44z M15.95,12.5c-0.07,0.54-0.24,1.05-0.51,1.5H8.56c-0.26-0.45-0.44-0.96-0.51-1.5H15.95z M9.38,15h5.24c-0.7,0.61-1.61,1-2.62,1S10.09,15.61,9.38,15z M14.62,9H9.38c0.7-0.61,1.61-1,2.62-1S13.91,8.39,14.62,9z"},"children":[{"name":"path","attribs":{"d":"M12,18c3.31,0,6-2.69,6-6s-2.69-6-6-6s-6,2.69-6,6S8.69,18,12,18z M15.44,10c0.26,0.45,0.44,0.96,0.51,1.5h-7.9 c0.07-0.54,0.24-1.05,0.51-1.5H15.44z M15.95,12.5c-0.07,0.54-0.24,1.05-0.51,1.5H8.56c-0.26-0.45-0.44-0.96-0.51-1.5H15.95z M9.38,15h5.24c-0.7,0.61-1.61,1-2.62,1S10.09,15.61,9.38,15z M14.62,9H9.38c0.7-0.61,1.61-1,2.62-1S13.91,8.39,14.62,9z"},"children":[]}]}]}]}]}]};exports.ic_hvac_outline=ic_hvac_outline;var ic_hvac_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M5,19h14V5H5V19z M12,6c3.31,0,6,2.69,6,6s-2.69,6-6,6s-6-2.69-6-6S8.69,6,12,6z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M5,19h14V5H5V19z M12,6c3.31,0,6,2.69,6,6s-2.69,6-6,6s-6-2.69-6-6S8.69,6,12,6z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z"},"children":[{"name":"path","attribs":{"d":"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z"},"children":[]}]},{"name":"path","attribs":{"d":"M12,18c3.31,0,6-2.69,6-6s-2.69-6-6-6s-6,2.69-6,6S8.69,18,12,18z M12,16c-1.01,0-1.91-0.39-2.62-1h5.24 C13.91,15.61,13.01,16,12,16z M12,8c1.01,0,1.91,0.39,2.62,1H9.38C10.09,8.39,10.99,8,12,8z M8.56,10h6.89 c0.26,0.45,0.44,0.96,0.51,1.5h-7.9C8.12,10.96,8.29,10.45,8.56,10z M15.95,12.5c-0.07,0.54-0.24,1.05-0.51,1.5H8.56 c-0.26-0.45-0.44-0.96-0.51-1.5H15.95z"},"children":[{"name":"path","attribs":{"d":"M12,18c3.31,0,6-2.69,6-6s-2.69-6-6-6s-6,2.69-6,6S8.69,18,12,18z M12,16c-1.01,0-1.91-0.39-2.62-1h5.24 C13.91,15.61,13.01,16,12,16z M12,8c1.01,0,1.91,0.39,2.62,1H9.38C10.09,8.39,10.99,8,12,8z M8.56,10h6.89 c0.26,0.45,0.44,0.96,0.51,1.5h-7.9C8.12,10.96,8.29,10.45,8.56,10z M15.95,12.5c-0.07,0.54-0.24,1.05-0.51,1.5H8.56 c-0.26-0.45-0.44-0.96-0.51-1.5H15.95z"},"children":[]}]}]}]}]}]};exports.ic_hvac_twotone=ic_hvac_twotone;var ic_icecream={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M8.79,12.4l3.26,6.22l3.17-6.21c-0.11-0.08-0.21-0.16-0.3-0.25 C14.08,12.69,13.07,13,12,13s-2.08-0.31-2.92-0.84C8.99,12.25,8.89,12.33,8.79,12.4z M6.83,12.99C5.25,12.9,4,11.6,4,10 c0-1.49,1.09-2.73,2.52-2.96C6.75,4.22,9.12,2,12,2s5.25,2.22,5.48,5.04C18.91,7.27,20,8.51,20,10c0,1.59-1.24,2.9-2.81,2.99 L12.07,23L6.83,12.99z","fill-rule":"evenodd"},"children":[{"name":"path","attribs":{"d":"M8.79,12.4l3.26,6.22l3.17-6.21c-0.11-0.08-0.21-0.16-0.3-0.25 C14.08,12.69,13.07,13,12,13s-2.08-0.31-2.92-0.84C8.99,12.25,8.89,12.33,8.79,12.4z M6.83,12.99C5.25,12.9,4,11.6,4,10 c0-1.49,1.09-2.73,2.52-2.96C6.75,4.22,9.12,2,12,2s5.25,2.22,5.48,5.04C18.91,7.27,20,8.51,20,10c0,1.59-1.24,2.9-2.81,2.99 L12.07,23L6.83,12.99z","fill-rule":"evenodd"},"children":[]}]}]}]};exports.ic_icecream=ic_icecream;var ic_layers={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11.99 18.54l-7.37-5.73L3 14.07l9 7 9-7-1.63-1.27-7.38 5.74zM12 16l7.36-5.73L21 9l-9-7-9 7 1.63 1.27L12 16z"},"children":[]}]};exports.ic_layers=ic_layers;var ic_layers_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11.99 18.54l-7.37-5.73L3 14.07l9 7 9-7-1.63-1.27zM12 16l7.36-5.73L21 9l-9-7-9 7 1.63 1.27L12 16zm0-11.47L17.74 9 12 13.47 6.26 9 12 4.53z"},"children":[]}]};exports.ic_layers_outline=ic_layers_outline;var ic_layers_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6.26 9L12 13.47 17.74 9 12 4.53z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M19.37 12.8l-7.38 5.74-7.37-5.73L3 14.07l9 7 9-7zM12 2L3 9l1.63 1.27L12 16l7.36-5.73L21 9l-9-7zm0 11.47L6.26 9 12 4.53 17.74 9 12 13.47z"},"children":[]}]};exports.ic_layers_twotone=ic_layers_twotone;var ic_layers_clear={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19.81 14.99l1.19-.92-1.43-1.43-1.19.92 1.43 1.43zm-.45-4.72L21 9l-9-7-2.91 2.27 7.87 7.88 2.4-1.88zM3.27 1L2 2.27l4.22 4.22L3 9l1.63 1.27L12 16l2.1-1.63 1.43 1.43L12 18.54l-7.37-5.73L3 14.07l9 7 4.95-3.85L20.73 21 22 19.73 3.27 1z"},"children":[]}]};exports.ic_layers_clear=ic_layers_clear;var ic_layers_clear_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 4.53L17.74 9l-1.89 1.47 1.43 1.42L21 9l-9-7-2.59 2.02 1.42 1.42zm9 9.54l-1.63-1.27-.67.52 1.43 1.43zM3.41.86L2 2.27l4.22 4.22L3 9l9 7 2.1-1.63 1.42 1.42-3.53 2.75-7.37-5.73L3 14.07l9 7 4.95-3.85L20.73 21l1.41-1.41L3.41.86zM12 13.47L6.26 9l1.39-1.08 5.02 5.02-.67.53z"},"children":[]}]};exports.ic_layers_clear_outline=ic_layers_clear_outline;var ic_layers_clear_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 13.47l.67-.53-5.02-5.02L6.26 9zm0-8.94l-1.17.91 5.02 5.03L17.74 9z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 4.53L17.74 9l-1.89 1.47 1.43 1.42L21 9l-9-7-2.59 2.02 1.42 1.42zm9 9.54l-1.63-1.27-.67.52 1.43 1.43zM3.41.86L2 2.27l4.22 4.22L3 9l9 7 2.1-1.63 1.42 1.42-3.53 2.75-7.37-5.73L3 14.07l9 7 4.95-3.85L20.73 21l1.41-1.41L3.41.86zM12 13.47L6.26 9l1.39-1.08 5.02 5.02-.67.53z"},"children":[]}]};exports.ic_layers_clear_twotone=ic_layers_clear_twotone;var ic_liquor={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M3,14c0,1.3,0.84,2.4,2,2.82V20H3v2h6v-2H7v-3.18C8.16,16.4,9,15.3,9,14V6H3V14z M5,8h2v3H5V8z"},"children":[{"name":"path","attribs":{"d":"M3,14c0,1.3,0.84,2.4,2,2.82V20H3v2h6v-2H7v-3.18C8.16,16.4,9,15.3,9,14V6H3V14z M5,8h2v3H5V8z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M20.63,8.54l-0.95-0.32C19.28,8.09,19,7.71,19,7.28V3c0-0.55-0.45-1-1-1h-3c-0.55,0-1,0.45-1,1v4.28 c0,0.43-0.28,0.81-0.68,0.95l-0.95,0.32C11.55,8.82,11,9.58,11,10.44V20c0,1.1,0.9,2,2,2h7c1.1,0,2-0.9,2-2v-9.56 C22,9.58,21.45,8.82,20.63,8.54z M16,4h1v1h-1V4z M13,10.44l0.95-0.32C15.18,9.72,16,8.57,16,7.28V7h1v0.28 c0,1.29,0.82,2.44,2.05,2.85L20,10.44V12h-7V10.44z M20,20h-7v-2h7V20z"},"children":[{"name":"path","attribs":{"d":"M20.63,8.54l-0.95-0.32C19.28,8.09,19,7.71,19,7.28V3c0-0.55-0.45-1-1-1h-3c-0.55,0-1,0.45-1,1v4.28 c0,0.43-0.28,0.81-0.68,0.95l-0.95,0.32C11.55,8.82,11,9.58,11,10.44V20c0,1.1,0.9,2,2,2h7c1.1,0,2-0.9,2-2v-9.56 C22,9.58,21.45,8.82,20.63,8.54z M16,4h1v1h-1V4z M13,10.44l0.95-0.32C15.18,9.72,16,8.57,16,7.28V7h1v0.28 c0,1.29,0.82,2.44,2.05,2.85L20,10.44V12h-7V10.44z M20,20h-7v-2h7V20z"},"children":[]}]}]}]}]}]}]}]};exports.ic_liquor=ic_liquor;var ic_local_activity={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 12c0-1.1.9-2 2-2V6c0-1.1-.9-2-2-2H4c-1.1 0-1.99.9-1.99 2v4c1.1 0 1.99.9 1.99 2s-.89 2-2 2v4c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-4c-1.1 0-2-.9-2-2zm-4.42 4.8L12 14.5l-3.58 2.3 1.08-4.12-3.29-2.69 4.24-.25L12 5.8l1.54 3.95 4.24.25-3.29 2.69 1.09 4.11z"},"children":[]}]};exports.ic_local_activity=ic_local_activity;var ic_local_activity_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 10V6c0-1.1-.9-2-2-2H4c-1.1 0-1.99.9-1.99 2v4c1.1 0 1.99.9 1.99 2s-.89 2-2 2v4c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-4c-1.1 0-2-.9-2-2s.9-2 2-2zm-2-1.46c-1.19.69-2 1.99-2 3.46s.81 2.77 2 3.46V18H4v-2.54c1.19-.69 2-1.99 2-3.46 0-1.48-.8-2.77-1.99-3.46L4 6h16v2.54zM9.07 16L12 14.12 14.93 16l-.89-3.36 2.69-2.2-3.47-.21L12 7l-1.27 3.22-3.47.21 2.69 2.2z"},"children":[]}]};exports.ic_local_activity_outline=ic_local_activity_outline;var ic_local_activity_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4.01 8.54C5.2 9.23 6 10.52 6 12s-.81 2.77-2 3.46V18h16v-2.54c-1.19-.69-2-1.99-2-3.46s.81-2.77 2-3.46V6H4l.01 2.54zm6.72 1.68L12 7l1.26 3.23 3.47.2-2.69 2.2.89 3.37L12 14.12 9.07 16l.88-3.37-2.69-2.2 3.47-.21z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 4H4c-1.1 0-1.99.9-1.99 2v4c1.1 0 1.99.9 1.99 2s-.89 2-2 2v4c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-4c-1.1 0-2-.9-2-2s.9-2 2-2V6c0-1.1-.9-2-2-2zm0 4.54c-1.19.69-2 1.99-2 3.46s.81 2.77 2 3.46V18H4v-2.54c1.19-.69 2-1.99 2-3.46 0-1.48-.8-2.77-1.99-3.46L4 6h16v2.54zM9.07 16L12 14.12 14.93 16l-.89-3.36 2.69-2.2-3.47-.21L12 7l-1.27 3.22-3.47.21 2.69 2.2z"},"children":[]}]};exports.ic_local_activity_twotone=ic_local_activity_twotone;var ic_local_airport={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M22,16v-2l-8.5-5V3.5C13.5,2.67,12.83,2,12,2s-1.5,0.67-1.5,1.5V9L2,14v2l8.5-2.5V19L8,20.5L8,22l4-1l4,1l0-1.5L13.5,19 v-5.5L22,16z"},"children":[{"name":"path","attribs":{"d":"M22,16v-2l-8.5-5V3.5C13.5,2.67,12.83,2,12,2s-1.5,0.67-1.5,1.5V9L2,14v2l8.5-2.5V19L8,20.5L8,22l4-1l4,1l0-1.5L13.5,19 v-5.5L22,16z"},"children":[]}]},{"name":"path","attribs":{"d":"M0,0h24v24H0V0z","fill":"none"},"children":[{"name":"path","attribs":{"d":"M0,0h24v24H0V0z","fill":"none"},"children":[]}]}]}]};exports.ic_local_airport=ic_local_airport;var ic_local_airport_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M22,16v-2l-8.5-5V3.5C13.5,2.67,12.83,2,12,2s-1.5,0.67-1.5,1.5V9L2,14v2l8.5-2.5V19L8,20.5L8,22l4-1l4,1l0-1.5L13.5,19 v-5.5L22,16z"},"children":[{"name":"path","attribs":{"d":"M22,16v-2l-8.5-5V3.5C13.5,2.67,12.83,2,12,2s-1.5,0.67-1.5,1.5V9L2,14v2l8.5-2.5V19L8,20.5L8,22l4-1l4,1l0-1.5L13.5,19 v-5.5L22,16z"},"children":[]}]},{"name":"path","attribs":{"d":"M0,0h24v24H0V0z","fill":"none"},"children":[{"name":"path","attribs":{"d":"M0,0h24v24H0V0z","fill":"none"},"children":[]}]}]}]};exports.ic_local_airport_outline=ic_local_airport_outline;var ic_local_airport_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M22,16v-2l-8.5-5V3.5C13.5,2.67,12.83,2,12,2s-1.5,0.67-1.5,1.5V9L2,14v2l8.5-2.5V19L8,20.5L8,22l4-1l4,1l0-1.5L13.5,19 v-5.5L22,16z"},"children":[{"name":"path","attribs":{"d":"M22,16v-2l-8.5-5V3.5C13.5,2.67,12.83,2,12,2s-1.5,0.67-1.5,1.5V9L2,14v2l8.5-2.5V19L8,20.5L8,22l4-1l4,1l0-1.5L13.5,19 v-5.5L22,16z"},"children":[]}]},{"name":"path","attribs":{"d":"M0,0h24v24H0V0z","fill":"none"},"children":[{"name":"path","attribs":{"d":"M0,0h24v24H0V0z","fill":"none"},"children":[]}]}]}]};exports.ic_local_airport_twotone=ic_local_airport_twotone;var ic_local_atm={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11 17h2v-1h1c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1h-3v-1h4V8h-2V7h-2v1h-1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h3v1H9v2h2v1zm9-13H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4V6h16v12z"},"children":[]}]};exports.ic_local_atm=ic_local_atm;var ic_local_atm_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11 17h2v-1h1c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1h-3v-1h4V8h-2V7h-2v1h-1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h3v1H9v2h2v1zm9-13H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4V6h16v12z"},"children":[]}]};exports.ic_local_atm_outline=ic_local_atm_outline;var ic_local_atm_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 18h16V6H4v12zm5-4h4v-1h-3c-.55 0-1-.45-1-1V9c0-.55.45-1 1-1h1V7h2v1h2v2h-4v1h3c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1h-1v1h-2v-1H9v-2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4V6h16v12zm-9-1h2v-1h1c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1h-3v-1h4V8h-2V7h-2v1h-1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h3v1H9v2h2v1z"},"children":[]}]};exports.ic_local_atm_twotone=ic_local_atm_twotone;var ic_local_bar={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 5V3H3v2l8 9v5H6v2h12v-2h-5v-5l8-9zM7.43 7L5.66 5h12.69l-1.78 2H7.43z"},"children":[]}]};exports.ic_local_bar=ic_local_bar;var ic_local_bar_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14.77 9L12 12.11 9.23 9h5.54M21 3H3v2l8 9v5H6v2h12v-2h-5v-5l8-9V3zM7.43 7L5.66 5h12.69l-1.78 2H7.43z"},"children":[]}]};exports.ic_local_bar_outline=ic_local_bar_outline;var ic_local_bar_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9.23 9L12 12.11 14.77 9z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M21 5V3H3v2l8 9v5H6v2h12v-2h-5v-5l8-9zM5.66 5h12.69l-1.78 2H7.43L5.66 5zM12 12.11L9.23 9h5.54L12 12.11z"},"children":[]}]};exports.ic_local_bar_twotone=ic_local_bar_twotone;var ic_local_cafe={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 3H4v10c0 2.21 1.79 4 4 4h6c2.21 0 4-1.79 4-4v-3h2c1.11 0 2-.9 2-2V5c0-1.11-.89-2-2-2zm0 5h-2V5h2v3zM4 19h16v2H4z"},"children":[]}]};exports.ic_local_cafe=ic_local_cafe;var ic_local_cafe_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16 5v8c0 1.1-.9 2-2 2H8c-1.1 0-2-.9-2-2V5h10m4-2H4v10c0 2.21 1.79 4 4 4h6c2.21 0 4-1.79 4-4v-3h2c1.11 0 2-.89 2-2V5c0-1.11-.89-2-2-2zm-2 5V5h2v3h-2zm2 11H2v2h18v-2z"},"children":[]}]};exports.ic_local_cafe_outline=ic_local_cafe_outline;var ic_local_cafe_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8 15h6c1.1 0 2-.9 2-2V5H6v8c0 1.1.9 2 2 2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M2 19h18v2H2zm2-6c0 2.21 1.79 4 4 4h6c2.21 0 4-1.79 4-4v-3h2c1.11 0 2-.89 2-2V5c0-1.11-.89-2-2-2H4v10zm14-8h2v3h-2V5zM6 5h10v8c0 1.1-.9 2-2 2H8c-1.1 0-2-.9-2-2V5z"},"children":[]}]};exports.ic_local_cafe_twotone=ic_local_cafe_twotone;var ic_local_car_wash={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 5c.83 0 1.5-.67 1.5-1.5 0-1-1.5-2.7-1.5-2.7s-1.5 1.7-1.5 2.7c0 .83.67 1.5 1.5 1.5zm-5 0c.83 0 1.5-.67 1.5-1.5 0-1-1.5-2.7-1.5-2.7s-1.5 1.7-1.5 2.7c0 .83.67 1.5 1.5 1.5zM7 5c.83 0 1.5-.67 1.5-1.5C8.5 2.5 7 .8 7 .8S5.5 2.5 5.5 3.5C5.5 4.33 6.17 5 7 5zm11.92 3.01C18.72 7.42 18.16 7 17.5 7h-11c-.66 0-1.21.42-1.42 1.01L3 14v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.5 18c-.83 0-1.5-.67-1.5-1.5S5.67 15 6.5 15s1.5.67 1.5 1.5S7.33 18 6.5 18zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 13l1.5-4.5h11L19 13H5z"},"children":[]}]};exports.ic_local_car_wash=ic_local_car_wash;var ic_local_car_wash_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 5c.83 0 1.5-.67 1.5-1.5 0-1-1.5-2.7-1.5-2.7s-1.5 1.7-1.5 2.7c0 .83.67 1.5 1.5 1.5zm-5 0c.83 0 1.5-.67 1.5-1.5 0-1-1.5-2.7-1.5-2.7s-1.5 1.7-1.5 2.7c0 .83.67 1.5 1.5 1.5zM7 5c.83 0 1.5-.67 1.5-1.5C8.5 2.5 7 .8 7 .8S5.5 2.5 5.5 3.5C5.5 4.33 6.17 5 7 5zm11.92 3.01C18.72 7.42 18.16 7 17.5 7h-11c-.66 0-1.21.42-1.42 1.01L3 14v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.85 9h10.29l1.04 3H5.81l1.04-3zM19 19H5v-4.66l.12-.34h13.77l.11.34V19z"},"children":[]},{"name":"circle","attribs":{"cx":"7.5","cy":"16.5","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"16.5","cy":"16.5","r":"1.5"},"children":[]}]};exports.ic_local_car_wash_outline=ic_local_car_wash_outline;var ic_local_car_wash_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5.12 14l-.12.34V19h14v-4.66l-.12-.34H5.12zm2.38 4c-.83 0-1.5-.67-1.5-1.5S6.67 15 7.5 15s1.5.67 1.5 1.5S8.33 18 7.5 18zm9 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M15.5 3.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5c0-1-1.5-2.7-1.5-2.7s-1.5 1.7-1.5 2.7zm-2 0c0-1-1.5-2.7-1.5-2.7s-1.5 1.7-1.5 2.7c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5zm-5 0C8.5 2.5 7 .8 7 .8S5.5 2.5 5.5 3.5C5.5 4.33 6.17 5 7 5s1.5-.67 1.5-1.5zM21 14l-2.08-5.99C18.72 7.42 18.16 7 17.5 7h-11c-.66 0-1.21.42-1.42 1.01L3 14v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8zM6.85 9h10.29l1.04 3H5.81l1.04-3zM19 19H5v-4.66l.12-.34h13.77l.11.34V19z"},"children":[]},{"name":"circle","attribs":{"cx":"7.5","cy":"16.5","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"16.5","cy":"16.5","r":"1.5"},"children":[]}]};exports.ic_local_car_wash_twotone=ic_local_car_wash_twotone;var ic_local_convenience_store={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 7V4H5v3H2v13h8v-4h4v4h8V7h-3zm-8 3H9v1h2v1H8V9h2V8H8V7h3v3zm5 2h-1v-2h-2V7h1v2h1V7h1v5z"},"children":[]}]};exports.ic_local_convenience_store=ic_local_convenience_store;var ic_local_convenience_store_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 7V4H5v3H2v13h8v-4h4v4h8V7h-3zm1 11h-4v-4H8v4H4V9h3V6h10v3h3v9zM8 8h2v1H8v3h3v-1H9v-1h2V7H8zm7 1h-1V7h-1v3h2v2h1V7h-1z"},"children":[]}]};exports.ic_local_convenience_store_outline=ic_local_convenience_store_outline;var ic_local_convenience_store_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14 14h2v4h4V9h-3V6H7v3H4v9h4v-4h6zm-1-7h1v2h1V7h1v5h-1v-2h-2V7zM8 9h2V8H8V7h3v3H9v1h2v1H8V9z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M10 16h4v4h8V7h-3V4H5v3H2v13h8v-4zm-2 0v2H4V9h3V6h10v3h3v9h-4v-4H8v2zm3-5H9v-1h2V7H8v1h2v1H8v3h3zm4 1h1V7h-1v2h-1V7h-1v3h2z"},"children":[]}]};exports.ic_local_convenience_store_twotone=ic_local_convenience_store_twotone;var ic_local_dining={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8.1 13.34l2.83-2.83L3.91 3.5c-1.56 1.56-1.56 4.09 0 5.66l4.19 4.18zm6.78-1.81c1.53.71 3.68.21 5.27-1.38 1.91-1.91 2.28-4.65.81-6.12-1.46-1.46-4.2-1.1-6.12.81-1.59 1.59-2.09 3.74-1.38 5.27L3.7 19.87l1.41 1.41L12 14.41l6.88 6.88 1.41-1.41L13.41 13l1.47-1.47z"},"children":[]}]};exports.ic_local_dining=ic_local_dining;var ic_local_dining_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8.1 13.34l2.83-2.83L3.91 3.5c-1.56 1.56-1.56 4.09 0 5.66l4.19 4.18zm6.78-1.81c1.53.71 3.68.21 5.27-1.38 1.91-1.91 2.28-4.65.81-6.12-1.46-1.46-4.2-1.1-6.12.81-1.59 1.59-2.09 3.74-1.38 5.27L3.7 19.87l1.41 1.41L12 14.41l6.88 6.88 1.41-1.41L13.41 13l1.47-1.47z"},"children":[]}]};exports.ic_local_dining_outline=ic_local_dining_outline;var ic_local_dining_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5.11 21.28L12 14.41l6.88 6.88 1.41-1.41L13.41 13l1.47-1.47c1.53.71 3.68.21 5.27-1.38 1.91-1.91 2.28-4.65.81-6.12-1.46-1.46-4.2-1.1-6.12.81-1.59 1.59-2.09 3.74-1.38 5.27L3.7 19.87l1.41 1.41zM3.91 9.16l4.19 4.18 2.83-2.83L3.91 3.5c-1.56 1.56-1.56 4.09 0 5.66z"},"children":[]}]};exports.ic_local_dining_twotone=ic_local_dining_twotone;var ic_local_drink={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 2l2.01 18.23C5.13 21.23 5.97 22 7 22h10c1.03 0 1.87-.77 1.99-1.77L21 2H3zm9 17c-1.66 0-3-1.34-3-3 0-2 3-5.4 3-5.4s3 3.4 3 5.4c0 1.66-1.34 3-3 3zm6.33-11H5.67l-.44-4h13.53l-.43 4z"},"children":[]}]};exports.ic_local_drink=ic_local_drink;var ic_local_drink_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 2l2.01 18.23C5.13 21.23 5.97 22 7 22h10c1.03 0 1.87-.77 1.99-1.77L21 2H3zm14 18l-10 .01L5.89 10H18.1L17 20zm1.33-12H5.67l-.44-4h13.53l-.43 4zM12 19c1.66 0 3-1.34 3-3 0-2-3-5.4-3-5.4S9 14 9 16c0 1.66 1.34 3 3 3zm0-5.09c.59.91 1 1.73 1 2.09 0 .55-.45 1-1 1s-1-.45-1-1c0-.37.41-1.19 1-2.09z"},"children":[]}]};exports.ic_local_drink_outline=ic_local_drink_outline;var ic_local_drink_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 20.01L17 20l1.1-10H5.89L7 20.01zm5-9.41s3 3.4 3 5.4c0 1.66-1.34 3-3 3s-3-1.34-3-3c0-2 3-5.4 3-5.4z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M5.01 20.23C5.13 21.23 5.97 22 7 22h10c1.03 0 1.87-.77 1.99-1.77L21 2H3l2.01 18.23zM17 20l-10 .01L5.89 10H18.1L17 20zm1.76-16l-.43 4H5.67l-.44-4h13.53zM12 19c1.66 0 3-1.34 3-3 0-2-3-5.4-3-5.4S9 14 9 16c0 1.66 1.34 3 3 3zm0-5.09c.59.91 1 1.73 1 2.09 0 .55-.45 1-1 1s-1-.45-1-1c0-.37.41-1.19 1-2.09z"},"children":[]}]};exports.ic_local_drink_twotone=ic_local_drink_twotone;var ic_local_fire_department={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","y":"0"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","y":"0"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M19.48,12.35c-1.57-4.08-7.16-4.3-5.81-10.23c0.1-0.44-0.37-0.78-0.75-0.55C9.29,3.71,6.68,8,8.87,13.62 c0.18,0.46-0.36,0.89-0.75,0.59c-1.81-1.37-2-3.34-1.84-4.75c0.06-0.52-0.62-0.77-0.91-0.34C4.69,10.16,4,11.84,4,14.37 c0.38,5.6,5.11,7.32,6.81,7.54c2.43,0.31,5.06-0.14,6.95-1.87C19.84,18.11,20.6,15.03,19.48,12.35z M10.2,17.38 c1.44-0.35,2.18-1.39,2.38-2.31c0.33-1.43-0.96-2.83-0.09-5.09c0.33,1.87,3.27,3.04,3.27,5.08C15.84,17.59,13.1,19.76,10.2,17.38z"},"children":[{"name":"path","attribs":{"d":"M19.48,12.35c-1.57-4.08-7.16-4.3-5.81-10.23c0.1-0.44-0.37-0.78-0.75-0.55C9.29,3.71,6.68,8,8.87,13.62 c0.18,0.46-0.36,0.89-0.75,0.59c-1.81-1.37-2-3.34-1.84-4.75c0.06-0.52-0.62-0.77-0.91-0.34C4.69,10.16,4,11.84,4,14.37 c0.38,5.6,5.11,7.32,6.81,7.54c2.43,0.31,5.06-0.14,6.95-1.87C19.84,18.11,20.6,15.03,19.48,12.35z M10.2,17.38 c1.44-0.35,2.18-1.39,2.38-2.31c0.33-1.43-0.96-2.83-0.09-5.09c0.33,1.87,3.27,3.04,3.27,5.08C15.84,17.59,13.1,19.76,10.2,17.38z"},"children":[]}]}]}]};exports.ic_local_fire_department=ic_local_fire_department;var ic_local_fire_department_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","y":"0"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","y":"0"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M19.48,12.35c-1.57-4.08-7.16-4.3-5.81-10.23c0.1-0.44-0.37-0.78-0.75-0.55C9.29,3.71,6.68,8,8.87,13.62 c0.18,0.46-0.36,0.89-0.75,0.59c-1.81-1.37-2-3.34-1.84-4.75c0.06-0.52-0.62-0.77-0.91-0.34C4.69,10.16,4,11.84,4,14.37 c0.38,5.6,5.11,7.32,6.81,7.54c2.43,0.31,5.06-0.14,6.95-1.87C19.84,18.11,20.6,15.03,19.48,12.35z M10.2,17.38 c1.44-0.35,2.18-1.39,2.38-2.31c0.33-1.43-0.96-2.83-0.09-5.09c0.33,1.87,3.27,3.04,3.27,5.08C15.84,17.59,13.1,19.76,10.2,17.38z"},"children":[{"name":"path","attribs":{"d":"M19.48,12.35c-1.57-4.08-7.16-4.3-5.81-10.23c0.1-0.44-0.37-0.78-0.75-0.55C9.29,3.71,6.68,8,8.87,13.62 c0.18,0.46-0.36,0.89-0.75,0.59c-1.81-1.37-2-3.34-1.84-4.75c0.06-0.52-0.62-0.77-0.91-0.34C4.69,10.16,4,11.84,4,14.37 c0.38,5.6,5.11,7.32,6.81,7.54c2.43,0.31,5.06-0.14,6.95-1.87C19.84,18.11,20.6,15.03,19.48,12.35z M10.2,17.38 c1.44-0.35,2.18-1.39,2.38-2.31c0.33-1.43-0.96-2.83-0.09-5.09c0.33,1.87,3.27,3.04,3.27,5.08C15.84,17.59,13.1,19.76,10.2,17.38z"},"children":[]}]}]}]};exports.ic_local_fire_department_outline=ic_local_fire_department_outline;var ic_local_fire_department_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","y":"0"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","y":"0"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M12.58,15.07c-0.2,0.92-0.94,1.96-2.38,2.31c2.9,2.37,5.64,0.2,5.56-2.32 c0-2.05-2.95-3.21-3.27-5.08C11.62,12.24,12.9,13.64,12.58,15.07z","enable-background":"new","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M12.58,15.07c-0.2,0.92-0.94,1.96-2.38,2.31c2.9,2.37,5.64,0.2,5.56-2.32 c0-2.05-2.95-3.21-3.27-5.08C11.62,12.24,12.9,13.64,12.58,15.07z","enable-background":"new","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M19.48,12.35c-1.57-4.08-7.16-4.3-5.81-10.23c0.1-0.44-0.37-0.78-0.75-0.55C9.29,3.71,6.68,8,8.87,13.62 c0.18,0.46-0.36,0.89-0.75,0.59c-1.81-1.37-2-3.34-1.84-4.75c0.06-0.52-0.62-0.77-0.91-0.34C4.69,10.16,4,11.84,4,14.37 c0.38,5.6,5.11,7.32,6.81,7.54c2.43,0.31,5.06-0.14,6.95-1.87C19.84,18.11,20.6,15.03,19.48,12.35z M10.2,17.38 c1.44-0.35,2.18-1.39,2.38-2.31c0.33-1.43-0.96-2.83-0.09-5.09c0.33,1.87,3.27,3.04,3.27,5.08C15.84,17.59,13.1,19.76,10.2,17.38z"},"children":[{"name":"path","attribs":{"d":"M19.48,12.35c-1.57-4.08-7.16-4.3-5.81-10.23c0.1-0.44-0.37-0.78-0.75-0.55C9.29,3.71,6.68,8,8.87,13.62 c0.18,0.46-0.36,0.89-0.75,0.59c-1.81-1.37-2-3.34-1.84-4.75c0.06-0.52-0.62-0.77-0.91-0.34C4.69,10.16,4,11.84,4,14.37 c0.38,5.6,5.11,7.32,6.81,7.54c2.43,0.31,5.06-0.14,6.95-1.87C19.84,18.11,20.6,15.03,19.48,12.35z M10.2,17.38 c1.44-0.35,2.18-1.39,2.38-2.31c0.33-1.43-0.96-2.83-0.09-5.09c0.33,1.87,3.27,3.04,3.27,5.08C15.84,17.59,13.1,19.76,10.2,17.38z"},"children":[]}]}]}]}]}]};exports.ic_local_fire_department_twotone=ic_local_fire_department_twotone;var ic_local_florist={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 22c4.97 0 9-4.03 9-9-4.97 0-9 4.03-9 9zM5.6 10.25c0 1.38 1.12 2.5 2.5 2.5.53 0 1.01-.16 1.42-.44l-.02.19c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5l-.02-.19c.4.28.89.44 1.42.44 1.38 0 2.5-1.12 2.5-2.5 0-1-.59-1.85-1.43-2.25.84-.4 1.43-1.25 1.43-2.25 0-1.38-1.12-2.5-2.5-2.5-.53 0-1.01.16-1.42.44l.02-.19C14.5 2.12 13.38 1 12 1S9.5 2.12 9.5 3.5l.02.19c-.4-.28-.89-.44-1.42-.44-1.38 0-2.5 1.12-2.5 2.5 0 1 .59 1.85 1.43 2.25-.84.4-1.43 1.25-1.43 2.25zM12 5.5c1.38 0 2.5 1.12 2.5 2.5s-1.12 2.5-2.5 2.5S9.5 9.38 9.5 8s1.12-2.5 2.5-2.5zM3 13c0 4.97 4.03 9 9 9 0-4.97-4.03-9-9-9z"},"children":[]}]};exports.ic_local_florist=ic_local_florist;var ic_local_florist_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8.66 13.07c.15 0 .29-.01.43-.03C9.56 14.19 10.69 15 12 15s2.44-.81 2.91-1.96c.14.02.29.03.43.03 1.73 0 3.14-1.41 3.14-3.14 0-.71-.25-1.39-.67-1.93.43-.54.67-1.22.67-1.93 0-1.73-1.41-3.14-3.14-3.14-.15 0-.29.01-.43.03C14.44 1.81 13.31 1 12 1s-2.44.81-2.91 1.96c-.14-.02-.29-.03-.43-.03-1.73 0-3.14 1.41-3.14 3.14 0 .71.25 1.39.67 1.93-.43.54-.68 1.22-.68 1.93 0 1.73 1.41 3.14 3.15 3.14zM12 13c-.62 0-1.12-.49-1.14-1.1l.12-1.09c.32.12.66.19 1.02.19s.71-.07 1.03-.19l.11 1.09c-.02.61-.52 1.1-1.14 1.1zm3.34-1.93c-.24 0-.46-.07-.64-.2l-.81-.57c.55-.45.94-1.09 1.06-1.83l.88.42c.4.19.66.59.66 1.03 0 .64-.52 1.15-1.15 1.15zm-.65-5.94c.2-.13.42-.2.65-.2.63 0 1.14.51 1.14 1.14 0 .44-.25.83-.66 1.03l-.88.42c-.12-.74-.51-1.38-1.07-1.83l.82-.56zM12 3c.62 0 1.12.49 1.14 1.1l-.11 1.09C12.71 5.07 12.36 5 12 5s-.7.07-1.02.19l-.12-1.09c.02-.61.52-1.1 1.14-1.1zM8.66 4.93c.24 0 .46.07.64.2l.81.56c-.55.45-.94 1.09-1.06 1.83l-.88-.42c-.4-.2-.66-.59-.66-1.03 0-.63.52-1.14 1.15-1.14zM8.17 8.9l.88-.42c.12.74.51 1.38 1.07 1.83l-.81.55c-.2.13-.42.2-.65.2-.63 0-1.14-.51-1.14-1.14-.01-.43.25-.82.65-1.02zM12 22c4.97 0 9-4.03 9-9-4.97 0-9 4.03-9 9zm2.44-2.44c.71-1.9 2.22-3.42 4.12-4.12-.71 1.9-2.22 3.41-4.12 4.12zM3 13c0 4.97 4.03 9 9 9 0-4.97-4.03-9-9-9zm2.44 2.44c1.9.71 3.42 2.22 4.12 4.12-1.9-.71-3.41-2.22-4.12-4.12z"},"children":[]}]};exports.ic_local_florist_outline=ic_local_florist_outline;var ic_local_florist_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 13c.62 0 1.12-.49 1.14-1.1l-.11-1.09c-.32.12-.67.19-1.03.19s-.7-.07-1.02-.19l-.12 1.09c.02.61.52 1.1 1.14 1.1zM8.17 7.1l.88.42c.12-.73.51-1.37 1.06-1.83l-.81-.56c-.18-.13-.41-.2-.64-.2-.63 0-1.14.51-1.14 1.14-.01.44.25.83.65 1.03zm7.66 1.8l-.88-.42c-.12.73-.51 1.37-1.06 1.83l.81.57c.18.13.41.2.64.2.63 0 1.14-.51 1.14-1.14.01-.45-.25-.84-.65-1.04zm-.88-1.38l.88-.42c.4-.19.66-.59.66-1.03 0-.63-.51-1.14-1.14-1.14-.24 0-.46.07-.65.2l-.81.55c.55.46.94 1.1 1.06 1.84zM12 5c.36 0 .71.07 1.03.19l.11-1.09C13.12 3.49 12.62 3 12 3s-1.12.49-1.14 1.1l.12 1.09C11.3 5.07 11.64 5 12 5zm-3.34 6.07c.24 0 .46-.07.65-.2l.81-.55c-.56-.46-.95-1.1-1.07-1.84l-.88.42c-.4.2-.66.59-.66 1.03 0 .63.52 1.14 1.15 1.14zm9.9 4.37c-1.9.71-3.42 2.22-4.12 4.12 1.9-.71 3.41-2.22 4.12-4.12zm-13.12 0c.71 1.9 2.22 3.42 4.12 4.12-.71-1.9-2.22-3.41-4.12-4.12z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M8.66 13.07c.15 0 .29-.01.43-.03C9.56 14.19 10.69 15 12 15s2.44-.81 2.91-1.96c.14.02.29.03.43.03 1.73 0 3.14-1.41 3.14-3.14 0-.71-.25-1.39-.67-1.93.43-.54.67-1.22.67-1.93 0-1.73-1.41-3.14-3.14-3.14-.15 0-.29.01-.43.03C14.44 1.81 13.31 1 12 1s-2.44.81-2.91 1.96c-.14-.02-.29-.03-.43-.03-1.73 0-3.14 1.41-3.14 3.14 0 .71.25 1.39.67 1.93-.43.54-.68 1.22-.68 1.93 0 1.73 1.41 3.14 3.15 3.14zm6.68-2c-.24 0-.46-.07-.64-.2l-.81-.57c.55-.45.94-1.09 1.06-1.83l.88.42c.4.19.66.59.66 1.03 0 .64-.52 1.15-1.15 1.15zm-.65-5.94c.2-.13.42-.2.65-.2.63 0 1.14.51 1.14 1.14 0 .44-.25.83-.66 1.03l-.88.42c-.12-.74-.51-1.38-1.07-1.83l.82-.56zM12 3c.62 0 1.12.49 1.14 1.1l-.11 1.09C12.71 5.07 12.36 5 12 5s-.7.07-1.02.19l-.12-1.09c.02-.61.52-1.1 1.14-1.1zm1 5c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1zm-2.02 2.81c.32.12.66.19 1.02.19s.71-.07 1.03-.19l.11 1.09c-.02.61-.52 1.1-1.14 1.1s-1.12-.49-1.14-1.1l.12-1.09zM8.66 4.93c.24 0 .46.07.64.2l.81.56c-.55.45-.94 1.09-1.06 1.83l-.88-.42c-.4-.2-.66-.59-.66-1.03 0-.63.52-1.14 1.15-1.14zM8.17 8.9l.88-.42c.12.74.51 1.38 1.07 1.83l-.81.55c-.2.13-.42.2-.65.2-.63 0-1.14-.51-1.14-1.14-.01-.43.25-.82.65-1.02zM12 22c4.97 0 9-4.03 9-9-4.97 0-9 4.03-9 9zm6.56-6.56c-.71 1.9-2.22 3.42-4.12 4.12.71-1.9 2.22-3.41 4.12-4.12zM3 13c0 4.97 4.03 9 9 9 0-4.97-4.03-9-9-9zm2.44 2.44c1.9.71 3.42 2.22 4.12 4.12-1.9-.71-3.41-2.22-4.12-4.12z"},"children":[]}]};exports.ic_local_florist_twotone=ic_local_florist_twotone;var ic_local_gas_station={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19.77 7.23l.01-.01-3.72-3.72L15 4.56l2.11 2.11c-.94.36-1.61 1.26-1.61 2.33 0 1.38 1.12 2.5 2.5 2.5.36 0 .69-.08 1-.21v7.21c0 .55-.45 1-1 1s-1-.45-1-1V14c0-1.1-.9-2-2-2h-1V5c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2v16h10v-7.5h1.5v5c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5V9c0-.69-.28-1.32-.73-1.77zM12 10H6V5h6v5zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z"},"children":[]}]};exports.ic_local_gas_station=ic_local_gas_station;var ic_local_gas_station_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19.77 7.23l.01-.01-3.72-3.72L15 4.56l2.11 2.11c-.94.36-1.61 1.26-1.61 2.33 0 1.38 1.12 2.5 2.5 2.5.36 0 .69-.08 1-.21v7.21c0 .55-.45 1-1 1s-1-.45-1-1V14c0-1.1-.9-2-2-2h-1V5c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2v16h10v-7.5h1.5v5c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5V9c0-.69-.28-1.32-.73-1.77zM12 13.5V19H6v-7h6v1.5zm0-3.5H6V5h6v5zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z"},"children":[]}]};exports.ic_local_gas_station_outline=ic_local_gas_station_outline;var ic_local_gas_station_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6 19h6v-7H6z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 3H6c-1.1 0-2 .9-2 2v16h10v-7.5h1.5v5c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5V9c0-.69-.28-1.32-.73-1.77l.01-.01-3.72-3.72L15 4.56l2.11 2.11c-.94.36-1.61 1.26-1.61 2.33 0 1.38 1.12 2.5 2.5 2.5.36 0 .69-.08 1-.21v7.21c0 .55-.45 1-1 1s-1-.45-1-1V14c0-1.1-.9-2-2-2h-1V5c0-1.1-.9-2-2-2zm0 10.5V19H6v-7h6v1.5zm0-3.5H6V5h6v5zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z"},"children":[]}]};exports.ic_local_gas_station_twotone=ic_local_gas_station_twotone;var ic_local_grocery_store={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zM1 2v2h2l3.6 7.59-1.35 2.45c-.16.28-.25.61-.25.96 0 1.1.9 2 2 2h12v-2H7.42c-.14 0-.25-.11-.25-.25l.03-.12.9-1.63h7.45c.75 0 1.41-.41 1.75-1.03l3.58-6.49c.08-.14.12-.31.12-.48 0-.55-.45-1-1-1H5.21l-.94-2H1zm16 16c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2z"},"children":[]}]};exports.ic_local_grocery_store=ic_local_grocery_store;var ic_local_grocery_store_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2zm-1.45-5c.75 0 1.41-.41 1.75-1.03l3.58-6.49c.37-.66-.11-1.48-.87-1.48H5.21l-.94-2H1v2h2l3.6 7.59-1.35 2.44C4.52 15.37 5.48 17 7 17h12v-2H7l1.1-2h7.45zM6.16 6h12.15l-2.76 5H8.53L6.16 6z"},"children":[]}]};exports.ic_local_grocery_store_outline=ic_local_grocery_store_outline;var ic_local_grocery_store_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8.53 11h7.02l2.76-5H6.16z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2zm-1.45-5c.75 0 1.41-.41 1.75-1.03l3.58-6.49c.37-.66-.11-1.48-.87-1.48H5.21l-.94-2H1v2h2l3.6 7.59-1.35 2.44C4.52 15.37 5.48 17 7 17h12v-2H7l1.1-2h7.45zM6.16 6h12.15l-2.76 5H8.53L6.16 6z"},"children":[]}]};exports.ic_local_grocery_store_twotone=ic_local_grocery_store_twotone;var ic_local_hospital={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-1.99.9-1.99 2L3 19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 11h-4v4h-4v-4H6v-4h4V6h4v4h4v4z"},"children":[]}]};exports.ic_local_hospital=ic_local_hospital;var ic_local_hospital_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-1.99.9-1.99 2L3 19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-8.5-2h3v-3.5H17v-3h-3.5V7h-3v3.5H7v3h3.5z"},"children":[]}]};exports.ic_local_hospital_outline=ic_local_hospital_outline;var ic_local_hospital_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 19h14V5H5v14zm2-8.5h3.5V7h3v3.5H17v3h-3.5V17h-3v-3.5H7v-3z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M21 5c0-1.1-.9-2-2-2H5c-1.1 0-1.99.9-1.99 2L3 19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5zm-2 14H5V5h14v14zm-8.5-2h3v-3.5H17v-3h-3.5V7h-3v3.5H7v3h3.5z"},"children":[]}]};exports.ic_local_hospital_twotone=ic_local_hospital_twotone;var ic_local_hotel={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 13c1.66 0 3-1.34 3-3S8.66 7 7 7s-3 1.34-3 3 1.34 3 3 3zm12-6h-8v7H3V5H1v15h2v-3h18v3h2v-9c0-2.21-1.79-4-4-4z"},"children":[]}]};exports.ic_local_hotel=ic_local_hotel;var ic_local_hotel_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 14c1.66 0 3-1.34 3-3S8.66 8 7 8s-3 1.34-3 3 1.34 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm12-3h-8v8H3V5H1v15h2v-3h18v3h2v-9c0-2.21-1.79-4-4-4zm2 8h-8V9h6c1.1 0 2 .9 2 2v4z"},"children":[]}]};exports.ic_local_hotel_outline=ic_local_hotel_outline;var ic_local_hotel_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"7","cy":"11","opacity":".3","r":"1"},"children":[]},{"name":"path","attribs":{"d":"M19 9h-6v6h8v-4c0-1.1-.9-2-2-2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M4 11c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3zm4 0c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1zm11-4h-8v8H3V5H1v15h2v-3h18v3h2v-9c0-2.21-1.79-4-4-4zm2 8h-8V9h6c1.1 0 2 .9 2 2v4z"},"children":[]}]};exports.ic_local_hotel_twotone=ic_local_hotel_twotone;var ic_local_laundry_service={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9.17 16.83c1.56 1.56 4.1 1.56 5.66 0 1.56-1.56 1.56-4.1 0-5.66l-5.66 5.66zM18 2.01L6 2c-1.11 0-2 .89-2 2v16c0 1.11.89 2 2 2h12c1.11 0 2-.89 2-2V4c0-1.11-.89-1.99-2-1.99zM10 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM7 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm5 16c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z"},"children":[]}]};exports.ic_local_laundry_service=ic_local_laundry_service;var ic_local_laundry_service_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 2.01L6 2c-1.11 0-2 .89-2 2v16c0 1.11.89 2 2 2h12c1.11 0 2-.89 2-2V4c0-1.11-.89-1.99-2-1.99zM18 20H6L5.99 4H18v16z"},"children":[]},{"name":"circle","attribs":{"cx":"8","cy":"6","r":"1"},"children":[]},{"name":"circle","attribs":{"cx":"11","cy":"6","r":"1"},"children":[]},{"name":"path","attribs":{"d":"M12 19c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm2.36-7.36c1.3 1.3 1.3 3.42 0 4.72-1.3 1.3-3.42 1.3-4.72 0l4.72-4.72z"},"children":[]}]};exports.ic_local_laundry_service_outline=ic_local_laundry_service_outline;var ic_local_laundry_service_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5.99 4L6 20h12V4H5.99c.01 0 0 0 0 0zM11 5c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM8 5c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm4 4c2.76 0 5 2.24 5 5s-2.24 5-5 5-5-2.24-5-5 2.24-5 5-5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M18 2.01L6 2c-1.11 0-2 .89-2 2v16c0 1.11.89 2 2 2h12c1.11 0 2-.89 2-2V4c0-1.11-.89-1.99-2-1.99zM18 20H6L5.99 4H18v16z"},"children":[]},{"name":"circle","attribs":{"cx":"8","cy":"6","r":"1"},"children":[]},{"name":"circle","attribs":{"cx":"11","cy":"6","r":"1"},"children":[]},{"name":"path","attribs":{"d":"M12 19c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm2.36-7.36c1.3 1.3 1.3 3.42 0 4.72-1.3 1.3-3.42 1.3-4.72 0l4.72-4.72z"},"children":[]}]};exports.ic_local_laundry_service_twotone=ic_local_laundry_service_twotone;var ic_local_library={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 11.55C9.64 9.35 6.48 8 3 8v11c3.48 0 6.64 1.35 9 3.55 2.36-2.19 5.52-3.55 9-3.55V8c-3.48 0-6.64 1.35-9 3.55zM12 8c1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3 1.34 3 3 3z"},"children":[]}]};exports.ic_local_library=ic_local_library;var ic_local_library_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 9c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm0 8.55C9.64 9.35 6.48 8 3 8v11c3.48 0 6.64 1.35 9 3.55 2.36-2.19 5.52-3.55 9-3.55V8c-3.48 0-6.64 1.35-9 3.55zm7 5.58c-2.53.34-4.93 1.3-7 2.82-2.06-1.52-4.47-2.49-7-2.83v-6.95c2.1.38 4.05 1.35 5.64 2.83L12 14.28l1.36-1.27c1.59-1.48 3.54-2.45 5.64-2.83v6.95z"},"children":[]}]};exports.ic_local_library_outline=ic_local_library_outline;var ic_local_library_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 17.13v-6.95c-2.1.38-4.05 1.35-5.64 2.83L12 14.28l-1.36-1.27C9.05 11.53 7.1 10.56 5 10.18v6.95c2.53.34 4.94 1.3 7 2.83 2.07-1.52 4.47-2.49 7-2.83z","opacity":".3"},"children":[]},{"name":"circle","attribs":{"cx":"12","cy":"5","opacity":".3","r":"2"},"children":[]},{"name":"path","attribs":{"d":"M16 5c0-2.21-1.79-4-4-4S8 2.79 8 5s1.79 4 4 4 4-1.79 4-4zm-6 0c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zM3 19c3.48 0 6.64 1.35 9 3.55 2.36-2.19 5.52-3.55 9-3.55V8c-3.48 0-6.64 1.35-9 3.55C9.64 9.35 6.48 8 3 8v11zm2-8.82c2.1.38 4.05 1.35 5.64 2.83L12 14.28l1.36-1.27c1.59-1.48 3.54-2.45 5.64-2.83v6.95c-2.53.34-4.93 1.3-7 2.82-2.06-1.52-4.47-2.49-7-2.83v-6.94z"},"children":[]}]};exports.ic_local_library_twotone=ic_local_library_twotone;var ic_local_mall={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 6h-2c0-2.76-2.24-5-5-5S7 3.24 7 6H5c-1.1 0-1.99.9-1.99 2L3 20c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-7-3c1.66 0 3 1.34 3 3H9c0-1.66 1.34-3 3-3zm0 10c-2.76 0-5-2.24-5-5h2c0 1.66 1.34 3 3 3s3-1.34 3-3h2c0 2.76-2.24 5-5 5z"},"children":[]}]};exports.ic_local_mall=ic_local_mall;var ic_local_mall_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 6h-2c0-2.76-2.24-5-5-5S7 3.24 7 6H5c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-7-3c1.66 0 3 1.34 3 3H9c0-1.66 1.34-3 3-3zm7 17H5V8h14v12zm-7-8c-1.66 0-3-1.34-3-3H7c0 2.76 2.24 5 5 5s5-2.24 5-5h-2c0 1.66-1.34 3-3 3z"},"children":[]}]};exports.ic_local_mall_outline=ic_local_mall_outline;var ic_local_mall_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 8v12h14V8H5zm7 6c-2.76 0-5-2.24-5-5h2c0 1.66 1.34 3 3 3s3-1.34 3-3h2c0 2.76-2.24 5-5 5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M17 6c0-2.76-2.24-5-5-5S7 3.24 7 6H5c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2h-2zm-5-3c1.66 0 3 1.34 3 3H9c0-1.66 1.34-3 3-3zm7 17H5V8h14v12zm-7-8c-1.66 0-3-1.34-3-3H7c0 2.76 2.24 5 5 5s5-2.24 5-5h-2c0 1.66-1.34 3-3 3z"},"children":[]}]};exports.ic_local_mall_twotone=ic_local_mall_twotone;var ic_local_movies={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 3v2h-2V3H8v2H6V3H4v18h2v-2h2v2h8v-2h2v2h2V3h-2zM8 17H6v-2h2v2zm0-4H6v-2h2v2zm0-4H6V7h2v2zm10 8h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V7h2v2z"},"children":[]}]};exports.ic_local_movies=ic_local_movies;var ic_local_movies_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14 5v14h-4V5h4m6-2h-2v2h-2V3H8v2H6V3H4v18h2v-2h2v2h8v-2h2v2h2V3zm-4 6V7h2v2h-2zM6 9V7h2v2H6zm10 4v-2h2v2h-2zM6 13v-2h2v2H6zm10 4v-2h2v2h-2zM6 17v-2h2v2H6z"},"children":[]}]};exports.ic_local_movies_outline=ic_local_movies_outline;var ic_local_movies_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 5h4v14h-4z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 21V3h-2v2h-2V3H8v2H6V3H4v18h2v-2h2v2h8v-2h2v2h2zM8 17H6v-2h2v2zm0-4H6v-2h2v2zm0-4H6V7h2v2zm6 10h-4V5h4v14zm2-12h2v2h-2V7zm0 4h2v2h-2v-2zm0 6v-2h2v2h-2z"},"children":[]}]};exports.ic_local_movies_twotone=ic_local_movies_twotone;var ic_local_offer={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21.41 11.58l-9-9C12.05 2.22 11.55 2 11 2H4c-1.1 0-2 .9-2 2v7c0 .55.22 1.05.59 1.42l9 9c.36.36.86.58 1.41.58.55 0 1.05-.22 1.41-.59l7-7c.37-.36.59-.86.59-1.41 0-.55-.23-1.06-.59-1.42zM5.5 7C4.67 7 4 6.33 4 5.5S4.67 4 5.5 4 7 4.67 7 5.5 6.33 7 5.5 7z"},"children":[]}]};exports.ic_local_offer=ic_local_offer;var ic_local_offer_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21.41 11.58l-9-9C12.05 2.22 11.55 2 11 2H4c-1.1 0-2 .9-2 2v7c0 .55.22 1.05.59 1.42l9 9c.36.36.86.58 1.41.58s1.05-.22 1.41-.59l7-7c.37-.36.59-.86.59-1.41s-.23-1.06-.59-1.42zM13 20.01L4 11V4h7v-.01l9 9-7 7.02z"},"children":[]},{"name":"circle","attribs":{"cx":"6.5","cy":"6.5","r":"1.5"},"children":[]}]};exports.ic_local_offer_outline=ic_local_offer_outline;var ic_local_offer_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11 4H4v7l9 9.01L20 13l-9-9zM6.5 8C5.67 8 5 7.33 5 6.5S5.67 5 6.5 5 8 5.67 8 6.5 7.33 8 6.5 8z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12.41 2.58C12.05 2.22 11.55 2 11 2H4c-1.1 0-2 .9-2 2v7c0 .55.22 1.05.59 1.42l9 9c.36.36.86.58 1.41.58s1.05-.22 1.41-.59l7-7c.37-.36.59-.86.59-1.41s-.23-1.06-.59-1.42l-9-9zM13 20.01L4 11V4h7v-.01l9 9-7 7.02z"},"children":[]},{"name":"circle","attribs":{"cx":"6.5","cy":"6.5","r":"1.5"},"children":[]}]};exports.ic_local_offer_twotone=ic_local_offer_twotone;var ic_local_parking={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13 3H6v18h4v-6h3c3.31 0 6-2.69 6-6s-2.69-6-6-6zm.2 8H10V7h3.2c1.1 0 2 .9 2 2s-.9 2-2 2z"},"children":[]}]};exports.ic_local_parking=ic_local_parking;var ic_local_parking_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13 3H6v18h4v-6h3c3.31 0 6-2.69 6-6s-2.69-6-6-6zm.2 8H10V7h3.2c1.1 0 2 .9 2 2s-.9 2-2 2z"},"children":[]}]};exports.ic_local_parking_outline=ic_local_parking_outline;var ic_local_parking_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13 3H6v18h4v-6h3c3.31 0 6-2.69 6-6s-2.69-6-6-6zm.2 8H10V7h3.2c1.1 0 2 .9 2 2s-.9 2-2 2z"},"children":[]}]};exports.ic_local_parking_twotone=ic_local_parking_twotone;var ic_local_pharmacy={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 5h-2.64l1.14-3.14L17.15 1l-1.46 4H3v2l2 6-2 6v2h18v-2l-2-6 2-6V5zm-5 9h-3v3h-2v-3H8v-2h3V9h2v3h3v2z"},"children":[]}]};exports.ic_local_pharmacy=ic_local_pharmacy;var ic_local_pharmacy_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 5h-2.64l1.14-3.14L17.15 1l-1.46 4H3v2l2 6-2 6v2h18v-2l-2-6 2-6V5zm-3.9 8.63L18.89 19H5.11l1.79-5.37.21-.63-.21-.63L5.11 7h13.78l-1.79 5.37-.21.63.21.63zM13 9h-2v3H8v2h3v3h2v-3h3v-2h-3z"},"children":[]}]};exports.ic_local_pharmacy_outline=ic_local_pharmacy_outline;var ic_local_pharmacy_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5.11 19h13.78l-1.79-5.37-.21-.63.21-.63L18.89 7H5.11l1.79 5.37.21.63-.21.63L5.11 19zM8 12h3V9h2v3h3v2h-3v3h-2v-3H8v-2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M3 21h18v-2l-2-6 2-6V5h-2.64l1.14-3.14L17.15 1l-1.46 4H3v2l2 6-2 6v2zm3.9-8.63L5.11 7h13.78l-1.79 5.37-.21.63.21.63L18.89 19H5.11l1.79-5.37.21-.63-.21-.63zM11 17h2v-3h3v-2h-3V9h-2v3H8v2h3z"},"children":[]}]};exports.ic_local_pharmacy_twotone=ic_local_pharmacy_twotone;var ic_local_phone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z"},"children":[]}]};exports.ic_local_phone=ic_local_phone;var ic_local_phone_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6.54 5c.06.89.21 1.76.45 2.59l-1.2 1.2c-.41-1.2-.67-2.47-.76-3.79h1.51m9.86 12.02c.85.24 1.72.39 2.6.45v1.49c-1.32-.09-2.59-.35-3.8-.75l1.2-1.19M7.5 3H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.49c0-.55-.45-1-1-1-1.24 0-2.45-.2-3.57-.57-.1-.04-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2c.28-.28.36-.67.25-1.02C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1z"},"children":[]}]};exports.ic_local_phone_outline=ic_local_phone_outline;var ic_local_phone_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 17.47c-.88-.07-1.75-.22-2.6-.45l-1.19 1.19c1.2.41 2.48.67 3.8.75v-1.49zM6.99 7.59c-.24-.83-.39-1.7-.45-2.59h-1.5c.09 1.32.35 2.59.75 3.8l1.2-1.21z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M3 4c0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.49c0-.55-.45-1-1-1-1.24 0-2.45-.2-3.57-.57-.1-.04-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2c.28-.28.36-.67.25-1.02C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1zm13.4 13.02c.85.24 1.72.39 2.6.45v1.49c-1.32-.09-2.59-.35-3.8-.75l1.2-1.19zM6.54 5c.06.89.21 1.76.45 2.59l-1.2 1.2c-.41-1.2-.67-2.47-.76-3.79h1.51z"},"children":[]}]};exports.ic_local_phone_twotone=ic_local_phone_twotone;var ic_local_pizza={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C8.43 2 5.23 3.54 3.01 6L12 22l8.99-16C18.78 3.55 15.57 2 12 2zM7 7c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm5 8c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"},"children":[]}]};exports.ic_local_pizza=ic_local_pizza;var ic_local_pizza_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C8.43 2 5.23 3.54 3.01 6L12 22l8.99-16C18.78 3.55 15.57 2 12 2zm0 15.92L5.51 6.36C7.32 4.85 9.62 4 12 4s4.68.85 6.49 2.36L12 17.92zM9 5.5c-.83 0-1.5.67-1.5 1.5S8.17 8.5 9 8.5s1.5-.67 1.5-1.5S9.82 5.5 9 5.5zm1.5 7.5c0 .83.67 1.5 1.5 1.5.82 0 1.5-.67 1.5-1.5s-.68-1.5-1.5-1.5-1.5.67-1.5 1.5z"},"children":[]}]};exports.ic_local_pizza_outline=ic_local_pizza_outline;var ic_local_pizza_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5.51 6.36L12 17.92l6.49-11.55C16.68 4.85 14.38 4 12 4s-4.68.85-6.49 2.36zM9 8.5c-.83 0-1.5-.67-1.5-1.5S8.17 5.5 9 5.5s1.5.67 1.5 1.5S9.82 8.5 9 8.5zm4.5 4.5c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 2C8.43 2 5.23 3.54 3.01 6L12 22l8.99-16C18.78 3.55 15.57 2 12 2zm0 15.92L5.51 6.36C7.32 4.85 9.62 4 12 4s4.68.85 6.49 2.36L12 17.92zM9 5.5c-.83 0-1.5.67-1.5 1.5S8.17 8.5 9 8.5s1.5-.67 1.5-1.5S9.82 5.5 9 5.5zm1.5 7.5c0 .83.67 1.5 1.5 1.5.82 0 1.5-.67 1.5-1.5s-.68-1.5-1.5-1.5-1.5.67-1.5 1.5z"},"children":[]}]};exports.ic_local_pizza_twotone=ic_local_pizza_twotone;var ic_local_play={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 12c0-1.1.9-2 2-2V6c0-1.1-.9-2-2-2H4c-1.1 0-1.99.9-1.99 2v4c1.1 0 1.99.9 1.99 2s-.89 2-2 2v4c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-4c-1.1 0-2-.9-2-2zm-4.42 4.8L12 14.5l-3.58 2.3 1.08-4.12-3.29-2.69 4.24-.25L12 5.8l1.54 3.95 4.24.25-3.29 2.69 1.09 4.11z"},"children":[]}]};exports.ic_local_play=ic_local_play;var ic_local_play_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 10V6c0-1.1-.9-2-2-2H4c-1.1 0-1.99.9-1.99 2v4c1.1 0 1.99.9 1.99 2s-.89 2-2 2v4c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-4c-1.1 0-2-.9-2-2s.9-2 2-2zm-2-1.46c-1.19.69-2 1.99-2 3.46s.81 2.77 2 3.46V18H4v-2.54c1.19-.69 2-1.99 2-3.46 0-1.48-.8-2.77-1.99-3.46L4 6h16v2.54zM9.07 16L12 14.12 14.93 16l-.89-3.36 2.69-2.2-3.47-.21L12 7l-1.27 3.22-3.47.21 2.69 2.2z"},"children":[]}]};exports.ic_local_play_outline=ic_local_play_outline;var ic_local_play_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4.01 8.54C5.2 9.23 6 10.52 6 12s-.81 2.77-2 3.46V18h16v-2.54c-1.19-.69-2-1.99-2-3.46s.81-2.77 2-3.46V6H4l.01 2.54zm6.72 1.68L12 7l1.26 3.23 3.47.2-2.69 2.2.89 3.37L12 14.12 9.07 16l.88-3.37-2.69-2.2 3.47-.21z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 4H4c-1.1 0-1.99.9-1.99 2v4c1.1 0 1.99.9 1.99 2s-.89 2-2 2v4c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-4c-1.1 0-2-.9-2-2s.9-2 2-2V6c0-1.1-.9-2-2-2zm0 4.54c-1.19.69-2 1.99-2 3.46s.81 2.77 2 3.46V18H4v-2.54c1.19-.69 2-1.99 2-3.46 0-1.48-.8-2.77-1.99-3.46L4 6h16v2.54zM9.07 16L12 14.12 14.93 16l-.89-3.36 2.69-2.2-3.47-.21L12 7l-1.27 3.22-3.47.21 2.69 2.2z"},"children":[]}]};exports.ic_local_play_twotone=ic_local_play_twotone;var ic_local_police={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M12,1L3,5v6c0,5.55,3.84,10.74,9,12c5.16-1.26,9-6.45,9-12V5L12,1z M14.5,12.59l0.9,3.88L12,14.42l-3.4,2.05l0.9-3.87 l-3-2.59l3.96-0.34L12,6.02l1.54,3.64L17.5,10L14.5,12.59z"},"children":[]}]};exports.ic_local_police=ic_local_police;var ic_local_police_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M14.5,12.59l0.9,3.88L12,14.42l-3.4,2.05l0.9-3.87l-3-2.59l3.96-0.34L12,6.02l1.54,3.64L17.5,10L14.5,12.59z M12,3.19 l7,3.11V11c0,4.52-2.98,8.69-7,9.93C7.98,19.69,5,15.52,5,11V6.3L12,3.19 M12,1L3,5v6c0,5.55,3.84,10.74,9,12c5.16-1.26,9-6.45,9-12 V5L12,1L12,1z"},"children":[]}]};exports.ic_local_police_outline=ic_local_police_outline;var ic_local_police_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M12,3.19L5,6.3V11c0,4.52,2.98,8.69,7,9.93c4.02-1.23,7-5.41,7-9.93V6.3L12,3.19z M14.5,12.59l0.9,3.88 L12,14.42l-3.4,2.05l0.9-3.87l-3-2.59l3.96-0.34L12,6.02l1.54,3.64L17.5,10L14.5,12.59z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M14.5,12.59l0.9,3.88L12,14.42l-3.4,2.05l0.9-3.87l-3-2.59l3.96-0.34L12,6.02l1.54,3.64L17.5,10L14.5,12.59z M12,3.19 l7,3.11V11c0,4.52-2.98,8.69-7,9.93C7.98,19.69,5,15.52,5,11V6.3L12,3.19 M12,1L3,5v6c0,5.55,3.84,10.74,9,12c5.16-1.26,9-6.45,9-12 V5L12,1L12,1z"},"children":[]}]};exports.ic_local_police_twotone=ic_local_police_twotone;var ic_local_post_office={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z"},"children":[]}]};exports.ic_local_post_office=ic_local_post_office;var ic_local_post_office_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6zm-2 0l-8 5-8-5h16zm0 12H4V8l8 5 8-5v10z"},"children":[]}]};exports.ic_local_post_office_outline=ic_local_post_office_outline;var ic_local_post_office_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 11l8-5H4zM4 8v10h16V8l-8 5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V8l8 5 8-5v10zm-8-7L4 6h16l-8 5z"},"children":[]}]};exports.ic_local_post_office_twotone=ic_local_post_office_twotone;var ic_local_printshop={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 8H5c-1.66 0-3 1.34-3 3v6h4v4h12v-4h4v-6c0-1.66-1.34-3-3-3zm-3 11H8v-5h8v5zm3-7c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-1-9H6v4h12V3z"},"children":[]}]};exports.ic_local_printshop=ic_local_printshop;var ic_local_printshop_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 8h-1V3H6v5H5c-1.66 0-3 1.34-3 3v6h4v4h12v-4h4v-6c0-1.66-1.34-3-3-3zM8 5h8v3H8V5zm8 14H8v-4h8v4zm2-4v-2H6v2H4v-4c0-.55.45-1 1-1h14c.55 0 1 .45 1 1v4h-2z"},"children":[]},{"name":"circle","attribs":{"cx":"18","cy":"11.5","r":"1"},"children":[]}]};exports.ic_local_printshop_outline=ic_local_printshop_outline;var ic_local_printshop_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8 5h8v3H8zm11 5H5c-.55 0-1 .45-1 1v4h2v-2h12v2h2v-4c0-.55-.45-1-1-1zm-1 2.5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M19 8h-1V3H6v5H5c-1.66 0-3 1.34-3 3v6h4v4h12v-4h4v-6c0-1.66-1.34-3-3-3zM8 5h8v3H8V5zm8 14H8v-4h8v4zm4-4h-2v-2H6v2H4v-4c0-.55.45-1 1-1h14c.55 0 1 .45 1 1v4z"},"children":[]},{"name":"circle","attribs":{"cx":"18","cy":"11.5","r":"1"},"children":[]}]};exports.ic_local_printshop_twotone=ic_local_printshop_twotone;var ic_local_see={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"12","cy":"12","r":"3.2"},"children":[]},{"name":"path","attribs":{"d":"M9 2L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2h-3.17L15 2H9zm3 15c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z"},"children":[]}]};exports.ic_local_see=ic_local_see;var ic_local_see_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 4h-3.17L15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h4.05l.59-.65L9.88 4h4.24l1.24 1.35.59.65H20v12zM12 7c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8.2c-1.77 0-3.2-1.43-3.2-3.2 0-1.77 1.43-3.2 3.2-3.2s3.2 1.43 3.2 3.2c0 1.77-1.43 3.2-3.2 3.2z"},"children":[]}]};exports.ic_local_see_outline=ic_local_see_outline;var ic_local_see_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 6h-4.05l-.59-.65L14.12 4H9.88L8.65 5.35l-.6.65H4v12h16V6zm-8 11c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M4 20h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2h-3.17L15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2zM4 6h4.05l.59-.65L9.88 4h4.24l1.24 1.35.59.65H20v12H4V6zm8 1c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8.2c-1.77 0-3.2-1.43-3.2-3.2 0-1.77 1.43-3.2 3.2-3.2s3.2 1.43 3.2 3.2c0 1.77-1.43 3.2-3.2 3.2z"},"children":[]}]};exports.ic_local_see_twotone=ic_local_see_twotone;var ic_local_shipping={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 8h-3V4H3c-1.1 0-2 .9-2 2v11h2c0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5l-3-4zM6 18.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm13.5-9l1.96 2.5H17V9.5h2.5zm-1.5 9c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z"},"children":[]}]};exports.ic_local_shipping=ic_local_shipping;var ic_local_shipping_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 8h-3V4H3c-1.1 0-2 .9-2 2v11h2c0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5l-3-4zm-.5 1.5l1.96 2.5H17V9.5h2.5zM6 18c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2.22-3c-.55-.61-1.33-1-2.22-1s-1.67.39-2.22 1H3V6h12v9H8.22zM18 18c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z"},"children":[]}]};exports.ic_local_shipping_outline=ic_local_shipping_outline;var ic_local_shipping_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 15h.78c.55-.61 1.34-1 2.22-1s1.67.39 2.22 1H15V6H3v9z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M17 8V4H3c-1.1 0-2 .9-2 2v11h2c0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5l-3-4h-3zM6 18c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm9-3H8.22c-.55-.61-1.33-1-2.22-1s-1.67.39-2.22 1H3V6h12v9zm3 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-1-6V9.5h2.5l1.96 2.5H17z"},"children":[]}]};exports.ic_local_shipping_twotone=ic_local_shipping_twotone;var ic_local_taxi={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18.92 6.01C18.72 5.42 18.16 5 17.5 5H15V3H9v2H6.5c-.66 0-1.21.42-1.42 1.01L3 12v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.5 16c-.83 0-1.5-.67-1.5-1.5S5.67 13 6.5 13s1.5.67 1.5 1.5S7.33 16 6.5 16zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 11l1.5-4.5h11L19 11H5z"},"children":[]}]};exports.ic_local_taxi=ic_local_taxi;var ic_local_taxi_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18.92 6.01C18.72 5.42 18.16 5 17.5 5H15V3H9v2H6.5c-.66 0-1.21.42-1.42 1.01L3 12v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.85 7h10.29l1.04 3H5.81l1.04-3zM19 17H5v-4.66l.12-.34h13.77l.11.34V17z"},"children":[]},{"name":"circle","attribs":{"cx":"7.5","cy":"14.5","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"16.5","cy":"14.5","r":"1.5"},"children":[]}]};exports.ic_local_taxi_outline=ic_local_taxi_outline;var ic_local_taxi_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5.12 12l-.12.34V17h14v-4.66l-.12-.34H5.12zm2.38 4c-.83 0-1.5-.67-1.5-1.5S6.67 13 7.5 13s1.5.67 1.5 1.5S8.33 16 7.5 16zm9 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M17.5 5H15V3H9v2H6.5c-.66 0-1.21.42-1.42 1.01L3 12v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99C18.72 5.42 18.16 5 17.5 5zM6.85 7h10.29l1.04 3H5.81l1.04-3zM19 17H5v-4.66l.12-.34h13.77l.11.34V17z"},"children":[]},{"name":"circle","attribs":{"cx":"7.5","cy":"14.5","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"16.5","cy":"14.5","r":"1.5"},"children":[]}]};exports.ic_local_taxi_twotone=ic_local_taxi_twotone;var ic_location_pin={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M12,2L12,2C8.13,2,5,5.13,5,9c0,1.74,0.5,3.37,1.41,4.84c0.95,1.54,2.2,2.86,3.16,4.4c0.47,0.75,0.81,1.45,1.17,2.26 C11,21.05,11.21,22,12,22h0c0.79,0,1-0.95,1.25-1.5c0.37-0.81,0.7-1.51,1.17-2.26c0.96-1.53,2.21-2.85,3.16-4.4 C18.5,12.37,19,10.74,19,9C19,5.13,15.87,2,12,2z M12,11.75c-1.38,0-2.5-1.12-2.5-2.5s1.12-2.5,2.5-2.5s2.5,1.12,2.5,2.5 S13.38,11.75,12,11.75z"},"children":[]}]};exports.ic_location_pin=ic_location_pin;var ic_lunch_dining={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M22,10c0.32-3.28-4.28-6-9.99-6C6.3,4,1.7,6.72,2.02,10H22z","fill-rule":"evenodd"},"children":[{"name":"path","attribs":{"d":"M22,10c0.32-3.28-4.28-6-9.99-6C6.3,4,1.7,6.72,2.02,10H22z","fill-rule":"evenodd"},"children":[]}]},{"name":"path","attribs":{"d":"M5.35,13.5c0.55,0,0.78,0.14,1.15,0.36c0.45,0.27,1.07,0.64,2.18,0.64 s1.73-0.37,2.18-0.64c0.37-0.23,0.59-0.36,1.15-0.36c0.55,0,0.78,0.14,1.15,0.36c0.45,0.27,1.07,0.64,2.18,0.64 c1.11,0,1.73-0.37,2.18-0.64c0.37-0.23,0.59-0.36,1.15-0.36c0.55,0,0.78,0.14,1.15,0.36c0.45,0.27,1.07,0.63,2.17,0.64v-1.98 c0,0-0.79-0.16-1.16-0.38c-0.45-0.27-1.07-0.64-2.18-0.64c-1.11,0-1.73,0.37-2.18,0.64c-0.37,0.23-0.6,0.36-1.15,0.36 s-0.78-0.14-1.15-0.36c-0.45-0.27-1.07-0.64-2.18-0.64s-1.73,0.37-2.18,0.64c-0.37,0.23-0.59,0.36-1.15,0.36 c-0.55,0-0.78-0.14-1.15-0.36c-0.45-0.27-1.07-0.64-2.18-0.64c-1.11,0-1.73,0.37-2.18,0.64C2.78,12.37,2.56,12.5,2,12.5v2 c1.11,0,1.73-0.37,2.21-0.64C4.58,13.63,4.8,13.5,5.35,13.5z","fill-rule":"evenodd"},"children":[{"name":"path","attribs":{"d":"M5.35,13.5c0.55,0,0.78,0.14,1.15,0.36c0.45,0.27,1.07,0.64,2.18,0.64 s1.73-0.37,2.18-0.64c0.37-0.23,0.59-0.36,1.15-0.36c0.55,0,0.78,0.14,1.15,0.36c0.45,0.27,1.07,0.64,2.18,0.64 c1.11,0,1.73-0.37,2.18-0.64c0.37-0.23,0.59-0.36,1.15-0.36c0.55,0,0.78,0.14,1.15,0.36c0.45,0.27,1.07,0.63,2.17,0.64v-1.98 c0,0-0.79-0.16-1.16-0.38c-0.45-0.27-1.07-0.64-2.18-0.64c-1.11,0-1.73,0.37-2.18,0.64c-0.37,0.23-0.6,0.36-1.15,0.36 s-0.78-0.14-1.15-0.36c-0.45-0.27-1.07-0.64-2.18-0.64s-1.73,0.37-2.18,0.64c-0.37,0.23-0.59,0.36-1.15,0.36 c-0.55,0-0.78-0.14-1.15-0.36c-0.45-0.27-1.07-0.64-2.18-0.64c-1.11,0-1.73,0.37-2.18,0.64C2.78,12.37,2.56,12.5,2,12.5v2 c1.11,0,1.73-0.37,2.21-0.64C4.58,13.63,4.8,13.5,5.35,13.5z","fill-rule":"evenodd"},"children":[]}]},{"name":"path","attribs":{"d":"M2,16v2c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2v-2H2z","fill-rule":"evenodd"},"children":[{"name":"path","attribs":{"d":"M2,16v2c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2v-2H2z","fill-rule":"evenodd"},"children":[]}]}]}]}]}]};exports.ic_lunch_dining=ic_lunch_dining;var ic_map={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20.5 3l-.16.03L15 5.1 9 3 3.36 4.9c-.21.07-.36.25-.36.48V20.5c0 .28.22.5.5.5l.16-.03L9 18.9l6 2.1 5.64-1.9c.21-.07.36-.25.36-.48V3.5c0-.28-.22-.5-.5-.5zM15 19l-6-2.11V5l6 2.11V19z"},"children":[]}]};exports.ic_map=ic_map;var ic_map_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20.5 3l-.16.03L15 5.1 9 3 3.36 4.9c-.21.07-.36.25-.36.48V20.5c0 .28.22.5.5.5l.16-.03L9 18.9l6 2.1 5.64-1.9c.21-.07.36-.25.36-.48V3.5c0-.28-.22-.5-.5-.5zM10 5.47l4 1.4v11.66l-4-1.4V5.47zm-5 .99l3-1.01v11.7l-3 1.16V6.46zm14 11.08l-3 1.01V6.86l3-1.16v11.84z"},"children":[]}]};exports.ic_map_outline=ic_map_outline;var ic_map_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 18.31l3-1.16V5.45L5 6.46zm11 .24l3-1.01V5.69l-3 1.17z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20.5 3l-.16.03L15 5.1 9 3 3.36 4.9c-.21.07-.36.25-.36.48V20.5c0 .28.22.5.5.5l.16-.03L9 18.9l6 2.1 5.64-1.9c.21-.07.36-.25.36-.48V3.5c0-.28-.22-.5-.5-.5zM8 17.15l-3 1.16V6.46l3-1.01v11.7zm6 1.38l-4-1.4V5.47l4 1.4v11.66zm5-.99l-3 1.01V6.86l3-1.16v11.84z"},"children":[]}]};exports.ic_map_twotone=ic_map_twotone;var ic_maps_ugc={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","fill-rule":"evenodd","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M12,2C6.48,2,2,6.48,2,12c0,1.54,0.36,2.98,0.97,4.29L1,23l6.71-1.97 C9.02,21.64,10.46,22,12,22c5.52,0,10-4.48,10-10C22,6.48,17.52,2,12,2z M16,13h-3v3h-2v-3H8v-2h3V8h2v3h3V13z","fill-rule":"evenodd"},"children":[]}]};exports.ic_maps_ugc=ic_maps_ugc;var ic_maps_ugc_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","fill-rule":"evenodd","height":"24","width":"24"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8c-1.18,0-2.34-0.26-3.43-0.78c-0.27-0.13-0.56-0.19-0.86-0.19 c-0.19,0-0.38,0.03-0.56,0.08l-3.2,0.94l0.94-3.2c0.14-0.47,0.1-0.98-0.11-1.42C4.26,14.34,4,13.18,4,12C4,7.59,7.59,4,12,4 M12,2 C6.48,2,2,6.48,2,12c0,1.54,0.36,2.98,0.97,4.29L1,23l6.71-1.97C9.02,21.64,10.46,22,12,22c5.52,0,10-4.48,10-10 C22,6.48,17.52,2,12,2L12,2z"},"children":[{"name":"path","attribs":{"d":"M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8c-1.18,0-2.34-0.26-3.43-0.78c-0.27-0.13-0.56-0.19-0.86-0.19 c-0.19,0-0.38,0.03-0.56,0.08l-3.2,0.94l0.94-3.2c0.14-0.47,0.1-0.98-0.11-1.42C4.26,14.34,4,13.18,4,12C4,7.59,7.59,4,12,4 M12,2 C6.48,2,2,6.48,2,12c0,1.54,0.36,2.98,0.97,4.29L1,23l6.71-1.97C9.02,21.64,10.46,22,12,22c5.52,0,10-4.48,10-10 C22,6.48,17.52,2,12,2L12,2z"},"children":[]}]}]},{"name":"polygon","attribs":{"fill-rule":"evenodd","points":"13,8 11,8 11,11 8,11 8,13 11,13 11,16 13,16 13,13 16,13 16,11 13,11"},"children":[]}]};exports.ic_maps_ugc_outline=ic_maps_ugc_outline;var ic_maps_ugc_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","fill-rule":"evenodd","height":"24","width":"24","y":"0"},"children":[]},{"name":"path","attribs":{"d":"M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8c-1.18,0-2.34-0.26-3.43-0.78c-0.27-0.13-0.56-0.19-0.86-0.19 c-0.19,0-0.38,0.03-0.56,0.08l-3.2,0.94l0.94-3.2c0.14-0.47,0.1-0.98-0.11-1.42C4.26,14.34,4,13.18,4,12C4,7.59,7.59,4,12,4","fill-opacity":".3"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8c-1.18,0-2.34-0.26-3.43-0.78c-0.27-0.13-0.56-0.19-0.86-0.19 c-0.19,0-0.38,0.03-0.56,0.08l-3.2,0.94l0.94-3.2c0.14-0.47,0.1-0.98-0.11-1.42C4.26,14.34,4,13.18,4,12C4,7.59,7.59,4,12,4 M12,2 C6.48,2,2,6.48,2,12c0,1.54,0.36,2.98,0.97,4.29L1,23l6.71-1.97C9.02,21.64,10.46,22,12,22c5.52,0,10-4.48,10-10 C22,6.48,17.52,2,12,2L12,2z"},"children":[{"name":"path","attribs":{"d":"M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8c-1.18,0-2.34-0.26-3.43-0.78c-0.27-0.13-0.56-0.19-0.86-0.19 c-0.19,0-0.38,0.03-0.56,0.08l-3.2,0.94l0.94-3.2c0.14-0.47,0.1-0.98-0.11-1.42C4.26,14.34,4,13.18,4,12C4,7.59,7.59,4,12,4 M12,2 C6.48,2,2,6.48,2,12c0,1.54,0.36,2.98,0.97,4.29L1,23l6.71-1.97C9.02,21.64,10.46,22,12,22c5.52,0,10-4.48,10-10 C22,6.48,17.52,2,12,2L12,2z"},"children":[]}]}]},{"name":"polygon","attribs":{"fill-rule":"evenodd","points":"13,8 11,8 11,11 8,11 8,13 11,13 11,16 13,16 13,13 16,13 16,11 13,11"},"children":[]}]};exports.ic_maps_ugc_twotone=ic_maps_ugc_twotone;var ic_medical_services={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M20,6h-4V4c0-1.1-0.9-2-2-2h-4C8.9,2,8,2.9,8,4v2H4C2.9,6,2,6.9,2,8v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8 C22,6.9,21.1,6,20,6z M10,4h4v2h-4V4z M16,15h-3v3h-2v-3H8v-2h3v-3h2v3h3V15z"},"children":[{"name":"path","attribs":{"d":"M20,6h-4V4c0-1.1-0.9-2-2-2h-4C8.9,2,8,2.9,8,4v2H4C2.9,6,2,6.9,2,8v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8 C22,6.9,21.1,6,20,6z M10,4h4v2h-4V4z M16,15h-3v3h-2v-3H8v-2h3v-3h2v3h3V15z"},"children":[]}]}]}]}]}]};exports.ic_medical_services=ic_medical_services;var ic_medical_services_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M20,6h-4V4c0-1.1-0.9-2-2-2h-4C8.9,2,8,2.9,8,4v2H4C2.9,6,2,6.9,2,8v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8 C22,6.9,21.1,6,20,6z M10,4h4v2h-4V4z M20,20H4V8h16V20z"},"children":[{"name":"path","attribs":{"d":"M20,6h-4V4c0-1.1-0.9-2-2-2h-4C8.9,2,8,2.9,8,4v2H4C2.9,6,2,6.9,2,8v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8 C22,6.9,21.1,6,20,6z M10,4h4v2h-4V4z M20,20H4V8h16V20z"},"children":[]}]},{"name":"polygon","attribs":{"points":"13,10 11,10 11,13 8,13 8,15 11,15 11,18 13,18 13,15 16,15 16,13 13,13"},"children":[{"name":"polygon","attribs":{"points":"13,10 11,10 11,13 8,13 8,15 11,15 11,18 13,18 13,15 16,15 16,13 13,13"},"children":[]}]}]}]}]}]};exports.ic_medical_services_outline=ic_medical_services_outline;var ic_medical_services_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{"opacity":".3"},"children":[{"name":"g","attribs":{"opacity":".3"},"children":[{"name":"path","attribs":{"d":"M4,20h16V8H4V20z M8,13h3v-3h2v3h3v2h-3v3h-2v-3H8V13z"},"children":[{"name":"path","attribs":{"d":"M4,20h16V8H4V20z M8,13h3v-3h2v3h3v2h-3v3h-2v-3H8V13z"},"children":[]}]}]}]},{"name":"path","attribs":{"d":"M20,6h-4V4c0-1.1-0.9-2-2-2h-4C8.9,2,8,2.9,8,4v2H4C2.9,6,2,6.9,2,8v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8 C22,6.9,21.1,6,20,6z M10,4h4v2h-4V4z M20,20H4V8h16V20z"},"children":[{"name":"path","attribs":{"d":"M20,6h-4V4c0-1.1-0.9-2-2-2h-4C8.9,2,8,2.9,8,4v2H4C2.9,6,2,6.9,2,8v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8 C22,6.9,21.1,6,20,6z M10,4h4v2h-4V4z M20,20H4V8h16V20z"},"children":[]}]},{"name":"polygon","attribs":{"points":"11,18 13,18 13,15 16,15 16,13 13,13 13,10 11,10 11,13 8,13 8,15 11,15"},"children":[{"name":"polygon","attribs":{"points":"11,18 13,18 13,15 16,15 16,13 13,13 13,10 11,10 11,13 8,13 8,15 11,15"},"children":[]}]}]}]}]}]};exports.ic_medical_services_twotone=ic_medical_services_twotone;var ic_menu_book={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M21,5c-1.11-0.35-2.33-0.5-3.5-0.5c-1.95,0-4.05,0.4-5.5,1.5c-1.45-1.1-3.55-1.5-5.5-1.5S2.45,4.9,1,6v14.65 c0,0.25,0.25,0.5,0.5,0.5c0.1,0,0.15-0.05,0.25-0.05C3.1,20.45,5.05,20,6.5,20c1.95,0,4.05,0.4,5.5,1.5c1.35-0.85,3.8-1.5,5.5-1.5 c1.65,0,3.35,0.3,4.75,1.05c0.1,0.05,0.15,0.05,0.25,0.05c0.25,0,0.5-0.25,0.5-0.5V6C22.4,5.55,21.75,5.25,21,5z M21,18.5 c-1.1-0.35-2.3-0.5-3.5-0.5c-1.7,0-4.15,0.65-5.5,1.5V8c1.35-0.85,3.8-1.5,5.5-1.5c1.2,0,2.4,0.15,3.5,0.5V18.5z"},"children":[{"name":"path","attribs":{"d":"M21,5c-1.11-0.35-2.33-0.5-3.5-0.5c-1.95,0-4.05,0.4-5.5,1.5c-1.45-1.1-3.55-1.5-5.5-1.5S2.45,4.9,1,6v14.65 c0,0.25,0.25,0.5,0.5,0.5c0.1,0,0.15-0.05,0.25-0.05C3.1,20.45,5.05,20,6.5,20c1.95,0,4.05,0.4,5.5,1.5c1.35-0.85,3.8-1.5,5.5-1.5 c1.65,0,3.35,0.3,4.75,1.05c0.1,0.05,0.15,0.05,0.25,0.05c0.25,0,0.5-0.25,0.5-0.5V6C22.4,5.55,21.75,5.25,21,5z M21,18.5 c-1.1-0.35-2.3-0.5-3.5-0.5c-1.7,0-4.15,0.65-5.5,1.5V8c1.35-0.85,3.8-1.5,5.5-1.5c1.2,0,2.4,0.15,3.5,0.5V18.5z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M17.5,10.5c0.88,0,1.73,0.09,2.5,0.26V9.24C19.21,9.09,18.36,9,17.5,9c-1.7,0-3.24,0.29-4.5,0.83v1.66 C14.13,10.85,15.7,10.5,17.5,10.5z"},"children":[{"name":"path","attribs":{"d":"M17.5,10.5c0.88,0,1.73,0.09,2.5,0.26V9.24C19.21,9.09,18.36,9,17.5,9c-1.7,0-3.24,0.29-4.5,0.83v1.66 C14.13,10.85,15.7,10.5,17.5,10.5z"},"children":[]}]},{"name":"path","attribs":{"d":"M13,12.49v1.66c1.13-0.64,2.7-0.99,4.5-0.99c0.88,0,1.73,0.09,2.5,0.26V11.9c-0.79-0.15-1.64-0.24-2.5-0.24 C15.8,11.66,14.26,11.96,13,12.49z"},"children":[{"name":"path","attribs":{"d":"M13,12.49v1.66c1.13-0.64,2.7-0.99,4.5-0.99c0.88,0,1.73,0.09,2.5,0.26V11.9c-0.79-0.15-1.64-0.24-2.5-0.24 C15.8,11.66,14.26,11.96,13,12.49z"},"children":[]}]},{"name":"path","attribs":{"d":"M17.5,14.33c-1.7,0-3.24,0.29-4.5,0.83v1.66c1.13-0.64,2.7-0.99,4.5-0.99c0.88,0,1.73,0.09,2.5,0.26v-1.52 C19.21,14.41,18.36,14.33,17.5,14.33z"},"children":[{"name":"path","attribs":{"d":"M17.5,14.33c-1.7,0-3.24,0.29-4.5,0.83v1.66c1.13-0.64,2.7-0.99,4.5-0.99c0.88,0,1.73,0.09,2.5,0.26v-1.52 C19.21,14.41,18.36,14.33,17.5,14.33z"},"children":[]}]}]}]}]}]}]}]};exports.ic_menu_book=ic_menu_book;var ic_menu_book_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M21,5c-1.11-0.35-2.33-0.5-3.5-0.5c-1.95,0-4.05,0.4-5.5,1.5c-1.45-1.1-3.55-1.5-5.5-1.5S2.45,4.9,1,6v14.65 c0,0.25,0.25,0.5,0.5,0.5c0.1,0,0.15-0.05,0.25-0.05C3.1,20.45,5.05,20,6.5,20c1.95,0,4.05,0.4,5.5,1.5c1.35-0.85,3.8-1.5,5.5-1.5 c1.65,0,3.35,0.3,4.75,1.05c0.1,0.05,0.15,0.05,0.25,0.05c0.25,0,0.5-0.25,0.5-0.5V6C22.4,5.55,21.75,5.25,21,5z M21,18.5 c-1.1-0.35-2.3-0.5-3.5-0.5c-1.7,0-4.15,0.65-5.5,1.5V8c1.35-0.85,3.8-1.5,5.5-1.5c1.2,0,2.4,0.15,3.5,0.5V18.5z"},"children":[{"name":"path","attribs":{"d":"M21,5c-1.11-0.35-2.33-0.5-3.5-0.5c-1.95,0-4.05,0.4-5.5,1.5c-1.45-1.1-3.55-1.5-5.5-1.5S2.45,4.9,1,6v14.65 c0,0.25,0.25,0.5,0.5,0.5c0.1,0,0.15-0.05,0.25-0.05C3.1,20.45,5.05,20,6.5,20c1.95,0,4.05,0.4,5.5,1.5c1.35-0.85,3.8-1.5,5.5-1.5 c1.65,0,3.35,0.3,4.75,1.05c0.1,0.05,0.15,0.05,0.25,0.05c0.25,0,0.5-0.25,0.5-0.5V6C22.4,5.55,21.75,5.25,21,5z M21,18.5 c-1.1-0.35-2.3-0.5-3.5-0.5c-1.7,0-4.15,0.65-5.5,1.5V8c1.35-0.85,3.8-1.5,5.5-1.5c1.2,0,2.4,0.15,3.5,0.5V18.5z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M17.5,10.5c0.88,0,1.73,0.09,2.5,0.26V9.24C19.21,9.09,18.36,9,17.5,9c-1.7,0-3.24,0.29-4.5,0.83v1.66 C14.13,10.85,15.7,10.5,17.5,10.5z"},"children":[{"name":"path","attribs":{"d":"M17.5,10.5c0.88,0,1.73,0.09,2.5,0.26V9.24C19.21,9.09,18.36,9,17.5,9c-1.7,0-3.24,0.29-4.5,0.83v1.66 C14.13,10.85,15.7,10.5,17.5,10.5z"},"children":[]}]},{"name":"path","attribs":{"d":"M13,12.49v1.66c1.13-0.64,2.7-0.99,4.5-0.99c0.88,0,1.73,0.09,2.5,0.26V11.9c-0.79-0.15-1.64-0.24-2.5-0.24 C15.8,11.66,14.26,11.96,13,12.49z"},"children":[{"name":"path","attribs":{"d":"M13,12.49v1.66c1.13-0.64,2.7-0.99,4.5-0.99c0.88,0,1.73,0.09,2.5,0.26V11.9c-0.79-0.15-1.64-0.24-2.5-0.24 C15.8,11.66,14.26,11.96,13,12.49z"},"children":[]}]},{"name":"path","attribs":{"d":"M17.5,14.33c-1.7,0-3.24,0.29-4.5,0.83v1.66c1.13-0.64,2.7-0.99,4.5-0.99c0.88,0,1.73,0.09,2.5,0.26v-1.52 C19.21,14.41,18.36,14.33,17.5,14.33z"},"children":[{"name":"path","attribs":{"d":"M17.5,14.33c-1.7,0-3.24,0.29-4.5,0.83v1.66c1.13-0.64,2.7-0.99,4.5-0.99c0.88,0,1.73,0.09,2.5,0.26v-1.52 C19.21,14.41,18.36,14.33,17.5,14.33z"},"children":[]}]}]}]}]}]}]}]};exports.ic_menu_book_outline=ic_menu_book_outline;var ic_menu_book_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M21,5c-1.11-0.35-2.33-0.5-3.5-0.5c-1.95,0-4.05,0.4-5.5,1.5c-1.45-1.1-3.55-1.5-5.5-1.5S2.45,4.9,1,6v14.65 c0,0.25,0.25,0.5,0.5,0.5c0.1,0,0.15-0.05,0.25-0.05C3.1,20.45,5.05,20,6.5,20c1.95,0,4.05,0.4,5.5,1.5c1.35-0.85,3.8-1.5,5.5-1.5 c1.65,0,3.35,0.3,4.75,1.05c0.1,0.05,0.15,0.05,0.25,0.05c0.25,0,0.5-0.25,0.5-0.5V6C22.4,5.55,21.75,5.25,21,5z M3,18.5V7 c1.1-0.35,2.3-0.5,3.5-0.5c1.34,0,3.13,0.41,4.5,0.99v11.5C9.63,18.41,7.84,18,6.5,18C5.3,18,4.1,18.15,3,18.5z M21,18.5 c-1.1-0.35-2.3-0.5-3.5-0.5c-1.34,0-3.13,0.41-4.5,0.99V7.49c1.37-0.59,3.16-0.99,4.5-0.99c1.2,0,2.4,0.15,3.5,0.5V18.5z"},"children":[{"name":"path","attribs":{"d":"M21,5c-1.11-0.35-2.33-0.5-3.5-0.5c-1.95,0-4.05,0.4-5.5,1.5c-1.45-1.1-3.55-1.5-5.5-1.5S2.45,4.9,1,6v14.65 c0,0.25,0.25,0.5,0.5,0.5c0.1,0,0.15-0.05,0.25-0.05C3.1,20.45,5.05,20,6.5,20c1.95,0,4.05,0.4,5.5,1.5c1.35-0.85,3.8-1.5,5.5-1.5 c1.65,0,3.35,0.3,4.75,1.05c0.1,0.05,0.15,0.05,0.25,0.05c0.25,0,0.5-0.25,0.5-0.5V6C22.4,5.55,21.75,5.25,21,5z M3,18.5V7 c1.1-0.35,2.3-0.5,3.5-0.5c1.34,0,3.13,0.41,4.5,0.99v11.5C9.63,18.41,7.84,18,6.5,18C5.3,18,4.1,18.15,3,18.5z M21,18.5 c-1.1-0.35-2.3-0.5-3.5-0.5c-1.34,0-3.13,0.41-4.5,0.99V7.49c1.37-0.59,3.16-0.99,4.5-0.99c1.2,0,2.4,0.15,3.5,0.5V18.5z"},"children":[]}]},{"name":"path","attribs":{"d":"M11,7.49C9.63,6.91,7.84,6.5,6.5,6.5C5.3,6.5,4.1,6.65,3,7v11.5C4.1,18.15,5.3,18,6.5,18 c1.34,0,3.13,0.41,4.5,0.99V7.49z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M11,7.49C9.63,6.91,7.84,6.5,6.5,6.5C5.3,6.5,4.1,6.65,3,7v11.5C4.1,18.15,5.3,18,6.5,18 c1.34,0,3.13,0.41,4.5,0.99V7.49z","opacity":".3"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M17.5,10.5c0.88,0,1.73,0.09,2.5,0.26V9.24C19.21,9.09,18.36,9,17.5,9c-1.28,0-2.46,0.16-3.5,0.47v1.57 C14.99,10.69,16.18,10.5,17.5,10.5z"},"children":[{"name":"path","attribs":{"d":"M17.5,10.5c0.88,0,1.73,0.09,2.5,0.26V9.24C19.21,9.09,18.36,9,17.5,9c-1.28,0-2.46,0.16-3.5,0.47v1.57 C14.99,10.69,16.18,10.5,17.5,10.5z"},"children":[]}]},{"name":"path","attribs":{"d":"M17.5,13.16c0.88,0,1.73,0.09,2.5,0.26V11.9c-0.79-0.15-1.64-0.24-2.5-0.24c-1.28,0-2.46,0.16-3.5,0.47v1.57 C14.99,13.36,16.18,13.16,17.5,13.16z"},"children":[{"name":"path","attribs":{"d":"M17.5,13.16c0.88,0,1.73,0.09,2.5,0.26V11.9c-0.79-0.15-1.64-0.24-2.5-0.24c-1.28,0-2.46,0.16-3.5,0.47v1.57 C14.99,13.36,16.18,13.16,17.5,13.16z"},"children":[]}]},{"name":"path","attribs":{"d":"M17.5,15.83c0.88,0,1.73,0.09,2.5,0.26v-1.52c-0.79-0.15-1.64-0.24-2.5-0.24c-1.28,0-2.46,0.16-3.5,0.47v1.57 C14.99,16.02,16.18,15.83,17.5,15.83z"},"children":[{"name":"path","attribs":{"d":"M17.5,15.83c0.88,0,1.73,0.09,2.5,0.26v-1.52c-0.79-0.15-1.64-0.24-2.5-0.24c-1.28,0-2.46,0.16-3.5,0.47v1.57 C14.99,16.02,16.18,15.83,17.5,15.83z"},"children":[]}]}]}]}]}]};exports.ic_menu_book_twotone=ic_menu_book_twotone;var ic_miscellaneous_services={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M14.17,13.71l1.4-2.42c0.09-0.15,0.05-0.34-0.08-0.45l-1.48-1.16c0.03-0.22,0.05-0.45,0.05-0.68s-0.02-0.46-0.05-0.69 l1.48-1.16c0.13-0.11,0.17-0.3,0.08-0.45l-1.4-2.42c-0.09-0.15-0.27-0.21-0.43-0.15L12,4.83c-0.36-0.28-0.75-0.51-1.18-0.69 l-0.26-1.85C10.53,2.13,10.38,2,10.21,2h-2.8C7.24,2,7.09,2.13,7.06,2.3L6.8,4.15C6.38,4.33,5.98,4.56,5.62,4.84l-1.74-0.7 c-0.16-0.06-0.34,0-0.43,0.15l-1.4,2.42C1.96,6.86,2,7.05,2.13,7.16l1.48,1.16C3.58,8.54,3.56,8.77,3.56,9s0.02,0.46,0.05,0.69 l-1.48,1.16C2,10.96,1.96,11.15,2.05,11.3l1.4,2.42c0.09,0.15,0.27,0.21,0.43,0.15l1.74-0.7c0.36,0.28,0.75,0.51,1.18,0.69 l0.26,1.85C7.09,15.87,7.24,16,7.41,16h2.8c0.17,0,0.32-0.13,0.35-0.3l0.26-1.85c0.42-0.18,0.82-0.41,1.18-0.69l1.74,0.7 C13.9,13.92,14.08,13.86,14.17,13.71z M8.81,11c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2C10.81,10.1,9.91,11,8.81,11z"},"children":[{"name":"path","attribs":{"d":"M14.17,13.71l1.4-2.42c0.09-0.15,0.05-0.34-0.08-0.45l-1.48-1.16c0.03-0.22,0.05-0.45,0.05-0.68s-0.02-0.46-0.05-0.69 l1.48-1.16c0.13-0.11,0.17-0.3,0.08-0.45l-1.4-2.42c-0.09-0.15-0.27-0.21-0.43-0.15L12,4.83c-0.36-0.28-0.75-0.51-1.18-0.69 l-0.26-1.85C10.53,2.13,10.38,2,10.21,2h-2.8C7.24,2,7.09,2.13,7.06,2.3L6.8,4.15C6.38,4.33,5.98,4.56,5.62,4.84l-1.74-0.7 c-0.16-0.06-0.34,0-0.43,0.15l-1.4,2.42C1.96,6.86,2,7.05,2.13,7.16l1.48,1.16C3.58,8.54,3.56,8.77,3.56,9s0.02,0.46,0.05,0.69 l-1.48,1.16C2,10.96,1.96,11.15,2.05,11.3l1.4,2.42c0.09,0.15,0.27,0.21,0.43,0.15l1.74-0.7c0.36,0.28,0.75,0.51,1.18,0.69 l0.26,1.85C7.09,15.87,7.24,16,7.41,16h2.8c0.17,0,0.32-0.13,0.35-0.3l0.26-1.85c0.42-0.18,0.82-0.41,1.18-0.69l1.74,0.7 C13.9,13.92,14.08,13.86,14.17,13.71z M8.81,11c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2C10.81,10.1,9.91,11,8.81,11z"},"children":[]}]},{"name":"path","attribs":{"d":"M21.92,18.67l-0.96-0.74c0.02-0.14,0.04-0.29,0.04-0.44c0-0.15-0.01-0.3-0.04-0.44l0.95-0.74 c0.08-0.07,0.11-0.19,0.05-0.29l-0.9-1.55c-0.05-0.1-0.17-0.13-0.28-0.1l-1.11,0.45c-0.23-0.18-0.48-0.33-0.76-0.44l-0.17-1.18 C18.73,13.08,18.63,13,18.53,13h-1.79c-0.11,0-0.21,0.08-0.22,0.19l-0.17,1.18c-0.27,0.12-0.53,0.26-0.76,0.44l-1.11-0.45 c-0.1-0.04-0.22,0-0.28,0.1l-0.9,1.55c-0.05,0.1-0.04,0.22,0.05,0.29l0.95,0.74c-0.02,0.14-0.03,0.29-0.03,0.44 c0,0.15,0.01,0.3,0.03,0.44l-0.95,0.74c-0.08,0.07-0.11,0.19-0.05,0.29l0.9,1.55c0.05,0.1,0.17,0.13,0.28,0.1l1.11-0.45 c0.23,0.18,0.48,0.33,0.76,0.44l0.17,1.18c0.02,0.11,0.11,0.19,0.22,0.19h1.79c0.11,0,0.21-0.08,0.22-0.19l0.17-1.18 c0.27-0.12,0.53-0.26,0.75-0.44l1.12,0.45c0.1,0.04,0.22,0,0.28-0.1l0.9-1.55C22.03,18.86,22,18.74,21.92,18.67z M17.63,18.83 c-0.74,0-1.35-0.6-1.35-1.35s0.6-1.35,1.35-1.35s1.35,0.6,1.35,1.35S18.37,18.83,17.63,18.83z"},"children":[{"name":"path","attribs":{"d":"M21.92,18.67l-0.96-0.74c0.02-0.14,0.04-0.29,0.04-0.44c0-0.15-0.01-0.3-0.04-0.44l0.95-0.74 c0.08-0.07,0.11-0.19,0.05-0.29l-0.9-1.55c-0.05-0.1-0.17-0.13-0.28-0.1l-1.11,0.45c-0.23-0.18-0.48-0.33-0.76-0.44l-0.17-1.18 C18.73,13.08,18.63,13,18.53,13h-1.79c-0.11,0-0.21,0.08-0.22,0.19l-0.17,1.18c-0.27,0.12-0.53,0.26-0.76,0.44l-1.11-0.45 c-0.1-0.04-0.22,0-0.28,0.1l-0.9,1.55c-0.05,0.1-0.04,0.22,0.05,0.29l0.95,0.74c-0.02,0.14-0.03,0.29-0.03,0.44 c0,0.15,0.01,0.3,0.03,0.44l-0.95,0.74c-0.08,0.07-0.11,0.19-0.05,0.29l0.9,1.55c0.05,0.1,0.17,0.13,0.28,0.1l1.11-0.45 c0.23,0.18,0.48,0.33,0.76,0.44l0.17,1.18c0.02,0.11,0.11,0.19,0.22,0.19h1.79c0.11,0,0.21-0.08,0.22-0.19l0.17-1.18 c0.27-0.12,0.53-0.26,0.75-0.44l1.12,0.45c0.1,0.04,0.22,0,0.28-0.1l0.9-1.55C22.03,18.86,22,18.74,21.92,18.67z M17.63,18.83 c-0.74,0-1.35-0.6-1.35-1.35s0.6-1.35,1.35-1.35s1.35,0.6,1.35,1.35S18.37,18.83,17.63,18.83z"},"children":[]}]}]}]}]}]};exports.ic_miscellaneous_services=ic_miscellaneous_services;var ic_miscellaneous_services_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M14.17,13.71l1.4-2.42c0.09-0.15,0.05-0.34-0.08-0.45l-1.48-1.16c0.03-0.22,0.05-0.45,0.05-0.68s-0.02-0.46-0.05-0.69 l1.48-1.16c0.13-0.11,0.17-0.3,0.08-0.45l-1.4-2.42c-0.09-0.15-0.27-0.21-0.43-0.15L12,4.83c-0.36-0.28-0.75-0.51-1.18-0.69 l-0.26-1.85C10.53,2.13,10.38,2,10.21,2h-2.8C7.24,2,7.09,2.13,7.06,2.3L6.8,4.15C6.38,4.33,5.98,4.56,5.62,4.84l-1.74-0.7 c-0.16-0.06-0.34,0-0.43,0.15l-1.4,2.42C1.96,6.86,2,7.05,2.13,7.16l1.48,1.16C3.58,8.54,3.56,8.77,3.56,9s0.02,0.46,0.05,0.69 l-1.48,1.16C2,10.96,1.96,11.15,2.05,11.3l1.4,2.42c0.09,0.15,0.27,0.21,0.43,0.15l1.74-0.7c0.36,0.28,0.75,0.51,1.18,0.69 l0.26,1.85C7.09,15.87,7.24,16,7.41,16h2.8c0.17,0,0.32-0.13,0.35-0.3l0.26-1.85c0.42-0.18,0.82-0.41,1.18-0.69l1.74,0.7 C13.9,13.92,14.08,13.86,14.17,13.71z M8.81,11c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2C10.81,10.1,9.91,11,8.81,11z"},"children":[{"name":"path","attribs":{"d":"M14.17,13.71l1.4-2.42c0.09-0.15,0.05-0.34-0.08-0.45l-1.48-1.16c0.03-0.22,0.05-0.45,0.05-0.68s-0.02-0.46-0.05-0.69 l1.48-1.16c0.13-0.11,0.17-0.3,0.08-0.45l-1.4-2.42c-0.09-0.15-0.27-0.21-0.43-0.15L12,4.83c-0.36-0.28-0.75-0.51-1.18-0.69 l-0.26-1.85C10.53,2.13,10.38,2,10.21,2h-2.8C7.24,2,7.09,2.13,7.06,2.3L6.8,4.15C6.38,4.33,5.98,4.56,5.62,4.84l-1.74-0.7 c-0.16-0.06-0.34,0-0.43,0.15l-1.4,2.42C1.96,6.86,2,7.05,2.13,7.16l1.48,1.16C3.58,8.54,3.56,8.77,3.56,9s0.02,0.46,0.05,0.69 l-1.48,1.16C2,10.96,1.96,11.15,2.05,11.3l1.4,2.42c0.09,0.15,0.27,0.21,0.43,0.15l1.74-0.7c0.36,0.28,0.75,0.51,1.18,0.69 l0.26,1.85C7.09,15.87,7.24,16,7.41,16h2.8c0.17,0,0.32-0.13,0.35-0.3l0.26-1.85c0.42-0.18,0.82-0.41,1.18-0.69l1.74,0.7 C13.9,13.92,14.08,13.86,14.17,13.71z M8.81,11c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2C10.81,10.1,9.91,11,8.81,11z"},"children":[]}]},{"name":"path","attribs":{"d":"M21.92,18.67l-0.96-0.74c0.02-0.14,0.04-0.29,0.04-0.44c0-0.15-0.01-0.3-0.04-0.44l0.95-0.74 c0.08-0.07,0.11-0.19,0.05-0.29l-0.9-1.55c-0.05-0.1-0.17-0.13-0.28-0.1l-1.11,0.45c-0.23-0.18-0.48-0.33-0.76-0.44l-0.17-1.18 C18.73,13.08,18.63,13,18.53,13h-1.79c-0.11,0-0.21,0.08-0.22,0.19l-0.17,1.18c-0.27,0.12-0.53,0.26-0.76,0.44l-1.11-0.45 c-0.1-0.04-0.22,0-0.28,0.1l-0.9,1.55c-0.05,0.1-0.04,0.22,0.05,0.29l0.95,0.74c-0.02,0.14-0.03,0.29-0.03,0.44 c0,0.15,0.01,0.3,0.03,0.44l-0.95,0.74c-0.08,0.07-0.11,0.19-0.05,0.29l0.9,1.55c0.05,0.1,0.17,0.13,0.28,0.1l1.11-0.45 c0.23,0.18,0.48,0.33,0.76,0.44l0.17,1.18c0.02,0.11,0.11,0.19,0.22,0.19h1.79c0.11,0,0.21-0.08,0.22-0.19l0.17-1.18 c0.27-0.12,0.53-0.26,0.75-0.44l1.12,0.45c0.1,0.04,0.22,0,0.28-0.1l0.9-1.55C22.03,18.86,22,18.74,21.92,18.67z M17.63,18.83 c-0.74,0-1.35-0.6-1.35-1.35s0.6-1.35,1.35-1.35s1.35,0.6,1.35,1.35S18.37,18.83,17.63,18.83z"},"children":[{"name":"path","attribs":{"d":"M21.92,18.67l-0.96-0.74c0.02-0.14,0.04-0.29,0.04-0.44c0-0.15-0.01-0.3-0.04-0.44l0.95-0.74 c0.08-0.07,0.11-0.19,0.05-0.29l-0.9-1.55c-0.05-0.1-0.17-0.13-0.28-0.1l-1.11,0.45c-0.23-0.18-0.48-0.33-0.76-0.44l-0.17-1.18 C18.73,13.08,18.63,13,18.53,13h-1.79c-0.11,0-0.21,0.08-0.22,0.19l-0.17,1.18c-0.27,0.12-0.53,0.26-0.76,0.44l-1.11-0.45 c-0.1-0.04-0.22,0-0.28,0.1l-0.9,1.55c-0.05,0.1-0.04,0.22,0.05,0.29l0.95,0.74c-0.02,0.14-0.03,0.29-0.03,0.44 c0,0.15,0.01,0.3,0.03,0.44l-0.95,0.74c-0.08,0.07-0.11,0.19-0.05,0.29l0.9,1.55c0.05,0.1,0.17,0.13,0.28,0.1l1.11-0.45 c0.23,0.18,0.48,0.33,0.76,0.44l0.17,1.18c0.02,0.11,0.11,0.19,0.22,0.19h1.79c0.11,0,0.21-0.08,0.22-0.19l0.17-1.18 c0.27-0.12,0.53-0.26,0.75-0.44l1.12,0.45c0.1,0.04,0.22,0,0.28-0.1l0.9-1.55C22.03,18.86,22,18.74,21.92,18.67z M17.63,18.83 c-0.74,0-1.35-0.6-1.35-1.35s0.6-1.35,1.35-1.35s1.35,0.6,1.35,1.35S18.37,18.83,17.63,18.83z"},"children":[]}]}]}]}]}]};exports.ic_miscellaneous_services_outline=ic_miscellaneous_services_outline;var ic_miscellaneous_services_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M14.17,13.71l1.4-2.42c0.09-0.15,0.05-0.34-0.08-0.45l-1.48-1.16c0.03-0.22,0.05-0.45,0.05-0.68s-0.02-0.46-0.05-0.69 l1.48-1.16c0.13-0.11,0.17-0.3,0.08-0.45l-1.4-2.42c-0.09-0.15-0.27-0.21-0.43-0.15L12,4.83c-0.36-0.28-0.75-0.51-1.18-0.69 l-0.26-1.85C10.53,2.13,10.38,2,10.21,2h-2.8C7.24,2,7.09,2.13,7.06,2.3L6.8,4.15C6.38,4.33,5.98,4.56,5.62,4.84l-1.74-0.7 c-0.16-0.06-0.34,0-0.43,0.15l-1.4,2.42C1.96,6.86,2,7.05,2.13,7.16l1.48,1.16C3.58,8.54,3.56,8.77,3.56,9s0.02,0.46,0.05,0.69 l-1.48,1.16C2,10.96,1.96,11.15,2.05,11.3l1.4,2.42c0.09,0.15,0.27,0.21,0.43,0.15l1.74-0.7c0.36,0.28,0.75,0.51,1.18,0.69 l0.26,1.85C7.09,15.87,7.24,16,7.41,16h2.8c0.17,0,0.32-0.13,0.35-0.3l0.26-1.85c0.42-0.18,0.82-0.41,1.18-0.69l1.74,0.7 C13.9,13.92,14.08,13.86,14.17,13.71z M8.81,11c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2C10.81,10.1,9.91,11,8.81,11z"},"children":[{"name":"path","attribs":{"d":"M14.17,13.71l1.4-2.42c0.09-0.15,0.05-0.34-0.08-0.45l-1.48-1.16c0.03-0.22,0.05-0.45,0.05-0.68s-0.02-0.46-0.05-0.69 l1.48-1.16c0.13-0.11,0.17-0.3,0.08-0.45l-1.4-2.42c-0.09-0.15-0.27-0.21-0.43-0.15L12,4.83c-0.36-0.28-0.75-0.51-1.18-0.69 l-0.26-1.85C10.53,2.13,10.38,2,10.21,2h-2.8C7.24,2,7.09,2.13,7.06,2.3L6.8,4.15C6.38,4.33,5.98,4.56,5.62,4.84l-1.74-0.7 c-0.16-0.06-0.34,0-0.43,0.15l-1.4,2.42C1.96,6.86,2,7.05,2.13,7.16l1.48,1.16C3.58,8.54,3.56,8.77,3.56,9s0.02,0.46,0.05,0.69 l-1.48,1.16C2,10.96,1.96,11.15,2.05,11.3l1.4,2.42c0.09,0.15,0.27,0.21,0.43,0.15l1.74-0.7c0.36,0.28,0.75,0.51,1.18,0.69 l0.26,1.85C7.09,15.87,7.24,16,7.41,16h2.8c0.17,0,0.32-0.13,0.35-0.3l0.26-1.85c0.42-0.18,0.82-0.41,1.18-0.69l1.74,0.7 C13.9,13.92,14.08,13.86,14.17,13.71z M8.81,11c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2C10.81,10.1,9.91,11,8.81,11z"},"children":[]}]},{"name":"path","attribs":{"d":"M21.92,18.67l-0.96-0.74c0.02-0.14,0.04-0.29,0.04-0.44c0-0.15-0.01-0.3-0.04-0.44l0.95-0.74 c0.08-0.07,0.11-0.19,0.05-0.29l-0.9-1.55c-0.05-0.1-0.17-0.13-0.28-0.1l-1.11,0.45c-0.23-0.18-0.48-0.33-0.76-0.44l-0.17-1.18 C18.73,13.08,18.63,13,18.53,13h-1.79c-0.11,0-0.21,0.08-0.22,0.19l-0.17,1.18c-0.27,0.12-0.53,0.26-0.76,0.44l-1.11-0.45 c-0.1-0.04-0.22,0-0.28,0.1l-0.9,1.55c-0.05,0.1-0.04,0.22,0.05,0.29l0.95,0.74c-0.02,0.14-0.03,0.29-0.03,0.44 c0,0.15,0.01,0.3,0.03,0.44l-0.95,0.74c-0.08,0.07-0.11,0.19-0.05,0.29l0.9,1.55c0.05,0.1,0.17,0.13,0.28,0.1l1.11-0.45 c0.23,0.18,0.48,0.33,0.76,0.44l0.17,1.18c0.02,0.11,0.11,0.19,0.22,0.19h1.79c0.11,0,0.21-0.08,0.22-0.19l0.17-1.18 c0.27-0.12,0.53-0.26,0.75-0.44l1.12,0.45c0.1,0.04,0.22,0,0.28-0.1l0.9-1.55C22.03,18.86,22,18.74,21.92,18.67z M17.63,18.83 c-0.74,0-1.35-0.6-1.35-1.35s0.6-1.35,1.35-1.35s1.35,0.6,1.35,1.35S18.37,18.83,17.63,18.83z"},"children":[{"name":"path","attribs":{"d":"M21.92,18.67l-0.96-0.74c0.02-0.14,0.04-0.29,0.04-0.44c0-0.15-0.01-0.3-0.04-0.44l0.95-0.74 c0.08-0.07,0.11-0.19,0.05-0.29l-0.9-1.55c-0.05-0.1-0.17-0.13-0.28-0.1l-1.11,0.45c-0.23-0.18-0.48-0.33-0.76-0.44l-0.17-1.18 C18.73,13.08,18.63,13,18.53,13h-1.79c-0.11,0-0.21,0.08-0.22,0.19l-0.17,1.18c-0.27,0.12-0.53,0.26-0.76,0.44l-1.11-0.45 c-0.1-0.04-0.22,0-0.28,0.1l-0.9,1.55c-0.05,0.1-0.04,0.22,0.05,0.29l0.95,0.74c-0.02,0.14-0.03,0.29-0.03,0.44 c0,0.15,0.01,0.3,0.03,0.44l-0.95,0.74c-0.08,0.07-0.11,0.19-0.05,0.29l0.9,1.55c0.05,0.1,0.17,0.13,0.28,0.1l1.11-0.45 c0.23,0.18,0.48,0.33,0.76,0.44l0.17,1.18c0.02,0.11,0.11,0.19,0.22,0.19h1.79c0.11,0,0.21-0.08,0.22-0.19l0.17-1.18 c0.27-0.12,0.53-0.26,0.75-0.44l1.12,0.45c0.1,0.04,0.22,0,0.28-0.1l0.9-1.55C22.03,18.86,22,18.74,21.92,18.67z M17.63,18.83 c-0.74,0-1.35-0.6-1.35-1.35s0.6-1.35,1.35-1.35s1.35,0.6,1.35,1.35S18.37,18.83,17.63,18.83z"},"children":[]}]}]}]}]}]};exports.ic_miscellaneous_services_twotone=ic_miscellaneous_services_twotone;var ic_money={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 8h2v8H5zm7 0H9c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h3c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-1 6h-1v-4h1v4zm7-6h-3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h3c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-1 6h-1v-4h1v4z"},"children":[]},{"name":"path","attribs":{"d":"M4 6h16v12H4z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M2 4v16h20V4H2zm2 14V6h16v12H4z"},"children":[]}]};exports.ic_money=ic_money;var ic_money_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15 16h3c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1zm1-6h1v4h-1v-4zm-7 6h3c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1zm1-6h1v4h-1v-4zM5 8h2v8H5zM2 4v16h20V4H2zm18 14H4V6h16v12z"},"children":[]}]};exports.ic_money_outline=ic_money_outline;var ic_money_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 10h1v4h-1zm6 0h1v4h-1zM4 18h16V6H4v12zm10-9c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v6c0 .55-.45 1-1 1h-3c-.55 0-1-.45-1-1V9zM8 9c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v6c0 .55-.45 1-1 1H9c-.55 0-1-.45-1-1V9zM5 8h2v8H5V8z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M15 16h3c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1zm1-6h1v4h-1v-4zm-7 6h3c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1zm1-6h1v4h-1v-4zM5 8h2v8H5zM2 4v16h20V4H2zm18 14H4V6h16v12z"},"children":[]}]};exports.ic_money_twotone=ic_money_twotone;var ic_moped={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M19,7c0-1.1-0.9-2-2-2h-3v2h3v2.65L13.52,14H10V9H6c-2.21,0-4,1.79-4,4v3h2c0,1.66,1.34,3,3,3s3-1.34,3-3h4.48L19,10.35V7 z M7,17c-0.55,0-1-0.45-1-1h2C8,16.55,7.55,17,7,17z"},"children":[{"name":"path","attribs":{"d":"M19,7c0-1.1-0.9-2-2-2h-3v2h3v2.65L13.52,14H10V9H6c-2.21,0-4,1.79-4,4v3h2c0,1.66,1.34,3,3,3s3-1.34,3-3h4.48L19,10.35V7 z M7,17c-0.55,0-1-0.45-1-1h2C8,16.55,7.55,17,7,17z"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"5","x":"5","y":"6"},"children":[{"name":"rect","attribs":{"height":"2","width":"5","x":"5","y":"6"},"children":[]}]},{"name":"path","attribs":{"d":"M19,13c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,13,19,13z M19,17c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S19.55,17,19,17z"},"children":[{"name":"path","attribs":{"d":"M19,13c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,13,19,13z M19,17c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S19.55,17,19,17z"},"children":[]}]}]}]}]}]};exports.ic_moped=ic_moped;var ic_moped_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M19,7c0-1.1-0.9-2-2-2h-3v2h3v2.65L13.52,14H10V9H6c-2.21,0-4,1.79-4,4v3h2c0,1.66,1.34,3,3,3s3-1.34,3-3h4.48L19,10.35V7 z M4,14v-1c0-1.1,0.9-2,2-2h2v3H4z M7,17c-0.55,0-1-0.45-1-1h2C8,16.55,7.55,17,7,17z"},"children":[{"name":"path","attribs":{"d":"M19,7c0-1.1-0.9-2-2-2h-3v2h3v2.65L13.52,14H10V9H6c-2.21,0-4,1.79-4,4v3h2c0,1.66,1.34,3,3,3s3-1.34,3-3h4.48L19,10.35V7 z M4,14v-1c0-1.1,0.9-2,2-2h2v3H4z M7,17c-0.55,0-1-0.45-1-1h2C8,16.55,7.55,17,7,17z"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"5","x":"5","y":"6"},"children":[{"name":"rect","attribs":{"height":"2","width":"5","x":"5","y":"6"},"children":[]}]},{"name":"path","attribs":{"d":"M19,13c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,13,19,13z M19,17c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S19.55,17,19,17z"},"children":[{"name":"path","attribs":{"d":"M19,13c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,13,19,13z M19,17c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S19.55,17,19,17z"},"children":[]}]}]}]}]}]};exports.ic_moped_outline=ic_moped_outline;var ic_moped_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M4,13v1h4v-3H6C4.9,11,4,11.9,4,13z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M4,13v1h4v-3H6C4.9,11,4,11.9,4,13z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M19,7c0-1.1-0.9-2-2-2h-3v2h3v2.65L13.52,14H10V9H6c-2.21,0-4,1.79-4,4v3h2c0,1.66,1.34,3,3,3s3-1.34,3-3h4.48L19,10.35V7 z M7,17c-0.55,0-1-0.45-1-1h2C8,16.55,7.55,17,7,17z M8,14H4v-1c0-1.1,0.9-2,2-2h2V14z"},"children":[{"name":"path","attribs":{"d":"M19,7c0-1.1-0.9-2-2-2h-3v2h3v2.65L13.52,14H10V9H6c-2.21,0-4,1.79-4,4v3h2c0,1.66,1.34,3,3,3s3-1.34,3-3h4.48L19,10.35V7 z M7,17c-0.55,0-1-0.45-1-1h2C8,16.55,7.55,17,7,17z M8,14H4v-1c0-1.1,0.9-2,2-2h2V14z"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"5","x":"5","y":"6"},"children":[{"name":"rect","attribs":{"height":"2","width":"5","x":"5","y":"6"},"children":[]}]},{"name":"path","attribs":{"d":"M19,13c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,13,19,13z M19,17c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S19.55,17,19,17z"},"children":[{"name":"path","attribs":{"d":"M19,13c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,13,19,13z M19,17c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S19.55,17,19,17z"},"children":[]}]}]}]}]}]};exports.ic_moped_twotone=ic_moped_twotone;var ic_multiple_stop={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M17,4l4,4l-4,4V9h-4V7h4V4z M10,7C9.45,7,9,7.45,9,8s0.45,1,1,1s1-0.45,1-1S10.55,7,10,7z M6,7C5.45,7,5,7.45,5,8 s0.45,1,1,1s1-0.45,1-1S6.55,7,6,7z M7,17h4v-2H7v-3l-4,4l4,4V17z M14,17c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1s-1,0.45-1,1 C13,16.55,13.45,17,14,17z M18,17c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1s-1,0.45-1,1C17,16.55,17.45,17,18,17z"},"children":[{"name":"path","attribs":{"d":"M17,4l4,4l-4,4V9h-4V7h4V4z M10,7C9.45,7,9,7.45,9,8s0.45,1,1,1s1-0.45,1-1S10.55,7,10,7z M6,7C5.45,7,5,7.45,5,8 s0.45,1,1,1s1-0.45,1-1S6.55,7,6,7z M7,17h4v-2H7v-3l-4,4l4,4V17z M14,17c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1s-1,0.45-1,1 C13,16.55,13.45,17,14,17z M18,17c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1s-1,0.45-1,1C17,16.55,17.45,17,18,17z"},"children":[]}]}]}]};exports.ic_multiple_stop=ic_multiple_stop;var ic_multiple_stop_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M17,4l4,4l-4,4V9h-4V7h4V4z M10,7C9.45,7,9,7.45,9,8s0.45,1,1,1s1-0.45,1-1S10.55,7,10,7z M6,7C5.45,7,5,7.45,5,8 s0.45,1,1,1s1-0.45,1-1S6.55,7,6,7z M7,17h4v-2H7v-3l-4,4l4,4V17z M14,17c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1s-1,0.45-1,1 C13,16.55,13.45,17,14,17z M18,17c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1s-1,0.45-1,1C17,16.55,17.45,17,18,17z"},"children":[{"name":"path","attribs":{"d":"M17,4l4,4l-4,4V9h-4V7h4V4z M10,7C9.45,7,9,7.45,9,8s0.45,1,1,1s1-0.45,1-1S10.55,7,10,7z M6,7C5.45,7,5,7.45,5,8 s0.45,1,1,1s1-0.45,1-1S6.55,7,6,7z M7,17h4v-2H7v-3l-4,4l4,4V17z M14,17c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1s-1,0.45-1,1 C13,16.55,13.45,17,14,17z M18,17c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1s-1,0.45-1,1C17,16.55,17.45,17,18,17z"},"children":[]}]}]}]};exports.ic_multiple_stop_outline=ic_multiple_stop_outline;var ic_multiple_stop_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M17,4l4,4l-4,4V9h-4V7h4V4z M10,7C9.45,7,9,7.45,9,8s0.45,1,1,1s1-0.45,1-1S10.55,7,10,7z M6,7C5.45,7,5,7.45,5,8 s0.45,1,1,1s1-0.45,1-1S6.55,7,6,7z M7,17h4v-2H7v-3l-4,4l4,4V17z M14,17c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1s-1,0.45-1,1 C13,16.55,13.45,17,14,17z M18,17c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1s-1,0.45-1,1C17,16.55,17.45,17,18,17z"},"children":[{"name":"path","attribs":{"d":"M17,4l4,4l-4,4V9h-4V7h4V4z M10,7C9.45,7,9,7.45,9,8s0.45,1,1,1s1-0.45,1-1S10.55,7,10,7z M6,7C5.45,7,5,7.45,5,8 s0.45,1,1,1s1-0.45,1-1S6.55,7,6,7z M7,17h4v-2H7v-3l-4,4l4,4V17z M14,17c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1s-1,0.45-1,1 C13,16.55,13.45,17,14,17z M18,17c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1s-1,0.45-1,1C17,16.55,17.45,17,18,17z"},"children":[]}]}]}]};exports.ic_multiple_stop_twotone=ic_multiple_stop_twotone;var ic_museum={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M22,11V9L12,2L2,9v2h2v9H2v2h20v-2h-2v-9H22z M16,18h-2v-4l-2,3l-2-3v4H8v-7h2l2,3l2-3h2V18z"},"children":[{"name":"path","attribs":{"d":"M22,11V9L12,2L2,9v2h2v9H2v2h20v-2h-2v-9H22z M16,18h-2v-4l-2,3l-2-3v4H8v-7h2l2,3l2-3h2V18z"},"children":[]}]}]}]};exports.ic_museum=ic_museum;var ic_museum_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M22,11V9L12,2L2,9v2h2v9H2v2h20v-2h-2v-9H22z M18,20H6V9h12V20z"},"children":[{"name":"path","attribs":{"d":"M22,11V9L12,2L2,9v2h2v9H2v2h20v-2h-2v-9H22z M18,20H6V9h12V20z"},"children":[]}]},{"name":"polygon","attribs":{"points":"10,14 12,17 14,14 14,18 16,18 16,11 14,11 12,14 10,11 8,11 8,18 10,18"},"children":[{"name":"polygon","attribs":{"points":"10,14 12,17 14,14 14,18 16,18 16,11 14,11 12,14 10,11 8,11 8,18 10,18"},"children":[]}]}]}]}]}]};exports.ic_museum_outline=ic_museum_outline;var ic_museum_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M6,20h12V9H6V20z M8,11h2l2,3l2-3h2v7h-2v-4l-2,3l-2-3v4H8V11z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M6,20h12V9H6V20z M8,11h2l2,3l2-3h2v7h-2v-4l-2,3l-2-3v4H8V11z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M22,11V9L12,2L2,9v2h2v9H2v2h20v-2h-2v-9H22z M18,20H6V9h12V20z"},"children":[{"name":"path","attribs":{"d":"M22,11V9L12,2L2,9v2h2v9H2v2h20v-2h-2v-9H22z M18,20H6V9h12V20z"},"children":[]}]},{"name":"polygon","attribs":{"points":"10,14 12,17 14,14 14,18 16,18 16,11 14,11 12,14 10,11 8,11 8,18 10,18"},"children":[{"name":"polygon","attribs":{"points":"10,14 12,17 14,14 14,18 16,18 16,11 14,11 12,14 10,11 8,11 8,18 10,18"},"children":[]}]}]}]}]}]};exports.ic_museum_twotone=ic_museum_twotone;var ic_my_location={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm8.94 3c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z"},"children":[]}]};exports.ic_my_location=ic_my_location;var ic_my_location_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm8.94 3c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z"},"children":[]}]};exports.ic_my_location_outline=ic_my_location_outline;var ic_my_location_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13 3.06V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06c-.46-4.17-3.77-7.48-7.94-7.94zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z"},"children":[]},{"name":"circle","attribs":{"cx":"12","cy":"12","opacity":".3","r":"2"},"children":[]},{"name":"path","attribs":{"d":"M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"},"children":[]}]};exports.ic_my_location_twotone=ic_my_location_twotone;var ic_navigation={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2L4.5 20.29l.71.71L12 18l6.79 3 .71-.71z"},"children":[]}]};exports.ic_navigation=ic_navigation;var ic_navigation_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 7.27l4.28 10.43-3.47-1.53-.81-.36-.81.36-3.47 1.53L12 7.27M12 2L4.5 20.29l.71.71L12 18l6.79 3 .71-.71L12 2z"},"children":[]}]};exports.ic_navigation_outline=ic_navigation_outline;var ic_navigation_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7.72 17.7l3.47-1.53.81-.36.81.36 3.47 1.53L12 7.27z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M4.5 20.29l.71.71L12 18l6.79 3 .71-.71L12 2 4.5 20.29zm8.31-4.12l-.81-.36-.81.36-3.47 1.53L12 7.27l4.28 10.43-3.47-1.53z"},"children":[]}]};exports.ic_navigation_twotone=ic_navigation_twotone;var ic_near_me={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 3L3 10.53v.98l6.84 2.65L12.48 21h.98L21 3z"},"children":[]}]};exports.ic_near_me=ic_near_me;var ic_near_me_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17.27 6.73l-4.24 10.13-1.32-3.42-.32-.83-.82-.32-3.43-1.33 10.13-4.23M21 3L3 10.53v.98l6.84 2.65L12.48 21h.98L21 3z"},"children":[]}]};exports.ic_near_me_outline=ic_near_me_outline;var ic_near_me_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11.39 12.61l.32.83 1.32 3.42 4.24-10.13-10.13 4.24 3.42 1.33z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M3 11.51l6.84 2.65L12.48 21h.98L21 3 3 10.53v.98zm14.27-4.78l-4.24 10.13-1.32-3.42-.32-.83-.82-.32-3.43-1.33 10.13-4.23z"},"children":[]}]};exports.ic_near_me_twotone=ic_near_me_twotone;var ic_near_me_disabled={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M12,6.34L21,3l-3.34,9L12,6.34z M22.61,19.78L4.22,1.39L2.81,2.81l5.07,5.07L3,9.69v1.41l7.07,2.83L12.9,21h1.41l1.81-4.88 l5.07,5.07L22.61,19.78z"},"children":[]}]};exports.ic_near_me_disabled=ic_near_me_disabled;var ic_near_me_disabled_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M12,6.34L21,3l-3.34,9l-1.56-1.56l1.5-4.05l-4.05,1.5L12,6.34z M21.19,21.19l-5.07-5.07L14.31,21H12.9l-2.83-7.07L3,11.1 V9.69l4.88-1.81L2.81,2.81l1.41-1.41l18.38,18.38L21.19,21.19z M14.57,14.57L9.43,9.43l-2.71,1.01l4.89,1.95l1.95,4.89L14.57,14.57z"},"children":[]}]};exports.ic_near_me_disabled_outline=ic_near_me_disabled_outline;var ic_near_me_disabled_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M16.1,10.44l1.5-4.05l-4.05,1.5L16.1,10.44z M14.57,14.57L9.43,9.43l-2.71,1.01l4.89,1.95l1.95,4.89 L14.57,14.57z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12,6.34L21,3l-3.34,9l-1.56-1.56l1.5-4.05l-4.05,1.5L12,6.34z M21.19,21.19l-5.07-5.07L14.31,21H12.9l-2.83-7.07L3,11.1 V9.69l4.88-1.81L2.81,2.81l1.41-1.41l18.38,18.38L21.19,21.19z M14.57,14.57L9.43,9.43l-2.71,1.01l4.89,1.95l1.95,4.89L14.57,14.57z"},"children":[]}]};exports.ic_near_me_disabled_twotone=ic_near_me_disabled_twotone;var ic_nightlife={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M1,5h14l-6,9v4h2v2H5v-2h2v-4L1,5z M10.1,9l1.4-2H4.49l1.4,2H10.1z M17,5h5v3h-3v9h0c0,1.66-1.34,3-3,3s-3-1.34-3-3 s1.34-3,3-3c0.35,0,0.69,0.06,1,0.17L17,5z"},"children":[{"name":"path","attribs":{"d":"M1,5h14l-6,9v4h2v2H5v-2h2v-4L1,5z M10.1,9l1.4-2H4.49l1.4,2H10.1z M17,5h5v3h-3v9h0c0,1.66-1.34,3-3,3s-3-1.34-3-3 s1.34-3,3-3c0.35,0,0.69,0.06,1,0.17L17,5z"},"children":[]}]}]}]};exports.ic_nightlife=ic_nightlife;var ic_no_meals={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M16,14V6c0-1.76,2.24-4,5-4v16.17l-2-2V14H16z M20.49,23.31L10.02,12.85C9.69,12.94,9.36,13,9,13v9H7v-9c-2.21,0-4-1.79-4-4 V5.83L0.69,3.51L2.1,2.1l19.8,19.8L20.49,23.31z M6.17,9L5,7.83V9H6.17z M9,2H7v2.17l2,2V2z M13,9V2h-2v6.17l1.85,1.85 C12.94,9.69,13,9.36,13,9z"},"children":[]}]};exports.ic_no_meals=ic_no_meals;var ic_no_meals_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M16,14V6c0-1.76,2.24-4,5-4v16.17l-2-2V14H16z M20.49,23.31L10.02,12.85C9.69,12.94,9.36,13,9,13v9H7v-9c-2.21,0-4-1.79-4-4 V5.83L0.69,3.51L2.1,2.1l19.8,19.8L20.49,23.31z M6.17,9L5,7.83V9H6.17z M9,2H7v2.17l2,2V2z M13,9V2h-2v6.17l1.85,1.85 C12.94,9.69,13,9.36,13,9z"},"children":[]}]};exports.ic_no_meals_outline=ic_no_meals_outline;var ic_no_meals_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M16,14V6c0-1.76,2.24-4,5-4v16.17l-2-2V14H16z M20.49,23.31L10.02,12.85C9.69,12.94,9.36,13,9,13v9H7v-9c-2.21,0-4-1.79-4-4 V5.83L0.69,3.51L2.1,2.1l19.8,19.8L20.49,23.31z M6.17,9L5,7.83V9H6.17z M9,2H7v2.17l2,2V2z M13,9V2h-2v6.17l1.85,1.85 C12.94,9.69,13,9.36,13,9z"},"children":[]}]};exports.ic_no_meals_twotone=ic_no_meals_twotone;var ic_no_meals_ouline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M16,14V6c0-1.76,2.24-4,5-4v16.17l-2-2V14H16z M20.49,23.31L10.02,12.85C9.69,12.94,9.36,13,9,13v9H7v-9c-2.21,0-4-1.79-4-4 V5.83L0.69,3.51L2.1,2.1l19.8,19.8L20.49,23.31z M6.17,9L5,7.83V9H6.17z M9,2H7v2.17l2,2V2z M13,9V2h-2v6.17l1.85,1.85 C12.94,9.69,13,9.36,13,9z"},"children":[]}]};exports.ic_no_meals_ouline=ic_no_meals_ouline;var ic_no_transfer={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M21.19,21.19L2.81,2.81L1.39,4.22L4,6.83V16c0,0.88,0.39,1.67,1,2.22V20c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-1h8v1 c0,0.55,0.45,1,1,1h1c0.05,0,0.09-0.02,0.14-0.03l1.64,1.64L21.19,21.19z M7.5,17C6.67,17,6,16.33,6,15.5C6,14.67,6.67,14,7.5,14 S9,14.67,9,15.5C9,16.33,8.33,17,7.5,17z M6,11V8.83L8.17,11H6z M8.83,6L5.78,2.95C7.24,2.16,9.48,2,12,2c4.42,0,8,0.5,8,4v10 c0,0.35-0.08,0.67-0.19,0.98L13.83,11H18V6H8.83z"},"children":[]}]};exports.ic_no_transfer=ic_no_transfer;var ic_no_transfer_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M8.5,13c0.83,0,1.5,0.67,1.5,1.5S9.33,16,8.5,16S7,15.33,7,14.5S7.67,13,8.5,13z M19.78,22.61l-1.64-1.64 C18.09,20.98,18.05,21,18,21h-1c-0.55,0-1-0.45-1-1v-1H8v1c0,0.55-0.45,1-1,1H6c-0.55,0-1-0.45-1-1v-1.78C4.39,17.67,4,16.88,4,16 V6.83L1.39,4.22l1.41-1.41l18.38,18.38L19.78,22.61z M6,8.83V10h1.17L6,8.83z M14.17,17l-5-5H6v4c0,0.37,0.21,0.62,0.34,0.73 L6.63,17H14.17z M12,4c3.69,0,5.11,0.46,5.66,0.99H7.82l2,2H18V10h-5.17l2,2H18v3.17l1.81,1.81C19.92,16.67,20,16.35,20,16V6 c0-3.5-3.58-4-8-4C9.48,2,7.24,2.16,5.78,2.95l1.53,1.53C8.17,4.2,9.6,4,12,4z"},"children":[]}]};exports.ic_no_transfer_outline=ic_no_transfer_outline;var ic_no_transfer_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M14.83,12H18v3.17L14.83,12z M9.17,12l5,5H6.63l-0.29-0.27 C6.21,16.62,6,16.37,6,16v-4H9.17z M10,14.5c0-0.83-0.67-1.5-1.5-1.5S7,13.67,7,14.5C7,15.33,7.67,16,8.5,16S10,15.33,10,14.5z M7.82,4.99h9.83C17.11,4.46,15.69,4,12,4C9.6,4,8.17,4.2,7.31,4.48L7.82,4.99z","enable-background":"new","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M8.5,13c0.83,0,1.5,0.67,1.5,1.5S9.33,16,8.5,16S7,15.33,7,14.5S7.67,13,8.5,13z M7.31,4.48C8.17,4.2,9.6,4,12,4 c3.69,0,5.11,0.46,5.66,0.99H7.82l2,2H18V10h-5.17l2,2H18v3.17l1.81,1.81C19.92,16.67,20,16.35,20,16V6c0-3.5-3.58-4-8-4 C9.48,2,7.24,2.16,5.78,2.95L7.31,4.48z M19.78,22.61l-1.64-1.64C18.09,20.98,18.05,21,18,21h-1c-0.55,0-1-0.45-1-1v-1H8v1 c0,0.55-0.45,1-1,1H6c-0.55,0-1-0.45-1-1v-1.78C4.39,17.67,4,16.88,4,16V6.83L1.39,4.22l1.41-1.41l18.38,18.38L19.78,22.61z M6,8.83 V10h1.17L6,8.83z M14.17,17l-5-5H6v4c0,0.37,0.21,0.62,0.34,0.73L6.63,17H8H14.17z"},"children":[]}]};exports.ic_no_transfer_twotone=ic_no_transfer_twotone;var ic_not_listed_location={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C8.14 2 5 5.14 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.86-3.14-7-7-7zm.88 13.75h-1.75V14h1.75v1.75zm0-2.87h-1.75c0-2.84 2.62-2.62 2.62-4.38 0-.96-.79-1.75-1.75-1.75s-1.75.79-1.75 1.75H8.5C8.5 6.57 10.07 5 12 5s3.5 1.57 3.5 3.5c0 2.19-2.62 2.41-2.62 4.38z"},"children":[]}]};exports.ic_not_listed_location=ic_not_listed_location;var ic_not_listed_location_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0,0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12.01,16c-0.27,0-0.52-0.1-0.71-0.29c-0.2-0.2-0.29-0.43-0.29-0.71c-0.01-0.55,0.43-0.99,0.98-1c0.01,0,0.01,0,0.02,0 c0.28,0,0.51,0.1,0.71,0.29c0.18,0.19,0.28,0.43,0.28,0.7s-0.1,0.51-0.29,0.71S12.28,16,12.01,16z M11.13,12.34 c0-0.45,0.1-0.84,0.29-1.16c0.19-0.33,0.53-0.7,1-1.12c0.28-0.25,0.48-0.47,0.61-0.66s0.19-0.4,0.19-0.64 c0-0.29-0.11-0.53-0.32-0.74c-0.21-0.2-0.5-0.3-0.85-0.3c-0.37,0-0.74,0.1-0.96,0.3c-0.21,0.2-0.4,0.45-0.4,0.98H9 c0-1.01,0.46-1.73,0.97-2.21C10.53,6.28,11.25,6,12,6c0.59,0,1.11,0.12,1.57,0.35s0.79,0.55,1.05,0.96S15,8.17,15,8.66 s-0.1,0.9-0.31,1.25S14.21,10.62,13.8,11c-0.32,0.3-0.53,0.56-0.65,0.77s-0.18,0.49-0.18,0.81V13h-1.85v-0.66H11.13z M18,10.2 C18,6.57,15.35,4,12,4s-6,2.57-6,6.2c0,2.34,1.95,5.44,6,9.14C16.05,15.64,18,12.54,18,10.2z M12,2c4.2,0,8,3.22,8,8.2 c0,3.32-2.67,7.25-8,11.8c-5.33-4.55-8-8.48-8-11.8C4,5.22,7.8,2,12,2z"},"children":[]}]};exports.ic_not_listed_location_outline=ic_not_listed_location_outline;var ic_not_listed_location_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0,0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18.5,10.2c0,2.57-2.1,5.79-6.16,9.51L12,20.01l-0.34-0.31C7.6,15.99,5.5,12.77,5.5,10.2 c0-3.84,2.82-6.7,6.5-6.7S18.5,6.35,18.5,10.2z","fill-opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12.01,16c-0.27,0-0.52-0.1-0.71-0.29c-0.2-0.2-0.29-0.43-0.29-0.71c-0.01-0.55,0.43-0.99,0.98-1c0.01,0,0.01,0,0.02,0 c0.28,0,0.51,0.1,0.71,0.29c0.18,0.19,0.28,0.43,0.28,0.7s-0.1,0.51-0.29,0.71S12.28,16,12.01,16z M11.13,12.34 c0-0.45,0.1-0.84,0.29-1.16c0.19-0.33,0.53-0.7,1-1.12c0.28-0.25,0.48-0.47,0.61-0.66s0.19-0.4,0.19-0.64 c0-0.29-0.11-0.53-0.32-0.74c-0.21-0.2-0.5-0.3-0.85-0.3c-0.37,0-0.74,0.1-0.96,0.3c-0.21,0.2-0.4,0.45-0.4,0.98H9 c0-1.01,0.46-1.73,0.97-2.21C10.53,6.28,11.25,6,12,6c0.59,0,1.11,0.12,1.57,0.35C14.45,6.78,15,7.68,15,8.66 c0,0.49-0.1,0.9-0.31,1.25S14.21,10.62,13.8,11c-0.32,0.3-0.53,0.56-0.65,0.77s-0.18,0.49-0.18,0.81V13h-1.85v-0.66H11.13z M18,10.2 C18,6.57,15.35,4,12,4s-6,2.57-6,6.2c0,2.34,1.95,5.44,6,9.14C16.05,15.64,18,12.54,18,10.2z M12,2c4.2,0,8,3.22,8,8.2 c0,3.32-2.67,7.25-8,11.8c-5.33-4.55-8-8.48-8-11.8C4,5.22,7.8,2,12,2z"},"children":[]}]};exports.ic_not_listed_location_twotone=ic_not_listed_location_twotone;var ic_park={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"17,12 19,12 12,2 5.05,12 7,12 3.1,18 10.02,18 10.02,22 13.98,22 13.98,18 21,18"},"children":[{"name":"polygon","attribs":{"points":"17,12 19,12 12,2 5.05,12 7,12 3.1,18 10.02,18 10.02,22 13.98,22 13.98,18 21,18"},"children":[]}]}]}]};exports.ic_park=ic_park;var ic_pedal_bike={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M18.18,10l-1.7-4.68C16.19,4.53,15.44,4,14.6,4H12v2h2.6l1.46,4h-4.81l-0.36-1H12V7H7v2h1.75l1.82,5H9.9 c-0.44-2.23-2.31-3.88-4.65-3.99C2.45,9.87,0,12.2,0,15c0,2.8,2.2,5,5,5c2.46,0,4.45-1.69,4.9-4h4.2c0.44,2.23,2.31,3.88,4.65,3.99 c2.8,0.13,5.25-2.19,5.25-5c0-2.8-2.2-5-5-5H18.18z M7.82,16c-0.4,1.17-1.49,2-2.82,2c-1.68,0-3-1.32-3-3s1.32-3,3-3 c1.33,0,2.42,0.83,2.82,2H5v2H7.82z M14.1,14h-1.4l-0.73-2H15C14.56,12.58,14.24,13.25,14.1,14z M19,18c-1.68,0-3-1.32-3-3 c0-0.93,0.41-1.73,1.05-2.28l0.96,2.64l1.88-0.68l-0.97-2.67c0.03,0,0.06-0.01,0.09-0.01c1.68,0,3,1.32,3,3S20.68,18,19,18z"},"children":[{"name":"path","attribs":{"d":"M18.18,10l-1.7-4.68C16.19,4.53,15.44,4,14.6,4H12v2h2.6l1.46,4h-4.81l-0.36-1H12V7H7v2h1.75l1.82,5H9.9 c-0.44-2.23-2.31-3.88-4.65-3.99C2.45,9.87,0,12.2,0,15c0,2.8,2.2,5,5,5c2.46,0,4.45-1.69,4.9-4h4.2c0.44,2.23,2.31,3.88,4.65,3.99 c2.8,0.13,5.25-2.19,5.25-5c0-2.8-2.2-5-5-5H18.18z M7.82,16c-0.4,1.17-1.49,2-2.82,2c-1.68,0-3-1.32-3-3s1.32-3,3-3 c1.33,0,2.42,0.83,2.82,2H5v2H7.82z M14.1,14h-1.4l-0.73-2H15C14.56,12.58,14.24,13.25,14.1,14z M19,18c-1.68,0-3-1.32-3-3 c0-0.93,0.41-1.73,1.05-2.28l0.96,2.64l1.88-0.68l-0.97-2.67c0.03,0,0.06-0.01,0.09-0.01c1.68,0,3,1.32,3,3S20.68,18,19,18z"},"children":[]}]}]}]};exports.ic_pedal_bike=ic_pedal_bike;var ic_pedal_bike_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M18.18,10l-1.7-4.68C16.19,4.53,15.44,4,14.6,4H12v2h2.6l1.46,4h-4.81l-0.36-1H12V7H7v2h1.75l1.82,5H9.9 c-0.44-2.23-2.31-3.88-4.65-3.99C2.45,9.87,0,12.2,0,15c0,2.8,2.2,5,5,5c2.46,0,4.45-1.69,4.9-4h4.2c0.44,2.23,2.31,3.88,4.65,3.99 c2.8,0.13,5.25-2.19,5.25-5c0-2.8-2.2-5-5-5H18.18z M7.82,16c-0.4,1.17-1.49,2-2.82,2c-1.68,0-3-1.32-3-3s1.32-3,3-3 c1.33,0,2.42,0.83,2.82,2H5v2H7.82z M14.1,14h-1.4l-0.73-2H15C14.56,12.58,14.24,13.25,14.1,14z M19,18c-1.68,0-3-1.32-3-3 c0-0.93,0.41-1.73,1.05-2.28l0.96,2.64l1.88-0.68l-0.97-2.67c0.03,0,0.06-0.01,0.09-0.01c1.68,0,3,1.32,3,3S20.68,18,19,18z"},"children":[{"name":"path","attribs":{"d":"M18.18,10l-1.7-4.68C16.19,4.53,15.44,4,14.6,4H12v2h2.6l1.46,4h-4.81l-0.36-1H12V7H7v2h1.75l1.82,5H9.9 c-0.44-2.23-2.31-3.88-4.65-3.99C2.45,9.87,0,12.2,0,15c0,2.8,2.2,5,5,5c2.46,0,4.45-1.69,4.9-4h4.2c0.44,2.23,2.31,3.88,4.65,3.99 c2.8,0.13,5.25-2.19,5.25-5c0-2.8-2.2-5-5-5H18.18z M7.82,16c-0.4,1.17-1.49,2-2.82,2c-1.68,0-3-1.32-3-3s1.32-3,3-3 c1.33,0,2.42,0.83,2.82,2H5v2H7.82z M14.1,14h-1.4l-0.73-2H15C14.56,12.58,14.24,13.25,14.1,14z M19,18c-1.68,0-3-1.32-3-3 c0-0.93,0.41-1.73,1.05-2.28l0.96,2.64l1.88-0.68l-0.97-2.67c0.03,0,0.06-0.01,0.09-0.01c1.68,0,3,1.32,3,3S20.68,18,19,18z"},"children":[]}]}]}]};exports.ic_pedal_bike_outline=ic_pedal_bike_outline;var ic_pedal_bike_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M18.18,10l-1.7-4.68C16.19,4.53,15.44,4,14.6,4H12v2h2.6l1.46,4h-4.81l-0.36-1H12V7H7v2h1.75l1.82,5H9.9 c-0.44-2.23-2.31-3.88-4.65-3.99C2.45,9.87,0,12.2,0,15c0,2.8,2.2,5,5,5c2.46,0,4.45-1.69,4.9-4h4.2c0.44,2.23,2.31,3.88,4.65,3.99 c2.8,0.13,5.25-2.19,5.25-5c0-2.8-2.2-5-5-5H18.18z M7.82,16c-0.4,1.17-1.49,2-2.82,2c-1.68,0-3-1.32-3-3s1.32-3,3-3 c1.33,0,2.42,0.83,2.82,2H5v2H7.82z M14.1,14h-1.4l-0.73-2H15C14.56,12.58,14.24,13.25,14.1,14z M19,18c-1.68,0-3-1.32-3-3 c0-0.93,0.41-1.73,1.05-2.28l0.96,2.64l1.88-0.68l-0.97-2.67c0.03,0,0.06-0.01,0.09-0.01c1.68,0,3,1.32,3,3S20.68,18,19,18z"},"children":[{"name":"path","attribs":{"d":"M18.18,10l-1.7-4.68C16.19,4.53,15.44,4,14.6,4H12v2h2.6l1.46,4h-4.81l-0.36-1H12V7H7v2h1.75l1.82,5H9.9 c-0.44-2.23-2.31-3.88-4.65-3.99C2.45,9.87,0,12.2,0,15c0,2.8,2.2,5,5,5c2.46,0,4.45-1.69,4.9-4h4.2c0.44,2.23,2.31,3.88,4.65,3.99 c2.8,0.13,5.25-2.19,5.25-5c0-2.8-2.2-5-5-5H18.18z M7.82,16c-0.4,1.17-1.49,2-2.82,2c-1.68,0-3-1.32-3-3s1.32-3,3-3 c1.33,0,2.42,0.83,2.82,2H5v2H7.82z M14.1,14h-1.4l-0.73-2H15C14.56,12.58,14.24,13.25,14.1,14z M19,18c-1.68,0-3-1.32-3-3 c0-0.93,0.41-1.73,1.05-2.28l0.96,2.64l1.88-0.68l-0.97-2.67c0.03,0,0.06-0.01,0.09-0.01c1.68,0,3,1.32,3,3S20.68,18,19,18z"},"children":[]}]}]}]};exports.ic_pedal_bike_twotone=ic_pedal_bike_twotone;var ic_person_pin={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2c-4.97 0-9 4.03-9 9 0 4.17 2.84 7.67 6.69 8.69L12 22l2.31-2.31C18.16 18.67 21 15.17 21 11c0-4.97-4.03-9-9-9zm0 2c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm0 14.3c-2.5 0-4.71-1.28-6-3.22.03-1.99 4-3.08 6-3.08 1.99 0 5.97 1.09 6 3.08-1.29 1.94-3.5 3.22-6 3.22z"},"children":[]}]};exports.ic_person_pin=ic_person_pin;var ic_person_pin_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h4l3 3 3-3h4c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 16h-4.83l-.59.59L12 20.17l-1.59-1.59-.58-.58H5V4h14v14zm-7-7c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm6 8.58c0-2.5-3.97-3.58-6-3.58s-6 1.08-6 3.58V17h12v-1.42zM8.48 15c.74-.51 2.23-1 3.52-1s2.78.49 3.52 1H8.48z"},"children":[]}]};exports.ic_person_pin_outline=ic_person_pin_outline;var ic_person_pin_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9.83 18l.59.59L12 20.17l1.59-1.59.58-.58H19V4H5v14h4.83zM12 5c1.65 0 3 1.35 3 3s-1.35 3-3 3-3-1.35-3-3 1.35-3 3-3zM6 15.58C6 13.08 9.97 12 12 12s6 1.08 6 3.58V17H6v-1.42z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M9 20l3 3 3-3h4c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h4zM5 4h14v14h-4.83l-.59.59L12 20.17l-1.59-1.59-.58-.58H5V4zm7 7c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm6 8.58c0-2.5-3.97-3.58-6-3.58s-6 1.08-6 3.58V17h12v-1.42zM8.48 15c.74-.51 2.23-1 3.52-1s2.78.49 3.52 1H8.48z"},"children":[]}]};exports.ic_person_pin_twotone=ic_person_pin_twotone;var ic_person_pin_circle={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M12,2C8.14,2,5,5.14,5,9c0,5.25,7,13,7,13s7-7.75,7-13C19,5.14,15.86,2,12,2z M12,4c1.1,0,2,0.9,2,2c0,1.11-0.9,2-2,2 s-2-0.89-2-2C10,4.9,10.9,4,12,4z M12,14c-1.67,0-3.14-0.85-4-2.15c0.02-1.32,2.67-2.05,4-2.05s3.98,0.73,4,2.05 C15.14,13.15,13.67,14,12,14z"},"children":[{"name":"path","attribs":{"d":"M12,2C8.14,2,5,5.14,5,9c0,5.25,7,13,7,13s7-7.75,7-13C19,5.14,15.86,2,12,2z M12,4c1.1,0,2,0.9,2,2c0,1.11-0.9,2-2,2 s-2-0.89-2-2C10,4.9,10.9,4,12,4z M12,14c-1.67,0-3.14-0.85-4-2.15c0.02-1.32,2.67-2.05,4-2.05s3.98,0.73,4,2.05 C15.14,13.15,13.67,14,12,14z"},"children":[]}]}]}]}]}]}]}]};exports.ic_person_pin_circle=ic_person_pin_circle;var ic_person_pin_circle_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 11c1.33 0 4 .67 4 2v.16c-.97 1.12-2.4 1.84-4 1.84s-3.03-.72-4-1.84V13c0-1.33 2.67-2 4-2zm0-1c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm6 .2C18 6.57 15.35 4 12 4s-6 2.57-6 6.2c0 2.34 1.95 5.44 6 9.14 4.05-3.7 6-6.8 6-9.14zM12 2c4.2 0 8 3.22 8 8.2 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8C4 5.22 7.8 2 12 2z"},"children":[]}]};exports.ic_person_pin_circle_outline=ic_person_pin_circle_outline;var ic_person_pin_circle_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0,0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18.5,10.2c0,2.57-2.1,5.79-6.16,9.51L12,20.01l-0.34-0.31C7.6,15.99,5.5,12.77,5.5,10.2 c0-3.84,2.82-6.7,6.5-6.7S18.5,6.35,18.5,10.2z","fill-opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12,11c1.33,0,4,0.67,4,2v0.16C15.03,14.28,13.6,15,12,15s-3.03-0.72-4-1.84V13C8,11.67,10.67,11,12,11z M12,10 c-1.1,0-2-0.9-2-2s0.9-2,2-2s2,0.9,2,2S13.1,10,12,10z M18,10.2C18,6.57,15.35,4,12,4s-6,2.57-6,6.2c0,2.34,1.95,5.44,6,9.14 C16.05,15.64,18,12.54,18,10.2z M12,2c4.2,0,8,3.22,8,8.2c0,3.32-2.67,7.25-8,11.8c-5.33-4.55-8-8.48-8-11.8C4,5.22,7.8,2,12,2z"},"children":[]}]};exports.ic_person_pin_circle_twotone=ic_person_pin_circle_twotone;var ic_pest_control={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M21,15v-2h-3.07c-0.05-0.39-0.12-0.77-0.22-1.14l2.58-1.49l-1-1.73L16.92,10c-0.28-0.48-0.62-0.91-0.99-1.29 C15.97,8.48,16,8.25,16,8c0-0.8-0.24-1.55-0.65-2.18L17,4.17l-1.41-1.41l-1.72,1.72c-1.68-0.89-3.1-0.33-3.73,0L8.41,2.76L7,4.17 l1.65,1.65C8.24,6.45,8,7.2,8,8c0,0.25,0.03,0.48,0.07,0.72C7.7,9.1,7.36,9.53,7.08,10L4.71,8.63l-1,1.73l2.58,1.49 c-0.1,0.37-0.17,0.75-0.22,1.14H3v2h3.07c0.05,0.39,0.12,0.77,0.22,1.14l-2.58,1.49l1,1.73L7.08,18c1.08,1.81,2.88,3,4.92,3 s3.84-1.19,4.92-3l2.37,1.37l1-1.73l-2.58-1.49c0.1-0.37,0.17-0.75,0.22-1.14H21z M13,17h-2v-6h2V17z"},"children":[{"name":"path","attribs":{"d":"M21,15v-2h-3.07c-0.05-0.39-0.12-0.77-0.22-1.14l2.58-1.49l-1-1.73L16.92,10c-0.28-0.48-0.62-0.91-0.99-1.29 C15.97,8.48,16,8.25,16,8c0-0.8-0.24-1.55-0.65-2.18L17,4.17l-1.41-1.41l-1.72,1.72c-1.68-0.89-3.1-0.33-3.73,0L8.41,2.76L7,4.17 l1.65,1.65C8.24,6.45,8,7.2,8,8c0,0.25,0.03,0.48,0.07,0.72C7.7,9.1,7.36,9.53,7.08,10L4.71,8.63l-1,1.73l2.58,1.49 c-0.1,0.37-0.17,0.75-0.22,1.14H3v2h3.07c0.05,0.39,0.12,0.77,0.22,1.14l-2.58,1.49l1,1.73L7.08,18c1.08,1.81,2.88,3,4.92,3 s3.84-1.19,4.92-3l2.37,1.37l1-1.73l-2.58-1.49c0.1-0.37,0.17-0.75,0.22-1.14H21z M13,17h-2v-6h2V17z"},"children":[]}]}]}]}]}]};exports.ic_pest_control=ic_pest_control;var ic_pest_control_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M21,15v-2h-3.07c-0.05-0.39-0.12-0.77-0.22-1.14l2.58-1.49l-1-1.73L16.92,10c-0.28-0.48-0.62-0.91-0.99-1.29 c0.1-0.56,0.2-1.69-0.58-2.89L17,4.17l-1.41-1.41l-1.72,1.72c-1.68-0.89-3.1-0.33-3.73,0L8.41,2.76L7,4.17l1.65,1.65 c-0.78,1.2-0.68,2.34-0.58,2.89C7.7,9.1,7.36,9.53,7.08,10L4.71,8.63l-1,1.73l2.58,1.49c-0.1,0.37-0.17,0.75-0.22,1.14H3v2h3.07 c0.05,0.39,0.12,0.77,0.22,1.14l-2.58,1.49l1,1.73L7.08,18c1.08,1.81,2.88,3,4.92,3s3.84-1.19,4.92-3l2.37,1.37l1-1.73l-2.58-1.49 c0.1-0.37,0.17-0.75,0.22-1.14H21z M12,6c0.88,0,1.62,0.57,1.88,1.36C13.29,7.13,12.66,7,12,7s-1.29,0.13-1.88,0.36 C10.38,6.57,11.12,6,12,6z M12,19c-2.21,0-4-2.24-4-5s1.79-5,4-5s4,2.24,4,5S14.21,19,12,19z"},"children":[{"name":"path","attribs":{"d":"M21,15v-2h-3.07c-0.05-0.39-0.12-0.77-0.22-1.14l2.58-1.49l-1-1.73L16.92,10c-0.28-0.48-0.62-0.91-0.99-1.29 c0.1-0.56,0.2-1.69-0.58-2.89L17,4.17l-1.41-1.41l-1.72,1.72c-1.68-0.89-3.1-0.33-3.73,0L8.41,2.76L7,4.17l1.65,1.65 c-0.78,1.2-0.68,2.34-0.58,2.89C7.7,9.1,7.36,9.53,7.08,10L4.71,8.63l-1,1.73l2.58,1.49c-0.1,0.37-0.17,0.75-0.22,1.14H3v2h3.07 c0.05,0.39,0.12,0.77,0.22,1.14l-2.58,1.49l1,1.73L7.08,18c1.08,1.81,2.88,3,4.92,3s3.84-1.19,4.92-3l2.37,1.37l1-1.73l-2.58-1.49 c0.1-0.37,0.17-0.75,0.22-1.14H21z M12,6c0.88,0,1.62,0.57,1.88,1.36C13.29,7.13,12.66,7,12,7s-1.29,0.13-1.88,0.36 C10.38,6.57,11.12,6,12,6z M12,19c-2.21,0-4-2.24-4-5s1.79-5,4-5s4,2.24,4,5S14.21,19,12,19z"},"children":[]}]},{"name":"rect","attribs":{"height":"6","width":"2","x":"11","y":"11"},"children":[{"name":"rect","attribs":{"height":"6","width":"2","x":"11","y":"11"},"children":[]}]}]}]}]}]};exports.ic_pest_control_outline=ic_pest_control_outline;var ic_pest_control_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M12,9c-2.21,0-4,2.24-4,5s1.79,5,4,5s4-2.24,4-5S14.21,9,12,9z M13,17h-2v-6h2V17z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M12,9c-2.21,0-4,2.24-4,5s1.79,5,4,5s4-2.24,4-5S14.21,9,12,9z M13,17h-2v-6h2V17z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M13.88,7.36C13.62,6.57,12.88,6,12,6s-1.62,0.57-1.88,1.36C10.71,7.13,11.34,7,12,7S13.29,7.13,13.88,7.36z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M13.88,7.36C13.62,6.57,12.88,6,12,6s-1.62,0.57-1.88,1.36C10.71,7.13,11.34,7,12,7S13.29,7.13,13.88,7.36z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M21,15v-2h-3.07c-0.05-0.39-0.12-0.77-0.22-1.14l2.58-1.49l-1-1.73L16.92,10c-0.28-0.48-0.62-0.91-0.99-1.29 c0.1-0.56,0.2-1.69-0.58-2.89L17,4.17l-1.41-1.41l-1.72,1.72c-1.68-0.89-3.1-0.33-3.73,0L8.41,2.76L7,4.17l1.65,1.65 c-0.78,1.2-0.68,2.34-0.58,2.89C7.7,9.1,7.36,9.53,7.08,10L4.71,8.63l-1,1.73l2.58,1.49c-0.1,0.37-0.17,0.75-0.22,1.14H3v2h3.07 c0.05,0.39,0.12,0.77,0.22,1.14l-2.58,1.49l1,1.73L7.08,18c1.08,1.81,2.88,3,4.92,3s3.84-1.19,4.92-3l2.37,1.37l1-1.73l-2.58-1.49 c0.1-0.37,0.17-0.75,0.22-1.14H21z M12,6c0.88,0,1.62,0.57,1.88,1.36C13.29,7.13,12.66,7,12,7s-1.29,0.13-1.88,0.36 C10.38,6.57,11.12,6,12,6z M12,19c-2.21,0-4-2.24-4-5s1.79-5,4-5s4,2.24,4,5S14.21,19,12,19z"},"children":[{"name":"path","attribs":{"d":"M21,15v-2h-3.07c-0.05-0.39-0.12-0.77-0.22-1.14l2.58-1.49l-1-1.73L16.92,10c-0.28-0.48-0.62-0.91-0.99-1.29 c0.1-0.56,0.2-1.69-0.58-2.89L17,4.17l-1.41-1.41l-1.72,1.72c-1.68-0.89-3.1-0.33-3.73,0L8.41,2.76L7,4.17l1.65,1.65 c-0.78,1.2-0.68,2.34-0.58,2.89C7.7,9.1,7.36,9.53,7.08,10L4.71,8.63l-1,1.73l2.58,1.49c-0.1,0.37-0.17,0.75-0.22,1.14H3v2h3.07 c0.05,0.39,0.12,0.77,0.22,1.14l-2.58,1.49l1,1.73L7.08,18c1.08,1.81,2.88,3,4.92,3s3.84-1.19,4.92-3l2.37,1.37l1-1.73l-2.58-1.49 c0.1-0.37,0.17-0.75,0.22-1.14H21z M12,6c0.88,0,1.62,0.57,1.88,1.36C13.29,7.13,12.66,7,12,7s-1.29,0.13-1.88,0.36 C10.38,6.57,11.12,6,12,6z M12,19c-2.21,0-4-2.24-4-5s1.79-5,4-5s4,2.24,4,5S14.21,19,12,19z"},"children":[]}]},{"name":"rect","attribs":{"height":"6","width":"2","x":"11","y":"11"},"children":[{"name":"rect","attribs":{"height":"6","width":"2","x":"11","y":"11"},"children":[]}]}]}]}]}]};exports.ic_pest_control_twotone=ic_pest_control_twotone;var ic_pest_control_rodent={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M21.31,17.38l-2.39-2.13C19.44,12.89,17.56,11,15.5,11c-1.16,0-3.5,0.9-3.5,3.5c0,0.97,0.39,1.84,1.03,2.47l-0.71,0.71 C11.5,16.87,11,15.74,11,14.5c0-1.7,0.96-3.17,2.35-3.93c-0.7-0.36-1.48-0.57-2.28-0.57c-2.38,0-4.37,1.65-4.91,3.87 C4.91,13.5,4,12.36,4,11c0-1.66,1.34-3,3-3c0.94,0,1.56,0,2.5,0C10.88,8,12,6.88,12,5.5C12,4.12,10.88,3,9.5,3H8C7.45,3,7,3.45,7,4 c0,0.55,0.45,1,1,1h1.5C9.78,5,10,5.22,10,5.5C10,5.78,9.78,6,9.5,6C9.47,6,9,6,7,6c-2.76,0-5,2.24-5,5c0,2.42,1.72,4.44,4,4.9 v0.03C6,18.73,8.27,21,11.07,21h8.86C21.8,21,22.74,18.66,21.31,17.38z M18,19c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1 C19,18.55,18.55,19,18,19z"},"children":[{"name":"path","attribs":{"d":"M21.31,17.38l-2.39-2.13C19.44,12.89,17.56,11,15.5,11c-1.16,0-3.5,0.9-3.5,3.5c0,0.97,0.39,1.84,1.03,2.47l-0.71,0.71 C11.5,16.87,11,15.74,11,14.5c0-1.7,0.96-3.17,2.35-3.93c-0.7-0.36-1.48-0.57-2.28-0.57c-2.38,0-4.37,1.65-4.91,3.87 C4.91,13.5,4,12.36,4,11c0-1.66,1.34-3,3-3c0.94,0,1.56,0,2.5,0C10.88,8,12,6.88,12,5.5C12,4.12,10.88,3,9.5,3H8C7.45,3,7,3.45,7,4 c0,0.55,0.45,1,1,1h1.5C9.78,5,10,5.22,10,5.5C10,5.78,9.78,6,9.5,6C9.47,6,9,6,7,6c-2.76,0-5,2.24-5,5c0,2.42,1.72,4.44,4,4.9 v0.03C6,18.73,8.27,21,11.07,21h8.86C21.8,21,22.74,18.66,21.31,17.38z M18,19c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1 C19,18.55,18.55,19,18,19z"},"children":[]}]}]}]};exports.ic_pest_control_rodent=ic_pest_control_rodent;var ic_pest_control_rodent_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"cx":"17","cy":"17","r":"1"},"children":[{"name":"circle","attribs":{"cx":"17","cy":"17","r":"1"},"children":[]}]},{"name":"path","attribs":{"d":"M20.86,14.97l-0.93-0.84c0.48-3.45-2.87-6.04-6.05-4.82C13.3,9.11,12.66,9,12,9c-4.26,0-5.65,3.58-5.89,4.85 C4.89,13.47,4,12.35,4,11c0-1.66,1.34-3,3-3h2.5C10.88,8,12,6.88,12,5.5C12,4.12,10.88,3,9.5,3H8C7.45,3,7,3.45,7,4 c0,0.55,0.45,1,1,1h1.5C9.78,5,10,5.22,10,5.5C10,5.78,9.78,6,9.5,6H7c-2.76,0-5,2.24-5,5c0,2.44,1.76,4.47,4.07,4.91 C6.51,18.79,8.99,21,12,21h6.53C21.64,21,23.23,17.11,20.86,14.97z M18.53,19H12c-1.21,0-2.34-0.54-3.11-1.48 c-0.78-0.95-1.06-2.16-0.8-3.41c0.31-1.48,1.51-2.69,2.99-3.01c0.22-0.05,0.45-0.06,0.67-0.07C11.28,11.74,11,12.58,11,13.5 c0,1.24,0.5,2.37,1.32,3.18l1.41-1.41C13.28,14.82,13,14.19,13,13.5c0-1.42,1.2-2.5,2.5-2.5c1.38,0,2.5,1.12,2.5,2.5 c0,0.46-0.13,0.88-0.35,1.25l1.87,1.7c0.31,0.28,0.48,0.67,0.48,1.09C20,18.34,19.34,19,18.53,19z"},"children":[{"name":"path","attribs":{"d":"M20.86,14.97l-0.93-0.84c0.48-3.45-2.87-6.04-6.05-4.82C13.3,9.11,12.66,9,12,9c-4.26,0-5.65,3.58-5.89,4.85 C4.89,13.47,4,12.35,4,11c0-1.66,1.34-3,3-3h2.5C10.88,8,12,6.88,12,5.5C12,4.12,10.88,3,9.5,3H8C7.45,3,7,3.45,7,4 c0,0.55,0.45,1,1,1h1.5C9.78,5,10,5.22,10,5.5C10,5.78,9.78,6,9.5,6H7c-2.76,0-5,2.24-5,5c0,2.44,1.76,4.47,4.07,4.91 C6.51,18.79,8.99,21,12,21h6.53C21.64,21,23.23,17.11,20.86,14.97z M18.53,19H12c-1.21,0-2.34-0.54-3.11-1.48 c-0.78-0.95-1.06-2.16-0.8-3.41c0.31-1.48,1.51-2.69,2.99-3.01c0.22-0.05,0.45-0.06,0.67-0.07C11.28,11.74,11,12.58,11,13.5 c0,1.24,0.5,2.37,1.32,3.18l1.41-1.41C13.28,14.82,13,14.19,13,13.5c0-1.42,1.2-2.5,2.5-2.5c1.38,0,2.5,1.12,2.5,2.5 c0,0.46-0.13,0.88-0.35,1.25l1.87,1.7c0.31,0.28,0.48,0.67,0.48,1.09C20,18.34,19.34,19,18.53,19z"},"children":[]}]}]}]}]}]};exports.ic_pest_control_rodent_outline=ic_pest_control_rodent_outline;var ic_pest_control_rodent_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M17.65,14.75C17.87,14.38,18,13.96,18,13.5c0-1.38-1.12-2.5-2.5-2.5c-1.3,0-2.5,1.08-2.5,2.5 c0,0.69,0.28,1.32,0.73,1.77l-1.41,1.41C11.5,15.87,11,14.74,11,13.5c0-0.92,0.28-1.76,0.75-2.47c-0.22,0.01-0.44,0.02-0.67,0.07 c-1.48,0.32-2.68,1.53-2.99,3.01c-0.26,1.24,0.02,2.45,0.8,3.41C9.66,18.46,10.79,19,12,19h6.53c0.81,0,1.47-0.66,1.47-1.47 c0-0.41-0.17-0.81-0.48-1.09L17.65,14.75z M17,18c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C18,17.55,17.55,18,17,18z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M17.65,14.75C17.87,14.38,18,13.96,18,13.5c0-1.38-1.12-2.5-2.5-2.5c-1.3,0-2.5,1.08-2.5,2.5 c0,0.69,0.28,1.32,0.73,1.77l-1.41,1.41C11.5,15.87,11,14.74,11,13.5c0-0.92,0.28-1.76,0.75-2.47c-0.22,0.01-0.44,0.02-0.67,0.07 c-1.48,0.32-2.68,1.53-2.99,3.01c-0.26,1.24,0.02,2.45,0.8,3.41C9.66,18.46,10.79,19,12,19h6.53c0.81,0,1.47-0.66,1.47-1.47 c0-0.41-0.17-0.81-0.48-1.09L17.65,14.75z M17,18c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C18,17.55,17.55,18,17,18z","opacity":".3"},"children":[]}]},{"name":"circle","attribs":{"cx":"17","cy":"17","r":"1"},"children":[{"name":"circle","attribs":{"cx":"17","cy":"17","r":"1"},"children":[]}]},{"name":"path","attribs":{"d":"M20.86,14.97l-0.93-0.84c0.48-3.45-2.87-6.04-6.05-4.82C13.3,9.11,12.66,9,12,9c-4.26,0-5.65,3.58-5.89,4.85 C4.89,13.47,4,12.35,4,11c0-1.66,1.34-3,3-3h2.5C10.88,8,12,6.88,12,5.5C12,4.12,10.88,3,9.5,3H8C7.45,3,7,3.45,7,4 c0,0.55,0.45,1,1,1h1.5C9.78,5,10,5.22,10,5.5C10,5.78,9.78,6,9.5,6H7c-2.76,0-5,2.24-5,5c0,2.44,1.76,4.47,4.07,4.91 C6.51,18.79,8.99,21,12,21h6.53C21.64,21,23.23,17.11,20.86,14.97z M18.53,19H12c-1.21,0-2.34-0.54-3.11-1.48 c-0.78-0.95-1.06-2.16-0.8-3.41c0.31-1.48,1.51-2.69,2.99-3.01c0.22-0.05,0.45-0.06,0.67-0.07C11.28,11.74,11,12.58,11,13.5 c0,1.24,0.5,2.37,1.32,3.18l1.41-1.41C13.28,14.82,13,14.19,13,13.5c0-1.42,1.2-2.5,2.5-2.5c1.38,0,2.5,1.12,2.5,2.5 c0,0.46-0.13,0.88-0.35,1.25l1.87,1.7c0.31,0.28,0.48,0.67,0.48,1.09C20,18.34,19.34,19,18.53,19z"},"children":[{"name":"path","attribs":{"d":"M20.86,14.97l-0.93-0.84c0.48-3.45-2.87-6.04-6.05-4.82C13.3,9.11,12.66,9,12,9c-4.26,0-5.65,3.58-5.89,4.85 C4.89,13.47,4,12.35,4,11c0-1.66,1.34-3,3-3h2.5C10.88,8,12,6.88,12,5.5C12,4.12,10.88,3,9.5,3H8C7.45,3,7,3.45,7,4 c0,0.55,0.45,1,1,1h1.5C9.78,5,10,5.22,10,5.5C10,5.78,9.78,6,9.5,6H7c-2.76,0-5,2.24-5,5c0,2.44,1.76,4.47,4.07,4.91 C6.51,18.79,8.99,21,12,21h6.53C21.64,21,23.23,17.11,20.86,14.97z M18.53,19H12c-1.21,0-2.34-0.54-3.11-1.48 c-0.78-0.95-1.06-2.16-0.8-3.41c0.31-1.48,1.51-2.69,2.99-3.01c0.22-0.05,0.45-0.06,0.67-0.07C11.28,11.74,11,12.58,11,13.5 c0,1.24,0.5,2.37,1.32,3.18l1.41-1.41C13.28,14.82,13,14.19,13,13.5c0-1.42,1.2-2.5,2.5-2.5c1.38,0,2.5,1.12,2.5,2.5 c0,0.46-0.13,0.88-0.35,1.25l1.87,1.7c0.31,0.28,0.48,0.67,0.48,1.09C20,18.34,19.34,19,18.53,19z"},"children":[]}]}]}]}]}]};exports.ic_pest_control_rodent_twotone=ic_pest_control_rodent_twotone;var ic_pin_drop={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 8c0-3.31-2.69-6-6-6S6 4.69 6 8c0 4.5 6 11 6 11s6-6.5 6-11zm-8 0c0-1.1.9-2 2-2s2 .9 2 2-.89 2-2 2c-1.1 0-2-.9-2-2zM5 20v2h14v-2H5z"},"children":[]}]};exports.ic_pin_drop=ic_pin_drop;var ic_pin_drop_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 4c1.93 0 5 1.4 5 5.15 0 2.16-1.72 4.67-5 7.32-3.28-2.65-5-5.17-5-7.32C7 5.4 10.07 4 12 4m0-2C8.73 2 5 4.46 5 9.15c0 3.12 2.33 6.41 7 9.85 4.67-3.44 7-6.73 7-9.85C19 4.46 15.27 2 12 2z"},"children":[]},{"name":"path","attribs":{"d":"M12 7c-1.1 0-2 .9-2 2s.9 2 2 2a2 2 0 1 0 0-4zM5 20h14v2H5v-2z"},"children":[]}]};exports.ic_pin_drop_outline=ic_pin_drop_outline;var ic_pin_drop_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M12,3C9.19,3,6,5.11,6,9.13c0,2.68,2,5.49,6,8.44c4-2.95,6-5.77,6-8.44C18,5.11,14.81,3,12,3z","fill-opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M0,0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12,4c1.93,0,5,1.4,5,5.15c0,2.16-1.72,4.67-5,7.32c-3.28-2.65-5-5.17-5-7.32C7,5.4,10.07,4,12,4 M12,2 C8.73,2,5,4.46,5,9.15c0,3.12,2.33,6.41,7,9.85c4.67-3.44,7-6.73,7-9.85C19,4.46,15.27,2,12,2z"},"children":[]},{"name":"path","attribs":{"d":"M12,7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S13.1,7,12,7z M5,20h14v2H5V20z"},"children":[]}]};exports.ic_pin_drop_twotone=ic_pin_drop_twotone;var ic_place={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z"},"children":[]}]};exports.ic_place=ic_place;var ic_place_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 12c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm6-1.8C18 6.57 15.35 4 12 4s-6 2.57-6 6.2c0 2.34 1.95 5.44 6 9.14 4.05-3.7 6-6.8 6-9.14zM12 2c4.2 0 8 3.22 8 8.2 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8C4 5.22 7.8 2 12 2z"},"children":[]}]};exports.ic_place_outline=ic_place_outline;var ic_place_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M18.5,10.2c0,2.57-2.1,5.79-6.16,9.51L12,20.01l-0.34-0.31C7.6,15.99,5.5,12.77,5.5,10.2 c0-3.84,2.82-6.7,6.5-6.7S18.5,6.35,18.5,10.2z","fill-opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12,2c4.2,0,8,3.22,8,8.2c0,3.32-2.67,7.25-8,11.8c-5.33-4.55-8-8.48-8-11.8C4,5.22,7.8,2,12,2z M18,10.2 C18,6.57,15.35,4,12,4s-6,2.57-6,6.2c0,2.34,1.95,5.44,6,9.14C16.05,15.64,18,12.54,18,10.2z M12,12c-1.1,0-2-0.9-2-2s0.9-2,2-2 s2,0.9,2,2S13.1,12,12,12z"},"children":[]},{"name":"path","attribs":{"d":"M0,0h24v24H0V0z","fill":"none"},"children":[]}]};exports.ic_place_twotone=ic_place_twotone;var ic_plumbing={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M19.28,4.93l-2.12-2.12c-0.78-0.78-2.05-0.78-2.83,0L11.5,5.64l2.12,2.12l2.12-2.12l3.54,3.54 C20.45,8,20.45,6.1,19.28,4.93z"},"children":[{"name":"path","attribs":{"d":"M19.28,4.93l-2.12-2.12c-0.78-0.78-2.05-0.78-2.83,0L11.5,5.64l2.12,2.12l2.12-2.12l3.54,3.54 C20.45,8,20.45,6.1,19.28,4.93z"},"children":[]}]},{"name":"path","attribs":{"d":"M5.49,13.77c0.59,0.59,1.54,0.59,2.12,0l2.47-2.47L7.96,9.17l-2.47,2.47C4.9,12.23,4.9,13.18,5.49,13.77L5.49,13.77z"},"children":[{"name":"path","attribs":{"d":"M5.49,13.77c0.59,0.59,1.54,0.59,2.12,0l2.47-2.47L7.96,9.17l-2.47,2.47C4.9,12.23,4.9,13.18,5.49,13.77L5.49,13.77z"},"children":[]}]},{"name":"path","attribs":{"d":"M15.04,7.76l-0.71,0.71l-0.71,0.71l-3.18-3.18C9.85,5.4,8.9,5.4,8.32,5.99c-0.59,0.59-0.59,1.54,0,2.12l3.18,3.18 L10.79,12l-6.36,6.36c-0.78,0.78-0.78,2.05,0,2.83c0.78,0.78,2.05,0.78,2.83,0L16.45,12c0.39,0.39,1.02,0.39,1.41,0 c0.39-0.39,0.39-1.02,0-1.41L15.04,7.76z"},"children":[{"name":"path","attribs":{"d":"M15.04,7.76l-0.71,0.71l-0.71,0.71l-3.18-3.18C9.85,5.4,8.9,5.4,8.32,5.99c-0.59,0.59-0.59,1.54,0,2.12l3.18,3.18 L10.79,12l-6.36,6.36c-0.78,0.78-0.78,2.05,0,2.83c0.78,0.78,2.05,0.78,2.83,0L16.45,12c0.39,0.39,1.02,0.39,1.41,0 c0.39-0.39,0.39-1.02,0-1.41L15.04,7.76z"},"children":[]}]}]}]}]}]};exports.ic_plumbing=ic_plumbing;var ic_plumbing_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M19.28,4.93l-2.12-2.12c-0.78-0.78-2.05-0.78-2.83,0L11.5,5.64l2.12,2.12l2.12-2.12l3.54,3.54 C20.45,8,20.45,6.1,19.28,4.93z"},"children":[{"name":"path","attribs":{"d":"M19.28,4.93l-2.12-2.12c-0.78-0.78-2.05-0.78-2.83,0L11.5,5.64l2.12,2.12l2.12-2.12l3.54,3.54 C20.45,8,20.45,6.1,19.28,4.93z"},"children":[]}]},{"name":"path","attribs":{"d":"M5.49,13.77c0.59,0.59,1.54,0.59,2.12,0l2.47-2.47L7.96,9.17l-2.47,2.47C4.9,12.23,4.9,13.18,5.49,13.77L5.49,13.77z"},"children":[{"name":"path","attribs":{"d":"M5.49,13.77c0.59,0.59,1.54,0.59,2.12,0l2.47-2.47L7.96,9.17l-2.47,2.47C4.9,12.23,4.9,13.18,5.49,13.77L5.49,13.77z"},"children":[]}]},{"name":"path","attribs":{"d":"M15.04,7.76l-0.71,0.71l-0.71,0.71l-3.18-3.18C9.85,5.4,8.9,5.4,8.32,5.99c-0.59,0.59-0.59,1.54,0,2.12l3.18,3.18 L10.79,12l-6.36,6.36c-0.78,0.78-0.78,2.05,0,2.83c0.78,0.78,2.05,0.78,2.83,0L16.45,12c0.39,0.39,1.02,0.39,1.41,0 c0.39-0.39,0.39-1.02,0-1.41L15.04,7.76z"},"children":[{"name":"path","attribs":{"d":"M15.04,7.76l-0.71,0.71l-0.71,0.71l-3.18-3.18C9.85,5.4,8.9,5.4,8.32,5.99c-0.59,0.59-0.59,1.54,0,2.12l3.18,3.18 L10.79,12l-6.36,6.36c-0.78,0.78-0.78,2.05,0,2.83c0.78,0.78,2.05,0.78,2.83,0L16.45,12c0.39,0.39,1.02,0.39,1.41,0 c0.39-0.39,0.39-1.02,0-1.41L15.04,7.76z"},"children":[]}]}]}]}]}]};exports.ic_plumbing_outline=ic_plumbing_outline;var ic_plumbing_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M19.28,4.93l-2.12-2.12c-0.78-0.78-2.05-0.78-2.83,0L11.5,5.64l2.12,2.12l2.12-2.12l3.54,3.54 C20.45,8,20.45,6.1,19.28,4.93z"},"children":[{"name":"path","attribs":{"d":"M19.28,4.93l-2.12-2.12c-0.78-0.78-2.05-0.78-2.83,0L11.5,5.64l2.12,2.12l2.12-2.12l3.54,3.54 C20.45,8,20.45,6.1,19.28,4.93z"},"children":[]}]},{"name":"path","attribs":{"d":"M5.49,13.77c0.59,0.59,1.54,0.59,2.12,0l2.47-2.47L7.96,9.17l-2.47,2.47C4.9,12.23,4.9,13.18,5.49,13.77L5.49,13.77z"},"children":[{"name":"path","attribs":{"d":"M5.49,13.77c0.59,0.59,1.54,0.59,2.12,0l2.47-2.47L7.96,9.17l-2.47,2.47C4.9,12.23,4.9,13.18,5.49,13.77L5.49,13.77z"},"children":[]}]},{"name":"path","attribs":{"d":"M15.04,7.76l-0.71,0.71l-0.71,0.71l-3.18-3.18C9.85,5.4,8.9,5.4,8.32,5.99c-0.59,0.59-0.59,1.54,0,2.12l3.18,3.18 L10.79,12l-6.36,6.36c-0.78,0.78-0.78,2.05,0,2.83c0.78,0.78,2.05,0.78,2.83,0L16.45,12c0.39,0.39,1.02,0.39,1.41,0 c0.39-0.39,0.39-1.02,0-1.41L15.04,7.76z"},"children":[{"name":"path","attribs":{"d":"M15.04,7.76l-0.71,0.71l-0.71,0.71l-3.18-3.18C9.85,5.4,8.9,5.4,8.32,5.99c-0.59,0.59-0.59,1.54,0,2.12l3.18,3.18 L10.79,12l-6.36,6.36c-0.78,0.78-0.78,2.05,0,2.83c0.78,0.78,2.05,0.78,2.83,0L16.45,12c0.39,0.39,1.02,0.39,1.41,0 c0.39-0.39,0.39-1.02,0-1.41L15.04,7.76z"},"children":[]}]}]}]}]}]};exports.ic_plumbing_twotone=ic_plumbing_twotone;var ic_railway_alert={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M23 8a7 7 0 0 0-11.95-4.95A33.8 33.8 0 0 0 9 3c-4.42 0-8 .5-8 4v10.5A3.5 3.5 0 0 0 4.5 21L3 22.5v.5h12v-.5L13.5 21a3.5 3.5 0 0 0 3.5-3.5v-2.58A7 7 0 0 0 23 8zM3 12V7h6.08a6.96 6.96 0 0 0 1.18 5H3zm6 7c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm7.71-6.06l-.2.03L16 13l-.47-.02-.16-.02-.29-.04-.2-.04-.22-.06a1.55 1.55 0 0 1-.23-.07l-.13-.05A4.99 4.99 0 0 1 11.1 7c.04-.19.09-.37.15-.54l.05-.14.15-.38.07-.15.2-.36.07-.12.3-.42.02-.02c.24-.3.52-.57.82-.81l.01-.01.46-.32.03-.02A5.25 5.25 0 0 1 16 3a5 5 0 0 1 .71 9.94zM15 4h2v5h-2zm0 6h2v2h-2z"},"children":[]}]};exports.ic_railway_alert=ic_railway_alert;var ic_ramen_dining={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M9,6H8V4.65l1-0.12V6z M9,12H8V7h1V12z M6,7h1v5H6V7z M6,4.88l1-0.12V6H6V4.88z M22,3V2L5,4v8H2c0,3.69,2.47,6.86,6,8.25 V22h8v-1.75c3.53-1.39,6-4.56,6-8.25H10V7h12V6H10V4.41L22,3z"},"children":[{"name":"path","attribs":{"d":"M9,6H8V4.65l1-0.12V6z M9,12H8V7h1V12z M6,7h1v5H6V7z M6,4.88l1-0.12V6H6V4.88z M22,3V2L5,4v8H2c0,3.69,2.47,6.86,6,8.25 V22h8v-1.75c3.53-1.39,6-4.56,6-8.25H10V7h12V6H10V4.41L22,3z"},"children":[]}]}]}]};exports.ic_ramen_dining=ic_ramen_dining;var ic_rate_review={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0zm15.35 6.41l-1.77-1.77c-.2-.2-.51-.2-.71 0L6 11.53V14h2.47l6.88-6.88c.2-.19.2-.51 0-.71z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM6 14v-2.47l6.88-6.88c.2-.2.51-.2.71 0l1.77 1.77c.2.2.2.51 0 .71L8.47 14H6zm12 0h-7.5l2-2H18v2z"},"children":[]}]};exports.ic_rate_review=ic_rate_review;var ic_rate_review_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17l-.59.59-.58.58V4h16v12zm-9.5-2H18v-2h-5.5zm3.86-5.87c.2-.2.2-.51 0-.71l-1.77-1.77c-.2-.2-.51-.2-.71 0L6 11.53V14h2.47l5.89-5.87z"},"children":[]}]};exports.ic_rate_review_outline=ic_rate_review_outline;var ic_rate_review_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 17.17l.59-.59.58-.58H20V4H4v13.17zM18 14h-7.5l2-2H18v2zM6 11.53l5.88-5.88c.2-.2.51-.2.71 0l1.77 1.77c.2.2.2.51 0 .71L8.47 14H6v-2.47z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17l-.59.59-.58.58V4h16v12zm-9.5-2H18v-2h-5.5zm3.86-5.87c.2-.2.2-.51 0-.71l-1.77-1.77c-.2-.2-.51-.2-.71 0L6 11.53V14h2.47l5.89-5.87z"},"children":[]}]};exports.ic_rate_review_twotone=ic_rate_review_twotone;var ic_restaurant={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11 9H9V2H7v7H5V2H3v7c0 2.12 1.66 3.84 3.75 3.97V22h2.5v-9.03C11.34 12.84 13 11.12 13 9V2h-2v7zm5-3v8h2.5v8H21V2c-2.76 0-5 2.24-5 4z"},"children":[]}]};exports.ic_restaurant=ic_restaurant;var ic_restaurant_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16 6v8h3v8h2V2c-2.76 0-5 2.24-5 4zm-5 3H9V2H7v7H5V2H3v7c0 2.21 1.79 4 4 4v9h2v-9c2.21 0 4-1.79 4-4V2h-2v7z"},"children":[]}]};exports.ic_restaurant_outline=ic_restaurant_outline;var ic_restaurant_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16 6v8h3v8h2V2c-2.76 0-5 2.24-5 4zm-5 3H9V2H7v7H5V2H3v7c0 2.21 1.79 4 4 4v9h2v-9c2.21 0 4-1.79 4-4V2h-2v7z"},"children":[]}]};exports.ic_restaurant_twotone=ic_restaurant_twotone;var ic_restaurant_menu={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8.1 13.34l2.83-2.83L3.91 3.5c-1.56 1.56-1.56 4.09 0 5.66l4.19 4.18zm6.78-1.81c1.53.71 3.68.21 5.27-1.38 1.91-1.91 2.28-4.65.81-6.12-1.46-1.46-4.2-1.1-6.12.81-1.59 1.59-2.09 3.74-1.38 5.27L3.7 19.87l1.41 1.41L12 14.41l6.88 6.88 1.41-1.41L13.41 13l1.47-1.47z"},"children":[]}]};exports.ic_restaurant_menu=ic_restaurant_menu;var ic_restaurant_menu_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8.1 13.34l2.83-2.83L3.91 3.5c-1.56 1.56-1.56 4.09 0 5.66l4.19 4.18zm6.78-1.81c1.53.71 3.68.21 5.27-1.38 1.91-1.91 2.28-4.65.81-6.12-1.46-1.46-4.2-1.1-6.12.81-1.59 1.59-2.09 3.74-1.38 5.27L3.7 19.87l1.41 1.41L12 14.41l6.88 6.88 1.41-1.41L13.41 13l1.47-1.47z"},"children":[]}]};exports.ic_restaurant_menu_outline=ic_restaurant_menu_outline;var ic_restaurant_menu_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8.1 13.34l2.83-2.83L3.91 3.5c-1.56 1.56-1.56 4.09 0 5.66l4.19 4.18zm12.05-3.19c1.91-1.91 2.28-4.65.81-6.12-1.46-1.46-4.2-1.1-6.12.81-1.59 1.59-2.09 3.74-1.38 5.27L3.7 19.87l1.41 1.41L12 14.41l6.88 6.88 1.41-1.41L13.41 13l1.47-1.47c1.53.71 3.68.21 5.27-1.38z"},"children":[]}]};exports.ic_restaurant_menu_twotone=ic_restaurant_menu_twotone;var ic_run_circle={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M13.5,6c0.55,0,1,0.45,1,1 c0,0.55-0.45,1-1,1s-1-0.45-1-1C12.5,6.45,12.95,6,13.5,6z M16,12c-0.7,0-2.01-0.54-2.91-1.76l-0.41,2.35L14,14.03V18h-1v-3.58 l-1.11-1.21l-0.52,2.64L7.6,15.08l0.2-0.98l2.78,0.57l0.96-4.89L10,10.35V12H9V9.65l3.28-1.21c0.49-0.18,1.03,0.06,1.26,0.53 C14.37,10.67,15.59,11,16,11V12z"},"children":[{"name":"path","attribs":{"d":"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M13.5,6c0.55,0,1,0.45,1,1 c0,0.55-0.45,1-1,1s-1-0.45-1-1C12.5,6.45,12.95,6,13.5,6z M16,12c-0.7,0-2.01-0.54-2.91-1.76l-0.41,2.35L14,14.03V18h-1v-3.58 l-1.11-1.21l-0.52,2.64L7.6,15.08l0.2-0.98l2.78,0.57l0.96-4.89L10,10.35V12H9V9.65l3.28-1.21c0.49-0.18,1.03,0.06,1.26,0.53 C14.37,10.67,15.59,11,16,11V12z"},"children":[]}]}]}]};exports.ic_run_circle=ic_run_circle;var ic_run_circle_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,20c-4.42,0-8-3.58-8-8 s3.58-8,8-8s8,3.58,8,8S16.42,20,12,20z"},"children":[{"name":"path","attribs":{"d":"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,20c-4.42,0-8-3.58-8-8 s3.58-8,8-8s8,3.58,8,8S16.42,20,12,20z"},"children":[]}]},{"name":"path","attribs":{"d":"M13.54,8.97c-0.23-0.47-0.76-0.71-1.26-0.53L9,9.65V12h1v-1.65l1.54-0.57l-0.96,4.89L7.8,14.1l-0.2,0.98l3.76,0.77 l0.52-2.64L13,14.42V18h1v-3.97l-1.32-1.44l0.41-2.35C13.99,11.46,15.3,12,16,12v-1C15.59,11,14.37,10.67,13.54,8.97z"},"children":[{"name":"path","attribs":{"d":"M13.54,8.97c-0.23-0.47-0.76-0.71-1.26-0.53L9,9.65V12h1v-1.65l1.54-0.57l-0.96,4.89L7.8,14.1l-0.2,0.98l3.76,0.77 l0.52-2.64L13,14.42V18h1v-3.97l-1.32-1.44l0.41-2.35C13.99,11.46,15.3,12,16,12v-1C15.59,11,14.37,10.67,13.54,8.97z"},"children":[]}]},{"name":"circle","attribs":{"cx":"13.5","cy":"7","r":"1"},"children":[{"name":"circle","attribs":{"cx":"13.5","cy":"7","r":"1"},"children":[]}]}]}]}]}]};exports.ic_run_circle_outline=ic_run_circle_outline;var ic_run_circle_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M12,4c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S16.42,4,12,4z M13.5,6c0.55,0,1,0.45,1,1 c0,0.55-0.45,1-1,1s-1-0.45-1-1C12.5,6.45,12.95,6,13.5,6z M16,12c-0.7,0-2.01-0.54-2.91-1.76l-0.41,2.35L14,14.03V18h-1v-3.58 l-1.11-1.21l-0.52,2.64L7.6,15.08l0.2-0.98l2.78,0.57l0.96-4.89L10,10.35V12H9V9.65l3.28-1.21c0.49-0.18,1.03,0.06,1.26,0.53 C14.37,10.67,15.59,11,16,11V12z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M12,4c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S16.42,4,12,4z M13.5,6c0.55,0,1,0.45,1,1 c0,0.55-0.45,1-1,1s-1-0.45-1-1C12.5,6.45,12.95,6,13.5,6z M16,12c-0.7,0-2.01-0.54-2.91-1.76l-0.41,2.35L14,14.03V18h-1v-3.58 l-1.11-1.21l-0.52,2.64L7.6,15.08l0.2-0.98l2.78,0.57l0.96-4.89L10,10.35V12H9V9.65l3.28-1.21c0.49-0.18,1.03,0.06,1.26,0.53 C14.37,10.67,15.59,11,16,11V12z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,20c-4.42,0-8-3.58-8-8 s3.58-8,8-8s8,3.58,8,8S16.42,20,12,20z"},"children":[{"name":"path","attribs":{"d":"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,20c-4.42,0-8-3.58-8-8 s3.58-8,8-8s8,3.58,8,8S16.42,20,12,20z"},"children":[]}]},{"name":"path","attribs":{"d":"M13.54,8.97c-0.23-0.47-0.76-0.71-1.26-0.53L9,9.65V12h1v-1.65l1.54-0.57l-0.96,4.89L7.8,14.1l-0.2,0.98l3.76,0.77 l0.52-2.64L13,14.42V18h1v-3.97l-1.32-1.44l0.41-2.35C13.99,11.46,15.3,12,16,12v-1C15.59,11,14.37,10.67,13.54,8.97z"},"children":[{"name":"path","attribs":{"d":"M13.54,8.97c-0.23-0.47-0.76-0.71-1.26-0.53L9,9.65V12h1v-1.65l1.54-0.57l-0.96,4.89L7.8,14.1l-0.2,0.98l3.76,0.77 l0.52-2.64L13,14.42V18h1v-3.97l-1.32-1.44l0.41-2.35C13.99,11.46,15.3,12,16,12v-1C15.59,11,14.37,10.67,13.54,8.97z"},"children":[]}]},{"name":"circle","attribs":{"cx":"13.5","cy":"7","r":"1"},"children":[{"name":"circle","attribs":{"cx":"13.5","cy":"7","r":"1"},"children":[]}]}]}]}]}]};exports.ic_run_circle_twotone=ic_run_circle_twotone;var ic_satellite={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5 4.99h3C8 6.65 6.66 8 5 8V4.99zM5 12v-2c2.76 0 5-2.25 5-5.01h2C12 8.86 8.87 12 5 12zm0 6l3.5-4.5 2.5 3.01L14.5 12l4.5 6H5z"},"children":[]}]};exports.ic_satellite=ic_satellite;var ic_satellite_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM8.57 6H6v2.58c1.42 0 2.57-1.16 2.57-2.58zM12 6h-1.71c0 2.36-1.92 4.29-4.29 4.29V12c3.32 0 6-2.69 6-6zm2.14 5.86l-3 3.87L9 13.15 6 17h12z"},"children":[]}]};exports.ic_satellite_outline=ic_satellite_outline;var ic_satellite_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 19h14V5H5v14zM6 6h2.57c0 1.42-1.15 2.58-2.57 2.58V6zm0 4.29c2.37 0 4.28-1.93 4.28-4.29H12c0 3.31-2.68 6-6 6v-1.71zm3 2.86l2.14 2.58 3-3.86L18 17H6l3-3.85z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM8.57 6H6v2.58c1.42 0 2.57-1.16 2.57-2.58zM12 6h-1.72c0 2.36-1.91 4.29-4.28 4.29V12c3.32 0 6-2.69 6-6zm2.14 5.86l-3 3.87L9 13.15 6 17h12z"},"children":[]}]};exports.ic_satellite_twotone=ic_satellite_twotone;var ic_set_meal={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M21.05,17.56L3.08,18.5L3,17l17.98-0.94L21.05,17.56z M21,19.48H3v1.5h18V19.48z M22,5v7c0,1.1-0.9,2-2,2H4 c-1.1,0-2-0.9-2-2V5c0-1.1,0.9-2,2-2h16C21.1,3,22,3.9,22,5z M20,6c-1.68,0-3.04,0.98-3.21,2.23C16.15,7.5,14.06,5.5,10.25,5.5 c-4.67,0-6.75,3-6.75,3s2.08,3,6.75,3c3.81,0,5.9-2,6.54-2.73C16.96,10.02,18.32,11,20,11V6z"},"children":[]}]};exports.ic_set_meal=ic_set_meal;var ic_set_meal_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M21.05,17.56L3.08,18.5L3,17l17.98-0.94L21.05,17.56z M21,19.48H3v1.5h18V19.48z M23,13V4c0-1.1-0.9-2-2-2H3 C1.9,2,1,2.9,1,4v9c0,1.1,0.9,2,2,2h18C22.1,15,23,14.1,23,13z M21,13H3V4h18V13z M20,6c-1.68,0-3.04,0.98-3.21,2.23 C16.15,7.5,14.06,5.5,10.25,5.5c-4.67,0-6.75,3-6.75,3s2.08,3,6.75,3c3.81,0,5.9-2,6.54-2.73C16.96,10.02,18.32,11,20,11V6z"},"children":[]}]};exports.ic_set_meal_outline=ic_set_meal_outline;var ic_set_meal_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M21,13H3V4h18V13z M20,6c-1.68,0-3.04,0.98-3.21,2.23C16.15,7.5,14.06,5.5,10.25,5.5c-4.67,0-6.75,3-6.75,3 s2.08,3,6.75,3c3.81,0,5.9-2,6.54-2.73C16.96,10.02,18.32,11,20,11V6z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M21.05,17.56L3.08,18.5L3,17l17.98-0.94L21.05,17.56z M21,19.48H3v1.5h18V19.48z M23,13V4c0-1.1-0.9-2-2-2H3 C1.9,2,1,2.9,1,4v9c0,1.1,0.9,2,2,2h18C22.1,15,23,14.1,23,13z M21,13H3V4h18V13z M20,6c-1.68,0-3.04,0.98-3.21,2.23 C16.15,7.5,14.06,5.5,10.25,5.5c-4.67,0-6.75,3-6.75,3s2.08,3,6.75,3c3.81,0,5.9-2,6.54-2.73C16.96,10.02,18.32,11,20,11V6z"},"children":[]}]};exports.ic_set_meal_twotone=ic_set_meal_twotone;var ic_store_mall_directory={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 4H4v2h16V4zm1 10v-2l-1-5H4l-1 5v2h1v6h10v-6h4v6h2v-6h1zm-9 4H6v-4h6v4z"},"children":[]}]};exports.ic_store_mall_directory=ic_store_mall_directory;var ic_store_mall_directory_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18.36 9l.6 3H5.04l.6-3h12.72M20 4H4v2h16V4zm0 3H4l-1 5v2h1v6h10v-6h4v6h2v-6h1v-2l-1-5zM6 18v-4h6v4H6z"},"children":[]}]};exports.ic_store_mall_directory_outline=ic_store_mall_directory_outline;var ic_store_mall_directory_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5.64 9l-.6 3h13.92l-.6-3z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M4 7l-1 5v2h1v6h10v-6h4v6h2v-6h1v-2l-1-5H4zm8 11H6v-4h6v4zm-6.96-6l.6-3h12.72l.6 3H5.04zM4 4h16v2H4z"},"children":[]}]};exports.ic_store_mall_directory_twotone=ic_store_mall_directory_twotone;var ic_streetview={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12.56 14.33c-.34.27-.56.7-.56 1.17V21h7c1.1 0 2-.9 2-2v-5.98c-.94-.33-1.95-.52-3-.52-2.03 0-3.93.7-5.44 1.83z"},"children":[]},{"name":"circle","attribs":{"cx":"18","cy":"6","r":"5"},"children":[]},{"name":"path","attribs":{"d":"M11.5 6c0-1.08.27-2.1.74-3H5c-1.1 0-2 .9-2 2v14c0 .55.23 1.05.59 1.41l9.82-9.82C12.23 9.42 11.5 7.8 11.5 6z"},"children":[]}]};exports.ic_streetview=ic_streetview;var ic_streetview_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12.56 14.33c-.34.27-.56.7-.56 1.17V21h7c1.1 0 2-.9 2-2v-5.98c-.94-.33-1.95-.52-3-.52-2.03 0-3.93.7-5.44 1.83z"},"children":[]},{"name":"circle","attribs":{"cx":"18","cy":"6","r":"5"},"children":[]},{"name":"path","attribs":{"d":"M11.5 6c0-1.08.27-2.1.74-3H5c-1.1 0-2 .9-2 2v14c0 .55.23 1.05.59 1.41l9.82-9.82C12.23 9.42 11.5 7.8 11.5 6z"},"children":[]}]};exports.ic_streetview_outline=ic_streetview_outline;var ic_streetview_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12.56 14.33c-.34.27-.56.7-.56 1.17V21h7c1.1 0 2-.9 2-2v-5.98c-.94-.33-1.95-.52-3-.52-2.03 0-3.93.7-5.44 1.83z"},"children":[]},{"name":"circle","attribs":{"cx":"18","cy":"6","r":"5"},"children":[]},{"name":"path","attribs":{"d":"M11.5 6c0-1.08.27-2.1.74-3H5c-1.1 0-2 .9-2 2v14c0 .55.23 1.05.59 1.41l9.82-9.82C12.23 9.42 11.5 7.8 11.5 6z"},"children":[]}]};exports.ic_streetview_twotone=ic_streetview_twotone;var ic_subway={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0v24h24V0H0zm22 22H2V8.86C2 6.05 3.53 3.84 6.2 2.8 8 2.09 10.14 2 12 2c1.86 0 4 .09 5.8.8C20.47 3.84 22 6.05 22 8.86V22z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"15.5","cy":"16","r":"1"},"children":[]},{"name":"circle","attribs":{"cx":"8.5","cy":"16","r":"1"},"children":[]},{"name":"path","attribs":{"d":"M7.01 9h10v5h-10zM17.8 2.8C16 2.09 13.86 2 12 2c-1.86 0-4 .09-5.8.8C3.53 3.84 2 6.05 2 8.86V22h20V8.86c0-2.81-1.53-5.02-4.2-6.06zm.2 13.08c0 1.45-1.18 2.62-2.63 2.62l1.13 1.12V20H15l-1.5-1.5h-2.83L9.17 20H7.5v-.38l1.12-1.12C7.18 18.5 6 17.32 6 15.88V9c0-2.63 3-3 6-3 3.32 0 6 .38 6 3v6.88z"},"children":[]}]};exports.ic_subway=ic_subway;var ic_subway_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17.8 2.8C16 2.09 13.86 2 12 2s-4 .09-5.8.8C3.53 3.84 2 6.05 2 8.86V22h20V8.86c0-2.81-1.53-5.02-4.2-6.06zM9.17 20l1.5-1.5h2.66l1.5 1.5H9.17zm-2.16-6V9h10v5h-10zm9.49 2c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1zm-8-1c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM20 20h-3.5v-.38l-1.15-1.16c1.49-.17 2.65-1.42 2.65-2.96V9c0-2.63-3-3-6-3s-6 .37-6 3v6.5c0 1.54 1.16 2.79 2.65 2.96L7.5 19.62V20H4V8.86c0-2 1.01-3.45 2.93-4.2C8.41 4.08 10.32 4 12 4s3.59.08 5.07.66c1.92.75 2.93 2.2 2.93 4.2V20z"},"children":[]}]};exports.ic_subway_outline=ic_subway_outline;var ic_subway_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10.67 18.5L9.17 20h5.66l-1.5-1.5zm6.4-13.84C15.59 4.08 13.68 4 12 4s-3.59.08-5.07.66C5.01 5.41 4 6.86 4 8.86V20h3.5v-.38l1.15-1.16C7.16 18.29 6 17.04 6 15.5V9c0-2.63 3-3 6-3s6 .37 6 3v6.5c0 1.54-1.16 2.79-2.65 2.96l1.15 1.16V20H20V8.86c0-2-1.01-3.45-2.93-4.2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M17.8 2.8C16 2.09 13.86 2 12 2s-4 .09-5.8.8C3.53 3.84 2 6.05 2 8.86V22h20V8.86c0-2.81-1.53-5.02-4.2-6.06zM9.17 20l1.5-1.5h2.66l1.5 1.5H9.17zm-2.16-6V9h10v5h-10zm9.49 2c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1zm-8-1c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM20 20h-3.5v-.38l-1.15-1.16c1.49-.17 2.65-1.42 2.65-2.96V9c0-2.63-3-3-6-3s-6 .37-6 3v6.5c0 1.54 1.16 2.79 2.65 2.96L7.5 19.62V20H4V8.86c0-2 1.01-3.45 2.93-4.2C8.41 4.08 10.32 4 12 4s3.59.08 5.07.66c1.92.75 2.93 2.2 2.93 4.2V20z"},"children":[]}]};exports.ic_subway_twotone=ic_subway_twotone;var ic_takeout_dining={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M5.26,11h13.48l-0.67,9H5.93L5.26,11z M9.02,4h5.95L19,7.38l1.59-1.59L22,7.21 L19.21,10H4.79L2,7.21l1.41-1.41L5,7.38L9.02,4z","fill-rule":"evenodd"},"children":[{"name":"path","attribs":{"d":"M5.26,11h13.48l-0.67,9H5.93L5.26,11z M9.02,4h5.95L19,7.38l1.59-1.59L22,7.21 L19.21,10H4.79L2,7.21l1.41-1.41L5,7.38L9.02,4z","fill-rule":"evenodd"},"children":[]}]}]}]};exports.ic_takeout_dining=ic_takeout_dining;var ic_taxi_alert={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M23 8A7 7 0 0 0 9.68 5H7v2H4.5a1.5 1.5 0 0 0-1.42 1.01L1 14v8a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1h12v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-7.68A7.01 7.01 0 0 0 23 8zm-18.5.5h4.53a6.93 6.93 0 0 0 2.08 4.5H3l1.5-4.5zm0 9.5a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3zm11 0a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3zm2.93-5.63l-.21.11-.18.09a4.97 4.97 0 0 1-.42.16l-.22.07-.23.06-.2.05a5 5 0 0 1-5.94-4.41A4.07 4.07 0 0 1 11 8l.02-.47.02-.17.04-.28.04-.21.05-.21.07-.24.05-.13a4.99 4.99 0 0 1 9.69 1.7 4.96 4.96 0 0 1-2.55 4.38zM15 4h2v5h-2zm0 6h2v2h-2z"},"children":[]}]};exports.ic_taxi_alert=ic_taxi_alert;var ic_terrain={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14 6l-3.75 5 2.85 3.8-1.6 1.2C9.81 13.75 7 10 7 10l-6 8h22L14 6z"},"children":[]}]};exports.ic_terrain=ic_terrain;var ic_terrain_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14 6l-4.22 5.63 1.25 1.67L14 9.33 19 16h-8.46l-4.01-5.37L1 18h22L14 6zM5 16l1.52-2.03L8.04 16H5z"},"children":[]}]};exports.ic_terrain_outline=ic_terrain_outline;var ic_terrain_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 16h3.04l-1.52-2.03z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M9.78 11.63l1.25 1.67L14 9.33 19 16h-8.46l-4.01-5.37L1 18h22L14 6l-4.22 5.63zM5 16l1.52-2.03L8.04 16H5z"},"children":[]}]};exports.ic_terrain_twotone=ic_terrain_twotone;var ic_theater_comedy={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M2,16.5C2,19.54,4.46,22,7.5,22s5.5-2.46,5.5-5.5V10H2V16.5z M7.5,18.5C6.12,18.5,5,17.83,5,17h5 C10,17.83,8.88,18.5,7.5,18.5z M10,13c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1s-1-0.45-1-1C9,13.45,9.45,13,10,13z M5,13 c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1s-1-0.45-1-1C4,13.45,4.45,13,5,13z"},"children":[{"name":"path","attribs":{"d":"M2,16.5C2,19.54,4.46,22,7.5,22s5.5-2.46,5.5-5.5V10H2V16.5z M7.5,18.5C6.12,18.5,5,17.83,5,17h5 C10,17.83,8.88,18.5,7.5,18.5z M10,13c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1s-1-0.45-1-1C9,13.45,9.45,13,10,13z M5,13 c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1s-1-0.45-1-1C4,13.45,4.45,13,5,13z"},"children":[]}]},{"name":"path","attribs":{"d":"M11,3v6h3v2.5c0-0.83,1.12-1.5,2.5-1.5c1.38,0,2.5,0.67,2.5,1.5h-5V14v0.39c0.75,0.38,1.6,0.61,2.5,0.61 c3.04,0,5.5-2.46,5.5-5.5V3H11z M14,8.08c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C15,7.64,14.55,8.08,14,8.08z M19,8.08 c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C20,7.64,19.55,8.08,19,8.08z"},"children":[{"name":"path","attribs":{"d":"M11,3v6h3v2.5c0-0.83,1.12-1.5,2.5-1.5c1.38,0,2.5,0.67,2.5,1.5h-5V14v0.39c0.75,0.38,1.6,0.61,2.5,0.61 c3.04,0,5.5-2.46,5.5-5.5V3H11z M14,8.08c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C15,7.64,14.55,8.08,14,8.08z M19,8.08 c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C20,7.64,19.55,8.08,19,8.08z"},"children":[]}]}]}]}]}]};exports.ic_theater_comedy=ic_theater_comedy;var ic_traffic={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 10h-3V8.86c1.72-.45 3-2 3-3.86h-3V4c0-.55-.45-1-1-1H8c-.55 0-1 .45-1 1v1H4c0 1.86 1.28 3.41 3 3.86V10H4c0 1.86 1.28 3.41 3 3.86V15H4c0 1.86 1.28 3.41 3 3.86V20c0 .55.45 1 1 1h8c.55 0 1-.45 1-1v-1.14c1.72-.45 3-2 3-3.86h-3v-1.14c1.72-.45 3-2 3-3.86zm-8 9c-1.11 0-2-.9-2-2s.89-2 2-2c1.1 0 2 .9 2 2s-.89 2-2 2zm0-5c-1.11 0-2-.9-2-2s.89-2 2-2c1.1 0 2 .9 2 2s-.89 2-2 2zm0-5c-1.11 0-2-.9-2-2 0-1.11.89-2 2-2 1.1 0 2 .89 2 2 0 1.1-.89 2-2 2z"},"children":[]}]};exports.ic_traffic=ic_traffic;var ic_traffic_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 10h-3V8.86c1.72-.45 3-2 3-3.86h-3V4c0-.55-.45-1-1-1H8c-.55 0-1 .45-1 1v1H4c0 1.86 1.28 3.41 3 3.86V10H4c0 1.86 1.28 3.41 3 3.86V15H4c0 1.86 1.28 3.41 3 3.86V20c0 .55.45 1 1 1h8c.55 0 1-.45 1-1v-1.14c1.72-.45 3-2 3-3.86h-3v-1.14c1.72-.45 3-2 3-3.86zm-5 9H9V5h6v14zm-3-1c.83 0 1.5-.67 1.5-1.5S12.83 15 12 15s-1.5.67-1.5 1.5.67 1.5 1.5 1.5zm0-4.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM12 9c.83 0 1.5-.67 1.5-1.5S12.83 6 12 6s-1.5.67-1.5 1.5S11.17 9 12 9z"},"children":[]}]};exports.ic_traffic_outline=ic_traffic_outline;var ic_traffic_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9 19h6V5H9v14zm3-13c.83 0 1.5.67 1.5 1.5S12.83 9 12 9s-1.5-.67-1.5-1.5S11.17 6 12 6zm0 4.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm0 4.5c.83 0 1.5.67 1.5 1.5S12.83 18 12 18s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 5h-3V4c0-.55-.45-1-1-1H8c-.55 0-1 .45-1 1v1H4c0 1.86 1.28 3.41 3 3.86V10H4c0 1.86 1.28 3.41 3 3.86V15H4c0 1.86 1.28 3.41 3 3.86V20c0 .55.45 1 1 1h8c.55 0 1-.45 1-1v-1.14c1.72-.45 3-2 3-3.86h-3v-1.14c1.72-.45 3-2 3-3.86h-3V8.86c1.72-.45 3-2 3-3.86zm-5 14H9V5h6v14zm-3-1c.83 0 1.5-.67 1.5-1.5S12.83 15 12 15s-1.5.67-1.5 1.5.67 1.5 1.5 1.5zm0-4.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM12 9c.83 0 1.5-.67 1.5-1.5S12.83 6 12 6s-1.5.67-1.5 1.5S11.17 9 12 9z"},"children":[]}]};exports.ic_traffic_twotone=ic_traffic_twotone;var ic_train={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h2.23l2-2H14l2 2h2v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zM7.5 17c-.83 0-1.5-.67-1.5-1.5S6.67 14 7.5 14s1.5.67 1.5 1.5S8.33 17 7.5 17zm3.5-7H6V6h5v4zm2 0V6h5v4h-5zm3.5 7c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z"},"children":[]}]};exports.ic_train=ic_train;var ic_train_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"8.5","cy":"14.5","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"15.5","cy":"14.5","r":"1.5"},"children":[]},{"name":"path","attribs":{"d":"M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h2l2-2h4l2 2h2v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-4-4-8-4zm0 2c3.51 0 4.96.48 5.57 1H6.43c.61-.52 2.06-1 5.57-1zM6 7h5v3H6V7zm12 8.5c0 .83-.67 1.5-1.5 1.5h-9c-.83 0-1.5-.67-1.5-1.5V12h12v3.5zm0-5.5h-5V7h5v3z"},"children":[]}]};exports.ic_train_outline=ic_train_outline;var ic_train_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 4c-3.51 0-4.96.48-5.57 1h11.13c-.6-.52-2.05-1-5.56-1zM6 15.5c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5V12H6v3.5zm9.5-2.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-7 0c.83 0 1.5.67 1.5 1.5S9.33 16 8.5 16 7 15.33 7 14.5 7.67 13 8.5 13z","opacity":".3"},"children":[]},{"name":"circle","attribs":{"cx":"8.5","cy":"14.5","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"15.5","cy":"14.5","r":"1.5"},"children":[]},{"name":"path","attribs":{"d":"M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h2l2-2h4l2 2h2v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-4-4-8-4zm0 2c3.51 0 4.96.48 5.57 1H6.43c.61-.52 2.06-1 5.57-1zM6 7h5v3H6V7zm12 8.5c0 .83-.67 1.5-1.5 1.5h-9c-.83 0-1.5-.67-1.5-1.5V12h12v3.5zm0-5.5h-5V7h5v3z"},"children":[]}]};exports.ic_train_twotone=ic_train_twotone;var ic_tram={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 16.94V8.5c0-2.79-2.61-3.4-6.01-3.49l.76-1.51H17V2H7v1.5h4.75l-.76 1.52C7.86 5.11 5 5.73 5 8.5v8.44c0 1.45 1.19 2.66 2.59 2.97L6 21.5v.5h2.23l2-2H14l2 2h2v-.5L16.5 20h-.08c1.69 0 2.58-1.37 2.58-3.06zm-7 1.56c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm5-4.5H7V9h10v5z"},"children":[]}]};exports.ic_tram=ic_tram;var ic_tram_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13 5l.75-1.5H17V2H7v1.5h4.75L11 5c-3.13.09-6 .73-6 3.5V17c0 1.5 1.11 2.73 2.55 2.95L6 21.5v.5h2l2-2h4l2 2h2v-.5l-1.55-1.55h-.01.01C17.89 19.73 19 18.5 19 17V8.5c0-2.77-2.87-3.41-6-3.5zm-1.97 2h1.94c2.75.08 3.62.58 3.9 1H7.13c.28-.42 1.15-.92 3.9-1zm-.18 10.95H7.74C7.3 17.84 7 17.45 7 17v-1h3.89c-.24.27-.39.61-.39 1 0 .36.13.69.35.95zM17 17c0 .45-.3.84-.74.95h-3.11c.22-.26.35-.59.35-.95 0-.39-.15-.73-.39-1H17v1zm0-3H7v-4h10v4z"},"children":[]}]};exports.ic_tram_outline=ic_tram_outline;var ic_tram_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12.97 7h-1.94c-2.75.08-3.62.58-3.9 1h9.74c-.28-.42-1.15-.92-3.9-1zM7 16v1c0 .45.3.84.74.95h3.11c-.22-.26-.35-.59-.35-.95 0-.39.15-.73.39-1H7zm6.5 1c0 .36-.13.69-.35.95h3.11c.44-.11.74-.5.74-.95v-1h-3.89c.24.27.39.61.39 1z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M13 5l.75-1.5H17V2H7v1.5h4.75L11 5c-3.13.09-6 .73-6 3.5V17c0 1.5 1.11 2.73 2.55 2.95L6 21.5v.5h2l2-2h4l2 2h2v-.5l-1.55-1.55h-.01.01C17.89 19.73 19 18.5 19 17V8.5c0-2.77-2.87-3.41-6-3.5zm-1.97 2h1.94c2.75.08 3.62.58 3.9 1H7.13c.28-.42 1.15-.92 3.9-1zm-.18 10.95H7.74C7.3 17.84 7 17.45 7 17v-1h3.89c-.24.27-.39.61-.39 1 0 .36.13.69.35.95zM17 17c0 .45-.3.84-.74.95h-3.11c.22-.26.35-.59.35-.95 0-.39-.15-.73-.39-1H17v1zm0-3H7v-4h10v4z"},"children":[]}]};exports.ic_tram_twotone=ic_tram_twotone;var ic_transfer_within_a_station={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16.49 15.5v-1.75L14 16.25l2.49 2.5V17H22v-1.5zm3.02 4.25H14v1.5h5.51V23L22 20.5 19.51 18zM9.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM5.75 8.9L3 23h2.1l1.75-8L9 17v6h2v-7.55L8.95 13.4l.6-3C10.85 12 12.8 13 15 13v-2c-1.85 0-3.45-1-4.35-2.45l-.95-1.6C9.35 6.35 8.7 6 8 6c-.25 0-.5.05-.75.15L2 8.3V13h2V9.65l1.75-.75"},"children":[]}]};exports.ic_transfer_within_a_station=ic_transfer_within_a_station;var ic_transfer_within_a_station_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16.49 15.5v-1.75L14 16.25l2.49 2.5V17H22v-1.5h-5.51zm3.02 4.25H14v1.5h5.51V23L22 20.5 19.51 18v1.75zM9.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM5.75 8.9L3 23h2.1l1.75-8L9 17v6h2v-7.55L8.95 13.4l.6-3C10.85 12 12.8 13 15 13v-2c-1.85 0-3.45-1-4.35-2.45l-.95-1.6C9.35 6.35 8.7 6 8 6c-.25 0-.5.05-.75.15L2 8.3V13h2V9.65l1.75-.75"},"children":[]}]};exports.ic_transfer_within_a_station_outline=ic_transfer_within_a_station_outline;var ic_transfer_within_a_station_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16.49 13.75L14 16.25l2.49 2.5V17H22v-1.5h-5.51zm3.02 6H14v1.5h5.51V23L22 20.5 19.51 18zM7.5 3.5c0 1.1.9 2 2 2s2-.9 2-2-.9-2-2-2-2 .9-2 2zm2.05 6.9C10.85 12 12.8 13 15 13v-2c-1.85 0-3.45-1-4.35-2.45l-.95-1.6C9.35 6.35 8.7 6 8 6c-.25 0-.5.05-.75.15L2 8.3V13h2V9.65l1.75-.75L3 23h2.1l1.75-8L9 17v6h2v-7.55L8.95 13.4l.6-3z"},"children":[]}]};exports.ic_transfer_within_a_station_twotone=ic_transfer_within_a_station_twotone;var ic_transit_enterexit={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16 18H6V8h3v4.77L15.98 6 18 8.03 11.15 15H16v3z"},"children":[]}]};exports.ic_transit_enterexit=ic_transit_enterexit;var ic_transit_enterexit_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16 18H6V8h3v4.77L15.98 6 18 8.03 11.15 15H16v3z"},"children":[]}]};exports.ic_transit_enterexit_outline=ic_transit_enterexit_outline;var ic_transit_enterexit_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.98 6L9 12.77V8H6v10h10v-3h-4.85L18 8.03z"},"children":[]}]};exports.ic_transit_enterexit_twotone=ic_transit_enterexit_twotone;var ic_trip_origin={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M2 12C2 6.48 6.48 2 12 2s10 4.48 10 10-4.48 10-10 10S2 17.52 2 12zm10 6c3.31 0 6-2.69 6-6s-2.69-6-6-6-6 2.69-6 6 2.69 6 6 6z"},"children":[]}]};exports.ic_trip_origin=ic_trip_origin;var ic_trip_origin_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M2 12C2 6.48 6.48 2 12 2s10 4.48 10 10-4.48 10-10 10S2 17.52 2 12zm10 6c3.31 0 6-2.69 6-6s-2.69-6-6-6-6 2.69-6 6 2.69 6 6 6z"},"children":[]}]};exports.ic_trip_origin_outline=ic_trip_origin_outline;var ic_trip_origin_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 16c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z"},"children":[]}]};exports.ic_trip_origin_twotone=ic_trip_origin_twotone;var ic_two_wheeler={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","fill-rule":"evenodd","height":"24","width":"24","x":"0","y":"0"},"children":[{"name":"rect","attribs":{"fill":"none","fill-rule":"evenodd","height":"24","width":"24","x":"0","y":"0"},"children":[]}]},{"name":"path","attribs":{"d":"M20,11c-0.18,0-0.36,0.03-0.53,0.05L17.41,9H20V6l-3.72,1.86L13.41,5H9v2h3.59l2,2H11l-4,2L5,9H0v2h4c-2.21,0-4,1.79-4,4 c0,2.21,1.79,4,4,4c2.21,0,4-1.79,4-4l2,2h3l3.49-6.1l1.01,1.01C16.59,12.64,16,13.75,16,15c0,2.21,1.79,4,4,4c2.21,0,4-1.79,4-4 C24,12.79,22.21,11,20,11z M4,17c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2c1.1,0,2,0.9,2,2C6,16.1,5.1,17,4,17z M20,17c-1.1,0-2-0.9-2-2 c0-1.1,0.9-2,2-2s2,0.9,2,2C22,16.1,21.1,17,20,17z"},"children":[{"name":"path","attribs":{"d":"M20,11c-0.18,0-0.36,0.03-0.53,0.05L17.41,9H20V6l-3.72,1.86L13.41,5H9v2h3.59l2,2H11l-4,2L5,9H0v2h4c-2.21,0-4,1.79-4,4 c0,2.21,1.79,4,4,4c2.21,0,4-1.79,4-4l2,2h3l3.49-6.1l1.01,1.01C16.59,12.64,16,13.75,16,15c0,2.21,1.79,4,4,4c2.21,0,4-1.79,4-4 C24,12.79,22.21,11,20,11z M4,17c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2c1.1,0,2,0.9,2,2C6,16.1,5.1,17,4,17z M20,17c-1.1,0-2-0.9-2-2 c0-1.1,0.9-2,2-2s2,0.9,2,2C22,16.1,21.1,17,20,17z"},"children":[]}]}]}]};exports.ic_two_wheeler=ic_two_wheeler;var ic_two_wheeler_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","fill-rule":"evenodd","height":"24","width":"24","x":"0","y":"0"},"children":[{"name":"rect","attribs":{"fill":"none","fill-rule":"evenodd","height":"24","width":"24","x":"0","y":"0"},"children":[]}]},{"name":"path","attribs":{"d":"M4.17,11L4.17,11C4.12,11,4.06,11,4,11H4.17 M13.41,5H9v2h3.59l2,2H11l-4,2L5,9H0v2h4c-2.21,0-4,1.79-4,4 c0,2.21,1.79,4,4,4c2.21,0,4-1.79,4-4l2,2h3l3.49-6.1l1.01,1.01C16.59,12.64,16,13.75,16,15c0,2.21,1.79,4,4,4c2.21,0,4-1.79,4-4 c0-2.21-1.79-4-4-4c-0.18,0-0.36,0.03-0.53,0.05L17.41,9H20V6l-3.72,1.86L13.41,5L13.41,5z M20,17c-1.1,0-2-0.9-2-2 c0-1.1,0.9-2,2-2c1.1,0,2,0.9,2,2C22,16.1,21.1,17,20,17L20,17z M4,17c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2c1.1,0,2,0.9,2,2 C6,16.1,5.1,17,4,17L4,17z"},"children":[{"name":"path","attribs":{"d":"M4.17,11L4.17,11C4.12,11,4.06,11,4,11H4.17 M13.41,5H9v2h3.59l2,2H11l-4,2L5,9H0v2h4c-2.21,0-4,1.79-4,4 c0,2.21,1.79,4,4,4c2.21,0,4-1.79,4-4l2,2h3l3.49-6.1l1.01,1.01C16.59,12.64,16,13.75,16,15c0,2.21,1.79,4,4,4c2.21,0,4-1.79,4-4 c0-2.21-1.79-4-4-4c-0.18,0-0.36,0.03-0.53,0.05L17.41,9H20V6l-3.72,1.86L13.41,5L13.41,5z M20,17c-1.1,0-2-0.9-2-2 c0-1.1,0.9-2,2-2c1.1,0,2,0.9,2,2C22,16.1,21.1,17,20,17L20,17z M4,17c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2c1.1,0,2,0.9,2,2 C6,16.1,5.1,17,4,17L4,17z"},"children":[]}]}]}]};exports.ic_two_wheeler_outline=ic_two_wheeler_outline;var ic_two_wheeler_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","fill-rule":"evenodd","height":"24","width":"24","x":"0","y":"0"},"children":[{"name":"rect","attribs":{"fill":"none","fill-rule":"evenodd","height":"24","width":"24","x":"0","y":"0"},"children":[]}]},{"name":"path","attribs":{"d":"M4.17,11L4.17,11C4.12,11,4.06,11,4,11H4.17 M13.41,5H9v2h3.59l2,2H11l-4,2L5,9H0v2h4c-2.21,0-4,1.79-4,4 c0,2.21,1.79,4,4,4c2.21,0,4-1.79,4-4l2,2h3l3.49-6.1l1.01,1.01C16.59,12.64,16,13.75,16,15c0,2.21,1.79,4,4,4c2.21,0,4-1.79,4-4 c0-2.21-1.79-4-4-4c-0.18,0-0.36,0.03-0.53,0.05L17.41,9H20V6l-3.72,1.86L13.41,5L13.41,5z M20,17c-1.1,0-2-0.9-2-2 c0-1.1,0.9-2,2-2c1.1,0,2,0.9,2,2C22,16.1,21.1,17,20,17L20,17z M4,17c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2c1.1,0,2,0.9,2,2 C6,16.1,5.1,17,4,17L4,17z"},"children":[{"name":"path","attribs":{"d":"M4.17,11L4.17,11C4.12,11,4.06,11,4,11H4.17 M13.41,5H9v2h3.59l2,2H11l-4,2L5,9H0v2h4c-2.21,0-4,1.79-4,4 c0,2.21,1.79,4,4,4c2.21,0,4-1.79,4-4l2,2h3l3.49-6.1l1.01,1.01C16.59,12.64,16,13.75,16,15c0,2.21,1.79,4,4,4c2.21,0,4-1.79,4-4 c0-2.21-1.79-4-4-4c-0.18,0-0.36,0.03-0.53,0.05L17.41,9H20V6l-3.72,1.86L13.41,5L13.41,5z M20,17c-1.1,0-2-0.9-2-2 c0-1.1,0.9-2,2-2c1.1,0,2,0.9,2,2C22,16.1,21.1,17,20,17L20,17z M4,17c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2c1.1,0,2,0.9,2,2 C6,16.1,5.1,17,4,17L4,17z"},"children":[]}]}]}]};exports.ic_two_wheeler_twotone=ic_two_wheeler_twotone;var ic_volunteer_activism={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"height":"11","width":"4","x":"1","y":"11"},"children":[{"name":"rect","attribs":{"height":"11","width":"4","x":"1","y":"11"},"children":[]}]},{"name":"path","attribs":{"d":"M16,3.25C16.65,2.49,17.66,2,18.7,2C20.55,2,22,3.45,22,5.3c0,2.27-2.91,4.9-6,7.7c-3.09-2.81-6-5.44-6-7.7 C10,3.45,11.45,2,13.3,2C14.34,2,15.35,2.49,16,3.25z"},"children":[{"name":"path","attribs":{"d":"M16,3.25C16.65,2.49,17.66,2,18.7,2C20.55,2,22,3.45,22,5.3c0,2.27-2.91,4.9-6,7.7c-3.09-2.81-6-5.44-6-7.7 C10,3.45,11.45,2,13.3,2C14.34,2,15.35,2.49,16,3.25z"},"children":[]}]},{"name":"path","attribs":{"d":"M20,17h-7l-2.09-0.73l0.33-0.94L13,16h2.82c0.65,0,1.18-0.53,1.18-1.18v0c0-0.49-0.31-0.93-0.77-1.11L8.97,11H7v9.02 L14,22l8.01-3v0C22,17.9,21.11,17,20,17z"},"children":[{"name":"path","attribs":{"d":"M20,17h-7l-2.09-0.73l0.33-0.94L13,16h2.82c0.65,0,1.18-0.53,1.18-1.18v0c0-0.49-0.31-0.93-0.77-1.11L8.97,11H7v9.02 L14,22l8.01-3v0C22,17.9,21.11,17,20,17z"},"children":[]}]}]}]}]}]};exports.ic_volunteer_activism=ic_volunteer_activism;var ic_wine_bar={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M6,3l0,6c0,2.97,2.16,5.43,5,5.91V19H8v2h8v-2h-3v-4.09c2.84-0.48,5-2.94,5-5.91l0-6H6z M16,8H8l0-3h8C16,5,16,8,16,8z"},"children":[]}]};exports.ic_wine_bar=ic_wine_bar;var ic_wine_bar_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M6,3l0,6c0,2.97,2.16,5.43,5,5.91V19H8v2h8v-2h-3v-4.09c2.84-0.48,5-2.94,5-5.91V3H6z M12,13c-1.86,0-3.41-1.28-3.86-3h7.72 C15.41,11.72,13.86,13,12,13z M16,8H8l0-3h8L16,8z"},"children":[]}]};exports.ic_wine_bar_outline=ic_wine_bar_outline;var ic_wine_bar_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M12,13c-1.86,0-3.41-1.28-3.86-3h7.72C15.41,11.72,13.86,13,12,13z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M6,3l0,6c0,2.97,2.16,5.43,5,5.91V19H8v2h8v-2h-3v-4.09c2.84-0.48,5-2.94,5-5.91V3H6z M12,13c-1.86,0-3.41-1.28-3.86-3h7.72 C15.41,11.72,13.86,13,12,13z M16,8H8l0-3h8L16,8z"},"children":[]}]};exports.ic_wine_bar_twotone=ic_wine_bar_twotone;var ic_wrong_location={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M14,10V3.26C13.35,3.09,12.68,3,12,3c-4.2,0-8,3.22-8,8.2c0,3.32,2.67,7.25,8,11.8c5.33-4.55,8-8.48,8-11.8 c0-0.41-0.04-0.81-0.09-1.2H14z M12,13c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2C14,12.1,13.1,13,12,13z"},"children":[{"name":"path","attribs":{"d":"M14,10V3.26C13.35,3.09,12.68,3,12,3c-4.2,0-8,3.22-8,8.2c0,3.32,2.67,7.25,8,11.8c5.33-4.55,8-8.48,8-11.8 c0-0.41-0.04-0.81-0.09-1.2H14z M12,13c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2C14,12.1,13.1,13,12,13z"},"children":[]}]},{"name":"polygon","attribs":{"points":"22.54,2.88 21.12,1.46 19,3.59 16.88,1.46 15.46,2.88 17.59,5 15.46,7.12 16.88,8.54 19,6.41 21.12,8.54 22.54,7.12 20.41,5"},"children":[{"name":"polygon","attribs":{"points":"22.54,2.88 21.12,1.46 19,3.59 16.88,1.46 15.46,2.88 17.59,5 15.46,7.12 16.88,8.54 19,6.41 21.12,8.54 22.54,7.12 20.41,5"},"children":[]}]}]}]}]}]};exports.ic_wrong_location=ic_wrong_location;var ic_wrong_location_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M18,11c0,0.07,0,0.13,0,0.2c0,2.34-1.95,5.44-6,9.14c-4.05-3.7-6-6.79-6-9.14C6,7.57,8.65,5,12,5c0.34,0,0.68,0.03,1,0.08 V3.06C12.67,3.02,12.34,3,12,3c-4.2,0-8,3.22-8,8.2c0,3.32,2.67,7.25,8,11.8c5.33-4.55,8-8.48,8-11.8c0-0.07,0-0.13,0-0.2H18z"},"children":[{"name":"path","attribs":{"d":"M18,11c0,0.07,0,0.13,0,0.2c0,2.34-1.95,5.44-6,9.14c-4.05-3.7-6-6.79-6-9.14C6,7.57,8.65,5,12,5c0.34,0,0.68,0.03,1,0.08 V3.06C12.67,3.02,12.34,3,12,3c-4.2,0-8,3.22-8,8.2c0,3.32,2.67,7.25,8,11.8c5.33-4.55,8-8.48,8-11.8c0-0.07,0-0.13,0-0.2H18z"},"children":[]}]},{"name":"circle","attribs":{"cx":"12","cy":"11","r":"2"},"children":[{"name":"circle","attribs":{"cx":"12","cy":"11","r":"2"},"children":[]}]},{"name":"polygon","attribs":{"points":"22.54,2.88 21.12,1.46 19,3.59 16.88,1.46 15.46,2.88 17.59,5 15.46,7.12 16.88,8.54 19,6.41 21.12,8.54 22.54,7.12 20.41,5"},"children":[{"name":"polygon","attribs":{"points":"22.54,2.88 21.12,1.46 19,3.59 16.88,1.46 15.46,2.88 17.59,5 15.46,7.12 16.88,8.54 19,6.41 21.12,8.54 22.54,7.12 20.41,5"},"children":[]}]}]}]}]}]};exports.ic_wrong_location_outline=ic_wrong_location_outline;var ic_wrong_location_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M18,11c0,0.07,0,0.13,0,0.2c0,2.34-1.95,5.44-6,9.14c-4.05-3.7-6-6.79-6-9.14C6,7.57,8.65,5,12,5c0.34,0,0.68,0.03,1,0.08 V3.06C12.67,3.02,12.34,3,12,3c-4.2,0-8,3.22-8,8.2c0,3.32,2.67,7.25,8,11.8c5.33-4.55,8-8.48,8-11.8c0-0.07,0-0.13,0-0.2H18z"},"children":[{"name":"path","attribs":{"d":"M18,11c0,0.07,0,0.13,0,0.2c0,2.34-1.95,5.44-6,9.14c-4.05-3.7-6-6.79-6-9.14C6,7.57,8.65,5,12,5c0.34,0,0.68,0.03,1,0.08 V3.06C12.67,3.02,12.34,3,12,3c-4.2,0-8,3.22-8,8.2c0,3.32,2.67,7.25,8,11.8c5.33-4.55,8-8.48,8-11.8c0-0.07,0-0.13,0-0.2H18z"},"children":[]}]},{"name":"circle","attribs":{"cx":"12","cy":"11","r":"2"},"children":[{"name":"circle","attribs":{"cx":"12","cy":"11","r":"2"},"children":[]}]},{"name":"polygon","attribs":{"points":"22.54,2.88 21.12,1.46 19,3.59 16.88,1.46 15.46,2.88 17.59,5 15.46,7.12 16.88,8.54 19,6.41 21.12,8.54 22.54,7.12 20.41,5"},"children":[{"name":"polygon","attribs":{"points":"22.54,2.88 21.12,1.46 19,3.59 16.88,1.46 15.46,2.88 17.59,5 15.46,7.12 16.88,8.54 19,6.41 21.12,8.54 22.54,7.12 20.41,5"},"children":[]}]}]}]}]}]};exports.ic_wrong_location_twotone=ic_wrong_location_twotone;var ic_zoom_out_map={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M15,3l2.3,2.3l-2.89,2.87l1.42,1.42L18.7,6.7L21,9V3H15z M3,9l2.3-2.3l2.87,2.89l1.42-1.42L6.7,5.3L9,3H3V9z M9,21 l-2.3-2.3l2.89-2.87l-1.42-1.42L5.3,17.3L3,15v6H9z M21,15l-2.3,2.3l-2.87-2.89l-1.42,1.42l2.89,2.87L15,21h6V15z"},"children":[{"name":"path","attribs":{"d":"M15,3l2.3,2.3l-2.89,2.87l1.42,1.42L18.7,6.7L21,9V3H15z M3,9l2.3-2.3l2.87,2.89l1.42-1.42L6.7,5.3L9,3H3V9z M9,21 l-2.3-2.3l2.89-2.87l-1.42-1.42L5.3,17.3L3,15v6H9z M21,15l-2.3,2.3l-2.87-2.89l-1.42,1.42l2.89,2.87L15,21h6V15z"},"children":[]}]}]}]}]}]}]}]};exports.ic_zoom_out_map=ic_zoom_out_map;var ic_zoom_out_map_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15 3l2.3 2.3-2.89 2.87 1.42 1.42L18.7 6.7 21 9V3h-6zM3 9l2.3-2.3 2.87 2.89 1.42-1.42L6.7 5.3 9 3H3v6zm6 12l-2.3-2.3 2.89-2.87-1.42-1.42L5.3 17.3 3 15v6h6zm12-6l-2.3 2.3-2.87-2.89-1.42 1.42 2.89 2.87L15 21h6v-6z"},"children":[]}]};exports.ic_zoom_out_map_outline=ic_zoom_out_map_outline;var ic_zoom_out_map_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17.3 5.3l-2.89 2.87 1.42 1.42L18.7 6.7 21 9V3h-6zM9 3H3v6l2.3-2.3 2.87 2.89 1.42-1.42L6.7 5.3zm-.83 11.41L5.3 17.3 3 15v6h6l-2.3-2.3 2.89-2.87zm7.66 0l-1.42 1.42 2.89 2.87L15 21h6v-6l-2.3 2.3z"},"children":[]}]};exports.ic_zoom_out_map_twotone=ic_zoom_out_map_twotone;var ic_app_settings_alt={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21.81 12.74l-.82-.63v-.22l.8-.63c.16-.12.2-.34.1-.51l-.85-1.48c-.07-.13-.21-.2-.35-.2-.05 0-.1.01-.15.03l-.95.38c-.08-.05-.11-.07-.19-.11l-.15-1.01c-.03-.21-.2-.36-.4-.36h-1.71c-.2 0-.37.15-.4.34l-.14 1.01c-.03.02-.07.03-.1.05l-.09.06-.95-.38c-.05-.02-.1-.03-.15-.03-.14 0-.27.07-.35.2l-.85 1.48c-.1.17-.06.39.1.51l.8.63v.23l-.8.63c-.16.12-.2.34-.1.51l.85 1.48c.07.13.21.2.35.2.05 0 .1-.01.15-.03l.95-.37c.08.05.12.07.2.11l.15 1.01c.03.2.2.34.4.34h1.71c.2 0 .37-.15.4-.34l.15-1.01c.03-.02.07-.03.1-.05l.09-.06.95.38c.05.02.1.03.15.03.14 0 .27-.07.35-.2l.85-1.48c.1-.17.06-.39-.1-.51zM18 13.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM17 17h2v4c0 1.1-.9 2-2 2H7c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2v4h-2V6H7v12h10v-1z"},"children":[]}]};exports.ic_app_settings_alt=ic_app_settings_alt;var ic_app_settings_alt_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"rect","attribs":{"fill":"none","height":"1","width":"10","x":"7","y":"20"},"children":[{"name":"rect","attribs":{"fill":"none","height":"1","width":"10","x":"7","y":"20"},"children":[]}]},{"name":"rect","attribs":{"fill":"none","height":"1","width":"10","x":"7","y":"3"},"children":[{"name":"rect","attribs":{"fill":"none","height":"1","width":"10","x":"7","y":"3"},"children":[]}]},{"name":"path","attribs":{"d":"M21.81,12.74l-0.82-0.63c0-0.09,0-0.13,0-0.22l0.8-0.63c0.16-0.12,0.2-0.34,0.1-0.51l-0.85-1.48 c-0.07-0.13-0.21-0.2-0.35-0.2c-0.05,0-0.1,0.01-0.15,0.03l-0.95,0.38c-0.08-0.05-0.11-0.07-0.19-0.11l-0.15-1.01 C19.22,8.15,19.05,8,18.85,8h-1.71c-0.2,0-0.37,0.15-0.4,0.34L16.6,9.35c-0.03,0.02-0.07,0.03-0.1,0.05 c-0.03,0.02-0.06,0.04-0.09,0.06l-0.95-0.38c-0.05-0.02-0.1-0.03-0.15-0.03c-0.14,0-0.27,0.07-0.35,0.2l-0.85,1.48 c-0.1,0.17-0.06,0.39,0.1,0.51l0.8,0.63c0,0.09,0,0.13,0,0.23l-0.8,0.63c-0.16,0.12-0.2,0.34-0.1,0.51l0.85,1.48 c0.07,0.13,0.21,0.2,0.35,0.2c0.05,0,0.1-0.01,0.15-0.03l0.95-0.37c0.08,0.05,0.12,0.07,0.2,0.11l0.15,1.01 c0.03,0.2,0.2,0.34,0.4,0.34h1.71c0.2,0,0.37-0.15,0.4-0.34l0.15-1.01c0.03-0.02,0.07-0.03,0.1-0.05c0.03-0.02,0.06-0.04,0.09-0.06 l0.95,0.38c0.05,0.02,0.1,0.03,0.15,0.03c0.14,0,0.27-0.07,0.35-0.2l0.85-1.48C22.01,13.08,21.97,12.86,21.81,12.74z M18,13.5 c-0.83,0-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5C19.5,12.83,18.83,13.5,18,13.5z M17,18H7V6h10v1h2V3 c0-1.1-0.9-2-2-2H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2v-4h-2V18z M7,3h10v1H7V3z M17,21H7v-1h10V21z"},"children":[{"name":"path","attribs":{"d":"M21.81,12.74l-0.82-0.63c0-0.09,0-0.13,0-0.22l0.8-0.63c0.16-0.12,0.2-0.34,0.1-0.51l-0.85-1.48 c-0.07-0.13-0.21-0.2-0.35-0.2c-0.05,0-0.1,0.01-0.15,0.03l-0.95,0.38c-0.08-0.05-0.11-0.07-0.19-0.11l-0.15-1.01 C19.22,8.15,19.05,8,18.85,8h-1.71c-0.2,0-0.37,0.15-0.4,0.34L16.6,9.35c-0.03,0.02-0.07,0.03-0.1,0.05 c-0.03,0.02-0.06,0.04-0.09,0.06l-0.95-0.38c-0.05-0.02-0.1-0.03-0.15-0.03c-0.14,0-0.27,0.07-0.35,0.2l-0.85,1.48 c-0.1,0.17-0.06,0.39,0.1,0.51l0.8,0.63c0,0.09,0,0.13,0,0.23l-0.8,0.63c-0.16,0.12-0.2,0.34-0.1,0.51l0.85,1.48 c0.07,0.13,0.21,0.2,0.35,0.2c0.05,0,0.1-0.01,0.15-0.03l0.95-0.37c0.08,0.05,0.12,0.07,0.2,0.11l0.15,1.01 c0.03,0.2,0.2,0.34,0.4,0.34h1.71c0.2,0,0.37-0.15,0.4-0.34l0.15-1.01c0.03-0.02,0.07-0.03,0.1-0.05c0.03-0.02,0.06-0.04,0.09-0.06 l0.95,0.38c0.05,0.02,0.1,0.03,0.15,0.03c0.14,0,0.27-0.07,0.35-0.2l0.85-1.48C22.01,13.08,21.97,12.86,21.81,12.74z M18,13.5 c-0.83,0-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5C19.5,12.83,18.83,13.5,18,13.5z M17,18H7V6h10v1h2V3 c0-1.1-0.9-2-2-2H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2v-4h-2V18z M7,3h10v1H7V3z M17,21H7v-1h10V21z"},"children":[]}]}]}]};exports.ic_app_settings_alt_outline=ic_app_settings_alt_outline;var ic_app_settings_alt_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"1","width":"10","x":"7","y":"20"},"children":[{"name":"rect","attribs":{"fill":"none","height":"1","width":"10","x":"7","y":"20"},"children":[]}]},{"name":"rect","attribs":{"fill":"none","height":"1","width":"10","x":"7","y":"3"},"children":[{"name":"rect","attribs":{"fill":"none","height":"1","width":"10","x":"7","y":"3"},"children":[]}]},{"name":"path","attribs":{"d":"M21.81,12.74l-0.82-0.63c0-0.09,0-0.13,0-0.22l0.8-0.63c0.16-0.12,0.2-0.34,0.1-0.51l-0.85-1.48 c-0.07-0.13-0.21-0.2-0.35-0.2c-0.05,0-0.1,0.01-0.15,0.03l-0.95,0.38c-0.08-0.05-0.11-0.07-0.19-0.11l-0.15-1.01 C19.22,8.15,19.05,8,18.85,8h-1.71c-0.2,0-0.37,0.15-0.4,0.34L16.6,9.35c-0.03,0.02-0.07,0.03-0.1,0.05 c-0.03,0.02-0.06,0.04-0.09,0.06l-0.95-0.38c-0.05-0.02-0.1-0.03-0.15-0.03c-0.14,0-0.27,0.07-0.35,0.2l-0.85,1.48 c-0.1,0.17-0.06,0.39,0.1,0.51l0.8,0.63c0,0.09,0,0.13,0,0.23l-0.8,0.63c-0.16,0.12-0.2,0.34-0.1,0.51l0.85,1.48 c0.07,0.13,0.21,0.2,0.35,0.2c0.05,0,0.1-0.01,0.15-0.03l0.95-0.37c0.08,0.05,0.12,0.07,0.2,0.11l0.15,1.01 c0.03,0.2,0.2,0.34,0.4,0.34h1.71c0.2,0,0.37-0.15,0.4-0.34l0.15-1.01c0.03-0.02,0.07-0.03,0.1-0.05 c0.03-0.02,0.06-0.04,0.09-0.06l0.95,0.38c0.05,0.02,0.1,0.03,0.15,0.03c0.14,0,0.27-0.07,0.35-0.2l0.85-1.48 C22.01,13.08,21.97,12.86,21.81,12.74z M18,13.5c-0.83,0-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5 C19.5,12.83,18.83,13.5,18,13.5z M17,18H7V6h10v1h2V3c0-1.1-0.9-2-2-2H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2 v-4h-2V18z M7,3h10v1H7V3z M17,21H7v-1h10V21z"},"children":[{"name":"path","attribs":{"d":"M21.81,12.74l-0.82-0.63c0-0.09,0-0.13,0-0.22l0.8-0.63c0.16-0.12,0.2-0.34,0.1-0.51l-0.85-1.48 c-0.07-0.13-0.21-0.2-0.35-0.2c-0.05,0-0.1,0.01-0.15,0.03l-0.95,0.38c-0.08-0.05-0.11-0.07-0.19-0.11l-0.15-1.01 C19.22,8.15,19.05,8,18.85,8h-1.71c-0.2,0-0.37,0.15-0.4,0.34L16.6,9.35c-0.03,0.02-0.07,0.03-0.1,0.05 c-0.03,0.02-0.06,0.04-0.09,0.06l-0.95-0.38c-0.05-0.02-0.1-0.03-0.15-0.03c-0.14,0-0.27,0.07-0.35,0.2l-0.85,1.48 c-0.1,0.17-0.06,0.39,0.1,0.51l0.8,0.63c0,0.09,0,0.13,0,0.23l-0.8,0.63c-0.16,0.12-0.2,0.34-0.1,0.51l0.85,1.48 c0.07,0.13,0.21,0.2,0.35,0.2c0.05,0,0.1-0.01,0.15-0.03l0.95-0.37c0.08,0.05,0.12,0.07,0.2,0.11l0.15,1.01 c0.03,0.2,0.2,0.34,0.4,0.34h1.71c0.2,0,0.37-0.15,0.4-0.34l0.15-1.01c0.03-0.02,0.07-0.03,0.1-0.05 c0.03-0.02,0.06-0.04,0.09-0.06l0.95,0.38c0.05,0.02,0.1,0.03,0.15,0.03c0.14,0,0.27-0.07,0.35-0.2l0.85-1.48 C22.01,13.08,21.97,12.86,21.81,12.74z M18,13.5c-0.83,0-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5 C19.5,12.83,18.83,13.5,18,13.5z M17,18H7V6h10v1h2V3c0-1.1-0.9-2-2-2H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2 v-4h-2V18z M7,3h10v1H7V3z M17,21H7v-1h10V21z"},"children":[]}]},{"name":"rect","attribs":{"height":"1","opacity":".3","width":"10","x":"7","y":"3"},"children":[{"name":"rect","attribs":{"height":"1","opacity":".3","width":"10","x":"7","y":"3"},"children":[]}]},{"name":"rect","attribs":{"height":"1","opacity":".3","width":"10","x":"7","y":"20"},"children":[{"name":"rect","attribs":{"height":"1","opacity":".3","width":"10","x":"7","y":"20"},"children":[]}]}]}]}]}]};exports.ic_app_settings_alt_twotone=ic_app_settings_alt_twotone;var ic_apps={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 8h4V4H4v4zm6 12h4v-4h-4v4zm-6 0h4v-4H4v4zm0-6h4v-4H4v4zm6 0h4v-4h-4v4zm6-10v4h4V4h-4zm-6 4h4V4h-4v4zm6 6h4v-4h-4v4zm0 6h4v-4h-4v4z"},"children":[]}]};exports.ic_apps=ic_apps;var ic_apps_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 8h4V4H4v4zm6 12h4v-4h-4v4zm-6 0h4v-4H4v4zm0-6h4v-4H4v4zm6 0h4v-4h-4v4zm6-10v4h4V4h-4zm-6 4h4V4h-4v4zm6 6h4v-4h-4v4zm0 6h4v-4h-4v4z"},"children":[]}]};exports.ic_apps_outline=ic_apps_outline;var ic_apps_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 8h4V4H4v4zm6 12h4v-4h-4v4zm-6 0h4v-4H4v4zm0-6h4v-4H4v4zm6 0h4v-4h-4v4zm6-10v4h4V4h-4zm-6 4h4V4h-4v4zm6 6h4v-4h-4v4zm0 6h4v-4h-4v4z"},"children":[]}]};exports.ic_apps_twotone=ic_apps_twotone;var ic_arrow_back={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 11H7.83l5.59-5.59L12 4l-8 8 8 8 1.41-1.41L7.83 13H20v-2z"},"children":[]}]};exports.ic_arrow_back=ic_arrow_back;var ic_arrow_back_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 11H7.83l5.59-5.59L12 4l-8 8 8 8 1.41-1.41L7.83 13H20v-2z"},"children":[]}]};exports.ic_arrow_back_outline=ic_arrow_back_outline;var ic_arrow_back_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 11H7.83l5.59-5.59L12 4l-8 8 8 8 1.41-1.41L7.83 13H20v-2z"},"children":[]}]};exports.ic_arrow_back_twotone=ic_arrow_back_twotone;var ic_arrow_back_ios={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11.67 3.87L9.9 2.1 0 12l9.9 9.9 1.77-1.77L3.54 12z"},"children":[]}]};exports.ic_arrow_back_ios=ic_arrow_back_ios;var ic_arrow_back_ios_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none","opacity":".87"},"children":[]},{"name":"path","attribs":{"d":"M17.51 3.87L15.73 2.1 5.84 12l9.9 9.9 1.77-1.77L9.38 12l8.13-8.13z"},"children":[]}]};exports.ic_arrow_back_ios_outline=ic_arrow_back_ios_outline;var ic_arrow_back_ios_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none","opacity":".87"},"children":[]},{"name":"path","attribs":{"d":"M17.51 3.87L15.73 2.1 5.84 12l9.9 9.9 1.77-1.77L9.38 12l8.13-8.13z"},"children":[]}]};exports.ic_arrow_back_ios_twotone=ic_arrow_back_ios_twotone;var ic_arrow_downward={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 12l-1.41-1.41L13 16.17V4h-2v12.17l-5.58-5.59L4 12l8 8 8-8z"},"children":[]}]};exports.ic_arrow_downward=ic_arrow_downward;var ic_arrow_downward_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 12l-1.41-1.41L13 16.17V4h-2v12.17l-5.58-5.59L4 12l8 8 8-8z"},"children":[]}]};exports.ic_arrow_downward_outline=ic_arrow_downward_outline;var ic_arrow_downward_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 12l-1.41-1.41L13 16.17V4h-2v12.17l-5.58-5.59L4 12l8 8 8-8z"},"children":[]}]};exports.ic_arrow_downward_twotone=ic_arrow_downward_twotone;var ic_arrow_drop_down={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 10l5 5 5-5z"},"children":[]}]};exports.ic_arrow_drop_down=ic_arrow_drop_down;var ic_arrow_drop_down_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 10l5 5 5-5H7z"},"children":[]}]};exports.ic_arrow_drop_down_outline=ic_arrow_drop_down_outline;var ic_arrow_drop_down_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 10l5 5 5-5H7z"},"children":[]}]};exports.ic_arrow_drop_down_twotone=ic_arrow_drop_down_twotone;var ic_arrow_drop_down_circle={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 12l-4-4h8l-4 4z"},"children":[]}]};exports.ic_arrow_drop_down_circle=ic_arrow_drop_down_circle;var ic_arrow_drop_down_circle_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 4c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8m0-2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 13l-4-4h8z"},"children":[]}]};exports.ic_arrow_drop_down_circle_outline=ic_arrow_drop_down_circle_outline;var ic_arrow_drop_down_circle_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm0 11l-4-4h8l-4 4z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-5l4-4H8z"},"children":[]}]};exports.ic_arrow_drop_down_circle_twotone=ic_arrow_drop_down_circle_twotone;var ic_arrow_drop_up={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 14l5-5 5 5z"},"children":[]}]};exports.ic_arrow_drop_up=ic_arrow_drop_up;var ic_arrow_drop_up_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 14l5-5 5 5H7z"},"children":[]}]};exports.ic_arrow_drop_up_outline=ic_arrow_drop_up_outline;var ic_arrow_drop_up_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 14l5-5 5 5H7z"},"children":[]}]};exports.ic_arrow_drop_up_twotone=ic_arrow_drop_up_twotone;var ic_arrow_forward={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 4l-1.41 1.41L16.17 11H4v2h12.17l-5.58 5.59L12 20l8-8z"},"children":[]}]};exports.ic_arrow_forward=ic_arrow_forward;var ic_arrow_forward_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 4l-1.41 1.41L16.17 11H4v2h12.17l-5.58 5.59L12 20l8-8-8-8z"},"children":[]}]};exports.ic_arrow_forward_outline=ic_arrow_forward_outline;var ic_arrow_forward_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 4l-1.41 1.41L16.17 11H4v2h12.17l-5.58 5.59L12 20l8-8-8-8z"},"children":[]}]};exports.ic_arrow_forward_twotone=ic_arrow_forward_twotone;var ic_arrow_forward_ios={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5.88 4.12L13.76 12l-7.88 7.88L8 22l10-10L8 2z"},"children":[]}]};exports.ic_arrow_forward_ios=ic_arrow_forward_ios;var ic_arrow_forward_ios_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M24 24H0V0h24v24z","fill":"none","opacity":".87"},"children":[]},{"name":"path","attribs":{"d":"M6.49 20.13l1.77 1.77 9.9-9.9-9.9-9.9-1.77 1.77L14.62 12l-8.13 8.13z"},"children":[]}]};exports.ic_arrow_forward_ios_outline=ic_arrow_forward_ios_outline;var ic_arrow_forward_ios_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M24 24H0V0h24v24z","fill":"none","opacity":".87"},"children":[]},{"name":"path","attribs":{"d":"M6.49 20.13l1.77 1.77 9.9-9.9-9.9-9.9-1.77 1.77L14.62 12l-8.13 8.13z"},"children":[]}]};exports.ic_arrow_forward_ios_twotone=ic_arrow_forward_ios_twotone;var ic_arrow_left={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M14 7l-5 5 5 5V7z"},"children":[]},{"name":"path","attribs":{"d":"M24 0v24H0V0h24z","fill":"none"},"children":[]}]};exports.ic_arrow_left=ic_arrow_left;var ic_arrow_left_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M24 0v24H0V0h24z","fill":"none","opacity":".87"},"children":[]},{"name":"path","attribs":{"d":"M14 7l-5 5 5 5V7z"},"children":[]}]};exports.ic_arrow_left_outline=ic_arrow_left_outline;var ic_arrow_left_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M24 0v24H0V0h24z","fill":"none","opacity":".87"},"children":[]},{"name":"path","attribs":{"d":"M14 7l-5 5 5 5V7z"},"children":[]}]};exports.ic_arrow_left_twotone=ic_arrow_left_twotone;var ic_arrow_right={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M10 17l5-5-5-5v10z"},"children":[]},{"name":"path","attribs":{"d":"M0 24V0h24v24H0z","fill":"none"},"children":[]}]};exports.ic_arrow_right=ic_arrow_right;var ic_arrow_right_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 17l5-5-5-5v10z"},"children":[]}]};exports.ic_arrow_right_outline=ic_arrow_right_outline;var ic_arrow_right_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 17l5-5-5-5v10z"},"children":[]}]};exports.ic_arrow_right_twotone=ic_arrow_right_twotone;var ic_arrow_upward={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 12l1.41 1.41L11 7.83V20h2V7.83l5.58 5.59L20 12l-8-8-8 8z"},"children":[]}]};exports.ic_arrow_upward=ic_arrow_upward;var ic_arrow_upward_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 12l1.41 1.41L11 7.83V20h2V7.83l5.58 5.59L20 12l-8-8-8 8z"},"children":[]}]};exports.ic_arrow_upward_outline=ic_arrow_upward_outline;var ic_arrow_upward_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 12l1.41 1.41L11 7.83V20h2V7.83l5.58 5.59L20 12l-8-8-8 8z"},"children":[]}]};exports.ic_arrow_upward_twotone=ic_arrow_upward_twotone;var ic_assistant_direction={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"title","attribs":{},"children":[]},{"name":"path","attribs":{"d":"M14 10H9c-.6 0-1 .4-1 1v4h2v-3h4v2.5l3.5-3.5L14 7.5V10zm-2-9C5.9 1 1 5.9 1 12s4.9 11 11 11 11-4.9 11-11S18.1 1 12 1zm7.73 11.58l-7.19 7.22c-.35.27-.79.27-1.15 0L4.2 12.58c-.27-.36-.27-.8 0-1.16l7.19-7.22c.35-.27.79-.27 1.15 0l7.19 7.22c.36.27.36.8 0 1.16z"},"children":[]}]};exports.ic_assistant_direction=ic_assistant_direction;var ic_assistant_navigation={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 1C5.93 1 1 5.93 1 12s4.93 11 11 11 11-4.93 11-11S18.07 1 12 1zm3.57 16L12 15.42 8.43 17l-.37-.37L12 7l3.95 9.63-.38.37z"},"children":[]}]};exports.ic_assistant_navigation=ic_assistant_navigation;var ic_campaign={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 11v2h4v-2h-4zm-2 6.61c.96.71 2.21 1.65 3.2 2.39.4-.53.8-1.07 1.2-1.6-.99-.74-2.24-1.68-3.2-2.4-.4.54-.8 1.08-1.2 1.61zM20.4 5.6c-.4-.53-.8-1.07-1.2-1.6-.99.74-2.24 1.68-3.2 2.4.4.53.8 1.07 1.2 1.6.96-.72 2.21-1.65 3.2-2.4zM4 9c-1.1 0-2 .9-2 2v2c0 1.1.9 2 2 2h1v4h2v-4h1l5 3V6L8 9H4zm11.5 3c0-1.33-.58-2.53-1.5-3.35v6.69c.92-.81 1.5-2.01 1.5-3.34z"},"children":[]}]};exports.ic_campaign=ic_campaign;var ic_campaign_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"path","attribs":{"d":"M18,11c0,0.67,0,1.33,0,2c1.2,0,2.76,0,4,0c0-0.67,0-1.33,0-2C20.76,11,19.2,11,18,11z"},"children":[]},{"name":"path","attribs":{"d":"M16,17.61c0.96,0.71,2.21,1.65,3.2,2.39c0.4-0.53,0.8-1.07,1.2-1.6c-0.99-0.74-2.24-1.68-3.2-2.4 C16.8,16.54,16.4,17.08,16,17.61z"},"children":[]},{"name":"path","attribs":{"d":"M20.4,5.6C20,5.07,19.6,4.53,19.2,4c-0.99,0.74-2.24,1.68-3.2,2.4c0.4,0.53,0.8,1.07,1.2,1.6 C18.16,7.28,19.41,6.35,20.4,5.6z"},"children":[]},{"name":"path","attribs":{"d":"M4,9c-1.1,0-2,0.9-2,2v2c0,1.1,0.9,2,2,2h1v4h2v-4h1l5,3V6L8,9H4z M9.03,10.71L11,9.53v4.94l-1.97-1.18L8.55,13H8H4v-2h4 h0.55L9.03,10.71z"},"children":[]},{"name":"path","attribs":{"d":"M15.5,12c0-1.33-0.58-2.53-1.5-3.35v6.69C14.92,14.53,15.5,13.33,15.5,12z"},"children":[]}]};exports.ic_campaign_outline=ic_campaign_outline;var ic_campaign_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"path","attribs":{"d":"M18,11c0,0.67,0,1.33,0,2c1.2,0,2.76,0,4,0c0-0.67,0-1.33,0-2C20.76,11,19.2,11,18,11z"},"children":[]},{"name":"path","attribs":{"d":"M16,17.61c0.96,0.71,2.21,1.65,3.2,2.39c0.4-0.53,0.8-1.07,1.2-1.6c-0.99-0.74-2.24-1.68-3.2-2.4 C16.8,16.54,16.4,17.08,16,17.61z"},"children":[]},{"name":"path","attribs":{"d":"M20.4,5.6C20,5.07,19.6,4.53,19.2,4c-0.99,0.74-2.24,1.68-3.2,2.4c0.4,0.53,0.8,1.07,1.2,1.6 C18.16,7.28,19.41,6.35,20.4,5.6z"},"children":[]},{"name":"path","attribs":{"d":"M4,9c-1.1,0-2,0.9-2,2v2c0,1.1,0.9,2,2,2h1v4h2v-4h1l5,3V6L8,9H4z M9.03,10.71L11,9.53v4.94l-1.97-1.18L8.55,13H8H4v-2h4 h0.55L9.03,10.71z"},"children":[]},{"name":"path","attribs":{"d":"M15.5,12c0-1.33-0.58-2.53-1.5-3.35v6.69C14.92,14.53,15.5,13.33,15.5,12z"},"children":[]},{"name":"path","attribs":{"d":"M9.03,10.71L11,9.53v4.94l-1.97-1.18L8.55,13H8H4v-2h4h0.55L9.03,10.71z","opacity":".3"},"children":[]}]};exports.ic_campaign_twotone=ic_campaign_twotone;var ic_cancel={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"},"children":[]}]};exports.ic_cancel=ic_cancel;var ic_cancel_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none","opacity":".87"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm3.59-13L12 10.59 8.41 7 7 8.41 10.59 12 7 15.59 8.41 17 12 13.41 15.59 17 17 15.59 13.41 12 17 8.41z"},"children":[]}]};exports.ic_cancel_outline=ic_cancel_outline;var ic_cancel_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none","opacity":".87"},"children":[]},{"name":"path","attribs":{"d":"M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm5 11.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm3.59-13L12 10.59 8.41 7 7 8.41 10.59 12 7 15.59 8.41 17 12 13.41 15.59 17 17 15.59 13.41 12 17 8.41z"},"children":[]}]};exports.ic_cancel_twotone=ic_cancel_twotone;var ic_check={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"},"children":[]}]};exports.ic_check=ic_check;var ic_check_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z"},"children":[]}]};exports.ic_check_outline=ic_check_outline;var ic_check_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z"},"children":[]}]};exports.ic_check_twotone=ic_check_twotone;var ic_chevron_left={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z"},"children":[]}]};exports.ic_chevron_left=ic_chevron_left;var ic_chevron_left_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12l4.58-4.59z"},"children":[]}]};exports.ic_chevron_left_outline=ic_chevron_left_outline;var ic_chevron_left_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12l4.58-4.59z"},"children":[]}]};exports.ic_chevron_left_twotone=ic_chevron_left_twotone;var ic_chevron_right={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z"},"children":[]}]};exports.ic_chevron_right=ic_chevron_right;var ic_chevron_right_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6-6-6z"},"children":[]}]};exports.ic_chevron_right_outline=ic_chevron_right_outline;var ic_chevron_right_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6-6-6z"},"children":[]}]};exports.ic_chevron_right_twotone=ic_chevron_right_twotone;var ic_close={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"},"children":[]}]};exports.ic_close=ic_close;var ic_close_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z"},"children":[]}]};exports.ic_close_outline=ic_close_outline;var ic_close_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z"},"children":[]}]};exports.ic_close_twotone=ic_close_twotone;var ic_double_arrow={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"15.5,5 11,5 16,12 11,19 15.5,19 20.5,12"},"children":[{"name":"polygon","attribs":{"points":"15.5,5 11,5 16,12 11,19 15.5,19 20.5,12"},"children":[]}]},{"name":"polygon","attribs":{"points":"8.5,5 4,5 9,12 4,19 8.5,19 13.5,12"},"children":[{"name":"polygon","attribs":{"points":"8.5,5 4,5 9,12 4,19 8.5,19 13.5,12"},"children":[]}]}]}]}]}]};exports.ic_double_arrow=ic_double_arrow;var ic_double_arrow_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"15.5,5 11,5 16,12 11,19 15.5,19 20.5,12"},"children":[{"name":"polygon","attribs":{"points":"15.5,5 11,5 16,12 11,19 15.5,19 20.5,12"},"children":[]}]},{"name":"polygon","attribs":{"points":"8.5,5 4,5 9,12 4,19 8.5,19 13.5,12"},"children":[{"name":"polygon","attribs":{"points":"8.5,5 4,5 9,12 4,19 8.5,19 13.5,12"},"children":[]}]}]}]}]}]};exports.ic_double_arrow_outline=ic_double_arrow_outline;var ic_double_arrow_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"15.5,5 11,5 16,12 11,19 15.5,19 20.5,12"},"children":[{"name":"polygon","attribs":{"points":"15.5,5 11,5 16,12 11,19 15.5,19 20.5,12"},"children":[]}]},{"name":"polygon","attribs":{"points":"8.5,5 4,5 9,12 4,19 8.5,19 13.5,12"},"children":[{"name":"polygon","attribs":{"points":"8.5,5 4,5 9,12 4,19 8.5,19 13.5,12"},"children":[]}]}]}]}]}]};exports.ic_double_arrow_twotone=ic_double_arrow_twotone;var ic_east={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M15,5l-1.41,1.41L18.17,11H2V13h16.17l-4.59,4.59L15,19l7-7L15,5z"},"children":[]}]};exports.ic_east=ic_east;var ic_east_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M15,5l-1.41,1.41L18.17,11H2V13h16.17l-4.59,4.59L15,19l7-7L15,5z"},"children":[]}]};exports.ic_east_outline=ic_east_outline;var ic_east_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M15,5l-1.41,1.41L18.17,11H2V13h16.17l-4.59,4.59L15,19l7-7L15,5z"},"children":[]}]};exports.ic_east_twotone=ic_east_twotone;var ic_expand_less={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 8l-6 6 1.41 1.41L12 10.83l4.59 4.58L18 14z"},"children":[]}]};exports.ic_expand_less=ic_expand_less;var ic_expand_less_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 8l-6 6 1.41 1.41L12 10.83l4.59 4.58L18 14l-6-6z"},"children":[]}]};exports.ic_expand_less_outline=ic_expand_less_outline;var ic_expand_less_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 8l-6 6 1.41 1.41L12 10.83l4.59 4.58L18 14l-6-6z"},"children":[]}]};exports.ic_expand_less_twotone=ic_expand_less_twotone;var ic_expand_more={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6z"},"children":[]}]};exports.ic_expand_more=ic_expand_more;var ic_expand_more_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M24 24H0V0h24v24z","fill":"none","opacity":".87"},"children":[]},{"name":"path","attribs":{"d":"M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6-1.41-1.41z"},"children":[]}]};exports.ic_expand_more_outline=ic_expand_more_outline;var ic_expand_more_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M24 24H0V0h24v24z","fill":"none","opacity":".87"},"children":[]},{"name":"path","attribs":{"d":"M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6-1.41-1.41z"},"children":[]}]};exports.ic_expand_more_twotone=ic_expand_more_twotone;var ic_first_page={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M18.41 16.59L13.82 12l4.59-4.59L17 6l-6 6 6 6zM6 6h2v12H6z"},"children":[]},{"name":"path","attribs":{"d":"M24 24H0V0h24v24z","fill":"none"},"children":[]}]};exports.ic_first_page=ic_first_page;var ic_first_page_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M24 0v24H0V0h24z","fill":"none","opacity":".87"},"children":[]},{"name":"path","attribs":{"d":"M18.41 16.59L13.82 12l4.59-4.59L17 6l-6 6 6 6 1.41-1.41zM6 6h2v12H6V6z"},"children":[]}]};exports.ic_first_page_outline=ic_first_page_outline;var ic_first_page_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M24 0v24H0V0h24z","fill":"none","opacity":".87"},"children":[]},{"name":"path","attribs":{"d":"M18.41 16.59L13.82 12l4.59-4.59L17 6l-6 6 6 6 1.41-1.41zM6 6h2v12H6V6z"},"children":[]}]};exports.ic_first_page_twotone=ic_first_page_twotone;var ic_fullscreen={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 14H5v5h5v-2H7v-3zm-2-4h2V7h3V5H5v5zm12 7h-3v2h5v-5h-2v3zM14 5v2h3v3h2V5h-5z"},"children":[]}]};exports.ic_fullscreen=ic_fullscreen;var ic_fullscreen_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 14H5v5h5v-2H7v-3zm-2-4h2V7h3V5H5v5zm12 7h-3v2h5v-5h-2v3zM14 5v2h3v3h2V5h-5z"},"children":[]}]};exports.ic_fullscreen_outline=ic_fullscreen_outline;var ic_fullscreen_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 14H5v5h5v-2H7v-3zm-2-4h2V7h3V5H5v5zm12 7h-3v2h5v-5h-2v3zM14 5v2h3v3h2V5h-5z"},"children":[]}]};exports.ic_fullscreen_twotone=ic_fullscreen_twotone;var ic_fullscreen_exit={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 16h3v3h2v-5H5v2zm3-8H5v2h5V5H8v3zm6 11h2v-3h3v-2h-5v5zm2-11V5h-2v5h5V8h-3z"},"children":[]}]};exports.ic_fullscreen_exit=ic_fullscreen_exit;var ic_fullscreen_exit_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 16h3v3h2v-5H5v2zm3-8H5v2h5V5H8v3zm6 11h2v-3h3v-2h-5v5zm2-11V5h-2v5h5V8h-3z"},"children":[]}]};exports.ic_fullscreen_exit_outline=ic_fullscreen_exit_outline;var ic_fullscreen_exit_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 16h3v3h2v-5H5v2zm3-8H5v2h5V5H8v3zm6 11h2v-3h3v-2h-5v5zm2-11V5h-2v5h5V8h-3z"},"children":[]}]};exports.ic_fullscreen_exit_twotone=ic_fullscreen_exit_twotone;var ic_home_work={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8.17 5.7L1 10.48V21h5v-8h4v8h5V10.25z"},"children":[]},{"name":"path","attribs":{"d":"M17 7h2v2h-2z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 3v1.51l2 1.33L13.73 7H15v.85l2 1.34V11h2v2h-2v2h2v2h-2v4h6V3H10zm9 6h-2V7h2v2z"},"children":[]}]};exports.ic_home_work=ic_home_work;var ic_home_work_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 15h2v2h-2zM17 11h2v2h-2zM17 7h2v2h-2zM13.74 7l1.26.84V7z"},"children":[]},{"name":"path","attribs":{"d":"M10 3v1.51l2 1.33V5h9v14h-4v2h6V3z"},"children":[]},{"name":"path","attribs":{"d":"M8.17 5.7L15 10.25V21H1V10.48L8.17 5.7zM10 19h3v-7.84L8.17 8.09 3 11.38V19h3v-6h4v6z"},"children":[]}]};exports.ic_home_work_outline=ic_home_work_outline;var ic_home_work_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 15h2v2h-2zM17 11h2v2h-2zM17 7h2v2h-2zM13.74 7l1.26.84V7z"},"children":[]},{"name":"path","attribs":{"d":"M10 3v1.51l2 1.33V5h9v14h-4v2h6V3z"},"children":[]},{"name":"path","attribs":{"d":"M8.17 5.7L15 10.25V21H1V10.48L8.17 5.7zM10 19h3v-7.84L8.17 8.09 3 11.38V19h3v-6h4v6z"},"children":[]},{"name":"path","attribs":{"d":"M10 19h3v-7.84L8.17 8.09 3 11.38V19h3v-6h4z","opacity":".3"},"children":[]}]};exports.ic_home_work_twotone=ic_home_work_twotone;var ic_last_page={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5.59 7.41L10.18 12l-4.59 4.59L7 18l6-6-6-6zM16 6h2v12h-2z"},"children":[]}]};exports.ic_last_page=ic_last_page;var ic_last_page_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none","opacity":".87"},"children":[]},{"name":"path","attribs":{"d":"M5.59 7.41L10.18 12l-4.59 4.59L7 18l6-6-6-6-1.41 1.41zM16 6h2v12h-2V6z"},"children":[]}]};exports.ic_last_page_outline=ic_last_page_outline;var ic_last_page_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none","opacity":".87"},"children":[]},{"name":"path","attribs":{"d":"M5.59 7.41L10.18 12l-4.59 4.59L7 18l6-6-6-6-1.41 1.41zM16 6h2v12h-2V6z"},"children":[]}]};exports.ic_last_page_twotone=ic_last_page_twotone;var ic_legend_toggle={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M20,15H4v-2h16V15z M20,17H4v2h16V17z M15,11l5-3.55L20,5l-5,3.55L10,5L4,8.66L4,11l5.92-3.61L15,11z"},"children":[{"name":"path","attribs":{"d":"M20,15H4v-2h16V15z M20,17H4v2h16V17z M15,11l5-3.55L20,5l-5,3.55L10,5L4,8.66L4,11l5.92-3.61L15,11z"},"children":[]}]}]}]};exports.ic_legend_toggle=ic_legend_toggle;var ic_legend_toggle_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M20,15H4v-2h16V15z M20,17H4v2h16V17z M15,11l5-3.55L20,5l-5,3.55L10,5L4,8.66L4,11l5.92-3.61L15,11z"},"children":[{"name":"path","attribs":{"d":"M20,15H4v-2h16V15z M20,17H4v2h16V17z M15,11l5-3.55L20,5l-5,3.55L10,5L4,8.66L4,11l5.92-3.61L15,11z"},"children":[]}]}]}]};exports.ic_legend_toggle_outline=ic_legend_toggle_outline;var ic_legend_toggle_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M20,15H4v-2h16V15z M20,17H4v2h16V17z M15,11l5-3.55L20,5l-5,3.55L10,5L4,8.66L4,11l5.92-3.61L15,11z"},"children":[{"name":"path","attribs":{"d":"M20,15H4v-2h16V15z M20,17H4v2h16V17z M15,11l5-3.55L20,5l-5,3.55L10,5L4,8.66L4,11l5.92-3.61L15,11z"},"children":[]}]}]}]};exports.ic_legend_toggle_twotone=ic_legend_toggle_twotone;var ic_menu={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z"},"children":[]}]};exports.ic_menu=ic_menu;var ic_menu_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z"},"children":[]}]};exports.ic_menu_outline=ic_menu_outline;var ic_menu_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z"},"children":[]}]};exports.ic_menu_twotone=ic_menu_twotone;var ic_menu_open={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 18h13v-2H3v2zm0-5h10v-2H3v2zm0-7v2h13V6H3zm18 9.59L17.42 12 21 8.41 19.59 7l-5 5 5 5L21 15.59z"},"children":[]}]};exports.ic_menu_open=ic_menu_open;var ic_menu_open_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0,0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3,18h13v-2H3V18z M3,13h10v-2H3V13z M3,6v2h13V6H3z M21,15.59L17.42,12L21,8.41L19.59,7l-5,5l5,5L21,15.59z"},"children":[]}]};exports.ic_menu_open_outline=ic_menu_open_outline;var ic_menu_open_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0,0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3,18h13v-2H3V18z M3,13h10v-2H3V13z M3,6v2h13V6H3z M21,15.59L17.42,12L21,8.41L19.59,7l-5,5l5,5L21,15.59z"},"children":[]}]};exports.ic_menu_open_twotone=ic_menu_open_twotone;var ic_more_horiz={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"},"children":[]}]};exports.ic_more_horiz=ic_more_horiz;var ic_more_horiz_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"},"children":[]}]};exports.ic_more_horiz_outline=ic_more_horiz_outline;var ic_more_horiz_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"},"children":[]}]};exports.ic_more_horiz_twotone=ic_more_horiz_twotone;var ic_more_vert={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"},"children":[]}]};exports.ic_more_vert=ic_more_vert;var ic_more_vert_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"},"children":[]}]};exports.ic_more_vert_outline=ic_more_vert_outline;var ic_more_vert_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"},"children":[]}]};exports.ic_more_vert_twotone=ic_more_vert_twotone;var ic_north={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M5,9l1.41,1.41L11,5.83V22H13V5.83l4.59,4.59L19,9l-7-7L5,9z"},"children":[]}]};exports.ic_north=ic_north;var ic_north_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M5,9l1.41,1.41L11,5.83V22H13V5.83l4.59,4.59L19,9l-7-7L5,9z"},"children":[]}]};exports.ic_north_outline=ic_north_outline;var ic_north_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M5,9l1.41,1.41L11,5.83V22H13V5.83l4.59,4.59L19,9l-7-7L5,9z"},"children":[]}]};exports.ic_north_twotone=ic_north_twotone;var ic_north_east={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M9,5v2h6.59L4,18.59L5.41,20L17,8.41V15h2V5H9z"},"children":[]}]};exports.ic_north_east=ic_north_east;var ic_north_east_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M9,5v2h6.59L4,18.59L5.41,20L17,8.41V15h2V5H9z"},"children":[]}]};exports.ic_north_east_outline=ic_north_east_outline;var ic_north_east_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M9,5v2h6.59L4,18.59L5.41,20L17,8.41V15h2V5H9z"},"children":[]}]};exports.ic_north_east_twotone=ic_north_east_twotone;var ic_north_west={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M5,15h2V8.41L18.59,20L20,18.59L8.41,7H15V5H5V15z"},"children":[]}]};exports.ic_north_west=ic_north_west;var ic_north_west_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M5,15h2V8.41L18.59,20L20,18.59L8.41,7H15V5H5V15z"},"children":[]}]};exports.ic_north_west_outline=ic_north_west_outline;var ic_north_west_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M5,15h2V8.41L18.59,20L20,18.59L8.41,7H15V5H5V15z"},"children":[]}]};exports.ic_north_west_twotone=ic_north_west_twotone;var ic_offline_share={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14.6 10.26v1.31L17 9.33 14.6 7.1v1.28c-2.33.32-3.26 1.92-3.6 3.52.83-1.13 1.93-1.64 3.6-1.64zM16 23H6c-1.1 0-2-.9-2-2V5h2v16h10v2zm2-22h-8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 15h-8V4h8v12z"},"children":[]}]};exports.ic_offline_share=ic_offline_share;var ic_payments={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 14V6c0-1.1-.9-2-2-2H3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zm-9-1c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm13-6v11c0 1.1-.9 2-2 2H4v-2h17V7h2z"},"children":[]}]};exports.ic_payments=ic_payments;var ic_payments_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M19,14V6c0-1.1-0.9-2-2-2H3C1.9,4,1,4.9,1,6v8c0,1.1,0.9,2,2,2h14C18.1,16,19,15.1,19,14z M17,14H3V6h14V14z M10,7 c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S11.66,7,10,7z M23,7v11c0,1.1-0.9,2-2,2H4c0-1,0-0.9,0-2h17V7C22.1,7,22,7,23,7z"},"children":[{"name":"path","attribs":{"d":"M19,14V6c0-1.1-0.9-2-2-2H3C1.9,4,1,4.9,1,6v8c0,1.1,0.9,2,2,2h14C18.1,16,19,15.1,19,14z M17,14H3V6h14V14z M10,7 c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S11.66,7,10,7z M23,7v11c0,1.1-0.9,2-2,2H4c0-1,0-0.9,0-2h17V7C22.1,7,22,7,23,7z"},"children":[]}]}]}]};exports.ic_payments_outline=ic_payments_outline;var ic_payments_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M17,6H3v8h14V6z M10,13c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3S11.66,13,10,13z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M17,6H3v8h14V6z M10,13c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3S11.66,13,10,13z","opacity":".3"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M17,4H3C1.9,4,1,4.9,1,6v8c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V6C19,4.9,18.1,4,17,4L17,4z M3,14V6h14v8H3z"},"children":[{"name":"path","attribs":{"d":"M17,4H3C1.9,4,1,4.9,1,6v8c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V6C19,4.9,18.1,4,17,4L17,4z M3,14V6h14v8H3z"},"children":[]}]},{"name":"path","attribs":{"d":"M10,7c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S11.66,7,10,7L10,7z"},"children":[{"name":"path","attribs":{"d":"M10,7c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S11.66,7,10,7L10,7z"},"children":[]}]}]}]},{"name":"path","attribs":{"d":"M23,7v11c0,1.1-0.9,2-2,2H4c0-1,0-0.9,0-2h17V7C22.1,7,22,7,23,7z"},"children":[{"name":"path","attribs":{"d":"M23,7v11c0,1.1-0.9,2-2,2H4c0-1,0-0.9,0-2h17V7C22.1,7,22,7,23,7z"},"children":[]}]}]}]};exports.ic_payments_twotone=ic_payments_twotone;var ic_pivot_table_chart={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 8h11V5c0-1.1-.9-2-2-2h-9v5zM3 8h5V3H5c-1.1 0-2 .9-2 2v3zm2 13h3V10H3v9c0 1.1.9 2 2 2zm8 1l-4-4 4-4zm1-9l4-4 4 4z"},"children":[]},{"name":"path","attribs":{"d":"M14.58 19H13v-2h1.58c1.33 0 2.42-1.08 2.42-2.42V13h2v1.58c0 2.44-1.98 4.42-4.42 4.42z"},"children":[]}]};exports.ic_pivot_table_chart=ic_pivot_table_chart;var ic_refresh={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17.65 6.35C16.2 4.9 14.21 4 12 4c-4.42 0-7.99 3.58-7.99 8s3.57 8 7.99 8c3.73 0 6.84-2.55 7.73-6h-2.08c-.82 2.33-3.04 4-5.65 4-3.31 0-6-2.69-6-6s2.69-6 6-6c1.66 0 3.14.69 4.22 1.78L13 11h7V4l-2.35 2.35z"},"children":[]}]};exports.ic_refresh=ic_refresh;var ic_refresh_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17.65 6.35C16.2 4.9 14.21 4 12 4c-4.42 0-7.99 3.58-7.99 8s3.57 8 7.99 8c3.73 0 6.84-2.55 7.73-6h-2.08c-.82 2.33-3.04 4-5.65 4-3.31 0-6-2.69-6-6s2.69-6 6-6c1.66 0 3.14.69 4.22 1.78L13 11h7V4l-2.35 2.35z"},"children":[]}]};exports.ic_refresh_outline=ic_refresh_outline;var ic_refresh_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17.65 6.35C16.2 4.9 14.21 4 12 4c-4.42 0-7.99 3.58-7.99 8s3.57 8 7.99 8c3.73 0 6.84-2.55 7.73-6h-2.08c-.82 2.33-3.04 4-5.65 4-3.31 0-6-2.69-6-6s2.69-6 6-6c1.66 0 3.14.69 4.22 1.78L13 11h7V4l-2.35 2.35z"},"children":[]}]};exports.ic_refresh_twotone=ic_refresh_twotone;var ic_south={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M19,15l-1.41-1.41L13,18.17V2H11v16.17l-4.59-4.59L5,15l7,7L19,15z"},"children":[]}]};exports.ic_south=ic_south;var ic_south_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M19,15l-1.41-1.41L13,18.17V2H11v16.17l-4.59-4.59L5,15l7,7L19,15z"},"children":[]}]};exports.ic_south_outline=ic_south_outline;var ic_south_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M19,15l-1.41-1.41L13,18.17V2H11v16.17l-4.59-4.59L5,15l7,7L19,15z"},"children":[]}]};exports.ic_south_twotone=ic_south_twotone;var ic_south_east={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M19,9h-2v6.59L5.41,4L4,5.41L15.59,17H9v2h10V9z"},"children":[]}]};exports.ic_south_east=ic_south_east;var ic_south_east_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M19,9h-2v6.59L5.41,4L4,5.41L15.59,17H9v2h10V9z"},"children":[]}]};exports.ic_south_east_outline=ic_south_east_outline;var ic_south_east_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M19,9h-2v6.59L5.41,4L4,5.41L15.59,17H9v2h10V9z"},"children":[]}]};exports.ic_south_east_twotone=ic_south_east_twotone;var ic_south_west={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M15,19v-2H8.41L20,5.41L18.59,4L7,15.59V9H5v10H15z"},"children":[]}]};exports.ic_south_west=ic_south_west;var ic_south_west_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M15,19v-2H8.41L20,5.41L18.59,4L7,15.59V9H5v10H15z"},"children":[]}]};exports.ic_south_west_outline=ic_south_west_outline;var ic_south_west_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M15,19v-2H8.41L20,5.41L18.59,4L7,15.59V9H5v10H15z"},"children":[]}]};exports.ic_south_west_twotone=ic_south_west_twotone;var ic_subdirectory_arrow_left={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11 9l1.42 1.42L8.83 14H18V4h2v12H8.83l3.59 3.58L11 21l-6-6 6-6z"},"children":[]}]};exports.ic_subdirectory_arrow_left=ic_subdirectory_arrow_left;var ic_subdirectory_arrow_left_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11 9l1.42 1.42L8.83 14H18V4h2v12H8.83l3.59 3.58L11 21l-6-6 6-6z"},"children":[]}]};exports.ic_subdirectory_arrow_left_outline=ic_subdirectory_arrow_left_outline;var ic_subdirectory_arrow_left_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11 9l1.42 1.42L8.83 14H18V4h2v12H8.83l3.59 3.58L11 21l-6-6 6-6z"},"children":[]}]};exports.ic_subdirectory_arrow_left_twotone=ic_subdirectory_arrow_left_twotone;var ic_subdirectory_arrow_right={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 15l-6 6-1.42-1.42L15.17 16H4V4h2v10h9.17l-3.59-3.58L13 9l6 6z"},"children":[]}]};exports.ic_subdirectory_arrow_right=ic_subdirectory_arrow_right;var ic_subdirectory_arrow_right_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M24 24H0V0h24v24z","fill":"none","opacity":".87"},"children":[]},{"name":"path","attribs":{"d":"M19 15l-6 6-1.42-1.42L15.17 16H4V4h2v10h9.17l-3.59-3.58L13 9l6 6z"},"children":[]}]};exports.ic_subdirectory_arrow_right_outline=ic_subdirectory_arrow_right_outline;var ic_subdirectory_arrow_right_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M24 24H0V0h24v24z","fill":"none","opacity":".87"},"children":[]},{"name":"path","attribs":{"d":"M19 15l-6 6-1.42-1.42L15.17 16H4V4h2v10h9.17l-3.59-3.58L13 9l6 6z"},"children":[]}]};exports.ic_subdirectory_arrow_right_twotone=ic_subdirectory_arrow_right_twotone;var ic_switch_left={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M8.5,8.62v6.76L5.12,12L8.5,8.62 M10,5l-7,7l7,7V5L10,5z M14,5v14l7-7L14,5z"},"children":[]}]};exports.ic_switch_left=ic_switch_left;var ic_switch_left_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M8.5,8.62v6.76L5.12,12L8.5,8.62 M10,5l-7,7l7,7V5L10,5z M14,5v14l7-7L14,5z"},"children":[]}]};exports.ic_switch_left_outline=ic_switch_left_outline;var ic_switch_left_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"polyline","attribs":{"opacity":".3","points":"8.5,8.62 8.5,15.38 5.12,12 8.5,8.62"},"children":[]},{"name":"path","attribs":{"d":"M8.5,8.62v6.76L5.12,12L8.5,8.62 M10,5l-7,7l7,7V5L10,5z M14,5v14l7-7L14,5z"},"children":[]}]};exports.ic_switch_left_twotone=ic_switch_left_twotone;var ic_switch_right={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","transform":"matrix(-1 -1.224647e-16 1.224647e-16 -1 24 24)","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M15.5,15.38V8.62L18.88,12L15.5,15.38 M14,19l7-7l-7-7V19L14,19z M10,19V5l-7,7L10,19z"},"children":[]}]};exports.ic_switch_right=ic_switch_right;var ic_switch_right_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","transform":"matrix(-1 -1.224647e-16 1.224647e-16 -1 24 24)","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M15.5,15.38V8.62L18.88,12L15.5,15.38 M14,19l7-7l-7-7V19L14,19z M10,19V5l-7,7L10,19z"},"children":[]}]};exports.ic_switch_right_outline=ic_switch_right_outline;var ic_switch_right_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","transform":"matrix(-1 -1.224647e-16 1.224647e-16 -1 24 24)","width":"24"},"children":[]},{"name":"polyline","attribs":{"opacity":".3","points":"15.5,15.38 15.5,8.62 18.88,12 15.5,15.38"},"children":[]},{"name":"path","attribs":{"d":"M15.5,15.38V8.62L18.88,12L15.5,15.38 M14,19l7-7l-7-7V19L14,19z M10,19V5l-7,7L10,19z"},"children":[]}]};exports.ic_switch_right_twotone=ic_switch_right_twotone;var ic_unfold_less={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7.41 18.59L8.83 20 12 16.83 15.17 20l1.41-1.41L12 14l-4.59 4.59zm9.18-13.18L15.17 4 12 7.17 8.83 4 7.41 5.41 12 10l4.59-4.59z"},"children":[]}]};exports.ic_unfold_less=ic_unfold_less;var ic_unfold_less_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M24 0v24H0V0h24z","fill":"none","opacity":".87"},"children":[]},{"name":"path","attribs":{"d":"M7.41 18.59L8.83 20 12 16.83 15.17 20l1.41-1.41L12 14l-4.59 4.59zm9.18-13.18L15.17 4 12 7.17 8.83 4 7.41 5.41 12 10l4.59-4.59z"},"children":[]}]};exports.ic_unfold_less_outline=ic_unfold_less_outline;var ic_unfold_less_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M24 0v24H0V0h24z","fill":"none","opacity":".87"},"children":[]},{"name":"path","attribs":{"d":"M7.41 18.59L8.83 20 12 16.83 15.17 20l1.41-1.41L12 14l-4.59 4.59zm9.18-13.18L15.17 4 12 7.17 8.83 4 7.41 5.41 12 10l4.59-4.59z"},"children":[]}]};exports.ic_unfold_less_twotone=ic_unfold_less_twotone;var ic_unfold_more={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 5.83L15.17 9l1.41-1.41L12 3 7.41 7.59 8.83 9 12 5.83zm0 12.34L8.83 15l-1.41 1.41L12 21l4.59-4.59L15.17 15 12 18.17z"},"children":[]}]};exports.ic_unfold_more=ic_unfold_more;var ic_unfold_more_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 5.83L15.17 9l1.41-1.41L12 3 7.41 7.59 8.83 9 12 5.83zm0 12.34L8.83 15l-1.41 1.41L12 21l4.59-4.59L15.17 15 12 18.17z"},"children":[]}]};exports.ic_unfold_more_outline=ic_unfold_more_outline;var ic_unfold_more_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 5.83L15.17 9l1.41-1.41L12 3 7.41 7.59 8.83 9 12 5.83zm0 12.34L8.83 15l-1.41 1.41L12 21l4.59-4.59L15.17 15 12 18.17z"},"children":[]}]};exports.ic_unfold_more_twotone=ic_unfold_more_twotone;var ic_waterfall_chart={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 4h3v16h-3zM3 13h3v7H3zm11-9h3v3h-3zm-4 1h3v4h-3zm-3 5h3v4H7z"},"children":[]}]};exports.ic_waterfall_chart=ic_waterfall_chart;var ic_west={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M9,19l1.41-1.41L5.83,13H22V11H5.83l4.59-4.59L9,5l-7,7L9,19z"},"children":[]}]};exports.ic_west=ic_west;var ic_west_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M9,19l1.41-1.41L5.83,13H22V11H5.83l4.59-4.59L9,5l-7,7L9,19z"},"children":[]}]};exports.ic_west_outline=ic_west_outline;var ic_west_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M9,19l1.41-1.41L5.83,13H22V11H5.83l4.59-4.59L9,5l-7,7L9,19z"},"children":[]}]};exports.ic_west_twotone=ic_west_twotone;var ic_account_tree={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 11V3h-7v3H9V3H2v8h7V8h2v10h4v3h7v-8h-7v3h-2V8h2v3z"},"children":[]}]};exports.ic_account_tree=ic_account_tree;var ic_account_tree_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M22,11V3h-7v3H9V3H2v8h7V8h2v10h4v3h7v-8h-7v3h-2V8h2v3H22z M7,9H4V5h3V9z M17,15h3v4h-3V15z M17,5h3v4h-3V5z"},"children":[]}]};exports.ic_account_tree_outline=ic_account_tree_outline;var ic_account_tree_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M22,11V3h-7v3H9V3H2v8h7V8h2v10h4v3h7v-8h-7v3h-2V8h2v3H22z M7,9H4V5h3V9z M17,15h3v4h-3V15z M17,5h3v4h-3V5z"},"children":[{"name":"path","attribs":{"d":"M22,11V3h-7v3H9V3H2v8h7V8h2v10h4v3h7v-8h-7v3h-2V8h2v3H22z M7,9H4V5h3V9z M17,15h3v4h-3V15z M17,5h3v4h-3V5z"},"children":[]}]},{"name":"polyline","attribs":{"opacity":".3","points":"7,5 7,9 4,9 4,5 7,5"},"children":[{"name":"polyline","attribs":{"opacity":".3","points":"7,5 7,9 4,9 4,5 7,5"},"children":[]}]},{"name":"polyline","attribs":{"opacity":".3","points":"20,5 20,9 17,9 17,5 20,5"},"children":[{"name":"polyline","attribs":{"opacity":".3","points":"20,5 20,9 17,9 17,5 20,5"},"children":[]}]},{"name":"polyline","attribs":{"opacity":".3","points":"20,15 20,19 17,19 17,15 20,15"},"children":[{"name":"polyline","attribs":{"opacity":".3","points":"20,15 20,19 17,19 17,15 20,15"},"children":[]}]}]}]};exports.ic_account_tree_twotone=ic_account_tree_twotone;var ic_adb={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 16c0 3.87 3.13 7 7 7s7-3.13 7-7v-4H5v4zM16.12 4.37l2.1-2.1-.82-.83-2.3 2.31C14.16 3.28 13.12 3 12 3s-2.16.28-3.09.75L6.6 1.44l-.82.83 2.1 2.1C6.14 5.64 5 7.68 5 10v1h14v-1c0-2.32-1.14-4.36-2.88-5.63zM9 9c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z"},"children":[]}]};exports.ic_adb=ic_adb;var ic_adb_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 16c0 3.87 3.13 7 7 7s7-3.13 7-7v-4H5v4zM16.12 4.37l2.1-2.1-.82-.83-2.3 2.31C14.16 3.28 13.12 3 12 3s-2.16.28-3.09.75L6.6 1.44l-.82.83 2.1 2.1C6.14 5.64 5 7.68 5 10v1h14v-1c0-2.32-1.14-4.36-2.88-5.63zM9 9c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z"},"children":[]}]};exports.ic_adb_outline=ic_adb_outline;var ic_adb_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 16c0 3.87 3.13 7 7 7s7-3.13 7-7v-4H5v4zM16.12 4.37l2.1-2.1-.82-.83-2.3 2.31C14.16 3.28 13.12 3 12 3s-2.16.28-3.09.75L6.6 1.44l-.82.83 2.1 2.1C6.14 5.64 5 7.68 5 10v1h14v-1c0-2.32-1.14-4.36-2.88-5.63zM9 9c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z"},"children":[]}]};exports.ic_adb_twotone=ic_adb_twotone;var ic_add_call={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M20 15.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM21 6h-3V3h-2v3h-3v2h3v3h2V8h3z"},"children":[]}]};exports.ic_add_call=ic_add_call;var ic_airline_seat_flat={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 11v2H9V7h9c2.21 0 4 1.79 4 4zM2 14v2h6v2h8v-2h6v-2H2zm5.14-1.9c1.16-1.19 1.14-3.08-.04-4.24-1.19-1.16-3.08-1.14-4.24.04-1.16 1.19-1.14 3.08.04 4.24 1.19 1.16 3.08 1.14 4.24-.04z"},"children":[]}]};exports.ic_airline_seat_flat=ic_airline_seat_flat;var ic_airline_seat_flat_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 13c.78 0 1.55-.3 2.14-.9 1.16-1.19 1.14-3.08-.04-4.24C6.51 7.29 5.75 7 5 7c-.78 0-1.55.3-2.14.9-1.16 1.19-1.14 3.08.04 4.24.59.57 1.35.86 2.1.86zm-.71-3.7c.19-.19.44-.3.71-.3.26 0 .51.1.7.28.4.39.4 1.01.02 1.41-.2.2-.45.31-.72.31-.26 0-.51-.1-.7-.28-.4-.4-.4-1.02-.01-1.42zM18 7H9v6h13v-2c0-2.21-1.79-4-4-4zm-7 4V9h7c1.1 0 2 .9 2 2h-9zm-9 5h6v2h8v-2h6v-2H2z"},"children":[]}]};exports.ic_airline_seat_flat_outline=ic_airline_seat_flat_outline;var ic_airline_seat_flat_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 11c.27 0 .52-.11.71-.3.39-.4.39-1.02-.01-1.41C5.51 9.11 5.26 9 5 9c-.27 0-.52.11-.71.3-.39.4-.39 1.02.01 1.41.19.18.44.29.7.29zm13-2h-7v2h9c0-1.1-.9-2-2-2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M5 13c.78 0 1.55-.3 2.14-.9 1.16-1.19 1.14-3.08-.04-4.24C6.51 7.29 5.75 7 5 7c-.78 0-1.55.3-2.14.9-1.16 1.19-1.14 3.08.04 4.24.59.57 1.35.86 2.1.86zm-.71-3.7c.19-.19.44-.3.71-.3.26 0 .51.1.7.28.4.39.4 1.01.02 1.41-.2.2-.45.31-.72.31-.26 0-.51-.1-.7-.28-.4-.4-.4-1.02-.01-1.42zM18 7H9v6h13v-2c0-2.21-1.79-4-4-4zm-7 4V9h7c1.1 0 2 .9 2 2h-9zm-9 5h6v2h8v-2h6v-2H2z"},"children":[]}]};exports.ic_airline_seat_flat_twotone=ic_airline_seat_flat_twotone;var ic_airline_seat_flat_angled={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22.25 14.29l-.69 1.89L9.2 11.71l2.08-5.66 8.56 3.09c2.1.76 3.18 3.06 2.41 5.15zM1.5 12.14L8 14.48V19h8v-1.63L20.52 19l.69-1.89-19.02-6.86-.69 1.89zm5.8-1.94c1.49-.72 2.12-2.51 1.41-4C7.99 4.71 6.2 4.08 4.7 4.8c-1.49.71-2.12 2.5-1.4 4 .71 1.49 2.5 2.12 4 1.4z"},"children":[]}]};exports.ic_airline_seat_flat_angled=ic_airline_seat_flat_angled;var ic_airline_seat_flat_angled_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6 6.5c.31 0 .7.15.9.56.24.5.02 1.1-.47 1.34-.14.06-.28.1-.43.1-.3 0-.7-.15-.89-.56-.17-.34-.1-.63-.05-.78.05-.14.18-.4.51-.56.14-.06.28-.1.43-.1m6.47 2.11l6.69 2.41c.52.19.93.56 1.15 1.05.22.48.25 1.03.06 1.53l-.01.02-8.59-3.11.7-1.9M10 15.19l4 1.44V17h-4v-1.81M6 4.5c-.44 0-.88.1-1.3.3-1.49.71-2.12 2.5-1.4 4 .51 1.07 1.58 1.7 2.7 1.7.44 0 .88-.1 1.3-.3 1.49-.72 2.12-2.51 1.41-4C8.19 5.13 7.12 4.5 6 4.5zm5.28 1.55L9.2 11.71l12.36 4.47.69-1.89c.77-2.09-.31-4.39-2.41-5.15l-8.56-3.09zm-9.09 4.2l-.69 1.89L8 14.48V19h8v-1.63L20.52 19l.69-1.89-19.02-6.86z"},"children":[]}]};exports.ic_airline_seat_flat_angled_outline=ic_airline_seat_flat_angled_outline;var ic_airline_seat_flat_angled_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14 16.64l-4-1.45V17h4zM6 8.5c.15 0 .3-.03.44-.1.49-.24.7-.84.46-1.34-.19-.41-.59-.56-.9-.56-.15 0-.3.03-.44.1-.32.16-.45.42-.5.56-.05.15-.12.44.04.77.2.42.59.57.9.57zm13.16 2.52l-6.69-2.41-.7 1.91 8.59 3.11.01-.02c.19-.51.17-1.05-.06-1.53-.23-.5-.63-.87-1.15-1.06z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M1.5 12.14L8 14.48V19h8v-1.63L20.52 19l.69-1.89-19.02-6.86-.69 1.89zm8.5 3.05l4 1.44V17h-4v-1.81zm9.84-6.05l-8.56-3.09-2.08 5.66 12.36 4.47.69-1.89c.77-2.09-.31-4.39-2.41-5.15zm.53 4.46l-.01.02-8.59-3.11.7-1.91 6.69 2.41c.52.19.93.56 1.15 1.05.23.49.25 1.04.06 1.54zM6 10.5c.44 0 .88-.1 1.3-.3 1.49-.72 2.12-2.51 1.41-4C8.19 5.13 7.12 4.5 6 4.5c-.44 0-.88.1-1.3.3-1.49.71-2.12 2.5-1.4 4 .51 1.07 1.58 1.7 2.7 1.7zm-.94-3.34c.05-.14.18-.4.51-.56.14-.06.28-.1.43-.1.31 0 .7.15.9.56.24.5.02 1.1-.47 1.34-.14.06-.28.1-.43.1-.3 0-.7-.15-.89-.56-.17-.34-.1-.63-.05-.78z"},"children":[]}]};exports.ic_airline_seat_flat_angled_twotone=ic_airline_seat_flat_angled_twotone;var ic_airline_seat_individual_suite={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 13c1.65 0 3-1.35 3-3S8.65 7 7 7s-3 1.35-3 3 1.35 3 3 3zm12-6h-8v7H3V7H1v10h22v-6c0-2.21-1.79-4-4-4z"},"children":[]}]};exports.ic_airline_seat_individual_suite=ic_airline_seat_individual_suite;var ic_airline_seat_individual_suite_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 14c1.66 0 3-1.34 3-3S8.66 8 7 8s-3 1.34-3 3 1.34 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm12-3h-8v8H3V7H1v10h22v-6c0-2.21-1.79-4-4-4zm2 8h-8V9h6c1.1 0 2 .9 2 2v4z"},"children":[]}]};exports.ic_airline_seat_individual_suite_outline=ic_airline_seat_individual_suite_outline;var ic_airline_seat_individual_suite_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"7","cy":"11","opacity":".3","r":"1"},"children":[]},{"name":"path","attribs":{"d":"M19 9h-6v6h8v-4c0-1.1-.9-2-2-2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M7 14c1.66 0 3-1.34 3-3S8.66 8 7 8s-3 1.34-3 3 1.34 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm12-3h-8v8H3V7H1v10h22v-6c0-2.21-1.79-4-4-4zm2 8h-8V9h6c1.1 0 2 .9 2 2v4z"},"children":[]}]};exports.ic_airline_seat_individual_suite_twotone=ic_airline_seat_individual_suite_twotone;var ic_airline_seat_legroom_extra={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 12V3H2v9c0 2.76 2.24 5 5 5h6v-2H7c-1.66 0-3-1.34-3-3zm18.83 5.24c-.38-.72-1.29-.97-2.03-.63l-1.09.5-3.41-6.98c-.34-.68-1.03-1.12-1.79-1.12L11 9V3H5v8c0 1.66 1.34 3 3 3h7l3.41 7 3.72-1.7c.77-.36 1.1-1.3.7-2.06z"},"children":[]}]};exports.ic_airline_seat_legroom_extra=ic_airline_seat_legroom_extra;var ic_airline_seat_legroom_extra_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 12V3H2v9c0 2.76 2.24 5 5 5h6v-2H7c-1.66 0-3-1.34-3-3zm18.83 5.24c-.38-.72-1.29-.97-2.03-.63l-1.09.5-3.41-6.98C15.96 9.45 15.27 9 14.51 9H11V3H5v8c0 1.66 1.34 3 3 3h7l3.41 7 3.72-1.7c.77-.36 1.1-1.3.7-2.06z"},"children":[]}]};exports.ic_airline_seat_legroom_extra_outline=ic_airline_seat_legroom_extra_outline;var ic_airline_seat_legroom_extra_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 12V3H2v9c0 2.76 2.24 5 5 5h6v-2H7c-1.66 0-3-1.34-3-3zm18.83 5.24c-.38-.72-1.29-.97-2.03-.63l-1.09.5-3.41-6.98C15.96 9.45 15.27 9 14.51 9H11V3H5v8c0 1.66 1.34 3 3 3h7l3.41 7 3.72-1.7c.77-.36 1.1-1.3.7-2.06z"},"children":[]}]};exports.ic_airline_seat_legroom_extra_twotone=ic_airline_seat_legroom_extra_twotone;var ic_airline_seat_legroom_normal={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 12V3H3v9c0 2.76 2.24 5 5 5h6v-2H8c-1.66 0-3-1.34-3-3zm15.5 6H19v-7c0-1.1-.9-2-2-2h-5V3H6v8c0 1.65 1.35 3 3 3h7v7h4.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5z"},"children":[]}]};exports.ic_airline_seat_legroom_normal=ic_airline_seat_legroom_normal;var ic_airline_seat_legroom_normal_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 12V3H3v9c0 2.76 2.24 5 5 5h6v-2H8c-1.66 0-3-1.34-3-3zm15.5 6H19v-7c0-1.1-.9-2-2-2h-5V3H6v8c0 1.65 1.35 3 3 3h7v7h4.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5z"},"children":[]}]};exports.ic_airline_seat_legroom_normal_outline=ic_airline_seat_legroom_normal_outline;var ic_airline_seat_legroom_normal_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 12V3H3v9c0 2.76 2.24 5 5 5h6v-2H8c-1.66 0-3-1.34-3-3zm15.5 6H19v-7c0-1.1-.9-2-2-2h-5V3H6v8c0 1.65 1.35 3 3 3h7v7h4.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5z"},"children":[]}]};exports.ic_airline_seat_legroom_normal_twotone=ic_airline_seat_legroom_normal_twotone;var ic_airline_seat_legroom_reduced={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19.97 19.2c.18.96-.55 1.8-1.47 1.8H14v-3l1-4H9c-1.65 0-3-1.35-3-3V3h6v6h5c1.1 0 2 .9 2 2l-2 7h1.44c.73 0 1.39.49 1.53 1.2zM5 12V3H3v9c0 2.76 2.24 5 5 5h4v-2H8c-1.66 0-3-1.34-3-3z"},"children":[]}]};exports.ic_airline_seat_legroom_reduced=ic_airline_seat_legroom_reduced;var ic_airline_seat_legroom_reduced_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19.97 19.2c.18.96-.55 1.8-1.47 1.8H14v-3l1-4H9c-1.65 0-3-1.35-3-3V3h6v6h5c1.1 0 2 .9 2 2l-2 7h1.44c.73 0 1.39.49 1.53 1.2zM5 12V3H3v9c0 2.76 2.24 5 5 5h4v-2H8c-1.66 0-3-1.34-3-3z"},"children":[]}]};exports.ic_airline_seat_legroom_reduced_outline=ic_airline_seat_legroom_reduced_outline;var ic_airline_seat_legroom_reduced_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19.97 19.2c.18.96-.55 1.8-1.47 1.8H14v-3l1-4H9c-1.65 0-3-1.35-3-3V3h6v6h5c1.1 0 2 .9 2 2l-2 7h1.44c.73 0 1.39.49 1.53 1.2zM5 12V3H3v9c0 2.76 2.24 5 5 5h4v-2H8c-1.66 0-3-1.34-3-3z"},"children":[]}]};exports.ic_airline_seat_legroom_reduced_twotone=ic_airline_seat_legroom_reduced_twotone;var ic_airline_seat_recline_extra={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5.35 5.64c-.9-.64-1.12-1.88-.49-2.79.63-.9 1.88-1.12 2.79-.49.9.64 1.12 1.88.49 2.79-.64.9-1.88 1.12-2.79.49zM16 19H8.93c-1.48 0-2.74-1.08-2.96-2.54L4 7H2l1.99 9.76C4.37 19.2 6.47 21 8.94 21H16v-2zm.23-4h-4.88l-1.03-4.1c1.58.89 3.28 1.54 5.15 1.22V9.99c-1.63.31-3.44-.27-4.69-1.25L9.14 7.47c-.23-.18-.49-.3-.76-.38-.32-.09-.66-.12-.99-.06h-.02c-1.23.22-2.05 1.39-1.84 2.61l1.35 5.92C7.16 16.98 8.39 18 9.83 18h6.85l3.82 3 1.5-1.5-5.77-4.5z"},"children":[]}]};exports.ic_airline_seat_recline_extra=ic_airline_seat_recline_extra;var ic_airline_seat_recline_extra_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5.35 5.64c-.9-.64-1.12-1.88-.49-2.79.63-.9 1.88-1.12 2.79-.49.9.64 1.12 1.88.49 2.79-.64.9-1.88 1.12-2.79.49zM16 19H8.93c-1.48 0-2.74-1.08-2.96-2.54L4 7H2l1.99 9.76C4.37 19.2 6.47 21 8.94 21H16v-2zm.23-4h-4.88l-1.03-4.1c1.58.89 3.28 1.54 5.15 1.22V9.99c-1.63.31-3.44-.27-4.69-1.25L9.14 7.47c-.23-.18-.49-.3-.76-.38-.32-.09-.66-.12-.99-.06h-.02c-1.23.22-2.05 1.39-1.84 2.61l1.35 5.92C7.16 16.98 8.39 18 9.83 18h6.85l3.82 3 1.5-1.5-5.77-4.5z"},"children":[]}]};exports.ic_airline_seat_recline_extra_outline=ic_airline_seat_recline_extra_outline;var ic_airline_seat_recline_extra_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5.35 5.64c-.9-.64-1.12-1.88-.49-2.79.63-.9 1.88-1.12 2.79-.49.9.64 1.12 1.88.49 2.79-.64.9-1.88 1.12-2.79.49zM16 19H8.93c-1.48 0-2.74-1.08-2.96-2.54L4 7H2l1.99 9.76C4.37 19.2 6.47 21 8.94 21H16v-2zm.23-4h-4.88l-1.03-4.1c1.58.89 3.28 1.54 5.15 1.22V9.99c-1.63.31-3.44-.27-4.69-1.25L9.14 7.47c-.23-.18-.49-.3-.76-.38-.32-.09-.66-.12-.99-.06h-.02c-1.23.22-2.05 1.39-1.84 2.61l1.35 5.92C7.16 16.98 8.39 18 9.83 18h6.85l3.82 3 1.5-1.5-5.77-4.5z"},"children":[]}]};exports.ic_airline_seat_recline_extra_twotone=ic_airline_seat_recline_extra_twotone;var ic_airline_seat_recline_normal={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7.59 5.41c-.78-.78-.78-2.05 0-2.83.78-.78 2.05-.78 2.83 0 .78.78.78 2.05 0 2.83-.79.79-2.05.79-2.83 0zM6 16V7H4v9c0 2.76 2.24 5 5 5h6v-2H9c-1.66 0-3-1.34-3-3zm14 4.07L14.93 15H11.5v-3.68c1.4 1.15 3.6 2.16 5.5 2.16v-2.16c-1.66.02-3.61-.87-4.67-2.04l-1.4-1.55c-.19-.21-.43-.38-.69-.5-.29-.14-.62-.23-.96-.23h-.03C8.01 7 7 8.01 7 9.25V15c0 1.66 1.34 3 3 3h5.07l3.5 3.5L20 20.07z"},"children":[]}]};exports.ic_airline_seat_recline_normal=ic_airline_seat_recline_normal;var ic_airline_seat_recline_normal_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7.59 5.41c-.78-.78-.78-2.05 0-2.83s2.05-.78 2.83 0 .78 2.05 0 2.83c-.79.79-2.05.79-2.83 0zM6 16V7H4v9c0 2.76 2.24 5 5 5h6v-2H9c-1.66 0-3-1.34-3-3zm14 4.07L14.93 15H11.5v-3.68c1.4 1.15 3.6 2.16 5.5 2.16v-2.16c-1.66.02-3.61-.87-4.67-2.04l-1.4-1.55c-.19-.21-.43-.38-.69-.5-.29-.14-.62-.23-.96-.23h-.03C8.01 7 7 8.01 7 9.25V15c0 1.66 1.34 3 3 3h5.07l3.5 3.5L20 20.07z"},"children":[]}]};exports.ic_airline_seat_recline_normal_outline=ic_airline_seat_recline_normal_outline;var ic_airline_seat_recline_normal_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7.59 5.41c-.78-.78-.78-2.05 0-2.83s2.05-.78 2.83 0 .78 2.05 0 2.83c-.79.79-2.05.79-2.83 0zM6 16V7H4v9c0 2.76 2.24 5 5 5h6v-2H9c-1.66 0-3-1.34-3-3zm14 4.07L14.93 15H11.5v-3.68c1.4 1.15 3.6 2.16 5.5 2.16v-2.16c-1.66.02-3.61-.87-4.67-2.04l-1.4-1.55c-.19-.21-.43-.38-.69-.5-.29-.14-.62-.23-.96-.23h-.03C8.01 7 7 8.01 7 9.25V15c0 1.66 1.34 3 3 3h5.07l3.5 3.5L20 20.07z"},"children":[]}]};exports.ic_airline_seat_recline_normal_twotone=ic_airline_seat_recline_normal_twotone;var ic_bluetooth_audio={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14.24 12.01l2.32 2.32c.28-.72.44-1.51.44-2.33 0-.82-.16-1.59-.43-2.31l-2.33 2.32zm5.29-5.3l-1.26 1.26c.63 1.21.98 2.57.98 4.02s-.36 2.82-.98 4.02l1.2 1.2c.97-1.54 1.54-3.36 1.54-5.31-.01-1.89-.55-3.67-1.48-5.19zm-3.82 1L10 2H9v7.59L4.41 5 3 6.41 8.59 12 3 17.59 4.41 19 9 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM11 5.83l1.88 1.88L11 9.59V5.83zm1.88 10.46L11 18.17v-3.76l1.88 1.88z"},"children":[]}]};exports.ic_bluetooth_audio=ic_bluetooth_audio;var ic_bluetooth_audio_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14.24 12.01l2.32 2.32c.28-.72.44-1.51.44-2.33s-.16-1.59-.43-2.31l-2.33 2.32zm5.29-5.3l-1.26 1.26c.63 1.21.98 2.57.98 4.02s-.36 2.82-.98 4.02l1.2 1.2c.97-1.54 1.54-3.36 1.54-5.31-.01-1.89-.55-3.67-1.48-5.19zm-3.82 1L10 2H9v7.59L4.41 5 3 6.41 8.59 12 3 17.59 4.41 19 9 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM11 5.83l1.88 1.88L11 9.59V5.83zm1.88 10.46L11 18.17v-3.76l1.88 1.88z"},"children":[]}]};exports.ic_bluetooth_audio_outline=ic_bluetooth_audio_outline;var ic_bluetooth_audio_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14.24 12.01l2.32 2.32c.28-.72.44-1.51.44-2.33s-.16-1.59-.43-2.31l-2.33 2.32zm5.29-5.3l-1.26 1.26c.63 1.21.98 2.57.98 4.02s-.36 2.82-.98 4.02l1.2 1.2c.97-1.54 1.54-3.36 1.54-5.31-.01-1.89-.55-3.67-1.48-5.19zm-3.82 1L10 2H9v7.59L4.41 5 3 6.41 8.59 12 3 17.59 4.41 19 9 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM11 5.83l1.88 1.88L11 9.59V5.83zm1.88 10.46L11 18.17v-3.76l1.88 1.88z"},"children":[]}]};exports.ic_bluetooth_audio_twotone=ic_bluetooth_audio_twotone;var ic_confirmation_number={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M22,10V6c0-1.11-0.9-2-2-2H4C2.9,4,2.01,4.89,2.01,6v4C3.11,10,4,10.9,4,12s-0.89,2-2,2v4c0,1.1,0.9,2,2,2h16 c1.1,0,2-0.9,2-2v-4c-1.1,0-2-0.9-2-2S20.9,10,22,10z M13,17.5h-2v-2h2V17.5z M13,13h-2v-2h2V13z M13,8.5h-2v-2h2V8.5z"},"children":[{"name":"path","attribs":{"d":"M22,10V6c0-1.11-0.9-2-2-2H4C2.9,4,2.01,4.89,2.01,6v4C3.11,10,4,10.9,4,12s-0.89,2-2,2v4c0,1.1,0.9,2,2,2h16 c1.1,0,2-0.9,2-2v-4c-1.1,0-2-0.9-2-2S20.9,10,22,10z M13,17.5h-2v-2h2V17.5z M13,13h-2v-2h2V13z M13,8.5h-2v-2h2V8.5z"},"children":[]}]}]}]}]}]}]}]};exports.ic_confirmation_number=ic_confirmation_number;var ic_confirmation_number_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 10V6c0-1.11-.9-2-2-2H4c-1.1 0-1.99.89-1.99 2v4c1.1 0 1.99.9 1.99 2s-.89 2-2 2v4c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-4c-1.1 0-2-.9-2-2s.9-2 2-2zm-2-1.46c-1.19.69-2 1.99-2 3.46s.81 2.77 2 3.46V18H4v-2.54c1.19-.69 2-1.99 2-3.46 0-1.48-.8-2.77-1.99-3.46L4 6h16v2.54zM11 15h2v2h-2zm0-4h2v2h-2zm0-4h2v2h-2z"},"children":[]}]};exports.ic_confirmation_number_outline=ic_confirmation_number_outline;var ic_confirmation_number_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4.01 8.54C5.2 9.23 6 10.52 6 12s-.81 2.77-2 3.46V18h16v-2.54c-1.19-.69-2-1.99-2-3.46s.81-2.77 2-3.46V6H4l.01 2.54zM11 7h2v2h-2V7zm0 4h2v2h-2v-2zm0 4h2v2h-2v-2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M22 10V6c0-1.11-.9-2-2-2H4c-1.1 0-1.99.89-1.99 2v4c1.1 0 1.99.9 1.99 2s-.89 2-2 2v4c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-4c-1.1 0-2-.9-2-2s.9-2 2-2zm-2-1.46c-1.19.69-2 1.99-2 3.46s.81 2.77 2 3.46V18H4v-2.54c1.19-.69 2-1.99 2-3.46 0-1.48-.8-2.77-1.99-3.46L4 6h16v2.54zM11 15h2v2h-2zm0-4h2v2h-2zm0-4h2v2h-2z"},"children":[]}]};exports.ic_confirmation_number_twotone=ic_confirmation_number_twotone;var ic_directions_off={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M9.41,6.58L12,4h0l8,8l-2.58,2.59L18.83,16l2.58-2.59c0.78-0.78,0.78-2.05,0-2.83l-8-8c-0.78-0.78-2.05-0.78-2.83,0 L8,5.17L9.41,6.58z"},"children":[{"name":"path","attribs":{"d":"M9.41,6.58L12,4h0l8,8l-2.58,2.59L18.83,16l2.58-2.59c0.78-0.78,0.78-2.05,0-2.83l-8-8c-0.78-0.78-2.05-0.78-2.83,0 L8,5.17L9.41,6.58z"},"children":[]}]},{"name":"path","attribs":{"d":"M2.81,2.81L1.39,4.22L5.17,8l-2.58,2.59c-0.78,0.78-0.78,2.05,0,2.83l8,8c0.78,0.78,2.05,0.78,2.83,0L16,18.83l3.78,3.78 l1.41-1.41L2.81,2.81z M12,20l-8-8l2.58-2.59L8.17,11H7v2h3.17l1.5,1.5l-1.08,1.09L12,17l1.09-1.09l1.5,1.5L12,20z"},"children":[{"name":"path","attribs":{"d":"M2.81,2.81L1.39,4.22L5.17,8l-2.58,2.59c-0.78,0.78-0.78,2.05,0,2.83l8,8c0.78,0.78,2.05,0.78,2.83,0L16,18.83l3.78,3.78 l1.41-1.41L2.81,2.81z M12,20l-8-8l2.58-2.59L8.17,11H7v2h3.17l1.5,1.5l-1.08,1.09L12,17l1.09-1.09l1.5,1.5L12,20z"},"children":[]}]},{"name":"rect","attribs":{"height":"7.07","transform":"matrix(0.7071 -0.7071 0.7071 0.7071 -3.0134 12.8107)","width":"1.54","x":"13.19","y":"6.51"},"children":[{"name":"rect","attribs":{"height":"7.07","transform":"matrix(0.7071 -0.7071 0.7071 0.7071 -3.0134 12.8107)","width":"1.54","x":"13.19","y":"6.51"},"children":[]}]}]}]}]}]};exports.ic_directions_off=ic_directions_off;var ic_directions_off_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M21.71,11.29l-9-9c-0.39-0.39-1.02-0.39-1.41,0L8.21,5.38l1.41,1.41L12,4.42L19.58,12l-2.38,2.38l1.41,1.41l3.09-3.09 C22.1,12.33,22.1,11.7,21.71,11.29z"},"children":[{"name":"path","attribs":{"d":"M21.71,11.29l-9-9c-0.39-0.39-1.02-0.39-1.41,0L8.21,5.38l1.41,1.41L12,4.42L19.58,12l-2.38,2.38l1.41,1.41l3.09-3.09 C22.1,12.33,22.1,11.7,21.71,11.29z"},"children":[]}]},{"name":"polygon","attribs":{"points":"13,7.5 13,10.17 15.17,12.34 16.5,11"},"children":[{"name":"polygon","attribs":{"points":"13,7.5 13,10.17 15.17,12.34 16.5,11"},"children":[]}]},{"name":"path","attribs":{"d":"M1.39,4.22l3.99,3.99l-3.09,3.09c-0.39,0.39-0.39,1.02,0,1.41l9,9c0.39,0.39,1.02,0.39,1.41,0l3.09-3.09l3.99,3.99 l1.41-1.41L2.81,2.81L1.39,4.22z M8.03,10.85C8.02,10.9,7.99,10.95,7.99,11v4h2v-2.18l4.38,4.38L12,19.58L4.42,12l2.38-2.38 L8.03,10.85z"},"children":[{"name":"path","attribs":{"d":"M1.39,4.22l3.99,3.99l-3.09,3.09c-0.39,0.39-0.39,1.02,0,1.41l9,9c0.39,0.39,1.02,0.39,1.41,0l3.09-3.09l3.99,3.99 l1.41-1.41L2.81,2.81L1.39,4.22z M8.03,10.85C8.02,10.9,7.99,10.95,7.99,11v4h2v-2.18l4.38,4.38L12,19.58L4.42,12l2.38-2.38 L8.03,10.85z"},"children":[]}]}]}]}]}]};exports.ic_directions_off_outline=ic_directions_off_outline;var ic_directions_off_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M21.71,11.29l-9-9c-0.39-0.39-1.02-0.39-1.41,0L8.21,5.38l1.41,1.41L12,4.42L19.58,12l-2.38,2.38l1.41,1.41l3.09-3.09 C22.1,12.33,22.1,11.7,21.71,11.29z"},"children":[{"name":"path","attribs":{"d":"M21.71,11.29l-9-9c-0.39-0.39-1.02-0.39-1.41,0L8.21,5.38l1.41,1.41L12,4.42L19.58,12l-2.38,2.38l1.41,1.41l3.09-3.09 C22.1,12.33,22.1,11.7,21.71,11.29z"},"children":[]}]},{"name":"polygon","attribs":{"points":"13,7.5 13,10.17 15.17,12.34 16.5,11"},"children":[{"name":"polygon","attribs":{"points":"13,7.5 13,10.17 15.17,12.34 16.5,11"},"children":[]}]},{"name":"path","attribs":{"d":"M1.39,4.22l3.99,3.99l-3.09,3.09c-0.39,0.39-0.39,1.02,0,1.41l9,9c0.39,0.39,1.02,0.39,1.41,0l3.09-3.09l3.99,3.99 l1.41-1.41L2.81,2.81L1.39,4.22z M8.03,10.85C8.02,10.9,7.99,10.95,7.99,11v4h2v-2.18l4.38,4.38L12,19.58L4.42,12l2.38-2.38 L8.03,10.85z"},"children":[{"name":"path","attribs":{"d":"M1.39,4.22l3.99,3.99l-3.09,3.09c-0.39,0.39-0.39,1.02,0,1.41l9,9c0.39,0.39,1.02,0.39,1.41,0l3.09-3.09l3.99,3.99 l1.41-1.41L2.81,2.81L1.39,4.22z M8.03,10.85C8.02,10.9,7.99,10.95,7.99,11v4h2v-2.18l4.38,4.38L12,19.58L4.42,12l2.38-2.38 L8.03,10.85z"},"children":[]}]}]}]}]}]};exports.ic_directions_off_twotone=ic_directions_off_twotone;var ic_disc_full={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 16h2v-2h-2v2zm0-9v5h2V7h-2zM10 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 10c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"},"children":[]}]};exports.ic_disc_full=ic_disc_full;var ic_disc_full_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 7h2v5h-2zM10 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zm10-4h2v2h-2zm-10-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"},"children":[]}]};exports.ic_disc_full_outline=ic_disc_full_outline;var ic_disc_full_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 8c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 14h2v2h-2zM10 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zM20 7h2v5h-2zm-10 3c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"},"children":[]}]};exports.ic_disc_full_twotone=ic_disc_full_twotone;var ic_do_disturb_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9L16.9 18.31C15.55 19.37 13.85 20 12 20zm6.31-3.1L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9z"},"children":[]}]};exports.ic_do_disturb_outline=ic_do_disturb_outline;var ic_do_disturb_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9L16.9 18.31C15.55 19.37 13.85 20 12 20zm6.31-3.1L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9z"},"children":[]}]};exports.ic_do_disturb_twotone=ic_do_disturb_twotone;var ic_do_disturb_alt_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zM4 12c0-4.4 3.6-8 8-8 1.8 0 3.5.6 4.9 1.7L5.7 16.9C4.6 15.5 4 13.8 4 12zm8 8c-1.8 0-3.5-.6-4.9-1.7L18.3 7.1C19.4 8.5 20 10.2 20 12c0 4.4-3.6 8-8 8z"},"children":[]}]};exports.ic_do_disturb_alt_outline=ic_do_disturb_alt_outline;var ic_do_disturb_alt_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zM4 12c0-4.4 3.6-8 8-8 1.8 0 3.5.6 4.9 1.7L5.7 16.9C4.6 15.5 4 13.8 4 12zm8 8c-1.8 0-3.5-.6-4.9-1.7L18.3 7.1C19.4 8.5 20 10.2 20 12c0 4.4-3.6 8-8 8z"},"children":[]}]};exports.ic_do_disturb_alt_twotone=ic_do_disturb_alt_twotone;var ic_do_disturb_off_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 4c4.41 0 8 3.59 8 8 0 1.41-.37 2.73-1.01 3.88l1.46 1.46C21.43 15.79 22 13.96 22 12c0-5.52-4.48-10-10-10-1.96 0-3.79.57-5.33 1.55l1.46 1.46C9.27 4.37 10.59 4 12 4zm5 7h-2.88l2 2H17zM2.41 2.13L1 3.54l2.78 2.78C2.66 7.93 2 9.89 2 12c0 5.52 4.48 10 10 10 2.11 0 4.07-.66 5.68-1.78L20.46 23l1.41-1.41L2.41 2.13zM12 20c-4.41 0-8-3.59-8-8 0-1.56.45-3 1.23-4.23L8.46 11H7v2h3.46l5.77 5.77C15 19.55 13.56 20 12 20z"},"children":[]}]};exports.ic_do_disturb_off_outline=ic_do_disturb_off_outline;var ic_do_disturb_off_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 4c-1.41 0-2.73.37-3.88 1.01l6 5.99H17v2h-.88L19 15.88c.63-1.15 1-2.47 1-3.88 0-4.41-3.59-8-8-8zm0 16c1.56 0 3-.45 4.23-1.23L10.46 13H7v-2h1.46L5.23 7.77C4.45 9 4 10.44 4 12c0 4.41 3.59 8 8 8z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 4c4.41 0 8 3.59 8 8 0 1.41-.37 2.73-1.01 3.88l1.46 1.46C21.43 15.79 22 13.96 22 12c0-5.52-4.48-10-10-10-1.96 0-3.79.57-5.33 1.55l1.46 1.46C9.27 4.37 10.59 4 12 4zm5 7h-2.88l2 2H17zM2.41 2.13L1 3.54l2.78 2.78C2.66 7.93 2 9.89 2 12c0 5.52 4.48 10 10 10 2.11 0 4.07-.66 5.68-1.78L20.46 23l1.41-1.41L2.41 2.13zM12 20c-4.41 0-8-3.59-8-8 0-1.56.45-3 1.23-4.23L8.46 11H7v2h3.46l5.77 5.77C15 19.55 13.56 20 12 20z"},"children":[]}]};exports.ic_do_disturb_off_twotone=ic_do_disturb_off_twotone;var ic_do_disturb_on_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-5-9h10v2H7z"},"children":[]}]};exports.ic_do_disturb_on_outline=ic_do_disturb_on_outline;var ic_do_disturb_on_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm5 9H7v-2h10v2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-5-9h10v2H7z"},"children":[]}]};exports.ic_do_disturb_on_twotone=ic_do_disturb_on_twotone;var ic_do_not_disturb={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9L16.9 18.31C15.55 19.37 13.85 20 12 20zm6.31-3.1L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9z"},"children":[]}]};exports.ic_do_not_disturb=ic_do_not_disturb;var ic_do_not_disturb_alt={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M-618-1464H782v3600H-618zM0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zM4 12c0-4.4 3.6-8 8-8 1.8 0 3.5.6 4.9 1.7L5.7 16.9C4.6 15.5 4 13.8 4 12zm8 8c-1.8 0-3.5-.6-4.9-1.7L18.3 7.1C19.4 8.5 20 10.2 20 12c0 4.4-3.6 8-8 8z"},"children":[]}]};exports.ic_do_not_disturb_alt=ic_do_not_disturb_alt;var ic_do_not_disturb_off={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 11v2h-1.46l4.68 4.68C21.34 16.07 22 14.11 22 12c0-5.52-4.48-10-10-10-2.11 0-4.07.66-5.68 1.78L13.54 11H17zM2.27 2.27L1 3.54l2.78 2.78C2.66 7.93 2 9.89 2 12c0 5.52 4.48 10 10 10 2.11 0 4.07-.66 5.68-1.78L20.46 23l1.27-1.27L11 11 2.27 2.27zM7 13v-2h1.46l2 2H7z"},"children":[]}]};exports.ic_do_not_disturb_off=ic_do_not_disturb_off;var ic_do_not_disturb_on={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5 11H7v-2h10v2z"},"children":[]}]};exports.ic_do_not_disturb_on=ic_do_not_disturb_on;var ic_drive_eta={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18.92 5.01C18.72 4.42 18.16 4 17.5 4h-11c-.66 0-1.21.42-1.42 1.01L3 11v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.5 15c-.83 0-1.5-.67-1.5-1.5S5.67 12 6.5 12s1.5.67 1.5 1.5S7.33 15 6.5 15zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 10l1.5-4.5h11L19 10H5z"},"children":[]}]};exports.ic_drive_eta=ic_drive_eta;var ic_drive_eta_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18.92 5.01C18.72 4.42 18.16 4 17.5 4h-11c-.66 0-1.21.42-1.42 1.01L3 11v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.85 6h10.29l1.04 3H5.81l1.04-3zM19 16H5v-4.66l.12-.34h13.77l.11.34V16z"},"children":[]},{"name":"circle","attribs":{"cx":"7.5","cy":"13.5","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"16.5","cy":"13.5","r":"1.5"},"children":[]}]};exports.ic_drive_eta_outline=ic_drive_eta_outline;var ic_drive_eta_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5.12 11l-.12.34V16h14v-4.66l-.12-.34H5.12zm2.38 4c-.83 0-1.5-.67-1.5-1.5S6.67 12 7.5 12s1.5.67 1.5 1.5S8.33 15 7.5 15zm9 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M18.92 5.01C18.72 4.42 18.16 4 17.5 4h-11c-.66 0-1.21.42-1.42 1.01L3 11v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.85 6h10.29l1.04 3H5.81l1.04-3zM19 16H5v-4.66l.12-.34h13.77l.11.34V16z"},"children":[]},{"name":"circle","attribs":{"cx":"7.5","cy":"13.5","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"16.5","cy":"13.5","r":"1.5"},"children":[]}]};exports.ic_drive_eta_twotone=ic_drive_eta_twotone;var ic_enhanced_encryption={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zM8.9 6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2H8.9V6zM16 16h-3v3h-2v-3H8v-2h3v-3h2v3h3v2z"},"children":[]}]};exports.ic_enhanced_encryption=ic_enhanced_encryption;var ic_enhanced_encryption_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0zm0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zM8.9 6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2H8.9V6zM18 20H6V10h12v10zm-5-9h-2v3H8v2h3v3h2v-3h3v-2h-3z"},"children":[]}]};exports.ic_enhanced_encryption_outline=ic_enhanced_encryption_outline;var ic_enhanced_encryption_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0zm0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6 20h12V10H6v10zm2-6h3v-3h2v3h3v2h-3v3h-2v-3H8v-2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zM8.9 6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2H8.9V6zM18 20H6V10h12v10zm-7-1h2v-3h3v-2h-3v-3h-2v3H8v2h3z"},"children":[]}]};exports.ic_enhanced_encryption_twotone=ic_enhanced_encryption_twotone;var ic_event_available={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16.53 11.06L15.47 10l-4.88 4.88-2.12-2.12-1.06 1.06L10.59 17l5.94-5.94zM19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11z"},"children":[]}]};exports.ic_event_available=ic_event_available;var ic_event_available_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V9h14v10zM5 7V5h14v2H5zm5.56 10.46l5.93-5.93-1.06-1.06-4.87 4.87-2.11-2.11-1.06 1.06z"},"children":[]}]};exports.ic_event_available_outline=ic_event_available_outline;var ic_event_available_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 5h14v2H5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M19 3h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V9h14v10zm0-12H5V5h14v2zm-2.51 4.53l-1.06-1.06-4.87 4.87-2.11-2.11-1.06 1.06 3.17 3.17z"},"children":[]}]};exports.ic_event_available_twotone=ic_event_available_twotone;var ic_event_busy={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9.31 17l2.44-2.44L14.19 17l1.06-1.06-2.44-2.44 2.44-2.44L14.19 10l-2.44 2.44L9.31 10l-1.06 1.06 2.44 2.44-2.44 2.44L9.31 17zM19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11z"},"children":[]}]};exports.ic_event_busy=ic_event_busy;var ic_event_busy_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V9h14v10zM5 7V5h14v2H5zm3.23 9.41l1.06 1.06 2.44-2.44 2.44 2.44 1.06-1.06-2.44-2.44 2.44-2.44-1.06-1.06-2.44 2.44-2.44-2.44-1.06 1.06 2.44 2.44z"},"children":[]}]};exports.ic_event_busy_outline=ic_event_busy_outline;var ic_event_busy_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 5h14v2H5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M19 3h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V9h14v10zm0-12H5V5h14v2zM9.29 17.47l2.44-2.44 2.44 2.44 1.06-1.06-2.44-2.44 2.44-2.44-1.06-1.06-2.44 2.44-2.44-2.44-1.06 1.06 2.44 2.44-2.44 2.44z"},"children":[]}]};exports.ic_event_busy_twotone=ic_event_busy_twotone;var ic_event_note={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 10H7v2h10v-2zm2-7h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11zm-5-5H7v2h7v-2z"},"children":[]}]};exports.ic_event_note=ic_event_note;var ic_event_note_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V9h14v10zM5 7V5h14v2H5zm2 4h10v2H7zm0 4h7v2H7z"},"children":[]}]};exports.ic_event_note_outline=ic_event_note_outline;var ic_event_note_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 5h14v2H5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M19 3h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V9h14v10zm0-12H5V5h14v2zM7 11h10v2H7zm0 4h7v2H7z"},"children":[]}]};exports.ic_event_note_twotone=ic_event_note_twotone;var ic_folder_special={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 6h-8l-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-2.06 11L15 15.28 12.06 17l.78-3.33-2.59-2.24 3.41-.29L15 8l1.34 3.14 3.41.29-2.59 2.24.78 3.33z"},"children":[]}]};exports.ic_folder_special=ic_folder_special;var ic_folder_special_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 6h-8l-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V6h5.17l2 2H20v10zm-6.92-3.96L12.39 17 15 15.47 17.61 17l-.69-2.96 2.3-1.99-3.03-.26L15 9l-1.19 2.79-3.03.26z"},"children":[]}]};exports.ic_folder_special_outline=ic_folder_special_outline;var ic_folder_special_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11.17 8l-2-2H4v12h16V8h-8.83zM15 9l1.19 2.79 3.03.26-2.3 1.99.69 2.96L15 15.47 12.39 17l.69-2.96-2.3-1.99 3.03-.26L15 9z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 6h-8l-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V6h5.17l2 2H20v10zm-6.92-3.96L12.39 17 15 15.47 17.61 17l-.69-2.96 2.3-1.99-3.03-.26L15 9l-1.19 2.79-3.03.26z"},"children":[]}]};exports.ic_folder_special_twotone=ic_folder_special_twotone;var ic_imagesearch_roller={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 2v6H6V6H4v4h10v5h2v8h-6v-8h2v-3H2V4h4V2"},"children":[]}]};exports.ic_imagesearch_roller=ic_imagesearch_roller;var ic_live_tv={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 6h-7.59l3.29-3.29L16 2l-4 4-4-4-.71.71L10.59 6H3c-1.1 0-2 .89-2 2v12c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V8c0-1.11-.9-2-2-2zm0 14H3V8h18v12zM9 10v8l7-4z"},"children":[]}]};exports.ic_live_tv=ic_live_tv;var ic_live_tv_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9 10v8l7-4zm12-4h-7.58l3.29-3.29L16 2l-4 4h-.03l-4-4-.69.71L10.56 6H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 14H3V8h18v12z"},"children":[]}]};exports.ic_live_tv_outline=ic_live_tv_outline;var ic_live_tv_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 20h18V8H3v12zm6-10l7 4-7 4v-8z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M9 10v8l7-4zm12-4h-7.58l3.29-3.29L16 2l-4 4h-.03l-4-4-.69.71L10.56 6H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 14H3V8h18v12z"},"children":[]}]};exports.ic_live_tv_twotone=ic_live_tv_twotone;var ic_mms={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM5 14l3.5-4.5 2.5 3.01L14.5 8l4.5 6H5z"},"children":[]}]};exports.ic_mms=ic_mms;var ic_mms_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zm-5.5-8L11 12.51 8.5 9.5 5 14h14z"},"children":[]}]};exports.ic_mms_outline=ic_mms_outline;var ic_mms_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 17.17L5.17 16H20V4H4v13.17zM8.5 9.5l2.5 3.01L14.5 8l4.5 6H5l3.5-4.5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zm-5.5-8L11 12.51 8.5 9.5 5 14h14z"},"children":[]}]};exports.ic_mms_twotone=ic_mms_twotone;var ic_more={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 3H7c-.69 0-1.23.35-1.59.88L0 12l5.41 8.11c.36.53.97.89 1.66.89H22c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 13.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm5 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm5 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z"},"children":[]}]};exports.ic_more=ic_more;var ic_more_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 3H7c-.69 0-1.23.35-1.59.88L0 12l5.41 8.11c.36.53.97.89 1.66.89H22c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H7.07L2.4 12l4.66-7H22v14z"},"children":[]},{"name":"circle","attribs":{"cx":"9","cy":"12","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"14","cy":"12","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"19","cy":"12","r":"1.5"},"children":[]}]};exports.ic_more_outline=ic_more_outline;var ic_more_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7.06 5L2.4 12l4.67 7H22V5H7.06c.01 0 .01 0 0 0zM19 10.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-5 0c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-5 0c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M22 3H7c-.69 0-1.23.35-1.59.88L0 12l5.41 8.11c.36.53.97.89 1.66.89H22c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H7.07L2.4 12l4.66-7H22v14z"},"children":[]},{"name":"circle","attribs":{"cx":"9","cy":"12","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"14","cy":"12","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"19","cy":"12","r":"1.5"},"children":[]}]};exports.ic_more_twotone=ic_more_twotone;var ic_network_check={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.9 5c-.17 0-.32.09-.41.23l-.07.15-5.18 11.65c-.16.29-.26.61-.26.96 0 1.11.9 2.01 2.01 2.01.96 0 1.77-.68 1.96-1.59l.01-.03L16.4 5.5c0-.28-.22-.5-.5-.5zM1 9l2 2c2.88-2.88 6.79-4.08 10.53-3.62l1.19-2.68C9.89 3.84 4.74 5.27 1 9zm20 2l2-2c-1.64-1.64-3.55-2.82-5.59-3.57l-.53 2.82c1.5.62 2.9 1.53 4.12 2.75zm-4 4l2-2c-.8-.8-1.7-1.42-2.66-1.89l-.55 2.92c.42.27.83.59 1.21.97zM5 13l2 2c1.13-1.13 2.56-1.79 4.03-2l1.28-2.88c-2.63-.08-5.3.87-7.31 2.88z"},"children":[]}]};exports.ic_network_check=ic_network_check;var ic_network_check_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.9 5c-.17 0-.32.09-.41.23l-.07.15-5.18 11.65c-.16.29-.26.61-.26.96 0 1.11.9 2.01 2.01 2.01.96 0 1.77-.68 1.96-1.59l.01-.03L16.4 5.5c0-.28-.22-.5-.5-.5zM1 9l2 2c2.88-2.88 6.79-4.08 10.53-3.62l1.19-2.68C9.89 3.84 4.74 5.27 1 9zm20 2l2-2c-1.64-1.64-3.55-2.82-5.59-3.57l-.53 2.82c1.5.62 2.9 1.53 4.12 2.75zm-4 4l2-2c-.8-.8-1.7-1.42-2.66-1.89l-.55 2.92c.42.27.83.59 1.21.97zM5 13l2 2c1.13-1.13 2.56-1.79 4.03-2l1.28-2.88c-2.63-.08-5.3.87-7.31 2.88z"},"children":[]}]};exports.ic_network_check_outline=ic_network_check_outline;var ic_network_check_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.9 5c-.17 0-.32.09-.41.23l-.07.15-5.18 11.65c-.16.29-.26.61-.26.96 0 1.11.9 2.01 2.01 2.01.96 0 1.77-.68 1.96-1.59l.01-.03L16.4 5.5c0-.28-.22-.5-.5-.5zM1 9l2 2c2.88-2.88 6.79-4.08 10.53-3.62l1.19-2.68C9.89 3.84 4.74 5.27 1 9zm20 2l2-2c-1.64-1.64-3.55-2.82-5.59-3.57l-.53 2.82c1.5.62 2.9 1.53 4.12 2.75zm-4 4l2-2c-.8-.8-1.7-1.42-2.66-1.89l-.55 2.92c.42.27.83.59 1.21.97zM5 13l2 2c1.13-1.13 2.56-1.79 4.03-2l1.28-2.88c-2.63-.08-5.3.87-7.31 2.88z"},"children":[]}]};exports.ic_network_check_twotone=ic_network_check_twotone;var ic_network_locked={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0zm0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19.5 10c.17 0 .33.03.5.05V1L1 20h13v-3c0-.89.39-1.68 1-2.23v-.27c0-2.48 2.02-4.5 4.5-4.5zm2.5 6v-1.5c0-1.38-1.12-2.5-2.5-2.5S17 13.12 17 14.5V16c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1zm-1 0h-3v-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5V16z"},"children":[]}]};exports.ic_network_locked=ic_network_locked;var ic_network_locked_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0zm0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 16v-.5c0-1.38-1.12-2.5-2.5-2.5S17 14.12 17 15.5v.5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1zm-1 0h-3v-.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v.5zM18 5.83v5.43c.47-.16.97-.26 1.5-.26.17 0 .33.03.5.05V1L1 20h13v-2H5.83L18 5.83z"},"children":[]}]};exports.ic_network_locked_outline=ic_network_locked_outline;var ic_network_locked_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0zm0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 16v-.5c0-1.38-1.12-2.5-2.5-2.5S17 14.12 17 15.5v.5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1zm-1 0h-3v-.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v.5zM18 5.83v5.43c.47-.16.97-.26 1.5-.26.17 0 .33.03.5.05V1L1 20h13v-2H5.83L18 5.83z"},"children":[]}]};exports.ic_network_locked_twotone=ic_network_locked_twotone;var ic_no_encryption={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0zm0 0h24v24H0zm0 0h24v24H0V0zm0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 21.78L4.22 5 3 6.22l2.04 2.04C4.42 8.6 4 9.25 4 10v10c0 1.1.9 2 2 2h12c.23 0 .45-.05.66-.12L19.78 23 21 21.78zM8.9 6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2H9.66L20 18.34V10c0-1.1-.9-2-2-2h-1V6c0-2.76-2.24-5-5-5-2.56 0-4.64 1.93-4.94 4.4L8.9 7.24V6z"},"children":[]}]};exports.ic_no_encryption=ic_no_encryption;var ic_no_encryption_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8.9 6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2h-4.66l2 2H18v5.56l2 2V10c0-1.1-.9-2-2-2h-1V6c0-2.76-2.24-5-5-5-2.32 0-4.26 1.59-4.82 3.74L8.9 6.46V6zM4.41 4.81L3 6.22l2.04 2.04C4.42 8.6 4 9.25 4 10v10c0 1.1.9 2 2 2h12.78l1 1 1.41-1.41L4.41 4.81zM6 20V10h.78l10 10H6z"},"children":[]}]};exports.ic_no_encryption_outline=ic_no_encryption_outline;var ic_no_encryption_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6 20h10.78l-10-10H6zm6.44-10L18 15.56V10z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M8.9 6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2h-4.66l2 2H18v5.56l2 2V10c0-1.1-.9-2-2-2h-1V6c0-2.76-2.24-5-5-5-2.32 0-4.26 1.59-4.82 3.74L8.9 6.46V6zM4.41 4.81L3 6.22l2.04 2.04C4.42 8.6 4 9.25 4 10v10c0 1.1.9 2 2 2h12.78l1 1 1.41-1.41L4.41 4.81zM6 20V10h.78l10 10H6z"},"children":[]}]};exports.ic_no_encryption_twotone=ic_no_encryption_twotone;var ic_no_encryption_gmailerrorred_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8.9 6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2h-4.66l2 2H18v5.56l2 2V10c0-1.1-.9-2-2-2h-1V6c0-2.76-2.24-5-5-5-2.32 0-4.26 1.59-4.82 3.74L8.9 6.46V6zM4.41 4.81L3 6.22l2.04 2.04C4.42 8.6 4 9.25 4 10v10c0 1.1.9 2 2 2h12.78l1 1 1.41-1.41L4.41 4.81zM6 20V10h.78l10 10H6z"},"children":[]}]};exports.ic_no_encryption_gmailerrorred_outline=ic_no_encryption_gmailerrorred_outline;var ic_no_encryption_gmailerrorred_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6 20h10.78l-10-10H6zm6.44-10L18 15.56V10z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M8.9 6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2h-4.66l2 2H18v5.56l2 2V10c0-1.1-.9-2-2-2h-1V6c0-2.76-2.24-5-5-5-2.32 0-4.26 1.59-4.82 3.74L8.9 6.46V6zM4.41 4.81L3 6.22l2.04 2.04C4.42 8.6 4 9.25 4 10v10c0 1.1.9 2 2 2h12.78l1 1 1.41-1.41L4.41 4.81zM6 20V10h.78l10 10H6z"},"children":[]}]};exports.ic_no_encryption_gmailerrorred_twotone=ic_no_encryption_gmailerrorred_twotone;var ic_ondemand_video={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 3H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.11-.9-2-2-2zm0 14H3V5h18v12zm-5-6l-7 4V7z"},"children":[]}]};exports.ic_ondemand_video=ic_ondemand_video;var ic_ondemand_video_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9 7v8l7-4zm12-4H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v2h8v-2h5c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 14H3V5h18v12z"},"children":[]}]};exports.ic_ondemand_video_outline=ic_ondemand_video_outline;var ic_ondemand_video_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 17h18V5H3v12zM9 7l7 4-7 4V7z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M9 7v8l7-4zm12-4H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v2h8v-2h5c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 14H3V5h18v12z"},"children":[]}]};exports.ic_ondemand_video_twotone=ic_ondemand_video_twotone;var ic_personal_video={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 3H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.11-.9-2-2-2zm0 14H3V5h18v12z"},"children":[]}]};exports.ic_personal_video=ic_personal_video;var ic_personal_video_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 3H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.11-.9-2-2-2zm0 14H3V5h18v12z"},"children":[]}]};exports.ic_personal_video_outline=ic_personal_video_outline;var ic_personal_video_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 5h18v12H3z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M21 3H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.11-.9-2-2-2zm0 14H3V5h18v12z"},"children":[]}]};exports.ic_personal_video_twotone=ic_personal_video_twotone;var ic_phone_bluetooth_speaker={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14.71 9.5L17 7.21V11h.5l2.85-2.85L18.21 6l2.15-2.15L17.5 1H17v3.79L14.71 2.5l-.71.71L16.79 6 14 8.79l.71.71zM18 2.91l.94.94-.94.94V2.91zm0 4.3l.94.94-.94.94V7.21zm2 8.29c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1z"},"children":[]}]};exports.ic_phone_bluetooth_speaker=ic_phone_bluetooth_speaker;var ic_phone_bluetooth_speaker_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 15.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.45 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM14.71 9.5L17 7.21V11h.5l2.85-2.85L18.21 6l2.15-2.15L17.5 1H17v3.79L14.71 2.5l-.71.71L16.79 6 14 8.79l.71.71zM18 2.91l.94.94-.94.94V2.91zm0 4.3l.94.94-.94.94V7.21z"},"children":[]}]};exports.ic_phone_bluetooth_speaker_outline=ic_phone_bluetooth_speaker_outline;var ic_phone_bluetooth_speaker_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.2 18.21c1.21.41 2.48.67 3.8.76v-1.5c-.88-.07-1.75-.22-2.6-.45l-1.2 1.19zM6.54 5h-1.5c.09 1.32.34 2.58.75 3.79l1.2-1.21c-.24-.83-.39-1.7-.45-2.58z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 15.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.45 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM14.71 9.5L17 7.21V11h.5l2.85-2.85L18.21 6l2.15-2.15L17.5 1H17v3.79L14.71 2.5l-.71.71L16.79 6 14 8.79l.71.71zM18 2.91l.94.94-.94.94V2.91zm0 4.3l.94.94-.94.94V7.21z"},"children":[]}]};exports.ic_phone_bluetooth_speaker_twotone=ic_phone_bluetooth_speaker_twotone;var ic_phone_callback={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2zm13.54-7.1l-.71-.7L13 9.29V5h-1v6h6v-1h-4.15z"},"children":[]}]};exports.ic_phone_callback=ic_phone_callback;var ic_phone_callback_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 15.51c-1.24 0-2.45-.2-3.57-.57-.1-.04-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2c.28-.28.36-.67.25-1.02C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.49c0-.55-.45-1-1-1zM5.03 5h1.5c.07.89.22 1.76.46 2.59l-1.2 1.2c-.41-1.2-.67-2.47-.76-3.79zM19 18.97c-1.32-.09-2.59-.35-3.8-.75l1.19-1.19c.85.24 1.72.39 2.6.45v1.49zM18 9h-2.59l5.02-5.02-1.41-1.41L14 7.59V5h-2v6h6z"},"children":[]}]};exports.ic_phone_callback_outline=ic_phone_callback_outline;var ic_phone_callback_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6.54 5h-1.5c.09 1.32.35 2.59.75 3.8l1.2-1.2c-.24-.84-.39-1.71-.45-2.6zm8.66 13.21c1.2.41 2.48.67 3.8.75v-1.49c-.88-.07-1.75-.22-2.6-.45l-1.2 1.19z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 15.51c-1.24 0-2.45-.2-3.57-.57-.1-.04-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2c.28-.28.36-.67.25-1.02C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.49c0-.55-.45-1-1-1zM5.03 5h1.5c.07.89.22 1.76.46 2.59l-1.2 1.2c-.41-1.2-.67-2.47-.76-3.79zM19 18.97c-1.32-.09-2.59-.35-3.8-.75l1.19-1.19c.85.24 1.72.39 2.6.45v1.49zM18 9h-2.59l5.02-5.02-1.41-1.41L14 7.59V5h-2v6h6z"},"children":[]}]};exports.ic_phone_callback_twotone=ic_phone_callback_twotone;var ic_phone_forwarded={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 11l5-5-5-5v3h-4v4h4v3zm2 4.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1z"},"children":[]}]};exports.ic_phone_forwarded=ic_phone_forwarded;var ic_phone_forwarded_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 15.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.45 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM18 11l5-5-5-5v3h-4v4h4z"},"children":[]}]};exports.ic_phone_forwarded_outline=ic_phone_forwarded_outline;var ic_phone_forwarded_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.2 18.21c1.21.41 2.48.67 3.8.76v-1.5c-.88-.07-1.75-.22-2.6-.45l-1.2 1.19zM6.54 5h-1.5c.09 1.32.34 2.58.75 3.79l1.2-1.21c-.24-.83-.39-1.7-.45-2.58z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 15.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.45 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM18 11l5-5-5-5v3h-4v4h4z"},"children":[]}]};exports.ic_phone_forwarded_twotone=ic_phone_forwarded_twotone;var ic_phone_in_talk={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 15.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM19 12h2c0-4.97-4.03-9-9-9v2c3.87 0 7 3.13 7 7zm-4 0h2c0-2.76-2.24-5-5-5v2c1.66 0 3 1.34 3 3z"},"children":[]}]};exports.ic_phone_in_talk=ic_phone_in_talk;var ic_phone_in_talk_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15 12h2c0-2.76-2.24-5-5-5v2c1.66 0 3 1.34 3 3zm4 0h2c0-4.97-4.03-9-9-9v2c3.87 0 7 3.13 7 7zm1 3.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.45 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51z"},"children":[]}]};exports.ic_phone_in_talk_outline=ic_phone_in_talk_outline;var ic_phone_in_talk_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6.54 5h-1.5c.09 1.32.34 2.58.75 3.79l1.2-1.21c-.24-.83-.39-1.7-.45-2.58zm8.66 13.21c1.21.41 2.48.67 3.8.76v-1.5c-.88-.07-1.75-.22-2.6-.45l-1.2 1.19z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M15 12h2c0-2.76-2.24-5-5-5v2c1.66 0 3 1.34 3 3zm4 0h2c0-4.97-4.03-9-9-9v2c3.87 0 7 3.13 7 7zm1 3.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.45 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51z"},"children":[]}]};exports.ic_phone_in_talk_twotone=ic_phone_in_talk_twotone;var ic_phone_locked={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 15.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM20 4v-.5C20 2.12 18.88 1 17.5 1S15 2.12 15 3.5V4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm-.8 0h-3.4v-.5c0-.94.76-1.7 1.7-1.7s1.7.76 1.7 1.7V4z"},"children":[]}]};exports.ic_phone_locked=ic_phone_locked;var ic_phone_locked_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 15.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.45 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM20 4v-.5C20 2.12 18.88 1 17.5 1S15 2.12 15 3.5V4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm-1 0h-3v-.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5V4z"},"children":[]}]};exports.ic_phone_locked_outline=ic_phone_locked_outline;var ic_phone_locked_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6.54 5h-1.5c.09 1.32.34 2.58.75 3.79l1.2-1.21c-.24-.83-.39-1.7-.45-2.58zm8.66 13.21c1.21.41 2.48.67 3.8.76v-1.5c-.88-.07-1.75-.22-2.6-.45l-1.2 1.19z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 15.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.45 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM20 4v-.5C20 2.12 18.88 1 17.5 1S15 2.12 15 3.5V4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm-1 0h-3v-.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5V4z"},"children":[]}]};exports.ic_phone_locked_twotone=ic_phone_locked_twotone;var ic_phone_missed={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6.5 5.5L12 11l7-7-1-1-6 6-4.5-4.5H11V3H5v6h1.5V5.5zm17.21 11.17C20.66 13.78 16.54 12 12 12 7.46 12 3.34 13.78.29 16.67c-.18.18-.29.43-.29.71s.11.53.29.71l2.48 2.48c.18.18.43.29.71.29.27 0 .52-.11.7-.28.79-.74 1.69-1.36 2.66-1.85.33-.16.56-.5.56-.9v-3.1c1.45-.48 3-.73 4.6-.73 1.6 0 3.15.25 4.6.72v3.1c0 .39.23.74.56.9.98.49 1.87 1.12 2.67 1.85.18.18.43.28.7.28.28 0 .53-.11.71-.29l2.48-2.48c.18-.18.29-.43.29-.71s-.12-.52-.3-.7z"},"children":[]}]};exports.ic_phone_missed=ic_phone_missed;var ic_phone_missed_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M23.71 16.67C20.66 13.78 16.54 12 12 12S3.34 13.78.29 16.67c-.18.18-.29.43-.29.71 0 .28.11.53.29.71l2.48 2.48c.18.18.43.29.71.29.27 0 .52-.11.7-.28.79-.74 1.69-1.36 2.66-1.85.33-.16.56-.5.56-.9v-3.1c1.45-.48 3-.73 4.6-.73s3.15.25 4.6.72v3.1c0 .39.23.74.56.9.98.49 1.87 1.12 2.67 1.85.18.18.43.28.7.28.28 0 .53-.11.71-.29l2.48-2.48c.18-.18.29-.43.29-.71 0-.28-.12-.52-.3-.7zm-18.31.56c-.66.37-1.29.8-1.87 1.27l-1.07-1.07c.91-.75 1.9-1.39 2.95-1.9v1.7zm15.08 1.26c-.6-.48-1.22-.9-1.88-1.27v-1.7c1.05.51 2.03 1.15 2.95 1.9l-1.07 1.07zM7 6.43l4.94 4.94 7.07-7.07-1.41-1.42-5.66 5.66L8.4 5H11V3H5v6h2z"},"children":[]}]};exports.ic_phone_missed_outline=ic_phone_missed_outline;var ic_phone_missed_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18.6 17.22c.66.37 1.28.79 1.88 1.27l1.07-1.07c-.91-.75-1.9-1.39-2.95-1.9v1.7zM3.53 18.5c.58-.47 1.21-.89 1.87-1.27v-1.71c-1.05.51-2.03 1.15-2.95 1.9l1.08 1.08z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M23.71 16.67C20.66 13.78 16.54 12 12 12S3.34 13.78.29 16.67c-.18.18-.29.43-.29.71 0 .28.11.53.29.71l2.48 2.48c.18.18.43.29.71.29.27 0 .52-.11.7-.28.79-.74 1.69-1.36 2.66-1.85.33-.16.56-.5.56-.9v-3.1c1.45-.48 3-.73 4.6-.73s3.15.25 4.6.72v3.1c0 .39.23.74.56.9.98.49 1.87 1.12 2.67 1.85.18.18.43.28.7.28.28 0 .53-.11.71-.29l2.48-2.48c.18-.18.29-.43.29-.71 0-.28-.12-.52-.3-.7zm-18.31.56c-.66.37-1.29.8-1.87 1.27l-1.07-1.07c.91-.75 1.9-1.39 2.95-1.9v1.7zm15.08 1.26c-.6-.48-1.22-.9-1.88-1.27v-1.7c1.05.51 2.03 1.15 2.95 1.9l-1.07 1.07zM7 6.43l4.94 4.94 7.07-7.07-1.41-1.42-5.66 5.66L8.4 5H11V3H5v6h2z"},"children":[]}]};exports.ic_phone_missed_twotone=ic_phone_missed_twotone;var ic_phone_paused={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 3h-2v7h2V3zm3 12.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM19 3v7h2V3h-2z"},"children":[]}]};exports.ic_phone_paused=ic_phone_paused;var ic_phone_paused_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6.54 5c.06.88.21 1.75.44 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79h1.51m9.86 12.01c.85.24 1.72.39 2.6.45v1.5c-1.32-.09-2.6-.35-3.8-.76l1.2-1.19M7.5 3H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1zM15 3h2v7h-2zm4 0h2v7h-2z"},"children":[]}]};exports.ic_phone_paused_outline=ic_phone_paused_outline;var ic_phone_paused_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6.54 5h-1.5c.09 1.32.34 2.58.75 3.79l1.2-1.21c-.24-.83-.39-1.7-.45-2.58zm8.66 13.21c1.21.41 2.48.67 3.8.76v-1.5c-.88-.07-1.75-.22-2.6-.45l-1.2 1.19z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 15.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.45 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM15 3h2v7h-2zm4 0h2v7h-2z"},"children":[]}]};exports.ic_phone_paused_twotone=ic_phone_paused_twotone;var ic_power={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16.01 7L16 3h-2v4h-4V3H8v4h-.01C7 6.99 6 7.99 6 8.99v5.49L9.5 18v3h5v-3l3.5-3.51v-5.5c0-1-1-2-1.99-1.99z"},"children":[]}]};exports.ic_power=ic_power;var ic_power_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16 9v4.66l-3.5 3.51V19h-1v-1.83L8 13.65V9h8m0-6h-2v4h-4V3H8v4h-.01C6.9 6.99 6 7.89 6 8.98v5.52L9.5 18v3h5v-3l3.5-3.51V9c0-1.1-.9-2-2-2V3z"},"children":[]}]};exports.ic_power_outline=ic_power_outline;var ic_power_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8 13.65l3.5 3.52V19h1v-1.83l3.5-3.51V9H8z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M16 7V3h-2v4h-4V3H8v4h-.01C6.89 7 6 7.89 6 8.98v5.52L9.5 18v3h5v-3l3.5-3.5V9c0-1.1-.9-2-2-2zm0 6.66l-3.5 3.51V19h-1v-1.83L8 13.65V9h8v4.66z"},"children":[]}]};exports.ic_power_twotone=ic_power_twotone;var ic_power_off={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 14.49V9c0-1-1.01-2.01-2-2V3h-2v4h-4V3H8v2.48l9.51 9.5.49-.49zm-1.76 1.77L7.2 7.2l-.01.01L3.98 4 2.71 5.25l3.36 3.36C6.04 8.74 6 8.87 6 9v5.48L9.5 18v3h5v-3l.48-.48L19.45 22l1.26-1.28-4.47-4.46z"},"children":[]}]};exports.ic_power_off=ic_power_off;var ic_power_off_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 3H8v1.88l2 2zm6 6v3.88l1.8 1.8.2-.2V9c0-1.1-.9-2-2-2V3h-2v4h-3.88l2 2H16zM4.12 3.84L2.71 5.25 6 8.54v5.96L9.5 18v3h5v-3l.48-.48 4.47 4.47 1.41-1.41L4.12 3.84zm8.38 13.33V19h-1v-1.83L8 13.65v-3.11l5.57 5.57-1.07 1.06z"},"children":[]}]};exports.ic_power_off_outline=ic_power_off_outline;var ic_power_off_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12.12 9L16 12.88V9zm-.62 8.17V19h1v-1.83l1.07-1.06L8 10.54v3.11z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M10 3H8v1.88l2 2zm6 6v3.88l1.8 1.8.2-.2V9c0-1.1-.9-2-2-2V3h-2v4h-3.88l2 2H16zM4.12 3.84L2.71 5.25 6 8.54v5.96L9.5 18v3h5v-3l.48-.48 4.47 4.47 1.41-1.41L4.12 3.84zm8.38 13.33V19h-1v-1.83L8 13.65v-3.11l5.57 5.57-1.07 1.06z"},"children":[]}]};exports.ic_power_off_twotone=ic_power_off_twotone;var ic_priority_high={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"12","cy":"19","r":"2"},"children":[]},{"name":"path","attribs":{"d":"M10 3h4v12h-4z"},"children":[]}]};exports.ic_priority_high=ic_priority_high;var ic_priority_high_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"12","cy":"19","r":"2"},"children":[]},{"name":"path","attribs":{"d":"M10 3h4v12h-4z"},"children":[]}]};exports.ic_priority_high_outline=ic_priority_high_outline;var ic_priority_high_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"12","cy":"19","r":"2"},"children":[]},{"name":"path","attribs":{"d":"M10 3h4v12h-4z"},"children":[]}]};exports.ic_priority_high_twotone=ic_priority_high_twotone;var ic_sd_card={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 2h-8L4.02 8 4 20c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-6 6h-2V4h2v4zm3 0h-2V4h2v4zm3 0h-2V4h2v4z"},"children":[]}]};exports.ic_sd_card=ic_sd_card;var ic_sd_card_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 2h-8L4 8v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H6V8.83L10.83 4H18v16zM9 7h2v4H9zm3 0h2v4h-2zm3 0h2v4h-2z"},"children":[]}]};exports.ic_sd_card_outline=ic_sd_card_outline;var ic_sd_card_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6 8.83V20h12V4h-7.17L6 8.83zM15 7h2v4h-2V7zm-3 0h2v4h-2V7zm-1 4H9V7h2v4z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M18 2h-8L4 8v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H6V8.83L10.83 4H18v16zM9 7h2v4H9zm3 0h2v4h-2zm3 0h2v4h-2z"},"children":[]}]};exports.ic_sd_card_twotone=ic_sd_card_twotone;var ic_sd_card_alert_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 2h-8L4.02 8 4 20c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H6V8.83L10.83 4H18v16zm-7-5h2v2h-2zm0-7h2v5h-2z"},"children":[]}]};exports.ic_sd_card_alert_outline=ic_sd_card_alert_outline;var ic_sd_card_alert_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6 8.83V20h12V4h-7.17L6 8.83zM11 8h2v5h-2V8zm0 7h2v2h-2v-2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M18 2h-8L4 8v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H6V8.83L10.83 4H18v16zm-7-5h2v2h-2zm0-7h2v5h-2z"},"children":[]}]};exports.ic_sd_card_alert_twotone=ic_sd_card_alert_twotone;var ic_sim_card_alert={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 2h-8L4.02 8 4 20c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-5 15h-2v-2h2v2zm0-4h-2V8h2v5z"},"children":[]}]};exports.ic_sim_card_alert=ic_sim_card_alert;var ic_sms={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM9 11H7V9h2v2zm4 0h-2V9h2v2zm4 0h-2V9h2v2z"},"children":[]}]};exports.ic_sms=ic_sms;var ic_sms_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zM7 9h2v2H7zm8 0h2v2h-2zm-4 0h2v2h-2z"},"children":[]}]};exports.ic_sms_outline=ic_sms_outline;var ic_sms_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 17.17L5.17 16H20V4H4v13.17zM15 9h2v2h-2V9zm-4 0h2v2h-2V9zM7 9h2v2H7V9z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zM7 9h2v2H7zm8 0h2v2h-2zm-4 0h2v2h-2z"},"children":[]}]};exports.ic_sms_twotone=ic_sms_twotone;var ic_sms_failed={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 12h-2v-2h2v2zm0-4h-2V6h2v4z"},"children":[]}]};exports.ic_sms_failed=ic_sms_failed;var ic_sms_failed_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zm-9-4h2v2h-2zm0-6h2v4h-2z"},"children":[]}]};exports.ic_sms_failed_outline=ic_sms_failed_outline;var ic_sms_failed_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 17.17L5.17 16H20V4H4v13.17zM11 6h2v4h-2V6zm0 6h2v2h-2v-2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zm-9-4h2v2h-2zm0-6h2v4h-2z"},"children":[]}]};exports.ic_sms_failed_twotone=ic_sms_failed_twotone;var ic_support_agent={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M21,12.22C21,6.73,16.74,3,12,3c-4.69,0-9,3.65-9,9.28C2.4,12.62,2,13.26,2,14v2c0,1.1,0.9,2,2,2h1v-6.1 c0-3.87,3.13-7,7-7s7,3.13,7,7V19h-8v2h8c1.1,0,2-0.9,2-2v-1.22c0.59-0.31,1-0.92,1-1.64v-2.3C22,13.14,21.59,12.53,21,12.22z"},"children":[{"name":"path","attribs":{"d":"M21,12.22C21,6.73,16.74,3,12,3c-4.69,0-9,3.65-9,9.28C2.4,12.62,2,13.26,2,14v2c0,1.1,0.9,2,2,2h1v-6.1 c0-3.87,3.13-7,7-7s7,3.13,7,7V19h-8v2h8c1.1,0,2-0.9,2-2v-1.22c0.59-0.31,1-0.92,1-1.64v-2.3C22,13.14,21.59,12.53,21,12.22z"},"children":[]}]},{"name":"circle","attribs":{"cx":"9","cy":"13","r":"1"},"children":[{"name":"circle","attribs":{"cx":"9","cy":"13","r":"1"},"children":[]}]},{"name":"circle","attribs":{"cx":"15","cy":"13","r":"1"},"children":[{"name":"circle","attribs":{"cx":"15","cy":"13","r":"1"},"children":[]}]},{"name":"path","attribs":{"d":"M18,11.03C17.52,8.18,15.04,6,12.05,6c-3.03,0-6.29,2.51-6.03,6.45c2.47-1.01,4.33-3.21,4.86-5.89 C12.19,9.19,14.88,11,18,11.03z"},"children":[{"name":"path","attribs":{"d":"M18,11.03C17.52,8.18,15.04,6,12.05,6c-3.03,0-6.29,2.51-6.03,6.45c2.47-1.01,4.33-3.21,4.86-5.89 C12.19,9.19,14.88,11,18,11.03z"},"children":[]}]}]}]}]}]};exports.ic_support_agent=ic_support_agent;var ic_support_agent_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M21,12.22C21,6.73,16.74,3,12,3c-4.69,0-9,3.65-9,9.28C2.4,12.62,2,13.26,2,14v2c0,1.1,0.9,2,2,2h1v-6.1 c0-3.87,3.13-7,7-7s7,3.13,7,7V19h-8v2h8c1.1,0,2-0.9,2-2v-1.22c0.59-0.31,1-0.92,1-1.64v-2.3C22,13.14,21.59,12.53,21,12.22z"},"children":[{"name":"path","attribs":{"d":"M21,12.22C21,6.73,16.74,3,12,3c-4.69,0-9,3.65-9,9.28C2.4,12.62,2,13.26,2,14v2c0,1.1,0.9,2,2,2h1v-6.1 c0-3.87,3.13-7,7-7s7,3.13,7,7V19h-8v2h8c1.1,0,2-0.9,2-2v-1.22c0.59-0.31,1-0.92,1-1.64v-2.3C22,13.14,21.59,12.53,21,12.22z"},"children":[]}]},{"name":"circle","attribs":{"cx":"9","cy":"13","r":"1"},"children":[{"name":"circle","attribs":{"cx":"9","cy":"13","r":"1"},"children":[]}]},{"name":"circle","attribs":{"cx":"15","cy":"13","r":"1"},"children":[{"name":"circle","attribs":{"cx":"15","cy":"13","r":"1"},"children":[]}]},{"name":"path","attribs":{"d":"M18,11.03C17.52,8.18,15.04,6,12.05,6c-3.03,0-6.29,2.51-6.03,6.45c2.47-1.01,4.33-3.21,4.86-5.89 C12.19,9.19,14.88,11,18,11.03z"},"children":[{"name":"path","attribs":{"d":"M18,11.03C17.52,8.18,15.04,6,12.05,6c-3.03,0-6.29,2.51-6.03,6.45c2.47-1.01,4.33-3.21,4.86-5.89 C12.19,9.19,14.88,11,18,11.03z"},"children":[]}]}]}]}]}]};exports.ic_support_agent_outline=ic_support_agent_outline;var ic_support_agent_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M21,12.22C21,6.73,16.74,3,12,3c-4.69,0-9,3.65-9,9.28C2.4,12.62,2,13.26,2,14v2c0,1.1,0.9,2,2,2h1v-6.1 c0-3.87,3.13-7,7-7s7,3.13,7,7V19h-8v2h8c1.1,0,2-0.9,2-2v-1.22c0.59-0.31,1-0.92,1-1.64v-2.3C22,13.14,21.59,12.53,21,12.22z"},"children":[{"name":"path","attribs":{"d":"M21,12.22C21,6.73,16.74,3,12,3c-4.69,0-9,3.65-9,9.28C2.4,12.62,2,13.26,2,14v2c0,1.1,0.9,2,2,2h1v-6.1 c0-3.87,3.13-7,7-7s7,3.13,7,7V19h-8v2h8c1.1,0,2-0.9,2-2v-1.22c0.59-0.31,1-0.92,1-1.64v-2.3C22,13.14,21.59,12.53,21,12.22z"},"children":[]}]},{"name":"circle","attribs":{"cx":"9","cy":"13","r":"1"},"children":[{"name":"circle","attribs":{"cx":"9","cy":"13","r":"1"},"children":[]}]},{"name":"circle","attribs":{"cx":"15","cy":"13","r":"1"},"children":[{"name":"circle","attribs":{"cx":"15","cy":"13","r":"1"},"children":[]}]},{"name":"path","attribs":{"d":"M18,11.03C17.52,8.18,15.04,6,12.05,6c-3.03,0-6.29,2.51-6.03,6.45c2.47-1.01,4.33-3.21,4.86-5.89 C12.19,9.19,14.88,11,18,11.03z"},"children":[{"name":"path","attribs":{"d":"M18,11.03C17.52,8.18,15.04,6,12.05,6c-3.03,0-6.29,2.51-6.03,6.45c2.47-1.01,4.33-3.21,4.86-5.89 C12.19,9.19,14.88,11,18,11.03z"},"children":[]}]}]}]}]}]};exports.ic_support_agent_twotone=ic_support_agent_twotone;var ic_sync={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 4V1L8 5l4 4V6c3.31 0 6 2.69 6 6 0 1.01-.25 1.97-.7 2.8l1.46 1.46C19.54 15.03 20 13.57 20 12c0-4.42-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6 0-1.01.25-1.97.7-2.8L5.24 7.74C4.46 8.97 4 10.43 4 12c0 4.42 3.58 8 8 8v3l4-4-4-4v3z"},"children":[]}]};exports.ic_sync=ic_sync;var ic_sync_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M.01 0h24v24h-24V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 4V1L8 5l4 4V6c3.31 0 6 2.69 6 6 0 1.01-.25 1.97-.7 2.8l1.46 1.46C19.54 15.03 20 13.57 20 12c0-4.42-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6 0-1.01.25-1.97.7-2.8L5.24 7.74C4.46 8.97 4 10.43 4 12c0 4.42 3.58 8 8 8v3l4-4-4-4v3z"},"children":[]}]};exports.ic_sync_outline=ic_sync_outline;var ic_sync_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M.01 0h24v24h-24V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12.01 4V1l-4 4 4 4V6c3.31 0 6 2.69 6 6 0 1.01-.25 1.97-.7 2.8l1.46 1.46c.78-1.23 1.24-2.69 1.24-4.26 0-4.42-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6 0-1.01.25-1.97.7-2.8L5.25 7.74C4.47 8.97 4.01 10.43 4.01 12c0 4.42 3.58 8 8 8v3l4-4-4-4v3z"},"children":[]}]};exports.ic_sync_twotone=ic_sync_twotone;var ic_sync_disabled={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0zm0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 6.35V4.26c-.8.21-1.55.54-2.23.96l1.46 1.46c.25-.12.5-.24.77-.33zm-7.14-.94l2.36 2.36C4.45 8.99 4 10.44 4 12c0 2.21.91 4.2 2.36 5.64L4 20h6v-6l-2.24 2.24C6.68 15.15 6 13.66 6 12c0-1 .25-1.94.68-2.77l8.08 8.08c-.25.13-.5.25-.77.34v2.09c.8-.21 1.55-.54 2.23-.96l2.36 2.36 1.27-1.27L4.14 4.14 2.86 5.41zM20 4h-6v6l2.24-2.24C17.32 8.85 18 10.34 18 12c0 1-.25 1.94-.68 2.77l1.46 1.46C19.55 15.01 20 13.56 20 12c0-2.21-.91-4.2-2.36-5.64L20 4z"},"children":[]}]};exports.ic_sync_disabled=ic_sync_disabled;var ic_sync_disabled_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0zm0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 6.35V4.26c-.66.17-1.29.43-1.88.75l1.5 1.5c.13-.05.25-.11.38-.16zM20 12c0-2.21-.91-4.2-2.36-5.64L20 4h-6v6l2.24-2.24C17.32 8.85 18 10.34 18 12c0 .85-.19 1.65-.51 2.38l1.5 1.5C19.63 14.74 20 13.41 20 12zM4.27 4L2.86 5.41l2.36 2.36C4.45 8.99 4 10.44 4 12c0 2.21.91 4.2 2.36 5.64L4 20h6v-6l-2.24 2.24C6.68 15.15 6 13.66 6 12c0-1 .25-1.94.68-2.77l8.08 8.08c-.25.13-.5.24-.76.34v2.09c.8-.21 1.55-.54 2.23-.96l2.58 2.58 1.41-1.41L4.27 4z"},"children":[]}]};exports.ic_sync_disabled_outline=ic_sync_disabled_outline;var ic_sync_disabled_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0zm0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 6.35V4.26c-.66.17-1.29.43-1.88.75l1.5 1.5c.13-.05.25-.11.38-.16zM20 12c0-2.21-.91-4.2-2.36-5.64L20 4h-6v6l2.24-2.24C17.32 8.85 18 10.34 18 12c0 .85-.19 1.65-.51 2.38l1.5 1.5C19.63 14.74 20 13.41 20 12zM4.27 4L2.86 5.41l2.36 2.36C4.45 8.99 4 10.44 4 12c0 2.21.91 4.2 2.36 5.64L4 20h6v-6l-2.24 2.24C6.68 15.15 6 13.66 6 12c0-1 .25-1.94.68-2.77l8.08 8.08c-.25.13-.5.24-.76.34v2.09c.8-.21 1.55-.54 2.23-.96l2.58 2.58 1.41-1.41L4.27 4z"},"children":[]}]};exports.ic_sync_disabled_twotone=ic_sync_disabled_twotone;var ic_sync_problem={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 12c0 2.21.91 4.2 2.36 5.64L3 20h6v-6l-2.24 2.24C5.68 15.15 5 13.66 5 12c0-2.61 1.67-4.83 4-5.65V4.26C5.55 5.15 3 8.27 3 12zm8 5h2v-2h-2v2zM21 4h-6v6l2.24-2.24C18.32 8.85 19 10.34 19 12c0 2.61-1.67 4.83-4 5.65v2.09c3.45-.89 6-4.01 6-7.74 0-2.21-.91-4.2-2.36-5.64L21 4zm-10 9h2V7h-2v6z"},"children":[]}]};exports.ic_sync_problem=ic_sync_problem;var ic_sync_problem_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 12c0 2.21.91 4.2 2.36 5.64L3 20h6v-6l-2.24 2.24C5.68 15.15 5 13.66 5 12c0-2.61 1.67-4.83 4-5.65V4.26C5.55 5.15 3 8.27 3 12zm8 5h2v-2h-2v2zM21 4h-6v6l2.24-2.24C18.32 8.85 19 10.34 19 12c0 2.61-1.67 4.83-4 5.65v2.09c3.45-.89 6-4.01 6-7.74 0-2.21-.91-4.2-2.36-5.64L21 4zm-10 9h2V7h-2v6z"},"children":[]}]};exports.ic_sync_problem_outline=ic_sync_problem_outline;var ic_sync_problem_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 12c0 2.21.91 4.2 2.36 5.64L3 20h6v-6l-2.24 2.24C5.68 15.15 5 13.66 5 12c0-2.61 1.67-4.83 4-5.65V4.26C5.55 5.15 3 8.27 3 12zm8 5h2v-2h-2v2zM21 4h-6v6l2.24-2.24C18.32 8.85 19 10.34 19 12c0 2.61-1.67 4.83-4 5.65v2.09c3.45-.89 6-4.01 6-7.74 0-2.21-.91-4.2-2.36-5.64L21 4zm-10 9h2V7h-2v6z"},"children":[]}]};exports.ic_sync_problem_twotone=ic_sync_problem_twotone;var ic_system_update={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 1.01L7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14zm-1-6h-3V8h-2v5H8l4 4 4-4z"},"children":[]}]};exports.ic_system_update=ic_system_update;var ic_system_update_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 1.01L7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14zm-1-6h-3V8h-2v5H8l4 4 4-4z"},"children":[]}]};exports.ic_system_update_outline=ic_system_update_outline;var ic_system_update_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 19h10V5H7v14zm4-6V8h2v5h3l-4 4-4-4h3z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M16 13h-3V8h-2v5H8l4 4zm1-11.99L7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z"},"children":[]}]};exports.ic_system_update_twotone=ic_system_update_twotone;var ic_tap_and_play={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M2 16v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0 4v3h3c0-1.66-1.34-3-3-3zm0-8v2c4.97 0 9 4.03 9 9h2c0-6.08-4.92-11-11-11zM17 1.01L7 1c-1.1 0-2 .9-2 2v7.37c.69.16 1.36.37 2 .64V5h10v13h-3.03c.52 1.25.84 2.59.95 4H17c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99z"},"children":[]}]};exports.ic_tap_and_play=ic_tap_and_play;var ic_tap_and_play_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M2 16v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0 4v3h3c0-1.66-1.34-3-3-3zm0-8v2c4.97 0 9 4.03 9 9h2c0-6.08-4.92-11-11-11zM17 1.01L7 1c-1.1 0-2 .9-2 2v7.37c.69.16 1.36.37 2 .64V5h10v13h-3.03c.52 1.25.84 2.59.95 4H17c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99z"},"children":[]}]};exports.ic_tap_and_play_outline=ic_tap_and_play_outline;var ic_tap_and_play_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M2 16v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0 4v3h3c0-1.66-1.34-3-3-3zm0-8v2c4.97 0 9 4.03 9 9h2c0-6.08-4.92-11-11-11zM17 1.01L7 1c-1.1 0-2 .9-2 2v7.37c.69.16 1.36.37 2 .64V5h10v13h-3.03c.52 1.25.84 2.59.95 4H17c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99z"},"children":[]}]};exports.ic_tap_and_play_twotone=ic_tap_and_play_twotone;var ic_time_to_leave={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18.92 5.01C18.72 4.42 18.16 4 17.5 4h-11c-.66 0-1.21.42-1.42 1.01L3 11v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.5 15c-.83 0-1.5-.67-1.5-1.5S5.67 12 6.5 12s1.5.67 1.5 1.5S7.33 15 6.5 15zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 10l1.5-4.5h11L19 10H5z"},"children":[]}]};exports.ic_time_to_leave=ic_time_to_leave;var ic_time_to_leave_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18.92 5.01C18.72 4.42 18.16 4 17.5 4h-11c-.66 0-1.21.42-1.42 1.01L3 11v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.85 6h10.29l1.04 3H5.81l1.04-3zM19 16H5v-4.66l.12-.34h13.77l.11.34V16z"},"children":[]},{"name":"circle","attribs":{"cx":"7.5","cy":"13.5","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"16.5","cy":"13.5","r":"1.5"},"children":[]}]};exports.ic_time_to_leave_outline=ic_time_to_leave_outline;var ic_time_to_leave_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5.12 11l-.12.34V16h14v-4.66l-.12-.34H5.12zm2.38 4c-.83 0-1.5-.67-1.5-1.5S6.67 12 7.5 12s1.5.67 1.5 1.5S8.33 15 7.5 15zm9 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M18.92 5.01C18.72 4.42 18.16 4 17.5 4h-11c-.66 0-1.21.42-1.42 1.01L3 11v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.85 6h10.29l1.04 3H5.81l1.04-3zM19 16H5v-4.66l.12-.34h13.77l.11.34V16z"},"children":[]},{"name":"circle","attribs":{"cx":"7.5","cy":"13.5","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"16.5","cy":"13.5","r":"1.5"},"children":[]}]};exports.ic_time_to_leave_twotone=ic_time_to_leave_twotone;var ic_tv_off={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M1 3.54l1.53 1.53C1.65 5.28 1 6.06 1 7v12c0 1.1.9 2 2 2h15.46l2 2 1.26-1.27L2.27 2.27 1 3.54zM3 19V7h1.46l12 12H3zM21 5h-7.58l3.29-3.3L16 1l-4 4-4-4-.7.7L10.58 5H7.52l2 2H21v11.48l1.65 1.65c.22-.32.35-.71.35-1.13V7c0-1.11-.89-2-2-2z"},"children":[]}]};exports.ic_tv_off=ic_tv_off;var ic_tv_off_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 7v10.88l1.85 1.85c.09-.23.15-.47.15-.73V7c0-1.11-.89-2-2-2h-7.58l3.29-3.3L16 1l-4 4-4-4-.7.7L10.58 5H8.12l2 2H21zm-.54 16l1.26-1.27-1.26 1.26zM2.41 2.13l-.14.14L1 3.54l1.53 1.53C1.65 5.28 1 6.06 1 7v12c0 1.1.9 2 2 2h15.46l1.99 1.99 1.26-1.26.15-.15L2.41 2.13zM3 19V7h1.46l12 12H3z"},"children":[]}]};exports.ic_tv_off_outline=ic_tv_off_outline;var ic_tv_off_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 19h13.46l-12-12H3zm7.12-12L21 17.88V7z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M21 7v10.88l1.85 1.85c.09-.23.15-.47.15-.73V7c0-1.11-.89-2-2-2h-7.58l3.29-3.3L16 1l-4 4-4-4-.7.7L10.58 5H8.12l2 2H21zm-.54 16l1.26-1.27-1.26 1.26zM2.41 2.13l-.14.14L1 3.54l1.53 1.53C1.65 5.28 1 6.06 1 7v12c0 1.1.9 2 2 2h15.46l1.99 1.99 1.26-1.26.15-.15L2.41 2.13zM3 19V7h1.46l12 12H3z"},"children":[]}]};exports.ic_tv_off_twotone=ic_tv_off_twotone;var ic_vibration={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M0 15h2V9H0v6zm3 2h2V7H3v10zm19-8v6h2V9h-2zm-3 8h2V7h-2v10zM16.5 3h-9C6.67 3 6 3.67 6 4.5v15c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5v-15c0-.83-.67-1.5-1.5-1.5zM16 19H8V5h8v14z"},"children":[]}]};exports.ic_vibration=ic_vibration;var ic_vibration_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M0 15h2V9H0v6zm3 2h2V7H3v10zm19-8v6h2V9h-2zm-3 8h2V7h-2v10zM16.5 3h-9C6.67 3 6 3.67 6 4.5v15c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5v-15c0-.83-.67-1.5-1.5-1.5zM16 19H8V5h8v14z"},"children":[]}]};exports.ic_vibration_outline=ic_vibration_outline;var ic_vibration_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8 5h8v14H8z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M19 7h2v10h-2zm3 2h2v6h-2zM0 9h2v6H0zm16.5-6h-9C6.67 3 6 3.67 6 4.5v15c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5v-15c0-.83-.67-1.5-1.5-1.5zM16 19H8V5h8v14zM3 7h2v10H3z"},"children":[]}]};exports.ic_vibration_twotone=ic_vibration_twotone;var ic_voice_chat={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-2 12l-4-3.2V14H6V6h8v3.2L18 6v8z"},"children":[]}]};exports.ic_voice_chat=ic_voice_chat;var ic_voice_chat_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zm-6-5.4l3 2.4V7l-3 2.4V7H7v6h7z"},"children":[]}]};exports.ic_voice_chat_outline=ic_voice_chat_outline;var ic_voice_chat_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 17.17L5.17 16H20V4H4v13.17zM7 7h7v2.4L17 7v6l-3-2.4V13H7V7z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zm-6-5.4l3 2.4V7l-3 2.4V7H7v6h7z"},"children":[]}]};exports.ic_voice_chat_twotone=ic_voice_chat_twotone;var ic_vpn_lock={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 4v-.5C22 2.12 20.88 1 19.5 1S17 2.12 17 3.5V4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm-.8 0h-3.4v-.5c0-.94.76-1.7 1.7-1.7s1.7.76 1.7 1.7V4zm-2.28 8c.04.33.08.66.08 1 0 2.08-.8 3.97-2.1 5.39-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H7v-2h2c.55 0 1-.45 1-1V8h2c1.1 0 2-.9 2-2V3.46c-.95-.3-1.95-.46-3-.46C5.48 3 1 7.48 1 13s4.48 10 10 10 10-4.48 10-10c0-.34-.02-.67-.05-1h-2.03zM10 20.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L8 16v1c0 1.1.9 2 2 2v1.93z"},"children":[]}]};exports.ic_vpn_lock=ic_vpn_lock;var ic_vpn_lock_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18.92 12c.04.33.08.66.08 1 0 2.08-.8 3.97-2.1 5.39-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H7v-2h2c.55 0 1-.45 1-1V8h2c1.1 0 2-.9 2-2V3.46c-.95-.3-1.95-.46-3-.46C5.48 3 1 7.48 1 13s4.48 10 10 10 10-4.48 10-10c0-.34-.02-.67-.05-1h-2.03zM10 20.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L8 16v1c0 1.1.9 2 2 2v1.93zM22 4v-.5C22 2.12 20.88 1 19.5 1S17 2.12 17 3.5V4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm-1 0h-3v-.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5V4z"},"children":[]}]};exports.ic_vpn_lock_outline=ic_vpn_lock_outline;var ic_vpn_lock_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 8h-2v2c0 .55-.45 1-1 1H7v2h6c.55 0 1 .45 1 1v3h1c.9 0 1.64.58 1.9 1.39C18.2 16.97 19 15.08 19 13c0-.34-.04-.67-.08-1H17c-1.65 0-3-1.35-3-3V6c0 1.1-.9 2-2 2zm-4 9v-1l-4.79-4.79C3.08 11.79 3 12.38 3 13c0 4.08 3.05 7.44 7 7.93V19c-1.1 0-2-.9-2-2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M18.92 12c.04.33.08.66.08 1 0 2.08-.8 3.97-2.1 5.39-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H7v-2h2c.55 0 1-.45 1-1V8h2c1.1 0 2-.9 2-2V3.46c-.95-.3-1.95-.46-3-.46C5.48 3 1 7.48 1 13s4.48 10 10 10 10-4.48 10-10c0-.34-.02-.67-.05-1h-2.03zM10 20.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L8 16v1c0 1.1.9 2 2 2v1.93zM22 4v-.5C22 2.12 20.88 1 19.5 1S17 2.12 17 3.5V4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm-1 0h-3v-.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5V4z"},"children":[]}]};exports.ic_vpn_lock_twotone=ic_vpn_lock_twotone;var ic_wc={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5.5 22v-7.5H4V9c0-1.1.9-2 2-2h3c1.1 0 2 .9 2 2v5.5H9.5V22h-4zM18 22v-6h3l-2.54-7.63C18.18 7.55 17.42 7 16.56 7h-.12c-.86 0-1.63.55-1.9 1.37L12 16h3v6h3zM7.5 6c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2zm9 0c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2z"},"children":[]}]};exports.ic_wc=ic_wc;var ic_wc_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M.01 0h24v24h-24V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5.5 22v-7.5H4V9c0-1.1.9-2 2-2h3c1.1 0 2 .9 2 2v5.5H9.5V22h-4zM18 22v-6h3l-2.54-7.63C18.18 7.55 17.42 7 16.56 7h-.12c-.86 0-1.63.55-1.9 1.37L12 16h3v6h3zM7.5 6c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2zm9 0c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2z"},"children":[]}]};exports.ic_wc_outline=ic_wc_outline;var ic_wc_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M.01 0h24v24h-24V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5.5 22v-7.5H4V9c0-1.1.9-2 2-2h3c1.1 0 2 .9 2 2v5.5H9.5V22h-4zM18 22v-6h3l-2.54-7.63C18.18 7.55 17.42 7 16.56 7h-.12c-.86 0-1.63.55-1.9 1.37L12 16h3v6h3zM7.5 6c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2zm9 0c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2z"},"children":[]}]};exports.ic_wc_twotone=ic_wc_twotone;var ic_wifi={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M1 9l2 2c4.97-4.97 13.03-4.97 18 0l2-2C16.93 2.93 7.08 2.93 1 9zm8 8l3 3 3-3c-1.65-1.66-4.34-1.66-6 0zm-4-4l2 2c2.76-2.76 7.24-2.76 10 0l2-2C15.14 9.14 8.87 9.14 5 13z"},"children":[]}]};exports.ic_wifi=ic_wifi;var ic_wifi_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0zm0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M1 9l2 2c4.97-4.97 13.03-4.97 18 0l2-2C16.93 2.93 7.08 2.93 1 9zm8 8l3 3 3-3c-1.65-1.66-4.34-1.66-6 0zm-4-4l2 2c2.76-2.76 7.24-2.76 10 0l2-2C15.14 9.14 8.87 9.14 5 13z"},"children":[]}]};exports.ic_wifi_outline=ic_wifi_outline;var ic_wifi_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0zm0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M1 9l2 2c4.97-4.97 13.03-4.97 18 0l2-2C16.93 2.93 7.08 2.93 1 9zm8 8l3 3 3-3c-1.65-1.66-4.34-1.66-6 0zm-4-4l2 2c2.76-2.76 7.24-2.76 10 0l2-2C15.14 9.14 8.87 9.14 5 13z"},"children":[]}]};exports.ic_wifi_twotone=ic_wifi_twotone;var ic_wifi_off={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M24 .01c0-.01 0-.01 0 0L0 0v24h24V.01zM0 0h24v24H0V0zm0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22.99 9C19.15 5.16 13.8 3.76 8.84 4.78l2.52 2.52c3.47-.17 6.99 1.05 9.63 3.7l2-2zm-4 4c-1.29-1.29-2.84-2.13-4.49-2.56l3.53 3.53.96-.97zM2 3.05L5.07 6.1C3.6 6.82 2.22 7.78 1 9l1.99 2c1.24-1.24 2.67-2.16 4.2-2.77l2.24 2.24C7.81 10.89 6.27 11.73 5 13v.01L6.99 15c1.36-1.36 3.14-2.04 4.92-2.06L18.98 20l1.27-1.26L3.29 1.79 2 3.05zM9 17l3 3 3-3c-1.65-1.66-4.34-1.66-6 0z"},"children":[]}]};exports.ic_wifi_off=ic_wifi_off;var ic_wifi_off_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 11l2-2c-3.73-3.73-8.87-5.15-13.7-4.31l2.58 2.58c3.3-.02 6.61 1.22 9.12 3.73zm-2 2c-1.08-1.08-2.36-1.85-3.72-2.33l3.02 3.02.7-.69zM9 17l3 3 3-3c-1.65-1.66-4.34-1.66-6 0zM3.41 1.64L2 3.05 5.05 6.1C3.59 6.83 2.22 7.79 1 9l2 2c1.23-1.23 2.65-2.16 4.17-2.78l2.24 2.24C7.79 10.89 6.27 11.74 5 13l2 2c1.35-1.35 3.11-2.04 4.89-2.06l7.08 7.08 1.41-1.41L3.41 1.64z"},"children":[]}]};exports.ic_wifi_off_outline=ic_wifi_off_outline;var ic_wifi_off_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 11l2-2c-3.73-3.73-8.87-5.15-13.7-4.31l2.58 2.58c3.3-.02 6.61 1.22 9.12 3.73zm-2 2c-1.08-1.08-2.36-1.85-3.72-2.33l3.02 3.02.7-.69zM9 17l3 3 3-3c-1.65-1.66-4.34-1.66-6 0zM3.41 1.64L2 3.05 5.05 6.1C3.59 6.83 2.22 7.79 1 9l2 2c1.23-1.23 2.65-2.16 4.17-2.78l2.24 2.24C7.79 10.89 6.27 11.74 5 13l2 2c1.35-1.35 3.11-2.04 4.89-2.06l7.08 7.08 1.41-1.41L3.41 1.64z"},"children":[]}]};exports.ic_wifi_off_twotone=ic_wifi_off_twotone;var ic_ac_unit={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 11h-4.17l3.24-3.24-1.41-1.42L15 11h-2V9l4.66-4.66-1.42-1.41L13 6.17V2h-2v4.17L7.76 2.93 6.34 4.34 11 9v2H9L4.34 6.34 2.93 7.76 6.17 11H2v2h4.17l-3.24 3.24 1.41 1.42L9 13h2v2l-4.66 4.66 1.42 1.41L11 17.83V22h2v-4.17l3.24 3.24 1.42-1.41L13 15v-2h2l4.66 4.66 1.41-1.42L17.83 13H22z"},"children":[]}]};exports.ic_ac_unit=ic_ac_unit;var ic_ac_unit_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 11h-4.17l3.24-3.24-1.41-1.42L15 11h-2V9l4.66-4.66-1.42-1.41L13 6.17V2h-2v4.17L7.76 2.93 6.34 4.34 11 9v2H9L4.34 6.34 2.93 7.76 6.17 11H2v2h4.17l-3.24 3.24 1.41 1.42L9 13h2v2l-4.66 4.66 1.42 1.41L11 17.83V22h2v-4.17l3.24 3.24 1.42-1.41L13 15v-2h2l4.66 4.66 1.41-1.42L17.83 13H22v-2z"},"children":[]}]};exports.ic_ac_unit_outline=ic_ac_unit_outline;var ic_ac_unit_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 11h-4.17l3.24-3.24-1.41-1.42L15 11h-2V9l4.66-4.66-1.42-1.41L13 6.17V2h-2v4.17L7.76 2.93 6.34 4.34 11 9v2H9L4.34 6.34 2.93 7.76 6.17 11H2v2h4.17l-3.24 3.24 1.41 1.42L9 13h2v2l-4.66 4.66 1.42 1.41L11 17.83V22h2v-4.17l3.24 3.24 1.42-1.41L13 15v-2h2l4.66 4.66 1.41-1.42L17.83 13H22v-2z"},"children":[]}]};exports.ic_ac_unit_twotone=ic_ac_unit_twotone;var ic_airport_shuttle={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 5H3c-1.1 0-2 .89-2 2v9h2c0 1.65 1.34 3 3 3s3-1.35 3-3h5.5c0 1.65 1.34 3 3 3s3-1.35 3-3H23v-5l-6-6zM3 11V7h4v4H3zm3 6.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm7-6.5H9V7h4v4zm4.5 6.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM15 11V7h1l4 4h-5z"},"children":[]}]};exports.ic_airport_shuttle=ic_airport_shuttle;var ic_airport_shuttle_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 5H3c-1.1 0-2 .89-2 2v9h2c0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5l-6-6zm-2 2h1l3 3h-4V7zM9 7h4v3H9V7zM3 7h4v3H3V7zm3 10.25c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25zm12 0c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25zM21 14h-.78c-.55-.61-1.34-1-2.22-1s-1.67.39-2.22 1H8.22c-.55-.61-1.33-1-2.22-1s-1.67.39-2.22 1H3v-2h18v2z"},"children":[]}]};exports.ic_airport_shuttle_outline=ic_airport_shuttle_outline;var ic_airport_shuttle_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 14h.78c.55-.61 1.34-1 2.22-1s1.67.39 2.22 1h7.56c.55-.61 1.34-1 2.22-1s1.67.39 2.22 1H21v-2H3v2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M17 5H3c-1.1 0-2 .89-2 2v9h2c0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5l-6-6zm-2 2h1l3 3h-4V7zM9 7h4v3H9V7zM3 7h4v3H3V7zm3 10.25c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25zm12 0c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25zM21 14h-.78c-.55-.61-1.34-1-2.22-1s-1.67.39-2.22 1H8.22c-.55-.61-1.33-1-2.22-1s-1.67.39-2.22 1H3v-2h18v2z"},"children":[]}]};exports.ic_airport_shuttle_twotone=ic_airport_shuttle_twotone;var ic_all_inclusive={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18.6 6.62c-1.44 0-2.8.56-3.77 1.53L12 10.66 10.48 12h.01L7.8 14.39c-.64.64-1.49.99-2.4.99-1.87 0-3.39-1.51-3.39-3.38S3.53 8.62 5.4 8.62c.91 0 1.76.35 2.44 1.03l1.13 1 1.51-1.34L9.22 8.2C8.2 7.18 6.84 6.62 5.4 6.62 2.42 6.62 0 9.04 0 12s2.42 5.38 5.4 5.38c1.44 0 2.8-.56 3.77-1.53l2.83-2.5.01.01L13.52 12h-.01l2.69-2.39c.64-.64 1.49-.99 2.4-.99 1.87 0 3.39 1.51 3.39 3.38s-1.52 3.38-3.39 3.38c-.9 0-1.76-.35-2.44-1.03l-1.14-1.01-1.51 1.34 1.27 1.12c1.02 1.01 2.37 1.57 3.82 1.57 2.98 0 5.4-2.41 5.4-5.38s-2.42-5.37-5.4-5.37z"},"children":[]}]};exports.ic_all_inclusive=ic_all_inclusive;var ic_all_inclusive_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18.6 6.62c-1.44 0-2.8.56-3.77 1.53L7.8 14.39c-.64.64-1.49.99-2.4.99-1.87 0-3.39-1.51-3.39-3.38S3.53 8.62 5.4 8.62c.91 0 1.76.35 2.44 1.03l1.13 1 1.51-1.34L9.22 8.2C8.2 7.18 6.84 6.62 5.4 6.62 2.42 6.62 0 9.04 0 12s2.42 5.38 5.4 5.38c1.44 0 2.8-.56 3.77-1.53l7.03-6.24c.64-.64 1.49-.99 2.4-.99 1.87 0 3.39 1.51 3.39 3.38s-1.52 3.38-3.39 3.38c-.9 0-1.76-.35-2.44-1.03l-1.14-1.01-1.51 1.34 1.27 1.12c1.02 1.01 2.37 1.57 3.82 1.57 2.98 0 5.4-2.41 5.4-5.38s-2.42-5.37-5.4-5.37z"},"children":[]}]};exports.ic_all_inclusive_outline=ic_all_inclusive_outline;var ic_all_inclusive_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18.6 6.62c-1.44 0-2.8.56-3.77 1.53L7.8 14.39c-.64.64-1.49.99-2.4.99-1.87 0-3.39-1.51-3.39-3.38S3.53 8.62 5.4 8.62c.91 0 1.76.35 2.44 1.03l1.13 1 1.51-1.34L9.22 8.2C8.2 7.18 6.84 6.62 5.4 6.62 2.42 6.62 0 9.04 0 12s2.42 5.38 5.4 5.38c1.44 0 2.8-.56 3.77-1.53l7.03-6.24c.64-.64 1.49-.99 2.4-.99 1.87 0 3.39 1.51 3.39 3.38s-1.52 3.38-3.39 3.38c-.9 0-1.76-.35-2.44-1.03l-1.14-1.01-1.51 1.34 1.27 1.12c1.02 1.01 2.37 1.57 3.82 1.57 2.98 0 5.4-2.41 5.4-5.38s-2.42-5.37-5.4-5.37z"},"children":[]}]};exports.ic_all_inclusive_twotone=ic_all_inclusive_twotone;var ic_apartment={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M17,11V3H7v4H3v14h8v-4h2v4h8V11H17z M7,19H5v-2h2V19z M7,15H5v-2h2V15z M7,11H5V9h2V11z M11,15H9v-2h2V15z M11,11H9V9h2 V11z M11,7H9V5h2V7z M15,15h-2v-2h2V15z M15,11h-2V9h2V11z M15,7h-2V5h2V7z M19,19h-2v-2h2V19z M19,15h-2v-2h2V15z"},"children":[{"name":"path","attribs":{"d":"M17,11V3H7v4H3v14h8v-4h2v4h8V11H17z M7,19H5v-2h2V19z M7,15H5v-2h2V15z M7,11H5V9h2V11z M11,15H9v-2h2V15z M11,11H9V9h2 V11z M11,7H9V5h2V7z M15,15h-2v-2h2V15z M15,11h-2V9h2V11z M15,7h-2V5h2V7z M19,19h-2v-2h2V19z M19,15h-2v-2h2V15z"},"children":[]}]}]}]};exports.ic_apartment=ic_apartment;var ic_apartment_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M17,11V3H7v4H3v14h8v-4h2v4h8V11H17z M7,19H5v-2h2V19z M7,15H5v-2h2V15z M7,11H5V9h2V11z M11,15H9v-2h2V15z M11,11H9V9h2 V11z M11,7H9V5h2V7z M15,15h-2v-2h2V15z M15,11h-2V9h2V11z M15,7h-2V5h2V7z M19,19h-2v-2h2V19z M19,15h-2v-2h2V15z"},"children":[{"name":"path","attribs":{"d":"M17,11V3H7v4H3v14h8v-4h2v4h8V11H17z M7,19H5v-2h2V19z M7,15H5v-2h2V15z M7,11H5V9h2V11z M11,15H9v-2h2V15z M11,11H9V9h2 V11z M11,7H9V5h2V7z M15,15h-2v-2h2V15z M15,11h-2V9h2V11z M15,7h-2V5h2V7z M19,19h-2v-2h2V19z M19,15h-2v-2h2V15z"},"children":[]}]}]}]};exports.ic_apartment_outline=ic_apartment_outline;var ic_apartment_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M17,11V3H7v4H3v14h8v-4h2v4h8V11H17z M7,19H5v-2h2V19z M7,15H5v-2h2V15z M7,11H5V9h2V11z M11,15H9v-2h2V15z M11,11H9V9h2 V11z M11,7H9V5h2V7z M15,15h-2v-2h2V15z M15,11h-2V9h2V11z M15,7h-2V5h2V7z M19,19h-2v-2h2V19z M19,15h-2v-2h2V15z"},"children":[{"name":"path","attribs":{"d":"M17,11V3H7v4H3v14h8v-4h2v4h8V11H17z M7,19H5v-2h2V19z M7,15H5v-2h2V15z M7,11H5V9h2V11z M11,15H9v-2h2V15z M11,11H9V9h2 V11z M11,7H9V5h2V7z M15,15h-2v-2h2V15z M15,11h-2V9h2V11z M15,7h-2V5h2V7z M19,19h-2v-2h2V19z M19,15h-2v-2h2V15z"},"children":[]}]}]}]};exports.ic_apartment_twotone=ic_apartment_twotone;var ic_baby_changing_station={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M14,8v2h-3L8.31,8.82L7,12.75V22H3V12l1.58-4.63C4.96,6.25,6.22,5.69,7.3,6.18l4.15,1.83L14,8z M8,1C6.9,1,6,1.9,6,3 s0.9,2,2,2s2-0.9,2-2S9.1,1,8,1z M9,19h12v-2H9V19z M19.5,16c0.83,0,1.5-0.67,1.5-1.5c0-0.83-0.67-1.5-1.5-1.5S18,13.67,18,14.5 C18,15.33,18.67,16,19.5,16z M13,12c0-0.55-0.45-1-1-1H9v2h2v1c0,1.1,0.9,2,2,2h2c1.1,0,2-0.9,2-2v-3h-2v2h-2V12z"},"children":[{"name":"path","attribs":{"d":"M14,8v2h-3L8.31,8.82L7,12.75V22H3V12l1.58-4.63C4.96,6.25,6.22,5.69,7.3,6.18l4.15,1.83L14,8z M8,1C6.9,1,6,1.9,6,3 s0.9,2,2,2s2-0.9,2-2S9.1,1,8,1z M9,19h12v-2H9V19z M19.5,16c0.83,0,1.5-0.67,1.5-1.5c0-0.83-0.67-1.5-1.5-1.5S18,13.67,18,14.5 C18,15.33,18.67,16,19.5,16z M13,12c0-0.55-0.45-1-1-1H9v2h2v1c0,1.1,0.9,2,2,2h2c1.1,0,2-0.9,2-2v-3h-2v2h-2V12z"},"children":[]}]}]}]};exports.ic_baby_changing_station=ic_baby_changing_station;var ic_baby_changing_station_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M14,8v2h-3L8.31,8.82L7,12.75V22H3V12l1.58-4.63C4.96,6.25,6.22,5.69,7.3,6.18l4.15,1.83L14,8z M8,1C6.9,1,6,1.9,6,3 s0.9,2,2,2s2-0.9,2-2S9.1,1,8,1z M9,19h12v-2H9V19z M19.5,16c0.83,0,1.5-0.67,1.5-1.5c0-0.83-0.67-1.5-1.5-1.5S18,13.67,18,14.5 C18,15.33,18.67,16,19.5,16z M13,12c0-0.55-0.45-1-1-1H9v2h2v1c0,1.1,0.9,2,2,2h2c1.1,0,2-0.9,2-2v-3h-2v2h-2V12z"},"children":[{"name":"path","attribs":{"d":"M14,8v2h-3L8.31,8.82L7,12.75V22H3V12l1.58-4.63C4.96,6.25,6.22,5.69,7.3,6.18l4.15,1.83L14,8z M8,1C6.9,1,6,1.9,6,3 s0.9,2,2,2s2-0.9,2-2S9.1,1,8,1z M9,19h12v-2H9V19z M19.5,16c0.83,0,1.5-0.67,1.5-1.5c0-0.83-0.67-1.5-1.5-1.5S18,13.67,18,14.5 C18,15.33,18.67,16,19.5,16z M13,12c0-0.55-0.45-1-1-1H9v2h2v1c0,1.1,0.9,2,2,2h2c1.1,0,2-0.9,2-2v-3h-2v2h-2V12z"},"children":[]}]}]}]};exports.ic_baby_changing_station_outline=ic_baby_changing_station_outline;var ic_baby_changing_station_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M14,8v2h-3L8.31,8.82L7,12.75V22H3V12l1.58-4.63C4.96,6.25,6.22,5.69,7.3,6.18l4.15,1.83L14,8z M8,1C6.9,1,6,1.9,6,3 s0.9,2,2,2s2-0.9,2-2S9.1,1,8,1z M9,19h12v-2H9V19z M19.5,16c0.83,0,1.5-0.67,1.5-1.5c0-0.83-0.67-1.5-1.5-1.5S18,13.67,18,14.5 C18,15.33,18.67,16,19.5,16z M13,12c0-0.55-0.45-1-1-1H9v2h2v1c0,1.1,0.9,2,2,2h2c1.1,0,2-0.9,2-2v-3h-2v2h-2V12z"},"children":[{"name":"path","attribs":{"d":"M14,8v2h-3L8.31,8.82L7,12.75V22H3V12l1.58-4.63C4.96,6.25,6.22,5.69,7.3,6.18l4.15,1.83L14,8z M8,1C6.9,1,6,1.9,6,3 s0.9,2,2,2s2-0.9,2-2S9.1,1,8,1z M9,19h12v-2H9V19z M19.5,16c0.83,0,1.5-0.67,1.5-1.5c0-0.83-0.67-1.5-1.5-1.5S18,13.67,18,14.5 C18,15.33,18.67,16,19.5,16z M13,12c0-0.55-0.45-1-1-1H9v2h2v1c0,1.1,0.9,2,2,2h2c1.1,0,2-0.9,2-2v-3h-2v2h-2V12z"},"children":[]}]}]}]};exports.ic_baby_changing_station_twotone=ic_baby_changing_station_twotone;var ic_backpack={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","y":"0"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","y":"0"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M20,8v12c0,1.1-0.9,2-2,2H6c-1.1,0-2-0.9-2-2V8c0-1.86,1.28-3.41,3-3.86V2h3v2h4V2h3v2.14C18.72,4.59,20,6.14,20,8z M6,12v2h10v2h2v-4H6z"},"children":[{"name":"path","attribs":{"d":"M20,8v12c0,1.1-0.9,2-2,2H6c-1.1,0-2-0.9-2-2V8c0-1.86,1.28-3.41,3-3.86V2h3v2h4V2h3v2.14C18.72,4.59,20,6.14,20,8z M6,12v2h10v2h2v-4H6z"},"children":[]}]}]}]}]}]}]}]};exports.ic_backpack=ic_backpack;var ic_backpack_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M17,4.14V2h-3v2h-4V2H7v2.14C5.28,4.59,4,6.14,4,8v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8C20,6.14,18.72,4.59,17,4.14z M18,20H6V8c0-1.1,0.9-2,2-2h8c1.1,0,2,0.9,2,2V20z M16.5,12v4h-2v-2h-7v-2H16.5z"},"children":[{"name":"path","attribs":{"d":"M17,4.14V2h-3v2h-4V2H7v2.14C5.28,4.59,4,6.14,4,8v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8C20,6.14,18.72,4.59,17,4.14z M18,20H6V8c0-1.1,0.9-2,2-2h8c1.1,0,2,0.9,2,2V20z M16.5,12v4h-2v-2h-7v-2H16.5z"},"children":[]}]},{"name":"path","attribs":{"d":"M0,0v24h24V0H0z","fill":"none"},"children":[{"name":"path","attribs":{"d":"M0,0v24h24V0H0z","fill":"none"},"children":[]}]}]}]};exports.ic_backpack_outline=ic_backpack_outline;var ic_backpack_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M18,20H6V8c0-1.1,0.9-2,2-2h8c1.1,0,2,0.9,2,2V20z M7.5,12v2h7v2h2v-4H7.5z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M18,20H6V8c0-1.1,0.9-2,2-2h8c1.1,0,2,0.9,2,2V20z M7.5,12v2h7v2h2v-4H7.5z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M17,4.14V2h-3v2h-4V2H7v2.14C5.28,4.59,4,6.14,4,8v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8C20,6.14,18.72,4.59,17,4.14z M18,20H6V8c0-1.1,0.9-2,2-2h8c1.1,0,2,0.9,2,2V20z M7.5,12v2h7v2h2v-4H7.5z"},"children":[{"name":"path","attribs":{"d":"M17,4.14V2h-3v2h-4V2H7v2.14C5.28,4.59,4,6.14,4,8v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8C20,6.14,18.72,4.59,17,4.14z M18,20H6V8c0-1.1,0.9-2,2-2h8c1.1,0,2,0.9,2,2V20z M7.5,12v2h7v2h2v-4H7.5z"},"children":[]}]}]}]};exports.ic_backpack_twotone=ic_backpack_twotone;var ic_bathtub={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"cx":"7","cy":"7","r":"2"},"children":[{"name":"circle","attribs":{"cx":"7","cy":"7","r":"2"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M20,13V4.83C20,3.27,18.73,2,17.17,2c-0.75,0-1.47,0.3-2,0.83l-1.25,1.25C13.76,4.03,13.59,4,13.41,4 c-0.4,0-0.77,0.12-1.08,0.32l2.76,2.76c0.2-0.31,0.32-0.68,0.32-1.08c0-0.18-0.03-0.34-0.07-0.51l1.25-1.25 C16.74,4.09,16.95,4,17.17,4C17.63,4,18,4.37,18,4.83V13h-6.85c-0.3-0.21-0.57-0.45-0.82-0.72l-1.4-1.55 c-0.19-0.21-0.43-0.38-0.69-0.5C7.93,10.08,7.59,10,7.24,10C6,10.01,5,11.01,5,12.25V13H2v6c0,1.1,0.9,2,2,2c0,0.55,0.45,1,1,1 h14c0.55,0,1-0.45,1-1c1.1,0,2-0.9,2-2v-6H20z"},"children":[{"name":"path","attribs":{"d":"M20,13V4.83C20,3.27,18.73,2,17.17,2c-0.75,0-1.47,0.3-2,0.83l-1.25,1.25C13.76,4.03,13.59,4,13.41,4 c-0.4,0-0.77,0.12-1.08,0.32l2.76,2.76c0.2-0.31,0.32-0.68,0.32-1.08c0-0.18-0.03-0.34-0.07-0.51l1.25-1.25 C16.74,4.09,16.95,4,17.17,4C17.63,4,18,4.37,18,4.83V13h-6.85c-0.3-0.21-0.57-0.45-0.82-0.72l-1.4-1.55 c-0.19-0.21-0.43-0.38-0.69-0.5C7.93,10.08,7.59,10,7.24,10C6,10.01,5,11.01,5,12.25V13H2v6c0,1.1,0.9,2,2,2c0,0.55,0.45,1,1,1 h14c0.55,0,1-0.45,1-1c1.1,0,2-0.9,2-2v-6H20z"},"children":[]}]}]}]}]}]}]}]};exports.ic_bathtub=ic_bathtub;var ic_bathtub_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"cx":"7","cy":"7","r":"2"},"children":[{"name":"circle","attribs":{"cx":"7","cy":"7","r":"2"},"children":[]}]},{"name":"path","attribs":{"d":"M20,13V4.83C20,3.27,18.73,2,17.17,2c-0.75,0-1.47,0.3-2,0.83l-1.25,1.25C13.76,4.03,13.59,4,13.41,4 c-0.4,0-0.77,0.12-1.08,0.32l2.76,2.76c0.2-0.31,0.32-0.68,0.32-1.08c0-0.18-0.03-0.34-0.07-0.51l1.25-1.25 C16.74,4.09,16.95,4,17.17,4C17.63,4,18,4.37,18,4.83V13h-6.85c-0.3-0.21-0.57-0.45-0.82-0.72l-1.4-1.55 c-0.19-0.21-0.43-0.38-0.69-0.5C7.93,10.08,7.59,10,7.24,10C6,10.01,5,11.01,5,12.25V13H2v6c0,1.1,0.9,2,2,2c0,0.55,0.45,1,1,1h14 c0.55,0,1-0.45,1-1c1.1,0,2-0.9,2-2v-6H20z M20,19H4v-4h16V19z"},"children":[{"name":"path","attribs":{"d":"M20,13V4.83C20,3.27,18.73,2,17.17,2c-0.75,0-1.47,0.3-2,0.83l-1.25,1.25C13.76,4.03,13.59,4,13.41,4 c-0.4,0-0.77,0.12-1.08,0.32l2.76,2.76c0.2-0.31,0.32-0.68,0.32-1.08c0-0.18-0.03-0.34-0.07-0.51l1.25-1.25 C16.74,4.09,16.95,4,17.17,4C17.63,4,18,4.37,18,4.83V13h-6.85c-0.3-0.21-0.57-0.45-0.82-0.72l-1.4-1.55 c-0.19-0.21-0.43-0.38-0.69-0.5C7.93,10.08,7.59,10,7.24,10C6,10.01,5,11.01,5,12.25V13H2v6c0,1.1,0.9,2,2,2c0,0.55,0.45,1,1,1h14 c0.55,0,1-0.45,1-1c1.1,0,2-0.9,2-2v-6H20z M20,19H4v-4h16V19z"},"children":[]}]}]}]}]}]};exports.ic_bathtub_outline=ic_bathtub_outline;var ic_bathtub_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"height":"4","opacity":".3","width":"16","x":"4","y":"15"},"children":[{"name":"rect","attribs":{"height":"4","opacity":".3","width":"16","x":"4","y":"15"},"children":[]}]},{"name":"circle","attribs":{"cx":"7","cy":"7","r":"2"},"children":[{"name":"circle","attribs":{"cx":"7","cy":"7","r":"2"},"children":[]}]},{"name":"path","attribs":{"d":"M20,13V4.83C20,3.27,18.73,2,17.17,2c-0.75,0-1.47,0.3-2,0.83l-1.25,1.25C13.76,4.03,13.59,4,13.41,4 c-0.4,0-0.77,0.12-1.08,0.32l2.76,2.76c0.2-0.31,0.32-0.68,0.32-1.08c0-0.18-0.03-0.34-0.07-0.51l1.25-1.25 C16.74,4.09,16.95,4,17.17,4C17.63,4,18,4.37,18,4.83V13h-6.85c-0.3-0.21-0.57-0.45-0.82-0.72l-1.4-1.55 c-0.19-0.21-0.43-0.38-0.69-0.5C7.93,10.08,7.59,10,7.24,10C6,10.01,5,11.01,5,12.25V13H2v6c0,1.1,0.9,2,2,2c0,0.55,0.45,1,1,1h14 c0.55,0,1-0.45,1-1c1.1,0,2-0.9,2-2v-6H20z M20,19H4v-4h16V19z"},"children":[{"name":"path","attribs":{"d":"M20,13V4.83C20,3.27,18.73,2,17.17,2c-0.75,0-1.47,0.3-2,0.83l-1.25,1.25C13.76,4.03,13.59,4,13.41,4 c-0.4,0-0.77,0.12-1.08,0.32l2.76,2.76c0.2-0.31,0.32-0.68,0.32-1.08c0-0.18-0.03-0.34-0.07-0.51l1.25-1.25 C16.74,4.09,16.95,4,17.17,4C17.63,4,18,4.37,18,4.83V13h-6.85c-0.3-0.21-0.57-0.45-0.82-0.72l-1.4-1.55 c-0.19-0.21-0.43-0.38-0.69-0.5C7.93,10.08,7.59,10,7.24,10C6,10.01,5,11.01,5,12.25V13H2v6c0,1.1,0.9,2,2,2c0,0.55,0.45,1,1,1h14 c0.55,0,1-0.45,1-1c1.1,0,2-0.9,2-2v-6H20z M20,19H4v-4h16V19z"},"children":[]}]}]}]}]}]};exports.ic_bathtub_twotone=ic_bathtub_twotone;var ic_beach_access={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13.127 14.56l1.43-1.43 6.44 6.443L19.57 21zm4.293-5.73l2.86-2.86c-3.95-3.95-10.35-3.96-14.3-.02 3.93-1.3 8.31-.25 11.44 2.88zM5.95 5.98c-3.94 3.95-3.93 10.35.02 14.3l2.86-2.86C5.7 14.29 4.65 9.91 5.95 5.98zm.02-.02l-.01.01c-.38 3.01 1.17 6.88 4.3 10.02l5.73-5.73c-3.13-3.13-7.01-4.68-10.02-4.3z"},"children":[]}]};exports.ic_beach_access=ic_beach_access;var ic_beach_access_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M21 19.57l-1.427 1.428-6.442-6.442 1.43-1.428zM13.12 3c-2.58 0-5.16.98-7.14 2.95l-.01.01c-3.95 3.95-3.95 10.36 0 14.31l14.3-14.31C18.3 3.99 15.71 3 13.12 3zM6.14 17.27C5.4 16.03 5 14.61 5 13.12c0-.93.16-1.82.46-2.67.19 1.91.89 3.79 2.07 5.44l-1.39 1.38zm2.84-2.84C7.63 12.38 7.12 9.93 7.6 7.6c.58-.12 1.16-.18 1.75-.18 1.8 0 3.55.55 5.08 1.56l-5.45 5.45zm1.47-8.97c.85-.3 1.74-.46 2.67-.46 1.49 0 2.91.4 4.15 1.14l-1.39 1.39c-1.65-1.18-3.52-1.88-5.43-2.07z"},"children":[]}]};exports.ic_beach_access_outline=ic_beach_access_outline;var ic_beach_access_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7.6 7.6c-.47 2.34.03 4.78 1.39 6.83l5.45-5.45c-1.53-1.02-3.28-1.56-5.08-1.56-.6 0-1.19.06-1.76.18zM13.12 5c-.93 0-1.82.16-2.67.46 1.91.19 3.79.89 5.44 2.07l1.39-1.39C16.03 5.4 14.61 5 13.12 5zM5 13.12c0 1.49.4 2.91 1.14 4.15l1.39-1.39c-1.18-1.65-1.88-3.52-2.07-5.44-.3.86-.46 1.76-.46 2.68z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M13.126 14.56l1.428-1.428 6.442 6.442-1.43 1.428zM13.12 3c-2.58 0-5.16.98-7.14 2.95l-.01.01c-3.95 3.95-3.95 10.36 0 14.31l14.3-14.31C18.3 3.99 15.71 3 13.12 3zM6.14 17.27C5.4 16.03 5 14.61 5 13.12c0-.93.16-1.82.46-2.67.19 1.91.89 3.79 2.07 5.44l-1.39 1.38zm2.84-2.84C7.63 12.38 7.12 9.93 7.6 7.6c.58-.12 1.16-.18 1.75-.18 1.8 0 3.55.55 5.08 1.56l-5.45 5.45zm1.47-8.97c.85-.3 1.74-.46 2.67-.46 1.49 0 2.91.4 4.15 1.14l-1.39 1.39c-1.65-1.18-3.52-1.88-5.43-2.07z"},"children":[]}]};exports.ic_beach_access_twotone=ic_beach_access_twotone;var ic_bento={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M16,11V5h4c1.1,0,2,0.9,2,2v4H16z M20,19c1.1,0,2-0.9,2-2v-4h-6v6H20z M14,5v14H4c-1.1,0-2-0.9-2-2V7c0-1.1,0.9-2,2-2H14z M9.5,12c0-0.83-0.67-1.5-1.5-1.5S6.5,11.17,6.5,12s0.67,1.5,1.5,1.5S9.5,12.83,9.5,12z"},"children":[{"name":"path","attribs":{"d":"M16,11V5h4c1.1,0,2,0.9,2,2v4H16z M20,19c1.1,0,2-0.9,2-2v-4h-6v6H20z M14,5v14H4c-1.1,0-2-0.9-2-2V7c0-1.1,0.9-2,2-2H14z M9.5,12c0-0.83-0.67-1.5-1.5-1.5S6.5,11.17,6.5,12s0.67,1.5,1.5,1.5S9.5,12.83,9.5,12z"},"children":[]}]}]}]};exports.ic_bento=ic_bento;var ic_bento_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M20,5H4C2.9,5,2,5.9,2,7v10c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V7C22,5.9,21.1,5,20,5z M20,11h-6V7h6V11z M4,7h8v10H4V7z M14,17v-4h6v4H14z M9.5,12c0,0.83-0.67,1.5-1.5,1.5S6.5,12.83,6.5,12s0.67-1.5,1.5-1.5S9.5,11.17,9.5,12z"},"children":[{"name":"path","attribs":{"d":"M20,5H4C2.9,5,2,5.9,2,7v10c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V7C22,5.9,21.1,5,20,5z M20,11h-6V7h6V11z M4,7h8v10H4V7z M14,17v-4h6v4H14z M9.5,12c0,0.83-0.67,1.5-1.5,1.5S6.5,12.83,6.5,12s0.67-1.5,1.5-1.5S9.5,11.17,9.5,12z"},"children":[]}]}]}]};exports.ic_bento_outline=ic_bento_outline;var ic_bento_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"g","attribs":{"opacity":".3"},"children":[{"name":"path","attribs":{"d":"M4,17h8V7H4V17z M8,10.5c0.83,0,1.5,0.67,1.5,1.5S8.83,13.5,8,13.5S6.5,12.83,6.5,12S7.17,10.5,8,10.5z M14,13h6v4h-6V13z M20,7v4h-6V7H20z"},"children":[{"name":"path","attribs":{"d":"M4,17h8V7H4V17z M8,10.5c0.83,0,1.5,0.67,1.5,1.5S8.83,13.5,8,13.5S6.5,12.83,6.5,12S7.17,10.5,8,10.5z M14,13h6v4h-6V13z M20,7v4h-6V7H20z"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M20,5H4C2.9,5,2,5.9,2,7v10c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V7C22,5.9,21.1,5,20,5z M20,11h-6V7h6V11z M4,7h8v10H4V7z M14,17v-4h6v4H14z M9.5,12c0,0.83-0.67,1.5-1.5,1.5S6.5,12.83,6.5,12s0.67-1.5,1.5-1.5S9.5,11.17,9.5,12z"},"children":[{"name":"path","attribs":{"d":"M20,5H4C2.9,5,2,5.9,2,7v10c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V7C22,5.9,21.1,5,20,5z M20,11h-6V7h6V11z M4,7h8v10H4V7z M14,17v-4h6v4H14z M9.5,12c0,0.83-0.67,1.5-1.5,1.5S6.5,12.83,6.5,12s0.67-1.5,1.5-1.5S9.5,11.17,9.5,12z"},"children":[]}]}]}]};exports.ic_bento_twotone=ic_bento_twotone;var ic_business_center={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0zm10 5h4v2h-4zm0 0h4v2h-4z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 16v-1H3.01L3 19c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2v-4h-7v1h-4zm10-9h-4.01V5l-2-2h-4l-2 2v2H4c-1.1 0-2 .9-2 2v3c0 1.11.89 2 2 2h6v-2h4v2h6c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zm-6 0h-4V5h4v2z"},"children":[]}]};exports.ic_business_center=ic_business_center;var ic_business_center_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 7h-4V5l-2-2h-4L8 5v2H4c-1.1 0-2 .9-2 2v5c0 .75.4 1.38 1 1.73V19c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2v-3.28c.59-.35 1-.99 1-1.72V9c0-1.1-.9-2-2-2zM10 5h4v2h-4V5zM4 9h16v5h-5v-3H9v3H4V9zm9 6h-2v-2h2v2zm6 4H5v-3h4v1h6v-1h4v3z"},"children":[]}]};exports.ic_business_center_outline=ic_business_center_outline;var ic_business_center_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15 17H9v-1H5v3h14v-3h-4zM4 14h5v-3h6v3h5V9H4z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 7h-4V5l-2-2h-4L8 5v2H4c-1.1 0-2 .9-2 2v5c0 .75.4 1.38 1 1.73V19c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2v-3.28c.59-.35 1-.99 1-1.72V9c0-1.1-.9-2-2-2zM10 5h4v2h-4V5zm9 14H5v-3h4v1h6v-1h4v3zm-8-4v-2h2v2h-2zm9-1h-5v-3H9v3H4V9h16v5z"},"children":[]}]};exports.ic_business_center_twotone=ic_business_center_twotone;var ic_carpenter={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M19.73,14.23L7,1.5L3.11,5.39l8.13,11.67c-0.78,0.78-0.78,2.05,0,2.83l1.41,1.41c0.78,0.78,2.05,0.78,2.83,0l4.24-4.24 C20.51,16.28,20.51,15.01,19.73,14.23z M14.07,19.88l-1.41-1.41l4.24-4.24l1.41,1.41L14.07,19.88z"},"children":[]}]};exports.ic_carpenter=ic_carpenter;var ic_carpenter_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M19.73,14.23L7,1.5L3.11,5.39l8.13,11.67c-0.78,0.78-0.78,2.05,0,2.83l1.41,1.41c0.78,0.78,2.05,0.78,2.83,0l4.24-4.24 C20.51,16.28,20.51,15.01,19.73,14.23z M5.71,5.62L7,4.33l8.49,8.49l-2.81,2.81L5.71,5.62z M14.07,19.88l-1.41-1.41l4.24-4.24 l1.41,1.41L14.07,19.88z"},"children":[]}]};exports.ic_carpenter_outline=ic_carpenter_outline;var ic_carpenter_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M5.71,5.62L7,4.33l8.49,8.49l-2.81,2.81L5.71,5.62z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M19.73,14.23L7,1.5L3.11,5.39l8.13,11.67c-0.78,0.78-0.78,2.05,0,2.83l1.41,1.41c0.78,0.78,2.05,0.78,2.83,0l4.24-4.24 C20.51,16.28,20.51,15.01,19.73,14.23z M5.71,5.62L7,4.33l8.49,8.49l-2.81,2.81L5.71,5.62z M14.07,19.88l-1.41-1.41l4.24-4.24 l1.41,1.41L14.07,19.88z"},"children":[]}]};exports.ic_carpenter_twotone=ic_carpenter_twotone;var ic_casino={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0zm21.02 19c0 1.1-.9 2-2 2h-14c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2h14c1.1 0 2 .9 2 2v14z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM7.5 18c-.83 0-1.5-.67-1.5-1.5S6.67 15 7.5 15s1.5.67 1.5 1.5S8.33 18 7.5 18zm0-9C6.67 9 6 8.33 6 7.5S6.67 6 7.5 6 9 6.67 9 7.5 8.33 9 7.5 9zm4.5 4.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm4.5 4.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm0-9c-.83 0-1.5-.67-1.5-1.5S15.67 6 16.5 6s1.5.67 1.5 1.5S17.33 9 16.5 9z"},"children":[]}]};exports.ic_casino=ic_casino;var ic_casino_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z"},"children":[]},{"name":"circle","attribs":{"cx":"7.5","cy":"16.5","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"7.5","cy":"7.5","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"12","cy":"12","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"16.5","cy":"16.5","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"16.5","cy":"7.5","r":"1.5"},"children":[]}]};exports.ic_casino_outline=ic_casino_outline;var ic_casino_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 19h14V5H5v14zM16.5 6c.83 0 1.5.67 1.5 1.5S17.33 9 16.5 9 15 8.33 15 7.5 15.67 6 16.5 6zm0 9c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zM12 10.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zM7.5 6C8.33 6 9 6.67 9 7.5S8.33 9 7.5 9 6 8.33 6 7.5 6.67 6 7.5 6zm0 9c.83 0 1.5.67 1.5 1.5S8.33 18 7.5 18 6 17.33 6 16.5 6.67 15 7.5 15z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z"},"children":[]},{"name":"circle","attribs":{"cx":"7.5","cy":"16.5","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"7.5","cy":"7.5","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"12","cy":"12","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"16.5","cy":"16.5","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"16.5","cy":"7.5","r":"1.5"},"children":[]}]};exports.ic_casino_twotone=ic_casino_twotone;var ic_charging_station={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M14.5,11l-3,6v-4h-2l3-6v4H14.5z M7,1h10c1.1,0,2,0.9,2,2v18c0,1.1-0.9,2-2,2H7c-1.1,0-2-0.9-2-2V3C5,1.9,5.9,1,7,1z M7,6 v12h10V6H7z"},"children":[{"name":"path","attribs":{"d":"M14.5,11l-3,6v-4h-2l3-6v4H14.5z M7,1h10c1.1,0,2,0.9,2,2v18c0,1.1-0.9,2-2,2H7c-1.1,0-2-0.9-2-2V3C5,1.9,5.9,1,7,1z M7,6 v12h10V6H7z"},"children":[]}]}]}]};exports.ic_charging_station=ic_charging_station;var ic_charging_station_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M14.5,11l-3,6v-4h-2l3-6v4H14.5z M17,3H7v1h10V3 M17,20H7v1h10V20 M17,1c1.1,0,2,0.9,2,2v18c0,1.1-0.9,2-2,2H7 c-1.1,0-2-0.9-2-2V3c0-1.1,0.9-2,2-2H17L17,1z M7,18h10V6H7V18L7,18z"},"children":[{"name":"path","attribs":{"d":"M14.5,11l-3,6v-4h-2l3-6v4H14.5z M17,3H7v1h10V3 M17,20H7v1h10V20 M17,1c1.1,0,2,0.9,2,2v18c0,1.1-0.9,2-2,2H7 c-1.1,0-2-0.9-2-2V3c0-1.1,0.9-2,2-2H17L17,1z M7,18h10V6H7V18L7,18z"},"children":[]}]}]}]};exports.ic_charging_station_outline=ic_charging_station_outline;var ic_charging_station_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M17,3v1H7V3H17 M17,20H7v1h10V20","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M17,3v1H7V3H17 M17,20H7v1h10V20","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M14.5,11l-3,6v-4h-2l3-6v4H14.5z M17,3H7v1h10V3 M17,20H7v1h10V20 M17,1c1.1,0,2,0.9,2,2v18c0,1.1-0.9,2-2,2H7 c-1.1,0-2-0.9-2-2V3c0-1.1,0.9-2,2-2H17L17,1z M7,18h10V6H7V18L7,18z"},"children":[{"name":"path","attribs":{"d":"M14.5,11l-3,6v-4h-2l3-6v4H14.5z M17,3H7v1h10V3 M17,20H7v1h10V20 M17,1c1.1,0,2,0.9,2,2v18c0,1.1-0.9,2-2,2H7 c-1.1,0-2-0.9-2-2V3c0-1.1,0.9-2,2-2H17L17,1z M7,18h10V6H7V18L7,18z"},"children":[]}]}]}]};exports.ic_charging_station_twotone=ic_charging_station_twotone;var ic_checkroom={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M21.6,18.2L13,11.75v-0.91c1.65-0.49,2.8-2.17,2.43-4.05c-0.26-1.31-1.3-2.4-2.61-2.7C10.54,3.57,8.5,5.3,8.5,7.5h2 C10.5,6.67,11.17,6,12,6s1.5,0.67,1.5,1.5c0,0.84-0.69,1.52-1.53,1.5C11.43,8.99,11,9.45,11,9.99v1.76L2.4,18.2 C1.63,18.78,2.04,20,3,20h9h9C21.96,20,22.37,18.78,21.6,18.2z M6,18l6-4.5l6,4.5H6z"},"children":[{"name":"path","attribs":{"d":"M21.6,18.2L13,11.75v-0.91c1.65-0.49,2.8-2.17,2.43-4.05c-0.26-1.31-1.3-2.4-2.61-2.7C10.54,3.57,8.5,5.3,8.5,7.5h2 C10.5,6.67,11.17,6,12,6s1.5,0.67,1.5,1.5c0,0.84-0.69,1.52-1.53,1.5C11.43,8.99,11,9.45,11,9.99v1.76L2.4,18.2 C1.63,18.78,2.04,20,3,20h9h9C21.96,20,22.37,18.78,21.6,18.2z M6,18l6-4.5l6,4.5H6z"},"children":[]}]}]}]};exports.ic_checkroom=ic_checkroom;var ic_checkroom_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M21.6,18.2L13,11.75v-0.91c1.65-0.49,2.8-2.17,2.43-4.05c-0.26-1.31-1.3-2.4-2.61-2.7C10.54,3.57,8.5,5.3,8.5,7.5h2 C10.5,6.67,11.17,6,12,6s1.5,0.67,1.5,1.5c0,0.84-0.69,1.52-1.53,1.5C11.43,8.99,11,9.45,11,9.99v1.76L2.4,18.2 C1.63,18.78,2.04,20,3,20h9h9C21.96,20,22.37,18.78,21.6,18.2z M6,18l6-4.5l6,4.5H6z"},"children":[{"name":"path","attribs":{"d":"M21.6,18.2L13,11.75v-0.91c1.65-0.49,2.8-2.17,2.43-4.05c-0.26-1.31-1.3-2.4-2.61-2.7C10.54,3.57,8.5,5.3,8.5,7.5h2 C10.5,6.67,11.17,6,12,6s1.5,0.67,1.5,1.5c0,0.84-0.69,1.52-1.53,1.5C11.43,8.99,11,9.45,11,9.99v1.76L2.4,18.2 C1.63,18.78,2.04,20,3,20h9h9C21.96,20,22.37,18.78,21.6,18.2z M6,18l6-4.5l6,4.5H6z"},"children":[]}]}]}]};exports.ic_checkroom_outline=ic_checkroom_outline;var ic_checkroom_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M21.6,18.2L13,11.75v-0.91c1.65-0.49,2.8-2.17,2.43-4.05c-0.26-1.31-1.3-2.4-2.61-2.7C10.54,3.57,8.5,5.3,8.5,7.5h2 C10.5,6.67,11.17,6,12,6s1.5,0.67,1.5,1.5c0,0.84-0.69,1.52-1.53,1.5C11.43,8.99,11,9.45,11,9.99v1.76L2.4,18.2 C1.63,18.78,2.04,20,3,20h9h9C21.96,20,22.37,18.78,21.6,18.2z M6,18l6-4.5l6,4.5H6z"},"children":[{"name":"path","attribs":{"d":"M21.6,18.2L13,11.75v-0.91c1.65-0.49,2.8-2.17,2.43-4.05c-0.26-1.31-1.3-2.4-2.61-2.7C10.54,3.57,8.5,5.3,8.5,7.5h2 C10.5,6.67,11.17,6,12,6s1.5,0.67,1.5,1.5c0,0.84-0.69,1.52-1.53,1.5C11.43,8.99,11,9.45,11,9.99v1.76L2.4,18.2 C1.63,18.78,2.04,20,3,20h9h9C21.96,20,22.37,18.78,21.6,18.2z M6,18l6-4.5l6,4.5H6z"},"children":[]}]}]}]};exports.ic_checkroom_twotone=ic_checkroom_twotone;var ic_child_care={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"14.5","cy":"10.5","r":"1.25"},"children":[]},{"name":"circle","attribs":{"cx":"9.5","cy":"10.5","r":"1.25"},"children":[]},{"name":"path","attribs":{"d":"M22.94 12.66c.04-.21.06-.43.06-.66s-.02-.45-.06-.66c-.25-1.51-1.36-2.74-2.81-3.17-.53-1.12-1.28-2.1-2.19-2.91C16.36 3.85 14.28 3 12 3s-4.36.85-5.94 2.26c-.92.81-1.67 1.8-2.19 2.91-1.45.43-2.56 1.65-2.81 3.17-.04.21-.06.43-.06.66s.02.45.06.66c.25 1.51 1.36 2.74 2.81 3.17.52 1.11 1.27 2.09 2.17 2.89C7.62 20.14 9.71 21 12 21s4.38-.86 5.97-2.28c.9-.8 1.65-1.79 2.17-2.89 1.44-.43 2.55-1.65 2.8-3.17zM19 14c-.1 0-.19-.02-.29-.03-.2.67-.49 1.29-.86 1.86C16.6 17.74 14.45 19 12 19s-4.6-1.26-5.85-3.17c-.37-.57-.66-1.19-.86-1.86-.1.01-.19.03-.29.03-1.1 0-2-.9-2-2s.9-2 2-2c.1 0 .19.02.29.03.2-.67.49-1.29.86-1.86C7.4 6.26 9.55 5 12 5s4.6 1.26 5.85 3.17c.37.57.66 1.19.86 1.86.1-.01.19-.03.29-.03 1.1 0 2 .9 2 2s-.9 2-2 2zM7.5 14c.76 1.77 2.49 3 4.5 3s3.74-1.23 4.5-3h-9z"},"children":[]}]};exports.ic_child_care=ic_child_care;var ic_child_care_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"14.5","cy":"10.5","r":"1.25"},"children":[]},{"name":"circle","attribs":{"cx":"9.5","cy":"10.5","r":"1.25"},"children":[]},{"name":"path","attribs":{"d":"M22.94 11.34c-.25-1.51-1.36-2.74-2.81-3.17-.53-1.12-1.28-2.1-2.19-2.91C16.36 3.85 14.28 3 12 3s-4.36.85-5.94 2.26c-.92.81-1.67 1.8-2.19 2.91-1.45.43-2.56 1.65-2.81 3.17-.04.21-.06.43-.06.66 0 .23.02.45.06.66.25 1.51 1.36 2.74 2.81 3.17.52 1.11 1.27 2.09 2.17 2.89C7.62 20.14 9.71 21 12 21s4.38-.86 5.97-2.28c.9-.8 1.65-1.79 2.17-2.89 1.44-.43 2.55-1.65 2.8-3.17.04-.21.06-.43.06-.66 0-.23-.02-.45-.06-.66zM19 14c-.1 0-.19-.02-.29-.03-.2.67-.49 1.29-.86 1.86C16.6 17.74 14.45 19 12 19s-4.6-1.26-5.85-3.17c-.37-.57-.66-1.19-.86-1.86-.1.01-.19.03-.29.03-1.1 0-2-.9-2-2s.9-2 2-2c.1 0 .19.02.29.03.2-.67.49-1.29.86-1.86C7.4 6.26 9.55 5 12 5s4.6 1.26 5.85 3.17c.37.57.66 1.19.86 1.86.1-.01.19-.03.29-.03 1.1 0 2 .9 2 2s-.9 2-2 2zm-7 3c2.01 0 3.74-1.23 4.5-3h-9c.76 1.77 2.49 3 4.5 3z"},"children":[]}]};exports.ic_child_care_outline=ic_child_care_outline;var ic_child_care_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 10c-.1 0-.19.02-.29.03-.2-.67-.49-1.29-.86-1.86C16.6 6.26 14.45 5 12 5S7.4 6.26 6.15 8.17c-.37.57-.66 1.19-.86 1.86-.1-.01-.19-.03-.29-.03-1.1 0-2 .9-2 2s.9 2 2 2c.1 0 .19-.02.29-.03.2.67.49 1.29.86 1.86C7.4 17.74 9.55 19 12 19s4.6-1.26 5.85-3.17c.37-.57.66-1.19.86-1.86.1.01.19.03.29.03 1.1 0 2-.9 2-2s-.9-2-2-2zm-4.5-.75c.69 0 1.25.56 1.25 1.25s-.56 1.25-1.25 1.25-1.25-.56-1.25-1.25.56-1.25 1.25-1.25zm-5 0c.69 0 1.25.56 1.25 1.25s-.56 1.25-1.25 1.25-1.25-.56-1.25-1.25.56-1.25 1.25-1.25zM12 17c-2.01 0-3.74-1.23-4.5-3h9c-.76 1.77-2.49 3-4.5 3z","opacity":".3"},"children":[]},{"name":"circle","attribs":{"cx":"14.5","cy":"10.5","r":"1.25"},"children":[]},{"name":"circle","attribs":{"cx":"9.5","cy":"10.5","r":"1.25"},"children":[]},{"name":"path","attribs":{"d":"M12 17c2.01 0 3.74-1.23 4.5-3h-9c.76 1.77 2.49 3 4.5 3zm10.94-5.66c-.25-1.51-1.36-2.74-2.81-3.17-.53-1.12-1.28-2.1-2.19-2.91C16.36 3.85 14.28 3 12 3s-4.36.85-5.94 2.26c-.92.81-1.67 1.8-2.19 2.91-1.45.43-2.56 1.65-2.81 3.17-.04.21-.06.43-.06.66 0 .23.02.45.06.66.25 1.51 1.36 2.74 2.81 3.17.52 1.11 1.27 2.09 2.17 2.89C7.62 20.14 9.71 21 12 21s4.38-.86 5.97-2.28c.9-.8 1.65-1.79 2.17-2.89 1.44-.43 2.55-1.65 2.8-3.17.04-.21.06-.43.06-.66 0-.23-.02-.45-.06-.66zM19 14c-.1 0-.19-.02-.29-.03-.2.67-.49 1.29-.86 1.86C16.6 17.74 14.45 19 12 19s-4.6-1.26-5.85-3.17c-.37-.57-.66-1.19-.86-1.86-.1.01-.19.03-.29.03-1.1 0-2-.9-2-2s.9-2 2-2c.1 0 .19.02.29.03.2-.67.49-1.29.86-1.86C7.4 6.26 9.55 5 12 5s4.6 1.26 5.85 3.17c.37.57.66 1.19.86 1.86.1-.01.19-.03.29-.03 1.1 0 2 .9 2 2s-.9 2-2 2z"},"children":[]}]};exports.ic_child_care_twotone=ic_child_care_twotone;var ic_child_friendly={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13 2v8h8c0-4.42-3.58-8-8-8zm6.32 13.89C20.37 14.54 21 12.84 21 11H6.44l-.95-2H2v2h2.22s1.89 4.07 2.12 4.42c-1.1.59-1.84 1.75-1.84 3.08C4.5 20.43 6.07 22 8 22c1.76 0 3.22-1.3 3.46-3h2.08c.24 1.7 1.7 3 3.46 3 1.93 0 3.5-1.57 3.5-3.5 0-1.04-.46-1.97-1.18-2.61zM8 20c-.83 0-1.5-.67-1.5-1.5S7.17 17 8 17s1.5.67 1.5 1.5S8.83 20 8 20zm9 0c-.83 0-1.5-.67-1.5-1.5S16.17 17 17 17s1.5.67 1.5 1.5S17.83 20 17 20z"},"children":[]}]};exports.ic_child_friendly=ic_child_friendly;var ic_child_friendly_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13 2v8h8c0-4.42-3.58-8-8-8zm2 6V4.34c1.7.6 3.05 1.95 3.66 3.66H15zm-8.56 3l-.95-2H2v2h2.22s1.89 4.07 2.12 4.42c-1.1.59-1.84 1.75-1.84 3.08C4.5 20.43 6.07 22 8 22c1.76 0 3.22-1.3 3.46-3h2.08c.24 1.7 1.7 3 3.46 3 1.93 0 3.5-1.57 3.5-3.5 0-1.04-.46-1.97-1.18-2.61C20.37 14.54 21 12.84 21 11H6.44zM8 20c-.83 0-1.5-.67-1.5-1.5S7.17 17 8 17s1.5.67 1.5 1.5S8.83 20 8 20zm9 0c-.83 0-1.5-.67-1.5-1.5S16.17 17 17 17s1.5.67 1.5 1.5S17.83 20 17 20zm.74-5.34l-.29.37c-.14-.02-.3-.03-.45-.03-1.39 0-2.6.82-3.16 2h-2.68c-.5-1.04-1.5-1.8-2.68-1.97l-.44-.67c-.1-.17-.34-.69-.67-1.36h11.29c-.21.59-.52 1.15-.92 1.66z"},"children":[]}]};exports.ic_child_friendly_outline=ic_child_friendly_outline;var ic_child_friendly_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15 4.34V8h3.66C18.05 6.3 16.7 4.95 15 4.34zM8.04 14.36l.44.67c1.19.16 2.19.92 2.68 1.97h2.68c.56-1.18 1.77-2 3.16-2 .15 0 .31.01.46.03l.29-.37c.4-.51.7-1.07.92-1.66H7.37c.32.67.57 1.19.67 1.36z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M13 2v8h8c0-4.42-3.58-8-8-8zm2 6V4.34c1.7.6 3.05 1.95 3.66 3.66H15zm-8.56 3l-.95-2H2v2h2.22s1.89 4.07 2.12 4.42c-1.1.59-1.84 1.75-1.84 3.08C4.5 20.43 6.07 22 8 22c1.76 0 3.22-1.3 3.46-3h2.08c.24 1.7 1.7 3 3.46 3 1.93 0 3.5-1.57 3.5-3.5 0-1.04-.46-1.97-1.18-2.61C20.37 14.54 21 12.84 21 11H6.44zM8 20c-.83 0-1.5-.67-1.5-1.5S7.17 17 8 17s1.5.67 1.5 1.5S8.83 20 8 20zm9 0c-.83 0-1.5-.67-1.5-1.5S16.17 17 17 17s1.5.67 1.5 1.5S17.83 20 17 20zm.74-5.34l-.29.37c-.14-.02-.3-.03-.45-.03-1.39 0-2.6.82-3.16 2h-2.68c-.5-1.04-1.5-1.8-2.68-1.97l-.44-.67c-.1-.17-.34-.69-.67-1.36h11.29c-.21.59-.52 1.15-.92 1.66z"},"children":[]}]};exports.ic_child_friendly_twotone=ic_child_friendly_twotone;var ic_corporate_fare={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M12,7V3H2v18h20V7H12z M10,19H4v-2h6V19z M10,15H4v-2h6V15z M10,11H4V9h6V11z M10,7H4V5h6V7z M20,19h-8V9h8V19z M18,11h-4v2 h4V11z M18,15h-4v2h4V15z"},"children":[]}]};exports.ic_corporate_fare=ic_corporate_fare;var ic_corporate_fare_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M12,7V3H2v18h20V7H12z M10,19H4v-2h6V19z M10,15H4v-2h6V15z M10,11H4V9h6V11z M10,7H4V5h6V7z M20,19h-8V9h8V19z M18,11h-4v2 h4V11z M18,15h-4v2h4V15z"},"children":[]}]};exports.ic_corporate_fare_outline=ic_corporate_fare_outline;var ic_corporate_fare_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M10,19H4v-2h6V19z M10,15H4v-2h6V15z M10,11H4V9h6V11z M10,7H4V5h6V7z M20,19h-8V9h8V19z M18,11h-4v2h4V11z M18,15h-4v2h4V15z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12,7V3H2v18h20V7H12z M10,19H4v-2h6V19z M10,15H4v-2h6V15z M10,11H4V9h6V11z M10,7H4V5h6V7z M20,19h-8V9h8V19z M18,11h-4v2 h4V11z M18,15h-4v2h4V15z"},"children":[]}]};exports.ic_corporate_fare_twotone=ic_corporate_fare_twotone;var ic_countertops={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M18,10V7c0-1.66-1.34-3-3-3c-1.66,0-3,1.34-3,3h2c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1v3H8c1.1,0,2-0.9,2-2V4H4v4 c0,1.1,0.9,2,2,2H2v2h2v8h16v-8h2v-2H18z M13,18h-2v-6h2V18z"},"children":[]}]};exports.ic_countertops=ic_countertops;var ic_countertops_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M22,10h-4V7c0-1.66-1.34-3-3-3c-1.66,0-3,1.34-3,3h2c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1v3H8c1.1,0,2-0.9,2-2V4H4v4 c0,1.1,0.9,2,2,2H2v2h2v8h16v-8h2V10z M6,6h2v2H6V6z M6,18v-6h5v6H6z M18,18h-5v-6h5V18z"},"children":[]}]};exports.ic_countertops_outline=ic_countertops_outline;var ic_countertops_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M6,6h2v2H6V6z M6,18v-6h5v6H6z M18,18h-5v-6h5V18z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M22,10h-4V7c0-1.66-1.34-3-3-3c-1.66,0-3,1.34-3,3h2c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1v3H8c1.1,0,2-0.9,2-2V4H4v4 c0,1.1,0.9,2,2,2H2v2h2v8h16v-8h2V10z M6,6h2v2H6V6z M6,18v-6h5v6H6z M18,18h-5v-6h5V18z"},"children":[]}]};exports.ic_countertops_twotone=ic_countertops_twotone;var ic_do_not_step={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M1.39,4.22l7.9,7.9c0.18,0.2,0.18,0.5-0.01,0.7c-0.1,0.1-0.23,0.15-0.35,0.15s-0.26-0.05-0.35-0.15L6.87,11.1 c-0.11,0.4-0.26,0.78-0.45,1.12l1.4,1.4c0.2,0.2,0.2,0.51,0,0.71c-0.1,0.1-0.23,0.15-0.35,0.15s-0.26-0.05-0.35-0.15l-1.27-1.27 c-0.24,0.29-0.5,0.56-0.77,0.8l1.28,1.28c0.2,0.2,0.2,0.51,0,0.71C6.26,15.95,6.13,16,6,16s-0.26-0.05-0.35-0.15l-1.38-1.38 c-0.69,0.46-1.39,0.79-1.97,1.02C1.52,15.8,1,16.53,1,17.37V20h9.5l3.33-3.33l5.94,5.94l1.41-1.41L2.81,2.81L1.39,4.22z M18.51,15.68l-1.41-1.41l4.48-4.48L23,11.2L18.51,15.68z M20.88,9.08l-4.48,4.48L9.3,6.47L13.8,2L20.88,9.08z"},"children":[{"name":"path","attribs":{"d":"M1.39,4.22l7.9,7.9c0.18,0.2,0.18,0.5-0.01,0.7c-0.1,0.1-0.23,0.15-0.35,0.15s-0.26-0.05-0.35-0.15L6.87,11.1 c-0.11,0.4-0.26,0.78-0.45,1.12l1.4,1.4c0.2,0.2,0.2,0.51,0,0.71c-0.1,0.1-0.23,0.15-0.35,0.15s-0.26-0.05-0.35-0.15l-1.27-1.27 c-0.24,0.29-0.5,0.56-0.77,0.8l1.28,1.28c0.2,0.2,0.2,0.51,0,0.71C6.26,15.95,6.13,16,6,16s-0.26-0.05-0.35-0.15l-1.38-1.38 c-0.69,0.46-1.39,0.79-1.97,1.02C1.52,15.8,1,16.53,1,17.37V20h9.5l3.33-3.33l5.94,5.94l1.41-1.41L2.81,2.81L1.39,4.22z M18.51,15.68l-1.41-1.41l4.48-4.48L23,11.2L18.51,15.68z M20.88,9.08l-4.48,4.48L9.3,6.47L13.8,2L20.88,9.08z"},"children":[]}]}]}]};exports.ic_do_not_step=ic_do_not_step;var ic_do_not_step_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M18.51,15.68l-1.41-1.41l4.48-4.48L23,11.2L18.51,15.68z M14.98,12.15 M14.98,12.15l3.07-3.07L13.8,4.82l-3.08,3.07 L9.3,6.47L13.8,2l0,0l7.08,7.08l-4.48,4.48L14.98,12.15z M21.18,21.2l-1.41,1.41l-5.94-5.94L10.5,20H1v-2.63 c0-0.84,0.52-1.57,1.3-1.88c0.58-0.23,1.28-0.56,1.97-1.02l1.38,1.38C5.74,15.95,5.87,16,6,16s0.26-0.05,0.36-0.15 c0.2-0.2,0.2-0.51,0-0.71l-1.28-1.28c0.27-0.24,0.53-0.51,0.77-0.8l1.27,1.27c0.09,0.1,0.23,0.15,0.35,0.15s0.25-0.05,0.35-0.15 c0.2-0.2,0.2-0.51,0-0.71l-1.4-1.4c0.19-0.34,0.34-0.72,0.45-1.12l1.71,1.72c0.09,0.1,0.23,0.15,0.35,0.15s0.25-0.05,0.35-0.15 c0.19-0.2,0.19-0.5,0.01-0.7l-7.9-7.9l1.42-1.41L21.18,21.2z M12.42,15.26l-1.67-1.68L7.42,16.9c-0.78,0.78-2.05,0.78-2.83-0.01 L4.4,16.72l-0.47,0.24c-0.29,0.14-0.59,0.27-0.89,0.39L3.03,18h6.64L12.42,15.26z"},"children":[{"name":"path","attribs":{"d":"M18.51,15.68l-1.41-1.41l4.48-4.48L23,11.2L18.51,15.68z M14.98,12.15 M14.98,12.15l3.07-3.07L13.8,4.82l-3.08,3.07 L9.3,6.47L13.8,2l0,0l7.08,7.08l-4.48,4.48L14.98,12.15z M21.18,21.2l-1.41,1.41l-5.94-5.94L10.5,20H1v-2.63 c0-0.84,0.52-1.57,1.3-1.88c0.58-0.23,1.28-0.56,1.97-1.02l1.38,1.38C5.74,15.95,5.87,16,6,16s0.26-0.05,0.36-0.15 c0.2-0.2,0.2-0.51,0-0.71l-1.28-1.28c0.27-0.24,0.53-0.51,0.77-0.8l1.27,1.27c0.09,0.1,0.23,0.15,0.35,0.15s0.25-0.05,0.35-0.15 c0.2-0.2,0.2-0.51,0-0.71l-1.4-1.4c0.19-0.34,0.34-0.72,0.45-1.12l1.71,1.72c0.09,0.1,0.23,0.15,0.35,0.15s0.25-0.05,0.35-0.15 c0.19-0.2,0.19-0.5,0.01-0.7l-7.9-7.9l1.42-1.41L21.18,21.2z M12.42,15.26l-1.67-1.68L7.42,16.9c-0.78,0.78-2.05,0.78-2.83-0.01 L4.4,16.72l-0.47,0.24c-0.29,0.14-0.59,0.27-0.89,0.39L3.03,18h6.64L12.42,15.26z"},"children":[]}]}]}]};exports.ic_do_not_step_outline=ic_do_not_step_outline;var ic_do_not_step_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M14.98,12.15 M14.98,12.15l3.07-3.07L13.8,4.82l-3.08,3.07L14.98,12.15z M12.42,15.26l-1.67-1.68L7.42,16.9 c-0.78,0.78-2.05,0.78-2.83-0.01L4.4,16.72l-0.47,0.24c-0.29,0.14-0.59,0.27-0.89,0.39L3.03,18h6.64L12.42,15.26z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M14.98,12.15 M14.98,12.15l3.07-3.07L13.8,4.82l-3.08,3.07L14.98,12.15z M12.42,15.26l-1.67-1.68L7.42,16.9 c-0.78,0.78-2.05,0.78-2.83-0.01L4.4,16.72l-0.47,0.24c-0.29,0.14-0.59,0.27-0.89,0.39L3.03,18h6.64L12.42,15.26z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M18.51,15.68l-1.41-1.41l4.48-4.48L23,11.2L18.51,15.68z M14.98,12.15 M14.98,12.15l3.07-3.07L13.8,4.82l-3.08,3.07 L9.3,6.47L13.8,2l0,0l7.08,7.08l-4.48,4.48L14.98,12.15z M21.18,21.2l-1.41,1.41l-5.94-5.94L10.5,20H1v-2.63 c0-0.84,0.52-1.57,1.3-1.88c0.58-0.23,1.28-0.56,1.97-1.02l1.38,1.38C5.74,15.95,5.87,16,6,16s0.26-0.05,0.36-0.15 c0.2-0.2,0.2-0.51,0-0.71l-1.28-1.28c0.27-0.24,0.53-0.51,0.77-0.8l1.27,1.27c0.09,0.1,0.23,0.15,0.35,0.15s0.25-0.05,0.35-0.15 c0.2-0.2,0.2-0.51,0-0.71l-1.4-1.4c0.19-0.34,0.34-0.72,0.45-1.12l1.71,1.72c0.09,0.1,0.23,0.15,0.35,0.15s0.25-0.05,0.35-0.15 c0.19-0.2,0.19-0.5,0.01-0.7l-7.9-7.9l1.42-1.41L21.18,21.2z M12.42,15.26l-1.67-1.68L7.42,16.9c-0.78,0.78-2.05,0.78-2.83-0.01 L4.4,16.72l-0.47,0.24c-0.29,0.14-0.59,0.27-0.89,0.39L3.03,18h6.64L12.42,15.26z"},"children":[{"name":"path","attribs":{"d":"M18.51,15.68l-1.41-1.41l4.48-4.48L23,11.2L18.51,15.68z M14.98,12.15 M14.98,12.15l3.07-3.07L13.8,4.82l-3.08,3.07 L9.3,6.47L13.8,2l0,0l7.08,7.08l-4.48,4.48L14.98,12.15z M21.18,21.2l-1.41,1.41l-5.94-5.94L10.5,20H1v-2.63 c0-0.84,0.52-1.57,1.3-1.88c0.58-0.23,1.28-0.56,1.97-1.02l1.38,1.38C5.74,15.95,5.87,16,6,16s0.26-0.05,0.36-0.15 c0.2-0.2,0.2-0.51,0-0.71l-1.28-1.28c0.27-0.24,0.53-0.51,0.77-0.8l1.27,1.27c0.09,0.1,0.23,0.15,0.35,0.15s0.25-0.05,0.35-0.15 c0.2-0.2,0.2-0.51,0-0.71l-1.4-1.4c0.19-0.34,0.34-0.72,0.45-1.12l1.71,1.72c0.09,0.1,0.23,0.15,0.35,0.15s0.25-0.05,0.35-0.15 c0.19-0.2,0.19-0.5,0.01-0.7l-7.9-7.9l1.42-1.41L21.18,21.2z M12.42,15.26l-1.67-1.68L7.42,16.9c-0.78,0.78-2.05,0.78-2.83-0.01 L4.4,16.72l-0.47,0.24c-0.29,0.14-0.59,0.27-0.89,0.39L3.03,18h6.64L12.42,15.26z"},"children":[]}]}]}]};exports.ic_do_not_step_twotone=ic_do_not_step_twotone;var ic_do_not_touch={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M13,10.17l-2.5-2.5V2.25C10.5,1.56,11.06,1,11.75,1S13,1.56,13,2.25V10.17z M20,12.75V11V5.25C20,4.56,19.44,4,18.75,4 S17.5,4.56,17.5,5.25V11h-1V3.25C16.5,2.56,15.94,2,15.25,2S14,2.56,14,3.25v7.92l6,6V12.75z M9.5,4.25C9.5,3.56,8.94,3,8.25,3 c-0.67,0-1.2,0.53-1.24,1.18L9.5,6.67V4.25z M13,10.17l-2.5-2.5V2.25C10.5,1.56,11.06,1,11.75,1S13,1.56,13,2.25V10.17z M20,12.75 V11V5.25C20,4.56,19.44,4,18.75,4S17.5,4.56,17.5,5.25V11h-1V3.25C16.5,2.56,15.94,2,15.25,2S14,2.56,14,3.25v7.92l6,6V12.75z M9.5,4.25C9.5,3.56,8.94,3,8.25,3c-0.67,0-1.2,0.53-1.24,1.18L9.5,6.67V4.25z M21.19,21.19L2.81,2.81L1.39,4.22l5.63,5.63L7,9.83 v4.3c-1.11-0.64-2.58-1.47-2.6-1.48c-0.17-0.09-0.34-0.14-0.54-0.14c-0.26,0-0.5,0.09-0.7,0.26C3.12,12.78,2,13.88,2,13.88 l6.8,7.18c0.57,0.6,1.35,0.94,2.18,0.94H17c0.62,0,1.18-0.19,1.65-0.52l-0.02-0.02l1.15,1.15L21.19,21.19z"},"children":[{"name":"path","attribs":{"d":"M13,10.17l-2.5-2.5V2.25C10.5,1.56,11.06,1,11.75,1S13,1.56,13,2.25V10.17z M20,12.75V11V5.25C20,4.56,19.44,4,18.75,4 S17.5,4.56,17.5,5.25V11h-1V3.25C16.5,2.56,15.94,2,15.25,2S14,2.56,14,3.25v7.92l6,6V12.75z M9.5,4.25C9.5,3.56,8.94,3,8.25,3 c-0.67,0-1.2,0.53-1.24,1.18L9.5,6.67V4.25z M13,10.17l-2.5-2.5V2.25C10.5,1.56,11.06,1,11.75,1S13,1.56,13,2.25V10.17z M20,12.75 V11V5.25C20,4.56,19.44,4,18.75,4S17.5,4.56,17.5,5.25V11h-1V3.25C16.5,2.56,15.94,2,15.25,2S14,2.56,14,3.25v7.92l6,6V12.75z M9.5,4.25C9.5,3.56,8.94,3,8.25,3c-0.67,0-1.2,0.53-1.24,1.18L9.5,6.67V4.25z M21.19,21.19L2.81,2.81L1.39,4.22l5.63,5.63L7,9.83 v4.3c-1.11-0.64-2.58-1.47-2.6-1.48c-0.17-0.09-0.34-0.14-0.54-0.14c-0.26,0-0.5,0.09-0.7,0.26C3.12,12.78,2,13.88,2,13.88 l6.8,7.18c0.57,0.6,1.35,0.94,2.18,0.94H17c0.62,0,1.18-0.19,1.65-0.52l-0.02-0.02l1.15,1.15L21.19,21.19z"},"children":[]}]}]}]};exports.ic_do_not_touch=ic_do_not_touch;var ic_do_not_touch_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M2.81,2.81L1.39,4.22L7,9.83l0,4.3l-2.6-1.48c-0.17-0.09-0.34-0.14-0.54-0.14c-0.26,0-0.5,0.09-0.7,0.26L2,13.88l6.8,7.18 c0.57,0.6,1.35,0.94,2.18,0.94H17c0.62,0,1.18-0.19,1.66-0.52l1.12,1.12l1.41-1.41L2.81,2.81z M17,20h-6 c-0.39,0-0.64-0.23-0.75-0.36L6.87,16H9l0-4.17l8.14,8.14C17.09,19.98,17.05,20,17,20z M13.83,11H14V3.25C14,2.56,14.56,2,15.25,2 s1.25,0.56,1.25,1.25V11h1V5.25C17.5,4.56,18.06,4,18.75,4S20,4.56,20,5.25v11.92l-2-2V13h-2.17L13.83,11z M13,10.17V2.25 C13,1.56,12.44,1,11.75,1S10.5,1.56,10.5,2.25v5.42L13,10.17z M9.5,6.67V4.25C9.5,3.56,8.94,3,8.25,3c-0.67,0-1.2,0.53-1.24,1.18v0 L9.5,6.67z"},"children":[{"name":"path","attribs":{"d":"M2.81,2.81L1.39,4.22L7,9.83l0,4.3l-2.6-1.48c-0.17-0.09-0.34-0.14-0.54-0.14c-0.26,0-0.5,0.09-0.7,0.26L2,13.88l6.8,7.18 c0.57,0.6,1.35,0.94,2.18,0.94H17c0.62,0,1.18-0.19,1.66-0.52l1.12,1.12l1.41-1.41L2.81,2.81z M17,20h-6 c-0.39,0-0.64-0.23-0.75-0.36L6.87,16H9l0-4.17l8.14,8.14C17.09,19.98,17.05,20,17,20z M13.83,11H14V3.25C14,2.56,14.56,2,15.25,2 s1.25,0.56,1.25,1.25V11h1V5.25C17.5,4.56,18.06,4,18.75,4S20,4.56,20,5.25v11.92l-2-2V13h-2.17L13.83,11z M13,10.17V2.25 C13,1.56,12.44,1,11.75,1S10.5,1.56,10.5,2.25v5.42L13,10.17z M9.5,6.67V4.25C9.5,3.56,8.94,3,8.25,3c-0.67,0-1.2,0.53-1.24,1.18v0 L9.5,6.67z"},"children":[]}]}]}]};exports.ic_do_not_touch_outline=ic_do_not_touch_outline;var ic_do_not_touch_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M18,15.17V13h-2.17L18,15.17z M9,11.83l8.14,8.14C17.09,19.98,17.05,20,17,20h-6 c-0.39,0-0.64-0.23-0.75-0.36L6.87,16H9L9,11.83z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M18,15.17V13h-2.17L18,15.17z M9,11.83l8.14,8.14C17.09,19.98,17.05,20,17,20h-6 c-0.39,0-0.64-0.23-0.75-0.36L6.87,16H9L9,11.83z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M2.81,2.81L1.39,4.22L7,9.83l0,4.3l-2.6-1.48c-0.17-0.09-0.34-0.14-0.54-0.14c-0.26,0-0.5,0.09-0.7,0.26L2,13.88l6.8,7.18 c0.57,0.6,1.35,0.94,2.18,0.94H17c0.62,0,1.18-0.19,1.66-0.52l1.12,1.12l1.41-1.41L2.81,2.81z M17,20h-6 c-0.39,0-0.64-0.23-0.75-0.36L6.87,16H9l0-4.17l8.14,8.14C17.09,19.98,17.05,20,17,20z M13.83,11H14V3.25C14,2.56,14.56,2,15.25,2 s1.25,0.56,1.25,1.25V11h1V5.25C17.5,4.56,18.06,4,18.75,4S20,4.56,20,5.25v11.92l-2-2V13h-2.17L13.83,11z M13,10.17V2.25 C13,1.56,12.44,1,11.75,1S10.5,1.56,10.5,2.25v5.42L13,10.17z M9.5,6.67V4.25C9.5,3.56,8.94,3,8.25,3c-0.67,0-1.2,0.53-1.24,1.18v0 L9.5,6.67z"},"children":[{"name":"path","attribs":{"d":"M2.81,2.81L1.39,4.22L7,9.83l0,4.3l-2.6-1.48c-0.17-0.09-0.34-0.14-0.54-0.14c-0.26,0-0.5,0.09-0.7,0.26L2,13.88l6.8,7.18 c0.57,0.6,1.35,0.94,2.18,0.94H17c0.62,0,1.18-0.19,1.66-0.52l1.12,1.12l1.41-1.41L2.81,2.81z M17,20h-6 c-0.39,0-0.64-0.23-0.75-0.36L6.87,16H9l0-4.17l8.14,8.14C17.09,19.98,17.05,20,17,20z M13.83,11H14V3.25C14,2.56,14.56,2,15.25,2 s1.25,0.56,1.25,1.25V11h1V5.25C17.5,4.56,18.06,4,18.75,4S20,4.56,20,5.25v11.92l-2-2V13h-2.17L13.83,11z M13,10.17V2.25 C13,1.56,12.44,1,11.75,1S10.5,1.56,10.5,2.25v5.42L13,10.17z M9.5,6.67V4.25C9.5,3.56,8.94,3,8.25,3c-0.67,0-1.2,0.53-1.24,1.18v0 L9.5,6.67z"},"children":[]}]}]}]};exports.ic_do_not_touch_twotone=ic_do_not_touch_twotone;var ic_dry={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M15.65,4.86l-0.07-0.07c-0.57-0.62-0.82-1.41-0.67-2.2L15,2h-1.89l-0.06,0.43c-0.2,1.36,0.27,2.71,1.3,3.72l0.07,0.06 c0.57,0.62,0.82,1.41,0.67,2.2L14.98,9h1.91l0.06-0.43C17.16,7.21,16.68,5.86,15.65,4.86z M19.65,4.86l-0.07-0.07 c-0.57-0.62-0.82-1.41-0.67-2.2L19,2h-1.89l-0.06,0.43c-0.2,1.36,0.27,2.71,1.3,3.72l0.07,0.06c0.57,0.62,0.82,1.41,0.67,2.2 L18.98,9h1.91l0.06-0.43C21.16,7.21,20.68,5.86,19.65,4.86z M9.12,5l-7.18,6.79C1.34,12.35,1,13.14,1,13.97V20c0,1.66,1.34,3,3,3 h6.25H12h5.75c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h7.75c0.69,0,1.25-0.56,1.25-1.25S20.44,17,19.75,17H12v-1 h8.75c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h6.75c0.69,0,1.25-0.56,1.25-1.25S19.44,10,18.75,10H8.86 c0.64-1.11,1.48-2.58,1.49-2.61c0.09-0.16,0.14-0.33,0.14-0.53c0-0.26-0.09-0.5-0.26-0.7C10.22,6.12,9.12,5,9.12,5L9.12,5z"},"children":[{"name":"path","attribs":{"d":"M15.65,4.86l-0.07-0.07c-0.57-0.62-0.82-1.41-0.67-2.2L15,2h-1.89l-0.06,0.43c-0.2,1.36,0.27,2.71,1.3,3.72l0.07,0.06 c0.57,0.62,0.82,1.41,0.67,2.2L14.98,9h1.91l0.06-0.43C17.16,7.21,16.68,5.86,15.65,4.86z M19.65,4.86l-0.07-0.07 c-0.57-0.62-0.82-1.41-0.67-2.2L19,2h-1.89l-0.06,0.43c-0.2,1.36,0.27,2.71,1.3,3.72l0.07,0.06c0.57,0.62,0.82,1.41,0.67,2.2 L18.98,9h1.91l0.06-0.43C21.16,7.21,20.68,5.86,19.65,4.86z M9.12,5l-7.18,6.79C1.34,12.35,1,13.14,1,13.97V20c0,1.66,1.34,3,3,3 h6.25H12h5.75c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h7.75c0.69,0,1.25-0.56,1.25-1.25S20.44,17,19.75,17H12v-1 h8.75c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h6.75c0.69,0,1.25-0.56,1.25-1.25S19.44,10,18.75,10H8.86 c0.64-1.11,1.48-2.58,1.49-2.61c0.09-0.16,0.14-0.33,0.14-0.53c0-0.26-0.09-0.5-0.26-0.7C10.22,6.12,9.12,5,9.12,5L9.12,5z"},"children":[]}]}]}]};exports.ic_dry=ic_dry;var ic_dry_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M20.75,16c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h6.75c0.69,0,1.25-0.56,1.25-1.25 c0-0.67-0.53-1.2-1.18-1.24L8.87,10l1.48-2.6c0.09-0.17,0.14-0.34,0.14-0.54c0-0.26-0.09-0.5-0.26-0.7L9.12,5l-7.18,6.8 C1.34,12.36,1,13.15,1,13.97V20c0,1.66,1.34,3,3,3h13.75c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h7.75 c0.69,0,1.25-0.56,1.25-1.25S20.44,17,19.75,17H12v-1H20.75z M10,21H4c-0.55,0-1-0.45-1-1v-6c0-0.39,0.23-0.64,0.36-0.75L7,9.87V12 l3,0V21z M15.65,4.86l-0.07-0.07c-0.57-0.62-0.82-1.41-0.67-2.2L15,2h-1.89l-0.06,0.43c-0.2,1.36,0.27,2.71,1.3,3.72l0.07,0.06 c0.57,0.62,0.82,1.41,0.67,2.2L14.98,9h1.91l0.06-0.43C17.16,7.21,16.68,5.86,15.65,4.86z M19.65,4.86l-0.07-0.07 c-0.57-0.62-0.82-1.41-0.67-2.2L19,2h-1.89l-0.06,0.43c-0.2,1.36,0.27,2.71,1.3,3.72l0.07,0.06c0.57,0.62,0.82,1.41,0.67,2.2 L18.98,9h1.91l0.06-0.43C21.16,7.21,20.68,5.86,19.65,4.86z"},"children":[{"name":"path","attribs":{"d":"M20.75,16c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h6.75c0.69,0,1.25-0.56,1.25-1.25 c0-0.67-0.53-1.2-1.18-1.24L8.87,10l1.48-2.6c0.09-0.17,0.14-0.34,0.14-0.54c0-0.26-0.09-0.5-0.26-0.7L9.12,5l-7.18,6.8 C1.34,12.36,1,13.15,1,13.97V20c0,1.66,1.34,3,3,3h13.75c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h7.75 c0.69,0,1.25-0.56,1.25-1.25S20.44,17,19.75,17H12v-1H20.75z M10,21H4c-0.55,0-1-0.45-1-1v-6c0-0.39,0.23-0.64,0.36-0.75L7,9.87V12 l3,0V21z M15.65,4.86l-0.07-0.07c-0.57-0.62-0.82-1.41-0.67-2.2L15,2h-1.89l-0.06,0.43c-0.2,1.36,0.27,2.71,1.3,3.72l0.07,0.06 c0.57,0.62,0.82,1.41,0.67,2.2L14.98,9h1.91l0.06-0.43C17.16,7.21,16.68,5.86,15.65,4.86z M19.65,4.86l-0.07-0.07 c-0.57-0.62-0.82-1.41-0.67-2.2L19,2h-1.89l-0.06,0.43c-0.2,1.36,0.27,2.71,1.3,3.72l0.07,0.06c0.57,0.62,0.82,1.41,0.67,2.2 L18.98,9h1.91l0.06-0.43C21.16,7.21,20.68,5.86,19.65,4.86z"},"children":[]}]}]}]};exports.ic_dry_outline=ic_dry_outline;var ic_dry_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M10,21H4c-0.55,0-1-0.45-1-1v-6c0-0.39,0.23-0.64,0.36-0.75L7,9.87V12l3,0V21z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M10,21H4c-0.55,0-1-0.45-1-1v-6c0-0.39,0.23-0.64,0.36-0.75L7,9.87V12l3,0V21z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M20.75,16c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h6.75c0.69,0,1.25-0.56,1.25-1.25 c0-0.67-0.53-1.2-1.18-1.24L8.87,10l1.48-2.6c0.09-0.17,0.14-0.34,0.14-0.54c0-0.26-0.09-0.5-0.26-0.7L9.12,5l-7.18,6.8 C1.34,12.36,1,13.15,1,13.97V20c0,1.66,1.34,3,3,3h13.75c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h7.75 c0.69,0,1.25-0.56,1.25-1.25S20.44,17,19.75,17H12v-1H20.75z M10,21H4c-0.55,0-1-0.45-1-1v-6c0-0.39,0.23-0.64,0.36-0.75L7,9.87V12 l3,0V21z M15.65,4.86l-0.07-0.07c-0.57-0.62-0.82-1.41-0.67-2.2L15,2h-1.89l-0.06,0.43c-0.2,1.36,0.27,2.71,1.3,3.72l0.07,0.06 c0.57,0.62,0.82,1.41,0.67,2.2L14.98,9h1.91l0.06-0.43C17.16,7.21,16.68,5.86,15.65,4.86z M19.65,4.86l-0.07-0.07 c-0.57-0.62-0.82-1.41-0.67-2.2L19,2h-1.89l-0.06,0.43c-0.2,1.36,0.27,2.71,1.3,3.72l0.07,0.06c0.57,0.62,0.82,1.41,0.67,2.2 L18.98,9h1.91l0.06-0.43C21.16,7.21,20.68,5.86,19.65,4.86z"},"children":[{"name":"path","attribs":{"d":"M20.75,16c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h6.75c0.69,0,1.25-0.56,1.25-1.25 c0-0.67-0.53-1.2-1.18-1.24L8.87,10l1.48-2.6c0.09-0.17,0.14-0.34,0.14-0.54c0-0.26-0.09-0.5-0.26-0.7L9.12,5l-7.18,6.8 C1.34,12.36,1,13.15,1,13.97V20c0,1.66,1.34,3,3,3h13.75c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h7.75 c0.69,0,1.25-0.56,1.25-1.25S20.44,17,19.75,17H12v-1H20.75z M10,21H4c-0.55,0-1-0.45-1-1v-6c0-0.39,0.23-0.64,0.36-0.75L7,9.87V12 l3,0V21z M15.65,4.86l-0.07-0.07c-0.57-0.62-0.82-1.41-0.67-2.2L15,2h-1.89l-0.06,0.43c-0.2,1.36,0.27,2.71,1.3,3.72l0.07,0.06 c0.57,0.62,0.82,1.41,0.67,2.2L14.98,9h1.91l0.06-0.43C17.16,7.21,16.68,5.86,15.65,4.86z M19.65,4.86l-0.07-0.07 c-0.57-0.62-0.82-1.41-0.67-2.2L19,2h-1.89l-0.06,0.43c-0.2,1.36,0.27,2.71,1.3,3.72l0.07,0.06c0.57,0.62,0.82,1.41,0.67,2.2 L18.98,9h1.91l0.06-0.43C21.16,7.21,20.68,5.86,19.65,4.86z"},"children":[]}]}]}]};exports.ic_dry_twotone=ic_dry_twotone;var ic_elevator={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M8.5,6c0.69,0,1.25,0.56,1.25,1.25 c0,0.69-0.56,1.25-1.25,1.25S7.25,7.94,7.25,7.25C7.25,6.56,7.81,6,8.5,6z M11,14h-1v4H7v-4H6v-2.5c0-1.1,0.9-2,2-2h1 c1.1,0,2,0.9,2,2V14z M15.5,17L13,13h5L15.5,17z M13,11l2.5-4l2.5,4H13z"},"children":[{"name":"path","attribs":{"d":"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M8.5,6c0.69,0,1.25,0.56,1.25,1.25 c0,0.69-0.56,1.25-1.25,1.25S7.25,7.94,7.25,7.25C7.25,6.56,7.81,6,8.5,6z M11,14h-1v4H7v-4H6v-2.5c0-1.1,0.9-2,2-2h1 c1.1,0,2,0.9,2,2V14z M15.5,17L13,13h5L15.5,17z M13,11l2.5-4l2.5,4H13z"},"children":[]}]}]}]};exports.ic_elevator=ic_elevator;var ic_elevator_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M19,5v14H5V5H19 M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3L19,3z M10,18v-4h1 v-2.5c0-1.1-0.9-2-2-2H8c-1.1,0-2,0.9-2,2V14h1v4H10z M8.5,8.5c0.69,0,1.25-0.56,1.25-1.25S9.19,6,8.5,6S7.25,6.56,7.25,7.25 S7.81,8.5,8.5,8.5z M18,11l-2.5-4L13,11H18z M13,13l2.5,4l2.5-4H13z"},"children":[{"name":"path","attribs":{"d":"M19,5v14H5V5H19 M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3L19,3z M10,18v-4h1 v-2.5c0-1.1-0.9-2-2-2H8c-1.1,0-2,0.9-2,2V14h1v4H10z M8.5,8.5c0.69,0,1.25-0.56,1.25-1.25S9.19,6,8.5,6S7.25,6.56,7.25,7.25 S7.81,8.5,8.5,8.5z M18,11l-2.5-4L13,11H18z M13,13l2.5,4l2.5-4H13z"},"children":[]}]}]}]};exports.ic_elevator_outline=ic_elevator_outline;var ic_elevator_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M19,5v14H5V5H19 M10,18v-4h1v-2.5c0-1.1-0.9-2-2-2H8c-1.1,0-2,0.9-2,2V14h1v4H10z M8.5,8.5 c0.69,0,1.25-0.56,1.25-1.25S9.19,6,8.5,6S7.25,6.56,7.25,7.25S7.81,8.5,8.5,8.5z M18,11l-2.5-4L13,11H18z M13,13l2.5,4l2.5-4H13z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M19,5v14H5V5H19 M10,18v-4h1v-2.5c0-1.1-0.9-2-2-2H8c-1.1,0-2,0.9-2,2V14h1v4H10z M8.5,8.5 c0.69,0,1.25-0.56,1.25-1.25S9.19,6,8.5,6S7.25,6.56,7.25,7.25S7.81,8.5,8.5,8.5z M18,11l-2.5-4L13,11H18z M13,13l2.5,4l2.5-4H13z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M19,5v14H5V5H19 M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3L19,3z M10,18v-4h1 v-2.5c0-1.1-0.9-2-2-2H8c-1.1,0-2,0.9-2,2V14h1v4H10z M8.5,8.5c0.69,0,1.25-0.56,1.25-1.25S9.19,6,8.5,6S7.25,6.56,7.25,7.25 S7.81,8.5,8.5,8.5z M18,11l-2.5-4L13,11H18z M13,13l2.5,4l2.5-4H13z"},"children":[{"name":"path","attribs":{"d":"M19,5v14H5V5H19 M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3L19,3z M10,18v-4h1 v-2.5c0-1.1-0.9-2-2-2H8c-1.1,0-2,0.9-2,2V14h1v4H10z M8.5,8.5c0.69,0,1.25-0.56,1.25-1.25S9.19,6,8.5,6S7.25,6.56,7.25,7.25 S7.81,8.5,8.5,8.5z M18,11l-2.5-4L13,11H18z M13,13l2.5,4l2.5-4H13z"},"children":[]}]}]}]};exports.ic_elevator_twotone=ic_elevator_twotone;var ic_escalator={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2l0-14C21,3.9,20.1,3,19,3z M17,9h-1.7l-5,9H7 c-0.83,0-1.5-0.67-1.5-1.5S6.17,15,7,15h1.7l5-9H17c0.83,0,1.5,0.67,1.5,1.5S17.83,9,17,9z"},"children":[{"name":"path","attribs":{"d":"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2l0-14C21,3.9,20.1,3,19,3z M17,9h-1.7l-5,9H7 c-0.83,0-1.5-0.67-1.5-1.5S6.17,15,7,15h1.7l5-9H17c0.83,0,1.5,0.67,1.5,1.5S17.83,9,17,9z"},"children":[]}]}]}]}]}]};exports.ic_escalator=ic_escalator;var ic_escalator_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M19,5L19,5l0,14H5V5H19 M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2l0-14C21,3.9,20.1,3,19,3L19,3z M17,6h-3.3l-5,9H7c-0.83,0-1.5,0.67-1.5,1.5S6.17,18,7,18h3.3l5-9H17c0.83,0,1.5-0.67,1.5-1.5S17.83,6,17,6z"},"children":[{"name":"path","attribs":{"d":"M19,5L19,5l0,14H5V5H19 M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2l0-14C21,3.9,20.1,3,19,3L19,3z M17,6h-3.3l-5,9H7c-0.83,0-1.5,0.67-1.5,1.5S6.17,18,7,18h3.3l5-9H17c0.83,0,1.5-0.67,1.5-1.5S17.83,6,17,6z"},"children":[]}]}]}]};exports.ic_escalator_outline=ic_escalator_outline;var ic_escalator_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M19,5L19,5l0,14H5V5H19 M17,6h-3.3l-5,9H7c-0.83,0-1.5,0.67-1.5,1.5S6.17,18,7,18h3.3l5-9H17 c0.83,0,1.5-0.67,1.5-1.5S17.83,6,17,6z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M19,5L19,5l0,14H5V5H19 M17,6h-3.3l-5,9H7c-0.83,0-1.5,0.67-1.5,1.5S6.17,18,7,18h3.3l5-9H17 c0.83,0,1.5-0.67,1.5-1.5S17.83,6,17,6z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M19,5L19,5l0,14H5V5H19 M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2l0-14C21,3.9,20.1,3,19,3L19,3z M17,6h-3.3l-5,9H7c-0.83,0-1.5,0.67-1.5,1.5S6.17,18,7,18h3.3l5-9H17c0.83,0,1.5-0.67,1.5-1.5S17.83,6,17,6z"},"children":[{"name":"path","attribs":{"d":"M19,5L19,5l0,14H5V5H19 M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2l0-14C21,3.9,20.1,3,19,3L19,3z M17,6h-3.3l-5,9H7c-0.83,0-1.5,0.67-1.5,1.5S6.17,18,7,18h3.3l5-9H17c0.83,0,1.5-0.67,1.5-1.5S17.83,6,17,6z"},"children":[]}]}]}]};exports.ic_escalator_twotone=ic_escalator_twotone;var ic_escalator_warning={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M6.5,2c1.1,0,2,0.9,2,2s-0.9,2-2,2s-2-0.9-2-2S5.4,2,6.5,2z M15.5,9.5c0,0.83,0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5 S17.83,8,17,8S15.5,8.67,15.5,9.5z M18.5,12h-2.84c-0.58,0.01-1.14,0.32-1.45,0.86l-0.92,1.32L9.72,8C9.35,7.37,8.69,7.01,8.01,7H5 C3.9,7,3,7.9,3,9v6h1.5v7h5V11.61L12.03,16h2.2L15,14.9V22h4v-5h1v-3.5C20,12.68,19.33,12,18.5,12z"},"children":[{"name":"path","attribs":{"d":"M6.5,2c1.1,0,2,0.9,2,2s-0.9,2-2,2s-2-0.9-2-2S5.4,2,6.5,2z M15.5,9.5c0,0.83,0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5 S17.83,8,17,8S15.5,8.67,15.5,9.5z M18.5,12h-2.84c-0.58,0.01-1.14,0.32-1.45,0.86l-0.92,1.32L9.72,8C9.35,7.37,8.69,7.01,8.01,7H5 C3.9,7,3,7.9,3,9v6h1.5v7h5V11.61L12.03,16h2.2L15,14.9V22h4v-5h1v-3.5C20,12.68,19.33,12,18.5,12z"},"children":[]}]}]}]};exports.ic_escalator_warning=ic_escalator_warning;var ic_escalator_warning_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M6.5,2c1.1,0,2,0.9,2,2s-0.9,2-2,2s-2-0.9-2-2S5.4,2,6.5,2z M15.5,9.5c0,0.83,0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5 S17.83,8,17,8S15.5,8.67,15.5,9.5z M18.5,12h-2.84c-0.58,0.01-1.14,0.32-1.45,0.86l-0.92,1.32L9.72,8C9.35,7.37,8.69,7.01,8.01,7H5 C3.9,7,3,7.9,3,9v6h1.5v7h5V11.61L12.03,16h2.2L15,14.9V22h4v-5h1v-3.5C20,12.68,19.33,12,18.5,12z"},"children":[{"name":"path","attribs":{"d":"M6.5,2c1.1,0,2,0.9,2,2s-0.9,2-2,2s-2-0.9-2-2S5.4,2,6.5,2z M15.5,9.5c0,0.83,0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5 S17.83,8,17,8S15.5,8.67,15.5,9.5z M18.5,12h-2.84c-0.58,0.01-1.14,0.32-1.45,0.86l-0.92,1.32L9.72,8C9.35,7.37,8.69,7.01,8.01,7H5 C3.9,7,3,7.9,3,9v6h1.5v7h5V11.61L12.03,16h2.2L15,14.9V22h4v-5h1v-3.5C20,12.68,19.33,12,18.5,12z"},"children":[]}]}]}]};exports.ic_escalator_warning_outline=ic_escalator_warning_outline;var ic_escalator_warning_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M6.5,2c1.1,0,2,0.9,2,2s-0.9,2-2,2s-2-0.9-2-2S5.4,2,6.5,2z M15.5,9.5c0,0.83,0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5 S17.83,8,17,8S15.5,8.67,15.5,9.5z M18.5,12h-2.84c-0.58,0.01-1.14,0.32-1.45,0.86l-0.92,1.32L9.72,8C9.35,7.37,8.69,7.01,8.01,7H5 C3.9,7,3,7.9,3,9v6h1.5v7h5V11.61L12.03,16h2.2L15,14.9V22h4v-5h1v-3.5C20,12.68,19.33,12,18.5,12z"},"children":[{"name":"path","attribs":{"d":"M6.5,2c1.1,0,2,0.9,2,2s-0.9,2-2,2s-2-0.9-2-2S5.4,2,6.5,2z M15.5,9.5c0,0.83,0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5 S17.83,8,17,8S15.5,8.67,15.5,9.5z M18.5,12h-2.84c-0.58,0.01-1.14,0.32-1.45,0.86l-0.92,1.32L9.72,8C9.35,7.37,8.69,7.01,8.01,7H5 C3.9,7,3,7.9,3,9v6h1.5v7h5V11.61L12.03,16h2.2L15,14.9V22h4v-5h1v-3.5C20,12.68,19.33,12,18.5,12z"},"children":[]}]}]}]};exports.ic_escalator_warning_twotone=ic_escalator_warning_twotone;var ic_family_restroom={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M16,4c0-1.11,0.89-2,2-2s2,0.89,2,2s-0.89,2-2,2S16,5.11,16,4z M20,22v-6h2.5l-2.54-7.63C19.68,7.55,18.92,7,18.06,7h-0.12 c-0.86,0-1.63,0.55-1.9,1.37l-0.86,2.58C16.26,11.55,17,12.68,17,14v8H20z M12.5,11.5c0.83,0,1.5-0.67,1.5-1.5s-0.67-1.5-1.5-1.5 S11,9.17,11,10S11.67,11.5,12.5,11.5z M5.5,6c1.11,0,2-0.89,2-2s-0.89-2-2-2s-2,0.89-2,2S4.39,6,5.5,6z M7.5,22v-7H9V9 c0-1.1-0.9-2-2-2H4C2.9,7,2,7.9,2,9v6h1.5v7H7.5z M14,22v-4h1v-4c0-0.82-0.68-1.5-1.5-1.5h-2c-0.82,0-1.5,0.68-1.5,1.5v4h1v4H14z"},"children":[{"name":"path","attribs":{"d":"M16,4c0-1.11,0.89-2,2-2s2,0.89,2,2s-0.89,2-2,2S16,5.11,16,4z M20,22v-6h2.5l-2.54-7.63C19.68,7.55,18.92,7,18.06,7h-0.12 c-0.86,0-1.63,0.55-1.9,1.37l-0.86,2.58C16.26,11.55,17,12.68,17,14v8H20z M12.5,11.5c0.83,0,1.5-0.67,1.5-1.5s-0.67-1.5-1.5-1.5 S11,9.17,11,10S11.67,11.5,12.5,11.5z M5.5,6c1.11,0,2-0.89,2-2s-0.89-2-2-2s-2,0.89-2,2S4.39,6,5.5,6z M7.5,22v-7H9V9 c0-1.1-0.9-2-2-2H4C2.9,7,2,7.9,2,9v6h1.5v7H7.5z M14,22v-4h1v-4c0-0.82-0.68-1.5-1.5-1.5h-2c-0.82,0-1.5,0.68-1.5,1.5v4h1v4H14z"},"children":[]}]}]}]};exports.ic_family_restroom=ic_family_restroom;var ic_family_restroom_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M16,4c0-1.11,0.89-2,2-2s2,0.89,2,2s-0.89,2-2,2S16,5.11,16,4z M20,22v-6h2.5l-2.54-7.63C19.68,7.55,18.92,7,18.06,7h-0.12 c-0.86,0-1.63,0.55-1.9,1.37l-0.86,2.58C16.26,11.55,17,12.68,17,14v8H20z M12.5,11.5c0.83,0,1.5-0.67,1.5-1.5s-0.67-1.5-1.5-1.5 S11,9.17,11,10S11.67,11.5,12.5,11.5z M5.5,6c1.11,0,2-0.89,2-2s-0.89-2-2-2s-2,0.89-2,2S4.39,6,5.5,6z M7.5,22v-7H9V9 c0-1.1-0.9-2-2-2H4C2.9,7,2,7.9,2,9v6h1.5v7H7.5z M14,22v-4h1v-4c0-0.82-0.68-1.5-1.5-1.5h-2c-0.82,0-1.5,0.68-1.5,1.5v4h1v4H14z"},"children":[{"name":"path","attribs":{"d":"M16,4c0-1.11,0.89-2,2-2s2,0.89,2,2s-0.89,2-2,2S16,5.11,16,4z M20,22v-6h2.5l-2.54-7.63C19.68,7.55,18.92,7,18.06,7h-0.12 c-0.86,0-1.63,0.55-1.9,1.37l-0.86,2.58C16.26,11.55,17,12.68,17,14v8H20z M12.5,11.5c0.83,0,1.5-0.67,1.5-1.5s-0.67-1.5-1.5-1.5 S11,9.17,11,10S11.67,11.5,12.5,11.5z M5.5,6c1.11,0,2-0.89,2-2s-0.89-2-2-2s-2,0.89-2,2S4.39,6,5.5,6z M7.5,22v-7H9V9 c0-1.1-0.9-2-2-2H4C2.9,7,2,7.9,2,9v6h1.5v7H7.5z M14,22v-4h1v-4c0-0.82-0.68-1.5-1.5-1.5h-2c-0.82,0-1.5,0.68-1.5,1.5v4h1v4H14z"},"children":[]}]}]}]};exports.ic_family_restroom_outline=ic_family_restroom_outline;var ic_family_restroom_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M16,4c0-1.11,0.89-2,2-2s2,0.89,2,2s-0.89,2-2,2S16,5.11,16,4z M20,22v-6h2.5l-2.54-7.63C19.68,7.55,18.92,7,18.06,7h-0.12 c-0.86,0-1.63,0.55-1.9,1.37l-0.86,2.58C16.26,11.55,17,12.68,17,14v8H20z M12.5,11.5c0.83,0,1.5-0.67,1.5-1.5s-0.67-1.5-1.5-1.5 S11,9.17,11,10S11.67,11.5,12.5,11.5z M5.5,6c1.11,0,2-0.89,2-2s-0.89-2-2-2s-2,0.89-2,2S4.39,6,5.5,6z M7.5,22v-7H9V9 c0-1.1-0.9-2-2-2H4C2.9,7,2,7.9,2,9v6h1.5v7H7.5z M14,22v-4h1v-4c0-0.82-0.68-1.5-1.5-1.5h-2c-0.82,0-1.5,0.68-1.5,1.5v4h1v4H14z"},"children":[{"name":"path","attribs":{"d":"M16,4c0-1.11,0.89-2,2-2s2,0.89,2,2s-0.89,2-2,2S16,5.11,16,4z M20,22v-6h2.5l-2.54-7.63C19.68,7.55,18.92,7,18.06,7h-0.12 c-0.86,0-1.63,0.55-1.9,1.37l-0.86,2.58C16.26,11.55,17,12.68,17,14v8H20z M12.5,11.5c0.83,0,1.5-0.67,1.5-1.5s-0.67-1.5-1.5-1.5 S11,9.17,11,10S11.67,11.5,12.5,11.5z M5.5,6c1.11,0,2-0.89,2-2s-0.89-2-2-2s-2,0.89-2,2S4.39,6,5.5,6z M7.5,22v-7H9V9 c0-1.1-0.9-2-2-2H4C2.9,7,2,7.9,2,9v6h1.5v7H7.5z M14,22v-4h1v-4c0-0.82-0.68-1.5-1.5-1.5h-2c-0.82,0-1.5,0.68-1.5,1.5v4h1v4H14z"},"children":[]}]}]}]};exports.ic_family_restroom_twotone=ic_family_restroom_twotone;var ic_fence={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M21,12v-2h-2V7l-3-3l-2,2l-2-2l-2,2L8,4L5,7v3H3v2h2v2H3v2h2v4h14v-4h2v-2h-2v-2H21z M16,6.83l1,1V10h-2V7.83l0.41-0.41 L16,6.83z M12,6.83l0.59,0.59L13,7.83V10h-2V7.83l0.41-0.41L12,6.83z M11,14v-2h2v2H11z M13,16v2h-2v-2H13z M7,7.83l1-1l0.59,0.59 L9,7.83V10H7V7.83z M7,12h2v2H7V12z M7,16h2v2H7V16z M17,18h-2v-2h2V18z M17,14h-2v-2h2V14z"},"children":[{"name":"path","attribs":{"d":"M21,12v-2h-2V7l-3-3l-2,2l-2-2l-2,2L8,4L5,7v3H3v2h2v2H3v2h2v4h14v-4h2v-2h-2v-2H21z M16,6.83l1,1V10h-2V7.83l0.41-0.41 L16,6.83z M12,6.83l0.59,0.59L13,7.83V10h-2V7.83l0.41-0.41L12,6.83z M11,14v-2h2v2H11z M13,16v2h-2v-2H13z M7,7.83l1-1l0.59,0.59 L9,7.83V10H7V7.83z M7,12h2v2H7V12z M7,16h2v2H7V16z M17,18h-2v-2h2V18z M17,14h-2v-2h2V14z"},"children":[]}]}]}]};exports.ic_fence=ic_fence;var ic_fence_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M21,12v-2h-2V7l-3-3l-2,2l-2-2l-2,2L8,4L5,7v3H3v2h2v2H3v2h2v4h14v-4h2v-2h-2v-2H21z M16,6.83l1,1V10h-2V7.83l0.41-0.41 L16,6.83z M12,6.83l0.59,0.59L13,7.83V10h-2V7.83l0.41-0.41L12,6.83z M11,14v-2h2v2H11z M13,16v2h-2v-2H13z M7,7.83l1-1l0.59,0.59 L9,7.83V10H7V7.83z M7,12h2v2H7V12z M7,16h2v2H7V16z M17,18h-2v-2h2V18z M17,14h-2v-2h2V14z"},"children":[{"name":"path","attribs":{"d":"M21,12v-2h-2V7l-3-3l-2,2l-2-2l-2,2L8,4L5,7v3H3v2h2v2H3v2h2v4h14v-4h2v-2h-2v-2H21z M16,6.83l1,1V10h-2V7.83l0.41-0.41 L16,6.83z M12,6.83l0.59,0.59L13,7.83V10h-2V7.83l0.41-0.41L12,6.83z M11,14v-2h2v2H11z M13,16v2h-2v-2H13z M7,7.83l1-1l0.59,0.59 L9,7.83V10H7V7.83z M7,12h2v2H7V12z M7,16h2v2H7V16z M17,18h-2v-2h2V18z M17,14h-2v-2h2V14z"},"children":[]}]}]}]};exports.ic_fence_outline=ic_fence_outline;var ic_fence_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{"opacity":".3"},"children":[{"name":"path","attribs":{"d":"M16,6.83l1,1V10h-2V7.83l0.41-0.41L16,6.83z M12,6.83l0.59,0.59L13,7.83V10h-2V7.83l0.41-0.41L12,6.83z M11,14v-2h2v2H11z M13,16v2h-2v-2H13z M7,7.83l1-1l0.59,0.59L9,7.83V10H7V7.83z M7,12h2v2H7V12z M7,16h2v2H7V16z M17,18h-2v-2h2V18z M17,14h-2v-2h2 V14z"},"children":[{"name":"path","attribs":{"d":"M16,6.83l1,1V10h-2V7.83l0.41-0.41L16,6.83z M12,6.83l0.59,0.59L13,7.83V10h-2V7.83l0.41-0.41L12,6.83z M11,14v-2h2v2H11z M13,16v2h-2v-2H13z M7,7.83l1-1l0.59,0.59L9,7.83V10H7V7.83z M7,12h2v2H7V12z M7,16h2v2H7V16z M17,18h-2v-2h2V18z M17,14h-2v-2h2 V14z"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M21,12v-2h-2V7l-3-3l-2,2l-2-2l-2,2L8,4L5,7v3H3v2h2v2H3v2h2v4h14v-4h2v-2h-2v-2H21z M16,6.83l1,1V10h-2V7.83l0.41-0.41 L16,6.83z M12,6.83l0.59,0.59L13,7.83V10h-2V7.83l0.41-0.41L12,6.83z M11,14v-2h2v2H11z M13,16v2h-2v-2H13z M7,7.83l1-1l0.59,0.59 L9,7.83V10H7V7.83z M7,12h2v2H7V12z M7,16h2v2H7V16z M17,18h-2v-2h2V18z M17,14h-2v-2h2V14z"},"children":[{"name":"path","attribs":{"d":"M21,12v-2h-2V7l-3-3l-2,2l-2-2l-2,2L8,4L5,7v3H3v2h2v2H3v2h2v4h14v-4h2v-2h-2v-2H21z M16,6.83l1,1V10h-2V7.83l0.41-0.41 L16,6.83z M12,6.83l0.59,0.59L13,7.83V10h-2V7.83l0.41-0.41L12,6.83z M11,14v-2h2v2H11z M13,16v2h-2v-2H13z M7,7.83l1-1l0.59,0.59 L9,7.83V10H7V7.83z M7,12h2v2H7V12z M7,16h2v2H7V16z M17,18h-2v-2h2V18z M17,14h-2v-2h2V14z"},"children":[]}]}]}]};exports.ic_fence_twotone=ic_fence_twotone;var ic_fire_extinguisher={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M7,19h10v1c0,1.1-0.9,2-2,2H9c-1.1,0-2-0.9-2-2V19z M7,18h10v-5H7V18z M17,3v6l-3.15-0.66c-0.01,0-0.01,0.01-0.02,0.02 c1.55,0.62,2.72,1.98,3.07,3.64H7.1c0.34-1.66,1.52-3.02,3.07-3.64c-0.33-0.26-0.6-0.58-0.8-0.95L5,6.5v-1l4.37-0.91 C9.87,3.65,10.86,3,12,3c0.7,0,1.34,0.25,1.85,0.66L17,3z M13,6c-0.03-0.59-0.45-1-1-1s-1,0.45-1,1s0.45,1,1,1S13,6.55,13,6z"},"children":[{"name":"path","attribs":{"d":"M7,19h10v1c0,1.1-0.9,2-2,2H9c-1.1,0-2-0.9-2-2V19z M7,18h10v-5H7V18z M17,3v6l-3.15-0.66c-0.01,0-0.01,0.01-0.02,0.02 c1.55,0.62,2.72,1.98,3.07,3.64H7.1c0.34-1.66,1.52-3.02,3.07-3.64c-0.33-0.26-0.6-0.58-0.8-0.95L5,6.5v-1l4.37-0.91 C9.87,3.65,10.86,3,12,3c0.7,0,1.34,0.25,1.85,0.66L17,3z M13,6c-0.03-0.59-0.45-1-1-1s-1,0.45-1,1s0.45,1,1,1S13,6.55,13,6z"},"children":[]}]}]}]};exports.ic_fire_extinguisher=ic_fire_extinguisher;var ic_fire_extinguisher_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M7,19h10v1c0,1.1-0.9,2-2,2H9c-1.1,0-2-0.9-2-2V19z M7,18h10v-5H7V18z M17,3v6l-3.15-0.66c-0.01,0-0.01,0.01-0.02,0.02 c1.55,0.62,2.72,1.98,3.07,3.64H7.1c0.34-1.66,1.52-3.02,3.07-3.64c-0.33-0.26-0.6-0.58-0.8-0.95L5,6.5v-1l4.37-0.91 C9.87,3.65,10.86,3,12,3c0.7,0,1.34,0.25,1.85,0.66L17,3z M13,6c-0.03-0.59-0.45-1-1-1s-1,0.45-1,1s0.45,1,1,1S13,6.55,13,6z"},"children":[{"name":"path","attribs":{"d":"M7,19h10v1c0,1.1-0.9,2-2,2H9c-1.1,0-2-0.9-2-2V19z M7,18h10v-5H7V18z M17,3v6l-3.15-0.66c-0.01,0-0.01,0.01-0.02,0.02 c1.55,0.62,2.72,1.98,3.07,3.64H7.1c0.34-1.66,1.52-3.02,3.07-3.64c-0.33-0.26-0.6-0.58-0.8-0.95L5,6.5v-1l4.37-0.91 C9.87,3.65,10.86,3,12,3c0.7,0,1.34,0.25,1.85,0.66L17,3z M13,6c-0.03-0.59-0.45-1-1-1s-1,0.45-1,1s0.45,1,1,1S13,6.55,13,6z"},"children":[]}]}]}]};exports.ic_fire_extinguisher_outline=ic_fire_extinguisher_outline;var ic_fire_extinguisher_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M7,19h10v1c0,1.1-0.9,2-2,2H9c-1.1,0-2-0.9-2-2V19z M7,18h10v-5H7V18z M17,3v6l-3.15-0.66c-0.01,0-0.01,0.01-0.02,0.02 c1.55,0.62,2.72,1.98,3.07,3.64H7.1c0.34-1.66,1.52-3.02,3.07-3.64c-0.33-0.26-0.6-0.58-0.8-0.95L5,6.5v-1l4.37-0.91 C9.87,3.65,10.86,3,12,3c0.7,0,1.34,0.25,1.85,0.66L17,3z M13,6c-0.03-0.59-0.45-1-1-1s-1,0.45-1,1s0.45,1,1,1S13,6.55,13,6z"},"children":[{"name":"path","attribs":{"d":"M7,19h10v1c0,1.1-0.9,2-2,2H9c-1.1,0-2-0.9-2-2V19z M7,18h10v-5H7V18z M17,3v6l-3.15-0.66c-0.01,0-0.01,0.01-0.02,0.02 c1.55,0.62,2.72,1.98,3.07,3.64H7.1c0.34-1.66,1.52-3.02,3.07-3.64c-0.33-0.26-0.6-0.58-0.8-0.95L5,6.5v-1l4.37-0.91 C9.87,3.65,10.86,3,12,3c0.7,0,1.34,0.25,1.85,0.66L17,3z M13,6c-0.03-0.59-0.45-1-1-1s-1,0.45-1,1s0.45,1,1,1S13,6.55,13,6z"},"children":[]}]}]}]};exports.ic_fire_extinguisher_twotone=ic_fire_extinguisher_twotone;var ic_fitness_center={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20.57 14.86L22 13.43 20.57 12 17 15.57 8.43 7 12 3.43 10.57 2 9.14 3.43 7.71 2 5.57 4.14 4.14 2.71 2.71 4.14l1.43 1.43L2 7.71l1.43 1.43L2 10.57 3.43 12 7 8.43 15.57 17 12 20.57 13.43 22l1.43-1.43L16.29 22l2.14-2.14 1.43 1.43 1.43-1.43-1.43-1.43L22 16.29z"},"children":[]}]};exports.ic_fitness_center=ic_fitness_center;var ic_fitness_center_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20.57 14.86L22 13.43 20.57 12 17 15.57 8.43 7 12 3.43 10.57 2 9.14 3.43 7.71 2 5.57 4.14 4.14 2.71 2.71 4.14l1.43 1.43L2 7.71l1.43 1.43L2 10.57 3.43 12 7 8.43 15.57 17 12 20.57 13.43 22l1.43-1.43L16.29 22l2.14-2.14 1.43 1.43 1.43-1.43-1.43-1.43L22 16.29l-1.43-1.43z"},"children":[]}]};exports.ic_fitness_center_outline=ic_fitness_center_outline;var ic_fitness_center_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20.57 14.86L22 13.43 20.57 12 17 15.57 8.43 7 12 3.43 10.57 2 9.14 3.43 7.71 2 5.57 4.14 4.14 2.71 2.71 4.14l1.43 1.43L2 7.71l1.43 1.43L2 10.57 3.43 12 7 8.43 15.57 17 12 20.57 13.43 22l1.43-1.43L16.29 22l2.14-2.14 1.43 1.43 1.43-1.43-1.43-1.43L22 16.29l-1.43-1.43z"},"children":[]}]};exports.ic_fitness_center_twotone=ic_fitness_center_twotone;var ic_food_bank={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M12,3L4,9v12h16V9L12,3z M12.5,12.5c0,0.83-0.67,1.5-1.5,1.5v4h-1v-4c-0.83,0-1.5-0.67-1.5-1.5v-3h1v3H10v-3h1v3h0.5v-3h1 V12.5z M15,18h-1v-3.5h-1v-3c0-1.1,0.9-2,2-2V18z"},"children":[]}]};exports.ic_food_bank=ic_food_bank;var ic_food_bank_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M12,5.5l6,4.5v9H6v-9L12,5.5 M12,3L4,9v12h16V9L12,3L12,3z M11.5,9.5v3H11v-3h-1v3H9.5v-3h-1v3c0,0.83,0.67,1.5,1.5,1.5v4h1 v-4c0.83,0,1.5-0.67,1.5-1.5v-3H11.5z M13,11.5v3h1V18h1V9.5C13.9,9.5,13,10.4,13,11.5z"},"children":[]}]};exports.ic_food_bank_outline=ic_food_bank_outline;var ic_food_bank_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M12,5.5l6,4.5v9H6v-9L12,5.5 M11.5,9.5v3H11v-3h-1v3H9.5v-3h-1v3c0,0.83,0.67,1.5,1.5,1.5v4h1v-4 c0.83,0,1.5-0.67,1.5-1.5v-3H11.5z M13,11.5v3h1V18h1V9.5C13.9,9.5,13,10.4,13,11.5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12,5.5l6,4.5v9H6v-9L12,5.5 M12,3L4,9v12h16V9L12,3L12,3z M11.5,9.5v3H11v-3h-1v3H9.5v-3h-1v3c0,0.83,0.67,1.5,1.5,1.5v4h1 v-4c0.83,0,1.5-0.67,1.5-1.5v-3H11.5z M13,11.5v3h1V18h1V9.5C13.9,9.5,13,10.4,13,11.5z"},"children":[]}]};exports.ic_food_bank_twotone=ic_food_bank_twotone;var ic_foundation={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M19,12h3L12,3L2,12h3v3H3v2h2v3h2v-3h4v3h2v-3h4v3h2v-3h2v-2h-2V12z M7,15v-4.81l4-3.6V15H7z M13,15V6.59l4,3.6V15H13z"},"children":[]}]};exports.ic_foundation=ic_foundation;var ic_foundation_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M19,12h3L12,3L2,12h3v3H3v2h2v3h2v-3h4v3h2v-3h4v3h2v-3h2v-2h-2V12z M7,15v-4.81l4-3.6V15H7z M13,15V6.59l4,3.6V15H13z"},"children":[]}]};exports.ic_foundation_outline=ic_foundation_outline;var ic_foundation_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M7,15v-4.81l4-3.6V15H7z M13,15V6.59l4,3.6V15H13z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M19,12h3L12,3L2,12h3v3H3v2h2v3h2v-3h4v3h2v-3h4v3h2v-3h2v-2h-2V12z M7,15v-4.81l4-3.6V15H7z M13,15V6.59l4,3.6V15H13z"},"children":[]}]};exports.ic_foundation_twotone=ic_foundation_twotone;var ic_free_breakfast={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 3H4v10c0 2.21 1.79 4 4 4h6c2.21 0 4-1.79 4-4v-3h2c1.11 0 2-.9 2-2V5c0-1.11-.89-2-2-2zm0 5h-2V5h2v3zM4 19h16v2H4z"},"children":[]}]};exports.ic_free_breakfast=ic_free_breakfast;var ic_free_breakfast_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 19h16v2H4zM20 3H4v10c0 2.21 1.79 4 4 4h6c2.21 0 4-1.79 4-4v-3h2c1.11 0 2-.9 2-2V5c0-1.11-.89-2-2-2zm-4 10c0 1.1-.9 2-2 2H8c-1.1 0-2-.9-2-2V5h10v8zm4-5h-2V5h2v3z"},"children":[]}]};exports.ic_free_breakfast_outline=ic_free_breakfast_outline;var ic_free_breakfast_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M6 13c0 1.1.9 2 2 2h6c1.1 0 2-.9 2-2V5H6v8z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M4 19h16v2H4zM20 3H4v10c0 2.21 1.79 4 4 4h6c2.21 0 4-1.79 4-4v-3h2c1.11 0 2-.9 2-2V5c0-1.11-.89-2-2-2zm-4 10c0 1.1-.9 2-2 2H8c-1.1 0-2-.9-2-2V5h10v8zm4-5h-2V5h2v3z"},"children":[]}]};exports.ic_free_breakfast_twotone=ic_free_breakfast_twotone;var ic_golf_course={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"19.5","cy":"19.5","r":"1.5"},"children":[]},{"name":"path","attribs":{"d":"M17 5.92L9 2v18H7v-1.73c-1.79.35-3 .99-3 1.73 0 1.1 2.69 2 6 2s6-.9 6-2c0-.99-2.16-1.81-5-1.97V8.98l6-3.06z"},"children":[]}]};exports.ic_golf_course=ic_golf_course;var ic_golf_course_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"19.5","cy":"19.5","r":"1.5"},"children":[]},{"name":"path","attribs":{"d":"M17 5.92L9 2v18H7v-1.73c-1.79.35-3 .99-3 1.73 0 1.1 2.69 2 6 2s6-.9 6-2c0-.99-2.16-1.81-5-1.97V8.98l6-3.06z"},"children":[]}]};exports.ic_golf_course_outline=ic_golf_course_outline;var ic_golf_course_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"19.5","cy":"19.5","opacity":".3","r":"1.5"},"children":[]},{"name":"path","attribs":{"d":"M17 5.92L9 2v18H7v-1.73c-1.79.35-3 .99-3 1.73 0 1.1 2.69 2 6 2s6-.9 6-2c0-.99-2.16-1.81-5-1.97V8.98l6-3.06z","opacity":".3"},"children":[]},{"name":"circle","attribs":{"cx":"19.5","cy":"19.5","r":"1.5"},"children":[]},{"name":"path","attribs":{"d":"M17 5.92L9 2v18H7v-1.73c-1.79.35-3 .99-3 1.73 0 1.1 2.69 2 6 2s6-.9 6-2c0-.99-2.16-1.81-5-1.97V8.98l6-3.06z"},"children":[]}]};exports.ic_golf_course_twotone=ic_golf_course_twotone;var ic_grass={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M12,20H2v-2h5.75l0,0C7.02,15.19,4.81,12.99,2,12.26C2.64,12.1,3.31,12,4,12C8.42,12,12,15.58,12,20z M22,12.26 C21.36,12.1,20.69,12,20,12c-2.93,0-5.48,1.58-6.88,3.93c0.29,0.66,0.53,1.35,0.67,2.07c0.13,0.65,0.2,1.32,0.2,2h2h6v-2h-5.75 C16.98,15.19,19.19,12.99,22,12.26z M15.64,11.02c0.78-2.09,2.23-3.84,4.09-5C15.44,6.16,12,9.67,12,14c0,0.01,0,0.02,0,0.02 C12.95,12.75,14.2,11.72,15.64,11.02z M11.42,8.85C10.58,6.66,8.88,4.89,6.7,4C8.14,5.86,9,8.18,9,10.71c0,0.21-0.03,0.41-0.04,0.61 c0.43,0.24,0.83,0.52,1.22,0.82C10.39,10.96,10.83,9.85,11.42,8.85z"},"children":[]}]};exports.ic_grass=ic_grass;var ic_grass_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M12,20H2v-2h5.75l0,0C7.02,15.19,4.81,12.99,2,12.26C2.64,12.1,3.31,12,4,12C8.42,12,12,15.58,12,20z M22,12.26 C21.36,12.1,20.69,12,20,12c-2.93,0-5.48,1.58-6.88,3.93c0.29,0.66,0.53,1.35,0.67,2.07c0.13,0.65,0.2,1.32,0.2,2h2h6v-2h-5.75 C16.98,15.19,19.19,12.99,22,12.26z M15.64,11.02c0.78-2.09,2.23-3.84,4.09-5C15.44,6.16,12,9.67,12,14c0,0.01,0,0.02,0,0.02 C12.95,12.75,14.2,11.72,15.64,11.02z M11.42,8.85C10.58,6.66,8.88,4.89,6.7,4C8.14,5.86,9,8.18,9,10.71c0,0.21-0.03,0.41-0.04,0.61 c0.43,0.24,0.83,0.52,1.22,0.82C10.39,10.96,10.83,9.85,11.42,8.85z"},"children":[]}]};exports.ic_grass_outline=ic_grass_outline;var ic_grass_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M12,20H2v-2h5.75l0,0C7.02,15.19,4.81,12.99,2,12.26C2.64,12.1,3.31,12,4,12C8.42,12,12,15.58,12,20z M22,12.26 C21.36,12.1,20.69,12,20,12c-2.93,0-5.48,1.58-6.88,3.93c0.29,0.66,0.53,1.35,0.67,2.07c0.13,0.65,0.2,1.32,0.2,2h2h6v-2h-5.75 C16.98,15.19,19.19,12.99,22,12.26z M15.64,11.02c0.78-2.09,2.23-3.84,4.09-5C15.44,6.16,12,9.67,12,14c0,0.01,0,0.02,0,0.02 C12.95,12.75,14.2,11.72,15.64,11.02z M11.42,8.85C10.58,6.66,8.88,4.89,6.7,4C8.14,5.86,9,8.18,9,10.71c0,0.21-0.03,0.41-0.04,0.61 c0.43,0.24,0.83,0.52,1.22,0.82C10.39,10.96,10.83,9.85,11.42,8.85z"},"children":[]}]};exports.ic_grass_twotone=ic_grass_twotone;var ic_hot_tub={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"7","cy":"6","r":"2"},"children":[]},{"name":"path","attribs":{"d":"M11.15 12c-.31-.22-.59-.46-.82-.72l-1.4-1.55c-.19-.21-.43-.38-.69-.5-.29-.14-.62-.23-.96-.23h-.03C6.01 9 5 10.01 5 11.25V12H2v8c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-8H11.15zM7 20H5v-6h2v6zm4 0H9v-6h2v6zm4 0h-2v-6h2v6zm4 0h-2v-6h2v6zm-.35-14.14l-.07-.07c-.57-.62-.82-1.41-.67-2.2L18 3h-1.89l-.06.43c-.2 1.36.27 2.71 1.3 3.72l.07.06c.57.62.82 1.41.67 2.2l-.11.59h1.91l.06-.43c.21-1.36-.27-2.71-1.3-3.71zm-4 0l-.07-.07c-.57-.62-.82-1.41-.67-2.2L14 3h-1.89l-.06.43c-.2 1.36.27 2.71 1.3 3.72l.07.06c.57.62.82 1.41.67 2.2l-.11.59h1.91l.06-.43c.21-1.36-.27-2.71-1.3-3.71z"},"children":[]}]};exports.ic_hot_tub=ic_hot_tub;var ic_hot_tub_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"7","cy":"6","r":"2"},"children":[]},{"name":"path","attribs":{"d":"M11.15 12c-.31-.22-.59-.46-.82-.72l-1.4-1.55c-.19-.21-.43-.38-.69-.5-.29-.14-.62-.23-.96-.23h-.03C6.01 9 5 10.01 5 11.25V12H2v8c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-8H11.15zM7 20H5v-6h2v6zm4 0H9v-6h2v6zm4 0h-2v-6h2v6zm4 0h-2v-6h2v6zM17.42 7.21c.57.62.82 1.41.67 2.2l-.11.59h1.91l.06-.43c.21-1.36-.27-2.71-1.3-3.71l-.07-.07c-.57-.62-.82-1.41-.67-2.2L18 3h-1.89l-.06.43c-.2 1.36.27 2.71 1.3 3.72l.07.06zm-4 0c.57.62.82 1.41.67 2.2l-.11.59h1.91l.06-.43c.21-1.36-.27-2.71-1.3-3.71l-.07-.07c-.57-.62-.82-1.41-.67-2.2L14 3h-1.89l-.06.43c-.2 1.36.27 2.71 1.3 3.72l.07.06z"},"children":[]}]};exports.ic_hot_tub_outline=ic_hot_tub_outline;var ic_hot_tub_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"7","cy":"6","r":"2"},"children":[]},{"name":"path","attribs":{"d":"M17.42 7.21c.57.62.82 1.41.67 2.2l-.11.59h1.91l.06-.43c.21-1.36-.27-2.71-1.3-3.71l-.07-.07c-.57-.62-.82-1.41-.67-2.2L18 3h-1.89l-.06.43c-.2 1.36.27 2.71 1.3 3.72l.07.06zM11.15 12c-.31-.22-.59-.46-.82-.72l-1.4-1.55c-.19-.21-.43-.38-.69-.5-.29-.14-.62-.23-.96-.23h-.03C6.01 9 5 10.01 5 11.25V12H2v8c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-8H11.15zM7 20H5v-6h2v6zm4 0H9v-6h2v6zm4 0h-2v-6h2v6zm4 0h-2v-6h2v6zM13.42 7.21c.57.62.82 1.41.67 2.2l-.11.59h1.91l.06-.43c.21-1.36-.27-2.71-1.3-3.71l-.07-.07c-.57-.62-.82-1.41-.67-2.2L14 3h-1.89l-.06.43c-.2 1.36.27 2.71 1.3 3.72l.07.06z"},"children":[]}]};exports.ic_hot_tub_twotone=ic_hot_tub_twotone;var ic_house={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M19,9.3V4h-3v2.6L12,3L2,12h3v8h5v-6h4v6h5v-8h3L19,9.3z M10,10c0-1.1,0.9-2,2-2s2,0.9,2,2H10z"},"children":[{"name":"path","attribs":{"d":"M19,9.3V4h-3v2.6L12,3L2,12h3v8h5v-6h4v6h5v-8h3L19,9.3z M10,10c0-1.1,0.9-2,2-2s2,0.9,2,2H10z"},"children":[]}]}]}]};exports.ic_house=ic_house;var ic_house_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M19,9.3V4h-3v2.6L12,3L2,12h3v8h6v-6h2v6h6v-8h3L19,9.3z M17,18h-2v-6H9v6H7v-7.81l5-4.5l5,4.5V18z"},"children":[{"name":"path","attribs":{"d":"M19,9.3V4h-3v2.6L12,3L2,12h3v8h6v-6h2v6h6v-8h3L19,9.3z M17,18h-2v-6H9v6H7v-7.81l5-4.5l5,4.5V18z"},"children":[]}]},{"name":"path","attribs":{"d":"M10,10h4c0-1.1-0.9-2-2-2S10,8.9,10,10z"},"children":[{"name":"path","attribs":{"d":"M10,10h4c0-1.1-0.9-2-2-2S10,8.9,10,10z"},"children":[]}]}]}]}]}]};exports.ic_house_outline=ic_house_outline;var ic_house_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M7,10.19V18h2v-6h6v6h2v-7.81l-5-4.5L7,10.19z M14,10h-4c0-1.1,0.9-2,2-2S14,8.9,14,10z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M7,10.19V18h2v-6h6v6h2v-7.81l-5-4.5L7,10.19z M14,10h-4c0-1.1,0.9-2,2-2S14,8.9,14,10z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M19,9.3V4h-3v2.6L12,3L2,12h3v8h6v-6h2v6h6v-8h3L19,9.3z M17,18h-2v-6H9v6H7v-7.81l5-4.5l5,4.5V18z"},"children":[{"name":"path","attribs":{"d":"M19,9.3V4h-3v2.6L12,3L2,12h3v8h6v-6h2v6h6v-8h3L19,9.3z M17,18h-2v-6H9v6H7v-7.81l5-4.5l5,4.5V18z"},"children":[]}]},{"name":"path","attribs":{"d":"M10,10h4c0-1.1-0.9-2-2-2S10,8.9,10,10z"},"children":[{"name":"path","attribs":{"d":"M10,10h4c0-1.1-0.9-2-2-2S10,8.9,10,10z"},"children":[]}]}]}]}]}]};exports.ic_house_twotone=ic_house_twotone;var ic_house_siding={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M19,12h3L12,3L2,12h3v8h2v-2h10v2h2V12z M7.21,10h9.58L17,10.19V12H7v-1.81L7.21,10z M14.57,8H9.43L12,5.69L14.57,8z M7,16 v-2h10v2H7z"},"children":[]}]};exports.ic_house_siding=ic_house_siding;var ic_house_siding_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M19,12h3L12,3L2,12h3v8h2v-2h10v2h2V12z M7.21,10h9.58L17,10.19V12H7v-1.81L7.21,10z M14.57,8H9.43L12,5.69L14.57,8z M7,16 v-2h10v2H7z"},"children":[]}]};exports.ic_house_siding_outline=ic_house_siding_outline;var ic_house_siding_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M7.21,10h9.58L17,10.19V12H7v-1.81L7.21,10z M14.57,8H9.43L12,5.69L14.57,8z M7,16v-2h10v2H7z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M19,12h3L12,3L2,12h3v8h2v-2h10v2h2V12z M7.21,10h9.58L17,10.19V12H7v-1.81L7.21,10z M14.57,8H9.43L12,5.69L14.57,8z M7,16 v-2h10v2H7z"},"children":[]}]};exports.ic_house_siding_twotone=ic_house_siding_twotone;var ic_kitchen={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 2.01L6 2c-1.1 0-2 .89-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.11-.9-1.99-2-1.99zM18 20H6v-9.02h12V20zm0-11H6V4h12v5zM8 5h2v3H8zm0 7h2v5H8z"},"children":[]}]};exports.ic_kitchen=ic_kitchen;var ic_kitchen_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8 5h2v3H8zm0 7h2v5H8zm10-9.99L6 2c-1.1 0-2 .89-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.11-.9-1.99-2-1.99zM18 20H6v-9.02h12V20zm0-11H6V4h12v5z"},"children":[]}]};exports.ic_kitchen_outline=ic_kitchen_outline;var ic_kitchen_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8 5h2v3H8zm0 7h2v5H8zm-2 8h12v-9.02H6V20zm2-8h2v5H8v-5zM6 9h12V4H6v5zm2-4h2v3H8V5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M18 2.01L6 2c-1.1 0-2 .89-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.11-.9-1.99-2-1.99zM18 20H6v-9.02h12V20zm0-11H6V4h12v5zM8 5h2v3H8zm0 7h2v5H8z"},"children":[]}]};exports.ic_kitchen_twotone=ic_kitchen_twotone;var ic_meeting_room={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M14 6v15H3v-2h2V3h9v1h5v15h2v2h-4V6h-3zm-4 5v2h2v-2h-2z"},"children":[]}]};exports.ic_meeting_room=ic_meeting_room;var ic_meeting_room_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 19V4h-4V3H5v16H3v2h12V6h2v15h4v-2h-2zm-6 0H7V5h6v14zm-3-8h2v2h-2z"},"children":[]}]};exports.ic_meeting_room_outline=ic_meeting_room_outline;var ic_meeting_room_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 19h6V5H7v14zm3-8h2v2h-2v-2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M19 19V4h-4V3H5v16H3v2h12V6h2v15h4v-2h-2zm-6 0H7V5h6v14zm-3-8h2v2h-2z"},"children":[]}]};exports.ic_meeting_room_twotone=ic_meeting_room_twotone;var ic_microwave={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M6.8,10.61L5.37,9.19C5.73,8.79,6.59,8,7.75,8c0.8,0,1.39,0.39,1.81,0.67C9.87,8.88,10.07,9,10.25,9 c0.37,0,0.8-0.41,0.95-0.61l1.42,1.42c-0.36,0.4-1.22,1.19-2.37,1.19c-0.79,0-1.37-0.38-1.79-0.66C8.13,10.12,7.94,10,7.75,10 C7.38,10,6.95,10.41,6.8,10.61z M7.75,15c0.19,0,0.38,0.12,0.71,0.34c0.42,0.28,1,0.66,1.79,0.66c1.16,0,2.01-0.79,2.37-1.19 l-1.42-1.42c-0.15,0.2-0.59,0.61-0.95,0.61c-0.18,0-0.38-0.12-0.69-0.33C9.14,13.39,8.55,13,7.75,13c-1.16,0-2.02,0.79-2.38,1.19 l1.42,1.42C6.95,15.41,7.38,15,7.75,15z M22,6v12c0,1.1-0.9,2-2,2H4c-1.1,0-2-0.9-2-2V6c0-1.1,0.9-2,2-2h16C21.1,4,22,4.9,22,6z M14,6H4v12h10V6z M19,16c0-0.55-0.45-1-1-1c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1C18.55,17,19,16.55,19,16z M19,12 c0-0.55-0.45-1-1-1c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1C18.55,13,19,12.55,19,12z M19,7h-2v2h2V7z"},"children":[]}]};exports.ic_microwave=ic_microwave;var ic_microwave_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M4,6h10v12H4V6z M20,18h-4V6h4V18z M19,9h-2V7h2V9z M18,13L18,13c-0.55,0-1-0.45-1-1v0c0-0.55,0.45-1,1-1h0c0.55,0,1,0.45,1,1v0C19,12.55,18.55,13,18,13z M18,17 L18,17c-0.55,0-1-0.45-1-1v0c0-0.55,0.45-1,1-1h0c0.55,0,1,0.45,1,1v0C19,16.55,18.55,17,18,17z M10.25,16 c-0.79,0-1.37-0.38-1.79-0.66C8.13,15.12,7.94,15,7.75,15c-0.37,0-0.8,0.41-0.95,0.61l-1.42-1.42C5.73,13.79,6.59,13,7.75,13 c0.8,0,1.39,0.39,1.81,0.67C9.87,13.88,10.07,14,10.25,14c0.37,0,0.8-0.41,0.95-0.61l1.42,1.42C12.26,15.21,11.41,16,10.25,16z M10.25,11c-0.79,0-1.37-0.38-1.79-0.66C8.13,10.12,7.94,10,7.75,10c-0.37,0-0.8,0.41-0.95,0.61L5.37,9.19C5.73,8.79,6.59,8,7.75,8 c0.8,0,1.39,0.39,1.81,0.67C9.87,8.88,10.07,9,10.25,9c0.37,0,0.8-0.41,0.95-0.61l1.42,1.42C12.26,10.21,11.41,11,10.25,11z"},"children":[]}]};exports.ic_microwave_outline=ic_microwave_outline;var ic_microwave_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M4,18h10V6H4V18z M7.75,8c0.8,0,1.39,0.39,1.81,0.67C9.87,8.88,10.07,9,10.25,9c0.37,0,0.8-0.41,0.95-0.61 l1.42,1.42c-0.36,0.4-1.22,1.19-2.37,1.19c-0.79,0-1.37-0.38-1.79-0.66C8.13,10.12,7.94,10,7.75,10c-0.37,0-0.8,0.41-0.95,0.61 L5.37,9.19C5.73,8.79,6.59,8,7.75,8z M7.75,13c0.8,0,1.39,0.39,1.81,0.67C9.87,13.88,10.07,14,10.25,14c0.37,0,0.8-0.41,0.95-0.61 l1.42,1.42c-0.36,0.4-1.22,1.19-2.37,1.19c-0.79,0-1.37-0.38-1.79-0.66C8.13,15.12,7.94,15,7.75,15c-0.37,0-0.8,0.41-0.95,0.61 l-1.42-1.42C5.73,13.79,6.59,13,7.75,13z M16,6v12h4V6H16z M18,17c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1 C19,16.55,18.55,17,18,17z M18,13c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1C19,12.55,18.55,13,18,13z M19,9h-2V7h2V9 z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M4,6h10v12H4V6z M20,18h-4V6h4V18z M19,9h-2V7h2V9z M18,13L18,13c-0.55,0-1-0.45-1-1v0c0-0.55,0.45-1,1-1h0c0.55,0,1,0.45,1,1v0C19,12.55,18.55,13,18,13z M18,17 L18,17c-0.55,0-1-0.45-1-1v0c0-0.55,0.45-1,1-1h0c0.55,0,1,0.45,1,1v0C19,16.55,18.55,17,18,17z M10.25,16 c-0.79,0-1.37-0.38-1.79-0.66C8.13,15.12,7.94,15,7.75,15c-0.37,0-0.8,0.41-0.95,0.61l-1.42-1.42C5.73,13.79,6.59,13,7.75,13 c0.8,0,1.39,0.39,1.81,0.67C9.87,13.88,10.07,14,10.25,14c0.37,0,0.8-0.41,0.95-0.61l1.42,1.42C12.26,15.21,11.41,16,10.25,16z M10.25,11c-0.79,0-1.37-0.38-1.79-0.66C8.13,10.12,7.94,10,7.75,10c-0.37,0-0.8,0.41-0.95,0.61L5.37,9.19C5.73,8.79,6.59,8,7.75,8 c0.8,0,1.39,0.39,1.81,0.67C9.87,8.88,10.07,9,10.25,9c0.37,0,0.8-0.41,0.95-0.61l1.42,1.42C12.26,10.21,11.41,11,10.25,11z"},"children":[]}]};exports.ic_microwave_twotone=ic_microwave_twotone;var ic_night_shelter={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M12,3L4,9v12h16V9L12,3z M9.75,12.5c0.69,0,1.25,0.56,1.25,1.25S10.44,15,9.75,15S8.5,14.44,8.5,13.75S9.06,12.5,9.75,12.5z M17,18h-1v-1.5H8V18H7v-7h1v4.5h3.5V12H15c1.1,0,2,0.9,2,2V18z"},"children":[]}]};exports.ic_night_shelter=ic_night_shelter;var ic_night_shelter_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M12,5.5l6,4.5v9H6v-9L12,5.5 M12,3L4,9v12h16V9L12,3L12,3z M15,12h-3.5v3.5H8V11H7v7h1v-1.5h8V18h1v-4 C17,12.9,16.1,12,15,12z M9.75,12.5c-0.69,0-1.25,0.56-1.25,1.25C8.5,14.44,9.06,15,9.75,15S11,14.44,11,13.75 C11,13.06,10.44,12.5,9.75,12.5z"},"children":[]}]};exports.ic_night_shelter_outline=ic_night_shelter_outline;var ic_night_shelter_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M12,5.5l6,4.5v9H6v-9L12,5.5 M15,12h-3.5v3.5H8V11H7v7h1v-1.5h8V18h1v-4C17,12.9,16.1,12,15,12z M9.75,12.5 c-0.69,0-1.25,0.56-1.25,1.25C8.5,14.44,9.06,15,9.75,15S11,14.44,11,13.75C11,13.06,10.44,12.5,9.75,12.5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12,5.5l6,4.5v9H6v-9L12,5.5 M12,3L4,9v12h16V9L12,3L12,3z M15,12h-3.5v3.5H8V11H7v7h1v-1.5h8V18h1v-4 C17,12.9,16.1,12,15,12z M9.75,12.5c-0.69,0-1.25,0.56-1.25,1.25C8.5,14.44,9.06,15,9.75,15S11,14.44,11,13.75 C11,13.06,10.44,12.5,9.75,12.5z"},"children":[]}]};exports.ic_night_shelter_twotone=ic_night_shelter_twotone;var ic_no_backpack={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","y":"0"},"children":[]},{"name":"path","attribs":{"d":"M21.19,21.19L2.81,2.81L1.39,4.22l2.76,2.76C4.06,7.31,4,7.64,4,8v12c0,1.1,0.9,2,2,2h12c0.34,0,0.65-0.09,0.93-0.24 l0.85,0.85L21.19,21.19z M6,14v-2h3.17l2,2H6z M14.83,12L6.98,4.15c0.01,0,0.01-0.01,0.02-0.01V2h3v2h4V2h3v2.14 c1.72,0.45,3,2,3,3.86v9.17l-2-2V12H14.83z"},"children":[]}]};exports.ic_no_backpack=ic_no_backpack;var ic_no_backpack_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","y":"0"},"children":[]},{"name":"path","attribs":{"d":"M6.98,4.15c0.01,0,0.01-0.01,0.02-0.01V2h3v2h4V2h3v2.14c1.72,0.45,3,2,3,3.86v9.17l-2-2V8c0-1.1-0.9-2-2-2H8.83L6.98,4.15z M14.83,12l1.67,1.67V12H14.83z M19.78,22.61l-0.85-0.85C18.65,21.91,18.34,22,18,22H6c-1.1,0-2-0.9-2-2V8 c0-0.36,0.06-0.69,0.15-1.02L1.39,4.22l1.41-1.41l18.38,18.38L19.78,22.61z M17.17,20l-6-6H7.5v-2h1.67L6,8.83V20H17.17z"},"children":[]}]};exports.ic_no_backpack_outline=ic_no_backpack_outline;var ic_no_backpack_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","y":"0"},"children":[]},{"name":"path","attribs":{"d":"M18,15.17V8c0-1.1-0.9-2-2-2H8.83l6,6h1.67v1.67L18,15.17z M17.17,20l-6-6H7.5v-2h1.67L6,8.83V20H17.17z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M6.98,4.15c0.01,0,0.01-0.01,0.02-0.01V2h3v2h4V2h3v2.14c1.72,0.45,3,2,3,3.86v9.17l-2-2V8c0-1.1-0.9-2-2-2H8.83L6.98,4.15z M14.83,12l1.67,1.67V12H14.83z M19.78,22.61l-0.85-0.85C18.65,21.91,18.34,22,18,22H6c-1.1,0-2-0.9-2-2V8 c0-0.36,0.06-0.69,0.15-1.02L1.39,4.22l1.41-1.41l18.38,18.38L19.78,22.61z M17.17,20l-6-6H7.5v-2h1.67L6,8.83V20H17.17z"},"children":[]}]};exports.ic_no_backpack_twotone=ic_no_backpack_twotone;var ic_no_cell={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M8.83,6l-3.7-3.7C5.42,1.55,6.15,1,7,1l10,0.01c1.1,0,2,0.89,2,1.99v13.17l-2-2V6H8.83z M19.78,22.61l-0.91-0.91 C18.58,22.45,17.85,23,17,23H7c-1.1,0-2-0.9-2-2V7.83L1.39,4.22l1.41-1.41l18.38,18.38L19.78,22.61z M15.17,18L7,9.83V18H15.17z"},"children":[{"name":"path","attribs":{"d":"M8.83,6l-3.7-3.7C5.42,1.55,6.15,1,7,1l10,0.01c1.1,0,2,0.89,2,1.99v13.17l-2-2V6H8.83z M19.78,22.61l-0.91-0.91 C18.58,22.45,17.85,23,17,23H7c-1.1,0-2-0.9-2-2V7.83L1.39,4.22l1.41-1.41l18.38,18.38L19.78,22.61z M15.17,18L7,9.83V18H15.17z"},"children":[]}]}]}]};exports.ic_no_cell=ic_no_cell;var ic_no_cell_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M17,6v8.17l2,2V3c0-1.1-0.9-1.99-2-1.99L7,1C6.15,1,5.42,1.55,5.13,2.3L8.83,6H17z M7,3h10v1H7V3z M21.19,21.19L19,19l-2-2 L7,7L5,5L2.81,2.81L1.39,4.22L5,7.83V21c0,1.1,0.9,2,2,2h10c0.85,0,1.58-0.55,1.87-1.3l0.91,0.91L21.19,21.19z M17,21H7v-1h10V21z M7,18V9.83L15.17,18H7z"},"children":[{"name":"path","attribs":{"d":"M17,6v8.17l2,2V3c0-1.1-0.9-1.99-2-1.99L7,1C6.15,1,5.42,1.55,5.13,2.3L8.83,6H17z M7,3h10v1H7V3z M21.19,21.19L19,19l-2-2 L7,7L5,5L2.81,2.81L1.39,4.22L5,7.83V21c0,1.1,0.9,2,2,2h10c0.85,0,1.58-0.55,1.87-1.3l0.91,0.91L21.19,21.19z M17,21H7v-1h10V21z M7,18V9.83L15.17,18H7z"},"children":[]}]}]}]};exports.ic_no_cell_outline=ic_no_cell_outline;var ic_no_cell_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M7,21h10v-1H7V21z M7,3v1h10V3H7z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M7,21h10v-1H7V21z M7,3v1h10V3H7z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M17,6v8.17l2,2V3c0-1.1-0.9-1.99-2-1.99L7,1C6.15,1,5.42,1.55,5.13,2.3L8.83,6H17z M7,3h10v1H7V3z M21.19,21.19L2.81,2.81 L1.39,4.22L5,7.83V21c0,1.1,0.9,2,2,2h10c0.85,0,1.58-0.55,1.87-1.3l0.91,0.91L21.19,21.19z M17,21H7v-1h10V21z M7,18V9.83 L15.17,18H7z"},"children":[{"name":"path","attribs":{"d":"M17,6v8.17l2,2V3c0-1.1-0.9-1.99-2-1.99L7,1C6.15,1,5.42,1.55,5.13,2.3L8.83,6H17z M7,3h10v1H7V3z M21.19,21.19L2.81,2.81 L1.39,4.22L5,7.83V21c0,1.1,0.9,2,2,2h10c0.85,0,1.58-0.55,1.87-1.3l0.91,0.91L21.19,21.19z M17,21H7v-1h10V21z M7,18V9.83 L15.17,18H7z"},"children":[]}]}]}]};exports.ic_no_cell_twotone=ic_no_cell_twotone;var ic_no_drinks={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M5.83,3H21v2l-6.2,6.97L9.83,7h6.74l1.78-2H7.83L5.83,3z M19.78,22.61L18,20.83V21H6v-2h5v-5l-1.37-1.54L1.39,4.22 l1.41-1.41L3,3l18.19,18.19L19.78,22.61z M16.17,19L13,15.83V19H16.17z"},"children":[{"name":"path","attribs":{"d":"M5.83,3H21v2l-6.2,6.97L9.83,7h6.74l1.78-2H7.83L5.83,3z M19.78,22.61L18,20.83V21H6v-2h5v-5l-1.37-1.54L1.39,4.22 l1.41-1.41L3,3l18.19,18.19L19.78,22.61z M16.17,19L13,15.83V19H16.17z"},"children":[]}]}]}]};exports.ic_no_drinks=ic_no_drinks;var ic_no_drinks_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M21.19,21.19L2.81,2.81L1.39,4.22l8.23,8.23L11,14v5H6v2h12v-0.17l1.78,1.78L21.19,21.19z M13,19v-3.17L16.17,19H13z M7.83,5l-2-2H21v2l-6.2,6.97l-1.42-1.42L14.77,9h-2.94l-2-2h6.74l1.78-2H7.83z"},"children":[{"name":"path","attribs":{"d":"M21.19,21.19L2.81,2.81L1.39,4.22l8.23,8.23L11,14v5H6v2h12v-0.17l1.78,1.78L21.19,21.19z M13,19v-3.17L16.17,19H13z M7.83,5l-2-2H21v2l-6.2,6.97l-1.42-1.42L14.77,9h-2.94l-2-2h6.74l1.78-2H7.83z"},"children":[]}]}]}]};exports.ic_no_drinks_outline=ic_no_drinks_outline;var ic_no_drinks_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"polygon","attribs":{"opacity":".3","points":"14.77,9 11.83,9 13.38,10.56"},"children":[{"name":"polygon","attribs":{"opacity":".3","points":"14.77,9 11.83,9 13.38,10.56"},"children":[]}]},{"name":"path","attribs":{"d":"M21.19,21.19L2.81,2.81L1.39,4.22l8.23,8.23L11,14v5H6v2h12v-0.17l1.78,1.78L21.19,21.19z M13,19v-3.17L16.17,19H13z M7.83,5l-2-2H21v2l-6.2,6.97l-1.42-1.42L14.77,9h-2.94l-2-2h6.74l1.78-2H7.83z"},"children":[{"name":"path","attribs":{"d":"M21.19,21.19L2.81,2.81L1.39,4.22l8.23,8.23L11,14v5H6v2h12v-0.17l1.78,1.78L21.19,21.19z M13,19v-3.17L16.17,19H13z M7.83,5l-2-2H21v2l-6.2,6.97l-1.42-1.42L14.77,9h-2.94l-2-2h6.74l1.78-2H7.83z"},"children":[]}]}]}]};exports.ic_no_drinks_twotone=ic_no_drinks_twotone;var ic_no_flash={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M13.93,13.93L2.45,2.45L1.04,3.87l5.3,5.3L6.14,9.4H3.6C2.72,9.4,2,10.12,2,11v9.4C2,21.28,2.72,22,3.6,22h12.8 c0.75,0,1.38-0.52,1.55-1.22l2.18,2.18l1.41-1.41L18,18L13.93,13.93z M10,20c-2.21,0-4-1.79-4-4c0-1.95,1.4-3.57,3.25-3.92 l1.57,1.57c-0.26-0.09-0.53-0.15-0.82-0.15c-1.38,0-2.5,1.12-2.5,2.5c0,1.38,1.12,2.5,2.5,2.5c1.38,0,2.5-1.12,2.5-2.5 c0-0.29-0.06-0.56-0.15-0.82l1.57,1.57C13.57,18.6,11.95,20,10,20z M18,15.17L10.83,8h1.75l1.28,1.4h2.54c0.88,0,1.6,0.72,1.6,1.6 V15.17z M20.4,5.6H22L19,11V7h-1V2h4L20.4,5.6z"},"children":[{"name":"path","attribs":{"d":"M13.93,13.93L2.45,2.45L1.04,3.87l5.3,5.3L6.14,9.4H3.6C2.72,9.4,2,10.12,2,11v9.4C2,21.28,2.72,22,3.6,22h12.8 c0.75,0,1.38-0.52,1.55-1.22l2.18,2.18l1.41-1.41L18,18L13.93,13.93z M10,20c-2.21,0-4-1.79-4-4c0-1.95,1.4-3.57,3.25-3.92 l1.57,1.57c-0.26-0.09-0.53-0.15-0.82-0.15c-1.38,0-2.5,1.12-2.5,2.5c0,1.38,1.12,2.5,2.5,2.5c1.38,0,2.5-1.12,2.5-2.5 c0-0.29-0.06-0.56-0.15-0.82l1.57,1.57C13.57,18.6,11.95,20,10,20z M18,15.17L10.83,8h1.75l1.28,1.4h2.54c0.88,0,1.6,0.72,1.6,1.6 V15.17z M20.4,5.6H22L19,11V7h-1V2h4L20.4,5.6z"},"children":[]}]}]}]};exports.ic_no_flash=ic_no_flash;var ic_no_flash_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M20.4,5.6H22L19,11V7h-1V2h4L20.4,5.6z M16,11.4l0,1.77l2,2V11c0-0.88-0.72-1.6-1.6-1.6h-2.54L12.58,8h-1.75l3.4,3.4H16z M2.1,2.1L0.69,3.51l5.66,5.66L6.14,9.4H3.6C2.72,9.4,2,10.12,2,11v9.4C2,21.28,2.72,22,3.6,22h12.8c0.75,0,1.38-0.52,1.55-1.22 l2.54,2.54l1.41-1.41L2.1,2.1z M11.5,15.5c0,0.83-0.67,1.5-1.5,1.5s-1.5-0.67-1.5-1.5S9.17,14,10,14S11.5,14.67,11.5,15.5z M15.96,20H4v-8.6h2.14h0.88l0.59-0.65l0.15-0.16l1.5,1.5C7.68,12.43,6.5,13.82,6.5,15.5c0,1.93,1.57,3.5,3.5,3.5 c1.68,0,3.07-1.18,3.42-2.76l2.55,2.55L15.96,20z"},"children":[{"name":"path","attribs":{"d":"M20.4,5.6H22L19,11V7h-1V2h4L20.4,5.6z M16,11.4l0,1.77l2,2V11c0-0.88-0.72-1.6-1.6-1.6h-2.54L12.58,8h-1.75l3.4,3.4H16z M2.1,2.1L0.69,3.51l5.66,5.66L6.14,9.4H3.6C2.72,9.4,2,10.12,2,11v9.4C2,21.28,2.72,22,3.6,22h12.8c0.75,0,1.38-0.52,1.55-1.22 l2.54,2.54l1.41-1.41L2.1,2.1z M11.5,15.5c0,0.83-0.67,1.5-1.5,1.5s-1.5-0.67-1.5-1.5S9.17,14,10,14S11.5,14.67,11.5,15.5z M15.96,20H4v-8.6h2.14h0.88l0.59-0.65l0.15-0.16l1.5,1.5C7.68,12.43,6.5,13.82,6.5,15.5c0,1.93,1.57,3.5,3.5,3.5 c1.68,0,3.07-1.18,3.42-2.76l2.55,2.55L15.96,20z"},"children":[]}]},{"name":"path","attribs":{"d":"M0,0h24v24H0V0z","fill":"none"},"children":[{"name":"path","attribs":{"d":"M0,0h24v24H0V0z","fill":"none"},"children":[]}]}]}]};exports.ic_no_flash_outline=ic_no_flash_outline;var ic_no_flash_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M13.42,16.24l2.55,2.55L15.96,20H4v-8.6h3.02l0.59-0.65l0.15-0.16l1.5,1.5C7.68,12.43,6.5,13.82,6.5,15.5 c0,1.93,1.57,3.5,3.5,3.5C11.68,19,13.07,17.82,13.42,16.24z M16,13.17l0-1.77h-1.77L16,13.17z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M13.42,16.24l2.55,2.55L15.96,20H4v-8.6h3.02l0.59-0.65l0.15-0.16l1.5,1.5C7.68,12.43,6.5,13.82,6.5,15.5 c0,1.93,1.57,3.5,3.5,3.5C11.68,19,13.07,17.82,13.42,16.24z M16,13.17l0-1.77h-1.77L16,13.17z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M20.4,5.6H22L19,11V7h-1V2h4L20.4,5.6z M16,11.4v1.77l2,2V11c0-0.88-0.72-1.6-1.6-1.6h-2.54L12.58,8h-1.75l3.4,3.4H16z M17.97,17.97L2.1,2.1L0.69,3.51l5.66,5.66L6.14,9.4H3.6C2.72,9.4,2,10.12,2,11v9.4C2,21.28,2.72,22,3.6,22h12.8 c0.75,0,1.38-0.52,1.55-1.22l2.54,2.54l1.41-1.41L17.97,17.97z M11.5,15.5c0,0.83-0.67,1.5-1.5,1.5s-1.5-0.67-1.5-1.5 S9.17,14,10,14S11.5,14.67,11.5,15.5z M15.96,20H4v-8.6h2.14h0.88l0.59-0.65l0.15-0.16l1.5,1.5C7.68,12.43,6.5,13.82,6.5,15.5 c0,1.93,1.57,3.5,3.5,3.5c1.68,0,3.07-1.18,3.42-2.76l2.55,2.55L15.96,20z"},"children":[{"name":"path","attribs":{"d":"M20.4,5.6H22L19,11V7h-1V2h4L20.4,5.6z M16,11.4v1.77l2,2V11c0-0.88-0.72-1.6-1.6-1.6h-2.54L12.58,8h-1.75l3.4,3.4H16z M17.97,17.97L2.1,2.1L0.69,3.51l5.66,5.66L6.14,9.4H3.6C2.72,9.4,2,10.12,2,11v9.4C2,21.28,2.72,22,3.6,22h12.8 c0.75,0,1.38-0.52,1.55-1.22l2.54,2.54l1.41-1.41L17.97,17.97z M11.5,15.5c0,0.83-0.67,1.5-1.5,1.5s-1.5-0.67-1.5-1.5 S9.17,14,10,14S11.5,14.67,11.5,15.5z M15.96,20H4v-8.6h2.14h0.88l0.59-0.65l0.15-0.16l1.5,1.5C7.68,12.43,6.5,13.82,6.5,15.5 c0,1.93,1.57,3.5,3.5,3.5c1.68,0,3.07-1.18,3.42-2.76l2.55,2.55L15.96,20z"},"children":[]}]},{"name":"path","attribs":{"d":"M0,0h24v24H0V0z","fill":"none"},"children":[{"name":"path","attribs":{"d":"M0,0h24v24H0V0z","fill":"none"},"children":[]}]}]}]};exports.ic_no_flash_twotone=ic_no_flash_twotone;var ic_no_food={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M11.35,8.52L11,5h5V1h2v4h5l-1.38,13.79L11.35,8.52z M1,21v1c0,0.55,0.45,1,1,1h13c0.55,0,1-0.45,1-1v-1H1z M21.9,21.9 L2.1,2.1L0.69,3.51l5.7,5.7C3.28,9.87,1,11.99,1,15h11.17l2,2H1v2h15v-0.17l4.49,4.49L21.9,21.9z"},"children":[{"name":"path","attribs":{"d":"M11.35,8.52L11,5h5V1h2v4h5l-1.38,13.79L11.35,8.52z M1,21v1c0,0.55,0.45,1,1,1h13c0.55,0,1-0.45,1-1v-1H1z M21.9,21.9 L2.1,2.1L0.69,3.51l5.7,5.7C3.28,9.87,1,11.99,1,15h11.17l2,2H1v2h15v-0.17l4.49,4.49L21.9,21.9z"},"children":[]}]}]}]};exports.ic_no_food=ic_no_food;var ic_no_food_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M1,21h15.01v0.98c0,0.56-0.45,1.01-1.01,1.01H2.01C1.45,22.99,1,22.54,1,21.98V21z M20.49,23.31L16,18.83V19H1v-2h13.17 l-2-2H1c0-3.24,2.46-5.17,5.38-5.79l-5.7-5.7L2.1,2.1L13,13l2,2l6.9,6.9L20.49,23.31z M10.17,13l-2-2c-1.42,0.06-3.52,0.56-4.55,2 H10.17z M23,5h-5V1h-2v4h-5l0.23,2h9.56l-1,9.97l1.83,1.83L23,5z"},"children":[{"name":"path","attribs":{"d":"M1,21h15.01v0.98c0,0.56-0.45,1.01-1.01,1.01H2.01C1.45,22.99,1,22.54,1,21.98V21z M20.49,23.31L16,18.83V19H1v-2h13.17 l-2-2H1c0-3.24,2.46-5.17,5.38-5.79l-5.7-5.7L2.1,2.1L13,13l2,2l6.9,6.9L20.49,23.31z M10.17,13l-2-2c-1.42,0.06-3.52,0.56-4.55,2 H10.17z M23,5h-5V1h-2v4h-5l0.23,2h9.56l-1,9.97l1.83,1.83L23,5z"},"children":[]}]}]}]};exports.ic_no_food_outline=ic_no_food_outline;var ic_no_food_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M8.16,11c-1.43,0.07-3.52,0.57-4.54,2h6.55L8.16,11z","enable-background":"new","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M8.16,11c-1.43,0.07-3.52,0.57-4.54,2h6.55L8.16,11z","enable-background":"new","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M1,21h15.01v0.98c0,0.56-0.45,1.01-1.01,1.01H2.01C1.45,22.99,1,22.54,1,21.98V21z M20.49,23.31L16,18.83V19H1v-2h13.17 l-2-2H1c0-3.24,2.46-5.17,5.38-5.79l-5.7-5.7L2.1,2.1L13,13l2,2l6.9,6.9L20.49,23.31z M10.17,13l-2-2c-1.42,0.06-3.52,0.56-4.55,2 H10.17z M23,5h-5V1h-2v4h-5l0.23,2h9.56l-1,9.97l1.83,1.83L23,5z"},"children":[{"name":"path","attribs":{"d":"M1,21h15.01v0.98c0,0.56-0.45,1.01-1.01,1.01H2.01C1.45,22.99,1,22.54,1,21.98V21z M20.49,23.31L16,18.83V19H1v-2h13.17 l-2-2H1c0-3.24,2.46-5.17,5.38-5.79l-5.7-5.7L2.1,2.1L13,13l2,2l6.9,6.9L20.49,23.31z M10.17,13l-2-2c-1.42,0.06-3.52,0.56-4.55,2 H10.17z M23,5h-5V1h-2v4h-5l0.23,2h9.56l-1,9.97l1.83,1.83L23,5z"},"children":[]}]}]}]};exports.ic_no_food_twotone=ic_no_food_twotone;var ic_no_meeting_room={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M11 11h-1v2h2v-1l9.73 9.73L20.46 23 14 16.54V21H3v-2h2V7.54l-4-4 1.27-1.27L11 11zm3 .49L5.51 3H14v1h5v12.49l-2-2V6h-3v5.49z"},"children":[]}]};exports.ic_no_meeting_room=ic_no_meeting_room;var ic_no_meeting_room_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 5v3.88l2 2V6h3v7.88l2 2V4h-5V3H6.12l2 2zM2.41 2.13L1 3.54l4 4V19H3v2h11v-4.46L20.46 23l1.41-1.41L2.41 2.13zM12 19H7V9.54l5 5V19z"},"children":[]}]};exports.ic_no_meeting_room_outline=ic_no_meeting_room_outline;var ic_no_meeting_room_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 5H8.12L12 8.88V6zM7 19h5v-4.46l-5-5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 5v3.88l2 2V6h3v7.88l2 2V4h-5V3H6.12l2 2zM2.41 2.13L1 3.54l4 4V19H3v2h11v-4.46L20.46 23l1.41-1.41L2.41 2.13zM12 19H7V9.54l5 5V19z"},"children":[]}]};exports.ic_no_meeting_room_twotone=ic_no_meeting_room_twotone;var ic_no_photography={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M10.94,8.12L7.48,4.66L9,3h6l1.83,2H20c1.1,0,2,0.9,2,2v12c0,0.05-0.01,0.1-0.02,0.16l-5.1-5.1C16.96,13.71,17,13.36,17,13 c0-2.76-2.24-5-5-5C11.64,8,11.29,8.04,10.94,8.12z M20.49,23.31L18.17,21H4c-1.1,0-2-0.9-2-2V7c0-0.59,0.27-1.12,0.68-1.49l-2-2 L2.1,2.1l19.8,19.8L20.49,23.31z M14.49,17.32l-1.5-1.5C12.67,15.92,12.35,16,12,16c-1.66,0-3-1.34-3-3c0-0.35,0.08-0.67,0.19-0.98 l-1.5-1.5C7.25,11.24,7,12.09,7,13c0,2.76,2.24,5,5,5C12.91,18,13.76,17.75,14.49,17.32z"},"children":[{"name":"path","attribs":{"d":"M10.94,8.12L7.48,4.66L9,3h6l1.83,2H20c1.1,0,2,0.9,2,2v12c0,0.05-0.01,0.1-0.02,0.16l-5.1-5.1C16.96,13.71,17,13.36,17,13 c0-2.76-2.24-5-5-5C11.64,8,11.29,8.04,10.94,8.12z M20.49,23.31L18.17,21H4c-1.1,0-2-0.9-2-2V7c0-0.59,0.27-1.12,0.68-1.49l-2-2 L2.1,2.1l19.8,19.8L20.49,23.31z M14.49,17.32l-1.5-1.5C12.67,15.92,12.35,16,12,16c-1.66,0-3-1.34-3-3c0-0.35,0.08-0.67,0.19-0.98 l-1.5-1.5C7.25,11.24,7,12.09,7,13c0,2.76,2.24,5,5,5C12.91,18,13.76,17.75,14.49,17.32z"},"children":[]}]}]}]};exports.ic_no_photography=ic_no_photography;var ic_no_photography_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M8.9,6.07L7.48,4.66L9,3h6l1.83,2H20c1.1,0,2,0.9,2,2v12c0,0.05-0.01,0.1-0.02,0.16L20,17.17V7h-4.05l-1.83-2H9.88 L8.9,6.07z M20.49,23.31L18.17,21H4c-1.1,0-2-0.9-2-2V7c0-0.59,0.27-1.12,0.68-1.49l-2-2L2.1,2.1l19.8,19.8L20.49,23.31z M9.19,12.02C9.08,12.33,9,12.65,9,13c0,1.66,1.34,3,3,3c0.35,0,0.67-0.08,0.98-0.19L9.19,12.02z M16.17,19l-1.68-1.68 C13.76,17.75,12.91,18,12,18c-2.76,0-5-2.24-5-5c0-0.91,0.25-1.76,0.68-2.49L4.17,7H4v12H16.17z M14.81,11.98l2.07,2.07 C16.96,13.71,17,13.36,17,13c0-2.76-2.24-5-5-5c-0.36,0-0.71,0.04-1.06,0.12l2.07,2.07C13.85,10.49,14.51,11.15,14.81,11.98z"},"children":[{"name":"path","attribs":{"d":"M8.9,6.07L7.48,4.66L9,3h6l1.83,2H20c1.1,0,2,0.9,2,2v12c0,0.05-0.01,0.1-0.02,0.16L20,17.17V7h-4.05l-1.83-2H9.88 L8.9,6.07z M20.49,23.31L18.17,21H4c-1.1,0-2-0.9-2-2V7c0-0.59,0.27-1.12,0.68-1.49l-2-2L2.1,2.1l19.8,19.8L20.49,23.31z M9.19,12.02C9.08,12.33,9,12.65,9,13c0,1.66,1.34,3,3,3c0.35,0,0.67-0.08,0.98-0.19L9.19,12.02z M16.17,19l-1.68-1.68 C13.76,17.75,12.91,18,12,18c-2.76,0-5-2.24-5-5c0-0.91,0.25-1.76,0.68-2.49L4.17,7H4v12H16.17z M14.81,11.98l2.07,2.07 C16.96,13.71,17,13.36,17,13c0-2.76-2.24-5-5-5c-0.36,0-0.71,0.04-1.06,0.12l2.07,2.07C13.85,10.49,14.51,11.15,14.81,11.98z"},"children":[]}]}]}]}]}]};exports.ic_no_photography_outline=ic_no_photography_outline;var ic_no_photography_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M10.94,8.12L8.9,6.07L9.88,5h4.24l1.83,2H20v10.17l-3.12-3.12 C16.96,13.71,17,13.36,17,13c0-2.76-2.24-5-5-5C11.64,8,11.29,8.04,10.94,8.12z M12,18c-2.76,0-5-2.24-5-5 c0-0.91,0.25-1.76,0.68-2.49L4.17,7H4v12h12.17l-1.68-1.68C13.76,17.75,12.91,18,12,18z","enable-background":"new","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M10.94,8.12L8.9,6.07L9.88,5h4.24l1.83,2H20v10.17l-3.12-3.12 C16.96,13.71,17,13.36,17,13c0-2.76-2.24-5-5-5C11.64,8,11.29,8.04,10.94,8.12z M12,18c-2.76,0-5-2.24-5-5 c0-0.91,0.25-1.76,0.68-2.49L4.17,7H4v12h12.17l-1.68-1.68C13.76,17.75,12.91,18,12,18z","enable-background":"new","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M8.9,6.07L7.48,4.66L9,3h6l1.83,2H20c1.1,0,2,0.9,2,2v12c0,0.05-0.01,0.1-0.02,0.16L20,17.17V7h-4.05l-1.83-2H9.88 L8.9,6.07z M20.49,23.31L18.17,21H4c-1.1,0-2-0.9-2-2V7c0-0.59,0.27-1.12,0.68-1.49l-2-2L2.1,2.1L7,7l2.01,2.01l1.43,1.43l4.1,4.1 l1.43,1.43L19,19l1.82,1.82l1.08,1.08L20.49,23.31z M9.19,12.02C9.08,12.33,9,12.65,9,13c0,1.65,1.35,3,3,3 c0.35,0,0.67-0.08,0.98-0.19L9.19,12.02z M16.17,19l-1.68-1.68C13.76,17.75,12.91,18,12,18c-2.76,0-5-2.24-5-5 c0-0.91,0.25-1.76,0.68-2.49L4.17,7H4v12H16.17z M14.81,11.98l2.08,2.08C16.96,13.71,17,13.36,17,13c0-2.76-2.24-5-5-5 c-0.36,0-0.71,0.04-1.06,0.12l2.08,2.08C13.85,10.5,14.5,11.15,14.81,11.98z"},"children":[{"name":"path","attribs":{"d":"M8.9,6.07L7.48,4.66L9,3h6l1.83,2H20c1.1,0,2,0.9,2,2v12c0,0.05-0.01,0.1-0.02,0.16L20,17.17V7h-4.05l-1.83-2H9.88 L8.9,6.07z M20.49,23.31L18.17,21H4c-1.1,0-2-0.9-2-2V7c0-0.59,0.27-1.12,0.68-1.49l-2-2L2.1,2.1L7,7l2.01,2.01l1.43,1.43l4.1,4.1 l1.43,1.43L19,19l1.82,1.82l1.08,1.08L20.49,23.31z M9.19,12.02C9.08,12.33,9,12.65,9,13c0,1.65,1.35,3,3,3 c0.35,0,0.67-0.08,0.98-0.19L9.19,12.02z M16.17,19l-1.68-1.68C13.76,17.75,12.91,18,12,18c-2.76,0-5-2.24-5-5 c0-0.91,0.25-1.76,0.68-2.49L4.17,7H4v12H16.17z M14.81,11.98l2.08,2.08C16.96,13.71,17,13.36,17,13c0-2.76-2.24-5-5-5 c-0.36,0-0.71,0.04-1.06,0.12l2.08,2.08C13.85,10.5,14.5,11.15,14.81,11.98z"},"children":[]}]}]}]};exports.ic_no_photography_twotone=ic_no_photography_twotone;var ic_no_stroller={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M6,18c1.1,0,2,0.9,2,2s-0.9,2-2,2s-2-0.9-2-2S4.9,18,6,18z M18.65,3c-1.66,0-2.54,1.27-3.18,2.03l-3.5,4.11L17,14.17v-7.9 C17.58,5.59,17.97,5,18.65,5C19.42,5,20,5.66,20,6.48V7h2V6.48C22,4.56,20.52,3,18.65,3z M10.67,10.67L2.81,2.81L1.39,4.22 l7.97,7.97L6.7,15.31c-0.55,0.65-0.09,1.65,0.76,1.65h6.66l1.17,1.17C14.54,18.42,14,19.14,14,20c0,1.1,0.9,2,2,2 c0.86,0,1.58-0.54,1.87-1.3l1.91,1.91l1.41-1.41l-4.8-4.8L10.67,10.67z M13.47,5.03c0.27-0.32,0.58-0.72,0.98-1.09 c-2.46-1.19-5.32-1.22-7.81-0.13l4.25,4.25L13.47,5.03z"},"children":[{"name":"path","attribs":{"d":"M6,18c1.1,0,2,0.9,2,2s-0.9,2-2,2s-2-0.9-2-2S4.9,18,6,18z M18.65,3c-1.66,0-2.54,1.27-3.18,2.03l-3.5,4.11L17,14.17v-7.9 C17.58,5.59,17.97,5,18.65,5C19.42,5,20,5.66,20,6.48V7h2V6.48C22,4.56,20.52,3,18.65,3z M10.67,10.67L2.81,2.81L1.39,4.22 l7.97,7.97L6.7,15.31c-0.55,0.65-0.09,1.65,0.76,1.65h6.66l1.17,1.17C14.54,18.42,14,19.14,14,20c0,1.1,0.9,2,2,2 c0.86,0,1.58-0.54,1.87-1.3l1.91,1.91l1.41-1.41l-4.8-4.8L10.67,10.67z M13.47,5.03c0.27-0.32,0.58-0.72,0.98-1.09 c-2.46-1.19-5.32-1.22-7.81-0.13l4.25,4.25L13.47,5.03z"},"children":[]}]}]}]};exports.ic_no_stroller=ic_no_stroller;var ic_no_stroller_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M8,20c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2S8,18.9,8,20z M15,8.66v3.51l2,2v-7.9C17.58,5.59,17.97,5,18.65,5 C19.42,5,20,5.66,20,6.48V7h2V6.48C22,4.56,20.52,3,18.65,3c-1.66,0-2.54,1.27-3.18,2.03l-3.5,4.11l1.42,1.42L15,8.66z M19.78,22.61l-1.91-1.91C17.58,21.46,16.86,22,16,22c-1.1,0-2-0.9-2-2c0-0.86,0.54-1.58,1.3-1.87L14.17,17H7.43 c-0.85,0-1.31-1-0.76-1.65l2.69-3.16L1.39,4.22l1.41-1.41l7.86,7.86l1.42,1.42l0,0l9.11,9.11L19.78,22.61z M12.17,15l-1.39-1.39 L9.6,15H12.17z M10,5c0.29,0,0.58,0.02,0.86,0.05L9.49,6.67l1.42,1.42L14.3,4.1C13.03,3.4,11.56,3,10,3C8.77,3,7.6,3.25,6.53,3.7 L8.1,5.27C8.71,5.1,9.35,5,10,5z"},"children":[{"name":"path","attribs":{"d":"M8,20c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2S8,18.9,8,20z M15,8.66v3.51l2,2v-7.9C17.58,5.59,17.97,5,18.65,5 C19.42,5,20,5.66,20,6.48V7h2V6.48C22,4.56,20.52,3,18.65,3c-1.66,0-2.54,1.27-3.18,2.03l-3.5,4.11l1.42,1.42L15,8.66z M19.78,22.61l-1.91-1.91C17.58,21.46,16.86,22,16,22c-1.1,0-2-0.9-2-2c0-0.86,0.54-1.58,1.3-1.87L14.17,17H7.43 c-0.85,0-1.31-1-0.76-1.65l2.69-3.16L1.39,4.22l1.41-1.41l7.86,7.86l1.42,1.42l0,0l9.11,9.11L19.78,22.61z M12.17,15l-1.39-1.39 L9.6,15H12.17z M10,5c0.29,0,0.58,0.02,0.86,0.05L9.49,6.67l1.42,1.42L14.3,4.1C13.03,3.4,11.56,3,10,3C8.77,3,7.6,3.25,6.53,3.7 L8.1,5.27C8.71,5.1,9.35,5,10,5z"},"children":[]}]}]}]};exports.ic_no_stroller_outline=ic_no_stroller_outline;var ic_no_stroller_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M8.1,5.27C8.71,5.1,9.35,5,10,5c0.29,0,0.58,0.02,0.86,0.05L9.49,6.67L8.1,5.27z M15,12.17V8.66l-1.61,1.89 L15,12.17z M12.17,15l-1.39-1.39L9.6,15H12.17z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M8.1,5.27C8.71,5.1,9.35,5,10,5c0.29,0,0.58,0.02,0.86,0.05L9.49,6.67L8.1,5.27z M15,12.17V8.66l-1.61,1.89 L15,12.17z M12.17,15l-1.39-1.39L9.6,15H12.17z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M8,20c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2S8,18.9,8,20z M15,8.66v3.51l2,2v-7.9C17.58,5.59,17.97,5,18.65,5 C19.42,5,20,5.66,20,6.48V7h2V6.48C22,4.56,20.52,3,18.65,3c-1.66,0-2.54,1.27-3.18,2.03l-3.5,4.11l1.42,1.42L15,8.66z M19.78,22.61l-1.91-1.91C17.58,21.46,16.86,22,16,22c-1.1,0-2-0.9-2-2c0-0.86,0.54-1.58,1.3-1.87L14.17,17H7.43 c-0.85,0-1.31-1-0.76-1.65l2.69-3.16L1.39,4.22l1.41-1.41l7.86,7.86l1.42,1.42l0,0l9.11,9.11L19.78,22.61z M12.17,15l-1.39-1.39 L9.6,15H12.17z M10,5c0.29,0,0.58,0.02,0.86,0.05L9.49,6.67l1.42,1.42L14.3,4.1C13.03,3.4,11.56,3,10,3C8.77,3,7.6,3.25,6.53,3.7 L8.1,5.27C8.71,5.1,9.35,5,10,5z"},"children":[{"name":"path","attribs":{"d":"M8,20c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2S8,18.9,8,20z M15,8.66v3.51l2,2v-7.9C17.58,5.59,17.97,5,18.65,5 C19.42,5,20,5.66,20,6.48V7h2V6.48C22,4.56,20.52,3,18.65,3c-1.66,0-2.54,1.27-3.18,2.03l-3.5,4.11l1.42,1.42L15,8.66z M19.78,22.61l-1.91-1.91C17.58,21.46,16.86,22,16,22c-1.1,0-2-0.9-2-2c0-0.86,0.54-1.58,1.3-1.87L14.17,17H7.43 c-0.85,0-1.31-1-0.76-1.65l2.69-3.16L1.39,4.22l1.41-1.41l7.86,7.86l1.42,1.42l0,0l9.11,9.11L19.78,22.61z M12.17,15l-1.39-1.39 L9.6,15H12.17z M10,5c0.29,0,0.58,0.02,0.86,0.05L9.49,6.67l1.42,1.42L14.3,4.1C13.03,3.4,11.56,3,10,3C8.77,3,7.6,3.25,6.53,3.7 L8.1,5.27C8.71,5.1,9.35,5,10,5z"},"children":[]}]}]}]};exports.ic_no_stroller_twotone=ic_no_stroller_twotone;var ic_pool={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 21c-1.11 0-1.73-.37-2.18-.64-.37-.22-.6-.36-1.15-.36-.56 0-.78.13-1.15.36-.46.27-1.07.64-2.18.64s-1.73-.37-2.18-.64c-.37-.22-.6-.36-1.15-.36-.56 0-.78.13-1.15.36-.46.27-1.08.64-2.19.64-1.11 0-1.73-.37-2.18-.64-.37-.23-.6-.36-1.15-.36s-.78.13-1.15.36c-.46.27-1.08.64-2.19.64v-2c.56 0 .78-.13 1.15-.36.46-.27 1.08-.64 2.19-.64s1.73.37 2.18.64c.37.23.59.36 1.15.36.56 0 .78-.13 1.15-.36.46-.27 1.08-.64 2.19-.64 1.11 0 1.73.37 2.18.64.37.22.6.36 1.15.36s.78-.13 1.15-.36c.45-.27 1.07-.64 2.18-.64s1.73.37 2.18.64c.37.23.59.36 1.15.36v2zm0-4.5c-1.11 0-1.73-.37-2.18-.64-.37-.22-.6-.36-1.15-.36-.56 0-.78.13-1.15.36-.45.27-1.07.64-2.18.64s-1.73-.37-2.18-.64c-.37-.22-.6-.36-1.15-.36-.56 0-.78.13-1.15.36-.45.27-1.07.64-2.18.64s-1.73-.37-2.18-.64c-.37-.22-.6-.36-1.15-.36s-.78.13-1.15.36c-.47.27-1.09.64-2.2.64v-2c.56 0 .78-.13 1.15-.36.45-.27 1.07-.64 2.18-.64s1.73.37 2.18.64c.37.22.6.36 1.15.36.56 0 .78-.13 1.15-.36.45-.27 1.07-.64 2.18-.64s1.73.37 2.18.64c.37.22.6.36 1.15.36s.78-.13 1.15-.36c.45-.27 1.07-.64 2.18-.64s1.73.37 2.18.64c.37.22.6.36 1.15.36v2zM8.67 12c.56 0 .78-.13 1.15-.36.46-.27 1.08-.64 2.19-.64 1.11 0 1.73.37 2.18.64.37.22.6.36 1.15.36s.78-.13 1.15-.36c.12-.07.26-.15.41-.23L10.48 5C8.93 3.45 7.5 2.99 5 3v2.5c1.82-.01 2.89.39 4 1.5l1 1-3.25 3.25c.31.12.56.27.77.39.37.23.59.36 1.15.36z"},"children":[]},{"name":"circle","attribs":{"cx":"16.5","cy":"5.5","r":"2.5"},"children":[]}]};exports.ic_pool=ic_pool;var ic_pool_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 8l-3.25 3.25c.31.12.56.27.77.39.37.23.59.36 1.15.36s.78-.13 1.15-.36c.46-.27 1.08-.64 2.19-.64s1.73.37 2.18.64c.37.22.6.36 1.15.36.55 0 .78-.13 1.15-.36.12-.07.26-.15.41-.23L10.48 5C8.93 3.45 7.5 2.99 5 3v2.5c1.82-.01 2.89.39 4 1.5l1 1zm12 8.5h-.02.02zm-16.65-1c.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64s1.73-.37 2.18-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64s1.73-.37 2.18-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.06.63 2.16.64v-2c-.55 0-.78-.14-1.15-.36-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.37.23-.6.36-1.15.36s-.78-.14-1.15-.36c-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.37.23-.59.36-1.15.36-.55 0-.78-.14-1.15-.36-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.37.23-.59.36-1.15.36v2c1.11 0 1.73-.37 2.2-.64.37-.23.6-.36 1.15-.36zM18.67 18c-1.11 0-1.73.37-2.18.64-.37.23-.6.36-1.15.36-.55 0-.78-.14-1.15-.36-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.19.64c-.37.23-.59.36-1.15.36s-.78-.13-1.15-.36c-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.19.64c-.37.23-.59.36-1.15.36v2c1.11 0 1.73-.37 2.19-.64.37-.23.6-.36 1.15-.36.55 0 .78.13 1.15.36.45.27 1.07.64 2.18.64s1.73-.37 2.19-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64s1.72-.37 2.18-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64v-2c-.56 0-.78-.13-1.15-.36-.45-.27-1.07-.64-2.18-.64z"},"children":[]},{"name":"circle","attribs":{"cx":"16.5","cy":"5.5","r":"2.5"},"children":[]}]};exports.ic_pool_outline=ic_pool_outline;var ic_pool_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 21c-1.11 0-1.73-.37-2.18-.64-.37-.22-.6-.36-1.15-.36-.56 0-.78.13-1.15.36-.46.27-1.07.64-2.18.64s-1.73-.37-2.18-.64c-.37-.22-.6-.36-1.15-.36-.56 0-.78.13-1.15.36-.46.27-1.08.64-2.19.64s-1.73-.37-2.18-.64c-.37-.23-.6-.36-1.15-.36s-.78.13-1.15.36c-.46.27-1.08.64-2.19.64v-2c.56 0 .78-.13 1.15-.36.46-.27 1.08-.64 2.19-.64s1.73.37 2.18.64c.37.23.59.36 1.15.36.56 0 .78-.13 1.15-.36.46-.27 1.08-.64 2.19-.64s1.73.37 2.18.64c.37.22.6.36 1.15.36s.78-.13 1.15-.36c.45-.27 1.07-.64 2.18-.64s1.73.37 2.18.64c.37.23.59.36 1.15.36v2zm0-4.5c-1.11 0-1.73-.37-2.18-.64-.37-.22-.6-.36-1.15-.36-.56 0-.78.13-1.15.36-.45.27-1.07.64-2.18.64s-1.73-.37-2.18-.64c-.37-.22-.6-.36-1.15-.36-.56 0-.78.13-1.15.36-.45.27-1.07.64-2.18.64s-1.73-.37-2.18-.64c-.37-.22-.6-.36-1.15-.36s-.78.13-1.15.36c-.47.27-1.09.64-2.2.64v-2c.56 0 .78-.13 1.15-.36.45-.27 1.07-.64 2.18-.64s1.73.37 2.18.64c.37.22.6.36 1.15.36.56 0 .78-.13 1.15-.36.45-.27 1.07-.64 2.18-.64s1.73.37 2.18.64c.37.22.6.36 1.15.36s.78-.13 1.15-.36c.45-.27 1.07-.64 2.18-.64s1.73.37 2.18.64c.37.22.6.36 1.15.36v2H22zM8.67 12c.56 0 .78-.13 1.15-.36.46-.27 1.08-.64 2.19-.64s1.73.37 2.18.64c.37.22.6.36 1.15.36s.78-.13 1.15-.36c.12-.07.26-.15.41-.23L10.48 5C8.93 3.45 7.5 2.99 5 3v2.5c1.82-.01 2.89.39 4 1.5l1 1-3.25 3.25c.31.12.56.27.77.39.37.23.59.36 1.15.36z","opacity":".3"},"children":[]},{"name":"circle","attribs":{"cx":"16.5","cy":"5.5","opacity":".3","r":"2.5"},"children":[]},{"name":"path","attribs":{"d":"M22 16.5h-.02.02zM10 8l-3.25 3.25c.31.12.56.27.77.39.37.23.59.36 1.15.36s.78-.13 1.15-.36c.46-.27 1.08-.64 2.19-.64s1.73.37 2.18.64c.37.22.6.36 1.15.36.55 0 .78-.13 1.15-.36.12-.07.26-.15.41-.23L10.48 5C8.93 3.45 7.5 2.99 5 3v2.5c1.82-.01 2.89.39 4 1.5l1 1zm-4.65 7.5c.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64s1.73-.37 2.18-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64s1.73-.37 2.18-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.06.63 2.16.64v-2c-.55 0-.78-.14-1.15-.36-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.37.23-.6.36-1.15.36s-.78-.14-1.15-.36c-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.37.23-.59.36-1.15.36-.55 0-.78-.14-1.15-.36-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.37.23-.59.36-1.15.36v2c1.11 0 1.73-.37 2.2-.64.37-.23.6-.36 1.15-.36zM18.67 18c-1.11 0-1.73.37-2.18.64-.37.23-.6.36-1.15.36-.55 0-.78-.14-1.15-.36-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.19.64c-.37.23-.59.36-1.15.36s-.78-.13-1.15-.36c-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.19.64c-.37.23-.59.36-1.15.36v2c1.11 0 1.73-.37 2.19-.64.37-.23.6-.36 1.15-.36.55 0 .78.13 1.15.36.45.27 1.07.64 2.18.64s1.73-.37 2.19-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64s1.72-.37 2.18-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64v-2c-.56 0-.78-.13-1.15-.36-.45-.27-1.07-.64-2.18-.64z"},"children":[]},{"name":"circle","attribs":{"cx":"16.5","cy":"5.5","r":"2.5"},"children":[]}]};exports.ic_pool_twotone=ic_pool_twotone;var ic_rice_bowl={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M22,12L22,12c0-5.52-4.48-10-10-10S2,6.48,2,12c0,3.69,2.47,6.86,6,8.25V22h8v-1.75C19.53,18.86,22,15.69,22,12z M20,12h-4 V5.08C18.39,6.47,20,9.05,20,12z M14,4.26V12h-4V4.26C10.64,4.1,11.31,4,12,4S13.36,4.1,14,4.26z M4,12c0-2.95,1.61-5.53,4-6.92V12 H4z"},"children":[]}]};exports.ic_rice_bowl=ic_rice_bowl;var ic_rice_bowl_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M19.66,14c-0.66,1.92-2.24,3.54-4.4,4.39L14,18.88V20h-4v-1.12l-1.27-0.5c-2.16-0.85-3.74-2.47-4.4-4.39H19.66 M12,2 C6.48,2,2,6.48,2,12c0,3.69,2.47,6.86,6,8.25V22h8v-1.75c3.53-1.39,6-4.56,6-8.25h0C22,6.48,17.52,2,12,2L12,2z M10,12V4.26 C10.64,4.1,11.31,4,12,4s1.36,0.1,2,0.26V12H10L10,12z M16,12V5.08c2.39,1.39,4,3.96,4,6.92H16L16,12z M4,12 c0-2.95,1.61-5.53,4-6.92V12H4L4,12z"},"children":[]}]};exports.ic_rice_bowl_outline=ic_rice_bowl_outline;var ic_rice_bowl_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M19.66,14c-0.66,1.92-2.24,3.54-4.4,4.39L14,18.88V20h-4v-1.12l-1.27-0.5c-2.16-0.85-3.74-2.47-4.4-4.39 H19.66","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M19.66,14c-0.66,1.92-2.24,3.54-4.4,4.39L14,18.88V20h-4v-1.12l-1.27-0.5c-2.16-0.85-3.74-2.47-4.4-4.39H19.66 M12,2 C6.48,2,2,6.48,2,12c0,3.69,2.47,6.86,6,8.25V22h8v-1.75c3.53-1.39,6-4.56,6-8.25h0C22,6.48,17.52,2,12,2L12,2z M10,12V4.26 C10.64,4.1,11.31,4,12,4s1.36,0.1,2,0.26V12H10L10,12z M16,12V5.08c2.39,1.39,4,3.96,4,6.92H16L16,12z M4,12 c0-2.95,1.61-5.53,4-6.92V12H4L4,12z"},"children":[]}]};exports.ic_rice_bowl_twotone=ic_rice_bowl_twotone;var ic_roofing={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M13,18h-2v-2h2V18z M15,14H9v6h6V14L15,14z M19,9.3L19,9.3V4h-3v2.6v0L12,3L2,12h3l7-6.31L19,12h3L19,9.3z"},"children":[]}]};exports.ic_roofing=ic_roofing;var ic_roofing_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M13,18h-2v-2h2V18z M15,14H9v6h6V14L15,14z M19,9.3L19,9.3V4h-3v2.6v0L12,3L2,12h3l7-6.31L19,12h3L19,9.3z"},"children":[]}]};exports.ic_roofing_outline=ic_roofing_outline;var ic_roofing_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"rect","attribs":{"height":"2","opacity":".3","width":"2","x":"11","y":"16"},"children":[]},{"name":"path","attribs":{"d":"M13,18h-2v-2h2V18z M15,14H9v6h6V14L15,14z M19,9.3L19,9.3V4h-3v2.6v0L12,3L2,12h3l7-6.31L19,12h3L19,9.3z"},"children":[]}]};exports.ic_roofing_twotone=ic_roofing_twotone;var ic_room_preferences={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M14,11.26V6h3v4h2V4h-5V3H5v16H3v2h9.26C11.47,19.87,11,18.49,11,17C11,14.62,12.19,12.53,14,11.26z M10,11h2v2h-2V11z M21.69,16.37l1.14-1l-1-1.73l-1.45,0.49c-0.32-0.27-0.68-0.48-1.08-0.63L19,12h-2l-0.3,1.49c-0.4,0.15-0.76,0.36-1.08,0.63 l-1.45-0.49l-1,1.73l1.14,1c-0.08,0.5-0.08,0.76,0,1.26l-1.14,1l1,1.73l1.45-0.49c0.32,0.27,0.68,0.48,1.08,0.63L17,22h2l0.3-1.49 c0.4-0.15,0.76-0.36,1.08-0.63l1.45,0.49l1-1.73l-1.14-1C21.77,17.13,21.77,16.87,21.69,16.37z M18,19c-1.1,0-2-0.9-2-2s0.9-2,2-2 s2,0.9,2,2S19.1,19,18,19z"},"children":[{"name":"path","attribs":{"d":"M14,11.26V6h3v4h2V4h-5V3H5v16H3v2h9.26C11.47,19.87,11,18.49,11,17C11,14.62,12.19,12.53,14,11.26z M10,11h2v2h-2V11z M21.69,16.37l1.14-1l-1-1.73l-1.45,0.49c-0.32-0.27-0.68-0.48-1.08-0.63L19,12h-2l-0.3,1.49c-0.4,0.15-0.76,0.36-1.08,0.63 l-1.45-0.49l-1,1.73l1.14,1c-0.08,0.5-0.08,0.76,0,1.26l-1.14,1l1,1.73l1.45-0.49c0.32,0.27,0.68,0.48,1.08,0.63L17,22h2l0.3-1.49 c0.4-0.15,0.76-0.36,1.08-0.63l1.45,0.49l1-1.73l-1.14-1C21.77,17.13,21.77,16.87,21.69,16.37z M18,19c-1.1,0-2-0.9-2-2s0.9-2,2-2 s2,0.9,2,2S19.1,19,18,19z"},"children":[]}]}]}]};exports.ic_room_preferences=ic_room_preferences;var ic_room_preferences_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M21.69,16.37l1.14-1l-1-1.73l-1.45,0.49c-0.32-0.27-0.68-0.48-1.08-0.63L19,12h-2l-0.3,1.49c-0.4,0.15-0.76,0.36-1.08,0.63 l-1.45-0.49l-1,1.73l1.14,1c-0.08,0.5-0.08,0.76,0,1.26l-1.14,1l1,1.73l1.45-0.49c0.32,0.27,0.68,0.48,1.08,0.63L17,22h2l0.3-1.49 c0.4-0.15,0.76-0.36,1.08-0.63l1.45,0.49l1-1.73l-1.14-1C21.77,17.13,21.77,16.87,21.69,16.37z M18,19c-1.1,0-2-0.9-2-2s0.9-2,2-2 s2,0.9,2,2S19.1,19,18,19z M19,4v6h-2V6h-2v6h-2V5H7v14h5v2H3v-2h2V3h10v1H19z M12,13h-2v-2h2V13z"},"children":[{"name":"path","attribs":{"d":"M21.69,16.37l1.14-1l-1-1.73l-1.45,0.49c-0.32-0.27-0.68-0.48-1.08-0.63L19,12h-2l-0.3,1.49c-0.4,0.15-0.76,0.36-1.08,0.63 l-1.45-0.49l-1,1.73l1.14,1c-0.08,0.5-0.08,0.76,0,1.26l-1.14,1l1,1.73l1.45-0.49c0.32,0.27,0.68,0.48,1.08,0.63L17,22h2l0.3-1.49 c0.4-0.15,0.76-0.36,1.08-0.63l1.45,0.49l1-1.73l-1.14-1C21.77,17.13,21.77,16.87,21.69,16.37z M18,19c-1.1,0-2-0.9-2-2s0.9-2,2-2 s2,0.9,2,2S19.1,19,18,19z M19,4v6h-2V6h-2v6h-2V5H7v14h5v2H3v-2h2V3h10v1H19z M12,13h-2v-2h2V13z"},"children":[]}]}]}]};exports.ic_room_preferences_outline=ic_room_preferences_outline;var ic_room_preferences_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M13,12.11V5H7v14h4.29C11.1,18.37,11,17.7,11,17C11,15.09,11.76,13.37,13,12.11 z M10,11h2v2h-2V11z","enable-background":"new","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M13,12.11V5H7v14h4.29C11.1,18.37,11,17.7,11,17C11,15.09,11.76,13.37,13,12.11 z M10,11h2v2h-2V11z","enable-background":"new","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M12,13h-2v-2h2V13z M7,19V5h6v7.11c0.57-0.59,1.25-1.07,2-1.42V6h2v4h1h1V4h-4V3H5v16H3v2h9.26c-0.42-0.6-0.75-1.28-0.97-2 H7z M21.69,17.63l1.14,1l-1,1.73l-1.45-0.49c-0.32,0.27-0.68,0.48-1.08,0.63L19,22h-2l-0.3-1.49c-0.4-0.15-0.76-0.36-1.08-0.63 l-1.45,0.49l-1-1.73l1.14-1c-0.08-0.5-0.08-0.76,0-1.26l-1.14-1l1-1.73l1.45,0.49c0.32-0.27,0.68-0.48,1.08-0.63L17,12h2l0.3,1.49 c0.4,0.15,0.76,0.36,1.08,0.63l1.45-0.49l1,1.73l-1.14,1C21.77,16.87,21.77,17.13,21.69,17.63z M20,17c0-1.1-0.9-2-2-2s-2,0.9-2,2 s0.9,2,2,2S20,18.1,20,17z"},"children":[{"name":"path","attribs":{"d":"M12,13h-2v-2h2V13z M7,19V5h6v7.11c0.57-0.59,1.25-1.07,2-1.42V6h2v4h1h1V4h-4V3H5v16H3v2h9.26c-0.42-0.6-0.75-1.28-0.97-2 H7z M21.69,17.63l1.14,1l-1,1.73l-1.45-0.49c-0.32,0.27-0.68,0.48-1.08,0.63L19,22h-2l-0.3-1.49c-0.4-0.15-0.76-0.36-1.08-0.63 l-1.45,0.49l-1-1.73l1.14-1c-0.08-0.5-0.08-0.76,0-1.26l-1.14-1l1-1.73l1.45,0.49c0.32-0.27,0.68-0.48,1.08-0.63L17,12h2l0.3,1.49 c0.4,0.15,0.76,0.36,1.08,0.63l1.45-0.49l1,1.73l-1.14,1C21.77,16.87,21.77,17.13,21.69,17.63z M20,17c0-1.1-0.9-2-2-2s-2,0.9-2,2 s0.9,2,2,2S20,18.1,20,17z"},"children":[]}]}]}]};exports.ic_room_preferences_twotone=ic_room_preferences_twotone;var ic_room_service={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M2 17h20v2H2zm11.84-9.21c.1-.24.16-.51.16-.79 0-1.1-.9-2-2-2s-2 .9-2 2c0 .28.06.55.16.79C6.25 8.6 3.27 11.93 3 16h18c-.27-4.07-3.25-7.4-7.16-8.21z"},"children":[]}]};exports.ic_room_service=ic_room_service;var ic_room_service_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18.98 17H2v2h20v-2zM21 16c-.27-4.07-3.25-7.4-7.16-8.21.1-.24.16-.51.16-.79 0-1.1-.9-2-2-2s-2 .9-2 2c0 .28.06.55.16.79C6.25 8.6 3.27 11.93 3 16h18zm-9-6.42c2.95 0 5.47 1.83 6.5 4.41h-13c1.03-2.58 3.55-4.41 6.5-4.41z"},"children":[]}]};exports.ic_room_service_outline=ic_room_service_outline;var ic_room_service_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 9.58c-2.95 0-5.47 1.83-6.5 4.41h13c-1.03-2.58-3.55-4.41-6.5-4.41z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M2 17h20v2H2zm11.84-9.21c.1-.24.16-.51.16-.79 0-1.1-.9-2-2-2s-2 .9-2 2c0 .28.06.55.16.79C6.25 8.6 3.27 11.93 3 16h18c-.27-4.07-3.25-7.4-7.16-8.21zM12 9.58c2.95 0 5.47 1.83 6.5 4.41h-13c1.03-2.58 3.55-4.41 6.5-4.41z"},"children":[]}]};exports.ic_room_service_twotone=ic_room_service_twotone;var ic_rv_hookup={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14 11h4v3h-4z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 17v-6c0-1.1-.9-2-2-2H7V7l-3 3 3 3v-2h4v3H4v3c0 1.1.9 2 2 2h2c0 1.66 1.34 3 3 3s3-1.34 3-3h8v-2h-2zm-9 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm7-6h-4v-3h4v3zM17 2v2H9v2h8v2l3-3z"},"children":[]}]};exports.ic_rv_hookup=ic_rv_hookup;var ic_rv_hookup_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 17v-6c0-1.1-.9-2-2-2H7V7l-3 3 3 3v-2h4v3H4v3c0 1.1.9 2 2 2h2c0 1.66 1.34 3 3 3s3-1.34 3-3h8v-2h-2zm-9 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm7-6h-4v-3h4v3zM17 2v2H9v2h8v2l3-3-3-3z"},"children":[]}]};exports.ic_rv_hookup_outline=ic_rv_hookup_outline;var ic_rv_hookup_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 17v-6c0-1.1-.9-2-2-2H7V7l-3 3 3 3v-2h4v3H4v3c0 1.1.9 2 2 2h2c0 1.66 1.34 3 3 3s3-1.34 3-3h8v-2h-2zm-9 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm7-6h-4v-3h4v3zM17 2v2H9v2h8v2l3-3-3-3z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 17v-6c0-1.1-.9-2-2-2H7V7l-3 3 3 3v-2h4v3H4v3c0 1.1.9 2 2 2h2c0 1.66 1.34 3 3 3s3-1.34 3-3h8v-2h-2zm-9 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm7-6h-4v-3h4v3zM17 2v2H9v2h8v2l3-3-3-3z"},"children":[]}]};exports.ic_rv_hookup_twotone=ic_rv_hookup_twotone;var ic_smoke_free={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M2 6l6.99 7H2v3h9.99l7 7 1.26-1.25-17-17zm18.5 7H22v3h-1.5zM18 13h1.5v3H18zm.85-8.12c.62-.61 1-1.45 1-2.38h-1.5c0 1.02-.83 1.85-1.85 1.85v1.5c2.24 0 4 1.83 4 4.07V12H22V9.92c0-2.23-1.28-4.15-3.15-5.04zM14.5 8.7h1.53c1.05 0 1.97.74 1.97 2.05V12h1.5v-1.59c0-1.8-1.6-3.16-3.47-3.16H14.5c-1.02 0-1.85-.98-1.85-2s.83-1.75 1.85-1.75V2c-1.85 0-3.35 1.5-3.35 3.35s1.5 3.35 3.35 3.35zm2.5 7.23V13h-2.93z"},"children":[]}]};exports.ic_smoke_free=ic_smoke_free;var ic_smoke_free_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20.5 13H22v3h-1.5zM18 13h1.5v3H18zm-1 0h-2.34L17 15.34zm-2.5-4.35h1.53c1.05 0 1.97.74 1.97 2.05V12h1.5v-1.64c0-1.81-1.6-3.16-3.47-3.16H14.5c-1.02 0-1.85-.98-1.85-2s.83-1.75 1.85-1.75v-1.5c-1.85 0-3.35 1.5-3.35 3.35s1.5 3.35 3.35 3.35zm4.35-3.92c.62-.61 1-1.45 1-2.38h-1.5c0 1.02-.83 1.85-1.85 1.85v1.5c2.24 0 4 1.83 4 4.07V12H22V9.76c0-2.22-1.28-4.14-3.15-5.03zM3.41 4.59L2 6l7 7H2v3h10l7 7 1.41-1.41z"},"children":[]}]};exports.ic_smoke_free_outline=ic_smoke_free_outline;var ic_smoke_free_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20.5 13H22v3h-1.5zM18 13h1.5v3H18zm.85-8.27c.62-.61 1-1.45 1-2.38h-1.5c0 1.02-.83 1.85-1.85 1.85v1.5c2.24 0 4 1.83 4 4.07V12H22V9.76c0-2.22-1.28-4.14-3.15-5.03zM14.5 8.65h1.53c1.05 0 1.97.74 1.97 2.05V12h1.5v-1.64c0-1.81-1.6-3.16-3.47-3.16H14.5c-1.02 0-1.85-.98-1.85-2s.83-1.75 1.85-1.75v-1.5c-1.85 0-3.35 1.5-3.35 3.35s1.5 3.35 3.35 3.35zM17 13h-2.34L17 15.34zM3.41 4.59L2 6l7 7H2v3h10l7 7 1.41-1.41z"},"children":[]}]};exports.ic_smoke_free_twotone=ic_smoke_free_twotone;var ic_smoking_rooms={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M2 16h15v3H2zm18.5 0H22v3h-1.5zM18 16h1.5v3H18zm.85-8.27c.62-.61 1-1.45 1-2.38C19.85 3.5 18.35 2 16.5 2v1.5c1.02 0 1.85.83 1.85 1.85S17.52 7.2 16.5 7.2v1.5c2.24 0 4 1.83 4 4.07V15H22v-2.24c0-2.22-1.28-4.14-3.15-5.03zm-2.82 2.47H14.5c-1.02 0-1.85-.98-1.85-2s.83-1.75 1.85-1.75v-1.5c-1.85 0-3.35 1.5-3.35 3.35s1.5 3.35 3.35 3.35h1.53c1.05 0 1.97.74 1.97 2.05V15h1.5v-1.64c0-1.81-1.6-3.16-3.47-3.16z"},"children":[]}]};exports.ic_smoking_rooms=ic_smoking_rooms;var ic_smoking_rooms_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 16h1.5v3H18zM2 16h15v3H2zm14.03-5.8H14.5c-1.02 0-1.85-.98-1.85-2s.83-1.75 1.85-1.75v-1.5c-1.85 0-3.35 1.5-3.35 3.35s1.5 3.35 3.35 3.35h1.53c1.05 0 1.97.74 1.97 2.05V15h1.5v-1.64c0-1.81-1.6-3.16-3.47-3.16zM20.5 16H22v3h-1.5zm-1.65-8.27c.62-.61 1-1.45 1-2.38C19.85 3.5 18.35 2 16.5 2v1.5c1.02 0 1.85.83 1.85 1.85S17.52 7.2 16.5 7.2v1.5c2.24 0 4 1.83 4 4.07V15H22v-2.24c0-2.22-1.28-4.14-3.15-5.03z"},"children":[]}]};exports.ic_smoking_rooms_outline=ic_smoking_rooms_outline;var ic_smoking_rooms_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M2 16h15v3H2v-3zm18.5 0H22v3h-1.5v-3zM18 16h1.5v3H18v-3zm.85-8.27c.62-.61 1-1.45 1-2.38C19.85 3.5 18.35 2 16.5 2v1.5c1.02 0 1.85.83 1.85 1.85S17.52 7.2 16.5 7.2v1.5c2.24 0 4 1.83 4 4.07V15H22v-2.24c0-2.22-1.28-4.14-3.15-5.03zm-2.82 2.47H14.5c-1.02 0-1.85-.98-1.85-2s.83-1.75 1.85-1.75v-1.5c-1.85 0-3.35 1.5-3.35 3.35s1.5 3.35 3.35 3.35h1.53c1.05 0 1.97.74 1.97 2.05V15h1.5v-1.64c0-1.81-1.6-3.16-3.47-3.16z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M2 16h15v3H2v-3zm18.5 0H22v3h-1.5v-3zM18 16h1.5v3H18v-3zm.85-8.27c.62-.61 1-1.45 1-2.38C19.85 3.5 18.35 2 16.5 2v1.5c1.02 0 1.85.83 1.85 1.85S17.52 7.2 16.5 7.2v1.5c2.24 0 4 1.83 4 4.07V15H22v-2.24c0-2.22-1.28-4.14-3.15-5.03zm-2.82 2.47H14.5c-1.02 0-1.85-.98-1.85-2s.83-1.75 1.85-1.75v-1.5c-1.85 0-3.35 1.5-3.35 3.35s1.5 3.35 3.35 3.35h1.53c1.05 0 1.97.74 1.97 2.05V15h1.5v-1.64c0-1.81-1.6-3.16-3.47-3.16z"},"children":[]}]};exports.ic_smoking_rooms_twotone=ic_smoking_rooms_twotone;var ic_soap={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M9.12,5l-7.18,6.79C1.34,12.35,1,13.14,1,13.97V20c0,1.66,1.34,3,3,3h6.25H12h5.75c0.69,0,1.25-0.56,1.25-1.25 s-0.56-1.25-1.25-1.25H12v-1h7.75c0.69,0,1.25-0.56,1.25-1.25S20.44,17,19.75,17H12v-1h8.75c0.69,0,1.25-0.56,1.25-1.25 s-0.56-1.25-1.25-1.25H12v-1h6.75c0.69,0,1.25-0.56,1.25-1.25S19.44,10,18.75,10H8.86c0.64-1.11,1.48-2.58,1.49-2.61 c0.09-0.16,0.14-0.33,0.14-0.53c0-0.26-0.09-0.5-0.26-0.7C10.22,6.12,9.12,5,9.12,5L9.12,5z M14,6.25c0.41,0,0.75,0.34,0.75,0.75 S14.41,7.75,14,7.75S13.25,7.41,13.25,7S13.59,6.25,14,6.25 M14,4.75c-1.24,0-2.25,1.01-2.25,2.25S12.76,9.25,14,9.25 S16.25,8.24,16.25,7S15.24,4.75,14,4.75L14,4.75z M19.75,5.5c0.28,0,0.5,0.22,0.5,0.5s-0.22,0.5-0.5,0.5s-0.5-0.22-0.5-0.5 S19.47,5.5,19.75,5.5 M19.75,4c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S20.85,4,19.75,4L19.75,4z M16.5,1C15.67,1,15,1.67,15,2.5 S15.67,4,16.5,4C17.33,4,18,3.33,18,2.5S17.33,1,16.5,1z"},"children":[{"name":"path","attribs":{"d":"M9.12,5l-7.18,6.79C1.34,12.35,1,13.14,1,13.97V20c0,1.66,1.34,3,3,3h6.25H12h5.75c0.69,0,1.25-0.56,1.25-1.25 s-0.56-1.25-1.25-1.25H12v-1h7.75c0.69,0,1.25-0.56,1.25-1.25S20.44,17,19.75,17H12v-1h8.75c0.69,0,1.25-0.56,1.25-1.25 s-0.56-1.25-1.25-1.25H12v-1h6.75c0.69,0,1.25-0.56,1.25-1.25S19.44,10,18.75,10H8.86c0.64-1.11,1.48-2.58,1.49-2.61 c0.09-0.16,0.14-0.33,0.14-0.53c0-0.26-0.09-0.5-0.26-0.7C10.22,6.12,9.12,5,9.12,5L9.12,5z M14,6.25c0.41,0,0.75,0.34,0.75,0.75 S14.41,7.75,14,7.75S13.25,7.41,13.25,7S13.59,6.25,14,6.25 M14,4.75c-1.24,0-2.25,1.01-2.25,2.25S12.76,9.25,14,9.25 S16.25,8.24,16.25,7S15.24,4.75,14,4.75L14,4.75z M19.75,5.5c0.28,0,0.5,0.22,0.5,0.5s-0.22,0.5-0.5,0.5s-0.5-0.22-0.5-0.5 S19.47,5.5,19.75,5.5 M19.75,4c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S20.85,4,19.75,4L19.75,4z M16.5,1C15.67,1,15,1.67,15,2.5 S15.67,4,16.5,4C17.33,4,18,3.33,18,2.5S17.33,1,16.5,1z"},"children":[]}]}]}]};exports.ic_soap=ic_soap;var ic_soap_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M14.25,6C14.66,6,15,6.34,15,6.75S14.66,7.5,14.25,7.5S13.5,7.16,13.5,6.75S13.84,6,14.25,6 M14.25,4.5 C13.01,4.5,12,5.51,12,6.75S13.01,9,14.25,9s2.25-1.01,2.25-2.25S15.49,4.5,14.25,4.5L14.25,4.5z M20,5.5c0.28,0,0.5,0.22,0.5,0.5 S20.28,6.5,20,6.5S19.5,6.28,19.5,6S19.72,5.5,20,5.5 M20,4c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S21.1,4,20,4L20,4z M16.5,1 C15.67,1,15,1.67,15,2.5S15.67,4,16.5,4C17.33,4,18,3.33,18,2.5S17.33,1,16.5,1z M20.75,16c0.69,0,1.25-0.56,1.25-1.25 s-0.56-1.25-1.25-1.25H12v-1h6.75c0.69,0,1.25-0.56,1.25-1.25c0-0.67-0.53-1.2-1.18-1.24L8.87,10l1.48-2.6 c0.09-0.17,0.14-0.34,0.14-0.54c0-0.26-0.09-0.5-0.26-0.7L9.12,5l-7.18,6.8C1.34,12.36,1,13.15,1,13.97V20c0,1.66,1.34,3,3,3h13.75 c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h7.75c0.69,0,1.25-0.56,1.25-1.25S20.44,17,19.75,17H12v-1H20.75z M10,21H4 c-0.55,0-1-0.45-1-1v-6c0-0.39,0.23-0.64,0.36-0.75L7,9.87V12l3,0V21z"},"children":[{"name":"path","attribs":{"d":"M14.25,6C14.66,6,15,6.34,15,6.75S14.66,7.5,14.25,7.5S13.5,7.16,13.5,6.75S13.84,6,14.25,6 M14.25,4.5 C13.01,4.5,12,5.51,12,6.75S13.01,9,14.25,9s2.25-1.01,2.25-2.25S15.49,4.5,14.25,4.5L14.25,4.5z M20,5.5c0.28,0,0.5,0.22,0.5,0.5 S20.28,6.5,20,6.5S19.5,6.28,19.5,6S19.72,5.5,20,5.5 M20,4c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S21.1,4,20,4L20,4z M16.5,1 C15.67,1,15,1.67,15,2.5S15.67,4,16.5,4C17.33,4,18,3.33,18,2.5S17.33,1,16.5,1z M20.75,16c0.69,0,1.25-0.56,1.25-1.25 s-0.56-1.25-1.25-1.25H12v-1h6.75c0.69,0,1.25-0.56,1.25-1.25c0-0.67-0.53-1.2-1.18-1.24L8.87,10l1.48-2.6 c0.09-0.17,0.14-0.34,0.14-0.54c0-0.26-0.09-0.5-0.26-0.7L9.12,5l-7.18,6.8C1.34,12.36,1,13.15,1,13.97V20c0,1.66,1.34,3,3,3h13.75 c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h7.75c0.69,0,1.25-0.56,1.25-1.25S20.44,17,19.75,17H12v-1H20.75z M10,21H4 c-0.55,0-1-0.45-1-1v-6c0-0.39,0.23-0.64,0.36-0.75L7,9.87V12l3,0V21z"},"children":[]}]}]}]};exports.ic_soap_outline=ic_soap_outline;var ic_soap_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M14.25,6C14.66,6,15,6.34,15,6.75S14.66,7.5,14.25,7.5S13.5,7.16,13.5,6.75S13.84,6,14.25,6 M20,5.5 c0.28,0,0.5,0.22,0.5,0.5S20.28,6.5,20,6.5S19.5,6.28,19.5,6S19.72,5.5,20,5.5 M10,21H4c-0.55,0-1-0.45-1-1v-6 c0-0.39,0.23-0.64,0.36-0.75L7,9.87V12l3,0V21z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M14.25,6C14.66,6,15,6.34,15,6.75S14.66,7.5,14.25,7.5S13.5,7.16,13.5,6.75S13.84,6,14.25,6 M20,5.5 c0.28,0,0.5,0.22,0.5,0.5S20.28,6.5,20,6.5S19.5,6.28,19.5,6S19.72,5.5,20,5.5 M10,21H4c-0.55,0-1-0.45-1-1v-6 c0-0.39,0.23-0.64,0.36-0.75L7,9.87V12l3,0V21z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M14.25,6C14.66,6,15,6.34,15,6.75S14.66,7.5,14.25,7.5S13.5,7.16,13.5,6.75S13.84,6,14.25,6 M14.25,4.5 C13.01,4.5,12,5.51,12,6.75S13.01,9,14.25,9s2.25-1.01,2.25-2.25S15.49,4.5,14.25,4.5L14.25,4.5z M20,5.5c0.28,0,0.5,0.22,0.5,0.5 S20.28,6.5,20,6.5S19.5,6.28,19.5,6S19.72,5.5,20,5.5 M20,4c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S21.1,4,20,4L20,4z M16.5,1 C15.67,1,15,1.67,15,2.5S15.67,4,16.5,4C17.33,4,18,3.33,18,2.5S17.33,1,16.5,1z M20.75,16c0.69,0,1.25-0.56,1.25-1.25 s-0.56-1.25-1.25-1.25H12v-1h6.75c0.69,0,1.25-0.56,1.25-1.25c0-0.67-0.53-1.2-1.18-1.24L8.87,10l1.48-2.6 c0.09-0.17,0.14-0.34,0.14-0.54c0-0.26-0.09-0.5-0.26-0.7L9.12,5l-7.18,6.8C1.34,12.36,1,13.15,1,13.97V20c0,1.66,1.34,3,3,3h13.75 c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h7.75c0.69,0,1.25-0.56,1.25-1.25S20.44,17,19.75,17H12v-1H20.75z M10,21H4 c-0.55,0-1-0.45-1-1v-6c0-0.39,0.23-0.64,0.36-0.75L7,9.87V12l3,0V21z"},"children":[{"name":"path","attribs":{"d":"M14.25,6C14.66,6,15,6.34,15,6.75S14.66,7.5,14.25,7.5S13.5,7.16,13.5,6.75S13.84,6,14.25,6 M14.25,4.5 C13.01,4.5,12,5.51,12,6.75S13.01,9,14.25,9s2.25-1.01,2.25-2.25S15.49,4.5,14.25,4.5L14.25,4.5z M20,5.5c0.28,0,0.5,0.22,0.5,0.5 S20.28,6.5,20,6.5S19.5,6.28,19.5,6S19.72,5.5,20,5.5 M20,4c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S21.1,4,20,4L20,4z M16.5,1 C15.67,1,15,1.67,15,2.5S15.67,4,16.5,4C17.33,4,18,3.33,18,2.5S17.33,1,16.5,1z M20.75,16c0.69,0,1.25-0.56,1.25-1.25 s-0.56-1.25-1.25-1.25H12v-1h6.75c0.69,0,1.25-0.56,1.25-1.25c0-0.67-0.53-1.2-1.18-1.24L8.87,10l1.48-2.6 c0.09-0.17,0.14-0.34,0.14-0.54c0-0.26-0.09-0.5-0.26-0.7L9.12,5l-7.18,6.8C1.34,12.36,1,13.15,1,13.97V20c0,1.66,1.34,3,3,3h13.75 c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h7.75c0.69,0,1.25-0.56,1.25-1.25S20.44,17,19.75,17H12v-1H20.75z M10,21H4 c-0.55,0-1-0.45-1-1v-6c0-0.39,0.23-0.64,0.36-0.75L7,9.87V12l3,0V21z"},"children":[]}]}]}]};exports.ic_soap_twotone=ic_soap_twotone;var ic_spa={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0zm13.97 21.49c-.63.23-1.29.4-1.97.51.68-.12 1.33-.29 1.97-.51zM12 22c-.68-.12-1.33-.29-1.97-.51.64.22 1.29.39 1.97.51z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8.55 12c-1.07-.71-2.25-1.27-3.53-1.61 1.28.34 2.46.9 3.53 1.61zm10.43-1.61c-1.29.34-2.49.91-3.57 1.64 1.08-.73 2.28-1.3 3.57-1.64z"},"children":[]},{"name":"path","attribs":{"d":"M15.49 9.63c-.18-2.79-1.31-5.51-3.43-7.63-2.14 2.14-3.32 4.86-3.55 7.63 1.28.68 2.46 1.56 3.49 2.63 1.03-1.06 2.21-1.94 3.49-2.63zm-6.5 2.65c-.14-.1-.3-.19-.45-.29.15.11.31.19.45.29zm6.42-.25c-.13.09-.27.16-.4.26.13-.1.27-.17.4-.26zM12 15.45C9.85 12.17 6.18 10 2 10c0 5.32 3.36 9.82 8.03 11.49.63.23 1.29.4 1.97.51.68-.12 1.33-.29 1.97-.51C18.64 19.82 22 15.32 22 10c-4.18 0-7.85 2.17-10 5.45z"},"children":[]}]};exports.ic_spa=ic_spa;var ic_spa_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.49 9.63c-.18-2.79-1.31-5.51-3.43-7.63-2.14 2.14-3.32 4.86-3.55 7.63 1.28.68 2.46 1.56 3.49 2.63 1.03-1.06 2.21-1.94 3.49-2.63zm-3.44-4.44c.63 1.03 1.07 2.18 1.3 3.38-.47.3-.91.63-1.34.98-.42-.34-.87-.67-1.33-.97.25-1.2.71-2.35 1.37-3.39zM12 15.45c-.82-1.25-1.86-2.34-3.06-3.2-.13-.09-.27-.16-.4-.26.13.09.27.17.39.25C6.98 10.83 4.59 10 2 10c0 5.32 3.36 9.82 8.03 11.49.63.23 1.29.4 1.97.51.68-.12 1.33-.29 1.97-.51C18.64 19.82 22 15.32 22 10c-4.18 0-7.85 2.17-10 5.45zm1.32 4.15c-.44.15-.88.27-1.33.37-.44-.09-.87-.21-1.28-.36-3.29-1.18-5.7-3.99-6.45-7.35 1.1.26 2.15.71 3.12 1.33l-.02.01c.13.09.26.18.39.25l.07.04c.99.72 1.84 1.61 2.51 2.65L12 19.1l1.67-2.55c.69-1.05 1.55-1.95 2.53-2.66l.07-.05c.09-.05.18-.11.27-.17l-.01-.02c.98-.65 2.07-1.13 3.21-1.4-.75 3.37-3.15 6.18-6.42 7.35zm-4.33-7.32c-.02-.01-.04-.03-.05-.04 0 0 .01 0 .01.01.01.01.02.02.04.03z"},"children":[]}]};exports.ic_spa_outline=ic_spa_outline;var ic_spa_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8.55 12c-1.07-.71-2.25-1.27-3.53-1.61 1.28.34 2.46.9 3.53 1.61zm10.43-1.61c-1.29.34-2.49.91-3.57 1.64 1.08-.73 2.28-1.3 3.57-1.64z"},"children":[]},{"name":"path","attribs":{"d":"M8.94 12.25c0-.01 0-.01 0 0-.13-.09-.27-.17-.4-.26.13.1.27.17.4.26zm4.41-3.67c-.22-1.21-.66-2.35-1.3-3.38-.66 1.04-1.12 2.19-1.37 3.39.46.3.9.62 1.33.97.42-.35.87-.68 1.34-.98zm3.19 5.08l.01.02c-.09.06-.18.12-.27.17l-.07.05c-.98.71-1.84 1.61-2.53 2.66L12 19.1l-1.67-2.55c-.68-1.03-1.52-1.92-2.51-2.65l-.07-.04c-.13-.08-.26-.16-.39-.25l.01-.01c-.96-.63-2.01-1.07-3.12-1.33.75 3.36 3.16 6.17 6.45 7.35.42.15.84.27 1.28.36.45-.09.89-.21 1.33-.37 3.27-1.17 5.67-3.98 6.43-7.34-1.14.26-2.23.73-3.2 1.39zm-7.55-1.38","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 15.45c-.82-1.25-1.86-2.34-3.06-3.2-.13-.09-.27-.16-.4-.26.13.09.27.17.39.25C6.98 10.83 4.59 10 2 10c0 5.32 3.36 9.82 8.03 11.49.63.23 1.29.4 1.97.51.68-.12 1.33-.29 1.97-.51C18.64 19.82 22 15.32 22 10c-4.18 0-7.85 2.17-10 5.45zm1.32 4.15c-.44.15-.88.27-1.33.37-.44-.09-.87-.21-1.28-.36-3.29-1.18-5.7-3.99-6.45-7.35 1.1.26 2.15.71 3.12 1.33l-.02.01c.13.09.26.18.39.25l.07.04c.99.72 1.84 1.61 2.51 2.65L12 19.1l1.67-2.55c.69-1.05 1.55-1.95 2.53-2.66l.07-.05c.09-.05.18-.11.27-.17l-.01-.02c.98-.65 2.07-1.13 3.21-1.4-.75 3.37-3.15 6.18-6.42 7.35zm2.17-9.97c-.18-2.79-1.31-5.51-3.43-7.63-2.14 2.14-3.32 4.86-3.55 7.63 1.28.68 2.46 1.56 3.49 2.63 1.03-1.06 2.21-1.94 3.49-2.63zm-3.44-4.44c.63 1.03 1.07 2.18 1.3 3.38-.47.3-.91.63-1.34.98-.42-.34-.87-.67-1.33-.97.25-1.2.71-2.35 1.37-3.39z"},"children":[]},{"name":"path","attribs":{"d":"M8.99 12.28c-.02-.01-.04-.03-.05-.04 0 0 .01 0 .01.01.01.01.02.02.04.03z","opacity":".3"},"children":[]}]};exports.ic_spa_twotone=ic_spa_twotone;var ic_sports_bar={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M19,9h-1.56C17.79,8.41,18,7.73,18,7c0-2.21-1.79-4-4-4c-0.34,0-0.66,0.05-0.98,0.13C12.2,2.45,11.16,2.02,10,2.02 c-1.89,0-3.51,1.11-4.27,2.71C4.15,5.26,3,6.74,3,8.5c0,1.86,1.28,3.41,3,3.86L6,21h11v-2h2c1.1,0,2-0.9,2-2v-6C21,9.9,20.1,9,19,9z M7,10.5c-1.1,0-2-0.9-2-2c0-0.85,0.55-1.6,1.37-1.88l0.8-0.27l0.36-0.76C8,4.62,8.94,4.02,10,4.02c0.79,0,1.39,0.35,1.74,0.65 l0.78,0.65c0,0,0.64-0.32,1.47-0.32c1.1,0,2,0.9,2,2c0,0-3,0-3,0C9.67,7,9.15,10.5,7,10.5z M19,17h-2v-6h2V17z"},"children":[]}]};exports.ic_sports_bar=ic_sports_bar;var ic_sports_bar_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M15,19H8l0-6.63c1.26-0.34,2.11-1.27,2.77-1.99C11.6,9.47,12.08,9,13,9l2,0V19z M10,2.02c-1.89,0-3.51,1.11-4.27,2.71 C4.15,5.26,3,6.74,3,8.5c0,1.86,1.28,3.41,3,3.86L6,21h11v-2h2c1.1,0,2-0.9,2-2v-6c0-1.1-0.9-2-2-2h-1.56C17.79,8.41,18,7.73,18,7 c0-2.21-1.79-4-4-4c-0.34,0-0.66,0.05-0.98,0.13C12.2,2.45,11.16,2.02,10,2.02L10,2.02z M7,10.5c-1.1,0-2-0.9-2-2 c0-0.85,0.55-1.6,1.37-1.88l0.8-0.27l0.36-0.76C8,4.62,8.94,4.02,10,4.02c0.79,0,1.39,0.35,1.74,0.65l0.78,0.65 c0,0,0.64-0.32,1.47-0.32c1.1,0,2,0.9,2,2c0,0-3,0-3,0C9.67,7,9.15,10.5,7,10.5C7,10.5,7,10.5,7,10.5L7,10.5z M17,17v-6h2v6H17 L17,17z"},"children":[]}]};exports.ic_sports_bar_outline=ic_sports_bar_outline;var ic_sports_bar_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M15,19H8l0-6.63c1.26-0.34,2.11-1.27,2.77-1.99C11.6,9.47,12.08,9,13,9l2,0V19z M7,10.5c-1.1,0-2-0.9-2-2 c0-0.85,0.55-1.6,1.37-1.88l0.8-0.27l0.36-0.76C8,4.62,8.94,4.02,10,4.02c0.79,0,1.39,0.35,1.74,0.65l0.78,0.65 c0,0,0.64-0.32,1.47-0.32c1.1,0,2,0.9,2,2c0,0-3,0-3,0C9.67,7,9.15,10.5,7,10.5C7,10.5,7,10.5,7,10.5L7,10.5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M15,19H8l0-6.63c1.26-0.34,2.11-1.27,2.77-1.99C11.6,9.47,12.08,9,13,9l2,0V19z M10,2.02c-1.89,0-3.51,1.11-4.27,2.71 C4.15,5.26,3,6.74,3,8.5c0,1.86,1.28,3.41,3,3.86L6,21h11v-2h2c1.1,0,2-0.9,2-2v-6c0-1.1-0.9-2-2-2h-1.56C17.79,8.41,18,7.73,18,7 c0-2.21-1.79-4-4-4c-0.34,0-0.66,0.05-0.98,0.13C12.2,2.45,11.16,2.02,10,2.02L10,2.02z M7,10.5c-1.1,0-2-0.9-2-2 c0-0.85,0.55-1.6,1.37-1.88l0.8-0.27l0.36-0.76C8,4.62,8.94,4.02,10,4.02c0.79,0,1.39,0.35,1.74,0.65l0.78,0.65 c0,0,0.64-0.32,1.47-0.32c1.1,0,2,0.9,2,2c0,0-3,0-3,0C9.67,7,9.15,10.5,7,10.5C7,10.5,7,10.5,7,10.5L7,10.5z M17,17v-6h2v6H17 L17,17z"},"children":[]}]};exports.ic_sports_bar_twotone=ic_sports_bar_twotone;var ic_stairs={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M18,8h-2.42v3.33H13v3.33h-2.58 V18H6v-2h2.42v-3.33H11V9.33h2.58V6H18V8z"},"children":[{"name":"path","attribs":{"d":"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M18,8h-2.42v3.33H13v3.33h-2.58 V18H6v-2h2.42v-3.33H11V9.33h2.58V6H18V8z"},"children":[]}]}]}]}]}]}]}]};exports.ic_stairs=ic_stairs;var ic_stairs_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[]}]},{"name":"path","attribs":{"d":"M19,5v14H5V5H19 M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3L19,3z M18,6h-4.42 v3.33H11v3.33H8.42V16H6v2h4.42v-3.33H13v-3.33h2.58V8H18V6z"},"children":[{"name":"path","attribs":{"d":"M19,5v14H5V5H19 M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3L19,3z M18,6h-4.42 v3.33H11v3.33H8.42V16H6v2h4.42v-3.33H13v-3.33h2.58V8H18V6z"},"children":[]}]}]}]};exports.ic_stairs_outline=ic_stairs_outline;var ic_stairs_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[]}]},{"name":"path","attribs":{"d":"M19,5v14H5V5H19 M18,6h-4.42v3.33H11v3.33H8.42V16H6v2h4.42v-3.33H13v-3.33h2.58V8H18V6z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M19,5v14H5V5H19 M18,6h-4.42v3.33H11v3.33H8.42V16H6v2h4.42v-3.33H13v-3.33h2.58V8H18V6z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M19,5v14H5V5H19 M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3L19,3z M18,6h-4.42 v3.33H11v3.33H8.42V16H6v2h4.42v-3.33H13v-3.33h2.58V8H18V6z"},"children":[{"name":"path","attribs":{"d":"M19,5v14H5V5H19 M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3L19,3z M18,6h-4.42 v3.33H11v3.33H8.42V16H6v2h4.42v-3.33H13v-3.33h2.58V8H18V6z"},"children":[]}]}]}]};exports.ic_stairs_twotone=ic_stairs_twotone;var ic_storefront={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M21.9,8.89l-1.05-4.37c-0.22-0.9-1-1.52-1.91-1.52H5.05C4.15,3,3.36,3.63,3.15,4.52L2.1,8.89 c-0.24,1.02-0.02,2.06,0.62,2.88C2.8,11.88,2.91,11.96,3,12.06V19c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2v-6.94 c0.09-0.09,0.2-0.18,0.28-0.28C21.92,10.96,22.15,9.91,21.9,8.89z M18.91,4.99l1.05,4.37c0.1,0.42,0.01,0.84-0.25,1.17 C19.57,10.71,19.27,11,18.77,11c-0.61,0-1.14-0.49-1.21-1.14L16.98,5L18.91,4.99z M13,5h1.96l0.54,4.52 c0.05,0.39-0.07,0.78-0.33,1.07C14.95,10.85,14.63,11,14.22,11C13.55,11,13,10.41,13,9.69V5z M8.49,9.52L9.04,5H11v4.69 C11,10.41,10.45,11,9.71,11c-0.34,0-0.65-0.15-0.89-0.41C8.57,10.3,8.45,9.91,8.49,9.52z M4.04,9.36L5.05,5h1.97L6.44,9.86 C6.36,10.51,5.84,11,5.23,11c-0.49,0-0.8-0.29-0.93-0.47C4.03,10.21,3.94,9.78,4.04,9.36z M5,19v-6.03C5.08,12.98,5.15,13,5.23,13 c0.87,0,1.66-0.36,2.24-0.95c0.6,0.6,1.4,0.95,2.31,0.95c0.87,0,1.65-0.36,2.23-0.93c0.59,0.57,1.39,0.93,2.29,0.93 c0.84,0,1.64-0.35,2.24-0.95c0.58,0.59,1.37,0.95,2.24,0.95c0.08,0,0.15-0.02,0.23-0.03V19H5z"},"children":[{"name":"path","attribs":{"d":"M21.9,8.89l-1.05-4.37c-0.22-0.9-1-1.52-1.91-1.52H5.05C4.15,3,3.36,3.63,3.15,4.52L2.1,8.89 c-0.24,1.02-0.02,2.06,0.62,2.88C2.8,11.88,2.91,11.96,3,12.06V19c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2v-6.94 c0.09-0.09,0.2-0.18,0.28-0.28C21.92,10.96,22.15,9.91,21.9,8.89z M18.91,4.99l1.05,4.37c0.1,0.42,0.01,0.84-0.25,1.17 C19.57,10.71,19.27,11,18.77,11c-0.61,0-1.14-0.49-1.21-1.14L16.98,5L18.91,4.99z M13,5h1.96l0.54,4.52 c0.05,0.39-0.07,0.78-0.33,1.07C14.95,10.85,14.63,11,14.22,11C13.55,11,13,10.41,13,9.69V5z M8.49,9.52L9.04,5H11v4.69 C11,10.41,10.45,11,9.71,11c-0.34,0-0.65-0.15-0.89-0.41C8.57,10.3,8.45,9.91,8.49,9.52z M4.04,9.36L5.05,5h1.97L6.44,9.86 C6.36,10.51,5.84,11,5.23,11c-0.49,0-0.8-0.29-0.93-0.47C4.03,10.21,3.94,9.78,4.04,9.36z M5,19v-6.03C5.08,12.98,5.15,13,5.23,13 c0.87,0,1.66-0.36,2.24-0.95c0.6,0.6,1.4,0.95,2.31,0.95c0.87,0,1.65-0.36,2.23-0.93c0.59,0.57,1.39,0.93,2.29,0.93 c0.84,0,1.64-0.35,2.24-0.95c0.58,0.59,1.37,0.95,2.24,0.95c0.08,0,0.15-0.02,0.23-0.03V19H5z"},"children":[]}]}]}]}]}]};exports.ic_storefront=ic_storefront;var ic_storefront_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M21.9,8.89l-1.05-4.37c-0.22-0.9-1-1.52-1.91-1.52H5.05C4.15,3,3.36,3.63,3.15,4.52L2.1,8.89 c-0.24,1.02-0.02,2.06,0.62,2.88C2.8,11.88,2.91,11.96,3,12.06V19c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2v-6.94 c0.09-0.09,0.2-0.18,0.28-0.28C21.92,10.96,22.15,9.91,21.9,8.89z M18.91,4.99l1.05,4.37c0.1,0.42,0.01,0.84-0.25,1.17 C19.57,10.71,19.27,11,18.77,11c-0.61,0-1.14-0.49-1.21-1.14L16.98,5L18.91,4.99z M13,5h1.96l0.54,4.52 c0.05,0.39-0.07,0.78-0.33,1.07C14.95,10.85,14.63,11,14.22,11C13.55,11,13,10.41,13,9.69V5z M8.49,9.52L9.04,5H11v4.69 C11,10.41,10.45,11,9.71,11c-0.34,0-0.65-0.15-0.89-0.41C8.57,10.3,8.45,9.91,8.49,9.52z M4.04,9.36L5.05,5h1.97L6.44,9.86 C6.36,10.51,5.84,11,5.23,11c-0.49,0-0.8-0.29-0.93-0.47C4.03,10.21,3.94,9.78,4.04,9.36z M5,19v-6.03C5.08,12.98,5.15,13,5.23,13 c0.87,0,1.66-0.36,2.24-0.95c0.6,0.6,1.4,0.95,2.31,0.95c0.87,0,1.65-0.36,2.23-0.93c0.59,0.57,1.39,0.93,2.29,0.93 c0.84,0,1.64-0.35,2.24-0.95c0.58,0.59,1.37,0.95,2.24,0.95c0.08,0,0.15-0.02,0.23-0.03V19H5z"},"children":[{"name":"path","attribs":{"d":"M21.9,8.89l-1.05-4.37c-0.22-0.9-1-1.52-1.91-1.52H5.05C4.15,3,3.36,3.63,3.15,4.52L2.1,8.89 c-0.24,1.02-0.02,2.06,0.62,2.88C2.8,11.88,2.91,11.96,3,12.06V19c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2v-6.94 c0.09-0.09,0.2-0.18,0.28-0.28C21.92,10.96,22.15,9.91,21.9,8.89z M18.91,4.99l1.05,4.37c0.1,0.42,0.01,0.84-0.25,1.17 C19.57,10.71,19.27,11,18.77,11c-0.61,0-1.14-0.49-1.21-1.14L16.98,5L18.91,4.99z M13,5h1.96l0.54,4.52 c0.05,0.39-0.07,0.78-0.33,1.07C14.95,10.85,14.63,11,14.22,11C13.55,11,13,10.41,13,9.69V5z M8.49,9.52L9.04,5H11v4.69 C11,10.41,10.45,11,9.71,11c-0.34,0-0.65-0.15-0.89-0.41C8.57,10.3,8.45,9.91,8.49,9.52z M4.04,9.36L5.05,5h1.97L6.44,9.86 C6.36,10.51,5.84,11,5.23,11c-0.49,0-0.8-0.29-0.93-0.47C4.03,10.21,3.94,9.78,4.04,9.36z M5,19v-6.03C5.08,12.98,5.15,13,5.23,13 c0.87,0,1.66-0.36,2.24-0.95c0.6,0.6,1.4,0.95,2.31,0.95c0.87,0,1.65-0.36,2.23-0.93c0.59,0.57,1.39,0.93,2.29,0.93 c0.84,0,1.64-0.35,2.24-0.95c0.58,0.59,1.37,0.95,2.24,0.95c0.08,0,0.15-0.02,0.23-0.03V19H5z"},"children":[]}]}]}]}]}]};exports.ic_storefront_outline=ic_storefront_outline;var ic_storefront_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M6.44,9.86L7.02,5H5.05L4.04,9.36c-0.1,0.42-0.01,0.84,0.25,1.17C4.43,10.71,4.73,11,5.23,11 C5.84,11,6.36,10.51,6.44,9.86z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M6.44,9.86L7.02,5H5.05L4.04,9.36c-0.1,0.42-0.01,0.84,0.25,1.17C4.43,10.71,4.73,11,5.23,11 C5.84,11,6.36,10.51,6.44,9.86z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M9.71,11C10.45,11,11,10.41,11,9.69V5H9.04L8.49,9.52c-0.05,0.39,0.07,0.78,0.33,1.07 C9.05,10.85,9.37,11,9.71,11z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M9.71,11C10.45,11,11,10.41,11,9.69V5H9.04L8.49,9.52c-0.05,0.39,0.07,0.78,0.33,1.07 C9.05,10.85,9.37,11,9.71,11z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M14.22,11c0.41,0,0.72-0.15,0.96-0.41c0.25-0.29,0.37-0.68,0.33-1.07L14.96,5H13v4.69 C13,10.41,13.55,11,14.22,11z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M14.22,11c0.41,0,0.72-0.15,0.96-0.41c0.25-0.29,0.37-0.68,0.33-1.07L14.96,5H13v4.69 C13,10.41,13.55,11,14.22,11z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M18.91,4.99L16.98,5l0.58,4.86c0.08,0.65,0.6,1.14,1.21,1.14c0.49,0,0.8-0.29,0.93-0.47 c0.26-0.33,0.35-0.76,0.25-1.17L18.91,4.99z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M18.91,4.99L16.98,5l0.58,4.86c0.08,0.65,0.6,1.14,1.21,1.14c0.49,0,0.8-0.29,0.93-0.47 c0.26-0.33,0.35-0.76,0.25-1.17L18.91,4.99z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M21.9,8.89l-1.05-4.37c-0.22-0.9-1-1.52-1.91-1.52H5.05C4.15,3,3.36,3.63,3.15,4.52L2.1,8.89 c-0.24,1.02-0.02,2.06,0.62,2.88C2.8,11.88,2.91,11.96,3,12.06V19c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2v-6.94 c0.09-0.09,0.2-0.18,0.28-0.28C21.92,10.96,22.15,9.91,21.9,8.89z M13,5h1.96l0.54,4.52c0.05,0.39-0.07,0.78-0.33,1.07 C14.95,10.85,14.63,11,14.22,11C13.55,11,13,10.41,13,9.69V5z M8.49,9.52L9.04,5H11v4.69C11,10.41,10.45,11,9.71,11 c-0.34,0-0.65-0.15-0.89-0.41C8.57,10.3,8.45,9.91,8.49,9.52z M4.29,10.53c-0.26-0.33-0.35-0.76-0.25-1.17L5.05,5h1.97L6.44,9.86 C6.36,10.51,5.84,11,5.23,11C4.73,11,4.43,10.71,4.29,10.53z M19,19H5v-6.03C5.08,12.98,5.15,13,5.23,13 c0.87,0,1.66-0.36,2.24-0.95c0.6,0.6,1.4,0.95,2.31,0.95c0.87,0,1.65-0.36,2.23-0.93c0.59,0.57,1.39,0.93,2.29,0.93 c0.84,0,1.64-0.35,2.24-0.95c0.58,0.59,1.37,0.95,2.24,0.95c0.08,0,0.15-0.02,0.23-0.03V19z M19.71,10.53 C19.57,10.71,19.27,11,18.77,11c-0.61,0-1.14-0.49-1.21-1.14L16.98,5l1.93-0.01l1.05,4.37C20.06,9.78,19.97,10.21,19.71,10.53z"},"children":[{"name":"path","attribs":{"d":"M21.9,8.89l-1.05-4.37c-0.22-0.9-1-1.52-1.91-1.52H5.05C4.15,3,3.36,3.63,3.15,4.52L2.1,8.89 c-0.24,1.02-0.02,2.06,0.62,2.88C2.8,11.88,2.91,11.96,3,12.06V19c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2v-6.94 c0.09-0.09,0.2-0.18,0.28-0.28C21.92,10.96,22.15,9.91,21.9,8.89z M13,5h1.96l0.54,4.52c0.05,0.39-0.07,0.78-0.33,1.07 C14.95,10.85,14.63,11,14.22,11C13.55,11,13,10.41,13,9.69V5z M8.49,9.52L9.04,5H11v4.69C11,10.41,10.45,11,9.71,11 c-0.34,0-0.65-0.15-0.89-0.41C8.57,10.3,8.45,9.91,8.49,9.52z M4.29,10.53c-0.26-0.33-0.35-0.76-0.25-1.17L5.05,5h1.97L6.44,9.86 C6.36,10.51,5.84,11,5.23,11C4.73,11,4.43,10.71,4.29,10.53z M19,19H5v-6.03C5.08,12.98,5.15,13,5.23,13 c0.87,0,1.66-0.36,2.24-0.95c0.6,0.6,1.4,0.95,2.31,0.95c0.87,0,1.65-0.36,2.23-0.93c0.59,0.57,1.39,0.93,2.29,0.93 c0.84,0,1.64-0.35,2.24-0.95c0.58,0.59,1.37,0.95,2.24,0.95c0.08,0,0.15-0.02,0.23-0.03V19z M19.71,10.53 C19.57,10.71,19.27,11,18.77,11c-0.61,0-1.14-0.49-1.21-1.14L16.98,5l1.93-0.01l1.05,4.37C20.06,9.78,19.97,10.21,19.71,10.53z"},"children":[]}]}]}]}]}]};exports.ic_storefront_twotone=ic_storefront_twotone;var ic_stroller={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"cx":"16","cy":"20","r":"2"},"children":[{"name":"circle","attribs":{"cx":"16","cy":"20","r":"2"},"children":[]}]},{"name":"circle","attribs":{"cx":"6","cy":"20","r":"2"},"children":[{"name":"circle","attribs":{"cx":"6","cy":"20","r":"2"},"children":[]}]}]}]},{"name":"path","attribs":{"d":"M22,7V6.48C22,4.56,20.52,3,18.65,3c-1.66,0-2.54,1.27-3.18,2.03l-8.8,10.32C6.12,16,6.58,17,7.43,17L15,17 c1.1,0,2-0.9,2-2V6.27C17.58,5.59,17.97,5,18.65,5C19.42,5,20,5.66,20,6.48V7H22z"},"children":[{"name":"path","attribs":{"d":"M22,7V6.48C22,4.56,20.52,3,18.65,3c-1.66,0-2.54,1.27-3.18,2.03l-8.8,10.32C6.12,16,6.58,17,7.43,17L15,17 c1.1,0,2-0.9,2-2V6.27C17.58,5.59,17.97,5,18.65,5C19.42,5,20,5.66,20,6.48V7H22z"},"children":[]}]},{"name":"path","attribs":{"d":"M14.3,4.1C13.03,3.4,11.56,3,10,3C8.03,3,6.21,3.64,4.72,4.72l4.89,4.89L14.3,4.1z"},"children":[{"name":"path","attribs":{"d":"M14.3,4.1C13.03,3.4,11.56,3,10,3C8.03,3,6.21,3.64,4.72,4.72l4.89,4.89L14.3,4.1z"},"children":[]}]}]}]};exports.ic_stroller=ic_stroller;var ic_stroller_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M18,20c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2S18,18.9,18,20z M6,18c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S7.1,18,6,18z M15,8.66L9.6,15H15V8.66 M18.65,3C20.52,3,22,4.56,22,6.48V7h-2V6.48C20,5.66,19.42,5,18.65,5C17.97,5,17.58,5.59,17,6.27V15 c0,1.1-0.9,2-2,2H7.43c-0.85,0-1.31-1-0.76-1.65l8.8-10.32C16.11,4.27,16.99,3,18.65,3L18.65,3z M10,5C9.35,5,8.71,5.09,8.09,5.27 l1.4,1.4l1.37-1.61C10.58,5.02,10.29,5,10,5 M10,3c1.56,0,3.03,0.4,4.3,1.1l-4.7,5.51L4.72,4.72C6.21,3.64,8.03,3,10,3L10,3z"},"children":[{"name":"path","attribs":{"d":"M18,20c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2S18,18.9,18,20z M6,18c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S7.1,18,6,18z M15,8.66L9.6,15H15V8.66 M18.65,3C20.52,3,22,4.56,22,6.48V7h-2V6.48C20,5.66,19.42,5,18.65,5C17.97,5,17.58,5.59,17,6.27V15 c0,1.1-0.9,2-2,2H7.43c-0.85,0-1.31-1-0.76-1.65l8.8-10.32C16.11,4.27,16.99,3,18.65,3L18.65,3z M10,5C9.35,5,8.71,5.09,8.09,5.27 l1.4,1.4l1.37-1.61C10.58,5.02,10.29,5,10,5 M10,3c1.56,0,3.03,0.4,4.3,1.1l-4.7,5.51L4.72,4.72C6.21,3.64,8.03,3,10,3L10,3z"},"children":[]}]}]}]};exports.ic_stroller_outline=ic_stroller_outline;var ic_stroller_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M10,5c0.29,0,0.58,0.02,0.86,0.05L9.49,6.66l-1.4-1.4C8.71,5.09,9.35,5,10,5 M15,8.66V15H9.6L15,8.66","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M10,5c0.29,0,0.58,0.02,0.86,0.05L9.49,6.66l-1.4-1.4C8.71,5.09,9.35,5,10,5 M15,8.66V15H9.6L15,8.66","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M10,5c0.29,0,0.58,0.02,0.86,0.05L9.49,6.66l-1.4-1.4C8.71,5.09,9.35,5,10,5 M15,8.66V15H9.6L15,8.66 M18.65,3 c-1.66,0-2.54,1.27-3.18,2.03l-8.8,10.32C6.12,16,6.58,17,7.43,17H15c1.1,0,2-0.9,2-2V6.27C17.58,5.59,17.97,5,18.65,5 C19.42,5,20,5.66,20,6.48V7h2V6.48C22,4.56,20.52,3,18.65,3L18.65,3z M10,3C8.03,3,6.21,3.64,4.72,4.72l4.89,4.89l4.7-5.51 C13.03,3.4,11.56,3,10,3L10,3z M16,18c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S17.1,18,16,18L16,18z M6,18c-1.1,0-2,0.9-2,2 s0.9,2,2,2s2-0.9,2-2S7.1,18,6,18L6,18z"},"children":[{"name":"path","attribs":{"d":"M10,5c0.29,0,0.58,0.02,0.86,0.05L9.49,6.66l-1.4-1.4C8.71,5.09,9.35,5,10,5 M15,8.66V15H9.6L15,8.66 M18.65,3 c-1.66,0-2.54,1.27-3.18,2.03l-8.8,10.32C6.12,16,6.58,17,7.43,17H15c1.1,0,2-0.9,2-2V6.27C17.58,5.59,17.97,5,18.65,5 C19.42,5,20,5.66,20,6.48V7h2V6.48C22,4.56,20.52,3,18.65,3L18.65,3z M10,3C8.03,3,6.21,3.64,4.72,4.72l4.89,4.89l4.7-5.51 C13.03,3.4,11.56,3,10,3L10,3z M16,18c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S17.1,18,16,18L16,18z M6,18c-1.1,0-2,0.9-2,2 s0.9,2,2,2s2-0.9,2-2S7.1,18,6,18L6,18z"},"children":[]}]}]}]};exports.ic_stroller_twotone=ic_stroller_twotone;var ic_tapas={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M22,10V1h-8v9c0,1.86,1.28,3.41,3,3.86V21h-2v2h6v-2h-2v-7.14C20.72,13.41,22,11.86,22,10z M20,3v3h-4V3H20z M12.5,11.5 c0,1.38-1.12,2.5-2.5,2.5H8v9H6v-9H4c-1.38,0-2.5-1.12-2.5-2.5C1.5,10.12,2.62,9,4,9h2V8H4C2.62,8,1.5,6.88,1.5,5.5 C1.5,4.12,2.62,3,4,3h2V1h2v2h2c1.38,0,2.5,1.12,2.5,2.5C12.5,6.88,11.38,8,10,8H8v1h2C11.38,9,12.5,10.12,12.5,11.5z"},"children":[]}]};exports.ic_tapas=ic_tapas;var ic_tapas_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M22,10V1h-8v9c0,1.86,1.28,3.41,3,3.86V21h-2v2h6v-2h-2v-7.14C20.72,13.41,22,11.86,22,10z M20,3v3h-4V3H20z M16,10V8h4v2 c0,1.1-0.9,2-2,2S16,11.1,16,10z M10,9H8V8h2c1.38,0,2.5-1.12,2.5-2.5C12.5,4.12,11.38,3,10,3H8V1H6v2H4C2.62,3,1.5,4.12,1.5,5.5 C1.5,6.88,2.62,8,4,8h2v1H4c-1.38,0-2.5,1.12-2.5,2.5C1.5,12.88,2.62,14,4,14h2v9h2v-9h2c1.38,0,2.5-1.12,2.5-2.5 C12.5,10.12,11.38,9,10,9z M4,6C3.72,6,3.5,5.78,3.5,5.5S3.72,5,4,5h6c0.28,0,0.5,0.22,0.5,0.5S10.28,6,10,6H4z M10,12H4 c-0.28,0-0.5-0.22-0.5-0.5S3.72,11,4,11h6c0.28,0,0.5,0.22,0.5,0.5S10.28,12,10,12z"},"children":[]}]};exports.ic_tapas_outline=ic_tapas_outline;var ic_tapas_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M16,10V8h4v2c0,1.1-0.9,2-2,2S16,11.1,16,10z M4,6C3.72,6,3.5,5.78,3.5,5.5S3.72,5,4,5h6 c0.28,0,0.5,0.22,0.5,0.5S10.28,6,10,6H4z M10,12H4c-0.28,0-0.5-0.22-0.5-0.5S3.72,11,4,11h6c0.28,0,0.5,0.22,0.5,0.5 S10.28,12,10,12z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M22,10V1h-8v9c0,1.86,1.28,3.41,3,3.86V21h-2v2h6v-2h-2v-7.14C20.72,13.41,22,11.86,22,10z M20,3v3h-4V3H20z M16,10V8h4v2 c0,1.1-0.9,2-2,2S16,11.1,16,10z M10,9H8V8h2c1.38,0,2.5-1.12,2.5-2.5C12.5,4.12,11.38,3,10,3H8V1H6v2H4C2.62,3,1.5,4.12,1.5,5.5 C1.5,6.88,2.62,8,4,8h2v1H4c-1.38,0-2.5,1.12-2.5,2.5C1.5,12.88,2.62,14,4,14h2v9h2v-9h2c1.38,0,2.5-1.12,2.5-2.5 C12.5,10.12,11.38,9,10,9z M4,6C3.72,6,3.5,5.78,3.5,5.5S3.72,5,4,5h6c0.28,0,0.5,0.22,0.5,0.5S10.28,6,10,6H4z M10,12H4 c-0.28,0-0.5-0.22-0.5-0.5S3.72,11,4,11h6c0.28,0,0.5,0.22,0.5,0.5S10.28,12,10,12z"},"children":[]}]};exports.ic_tapas_twotone=ic_tapas_twotone;var ic_tty={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[]}]},{"name":"path","attribs":{"d":"M14,4h2v2h-2V4z M13,7h2v2h-2V7z M11,4h2v2h-2V4z M18,9h-2V7h2V9z M19,6h-2V4h2V6z M21,9h-2V7h2V9z M22,6h-2V4h2V6z M14.62,14.38L12.1,16.9c-2.5-1.43-4.57-3.5-6-6l2.52-2.52C8.86,8.14,8.96,7.8,8.9,7.48L8.16,3.8C8.07,3.34,7.66,3,7.18,3H3.03 C2.47,3,2,3.47,2.03,4.03C2.2,6.92,3.05,9.63,4.43,12c1.58,2.73,3.85,4.99,6.57,6.57c2.37,1.37,5.08,2.23,7.97,2.4 c0.56,0.03,1.03-0.44,1.03-1v-4.15c0-0.48-0.34-0.89-0.8-0.98l-3.67-0.73C15.2,14.04,14.86,14.14,14.62,14.38z M14,10h2v2h-2V10z M11,10h2v2h-2V10z M19,12h-2v-2h2V12z M22,12h-2v-2h2V12z"},"children":[{"name":"path","attribs":{"d":"M14,4h2v2h-2V4z M13,7h2v2h-2V7z M11,4h2v2h-2V4z M18,9h-2V7h2V9z M19,6h-2V4h2V6z M21,9h-2V7h2V9z M22,6h-2V4h2V6z M14.62,14.38L12.1,16.9c-2.5-1.43-4.57-3.5-6-6l2.52-2.52C8.86,8.14,8.96,7.8,8.9,7.48L8.16,3.8C8.07,3.34,7.66,3,7.18,3H3.03 C2.47,3,2,3.47,2.03,4.03C2.2,6.92,3.05,9.63,4.43,12c1.58,2.73,3.85,4.99,6.57,6.57c2.37,1.37,5.08,2.23,7.97,2.4 c0.56,0.03,1.03-0.44,1.03-1v-4.15c0-0.48-0.34-0.89-0.8-0.98l-3.67-0.73C15.2,14.04,14.86,14.14,14.62,14.38z M14,10h2v2h-2V10z M11,10h2v2h-2V10z M19,12h-2v-2h2V12z M22,12h-2v-2h2V12z"},"children":[]}]}]}]};exports.ic_tty=ic_tty;var ic_tty_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[]}]},{"name":"path","attribs":{"d":"M16,6h-2V4h2V6z M18,7h-2v2h2V7z M19,9h2V7h-2V9z M19,4h-2v2h2V4z M15,7h-2v2h2V7z M19,10h-2v2h2V10z M16,10h-2v2h2V10z M13,4h-2v2h2V4z M20,15.82v4.15c0,0.56-0.47,1.03-1.03,1c-2.89-0.17-5.6-1.03-7.97-2.4C8.27,16.99,6.01,14.73,4.43,12 C3.05,9.63,2.2,6.92,2.03,4.03C2,3.47,2.47,3,3.03,3h4.15c0.48,0,0.89,0.34,0.98,0.8L8.9,7.48c0.07,0.33-0.04,0.67-0.27,0.9 L6.1,10.9c1.43,2.5,3.5,4.57,6,6l2.52-2.52c0.24-0.24,0.58-0.34,0.9-0.27l3.67,0.73C19.66,14.93,20,15.34,20,15.82z M5.18,8.99 l1.65-1.65L6.36,5H4.13C4.3,6.37,4.66,7.71,5.18,8.99z M18,16.64l-2.34-0.47l-1.65,1.65c1.28,0.52,2.63,0.87,3.99,1.05V16.64z M20,4v2h2V4H20z M20,12h2v-2h-2V12z M13,10h-2v2h2V10z"},"children":[{"name":"path","attribs":{"d":"M16,6h-2V4h2V6z M18,7h-2v2h2V7z M19,9h2V7h-2V9z M19,4h-2v2h2V4z M15,7h-2v2h2V7z M19,10h-2v2h2V10z M16,10h-2v2h2V10z M13,4h-2v2h2V4z M20,15.82v4.15c0,0.56-0.47,1.03-1.03,1c-2.89-0.17-5.6-1.03-7.97-2.4C8.27,16.99,6.01,14.73,4.43,12 C3.05,9.63,2.2,6.92,2.03,4.03C2,3.47,2.47,3,3.03,3h4.15c0.48,0,0.89,0.34,0.98,0.8L8.9,7.48c0.07,0.33-0.04,0.67-0.27,0.9 L6.1,10.9c1.43,2.5,3.5,4.57,6,6l2.52-2.52c0.24-0.24,0.58-0.34,0.9-0.27l3.67,0.73C19.66,14.93,20,15.34,20,15.82z M5.18,8.99 l1.65-1.65L6.36,5H4.13C4.3,6.37,4.66,7.71,5.18,8.99z M18,16.64l-2.34-0.47l-1.65,1.65c1.28,0.52,2.63,0.87,3.99,1.05V16.64z M20,4v2h2V4H20z M20,12h2v-2h-2V12z M13,10h-2v2h2V10z"},"children":[]}]}]}]};exports.ic_tty_outline=ic_tty_outline;var ic_tty_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[]}]},{"name":"path","attribs":{"d":"M4.13,5C4.3,6.37,4.66,7.71,5.18,8.99l1.65-1.65L6.36,5H4.13z M15.66,16.17l-1.65,1.65 c1.28,0.52,2.63,0.87,3.99,1.05v-2.23L15.66,16.17z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M4.13,5C4.3,6.37,4.66,7.71,5.18,8.99l1.65-1.65L6.36,5H4.13z M15.66,16.17l-1.65,1.65 c1.28,0.52,2.63,0.87,3.99,1.05v-2.23L15.66,16.17z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M19.2,14.84l-3.67-0.73c-0.33-0.07-0.67,0.04-0.9,0.27L12.1,16.9c-2.5-1.43-4.57-3.5-6-6l2.52-2.52 C8.86,8.14,8.96,7.8,8.9,7.48L8.16,3.8C8.07,3.34,7.66,3,7.18,3H3.03C2.47,3,2,3.47,2.03,4.03C2.2,6.92,3.05,9.63,4.43,12 c1.58,2.73,3.85,4.99,6.57,6.57c2.37,1.37,5.08,2.23,7.97,2.4c0.56,0.03,1.03-0.44,1.03-1v-4.15C20,15.34,19.66,14.93,19.2,14.84z M4.13,5h2.23l0.47,2.34L5.18,8.99C4.66,7.71,4.3,6.37,4.13,5z M18,18.87c-1.37-0.17-2.71-0.53-3.99-1.05l1.65-1.65L18,16.64V18.87 z M14,4h2v2h-2V4z M13,7h2v2h-2V7z M11,4h2v2h-2V4z M18,9h-2V7h2V9z M19,6h-2V4h2V6z M21,9h-2V7h2V9z M22,6h-2V4h2V6z M14,10h2v2 h-2V10z M11,10h2v2h-2V10z M19,12h-2v-2h2V12z M22,12h-2v-2h2V12z"},"children":[{"name":"path","attribs":{"d":"M19.2,14.84l-3.67-0.73c-0.33-0.07-0.67,0.04-0.9,0.27L12.1,16.9c-2.5-1.43-4.57-3.5-6-6l2.52-2.52 C8.86,8.14,8.96,7.8,8.9,7.48L8.16,3.8C8.07,3.34,7.66,3,7.18,3H3.03C2.47,3,2,3.47,2.03,4.03C2.2,6.92,3.05,9.63,4.43,12 c1.58,2.73,3.85,4.99,6.57,6.57c2.37,1.37,5.08,2.23,7.97,2.4c0.56,0.03,1.03-0.44,1.03-1v-4.15C20,15.34,19.66,14.93,19.2,14.84z M4.13,5h2.23l0.47,2.34L5.18,8.99C4.66,7.71,4.3,6.37,4.13,5z M18,18.87c-1.37-0.17-2.71-0.53-3.99-1.05l1.65-1.65L18,16.64V18.87 z M14,4h2v2h-2V4z M13,7h2v2h-2V7z M11,4h2v2h-2V4z M18,9h-2V7h2V9z M19,6h-2V4h2V6z M21,9h-2V7h2V9z M22,6h-2V4h2V6z M14,10h2v2 h-2V10z M11,10h2v2h-2V10z M19,12h-2v-2h2V12z M22,12h-2v-2h2V12z"},"children":[]}]}]}]};exports.ic_tty_twotone=ic_tty_twotone;var ic_umbrella={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M14.5,6.92L13,5.77V3.88V3.4c0-0.26,0.22-0.48,0.5-0.48c0.28,0,0.5,0.21,0.5,0.48V4h2V3.4C16,2.07,14.88,1,13.5,1 C12.12,1,11,2.07,11,3.4v0.48v1.89L9.5,6.92L6,6.07l5.05,15.25C11.2,21.77,11.6,22,12,22s0.8-0.23,0.95-0.69L18,6.07L14.5,6.92z M13.28,8.5l0.76,0.58l0.92-0.23L13,14.8V8.29L13.28,8.5z M9.96,9.09l0.76-0.58L11,8.29v6.51L9.03,8.86L9.96,9.09z"},"children":[{"name":"path","attribs":{"d":"M14.5,6.92L13,5.77V3.88V3.4c0-0.26,0.22-0.48,0.5-0.48c0.28,0,0.5,0.21,0.5,0.48V4h2V3.4C16,2.07,14.88,1,13.5,1 C12.12,1,11,2.07,11,3.4v0.48v1.89L9.5,6.92L6,6.07l5.05,15.25C11.2,21.77,11.6,22,12,22s0.8-0.23,0.95-0.69L18,6.07L14.5,6.92z M13.28,8.5l0.76,0.58l0.92-0.23L13,14.8V8.29L13.28,8.5z M9.96,9.09l0.76-0.58L11,8.29v6.51L9.03,8.86L9.96,9.09z"},"children":[]}]}]}]};exports.ic_umbrella=ic_umbrella;var ic_umbrella_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M14.5,6.92L13,5.77V3.88V3.4c0-0.26,0.22-0.48,0.5-0.48c0.28,0,0.5,0.21,0.5,0.48V4h2V3.4C16,2.07,14.88,1,13.5,1 C12.12,1,11,2.07,11,3.4v0.48v1.89L9.5,6.92L6,6.07l5.05,15.25C11.2,21.77,11.6,22,12,22s0.8-0.23,0.95-0.69L18,6.07L14.5,6.92z M13.28,8.5l0.76,0.58l0.92-0.23L13,14.8V8.29L13.28,8.5z M9.96,9.09l0.76-0.58L11,8.29v6.51L9.03,8.86L9.96,9.09z"},"children":[{"name":"path","attribs":{"d":"M14.5,6.92L13,5.77V3.88V3.4c0-0.26,0.22-0.48,0.5-0.48c0.28,0,0.5,0.21,0.5,0.48V4h2V3.4C16,2.07,14.88,1,13.5,1 C12.12,1,11,2.07,11,3.4v0.48v1.89L9.5,6.92L6,6.07l5.05,15.25C11.2,21.77,11.6,22,12,22s0.8-0.23,0.95-0.69L18,6.07L14.5,6.92z M13.28,8.5l0.76,0.58l0.92-0.23L13,14.8V8.29L13.28,8.5z M9.96,9.09l0.76-0.58L11,8.29v6.51L9.03,8.86L9.96,9.09z"},"children":[]}]}]}]};exports.ic_umbrella_outline=ic_umbrella_outline;var ic_umbrella_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M13.28,8.5l0.76,0.58l0.92-0.23L13,14.8V8.29L13.28,8.5z M9.03,8.86L11,14.8V8.29L10.72,8.5L9.96,9.09 L9.03,8.86z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M13.28,8.5l0.76,0.58l0.92-0.23L13,14.8V8.29L13.28,8.5z M9.03,8.86L11,14.8V8.29L10.72,8.5L9.96,9.09 L9.03,8.86z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M14.5,6.92L13,5.77V3.88V3.4c0-0.26,0.22-0.48,0.5-0.48c0.28,0,0.5,0.21,0.5,0.48V4h2V3.4C16,2.07,14.88,1,13.5,1 C12.12,1,11,2.07,11,3.4v0.48v1.89L9.5,6.92L6,6.07l5.05,15.25C11.2,21.77,11.6,22,12,22s0.8-0.23,0.95-0.69L18,6.07L14.5,6.92z M13.28,8.5l0.76,0.58l0.92-0.23L13,14.8V8.29L13.28,8.5z M9.96,9.09l0.76-0.58L11,8.29v6.51L9.03,8.86L9.96,9.09z"},"children":[{"name":"path","attribs":{"d":"M14.5,6.92L13,5.77V3.88V3.4c0-0.26,0.22-0.48,0.5-0.48c0.28,0,0.5,0.21,0.5,0.48V4h2V3.4C16,2.07,14.88,1,13.5,1 C12.12,1,11,2.07,11,3.4v0.48v1.89L9.5,6.92L6,6.07l5.05,15.25C11.2,21.77,11.6,22,12,22s0.8-0.23,0.95-0.69L18,6.07L14.5,6.92z M13.28,8.5l0.76,0.58l0.92-0.23L13,14.8V8.29L13.28,8.5z M9.96,9.09l0.76-0.58L11,8.29v6.51L9.03,8.86L9.96,9.09z"},"children":[]}]}]}]};exports.ic_umbrella_twotone=ic_umbrella_twotone;var ic_wash={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M18.5,8C19.88,8,21,6.88,21,5.5C21,3.83,18.5,1,18.5,1S16,3.83,16,5.5C16,6.88,17.12,8,18.5,8z M13.5,9 C14.33,9,15,8.33,15,7.5C15,6.66,13.5,5,13.5,5S12,6.66,12,7.5C12,8.33,12.67,9,13.5,9z M9.12,5l-7.18,6.79 C1.34,12.35,1,13.14,1,13.97V20c0,1.66,1.34,3,3,3h6.25H12h5.75c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h7.75 c0.69,0,1.25-0.56,1.25-1.25S20.44,17,19.75,17H12v-1h8.75c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h6.75 c0.69,0,1.25-0.56,1.25-1.25S19.44,10,18.75,10H8.86c0.64-1.11,1.48-2.58,1.49-2.61c0.09-0.16,0.14-0.33,0.14-0.53 c0-0.26-0.09-0.5-0.26-0.7C10.22,6.12,9.12,5,9.12,5L9.12,5z"},"children":[{"name":"path","attribs":{"d":"M18.5,8C19.88,8,21,6.88,21,5.5C21,3.83,18.5,1,18.5,1S16,3.83,16,5.5C16,6.88,17.12,8,18.5,8z M13.5,9 C14.33,9,15,8.33,15,7.5C15,6.66,13.5,5,13.5,5S12,6.66,12,7.5C12,8.33,12.67,9,13.5,9z M9.12,5l-7.18,6.79 C1.34,12.35,1,13.14,1,13.97V20c0,1.66,1.34,3,3,3h6.25H12h5.75c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h7.75 c0.69,0,1.25-0.56,1.25-1.25S20.44,17,19.75,17H12v-1h8.75c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h6.75 c0.69,0,1.25-0.56,1.25-1.25S19.44,10,18.75,10H8.86c0.64-1.11,1.48-2.58,1.49-2.61c0.09-0.16,0.14-0.33,0.14-0.53 c0-0.26-0.09-0.5-0.26-0.7C10.22,6.12,9.12,5,9.12,5L9.12,5z"},"children":[]}]}]}]};exports.ic_wash=ic_wash;var ic_wash_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M20.75,16c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h6.75c0.69,0,1.25-0.56,1.25-1.25 c0-0.67-0.53-1.2-1.18-1.24L8.87,10l1.48-2.6c0.09-0.17,0.14-0.34,0.14-0.54c0-0.26-0.09-0.5-0.26-0.7L9.12,5l-7.18,6.8 C1.34,12.36,1,13.15,1,13.97V20c0,1.66,1.34,3,3,3h13.75c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h7.75 c0.69,0,1.25-0.56,1.25-1.25S20.44,17,19.75,17H12v-1H20.75z M10,21H4c-0.55,0-1-0.45-1-1v-6c0-0.39,0.23-0.64,0.36-0.75L7,9.87V12 l3,0V21z M13.5,9C14.33,9,15,8.33,15,7.5C15,6.66,13.5,5,13.5,5S12,6.66,12,7.5C12,8.33,12.67,9,13.5,9z M18.5,1 c0,0-2.5,2.83-2.5,4.5C16,6.88,17.12,8,18.5,8S21,6.88,21,5.5C21,3.83,18.5,1,18.5,1z M18.5,6.5c-0.55,0-1-0.45-1-1 c0-0.4,0.43-1.22,1-2.05c0.57,0.83,1,1.65,1,2.05C19.5,6.05,19.05,6.5,18.5,6.5z"},"children":[{"name":"path","attribs":{"d":"M20.75,16c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h6.75c0.69,0,1.25-0.56,1.25-1.25 c0-0.67-0.53-1.2-1.18-1.24L8.87,10l1.48-2.6c0.09-0.17,0.14-0.34,0.14-0.54c0-0.26-0.09-0.5-0.26-0.7L9.12,5l-7.18,6.8 C1.34,12.36,1,13.15,1,13.97V20c0,1.66,1.34,3,3,3h13.75c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h7.75 c0.69,0,1.25-0.56,1.25-1.25S20.44,17,19.75,17H12v-1H20.75z M10,21H4c-0.55,0-1-0.45-1-1v-6c0-0.39,0.23-0.64,0.36-0.75L7,9.87V12 l3,0V21z M13.5,9C14.33,9,15,8.33,15,7.5C15,6.66,13.5,5,13.5,5S12,6.66,12,7.5C12,8.33,12.67,9,13.5,9z M18.5,1 c0,0-2.5,2.83-2.5,4.5C16,6.88,17.12,8,18.5,8S21,6.88,21,5.5C21,3.83,18.5,1,18.5,1z M18.5,6.5c-0.55,0-1-0.45-1-1 c0-0.4,0.43-1.22,1-2.05c0.57,0.83,1,1.65,1,2.05C19.5,6.05,19.05,6.5,18.5,6.5z"},"children":[]}]}]}]};exports.ic_wash_outline=ic_wash_outline;var ic_wash_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M10,21H4c-0.55,0-1-0.45-1-1v-6c0-0.39,0.23-0.64,0.36-0.75L7,9.87V12l3,0V21z M18.5,6.5c-0.55,0-1-0.45-1-1 c0-0.4,0.43-1.22,1-2.05c0.57,0.83,1,1.65,1,2.05C19.5,6.05,19.05,6.5,18.5,6.5z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M10,21H4c-0.55,0-1-0.45-1-1v-6c0-0.39,0.23-0.64,0.36-0.75L7,9.87V12l3,0V21z M18.5,6.5c-0.55,0-1-0.45-1-1 c0-0.4,0.43-1.22,1-2.05c0.57,0.83,1,1.65,1,2.05C19.5,6.05,19.05,6.5,18.5,6.5z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M20.75,16c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h6.75c0.69,0,1.25-0.56,1.25-1.25 c0-0.67-0.53-1.2-1.18-1.24L8.87,10l1.48-2.6c0.09-0.17,0.14-0.34,0.14-0.54c0-0.26-0.09-0.5-0.26-0.7L9.12,5l-7.18,6.8 C1.34,12.36,1,13.15,1,13.97V20c0,1.66,1.34,3,3,3h13.75c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h7.75 c0.69,0,1.25-0.56,1.25-1.25S20.44,17,19.75,17H12v-1H20.75z M10,21H4c-0.55,0-1-0.45-1-1v-6c0-0.39,0.23-0.64,0.36-0.75L7,9.87V12 l3,0V21z M13.5,9C14.33,9,15,8.33,15,7.5C15,6.66,13.5,5,13.5,5S12,6.66,12,7.5C12,8.33,12.67,9,13.5,9z M18.5,1 c0,0-2.5,2.83-2.5,4.5C16,6.88,17.12,8,18.5,8S21,6.88,21,5.5C21,3.83,18.5,1,18.5,1z M18.5,6.5c-0.55,0-1-0.45-1-1 c0-0.4,0.43-1.22,1-2.05c0.57,0.83,1,1.65,1,2.05C19.5,6.05,19.05,6.5,18.5,6.5z"},"children":[{"name":"path","attribs":{"d":"M20.75,16c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h6.75c0.69,0,1.25-0.56,1.25-1.25 c0-0.67-0.53-1.2-1.18-1.24L8.87,10l1.48-2.6c0.09-0.17,0.14-0.34,0.14-0.54c0-0.26-0.09-0.5-0.26-0.7L9.12,5l-7.18,6.8 C1.34,12.36,1,13.15,1,13.97V20c0,1.66,1.34,3,3,3h13.75c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h7.75 c0.69,0,1.25-0.56,1.25-1.25S20.44,17,19.75,17H12v-1H20.75z M10,21H4c-0.55,0-1-0.45-1-1v-6c0-0.39,0.23-0.64,0.36-0.75L7,9.87V12 l3,0V21z M13.5,9C14.33,9,15,8.33,15,7.5C15,6.66,13.5,5,13.5,5S12,6.66,12,7.5C12,8.33,12.67,9,13.5,9z M18.5,1 c0,0-2.5,2.83-2.5,4.5C16,6.88,17.12,8,18.5,8S21,6.88,21,5.5C21,3.83,18.5,1,18.5,1z M18.5,6.5c-0.55,0-1-0.45-1-1 c0-0.4,0.43-1.22,1-2.05c0.57,0.83,1,1.65,1,2.05C19.5,6.05,19.05,6.5,18.5,6.5z"},"children":[]}]}]}]};exports.ic_wash_twotone=ic_wash_twotone;var ic_water_damage={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M12,3L2,12h3v8h14v-8h3L12,3z M12,16c-1.1,0-2-0.9-2-2c0-1.1,2-4,2-4s2,2.9,2,4C14,15.1,13.1,16,12,16z"},"children":[]}]};exports.ic_water_damage=ic_water_damage;var ic_water_damage_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M12,3L2,12h3v8h14v-8h3L12,3z M7,18v-7.81l5-4.5l5,4.5V18H7z M14,14c0,1.1-0.9,2-2,2s-2-0.9-2-2c0-1.1,2-4,2-4 S14,12.9,14,14z"},"children":[]}]};exports.ic_water_damage_outline=ic_water_damage_outline;var ic_water_damage_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M12,5.69l-5,4.5V18h10v-7.81L12,5.69z M12,16c-1.1,0-2-0.9-2-2c0-1.1,2-4,2-4s2,2.9,2,4 C14,15.1,13.1,16,12,16z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12,3L2,12h3v8h14v-8h3L12,3z M7,18v-7.81l5-4.5l5,4.5V18H7z M14,14c0,1.1-0.9,2-2,2s-2-0.9-2-2c0-1.1,2-4,2-4 S14,12.9,14,14z"},"children":[]}]};exports.ic_water_damage_twotone=ic_water_damage_twotone;var ic_wheelchair_pickup={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[]}]},{"name":"path","attribs":{"d":"M4.5,4c0-1.11,0.89-2,2-2s2,0.89,2,2s-0.89,2-2,2S4.5,5.11,4.5,4z M10,10.95V9c0-1.1-0.9-2-2-2H5C3.9,7,3,7.9,3,9v6h2v7 h3.5v-0.11c-1.24-1.26-2-2.99-2-4.89C6.5,14.42,7.91,12.16,10,10.95z M16.5,17c0,1.65-1.35,3-3,3s-3-1.35-3-3 c0-1.11,0.61-2.06,1.5-2.58v-2.16C9.98,12.9,8.5,14.77,8.5,17c0,2.76,2.24,5,5,5s5-2.24,5-5H16.5z M19.54,14H15V8h-2v8h5.46 l2.47,3.71l1.66-1.11L19.54,14z"},"children":[{"name":"path","attribs":{"d":"M4.5,4c0-1.11,0.89-2,2-2s2,0.89,2,2s-0.89,2-2,2S4.5,5.11,4.5,4z M10,10.95V9c0-1.1-0.9-2-2-2H5C3.9,7,3,7.9,3,9v6h2v7 h3.5v-0.11c-1.24-1.26-2-2.99-2-4.89C6.5,14.42,7.91,12.16,10,10.95z M16.5,17c0,1.65-1.35,3-3,3s-3-1.35-3-3 c0-1.11,0.61-2.06,1.5-2.58v-2.16C9.98,12.9,8.5,14.77,8.5,17c0,2.76,2.24,5,5,5s5-2.24,5-5H16.5z M19.54,14H15V8h-2v8h5.46 l2.47,3.71l1.66-1.11L19.54,14z"},"children":[]}]}]}]};exports.ic_wheelchair_pickup=ic_wheelchair_pickup;var ic_wheelchair_pickup_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[]}]},{"name":"path","attribs":{"d":"M4.5,4c0-1.11,0.89-2,2-2s2,0.89,2,2s-0.89,2-2,2S4.5,5.11,4.5,4z M10,10.95V9c0-1.1-0.9-2-2-2H5C3.9,7,3,7.9,3,9v6h2v7 h3.5v-0.11c-1.24-1.26-2-2.99-2-4.89C6.5,14.42,7.91,12.16,10,10.95z M16.5,17c0,1.65-1.35,3-3,3s-3-1.35-3-3 c0-1.11,0.61-2.06,1.5-2.58v-2.16C9.98,12.9,8.5,14.77,8.5,17c0,2.76,2.24,5,5,5s5-2.24,5-5H16.5z M19.54,14H15V8h-2v8h5.46 l2.47,3.71l1.66-1.11L19.54,14z"},"children":[{"name":"path","attribs":{"d":"M4.5,4c0-1.11,0.89-2,2-2s2,0.89,2,2s-0.89,2-2,2S4.5,5.11,4.5,4z M10,10.95V9c0-1.1-0.9-2-2-2H5C3.9,7,3,7.9,3,9v6h2v7 h3.5v-0.11c-1.24-1.26-2-2.99-2-4.89C6.5,14.42,7.91,12.16,10,10.95z M16.5,17c0,1.65-1.35,3-3,3s-3-1.35-3-3 c0-1.11,0.61-2.06,1.5-2.58v-2.16C9.98,12.9,8.5,14.77,8.5,17c0,2.76,2.24,5,5,5s5-2.24,5-5H16.5z M19.54,14H15V8h-2v8h5.46 l2.47,3.71l1.66-1.11L19.54,14z"},"children":[]}]}]}]};exports.ic_wheelchair_pickup_outline=ic_wheelchair_pickup_outline;var ic_wheelchair_pickup_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[]}]},{"name":"path","attribs":{"d":"M4.5,4c0-1.11,0.89-2,2-2s2,0.89,2,2s-0.89,2-2,2S4.5,5.11,4.5,4z M10,10.95V9c0-1.1-0.9-2-2-2H5C3.9,7,3,7.9,3,9v6h2v7 h3.5v-0.11c-1.24-1.26-2-2.99-2-4.89C6.5,14.42,7.91,12.16,10,10.95z M16.5,17c0,1.65-1.35,3-3,3s-3-1.35-3-3 c0-1.11,0.61-2.06,1.5-2.58v-2.16C9.98,12.9,8.5,14.77,8.5,17c0,2.76,2.24,5,5,5s5-2.24,5-5H16.5z M19.54,14H15V8h-2v8h5.46 l2.47,3.71l1.66-1.11L19.54,14z"},"children":[{"name":"path","attribs":{"d":"M4.5,4c0-1.11,0.89-2,2-2s2,0.89,2,2s-0.89,2-2,2S4.5,5.11,4.5,4z M10,10.95V9c0-1.1-0.9-2-2-2H5C3.9,7,3,7.9,3,9v6h2v7 h3.5v-0.11c-1.24-1.26-2-2.99-2-4.89C6.5,14.42,7.91,12.16,10,10.95z M16.5,17c0,1.65-1.35,3-3,3s-3-1.35-3-3 c0-1.11,0.61-2.06,1.5-2.58v-2.16C9.98,12.9,8.5,14.77,8.5,17c0,2.76,2.24,5,5,5s5-2.24,5-5H16.5z M19.54,14H15V8h-2v8h5.46 l2.47,3.71l1.66-1.11L19.54,14z"},"children":[]}]}]}]};exports.ic_wheelchair_pickup_twotone=ic_wheelchair_pickup_twotone;var ic_6_ft_apart={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[]},{"name":"path","attribs":{"d":"M6,6c1.1,0,2-0.9,2-2S7.1,2,6,2S4,2.9,4,4S4.9,6,6,6z M10,9.43c0-0.81-0.48-1.53-1.22-1.85C7.93,7.21,6.99,7,6,7 C5.01,7,4.07,7.21,3.22,7.58C2.48,7.9,2,8.62,2,9.43V10h8V9.43z M18,6c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S16.9,6,18,6z M22,9.43 c0-0.81-0.48-1.53-1.22-1.85C19.93,7.21,18.99,7,18,7c-0.99,0-1.93,0.21-2.78,0.58C14.48,7.9,14,8.62,14,9.43V10h8V9.43z M19,17 v-2.01L5,15v2l-3-3l3-3v2.01L19,13v-2l3,3L19,17z M10,19v-1H7.5C7.22,18,7,18.22,7,18.5v3C7,21.78,7.22,22,7.5,22h2 c0.28,0,0.5-0.22,0.5-0.5V20c0-0.28-0.22-0.5-0.5-0.5H8V19H10z M9,20.5V21H8v-0.5H9z M17.5,19h-1v3h-1v-3h-1v-1h3V19z M12.5,19v0.5 h1v1h-1V22h-1v-4H14v1H12.5z"},"children":[]}]};exports.ic_6_ft_apart=ic_6_ft_apart;var ic_6_ft_apart_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[]},{"name":"path","attribs":{"d":"M6,6c1.1,0,2-0.9,2-2S7.1,2,6,2S4,2.9,4,4S4.9,6,6,6z M10,9.43c0-0.81-0.48-1.53-1.22-1.85C7.93,7.21,6.99,7,6,7 C5.01,7,4.07,7.21,3.22,7.58C2.48,7.9,2,8.62,2,9.43V10h8V9.43z M18,6c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S16.9,6,18,6z M22,9.43 c0-0.81-0.48-1.53-1.22-1.85C19.93,7.21,18.99,7,18,7c-0.99,0-1.93,0.21-2.78,0.58C14.48,7.9,14,8.62,14,9.43V10h8V9.43z M19,17 v-2.01L5,15v2l-3-3l3-3v2.01L19,13v-2l3,3L19,17z M10,19v-1H7.5C7.22,18,7,18.22,7,18.5v3C7,21.78,7.22,22,7.5,22h2 c0.28,0,0.5-0.22,0.5-0.5V20c0-0.28-0.22-0.5-0.5-0.5H8V19H10z M9,20.5V21H8v-0.5H9z M17.5,19h-1v3h-1v-3h-1v-1h3V19z M12.5,19v0.5 h1v1h-1V22h-1v-4H14v1H12.5z"},"children":[]}]};exports.ic_6_ft_apart_outline=ic_6_ft_apart_outline;var ic_6_ft_apart_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[]},{"name":"path","attribs":{"d":"M6,6c1.1,0,2-0.9,2-2S7.1,2,6,2S4,2.9,4,4S4.9,6,6,6z M10,9.43c0-0.81-0.48-1.53-1.22-1.85C7.93,7.21,6.99,7,6,7 C5.01,7,4.07,7.21,3.22,7.58C2.48,7.9,2,8.62,2,9.43V10h8V9.43z M18,6c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S16.9,6,18,6z M22,9.43 c0-0.81-0.48-1.53-1.22-1.85C19.93,7.21,18.99,7,18,7c-0.99,0-1.93,0.21-2.78,0.58C14.48,7.9,14,8.62,14,9.43V10h8V9.43z M19,17 v-2.01L5,15v2l-3-3l3-3v2.01L19,13v-2l3,3L19,17z M10,19v-1H7.5C7.22,18,7,18.22,7,18.5v3C7,21.78,7.22,22,7.5,22h2 c0.28,0,0.5-0.22,0.5-0.5V20c0-0.28-0.22-0.5-0.5-0.5H8V19H10z M9,20.5V21H8v-0.5H9z M17.5,19h-1v3h-1v-3h-1v-1h3V19z M12.5,19v0.5 h1v1h-1V22h-1v-4H14v1H12.5z"},"children":[]}]};exports.ic_6_ft_apart_twotone=ic_6_ft_apart_twotone;var ic_add_moderator={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13.22 22.61c-.4.15-.8.29-1.22.39-5.16-1.26-9-6.45-9-12V5l9-4 9 4v6c0 .9-.11 1.78-.3 2.65-.81-.41-1.73-.65-2.7-.65-3.31 0-6 2.69-6 6 0 1.36.46 2.61 1.22 3.61zM19 20v2.99s-1.99.01-2 0V20h-3v-2h3v-3h2v3h3v2h-3z"},"children":[]}]};exports.ic_add_moderator=ic_add_moderator;var ic_architecture={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M6.36,18.78L6.61,21l1.62-1.54l2.77-7.6c-0.68-0.17-1.28-0.51-1.77-0.98L6.36,18.78z"},"children":[{"name":"path","attribs":{"d":"M6.36,18.78L6.61,21l1.62-1.54l2.77-7.6c-0.68-0.17-1.28-0.51-1.77-0.98L6.36,18.78z"},"children":[]}]},{"name":"path","attribs":{"d":"M14.77,10.88c-0.49,0.47-1.1,0.81-1.77,0.98l2.77,7.6L17.39,21l0.26-2.22L14.77,10.88z"},"children":[{"name":"path","attribs":{"d":"M14.77,10.88c-0.49,0.47-1.1,0.81-1.77,0.98l2.77,7.6L17.39,21l0.26-2.22L14.77,10.88z"},"children":[]}]},{"name":"path","attribs":{"d":"M15,8c0-1.3-0.84-2.4-2-2.82V3h-2v2.18C9.84,5.6,9,6.7,9,8c0,1.66,1.34,3,3,3S15,9.66,15,8z M12,9c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C13,8.55,12.55,9,12,9z"},"children":[{"name":"path","attribs":{"d":"M15,8c0-1.3-0.84-2.4-2-2.82V3h-2v2.18C9.84,5.6,9,6.7,9,8c0,1.66,1.34,3,3,3S15,9.66,15,8z M12,9c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C13,8.55,12.55,9,12,9z"},"children":[]}]}]}]}]}]};exports.ic_architecture=ic_architecture;var ic_architecture_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M6.36,18.78L6.61,21l1.62-1.54l2.77-7.6c-0.68-0.17-1.28-0.51-1.77-0.98L6.36,18.78z"},"children":[{"name":"path","attribs":{"d":"M6.36,18.78L6.61,21l1.62-1.54l2.77-7.6c-0.68-0.17-1.28-0.51-1.77-0.98L6.36,18.78z"},"children":[]}]},{"name":"path","attribs":{"d":"M14.77,10.88c-0.49,0.47-1.1,0.81-1.77,0.98l2.77,7.6L17.39,21l0.26-2.22L14.77,10.88z"},"children":[{"name":"path","attribs":{"d":"M14.77,10.88c-0.49,0.47-1.1,0.81-1.77,0.98l2.77,7.6L17.39,21l0.26-2.22L14.77,10.88z"},"children":[]}]},{"name":"path","attribs":{"d":"M15,8c0-1.3-0.84-2.4-2-2.82V3h-2v2.18C9.84,5.6,9,6.7,9,8c0,1.66,1.34,3,3,3S15,9.66,15,8z M12,9c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C13,8.55,12.55,9,12,9z"},"children":[{"name":"path","attribs":{"d":"M15,8c0-1.3-0.84-2.4-2-2.82V3h-2v2.18C9.84,5.6,9,6.7,9,8c0,1.66,1.34,3,3,3S15,9.66,15,8z M12,9c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C13,8.55,12.55,9,12,9z"},"children":[]}]}]}]}]}]};exports.ic_architecture_outline=ic_architecture_outline;var ic_architecture_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M6.36,18.78L6.61,21l1.62-1.54l2.77-7.6c-0.68-0.17-1.28-0.51-1.77-0.98L6.36,18.78z"},"children":[{"name":"path","attribs":{"d":"M6.36,18.78L6.61,21l1.62-1.54l2.77-7.6c-0.68-0.17-1.28-0.51-1.77-0.98L6.36,18.78z"},"children":[]}]},{"name":"path","attribs":{"d":"M14.77,10.88c-0.49,0.47-1.1,0.81-1.77,0.98l2.77,7.6L17.39,21l0.26-2.22L14.77,10.88z"},"children":[{"name":"path","attribs":{"d":"M14.77,10.88c-0.49,0.47-1.1,0.81-1.77,0.98l2.77,7.6L17.39,21l0.26-2.22L14.77,10.88z"},"children":[]}]},{"name":"path","attribs":{"d":"M15,8c0-1.3-0.84-2.4-2-2.82V3h-2v2.18C9.84,5.6,9,6.7,9,8c0,1.66,1.34,3,3,3S15,9.66,15,8z M12,9c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C13,8.55,12.55,9,12,9z"},"children":[{"name":"path","attribs":{"d":"M15,8c0-1.3-0.84-2.4-2-2.82V3h-2v2.18C9.84,5.6,9,6.7,9,8c0,1.66,1.34,3,3,3S15,9.66,15,8z M12,9c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C13,8.55,12.55,9,12,9z"},"children":[]}]}]}]}]}]};exports.ic_architecture_twotone=ic_architecture_twotone;var ic_cake={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 6c1.11 0 2-.9 2-2 0-.38-.1-.73-.29-1.03L12 0l-1.71 2.97c-.19.3-.29.65-.29 1.03 0 1.1.9 2 2 2zm4.6 9.99l-1.07-1.07-1.08 1.07c-1.3 1.3-3.58 1.31-4.89 0l-1.07-1.07-1.09 1.07C6.75 16.64 5.88 17 4.96 17c-.73 0-1.4-.23-1.96-.61V21c0 .55.45 1 1 1h16c.55 0 1-.45 1-1v-4.61c-.56.38-1.23.61-1.96.61-.92 0-1.79-.36-2.44-1.01zM18 9h-5V7h-2v2H6c-1.66 0-3 1.34-3 3v1.54c0 1.08.88 1.96 1.96 1.96.52 0 1.02-.2 1.38-.57l2.14-2.13 2.13 2.13c.74.74 2.03.74 2.77 0l2.14-2.13 2.13 2.13c.37.37.86.57 1.38.57 1.08 0 1.96-.88 1.96-1.96V12C21 10.34 19.66 9 18 9z"},"children":[]}]};exports.ic_cake=ic_cake;var ic_cake_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 6c1.11 0 2-.9 2-2 0-.38-.1-.73-.29-1.03L12 0l-1.71 2.97c-.19.3-.29.65-.29 1.03 0 1.1.9 2 2 2zm6 3h-5V7h-2v2H6c-1.66 0-3 1.34-3 3v9c0 .55.45 1 1 1h16c.55 0 1-.45 1-1v-9c0-1.66-1.34-3-3-3zm1 11H5v-3c.9-.01 1.76-.37 2.4-1.01l1.09-1.07 1.07 1.07c1.31 1.31 3.59 1.3 4.89 0l1.08-1.07 1.07 1.07c.64.64 1.5 1 2.4 1.01v3zm0-4.5c-.51-.01-.99-.2-1.35-.57l-2.13-2.13-2.14 2.13c-.74.74-2.03.74-2.77 0L8.48 12.8l-2.14 2.13c-.35.36-.83.56-1.34.57V12c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v3.5z"},"children":[]}]};exports.ic_cake_outline=ic_cake_outline;var ic_cake_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.53 14.92l-1.08 1.07c-1.3 1.3-3.58 1.31-4.89 0l-1.07-1.07-1.09 1.07c-.64.64-1.5 1-2.4 1.01v3h14v-3c-.9-.01-1.76-.37-2.4-1.01l-1.07-1.07zM18 11H6c-.55 0-1 .45-1 1v3.5c.51-.01.99-.21 1.34-.57l2.14-2.13 2.13 2.13c.74.74 2.03.74 2.77 0l2.14-2.13 2.13 2.13c.36.36.84.56 1.35.57V12c0-.55-.45-1-1-1z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 6c1.11 0 2-.9 2-2 0-.38-.1-.73-.29-1.03L12 0l-1.71 2.97c-.19.3-.29.65-.29 1.03 0 1.1.9 2 2 2zm6 3h-5V7h-2v2H6c-1.66 0-3 1.34-3 3v9c0 .55.45 1 1 1h16c.55 0 1-.45 1-1v-9c0-1.66-1.34-3-3-3zm1 11H5v-3c.9-.01 1.76-.37 2.4-1.01l1.09-1.07 1.07 1.07c1.31 1.31 3.59 1.3 4.89 0l1.08-1.07 1.07 1.07c.64.64 1.5 1 2.4 1.01v3zm0-4.5c-.51-.01-.99-.2-1.35-.57l-2.13-2.13-2.14 2.13c-.74.74-2.03.74-2.77 0L8.48 12.8l-2.14 2.13c-.35.36-.83.56-1.34.57V12c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v3.5z"},"children":[]}]};exports.ic_cake_twotone=ic_cake_twotone;var ic_clean_hands={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M16.99,5l0.63,1.37L18.99,7l-1.37,0.63L16.99,9l-0.63-1.37L14.99,7l1.37-0.63L16.99,5 M11,6.13V4h2 c0.57,0,1.1,0.17,1.55,0.45l1.43-1.43C15.15,2.39,14.13,2,13,2c-1.48,0-5.5,0-5.5,0v2H9v2.14C7.23,6.51,5.81,7.8,5.26,9.5h3.98 L15,11.65v-0.62C15,8.61,13.28,6.59,11,6.13z M1,22h4V11H1V22z M20,17h-7l-2.09-0.73l0.33-0.94L13,16h2.82 c0.65,0,1.18-0.53,1.18-1.18l0,0c0-0.49-0.31-0.93-0.77-1.11L8.97,11H7v9.02L14,22l8-3l0,0C21.99,17.9,21.11,17,20,17z M20,14 c1.1,0,2-0.9,2-2c0-1.1-2-4-2-4s-2,2.9-2,4C18,13.1,18.9,14,20,14z"},"children":[]}]};exports.ic_clean_hands=ic_clean_hands;var ic_clean_hands_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M16.99,5l0.63,1.37L18.99,7l-1.37,0.63L16.99,9l-0.63-1.37L14.99,7l1.37-0.63L16.99,5 M20,14c1.1,0,2-0.9,2-2c0-1.1-2-4-2-4 s-2,2.9-2,4C18,13.1,18.9,14,20,14z M11,6.1V4h2c0.57,0,1.1,0.17,1.55,0.45l1.43-1.43C15.15,2.39,14.13,2,13,2c-1.47,0-5.44,0-5.5,0 v2H9v2.11C7.22,6.48,5.8,7.79,5.25,9.5h2.16C7.94,8.61,8.89,8,10,8c1.62,0,2.94,1.29,2.99,2.9L15,11.65V11 C15,8.58,13.28,6.56,11,6.1z M22,19v1l-8,2.5l-7-1.94V22H1V11h7.97l6.16,2.3C16.25,13.72,17,14.8,17,16h2C20.66,16,22,17.34,22,19z M5,20v-7H3v7H5z M19.9,18.57c-0.16-0.33-0.51-0.56-0.9-0.56h-5.35c-0.54,0-1.07-0.09-1.58-0.26l-2.38-0.79l0.63-1.9l2.38,0.79 C13.01,15.95,15,16,15,16c0-0.37-0.23-0.7-0.57-0.83L8.61,13H7v5.48l6.97,1.93L19.9,18.57z"},"children":[]}]};exports.ic_clean_hands_outline=ic_clean_hands_outline;var ic_clean_hands_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M9.24,9.5H7.42C7.94,8.61,8.89,8,10,8c1.62,0,2.94,1.29,2.99,2.9L9.24,9.5z M5,20v-7H3v7H5z M19.9,18.57 c-0.16-0.33-0.51-0.56-0.9-0.56h-5.35c-0.54,0-1.07-0.09-1.58-0.26l-2.38-0.79l0.63-1.9l2.38,0.79C13.01,15.95,15,16,15,16 c0-0.37-0.23-0.7-0.57-0.83L8.61,13H7v5.48l6.97,1.93L19.9,18.57z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M16.99,5l0.63,1.37L18.99,7l-1.37,0.63L16.99,9l-0.63-1.37L14.99,7l1.37-0.63L16.99,5 M20,14c1.1,0,2-0.9,2-2c0-1.1-2-4-2-4 s-2,2.9-2,4C18,13.1,18.9,14,20,14z M11,6.1V4h2c0.57,0,1.1,0.17,1.55,0.45l1.43-1.43C15.15,2.39,14.13,2,13,2c-1.47,0-5.44,0-5.5,0 v2H9v2.11C7.22,6.48,5.8,7.79,5.25,9.5h2.16C7.94,8.61,8.89,8,10,8c1.62,0,2.94,1.29,2.99,2.9L15,11.65V11 C15,8.58,13.28,6.56,11,6.1z M22,19v1l-8,2.5l-7-1.94V22H1V11h7.97l6.16,2.3C16.25,13.72,17,14.8,17,16h2C20.66,16,22,17.34,22,19z M5,20v-7H3v7H5z M19.9,18.57c-0.16-0.33-0.51-0.56-0.9-0.56h-5.35c-0.54,0-1.07-0.09-1.58-0.26l-2.38-0.79l0.63-1.9l2.38,0.79 C13.01,15.95,15,16,15,16c0-0.37-0.23-0.7-0.57-0.83L8.61,13H7v5.48l6.97,1.93L19.9,18.57z"},"children":[]}]};exports.ic_clean_hands_twotone=ic_clean_hands_twotone;var ic_connect_without_contact={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M11,14H9c0-4.97,4.03-9,9-9v2C14.13,7,11,10.13,11,14z M18,11V9c-2.76,0-5,2.24-5,5h2C15,12.34,16.34,11,18,11z M7,4 c0-1.11-0.89-2-2-2S3,2.89,3,4s0.89,2,2,2S7,5.11,7,4z M11.45,4.5h-2C9.21,5.92,7.99,7,6.5,7h-3C2.67,7,2,7.67,2,8.5V11h6V8.74 C9.86,8.15,11.25,6.51,11.45,4.5z M19,17c1.11,0,2-0.89,2-2s-0.89-2-2-2s-2,0.89-2,2S17.89,17,19,17z M20.5,18h-3 c-1.49,0-2.71-1.08-2.95-2.5h-2c0.2,2.01,1.59,3.65,3.45,4.24V22h6v-2.5C22,18.67,21.33,18,20.5,18z"},"children":[]}]};exports.ic_connect_without_contact=ic_connect_without_contact;var ic_connect_without_contact_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M11,14H9c0-4.97,4.03-9,9-9v2C14.13,7,11,10.13,11,14z M18,11V9c-2.76,0-5,2.24-5,5h2C15,12.34,16.34,11,18,11z M7,4 c0-1.11-0.89-2-2-2S3,2.89,3,4s0.89,2,2,2S7,5.11,7,4z M11.45,4.5h-2C9.21,5.92,7.99,7,6.5,7h-3C2.67,7,2,7.67,2,8.5V11h6V8.74 C9.86,8.15,11.25,6.51,11.45,4.5z M19,17c1.11,0,2-0.89,2-2s-0.89-2-2-2s-2,0.89-2,2S17.89,17,19,17z M20.5,18h-3 c-1.49,0-2.71-1.08-2.95-2.5h-2c0.2,2.01,1.59,3.65,3.45,4.24V22h6v-2.5C22,18.67,21.33,18,20.5,18z"},"children":[]}]};exports.ic_connect_without_contact_outline=ic_connect_without_contact_outline;var ic_connect_without_contact_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M11,14H9c0-4.97,4.03-9,9-9v2C14.13,7,11,10.13,11,14z M18,11V9c-2.76,0-5,2.24-5,5h2C15,12.34,16.34,11,18,11z M7,4 c0-1.11-0.89-2-2-2S3,2.89,3,4s0.89,2,2,2S7,5.11,7,4z M11.45,4.5h-2C9.21,5.92,7.99,7,6.5,7h-3C2.67,7,2,7.67,2,8.5V11h6V8.74 C9.86,8.15,11.25,6.51,11.45,4.5z M19,17c1.11,0,2-0.89,2-2s-0.89-2-2-2s-2,0.89-2,2S17.89,17,19,17z M20.5,18h-3 c-1.49,0-2.71-1.08-2.95-2.5h-2c0.2,2.01,1.59,3.65,3.45,4.24V22h6v-2.5C22,18.67,21.33,18,20.5,18z"},"children":[]}]};exports.ic_connect_without_contact_twotone=ic_connect_without_contact_twotone;var ic_construction={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"height":"8.48","transform":"matrix(0.7071 -0.7071 0.7071 0.7071 -6.8717 17.6255)","width":"3","x":"16.34","y":"12.87"},"children":[{"name":"rect","attribs":{"height":"8.48","transform":"matrix(0.7071 -0.7071 0.7071 0.7071 -6.8717 17.6255)","width":"3","x":"16.34","y":"12.87"},"children":[]}]},{"name":"path","attribs":{"d":"M17.5,10c1.93,0,3.5-1.57,3.5-3.5c0-0.58-0.16-1.12-0.41-1.6l-2.7,2.7L16.4,6.11l2.7-2.7C18.62,3.16,18.08,3,17.5,3 C15.57,3,14,4.57,14,6.5c0,0.41,0.08,0.8,0.21,1.16l-1.85,1.85l-1.78-1.78l0.71-0.71L9.88,5.61L12,3.49 c-1.17-1.17-3.07-1.17-4.24,0L4.22,7.03l1.41,1.41H2.81L2.1,9.15l3.54,3.54l0.71-0.71V9.15l1.41,1.41l0.71-0.71l1.78,1.78 l-7.41,7.41l2.12,2.12L16.34,9.79C16.7,9.92,17.09,10,17.5,10z"},"children":[{"name":"path","attribs":{"d":"M17.5,10c1.93,0,3.5-1.57,3.5-3.5c0-0.58-0.16-1.12-0.41-1.6l-2.7,2.7L16.4,6.11l2.7-2.7C18.62,3.16,18.08,3,17.5,3 C15.57,3,14,4.57,14,6.5c0,0.41,0.08,0.8,0.21,1.16l-1.85,1.85l-1.78-1.78l0.71-0.71L9.88,5.61L12,3.49 c-1.17-1.17-3.07-1.17-4.24,0L4.22,7.03l1.41,1.41H2.81L2.1,9.15l3.54,3.54l0.71-0.71V9.15l1.41,1.41l0.71-0.71l1.78,1.78 l-7.41,7.41l2.12,2.12L16.34,9.79C16.7,9.92,17.09,10,17.5,10z"},"children":[]}]}]}]}]}]};exports.ic_construction=ic_construction;var ic_construction_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"height":"8.48","transform":"matrix(0.7071 -0.7071 0.7071 0.7071 -6.8717 17.6255)","width":"3","x":"16.34","y":"12.87"},"children":[{"name":"rect","attribs":{"height":"8.48","transform":"matrix(0.7071 -0.7071 0.7071 0.7071 -6.8717 17.6255)","width":"3","x":"16.34","y":"12.87"},"children":[]}]},{"name":"path","attribs":{"d":"M17.5,10c1.93,0,3.5-1.57,3.5-3.5c0-0.58-0.16-1.12-0.41-1.6l-2.7,2.7L16.4,6.11l2.7-2.7C18.62,3.16,18.08,3,17.5,3 C15.57,3,14,4.57,14,6.5c0,0.41,0.08,0.8,0.21,1.16l-1.85,1.85l-1.78-1.78l0.71-0.71L9.88,5.61L12,3.49 c-1.17-1.17-3.07-1.17-4.24,0L4.22,7.03l1.41,1.41H2.81L2.1,9.15l3.54,3.54l0.71-0.71V9.15l1.41,1.41l0.71-0.71l1.78,1.78 l-7.41,7.41l2.12,2.12L16.34,9.79C16.7,9.92,17.09,10,17.5,10z"},"children":[{"name":"path","attribs":{"d":"M17.5,10c1.93,0,3.5-1.57,3.5-3.5c0-0.58-0.16-1.12-0.41-1.6l-2.7,2.7L16.4,6.11l2.7-2.7C18.62,3.16,18.08,3,17.5,3 C15.57,3,14,4.57,14,6.5c0,0.41,0.08,0.8,0.21,1.16l-1.85,1.85l-1.78-1.78l0.71-0.71L9.88,5.61L12,3.49 c-1.17-1.17-3.07-1.17-4.24,0L4.22,7.03l1.41,1.41H2.81L2.1,9.15l3.54,3.54l0.71-0.71V9.15l1.41,1.41l0.71-0.71l1.78,1.78 l-7.41,7.41l2.12,2.12L16.34,9.79C16.7,9.92,17.09,10,17.5,10z"},"children":[]}]}]}]}]}]};exports.ic_construction_outline=ic_construction_outline;var ic_construction_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"height":"8.48","transform":"matrix(0.7071 -0.7071 0.7071 0.7071 -6.8717 17.6255)","width":"3","x":"16.34","y":"12.87"},"children":[{"name":"rect","attribs":{"height":"8.48","transform":"matrix(0.7071 -0.7071 0.7071 0.7071 -6.8717 17.6255)","width":"3","x":"16.34","y":"12.87"},"children":[]}]},{"name":"path","attribs":{"d":"M17.5,10c1.93,0,3.5-1.57,3.5-3.5c0-0.58-0.16-1.12-0.41-1.6l-2.7,2.7L16.4,6.11l2.7-2.7C18.62,3.16,18.08,3,17.5,3 C15.57,3,14,4.57,14,6.5c0,0.41,0.08,0.8,0.21,1.16l-1.85,1.85l-1.78-1.78l0.71-0.71L9.88,5.61L12,3.49 c-1.17-1.17-3.07-1.17-4.24,0L4.22,7.03l1.41,1.41H2.81L2.1,9.15l3.54,3.54l0.71-0.71V9.15l1.41,1.41l0.71-0.71l1.78,1.78 l-7.41,7.41l2.12,2.12L16.34,9.79C16.7,9.92,17.09,10,17.5,10z"},"children":[{"name":"path","attribs":{"d":"M17.5,10c1.93,0,3.5-1.57,3.5-3.5c0-0.58-0.16-1.12-0.41-1.6l-2.7,2.7L16.4,6.11l2.7-2.7C18.62,3.16,18.08,3,17.5,3 C15.57,3,14,4.57,14,6.5c0,0.41,0.08,0.8,0.21,1.16l-1.85,1.85l-1.78-1.78l0.71-0.71L9.88,5.61L12,3.49 c-1.17-1.17-3.07-1.17-4.24,0L4.22,7.03l1.41,1.41H2.81L2.1,9.15l3.54,3.54l0.71-0.71V9.15l1.41,1.41l0.71-0.71l1.78,1.78 l-7.41,7.41l2.12,2.12L16.34,9.79C16.7,9.92,17.09,10,17.5,10z"},"children":[]}]}]}]}]}]};exports.ic_construction_twotone=ic_construction_twotone;var ic_coronavirus={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M21.25,10.5c-0.41,0-0.75,0.34-0.75,0.75h-1.54c-0.15-1.37-0.69-2.63-1.52-3.65l1.09-1.09l0.01,0.01 c0.29,0.29,0.77,0.29,1.06,0s0.29-0.77,0-1.06L18.54,4.4c-0.29-0.29-0.77-0.29-1.06,0c-0.29,0.29-0.29,0.76-0.01,1.05l-1.09,1.09 c-1.02-0.82-2.27-1.36-3.64-1.51V3.5h0.01c0.41,0,0.75-0.34,0.75-0.75C13.5,2.34,13.16,2,12.75,2h-1.5c-0.41,0-0.75,0.34-0.75,0.75 c0,0.41,0.33,0.74,0.74,0.75v1.55C9.87,5.19,8.62,5.74,7.6,6.56L6.51,5.47l0.01-0.01c0.29-0.29,0.29-0.77,0-1.06 c-0.29-0.29-0.77-0.29-1.06,0L4.4,5.46c-0.29,0.29-0.29,0.77,0,1.06c0.29,0.29,0.76,0.29,1.05,0.01l1.09,1.09 c-0.82,1.02-1.36,2.26-1.5,3.63H3.5c0-0.41-0.34-0.75-0.75-0.75C2.34,10.5,2,10.84,2,11.25v1.5c0,0.41,0.34,0.75,0.75,0.75 c0.41,0,0.75-0.34,0.75-0.75h1.54c0.15,1.37,0.69,2.61,1.5,3.63l-1.09,1.09c-0.29-0.29-0.76-0.28-1.05,0.01 c-0.29,0.29-0.29,0.77,0,1.06l1.06,1.06c0.29,0.29,0.77,0.29,1.06,0c0.29-0.29,0.29-0.77,0-1.06l-0.01-0.01l1.09-1.09 c1.02,0.82,2.26,1.36,3.63,1.51v1.55c-0.41,0.01-0.74,0.34-0.74,0.75c0,0.41,0.34,0.75,0.75,0.75h1.5c0.41,0,0.75-0.34,0.75-0.75 c0-0.41-0.34-0.75-0.75-0.75h-0.01v-1.54c1.37-0.14,2.62-0.69,3.64-1.51l1.09,1.09c-0.29,0.29-0.28,0.76,0.01,1.05 c0.29,0.29,0.77,0.29,1.06,0l1.06-1.06c0.29-0.29,0.29-0.77,0-1.06c-0.29-0.29-0.77-0.29-1.06,0l-0.01,0.01l-1.09-1.09 c0.82-1.02,1.37-2.27,1.52-3.65h1.54c0,0.41,0.34,0.75,0.75,0.75c0.41,0,0.75-0.34,0.75-0.75v-1.5C22,10.84,21.66,10.5,21.25,10.5z M13.75,8c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S13.2,8,13.75,8z M12,13c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1 C13,12.55,12.55,13,12,13z M10.25,8c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S9.7,8,10.25,8z M8.5,13c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C9.5,12.55,9.05,13,8.5,13z M10.25,16c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1 C11.25,15.55,10.8,16,10.25,16z M13.75,16c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C14.75,15.55,14.3,16,13.75,16z M14.5,12 c0-0.55,0.45-1,1-1s1,0.45,1,1c0,0.55-0.45,1-1,1S14.5,12.55,14.5,12z"},"children":[]}]};exports.ic_coronavirus=ic_coronavirus;var ic_coronavirus_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M9.5,12c0,0.55-0.45,1-1,1s-1-0.45-1-1c0-0.55,0.45-1,1-1S9.5,11.45,9.5,12z M13.75,10c0.55,0,1-0.45,1-1s-0.45-1-1-1 s-1,0.45-1,1S13.2,10,13.75,10z M10.25,10c0.55,0,1-0.45,1-1s-0.45-1-1-1s-1,0.45-1,1S9.7,10,10.25,10z M10.25,14 c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1s1-0.45,1-1C11.25,14.45,10.8,14,10.25,14z M22,11.25v1.5c0,0.41-0.34,0.75-0.75,0.75 c-0.41,0-0.75-0.34-0.75-0.75h-1.54c-0.15,1.37-0.69,2.63-1.52,3.65l1.09,1.09l0.01-0.01c0.29-0.29,0.77-0.29,1.06,0 c0.29,0.29,0.29,0.77,0,1.06l-1.06,1.06c-0.29,0.29-0.77,0.29-1.06,0c-0.29-0.29-0.29-0.76-0.01-1.05l-1.09-1.09 c-1.02,0.82-2.27,1.36-3.64,1.51v1.54h0.01c0.41,0,0.75,0.34,0.75,0.75c0,0.41-0.34,0.75-0.75,0.75h-1.5 c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.33-0.74,0.74-0.75v-1.55c-1.37-0.15-2.62-0.69-3.63-1.51l-1.09,1.09l0.01,0.01 c0.29,0.29,0.29,0.77,0,1.06c-0.29,0.29-0.77,0.29-1.06,0L4.4,18.54c-0.29-0.29-0.29-0.77,0-1.06c0.29-0.29,0.76-0.29,1.05-0.01 l1.09-1.09c-0.82-1.02-1.36-2.26-1.5-3.63H3.5c0,0.41-0.34,0.75-0.75,0.75C2.34,13.5,2,13.16,2,12.75v-1.5 c0-0.41,0.34-0.75,0.75-0.75c0.41,0,0.75,0.34,0.75,0.75h1.54c0.15-1.37,0.69-2.61,1.5-3.63L5.45,6.53C5.16,6.81,4.69,6.81,4.4,6.52 c-0.29-0.29-0.29-0.77,0-1.06L5.46,4.4c0.29-0.29,0.77-0.29,1.06,0c0.29,0.29,0.29,0.77,0,1.06L6.51,5.47L7.6,6.56 c1.02-0.82,2.26-1.36,3.63-1.51V3.5c-0.41-0.01-0.74-0.34-0.74-0.75C10.5,2.34,10.84,2,11.25,2h1.5c0.41,0,0.75,0.34,0.75,0.75 c0,0.41-0.34,0.75-0.75,0.75h-0.01v1.54c1.37,0.14,2.62,0.69,3.64,1.51l1.09-1.09c-0.29-0.29-0.28-0.76,0.01-1.05 c0.29-0.29,0.77-0.29,1.06,0l1.06,1.06c0.29,0.29,0.29,0.77,0,1.06s-0.77,0.29-1.06,0l-0.01-0.01L17.44,7.6 c0.82,1.02,1.37,2.27,1.52,3.65h1.54c0-0.41,0.34-0.75,0.75-0.75C21.66,10.5,22,10.84,22,11.25z M17,12c0-2.76-2.24-5-5-5 s-5,2.24-5,5s2.24,5,5,5S17,14.76,17,12z M12,11c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1s1-0.45,1-1C13,11.45,12.55,11,12,11z M15.5,11c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1s1-0.45,1-1C16.5,11.45,16.05,11,15.5,11z M13.75,14c-0.55,0-1,0.45-1,1 c0,0.55,0.45,1,1,1s1-0.45,1-1C14.75,14.45,14.3,14,13.75,14z"},"children":[]}]};exports.ic_coronavirus_outline=ic_coronavirus_outline;var ic_coronavirus_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M12,7c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S14.76,7,12,7z M13.75,8c0.55,0,1,0.45,1,1s-0.45,1-1,1 s-1-0.45-1-1S13.2,8,13.75,8z M10.25,8c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S9.7,8,10.25,8z M8.5,13c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C9.5,12.55,9.05,13,8.5,13z M10.25,16c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1 C11.25,15.55,10.8,16,10.25,16z M12,13c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C13,12.55,12.55,13,12,13z M13.75,16 c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C14.75,15.55,14.3,16,13.75,16z M15.5,13c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1 s1,0.45,1,1C16.5,12.55,16.05,13,15.5,13z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M9.5,12c0,0.55-0.45,1-1,1s-1-0.45-1-1c0-0.55,0.45-1,1-1S9.5,11.45,9.5,12z M13.75,10c0.55,0,1-0.45,1-1s-0.45-1-1-1 s-1,0.45-1,1S13.2,10,13.75,10z M10.25,10c0.55,0,1-0.45,1-1s-0.45-1-1-1s-1,0.45-1,1S9.7,10,10.25,10z M10.25,14 c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1s1-0.45,1-1C11.25,14.45,10.8,14,10.25,14z M22,11.25v1.5c0,0.41-0.34,0.75-0.75,0.75 c-0.41,0-0.75-0.34-0.75-0.75h-1.54c-0.15,1.37-0.69,2.63-1.52,3.65l1.09,1.09l0.01-0.01c0.29-0.29,0.77-0.29,1.06,0 c0.29,0.29,0.29,0.77,0,1.06l-1.06,1.06c-0.29,0.29-0.77,0.29-1.06,0c-0.29-0.29-0.29-0.76-0.01-1.05l-1.09-1.09 c-1.02,0.82-2.27,1.36-3.64,1.51v1.54h0.01c0.41,0,0.75,0.34,0.75,0.75c0,0.41-0.34,0.75-0.75,0.75h-1.5 c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.33-0.74,0.74-0.75v-1.55c-1.37-0.15-2.62-0.69-3.63-1.51l-1.09,1.09l0.01,0.01 c0.29,0.29,0.29,0.77,0,1.06c-0.29,0.29-0.77,0.29-1.06,0L4.4,18.54c-0.29-0.29-0.29-0.77,0-1.06c0.29-0.29,0.76-0.29,1.05-0.01 l1.09-1.09c-0.82-1.02-1.36-2.26-1.5-3.63H3.5c0,0.41-0.34,0.75-0.75,0.75C2.34,13.5,2,13.16,2,12.75v-1.5 c0-0.41,0.34-0.75,0.75-0.75c0.41,0,0.75,0.34,0.75,0.75h1.54c0.15-1.37,0.69-2.61,1.5-3.63L5.45,6.53C5.16,6.81,4.69,6.81,4.4,6.52 c-0.29-0.29-0.29-0.77,0-1.06L5.46,4.4c0.29-0.29,0.77-0.29,1.06,0c0.29,0.29,0.29,0.77,0,1.06L6.51,5.47L7.6,6.56 c1.02-0.82,2.26-1.36,3.63-1.51V3.5c-0.41-0.01-0.74-0.34-0.74-0.75C10.5,2.34,10.84,2,11.25,2h1.5c0.41,0,0.75,0.34,0.75,0.75 c0,0.41-0.34,0.75-0.75,0.75h-0.01v1.54c1.37,0.14,2.62,0.69,3.64,1.51l1.09-1.09c-0.29-0.29-0.28-0.76,0.01-1.05 c0.29-0.29,0.77-0.29,1.06,0l1.06,1.06c0.29,0.29,0.29,0.77,0,1.06s-0.77,0.29-1.06,0l-0.01-0.01L17.44,7.6 c0.82,1.02,1.37,2.27,1.52,3.65h1.54c0-0.41,0.34-0.75,0.75-0.75C21.66,10.5,22,10.84,22,11.25z M17,12c0-2.76-2.24-5-5-5 s-5,2.24-5,5s2.24,5,5,5S17,14.76,17,12z M12,11c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1s1-0.45,1-1C13,11.45,12.55,11,12,11z M15.5,11c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1s1-0.45,1-1C16.5,11.45,16.05,11,15.5,11z M13.75,14c-0.55,0-1,0.45-1,1 c0,0.55,0.45,1,1,1s1-0.45,1-1C14.75,14.45,14.3,14,13.75,14z"},"children":[]}]};exports.ic_coronavirus_twotone=ic_coronavirus_twotone;var ic_deck={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"22,9 12,2 2,9 11,9 11,22 13,22 13,9"},"children":[{"name":"polygon","attribs":{"points":"22,9 12,2 2,9 11,9 11,22 13,22 13,9"},"children":[]}]},{"name":"polygon","attribs":{"points":"4.14,12 2.18,12.37 3,16.74 3,22 5,22 5.02,18 7,18 7,22 9,22 9,16 4.9,16"},"children":[{"name":"polygon","attribs":{"points":"4.14,12 2.18,12.37 3,16.74 3,22 5,22 5.02,18 7,18 7,22 9,22 9,16 4.9,16"},"children":[]}]},{"name":"polygon","attribs":{"points":"19.1,16 15,16 15,22 17,22 17,18 18.98,18 19,22 21,22 21,16.74 21.82,12.37 19.86,12"},"children":[{"name":"polygon","attribs":{"points":"19.1,16 15,16 15,22 17,22 17,18 18.98,18 19,22 21,22 21,16.74 21.82,12.37 19.86,12"},"children":[]}]}]}]}]}]};exports.ic_deck=ic_deck;var ic_deck_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M22,9L12,2L2,9h9v13h2V9H22z M12,4.44L15.66,7H8.34L12,4.44z"},"children":[{"name":"path","attribs":{"d":"M22,9L12,2L2,9h9v13h2V9H22z M12,4.44L15.66,7H8.34L12,4.44z"},"children":[]}]},{"name":"polygon","attribs":{"points":"4.14,12 2.18,12.37 3,16.74 3,22 5,22 5.02,18 7,18 7,22 9,22 9,16 4.9,16"},"children":[{"name":"polygon","attribs":{"points":"4.14,12 2.18,12.37 3,16.74 3,22 5,22 5.02,18 7,18 7,22 9,22 9,16 4.9,16"},"children":[]}]},{"name":"polygon","attribs":{"points":"19.1,16 15,16 15,22 17,22 17,18 18.98,18 19,22 21,22 21,16.74 21.82,12.37 19.86,12"},"children":[{"name":"polygon","attribs":{"points":"19.1,16 15,16 15,22 17,22 17,18 18.98,18 19,22 21,22 21,16.74 21.82,12.37 19.86,12"},"children":[]}]}]}]}]}]};exports.ic_deck_outline=ic_deck_outline;var ic_deck_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"opacity":".3","points":"12,4.44 8.34,7 15.66,7"},"children":[{"name":"polygon","attribs":{"opacity":".3","points":"12,4.44 8.34,7 15.66,7"},"children":[]}]},{"name":"path","attribs":{"d":"M22,9L12,2L2,9h9v13h2V9H22z M12,4.44L15.66,7H8.34L12,4.44z"},"children":[{"name":"path","attribs":{"d":"M22,9L12,2L2,9h9v13h2V9H22z M12,4.44L15.66,7H8.34L12,4.44z"},"children":[]}]},{"name":"polygon","attribs":{"points":"4.14,12 2.18,12.37 3,16.74 3,22 5,22 5.02,18 7,18 7,22 9,22 9,16 4.9,16"},"children":[{"name":"polygon","attribs":{"points":"4.14,12 2.18,12.37 3,16.74 3,22 5,22 5.02,18 7,18 7,22 9,22 9,16 4.9,16"},"children":[]}]},{"name":"polygon","attribs":{"points":"19.1,16 15,16 15,22 17,22 17,18 18.98,18 19,22 21,22 21,16.74 21.82,12.37 19.86,12"},"children":[{"name":"polygon","attribs":{"points":"19.1,16 15,16 15,22 17,22 17,18 18.98,18 19,22 21,22 21,16.74 21.82,12.37 19.86,12"},"children":[]}]}]}]}]}]};exports.ic_deck_twotone=ic_deck_twotone;var ic_domain={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M0,0h24v24H0V0z","fill":"none"},"children":[{"name":"path","attribs":{"d":"M0,0h24v24H0V0z","fill":"none"},"children":[]}]},{"name":"path","attribs":{"d":"M12,7V3H2v18h20V7H12z M6,19H4v-2h2V19z M6,15H4v-2h2V15z M6,11H4V9h2V11z M6,7H4V5h2V7z M10,19H8v-2h2V19z M10,15H8v-2h2 V15z M10,11H8V9h2V11z M10,7H8V5h2V7z M20,19h-8v-2h2v-2h-2v-2h2v-2h-2V9h8V19z M18,11h-2v2h2V11z M18,15h-2v2h2V15z"},"children":[{"name":"path","attribs":{"d":"M12,7V3H2v18h20V7H12z M6,19H4v-2h2V19z M6,15H4v-2h2V15z M6,11H4V9h2V11z M6,7H4V5h2V7z M10,19H8v-2h2V19z M10,15H8v-2h2 V15z M10,11H8V9h2V11z M10,7H8V5h2V7z M20,19h-8v-2h2v-2h-2v-2h2v-2h-2V9h8V19z M18,11h-2v2h2V11z M18,15h-2v2h2V15z"},"children":[]}]}]}]};exports.ic_domain=ic_domain;var ic_domain_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 7V3H2v18h20V7H12zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4 12H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm10 12h-8v-2h2v-2h-2v-2h2v-2h-2V9h8v10zm-2-8h-2v2h2v-2zm0 4h-2v2h2v-2z"},"children":[]}]};exports.ic_domain_outline=ic_domain_outline;var ic_domain_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 11h2v2h-2v2h2v2h-2v2h8V9h-8v2zm4 0h2v2h-2v-2zm0 4h2v2h-2v-2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 7V3H2v18h20V7H12zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4 12H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm10 12h-8v-2h2v-2h-2v-2h2v-2h-2V9h8v10zm-4-8h2v2h-2zm0 4h2v2h-2z"},"children":[]}]};exports.ic_domain_twotone=ic_domain_twotone;var ic_elderly={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M13.5,5.5c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S12.4,5.5,13.5,5.5z M20,12.5V23h-1V12.5c0-0.28-0.22-0.5-0.5-0.5 S18,12.22,18,12.5v1h-1v-0.69c-1.46-0.38-2.7-1.29-3.51-2.52C13.18,11.16,13,12.07,13,13c0,0.23,0.02,0.46,0.03,0.69L15,16.5V23h-2 v-5l-1.78-2.54L11,19l-3,4l-1.6-1.2L9,18.33V13c0-1.15,0.18-2.29,0.5-3.39L8,10.46V14H6V9.3l5.4-3.07l0,0.01 c0.59-0.31,1.32-0.33,1.94,0.03c0.36,0.21,0.63,0.51,0.8,0.85l0,0l0.79,1.67C15.58,10.1,16.94,11,18.5,11C19.33,11,20,11.67,20,12.5 z"},"children":[]}]};exports.ic_elderly=ic_elderly;var ic_elderly_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M13.5,5.5c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S12.4,5.5,13.5,5.5z M20,12.5V23h-1V12.5c0-0.28-0.22-0.5-0.5-0.5 S18,12.22,18,12.5v1h-1v-0.69c-1.46-0.38-2.7-1.29-3.51-2.52C13.18,11.16,13,12.07,13,13c0,0.23,0.02,0.46,0.03,0.69L15,16.5V23h-2 v-5l-1.78-2.54L11,19l-3,4l-1.6-1.2L9,18.33V13c0-1.15,0.18-2.29,0.5-3.39L8,10.46V14H6V9.3l5.4-3.07l0,0.01 c0.59-0.31,1.32-0.33,1.94,0.03c0.36,0.21,0.63,0.51,0.8,0.85l0,0l0.79,1.67C15.58,10.1,16.94,11,18.5,11C19.33,11,20,11.67,20,12.5 z"},"children":[]}]};exports.ic_elderly_outline=ic_elderly_outline;var ic_elderly_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M13.5,5.5c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S12.4,5.5,13.5,5.5z M20,12.5V23h-1V12.5c0-0.28-0.22-0.5-0.5-0.5 S18,12.22,18,12.5v1h-1v-0.69c-1.46-0.38-2.7-1.29-3.51-2.52C13.18,11.16,13,12.07,13,13c0,0.23,0.02,0.46,0.03,0.69L15,16.5V23h-2 v-5l-1.78-2.54L11,19l-3,4l-1.6-1.2L9,18.33V13c0-1.15,0.18-2.29,0.5-3.39L8,10.46V14H6V9.3l5.4-3.07l0,0.01 c0.59-0.31,1.32-0.33,1.94,0.03c0.36,0.21,0.63,0.51,0.8,0.85l0,0l0.79,1.67C15.58,10.1,16.94,11,18.5,11C19.33,11,20,11.67,20,12.5 z"},"children":[]}]};exports.ic_elderly_twotone=ic_elderly_twotone;var ic_emoji_emotions={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"path","attribs":{"d":"M11.99,2C6.47,2,2,6.48,2,12c0,5.52,4.47,10,9.99,10C17.52,22,22,17.52,22,12C22,6.48,17.52,2,11.99,2z M8.5,8 C9.33,8,10,8.67,10,9.5S9.33,11,8.5,11S7,10.33,7,9.5S7.67,8,8.5,8z M12,18c-2.28,0-4.22-1.66-5-4h10C16.22,16.34,14.28,18,12,18z M15.5,11c-0.83,0-1.5-0.67-1.5-1.5S14.67,8,15.5,8S17,8.67,17,9.5S16.33,11,15.5,11z"},"children":[{"name":"path","attribs":{"d":"M11.99,2C6.47,2,2,6.48,2,12c0,5.52,4.47,10,9.99,10C17.52,22,22,17.52,22,12C22,6.48,17.52,2,11.99,2z M8.5,8 C9.33,8,10,8.67,10,9.5S9.33,11,8.5,11S7,10.33,7,9.5S7.67,8,8.5,8z M12,18c-2.28,0-4.22-1.66-5-4h10C16.22,16.34,14.28,18,12,18z M15.5,11c-0.83,0-1.5-0.67-1.5-1.5S14.67,8,15.5,8S17,8.67,17,9.5S16.33,11,15.5,11z"},"children":[]}]}]}]};exports.ic_emoji_emotions=ic_emoji_emotions;var ic_emoji_emotions_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"cx":"15.5","cy":"9.5","r":"1.5"},"children":[{"name":"circle","attribs":{"cx":"15.5","cy":"9.5","r":"1.5"},"children":[]}]},{"name":"circle","attribs":{"cx":"8.5","cy":"9.5","r":"1.5"},"children":[{"name":"circle","attribs":{"cx":"8.5","cy":"9.5","r":"1.5"},"children":[]}]},{"name":"path","attribs":{"d":"M12,18c2.28,0,4.22-1.66,5-4H7C7.78,16.34,9.72,18,12,18z"},"children":[{"name":"path","attribs":{"d":"M12,18c2.28,0,4.22-1.66,5-4H7C7.78,16.34,9.72,18,12,18z"},"children":[]}]},{"name":"path","attribs":{"d":"M11.99,2C6.47,2,2,6.48,2,12c0,5.52,4.47,10,9.99,10C17.52,22,22,17.52,22,12C22,6.48,17.52,2,11.99,2z M12,20 c-4.42,0-8-3.58-8-8c0-4.42,3.58-8,8-8s8,3.58,8,8C20,16.42,16.42,20,12,20z"},"children":[{"name":"path","attribs":{"d":"M11.99,2C6.47,2,2,6.48,2,12c0,5.52,4.47,10,9.99,10C17.52,22,22,17.52,22,12C22,6.48,17.52,2,11.99,2z M12,20 c-4.42,0-8-3.58-8-8c0-4.42,3.58-8,8-8s8,3.58,8,8C20,16.42,16.42,20,12,20z"},"children":[]}]}]}]}]}]};exports.ic_emoji_emotions_outline=ic_emoji_emotions_outline;var ic_emoji_emotions_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M20,12c0-4.42-3.58-8-8-8s-8,3.58-8,8s3.58,8,8,8S20,16.42,20,12z M8.5,8C9.33,8,10,8.67,10,9.5 S9.33,11,8.5,11S7,10.33,7,9.5S7.67,8,8.5,8z M12,18c-2.28,0-4.22-1.66-5-4h10C16.22,16.34,14.28,18,12,18z M15.5,11 c-0.83,0-1.5-0.67-1.5-1.5S14.67,8,15.5,8S17,8.67,17,9.5S16.33,11,15.5,11z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M20,12c0-4.42-3.58-8-8-8s-8,3.58-8,8s3.58,8,8,8S20,16.42,20,12z M8.5,8C9.33,8,10,8.67,10,9.5 S9.33,11,8.5,11S7,10.33,7,9.5S7.67,8,8.5,8z M12,18c-2.28,0-4.22-1.66-5-4h10C16.22,16.34,14.28,18,12,18z M15.5,11 c-0.83,0-1.5-0.67-1.5-1.5S14.67,8,15.5,8S17,8.67,17,9.5S16.33,11,15.5,11z","opacity":".3"},"children":[]}]},{"name":"circle","attribs":{"cx":"15.5","cy":"9.5","r":"1.5"},"children":[{"name":"circle","attribs":{"cx":"15.5","cy":"9.5","r":"1.5"},"children":[]}]},{"name":"circle","attribs":{"cx":"8.5","cy":"9.5","r":"1.5"},"children":[{"name":"circle","attribs":{"cx":"8.5","cy":"9.5","r":"1.5"},"children":[]}]},{"name":"path","attribs":{"d":"M11.99,2C6.47,2,2,6.48,2,12c0,5.52,4.47,10,9.99,10C17.52,22,22,17.52,22,12C22,6.48,17.52,2,11.99,2z M12,20 c-4.42,0-8-3.58-8-8c0-4.42,3.58-8,8-8s8,3.58,8,8C20,16.42,16.42,20,12,20z"},"children":[{"name":"path","attribs":{"d":"M11.99,2C6.47,2,2,6.48,2,12c0,5.52,4.47,10,9.99,10C17.52,22,22,17.52,22,12C22,6.48,17.52,2,11.99,2z M12,20 c-4.42,0-8-3.58-8-8c0-4.42,3.58-8,8-8s8,3.58,8,8C20,16.42,16.42,20,12,20z"},"children":[]}]},{"name":"path","attribs":{"d":"M12,18c2.28,0,4.22-1.66,5-4H7C7.78,16.34,9.72,18,12,18z"},"children":[{"name":"path","attribs":{"d":"M12,18c2.28,0,4.22-1.66,5-4H7C7.78,16.34,9.72,18,12,18z"},"children":[]}]}]}]}]}]};exports.ic_emoji_emotions_twotone=ic_emoji_emotions_twotone;var ic_emoji_events={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M19,5h-2V3H7v2H5C3.9,5,3,5.9,3,7v1c0,2.55,1.92,4.63,4.39,4.94c0.63,1.5,1.98,2.63,3.61,2.96V19H7v2h10v-2h-4v-3.1 c1.63-0.33,2.98-1.46,3.61-2.96C19.08,12.63,21,10.55,21,8V7C21,5.9,20.1,5,19,5z M5,8V7h2v3.82C5.84,10.4,5,9.3,5,8z M19,8 c0,1.3-0.84,2.4-2,2.82V7h2V8z"},"children":[]}]};exports.ic_emoji_events=ic_emoji_events;var ic_emoji_events_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M19,5h-2V3H7v2H5C3.9,5,3,5.9,3,7v1c0,2.55,1.92,4.63,4.39,4.94c0.63,1.5,1.98,2.63,3.61,2.96V19H7v2h10v-2h-4v-3.1 c1.63-0.33,2.98-1.46,3.61-2.96C19.08,12.63,21,10.55,21,8V7C21,5.9,20.1,5,19,5z M5,8V7h2v3.82C5.84,10.4,5,9.3,5,8z M12,14 c-1.65,0-3-1.35-3-3V5h6v6C15,12.65,13.65,14,12,14z M19,8c0,1.3-0.84,2.4-2,2.82V7h2V8z"},"children":[]}]};exports.ic_emoji_events_outline=ic_emoji_events_outline;var ic_emoji_events_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M12,14c-1.65,0-3-1.35-3-3V5h6v6C15,12.65,13.65,14,12,14z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M19,5h-2V3H7v2H5C3.9,5,3,5.9,3,7v1c0,2.55,1.92,4.63,4.39,4.94c0.63,1.5,1.98,2.63,3.61,2.96V19H7v2h10v-2h-4v-3.1 c1.63-0.33,2.98-1.46,3.61-2.96C19.08,12.63,21,10.55,21,8V7C21,5.9,20.1,5,19,5z M5,8V7h2v3.82C5.84,10.4,5,9.3,5,8z M12,14 c-1.65,0-3-1.35-3-3V5h6v6C15,12.65,13.65,14,12,14z M19,8c0,1.3-0.84,2.4-2,2.82V7h2V8z"},"children":[]}]};exports.ic_emoji_events_twotone=ic_emoji_events_twotone;var ic_emoji_flags={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"path","attribs":{"d":"M14,9l-1-2H7V5.72C7.6,5.38,8,4.74,8,4c0-1.1-0.9-2-2-2S4,2.9,4,4c0,0.74,0.4,1.38,1,1.72V21h2v-4h5l1,2h7V9H14z M18,17h-4 l-1-2H7V9h5l1,2h5V17z"},"children":[{"name":"path","attribs":{"d":"M14,9l-1-2H7V5.72C7.6,5.38,8,4.74,8,4c0-1.1-0.9-2-2-2S4,2.9,4,4c0,0.74,0.4,1.38,1,1.72V21h2v-4h5l1,2h7V9H14z M18,17h-4 l-1-2H7V9h5l1,2h5V17z"},"children":[]}]}]}]};exports.ic_emoji_flags=ic_emoji_flags;var ic_emoji_flags_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"path","attribs":{"d":"M14,9l-1-2H7V5.72C7.6,5.38,8,4.74,8,4c0-1.1-0.9-2-2-2S4,2.9,4,4c0,0.74,0.4,1.38,1,1.72V21h2v-4h5l1,2h7V9H14z M18,17h-4 l-1-2H7V9h5l1,2h5V17z"},"children":[{"name":"path","attribs":{"d":"M14,9l-1-2H7V5.72C7.6,5.38,8,4.74,8,4c0-1.1-0.9-2-2-2S4,2.9,4,4c0,0.74,0.4,1.38,1,1.72V21h2v-4h5l1,2h7V9H14z M18,17h-4 l-1-2H7V9h5l1,2h5V17z"},"children":[]}]}]}]};exports.ic_emoji_flags_outline=ic_emoji_flags_outline;var ic_emoji_flags_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"opacity":".3","points":"12,9 7,9 7,15 13,15 14,17 18,17 18,11 13,11"},"children":[{"name":"polygon","attribs":{"opacity":".3","points":"12,9 7,9 7,15 13,15 14,17 18,17 18,11 13,11"},"children":[]}]},{"name":"path","attribs":{"d":"M14,9l-1-2H7V5.72C7.6,5.38,8,4.74,8,4c0-1.1-0.9-2-2-2S4,2.9,4,4c0,0.74,0.4,1.38,1,1.72V21h2v-4h5l1,2h7V9H14z M18,17 h-4l-1-2H7V9h5l1,2h5V17z"},"children":[{"name":"path","attribs":{"d":"M14,9l-1-2H7V5.72C7.6,5.38,8,4.74,8,4c0-1.1-0.9-2-2-2S4,2.9,4,4c0,0.74,0.4,1.38,1,1.72V21h2v-4h5l1,2h7V9H14z M18,17 h-4l-1-2H7V9h5l1,2h5V17z"},"children":[]}]}]}]}]}]};exports.ic_emoji_flags_twotone=ic_emoji_flags_twotone;var ic_emoji_food_beverage={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M20,3H9v2.4l1.81,1.45C10.93,6.94,11,7.09,11,7.24v4.26c0,0.28-0.22,0.5-0.5,0.5h-4C6.22,12,6,11.78,6,11.5V7.24 c0-0.15,0.07-0.3,0.19-0.39L8,5.4V3H4v10c0,2.21,1.79,4,4,4h6c2.21,0,4-1.79,4-4v-3h2c1.11,0,2-0.9,2-2V5C22,3.89,21.11,3,20,3z M20,8h-2V5h2V8z"},"children":[{"name":"path","attribs":{"d":"M20,3H9v2.4l1.81,1.45C10.93,6.94,11,7.09,11,7.24v4.26c0,0.28-0.22,0.5-0.5,0.5h-4C6.22,12,6,11.78,6,11.5V7.24 c0-0.15,0.07-0.3,0.19-0.39L8,5.4V3H4v10c0,2.21,1.79,4,4,4h6c2.21,0,4-1.79,4-4v-3h2c1.11,0,2-0.9,2-2V5C22,3.89,21.11,3,20,3z M20,8h-2V5h2V8z"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"16","x":"4","y":"19"},"children":[{"name":"rect","attribs":{"height":"2","width":"16","x":"4","y":"19"},"children":[]}]}]}]}]}]};exports.ic_emoji_food_beverage=ic_emoji_food_beverage;var ic_emoji_food_beverage_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"height":"2","width":"18","x":"2","y":"19"},"children":[{"name":"rect","attribs":{"height":"2","width":"18","x":"2","y":"19"},"children":[]}]},{"name":"path","attribs":{"d":"M20,3H4v10c0,2.21,1.79,4,4,4h6c2.21,0,4-1.79,4-4v-3h2c1.11,0,2-0.89,2-2V5C22,3.89,21.11,3,20,3z M16,13 c0,1.1-0.9,2-2,2H8c-1.1,0-2-0.9-2-2V5h3v1.4L7.19,7.85C7.07,7.94,7,8.09,7,8.24v4.26C7,12.78,7.22,13,7.5,13h4 c0.28,0,0.5-0.22,0.5-0.5V8.24c0-0.15-0.07-0.3-0.19-0.39L10,6.4V5h6V13z M9.5,7.28l1.5,1.2V12H8V8.48L9.5,7.28z M20,8h-2V5h2V8z"},"children":[{"name":"path","attribs":{"d":"M20,3H4v10c0,2.21,1.79,4,4,4h6c2.21,0,4-1.79,4-4v-3h2c1.11,0,2-0.89,2-2V5C22,3.89,21.11,3,20,3z M16,13 c0,1.1-0.9,2-2,2H8c-1.1,0-2-0.9-2-2V5h3v1.4L7.19,7.85C7.07,7.94,7,8.09,7,8.24v4.26C7,12.78,7.22,13,7.5,13h4 c0.28,0,0.5-0.22,0.5-0.5V8.24c0-0.15-0.07-0.3-0.19-0.39L10,6.4V5h6V13z M9.5,7.28l1.5,1.2V12H8V8.48L9.5,7.28z M20,8h-2V5h2V8z"},"children":[]}]}]}]}]}]};exports.ic_emoji_food_beverage_outline=ic_emoji_food_beverage_outline;var ic_emoji_food_beverage_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M10,6.4l1.81,1.45C11.93,7.94,12,8.09,12,8.24v4.26c0,0.28-0.22,0.5-0.5,0.5h-4C7.22,13,7,12.78,7,12.5 V8.24c0-0.15,0.07-0.3,0.19-0.39L9,6.4V5H6v8c0,1.1,0.9,2,2,2h6c1.1,0,2-0.9,2-2V5h-6V6.4z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M10,6.4l1.81,1.45C11.93,7.94,12,8.09,12,8.24v4.26c0,0.28-0.22,0.5-0.5,0.5h-4C7.22,13,7,12.78,7,12.5 V8.24c0-0.15,0.07-0.3,0.19-0.39L9,6.4V5H6v8c0,1.1,0.9,2,2,2h6c1.1,0,2-0.9,2-2V5h-6V6.4z","opacity":".3"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"18","x":"2","y":"19"},"children":[{"name":"rect","attribs":{"height":"2","width":"18","x":"2","y":"19"},"children":[]}]},{"name":"path","attribs":{"d":"M20,3H4v10c0,2.21,1.79,4,4,4h6c2.21,0,4-1.79,4-4v-3h2c1.11,0,2-0.89,2-2V5C22,3.89,21.11,3,20,3z M9.5,7.28l1.5,1.2V12 H8V8.48L9.5,7.28z M16,13c0,1.1-0.9,2-2,2H8c-1.1,0-2-0.9-2-2V5h3v1.4L7.19,7.85C7.07,7.94,7,8.09,7,8.24v4.26 C7,12.78,7.22,13,7.5,13h4c0.28,0,0.5-0.22,0.5-0.5V8.24c0-0.15-0.07-0.3-0.19-0.39L10,6.4V5h6V13z M20,8h-2V5h2V8z"},"children":[{"name":"path","attribs":{"d":"M20,3H4v10c0,2.21,1.79,4,4,4h6c2.21,0,4-1.79,4-4v-3h2c1.11,0,2-0.89,2-2V5C22,3.89,21.11,3,20,3z M9.5,7.28l1.5,1.2V12 H8V8.48L9.5,7.28z M16,13c0,1.1-0.9,2-2,2H8c-1.1,0-2-0.9-2-2V5h3v1.4L7.19,7.85C7.07,7.94,7,8.09,7,8.24v4.26 C7,12.78,7.22,13,7.5,13h4c0.28,0,0.5-0.22,0.5-0.5V8.24c0-0.15-0.07-0.3-0.19-0.39L10,6.4V5h6V13z M20,8h-2V5h2V8z"},"children":[]}]}]}]}]}]};exports.ic_emoji_food_beverage_twotone=ic_emoji_food_beverage_twotone;var ic_emoji_nature={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M21.94,4.88C21.76,4.35,21.25,4,20.68,4c-0.03,0-0.06,0-0.09,0H19.6l-0.31-0.97C19.15,2.43,18.61,2,18,2h0 c-0.61,0-1.15,0.43-1.29,1.04L16.4,4h-0.98c-0.03,0-0.06,0-0.09,0c-0.57,0-1.08,0.35-1.26,0.88c-0.19,0.56,0.04,1.17,0.56,1.48 l0.87,0.52L15.1,8.12c-0.23,0.58-0.04,1.25,0.45,1.62C15.78,9.91,16.06,10,16.33,10c0.31,0,0.61-0.11,0.86-0.32L18,8.98l0.81,0.7 C19.06,9.89,19.36,10,19.67,10c0.27,0,0.55-0.09,0.78-0.26c0.5-0.37,0.68-1.04,0.45-1.62l-0.39-1.24l0.87-0.52 C21.89,6.05,22.12,5.44,21.94,4.88z M18,7c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C19,6.55,18.55,7,18,7z"},"children":[{"name":"path","attribs":{"d":"M21.94,4.88C21.76,4.35,21.25,4,20.68,4c-0.03,0-0.06,0-0.09,0H19.6l-0.31-0.97C19.15,2.43,18.61,2,18,2h0 c-0.61,0-1.15,0.43-1.29,1.04L16.4,4h-0.98c-0.03,0-0.06,0-0.09,0c-0.57,0-1.08,0.35-1.26,0.88c-0.19,0.56,0.04,1.17,0.56,1.48 l0.87,0.52L15.1,8.12c-0.23,0.58-0.04,1.25,0.45,1.62C15.78,9.91,16.06,10,16.33,10c0.31,0,0.61-0.11,0.86-0.32L18,8.98l0.81,0.7 C19.06,9.89,19.36,10,19.67,10c0.27,0,0.55-0.09,0.78-0.26c0.5-0.37,0.68-1.04,0.45-1.62l-0.39-1.24l0.87-0.52 C21.89,6.05,22.12,5.44,21.94,4.88z M18,7c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C19,6.55,18.55,7,18,7z"},"children":[]}]},{"name":"path","attribs":{"d":"M13.49,10.51c-0.43-0.43-0.94-0.73-1.49-0.93V8h-1v1.38c-0.11-0.01-0.23-0.03-0.34-0.03c-1.02,0-2.05,0.39-2.83,1.17 c-0.16,0.16-0.3,0.34-0.43,0.53L6,10.52c-1.56-0.55-3.28,0.27-3.83,1.82c0,0,0,0,0,0c-0.27,0.75-0.23,1.57,0.12,2.29 c0.23,0.48,0.58,0.87,1,1.16c-0.38,1.35-0.06,2.85,1,3.91c1.06,1.06,2.57,1.38,3.91,1c0.29,0.42,0.68,0.77,1.16,1 C9.78,21.9,10.21,22,10.65,22c0.34,0,0.68-0.06,1.01-0.17c0,0,0,0,0,0c1.56-0.55,2.38-2.27,1.82-3.85l-0.52-1.37 c0.18-0.13,0.36-0.27,0.53-0.43c0.87-0.87,1.24-2.04,1.14-3.17H16v-1h-1.59C14.22,11.46,13.92,10.95,13.49,10.51z M4.67,14.29 c-0.25-0.09-0.45-0.27-0.57-0.51s-0.13-0.51-0.04-0.76c0.19-0.52,0.76-0.79,1.26-0.61l3.16,1.19C7.33,14.2,5.85,14.71,4.67,14.29z M10.99,19.94c-0.25,0.09-0.52,0.08-0.76-0.04c-0.24-0.11-0.42-0.32-0.51-0.57c-0.42-1.18,0.09-2.65,0.7-3.8l1.18,3.13 C11.78,19.18,11.51,19.76,10.99,19.94z M12.2,14.6l-0.61-1.61c0-0.01-0.01-0.02-0.02-0.03c-0.02-0.04-0.04-0.08-0.06-0.12 c-0.02-0.04-0.04-0.07-0.07-0.11c-0.03-0.03-0.06-0.06-0.09-0.09c-0.03-0.03-0.06-0.06-0.09-0.09c-0.03-0.03-0.07-0.05-0.11-0.07 c-0.04-0.02-0.07-0.05-0.12-0.06c-0.01,0-0.02-0.01-0.03-0.02L9.4,11.8c0.36-0.29,0.79-0.46,1.26-0.46c0.53,0,1.04,0.21,1.41,0.59 C12.8,12.66,12.84,13.81,12.2,14.6z"},"children":[{"name":"path","attribs":{"d":"M13.49,10.51c-0.43-0.43-0.94-0.73-1.49-0.93V8h-1v1.38c-0.11-0.01-0.23-0.03-0.34-0.03c-1.02,0-2.05,0.39-2.83,1.17 c-0.16,0.16-0.3,0.34-0.43,0.53L6,10.52c-1.56-0.55-3.28,0.27-3.83,1.82c0,0,0,0,0,0c-0.27,0.75-0.23,1.57,0.12,2.29 c0.23,0.48,0.58,0.87,1,1.16c-0.38,1.35-0.06,2.85,1,3.91c1.06,1.06,2.57,1.38,3.91,1c0.29,0.42,0.68,0.77,1.16,1 C9.78,21.9,10.21,22,10.65,22c0.34,0,0.68-0.06,1.01-0.17c0,0,0,0,0,0c1.56-0.55,2.38-2.27,1.82-3.85l-0.52-1.37 c0.18-0.13,0.36-0.27,0.53-0.43c0.87-0.87,1.24-2.04,1.14-3.17H16v-1h-1.59C14.22,11.46,13.92,10.95,13.49,10.51z M4.67,14.29 c-0.25-0.09-0.45-0.27-0.57-0.51s-0.13-0.51-0.04-0.76c0.19-0.52,0.76-0.79,1.26-0.61l3.16,1.19C7.33,14.2,5.85,14.71,4.67,14.29z M10.99,19.94c-0.25,0.09-0.52,0.08-0.76-0.04c-0.24-0.11-0.42-0.32-0.51-0.57c-0.42-1.18,0.09-2.65,0.7-3.8l1.18,3.13 C11.78,19.18,11.51,19.76,10.99,19.94z M12.2,14.6l-0.61-1.61c0-0.01-0.01-0.02-0.02-0.03c-0.02-0.04-0.04-0.08-0.06-0.12 c-0.02-0.04-0.04-0.07-0.07-0.11c-0.03-0.03-0.06-0.06-0.09-0.09c-0.03-0.03-0.06-0.06-0.09-0.09c-0.03-0.03-0.07-0.05-0.11-0.07 c-0.04-0.02-0.07-0.05-0.12-0.06c-0.01,0-0.02-0.01-0.03-0.02L9.4,11.8c0.36-0.29,0.79-0.46,1.26-0.46c0.53,0,1.04,0.21,1.41,0.59 C12.8,12.66,12.84,13.81,12.2,14.6z"},"children":[]}]}]}]}]}]};exports.ic_emoji_nature=ic_emoji_nature;var ic_emoji_nature_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M21.94,4.88C21.76,4.35,21.25,4,20.68,4c-0.03,0-0.06,0-0.09,0H19.6l-0.31-0.97C19.15,2.43,18.61,2,18,2h0 c-0.61,0-1.15,0.43-1.29,1.04L16.4,4h-0.98c-0.03,0-0.06,0-0.09,0c-0.57,0-1.08,0.35-1.26,0.88c-0.19,0.56,0.04,1.17,0.56,1.48 l0.87,0.52L15.1,8.12c-0.23,0.58-0.04,1.25,0.45,1.62C15.78,9.91,16.06,10,16.33,10c0.31,0,0.61-0.11,0.86-0.32L18,8.98l0.81,0.7 C19.06,9.89,19.36,10,19.67,10c0.27,0,0.55-0.09,0.78-0.26c0.5-0.37,0.68-1.04,0.45-1.62l-0.39-1.24l0.87-0.52 C21.89,6.05,22.12,5.44,21.94,4.88z M18,7c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C19,6.55,18.55,7,18,7z"},"children":[{"name":"path","attribs":{"d":"M21.94,4.88C21.76,4.35,21.25,4,20.68,4c-0.03,0-0.06,0-0.09,0H19.6l-0.31-0.97C19.15,2.43,18.61,2,18,2h0 c-0.61,0-1.15,0.43-1.29,1.04L16.4,4h-0.98c-0.03,0-0.06,0-0.09,0c-0.57,0-1.08,0.35-1.26,0.88c-0.19,0.56,0.04,1.17,0.56,1.48 l0.87,0.52L15.1,8.12c-0.23,0.58-0.04,1.25,0.45,1.62C15.78,9.91,16.06,10,16.33,10c0.31,0,0.61-0.11,0.86-0.32L18,8.98l0.81,0.7 C19.06,9.89,19.36,10,19.67,10c0.27,0,0.55-0.09,0.78-0.26c0.5-0.37,0.68-1.04,0.45-1.62l-0.39-1.24l0.87-0.52 C21.89,6.05,22.12,5.44,21.94,4.88z M18,7c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C19,6.55,18.55,7,18,7z"},"children":[]}]},{"name":"path","attribs":{"d":"M13.49,10.51c-0.43-0.43-0.94-0.73-1.49-0.93V8h-1v1.38c-0.11-0.01-0.23-0.03-0.34-0.03c-1.02,0-2.05,0.39-2.83,1.17 c-0.12,0.12-0.3,0.3-0.5,0.5L6,10.52c-1.56-0.55-3.28,0.27-3.83,1.82c0,0,0,0,0,0c-0.27,0.75-0.23,1.57,0.12,2.29 c0.23,0.48,0.58,0.87,1,1.16c-0.38,1.35-0.06,2.85,1,3.91c0.78,0.78,1.8,1.17,2.83,1.17c0.37,0,0.73-0.07,1.09-0.17 c0.29,0.42,0.68,0.77,1.16,1C9.78,21.9,10.21,22,10.65,22c0.34,0,0.68-0.06,1.01-0.17c0,0,0,0,0,0c1.56-0.55,2.38-2.27,1.82-3.85 l-0.49-1.3c0.2-0.2,0.38-0.38,0.5-0.5c0.87-0.87,1.24-2.04,1.14-3.17H16v-1h-1.59C14.22,11.46,13.92,10.95,13.49,10.51z M7.58,18.82c-0.15,0.04-0.3,0.06-0.46,0.06c-0.53,0-1.04-0.21-1.41-0.59c-0.38-0.38-0.59-0.88-0.59-1.41 c0-0.16,0.03-0.32,0.06-0.47c0.14,0.01,0.28,0.03,0.42,0.03c0.85,0,1.68-0.2,2.44-0.48C7.72,16.85,7.5,17.83,7.58,18.82z M4.67,14.29c-0.25-0.09-0.45-0.27-0.57-0.51s-0.13-0.51-0.04-0.76c0.19-0.52,0.76-0.79,1.26-0.61l3.16,1.19 C7.33,14.2,5.85,14.71,4.67,14.29z M10.99,19.94c-0.25,0.09-0.52,0.08-0.76-0.04c-0.24-0.11-0.42-0.32-0.51-0.57 c-0.42-1.18,0.09-2.65,0.7-3.8l1.18,3.13C11.78,19.18,11.51,19.76,10.99,19.94z M12.2,14.6l-0.61-1.61c0-0.01-0.01-0.02-0.02-0.03 c-0.02-0.04-0.04-0.08-0.06-0.12c-0.02-0.04-0.04-0.07-0.07-0.11c-0.03-0.03-0.06-0.06-0.09-0.09c-0.03-0.03-0.06-0.06-0.09-0.09 c-0.03-0.03-0.07-0.05-0.11-0.07c-0.04-0.02-0.07-0.05-0.12-0.06c-0.01,0-0.02-0.01-0.03-0.02L9.4,11.8 c0.36-0.29,0.79-0.46,1.26-0.46c0.53,0,1.04,0.21,1.41,0.59C12.8,12.66,12.84,13.81,12.2,14.6z"},"children":[{"name":"path","attribs":{"d":"M13.49,10.51c-0.43-0.43-0.94-0.73-1.49-0.93V8h-1v1.38c-0.11-0.01-0.23-0.03-0.34-0.03c-1.02,0-2.05,0.39-2.83,1.17 c-0.12,0.12-0.3,0.3-0.5,0.5L6,10.52c-1.56-0.55-3.28,0.27-3.83,1.82c0,0,0,0,0,0c-0.27,0.75-0.23,1.57,0.12,2.29 c0.23,0.48,0.58,0.87,1,1.16c-0.38,1.35-0.06,2.85,1,3.91c0.78,0.78,1.8,1.17,2.83,1.17c0.37,0,0.73-0.07,1.09-0.17 c0.29,0.42,0.68,0.77,1.16,1C9.78,21.9,10.21,22,10.65,22c0.34,0,0.68-0.06,1.01-0.17c0,0,0,0,0,0c1.56-0.55,2.38-2.27,1.82-3.85 l-0.49-1.3c0.2-0.2,0.38-0.38,0.5-0.5c0.87-0.87,1.24-2.04,1.14-3.17H16v-1h-1.59C14.22,11.46,13.92,10.95,13.49,10.51z M7.58,18.82c-0.15,0.04-0.3,0.06-0.46,0.06c-0.53,0-1.04-0.21-1.41-0.59c-0.38-0.38-0.59-0.88-0.59-1.41 c0-0.16,0.03-0.32,0.06-0.47c0.14,0.01,0.28,0.03,0.42,0.03c0.85,0,1.68-0.2,2.44-0.48C7.72,16.85,7.5,17.83,7.58,18.82z M4.67,14.29c-0.25-0.09-0.45-0.27-0.57-0.51s-0.13-0.51-0.04-0.76c0.19-0.52,0.76-0.79,1.26-0.61l3.16,1.19 C7.33,14.2,5.85,14.71,4.67,14.29z M10.99,19.94c-0.25,0.09-0.52,0.08-0.76-0.04c-0.24-0.11-0.42-0.32-0.51-0.57 c-0.42-1.18,0.09-2.65,0.7-3.8l1.18,3.13C11.78,19.18,11.51,19.76,10.99,19.94z M12.2,14.6l-0.61-1.61c0-0.01-0.01-0.02-0.02-0.03 c-0.02-0.04-0.04-0.08-0.06-0.12c-0.02-0.04-0.04-0.07-0.07-0.11c-0.03-0.03-0.06-0.06-0.09-0.09c-0.03-0.03-0.06-0.06-0.09-0.09 c-0.03-0.03-0.07-0.05-0.11-0.07c-0.04-0.02-0.07-0.05-0.12-0.06c-0.01,0-0.02-0.01-0.03-0.02L9.4,11.8 c0.36-0.29,0.79-0.46,1.26-0.46c0.53,0,1.04,0.21,1.41,0.59C12.8,12.66,12.84,13.81,12.2,14.6z"},"children":[]}]}]}]}]}]};exports.ic_emoji_nature_outline=ic_emoji_nature_outline;var ic_emoji_nature_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"cx":"18","cy":"6","opacity":".3","r":"1"},"children":[{"name":"circle","attribs":{"cx":"18","cy":"6","opacity":".3","r":"1"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M21.94,4.88C21.75,4.33,21.19,3.96,20.58,4H19.6l-0.31-0.97C19.15,2.43,18.61,2,18,2h0c-0.61,0-1.15,0.43-1.29,1.04 L16.4,4h-0.98c-0.61-0.04-1.16,0.32-1.35,0.88c-0.19,0.56,0.04,1.17,0.56,1.48l0.87,0.52L15.1,8.12 c-0.23,0.58-0.04,1.25,0.45,1.62c0.5,0.37,1.17,0.35,1.64-0.06L18,8.98l0.81,0.7c0.47,0.4,1.15,0.43,1.64,0.06 c0.5-0.37,0.68-1.04,0.45-1.62l-0.39-1.24l0.87-0.52C21.89,6.05,22.12,5.44,21.94,4.88z M18,7c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C19,6.55,18.55,7,18,7z"},"children":[{"name":"path","attribs":{"d":"M21.94,4.88C21.75,4.33,21.19,3.96,20.58,4H19.6l-0.31-0.97C19.15,2.43,18.61,2,18,2h0c-0.61,0-1.15,0.43-1.29,1.04 L16.4,4h-0.98c-0.61-0.04-1.16,0.32-1.35,0.88c-0.19,0.56,0.04,1.17,0.56,1.48l0.87,0.52L15.1,8.12 c-0.23,0.58-0.04,1.25,0.45,1.62c0.5,0.37,1.17,0.35,1.64-0.06L18,8.98l0.81,0.7c0.47,0.4,1.15,0.43,1.64,0.06 c0.5-0.37,0.68-1.04,0.45-1.62l-0.39-1.24l0.87-0.52C21.89,6.05,22.12,5.44,21.94,4.88z M18,7c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C19,6.55,18.55,7,18,7z"},"children":[]}]}]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M6.1,17.9c0.53,0.53,1.27,0.69,1.94,0.5c-0.03-1.19,0.35-2.37,0.92-3.36c-1,0.57-2.17,0.95-3.36,0.92 C5.41,16.63,5.58,17.37,6.1,17.9z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M6.1,17.9c0.53,0.53,1.27,0.69,1.94,0.5c-0.03-1.19,0.35-2.37,0.92-3.36c-1,0.57-2.17,0.95-3.36,0.92 C5.41,16.63,5.58,17.37,6.1,17.9z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M9.65,11.55l1.61,0.66c0.25,0.1,0.44,0.3,0.54,0.54l0.66,1.61c0.75-0.78,0.74-2.01-0.03-2.78 C11.66,10.8,10.43,10.8,9.65,11.55z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M9.65,11.55l1.61,0.66c0.25,0.1,0.44,0.3,0.54,0.54l0.66,1.61c0.75-0.78,0.74-2.01-0.03-2.78 C11.66,10.8,10.43,10.8,9.65,11.55z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M14.86,12c-0.17-0.67-0.5-1.31-1.03-1.84C13.31,9.64,12.67,9.31,12,9.14V7h-1v2c-1.01,0.01-2.02,0.39-2.79,1.16 c-0.13,0.13-0.33,0.33-0.56,0.56l-1.53-0.63c-1.52-0.63-3.27,0.1-3.89,1.62c-0.6,1.46,0.05,3.11,1.44,3.8 c-0.33,1.31,0,2.76,1.03,3.79c1.03,1.03,2.48,1.36,3.79,1.03c0.69,1.39,2.34,2.04,3.8,1.44c1.52-0.63,2.25-2.37,1.62-3.89 l-0.63-1.53c0.23-0.23,0.43-0.43,0.56-0.56c0.77-0.77,1.16-1.78,1.16-2.79h2v-1H14.86z M4.58,13.8c-0.51-0.21-0.75-0.79-0.54-1.3 c0.21-0.51,0.79-0.75,1.3-0.54l2.92,1.2C7.22,13.84,5.83,14.31,4.58,13.8z M8.04,18.4c-0.67,0.19-1.41,0.02-1.94-0.5 c-0.53-0.53-0.69-1.27-0.5-1.94c1.19,0.03,2.37-0.35,3.36-0.92C8.39,16.03,8.01,17.21,8.04,18.4z M11.5,19.96 c-0.51,0.21-1.09-0.03-1.3-0.54c-0.51-1.25-0.04-2.64,0.64-3.67l1.2,2.92C12.25,19.17,12.01,19.76,11.5,19.96z M12.45,14.35 l-0.66-1.61c-0.1-0.25-0.3-0.44-0.54-0.54l-1.61-0.66c0.78-0.75,2.01-0.74,2.78,0.03C13.2,12.34,13.2,13.57,12.45,14.35z"},"children":[{"name":"path","attribs":{"d":"M14.86,12c-0.17-0.67-0.5-1.31-1.03-1.84C13.31,9.64,12.67,9.31,12,9.14V7h-1v2c-1.01,0.01-2.02,0.39-2.79,1.16 c-0.13,0.13-0.33,0.33-0.56,0.56l-1.53-0.63c-1.52-0.63-3.27,0.1-3.89,1.62c-0.6,1.46,0.05,3.11,1.44,3.8 c-0.33,1.31,0,2.76,1.03,3.79c1.03,1.03,2.48,1.36,3.79,1.03c0.69,1.39,2.34,2.04,3.8,1.44c1.52-0.63,2.25-2.37,1.62-3.89 l-0.63-1.53c0.23-0.23,0.43-0.43,0.56-0.56c0.77-0.77,1.16-1.78,1.16-2.79h2v-1H14.86z M4.58,13.8c-0.51-0.21-0.75-0.79-0.54-1.3 c0.21-0.51,0.79-0.75,1.3-0.54l2.92,1.2C7.22,13.84,5.83,14.31,4.58,13.8z M8.04,18.4c-0.67,0.19-1.41,0.02-1.94-0.5 c-0.53-0.53-0.69-1.27-0.5-1.94c1.19,0.03,2.37-0.35,3.36-0.92C8.39,16.03,8.01,17.21,8.04,18.4z M11.5,19.96 c-0.51,0.21-1.09-0.03-1.3-0.54c-0.51-1.25-0.04-2.64,0.64-3.67l1.2,2.92C12.25,19.17,12.01,19.76,11.5,19.96z M12.45,14.35 l-0.66-1.61c-0.1-0.25-0.3-0.44-0.54-0.54l-1.61-0.66c0.78-0.75,2.01-0.74,2.78,0.03C13.2,12.34,13.2,13.57,12.45,14.35z"},"children":[]}]}]}]}]}]};exports.ic_emoji_nature_twotone=ic_emoji_nature_twotone;var ic_emoji_objects={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"path","attribs":{"d":"M12,3c-0.46,0-0.93,0.04-1.4,0.14C7.84,3.67,5.64,5.9,5.12,8.66c-0.48,2.61,0.48,5.01,2.22,6.56C7.77,15.6,8,16.13,8,16.69 V19c0,1.1,0.9,2,2,2h0.28c0.35,0.6,0.98,1,1.72,1s1.38-0.4,1.72-1H14c1.1,0,2-0.9,2-2v-2.31c0-0.55,0.22-1.09,0.64-1.46 C18.09,13.95,19,12.08,19,10C19,6.13,15.87,3,12,3z M14,19h-4v-1h4V19z M14,17h-4v-1h4V17z M12.5,11.41V14h-1v-2.59L9.67,9.59 l0.71-0.71L12,10.5l1.62-1.62l0.71,0.71L12.5,11.41z"},"children":[{"name":"path","attribs":{"d":"M12,3c-0.46,0-0.93,0.04-1.4,0.14C7.84,3.67,5.64,5.9,5.12,8.66c-0.48,2.61,0.48,5.01,2.22,6.56C7.77,15.6,8,16.13,8,16.69 V19c0,1.1,0.9,2,2,2h0.28c0.35,0.6,0.98,1,1.72,1s1.38-0.4,1.72-1H14c1.1,0,2-0.9,2-2v-2.31c0-0.55,0.22-1.09,0.64-1.46 C18.09,13.95,19,12.08,19,10C19,6.13,15.87,3,12,3z M14,19h-4v-1h4V19z M14,17h-4v-1h4V17z M12.5,11.41V14h-1v-2.59L9.67,9.59 l0.71-0.71L12,10.5l1.62-1.62l0.71,0.71L12.5,11.41z"},"children":[]}]}]}]};exports.ic_emoji_objects=ic_emoji_objects;var ic_emoji_objects_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M12,3c-0.46,0-0.93,0.04-1.4,0.14C7.84,3.67,5.64,5.9,5.12,8.66c-0.48,2.61,0.48,5.01,2.22,6.56 C7.77,15.6,8,16.13,8,16.69V19c0,1.1,0.9,2,2,2h0.28c0.35,0.6,0.98,1,1.72,1s1.38-0.4,1.72-1H14c1.1,0,2-0.9,2-2v-2.31 c0-0.55,0.22-1.09,0.64-1.46C18.09,13.95,19,12.08,19,10C19,6.13,15.87,3,12,3z M14,17h-4v-1h4V17z M10,19v-1h4v1H10z M15.31,13.74c-0.09,0.08-0.16,0.18-0.24,0.26H8.92c-0.08-0.09-0.15-0.19-0.24-0.27c-1.32-1.18-1.91-2.94-1.59-4.7 c0.36-1.94,1.96-3.55,3.89-3.93C11.32,5.03,11.66,5,12,5c2.76,0,5,2.24,5,5C17,11.43,16.39,12.79,15.31,13.74z"},"children":[{"name":"path","attribs":{"d":"M12,3c-0.46,0-0.93,0.04-1.4,0.14C7.84,3.67,5.64,5.9,5.12,8.66c-0.48,2.61,0.48,5.01,2.22,6.56 C7.77,15.6,8,16.13,8,16.69V19c0,1.1,0.9,2,2,2h0.28c0.35,0.6,0.98,1,1.72,1s1.38-0.4,1.72-1H14c1.1,0,2-0.9,2-2v-2.31 c0-0.55,0.22-1.09,0.64-1.46C18.09,13.95,19,12.08,19,10C19,6.13,15.87,3,12,3z M14,17h-4v-1h4V17z M10,19v-1h4v1H10z M15.31,13.74c-0.09,0.08-0.16,0.18-0.24,0.26H8.92c-0.08-0.09-0.15-0.19-0.24-0.27c-1.32-1.18-1.91-2.94-1.59-4.7 c0.36-1.94,1.96-3.55,3.89-3.93C11.32,5.03,11.66,5,12,5c2.76,0,5,2.24,5,5C17,11.43,16.39,12.79,15.31,13.74z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"height":"3","width":"1","x":"11.5","y":"11"},"children":[{"name":"rect","attribs":{"height":"3","width":"1","x":"11.5","y":"11"},"children":[]}]},{"name":"rect","attribs":{"height":"3","transform":"matrix(0.7071 -0.7071 0.7071 0.7071 -4.0312 10.8536)","width":"1","x":"10.59","y":"8.79"},"children":[{"name":"rect","attribs":{"height":"3","transform":"matrix(0.7071 -0.7071 0.7071 0.7071 -4.0312 10.8536)","width":"1","x":"10.59","y":"8.79"},"children":[]}]},{"name":"rect","attribs":{"height":"3","transform":"matrix(-0.7071 -0.7071 0.7071 -0.7071 14.7678 26.7028)","width":"1","x":"12.41","y":"8.79"},"children":[{"name":"rect","attribs":{"height":"3","transform":"matrix(-0.7071 -0.7071 0.7071 -0.7071 14.7678 26.7028)","width":"1","x":"12.41","y":"8.79"},"children":[]}]}]}]}]}]};exports.ic_emoji_objects_outline=ic_emoji_objects_outline;var ic_emoji_objects_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"height":"1","opacity":".3","width":"4","x":"10","y":"18"},"children":[{"name":"rect","attribs":{"height":"1","opacity":".3","width":"4","x":"10","y":"18"},"children":[]}]},{"name":"rect","attribs":{"height":"1","opacity":".3","width":"4","x":"10","y":"16"},"children":[{"name":"rect","attribs":{"height":"1","opacity":".3","width":"4","x":"10","y":"16"},"children":[]}]},{"name":"path","attribs":{"d":"M12,3c-0.46,0-0.93,0.04-1.4,0.14C7.84,3.67,5.64,5.9,5.12,8.66c-0.48,2.61,0.48,5.01,2.22,6.56 C7.77,15.6,8,16.13,8,16.69V19c0,1.1,0.9,2,2,2h0.28c0.35,0.6,0.98,1,1.72,1s1.38-0.4,1.72-1H14c1.1,0,2-0.9,2-2v-2.31 c0-0.55,0.22-1.09,0.64-1.46C18.09,13.95,19,12.08,19,10C19,6.13,15.87,3,12,3z M14,19h-4v-1h4V19z M14,17h-4v-1h4V17z M15.31,13.74c-0.09,0.08-0.16,0.18-0.24,0.26H8.92c-0.08-0.09-0.15-0.19-0.24-0.27c-1.32-1.18-1.91-2.94-1.59-4.7 c0.36-1.94,1.96-3.55,3.89-3.93C11.32,5.03,11.66,5,12,5c2.76,0,5,2.24,5,5C17,11.43,16.39,12.79,15.31,13.74z"},"children":[{"name":"path","attribs":{"d":"M12,3c-0.46,0-0.93,0.04-1.4,0.14C7.84,3.67,5.64,5.9,5.12,8.66c-0.48,2.61,0.48,5.01,2.22,6.56 C7.77,15.6,8,16.13,8,16.69V19c0,1.1,0.9,2,2,2h0.28c0.35,0.6,0.98,1,1.72,1s1.38-0.4,1.72-1H14c1.1,0,2-0.9,2-2v-2.31 c0-0.55,0.22-1.09,0.64-1.46C18.09,13.95,19,12.08,19,10C19,6.13,15.87,3,12,3z M14,19h-4v-1h4V19z M14,17h-4v-1h4V17z M15.31,13.74c-0.09,0.08-0.16,0.18-0.24,0.26H8.92c-0.08-0.09-0.15-0.19-0.24-0.27c-1.32-1.18-1.91-2.94-1.59-4.7 c0.36-1.94,1.96-3.55,3.89-3.93C11.32,5.03,11.66,5,12,5c2.76,0,5,2.24,5,5C17,11.43,16.39,12.79,15.31,13.74z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"height":"3","width":"1","x":"11.5","y":"11"},"children":[{"name":"rect","attribs":{"height":"3","width":"1","x":"11.5","y":"11"},"children":[]}]},{"name":"rect","attribs":{"height":"3","transform":"matrix(0.7071 -0.7071 0.7071 0.7071 -4.0312 10.8536)","width":"1","x":"10.59","y":"8.79"},"children":[{"name":"rect","attribs":{"height":"3","transform":"matrix(0.7071 -0.7071 0.7071 0.7071 -4.0312 10.8536)","width":"1","x":"10.59","y":"8.79"},"children":[]}]},{"name":"rect","attribs":{"height":"3","transform":"matrix(-0.7071 -0.7071 0.7071 -0.7071 14.7678 26.7028)","width":"1","x":"12.41","y":"8.79"},"children":[{"name":"rect","attribs":{"height":"3","transform":"matrix(-0.7071 -0.7071 0.7071 -0.7071 14.7678 26.7028)","width":"1","x":"12.41","y":"8.79"},"children":[]}]}]}]}]}]};exports.ic_emoji_objects_twotone=ic_emoji_objects_twotone;var ic_emoji_people={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"cx":"12","cy":"4","r":"2"},"children":[{"name":"circle","attribs":{"cx":"12","cy":"4","r":"2"},"children":[]}]},{"name":"path","attribs":{"d":"M15.89,8.11C15.5,7.72,14.83,7,13.53,7c-0.21,0-1.42,0-2.54,0C8.24,6.99,6,4.75,6,2H4c0,3.16,2.11,5.84,5,6.71V22h2v-6h2 v6h2V10.05L18.95,14l1.41-1.41L15.89,8.11z"},"children":[{"name":"path","attribs":{"d":"M15.89,8.11C15.5,7.72,14.83,7,13.53,7c-0.21,0-1.42,0-2.54,0C8.24,6.99,6,4.75,6,2H4c0,3.16,2.11,5.84,5,6.71V22h2v-6h2 v6h2V10.05L18.95,14l1.41-1.41L15.89,8.11z"},"children":[]}]}]}]}]}]};exports.ic_emoji_people=ic_emoji_people;var ic_emoji_people_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"cx":"12","cy":"4","r":"2"},"children":[{"name":"circle","attribs":{"cx":"12","cy":"4","r":"2"},"children":[]}]},{"name":"path","attribs":{"d":"M15.89,8.11C15.5,7.72,14.83,7,13.53,7c-0.21,0-1.42,0-2.54,0C8.24,6.99,6,4.75,6,2H4c0,3.16,2.11,5.84,5,6.71V22h2v-6h2 v6h2V10.05L18.95,14l1.41-1.41L15.89,8.11z"},"children":[{"name":"path","attribs":{"d":"M15.89,8.11C15.5,7.72,14.83,7,13.53,7c-0.21,0-1.42,0-2.54,0C8.24,6.99,6,4.75,6,2H4c0,3.16,2.11,5.84,5,6.71V22h2v-6h2 v6h2V10.05L18.95,14l1.41-1.41L15.89,8.11z"},"children":[]}]}]}]}]}]};exports.ic_emoji_people_outline=ic_emoji_people_outline;var ic_emoji_people_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"cx":"12","cy":"4","r":"2"},"children":[{"name":"circle","attribs":{"cx":"12","cy":"4","r":"2"},"children":[]}]},{"name":"path","attribs":{"d":"M15.89,8.11C15.5,7.72,14.83,7,13.53,7c-0.21,0-1.42,0-2.54,0C8.24,6.99,6,4.75,6,2H4c0,3.16,2.11,5.84,5,6.71V22h2v-6h2 v6h2V10.05L18.95,14l1.41-1.41L15.89,8.11z"},"children":[{"name":"path","attribs":{"d":"M15.89,8.11C15.5,7.72,14.83,7,13.53,7c-0.21,0-1.42,0-2.54,0C8.24,6.99,6,4.75,6,2H4c0,3.16,2.11,5.84,5,6.71V22h2v-6h2 v6h2V10.05L18.95,14l1.41-1.41L15.89,8.11z"},"children":[]}]}]}]}]}]};exports.ic_emoji_people_twotone=ic_emoji_people_twotone;var ic_emoji_symbols={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"height":"2","width":"8","x":"3","y":"2"},"children":[{"name":"rect","attribs":{"height":"2","width":"8","x":"3","y":"2"},"children":[]}]},{"name":"polygon","attribs":{"points":"6,11 8,11 8,7 11,7 11,5 3,5 3,7 6,7"},"children":[{"name":"polygon","attribs":{"points":"6,11 8,11 8,7 11,7 11,5 3,5 3,7 6,7"},"children":[]}]},{"name":"rect","attribs":{"height":"2","transform":"matrix(0.7071 -0.7071 0.7071 0.7071 -7.0416 16.9999)","width":"11","x":"11.5","y":"16"},"children":[{"name":"rect","attribs":{"height":"2","transform":"matrix(0.7071 -0.7071 0.7071 0.7071 -7.0416 16.9999)","width":"11","x":"11.5","y":"16"},"children":[]}]},{"name":"circle","attribs":{"cx":"14.5","cy":"14.5","r":"1.5"},"children":[{"name":"circle","attribs":{"cx":"14.5","cy":"14.5","r":"1.5"},"children":[]}]},{"name":"circle","attribs":{"cx":"19.5","cy":"19.5","r":"1.5"},"children":[{"name":"circle","attribs":{"cx":"19.5","cy":"19.5","r":"1.5"},"children":[]}]},{"name":"path","attribs":{"d":"M15.5,11c1.38,0,2.5-1.12,2.5-2.5V4h3V2h-4v4.51C16.58,6.19,16.07,6,15.5,6C14.12,6,13,7.12,13,8.5 C13,9.88,14.12,11,15.5,11z"},"children":[{"name":"path","attribs":{"d":"M15.5,11c1.38,0,2.5-1.12,2.5-2.5V4h3V2h-4v4.51C16.58,6.19,16.07,6,15.5,6C14.12,6,13,7.12,13,8.5 C13,9.88,14.12,11,15.5,11z"},"children":[]}]},{"name":"path","attribs":{"d":"M9.74,15.96l-1.41,1.41l-0.71-0.71l0.35-0.35c0.98-0.98,0.98-2.56,0-3.54c-0.49-0.49-1.13-0.73-1.77-0.73 c-0.64,0-1.28,0.24-1.77,0.73c-0.98,0.98-0.98,2.56,0,3.54l0.35,0.35l-1.06,1.06c-0.98,0.98-0.98,2.56,0,3.54 C4.22,21.76,4.86,22,5.5,22s1.28-0.24,1.77-0.73l1.06-1.06l1.41,1.41l1.41-1.41l-1.41-1.41l1.41-1.41L9.74,15.96z M5.85,14.2 c0.12-0.12,0.26-0.15,0.35-0.15s0.23,0.03,0.35,0.15c0.19,0.2,0.19,0.51,0,0.71l-0.35,0.35L5.85,14.9 C5.66,14.71,5.66,14.39,5.85,14.2z M5.85,19.85C5.73,19.97,5.59,20,5.5,20s-0.23-0.03-0.35-0.15c-0.19-0.19-0.19-0.51,0-0.71 l1.06-1.06l0.71,0.71L5.85,19.85z"},"children":[{"name":"path","attribs":{"d":"M9.74,15.96l-1.41,1.41l-0.71-0.71l0.35-0.35c0.98-0.98,0.98-2.56,0-3.54c-0.49-0.49-1.13-0.73-1.77-0.73 c-0.64,0-1.28,0.24-1.77,0.73c-0.98,0.98-0.98,2.56,0,3.54l0.35,0.35l-1.06,1.06c-0.98,0.98-0.98,2.56,0,3.54 C4.22,21.76,4.86,22,5.5,22s1.28-0.24,1.77-0.73l1.06-1.06l1.41,1.41l1.41-1.41l-1.41-1.41l1.41-1.41L9.74,15.96z M5.85,14.2 c0.12-0.12,0.26-0.15,0.35-0.15s0.23,0.03,0.35,0.15c0.19,0.2,0.19,0.51,0,0.71l-0.35,0.35L5.85,14.9 C5.66,14.71,5.66,14.39,5.85,14.2z M5.85,19.85C5.73,19.97,5.59,20,5.5,20s-0.23-0.03-0.35-0.15c-0.19-0.19-0.19-0.51,0-0.71 l1.06-1.06l0.71,0.71L5.85,19.85z"},"children":[]}]}]}]}]}]};exports.ic_emoji_symbols=ic_emoji_symbols;var ic_emoji_symbols_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"height":"2","width":"8","x":"3","y":"2"},"children":[{"name":"rect","attribs":{"height":"2","width":"8","x":"3","y":"2"},"children":[]}]},{"name":"polygon","attribs":{"points":"6,11 8,11 8,7 11,7 11,5 3,5 3,7 6,7"},"children":[{"name":"polygon","attribs":{"points":"6,11 8,11 8,7 11,7 11,5 3,5 3,7 6,7"},"children":[]}]},{"name":"rect","attribs":{"height":"2","transform":"matrix(0.7071 -0.7071 0.7071 0.7071 -7.0416 16.9999)","width":"11","x":"11.5","y":"16"},"children":[{"name":"rect","attribs":{"height":"2","transform":"matrix(0.7071 -0.7071 0.7071 0.7071 -7.0416 16.9999)","width":"11","x":"11.5","y":"16"},"children":[]}]},{"name":"circle","attribs":{"cx":"14.5","cy":"14.5","r":"1.5"},"children":[{"name":"circle","attribs":{"cx":"14.5","cy":"14.5","r":"1.5"},"children":[]}]},{"name":"circle","attribs":{"cx":"19.5","cy":"19.5","r":"1.5"},"children":[{"name":"circle","attribs":{"cx":"19.5","cy":"19.5","r":"1.5"},"children":[]}]},{"name":"path","attribs":{"d":"M15.5,11c1.38,0,2.5-1.12,2.5-2.5V4h3V2h-4v4.51C16.58,6.19,16.07,6,15.5,6C14.12,6,13,7.12,13,8.5 C13,9.88,14.12,11,15.5,11z"},"children":[{"name":"path","attribs":{"d":"M15.5,11c1.38,0,2.5-1.12,2.5-2.5V4h3V2h-4v4.51C16.58,6.19,16.07,6,15.5,6C14.12,6,13,7.12,13,8.5 C13,9.88,14.12,11,15.5,11z"},"children":[]}]},{"name":"path","attribs":{"d":"M9.74,15.96l-1.41,1.41l-0.71-0.71l0.35-0.35c0.98-0.98,0.98-2.56,0-3.54c-0.49-0.49-1.13-0.73-1.77-0.73 c-0.64,0-1.28,0.24-1.77,0.73c-0.98,0.98-0.98,2.56,0,3.54l0.35,0.35l-1.06,1.06c-0.98,0.98-0.98,2.56,0,3.54 C4.22,21.76,4.86,22,5.5,22s1.28-0.24,1.77-0.73l1.06-1.06l1.41,1.41l1.41-1.41l-1.41-1.41l1.41-1.41L9.74,15.96z M5.85,14.2 c0.12-0.12,0.26-0.15,0.35-0.15s0.23,0.03,0.35,0.15c0.19,0.2,0.19,0.51,0,0.71l-0.35,0.35L5.85,14.9 C5.66,14.71,5.66,14.39,5.85,14.2z M5.85,19.85C5.73,19.97,5.59,20,5.5,20s-0.23-0.03-0.35-0.15c-0.19-0.19-0.19-0.51,0-0.71 l1.06-1.06l0.71,0.71L5.85,19.85z"},"children":[{"name":"path","attribs":{"d":"M9.74,15.96l-1.41,1.41l-0.71-0.71l0.35-0.35c0.98-0.98,0.98-2.56,0-3.54c-0.49-0.49-1.13-0.73-1.77-0.73 c-0.64,0-1.28,0.24-1.77,0.73c-0.98,0.98-0.98,2.56,0,3.54l0.35,0.35l-1.06,1.06c-0.98,0.98-0.98,2.56,0,3.54 C4.22,21.76,4.86,22,5.5,22s1.28-0.24,1.77-0.73l1.06-1.06l1.41,1.41l1.41-1.41l-1.41-1.41l1.41-1.41L9.74,15.96z M5.85,14.2 c0.12-0.12,0.26-0.15,0.35-0.15s0.23,0.03,0.35,0.15c0.19,0.2,0.19,0.51,0,0.71l-0.35,0.35L5.85,14.9 C5.66,14.71,5.66,14.39,5.85,14.2z M5.85,19.85C5.73,19.97,5.59,20,5.5,20s-0.23-0.03-0.35-0.15c-0.19-0.19-0.19-0.51,0-0.71 l1.06-1.06l0.71,0.71L5.85,19.85z"},"children":[]}]}]}]}]}]};exports.ic_emoji_symbols_outline=ic_emoji_symbols_outline;var ic_emoji_symbols_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"height":"2","width":"8","x":"3","y":"2"},"children":[{"name":"rect","attribs":{"height":"2","width":"8","x":"3","y":"2"},"children":[]}]},{"name":"polygon","attribs":{"points":"6,11 8,11 8,7 11,7 11,5 3,5 3,7 6,7"},"children":[{"name":"polygon","attribs":{"points":"6,11 8,11 8,7 11,7 11,5 3,5 3,7 6,7"},"children":[]}]},{"name":"rect","attribs":{"height":"2","transform":"matrix(0.7071 -0.7071 0.7071 0.7071 -7.0416 16.9999)","width":"11","x":"11.5","y":"16"},"children":[{"name":"rect","attribs":{"height":"2","transform":"matrix(0.7071 -0.7071 0.7071 0.7071 -7.0416 16.9999)","width":"11","x":"11.5","y":"16"},"children":[]}]},{"name":"circle","attribs":{"cx":"14.5","cy":"14.5","r":"1.5"},"children":[{"name":"circle","attribs":{"cx":"14.5","cy":"14.5","r":"1.5"},"children":[]}]},{"name":"circle","attribs":{"cx":"19.5","cy":"19.5","r":"1.5"},"children":[{"name":"circle","attribs":{"cx":"19.5","cy":"19.5","r":"1.5"},"children":[]}]},{"name":"path","attribs":{"d":"M15.5,11c1.38,0,2.5-1.12,2.5-2.5V4h3V2h-4v4.51C16.58,6.19,16.07,6,15.5,6C14.12,6,13,7.12,13,8.5 C13,9.88,14.12,11,15.5,11z"},"children":[{"name":"path","attribs":{"d":"M15.5,11c1.38,0,2.5-1.12,2.5-2.5V4h3V2h-4v4.51C16.58,6.19,16.07,6,15.5,6C14.12,6,13,7.12,13,8.5 C13,9.88,14.12,11,15.5,11z"},"children":[]}]},{"name":"path","attribs":{"d":"M9.74,15.96l-1.41,1.41l-0.71-0.71l0.35-0.35c0.98-0.98,0.98-2.56,0-3.54c-0.49-0.49-1.13-0.73-1.77-0.73 c-0.64,0-1.28,0.24-1.77,0.73c-0.98,0.98-0.98,2.56,0,3.54l0.35,0.35l-1.06,1.06c-0.98,0.98-0.98,2.56,0,3.54 C4.22,21.76,4.86,22,5.5,22s1.28-0.24,1.77-0.73l1.06-1.06l1.41,1.41l1.41-1.41l-1.41-1.41l1.41-1.41L9.74,15.96z M5.85,14.2 c0.12-0.12,0.26-0.15,0.35-0.15s0.23,0.03,0.35,0.15c0.19,0.2,0.19,0.51,0,0.71l-0.35,0.35L5.85,14.9 C5.66,14.71,5.66,14.39,5.85,14.2z M5.85,19.85C5.73,19.97,5.59,20,5.5,20s-0.23-0.03-0.35-0.15c-0.19-0.19-0.19-0.51,0-0.71 l1.06-1.06l0.71,0.71L5.85,19.85z"},"children":[{"name":"path","attribs":{"d":"M9.74,15.96l-1.41,1.41l-0.71-0.71l0.35-0.35c0.98-0.98,0.98-2.56,0-3.54c-0.49-0.49-1.13-0.73-1.77-0.73 c-0.64,0-1.28,0.24-1.77,0.73c-0.98,0.98-0.98,2.56,0,3.54l0.35,0.35l-1.06,1.06c-0.98,0.98-0.98,2.56,0,3.54 C4.22,21.76,4.86,22,5.5,22s1.28-0.24,1.77-0.73l1.06-1.06l1.41,1.41l1.41-1.41l-1.41-1.41l1.41-1.41L9.74,15.96z M5.85,14.2 c0.12-0.12,0.26-0.15,0.35-0.15s0.23,0.03,0.35,0.15c0.19,0.2,0.19,0.51,0,0.71l-0.35,0.35L5.85,14.9 C5.66,14.71,5.66,14.39,5.85,14.2z M5.85,19.85C5.73,19.97,5.59,20,5.5,20s-0.23-0.03-0.35-0.15c-0.19-0.19-0.19-0.51,0-0.71 l1.06-1.06l0.71,0.71L5.85,19.85z"},"children":[]}]}]}]}]}]};exports.ic_emoji_symbols_twotone=ic_emoji_symbols_twotone;var ic_emoji_transportation={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M20.57,10.66C20.43,10.26,20.05,10,19.6,10h-7.19c-0.46,0-0.83,0.26-0.98,0.66L10,14.77l0.01,5.51 c0,0.38,0.31,0.72,0.69,0.72h0.62C11.7,21,12,20.62,12,20.24V19h8v1.24c0,0.38,0.31,0.76,0.69,0.76h0.61 c0.38,0,0.69-0.34,0.69-0.72L22,18.91v-4.14L20.57,10.66z M12.41,11h7.19l1.03,3h-9.25L12.41,11z M12,17c-0.55,0-1-0.45-1-1 s0.45-1,1-1s1,0.45,1,1S12.55,17,12,17z M20,17c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S20.55,17,20,17z"},"children":[{"name":"path","attribs":{"d":"M20.57,10.66C20.43,10.26,20.05,10,19.6,10h-7.19c-0.46,0-0.83,0.26-0.98,0.66L10,14.77l0.01,5.51 c0,0.38,0.31,0.72,0.69,0.72h0.62C11.7,21,12,20.62,12,20.24V19h8v1.24c0,0.38,0.31,0.76,0.69,0.76h0.61 c0.38,0,0.69-0.34,0.69-0.72L22,18.91v-4.14L20.57,10.66z M12.41,11h7.19l1.03,3h-9.25L12.41,11z M12,17c-0.55,0-1-0.45-1-1 s0.45-1,1-1s1,0.45,1,1S12.55,17,12,17z M20,17c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S20.55,17,20,17z"},"children":[]}]},{"name":"polygon","attribs":{"points":"14,9 15,9 15,3 7,3 7,8 2,8 2,21 3,21 3,9 8,9 8,4 14,4"},"children":[{"name":"polygon","attribs":{"points":"14,9 15,9 15,3 7,3 7,8 2,8 2,21 3,21 3,9 8,9 8,4 14,4"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"2","x":"5","y":"11"},"children":[{"name":"rect","attribs":{"height":"2","width":"2","x":"5","y":"11"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"2","x":"10","y":"5"},"children":[{"name":"rect","attribs":{"height":"2","width":"2","x":"10","y":"5"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"2","x":"5","y":"15"},"children":[{"name":"rect","attribs":{"height":"2","width":"2","x":"5","y":"15"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"2","x":"5","y":"19"},"children":[{"name":"rect","attribs":{"height":"2","width":"2","x":"5","y":"19"},"children":[]}]}]}]}]}]};exports.ic_emoji_transportation=ic_emoji_transportation;var ic_emoji_transportation_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M20.57,10.66C20.43,10.26,20.05,10,19.6,10h-7.19c-0.46,0-0.83,0.26-0.98,0.66L10,14.77l0.01,5.51 c0,0.38,0.31,0.72,0.69,0.72h0.62C11.7,21,12,20.62,12,20.24V19h8v1.24c0,0.38,0.31,0.76,0.69,0.76h0.61 c0.38,0,0.69-0.34,0.69-0.72L22,18.91v-4.14L20.57,10.66z M12.41,11h7.19l1.03,3h-9.25L12.41,11z M12,17c-0.55,0-1-0.45-1-1 s0.45-1,1-1s1,0.45,1,1S12.55,17,12,17z M20,17c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S20.55,17,20,17z"},"children":[{"name":"path","attribs":{"d":"M20.57,10.66C20.43,10.26,20.05,10,19.6,10h-7.19c-0.46,0-0.83,0.26-0.98,0.66L10,14.77l0.01,5.51 c0,0.38,0.31,0.72,0.69,0.72h0.62C11.7,21,12,20.62,12,20.24V19h8v1.24c0,0.38,0.31,0.76,0.69,0.76h0.61 c0.38,0,0.69-0.34,0.69-0.72L22,18.91v-4.14L20.57,10.66z M12.41,11h7.19l1.03,3h-9.25L12.41,11z M12,17c-0.55,0-1-0.45-1-1 s0.45-1,1-1s1,0.45,1,1S12.55,17,12,17z M20,17c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S20.55,17,20,17z"},"children":[]}]},{"name":"polygon","attribs":{"points":"14,9 15,9 15,3 7,3 7,8 2,8 2,21 3,21 3,9 8,9 8,4 14,4"},"children":[{"name":"polygon","attribs":{"points":"14,9 15,9 15,3 7,3 7,8 2,8 2,21 3,21 3,9 8,9 8,4 14,4"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"2","x":"5","y":"11"},"children":[{"name":"rect","attribs":{"height":"2","width":"2","x":"5","y":"11"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"2","x":"10","y":"5"},"children":[{"name":"rect","attribs":{"height":"2","width":"2","x":"10","y":"5"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"2","x":"5","y":"15"},"children":[{"name":"rect","attribs":{"height":"2","width":"2","x":"5","y":"15"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"2","x":"5","y":"19"},"children":[{"name":"rect","attribs":{"height":"2","width":"2","x":"5","y":"19"},"children":[]}]}]}]}]}]};exports.ic_emoji_transportation_outline=ic_emoji_transportation_outline;var ic_emoji_transportation_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M20.57,10.66C20.43,10.26,20.05,10,19.6,10h-7.19c-0.46,0-0.83,0.26-0.98,0.66L10,14.77l0.01,5.51 c0,0.38,0.31,0.72,0.69,0.72h0.62C11.7,21,12,20.62,12,20.24V19h8v1.24c0,0.38,0.31,0.76,0.69,0.76h0.61 c0.38,0,0.69-0.34,0.69-0.72L22,18.91v-4.14L20.57,10.66z M12.41,11h7.19l1.03,3h-9.25L12.41,11z M12,17c-0.55,0-1-0.45-1-1 s0.45-1,1-1s1,0.45,1,1S12.55,17,12,17z M20,17c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S20.55,17,20,17z"},"children":[{"name":"path","attribs":{"d":"M20.57,10.66C20.43,10.26,20.05,10,19.6,10h-7.19c-0.46,0-0.83,0.26-0.98,0.66L10,14.77l0.01,5.51 c0,0.38,0.31,0.72,0.69,0.72h0.62C11.7,21,12,20.62,12,20.24V19h8v1.24c0,0.38,0.31,0.76,0.69,0.76h0.61 c0.38,0,0.69-0.34,0.69-0.72L22,18.91v-4.14L20.57,10.66z M12.41,11h7.19l1.03,3h-9.25L12.41,11z M12,17c-0.55,0-1-0.45-1-1 s0.45-1,1-1s1,0.45,1,1S12.55,17,12,17z M20,17c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S20.55,17,20,17z"},"children":[]}]},{"name":"polygon","attribs":{"points":"14,9 15,9 15,3 7,3 7,8 2,8 2,21 3,21 3,9 8,9 8,4 14,4"},"children":[{"name":"polygon","attribs":{"points":"14,9 15,9 15,3 7,3 7,8 2,8 2,21 3,21 3,9 8,9 8,4 14,4"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"2","x":"5","y":"11"},"children":[{"name":"rect","attribs":{"height":"2","width":"2","x":"5","y":"11"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"2","x":"10","y":"5"},"children":[{"name":"rect","attribs":{"height":"2","width":"2","x":"10","y":"5"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"2","x":"5","y":"15"},"children":[{"name":"rect","attribs":{"height":"2","width":"2","x":"5","y":"15"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"2","x":"5","y":"19"},"children":[{"name":"rect","attribs":{"height":"2","width":"2","x":"5","y":"19"},"children":[]}]}]}]}]}]};exports.ic_emoji_transportation_twotone=ic_emoji_transportation_twotone;var ic_engineering={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M9,15c-2.67,0-8,1.34-8,4v2h16v-2C17,16.34,11.67,15,9,15z"},"children":[{"name":"path","attribs":{"d":"M9,15c-2.67,0-8,1.34-8,4v2h16v-2C17,16.34,11.67,15,9,15z"},"children":[]}]},{"name":"path","attribs":{"d":"M22.1,6.84c0.01-0.11,0.02-0.22,0.02-0.34c0-0.12-0.01-0.23-0.03-0.34l0.74-0.58c0.07-0.05,0.08-0.15,0.04-0.22l-0.7-1.21 c-0.04-0.08-0.14-0.1-0.21-0.08L21.1,4.42c-0.18-0.14-0.38-0.25-0.59-0.34l-0.13-0.93C20.36,3.06,20.29,3,20.2,3h-1.4 c-0.09,0-0.16,0.06-0.17,0.15L18.5,4.08c-0.21,0.09-0.41,0.21-0.59,0.34l-0.87-0.35c-0.08-0.03-0.17,0-0.21,0.08l-0.7,1.21 c-0.04,0.08-0.03,0.17,0.04,0.22l0.74,0.58c-0.02,0.11-0.03,0.23-0.03,0.34c0,0.11,0.01,0.23,0.03,0.34l-0.74,0.58 c-0.07,0.05-0.08,0.15-0.04,0.22l0.7,1.21c0.04,0.08,0.14,0.1,0.21,0.08l0.87-0.35c0.18,0.14,0.38,0.25,0.59,0.34l0.13,0.93 C18.64,9.94,18.71,10,18.8,10h1.4c0.09,0,0.16-0.06,0.17-0.15l0.13-0.93c0.21-0.09,0.41-0.21,0.59-0.34l0.87,0.35 c0.08,0.03,0.17,0,0.21-0.08l0.7-1.21c0.04-0.08,0.03-0.17-0.04-0.22L22.1,6.84z M19.5,7.75c-0.69,0-1.25-0.56-1.25-1.25 s0.56-1.25,1.25-1.25s1.25,0.56,1.25,1.25S20.19,7.75,19.5,7.75z"},"children":[{"name":"path","attribs":{"d":"M22.1,6.84c0.01-0.11,0.02-0.22,0.02-0.34c0-0.12-0.01-0.23-0.03-0.34l0.74-0.58c0.07-0.05,0.08-0.15,0.04-0.22l-0.7-1.21 c-0.04-0.08-0.14-0.1-0.21-0.08L21.1,4.42c-0.18-0.14-0.38-0.25-0.59-0.34l-0.13-0.93C20.36,3.06,20.29,3,20.2,3h-1.4 c-0.09,0-0.16,0.06-0.17,0.15L18.5,4.08c-0.21,0.09-0.41,0.21-0.59,0.34l-0.87-0.35c-0.08-0.03-0.17,0-0.21,0.08l-0.7,1.21 c-0.04,0.08-0.03,0.17,0.04,0.22l0.74,0.58c-0.02,0.11-0.03,0.23-0.03,0.34c0,0.11,0.01,0.23,0.03,0.34l-0.74,0.58 c-0.07,0.05-0.08,0.15-0.04,0.22l0.7,1.21c0.04,0.08,0.14,0.1,0.21,0.08l0.87-0.35c0.18,0.14,0.38,0.25,0.59,0.34l0.13,0.93 C18.64,9.94,18.71,10,18.8,10h1.4c0.09,0,0.16-0.06,0.17-0.15l0.13-0.93c0.21-0.09,0.41-0.21,0.59-0.34l0.87,0.35 c0.08,0.03,0.17,0,0.21-0.08l0.7-1.21c0.04-0.08,0.03-0.17-0.04-0.22L22.1,6.84z M19.5,7.75c-0.69,0-1.25-0.56-1.25-1.25 s0.56-1.25,1.25-1.25s1.25,0.56,1.25,1.25S20.19,7.75,19.5,7.75z"},"children":[]}]},{"name":"path","attribs":{"d":"M19.92,11.68l-0.5-0.87c-0.03-0.06-0.1-0.08-0.15-0.06l-0.62,0.25c-0.13-0.1-0.27-0.18-0.42-0.24l-0.09-0.66 C18.12,10.04,18.06,10,18,10h-1c-0.06,0-0.11,0.04-0.12,0.11l-0.09,0.66c-0.15,0.06-0.29,0.15-0.42,0.24l-0.62-0.25 c-0.06-0.02-0.12,0-0.15,0.06l-0.5,0.87c-0.03,0.06-0.02,0.12,0.03,0.16l0.53,0.41c-0.01,0.08-0.02,0.16-0.02,0.24 c0,0.08,0.01,0.17,0.02,0.24l-0.53,0.41c-0.05,0.04-0.06,0.11-0.03,0.16l0.5,0.87c0.03,0.06,0.1,0.08,0.15,0.06l0.62-0.25 c0.13,0.1,0.27,0.18,0.42,0.24l0.09,0.66C16.89,14.96,16.94,15,17,15h1c0.06,0,0.12-0.04,0.12-0.11l0.09-0.66 c0.15-0.06,0.29-0.15,0.42-0.24l0.62,0.25c0.06,0.02,0.12,0,0.15-0.06l0.5-0.87c0.03-0.06,0.02-0.12-0.03-0.16l-0.52-0.41 c0.01-0.08,0.02-0.16,0.02-0.24c0-0.08-0.01-0.17-0.02-0.24l0.53-0.41C19.93,11.81,19.94,11.74,19.92,11.68z M17.5,13.33 c-0.46,0-0.83-0.38-0.83-0.83c0-0.46,0.38-0.83,0.83-0.83s0.83,0.38,0.83,0.83C18.33,12.96,17.96,13.33,17.5,13.33z"},"children":[{"name":"path","attribs":{"d":"M19.92,11.68l-0.5-0.87c-0.03-0.06-0.1-0.08-0.15-0.06l-0.62,0.25c-0.13-0.1-0.27-0.18-0.42-0.24l-0.09-0.66 C18.12,10.04,18.06,10,18,10h-1c-0.06,0-0.11,0.04-0.12,0.11l-0.09,0.66c-0.15,0.06-0.29,0.15-0.42,0.24l-0.62-0.25 c-0.06-0.02-0.12,0-0.15,0.06l-0.5,0.87c-0.03,0.06-0.02,0.12,0.03,0.16l0.53,0.41c-0.01,0.08-0.02,0.16-0.02,0.24 c0,0.08,0.01,0.17,0.02,0.24l-0.53,0.41c-0.05,0.04-0.06,0.11-0.03,0.16l0.5,0.87c0.03,0.06,0.1,0.08,0.15,0.06l0.62-0.25 c0.13,0.1,0.27,0.18,0.42,0.24l0.09,0.66C16.89,14.96,16.94,15,17,15h1c0.06,0,0.12-0.04,0.12-0.11l0.09-0.66 c0.15-0.06,0.29-0.15,0.42-0.24l0.62,0.25c0.06,0.02,0.12,0,0.15-0.06l0.5-0.87c0.03-0.06,0.02-0.12-0.03-0.16l-0.52-0.41 c0.01-0.08,0.02-0.16,0.02-0.24c0-0.08-0.01-0.17-0.02-0.24l0.53-0.41C19.93,11.81,19.94,11.74,19.92,11.68z M17.5,13.33 c-0.46,0-0.83-0.38-0.83-0.83c0-0.46,0.38-0.83,0.83-0.83s0.83,0.38,0.83,0.83C18.33,12.96,17.96,13.33,17.5,13.33z"},"children":[]}]},{"name":"path","attribs":{"d":"M4.74,9h8.53c0.27,0,0.49-0.22,0.49-0.49V8.49c0-0.27-0.22-0.49-0.49-0.49H13c0-1.48-0.81-2.75-2-3.45V5.5 C11,5.78,10.78,6,10.5,6S10,5.78,10,5.5V4.14C9.68,4.06,9.35,4,9,4S8.32,4.06,8,4.14V5.5C8,5.78,7.78,6,7.5,6S7,5.78,7,5.5V4.55 C5.81,5.25,5,6.52,5,8H4.74C4.47,8,4.25,8.22,4.25,8.49v0.03C4.25,8.78,4.47,9,4.74,9z"},"children":[{"name":"path","attribs":{"d":"M4.74,9h8.53c0.27,0,0.49-0.22,0.49-0.49V8.49c0-0.27-0.22-0.49-0.49-0.49H13c0-1.48-0.81-2.75-2-3.45V5.5 C11,5.78,10.78,6,10.5,6S10,5.78,10,5.5V4.14C9.68,4.06,9.35,4,9,4S8.32,4.06,8,4.14V5.5C8,5.78,7.78,6,7.5,6S7,5.78,7,5.5V4.55 C5.81,5.25,5,6.52,5,8H4.74C4.47,8,4.25,8.22,4.25,8.49v0.03C4.25,8.78,4.47,9,4.74,9z"},"children":[]}]},{"name":"path","attribs":{"d":"M9,13c1.86,0,3.41-1.28,3.86-3H5.14C5.59,11.72,7.14,13,9,13z"},"children":[{"name":"path","attribs":{"d":"M9,13c1.86,0,3.41-1.28,3.86-3H5.14C5.59,11.72,7.14,13,9,13z"},"children":[]}]}]}]}]}]};exports.ic_engineering=ic_engineering;var ic_engineering_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M9,15c-2.67,0-8,1.34-8,4v2h16v-2C17,16.34,11.67,15,9,15z M3,19c0.22-0.72,3.31-2,6-2c2.7,0,5.8,1.29,6,2H3z"},"children":[{"name":"path","attribs":{"d":"M9,15c-2.67,0-8,1.34-8,4v2h16v-2C17,16.34,11.67,15,9,15z M3,19c0.22-0.72,3.31-2,6-2c2.7,0,5.8,1.29,6,2H3z"},"children":[]}]},{"name":"path","attribs":{"d":"M4.74,9H5c0,2.21,1.79,4,4,4s4-1.79,4-4h0.26c0.27,0,0.49-0.22,0.49-0.49V8.49c0-0.27-0.22-0.49-0.49-0.49H13 c0-1.48-0.81-2.75-2-3.45V5.5C11,5.78,10.78,6,10.5,6S10,5.78,10,5.5V4.14C9.68,4.06,9.35,4,9,4S8.32,4.06,8,4.14V5.5 C8,5.78,7.78,6,7.5,6S7,5.78,7,5.5V4.55C5.81,5.25,5,6.52,5,8H4.74C4.47,8,4.25,8.22,4.25,8.49v0.03C4.25,8.78,4.47,9,4.74,9z M11,9c0,1.1-0.9,2-2,2s-2-0.9-2-2H11z"},"children":[{"name":"path","attribs":{"d":"M4.74,9H5c0,2.21,1.79,4,4,4s4-1.79,4-4h0.26c0.27,0,0.49-0.22,0.49-0.49V8.49c0-0.27-0.22-0.49-0.49-0.49H13 c0-1.48-0.81-2.75-2-3.45V5.5C11,5.78,10.78,6,10.5,6S10,5.78,10,5.5V4.14C9.68,4.06,9.35,4,9,4S8.32,4.06,8,4.14V5.5 C8,5.78,7.78,6,7.5,6S7,5.78,7,5.5V4.55C5.81,5.25,5,6.52,5,8H4.74C4.47,8,4.25,8.22,4.25,8.49v0.03C4.25,8.78,4.47,9,4.74,9z M11,9c0,1.1-0.9,2-2,2s-2-0.9-2-2H11z"},"children":[]}]},{"name":"path","attribs":{"d":"M21.98,6.23l0.93-0.83l-0.75-1.3l-1.19,0.39c-0.14-0.11-0.3-0.2-0.47-0.27L20.25,3h-1.5L18.5,4.22 c-0.17,0.07-0.33,0.16-0.48,0.27L16.84,4.1l-0.75,1.3l0.93,0.83C17,6.4,17,6.58,17.02,6.75L16.09,7.6l0.75,1.3l1.2-0.38 c0.13,0.1,0.28,0.18,0.43,0.25L18.75,10h1.5l0.27-1.22c0.16-0.07,0.3-0.15,0.44-0.25l1.19,0.38l0.75-1.3l-0.93-0.85 C22,6.57,21.99,6.4,21.98,6.23z M19.5,7.75c-0.69,0-1.25-0.56-1.25-1.25s0.56-1.25,1.25-1.25s1.25,0.56,1.25,1.25 S20.19,7.75,19.5,7.75z"},"children":[{"name":"path","attribs":{"d":"M21.98,6.23l0.93-0.83l-0.75-1.3l-1.19,0.39c-0.14-0.11-0.3-0.2-0.47-0.27L20.25,3h-1.5L18.5,4.22 c-0.17,0.07-0.33,0.16-0.48,0.27L16.84,4.1l-0.75,1.3l0.93,0.83C17,6.4,17,6.58,17.02,6.75L16.09,7.6l0.75,1.3l1.2-0.38 c0.13,0.1,0.28,0.18,0.43,0.25L18.75,10h1.5l0.27-1.22c0.16-0.07,0.3-0.15,0.44-0.25l1.19,0.38l0.75-1.3l-0.93-0.85 C22,6.57,21.99,6.4,21.98,6.23z M19.5,7.75c-0.69,0-1.25-0.56-1.25-1.25s0.56-1.25,1.25-1.25s1.25,0.56,1.25,1.25 S20.19,7.75,19.5,7.75z"},"children":[]}]},{"name":"path","attribs":{"d":"M19.4,10.79l-0.85,0.28c-0.1-0.08-0.21-0.14-0.33-0.19L18.04,10h-1.07l-0.18,0.87c-0.12,0.05-0.24,0.12-0.34,0.19 l-0.84-0.28l-0.54,0.93l0.66,0.59c-0.01,0.13-0.01,0.25,0,0.37l-0.66,0.61l0.54,0.93l0.86-0.27c0.1,0.07,0.2,0.13,0.31,0.18 L16.96,15h1.07l0.19-0.87c0.11-0.05,0.22-0.11,0.32-0.18l0.85,0.27l0.54-0.93l-0.66-0.61c0.01-0.13,0.01-0.25,0-0.37l0.66-0.59 L19.4,10.79z M17.5,13.39c-0.49,0-0.89-0.4-0.89-0.89c0-0.49,0.4-0.89,0.89-0.89s0.89,0.4,0.89,0.89 C18.39,12.99,17.99,13.39,17.5,13.39z"},"children":[{"name":"path","attribs":{"d":"M19.4,10.79l-0.85,0.28c-0.1-0.08-0.21-0.14-0.33-0.19L18.04,10h-1.07l-0.18,0.87c-0.12,0.05-0.24,0.12-0.34,0.19 l-0.84-0.28l-0.54,0.93l0.66,0.59c-0.01,0.13-0.01,0.25,0,0.37l-0.66,0.61l0.54,0.93l0.86-0.27c0.1,0.07,0.2,0.13,0.31,0.18 L16.96,15h1.07l0.19-0.87c0.11-0.05,0.22-0.11,0.32-0.18l0.85,0.27l0.54-0.93l-0.66-0.61c0.01-0.13,0.01-0.25,0-0.37l0.66-0.59 L19.4,10.79z M17.5,13.39c-0.49,0-0.89-0.4-0.89-0.89c0-0.49,0.4-0.89,0.89-0.89s0.89,0.4,0.89,0.89 C18.39,12.99,17.99,13.39,17.5,13.39z"},"children":[]}]}]}]}]}]};exports.ic_engineering_outline=ic_engineering_outline;var ic_engineering_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M9,11c1.1,0,2-0.9,2-2H7C7,10.1,7.9,11,9,11z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M9,11c1.1,0,2-0.9,2-2H7C7,10.1,7.9,11,9,11z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M7.5,6C7.78,6,8,5.78,8,5.5V4.14C7.64,4.23,7.31,4.37,7,4.55V5.5C7,5.78,7.22,6,7.5,6z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M7.5,6C7.78,6,8,5.78,8,5.5V4.14C7.64,4.23,7.31,4.37,7,4.55V5.5C7,5.78,7.22,6,7.5,6z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M10.5,6C10.78,6,11,5.78,11,5.5V4.55c-0.31-0.18-0.64-0.32-1-0.41V5.5C10,5.78,10.22,6,10.5,6z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M10.5,6C10.78,6,11,5.78,11,5.5V4.55c-0.31-0.18-0.64-0.32-1-0.41V5.5C10,5.78,10.22,6,10.5,6z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M9,17c-2.69,0-5.77,1.28-6,2h12C14.8,18.29,11.7,17,9,17z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M9,17c-2.69,0-5.77,1.28-6,2h12C14.8,18.29,11.7,17,9,17z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M9,15c-2.67,0-8,1.34-8,4v2h16v-2C17,16.34,11.67,15,9,15z M3,19c0.22-0.72,3.31-2,6-2c2.7,0,5.8,1.29,6,2H3z"},"children":[{"name":"path","attribs":{"d":"M9,15c-2.67,0-8,1.34-8,4v2h16v-2C17,16.34,11.67,15,9,15z M3,19c0.22-0.72,3.31-2,6-2c2.7,0,5.8,1.29,6,2H3z"},"children":[]}]},{"name":"path","attribs":{"d":"M4.74,9H5c0,2.21,1.79,4,4,4s4-1.79,4-4h0.26c0.27,0,0.49-0.22,0.49-0.49V8.49c0-0.27-0.22-0.49-0.49-0.49H13 c0-1.48-0.81-2.75-2-3.45V5.5C11,5.78,10.78,6,10.5,6S10,5.78,10,5.5V4.14C9.68,4.06,9.35,4,9,4S8.32,4.06,8,4.14V5.5 C8,5.78,7.78,6,7.5,6S7,5.78,7,5.5V4.55C5.81,5.25,5,6.52,5,8H4.74C4.47,8,4.25,8.22,4.25,8.49v0.03C4.25,8.78,4.47,9,4.74,9z M11,9c0,1.1-0.9,2-2,2s-2-0.9-2-2H11z"},"children":[{"name":"path","attribs":{"d":"M4.74,9H5c0,2.21,1.79,4,4,4s4-1.79,4-4h0.26c0.27,0,0.49-0.22,0.49-0.49V8.49c0-0.27-0.22-0.49-0.49-0.49H13 c0-1.48-0.81-2.75-2-3.45V5.5C11,5.78,10.78,6,10.5,6S10,5.78,10,5.5V4.14C9.68,4.06,9.35,4,9,4S8.32,4.06,8,4.14V5.5 C8,5.78,7.78,6,7.5,6S7,5.78,7,5.5V4.55C5.81,5.25,5,6.52,5,8H4.74C4.47,8,4.25,8.22,4.25,8.49v0.03C4.25,8.78,4.47,9,4.74,9z M11,9c0,1.1-0.9,2-2,2s-2-0.9-2-2H11z"},"children":[]}]},{"name":"path","attribs":{"d":"M21.98,6.23l0.93-0.83l-0.75-1.3l-1.19,0.39c-0.14-0.11-0.3-0.2-0.47-0.27L20.25,3h-1.5L18.5,4.22 c-0.17,0.07-0.33,0.16-0.48,0.27L16.84,4.1l-0.75,1.3l0.93,0.83C17,6.4,17,6.58,17.02,6.75L16.09,7.6l0.75,1.3l1.2-0.38 c0.13,0.1,0.28,0.18,0.43,0.25L18.75,10h1.5l0.27-1.22c0.16-0.07,0.3-0.15,0.44-0.25l1.19,0.38l0.75-1.3l-0.93-0.85 C22,6.57,21.99,6.4,21.98,6.23z M19.5,7.75c-0.69,0-1.25-0.56-1.25-1.25s0.56-1.25,1.25-1.25s1.25,0.56,1.25,1.25 S20.19,7.75,19.5,7.75z"},"children":[{"name":"path","attribs":{"d":"M21.98,6.23l0.93-0.83l-0.75-1.3l-1.19,0.39c-0.14-0.11-0.3-0.2-0.47-0.27L20.25,3h-1.5L18.5,4.22 c-0.17,0.07-0.33,0.16-0.48,0.27L16.84,4.1l-0.75,1.3l0.93,0.83C17,6.4,17,6.58,17.02,6.75L16.09,7.6l0.75,1.3l1.2-0.38 c0.13,0.1,0.28,0.18,0.43,0.25L18.75,10h1.5l0.27-1.22c0.16-0.07,0.3-0.15,0.44-0.25l1.19,0.38l0.75-1.3l-0.93-0.85 C22,6.57,21.99,6.4,21.98,6.23z M19.5,7.75c-0.69,0-1.25-0.56-1.25-1.25s0.56-1.25,1.25-1.25s1.25,0.56,1.25,1.25 S20.19,7.75,19.5,7.75z"},"children":[]}]},{"name":"path","attribs":{"d":"M19.27,12.31l0.66-0.59l-0.54-0.93l-0.85,0.28c-0.1-0.08-0.21-0.14-0.33-0.19L18.04,10h-1.07l-0.18,0.87 c-0.12,0.05-0.24,0.12-0.34,0.19l-0.84-0.28l-0.54,0.93l0.66,0.59c-0.01,0.13-0.01,0.25,0,0.37l-0.66,0.61l0.54,0.93l0.86-0.27 c0.1,0.07,0.2,0.13,0.31,0.18L16.96,15h1.07l0.19-0.87c0.11-0.05,0.22-0.11,0.32-0.18l0.85,0.27l0.54-0.93l-0.66-0.61 C19.28,12.55,19.28,12.43,19.27,12.31z M17.5,13.39c-0.49,0-0.89-0.4-0.89-0.89s0.4-0.89,0.89-0.89s0.89,0.4,0.89,0.89 S17.99,13.39,17.5,13.39z"},"children":[{"name":"path","attribs":{"d":"M19.27,12.31l0.66-0.59l-0.54-0.93l-0.85,0.28c-0.1-0.08-0.21-0.14-0.33-0.19L18.04,10h-1.07l-0.18,0.87 c-0.12,0.05-0.24,0.12-0.34,0.19l-0.84-0.28l-0.54,0.93l0.66,0.59c-0.01,0.13-0.01,0.25,0,0.37l-0.66,0.61l0.54,0.93l0.86-0.27 c0.1,0.07,0.2,0.13,0.31,0.18L16.96,15h1.07l0.19-0.87c0.11-0.05,0.22-0.11,0.32-0.18l0.85,0.27l0.54-0.93l-0.66-0.61 C19.28,12.55,19.28,12.43,19.27,12.31z M17.5,13.39c-0.49,0-0.89-0.4-0.89-0.89s0.4-0.89,0.89-0.89s0.89,0.4,0.89,0.89 S17.99,13.39,17.5,13.39z"},"children":[]}]}]}]}]}]};exports.ic_engineering_twotone=ic_engineering_twotone;var ic_facebook={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M22,12c0-5.52-4.48-10-10-10S2,6.48,2,12c0,4.84,3.44,8.87,8,9.8V15H8v-3h2V9.5C10,7.57,11.57,6,13.5,6H16v3h-2 c-0.55,0-1,0.45-1,1v2h3v3h-3v6.95C18.05,21.45,22,17.19,22,12z"},"children":[]}]};exports.ic_facebook=ic_facebook;var ic_facebook_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M22,12c0-5.52-4.48-10-10-10S2,6.48,2,12c0,4.84,3.44,8.87,8,9.8V15H8v-3h2V9.5C10,7.57,11.57,6,13.5,6H16v3h-2 c-0.55,0-1,0.45-1,1v2h3v3h-3v6.95C18.05,21.45,22,17.19,22,12z"},"children":[]}]};exports.ic_facebook_outline=ic_facebook_outline;var ic_facebook_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M22,12c0-5.52-4.48-10-10-10S2,6.48,2,12c0,4.84,3.44,8.87,8,9.8V15H8v-3h2V9.5C10,7.57,11.57,6,13.5,6H16v3h-2 c-0.55,0-1,0.45-1,1v2h3v3h-3v6.95C18.05,21.45,22,17.19,22,12z"},"children":[]}]};exports.ic_facebook_twotone=ic_facebook_twotone;var ic_fireplace={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M2,2v20h20V2H2z M11.86,16.96c0.76-0.24,1.4-1.04,1.53-1.63c0.13-0.56-0.1-1.05-0.2-1.6c-0.08-0.46-0.07-0.85,0.08-1.28 c0.54,1.21,2.15,1.64,1.98,3.18C15.06,17.33,13.14,18.01,11.86,16.96z M20,20h-2v-2h-2.02c0.63-0.84,1.02-1.87,1.02-3 c0-1.89-1.09-2.85-1.85-3.37C12.2,9.61,13,7,13,7c-6.73,3.57-6.02,7.47-6,8c0.03,0.96,0.49,2.07,1.23,3H6v2H4V4h16V20z"},"children":[{"name":"path","attribs":{"d":"M2,2v20h20V2H2z M11.86,16.96c0.76-0.24,1.4-1.04,1.53-1.63c0.13-0.56-0.1-1.05-0.2-1.6c-0.08-0.46-0.07-0.85,0.08-1.28 c0.54,1.21,2.15,1.64,1.98,3.18C15.06,17.33,13.14,18.01,11.86,16.96z M20,20h-2v-2h-2.02c0.63-0.84,1.02-1.87,1.02-3 c0-1.89-1.09-2.85-1.85-3.37C12.2,9.61,13,7,13,7c-6.73,3.57-6.02,7.47-6,8c0.03,0.96,0.49,2.07,1.23,3H6v2H4V4h16V20z"},"children":[]}]}]}]};exports.ic_fireplace=ic_fireplace;var ic_fireplace_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M12.01,12.46c-0.15,0.42-0.15,0.82-0.08,1.28c0.1,0.55,0.33,1.04,0.2,1.6c-0.13,0.59-0.77,1.38-1.53,1.63 c1.28,1.05,3.2,0.37,3.39-1.32C14.16,14.11,12.55,13.67,12.01,12.46z"},"children":[{"name":"path","attribs":{"d":"M12.01,12.46c-0.15,0.42-0.15,0.82-0.08,1.28c0.1,0.55,0.33,1.04,0.2,1.6c-0.13,0.59-0.77,1.38-1.53,1.63 c1.28,1.05,3.2,0.37,3.39-1.32C14.16,14.11,12.55,13.67,12.01,12.46z"},"children":[]}]},{"name":"path","attribs":{"d":"M2,2v20h20V2H2z M12,18c-1.58,0-2.97-1.88-3-3.06c0-0.05-0.01-0.13-0.01-0.22c-0.13-1.73,1-3.2,2.47-4.37 c0.47,1.01,1.27,2.03,2.57,2.92C14.61,13.69,15,14.13,15,15C15,16.65,13.65,18,12,18z M20,20h-2v-2h-2.02 c0.63-0.84,1.02-1.87,1.02-3c0-1.89-1.09-2.85-1.85-3.37C12.2,9.61,13,7,13,7c-6.73,3.57-6.02,7.47-6,8 c0.03,0.96,0.49,2.07,1.23,3H6v2H4V4h16V20z"},"children":[{"name":"path","attribs":{"d":"M2,2v20h20V2H2z M12,18c-1.58,0-2.97-1.88-3-3.06c0-0.05-0.01-0.13-0.01-0.22c-0.13-1.73,1-3.2,2.47-4.37 c0.47,1.01,1.27,2.03,2.57,2.92C14.61,13.69,15,14.13,15,15C15,16.65,13.65,18,12,18z M20,20h-2v-2h-2.02 c0.63-0.84,1.02-1.87,1.02-3c0-1.89-1.09-2.85-1.85-3.37C12.2,9.61,13,7,13,7c-6.73,3.57-6.02,7.47-6,8 c0.03,0.96,0.49,2.07,1.23,3H6v2H4V4h16V20z"},"children":[]}]}]}]}]}]};exports.ic_fireplace_outline=ic_fireplace_outline;var ic_fireplace_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M4,20h2v-2h2.23c-0.75-0.93-1.2-2.04-1.23-3c-0.02-0.53-0.73-4.43,6-8c0,0-0.8,2.61,2.15,4.63 C15.91,12.15,17,13.11,17,15c0,1.13-0.39,2.16-1.02,3H18v2h2V4H4V20z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M4,20h2v-2h2.23c-0.75-0.93-1.2-2.04-1.23-3c-0.02-0.53-0.73-4.43,6-8c0,0-0.8,2.61,2.15,4.63 C15.91,12.15,17,13.11,17,15c0,1.13-0.39,2.16-1.02,3H18v2h2V4H4V20z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M12.01,12.46c-0.15,0.42-0.15,0.82-0.08,1.28c0.1,0.55,0.33,1.04,0.2,1.6c-0.13,0.59-0.77,1.38-1.53,1.63 c1.28,1.05,3.2,0.37,3.39-1.32C14.16,14.11,12.55,13.67,12.01,12.46z"},"children":[{"name":"path","attribs":{"d":"M12.01,12.46c-0.15,0.42-0.15,0.82-0.08,1.28c0.1,0.55,0.33,1.04,0.2,1.6c-0.13,0.59-0.77,1.38-1.53,1.63 c1.28,1.05,3.2,0.37,3.39-1.32C14.16,14.11,12.55,13.67,12.01,12.46z"},"children":[]}]},{"name":"path","attribs":{"d":"M2,2v20h20V2H2z M12,18c-1.58,0-2.97-1.88-3-3.06c0-0.05-0.01-0.13-0.01-0.22c-0.13-1.73,1-3.2,2.47-4.37 c0.47,1.01,1.27,2.03,2.57,2.92C14.61,13.69,15,14.13,15,15C15,16.65,13.65,18,12,18z M20,20h-2v-2h-2.02 c0.63-0.84,1.02-1.87,1.02-3c0-1.89-1.09-2.85-1.85-3.37C12.2,9.61,13,7,13,7c-6.73,3.57-6.02,7.47-6,8 c0.03,0.96,0.49,2.07,1.23,3H6v2H4V4h16V20z"},"children":[{"name":"path","attribs":{"d":"M2,2v20h20V2H2z M12,18c-1.58,0-2.97-1.88-3-3.06c0-0.05-0.01-0.13-0.01-0.22c-0.13-1.73,1-3.2,2.47-4.37 c0.47,1.01,1.27,2.03,2.57,2.92C14.61,13.69,15,14.13,15,15C15,16.65,13.65,18,12,18z M20,20h-2v-2h-2.02 c0.63-0.84,1.02-1.87,1.02-3c0-1.89-1.09-2.85-1.85-3.37C12.2,9.61,13,7,13,7c-6.73,3.57-6.02,7.47-6,8 c0.03,0.96,0.49,2.07,1.23,3H6v2H4V4h16V20z"},"children":[]}]}]}]}]}]};exports.ic_fireplace_twotone=ic_fireplace_twotone;var ic_follow_the_signs={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M9.5,5.5c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S8.4,5.5,9.5,5.5z M5.75,8.9L3,23h2.1l1.75-8L9,17v6h2v-7.55L8.95,13.4 l0.6-3C10.85,12,12.8,13,15,13v-2c-1.85,0-3.45-1-4.35-2.45L9.7,6.95C9.35,6.35,8.7,6,8,6C7.75,6,7.5,6.05,7.25,6.15L2,8.3V13h2 V9.65L5.75,8.9 M13,2v7h3.75v14h1.5V9H22V2H13z M18.01,8V6.25H14.5v-1.5h3.51V3l2.49,2.5L18.01,8z"},"children":[]}]};exports.ic_follow_the_signs=ic_follow_the_signs;var ic_follow_the_signs_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M9.5,5.5c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S8.4,5.5,9.5,5.5z M5.75,8.9L3,23h2.1l1.75-8L9,17v6h2v-7.55L8.95,13.4 l0.6-3C10.85,12,12.8,13,15,13v-2c-1.85,0-3.45-1-4.35-2.45L9.7,6.95C9.35,6.35,8.7,6,8,6C7.75,6,7.5,6.05,7.25,6.15L2,8.3V13h2 V9.65L5.75,8.9 M13,2v7h3.75v14h1.5V9H22V2H13z M18.01,8V6.25H14.5v-1.5h3.51V3l2.49,2.5L18.01,8z"},"children":[]}]};exports.ic_follow_the_signs_outline=ic_follow_the_signs_outline;var ic_follow_the_signs_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M17.64,7.75V6h-3.51V4.5h3.51V2.75l2.49,2.5L17.64,7.75z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M9.12,5.25c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S8.02,5.25,9.12,5.25z M5.38,8.65l-2.75,14.1h2.1l1.75-8l2.15,2v6h2V15.2 l-2.05-2.05l0.6-3c1.3,1.6,3.25,2.6,5.45,2.6v-2c-1.85,0-3.45-1-4.35-2.45L9.32,6.7c-0.35-0.6-1-0.95-1.7-0.95 c-0.25,0-0.5,0.05-0.75,0.15L1.62,8.05v4.7h2V9.4L5.38,8.65 M12.62,1.75v7h3.75v14h1.5v-14h3.75v-7H12.62z M17.64,7.75V6h-3.51V4.5 h3.51V2.75l2.49,2.5L17.64,7.75z"},"children":[]}]};exports.ic_follow_the_signs_twotone=ic_follow_the_signs_twotone;var ic_group={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5c-1.66 0-3 1.34-3 3s1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5C6.34 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V19h14v-2.5c0-2.33-4.67-3.5-7-3.5zm8 0c-.29 0-.62.02-.97.05 1.16.84 1.97 1.97 1.97 3.45V19h6v-2.5c0-2.33-4.67-3.5-7-3.5z"},"children":[]}]};exports.ic_group=ic_group;var ic_group_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9 13.75c-2.34 0-7 1.17-7 3.5V19h14v-1.75c0-2.33-4.66-3.5-7-3.5zM4.34 17c.84-.58 2.87-1.25 4.66-1.25s3.82.67 4.66 1.25H4.34zM9 12c1.93 0 3.5-1.57 3.5-3.5S10.93 5 9 5 5.5 6.57 5.5 8.5 7.07 12 9 12zm0-5c.83 0 1.5.67 1.5 1.5S9.83 10 9 10s-1.5-.67-1.5-1.5S8.17 7 9 7zm7.04 6.81c1.16.84 1.96 1.96 1.96 3.44V19h4v-1.75c0-2.02-3.5-3.17-5.96-3.44zM15 12c1.93 0 3.5-1.57 3.5-3.5S16.93 5 15 5c-.54 0-1.04.13-1.5.35.63.89 1 1.98 1 3.15s-.37 2.26-1 3.15c.46.22.96.35 1.5.35z"},"children":[]}]};exports.ic_group_outline=ic_group_outline;var ic_group_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"9","cy":"8.5","opacity":".3","r":"1.5"},"children":[]},{"name":"path","attribs":{"d":"M4.34 17h9.32c-.84-.58-2.87-1.25-4.66-1.25s-3.82.67-4.66 1.25z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M9 12c1.93 0 3.5-1.57 3.5-3.5S10.93 5 9 5 5.5 6.57 5.5 8.5 7.07 12 9 12zm0-5c.83 0 1.5.67 1.5 1.5S9.83 10 9 10s-1.5-.67-1.5-1.5S8.17 7 9 7zm0 6.75c-2.34 0-7 1.17-7 3.5V19h14v-1.75c0-2.33-4.66-3.5-7-3.5zM4.34 17c.84-.58 2.87-1.25 4.66-1.25s3.82.67 4.66 1.25H4.34zm11.7-3.19c1.16.84 1.96 1.96 1.96 3.44V19h4v-1.75c0-2.02-3.5-3.17-5.96-3.44zM15 12c1.93 0 3.5-1.57 3.5-3.5S16.93 5 15 5c-.54 0-1.04.13-1.5.35.63.89 1 1.98 1 3.15s-.37 2.26-1 3.15c.46.22.96.35 1.5.35z"},"children":[]}]};exports.ic_group_twotone=ic_group_twotone;var ic_group_add={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8 10H5V7H3v3H0v2h3v3h2v-3h3v-2zm10 1c1.66 0 2.99-1.34 2.99-3S19.66 5 18 5c-.32 0-.63.05-.91.14.57.81.9 1.79.9 2.86s-.34 2.04-.9 2.86c.28.09.59.14.91.14zm-5 0c1.66 0 2.99-1.34 2.99-3S14.66 5 13 5c-1.66 0-3 1.34-3 3s1.34 3 3 3zm6.62 2.16c.83.73 1.38 1.66 1.38 2.84v2h3v-2c0-1.54-2.37-2.49-4.38-2.84zM13 13c-2 0-6 1-6 3v2h12v-2c0-2-4-3-6-3z"},"children":[]}]};exports.ic_group_add=ic_group_add;var ic_group_add_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 15v-3h3v-2H5V7H3v3H0v2h3v3zm7-1.25c-2.34 0-7 1.17-7 3.5V19h14v-1.75c0-2.33-4.66-3.5-7-3.5zM7.34 17c.84-.58 2.87-1.25 4.66-1.25s3.82.67 4.66 1.25H7.34zM12 12c1.93 0 3.5-1.57 3.5-3.5S13.93 5 12 5 8.5 6.57 8.5 8.5 10.07 12 12 12zm0-5c.83 0 1.5.67 1.5 1.5S12.83 10 12 10s-1.5-.67-1.5-1.5S11.17 7 12 7zm5 5c1.93 0 3.5-1.57 3.5-3.5S18.93 5 17 5c-.24 0-.48.02-.71.07.76.94 1.21 2.13 1.21 3.43 0 1.3-.47 2.48-1.23 3.42.24.05.48.08.73.08zm2.32 2.02c1 .81 1.68 1.87 1.68 3.23V19h3v-1.75c0-1.69-2.44-2.76-4.68-3.23z"},"children":[]}]};exports.ic_group_add_outline=ic_group_add_outline;var ic_group_add_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 15v-3h3v-2H5V7H3v3H0v2h3v3z"},"children":[]},{"name":"circle","attribs":{"cx":"12","cy":"8.5","opacity":".3","r":"1.5"},"children":[]},{"name":"path","attribs":{"d":"M7.34 17h9.32c-.84-.58-2.87-1.25-4.66-1.25s-3.82.67-4.66 1.25z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 12c1.93 0 3.5-1.57 3.5-3.5S13.93 5 12 5 8.5 6.57 8.5 8.5 10.07 12 12 12zm0-5c.83 0 1.5.67 1.5 1.5S12.83 10 12 10s-1.5-.67-1.5-1.5S11.17 7 12 7zm0 6.75c-2.34 0-7 1.17-7 3.5V19h14v-1.75c0-2.33-4.66-3.5-7-3.5zM7.34 17c.84-.58 2.87-1.25 4.66-1.25s3.82.67 4.66 1.25H7.34zM17 12c1.93 0 3.5-1.57 3.5-3.5S18.93 5 17 5c-.24 0-.48.02-.71.07.76.94 1.21 2.13 1.21 3.43 0 1.3-.47 2.48-1.23 3.42.24.05.48.08.73.08zm2.32 2.02c1 .81 1.68 1.87 1.68 3.23V19h3v-1.75c0-1.69-2.44-2.76-4.68-3.23z"},"children":[]}]};exports.ic_group_add_twotone=ic_group_add_twotone;var ic_groups={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M12,12.75c1.63,0,3.07,0.39,4.24,0.9c1.08,0.48,1.76,1.56,1.76,2.73L18,18H6l0-1.61c0-1.18,0.68-2.26,1.76-2.73 C8.93,13.14,10.37,12.75,12,12.75z M4,13c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2s-2,0.9-2,2C2,12.1,2.9,13,4,13z M5.13,14.1 C4.76,14.04,4.39,14,4,14c-0.99,0-1.93,0.21-2.78,0.58C0.48,14.9,0,15.62,0,16.43V18l4.5,0v-1.61C4.5,15.56,4.73,14.78,5.13,14.1z M20,13c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2s-2,0.9-2,2C18,12.1,18.9,13,20,13z M24,16.43c0-0.81-0.48-1.53-1.22-1.85 C21.93,14.21,20.99,14,20,14c-0.39,0-0.76,0.04-1.13,0.1c0.4,0.68,0.63,1.46,0.63,2.29V18l4.5,0V16.43z M12,6c1.66,0,3,1.34,3,3 c0,1.66-1.34,3-3,3s-3-1.34-3-3C9,7.34,10.34,6,12,6z"},"children":[{"name":"path","attribs":{"d":"M12,12.75c1.63,0,3.07,0.39,4.24,0.9c1.08,0.48,1.76,1.56,1.76,2.73L18,18H6l0-1.61c0-1.18,0.68-2.26,1.76-2.73 C8.93,13.14,10.37,12.75,12,12.75z M4,13c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2s-2,0.9-2,2C2,12.1,2.9,13,4,13z M5.13,14.1 C4.76,14.04,4.39,14,4,14c-0.99,0-1.93,0.21-2.78,0.58C0.48,14.9,0,15.62,0,16.43V18l4.5,0v-1.61C4.5,15.56,4.73,14.78,5.13,14.1z M20,13c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2s-2,0.9-2,2C18,12.1,18.9,13,20,13z M24,16.43c0-0.81-0.48-1.53-1.22-1.85 C21.93,14.21,20.99,14,20,14c-0.39,0-0.76,0.04-1.13,0.1c0.4,0.68,0.63,1.46,0.63,2.29V18l4.5,0V16.43z M12,6c1.66,0,3,1.34,3,3 c0,1.66-1.34,3-3,3s-3-1.34-3-3C9,7.34,10.34,6,12,6z"},"children":[]}]}]}]};exports.ic_groups=ic_groups;var ic_groups_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M4,13c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2s-2,0.9-2,2C2,12.1,2.9,13,4,13z M5.13,14.1C4.76,14.04,4.39,14,4,14 c-0.99,0-1.93,0.21-2.78,0.58C0.48,14.9,0,15.62,0,16.43V18l4.5,0v-1.61C4.5,15.56,4.73,14.78,5.13,14.1z M20,13c1.1,0,2-0.9,2-2 c0-1.1-0.9-2-2-2s-2,0.9-2,2C18,12.1,18.9,13,20,13z M24,16.43c0-0.81-0.48-1.53-1.22-1.85C21.93,14.21,20.99,14,20,14 c-0.39,0-0.76,0.04-1.13,0.1c0.4,0.68,0.63,1.46,0.63,2.29V18l4.5,0V16.43z M16.24,13.65c-1.17-0.52-2.61-0.9-4.24-0.9 c-1.63,0-3.07,0.39-4.24,0.9C6.68,14.13,6,15.21,6,16.39V18h12v-1.61C18,15.21,17.32,14.13,16.24,13.65z M8.07,16 c0.09-0.23,0.13-0.39,0.91-0.69c0.97-0.38,1.99-0.56,3.02-0.56s2.05,0.18,3.02,0.56c0.77,0.3,0.81,0.46,0.91,0.69H8.07z M12,8 c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S11.45,8,12,8 M12,6c-1.66,0-3,1.34-3,3c0,1.66,1.34,3,3,3s3-1.34,3-3 C15,7.34,13.66,6,12,6L12,6z"},"children":[{"name":"path","attribs":{"d":"M4,13c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2s-2,0.9-2,2C2,12.1,2.9,13,4,13z M5.13,14.1C4.76,14.04,4.39,14,4,14 c-0.99,0-1.93,0.21-2.78,0.58C0.48,14.9,0,15.62,0,16.43V18l4.5,0v-1.61C4.5,15.56,4.73,14.78,5.13,14.1z M20,13c1.1,0,2-0.9,2-2 c0-1.1-0.9-2-2-2s-2,0.9-2,2C18,12.1,18.9,13,20,13z M24,16.43c0-0.81-0.48-1.53-1.22-1.85C21.93,14.21,20.99,14,20,14 c-0.39,0-0.76,0.04-1.13,0.1c0.4,0.68,0.63,1.46,0.63,2.29V18l4.5,0V16.43z M16.24,13.65c-1.17-0.52-2.61-0.9-4.24-0.9 c-1.63,0-3.07,0.39-4.24,0.9C6.68,14.13,6,15.21,6,16.39V18h12v-1.61C18,15.21,17.32,14.13,16.24,13.65z M8.07,16 c0.09-0.23,0.13-0.39,0.91-0.69c0.97-0.38,1.99-0.56,3.02-0.56s2.05,0.18,3.02,0.56c0.77,0.3,0.81,0.46,0.91,0.69H8.07z M12,8 c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S11.45,8,12,8 M12,6c-1.66,0-3,1.34-3,3c0,1.66,1.34,3,3,3s3-1.34,3-3 C15,7.34,13.66,6,12,6L12,6z"},"children":[]}]}]}]};exports.ic_groups_outline=ic_groups_outline;var ic_groups_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"g","attribs":{"opacity":".3"},"children":[{"name":"path","attribs":{"d":"M8.07,16c0.09-0.23,0.13-0.39,0.91-0.69c0.97-0.38,1.99-0.56,3.02-0.56s2.05,0.18,3.02,0.56c0.77,0.3,0.81,0.46,0.91,0.69 H8.07z M12,8c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S11.45,8,12,8"},"children":[{"name":"path","attribs":{"d":"M8.07,16c0.09-0.23,0.13-0.39,0.91-0.69c0.97-0.38,1.99-0.56,3.02-0.56s2.05,0.18,3.02,0.56c0.77,0.3,0.81,0.46,0.91,0.69 H8.07z M12,8c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S11.45,8,12,8"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M4,13c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2s-2,0.9-2,2C2,12.1,2.9,13,4,13z M5.13,14.1C4.76,14.04,4.39,14,4,14 c-0.99,0-1.93,0.21-2.78,0.58C0.48,14.9,0,15.62,0,16.43V18l4.5,0v-1.61C4.5,15.56,4.73,14.78,5.13,14.1z M20,13c1.1,0,2-0.9,2-2 c0-1.1-0.9-2-2-2s-2,0.9-2,2C18,12.1,18.9,13,20,13z M24,16.43c0-0.81-0.48-1.53-1.22-1.85C21.93,14.21,20.99,14,20,14 c-0.39,0-0.76,0.04-1.13,0.1c0.4,0.68,0.63,1.46,0.63,2.29V18l4.5,0V16.43z M16.24,13.65c-1.17-0.52-2.61-0.9-4.24-0.9 c-1.63,0-3.07,0.39-4.24,0.9C6.68,14.13,6,15.21,6,16.39V18h12v-1.61C18,15.21,17.32,14.13,16.24,13.65z M8.07,16 c0.09-0.23,0.13-0.39,0.91-0.69c0.97-0.38,1.99-0.56,3.02-0.56s2.05,0.18,3.02,0.56c0.77,0.3,0.81,0.46,0.91,0.69H8.07z M12,8 c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S11.45,8,12,8 M12,6c-1.66,0-3,1.34-3,3c0,1.66,1.34,3,3,3s3-1.34,3-3 C15,7.34,13.66,6,12,6L12,6z"},"children":[{"name":"path","attribs":{"d":"M4,13c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2s-2,0.9-2,2C2,12.1,2.9,13,4,13z M5.13,14.1C4.76,14.04,4.39,14,4,14 c-0.99,0-1.93,0.21-2.78,0.58C0.48,14.9,0,15.62,0,16.43V18l4.5,0v-1.61C4.5,15.56,4.73,14.78,5.13,14.1z M20,13c1.1,0,2-0.9,2-2 c0-1.1-0.9-2-2-2s-2,0.9-2,2C18,12.1,18.9,13,20,13z M24,16.43c0-0.81-0.48-1.53-1.22-1.85C21.93,14.21,20.99,14,20,14 c-0.39,0-0.76,0.04-1.13,0.1c0.4,0.68,0.63,1.46,0.63,2.29V18l4.5,0V16.43z M16.24,13.65c-1.17-0.52-2.61-0.9-4.24-0.9 c-1.63,0-3.07,0.39-4.24,0.9C6.68,14.13,6,15.21,6,16.39V18h12v-1.61C18,15.21,17.32,14.13,16.24,13.65z M8.07,16 c0.09-0.23,0.13-0.39,0.91-0.69c0.97-0.38,1.99-0.56,3.02-0.56s2.05,0.18,3.02,0.56c0.77,0.3,0.81,0.46,0.91,0.69H8.07z M12,8 c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S11.45,8,12,8 M12,6c-1.66,0-3,1.34-3,3c0,1.66,1.34,3,3,3s3-1.34,3-3 C15,7.34,13.66,6,12,6L12,6z"},"children":[]}]}]}]};exports.ic_groups_twotone=ic_groups_twotone;var ic_history_edu={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M9,4v1.38c-0.83-0.33-1.72-0.5-2.61-0.5c-1.79,0-3.58,0.68-4.95,2.05l3.33,3.33h1.11v1.11c0.86,0.86,1.98,1.31,3.11,1.36 V15H6v3c0,1.1,0.9,2,2,2h10c1.66,0,3-1.34,3-3V4H9z M7.89,10.41V8.26H5.61L4.57,7.22C5.14,7,5.76,6.88,6.39,6.88 c1.34,0,2.59,0.52,3.54,1.46l1.41,1.41l-0.2,0.2c-0.51,0.51-1.19,0.8-1.92,0.8C8.75,10.75,8.29,10.63,7.89,10.41z M19,17 c0,0.55-0.45,1-1,1s-1-0.45-1-1v-2h-6v-2.59c0.57-0.23,1.1-0.57,1.56-1.03l0.2-0.2L15.59,14H17v-1.41l-6-5.97V6h8V17z"},"children":[{"name":"path","attribs":{"d":"M9,4v1.38c-0.83-0.33-1.72-0.5-2.61-0.5c-1.79,0-3.58,0.68-4.95,2.05l3.33,3.33h1.11v1.11c0.86,0.86,1.98,1.31,3.11,1.36 V15H6v3c0,1.1,0.9,2,2,2h10c1.66,0,3-1.34,3-3V4H9z M7.89,10.41V8.26H5.61L4.57,7.22C5.14,7,5.76,6.88,6.39,6.88 c1.34,0,2.59,0.52,3.54,1.46l1.41,1.41l-0.2,0.2c-0.51,0.51-1.19,0.8-1.92,0.8C8.75,10.75,8.29,10.63,7.89,10.41z M19,17 c0,0.55-0.45,1-1,1s-1-0.45-1-1v-2h-6v-2.59c0.57-0.23,1.1-0.57,1.56-1.03l0.2-0.2L15.59,14H17v-1.41l-6-5.97V6h8V17z"},"children":[]}]}]}]}]}]};exports.ic_history_edu=ic_history_edu;var ic_history_edu_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M9,4v1.38c-0.83-0.33-1.72-0.5-2.61-0.5c-1.79,0-3.58,0.68-4.95,2.05l3.33,3.33h1.11v1.11c0.86,0.86,1.98,1.31,3.11,1.36 V15H6v3c0,1.1,0.9,2,2,2h10c1.66,0,3-1.34,3-3V4H9z M7.89,10.41V8.26H5.61L4.57,7.22C5.14,7,5.76,6.88,6.39,6.88 c1.34,0,2.59,0.52,3.54,1.46l1.41,1.41l-0.2,0.2c-0.51,0.51-1.19,0.8-1.92,0.8C8.75,10.75,8.29,10.63,7.89,10.41z M19,17 c0,0.55-0.45,1-1,1s-1-0.45-1-1v-2h-6v-2.59c0.57-0.23,1.1-0.57,1.56-1.03l0.2-0.2L15.59,14H17v-1.41l-6-5.97V6h8V17z"},"children":[{"name":"path","attribs":{"d":"M9,4v1.38c-0.83-0.33-1.72-0.5-2.61-0.5c-1.79,0-3.58,0.68-4.95,2.05l3.33,3.33h1.11v1.11c0.86,0.86,1.98,1.31,3.11,1.36 V15H6v3c0,1.1,0.9,2,2,2h10c1.66,0,3-1.34,3-3V4H9z M7.89,10.41V8.26H5.61L4.57,7.22C5.14,7,5.76,6.88,6.39,6.88 c1.34,0,2.59,0.52,3.54,1.46l1.41,1.41l-0.2,0.2c-0.51,0.51-1.19,0.8-1.92,0.8C8.75,10.75,8.29,10.63,7.89,10.41z M19,17 c0,0.55-0.45,1-1,1s-1-0.45-1-1v-2h-6v-2.59c0.57-0.23,1.1-0.57,1.56-1.03l0.2-0.2L15.59,14H17v-1.41l-6-5.97V6h8V17z"},"children":[]}]}]}]}]}]};exports.ic_history_edu_outline=ic_history_edu_outline;var ic_history_edu_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{"opacity":".3"},"children":[{"name":"g","attribs":{"opacity":".3"},"children":[{"name":"path","attribs":{"d":"M11.34,9.76L9.93,8.34C8.98,7.4,7.73,6.88,6.39,6.88C5.76,6.88,5.14,7,4.57,7.22l1.04,1.04h2.28v2.14 c0.4,0.23,0.86,0.35,1.33,0.35c0.73,0,1.41-0.28,1.92-0.8L11.34,9.76z"},"children":[{"name":"path","attribs":{"d":"M11.34,9.76L9.93,8.34C8.98,7.4,7.73,6.88,6.39,6.88C5.76,6.88,5.14,7,4.57,7.22l1.04,1.04h2.28v2.14 c0.4,0.23,0.86,0.35,1.33,0.35c0.73,0,1.41-0.28,1.92-0.8L11.34,9.76z"},"children":[]}]}]}]},{"name":"g","attribs":{"opacity":".3"},"children":[{"name":"g","attribs":{"opacity":".3"},"children":[{"name":"path","attribs":{"d":"M11,6.62l6,5.97V14h-1.41l-2.83-2.83l-0.2,0.2c-0.46,0.46-0.99,0.8-1.56,1.03V15h6v2c0,0.55,0.45,1,1,1s1-0.45,1-1V6h-8 V6.62z"},"children":[{"name":"path","attribs":{"d":"M11,6.62l6,5.97V14h-1.41l-2.83-2.83l-0.2,0.2c-0.46,0.46-0.99,0.8-1.56,1.03V15h6v2c0,0.55,0.45,1,1,1s1-0.45,1-1V6h-8 V6.62z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M9,4v1.38c-0.83-0.33-1.72-0.5-2.61-0.5c-1.79,0-3.58,0.68-4.95,2.05l3.33,3.33h1.11v1.11c0.86,0.86,1.98,1.31,3.11,1.36 V15H6v3c0,1.1,0.9,2,2,2h10c1.66,0,3-1.34,3-3V4H9z M7.89,10.41V8.26H5.61L4.57,7.22C5.14,7,5.76,6.88,6.39,6.88 c1.34,0,2.59,0.52,3.54,1.46l1.41,1.41l-0.2,0.2c-0.51,0.51-1.19,0.8-1.92,0.8C8.75,10.75,8.29,10.63,7.89,10.41z M19,17 c0,0.55-0.45,1-1,1s-1-0.45-1-1v-2h-6v-2.59c0.57-0.23,1.1-0.57,1.56-1.03l0.2-0.2L15.59,14H17v-1.41l-6-5.97V6h8V17z"},"children":[{"name":"path","attribs":{"d":"M9,4v1.38c-0.83-0.33-1.72-0.5-2.61-0.5c-1.79,0-3.58,0.68-4.95,2.05l3.33,3.33h1.11v1.11c0.86,0.86,1.98,1.31,3.11,1.36 V15H6v3c0,1.1,0.9,2,2,2h10c1.66,0,3-1.34,3-3V4H9z M7.89,10.41V8.26H5.61L4.57,7.22C5.14,7,5.76,6.88,6.39,6.88 c1.34,0,2.59,0.52,3.54,1.46l1.41,1.41l-0.2,0.2c-0.51,0.51-1.19,0.8-1.92,0.8C8.75,10.75,8.29,10.63,7.89,10.41z M19,17 c0,0.55-0.45,1-1,1s-1-0.45-1-1v-2h-6v-2.59c0.57-0.23,1.1-0.57,1.56-1.03l0.2-0.2L15.59,14H17v-1.41l-6-5.97V6h8V17z"},"children":[]}]}]}]}]}]}]}]};exports.ic_history_edu_twotone=ic_history_edu_twotone;var ic_ios_share={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16 5l-1.42 1.42-1.59-1.59V16h-1.98V4.83L9.42 6.42 8 5l4-4 4 4zm4 5v11c0 1.1-.9 2-2 2H6c-1.11 0-2-.9-2-2V10c0-1.11.89-2 2-2h3v2H6v11h12V10h-3V8h3c1.1 0 2 .89 2 2z"},"children":[]}]};exports.ic_ios_share=ic_ios_share;var ic_king_bed={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"3","width":"5","x":"6","y":"7"},"children":[{"name":"rect","attribs":{"fill":"none","height":"3","width":"5","x":"6","y":"7"},"children":[]}]},{"name":"rect","attribs":{"fill":"none","height":"3","width":"5","x":"13","y":"7"},"children":[{"name":"rect","attribs":{"fill":"none","height":"3","width":"5","x":"13","y":"7"},"children":[]}]},{"name":"path","attribs":{"d":"M20,10V7c0-1.1-0.9-2-2-2H6C4.9,5,4,5.9,4,7v3c-1.1,0-2,0.9-2,2v5h1.33L4,19h1l0.67-2h12.67L19,19h1l0.67-2H22v-5 C22,10.9,21.1,10,20,10z M11,10H6V7h5V10z M18,10h-5V7h5V10z"},"children":[{"name":"path","attribs":{"d":"M20,10V7c0-1.1-0.9-2-2-2H6C4.9,5,4,5.9,4,7v3c-1.1,0-2,0.9-2,2v5h1.33L4,19h1l0.67-2h12.67L19,19h1l0.67-2H22v-5 C22,10.9,21.1,10,20,10z M11,10H6V7h5V10z M18,10h-5V7h5V10z"},"children":[]}]}]}]}]}]};exports.ic_king_bed=ic_king_bed;var ic_king_bed_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M22,12c0-1.1-0.9-2-2-2V7c0-1.1-0.9-2-2-2H6C4.9,5,4,5.9,4,7v3c-1.1,0-2,0.9-2,2v5h1.33L4,19h1l0.67-2h12.67L19,19h1 l0.67-2H22V12z M18,10h-5V7h5V10z M6,7h5v3H6V7z M4,12h16v3H4V12z"},"children":[{"name":"path","attribs":{"d":"M22,12c0-1.1-0.9-2-2-2V7c0-1.1-0.9-2-2-2H6C4.9,5,4,5.9,4,7v3c-1.1,0-2,0.9-2,2v5h1.33L4,19h1l0.67-2h12.67L19,19h1 l0.67-2H22V12z M18,10h-5V7h5V10z M6,7h5v3H6V7z M4,12h16v3H4V12z"},"children":[]}]}]}]};exports.ic_king_bed_outline=ic_king_bed_outline;var ic_king_bed_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"height":"3","opacity":".3","width":"16","x":"4","y":"12"},"children":[{"name":"rect","attribs":{"height":"3","opacity":".3","width":"16","x":"4","y":"12"},"children":[]}]},{"name":"path","attribs":{"d":"M20,10V7c0-1.1-0.9-2-2-2H6C4.9,5,4,5.9,4,7v3c-1.1,0-2,0.9-2,2v5h1.33L4,19h1l0.67-2h12.67L19,19h1l0.67-2H22v-5 C22,10.9,21.1,10,20,10z M13,7h5v3h-5V7z M6,7h5v3H6V7z M20,15H4v-3h16V15z"},"children":[{"name":"path","attribs":{"d":"M20,10V7c0-1.1-0.9-2-2-2H6C4.9,5,4,5.9,4,7v3c-1.1,0-2,0.9-2,2v5h1.33L4,19h1l0.67-2h12.67L19,19h1l0.67-2H22v-5 C22,10.9,21.1,10,20,10z M13,7h5v3h-5V7z M6,7h5v3H6V7z M20,15H4v-3h16V15z"},"children":[]}]}]}]}]}]};exports.ic_king_bed_twotone=ic_king_bed_twotone;var ic_location_city={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15 11V5l-3-3-3 3v2H3v14h18V11h-6zm-8 8H5v-2h2v2zm0-4H5v-2h2v2zm0-4H5V9h2v2zm6 8h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V9h2v2zm0-4h-2V5h2v2zm6 12h-2v-2h2v2zm0-4h-2v-2h2v2z"},"children":[]}]};exports.ic_location_city=ic_location_city;var ic_location_city_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15 11V5l-3-3-3 3v2H3v14h18V11h-6zm-8 8H5v-2h2v2zm0-4H5v-2h2v2zm0-4H5V9h2v2zm6 8h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V9h2v2zm0-4h-2V5h2v2zm6 12h-2v-2h2v2zm0-4h-2v-2h2v2z"},"children":[]}]};exports.ic_location_city_outline=ic_location_city_outline;var ic_location_city_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15 11V5l-3-3-3 3v2H3v14h18V11h-6zm-8 8H5v-2h2v2zm0-4H5v-2h2v2zm0-4H5V9h2v2zm6 8h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V9h2v2zm0-4h-2V5h2v2zm6 12h-2v-2h2v2zm0-4h-2v-2h2v2z"},"children":[]}]};exports.ic_location_city_twotone=ic_location_city_twotone;var ic_luggage={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M17,6h-2V3c0-0.55-0.45-1-1-1h-4C9.45,2,9,2.45,9,3v3H7C5.9,6,5,6.9,5,8v11c0,1.1,0.9,2,2,2c0,0.55,0.45,1,1,1 c0.55,0,1-0.45,1-1h6c0,0.55,0.45,1,1,1c0.55,0,1-0.45,1-1c1.1,0,2-0.9,2-2V8C19,6.9,18.1,6,17,6z M9.5,18H8V9h1.5V18z M12.75,18 h-1.5V9h1.5V18z M13.5,6h-3V3.5h3V6z M16,18h-1.5V9H16V18z"},"children":[{"name":"path","attribs":{"d":"M17,6h-2V3c0-0.55-0.45-1-1-1h-4C9.45,2,9,2.45,9,3v3H7C5.9,6,5,6.9,5,8v11c0,1.1,0.9,2,2,2c0,0.55,0.45,1,1,1 c0.55,0,1-0.45,1-1h6c0,0.55,0.45,1,1,1c0.55,0,1-0.45,1-1c1.1,0,2-0.9,2-2V8C19,6.9,18.1,6,17,6z M9.5,18H8V9h1.5V18z M12.75,18 h-1.5V9h1.5V18z M13.5,6h-3V3.5h3V6z M16,18h-1.5V9H16V18z"},"children":[]}]}]}]};exports.ic_luggage=ic_luggage;var ic_luggage_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M9.5,18H8V9h1.5V18z M12.75,18h-1.5V9h1.5V18z M16,18h-1.5V9H16V18z M17,6h-2V3c0-0.55-0.45-1-1-1h-4C9.45,2,9,2.45,9,3v3 H7C5.9,6,5,6.9,5,8v11c0,1.1,0.9,2,2,2c0,0.55,0.45,1,1,1s1-0.45,1-1h6c0,0.55,0.45,1,1,1s1-0.45,1-1c1.1,0,2-0.9,2-2V8 C19,6.9,18.1,6,17,6z M10.5,3.5h3V6h-3V3.5z M17,19H7V8h10V19z"},"children":[{"name":"path","attribs":{"d":"M9.5,18H8V9h1.5V18z M12.75,18h-1.5V9h1.5V18z M16,18h-1.5V9H16V18z M17,6h-2V3c0-0.55-0.45-1-1-1h-4C9.45,2,9,2.45,9,3v3 H7C5.9,6,5,6.9,5,8v11c0,1.1,0.9,2,2,2c0,0.55,0.45,1,1,1s1-0.45,1-1h6c0,0.55,0.45,1,1,1s1-0.45,1-1c1.1,0,2-0.9,2-2V8 C19,6.9,18.1,6,17,6z M10.5,3.5h3V6h-3V3.5z M17,19H7V8h10V19z"},"children":[]}]}]}]};exports.ic_luggage_outline=ic_luggage_outline;var ic_luggage_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"g","attribs":{"opacity":".3"},"children":[{"name":"path","attribs":{"d":"M7,8v11h10V8H7z M9.5,18H8V9h1.5V18z M12.75,18h-1.5V9h1.5V18z M16,18h-1.5V9H16V18z"},"children":[{"name":"path","attribs":{"d":"M7,8v11h10V8H7z M9.5,18H8V9h1.5V18z M12.75,18h-1.5V9h1.5V18z M16,18h-1.5V9H16V18z"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M9.5,18H8V9h1.5V18z M12.75,18h-1.5V9h1.5V18z M16,18h-1.5V9H16V18z M17,6h-2V3c0-0.55-0.45-1-1-1h-4C9.45,2,9,2.45,9,3v3 H7C5.9,6,5,6.9,5,8v11c0,1.1,0.9,2,2,2c0,0.55,0.45,1,1,1s1-0.45,1-1h6c0,0.55,0.45,1,1,1s1-0.45,1-1c1.1,0,2-0.9,2-2V8 C19,6.9,18.1,6,17,6z M10.5,3.5h3V6h-3V3.5z M17,19H7V8h10V19z"},"children":[{"name":"path","attribs":{"d":"M9.5,18H8V9h1.5V18z M12.75,18h-1.5V9h1.5V18z M16,18h-1.5V9H16V18z M17,6h-2V3c0-0.55-0.45-1-1-1h-4C9.45,2,9,2.45,9,3v3 H7C5.9,6,5,6.9,5,8v11c0,1.1,0.9,2,2,2c0,0.55,0.45,1,1,1s1-0.45,1-1h6c0,0.55,0.45,1,1,1s1-0.45,1-1c1.1,0,2-0.9,2-2V8 C19,6.9,18.1,6,17,6z M10.5,3.5h3V6h-3V3.5z M17,19H7V8h10V19z"},"children":[]}]}]}]};exports.ic_luggage_twotone=ic_luggage_twotone;var ic_masks={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M19.5,6c-1.31,0-2.37,1.01-2.48,2.3C15.14,7.8,14.18,6.5,12,6.5c-2.19,0-3.14,1.3-5.02,1.8C6.87,7.02,5.81,6,4.5,6 C3.12,6,2,7.12,2,8.5V9c0,6,3.6,7.81,6.52,7.98C9.53,17.62,10.72,18,12,18s2.47-0.38,3.48-1.02C18.4,16.81,22,15,22,9V8.5 C22,7.12,20.88,6,19.5,6z M3.5,9V8.5c0-0.55,0.45-1,1-1s1,0.45,1,1v3c0,1.28,0.38,2.47,1.01,3.48C4.99,14.27,3.5,12.65,3.5,9z M20.5,9c0,3.65-1.49,5.27-3.01,5.98c0.64-1.01,1.01-2.2,1.01-3.48v-3c0-0.55,0.45-1,1-1s1,0.45,1,1V9z M10.69,10.48 c-0.44,0.26-0.96,0.56-1.69,0.76V10.2c0.48-0.17,0.84-0.38,1.18-0.58C10.72,9.3,11.23,9,12,9s1.27,0.3,1.8,0.62 c0.34,0.2,0.71,0.42,1.2,0.59v1.04c-0.75-0.21-1.26-0.51-1.71-0.78C12.83,10.2,12.49,10,12,10C11.51,10,11.16,10.2,10.69,10.48z"},"children":[]}]};exports.ic_masks=ic_masks;var ic_masks_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M19.5,6c-1.31,0-2.37,1.01-2.48,2.3C15.14,7.8,14.18,6.5,12,6.5c-2.19,0-3.14,1.3-5.02,1.8C6.87,7.02,5.81,6,4.5,6 C3.12,6,2,7.12,2,8.5V9c0,6,3.6,7.81,6.52,7.98C9.53,17.62,10.72,18,12,18s2.47-0.38,3.48-1.02C18.4,16.81,22,15,22,9V8.5 C22,7.12,20.88,6,19.5,6z M3.5,9V8.5c0-0.55,0.45-1,1-1s1,0.45,1,1v3c0,1.28,0.38,2.47,1.01,3.48C4.99,14.27,3.5,12.65,3.5,9z M7,11.5V9.85c1.12-0.23,1.95-0.69,2.66-1.08C10.48,8.33,11.07,8,12,8c0.93,0,1.52,0.33,2.34,0.78c0.71,0.39,1.54,0.84,2.66,1.08 v1.65c0,2.76-2.24,5-5,5S7,14.26,7,11.5z M20.5,9c0,3.65-1.49,5.27-3.01,5.98c0.64-1.01,1.01-2.2,1.01-3.48v-3c0-0.55,0.45-1,1-1 s1,0.45,1,1V9z M10.69,10.48c-0.44,0.26-0.96,0.56-1.69,0.76V10.2c0.48-0.17,0.84-0.38,1.18-0.58C10.72,9.3,11.23,9,12,9 s1.27,0.3,1.8,0.62c0.34,0.2,0.71,0.42,1.2,0.59v1.04c-0.75-0.21-1.26-0.51-1.71-0.78C12.83,10.2,12.49,10,12,10 C11.51,10,11.16,10.2,10.69,10.48z"},"children":[]}]};exports.ic_masks_outline=ic_masks_outline;var ic_masks_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M14.34,8.78C13.52,8.33,12.93,8,12,8c-0.93,0-1.52,0.33-2.34,0.77C8.95,9.16,8.12,9.62,7,9.85v1.65 c0,2.76,2.24,5,5,5s5-2.24,5-5V9.85C15.88,9.62,15.05,9.16,14.34,8.78z M15,11.25c-0.75-0.21-1.26-0.51-1.71-0.78 C12.83,10.2,12.49,10,12,10c-0.49,0-0.84,0.2-1.31,0.48c-0.44,0.26-0.96,0.56-1.69,0.76V10.2c0.48-0.17,0.84-0.38,1.18-0.58 C10.72,9.3,11.23,9,12,9s1.27,0.3,1.8,0.62c0.34,0.2,0.71,0.42,1.2,0.59V11.25z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M19.5,6c-1.31,0-2.37,1.01-2.48,2.3C15.14,7.8,14.18,6.5,12,6.5c-2.19,0-3.14,1.3-5.02,1.8C6.87,7.02,5.81,6,4.5,6 C3.12,6,2,7.12,2,8.5V9c0,6,3.6,7.81,6.52,7.98C9.53,17.62,10.72,18,12,18s2.47-0.38,3.48-1.02C18.4,16.81,22,15,22,9V8.5 C22,7.12,20.88,6,19.5,6z M3.5,9V8.5c0-0.55,0.45-1,1-1s1,0.45,1,1v3c0,1.28,0.38,2.47,1.01,3.48C4.99,14.27,3.5,12.65,3.5,9z M7,11.5V9.85c1.12-0.23,1.95-0.69,2.66-1.08C10.48,8.33,11.07,8,12,8c0.93,0,1.52,0.33,2.34,0.78c0.71,0.39,1.54,0.84,2.66,1.08 v1.65c0,2.76-2.24,5-5,5S7,14.26,7,11.5z M20.5,9c0,3.65-1.49,5.27-3.01,5.98c0.64-1.01,1.01-2.2,1.01-3.48v-3c0-0.55,0.45-1,1-1 s1,0.45,1,1V9z M10.69,10.48c-0.44,0.26-0.96,0.56-1.69,0.76V10.2c0.48-0.17,0.84-0.38,1.18-0.58C10.72,9.3,11.23,9,12,9 s1.27,0.3,1.8,0.62c0.34,0.2,0.71,0.42,1.2,0.59v1.04c-0.75-0.21-1.26-0.51-1.71-0.78C12.83,10.2,12.49,10,12,10 C11.51,10,11.16,10.2,10.69,10.48z"},"children":[]}]};exports.ic_masks_twotone=ic_masks_twotone;var ic_military_tech={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M17,10.43V2H7v8.43c0,0.35,0.18,0.68,0.49,0.86l4.18,2.51l-0.99,2.34l-3.41,0.29l2.59,2.24L9.07,22L12,20.23L14.93,22 l-0.78-3.33l2.59-2.24l-3.41-0.29l-0.99-2.34l4.18-2.51C16.82,11.11,17,10.79,17,10.43z M13,12.23l-1,0.6l-1-0.6V3h2V12.23z"},"children":[{"name":"path","attribs":{"d":"M17,10.43V2H7v8.43c0,0.35,0.18,0.68,0.49,0.86l4.18,2.51l-0.99,2.34l-3.41,0.29l2.59,2.24L9.07,22L12,20.23L14.93,22 l-0.78-3.33l2.59-2.24l-3.41-0.29l-0.99-2.34l4.18-2.51C16.82,11.11,17,10.79,17,10.43z M13,12.23l-1,0.6l-1-0.6V3h2V12.23z"},"children":[]}]}]}]};exports.ic_military_tech=ic_military_tech;var ic_military_tech_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M17,10.43V2H7v8.43c0,0.35,0.18,0.68,0.49,0.86l4.18,2.51l-0.99,2.34l-3.41,0.29l2.59,2.24L9.07,22L12,20.23L14.93,22 l-0.78-3.33l2.59-2.24l-3.41-0.29l-0.99-2.34l4.18-2.51C16.82,11.11,17,10.79,17,10.43z M11,11.07l-2-1.2V4h2V11.07z M15,9.87 l-2,1.2V4h2V9.87z"},"children":[{"name":"path","attribs":{"d":"M17,10.43V2H7v8.43c0,0.35,0.18,0.68,0.49,0.86l4.18,2.51l-0.99,2.34l-3.41,0.29l2.59,2.24L9.07,22L12,20.23L14.93,22 l-0.78-3.33l2.59-2.24l-3.41-0.29l-0.99-2.34l4.18-2.51C16.82,11.11,17,10.79,17,10.43z M11,11.07l-2-1.2V4h2V11.07z M15,9.87 l-2,1.2V4h2V9.87z"},"children":[]}]}]}]}]}]};exports.ic_military_tech_outline=ic_military_tech_outline;var ic_military_tech_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"opacity":".3","points":"13,11.07 15,9.87 15,4 13,4"},"children":[{"name":"polygon","attribs":{"opacity":".3","points":"13,11.07 15,9.87 15,4 13,4"},"children":[]}]},{"name":"polygon","attribs":{"opacity":".3","points":"9,4 9,9.87 11,11.07 11,4"},"children":[{"name":"polygon","attribs":{"opacity":".3","points":"9,4 9,9.87 11,11.07 11,4"},"children":[]}]},{"name":"path","attribs":{"d":"M17,10.43V2H7v8.43c0,0.35,0.18,0.68,0.49,0.86l4.18,2.51l-0.99,2.34l-3.41,0.29l2.59,2.24L9.07,22L12,20.23L14.93,22 l-0.78-3.33l2.59-2.24l-3.41-0.29l-0.99-2.34l4.18-2.51C16.82,11.11,17,10.79,17,10.43z M11,11.07l-2-1.2V4h2V11.07z M15,9.87 l-2,1.2V4h2V9.87z"},"children":[{"name":"path","attribs":{"d":"M17,10.43V2H7v8.43c0,0.35,0.18,0.68,0.49,0.86l4.18,2.51l-0.99,2.34l-3.41,0.29l2.59,2.24L9.07,22L12,20.23L14.93,22 l-0.78-3.33l2.59-2.24l-3.41-0.29l-0.99-2.34l4.18-2.51C16.82,11.11,17,10.79,17,10.43z M11,11.07l-2-1.2V4h2V11.07z M15,9.87 l-2,1.2V4h2V9.87z"},"children":[]}]}]}]}]}]};exports.ic_military_tech_twotone=ic_military_tech_twotone;var ic_mood={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 6.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z"},"children":[]}]};exports.ic_mood=ic_mood;var ic_mood_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 6.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z"},"children":[]}]};exports.ic_mood_outline=ic_mood_outline;var ic_mood_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm3.5 4c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-7 0c.83 0 1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5 7.67 8 8.5 8zm3.5 9.5c-2.33 0-4.31-1.46-5.11-3.5h10.22c-.8 2.04-2.78 3.5-5.11 3.5z","opacity":".3"},"children":[]},{"name":"circle","attribs":{"cx":"8.5","cy":"9.5","r":"1.5"},"children":[]},{"name":"path","attribs":{"d":"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"},"children":[]},{"name":"circle","attribs":{"cx":"15.5","cy":"9.5","r":"1.5"},"children":[]},{"name":"path","attribs":{"d":"M12 17.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z"},"children":[]}]};exports.ic_mood_twotone=ic_mood_twotone;var ic_mood_bad={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 3c-2.33 0-4.31 1.46-5.11 3.5h10.22c-.8-2.04-2.78-3.5-5.11-3.5z"},"children":[]}]};exports.ic_mood_bad=ic_mood_bad;var ic_mood_bad_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 2.5c-2.33 0-4.31 1.46-5.11 3.5h10.22c-.8-2.04-2.78-3.5-5.11-3.5z"},"children":[]}]};exports.ic_mood_bad_outline=ic_mood_bad_outline;var ic_mood_bad_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm3.5 4c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-7 0c.83 0 1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5 7.67 8 8.5 8zm-1.61 9c.8-2.04 2.78-3.5 5.11-3.5s4.31 1.46 5.11 3.5H6.89z","opacity":".3"},"children":[]},{"name":"circle","attribs":{"cx":"8.5","cy":"9.5","r":"1.5"},"children":[]},{"name":"path","attribs":{"d":"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm0-6.5c-2.33 0-4.31 1.46-5.11 3.5h10.22c-.8-2.04-2.78-3.5-5.11-3.5z"},"children":[]},{"name":"circle","attribs":{"cx":"15.5","cy":"9.5","r":"1.5"},"children":[]}]};exports.ic_mood_bad_twotone=ic_mood_bad_twotone;var ic_nights_stay={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M11.1,12.08C8.77,7.57,10.6,3.6,11.63,2.01C6.27,2.2,1.98,6.59,1.98,12c0,0.14,0.02,0.28,0.02,0.42 C2.62,12.15,3.29,12,4,12c1.66,0,3.18,0.83,4.1,2.15C9.77,14.63,11,16.17,11,18c0,1.52-0.87,2.83-2.12,3.51 c0.98,0.32,2.03,0.5,3.11,0.5c3.5,0,6.58-1.8,8.37-4.52C18,17.72,13.38,16.52,11.1,12.08z"},"children":[{"name":"path","attribs":{"d":"M11.1,12.08C8.77,7.57,10.6,3.6,11.63,2.01C6.27,2.2,1.98,6.59,1.98,12c0,0.14,0.02,0.28,0.02,0.42 C2.62,12.15,3.29,12,4,12c1.66,0,3.18,0.83,4.1,2.15C9.77,14.63,11,16.17,11,18c0,1.52-0.87,2.83-2.12,3.51 c0.98,0.32,2.03,0.5,3.11,0.5c3.5,0,6.58-1.8,8.37-4.52C18,17.72,13.38,16.52,11.1,12.08z"},"children":[]}]}]}]},{"name":"path","attribs":{"d":"M7,16l-0.18,0C6.4,14.84,5.3,14,4,14c-1.66,0-3,1.34-3,3s1.34,3,3,3c0.62,0,2.49,0,3,0c1.1,0,2-0.9,2-2 C9,16.9,8.1,16,7,16z"},"children":[{"name":"path","attribs":{"d":"M7,16l-0.18,0C6.4,14.84,5.3,14,4,14c-1.66,0-3,1.34-3,3s1.34,3,3,3c0.62,0,2.49,0,3,0c1.1,0,2-0.9,2-2 C9,16.9,8.1,16,7,16z"},"children":[]}]}]}]}]}]};exports.ic_nights_stay=ic_nights_stay;var ic_nights_stay_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M19.78,17.51c-2.47,0-6.57-1.33-8.68-5.43C8.77,7.57,10.6,3.6,11.63,2.01C6.27,2.2,1.98,6.59,1.98,12 c0,0.14,0.02,0.28,0.02,0.42C2.61,12.16,3.28,12,3.98,12c0,0,0,0,0,0c0-3.09,1.73-5.77,4.3-7.1C7.78,7.09,7.74,9.94,9.32,13 c1.57,3.04,4.18,4.95,6.8,5.86c-1.23,0.74-2.65,1.15-4.13,1.15c-0.5,0-1-0.05-1.48-0.14c-0.37,0.7-0.94,1.27-1.64,1.64 c0.98,0.32,2.03,0.5,3.11,0.5c3.5,0,6.58-1.8,8.37-4.52C20.18,17.5,19.98,17.51,19.78,17.51z"},"children":[{"name":"path","attribs":{"d":"M19.78,17.51c-2.47,0-6.57-1.33-8.68-5.43C8.77,7.57,10.6,3.6,11.63,2.01C6.27,2.2,1.98,6.59,1.98,12 c0,0.14,0.02,0.28,0.02,0.42C2.61,12.16,3.28,12,3.98,12c0,0,0,0,0,0c0-3.09,1.73-5.77,4.3-7.1C7.78,7.09,7.74,9.94,9.32,13 c1.57,3.04,4.18,4.95,6.8,5.86c-1.23,0.74-2.65,1.15-4.13,1.15c-0.5,0-1-0.05-1.48-0.14c-0.37,0.7-0.94,1.27-1.64,1.64 c0.98,0.32,2.03,0.5,3.11,0.5c3.5,0,6.58-1.8,8.37-4.52C20.18,17.5,19.98,17.51,19.78,17.51z"},"children":[]}]},{"name":"path","attribs":{"d":"M7,16l-0.18,0C6.4,14.84,5.3,14,4,14c-1.66,0-3,1.34-3,3s1.34,3,3,3c0.62,0,2.49,0,3,0c1.1,0,2-0.9,2-2 C9,16.9,8.1,16,7,16z"},"children":[{"name":"path","attribs":{"d":"M7,16l-0.18,0C6.4,14.84,5.3,14,4,14c-1.66,0-3,1.34-3,3s1.34,3,3,3c0.62,0,2.49,0,3,0c1.1,0,2-0.9,2-2 C9,16.9,8.1,16,7,16z"},"children":[]}]}]}]}]}]};exports.ic_nights_stay_outline=ic_nights_stay_outline;var ic_nights_stay_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M8.1,14.15C9.77,14.63,11,16.17,11,18c0,0.68-0.19,1.31-0.48,1.87c0.48,0.09,0.97,0.14,1.48,0.14 c1.48,0,2.9-0.41,4.13-1.15c-2.62-0.92-5.23-2.82-6.8-5.86C7.74,9.94,7.78,7.09,8.29,4.9c-2.57,1.33-4.3,4.01-4.3,7.1c0,0,0,0,0,0 c0.01,0,0.01,0,0.02,0C5.66,12,7.18,12.83,8.1,14.15z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M8.1,14.15C9.77,14.63,11,16.17,11,18c0,0.68-0.19,1.31-0.48,1.87c0.48,0.09,0.97,0.14,1.48,0.14 c1.48,0,2.9-0.41,4.13-1.15c-2.62-0.92-5.23-2.82-6.8-5.86C7.74,9.94,7.78,7.09,8.29,4.9c-2.57,1.33-4.3,4.01-4.3,7.1c0,0,0,0,0,0 c0.01,0,0.01,0,0.02,0C5.66,12,7.18,12.83,8.1,14.15z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M19.78,17.51c-2.47,0-6.57-1.33-8.68-5.43C8.77,7.57,10.6,3.6,11.63,2.01C6.27,2.2,1.98,6.59,1.98,12 c0,0.14,0.02,0.28,0.02,0.42C2.61,12.16,3.28,12,3.98,12c0,0,0,0,0,0c0-3.09,1.73-5.77,4.3-7.1C7.78,7.09,7.74,9.94,9.32,13 c1.57,3.04,4.18,4.95,6.8,5.86c-1.23,0.74-2.65,1.15-4.13,1.15c-0.5,0-1-0.05-1.48-0.14c-0.37,0.7-0.94,1.27-1.64,1.64 c0.98,0.32,2.03,0.5,3.11,0.5c3.5,0,6.58-1.8,8.37-4.52C20.18,17.5,19.98,17.51,19.78,17.51z"},"children":[{"name":"path","attribs":{"d":"M19.78,17.51c-2.47,0-6.57-1.33-8.68-5.43C8.77,7.57,10.6,3.6,11.63,2.01C6.27,2.2,1.98,6.59,1.98,12 c0,0.14,0.02,0.28,0.02,0.42C2.61,12.16,3.28,12,3.98,12c0,0,0,0,0,0c0-3.09,1.73-5.77,4.3-7.1C7.78,7.09,7.74,9.94,9.32,13 c1.57,3.04,4.18,4.95,6.8,5.86c-1.23,0.74-2.65,1.15-4.13,1.15c-0.5,0-1-0.05-1.48-0.14c-0.37,0.7-0.94,1.27-1.64,1.64 c0.98,0.32,2.03,0.5,3.11,0.5c3.5,0,6.58-1.8,8.37-4.52C20.18,17.5,19.98,17.51,19.78,17.51z"},"children":[]}]},{"name":"path","attribs":{"d":"M7,16l-0.18,0C6.4,14.84,5.3,14,4,14c-1.66,0-3,1.34-3,3s1.34,3,3,3c0.62,0,2.49,0,3,0c1.1,0,2-0.9,2-2 C9,16.9,8.1,16,7,16z"},"children":[{"name":"path","attribs":{"d":"M7,16l-0.18,0C6.4,14.84,5.3,14,4,14c-1.66,0-3,1.34-3,3s1.34,3,3,3c0.62,0,2.49,0,3,0c1.1,0,2-0.9,2-2 C9,16.9,8.1,16,7,16z"},"children":[]}]}]}]}]}]};exports.ic_nights_stay_twotone=ic_nights_stay_twotone;var ic_no_luggage={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M12.75,9v0.92l1.75,1.75V9H16v4.17l3,3V8c0-1.1-0.9-2-2-2h-2V3c0-0.55-0.45-1-1-1h-4C9.45,2,9,2.45,9,3v3H8.83l3,3H12.75z M10.5,3.5h3V6h-3V3.5z M21.19,21.19L2.81,2.81L1.39,4.22l3.63,3.63C5.02,7.9,5,7.95,5,8v11c0,1.1,0.9,2,2,2c0,0.55,0.45,1,1,1 c0.55,0,1-0.45,1-1h6c0,0.55,0.45,1,1,1s1-0.45,1-1c0.34,0,0.65-0.09,0.93-0.24l1.85,1.85L21.19,21.19z M8,18v-7.17l1.5,1.5V18H8z M12.75,18h-1.5v-3.92l1.5,1.5V18z"},"children":[]}]};exports.ic_no_luggage=ic_no_luggage;var ic_no_luggage_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M16,13.17l-1.5-1.5V9H16V13.17z M19.78,22.61l-1.85-1.85C17.65,20.91,17.34,21,17,21c0,0.55-0.45,1-1,1s-1-0.45-1-1H9 c0,0.55-0.45,1-1,1c-0.55,0-1-0.45-1-1c-1.1,0-2-0.9-2-2V8c0-0.05,0.02-0.1,0.02-0.15L1.39,4.22l1.41-1.41l18.38,18.38 L19.78,22.61z M16.17,19l-3.42-3.42V18h-1.5v-3.92L9.5,12.33V18H8v-7.17l-1-1V19H16.17z M12.75,9h-0.92l0.92,0.92V9z M19,8v8.17 l-2-2V8h-6.17L9.84,7.01L9,6.17V6V3c0-0.55,0.45-1,1-1h4c0.55,0,1,0.45,1,1v3h2C18.1,6,19,6.9,19,8z M10.5,6h3V3.5h-3V6z"},"children":[{"name":"path","attribs":{"d":"M16,13.17l-1.5-1.5V9H16V13.17z M19.78,22.61l-1.85-1.85C17.65,20.91,17.34,21,17,21c0,0.55-0.45,1-1,1s-1-0.45-1-1H9 c0,0.55-0.45,1-1,1c-0.55,0-1-0.45-1-1c-1.1,0-2-0.9-2-2V8c0-0.05,0.02-0.1,0.02-0.15L1.39,4.22l1.41-1.41l18.38,18.38 L19.78,22.61z M16.17,19l-3.42-3.42V18h-1.5v-3.92L9.5,12.33V18H8v-7.17l-1-1V19H16.17z M12.75,9h-0.92l0.92,0.92V9z M19,8v8.17 l-2-2V8h-6.17L9.84,7.01L9,6.17V6V3c0-0.55,0.45-1,1-1h4c0.55,0,1,0.45,1,1v3h2C18.1,6,19,6.9,19,8z M10.5,6h3V3.5h-3V6z"},"children":[]}]}]}]}]}]};exports.ic_no_luggage_outline=ic_no_luggage_outline;var ic_no_luggage_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"g","attribs":{"opacity":".3"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M16.17,19l-3.42-3.42V18h-1.5v-3.92L9.5,12.33V18H8v-7.17l-1-1V19H16.17z M17,8v6.17l-1-1V9h-1.5v2.67l-1.75-1.75V9h-0.92 l-1-1H17z"},"children":[{"name":"path","attribs":{"d":"M16.17,19l-3.42-3.42V18h-1.5v-3.92L9.5,12.33V18H8v-7.17l-1-1V19H16.17z M17,8v6.17l-1-1V9h-1.5v2.67l-1.75-1.75V9h-0.92 l-1-1H17z"},"children":[]}]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M16,13.17l-1.5-1.5V9H16V13.17z M19.78,22.61l-1.85-1.85C17.65,20.91,17.34,21,17,21c0,0.55-0.45,1-1,1s-1-0.45-1-1H9 c0,0.55-0.45,1-1,1c-0.55,0-1-0.45-1-1c-1.1,0-2-0.9-2-2V8c0-0.05,0.02-0.1,0.02-0.15L1.39,4.22l1.41-1.41l18.38,18.38 L19.78,22.61z M16.17,19l-3.42-3.42V18h-1.5v-3.92L9.5,12.33V18H8v-7.17l-1-1V19H16.17z M12.75,9h-0.92l0.92,0.92V9z M19,8v8.17 l-2-2V8h-6.17L9.84,7.01L9,6.17V6V3c0-0.55,0.45-1,1-1h4c0.55,0,1,0.45,1,1v3h2C18.1,6,19,6.9,19,8z M10.5,6h3V3.5h-3V6z"},"children":[{"name":"path","attribs":{"d":"M16,13.17l-1.5-1.5V9H16V13.17z M19.78,22.61l-1.85-1.85C17.65,20.91,17.34,21,17,21c0,0.55-0.45,1-1,1s-1-0.45-1-1H9 c0,0.55-0.45,1-1,1c-0.55,0-1-0.45-1-1c-1.1,0-2-0.9-2-2V8c0-0.05,0.02-0.1,0.02-0.15L1.39,4.22l1.41-1.41l18.38,18.38 L19.78,22.61z M16.17,19l-3.42-3.42V18h-1.5v-3.92L9.5,12.33V18H8v-7.17l-1-1V19H16.17z M12.75,9h-0.92l0.92,0.92V9z M19,8v8.17 l-2-2V8h-6.17L9.84,7.01L9,6.17V6V3c0-0.55,0.45-1,1-1h4c0.55,0,1,0.45,1,1v3h2C18.1,6,19,6.9,19,8z M10.5,6h3V3.5h-3V6z"},"children":[]}]}]}]}]}]};exports.ic_no_luggage_twotone=ic_no_luggage_twotone;var ic_notifications={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M12 22c1.1 0 2-.9 2-2h-4c0 1.1.89 2 2 2zm6-6v-5c0-3.07-1.64-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.63 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2z"},"children":[]}]};exports.ic_notifications=ic_notifications;var ic_notifications_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm6-6v-5c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.64 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2zm-2 1H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6z"},"children":[]}]};exports.ic_notifications_outline=ic_notifications_outline;var ic_notifications_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 6.5c-2.49 0-4 2.02-4 4.5v6h8v-6c0-2.48-1.51-4.5-4-4.5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm6-6v-5c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.64 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2zm-2 1H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6z"},"children":[]}]};exports.ic_notifications_twotone=ic_notifications_twotone;var ic_notifications_active={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7.58 4.08L6.15 2.65C3.75 4.48 2.17 7.3 2.03 10.5h2c.15-2.65 1.51-4.97 3.55-6.42zm12.39 6.42h2c-.15-3.2-1.73-6.02-4.12-7.85l-1.42 1.43c2.02 1.45 3.39 3.77 3.54 6.42zM18 11c0-3.07-1.64-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.63 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2v-5zm-6 11c.14 0 .27-.01.4-.04.65-.14 1.18-.58 1.44-1.18.1-.24.15-.5.15-.78h-4c.01 1.1.9 2 2.01 2z"},"children":[]}]};exports.ic_notifications_active=ic_notifications_active;var ic_notifications_active_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm6-6v-5c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.64 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2zm-2 1H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6zM7.58 4.08L6.15 2.65C3.75 4.48 2.17 7.3 2.03 10.5h2c.15-2.65 1.51-4.97 3.55-6.42zm12.39 6.42h2c-.15-3.2-1.73-6.02-4.12-7.85l-1.42 1.43c2.02 1.45 3.39 3.77 3.54 6.42z"},"children":[]}]};exports.ic_notifications_active_outline=ic_notifications_active_outline;var ic_notifications_active_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 6.5c-2.49 0-4 2.02-4 4.5v6h8v-6c0-2.48-1.51-4.5-4-4.5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm6-11c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.64 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2v-5zm-2 6H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6zM7.58 4.08L6.15 2.65C3.75 4.48 2.17 7.3 2.03 10.5h2c.15-2.65 1.51-4.97 3.55-6.42zm12.39 6.42h2c-.15-3.2-1.73-6.02-4.12-7.85l-1.42 1.43c2.02 1.45 3.39 3.77 3.54 6.42z"},"children":[]}]};exports.ic_notifications_active_twotone=ic_notifications_active_twotone;var ic_notifications_none={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm6-6v-5c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.64 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2zm-2 1H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6z"},"children":[]}]};exports.ic_notifications_none=ic_notifications_none;var ic_notifications_none_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm6-6v-5c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.64 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2zm-2 1H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6z"},"children":[]}]};exports.ic_notifications_none_outline=ic_notifications_none_outline;var ic_notifications_none_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 6.5c-2.49 0-4 2.02-4 4.5v6h8v-6c0-2.48-1.51-4.5-4-4.5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M18 16v-5c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.64 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2zm-2 1H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6zm-4 5c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2z"},"children":[]}]};exports.ic_notifications_none_twotone=ic_notifications_none_twotone;var ic_notifications_off={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 18.69L7.84 6.14 5.27 3.49 4 4.76l2.8 2.8v.01c-.52.99-.8 2.16-.8 3.42v5l-2 2v1h13.73l2 2L21 19.72l-1-1.03zM12 22c1.11 0 2-.89 2-2h-4c0 1.11.89 2 2 2zm6-7.32V11c0-3.08-1.64-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68c-.15.03-.29.08-.42.12-.1.03-.2.07-.3.11h-.01c-.01 0-.01 0-.02.01-.23.09-.46.2-.68.31 0 0-.01 0-.01.01L18 14.68z"},"children":[]}]};exports.ic_notifications_off=ic_notifications_off;var ic_notifications_off_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm0-15.5c2.49 0 4 2.02 4 4.5v.1l2 2V11c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68c-.24.06-.47.15-.69.23l1.64 1.64c.18-.02.36-.05.55-.05zM5.41 3.35L4 4.76l2.81 2.81C6.29 8.57 6 9.74 6 11v5l-2 2v1h14.24l1.74 1.74 1.41-1.41L5.41 3.35zM16 17H8v-6c0-.68.12-1.32.34-1.9L16 16.76V17z"},"children":[]}]};exports.ic_notifications_off_outline=ic_notifications_off_outline;var ic_notifications_off_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M8 17h8v-.24L8.34 9.1C8.12 9.68 8 10.32 8 11v6zm4-10.5c-.19 0-.37.03-.55.06L16 11.1V11c0-2.48-1.51-4.5-4-4.5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm0-15.5c2.49 0 4 2.02 4 4.5v.1l2 2V11c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68c-.24.06-.47.15-.69.23l1.64 1.64c.18-.02.36-.05.55-.05zM5.41 3.35L4 4.76l2.81 2.81C6.29 8.57 6 9.74 6 11v5l-2 2v1h14.24l1.74 1.74 1.41-1.41L5.41 3.35zM16 17H8v-6c0-.68.12-1.32.34-1.9L16 16.76V17z"},"children":[]}]};exports.ic_notifications_off_twotone=ic_notifications_off_twotone;var ic_notifications_paused={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 22c1.1 0 2-.9 2-2h-4c0 1.1.89 2 2 2zm6-6v-5c0-3.07-1.64-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.63 5.36 6 7.93 6 11v5l-2 2v1h16v-1l-2-2zm-3.5-6.2l-2.8 3.4h2.8V15h-5v-1.8l2.8-3.4H9.5V8h5v1.8z"},"children":[]}]};exports.ic_notifications_paused=ic_notifications_paused;var ic_notifications_paused_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9.5 9.8h2.8l-2.8 3.4V15h5v-1.8h-2.8l2.8-3.4V8h-5zM18 16v-5c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.64 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2zm-2 1H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6zm-4 5c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2z"},"children":[]}]};exports.ic_notifications_paused_outline=ic_notifications_paused_outline;var ic_notifications_paused_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 6.5c-2.49 0-4 2.02-4 4.5v6h8v-6c0-2.48-1.51-4.5-4-4.5zm2.5 3.3l-2.8 3.4h2.8V15h-5v-1.8l2.8-3.4H9.5V8h5v1.8z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M9.5 9.8h2.8l-2.8 3.4V15h5v-1.8h-2.8l2.8-3.4V8h-5zM18 16v-5c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.64 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2zm-2 1H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6zm-4 5c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2z"},"children":[]}]};exports.ic_notifications_paused_twotone=ic_notifications_paused_twotone;var ic_outdoor_grill={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M17,22c1.66,0,3-1.34,3-3s-1.34-3-3-3c-1.3,0-2.4,0.84-2.82,2H9.14l1.99-3.06C11.42,14.98,11.71,15,12,15 s0.58-0.02,0.87-0.06l1.02,1.57c0.42-0.53,0.96-0.95,1.6-1.21l-0.6-0.93C17.31,13.27,19,10.84,19,8H5c0,2.84,1.69,5.27,4.12,6.37 l-3.95,6.08c-0.3,0.46-0.17,1.08,0.29,1.38h0c0.46,0.3,1.08,0.17,1.38-0.29l1-1.55h6.34C14.6,21.16,15.7,22,17,22z M17,18 c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1s-1-0.45-1-1C16,18.45,16.45,18,17,18z"},"children":[{"name":"path","attribs":{"d":"M17,22c1.66,0,3-1.34,3-3s-1.34-3-3-3c-1.3,0-2.4,0.84-2.82,2H9.14l1.99-3.06C11.42,14.98,11.71,15,12,15 s0.58-0.02,0.87-0.06l1.02,1.57c0.42-0.53,0.96-0.95,1.6-1.21l-0.6-0.93C17.31,13.27,19,10.84,19,8H5c0,2.84,1.69,5.27,4.12,6.37 l-3.95,6.08c-0.3,0.46-0.17,1.08,0.29,1.38h0c0.46,0.3,1.08,0.17,1.38-0.29l1-1.55h6.34C14.6,21.16,15.7,22,17,22z M17,18 c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1s-1-0.45-1-1C16,18.45,16.45,18,17,18z"},"children":[]}]},{"name":"path","attribs":{"d":"M9.41,7h1c0.15-1.15,0.23-1.64-0.89-2.96C9.1,3.54,8.84,3.27,9.06,2H8.07C7.86,3.11,8.1,4.05,8.96,4.96 C9.18,5.2,9.75,5.63,9.41,7z"},"children":[{"name":"path","attribs":{"d":"M9.41,7h1c0.15-1.15,0.23-1.64-0.89-2.96C9.1,3.54,8.84,3.27,9.06,2H8.07C7.86,3.11,8.1,4.05,8.96,4.96 C9.18,5.2,9.75,5.63,9.41,7z"},"children":[]}]},{"name":"path","attribs":{"d":"M11.89,7h1c0.15-1.15,0.23-1.64-0.89-2.96c-0.42-0.5-0.68-0.78-0.46-2.04h-0.99c-0.21,1.11,0.03,2.05,0.89,2.96 C11.67,5.2,12.24,5.63,11.89,7z"},"children":[{"name":"path","attribs":{"d":"M11.89,7h1c0.15-1.15,0.23-1.64-0.89-2.96c-0.42-0.5-0.68-0.78-0.46-2.04h-0.99c-0.21,1.11,0.03,2.05,0.89,2.96 C11.67,5.2,12.24,5.63,11.89,7z"},"children":[]}]},{"name":"path","attribs":{"d":"M14.41,7h1c0.15-1.15,0.23-1.64-0.89-2.96C14.1,3.54,13.84,3.27,14.06,2h-0.99c-0.21,1.11,0.03,2.05,0.89,2.96 C14.18,5.2,14.75,5.63,14.41,7z"},"children":[{"name":"path","attribs":{"d":"M14.41,7h1c0.15-1.15,0.23-1.64-0.89-2.96C14.1,3.54,13.84,3.27,14.06,2h-0.99c-0.21,1.11,0.03,2.05,0.89,2.96 C14.18,5.2,14.75,5.63,14.41,7z"},"children":[]}]}]}]}]}]};exports.ic_outdoor_grill=ic_outdoor_grill;var ic_outdoor_grill_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M17,22c1.66,0,3-1.34,3-3s-1.34-3-3-3c-1.3,0-2.4,0.84-2.82,2H9.14l1.99-3.06C11.42,14.98,11.71,15,12,15 s0.58-0.02,0.87-0.06l1.02,1.57c0.42-0.53,0.96-0.95,1.6-1.21l-0.6-0.93C17.31,13.27,19,10.84,19,8H5c0,2.84,1.69,5.27,4.12,6.37 l-3.95,6.08c-0.3,0.46-0.17,1.08,0.29,1.38h0c0.46,0.3,1.08,0.17,1.38-0.29l1-1.55h6.34C14.6,21.16,15.7,22,17,22z M17,18 c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1s-1-0.45-1-1C16,18.45,16.45,18,17,18z M7.42,10h9.16c-0.77,1.76-2.54,3-4.58,3 S8.19,11.76,7.42,10z"},"children":[{"name":"path","attribs":{"d":"M17,22c1.66,0,3-1.34,3-3s-1.34-3-3-3c-1.3,0-2.4,0.84-2.82,2H9.14l1.99-3.06C11.42,14.98,11.71,15,12,15 s0.58-0.02,0.87-0.06l1.02,1.57c0.42-0.53,0.96-0.95,1.6-1.21l-0.6-0.93C17.31,13.27,19,10.84,19,8H5c0,2.84,1.69,5.27,4.12,6.37 l-3.95,6.08c-0.3,0.46-0.17,1.08,0.29,1.38h0c0.46,0.3,1.08,0.17,1.38-0.29l1-1.55h6.34C14.6,21.16,15.7,22,17,22z M17,18 c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1s-1-0.45-1-1C16,18.45,16.45,18,17,18z M7.42,10h9.16c-0.77,1.76-2.54,3-4.58,3 S8.19,11.76,7.42,10z"},"children":[]}]},{"name":"path","attribs":{"d":"M9.41,7h1c0.15-1.15,0.23-1.64-0.89-2.96C9.1,3.54,8.84,3.27,9.06,2H8.07C7.86,3.11,8.1,4.05,8.96,4.96 C9.18,5.2,9.75,5.63,9.41,7z"},"children":[{"name":"path","attribs":{"d":"M9.41,7h1c0.15-1.15,0.23-1.64-0.89-2.96C9.1,3.54,8.84,3.27,9.06,2H8.07C7.86,3.11,8.1,4.05,8.96,4.96 C9.18,5.2,9.75,5.63,9.41,7z"},"children":[]}]},{"name":"path","attribs":{"d":"M11.89,7h1c0.15-1.15,0.23-1.64-0.89-2.96c-0.42-0.5-0.68-0.78-0.46-2.04h-0.99c-0.21,1.11,0.03,2.05,0.89,2.96 C11.67,5.2,12.24,5.63,11.89,7z"},"children":[{"name":"path","attribs":{"d":"M11.89,7h1c0.15-1.15,0.23-1.64-0.89-2.96c-0.42-0.5-0.68-0.78-0.46-2.04h-0.99c-0.21,1.11,0.03,2.05,0.89,2.96 C11.67,5.2,12.24,5.63,11.89,7z"},"children":[]}]},{"name":"path","attribs":{"d":"M14.41,7h1c0.15-1.15,0.23-1.64-0.89-2.96C14.1,3.54,13.84,3.27,14.06,2h-0.99c-0.21,1.11,0.03,2.05,0.89,2.96 C14.18,5.2,14.75,5.63,14.41,7z"},"children":[{"name":"path","attribs":{"d":"M14.41,7h1c0.15-1.15,0.23-1.64-0.89-2.96C14.1,3.54,13.84,3.27,14.06,2h-0.99c-0.21,1.11,0.03,2.05,0.89,2.96 C14.18,5.2,14.75,5.63,14.41,7z"},"children":[]}]}]}]}]}]};exports.ic_outdoor_grill_outline=ic_outdoor_grill_outline;var ic_outdoor_grill_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M16.58,10H7.42c0.77,1.76,2.54,3,4.58,3S15.81,11.76,16.58,10z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M16.58,10H7.42c0.77,1.76,2.54,3,4.58,3S15.81,11.76,16.58,10z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M17,22c1.66,0,3-1.34,3-3s-1.34-3-3-3c-1.3,0-2.4,0.84-2.82,2H9.14l1.99-3.06C11.42,14.98,11.71,15,12,15 s0.58-0.02,0.87-0.06l1.02,1.57c0.42-0.53,0.96-0.95,1.6-1.21l-0.6-0.93C17.31,13.27,19,10.84,19,8H5c0,2.84,1.69,5.27,4.12,6.37 l-3.95,6.08c-0.3,0.46-0.17,1.08,0.29,1.38h0c0.46,0.3,1.08,0.17,1.38-0.29l1-1.55h6.34C14.6,21.16,15.7,22,17,22z M17,18 c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1s-1-0.45-1-1C16,18.45,16.45,18,17,18z M7.42,10h9.16c-0.77,1.76-2.54,3-4.58,3 S8.19,11.76,7.42,10z"},"children":[{"name":"path","attribs":{"d":"M17,22c1.66,0,3-1.34,3-3s-1.34-3-3-3c-1.3,0-2.4,0.84-2.82,2H9.14l1.99-3.06C11.42,14.98,11.71,15,12,15 s0.58-0.02,0.87-0.06l1.02,1.57c0.42-0.53,0.96-0.95,1.6-1.21l-0.6-0.93C17.31,13.27,19,10.84,19,8H5c0,2.84,1.69,5.27,4.12,6.37 l-3.95,6.08c-0.3,0.46-0.17,1.08,0.29,1.38h0c0.46,0.3,1.08,0.17,1.38-0.29l1-1.55h6.34C14.6,21.16,15.7,22,17,22z M17,18 c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1s-1-0.45-1-1C16,18.45,16.45,18,17,18z M7.42,10h9.16c-0.77,1.76-2.54,3-4.58,3 S8.19,11.76,7.42,10z"},"children":[]}]},{"name":"circle","attribs":{"cx":"17","cy":"19","opacity":".3","r":"1"},"children":[{"name":"circle","attribs":{"cx":"17","cy":"19","opacity":".3","r":"1"},"children":[]}]},{"name":"path","attribs":{"d":"M9.41,7h1c0.15-1.15,0.23-1.64-0.89-2.96C9.1,3.54,8.84,3.27,9.06,2H8.07C7.86,3.11,8.1,4.05,8.96,4.96 C9.18,5.2,9.75,5.63,9.41,7z"},"children":[{"name":"path","attribs":{"d":"M9.41,7h1c0.15-1.15,0.23-1.64-0.89-2.96C9.1,3.54,8.84,3.27,9.06,2H8.07C7.86,3.11,8.1,4.05,8.96,4.96 C9.18,5.2,9.75,5.63,9.41,7z"},"children":[]}]},{"name":"path","attribs":{"d":"M11.89,7h1c0.15-1.15,0.23-1.64-0.89-2.96c-0.42-0.5-0.68-0.78-0.46-2.04h-0.99c-0.21,1.11,0.03,2.05,0.89,2.96 C11.67,5.2,12.24,5.63,11.89,7z"},"children":[{"name":"path","attribs":{"d":"M11.89,7h1c0.15-1.15,0.23-1.64-0.89-2.96c-0.42-0.5-0.68-0.78-0.46-2.04h-0.99c-0.21,1.11,0.03,2.05,0.89,2.96 C11.67,5.2,12.24,5.63,11.89,7z"},"children":[]}]},{"name":"path","attribs":{"d":"M14.41,7h1c0.15-1.15,0.23-1.64-0.89-2.96C14.1,3.54,13.84,3.27,14.06,2h-0.99c-0.21,1.11,0.03,2.05,0.89,2.96 C14.18,5.2,14.75,5.63,14.41,7z"},"children":[{"name":"path","attribs":{"d":"M14.41,7h1c0.15-1.15,0.23-1.64-0.89-2.96C14.1,3.54,13.84,3.27,14.06,2h-0.99c-0.21,1.11,0.03,2.05,0.89,2.96 C14.18,5.2,14.75,5.63,14.41,7z"},"children":[]}]}]}]}]}]};exports.ic_outdoor_grill_twotone=ic_outdoor_grill_twotone;var ic_pages={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M3 5v6h5L7 7l4 1V3H5c-1.1 0-2 .9-2 2zm5 8H3v6c0 1.1.9 2 2 2h6v-5l-4 1 1-4zm9 4l-4-1v5h6c1.1 0 2-.9 2-2v-6h-5l1 4zm2-14h-6v5l4-1-1 4h5V5c0-1.1-.9-2-2-2z"},"children":[]}]};exports.ic_pages=ic_pages;var ic_pages_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-6 2h6v6h-3l1-4-4 1V5zM5 5h6v3L7 7l1 4H5V5zm6 14H5v-6h3l-1 4 4-1v3zm8 0h-6v-3l4 1-1-4h3v6zm-4.37-4.37L12 13.72l-2.63.91.91-2.63-.91-2.63 2.63.91 2.63-.91-.91 2.63.91 2.63z"},"children":[]}]};exports.ic_pages_outline=ic_pages_outline;var ic_pages_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 7l4 1V5H5v6h3zm1 6H5v6h6v-3l-4 1zm9 4l-4-1v3h6v-6h-3zm-4-9l4-1-1 4h3V5h-6z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5 5h6v3L7 7l1 4H5V5zm6 14H5v-6h3l-1 4 4-1v3zm-1.63-4.37l.91-2.63-.91-2.63 2.63.91 2.63-.91-.91 2.63.91 2.63-2.63-.91-2.63.91zM19 19h-6v-3l4 1-1-4h3v6zm0-8h-3l1-4-4 1V5h6v6z"},"children":[]}]};exports.ic_pages_twotone=ic_pages_twotone;var ic_party_mode={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 4h-3.17L15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-8 3c1.63 0 3.06.79 3.98 2H12c-1.66 0-3 1.34-3 3 0 .35.07.69.18 1H7.1c-.06-.32-.1-.66-.1-1 0-2.76 2.24-5 5-5zm0 10c-1.63 0-3.06-.79-3.98-2H12c1.66 0 3-1.34 3-3 0-.35-.07-.69-.18-1h2.08c.07.32.1.66.1 1 0 2.76-2.24 5-5 5z"},"children":[]}]};exports.ic_party_mode=ic_party_mode;var ic_party_mode_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M20 4h-3.17L15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h4.05l.59-.65L9.88 4h4.24l1.24 1.35.59.65H20v12zM9 12c0-1.66 1.34-3 3-3h3.98c-.92-1.21-2.35-2-3.98-2-2.76 0-5 2.24-5 5 0 .34.04.68.1 1h2.08c-.11-.31-.18-.65-.18-1zm6 0c0 1.66-1.34 3-3 3H8.02c.92 1.21 2.35 2 3.98 2 2.76 0 5-2.24 5-5 0-.34-.03-.68-.1-1h-2.08c.11.31.18.65.18 1z"},"children":[]}]};exports.ic_party_mode_outline=ic_party_mode_outline;var ic_party_mode_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.95 6l-.59-.65L14.12 4H9.88L8.65 5.35l-.6.65H4v12h16V6h-4.05zM7 12c0-2.76 2.24-5 5-5 1.63 0 3.06.79 3.98 2H12c-1.66 0-3 1.34-3 3 0 .35.07.69.18 1H7.1c-.06-.32-.1-.66-.1-1zm10 0c0 2.76-2.24 5-5 5-1.63 0-3.06-.79-3.98-2H12c1.66 0 3-1.34 3-3 0-.35-.07-.69-.18-1h2.08c.07.32.1.66.1 1z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M20 4h-3.17L15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h4.05l.59-.65L9.88 4h4.24l1.24 1.35.59.65H20v12zM9 12c0-1.66 1.34-3 3-3h3.98c-.92-1.21-2.35-2-3.98-2-2.76 0-5 2.24-5 5 0 .34.04.68.1 1h2.08c-.11-.31-.18-.65-.18-1zm6 0c0 1.66-1.34 3-3 3H8.02c.92 1.21 2.35 2 3.98 2 2.76 0 5-2.24 5-5 0-.34-.03-.68-.1-1h-2.08c.11.31.18.65.18 1z"},"children":[]}]};exports.ic_party_mode_twotone=ic_party_mode_twotone;var ic_people={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5c-1.66 0-3 1.34-3 3s1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5C6.34 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V19h14v-2.5c0-2.33-4.67-3.5-7-3.5zm8 0c-.29 0-.62.02-.97.05 1.16.84 1.97 1.97 1.97 3.45V19h6v-2.5c0-2.33-4.67-3.5-7-3.5z"},"children":[]}]};exports.ic_people=ic_people;var ic_people_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9 13.75c-2.34 0-7 1.17-7 3.5V19h14v-1.75c0-2.33-4.66-3.5-7-3.5zM4.34 17c.84-.58 2.87-1.25 4.66-1.25s3.82.67 4.66 1.25H4.34zM9 12c1.93 0 3.5-1.57 3.5-3.5S10.93 5 9 5 5.5 6.57 5.5 8.5 7.07 12 9 12zm0-5c.83 0 1.5.67 1.5 1.5S9.83 10 9 10s-1.5-.67-1.5-1.5S8.17 7 9 7zm7.04 6.81c1.16.84 1.96 1.96 1.96 3.44V19h4v-1.75c0-2.02-3.5-3.17-5.96-3.44zM15 12c1.93 0 3.5-1.57 3.5-3.5S16.93 5 15 5c-.54 0-1.04.13-1.5.35.63.89 1 1.98 1 3.15s-.37 2.26-1 3.15c.46.22.96.35 1.5.35z"},"children":[]}]};exports.ic_people_outline=ic_people_outline;var ic_people_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"9","cy":"8.5","opacity":".3","r":"1.5"},"children":[]},{"name":"path","attribs":{"d":"M4.34 17h9.32c-.84-.58-2.87-1.25-4.66-1.25s-3.82.67-4.66 1.25z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M9 12c1.93 0 3.5-1.57 3.5-3.5S10.93 5 9 5 5.5 6.57 5.5 8.5 7.07 12 9 12zm0-5c.83 0 1.5.67 1.5 1.5S9.83 10 9 10s-1.5-.67-1.5-1.5S8.17 7 9 7zm0 6.75c-2.34 0-7 1.17-7 3.5V19h14v-1.75c0-2.33-4.66-3.5-7-3.5zM4.34 17c.84-.58 2.87-1.25 4.66-1.25s3.82.67 4.66 1.25H4.34zm11.7-3.19c1.16.84 1.96 1.96 1.96 3.44V19h4v-1.75c0-2.02-3.5-3.17-5.96-3.44zM15 12c1.93 0 3.5-1.57 3.5-3.5S16.93 5 15 5c-.54 0-1.04.13-1.5.35.63.89 1 1.98 1 3.15s-.37 2.26-1 3.15c.46.22.96.35 1.5.35z"},"children":[]}]};exports.ic_people_twotone=ic_people_twotone;var ic_people_alt={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M16.67,13.13C18.04,14.06,19,15.32,19,17v3h4v-3 C23,14.82,19.43,13.53,16.67,13.13z","fill-rule":"evenodd"},"children":[{"name":"path","attribs":{"d":"M16.67,13.13C18.04,14.06,19,15.32,19,17v3h4v-3 C23,14.82,19.43,13.53,16.67,13.13z","fill-rule":"evenodd"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"cx":"9","cy":"8","fill-rule":"evenodd","r":"4"},"children":[{"name":"circle","attribs":{"cx":"9","cy":"8","fill-rule":"evenodd","r":"4"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M15,12c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4c-0.47,0-0.91,0.1-1.33,0.24 C14.5,5.27,15,6.58,15,8s-0.5,2.73-1.33,3.76C14.09,11.9,14.53,12,15,12z","fill-rule":"evenodd"},"children":[{"name":"path","attribs":{"d":"M15,12c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4c-0.47,0-0.91,0.1-1.33,0.24 C14.5,5.27,15,6.58,15,8s-0.5,2.73-1.33,3.76C14.09,11.9,14.53,12,15,12z","fill-rule":"evenodd"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M9,13c-2.67,0-8,1.34-8,4v3h16v-3C17,14.34,11.67,13,9,13z","fill-rule":"evenodd"},"children":[{"name":"path","attribs":{"d":"M9,13c-2.67,0-8,1.34-8,4v3h16v-3C17,14.34,11.67,13,9,13z","fill-rule":"evenodd"},"children":[]}]}]}]}]}]}]}]};exports.ic_people_alt=ic_people_alt;var ic_people_alt_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M16.67,13.13C18.04,14.06,19,15.32,19,17v3h4v-3C23,14.82,19.43,13.53,16.67,13.13z"},"children":[{"name":"path","attribs":{"d":"M16.67,13.13C18.04,14.06,19,15.32,19,17v3h4v-3C23,14.82,19.43,13.53,16.67,13.13z"},"children":[]}]},{"name":"path","attribs":{"d":"M15,12c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4c-0.47,0-0.91,0.1-1.33,0.24C14.5,5.27,15,6.58,15,8s-0.5,2.73-1.33,3.76 C14.09,11.9,14.53,12,15,12z"},"children":[{"name":"path","attribs":{"d":"M15,12c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4c-0.47,0-0.91,0.1-1.33,0.24C14.5,5.27,15,6.58,15,8s-0.5,2.73-1.33,3.76 C14.09,11.9,14.53,12,15,12z"},"children":[]}]},{"name":"path","attribs":{"d":"M9,12c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4S5,5.79,5,8C5,10.21,6.79,12,9,12z M9,6c1.1,0,2,0.9,2,2c0,1.1-0.9,2-2,2 S7,9.1,7,8C7,6.9,7.9,6,9,6z"},"children":[{"name":"path","attribs":{"d":"M9,12c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4S5,5.79,5,8C5,10.21,6.79,12,9,12z M9,6c1.1,0,2,0.9,2,2c0,1.1-0.9,2-2,2 S7,9.1,7,8C7,6.9,7.9,6,9,6z"},"children":[]}]},{"name":"path","attribs":{"d":"M9,13c-2.67,0-8,1.34-8,4v3h16v-3C17,14.34,11.67,13,9,13z M15,18H3l0-0.99C3.2,16.29,6.3,15,9,15s5.8,1.29,6,2V18z"},"children":[{"name":"path","attribs":{"d":"M9,13c-2.67,0-8,1.34-8,4v3h16v-3C17,14.34,11.67,13,9,13z M15,18H3l0-0.99C3.2,16.29,6.3,15,9,15s5.8,1.29,6,2V18z"},"children":[]}]}]}]}]}]};exports.ic_people_alt_outline=ic_people_alt_outline;var ic_people_alt_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"cx":"9","cy":"8","opacity":".3","r":"2"},"children":[{"name":"circle","attribs":{"cx":"9","cy":"8","opacity":".3","r":"2"},"children":[]}]},{"name":"path","attribs":{"d":"M9,15c-2.7,0-5.8,1.29-6,2.01L3,18h12v-1C14.8,16.29,11.7,15,9,15z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M9,15c-2.7,0-5.8,1.29-6,2.01L3,18h12v-1C14.8,16.29,11.7,15,9,15z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M16.67,13.13C18.04,14.06,19,15.32,19,17v3h4v-3C23,14.82,19.43,13.53,16.67,13.13z"},"children":[{"name":"path","attribs":{"d":"M16.67,13.13C18.04,14.06,19,15.32,19,17v3h4v-3C23,14.82,19.43,13.53,16.67,13.13z"},"children":[]}]},{"name":"path","attribs":{"d":"M15,12c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4c-0.47,0-0.91,0.1-1.33,0.24C14.5,5.27,15,6.58,15,8s-0.5,2.73-1.33,3.76 C14.09,11.9,14.53,12,15,12z"},"children":[{"name":"path","attribs":{"d":"M15,12c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4c-0.47,0-0.91,0.1-1.33,0.24C14.5,5.27,15,6.58,15,8s-0.5,2.73-1.33,3.76 C14.09,11.9,14.53,12,15,12z"},"children":[]}]},{"name":"path","attribs":{"d":"M9,12c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4S5,5.79,5,8C5,10.21,6.79,12,9,12z M9,6c1.1,0,2,0.9,2,2c0,1.1-0.9,2-2,2 S7,9.1,7,8C7,6.9,7.9,6,9,6z"},"children":[{"name":"path","attribs":{"d":"M9,12c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4S5,5.79,5,8C5,10.21,6.79,12,9,12z M9,6c1.1,0,2,0.9,2,2c0,1.1-0.9,2-2,2 S7,9.1,7,8C7,6.9,7.9,6,9,6z"},"children":[]}]},{"name":"path","attribs":{"d":"M9,13c-2.67,0-8,1.34-8,4v3h16v-3C17,14.34,11.67,13,9,13z M15,18H3l0-0.99C3.2,16.29,6.3,15,9,15s5.8,1.29,6,2V18z"},"children":[{"name":"path","attribs":{"d":"M9,13c-2.67,0-8,1.34-8,4v3h16v-3C17,14.34,11.67,13,9,13z M15,18H3l0-0.99C3.2,16.29,6.3,15,9,15s5.8,1.29,6,2V18z"},"children":[]}]}]}]}]}]};exports.ic_people_alt_twotone=ic_people_alt_twotone;var ic_people_outline_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9 13.75c-2.34 0-7 1.17-7 3.5V19h14v-1.75c0-2.33-4.66-3.5-7-3.5zM4.34 17c.84-.58 2.87-1.25 4.66-1.25s3.82.67 4.66 1.25H4.34zM9 12c1.93 0 3.5-1.57 3.5-3.5S10.93 5 9 5 5.5 6.57 5.5 8.5 7.07 12 9 12zm0-5c.83 0 1.5.67 1.5 1.5S9.83 10 9 10s-1.5-.67-1.5-1.5S8.17 7 9 7zm7.04 6.81c1.16.84 1.96 1.96 1.96 3.44V19h4v-1.75c0-2.02-3.5-3.17-5.96-3.44zM15 12c1.93 0 3.5-1.57 3.5-3.5S16.93 5 15 5c-.54 0-1.04.13-1.5.35.63.89 1 1.98 1 3.15s-.37 2.26-1 3.15c.46.22.96.35 1.5.35z"},"children":[]}]};exports.ic_people_outline_outline=ic_people_outline_outline;var ic_people_outline_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"9","cy":"8.5","opacity":".3","r":"1.5"},"children":[]},{"name":"path","attribs":{"d":"M4.34 17h9.32c-.84-.58-2.87-1.25-4.66-1.25s-3.82.67-4.66 1.25z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M9 12c1.93 0 3.5-1.57 3.5-3.5S10.93 5 9 5 5.5 6.57 5.5 8.5 7.07 12 9 12zm0-5c.83 0 1.5.67 1.5 1.5S9.83 10 9 10s-1.5-.67-1.5-1.5S8.17 7 9 7zm0 6.75c-2.34 0-7 1.17-7 3.5V19h14v-1.75c0-2.33-4.66-3.5-7-3.5zM4.34 17c.84-.58 2.87-1.25 4.66-1.25s3.82.67 4.66 1.25H4.34zm11.7-3.19c1.16.84 1.96 1.96 1.96 3.44V19h4v-1.75c0-2.02-3.5-3.17-5.96-3.44zM15 12c1.93 0 3.5-1.57 3.5-3.5S16.93 5 15 5c-.54 0-1.04.13-1.5.35.63.89 1 1.98 1 3.15s-.37 2.26-1 3.15c.46.22.96.35 1.5.35z"},"children":[]}]};exports.ic_people_outline_twotone=ic_people_outline_twotone;var ic_person={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"},"children":[]}]};exports.ic_person=ic_person;var ic_person_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0 10c2.7 0 5.8 1.29 6 2H6c.23-.72 3.31-2 6-2m0-12C9.79 4 8 5.79 8 8s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 10c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"},"children":[]}]};exports.ic_person_outline=ic_person_outline;var ic_person_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 16c-2.69 0-5.77 1.28-6 2h12c-.2-.71-3.3-2-6-2z","opacity":".3"},"children":[]},{"name":"circle","attribs":{"cx":"12","cy":"8","opacity":".3","r":"2"},"children":[]},{"name":"path","attribs":{"d":"M12 14c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4zm-6 4c.22-.72 3.31-2 6-2 2.7 0 5.8 1.29 6 2H6zm6-6c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2z"},"children":[]}]};exports.ic_person_twotone=ic_person_twotone;var ic_person_add={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm-9-2V7H4v3H1v2h3v3h2v-3h3v-2H6zm9 4c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"},"children":[]}]};exports.ic_person_add=ic_person_add;var ic_person_add_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm0 8c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4zm-6 4c.22-.72 3.31-2 6-2 2.7 0 5.8 1.29 6 2H9zm-3-3v-3h3v-2H6V7H4v3H1v2h3v3z"},"children":[]}]};exports.ic_person_add_outline=ic_person_add_outline;var ic_person_add_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15 16c-2.69 0-5.77 1.28-6 2h12c-.2-.71-3.3-2-6-2z","opacity":".3"},"children":[]},{"name":"circle","attribs":{"cx":"15","cy":"8","opacity":".3","r":"2"},"children":[]},{"name":"path","attribs":{"d":"M15 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm0 8c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4zm-6 4c.22-.72 3.31-2 6-2 2.7 0 5.8 1.29 6 2H9zm-3-3v-3h3v-2H6V7H4v3H1v2h3v3z"},"children":[]}]};exports.ic_person_add_twotone=ic_person_add_twotone;var ic_person_add_alt={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M13,8c0-2.21-1.79-4-4-4S5,5.79,5,8s1.79,4,4,4S13,10.21,13,8z M11,8c0,1.1-0.9,2-2,2S7,9.1,7,8s0.9-2,2-2S11,6.9,11,8z M1,18v2h16v-2c0-2.66-5.33-4-8-4S1,15.34,1,18z M3,18c0.2-0.71,3.3-2,6-2c2.69,0,5.78,1.28,6,2H3z M20,15v-3h3v-2h-3V7h-2v3h-3v2 h3v3H20z"},"children":[{"name":"path","attribs":{"d":"M13,8c0-2.21-1.79-4-4-4S5,5.79,5,8s1.79,4,4,4S13,10.21,13,8z M11,8c0,1.1-0.9,2-2,2S7,9.1,7,8s0.9-2,2-2S11,6.9,11,8z M1,18v2h16v-2c0-2.66-5.33-4-8-4S1,15.34,1,18z M3,18c0.2-0.71,3.3-2,6-2c2.69,0,5.78,1.28,6,2H3z M20,15v-3h3v-2h-3V7h-2v3h-3v2 h3v3H20z"},"children":[]}]}]}]};exports.ic_person_add_alt=ic_person_add_alt;var ic_person_add_alt_1={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M13,8c0-2.21-1.79-4-4-4S5,5.79,5,8s1.79,4,4,4S13,10.21,13,8z M15,10v2h3v3h2v-3h3v-2h-3V7h-2v3H15z M1,18v2h16v-2 c0-2.66-5.33-4-8-4S1,15.34,1,18z"},"children":[{"name":"path","attribs":{"d":"M13,8c0-2.21-1.79-4-4-4S5,5.79,5,8s1.79,4,4,4S13,10.21,13,8z M15,10v2h3v3h2v-3h3v-2h-3V7h-2v3H15z M1,18v2h16v-2 c0-2.66-5.33-4-8-4S1,15.34,1,18z"},"children":[]}]}]}]};exports.ic_person_add_alt_1=ic_person_add_alt_1;var ic_person_add_alt_1_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M13,8c0-2.21-1.79-4-4-4S5,5.79,5,8s1.79,4,4,4S13,10.21,13,8z M11,8c0,1.1-0.9,2-2,2S7,9.1,7,8s0.9-2,2-2S11,6.9,11,8z M1,18v2h16v-2c0-2.66-5.33-4-8-4S1,15.34,1,18z M3,18c0.2-0.71,3.3-2,6-2c2.69,0,5.78,1.28,6,2H3z M20,15v-3h3v-2h-3V7h-2v3h-3v2 h3v3H20z"},"children":[{"name":"path","attribs":{"d":"M13,8c0-2.21-1.79-4-4-4S5,5.79,5,8s1.79,4,4,4S13,10.21,13,8z M11,8c0,1.1-0.9,2-2,2S7,9.1,7,8s0.9-2,2-2S11,6.9,11,8z M1,18v2h16v-2c0-2.66-5.33-4-8-4S1,15.34,1,18z M3,18c0.2-0.71,3.3-2,6-2c2.69,0,5.78,1.28,6,2H3z M20,15v-3h3v-2h-3V7h-2v3h-3v2 h3v3H20z"},"children":[]}]}]}]};exports.ic_person_add_alt_1_outline=ic_person_add_alt_1_outline;var ic_person_add_alt_1_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"cx":"9","cy":"8","opacity":".3","r":"2"},"children":[{"name":"circle","attribs":{"cx":"9","cy":"8","opacity":".3","r":"2"},"children":[]}]},{"name":"path","attribs":{"d":"M9,16c-2.7,0-5.8,1.29-6,2h12C14.78,17.28,11.69,16,9,16z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M9,16c-2.7,0-5.8,1.29-6,2h12C14.78,17.28,11.69,16,9,16z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M9,14c-2.67,0-8,1.34-8,4v2h16v-2C17,15.34,11.67,14,9,14z M3,18c0.2-0.71,3.3-2,6-2c2.69,0,5.78,1.28,6,2H3z"},"children":[{"name":"path","attribs":{"d":"M9,14c-2.67,0-8,1.34-8,4v2h16v-2C17,15.34,11.67,14,9,14z M3,18c0.2-0.71,3.3-2,6-2c2.69,0,5.78,1.28,6,2H3z"},"children":[]}]},{"name":"polygon","attribs":{"points":"20,10 20,7 18,7 18,10 15,10 15,12 18,12 18,15 20,15 20,12 23,12 23,10"},"children":[{"name":"polygon","attribs":{"points":"20,10 20,7 18,7 18,10 15,10 15,12 18,12 18,15 20,15 20,12 23,12 23,10"},"children":[]}]},{"name":"path","attribs":{"d":"M9,12c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4S5,5.79,5,8C5,10.21,6.79,12,9,12z M9,6c1.1,0,2,0.9,2,2c0,1.1-0.9,2-2,2 S7,9.1,7,8C7,6.9,7.9,6,9,6z"},"children":[{"name":"path","attribs":{"d":"M9,12c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4S5,5.79,5,8C5,10.21,6.79,12,9,12z M9,6c1.1,0,2,0.9,2,2c0,1.1-0.9,2-2,2 S7,9.1,7,8C7,6.9,7.9,6,9,6z"},"children":[]}]}]}]}]}]};exports.ic_person_add_alt_1_twotone=ic_person_add_alt_1_twotone;var ic_person_outline_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 5.9c1.16 0 2.1.94 2.1 2.1s-.94 2.1-2.1 2.1S9.9 9.16 9.9 8s.94-2.1 2.1-2.1m0 9c2.97 0 6.1 1.46 6.1 2.1v1.1H5.9V17c0-.64 3.13-2.1 6.1-2.1M12 4C9.79 4 8 5.79 8 8s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 9c-2.67 0-8 1.34-8 4v3h16v-3c0-2.66-5.33-4-8-4z"},"children":[]}]};exports.ic_person_outline_outline=ic_person_outline_outline;var ic_person_outline_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"12","cy":"8","opacity":".3","r":"2.1"},"children":[]},{"name":"path","attribs":{"d":"M12 14.9c-2.97 0-6.1 1.46-6.1 2.1v1.1h12.2V17c0-.64-3.13-2.1-6.1-2.1z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 13c-2.67 0-8 1.34-8 4v3h16v-3c0-2.66-5.33-4-8-4zm6.1 5.1H5.9V17c0-.64 3.13-2.1 6.1-2.1s6.1 1.46 6.1 2.1v1.1zM12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6.1c1.16 0 2.1.94 2.1 2.1 0 1.16-.94 2.1-2.1 2.1S9.9 9.16 9.9 8c0-1.16.94-2.1 2.1-2.1z"},"children":[]}]};exports.ic_person_outline_twotone=ic_person_outline_twotone;var ic_person_remove={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M14,8c0-2.21-1.79-4-4-4S6,5.79,6,8s1.79,4,4,4S14,10.21,14,8z M17,10v2h6v-2H17z M2,18v2h16v-2c0-2.66-5.33-4-8-4 S2,15.34,2,18z"},"children":[{"name":"path","attribs":{"d":"M14,8c0-2.21-1.79-4-4-4S6,5.79,6,8s1.79,4,4,4S14,10.21,14,8z M17,10v2h6v-2H17z M2,18v2h16v-2c0-2.66-5.33-4-8-4 S2,15.34,2,18z"},"children":[]}]}]}]};exports.ic_person_remove=ic_person_remove;var ic_person_remove_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M14,8c0-2.21-1.79-4-4-4C7.79,4,6,5.79,6,8c0,2.21,1.79,4,4,4C12.21,12,14,10.21,14,8z M12,8c0,1.1-0.9,2-2,2 c-1.1,0-2-0.9-2-2s0.9-2,2-2C11.1,6,12,6.9,12,8z"},"children":[{"name":"path","attribs":{"d":"M14,8c0-2.21-1.79-4-4-4C7.79,4,6,5.79,6,8c0,2.21,1.79,4,4,4C12.21,12,14,10.21,14,8z M12,8c0,1.1-0.9,2-2,2 c-1.1,0-2-0.9-2-2s0.9-2,2-2C11.1,6,12,6.9,12,8z"},"children":[]}]},{"name":"path","attribs":{"d":"M2,18v2h16v-2c0-2.66-5.33-4-8-4C7.33,14,2,15.34,2,18z M4,18c0.2-0.71,3.3-2,6-2c2.69,0,5.77,1.28,6,2H4z"},"children":[{"name":"path","attribs":{"d":"M2,18v2h16v-2c0-2.66-5.33-4-8-4C7.33,14,2,15.34,2,18z M4,18c0.2-0.71,3.3-2,6-2c2.69,0,5.77,1.28,6,2H4z"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"6","x":"17","y":"10"},"children":[{"name":"rect","attribs":{"height":"2","width":"6","x":"17","y":"10"},"children":[]}]}]}]}]}]};exports.ic_person_remove_outline=ic_person_remove_outline;var ic_person_remove_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M10,16c2.69,0,5.77,1.28,6,2H4C4.2,17.29,7.3,16,10,16z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M10,16c2.69,0,5.77,1.28,6,2H4C4.2,17.29,7.3,16,10,16z","opacity":".3"},"children":[]}]},{"name":"circle","attribs":{"cx":"10","cy":"8","opacity":".3","r":"2"},"children":[{"name":"circle","attribs":{"cx":"10","cy":"8","opacity":".3","r":"2"},"children":[]}]},{"name":"path","attribs":{"d":"M14,8c0-2.21-1.79-4-4-4C7.79,4,6,5.79,6,8c0,2.21,1.79,4,4,4C12.21,12,14,10.21,14,8z M12,8c0,1.1-0.9,2-2,2 c-1.1,0-2-0.9-2-2s0.9-2,2-2C11.1,6,12,6.9,12,8z"},"children":[{"name":"path","attribs":{"d":"M14,8c0-2.21-1.79-4-4-4C7.79,4,6,5.79,6,8c0,2.21,1.79,4,4,4C12.21,12,14,10.21,14,8z M12,8c0,1.1-0.9,2-2,2 c-1.1,0-2-0.9-2-2s0.9-2,2-2C11.1,6,12,6.9,12,8z"},"children":[]}]},{"name":"path","attribs":{"d":"M2,18v2h16v-2c0-2.66-5.33-4-8-4C7.33,14,2,15.34,2,18z M4,18c0.2-0.71,3.3-2,6-2c2.69,0,5.77,1.28,6,2H4z"},"children":[{"name":"path","attribs":{"d":"M2,18v2h16v-2c0-2.66-5.33-4-8-4C7.33,14,2,15.34,2,18z M4,18c0.2-0.71,3.3-2,6-2c2.69,0,5.77,1.28,6,2H4z"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"6","x":"17","y":"10"},"children":[{"name":"rect","attribs":{"height":"2","width":"6","x":"17","y":"10"},"children":[]}]}]}]}]}]};exports.ic_person_remove_twotone=ic_person_remove_twotone;var ic_person_remove_alt_1={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M14,8c0-2.21-1.79-4-4-4S6,5.79,6,8s1.79,4,4,4S14,10.21,14,8z M17,10v2h6v-2H17z M2,18v2h16v-2c0-2.66-5.33-4-8-4 S2,15.34,2,18z"},"children":[{"name":"path","attribs":{"d":"M14,8c0-2.21-1.79-4-4-4S6,5.79,6,8s1.79,4,4,4S14,10.21,14,8z M17,10v2h6v-2H17z M2,18v2h16v-2c0-2.66-5.33-4-8-4 S2,15.34,2,18z"},"children":[]}]}]}]};exports.ic_person_remove_alt_1=ic_person_remove_alt_1;var ic_person_remove_alt_1_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M14,8c0-2.21-1.79-4-4-4C7.79,4,6,5.79,6,8c0,2.21,1.79,4,4,4C12.21,12,14,10.21,14,8z M12,8c0,1.1-0.9,2-2,2 c-1.1,0-2-0.9-2-2s0.9-2,2-2C11.1,6,12,6.9,12,8z"},"children":[{"name":"path","attribs":{"d":"M14,8c0-2.21-1.79-4-4-4C7.79,4,6,5.79,6,8c0,2.21,1.79,4,4,4C12.21,12,14,10.21,14,8z M12,8c0,1.1-0.9,2-2,2 c-1.1,0-2-0.9-2-2s0.9-2,2-2C11.1,6,12,6.9,12,8z"},"children":[]}]},{"name":"path","attribs":{"d":"M2,18v2h16v-2c0-2.66-5.33-4-8-4C7.33,14,2,15.34,2,18z M4,18c0.2-0.71,3.3-2,6-2c2.69,0,5.77,1.28,6,2H4z"},"children":[{"name":"path","attribs":{"d":"M2,18v2h16v-2c0-2.66-5.33-4-8-4C7.33,14,2,15.34,2,18z M4,18c0.2-0.71,3.3-2,6-2c2.69,0,5.77,1.28,6,2H4z"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"6","x":"17","y":"10"},"children":[{"name":"rect","attribs":{"height":"2","width":"6","x":"17","y":"10"},"children":[]}]}]}]}]}]};exports.ic_person_remove_alt_1_outline=ic_person_remove_alt_1_outline;var ic_person_remove_alt_1_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M10,16c2.69,0,5.77,1.28,6,2H4C4.2,17.29,7.3,16,10,16z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M10,16c2.69,0,5.77,1.28,6,2H4C4.2,17.29,7.3,16,10,16z","opacity":".3"},"children":[]}]},{"name":"circle","attribs":{"cx":"10","cy":"8","opacity":".3","r":"2"},"children":[{"name":"circle","attribs":{"cx":"10","cy":"8","opacity":".3","r":"2"},"children":[]}]},{"name":"path","attribs":{"d":"M14,8c0-2.21-1.79-4-4-4C7.79,4,6,5.79,6,8c0,2.21,1.79,4,4,4C12.21,12,14,10.21,14,8z M12,8c0,1.1-0.9,2-2,2 c-1.1,0-2-0.9-2-2s0.9-2,2-2C11.1,6,12,6.9,12,8z"},"children":[{"name":"path","attribs":{"d":"M14,8c0-2.21-1.79-4-4-4C7.79,4,6,5.79,6,8c0,2.21,1.79,4,4,4C12.21,12,14,10.21,14,8z M12,8c0,1.1-0.9,2-2,2 c-1.1,0-2-0.9-2-2s0.9-2,2-2C11.1,6,12,6.9,12,8z"},"children":[]}]},{"name":"path","attribs":{"d":"M2,18v2h16v-2c0-2.66-5.33-4-8-4C7.33,14,2,15.34,2,18z M4,18c0.2-0.71,3.3-2,6-2c2.69,0,5.77,1.28,6,2H4z"},"children":[{"name":"path","attribs":{"d":"M2,18v2h16v-2c0-2.66-5.33-4-8-4C7.33,14,2,15.34,2,18z M4,18c0.2-0.71,3.3-2,6-2c2.69,0,5.77,1.28,6,2H4z"},"children":[]}]},{"name":"rect","attribs":{"height":"2","width":"6","x":"17","y":"10"},"children":[{"name":"rect","attribs":{"height":"2","width":"6","x":"17","y":"10"},"children":[]}]}]}]}]}]};exports.ic_person_remove_alt_1_twotone=ic_person_remove_alt_1_twotone;var ic_plus_one={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 8H8v4H4v2h4v4h2v-4h4v-2h-4zm4.5-1.92V7.9l2.5-.5V18h2V5z"},"children":[]}]};exports.ic_plus_one=ic_plus_one;var ic_plus_one_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 8H8v4H4v2h4v4h2v-4h4v-2h-4V8zm4.5-1.92V7.9l2.5-.5V18h2V5l-4.5 1.08z"},"children":[]}]};exports.ic_plus_one_outline=ic_plus_one_outline;var ic_plus_one_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M10 8H8v4H4v2h4v4h2v-4h4v-2h-4V8zm4.5-1.92V7.9l2.5-.5V18h2V5l-4.5 1.08z"},"children":[]}]};exports.ic_plus_one_twotone=ic_plus_one_twotone;var ic_poll={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z"},"children":[]}]};exports.ic_poll=ic_poll;var ic_poll_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM7 10h2v7H7zm4-3h2v10h-2zm4 6h2v4h-2z"},"children":[]}]};exports.ic_poll_outline=ic_poll_outline;var ic_poll_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 19h14V5H5v14zm10-6h2v4h-2v-4zm-4-6h2v10h-2V7zm-4 3h2v7H7v-7z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM7 10h2v7H7zm4-3h2v10h-2zm4 6h2v4h-2z"},"children":[]}]};exports.ic_poll_twotone=ic_poll_twotone;var ic_precision_manufacturing_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M19.93,8.35l-3.6,1.68L14,7.7V6.3l2.33-2.33l3.6,1.68c0.38,0.18,0.82,0.01,1-0.36c0.18-0.38,0.01-0.82-0.36-1l-3.92-1.83 c-0.38-0.18-0.83-0.1-1.13,0.2L13.78,4.4C13.6,4.16,13.32,4,13,4c-0.55,0-1,0.45-1,1v1H8.82C8.4,4.84,7.3,4,6,4C4.34,4,3,5.34,3,7 c0,1.1,0.6,2.05,1.48,2.58L7.08,18H6c-1.1,0-2,0.9-2,2v1h13v-1c0-1.1-0.9-2-2-2h-1.62L8.41,8.77C8.58,8.53,8.72,8.28,8.82,8H12v1 c0,0.55,0.45,1,1,1c0.32,0,0.6-0.16,0.78-0.4l1.74,1.74c0.3,0.3,0.75,0.38,1.13,0.2l3.92-1.83c0.38-0.18,0.54-0.62,0.36-1 C20.75,8.34,20.31,8.17,19.93,8.35z M6,8C5.45,8,5,7.55,5,7c0-0.55,0.45-1,1-1s1,0.45,1,1C7,7.55,6.55,8,6,8z M11.11,18H9.17 l-2.46-8h0.1L11.11,18z"},"children":[{"name":"path","attribs":{"d":"M19.93,8.35l-3.6,1.68L14,7.7V6.3l2.33-2.33l3.6,1.68c0.38,0.18,0.82,0.01,1-0.36c0.18-0.38,0.01-0.82-0.36-1l-3.92-1.83 c-0.38-0.18-0.83-0.1-1.13,0.2L13.78,4.4C13.6,4.16,13.32,4,13,4c-0.55,0-1,0.45-1,1v1H8.82C8.4,4.84,7.3,4,6,4C4.34,4,3,5.34,3,7 c0,1.1,0.6,2.05,1.48,2.58L7.08,18H6c-1.1,0-2,0.9-2,2v1h13v-1c0-1.1-0.9-2-2-2h-1.62L8.41,8.77C8.58,8.53,8.72,8.28,8.82,8H12v1 c0,0.55,0.45,1,1,1c0.32,0,0.6-0.16,0.78-0.4l1.74,1.74c0.3,0.3,0.75,0.38,1.13,0.2l3.92-1.83c0.38-0.18,0.54-0.62,0.36-1 C20.75,8.34,20.31,8.17,19.93,8.35z M6,8C5.45,8,5,7.55,5,7c0-0.55,0.45-1,1-1s1,0.45,1,1C7,7.55,6.55,8,6,8z M11.11,18H9.17 l-2.46-8h0.1L11.11,18z"},"children":[]}]}]}]};exports.ic_precision_manufacturing_outline=ic_precision_manufacturing_outline;var ic_precision_manufacturing_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"opacity":".3","points":"6.71,10 9.17,18 11.11,18 6.81,10"},"children":[{"name":"polygon","attribs":{"opacity":".3","points":"6.71,10 9.17,18 11.11,18 6.81,10"},"children":[]}]},{"name":"circle","attribs":{"cx":"6","cy":"7","opacity":".3","r":"1"},"children":[{"name":"circle","attribs":{"cx":"6","cy":"7","opacity":".3","r":"1"},"children":[]}]},{"name":"path","attribs":{"d":"M19.93,8.35l-3.6,1.68L14,7.7V6.3l2.33-2.33l3.6,1.68c0.38,0.18,0.82,0.01,1-0.36c0.18-0.38,0.01-0.82-0.36-1l-3.92-1.83 c-0.38-0.18-0.83-0.1-1.13,0.2L13.78,4.4C13.6,4.16,13.32,4,13,4c-0.55,0-1,0.45-1,1v1H8.82C8.4,4.84,7.3,4,6,4C4.34,4,3,5.34,3,7 c0,1.1,0.6,2.05,1.48,2.58L7.08,18H6c-1.1,0-2,0.9-2,2v1h13v-1c0-1.1-0.9-2-2-2h-1.62L8.41,8.77C8.58,8.53,8.72,8.28,8.82,8H12v1 c0,0.55,0.45,1,1,1c0.32,0,0.6-0.16,0.78-0.4l1.74,1.74c0.3,0.3,0.75,0.38,1.13,0.2l3.92-1.83c0.38-0.18,0.54-0.62,0.36-1 C20.75,8.34,20.31,8.17,19.93,8.35z M6,8C5.45,8,5,7.55,5,7c0-0.55,0.45-1,1-1s1,0.45,1,1C7,7.55,6.55,8,6,8z M11.11,18H9.17 l-2.46-8h0.1L11.11,18z"},"children":[{"name":"path","attribs":{"d":"M19.93,8.35l-3.6,1.68L14,7.7V6.3l2.33-2.33l3.6,1.68c0.38,0.18,0.82,0.01,1-0.36c0.18-0.38,0.01-0.82-0.36-1l-3.92-1.83 c-0.38-0.18-0.83-0.1-1.13,0.2L13.78,4.4C13.6,4.16,13.32,4,13,4c-0.55,0-1,0.45-1,1v1H8.82C8.4,4.84,7.3,4,6,4C4.34,4,3,5.34,3,7 c0,1.1,0.6,2.05,1.48,2.58L7.08,18H6c-1.1,0-2,0.9-2,2v1h13v-1c0-1.1-0.9-2-2-2h-1.62L8.41,8.77C8.58,8.53,8.72,8.28,8.82,8H12v1 c0,0.55,0.45,1,1,1c0.32,0,0.6-0.16,0.78-0.4l1.74,1.74c0.3,0.3,0.75,0.38,1.13,0.2l3.92-1.83c0.38-0.18,0.54-0.62,0.36-1 C20.75,8.34,20.31,8.17,19.93,8.35z M6,8C5.45,8,5,7.55,5,7c0-0.55,0.45-1,1-1s1,0.45,1,1C7,7.55,6.55,8,6,8z M11.11,18H9.17 l-2.46-8h0.1L11.11,18z"},"children":[]}]}]}]}]}]};exports.ic_precision_manufacturing_twotone=ic_precision_manufacturing_twotone;var ic_psychology={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M13,8.57c-0.79,0-1.43,0.64-1.43,1.43s0.64,1.43,1.43,1.43s1.43-0.64,1.43-1.43S13.79,8.57,13,8.57z"},"children":[{"name":"path","attribs":{"d":"M13,8.57c-0.79,0-1.43,0.64-1.43,1.43s0.64,1.43,1.43,1.43s1.43-0.64,1.43-1.43S13.79,8.57,13,8.57z"},"children":[]}]},{"name":"path","attribs":{"d":"M13,3C9.25,3,6.2,5.94,6.02,9.64L4.1,12.2C3.85,12.53,4.09,13,4.5,13H6v3c0,1.1,0.9,2,2,2h1v3h7v-4.68 c2.36-1.12,4-3.53,4-6.32C20,6.13,16.87,3,13,3z M16,10c0,0.13-0.01,0.26-0.02,0.39l0.83,0.66c0.08,0.06,0.1,0.16,0.05,0.25 l-0.8,1.39c-0.05,0.09-0.16,0.12-0.24,0.09l-0.99-0.4c-0.21,0.16-0.43,0.29-0.67,0.39L14,13.83c-0.01,0.1-0.1,0.17-0.2,0.17h-1.6 c-0.1,0-0.18-0.07-0.2-0.17l-0.15-1.06c-0.25-0.1-0.47-0.23-0.68-0.39l-0.99,0.4c-0.09,0.03-0.2,0-0.25-0.09l-0.8-1.39 c-0.05-0.08-0.03-0.19,0.05-0.25l0.84-0.66C10.01,10.26,10,10.13,10,10c0-0.13,0.02-0.27,0.04-0.39L9.19,8.95 c-0.08-0.06-0.1-0.16-0.05-0.26l0.8-1.38c0.05-0.09,0.15-0.12,0.24-0.09l1,0.4c0.2-0.15,0.43-0.29,0.67-0.39l0.15-1.06 C12.02,6.07,12.1,6,12.2,6h1.6c0.1,0,0.18,0.07,0.2,0.17l0.15,1.06c0.24,0.1,0.46,0.23,0.67,0.39l1-0.4c0.09-0.03,0.2,0,0.24,0.09 l0.8,1.38c0.05,0.09,0.03,0.2-0.05,0.26l-0.85,0.66C15.99,9.73,16,9.86,16,10z"},"children":[{"name":"path","attribs":{"d":"M13,3C9.25,3,6.2,5.94,6.02,9.64L4.1,12.2C3.85,12.53,4.09,13,4.5,13H6v3c0,1.1,0.9,2,2,2h1v3h7v-4.68 c2.36-1.12,4-3.53,4-6.32C20,6.13,16.87,3,13,3z M16,10c0,0.13-0.01,0.26-0.02,0.39l0.83,0.66c0.08,0.06,0.1,0.16,0.05,0.25 l-0.8,1.39c-0.05,0.09-0.16,0.12-0.24,0.09l-0.99-0.4c-0.21,0.16-0.43,0.29-0.67,0.39L14,13.83c-0.01,0.1-0.1,0.17-0.2,0.17h-1.6 c-0.1,0-0.18-0.07-0.2-0.17l-0.15-1.06c-0.25-0.1-0.47-0.23-0.68-0.39l-0.99,0.4c-0.09,0.03-0.2,0-0.25-0.09l-0.8-1.39 c-0.05-0.08-0.03-0.19,0.05-0.25l0.84-0.66C10.01,10.26,10,10.13,10,10c0-0.13,0.02-0.27,0.04-0.39L9.19,8.95 c-0.08-0.06-0.1-0.16-0.05-0.26l0.8-1.38c0.05-0.09,0.15-0.12,0.24-0.09l1,0.4c0.2-0.15,0.43-0.29,0.67-0.39l0.15-1.06 C12.02,6.07,12.1,6,12.2,6h1.6c0.1,0,0.18,0.07,0.2,0.17l0.15,1.06c0.24,0.1,0.46,0.23,0.67,0.39l1-0.4c0.09-0.03,0.2,0,0.24,0.09 l0.8,1.38c0.05,0.09,0.03,0.2-0.05,0.26l-0.85,0.66C15.99,9.73,16,9.86,16,10z"},"children":[]}]}]}]}]}]};exports.ic_psychology=ic_psychology;var ic_psychology_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M15.82,7.22l-1,0.4c-0.21-0.16-0.43-0.29-0.67-0.39L14,6.17C13.98,6.07,13.9,6,13.8,6h-1.6c-0.1,0-0.18,0.07-0.19,0.17 l-0.15,1.06c-0.24,0.1-0.47,0.23-0.67,0.39l-1-0.4c-0.09-0.03-0.2,0-0.24,0.09l-0.8,1.38c-0.05,0.09-0.03,0.2,0.05,0.26l0.85,0.66 C10.02,9.73,10,9.87,10,10c0,0.13,0.01,0.26,0.03,0.39l-0.84,0.66c-0.08,0.06-0.1,0.17-0.05,0.25l0.8,1.39 c0.05,0.09,0.15,0.12,0.25,0.09l0.99-0.4c0.21,0.16,0.43,0.29,0.68,0.39L12,13.83c0.02,0.1,0.1,0.17,0.2,0.17h1.6 c0.1,0,0.18-0.07,0.2-0.17l0.15-1.06c0.24-0.1,0.47-0.23,0.67-0.39l0.99,0.4c0.09,0.04,0.2,0,0.24-0.09l0.8-1.39 c0.05-0.09,0.03-0.19-0.05-0.25l-0.83-0.66C15.99,10.26,16,10.13,16,10c0-0.14-0.01-0.27-0.03-0.39l0.85-0.66 c0.08-0.06,0.1-0.17,0.05-0.26l-0.8-1.38C16.02,7.22,15.91,7.19,15.82,7.22z M13,11.43c-0.79,0-1.43-0.64-1.43-1.43 S12.21,8.57,13,8.57s1.43,0.64,1.43,1.43S13.79,11.43,13,11.43z"},"children":[{"name":"path","attribs":{"d":"M15.82,7.22l-1,0.4c-0.21-0.16-0.43-0.29-0.67-0.39L14,6.17C13.98,6.07,13.9,6,13.8,6h-1.6c-0.1,0-0.18,0.07-0.19,0.17 l-0.15,1.06c-0.24,0.1-0.47,0.23-0.67,0.39l-1-0.4c-0.09-0.03-0.2,0-0.24,0.09l-0.8,1.38c-0.05,0.09-0.03,0.2,0.05,0.26l0.85,0.66 C10.02,9.73,10,9.87,10,10c0,0.13,0.01,0.26,0.03,0.39l-0.84,0.66c-0.08,0.06-0.1,0.17-0.05,0.25l0.8,1.39 c0.05,0.09,0.15,0.12,0.25,0.09l0.99-0.4c0.21,0.16,0.43,0.29,0.68,0.39L12,13.83c0.02,0.1,0.1,0.17,0.2,0.17h1.6 c0.1,0,0.18-0.07,0.2-0.17l0.15-1.06c0.24-0.1,0.47-0.23,0.67-0.39l0.99,0.4c0.09,0.04,0.2,0,0.24-0.09l0.8-1.39 c0.05-0.09,0.03-0.19-0.05-0.25l-0.83-0.66C15.99,10.26,16,10.13,16,10c0-0.14-0.01-0.27-0.03-0.39l0.85-0.66 c0.08-0.06,0.1-0.17,0.05-0.26l-0.8-1.38C16.02,7.22,15.91,7.19,15.82,7.22z M13,11.43c-0.79,0-1.43-0.64-1.43-1.43 S12.21,8.57,13,8.57s1.43,0.64,1.43,1.43S13.79,11.43,13,11.43z"},"children":[]}]},{"name":"path","attribs":{"d":"M19.94,9.06c-0.43-3.27-3.23-5.86-6.53-6.05C13.27,3,13.14,3,13,3C9.47,3,6.57,5.61,6.08,9l-1.93,3.48 C3.74,13.14,4.22,14,5,14h1v2c0,1.1,0.9,2,2,2h1v3h7v-4.68C18.62,15.07,20.35,12.24,19.94,9.06z M14.89,14.63L14,15.05V19h-3v-3H8 v-4H6.7l1.33-2.33C8.21,7.06,10.35,5,13,5c2.76,0,5,2.24,5,5C18,12.09,16.71,13.88,14.89,14.63z"},"children":[{"name":"path","attribs":{"d":"M19.94,9.06c-0.43-3.27-3.23-5.86-6.53-6.05C13.27,3,13.14,3,13,3C9.47,3,6.57,5.61,6.08,9l-1.93,3.48 C3.74,13.14,4.22,14,5,14h1v2c0,1.1,0.9,2,2,2h1v3h7v-4.68C18.62,15.07,20.35,12.24,19.94,9.06z M14.89,14.63L14,15.05V19h-3v-3H8 v-4H6.7l1.33-2.33C8.21,7.06,10.35,5,13,5c2.76,0,5,2.24,5,5C18,12.09,16.71,13.88,14.89,14.63z"},"children":[]}]}]}]}]}]};exports.ic_psychology_outline=ic_psychology_outline;var ic_psychology_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M13,5c-2.65,0-4.79,2.06-4.97,4.67L6.7,12H8v4h3v3h3v-3.95l0.89-0.43C16.71,13.88,18,12.09,18,10 C18,7.24,15.76,5,13,5z M16.82,8.95l-0.85,0.66C15.99,9.73,16,9.86,16,10c0,0.13-0.01,0.26-0.02,0.39l0.83,0.66 c0.08,0.06,0.1,0.16,0.05,0.25l-0.8,1.39c-0.05,0.09-0.16,0.12-0.24,0.09l-0.99-0.4c-0.21,0.16-0.43,0.29-0.67,0.39L14,13.83 c-0.01,0.1-0.1,0.17-0.2,0.17h-1.6c-0.1,0-0.18-0.07-0.2-0.17l-0.15-1.06c-0.25-0.1-0.47-0.23-0.68-0.39l-0.99,0.4 c-0.09,0.03-0.2,0-0.25-0.09l-0.8-1.39c-0.05-0.08-0.03-0.19,0.05-0.25l0.84-0.66C10.01,10.26,10,10.13,10,10 c0-0.13,0.02-0.27,0.04-0.39L9.19,8.95c-0.08-0.06-0.1-0.16-0.05-0.26l0.8-1.38c0.05-0.09,0.15-0.12,0.24-0.09l1,0.4 c0.2-0.15,0.43-0.29,0.67-0.39l0.15-1.06C12.02,6.07,12.1,6,12.2,6h1.6c0.1,0,0.18,0.07,0.2,0.17l0.15,1.06 c0.24,0.1,0.46,0.23,0.67,0.39l1-0.4c0.09-0.03,0.2,0,0.24,0.09l0.8,1.38C16.91,8.78,16.89,8.89,16.82,8.95z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M13,5c-2.65,0-4.79,2.06-4.97,4.67L6.7,12H8v4h3v3h3v-3.95l0.89-0.43C16.71,13.88,18,12.09,18,10 C18,7.24,15.76,5,13,5z M16.82,8.95l-0.85,0.66C15.99,9.73,16,9.86,16,10c0,0.13-0.01,0.26-0.02,0.39l0.83,0.66 c0.08,0.06,0.1,0.16,0.05,0.25l-0.8,1.39c-0.05,0.09-0.16,0.12-0.24,0.09l-0.99-0.4c-0.21,0.16-0.43,0.29-0.67,0.39L14,13.83 c-0.01,0.1-0.1,0.17-0.2,0.17h-1.6c-0.1,0-0.18-0.07-0.2-0.17l-0.15-1.06c-0.25-0.1-0.47-0.23-0.68-0.39l-0.99,0.4 c-0.09,0.03-0.2,0-0.25-0.09l-0.8-1.39c-0.05-0.08-0.03-0.19,0.05-0.25l0.84-0.66C10.01,10.26,10,10.13,10,10 c0-0.13,0.02-0.27,0.04-0.39L9.19,8.95c-0.08-0.06-0.1-0.16-0.05-0.26l0.8-1.38c0.05-0.09,0.15-0.12,0.24-0.09l1,0.4 c0.2-0.15,0.43-0.29,0.67-0.39l0.15-1.06C12.02,6.07,12.1,6,12.2,6h1.6c0.1,0,0.18,0.07,0.2,0.17l0.15,1.06 c0.24,0.1,0.46,0.23,0.67,0.39l1-0.4c0.09-0.03,0.2,0,0.24,0.09l0.8,1.38C16.91,8.78,16.89,8.89,16.82,8.95z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M15.82,7.22l-1,0.4c-0.21-0.16-0.43-0.29-0.67-0.39L14,6.17C13.98,6.07,13.9,6,13.8,6h-1.6c-0.1,0-0.18,0.07-0.19,0.17 l-0.15,1.06c-0.24,0.1-0.47,0.23-0.67,0.39l-1-0.4c-0.09-0.03-0.2,0-0.24,0.09l-0.8,1.38c-0.05,0.09-0.03,0.2,0.05,0.26l0.85,0.66 C10.02,9.73,10,9.87,10,10c0,0.13,0.01,0.26,0.03,0.39l-0.84,0.66c-0.08,0.06-0.1,0.17-0.05,0.25l0.8,1.39 c0.05,0.09,0.15,0.12,0.25,0.09l0.99-0.4c0.21,0.16,0.43,0.29,0.68,0.39L12,13.83c0.02,0.1,0.1,0.17,0.2,0.17h1.6 c0.1,0,0.18-0.07,0.2-0.17l0.15-1.06c0.24-0.1,0.47-0.23,0.67-0.39l0.99,0.4c0.09,0.04,0.2,0,0.24-0.09l0.8-1.39 c0.05-0.09,0.03-0.19-0.05-0.25l-0.83-0.66C15.99,10.26,16,10.13,16,10c0-0.14-0.01-0.27-0.03-0.39l0.85-0.66 c0.08-0.06,0.1-0.17,0.05-0.26l-0.8-1.38C16.02,7.22,15.91,7.19,15.82,7.22z M13,11.43c-0.79,0-1.43-0.64-1.43-1.43 S12.21,8.57,13,8.57s1.43,0.64,1.43,1.43S13.79,11.43,13,11.43z"},"children":[{"name":"path","attribs":{"d":"M15.82,7.22l-1,0.4c-0.21-0.16-0.43-0.29-0.67-0.39L14,6.17C13.98,6.07,13.9,6,13.8,6h-1.6c-0.1,0-0.18,0.07-0.19,0.17 l-0.15,1.06c-0.24,0.1-0.47,0.23-0.67,0.39l-1-0.4c-0.09-0.03-0.2,0-0.24,0.09l-0.8,1.38c-0.05,0.09-0.03,0.2,0.05,0.26l0.85,0.66 C10.02,9.73,10,9.87,10,10c0,0.13,0.01,0.26,0.03,0.39l-0.84,0.66c-0.08,0.06-0.1,0.17-0.05,0.25l0.8,1.39 c0.05,0.09,0.15,0.12,0.25,0.09l0.99-0.4c0.21,0.16,0.43,0.29,0.68,0.39L12,13.83c0.02,0.1,0.1,0.17,0.2,0.17h1.6 c0.1,0,0.18-0.07,0.2-0.17l0.15-1.06c0.24-0.1,0.47-0.23,0.67-0.39l0.99,0.4c0.09,0.04,0.2,0,0.24-0.09l0.8-1.39 c0.05-0.09,0.03-0.19-0.05-0.25l-0.83-0.66C15.99,10.26,16,10.13,16,10c0-0.14-0.01-0.27-0.03-0.39l0.85-0.66 c0.08-0.06,0.1-0.17,0.05-0.26l-0.8-1.38C16.02,7.22,15.91,7.19,15.82,7.22z M13,11.43c-0.79,0-1.43-0.64-1.43-1.43 S12.21,8.57,13,8.57s1.43,0.64,1.43,1.43S13.79,11.43,13,11.43z"},"children":[]}]},{"name":"path","attribs":{"d":"M19.94,9.06c-0.43-3.27-3.23-5.86-6.53-6.05C13.27,3,13.14,3,13,3C9.47,3,6.57,5.61,6.08,9l-1.93,3.48 C3.74,13.14,4.22,14,5,14h1v2c0,1.1,0.9,2,2,2h1v3h7v-4.68C18.62,15.07,20.35,12.24,19.94,9.06z M14.89,14.63L14,15.05V19h-3v-3H8 v-4H6.7l1.33-2.33C8.21,7.06,10.35,5,13,5c2.76,0,5,2.24,5,5C18,12.09,16.71,13.88,14.89,14.63z"},"children":[{"name":"path","attribs":{"d":"M19.94,9.06c-0.43-3.27-3.23-5.86-6.53-6.05C13.27,3,13.14,3,13,3C9.47,3,6.57,5.61,6.08,9l-1.93,3.48 C3.74,13.14,4.22,14,5,14h1v2c0,1.1,0.9,2,2,2h1v3h7v-4.68C18.62,15.07,20.35,12.24,19.94,9.06z M14.89,14.63L14,15.05V19h-3v-3H8 v-4H6.7l1.33-2.33C8.21,7.06,10.35,5,13,5c2.76,0,5,2.24,5,5C18,12.09,16.71,13.88,14.89,14.63z"},"children":[]}]}]}]}]}]};exports.ic_psychology_twotone=ic_psychology_twotone;var ic_public={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z"},"children":[]}]};exports.ic_public=ic_public;var ic_public_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM4 12c0-.61.08-1.21.21-1.78L8.99 15v1c0 1.1.9 2 2 2v1.93C7.06 19.43 4 16.07 4 12zm13.89 5.4c-.26-.81-1-1.4-1.9-1.4h-1v-3c0-.55-.45-1-1-1h-6v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41C17.92 5.77 20 8.65 20 12c0 2.08-.81 3.98-2.11 5.4z"},"children":[]}]};exports.ic_public_outline=ic_public_outline;var ic_public_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M14.99 4.59V5c0 1.1-.9 2-2 2h-2v2c0 .55-.45 1-1 1h-2v2h6c.55 0 1 .45 1 1v3h1c.89 0 1.64.59 1.9 1.4C19.19 15.98 20 14.08 20 12c0-3.35-2.08-6.23-5.01-7.41zM8.99 16v-1l-4.78-4.78C4.08 10.79 4 11.39 4 12c0 4.07 3.06 7.43 6.99 7.93V18c-1.1 0-2-.9-2-2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1.01 17.93C7.06 19.43 4 16.07 4 12c0-.61.08-1.21.21-1.78L8.99 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.53c-.26-.81-1-1.4-1.9-1.4h-1v-3c0-.55-.45-1-1-1h-6v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41C17.92 5.77 20 8.65 20 12c0 2.08-.81 3.98-2.11 5.4z"},"children":[]}]};exports.ic_public_twotone=ic_public_twotone;var ic_public_off={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M11,8.17L6.49,3.66C8.07,2.61,9.96,2,12,2c5.52,0,10,4.48,10,10c0,2.04-0.61,3.93-1.66,5.51l-1.46-1.46 C19.59,14.87,20,13.48,20,12c0-3.35-2.07-6.22-5-7.41V5c0,1.1-0.9,2-2,2h-2V8.17z M21.19,21.19l-1.41,1.41l-2.27-2.27 C15.93,21.39,14.04,22,12,22C6.48,22,2,17.52,2,12c0-2.04,0.61-3.93,1.66-5.51L1.39,4.22l1.41-1.41L21.19,21.19z M11,18 c-1.1,0-2-0.9-2-2v-1l-4.79-4.79C4.08,10.79,4,11.38,4,12c0,4.08,3.05,7.44,7,7.93V18z"},"children":[{"name":"path","attribs":{"d":"M11,8.17L6.49,3.66C8.07,2.61,9.96,2,12,2c5.52,0,10,4.48,10,10c0,2.04-0.61,3.93-1.66,5.51l-1.46-1.46 C19.59,14.87,20,13.48,20,12c0-3.35-2.07-6.22-5-7.41V5c0,1.1-0.9,2-2,2h-2V8.17z M21.19,21.19l-1.41,1.41l-2.27-2.27 C15.93,21.39,14.04,22,12,22C6.48,22,2,17.52,2,12c0-2.04,0.61-3.93,1.66-5.51L1.39,4.22l1.41-1.41L21.19,21.19z M11,18 c-1.1,0-2-0.9-2-2v-1l-4.79-4.79C4.08,10.79,4,11.38,4,12c0,4.08,3.05,7.44,7,7.93V18z"},"children":[]}]}]}]};exports.ic_public_off=ic_public_off;var ic_public_off_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M11,8.17L6.49,3.66C8.07,2.61,9.96,2,12,2c5.52,0,10,4.48,10,10c0,2.04-0.61,3.93-1.66,5.51l-1.46-1.46 C19.59,14.87,20,13.48,20,12c0-3.35-2.07-6.22-5-7.41V5c0,1.1-0.9,2-2,2h-2V8.17z M21.19,21.19l-1.41,1.41l-2.27-2.27 C15.93,21.39,14.04,22,12,22C6.48,22,2,17.52,2,12c0-2.04,0.61-3.93,1.66-5.51L1.39,4.22l1.41-1.41L21.19,21.19z M11,18 c-1.1,0-2-0.9-2-2v-1l-4.79-4.79C4.08,10.79,4,11.38,4,12c0,4.08,3.05,7.44,7,7.93V18z"},"children":[{"name":"path","attribs":{"d":"M11,8.17L6.49,3.66C8.07,2.61,9.96,2,12,2c5.52,0,10,4.48,10,10c0,2.04-0.61,3.93-1.66,5.51l-1.46-1.46 C19.59,14.87,20,13.48,20,12c0-3.35-2.07-6.22-5-7.41V5c0,1.1-0.9,2-2,2h-2V8.17z M21.19,21.19l-1.41,1.41l-2.27-2.27 C15.93,21.39,14.04,22,12,22C6.48,22,2,17.52,2,12c0-2.04,0.61-3.93,1.66-5.51L1.39,4.22l1.41-1.41L21.19,21.19z M11,18 c-1.1,0-2-0.9-2-2v-1l-4.79-4.79C4.08,10.79,4,11.38,4,12c0,4.08,3.05,7.44,7,7.93V18z"},"children":[]}]}]}]};exports.ic_public_off_outline=ic_public_off_outline;var ic_public_off_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]},{"name":"path","attribs":{"d":"M11,8.17l7.88,7.88C19.59,14.87,20,13.48,20,12c0-3.35-2.07-6.22-5-7.41V5c0,1.1-0.9,2-2,2h-2V8.17z M11,18 c-1.1,0-2-0.9-2-2v-1l-4.79-4.79C4.08,10.79,4,11.38,4,12c0,4.08,3.05,7.44,7,7.93V18z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M11,8.17l7.88,7.88C19.59,14.87,20,13.48,20,12c0-3.35-2.07-6.22-5-7.41V5c0,1.1-0.9,2-2,2h-2V8.17z M11,18 c-1.1,0-2-0.9-2-2v-1l-4.79-4.79C4.08,10.79,4,11.38,4,12c0,4.08,3.05,7.44,7,7.93V18z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M11,8.17L6.49,3.66C8.07,2.61,9.96,2,12,2c5.52,0,10,4.48,10,10c0,2.04-0.61,3.93-1.66,5.51l-1.46-1.46 C19.59,14.87,20,13.48,20,12c0-3.35-2.07-6.22-5-7.41V5c0,1.1-0.9,2-2,2h-2V8.17z M21.19,21.19l-1.41,1.41l-2.27-2.27 C15.93,21.39,14.04,22,12,22C6.48,22,2,17.52,2,12c0-2.04,0.61-3.93,1.66-5.51L1.39,4.22l1.41-1.41L21.19,21.19z M11,18 c-1.1,0-2-0.9-2-2v-1l-4.79-4.79C4.08,10.79,4,11.38,4,12c0,4.08,3.05,7.44,7,7.93V18z"},"children":[{"name":"path","attribs":{"d":"M11,8.17L6.49,3.66C8.07,2.61,9.96,2,12,2c5.52,0,10,4.48,10,10c0,2.04-0.61,3.93-1.66,5.51l-1.46-1.46 C19.59,14.87,20,13.48,20,12c0-3.35-2.07-6.22-5-7.41V5c0,1.1-0.9,2-2,2h-2V8.17z M21.19,21.19l-1.41,1.41l-2.27-2.27 C15.93,21.39,14.04,22,12,22C6.48,22,2,17.52,2,12c0-2.04,0.61-3.93,1.66-5.51L1.39,4.22l1.41-1.41L21.19,21.19z M11,18 c-1.1,0-2-0.9-2-2v-1l-4.79-4.79C4.08,10.79,4,11.38,4,12c0,4.08,3.05,7.44,7,7.93V18z"},"children":[]}]}]}]};exports.ic_public_off_twotone=ic_public_off_twotone;var ic_recommend={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"title","attribs":{},"children":[]},{"name":"path","attribs":{"d":"M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm6 9.8a.9.9 0 0 1-.1.5l-2.1 4.9a1.34 1.34 0 0 1-1.3.8H9a2 2 0 0 1-2-2v-5a1.28 1.28 0 0 1 .4-1L12 5l.69.69a1.08 1.08 0 0 1 .3.7v.2L12.41 10H17a1 1 0 0 1 1 1z"},"children":[]}]};exports.ic_recommend=ic_recommend;var ic_reduce_capacity={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M16,4c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S16,5.1,16,4z M20.78,7.58C19.93,7.21,18.99,7,18,7c-0.67,0-1.31,0.1-1.92,0.28 C16.66,7.83,17,8.6,17,9.43V10h5V9.43C22,8.62,21.52,7.9,20.78,7.58z M6,6c1.1,0,2-0.9,2-2S7.1,2,6,2S4,2.9,4,4S4.9,6,6,6z M7.92,7.28C7.31,7.1,6.67,7,6,7C5.01,7,4.07,7.21,3.22,7.58C2.48,7.9,2,8.62,2,9.43V10h5V9.43C7,8.6,7.34,7.83,7.92,7.28z M10,4 c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S10,5.1,10,4z M16,10H8V9.43C8,8.62,8.48,7.9,9.22,7.58C10.07,7.21,11.01,7,12,7 c0.99,0,1.93,0.21,2.78,0.58C15.52,7.9,16,8.62,16,9.43V10z M15,16c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S15,17.1,15,16z M21,22h-8 v-0.57c0-0.81,0.48-1.53,1.22-1.85C15.07,19.21,16.01,19,17,19c0.99,0,1.93,0.21,2.78,0.58C20.52,19.9,21,20.62,21,21.43V22z M5,16 c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S5,17.1,5,16z M11,22H3v-0.57c0-0.81,0.48-1.53,1.22-1.85C5.07,19.21,6.01,19,7,19 c0.99,0,1.93,0.21,2.78,0.58C10.52,19.9,11,20.62,11,21.43V22z M12.75,13v-2h-1.5v2H9l3,3l3-3H12.75z"},"children":[]}]};exports.ic_reduce_capacity=ic_reduce_capacity;var ic_reduce_capacity_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M16,4c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S16,5.1,16,4z M20.78,7.58C19.93,7.21,18.99,7,18,7c-0.67,0-1.31,0.1-1.92,0.28 C16.66,7.83,17,8.6,17,9.43V10h5V9.43C22,8.62,21.52,7.9,20.78,7.58z M6,6c1.1,0,2-0.9,2-2S7.1,2,6,2S4,2.9,4,4S4.9,6,6,6z M7.92,7.28C7.31,7.1,6.67,7,6,7C5.01,7,4.07,7.21,3.22,7.58C2.48,7.9,2,8.62,2,9.43V10h5V9.43C7,8.6,7.34,7.83,7.92,7.28z M10,4 c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S10,5.1,10,4z M16,10H8V9.43C8,8.62,8.48,7.9,9.22,7.58C10.07,7.21,11.01,7,12,7 c0.99,0,1.93,0.21,2.78,0.58C15.52,7.9,16,8.62,16,9.43V10z M15,16c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S15,17.1,15,16z M21,22h-8 v-0.57c0-0.81,0.48-1.53,1.22-1.85C15.07,19.21,16.01,19,17,19c0.99,0,1.93,0.21,2.78,0.58C20.52,19.9,21,20.62,21,21.43V22z M5,16 c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S5,17.1,5,16z M11,22H3v-0.57c0-0.81,0.48-1.53,1.22-1.85C5.07,19.21,6.01,19,7,19 c0.99,0,1.93,0.21,2.78,0.58C10.52,19.9,11,20.62,11,21.43V22z M12.75,13v-2h-1.5v2H9l3,3l3-3H12.75z"},"children":[]}]};exports.ic_reduce_capacity_outline=ic_reduce_capacity_outline;var ic_reduce_capacity_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M16,4c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S16,5.1,16,4z M20.78,7.58C19.93,7.21,18.99,7,18,7c-0.67,0-1.31,0.1-1.92,0.28 C16.66,7.83,17,8.6,17,9.43V10h5V9.43C22,8.62,21.52,7.9,20.78,7.58z M6,6c1.1,0,2-0.9,2-2S7.1,2,6,2S4,2.9,4,4S4.9,6,6,6z M7.92,7.28C7.31,7.1,6.67,7,6,7C5.01,7,4.07,7.21,3.22,7.58C2.48,7.9,2,8.62,2,9.43V10h5V9.43C7,8.6,7.34,7.83,7.92,7.28z M10,4 c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S10,5.1,10,4z M16,10H8V9.43C8,8.62,8.48,7.9,9.22,7.58C10.07,7.21,11.01,7,12,7 c0.99,0,1.93,0.21,2.78,0.58C15.52,7.9,16,8.62,16,9.43V10z M15,16c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S15,17.1,15,16z M21,22h-8 v-0.57c0-0.81,0.48-1.53,1.22-1.85C15.07,19.21,16.01,19,17,19c0.99,0,1.93,0.21,2.78,0.58C20.52,19.9,21,20.62,21,21.43V22z M5,16 c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S5,17.1,5,16z M11,22H3v-0.57c0-0.81,0.48-1.53,1.22-1.85C5.07,19.21,6.01,19,7,19 c0.99,0,1.93,0.21,2.78,0.58C10.52,19.9,11,20.62,11,21.43V22z M12.75,13v-2h-1.5v2H9l3,3l3-3H12.75z"},"children":[]}]};exports.ic_reduce_capacity_twotone=ic_reduce_capacity_twotone;var ic_remove_moderator={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22.27 21.73l-3.54-3.55L5.78 5.23 2.27 1.72 1 2.99 3.01 5H3v6c0 5.55 3.84 10.74 9 12 2.16-.53 4.08-1.76 5.6-3.41L21 23l1.27-1.27zM13 9.92l6.67 6.67C20.51 14.87 21 12.96 21 11V5l-9-4-5.48 2.44L11 7.92l2 2z"},"children":[]}]};exports.ic_remove_moderator=ic_remove_moderator;var ic_sanitizer={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M15.5,6.5C15.5,5.66,17,4,17,4s1.5,1.66,1.5,2.5C18.5,7.33,17.83,8,17,8S15.5,7.33,15.5,6.5z M19.5,15 c1.38,0,2.5-1.12,2.5-2.5c0-1.67-2.5-4.5-2.5-4.5S17,10.83,17,12.5C17,13.88,18.12,15,19.5,15z M13,14h-2v-2H9v2H7v2h2v2h2v-2h2V14z M16,12v10H4V12c0-2.97,2.16-5.43,5-5.91V4H7V2h6c1.13,0,2.15,0.39,2.99,1.01l-1.43,1.43C14.1,4.17,13.57,4,13,4h-2v2.09 C13.84,6.57,16,9.03,16,12z"},"children":[]}]};exports.ic_sanitizer=ic_sanitizer;var ic_sanitizer_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M15.5,6.5C15.5,5.66,17,4,17,4s1.5,1.66,1.5,2.5C18.5,7.33,17.83,8,17,8S15.5,7.33,15.5,6.5z M19.5,15 c1.38,0,2.5-1.12,2.5-2.5c0-1.67-2.5-4.5-2.5-4.5S17,10.83,17,12.5C17,13.88,18.12,15,19.5,15z M13,14h-2v-2H9v2H7v2h2v2h2v-2h2V14z M16,12v8c0,1.1-0.9,2-2,2H6c-1.1,0-2-0.9-2-2v-8c0-2.97,2.16-5.43,5-5.91V4H7V2h6c1.13,0,2.15,0.39,2.99,1.01l-1.43,1.43 C14.1,4.17,13.57,4,13,4h-2v2.09C13.84,6.57,16,9.03,16,12z M14,12c0-2.21-1.79-4-4-4s-4,1.79-4,4v8h8V12z"},"children":[]}]};exports.ic_sanitizer_outline=ic_sanitizer_outline;var ic_sanitizer_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M10,8c-2.21,0-4,1.79-4,4v8h8v-8C14,9.79,12.21,8,10,8z M13,16h-2v2H9v-2H7v-2h2v-2h2v2h2V16z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M15.5,6.5C15.5,5.66,17,4,17,4s1.5,1.66,1.5,2.5C18.5,7.33,17.83,8,17,8S15.5,7.33,15.5,6.5z M19.5,15 c1.38,0,2.5-1.12,2.5-2.5c0-1.67-2.5-4.5-2.5-4.5S17,10.83,17,12.5C17,13.88,18.12,15,19.5,15z M13,14h-2v-2H9v2H7v2h2v2h2v-2h2V14z M16,12v8c0,1.1-0.9,2-2,2H6c-1.1,0-2-0.9-2-2v-8c0-2.97,2.16-5.43,5-5.91V4H7V2h6c1.13,0,2.15,0.39,2.99,1.01l-1.43,1.43 C14.1,4.17,13.57,4,13,4h-2v2.09C13.84,6.57,16,9.03,16,12z M14,12c0-2.21-1.79-4-4-4s-4,1.79-4,4v8h8V12z"},"children":[]}]};exports.ic_sanitizer_twotone=ic_sanitizer_twotone;var ic_school={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 13.18v4L12 21l7-3.82v-4L12 17l-7-3.82zM12 3L1 9l11 6 9-4.91V17h2V9L12 3z"},"children":[]}]};exports.ic_school=ic_school;var ic_school_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 3L1 9l4 2.18v6L12 21l7-3.82v-6l2-1.09V17h2V9L12 3zm6.82 6L12 12.72 5.18 9 12 5.28 18.82 9zM17 15.99l-5 2.73-5-2.73v-3.72L12 15l5-2.73v3.72z"},"children":[]}]};exports.ic_school_outline=ic_school_outline;var ic_school_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M7 12.27v3.72l5 2.73 5-2.73v-3.72L12 15zM5.18 9L12 12.72 18.82 9 12 5.28z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 3L1 9l4 2.18v6L12 21l7-3.82v-6l2-1.09V17h2V9L12 3zm5 12.99l-5 2.73-5-2.73v-3.72L12 15l5-2.73v3.72zm-5-3.27L5.18 9 12 5.28 18.82 9 12 12.72z"},"children":[]}]};exports.ic_school_twotone=ic_school_twotone;var ic_science={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M19.8,18.4L14,10.67V6.5l1.35-1.69C15.61,4.48,15.38,4,14.96,4H9.04C8.62,4,8.39,4.48,8.65,4.81L10,6.5v4.17L4.2,18.4 C3.71,19.06,4.18,20,5,20h14C19.82,20,20.29,19.06,19.8,18.4z"},"children":[{"name":"path","attribs":{"d":"M19.8,18.4L14,10.67V6.5l1.35-1.69C15.61,4.48,15.38,4,14.96,4H9.04C8.62,4,8.39,4.48,8.65,4.81L10,6.5v4.17L4.2,18.4 C3.71,19.06,4.18,20,5,20h14C19.82,20,20.29,19.06,19.8,18.4z"},"children":[]}]}]}]};exports.ic_science=ic_science;var ic_science_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M13,11.33L18,18H6l5-6.67V6h2 M15.96,4H8.04C7.62,4,7.39,4.48,7.65,4.81L9,6.5v4.17L3.2,18.4C2.71,19.06,3.18,20,4,20h16 c0.82,0,1.29-0.94,0.8-1.6L15,10.67V6.5l1.35-1.69C16.61,4.48,16.38,4,15.96,4L15.96,4z"},"children":[{"name":"path","attribs":{"d":"M13,11.33L18,18H6l5-6.67V6h2 M15.96,4H8.04C7.62,4,7.39,4.48,7.65,4.81L9,6.5v4.17L3.2,18.4C2.71,19.06,3.18,20,4,20h16 c0.82,0,1.29-0.94,0.8-1.6L15,10.67V6.5l1.35-1.69C16.61,4.48,16.38,4,15.96,4L15.96,4z"},"children":[]}]}]}]};exports.ic_science_outline=ic_science_outline;var ic_science_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"opacity":".3","points":"13,6 11,6 11,11.33 6,18 18,18 13,11.33"},"children":[{"name":"polygon","attribs":{"opacity":".3","points":"13,6 11,6 11,11.33 6,18 18,18 13,11.33"},"children":[]}]},{"name":"path","attribs":{"d":"M20.8,18.4L15,10.67V6.5l1.35-1.69C16.61,4.48,16.38,4,15.96,4H8.04C7.62,4,7.39,4.48,7.65,4.81L9,6.5v4.17L3.2,18.4 C2.71,19.06,3.18,20,4,20h16C20.82,20,21.29,19.06,20.8,18.4z M6,18l5-6.67V6h2v5.33L18,18H6z"},"children":[{"name":"path","attribs":{"d":"M20.8,18.4L15,10.67V6.5l1.35-1.69C16.61,4.48,16.38,4,15.96,4H8.04C7.62,4,7.39,4.48,7.65,4.81L9,6.5v4.17L3.2,18.4 C2.71,19.06,3.18,20,4,20h16C20.82,20,21.29,19.06,20.8,18.4z M6,18l5-6.67V6h2v5.33L18,18H6z"},"children":[]}]}]}]}]}]};exports.ic_science_twotone=ic_science_twotone;var ic_self_improvement={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"cx":"12","cy":"6","r":"2"},"children":[{"name":"circle","attribs":{"cx":"12","cy":"6","r":"2"},"children":[]}]},{"name":"path","attribs":{"d":"M21,16v-2c-2.24,0-4.16-0.96-5.6-2.68l-1.34-1.6C13.68,9.26,13.12,9,12.53,9h-1.05c-0.59,0-1.15,0.26-1.53,0.72l-1.34,1.6 C7.16,13.04,5.24,14,3,14v2c2.77,0,5.19-1.17,7-3.25V15l-3.88,1.55C5.45,16.82,5,17.48,5,18.21C5,19.2,5.8,20,6.79,20H9v-0.5 c0-1.38,1.12-2.5,2.5-2.5h3c0.28,0,0.5,0.22,0.5,0.5S14.78,18,14.5,18h-3c-0.83,0-1.5,0.67-1.5,1.5V20h7.21 C18.2,20,19,19.2,19,18.21c0-0.73-0.45-1.39-1.12-1.66L14,15v-2.25C15.81,14.83,18.23,16,21,16z"},"children":[{"name":"path","attribs":{"d":"M21,16v-2c-2.24,0-4.16-0.96-5.6-2.68l-1.34-1.6C13.68,9.26,13.12,9,12.53,9h-1.05c-0.59,0-1.15,0.26-1.53,0.72l-1.34,1.6 C7.16,13.04,5.24,14,3,14v2c2.77,0,5.19-1.17,7-3.25V15l-3.88,1.55C5.45,16.82,5,17.48,5,18.21C5,19.2,5.8,20,6.79,20H9v-0.5 c0-1.38,1.12-2.5,2.5-2.5h3c0.28,0,0.5,0.22,0.5,0.5S14.78,18,14.5,18h-3c-0.83,0-1.5,0.67-1.5,1.5V20h7.21 C18.2,20,19,19.2,19,18.21c0-0.73-0.45-1.39-1.12-1.66L14,15v-2.25C15.81,14.83,18.23,16,21,16z"},"children":[]}]}]}]}]}]};exports.ic_self_improvement=ic_self_improvement;var ic_self_improvement_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"cx":"12","cy":"6","r":"2"},"children":[{"name":"circle","attribs":{"cx":"12","cy":"6","r":"2"},"children":[]}]},{"name":"path","attribs":{"d":"M21,16v-2c-2.24,0-4.16-0.96-5.6-2.68l-1.34-1.6C13.68,9.26,13.12,9,12.53,9h-1.05c-0.59,0-1.15,0.26-1.53,0.72l-1.34,1.6 C7.16,13.04,5.24,14,3,14v2c2.77,0,5.19-1.17,7-3.25V15l-3.88,1.55C5.45,16.82,5,17.48,5,18.21C5,19.2,5.8,20,6.79,20H9v-0.5 c0-1.38,1.12-2.5,2.5-2.5h3c0.28,0,0.5,0.22,0.5,0.5S14.78,18,14.5,18h-3c-0.83,0-1.5,0.67-1.5,1.5V20h7.21 C18.2,20,19,19.2,19,18.21c0-0.73-0.45-1.39-1.12-1.66L14,15v-2.25C15.81,14.83,18.23,16,21,16z"},"children":[{"name":"path","attribs":{"d":"M21,16v-2c-2.24,0-4.16-0.96-5.6-2.68l-1.34-1.6C13.68,9.26,13.12,9,12.53,9h-1.05c-0.59,0-1.15,0.26-1.53,0.72l-1.34,1.6 C7.16,13.04,5.24,14,3,14v2c2.77,0,5.19-1.17,7-3.25V15l-3.88,1.55C5.45,16.82,5,17.48,5,18.21C5,19.2,5.8,20,6.79,20H9v-0.5 c0-1.38,1.12-2.5,2.5-2.5h3c0.28,0,0.5,0.22,0.5,0.5S14.78,18,14.5,18h-3c-0.83,0-1.5,0.67-1.5,1.5V20h7.21 C18.2,20,19,19.2,19,18.21c0-0.73-0.45-1.39-1.12-1.66L14,15v-2.25C15.81,14.83,18.23,16,21,16z"},"children":[]}]}]}]}]}]};exports.ic_self_improvement_outline=ic_self_improvement_outline;var ic_self_improvement_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"cx":"12","cy":"6","r":"2"},"children":[{"name":"circle","attribs":{"cx":"12","cy":"6","r":"2"},"children":[]}]},{"name":"path","attribs":{"d":"M21,16v-2c-2.24,0-4.16-0.96-5.6-2.68l-1.34-1.6C13.68,9.26,13.12,9,12.53,9h-1.05c-0.59,0-1.15,0.26-1.53,0.72l-1.34,1.6 C7.16,13.04,5.24,14,3,14v2c2.77,0,5.19-1.17,7-3.25V15l-3.88,1.55C5.45,16.82,5,17.48,5,18.21C5,19.2,5.8,20,6.79,20H9v-0.5 c0-1.38,1.12-2.5,2.5-2.5h3c0.28,0,0.5,0.22,0.5,0.5S14.78,18,14.5,18h-3c-0.83,0-1.5,0.67-1.5,1.5V20h7.21 C18.2,20,19,19.2,19,18.21c0-0.73-0.45-1.39-1.12-1.66L14,15v-2.25C15.81,14.83,18.23,16,21,16z"},"children":[{"name":"path","attribs":{"d":"M21,16v-2c-2.24,0-4.16-0.96-5.6-2.68l-1.34-1.6C13.68,9.26,13.12,9,12.53,9h-1.05c-0.59,0-1.15,0.26-1.53,0.72l-1.34,1.6 C7.16,13.04,5.24,14,3,14v2c2.77,0,5.19-1.17,7-3.25V15l-3.88,1.55C5.45,16.82,5,17.48,5,18.21C5,19.2,5.8,20,6.79,20H9v-0.5 c0-1.38,1.12-2.5,2.5-2.5h3c0.28,0,0.5,0.22,0.5,0.5S14.78,18,14.5,18h-3c-0.83,0-1.5,0.67-1.5,1.5V20h7.21 C18.2,20,19,19.2,19,18.21c0-0.73-0.45-1.39-1.12-1.66L14,15v-2.25C15.81,14.83,18.23,16,21,16z"},"children":[]}]}]}]}]}]};exports.ic_self_improvement_twotone=ic_self_improvement_twotone;var ic_sentiment_dissatisfied={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"15.5","cy":"9.5","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"8.5","cy":"9.5","r":"1.5"},"children":[]},{"name":"path","attribs":{"d":"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm0-3.5c.73 0 1.39.19 1.97.53.12-.14.86-.98 1.01-1.14-.85-.56-1.87-.89-2.98-.89-1.11 0-2.13.33-2.99.88.97 1.09.01.02 1.01 1.14.59-.33 1.25-.52 1.98-.52z"},"children":[]}]};exports.ic_sentiment_dissatisfied=ic_sentiment_dissatisfied;var ic_sentiment_dissatisfied_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"15.5","cy":"9.5","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"8.5","cy":"9.5","r":"1.5"},"children":[]},{"name":"path","attribs":{"d":"M12 14c-2.33 0-4.32 1.45-5.12 3.5h1.67c.69-1.19 1.97-2 3.45-2s2.75.81 3.45 2h1.67c-.8-2.05-2.79-3.5-5.12-3.5zm-.01-12C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"},"children":[]}]};exports.ic_sentiment_dissatisfied_outline=ic_sentiment_dissatisfied_outline;var ic_sentiment_dissatisfied_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm3.5 4c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-7 0c.83 0 1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5 7.67 8 8.5 8zm6.95 9.5c-.7-1.19-1.97-2-3.45-2s-2.76.81-3.45 2H6.88C7.68 15.45 9.67 14 12 14s4.32 1.45 5.12 3.5h-1.67z","opacity":".3"},"children":[]},{"name":"circle","attribs":{"cx":"15.5","cy":"9.5","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"8.5","cy":"9.5","r":"1.5"},"children":[]},{"name":"path","attribs":{"d":"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm0-6c-2.33 0-4.32 1.45-5.12 3.5h1.67c.69-1.19 1.97-2 3.45-2s2.75.81 3.45 2h1.67c-.8-2.05-2.79-3.5-5.12-3.5z"},"children":[]}]};exports.ic_sentiment_dissatisfied_twotone=ic_sentiment_dissatisfied_twotone;var ic_sentiment_neutral={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9 15.5h6v1H9v-1z"},"children":[]},{"name":"circle","attribs":{"cx":"15.5","cy":"9.5","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"8.5","cy":"9.5","r":"1.5"},"children":[]},{"name":"path","attribs":{"d":"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"},"children":[]}]};exports.ic_sentiment_neutral=ic_sentiment_neutral;var ic_sentiment_neutral_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M9 14h6v1.5H9z"},"children":[]},{"name":"circle","attribs":{"cx":"15.5","cy":"9.5","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"8.5","cy":"9.5","r":"1.5"},"children":[]},{"name":"path","attribs":{"d":"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"},"children":[]}]};exports.ic_sentiment_neutral_outline=ic_sentiment_neutral_outline;var ic_sentiment_neutral_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zM7 9.5C7 8.67 7.67 8 8.5 8s1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5zm8 6H9V14h6v1.5zm.5-4.5c-.83 0-1.5-.67-1.5-1.5S14.67 8 15.5 8s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M9 14h6v1.5H9z"},"children":[]},{"name":"circle","attribs":{"cx":"15.5","cy":"9.5","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"8.5","cy":"9.5","r":"1.5"},"children":[]},{"name":"path","attribs":{"d":"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"},"children":[]}]};exports.ic_sentiment_neutral_twotone=ic_sentiment_neutral_twotone;var ic_sentiment_satisfied={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"15.5","cy":"9.5","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"8.5","cy":"9.5","r":"1.5"},"children":[]},{"name":"path","attribs":{"d":"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm0-4c-.73 0-1.38-.18-1.96-.52-.12.14-.86.98-1.01 1.15.86.55 1.87.87 2.97.87 1.11 0 2.12-.33 2.98-.88-.97-1.09-.01-.02-1.01-1.15-.59.35-1.24.53-1.97.53z"},"children":[]}]};exports.ic_sentiment_satisfied=ic_sentiment_satisfied;var ic_sentiment_satisfied_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"15.5","cy":"9.5","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"8.5","cy":"9.5","r":"1.5"},"children":[]},{"name":"path","attribs":{"d":"M12 16c-1.48 0-2.75-.81-3.45-2H6.88c.8 2.05 2.79 3.5 5.12 3.5s4.32-1.45 5.12-3.5h-1.67c-.7 1.19-1.97 2-3.45 2zm-.01-14C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"},"children":[]}]};exports.ic_sentiment_satisfied_outline=ic_sentiment_satisfied_outline;var ic_sentiment_satisfied_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm3.5 4c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-7 0c.83 0 1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5 7.67 8 8.5 8zm3.5 9.5c-2.33 0-4.32-1.45-5.12-3.5h1.67c.7 1.19 1.97 2 3.45 2s2.75-.81 3.45-2h1.67c-.8 2.05-2.79 3.5-5.12 3.5z","opacity":".3"},"children":[]},{"name":"circle","attribs":{"cx":"15.5","cy":"9.5","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"8.5","cy":"9.5","r":"1.5"},"children":[]},{"name":"path","attribs":{"d":"M12 16c-1.48 0-2.75-.81-3.45-2H6.88c.8 2.05 2.79 3.5 5.12 3.5s4.32-1.45 5.12-3.5h-1.67c-.7 1.19-1.97 2-3.45 2zm-.01-14C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"},"children":[]}]};exports.ic_sentiment_satisfied_twotone=ic_sentiment_satisfied_twotone;var ic_sentiment_very_dissatisfied={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"15.5","cy":"9.5","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"8.5","cy":"9.5","r":"1.5"},"children":[]},{"name":"path","attribs":{"d":"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm0-6c-2.33 0-4.32 1.45-5.12 3.5h1.67c.69-1.19 1.97-2 3.45-2s2.75.81 3.45 2h1.67c-.8-2.05-2.79-3.5-5.12-3.5z"},"children":[]}]};exports.ic_sentiment_very_dissatisfied=ic_sentiment_very_dissatisfied;var ic_sentiment_very_dissatisfied_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 13.5c-2.33 0-4.31 1.46-5.11 3.5h10.22c-.8-2.04-2.78-3.5-5.11-3.5zM7.82 12l1.06-1.06L9.94 12 11 10.94 9.94 9.88 11 8.82 9.94 7.76 8.88 8.82 7.82 7.76 6.76 8.82l1.06 1.06-1.06 1.06zm4.17-10C6.47 2 2 6.47 2 12s4.47 10 9.99 10S22 17.53 22 12 17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm4.18-12.24l-1.06 1.06-1.06-1.06L13 8.82l1.06 1.06L13 10.94 14.06 12l1.06-1.06L16.18 12l1.06-1.06-1.06-1.06 1.06-1.06z"},"children":[]}]};exports.ic_sentiment_very_dissatisfied_outline=ic_sentiment_very_dissatisfied_outline;var ic_sentiment_very_dissatisfied_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zM6.76 8.82l1.06-1.06 1.06 1.06 1.06-1.06L11 8.82 9.94 9.88 11 10.94 9.94 12l-1.06-1.06L7.82 12l-1.06-1.06 1.06-1.06-1.06-1.06zM6.89 17c.8-2.04 2.78-3.5 5.11-3.5s4.31 1.46 5.11 3.5H6.89zm10.35-6.06L16.18 12l-1.06-1.06L14.06 12 13 10.94l1.06-1.06L13 8.82l1.06-1.06 1.06 1.06 1.06-1.06 1.06 1.06-1.06 1.06 1.06 1.06z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M12 13.5c-2.33 0-4.31 1.46-5.11 3.5h10.22c-.8-2.04-2.78-3.5-5.11-3.5zM7.82 12l1.06-1.06L9.94 12 11 10.94 9.94 9.88 11 8.82 9.94 7.76 8.88 8.82 7.82 7.76 6.76 8.82l1.06 1.06-1.06 1.06zm4.17-10C6.47 2 2 6.47 2 12s4.47 10 9.99 10S22 17.53 22 12 17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm4.18-12.24l-1.06 1.06-1.06-1.06L13 8.82l1.06 1.06L13 10.94 14.06 12l1.06-1.06L16.18 12l1.06-1.06-1.06-1.06 1.06-1.06z"},"children":[]}]};exports.ic_sentiment_very_dissatisfied_twotone=ic_sentiment_very_dissatisfied_twotone;var ic_sentiment_very_satisfied={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"15.5","cy":"9.5","r":"1.5"},"children":[]},{"name":"circle","attribs":{"cx":"8.5","cy":"9.5","r":"1.5"},"children":[]},{"name":"path","attribs":{"d":"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm-5-6c.78 2.34 2.72 4 5 4s4.22-1.66 5-4H7z"},"children":[]}]};exports.ic_sentiment_very_satisfied=ic_sentiment_very_satisfied;var ic_sentiment_very_satisfied_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11.99 2C6.47 2 2 6.47 2 12s4.47 10 9.99 10S22 17.53 22 12 17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm1-10.06L14.06 11l1.06-1.06L16.18 11l1.06-1.06-2.12-2.12L13 9.94zm-4.12 0L9.94 11 11 9.94 8.88 7.82 6.76 9.94 7.82 11l1.06-1.06zM12 17.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z"},"children":[]}]};exports.ic_sentiment_very_satisfied_outline=ic_sentiment_very_satisfied_outline;var ic_sentiment_very_satisfied_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zM8.88 7.82L11 9.94 9.94 11 8.88 9.94 7.82 11 6.76 9.94l2.12-2.12zM12 17.5c-2.33 0-4.31-1.46-5.11-3.5h10.22c-.8 2.04-2.78 3.5-5.11 3.5zm4.18-6.5l-1.06-1.06L14.06 11 13 9.94l2.12-2.12 2.12 2.12L16.18 11z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M8.88 9.94L9.94 11 11 9.94 8.88 7.82 6.76 9.94 7.82 11zm4.12 0L14.06 11l1.06-1.06L16.18 11l1.06-1.06-2.12-2.12zM11.99 2C6.47 2 2 6.47 2 12s4.47 10 9.99 10S22 17.53 22 12 17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm0-2.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z"},"children":[]}]};exports.ic_sentiment_very_satisfied_twotone=ic_sentiment_very_satisfied_twotone;var ic_share={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 16.08c-.76 0-1.44.3-1.96.77L8.91 12.7c.05-.23.09-.46.09-.7s-.04-.47-.09-.7l7.05-4.11c.54.5 1.25.81 2.04.81 1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3c0 .24.04.47.09.7L8.04 9.81C7.5 9.31 6.79 9 6 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c.79 0 1.5-.31 2.04-.81l7.12 4.16c-.05.21-.08.43-.08.65 0 1.61 1.31 2.92 2.92 2.92 1.61 0 2.92-1.31 2.92-2.92s-1.31-2.92-2.92-2.92z"},"children":[]}]};exports.ic_share=ic_share;var ic_share_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M18 16.08c-.76 0-1.44.3-1.96.77L8.91 12.7c.05-.23.09-.46.09-.7s-.04-.47-.09-.7l7.05-4.11c.54.5 1.25.81 2.04.81 1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3c0 .24.04.47.09.7L8.04 9.81C7.5 9.31 6.79 9 6 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c.79 0 1.5-.31 2.04-.81l7.12 4.16c-.05.21-.08.43-.08.65 0 1.61 1.31 2.92 2.92 2.92s2.92-1.31 2.92-2.92c0-1.61-1.31-2.92-2.92-2.92zM18 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM6 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm12 7.02c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z"},"children":[]}]};exports.ic_share_outline=ic_share_outline;var ic_share_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"circle","attribs":{"cx":"18","cy":"5","opacity":".3","r":"1"},"children":[]},{"name":"circle","attribs":{"cx":"6","cy":"12","opacity":".3","r":"1"},"children":[]},{"name":"circle","attribs":{"cx":"18","cy":"19.02","opacity":".3","r":"1"},"children":[]},{"name":"path","attribs":{"d":"M18 16.08c-.76 0-1.44.3-1.96.77L8.91 12.7c.05-.23.09-.46.09-.7s-.04-.47-.09-.7l7.05-4.11c.54.5 1.25.81 2.04.81 1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3c0 .24.04.47.09.7L8.04 9.81C7.5 9.31 6.79 9 6 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c.79 0 1.5-.31 2.04-.81l7.12 4.16c-.05.21-.08.43-.08.65 0 1.61 1.31 2.92 2.92 2.92s2.92-1.31 2.92-2.92c0-1.61-1.31-2.92-2.92-2.92zM18 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM6 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm12 7.02c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z"},"children":[]}]};exports.ic_share_twotone=ic_share_twotone;var ic_sick={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M21,9c-1.1,0-2-0.9-2-2c0-1.1,2-4,2-4s2,2.9,2,4C23,8.1,22.1,9,21,9z M17.5,7c0-0.73,0.41-1.71,0.92-2.66 C16.68,2.88,14.44,2,11.99,2C6.47,2,2,6.48,2,12c0,5.52,4.47,10,9.99,10C17.52,22,22,17.52,22,12c0-0.55-0.06-1.09-0.14-1.62 C21.58,10.45,21.3,10.5,21,10.5C19.07,10.5,17.5,8.93,17.5,7z M15.62,7.38l1.06,1.06L15.62,9.5l1.06,1.06l-1.06,1.06L13.5,9.5 L15.62,7.38z M7.32,8.44l1.06-1.06L10.5,9.5l-2.12,2.12l-1.06-1.06L8.38,9.5L7.32,8.44z M15.44,17c-0.69-1.19-1.97-2-3.44-2 s-2.75,0.81-3.44,2H6.88c0.3-0.76,0.76-1.43,1.34-1.99L5.24,13.3c-0.45,0.26-1.01,0.28-1.49,0c-0.72-0.41-0.96-1.33-0.55-2.05 c0.41-0.72,1.33-0.96,2.05-0.55c0.48,0.28,0.74,0.78,0.74,1.29l3.58,2.07c0.73-0.36,1.55-0.56,2.43-0.56c2.33,0,4.32,1.45,5.12,3.5 H15.44z"},"children":[]}]};exports.ic_sick=ic_sick;var ic_sick_outline={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M7.32,10.56L8.38,9.5L7.32,8.44l1.06-1.06L10.5,9.5l-2.12,2.12L7.32,10.56z M4.5,9c0.03,0,0.05,0.01,0.08,0.01 C5.77,6.07,8.64,4,12,4c2.19,0,4.16,0.88,5.61,2.3c0.15-0.6,0.45-1.29,0.81-1.96C16.68,2.88,14.44,2,11.99,2 c-4.88,0-8.94,3.51-9.81,8.14C2.74,9.44,3.59,9,4.5,9z M21,10.5c-0.42,0-0.82-0.09-1.19-0.22C19.93,10.83,20,11.41,20,12 c0,4.42-3.58,8-8,8c-3.36,0-6.23-2.07-7.42-5.01C4.55,14.99,4.53,15,4.5,15c-0.52,0-1.04-0.14-1.5-0.4 c-0.32-0.18-0.59-0.42-0.82-0.7c0.89,4.61,4.93,8.1,9.8,8.1C17.52,22,22,17.52,22,12c0-0.55-0.06-1.09-0.14-1.62 C21.58,10.45,21.3,10.5,21,10.5z M21,3c0,0-2,2.9-2,4c0,1.1,0.9,2,2,2s2-0.9,2-2C23,5.9,21,3,21,3z M15.62,7.38L13.5,9.5l2.12,2.12 l1.06-1.06L15.62,9.5l1.06-1.06L15.62,7.38z M8.56,17c0.69-1.19,1.97-2,3.44-2s2.75,0.81,3.44,2h1.68c-0.8-2.05-2.79-3.5-5.12-3.5 c-0.87,0-1.7,0.2-2.43,0.57l0,0L5.99,12c0-0.52-0.26-1.02-0.74-1.29c-0.72-0.41-1.63-0.17-2.05,0.55c-0.41,0.72-0.17,1.63,0.55,2.05 c0.48,0.28,1.05,0.25,1.49,0l2.97,1.72l0,0C7.64,15.56,7.18,16.24,6.88,17H8.56z"},"children":[]}]};exports.ic_sick_outline=ic_sick_outline;var ic_sick_twotone={"viewBox":"0 0 24 24","children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]},{"name":"path","attribs":{"d":"M7.32,10.56L8.38,9.5L7.32,8.44l1.06-1.06L10.5,9.5l-2.12,2.12L7.32,10.56z M4.5,9c0.03,0,0.05,0.01,0.08,0.01 C5.77,6.07,8.64,4,12,4c2.19,0,4.16,0.88,5.61,2.3c0.15-0.6,0.45-1.29,0.81-1.96C16.68,2.88,14.44,2,11.99,2 c-4.88,0-8.94,3.51-9.81,8.14C2.74,9.44,3.59,9,4.5,9z M21,10.5c-0.42,0-0.82-0.09-1.19-0.22C19.93,10.83,20,11.41,20,12 c0,4.42-3.58,8-8,8c-3.36,0-6.23-2.07-7.42-5.01C4.55,14.99,4.53,15,4.5,15c-0.52,0-1.04-0.14-1.5-0.4 c-0.32-0.18-0.59-0.42-0.82-0.7c0.89,4.61,4.93,8.1,9.8,8.1C17.52,22,22,17.52,22,12c0-0.55-0.06-1.09-0.14-1.62 C21.58,10.45,21.3,10.5,21,10.5z M21,3c0,0-2,2.9-2,4c0,1.1,0.9,2,2,2s2-0.9,2-2C23,5.9,21,3,21,3z M15.62,7.38L13.5,9.5l2.12,2.12 l1.06-1.06L15.62,9.5l1.06-1.06L15.62,7.38z M8.56,17c0.69-1.19,1.97-2,3.44-2s2.75,0.81,3.44,2h1.68c-0.8-2.05-2.79-3.5-5.12-3.5 c-0.87,0-1.7,0.2-2.43,0.57l0,0L5.99,12c0-0.52-0.26-1.02-0.74-1.29c-0.72-0.41-1.63-0.17-2.05,0.55c-0.41,0.72-0.17,1.63,0.55,2.05 c0.48,0.28,1.05,0.25,1.49,0l2.97,1.72l0,0C7.64,15.56,7.18,16.24,6.88,17H8.56z"},"children":[]}]};exports.ic_sick_twotone=ic_sick_twotone;var ic_single_bed={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M20,12c0-1.1-0.9-2-2-2V7c0-1.1-0.9-2-2-2H8C6.9,5,6,5.9,6,7v3c-1.1,0-2,0.9-2,2v5h1.33L6,19h1l0.67-2h8.67L17,19h1l0.67-2 H20V12z M16,10h-3V7h3V10z M8,7h3v3H8V7z M6,12h12v3H6V12z"},"children":[{"name":"path","attribs":{"d":"M20,12c0-1.1-0.9-2-2-2V7c0-1.1-0.9-2-2-2H8C6.9,5,6,5.9,6,7v3c-1.1,0-2,0.9-2,2v5h1.33L6,19h1l0.67-2h8.67L17,19h1l0.67-2 H20V12z M16,10h-3V7h3V10z M8,7h3v3H8V7z M6,12h12v3H6V12z"},"children":[]}]}]}]};exports.ic_single_bed=ic_single_bed;var ic_single_bed_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M20,12c0-1.1-0.9-2-2-2V7c0-1.1-0.9-2-2-2H8C6.9,5,6,5.9,6,7v3c-1.1,0-2,0.9-2,2v5h1.33L6,19h1l0.67-2h8.67L17,19h1l0.67-2 H20V12z M16,10h-3V7h3V10z M8,7h3v3H8V7z M6,12h12v3H6V12z"},"children":[{"name":"path","attribs":{"d":"M20,12c0-1.1-0.9-2-2-2V7c0-1.1-0.9-2-2-2H8C6.9,5,6,5.9,6,7v3c-1.1,0-2,0.9-2,2v5h1.33L6,19h1l0.67-2h8.67L17,19h1l0.67-2 H20V12z M16,10h-3V7h3V10z M8,7h3v3H8V7z M6,12h12v3H6V12z"},"children":[]}]}]}]};exports.ic_single_bed_outline=ic_single_bed_outline;var ic_single_bed_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"height":"3","opacity":".3","width":"12","x":"6","y":"12"},"children":[{"name":"rect","attribs":{"height":"3","opacity":".3","width":"12","x":"6","y":"12"},"children":[]}]},{"name":"path","attribs":{"d":"M18,10V7c0-1.1-0.9-2-2-2H8C6.9,5,6,5.9,6,7v3c-1.1,0-2,0.9-2,2v5h1.33L6,19h1l0.67-2h8.67L17,19h1l0.67-2H20v-5 C20,10.9,19.1,10,18,10z M13,7h3v3h-3V7z M8,7h3v3H8V7z M18,15H6v-3h12V15z"},"children":[{"name":"path","attribs":{"d":"M18,10V7c0-1.1-0.9-2-2-2H8C6.9,5,6,5.9,6,7v3c-1.1,0-2,0.9-2,2v5h1.33L6,19h1l0.67-2h8.67L17,19h1l0.67-2H20v-5 C20,10.9,19.1,10,18,10z M13,7h3v3h-3V7z M8,7h3v3H8V7z M18,15H6v-3h12V15z"},"children":[]}]}]}]}]}]};exports.ic_single_bed_twotone=ic_single_bed_twotone;var ic_sports={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M11.23,6C9.57,6,8.01,6.66,6.87,7.73C6.54,6.73,5.61,6,4.5,6C3.12,6,2,7.12,2,8.5C2,9.88,3.12,11,4.5,11 c0.21,0,0.41-0.03,0.61-0.08c-0.05,0.25-0.09,0.51-0.1,0.78c-0.18,3.68,2.95,6.68,6.68,6.27c2.55-0.28,4.68-2.26,5.19-4.77 c0.15-0.71,0.15-1.4,0.06-2.06c-0.09-0.6,0.38-1.13,0.99-1.13H22V6H11.23z M4.5,9C4.22,9,4,8.78,4,8.5C4,8.22,4.22,8,4.5,8 S5,8.22,5,8.5C5,8.78,4.78,9,4.5,9z M11,15c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3S12.66,15,11,15z"},"children":[{"name":"path","attribs":{"d":"M11.23,6C9.57,6,8.01,6.66,6.87,7.73C6.54,6.73,5.61,6,4.5,6C3.12,6,2,7.12,2,8.5C2,9.88,3.12,11,4.5,11 c0.21,0,0.41-0.03,0.61-0.08c-0.05,0.25-0.09,0.51-0.1,0.78c-0.18,3.68,2.95,6.68,6.68,6.27c2.55-0.28,4.68-2.26,5.19-4.77 c0.15-0.71,0.15-1.4,0.06-2.06c-0.09-0.6,0.38-1.13,0.99-1.13H22V6H11.23z M4.5,9C4.22,9,4,8.78,4,8.5C4,8.22,4.22,8,4.5,8 S5,8.22,5,8.5C5,8.78,4.78,9,4.5,9z M11,15c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3S12.66,15,11,15z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"cx":"11","cy":"12","r":"2"},"children":[{"name":"circle","attribs":{"cx":"11","cy":"12","r":"2"},"children":[]}]}]}]}]}]}]}]};exports.ic_sports=ic_sports;var ic_sports_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M11.23,6C9.57,6,8.01,6.66,6.87,7.73C6.54,6.73,5.61,6,4.5,6C3.12,6,2,7.12,2,8.5C2,9.88,3.12,11,4.5,11 c0.21,0,0.41-0.03,0.61-0.08c-0.05,0.25-0.09,0.51-0.1,0.78c-0.18,3.68,2.95,6.68,6.68,6.27c2.55-0.28,4.68-2.26,5.19-4.77 c0.15-0.71,0.15-1.4,0.06-2.06c-0.09-0.6,0.38-1.13,0.99-1.13H22V6H11.23z M4.5,9C4.22,9,4,8.78,4,8.5C4,8.22,4.22,8,4.5,8 S5,8.22,5,8.5C5,8.78,4.78,9,4.5,9z M11,15c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3S12.66,15,11,15z"},"children":[{"name":"path","attribs":{"d":"M11.23,6C9.57,6,8.01,6.66,6.87,7.73C6.54,6.73,5.61,6,4.5,6C3.12,6,2,7.12,2,8.5C2,9.88,3.12,11,4.5,11 c0.21,0,0.41-0.03,0.61-0.08c-0.05,0.25-0.09,0.51-0.1,0.78c-0.18,3.68,2.95,6.68,6.68,6.27c2.55-0.28,4.68-2.26,5.19-4.77 c0.15-0.71,0.15-1.4,0.06-2.06c-0.09-0.6,0.38-1.13,0.99-1.13H22V6H11.23z M4.5,9C4.22,9,4,8.78,4,8.5C4,8.22,4.22,8,4.5,8 S5,8.22,5,8.5C5,8.78,4.78,9,4.5,9z M11,15c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3S12.66,15,11,15z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"cx":"11","cy":"12","r":"2"},"children":[{"name":"circle","attribs":{"cx":"11","cy":"12","r":"2"},"children":[]}]}]}]}]}]}]}]};exports.ic_sports_outline=ic_sports_outline;var ic_sports_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M11.23,6C9.57,6,8.01,6.66,6.87,7.73C6.54,6.73,5.61,6,4.5,6C3.12,6,2,7.12,2,8.5C2,9.88,3.12,11,4.5,11 c0.21,0,0.41-0.03,0.61-0.08c-0.05,0.25-0.09,0.51-0.1,0.78c-0.18,3.68,2.95,6.68,6.68,6.27c2.55-0.28,4.68-2.26,5.19-4.77 c0.15-0.71,0.15-1.4,0.06-2.06c-0.09-0.6,0.38-1.13,0.99-1.13H22V6H11.23z M4.5,9C4.22,9,4,8.78,4,8.5C4,8.22,4.22,8,4.5,8 S5,8.22,5,8.5C5,8.78,4.78,9,4.5,9z M11,15c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3S12.66,15,11,15z"},"children":[{"name":"path","attribs":{"d":"M11.23,6C9.57,6,8.01,6.66,6.87,7.73C6.54,6.73,5.61,6,4.5,6C3.12,6,2,7.12,2,8.5C2,9.88,3.12,11,4.5,11 c0.21,0,0.41-0.03,0.61-0.08c-0.05,0.25-0.09,0.51-0.1,0.78c-0.18,3.68,2.95,6.68,6.68,6.27c2.55-0.28,4.68-2.26,5.19-4.77 c0.15-0.71,0.15-1.4,0.06-2.06c-0.09-0.6,0.38-1.13,0.99-1.13H22V6H11.23z M4.5,9C4.22,9,4,8.78,4,8.5C4,8.22,4.22,8,4.5,8 S5,8.22,5,8.5C5,8.78,4.78,9,4.5,9z M11,15c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3S12.66,15,11,15z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"cx":"11","cy":"12","r":"2"},"children":[{"name":"circle","attribs":{"cx":"11","cy":"12","r":"2"},"children":[]}]}]}]}]}]}]}]};exports.ic_sports_twotone=ic_sports_twotone;var ic_sports_baseball={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M3.81,6.28C2.67,7.9,2,9.87,2,12s0.67,4.1,1.81,5.72C6.23,16.95,8,14.68,8,12S6.23,7.05,3.81,6.28z"},"children":[{"name":"path","attribs":{"d":"M3.81,6.28C2.67,7.9,2,9.87,2,12s0.67,4.1,1.81,5.72C6.23,16.95,8,14.68,8,12S6.23,7.05,3.81,6.28z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M20.19,6.28C17.77,7.05,16,9.32,16,12s1.77,4.95,4.19,5.72C21.33,16.1,22,14.13,22,12S21.33,7.9,20.19,6.28z"},"children":[{"name":"path","attribs":{"d":"M20.19,6.28C17.77,7.05,16,9.32,16,12s1.77,4.95,4.19,5.72C21.33,16.1,22,14.13,22,12S21.33,7.9,20.19,6.28z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M14,12c0-3.28,1.97-6.09,4.79-7.33C17.01,3.02,14.63,2,12,2S6.99,3.02,5.21,4.67C8.03,5.91,10,8.72,10,12 s-1.97,6.09-4.79,7.33C6.99,20.98,9.37,22,12,22s5.01-1.02,6.79-2.67C15.97,18.09,14,15.28,14,12z"},"children":[{"name":"path","attribs":{"d":"M14,12c0-3.28,1.97-6.09,4.79-7.33C17.01,3.02,14.63,2,12,2S6.99,3.02,5.21,4.67C8.03,5.91,10,8.72,10,12 s-1.97,6.09-4.79,7.33C6.99,20.98,9.37,22,12,22s5.01-1.02,6.79-2.67C15.97,18.09,14,15.28,14,12z"},"children":[]}]}]}]}]}]}]}]};exports.ic_sports_baseball=ic_sports_baseball;var ic_sports_baseball_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M5.61,16.78C4.6,15.45,4,13.8,4,12 s0.6-3.45,1.61-4.78C7.06,8.31,8,10.05,8,12S7.06,15.69,5.61,16.78z M12,20c-1.89,0-3.63-0.66-5-1.76c1.83-1.47,3-3.71,3-6.24 S8.83,7.23,7,5.76C8.37,4.66,10.11,4,12,4s3.63,0.66,5,1.76c-1.83,1.47-3,3.71-3,6.24s1.17,4.77,3,6.24C15.63,19.34,13.89,20,12,20 z M18.39,16.78C16.94,15.69,16,13.95,16,12s0.94-3.69,2.39-4.78C19.4,8.55,20,10.2,20,12S19.4,15.45,18.39,16.78z"},"children":[{"name":"path","attribs":{"d":"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M5.61,16.78C4.6,15.45,4,13.8,4,12 s0.6-3.45,1.61-4.78C7.06,8.31,8,10.05,8,12S7.06,15.69,5.61,16.78z M12,20c-1.89,0-3.63-0.66-5-1.76c1.83-1.47,3-3.71,3-6.24 S8.83,7.23,7,5.76C8.37,4.66,10.11,4,12,4s3.63,0.66,5,1.76c-1.83,1.47-3,3.71-3,6.24s1.17,4.77,3,6.24C15.63,19.34,13.89,20,12,20 z M18.39,16.78C16.94,15.69,16,13.95,16,12s0.94-3.69,2.39-4.78C19.4,8.55,20,10.2,20,12S19.4,15.45,18.39,16.78z"},"children":[]}]}]}]};exports.ic_sports_baseball_outline=ic_sports_baseball_outline;var ic_sports_baseball_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M5.61,7.22C4.6,8.55,4,10.2,4,12s0.6,3.45,1.61,4.78C7.06,15.69,8,13.95,8,12S7.06,8.31,5.61,7.22z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M5.61,7.22C4.6,8.55,4,10.2,4,12s0.6,3.45,1.61,4.78C7.06,15.69,8,13.95,8,12S7.06,8.31,5.61,7.22z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M14,12c0-2.52,1.17-4.77,3-6.24C15.63,4.66,13.89,4,12,4S8.37,4.66,7,5.76c1.83,1.47,3,3.71,3,6.24 s-1.17,4.77-3,6.24c1.37,1.1,3.11,1.76,5,1.76s3.63-0.66,5-1.76C15.17,16.77,14,14.52,14,12z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M14,12c0-2.52,1.17-4.77,3-6.24C15.63,4.66,13.89,4,12,4S8.37,4.66,7,5.76c1.83,1.47,3,3.71,3,6.24 s-1.17,4.77-3,6.24c1.37,1.1,3.11,1.76,5,1.76s3.63-0.66,5-1.76C15.17,16.77,14,14.52,14,12z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M18.39,7.22C16.94,8.31,16,10.05,16,12s0.94,3.69,2.39,4.78C19.4,15.45,20,13.8,20,12S19.4,8.55,18.39,7.22 z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M18.39,7.22C16.94,8.31,16,10.05,16,12s0.94,3.69,2.39,4.78C19.4,15.45,20,13.8,20,12S19.4,8.55,18.39,7.22 z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M5.61,16.78C4.6,15.45,4,13.8,4,12 s0.6-3.45,1.61-4.78C7.06,8.31,8,10.05,8,12S7.06,15.69,5.61,16.78z M12,20c-1.89,0-3.63-0.66-5-1.76c1.83-1.47,3-3.71,3-6.24 S8.83,7.23,7,5.76C8.37,4.66,10.11,4,12,4s3.63,0.66,5,1.76c-1.83,1.47-3,3.71-3,6.24s1.17,4.77,3,6.24 C15.63,19.34,13.89,20,12,20z M18.39,16.78C16.94,15.69,16,13.95,16,12s0.94-3.69,2.39-4.78C19.4,8.55,20,10.2,20,12 S19.4,15.45,18.39,16.78z"},"children":[{"name":"path","attribs":{"d":"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M5.61,16.78C4.6,15.45,4,13.8,4,12 s0.6-3.45,1.61-4.78C7.06,8.31,8,10.05,8,12S7.06,15.69,5.61,16.78z M12,20c-1.89,0-3.63-0.66-5-1.76c1.83-1.47,3-3.71,3-6.24 S8.83,7.23,7,5.76C8.37,4.66,10.11,4,12,4s3.63,0.66,5,1.76c-1.83,1.47-3,3.71-3,6.24s1.17,4.77,3,6.24 C15.63,19.34,13.89,20,12,20z M18.39,16.78C16.94,15.69,16,13.95,16,12s0.94-3.69,2.39-4.78C19.4,8.55,20,10.2,20,12 S19.4,15.45,18.39,16.78z"},"children":[]}]}]}]}]}]};exports.ic_sports_baseball_twotone=ic_sports_baseball_twotone;var ic_sports_basketball={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M17.09,11h4.86c-0.16-1.61-0.71-3.11-1.54-4.4C18.68,7.43,17.42,9.05,17.09,11z"},"children":[{"name":"path","attribs":{"d":"M17.09,11h4.86c-0.16-1.61-0.71-3.11-1.54-4.4C18.68,7.43,17.42,9.05,17.09,11z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M6.91,11C6.58,9.05,5.32,7.43,3.59,6.6C2.76,7.89,2.21,9.39,2.05,11H6.91z"},"children":[{"name":"path","attribs":{"d":"M6.91,11C6.58,9.05,5.32,7.43,3.59,6.6C2.76,7.89,2.21,9.39,2.05,11H6.91z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M15.07,11c0.32-2.59,1.88-4.79,4.06-6c-1.6-1.63-3.74-2.71-6.13-2.95V11H15.07z"},"children":[{"name":"path","attribs":{"d":"M15.07,11c0.32-2.59,1.88-4.79,4.06-6c-1.6-1.63-3.74-2.71-6.13-2.95V11H15.07z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M8.93,11H11V2.05C8.61,2.29,6.46,3.37,4.87,5C7.05,6.21,8.61,8.41,8.93,11z"},"children":[{"name":"path","attribs":{"d":"M8.93,11H11V2.05C8.61,2.29,6.46,3.37,4.87,5C7.05,6.21,8.61,8.41,8.93,11z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M15.07,13H13v8.95c2.39-0.24,4.54-1.32,6.13-2.95C16.95,17.79,15.39,15.59,15.07,13z"},"children":[{"name":"path","attribs":{"d":"M15.07,13H13v8.95c2.39-0.24,4.54-1.32,6.13-2.95C16.95,17.79,15.39,15.59,15.07,13z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M3.59,17.4c1.72-0.83,2.99-2.46,3.32-4.4H2.05C2.21,14.61,2.76,16.11,3.59,17.4z"},"children":[{"name":"path","attribs":{"d":"M3.59,17.4c1.72-0.83,2.99-2.46,3.32-4.4H2.05C2.21,14.61,2.76,16.11,3.59,17.4z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M17.09,13c0.33,1.95,1.59,3.57,3.32,4.4c0.83-1.29,1.38-2.79,1.54-4.4H17.09z"},"children":[{"name":"path","attribs":{"d":"M17.09,13c0.33,1.95,1.59,3.57,3.32,4.4c0.83-1.29,1.38-2.79,1.54-4.4H17.09z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M8.93,13c-0.32,2.59-1.88,4.79-4.06,6c1.6,1.63,3.74,2.71,6.13,2.95V13H8.93z"},"children":[{"name":"path","attribs":{"d":"M8.93,13c-0.32,2.59-1.88,4.79-4.06,6c1.6,1.63,3.74,2.71,6.13,2.95V13H8.93z"},"children":[]}]}]}]}]}]}]}]};exports.ic_sports_basketball=ic_sports_basketball;var ic_sports_basketball_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M5.23,7.75 C6.1,8.62,6.7,9.74,6.91,11H4.07C4.22,9.82,4.63,8.72,5.23,7.75z M4.07,13h2.84c-0.21,1.26-0.81,2.38-1.68,3.25 C4.63,15.28,4.22,14.18,4.07,13z M11,19.93c-1.73-0.22-3.29-1-4.49-2.14c1.3-1.24,2.19-2.91,2.42-4.79H11V19.93z M11,11H8.93 C8.69,9.12,7.81,7.44,6.5,6.2C7.71,5.06,9.27,4.29,11,4.07V11z M19.93,11h-2.84c0.21-1.26,0.81-2.38,1.68-3.25 C19.37,8.72,19.78,9.82,19.93,11z M13,4.07c1.73,0.22,3.29,0.99,4.5,2.13c-1.31,1.24-2.19,2.92-2.43,4.8H13V4.07z M13,19.93V13 h2.07c0.24,1.88,1.12,3.55,2.42,4.79C16.29,18.93,14.73,19.71,13,19.93z M18.77,16.25c-0.87-0.86-1.46-1.99-1.68-3.25h2.84 C19.78,14.18,19.37,15.28,18.77,16.25z"},"children":[{"name":"path","attribs":{"d":"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M5.23,7.75 C6.1,8.62,6.7,9.74,6.91,11H4.07C4.22,9.82,4.63,8.72,5.23,7.75z M4.07,13h2.84c-0.21,1.26-0.81,2.38-1.68,3.25 C4.63,15.28,4.22,14.18,4.07,13z M11,19.93c-1.73-0.22-3.29-1-4.49-2.14c1.3-1.24,2.19-2.91,2.42-4.79H11V19.93z M11,11H8.93 C8.69,9.12,7.81,7.44,6.5,6.2C7.71,5.06,9.27,4.29,11,4.07V11z M19.93,11h-2.84c0.21-1.26,0.81-2.38,1.68-3.25 C19.37,8.72,19.78,9.82,19.93,11z M13,4.07c1.73,0.22,3.29,0.99,4.5,2.13c-1.31,1.24-2.19,2.92-2.43,4.8H13V4.07z M13,19.93V13 h2.07c0.24,1.88,1.12,3.55,2.42,4.79C16.29,18.93,14.73,19.71,13,19.93z M18.77,16.25c-0.87-0.86-1.46-1.99-1.68-3.25h2.84 C19.78,14.18,19.37,15.28,18.77,16.25z"},"children":[]}]}]}]}]}]};exports.ic_sports_basketball_outline=ic_sports_basketball_outline;var ic_sports_basketball_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M8.93,11H11V4.07C9.27,4.29,7.71,5.06,6.5,6.2C7.81,7.44,8.69,9.12,8.93,11z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M8.93,11H11V4.07C9.27,4.29,7.71,5.06,6.5,6.2C7.81,7.44,8.69,9.12,8.93,11z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M19.93,11c-0.15-1.18-0.56-2.28-1.16-3.25C17.9,8.62,17.3,9.74,17.09,11H19.93z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M19.93,11c-0.15-1.18-0.56-2.28-1.16-3.25C17.9,8.62,17.3,9.74,17.09,11H19.93z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M5.23,7.75C4.63,8.72,4.22,9.82,4.07,11h2.84C6.7,9.74,6.1,8.62,5.23,7.75z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M5.23,7.75C4.63,8.72,4.22,9.82,4.07,11h2.84C6.7,9.74,6.1,8.62,5.23,7.75z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M4.07,13c0.15,1.18,0.56,2.28,1.16,3.25C6.1,15.38,6.7,14.26,6.91,13H4.07z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M4.07,13c0.15,1.18,0.56,2.28,1.16,3.25C6.1,15.38,6.7,14.26,6.91,13H4.07z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M6.51,17.79c1.2,1.14,2.76,1.92,4.49,2.14V13H8.93C8.7,14.88,7.81,16.55,6.51,17.79z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M6.51,17.79c1.2,1.14,2.76,1.92,4.49,2.14V13H8.93C8.7,14.88,7.81,16.55,6.51,17.79z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M17.5,6.2c-1.21-1.14-2.77-1.92-4.5-2.13V11h2.07C15.31,9.12,16.19,7.44,17.5,6.2z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M17.5,6.2c-1.21-1.14-2.77-1.92-4.5-2.13V11h2.07C15.31,9.12,16.19,7.44,17.5,6.2z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M18.77,16.25c0.61-0.96,1.02-2.07,1.16-3.25h-2.84C17.3,14.26,17.9,15.38,18.77,16.25z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M18.77,16.25c0.61-0.96,1.02-2.07,1.16-3.25h-2.84C17.3,14.26,17.9,15.38,18.77,16.25z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M13,13v6.93c1.73-0.22,3.29-1,4.49-2.14c-1.3-1.24-2.19-2.91-2.42-4.79H13z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M13,13v6.93c1.73-0.22,3.29-1,4.49-2.14c-1.3-1.24-2.19-2.91-2.42-4.79H13z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M5.23,7.75 C6.1,8.62,6.7,9.74,6.91,11H4.07C4.22,9.82,4.63,8.72,5.23,7.75z M4.07,13h2.84c-0.21,1.26-0.81,2.38-1.68,3.25 C4.63,15.28,4.22,14.18,4.07,13z M11,19.93c-1.73-0.22-3.29-1-4.49-2.14c1.3-1.24,2.19-2.91,2.42-4.79H11V19.93z M11,11H8.93 C8.69,9.12,7.81,7.44,6.5,6.2C7.71,5.06,9.27,4.29,11,4.07V11z M19.93,11h-2.84c0.21-1.26,0.81-2.38,1.68-3.25 C19.37,8.72,19.78,9.82,19.93,11z M13,4.07c1.73,0.22,3.29,0.99,4.5,2.13c-1.31,1.24-2.19,2.92-2.43,4.8H13V4.07z M13,19.93V13 h2.07c0.24,1.88,1.12,3.55,2.42,4.79C16.29,18.93,14.73,19.71,13,19.93z M18.77,16.25c-0.87-0.86-1.46-1.99-1.68-3.25h2.84 C19.78,14.18,19.37,15.28,18.77,16.25z"},"children":[{"name":"path","attribs":{"d":"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M5.23,7.75 C6.1,8.62,6.7,9.74,6.91,11H4.07C4.22,9.82,4.63,8.72,5.23,7.75z M4.07,13h2.84c-0.21,1.26-0.81,2.38-1.68,3.25 C4.63,15.28,4.22,14.18,4.07,13z M11,19.93c-1.73-0.22-3.29-1-4.49-2.14c1.3-1.24,2.19-2.91,2.42-4.79H11V19.93z M11,11H8.93 C8.69,9.12,7.81,7.44,6.5,6.2C7.71,5.06,9.27,4.29,11,4.07V11z M19.93,11h-2.84c0.21-1.26,0.81-2.38,1.68-3.25 C19.37,8.72,19.78,9.82,19.93,11z M13,4.07c1.73,0.22,3.29,0.99,4.5,2.13c-1.31,1.24-2.19,2.92-2.43,4.8H13V4.07z M13,19.93V13 h2.07c0.24,1.88,1.12,3.55,2.42,4.79C16.29,18.93,14.73,19.71,13,19.93z M18.77,16.25c-0.87-0.86-1.46-1.99-1.68-3.25h2.84 C19.78,14.18,19.37,15.28,18.77,16.25z"},"children":[]}]}]}]}]}]};exports.ic_sports_basketball_twotone=ic_sports_basketball_twotone;var ic_sports_cricket={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M15.05,12.81L6.56,4.32c-0.39-0.39-1.02-0.39-1.41,0L2.32,7.15c-0.39,0.39-0.39,1.02,0,1.41l8.49,8.49 c0.39,0.39,1.02,0.39,1.41,0l2.83-2.83C15.44,13.83,15.44,13.2,15.05,12.81z"},"children":[{"name":"path","attribs":{"d":"M15.05,12.81L6.56,4.32c-0.39-0.39-1.02-0.39-1.41,0L2.32,7.15c-0.39,0.39-0.39,1.02,0,1.41l8.49,8.49 c0.39,0.39,1.02,0.39,1.41,0l2.83-2.83C15.44,13.83,15.44,13.2,15.05,12.81z"},"children":[]}]},{"name":"rect","attribs":{"height":"6","transform":"matrix(0.7071 -0.7071 0.7071 0.7071 -8.5264 17.7562)","width":"2","x":"16.17","y":"16.17"},"children":[{"name":"rect","attribs":{"height":"6","transform":"matrix(0.7071 -0.7071 0.7071 0.7071 -8.5264 17.7562)","width":"2","x":"16.17","y":"16.17"},"children":[]}]}]}]},{"name":"circle","attribs":{"cx":"18.5","cy":"5.5","r":"3.5"},"children":[{"name":"circle","attribs":{"cx":"18.5","cy":"5.5","r":"3.5"},"children":[]}]}]}]}]}]};exports.ic_sports_cricket=ic_sports_cricket;var ic_sports_cricket_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M15.04,12.79l-8.5-8.5C6.35,4.1,6.09,4,5.83,4S5.32,4.1,5.13,4.29L2.29,7.13c-0.39,0.39-0.39,1.03,0,1.42l8.5,8.5 c0.2,0.2,0.45,0.29,0.71,0.29c0.26,0,0.51-0.1,0.71-0.29l2.83-2.83C15.43,13.82,15.43,13.18,15.04,12.79z M11.5,14.92L4.41,7.83 l1.42-1.42l7.09,7.09L11.5,14.92z"},"children":[{"name":"path","attribs":{"d":"M15.04,12.79l-8.5-8.5C6.35,4.1,6.09,4,5.83,4S5.32,4.1,5.13,4.29L2.29,7.13c-0.39,0.39-0.39,1.03,0,1.42l8.5,8.5 c0.2,0.2,0.45,0.29,0.71,0.29c0.26,0,0.51-0.1,0.71-0.29l2.83-2.83C15.43,13.82,15.43,13.18,15.04,12.79z M11.5,14.92L4.41,7.83 l1.42-1.42l7.09,7.09L11.5,14.92z"},"children":[]}]},{"name":"rect","attribs":{"height":"6","transform":"matrix(0.7071 -0.7071 0.7071 0.7071 -8.5264 17.7562)","width":"2","x":"16.17","y":"16.17"},"children":[{"name":"rect","attribs":{"height":"6","transform":"matrix(0.7071 -0.7071 0.7071 0.7071 -8.5264 17.7562)","width":"2","x":"16.17","y":"16.17"},"children":[]}]},{"name":"path","attribs":{"d":"M18.5,2C16.57,2,15,3.57,15,5.5C15,7.43,16.57,9,18.5,9S22,7.43,22,5.5C22,3.57,20.43,2,18.5,2z M18.5,7 C17.67,7,17,6.33,17,5.5S17.67,4,18.5,4S20,4.67,20,5.5S19.33,7,18.5,7z"},"children":[{"name":"path","attribs":{"d":"M18.5,2C16.57,2,15,3.57,15,5.5C15,7.43,16.57,9,18.5,9S22,7.43,22,5.5C22,3.57,20.43,2,18.5,2z M18.5,7 C17.67,7,17,6.33,17,5.5S17.67,4,18.5,4S20,4.67,20,5.5S19.33,7,18.5,7z"},"children":[]}]}]}]}]}]};exports.ic_sports_cricket_outline=ic_sports_cricket_outline;var ic_sports_cricket_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"height":"10.02","opacity":".3","transform":"matrix(0.7071 -0.7071 0.7071 0.7071 -5.0045 9.2536)","width":"2.01","x":"7.66","y":"5.66"},"children":[{"name":"rect","attribs":{"height":"10.02","opacity":".3","transform":"matrix(0.7071 -0.7071 0.7071 0.7071 -5.0045 9.2536)","width":"2.01","x":"7.66","y":"5.66"},"children":[]}]},{"name":"circle","attribs":{"cx":"18.5","cy":"5.5","opacity":".3","r":"1.5"},"children":[{"name":"circle","attribs":{"cx":"18.5","cy":"5.5","opacity":".3","r":"1.5"},"children":[]}]},{"name":"path","attribs":{"d":"M15.04,12.79l-8.5-8.5C6.35,4.1,6.09,4,5.83,4S5.32,4.1,5.13,4.29L2.29,7.13c-0.39,0.39-0.39,1.03,0,1.42l8.5,8.5 c0.2,0.2,0.45,0.29,0.71,0.29c0.26,0,0.51-0.1,0.71-0.29l2.83-2.83C15.43,13.82,15.43,13.18,15.04,12.79z M11.5,14.92L4.41,7.83 l1.42-1.42l7.09,7.09L11.5,14.92z"},"children":[{"name":"path","attribs":{"d":"M15.04,12.79l-8.5-8.5C6.35,4.1,6.09,4,5.83,4S5.32,4.1,5.13,4.29L2.29,7.13c-0.39,0.39-0.39,1.03,0,1.42l8.5,8.5 c0.2,0.2,0.45,0.29,0.71,0.29c0.26,0,0.51-0.1,0.71-0.29l2.83-2.83C15.43,13.82,15.43,13.18,15.04,12.79z M11.5,14.92L4.41,7.83 l1.42-1.42l7.09,7.09L11.5,14.92z"},"children":[]}]},{"name":"rect","attribs":{"height":"6","transform":"matrix(0.7071 -0.7071 0.7071 0.7071 -8.5264 17.7562)","width":"2","x":"16.17","y":"16.17"},"children":[{"name":"rect","attribs":{"height":"6","transform":"matrix(0.7071 -0.7071 0.7071 0.7071 -8.5264 17.7562)","width":"2","x":"16.17","y":"16.17"},"children":[]}]},{"name":"path","attribs":{"d":"M18.5,2C16.57,2,15,3.57,15,5.5C15,7.43,16.57,9,18.5,9S22,7.43,22,5.5C22,3.57,20.43,2,18.5,2z M18.5,7 C17.67,7,17,6.33,17,5.5S17.67,4,18.5,4S20,4.67,20,5.5S19.33,7,18.5,7z"},"children":[{"name":"path","attribs":{"d":"M18.5,2C16.57,2,15,3.57,15,5.5C15,7.43,16.57,9,18.5,9S22,7.43,22,5.5C22,3.57,20.43,2,18.5,2z M18.5,7 C17.67,7,17,6.33,17,5.5S17.67,4,18.5,4S20,4.67,20,5.5S19.33,7,18.5,7z"},"children":[]}]}]}]}]}]};exports.ic_sports_cricket_twotone=ic_sports_cricket_twotone;var ic_sports_esports={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M21.58,16.09l-1.09-7.66C20.21,6.46,18.52,5,16.53,5H7.47C5.48,5,3.79,6.46,3.51,8.43l-1.09,7.66 C2.2,17.63,3.39,19,4.94,19h0c0.68,0,1.32-0.27,1.8-0.75L9,16h6l2.25,2.25c0.48,0.48,1.13,0.75,1.8,0.75h0 C20.61,19,21.8,17.63,21.58,16.09z M11,11H9v2H8v-2H6v-1h2V8h1v2h2V11z M15,10c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1 C16,9.55,15.55,10,15,10z M17,13c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C18,12.55,17.55,13,17,13z"},"children":[{"name":"path","attribs":{"d":"M21.58,16.09l-1.09-7.66C20.21,6.46,18.52,5,16.53,5H7.47C5.48,5,3.79,6.46,3.51,8.43l-1.09,7.66 C2.2,17.63,3.39,19,4.94,19h0c0.68,0,1.32-0.27,1.8-0.75L9,16h6l2.25,2.25c0.48,0.48,1.13,0.75,1.8,0.75h0 C20.61,19,21.8,17.63,21.58,16.09z M11,11H9v2H8v-2H6v-1h2V8h1v2h2V11z M15,10c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1 C16,9.55,15.55,10,15,10z M17,13c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C18,12.55,17.55,13,17,13z"},"children":[]}]}]}]}]}]};exports.ic_sports_esports=ic_sports_esports;var ic_sports_esports_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M21.58,16.09l-1.09-7.66C20.21,6.46,18.52,5,16.53,5H7.47C5.48,5,3.79,6.46,3.51,8.43l-1.09,7.66 C2.2,17.63,3.39,19,4.94,19h0c0.68,0,1.32-0.27,1.8-0.75L9,16h6l2.25,2.25c0.48,0.48,1.13,0.75,1.8,0.75h0 C20.61,19,21.8,17.63,21.58,16.09z M19.48,16.81C19.4,16.9,19.27,17,19.06,17c-0.15,0-0.29-0.06-0.39-0.16L15.83,14H8.17 l-2.84,2.84C5.23,16.94,5.09,17,4.94,17c-0.21,0-0.34-0.1-0.42-0.19c-0.08-0.09-0.16-0.23-0.13-0.44l1.09-7.66 C5.63,7.74,6.48,7,7.47,7h9.06c0.99,0,1.84,0.74,1.98,1.72l1.09,7.66C19.63,16.58,19.55,16.72,19.48,16.81z"},"children":[{"name":"path","attribs":{"d":"M21.58,16.09l-1.09-7.66C20.21,6.46,18.52,5,16.53,5H7.47C5.48,5,3.79,6.46,3.51,8.43l-1.09,7.66 C2.2,17.63,3.39,19,4.94,19h0c0.68,0,1.32-0.27,1.8-0.75L9,16h6l2.25,2.25c0.48,0.48,1.13,0.75,1.8,0.75h0 C20.61,19,21.8,17.63,21.58,16.09z M19.48,16.81C19.4,16.9,19.27,17,19.06,17c-0.15,0-0.29-0.06-0.39-0.16L15.83,14H8.17 l-2.84,2.84C5.23,16.94,5.09,17,4.94,17c-0.21,0-0.34-0.1-0.42-0.19c-0.08-0.09-0.16-0.23-0.13-0.44l1.09-7.66 C5.63,7.74,6.48,7,7.47,7h9.06c0.99,0,1.84,0.74,1.98,1.72l1.09,7.66C19.63,16.58,19.55,16.72,19.48,16.81z"},"children":[]}]},{"name":"polygon","attribs":{"points":"9,8 8,8 8,10 6,10 6,11 8,11 8,13 9,13 9,11 11,11 11,10 9,10"},"children":[{"name":"polygon","attribs":{"points":"9,8 8,8 8,10 6,10 6,11 8,11 8,13 9,13 9,11 11,11 11,10 9,10"},"children":[]}]},{"name":"circle","attribs":{"cx":"17","cy":"12","r":"1"},"children":[{"name":"circle","attribs":{"cx":"17","cy":"12","r":"1"},"children":[]}]},{"name":"circle","attribs":{"cx":"15","cy":"9","r":"1"},"children":[{"name":"circle","attribs":{"cx":"15","cy":"9","r":"1"},"children":[]}]}]}]}]}]};exports.ic_sports_esports_outline=ic_sports_esports_outline;var ic_sports_esports_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M16.53,7H7.47C6.48,7,5.63,7.74,5.49,8.72L4.4,16.37c-0.03,0.21,0.05,0.35,0.13,0.44 C4.6,16.9,4.73,17,4.94,17c0.15,0,0.29-0.06,0.39-0.16L8.17,14h7.66l2.84,2.84c0.1,0.1,0.24,0.16,0.39,0.16 c0.21,0,0.34-0.1,0.42-0.19c0.08-0.09,0.16-0.23,0.13-0.44l-1.09-7.66C18.37,7.74,17.52,7,16.53,7z M11,11H9v2H8v-2H6v-1h2V8h1v2 h2V11z M15,10c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C16,9.55,15.55,10,15,10z M17,13c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C18,12.55,17.55,13,17,13z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M16.53,7H7.47C6.48,7,5.63,7.74,5.49,8.72L4.4,16.37c-0.03,0.21,0.05,0.35,0.13,0.44 C4.6,16.9,4.73,17,4.94,17c0.15,0,0.29-0.06,0.39-0.16L8.17,14h7.66l2.84,2.84c0.1,0.1,0.24,0.16,0.39,0.16 c0.21,0,0.34-0.1,0.42-0.19c0.08-0.09,0.16-0.23,0.13-0.44l-1.09-7.66C18.37,7.74,17.52,7,16.53,7z M11,11H9v2H8v-2H6v-1h2V8h1v2 h2V11z M15,10c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C16,9.55,15.55,10,15,10z M17,13c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C18,12.55,17.55,13,17,13z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M21.58,16.09l-1.09-7.66C20.21,6.46,18.52,5,16.53,5H7.47C5.48,5,3.79,6.46,3.51,8.43l-1.09,7.66 C2.2,17.63,3.39,19,4.94,19h0c0.68,0,1.32-0.27,1.8-0.75L9,16h6l2.25,2.25c0.48,0.48,1.13,0.75,1.8,0.75h0 C20.61,19,21.8,17.63,21.58,16.09z M19.48,16.81C19.4,16.9,19.27,17,19.06,17c-0.15,0-0.29-0.06-0.39-0.16L15.83,14H8.17 l-2.84,2.84C5.23,16.94,5.09,17,4.94,17c-0.21,0-0.34-0.1-0.42-0.19c-0.08-0.09-0.16-0.23-0.13-0.44l1.09-7.66 C5.63,7.74,6.48,7,7.47,7h9.06c0.99,0,1.84,0.74,1.98,1.72l1.09,7.66C19.63,16.58,19.55,16.72,19.48,16.81z"},"children":[{"name":"path","attribs":{"d":"M21.58,16.09l-1.09-7.66C20.21,6.46,18.52,5,16.53,5H7.47C5.48,5,3.79,6.46,3.51,8.43l-1.09,7.66 C2.2,17.63,3.39,19,4.94,19h0c0.68,0,1.32-0.27,1.8-0.75L9,16h6l2.25,2.25c0.48,0.48,1.13,0.75,1.8,0.75h0 C20.61,19,21.8,17.63,21.58,16.09z M19.48,16.81C19.4,16.9,19.27,17,19.06,17c-0.15,0-0.29-0.06-0.39-0.16L15.83,14H8.17 l-2.84,2.84C5.23,16.94,5.09,17,4.94,17c-0.21,0-0.34-0.1-0.42-0.19c-0.08-0.09-0.16-0.23-0.13-0.44l1.09-7.66 C5.63,7.74,6.48,7,7.47,7h9.06c0.99,0,1.84,0.74,1.98,1.72l1.09,7.66C19.63,16.58,19.55,16.72,19.48,16.81z"},"children":[]}]},{"name":"polygon","attribs":{"points":"9,8 8,8 8,10 6,10 6,11 8,11 8,13 9,13 9,11 11,11 11,10 9,10"},"children":[{"name":"polygon","attribs":{"points":"9,8 8,8 8,10 6,10 6,11 8,11 8,13 9,13 9,11 11,11 11,10 9,10"},"children":[]}]},{"name":"circle","attribs":{"cx":"17","cy":"12","r":"1"},"children":[{"name":"circle","attribs":{"cx":"17","cy":"12","r":"1"},"children":[]}]},{"name":"circle","attribs":{"cx":"15","cy":"9","r":"1"},"children":[{"name":"circle","attribs":{"cx":"15","cy":"9","r":"1"},"children":[]}]}]}]}]}]};exports.ic_sports_esports_twotone=ic_sports_esports_twotone;var ic_sports_football={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M3.02,15.62c-0.08,2.42,0.32,4.34,0.67,4.69s2.28,0.76,4.69,0.67L3.02,15.62z"},"children":[{"name":"path","attribs":{"d":"M3.02,15.62c-0.08,2.42,0.32,4.34,0.67,4.69s2.28,0.76,4.69,0.67L3.02,15.62z"},"children":[]}]},{"name":"path","attribs":{"d":"M13.08,3.28C10.75,3.7,8.29,4.62,6.46,6.46s-2.76,4.29-3.18,6.62l7.63,7.63c2.34-0.41,4.79-1.34,6.62-3.18 s2.76-4.29,3.18-6.62L13.08,3.28z M9.9,15.5l-1.4-1.4l5.6-5.6l1.4,1.4L9.9,15.5z"},"children":[{"name":"path","attribs":{"d":"M13.08,3.28C10.75,3.7,8.29,4.62,6.46,6.46s-2.76,4.29-3.18,6.62l7.63,7.63c2.34-0.41,4.79-1.34,6.62-3.18 s2.76-4.29,3.18-6.62L13.08,3.28z M9.9,15.5l-1.4-1.4l5.6-5.6l1.4,1.4L9.9,15.5z"},"children":[]}]},{"name":"path","attribs":{"d":"M20.98,8.38c0.08-2.42-0.32-4.34-0.67-4.69s-2.28-0.76-4.69-0.67L20.98,8.38z"},"children":[{"name":"path","attribs":{"d":"M20.98,8.38c0.08-2.42-0.32-4.34-0.67-4.69s-2.28-0.76-4.69-0.67L20.98,8.38z"},"children":[]}]}]}]}]}]};exports.ic_sports_football=ic_sports_football;var ic_sports_football_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M20.31,3.69C19.99,3.36,18.37,3,16.26,3c-3.03,0-7.09,0.75-9.8,3.46C1.87,11.05,2.9,19.52,3.69,20.31 C4.01,20.64,5.63,21,7.74,21c3.03,0,7.09-0.75,9.8-3.46C22.13,12.95,21.1,4.48,20.31,3.69z M7.74,19c-1.14,0-2.02-0.12-2.53-0.23 c-0.18-0.79-0.3-2.21-0.17-3.83l4.01,4.01C8.53,18.99,8.08,19,7.74,19z M16.13,16.13c-1.33,1.33-3.06,2.05-4.66,2.44l-6.04-6.04 c0.42-1.68,1.16-3.37,2.45-4.65c1.32-1.32,3.05-2.04,4.64-2.43l6.05,6.05C18.15,13.17,17.4,14.85,16.13,16.13z M18.96,9.09 l-4.03-4.03C15.45,5.01,15.91,5,16.26,5c1.14,0,2.02,0.12,2.53,0.23C18.97,6.02,19.09,7.45,18.96,9.09z"},"children":[{"name":"path","attribs":{"d":"M20.31,3.69C19.99,3.36,18.37,3,16.26,3c-3.03,0-7.09,0.75-9.8,3.46C1.87,11.05,2.9,19.52,3.69,20.31 C4.01,20.64,5.63,21,7.74,21c3.03,0,7.09-0.75,9.8-3.46C22.13,12.95,21.1,4.48,20.31,3.69z M7.74,19c-1.14,0-2.02-0.12-2.53-0.23 c-0.18-0.79-0.3-2.21-0.17-3.83l4.01,4.01C8.53,18.99,8.08,19,7.74,19z M16.13,16.13c-1.33,1.33-3.06,2.05-4.66,2.44l-6.04-6.04 c0.42-1.68,1.16-3.37,2.45-4.65c1.32-1.32,3.05-2.04,4.64-2.43l6.05,6.05C18.15,13.17,17.4,14.85,16.13,16.13z M18.96,9.09 l-4.03-4.03C15.45,5.01,15.91,5,16.26,5c1.14,0,2.02,0.12,2.53,0.23C18.97,6.02,19.09,7.45,18.96,9.09z"},"children":[]}]},{"name":"rect","attribs":{"height":"1.98","transform":"matrix(0.7071 -0.7071 0.7071 0.7071 -4.9706 12.0001)","width":"7.92","x":"8.04","y":"11.01"},"children":[{"name":"rect","attribs":{"height":"1.98","transform":"matrix(0.7071 -0.7071 0.7071 0.7071 -4.9706 12.0001)","width":"7.92","x":"8.04","y":"11.01"},"children":[]}]}]}]}]}]};exports.ic_sports_football_outline=ic_sports_football_outline;var ic_sports_football_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M16.26,5c-0.35,0-0.8,0.01-1.33,0.06l4.03,4.03c0.14-1.63,0.01-3.07-0.17-3.86C18.28,5.12,17.4,5,16.26,5z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M16.26,5c-0.35,0-0.8,0.01-1.33,0.06l4.03,4.03c0.14-1.63,0.01-3.07-0.17-3.86C18.28,5.12,17.4,5,16.26,5z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M5.21,18.77C5.72,18.88,6.6,19,7.74,19c0.34,0,0.79-0.01,1.3-0.05l-4.01-4.01 C4.91,16.56,5.03,17.98,5.21,18.77z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M5.21,18.77C5.72,18.88,6.6,19,7.74,19c0.34,0,0.79-0.01,1.3-0.05l-4.01-4.01 C4.91,16.56,5.03,17.98,5.21,18.77z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M7.87,7.87c-1.28,1.28-2.03,2.97-2.45,4.65l6.04,6.04c1.6-0.39,3.33-1.11,4.66-2.44 c1.28-1.28,2.03-2.95,2.44-4.63l-6.05-6.05C10.92,5.83,9.2,6.55,7.87,7.87z M15.5,9.9l-5.6,5.6l-1.4-1.4l5.6-5.6L15.5,9.9z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M7.87,7.87c-1.28,1.28-2.03,2.97-2.45,4.65l6.04,6.04c1.6-0.39,3.33-1.11,4.66-2.44 c1.28-1.28,2.03-2.95,2.44-4.63l-6.05-6.05C10.92,5.83,9.2,6.55,7.87,7.87z M15.5,9.9l-5.6,5.6l-1.4-1.4l5.6-5.6L15.5,9.9z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M20.31,3.69C19.99,3.36,18.37,3,16.26,3c-3.03,0-7.09,0.75-9.8,3.46C1.87,11.05,2.9,19.52,3.69,20.31 C4.01,20.64,5.63,21,7.74,21c3.03,0,7.09-0.75,9.8-3.46C22.13,12.95,21.1,4.48,20.31,3.69z M7.74,19c-1.14,0-2.02-0.12-2.53-0.23 c-0.18-0.79-0.3-2.21-0.17-3.83l4.01,4.01C8.53,18.99,8.08,19,7.74,19z M16.13,16.13c-1.33,1.33-3.06,2.05-4.66,2.44l-6.04-6.04 c0.42-1.68,1.16-3.37,2.45-4.65c1.32-1.32,3.05-2.04,4.64-2.43l6.05,6.05C18.15,13.17,17.4,14.85,16.13,16.13z M18.96,9.09 l-4.03-4.03C15.45,5.01,15.91,5,16.26,5c1.14,0,2.02,0.12,2.53,0.23C18.97,6.02,19.09,7.45,18.96,9.09z"},"children":[{"name":"path","attribs":{"d":"M20.31,3.69C19.99,3.36,18.37,3,16.26,3c-3.03,0-7.09,0.75-9.8,3.46C1.87,11.05,2.9,19.52,3.69,20.31 C4.01,20.64,5.63,21,7.74,21c3.03,0,7.09-0.75,9.8-3.46C22.13,12.95,21.1,4.48,20.31,3.69z M7.74,19c-1.14,0-2.02-0.12-2.53-0.23 c-0.18-0.79-0.3-2.21-0.17-3.83l4.01,4.01C8.53,18.99,8.08,19,7.74,19z M16.13,16.13c-1.33,1.33-3.06,2.05-4.66,2.44l-6.04-6.04 c0.42-1.68,1.16-3.37,2.45-4.65c1.32-1.32,3.05-2.04,4.64-2.43l6.05,6.05C18.15,13.17,17.4,14.85,16.13,16.13z M18.96,9.09 l-4.03-4.03C15.45,5.01,15.91,5,16.26,5c1.14,0,2.02,0.12,2.53,0.23C18.97,6.02,19.09,7.45,18.96,9.09z"},"children":[]}]},{"name":"rect","attribs":{"height":"1.98","transform":"matrix(0.7071 -0.7071 0.7071 0.7071 -4.9706 12.0001)","width":"7.92","x":"8.04","y":"11.01"},"children":[{"name":"rect","attribs":{"height":"1.98","transform":"matrix(0.7071 -0.7071 0.7071 0.7071 -4.9706 12.0001)","width":"7.92","x":"8.04","y":"11.01"},"children":[]}]}]}]}]}]};exports.ic_sports_football_twotone=ic_sports_football_twotone;var ic_sports_golf={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M12,16c3.87,0,7-3.13,7-7c0-3.87-3.13-7-7-7S5,5.13,5,9C5,12.87,8.13,16,12,16z M12,4c2.76,0,5,2.24,5,5s-2.24,5-5,5 s-5-2.24-5-5S9.24,4,12,4z"},"children":[{"name":"path","attribs":{"d":"M12,16c3.87,0,7-3.13,7-7c0-3.87-3.13-7-7-7S5,5.13,5,9C5,12.87,8.13,16,12,16z M12,4c2.76,0,5,2.24,5,5s-2.24,5-5,5 s-5-2.24-5-5S9.24,4,12,4z"},"children":[]}]},{"name":"circle","attribs":{"cx":"10","cy":"8","r":"1"},"children":[{"name":"circle","attribs":{"cx":"10","cy":"8","r":"1"},"children":[]}]},{"name":"circle","attribs":{"cx":"14","cy":"8","r":"1"},"children":[{"name":"circle","attribs":{"cx":"14","cy":"8","r":"1"},"children":[]}]},{"name":"circle","attribs":{"cx":"12","cy":"6","r":"1"},"children":[{"name":"circle","attribs":{"cx":"12","cy":"6","r":"1"},"children":[]}]},{"name":"path","attribs":{"d":"M7,19h2c1.1,0,2,0.9,2,2v1h2v-1c0-1.1,0.9-2,2-2h2v-2H7V19z"},"children":[{"name":"path","attribs":{"d":"M7,19h2c1.1,0,2,0.9,2,2v1h2v-1c0-1.1,0.9-2,2-2h2v-2H7V19z"},"children":[]}]}]}]}]}]};exports.ic_sports_golf=ic_sports_golf;var ic_sports_golf_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M12,16c3.87,0,7-3.13,7-7c0-3.87-3.13-7-7-7C8.13,2,5,5.13,5,9C5,12.87,8.13,16,12,16z M12,4c2.76,0,5,2.24,5,5 s-2.24,5-5,5s-5-2.24-5-5S9.24,4,12,4z"},"children":[{"name":"path","attribs":{"d":"M12,16c3.87,0,7-3.13,7-7c0-3.87-3.13-7-7-7C8.13,2,5,5.13,5,9C5,12.87,8.13,16,12,16z M12,4c2.76,0,5,2.24,5,5 s-2.24,5-5,5s-5-2.24-5-5S9.24,4,12,4z"},"children":[]}]},{"name":"circle","attribs":{"cx":"10","cy":"8","r":"1"},"children":[{"name":"circle","attribs":{"cx":"10","cy":"8","r":"1"},"children":[]}]},{"name":"circle","attribs":{"cx":"14","cy":"8","r":"1"},"children":[{"name":"circle","attribs":{"cx":"14","cy":"8","r":"1"},"children":[]}]},{"name":"circle","attribs":{"cx":"12","cy":"6","r":"1"},"children":[{"name":"circle","attribs":{"cx":"12","cy":"6","r":"1"},"children":[]}]},{"name":"path","attribs":{"d":"M7,19h2c1.1,0,2,0.9,2,2v1h2v-1c0-1.1,0.9-2,2-2h2v-2H7V19z"},"children":[{"name":"path","attribs":{"d":"M7,19h2c1.1,0,2,0.9,2,2v1h2v-1c0-1.1,0.9-2,2-2h2v-2H7V19z"},"children":[]}]}]}]}]}]};exports.ic_sports_golf_outline=ic_sports_golf_outline;var ic_sports_golf_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M12,14c2.76,0,5-2.24,5-5s-2.24-5-5-5S7,6.24,7,9S9.24,14,12,14z M14,7c0.55,0,1,0.45,1,1 c0,0.55-0.45,1-1,1s-1-0.45-1-1C13,7.45,13.45,7,14,7z M12,5c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1s-1-0.45-1-1 C11,5.45,11.45,5,12,5z M10,7c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1S9,8.55,9,8C9,7.45,9.45,7,10,7z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M12,14c2.76,0,5-2.24,5-5s-2.24-5-5-5S7,6.24,7,9S9.24,14,12,14z M14,7c0.55,0,1,0.45,1,1 c0,0.55-0.45,1-1,1s-1-0.45-1-1C13,7.45,13.45,7,14,7z M12,5c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1s-1-0.45-1-1 C11,5.45,11.45,5,12,5z M10,7c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1S9,8.55,9,8C9,7.45,9.45,7,10,7z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M12,16c3.87,0,7-3.13,7-7c0-3.87-3.13-7-7-7C8.13,2,5,5.13,5,9C5,12.87,8.13,16,12,16z M12,4c2.76,0,5,2.24,5,5 s-2.24,5-5,5s-5-2.24-5-5S9.24,4,12,4z"},"children":[{"name":"path","attribs":{"d":"M12,16c3.87,0,7-3.13,7-7c0-3.87-3.13-7-7-7C8.13,2,5,5.13,5,9C5,12.87,8.13,16,12,16z M12,4c2.76,0,5,2.24,5,5 s-2.24,5-5,5s-5-2.24-5-5S9.24,4,12,4z"},"children":[]}]},{"name":"circle","attribs":{"cx":"10","cy":"8","r":"1"},"children":[{"name":"circle","attribs":{"cx":"10","cy":"8","r":"1"},"children":[]}]},{"name":"circle","attribs":{"cx":"14","cy":"8","r":"1"},"children":[{"name":"circle","attribs":{"cx":"14","cy":"8","r":"1"},"children":[]}]},{"name":"circle","attribs":{"cx":"12","cy":"6","r":"1"},"children":[{"name":"circle","attribs":{"cx":"12","cy":"6","r":"1"},"children":[]}]},{"name":"path","attribs":{"d":"M7,19h2c1.1,0,2,0.9,2,2v1h2v-1c0-1.1,0.9-2,2-2h2v-2H7V19z"},"children":[{"name":"path","attribs":{"d":"M7,19h2c1.1,0,2,0.9,2,2v1h2v-1c0-1.1,0.9-2,2-2h2v-2H7V19z"},"children":[]}]}]}]}]}]};exports.ic_sports_golf_twotone=ic_sports_golf_twotone;var ic_sports_handball={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M14.27,6C13.72,6.95,14.05,8.18,15,8.73c0.95,0.55,2.18,0.22,2.73-0.73c0.55-0.95,0.22-2.18-0.73-2.73 C16.05,4.72,14.82,5.05,14.27,6z"},"children":[{"name":"path","attribs":{"d":"M14.27,6C13.72,6.95,14.05,8.18,15,8.73c0.95,0.55,2.18,0.22,2.73-0.73c0.55-0.95,0.22-2.18-0.73-2.73 C16.05,4.72,14.82,5.05,14.27,6z"},"children":[]}]},{"name":"path","attribs":{"d":"M15.84,10.41c0,0-1.63-0.94-2.6-1.5c-2.38-1.38-3.2-4.44-1.82-6.82l-1.73-1C8.1,3.83,8.6,7.21,10.66,9.4l-5.15,8.92 l1.73,1l1.5-2.6l1.73,1l-3,5.2l1.73,1l6.29-10.89c1.14,1.55,1.33,3.69,0.31,5.46l1.73,1C19.13,16.74,18.81,12.91,15.84,10.41z"},"children":[{"name":"path","attribs":{"d":"M15.84,10.41c0,0-1.63-0.94-2.6-1.5c-2.38-1.38-3.2-4.44-1.82-6.82l-1.73-1C8.1,3.83,8.6,7.21,10.66,9.4l-5.15,8.92 l1.73,1l1.5-2.6l1.73,1l-3,5.2l1.73,1l6.29-10.89c1.14,1.55,1.33,3.69,0.31,5.46l1.73,1C19.13,16.74,18.81,12.91,15.84,10.41z"},"children":[]}]},{"name":"path","attribs":{"d":"M12.75,3.8c0.72,0.41,1.63,0.17,2.05-0.55c0.41-0.72,0.17-1.63-0.55-2.05c-0.72-0.41-1.63-0.17-2.05,0.55 C11.79,2.47,12.03,3.39,12.75,3.8z"},"children":[{"name":"path","attribs":{"d":"M12.75,3.8c0.72,0.41,1.63,0.17,2.05-0.55c0.41-0.72,0.17-1.63-0.55-2.05c-0.72-0.41-1.63-0.17-2.05,0.55 C11.79,2.47,12.03,3.39,12.75,3.8z"},"children":[]}]}]}]}]}]};exports.ic_sports_handball=ic_sports_handball;var ic_sports_handball_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M14.27,6C13.72,6.95,14.05,8.18,15,8.73c0.95,0.55,2.18,0.22,2.73-0.73c0.55-0.95,0.22-2.18-0.73-2.73 C16.05,4.72,14.82,5.05,14.27,6z"},"children":[{"name":"path","attribs":{"d":"M14.27,6C13.72,6.95,14.05,8.18,15,8.73c0.95,0.55,2.18,0.22,2.73-0.73c0.55-0.95,0.22-2.18-0.73-2.73 C16.05,4.72,14.82,5.05,14.27,6z"},"children":[]}]},{"name":"path","attribs":{"d":"M15.84,10.41c0,0-1.63-0.94-2.6-1.5c-2.38-1.38-3.2-4.44-1.82-6.82l-1.73-1C8.1,3.83,8.6,7.21,10.66,9.4l-5.15,8.92 l1.73,1l1.5-2.6l1.73,1l-3,5.2l1.73,1l6.29-10.89c1.14,1.55,1.33,3.69,0.31,5.46l1.73,1C19.13,16.74,18.81,12.91,15.84,10.41z"},"children":[{"name":"path","attribs":{"d":"M15.84,10.41c0,0-1.63-0.94-2.6-1.5c-2.38-1.38-3.2-4.44-1.82-6.82l-1.73-1C8.1,3.83,8.6,7.21,10.66,9.4l-5.15,8.92 l1.73,1l1.5-2.6l1.73,1l-3,5.2l1.73,1l6.29-10.89c1.14,1.55,1.33,3.69,0.31,5.46l1.73,1C19.13,16.74,18.81,12.91,15.84,10.41z"},"children":[]}]},{"name":"path","attribs":{"d":"M12.75,3.8c0.72,0.41,1.63,0.17,2.05-0.55c0.41-0.72,0.17-1.63-0.55-2.05c-0.72-0.41-1.63-0.17-2.05,0.55 C11.79,2.47,12.03,3.39,12.75,3.8z"},"children":[{"name":"path","attribs":{"d":"M12.75,3.8c0.72,0.41,1.63,0.17,2.05-0.55c0.41-0.72,0.17-1.63-0.55-2.05c-0.72-0.41-1.63-0.17-2.05,0.55 C11.79,2.47,12.03,3.39,12.75,3.8z"},"children":[]}]}]}]}]}]};exports.ic_sports_handball_outline=ic_sports_handball_outline;var ic_sports_handball_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M14.27,6C13.72,6.95,14.05,8.18,15,8.73c0.95,0.55,2.18,0.22,2.73-0.73c0.55-0.95,0.22-2.18-0.73-2.73 C16.05,4.72,14.82,5.05,14.27,6z"},"children":[{"name":"path","attribs":{"d":"M14.27,6C13.72,6.95,14.05,8.18,15,8.73c0.95,0.55,2.18,0.22,2.73-0.73c0.55-0.95,0.22-2.18-0.73-2.73 C16.05,4.72,14.82,5.05,14.27,6z"},"children":[]}]},{"name":"path","attribs":{"d":"M15.84,10.41c0,0-1.63-0.94-2.6-1.5c-2.38-1.38-3.2-4.44-1.82-6.82l-1.73-1C8.1,3.83,8.6,7.21,10.66,9.4l-5.15,8.92 l1.73,1l1.5-2.6l1.73,1l-3,5.2l1.73,1l6.29-10.89c1.14,1.55,1.33,3.69,0.31,5.46l1.73,1C19.13,16.74,18.81,12.91,15.84,10.41z"},"children":[{"name":"path","attribs":{"d":"M15.84,10.41c0,0-1.63-0.94-2.6-1.5c-2.38-1.38-3.2-4.44-1.82-6.82l-1.73-1C8.1,3.83,8.6,7.21,10.66,9.4l-5.15,8.92 l1.73,1l1.5-2.6l1.73,1l-3,5.2l1.73,1l6.29-10.89c1.14,1.55,1.33,3.69,0.31,5.46l1.73,1C19.13,16.74,18.81,12.91,15.84,10.41z"},"children":[]}]},{"name":"path","attribs":{"d":"M12.75,3.8c0.72,0.41,1.63,0.17,2.05-0.55c0.41-0.72,0.17-1.63-0.55-2.05c-0.72-0.41-1.63-0.17-2.05,0.55 C11.79,2.47,12.03,3.39,12.75,3.8z"},"children":[{"name":"path","attribs":{"d":"M12.75,3.8c0.72,0.41,1.63,0.17,2.05-0.55c0.41-0.72,0.17-1.63-0.55-2.05c-0.72-0.41-1.63-0.17-2.05,0.55 C11.79,2.47,12.03,3.39,12.75,3.8z"},"children":[]}]}]}]}]}]};exports.ic_sports_handball_twotone=ic_sports_handball_twotone;var ic_sports_hockey={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M2,17v3l2,0v-4H3C2.45,16,2,16.45,2,17z"},"children":[{"name":"path","attribs":{"d":"M2,17v3l2,0v-4H3C2.45,16,2,16.45,2,17z"},"children":[]}]},{"name":"path","attribs":{"d":"M9,16H5v4l4.69-0.01c0.38,0,0.72-0.21,0.89-0.55l0.87-1.9l-1.59-3.48L9,16z"},"children":[{"name":"path","attribs":{"d":"M9,16H5v4l4.69-0.01c0.38,0,0.72-0.21,0.89-0.55l0.87-1.9l-1.59-3.48L9,16z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M21.71,16.29C21.53,16.11,21.28,16,21,16h-1v4l2,0v-3C22,16.72,21.89,16.47,21.71,16.29z"},"children":[{"name":"path","attribs":{"d":"M21.71,16.29C21.53,16.11,21.28,16,21,16h-1v4l2,0v-3C22,16.72,21.89,16.47,21.71,16.29z"},"children":[]}]}]}]},{"name":"path","attribs":{"d":"M13.6,12.84L17.65,4H14.3l-1.76,3.97l-0.49,1.1L12,9.21L9.7,4H6.35l4.05,8.84l1.52,3.32L12,16.34l1.42,3.1 c0.17,0.34,0.51,0.55,0.89,0.55L19,20v-4h-4L13.6,12.84z"},"children":[{"name":"path","attribs":{"d":"M13.6,12.84L17.65,4H14.3l-1.76,3.97l-0.49,1.1L12,9.21L9.7,4H6.35l4.05,8.84l1.52,3.32L12,16.34l1.42,3.1 c0.17,0.34,0.51,0.55,0.89,0.55L19,20v-4h-4L13.6,12.84z"},"children":[]}]}]}]}]}]};exports.ic_sports_hockey=ic_sports_hockey;var ic_sports_hockey_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M2,17v3l2,0v-4H3C2.45,16,2,16.45,2,17z"},"children":[{"name":"path","attribs":{"d":"M2,17v3l2,0v-4H3C2.45,16,2,16.45,2,17z"},"children":[]}]},{"name":"path","attribs":{"d":"M9,16H5v4l4.69-0.01c0.38,0,0.72-0.21,0.89-0.55l0.87-1.9l-1.59-3.48L9,16z"},"children":[{"name":"path","attribs":{"d":"M9,16H5v4l4.69-0.01c0.38,0,0.72-0.21,0.89-0.55l0.87-1.9l-1.59-3.48L9,16z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M21.71,16.29C21.53,16.11,21.28,16,21,16h-1v4l2,0v-3C22,16.72,21.89,16.47,21.71,16.29z"},"children":[{"name":"path","attribs":{"d":"M21.71,16.29C21.53,16.11,21.28,16,21,16h-1v4l2,0v-3C22,16.72,21.89,16.47,21.71,16.29z"},"children":[]}]}]}]},{"name":"path","attribs":{"d":"M13.6,12.84L17.65,4H14.3l-1.76,3.97l-0.49,1.1L12,9.21L9.7,4H6.35l4.05,8.84l1.52,3.32L12,16.34l1.42,3.1 c0.17,0.34,0.51,0.55,0.89,0.55L19,20v-4h-4L13.6,12.84z"},"children":[{"name":"path","attribs":{"d":"M13.6,12.84L17.65,4H14.3l-1.76,3.97l-0.49,1.1L12,9.21L9.7,4H6.35l4.05,8.84l1.52,3.32L12,16.34l1.42,3.1 c0.17,0.34,0.51,0.55,0.89,0.55L19,20v-4h-4L13.6,12.84z"},"children":[]}]}]}]}]}]};exports.ic_sports_hockey_outline=ic_sports_hockey_outline;var ic_sports_hockey_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M2,17v3l2,0v-4H3C2.45,16,2,16.45,2,17z"},"children":[{"name":"path","attribs":{"d":"M2,17v3l2,0v-4H3C2.45,16,2,16.45,2,17z"},"children":[]}]},{"name":"path","attribs":{"d":"M9,16H5v4l4.69-0.01c0.38,0,0.72-0.21,0.89-0.55l0.87-1.9l-1.59-3.48L9,16z"},"children":[{"name":"path","attribs":{"d":"M9,16H5v4l4.69-0.01c0.38,0,0.72-0.21,0.89-0.55l0.87-1.9l-1.59-3.48L9,16z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M21.71,16.29C21.53,16.11,21.28,16,21,16h-1v4l2,0v-3C22,16.72,21.89,16.47,21.71,16.29z"},"children":[{"name":"path","attribs":{"d":"M21.71,16.29C21.53,16.11,21.28,16,21,16h-1v4l2,0v-3C22,16.72,21.89,16.47,21.71,16.29z"},"children":[]}]}]}]},{"name":"path","attribs":{"d":"M13.6,12.84L17.65,4H14.3l-1.76,3.97l-0.49,1.1L12,9.21L9.7,4H6.35l4.05,8.84l1.52,3.32L12,16.34l1.42,3.1 c0.17,0.34,0.51,0.55,0.89,0.55L19,20v-4h-4L13.6,12.84z"},"children":[{"name":"path","attribs":{"d":"M13.6,12.84L17.65,4H14.3l-1.76,3.97l-0.49,1.1L12,9.21L9.7,4H6.35l4.05,8.84l1.52,3.32L12,16.34l1.42,3.1 c0.17,0.34,0.51,0.55,0.89,0.55L19,20v-4h-4L13.6,12.84z"},"children":[]}]}]}]}]}]};exports.ic_sports_hockey_twotone=ic_sports_hockey_twotone;var ic_sports_kabaddi={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"cx":"16.5","cy":"2.38","r":"2"},"children":[{"name":"circle","attribs":{"cx":"16.5","cy":"2.38","r":"2"},"children":[]}]},{"name":"path","attribs":{"d":"M24,11.88v-4.7l-5.05-2.14c-0.97-0.41-2.09-0.06-2.65,0.84l0,0l-1,1.6c-0.67,1.18-1.91,2.06-3.41,2.32l0.06,0.06 c0.69,0.69,1.52,1.07,2.46,1.17c0.8-0.42,1.52-0.98,2.09-1.64l0.6,3l-1.16,1.1L15,14.38v0.76v6.74h2v-6l2.1-2l1.8,8H23l-2.18-11 l-0.62-3.1l1.8,0.7v3.4H24z"},"children":[{"name":"path","attribs":{"d":"M24,11.88v-4.7l-5.05-2.14c-0.97-0.41-2.09-0.06-2.65,0.84l0,0l-1,1.6c-0.67,1.18-1.91,2.06-3.41,2.32l0.06,0.06 c0.69,0.69,1.52,1.07,2.46,1.17c0.8-0.42,1.52-0.98,2.09-1.64l0.6,3l-1.16,1.1L15,14.38v0.76v6.74h2v-6l2.1-2l1.8,8H23l-2.18-11 l-0.62-3.1l1.8,0.7v3.4H24z"},"children":[]}]},{"name":"path","attribs":{"d":"M10.29,8.09c0.22,0.15,0.47,0.24,0.72,0.29c0.13,0.02,0.25,0.04,0.38,0.04s0.26-0.01,0.38-0.04 c0.13-0.02,0.25-0.06,0.37-0.11c0.24-0.1,0.47-0.24,0.66-0.44c0.49-0.49,0.67-1.17,0.55-1.8C13.28,5.66,13.1,5.29,12.8,5 c-0.19-0.19-0.42-0.34-0.66-0.44c-0.12-0.05-0.24-0.09-0.37-0.11s-0.25-0.04-0.38-0.04c-0.12,0-0.23,0.01-0.35,0.03 c-0.14,0.02-0.28,0.06-0.41,0.11C10.4,4.66,10.17,4.81,9.98,5C9.68,5.29,9.5,5.66,9.43,6.03c-0.12,0.63,0.06,1.31,0.55,1.8 C10.07,7.93,10.18,8.01,10.29,8.09z"},"children":[{"name":"path","attribs":{"d":"M10.29,8.09c0.22,0.15,0.47,0.24,0.72,0.29c0.13,0.02,0.25,0.04,0.38,0.04s0.26-0.01,0.38-0.04 c0.13-0.02,0.25-0.06,0.37-0.11c0.24-0.1,0.47-0.24,0.66-0.44c0.49-0.49,0.67-1.17,0.55-1.8C13.28,5.66,13.1,5.29,12.8,5 c-0.19-0.19-0.42-0.34-0.66-0.44c-0.12-0.05-0.24-0.09-0.37-0.11s-0.25-0.04-0.38-0.04c-0.12,0-0.23,0.01-0.35,0.03 c-0.14,0.02-0.28,0.06-0.41,0.11C10.4,4.66,10.17,4.81,9.98,5C9.68,5.29,9.5,5.66,9.43,6.03c-0.12,0.63,0.06,1.31,0.55,1.8 C10.07,7.93,10.18,8.01,10.29,8.09z"},"children":[]}]},{"name":"path","attribs":{"d":"M11.24,10.56l-2-2c-0.1-0.1-0.2-0.18-0.31-0.26C8.71,8.16,8.46,8.06,8.21,8.02C8.08,7.99,7.96,7.98,7.83,7.98 c-0.51,0-1.02,0.2-1.41,0.59l-3.34,3.34c-0.41,0.41-0.62,0.98-0.58,1.54C2.5,13.63,2.54,13.82,2.61,14l1.07,2.95l-3.63,3.63 L1.46,22l4.24-4.24v-2.22L7,16.75v5.13h2v-6l-2.12-2.12l2.36-2.36l0.71,0.71l0,0c1.29,1.26,2.97,2.04,5.03,2.04l-0.14-2.07 C13.34,12.06,12.14,11.46,11.24,10.56z"},"children":[{"name":"path","attribs":{"d":"M11.24,10.56l-2-2c-0.1-0.1-0.2-0.18-0.31-0.26C8.71,8.16,8.46,8.06,8.21,8.02C8.08,7.99,7.96,7.98,7.83,7.98 c-0.51,0-1.02,0.2-1.41,0.59l-3.34,3.34c-0.41,0.41-0.62,0.98-0.58,1.54C2.5,13.63,2.54,13.82,2.61,14l1.07,2.95l-3.63,3.63 L1.46,22l4.24-4.24v-2.22L7,16.75v5.13h2v-6l-2.12-2.12l2.36-2.36l0.71,0.71l0,0c1.29,1.26,2.97,2.04,5.03,2.04l-0.14-2.07 C13.34,12.06,12.14,11.46,11.24,10.56z"},"children":[]}]}]}]}]}]};exports.ic_sports_kabaddi=ic_sports_kabaddi;var ic_sports_kabaddi_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"cx":"16.5","cy":"2.38","r":"2"},"children":[{"name":"circle","attribs":{"cx":"16.5","cy":"2.38","r":"2"},"children":[]}]},{"name":"path","attribs":{"d":"M24,11.88v-4.7l-5.05-2.14c-0.97-0.41-2.09-0.06-2.65,0.84l0,0l-1,1.6c-0.67,1.18-1.91,2.06-3.41,2.32l0.06,0.06 c0.69,0.69,1.52,1.07,2.46,1.17c0.8-0.42,1.52-0.98,2.09-1.64l0.6,3l-1.16,1.1L15,14.38v0.76v6.74h2v-6l2.1-2l1.8,8H23l-2.18-11 l-0.62-3.1l1.8,0.7v3.4H24z"},"children":[{"name":"path","attribs":{"d":"M24,11.88v-4.7l-5.05-2.14c-0.97-0.41-2.09-0.06-2.65,0.84l0,0l-1,1.6c-0.67,1.18-1.91,2.06-3.41,2.32l0.06,0.06 c0.69,0.69,1.52,1.07,2.46,1.17c0.8-0.42,1.52-0.98,2.09-1.64l0.6,3l-1.16,1.1L15,14.38v0.76v6.74h2v-6l2.1-2l1.8,8H23l-2.18-11 l-0.62-3.1l1.8,0.7v3.4H24z"},"children":[]}]},{"name":"path","attribs":{"d":"M10.29,8.09c0.22,0.15,0.47,0.24,0.72,0.29c0.13,0.02,0.25,0.04,0.38,0.04s0.26-0.01,0.38-0.04 c0.13-0.02,0.25-0.06,0.37-0.11c0.24-0.1,0.47-0.24,0.66-0.44c0.49-0.49,0.67-1.17,0.55-1.8C13.28,5.66,13.1,5.29,12.8,5 c-0.19-0.19-0.42-0.34-0.66-0.44c-0.12-0.05-0.24-0.09-0.37-0.11s-0.25-0.04-0.38-0.04c-0.12,0-0.23,0.01-0.35,0.03 c-0.14,0.02-0.28,0.06-0.41,0.11C10.4,4.66,10.17,4.81,9.98,5C9.68,5.29,9.5,5.66,9.43,6.03c-0.12,0.63,0.06,1.31,0.55,1.8 C10.07,7.93,10.18,8.01,10.29,8.09z"},"children":[{"name":"path","attribs":{"d":"M10.29,8.09c0.22,0.15,0.47,0.24,0.72,0.29c0.13,0.02,0.25,0.04,0.38,0.04s0.26-0.01,0.38-0.04 c0.13-0.02,0.25-0.06,0.37-0.11c0.24-0.1,0.47-0.24,0.66-0.44c0.49-0.49,0.67-1.17,0.55-1.8C13.28,5.66,13.1,5.29,12.8,5 c-0.19-0.19-0.42-0.34-0.66-0.44c-0.12-0.05-0.24-0.09-0.37-0.11s-0.25-0.04-0.38-0.04c-0.12,0-0.23,0.01-0.35,0.03 c-0.14,0.02-0.28,0.06-0.41,0.11C10.4,4.66,10.17,4.81,9.98,5C9.68,5.29,9.5,5.66,9.43,6.03c-0.12,0.63,0.06,1.31,0.55,1.8 C10.07,7.93,10.18,8.01,10.29,8.09z"},"children":[]}]},{"name":"path","attribs":{"d":"M11.24,10.56l-2-2c-0.1-0.1-0.2-0.18-0.31-0.26C8.71,8.16,8.46,8.06,8.21,8.02C8.08,7.99,7.96,7.98,7.83,7.98 c-0.51,0-1.02,0.2-1.41,0.59l-3.34,3.34c-0.41,0.41-0.62,0.98-0.58,1.54C2.5,13.63,2.54,13.82,2.61,14l1.07,2.95l-3.63,3.63 L1.46,22l4.24-4.24v-2.22L7,16.75v5.13h2v-6l-2.12-2.12l2.36-2.36l0.71,0.71l0,0c1.29,1.26,2.97,2.04,5.03,2.04l-0.14-2.07 C13.34,12.06,12.14,11.46,11.24,10.56z"},"children":[{"name":"path","attribs":{"d":"M11.24,10.56l-2-2c-0.1-0.1-0.2-0.18-0.31-0.26C8.71,8.16,8.46,8.06,8.21,8.02C8.08,7.99,7.96,7.98,7.83,7.98 c-0.51,0-1.02,0.2-1.41,0.59l-3.34,3.34c-0.41,0.41-0.62,0.98-0.58,1.54C2.5,13.63,2.54,13.82,2.61,14l1.07,2.95l-3.63,3.63 L1.46,22l4.24-4.24v-2.22L7,16.75v5.13h2v-6l-2.12-2.12l2.36-2.36l0.71,0.71l0,0c1.29,1.26,2.97,2.04,5.03,2.04l-0.14-2.07 C13.34,12.06,12.14,11.46,11.24,10.56z"},"children":[]}]}]}]}]}]};exports.ic_sports_kabaddi_outline=ic_sports_kabaddi_outline;var ic_sports_kabaddi_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"cx":"16.5","cy":"2.38","r":"2"},"children":[{"name":"circle","attribs":{"cx":"16.5","cy":"2.38","r":"2"},"children":[]}]},{"name":"path","attribs":{"d":"M24,11.88v-4.7l-5.05-2.14c-0.97-0.41-2.09-0.06-2.65,0.84l0,0l-1,1.6c-0.67,1.18-1.91,2.06-3.41,2.32l0.06,0.06 c0.69,0.69,1.52,1.07,2.46,1.17c0.8-0.42,1.52-0.98,2.09-1.64l0.6,3l-1.16,1.1L15,14.38v0.76v6.74h2v-6l2.1-2l1.8,8H23l-2.18-11 l-0.62-3.1l1.8,0.7v3.4H24z"},"children":[{"name":"path","attribs":{"d":"M24,11.88v-4.7l-5.05-2.14c-0.97-0.41-2.09-0.06-2.65,0.84l0,0l-1,1.6c-0.67,1.18-1.91,2.06-3.41,2.32l0.06,0.06 c0.69,0.69,1.52,1.07,2.46,1.17c0.8-0.42,1.52-0.98,2.09-1.64l0.6,3l-1.16,1.1L15,14.38v0.76v6.74h2v-6l2.1-2l1.8,8H23l-2.18-11 l-0.62-3.1l1.8,0.7v3.4H24z"},"children":[]}]},{"name":"path","attribs":{"d":"M10.29,8.09c0.22,0.15,0.47,0.24,0.72,0.29c0.13,0.02,0.25,0.04,0.38,0.04s0.26-0.01,0.38-0.04 c0.13-0.02,0.25-0.06,0.37-0.11c0.24-0.1,0.47-0.24,0.66-0.44c0.49-0.49,0.67-1.17,0.55-1.8C13.28,5.66,13.1,5.29,12.8,5 c-0.19-0.19-0.42-0.34-0.66-0.44c-0.12-0.05-0.24-0.09-0.37-0.11s-0.25-0.04-0.38-0.04c-0.12,0-0.23,0.01-0.35,0.03 c-0.14,0.02-0.28,0.06-0.41,0.11C10.4,4.66,10.17,4.81,9.98,5C9.68,5.29,9.5,5.66,9.43,6.03c-0.12,0.63,0.06,1.31,0.55,1.8 C10.07,7.93,10.18,8.01,10.29,8.09z"},"children":[{"name":"path","attribs":{"d":"M10.29,8.09c0.22,0.15,0.47,0.24,0.72,0.29c0.13,0.02,0.25,0.04,0.38,0.04s0.26-0.01,0.38-0.04 c0.13-0.02,0.25-0.06,0.37-0.11c0.24-0.1,0.47-0.24,0.66-0.44c0.49-0.49,0.67-1.17,0.55-1.8C13.28,5.66,13.1,5.29,12.8,5 c-0.19-0.19-0.42-0.34-0.66-0.44c-0.12-0.05-0.24-0.09-0.37-0.11s-0.25-0.04-0.38-0.04c-0.12,0-0.23,0.01-0.35,0.03 c-0.14,0.02-0.28,0.06-0.41,0.11C10.4,4.66,10.17,4.81,9.98,5C9.68,5.29,9.5,5.66,9.43,6.03c-0.12,0.63,0.06,1.31,0.55,1.8 C10.07,7.93,10.18,8.01,10.29,8.09z"},"children":[]}]},{"name":"path","attribs":{"d":"M11.24,10.56l-2-2c-0.1-0.1-0.2-0.18-0.31-0.26C8.71,8.16,8.46,8.06,8.21,8.02C8.08,7.99,7.96,7.98,7.83,7.98 c-0.51,0-1.02,0.2-1.41,0.59l-3.34,3.34c-0.41,0.41-0.62,0.98-0.58,1.54C2.5,13.63,2.54,13.82,2.61,14l1.07,2.95l-3.63,3.63 L1.46,22l4.24-4.24v-2.22L7,16.75v5.13h2v-6l-2.12-2.12l2.36-2.36l0.71,0.71l0,0c1.29,1.26,2.97,2.04,5.03,2.04l-0.14-2.07 C13.34,12.06,12.14,11.46,11.24,10.56z"},"children":[{"name":"path","attribs":{"d":"M11.24,10.56l-2-2c-0.1-0.1-0.2-0.18-0.31-0.26C8.71,8.16,8.46,8.06,8.21,8.02C8.08,7.99,7.96,7.98,7.83,7.98 c-0.51,0-1.02,0.2-1.41,0.59l-3.34,3.34c-0.41,0.41-0.62,0.98-0.58,1.54C2.5,13.63,2.54,13.82,2.61,14l1.07,2.95l-3.63,3.63 L1.46,22l4.24-4.24v-2.22L7,16.75v5.13h2v-6l-2.12-2.12l2.36-2.36l0.71,0.71l0,0c1.29,1.26,2.97,2.04,5.03,2.04l-0.14-2.07 C13.34,12.06,12.14,11.46,11.24,10.56z"},"children":[]}]}]}]}]}]};exports.ic_sports_kabaddi_twotone=ic_sports_kabaddi_twotone;var ic_sports_mma={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M7,20c0,0.55,0.45,1,1,1h8c0.55,0,1-0.45,1-1v-3H7V20z"},"children":[{"name":"path","attribs":{"d":"M7,20c0,0.55,0.45,1,1,1h8c0.55,0,1-0.45,1-1v-3H7V20z"},"children":[]}]},{"name":"path","attribs":{"d":"M18,7c-0.55,0-1,0.45-1,1V5c0-1.1-0.9-2-2-2H7C5.9,3,5,3.9,5,5v5.8c0,0.13,0.01,0.26,0.04,0.39l0.8,4 c0.09,0.47,0.5,0.8,0.98,0.8h10.36c0.45,0,0.89-0.36,0.98-0.8l0.8-4C18.99,11.06,19,10.93,19,10.8V8C19,7.45,18.55,7,18,7z M15,10 H7V7h8V10z"},"children":[{"name":"path","attribs":{"d":"M18,7c-0.55,0-1,0.45-1,1V5c0-1.1-0.9-2-2-2H7C5.9,3,5,3.9,5,5v5.8c0,0.13,0.01,0.26,0.04,0.39l0.8,4 c0.09,0.47,0.5,0.8,0.98,0.8h10.36c0.45,0,0.89-0.36,0.98-0.8l0.8-4C18.99,11.06,19,10.93,19,10.8V8C19,7.45,18.55,7,18,7z M15,10 H7V7h8V10z"},"children":[]}]}]}]}]}]};exports.ic_sports_mma=ic_sports_mma;var ic_sports_mma_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M7,20c0,0.55,0.45,1,1,1h8c0.55,0,1-0.45,1-1v-3H7V20z"},"children":[{"name":"path","attribs":{"d":"M7,20c0,0.55,0.45,1,1,1h8c0.55,0,1-0.45,1-1v-3H7V20z"},"children":[]}]},{"name":"path","attribs":{"d":"M18,7c-0.55,0-1,0.45-1,1V5c0-1.1-0.9-2-2-2H7C5.9,3,5,3.9,5,5v5.8c0,0.13,0.01,0.26,0.04,0.39l0.8,4 c0.09,0.47,0.5,0.8,0.98,0.8H17c0.55,0,1.09-0.44,1.2-0.98l0.77-3.83C18.99,11.06,19,10.93,19,10.8V9V8C19,7.45,18.55,7,18,7z M17,10.6c0,0.13-0.64,3.4-0.64,3.4H7.64c0,0-0.64-3.26-0.64-3.4V5h8v5h2V10.6z"},"children":[{"name":"path","attribs":{"d":"M18,7c-0.55,0-1,0.45-1,1V5c0-1.1-0.9-2-2-2H7C5.9,3,5,3.9,5,5v5.8c0,0.13,0.01,0.26,0.04,0.39l0.8,4 c0.09,0.47,0.5,0.8,0.98,0.8H17c0.55,0,1.09-0.44,1.2-0.98l0.77-3.83C18.99,11.06,19,10.93,19,10.8V9V8C19,7.45,18.55,7,18,7z M17,10.6c0,0.13-0.64,3.4-0.64,3.4H7.64c0,0-0.64-3.26-0.64-3.4V5h8v5h2V10.6z"},"children":[]}]},{"name":"rect","attribs":{"height":"3","width":"6","x":"8","y":"7"},"children":[{"name":"rect","attribs":{"height":"3","width":"6","x":"8","y":"7"},"children":[]}]}]}]}]}]};exports.ic_sports_mma_outline=ic_sports_mma_outline;var ic_sports_mma_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M15,5H7v5.6C7,10.74,7.64,14,7.64,14h8.72c0,0,0.64-3.26,0.64-3.4V10h-2V5z M14,10H8V7h6V10z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M15,5H7v5.6C7,10.74,7.64,14,7.64,14h8.72c0,0,0.64-3.26,0.64-3.4V10h-2V5z M14,10H8V7h6V10z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M7,20c0,0.55,0.45,1,1,1h8c0.55,0,1-0.45,1-1v-3H7V20z"},"children":[{"name":"path","attribs":{"d":"M7,20c0,0.55,0.45,1,1,1h8c0.55,0,1-0.45,1-1v-3H7V20z"},"children":[]}]},{"name":"path","attribs":{"d":"M18,7c-0.55,0-1,0.45-1,1V5c0-1.1-0.9-2-2-2H7C5.9,3,5,3.9,5,5v5.8c0,0.13,0.01,0.26,0.04,0.39l0.8,4 c0.09,0.47,0.5,0.8,0.98,0.8H17c0.55,0,1.09-0.44,1.2-0.98l0.77-3.83C18.99,11.06,19,10.93,19,10.8V9V8C19,7.45,18.55,7,18,7z M17,10.6c0,0.13-0.64,3.4-0.64,3.4H7.64c0,0-0.64-3.26-0.64-3.4V5h8v5h2V10.6z"},"children":[{"name":"path","attribs":{"d":"M18,7c-0.55,0-1,0.45-1,1V5c0-1.1-0.9-2-2-2H7C5.9,3,5,3.9,5,5v5.8c0,0.13,0.01,0.26,0.04,0.39l0.8,4 c0.09,0.47,0.5,0.8,0.98,0.8H17c0.55,0,1.09-0.44,1.2-0.98l0.77-3.83C18.99,11.06,19,10.93,19,10.8V9V8C19,7.45,18.55,7,18,7z M17,10.6c0,0.13-0.64,3.4-0.64,3.4H7.64c0,0-0.64-3.26-0.64-3.4V5h8v5h2V10.6z"},"children":[]}]},{"name":"rect","attribs":{"height":"3","width":"6","x":"8","y":"7"},"children":[{"name":"rect","attribs":{"height":"3","width":"6","x":"8","y":"7"},"children":[]}]}]}]}]}]};exports.ic_sports_mma_twotone=ic_sports_mma_twotone;var ic_sports_motorsports={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M12,11.39c0-0.65-0.39-1.23-0.98-1.48L5.44,7.55c-1.48,1.68-2.32,3.7-2.8,5.45h7.75C11.28,13,12,12.28,12,11.39z"},"children":[{"name":"path","attribs":{"d":"M12,11.39c0-0.65-0.39-1.23-0.98-1.48L5.44,7.55c-1.48,1.68-2.32,3.7-2.8,5.45h7.75C11.28,13,12,12.28,12,11.39z"},"children":[]}]},{"name":"path","attribs":{"d":"M21.96,11.22c-0.41-4.41-4.56-7.49-8.98-7.2c-2.51,0.16-4.44,0.94-5.93,2.04l4.74,2.01c1.33,0.57,2.2,1.87,2.2,3.32 c0,1.99-1.62,3.61-3.61,3.61H2.21C2,16.31,2,17.2,2,17.2V18c0,1.1,0.9,2,2,2h10C18.67,20,22.41,15.99,21.96,11.22z"},"children":[{"name":"path","attribs":{"d":"M21.96,11.22c-0.41-4.41-4.56-7.49-8.98-7.2c-2.51,0.16-4.44,0.94-5.93,2.04l4.74,2.01c1.33,0.57,2.2,1.87,2.2,3.32 c0,1.99-1.62,3.61-3.61,3.61H2.21C2,16.31,2,17.2,2,17.2V18c0,1.1,0.9,2,2,2h10C18.67,20,22.41,15.99,21.96,11.22z"},"children":[]}]}]}]}]}]};exports.ic_sports_motorsports=ic_sports_motorsports;var ic_sports_motorsports_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M21.96,11.22C21.57,7.01,17.76,4,13.56,4c-0.19,0-0.38,0.01-0.57,0.02C2,4.74,2,17.2,2,17.2V18c0,1.1,0.9,2,2,2h10 C18.67,20,22.41,15.99,21.96,11.22z M5.26,11.56c0.57-1.29,1.28-2.35,2.14-3.19l3.62,1.53c0.6,0.25,0.98,0.83,0.98,1.48 c0,0.89-0.72,1.61-1.61,1.61H4.72C4.87,12.53,5.04,12.05,5.26,11.56z M18.44,16.04C17.3,17.29,15.68,18,14,18H4v-0.8 c0-0.02,0.01-0.92,0.24-2.2h6.15c1.99,0,3.61-1.62,3.61-3.61c0-1.45-0.87-2.76-2.2-3.32L9.3,7.01c1.1-0.57,2.37-0.9,3.82-0.99 C13.27,6,13.42,6,13.56,6c3.31,0,6.13,2.37,6.41,5.41C20.13,13.13,19.59,14.77,18.44,16.04z"},"children":[{"name":"path","attribs":{"d":"M21.96,11.22C21.57,7.01,17.76,4,13.56,4c-0.19,0-0.38,0.01-0.57,0.02C2,4.74,2,17.2,2,17.2V18c0,1.1,0.9,2,2,2h10 C18.67,20,22.41,15.99,21.96,11.22z M5.26,11.56c0.57-1.29,1.28-2.35,2.14-3.19l3.62,1.53c0.6,0.25,0.98,0.83,0.98,1.48 c0,0.89-0.72,1.61-1.61,1.61H4.72C4.87,12.53,5.04,12.05,5.26,11.56z M18.44,16.04C17.3,17.29,15.68,18,14,18H4v-0.8 c0-0.02,0.01-0.92,0.24-2.2h6.15c1.99,0,3.61-1.62,3.61-3.61c0-1.45-0.87-2.76-2.2-3.32L9.3,7.01c1.1-0.57,2.37-0.9,3.82-0.99 C13.27,6,13.42,6,13.56,6c3.31,0,6.13,2.37,6.41,5.41C20.13,13.13,19.59,14.77,18.44,16.04z"},"children":[]}]}]}]};exports.ic_sports_motorsports_outline=ic_sports_motorsports_outline;var ic_sports_motorsports_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M13.56,6c-0.15,0-0.29,0-0.44,0.01c-1.45,0.1-2.72,0.43-3.82,0.99l2.5,1.06c1.33,0.57,2.2,1.87,2.2,3.32 c0,1.99-1.62,3.61-3.61,3.61H4.24C4.01,16.28,4,17.19,4,17.2V18h10c1.68,0,3.3-0.71,4.44-1.96c1.15-1.27,1.7-2.91,1.54-4.63 C19.69,8.37,16.87,6,13.56,6z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M13.56,6c-0.15,0-0.29,0-0.44,0.01c-1.45,0.1-2.72,0.43-3.82,0.99l2.5,1.06c1.33,0.57,2.2,1.87,2.2,3.32 c0,1.99-1.62,3.61-3.61,3.61H4.24C4.01,16.28,4,17.19,4,17.2V18h10c1.68,0,3.3-0.71,4.44-1.96c1.15-1.27,1.7-2.91,1.54-4.63 C19.69,8.37,16.87,6,13.56,6z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M21.96,11.22C21.57,7.01,17.76,4,13.56,4c-0.19,0-0.38,0.01-0.57,0.02C2,4.74,2,17.2,2,17.2V18c0,1.1,0.9,2,2,2h10 C18.67,20,22.41,15.99,21.96,11.22z M5.26,11.56c0.57-1.29,1.28-2.35,2.14-3.19l3.62,1.53c0.6,0.25,0.98,0.83,0.98,1.48 c0,0.89-0.72,1.61-1.61,1.61H4.72C4.87,12.53,5.04,12.05,5.26,11.56z M18.44,16.04C17.3,17.29,15.68,18,14,18H4v-0.8 c0-0.02,0.01-0.92,0.24-2.2h6.15c1.99,0,3.61-1.62,3.61-3.61c0-1.45-0.87-2.76-2.2-3.32L9.3,7.01c1.1-0.57,2.37-0.9,3.82-0.99 C13.27,6,13.42,6,13.56,6c3.31,0,6.13,2.37,6.41,5.41C20.13,13.13,19.59,14.77,18.44,16.04z"},"children":[{"name":"path","attribs":{"d":"M21.96,11.22C21.57,7.01,17.76,4,13.56,4c-0.19,0-0.38,0.01-0.57,0.02C2,4.74,2,17.2,2,17.2V18c0,1.1,0.9,2,2,2h10 C18.67,20,22.41,15.99,21.96,11.22z M5.26,11.56c0.57-1.29,1.28-2.35,2.14-3.19l3.62,1.53c0.6,0.25,0.98,0.83,0.98,1.48 c0,0.89-0.72,1.61-1.61,1.61H4.72C4.87,12.53,5.04,12.05,5.26,11.56z M18.44,16.04C17.3,17.29,15.68,18,14,18H4v-0.8 c0-0.02,0.01-0.92,0.24-2.2h6.15c1.99,0,3.61-1.62,3.61-3.61c0-1.45-0.87-2.76-2.2-3.32L9.3,7.01c1.1-0.57,2.37-0.9,3.82-0.99 C13.27,6,13.42,6,13.56,6c3.31,0,6.13,2.37,6.41,5.41C20.13,13.13,19.59,14.77,18.44,16.04z"},"children":[]}]}]}]}]}]};exports.ic_sports_motorsports_twotone=ic_sports_motorsports_twotone;var ic_sports_rugby={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M20.49,3.51c-0.56-0.56-2.15-0.97-4.16-0.97c-3.08,0-7.15,0.96-9.98,3.79C1.66,11.03,2.1,19.07,3.51,20.49 c0.56,0.56,2.15,0.97,4.16,0.97c3.08,0,7.15-0.96,9.98-3.79C22.34,12.97,21.9,4.93,20.49,3.51z M7.76,7.76 c2.64-2.64,6.35-3.12,8.03-3.19c-2.05,0.94-4.46,2.45-6.61,4.61c-2.16,2.16-3.67,4.58-4.62,6.63C4.66,13.33,5.44,10.07,7.76,7.76z M16.24,16.24c-2.64,2.64-6.35,3.12-8.03,3.19c2.05-0.94,4.46-2.45,6.61-4.61c2.16-2.16,3.67-4.58,4.62-6.63 C19.34,10.67,18.56,13.93,16.24,16.24z"},"children":[{"name":"path","attribs":{"d":"M20.49,3.51c-0.56-0.56-2.15-0.97-4.16-0.97c-3.08,0-7.15,0.96-9.98,3.79C1.66,11.03,2.1,19.07,3.51,20.49 c0.56,0.56,2.15,0.97,4.16,0.97c3.08,0,7.15-0.96,9.98-3.79C22.34,12.97,21.9,4.93,20.49,3.51z M7.76,7.76 c2.64-2.64,6.35-3.12,8.03-3.19c-2.05,0.94-4.46,2.45-6.61,4.61c-2.16,2.16-3.67,4.58-4.62,6.63C4.66,13.33,5.44,10.07,7.76,7.76z M16.24,16.24c-2.64,2.64-6.35,3.12-8.03,3.19c2.05-0.94,4.46-2.45,6.61-4.61c2.16-2.16,3.67-4.58,4.62-6.63 C19.34,10.67,18.56,13.93,16.24,16.24z"},"children":[]}]}]}]}]}]};exports.ic_sports_rugby=ic_sports_rugby;var ic_sports_rugby_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M20.49,3.51c-0.56-0.56-2.15-0.97-4.16-0.97c-3.08,0-7.15,0.96-9.98,3.79C1.66,11.03,2.1,19.07,3.51,20.49 c0.56,0.56,2.15,0.97,4.16,0.97c3.08,0,7.15-0.96,9.98-3.79C22.34,12.97,21.9,4.93,20.49,3.51z M5.71,18.29 c0.63-1.89,2.16-4.99,4.87-7.7c2.68-2.68,5.78-4.23,7.7-4.88c-0.63,1.89-2.16,4.99-4.88,7.7C10.74,16.09,7.64,17.64,5.71,18.29z M7.76,7.76c2.64-2.64,6.34-3.12,8.03-3.19c-2.05,0.94-4.46,2.46-6.61,4.61c-2.16,2.16-3.67,4.58-4.61,6.63 C4.66,13.33,5.44,10.07,7.76,7.76z M16.24,16.24c-2.64,2.64-6.34,3.12-8.03,3.19c2.05-0.94,4.46-2.46,6.61-4.61 c2.16-2.16,3.67-4.58,4.62-6.63C19.34,10.67,18.56,13.93,16.24,16.24z"},"children":[{"name":"path","attribs":{"d":"M20.49,3.51c-0.56-0.56-2.15-0.97-4.16-0.97c-3.08,0-7.15,0.96-9.98,3.79C1.66,11.03,2.1,19.07,3.51,20.49 c0.56,0.56,2.15,0.97,4.16,0.97c3.08,0,7.15-0.96,9.98-3.79C22.34,12.97,21.9,4.93,20.49,3.51z M5.71,18.29 c0.63-1.89,2.16-4.99,4.87-7.7c2.68-2.68,5.78-4.23,7.7-4.88c-0.63,1.89-2.16,4.99-4.88,7.7C10.74,16.09,7.64,17.64,5.71,18.29z M7.76,7.76c2.64-2.64,6.34-3.12,8.03-3.19c-2.05,0.94-4.46,2.46-6.61,4.61c-2.16,2.16-3.67,4.58-4.61,6.63 C4.66,13.33,5.44,10.07,7.76,7.76z M16.24,16.24c-2.64,2.64-6.34,3.12-8.03,3.19c2.05-0.94,4.46-2.46,6.61-4.61 c2.16-2.16,3.67-4.58,4.62-6.63C19.34,10.67,18.56,13.93,16.24,16.24z"},"children":[]}]}]}]};exports.ic_sports_rugby_outline=ic_sports_rugby_outline;var ic_sports_rugby_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M18.29,5.71c-1.93,0.64-5.02,2.19-7.7,4.88c-2.71,2.71-4.24,5.81-4.87,7.7c1.93-0.64,5.03-2.2,7.7-4.87 C16.13,10.7,17.66,7.6,18.29,5.71z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M18.29,5.71c-1.93,0.64-5.02,2.19-7.7,4.88c-2.71,2.71-4.24,5.81-4.87,7.7c1.93-0.64,5.03-2.2,7.7-4.87 C16.13,10.7,17.66,7.6,18.29,5.71z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M9.17,9.17c2.15-2.15,4.56-3.67,6.61-4.61C14.1,4.64,10.4,5.12,7.76,7.76c-2.32,2.32-3.1,5.58-3.2,8.04 C5.5,13.75,7.01,11.33,9.17,9.17z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M9.17,9.17c2.15-2.15,4.56-3.67,6.61-4.61C14.1,4.64,10.4,5.12,7.76,7.76c-2.32,2.32-3.1,5.58-3.2,8.04 C5.5,13.75,7.01,11.33,9.17,9.17z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M14.83,14.83c-2.15,2.15-4.56,3.67-6.61,4.61c1.68-0.08,5.39-0.55,8.03-3.19c2.32-2.32,3.1-5.58,3.2-8.04 C18.5,10.25,16.99,12.67,14.83,14.83z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M14.83,14.83c-2.15,2.15-4.56,3.67-6.61,4.61c1.68-0.08,5.39-0.55,8.03-3.19c2.32-2.32,3.1-5.58,3.2-8.04 C18.5,10.25,16.99,12.67,14.83,14.83z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M20.49,3.51c-0.56-0.56-2.15-0.97-4.16-0.97c-3.08,0-7.15,0.96-9.98,3.79C1.66,11.03,2.1,19.07,3.51,20.49 c0.56,0.56,2.15,0.97,4.16,0.97c3.08,0,7.15-0.96,9.98-3.79C22.34,12.97,21.9,4.93,20.49,3.51z M5.71,18.29 c0.63-1.89,2.16-4.99,4.87-7.7c2.68-2.68,5.78-4.23,7.7-4.88c-0.63,1.89-2.16,4.99-4.88,7.7C10.74,16.09,7.64,17.64,5.71,18.29z M7.76,7.76c2.64-2.64,6.34-3.12,8.03-3.19c-2.05,0.94-4.46,2.46-6.61,4.61c-2.16,2.16-3.67,4.58-4.61,6.63 C4.66,13.33,5.44,10.07,7.76,7.76z M16.24,16.24c-2.64,2.64-6.34,3.12-8.03,3.19c2.05-0.94,4.46-2.46,6.61-4.61 c2.16-2.16,3.67-4.58,4.62-6.63C19.34,10.67,18.56,13.93,16.24,16.24z"},"children":[{"name":"path","attribs":{"d":"M20.49,3.51c-0.56-0.56-2.15-0.97-4.16-0.97c-3.08,0-7.15,0.96-9.98,3.79C1.66,11.03,2.1,19.07,3.51,20.49 c0.56,0.56,2.15,0.97,4.16,0.97c3.08,0,7.15-0.96,9.98-3.79C22.34,12.97,21.9,4.93,20.49,3.51z M5.71,18.29 c0.63-1.89,2.16-4.99,4.87-7.7c2.68-2.68,5.78-4.23,7.7-4.88c-0.63,1.89-2.16,4.99-4.88,7.7C10.74,16.09,7.64,17.64,5.71,18.29z M7.76,7.76c2.64-2.64,6.34-3.12,8.03-3.19c-2.05,0.94-4.46,2.46-6.61,4.61c-2.16,2.16-3.67,4.58-4.61,6.63 C4.66,13.33,5.44,10.07,7.76,7.76z M16.24,16.24c-2.64,2.64-6.34,3.12-8.03,3.19c2.05-0.94,4.46-2.46,6.61-4.61 c2.16-2.16,3.67-4.58,4.62-6.63C19.34,10.67,18.56,13.93,16.24,16.24z"},"children":[]}]}]}]}]}]};exports.ic_sports_rugby_twotone=ic_sports_rugby_twotone;var ic_sports_soccer={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M13,5.3l1.35-0.95 c1.82,0.56,3.37,1.76,4.38,3.34l-0.39,1.34l-1.35,0.46L13,6.7V5.3z M9.65,4.35L11,5.3v1.4L7.01,9.49L5.66,9.03L5.27,7.69 C6.28,6.12,7.83,4.92,9.65,4.35z M7.08,17.11l-1.14,0.1C4.73,15.81,4,13.99,4,12c0-0.12,0.01-0.23,0.02-0.35l1-0.73L6.4,11.4 l1.46,4.34L7.08,17.11z M14.5,19.59C13.71,19.85,12.87,20,12,20s-1.71-0.15-2.5-0.41l-0.69-1.49L9.45,17h5.11l0.64,1.11 L14.5,19.59z M14.27,15H9.73l-1.35-4.02L12,8.44l3.63,2.54L14.27,15z M18.06,17.21l-1.14-0.1l-0.79-1.37l1.46-4.34l1.39-0.47 l1,0.73C19.99,11.77,20,11.88,20,12C20,13.99,19.27,15.81,18.06,17.21z"},"children":[{"name":"path","attribs":{"d":"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M13,5.3l1.35-0.95 c1.82,0.56,3.37,1.76,4.38,3.34l-0.39,1.34l-1.35,0.46L13,6.7V5.3z M9.65,4.35L11,5.3v1.4L7.01,9.49L5.66,9.03L5.27,7.69 C6.28,6.12,7.83,4.92,9.65,4.35z M7.08,17.11l-1.14,0.1C4.73,15.81,4,13.99,4,12c0-0.12,0.01-0.23,0.02-0.35l1-0.73L6.4,11.4 l1.46,4.34L7.08,17.11z M14.5,19.59C13.71,19.85,12.87,20,12,20s-1.71-0.15-2.5-0.41l-0.69-1.49L9.45,17h5.11l0.64,1.11 L14.5,19.59z M14.27,15H9.73l-1.35-4.02L12,8.44l3.63,2.54L14.27,15z M18.06,17.21l-1.14-0.1l-0.79-1.37l1.46-4.34l1.39-0.47 l1,0.73C19.99,11.77,20,11.88,20,12C20,13.99,19.27,15.81,18.06,17.21z"},"children":[]}]}]}]}]}]};exports.ic_sports_soccer=ic_sports_soccer;var ic_sports_soccer_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M13,5.3l1.35-0.95 c1.82,0.56,3.37,1.76,4.38,3.34l-0.39,1.34l-1.35,0.46L13,6.7V5.3z M9.65,4.35L11,5.3v1.4L7.01,9.49L5.66,9.03L5.27,7.69 C6.28,6.12,7.83,4.92,9.65,4.35z M7.08,17.11l-1.14,0.1C4.73,15.81,4,13.99,4,12c0-0.12,0.01-0.23,0.02-0.35l1-0.73L6.4,11.4 l1.46,4.34L7.08,17.11z M14.5,19.59C13.71,19.85,12.87,20,12,20s-1.71-0.15-2.5-0.41l-0.69-1.49L9.45,17h5.11l0.64,1.11 L14.5,19.59z M14.27,15H9.73l-1.35-4.02L12,8.44l3.63,2.54L14.27,15z M18.06,17.21l-1.14-0.1l-0.79-1.37l1.46-4.34l1.39-0.47 l1,0.73C19.99,11.77,20,11.88,20,12C20,13.99,19.27,15.81,18.06,17.21z"},"children":[{"name":"path","attribs":{"d":"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M13,5.3l1.35-0.95 c1.82,0.56,3.37,1.76,4.38,3.34l-0.39,1.34l-1.35,0.46L13,6.7V5.3z M9.65,4.35L11,5.3v1.4L7.01,9.49L5.66,9.03L5.27,7.69 C6.28,6.12,7.83,4.92,9.65,4.35z M7.08,17.11l-1.14,0.1C4.73,15.81,4,13.99,4,12c0-0.12,0.01-0.23,0.02-0.35l1-0.73L6.4,11.4 l1.46,4.34L7.08,17.11z M14.5,19.59C13.71,19.85,12.87,20,12,20s-1.71-0.15-2.5-0.41l-0.69-1.49L9.45,17h5.11l0.64,1.11 L14.5,19.59z M14.27,15H9.73l-1.35-4.02L12,8.44l3.63,2.54L14.27,15z M18.06,17.21l-1.14-0.1l-0.79-1.37l1.46-4.34l1.39-0.47 l1,0.73C19.99,11.77,20,11.88,20,12C20,13.99,19.27,15.81,18.06,17.21z"},"children":[]}]}]}]}]}]};exports.ic_sports_soccer_outline=ic_sports_soccer_outline;var ic_sports_soccer_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{"opacity":".3"},"children":[{"name":"g","attribs":{"opacity":".3"},"children":[{"name":"path","attribs":{"d":"M7.01,9.49L11,6.7V5.3L9.65,4.35C7.83,4.92,6.28,6.12,5.27,7.69l0.39,1.34L7.01,9.49z"},"children":[{"name":"path","attribs":{"d":"M7.01,9.49L11,6.7V5.3L9.65,4.35C7.83,4.92,6.28,6.12,5.27,7.69l0.39,1.34L7.01,9.49z"},"children":[]}]}]}]},{"name":"g","attribs":{"opacity":".3"},"children":[{"name":"g","attribs":{"opacity":".3"},"children":[{"name":"path","attribs":{"d":"M5.01,10.92l-1,0.73C4.01,11.77,4,11.88,4,12c0,1.99,0.73,3.81,1.94,5.21l1.14-0.1l0.79-1.37L6.4,11.4L5.01,10.92z"},"children":[{"name":"path","attribs":{"d":"M5.01,10.92l-1,0.73C4.01,11.77,4,11.88,4,12c0,1.99,0.73,3.81,1.94,5.21l1.14-0.1l0.79-1.37L6.4,11.4L5.01,10.92z"},"children":[]}]}]}]},{"name":"g","attribs":{"opacity":".3"},"children":[{"name":"g","attribs":{"opacity":".3"},"children":[{"name":"path","attribs":{"d":"M18.34,9.03l0.39-1.34c-1.01-1.57-2.55-2.77-4.38-3.34L13,5.3v1.4l3.99,2.79L18.34,9.03z"},"children":[{"name":"path","attribs":{"d":"M18.34,9.03l0.39-1.34c-1.01-1.57-2.55-2.77-4.38-3.34L13,5.3v1.4l3.99,2.79L18.34,9.03z"},"children":[]}]}]}]},{"name":"g","attribs":{"opacity":".3"},"children":[{"name":"g","attribs":{"opacity":".3"},"children":[{"name":"polygon","attribs":{"points":"8.37,10.98 9.73,15 14.27,15 15.63,10.98 12,8.44"},"children":[{"name":"polygon","attribs":{"points":"8.37,10.98 9.73,15 14.27,15 15.63,10.98 12,8.44"},"children":[]}]}]}]},{"name":"g","attribs":{"opacity":".3"},"children":[{"name":"g","attribs":{"opacity":".3"},"children":[{"name":"path","attribs":{"d":"M9.45,17l-0.64,1.11l0.69,1.49C10.29,19.85,11.13,20,12,20s1.71-0.15,2.5-0.41l0.69-1.49L14.55,17H9.45z"},"children":[{"name":"path","attribs":{"d":"M9.45,17l-0.64,1.11l0.69,1.49C10.29,19.85,11.13,20,12,20s1.71-0.15,2.5-0.41l0.69-1.49L14.55,17H9.45z"},"children":[]}]}]}]},{"name":"g","attribs":{"opacity":".3"},"children":[{"name":"g","attribs":{"opacity":".3"},"children":[{"name":"path","attribs":{"d":"M19.98,11.65l-1-0.73L17.6,11.4l-1.46,4.34l0.79,1.37l1.14,0.1C19.27,15.81,20,13.99,20,12 C20,11.88,19.99,11.77,19.98,11.65z"},"children":[{"name":"path","attribs":{"d":"M19.98,11.65l-1-0.73L17.6,11.4l-1.46,4.34l0.79,1.37l1.14,0.1C19.27,15.81,20,13.99,20,12 C20,11.88,19.99,11.77,19.98,11.65z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M13,5.3l1.35-0.95 c1.82,0.56,3.37,1.76,4.38,3.34l-0.39,1.34l-1.35,0.46L13,6.7V5.3z M9.65,4.35L11,5.3v1.4L7.01,9.49L5.66,9.03L5.27,7.69 C6.28,6.12,7.83,4.92,9.65,4.35z M7.08,17.11l-1.14,0.1C4.73,15.81,4,13.99,4,12c0-0.12,0.01-0.23,0.02-0.35l1-0.73L6.4,11.4 l1.46,4.34L7.08,17.11z M14.5,19.59C13.71,19.85,12.87,20,12,20s-1.71-0.15-2.5-0.41l-0.69-1.49L9.45,17h5.11l0.64,1.11 L14.5,19.59z M14.27,15H9.73l-1.35-4.02L12,8.44l3.63,2.54L14.27,15z M18.06,17.21l-1.14-0.1l-0.79-1.37l1.46-4.34l1.39-0.47 l1,0.73C19.99,11.77,20,11.88,20,12C20,13.99,19.27,15.81,18.06,17.21z"},"children":[{"name":"path","attribs":{"d":"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M13,5.3l1.35-0.95 c1.82,0.56,3.37,1.76,4.38,3.34l-0.39,1.34l-1.35,0.46L13,6.7V5.3z M9.65,4.35L11,5.3v1.4L7.01,9.49L5.66,9.03L5.27,7.69 C6.28,6.12,7.83,4.92,9.65,4.35z M7.08,17.11l-1.14,0.1C4.73,15.81,4,13.99,4,12c0-0.12,0.01-0.23,0.02-0.35l1-0.73L6.4,11.4 l1.46,4.34L7.08,17.11z M14.5,19.59C13.71,19.85,12.87,20,12,20s-1.71-0.15-2.5-0.41l-0.69-1.49L9.45,17h5.11l0.64,1.11 L14.5,19.59z M14.27,15H9.73l-1.35-4.02L12,8.44l3.63,2.54L14.27,15z M18.06,17.21l-1.14-0.1l-0.79-1.37l1.46-4.34l1.39-0.47 l1,0.73C19.99,11.77,20,11.88,20,12C20,13.99,19.27,15.81,18.06,17.21z"},"children":[]}]}]}]}]}]}]}]};exports.ic_sports_soccer_twotone=ic_sports_soccer_twotone;var ic_sports_tennis={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M19.52,2.49c-2.34-2.34-6.62-1.87-9.55,1.06c-1.6,1.6-2.52,3.87-2.54,5.46c-0.02,1.58,0.26,3.89-1.35,5.5l-4.24,4.24 l1.42,1.42l4.24-4.24c1.61-1.61,3.92-1.33,5.5-1.35s3.86-0.94,5.46-2.54C21.38,9.11,21.86,4.83,19.52,2.49z M10.32,11.68 c-1.53-1.53-1.05-4.61,1.06-6.72s5.18-2.59,6.72-1.06c1.53,1.53,1.05,4.61-1.06,6.72S11.86,13.21,10.32,11.68z"},"children":[{"name":"path","attribs":{"d":"M19.52,2.49c-2.34-2.34-6.62-1.87-9.55,1.06c-1.6,1.6-2.52,3.87-2.54,5.46c-0.02,1.58,0.26,3.89-1.35,5.5l-4.24,4.24 l1.42,1.42l4.24-4.24c1.61-1.61,3.92-1.33,5.5-1.35s3.86-0.94,5.46-2.54C21.38,9.11,21.86,4.83,19.52,2.49z M10.32,11.68 c-1.53-1.53-1.05-4.61,1.06-6.72s5.18-2.59,6.72-1.06c1.53,1.53,1.05,4.61-1.06,6.72S11.86,13.21,10.32,11.68z"},"children":[]}]},{"name":"path","attribs":{"d":"M18,17c0.53,0,1.04,0.21,1.41,0.59c0.78,0.78,0.78,2.05,0,2.83C19.04,20.79,18.53,21,18,21s-1.04-0.21-1.41-0.59 c-0.78-0.78-0.78-2.05,0-2.83C16.96,17.21,17.47,17,18,17 M18,15c-1.02,0-2.05,0.39-2.83,1.17c-1.56,1.56-1.56,4.09,0,5.66 C15.95,22.61,16.98,23,18,23s2.05-0.39,2.83-1.17c1.56-1.56,1.56-4.09,0-5.66C20.05,15.39,19.02,15,18,15L18,15z"},"children":[{"name":"path","attribs":{"d":"M18,17c0.53,0,1.04,0.21,1.41,0.59c0.78,0.78,0.78,2.05,0,2.83C19.04,20.79,18.53,21,18,21s-1.04-0.21-1.41-0.59 c-0.78-0.78-0.78-2.05,0-2.83C16.96,17.21,17.47,17,18,17 M18,15c-1.02,0-2.05,0.39-2.83,1.17c-1.56,1.56-1.56,4.09,0,5.66 C15.95,22.61,16.98,23,18,23s2.05-0.39,2.83-1.17c1.56-1.56,1.56-4.09,0-5.66C20.05,15.39,19.02,15,18,15L18,15z"},"children":[]}]}]}]};exports.ic_sports_tennis=ic_sports_tennis;var ic_sports_tennis_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M19.52,2.49c-2.34-2.34-6.62-1.87-9.55,1.06c-1.6,1.6-2.52,3.87-2.54,5.46c-0.02,1.58,0.26,3.89-1.35,5.5l-4.24,4.24 l1.42,1.42l4.24-4.24c1.61-1.61,3.92-1.33,5.5-1.35s3.86-0.94,5.46-2.54C21.38,9.11,21.86,4.83,19.52,2.49z M10.32,11.68 c-1.53-1.53-1.05-4.61,1.06-6.72s5.18-2.59,6.72-1.06c1.53,1.53,1.05,4.61-1.06,6.72S11.86,13.21,10.32,11.68z"},"children":[{"name":"path","attribs":{"d":"M19.52,2.49c-2.34-2.34-6.62-1.87-9.55,1.06c-1.6,1.6-2.52,3.87-2.54,5.46c-0.02,1.58,0.26,3.89-1.35,5.5l-4.24,4.24 l1.42,1.42l4.24-4.24c1.61-1.61,3.92-1.33,5.5-1.35s3.86-0.94,5.46-2.54C21.38,9.11,21.86,4.83,19.52,2.49z M10.32,11.68 c-1.53-1.53-1.05-4.61,1.06-6.72s5.18-2.59,6.72-1.06c1.53,1.53,1.05,4.61-1.06,6.72S11.86,13.21,10.32,11.68z"},"children":[]}]},{"name":"path","attribs":{"d":"M18,17c0.53,0,1.04,0.21,1.41,0.59c0.78,0.78,0.78,2.05,0,2.83C19.04,20.79,18.53,21,18,21s-1.04-0.21-1.41-0.59 c-0.78-0.78-0.78-2.05,0-2.83C16.96,17.21,17.47,17,18,17 M18,15c-1.02,0-2.05,0.39-2.83,1.17c-1.56,1.56-1.56,4.09,0,5.66 C15.95,22.61,16.98,23,18,23s2.05-0.39,2.83-1.17c1.56-1.56,1.56-4.09,0-5.66C20.05,15.39,19.02,15,18,15L18,15z"},"children":[{"name":"path","attribs":{"d":"M18,17c0.53,0,1.04,0.21,1.41,0.59c0.78,0.78,0.78,2.05,0,2.83C19.04,20.79,18.53,21,18,21s-1.04-0.21-1.41-0.59 c-0.78-0.78-0.78-2.05,0-2.83C16.96,17.21,17.47,17,18,17 M18,15c-1.02,0-2.05,0.39-2.83,1.17c-1.56,1.56-1.56,4.09,0,5.66 C15.95,22.61,16.98,23,18,23s2.05-0.39,2.83-1.17c1.56-1.56,1.56-4.09,0-5.66C20.05,15.39,19.02,15,18,15L18,15z"},"children":[]}]}]}]};exports.ic_sports_tennis_outline=ic_sports_tennis_outline;var ic_sports_tennis_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M19.52,2.49c-2.34-2.34-6.62-1.87-9.55,1.06c-1.6,1.6-2.52,3.87-2.54,5.46c-0.02,1.58,0.26,3.89-1.35,5.5l-4.24,4.24 l1.42,1.42l4.24-4.24c1.61-1.61,3.92-1.33,5.5-1.35s3.86-0.94,5.46-2.54C21.38,9.11,21.86,4.83,19.52,2.49z M10.32,11.68 c-1.53-1.53-1.05-4.61,1.06-6.72s5.18-2.59,6.72-1.06c1.53,1.53,1.05,4.61-1.06,6.72S11.86,13.21,10.32,11.68z"},"children":[{"name":"path","attribs":{"d":"M19.52,2.49c-2.34-2.34-6.62-1.87-9.55,1.06c-1.6,1.6-2.52,3.87-2.54,5.46c-0.02,1.58,0.26,3.89-1.35,5.5l-4.24,4.24 l1.42,1.42l4.24-4.24c1.61-1.61,3.92-1.33,5.5-1.35s3.86-0.94,5.46-2.54C21.38,9.11,21.86,4.83,19.52,2.49z M10.32,11.68 c-1.53-1.53-1.05-4.61,1.06-6.72s5.18-2.59,6.72-1.06c1.53,1.53,1.05,4.61-1.06,6.72S11.86,13.21,10.32,11.68z"},"children":[]}]},{"name":"path","attribs":{"d":"M18,17c0.53,0,1.04,0.21,1.41,0.59c0.78,0.78,0.78,2.05,0,2.83C19.04,20.79,18.53,21,18,21s-1.04-0.21-1.41-0.59 c-0.78-0.78-0.78-2.05,0-2.83C16.96,17.21,17.47,17,18,17 M18,15c-1.02,0-2.05,0.39-2.83,1.17c-1.56,1.56-1.56,4.09,0,5.66 C15.95,22.61,16.98,23,18,23s2.05-0.39,2.83-1.17c1.56-1.56,1.56-4.09,0-5.66C20.05,15.39,19.02,15,18,15L18,15z"},"children":[{"name":"path","attribs":{"d":"M18,17c0.53,0,1.04,0.21,1.41,0.59c0.78,0.78,0.78,2.05,0,2.83C19.04,20.79,18.53,21,18,21s-1.04-0.21-1.41-0.59 c-0.78-0.78-0.78-2.05,0-2.83C16.96,17.21,17.47,17,18,17 M18,15c-1.02,0-2.05,0.39-2.83,1.17c-1.56,1.56-1.56,4.09,0,5.66 C15.95,22.61,16.98,23,18,23s2.05-0.39,2.83-1.17c1.56-1.56,1.56-4.09,0-5.66C20.05,15.39,19.02,15,18,15L18,15z"},"children":[]}]}]}]};exports.ic_sports_tennis_twotone=ic_sports_tennis_twotone;var ic_sports_volleyball={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M6,4.01C3.58,5.84,2,8.73,2,12c0,1.46,0.32,2.85,0.89,4.11L6,14.31V4.01z"},"children":[{"name":"path","attribs":{"d":"M6,4.01C3.58,5.84,2,8.73,2,12c0,1.46,0.32,2.85,0.89,4.11L6,14.31V4.01z"},"children":[]}]},{"name":"path","attribs":{"d":"M11,11.42V2.05C9.94,2.16,8.93,2.43,8,2.84v10.32L11,11.42z"},"children":[{"name":"path","attribs":{"d":"M11,11.42V2.05C9.94,2.16,8.93,2.43,8,2.84v10.32L11,11.42z"},"children":[]}]},{"name":"path","attribs":{"d":"M12,13.15l-8.11,4.68c0.61,0.84,1.34,1.59,2.18,2.2L15,14.89L12,13.15z"},"children":[{"name":"path","attribs":{"d":"M12,13.15l-8.11,4.68c0.61,0.84,1.34,1.59,2.18,2.2L15,14.89L12,13.15z"},"children":[]}]},{"name":"path","attribs":{"d":"M13,7.96v3.46l8.11,4.68c0.42-0.93,0.7-1.93,0.82-2.98L13,7.96z"},"children":[{"name":"path","attribs":{"d":"M13,7.96v3.46l8.11,4.68c0.42-0.93,0.7-1.93,0.82-2.98L13,7.96z"},"children":[]}]},{"name":"path","attribs":{"d":"M8.07,21.2C9.28,21.71,10.6,22,12,22c3.34,0,6.29-1.65,8.11-4.16L17,16.04L8.07,21.2z"},"children":[{"name":"path","attribs":{"d":"M8.07,21.2C9.28,21.71,10.6,22,12,22c3.34,0,6.29-1.65,8.11-4.16L17,16.04L8.07,21.2z"},"children":[]}]},{"name":"path","attribs":{"d":"M21.92,10.81c-0.55-4.63-4.26-8.3-8.92-8.76v3.6L21.92,10.81z"},"children":[{"name":"path","attribs":{"d":"M21.92,10.81c-0.55-4.63-4.26-8.3-8.92-8.76v3.6L21.92,10.81z"},"children":[]}]}]}]}]}]};exports.ic_sports_volleyball=ic_sports_volleyball;var ic_sports_volleyball_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M13,4.07 c3.07,0.38,5.57,2.52,6.54,5.36L13,5.65V4.07z M8,5.08c1.18-0.69,3.33-1.06,3-1.02v7.35l-3,1.73V5.08z M4.63,15.1 C4.23,14.14,4,13.1,4,12c0-2.02,0.76-3.86,2-5.27v7.58L4.63,15.1z M5.64,16.83L12,13.15l3,1.73l-6.98,4.03 C7.09,18.38,6.28,17.68,5.64,16.83z M10.42,19.84 M12,20c-0.54,0-1.07-0.06-1.58-0.16l6.58-3.8l1.36,0.78 C16.9,18.75,14.6,20,12,20z M13,11.42V7.96l7,4.05c0,1.1-0.23,2.14-0.63,3.09L13,11.42z"},"children":[{"name":"path","attribs":{"d":"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M13,4.07 c3.07,0.38,5.57,2.52,6.54,5.36L13,5.65V4.07z M8,5.08c1.18-0.69,3.33-1.06,3-1.02v7.35l-3,1.73V5.08z M4.63,15.1 C4.23,14.14,4,13.1,4,12c0-2.02,0.76-3.86,2-5.27v7.58L4.63,15.1z M5.64,16.83L12,13.15l3,1.73l-6.98,4.03 C7.09,18.38,6.28,17.68,5.64,16.83z M10.42,19.84 M12,20c-0.54,0-1.07-0.06-1.58-0.16l6.58-3.8l1.36,0.78 C16.9,18.75,14.6,20,12,20z M13,11.42V7.96l7,4.05c0,1.1-0.23,2.14-0.63,3.09L13,11.42z"},"children":[]}]}]}]}]}]};exports.ic_sports_volleyball_outline=ic_sports_volleyball_outline;var ic_sports_volleyball_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M6,6.73C4.76,8.14,4,9.98,4,12c0,1.1,0.23,2.14,0.63,3.1L6,14.31V6.73z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M6,6.73C4.76,8.14,4,9.98,4,12c0,1.1,0.23,2.14,0.63,3.1L6,14.31V6.73z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M11,4.08c-0.25,0.06-1.98,0.42-3,1.01v8.07l3-1.73V4.08z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M11,4.08c-0.25,0.06-1.98,0.42-3,1.01v8.07l3-1.73V4.08z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M13,4.07v1.58l6.54,3.79C18.57,6.59,16.07,4.45,13,4.07z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M13,4.07v1.58l6.54,3.79C18.57,6.59,16.07,4.45,13,4.07z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M12,13.15l-6.36,3.67c0.64,0.85,1.46,1.55,2.38,2.09L15,14.89L12,13.15z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M12,13.15l-6.36,3.67c0.64,0.85,1.46,1.55,2.38,2.09L15,14.89L12,13.15z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M13,7.96v3.46l6.37,3.68c0.4-0.95,0.63-1.99,0.63-3.09L13,7.96z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M13,7.96v3.46l6.37,3.68c0.4-0.95,0.63-1.99,0.63-3.09L13,7.96z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M10.42,19.84C10.93,19.94,11.46,20,12,20c2.6,0,4.9-1.25,6.36-3.17L17,16.04L10.42,19.84z","opacity":".3"},"children":[{"name":"path","attribs":{"d":"M10.42,19.84C10.93,19.94,11.46,20,12,20c2.6,0,4.9-1.25,6.36-3.17L17,16.04L10.42,19.84z","opacity":".3"},"children":[]}]},{"name":"path","attribs":{"d":"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M13,4.07 c3.07,0.38,5.57,2.52,6.54,5.36L13,5.65V4.07z M8,5.08c1.02-0.59,2.75-0.95,3-1.01v7.35l-3,1.73V5.08z M4.63,15.1 C4.23,14.14,4,13.1,4,12c0-2.02,0.76-3.86,2-5.27v7.58L4.63,15.1z M5.64,16.83L12,13.15l3,1.73l-6.98,4.03 C7.09,18.38,6.28,17.68,5.64,16.83z M12,20c-0.54,0-1.07-0.06-1.58-0.16l6.58-3.8l1.36,0.78C16.9,18.75,14.6,20,12,20z M13,11.42 V7.96l7,4.05c0,1.1-0.23,2.14-0.63,3.09L13,11.42z"},"children":[{"name":"path","attribs":{"d":"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M13,4.07 c3.07,0.38,5.57,2.52,6.54,5.36L13,5.65V4.07z M8,5.08c1.02-0.59,2.75-0.95,3-1.01v7.35l-3,1.73V5.08z M4.63,15.1 C4.23,14.14,4,13.1,4,12c0-2.02,0.76-3.86,2-5.27v7.58L4.63,15.1z M5.64,16.83L12,13.15l3,1.73l-6.98,4.03 C7.09,18.38,6.28,17.68,5.64,16.83z M12,20c-0.54,0-1.07-0.06-1.58-0.16l6.58-3.8l1.36,0.78C16.9,18.75,14.6,20,12,20z M13,11.42 V7.96l7,4.05c0,1.1-0.23,2.14-0.63,3.09L13,11.42z"},"children":[]}]}]}]}]}]};exports.ic_sports_volleyball_twotone=ic_sports_volleyball_twotone;var ic_switch_account={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-6 2c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm6 12H8v-1.5c0-1.99 4-3 6-3s6 1.01 6 3V16z"},"children":[]}]};exports.ic_switch_account=ic_switch_account;var ic_thumb_down_alt={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M24 24H0V0h24v24z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 4h-2c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h2V4zM2.17 11.12c-.11.25-.17.52-.17.8V13c0 1.1.9 2 2 2h5.5l-.92 4.65c-.05.22-.02.46.08.66.23.45.52.86.88 1.22L10 22l6.41-6.41c.38-.38.59-.89.59-1.42V6.34C17 5.05 15.95 4 14.66 4h-8.1c-.71 0-1.36.37-1.72.97l-2.67 6.15z"},"children":[]}]};exports.ic_thumb_down_alt=ic_thumb_down_alt;var ic_thumb_down_alt_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none","opacity":".87"},"children":[]},{"name":"path","attribs":{"d":"M15 3H6c-.83 0-1.54.5-1.84 1.22l-3.02 7.05c-.09.23-.14.47-.14.73v2c0 1.1.9 2 2 2h6.31l-.95 4.57-.03.32c0 .41.17.79.44 1.06L9.83 23l6.58-6.59c.37-.36.59-.86.59-1.41V5c0-1.1-.9-2-2-2zm0 12l-4.34 4.34L11.77 14H3v-2l3-7h9v10zm4-12h4v12h-4z"},"children":[]}]};exports.ic_thumb_down_alt_outline=ic_thumb_down_alt_outline;var ic_thumb_down_alt_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none","opacity":".87"},"children":[]},{"name":"path","attribs":{"d":"M3 12v2h8.77l-1.11 5.34L15 15V5H6z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M15 3H6c-.83 0-1.54.5-1.84 1.22l-3.02 7.05c-.09.23-.14.47-.14.73v2c0 1.1.9 2 2 2h6.31l-.95 4.57-.03.32c0 .41.17.79.44 1.06L9.83 23l6.58-6.59c.37-.36.59-.86.59-1.41V5c0-1.1-.9-2-2-2zm0 12l-4.34 4.34L11.77 14H3v-2l3-7h9v10zm4-12h4v12h-4z"},"children":[]}]};exports.ic_thumb_down_alt_twotone=ic_thumb_down_alt_twotone;var ic_thumb_up_alt={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M24 24H0V0h24v24z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M2 20h2c.55 0 1-.45 1-1v-9c0-.55-.45-1-1-1H2v11zm19.83-7.12c.11-.25.17-.52.17-.8V11c0-1.1-.9-2-2-2h-5.5l.92-4.65c.05-.22.02-.46-.08-.66-.23-.45-.52-.86-.88-1.22L14 2 7.59 8.41C7.21 8.79 7 9.3 7 9.83v7.84C7 18.95 8.05 20 9.34 20h8.11c.7 0 1.36-.37 1.72-.97l2.66-6.15z"},"children":[]}]};exports.ic_thumb_up_alt=ic_thumb_up_alt;var ic_thumb_up_alt_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none","opacity":".87"},"children":[]},{"name":"path","attribs":{"d":"M21 8h-6.31l.95-4.57.03-.32c0-.41-.17-.79-.44-1.06L14.17 1 7.59 7.59C7.22 7.95 7 8.45 7 9v10c0 1.1.9 2 2 2h9c.83 0 1.54-.5 1.84-1.22l3.02-7.05c.09-.23.14-.47.14-.73v-2c0-1.1-.9-2-2-2zm0 4l-3 7H9V9l4.34-4.34L12.23 10H21v2zM1 9h4v12H1z"},"children":[]}]};exports.ic_thumb_up_alt_outline=ic_thumb_up_alt_outline;var ic_thumb_up_alt_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none","opacity":".87"},"children":[]},{"name":"path","attribs":{"d":"M13.34 4.66L9 9v10h9l3-7v-2h-8.77z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M21 8h-6.31l.95-4.57.03-.32c0-.41-.17-.79-.44-1.06L14.17 1 7.59 7.59C7.22 7.95 7 8.45 7 9v10c0 1.1.9 2 2 2h9c.83 0 1.54-.5 1.84-1.22l3.02-7.05c.09-.23.14-.47.14-.73v-2c0-1.1-.9-2-2-2zm0 4l-3 7H9V9l4.34-4.34L12.23 10H21v2zM1 9h4v12H1z"},"children":[]}]};exports.ic_thumb_up_alt_twotone=ic_thumb_up_alt_twotone;var ic_whatshot={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M13.5.67s.74 2.65.74 4.8c0 2.06-1.35 3.73-3.41 3.73-2.07 0-3.63-1.67-3.63-3.73l.03-.36C5.21 7.51 4 10.62 4 14c0 4.42 3.58 8 8 8s8-3.58 8-8C20 8.61 17.41 3.8 13.5.67zM11.71 19c-1.78 0-3.22-1.4-3.22-3.14 0-1.62 1.05-2.76 2.81-3.12 1.77-.36 3.6-1.21 4.62-2.58.39 1.29.59 2.65.59 4.04 0 2.65-2.15 4.8-4.8 4.8z"},"children":[]}]};exports.ic_whatshot=ic_whatshot;var ic_whatshot_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M11.57 13.16c-1.36.28-2.17 1.16-2.17 2.41 0 1.34 1.11 2.42 2.49 2.42 2.05 0 3.71-1.66 3.71-3.71 0-1.07-.15-2.12-.46-3.12-.79 1.07-2.2 1.72-3.57 2zM13.5.67s.74 2.65.74 4.8c0 2.06-1.35 3.73-3.41 3.73-2.07 0-3.63-1.67-3.63-3.73l.03-.36C5.21 7.51 4 10.62 4 14c0 4.42 3.58 8 8 8s8-3.58 8-8C20 8.61 17.41 3.8 13.5.67zM12 20c-3.31 0-6-2.69-6-6 0-1.53.3-3.04.86-4.43 1.01 1.01 2.41 1.63 3.97 1.63 2.66 0 4.75-1.83 5.28-4.43C17.34 8.97 18 11.44 18 14c0 3.31-2.69 6-6 6z"},"children":[]}]};exports.ic_whatshot_outline=ic_whatshot_outline;var ic_whatshot_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M16.11 6.77c-.53 2.6-2.62 4.43-5.28 4.43-1.56 0-2.96-.62-3.97-1.63C6.3 10.96 6 12.47 6 14c0 3.31 2.69 6 6 6s6-2.69 6-6c0-2.56-.66-5.03-1.89-7.23zm-4.22 11.22c-1.37 0-2.49-1.08-2.49-2.42 0-1.25.81-2.13 2.17-2.41 1.37-.28 2.78-.93 3.57-1.99.3 1 .46 2.05.46 3.12 0 2.04-1.66 3.7-3.71 3.7z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M11.57 13.16c-1.36.28-2.17 1.16-2.17 2.41 0 1.34 1.11 2.42 2.49 2.42 2.05 0 3.71-1.66 3.71-3.71 0-1.07-.15-2.12-.46-3.12-.79 1.07-2.2 1.72-3.57 2zM13.5.67s.74 2.65.74 4.8c0 2.06-1.35 3.73-3.41 3.73-2.07 0-3.63-1.67-3.63-3.73l.03-.36C5.21 7.51 4 10.62 4 14c0 4.42 3.58 8 8 8s8-3.58 8-8C20 8.61 17.41 3.8 13.5.67zM12 20c-3.31 0-6-2.69-6-6 0-1.53.3-3.04.86-4.43 1.01 1.01 2.41 1.63 3.97 1.63 2.66 0 4.75-1.83 5.28-4.43C17.34 8.97 18 11.44 18 14c0 3.31-2.69 6-6 6z"},"children":[]}]};exports.ic_whatshot_twotone=ic_whatshot_twotone;var ic_check_box={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.11 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm-9 14l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"},"children":[]}]};exports.ic_check_box=ic_check_box;var ic_check_box_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM17.99 9l-1.41-1.42-6.59 6.59-2.58-2.57-1.42 1.41 4 3.99z"},"children":[]}]};exports.ic_check_box_outline=ic_check_box_outline;var ic_check_box_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 19h14V5H5v14zm2.41-7.4l2.58 2.58 6.59-6.59L17.99 9l-8 8L6 13.01l1.41-1.41z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM17.99 9l-1.41-1.42-6.59 6.59-2.58-2.57-1.42 1.41 4 3.99z"},"children":[]}]};exports.ic_check_box_twotone=ic_check_box_twotone;var ic_check_box_outline_blank={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"},"children":[]}]};exports.ic_check_box_outline_blank=ic_check_box_outline_blank;var ic_check_box_outline_blank_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"},"children":[]}]};exports.ic_check_box_outline_blank_outline=ic_check_box_outline_blank_outline;var ic_check_box_outline_blank_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"},"children":[]}]};exports.ic_check_box_outline_blank_twotone=ic_check_box_outline_blank_twotone;var ic_indeterminate_check_box={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M17,13H7v-2h10V13z"},"children":[{"name":"path","attribs":{"d":"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M17,13H7v-2h10V13z"},"children":[]}]}]}]}]}]}]}]};exports.ic_indeterminate_check_box=ic_indeterminate_check_box;var ic_indeterminate_check_box_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM7 11h10v2H7z"},"children":[]}]};exports.ic_indeterminate_check_box_outline=ic_indeterminate_check_box_outline;var ic_indeterminate_check_box_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M5 19h14V5H5v14zm2-8h10v2H7v-2z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM7 11h10v2H7z"},"children":[]}]};exports.ic_indeterminate_check_box_twotone=ic_indeterminate_check_box_twotone;var ic_radio_button_checked={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 7c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0-5C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"},"children":[]}]};exports.ic_radio_button_checked=ic_radio_button_checked;var ic_radio_button_checked_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"},"children":[]},{"name":"circle","attribs":{"cx":"12","cy":"12","r":"5"},"children":[]}]};exports.ic_radio_button_checked_outline=ic_radio_button_checked_outline;var ic_radio_button_checked_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"},"children":[]},{"name":"circle","attribs":{"cx":"12","cy":"12","r":"5"},"children":[]}]};exports.ic_radio_button_checked_twotone=ic_radio_button_checked_twotone;var ic_radio_button_unchecked={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"},"children":[]}]};exports.ic_radio_button_unchecked=ic_radio_button_unchecked;var ic_radio_button_unchecked_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"},"children":[]}]};exports.ic_radio_button_unchecked_outline=ic_radio_button_unchecked_outline;var ic_radio_button_unchecked_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"},"children":[]}]};exports.ic_radio_button_unchecked_twotone=ic_radio_button_unchecked_twotone;var ic_star={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"},"children":[]}]};exports.ic_star=ic_star;var ic_star_outline={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M0,0h24v24H0V0z","fill":"none"},"children":[{"name":"path","attribs":{"d":"M0,0h24v24H0V0z","fill":"none"},"children":[]}]},{"name":"path","attribs":{"d":"M0,0h24v24H0V0z","fill":"none"},"children":[{"name":"path","attribs":{"d":"M0,0h24v24H0V0z","fill":"none"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M12,17.27L18.18,21l-1.64-7.03L22,9.24l-7.19-0.61L12,2L9.19,8.63L2,9.24l5.46,4.73L5.82,21L12,17.27z"},"children":[{"name":"path","attribs":{"d":"M12,17.27L18.18,21l-1.64-7.03L22,9.24l-7.19-0.61L12,2L9.19,8.63L2,9.24l5.46,4.73L5.82,21L12,17.27z"},"children":[]}]}]}]};exports.ic_star_outline=ic_star_outline;var ic_star_twotone={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M0,0h24v24H0V0z","fill":"none"},"children":[{"name":"path","attribs":{"d":"M0,0h24v24H0V0z","fill":"none"},"children":[]}]},{"name":"path","attribs":{"d":"M0,0h24v24H0V0z","fill":"none"},"children":[{"name":"path","attribs":{"d":"M0,0h24v24H0V0z","fill":"none"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"opacity":".3","points":"12,15.4 8.24,17.67 9.24,13.39 5.92,10.51 10.3,10.13 12,6.1 13.71,10.14 18.09,10.52 14.77,13.4 15.77,17.68"},"children":[{"name":"polygon","attribs":{"opacity":".3","points":"12,15.4 8.24,17.67 9.24,13.39 5.92,10.51 10.3,10.13 12,6.1 13.71,10.14 18.09,10.52 14.77,13.4 15.77,17.68"},"children":[]}]},{"name":"path","attribs":{"d":"M22,9.24l-7.19-0.62L12,2L9.19,8.63L2,9.24l5.46,4.73L5.82,21L12,17.27L18.18,21l-1.63-7.03L22,9.24z M12,15.4l-3.76,2.27 l1-4.28l-3.32-2.88l4.38-0.38L12,6.1l1.71,4.04l4.38,0.38l-3.32,2.88l1,4.28L12,15.4z"},"children":[{"name":"path","attribs":{"d":"M22,9.24l-7.19-0.62L12,2L9.19,8.63L2,9.24l5.46,4.73L5.82,21L12,17.27L18.18,21l-1.63-7.03L22,9.24z M12,15.4l-3.76,2.27 l1-4.28l-3.32-2.88l4.38-0.38L12,6.1l1.71,4.04l4.38,0.38l-3.32,2.88l1,4.28L12,15.4z"},"children":[]}]}]}]}]}]};exports.ic_star_twotone=ic_star_twotone;var ic_star_border={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"},"children":[]}]};exports.ic_star_border=ic_star_border;var ic_star_border_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"},"children":[]}]};exports.ic_star_border_outline=ic_star_border_outline;var ic_star_border_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"},"children":[]}]};exports.ic_star_border_twotone=ic_star_border_twotone;var ic_star_border_purple500_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"},"children":[]}]};exports.ic_star_border_purple500_outline=ic_star_border_purple500_outline;var ic_star_half={"viewBox":"0 0 24 24","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[{"name":"rect","attribs":{"fill":"none","height":"24","width":"24","x":"0"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M22,9.24l-7.19-0.62L12,2L9.19,8.63L2,9.24l5.46,4.73L5.82,21L12,17.27L18.18,21l-1.63-7.03L22,9.24z M12,15.4V6.1 l1.71,4.04l4.38,0.38l-3.32,2.88l1,4.28L12,15.4z"},"children":[{"name":"path","attribs":{"d":"M22,9.24l-7.19-0.62L12,2L9.19,8.63L2,9.24l5.46,4.73L5.82,21L12,17.27L18.18,21l-1.63-7.03L22,9.24z M12,15.4V6.1 l1.71,4.04l4.38,0.38l-3.32,2.88l1,4.28L12,15.4z"},"children":[]}]}]}]}]}]}]}]};exports.ic_star_half=ic_star_half;var ic_star_half_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4V6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"},"children":[]}]};exports.ic_star_half_outline=ic_star_half_outline;var ic_star_half_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4V6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"},"children":[]}]};exports.ic_star_half_twotone=ic_star_half_twotone;var ic_star_outline_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"},"children":[]}]};exports.ic_star_outline_outline=ic_star_outline_outline;var ic_star_outline_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"},"children":[]}]};exports.ic_star_outline_twotone=ic_star_outline_twotone;var ic_star_purple500_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27z"},"children":[]}]};exports.ic_star_purple500_outline=ic_star_purple500_outline;var ic_toggle_off={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h10c2.76 0 5-2.24 5-5s-2.24-5-5-5zM7 15c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z"},"children":[]}]};exports.ic_toggle_off=ic_toggle_off;var ic_toggle_off_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 6H7c-3.31 0-6 2.69-6 6s2.69 6 6 6h10c3.31 0 6-2.69 6-6s-2.69-6-6-6zm0 10H7c-2.21 0-4-1.79-4-4s1.79-4 4-4h10c2.21 0 4 1.79 4 4s-1.79 4-4 4zM7 9c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z"},"children":[]}]};exports.ic_toggle_off_outline=ic_toggle_off_outline;var ic_toggle_off_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 8H7c-2.21 0-4 1.79-4 4s1.79 4 4 4h10c2.21 0 4-1.79 4-4s-1.79-4-4-4zM7 15c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M17 6H7c-3.31 0-6 2.69-6 6s2.69 6 6 6h10c3.31 0 6-2.69 6-6s-2.69-6-6-6zm0 10H7c-2.21 0-4-1.79-4-4s1.79-4 4-4h10c2.21 0 4 1.79 4 4s-1.79 4-4 4zM7 9c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z"},"children":[]}]};exports.ic_toggle_off_twotone=ic_toggle_off_twotone;var ic_toggle_on={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h10c2.76 0 5-2.24 5-5s-2.24-5-5-5zm0 8c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z"},"children":[]}]};exports.ic_toggle_on=ic_toggle_on;var ic_toggle_on_outline={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 6H7c-3.31 0-6 2.69-6 6s2.69 6 6 6h10c3.31 0 6-2.69 6-6s-2.69-6-6-6zm0 10H7c-2.21 0-4-1.79-4-4s1.79-4 4-4h10c2.21 0 4 1.79 4 4s-1.79 4-4 4zm0-7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z"},"children":[]}]};exports.ic_toggle_on_outline=ic_toggle_on_outline;var ic_toggle_on_twotone={"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M17 8H7c-2.21 0-4 1.79-4 4s1.79 4 4 4h10c2.21 0 4-1.79 4-4s-1.79-4-4-4zm0 7c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z","opacity":".3"},"children":[]},{"name":"path","attribs":{"d":"M17 6H7c-3.31 0-6 2.69-6 6s2.69 6 6 6h10c3.31 0 6-2.69 6-6s-2.69-6-6-6zm0 10H7c-2.21 0-4-1.79-4-4s1.79-4 4-4h10c2.21 0 4 1.79 4 4s-1.79 4-4 4zm0-7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z"},"children":[]}]};exports.ic_toggle_on_twotone=ic_toggle_on_twotone; \ No newline at end of file diff --git a/dist/metrize/adjust.js b/dist/metrize/adjust.js new file mode 100644 index 000000000..ccb62429a --- /dev/null +++ b/dist/metrize/adjust.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.adjust = void 0; +var adjust = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M256,128c-70.688,0-128,57.297-128,128c0,70.688,57.312,128,128,128\r\n\tc70.703,0,128-57.312,128-128C384,185.297,326.703,128,256,128z M160,256c0-52.938,48-96,96-96v192C208,352,160,308.938,160,256z" + }, + "children": [] + }] +}; +exports.adjust = adjust; \ No newline at end of file diff --git a/dist/metrize/airPlane.js b/dist/metrize/airPlane.js new file mode 100644 index 000000000..8603e666b --- /dev/null +++ b/dist/metrize/airPlane.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.airPlane = void 0; +var airPlane = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\tS397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M128,128l73.141,256l73.141-51.203L329.141,384v-85.328L384,247.469L128,128z\r\n\t M292.578,298.672l-97.375-93.875l97.375,76.797V298.672z" + }, + "children": [] + }] +}; +exports.airPlane = airPlane; \ No newline at end of file diff --git a/dist/metrize/alarmClock.js b/dist/metrize/alarmClock.js new file mode 100644 index 000000000..be3686110 --- /dev/null +++ b/dist/metrize/alarmClock.js @@ -0,0 +1,99 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.alarmClock = void 0; +var alarmClock = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,144c-61.844,0-112,50.156-112,112s50.156,112,112,112s112-50.156,112-112S317.844,144,256,144z M256,347\r\n\t\tc-50.25,0-91-40.766-91-91c0-50.25,40.75-91,91-91c50.234,0,91,40.75,91,91C347,306.234,306.234,347,256,347z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,144c-61.844,0-112,50.156-112,112s50.156,112,112,112s112-50.156,112-112S317.844,144,256,144z M256,347\r\n\t\tc-50.25,0-91-40.766-91-91c0-50.25,40.75-91,91-91c50.234,0,91,40.75,91,91C347,306.234,306.234,347,256,347z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,272c-8.844,0-16-7.156-16-16s7.156-16,16-16s16,7.156,16,16S264.844,272,256,272z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,272c-8.844,0-16-7.156-16-16s7.156-16,16-16s16,7.156,16,16S264.844,272,256,272z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "246.062,257.375 257.391,246.062 287.547,276.219 276.234,287.547 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "246.062,257.375 257.391,246.062 287.547,276.219 276.234,287.547 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "234.969,204.453 250.5,200.609 265.219,259.953 249.688,263.797 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "234.969,204.453 250.5,200.609 265.219,259.953 249.688,263.797 \t" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M373,138.969c-14.625-14.656-38.375-14.656-53.031,0L373,192C387.656,177.359,387.656,153.594,373,138.969z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M373,138.969c-14.625-14.656-38.375-14.656-53.031,0L373,192C387.656,177.359,387.656,153.594,373,138.969z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M138.984,139c-14.641,14.625-14.641,38.375,0,53.031L192.031,139C177.375,124.344,153.625,124.344,138.984,139z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M138.984,139c-14.641,14.625-14.641,38.375,0,53.031L192.031,139C177.375,124.344,153.625,124.344,138.984,139z" + }, + "children": [] + }] + }] + }] +}; +exports.alarmClock = alarmClock; \ No newline at end of file diff --git a/dist/metrize/animalFootprint.js b/dist/metrize/animalFootprint.js new file mode 100644 index 000000000..725631738 --- /dev/null +++ b/dist/metrize/animalFootprint.js @@ -0,0 +1,87 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.animalFootprint = void 0; +var animalFootprint = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256-0.5C114.333-0.5-0.5,114.333-0.5,256S114.333,512.5,256,512.5S512.5,397.667,512.5,256S397.667-0.5,256-0.5z\r\n\t\t M256,472.422C136.47,472.422,39.578,375.53,39.578,256C39.578,136.47,136.47,39.578,256,39.578\r\n\t\tc119.53,0,216.422,96.892,216.422,216.422C472.422,375.53,375.53,472.422,256,472.422z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256-0.5C114.333-0.5-0.5,114.333-0.5,256S114.333,512.5,256,512.5S512.5,397.667,512.5,256S397.667-0.5,256-0.5z\r\n\t\t M256,472.422C136.47,472.422,39.578,375.53,39.578,256C39.578,136.47,136.47,39.578,256,39.578\r\n\t\tc119.53,0,216.422,96.892,216.422,216.422C472.422,375.53,375.53,472.422,256,472.422z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M133.48,236.619c-9.394,8.673-6.982,27.397,5.385,41.863c12.368,14.45,29.996,19.131,39.374,10.427\r\n\t\tc9.378-8.643,6.967-27.397-5.401-41.832C160.47,232.642,142.842,227.945,133.48,236.619z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M133.48,236.619c-9.394,8.673-6.982,27.397,5.385,41.863c12.368,14.45,29.996,19.131,39.374,10.427\r\n\t\tc9.378-8.643,6.967-27.397-5.401-41.832C160.47,232.642,142.842,227.945,133.48,236.619z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M338.833,243.757c-11.006,15.625-11.694,34.52-1.55,42.223c10.129,7.671,27.257,1.314,38.247-14.325\r\n\t\tc10.99-15.593,11.679-34.473,1.55-42.191C366.95,221.777,349.808,228.18,338.833,243.757z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M338.833,243.757c-11.006,15.625-11.694,34.52-1.55,42.223c10.129,7.671,27.257,1.314,38.247-14.325\r\n\t\tc10.99-15.593,11.679-34.473,1.55-42.191C366.95,221.777,349.808,228.18,338.833,243.757z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M226.129,240.125c16.517-3.977,25.111-28.65,19.179-55.107c-5.887-26.458-24.078-44.681-40.595-40.705\r\n\t\tc-16.501,4.008-25.08,28.681-19.194,55.139C191.452,225.879,209.628,244.102,226.129,240.125z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M226.129,240.125c16.517-3.977,25.111-28.65,19.179-55.107c-5.887-26.458-24.078-44.681-40.595-40.705\r\n\t\tc-16.501,4.008-25.08,28.681-19.194,55.139C191.452,225.879,209.628,244.102,226.129,240.125z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M309.057,144.313c-16.501-3.977-34.677,14.247-40.595,40.705c-5.918,26.458,2.661,51.131,19.193,55.107\r\n\t\tc16.485,3.976,34.677-14.247,40.595-40.673C334.184,172.995,325.558,148.321,309.057,144.313z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M309.057,144.313c-16.501-3.977-34.677,14.247-40.595,40.705c-5.918,26.458,2.661,51.131,19.193,55.107\r\n\t\tc16.485,3.976,34.677-14.247,40.595-40.673C334.184,172.995,325.558,148.321,309.057,144.313z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,262.513c-39.374,0-68.932,62.7-68.932,83.444c0,51.005,29.558-1.613,68.932-1.613c39.39,0,68.932,52.618,68.932,1.613\r\n\t\tC324.932,325.213,295.39,262.513,256,262.513z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,262.513c-39.374,0-68.932,62.7-68.932,83.444c0,51.005,29.558-1.613,68.932-1.613c39.39,0,68.932,52.618,68.932,1.613\r\n\t\tC324.932,325.213,295.39,262.513,256,262.513z" + }, + "children": [] + }] + }] + }] +}; +exports.animalFootprint = animalFootprint; \ No newline at end of file diff --git a/dist/metrize/arrowCurveLeft.js b/dist/metrize/arrowCurveLeft.js new file mode 100644 index 000000000..6783a5008 --- /dev/null +++ b/dist/metrize/arrowCurveLeft.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowCurveLeft = void 0; +var arrowCurveLeft = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M325,250.438C282.797,223.078,215.5,224,215.5,224v-48l-96,80l96,64v-48c0,0,45-9,85.844,6.406\r\n\t\tC338.688,292.484,379.75,336,379.75,336S367.203,277.828,325,250.438z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M325,250.438C282.797,223.078,215.5,224,215.5,224v-48l-96,80l96,64v-48c0,0,45-9,85.844,6.406\r\n\t\tC338.688,292.484,379.75,336,379.75,336S367.203,277.828,325,250.438z" + }, + "children": [] + }] + }] + }] +}; +exports.arrowCurveLeft = arrowCurveLeft; \ No newline at end of file diff --git a/dist/metrize/arrowCurveRecycle.js b/dist/metrize/arrowCurveRecycle.js new file mode 100644 index 000000000..535c31ba0 --- /dev/null +++ b/dist/metrize/arrowCurveRecycle.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowCurveRecycle = void 0; +var arrowCurveRecycle = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M279.5,176c0,0-58.797-0.922-101,26.438C136.297,229.828,125.875,288,125.875,288s37.875-43.516,75.219-57.594\r\n\t\tC241.938,215,279.5,224,279.5,224v48l96-64l-96-80V176z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M279.5,176c0,0-58.797-0.922-101,26.438C136.297,229.828,125.875,288,125.875,288s37.875-43.516,75.219-57.594\r\n\t\tC241.938,215,279.5,224,279.5,224v48l96-64l-96-80V176z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M301.344,281.594C260.5,297,215.5,288,215.5,288v-48l-96,64l96,80v-48c0,0,67.297,0.922,109.5-26.438\r\n\t\tC367.203,282.172,379.75,224,379.75,224S338.688,267.516,301.344,281.594z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M301.344,281.594C260.5,297,215.5,288,215.5,288v-48l-96,64l96,80v-48c0,0,67.297,0.922,109.5-26.438\r\n\t\tC367.203,282.172,379.75,224,379.75,224S338.688,267.516,301.344,281.594z" + }, + "children": [] + }] + }] + }] +}; +exports.arrowCurveRecycle = arrowCurveRecycle; \ No newline at end of file diff --git a/dist/metrize/arrowCurveRight.js b/dist/metrize/arrowCurveRight.js new file mode 100644 index 000000000..e1a427b6b --- /dev/null +++ b/dist/metrize/arrowCurveRight.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowCurveRight = void 0; +var arrowCurveRight = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M279.5,224c0,0-58.797-0.922-101,26.438C136.297,277.828,125.875,336,125.875,336s37.875-43.516,75.219-57.594\r\n\t\tC241.938,263,279.5,272,279.5,272v48l96-64l-96-80V224z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M279.5,224c0,0-58.797-0.922-101,26.438C136.297,277.828,125.875,336,125.875,336s37.875-43.516,75.219-57.594\r\n\t\tC241.938,263,279.5,272,279.5,272v48l96-64l-96-80V224z" + }, + "children": [] + }] + }] + }] +}; +exports.arrowCurveRight = arrowCurveRight; \ No newline at end of file diff --git a/dist/metrize/arrowCycle.js b/dist/metrize/arrowCycle.js new file mode 100644 index 000000000..990170ae1 --- /dev/null +++ b/dist/metrize/arrowCycle.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowCycle = void 0; +var arrowCycle = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M188.117,188.125c37.5-37.5,98.273-37.5,135.758,0l-11.312,11.312l50.922,16.969L346.5,165.484l-11.312,11.328\r\n\t\tc-43.75-43.75-114.641-43.75-158.383,0c-27.984,27.984-37.977,67.078-30.141,103.078l18.211,6.078\r\n\t\tC153.953,252.656,161.648,214.594,188.117,188.125z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M188.117,188.125c37.5-37.5,98.273-37.5,135.758,0l-11.312,11.312l50.922,16.969L346.5,165.484l-11.312,11.328\r\n\t\tc-43.75-43.75-114.641-43.75-158.383,0c-27.984,27.984-37.977,67.078-30.141,103.078l18.211,6.078\r\n\t\tC153.953,252.656,161.648,214.594,188.117,188.125z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M347.125,226.031c10.922,33.312,3.234,71.375-23.25,97.844c-37.5,37.5-98.258,37.5-135.758,0l11.312-11.312l-50.906-16.969\r\n\t\tl16.969,50.922l16.969-16.984l-5.656,5.672c43.742,43.734,114.648,43.734,158.383,0c28-28,37.984-67.078,30.156-103.094\r\n\t\tL347.125,226.031z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M347.125,226.031c10.922,33.312,3.234,71.375-23.25,97.844c-37.5,37.5-98.258,37.5-135.758,0l11.312-11.312l-50.906-16.969\r\n\t\tl16.969,50.922l16.969-16.984l-5.656,5.672c43.742,43.734,114.648,43.734,158.383,0c28-28,37.984-67.078,30.156-103.094\r\n\t\tL347.125,226.031z" + }, + "children": [] + }] + }] + }] +}; +exports.arrowCycle = arrowCycle; \ No newline at end of file diff --git a/dist/metrize/arrowCycling.js b/dist/metrize/arrowCycling.js new file mode 100644 index 000000000..4ca679e54 --- /dev/null +++ b/dist/metrize/arrowCycling.js @@ -0,0 +1,75 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowCycling = void 0; +var arrowCycling = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M247.5,160v16l48-24l-48-24v16c-32,0-70.039,20.594-89.961,51.578L164,212.75C179.828,181.484,215.5,160,247.5,160z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M247.5,160v16l48-24l-48-24v16c-32,0-70.039,20.594-89.961,51.578L164,212.75C179.828,181.484,215.5,160,247.5,160z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M160,264.5h16l-24-48l-24,48h16c0,32,20.586,70.031,51.578,89.969L212.75,348C181.484,332.172,160,296.5,160,264.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M160,264.5h16l-24-48l-24,48h16c0,32,20.586,70.031,51.578,89.969L212.75,348C181.484,332.172,160,296.5,160,264.5z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M247.5,352v-16l-48,24l48,24v-16c48,0,78.531-20.594,98.469-51.578L335.25,299.25C319.422,330.516,295.5,352,247.5,352z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M247.5,352v-16l-48,24l48,24v-16c48,0,78.531-20.594,98.469-51.578L335.25,299.25C319.422,330.516,295.5,352,247.5,352z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M316.422,166.031L299.25,176.75C330.516,192.578,352,216.5,352,264.5h-16l24,48l24-48h-16\r\n\t\tC368,216.5,347.406,185.969,316.422,166.031z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M316.422,166.031L299.25,176.75C330.516,192.578,352,216.5,352,264.5h-16l24,48l24-48h-16\r\n\t\tC368,216.5,347.406,185.969,316.422,166.031z" + }, + "children": [] + }] + }] + }] +}; +exports.arrowCycling = arrowCycling; \ No newline at end of file diff --git a/dist/metrize/arrowDown.js b/dist/metrize/arrowDown.js new file mode 100644 index 000000000..2e3c65337 --- /dev/null +++ b/dist/metrize/arrowDown.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowDown = void 0; +var arrowDown = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M0,256c0,141.391,114.594,256,256,256c141.375,0,256-114.609,256-256\r\n\tS397.375,0,256,0C114.594,0,0,114.609,0,256z M472,256c0,119.297-96.719,216-216,216c-119.312,0-216-96.703-216-216\r\n\tS136.688,40,256,40C375.281,40,472,136.703,472,256z" + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "144,226 256,338 368,226 336,194 256,274 176,194 " + }, + "children": [] + }] +}; +exports.arrowDown = arrowDown; \ No newline at end of file diff --git a/dist/metrize/arrowDownBig.js b/dist/metrize/arrowDownBig.js new file mode 100644 index 000000000..ebf38e931 --- /dev/null +++ b/dist/metrize/arrowDownBig.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowDownBig = void 0; +var arrowDownBig = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M0,256c0,141.406,114.609,256,256,256s256-114.594,256-256C512,114.625,397.391,0,256,0S0,114.625,0,256z M472,256\r\n\tc0,119.312-96.703,216-216,216S40,375.312,40,256c0-119.281,96.703-216,216-216S472,136.719,472,256z" + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "points": "160,272 256,384 352,272 303.984,272 303.984,128 207.984,128 207.984,272 " + }, + "children": [] + }] +}; +exports.arrowDownBig = arrowDownBig; \ No newline at end of file diff --git a/dist/metrize/arrowDownBold.js b/dist/metrize/arrowDownBold.js new file mode 100644 index 000000000..aa266c3b3 --- /dev/null +++ b/dist/metrize/arrowDownBold.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowDownBold = void 0; +var arrowDownBold = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "points": "256,362.5 368,170.5 144,170.5 " + }, + "children": [] + }] +}; +exports.arrowDownBold = arrowDownBold; \ No newline at end of file diff --git a/dist/metrize/arrowDownBoldRound.js b/dist/metrize/arrowDownBoldRound.js new file mode 100644 index 000000000..fb8e27064 --- /dev/null +++ b/dist/metrize/arrowDownBoldRound.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowDownBoldRound = void 0; +var arrowDownBoldRound = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M512,256C512,114.608,397.392,0,256,0S0,114.608,0,256s114.608,256,256,256S512,397.392,512,256z M40,256\r\n\tc0-119.296,96.704-216,216-216c119.298,0,216,96.704,216,216c0,119.298-96.702,216-216,216C136.704,472,40,375.298,40,256z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M274.122,343.468l89.592-145.578c9.97-16.844,1.938-24.39-17.841-24.39H166.105c-19.75,0-27.796,7.546-17.812,24.39\r\n\tl89.579,148.655C247.841,363.452,264.152,360.359,274.122,343.468z" + }, + "children": [] + }] +}; +exports.arrowDownBoldRound = arrowDownBoldRound; \ No newline at end of file diff --git a/dist/metrize/arrowDownLight.js b/dist/metrize/arrowDownLight.js new file mode 100644 index 000000000..351394b5a --- /dev/null +++ b/dist/metrize/arrowDownLight.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowDownLight = void 0; +var arrowDownLight = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M0,256c0,141.406,114.609,256,256,256s256-114.594,256-256\r\n\tC512,114.625,397.391,0,256,0S0,114.625,0,256z M472,256c0,119.312-96.703,216-216,216S40,375.312,40,256\r\n\tc0-119.281,96.703-216,216-216S472,136.719,472,256z" + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "239.961,128 239.961,326.406 198.836,288 175.992,309.344 255.992,384 \r\n\t336.008,309.344 313.102,288 271.961,326.406 271.961,128 " + }, + "children": [] + }] +}; +exports.arrowDownLight = arrowDownLight; \ No newline at end of file diff --git a/dist/metrize/arrowDownThin.js b/dist/metrize/arrowDownThin.js new file mode 100644 index 000000000..873785c01 --- /dev/null +++ b/dist/metrize/arrowDownThin.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowDownThin = void 0; +var arrowDownThin = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M0,256c0,141.391,114.594,256,256,256c141.375,0,256-114.609,256-256S397.375,0,256,0C114.594,0,0,114.609,0,256z M472,256\r\n\tc0,119.297-96.719,216-216,216c-119.312,0-216-96.703-216-216S136.688,40,256,40C375.281,40,472,136.703,472,256z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M148.688,206.688c-6.25,6.25-6.25,16.375,0,22.625l96,96c6.25,6.25,16.375,6.25,22.625,0l96-96\r\n\tC366.438,226.188,368,222.094,368,218s-1.562-8.188-4.688-11.312c-6.25-6.25-16.375-6.25-22.625,0L256,291.375l-84.688-84.688\r\n\tC165.062,200.438,154.938,200.438,148.688,206.688z" + }, + "children": [] + }] +}; +exports.arrowDownThin = arrowDownThin; \ No newline at end of file diff --git a/dist/metrize/arrowFillDown.js b/dist/metrize/arrowFillDown.js new file mode 100644 index 000000000..fe1cef5ed --- /dev/null +++ b/dist/metrize/arrowFillDown.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowFillDown = void 0; +var arrowFillDown = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M304,144h-96c-8.797,0-16,7.188-16,15.969v143.828c0,8.766,4.484,21.594,9.969,28.469l43.656,62.578\r\n\t\tc5.469,6.875,14.469,6.875,19.969,0.031l44.391-62.641C315.5,325.375,320,312.562,320,303.797V159.969\r\n\t\tC320,151.188,312.797,144,304,144z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M304,144h-96c-8.797,0-16,7.188-16,15.969v143.828c0,8.766,4.484,21.594,9.969,28.469l43.656,62.578\r\n\t\tc5.469,6.875,14.469,6.875,19.969,0.031l44.391-62.641C315.5,325.375,320,312.562,320,303.797V159.969\r\n\t\tC320,151.188,312.797,144,304,144z" + }, + "children": [] + }] + }] + }] +}; +exports.arrowFillDown = arrowFillDown; \ No newline at end of file diff --git a/dist/metrize/arrowFillLeft.js b/dist/metrize/arrowFillLeft.js new file mode 100644 index 000000000..91735d9bd --- /dev/null +++ b/dist/metrize/arrowFillLeft.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowFillLeft = void 0; +var arrowFillLeft = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M352.031,192H208.203c-8.766,0-21.594,4.484-28.469,9.969l-62.578,43.656c-6.875,5.469-6.875,14.469-0.031,19.969\r\n\t\tl62.641,44.391C186.625,315.5,199.438,320,208.203,320h143.828c8.781,0,15.969-7.203,15.969-16v-96\r\n\t\tC368,199.203,360.812,192,352.031,192z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M352.031,192H208.203c-8.766,0-21.594,4.484-28.469,9.969l-62.578,43.656c-6.875,5.469-6.875,14.469-0.031,19.969\r\n\t\tl62.641,44.391C186.625,315.5,199.438,320,208.203,320h143.828c8.781,0,15.969-7.203,15.969-16v-96\r\n\t\tC368,199.203,360.812,192,352.031,192z" + }, + "children": [] + }] + }] + }] +}; +exports.arrowFillLeft = arrowFillLeft; \ No newline at end of file diff --git a/dist/metrize/arrowFillRight.js b/dist/metrize/arrowFillRight.js new file mode 100644 index 000000000..5c2c95e01 --- /dev/null +++ b/dist/metrize/arrowFillRight.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowFillRight = void 0; +var arrowFillRight = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M332.234,202.016C325.375,196.5,312.562,192,303.797,192H159.969c-8.781,0-15.969,7.203-15.969,16v96\r\n\t\tc0,8.797,7.188,16,15.969,16h143.828c8.766,0,21.594-4.484,28.469-9.969l62.578-43.656c6.875-5.469,6.875-14.469,0.031-19.969\r\n\t\tL332.234,202.016z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M332.234,202.016C325.375,196.5,312.562,192,303.797,192H159.969c-8.781,0-15.969,7.203-15.969,16v96\r\n\t\tc0,8.797,7.188,16,15.969,16h143.828c8.766,0,21.594-4.484,28.469-9.969l62.578-43.656c6.875-5.469,6.875-14.469,0.031-19.969\r\n\t\tL332.234,202.016z" + }, + "children": [] + }] + }] + }] +}; +exports.arrowFillRight = arrowFillRight; \ No newline at end of file diff --git a/dist/metrize/arrowFillUp.js b/dist/metrize/arrowFillUp.js new file mode 100644 index 000000000..53b56bdc4 --- /dev/null +++ b/dist/metrize/arrowFillUp.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowFillUp = void 0; +var arrowFillUp = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M266.375,117.156c-5.469-6.875-14.469-6.875-19.969-0.031l-44.391,62.641C196.5,186.625,192,199.438,192,208.203v143.828\r\n\t\tc0,8.781,7.203,15.969,16,15.969h96c8.797,0,16-7.188,16-15.969V208.203c0-8.766-4.484-21.594-9.969-28.469L266.375,117.156z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M266.375,117.156c-5.469-6.875-14.469-6.875-19.969-0.031l-44.391,62.641C196.5,186.625,192,199.438,192,208.203v143.828\r\n\t\tc0,8.781,7.203,15.969,16,15.969h96c8.797,0,16-7.188,16-15.969V208.203c0-8.766-4.484-21.594-9.969-28.469L266.375,117.156z" + }, + "children": [] + }] + }] + }] +}; +exports.arrowFillUp = arrowFillUp; \ No newline at end of file diff --git a/dist/metrize/arrowLeft.js b/dist/metrize/arrowLeft.js new file mode 100644 index 000000000..3c8ff83da --- /dev/null +++ b/dist/metrize/arrowLeft.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowLeft = void 0; +var arrowLeft = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\tS397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "286,144 174,256 286,368 318,336 238,256 318,176 " + }, + "children": [] + }] +}; +exports.arrowLeft = arrowLeft; \ No newline at end of file diff --git a/dist/metrize/arrowLeftBig.js b/dist/metrize/arrowLeftBig.js new file mode 100644 index 000000000..0dc6ed261 --- /dev/null +++ b/dist/metrize/arrowLeftBig.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowLeftBig = void 0; +var arrowLeftBig = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.562,0,0,114.609,0,256s114.562,256,256,256c141.375,0,256-114.609,256-256S397.375,0,256,0z M256,472\r\n\tc-119.344,0-216.031-96.703-216.031-216S136.656,40,256,40c119.281,0,216,96.703,216,216S375.281,472,256,472z" + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "points": "240,160 128,256 240,352 240,304.031 384,304.031 384,208.031 240,208.031 " + }, + "children": [] + }] +}; +exports.arrowLeftBig = arrowLeftBig; \ No newline at end of file diff --git a/dist/metrize/arrowLeftBold.js b/dist/metrize/arrowLeftBold.js new file mode 100644 index 000000000..379afd165 --- /dev/null +++ b/dist/metrize/arrowLeftBold.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowLeftBold = void 0; +var arrowLeftBold = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,512c141.391,0,256-114.609,256-256C512,114.609,397.391,0,256,0C114.609,0,0,114.609,0,256\r\n\tC0,397.391,114.609,512,256,512z M256,40c119.297,0,216,96.703,216,216s-96.703,216-216,216S40,375.297,40,256S136.703,40,256,40z" + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "points": "331.5,144 139.5,256 331.5,368 " + }, + "children": [] + }] +}; +exports.arrowLeftBold = arrowLeftBold; \ No newline at end of file diff --git a/dist/metrize/arrowLeftBoldRound.js b/dist/metrize/arrowLeftBoldRound.js new file mode 100644 index 000000000..ca483bf28 --- /dev/null +++ b/dist/metrize/arrowLeftBoldRound.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowLeftBoldRound = void 0; +var arrowLeftBoldRound = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,512c141.391,0,256-114.609,256-256C512,114.609,397.391,0,256,0C114.609,0,0,114.609,0,256\r\n\tC0,397.391,114.609,512,256,512z M256,40c119.297,0,216,96.703,216,216s-96.703,216-216,216S40,375.297,40,256S136.703,40,256,40z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M157.84,274.121l145.872,89.594c16.844,9.969,24.685,1.938,24.685-17.844V166.105c0-19.75-7.841-27.797-24.685-17.812\r\n\tl-148.795,89.578C137.995,247.84,140.949,264.152,157.84,274.121z" + }, + "children": [] + }] +}; +exports.arrowLeftBoldRound = arrowLeftBoldRound; \ No newline at end of file diff --git a/dist/metrize/arrowLeftLight.js b/dist/metrize/arrowLeftLight.js new file mode 100644 index 000000000..61ebb2f0a --- /dev/null +++ b/dist/metrize/arrowLeftLight.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowLeftLight = void 0; +var arrowLeftLight = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\tS397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "384,240 185.594,240 224,198.844 202.656,176 128,256 202.656,336 \r\n\t224,313.125 185.594,272 384,272 " + }, + "children": [] + }] +}; +exports.arrowLeftLight = arrowLeftLight; \ No newline at end of file diff --git a/dist/metrize/arrowLeftThin.js b/dist/metrize/arrowLeftThin.js new file mode 100644 index 000000000..69b47179f --- /dev/null +++ b/dist/metrize/arrowLeftThin.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowLeftThin = void 0; +var arrowLeftThin = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M305.312,148.688c-6.25-6.25-16.375-6.25-22.625,0l-96,96c-6.25,6.25-6.25,16.375,0,22.625l96,96\r\n\tC285.812,366.438,289.906,368,294,368s8.188-1.562,11.312-4.688c6.25-6.25,6.25-16.375,0-22.625L220.625,256l84.688-84.688\r\n\tC311.562,165.062,311.562,154.938,305.312,148.688z" + }, + "children": [] + }] +}; +exports.arrowLeftThin = arrowLeftThin; \ No newline at end of file diff --git a/dist/metrize/arrowMultiLineDown.js b/dist/metrize/arrowMultiLineDown.js new file mode 100644 index 000000000..f8ea50718 --- /dev/null +++ b/dist/metrize/arrowMultiLineDown.js @@ -0,0 +1,125 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowMultiLineDown = void 0; +var arrowMultiLineDown = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M0,256c0,141.391,114.609,256,256,256s256-114.609,256-256S397.391,0,256,0S0,114.609,0,256z M472,256\r\n\tc0,119.297-96.703,216-216,216S40,375.297,40,256S136.703,40,256,40S472,136.703,472,256z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "223.953", + "y": "128", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "64", + "height": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "223.953", + "y": "128", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "64", + "height": "16" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "223.953", + "y": "160", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "64", + "height": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "223.953", + "y": "160", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "64", + "height": "16" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "223.953", + "y": "192", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "64", + "height": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "223.953", + "y": "192", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "64", + "height": "16" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "192,320 256,384 320,320 287.953,320 287.953,256 223.953,256 \r\n\t\t223.953,320 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "192,320 256,384 320,320 287.953,320 287.953,256 223.953,256 \r\n\t\t223.953,320 \t" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "223.953", + "y": "224", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "64", + "height": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "223.953", + "y": "224", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "64", + "height": "16" + }, + "children": [] + }] + }] + }] +}; +exports.arrowMultiLineDown = arrowMultiLineDown; \ No newline at end of file diff --git a/dist/metrize/arrowMultiLineLeft.js b/dist/metrize/arrowMultiLineLeft.js new file mode 100644 index 000000000..6dc09c005 --- /dev/null +++ b/dist/metrize/arrowMultiLineLeft.js @@ -0,0 +1,125 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowMultiLineLeft = void 0; +var arrowMultiLineLeft = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "368", + "y": "224", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "16", + "height": "64" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "368", + "y": "224", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "16", + "height": "64" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "336", + "y": "224", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "16", + "height": "64" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "336", + "y": "224", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "16", + "height": "64" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "304", + "y": "224", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "16", + "height": "64" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "304", + "y": "224", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "16", + "height": "64" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "192,192 128,256 192,320 192,288 256,288 256,224 192,224 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "192,192 128,256 192,320 192,288 256,288 256,224 192,224 \t" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "272", + "y": "224", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "16", + "height": "64" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "272", + "y": "224", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "16", + "height": "64" + }, + "children": [] + }] + }] + }] +}; +exports.arrowMultiLineLeft = arrowMultiLineLeft; \ No newline at end of file diff --git a/dist/metrize/arrowMultiLineRight.js b/dist/metrize/arrowMultiLineRight.js new file mode 100644 index 000000000..7e741151a --- /dev/null +++ b/dist/metrize/arrowMultiLineRight.js @@ -0,0 +1,125 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowMultiLineRight = void 0; +var arrowMultiLineRight = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,512c141.391,0,256-114.609,256-256S397.391,0,256,0S0,114.609,0,256S114.609,512,256,512z M256,40\r\n\tc119.297,0,216,96.703,216,216s-96.703,216-216,216S40,375.297,40,256S136.703,40,256,40z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "128", + "y": "224", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "16", + "height": "64" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "128", + "y": "224", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "16", + "height": "64" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "160", + "y": "224", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "16", + "height": "64" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "160", + "y": "224", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "16", + "height": "64" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "192", + "y": "224", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "16", + "height": "64" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "192", + "y": "224", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "16", + "height": "64" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "320,320 384,256 320,192 320,224 256,224 256,288 320,288 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "320,320 384,256 320,192 320,224 256,224 256,288 320,288 \t" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "224", + "y": "224", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "16", + "height": "64" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "224", + "y": "224", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "16", + "height": "64" + }, + "children": [] + }] + }] + }] +}; +exports.arrowMultiLineRight = arrowMultiLineRight; \ No newline at end of file diff --git a/dist/metrize/arrowMultiLineUp.js b/dist/metrize/arrowMultiLineUp.js new file mode 100644 index 000000000..01f6eaf9e --- /dev/null +++ b/dist/metrize/arrowMultiLineUp.js @@ -0,0 +1,125 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowMultiLineUp = void 0; +var arrowMultiLineUp = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M512,256C512,114.609,397.391,0,256,0S0,114.609,0,256s114.609,256,256,256S512,397.391,512,256z M40,256\r\n\tc0-119.297,96.703-216,216-216s216,96.703,216,216s-96.703,216-216,216S40,375.297,40,256z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "223.969", + "y": "368", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "64", + "height": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "223.969", + "y": "368", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "64", + "height": "16" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "223.969", + "y": "336", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "64", + "height": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "223.969", + "y": "336", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "64", + "height": "16" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "223.969", + "y": "304", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "64", + "height": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "223.969", + "y": "304", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "64", + "height": "16" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "320,192 256,128 192,192 223.969,192 223.969,256 287.969,256 \r\n\t\t287.969,192 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "320,192 256,128 192,192 223.969,192 223.969,256 287.969,256 \r\n\t\t287.969,192 \t" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "223.969", + "y": "272", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "64", + "height": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "223.969", + "y": "272", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "64", + "height": "16" + }, + "children": [] + }] + }] + }] +}; +exports.arrowMultiLineUp = arrowMultiLineUp; \ No newline at end of file diff --git a/dist/metrize/arrowObliqueContract.js b/dist/metrize/arrowObliqueContract.js new file mode 100644 index 000000000..5b3502d28 --- /dev/null +++ b/dist/metrize/arrowObliqueContract.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowObliqueContract = void 0; +var arrowObliqueContract = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\t\tS397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\t\tS397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "176,144 144,176 184,216 160,240 240,240 240,160 216,184 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "176,144 144,176 184,216 160,240 240,240 240,160 216,184 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "352.031,272 272,272 272,351.984 296.016,327.984 336.031,367.984 \r\n\t\t368.031,335.984 328.031,296 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "352.031,272 272,272 272,351.984 296.016,327.984 336.031,367.984 \r\n\t\t368.031,335.984 328.031,296 \t" + }, + "children": [] + }] + }] + }] +}; +exports.arrowObliqueContract = arrowObliqueContract; \ No newline at end of file diff --git a/dist/metrize/arrowObliqueContractDirections.js b/dist/metrize/arrowObliqueContractDirections.js new file mode 100644 index 000000000..bb0b33788 --- /dev/null +++ b/dist/metrize/arrowObliqueContractDirections.js @@ -0,0 +1,103 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowObliqueContractDirections = void 0; +var arrowObliqueContractDirections = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\t\tS397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\t\tS397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "159.984,240 240,240 240,160 216,184 175.984,144 143.984,176 \r\n\t\t\t183.984,216 \t\t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "159.984,240 240,240 240,160 216,184 175.984,144 143.984,176 \r\n\t\t\t183.984,216 \t\t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "328.016,296 352.016,272 272,272 272,351.984 296,327.984 \r\n\t\t\t336.016,367.984 368.016,335.984 \t\t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "328.016,296 352.016,272 272,272 272,351.984 296,327.984 \r\n\t\t\t336.016,367.984 368.016,335.984 \t\t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "327.984,215.984 367.984,176 335.984,143.984 296,183.984 272,159.984 \r\n\t\t\t272,240 351.984,240 \t\t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "327.984,215.984 367.984,176 335.984,143.984 296,183.984 272,159.984 \r\n\t\t\t272,240 351.984,240 \t\t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "183.984,296 143.984,336.016 175.984,368.016 215.984,328.016 \r\n\t\t\t240,352.016 240,272 159.984,272 \t\t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "183.984,296 143.984,336.016 175.984,368.016 215.984,328.016 \r\n\t\t\t240,352.016 240,272 159.984,272 \t\t" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.arrowObliqueContractDirections = arrowObliqueContractDirections; \ No newline at end of file diff --git a/dist/metrize/arrowObliqueExpand.js b/dist/metrize/arrowObliqueExpand.js new file mode 100644 index 000000000..ce1d2880a --- /dev/null +++ b/dist/metrize/arrowObliqueExpand.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowObliqueExpand = void 0; +var arrowObliqueExpand = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\t\tS397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\t\tS397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "224,144 144,144 144,224 168,200 208,240 240,208 200,168 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "224,144 144,144 144,224 168,200 208,240 240,208 200,168 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "304,272 272,304 312,344 288,368 368,368 368,288 344,312 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "304,272 272,304 312,344 288,368 368,368 368,288 344,312 \t" + }, + "children": [] + }] + }] + }] +}; +exports.arrowObliqueExpand = arrowObliqueExpand; \ No newline at end of file diff --git a/dist/metrize/arrowObliqueExpandDirections.js b/dist/metrize/arrowObliqueExpandDirections.js new file mode 100644 index 000000000..505fd9868 --- /dev/null +++ b/dist/metrize/arrowObliqueExpandDirections.js @@ -0,0 +1,127 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowObliqueExpandDirections = void 0; +var arrowObliqueExpandDirections = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\t\tS397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\t\tS397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "224,144 144,144 144,224 168,200 208,240 240,208 200,168 \t\t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "224,144 144,144 144,224 168,200 208,240 240,208 200,168 \t\t" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "288,368 368,368 368,288 344,312 304,272 272,304 312,344 \t\t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "288,368 368,368 368,288 344,312 304,272 272,304 312,344 \t\t" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "368,224 368,144 288,144 312,168 272,208 304,240 344,200 \t\t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "368,224 368,144 288,144 312,168 272,208 304,240 344,200 \t\t" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "144,288 144,368 224,368 200,344 240,304 208,272 168,312 \t\t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "144,288 144,368 224,368 200,344 240,304 208,272 168,312 \t\t" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.arrowObliqueExpandDirections = arrowObliqueExpandDirections; \ No newline at end of file diff --git a/dist/metrize/arrowRight.js b/dist/metrize/arrowRight.js new file mode 100644 index 000000000..7b248f25b --- /dev/null +++ b/dist/metrize/arrowRight.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowRight = void 0; +var arrowRight = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M256,512c141.391,0,256-114.609,256-256S397.391,0,256,0S0,114.609,0,256\r\n\tS114.609,512,256,512z M256,40c119.297,0,216,96.703,216,216s-96.703,216-216,216S40,375.297,40,256S136.703,40,256,40z" + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "226,368 338,256 226,144 194,176 274,256 194,336 " + }, + "children": [] + }] +}; +exports.arrowRight = arrowRight; \ No newline at end of file diff --git a/dist/metrize/arrowRightBig.js b/dist/metrize/arrowRightBig.js new file mode 100644 index 000000000..3bf57e4eb --- /dev/null +++ b/dist/metrize/arrowRightBig.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowRightBig = void 0; +var arrowRightBig = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256.008,512.004c141.408,0,255.988-114.611,255.988-256.004S397.416-0.004,256.008-0.004\r\n\tC114.631-0.004,0.004,114.607,0.004,256S114.631,512.004,256.008,512.004z M256.008,39.997\r\n\tc119.314,0,216.003,96.705,216.003,216.003s-96.688,216.004-216.003,216.004c-119.283,0-216.004-96.705-216.004-216.004\r\n\tS136.725,39.997,256.008,39.997z" + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "points": "272,352.002 384.002,256 272,159.998 272,207.999 127.998,207.999 127.998,304 272,304 " + }, + "children": [] + }] +}; +exports.arrowRightBig = arrowRightBig; \ No newline at end of file diff --git a/dist/metrize/arrowRightBold.js b/dist/metrize/arrowRightBold.js new file mode 100644 index 000000000..61e2dbc84 --- /dev/null +++ b/dist/metrize/arrowRightBold.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowRightBold = void 0; +var arrowRightBold = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "points": "169.5,368 361.5,256 169.5,144 " + }, + "children": [] + }] +}; +exports.arrowRightBold = arrowRightBold; \ No newline at end of file diff --git a/dist/metrize/arrowRightBoldRound.js b/dist/metrize/arrowRightBoldRound.js new file mode 100644 index 000000000..0cbaf4369 --- /dev/null +++ b/dist/metrize/arrowRightBoldRound.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowRightBoldRound = void 0; +var arrowRightBoldRound = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M353.661,237.879l-154.174-89.594c-16.844-9.969-32.987-1.938-32.987,17.844v179.766c0,19.75,16.143,27.797,32.987,17.812\r\n\tl152.955-89.578C369.348,264.16,370.552,247.848,353.661,237.879z" + }, + "children": [] + }] +}; +exports.arrowRightBoldRound = arrowRightBoldRound; \ No newline at end of file diff --git a/dist/metrize/arrowRightLight.js b/dist/metrize/arrowRightLight.js new file mode 100644 index 000000000..ba8e098a7 --- /dev/null +++ b/dist/metrize/arrowRightLight.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowRightLight = void 0; +var arrowRightLight = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M256,512c141.391,0,256-114.609,256-256S397.391,0,256,0S0,114.609,0,256\r\n\tS114.609,512,256,512z M256,40c119.297,0,216,96.703,216,216s-96.703,216-216,216S40,375.297,40,256S136.703,40,256,40z" + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "128,272 326.406,272 288,313.156 309.344,336 384,256 309.344,176 \r\n\t288,198.875 326.406,240 128,240 " + }, + "children": [] + }] +}; +exports.arrowRightLight = arrowRightLight; \ No newline at end of file diff --git a/dist/metrize/arrowRightThin.js b/dist/metrize/arrowRightThin.js new file mode 100644 index 000000000..a1bf25905 --- /dev/null +++ b/dist/metrize/arrowRightThin.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowRightThin = void 0; +var arrowRightThin = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,512c141.391,0,256-114.609,256-256S397.391,0,256,0S0,114.609,0,256S114.609,512,256,512z M256,40\r\n\t\tc119.297,0,216,96.703,216,216s-96.703,216-216,216S40,375.297,40,256S136.703,40,256,40z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,512c141.391,0,256-114.609,256-256S397.391,0,256,0S0,114.609,0,256S114.609,512,256,512z M256,40\r\n\t\tc119.297,0,216,96.703,216,216s-96.703,216-216,216S40,375.297,40,256S136.703,40,256,40z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M212.688,363.312c6.25,6.25,16.375,6.25,22.625,0l96-96c6.25-6.25,6.25-16.375,0-22.625l-96-96\r\n\t\tC232.188,145.562,228.094,144,224,144s-8.188,1.562-11.312,4.688c-6.25,6.25-6.25,16.375,0,22.625L297.375,256l-84.688,84.688\r\n\t\tC206.438,346.938,206.438,357.062,212.688,363.312z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M212.688,363.312c6.25,6.25,16.375,6.25,22.625,0l96-96c6.25-6.25,6.25-16.375,0-22.625l-96-96\r\n\t\tC232.188,145.562,228.094,144,224,144s-8.188,1.562-11.312,4.688c-6.25,6.25-6.25,16.375,0,22.625L297.375,256l-84.688,84.688\r\n\t\tC206.438,346.938,206.438,357.062,212.688,363.312z" + }, + "children": [] + }] + }] + }] +}; +exports.arrowRightThin = arrowRightThin; \ No newline at end of file diff --git a/dist/metrize/arrowUp.js b/dist/metrize/arrowUp.js new file mode 100644 index 000000000..132bf5b14 --- /dev/null +++ b/dist/metrize/arrowUp.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowUp = void 0; +var arrowUp = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M512,256C512,114.609,397.391,0,256,0S0,114.609,0,256s114.609,256,256,256\r\n\tS512,397.391,512,256z M40,256c0-119.297,96.703-216,216-216s216,96.703,216,216s-96.703,216-216,216S40,375.297,40,256z" + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "368,286 256,174 144,286 176,318 256,238 336,318 " + }, + "children": [] + }] +}; +exports.arrowUp = arrowUp; \ No newline at end of file diff --git a/dist/metrize/arrowUpBig.js b/dist/metrize/arrowUpBig.js new file mode 100644 index 000000000..47c1b7889 --- /dev/null +++ b/dist/metrize/arrowUpBig.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowUpBig = void 0; +var arrowUpBig = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M512,256.008C512,114.597,397.388-0.016,255.992,0C114.598,0-0.016,114.581,0,256.008\r\n\tC0,397.387,114.613,512.016,255.992,512C397.388,512.016,512,397.387,512,256.008z M40.002,256.008\r\n\tc0-119.316,96.69-216.007,215.99-216.007C375.309,40.001,472,136.691,472,256.008c0,119.269-96.691,215.99-216.008,215.99\r\n\tC136.692,471.998,40.002,375.276,40.002,256.008z" + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "points": "352.003,239.999 255.999,127.996 159.997,239.999 207.998,239.999 207.998,384.004 304.001,384.004 \r\n\t304.001,239.999 " + }, + "children": [] + }] +}; +exports.arrowUpBig = arrowUpBig; \ No newline at end of file diff --git a/dist/metrize/arrowUpBold.js b/dist/metrize/arrowUpBold.js new file mode 100644 index 000000000..7d72b9a29 --- /dev/null +++ b/dist/metrize/arrowUpBold.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowUpBold = void 0; +var arrowUpBold = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "points": "144,342.5 368,342.5 256,150.5 " + }, + "children": [] + }] +}; +exports.arrowUpBold = arrowUpBold; \ No newline at end of file diff --git a/dist/metrize/arrowUpBoldRound.js b/dist/metrize/arrowUpBoldRound.js new file mode 100644 index 000000000..b057c3743 --- /dev/null +++ b/dist/metrize/arrowUpBoldRound.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowUpBoldRound = void 0; +var arrowUpBoldRound = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M0,256c0,141.391,114.609,256,256,256s256-114.609,256-256S397.391,0,256,0S0,114.609,0,256z M472,256\r\n\tc0,119.297-96.703,216-216,216S40,375.297,40,256S136.703,40,256,40S472,136.703,472,256z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M237.879,158.339l-89.594,154.175c-9.969,16.844-1.938,32.986,17.844,32.986h179.766c19.75,0,27.797-16.143,17.812-32.986\r\n\tl-89.578-152.955C264.16,142.652,247.848,141.448,237.879,158.339z" + }, + "children": [] + }] +}; +exports.arrowUpBoldRound = arrowUpBoldRound; \ No newline at end of file diff --git a/dist/metrize/arrowUpLight.js b/dist/metrize/arrowUpLight.js new file mode 100644 index 000000000..cf60108fa --- /dev/null +++ b/dist/metrize/arrowUpLight.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowUpLight = void 0; +var arrowUpLight = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M512,256C512,114.609,397.391,0,256,0S0,114.609,0,256s114.609,256,256,256\r\n\tS512,397.391,512,256z M40,256c0-119.297,96.703-216,216-216s216,96.703,216,216s-96.703,216-216,216S40,375.297,40,256z" + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "271.969,384 271.969,185.594 313.141,224 336,202.656 256,128 \r\n\t176,202.656 198.859,224 239.969,185.594 239.969,384 " + }, + "children": [] + }] +}; +exports.arrowUpLight = arrowUpLight; \ No newline at end of file diff --git a/dist/metrize/arrowUpThin.js b/dist/metrize/arrowUpThin.js new file mode 100644 index 000000000..b1f8f9209 --- /dev/null +++ b/dist/metrize/arrowUpThin.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowUpThin = void 0; +var arrowUpThin = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M512,256C512,114.609,397.391,0,256,0S0,114.609,0,256s114.609,256,256,256S512,397.391,512,256z M40,256\r\n\t\tc0-119.297,96.703-216,216-216s216,96.703,216,216s-96.703,216-216,216S40,375.297,40,256z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M512,256C512,114.609,397.391,0,256,0S0,114.609,0,256s114.609,256,256,256S512,397.391,512,256z M40,256\r\n\t\tc0-119.297,96.703-216,216-216s216,96.703,216,216s-96.703,216-216,216S40,375.297,40,256z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M363.312,299.312c6.25-6.25,6.25-16.375,0-22.625l-96-96c-6.25-6.25-16.375-6.25-22.625,0l-96,96\r\n\t\tC145.562,279.812,144,283.906,144,288s1.562,8.188,4.688,11.312c6.25,6.25,16.375,6.25,22.625,0L256,214.625l84.688,84.688\r\n\t\tC346.938,305.562,357.062,305.562,363.312,299.312z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M363.312,299.312c6.25-6.25,6.25-16.375,0-22.625l-96-96c-6.25-6.25-16.375-6.25-22.625,0l-96,96\r\n\t\tC145.562,279.812,144,283.906,144,288s1.562,8.188,4.688,11.312c6.25,6.25,16.375,6.25,22.625,0L256,214.625l84.688,84.688\r\n\t\tC346.938,305.562,357.062,305.562,363.312,299.312z" + }, + "children": [] + }] + }] + }] +}; +exports.arrowUpThin = arrowUpThin; \ No newline at end of file diff --git a/dist/metrize/atom.js b/dist/metrize/atom.js new file mode 100644 index 000000000..67eb8e8bb --- /dev/null +++ b/dist/metrize/atom.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.atom = void 0; +var atom = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256c0,141.391,114.609,256,256,256c141.391,0,256-114.609,256-256\r\n\tC512,114.609,397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M384,256c0-15.719-10.797-29.953-28.953-40.969c5.266-21.25,2.422-38.594-8.531-49.531\r\n\t\tc-7.297-7.312-17.78-11.156-30.297-11.156c-6.016,0-12.5,1.078-19.188,2.719C286,138.844,271.75,128,256,128\r\n\t\ts-30,10.844-41.031,29.062c-6.688-1.625-13.188-2.719-19.188-2.719c-12.531,0-23,3.859-30.297,11.156\r\n\t\tc-11.125,11.125-13.547,28.844-8.484,49.5c-18.188,11.031-29,25.266-29,41c0,15.733,10.812,29.969,29,41\r\n\t\tc-5.062,20.672-2.625,38.392,8.5,49.517c7.281,7.297,17.766,11.155,30.281,11.155c6.016,0,12.5-1.078,19.188-2.719\r\n\t\tC226,373.172,240.25,384,256,384s30-10.828,41.031-29.047c6.672,1.641,13.156,2.719,19.156,2.719\r\n\t\tc12.53,0,23.016-3.859,30.312-11.156c10.953-10.938,13.797-28.297,8.531-49.531C373.203,285.953,384,271.719,384,256z\r\n\t\t M288.969,176.312c5.344-2.047,10.562-3.672,15.484-4.625c4.094-0.812,8.078-1.344,11.766-1.344c8.312,0,14.688,2.172,18.984,6.469\r\n\t\tc6.188,6.172,7.891,17.062,5.156,30.75c-0.859,4.312-2.125,8.875-3.875,13.719c-0.203,0.562-0.562,1.188-0.781,1.75\r\n\t\tc-2.297,6-5.203,12.094-8.609,18.25c-2.703-3.719-5.344-7.438-8.344-11.109c-4.875-5.953-10.156-11.797-15.734-17.484\r\n\t\tc-0.625-0.625-1.141-1.312-1.766-1.938c-0.641-0.625-1.312-1.188-1.953-1.812c-5.734-5.625-11.625-10.812-17.594-15.688\r\n\t\tc-3.641-2.984-7.281-5.844-10.969-8.516C276.969,181.281,283.031,178.562,288.969,176.312z M318.203,256\r\n\t\tc-4.453,6.562-9.547,13.047-15.016,19.438c-4.188,4.906-8.531,9.781-13.25,14.5c-4.703,4.703-9.547,9.062-14.453,13.234\r\n\t\tc-6.422,5.484-12.953,10.469-19.5,14.922c-6.547-4.453-13.078-9.438-19.516-14.922c-4.875-4.172-9.719-8.516-14.406-13.219\r\n\t\tc-4.844-4.828-9.109-9.703-13.25-14.562c-5.531-6.516-10.594-12.983-14.906-19.391c4.312-6.391,9.375-12.875,14.906-19.375\r\n\t\tc4.141-4.875,8.406-9.75,13.25-14.562c4.688-4.719,9.531-9.062,14.438-13.25c6.422-5.469,12.953-10.438,19.484-14.891\r\n\t\tc6.547,4.453,13.062,9.422,19.484,14.891c4.906,4.188,9.767,8.547,14.47,13.25c4.719,4.719,9.062,9.594,13.25,14.5\r\n\t\tC308.656,242.969,313.75,249.469,318.203,256z M256,144c8.531,0,17.422,6.5,25.219,18.125c-8.234,3.281-16.688,7.594-25.219,12.781\r\n\t\tc-8.531-5.172-17-9.5-25.219-12.781C238.562,150.5,247.469,144,256,144z M176.797,176.812c4.297-4.281,10.672-6.469,18.984-6.469\r\n\t\tc3.688,0,7.656,0.531,11.766,1.344c4.922,0.969,10.141,2.594,15.484,4.625c5.922,2.266,11.984,4.969,18.219,8.422\r\n\t\tc-3.688,2.672-7.344,5.547-10.969,8.516c-5.969,4.875-11.844,10.031-17.578,15.656c-0.641,0.625-1.328,1.188-1.953,1.844\r\n\t\tc-0.656,0.641-1.25,1.312-1.891,1.969c-5.578,5.688-10.812,11.469-15.594,17.297c-2.984,3.641-5.766,7.297-8.438,10.969\r\n\t\tc-3.391-6.203-6.266-12.25-8.438-17.984c-2.047-5.438-3.641-10.656-4.594-15.5C169.078,193.766,170.75,182.844,176.797,176.812z\r\n\t\t M162.156,281.25C150.531,273.453,144,264.547,144,256c0-8.531,6.516-17.438,18.156-25.234c3.25,8.203,7.516,16.672,12.719,25.234\r\n\t\tC169.672,264.594,165.406,273.047,162.156,281.25z M223.031,335.703c-5.344,2.047-10.562,3.672-15.469,4.641\r\n\t\tc-4.109,0.797-8.078,1.328-11.781,1.328c-8.297,0-14.688-2.188-18.969-6.469c-6.047-6.047-7.719-16.953-5-30.703\r\n\t\tc0.953-4.828,2.531-10.047,4.594-15.5c2.156-5.719,5.047-11.766,8.422-17.969c2.672,3.672,5.453,7.328,8.453,10.969\r\n\t\tc4.766,5.828,10,11.594,15.562,17.281c0.656,0.656,1.25,1.328,1.906,1.984c0.641,0.641,1.312,1.202,1.969,1.844\r\n\t\tc5.719,5.608,11.594,10.781,17.531,15.641c3.656,2.984,7.312,5.859,11,8.531C235.031,330.734,228.969,333.438,223.031,335.703z\r\n\t\t M256,368c-8.531,0-17.422-6.5-25.203-18.109c8.219-3.281,16.672-7.608,25.188-12.797c8.531,5.203,16.984,9.531,25.219,12.812\r\n\t\tC273.422,361.5,264.531,368,256,368z M335.188,335.203c-4.297,4.297-10.688,6.469-19,6.469c-3.688,0-7.655-0.531-11.75-1.328\r\n\t\tc-4.922-0.969-10.125-2.594-15.483-4.641c-5.922-2.25-11.984-4.969-18.234-8.422c3.703-2.672,7.345-5.547,11-8.531\r\n\t\tc5.953-4.875,11.845-10.047,17.578-15.672c0.642-0.641,1.312-1.188,1.953-1.828c0.625-0.625,1.156-1.312,1.767-1.938\r\n\t\tc5.577-5.688,10.858-11.517,15.719-17.47c3-3.672,5.655-7.391,8.358-11.125c3.392,6.173,6.297,12.267,8.578,18.25\r\n\t\tc0.234,0.595,0.578,1.203,0.797,1.781c1.75,4.812,3,9.375,3.875,13.688C343.078,318.125,341.375,329.031,335.188,335.203z\r\n\t\t M349.75,281.297c-3.328-8.328-7.719-16.797-12.875-25.297c5.156-8.5,9.562-16.969,12.875-25.297\r\n\t\tC361.438,238.5,368,247.438,368,256C368,264.562,361.438,273.5,349.75,281.297z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M384,256c0-15.719-10.797-29.953-28.953-40.969c5.266-21.25,2.422-38.594-8.531-49.531\r\n\t\tc-7.297-7.312-17.78-11.156-30.297-11.156c-6.016,0-12.5,1.078-19.188,2.719C286,138.844,271.75,128,256,128\r\n\t\ts-30,10.844-41.031,29.062c-6.688-1.625-13.188-2.719-19.188-2.719c-12.531,0-23,3.859-30.297,11.156\r\n\t\tc-11.125,11.125-13.547,28.844-8.484,49.5c-18.188,11.031-29,25.266-29,41c0,15.733,10.812,29.969,29,41\r\n\t\tc-5.062,20.672-2.625,38.392,8.5,49.517c7.281,7.297,17.766,11.155,30.281,11.155c6.016,0,12.5-1.078,19.188-2.719\r\n\t\tC226,373.172,240.25,384,256,384s30-10.828,41.031-29.047c6.672,1.641,13.156,2.719,19.156,2.719\r\n\t\tc12.53,0,23.016-3.859,30.312-11.156c10.953-10.938,13.797-28.297,8.531-49.531C373.203,285.953,384,271.719,384,256z\r\n\t\t M288.969,176.312c5.344-2.047,10.562-3.672,15.484-4.625c4.094-0.812,8.078-1.344,11.766-1.344c8.312,0,14.688,2.172,18.984,6.469\r\n\t\tc6.188,6.172,7.891,17.062,5.156,30.75c-0.859,4.312-2.125,8.875-3.875,13.719c-0.203,0.562-0.562,1.188-0.781,1.75\r\n\t\tc-2.297,6-5.203,12.094-8.609,18.25c-2.703-3.719-5.344-7.438-8.344-11.109c-4.875-5.953-10.156-11.797-15.734-17.484\r\n\t\tc-0.625-0.625-1.141-1.312-1.766-1.938c-0.641-0.625-1.312-1.188-1.953-1.812c-5.734-5.625-11.625-10.812-17.594-15.688\r\n\t\tc-3.641-2.984-7.281-5.844-10.969-8.516C276.969,181.281,283.031,178.562,288.969,176.312z M318.203,256\r\n\t\tc-4.453,6.562-9.547,13.047-15.016,19.438c-4.188,4.906-8.531,9.781-13.25,14.5c-4.703,4.703-9.547,9.062-14.453,13.234\r\n\t\tc-6.422,5.484-12.953,10.469-19.5,14.922c-6.547-4.453-13.078-9.438-19.516-14.922c-4.875-4.172-9.719-8.516-14.406-13.219\r\n\t\tc-4.844-4.828-9.109-9.703-13.25-14.562c-5.531-6.516-10.594-12.983-14.906-19.391c4.312-6.391,9.375-12.875,14.906-19.375\r\n\t\tc4.141-4.875,8.406-9.75,13.25-14.562c4.688-4.719,9.531-9.062,14.438-13.25c6.422-5.469,12.953-10.438,19.484-14.891\r\n\t\tc6.547,4.453,13.062,9.422,19.484,14.891c4.906,4.188,9.767,8.547,14.47,13.25c4.719,4.719,9.062,9.594,13.25,14.5\r\n\t\tC308.656,242.969,313.75,249.469,318.203,256z M256,144c8.531,0,17.422,6.5,25.219,18.125c-8.234,3.281-16.688,7.594-25.219,12.781\r\n\t\tc-8.531-5.172-17-9.5-25.219-12.781C238.562,150.5,247.469,144,256,144z M176.797,176.812c4.297-4.281,10.672-6.469,18.984-6.469\r\n\t\tc3.688,0,7.656,0.531,11.766,1.344c4.922,0.969,10.141,2.594,15.484,4.625c5.922,2.266,11.984,4.969,18.219,8.422\r\n\t\tc-3.688,2.672-7.344,5.547-10.969,8.516c-5.969,4.875-11.844,10.031-17.578,15.656c-0.641,0.625-1.328,1.188-1.953,1.844\r\n\t\tc-0.656,0.641-1.25,1.312-1.891,1.969c-5.578,5.688-10.812,11.469-15.594,17.297c-2.984,3.641-5.766,7.297-8.438,10.969\r\n\t\tc-3.391-6.203-6.266-12.25-8.438-17.984c-2.047-5.438-3.641-10.656-4.594-15.5C169.078,193.766,170.75,182.844,176.797,176.812z\r\n\t\t M162.156,281.25C150.531,273.453,144,264.547,144,256c0-8.531,6.516-17.438,18.156-25.234c3.25,8.203,7.516,16.672,12.719,25.234\r\n\t\tC169.672,264.594,165.406,273.047,162.156,281.25z M223.031,335.703c-5.344,2.047-10.562,3.672-15.469,4.641\r\n\t\tc-4.109,0.797-8.078,1.328-11.781,1.328c-8.297,0-14.688-2.188-18.969-6.469c-6.047-6.047-7.719-16.953-5-30.703\r\n\t\tc0.953-4.828,2.531-10.047,4.594-15.5c2.156-5.719,5.047-11.766,8.422-17.969c2.672,3.672,5.453,7.328,8.453,10.969\r\n\t\tc4.766,5.828,10,11.594,15.562,17.281c0.656,0.656,1.25,1.328,1.906,1.984c0.641,0.641,1.312,1.202,1.969,1.844\r\n\t\tc5.719,5.608,11.594,10.781,17.531,15.641c3.656,2.984,7.312,5.859,11,8.531C235.031,330.734,228.969,333.438,223.031,335.703z\r\n\t\t M256,368c-8.531,0-17.422-6.5-25.203-18.109c8.219-3.281,16.672-7.608,25.188-12.797c8.531,5.203,16.984,9.531,25.219,12.812\r\n\t\tC273.422,361.5,264.531,368,256,368z M335.188,335.203c-4.297,4.297-10.688,6.469-19,6.469c-3.688,0-7.655-0.531-11.75-1.328\r\n\t\tc-4.922-0.969-10.125-2.594-15.483-4.641c-5.922-2.25-11.984-4.969-18.234-8.422c3.703-2.672,7.345-5.547,11-8.531\r\n\t\tc5.953-4.875,11.845-10.047,17.578-15.672c0.642-0.641,1.312-1.188,1.953-1.828c0.625-0.625,1.156-1.312,1.767-1.938\r\n\t\tc5.577-5.688,10.858-11.517,15.719-17.47c3-3.672,5.655-7.391,8.358-11.125c3.392,6.173,6.297,12.267,8.578,18.25\r\n\t\tc0.234,0.595,0.578,1.203,0.797,1.781c1.75,4.812,3,9.375,3.875,13.688C343.078,318.125,341.375,329.031,335.188,335.203z\r\n\t\t M349.75,281.297c-3.328-8.328-7.719-16.797-12.875-25.297c5.156-8.5,9.562-16.969,12.875-25.297\r\n\t\tC361.438,238.5,368,247.438,368,256C368,264.562,361.438,273.5,349.75,281.297z" + }, + "children": [] + }] + }] + }, { + "name": "path", + "attribs": { + "d": "M288,256c0,17.672-14.328,32-32,32c-17.656,0-32-14.328-32-32c0-17.656,14.344-32,32-32C273.672,224,288,238.344,288,256z" + }, + "children": [] + }] +}; +exports.atom = atom; \ No newline at end of file diff --git a/dist/metrize/axisRules.js b/dist/metrize/axisRules.js new file mode 100644 index 000000000..dc9c5d88a --- /dev/null +++ b/dist/metrize/axisRules.js @@ -0,0 +1,59 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.axisRules = void 0; +var axisRules = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "128", + "y": "128", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "64", + "height": "64" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "128", + "y": "128", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "64", + "height": "64" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "368,128 368,160 352,160 352,128 336,128 336,144 320,144 320,128 \r\n\t\t304,128 304,160 288,160 288,128 272,128 272,144 256,144 256,128 240,128 240,160 224,160 224,128 208,128 208,192 368,192 \r\n\t\t368,368 192,368 192,208 128,208 128,224 144,224 144,240 128,240 128,256 160,256 160,272 128,272 128,288 144,288 144,304 \r\n\t\t128,304 128,320 160,320 160,336 128,336 128,352 144,352 144,368 128,368 128,384 384,384 384,128 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "368,128 368,160 352,160 352,128 336,128 336,144 320,144 320,128 \r\n\t\t304,128 304,160 288,160 288,128 272,128 272,144 256,144 256,128 240,128 240,160 224,160 224,128 208,128 208,192 368,192 \r\n\t\t368,368 192,368 192,208 128,208 128,224 144,224 144,240 128,240 128,256 160,256 160,272 128,272 128,288 144,288 144,304 \r\n\t\t128,304 128,320 160,320 160,336 128,336 128,352 144,352 144,368 128,368 128,384 384,384 384,128 \t" + }, + "children": [] + }] + }] + }] +}; +exports.axisRules = axisRules; \ No newline at end of file diff --git a/dist/metrize/backward.js b/dist/metrize/backward.js new file mode 100644 index 000000000..d81d151a9 --- /dev/null +++ b/dist/metrize/backward.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.backward = void 0; +var backward = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "336,336 336,176 240,256 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "336,336 336,176 240,256 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "144,256 240,336 240,256 240,176 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "144,256 240,336 240,256 240,176 \t" + }, + "children": [] + }] + }] + }] +}; +exports.backward = backward; \ No newline at end of file diff --git a/dist/metrize/bag.js b/dist/metrize/bag.js new file mode 100644 index 000000000..09bab1a67 --- /dev/null +++ b/dist/metrize/bag.js @@ -0,0 +1,97 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bag = void 0; +var bag = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M368,208.5h-16.5v160H368c8.844,0,15.5-7.656,15.5-16.5V224C383.5,215.156,376.844,208.5,368,208.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M368,208.5h-16.5v160H368c8.844,0,15.5-7.656,15.5-16.5V224C383.5,215.156,376.844,208.5,368,208.5z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "175.5", + "y": "208.5", + "width": "160", + "height": "160" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "175.5", + "y": "208.5", + "width": "160", + "height": "160" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M159.5,208.5H144c-8.836,0-16.5,6.656-16.5,15.5v128c0,8.844,7.664,16.5,16.5,16.5h15.5V208.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M159.5,208.5H144c-8.836,0-16.5,6.656-16.5,15.5v128c0,8.844,7.664,16.5,16.5,16.5h15.5V208.5z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M288,144.5h-64c-8.836,0-16.5,6.656-16.5,15.5v32.5h16V168c0-4.422,4.078-7.5,8.5-7.5h48c4.422,0,7.5,3.078,7.5,7.5v24.5\r\n\t\t\th16V160C303.5,151.156,296.844,144.5,288,144.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M288,144.5h-64c-8.836,0-16.5,6.656-16.5,15.5v32.5h16V168c0-4.422,4.078-7.5,8.5-7.5h48c4.422,0,7.5,3.078,7.5,7.5v24.5\r\n\t\t\th16V160C303.5,151.156,296.844,144.5,288,144.5z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.bag = bag; \ No newline at end of file diff --git a/dist/metrize/banCircle.js b/dist/metrize/banCircle.js new file mode 100644 index 000000000..59be7b97f --- /dev/null +++ b/dist/metrize/banCircle.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.banCircle = void 0; +var banCircle = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M165.5,165.484c-50,49.984-50,131.047,0,181.031c49.969,49.984,131.031,49.984,181.016,0s49.984-131.047,0-181.031\r\n\t\tS215.469,115.5,165.5,165.484z M188.125,188.109c33.547-33.547,85.844-36.781,123.297-10.172L177.938,311.422\r\n\t\tC151.344,273.969,154.562,221.656,188.125,188.109z M323.875,323.875c-33.547,33.562-85.828,36.781-123.297,10.172l133.469-133.484\r\n\t\tC360.656,238.031,357.438,290.328,323.875,323.875z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M165.5,165.484c-50,49.984-50,131.047,0,181.031c49.969,49.984,131.031,49.984,181.016,0s49.984-131.047,0-181.031\r\n\t\tS215.469,115.5,165.5,165.484z M188.125,188.109c33.547-33.547,85.844-36.781,123.297-10.172L177.938,311.422\r\n\t\tC151.344,273.969,154.562,221.656,188.125,188.109z M323.875,323.875c-33.547,33.562-85.828,36.781-123.297,10.172l133.469-133.484\r\n\t\tC360.656,238.031,357.438,290.328,323.875,323.875z" + }, + "children": [] + }] + }] + }] +}; +exports.banCircle = banCircle; \ No newline at end of file diff --git a/dist/metrize/bars.js b/dist/metrize/bars.js new file mode 100644 index 000000000..40c78a83c --- /dev/null +++ b/dist/metrize/bars.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bars = void 0; +var bars = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M144,368h32V144h-32V368z M192,368h32v-32h-32V368z M240,368h32V256h-32V368z\r\n\t\t\t M288,368h32V192h-32V368z M336,288v80h32v-80H336z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M144,368h32V144h-32V368z M192,368h32v-32h-32V368z M240,368h32V256h-32V368z\r\n\t\t\t M288,368h32V192h-32V368z M336,288v80h32v-80H336z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.bars = bars; \ No newline at end of file diff --git a/dist/metrize/bezier.js b/dist/metrize/bezier.js new file mode 100644 index 000000000..6058af8d8 --- /dev/null +++ b/dist/metrize/bezier.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bezier = void 0; +var bezier = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M368,288c0-61.75-50.25-112-112-112c-61.758,0-112,50.25-112,112h-16v48h48v-48h-16c0-52.938,43.062-96,96-96\r\n\ts96,43.062,96,96h-16v48h48v-48H368z M160,320h-16v-16h16V320z M368,320h-16v-16h16V320z" + }, + "children": [] + }] +}; +exports.bezier = bezier; \ No newline at end of file diff --git a/dist/metrize/blank.js b/dist/metrize/blank.js new file mode 100644 index 000000000..0f67647ba --- /dev/null +++ b/dist/metrize/blank.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.blank = void 0; +var blank = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] +}; +exports.blank = blank; \ No newline at end of file diff --git a/dist/metrize/blockMenu.js b/dist/metrize/blockMenu.js new file mode 100644 index 000000000..1323b850a --- /dev/null +++ b/dist/metrize/blockMenu.js @@ -0,0 +1,87 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.blockMenu = void 0; +var blockMenu = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "151.5", + "y": "184.5", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "192", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "151.5", + "y": "184.5", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "192", + "height": "32" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "151.5", + "y": "248.5", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "192", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "151.5", + "y": "248.5", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "192", + "height": "32" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "151.5", + "y": "312.5", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "192", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "151.5", + "y": "312.5", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "192", + "height": "32" + }, + "children": [] + }] + }] + }] +}; +exports.blockMenu = blockMenu; \ No newline at end of file diff --git a/dist/metrize/bolt.js b/dist/metrize/bolt.js new file mode 100644 index 000000000..8a7a4756e --- /dev/null +++ b/dist/metrize/bolt.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bolt = void 0; +var bolt = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "points": "208,271.5 251.203,271.5 208,383.688 304,239.5 261.656,239.5 304,127.688 " + }, + "children": [] + }] +}; +exports.bolt = bolt; \ No newline at end of file diff --git a/dist/metrize/boxAdd.js b/dist/metrize/boxAdd.js new file mode 100644 index 000000000..2d8baa503 --- /dev/null +++ b/dist/metrize/boxAdd.js @@ -0,0 +1,113 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.boxAdd = void 0; +var boxAdd = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "271.5,160.5 351.5,160.5 351.5,240.5 383.5,240.5 383.5,128.5 271.5,128.5 \t\t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "271.5,160.5 351.5,160.5 351.5,240.5 383.5,240.5 383.5,128.5 271.5,128.5 \t\t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "159.5,240.5 159.5,160.5 239.5,160.5 239.5,128.5 127.5,128.5 127.5,240.5 \t\t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "159.5,240.5 159.5,160.5 239.5,160.5 239.5,128.5 127.5,128.5 127.5,240.5 \t\t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "239.5,352.5 159.5,352.5 159.5,272.5 127.5,272.5 127.5,384.5 239.5,384.5 \t\t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "239.5,352.5 159.5,352.5 159.5,272.5 127.5,272.5 127.5,384.5 239.5,384.5 \t\t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "351.5,272.5 351.5,352.5 271.5,352.5 271.5,384.5 383.5,384.5 383.5,272.5 \t\t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "351.5,272.5 351.5,352.5 271.5,352.5 271.5,384.5 383.5,384.5 383.5,272.5 \t\t" + }, + "children": [] + }] + }] + }] + }, { + "name": "rect", + "attribs": { + "x": "239.5", + "y": "192.5", + "width": "32", + "height": "128" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "239.5", + "y": "192.5", + "width": "32", + "height": "128" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "191.5", + "y": "240.5", + "width": "128", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "191.5", + "y": "240.5", + "width": "128", + "height": "32" + }, + "children": [] + }] + }] + }] +}; +exports.boxAdd = boxAdd; \ No newline at end of file diff --git a/dist/metrize/boxBlank.js b/dist/metrize/boxBlank.js new file mode 100644 index 000000000..a87cdeb95 --- /dev/null +++ b/dist/metrize/boxBlank.js @@ -0,0 +1,69 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.boxBlank = void 0; +var boxBlank = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "272,160 352,160 352,240 384,240 384,128 272,128 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "272,160 352,160 352,240 384,240 384,128 272,128 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "160,240 160,160 240,160 240,128 128,128 128,240 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "160,240 160,160 240,160 240,128 128,128 128,240 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "240,352 160,352 160,272 128,272 128,384 240,384 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "240,352 160,352 160,272 128,272 128,384 240,384 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "352,272 352,352 272,352 272,384 384,384 384,272 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "352,272 352,352 272,352 272,384 384,384 384,272 \t" + }, + "children": [] + }] + }] + }] +}; +exports.boxBlank = boxBlank; \ No newline at end of file diff --git a/dist/metrize/boxClose.js b/dist/metrize/boxClose.js new file mode 100644 index 000000000..e133a3802 --- /dev/null +++ b/dist/metrize/boxClose.js @@ -0,0 +1,123 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.boxClose = void 0; +var boxClose = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256c0,141.391,114.609,256,256,256c141.391,0,256-114.609,256-256\r\n\t\tC512,114.609,397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z\r\n\t\t" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256c0,141.391,114.609,256,256,256c141.391,0,256-114.609,256-256\r\n\t\tC512,114.609,397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z\r\n\t\t" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "272,160 352,160 352,240 384,240 384,128 272,128 \t\t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "272,160 352,160 352,240 384,240 384,128 272,128 \t\t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "160,240 160,160 240,160 240,128 128,128 128,240 \t\t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "160,240 160,160 240,160 240,128 128,128 128,240 \t\t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "240,352 160,352 160,272 128,272 128,384 240,384 \t\t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "240,352 160,352 160,272 128,272 128,384 240,384 \t\t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "352,272 352,352 272,352 272,384 384,384 384,272 \t\t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "352,272 352,352 272,352 272,384 384,384 384,272 \t\t" + }, + "children": [] + }] + }] + }] + }, { + "name": "rect", + "attribs": { + "x": "240.002", + "y": "192.008", + "transform": "matrix(-0.7071 -0.7071 0.7071 -0.7071 256.0004 618.0388)", + "width": "31.997", + "height": "127.985" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "240.002", + "y": "192.008", + "transform": "matrix(-0.7071 -0.7071 0.7071 -0.7071 256.0004 618.0388)", + "width": "31.997", + "height": "127.985" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "192.008", + "y": "240.002", + "transform": "matrix(-0.7071 -0.7071 0.7071 -0.7071 256.0034 618.0388)", + "width": "127.985", + "height": "31.997" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "192.008", + "y": "240.002", + "transform": "matrix(-0.7071 -0.7071 0.7071 -0.7071 256.0034 618.0388)", + "width": "127.985", + "height": "31.997" + }, + "children": [] + }] + }] + }] +}; +exports.boxClose = boxClose; \ No newline at end of file diff --git a/dist/metrize/boxRemove.js b/dist/metrize/boxRemove.js new file mode 100644 index 000000000..c1e7e85b6 --- /dev/null +++ b/dist/metrize/boxRemove.js @@ -0,0 +1,78 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.boxRemove = void 0; +var boxRemove = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256c0,141.391,114.609,256,256,256c141.391,0,256-114.609,256-256\r\n\tC512,114.609,397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "272,160 352,160 352,240 384,240 384,128 272,128 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "272,160 352,160 352,240 384,240 384,128 272,128 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "160,240 160,160 240,160 240,128 128,128 128,240 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "160,240 160,160 240,160 240,128 128,128 128,240 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "240,352 160,352 160,272 128,272 128,384 240,384 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "240,352 160,352 160,272 128,272 128,384 240,384 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "352,272 352,352 272,352 272,384 384,384 384,272 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "352,272 352,352 272,352 272,384 384,384 384,272 \t" + }, + "children": [] + }] + }] + }, { + "name": "rect", + "attribs": { + "x": "192", + "y": "240", + "width": "128", + "height": "32" + }, + "children": [] + }] +}; +exports.boxRemove = boxRemove; \ No newline at end of file diff --git a/dist/metrize/browserSizes.js b/dist/metrize/browserSizes.js new file mode 100644 index 000000000..25d65ea84 --- /dev/null +++ b/dist/metrize/browserSizes.js @@ -0,0 +1,141 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.browserSizes = void 0; +var browserSizes = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\t\tS397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\t\tS397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "192", + "y": "208", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "128", + "height": "96" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "192", + "y": "208", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "128", + "height": "96" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "336", + "y": "192", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "16", + "height": "128" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "336", + "y": "192", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "16", + "height": "128" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "368", + "y": "160", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "16", + "height": "192" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "368", + "y": "160", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "16", + "height": "192" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "160", + "y": "192", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "16", + "height": "128" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "160", + "y": "192", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "16", + "height": "128" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "128", + "y": "160", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "16", + "height": "192" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "128", + "y": "160", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "16", + "height": "192" + }, + "children": [] + }] + }] + }] +}; +exports.browserSizes = browserSizes; \ No newline at end of file diff --git a/dist/metrize/brush.js b/dist/metrize/brush.js new file mode 100644 index 000000000..aad66bb28 --- /dev/null +++ b/dist/metrize/brush.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.brush = void 0; +var brush = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M223.07,317.875c20.578-15.703,48.273-41.188,77.195-71.852c53.297-56.531,90.359-108.906,82.734-116.969\r\n\tc-7.609-8.094-57,31.188-110.328,87.719c-29.68,31.469-54.281,61.633-68.969,83.602c-7.141,0.391-35.023,3.75-39.617,32.531\r\n\tc0,0-19.016,48.188-33.75,50.297c-14.586,2.109,43.75-0.312,51.328-3.047C189.148,377.469,227.25,374.234,223.07,317.875z" + }, + "children": [] + }] +}; +exports.brush = brush; \ No newline at end of file diff --git a/dist/metrize/buttonAdd.js b/dist/metrize/buttonAdd.js new file mode 100644 index 000000000..30b41f852 --- /dev/null +++ b/dist/metrize/buttonAdd.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.buttonAdd = void 0; +var buttonAdd = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M256,128c-70.695,0-128,57.312-128,128s57.305,128,128,128\r\n\tc70.688,0,128-57.312,128-128S326.688,128,256,128z M320,272h-48v48h-32v-48h-48v-32h48v-48h32v48h48V272z" + }, + "children": [] + }] +}; +exports.buttonAdd = buttonAdd; \ No newline at end of file diff --git a/dist/metrize/buttonCheck.js b/dist/metrize/buttonCheck.js new file mode 100644 index 000000000..2e2b249e2 --- /dev/null +++ b/dist/metrize/buttonCheck.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.buttonCheck = void 0; +var buttonCheck = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M256,128c-70.688,0-128,57.312-128,128s57.312,128,128,128s128-57.312,128-128S326.688,128,256,128z M240,320l-48-48\r\n\tl22.398-25.594L240,272l72-80l24,25.594L240,320z" + }, + "children": [] + }] +}; +exports.buttonCheck = buttonCheck; \ No newline at end of file diff --git a/dist/metrize/buttonClose.js b/dist/metrize/buttonClose.js new file mode 100644 index 000000000..141bbc9bf --- /dev/null +++ b/dist/metrize/buttonClose.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.buttonClose = void 0; +var buttonClose = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M256,128c-70.695,0-128,57.312-128,128s57.305,128,128,128\r\n\tc70.688,0,128-57.312,128-128S326.688,128,256,128z M312.562,289.938l-22.625,22.625L256,278.625l-33.938,33.938l-22.633-22.625\r\n\tL233.367,256l-33.938-33.938l22.633-22.625L256,233.375l33.938-33.938l22.625,22.625L278.625,256L312.562,289.938z" + }, + "children": [] + }] +}; +exports.buttonClose = buttonClose; \ No newline at end of file diff --git a/dist/metrize/buttonEmail.js b/dist/metrize/buttonEmail.js new file mode 100644 index 000000000..75734d6e4 --- /dev/null +++ b/dist/metrize/buttonEmail.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.buttonEmail = void 0; +var buttonEmail = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M259.203,231.438c-3.391,0-6.734,1.062-10.078,3.234c-3.312,2.156-6.312,4.891-8.938,8.188\r\n\t\tc-2.625,3.312-4.75,6.891-6.312,10.781c-1.578,3.922-2.359,7.609-2.359,11.094c0,2.156,0.297,4.281,0.844,6.391\r\n\t\tc0.578,2.125,1.453,4,2.672,5.656c1.172,1.703,2.703,3.062,4.594,4.078c1.875,1.016,4.156,1.516,6.781,1.516\r\n\t\tc4.75,0,9.344-1.594,13.719-4.75c4.391-3.219,7.625-7.75,9.609-13.625c1.016-3.109,1.797-5.688,2.344-7.734\r\n\t\tc0.547-2.031,1.031-3.688,1.312-4.953c0.359-1.25,0.516-2.203,0.547-2.875c0.094-0.672,0.109-1.234,0.109-1.703\r\n\t\tc0-4.562-1.438-8.25-4.312-11.062C266.844,232.828,263.328,231.438,259.203,231.438z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M259.203,231.438c-3.391,0-6.734,1.062-10.078,3.234c-3.312,2.156-6.312,4.891-8.938,8.188\r\n\t\tc-2.625,3.312-4.75,6.891-6.312,10.781c-1.578,3.922-2.359,7.609-2.359,11.094c0,2.156,0.297,4.281,0.844,6.391\r\n\t\tc0.578,2.125,1.453,4,2.672,5.656c1.172,1.703,2.703,3.062,4.594,4.078c1.875,1.016,4.156,1.516,6.781,1.516\r\n\t\tc4.75,0,9.344-1.594,13.719-4.75c4.391-3.219,7.625-7.75,9.609-13.625c1.016-3.109,1.797-5.688,2.344-7.734\r\n\t\tc0.547-2.031,1.031-3.688,1.312-4.953c0.359-1.25,0.516-2.203,0.547-2.875c0.094-0.672,0.109-1.234,0.109-1.703\r\n\t\tc0-4.562-1.438-8.25-4.312-11.062C266.844,232.828,263.328,231.438,259.203,231.438z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,128c-70.703,0-128,57.312-128,128s57.297,128,128,128c70.688,0,128-57.312,128-128S326.688,128,256,128z\r\n\t\t M316.328,265.109c-2.453,6-5.719,11.031-9.781,15.125c-4.062,4.047-8.734,7.141-13.953,9.156\r\n\t\tc-5.203,2.078-10.578,3.094-16.078,3.094c-3.266,0-5.875-1-7.828-2.984c-1.953-2-3.031-4.375-3.281-7.125\r\n\t\tc-2.625,3.609-5.594,6.156-8.828,7.75c-3.297,1.531-7.109,2.359-11.484,2.359c-4.031,0-7.641-0.766-10.844-2.266\r\n\t\tc-3.188-1.484-5.875-3.484-8.094-5.969c-2.172-2.406-3.875-5.25-5.094-8.359c-1.188-3.125-1.781-6.281-1.781-9.516\r\n\t\tc0-5.312,1-10.625,2.938-16.062c1.953-5.375,4.641-10.266,8.094-14.641c3.438-4.375,7.609-7.969,12.5-10.734\r\n\t\tc4.906-2.75,10.312-4.125,16.188-4.125c2.891,0,5.469,0.484,7.719,1.438s4.156,2.125,5.75,3.5c1.562,1.375,2.875,2.797,3.938,4.25\r\n\t\tc1.047,1.438,1.812,2.938,2.188,4.016L282.375,224h11.484l-14.719,48.531c-0.641,2.188-0.922,3.812-0.922,5.109\r\n\t\tc0,2.984,1.203,4.438,3.766,4.438c1.484,0,3.703-0.453,6.672-1.391c2.922-0.906,5.906-2.703,8.906-5.422\r\n\t\tc3.016-2.656,5.641-6.391,7.938-11.141c2.25-4.75,3.406-11.016,3.406-18.828c0-6.359-1.312-12.172-3.938-17.484\r\n\t\tc-2.703-5.25-6.234-9.812-10.688-13.578c-4.453-3.797-9.547-6.734-15.312-8.812c-5.75-2.109-11.75-3.172-17.891-3.172\r\n\t\tc-8.141,0-15.719,1.438-22.672,4.25c-6.969,2.812-13.047,6.75-18.25,11.797c-5.219,5.016-9.281,11.016-12.25,17.906\r\n\t\tc-2.938,6.906-4.422,14.359-4.422,22.422c0,7.656,1.516,14.656,4.625,20.969c3.078,6.281,7.141,11.656,12.234,16.125\r\n\t\tc5.078,4.422,10.906,7.812,17.5,10.25c6.594,2.406,13.438,3.625,20.594,3.625c9.672,0,18.188-2.391,25.516-6.109\r\n\t\tC291.281,299.734,297.156,288,301.5,288H313c-2.109,0-5.141,10.359-9.078,14.219c-4,3.859-8.484,7.281-13.578,9.875\r\n\t\tc-5.078,2.562-10.578,4.656-16.562,5.906c-5.969,1.25-12.031,1.938-18.156,1.938c-8.172,0-16.078-1.469-23.719-4.469\r\n\t\tc-7.656-3-14.438-7.203-20.312-12.594c-5.906-5.391-10.656-11.797-14.234-19.266c-3.547-7.406-5.359-15.578-5.359-24.484\r\n\t\tc0-10.312,1.891-19.609,5.656-27.875c3.75-8.297,8.812-15.328,15.156-21.141c6.344-5.844,13.656-10.312,22.016-13.422\r\n\t\tc8.359-3.125,17.141-4.688,26.453-4.688c7.516,0,14.828,1.297,21.906,3.875c7.078,2.562,13.344,6.188,18.812,10.797\r\n\t\tc5.469,4.641,9.812,10.141,13.078,16.578c3.266,6.391,4.922,13.438,4.922,21.141C320,252.188,318.734,259.078,316.328,265.109z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,128c-70.703,0-128,57.312-128,128s57.297,128,128,128c70.688,0,128-57.312,128-128S326.688,128,256,128z\r\n\t\t M316.328,265.109c-2.453,6-5.719,11.031-9.781,15.125c-4.062,4.047-8.734,7.141-13.953,9.156\r\n\t\tc-5.203,2.078-10.578,3.094-16.078,3.094c-3.266,0-5.875-1-7.828-2.984c-1.953-2-3.031-4.375-3.281-7.125\r\n\t\tc-2.625,3.609-5.594,6.156-8.828,7.75c-3.297,1.531-7.109,2.359-11.484,2.359c-4.031,0-7.641-0.766-10.844-2.266\r\n\t\tc-3.188-1.484-5.875-3.484-8.094-5.969c-2.172-2.406-3.875-5.25-5.094-8.359c-1.188-3.125-1.781-6.281-1.781-9.516\r\n\t\tc0-5.312,1-10.625,2.938-16.062c1.953-5.375,4.641-10.266,8.094-14.641c3.438-4.375,7.609-7.969,12.5-10.734\r\n\t\tc4.906-2.75,10.312-4.125,16.188-4.125c2.891,0,5.469,0.484,7.719,1.438s4.156,2.125,5.75,3.5c1.562,1.375,2.875,2.797,3.938,4.25\r\n\t\tc1.047,1.438,1.812,2.938,2.188,4.016L282.375,224h11.484l-14.719,48.531c-0.641,2.188-0.922,3.812-0.922,5.109\r\n\t\tc0,2.984,1.203,4.438,3.766,4.438c1.484,0,3.703-0.453,6.672-1.391c2.922-0.906,5.906-2.703,8.906-5.422\r\n\t\tc3.016-2.656,5.641-6.391,7.938-11.141c2.25-4.75,3.406-11.016,3.406-18.828c0-6.359-1.312-12.172-3.938-17.484\r\n\t\tc-2.703-5.25-6.234-9.812-10.688-13.578c-4.453-3.797-9.547-6.734-15.312-8.812c-5.75-2.109-11.75-3.172-17.891-3.172\r\n\t\tc-8.141,0-15.719,1.438-22.672,4.25c-6.969,2.812-13.047,6.75-18.25,11.797c-5.219,5.016-9.281,11.016-12.25,17.906\r\n\t\tc-2.938,6.906-4.422,14.359-4.422,22.422c0,7.656,1.516,14.656,4.625,20.969c3.078,6.281,7.141,11.656,12.234,16.125\r\n\t\tc5.078,4.422,10.906,7.812,17.5,10.25c6.594,2.406,13.438,3.625,20.594,3.625c9.672,0,18.188-2.391,25.516-6.109\r\n\t\tC291.281,299.734,297.156,288,301.5,288H313c-2.109,0-5.141,10.359-9.078,14.219c-4,3.859-8.484,7.281-13.578,9.875\r\n\t\tc-5.078,2.562-10.578,4.656-16.562,5.906c-5.969,1.25-12.031,1.938-18.156,1.938c-8.172,0-16.078-1.469-23.719-4.469\r\n\t\tc-7.656-3-14.438-7.203-20.312-12.594c-5.906-5.391-10.656-11.797-14.234-19.266c-3.547-7.406-5.359-15.578-5.359-24.484\r\n\t\tc0-10.312,1.891-19.609,5.656-27.875c3.75-8.297,8.812-15.328,15.156-21.141c6.344-5.844,13.656-10.312,22.016-13.422\r\n\t\tc8.359-3.125,17.141-4.688,26.453-4.688c7.516,0,14.828,1.297,21.906,3.875c7.078,2.562,13.344,6.188,18.812,10.797\r\n\t\tc5.469,4.641,9.812,10.141,13.078,16.578c3.266,6.391,4.922,13.438,4.922,21.141C320,252.188,318.734,259.078,316.328,265.109z" + }, + "children": [] + }] + }] + }] +}; +exports.buttonEmail = buttonEmail; \ No newline at end of file diff --git a/dist/metrize/buttonExclamation.js b/dist/metrize/buttonExclamation.js new file mode 100644 index 000000000..12bd83271 --- /dev/null +++ b/dist/metrize/buttonExclamation.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.buttonExclamation = void 0; +var buttonExclamation = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256-2C114.609-2,0,112.609,0,254s114.609,256,256,256s256-114.609,256-256S397.391-2,256-2z M256,470\r\n\tc-119.297,0-216-96.703-216-216S136.703,38,256,38s216,96.703,216,216S375.297,470,256,470z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M256,126c-70.688,0-128,57.312-128,128s57.312,128,128,128s128-57.312,128-128S326.688,126,256,126z M256,318\r\n\tc-8.844,0-16-7.156-16-16s7.156-16,16-16s16,7.156,16,16S264.844,318,256,318z M264,270h-16l-8-80h32L264,270z" + }, + "children": [] + }] +}; +exports.buttonExclamation = buttonExclamation; \ No newline at end of file diff --git a/dist/metrize/buttonMinus.js b/dist/metrize/buttonMinus.js new file mode 100644 index 000000000..31fee86f5 --- /dev/null +++ b/dist/metrize/buttonMinus.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.buttonMinus = void 0; +var buttonMinus = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M256,128c-70.695,0-128,57.312-128,128s57.305,128,128,128\r\n\tc70.688,0,128-57.312,128-128S326.688,128,256,128z M320,272H192v-32h128V272z" + }, + "children": [] + }] +}; +exports.buttonMinus = buttonMinus; \ No newline at end of file diff --git a/dist/metrize/buttonQuestion.js b/dist/metrize/buttonQuestion.js new file mode 100644 index 000000000..540191ac7 --- /dev/null +++ b/dist/metrize/buttonQuestion.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.buttonQuestion = void 0; +var buttonQuestion = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M256,128c-70.688,0-128,57.312-128,128s57.312,128,128,128s128-57.312,128-128S326.688,128,256,128z M251.375,322\r\n\tc-10.172,0-17.078-7.484-17.078-17.469c0-10.344,7.094-17.453,17.078-17.453c10.344,0,17.062,7.109,17.281,17.453\r\n\tC268.656,314.516,261.938,322,251.375,322z M278.188,250.422c-6.906,7.859-6.188,15.359-6.188,23.984V272h-32.719l-0.188-2.062\r\n\tc-0.578-9.781,2.688-18.297,11.312-28.469c6.156-7.484,11.125-13.078,11.125-19.422c0-6.703-4.406-10.953-14-11.141\r\n\tc-6.328,0-14,2.484-19,5.938l-6.516-20.812c7.094-4.031,18.422-7.828,32.047-7.828c25.312,0,38.828,14.016,38.828,29.953\r\n\tC292.891,232.75,285.469,242.375,278.188,250.422z" + }, + "children": [] + }] +}; +exports.buttonQuestion = buttonQuestion; \ No newline at end of file diff --git a/dist/metrize/camera.js b/dist/metrize/camera.js new file mode 100644 index 000000000..8d4c61d26 --- /dev/null +++ b/dist/metrize/camera.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.camera = void 0; +var camera = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,224c-26.508,0-48,21.5-48,48c0,26.516,21.492,48,48,48c26.516,0,48-21.484,48-48C304,245.5,282.516,224,256,224z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,224c-26.508,0-48,21.5-48,48c0,26.516,21.492,48,48,48c26.516,0,48-21.484,48-48C304,245.5,282.516,224,256,224z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M368,192h-71.922c-3.641,0-7.312-14.547-8.078-16.078c-1.594-3.203-7.156-15.922-16-15.922h-32\r\n\t\tc-8.836,0-14.398,12.719-16,15.922c-0.766,1.531-4.438,16.078-8.078,16.078H144c-8.836,0-16,7.234-16,16.062v128.016\r\n\t\tc0,8.844,7.164,15.922,16,15.922h224c8.844,0,16-7.078,16-15.922V208.062C384,199.234,376.844,192,368,192z M256,336\r\n\t\tc-35.336,0-64-28.641-64-64c0-35.344,28.664-64,64-64c35.359,0,64,28.656,64,64C320,307.359,291.359,336,256,336z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M368,192h-71.922c-3.641,0-7.312-14.547-8.078-16.078c-1.594-3.203-7.156-15.922-16-15.922h-32\r\n\t\tc-8.836,0-14.398,12.719-16,15.922c-0.766,1.531-4.438,16.078-8.078,16.078H144c-8.836,0-16,7.234-16,16.062v128.016\r\n\t\tc0,8.844,7.164,15.922,16,15.922h224c8.844,0,16-7.078,16-15.922V208.062C384,199.234,376.844,192,368,192z M256,336\r\n\t\tc-35.336,0-64-28.641-64-64c0-35.344,28.664-64,64-64c35.359,0,64,28.656,64,64C320,307.359,291.359,336,256,336z" + }, + "children": [] + }] + }] + }] +}; +exports.camera = camera; \ No newline at end of file diff --git a/dist/metrize/cdDvdRom.js b/dist/metrize/cdDvdRom.js new file mode 100644 index 000000000..aa505fca6 --- /dev/null +++ b/dist/metrize/cdDvdRom.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cdDvdRom = void 0; +var cdDvdRom = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,128c-70.688,0-128,57.312-128,128s57.312,128,128,128s128-57.312,128-128S326.688,128,256,128z M256,320\r\n\t\tc-35.344,0-64-28.688-64-64c0-35.344,28.656-64,64-64c35.312,0,64,28.656,64,64C320,291.312,291.312,320,256,320z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,128c-70.688,0-128,57.312-128,128s57.312,128,128,128s128-57.312,128-128S326.688,128,256,128z M256,320\r\n\t\tc-35.344,0-64-28.688-64-64c0-35.344,28.656-64,64-64c35.312,0,64,28.656,64,64C320,291.312,291.312,320,256,320z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,218c-20.953,0-38,17.047-38,38s17.047,38,38,38s38-17.047,38-38S276.953,218,256,218z M256,272\r\n\t\tc-8.844,0-16-7.156-16-16s7.156-16,16-16s16,7.156,16,16S264.844,272,256,272z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,218c-20.953,0-38,17.047-38,38s17.047,38,38,38s38-17.047,38-38S276.953,218,256,218z M256,272\r\n\t\tc-8.844,0-16-7.156-16-16s7.156-16,16-16s16,7.156,16,16S264.844,272,256,272z" + }, + "children": [] + }] + }] + }] +}; +exports.cdDvdRom = cdDvdRom; \ No newline at end of file diff --git a/dist/metrize/chartDown.js b/dist/metrize/chartDown.js new file mode 100644 index 000000000..582f46463 --- /dev/null +++ b/dist/metrize/chartDown.js @@ -0,0 +1,29 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.chartDown = void 0; +var chartDown = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M383.5,136.5c0-4.418-3.582-8-8-8h-240c-4.418,0-8,3.582-8,8v240c0,4.418,3.582,8,8,8h240c4.418,0,8-3.582,8-8V136.5z\r\n\t M367.5,360.5c0,4.418-3.582,8-8,8h-208c-4.418,0-8-3.582-8-8v-208c0-4.418,3.582-8,8-8h208c4.418,0,8,3.582,8,8V360.5z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M321.562,287.578L276.297,192l-48.469,51.188L186.922,200L176,211.547l51.828,54.719l44.234-46.719l35.734,75.438\r\n\tc-1.578,2.562-2.703,5.422-2.703,8.688c0,9.031,6.906,16.328,15.453,16.328S336,312.703,336,303.672\r\n\tC336,295.031,329.594,288.156,321.562,287.578z" + }, + "children": [] + }] +}; +exports.chartDown = chartDown; \ No newline at end of file diff --git a/dist/metrize/chat.js b/dist/metrize/chat.js new file mode 100644 index 000000000..1737f2210 --- /dev/null +++ b/dist/metrize/chat.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.chat = void 0; +var chat = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M384,207.828C384,163.75,341.016,128,288,128c-53,0-96,35.75-96,79.828c0,44.094,43,79.828,96,79.828\r\n\t\tc17.484,0,38.406-7.766,38.406-7.766l52.812,24.062l-11.234-51.281C367.984,252.672,384,227.344,384,207.828z M327.062,262.594\r\n\t\tl-6.219,2.281c-5.094,1.875-20.953,6.766-32.844,6.766c-44.109,0-80-28.625-80-63.812s35.891-63.812,80-63.812\r\n\t\ts79.984,28.625,79.984,63.812c0,10.734-8.266,27.953-13.516,36.297l-3.5,5.547l5.781,26.453L327.062,262.594z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M384,207.828C384,163.75,341.016,128,288,128c-53,0-96,35.75-96,79.828c0,44.094,43,79.828,96,79.828\r\n\t\tc17.484,0,38.406-7.766,38.406-7.766l52.812,24.062l-11.234-51.281C367.984,252.672,384,227.344,384,207.828z M327.062,262.594\r\n\t\tl-6.219,2.281c-5.094,1.875-20.953,6.766-32.844,6.766c-44.109,0-80-28.625-80-63.812s35.891-63.812,80-63.812\r\n\t\ts79.984,28.625,79.984,63.812c0,10.734-8.266,27.953-13.516,36.297l-3.5,5.547l5.781,26.453L327.062,262.594z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M224,351.688c-11.891,0-27.75-4.891-32.859-6.766l-6.172-2.281l-29.719,13.531l5.781-26.453l-3.5-5.547\r\n\t\tC152.297,315.844,144,298.609,144,287.875c0-22.375,14.578-42.016,36.5-53.406c-1.75-5.188-3.062-10.531-3.781-16.016\r\n\t\tC147.656,232.156,128,258.094,128,287.875c0,19.5,16,44.844,16,44.844L132.781,384l52.812-24.062c0,0,20.922,7.766,38.406,7.766\r\n\t\tc48.422,0,88.375-30.266,94.938-68.734c-5,1.344-10.953,2.641-17.266,3.547C293.312,330.641,261.781,351.688,224,351.688z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M224,351.688c-11.891,0-27.75-4.891-32.859-6.766l-6.172-2.281l-29.719,13.531l5.781-26.453l-3.5-5.547\r\n\t\tC152.297,315.844,144,298.609,144,287.875c0-22.375,14.578-42.016,36.5-53.406c-1.75-5.188-3.062-10.531-3.781-16.016\r\n\t\tC147.656,232.156,128,258.094,128,287.875c0,19.5,16,44.844,16,44.844L132.781,384l52.812-24.062c0,0,20.922,7.766,38.406,7.766\r\n\t\tc48.422,0,88.375-30.266,94.938-68.734c-5,1.344-10.953,2.641-17.266,3.547C293.312,330.641,261.781,351.688,224,351.688z" + }, + "children": [] + }] + }] + }] +}; +exports.chat = chat; \ No newline at end of file diff --git a/dist/metrize/check.js b/dist/metrize/check.js new file mode 100644 index 000000000..8d216be4b --- /dev/null +++ b/dist/metrize/check.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.check = void 0; +var check = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "polygon", + "attribs": { + "points": "211.344,306.703 160,256 128,288 211.414,368 384,176 351.703,144 " + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] +}; +exports.check = check; \ No newline at end of file diff --git a/dist/metrize/circles.js b/dist/metrize/circles.js new file mode 100644 index 000000000..4fc49edbe --- /dev/null +++ b/dist/metrize/circles.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.circles = void 0; +var circles = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M288,128c-53.016,0-96,42.984-96,96c0,0.531,0.047,1.047,0.062,1.609C155.531,232.984,128,265.266,128,304\r\n\t\tc0,44.188,35.797,80,80,80c38.719,0,71.016-27.531,78.422-64.094c0.531,0.016,1.047,0.094,1.578,0.094c53.016,0,96-42.984,96-96\r\n\t\tS341.016,128,288,128z M208,368c-35.281,0-64-28.719-64-64c0-30.359,21.281-55.734,49.719-62.25\r\n\t\tc7.25,38.766,37.766,69.281,76.531,76.531C263.719,346.719,238.344,368,208,368z M209.672,240.156\r\n\t\tc33.906,0.875,61.297,28.234,62.156,62.203C240.688,295.922,216.047,271.344,209.672,240.156z M288,304c0-44.172-35.797-80-80-80\r\n\t\tc0-44.109,35.906-80,80-80s80,35.891,80,80S332.094,304,288,304z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M288,128c-53.016,0-96,42.984-96,96c0,0.531,0.047,1.047,0.062,1.609C155.531,232.984,128,265.266,128,304\r\n\t\tc0,44.188,35.797,80,80,80c38.719,0,71.016-27.531,78.422-64.094c0.531,0.016,1.047,0.094,1.578,0.094c53.016,0,96-42.984,96-96\r\n\t\tS341.016,128,288,128z M208,368c-35.281,0-64-28.719-64-64c0-30.359,21.281-55.734,49.719-62.25\r\n\t\tc7.25,38.766,37.766,69.281,76.531,76.531C263.719,346.719,238.344,368,208,368z M209.672,240.156\r\n\t\tc33.906,0.875,61.297,28.234,62.156,62.203C240.688,295.922,216.047,271.344,209.672,240.156z M288,304c0-44.172-35.797-80-80-80\r\n\t\tc0-44.109,35.906-80,80-80s80,35.891,80,80S332.094,304,288,304z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M160,224c17.656,0,32-14.344,32-32s-14.344-32-32-32s-32,14.344-32,32S142.344,224,160,224z M160,176\r\n\t\tc8.812,0,16,7.188,16,16s-7.188,16-16,16s-16-7.188-16-16S151.188,176,160,176z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M160,224c17.656,0,32-14.344,32-32s-14.344-32-32-32s-32,14.344-32,32S142.344,224,160,224z M160,176\r\n\t\tc8.812,0,16,7.188,16,16s-7.188,16-16,16s-16-7.188-16-16S151.188,176,160,176z" + }, + "children": [] + }] + }] + }] +}; +exports.circles = circles; \ No newline at end of file diff --git a/dist/metrize/clock.js b/dist/metrize/clock.js new file mode 100644 index 000000000..53d8beb37 --- /dev/null +++ b/dist/metrize/clock.js @@ -0,0 +1,75 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.clock = void 0; +var clock = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,128c-70.688,0-128,57.312-128,128s57.312,128,128,128s128-57.312,128-128S326.688,128,256,128z M256,360\r\n\t\tc-57.438,0-104-46.578-104-104c0-57.438,46.562-104,104-104c57.422,0,104,46.562,104,104C360,313.422,313.422,360,256,360z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,128c-70.688,0-128,57.312-128,128s57.312,128,128,128s128-57.312,128-128S326.688,128,256,128z M256,360\r\n\t\tc-57.438,0-104-46.578-104-104c0-57.438,46.562-104,104-104c57.422,0,104,46.562,104,104C360,313.422,313.422,360,256,360z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,272c-8.844,0-16-7.156-16-16s7.156-16,16-16s16,7.156,16,16S264.844,272,256,272z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,272c-8.844,0-16-7.156-16-16s7.156-16,16-16s16,7.156,16,16S264.844,272,256,272z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "246.062,257.375 257.375,246.062 294.75,283.422 283.438,294.75 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "246.062,257.375 257.375,246.062 294.75,283.422 283.438,294.75 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "192.469,203.781 203.781,192.453 265.953,254.625 254.625,265.938 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "192.469,203.781 203.781,192.453 265.953,254.625 254.625,265.938 \t" + }, + "children": [] + }] + }] + }] +}; +exports.clock = clock; \ No newline at end of file diff --git a/dist/metrize/cloud.js b/dist/metrize/cloud.js new file mode 100644 index 000000000..7ca11cdaf --- /dev/null +++ b/dist/metrize/cloud.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cloud = void 0; +var cloud = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M358.719,272.734C364.484,263.125,368,252.016,368,240c0-35.344-28.656-64-64-64c-29.375,0-53.859,19.906-61.391,46.875\r\n\t\tC233.875,213.75,221.625,208,208,208c-26.5,0-48,21.5-48,48c0,5.75,1.188,11.203,3.031,16.312c-1-0.094-2-0.312-3.031-0.312\r\n\t\tc-17.672,0-32,22.328-32,40s14.328,40,32,40h192c17.672,0,32-22.328,32-40C384,296.641,373.156,275.828,358.719,272.734z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M358.719,272.734C364.484,263.125,368,252.016,368,240c0-35.344-28.656-64-64-64c-29.375,0-53.859,19.906-61.391,46.875\r\n\t\tC233.875,213.75,221.625,208,208,208c-26.5,0-48,21.5-48,48c0,5.75,1.188,11.203,3.031,16.312c-1-0.094-2-0.312-3.031-0.312\r\n\t\tc-17.672,0-32,22.328-32,40s14.328,40,32,40h192c17.672,0,32-22.328,32-40C384,296.641,373.156,275.828,358.719,272.734z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }] + }] +}; +exports.cloud = cloud; \ No newline at end of file diff --git a/dist/metrize/cloudAdd.js b/dist/metrize/cloudAdd.js new file mode 100644 index 000000000..d3c8f2cca --- /dev/null +++ b/dist/metrize/cloudAdd.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cloudAdd = void 0; +var cloudAdd = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M358.719,240.734C364.484,231.125,368,220.016,368,208c0-35.344-28.656-64-64-64c-29.375,0-53.859,19.906-61.391,46.875\r\n\t\tC233.875,181.742,221.625,176,208,176c-26.5,0-48,21.492-48,48c0,5.75,1.188,11.203,3.031,16.312c-1-0.094-2-0.312-3.031-0.312\r\n\t\tc-17.672,0-32,22.328-32,40s14.328,40,32,40h101.594c9-32,28.094-40,50.406-40c21.656,0,40.219,8.406,49.531,26.391\r\n\t\tC374.516,302.312,384,288.328,384,274C384,258.641,373.156,243.828,358.719,240.734z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M358.719,240.734C364.484,231.125,368,220.016,368,208c0-35.344-28.656-64-64-64c-29.375,0-53.859,19.906-61.391,46.875\r\n\t\tC233.875,181.742,221.625,176,208,176c-26.5,0-48,21.492-48,48c0,5.75,1.188,11.203,3.031,16.312c-1-0.094-2-0.312-3.031-0.312\r\n\t\tc-17.672,0-32,22.328-32,40s14.328,40,32,40h101.594c9-32,28.094-40,50.406-40c21.656,0,40.219,8.406,49.531,26.391\r\n\t\tC374.516,302.312,384,288.328,384,274C384,258.641,373.156,243.828,358.719,240.734z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M312,288c-22.094,0-40,17.906-40,40s17.906,40,40,40s40-17.906,40-40S334.094,288,312,288z M336,336h-16v16h-16v-16h-16\r\n\t\tv-16h16v-16h16v16h16V336z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M312,288c-22.094,0-40,17.906-40,40s17.906,40,40,40s40-17.906,40-40S334.094,288,312,288z M336,336h-16v16h-16v-16h-16\r\n\t\tv-16h16v-16h16v16h16V336z" + }, + "children": [] + }] + }] + }] +}; +exports.cloudAdd = cloudAdd; \ No newline at end of file diff --git a/dist/metrize/cloudDownload.js b/dist/metrize/cloudDownload.js new file mode 100644 index 000000000..7af7c48b8 --- /dev/null +++ b/dist/metrize/cloudDownload.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cloudDownload = void 0; +var cloudDownload = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M358.719,240.734C364.484,231.125,368,220.016,368,208c0-35.344-28.656-64-64-64c-29.375,0-53.859,19.906-61.391,46.875\r\n\t\tC233.875,181.742,221.625,176,208,176c-26.5,0-48,21.492-48,48c0,5.75,1.188,11.203,3.031,16.312c-1-0.094-2-0.312-3.031-0.312\r\n\t\tc-17.672,0-32,22.328-32,40s14.328,40,32,40h101.594c9-32,28.094-40,50.406-40c21.656,0,40.219,8.406,49.531,26.391\r\n\t\tC374.516,302.312,384,288.328,384,274C384,258.641,373.156,243.828,358.719,240.734z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M358.719,240.734C364.484,231.125,368,220.016,368,208c0-35.344-28.656-64-64-64c-29.375,0-53.859,19.906-61.391,46.875\r\n\t\tC233.875,181.742,221.625,176,208,176c-26.5,0-48,21.492-48,48c0,5.75,1.188,11.203,3.031,16.312c-1-0.094-2-0.312-3.031-0.312\r\n\t\tc-17.672,0-32,22.328-32,40s14.328,40,32,40h101.594c9-32,28.094-40,50.406-40c21.656,0,40.219,8.406,49.531,26.391\r\n\t\tC374.516,302.312,384,288.328,384,274C384,258.641,373.156,243.828,358.719,240.734z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M312,288c-22.094,0-40,17.906-40,40s17.906,40,40,40s40-17.906,40-40S334.094,288,312,288z M312,358.406L292.797,336H304\r\n\t\tv-32h16v32h11.203L312,358.406z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M312,288c-22.094,0-40,17.906-40,40s17.906,40,40,40s40-17.906,40-40S334.094,288,312,288z M312,358.406L292.797,336H304\r\n\t\tv-32h16v32h11.203L312,358.406z" + }, + "children": [] + }] + }] + }] +}; +exports.cloudDownload = cloudDownload; \ No newline at end of file diff --git a/dist/metrize/cloudRemove.js b/dist/metrize/cloudRemove.js new file mode 100644 index 000000000..3faff67d7 --- /dev/null +++ b/dist/metrize/cloudRemove.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cloudRemove = void 0; +var cloudRemove = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M358.719,240.734C364.484,231.125,368,220.016,368,208c0-35.344-28.656-64-64-64c-29.375,0-53.859,19.906-61.391,46.875\r\n\t\tC233.875,181.742,221.625,176,208,176c-26.5,0-48,21.492-48,48c0,5.75,1.188,11.203,3.031,16.312c-1-0.094-2-0.312-3.031-0.312\r\n\t\tc-17.672,0-32,22.328-32,40s14.328,40,32,40h101.594c9-32,28.094-40,50.406-40c21.656,0,40.219,8.406,49.531,26.391\r\n\t\tC374.516,302.312,384,288.328,384,274C384,258.641,373.156,243.828,358.719,240.734z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M358.719,240.734C364.484,231.125,368,220.016,368,208c0-35.344-28.656-64-64-64c-29.375,0-53.859,19.906-61.391,46.875\r\n\t\tC233.875,181.742,221.625,176,208,176c-26.5,0-48,21.492-48,48c0,5.75,1.188,11.203,3.031,16.312c-1-0.094-2-0.312-3.031-0.312\r\n\t\tc-17.672,0-32,22.328-32,40s14.328,40,32,40h101.594c9-32,28.094-40,50.406-40c21.656,0,40.219,8.406,49.531,26.391\r\n\t\tC374.516,302.312,384,288.328,384,274C384,258.641,373.156,243.828,358.719,240.734z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M312,288c-22.094,0-40,17.906-40,40s17.906,40,40,40s40-17.906,40-40S334.094,288,312,288z M336,336h-48v-16h48V336z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M312,288c-22.094,0-40,17.906-40,40s17.906,40,40,40s40-17.906,40-40S334.094,288,312,288z M336,336h-48v-16h48V336z" + }, + "children": [] + }] + }] + }] +}; +exports.cloudRemove = cloudRemove; \ No newline at end of file diff --git a/dist/metrize/cloudUpload.js b/dist/metrize/cloudUpload.js new file mode 100644 index 000000000..cbc02ed65 --- /dev/null +++ b/dist/metrize/cloudUpload.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cloudUpload = void 0; +var cloudUpload = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M358.719,240.734C364.484,231.125,368,220.016,368,208c0-35.344-28.656-64-64-64c-29.375,0-53.859,19.906-61.391,46.875\r\n\t\tC233.875,181.742,221.625,176,208,176c-26.5,0-48,21.492-48,48c0,5.75,1.188,11.203,3.031,16.312c-1-0.094-2-0.312-3.031-0.312\r\n\t\tc-17.672,0-32,22.328-32,40s14.328,40,32,40h101.594c9-32,28.094-40,50.406-40c21.656,0,40.219,8.406,49.531,26.391\r\n\t\tC374.516,302.312,384,288.328,384,274C384,258.641,373.156,243.828,358.719,240.734z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M358.719,240.734C364.484,231.125,368,220.016,368,208c0-35.344-28.656-64-64-64c-29.375,0-53.859,19.906-61.391,46.875\r\n\t\tC233.875,181.742,221.625,176,208,176c-26.5,0-48,21.492-48,48c0,5.75,1.188,11.203,3.031,16.312c-1-0.094-2-0.312-3.031-0.312\r\n\t\tc-17.672,0-32,22.328-32,40s14.328,40,32,40h101.594c9-32,28.094-40,50.406-40c21.656,0,40.219,8.406,49.531,26.391\r\n\t\tC374.516,302.312,384,288.328,384,274C384,258.641,373.156,243.828,358.719,240.734z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M312,368c22.094,0,40-17.906,40-40s-17.906-40-40-40s-40,17.906-40,40S289.906,368,312,368z M312,297.594L331.203,320H320\r\n\t\tv32h-16v-32h-11.203L312,297.594z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M312,368c22.094,0,40-17.906,40-40s-17.906-40-40-40s-40,17.906-40,40S289.906,368,312,368z M312,297.594L331.203,320H320\r\n\t\tv32h-16v-32h-11.203L312,297.594z" + }, + "children": [] + }] + }] + }] +}; +exports.cloudUpload = cloudUpload; \ No newline at end of file diff --git a/dist/metrize/coins.js b/dist/metrize/coins.js new file mode 100644 index 000000000..860cc2f38 --- /dev/null +++ b/dist/metrize/coins.js @@ -0,0 +1,71 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.coins = void 0; +var coins = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\tS397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,336.219c-30.031,0-61.438-6.328-79.844-19.703c0,0.219-0.156,0.438-0.156,0.641c0,3.359,0,15.719,0,19.062\r\n\t\tC176,353.781,211.812,368,256,368s80-14.219,80-31.781c0-3.344,0-15.703,0-19.062c0-0.203-0.156-0.422-0.156-0.641\r\n\t\tC317.438,329.891,286.016,336.219,256,336.219z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,336.219c-30.031,0-61.438-6.328-79.844-19.703c0,0.219-0.156,0.438-0.156,0.641c0,3.359,0,15.719,0,19.062\r\n\t\tC176,353.781,211.812,368,256,368s80-14.219,80-31.781c0-3.344,0-15.703,0-19.062c0-0.203-0.156-0.422-0.156-0.641\r\n\t\tC317.438,329.891,286.016,336.219,256,336.219z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,288.547c-30.031,0-61.438-6.312-79.844-19.688c0,0.219-0.156,0.422-0.156,0.641c0,3.359,0,15.703,0,19.047\r\n\t\tc0,17.562,35.812,31.797,80,31.797s80-14.234,80-31.797c0-3.344,0-15.688,0-19.047c0-0.219-0.156-0.422-0.156-0.641\r\n\t\tC317.438,282.234,286.016,288.547,256,288.547z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,288.547c-30.031,0-61.438-6.312-79.844-19.688c0,0.219-0.156,0.422-0.156,0.641c0,3.359,0,15.703,0,19.047\r\n\t\tc0,17.562,35.812,31.797,80,31.797s80-14.234,80-31.797c0-3.344,0-15.688,0-19.047c0-0.219-0.156-0.422-0.156-0.641\r\n\t\tC317.438,282.234,286.016,288.547,256,288.547z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M176,222.656c0,4.031,0,15.078,0,18.25c0,17.562,35.812,31.781,80,31.781s80-14.219,80-31.781c0-3.172,0-14.219,0-18.25\r\n\t\tc-18.375,13.469-49.891,19.844-80,19.844S194.375,236.125,176,222.656z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M176,222.656c0,4.031,0,15.078,0,18.25c0,17.562,35.812,31.781,80,31.781s80-14.219,80-31.781c0-3.172,0-14.219,0-18.25\r\n\t\tc-18.375,13.469-49.891,19.844-80,19.844S194.375,236.125,176,222.656z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,144c-44.188,0-80,14.219-80,31.781c0,3.344,0,15.703,0,19.062c0,17.531,35.812,31.766,80,31.766s80-14.234,80-31.766\r\n\t\tc0-3.359,0-15.719,0-19.062C336,158.219,300.188,144,256,144z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,144c-44.188,0-80,14.219-80,31.781c0,3.344,0,15.703,0,19.062c0,17.531,35.812,31.766,80,31.766s80-14.234,80-31.766\r\n\t\tc0-3.359,0-15.719,0-19.062C336,158.219,300.188,144,256,144z" + }, + "children": [] + }] + }] + }] +}; +exports.coins = coins; \ No newline at end of file diff --git a/dist/metrize/comment.js b/dist/metrize/comment.js new file mode 100644 index 000000000..2b2f65fcd --- /dev/null +++ b/dist/metrize/comment.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.comment = void 0; +var comment = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,160c-61.859,0-112,37.383-112,83.469c0,20.531,15.547,43.906,32,58.453L160,352l48.625-32.953\r\n\t\tc14.406,5.031,30.406,7.906,47.375,7.906c61.859,0,112-37.359,112-83.484C368,197.383,317.859,160,256,160z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,160c-61.859,0-112,37.383-112,83.469c0,20.531,15.547,43.906,32,58.453L160,352l48.625-32.953\r\n\t\tc14.406,5.031,30.406,7.906,47.375,7.906c61.859,0,112-37.359,112-83.484C368,197.383,317.859,160,256,160z" + }, + "children": [] + }] + }] + }] +}; +exports.comment = comment; \ No newline at end of file diff --git a/dist/metrize/comments.js b/dist/metrize/comments.js new file mode 100644 index 000000000..beacce4a8 --- /dev/null +++ b/dist/metrize/comments.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.comments = void 0; +var comments = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M310.875,254.734c-40.438,0-73.172,22.078-73.172,49.234c0,12.094,10.172,25.875,20.922,34.469L248.188,368l31.703-19.469\r\n\t\tc9.453,2.969,19.891,4.656,30.984,4.656c40.391,0,73.125-22,73.125-49.219C384,276.812,351.266,254.734,310.875,254.734z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M310.875,254.734c-40.438,0-73.172,22.078-73.172,49.234c0,12.094,10.172,25.875,20.922,34.469L248.188,368l31.703-19.469\r\n\t\tc9.453,2.969,19.891,4.656,30.984,4.656c40.391,0,73.125-22,73.125-49.219C384,276.812,351.266,254.734,310.875,254.734z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,144c-70.688,0-128,40.234-128,89.891c0,22.062,17.781,47.234,36.562,62.922l-18.266,53.969l55.547-35.562\r\n\t\tc7.25,2.375,14.938,4.25,22.844,5.656c-3.234-6.344-5.25-12.938-5.25-19.125c0-35.484,40.938-64.219,91.438-64.219\r\n\t\tc27.062,0,51.188,8.422,67.938,21.578c3.312-8,5.188-16.469,5.188-25.219C384,184.234,326.688,144,256,144z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,144c-70.688,0-128,40.234-128,89.891c0,22.062,17.781,47.234,36.562,62.922l-18.266,53.969l55.547-35.562\r\n\t\tc7.25,2.375,14.938,4.25,22.844,5.656c-3.234-6.344-5.25-12.938-5.25-19.125c0-35.484,40.938-64.219,91.438-64.219\r\n\t\tc27.062,0,51.188,8.422,67.938,21.578c3.312-8,5.188-16.469,5.188-25.219C384,184.234,326.688,144,256,144z" + }, + "children": [] + }] + }] + }] +}; +exports.comments = comments; \ No newline at end of file diff --git a/dist/metrize/compass.js b/dist/metrize/compass.js new file mode 100644 index 000000000..0b08f463a --- /dev/null +++ b/dist/metrize/compass.js @@ -0,0 +1,87 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.compass = void 0; +var compass = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "224.391,224.469 231.359,196.641 144.359,144.438 196.547,231.438 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "224.391,224.469 231.359,196.641 144.359,144.438 196.547,231.438 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "315.281,231.172 367.125,144 280.5,196.406 287.5,224.344 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "315.281,231.172 367.125,144 280.5,196.406 287.5,224.344 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "287.688,287.453 280.828,315.344 368,367.219 315.469,280.391 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "287.688,287.453 280.828,315.344 368,367.219 315.469,280.391 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "196.547,280.672 144.359,367.656 231.547,315.312 224.516,287.641 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "196.547,280.672 144.359,367.656 231.547,315.312 224.516,287.641 \t" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,128l-25.594,102.391L128,256l102.5,25.625L256.5,384l25.234-102.547L384,255.5l-102.422-25.203L256,128z M256,272\r\n\t\tc-8.828,0-16-7.172-16-16s7.172-16,16-16s16,7.172,16,16S264.828,272,256,272z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,128l-25.594,102.391L128,256l102.5,25.625L256.5,384l25.234-102.547L384,255.5l-102.422-25.203L256,128z M256,272\r\n\t\tc-8.828,0-16-7.172-16-16s7.172-16,16-16s16,7.172,16,16S264.828,272,256,272z" + }, + "children": [] + }] + }] + }] +}; +exports.compass = compass; \ No newline at end of file diff --git a/dist/metrize/compass2.js b/dist/metrize/compass2.js new file mode 100644 index 000000000..2562c033e --- /dev/null +++ b/dist/metrize/compass2.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.compass2 = void 0; +var compass2 = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,128c-70.695,0-128,57.312-128,128s57.305,128,128,128c70.688,0,128-57.312,128-128S326.688,128,256,128z M256,368\r\n\t\tc-61.758,0-112-50.25-112-112s50.242-112,112-112c61.75,0,112,50.25,112,112S317.75,368,256,368z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,128c-70.695,0-128,57.312-128,128s57.305,128,128,128c70.688,0,128-57.312,128-128S326.688,128,256,128z M256,368\r\n\t\tc-61.758,0-112-50.25-112-112s50.242-112,112-112c61.75,0,112,50.25,112,112S317.75,368,256,368z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M192,320l80-48l48-80l-80,48L192,320z M256,248c4.422,0,8,3.578,8,8s-3.578,8-8,8s-8-3.578-8-8S251.578,248,256,248z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M192,320l80-48l48-80l-80,48L192,320z M256,248c4.422,0,8,3.578,8,8s-3.578,8-8,8s-8-3.578-8-8S251.578,248,256,248z" + }, + "children": [] + }] + }] + }] +}; +exports.compass2 = compass2; \ No newline at end of file diff --git a/dist/metrize/contractDirections.js b/dist/metrize/contractDirections.js new file mode 100644 index 000000000..0da014e70 --- /dev/null +++ b/dist/metrize/contractDirections.js @@ -0,0 +1,93 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.contractDirections = void 0; +var contractDirections = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "192", + "y": "208", + "width": "128", + "height": "96" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "192", + "y": "208", + "width": "128", + "height": "96" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "144,288 176,256 144,224 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "144,288 176,256 144,224 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "368,288 368,224 335.984,256 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "368,288 368,224 335.984,256 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "287.969,160 223.953,160 255.953,192 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "287.969,160 223.953,160 255.953,192 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "223.938,352 287.969,352 255.969,320 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "223.938,352 287.969,352 255.969,320 \t" + }, + "children": [] + }] + }] + }] +}; +exports.contractDirections = contractDirections; \ No newline at end of file diff --git a/dist/metrize/contractHorizontal.js b/dist/metrize/contractHorizontal.js new file mode 100644 index 000000000..c1d3df375 --- /dev/null +++ b/dist/metrize/contractHorizontal.js @@ -0,0 +1,69 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.contractHorizontal = void 0; +var contractHorizontal = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "192", + "y": "208", + "width": "128", + "height": "96" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "192", + "y": "208", + "width": "128", + "height": "96" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "144,288.047 176,256.047 144,224.031 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "144,288.047 176,256.047 144,224.031 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "368,288.047 368,224.031 335.984,256.047 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "368,288.047 368,224.031 335.984,256.047 \t" + }, + "children": [] + }] + }] + }] +}; +exports.contractHorizontal = contractHorizontal; \ No newline at end of file diff --git a/dist/metrize/contractVertical.js b/dist/metrize/contractVertical.js new file mode 100644 index 000000000..a99f9c40a --- /dev/null +++ b/dist/metrize/contractVertical.js @@ -0,0 +1,69 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.contractVertical = void 0; +var contractVertical = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "192", + "y": "208", + "width": "128", + "height": "96" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "192", + "y": "208", + "width": "128", + "height": "96" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "288,160 224,160 256,192 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "288,160 224,160 256,192 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "224,352 288,352 256,319.969 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "224,352 288,352 256,319.969 \t" + }, + "children": [] + }] + }] + }] +}; +exports.contractVertical = contractVertical; \ No newline at end of file diff --git a/dist/metrize/copyDocument.js b/dist/metrize/copyDocument.js new file mode 100644 index 000000000..505f2d67c --- /dev/null +++ b/dist/metrize/copyDocument.js @@ -0,0 +1,65 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.copyDocument = void 0; +var copyDocument = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "144", + "y": "192", + "width": "160", + "height": "192" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "144", + "y": "192", + "width": "160", + "height": "192" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "368,128 208,128 208,176 320,176 320,320 368,320 \t\t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "368,128 208,128 208,176 320,176 320,320 368,320 \t\t" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.copyDocument = copyDocument; \ No newline at end of file diff --git a/dist/metrize/copyPasteDocument.js b/dist/metrize/copyPasteDocument.js new file mode 100644 index 000000000..26ba52a66 --- /dev/null +++ b/dist/metrize/copyPasteDocument.js @@ -0,0 +1,85 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.copyPasteDocument = void 0; +var copyPasteDocument = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "128", + "y": "224", + "width": "160", + "height": "160" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "128", + "y": "224", + "width": "160", + "height": "160" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "336,176 176,176 176,208 304,208 304,336 336,336 \t\t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "336,176 176,176 176,208 304,208 304,336 336,336 \t\t" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "384,128 224,128 224,160 352,160 352,288 384,288 \t\t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "384,128 224,128 224,160 352,160 352,288 384,288 \t\t" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.copyPasteDocument = copyPasteDocument; \ No newline at end of file diff --git a/dist/metrize/creditCard.js b/dist/metrize/creditCard.js new file mode 100644 index 000000000..4d1f82f01 --- /dev/null +++ b/dist/metrize/creditCard.js @@ -0,0 +1,71 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.creditCard = void 0; +var creditCard = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\tS397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M368,216c0-22.094-17.906-40-40-40H184c-22.094,0-40,17.906-40,40v80c0,22.094,17.906,40,40,40h144\r\n\t\tc22.094,0,40-17.906,40-40V216z M183.594,192h144c10.438,0,19.219,6.719,22.531,16H161.078\r\n\t\tC164.391,198.719,173.188,192,183.594,192z M352,296c0,13.234-11.156,24-24.406,24h-144C170.375,320,160,309.234,160,296v-56h192\r\n\t\tV296z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M368,216c0-22.094-17.906-40-40-40H184c-22.094,0-40,17.906-40,40v80c0,22.094,17.906,40,40,40h144\r\n\t\tc22.094,0,40-17.906,40-40V216z M183.594,192h144c10.438,0,19.219,6.719,22.531,16H161.078\r\n\t\tC164.391,198.719,173.188,192,183.594,192z M352,296c0,13.234-11.156,24-24.406,24h-144C170.375,320,160,309.234,160,296v-56h192\r\n\t\tV296z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M183.594,272h64c4.438,0,8-3.578,8-8s-3.562-8-8-8h-64c-4.406,0-8,3.578-8,8S179.188,272,183.594,272z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M183.594,272h64c4.438,0,8-3.578,8-8s-3.562-8-8-8h-64c-4.406,0-8,3.578-8,8S179.188,272,183.594,272z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M311.594,272h16c4.438,0,8-3.578,8-8s-3.562-8-8-8h-16c-4.406,0-8,3.578-8,8S307.188,272,311.594,272z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M311.594,272h16c4.438,0,8-3.578,8-8s-3.562-8-8-8h-16c-4.406,0-8,3.578-8,8S307.188,272,311.594,272z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M183.594,304h32c4.438,0,8-3.578,8-8s-3.562-8-8-8h-32c-4.406,0-8,3.578-8,8S179.188,304,183.594,304z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M183.594,304h32c4.438,0,8-3.578,8-8s-3.562-8-8-8h-32c-4.406,0-8,3.578-8,8S179.188,304,183.594,304z" + }, + "children": [] + }] + }] + }] +}; +exports.creditCard = creditCard; \ No newline at end of file diff --git a/dist/metrize/cross.js b/dist/metrize/cross.js new file mode 100644 index 000000000..c7ec5044d --- /dev/null +++ b/dist/metrize/cross.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cross = void 0; +var cross = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "polygon", + "attribs": { + "points": "335.188,154.188 256,233.375 176.812,154.188 154.188,176.812 233.375,256 154.188,335.188 176.812,357.812 \r\n\t256,278.625 335.188,357.812 357.812,335.188 278.625,256 357.812,176.812 " + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] +}; +exports.cross = cross; \ No newline at end of file diff --git a/dist/metrize/directions.js b/dist/metrize/directions.js new file mode 100644 index 000000000..330112ab8 --- /dev/null +++ b/dist/metrize/directions.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.directions = void 0; +var directions = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "384,256 352,224 352,240 272,240 272,160 288,160 256,128 224,160 \r\n\t240,160 240,240 160,240 160,224 128,256 160,288 160,272 240,272 240,352 224,352 256,384 288,352 272,352 272,272 352,272 \r\n\t352,288 " + }, + "children": [] + }] +}; +exports.directions = directions; \ No newline at end of file diff --git a/dist/metrize/documentFill.js b/dist/metrize/documentFill.js new file mode 100644 index 000000000..9af14fe0f --- /dev/null +++ b/dist/metrize/documentFill.js @@ -0,0 +1,147 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.documentFill = void 0; +var documentFill = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M320,128H160v256h192V164.578L320,128z M176,368V144h128v32h32v192H176z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M320,128H160v256h192V164.578L320,128z M176,368V144h128v32h32v192H176z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "192", + "y": "272", + "width": "128", + "height": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "192", + "y": "272", + "width": "128", + "height": "16" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "192", + "y": "240", + "width": "128", + "height": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "192", + "y": "240", + "width": "128", + "height": "16" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "192", + "y": "192", + "width": "64", + "height": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "192", + "y": "192", + "width": "64", + "height": "16" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "192", + "y": "160", + "width": "32", + "height": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "192", + "y": "160", + "width": "32", + "height": "16" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "192", + "y": "304", + "width": "128", + "height": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "192", + "y": "304", + "width": "128", + "height": "16" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "192", + "y": "336", + "width": "128", + "height": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "192", + "y": "336", + "width": "128", + "height": "16" + }, + "children": [] + }] + }] + }] +}; +exports.documentFill = documentFill; \ No newline at end of file diff --git a/dist/metrize/documentIcon.js b/dist/metrize/documentIcon.js new file mode 100644 index 000000000..3a058abbc --- /dev/null +++ b/dist/metrize/documentIcon.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.documentIcon = void 0; +var documentIcon = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M320,128H160v256h192V164.578L320,128z M176,368V144h128v32h32v192H176z" + }, + "children": [] + }] +}; +exports.documentIcon = documentIcon; \ No newline at end of file diff --git a/dist/metrize/documents.js b/dist/metrize/documents.js new file mode 100644 index 000000000..0913ef23b --- /dev/null +++ b/dist/metrize/documents.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.documents = void 0; +var documents = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M360.5,128.5h-121v64h-112v192h144v-64h112v-169L360.5,128.5z M255.5,368.5h-112v-160h96v112h16V368.5z M367.5,304.5h-112\r\n\tv-160h80v32h32V304.5z" + }, + "children": [] + }] +}; +exports.documents = documents; \ No newline at end of file diff --git a/dist/metrize/dollar.js b/dist/metrize/dollar.js new file mode 100644 index 000000000..a8e3ed4d9 --- /dev/null +++ b/dist/metrize/dollar.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.dollar = void 0; +var dollar = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M267.922,351.734V384h-25.719v-30.406c-19.516-0.609-39.047-6.25-50.203-13.469l8.375-29.766\r\n\tc12.406,7.531,29.438,13.781,48.344,13.781c19.812,0,33.141-9.703,33.141-24.438c0-14.391-10.828-23.156-34.078-31.641\r\n\tc-32.219-11.906-53.609-27.25-53.609-56.094c0-26.938,18.609-47.938,49.891-53.562V128h25.406v28.828\r\n\tc19.516,0.625,32.859,5.641,42.781,10.656l-8.375,28.828c-7.438-3.75-21.078-10.969-42.141-10.969\r\n\tc-21.703,0-29.453,11.281-29.453,21.938c0,12.844,11.156,20.359,37.812,30.719C304.797,251.156,320,268.062,320,296.281\r\n\tC320,322.922,301.703,346.094,267.922,351.734z" + }, + "children": [] + }] +}; +exports.dollar = dollar; \ No newline at end of file diff --git a/dist/metrize/dotCircle.js b/dist/metrize/dotCircle.js new file mode 100644 index 000000000..8b7b253e3 --- /dev/null +++ b/dist/metrize/dotCircle.js @@ -0,0 +1,163 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.dotCircle = void 0; +var dotCircle = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M272,352c0,8.844-7.156,16-16,16s-16-7.156-16-16s7.156-16,16-16\r\n\t\tS272,343.156,272,352z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M272,352c0,8.844-7.156,16-16,16s-16-7.156-16-16s7.156-16,16-16\r\n\t\tS272,343.156,272,352z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M272,160c0,8.844-7.156,16-16,16s-16-7.156-16-16s7.156-16,16-16\r\n\t\tS272,151.156,272,160z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M272,160c0,8.844-7.156,16-16,16s-16-7.156-16-16s7.156-16,16-16\r\n\t\tS272,151.156,272,160z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M368,256c0,8.844-7.156,16-16,16s-16-7.156-16-16s7.156-16,16-16\r\n\t\tS368,247.156,368,256z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M368,256c0,8.844-7.156,16-16,16s-16-7.156-16-16s7.156-16,16-16\r\n\t\tS368,247.156,368,256z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M176,256c0,8.844-7.156,16-16,16s-16-7.156-16-16s7.156-16,16-16\r\n\t\tS176,247.156,176,256z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M176,256c0,8.844-7.156,16-16,16s-16-7.156-16-16s7.156-16,16-16\r\n\t\tS176,247.156,176,256z" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M173.062,226.844c8.844-25.062,28.719-44.938,53.781-53.781\r\n\t\t\tc-1.797-4-2.844-8.391-2.844-13.062c0-1.031,0.219-2.016,0.312-3.031c-31.891,10.25-57.094,35.453-67.344,67.344\r\n\t\t\tc1.016-0.094,2-0.312,3.031-0.312C164.672,224,169.062,225.047,173.062,226.844z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M173.062,226.844c8.844-25.062,28.719-44.938,53.781-53.781\r\n\t\t\tc-1.797-4-2.844-8.391-2.844-13.062c0-1.031,0.219-2.016,0.312-3.031c-31.891,10.25-57.094,35.453-67.344,67.344\r\n\t\t\tc1.016-0.094,2-0.312,3.031-0.312C164.672,224,169.062,225.047,173.062,226.844z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M226.844,338.938c-25.062-8.859-44.938-28.703-53.781-53.781\r\n\t\t\tc-4,1.797-8.391,2.844-13.062,2.844c-1.031,0-2.016-0.203-3.031-0.297c10.25,31.875,35.453,57.094,67.344,67.312\r\n\t\t\tc-0.094-1-0.312-1.984-0.312-3.016C224,347.328,225.047,342.922,226.844,338.938z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M226.844,338.938c-25.062-8.859-44.938-28.703-53.781-53.781\r\n\t\t\tc-4,1.797-8.391,2.844-13.062,2.844c-1.031,0-2.016-0.203-3.031-0.297c10.25,31.875,35.453,57.094,67.344,67.312\r\n\t\t\tc-0.094-1-0.312-1.984-0.312-3.016C224,347.328,225.047,342.922,226.844,338.938z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M285.156,173.062c25.078,8.844,44.922,28.719,53.781,53.781\r\n\t\t\tC342.922,225.047,347.328,224,352,224c1.031,0,2.016,0.219,3.016,0.312c-10.219-31.891-35.438-57.094-67.312-67.344\r\n\t\t\tc0.094,1.016,0.297,2,0.297,3.031C288,164.672,286.953,169.062,285.156,173.062z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M285.156,173.062c25.078,8.844,44.922,28.719,53.781,53.781\r\n\t\t\tC342.922,225.047,347.328,224,352,224c1.031,0,2.016,0.219,3.016,0.312c-10.219-31.891-35.438-57.094-67.312-67.344\r\n\t\t\tc0.094,1.016,0.297,2,0.297,3.031C288,164.672,286.953,169.062,285.156,173.062z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M338.922,285.156c-8.844,25.062-28.703,44.922-53.766,53.766\r\n\t\t\tc1.797,4,2.844,8.406,2.844,13.078c0,1.031-0.203,2.016-0.297,3.016c31.875-10.219,57.094-35.438,67.312-67.312\r\n\t\t\tc-1,0.094-1.984,0.297-3.016,0.297C347.328,288,342.922,286.953,338.922,285.156z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M338.922,285.156c-8.844,25.062-28.703,44.922-53.766,53.766\r\n\t\t\tc1.797,4,2.844,8.406,2.844,13.078c0,1.031-0.203,2.016-0.297,3.016c31.875-10.219,57.094-35.438,67.312-67.312\r\n\t\t\tc-1,0.094-1.984,0.297-3.016,0.297C347.328,288,342.922,286.953,338.922,285.156z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.dotCircle = dotCircle; \ No newline at end of file diff --git a/dist/metrize/dotLine.js b/dist/metrize/dotLine.js new file mode 100644 index 000000000..f036e1562 --- /dev/null +++ b/dist/metrize/dotLine.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.dotLine = void 0; +var dotLine = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M384,176v-48h-48v36.703L164.688,336H128v48h48v-36.688L347.328,176H384z M352,144\r\n\th16v16h-16V144z M160,368h-16v-16h16V368z" + }, + "children": [] + }] +}; +exports.dotLine = dotLine; \ No newline at end of file diff --git a/dist/metrize/dotSquare.js b/dist/metrize/dotSquare.js new file mode 100644 index 000000000..7f45463ad --- /dev/null +++ b/dist/metrize/dotSquare.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.dotSquare = void 0; +var dotSquare = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M384,176v-48h-48v16H176v-16h-48v48h16v160h-16v48h48v-16h160v16h48v-48h-16V176\r\n\tH384z M352,144h16v16h-16V144z M144,144h16v16h-16V144z M160,368h-16v-16h16V368z M368,368h-16v-16h16V368z M352,336h-16v16H176v-16\r\n\th-16V176h16v-16h160v16h16V336z" + }, + "children": [] + }] +}; +exports.dotSquare = dotSquare; \ No newline at end of file diff --git a/dist/metrize/doubleDiamonds.js b/dist/metrize/doubleDiamonds.js new file mode 100644 index 000000000..0e059712f --- /dev/null +++ b/dist/metrize/doubleDiamonds.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.doubleDiamonds = void 0; +var doubleDiamonds = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M384,255.781L293.469,160l-37.672,39.875L218.5,160.422L128,256.203L218.5,352l37.688-39.859l37.281,39.453L384,255.781z\r\n\t M267.109,211.844l26.359-27.906l67.906,71.844l-67.906,71.859L267.5,300.172l41.531-43.969L267.109,211.844z" + }, + "children": [] + }] +}; +exports.doubleDiamonds = doubleDiamonds; \ No newline at end of file diff --git a/dist/metrize/download.js b/dist/metrize/download.js new file mode 100644 index 000000000..8ff2dca04 --- /dev/null +++ b/dist/metrize/download.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.download = void 0; +var download = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "352,320 352,352 256,352 160,352 160,320 128,320 128,384 384,384 \r\n\t\t\t384,320 \t\t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "352,320 352,352 256,352 160,352 160,320 128,320 128,384 384,384 \r\n\t\t\t384,320 \t\t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "272,256 272,128 240,128 240,256 192,256 256,336 320,256 \t\t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "272,256 272,128 240,128 240,256 192,256 256,336 320,256 \t\t" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.download = download; \ No newline at end of file diff --git a/dist/metrize/downloadSelection.js b/dist/metrize/downloadSelection.js new file mode 100644 index 000000000..ff2eca239 --- /dev/null +++ b/dist/metrize/downloadSelection.js @@ -0,0 +1,153 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.downloadSelection = void 0; +var downloadSelection = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "351.891", + "y": "224.031", + "width": "15.984", + "height": "63.938" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "351.891", + "y": "224.031", + "width": "15.984", + "height": "63.938" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M344.031,144h-8v15.984h8c4.391,0,7.984,3.578,7.984,7.984v8H368v-8C368,154.75,357.25,144,344.031,144z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M344.031,144h-8v15.984h8c4.391,0,7.984,3.578,7.984,7.984v8H368v-8C368,154.75,357.25,144,344.031,144z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "224.039", + "y": "144.125", + "width": "63.93", + "height": "15.984" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "224.039", + "y": "144.125", + "width": "63.93", + "height": "15.984" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M144,167.969l0.125,8.125h15.984l-0.125-8.125c0-4.406,3.578-7.984,7.992-7.984h7.984V144h-7.984\r\n\t\tC154.75,144,144,154.75,144,167.969z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M144,167.969l0.125,8.125h15.984l-0.125-8.125c0-4.406,3.578-7.984,7.992-7.984h7.984V144h-7.984\r\n\t\tC154.75,144,144,154.75,144,167.969z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "144.125", + "y": "224.031", + "width": "15.984", + "height": "63.938" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "144.125", + "y": "224.031", + "width": "15.984", + "height": "63.938" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M159.984,344.031v-8H144v8C144,357.25,154.75,368,167.977,368h7.984v-15.984h-7.984\r\n\t\tC163.562,352.016,159.984,348.422,159.984,344.031z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M159.984,344.031v-8H144v8C144,357.25,154.75,368,167.977,368h7.984v-15.984h-7.984\r\n\t\tC163.562,352.016,159.984,348.422,159.984,344.031z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "224.039", + "y": "351.891", + "width": "63.93", + "height": "15.984" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "224.039", + "y": "351.891", + "width": "63.93", + "height": "15.984" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M352.016,344.031c0,4.391-3.594,7.984-7.984,7.984h-8V368h8C357.25,368,368,357.25,368,344.031v-8h-15.984V344.031z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M352.016,344.031c0,4.391-3.594,7.984-7.984,7.984h-8V368h8C357.25,368,368,357.25,368,344.031v-8h-15.984V344.031z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "272.109,191.875 240.141,191.875 240.016,272.172 208.055,272.172 256,320.109 303.953,272.172 272.094,272.25 \t\r\n\t\t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "272.109,191.875 240.141,191.875 240.016,272.172 208.055,272.172 256,320.109 303.953,272.172 272.094,272.25 \t\r\n\t\t" + }, + "children": [] + }] + }] + }] +}; +exports.downloadSelection = downloadSelection; \ No newline at end of file diff --git a/dist/metrize/downloadSelectionCircle.js b/dist/metrize/downloadSelectionCircle.js new file mode 100644 index 000000000..2b63ec9ca --- /dev/null +++ b/dist/metrize/downloadSelectionCircle.js @@ -0,0 +1,153 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.downloadSelectionCircle = void 0; +var downloadSelectionCircle = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "303.891,271.961 271.961,271.961 271.961,192.133 240.031,192.133 240.031,271.961 208.109,271.961 256,319.852 \t\r\n\t\t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "303.891,271.961 271.961,271.961 271.961,192.133 240.031,192.133 240.031,271.961 208.109,271.961 256,319.852 \t\r\n\t\t" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M322.516,346.117c9.453-6.984,17.703-15.359,24.547-24.906l-12.969-9.297c-5.875,8.188-12.969,15.375-21.062,21.375\r\n\t\tL322.516,346.117z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M322.516,346.117c9.453-6.984,17.703-15.359,24.547-24.906l-12.969-9.297c-5.875,8.188-12.969,15.375-21.062,21.375\r\n\t\tL322.516,346.117z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256.836,352.039l0.148,15.969c11.789-0.094,23.391-2.031,34.5-5.75l-5.047-15.125\r\n\t\tC276.922,350.305,266.977,351.945,256.836,352.039z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256.836,352.039l0.148,15.969c11.789-0.094,23.391-2.031,34.5-5.75l-5.047-15.125\r\n\t\tC276.922,350.305,266.977,351.945,256.836,352.039z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M321.484,165.133c-9.531-6.875-20.047-12.203-31.219-15.781l-4.891,15.203c9.578,3.062,18.594,7.609,26.766,13.516\r\n\t\tL321.484,165.133z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M321.484,165.133c-9.531-6.875-20.047-12.203-31.219-15.781l-4.891,15.203c9.578,3.062,18.594,7.609,26.766,13.516\r\n\t\tL321.484,165.133z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M362.375,220.82c-3.703-11.141-9.094-21.594-16.078-31.078l-12.844,9.453c5.953,8.141,10.594,17.094,13.766,26.641\r\n\t\tL362.375,220.82z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M362.375,220.82c-3.703-11.141-9.094-21.594-16.078-31.078l-12.844,9.453c5.953,8.141,10.594,17.094,13.766,26.641\r\n\t\tL362.375,220.82z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M347.547,285.102l15.219,4.844c3.469-10.938,5.234-22.375,5.234-33.938v-0.609l-15.969,0.609\r\n\t\tC352.031,265.945,350.531,275.742,347.547,285.102z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M347.547,285.102l15.219,4.844c3.469-10.938,5.234-22.375,5.234-33.938v-0.609l-15.969,0.609\r\n\t\tC352.031,265.945,350.531,275.742,347.547,285.102z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M166.062,322.773l12.828-9.516c-6.047-8.109-10.734-17.062-13.938-26.562l-15.141,5.094\r\n\t\tC153.547,302.898,159.016,313.32,166.062,322.773z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M166.062,322.773l12.828-9.516c-6.047-8.109-10.734-17.062-13.938-26.562l-15.141,5.094\r\n\t\tC153.547,302.898,159.016,313.32,166.062,322.773z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M148.75,256.852l11.219-0.844c0-10.125,1.578-20.078,4.672-29.641l-15.203-4.906C145.828,232.602,144,244.227,144,256.32\r\n\t\tL148.75,256.852z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M148.75,256.852l11.219-0.844c0-10.125,1.578-20.078,4.672-29.641l-15.203-4.906C145.828,232.602,144,244.227,144,256.32\r\n\t\tL148.75,256.852z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M199.453,178.383l-9.422-12.875c-9.516,6.938-17.828,15.281-24.703,24.766l12.906,9.391\r\n\t\tC184.141,191.508,191.297,184.367,199.453,178.383z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M199.453,178.383l-9.422-12.875c-9.516,6.938-17.828,15.281-24.703,24.766l12.906,9.391\r\n\t\tC184.141,191.508,191.297,184.367,199.453,178.383z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M222.375,362.867l4.812-15.234c-9.594-3.016-18.641-7.516-26.859-13.375l-9.281,13\r\n\t\tC200.656,354.086,211.203,359.352,222.375,362.867z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M222.375,362.867l4.812-15.234c-9.594-3.016-18.641-7.516-26.859-13.375l-9.281,13\r\n\t\tC200.656,354.086,211.203,359.352,222.375,362.867z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M255.727,159.945l-0.062-15.953c-11.828,0.047-23.43,1.906-34.539,5.531l4.984,15.172\r\n\t\tC235.594,161.602,245.562,160.008,255.727,159.945z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M255.727,159.945l-0.062-15.953c-11.828,0.047-23.43,1.906-34.539,5.531l4.984,15.172\r\n\t\tC235.594,161.602,245.562,160.008,255.727,159.945z" + }, + "children": [] + }] + }] + }] +}; +exports.downloadSelectionCircle = downloadSelectionCircle; \ No newline at end of file diff --git a/dist/metrize/drop.js b/dist/metrize/drop.js new file mode 100644 index 000000000..4a9f0f553 --- /dev/null +++ b/dist/metrize/drop.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.drop = void 0; +var drop = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M256,128c-16,48-80,131.812-80,176s35.812,80,80,80s80-35.812,80-80\r\n\tS272,176,256,128z M256,352c-27.625,0-50-22.406-50-50c0-27.625,40-80,50-110c10,30,50,82.375,50,110\r\n\tC306,329.594,283.594,352,256,352z" + }, + "children": [] + }] +}; +exports.drop = drop; \ No newline at end of file diff --git a/dist/metrize/drops.js b/dist/metrize/drops.js new file mode 100644 index 000000000..15ca7838b --- /dev/null +++ b/dist/metrize/drops.js @@ -0,0 +1,53 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.drops = void 0; +var drops = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M304,304c0,44.188-35.812,80-80,80s-80-35.812-80-80s64-128,80-176\r\n\t\tC240,176,304,259.812,304,304z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M304,304c0,44.188-35.812,80-80,80s-80-35.812-80-80s64-128,80-176\r\n\t\tC240,176,304,259.812,304,304z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M368,194c0,16.562-14.344,30-32,30s-32-13.438-32-30s25.594-48,32-66\r\n\t\tC342.406,146,368,177.438,368,194z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M368,194c0,16.562-14.344,30-32,30s-32-13.438-32-30s25.594-48,32-66\r\n\t\tC342.406,146,368,177.438,368,194z" + }, + "children": [] + }] + }] + }] +}; +exports.drops = drops; \ No newline at end of file diff --git a/dist/metrize/eject.js b/dist/metrize/eject.js new file mode 100644 index 000000000..d6002649b --- /dev/null +++ b/dist/metrize/eject.js @@ -0,0 +1,65 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.eject = void 0; +var eject = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "176,272 336,272 256,176 \t\t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "176,272 336,272 256,176 \t\t" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "176", + "y": "304", + "width": "160", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "176", + "y": "304", + "width": "160", + "height": "32" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.eject = eject; \ No newline at end of file diff --git a/dist/metrize/emailAdd.js b/dist/metrize/emailAdd.js new file mode 100644 index 000000000..f2495cc1c --- /dev/null +++ b/dist/metrize/emailAdd.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.emailAdd = void 0; +var emailAdd = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M368,234.375v74.438l-54.5-59.422l16.719-11.312c-5.984-1.531-11.641-3.922-16.688-7.203L256,271.75L166.281,208H256\r\n\t\t\th37.625c-2.391-16-4-16-4.812-16H256H128v160h128h128V223.062C379.422,227.75,373.969,231.531,368,234.375z M144,212.531\r\n\t\t\tl54.5,36.859L144,308.812V212.531z M256,336h-92.406l45.562-79.422L256,288.25l46.844-31.656L348.406,336H256z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M368,234.375v74.438l-54.5-59.422l16.719-11.312c-5.984-1.531-11.641-3.922-16.688-7.203L256,271.75L166.281,208H256\r\n\t\t\th37.625c-2.391-16-4-16-4.812-16H256H128v160h128h128V223.062C379.422,227.75,373.969,231.531,368,234.375z M144,212.531\r\n\t\t\tl54.5,36.859L144,308.812V212.531z M256,336h-92.406l45.562-79.422L256,288.25l46.844-31.656L348.406,336H256z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M344,144c-22.094,0-40,17.906-40,40s17.906,40,40,40s40-17.906,40-40S366.094,144,344,144z M368,192h-16v16h-16v-16h-16\r\n\t\t\tv-16h16v-16h16v16h16V192z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M344,144c-22.094,0-40,17.906-40,40s17.906,40,40,40s40-17.906,40-40S366.094,144,344,144z M368,192h-16v16h-16v-16h-16\r\n\t\t\tv-16h16v-16h16v16h16V192z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.emailAdd = emailAdd; \ No newline at end of file diff --git a/dist/metrize/emailClose.js b/dist/metrize/emailClose.js new file mode 100644 index 000000000..8d7810114 --- /dev/null +++ b/dist/metrize/emailClose.js @@ -0,0 +1,59 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.emailClose = void 0; +var emailClose = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M368,234.375v74.438l-54.5-59.422l16.719-11.312c-5.984-1.531-11.641-3.922-16.688-7.203L256,271.75L166.281,208H256\r\n\t\t\th37.625c-2.391-4.984-4-10.344-4.812-16H256H128v160h128h128V223.062C379.422,227.75,373.969,231.531,368,234.375z M144,212.531\r\n\t\t\tl54.5,36.859L144,308.812V212.531z M256,336h-92.406l45.562-79.422L256,288.25l46.844-31.672L348.406,336H256z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M368,234.375v74.438l-54.5-59.422l16.719-11.312c-5.984-1.531-11.641-3.922-16.688-7.203L256,271.75L166.281,208H256\r\n\t\t\th37.625c-2.391-4.984-4-10.344-4.812-16H256H128v160h128h128V223.062C379.422,227.75,373.969,231.531,368,234.375z M144,212.531\r\n\t\t\tl54.5,36.859L144,308.812V212.531z M256,336h-92.406l45.562-79.422L256,288.25l46.844-31.672L348.406,336H256z" + }, + "children": [] + }] + }] + }] + }, { + "name": "path", + "attribs": { + "d": "M344,144c-22.094,0-40,17.906-40,40s17.906,40,40,40s40-17.906,40-40S366.094,144,344,144z M366.625,195.312\r\n\t\tl-11.312,11.312L344,195.312l-11.312,11.312l-11.312-11.312L332.688,184l-11.312-11.312l11.312-11.312L344,172.688l11.312-11.312\r\n\t\tl11.312,11.312L355.312,184L366.625,195.312z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M344,144c-22.094,0-40,17.906-40,40s17.906,40,40,40s40-17.906,40-40S366.094,144,344,144z M366.625,195.312\r\n\t\tl-11.312,11.312L344,195.312l-11.312,11.312l-11.312-11.312L332.688,184l-11.312-11.312l11.312-11.312L344,172.688l11.312-11.312\r\n\t\tl11.312,11.312L355.312,184L366.625,195.312z" + }, + "children": [] + }] + }] + }] +}; +exports.emailClose = emailClose; \ No newline at end of file diff --git a/dist/metrize/emailDownload.js b/dist/metrize/emailDownload.js new file mode 100644 index 000000000..03639d417 --- /dev/null +++ b/dist/metrize/emailDownload.js @@ -0,0 +1,59 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.emailDownload = void 0; +var emailDownload = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M368,234.375v74.438l-54.5-59.422l16.719-11.312c-5.984-1.531-11.641-3.922-16.688-7.203L256,271.75L166.281,208H256\r\n\t\t\th37.625c-2.391-4.984-4-10.344-4.812-16H256H128v160h128h128V223.062C379.422,227.75,373.969,231.531,368,234.375z M144,212.531\r\n\t\t\tl54.5,36.859L144,308.812V212.531z M256,336h-92.406l45.562-79.422L256,288.25l46.844-31.672L348.406,336H256z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M368,234.375v74.438l-54.5-59.422l16.719-11.312c-5.984-1.531-11.641-3.922-16.688-7.203L256,271.75L166.281,208H256\r\n\t\t\th37.625c-2.391-4.984-4-10.344-4.812-16H256H128v160h128h128V223.062C379.422,227.75,373.969,231.531,368,234.375z M144,212.531\r\n\t\t\tl54.5,36.859L144,308.812V212.531z M256,336h-92.406l45.562-79.422L256,288.25l46.844-31.672L348.406,336H256z" + }, + "children": [] + }] + }] + }] + }, { + "name": "path", + "attribs": { + "d": "M344,144c-22.094,0-40,17.906-40,40s17.906,40,40,40s40-17.906,40-40S366.094,144,344,144z M344,214.406L324.797,192H336\r\n\t\tv-32h16v32h11.203L344,214.406z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M344,144c-22.094,0-40,17.906-40,40s17.906,40,40,40s40-17.906,40-40S366.094,144,344,144z M344,214.406L324.797,192H336\r\n\t\tv-32h16v32h11.203L344,214.406z" + }, + "children": [] + }] + }] + }] +}; +exports.emailDownload = emailDownload; \ No newline at end of file diff --git a/dist/metrize/emailLuminosity.js b/dist/metrize/emailLuminosity.js new file mode 100644 index 000000000..a0484875b --- /dev/null +++ b/dist/metrize/emailLuminosity.js @@ -0,0 +1,185 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.emailLuminosity = void 0; +var emailLuminosity = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "248", + "y": "144", + "width": "16", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "248", + "y": "144", + "width": "16", + "height": "32" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "248", + "y": "336", + "width": "16", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "248", + "y": "336", + "width": "16", + "height": "32" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "315.876", + "y": "172.127", + "transform": "matrix(0.7071 0.7071 -0.7071 0.7071 227.8853 -173.9137)", + "width": "15.998", + "height": "31.997" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "315.876", + "y": "172.127", + "transform": "matrix(0.7071 0.7071 -0.7071 0.7071 227.8853 -173.9137)", + "width": "15.998", + "height": "31.997" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "180.126", + "y": "307.877", + "transform": "matrix(-0.7071 -0.7071 0.7071 -0.7071 92.1353 685.9137)", + "width": "15.998", + "height": "31.997" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "180.126", + "y": "307.877", + "transform": "matrix(-0.7071 -0.7071 0.7071 -0.7071 92.1353 685.9137)", + "width": "15.998", + "height": "31.997" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "172.127", + "y": "180.126", + "transform": "matrix(0.7071 0.7071 -0.7071 0.7071 188.125 -77.9239)", + "width": "31.997", + "height": "15.998" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "172.127", + "y": "180.126", + "transform": "matrix(0.7071 0.7071 -0.7071 0.7071 188.125 -77.9239)", + "width": "31.997", + "height": "15.998" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "307.877", + "y": "315.876", + "transform": "matrix(-0.7071 -0.7071 0.7071 -0.7071 323.875 781.9034)", + "width": "31.997", + "height": "15.998" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "307.877", + "y": "315.876", + "transform": "matrix(-0.7071 -0.7071 0.7071 -0.7071 323.875 781.9034)", + "width": "31.997", + "height": "15.998" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "144", + "y": "248", + "width": "32", + "height": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "144", + "y": "248", + "width": "32", + "height": "16" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "336", + "y": "248", + "width": "32", + "height": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "336", + "y": "248", + "width": "32", + "height": "16" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,192c-35.297,0-64,28.719-64,64s28.703,64,64,64c35.281,0,64-28.719,64-64S291.281,192,256,192z M256,304v-96\r\n\t\tc26.469,0,48,21.531,48,48S282.469,304,256,304z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,192c-35.297,0-64,28.719-64,64s28.703,64,64,64c35.281,0,64-28.719,64-64S291.281,192,256,192z M256,304v-96\r\n\t\tc26.469,0,48,21.531,48,48S282.469,304,256,304z" + }, + "children": [] + }] + }] + }] +}; +exports.emailLuminosity = emailLuminosity; \ No newline at end of file diff --git a/dist/metrize/emailRemove.js b/dist/metrize/emailRemove.js new file mode 100644 index 000000000..ecc500e95 --- /dev/null +++ b/dist/metrize/emailRemove.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.emailRemove = void 0; +var emailRemove = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M368,234.375v74.438l-54.5-59.422l16.719-11.312c-5.984-1.531-11.641-3.922-16.688-7.203L256,271.75L166.281,208H256\r\n\t\t\th37.625c-2.391-16-4-16-4.812-16H256H128v160h128h128V223.062C379.422,227.75,373.969,231.531,368,234.375z M144,212.531\r\n\t\t\tl54.5,36.859L144,308.812V212.531z M256,336h-92.406l45.562-79.422L256,288.25l46.844-31.656L348.406,336H256z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M368,234.375v74.438l-54.5-59.422l16.719-11.312c-5.984-1.531-11.641-3.922-16.688-7.203L256,271.75L166.281,208H256\r\n\t\t\th37.625c-2.391-16-4-16-4.812-16H256H128v160h128h128V223.062C379.422,227.75,373.969,231.531,368,234.375z M144,212.531\r\n\t\t\tl54.5,36.859L144,308.812V212.531z M256,336h-92.406l45.562-79.422L256,288.25l46.844-31.656L348.406,336H256z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M344,144c-22.094,0-40,17.906-40,40s17.906,40,40,40s40-17.906,40-40S366.094,144,344,144z M368,192h-48v-16h48V192z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M344,144c-22.094,0-40,17.906-40,40s17.906,40,40,40s40-17.906,40-40S366.094,144,344,144z M368,192h-48v-16h48V192z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.emailRemove = emailRemove; \ No newline at end of file diff --git a/dist/metrize/emailSpam.js b/dist/metrize/emailSpam.js new file mode 100644 index 000000000..8551f9110 --- /dev/null +++ b/dist/metrize/emailSpam.js @@ -0,0 +1,59 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.emailSpam = void 0; +var emailSpam = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M368,234.375v74.438l-54.5-59.422l16.719-11.312c-5.984-1.531-11.641-3.922-16.688-7.203L256,271.75L166.281,208H256\r\n\t\t\th37.625c-2.391-4.984-4-10.344-4.812-16H256H128v160h128h128V223.062C379.422,227.75,373.969,231.531,368,234.375z M144,212.531\r\n\t\t\tl54.5,36.859L144,308.812V212.531z M256,336h-92.406l45.562-79.422L256,288.25l46.844-31.672L348.406,336H256z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M368,234.375v74.438l-54.5-59.422l16.719-11.312c-5.984-1.531-11.641-3.922-16.688-7.203L256,271.75L166.281,208H256\r\n\t\t\th37.625c-2.391-4.984-4-10.344-4.812-16H256H128v160h128h128V223.062C379.422,227.75,373.969,231.531,368,234.375z M144,212.531\r\n\t\t\tl54.5,36.859L144,308.812V212.531z M256,336h-92.406l45.562-79.422L256,288.25l46.844-31.672L348.406,336H256z" + }, + "children": [] + }] + }] + }] + }, { + "name": "path", + "attribs": { + "d": "M384,184c0-22.094-17.938-40-40-40s-40,17.906-40,40c0,22.062,17.938,40,40,40S384,206.062,384,184z M314,184\r\n\t\tc0-16.547,13.469-30,30-30c6.438,0,12.469,2.094,17.375,5.562l-41.781,41.812C316.078,196.469,314,190.438,314,184z\r\n\t\t M326.625,208.406l41.781-41.766C371.938,171.547,374,177.562,374,184c0,16.531-13.469,30-30,30\r\n\t\tC337.562,214,331.531,211.938,326.625,208.406z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M384,184c0-22.094-17.938-40-40-40s-40,17.906-40,40c0,22.062,17.938,40,40,40S384,206.062,384,184z M314,184\r\n\t\tc0-16.547,13.469-30,30-30c6.438,0,12.469,2.094,17.375,5.562l-41.781,41.812C316.078,196.469,314,190.438,314,184z\r\n\t\t M326.625,208.406l41.781-41.766C371.938,171.547,374,177.562,374,184c0,16.531-13.469,30-30,30\r\n\t\tC337.562,214,331.531,211.938,326.625,208.406z" + }, + "children": [] + }] + }] + }] +}; +exports.emailSpam = emailSpam; \ No newline at end of file diff --git a/dist/metrize/emailUpload.js b/dist/metrize/emailUpload.js new file mode 100644 index 000000000..cf725b816 --- /dev/null +++ b/dist/metrize/emailUpload.js @@ -0,0 +1,59 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.emailUpload = void 0; +var emailUpload = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M368,234.375v74.438l-54.5-59.422l16.719-11.312c-5.984-1.531-11.641-3.922-16.688-7.203L256,271.75L166.281,208H256\r\n\t\t\th37.625c-2.391-4.984-4-10.344-4.812-16H256H128v160h128h128V223.062C379.422,227.75,373.969,231.531,368,234.375z M144,212.531\r\n\t\t\tl54.5,36.859L144,308.812V212.531z M256,336h-92.406l45.562-79.422L256,288.25l46.844-31.672L348.406,336H256z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M368,234.375v74.438l-54.5-59.422l16.719-11.312c-5.984-1.531-11.641-3.922-16.688-7.203L256,271.75L166.281,208H256\r\n\t\t\th37.625c-2.391-4.984-4-10.344-4.812-16H256H128v160h128h128V223.062C379.422,227.75,373.969,231.531,368,234.375z M144,212.531\r\n\t\t\tl54.5,36.859L144,308.812V212.531z M256,336h-92.406l45.562-79.422L256,288.25l46.844-31.672L348.406,336H256z" + }, + "children": [] + }] + }] + }] + }, { + "name": "path", + "attribs": { + "d": "M344,224c22.094,0,40-17.906,40-40s-17.906-40-40-40s-40,17.906-40,40S321.906,224,344,224z M344,153.594L363.203,176H352\r\n\t\tv32h-16v-32h-11.203L344,153.594z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M344,224c22.094,0,40-17.906,40-40s-17.906-40-40-40s-40,17.906-40,40S321.906,224,344,224z M344,153.594L363.203,176H352\r\n\t\tv32h-16v-32h-11.203L344,153.594z" + }, + "children": [] + }] + }] + }] +}; +exports.emailUpload = emailUpload; \ No newline at end of file diff --git a/dist/metrize/euro.js b/dist/metrize/euro.js new file mode 100644 index 000000000..bf37559d6 --- /dev/null +++ b/dist/metrize/euro.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.euro = void 0; +var euro = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M277.719,384c-34.656,0-65.891-13.734-86.094-39.234c-12.188-14.109-20.562-33.172-24-56.375H143.25V264.75h21.344\r\n\t\tc0-1.906,0-3.781,0-5.719c0-4.938,0.375-9.891,0.75-14.078H143.25v-23.609h25.531c4.562-23.625,14.859-43.062,28.562-57.906\r\n\t\tC217.906,140.953,245.719,128,279.656,128c22.844,0,41.906,5.719,54.438,11.812l-9.5,35.047c-9.906-4.953-25.5-9.906-42.656-9.906\r\n\t\tc-19.062,0-35.812,6.859-48.406,20.953c-7.969,8.375-13.688,20.938-16.75,35.438h99.781v23.609H212.203\r\n\t\tc-0.766,4.188-0.766,8.766-0.766,13.719c0,2.297,0,3.812,0,6.078h105.125v23.641H215.625c2.688,15.984,8.391,28.578,16.375,36.953\r\n\t\tc12.969,14.094,31.25,20.578,51.062,20.578c18.656,0,36.188-6.484,44.969-11.047L336,368.781\r\n\t\tC323.438,376.375,302.125,384,277.719,384z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M277.719,384c-34.656,0-65.891-13.734-86.094-39.234c-12.188-14.109-20.562-33.172-24-56.375H143.25V264.75h21.344\r\n\t\tc0-1.906,0-3.781,0-5.719c0-4.938,0.375-9.891,0.75-14.078H143.25v-23.609h25.531c4.562-23.625,14.859-43.062,28.562-57.906\r\n\t\tC217.906,140.953,245.719,128,279.656,128c22.844,0,41.906,5.719,54.438,11.812l-9.5,35.047c-9.906-4.953-25.5-9.906-42.656-9.906\r\n\t\tc-19.062,0-35.812,6.859-48.406,20.953c-7.969,8.375-13.688,20.938-16.75,35.438h99.781v23.609H212.203\r\n\t\tc-0.766,4.188-0.766,8.766-0.766,13.719c0,2.297,0,3.812,0,6.078h105.125v23.641H215.625c2.688,15.984,8.391,28.578,16.375,36.953\r\n\t\tc12.969,14.094,31.25,20.578,51.062,20.578c18.656,0,36.188-6.484,44.969-11.047L336,368.781\r\n\t\tC323.438,376.375,302.125,384,277.719,384z" + }, + "children": [] + }] + }] + }] +}; +exports.euro = euro; \ No newline at end of file diff --git a/dist/metrize/exclamation.js b/dist/metrize/exclamation.js new file mode 100644 index 000000000..e393cb284 --- /dev/null +++ b/dist/metrize/exclamation.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.exclamation = void 0; +var exclamation = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "240,234.656 246.234,320 265.781,320 272,233.875 272,128 240,128 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "240,234.656 246.234,320 265.781,320 272,233.875 272,128 240,128 \t" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "240", + "y": "352", + "width": "32", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "240", + "y": "352", + "width": "32", + "height": "32" + }, + "children": [] + }] + }] + }] +}; +exports.exclamation = exclamation; \ No newline at end of file diff --git a/dist/metrize/expand.js b/dist/metrize/expand.js new file mode 100644 index 000000000..24238407a --- /dev/null +++ b/dist/metrize/expand.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.expand = void 0; +var expand = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.594,0,256c0,141.375,114.609,256,256,256s256-114.625,256-256C512,114.594,397.391,0,256,0z\r\n\t\t M256,472c-119.297,0-216-96.719-216-216c0-119.312,96.703-216,216-216s216,96.688,216,216C472,375.281,375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.594,0,256c0,141.375,114.609,256,256,256s256-114.625,256-256C512,114.594,397.391,0,256,0z\r\n\t\t M256,472c-119.297,0-216-96.719-216-216c0-119.312,96.703-216,216-216s216,96.688,216,216C472,375.281,375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "384,192.188 384,128 319.281,128 336.281,145 255.469,225.812 174.562,144.969 191.469,128 128,128 128,192.312 \r\n\t\t144.766,175.219 225.438,256 144.75,336.922 128,319.906 128,384 191.406,384 174.531,367.078 255.469,286.188 336.312,367 \r\n\t\t319.281,384 384,384 384,320 366.797,336.906 285.922,256 366.734,175.188 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "384,192.188 384,128 319.281,128 336.281,145 255.469,225.812 174.562,144.969 191.469,128 128,128 128,192.312 \r\n\t\t144.766,175.219 225.438,256 144.75,336.922 128,319.906 128,384 191.406,384 174.531,367.078 255.469,286.188 336.312,367 \r\n\t\t319.281,384 384,384 384,320 366.797,336.906 285.922,256 366.734,175.188 \t" + }, + "children": [] + }] + }] + }] +}; +exports.expand = expand; \ No newline at end of file diff --git a/dist/metrize/expandDirections.js b/dist/metrize/expandDirections.js new file mode 100644 index 000000000..ed132c6ed --- /dev/null +++ b/dist/metrize/expandDirections.js @@ -0,0 +1,93 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.expandDirections = void 0; +var expandDirections = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "192", + "y": "208", + "width": "128", + "height": "96" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "192", + "y": "208", + "width": "128", + "height": "96" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "176,288.016 176,224 144,256 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "176,288.016 176,224 144,256 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "336,288.016 368.016,256 336,224 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "336,288.016 368.016,256 336,224 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "256.016,160.016 224,192 288.016,192 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "256.016,160.016 224,192 288.016,192 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "255.984,351.984 288,320 223.984,320 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "255.984,351.984 288,320 223.984,320 \t" + }, + "children": [] + }] + }] + }] +}; +exports.expandDirections = expandDirections; \ No newline at end of file diff --git a/dist/metrize/expandHorizontal.js b/dist/metrize/expandHorizontal.js new file mode 100644 index 000000000..f79677bba --- /dev/null +++ b/dist/metrize/expandHorizontal.js @@ -0,0 +1,69 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.expandHorizontal = void 0; +var expandHorizontal = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "192", + "y": "208", + "width": "128", + "height": "96" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "192", + "y": "208", + "width": "128", + "height": "96" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "176,288.016 176,224 144,256 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "176,288.016 176,224 144,256 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "336,288.016 368.016,256 336,224 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "336,288.016 368.016,256 336,224 \t" + }, + "children": [] + }] + }] + }] +}; +exports.expandHorizontal = expandHorizontal; \ No newline at end of file diff --git a/dist/metrize/expandVertical.js b/dist/metrize/expandVertical.js new file mode 100644 index 000000000..8dbd950ac --- /dev/null +++ b/dist/metrize/expandVertical.js @@ -0,0 +1,69 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.expandVertical = void 0; +var expandVertical = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "192", + "y": "208", + "width": "128", + "height": "96" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "192", + "y": "208", + "width": "128", + "height": "96" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "256,160 224,192 288,192 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "256,160 224,192 288,192 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "256,352.031 288,320 224,320 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "256,352.031 288,320 224,320 \t" + }, + "children": [] + }] + }] + }] +}; +exports.expandVertical = expandVertical; \ No newline at end of file diff --git a/dist/metrize/eye.js b/dist/metrize/eye.js new file mode 100644 index 000000000..a9590652f --- /dev/null +++ b/dist/metrize/eye.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.eye = void 0; +var eye = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,192c-70.688,0-112,64-112,64s41.312,64,112,64s112-64,112-64S326.688,192,256,192z M256,287.75\r\n\t\tc-17.672,0-32-14.219-32-31.75s14.328-31.75,32-31.75s31.984,14.219,31.984,31.75S273.672,287.75,256,287.75z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,192c-70.688,0-112,64-112,64s41.312,64,112,64s112-64,112-64S326.688,192,256,192z M256,287.75\r\n\t\tc-17.672,0-32-14.219-32-31.75s14.328-31.75,32-31.75s31.984,14.219,31.984,31.75S273.672,287.75,256,287.75z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }] + }] +}; +exports.eye = eye; \ No newline at end of file diff --git a/dist/metrize/eyeDisabled.js b/dist/metrize/eyeDisabled.js new file mode 100644 index 000000000..acabf9950 --- /dev/null +++ b/dist/metrize/eyeDisabled.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.eyeDisabled = void 0; +var eyeDisabled = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M335.578,221.688l-96.859,96.875C244.297,319.406,250,320,256,320c70.688,0,112-64,112-64S356.547,238.438,335.578,221.688\r\n\t\tz" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M335.578,221.688l-96.859,96.875C244.297,319.406,250,320,256,320c70.688,0,112-64,112-64S356.547,238.438,335.578,221.688\r\n\t\tz" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M176.453,290.328l96.859-96.875C267.734,192.609,262,192,256,192c-70.688,0-112,64-112,64S155.453,273.594,176.453,290.328\r\n\t\tz" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M176.453,290.328l96.859-96.875C267.734,192.609,262,192,256,192c-70.688,0-112,64-112,64S155.453,273.594,176.453,290.328\r\n\t\tz" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "144,344 166.406,368 368,166.398 345.594,144 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "144,344 166.406,368 368,166.398 345.594,144 \t" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }] + }] +}; +exports.eyeDisabled = eyeDisabled; \ No newline at end of file diff --git a/dist/metrize/femaleSymbol.js b/dist/metrize/femaleSymbol.js new file mode 100644 index 000000000..6b570370f --- /dev/null +++ b/dist/metrize/femaleSymbol.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.femaleSymbol = void 0; +var femaleSymbol = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "cx": "256", + "cy": "160", + "r": "32" + }, + "children": [{ + "name": "circle", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "cx": "256", + "cy": "160", + "r": "32" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "304,208 208,208 208,272 224,272 208,368 240,368 240,384 271.75,384 \r\n\t\t272,368 304,368 288,272 304,272 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "304,208 208,208 208,272 224,272 208,368 240,368 240,384 271.75,384 \r\n\t\t272,368 304,368 288,272 304,272 \t" + }, + "children": [] + }] + }] + }] +}; +exports.femaleSymbol = femaleSymbol; \ No newline at end of file diff --git a/dist/metrize/fire.js b/dist/metrize/fire.js new file mode 100644 index 000000000..e74e75974 --- /dev/null +++ b/dist/metrize/fire.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.fire = void 0; +var fire = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M230.839,128c0,0,95.484,64,84.266,152c0,0,32.047-8,23.438-60.938c0,0,46.234,44.609,45.453,84.938\r\n\tc-0.641,32.766-41.641,80-118.75,80c0,0,69.531-62.188-22.344-140.875c0,0-84.984,83.844-28.906,140.875\r\n\tc0,0-113.078-28.766-79.906-100.797C167.261,211.156,239.823,204.797,230.839,128z" + }, + "children": [] + }] +}; +exports.fire = fire; \ No newline at end of file diff --git a/dist/metrize/forward.js b/dist/metrize/forward.js new file mode 100644 index 000000000..05f0595dd --- /dev/null +++ b/dist/metrize/forward.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.forward = void 0; +var forward = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "176,336 272,256 176,176 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "176,336 272,256 176,176 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "272,256 272,336 368,256 272,176 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "272,256 272,336 368,256 272,176 \t" + }, + "children": [] + }] + }] + }] +}; +exports.forward = forward; \ No newline at end of file diff --git a/dist/metrize/graphs.js b/dist/metrize/graphs.js new file mode 100644 index 000000000..0ac763262 --- /dev/null +++ b/dist/metrize/graphs.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.graphs = void 0; +var graphs = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M352,128c-17.625,0-32,14.344-32,32c0,11.938,6.641,22.25,16.375,27.75L306,288.188c-0.656-0.047-1.312-0.188-2-0.188\r\n\tc-5.391,0-10.406,1.469-14.875,3.859l-35.781-39.172C255.031,248.781,256,244.5,256,240c0-17.656-14.344-32-32-32s-32,14.344-32,32\r\n\tc0,8.672,3.5,16.516,9.109,22.281l-33.859,58.609C164.906,320.375,162.5,320,160,320c-17.656,0-32,14.375-32,32s14.344,32,32,32\r\n\ts32-14.375,32-32c0-9.375-4.125-17.75-10.594-23.625l33.438-57.875c2.906,0.875,5.969,1.5,9.156,1.5\r\n\tc7.266,0,13.891-2.531,19.266-6.625l33.953,37.203C273.938,307.609,272,313.562,272,320c0,17.625,14.359,32,32,32\r\n\tc17.625,0,32-14.375,32-32c0-11.312-5.906-21.188-14.781-26.875l30.562-101.156c0.078,0,0.125,0.031,0.219,0.031\r\n\tc17.625,0,32-14.344,32-32S369.625,128,352,128z M160,368c-8.844,0-16-7.141-16-16s7.156-16,16-16s16,7.141,16,16\r\n\tS168.844,368,160,368z M224,256c-8.844,0-16-7.156-16-16s7.156-16,16-16s16,7.156,16,16S232.844,256,224,256z M304,336\r\n\tc-8.859,0-16-7.141-16-16s7.141-16,16-16s16,7.141,16,16S312.859,336,304,336z M352,176c-8.859,0-16-7.156-16-16s7.141-16,16-16\r\n\ts16,7.156,16,16S360.859,176,352,176z" + }, + "children": [] + }] +}; +exports.graphs = graphs; \ No newline at end of file diff --git a/dist/metrize/gridBig.js b/dist/metrize/gridBig.js new file mode 100644 index 000000000..d74e5bc7c --- /dev/null +++ b/dist/metrize/gridBig.js @@ -0,0 +1,123 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.gridBig = void 0; +var gridBig = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "128", + "y": "128", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "112", + "height": "112" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "128", + "y": "128", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "112", + "height": "112" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "128", + "y": "272", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "112", + "height": "112" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "128", + "y": "272", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "112", + "height": "112" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "272", + "y": "128", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "112", + "height": "112" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "272", + "y": "128", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "112", + "height": "112" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "272", + "y": "272", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "112", + "height": "112" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "272", + "y": "272", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "112", + "height": "112" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.gridBig = gridBig; \ No newline at end of file diff --git a/dist/metrize/grids.js b/dist/metrize/grids.js new file mode 100644 index 000000000..88887b4fd --- /dev/null +++ b/dist/metrize/grids.js @@ -0,0 +1,219 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.grids = void 0; +var grids = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "144", + "y": "144", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "64", + "height": "64" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "144", + "y": "144", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "64", + "height": "64" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "224", + "y": "144", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "64", + "height": "64" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "224", + "y": "144", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "64", + "height": "64" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "304", + "y": "144", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "64", + "height": "64" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "304", + "y": "144", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "64", + "height": "64" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "304", + "y": "224", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "64", + "height": "64" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "304", + "y": "224", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "64", + "height": "64" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "304", + "y": "304", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "64", + "height": "64" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "304", + "y": "304", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "64", + "height": "64" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "224", + "y": "304", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "64", + "height": "64" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "224", + "y": "304", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "64", + "height": "64" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "144", + "y": "304", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "64", + "height": "64" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "144", + "y": "304", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "64", + "height": "64" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "144", + "y": "224", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "64", + "height": "64" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "144", + "y": "224", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "64", + "height": "64" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "224", + "y": "224", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "64", + "height": "64" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "224", + "y": "224", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "64", + "height": "64" + }, + "children": [] + }] + }] + }] +}; +exports.grids = grids; \ No newline at end of file diff --git a/dist/metrize/hdd.js b/dist/metrize/hdd.js new file mode 100644 index 000000000..456459e76 --- /dev/null +++ b/dist/metrize/hdd.js @@ -0,0 +1,71 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.hdd = void 0; +var hdd = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\t\tS397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\t\tS397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M367.219,280.047l-12.594-128.078c-0.422-4.391-4.375-7.969-8.781-7.969h-176.25\r\n\t\t\tc-4.406,0-8.438,3.578-8.969,7.938l-15.656,128.141c-0.531,4.359-0.969,11.531-0.969,15.938V360c0,4.406,3.594,8,8,8h208\r\n\t\t\tc4.406,0,8-3.594,8-8v-63.984C368,291.609,367.641,284.438,367.219,280.047z M352,344c0,4.406-3.594,8-8,8H168\r\n\t\t\tc-4.406,0-8-3.594-8-8v-32c0-4.406,3.594-8,8-8h176c4.406,0,8,3.594,8,8V344z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M367.219,280.047l-12.594-128.078c-0.422-4.391-4.375-7.969-8.781-7.969h-176.25\r\n\t\t\tc-4.406,0-8.438,3.578-8.969,7.938l-15.656,128.141c-0.531,4.359-0.969,11.531-0.969,15.938V360c0,4.406,3.594,8,8,8h208\r\n\t\t\tc4.406,0,8-3.594,8-8v-63.984C368,291.609,367.641,284.438,367.219,280.047z M352,344c0,4.406-3.594,8-8,8H168\r\n\t\t\tc-4.406,0-8-3.594-8-8v-32c0-4.406,3.594-8,8-8h176c4.406,0,8,3.594,8,8V344z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M329.594,320h-144c-4.406,0-8,3.594-8,8.016c0,4.438,3.594,7.984,8,7.984h144\r\n\t\t\tc4.438,0,7.984-3.547,7.984-7.984C337.578,323.594,334.031,320,329.594,320z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M329.594,320h-144c-4.406,0-8,3.594-8,8.016c0,4.438,3.594,7.984,8,7.984h144\r\n\t\t\tc4.438,0,7.984-3.547,7.984-7.984C337.578,323.594,334.031,320,329.594,320z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.hdd = hdd; \ No newline at end of file diff --git a/dist/metrize/hddNet.js b/dist/metrize/hddNet.js new file mode 100644 index 000000000..b1e383478 --- /dev/null +++ b/dist/metrize/hddNet.js @@ -0,0 +1,81 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.hddNet = void 0; +var hddNet = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256c0,141.391,114.609,256,256,256c141.391,0,256-114.609,256-256\r\n\tC512,114.609,397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M364.422,182.844l-24.844-49.688C337.609,129.219,332.406,126,328,126H184c-4.398,0-9.609,3.219-11.578,7.156\r\n\t\tl-24.844,49.688C145.609,186.781,144,193.594,144,198v32c0,4.406,3.602,8,8,8h208c4.406,0,8-3.594,8-8v-32\r\n\t\tC368,193.594,366.391,186.781,364.422,182.844z M168,222c-4.398,0-8-3.594-8-8s3.602-8,8-8s8,3.594,8,8S172.398,222,168,222z\r\n\t\t M200,222c-4.398,0-8-3.594-8-8s3.602-8,8-8s8,3.594,8,8S204.398,222,200,222z M232,222c-4.398,0-8-3.594-8-8s3.602-8,8-8\r\n\t\ts8,3.594,8,8S236.398,222,232,222z M344,222c-4.406,0-8-3.594-8-8s3.594-8,8-8s8,3.594,8,8S348.406,222,344,222z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M364.422,182.844l-24.844-49.688C337.609,129.219,332.406,126,328,126H184c-4.398,0-9.609,3.219-11.578,7.156\r\n\t\tl-24.844,49.688C145.609,186.781,144,193.594,144,198v32c0,4.406,3.602,8,8,8h208c4.406,0,8-3.594,8-8v-32\r\n\t\tC368,193.594,366.391,186.781,364.422,182.844z M168,222c-4.398,0-8-3.594-8-8s3.602-8,8-8s8,3.594,8,8S172.398,222,168,222z\r\n\t\t M200,222c-4.398,0-8-3.594-8-8s3.602-8,8-8s8,3.594,8,8S204.398,222,200,222z M232,222c-4.398,0-8-3.594-8-8s3.602-8,8-8\r\n\t\ts8,3.594,8,8S236.398,222,232,222z M344,222c-4.406,0-8-3.594-8-8s3.594-8,8-8s8,3.594,8,8S348.406,222,344,222z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M360,254H152c-4.398,0-8,3.594-8,8v32c0,4.406,3.602,8,8,8h64c4.398,0,11.602,0,16,0c2.203,0,5.102,0,8,0v48h-64v32h64h32\r\n\t\th64v-32h-64v-48c2.906,0,5.797,0,8,0c4.406,0,11.594,0,16,0h64c4.406,0,8-3.594,8-8v-32C368,257.594,364.406,254,360,254z M168,286\r\n\t\tc-4.398,0-8-3.594-8-8s3.602-8,8-8s8,3.594,8,8S172.398,286,168,286z M200,286c-4.398,0-8-3.594-8-8s3.602-8,8-8s8,3.594,8,8\r\n\t\tS204.398,286,200,286z M232,286c-4.398,0-8-3.594-8-8s3.602-8,8-8s8,3.594,8,8S236.398,286,232,286z M344,286c-4.406,0-8-3.594-8-8\r\n\t\ts3.594-8,8-8s8,3.594,8,8S348.406,286,344,286z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M360,254H152c-4.398,0-8,3.594-8,8v32c0,4.406,3.602,8,8,8h64c4.398,0,11.602,0,16,0c2.203,0,5.102,0,8,0v48h-64v32h64h32\r\n\t\th64v-32h-64v-48c2.906,0,5.797,0,8,0c4.406,0,11.594,0,16,0h64c4.406,0,8-3.594,8-8v-32C368,257.594,364.406,254,360,254z M168,286\r\n\t\tc-4.398,0-8-3.594-8-8s3.602-8,8-8s8,3.594,8,8S172.398,286,168,286z M200,286c-4.398,0-8-3.594-8-8s3.602-8,8-8s8,3.594,8,8\r\n\t\tS204.398,286,200,286z M232,286c-4.398,0-8-3.594-8-8s3.602-8,8-8s8,3.594,8,8S236.398,286,232,286z M344,286c-4.406,0-8-3.594-8-8\r\n\t\ts3.594-8,8-8s8,3.594,8,8S348.406,286,344,286z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "144", + "y": "350", + "width": "16", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "144", + "y": "350", + "width": "16", + "height": "32" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "352", + "y": "350", + "width": "16", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "352", + "y": "350", + "width": "16", + "height": "32" + }, + "children": [] + }] + }] + }] +}; +exports.hddNet = hddNet; \ No newline at end of file diff --git a/dist/metrize/hddRaid.js b/dist/metrize/hddRaid.js new file mode 100644 index 000000000..3216c9f76 --- /dev/null +++ b/dist/metrize/hddRaid.js @@ -0,0 +1,93 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.hddRaid = void 0; +var hddRaid = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M338.969,135.438C337.344,131.344,332.406,128,328,128H184\r\n\t\t\tc-4.398,0-9.336,3.344-10.969,7.438l-26.062,65.125C145.336,204.656,144,211.594,144,216v32c0,4.406,3.602,8,8,8h208\r\n\t\t\tc4.406,0,8-3.594,8-8v-32c0-4.406-1.344-11.344-2.969-15.438L338.969,135.438z M176,232c0,4.406-3.602,8-8,8l0,0\r\n\t\t\tc-4.398,0-8-3.594-8-8l0,0c0-4.406,3.602-8,8-8l0,0C172.398,224,176,227.594,176,232L176,232z M208,232c0,4.406-3.602,8-8,8l0,0\r\n\t\t\tc-4.398,0-8-3.594-8-8l0,0c0-4.406,3.602-8,8-8l0,0C204.398,224,208,227.594,208,232L208,232z M240,232c0,4.406-3.602,8-8,8l0,0\r\n\t\t\tc-4.398,0-8-3.594-8-8l0,0c0-4.406,3.602-8,8-8l0,0C236.398,224,240,227.594,240,232L240,232z M352,232c0,4.406-3.594,8-8,8l0,0\r\n\t\t\tc-4.406,0-8-3.594-8-8l0,0c0-4.406,3.594-8,8-8l0,0C348.406,224,352,227.594,352,232L352,232z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M338.969,135.438C337.344,131.344,332.406,128,328,128H184\r\n\t\t\tc-4.398,0-9.336,3.344-10.969,7.438l-26.062,65.125C145.336,204.656,144,211.594,144,216v32c0,4.406,3.602,8,8,8h208\r\n\t\t\tc4.406,0,8-3.594,8-8v-32c0-4.406-1.344-11.344-2.969-15.438L338.969,135.438z M176,232c0,4.406-3.602,8-8,8l0,0\r\n\t\t\tc-4.398,0-8-3.594-8-8l0,0c0-4.406,3.602-8,8-8l0,0C172.398,224,176,227.594,176,232L176,232z M208,232c0,4.406-3.602,8-8,8l0,0\r\n\t\t\tc-4.398,0-8-3.594-8-8l0,0c0-4.406,3.602-8,8-8l0,0C204.398,224,208,227.594,208,232L208,232z M240,232c0,4.406-3.602,8-8,8l0,0\r\n\t\t\tc-4.398,0-8-3.594-8-8l0,0c0-4.406,3.602-8,8-8l0,0C236.398,224,240,227.594,240,232L240,232z M352,232c0,4.406-3.594,8-8,8l0,0\r\n\t\t\tc-4.406,0-8-3.594-8-8l0,0c0-4.406,3.594-8,8-8l0,0C348.406,224,352,227.594,352,232L352,232z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M144,312c0,4.406,3.602,8,8,8h208c4.406,0,8-3.594,8-8v-32c0-4.406-3.594-8-8-8\r\n\t\t\tH152c-4.398,0-8,3.594-8,8V312z M336,296c0-4.406,3.594-8,8-8l0,0c4.406,0,8,3.594,8,8l0,0c0,4.406-3.594,8-8,8l0,0\r\n\t\t\tC339.594,304,336,300.406,336,296L336,296z M224,296c0-4.406,3.602-8,8-8l0,0c4.398,0,8,3.594,8,8l0,0c0,4.406-3.602,8-8,8l0,0\r\n\t\t\tC227.602,304,224,300.406,224,296L224,296z M192,296c0-4.406,3.602-8,8-8l0,0c4.398,0,8,3.594,8,8l0,0c0,4.406-3.602,8-8,8l0,0\r\n\t\t\tC195.602,304,192,300.406,192,296L192,296z M160,296c0-4.406,3.602-8,8-8l0,0c4.398,0,8,3.594,8,8l0,0c0,4.406-3.602,8-8,8l0,0\r\n\t\t\tC163.602,304,160,300.406,160,296L160,296z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M144,312c0,4.406,3.602,8,8,8h208c4.406,0,8-3.594,8-8v-32c0-4.406-3.594-8-8-8\r\n\t\t\tH152c-4.398,0-8,3.594-8,8V312z M336,296c0-4.406,3.594-8,8-8l0,0c4.406,0,8,3.594,8,8l0,0c0,4.406-3.594,8-8,8l0,0\r\n\t\t\tC339.594,304,336,300.406,336,296L336,296z M224,296c0-4.406,3.602-8,8-8l0,0c4.398,0,8,3.594,8,8l0,0c0,4.406-3.602,8-8,8l0,0\r\n\t\t\tC227.602,304,224,300.406,224,296L224,296z M192,296c0-4.406,3.602-8,8-8l0,0c4.398,0,8,3.594,8,8l0,0c0,4.406-3.602,8-8,8l0,0\r\n\t\t\tC195.602,304,192,300.406,192,296L192,296z M160,296c0-4.406,3.602-8,8-8l0,0c4.398,0,8,3.594,8,8l0,0c0,4.406-3.602,8-8,8l0,0\r\n\t\t\tC163.602,304,160,300.406,160,296L160,296z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M144,376c0,4.406,3.602,8,8,8h208c4.406,0,8-3.594,8-8v-32c0-4.406-3.594-8-8-8\r\n\t\t\tH152c-4.398,0-8,3.594-8,8V376z M336,360c0-4.406,3.594-8,8-8l0,0c4.406,0,8,3.594,8,8l0,0c0,4.406-3.594,8-8,8l0,0\r\n\t\t\tC339.594,368,336,364.406,336,360L336,360z M224,360c0-4.406,3.602-8,8-8l0,0c4.398,0,8,3.594,8,8l0,0c0,4.406-3.602,8-8,8l0,0\r\n\t\t\tC227.602,368,224,364.406,224,360L224,360z M192,360c0-4.406,3.602-8,8-8l0,0c4.398,0,8,3.594,8,8l0,0c0,4.406-3.602,8-8,8l0,0\r\n\t\t\tC195.602,368,192,364.406,192,360L192,360z M160,360c0-4.406,3.602-8,8-8l0,0c4.398,0,8,3.594,8,8l0,0c0,4.406-3.602,8-8,8l0,0\r\n\t\t\tC163.602,368,160,364.406,160,360L160,360z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M144,376c0,4.406,3.602,8,8,8h208c4.406,0,8-3.594,8-8v-32c0-4.406-3.594-8-8-8\r\n\t\t\tH152c-4.398,0-8,3.594-8,8V376z M336,360c0-4.406,3.594-8,8-8l0,0c4.406,0,8,3.594,8,8l0,0c0,4.406-3.594,8-8,8l0,0\r\n\t\t\tC339.594,368,336,364.406,336,360L336,360z M224,360c0-4.406,3.602-8,8-8l0,0c4.398,0,8,3.594,8,8l0,0c0,4.406-3.602,8-8,8l0,0\r\n\t\t\tC227.602,368,224,364.406,224,360L224,360z M192,360c0-4.406,3.602-8,8-8l0,0c4.398,0,8,3.594,8,8l0,0c0,4.406-3.602,8-8,8l0,0\r\n\t\t\tC195.602,368,192,364.406,192,360L192,360z M160,360c0-4.406,3.602-8,8-8l0,0c4.398,0,8,3.594,8,8l0,0c0,4.406-3.602,8-8,8l0,0\r\n\t\t\tC163.602,368,160,364.406,160,360L160,360z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.hddRaid = hddRaid; \ No newline at end of file diff --git a/dist/metrize/heart.js b/dist/metrize/heart.js new file mode 100644 index 000000000..5f1547337 --- /dev/null +++ b/dist/metrize/heart.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.heart = void 0; +var heart = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M310.75,144c-21.875,0-41.375,10.078-54.75,25.766C242.5,154.078,223,144,201.125,144C160.75,144,128,177.422,128,218.625\r\n\t\tC128,312,256,368,256,368s128-56,128-149.375C384,177.422,351.25,144,310.75,144z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M310.75,144c-21.875,0-41.375,10.078-54.75,25.766C242.5,154.078,223,144,201.125,144C160.75,144,128,177.422,128,218.625\r\n\t\tC128,312,256,368,256,368s128-56,128-149.375C384,177.422,351.25,144,310.75,144z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }] + }] +}; +exports.heart = heart; \ No newline at end of file diff --git a/dist/metrize/homeWifi.js b/dist/metrize/homeWifi.js new file mode 100644 index 000000000..c29eda7cb --- /dev/null +++ b/dist/metrize/homeWifi.js @@ -0,0 +1,81 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.homeWifi = void 0; +var homeWifi = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256.008,224c-17.672,0-32,14.312-32,32c0,17.672,14.328,32,32,32C273.672,288,288,273.672,288,256\r\n\t\tC288,238.312,273.672,224,256.008,224z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256.008,224c-17.672,0-32,14.312-32,32c0,17.672,14.328,32,32,32C273.672,288,288,273.672,288,256\r\n\t\tC288,238.312,273.672,224,256.008,224z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M304.875,202.688l-18.016,13.531C299.609,224.844,308,239.438,308,256s-8.391,31.141-21.141,39.766l18.016,13.531\r\n\t\tC320.094,296.453,330,277.453,330,256C330,234.531,320.094,215.531,304.875,202.688z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M304.875,202.688l-18.016,13.531C299.609,224.844,308,239.438,308,256s-8.391,31.141-21.141,39.766l18.016,13.531\r\n\t\tC320.094,296.453,330,277.453,330,256C330,234.531,320.094,215.531,304.875,202.688z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M348.844,169.594l-17.75,13.344C350.125,201.469,362,227.344,362,256s-11.875,54.531-30.906,73.047l17.75,13.359\r\n\t\tC370.562,320.047,384,289.625,384,256S370.562,191.938,348.844,169.594z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M348.844,169.594l-17.75,13.344C350.125,201.469,362,227.344,362,256s-11.875,54.531-30.906,73.047l17.75,13.359\r\n\t\tC370.562,320.047,384,289.625,384,256S370.562,191.938,348.844,169.594z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M204.008,256.531c0.219-16.562,8.781-31.062,21.656-39.516L207.82,203.25c-15.375,12.656-25.531,31.516-25.812,53\r\n\t\tc-0.281,21.469,9.375,40.578,24.438,53.625l18.188-13.297C211.992,287.812,203.789,273.094,204.008,256.531z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M204.008,256.531c0.219-16.562,8.781-31.062,21.656-39.516L207.82,203.25c-15.375,12.656-25.531,31.516-25.812,53\r\n\t\tc-0.281,21.469,9.375,40.578,24.438,53.625l18.188-13.297C211.992,287.812,203.789,273.094,204.008,256.531z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M181.867,183.156l-17.578-13.562c-22,22.062-35.844,52.312-36.281,85.938c-0.438,33.641,12.625,64.234,34.031,86.875\r\n\t\tl17.938-13.125c-18.812-18.781-30.344-44.797-29.969-73.453C150.383,227.156,162.602,201.438,181.867,183.156z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M181.867,183.156l-17.578-13.562c-22,22.062-35.844,52.312-36.281,85.938c-0.438,33.641,12.625,64.234,34.031,86.875\r\n\t\tl17.938-13.125c-18.812-18.781-30.344-44.797-29.969-73.453C150.383,227.156,162.602,201.438,181.867,183.156z" + }, + "children": [] + }] + }] + }] +}; +exports.homeWifi = homeWifi; \ No newline at end of file diff --git a/dist/metrize/idea.js b/dist/metrize/idea.js new file mode 100644 index 000000000..f253575af --- /dev/null +++ b/dist/metrize/idea.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.idea = void 0; +var idea = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,384c17.672,0,32-14.328,32-32h-64C224,369.672,238.328,384,256,384z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,384c17.672,0,32-14.328,32-32h-64C224,369.672,238.328,384,256,384z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,128c-53.016,0-96,42.984-96,96c0,37.781,21.875,70.375,53.625,86.031L224,336h64l10.375-25.969\r\n\t\tC330.109,294.375,352,261.781,352,224C352,170.984,309.016,128,256,128z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,128c-53.016,0-96,42.984-96,96c0,37.781,21.875,70.375,53.625,86.031L224,336h64l10.375-25.969\r\n\t\tC330.109,294.375,352,261.781,352,224C352,170.984,309.016,128,256,128z" + }, + "children": [] + }] + }] + }] +}; +exports.idea = idea; \ No newline at end of file diff --git a/dist/metrize/index.js b/dist/metrize/index.js new file mode 100644 index 000000000..f705ca23c --- /dev/null +++ b/dist/metrize/index.js @@ -0,0 +1 @@ +"use strict";Object.defineProperty(exports,"__esModule",{value:true});exports.dotSquare=exports.dotLine=exports.dotCircle=exports.dollar=exports.documents=exports.documentIcon=exports.documentFill=exports.directions=exports.cross=exports.creditCard=exports.copyPasteDocument=exports.copyDocument=exports.contractVertical=exports.contractHorizontal=exports.contractDirections=exports.compass2=exports.compass=exports.comments=exports.comment=exports.coins=exports.cloudUpload=exports.cloudRemove=exports.cloudDownload=exports.cloudAdd=exports.cloud=exports.clock=exports.circles=exports.check=exports.chat=exports.chartDown=exports.cdDvdRom=exports.camera=exports.buttonQuestion=exports.buttonMinus=exports.buttonExclamation=exports.buttonEmail=exports.buttonClose=exports.buttonCheck=exports.buttonAdd=exports.brush=exports.browserSizes=exports.boxRemove=exports.boxClose=exports.boxBlank=exports.boxAdd=exports.bolt=exports.blockMenu=exports.blank=exports.bezier=exports.bars=exports.banCircle=exports.bag=exports.backward=exports.axisRules=exports.atom=exports.arrowUpThin=exports.arrowUpLight=exports.arrowUpBoldRound=exports.arrowUpBold=exports.arrowUpBig=exports.arrowUp=exports.arrowRightThin=exports.arrowRightLight=exports.arrowRightBoldRound=exports.arrowRightBold=exports.arrowRightBig=exports.arrowRight=exports.arrowObliqueExpandDirections=exports.arrowObliqueExpand=exports.arrowObliqueContractDirections=exports.arrowObliqueContract=exports.arrowMultiLineUp=exports.arrowMultiLineRight=exports.arrowMultiLineLeft=exports.arrowMultiLineDown=exports.arrowLeftThin=exports.arrowLeftLight=exports.arrowLeftBoldRound=exports.arrowLeftBold=exports.arrowLeftBig=exports.arrowLeft=exports.arrowFillUp=exports.arrowFillRight=exports.arrowFillLeft=exports.arrowFillDown=exports.arrowDownThin=exports.arrowDownLight=exports.arrowDownBoldRound=exports.arrowDownBold=exports.arrowDownBig=exports.arrowDown=exports.arrowCycling=exports.arrowCycle=exports.arrowCurveRight=exports.arrowCurveRecycle=exports.arrowCurveLeft=exports.animalFootprint=exports.alarmClock=exports.airPlane=exports.adjust=void 0;exports.random=exports.quote=exports.question=exports.previousFastStep=exports.prevStep=exports.pounds=exports.podcast=exports.plus=exports.play=exports.pinMap=exports.pin=exports.pigMoney=exports.pause=exports.paperclipOblique=exports.paperclip=exports.optionsSettings=exports.officine2=exports.officine=exports.off=exports.numberZero=exports.numberTwo=exports.numberThree=exports.numberSix=exports.numberSeven=exports.numberOne=exports.numberNine=exports.numberFour=exports.numberFive=exports.numberEight=exports.nextStep=exports.nextFastStep=exports.music=exports.multiBorders=exports.minus=exports.markerPoints=exports.markerMinus=exports.markerAdd=exports.marker=exports.map=exports.maleSymbol=exports.mailbox=exports.mail=exports.magnet=exports.magicWand=exports.loginLockRefresh=exports.locked=exports.locationMaps=exports.location=exports.listSquare=exports.listCircle=exports.linkUrl=exports.lineThrough=exports.limitDirections=exports.likeUpload=exports.likeRemove=exports.likeDownload=exports.likeClose=exports.likeBan=exports.likeAdd=exports.leftRight=exports.leaf=exports.layers=exports.landscape=exports.key=exports.italic=exports.info=exports.idea=exports.homeWifi=exports.heart=exports.hddRaid=exports.hddNet=exports.hdd=exports.grids=exports.gridBig=exports.graphs=exports.forward=exports.fire=exports.femaleSymbol=exports.eyeDisabled=exports.eye=exports.expandVertical=exports.expandHorizontal=exports.expandDirections=exports.expand=exports.exclamation=exports.euro=exports.emailUpload=exports.emailSpam=exports.emailRemove=exports.emailLuminosity=exports.emailDownload=exports.emailClose=exports.emailAdd=exports.eject=exports.drops=exports.drop=exports.downloadSelectionCircle=exports.downloadSelection=exports.download=exports.doubleDiamonds=void 0;exports.yen=exports.world=exports.wireframeGlobe=exports.wind=exports.wifi=exports.waves=exports.viewportVideo=exports.viewport=exports.userRemove=exports.userBan=exports.userAdd=exports.user=exports.uploadSelectionCircle=exports.uploadSelection=exports.upload=exports.underline=exports.triplePoints=exports.topBottom=exports.threePointsTop=exports.threePointsBottom=exports.threePoints=exports.threeDCube=exports.textWidth=exports.textSizeUpper=exports.textSizeReduce=exports.textParagraph=exports.textNormal=exports.textJustifyRight=exports.textJustifyLeft=exports.textJustifyCenter=exports.textHeight=exports.textCenter=exports.textBold=exports.textAlignRight=exports.textAlignLeft=exports.telephone=exports.sunshine=exports.sun=exports.stop=exports.star=exports.speed=exports.soundOn=exports.soundOff=exports.sos=exports.socialZerply=exports.socialYoutube=exports.socialYelp=exports.socialYahoo=exports.socialWordpress=exports.socialVirb=exports.socialVimeo=exports.socialViddler=exports.socialTwitter=exports.socialTumblr=exports.socialStumbleupon=exports.socialSoundcloud=exports.socialSkype=exports.socialSharethis=exports.socialQuora=exports.socialPinterest=exports.socialPhotobucket=exports.socialPaypal=exports.socialMyspace=exports.socialLinkedin=exports.socialLastFm=exports.socialGrooveshark=exports.socialGooglePlus=exports.socialGithub=exports.socialForrst=exports.socialFlickr=exports.socialFacebook=exports.socialEvernote=exports.socialEnvato=exports.socialEmail=exports.socialDribbble=exports.socialDigg=exports.socialDeviantart=exports.socialBlogger=exports.socialBehance=exports.socialBebo=exports.socialAddthis=exports.social500px=exports.snow=exports.slidersVertical=exports.sliders=exports.signMale=exports.signFemale=exports.shield=exports.settings=exports.setting=exports.selectSquare=exports.selectCircle=exports.search=exports.scale=exports.rules=exports.rss=exports.retweet=exports.reportComment=exports.refresh=exports.rec=void 0;var threeDCube={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"path","attribs":{"d":"M367.766,223.875l-0.109-32.141l-14.031-8L255.688,128l-97.672,56.188L144,192.266l0.078,31.828l0.234,96.156l83.594,47.594\r\n\tL242.234,376l13.812,7.844l0.266,0.156l28.062-16.141L368,319.734L367.766,223.875z M255.781,160.156l69.812,39.719l-69.641,40.062\r\n\tl-69.828-39.734L255.781,160.156z M172.344,304.109l-0.203-79.766l69.547,39.578l0.219,79.781L172.344,304.109z M270.234,343.781\r\n\tL270.047,264l69.609-40.062l0.25,79.812L270.234,343.781z"},"children":[]}]};exports.threeDCube=threeDCube;var adjust={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M256,128c-70.688,0-128,57.297-128,128c0,70.688,57.312,128,128,128\r\n\tc70.703,0,128-57.312,128-128C384,185.297,326.703,128,256,128z M160,256c0-52.938,48-96,96-96v192C208,352,160,308.938,160,256z"},"children":[]}]};exports.adjust=adjust;var airPlane={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\tS397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M128,128l73.141,256l73.141-51.203L329.141,384v-85.328L384,247.469L128,128z\r\n\t M292.578,298.672l-97.375-93.875l97.375,76.797V298.672z"},"children":[]}]};exports.airPlane=airPlane;var alarmClock={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,144c-61.844,0-112,50.156-112,112s50.156,112,112,112s112-50.156,112-112S317.844,144,256,144z M256,347\r\n\t\tc-50.25,0-91-40.766-91-91c0-50.25,40.75-91,91-91c50.234,0,91,40.75,91,91C347,306.234,306.234,347,256,347z"},"children":[{"name":"path","attribs":{"d":"M256,144c-61.844,0-112,50.156-112,112s50.156,112,112,112s112-50.156,112-112S317.844,144,256,144z M256,347\r\n\t\tc-50.25,0-91-40.766-91-91c0-50.25,40.75-91,91-91c50.234,0,91,40.75,91,91C347,306.234,306.234,347,256,347z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,272c-8.844,0-16-7.156-16-16s7.156-16,16-16s16,7.156,16,16S264.844,272,256,272z"},"children":[{"name":"path","attribs":{"d":"M256,272c-8.844,0-16-7.156-16-16s7.156-16,16-16s16,7.156,16,16S264.844,272,256,272z"},"children":[]}]},{"name":"polygon","attribs":{"points":"246.062,257.375 257.391,246.062 287.547,276.219 276.234,287.547 \t"},"children":[{"name":"polygon","attribs":{"points":"246.062,257.375 257.391,246.062 287.547,276.219 276.234,287.547 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"234.969,204.453 250.5,200.609 265.219,259.953 249.688,263.797 \t"},"children":[{"name":"polygon","attribs":{"points":"234.969,204.453 250.5,200.609 265.219,259.953 249.688,263.797 \t"},"children":[]}]},{"name":"path","attribs":{"d":"M373,138.969c-14.625-14.656-38.375-14.656-53.031,0L373,192C387.656,177.359,387.656,153.594,373,138.969z"},"children":[{"name":"path","attribs":{"d":"M373,138.969c-14.625-14.656-38.375-14.656-53.031,0L373,192C387.656,177.359,387.656,153.594,373,138.969z"},"children":[]}]},{"name":"path","attribs":{"d":"M138.984,139c-14.641,14.625-14.641,38.375,0,53.031L192.031,139C177.375,124.344,153.625,124.344,138.984,139z"},"children":[{"name":"path","attribs":{"d":"M138.984,139c-14.641,14.625-14.641,38.375,0,53.031L192.031,139C177.375,124.344,153.625,124.344,138.984,139z"},"children":[]}]}]}]};exports.alarmClock=alarmClock;var animalFootprint={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256-0.5C114.333-0.5-0.5,114.333-0.5,256S114.333,512.5,256,512.5S512.5,397.667,512.5,256S397.667-0.5,256-0.5z\r\n\t\t M256,472.422C136.47,472.422,39.578,375.53,39.578,256C39.578,136.47,136.47,39.578,256,39.578\r\n\t\tc119.53,0,216.422,96.892,216.422,216.422C472.422,375.53,375.53,472.422,256,472.422z"},"children":[{"name":"path","attribs":{"d":"M256-0.5C114.333-0.5-0.5,114.333-0.5,256S114.333,512.5,256,512.5S512.5,397.667,512.5,256S397.667-0.5,256-0.5z\r\n\t\t M256,472.422C136.47,472.422,39.578,375.53,39.578,256C39.578,136.47,136.47,39.578,256,39.578\r\n\t\tc119.53,0,216.422,96.892,216.422,216.422C472.422,375.53,375.53,472.422,256,472.422z"},"children":[]}]},{"name":"path","attribs":{"d":"M133.48,236.619c-9.394,8.673-6.982,27.397,5.385,41.863c12.368,14.45,29.996,19.131,39.374,10.427\r\n\t\tc9.378-8.643,6.967-27.397-5.401-41.832C160.47,232.642,142.842,227.945,133.48,236.619z"},"children":[{"name":"path","attribs":{"d":"M133.48,236.619c-9.394,8.673-6.982,27.397,5.385,41.863c12.368,14.45,29.996,19.131,39.374,10.427\r\n\t\tc9.378-8.643,6.967-27.397-5.401-41.832C160.47,232.642,142.842,227.945,133.48,236.619z"},"children":[]}]},{"name":"path","attribs":{"d":"M338.833,243.757c-11.006,15.625-11.694,34.52-1.55,42.223c10.129,7.671,27.257,1.314,38.247-14.325\r\n\t\tc10.99-15.593,11.679-34.473,1.55-42.191C366.95,221.777,349.808,228.18,338.833,243.757z"},"children":[{"name":"path","attribs":{"d":"M338.833,243.757c-11.006,15.625-11.694,34.52-1.55,42.223c10.129,7.671,27.257,1.314,38.247-14.325\r\n\t\tc10.99-15.593,11.679-34.473,1.55-42.191C366.95,221.777,349.808,228.18,338.833,243.757z"},"children":[]}]},{"name":"path","attribs":{"d":"M226.129,240.125c16.517-3.977,25.111-28.65,19.179-55.107c-5.887-26.458-24.078-44.681-40.595-40.705\r\n\t\tc-16.501,4.008-25.08,28.681-19.194,55.139C191.452,225.879,209.628,244.102,226.129,240.125z"},"children":[{"name":"path","attribs":{"d":"M226.129,240.125c16.517-3.977,25.111-28.65,19.179-55.107c-5.887-26.458-24.078-44.681-40.595-40.705\r\n\t\tc-16.501,4.008-25.08,28.681-19.194,55.139C191.452,225.879,209.628,244.102,226.129,240.125z"},"children":[]}]},{"name":"path","attribs":{"d":"M309.057,144.313c-16.501-3.977-34.677,14.247-40.595,40.705c-5.918,26.458,2.661,51.131,19.193,55.107\r\n\t\tc16.485,3.976,34.677-14.247,40.595-40.673C334.184,172.995,325.558,148.321,309.057,144.313z"},"children":[{"name":"path","attribs":{"d":"M309.057,144.313c-16.501-3.977-34.677,14.247-40.595,40.705c-5.918,26.458,2.661,51.131,19.193,55.107\r\n\t\tc16.485,3.976,34.677-14.247,40.595-40.673C334.184,172.995,325.558,148.321,309.057,144.313z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,262.513c-39.374,0-68.932,62.7-68.932,83.444c0,51.005,29.558-1.613,68.932-1.613c39.39,0,68.932,52.618,68.932,1.613\r\n\t\tC324.932,325.213,295.39,262.513,256,262.513z"},"children":[{"name":"path","attribs":{"d":"M256,262.513c-39.374,0-68.932,62.7-68.932,83.444c0,51.005,29.558-1.613,68.932-1.613c39.39,0,68.932,52.618,68.932,1.613\r\n\t\tC324.932,325.213,295.39,262.513,256,262.513z"},"children":[]}]}]}]};exports.animalFootprint=animalFootprint;var arrowCurveLeft={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"path","attribs":{"d":"M325,250.438C282.797,223.078,215.5,224,215.5,224v-48l-96,80l96,64v-48c0,0,45-9,85.844,6.406\r\n\t\tC338.688,292.484,379.75,336,379.75,336S367.203,277.828,325,250.438z"},"children":[{"name":"path","attribs":{"d":"M325,250.438C282.797,223.078,215.5,224,215.5,224v-48l-96,80l96,64v-48c0,0,45-9,85.844,6.406\r\n\t\tC338.688,292.484,379.75,336,379.75,336S367.203,277.828,325,250.438z"},"children":[]}]}]}]};exports.arrowCurveLeft=arrowCurveLeft;var arrowCurveRecycle={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"path","attribs":{"d":"M279.5,176c0,0-58.797-0.922-101,26.438C136.297,229.828,125.875,288,125.875,288s37.875-43.516,75.219-57.594\r\n\t\tC241.938,215,279.5,224,279.5,224v48l96-64l-96-80V176z"},"children":[{"name":"path","attribs":{"d":"M279.5,176c0,0-58.797-0.922-101,26.438C136.297,229.828,125.875,288,125.875,288s37.875-43.516,75.219-57.594\r\n\t\tC241.938,215,279.5,224,279.5,224v48l96-64l-96-80V176z"},"children":[]}]},{"name":"path","attribs":{"d":"M301.344,281.594C260.5,297,215.5,288,215.5,288v-48l-96,64l96,80v-48c0,0,67.297,0.922,109.5-26.438\r\n\t\tC367.203,282.172,379.75,224,379.75,224S338.688,267.516,301.344,281.594z"},"children":[{"name":"path","attribs":{"d":"M301.344,281.594C260.5,297,215.5,288,215.5,288v-48l-96,64l96,80v-48c0,0,67.297,0.922,109.5-26.438\r\n\t\tC367.203,282.172,379.75,224,379.75,224S338.688,267.516,301.344,281.594z"},"children":[]}]}]}]};exports.arrowCurveRecycle=arrowCurveRecycle;var arrowCurveRight={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"path","attribs":{"d":"M279.5,224c0,0-58.797-0.922-101,26.438C136.297,277.828,125.875,336,125.875,336s37.875-43.516,75.219-57.594\r\n\t\tC241.938,263,279.5,272,279.5,272v48l96-64l-96-80V224z"},"children":[{"name":"path","attribs":{"d":"M279.5,224c0,0-58.797-0.922-101,26.438C136.297,277.828,125.875,336,125.875,336s37.875-43.516,75.219-57.594\r\n\t\tC241.938,263,279.5,272,279.5,272v48l96-64l-96-80V224z"},"children":[]}]}]}]};exports.arrowCurveRight=arrowCurveRight;var arrowCycle={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"path","attribs":{"d":"M188.117,188.125c37.5-37.5,98.273-37.5,135.758,0l-11.312,11.312l50.922,16.969L346.5,165.484l-11.312,11.328\r\n\t\tc-43.75-43.75-114.641-43.75-158.383,0c-27.984,27.984-37.977,67.078-30.141,103.078l18.211,6.078\r\n\t\tC153.953,252.656,161.648,214.594,188.117,188.125z"},"children":[{"name":"path","attribs":{"d":"M188.117,188.125c37.5-37.5,98.273-37.5,135.758,0l-11.312,11.312l50.922,16.969L346.5,165.484l-11.312,11.328\r\n\t\tc-43.75-43.75-114.641-43.75-158.383,0c-27.984,27.984-37.977,67.078-30.141,103.078l18.211,6.078\r\n\t\tC153.953,252.656,161.648,214.594,188.117,188.125z"},"children":[]}]},{"name":"path","attribs":{"d":"M347.125,226.031c10.922,33.312,3.234,71.375-23.25,97.844c-37.5,37.5-98.258,37.5-135.758,0l11.312-11.312l-50.906-16.969\r\n\t\tl16.969,50.922l16.969-16.984l-5.656,5.672c43.742,43.734,114.648,43.734,158.383,0c28-28,37.984-67.078,30.156-103.094\r\n\t\tL347.125,226.031z"},"children":[{"name":"path","attribs":{"d":"M347.125,226.031c10.922,33.312,3.234,71.375-23.25,97.844c-37.5,37.5-98.258,37.5-135.758,0l11.312-11.312l-50.906-16.969\r\n\t\tl16.969,50.922l16.969-16.984l-5.656,5.672c43.742,43.734,114.648,43.734,158.383,0c28-28,37.984-67.078,30.156-103.094\r\n\t\tL347.125,226.031z"},"children":[]}]}]}]};exports.arrowCycle=arrowCycle;var arrowCycling={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"path","attribs":{"d":"M247.5,160v16l48-24l-48-24v16c-32,0-70.039,20.594-89.961,51.578L164,212.75C179.828,181.484,215.5,160,247.5,160z"},"children":[{"name":"path","attribs":{"d":"M247.5,160v16l48-24l-48-24v16c-32,0-70.039,20.594-89.961,51.578L164,212.75C179.828,181.484,215.5,160,247.5,160z"},"children":[]}]},{"name":"path","attribs":{"d":"M160,264.5h16l-24-48l-24,48h16c0,32,20.586,70.031,51.578,89.969L212.75,348C181.484,332.172,160,296.5,160,264.5z"},"children":[{"name":"path","attribs":{"d":"M160,264.5h16l-24-48l-24,48h16c0,32,20.586,70.031,51.578,89.969L212.75,348C181.484,332.172,160,296.5,160,264.5z"},"children":[]}]},{"name":"path","attribs":{"d":"M247.5,352v-16l-48,24l48,24v-16c48,0,78.531-20.594,98.469-51.578L335.25,299.25C319.422,330.516,295.5,352,247.5,352z"},"children":[{"name":"path","attribs":{"d":"M247.5,352v-16l-48,24l48,24v-16c48,0,78.531-20.594,98.469-51.578L335.25,299.25C319.422,330.516,295.5,352,247.5,352z"},"children":[]}]},{"name":"path","attribs":{"d":"M316.422,166.031L299.25,176.75C330.516,192.578,352,216.5,352,264.5h-16l24,48l24-48h-16\r\n\t\tC368,216.5,347.406,185.969,316.422,166.031z"},"children":[{"name":"path","attribs":{"d":"M316.422,166.031L299.25,176.75C330.516,192.578,352,216.5,352,264.5h-16l24,48l24-48h-16\r\n\t\tC368,216.5,347.406,185.969,316.422,166.031z"},"children":[]}]}]}]};exports.arrowCycling=arrowCycling;var arrowDownBig={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M0,256c0,141.406,114.609,256,256,256s256-114.594,256-256C512,114.625,397.391,0,256,0S0,114.625,0,256z M472,256\r\n\tc0,119.312-96.703,216-216,216S40,375.312,40,256c0-119.281,96.703-216,216-216S472,136.719,472,256z"},"children":[]},{"name":"polygon","attribs":{"points":"160,272 256,384 352,272 303.984,272 303.984,128 207.984,128 207.984,272 "},"children":[]}]};exports.arrowDownBig=arrowDownBig;var arrowDownBoldRound={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M512,256C512,114.608,397.392,0,256,0S0,114.608,0,256s114.608,256,256,256S512,397.392,512,256z M40,256\r\n\tc0-119.296,96.704-216,216-216c119.298,0,216,96.704,216,216c0,119.298-96.702,216-216,216C136.704,472,40,375.298,40,256z"},"children":[]},{"name":"path","attribs":{"d":"M274.122,343.468l89.592-145.578c9.97-16.844,1.938-24.39-17.841-24.39H166.105c-19.75,0-27.796,7.546-17.812,24.39\r\n\tl89.579,148.655C247.841,363.452,264.152,360.359,274.122,343.468z"},"children":[]}]};exports.arrowDownBoldRound=arrowDownBoldRound;var arrowDownBold={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"polygon","attribs":{"points":"256,362.5 368,170.5 144,170.5 "},"children":[]}]};exports.arrowDownBold=arrowDownBold;var arrowDownLight={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M0,256c0,141.406,114.609,256,256,256s256-114.594,256-256\r\n\tC512,114.625,397.391,0,256,0S0,114.625,0,256z M472,256c0,119.312-96.703,216-216,216S40,375.312,40,256\r\n\tc0-119.281,96.703-216,216-216S472,136.719,472,256z"},"children":[]},{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"239.961,128 239.961,326.406 198.836,288 175.992,309.344 255.992,384 \r\n\t336.008,309.344 313.102,288 271.961,326.406 271.961,128 "},"children":[]}]};exports.arrowDownLight=arrowDownLight;var arrowDownThin={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M0,256c0,141.391,114.594,256,256,256c141.375,0,256-114.609,256-256S397.375,0,256,0C114.594,0,0,114.609,0,256z M472,256\r\n\tc0,119.297-96.719,216-216,216c-119.312,0-216-96.703-216-216S136.688,40,256,40C375.281,40,472,136.703,472,256z"},"children":[]},{"name":"path","attribs":{"d":"M148.688,206.688c-6.25,6.25-6.25,16.375,0,22.625l96,96c6.25,6.25,16.375,6.25,22.625,0l96-96\r\n\tC366.438,226.188,368,222.094,368,218s-1.562-8.188-4.688-11.312c-6.25-6.25-16.375-6.25-22.625,0L256,291.375l-84.688-84.688\r\n\tC165.062,200.438,154.938,200.438,148.688,206.688z"},"children":[]}]};exports.arrowDownThin=arrowDownThin;var arrowDown={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M0,256c0,141.391,114.594,256,256,256c141.375,0,256-114.609,256-256\r\n\tS397.375,0,256,0C114.594,0,0,114.609,0,256z M472,256c0,119.297-96.719,216-216,216c-119.312,0-216-96.703-216-216\r\n\tS136.688,40,256,40C375.281,40,472,136.703,472,256z"},"children":[]},{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"144,226 256,338 368,226 336,194 256,274 176,194 "},"children":[]}]};exports.arrowDown=arrowDown;var arrowFillDown={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"path","attribs":{"d":"M304,144h-96c-8.797,0-16,7.188-16,15.969v143.828c0,8.766,4.484,21.594,9.969,28.469l43.656,62.578\r\n\t\tc5.469,6.875,14.469,6.875,19.969,0.031l44.391-62.641C315.5,325.375,320,312.562,320,303.797V159.969\r\n\t\tC320,151.188,312.797,144,304,144z"},"children":[{"name":"path","attribs":{"d":"M304,144h-96c-8.797,0-16,7.188-16,15.969v143.828c0,8.766,4.484,21.594,9.969,28.469l43.656,62.578\r\n\t\tc5.469,6.875,14.469,6.875,19.969,0.031l44.391-62.641C315.5,325.375,320,312.562,320,303.797V159.969\r\n\t\tC320,151.188,312.797,144,304,144z"},"children":[]}]}]}]};exports.arrowFillDown=arrowFillDown;var arrowFillLeft={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"path","attribs":{"d":"M352.031,192H208.203c-8.766,0-21.594,4.484-28.469,9.969l-62.578,43.656c-6.875,5.469-6.875,14.469-0.031,19.969\r\n\t\tl62.641,44.391C186.625,315.5,199.438,320,208.203,320h143.828c8.781,0,15.969-7.203,15.969-16v-96\r\n\t\tC368,199.203,360.812,192,352.031,192z"},"children":[{"name":"path","attribs":{"d":"M352.031,192H208.203c-8.766,0-21.594,4.484-28.469,9.969l-62.578,43.656c-6.875,5.469-6.875,14.469-0.031,19.969\r\n\t\tl62.641,44.391C186.625,315.5,199.438,320,208.203,320h143.828c8.781,0,15.969-7.203,15.969-16v-96\r\n\t\tC368,199.203,360.812,192,352.031,192z"},"children":[]}]}]}]};exports.arrowFillLeft=arrowFillLeft;var arrowFillRight={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"path","attribs":{"d":"M332.234,202.016C325.375,196.5,312.562,192,303.797,192H159.969c-8.781,0-15.969,7.203-15.969,16v96\r\n\t\tc0,8.797,7.188,16,15.969,16h143.828c8.766,0,21.594-4.484,28.469-9.969l62.578-43.656c6.875-5.469,6.875-14.469,0.031-19.969\r\n\t\tL332.234,202.016z"},"children":[{"name":"path","attribs":{"d":"M332.234,202.016C325.375,196.5,312.562,192,303.797,192H159.969c-8.781,0-15.969,7.203-15.969,16v96\r\n\t\tc0,8.797,7.188,16,15.969,16h143.828c8.766,0,21.594-4.484,28.469-9.969l62.578-43.656c6.875-5.469,6.875-14.469,0.031-19.969\r\n\t\tL332.234,202.016z"},"children":[]}]}]}]};exports.arrowFillRight=arrowFillRight;var arrowFillUp={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"path","attribs":{"d":"M266.375,117.156c-5.469-6.875-14.469-6.875-19.969-0.031l-44.391,62.641C196.5,186.625,192,199.438,192,208.203v143.828\r\n\t\tc0,8.781,7.203,15.969,16,15.969h96c8.797,0,16-7.188,16-15.969V208.203c0-8.766-4.484-21.594-9.969-28.469L266.375,117.156z"},"children":[{"name":"path","attribs":{"d":"M266.375,117.156c-5.469-6.875-14.469-6.875-19.969-0.031l-44.391,62.641C196.5,186.625,192,199.438,192,208.203v143.828\r\n\t\tc0,8.781,7.203,15.969,16,15.969h96c8.797,0,16-7.188,16-15.969V208.203c0-8.766-4.484-21.594-9.969-28.469L266.375,117.156z"},"children":[]}]}]}]};exports.arrowFillUp=arrowFillUp;var arrowLeftBig={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.562,0,0,114.609,0,256s114.562,256,256,256c141.375,0,256-114.609,256-256S397.375,0,256,0z M256,472\r\n\tc-119.344,0-216.031-96.703-216.031-216S136.656,40,256,40c119.281,0,216,96.703,216,216S375.281,472,256,472z"},"children":[]},{"name":"polygon","attribs":{"points":"240,160 128,256 240,352 240,304.031 384,304.031 384,208.031 240,208.031 "},"children":[]}]};exports.arrowLeftBig=arrowLeftBig;var arrowLeftBoldRound={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,512c141.391,0,256-114.609,256-256C512,114.609,397.391,0,256,0C114.609,0,0,114.609,0,256\r\n\tC0,397.391,114.609,512,256,512z M256,40c119.297,0,216,96.703,216,216s-96.703,216-216,216S40,375.297,40,256S136.703,40,256,40z"},"children":[]},{"name":"path","attribs":{"d":"M157.84,274.121l145.872,89.594c16.844,9.969,24.685,1.938,24.685-17.844V166.105c0-19.75-7.841-27.797-24.685-17.812\r\n\tl-148.795,89.578C137.995,247.84,140.949,264.152,157.84,274.121z"},"children":[]}]};exports.arrowLeftBoldRound=arrowLeftBoldRound;var arrowLeftBold={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,512c141.391,0,256-114.609,256-256C512,114.609,397.391,0,256,0C114.609,0,0,114.609,0,256\r\n\tC0,397.391,114.609,512,256,512z M256,40c119.297,0,216,96.703,216,216s-96.703,216-216,216S40,375.297,40,256S136.703,40,256,40z"},"children":[]},{"name":"polygon","attribs":{"points":"331.5,144 139.5,256 331.5,368 "},"children":[]}]};exports.arrowLeftBold=arrowLeftBold;var arrowLeftLight={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\tS397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"384,240 185.594,240 224,198.844 202.656,176 128,256 202.656,336 \r\n\t224,313.125 185.594,272 384,272 "},"children":[]}]};exports.arrowLeftLight=arrowLeftLight;var arrowLeftThin={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"path","attribs":{"d":"M305.312,148.688c-6.25-6.25-16.375-6.25-22.625,0l-96,96c-6.25,6.25-6.25,16.375,0,22.625l96,96\r\n\tC285.812,366.438,289.906,368,294,368s8.188-1.562,11.312-4.688c6.25-6.25,6.25-16.375,0-22.625L220.625,256l84.688-84.688\r\n\tC311.562,165.062,311.562,154.938,305.312,148.688z"},"children":[]}]};exports.arrowLeftThin=arrowLeftThin;var arrowLeft={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\tS397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"286,144 174,256 286,368 318,336 238,256 318,176 "},"children":[]}]};exports.arrowLeft=arrowLeft;var arrowMultiLineDown={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M0,256c0,141.391,114.609,256,256,256s256-114.609,256-256S397.391,0,256,0S0,114.609,0,256z M472,256\r\n\tc0,119.297-96.703,216-216,216S40,375.297,40,256S136.703,40,256,40S472,136.703,472,256z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"223.953","y":"128","fill-rule":"evenodd","clip-rule":"evenodd","width":"64","height":"16"},"children":[{"name":"rect","attribs":{"x":"223.953","y":"128","fill-rule":"evenodd","clip-rule":"evenodd","width":"64","height":"16"},"children":[]}]},{"name":"rect","attribs":{"x":"223.953","y":"160","fill-rule":"evenodd","clip-rule":"evenodd","width":"64","height":"16"},"children":[{"name":"rect","attribs":{"x":"223.953","y":"160","fill-rule":"evenodd","clip-rule":"evenodd","width":"64","height":"16"},"children":[]}]},{"name":"rect","attribs":{"x":"223.953","y":"192","fill-rule":"evenodd","clip-rule":"evenodd","width":"64","height":"16"},"children":[{"name":"rect","attribs":{"x":"223.953","y":"192","fill-rule":"evenodd","clip-rule":"evenodd","width":"64","height":"16"},"children":[]}]},{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"192,320 256,384 320,320 287.953,320 287.953,256 223.953,256 \r\n\t\t223.953,320 \t"},"children":[{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"192,320 256,384 320,320 287.953,320 287.953,256 223.953,256 \r\n\t\t223.953,320 \t"},"children":[]}]},{"name":"rect","attribs":{"x":"223.953","y":"224","fill-rule":"evenodd","clip-rule":"evenodd","width":"64","height":"16"},"children":[{"name":"rect","attribs":{"x":"223.953","y":"224","fill-rule":"evenodd","clip-rule":"evenodd","width":"64","height":"16"},"children":[]}]}]}]};exports.arrowMultiLineDown=arrowMultiLineDown;var arrowMultiLineLeft={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"368","y":"224","fill-rule":"evenodd","clip-rule":"evenodd","width":"16","height":"64"},"children":[{"name":"rect","attribs":{"x":"368","y":"224","fill-rule":"evenodd","clip-rule":"evenodd","width":"16","height":"64"},"children":[]}]},{"name":"rect","attribs":{"x":"336","y":"224","fill-rule":"evenodd","clip-rule":"evenodd","width":"16","height":"64"},"children":[{"name":"rect","attribs":{"x":"336","y":"224","fill-rule":"evenodd","clip-rule":"evenodd","width":"16","height":"64"},"children":[]}]},{"name":"rect","attribs":{"x":"304","y":"224","fill-rule":"evenodd","clip-rule":"evenodd","width":"16","height":"64"},"children":[{"name":"rect","attribs":{"x":"304","y":"224","fill-rule":"evenodd","clip-rule":"evenodd","width":"16","height":"64"},"children":[]}]},{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"192,192 128,256 192,320 192,288 256,288 256,224 192,224 \t"},"children":[{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"192,192 128,256 192,320 192,288 256,288 256,224 192,224 \t"},"children":[]}]},{"name":"rect","attribs":{"x":"272","y":"224","fill-rule":"evenodd","clip-rule":"evenodd","width":"16","height":"64"},"children":[{"name":"rect","attribs":{"x":"272","y":"224","fill-rule":"evenodd","clip-rule":"evenodd","width":"16","height":"64"},"children":[]}]}]}]};exports.arrowMultiLineLeft=arrowMultiLineLeft;var arrowMultiLineRight={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,512c141.391,0,256-114.609,256-256S397.391,0,256,0S0,114.609,0,256S114.609,512,256,512z M256,40\r\n\tc119.297,0,216,96.703,216,216s-96.703,216-216,216S40,375.297,40,256S136.703,40,256,40z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"128","y":"224","fill-rule":"evenodd","clip-rule":"evenodd","width":"16","height":"64"},"children":[{"name":"rect","attribs":{"x":"128","y":"224","fill-rule":"evenodd","clip-rule":"evenodd","width":"16","height":"64"},"children":[]}]},{"name":"rect","attribs":{"x":"160","y":"224","fill-rule":"evenodd","clip-rule":"evenodd","width":"16","height":"64"},"children":[{"name":"rect","attribs":{"x":"160","y":"224","fill-rule":"evenodd","clip-rule":"evenodd","width":"16","height":"64"},"children":[]}]},{"name":"rect","attribs":{"x":"192","y":"224","fill-rule":"evenodd","clip-rule":"evenodd","width":"16","height":"64"},"children":[{"name":"rect","attribs":{"x":"192","y":"224","fill-rule":"evenodd","clip-rule":"evenodd","width":"16","height":"64"},"children":[]}]},{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"320,320 384,256 320,192 320,224 256,224 256,288 320,288 \t"},"children":[{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"320,320 384,256 320,192 320,224 256,224 256,288 320,288 \t"},"children":[]}]},{"name":"rect","attribs":{"x":"224","y":"224","fill-rule":"evenodd","clip-rule":"evenodd","width":"16","height":"64"},"children":[{"name":"rect","attribs":{"x":"224","y":"224","fill-rule":"evenodd","clip-rule":"evenodd","width":"16","height":"64"},"children":[]}]}]}]};exports.arrowMultiLineRight=arrowMultiLineRight;var arrowMultiLineUp={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M512,256C512,114.609,397.391,0,256,0S0,114.609,0,256s114.609,256,256,256S512,397.391,512,256z M40,256\r\n\tc0-119.297,96.703-216,216-216s216,96.703,216,216s-96.703,216-216,216S40,375.297,40,256z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"223.969","y":"368","fill-rule":"evenodd","clip-rule":"evenodd","width":"64","height":"16"},"children":[{"name":"rect","attribs":{"x":"223.969","y":"368","fill-rule":"evenodd","clip-rule":"evenodd","width":"64","height":"16"},"children":[]}]},{"name":"rect","attribs":{"x":"223.969","y":"336","fill-rule":"evenodd","clip-rule":"evenodd","width":"64","height":"16"},"children":[{"name":"rect","attribs":{"x":"223.969","y":"336","fill-rule":"evenodd","clip-rule":"evenodd","width":"64","height":"16"},"children":[]}]},{"name":"rect","attribs":{"x":"223.969","y":"304","fill-rule":"evenodd","clip-rule":"evenodd","width":"64","height":"16"},"children":[{"name":"rect","attribs":{"x":"223.969","y":"304","fill-rule":"evenodd","clip-rule":"evenodd","width":"64","height":"16"},"children":[]}]},{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"320,192 256,128 192,192 223.969,192 223.969,256 287.969,256 \r\n\t\t287.969,192 \t"},"children":[{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"320,192 256,128 192,192 223.969,192 223.969,256 287.969,256 \r\n\t\t287.969,192 \t"},"children":[]}]},{"name":"rect","attribs":{"x":"223.969","y":"272","fill-rule":"evenodd","clip-rule":"evenodd","width":"64","height":"16"},"children":[{"name":"rect","attribs":{"x":"223.969","y":"272","fill-rule":"evenodd","clip-rule":"evenodd","width":"64","height":"16"},"children":[]}]}]}]};exports.arrowMultiLineUp=arrowMultiLineUp;var arrowObliqueContractDirections={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\t\tS397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\t\tS397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"159.984,240 240,240 240,160 216,184 175.984,144 143.984,176 \r\n\t\t\t183.984,216 \t\t"},"children":[{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"159.984,240 240,240 240,160 216,184 175.984,144 143.984,176 \r\n\t\t\t183.984,216 \t\t"},"children":[]}]},{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"328.016,296 352.016,272 272,272 272,351.984 296,327.984 \r\n\t\t\t336.016,367.984 368.016,335.984 \t\t"},"children":[{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"328.016,296 352.016,272 272,272 272,351.984 296,327.984 \r\n\t\t\t336.016,367.984 368.016,335.984 \t\t"},"children":[]}]},{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"327.984,215.984 367.984,176 335.984,143.984 296,183.984 272,159.984 \r\n\t\t\t272,240 351.984,240 \t\t"},"children":[{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"327.984,215.984 367.984,176 335.984,143.984 296,183.984 272,159.984 \r\n\t\t\t272,240 351.984,240 \t\t"},"children":[]}]},{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"183.984,296 143.984,336.016 175.984,368.016 215.984,328.016 \r\n\t\t\t240,352.016 240,272 159.984,272 \t\t"},"children":[{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"183.984,296 143.984,336.016 175.984,368.016 215.984,328.016 \r\n\t\t\t240,352.016 240,272 159.984,272 \t\t"},"children":[]}]}]}]}]}]};exports.arrowObliqueContractDirections=arrowObliqueContractDirections;var arrowObliqueContract={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\t\tS397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\t\tS397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"176,144 144,176 184,216 160,240 240,240 240,160 216,184 \t"},"children":[{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"176,144 144,176 184,216 160,240 240,240 240,160 216,184 \t"},"children":[]}]},{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"352.031,272 272,272 272,351.984 296.016,327.984 336.031,367.984 \r\n\t\t368.031,335.984 328.031,296 \t"},"children":[{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"352.031,272 272,272 272,351.984 296.016,327.984 336.031,367.984 \r\n\t\t368.031,335.984 328.031,296 \t"},"children":[]}]}]}]};exports.arrowObliqueContract=arrowObliqueContract;var arrowObliqueExpandDirections={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\t\tS397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\t\tS397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"224,144 144,144 144,224 168,200 208,240 240,208 200,168 \t\t"},"children":[{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"224,144 144,144 144,224 168,200 208,240 240,208 200,168 \t\t"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"288,368 368,368 368,288 344,312 304,272 272,304 312,344 \t\t"},"children":[{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"288,368 368,368 368,288 344,312 304,272 272,304 312,344 \t\t"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"368,224 368,144 288,144 312,168 272,208 304,240 344,200 \t\t"},"children":[{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"368,224 368,144 288,144 312,168 272,208 304,240 344,200 \t\t"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"144,288 144,368 224,368 200,344 240,304 208,272 168,312 \t\t"},"children":[{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"144,288 144,368 224,368 200,344 240,304 208,272 168,312 \t\t"},"children":[]}]}]}]}]}]};exports.arrowObliqueExpandDirections=arrowObliqueExpandDirections;var arrowObliqueExpand={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\t\tS397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\t\tS397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"224,144 144,144 144,224 168,200 208,240 240,208 200,168 \t"},"children":[{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"224,144 144,144 144,224 168,200 208,240 240,208 200,168 \t"},"children":[]}]},{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"304,272 272,304 312,344 288,368 368,368 368,288 344,312 \t"},"children":[{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"304,272 272,304 312,344 288,368 368,368 368,288 344,312 \t"},"children":[]}]}]}]};exports.arrowObliqueExpand=arrowObliqueExpand;var arrowRightBig={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256.008,512.004c141.408,0,255.988-114.611,255.988-256.004S397.416-0.004,256.008-0.004\r\n\tC114.631-0.004,0.004,114.607,0.004,256S114.631,512.004,256.008,512.004z M256.008,39.997\r\n\tc119.314,0,216.003,96.705,216.003,216.003s-96.688,216.004-216.003,216.004c-119.283,0-216.004-96.705-216.004-216.004\r\n\tS136.725,39.997,256.008,39.997z"},"children":[]},{"name":"polygon","attribs":{"points":"272,352.002 384.002,256 272,159.998 272,207.999 127.998,207.999 127.998,304 272,304 "},"children":[]}]};exports.arrowRightBig=arrowRightBig;var arrowRightBoldRound={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"path","attribs":{"d":"M353.661,237.879l-154.174-89.594c-16.844-9.969-32.987-1.938-32.987,17.844v179.766c0,19.75,16.143,27.797,32.987,17.812\r\n\tl152.955-89.578C369.348,264.16,370.552,247.848,353.661,237.879z"},"children":[]}]};exports.arrowRightBoldRound=arrowRightBoldRound;var arrowRightBold={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"polygon","attribs":{"points":"169.5,368 361.5,256 169.5,144 "},"children":[]}]};exports.arrowRightBold=arrowRightBold;var arrowRightLight={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M256,512c141.391,0,256-114.609,256-256S397.391,0,256,0S0,114.609,0,256\r\n\tS114.609,512,256,512z M256,40c119.297,0,216,96.703,216,216s-96.703,216-216,216S40,375.297,40,256S136.703,40,256,40z"},"children":[]},{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"128,272 326.406,272 288,313.156 309.344,336 384,256 309.344,176 \r\n\t288,198.875 326.406,240 128,240 "},"children":[]}]};exports.arrowRightLight=arrowRightLight;var arrowRightThin={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,512c141.391,0,256-114.609,256-256S397.391,0,256,0S0,114.609,0,256S114.609,512,256,512z M256,40\r\n\t\tc119.297,0,216,96.703,216,216s-96.703,216-216,216S40,375.297,40,256S136.703,40,256,40z"},"children":[{"name":"path","attribs":{"d":"M256,512c141.391,0,256-114.609,256-256S397.391,0,256,0S0,114.609,0,256S114.609,512,256,512z M256,40\r\n\t\tc119.297,0,216,96.703,216,216s-96.703,216-216,216S40,375.297,40,256S136.703,40,256,40z"},"children":[]}]},{"name":"path","attribs":{"d":"M212.688,363.312c6.25,6.25,16.375,6.25,22.625,0l96-96c6.25-6.25,6.25-16.375,0-22.625l-96-96\r\n\t\tC232.188,145.562,228.094,144,224,144s-8.188,1.562-11.312,4.688c-6.25,6.25-6.25,16.375,0,22.625L297.375,256l-84.688,84.688\r\n\t\tC206.438,346.938,206.438,357.062,212.688,363.312z"},"children":[{"name":"path","attribs":{"d":"M212.688,363.312c6.25,6.25,16.375,6.25,22.625,0l96-96c6.25-6.25,6.25-16.375,0-22.625l-96-96\r\n\t\tC232.188,145.562,228.094,144,224,144s-8.188,1.562-11.312,4.688c-6.25,6.25-6.25,16.375,0,22.625L297.375,256l-84.688,84.688\r\n\t\tC206.438,346.938,206.438,357.062,212.688,363.312z"},"children":[]}]}]}]};exports.arrowRightThin=arrowRightThin;var arrowRight={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M256,512c141.391,0,256-114.609,256-256S397.391,0,256,0S0,114.609,0,256\r\n\tS114.609,512,256,512z M256,40c119.297,0,216,96.703,216,216s-96.703,216-216,216S40,375.297,40,256S136.703,40,256,40z"},"children":[]},{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"226,368 338,256 226,144 194,176 274,256 194,336 "},"children":[]}]};exports.arrowRight=arrowRight;var arrowUpBig={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M512,256.008C512,114.597,397.388-0.016,255.992,0C114.598,0-0.016,114.581,0,256.008\r\n\tC0,397.387,114.613,512.016,255.992,512C397.388,512.016,512,397.387,512,256.008z M40.002,256.008\r\n\tc0-119.316,96.69-216.007,215.99-216.007C375.309,40.001,472,136.691,472,256.008c0,119.269-96.691,215.99-216.008,215.99\r\n\tC136.692,471.998,40.002,375.276,40.002,256.008z"},"children":[]},{"name":"polygon","attribs":{"points":"352.003,239.999 255.999,127.996 159.997,239.999 207.998,239.999 207.998,384.004 304.001,384.004 \r\n\t304.001,239.999 "},"children":[]}]};exports.arrowUpBig=arrowUpBig;var arrowUpBoldRound={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M0,256c0,141.391,114.609,256,256,256s256-114.609,256-256S397.391,0,256,0S0,114.609,0,256z M472,256\r\n\tc0,119.297-96.703,216-216,216S40,375.297,40,256S136.703,40,256,40S472,136.703,472,256z"},"children":[]},{"name":"path","attribs":{"d":"M237.879,158.339l-89.594,154.175c-9.969,16.844-1.938,32.986,17.844,32.986h179.766c19.75,0,27.797-16.143,17.812-32.986\r\n\tl-89.578-152.955C264.16,142.652,247.848,141.448,237.879,158.339z"},"children":[]}]};exports.arrowUpBoldRound=arrowUpBoldRound;var arrowUpBold={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"polygon","attribs":{"points":"144,342.5 368,342.5 256,150.5 "},"children":[]}]};exports.arrowUpBold=arrowUpBold;var arrowUpLight={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M512,256C512,114.609,397.391,0,256,0S0,114.609,0,256s114.609,256,256,256\r\n\tS512,397.391,512,256z M40,256c0-119.297,96.703-216,216-216s216,96.703,216,216s-96.703,216-216,216S40,375.297,40,256z"},"children":[]},{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"271.969,384 271.969,185.594 313.141,224 336,202.656 256,128 \r\n\t176,202.656 198.859,224 239.969,185.594 239.969,384 "},"children":[]}]};exports.arrowUpLight=arrowUpLight;var arrowUpThin={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M512,256C512,114.609,397.391,0,256,0S0,114.609,0,256s114.609,256,256,256S512,397.391,512,256z M40,256\r\n\t\tc0-119.297,96.703-216,216-216s216,96.703,216,216s-96.703,216-216,216S40,375.297,40,256z"},"children":[{"name":"path","attribs":{"d":"M512,256C512,114.609,397.391,0,256,0S0,114.609,0,256s114.609,256,256,256S512,397.391,512,256z M40,256\r\n\t\tc0-119.297,96.703-216,216-216s216,96.703,216,216s-96.703,216-216,216S40,375.297,40,256z"},"children":[]}]},{"name":"path","attribs":{"d":"M363.312,299.312c6.25-6.25,6.25-16.375,0-22.625l-96-96c-6.25-6.25-16.375-6.25-22.625,0l-96,96\r\n\t\tC145.562,279.812,144,283.906,144,288s1.562,8.188,4.688,11.312c6.25,6.25,16.375,6.25,22.625,0L256,214.625l84.688,84.688\r\n\t\tC346.938,305.562,357.062,305.562,363.312,299.312z"},"children":[{"name":"path","attribs":{"d":"M363.312,299.312c6.25-6.25,6.25-16.375,0-22.625l-96-96c-6.25-6.25-16.375-6.25-22.625,0l-96,96\r\n\t\tC145.562,279.812,144,283.906,144,288s1.562,8.188,4.688,11.312c6.25,6.25,16.375,6.25,22.625,0L256,214.625l84.688,84.688\r\n\t\tC346.938,305.562,357.062,305.562,363.312,299.312z"},"children":[]}]}]}]};exports.arrowUpThin=arrowUpThin;var arrowUp={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M512,256C512,114.609,397.391,0,256,0S0,114.609,0,256s114.609,256,256,256\r\n\tS512,397.391,512,256z M40,256c0-119.297,96.703-216,216-216s216,96.703,216,216s-96.703,216-216,216S40,375.297,40,256z"},"children":[]},{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"368,286 256,174 144,286 176,318 256,238 336,318 "},"children":[]}]};exports.arrowUp=arrowUp;var atom={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256c0,141.391,114.609,256,256,256c141.391,0,256-114.609,256-256\r\n\tC512,114.609,397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M384,256c0-15.719-10.797-29.953-28.953-40.969c5.266-21.25,2.422-38.594-8.531-49.531\r\n\t\tc-7.297-7.312-17.78-11.156-30.297-11.156c-6.016,0-12.5,1.078-19.188,2.719C286,138.844,271.75,128,256,128\r\n\t\ts-30,10.844-41.031,29.062c-6.688-1.625-13.188-2.719-19.188-2.719c-12.531,0-23,3.859-30.297,11.156\r\n\t\tc-11.125,11.125-13.547,28.844-8.484,49.5c-18.188,11.031-29,25.266-29,41c0,15.733,10.812,29.969,29,41\r\n\t\tc-5.062,20.672-2.625,38.392,8.5,49.517c7.281,7.297,17.766,11.155,30.281,11.155c6.016,0,12.5-1.078,19.188-2.719\r\n\t\tC226,373.172,240.25,384,256,384s30-10.828,41.031-29.047c6.672,1.641,13.156,2.719,19.156,2.719\r\n\t\tc12.53,0,23.016-3.859,30.312-11.156c10.953-10.938,13.797-28.297,8.531-49.531C373.203,285.953,384,271.719,384,256z\r\n\t\t M288.969,176.312c5.344-2.047,10.562-3.672,15.484-4.625c4.094-0.812,8.078-1.344,11.766-1.344c8.312,0,14.688,2.172,18.984,6.469\r\n\t\tc6.188,6.172,7.891,17.062,5.156,30.75c-0.859,4.312-2.125,8.875-3.875,13.719c-0.203,0.562-0.562,1.188-0.781,1.75\r\n\t\tc-2.297,6-5.203,12.094-8.609,18.25c-2.703-3.719-5.344-7.438-8.344-11.109c-4.875-5.953-10.156-11.797-15.734-17.484\r\n\t\tc-0.625-0.625-1.141-1.312-1.766-1.938c-0.641-0.625-1.312-1.188-1.953-1.812c-5.734-5.625-11.625-10.812-17.594-15.688\r\n\t\tc-3.641-2.984-7.281-5.844-10.969-8.516C276.969,181.281,283.031,178.562,288.969,176.312z M318.203,256\r\n\t\tc-4.453,6.562-9.547,13.047-15.016,19.438c-4.188,4.906-8.531,9.781-13.25,14.5c-4.703,4.703-9.547,9.062-14.453,13.234\r\n\t\tc-6.422,5.484-12.953,10.469-19.5,14.922c-6.547-4.453-13.078-9.438-19.516-14.922c-4.875-4.172-9.719-8.516-14.406-13.219\r\n\t\tc-4.844-4.828-9.109-9.703-13.25-14.562c-5.531-6.516-10.594-12.983-14.906-19.391c4.312-6.391,9.375-12.875,14.906-19.375\r\n\t\tc4.141-4.875,8.406-9.75,13.25-14.562c4.688-4.719,9.531-9.062,14.438-13.25c6.422-5.469,12.953-10.438,19.484-14.891\r\n\t\tc6.547,4.453,13.062,9.422,19.484,14.891c4.906,4.188,9.767,8.547,14.47,13.25c4.719,4.719,9.062,9.594,13.25,14.5\r\n\t\tC308.656,242.969,313.75,249.469,318.203,256z M256,144c8.531,0,17.422,6.5,25.219,18.125c-8.234,3.281-16.688,7.594-25.219,12.781\r\n\t\tc-8.531-5.172-17-9.5-25.219-12.781C238.562,150.5,247.469,144,256,144z M176.797,176.812c4.297-4.281,10.672-6.469,18.984-6.469\r\n\t\tc3.688,0,7.656,0.531,11.766,1.344c4.922,0.969,10.141,2.594,15.484,4.625c5.922,2.266,11.984,4.969,18.219,8.422\r\n\t\tc-3.688,2.672-7.344,5.547-10.969,8.516c-5.969,4.875-11.844,10.031-17.578,15.656c-0.641,0.625-1.328,1.188-1.953,1.844\r\n\t\tc-0.656,0.641-1.25,1.312-1.891,1.969c-5.578,5.688-10.812,11.469-15.594,17.297c-2.984,3.641-5.766,7.297-8.438,10.969\r\n\t\tc-3.391-6.203-6.266-12.25-8.438-17.984c-2.047-5.438-3.641-10.656-4.594-15.5C169.078,193.766,170.75,182.844,176.797,176.812z\r\n\t\t M162.156,281.25C150.531,273.453,144,264.547,144,256c0-8.531,6.516-17.438,18.156-25.234c3.25,8.203,7.516,16.672,12.719,25.234\r\n\t\tC169.672,264.594,165.406,273.047,162.156,281.25z M223.031,335.703c-5.344,2.047-10.562,3.672-15.469,4.641\r\n\t\tc-4.109,0.797-8.078,1.328-11.781,1.328c-8.297,0-14.688-2.188-18.969-6.469c-6.047-6.047-7.719-16.953-5-30.703\r\n\t\tc0.953-4.828,2.531-10.047,4.594-15.5c2.156-5.719,5.047-11.766,8.422-17.969c2.672,3.672,5.453,7.328,8.453,10.969\r\n\t\tc4.766,5.828,10,11.594,15.562,17.281c0.656,0.656,1.25,1.328,1.906,1.984c0.641,0.641,1.312,1.202,1.969,1.844\r\n\t\tc5.719,5.608,11.594,10.781,17.531,15.641c3.656,2.984,7.312,5.859,11,8.531C235.031,330.734,228.969,333.438,223.031,335.703z\r\n\t\t M256,368c-8.531,0-17.422-6.5-25.203-18.109c8.219-3.281,16.672-7.608,25.188-12.797c8.531,5.203,16.984,9.531,25.219,12.812\r\n\t\tC273.422,361.5,264.531,368,256,368z M335.188,335.203c-4.297,4.297-10.688,6.469-19,6.469c-3.688,0-7.655-0.531-11.75-1.328\r\n\t\tc-4.922-0.969-10.125-2.594-15.483-4.641c-5.922-2.25-11.984-4.969-18.234-8.422c3.703-2.672,7.345-5.547,11-8.531\r\n\t\tc5.953-4.875,11.845-10.047,17.578-15.672c0.642-0.641,1.312-1.188,1.953-1.828c0.625-0.625,1.156-1.312,1.767-1.938\r\n\t\tc5.577-5.688,10.858-11.517,15.719-17.47c3-3.672,5.655-7.391,8.358-11.125c3.392,6.173,6.297,12.267,8.578,18.25\r\n\t\tc0.234,0.595,0.578,1.203,0.797,1.781c1.75,4.812,3,9.375,3.875,13.688C343.078,318.125,341.375,329.031,335.188,335.203z\r\n\t\t M349.75,281.297c-3.328-8.328-7.719-16.797-12.875-25.297c5.156-8.5,9.562-16.969,12.875-25.297\r\n\t\tC361.438,238.5,368,247.438,368,256C368,264.562,361.438,273.5,349.75,281.297z"},"children":[{"name":"path","attribs":{"d":"M384,256c0-15.719-10.797-29.953-28.953-40.969c5.266-21.25,2.422-38.594-8.531-49.531\r\n\t\tc-7.297-7.312-17.78-11.156-30.297-11.156c-6.016,0-12.5,1.078-19.188,2.719C286,138.844,271.75,128,256,128\r\n\t\ts-30,10.844-41.031,29.062c-6.688-1.625-13.188-2.719-19.188-2.719c-12.531,0-23,3.859-30.297,11.156\r\n\t\tc-11.125,11.125-13.547,28.844-8.484,49.5c-18.188,11.031-29,25.266-29,41c0,15.733,10.812,29.969,29,41\r\n\t\tc-5.062,20.672-2.625,38.392,8.5,49.517c7.281,7.297,17.766,11.155,30.281,11.155c6.016,0,12.5-1.078,19.188-2.719\r\n\t\tC226,373.172,240.25,384,256,384s30-10.828,41.031-29.047c6.672,1.641,13.156,2.719,19.156,2.719\r\n\t\tc12.53,0,23.016-3.859,30.312-11.156c10.953-10.938,13.797-28.297,8.531-49.531C373.203,285.953,384,271.719,384,256z\r\n\t\t M288.969,176.312c5.344-2.047,10.562-3.672,15.484-4.625c4.094-0.812,8.078-1.344,11.766-1.344c8.312,0,14.688,2.172,18.984,6.469\r\n\t\tc6.188,6.172,7.891,17.062,5.156,30.75c-0.859,4.312-2.125,8.875-3.875,13.719c-0.203,0.562-0.562,1.188-0.781,1.75\r\n\t\tc-2.297,6-5.203,12.094-8.609,18.25c-2.703-3.719-5.344-7.438-8.344-11.109c-4.875-5.953-10.156-11.797-15.734-17.484\r\n\t\tc-0.625-0.625-1.141-1.312-1.766-1.938c-0.641-0.625-1.312-1.188-1.953-1.812c-5.734-5.625-11.625-10.812-17.594-15.688\r\n\t\tc-3.641-2.984-7.281-5.844-10.969-8.516C276.969,181.281,283.031,178.562,288.969,176.312z M318.203,256\r\n\t\tc-4.453,6.562-9.547,13.047-15.016,19.438c-4.188,4.906-8.531,9.781-13.25,14.5c-4.703,4.703-9.547,9.062-14.453,13.234\r\n\t\tc-6.422,5.484-12.953,10.469-19.5,14.922c-6.547-4.453-13.078-9.438-19.516-14.922c-4.875-4.172-9.719-8.516-14.406-13.219\r\n\t\tc-4.844-4.828-9.109-9.703-13.25-14.562c-5.531-6.516-10.594-12.983-14.906-19.391c4.312-6.391,9.375-12.875,14.906-19.375\r\n\t\tc4.141-4.875,8.406-9.75,13.25-14.562c4.688-4.719,9.531-9.062,14.438-13.25c6.422-5.469,12.953-10.438,19.484-14.891\r\n\t\tc6.547,4.453,13.062,9.422,19.484,14.891c4.906,4.188,9.767,8.547,14.47,13.25c4.719,4.719,9.062,9.594,13.25,14.5\r\n\t\tC308.656,242.969,313.75,249.469,318.203,256z M256,144c8.531,0,17.422,6.5,25.219,18.125c-8.234,3.281-16.688,7.594-25.219,12.781\r\n\t\tc-8.531-5.172-17-9.5-25.219-12.781C238.562,150.5,247.469,144,256,144z M176.797,176.812c4.297-4.281,10.672-6.469,18.984-6.469\r\n\t\tc3.688,0,7.656,0.531,11.766,1.344c4.922,0.969,10.141,2.594,15.484,4.625c5.922,2.266,11.984,4.969,18.219,8.422\r\n\t\tc-3.688,2.672-7.344,5.547-10.969,8.516c-5.969,4.875-11.844,10.031-17.578,15.656c-0.641,0.625-1.328,1.188-1.953,1.844\r\n\t\tc-0.656,0.641-1.25,1.312-1.891,1.969c-5.578,5.688-10.812,11.469-15.594,17.297c-2.984,3.641-5.766,7.297-8.438,10.969\r\n\t\tc-3.391-6.203-6.266-12.25-8.438-17.984c-2.047-5.438-3.641-10.656-4.594-15.5C169.078,193.766,170.75,182.844,176.797,176.812z\r\n\t\t M162.156,281.25C150.531,273.453,144,264.547,144,256c0-8.531,6.516-17.438,18.156-25.234c3.25,8.203,7.516,16.672,12.719,25.234\r\n\t\tC169.672,264.594,165.406,273.047,162.156,281.25z M223.031,335.703c-5.344,2.047-10.562,3.672-15.469,4.641\r\n\t\tc-4.109,0.797-8.078,1.328-11.781,1.328c-8.297,0-14.688-2.188-18.969-6.469c-6.047-6.047-7.719-16.953-5-30.703\r\n\t\tc0.953-4.828,2.531-10.047,4.594-15.5c2.156-5.719,5.047-11.766,8.422-17.969c2.672,3.672,5.453,7.328,8.453,10.969\r\n\t\tc4.766,5.828,10,11.594,15.562,17.281c0.656,0.656,1.25,1.328,1.906,1.984c0.641,0.641,1.312,1.202,1.969,1.844\r\n\t\tc5.719,5.608,11.594,10.781,17.531,15.641c3.656,2.984,7.312,5.859,11,8.531C235.031,330.734,228.969,333.438,223.031,335.703z\r\n\t\t M256,368c-8.531,0-17.422-6.5-25.203-18.109c8.219-3.281,16.672-7.608,25.188-12.797c8.531,5.203,16.984,9.531,25.219,12.812\r\n\t\tC273.422,361.5,264.531,368,256,368z M335.188,335.203c-4.297,4.297-10.688,6.469-19,6.469c-3.688,0-7.655-0.531-11.75-1.328\r\n\t\tc-4.922-0.969-10.125-2.594-15.483-4.641c-5.922-2.25-11.984-4.969-18.234-8.422c3.703-2.672,7.345-5.547,11-8.531\r\n\t\tc5.953-4.875,11.845-10.047,17.578-15.672c0.642-0.641,1.312-1.188,1.953-1.828c0.625-0.625,1.156-1.312,1.767-1.938\r\n\t\tc5.577-5.688,10.858-11.517,15.719-17.47c3-3.672,5.655-7.391,8.358-11.125c3.392,6.173,6.297,12.267,8.578,18.25\r\n\t\tc0.234,0.595,0.578,1.203,0.797,1.781c1.75,4.812,3,9.375,3.875,13.688C343.078,318.125,341.375,329.031,335.188,335.203z\r\n\t\t M349.75,281.297c-3.328-8.328-7.719-16.797-12.875-25.297c5.156-8.5,9.562-16.969,12.875-25.297\r\n\t\tC361.438,238.5,368,247.438,368,256C368,264.562,361.438,273.5,349.75,281.297z"},"children":[]}]}]},{"name":"path","attribs":{"d":"M288,256c0,17.672-14.328,32-32,32c-17.656,0-32-14.328-32-32c0-17.656,14.344-32,32-32C273.672,224,288,238.344,288,256z"},"children":[]}]};exports.atom=atom;var axisRules={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"128","y":"128","fill-rule":"evenodd","clip-rule":"evenodd","width":"64","height":"64"},"children":[{"name":"rect","attribs":{"x":"128","y":"128","fill-rule":"evenodd","clip-rule":"evenodd","width":"64","height":"64"},"children":[]}]},{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"368,128 368,160 352,160 352,128 336,128 336,144 320,144 320,128 \r\n\t\t304,128 304,160 288,160 288,128 272,128 272,144 256,144 256,128 240,128 240,160 224,160 224,128 208,128 208,192 368,192 \r\n\t\t368,368 192,368 192,208 128,208 128,224 144,224 144,240 128,240 128,256 160,256 160,272 128,272 128,288 144,288 144,304 \r\n\t\t128,304 128,320 160,320 160,336 128,336 128,352 144,352 144,368 128,368 128,384 384,384 384,128 \t"},"children":[{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"368,128 368,160 352,160 352,128 336,128 336,144 320,144 320,128 \r\n\t\t304,128 304,160 288,160 288,128 272,128 272,144 256,144 256,128 240,128 240,160 224,160 224,128 208,128 208,192 368,192 \r\n\t\t368,368 192,368 192,208 128,208 128,224 144,224 144,240 128,240 128,256 160,256 160,272 128,272 128,288 144,288 144,304 \r\n\t\t128,304 128,320 160,320 160,336 128,336 128,352 144,352 144,368 128,368 128,384 384,384 384,128 \t"},"children":[]}]}]}]};exports.axisRules=axisRules;var backward={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"polygon","attribs":{"points":"336,336 336,176 240,256 \t"},"children":[{"name":"polygon","attribs":{"points":"336,336 336,176 240,256 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"144,256 240,336 240,256 240,176 \t"},"children":[{"name":"polygon","attribs":{"points":"144,256 240,336 240,256 240,176 \t"},"children":[]}]}]}]};exports.backward=backward;var bag={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M368,208.5h-16.5v160H368c8.844,0,15.5-7.656,15.5-16.5V224C383.5,215.156,376.844,208.5,368,208.5z"},"children":[{"name":"path","attribs":{"d":"M368,208.5h-16.5v160H368c8.844,0,15.5-7.656,15.5-16.5V224C383.5,215.156,376.844,208.5,368,208.5z"},"children":[]}]},{"name":"rect","attribs":{"x":"175.5","y":"208.5","width":"160","height":"160"},"children":[{"name":"rect","attribs":{"x":"175.5","y":"208.5","width":"160","height":"160"},"children":[]}]},{"name":"path","attribs":{"d":"M159.5,208.5H144c-8.836,0-16.5,6.656-16.5,15.5v128c0,8.844,7.664,16.5,16.5,16.5h15.5V208.5z"},"children":[{"name":"path","attribs":{"d":"M159.5,208.5H144c-8.836,0-16.5,6.656-16.5,15.5v128c0,8.844,7.664,16.5,16.5,16.5h15.5V208.5z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M288,144.5h-64c-8.836,0-16.5,6.656-16.5,15.5v32.5h16V168c0-4.422,4.078-7.5,8.5-7.5h48c4.422,0,7.5,3.078,7.5,7.5v24.5\r\n\t\t\th16V160C303.5,151.156,296.844,144.5,288,144.5z"},"children":[{"name":"path","attribs":{"d":"M288,144.5h-64c-8.836,0-16.5,6.656-16.5,15.5v32.5h16V168c0-4.422,4.078-7.5,8.5-7.5h48c4.422,0,7.5,3.078,7.5,7.5v24.5\r\n\t\t\th16V160C303.5,151.156,296.844,144.5,288,144.5z"},"children":[]}]}]}]}]}]};exports.bag=bag;var banCircle={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"path","attribs":{"d":"M165.5,165.484c-50,49.984-50,131.047,0,181.031c49.969,49.984,131.031,49.984,181.016,0s49.984-131.047,0-181.031\r\n\t\tS215.469,115.5,165.5,165.484z M188.125,188.109c33.547-33.547,85.844-36.781,123.297-10.172L177.938,311.422\r\n\t\tC151.344,273.969,154.562,221.656,188.125,188.109z M323.875,323.875c-33.547,33.562-85.828,36.781-123.297,10.172l133.469-133.484\r\n\t\tC360.656,238.031,357.438,290.328,323.875,323.875z"},"children":[{"name":"path","attribs":{"d":"M165.5,165.484c-50,49.984-50,131.047,0,181.031c49.969,49.984,131.031,49.984,181.016,0s49.984-131.047,0-181.031\r\n\t\tS215.469,115.5,165.5,165.484z M188.125,188.109c33.547-33.547,85.844-36.781,123.297-10.172L177.938,311.422\r\n\t\tC151.344,273.969,154.562,221.656,188.125,188.109z M323.875,323.875c-33.547,33.562-85.828,36.781-123.297,10.172l133.469-133.484\r\n\t\tC360.656,238.031,357.438,290.328,323.875,323.875z"},"children":[]}]}]}]};exports.banCircle=banCircle;var bars={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M144,368h32V144h-32V368z M192,368h32v-32h-32V368z M240,368h32V256h-32V368z\r\n\t\t\t M288,368h32V192h-32V368z M336,288v80h32v-80H336z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M144,368h32V144h-32V368z M192,368h32v-32h-32V368z M240,368h32V256h-32V368z\r\n\t\t\t M288,368h32V192h-32V368z M336,288v80h32v-80H336z"},"children":[]}]}]}]}]}]};exports.bars=bars;var bezier={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"path","attribs":{"d":"M368,288c0-61.75-50.25-112-112-112c-61.758,0-112,50.25-112,112h-16v48h48v-48h-16c0-52.938,43.062-96,96-96\r\n\ts96,43.062,96,96h-16v48h48v-48H368z M160,320h-16v-16h16V320z M368,320h-16v-16h16V320z"},"children":[]}]};exports.bezier=bezier;var blank={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]};exports.blank=blank;var blockMenu={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"151.5","y":"184.5","fill-rule":"evenodd","clip-rule":"evenodd","width":"192","height":"32"},"children":[{"name":"rect","attribs":{"x":"151.5","y":"184.5","fill-rule":"evenodd","clip-rule":"evenodd","width":"192","height":"32"},"children":[]}]},{"name":"rect","attribs":{"x":"151.5","y":"248.5","fill-rule":"evenodd","clip-rule":"evenodd","width":"192","height":"32"},"children":[{"name":"rect","attribs":{"x":"151.5","y":"248.5","fill-rule":"evenodd","clip-rule":"evenodd","width":"192","height":"32"},"children":[]}]},{"name":"rect","attribs":{"x":"151.5","y":"312.5","fill-rule":"evenodd","clip-rule":"evenodd","width":"192","height":"32"},"children":[{"name":"rect","attribs":{"x":"151.5","y":"312.5","fill-rule":"evenodd","clip-rule":"evenodd","width":"192","height":"32"},"children":[]}]}]}]};exports.blockMenu=blockMenu;var bolt={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"polygon","attribs":{"points":"208,271.5 251.203,271.5 208,383.688 304,239.5 261.656,239.5 304,127.688 "},"children":[]}]};exports.bolt=bolt;var boxAdd={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"271.5,160.5 351.5,160.5 351.5,240.5 383.5,240.5 383.5,128.5 271.5,128.5 \t\t"},"children":[{"name":"polygon","attribs":{"points":"271.5,160.5 351.5,160.5 351.5,240.5 383.5,240.5 383.5,128.5 271.5,128.5 \t\t"},"children":[]}]},{"name":"polygon","attribs":{"points":"159.5,240.5 159.5,160.5 239.5,160.5 239.5,128.5 127.5,128.5 127.5,240.5 \t\t"},"children":[{"name":"polygon","attribs":{"points":"159.5,240.5 159.5,160.5 239.5,160.5 239.5,128.5 127.5,128.5 127.5,240.5 \t\t"},"children":[]}]},{"name":"polygon","attribs":{"points":"239.5,352.5 159.5,352.5 159.5,272.5 127.5,272.5 127.5,384.5 239.5,384.5 \t\t"},"children":[{"name":"polygon","attribs":{"points":"239.5,352.5 159.5,352.5 159.5,272.5 127.5,272.5 127.5,384.5 239.5,384.5 \t\t"},"children":[]}]},{"name":"polygon","attribs":{"points":"351.5,272.5 351.5,352.5 271.5,352.5 271.5,384.5 383.5,384.5 383.5,272.5 \t\t"},"children":[{"name":"polygon","attribs":{"points":"351.5,272.5 351.5,352.5 271.5,352.5 271.5,384.5 383.5,384.5 383.5,272.5 \t\t"},"children":[]}]}]}]},{"name":"rect","attribs":{"x":"239.5","y":"192.5","width":"32","height":"128"},"children":[{"name":"rect","attribs":{"x":"239.5","y":"192.5","width":"32","height":"128"},"children":[]}]},{"name":"rect","attribs":{"x":"191.5","y":"240.5","width":"128","height":"32"},"children":[{"name":"rect","attribs":{"x":"191.5","y":"240.5","width":"128","height":"32"},"children":[]}]}]}]};exports.boxAdd=boxAdd;var boxBlank={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"272,160 352,160 352,240 384,240 384,128 272,128 \t"},"children":[{"name":"polygon","attribs":{"points":"272,160 352,160 352,240 384,240 384,128 272,128 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"160,240 160,160 240,160 240,128 128,128 128,240 \t"},"children":[{"name":"polygon","attribs":{"points":"160,240 160,160 240,160 240,128 128,128 128,240 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"240,352 160,352 160,272 128,272 128,384 240,384 \t"},"children":[{"name":"polygon","attribs":{"points":"240,352 160,352 160,272 128,272 128,384 240,384 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"352,272 352,352 272,352 272,384 384,384 384,272 \t"},"children":[{"name":"polygon","attribs":{"points":"352,272 352,352 272,352 272,384 384,384 384,272 \t"},"children":[]}]}]}]};exports.boxBlank=boxBlank;var boxClose={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256c0,141.391,114.609,256,256,256c141.391,0,256-114.609,256-256\r\n\t\tC512,114.609,397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z\r\n\t\t"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256c0,141.391,114.609,256,256,256c141.391,0,256-114.609,256-256\r\n\t\tC512,114.609,397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z\r\n\t\t"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"272,160 352,160 352,240 384,240 384,128 272,128 \t\t"},"children":[{"name":"polygon","attribs":{"points":"272,160 352,160 352,240 384,240 384,128 272,128 \t\t"},"children":[]}]},{"name":"polygon","attribs":{"points":"160,240 160,160 240,160 240,128 128,128 128,240 \t\t"},"children":[{"name":"polygon","attribs":{"points":"160,240 160,160 240,160 240,128 128,128 128,240 \t\t"},"children":[]}]},{"name":"polygon","attribs":{"points":"240,352 160,352 160,272 128,272 128,384 240,384 \t\t"},"children":[{"name":"polygon","attribs":{"points":"240,352 160,352 160,272 128,272 128,384 240,384 \t\t"},"children":[]}]},{"name":"polygon","attribs":{"points":"352,272 352,352 272,352 272,384 384,384 384,272 \t\t"},"children":[{"name":"polygon","attribs":{"points":"352,272 352,352 272,352 272,384 384,384 384,272 \t\t"},"children":[]}]}]}]},{"name":"rect","attribs":{"x":"240.002","y":"192.008","transform":"matrix(-0.7071 -0.7071 0.7071 -0.7071 256.0004 618.0388)","width":"31.997","height":"127.985"},"children":[{"name":"rect","attribs":{"x":"240.002","y":"192.008","transform":"matrix(-0.7071 -0.7071 0.7071 -0.7071 256.0004 618.0388)","width":"31.997","height":"127.985"},"children":[]}]},{"name":"rect","attribs":{"x":"192.008","y":"240.002","transform":"matrix(-0.7071 -0.7071 0.7071 -0.7071 256.0034 618.0388)","width":"127.985","height":"31.997"},"children":[{"name":"rect","attribs":{"x":"192.008","y":"240.002","transform":"matrix(-0.7071 -0.7071 0.7071 -0.7071 256.0034 618.0388)","width":"127.985","height":"31.997"},"children":[]}]}]}]};exports.boxClose=boxClose;var boxRemove={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256c0,141.391,114.609,256,256,256c141.391,0,256-114.609,256-256\r\n\tC512,114.609,397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"272,160 352,160 352,240 384,240 384,128 272,128 \t"},"children":[{"name":"polygon","attribs":{"points":"272,160 352,160 352,240 384,240 384,128 272,128 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"160,240 160,160 240,160 240,128 128,128 128,240 \t"},"children":[{"name":"polygon","attribs":{"points":"160,240 160,160 240,160 240,128 128,128 128,240 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"240,352 160,352 160,272 128,272 128,384 240,384 \t"},"children":[{"name":"polygon","attribs":{"points":"240,352 160,352 160,272 128,272 128,384 240,384 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"352,272 352,352 272,352 272,384 384,384 384,272 \t"},"children":[{"name":"polygon","attribs":{"points":"352,272 352,352 272,352 272,384 384,384 384,272 \t"},"children":[]}]}]},{"name":"rect","attribs":{"x":"192","y":"240","width":"128","height":"32"},"children":[]}]};exports.boxRemove=boxRemove;var browserSizes={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\t\tS397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\t\tS397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"rect","attribs":{"x":"192","y":"208","fill-rule":"evenodd","clip-rule":"evenodd","width":"128","height":"96"},"children":[{"name":"rect","attribs":{"x":"192","y":"208","fill-rule":"evenodd","clip-rule":"evenodd","width":"128","height":"96"},"children":[]}]},{"name":"rect","attribs":{"x":"336","y":"192","fill-rule":"evenodd","clip-rule":"evenodd","width":"16","height":"128"},"children":[{"name":"rect","attribs":{"x":"336","y":"192","fill-rule":"evenodd","clip-rule":"evenodd","width":"16","height":"128"},"children":[]}]},{"name":"rect","attribs":{"x":"368","y":"160","fill-rule":"evenodd","clip-rule":"evenodd","width":"16","height":"192"},"children":[{"name":"rect","attribs":{"x":"368","y":"160","fill-rule":"evenodd","clip-rule":"evenodd","width":"16","height":"192"},"children":[]}]},{"name":"rect","attribs":{"x":"160","y":"192","fill-rule":"evenodd","clip-rule":"evenodd","width":"16","height":"128"},"children":[{"name":"rect","attribs":{"x":"160","y":"192","fill-rule":"evenodd","clip-rule":"evenodd","width":"16","height":"128"},"children":[]}]},{"name":"rect","attribs":{"x":"128","y":"160","fill-rule":"evenodd","clip-rule":"evenodd","width":"16","height":"192"},"children":[{"name":"rect","attribs":{"x":"128","y":"160","fill-rule":"evenodd","clip-rule":"evenodd","width":"16","height":"192"},"children":[]}]}]}]};exports.browserSizes=browserSizes;var brush={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"path","attribs":{"d":"M223.07,317.875c20.578-15.703,48.273-41.188,77.195-71.852c53.297-56.531,90.359-108.906,82.734-116.969\r\n\tc-7.609-8.094-57,31.188-110.328,87.719c-29.68,31.469-54.281,61.633-68.969,83.602c-7.141,0.391-35.023,3.75-39.617,32.531\r\n\tc0,0-19.016,48.188-33.75,50.297c-14.586,2.109,43.75-0.312,51.328-3.047C189.148,377.469,227.25,374.234,223.07,317.875z"},"children":[]}]};exports.brush=brush;var buttonAdd={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M256,128c-70.695,0-128,57.312-128,128s57.305,128,128,128\r\n\tc70.688,0,128-57.312,128-128S326.688,128,256,128z M320,272h-48v48h-32v-48h-48v-32h48v-48h32v48h48V272z"},"children":[]}]};exports.buttonAdd=buttonAdd;var buttonCheck={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"path","attribs":{"d":"M256,128c-70.688,0-128,57.312-128,128s57.312,128,128,128s128-57.312,128-128S326.688,128,256,128z M240,320l-48-48\r\n\tl22.398-25.594L240,272l72-80l24,25.594L240,320z"},"children":[]}]};exports.buttonCheck=buttonCheck;var buttonClose={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M256,128c-70.695,0-128,57.312-128,128s57.305,128,128,128\r\n\tc70.688,0,128-57.312,128-128S326.688,128,256,128z M312.562,289.938l-22.625,22.625L256,278.625l-33.938,33.938l-22.633-22.625\r\n\tL233.367,256l-33.938-33.938l22.633-22.625L256,233.375l33.938-33.938l22.625,22.625L278.625,256L312.562,289.938z"},"children":[]}]};exports.buttonClose=buttonClose;var buttonEmail={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M259.203,231.438c-3.391,0-6.734,1.062-10.078,3.234c-3.312,2.156-6.312,4.891-8.938,8.188\r\n\t\tc-2.625,3.312-4.75,6.891-6.312,10.781c-1.578,3.922-2.359,7.609-2.359,11.094c0,2.156,0.297,4.281,0.844,6.391\r\n\t\tc0.578,2.125,1.453,4,2.672,5.656c1.172,1.703,2.703,3.062,4.594,4.078c1.875,1.016,4.156,1.516,6.781,1.516\r\n\t\tc4.75,0,9.344-1.594,13.719-4.75c4.391-3.219,7.625-7.75,9.609-13.625c1.016-3.109,1.797-5.688,2.344-7.734\r\n\t\tc0.547-2.031,1.031-3.688,1.312-4.953c0.359-1.25,0.516-2.203,0.547-2.875c0.094-0.672,0.109-1.234,0.109-1.703\r\n\t\tc0-4.562-1.438-8.25-4.312-11.062C266.844,232.828,263.328,231.438,259.203,231.438z"},"children":[{"name":"path","attribs":{"d":"M259.203,231.438c-3.391,0-6.734,1.062-10.078,3.234c-3.312,2.156-6.312,4.891-8.938,8.188\r\n\t\tc-2.625,3.312-4.75,6.891-6.312,10.781c-1.578,3.922-2.359,7.609-2.359,11.094c0,2.156,0.297,4.281,0.844,6.391\r\n\t\tc0.578,2.125,1.453,4,2.672,5.656c1.172,1.703,2.703,3.062,4.594,4.078c1.875,1.016,4.156,1.516,6.781,1.516\r\n\t\tc4.75,0,9.344-1.594,13.719-4.75c4.391-3.219,7.625-7.75,9.609-13.625c1.016-3.109,1.797-5.688,2.344-7.734\r\n\t\tc0.547-2.031,1.031-3.688,1.312-4.953c0.359-1.25,0.516-2.203,0.547-2.875c0.094-0.672,0.109-1.234,0.109-1.703\r\n\t\tc0-4.562-1.438-8.25-4.312-11.062C266.844,232.828,263.328,231.438,259.203,231.438z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,128c-70.703,0-128,57.312-128,128s57.297,128,128,128c70.688,0,128-57.312,128-128S326.688,128,256,128z\r\n\t\t M316.328,265.109c-2.453,6-5.719,11.031-9.781,15.125c-4.062,4.047-8.734,7.141-13.953,9.156\r\n\t\tc-5.203,2.078-10.578,3.094-16.078,3.094c-3.266,0-5.875-1-7.828-2.984c-1.953-2-3.031-4.375-3.281-7.125\r\n\t\tc-2.625,3.609-5.594,6.156-8.828,7.75c-3.297,1.531-7.109,2.359-11.484,2.359c-4.031,0-7.641-0.766-10.844-2.266\r\n\t\tc-3.188-1.484-5.875-3.484-8.094-5.969c-2.172-2.406-3.875-5.25-5.094-8.359c-1.188-3.125-1.781-6.281-1.781-9.516\r\n\t\tc0-5.312,1-10.625,2.938-16.062c1.953-5.375,4.641-10.266,8.094-14.641c3.438-4.375,7.609-7.969,12.5-10.734\r\n\t\tc4.906-2.75,10.312-4.125,16.188-4.125c2.891,0,5.469,0.484,7.719,1.438s4.156,2.125,5.75,3.5c1.562,1.375,2.875,2.797,3.938,4.25\r\n\t\tc1.047,1.438,1.812,2.938,2.188,4.016L282.375,224h11.484l-14.719,48.531c-0.641,2.188-0.922,3.812-0.922,5.109\r\n\t\tc0,2.984,1.203,4.438,3.766,4.438c1.484,0,3.703-0.453,6.672-1.391c2.922-0.906,5.906-2.703,8.906-5.422\r\n\t\tc3.016-2.656,5.641-6.391,7.938-11.141c2.25-4.75,3.406-11.016,3.406-18.828c0-6.359-1.312-12.172-3.938-17.484\r\n\t\tc-2.703-5.25-6.234-9.812-10.688-13.578c-4.453-3.797-9.547-6.734-15.312-8.812c-5.75-2.109-11.75-3.172-17.891-3.172\r\n\t\tc-8.141,0-15.719,1.438-22.672,4.25c-6.969,2.812-13.047,6.75-18.25,11.797c-5.219,5.016-9.281,11.016-12.25,17.906\r\n\t\tc-2.938,6.906-4.422,14.359-4.422,22.422c0,7.656,1.516,14.656,4.625,20.969c3.078,6.281,7.141,11.656,12.234,16.125\r\n\t\tc5.078,4.422,10.906,7.812,17.5,10.25c6.594,2.406,13.438,3.625,20.594,3.625c9.672,0,18.188-2.391,25.516-6.109\r\n\t\tC291.281,299.734,297.156,288,301.5,288H313c-2.109,0-5.141,10.359-9.078,14.219c-4,3.859-8.484,7.281-13.578,9.875\r\n\t\tc-5.078,2.562-10.578,4.656-16.562,5.906c-5.969,1.25-12.031,1.938-18.156,1.938c-8.172,0-16.078-1.469-23.719-4.469\r\n\t\tc-7.656-3-14.438-7.203-20.312-12.594c-5.906-5.391-10.656-11.797-14.234-19.266c-3.547-7.406-5.359-15.578-5.359-24.484\r\n\t\tc0-10.312,1.891-19.609,5.656-27.875c3.75-8.297,8.812-15.328,15.156-21.141c6.344-5.844,13.656-10.312,22.016-13.422\r\n\t\tc8.359-3.125,17.141-4.688,26.453-4.688c7.516,0,14.828,1.297,21.906,3.875c7.078,2.562,13.344,6.188,18.812,10.797\r\n\t\tc5.469,4.641,9.812,10.141,13.078,16.578c3.266,6.391,4.922,13.438,4.922,21.141C320,252.188,318.734,259.078,316.328,265.109z"},"children":[{"name":"path","attribs":{"d":"M256,128c-70.703,0-128,57.312-128,128s57.297,128,128,128c70.688,0,128-57.312,128-128S326.688,128,256,128z\r\n\t\t M316.328,265.109c-2.453,6-5.719,11.031-9.781,15.125c-4.062,4.047-8.734,7.141-13.953,9.156\r\n\t\tc-5.203,2.078-10.578,3.094-16.078,3.094c-3.266,0-5.875-1-7.828-2.984c-1.953-2-3.031-4.375-3.281-7.125\r\n\t\tc-2.625,3.609-5.594,6.156-8.828,7.75c-3.297,1.531-7.109,2.359-11.484,2.359c-4.031,0-7.641-0.766-10.844-2.266\r\n\t\tc-3.188-1.484-5.875-3.484-8.094-5.969c-2.172-2.406-3.875-5.25-5.094-8.359c-1.188-3.125-1.781-6.281-1.781-9.516\r\n\t\tc0-5.312,1-10.625,2.938-16.062c1.953-5.375,4.641-10.266,8.094-14.641c3.438-4.375,7.609-7.969,12.5-10.734\r\n\t\tc4.906-2.75,10.312-4.125,16.188-4.125c2.891,0,5.469,0.484,7.719,1.438s4.156,2.125,5.75,3.5c1.562,1.375,2.875,2.797,3.938,4.25\r\n\t\tc1.047,1.438,1.812,2.938,2.188,4.016L282.375,224h11.484l-14.719,48.531c-0.641,2.188-0.922,3.812-0.922,5.109\r\n\t\tc0,2.984,1.203,4.438,3.766,4.438c1.484,0,3.703-0.453,6.672-1.391c2.922-0.906,5.906-2.703,8.906-5.422\r\n\t\tc3.016-2.656,5.641-6.391,7.938-11.141c2.25-4.75,3.406-11.016,3.406-18.828c0-6.359-1.312-12.172-3.938-17.484\r\n\t\tc-2.703-5.25-6.234-9.812-10.688-13.578c-4.453-3.797-9.547-6.734-15.312-8.812c-5.75-2.109-11.75-3.172-17.891-3.172\r\n\t\tc-8.141,0-15.719,1.438-22.672,4.25c-6.969,2.812-13.047,6.75-18.25,11.797c-5.219,5.016-9.281,11.016-12.25,17.906\r\n\t\tc-2.938,6.906-4.422,14.359-4.422,22.422c0,7.656,1.516,14.656,4.625,20.969c3.078,6.281,7.141,11.656,12.234,16.125\r\n\t\tc5.078,4.422,10.906,7.812,17.5,10.25c6.594,2.406,13.438,3.625,20.594,3.625c9.672,0,18.188-2.391,25.516-6.109\r\n\t\tC291.281,299.734,297.156,288,301.5,288H313c-2.109,0-5.141,10.359-9.078,14.219c-4,3.859-8.484,7.281-13.578,9.875\r\n\t\tc-5.078,2.562-10.578,4.656-16.562,5.906c-5.969,1.25-12.031,1.938-18.156,1.938c-8.172,0-16.078-1.469-23.719-4.469\r\n\t\tc-7.656-3-14.438-7.203-20.312-12.594c-5.906-5.391-10.656-11.797-14.234-19.266c-3.547-7.406-5.359-15.578-5.359-24.484\r\n\t\tc0-10.312,1.891-19.609,5.656-27.875c3.75-8.297,8.812-15.328,15.156-21.141c6.344-5.844,13.656-10.312,22.016-13.422\r\n\t\tc8.359-3.125,17.141-4.688,26.453-4.688c7.516,0,14.828,1.297,21.906,3.875c7.078,2.562,13.344,6.188,18.812,10.797\r\n\t\tc5.469,4.641,9.812,10.141,13.078,16.578c3.266,6.391,4.922,13.438,4.922,21.141C320,252.188,318.734,259.078,316.328,265.109z"},"children":[]}]}]}]};exports.buttonEmail=buttonEmail;var buttonExclamation={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256-2C114.609-2,0,112.609,0,254s114.609,256,256,256s256-114.609,256-256S397.391-2,256-2z M256,470\r\n\tc-119.297,0-216-96.703-216-216S136.703,38,256,38s216,96.703,216,216S375.297,470,256,470z"},"children":[]},{"name":"path","attribs":{"d":"M256,126c-70.688,0-128,57.312-128,128s57.312,128,128,128s128-57.312,128-128S326.688,126,256,126z M256,318\r\n\tc-8.844,0-16-7.156-16-16s7.156-16,16-16s16,7.156,16,16S264.844,318,256,318z M264,270h-16l-8-80h32L264,270z"},"children":[]}]};exports.buttonExclamation=buttonExclamation;var buttonMinus={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M256,128c-70.695,0-128,57.312-128,128s57.305,128,128,128\r\n\tc70.688,0,128-57.312,128-128S326.688,128,256,128z M320,272H192v-32h128V272z"},"children":[]}]};exports.buttonMinus=buttonMinus;var buttonQuestion={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"path","attribs":{"d":"M256,128c-70.688,0-128,57.312-128,128s57.312,128,128,128s128-57.312,128-128S326.688,128,256,128z M251.375,322\r\n\tc-10.172,0-17.078-7.484-17.078-17.469c0-10.344,7.094-17.453,17.078-17.453c10.344,0,17.062,7.109,17.281,17.453\r\n\tC268.656,314.516,261.938,322,251.375,322z M278.188,250.422c-6.906,7.859-6.188,15.359-6.188,23.984V272h-32.719l-0.188-2.062\r\n\tc-0.578-9.781,2.688-18.297,11.312-28.469c6.156-7.484,11.125-13.078,11.125-19.422c0-6.703-4.406-10.953-14-11.141\r\n\tc-6.328,0-14,2.484-19,5.938l-6.516-20.812c7.094-4.031,18.422-7.828,32.047-7.828c25.312,0,38.828,14.016,38.828,29.953\r\n\tC292.891,232.75,285.469,242.375,278.188,250.422z"},"children":[]}]};exports.buttonQuestion=buttonQuestion;var camera={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,224c-26.508,0-48,21.5-48,48c0,26.516,21.492,48,48,48c26.516,0,48-21.484,48-48C304,245.5,282.516,224,256,224z"},"children":[{"name":"path","attribs":{"d":"M256,224c-26.508,0-48,21.5-48,48c0,26.516,21.492,48,48,48c26.516,0,48-21.484,48-48C304,245.5,282.516,224,256,224z"},"children":[]}]},{"name":"path","attribs":{"d":"M368,192h-71.922c-3.641,0-7.312-14.547-8.078-16.078c-1.594-3.203-7.156-15.922-16-15.922h-32\r\n\t\tc-8.836,0-14.398,12.719-16,15.922c-0.766,1.531-4.438,16.078-8.078,16.078H144c-8.836,0-16,7.234-16,16.062v128.016\r\n\t\tc0,8.844,7.164,15.922,16,15.922h224c8.844,0,16-7.078,16-15.922V208.062C384,199.234,376.844,192,368,192z M256,336\r\n\t\tc-35.336,0-64-28.641-64-64c0-35.344,28.664-64,64-64c35.359,0,64,28.656,64,64C320,307.359,291.359,336,256,336z"},"children":[{"name":"path","attribs":{"d":"M368,192h-71.922c-3.641,0-7.312-14.547-8.078-16.078c-1.594-3.203-7.156-15.922-16-15.922h-32\r\n\t\tc-8.836,0-14.398,12.719-16,15.922c-0.766,1.531-4.438,16.078-8.078,16.078H144c-8.836,0-16,7.234-16,16.062v128.016\r\n\t\tc0,8.844,7.164,15.922,16,15.922h224c8.844,0,16-7.078,16-15.922V208.062C384,199.234,376.844,192,368,192z M256,336\r\n\t\tc-35.336,0-64-28.641-64-64c0-35.344,28.664-64,64-64c35.359,0,64,28.656,64,64C320,307.359,291.359,336,256,336z"},"children":[]}]}]}]};exports.camera=camera;var cdDvdRom={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,128c-70.688,0-128,57.312-128,128s57.312,128,128,128s128-57.312,128-128S326.688,128,256,128z M256,320\r\n\t\tc-35.344,0-64-28.688-64-64c0-35.344,28.656-64,64-64c35.312,0,64,28.656,64,64C320,291.312,291.312,320,256,320z"},"children":[{"name":"path","attribs":{"d":"M256,128c-70.688,0-128,57.312-128,128s57.312,128,128,128s128-57.312,128-128S326.688,128,256,128z M256,320\r\n\t\tc-35.344,0-64-28.688-64-64c0-35.344,28.656-64,64-64c35.312,0,64,28.656,64,64C320,291.312,291.312,320,256,320z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,218c-20.953,0-38,17.047-38,38s17.047,38,38,38s38-17.047,38-38S276.953,218,256,218z M256,272\r\n\t\tc-8.844,0-16-7.156-16-16s7.156-16,16-16s16,7.156,16,16S264.844,272,256,272z"},"children":[{"name":"path","attribs":{"d":"M256,218c-20.953,0-38,17.047-38,38s17.047,38,38,38s38-17.047,38-38S276.953,218,256,218z M256,272\r\n\t\tc-8.844,0-16-7.156-16-16s7.156-16,16-16s16,7.156,16,16S264.844,272,256,272z"},"children":[]}]}]}]};exports.cdDvdRom=cdDvdRom;var chartDown={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"path","attribs":{"d":"M383.5,136.5c0-4.418-3.582-8-8-8h-240c-4.418,0-8,3.582-8,8v240c0,4.418,3.582,8,8,8h240c4.418,0,8-3.582,8-8V136.5z\r\n\t M367.5,360.5c0,4.418-3.582,8-8,8h-208c-4.418,0-8-3.582-8-8v-208c0-4.418,3.582-8,8-8h208c4.418,0,8,3.582,8,8V360.5z"},"children":[]},{"name":"path","attribs":{"d":"M321.562,287.578L276.297,192l-48.469,51.188L186.922,200L176,211.547l51.828,54.719l44.234-46.719l35.734,75.438\r\n\tc-1.578,2.562-2.703,5.422-2.703,8.688c0,9.031,6.906,16.328,15.453,16.328S336,312.703,336,303.672\r\n\tC336,295.031,329.594,288.156,321.562,287.578z"},"children":[]}]};exports.chartDown=chartDown;var chat={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M384,207.828C384,163.75,341.016,128,288,128c-53,0-96,35.75-96,79.828c0,44.094,43,79.828,96,79.828\r\n\t\tc17.484,0,38.406-7.766,38.406-7.766l52.812,24.062l-11.234-51.281C367.984,252.672,384,227.344,384,207.828z M327.062,262.594\r\n\t\tl-6.219,2.281c-5.094,1.875-20.953,6.766-32.844,6.766c-44.109,0-80-28.625-80-63.812s35.891-63.812,80-63.812\r\n\t\ts79.984,28.625,79.984,63.812c0,10.734-8.266,27.953-13.516,36.297l-3.5,5.547l5.781,26.453L327.062,262.594z"},"children":[{"name":"path","attribs":{"d":"M384,207.828C384,163.75,341.016,128,288,128c-53,0-96,35.75-96,79.828c0,44.094,43,79.828,96,79.828\r\n\t\tc17.484,0,38.406-7.766,38.406-7.766l52.812,24.062l-11.234-51.281C367.984,252.672,384,227.344,384,207.828z M327.062,262.594\r\n\t\tl-6.219,2.281c-5.094,1.875-20.953,6.766-32.844,6.766c-44.109,0-80-28.625-80-63.812s35.891-63.812,80-63.812\r\n\t\ts79.984,28.625,79.984,63.812c0,10.734-8.266,27.953-13.516,36.297l-3.5,5.547l5.781,26.453L327.062,262.594z"},"children":[]}]},{"name":"path","attribs":{"d":"M224,351.688c-11.891,0-27.75-4.891-32.859-6.766l-6.172-2.281l-29.719,13.531l5.781-26.453l-3.5-5.547\r\n\t\tC152.297,315.844,144,298.609,144,287.875c0-22.375,14.578-42.016,36.5-53.406c-1.75-5.188-3.062-10.531-3.781-16.016\r\n\t\tC147.656,232.156,128,258.094,128,287.875c0,19.5,16,44.844,16,44.844L132.781,384l52.812-24.062c0,0,20.922,7.766,38.406,7.766\r\n\t\tc48.422,0,88.375-30.266,94.938-68.734c-5,1.344-10.953,2.641-17.266,3.547C293.312,330.641,261.781,351.688,224,351.688z"},"children":[{"name":"path","attribs":{"d":"M224,351.688c-11.891,0-27.75-4.891-32.859-6.766l-6.172-2.281l-29.719,13.531l5.781-26.453l-3.5-5.547\r\n\t\tC152.297,315.844,144,298.609,144,287.875c0-22.375,14.578-42.016,36.5-53.406c-1.75-5.188-3.062-10.531-3.781-16.016\r\n\t\tC147.656,232.156,128,258.094,128,287.875c0,19.5,16,44.844,16,44.844L132.781,384l52.812-24.062c0,0,20.922,7.766,38.406,7.766\r\n\t\tc48.422,0,88.375-30.266,94.938-68.734c-5,1.344-10.953,2.641-17.266,3.547C293.312,330.641,261.781,351.688,224,351.688z"},"children":[]}]}]}]};exports.chat=chat;var check={"viewBox":"0 0 512 512","children":[{"name":"polygon","attribs":{"points":"211.344,306.703 160,256 128,288 211.414,368 384,176 351.703,144 "},"children":[]},{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]};exports.check=check;var circles={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"path","attribs":{"d":"M288,128c-53.016,0-96,42.984-96,96c0,0.531,0.047,1.047,0.062,1.609C155.531,232.984,128,265.266,128,304\r\n\t\tc0,44.188,35.797,80,80,80c38.719,0,71.016-27.531,78.422-64.094c0.531,0.016,1.047,0.094,1.578,0.094c53.016,0,96-42.984,96-96\r\n\t\tS341.016,128,288,128z M208,368c-35.281,0-64-28.719-64-64c0-30.359,21.281-55.734,49.719-62.25\r\n\t\tc7.25,38.766,37.766,69.281,76.531,76.531C263.719,346.719,238.344,368,208,368z M209.672,240.156\r\n\t\tc33.906,0.875,61.297,28.234,62.156,62.203C240.688,295.922,216.047,271.344,209.672,240.156z M288,304c0-44.172-35.797-80-80-80\r\n\t\tc0-44.109,35.906-80,80-80s80,35.891,80,80S332.094,304,288,304z"},"children":[{"name":"path","attribs":{"d":"M288,128c-53.016,0-96,42.984-96,96c0,0.531,0.047,1.047,0.062,1.609C155.531,232.984,128,265.266,128,304\r\n\t\tc0,44.188,35.797,80,80,80c38.719,0,71.016-27.531,78.422-64.094c0.531,0.016,1.047,0.094,1.578,0.094c53.016,0,96-42.984,96-96\r\n\t\tS341.016,128,288,128z M208,368c-35.281,0-64-28.719-64-64c0-30.359,21.281-55.734,49.719-62.25\r\n\t\tc7.25,38.766,37.766,69.281,76.531,76.531C263.719,346.719,238.344,368,208,368z M209.672,240.156\r\n\t\tc33.906,0.875,61.297,28.234,62.156,62.203C240.688,295.922,216.047,271.344,209.672,240.156z M288,304c0-44.172-35.797-80-80-80\r\n\t\tc0-44.109,35.906-80,80-80s80,35.891,80,80S332.094,304,288,304z"},"children":[]}]},{"name":"path","attribs":{"d":"M160,224c17.656,0,32-14.344,32-32s-14.344-32-32-32s-32,14.344-32,32S142.344,224,160,224z M160,176\r\n\t\tc8.812,0,16,7.188,16,16s-7.188,16-16,16s-16-7.188-16-16S151.188,176,160,176z"},"children":[{"name":"path","attribs":{"d":"M160,224c17.656,0,32-14.344,32-32s-14.344-32-32-32s-32,14.344-32,32S142.344,224,160,224z M160,176\r\n\t\tc8.812,0,16,7.188,16,16s-7.188,16-16,16s-16-7.188-16-16S151.188,176,160,176z"},"children":[]}]}]}]};exports.circles=circles;var clock={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,128c-70.688,0-128,57.312-128,128s57.312,128,128,128s128-57.312,128-128S326.688,128,256,128z M256,360\r\n\t\tc-57.438,0-104-46.578-104-104c0-57.438,46.562-104,104-104c57.422,0,104,46.562,104,104C360,313.422,313.422,360,256,360z"},"children":[{"name":"path","attribs":{"d":"M256,128c-70.688,0-128,57.312-128,128s57.312,128,128,128s128-57.312,128-128S326.688,128,256,128z M256,360\r\n\t\tc-57.438,0-104-46.578-104-104c0-57.438,46.562-104,104-104c57.422,0,104,46.562,104,104C360,313.422,313.422,360,256,360z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,272c-8.844,0-16-7.156-16-16s7.156-16,16-16s16,7.156,16,16S264.844,272,256,272z"},"children":[{"name":"path","attribs":{"d":"M256,272c-8.844,0-16-7.156-16-16s7.156-16,16-16s16,7.156,16,16S264.844,272,256,272z"},"children":[]}]},{"name":"polygon","attribs":{"points":"246.062,257.375 257.375,246.062 294.75,283.422 283.438,294.75 \t"},"children":[{"name":"polygon","attribs":{"points":"246.062,257.375 257.375,246.062 294.75,283.422 283.438,294.75 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"192.469,203.781 203.781,192.453 265.953,254.625 254.625,265.938 \t"},"children":[{"name":"polygon","attribs":{"points":"192.469,203.781 203.781,192.453 265.953,254.625 254.625,265.938 \t"},"children":[]}]}]}]};exports.clock=clock;var cloudAdd={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"path","attribs":{"d":"M358.719,240.734C364.484,231.125,368,220.016,368,208c0-35.344-28.656-64-64-64c-29.375,0-53.859,19.906-61.391,46.875\r\n\t\tC233.875,181.742,221.625,176,208,176c-26.5,0-48,21.492-48,48c0,5.75,1.188,11.203,3.031,16.312c-1-0.094-2-0.312-3.031-0.312\r\n\t\tc-17.672,0-32,22.328-32,40s14.328,40,32,40h101.594c9-32,28.094-40,50.406-40c21.656,0,40.219,8.406,49.531,26.391\r\n\t\tC374.516,302.312,384,288.328,384,274C384,258.641,373.156,243.828,358.719,240.734z"},"children":[{"name":"path","attribs":{"d":"M358.719,240.734C364.484,231.125,368,220.016,368,208c0-35.344-28.656-64-64-64c-29.375,0-53.859,19.906-61.391,46.875\r\n\t\tC233.875,181.742,221.625,176,208,176c-26.5,0-48,21.492-48,48c0,5.75,1.188,11.203,3.031,16.312c-1-0.094-2-0.312-3.031-0.312\r\n\t\tc-17.672,0-32,22.328-32,40s14.328,40,32,40h101.594c9-32,28.094-40,50.406-40c21.656,0,40.219,8.406,49.531,26.391\r\n\t\tC374.516,302.312,384,288.328,384,274C384,258.641,373.156,243.828,358.719,240.734z"},"children":[]}]},{"name":"path","attribs":{"d":"M312,288c-22.094,0-40,17.906-40,40s17.906,40,40,40s40-17.906,40-40S334.094,288,312,288z M336,336h-16v16h-16v-16h-16\r\n\t\tv-16h16v-16h16v16h16V336z"},"children":[{"name":"path","attribs":{"d":"M312,288c-22.094,0-40,17.906-40,40s17.906,40,40,40s40-17.906,40-40S334.094,288,312,288z M336,336h-16v16h-16v-16h-16\r\n\t\tv-16h16v-16h16v16h16V336z"},"children":[]}]}]}]};exports.cloudAdd=cloudAdd;var cloudDownload={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"path","attribs":{"d":"M358.719,240.734C364.484,231.125,368,220.016,368,208c0-35.344-28.656-64-64-64c-29.375,0-53.859,19.906-61.391,46.875\r\n\t\tC233.875,181.742,221.625,176,208,176c-26.5,0-48,21.492-48,48c0,5.75,1.188,11.203,3.031,16.312c-1-0.094-2-0.312-3.031-0.312\r\n\t\tc-17.672,0-32,22.328-32,40s14.328,40,32,40h101.594c9-32,28.094-40,50.406-40c21.656,0,40.219,8.406,49.531,26.391\r\n\t\tC374.516,302.312,384,288.328,384,274C384,258.641,373.156,243.828,358.719,240.734z"},"children":[{"name":"path","attribs":{"d":"M358.719,240.734C364.484,231.125,368,220.016,368,208c0-35.344-28.656-64-64-64c-29.375,0-53.859,19.906-61.391,46.875\r\n\t\tC233.875,181.742,221.625,176,208,176c-26.5,0-48,21.492-48,48c0,5.75,1.188,11.203,3.031,16.312c-1-0.094-2-0.312-3.031-0.312\r\n\t\tc-17.672,0-32,22.328-32,40s14.328,40,32,40h101.594c9-32,28.094-40,50.406-40c21.656,0,40.219,8.406,49.531,26.391\r\n\t\tC374.516,302.312,384,288.328,384,274C384,258.641,373.156,243.828,358.719,240.734z"},"children":[]}]},{"name":"path","attribs":{"d":"M312,288c-22.094,0-40,17.906-40,40s17.906,40,40,40s40-17.906,40-40S334.094,288,312,288z M312,358.406L292.797,336H304\r\n\t\tv-32h16v32h11.203L312,358.406z"},"children":[{"name":"path","attribs":{"d":"M312,288c-22.094,0-40,17.906-40,40s17.906,40,40,40s40-17.906,40-40S334.094,288,312,288z M312,358.406L292.797,336H304\r\n\t\tv-32h16v32h11.203L312,358.406z"},"children":[]}]}]}]};exports.cloudDownload=cloudDownload;var cloudRemove={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"path","attribs":{"d":"M358.719,240.734C364.484,231.125,368,220.016,368,208c0-35.344-28.656-64-64-64c-29.375,0-53.859,19.906-61.391,46.875\r\n\t\tC233.875,181.742,221.625,176,208,176c-26.5,0-48,21.492-48,48c0,5.75,1.188,11.203,3.031,16.312c-1-0.094-2-0.312-3.031-0.312\r\n\t\tc-17.672,0-32,22.328-32,40s14.328,40,32,40h101.594c9-32,28.094-40,50.406-40c21.656,0,40.219,8.406,49.531,26.391\r\n\t\tC374.516,302.312,384,288.328,384,274C384,258.641,373.156,243.828,358.719,240.734z"},"children":[{"name":"path","attribs":{"d":"M358.719,240.734C364.484,231.125,368,220.016,368,208c0-35.344-28.656-64-64-64c-29.375,0-53.859,19.906-61.391,46.875\r\n\t\tC233.875,181.742,221.625,176,208,176c-26.5,0-48,21.492-48,48c0,5.75,1.188,11.203,3.031,16.312c-1-0.094-2-0.312-3.031-0.312\r\n\t\tc-17.672,0-32,22.328-32,40s14.328,40,32,40h101.594c9-32,28.094-40,50.406-40c21.656,0,40.219,8.406,49.531,26.391\r\n\t\tC374.516,302.312,384,288.328,384,274C384,258.641,373.156,243.828,358.719,240.734z"},"children":[]}]},{"name":"path","attribs":{"d":"M312,288c-22.094,0-40,17.906-40,40s17.906,40,40,40s40-17.906,40-40S334.094,288,312,288z M336,336h-48v-16h48V336z"},"children":[{"name":"path","attribs":{"d":"M312,288c-22.094,0-40,17.906-40,40s17.906,40,40,40s40-17.906,40-40S334.094,288,312,288z M336,336h-48v-16h48V336z"},"children":[]}]}]}]};exports.cloudRemove=cloudRemove;var cloudUpload={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"path","attribs":{"d":"M358.719,240.734C364.484,231.125,368,220.016,368,208c0-35.344-28.656-64-64-64c-29.375,0-53.859,19.906-61.391,46.875\r\n\t\tC233.875,181.742,221.625,176,208,176c-26.5,0-48,21.492-48,48c0,5.75,1.188,11.203,3.031,16.312c-1-0.094-2-0.312-3.031-0.312\r\n\t\tc-17.672,0-32,22.328-32,40s14.328,40,32,40h101.594c9-32,28.094-40,50.406-40c21.656,0,40.219,8.406,49.531,26.391\r\n\t\tC374.516,302.312,384,288.328,384,274C384,258.641,373.156,243.828,358.719,240.734z"},"children":[{"name":"path","attribs":{"d":"M358.719,240.734C364.484,231.125,368,220.016,368,208c0-35.344-28.656-64-64-64c-29.375,0-53.859,19.906-61.391,46.875\r\n\t\tC233.875,181.742,221.625,176,208,176c-26.5,0-48,21.492-48,48c0,5.75,1.188,11.203,3.031,16.312c-1-0.094-2-0.312-3.031-0.312\r\n\t\tc-17.672,0-32,22.328-32,40s14.328,40,32,40h101.594c9-32,28.094-40,50.406-40c21.656,0,40.219,8.406,49.531,26.391\r\n\t\tC374.516,302.312,384,288.328,384,274C384,258.641,373.156,243.828,358.719,240.734z"},"children":[]}]},{"name":"path","attribs":{"d":"M312,368c22.094,0,40-17.906,40-40s-17.906-40-40-40s-40,17.906-40,40S289.906,368,312,368z M312,297.594L331.203,320H320\r\n\t\tv32h-16v-32h-11.203L312,297.594z"},"children":[{"name":"path","attribs":{"d":"M312,368c22.094,0,40-17.906,40-40s-17.906-40-40-40s-40,17.906-40,40S289.906,368,312,368z M312,297.594L331.203,320H320\r\n\t\tv32h-16v-32h-11.203L312,297.594z"},"children":[]}]}]}]};exports.cloudUpload=cloudUpload;var cloud={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M358.719,272.734C364.484,263.125,368,252.016,368,240c0-35.344-28.656-64-64-64c-29.375,0-53.859,19.906-61.391,46.875\r\n\t\tC233.875,213.75,221.625,208,208,208c-26.5,0-48,21.5-48,48c0,5.75,1.188,11.203,3.031,16.312c-1-0.094-2-0.312-3.031-0.312\r\n\t\tc-17.672,0-32,22.328-32,40s14.328,40,32,40h192c17.672,0,32-22.328,32-40C384,296.641,373.156,275.828,358.719,272.734z"},"children":[{"name":"path","attribs":{"d":"M358.719,272.734C364.484,263.125,368,252.016,368,240c0-35.344-28.656-64-64-64c-29.375,0-53.859,19.906-61.391,46.875\r\n\t\tC233.875,213.75,221.625,208,208,208c-26.5,0-48,21.5-48,48c0,5.75,1.188,11.203,3.031,16.312c-1-0.094-2-0.312-3.031-0.312\r\n\t\tc-17.672,0-32,22.328-32,40s14.328,40,32,40h192c17.672,0,32-22.328,32-40C384,296.641,373.156,275.828,358.719,272.734z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]}]}]};exports.cloud=cloud;var coins={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\tS397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,336.219c-30.031,0-61.438-6.328-79.844-19.703c0,0.219-0.156,0.438-0.156,0.641c0,3.359,0,15.719,0,19.062\r\n\t\tC176,353.781,211.812,368,256,368s80-14.219,80-31.781c0-3.344,0-15.703,0-19.062c0-0.203-0.156-0.422-0.156-0.641\r\n\t\tC317.438,329.891,286.016,336.219,256,336.219z"},"children":[{"name":"path","attribs":{"d":"M256,336.219c-30.031,0-61.438-6.328-79.844-19.703c0,0.219-0.156,0.438-0.156,0.641c0,3.359,0,15.719,0,19.062\r\n\t\tC176,353.781,211.812,368,256,368s80-14.219,80-31.781c0-3.344,0-15.703,0-19.062c0-0.203-0.156-0.422-0.156-0.641\r\n\t\tC317.438,329.891,286.016,336.219,256,336.219z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,288.547c-30.031,0-61.438-6.312-79.844-19.688c0,0.219-0.156,0.422-0.156,0.641c0,3.359,0,15.703,0,19.047\r\n\t\tc0,17.562,35.812,31.797,80,31.797s80-14.234,80-31.797c0-3.344,0-15.688,0-19.047c0-0.219-0.156-0.422-0.156-0.641\r\n\t\tC317.438,282.234,286.016,288.547,256,288.547z"},"children":[{"name":"path","attribs":{"d":"M256,288.547c-30.031,0-61.438-6.312-79.844-19.688c0,0.219-0.156,0.422-0.156,0.641c0,3.359,0,15.703,0,19.047\r\n\t\tc0,17.562,35.812,31.797,80,31.797s80-14.234,80-31.797c0-3.344,0-15.688,0-19.047c0-0.219-0.156-0.422-0.156-0.641\r\n\t\tC317.438,282.234,286.016,288.547,256,288.547z"},"children":[]}]},{"name":"path","attribs":{"d":"M176,222.656c0,4.031,0,15.078,0,18.25c0,17.562,35.812,31.781,80,31.781s80-14.219,80-31.781c0-3.172,0-14.219,0-18.25\r\n\t\tc-18.375,13.469-49.891,19.844-80,19.844S194.375,236.125,176,222.656z"},"children":[{"name":"path","attribs":{"d":"M176,222.656c0,4.031,0,15.078,0,18.25c0,17.562,35.812,31.781,80,31.781s80-14.219,80-31.781c0-3.172,0-14.219,0-18.25\r\n\t\tc-18.375,13.469-49.891,19.844-80,19.844S194.375,236.125,176,222.656z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,144c-44.188,0-80,14.219-80,31.781c0,3.344,0,15.703,0,19.062c0,17.531,35.812,31.766,80,31.766s80-14.234,80-31.766\r\n\t\tc0-3.359,0-15.719,0-19.062C336,158.219,300.188,144,256,144z"},"children":[{"name":"path","attribs":{"d":"M256,144c-44.188,0-80,14.219-80,31.781c0,3.344,0,15.703,0,19.062c0,17.531,35.812,31.766,80,31.766s80-14.234,80-31.766\r\n\t\tc0-3.359,0-15.719,0-19.062C336,158.219,300.188,144,256,144z"},"children":[]}]}]}]};exports.coins=coins;var comment={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,160c-61.859,0-112,37.383-112,83.469c0,20.531,15.547,43.906,32,58.453L160,352l48.625-32.953\r\n\t\tc14.406,5.031,30.406,7.906,47.375,7.906c61.859,0,112-37.359,112-83.484C368,197.383,317.859,160,256,160z"},"children":[{"name":"path","attribs":{"d":"M256,160c-61.859,0-112,37.383-112,83.469c0,20.531,15.547,43.906,32,58.453L160,352l48.625-32.953\r\n\t\tc14.406,5.031,30.406,7.906,47.375,7.906c61.859,0,112-37.359,112-83.484C368,197.383,317.859,160,256,160z"},"children":[]}]}]}]};exports.comment=comment;var comments={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"path","attribs":{"d":"M310.875,254.734c-40.438,0-73.172,22.078-73.172,49.234c0,12.094,10.172,25.875,20.922,34.469L248.188,368l31.703-19.469\r\n\t\tc9.453,2.969,19.891,4.656,30.984,4.656c40.391,0,73.125-22,73.125-49.219C384,276.812,351.266,254.734,310.875,254.734z"},"children":[{"name":"path","attribs":{"d":"M310.875,254.734c-40.438,0-73.172,22.078-73.172,49.234c0,12.094,10.172,25.875,20.922,34.469L248.188,368l31.703-19.469\r\n\t\tc9.453,2.969,19.891,4.656,30.984,4.656c40.391,0,73.125-22,73.125-49.219C384,276.812,351.266,254.734,310.875,254.734z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,144c-70.688,0-128,40.234-128,89.891c0,22.062,17.781,47.234,36.562,62.922l-18.266,53.969l55.547-35.562\r\n\t\tc7.25,2.375,14.938,4.25,22.844,5.656c-3.234-6.344-5.25-12.938-5.25-19.125c0-35.484,40.938-64.219,91.438-64.219\r\n\t\tc27.062,0,51.188,8.422,67.938,21.578c3.312-8,5.188-16.469,5.188-25.219C384,184.234,326.688,144,256,144z"},"children":[{"name":"path","attribs":{"d":"M256,144c-70.688,0-128,40.234-128,89.891c0,22.062,17.781,47.234,36.562,62.922l-18.266,53.969l55.547-35.562\r\n\t\tc7.25,2.375,14.938,4.25,22.844,5.656c-3.234-6.344-5.25-12.938-5.25-19.125c0-35.484,40.938-64.219,91.438-64.219\r\n\t\tc27.062,0,51.188,8.422,67.938,21.578c3.312-8,5.188-16.469,5.188-25.219C384,184.234,326.688,144,256,144z"},"children":[]}]}]}]};exports.comments=comments;var compass2={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,128c-70.695,0-128,57.312-128,128s57.305,128,128,128c70.688,0,128-57.312,128-128S326.688,128,256,128z M256,368\r\n\t\tc-61.758,0-112-50.25-112-112s50.242-112,112-112c61.75,0,112,50.25,112,112S317.75,368,256,368z"},"children":[{"name":"path","attribs":{"d":"M256,128c-70.695,0-128,57.312-128,128s57.305,128,128,128c70.688,0,128-57.312,128-128S326.688,128,256,128z M256,368\r\n\t\tc-61.758,0-112-50.25-112-112s50.242-112,112-112c61.75,0,112,50.25,112,112S317.75,368,256,368z"},"children":[]}]},{"name":"path","attribs":{"d":"M192,320l80-48l48-80l-80,48L192,320z M256,248c4.422,0,8,3.578,8,8s-3.578,8-8,8s-8-3.578-8-8S251.578,248,256,248z"},"children":[{"name":"path","attribs":{"d":"M192,320l80-48l48-80l-80,48L192,320z M256,248c4.422,0,8,3.578,8,8s-3.578,8-8,8s-8-3.578-8-8S251.578,248,256,248z"},"children":[]}]}]}]};exports.compass2=compass2;var compass={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"polygon","attribs":{"points":"224.391,224.469 231.359,196.641 144.359,144.438 196.547,231.438 \t"},"children":[{"name":"polygon","attribs":{"points":"224.391,224.469 231.359,196.641 144.359,144.438 196.547,231.438 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"315.281,231.172 367.125,144 280.5,196.406 287.5,224.344 \t"},"children":[{"name":"polygon","attribs":{"points":"315.281,231.172 367.125,144 280.5,196.406 287.5,224.344 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"287.688,287.453 280.828,315.344 368,367.219 315.469,280.391 \t"},"children":[{"name":"polygon","attribs":{"points":"287.688,287.453 280.828,315.344 368,367.219 315.469,280.391 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"196.547,280.672 144.359,367.656 231.547,315.312 224.516,287.641 \t"},"children":[{"name":"polygon","attribs":{"points":"196.547,280.672 144.359,367.656 231.547,315.312 224.516,287.641 \t"},"children":[]}]},{"name":"path","attribs":{"d":"M256,128l-25.594,102.391L128,256l102.5,25.625L256.5,384l25.234-102.547L384,255.5l-102.422-25.203L256,128z M256,272\r\n\t\tc-8.828,0-16-7.172-16-16s7.172-16,16-16s16,7.172,16,16S264.828,272,256,272z"},"children":[{"name":"path","attribs":{"d":"M256,128l-25.594,102.391L128,256l102.5,25.625L256.5,384l25.234-102.547L384,255.5l-102.422-25.203L256,128z M256,272\r\n\t\tc-8.828,0-16-7.172-16-16s7.172-16,16-16s16,7.172,16,16S264.828,272,256,272z"},"children":[]}]}]}]};exports.compass=compass;var contractDirections={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"rect","attribs":{"x":"192","y":"208","width":"128","height":"96"},"children":[{"name":"rect","attribs":{"x":"192","y":"208","width":"128","height":"96"},"children":[]}]},{"name":"polygon","attribs":{"points":"144,288 176,256 144,224 \t"},"children":[{"name":"polygon","attribs":{"points":"144,288 176,256 144,224 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"368,288 368,224 335.984,256 \t"},"children":[{"name":"polygon","attribs":{"points":"368,288 368,224 335.984,256 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"287.969,160 223.953,160 255.953,192 \t"},"children":[{"name":"polygon","attribs":{"points":"287.969,160 223.953,160 255.953,192 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"223.938,352 287.969,352 255.969,320 \t"},"children":[{"name":"polygon","attribs":{"points":"223.938,352 287.969,352 255.969,320 \t"},"children":[]}]}]}]};exports.contractDirections=contractDirections;var contractHorizontal={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"rect","attribs":{"x":"192","y":"208","width":"128","height":"96"},"children":[{"name":"rect","attribs":{"x":"192","y":"208","width":"128","height":"96"},"children":[]}]},{"name":"polygon","attribs":{"points":"144,288.047 176,256.047 144,224.031 \t"},"children":[{"name":"polygon","attribs":{"points":"144,288.047 176,256.047 144,224.031 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"368,288.047 368,224.031 335.984,256.047 \t"},"children":[{"name":"polygon","attribs":{"points":"368,288.047 368,224.031 335.984,256.047 \t"},"children":[]}]}]}]};exports.contractHorizontal=contractHorizontal;var contractVertical={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"rect","attribs":{"x":"192","y":"208","width":"128","height":"96"},"children":[{"name":"rect","attribs":{"x":"192","y":"208","width":"128","height":"96"},"children":[]}]},{"name":"polygon","attribs":{"points":"288,160 224,160 256,192 \t"},"children":[{"name":"polygon","attribs":{"points":"288,160 224,160 256,192 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"224,352 288,352 256,319.969 \t"},"children":[{"name":"polygon","attribs":{"points":"224,352 288,352 256,319.969 \t"},"children":[]}]}]}]};exports.contractVertical=contractVertical;var copyDocument={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"rect","attribs":{"x":"144","y":"192","width":"160","height":"192"},"children":[{"name":"rect","attribs":{"x":"144","y":"192","width":"160","height":"192"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"368,128 208,128 208,176 320,176 320,320 368,320 \t\t"},"children":[{"name":"polygon","attribs":{"points":"368,128 208,128 208,176 320,176 320,320 368,320 \t\t"},"children":[]}]}]}]}]}]};exports.copyDocument=copyDocument;var copyPasteDocument={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"rect","attribs":{"x":"128","y":"224","width":"160","height":"160"},"children":[{"name":"rect","attribs":{"x":"128","y":"224","width":"160","height":"160"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"336,176 176,176 176,208 304,208 304,336 336,336 \t\t"},"children":[{"name":"polygon","attribs":{"points":"336,176 176,176 176,208 304,208 304,336 336,336 \t\t"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"384,128 224,128 224,160 352,160 352,288 384,288 \t\t"},"children":[{"name":"polygon","attribs":{"points":"384,128 224,128 224,160 352,160 352,288 384,288 \t\t"},"children":[]}]}]}]}]}]};exports.copyPasteDocument=copyPasteDocument;var creditCard={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\tS397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M368,216c0-22.094-17.906-40-40-40H184c-22.094,0-40,17.906-40,40v80c0,22.094,17.906,40,40,40h144\r\n\t\tc22.094,0,40-17.906,40-40V216z M183.594,192h144c10.438,0,19.219,6.719,22.531,16H161.078\r\n\t\tC164.391,198.719,173.188,192,183.594,192z M352,296c0,13.234-11.156,24-24.406,24h-144C170.375,320,160,309.234,160,296v-56h192\r\n\t\tV296z"},"children":[{"name":"path","attribs":{"d":"M368,216c0-22.094-17.906-40-40-40H184c-22.094,0-40,17.906-40,40v80c0,22.094,17.906,40,40,40h144\r\n\t\tc22.094,0,40-17.906,40-40V216z M183.594,192h144c10.438,0,19.219,6.719,22.531,16H161.078\r\n\t\tC164.391,198.719,173.188,192,183.594,192z M352,296c0,13.234-11.156,24-24.406,24h-144C170.375,320,160,309.234,160,296v-56h192\r\n\t\tV296z"},"children":[]}]},{"name":"path","attribs":{"d":"M183.594,272h64c4.438,0,8-3.578,8-8s-3.562-8-8-8h-64c-4.406,0-8,3.578-8,8S179.188,272,183.594,272z"},"children":[{"name":"path","attribs":{"d":"M183.594,272h64c4.438,0,8-3.578,8-8s-3.562-8-8-8h-64c-4.406,0-8,3.578-8,8S179.188,272,183.594,272z"},"children":[]}]},{"name":"path","attribs":{"d":"M311.594,272h16c4.438,0,8-3.578,8-8s-3.562-8-8-8h-16c-4.406,0-8,3.578-8,8S307.188,272,311.594,272z"},"children":[{"name":"path","attribs":{"d":"M311.594,272h16c4.438,0,8-3.578,8-8s-3.562-8-8-8h-16c-4.406,0-8,3.578-8,8S307.188,272,311.594,272z"},"children":[]}]},{"name":"path","attribs":{"d":"M183.594,304h32c4.438,0,8-3.578,8-8s-3.562-8-8-8h-32c-4.406,0-8,3.578-8,8S179.188,304,183.594,304z"},"children":[{"name":"path","attribs":{"d":"M183.594,304h32c4.438,0,8-3.578,8-8s-3.562-8-8-8h-32c-4.406,0-8,3.578-8,8S179.188,304,183.594,304z"},"children":[]}]}]}]};exports.creditCard=creditCard;var cross={"viewBox":"0 0 512 512","children":[{"name":"polygon","attribs":{"points":"335.188,154.188 256,233.375 176.812,154.188 154.188,176.812 233.375,256 154.188,335.188 176.812,357.812 \r\n\t256,278.625 335.188,357.812 357.812,335.188 278.625,256 357.812,176.812 "},"children":[]},{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]};exports.cross=cross;var directions={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"384,256 352,224 352,240 272,240 272,160 288,160 256,128 224,160 \r\n\t240,160 240,240 160,240 160,224 128,256 160,288 160,272 240,272 240,352 224,352 256,384 288,352 272,352 272,272 352,272 \r\n\t352,288 "},"children":[]}]};exports.directions=directions;var documentFill={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"path","attribs":{"d":"M320,128H160v256h192V164.578L320,128z M176,368V144h128v32h32v192H176z"},"children":[{"name":"path","attribs":{"d":"M320,128H160v256h192V164.578L320,128z M176,368V144h128v32h32v192H176z"},"children":[]}]},{"name":"rect","attribs":{"x":"192","y":"272","width":"128","height":"16"},"children":[{"name":"rect","attribs":{"x":"192","y":"272","width":"128","height":"16"},"children":[]}]},{"name":"rect","attribs":{"x":"192","y":"240","width":"128","height":"16"},"children":[{"name":"rect","attribs":{"x":"192","y":"240","width":"128","height":"16"},"children":[]}]},{"name":"rect","attribs":{"x":"192","y":"192","width":"64","height":"16"},"children":[{"name":"rect","attribs":{"x":"192","y":"192","width":"64","height":"16"},"children":[]}]},{"name":"rect","attribs":{"x":"192","y":"160","width":"32","height":"16"},"children":[{"name":"rect","attribs":{"x":"192","y":"160","width":"32","height":"16"},"children":[]}]},{"name":"rect","attribs":{"x":"192","y":"304","width":"128","height":"16"},"children":[{"name":"rect","attribs":{"x":"192","y":"304","width":"128","height":"16"},"children":[]}]},{"name":"rect","attribs":{"x":"192","y":"336","width":"128","height":"16"},"children":[{"name":"rect","attribs":{"x":"192","y":"336","width":"128","height":"16"},"children":[]}]}]}]};exports.documentFill=documentFill;var documentIcon={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"path","attribs":{"d":"M320,128H160v256h192V164.578L320,128z M176,368V144h128v32h32v192H176z"},"children":[]}]};exports.documentIcon=documentIcon;var documents={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"path","attribs":{"d":"M360.5,128.5h-121v64h-112v192h144v-64h112v-169L360.5,128.5z M255.5,368.5h-112v-160h96v112h16V368.5z M367.5,304.5h-112\r\n\tv-160h80v32h32V304.5z"},"children":[]}]};exports.documents=documents;var dollar={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"path","attribs":{"d":"M267.922,351.734V384h-25.719v-30.406c-19.516-0.609-39.047-6.25-50.203-13.469l8.375-29.766\r\n\tc12.406,7.531,29.438,13.781,48.344,13.781c19.812,0,33.141-9.703,33.141-24.438c0-14.391-10.828-23.156-34.078-31.641\r\n\tc-32.219-11.906-53.609-27.25-53.609-56.094c0-26.938,18.609-47.938,49.891-53.562V128h25.406v28.828\r\n\tc19.516,0.625,32.859,5.641,42.781,10.656l-8.375,28.828c-7.438-3.75-21.078-10.969-42.141-10.969\r\n\tc-21.703,0-29.453,11.281-29.453,21.938c0,12.844,11.156,20.359,37.812,30.719C304.797,251.156,320,268.062,320,296.281\r\n\tC320,322.922,301.703,346.094,267.922,351.734z"},"children":[]}]};exports.dollar=dollar;var dotCircle={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M272,352c0,8.844-7.156,16-16,16s-16-7.156-16-16s7.156-16,16-16\r\n\t\tS272,343.156,272,352z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M272,352c0,8.844-7.156,16-16,16s-16-7.156-16-16s7.156-16,16-16\r\n\t\tS272,343.156,272,352z"},"children":[]}]},{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M272,160c0,8.844-7.156,16-16,16s-16-7.156-16-16s7.156-16,16-16\r\n\t\tS272,151.156,272,160z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M272,160c0,8.844-7.156,16-16,16s-16-7.156-16-16s7.156-16,16-16\r\n\t\tS272,151.156,272,160z"},"children":[]}]},{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M368,256c0,8.844-7.156,16-16,16s-16-7.156-16-16s7.156-16,16-16\r\n\t\tS368,247.156,368,256z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M368,256c0,8.844-7.156,16-16,16s-16-7.156-16-16s7.156-16,16-16\r\n\t\tS368,247.156,368,256z"},"children":[]}]},{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M176,256c0,8.844-7.156,16-16,16s-16-7.156-16-16s7.156-16,16-16\r\n\t\tS176,247.156,176,256z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M176,256c0,8.844-7.156,16-16,16s-16-7.156-16-16s7.156-16,16-16\r\n\t\tS176,247.156,176,256z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M173.062,226.844c8.844-25.062,28.719-44.938,53.781-53.781\r\n\t\t\tc-1.797-4-2.844-8.391-2.844-13.062c0-1.031,0.219-2.016,0.312-3.031c-31.891,10.25-57.094,35.453-67.344,67.344\r\n\t\t\tc1.016-0.094,2-0.312,3.031-0.312C164.672,224,169.062,225.047,173.062,226.844z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M173.062,226.844c8.844-25.062,28.719-44.938,53.781-53.781\r\n\t\t\tc-1.797-4-2.844-8.391-2.844-13.062c0-1.031,0.219-2.016,0.312-3.031c-31.891,10.25-57.094,35.453-67.344,67.344\r\n\t\t\tc1.016-0.094,2-0.312,3.031-0.312C164.672,224,169.062,225.047,173.062,226.844z"},"children":[]}]},{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M226.844,338.938c-25.062-8.859-44.938-28.703-53.781-53.781\r\n\t\t\tc-4,1.797-8.391,2.844-13.062,2.844c-1.031,0-2.016-0.203-3.031-0.297c10.25,31.875,35.453,57.094,67.344,67.312\r\n\t\t\tc-0.094-1-0.312-1.984-0.312-3.016C224,347.328,225.047,342.922,226.844,338.938z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M226.844,338.938c-25.062-8.859-44.938-28.703-53.781-53.781\r\n\t\t\tc-4,1.797-8.391,2.844-13.062,2.844c-1.031,0-2.016-0.203-3.031-0.297c10.25,31.875,35.453,57.094,67.344,67.312\r\n\t\t\tc-0.094-1-0.312-1.984-0.312-3.016C224,347.328,225.047,342.922,226.844,338.938z"},"children":[]}]},{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M285.156,173.062c25.078,8.844,44.922,28.719,53.781,53.781\r\n\t\t\tC342.922,225.047,347.328,224,352,224c1.031,0,2.016,0.219,3.016,0.312c-10.219-31.891-35.438-57.094-67.312-67.344\r\n\t\t\tc0.094,1.016,0.297,2,0.297,3.031C288,164.672,286.953,169.062,285.156,173.062z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M285.156,173.062c25.078,8.844,44.922,28.719,53.781,53.781\r\n\t\t\tC342.922,225.047,347.328,224,352,224c1.031,0,2.016,0.219,3.016,0.312c-10.219-31.891-35.438-57.094-67.312-67.344\r\n\t\t\tc0.094,1.016,0.297,2,0.297,3.031C288,164.672,286.953,169.062,285.156,173.062z"},"children":[]}]},{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M338.922,285.156c-8.844,25.062-28.703,44.922-53.766,53.766\r\n\t\t\tc1.797,4,2.844,8.406,2.844,13.078c0,1.031-0.203,2.016-0.297,3.016c31.875-10.219,57.094-35.438,67.312-67.312\r\n\t\t\tc-1,0.094-1.984,0.297-3.016,0.297C347.328,288,342.922,286.953,338.922,285.156z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M338.922,285.156c-8.844,25.062-28.703,44.922-53.766,53.766\r\n\t\t\tc1.797,4,2.844,8.406,2.844,13.078c0,1.031-0.203,2.016-0.297,3.016c31.875-10.219,57.094-35.438,67.312-67.312\r\n\t\t\tc-1,0.094-1.984,0.297-3.016,0.297C347.328,288,342.922,286.953,338.922,285.156z"},"children":[]}]}]}]}]}]};exports.dotCircle=dotCircle;var dotLine={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M384,176v-48h-48v36.703L164.688,336H128v48h48v-36.688L347.328,176H384z M352,144\r\n\th16v16h-16V144z M160,368h-16v-16h16V368z"},"children":[]}]};exports.dotLine=dotLine;var dotSquare={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M384,176v-48h-48v16H176v-16h-48v48h16v160h-16v48h48v-16h160v16h48v-48h-16V176\r\n\tH384z M352,144h16v16h-16V144z M144,144h16v16h-16V144z M160,368h-16v-16h16V368z M368,368h-16v-16h16V368z M352,336h-16v16H176v-16\r\n\th-16V176h16v-16h160v16h16V336z"},"children":[]}]};exports.dotSquare=dotSquare;var doubleDiamonds={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"path","attribs":{"d":"M384,255.781L293.469,160l-37.672,39.875L218.5,160.422L128,256.203L218.5,352l37.688-39.859l37.281,39.453L384,255.781z\r\n\t M267.109,211.844l26.359-27.906l67.906,71.844l-67.906,71.859L267.5,300.172l41.531-43.969L267.109,211.844z"},"children":[]}]};exports.doubleDiamonds=doubleDiamonds;var downloadSelectionCircle={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"303.891,271.961 271.961,271.961 271.961,192.133 240.031,192.133 240.031,271.961 208.109,271.961 256,319.852 \t\r\n\t\t"},"children":[{"name":"polygon","attribs":{"points":"303.891,271.961 271.961,271.961 271.961,192.133 240.031,192.133 240.031,271.961 208.109,271.961 256,319.852 \t\r\n\t\t"},"children":[]}]},{"name":"path","attribs":{"d":"M322.516,346.117c9.453-6.984,17.703-15.359,24.547-24.906l-12.969-9.297c-5.875,8.188-12.969,15.375-21.062,21.375\r\n\t\tL322.516,346.117z"},"children":[{"name":"path","attribs":{"d":"M322.516,346.117c9.453-6.984,17.703-15.359,24.547-24.906l-12.969-9.297c-5.875,8.188-12.969,15.375-21.062,21.375\r\n\t\tL322.516,346.117z"},"children":[]}]},{"name":"path","attribs":{"d":"M256.836,352.039l0.148,15.969c11.789-0.094,23.391-2.031,34.5-5.75l-5.047-15.125\r\n\t\tC276.922,350.305,266.977,351.945,256.836,352.039z"},"children":[{"name":"path","attribs":{"d":"M256.836,352.039l0.148,15.969c11.789-0.094,23.391-2.031,34.5-5.75l-5.047-15.125\r\n\t\tC276.922,350.305,266.977,351.945,256.836,352.039z"},"children":[]}]},{"name":"path","attribs":{"d":"M321.484,165.133c-9.531-6.875-20.047-12.203-31.219-15.781l-4.891,15.203c9.578,3.062,18.594,7.609,26.766,13.516\r\n\t\tL321.484,165.133z"},"children":[{"name":"path","attribs":{"d":"M321.484,165.133c-9.531-6.875-20.047-12.203-31.219-15.781l-4.891,15.203c9.578,3.062,18.594,7.609,26.766,13.516\r\n\t\tL321.484,165.133z"},"children":[]}]},{"name":"path","attribs":{"d":"M362.375,220.82c-3.703-11.141-9.094-21.594-16.078-31.078l-12.844,9.453c5.953,8.141,10.594,17.094,13.766,26.641\r\n\t\tL362.375,220.82z"},"children":[{"name":"path","attribs":{"d":"M362.375,220.82c-3.703-11.141-9.094-21.594-16.078-31.078l-12.844,9.453c5.953,8.141,10.594,17.094,13.766,26.641\r\n\t\tL362.375,220.82z"},"children":[]}]},{"name":"path","attribs":{"d":"M347.547,285.102l15.219,4.844c3.469-10.938,5.234-22.375,5.234-33.938v-0.609l-15.969,0.609\r\n\t\tC352.031,265.945,350.531,275.742,347.547,285.102z"},"children":[{"name":"path","attribs":{"d":"M347.547,285.102l15.219,4.844c3.469-10.938,5.234-22.375,5.234-33.938v-0.609l-15.969,0.609\r\n\t\tC352.031,265.945,350.531,275.742,347.547,285.102z"},"children":[]}]},{"name":"path","attribs":{"d":"M166.062,322.773l12.828-9.516c-6.047-8.109-10.734-17.062-13.938-26.562l-15.141,5.094\r\n\t\tC153.547,302.898,159.016,313.32,166.062,322.773z"},"children":[{"name":"path","attribs":{"d":"M166.062,322.773l12.828-9.516c-6.047-8.109-10.734-17.062-13.938-26.562l-15.141,5.094\r\n\t\tC153.547,302.898,159.016,313.32,166.062,322.773z"},"children":[]}]},{"name":"path","attribs":{"d":"M148.75,256.852l11.219-0.844c0-10.125,1.578-20.078,4.672-29.641l-15.203-4.906C145.828,232.602,144,244.227,144,256.32\r\n\t\tL148.75,256.852z"},"children":[{"name":"path","attribs":{"d":"M148.75,256.852l11.219-0.844c0-10.125,1.578-20.078,4.672-29.641l-15.203-4.906C145.828,232.602,144,244.227,144,256.32\r\n\t\tL148.75,256.852z"},"children":[]}]},{"name":"path","attribs":{"d":"M199.453,178.383l-9.422-12.875c-9.516,6.938-17.828,15.281-24.703,24.766l12.906,9.391\r\n\t\tC184.141,191.508,191.297,184.367,199.453,178.383z"},"children":[{"name":"path","attribs":{"d":"M199.453,178.383l-9.422-12.875c-9.516,6.938-17.828,15.281-24.703,24.766l12.906,9.391\r\n\t\tC184.141,191.508,191.297,184.367,199.453,178.383z"},"children":[]}]},{"name":"path","attribs":{"d":"M222.375,362.867l4.812-15.234c-9.594-3.016-18.641-7.516-26.859-13.375l-9.281,13\r\n\t\tC200.656,354.086,211.203,359.352,222.375,362.867z"},"children":[{"name":"path","attribs":{"d":"M222.375,362.867l4.812-15.234c-9.594-3.016-18.641-7.516-26.859-13.375l-9.281,13\r\n\t\tC200.656,354.086,211.203,359.352,222.375,362.867z"},"children":[]}]},{"name":"path","attribs":{"d":"M255.727,159.945l-0.062-15.953c-11.828,0.047-23.43,1.906-34.539,5.531l4.984,15.172\r\n\t\tC235.594,161.602,245.562,160.008,255.727,159.945z"},"children":[{"name":"path","attribs":{"d":"M255.727,159.945l-0.062-15.953c-11.828,0.047-23.43,1.906-34.539,5.531l4.984,15.172\r\n\t\tC235.594,161.602,245.562,160.008,255.727,159.945z"},"children":[]}]}]}]};exports.downloadSelectionCircle=downloadSelectionCircle;var downloadSelection={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"351.891","y":"224.031","width":"15.984","height":"63.938"},"children":[{"name":"rect","attribs":{"x":"351.891","y":"224.031","width":"15.984","height":"63.938"},"children":[]}]},{"name":"path","attribs":{"d":"M344.031,144h-8v15.984h8c4.391,0,7.984,3.578,7.984,7.984v8H368v-8C368,154.75,357.25,144,344.031,144z"},"children":[{"name":"path","attribs":{"d":"M344.031,144h-8v15.984h8c4.391,0,7.984,3.578,7.984,7.984v8H368v-8C368,154.75,357.25,144,344.031,144z"},"children":[]}]},{"name":"rect","attribs":{"x":"224.039","y":"144.125","width":"63.93","height":"15.984"},"children":[{"name":"rect","attribs":{"x":"224.039","y":"144.125","width":"63.93","height":"15.984"},"children":[]}]},{"name":"path","attribs":{"d":"M144,167.969l0.125,8.125h15.984l-0.125-8.125c0-4.406,3.578-7.984,7.992-7.984h7.984V144h-7.984\r\n\t\tC154.75,144,144,154.75,144,167.969z"},"children":[{"name":"path","attribs":{"d":"M144,167.969l0.125,8.125h15.984l-0.125-8.125c0-4.406,3.578-7.984,7.992-7.984h7.984V144h-7.984\r\n\t\tC154.75,144,144,154.75,144,167.969z"},"children":[]}]},{"name":"rect","attribs":{"x":"144.125","y":"224.031","width":"15.984","height":"63.938"},"children":[{"name":"rect","attribs":{"x":"144.125","y":"224.031","width":"15.984","height":"63.938"},"children":[]}]},{"name":"path","attribs":{"d":"M159.984,344.031v-8H144v8C144,357.25,154.75,368,167.977,368h7.984v-15.984h-7.984\r\n\t\tC163.562,352.016,159.984,348.422,159.984,344.031z"},"children":[{"name":"path","attribs":{"d":"M159.984,344.031v-8H144v8C144,357.25,154.75,368,167.977,368h7.984v-15.984h-7.984\r\n\t\tC163.562,352.016,159.984,348.422,159.984,344.031z"},"children":[]}]},{"name":"rect","attribs":{"x":"224.039","y":"351.891","width":"63.93","height":"15.984"},"children":[{"name":"rect","attribs":{"x":"224.039","y":"351.891","width":"63.93","height":"15.984"},"children":[]}]},{"name":"path","attribs":{"d":"M352.016,344.031c0,4.391-3.594,7.984-7.984,7.984h-8V368h8C357.25,368,368,357.25,368,344.031v-8h-15.984V344.031z"},"children":[{"name":"path","attribs":{"d":"M352.016,344.031c0,4.391-3.594,7.984-7.984,7.984h-8V368h8C357.25,368,368,357.25,368,344.031v-8h-15.984V344.031z"},"children":[]}]},{"name":"polygon","attribs":{"points":"272.109,191.875 240.141,191.875 240.016,272.172 208.055,272.172 256,320.109 303.953,272.172 272.094,272.25 \t\r\n\t\t"},"children":[{"name":"polygon","attribs":{"points":"272.109,191.875 240.141,191.875 240.016,272.172 208.055,272.172 256,320.109 303.953,272.172 272.094,272.25 \t\r\n\t\t"},"children":[]}]}]}]};exports.downloadSelection=downloadSelection;var download={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"352,320 352,352 256,352 160,352 160,320 128,320 128,384 384,384 \r\n\t\t\t384,320 \t\t"},"children":[{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"352,320 352,352 256,352 160,352 160,320 128,320 128,384 384,384 \r\n\t\t\t384,320 \t\t"},"children":[]}]},{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"272,256 272,128 240,128 240,256 192,256 256,336 320,256 \t\t"},"children":[{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"272,256 272,128 240,128 240,256 192,256 256,336 320,256 \t\t"},"children":[]}]}]}]}]}]};exports.download=download;var drop={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M256,128c-16,48-80,131.812-80,176s35.812,80,80,80s80-35.812,80-80\r\n\tS272,176,256,128z M256,352c-27.625,0-50-22.406-50-50c0-27.625,40-80,50-110c10,30,50,82.375,50,110\r\n\tC306,329.594,283.594,352,256,352z"},"children":[]}]};exports.drop=drop;var drops={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M304,304c0,44.188-35.812,80-80,80s-80-35.812-80-80s64-128,80-176\r\n\t\tC240,176,304,259.812,304,304z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M304,304c0,44.188-35.812,80-80,80s-80-35.812-80-80s64-128,80-176\r\n\t\tC240,176,304,259.812,304,304z"},"children":[]}]},{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M368,194c0,16.562-14.344,30-32,30s-32-13.438-32-30s25.594-48,32-66\r\n\t\tC342.406,146,368,177.438,368,194z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M368,194c0,16.562-14.344,30-32,30s-32-13.438-32-30s25.594-48,32-66\r\n\t\tC342.406,146,368,177.438,368,194z"},"children":[]}]}]}]};exports.drops=drops;var eject={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"176,272 336,272 256,176 \t\t"},"children":[{"name":"polygon","attribs":{"points":"176,272 336,272 256,176 \t\t"},"children":[]}]},{"name":"rect","attribs":{"x":"176","y":"304","width":"160","height":"32"},"children":[{"name":"rect","attribs":{"x":"176","y":"304","width":"160","height":"32"},"children":[]}]}]}]}]}]};exports.eject=eject;var emailAdd={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M368,234.375v74.438l-54.5-59.422l16.719-11.312c-5.984-1.531-11.641-3.922-16.688-7.203L256,271.75L166.281,208H256\r\n\t\t\th37.625c-2.391-16-4-16-4.812-16H256H128v160h128h128V223.062C379.422,227.75,373.969,231.531,368,234.375z M144,212.531\r\n\t\t\tl54.5,36.859L144,308.812V212.531z M256,336h-92.406l45.562-79.422L256,288.25l46.844-31.656L348.406,336H256z"},"children":[{"name":"path","attribs":{"d":"M368,234.375v74.438l-54.5-59.422l16.719-11.312c-5.984-1.531-11.641-3.922-16.688-7.203L256,271.75L166.281,208H256\r\n\t\t\th37.625c-2.391-16-4-16-4.812-16H256H128v160h128h128V223.062C379.422,227.75,373.969,231.531,368,234.375z M144,212.531\r\n\t\t\tl54.5,36.859L144,308.812V212.531z M256,336h-92.406l45.562-79.422L256,288.25l46.844-31.656L348.406,336H256z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M344,144c-22.094,0-40,17.906-40,40s17.906,40,40,40s40-17.906,40-40S366.094,144,344,144z M368,192h-16v16h-16v-16h-16\r\n\t\t\tv-16h16v-16h16v16h16V192z"},"children":[{"name":"path","attribs":{"d":"M344,144c-22.094,0-40,17.906-40,40s17.906,40,40,40s40-17.906,40-40S366.094,144,344,144z M368,192h-16v16h-16v-16h-16\r\n\t\t\tv-16h16v-16h16v16h16V192z"},"children":[]}]}]}]}]}]};exports.emailAdd=emailAdd;var emailClose={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M368,234.375v74.438l-54.5-59.422l16.719-11.312c-5.984-1.531-11.641-3.922-16.688-7.203L256,271.75L166.281,208H256\r\n\t\t\th37.625c-2.391-4.984-4-10.344-4.812-16H256H128v160h128h128V223.062C379.422,227.75,373.969,231.531,368,234.375z M144,212.531\r\n\t\t\tl54.5,36.859L144,308.812V212.531z M256,336h-92.406l45.562-79.422L256,288.25l46.844-31.672L348.406,336H256z"},"children":[{"name":"path","attribs":{"d":"M368,234.375v74.438l-54.5-59.422l16.719-11.312c-5.984-1.531-11.641-3.922-16.688-7.203L256,271.75L166.281,208H256\r\n\t\t\th37.625c-2.391-4.984-4-10.344-4.812-16H256H128v160h128h128V223.062C379.422,227.75,373.969,231.531,368,234.375z M144,212.531\r\n\t\t\tl54.5,36.859L144,308.812V212.531z M256,336h-92.406l45.562-79.422L256,288.25l46.844-31.672L348.406,336H256z"},"children":[]}]}]}]},{"name":"path","attribs":{"d":"M344,144c-22.094,0-40,17.906-40,40s17.906,40,40,40s40-17.906,40-40S366.094,144,344,144z M366.625,195.312\r\n\t\tl-11.312,11.312L344,195.312l-11.312,11.312l-11.312-11.312L332.688,184l-11.312-11.312l11.312-11.312L344,172.688l11.312-11.312\r\n\t\tl11.312,11.312L355.312,184L366.625,195.312z"},"children":[{"name":"path","attribs":{"d":"M344,144c-22.094,0-40,17.906-40,40s17.906,40,40,40s40-17.906,40-40S366.094,144,344,144z M366.625,195.312\r\n\t\tl-11.312,11.312L344,195.312l-11.312,11.312l-11.312-11.312L332.688,184l-11.312-11.312l11.312-11.312L344,172.688l11.312-11.312\r\n\t\tl11.312,11.312L355.312,184L366.625,195.312z"},"children":[]}]}]}]};exports.emailClose=emailClose;var emailDownload={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M368,234.375v74.438l-54.5-59.422l16.719-11.312c-5.984-1.531-11.641-3.922-16.688-7.203L256,271.75L166.281,208H256\r\n\t\t\th37.625c-2.391-4.984-4-10.344-4.812-16H256H128v160h128h128V223.062C379.422,227.75,373.969,231.531,368,234.375z M144,212.531\r\n\t\t\tl54.5,36.859L144,308.812V212.531z M256,336h-92.406l45.562-79.422L256,288.25l46.844-31.672L348.406,336H256z"},"children":[{"name":"path","attribs":{"d":"M368,234.375v74.438l-54.5-59.422l16.719-11.312c-5.984-1.531-11.641-3.922-16.688-7.203L256,271.75L166.281,208H256\r\n\t\t\th37.625c-2.391-4.984-4-10.344-4.812-16H256H128v160h128h128V223.062C379.422,227.75,373.969,231.531,368,234.375z M144,212.531\r\n\t\t\tl54.5,36.859L144,308.812V212.531z M256,336h-92.406l45.562-79.422L256,288.25l46.844-31.672L348.406,336H256z"},"children":[]}]}]}]},{"name":"path","attribs":{"d":"M344,144c-22.094,0-40,17.906-40,40s17.906,40,40,40s40-17.906,40-40S366.094,144,344,144z M344,214.406L324.797,192H336\r\n\t\tv-32h16v32h11.203L344,214.406z"},"children":[{"name":"path","attribs":{"d":"M344,144c-22.094,0-40,17.906-40,40s17.906,40,40,40s40-17.906,40-40S366.094,144,344,144z M344,214.406L324.797,192H336\r\n\t\tv-32h16v32h11.203L344,214.406z"},"children":[]}]}]}]};exports.emailDownload=emailDownload;var emailLuminosity={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"248","y":"144","width":"16","height":"32"},"children":[{"name":"rect","attribs":{"x":"248","y":"144","width":"16","height":"32"},"children":[]}]},{"name":"rect","attribs":{"x":"248","y":"336","width":"16","height":"32"},"children":[{"name":"rect","attribs":{"x":"248","y":"336","width":"16","height":"32"},"children":[]}]},{"name":"rect","attribs":{"x":"315.876","y":"172.127","transform":"matrix(0.7071 0.7071 -0.7071 0.7071 227.8853 -173.9137)","width":"15.998","height":"31.997"},"children":[{"name":"rect","attribs":{"x":"315.876","y":"172.127","transform":"matrix(0.7071 0.7071 -0.7071 0.7071 227.8853 -173.9137)","width":"15.998","height":"31.997"},"children":[]}]},{"name":"rect","attribs":{"x":"180.126","y":"307.877","transform":"matrix(-0.7071 -0.7071 0.7071 -0.7071 92.1353 685.9137)","width":"15.998","height":"31.997"},"children":[{"name":"rect","attribs":{"x":"180.126","y":"307.877","transform":"matrix(-0.7071 -0.7071 0.7071 -0.7071 92.1353 685.9137)","width":"15.998","height":"31.997"},"children":[]}]},{"name":"rect","attribs":{"x":"172.127","y":"180.126","transform":"matrix(0.7071 0.7071 -0.7071 0.7071 188.125 -77.9239)","width":"31.997","height":"15.998"},"children":[{"name":"rect","attribs":{"x":"172.127","y":"180.126","transform":"matrix(0.7071 0.7071 -0.7071 0.7071 188.125 -77.9239)","width":"31.997","height":"15.998"},"children":[]}]},{"name":"rect","attribs":{"x":"307.877","y":"315.876","transform":"matrix(-0.7071 -0.7071 0.7071 -0.7071 323.875 781.9034)","width":"31.997","height":"15.998"},"children":[{"name":"rect","attribs":{"x":"307.877","y":"315.876","transform":"matrix(-0.7071 -0.7071 0.7071 -0.7071 323.875 781.9034)","width":"31.997","height":"15.998"},"children":[]}]},{"name":"rect","attribs":{"x":"144","y":"248","width":"32","height":"16"},"children":[{"name":"rect","attribs":{"x":"144","y":"248","width":"32","height":"16"},"children":[]}]},{"name":"rect","attribs":{"x":"336","y":"248","width":"32","height":"16"},"children":[{"name":"rect","attribs":{"x":"336","y":"248","width":"32","height":"16"},"children":[]}]},{"name":"path","attribs":{"d":"M256,192c-35.297,0-64,28.719-64,64s28.703,64,64,64c35.281,0,64-28.719,64-64S291.281,192,256,192z M256,304v-96\r\n\t\tc26.469,0,48,21.531,48,48S282.469,304,256,304z"},"children":[{"name":"path","attribs":{"d":"M256,192c-35.297,0-64,28.719-64,64s28.703,64,64,64c35.281,0,64-28.719,64-64S291.281,192,256,192z M256,304v-96\r\n\t\tc26.469,0,48,21.531,48,48S282.469,304,256,304z"},"children":[]}]}]}]};exports.emailLuminosity=emailLuminosity;var emailRemove={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M368,234.375v74.438l-54.5-59.422l16.719-11.312c-5.984-1.531-11.641-3.922-16.688-7.203L256,271.75L166.281,208H256\r\n\t\t\th37.625c-2.391-16-4-16-4.812-16H256H128v160h128h128V223.062C379.422,227.75,373.969,231.531,368,234.375z M144,212.531\r\n\t\t\tl54.5,36.859L144,308.812V212.531z M256,336h-92.406l45.562-79.422L256,288.25l46.844-31.656L348.406,336H256z"},"children":[{"name":"path","attribs":{"d":"M368,234.375v74.438l-54.5-59.422l16.719-11.312c-5.984-1.531-11.641-3.922-16.688-7.203L256,271.75L166.281,208H256\r\n\t\t\th37.625c-2.391-16-4-16-4.812-16H256H128v160h128h128V223.062C379.422,227.75,373.969,231.531,368,234.375z M144,212.531\r\n\t\t\tl54.5,36.859L144,308.812V212.531z M256,336h-92.406l45.562-79.422L256,288.25l46.844-31.656L348.406,336H256z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M344,144c-22.094,0-40,17.906-40,40s17.906,40,40,40s40-17.906,40-40S366.094,144,344,144z M368,192h-48v-16h48V192z"},"children":[{"name":"path","attribs":{"d":"M344,144c-22.094,0-40,17.906-40,40s17.906,40,40,40s40-17.906,40-40S366.094,144,344,144z M368,192h-48v-16h48V192z"},"children":[]}]}]}]}]}]};exports.emailRemove=emailRemove;var emailSpam={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M368,234.375v74.438l-54.5-59.422l16.719-11.312c-5.984-1.531-11.641-3.922-16.688-7.203L256,271.75L166.281,208H256\r\n\t\t\th37.625c-2.391-4.984-4-10.344-4.812-16H256H128v160h128h128V223.062C379.422,227.75,373.969,231.531,368,234.375z M144,212.531\r\n\t\t\tl54.5,36.859L144,308.812V212.531z M256,336h-92.406l45.562-79.422L256,288.25l46.844-31.672L348.406,336H256z"},"children":[{"name":"path","attribs":{"d":"M368,234.375v74.438l-54.5-59.422l16.719-11.312c-5.984-1.531-11.641-3.922-16.688-7.203L256,271.75L166.281,208H256\r\n\t\t\th37.625c-2.391-4.984-4-10.344-4.812-16H256H128v160h128h128V223.062C379.422,227.75,373.969,231.531,368,234.375z M144,212.531\r\n\t\t\tl54.5,36.859L144,308.812V212.531z M256,336h-92.406l45.562-79.422L256,288.25l46.844-31.672L348.406,336H256z"},"children":[]}]}]}]},{"name":"path","attribs":{"d":"M384,184c0-22.094-17.938-40-40-40s-40,17.906-40,40c0,22.062,17.938,40,40,40S384,206.062,384,184z M314,184\r\n\t\tc0-16.547,13.469-30,30-30c6.438,0,12.469,2.094,17.375,5.562l-41.781,41.812C316.078,196.469,314,190.438,314,184z\r\n\t\t M326.625,208.406l41.781-41.766C371.938,171.547,374,177.562,374,184c0,16.531-13.469,30-30,30\r\n\t\tC337.562,214,331.531,211.938,326.625,208.406z"},"children":[{"name":"path","attribs":{"d":"M384,184c0-22.094-17.938-40-40-40s-40,17.906-40,40c0,22.062,17.938,40,40,40S384,206.062,384,184z M314,184\r\n\t\tc0-16.547,13.469-30,30-30c6.438,0,12.469,2.094,17.375,5.562l-41.781,41.812C316.078,196.469,314,190.438,314,184z\r\n\t\t M326.625,208.406l41.781-41.766C371.938,171.547,374,177.562,374,184c0,16.531-13.469,30-30,30\r\n\t\tC337.562,214,331.531,211.938,326.625,208.406z"},"children":[]}]}]}]};exports.emailSpam=emailSpam;var emailUpload={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M368,234.375v74.438l-54.5-59.422l16.719-11.312c-5.984-1.531-11.641-3.922-16.688-7.203L256,271.75L166.281,208H256\r\n\t\t\th37.625c-2.391-4.984-4-10.344-4.812-16H256H128v160h128h128V223.062C379.422,227.75,373.969,231.531,368,234.375z M144,212.531\r\n\t\t\tl54.5,36.859L144,308.812V212.531z M256,336h-92.406l45.562-79.422L256,288.25l46.844-31.672L348.406,336H256z"},"children":[{"name":"path","attribs":{"d":"M368,234.375v74.438l-54.5-59.422l16.719-11.312c-5.984-1.531-11.641-3.922-16.688-7.203L256,271.75L166.281,208H256\r\n\t\t\th37.625c-2.391-4.984-4-10.344-4.812-16H256H128v160h128h128V223.062C379.422,227.75,373.969,231.531,368,234.375z M144,212.531\r\n\t\t\tl54.5,36.859L144,308.812V212.531z M256,336h-92.406l45.562-79.422L256,288.25l46.844-31.672L348.406,336H256z"},"children":[]}]}]}]},{"name":"path","attribs":{"d":"M344,224c22.094,0,40-17.906,40-40s-17.906-40-40-40s-40,17.906-40,40S321.906,224,344,224z M344,153.594L363.203,176H352\r\n\t\tv32h-16v-32h-11.203L344,153.594z"},"children":[{"name":"path","attribs":{"d":"M344,224c22.094,0,40-17.906,40-40s-17.906-40-40-40s-40,17.906-40,40S321.906,224,344,224z M344,153.594L363.203,176H352\r\n\t\tv32h-16v-32h-11.203L344,153.594z"},"children":[]}]}]}]};exports.emailUpload=emailUpload;var euro={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"path","attribs":{"d":"M277.719,384c-34.656,0-65.891-13.734-86.094-39.234c-12.188-14.109-20.562-33.172-24-56.375H143.25V264.75h21.344\r\n\t\tc0-1.906,0-3.781,0-5.719c0-4.938,0.375-9.891,0.75-14.078H143.25v-23.609h25.531c4.562-23.625,14.859-43.062,28.562-57.906\r\n\t\tC217.906,140.953,245.719,128,279.656,128c22.844,0,41.906,5.719,54.438,11.812l-9.5,35.047c-9.906-4.953-25.5-9.906-42.656-9.906\r\n\t\tc-19.062,0-35.812,6.859-48.406,20.953c-7.969,8.375-13.688,20.938-16.75,35.438h99.781v23.609H212.203\r\n\t\tc-0.766,4.188-0.766,8.766-0.766,13.719c0,2.297,0,3.812,0,6.078h105.125v23.641H215.625c2.688,15.984,8.391,28.578,16.375,36.953\r\n\t\tc12.969,14.094,31.25,20.578,51.062,20.578c18.656,0,36.188-6.484,44.969-11.047L336,368.781\r\n\t\tC323.438,376.375,302.125,384,277.719,384z"},"children":[{"name":"path","attribs":{"d":"M277.719,384c-34.656,0-65.891-13.734-86.094-39.234c-12.188-14.109-20.562-33.172-24-56.375H143.25V264.75h21.344\r\n\t\tc0-1.906,0-3.781,0-5.719c0-4.938,0.375-9.891,0.75-14.078H143.25v-23.609h25.531c4.562-23.625,14.859-43.062,28.562-57.906\r\n\t\tC217.906,140.953,245.719,128,279.656,128c22.844,0,41.906,5.719,54.438,11.812l-9.5,35.047c-9.906-4.953-25.5-9.906-42.656-9.906\r\n\t\tc-19.062,0-35.812,6.859-48.406,20.953c-7.969,8.375-13.688,20.938-16.75,35.438h99.781v23.609H212.203\r\n\t\tc-0.766,4.188-0.766,8.766-0.766,13.719c0,2.297,0,3.812,0,6.078h105.125v23.641H215.625c2.688,15.984,8.391,28.578,16.375,36.953\r\n\t\tc12.969,14.094,31.25,20.578,51.062,20.578c18.656,0,36.188-6.484,44.969-11.047L336,368.781\r\n\t\tC323.438,376.375,302.125,384,277.719,384z"},"children":[]}]}]}]};exports.euro=euro;var exclamation={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"polygon","attribs":{"points":"240,234.656 246.234,320 265.781,320 272,233.875 272,128 240,128 \t"},"children":[{"name":"polygon","attribs":{"points":"240,234.656 246.234,320 265.781,320 272,233.875 272,128 240,128 \t"},"children":[]}]},{"name":"rect","attribs":{"x":"240","y":"352","width":"32","height":"32"},"children":[{"name":"rect","attribs":{"x":"240","y":"352","width":"32","height":"32"},"children":[]}]}]}]};exports.exclamation=exclamation;var expandDirections={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"rect","attribs":{"x":"192","y":"208","width":"128","height":"96"},"children":[{"name":"rect","attribs":{"x":"192","y":"208","width":"128","height":"96"},"children":[]}]},{"name":"polygon","attribs":{"points":"176,288.016 176,224 144,256 \t"},"children":[{"name":"polygon","attribs":{"points":"176,288.016 176,224 144,256 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"336,288.016 368.016,256 336,224 \t"},"children":[{"name":"polygon","attribs":{"points":"336,288.016 368.016,256 336,224 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"256.016,160.016 224,192 288.016,192 \t"},"children":[{"name":"polygon","attribs":{"points":"256.016,160.016 224,192 288.016,192 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"255.984,351.984 288,320 223.984,320 \t"},"children":[{"name":"polygon","attribs":{"points":"255.984,351.984 288,320 223.984,320 \t"},"children":[]}]}]}]};exports.expandDirections=expandDirections;var expandHorizontal={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"rect","attribs":{"x":"192","y":"208","width":"128","height":"96"},"children":[{"name":"rect","attribs":{"x":"192","y":"208","width":"128","height":"96"},"children":[]}]},{"name":"polygon","attribs":{"points":"176,288.016 176,224 144,256 \t"},"children":[{"name":"polygon","attribs":{"points":"176,288.016 176,224 144,256 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"336,288.016 368.016,256 336,224 \t"},"children":[{"name":"polygon","attribs":{"points":"336,288.016 368.016,256 336,224 \t"},"children":[]}]}]}]};exports.expandHorizontal=expandHorizontal;var expandVertical={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"rect","attribs":{"x":"192","y":"208","width":"128","height":"96"},"children":[{"name":"rect","attribs":{"x":"192","y":"208","width":"128","height":"96"},"children":[]}]},{"name":"polygon","attribs":{"points":"256,160 224,192 288,192 \t"},"children":[{"name":"polygon","attribs":{"points":"256,160 224,192 288,192 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"256,352.031 288,320 224,320 \t"},"children":[{"name":"polygon","attribs":{"points":"256,352.031 288,320 224,320 \t"},"children":[]}]}]}]};exports.expandVertical=expandVertical;var expand={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.594,0,256c0,141.375,114.609,256,256,256s256-114.625,256-256C512,114.594,397.391,0,256,0z\r\n\t\t M256,472c-119.297,0-216-96.719-216-216c0-119.312,96.703-216,216-216s216,96.688,216,216C472,375.281,375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.594,0,256c0,141.375,114.609,256,256,256s256-114.625,256-256C512,114.594,397.391,0,256,0z\r\n\t\t M256,472c-119.297,0-216-96.719-216-216c0-119.312,96.703-216,216-216s216,96.688,216,216C472,375.281,375.297,472,256,472z"},"children":[]}]},{"name":"polygon","attribs":{"points":"384,192.188 384,128 319.281,128 336.281,145 255.469,225.812 174.562,144.969 191.469,128 128,128 128,192.312 \r\n\t\t144.766,175.219 225.438,256 144.75,336.922 128,319.906 128,384 191.406,384 174.531,367.078 255.469,286.188 336.312,367 \r\n\t\t319.281,384 384,384 384,320 366.797,336.906 285.922,256 366.734,175.188 \t"},"children":[{"name":"polygon","attribs":{"points":"384,192.188 384,128 319.281,128 336.281,145 255.469,225.812 174.562,144.969 191.469,128 128,128 128,192.312 \r\n\t\t144.766,175.219 225.438,256 144.75,336.922 128,319.906 128,384 191.406,384 174.531,367.078 255.469,286.188 336.312,367 \r\n\t\t319.281,384 384,384 384,320 366.797,336.906 285.922,256 366.734,175.188 \t"},"children":[]}]}]}]};exports.expand=expand;var eyeDisabled={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M335.578,221.688l-96.859,96.875C244.297,319.406,250,320,256,320c70.688,0,112-64,112-64S356.547,238.438,335.578,221.688\r\n\t\tz"},"children":[{"name":"path","attribs":{"d":"M335.578,221.688l-96.859,96.875C244.297,319.406,250,320,256,320c70.688,0,112-64,112-64S356.547,238.438,335.578,221.688\r\n\t\tz"},"children":[]}]},{"name":"path","attribs":{"d":"M176.453,290.328l96.859-96.875C267.734,192.609,262,192,256,192c-70.688,0-112,64-112,64S155.453,273.594,176.453,290.328\r\n\t\tz"},"children":[{"name":"path","attribs":{"d":"M176.453,290.328l96.859-96.875C267.734,192.609,262,192,256,192c-70.688,0-112,64-112,64S155.453,273.594,176.453,290.328\r\n\t\tz"},"children":[]}]},{"name":"polygon","attribs":{"points":"144,344 166.406,368 368,166.398 345.594,144 \t"},"children":[{"name":"polygon","attribs":{"points":"144,344 166.406,368 368,166.398 345.594,144 \t"},"children":[]}]},{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]}]}]};exports.eyeDisabled=eyeDisabled;var eye={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,192c-70.688,0-112,64-112,64s41.312,64,112,64s112-64,112-64S326.688,192,256,192z M256,287.75\r\n\t\tc-17.672,0-32-14.219-32-31.75s14.328-31.75,32-31.75s31.984,14.219,31.984,31.75S273.672,287.75,256,287.75z"},"children":[{"name":"path","attribs":{"d":"M256,192c-70.688,0-112,64-112,64s41.312,64,112,64s112-64,112-64S326.688,192,256,192z M256,287.75\r\n\t\tc-17.672,0-32-14.219-32-31.75s14.328-31.75,32-31.75s31.984,14.219,31.984,31.75S273.672,287.75,256,287.75z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]}]}]};exports.eye=eye;var femaleSymbol={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","cx":"256","cy":"160","r":"32"},"children":[{"name":"circle","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","cx":"256","cy":"160","r":"32"},"children":[]}]},{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"304,208 208,208 208,272 224,272 208,368 240,368 240,384 271.75,384 \r\n\t\t272,368 304,368 288,272 304,272 \t"},"children":[{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"304,208 208,208 208,272 224,272 208,368 240,368 240,384 271.75,384 \r\n\t\t272,368 304,368 288,272 304,272 \t"},"children":[]}]}]}]};exports.femaleSymbol=femaleSymbol;var fire={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"path","attribs":{"d":"M230.839,128c0,0,95.484,64,84.266,152c0,0,32.047-8,23.438-60.938c0,0,46.234,44.609,45.453,84.938\r\n\tc-0.641,32.766-41.641,80-118.75,80c0,0,69.531-62.188-22.344-140.875c0,0-84.984,83.844-28.906,140.875\r\n\tc0,0-113.078-28.766-79.906-100.797C167.261,211.156,239.823,204.797,230.839,128z"},"children":[]}]};exports.fire=fire;var forward={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"polygon","attribs":{"points":"176,336 272,256 176,176 \t"},"children":[{"name":"polygon","attribs":{"points":"176,336 272,256 176,176 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"272,256 272,336 368,256 272,176 \t"},"children":[{"name":"polygon","attribs":{"points":"272,256 272,336 368,256 272,176 \t"},"children":[]}]}]}]};exports.forward=forward;var graphs={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"path","attribs":{"d":"M352,128c-17.625,0-32,14.344-32,32c0,11.938,6.641,22.25,16.375,27.75L306,288.188c-0.656-0.047-1.312-0.188-2-0.188\r\n\tc-5.391,0-10.406,1.469-14.875,3.859l-35.781-39.172C255.031,248.781,256,244.5,256,240c0-17.656-14.344-32-32-32s-32,14.344-32,32\r\n\tc0,8.672,3.5,16.516,9.109,22.281l-33.859,58.609C164.906,320.375,162.5,320,160,320c-17.656,0-32,14.375-32,32s14.344,32,32,32\r\n\ts32-14.375,32-32c0-9.375-4.125-17.75-10.594-23.625l33.438-57.875c2.906,0.875,5.969,1.5,9.156,1.5\r\n\tc7.266,0,13.891-2.531,19.266-6.625l33.953,37.203C273.938,307.609,272,313.562,272,320c0,17.625,14.359,32,32,32\r\n\tc17.625,0,32-14.375,32-32c0-11.312-5.906-21.188-14.781-26.875l30.562-101.156c0.078,0,0.125,0.031,0.219,0.031\r\n\tc17.625,0,32-14.344,32-32S369.625,128,352,128z M160,368c-8.844,0-16-7.141-16-16s7.156-16,16-16s16,7.141,16,16\r\n\tS168.844,368,160,368z M224,256c-8.844,0-16-7.156-16-16s7.156-16,16-16s16,7.156,16,16S232.844,256,224,256z M304,336\r\n\tc-8.859,0-16-7.141-16-16s7.141-16,16-16s16,7.141,16,16S312.859,336,304,336z M352,176c-8.859,0-16-7.156-16-16s7.141-16,16-16\r\n\ts16,7.156,16,16S360.859,176,352,176z"},"children":[]}]};exports.graphs=graphs;var gridBig={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"128","y":"128","fill-rule":"evenodd","clip-rule":"evenodd","width":"112","height":"112"},"children":[{"name":"rect","attribs":{"x":"128","y":"128","fill-rule":"evenodd","clip-rule":"evenodd","width":"112","height":"112"},"children":[]}]},{"name":"rect","attribs":{"x":"128","y":"272","fill-rule":"evenodd","clip-rule":"evenodd","width":"112","height":"112"},"children":[{"name":"rect","attribs":{"x":"128","y":"272","fill-rule":"evenodd","clip-rule":"evenodd","width":"112","height":"112"},"children":[]}]},{"name":"rect","attribs":{"x":"272","y":"128","fill-rule":"evenodd","clip-rule":"evenodd","width":"112","height":"112"},"children":[{"name":"rect","attribs":{"x":"272","y":"128","fill-rule":"evenodd","clip-rule":"evenodd","width":"112","height":"112"},"children":[]}]},{"name":"rect","attribs":{"x":"272","y":"272","fill-rule":"evenodd","clip-rule":"evenodd","width":"112","height":"112"},"children":[{"name":"rect","attribs":{"x":"272","y":"272","fill-rule":"evenodd","clip-rule":"evenodd","width":"112","height":"112"},"children":[]}]}]}]}]}]};exports.gridBig=gridBig;var grids={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"144","y":"144","fill-rule":"evenodd","clip-rule":"evenodd","width":"64","height":"64"},"children":[{"name":"rect","attribs":{"x":"144","y":"144","fill-rule":"evenodd","clip-rule":"evenodd","width":"64","height":"64"},"children":[]}]},{"name":"rect","attribs":{"x":"224","y":"144","fill-rule":"evenodd","clip-rule":"evenodd","width":"64","height":"64"},"children":[{"name":"rect","attribs":{"x":"224","y":"144","fill-rule":"evenodd","clip-rule":"evenodd","width":"64","height":"64"},"children":[]}]},{"name":"rect","attribs":{"x":"304","y":"144","fill-rule":"evenodd","clip-rule":"evenodd","width":"64","height":"64"},"children":[{"name":"rect","attribs":{"x":"304","y":"144","fill-rule":"evenodd","clip-rule":"evenodd","width":"64","height":"64"},"children":[]}]},{"name":"rect","attribs":{"x":"304","y":"224","fill-rule":"evenodd","clip-rule":"evenodd","width":"64","height":"64"},"children":[{"name":"rect","attribs":{"x":"304","y":"224","fill-rule":"evenodd","clip-rule":"evenodd","width":"64","height":"64"},"children":[]}]},{"name":"rect","attribs":{"x":"304","y":"304","fill-rule":"evenodd","clip-rule":"evenodd","width":"64","height":"64"},"children":[{"name":"rect","attribs":{"x":"304","y":"304","fill-rule":"evenodd","clip-rule":"evenodd","width":"64","height":"64"},"children":[]}]},{"name":"rect","attribs":{"x":"224","y":"304","fill-rule":"evenodd","clip-rule":"evenodd","width":"64","height":"64"},"children":[{"name":"rect","attribs":{"x":"224","y":"304","fill-rule":"evenodd","clip-rule":"evenodd","width":"64","height":"64"},"children":[]}]},{"name":"rect","attribs":{"x":"144","y":"304","fill-rule":"evenodd","clip-rule":"evenodd","width":"64","height":"64"},"children":[{"name":"rect","attribs":{"x":"144","y":"304","fill-rule":"evenodd","clip-rule":"evenodd","width":"64","height":"64"},"children":[]}]},{"name":"rect","attribs":{"x":"144","y":"224","fill-rule":"evenodd","clip-rule":"evenodd","width":"64","height":"64"},"children":[{"name":"rect","attribs":{"x":"144","y":"224","fill-rule":"evenodd","clip-rule":"evenodd","width":"64","height":"64"},"children":[]}]},{"name":"rect","attribs":{"x":"224","y":"224","fill-rule":"evenodd","clip-rule":"evenodd","width":"64","height":"64"},"children":[{"name":"rect","attribs":{"x":"224","y":"224","fill-rule":"evenodd","clip-rule":"evenodd","width":"64","height":"64"},"children":[]}]}]}]};exports.grids=grids;var hddNet={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256c0,141.391,114.609,256,256,256c141.391,0,256-114.609,256-256\r\n\tC512,114.609,397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M364.422,182.844l-24.844-49.688C337.609,129.219,332.406,126,328,126H184c-4.398,0-9.609,3.219-11.578,7.156\r\n\t\tl-24.844,49.688C145.609,186.781,144,193.594,144,198v32c0,4.406,3.602,8,8,8h208c4.406,0,8-3.594,8-8v-32\r\n\t\tC368,193.594,366.391,186.781,364.422,182.844z M168,222c-4.398,0-8-3.594-8-8s3.602-8,8-8s8,3.594,8,8S172.398,222,168,222z\r\n\t\t M200,222c-4.398,0-8-3.594-8-8s3.602-8,8-8s8,3.594,8,8S204.398,222,200,222z M232,222c-4.398,0-8-3.594-8-8s3.602-8,8-8\r\n\t\ts8,3.594,8,8S236.398,222,232,222z M344,222c-4.406,0-8-3.594-8-8s3.594-8,8-8s8,3.594,8,8S348.406,222,344,222z"},"children":[{"name":"path","attribs":{"d":"M364.422,182.844l-24.844-49.688C337.609,129.219,332.406,126,328,126H184c-4.398,0-9.609,3.219-11.578,7.156\r\n\t\tl-24.844,49.688C145.609,186.781,144,193.594,144,198v32c0,4.406,3.602,8,8,8h208c4.406,0,8-3.594,8-8v-32\r\n\t\tC368,193.594,366.391,186.781,364.422,182.844z M168,222c-4.398,0-8-3.594-8-8s3.602-8,8-8s8,3.594,8,8S172.398,222,168,222z\r\n\t\t M200,222c-4.398,0-8-3.594-8-8s3.602-8,8-8s8,3.594,8,8S204.398,222,200,222z M232,222c-4.398,0-8-3.594-8-8s3.602-8,8-8\r\n\t\ts8,3.594,8,8S236.398,222,232,222z M344,222c-4.406,0-8-3.594-8-8s3.594-8,8-8s8,3.594,8,8S348.406,222,344,222z"},"children":[]}]},{"name":"path","attribs":{"d":"M360,254H152c-4.398,0-8,3.594-8,8v32c0,4.406,3.602,8,8,8h64c4.398,0,11.602,0,16,0c2.203,0,5.102,0,8,0v48h-64v32h64h32\r\n\t\th64v-32h-64v-48c2.906,0,5.797,0,8,0c4.406,0,11.594,0,16,0h64c4.406,0,8-3.594,8-8v-32C368,257.594,364.406,254,360,254z M168,286\r\n\t\tc-4.398,0-8-3.594-8-8s3.602-8,8-8s8,3.594,8,8S172.398,286,168,286z M200,286c-4.398,0-8-3.594-8-8s3.602-8,8-8s8,3.594,8,8\r\n\t\tS204.398,286,200,286z M232,286c-4.398,0-8-3.594-8-8s3.602-8,8-8s8,3.594,8,8S236.398,286,232,286z M344,286c-4.406,0-8-3.594-8-8\r\n\t\ts3.594-8,8-8s8,3.594,8,8S348.406,286,344,286z"},"children":[{"name":"path","attribs":{"d":"M360,254H152c-4.398,0-8,3.594-8,8v32c0,4.406,3.602,8,8,8h64c4.398,0,11.602,0,16,0c2.203,0,5.102,0,8,0v48h-64v32h64h32\r\n\t\th64v-32h-64v-48c2.906,0,5.797,0,8,0c4.406,0,11.594,0,16,0h64c4.406,0,8-3.594,8-8v-32C368,257.594,364.406,254,360,254z M168,286\r\n\t\tc-4.398,0-8-3.594-8-8s3.602-8,8-8s8,3.594,8,8S172.398,286,168,286z M200,286c-4.398,0-8-3.594-8-8s3.602-8,8-8s8,3.594,8,8\r\n\t\tS204.398,286,200,286z M232,286c-4.398,0-8-3.594-8-8s3.602-8,8-8s8,3.594,8,8S236.398,286,232,286z M344,286c-4.406,0-8-3.594-8-8\r\n\t\ts3.594-8,8-8s8,3.594,8,8S348.406,286,344,286z"},"children":[]}]},{"name":"rect","attribs":{"x":"144","y":"350","width":"16","height":"32"},"children":[{"name":"rect","attribs":{"x":"144","y":"350","width":"16","height":"32"},"children":[]}]},{"name":"rect","attribs":{"x":"352","y":"350","width":"16","height":"32"},"children":[{"name":"rect","attribs":{"x":"352","y":"350","width":"16","height":"32"},"children":[]}]}]}]};exports.hddNet=hddNet;var hddRaid={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M338.969,135.438C337.344,131.344,332.406,128,328,128H184\r\n\t\t\tc-4.398,0-9.336,3.344-10.969,7.438l-26.062,65.125C145.336,204.656,144,211.594,144,216v32c0,4.406,3.602,8,8,8h208\r\n\t\t\tc4.406,0,8-3.594,8-8v-32c0-4.406-1.344-11.344-2.969-15.438L338.969,135.438z M176,232c0,4.406-3.602,8-8,8l0,0\r\n\t\t\tc-4.398,0-8-3.594-8-8l0,0c0-4.406,3.602-8,8-8l0,0C172.398,224,176,227.594,176,232L176,232z M208,232c0,4.406-3.602,8-8,8l0,0\r\n\t\t\tc-4.398,0-8-3.594-8-8l0,0c0-4.406,3.602-8,8-8l0,0C204.398,224,208,227.594,208,232L208,232z M240,232c0,4.406-3.602,8-8,8l0,0\r\n\t\t\tc-4.398,0-8-3.594-8-8l0,0c0-4.406,3.602-8,8-8l0,0C236.398,224,240,227.594,240,232L240,232z M352,232c0,4.406-3.594,8-8,8l0,0\r\n\t\t\tc-4.406,0-8-3.594-8-8l0,0c0-4.406,3.594-8,8-8l0,0C348.406,224,352,227.594,352,232L352,232z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M338.969,135.438C337.344,131.344,332.406,128,328,128H184\r\n\t\t\tc-4.398,0-9.336,3.344-10.969,7.438l-26.062,65.125C145.336,204.656,144,211.594,144,216v32c0,4.406,3.602,8,8,8h208\r\n\t\t\tc4.406,0,8-3.594,8-8v-32c0-4.406-1.344-11.344-2.969-15.438L338.969,135.438z M176,232c0,4.406-3.602,8-8,8l0,0\r\n\t\t\tc-4.398,0-8-3.594-8-8l0,0c0-4.406,3.602-8,8-8l0,0C172.398,224,176,227.594,176,232L176,232z M208,232c0,4.406-3.602,8-8,8l0,0\r\n\t\t\tc-4.398,0-8-3.594-8-8l0,0c0-4.406,3.602-8,8-8l0,0C204.398,224,208,227.594,208,232L208,232z M240,232c0,4.406-3.602,8-8,8l0,0\r\n\t\t\tc-4.398,0-8-3.594-8-8l0,0c0-4.406,3.602-8,8-8l0,0C236.398,224,240,227.594,240,232L240,232z M352,232c0,4.406-3.594,8-8,8l0,0\r\n\t\t\tc-4.406,0-8-3.594-8-8l0,0c0-4.406,3.594-8,8-8l0,0C348.406,224,352,227.594,352,232L352,232z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M144,312c0,4.406,3.602,8,8,8h208c4.406,0,8-3.594,8-8v-32c0-4.406-3.594-8-8-8\r\n\t\t\tH152c-4.398,0-8,3.594-8,8V312z M336,296c0-4.406,3.594-8,8-8l0,0c4.406,0,8,3.594,8,8l0,0c0,4.406-3.594,8-8,8l0,0\r\n\t\t\tC339.594,304,336,300.406,336,296L336,296z M224,296c0-4.406,3.602-8,8-8l0,0c4.398,0,8,3.594,8,8l0,0c0,4.406-3.602,8-8,8l0,0\r\n\t\t\tC227.602,304,224,300.406,224,296L224,296z M192,296c0-4.406,3.602-8,8-8l0,0c4.398,0,8,3.594,8,8l0,0c0,4.406-3.602,8-8,8l0,0\r\n\t\t\tC195.602,304,192,300.406,192,296L192,296z M160,296c0-4.406,3.602-8,8-8l0,0c4.398,0,8,3.594,8,8l0,0c0,4.406-3.602,8-8,8l0,0\r\n\t\t\tC163.602,304,160,300.406,160,296L160,296z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M144,312c0,4.406,3.602,8,8,8h208c4.406,0,8-3.594,8-8v-32c0-4.406-3.594-8-8-8\r\n\t\t\tH152c-4.398,0-8,3.594-8,8V312z M336,296c0-4.406,3.594-8,8-8l0,0c4.406,0,8,3.594,8,8l0,0c0,4.406-3.594,8-8,8l0,0\r\n\t\t\tC339.594,304,336,300.406,336,296L336,296z M224,296c0-4.406,3.602-8,8-8l0,0c4.398,0,8,3.594,8,8l0,0c0,4.406-3.602,8-8,8l0,0\r\n\t\t\tC227.602,304,224,300.406,224,296L224,296z M192,296c0-4.406,3.602-8,8-8l0,0c4.398,0,8,3.594,8,8l0,0c0,4.406-3.602,8-8,8l0,0\r\n\t\t\tC195.602,304,192,300.406,192,296L192,296z M160,296c0-4.406,3.602-8,8-8l0,0c4.398,0,8,3.594,8,8l0,0c0,4.406-3.602,8-8,8l0,0\r\n\t\t\tC163.602,304,160,300.406,160,296L160,296z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M144,376c0,4.406,3.602,8,8,8h208c4.406,0,8-3.594,8-8v-32c0-4.406-3.594-8-8-8\r\n\t\t\tH152c-4.398,0-8,3.594-8,8V376z M336,360c0-4.406,3.594-8,8-8l0,0c4.406,0,8,3.594,8,8l0,0c0,4.406-3.594,8-8,8l0,0\r\n\t\t\tC339.594,368,336,364.406,336,360L336,360z M224,360c0-4.406,3.602-8,8-8l0,0c4.398,0,8,3.594,8,8l0,0c0,4.406-3.602,8-8,8l0,0\r\n\t\t\tC227.602,368,224,364.406,224,360L224,360z M192,360c0-4.406,3.602-8,8-8l0,0c4.398,0,8,3.594,8,8l0,0c0,4.406-3.602,8-8,8l0,0\r\n\t\t\tC195.602,368,192,364.406,192,360L192,360z M160,360c0-4.406,3.602-8,8-8l0,0c4.398,0,8,3.594,8,8l0,0c0,4.406-3.602,8-8,8l0,0\r\n\t\t\tC163.602,368,160,364.406,160,360L160,360z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M144,376c0,4.406,3.602,8,8,8h208c4.406,0,8-3.594,8-8v-32c0-4.406-3.594-8-8-8\r\n\t\t\tH152c-4.398,0-8,3.594-8,8V376z M336,360c0-4.406,3.594-8,8-8l0,0c4.406,0,8,3.594,8,8l0,0c0,4.406-3.594,8-8,8l0,0\r\n\t\t\tC339.594,368,336,364.406,336,360L336,360z M224,360c0-4.406,3.602-8,8-8l0,0c4.398,0,8,3.594,8,8l0,0c0,4.406-3.602,8-8,8l0,0\r\n\t\t\tC227.602,368,224,364.406,224,360L224,360z M192,360c0-4.406,3.602-8,8-8l0,0c4.398,0,8,3.594,8,8l0,0c0,4.406-3.602,8-8,8l0,0\r\n\t\t\tC195.602,368,192,364.406,192,360L192,360z M160,360c0-4.406,3.602-8,8-8l0,0c4.398,0,8,3.594,8,8l0,0c0,4.406-3.602,8-8,8l0,0\r\n\t\t\tC163.602,368,160,364.406,160,360L160,360z"},"children":[]}]}]}]}]}]};exports.hddRaid=hddRaid;var hdd={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\t\tS397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\t\tS397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M367.219,280.047l-12.594-128.078c-0.422-4.391-4.375-7.969-8.781-7.969h-176.25\r\n\t\t\tc-4.406,0-8.438,3.578-8.969,7.938l-15.656,128.141c-0.531,4.359-0.969,11.531-0.969,15.938V360c0,4.406,3.594,8,8,8h208\r\n\t\t\tc4.406,0,8-3.594,8-8v-63.984C368,291.609,367.641,284.438,367.219,280.047z M352,344c0,4.406-3.594,8-8,8H168\r\n\t\t\tc-4.406,0-8-3.594-8-8v-32c0-4.406,3.594-8,8-8h176c4.406,0,8,3.594,8,8V344z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M367.219,280.047l-12.594-128.078c-0.422-4.391-4.375-7.969-8.781-7.969h-176.25\r\n\t\t\tc-4.406,0-8.438,3.578-8.969,7.938l-15.656,128.141c-0.531,4.359-0.969,11.531-0.969,15.938V360c0,4.406,3.594,8,8,8h208\r\n\t\t\tc4.406,0,8-3.594,8-8v-63.984C368,291.609,367.641,284.438,367.219,280.047z M352,344c0,4.406-3.594,8-8,8H168\r\n\t\t\tc-4.406,0-8-3.594-8-8v-32c0-4.406,3.594-8,8-8h176c4.406,0,8,3.594,8,8V344z"},"children":[]}]},{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M329.594,320h-144c-4.406,0-8,3.594-8,8.016c0,4.438,3.594,7.984,8,7.984h144\r\n\t\t\tc4.438,0,7.984-3.547,7.984-7.984C337.578,323.594,334.031,320,329.594,320z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M329.594,320h-144c-4.406,0-8,3.594-8,8.016c0,4.438,3.594,7.984,8,7.984h144\r\n\t\t\tc4.438,0,7.984-3.547,7.984-7.984C337.578,323.594,334.031,320,329.594,320z"},"children":[]}]}]}]}]}]};exports.hdd=hdd;var heart={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M310.75,144c-21.875,0-41.375,10.078-54.75,25.766C242.5,154.078,223,144,201.125,144C160.75,144,128,177.422,128,218.625\r\n\t\tC128,312,256,368,256,368s128-56,128-149.375C384,177.422,351.25,144,310.75,144z"},"children":[{"name":"path","attribs":{"d":"M310.75,144c-21.875,0-41.375,10.078-54.75,25.766C242.5,154.078,223,144,201.125,144C160.75,144,128,177.422,128,218.625\r\n\t\tC128,312,256,368,256,368s128-56,128-149.375C384,177.422,351.25,144,310.75,144z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]}]}]};exports.heart=heart;var homeWifi={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256.008,224c-17.672,0-32,14.312-32,32c0,17.672,14.328,32,32,32C273.672,288,288,273.672,288,256\r\n\t\tC288,238.312,273.672,224,256.008,224z"},"children":[{"name":"path","attribs":{"d":"M256.008,224c-17.672,0-32,14.312-32,32c0,17.672,14.328,32,32,32C273.672,288,288,273.672,288,256\r\n\t\tC288,238.312,273.672,224,256.008,224z"},"children":[]}]},{"name":"path","attribs":{"d":"M304.875,202.688l-18.016,13.531C299.609,224.844,308,239.438,308,256s-8.391,31.141-21.141,39.766l18.016,13.531\r\n\t\tC320.094,296.453,330,277.453,330,256C330,234.531,320.094,215.531,304.875,202.688z"},"children":[{"name":"path","attribs":{"d":"M304.875,202.688l-18.016,13.531C299.609,224.844,308,239.438,308,256s-8.391,31.141-21.141,39.766l18.016,13.531\r\n\t\tC320.094,296.453,330,277.453,330,256C330,234.531,320.094,215.531,304.875,202.688z"},"children":[]}]},{"name":"path","attribs":{"d":"M348.844,169.594l-17.75,13.344C350.125,201.469,362,227.344,362,256s-11.875,54.531-30.906,73.047l17.75,13.359\r\n\t\tC370.562,320.047,384,289.625,384,256S370.562,191.938,348.844,169.594z"},"children":[{"name":"path","attribs":{"d":"M348.844,169.594l-17.75,13.344C350.125,201.469,362,227.344,362,256s-11.875,54.531-30.906,73.047l17.75,13.359\r\n\t\tC370.562,320.047,384,289.625,384,256S370.562,191.938,348.844,169.594z"},"children":[]}]},{"name":"path","attribs":{"d":"M204.008,256.531c0.219-16.562,8.781-31.062,21.656-39.516L207.82,203.25c-15.375,12.656-25.531,31.516-25.812,53\r\n\t\tc-0.281,21.469,9.375,40.578,24.438,53.625l18.188-13.297C211.992,287.812,203.789,273.094,204.008,256.531z"},"children":[{"name":"path","attribs":{"d":"M204.008,256.531c0.219-16.562,8.781-31.062,21.656-39.516L207.82,203.25c-15.375,12.656-25.531,31.516-25.812,53\r\n\t\tc-0.281,21.469,9.375,40.578,24.438,53.625l18.188-13.297C211.992,287.812,203.789,273.094,204.008,256.531z"},"children":[]}]},{"name":"path","attribs":{"d":"M181.867,183.156l-17.578-13.562c-22,22.062-35.844,52.312-36.281,85.938c-0.438,33.641,12.625,64.234,34.031,86.875\r\n\t\tl17.938-13.125c-18.812-18.781-30.344-44.797-29.969-73.453C150.383,227.156,162.602,201.438,181.867,183.156z"},"children":[{"name":"path","attribs":{"d":"M181.867,183.156l-17.578-13.562c-22,22.062-35.844,52.312-36.281,85.938c-0.438,33.641,12.625,64.234,34.031,86.875\r\n\t\tl17.938-13.125c-18.812-18.781-30.344-44.797-29.969-73.453C150.383,227.156,162.602,201.438,181.867,183.156z"},"children":[]}]}]}]};exports.homeWifi=homeWifi;var idea={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,384c17.672,0,32-14.328,32-32h-64C224,369.672,238.328,384,256,384z"},"children":[{"name":"path","attribs":{"d":"M256,384c17.672,0,32-14.328,32-32h-64C224,369.672,238.328,384,256,384z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,128c-53.016,0-96,42.984-96,96c0,37.781,21.875,70.375,53.625,86.031L224,336h64l10.375-25.969\r\n\t\tC330.109,294.375,352,261.781,352,224C352,170.984,309.016,128,256,128z"},"children":[{"name":"path","attribs":{"d":"M256,128c-53.016,0-96,42.984-96,96c0,37.781,21.875,70.375,53.625,86.031L224,336h64l10.375-25.969\r\n\t\tC330.109,294.375,352,261.781,352,224C352,170.984,309.016,128,256,128z"},"children":[]}]}]}]};exports.idea=idea;var info={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M285.172,331.453c-12.453,13.25-20.547,18.781-26.094,18.781c-3.859,0-5.172-3.422-4.312-11.141\r\n\t\tc2.594-20.062,17.531-84.578,21.781-107.625c4.266-19.719,3-29.953-2.562-29.953c-10.641,0-36.734,17.516-53.828,35.016\r\n\t\tc-0.875,1.344-2.562,8.578-1.688,11.125c0,0.875,1.266,1.312,1.266,1.312c10.266-8.125,18.391-12.844,23.109-12.844\r\n\t\tc2.109,0,2.938,3.406,1.688,9.406c-5.125,25.625-13.672,65.406-20.078,98.281c-5.984,28.672-2.172,40.188,6.812,40.188\r\n\t\ts33.766-11.984,53.906-38.906c0.812-2.094,1.641-10.188,1.25-12.359C286.422,331.906,285.172,331.453,285.172,331.453z"},"children":[{"name":"path","attribs":{"d":"M285.172,331.453c-12.453,13.25-20.547,18.781-26.094,18.781c-3.859,0-5.172-3.422-4.312-11.141\r\n\t\tc2.594-20.062,17.531-84.578,21.781-107.625c4.266-19.719,3-29.953-2.562-29.953c-10.641,0-36.734,17.516-53.828,35.016\r\n\t\tc-0.875,1.344-2.562,8.578-1.688,11.125c0,0.875,1.266,1.312,1.266,1.312c10.266-8.125,18.391-12.844,23.109-12.844\r\n\t\tc2.109,0,2.938,3.406,1.688,9.406c-5.125,25.625-13.672,65.406-20.078,98.281c-5.984,28.672-2.172,40.188,6.812,40.188\r\n\t\ts33.766-11.984,53.906-38.906c0.812-2.094,1.641-10.188,1.25-12.359C286.422,331.906,285.172,331.453,285.172,331.453z"},"children":[]}]},{"name":"path","attribs":{"d":"M281.281,128c-7.297,0-16.25,3.414-20.516,7.703c-1.688,2.141-3.406,8.539-3.859,11.945\r\n\t\tc0.453,7.711,2.578,11.984,6.859,14.562c2.109,1.68,16.219,0.414,19.219-1.312c5.188-3.398,9.828-10.25,10.703-18.375\r\n\t\tc0.375-3.82-0.438-8.984-2.141-11.531C290.688,129.719,287.25,128,281.281,128z"},"children":[{"name":"path","attribs":{"d":"M281.281,128c-7.297,0-16.25,3.414-20.516,7.703c-1.688,2.141-3.406,8.539-3.859,11.945\r\n\t\tc0.453,7.711,2.578,11.984,6.859,14.562c2.109,1.68,16.219,0.414,19.219-1.312c5.188-3.398,9.828-10.25,10.703-18.375\r\n\t\tc0.375-3.82-0.438-8.984-2.141-11.531C290.688,129.719,287.25,128,281.281,128z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]}]}]};exports.info=info;var italic={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"path","attribs":{"d":"M272.562,361.891L271.016,368H192l1.984-6.109c7.922-0.219,13.172-1,15.719-2.312c4.141-1.875,7.219-4.469,9.203-7.766\r\n\tc3.109-5.172,6.312-14.422,9.625-27.75l33.406-135.125c2.844-11.25,4.25-19.719,4.25-25.438c0-2.875-0.625-5.297-1.828-7.281\r\n\tc-1.234-1.969-3.094-3.5-5.594-4.531c-2.516-1.062-7.391-1.578-14.672-1.578l1.719-6.109H320l-1.562,6.109\r\n\tc-6.031-0.109-10.516,0.672-13.453,2.312c-4.234,2.203-7.484,5.344-9.688,9.422c-2.234,4.062-5.078,13.094-8.578,27.094\r\n\tl-33.266,135.125c-3.016,12.438-4.531,20.375-4.531,23.781c0,2.75,0.578,5.094,1.766,7.031c1.188,1.922,3.078,3.406,5.656,4.453\r\n\tC258.938,360.375,264.359,361.234,272.562,361.891z"},"children":[]}]};exports.italic=italic;var key={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"path","attribs":{"d":"M253.734,240c-7.141-27.562-31.953-48-61.734-48c-35.344,0-64,28.656-64,64s28.656,64,64,64\r\n\tc29.781,0,54.594-20.453,61.734-48H336v32h32v-32h16v-32H253.734z M192,296c-22.094,0-40-17.922-40-40c0-22.094,17.906-40,40-40\r\n\ts40,17.906,40,40C232,278.078,214.094,296,192,296z"},"children":[]}]};exports.key=key;var landscape={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M256,160L128,352h256L256,160z M256,256l-16,16l-16-32l32-48l32,48h-16L256,256z"},"children":[]}]};exports.landscape=landscape;var layers={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"polygon","attribs":{"points":"256,355.219 151.031,289.625 128,304 256,384 384,304.25 360.969,289.812 \t"},"children":[{"name":"polygon","attribs":{"points":"256,355.219 151.031,289.625 128,304 256,384 384,304.25 360.969,289.812 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"256,306.859 151.594,241.609 128,256.359 256,336.359 384,256.609 360.391,241.797 \t"},"children":[{"name":"polygon","attribs":{"points":"256,306.859 151.594,241.609 128,256.359 256,336.359 384,256.609 360.391,241.797 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"128,208 256,288 384,208.25 256,128 \t"},"children":[{"name":"polygon","attribs":{"points":"128,208 256,288 384,208.25 256,128 \t"},"children":[]}]}]}]};exports.layers=layers;var leaf={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"path","attribs":{"d":"M224,192c-40.289,32.219-46.742,100.328-47.781,121.453C166.477,323.422,144,346.969,144,352c0,6.406,8,16,16,16\r\n\tc6.875,0,20.82-35.406,24.609-45.359c22.312,6.062,83.609,17.438,127.391-25.047C366.406,244.797,368,144,368,144\r\n\tS272,153.594,224,192z"},"children":[]}]};exports.leaf=leaf;var leftRight={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\t\tS397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\t\tS397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"304,240 208,240 208,208 160,256 208,304 208,272 304,272 304,304 \r\n\t\t\t352,256 304,208 \t\t"},"children":[{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"304,240 208,240 208,208 160,256 208,304 208,272 304,272 304,304 \r\n\t\t\t352,256 304,208 \t\t"},"children":[]}]},{"name":"rect","attribs":{"x":"368","y":"192","fill-rule":"evenodd","clip-rule":"evenodd","width":"16","height":"128"},"children":[{"name":"rect","attribs":{"x":"368","y":"192","fill-rule":"evenodd","clip-rule":"evenodd","width":"16","height":"128"},"children":[]}]},{"name":"rect","attribs":{"x":"128","y":"192","fill-rule":"evenodd","clip-rule":"evenodd","width":"16","height":"128"},"children":[{"name":"rect","attribs":{"x":"128","y":"192","fill-rule":"evenodd","clip-rule":"evenodd","width":"16","height":"128"},"children":[]}]}]}]}]}]};exports.leftRight=leftRight;var likeAdd={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M344,288c4.781,0,9.328,0.781,13.766,1.922C373.062,269.562,384,245.719,384,218.625C384,177.422,351.25,144,310.75,144\r\n\t\t\tc-21.875,0-41.375,10.078-54.75,25.766C242.5,154.078,223,144,201.125,144C160.75,144,128,177.422,128,218.625\r\n\t\t\tC128,312,256,368,256,368s14-6.203,32.641-17.688C288.406,348.203,288,346.156,288,344C288,313.125,313.125,288,344,288z"},"children":[{"name":"path","attribs":{"d":"M344,288c4.781,0,9.328,0.781,13.766,1.922C373.062,269.562,384,245.719,384,218.625C384,177.422,351.25,144,310.75,144\r\n\t\t\tc-21.875,0-41.375,10.078-54.75,25.766C242.5,154.078,223,144,201.125,144C160.75,144,128,177.422,128,218.625\r\n\t\t\tC128,312,256,368,256,368s14-6.203,32.641-17.688C288.406,348.203,288,346.156,288,344C288,313.125,313.125,288,344,288z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]}]}]},{"name":"path","attribs":{"d":"M344,304c-22.094,0-40,17.906-40,40s17.906,40,40,40s40-17.906,40-40S366.094,304,344,304z M368,352h-16v16h-16v-16h-16\r\n\t\tv-16h16v-16h16v16h16V352z"},"children":[{"name":"path","attribs":{"d":"M344,304c-22.094,0-40,17.906-40,40s17.906,40,40,40s40-17.906,40-40S366.094,304,344,304z M368,352h-16v16h-16v-16h-16\r\n\t\tv-16h16v-16h16v16h16V352z"},"children":[]}]}]}]};exports.likeAdd=likeAdd;var likeBan={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M344,288c4.781,0,9.328,0.781,13.766,1.922C373.062,269.562,384,245.719,384,218.625C384,177.422,351.25,144,310.75,144\r\n\t\t\t\tc-21.875,0-41.375,10.078-54.75,25.766C242.5,154.078,223,144,201.125,144C160.75,144,128,177.422,128,218.625\r\n\t\t\t\tC128,312,256,368,256,368s14-6.203,32.641-17.688C288.406,348.203,288,346.156,288,344C288,313.125,313.125,288,344,288z"},"children":[{"name":"path","attribs":{"d":"M344,288c4.781,0,9.328,0.781,13.766,1.922C373.062,269.562,384,245.719,384,218.625C384,177.422,351.25,144,310.75,144\r\n\t\t\t\tc-21.875,0-41.375,10.078-54.75,25.766C242.5,154.078,223,144,201.125,144C160.75,144,128,177.422,128,218.625\r\n\t\t\t\tC128,312,256,368,256,368s14-6.203,32.641-17.688C288.406,348.203,288,346.156,288,344C288,313.125,313.125,288,344,288z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\t\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\t\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]}]}]}]}]},{"name":"path","attribs":{"d":"M384,344c0-22.094-17.938-40-40-40s-40,17.906-40,40c0,22.062,17.938,40,40,40S384,366.062,384,344z M314,344\r\n\t\tc0-16.547,13.469-30,30-30c6.438,0,12.469,2.094,17.375,5.562l-41.781,41.812C316.078,356.469,314,350.438,314,344z\r\n\t\t M326.625,368.406l41.781-41.766C371.938,331.547,374,337.562,374,344c0,16.531-13.469,30-30,30\r\n\t\tC337.562,374,331.531,371.938,326.625,368.406z"},"children":[{"name":"path","attribs":{"d":"M384,344c0-22.094-17.938-40-40-40s-40,17.906-40,40c0,22.062,17.938,40,40,40S384,366.062,384,344z M314,344\r\n\t\tc0-16.547,13.469-30,30-30c6.438,0,12.469,2.094,17.375,5.562l-41.781,41.812C316.078,356.469,314,350.438,314,344z\r\n\t\t M326.625,368.406l41.781-41.766C371.938,331.547,374,337.562,374,344c0,16.531-13.469,30-30,30\r\n\t\tC337.562,374,331.531,371.938,326.625,368.406z"},"children":[]}]}]}]};exports.likeBan=likeBan;var likeClose={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M344,288c4.781,0,9.328,0.781,13.766,1.922C373.062,269.562,384,245.719,384,218.625C384,177.422,351.25,144,310.75,144\r\n\t\t\t\tc-21.875,0-41.375,10.078-54.75,25.766C242.5,154.078,223,144,201.125,144C160.75,144,128,177.422,128,218.625\r\n\t\t\t\tC128,312,256,368,256,368s14-6.203,32.641-17.688C288.406,348.203,288,346.156,288,344C288,313.125,313.125,288,344,288z"},"children":[{"name":"path","attribs":{"d":"M344,288c4.781,0,9.328,0.781,13.766,1.922C373.062,269.562,384,245.719,384,218.625C384,177.422,351.25,144,310.75,144\r\n\t\t\t\tc-21.875,0-41.375,10.078-54.75,25.766C242.5,154.078,223,144,201.125,144C160.75,144,128,177.422,128,218.625\r\n\t\t\t\tC128,312,256,368,256,368s14-6.203,32.641-17.688C288.406,348.203,288,346.156,288,344C288,313.125,313.125,288,344,288z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\t\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\t\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]}]}]}]}]},{"name":"path","attribs":{"d":"M344,304c-22.094,0-40,17.906-40,40s17.906,40,40,40s40-17.906,40-40S366.094,304,344,304z M366.625,355.312\r\n\t\tl-11.312,11.312L344,355.312l-11.312,11.312l-11.312-11.312L332.688,344l-11.312-11.312l11.312-11.312L344,332.688l11.312-11.312\r\n\t\tl11.312,11.312L355.312,344L366.625,355.312z"},"children":[{"name":"path","attribs":{"d":"M344,304c-22.094,0-40,17.906-40,40s17.906,40,40,40s40-17.906,40-40S366.094,304,344,304z M366.625,355.312\r\n\t\tl-11.312,11.312L344,355.312l-11.312,11.312l-11.312-11.312L332.688,344l-11.312-11.312l11.312-11.312L344,332.688l11.312-11.312\r\n\t\tl11.312,11.312L355.312,344L366.625,355.312z"},"children":[]}]}]}]};exports.likeClose=likeClose;var likeDownload={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M344,288c4.781,0,9.328,0.781,13.766,1.922C373.062,269.562,384,245.719,384,218.625C384,177.422,351.25,144,310.75,144\r\n\t\t\t\tc-21.875,0-41.375,10.078-54.75,25.766C242.5,154.078,223,144,201.125,144C160.75,144,128,177.422,128,218.625\r\n\t\t\t\tC128,312,256,368,256,368s14-6.203,32.641-17.688C288.406,348.203,288,346.156,288,344C288,313.125,313.125,288,344,288z"},"children":[{"name":"path","attribs":{"d":"M344,288c4.781,0,9.328,0.781,13.766,1.922C373.062,269.562,384,245.719,384,218.625C384,177.422,351.25,144,310.75,144\r\n\t\t\t\tc-21.875,0-41.375,10.078-54.75,25.766C242.5,154.078,223,144,201.125,144C160.75,144,128,177.422,128,218.625\r\n\t\t\t\tC128,312,256,368,256,368s14-6.203,32.641-17.688C288.406,348.203,288,346.156,288,344C288,313.125,313.125,288,344,288z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\t\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\t\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]}]}]}]}]},{"name":"path","attribs":{"d":"M344,304c-22.094,0-40,17.906-40,40s17.906,40,40,40s40-17.906,40-40S366.094,304,344,304z M344,374.406L324.797,352H336\r\n\t\tv-32h16v32h11.203L344,374.406z"},"children":[{"name":"path","attribs":{"d":"M344,304c-22.094,0-40,17.906-40,40s17.906,40,40,40s40-17.906,40-40S366.094,304,344,304z M344,374.406L324.797,352H336\r\n\t\tv-32h16v32h11.203L344,374.406z"},"children":[]}]}]}]};exports.likeDownload=likeDownload;var likeRemove={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M344,288c4.781,0,9.328,0.781,13.766,1.922C373.062,269.562,384,245.719,384,218.625C384,177.422,351.25,144,310.75,144\r\n\t\t\t\tc-21.875,0-41.375,10.078-54.75,25.766C242.5,154.078,223,144,201.125,144C160.75,144,128,177.422,128,218.625\r\n\t\t\t\tC128,312,256,368,256,368s14-6.203,32.641-17.688C288.406,348.203,288,346.156,288,344C288,313.125,313.125,288,344,288z"},"children":[{"name":"path","attribs":{"d":"M344,288c4.781,0,9.328,0.781,13.766,1.922C373.062,269.562,384,245.719,384,218.625C384,177.422,351.25,144,310.75,144\r\n\t\t\t\tc-21.875,0-41.375,10.078-54.75,25.766C242.5,154.078,223,144,201.125,144C160.75,144,128,177.422,128,218.625\r\n\t\t\t\tC128,312,256,368,256,368s14-6.203,32.641-17.688C288.406,348.203,288,346.156,288,344C288,313.125,313.125,288,344,288z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\t\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\t\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]}]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M344,304c-22.094,0-40,17.906-40,40s17.906,40,40,40s40-17.906,40-40S366.094,304,344,304z M368,352h-48v-16h48V352z"},"children":[{"name":"path","attribs":{"d":"M344,304c-22.094,0-40,17.906-40,40s17.906,40,40,40s40-17.906,40-40S366.094,304,344,304z M368,352h-48v-16h48V352z"},"children":[]}]}]}]}]}]};exports.likeRemove=likeRemove;var likeUpload={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M344,288c4.781,0,9.328,0.781,13.766,1.922C373.062,269.562,384,245.719,384,218.625C384,177.422,351.25,144,310.75,144\r\n\t\t\t\tc-21.875,0-41.375,10.078-54.75,25.766C242.5,154.078,223,144,201.125,144C160.75,144,128,177.422,128,218.625\r\n\t\t\t\tC128,312,256,368,256,368s14-6.203,32.641-17.688C288.406,348.203,288,346.156,288,344C288,313.125,313.125,288,344,288z"},"children":[{"name":"path","attribs":{"d":"M344,288c4.781,0,9.328,0.781,13.766,1.922C373.062,269.562,384,245.719,384,218.625C384,177.422,351.25,144,310.75,144\r\n\t\t\t\tc-21.875,0-41.375,10.078-54.75,25.766C242.5,154.078,223,144,201.125,144C160.75,144,128,177.422,128,218.625\r\n\t\t\t\tC128,312,256,368,256,368s14-6.203,32.641-17.688C288.406,348.203,288,346.156,288,344C288,313.125,313.125,288,344,288z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\t\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\t\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]}]}]}]}]},{"name":"path","attribs":{"d":"M344,384c22.094,0,40-17.906,40-40s-17.906-40-40-40s-40,17.906-40,40S321.906,384,344,384z M344,313.594L363.203,336H352\r\n\t\tv32h-16v-32h-11.203L344,313.594z"},"children":[{"name":"path","attribs":{"d":"M344,384c22.094,0,40-17.906,40-40s-17.906-40-40-40s-40,17.906-40,40S321.906,384,344,384z M344,313.594L363.203,336H352\r\n\t\tv32h-16v-32h-11.203L344,313.594z"},"children":[]}]}]}]};exports.likeUpload=likeUpload;var limitDirections={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"352,208 352,160 304,160 316,172 256,232 196,172 208,160 160,160 \r\n\t\t160,208 172,196 232,256 172,316 160,304 160,352 208,352 196,340 256,280 316,340 304,352 352,352 352,304 340,316 280,256 \r\n\t\t340,196 \t"},"children":[{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"352,208 352,160 304,160 316,172 256,232 196,172 208,160 160,160 \r\n\t\t160,208 172,196 232,256 172,316 160,304 160,352 208,352 196,340 256,280 316,340 304,352 352,352 352,304 340,316 280,256 \r\n\t\t340,196 \t"},"children":[]}]},{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"368,128 320,128 320,144 368,144 368,192 384,192 384,144 384,128 \t"},"children":[{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"368,128 320,128 320,144 368,144 368,192 384,192 384,144 384,128 \t"},"children":[]}]},{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"384,368 384,320 368,320 368,368 320,368 320,384 368,384 384,384 \t"},"children":[{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"384,368 384,320 368,320 368,368 320,368 320,384 368,384 384,384 \t"},"children":[]}]},{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"144,384 192,384 192,368 144,368 144,320 128,320 128,368 128,384 \t"},"children":[{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"144,384 192,384 192,368 144,368 144,320 128,320 128,368 128,384 \t"},"children":[]}]},{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"128,144.016 128,192 144,192 144,144 192,144 192,128 144,128 128,128 \t\r\n\t\t"},"children":[{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"128,144.016 128,192 144,192 144,144 192,144 192,128 144,128 128,128 \t\r\n\t\t"},"children":[]}]}]}]};exports.limitDirections=limitDirections;var lineThrough={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"path","attribs":{"d":"M368,240h-94.406c-0.688-0.375-1.219-0.688-1.906-1.062c-24.188-13.156-39.453-23.719-45.875-31.594\r\n\tc-4.438-5.375-6.672-11.312-6.672-17.844c0-8.531,3.531-16.156,10.547-22.844c7.031-6.688,16-10,26.75-10\r\n\tc9.516,0,18.75,2.453,27.609,7.391c8.969,4.984,15.844,14.625,20.609,23.047c4.781,8.438,8.188,20.906,10.094,36.906H320v-80h-5.25\r\n\tc-1.062,4.938-2.516,8.219-4.234,9.859c-1.703,1.641-3.859,2.484-6.516,2.484c-2.375,0-6.469-1.312-12.266-3.953\r\n\tc-12.609-5.578-24.453-8.391-35.656-8.391c-17.891,0-32.641,5.562-44.266,16.656c-11.594,11.125-17.406,24.359-17.406,39.75\r\n\tc0,8.812,2,16.969,5.906,24.312c2.953,5.469,7.219,10.5,12.172,15.281H144v32h116.438c15.297,8.781,25.062,14.797,28.766,17.656\r\n\tc6.016,4.625,10.469,9.641,13.297,15.016c2.812,5.359,4.297,10.703,4.297,15.953c0,9.438-3.812,17.656-11.344,24.625\r\n\ts-17.672,10.422-30.625,10.422c-11.188,0-21.484-2.531-30.891-7.578c-9.344-5.047-16.312-14.656-20.844-22.297\r\n\tC208.5,318.156,204.875,304,202.203,288H192v80h10.203c0.703-4.953,1.859-8.234,3.297-9.812c1.516-1.562,3.594-2.359,6.188-2.359\r\n\tc2.688,0,9.062,1.672,19.156,4.984c10.109,3.312,16.781,5.234,20,5.781c5.406,0.938,11.172,1.406,17.25,1.406\r\n\tc19.406,0,35.328-5.875,47.766-17.594c12.312-11.75,18.547-25.734,18.547-41.938c0-8.531-1.953-16.703-5.828-24.5\r\n\tc-2.156-4.344-4.953-8.281-8.141-11.969H368V240z"},"children":[]}]};exports.lineThrough=lineThrough;var linkUrl={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"path","attribs":{"d":"M359.5,241.221c-10.844-10.828-23.969-17.719-37.766-21.375c-14.625-3.859-29.922-3.672-44.453,0.531\r\n\tc-13.172,3.766-25.688,10.469-36.062,20.844c-13.688,13.672-34.422,15.703-50.422,6.5c-3.109-1.812-6.078-3.859-8.734-6.5\r\n\tc-16.312-16.344-16.312-42.828,0-59.125c16.359-16.344,42.812-16.344,59.156,0c2.656,2.625,4.688,5.594,6.5,8.672\r\n\tc14.531-4.172,29.812-4.375,44.469-0.5c-3.688-13.797-10.594-26.922-21.406-37.797c-32.656-32.625-85.609-32.625-118.281,0\r\n\tc-32.656,32.703-32.656,85.656,0,118.312c10.844,10.797,23.969,17.719,37.75,21.406c14.641,3.812,29.906,3.609,44.469-0.516\r\n\tc13.188-3.828,25.688-10.484,36.062-20.891c13.703-13.672,34.453-15.75,50.453-6.484c3.047,1.797,6.047,3.844,8.719,6.484\r\n\tc16.297,16.312,16.297,42.797,0,59.156c-16.344,16.312-42.859,16.312-59.172,0c-2.656-2.656-4.688-5.641-6.5-8.703\r\n\tc-14.531,4.156-29.812,4.328-44.438,0.5c3.656,13.797,10.531,26.922,21.375,37.781c32.656,32.641,85.594,32.641,118.281,0\r\n\tC392.156,326.814,392.156,273.877,359.5,241.221z"},"children":[]}]};exports.linkUrl=linkUrl;var listCircle={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\t\tS397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\t\tS397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M160,304c-8.844,0-16,7.156-16,16s7.156,16,16,16s16-7.156,16-16\r\n\t\tS168.844,304,160,304z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M160,304c-8.844,0-16,7.156-16,16s7.156,16,16,16s16-7.156,16-16\r\n\t\tS168.844,304,160,304z"},"children":[]}]},{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M160,240c-8.844,0-16,7.156-16,16s7.156,16,16,16s16-7.156,16-16\r\n\t\tS168.844,240,160,240z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M160,240c-8.844,0-16,7.156-16,16s7.156,16,16,16s16-7.156,16-16\r\n\t\tS168.844,240,160,240z"},"children":[]}]},{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M160,176c-8.844,0-16,7.156-16,16s7.156,16,16,16s16-7.156,16-16\r\n\t\tS168.844,176,160,176z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M160,176c-8.844,0-16,7.156-16,16s7.156,16,16,16s16-7.156,16-16\r\n\t\tS168.844,176,160,176z"},"children":[]}]},{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M368,184c0-4.422-3.578-8-8-8H216c-4.422,0-8,3.578-8,8v16c0,4.422,3.578,8,8,8\r\n\t\th144c4.422,0,8-3.578,8-8V184z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M368,184c0-4.422-3.578-8-8-8H216c-4.422,0-8,3.578-8,8v16c0,4.422,3.578,8,8,8\r\n\t\th144c4.422,0,8-3.578,8-8V184z"},"children":[]}]},{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M368,248c0-4.422-3.578-8-8-8H216c-4.422,0-8,3.578-8,8v16c0,4.422,3.578,8,8,8\r\n\t\th144c4.422,0,8-3.578,8-8V248z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M368,248c0-4.422-3.578-8-8-8H216c-4.422,0-8,3.578-8,8v16c0,4.422,3.578,8,8,8\r\n\t\th144c4.422,0,8-3.578,8-8V248z"},"children":[]}]},{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M368,312c0-4.422-3.578-8-8-8H216c-4.422,0-8,3.578-8,8v16c0,4.422,3.578,8,8,8\r\n\t\th144c4.422,0,8-3.578,8-8V312z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M368,312c0-4.422-3.578-8-8-8H216c-4.422,0-8,3.578-8,8v16c0,4.422,3.578,8,8,8\r\n\t\th144c4.422,0,8-3.578,8-8V312z"},"children":[]}]}]}]};exports.listCircle=listCircle;var listSquare={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\t\tS397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\t\tS397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"rect","attribs":{"x":"208","y":"176","fill-rule":"evenodd","clip-rule":"evenodd","width":"160","height":"32"},"children":[{"name":"rect","attribs":{"x":"208","y":"176","fill-rule":"evenodd","clip-rule":"evenodd","width":"160","height":"32"},"children":[]}]},{"name":"rect","attribs":{"x":"208","y":"240","fill-rule":"evenodd","clip-rule":"evenodd","width":"160","height":"32"},"children":[{"name":"rect","attribs":{"x":"208","y":"240","fill-rule":"evenodd","clip-rule":"evenodd","width":"160","height":"32"},"children":[]}]},{"name":"rect","attribs":{"x":"144","y":"176","fill-rule":"evenodd","clip-rule":"evenodd","width":"32","height":"32"},"children":[{"name":"rect","attribs":{"x":"144","y":"176","fill-rule":"evenodd","clip-rule":"evenodd","width":"32","height":"32"},"children":[]}]},{"name":"rect","attribs":{"x":"144","y":"240","fill-rule":"evenodd","clip-rule":"evenodd","width":"32","height":"32"},"children":[{"name":"rect","attribs":{"x":"144","y":"240","fill-rule":"evenodd","clip-rule":"evenodd","width":"32","height":"32"},"children":[]}]},{"name":"rect","attribs":{"x":"144","y":"304","fill-rule":"evenodd","clip-rule":"evenodd","width":"32","height":"32"},"children":[{"name":"rect","attribs":{"x":"144","y":"304","fill-rule":"evenodd","clip-rule":"evenodd","width":"32","height":"32"},"children":[]}]},{"name":"rect","attribs":{"x":"208","y":"304","fill-rule":"evenodd","clip-rule":"evenodd","width":"160","height":"32"},"children":[{"name":"rect","attribs":{"x":"208","y":"304","fill-rule":"evenodd","clip-rule":"evenodd","width":"160","height":"32"},"children":[]}]}]}]};exports.listSquare=listSquare;var locationMaps={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"path","attribs":{"d":"M128,244.375l104.719,34.891L267.625,384L384,128L128,244.375z M247.266,264.719l-78.547-26.172l192-87.266L247.266,264.719\r\n\tz"},"children":[]}]};exports.locationMaps=locationMaps;var location={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"path","attribs":{"d":"M128,288l256-160L224,384v-96H128z"},"children":[]}]};exports.location=location;var locked={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"path","attribs":{"d":"M335.688,240H320l0.047-46.219c0-27.5-28.562-49.781-63.875-49.781c-35.266,0-63.875,22.281-63.875,49.781L192,240h-16.031\r\n\tc-8.828,0-15.625,7.125-15.625,14L160,354c0,6.875,7.484,14,16.312,14h159.75c8.797,0,15.594-7.125,15.594-14L352,254\r\n\tC352,247.125,344.484,240,335.688,240z M224,192c0-13.719,14.594-23.117,32.172-23.117c17.594,0,31.828,9.398,31.828,23.117\r\n\tl-0.219,48H224V192z"},"children":[]}]};exports.locked=locked;var loginLockRefresh={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"path","attribs":{"d":"M296,240h-8.5c0.312-2.516,0.5-5.188,0.5-8c0-13.203-14.406-24-32-24s-32,10.797-32,24c0,2.812,0.188,5.484,0.5,8H216\r\n\t\tc-4.422,0-8,3.578-8,8v48c0,4.422,3.578,8,8,8h80c4.422,0,8-3.578,8-8v-48C304,243.578,300.422,240,296,240z M240,240\r\n\t\tc-4.797-9.594,7.203-19.203,16-19.203s20.797,9.609,16,19.203H240z"},"children":[{"name":"path","attribs":{"d":"M296,240h-8.5c0.312-2.516,0.5-5.188,0.5-8c0-13.203-14.406-24-32-24s-32,10.797-32,24c0,2.812,0.188,5.484,0.5,8H216\r\n\t\tc-4.422,0-8,3.578-8,8v48c0,4.422,3.578,8,8,8h80c4.422,0,8-3.578,8-8v-48C304,243.578,300.422,240,296,240z M240,240\r\n\t\tc-4.797-9.594,7.203-19.203,16-19.203s20.797,9.609,16,19.203H240z"},"children":[]}]},{"name":"path","attribs":{"d":"M370.906,311.188L401.594,256h-19.188c-0.797-72.344-56.625-127.516-126.781-127.609\r\n\t\tc-70.609-0.078-127.766,57.078-127.672,127.688c0.078,70.625,57.359,127.906,127.969,127.969\r\n\t\tc39.875,0.094,75.406-18.125,98.797-46.625l-15.281-25.484c-17.938,27.016-48.641,44.75-83.562,44.703\r\n\t\tc-55.469-0.031-100.484-45.047-100.531-100.531c-0.062-55.484,44.844-100.375,100.312-100.312\r\n\t\tc55.219,0.094,99.078,45.781,99.547,100.203l-19.047-0.031L370.906,311.188z"},"children":[{"name":"path","attribs":{"d":"M370.906,311.188L401.594,256h-19.188c-0.797-72.344-56.625-127.516-126.781-127.609\r\n\t\tc-70.609-0.078-127.766,57.078-127.672,127.688c0.078,70.625,57.359,127.906,127.969,127.969\r\n\t\tc39.875,0.094,75.406-18.125,98.797-46.625l-15.281-25.484c-17.938,27.016-48.641,44.75-83.562,44.703\r\n\t\tc-55.469-0.031-100.484-45.047-100.531-100.531c-0.062-55.484,44.844-100.375,100.312-100.312\r\n\t\tc55.219,0.094,99.078,45.781,99.547,100.203l-19.047-0.031L370.906,311.188z"},"children":[]}]}]}]};exports.loginLockRefresh=loginLockRefresh;var magicWand={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M295.656,189.562L128,357.297L154.695,384l167.789-167.594L295.656,189.562z M256.664,237.516l39.445-39.469L314,215.938\r\n\t\tl-39.438,39.469L256.664,237.516z"},"children":[{"name":"path","attribs":{"d":"M295.656,189.562L128,357.297L154.695,384l167.789-167.594L295.656,189.562z M256.664,237.516l39.445-39.469L314,215.938\r\n\t\tl-39.438,39.469L256.664,237.516z"},"children":[]}]},{"name":"polygon","attribs":{"points":"362.734,162.719 349.312,149.297 322.484,176.141 335.906,189.562 \t"},"children":[{"name":"polygon","attribs":{"points":"362.734,162.719 349.312,149.297 322.484,176.141 335.906,189.562 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"288.406,165.375 281.812,128 263.148,131.297 269.75,168.688 \t"},"children":[{"name":"polygon","attribs":{"points":"288.406,165.375 281.812,128 263.148,131.297 269.75,168.688 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"346.641,223.656 343.359,242.328 380.719,248.938 384,230.25 \t"},"children":[{"name":"polygon","attribs":{"points":"346.641,223.656 343.359,242.328 380.719,248.938 384,230.25 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"304.422,278.719 320.453,313.125 337.656,305.094 321.625,270.703 \t"},"children":[{"name":"polygon","attribs":{"points":"304.422,278.719 320.453,313.125 337.656,305.094 321.625,270.703 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"241.391,190.453 207,174.422 198.969,191.625 233.367,207.656 \t"},"children":[{"name":"polygon","attribs":{"points":"241.391,190.453 207,174.422 198.969,191.625 233.367,207.656 \t"},"children":[]}]}]}]};exports.magicWand=magicWand;var magnet={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256c0,141.391,114.609,256,256,256c141.391,0,256-114.609,256-256\r\n\tC512,114.609,397.391,0,256,0z M256,472c-119.297,0-216-96.702-216-216c0-119.297,96.703-216,216-216c119.298,0,216,96.703,216,216\r\n\tC472,375.298,375.298,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"320","y":"144","width":"32","height":"32"},"children":[{"name":"rect","attribs":{"x":"320","y":"144","width":"32","height":"32"},"children":[]}]},{"name":"path","attribs":{"d":"M320,272.438C320,307.546,291.546,336,256.453,336h-0.906C220.453,336,192,307.546,192,272.438V192h-32v80.656\r\n\t\tC160,325.313,202.688,368,255.328,368h1.344C309.313,368,352,325.313,352,272.656V192h-32V272.438z"},"children":[{"name":"path","attribs":{"d":"M320,272.438C320,307.546,291.546,336,256.453,336h-0.906C220.453,336,192,307.546,192,272.438V192h-32v80.656\r\n\t\tC160,325.313,202.688,368,255.328,368h1.344C309.313,368,352,325.313,352,272.656V192h-32V272.438z"},"children":[]}]},{"name":"rect","attribs":{"x":"160","y":"144","width":"32","height":"32"},"children":[{"name":"rect","attribs":{"x":"160","y":"144","width":"32","height":"32"},"children":[]}]}]}]};exports.magnet=magnet;var mail={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"path","attribs":{"d":"M256,176H128v160h128h128V176H256z M256,192h89.719L256,255.75L166.281,192H256z M144,196.531l54.5,36.859L144,292.812\r\n\tV196.531z M256,320h-92.406l45.562-79.422L256,272.25l46.844-31.672L348.406,320H256z M368,292.812l-54.5-59.422l54.5-36.859\r\n\tV292.812z"},"children":[]}]};exports.mail=mail;var mailbox={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M352.062,128L352,128.016V128H160.25v0.062L159.938,128L128,288v96h256v-95.5L352.062,128z M144.594,288.25l28.5-144.25\r\n\t\th165.828l28.5,144.25H144.594z"},"children":[{"name":"path","attribs":{"d":"M352.062,128L352,128.016V128H160.25v0.062L159.938,128L128,288v96h256v-95.5L352.062,128z M144.594,288.25l28.5-144.25\r\n\t\th165.828l28.5,144.25H144.594z"},"children":[]}]},{"name":"rect","attribs":{"x":"176","y":"256","width":"160","height":"16"},"children":[{"name":"rect","attribs":{"x":"176","y":"256","width":"160","height":"16"},"children":[]}]},{"name":"rect","attribs":{"x":"184","y":"224","width":"144","height":"16"},"children":[{"name":"rect","attribs":{"x":"184","y":"224","width":"144","height":"16"},"children":[]}]},{"name":"rect","attribs":{"x":"192","y":"192","width":"128","height":"16"},"children":[{"name":"rect","attribs":{"x":"192","y":"192","width":"128","height":"16"},"children":[]}]},{"name":"rect","attribs":{"x":"200","y":"160","width":"112","height":"16"},"children":[{"name":"rect","attribs":{"x":"200","y":"160","width":"112","height":"16"},"children":[]}]}]}]};exports.mailbox=mailbox;var maleSymbol={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,192c17.672,0,32-14.328,32-32s-14.328-32-32-32s-32,14.328-32,32S238.328,192,256,192z M208,208v80h16v96h64v-96h16\r\n\t\tv-80H208z"},"children":[{"name":"path","attribs":{"d":"M256,192c17.672,0,32-14.328,32-32s-14.328-32-32-32s-32,14.328-32,32S238.328,192,256,192z M208,208v80h16v96h64v-96h16\r\n\t\tv-80H208z"},"children":[]}]}]}]};exports.maleSymbol=maleSymbol;var map={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"135.5,368 199.5,336 199.5,144 135.5,176 \t"},"children":[{"name":"polygon","attribs":{"points":"135.5,368 199.5,336 199.5,144 135.5,176 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"215.5,336 279.5,368 279.5,176 215.5,144 \t"},"children":[{"name":"polygon","attribs":{"points":"215.5,336 279.5,368 279.5,176 215.5,144 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"295.5,368 359.5,336 359.5,144 295.5,176 \t"},"children":[{"name":"polygon","attribs":{"points":"295.5,368 359.5,336 359.5,144 295.5,176 \t"},"children":[]}]},{"name":"path","attribs":{"d":"M256,0C114.625,0,0,114.609,0,256s114.625,256,256,256c141.406,0,256-114.609,256-256S397.406,0,256,0z M256,472\r\n\t\tc-119.281,0-216-96.703-216-216S136.719,40,256,40c119.312,0,216,96.703,216,216S375.312,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.625,0,0,114.609,0,256s114.625,256,256,256c141.406,0,256-114.609,256-256S397.406,0,256,0z M256,472\r\n\t\tc-119.281,0-216-96.703-216-216S136.719,40,256,40c119.312,0,216,96.703,216,216S375.312,472,256,472z"},"children":[]}]}]}]};exports.map=map;var markerAdd={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,128c-70.688,0-128,57.312-128,128s57.312,128,128,128h128V256C384,185.312,326.703,128,256,128z M256,352\r\n\t\tc-52.938,0-96-43.062-96-96s43.062-96,96-96s96,43.062,96,96S308.938,352,256,352z"},"children":[{"name":"path","attribs":{"d":"M256,128c-70.688,0-128,57.312-128,128s57.312,128,128,128h128V256C384,185.312,326.703,128,256,128z M256,352\r\n\t\tc-52.938,0-96-43.062-96-96s43.062-96,96-96s96,43.062,96,96S308.938,352,256,352z"},"children":[]}]},{"name":"polygon","attribs":{"points":"272,208 240,208 240,240 208,240 208,272 240,272 240,304 272,304 272,272 304,272 304,240 272,240 \t"},"children":[{"name":"polygon","attribs":{"points":"272,208 240,208 240,240 208,240 208,272 240,272 240,304 272,304 272,272 304,272 304,240 272,240 \t"},"children":[]}]}]}]};exports.markerAdd=markerAdd;var markerMinus={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,128c-70.688,0-128,57.312-128,128s57.312,128,128,128h128V256C384,185.312,326.703,128,256,128z M256,352\r\n\t\tc-52.938,0-96-43.062-96-96s43.062-96,96-96s96,43.062,96,96S308.938,352,256,352z"},"children":[{"name":"path","attribs":{"d":"M256,128c-70.688,0-128,57.312-128,128s57.312,128,128,128h128V256C384,185.312,326.703,128,256,128z M256,352\r\n\t\tc-52.938,0-96-43.062-96-96s43.062-96,96-96s96,43.062,96,96S308.938,352,256,352z"},"children":[]}]},{"name":"rect","attribs":{"x":"208","y":"240","width":"96","height":"32"},"children":[{"name":"rect","attribs":{"x":"208","y":"240","width":"96","height":"32"},"children":[]}]}]}]};exports.markerMinus=markerMinus;var markerPoints={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,128c-70.688,0-128,57.312-128,128s57.312,128,128,128h128V256C384,185.312,326.703,128,256,128z M256,352\r\n\t\tc-52.938,0-96-43.062-96-96s43.062-96,96-96s96,43.062,96,96S308.938,352,256,352z"},"children":[{"name":"path","attribs":{"d":"M256,128c-70.688,0-128,57.312-128,128s57.312,128,128,128h128V256C384,185.312,326.703,128,256,128z M256,352\r\n\t\tc-52.938,0-96-43.062-96-96s43.062-96,96-96s96,43.062,96,96S308.938,352,256,352z"},"children":[]}]},{"name":"path","attribs":{"d":"M208,240c-8.828,0-16,7.156-16,16s7.172,16,16,16c8.844,0,16-7.156,16-16S216.844,240,208,240z"},"children":[{"name":"path","attribs":{"d":"M208,240c-8.828,0-16,7.156-16,16s7.172,16,16,16c8.844,0,16-7.156,16-16S216.844,240,208,240z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,240c-8.844,0-16,7.156-16,16s7.156,16,16,16c8.828,0,16-7.156,16-16S264.828,240,256,240z"},"children":[{"name":"path","attribs":{"d":"M256,240c-8.844,0-16,7.156-16,16s7.156,16,16,16c8.828,0,16-7.156,16-16S264.828,240,256,240z"},"children":[]}]},{"name":"path","attribs":{"d":"M304,240c-8.844,0-16,7.156-16,16s7.156,16,16,16c8.828,0,16-7.156,16-16S312.828,240,304,240z"},"children":[{"name":"path","attribs":{"d":"M304,240c-8.844,0-16,7.156-16,16s7.156,16,16,16c8.828,0,16-7.156,16-16S312.828,240,304,240z"},"children":[]}]}]}]};exports.markerPoints=markerPoints;var marker={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"path","attribs":{"d":"M256,128c-70.688,0-128,57.312-128,128s57.312,128,128,128h128V256C384,185.312,326.703,128,256,128z M160,256\r\n\tc0-52.938,43.062-96,96-96s96,43.062,96,96s-43.062,96-96,96S160,308.938,160,256z"},"children":[]}]};exports.marker=marker;var minus={"viewBox":"0 0 512 512","children":[{"name":"rect","attribs":{"x":"128","y":"240","width":"256","height":"32"},"children":[]},{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]};exports.minus=minus;var multiBorders={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"128","y":"192","width":"256","height":"16"},"children":[{"name":"rect","attribs":{"x":"128","y":"192","width":"256","height":"16"},"children":[]}]},{"name":"rect","attribs":{"x":"128","y":"240","width":"256","height":"32"},"children":[{"name":"rect","attribs":{"x":"128","y":"240","width":"256","height":"32"},"children":[]}]},{"name":"rect","attribs":{"x":"128","y":"304","width":"256","height":"64"},"children":[{"name":"rect","attribs":{"x":"128","y":"304","width":"256","height":"64"},"children":[]}]},{"name":"rect","attribs":{"x":"128","y":"144","width":"32","height":"16"},"children":[{"name":"rect","attribs":{"x":"128","y":"144","width":"32","height":"16"},"children":[]}]},{"name":"rect","attribs":{"x":"176","y":"144","width":"32","height":"16"},"children":[{"name":"rect","attribs":{"x":"176","y":"144","width":"32","height":"16"},"children":[]}]},{"name":"rect","attribs":{"x":"224","y":"144","width":"64","height":"16"},"children":[{"name":"rect","attribs":{"x":"224","y":"144","width":"64","height":"16"},"children":[]}]},{"name":"rect","attribs":{"x":"304","y":"144","width":"32","height":"16"},"children":[{"name":"rect","attribs":{"x":"304","y":"144","width":"32","height":"16"},"children":[]}]},{"name":"rect","attribs":{"x":"352","y":"144","width":"32","height":"16"},"children":[{"name":"rect","attribs":{"x":"352","y":"144","width":"32","height":"16"},"children":[]}]}]}]};exports.multiBorders=multiBorders;var music={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M199.5,318.466c-16-4.635-7.93-7.499-18.514-7.499c-25.814,0-41.969,16.406-41.969,36.634\r\n\t\tc0,20.242,12.41,36.649,38.227,36.649c25.831,0,38.256-16.407,38.256-36.649V237.667l112-54.951v117.417\r\n\t\tc-16-4.634-6.475-7.483-17.057-7.483c-25.801,0-41.25,16.407-41.25,36.634c0,20.243,11.33,36.649,37.146,36.649\r\n\t\tc25.831,0,37.16-16.406,37.16-36.649V127.75l-144,73.284V318.466z"},"children":[{"name":"path","attribs":{"d":"M199.5,318.466c-16-4.635-7.93-7.499-18.514-7.499c-25.814,0-41.969,16.406-41.969,36.634\r\n\t\tc0,20.242,12.41,36.649,38.227,36.649c25.831,0,38.256-16.407,38.256-36.649V237.667l112-54.951v117.417\r\n\t\tc-16-4.634-6.475-7.483-17.057-7.483c-25.801,0-41.25,16.407-41.25,36.634c0,20.243,11.33,36.649,37.146,36.649\r\n\t\tc25.831,0,37.16-16.406,37.16-36.649V127.75l-144,73.284V318.466z"},"children":[]}]},{"name":"path","attribs":{"d":"M256-0.5C114.349-0.5-0.5,114.333-0.5,256S114.349,512.5,256,512.5c141.683,0,256.5-114.833,256.5-256.5\r\n\t\tS397.683-0.5,256-0.5z M256,472.422C136.485,472.422,39.578,375.53,39.578,256c0-119.53,96.907-216.422,216.422-216.422\r\n\t\tc119.546,0,216.422,96.892,216.422,216.422C472.422,375.53,375.546,472.422,256,472.422z"},"children":[{"name":"path","attribs":{"d":"M256-0.5C114.349-0.5-0.5,114.333-0.5,256S114.349,512.5,256,512.5c141.683,0,256.5-114.833,256.5-256.5\r\n\t\tS397.683-0.5,256-0.5z M256,472.422C136.485,472.422,39.578,375.53,39.578,256c0-119.53,96.907-216.422,216.422-216.422\r\n\t\tc119.546,0,216.422,96.892,216.422,216.422C472.422,375.53,375.546,472.422,256,472.422z"},"children":[]}]}]}]};exports.music=music;var nextFastStep={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"polygon","attribs":{"points":"128,336 224,256 128,176 \t"},"children":[{"name":"polygon","attribs":{"points":"128,336 224,256 128,176 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"224,256 224,336 320,256 224,176 \t"},"children":[{"name":"polygon","attribs":{"points":"224,256 224,336 320,256 224,176 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"320,240 320,336 352,336 352,176 320,176 \t"},"children":[{"name":"polygon","attribs":{"points":"320,240 320,336 352,336 352,176 320,176 \t"},"children":[]}]}]}]};exports.nextFastStep=nextFastStep;var nextStep={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"polygon","attribs":{"points":"176,336 272,256 176,176 \t"},"children":[{"name":"polygon","attribs":{"points":"176,336 272,256 176,176 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"272,240 272,336 304,336 304,176 272,176 \t"},"children":[{"name":"polygon","attribs":{"points":"272,240 272,336 304,336 304,176 272,176 \t"},"children":[]}]}]}]};exports.nextStep=nextStep;var numberEight={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"path","attribs":{"d":"M327.172,271.406c-3.094-5.688-7.219-10.688-12.141-15c-4.891-4.25-10.75-7.531-17.547-9.906\r\n\t\tc9.812-4.984,17.766-12.109,23.875-21.359c6.25-9.266,9.297-21.047,9.297-35.484c0-8.516-1.672-16.516-5.141-24.016\r\n\t\ts-8.391-14.016-14.938-19.609c-6.547-5.547-14.453-10-23.562-13.172C277.781,129.625,267.453,128,256,128\r\n\t\tc-11.766,0-22.172,1.625-31.375,4.859c-9.125,3.172-16.938,7.625-23.344,13.172c-6.422,5.594-11.297,12.109-14.562,19.609\r\n\t\tc-3.281,7.5-4.906,15.5-4.906,24.016c0,14.438,2.938,26.344,9,35.719c5.953,9.375,14.078,16.484,24.219,21.125\r\n\t\tc-7.188,2.375-13.156,5.75-18.062,10.141c-4.984,4.391-8.969,9.578-12.125,15.469c-3.125,5.875-5.375,12.125-6.75,18.672\r\n\t\tc-1.391,6.688-2.094,13.203-2.094,19.672c0,9.594,1.859,18.844,5.594,27.75c3.703,8.781,8.969,16.562,15.969,23.312\r\n\t\tc6.984,6.75,15.375,12.234,25.219,16.266C232.656,381.984,243.656,384,256,384s23.391-2.016,33.172-6.219\r\n\t\tc9.938-4.031,18.344-9.547,25.344-16.5c6.844-6.812,12.203-14.797,15.922-23.781c3.703-8.984,5.562-18.266,5.562-27.984\r\n\t\tc0-6.484-0.688-12.984-2.078-19.547C332.531,283.297,330.375,277.172,327.172,271.406z M214.688,193.234\r\n\t\tc0-9.453,3.422-17.969,10.312-25.609c6.875-7.625,17.375-11.469,31.453-11.469c7.141,0,13.328,1.078,18.531,3.094\r\n\t\tc5.281,2.094,9.5,4.875,12.781,8.375c3.422,3.516,5.828,7.5,7.453,11.891c1.656,4.453,2.531,8.984,2.531,13.719\r\n\t\tc0,5.266-0.906,10.266-2.75,14.922c-1.688,4.719-4.281,8.938-7.75,12.594s-7.844,6.609-13.047,8.781\r\n\t\tc-5.266,2.219-11.188,3.344-17.75,3.344c-13.766,0-24.234-4.016-31.234-12.125C218.203,212.641,214.688,203.5,214.688,193.234z\r\n\t\t M300.141,326.734c-1.906,5.266-4.734,10.031-8.656,14.281c-3.766,4.266-8.625,7.719-14.422,10.203\r\n\t\tc-5.781,2.5-12.656,3.75-20.609,3.75c-6.641,0-12.828-1.25-18.641-3.75c-5.734-2.484-10.75-5.766-15.047-9.969\r\n\t\tc-4.297-4.047-7.688-8.797-10.141-14.266c-2.469-5.469-3.734-11.188-3.734-17c0-5.938,1.047-11.75,3.141-17.688\r\n\t\tc2.094-5.812,5-11.031,8.859-15.562c3.859-4.594,8.734-8.234,14.672-11.016c5.875-2.828,12.75-4.219,20.438-4.219\r\n\t\tc7.469,0,14.125,1.391,20.047,4.219c5.891,2.781,10.938,6.422,14.906,11.016c3.984,4.531,7.016,9.75,9.094,15.562\r\n\t\tc1.953,5.938,3.062,11.75,3.062,17.688C303.109,315.797,302.172,321.484,300.141,326.734z"},"children":[{"name":"path","attribs":{"d":"M327.172,271.406c-3.094-5.688-7.219-10.688-12.141-15c-4.891-4.25-10.75-7.531-17.547-9.906\r\n\t\tc9.812-4.984,17.766-12.109,23.875-21.359c6.25-9.266,9.297-21.047,9.297-35.484c0-8.516-1.672-16.516-5.141-24.016\r\n\t\ts-8.391-14.016-14.938-19.609c-6.547-5.547-14.453-10-23.562-13.172C277.781,129.625,267.453,128,256,128\r\n\t\tc-11.766,0-22.172,1.625-31.375,4.859c-9.125,3.172-16.938,7.625-23.344,13.172c-6.422,5.594-11.297,12.109-14.562,19.609\r\n\t\tc-3.281,7.5-4.906,15.5-4.906,24.016c0,14.438,2.938,26.344,9,35.719c5.953,9.375,14.078,16.484,24.219,21.125\r\n\t\tc-7.188,2.375-13.156,5.75-18.062,10.141c-4.984,4.391-8.969,9.578-12.125,15.469c-3.125,5.875-5.375,12.125-6.75,18.672\r\n\t\tc-1.391,6.688-2.094,13.203-2.094,19.672c0,9.594,1.859,18.844,5.594,27.75c3.703,8.781,8.969,16.562,15.969,23.312\r\n\t\tc6.984,6.75,15.375,12.234,25.219,16.266C232.656,381.984,243.656,384,256,384s23.391-2.016,33.172-6.219\r\n\t\tc9.938-4.031,18.344-9.547,25.344-16.5c6.844-6.812,12.203-14.797,15.922-23.781c3.703-8.984,5.562-18.266,5.562-27.984\r\n\t\tc0-6.484-0.688-12.984-2.078-19.547C332.531,283.297,330.375,277.172,327.172,271.406z M214.688,193.234\r\n\t\tc0-9.453,3.422-17.969,10.312-25.609c6.875-7.625,17.375-11.469,31.453-11.469c7.141,0,13.328,1.078,18.531,3.094\r\n\t\tc5.281,2.094,9.5,4.875,12.781,8.375c3.422,3.516,5.828,7.5,7.453,11.891c1.656,4.453,2.531,8.984,2.531,13.719\r\n\t\tc0,5.266-0.906,10.266-2.75,14.922c-1.688,4.719-4.281,8.938-7.75,12.594s-7.844,6.609-13.047,8.781\r\n\t\tc-5.266,2.219-11.188,3.344-17.75,3.344c-13.766,0-24.234-4.016-31.234-12.125C218.203,212.641,214.688,203.5,214.688,193.234z\r\n\t\t M300.141,326.734c-1.906,5.266-4.734,10.031-8.656,14.281c-3.766,4.266-8.625,7.719-14.422,10.203\r\n\t\tc-5.781,2.5-12.656,3.75-20.609,3.75c-6.641,0-12.828-1.25-18.641-3.75c-5.734-2.484-10.75-5.766-15.047-9.969\r\n\t\tc-4.297-4.047-7.688-8.797-10.141-14.266c-2.469-5.469-3.734-11.188-3.734-17c0-5.938,1.047-11.75,3.141-17.688\r\n\t\tc2.094-5.812,5-11.031,8.859-15.562c3.859-4.594,8.734-8.234,14.672-11.016c5.875-2.828,12.75-4.219,20.438-4.219\r\n\t\tc7.469,0,14.125,1.391,20.047,4.219c5.891,2.781,10.938,6.422,14.906,11.016c3.984,4.531,7.016,9.75,9.094,15.562\r\n\t\tc1.953,5.938,3.062,11.75,3.062,17.688C303.109,315.797,302.172,321.484,300.141,326.734z"},"children":[]}]}]}]};exports.numberEight=numberEight;var numberFive={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M183.219,263.844L198.453,128h124.062v29.031H221.328l-6.828,70.109l1.219,0.484c5.844-5.641,12.719-9.656,20.656-12.031\r\n\t\tc7.875-2.375,15.719-3.594,23.469-3.594c10.969,0,21.109,2.234,30.5,6.719c9.266,4.406,17.359,10.531,24.078,18.281\r\n\t\tc6.734,7.75,12.078,16.891,15.906,27.5c3.797,10.531,5.672,21.781,5.672,33.734c0,11.016-1.656,21.578-5.031,31.984\r\n\t\tc-3.531,10.25-8.656,19.328-15.391,27.5c-6.734,8-15.297,14.328-25.656,19.078c-10.406,4.75-22.578,7.203-36.484,7.203\r\n\t\tc-19.531,0-36.375-6.188-50.531-18.281c-14.219-12.234-23.188-30.172-26.906-53.688h32.516c2.922,13.453,8.453,23.969,16.641,31.5\r\n\t\tc8.172,7.531,17.719,11.453,28.656,11.453c7.5,0,14.328-1.5,20.422-4.5c6.219-2.969,11.453-6.984,15.906-12.016\r\n\t\tc4.328-5.156,7.828-11.219,10.156-18.422c2.453-7.078,3.594-14.734,3.594-22.766c0-8.297-1.391-15.859-4.344-22.766\r\n\t\tc-3.062-6.797-6.906-12.734-11.859-17.641c-4.922-4.891-10.625-8.75-17.031-11.625C264.234,242.469,257.688,241,251,241\r\n\t\tc-7.469,0-14.719,1.844-21.688,5.375c-6.938,3.609-12.812,9.375-17.625,17.469H183.219z"},"children":[{"name":"path","attribs":{"d":"M183.219,263.844L198.453,128h124.062v29.031H221.328l-6.828,70.109l1.219,0.484c5.844-5.641,12.719-9.656,20.656-12.031\r\n\t\tc7.875-2.375,15.719-3.594,23.469-3.594c10.969,0,21.109,2.234,30.5,6.719c9.266,4.406,17.359,10.531,24.078,18.281\r\n\t\tc6.734,7.75,12.078,16.891,15.906,27.5c3.797,10.531,5.672,21.781,5.672,33.734c0,11.016-1.656,21.578-5.031,31.984\r\n\t\tc-3.531,10.25-8.656,19.328-15.391,27.5c-6.734,8-15.297,14.328-25.656,19.078c-10.406,4.75-22.578,7.203-36.484,7.203\r\n\t\tc-19.531,0-36.375-6.188-50.531-18.281c-14.219-12.234-23.188-30.172-26.906-53.688h32.516c2.922,13.453,8.453,23.969,16.641,31.5\r\n\t\tc8.172,7.531,17.719,11.453,28.656,11.453c7.5,0,14.328-1.5,20.422-4.5c6.219-2.969,11.453-6.984,15.906-12.016\r\n\t\tc4.328-5.156,7.828-11.219,10.156-18.422c2.453-7.078,3.594-14.734,3.594-22.766c0-8.297-1.391-15.859-4.344-22.766\r\n\t\tc-3.062-6.797-6.906-12.734-11.859-17.641c-4.922-4.891-10.625-8.75-17.031-11.625C264.234,242.469,257.688,241,251,241\r\n\t\tc-7.469,0-14.719,1.844-21.688,5.375c-6.938,3.609-12.812,9.375-17.625,17.469H183.219z"},"children":[]}]}]}]};exports.numberFive=numberFive;var numberFour={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M274.203,384v-62.5H176v-37.203L274.203,128H303.5v164.484H336V321.5h-32.5V384H274.203z M202.438,292.484h71.766V176.969\r\n\t\tL202.438,292.484z"},"children":[{"name":"path","attribs":{"d":"M274.203,384v-62.5H176v-37.203L274.203,128H303.5v164.484H336V321.5h-32.5V384H274.203z M202.438,292.484h71.766V176.969\r\n\t\tL202.438,292.484z"},"children":[]}]}]}]};exports.numberFour=numberFour;var numberNine={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M208.594,317.016c3.188,13.516,9.125,23.422,17.875,29.422c8.672,6.016,17.656,9.016,26.688,9.016\r\n\t\tc9.672,0,17.766-2.438,24.344-7.172c6.547-4.578,11.812-11,15.875-18.844c4.078-7.953,6.859-16.969,8.641-27.172\r\n\t\tc1.688-10.062,2.547-20.578,2.547-31.5c-7.359,10.922-15.734,18.234-24.875,22.016c-9.094,3.922-17.969,5.734-26.531,5.734\r\n\t\tc-9.031,0-18.219-1.984-27.281-5.969c-9.094-3.984-17.375-9.516-24.781-16.703c-7.312-7.203-13.375-15.719-18.031-25.562\r\n\t\tC178.375,240.469,176,229.5,176,217.469c0-12.062,1.719-23.5,5.031-34.375c3.375-10.859,8.266-20.344,14.672-28.438\r\n\t\tc6.484-8.062,14.469-14.531,24.141-19.391c9.594-4.797,20.688-7.266,33.312-7.266c26.031,0,46.328,10,60.938,29.984\r\n\t\tC328.688,177.969,336,206.625,336,243.875c0,15.875-1.156,32.141-3.438,48.672c-2.297,16.688-6.547,31.719-12.703,45.203\r\n\t\tc-6.188,13.516-14.625,24.688-25.312,33.266C283.844,379.734,270.031,384,253.156,384c-8.781,0-17.469-1.234-26.125-3.734\r\n\t\tc-8.547-2.5-16.156-6.312-22.891-11.703c-6.703-5.281-12.297-12.109-16.859-20.625c-4.562-8.5-7.203-18.906-8.094-30.922H208.594z\r\n\t\t M253.016,269.875c6.391,0,12.547-1.406,18.266-4.375c5.844-2.969,10.766-6.984,15.016-12.125\r\n\t\tc4.156-5.125,7.531-11.141,10.047-18.094c2.531-6.891,3.859-14.281,3.859-22.25c0-7.906-1.328-15.266-3.859-22.031\r\n\t\tc-2.516-6.734-5.891-12.719-10.047-17.844c-4.25-5.125-9.172-9.156-15.016-12.125c-5.719-2.906-11.875-4.406-18.266-4.406\r\n\t\tc-6.234,0-12.031,1.5-17.422,4.406c-5.344,2.969-10.109,7-14.125,12.125c-4,5.125-7.281,11.109-9.688,17.844\r\n\t\tc-2.406,6.766-3.625,14.125-3.625,22.031c0,7.969,1.219,15.359,3.625,22.25c2.406,6.953,5.688,12.969,9.688,18.094\r\n\t\tc4.016,5.141,8.781,9.156,14.125,12.125C240.984,268.469,246.781,269.875,253.016,269.875z"},"children":[{"name":"path","attribs":{"d":"M208.594,317.016c3.188,13.516,9.125,23.422,17.875,29.422c8.672,6.016,17.656,9.016,26.688,9.016\r\n\t\tc9.672,0,17.766-2.438,24.344-7.172c6.547-4.578,11.812-11,15.875-18.844c4.078-7.953,6.859-16.969,8.641-27.172\r\n\t\tc1.688-10.062,2.547-20.578,2.547-31.5c-7.359,10.922-15.734,18.234-24.875,22.016c-9.094,3.922-17.969,5.734-26.531,5.734\r\n\t\tc-9.031,0-18.219-1.984-27.281-5.969c-9.094-3.984-17.375-9.516-24.781-16.703c-7.312-7.203-13.375-15.719-18.031-25.562\r\n\t\tC178.375,240.469,176,229.5,176,217.469c0-12.062,1.719-23.5,5.031-34.375c3.375-10.859,8.266-20.344,14.672-28.438\r\n\t\tc6.484-8.062,14.469-14.531,24.141-19.391c9.594-4.797,20.688-7.266,33.312-7.266c26.031,0,46.328,10,60.938,29.984\r\n\t\tC328.688,177.969,336,206.625,336,243.875c0,15.875-1.156,32.141-3.438,48.672c-2.297,16.688-6.547,31.719-12.703,45.203\r\n\t\tc-6.188,13.516-14.625,24.688-25.312,33.266C283.844,379.734,270.031,384,253.156,384c-8.781,0-17.469-1.234-26.125-3.734\r\n\t\tc-8.547-2.5-16.156-6.312-22.891-11.703c-6.703-5.281-12.297-12.109-16.859-20.625c-4.562-8.5-7.203-18.906-8.094-30.922H208.594z\r\n\t\t M253.016,269.875c6.391,0,12.547-1.406,18.266-4.375c5.844-2.969,10.766-6.984,15.016-12.125\r\n\t\tc4.156-5.125,7.531-11.141,10.047-18.094c2.531-6.891,3.859-14.281,3.859-22.25c0-7.906-1.328-15.266-3.859-22.031\r\n\t\tc-2.516-6.734-5.891-12.719-10.047-17.844c-4.25-5.125-9.172-9.156-15.016-12.125c-5.719-2.906-11.875-4.406-18.266-4.406\r\n\t\tc-6.234,0-12.031,1.5-17.422,4.406c-5.344,2.969-10.109,7-14.125,12.125c-4,5.125-7.281,11.109-9.688,17.844\r\n\t\tc-2.406,6.766-3.625,14.125-3.625,22.031c0,7.969,1.219,15.359,3.625,22.25c2.406,6.953,5.688,12.969,9.688,18.094\r\n\t\tc4.016,5.141,8.781,9.156,14.125,12.125C240.984,268.469,246.781,269.875,253.016,269.875z"},"children":[]}]}]}]};exports.numberNine=numberNine;var numberOne={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256c0,141.391,114.609,256,256,256c141.391,0,256-114.609,256-256\r\n\tC512,114.609,397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M249.703,201.25H188v-25h19.312c6.859,0,13.422-1.219,19.5-3.594c6.172-2.375,11.438-5.641,15.797-9.797\r\n\t\tc4.358-4.203,7.922-9.25,10.547-15.234c2.734-5.906,4.047-12.5,4.047-19.625H284v256h-34.297V201.25z"},"children":[{"name":"path","attribs":{"d":"M249.703,201.25H188v-25h19.312c6.859,0,13.422-1.219,19.5-3.594c6.172-2.375,11.438-5.641,15.797-9.797\r\n\t\tc4.358-4.203,7.922-9.25,10.547-15.234c2.734-5.906,4.047-12.5,4.047-19.625H284v256h-34.297V201.25z"},"children":[]}]}]}]};exports.numberOne=numberOne;var numberSeven={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M210.188,384c5.156-43.219,15.688-83.281,31.562-120.266c15.844-37.016,36.953-72.328,63.391-105.828v-0.438H176V128h160\r\n\t\tv29.469c-13.047,17.516-24.922,35.875-35.562,55.031c-10.75,19.219-20.156,38.5-28.156,58c-7.984,19.484-14.5,38.953-19.531,58.234\r\n\t\tc-5.047,19.281-8.344,37.75-10,55.266H210.188z"},"children":[{"name":"path","attribs":{"d":"M210.188,384c5.156-43.219,15.688-83.281,31.562-120.266c15.844-37.016,36.953-72.328,63.391-105.828v-0.438H176V128h160\r\n\t\tv29.469c-13.047,17.516-24.922,35.875-35.562,55.031c-10.75,19.219-20.156,38.5-28.156,58c-7.984,19.484-14.5,38.953-19.531,58.234\r\n\t\tc-5.047,19.281-8.344,37.75-10,55.266H210.188z"},"children":[]}]}]}]};exports.numberSeven=numberSeven;var numberSix={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M302.922,193.656c0-4.406-1-8.797-3.297-13.188c-2.156-4.438-5.141-8.375-8.688-11.938\r\n\t\tc-3.547-3.531-7.938-6.375-13.047-8.562c-5.109-2.219-10.516-3.344-16.281-3.344c-10.281,0-18.516,2.516-24.859,7.5\r\n\t\tc-6.312,5-11.375,11.531-15.094,19.625c-3.688,8.094-6.344,17.125-7.875,27.125c-1.516,9.969-2.375,19.781-2.688,29.5h1.266\r\n\t\tc14.312-14.656,29.797-22.031,46.578-22.031c10.688,0,20.766,2.047,30.328,6.156c9.438,4.125,17.625,9.875,24.453,17.234\r\n\t\tc6.969,7.281,12.359,16.141,16.375,26.391c3.969,10.297,5.906,21.422,5.906,33.422c0,11.219-1.844,21.906-5.391,31.891\r\n\t\tc-3.531,10-8.656,18.625-15.25,26.094c-6.594,7.5-14.594,13.469-24.141,17.938c-9.422,4.328-20.094,6.531-31.938,6.531\r\n\t\tc-12.656,0-24.141-2.562-34.469-7.938c-10.25-5.266-19.016-12.812-26.156-22.609c-7.172-9.922-12.703-21.891-16.688-35.953\r\n\t\tc-4-14.047-5.969-30.062-5.969-48.016c0-25.609,1.969-47.391,5.969-65.484c4-18.031,9.719-32.641,17.156-43.844\r\n\t\tc7.469-11.141,16.406-19.281,26.875-24.422c10.5-5.125,22.156-7.734,35.156-7.734c10.188,0,19.688,1.844,28.359,5.5\r\n\t\tc8.688,3.719,16.156,8.609,22.312,14.766c6.141,6.203,11.203,13.234,14.953,21.141c3.594,7.953,5.734,16.062,6.359,24.25H302.922z\r\n\t\t M259.141,355.453c14.828,0,25.906-5.172,33-15.219c7.234-10.219,10.781-22.734,10.781-37.734c0-7.297-0.906-14.281-2.641-20.938\r\n\t\tc-1.828-6.578-4.625-12.453-8.359-17.578c-3.609-5.141-8.219-9.25-13.625-12.359C272.906,248.5,266.672,247,259.5,247\r\n\t\tc-8.797,0-16.281,1.75-22.281,5.25c-6.094,3.531-11,8.016-14.75,13.484c-3.656,5.391-6.344,11.359-7.844,17.797\r\n\t\tc-1.469,6.484-2.266,12.766-2.266,18.969c0,15.953,4.234,28.719,12.797,38.438C233.719,350.516,245,355.453,259.141,355.453z"},"children":[{"name":"path","attribs":{"d":"M302.922,193.656c0-4.406-1-8.797-3.297-13.188c-2.156-4.438-5.141-8.375-8.688-11.938\r\n\t\tc-3.547-3.531-7.938-6.375-13.047-8.562c-5.109-2.219-10.516-3.344-16.281-3.344c-10.281,0-18.516,2.516-24.859,7.5\r\n\t\tc-6.312,5-11.375,11.531-15.094,19.625c-3.688,8.094-6.344,17.125-7.875,27.125c-1.516,9.969-2.375,19.781-2.688,29.5h1.266\r\n\t\tc14.312-14.656,29.797-22.031,46.578-22.031c10.688,0,20.766,2.047,30.328,6.156c9.438,4.125,17.625,9.875,24.453,17.234\r\n\t\tc6.969,7.281,12.359,16.141,16.375,26.391c3.969,10.297,5.906,21.422,5.906,33.422c0,11.219-1.844,21.906-5.391,31.891\r\n\t\tc-3.531,10-8.656,18.625-15.25,26.094c-6.594,7.5-14.594,13.469-24.141,17.938c-9.422,4.328-20.094,6.531-31.938,6.531\r\n\t\tc-12.656,0-24.141-2.562-34.469-7.938c-10.25-5.266-19.016-12.812-26.156-22.609c-7.172-9.922-12.703-21.891-16.688-35.953\r\n\t\tc-4-14.047-5.969-30.062-5.969-48.016c0-25.609,1.969-47.391,5.969-65.484c4-18.031,9.719-32.641,17.156-43.844\r\n\t\tc7.469-11.141,16.406-19.281,26.875-24.422c10.5-5.125,22.156-7.734,35.156-7.734c10.188,0,19.688,1.844,28.359,5.5\r\n\t\tc8.688,3.719,16.156,8.609,22.312,14.766c6.141,6.203,11.203,13.234,14.953,21.141c3.594,7.953,5.734,16.062,6.359,24.25H302.922z\r\n\t\t M259.141,355.453c14.828,0,25.906-5.172,33-15.219c7.234-10.219,10.781-22.734,10.781-37.734c0-7.297-0.906-14.281-2.641-20.938\r\n\t\tc-1.828-6.578-4.625-12.453-8.359-17.578c-3.609-5.141-8.219-9.25-13.625-12.359C272.906,248.5,266.672,247,259.5,247\r\n\t\tc-8.797,0-16.281,1.75-22.281,5.25c-6.094,3.531-11,8.016-14.75,13.484c-3.656,5.391-6.344,11.359-7.844,17.797\r\n\t\tc-1.469,6.484-2.266,12.766-2.266,18.969c0,15.953,4.234,28.719,12.797,38.438C233.719,350.516,245,355.453,259.141,355.453z"},"children":[]}]}]}]};exports.numberSix=numberSix;var numberThree={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M182.828,204.781c2.688-24.062,9.672-42.922,20.938-56.5C215.031,134.766,232.812,128,257.25,128\r\n\t\tc21.156,0,37.938,5.969,50.25,17.875s18.469,27.75,18.469,47.469c0,14.125-2.562,25.375-7.781,33.781\r\n\t\tc-5.234,8.375-13.453,14.906-24.781,19.625c5.422,1.75,10.641,4.25,15.688,7.5c5.188,3.25,9.734,7.406,13.672,12.594\r\n\t\tc4.062,5.156,7.266,11.234,9.734,18.344c2.344,7.047,3.5,15.359,3.5,25.094c0,12.172-2.078,22.688-6.234,31.75\r\n\t\tc-4.281,9.188-9.984,16.906-17.078,22.984c-7.234,6.219-15.641,10.938-25.047,14.188c-9.531,3.234-19.672,4.797-30.391,4.797\r\n\t\tc-21.969,0-40.156-6.984-54.5-20.984c-14.344-13.984-23.25-34.547-26.75-62h32.562c3.188,20,8.734,34.047,16.5,42.203\r\n\t\tc7.75,8.031,18.531,12.062,32.188,12.062c6.156,0,12.094-1.016,17.703-3.047c5.641-2.016,10.516-5.016,14.812-9.016\r\n\t\tc4.312-4,7.734-8.734,10.391-14.281c2.5-5.688,3.703-11.906,3.703-18.656c0-13.516-4.125-25.016-12.5-34.438\r\n\t\tc-8.25-9.375-19.641-14.094-34.109-14.094h-18.516v-28.719h18.516c6.719,0,12.422-1.062,17.109-3.281\r\n\t\tc4.656-2.234,8.484-5.094,11.453-8.625c2.953-3.5,5.031-7.5,6.219-11.875c1.297-4.469,1.797-8.875,1.797-13.25\r\n\t\tc0-12.375-3.406-22.109-10.25-29.156c-6.828-7.078-15.922-10.594-27.188-10.594c-6.953,0-12.797,1.281-17.656,3.984\r\n\t\tc-4.812,2.641-8.875,6.156-12.078,10.547c-3.188,4.453-5.719,9.594-7.625,15.484c-1.859,5.875-3.219,12.109-4,18.516H182.828z"},"children":[{"name":"path","attribs":{"d":"M182.828,204.781c2.688-24.062,9.672-42.922,20.938-56.5C215.031,134.766,232.812,128,257.25,128\r\n\t\tc21.156,0,37.938,5.969,50.25,17.875s18.469,27.75,18.469,47.469c0,14.125-2.562,25.375-7.781,33.781\r\n\t\tc-5.234,8.375-13.453,14.906-24.781,19.625c5.422,1.75,10.641,4.25,15.688,7.5c5.188,3.25,9.734,7.406,13.672,12.594\r\n\t\tc4.062,5.156,7.266,11.234,9.734,18.344c2.344,7.047,3.5,15.359,3.5,25.094c0,12.172-2.078,22.688-6.234,31.75\r\n\t\tc-4.281,9.188-9.984,16.906-17.078,22.984c-7.234,6.219-15.641,10.938-25.047,14.188c-9.531,3.234-19.672,4.797-30.391,4.797\r\n\t\tc-21.969,0-40.156-6.984-54.5-20.984c-14.344-13.984-23.25-34.547-26.75-62h32.562c3.188,20,8.734,34.047,16.5,42.203\r\n\t\tc7.75,8.031,18.531,12.062,32.188,12.062c6.156,0,12.094-1.016,17.703-3.047c5.641-2.016,10.516-5.016,14.812-9.016\r\n\t\tc4.312-4,7.734-8.734,10.391-14.281c2.5-5.688,3.703-11.906,3.703-18.656c0-13.516-4.125-25.016-12.5-34.438\r\n\t\tc-8.25-9.375-19.641-14.094-34.109-14.094h-18.516v-28.719h18.516c6.719,0,12.422-1.062,17.109-3.281\r\n\t\tc4.656-2.234,8.484-5.094,11.453-8.625c2.953-3.5,5.031-7.5,6.219-11.875c1.297-4.469,1.797-8.875,1.797-13.25\r\n\t\tc0-12.375-3.406-22.109-10.25-29.156c-6.828-7.078-15.922-10.594-27.188-10.594c-6.953,0-12.797,1.281-17.656,3.984\r\n\t\tc-4.812,2.641-8.875,6.156-12.078,10.547c-3.188,4.453-5.719,9.594-7.625,15.484c-1.859,5.875-3.219,12.109-4,18.516H182.828z"},"children":[]}]}]}]};exports.numberThree=numberThree;var numberTwo={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M176,209.75c2.531-24.406,10.969-44.141,25.375-59.219c14.344-15.031,34-22.531,58.859-22.531\r\n\t\tc12.234,0,23.172,2.141,32.594,6.484c9.422,4.297,17.375,10.141,23.719,17.484c6.328,7.281,11.219,15.547,14.516,24.797\r\n\t\tc3.281,9.266,4.938,18.844,4.938,28.703c0,8.625-0.984,16.391-3.062,23.266c-2.094,6.875-4.953,12.984-8.688,18.297\r\n\t\tc-3.75,5.438-8.031,10.375-13.109,15c-4.922,4.688-10.328,9.078-16.188,13.234c-10.844,8.406-22.125,16.453-33.672,24.203\r\n\t\tc-11.594,7.75-22.719,16.531-33.375,26.328c-3.875,3.672-7.062,7.438-9.594,11.453c-2.5,4.016-4.594,9.031-6.266,15.016h117.375\r\n\t\tV384H178.531v-24.203c0-10.047,3.188-20,9.625-29.578c6.438-9.734,14.438-19.188,24.125-28.219\r\n\t\tc9.625-9.031,20.188-17.828,31.781-26.359c11.609-8.516,22.531-16.766,32.891-24.781c7.844-5.984,14.031-12.359,18.672-19.234\r\n\t\tc4.516-6.859,6.859-15.625,6.859-26.344c0-15.172-3.812-27.031-11.734-35.531c-7.781-8.484-17.938-12.734-30.516-12.734\r\n\t\tc-15.359,0-27.531,4.703-36.453,14.109c-9,9.375-13.438,22.25-13.438,38.625H176z"},"children":[{"name":"path","attribs":{"d":"M176,209.75c2.531-24.406,10.969-44.141,25.375-59.219c14.344-15.031,34-22.531,58.859-22.531\r\n\t\tc12.234,0,23.172,2.141,32.594,6.484c9.422,4.297,17.375,10.141,23.719,17.484c6.328,7.281,11.219,15.547,14.516,24.797\r\n\t\tc3.281,9.266,4.938,18.844,4.938,28.703c0,8.625-0.984,16.391-3.062,23.266c-2.094,6.875-4.953,12.984-8.688,18.297\r\n\t\tc-3.75,5.438-8.031,10.375-13.109,15c-4.922,4.688-10.328,9.078-16.188,13.234c-10.844,8.406-22.125,16.453-33.672,24.203\r\n\t\tc-11.594,7.75-22.719,16.531-33.375,26.328c-3.875,3.672-7.062,7.438-9.594,11.453c-2.5,4.016-4.594,9.031-6.266,15.016h117.375\r\n\t\tV384H178.531v-24.203c0-10.047,3.188-20,9.625-29.578c6.438-9.734,14.438-19.188,24.125-28.219\r\n\t\tc9.625-9.031,20.188-17.828,31.781-26.359c11.609-8.516,22.531-16.766,32.891-24.781c7.844-5.984,14.031-12.359,18.672-19.234\r\n\t\tc4.516-6.859,6.859-15.625,6.859-26.344c0-15.172-3.812-27.031-11.734-35.531c-7.781-8.484-17.938-12.734-30.516-12.734\r\n\t\tc-15.359,0-27.531,4.703-36.453,14.109c-9,9.375-13.438,22.25-13.438,38.625H176z"},"children":[]}]}]}]};exports.numberTwo=numberTwo;var numberZero={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"path","attribs":{"d":"M255.984,128c-26.516,0-46.453,11.344-59.922,33.891C182.688,184.516,176,215.25,176,254.016\r\n\t\tc0,42.938,6.688,75.25,20.062,97.188C209.531,373.016,229.469,384,255.984,384c26.531,0,46.562-10.984,59.922-32.797\r\n\t\tC329.297,329.266,336,296.953,336,254.016C336,170,309.266,128,255.984,128z M292.219,330.719\r\n\t\tc-7.453,16.484-19.609,24.578-36.234,24.578c-16.688,0-28.703-8.094-36.266-24.578c-7.516-16.484-11.219-42.016-11.219-76.703\r\n\t\tc0-34.391,3.703-59.156,11.219-74.484c7.562-15.266,19.578-22.906,36.266-22.906c16.625,0,28.781,7.641,36.234,22.906\r\n\t\tc7.547,15.328,11.281,40.094,11.281,74.484C303.5,288.703,299.766,314.234,292.219,330.719z"},"children":[{"name":"path","attribs":{"d":"M255.984,128c-26.516,0-46.453,11.344-59.922,33.891C182.688,184.516,176,215.25,176,254.016\r\n\t\tc0,42.938,6.688,75.25,20.062,97.188C209.531,373.016,229.469,384,255.984,384c26.531,0,46.562-10.984,59.922-32.797\r\n\t\tC329.297,329.266,336,296.953,336,254.016C336,170,309.266,128,255.984,128z M292.219,330.719\r\n\t\tc-7.453,16.484-19.609,24.578-36.234,24.578c-16.688,0-28.703-8.094-36.266-24.578c-7.516-16.484-11.219-42.016-11.219-76.703\r\n\t\tc0-34.391,3.703-59.156,11.219-74.484c7.562-15.266,19.578-22.906,36.266-22.906c16.625,0,28.781,7.641,36.234,22.906\r\n\t\tc7.547,15.328,11.281,40.094,11.281,74.484C303.5,288.703,299.766,314.234,292.219,330.719z"},"children":[]}]}]}]};exports.numberZero=numberZero;var off={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"rect","attribs":{"x":"240","y":"128","width":"32","height":"80"},"children":[{"name":"rect","attribs":{"x":"240","y":"128","width":"32","height":"80"},"children":[]}]},{"name":"path","attribs":{"d":"M288,164.703v34.047c28.219,12.359,48,40.469,48,73.25c0,44.172-35.828,80-80,80c-44.188,0-80-35.828-80-80\r\n\t\tc0-32.781,19.766-60.891,48-73.25v-34.047c-46.25,13.766-80,56.562-80,107.297c0,61.859,50.141,112,112,112s112-50.141,112-112\r\n\t\tC368,221.266,334.25,178.469,288,164.703z"},"children":[{"name":"path","attribs":{"d":"M288,164.703v34.047c28.219,12.359,48,40.469,48,73.25c0,44.172-35.828,80-80,80c-44.188,0-80-35.828-80-80\r\n\t\tc0-32.781,19.766-60.891,48-73.25v-34.047c-46.25,13.766-80,56.562-80,107.297c0,61.859,50.141,112,112,112s112-50.141,112-112\r\n\t\tC368,221.266,334.25,178.469,288,164.703z"},"children":[]}]}]}]};exports.off=off;var officine2={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"path","attribs":{"d":"M284.516,258.023c3.609,4.391,9.984,4.969,14.281,1.25c4.25-3.594,4.812-10.031,1.328-14.375l76.828-65.281\r\n\tc8.359-7.125,9.438-19.875,2.422-28.406c-7.031-8.531-19.547-9.656-27.906-2.484l-76.812,65.234\r\n\tc-3.625-4.25-9.922-4.781-14.172-1.156c-4.289,3.656-4.836,10.203-1.227,14.547l6.211,7.547l-106.875,91.383l-14.219,4.453\r\n\tL128,352.438L140.828,368l23.523-12l7.195-14.031l106.781-91.477L284.516,258.023z"},"children":[]}]};exports.officine2=officine2;var officine={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"path","attribs":{"d":"M149.651,280.892c-15.734,15.734-26.062,37.047-19.781,56.891c0.781,2.469,22.594-5.531,22.594-5.531l10.547-24\r\n\tl29.297-5.625l8.531,8.547l8.531,8.531l-5.641,29.281l-23.984,10.547c0,0-8,21.812-5.531,22.609\r\n\tc19.844,6.266,41.156-4.062,56.891-19.812c17.344-17.328,21.203-42.891,11.891-64.062l134.172-122.516l6.828-20.469l-13.656-13.641\r\n\tl-13.641-13.641l-20.469,6.812L213.714,269.001C192.558,259.688,166.995,263.563,149.651,280.892z"},"children":[]}]};exports.officine=officine;var optionsSettings={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M152.312,242.875c17.797,14.688,42.258,16.219,61.484,5.828l4.227,3.828l18.062-14.906\r\n\t\tc-1.367-3.688-1.914-7.656-1.547-11.688c0.516-5.719,2.859-10.969,6.602-15.234c3.102-18.172-3.266-37.375-18.641-50.062\r\n\t\tc-16.188-13.344-37.164-21.203-55.352-13.766c-2.273,0.938,7.055,20.531,7.055,20.531l23.57,7.875L205.508,202l-7.359,8.625\r\n\t\tl-7.344,8.609l-28.141-2.844l-11.953-21.422c0,0-21.266-5.656-21.805-3.328C124.602,210.594,136.125,229.531,152.312,242.875z"},"children":[{"name":"path","attribs":{"d":"M152.312,242.875c17.797,14.688,42.258,16.219,61.484,5.828l4.227,3.828l18.062-14.906\r\n\t\tc-1.367-3.688-1.914-7.656-1.547-11.688c0.516-5.719,2.859-10.969,6.602-15.234c3.102-18.172-3.266-37.375-18.641-50.062\r\n\t\tc-16.188-13.344-37.164-21.203-55.352-13.766c-2.273,0.938,7.055,20.531,7.055,20.531l23.57,7.875L205.508,202l-7.359,8.625\r\n\t\tl-7.344,8.609l-28.141-2.844l-11.953-21.422c0,0-21.266-5.656-21.805-3.328C124.602,210.594,136.125,229.531,152.312,242.875z"},"children":[]}]},{"name":"path","attribs":{"d":"M375.875,322l-68.125-51.203c-1.406,2-2.969,3.859-4.938,5.484c-4.844,4.031-11.172,6.297-17.656,6.297\r\n\t\tc-4.891,0-9.609-1.266-13.75-3.594l-12.602,10.406l81.805,73.953L360.484,368l11.781-13.781L384,340.438L375.875,322z"},"children":[{"name":"path","attribs":{"d":"M375.875,322l-68.125-51.203c-1.406,2-2.969,3.859-4.938,5.484c-4.844,4.031-11.172,6.297-17.656,6.297\r\n\t\tc-4.891,0-9.609-1.266-13.75-3.594l-12.602,10.406l81.805,73.953L360.484,368l11.781-13.781L384,340.438L375.875,322z"},"children":[]}]},{"name":"path","attribs":{"d":"M278.047,261.312c3.297,3.875,9.156,4.391,13.078,1.125c3.891-3.188,4.406-8.875,1.234-12.75l70.375-57.672\r\n\t\tc7.672-6.328,8.672-17.578,2.234-25.125c-6.453-7.547-17.922-8.531-25.562-2.203L269,222.375c-3.297-3.781-9.07-4.266-12.961-1.031\r\n\t\tc-3.93,3.219-4.438,9.016-1.133,12.859l5.703,6.672l-97.93,80.781l-13.031,3.953l-15,19.156l11.75,13.766l21.555-10.594\r\n\t\tl6.586-12.406l97.836-80.859L278.047,261.312z"},"children":[{"name":"path","attribs":{"d":"M278.047,261.312c3.297,3.875,9.156,4.391,13.078,1.125c3.891-3.188,4.406-8.875,1.234-12.75l70.375-57.672\r\n\t\tc7.672-6.328,8.672-17.578,2.234-25.125c-6.453-7.547-17.922-8.531-25.562-2.203L269,222.375c-3.297-3.781-9.07-4.266-12.961-1.031\r\n\t\tc-3.93,3.219-4.438,9.016-1.133,12.859l5.703,6.672l-97.93,80.781l-13.031,3.953l-15,19.156l11.75,13.766l21.555-10.594\r\n\t\tl6.586-12.406l97.836-80.859L278.047,261.312z"},"children":[]}]}]}]};exports.optionsSettings=optionsSettings;var paperclipOblique={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"path","attribs":{"d":"M262.734,139.969l-38.016,41.438l-76.031,82.875l-9.5,10.344c-19.203,20.953-20.016,54.141,1.938,78.062\r\n\t\tc21.953,23.969,54.875,25.75,74.094,4.828l62.375-67.984l23.141-25.25l8.906-9.734c9.375-10.203,8.75-27.562-1.969-39.281\r\n\t\tc-10.734-11.688-26.656-12.359-36.031-2.141l-32.094,34.953c-9.359,10.234-7.812,28.562,2.906,40.266\r\n\t\tc1.781,1.953,5.938,5.375,6.312,4.969l-46.219,50.344c-12.234,13.344-34.766,10.469-48.734-4.75\r\n\t\tc-13.969-15.234-14.156-37.125-1.969-50.469l9.516-10.359l76.031-82.875l38.016-41.438c17.484-19.047,49.719-14.844,69.688,6.906\r\n\t\tc19.938,21.766,23.797,56.938,6.328,75.984L237.391,360.969c-3.5,3.812-4,9.422,0,13.812c4,4.328,9.156,3.812,12.656,0\r\n\t\tl114.062-124.312c24.438-26.672,21.578-73.141-6.359-103.609C329.828,116.406,287.172,113.312,262.734,139.969z M252.234,261.906\r\n\t\tl32.062-34.969c2.406-2.625,7.969-0.828,10.703,2.156c2.734,3,4.375,9.031,1.969,11.656l-8.906,9.719l-23.156,25.25\r\n\t\tc-2.406,2.625-7.938,0.812-10.688-2.172S249.828,264.516,252.234,261.906z"},"children":[{"name":"path","attribs":{"d":"M262.734,139.969l-38.016,41.438l-76.031,82.875l-9.5,10.344c-19.203,20.953-20.016,54.141,1.938,78.062\r\n\t\tc21.953,23.969,54.875,25.75,74.094,4.828l62.375-67.984l23.141-25.25l8.906-9.734c9.375-10.203,8.75-27.562-1.969-39.281\r\n\t\tc-10.734-11.688-26.656-12.359-36.031-2.141l-32.094,34.953c-9.359,10.234-7.812,28.562,2.906,40.266\r\n\t\tc1.781,1.953,5.938,5.375,6.312,4.969l-46.219,50.344c-12.234,13.344-34.766,10.469-48.734-4.75\r\n\t\tc-13.969-15.234-14.156-37.125-1.969-50.469l9.516-10.359l76.031-82.875l38.016-41.438c17.484-19.047,49.719-14.844,69.688,6.906\r\n\t\tc19.938,21.766,23.797,56.938,6.328,75.984L237.391,360.969c-3.5,3.812-4,9.422,0,13.812c4,4.328,9.156,3.812,12.656,0\r\n\t\tl114.062-124.312c24.438-26.672,21.578-73.141-6.359-103.609C329.828,116.406,287.172,113.312,262.734,139.969z M252.234,261.906\r\n\t\tl32.062-34.969c2.406-2.625,7.969-0.828,10.703,2.156c2.734,3,4.375,9.031,1.969,11.656l-8.906,9.719l-23.156,25.25\r\n\t\tc-2.406,2.625-7.938,0.812-10.688-2.172S249.828,264.516,252.234,261.906z"},"children":[]}]}]}]};exports.paperclipOblique=paperclipOblique;var paperclip={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"path","attribs":{"d":"M255.5,128c-35.281,0-64,25.125-64,56v48v96v12c0,24.266,18.719,44,46.453,44s49.547-19.734,49.547-44v-78.75V232v-11.25\r\n\tc0-11.844-10.453-21.5-24.016-21.5c-13.531,0-23.984,9.656-23.984,21.5v40.5c0,11.859,11.609,21.5,25.141,21.5\r\n\tc2.25,0,6.859-0.625,6.859-1.109V340c0,15.438-15.891,28-33.531,28S207.5,355.438,207.5,340v-12v-96v-48c0-22.062,22.797-40,48-40\r\n\ts48,17.938,48,40v144c0,4.422,2.938,8,8,8c5.047,0,8-3.578,8-8V184C319.5,153.125,290.781,128,255.5,128z M263.5,266.75\r\n\tc-3.453,0-8-2.469-8-5.5v-40.5c0-3.031,4.547-5.5,8-5.5c3.469,0,8,2.469,8,5.5V232v29.25C271.5,264.281,266.969,266.75,263.5,266.75\r\n\tz"},"children":[]}]};exports.paperclip=paperclip;var pause={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"271.5,336.5 335.5,336.5 335.5,211.5 335.5,176.5 271.5,176.5 \t\t"},"children":[{"name":"polygon","attribs":{"points":"271.5,336.5 335.5,336.5 335.5,211.5 335.5,176.5 271.5,176.5 \t\t"},"children":[]}]},{"name":"rect","attribs":{"x":"175.5","y":"176.5","width":"64","height":"160"},"children":[{"name":"rect","attribs":{"x":"175.5","y":"176.5","width":"64","height":"160"},"children":[]}]}]}]}]}]};exports.pause=pause;var pigMoney={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"path","attribs":{"d":"M265.875,153.75c-7.188,0-14.062,0.484-20.594,1.406c-5.594-7.094-14.656-13.25-26.219-17.062\r\n\t\tC200.922,132.125,159,120.875,159,134.328c11,7.578,20.281,32.953,31.156,44.203c-17.031,13.625-30.328,32.172-40.688,54.344\r\n\t\tc0,0-14.797,4.875-18.656,8.734c-3.875,3.891-3.625,43.125,0,46.75C134.422,292,152,295.922,152,295.922\r\n\t\tc8.75,19.281,21.828,35.078,38.469,46.656c-0.875,13.484-1.875,35.75,0.75,38.391c3.797,3.797,38.375,4.219,42.594,0\r\n\t\tc1.781-1.781,8.312-9.312,15.312-17.438c5.438,0.562,11,0.922,16.75,0.922c4.375,0,8.688-0.219,12.938-0.641\r\n\t\tc6.172,7.188,11.594,15.562,13.188,17.172c4.219,4.219,38.828,3.797,42.625,0c2.391-2.406,1.781-23.344,1-36.875\r\n\t\tC364.953,324.969,384,294.016,384,259.094C384,200.922,331.125,153.75,265.875,153.75z M326.891,330.672l-7.781,5.078l0.547,9.297\r\n\t\tc0.562,9.906,0.719,17.273,0.641,22.43c-2.125,0.141-4.672,0.023-7.578,0.023c0,0,0,0-0.016,0c-5.109,0-8.75-0.086-10.969-0.367\r\n\t\tc-0.109-0.156-0.234-0.215-0.359-0.387c-2.703-3.734-6.438-8.803-10.453-13.475l-5.422-6.284l-8.266,0.843\r\n\t\tc-3.734,0.375-7.516,0.569-11.359,0.569c-5.188,0-10.219-0.325-15.094-0.841l-8.312-0.857L237,353.046\r\n\t\tc-4.891,5.688-9.531,11.079-12.328,14.22c-2.141,0.312-5.953,0.672-11.547,0.672c-2.906,0-5.469-0.109-7.594-0.25\r\n\t\tc-0.031-4.797,0.156-12.359,0.906-24.078l0.578-9.047l-7.422-5.172c-14.375-10-25.5-23.5-33.031-40.125L163.25,282l-7.781-1.734\r\n\t\tc-3.719-0.844-7.906-2.016-11-3.031c-0.656-7.031-0.656-18.828,0.047-25.344c2.5-1.062,6.453-2.609,9.938-3.766l6.547-2.156\r\n\t\tl2.938-6.281c9.766-20.875,21.938-37.219,36.188-48.578l13.797-11.016l-12.266-12.719c-3.516-3.625-7.641-10.75-11.625-17.656\r\n\t\tc-0.656-1.156-1.328-2.312-2-3.438c8.562,1.781,18.062,4.438,26.047,7.062c8.047,2.656,14.844,6.938,18.641,11.75l5.688,7.25\r\n\t\tl9.094-1.281c5.906-0.844,12.062-1.266,18.375-1.266c56.312,0,102.125,40.062,102.125,89.297\r\n\t\tC368,287.516,353.016,313.594,326.891,330.672z"},"children":[{"name":"path","attribs":{"d":"M265.875,153.75c-7.188,0-14.062,0.484-20.594,1.406c-5.594-7.094-14.656-13.25-26.219-17.062\r\n\t\tC200.922,132.125,159,120.875,159,134.328c11,7.578,20.281,32.953,31.156,44.203c-17.031,13.625-30.328,32.172-40.688,54.344\r\n\t\tc0,0-14.797,4.875-18.656,8.734c-3.875,3.891-3.625,43.125,0,46.75C134.422,292,152,295.922,152,295.922\r\n\t\tc8.75,19.281,21.828,35.078,38.469,46.656c-0.875,13.484-1.875,35.75,0.75,38.391c3.797,3.797,38.375,4.219,42.594,0\r\n\t\tc1.781-1.781,8.312-9.312,15.312-17.438c5.438,0.562,11,0.922,16.75,0.922c4.375,0,8.688-0.219,12.938-0.641\r\n\t\tc6.172,7.188,11.594,15.562,13.188,17.172c4.219,4.219,38.828,3.797,42.625,0c2.391-2.406,1.781-23.344,1-36.875\r\n\t\tC364.953,324.969,384,294.016,384,259.094C384,200.922,331.125,153.75,265.875,153.75z M326.891,330.672l-7.781,5.078l0.547,9.297\r\n\t\tc0.562,9.906,0.719,17.273,0.641,22.43c-2.125,0.141-4.672,0.023-7.578,0.023c0,0,0,0-0.016,0c-5.109,0-8.75-0.086-10.969-0.367\r\n\t\tc-0.109-0.156-0.234-0.215-0.359-0.387c-2.703-3.734-6.438-8.803-10.453-13.475l-5.422-6.284l-8.266,0.843\r\n\t\tc-3.734,0.375-7.516,0.569-11.359,0.569c-5.188,0-10.219-0.325-15.094-0.841l-8.312-0.857L237,353.046\r\n\t\tc-4.891,5.688-9.531,11.079-12.328,14.22c-2.141,0.312-5.953,0.672-11.547,0.672c-2.906,0-5.469-0.109-7.594-0.25\r\n\t\tc-0.031-4.797,0.156-12.359,0.906-24.078l0.578-9.047l-7.422-5.172c-14.375-10-25.5-23.5-33.031-40.125L163.25,282l-7.781-1.734\r\n\t\tc-3.719-0.844-7.906-2.016-11-3.031c-0.656-7.031-0.656-18.828,0.047-25.344c2.5-1.062,6.453-2.609,9.938-3.766l6.547-2.156\r\n\t\tl2.938-6.281c9.766-20.875,21.938-37.219,36.188-48.578l13.797-11.016l-12.266-12.719c-3.516-3.625-7.641-10.75-11.625-17.656\r\n\t\tc-0.656-1.156-1.328-2.312-2-3.438c8.562,1.781,18.062,4.438,26.047,7.062c8.047,2.656,14.844,6.938,18.641,11.75l5.688,7.25\r\n\t\tl9.094-1.281c5.906-0.844,12.062-1.266,18.375-1.266c56.312,0,102.125,40.062,102.125,89.297\r\n\t\tC368,287.516,353.016,313.594,326.891,330.672z"},"children":[]}]},{"name":"path","attribs":{"d":"M302.75,191.719c-18.953-5.656-39.688,2.578-41.188,7.625s19.625-1.562,38.578,4.094\r\n\t\tc18.984,5.641,37.078,29.312,38.578,24.25C340.203,222.656,321.734,197.375,302.75,191.719z"},"children":[{"name":"path","attribs":{"d":"M302.75,191.719c-18.953-5.656-39.688,2.578-41.188,7.625s19.625-1.562,38.578,4.094\r\n\t\tc18.984,5.641,37.078,29.312,38.578,24.25C340.203,222.656,321.734,197.375,302.75,191.719z"},"children":[]}]},{"name":"path","attribs":{"d":"M207.672,213.469c-5.516,0-10,4.5-10,10.031s4.484,10.031,10,10.031s10-4.5,10-10.031S213.188,213.469,207.672,213.469z"},"children":[{"name":"path","attribs":{"d":"M207.672,213.469c-5.516,0-10,4.5-10,10.031s4.484,10.031,10,10.031s10-4.5,10-10.031S213.188,213.469,207.672,213.469z"},"children":[]}]}]}]};exports.pigMoney=pigMoney;var pinMap={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"path","attribs":{"d":"M304,191.953C304,165.469,282.516,144,256,144c-26.5,0-48,21.469-48,47.953c0,23.734,17.312,43.328,40,47.141v110.25\r\n\tc-13.781,1.047-24,4.766-24,9.156c0,5.234,14.328,9.5,32,9.5c17.656,0,32-4.266,32-9.5c0-4.391-10.219-8.109-24-9.156v-110.25\r\n\tC286.688,235.281,304,215.688,304,191.953z M236.406,181.75c-4.625,4.625-10.922,5.844-14.062,2.734\r\n\tc-3.125-3.141-1.875-9.422,2.75-14.047c4.641-4.625,10.938-5.859,14.062-2.75C242.266,170.812,241.047,177.109,236.406,181.75z"},"children":[]}]};exports.pinMap=pinMap;var pin={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,144c-44.188,0-80,38.609-80,80c0,22.031,11,32.344,32,69.906c18.453,32.984,33.859,62.938,33.859,62.938\r\n\t\tc7.641,14.859,20.172,14.875,27.828,0.031c0,0,15.516-30,34.312-62.969c21.406-37.562,32-47.859,32-69.906\r\n\t\tC336,182.609,300.188,144,256,144z M256,272c-26.5,0-48-21.5-48-48c0-26.508,21.5-48,48-48c26.516,0,48,21.492,48,48\r\n\t\tC304,250.5,282.516,272,256,272z"},"children":[{"name":"path","attribs":{"d":"M256,144c-44.188,0-80,38.609-80,80c0,22.031,11,32.344,32,69.906c18.453,32.984,33.859,62.938,33.859,62.938\r\n\t\tc7.641,14.859,20.172,14.875,27.828,0.031c0,0,15.516-30,34.312-62.969c21.406-37.562,32-47.859,32-69.906\r\n\t\tC336,182.609,300.188,144,256,144z M256,272c-26.5,0-48-21.5-48-48c0-26.508,21.5-48,48-48c26.516,0,48,21.492,48,48\r\n\t\tC304,250.5,282.516,272,256,272z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,0C114.625,0,0,114.609,0,256s114.625,256,256,256c141.406,0,256-114.609,256-256S397.406,0,256,0z M256,472\r\n\t\tc-119.281,0-216-96.703-216-216S136.719,40,256,40c119.312,0,216,96.703,216,216S375.312,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.625,0,0,114.609,0,256s114.625,256,256,256c141.406,0,256-114.609,256-256S397.406,0,256,0z M256,472\r\n\t\tc-119.281,0-216-96.703-216-216S136.719,40,256,40c119.312,0,216,96.703,216,216S375.312,472,256,472z"},"children":[]}]}]}]};exports.pin=pin;var play={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"polygon","attribs":{"points":"192,336 352,256 192,176 \t"},"children":[{"name":"polygon","attribs":{"points":"192,336 352,256 192,176 \t"},"children":[]}]}]}]};exports.play=play;var plus={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"272,128 240,128 240,240 128,240 128,272 240,272 240,384 272,384 272,272 384,272 384,240 272,240 \t"},"children":[{"name":"polygon","attribs":{"points":"272,128 240,128 240,240 128,240 128,272 240,272 240,384 272,384 272,272 384,272 384,240 272,240 \t"},"children":[]}]},{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]}]}]};exports.plus=plus;var podcast={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M230.406,256c0,14.141,11.453,25.594,25.594,25.594s25.594-11.453,25.594-25.594S270.141,230.406,256,230.406\r\n\t\tS230.406,241.859,230.406,256z"},"children":[{"name":"path","attribs":{"d":"M230.406,256c0,14.141,11.453,25.594,25.594,25.594s25.594-11.453,25.594-25.594S270.141,230.406,256,230.406\r\n\t\tS230.406,241.859,230.406,256z"},"children":[]}]},{"name":"path","attribs":{"d":"M281.922,299.922l14.172,21.297c21.953-13.516,36.703-37.547,36.703-65.219c0-42.406-34.375-76.797-76.797-76.797\r\n\t\tc-42.406,0-76.797,34.391-76.797,76.797c0,27.672,14.75,51.703,36.688,65.219l14.203-21.297\r\n\t\tC215.016,291,204.797,274.781,204.797,256c0-28.281,22.922-51.203,51.203-51.203s51.203,22.922,51.203,51.203\r\n\t\tC307.203,274.781,296.969,291.031,281.922,299.922z"},"children":[{"name":"path","attribs":{"d":"M281.922,299.922l14.172,21.297c21.953-13.516,36.703-37.547,36.703-65.219c0-42.406-34.375-76.797-76.797-76.797\r\n\t\tc-42.406,0-76.797,34.391-76.797,76.797c0,27.672,14.75,51.703,36.688,65.219l14.203-21.297\r\n\t\tC215.016,291,204.797,274.781,204.797,256c0-28.281,22.922-51.203,51.203-51.203s51.203,22.922,51.203,51.203\r\n\t\tC307.203,274.781,296.969,291.031,281.922,299.922z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,128c-70.688,0-128,57.312-128,128c0,45.422,23.828,85.094,59.5,107.797l14.188-21.297\r\n\t\tc-28.797-18.125-48.094-49.953-48.094-86.5c0-56.547,45.859-102.406,102.406-102.406S358.406,199.453,358.406,256\r\n\t\tc0,36.547-19.312,68.406-48.109,86.5l14.203,21.297C360.172,341.094,384,301.422,384,256C384,185.312,326.703,128,256,128z"},"children":[{"name":"path","attribs":{"d":"M256,128c-70.688,0-128,57.312-128,128c0,45.422,23.828,85.094,59.5,107.797l14.188-21.297\r\n\t\tc-28.797-18.125-48.094-49.953-48.094-86.5c0-56.547,45.859-102.406,102.406-102.406S358.406,199.453,358.406,256\r\n\t\tc0,36.547-19.312,68.406-48.109,86.5l14.203,21.297C360.172,341.094,384,301.422,384,256C384,185.312,326.703,128,256,128z"},"children":[]}]},{"name":"polygon","attribs":{"points":"208,384 304,384 256,304 \t"},"children":[{"name":"polygon","attribs":{"points":"208,384 304,384 256,304 \t"},"children":[]}]}]}]};exports.podcast=podcast;var pounds={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"path","attribs":{"d":"M340.812,384H171.188v-25.969c22.844-10.812,43.359-34.062,43.359-61.906c0-7,0-13.188-1.547-20.562h-38.344v-32.906\r\n\t\th32.938c-1.562-10.469-3.5-23.25-3.5-36.031c0-47.641,33.688-78.625,81.75-78.625c20.5,0,35.641,4.656,43.75,9.281l-8.531,36.031\r\n\t\tc-7.375-3.875-18.188-7.359-33.297-7.359c-29.047,0-39.109,19.375-39.109,42.219c0,12.797,1.531,23.641,4.25,34.484h54.188v32.906\r\n\t\th-49.938c0.375,11.625,0.375,23.25-2.688,34.484c-3.891,13.172-11.625,24.375-22.5,34.062v0.766h108.844V384z"},"children":[{"name":"path","attribs":{"d":"M340.812,384H171.188v-25.969c22.844-10.812,43.359-34.062,43.359-61.906c0-7,0-13.188-1.547-20.562h-38.344v-32.906\r\n\t\th32.938c-1.562-10.469-3.5-23.25-3.5-36.031c0-47.641,33.688-78.625,81.75-78.625c20.5,0,35.641,4.656,43.75,9.281l-8.531,36.031\r\n\t\tc-7.375-3.875-18.188-7.359-33.297-7.359c-29.047,0-39.109,19.375-39.109,42.219c0,12.797,1.531,23.641,4.25,34.484h54.188v32.906\r\n\t\th-49.938c0.375,11.625,0.375,23.25-2.688,34.484c-3.891,13.172-11.625,24.375-22.5,34.062v0.766h108.844V384z"},"children":[]}]}]}]};exports.pounds=pounds;var prevStep={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"polygon","attribs":{"points":"304,336 304,176 208,256 \t"},"children":[{"name":"polygon","attribs":{"points":"304,336 304,176 208,256 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"176,176 176,336 208,336 208,240 208,176 \t"},"children":[{"name":"polygon","attribs":{"points":"176,176 176,336 208,336 208,240 208,176 \t"},"children":[]}]}]}]};exports.prevStep=prevStep;var previousFastStep={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,512c141.391,0,256-114.609,256-256S397.391,0,256,0S0,114.609,0,256S114.609,512,256,512z M256,40\r\n\t\tc119.297,0,216,96.703,216,216s-96.703,216-216,216S40,375.297,40,256S136.703,40,256,40z"},"children":[{"name":"path","attribs":{"d":"M256,512c141.391,0,256-114.609,256-256S397.391,0,256,0S0,114.609,0,256S114.609,512,256,512z M256,40\r\n\t\tc119.297,0,216,96.703,216,216s-96.703,216-216,216S40,375.297,40,256S136.703,40,256,40z"},"children":[]}]},{"name":"polygon","attribs":{"points":"352,176 256,256 352,336 \t"},"children":[{"name":"polygon","attribs":{"points":"352,176 256,256 352,336 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"256,256 256,176 160,256 256,336 \t"},"children":[{"name":"polygon","attribs":{"points":"256,256 256,176 160,256 256,336 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"160,240 160,176 128,176 128,336 160,336 \t"},"children":[{"name":"polygon","attribs":{"points":"160,240 160,176 128,176 128,336 160,336 \t"},"children":[]}]}]}]};exports.previousFastStep=previousFastStep;var question={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"rect","attribs":{"x":"240","y":"352","width":"32","height":"32"},"children":[{"name":"rect","attribs":{"x":"240","y":"352","width":"32","height":"32"},"children":[]}]},{"name":"path","attribs":{"d":"M317.734,150.148c-6.484-6.625-14.688-11.922-24.766-16.031c-10.203-4.102-22.172-6.117-36.281-6.117\r\n\t\tc-11.969,0-22.875,2.016-32.781,6.117c-9.938,4.109-18.5,9.773-25.688,17.125c-7.125,7.289-12.672,14.508-16.5,24.773\r\n\t\tC177.906,186.281,176,192,176,208h32.656c0-16,4.234-28.109,12.938-38.516c8.594-10.453,20.266-14.82,35.094-14.82\r\n\t\tc14.438,0,25.234,3.914,32.172,10.938c6.875,7.023,10.391,17.086,10.391,29.797c0,9.883-3.25,18.758-9.734,26.492\r\n\t\tc-6.375,7.75-13.359,15.297-20.844,22.438c-7.594,7.141-13.672,14.766-19.953,22.641S240,284.016,240,294.469V320h32v-13.75\r\n\t\tc0-8.203,1.203-15.312,4.406-21.516c3.094-6.219,6.953-11.859,11.844-16.891c4.734-5.094,9.812-10,15.469-14.828\r\n\t\tc5.5-4.766,10.781-9.859,15.531-15.172c4.844-5.344,8.875-11.344,11.938-17.969c3.219-6.625,4.828-14.406,4.828-23.477\r\n\t\tc0-7.875-1.422-15.891-4.391-24.039C328.719,164.148,324.031,156.766,317.734,150.148z"},"children":[{"name":"path","attribs":{"d":"M317.734,150.148c-6.484-6.625-14.688-11.922-24.766-16.031c-10.203-4.102-22.172-6.117-36.281-6.117\r\n\t\tc-11.969,0-22.875,2.016-32.781,6.117c-9.938,4.109-18.5,9.773-25.688,17.125c-7.125,7.289-12.672,14.508-16.5,24.773\r\n\t\tC177.906,186.281,176,192,176,208h32.656c0-16,4.234-28.109,12.938-38.516c8.594-10.453,20.266-14.82,35.094-14.82\r\n\t\tc14.438,0,25.234,3.914,32.172,10.938c6.875,7.023,10.391,17.086,10.391,29.797c0,9.883-3.25,18.758-9.734,26.492\r\n\t\tc-6.375,7.75-13.359,15.297-20.844,22.438c-7.594,7.141-13.672,14.766-19.953,22.641S240,284.016,240,294.469V320h32v-13.75\r\n\t\tc0-8.203,1.203-15.312,4.406-21.516c3.094-6.219,6.953-11.859,11.844-16.891c4.734-5.094,9.812-10,15.469-14.828\r\n\t\tc5.5-4.766,10.781-9.859,15.531-15.172c4.844-5.344,8.875-11.344,11.938-17.969c3.219-6.625,4.828-14.406,4.828-23.477\r\n\t\tc0-7.875-1.422-15.891-4.391-24.039C328.719,164.148,324.031,156.766,317.734,150.148z"},"children":[]}]}]}]};exports.question=question;var quote={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M239.078,185.492L209.25,160C172.219,187.18,144,235.609,144,287.438C144,329.047,167.344,352,193.969,352\r\n\t\tc24.172,0,43.5-20.375,43.5-45.922c0-24.625-16.891-43.281-39.469-43.281c-4.031,0-9.656,1.688-10.5,1.688\r\n\t\tC190.75,237.312,213.281,203.344,239.078,185.492z"},"children":[{"name":"path","attribs":{"d":"M239.078,185.492L209.25,160C172.219,187.18,144,235.609,144,287.438C144,329.047,167.344,352,193.969,352\r\n\t\tc24.172,0,43.5-20.375,43.5-45.922c0-24.625-16.891-43.281-39.469-43.281c-4.031,0-9.656,1.688-10.5,1.688\r\n\t\tC190.75,237.312,213.281,203.344,239.078,185.492z"},"children":[]}]},{"name":"path","attribs":{"d":"M326.938,262.797c-3.234,0-8.922,1.688-10.5,1.688c3.203-27.172,25.781-61.141,51.562-78.992L338.188,160\r\n\t\tc-37.031,27.18-65.234,75.609-65.234,127.438c0,41.609,23.328,64.562,49.953,64.562c24.141,0,43.469-20.375,43.469-45.922\r\n\t\tC366.375,281.453,349.516,262.797,326.938,262.797z"},"children":[{"name":"path","attribs":{"d":"M326.938,262.797c-3.234,0-8.922,1.688-10.5,1.688c3.203-27.172,25.781-61.141,51.562-78.992L338.188,160\r\n\t\tc-37.031,27.18-65.234,75.609-65.234,127.438c0,41.609,23.328,64.562,49.953,64.562c24.141,0,43.469-20.375,43.469-45.922\r\n\t\tC366.375,281.453,349.516,262.797,326.938,262.797z"},"children":[]}]}]}]};exports.quote=quote;var random={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"336,224 336,240 384,208.25 336,176 336,192 272,192 208,288 128,288.25 128,320 224,320 288,224 \t\t"},"children":[{"name":"polygon","attribs":{"points":"336,224 336,240 384,208.25 336,176 336,192 272,192 208,288 128,288.25 128,320 224,320 288,224 \t\t"},"children":[]}]},{"name":"polygon","attribs":{"points":"219.719,241.578 238.391,213.578 224,192 128,192 128,224 208,224 \t\t"},"children":[{"name":"polygon","attribs":{"points":"219.719,241.578 238.391,213.578 224,192 128,192 128,224 208,224 \t\t"},"children":[]}]},{"name":"polygon","attribs":{"points":"336,288 288,288 276.281,270.422 257.625,298.422 272,320 336,320 336,336 384,303.75 336,272 \t\t"},"children":[{"name":"polygon","attribs":{"points":"336,288 288,288 276.281,270.422 257.625,298.422 272,320 336,320 336,336 384,303.75 336,272 \t\t"},"children":[]}]}]}]}]}]};exports.random=random;var rec={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"path","attribs":{"d":"M336,256c0,44.188-35.812,80-80,80s-80-35.812-80-80s35.812-80,80-80S336,211.812,336,256z"},"children":[]}]};exports.rec=rec;var refresh={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"path","attribs":{"d":"M354.554,236.532c6.422,31.797-2.75,66.047-27.484,90.703c-39.234,39.203-102.907,39.203-142.172,0\r\n\tc-39.281-39.188-39.266-102.688,0-141.859c39.094-38.984,102.782-38.641,141.594-0.484l-13.828,14.391l63.609,14.469l-17.875-62.016\r\n\tl-12.891,13.375c-51.719-50.594-130.329-48.641-180.016,0.906c-49.984,49.875-49.984,130.703,0,180.562\r\n\tc50,49.891,131.016,49.891,181,0c28.25-28.125,40.5-66.125,36.891-102.828L354.554,236.532z"},"children":[]}]};exports.refresh=refresh;var reportComment={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256-2C114.609-2,0,112.609,0,254s114.609,256,256,256s256-114.609,256-256S397.391-2,256-2z M256,470\r\n\tc-119.297,0-216-96.703-216-216S136.703,38,256,38s216,96.703,216,216S375.297,470,256,470z"},"children":[]},{"name":"path","attribs":{"d":"M349.328,142H162.664C152.359,142,144,150.359,144,160.656v122.672c0,10.312,8.359,18.672,18.664,18.672H176v64l37.336-64\r\n\th135.992c10.312,0,18.672-8.359,18.672-18.672V160.656C368,150.359,359.641,142,349.328,142z M336,270h-96v-16h96V270z M336,222H176\r\n\tv-16h160V222z M336,190H176v-16h160V190z"},"children":[]}]};exports.reportComment=reportComment;var retweet={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"160,208 176,192 320,192 320,176 352,208 320,240 320,224 192,224 192,240 160,272 \t"},"children":[{"name":"polygon","attribs":{"points":"160,208 176,192 320,192 320,176 352,208 320,240 320,224 192,224 192,240 160,272 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"352,304 336,320 192,320 192,336 160,304 192,272 192,288 320,288 320,272 352,240 \t"},"children":[{"name":"polygon","attribs":{"points":"352,304 336,320 192,320 192,336 160,304 192,272 192,288 320,288 320,272 352,240 \t"},"children":[]}]}]}]};exports.retweet=retweet;var rss={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M128,230.391v51.203c56.547,0,102.406,45.844,102.406,102.406h51.188C281.594,299.188,212.844,230.391,128,230.391z"},"children":[{"name":"path","attribs":{"d":"M128,230.391v51.203c56.547,0,102.406,45.844,102.406,102.406h51.188C281.594,299.188,212.844,230.391,128,230.391z"},"children":[]}]},{"name":"path","attribs":{"d":"M128,128v51.203c113.094,0,204.812,91.703,204.812,204.797H384C384,242.609,269.406,128,128,128z"},"children":[{"name":"path","attribs":{"d":"M128,128v51.203c113.094,0,204.812,91.703,204.812,204.797H384C384,242.609,269.406,128,128,128z"},"children":[]}]},{"name":"path","attribs":{"d":"M153.594,332.797c-14.141,0-25.594,11.453-25.594,25.609C128,372.547,139.453,384,153.594,384\r\n\t\tc14.156,0,25.609-11.453,25.609-25.594C179.203,344.25,167.75,332.797,153.594,332.797z"},"children":[{"name":"path","attribs":{"d":"M153.594,332.797c-14.141,0-25.594,11.453-25.594,25.609C128,372.547,139.453,384,153.594,384\r\n\t\tc14.156,0,25.609-11.453,25.609-25.594C179.203,344.25,167.75,332.797,153.594,332.797z"},"children":[]}]}]}]};exports.rss=rss;var rules={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"128","y":"128","fill-rule":"evenodd","clip-rule":"evenodd","width":"64","height":"64"},"children":[{"name":"rect","attribs":{"x":"128","y":"128","fill-rule":"evenodd","clip-rule":"evenodd","width":"64","height":"64"},"children":[]}]},{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"368,128 368,160 352,160 352,128 336,128 336,144 320,144 320,128 \r\n\t\t304,128 304,160 288,160 288,128 272,128 272,144 256,144 256,128 240,128 240,160 224,160 224,128 208,128 208,192 384,192 \r\n\t\t384,128 \t"},"children":[{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"368,128 368,160 352,160 352,128 336,128 336,144 320,144 320,128 \r\n\t\t304,128 304,160 288,160 288,128 272,128 272,144 256,144 256,128 240,128 240,160 224,160 224,128 208,128 208,192 384,192 \r\n\t\t384,128 \t"},"children":[]}]},{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"128,224 144,224 144,240 128,240 128,256 160,256 160,272 128,272 \r\n\t\t128,288 144,288 144,304 128,304 128,320 160,320 160,336 128,336 128,352 144,352 144,368 128,368 128,384 192,384 192,208 \r\n\t\t128,208 \t"},"children":[{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"128,224 144,224 144,240 128,240 128,256 160,256 160,272 128,272 \r\n\t\t128,288 144,288 144,304 128,304 128,320 160,320 160,336 128,336 128,352 144,352 144,368 128,368 128,384 192,384 192,208 \r\n\t\t128,208 \t"},"children":[]}]}]}]};exports.rules=rules;var scale={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"119.5","y":"296.5","width":"112","height":"64"},"children":[{"name":"rect","attribs":{"x":"119.5","y":"296.5","width":"112","height":"64"},"children":[]}]},{"name":"polygon","attribs":{"points":"119.5,232.5 135.5,232.5 135.5,184.5 359.5,184.5 359.5,344.5 327.5,344.5 327.5,360.5 375.5,360.5 375.5,168.5 \r\n\t\t119.5,168.5 \t"},"children":[{"name":"polygon","attribs":{"points":"119.5,232.5 135.5,232.5 135.5,184.5 359.5,184.5 359.5,344.5 327.5,344.5 327.5,360.5 375.5,360.5 375.5,168.5 \r\n\t\t119.5,168.5 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"119.5,280.5 135.5,280.5 135.5,264.5 295.5,264.5 295.5,344.5 247.5,344.5 247.5,360.5 311.5,360.5 311.5,248.5 \r\n\t\t119.5,248.5 \t"},"children":[{"name":"polygon","attribs":{"points":"119.5,280.5 135.5,280.5 135.5,264.5 295.5,264.5 295.5,344.5 247.5,344.5 247.5,360.5 311.5,360.5 311.5,248.5 \r\n\t\t119.5,248.5 \t"},"children":[]}]},{"name":"path","attribs":{"d":"M256,0C114.625,0,0,114.609,0,256s114.625,256,256,256c141.406,0,256-114.609,256-256S397.406,0,256,0z M256,472\r\n\t\tc-119.281,0-216-96.703-216-216S136.719,40,256,40c119.312,0,216,96.703,216,216S375.312,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.625,0,0,114.609,0,256s114.625,256,256,256c141.406,0,256-114.609,256-256S397.406,0,256,0z M256,472\r\n\t\tc-119.281,0-216-96.703-216-216S136.719,40,256,40c119.312,0,216,96.703,216,216S375.312,472,256,472z"},"children":[]}]}]}]};exports.scale=scale;var search={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill":"#1D1D1B","d":"M302.188,279.563C313.36,263.875,320,244.727,320,224c0-53.032-42.984-96-96-96c-53.017,0-96,42.968-96,96\r\n\t\t\tc0,53.016,42.983,96,96,96c20.727,0,39.875-6.64,55.563-17.812l77.124,77.124c6.25,6.252,16.375,6.252,22.624,0\r\n\t\t\tc6.252-6.249,6.252-16.374,0-22.623L302.188,279.563z M278.953,256.319c-5.53,9.36-13.273,17.104-22.634,22.634\r\n\t\t\tC246.805,284.563,235.843,288,224,288c-35.345,0-64-28.656-64-64s28.655-64,64-64c35.344,0,64,28.656,64,64\r\n\t\t\tC288,235.843,284.563,246.805,278.953,256.319z M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\t\t\tS397.391,0,256,0z M256,472c-119.298,0-216-96.702-216-216c0-119.297,96.702-216,216-216s216,96.703,216,216\r\n\t\t\tC472,375.298,375.298,472,256,472z"},"children":[{"name":"path","attribs":{"fill":"#1D1D1B","d":"M302.188,279.563C313.36,263.875,320,244.727,320,224c0-53.032-42.984-96-96-96c-53.017,0-96,42.968-96,96\r\n\t\t\tc0,53.016,42.983,96,96,96c20.727,0,39.875-6.64,55.563-17.812l77.124,77.124c6.25,6.252,16.375,6.252,22.624,0\r\n\t\t\tc6.252-6.249,6.252-16.374,0-22.623L302.188,279.563z M278.953,256.319c-5.53,9.36-13.273,17.104-22.634,22.634\r\n\t\t\tC246.805,284.563,235.843,288,224,288c-35.345,0-64-28.656-64-64s28.655-64,64-64c35.344,0,64,28.656,64,64\r\n\t\t\tC288,235.843,284.563,246.805,278.953,256.319z M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\t\t\tS397.391,0,256,0z M256,472c-119.298,0-216-96.702-216-216c0-119.297,96.702-216,216-216s216,96.703,216,216\r\n\t\t\tC472,375.298,375.298,472,256,472z"},"children":[]}]}]}]}]}]};exports.search=search;var selectCircle={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M177.914,311.906l-12.969,9.312c6.844,9.516,15.094,17.922,24.547,24.906l9.516-12.828\r\n\t\tC190.883,327.281,183.789,320.094,177.914,311.906z"},"children":[{"name":"path","attribs":{"d":"M177.914,311.906l-12.969,9.312c6.844,9.516,15.094,17.922,24.547,24.906l9.516-12.828\r\n\t\tC190.883,327.281,183.789,320.094,177.914,311.906z"},"children":[]}]},{"name":"path","attribs":{"d":"M144.008,255.406V256c0,11.578,1.766,23,5.25,33.953l15.188-4.844c-2.969-9.375-4.469-19.172-4.469-29.109L144.008,255.406\r\n\t\tz"},"children":[{"name":"path","attribs":{"d":"M144.008,255.406V256c0,11.578,1.766,23,5.25,33.953l15.188-4.844c-2.969-9.375-4.469-19.172-4.469-29.109L144.008,255.406\r\n\t\tz"},"children":[]}]},{"name":"path","attribs":{"d":"M165.711,189.75c-6.953,9.469-12.375,19.938-16.078,31.078l15.172,5.016c3.141-9.562,7.797-18.531,13.766-26.625\r\n\t\tL165.711,189.75z"},"children":[{"name":"path","attribs":{"d":"M165.711,189.75c-6.953,9.469-12.375,19.938-16.078,31.078l15.172,5.016c3.141-9.562,7.797-18.531,13.766-26.625\r\n\t\tL165.711,189.75z"},"children":[]}]},{"name":"path","attribs":{"d":"M220.539,362.25c11.078,3.719,22.688,5.625,34.469,5.75l0.156-15.969c-10.125-0.094-20.062-1.734-29.594-4.922\r\n\t\tL220.539,362.25z"},"children":[{"name":"path","attribs":{"d":"M220.539,362.25c11.078,3.719,22.688,5.625,34.469,5.75l0.156-15.969c-10.125-0.094-20.062-1.734-29.594-4.922\r\n\t\tL220.539,362.25z"},"children":[]}]},{"name":"path","attribs":{"d":"M221.758,149.344c-11.156,3.594-21.672,8.922-31.25,15.797l9.375,12.938c8.156-5.891,17.172-10.453,26.75-13.516\r\n\t\tL221.758,149.344z"},"children":[{"name":"path","attribs":{"d":"M221.758,149.344c-11.156,3.594-21.672,8.922-31.25,15.797l9.375,12.938c8.156-5.891,17.172-10.453,26.75-13.516\r\n\t\tL221.758,149.344z"},"children":[]}]},{"name":"path","attribs":{"d":"M290.883,149.531c-11.109-3.625-22.719-5.484-34.562-5.531l-0.031,15.969c10.125,0.047,20.109,1.625,29.609,4.734\r\n\t\tL290.883,149.531z"},"children":[{"name":"path","attribs":{"d":"M290.883,149.531c-11.109-3.625-22.719-5.484-34.562-5.531l-0.031,15.969c10.125,0.047,20.109,1.625,29.609,4.734\r\n\t\tL290.883,149.531z"},"children":[]}]},{"name":"path","attribs":{"d":"M333.117,313.25l12.828,9.547c7.031-9.469,12.5-19.891,16.234-31.016l-15.125-5.062\r\n\t\tC343.836,296.203,339.164,305.125,333.117,313.25z"},"children":[{"name":"path","attribs":{"d":"M333.117,313.25l12.828,9.547c7.031-9.469,12.5-19.891,16.234-31.016l-15.125-5.062\r\n\t\tC343.836,296.203,339.164,305.125,333.117,313.25z"},"children":[]}]},{"name":"path","attribs":{"d":"M362.555,221.469l-15.188,4.906c3.078,9.562,4.672,19.516,4.672,29.625l11.203,0.844l4.75-0.531\r\n\t\tC367.992,244.219,366.164,232.609,362.555,221.469z"},"children":[{"name":"path","attribs":{"d":"M362.555,221.469l-15.188,4.906c3.078,9.562,4.672,19.516,4.672,29.625l11.203,0.844l4.75-0.531\r\n\t\tC367.992,244.219,366.164,232.609,362.555,221.469z"},"children":[]}]},{"name":"path","attribs":{"d":"M284.82,347.625l4.797,15.234c11.188-3.516,21.734-8.766,31.328-15.594l-9.266-13.016\r\n\t\tC303.461,340.109,294.414,344.609,284.82,347.625z"},"children":[{"name":"path","attribs":{"d":"M284.82,347.625l4.797,15.234c11.188-3.516,21.734-8.766,31.328-15.594l-9.266-13.016\r\n\t\tC303.461,340.109,294.414,344.609,284.82,347.625z"},"children":[]}]},{"name":"path","attribs":{"d":"M346.68,190.25c-6.875-9.469-15.188-17.812-24.719-24.719l-9.406,12.859c8.156,5.969,15.297,13.125,21.203,21.266\r\n\t\tL346.68,190.25z"},"children":[{"name":"path","attribs":{"d":"M346.68,190.25c-6.875-9.469-15.188-17.812-24.719-24.719l-9.406,12.859c8.156,5.969,15.297,13.125,21.203,21.266\r\n\t\tL346.68,190.25z"},"children":[]}]}]}]};exports.selectCircle=selectCircle;var selectSquare={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"351.906","y":"224.031","width":"15.984","height":"63.938"},"children":[{"name":"rect","attribs":{"x":"351.906","y":"224.031","width":"15.984","height":"63.938"},"children":[]}]},{"name":"path","attribs":{"d":"M344.047,144h-8.016v15.984h8.016c4.375,0,7.969,3.578,7.969,7.984v8H368v-8C368,154.766,357.234,144,344.047,144z"},"children":[{"name":"path","attribs":{"d":"M344.047,144h-8.016v15.984h8.016c4.375,0,7.969,3.578,7.969,7.984v8H368v-8C368,154.766,357.234,144,344.047,144z"},"children":[]}]},{"name":"rect","attribs":{"x":"224.031","y":"144.125","width":"63.938","height":"15.984"},"children":[{"name":"rect","attribs":{"x":"224.031","y":"144.125","width":"63.938","height":"15.984"},"children":[]}]},{"name":"path","attribs":{"d":"M144,167.969l0.125,8.125h15.984l-0.125-8.125c0-4.406,3.578-7.984,7.984-7.984h8V144h-8\r\n\t\tC154.75,144,144,154.766,144,167.969z"},"children":[{"name":"path","attribs":{"d":"M144,167.969l0.125,8.125h15.984l-0.125-8.125c0-4.406,3.578-7.984,7.984-7.984h8V144h-8\r\n\t\tC154.75,144,144,154.766,144,167.969z"},"children":[]}]},{"name":"rect","attribs":{"x":"144.125","y":"224.031","width":"15.984","height":"63.938"},"children":[{"name":"rect","attribs":{"x":"144.125","y":"224.031","width":"15.984","height":"63.938"},"children":[]}]},{"name":"path","attribs":{"d":"M159.984,344.047v-8.016H144v8.016C144,357.25,154.75,368,167.969,368h8v-15.984h-8\r\n\t\tC163.562,352.016,159.984,348.422,159.984,344.047z"},"children":[{"name":"path","attribs":{"d":"M159.984,344.047v-8.016H144v8.016C144,357.25,154.75,368,167.969,368h8v-15.984h-8\r\n\t\tC163.562,352.016,159.984,348.422,159.984,344.047z"},"children":[]}]},{"name":"rect","attribs":{"x":"224.031","y":"351.906","width":"63.938","height":"15.984"},"children":[{"name":"rect","attribs":{"x":"224.031","y":"351.906","width":"63.938","height":"15.984"},"children":[]}]},{"name":"path","attribs":{"d":"M352.016,344.047c0,4.375-3.594,7.969-7.969,7.969h-8.016V368h8.016C357.234,368,368,357.25,368,344.047v-8.016h-15.984\r\n\t\tV344.047z"},"children":[{"name":"path","attribs":{"d":"M352.016,344.047c0,4.375-3.594,7.969-7.969,7.969h-8.016V368h8.016C357.234,368,368,357.25,368,344.047v-8.016h-15.984\r\n\t\tV344.047z"},"children":[]}]}]}]};exports.selectSquare=selectSquare;var setting={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M368,274.672v-37.328h-20.547c-0.75-3.703-2.109-7.156-3.281-10.688l18.141-10.469l-18.672-32.336l-18.094,10.445\r\n\t\t\tc-2.469-2.766-5.078-5.367-7.844-7.828l10.469-18.109l-32.328-18.672l-10.469,18.156c-3.547-1.18-6.984-2.539-10.703-3.297V144\r\n\t\t\th-37.344v20.547c-3.688,0.758-7.141,2.117-10.656,3.281l-10.484-18.141l-32.344,18.656l10.453,18.117\r\n\t\t\tc-2.766,2.461-5.359,5.047-7.828,7.82l-18.109-10.461l-18.672,32.336l18.156,10.469c-1.188,3.547-2.547,7-3.297,10.719H144v37.328\r\n\t\t\th20.547c0.75,3.703,2.109,7.156,3.281,10.672l-18.172,10.5l18.672,32.344l18.141-10.469c2.469,2.781,5.062,5.375,7.844,7.828\r\n\t\t\tl-10.469,18.141l32.328,18.672l10.5-18.188c3.516,1.172,6.969,2.547,10.656,3.281V368h37.344v-20.547\r\n\t\t\tc3.688-0.734,7.156-2.109,10.703-3.297l10.469,18.188l32.344-18.672l-10.469-18.141c2.781-2.469,5.359-5.062,7.844-7.844\r\n\t\t\tl18.125,10.469l18.656-32.344l-18.172-10.5c1.172-3.516,2.531-6.938,3.281-10.641H368z M256,312c-30.906,0-56-25.062-56-56\r\n\t\t\tc0-30.906,25.094-56,56-56c30.938,0,56,25.094,56,56C312,286.938,286.938,312,256,312z M256,237.344\r\n\t\t\tc-10.312,0-18.672,8.344-18.672,18.656s8.359,18.672,18.672,18.672s18.672-8.359,18.672-18.672S266.312,237.344,256,237.344z"},"children":[{"name":"path","attribs":{"d":"M368,274.672v-37.328h-20.547c-0.75-3.703-2.109-7.156-3.281-10.688l18.141-10.469l-18.672-32.336l-18.094,10.445\r\n\t\t\tc-2.469-2.766-5.078-5.367-7.844-7.828l10.469-18.109l-32.328-18.672l-10.469,18.156c-3.547-1.18-6.984-2.539-10.703-3.297V144\r\n\t\t\th-37.344v20.547c-3.688,0.758-7.141,2.117-10.656,3.281l-10.484-18.141l-32.344,18.656l10.453,18.117\r\n\t\t\tc-2.766,2.461-5.359,5.047-7.828,7.82l-18.109-10.461l-18.672,32.336l18.156,10.469c-1.188,3.547-2.547,7-3.297,10.719H144v37.328\r\n\t\t\th20.547c0.75,3.703,2.109,7.156,3.281,10.672l-18.172,10.5l18.672,32.344l18.141-10.469c2.469,2.781,5.062,5.375,7.844,7.828\r\n\t\t\tl-10.469,18.141l32.328,18.672l10.5-18.188c3.516,1.172,6.969,2.547,10.656,3.281V368h37.344v-20.547\r\n\t\t\tc3.688-0.734,7.156-2.109,10.703-3.297l10.469,18.188l32.344-18.672l-10.469-18.141c2.781-2.469,5.359-5.062,7.844-7.844\r\n\t\t\tl18.125,10.469l18.656-32.344l-18.172-10.5c1.172-3.516,2.531-6.938,3.281-10.641H368z M256,312c-30.906,0-56-25.062-56-56\r\n\t\t\tc0-30.906,25.094-56,56-56c30.938,0,56,25.094,56,56C312,286.938,286.938,312,256,312z M256,237.344\r\n\t\t\tc-10.312,0-18.672,8.344-18.672,18.656s8.359,18.672,18.672,18.672s18.672-8.359,18.672-18.672S266.312,237.344,256,237.344z"},"children":[]}]}]}]}]}]};exports.setting=setting;var settings={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M261.078,275.656l18.578-18.594l-24.719-24.734l-18.594,18.594c-2.953-1.547-6.031-2.812-9.25-3.828v-26.297h-34.984\r\n\t\t\tv26.297c-3.219,1.016-6.297,2.281-9.266,3.828l-18.594-18.578l-24.719,24.719l18.594,18.594c-1.562,2.953-2.812,6.031-3.844,9.25\r\n\t\t\tH128v34.984h26.281c1.031,3.219,2.281,6.297,3.844,9.25l-18.594,18.594l24.734,24.734l18.578-18.594\r\n\t\t\tc2.969,1.547,6.031,2.797,9.266,3.828V384h34.984v-26.281c3.219-1.031,6.297-2.297,9.25-3.844l18.594,18.594l24.734-24.734\r\n\t\t\tl-18.594-18.578c1.547-2.969,2.812-6.031,3.828-9.266h26.297v-34.984h-26.297C263.891,281.688,262.625,278.609,261.078,275.656z\r\n\t\t\t M209.594,337.375c-19.312,0-34.969-15.656-34.969-34.969c0-19.328,15.656-34.969,34.969-34.969\r\n\t\t\tc19.328,0,34.969,15.641,34.969,34.969C244.562,321.719,228.922,337.375,209.594,337.375z"},"children":[{"name":"path","attribs":{"d":"M261.078,275.656l18.578-18.594l-24.719-24.734l-18.594,18.594c-2.953-1.547-6.031-2.812-9.25-3.828v-26.297h-34.984\r\n\t\t\tv26.297c-3.219,1.016-6.297,2.281-9.266,3.828l-18.594-18.578l-24.719,24.719l18.594,18.594c-1.562,2.953-2.812,6.031-3.844,9.25\r\n\t\t\tH128v34.984h26.281c1.031,3.219,2.281,6.297,3.844,9.25l-18.594,18.594l24.734,24.734l18.578-18.594\r\n\t\t\tc2.969,1.547,6.031,2.797,9.266,3.828V384h34.984v-26.281c3.219-1.031,6.297-2.297,9.25-3.844l18.594,18.594l24.734-24.734\r\n\t\t\tl-18.594-18.578c1.547-2.969,2.812-6.031,3.828-9.266h26.297v-34.984h-26.297C263.891,281.688,262.625,278.609,261.078,275.656z\r\n\t\t\t M209.594,337.375c-19.312,0-34.969-15.656-34.969-34.969c0-19.328,15.656-34.969,34.969-34.969\r\n\t\t\tc19.328,0,34.969,15.641,34.969,34.969C244.562,321.719,228.922,337.375,209.594,337.375z"},"children":[]}]},{"name":"path","attribs":{"d":"M384,197.281v-24.453h-18.391c-0.703-2.258-1.594-4.406-2.672-6.469l12.969-13.008l-17.281-17.289l-13,13\r\n\t\t\tc-2.047-1.086-4.219-1.969-6.469-2.68V128h-24.438v18.383c-2.25,0.711-4.422,1.602-6.484,2.68l-13-12.992l-17.297,17.289l13,13\r\n\t\t\tc-1.078,2.062-1.969,4.211-2.672,6.469h-18.391v24.453h18.391c0.703,2.258,1.594,4.406,2.672,6.469l-13,13l17.312,17.297\r\n\t\t\tl12.984-13c2.062,1.078,4.219,1.953,6.484,2.672v18.391h24.438v-18.375c2.25-0.719,4.422-1.609,6.469-2.688l13,13l17.312-17.297\r\n\t\t\tl-13-12.984c1.078-2.078,1.969-4.219,2.672-6.484H384z M326.938,209.5c-13.5,0-24.453-10.938-24.453-24.438\r\n\t\t\tc0-13.516,10.953-24.461,24.453-24.461c13.516,0,24.453,10.945,24.453,24.461C351.391,198.562,340.453,209.5,326.938,209.5z"},"children":[{"name":"path","attribs":{"d":"M384,197.281v-24.453h-18.391c-0.703-2.258-1.594-4.406-2.672-6.469l12.969-13.008l-17.281-17.289l-13,13\r\n\t\t\tc-2.047-1.086-4.219-1.969-6.469-2.68V128h-24.438v18.383c-2.25,0.711-4.422,1.602-6.484,2.68l-13-12.992l-17.297,17.289l13,13\r\n\t\t\tc-1.078,2.062-1.969,4.211-2.672,6.469h-18.391v24.453h18.391c0.703,2.258,1.594,4.406,2.672,6.469l-13,13l17.312,17.297\r\n\t\t\tl12.984-13c2.062,1.078,4.219,1.953,6.484,2.672v18.391h24.438v-18.375c2.25-0.719,4.422-1.609,6.469-2.688l13,13l17.312-17.297\r\n\t\t\tl-13-12.984c1.078-2.078,1.969-4.219,2.672-6.484H384z M326.938,209.5c-13.5,0-24.453-10.938-24.453-24.438\r\n\t\t\tc0-13.516,10.953-24.461,24.453-24.461c13.516,0,24.453,10.945,24.453,24.461C351.391,198.562,340.453,209.5,326.938,209.5z"},"children":[]}]}]}]}]}]};exports.settings=settings;var shield={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"path","attribs":{"d":"M367.625,161.469c0,0-37.266,4.281-55.875,0c-17.609-4.031-56.062-33.562-56.203-33.469\r\n\tc-3.766,2.938-38.188,29.531-55.266,33.469c-18.641,4.281-55.906,0-55.906,0S139.719,214.984,163,281.359\r\n\tc22.625,64.453,92.969,102.656,93,102.641c0.031,0.016,70.391-38.188,92.969-102.641\r\n\tC372.266,214.984,367.625,161.469,367.625,161.469z M315.797,271.516C303.984,305.219,275,330.875,256,344.781\r\n\tc-18.969-13.891-48-39.547-59.828-73.25c-10.391-29.625-14.641-56.625-16.312-76.156c11.562-0.094,21.016-1.031,28.875-2.844\r\n\tc13.984-3.203,31.297-13.062,47.234-23.906c25.953,17.344,38.812,21.969,47.328,23.906c7.828,1.812,17.281,2.75,28.844,2.844\r\n\tC330.484,214.891,326.219,241.844,315.797,271.516z"},"children":[]}]};exports.shield=shield;var signFemale={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"path","attribs":{"d":"M272,253.734c27.562-7.141,48-31.953,48-61.734c0-35.344-28.641-64-64-64c-35.344,0-64,28.656-64,64\r\n\tc0,29.781,20.453,54.594,48,61.734V320h-32v32h32v32h32v-32h32v-32h-32V253.734z M256,224c-17.672,0-32-14.312-32-32\r\n\ts14.328-32,32-32s32,14.312,32,32S273.672,224,256,224z"},"children":[]}]};exports.signFemale=signFemale;var signMale={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"path","attribs":{"d":"M293.086,151.031l22.625,22.625l-91,90.984c-9.5-5.609-20.469-9.047-32.312-9.047c-35.344,0-64,28.656-64,64\r\n\ts28.656,64,64,64c35.359,0,64-28.656,64-64c0-11.859-3.438-22.812-9.062-32.328l91-90.984l22.625,22.625l22.641-90.5\r\n\tL293.086,151.031z M192.398,351.594c-17.672,0-32-14.312-32-32s14.328-32,32-32s32,14.312,32,32S210.07,351.594,192.398,351.594z"},"children":[]}]};exports.signMale=signMale;var slidersVertical={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"path","attribs":{"d":"M176,328c0,13.25-10.75,24-24,24s-24-10.75-24-24s10.75-24,24-24S176,314.75,176,328z"},"children":[{"name":"path","attribs":{"d":"M176,328c0,13.25-10.75,24-24,24s-24-10.75-24-24s10.75-24,24-24S176,314.75,176,328z"},"children":[]}]},{"name":"path","attribs":{"d":"M384,280c0,13.25-10.75,24-24,24s-24-10.75-24-24s10.75-24,24-24S384,266.75,384,280z"},"children":[{"name":"path","attribs":{"d":"M384,280c0,13.25-10.75,24-24,24s-24-10.75-24-24s10.75-24,24-24S384,266.75,384,280z"},"children":[]}]},{"name":"path","attribs":{"d":"M240,184c0,13.25-10.75,24-24,24s-24-10.75-24-24s10.75-24,24-24S240,170.75,240,184z"},"children":[{"name":"path","attribs":{"d":"M240,184c0,13.25-10.75,24-24,24s-24-10.75-24-24s10.75-24,24-24S240,170.75,240,184z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M208,223.188V384h16V223.188c-2.594,0.531-5.25,0.812-8,0.812S210.594,223.719,208,223.188z"},"children":[{"name":"path","attribs":{"d":"M208,223.188V384h16V223.188c-2.594,0.531-5.25,0.812-8,0.812S210.594,223.719,208,223.188z"},"children":[]}]},{"name":"path","attribs":{"d":"M224,144.812V128h-16v16.812c2.594-0.531,5.25-0.812,8-0.812S221.406,144.281,224,144.812z"},"children":[{"name":"path","attribs":{"d":"M224,144.812V128h-16v16.812c2.594-0.531,5.25-0.812,8-0.812S221.406,144.281,224,144.812z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M352,319.188V384h16v-64.812c-2.594,0.531-5.266,0.812-8,0.812S354.594,319.719,352,319.188z"},"children":[{"name":"path","attribs":{"d":"M352,319.188V384h16v-64.812c-2.594,0.531-5.266,0.812-8,0.812S354.594,319.719,352,319.188z"},"children":[]}]},{"name":"path","attribs":{"d":"M368,240.812V128h-16v112.812c2.594-0.531,5.266-0.812,8-0.812S365.406,240.281,368,240.812z"},"children":[{"name":"path","attribs":{"d":"M368,240.812V128h-16v112.812c2.594-0.531,5.266-0.812,8-0.812S365.406,240.281,368,240.812z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M144,367.188V384h16v-16.812c-2.594,0.531-5.25,0.812-8,0.812S146.594,367.719,144,367.188z"},"children":[{"name":"path","attribs":{"d":"M144,367.188V384h16v-16.812c-2.594,0.531-5.25,0.812-8,0.812S146.594,367.719,144,367.188z"},"children":[]}]},{"name":"path","attribs":{"d":"M160,288.812V128h-16v160.812c2.594-0.531,5.25-0.812,8-0.812S157.406,288.281,160,288.812z"},"children":[{"name":"path","attribs":{"d":"M160,288.812V128h-16v160.812c2.594-0.531,5.25-0.812,8-0.812S157.406,288.281,160,288.812z"},"children":[]}]}]}]},{"name":"path","attribs":{"d":"M320,224c0,13.266-10.75,24-24,24s-24-10.734-24-24c0-13.25,10.75-24,24-24S320,210.75,320,224z"},"children":[{"name":"path","attribs":{"d":"M320,224c0,13.266-10.75,24-24,24s-24-10.734-24-24c0-13.25,10.75-24,24-24S320,210.75,320,224z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M304,184.812V128h-16v56.812c2.594-0.531,5.266-0.812,8-0.812S301.406,184.281,304,184.812z"},"children":[{"name":"path","attribs":{"d":"M304,184.812V128h-16v56.812c2.594-0.531,5.266-0.812,8-0.812S301.406,184.281,304,184.812z"},"children":[]}]},{"name":"path","attribs":{"d":"M288,263.188V384h16V263.188c-2.594,0.531-5.266,0.812-8,0.812S290.594,263.719,288,263.188z"},"children":[{"name":"path","attribs":{"d":"M288,263.188V384h16V263.188c-2.594,0.531-5.266,0.812-8,0.812S290.594,263.719,288,263.188z"},"children":[]}]}]}]}]}]};exports.slidersVertical=slidersVertical;var sliders={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"path","attribs":{"d":"M336,176c-13.266,0-24-10.75-24-24s10.734-24,24-24c13.25,0,24,10.75,24,24S349.25,176,336,176z"},"children":[{"name":"path","attribs":{"d":"M336,176c-13.266,0-24-10.75-24-24s10.734-24,24-24c13.25,0,24,10.75,24,24S349.25,176,336,176z"},"children":[]}]},{"name":"path","attribs":{"d":"M288,240c-13.266,0-24-10.75-24-24s10.734-24,24-24c13.25,0,24,10.75,24,24S301.25,240,288,240z"},"children":[{"name":"path","attribs":{"d":"M288,240c-13.266,0-24-10.75-24-24s10.734-24,24-24c13.25,0,24,10.75,24,24S301.25,240,288,240z"},"children":[]}]},{"name":"path","attribs":{"d":"M232,320c-13.266,0-24-10.75-24-24s10.734-24,24-24c13.25,0,24,10.75,24,24S245.25,320,232,320z"},"children":[{"name":"path","attribs":{"d":"M232,320c-13.266,0-24-10.75-24-24s10.734-24,24-24c13.25,0,24,10.75,24,24S245.25,320,232,320z"},"children":[]}]},{"name":"path","attribs":{"d":"M176,384c-13.266,0-24-10.75-24-24s10.734-24,24-24c13.25,0,24,10.75,24,24S189.25,384,176,384z"},"children":[{"name":"path","attribs":{"d":"M176,384c-13.266,0-24-10.75-24-24s10.734-24,24-24c13.25,0,24,10.75,24,24S189.25,384,176,384z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M296.812,144H128v16h168.812c-0.531-2.594-0.812-5.25-0.812-8S296.281,146.594,296.812,144z"},"children":[{"name":"path","attribs":{"d":"M296.812,144H128v16h168.812c-0.531-2.594-0.812-5.25-0.812-8S296.281,146.594,296.812,144z"},"children":[]}]},{"name":"path","attribs":{"d":"M384,144h-8.812c0.531,2.594,0.812,5.25,0.812,8s-0.281,5.406-0.812,8H384V144z"},"children":[{"name":"path","attribs":{"d":"M384,144h-8.812c0.531,2.594,0.812,5.25,0.812,8s-0.281,5.406-0.812,8H384V144z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M248.812,208H128v16h120.812c-0.531-2.594-0.812-5.25-0.812-8S248.281,210.594,248.812,208z"},"children":[{"name":"path","attribs":{"d":"M248.812,208H128v16h120.812c-0.531-2.594-0.812-5.25-0.812-8S248.281,210.594,248.812,208z"},"children":[]}]},{"name":"path","attribs":{"d":"M384,208h-56.812c0.531,2.594,0.812,5.25,0.812,8s-0.281,5.406-0.812,8H384V208z"},"children":[{"name":"path","attribs":{"d":"M384,208h-56.812c0.531,2.594,0.812,5.25,0.812,8s-0.281,5.406-0.812,8H384V208z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M192.812,288H128v16h64.812c-0.531-2.594-0.812-5.266-0.812-8S192.281,290.594,192.812,288z"},"children":[{"name":"path","attribs":{"d":"M192.812,288H128v16h64.812c-0.531-2.594-0.812-5.266-0.812-8S192.281,290.594,192.812,288z"},"children":[]}]},{"name":"path","attribs":{"d":"M384,288H271.188c0.531,2.594,0.812,5.266,0.812,8s-0.281,5.406-0.812,8H384V288z"},"children":[{"name":"path","attribs":{"d":"M384,288H271.188c0.531,2.594,0.812,5.266,0.812,8s-0.281,5.406-0.812,8H384V288z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M136.812,352H128v16h8.812c-0.531-2.594-0.812-5.266-0.812-8S136.281,354.594,136.812,352z"},"children":[{"name":"path","attribs":{"d":"M136.812,352H128v16h8.812c-0.531-2.594-0.812-5.266-0.812-8S136.281,354.594,136.812,352z"},"children":[]}]},{"name":"path","attribs":{"d":"M384,352H215.188c0.531,2.594,0.812,5.266,0.812,8s-0.281,5.406-0.812,8H384V352z"},"children":[{"name":"path","attribs":{"d":"M384,352H215.188c0.531,2.594,0.812,5.266,0.812,8s-0.281,5.406-0.812,8H384V352z"},"children":[]}]}]}]}]}]};exports.sliders=sliders;var snow={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"path","attribs":{"d":"M357.498,285l-26.094-15.062c0.828-4.531,1.391-9.172,1.391-13.938c0-4.781-0.562-9.438-1.438-13.969l26.109-15.078\r\n\tc12.266-7.109,16.438-22.75,9.375-34.953c-7.078-12.25-22.688-16.453-34.938-9.406l-26.359,15.219\r\n\tc-7.047-6-15.078-10.719-23.953-13.875v-30.344c0-14.125-11.438-25.594-25.594-25.594c-14.141,0-25.594,11.469-25.594,25.594v30.312\r\n\tc-8.875,3.156-16.906,7.891-23.969,13.891l-26.281-15.172c-12.25-7.078-27.938-2.891-35,9.359\r\n\tc-7.062,12.234-2.859,27.891,9.391,34.953l26.047,15.047c-0.844,4.547-1.406,9.219-1.406,14.016c0,4.766,0.562,9.406,1.406,13.953\r\n\tL154.529,285c-12.266,7.062-16.469,22.75-9.375,35c7.031,12.203,22.703,16.406,34.969,9.344l26.281-15.172\r\n\tc7.031,6,15.094,10.766,24,13.922v30.312c0,14.141,11.453,25.594,25.594,25.594c14.157,0,25.594-11.453,25.594-25.594v-30.344\r\n\tc8.906-3.156,16.953-7.891,23.969-13.906l26.344,15.188c12.25,7.062,27.891,2.859,34.938-9.344\r\n\tC373.936,307.75,369.748,292.094,357.498,285z M230.404,256c0-14.125,11.438-25.594,25.594-25.594\r\n\tc14.125,0,25.594,11.469,25.594,25.594s-11.469,25.594-25.594,25.594C241.841,281.594,230.404,270.125,230.404,256z"},"children":[]}]};exports.snow=snow;var social500px={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"path","attribs":{"d":"M367.922,210.203c-5.094-5.641-11.391-10.109-18.828-13.359c-7.453-3.219-15.859-4.844-25.188-4.844\r\n\t\tc-7.438,0-14.344,1.172-20.766,3.469c-6.391,2.328-12.328,5.375-17.781,9.203c-5.484,3.797-10.625,8.266-15.391,13.359\r\n\t\tc-4.781,5.062-9.375,10.281-13.781,15.594c-4.672-5.562-9.375-10.812-14.156-15.781s-9.906-9.375-15.359-13.172\r\n\t\tc-5.484-3.828-11.422-6.875-17.828-9.203c-6.406-2.297-13.438-3.469-21.125-3.469c-9.312,0-17.688,1.688-25.156,5.031\r\n\t\tc-7.438,3.359-13.75,7.875-18.859,13.531c-5.125,5.656-9.016,12.375-11.688,20.125c-2.703,7.75-4.016,16.125-4.016,25.125\r\n\t\tc0,9.047,1.406,17.484,4.188,25.328c2.781,7.875,6.875,14.641,12.234,20.281c5.344,5.719,11.766,10.219,19.203,13.547\r\n\t\tc7.438,3.375,15.938,5.031,25.5,5.031c7.688,0,14.594-1.141,20.781-3.312c6.156-2.188,11.875-5.047,17.109-8.656\r\n\t\tc5.234-3.594,10.172-7.734,14.828-12.469c4.656-4.75,9.438-9.703,14.344-14.75c4.406,5.047,9.062,10,13.969,14.75\r\n\t\tc4.875,4.734,10.047,8.875,15.516,12.469c5.469,3.609,11.375,6.469,17.672,8.656c6.297,2.172,13.016,3.312,20.25,3.312\r\n\t\tc9.266,0,17.75-1.656,25.266-5.031c7.594-3.328,13.969-7.984,19.062-13.828c5.141-5.953,9.094-12.797,11.891-20.703\r\n\t\tc2.828-7.797,4.188-16.312,4.188-25.312c0-9.016-1.359-17.328-4.188-24.969C377.016,222.531,373.062,215.875,367.922,210.203z\r\n\t\t M225.797,266.75c-3.484,3.391-7.234,6.391-11.188,9.031c-3.953,2.625-8.172,4.859-12.562,6.578\r\n\t\tc-4.438,1.781-8.859,2.594-13.266,2.594c-8.625,0-15.375-2.641-20.266-7.969s-7.328-12.125-7.328-20.453\r\n\t\tc0-7.641,2.375-14.516,7.141-20.656c4.766-6.125,11.234-9.188,19.391-9.188c4.422,0,8.844,1,13.281,2.953\r\n\t\tc4.422,1.953,8.672,4.453,12.734,7.453c4.078,3,7.969,6.312,11.703,9.875c3.734,3.594,7,6.891,9.781,9.891\r\n\t\tC232.438,260.094,229.281,263.391,225.797,266.75z M344.156,276.641c-4.625,5.531-11.297,8.312-19.875,8.312\r\n\t\tc-4.922,0-9.484-0.812-13.812-2.406c-4.312-1.641-8.422-3.766-12.375-6.406c-3.953-2.688-7.734-5.703-11.234-9\r\n\t\tc-3.469-3.391-6.734-6.828-9.734-10.281c2.781-3,5.953-6.297,9.438-9.891c3.5-3.562,7.156-6.875,11-9.875\r\n\t\tc3.797-3,7.906-5.5,12.219-7.453c4.328-1.953,8.812-2.953,13.438-2.953c8.641,0,15.422,2.875,20.422,8.672\r\n\t\ts7.516,12.703,7.516,20.828C351.156,264.281,348.859,271.109,344.156,276.641z"},"children":[{"name":"path","attribs":{"d":"M367.922,210.203c-5.094-5.641-11.391-10.109-18.828-13.359c-7.453-3.219-15.859-4.844-25.188-4.844\r\n\t\tc-7.438,0-14.344,1.172-20.766,3.469c-6.391,2.328-12.328,5.375-17.781,9.203c-5.484,3.797-10.625,8.266-15.391,13.359\r\n\t\tc-4.781,5.062-9.375,10.281-13.781,15.594c-4.672-5.562-9.375-10.812-14.156-15.781s-9.906-9.375-15.359-13.172\r\n\t\tc-5.484-3.828-11.422-6.875-17.828-9.203c-6.406-2.297-13.438-3.469-21.125-3.469c-9.312,0-17.688,1.688-25.156,5.031\r\n\t\tc-7.438,3.359-13.75,7.875-18.859,13.531c-5.125,5.656-9.016,12.375-11.688,20.125c-2.703,7.75-4.016,16.125-4.016,25.125\r\n\t\tc0,9.047,1.406,17.484,4.188,25.328c2.781,7.875,6.875,14.641,12.234,20.281c5.344,5.719,11.766,10.219,19.203,13.547\r\n\t\tc7.438,3.375,15.938,5.031,25.5,5.031c7.688,0,14.594-1.141,20.781-3.312c6.156-2.188,11.875-5.047,17.109-8.656\r\n\t\tc5.234-3.594,10.172-7.734,14.828-12.469c4.656-4.75,9.438-9.703,14.344-14.75c4.406,5.047,9.062,10,13.969,14.75\r\n\t\tc4.875,4.734,10.047,8.875,15.516,12.469c5.469,3.609,11.375,6.469,17.672,8.656c6.297,2.172,13.016,3.312,20.25,3.312\r\n\t\tc9.266,0,17.75-1.656,25.266-5.031c7.594-3.328,13.969-7.984,19.062-13.828c5.141-5.953,9.094-12.797,11.891-20.703\r\n\t\tc2.828-7.797,4.188-16.312,4.188-25.312c0-9.016-1.359-17.328-4.188-24.969C377.016,222.531,373.062,215.875,367.922,210.203z\r\n\t\t M225.797,266.75c-3.484,3.391-7.234,6.391-11.188,9.031c-3.953,2.625-8.172,4.859-12.562,6.578\r\n\t\tc-4.438,1.781-8.859,2.594-13.266,2.594c-8.625,0-15.375-2.641-20.266-7.969s-7.328-12.125-7.328-20.453\r\n\t\tc0-7.641,2.375-14.516,7.141-20.656c4.766-6.125,11.234-9.188,19.391-9.188c4.422,0,8.844,1,13.281,2.953\r\n\t\tc4.422,1.953,8.672,4.453,12.734,7.453c4.078,3,7.969,6.312,11.703,9.875c3.734,3.594,7,6.891,9.781,9.891\r\n\t\tC232.438,260.094,229.281,263.391,225.797,266.75z M344.156,276.641c-4.625,5.531-11.297,8.312-19.875,8.312\r\n\t\tc-4.922,0-9.484-0.812-13.812-2.406c-4.312-1.641-8.422-3.766-12.375-6.406c-3.953-2.688-7.734-5.703-11.234-9\r\n\t\tc-3.469-3.391-6.734-6.828-9.734-10.281c2.781-3,5.953-6.297,9.438-9.891c3.5-3.562,7.156-6.875,11-9.875\r\n\t\tc3.797-3,7.906-5.5,12.219-7.453c4.328-1.953,8.812-2.953,13.438-2.953c8.641,0,15.422,2.875,20.422,8.672\r\n\t\ts7.516,12.703,7.516,20.828C351.156,264.281,348.859,271.109,344.156,276.641z"},"children":[]}]}]}]};exports.social500px=social500px;var socialAddthis={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"polygon","attribs":{"points":"287.5,128.5 223.5,128.5 223.5,224.5 127.5,224.5 127.5,288.5 223.5,288.5 223.5,384.5 287.5,384.5 287.5,288.5 \r\n\t383.5,288.5 383.5,224.5 287.5,224.5 "},"children":[]}]};exports.socialAddthis=socialAddthis;var socialBebo={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"path","attribs":{"d":"M268.438,384h-24.875C188.656,384,144,338.047,144,281.594v-128C144,139.453,155.125,128,168.891,128\r\n\tc13.734,0,24.891,11.453,24.891,25.594v128c0,28.234,22.344,51.203,49.781,51.203h24.875c27.453,0,49.781-20.094,49.781-44.797\r\n\tc0-25.25-13.391-44.797-24.875-44.797h-49.781c-13.766,0-24.906-11.484-24.906-25.609c0-14.141,11.141-25.594,24.906-25.594h49.781\r\n\tC334.5,192,368,235.047,368,288C368,340.922,323.328,384,268.438,384z"},"children":[]}]};exports.socialBebo=socialBebo;var socialBehance={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M242.531,192.656c4.719,6.594,7.094,14.547,7.094,23.797c0,9.516-2.406,17.203-7.156,23\r\n\t\t\t\tc-2.688,3.234-6.578,6.203-11.75,8.859c7.859,2.922,13.797,7.484,17.812,13.766c4,6.328,6,13.922,6,22.891\r\n\t\t\t\tc0,9.25-2.281,17.531-6.875,24.859c-2.906,4.891-6.531,8.969-10.906,12.344c-4.906,3.797-10.75,6.375-17.422,7.812\r\n\t\t\t\tc-6.703,1.375-13.969,2.078-21.797,2.078H128V176h74.578C221.375,176.266,234.719,181.812,242.531,192.656z M158.781,203.141\r\n\t\t\t\tv34.375h37.5c6.688,0,12.109-1.281,16.328-3.844c4.141-2.609,6.25-7.172,6.25-13.719c0-7.297-2.766-12.047-8.281-14.406\r\n\t\t\t\tc-4.75-1.625-10.859-2.406-18.234-2.406H158.781z M158.781,263.406v41.578h37.438c6.688,0,11.906-0.953,15.625-2.766\r\n\t\t\t\tc6.781-3.406,10.156-9.906,10.156-19.484c0-8.141-3.281-13.703-9.844-16.734c-3.656-1.688-8.781-2.562-15.406-2.594H158.781z"},"children":[{"name":"path","attribs":{"d":"M242.531,192.656c4.719,6.594,7.094,14.547,7.094,23.797c0,9.516-2.406,17.203-7.156,23\r\n\t\t\t\tc-2.688,3.234-6.578,6.203-11.75,8.859c7.859,2.922,13.797,7.484,17.812,13.766c4,6.328,6,13.922,6,22.891\r\n\t\t\t\tc0,9.25-2.281,17.531-6.875,24.859c-2.906,4.891-6.531,8.969-10.906,12.344c-4.906,3.797-10.75,6.375-17.422,7.812\r\n\t\t\t\tc-6.703,1.375-13.969,2.078-21.797,2.078H128V176h74.578C221.375,176.266,234.719,181.812,242.531,192.656z M158.781,203.141\r\n\t\t\t\tv34.375h37.5c6.688,0,12.109-1.281,16.328-3.844c4.141-2.609,6.25-7.172,6.25-13.719c0-7.297-2.766-12.047-8.281-14.406\r\n\t\t\t\tc-4.75-1.625-10.859-2.406-18.234-2.406H158.781z M158.781,263.406v41.578h37.438c6.688,0,11.906-0.953,15.625-2.766\r\n\t\t\t\tc6.781-3.406,10.156-9.906,10.156-19.484c0-8.141-3.281-13.703-9.844-16.734c-3.656-1.688-8.781-2.562-15.406-2.594H158.781z"},"children":[]}]},{"name":"path","attribs":{"d":"M354.156,218.984c7.969,3.625,14.547,9.297,19.75,17.078c4.641,6.906,7.688,14.844,9.094,23.891\r\n\t\t\t\tc0.781,5.281,1.109,12.891,0.969,22.859h-83.094c0.469,11.625,4.469,19.719,11.969,24.391c4.531,2.891,10.016,4.328,16.406,4.328\r\n\t\t\t\tc6.797,0,12.328-1.766,16.547-5.297c2.344-1.906,4.375-4.516,6.172-7.938h30.438c-0.797,6.812-4.5,13.797-11.062,20.891\r\n\t\t\t\tC361.125,330.359,346.812,336,328.422,336c-15.172,0-28.547-4.734-40.172-14.203c-11.594-9.484-17.375-24.859-17.375-46.219\r\n\t\t\t\tc0-19.969,5.219-35.328,15.719-46c10.453-10.656,24.047-16.016,40.766-16.016C337.281,213.562,346.219,215.422,354.156,218.984z\r\n\t\t\t\t M309.562,245.062c-4.219,4.422-6.844,10.359-7.938,17.906H353c-0.547-8.031-3.203-14.141-7.969-18.266\r\n\t\t\t\tc-4.734-4.141-10.625-6.219-17.656-6.219C319.719,238.484,313.766,240.703,309.562,245.062z"},"children":[{"name":"path","attribs":{"d":"M354.156,218.984c7.969,3.625,14.547,9.297,19.75,17.078c4.641,6.906,7.688,14.844,9.094,23.891\r\n\t\t\t\tc0.781,5.281,1.109,12.891,0.969,22.859h-83.094c0.469,11.625,4.469,19.719,11.969,24.391c4.531,2.891,10.016,4.328,16.406,4.328\r\n\t\t\t\tc6.797,0,12.328-1.766,16.547-5.297c2.344-1.906,4.375-4.516,6.172-7.938h30.438c-0.797,6.812-4.5,13.797-11.062,20.891\r\n\t\t\t\tC361.125,330.359,346.812,336,328.422,336c-15.172,0-28.547-4.734-40.172-14.203c-11.594-9.484-17.375-24.859-17.375-46.219\r\n\t\t\t\tc0-19.969,5.219-35.328,15.719-46c10.453-10.656,24.047-16.016,40.766-16.016C337.281,213.562,346.219,215.422,354.156,218.984z\r\n\t\t\t\t M309.562,245.062c-4.219,4.422-6.844,10.359-7.938,17.906H353c-0.547-8.031-3.203-14.141-7.969-18.266\r\n\t\t\t\tc-4.734-4.141-10.625-6.219-17.656-6.219C319.719,238.484,313.766,240.703,309.562,245.062z"},"children":[]}]}]}]},{"name":"rect","attribs":{"x":"288","y":"192","width":"80","height":"16"},"children":[{"name":"rect","attribs":{"x":"288","y":"192","width":"80","height":"16"},"children":[]}]}]}]}]}]};exports.socialBehance=socialBehance;var socialBlogger={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"path","attribs":{"d":"M365.953,224.344h-9.734l0,0c0,0-1.734,0-2.016,0c-15.969,0-18.734-14.188-18.734-14.188l0.375,0.266\r\n\tc-1.875-45.797-36.672-82.156-84.219-82.453v0.062h-38.562h0.562c-47.391,0.297-85.625,38.062-85.625,85.5c0,0.188,0-0.172,0-0.172\r\n\tl0,0v85.344l0,0c0,47.406,38.031,85.016,85.594,85.297v0.031h85.578v-0.062C341.969,383.094,384,346.109,384,298.703l0,0v-57.516\r\n\tC384,232.094,375.094,224.344,365.953,224.344z M208.812,191.625c0.125,0,0.031,0.016,0.031,0.016l0,0l47.531,0.016v-0.016\r\n\tc9.5,0.203,15.562,8.859,15.562,17.234s-6.062,15.469-15.562,15.469l0,0h-47.531c0,0-0.469,0-0.594,0\r\n\tc-8.531,0-17.188-7.219-17.188-15.719S200.312,191.625,208.812,191.625z M296.656,320.656L296.656,320.656h-87.812v-0.5\r\n\tc0,0-0.469,0-0.594,0c-8.531,0-17.047-8.188-17.047-16.703c0-8.5,8.484-15.25,17.016-15.25c0.125,0,0.469,0,0.469,0h-0.031h89h-0.25\r\n\tc9.531,0,14.562,7.594,14.562,15.984C311.969,312.562,306.172,320.656,296.656,320.656z"},"children":[]}]};exports.socialBlogger=socialBlogger;var socialDeviantart={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"path","attribs":{"d":"M220.75,223.578c57.953-18.891,106.375,19.672,106.375,19.672l-39.906,12.188l-11.5-24.188\r\n\tc-10.812-2.219-23.094-2.938-36.203-0.438l27.141,62.469L384,255c0,0-42.562-75.617-169.484-51.172\r\n\tc-0.734,0.141-1.406,0.344-2.141,0.453L200.062,176l-36.531,4.703l14.906,34.453C101.406,251.125,135.531,336,135.531,336\r\n\tl117.516-38.281L220.75,223.578z M167.312,292.062c0,0-11.312-28.312,21.625-52.562l17.531,40.594L167.312,292.062z"},"children":[]}]};exports.socialDeviantart=socialDeviantart;var socialDigg={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M284.643,227.531h42.422c7.844,0,14.234-6.375,14.234-14.234v-42.719\r\n\t\t\tc0-7.859-6.391-14.234-14.234-14.234h-42.422c-7.875,0-14.25,6.375-14.25,14.234v42.719\r\n\t\t\tC270.393,221.156,276.768,227.531,284.643,227.531z M171.908,183.625c-45.094,0-43.906,27.891-43.906,27.891V256\r\n\t\t\tc0,11.875,14.25,14.25,14.25,14.25h14.219v43.719c-16.25,1.969-27.562,10.469-27.562,20.656c0,11.625,22.156,21.031,41.812,21.031\r\n\t\t\ts41.844-8.5,41.844-20.156c0-10.031-11.625-19.344-27.516-21.438l-0.078-43.812h13.625c13.656,0,14.844-14.25,14.844-14.25\r\n\t\t\tv-45.078C213.439,183.625,171.908,183.625,171.908,183.625z M383.127,212.688c0-14.219-14.25-14.219-14.25-14.219h-13.062v37.062\r\n\t\t\tc0,8.906-7.109,6.531-7.109,6.531h-87.5c-6.547,0-6.547-6.531-6.547-6.531l0.312-35.875l-13.734-1.312\r\n\t\t\tc-15.141,0-13.547,14.656-13.547,14.656v28.781c0,0-2.125,14.219,12.125,14.219h16.328v86.031\r\n\t\t\tc0,14.844,13.657,13.062,13.657,13.062h15.422c14.25,0,13.656-13.656,13.656-13.656v-42.719c0-7.688,7.109-9.781,7.109-9.781\r\n\t\t\tc4.156,0,6.531,9.188,6.531,9.188v42.75c0,14.781,19.578,14.781,19.578,14.781h7.422c14.234,0,15.391-13.625,15.391-13.625\r\n\t\t\tL355.814,256h12.469c14.219,0,15.719-15.422,15.719-15.422L383.127,212.688z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M284.643,227.531h42.422c7.844,0,14.234-6.375,14.234-14.234v-42.719\r\n\t\t\tc0-7.859-6.391-14.234-14.234-14.234h-42.422c-7.875,0-14.25,6.375-14.25,14.234v42.719\r\n\t\t\tC270.393,221.156,276.768,227.531,284.643,227.531z M171.908,183.625c-45.094,0-43.906,27.891-43.906,27.891V256\r\n\t\t\tc0,11.875,14.25,14.25,14.25,14.25h14.219v43.719c-16.25,1.969-27.562,10.469-27.562,20.656c0,11.625,22.156,21.031,41.812,21.031\r\n\t\t\ts41.844-8.5,41.844-20.156c0-10.031-11.625-19.344-27.516-21.438l-0.078-43.812h13.625c13.656,0,14.844-14.25,14.844-14.25\r\n\t\t\tv-45.078C213.439,183.625,171.908,183.625,171.908,183.625z M383.127,212.688c0-14.219-14.25-14.219-14.25-14.219h-13.062v37.062\r\n\t\t\tc0,8.906-7.109,6.531-7.109,6.531h-87.5c-6.547,0-6.547-6.531-6.547-6.531l0.312-35.875l-13.734-1.312\r\n\t\t\tc-15.141,0-13.547,14.656-13.547,14.656v28.781c0,0-2.125,14.219,12.125,14.219h16.328v86.031\r\n\t\t\tc0,14.844,13.657,13.062,13.657,13.062h15.422c14.25,0,13.656-13.656,13.656-13.656v-42.719c0-7.688,7.109-9.781,7.109-9.781\r\n\t\t\tc4.156,0,6.531,9.188,6.531,9.188v42.75c0,14.781,19.578,14.781,19.578,14.781h7.422c14.234,0,15.391-13.625,15.391-13.625\r\n\t\t\tL355.814,256h12.469c14.219,0,15.719-15.422,15.719-15.422L383.127,212.688z"},"children":[]}]}]}]}]}]};exports.socialDigg=socialDigg;var socialDribbble={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"path","attribs":{"d":"M256,128c-70.688,0.016-128,57.305-128,128c0,70.688,57.312,128,128,128s128-57.312,128-128\r\n\tC384,185.305,326.688,128.016,256,128z M334.422,194.367c12.484,15.852,20.312,35.492,21.297,56.945\r\n\tc-14.453-3.062-28.109-4.562-40.828-4.562l0,0h-0.094c-10.234,0-19.859,0.922-28.922,2.531c-2.219-5.406-4.438-10.594-6.688-15.562\r\n\tC299.375,224.875,318.75,212.281,334.422,194.367z M256,156.141c23.562,0,45.172,8.227,62.281,21.945\r\n\tc-13.094,15.672-30.391,27.008-49.047,35.039c-13.125-25.367-25.797-43.523-34.469-54.609\r\n\tC241.625,157.016,248.703,156.141,256,156.141z M211.875,166.539c6.938,8.188,20.828,26.203,35.641,54.336\r\n\tc-30.141,8.969-60.484,11.062-78.859,11.062c-0.531,0-1.062,0-1.562,0l0,0c-3.094,0-5.75-0.062-7.984-0.125\r\n\tC166.281,203.156,185.906,179.398,211.875,166.539z M156.141,256c0-0.469,0.016-0.938,0.047-1.438\r\n\tc2.844,0.109,6.5,0.203,10.906,0.203l0,0c20.094-0.141,55.156-1.812,90.656-13.031c1.938,4.234,3.844,8.641,5.75,13.234\r\n\tc-23.719,7.922-42.406,20.562-56.219,33.156C193.969,300.25,185,312.234,179.75,320.234C165.031,302.844,156.141,280.5,156.141,256z\r\n\t M256,355.859c-22.234,0-42.719-7.344-59.344-19.688c3.562-5.812,11.125-16.953,23.188-28.5\r\n\tc12.391-11.891,29.516-24.141,51.891-31.422c7.594,21.312,14.469,45.656,19.719,73.078C280.406,353.531,268.484,355.859,256,355.859\r\n\tz M312.516,338.141c-5.062-24.797-11.438-47.141-18.422-67.109c6.484-0.922,13.297-1.453,20.484-1.453h0.25h0.016h0.016\r\n\tc11.906,0,24.984,1.484,39.188,4.703C349.141,300.688,333.844,323.422,312.516,338.141z"},"children":[]}]};exports.socialDribbble=socialDribbble;var socialEmail={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"path","attribs":{"d":"M315.844,198.359c0.172-1.109,0.25-2.141,0.25-3.094c0-8.797-5.5-13.172-16.5-13.172c-5.281,0-8.844,0.906-10.688,2.688\r\n\t\tc-1.875,1.812-3.156,5.391-3.906,10.75c-4.219-5.938-8.469-9.938-12.75-12.016c-3.938-1.891-9.578-2.828-16.875-2.828\r\n\t\tc-18.797,0-35.109,9.562-48.875,28.672c-12.688,17.578-19.016,36.359-19.016,56.328c0,15.594,4.109,29.281,12.344,41.094\r\n\t\tc9.125,13.016,21.062,19.516,35.766,19.516c12.594,0,24.688-4.516,36.266-13.547c5.219,9.031,14.141,13.547,26.734,13.547\r\n\t\tc23.844,0,44.266-10.062,61.219-30.203C375.938,276.938,384,254.906,384,230.031c0-29.75-12.516-54.562-37.547-74.422\r\n\t\tC323.266,137.219,296.75,128,266.844,128c-38.906,0-71.562,12.297-98.016,36.906C141.609,190.281,128,222.656,128,262.062\r\n\t\tc0,40.266,13.953,71.188,41.828,92.781C194.859,374.297,227.688,384,268.344,384c17.312,0,34.188-2.703,50.656-8.141\r\n\t\tc18.062-5.922,32.922-14.359,44.594-25.297c3.766-3.609,7.391-8,10.828-13.156c4.297-6.297,6.422-11.375,6.422-15.234\r\n\t\tc0-2.922-1.016-5.531-3.078-7.828c-2.047-2.281-4.516-3.422-7.359-3.422c-5.391,0-9.922,1.906-13.625,5.672\r\n\t\tc-6.109,6.562-10.656,11.562-13.594,15c-20,17.469-44.844,26.203-74.594,26.203c-31.906,0-57.438-7.828-76.578-23.484\r\n\t\tc-20.922-17.109-31.375-41.625-31.375-73.531c0-30.969,9.938-56.844,29.859-77.625C210.406,162.391,235.484,152,265.703,152\r\n\t\tc23.781,0,43.547,6.75,59.328,20.281c16.906,14.344,25.328,33.438,25.328,57.25c0,12.469-2.125,24.094-6.422,34.828\r\n\t\tc-4.781,12.047-11.719,21.328-20.781,27.859c-6.812,4.891-12.141,7.344-16,7.344c-4.203,0-6.297-1.969-6.297-5.922\r\n\t\tc0-1.641,1.078-9.203,3.281-22.719L315.844,198.359z M267.344,269.578c-7.734,21.453-15.969,32.188-24.688,32.188\r\n\t\tc-13.031,0-19.547-8.312-19.547-24.953c0-12.922,3.734-27.469,11.234-43.688c8.734-19.141,18.672-28.703,29.844-28.703\r\n\t\tc4.625,0,8.062,2.5,10.328,7.484c1.844,3.812,2.766,8.344,2.766,13.594C277.281,236.719,273.984,251.406,267.344,269.578z"},"children":[{"name":"path","attribs":{"d":"M315.844,198.359c0.172-1.109,0.25-2.141,0.25-3.094c0-8.797-5.5-13.172-16.5-13.172c-5.281,0-8.844,0.906-10.688,2.688\r\n\t\tc-1.875,1.812-3.156,5.391-3.906,10.75c-4.219-5.938-8.469-9.938-12.75-12.016c-3.938-1.891-9.578-2.828-16.875-2.828\r\n\t\tc-18.797,0-35.109,9.562-48.875,28.672c-12.688,17.578-19.016,36.359-19.016,56.328c0,15.594,4.109,29.281,12.344,41.094\r\n\t\tc9.125,13.016,21.062,19.516,35.766,19.516c12.594,0,24.688-4.516,36.266-13.547c5.219,9.031,14.141,13.547,26.734,13.547\r\n\t\tc23.844,0,44.266-10.062,61.219-30.203C375.938,276.938,384,254.906,384,230.031c0-29.75-12.516-54.562-37.547-74.422\r\n\t\tC323.266,137.219,296.75,128,266.844,128c-38.906,0-71.562,12.297-98.016,36.906C141.609,190.281,128,222.656,128,262.062\r\n\t\tc0,40.266,13.953,71.188,41.828,92.781C194.859,374.297,227.688,384,268.344,384c17.312,0,34.188-2.703,50.656-8.141\r\n\t\tc18.062-5.922,32.922-14.359,44.594-25.297c3.766-3.609,7.391-8,10.828-13.156c4.297-6.297,6.422-11.375,6.422-15.234\r\n\t\tc0-2.922-1.016-5.531-3.078-7.828c-2.047-2.281-4.516-3.422-7.359-3.422c-5.391,0-9.922,1.906-13.625,5.672\r\n\t\tc-6.109,6.562-10.656,11.562-13.594,15c-20,17.469-44.844,26.203-74.594,26.203c-31.906,0-57.438-7.828-76.578-23.484\r\n\t\tc-20.922-17.109-31.375-41.625-31.375-73.531c0-30.969,9.938-56.844,29.859-77.625C210.406,162.391,235.484,152,265.703,152\r\n\t\tc23.781,0,43.547,6.75,59.328,20.281c16.906,14.344,25.328,33.438,25.328,57.25c0,12.469-2.125,24.094-6.422,34.828\r\n\t\tc-4.781,12.047-11.719,21.328-20.781,27.859c-6.812,4.891-12.141,7.344-16,7.344c-4.203,0-6.297-1.969-6.297-5.922\r\n\t\tc0-1.641,1.078-9.203,3.281-22.719L315.844,198.359z M267.344,269.578c-7.734,21.453-15.969,32.188-24.688,32.188\r\n\t\tc-13.031,0-19.547-8.312-19.547-24.953c0-12.922,3.734-27.469,11.234-43.688c8.734-19.141,18.672-28.703,29.844-28.703\r\n\t\tc4.625,0,8.062,2.5,10.328,7.484c1.844,3.812,2.766,8.344,2.766,13.594C277.281,236.719,273.984,251.406,267.344,269.578z"},"children":[]}]}]}]};exports.socialEmail=socialEmail;var socialEnvato={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"path","attribs":{"d":"M166.531,194.172c-28.344,36.844-29.438,86.891-6.125,124.359c20.969-55.344,47.359-117.625,79.844-173.25\r\n\t\tC209.719,158.562,181.25,175.047,166.531,194.172z"},"children":[{"name":"path","attribs":{"d":"M166.531,194.172c-28.344,36.844-29.438,86.891-6.125,124.359c20.969-55.344,47.359-117.625,79.844-173.25\r\n\t\tC209.719,158.562,181.25,175.047,166.531,194.172z"},"children":[]}]},{"name":"path","attribs":{"d":"M367.781,145.406c-69.641,49.047-129.109,125.984-176.844,204.953c-2.141-1.484,35,17.641,57.25,17.641\r\n\t\tc30.75,0,61.219-13.922,81.797-40.641C371.094,273.859,368.219,128.188,367.781,145.406z"},"children":[{"name":"path","attribs":{"d":"M367.781,145.406c-69.641,49.047-129.109,125.984-176.844,204.953c-2.141-1.484,35,17.641,57.25,17.641\r\n\t\tc30.75,0,61.219-13.922,81.797-40.641C371.094,273.859,368.219,128.188,367.781,145.406z"},"children":[]}]}]}]};exports.socialEnvato=socialEnvato;var socialEvernote={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M208.078,192.031c-0.062-0.25,0-16.016,0-16.016V128l-63.891,64.031h47.922\r\n\t\t\tC192.109,192.031,208.156,192.25,208.078,192.031z M353.438,160.125c-4.812-7.984-29.953-13.375-43-13.375\r\n\t\t\tc-13.031,0-33.625,0-33.625,0s-11.234-15.734-36.516-18.219c-20.406-2-16.234,6.141-16.234,15.469v64.031h-63.906\r\n\t\t\tc0,0-16.156-4.297-16.156,6.844c0,20.672,2.75,87.969,47.375,94.641c52.781,7.906,60.734-5.109,60.734-8\r\n\t\t\tc0-11.984,2.047-26,2.047-26s20.469,24.078,43.781,23.203c22.891-0.875,27.703,14.188,27.703,27.484c0,13.312,0,24.703,0,24.703\r\n\t\t\ts-0.094,9.078-13.828,9.078c-13.719,0-25.391,0-25.391,0s-9.609-1.016-9.609-11.016c0-9.984,6.047-12.656,11.547-12.656\r\n\t\t\tc5.484,0,9.609,0.672,9.609,0.672v-18c0,0-43.125-6.016-43.125,26.672C254.844,378.297,272,384,290.531,384s30.203,0,30.203,0\r\n\t\t\tS368,383.516,368,279.531S358.234,168.125,353.438,160.125z M298.438,250.219c0,0,3.422-13.344,13.719-13.344\r\n\t\t\ts20.188,20.969,20.188,20.969S310.781,250.219,298.438,250.219z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M208.078,192.031c-0.062-0.25,0-16.016,0-16.016V128l-63.891,64.031h47.922\r\n\t\t\tC192.109,192.031,208.156,192.25,208.078,192.031z M353.438,160.125c-4.812-7.984-29.953-13.375-43-13.375\r\n\t\t\tc-13.031,0-33.625,0-33.625,0s-11.234-15.734-36.516-18.219c-20.406-2-16.234,6.141-16.234,15.469v64.031h-63.906\r\n\t\t\tc0,0-16.156-4.297-16.156,6.844c0,20.672,2.75,87.969,47.375,94.641c52.781,7.906,60.734-5.109,60.734-8\r\n\t\t\tc0-11.984,2.047-26,2.047-26s20.469,24.078,43.781,23.203c22.891-0.875,27.703,14.188,27.703,27.484c0,13.312,0,24.703,0,24.703\r\n\t\t\ts-0.094,9.078-13.828,9.078c-13.719,0-25.391,0-25.391,0s-9.609-1.016-9.609-11.016c0-9.984,6.047-12.656,11.547-12.656\r\n\t\t\tc5.484,0,9.609,0.672,9.609,0.672v-18c0,0-43.125-6.016-43.125,26.672C254.844,378.297,272,384,290.531,384s30.203,0,30.203,0\r\n\t\t\tS368,383.516,368,279.531S358.234,168.125,353.438,160.125z M298.438,250.219c0,0,3.422-13.344,13.719-13.344\r\n\t\t\ts20.188,20.969,20.188,20.969S310.781,250.219,298.438,250.219z"},"children":[]}]}]}]}]}]};exports.socialEvernote=socialEvernote;var socialFacebook={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M316.75,216.812h-44.531v-32.5c0-9.969,10.312-12.281,15.125-12.281\r\n\tc4.781,0,28.766,0,28.766,0v-43.859L283.141,128c-44.984,0-55.25,32.703-55.25,53.672v35.141H195.25V262h32.641\r\n\tc0,58.016,0,122,0,122h44.328c0,0,0-64.641,0-122h37.656L316.75,216.812z"},"children":[]}]};exports.socialFacebook=socialFacebook;var socialFlickr={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\t\tS397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\t\tS397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M320,208c-26.516,0-48,21.484-48,48c0,26.484,21.484,48,48,48\r\n\t\tc26.469,0,48-21.516,48-48C368,229.484,346.469,208,320,208z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M320,208c-26.516,0-48,21.484-48,48c0,26.484,21.484,48,48,48\r\n\t\tc26.469,0,48-21.516,48-48C368,229.484,346.469,208,320,208z"},"children":[]}]},{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M192,208c-26.516,0-48,21.484-48,48c0,26.484,21.484,48,48,48\r\n\t\tc26.484,0,48-21.516,48-48C240,229.484,218.484,208,192,208z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M192,208c-26.516,0-48,21.484-48,48c0,26.484,21.484,48,48,48\r\n\t\tc26.484,0,48-21.516,48-48C240,229.484,218.484,208,192,208z"},"children":[]}]}]}]};exports.socialFlickr=socialFlickr;var socialForrst={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M367.531,375.812L260.578,131.5c-0.891-2.125-2.891-3.5-5.109-3.5l0,0\r\n\tc-2.219,0-4.219,1.375-5.109,3.5L144.469,375.797c-0.75,1.828-0.594,3.922,0.438,5.578c1.031,1.625,2.781,2.625,4.656,2.625H240v-48\r\n\tl-32.016-16v-16L240,320v-48h32v32l32.016-16v16L272,320v16l48.016-32v16L272,352v32h90.438c1.875,0,3.625-0.969,4.656-2.625\r\n\tS368.281,377.625,367.531,375.812z"},"children":[]}]};exports.socialForrst=socialForrst;var socialGithub={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M336.005,128.769c-26.266,14.312-53.359,2.234-72.891,0\r\n\tc-86.234-9.891-113.641,77.734-50.812,112.859c-16.172,7.312-15.109,44.453,2.203,49.734c-40.812,4.078-48.391,54.188-26.5,74.625\r\n\tc26.625,24.844,108.531,23.188,132.547,0c16.766-16.219,19.109-49.625,4.422-65.031c-13.391-14.078-80.562-16.203-79.531-38.266\r\n\tc0.719-15.438,25.016-13,39.766-19.141c27.734-11.547,44.047-46.109,33.141-72.703c6.188-1,11.469-2.797,17.656-3.812\r\n\tC336.005,154.284,336.005,141.534,336.005,128.769z M229.974,209.128c-32.328-61.344,74.344-56.953,41.984,0\r\n\tC261.349,215.972,240.458,216.659,229.974,209.128z M289.63,329.644c2.859,27.5-61.094,28.719-68.5,9.562\r\n\tc-6.219-16.141,1.531-20.719,19.891-24.875C261.817,309.612,287.708,311.237,289.63,329.644z"},"children":[]}]};exports.socialGithub=socialGithub;var socialGooglePlus={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M278.062,135.945c8.719-4.891,12.531-8.062,12.531-8.062h-83.281c-16.688,0-63.031,18.953-63.031,63.203\r\n\t\t\tc0,44.258,48.062,53.758,65.5,53.039c-9.781,11.938-1.406,22.844,3.844,28.422c5.219,5.625,4.156,7.375-2.094,7.375\r\n\t\t\tc-6.281,0-83.625,0.844-83.625,56.219s102.781,59.375,136.562,29.531s26.469-71,0.344-89.594\r\n\t\t\tc-26.125-18.609-35.875-27.391-19.156-42.141s29.969-26.688,29.969-54.086c0-27.406-22.656-41.422-22.656-41.422\r\n\t\t\tS269.344,140.867,278.062,135.945z M265.156,333.328c0,23.891-20.281,35.469-54.719,35.469c-34.469,0-52.938-17.203-52.938-42.844\r\n\t\t\tc0-25.656,25.094-38.297,72.125-38.297C242.375,297.484,265.156,309.422,265.156,333.328z M215.344,233.219\r\n\t\t\tc-41.469,0-60.281-96.898-11.5-96.898C241.812,134.898,270.375,233.219,215.344,233.219z M352.75,160.039v-31.516h-16.281v31.516\r\n\t\t\th-31.875v16.359h31.875v31.57h16.281v-31.57h31.344v-16.359H352.75z"},"children":[{"name":"path","attribs":{"d":"M278.062,135.945c8.719-4.891,12.531-8.062,12.531-8.062h-83.281c-16.688,0-63.031,18.953-63.031,63.203\r\n\t\t\tc0,44.258,48.062,53.758,65.5,53.039c-9.781,11.938-1.406,22.844,3.844,28.422c5.219,5.625,4.156,7.375-2.094,7.375\r\n\t\t\tc-6.281,0-83.625,0.844-83.625,56.219s102.781,59.375,136.562,29.531s26.469-71,0.344-89.594\r\n\t\t\tc-26.125-18.609-35.875-27.391-19.156-42.141s29.969-26.688,29.969-54.086c0-27.406-22.656-41.422-22.656-41.422\r\n\t\t\tS269.344,140.867,278.062,135.945z M265.156,333.328c0,23.891-20.281,35.469-54.719,35.469c-34.469,0-52.938-17.203-52.938-42.844\r\n\t\t\tc0-25.656,25.094-38.297,72.125-38.297C242.375,297.484,265.156,309.422,265.156,333.328z M215.344,233.219\r\n\t\t\tc-41.469,0-60.281-96.898-11.5-96.898C241.812,134.898,270.375,233.219,215.344,233.219z M352.75,160.039v-31.516h-16.281v31.516\r\n\t\t\th-31.875v16.359h31.875v31.57h16.281v-31.57h31.344v-16.359H352.75z"},"children":[]}]}]}]}]}]};exports.socialGooglePlus=socialGooglePlus;var socialGrooveshark={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\t\tS397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\t\tS397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M240.625,128.875c-35.812,3.812-62.344,21.438-80.188,42.109\r\n\t\tc-17.688,20.453-33.062,50.141-32.406,87.234c0.656,36.781,15.5,64.641,34.406,85.219c23,25.078,59.156,43.672,105.25,40.125\r\n\t\tc65.859-5.094,117.734-59.703,116.281-131.359c-0.688-34.078-18.781-66.484-35.078-84.234\r\n\t\tC324.406,141.297,287.891,123.812,240.625,128.875z M307.797,261.219C280.656,226.625,260.094,195,210.562,181\r\n\t\tc1.125,28.75,4.344,60.812-13.031,81.234c-7.812,9.141-23.406,19.312-35.094,14.031c-11.844-5.359-8.5-28.672-5-44.109\r\n\t\tc9.531-42.297,44.594-75.047,91.219-78.219c41.547-2.844,77.359,21.125,93.219,47.125c8.156,13.375,15.578,36.25,15.047,55.156\r\n\t\tC355.75,297.25,324.844,282.984,307.797,261.219z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M240.625,128.875c-35.812,3.812-62.344,21.438-80.188,42.109\r\n\t\tc-17.688,20.453-33.062,50.141-32.406,87.234c0.656,36.781,15.5,64.641,34.406,85.219c23,25.078,59.156,43.672,105.25,40.125\r\n\t\tc65.859-5.094,117.734-59.703,116.281-131.359c-0.688-34.078-18.781-66.484-35.078-84.234\r\n\t\tC324.406,141.297,287.891,123.812,240.625,128.875z M307.797,261.219C280.656,226.625,260.094,195,210.562,181\r\n\t\tc1.125,28.75,4.344,60.812-13.031,81.234c-7.812,9.141-23.406,19.312-35.094,14.031c-11.844-5.359-8.5-28.672-5-44.109\r\n\t\tc9.531-42.297,44.594-75.047,91.219-78.219c41.547-2.844,77.359,21.125,93.219,47.125c8.156,13.375,15.578,36.25,15.047,55.156\r\n\t\tC355.75,297.25,324.844,282.984,307.797,261.219z"},"children":[]}]}]}]};exports.socialGrooveshark=socialGrooveshark;var socialLastFm={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\t\tS397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\t\tS397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M344.5,240.688c-2.234-0.812-4.391-1.562-6.5-2.297\r\n\t\tc-15.922-5.547-25.547-8.891-25.547-22.641c0-11.141,7.781-19.219,18.453-19.219c8.219,0,14.312,3.781,19.781,12.266\r\n\t\tc0.516,0.797,1.5,1.078,2.281,0.609l16.078-9.094c0.438-0.234,0.766-0.688,0.906-1.188c0.141-0.531,0.094-1.078-0.156-1.562\r\n\t\tc-8.625-16.938-21.047-25.188-37.969-25.188c-25.797,0-42.453,17.281-42.453,44.016c0,27.328,16.109,38.406,45.844,49.234\r\n\t\tc17.219,6.359,24.844,9.75,24.844,23.328c0,15.25-12.422,26.234-29.391,25.594c-17.766-0.672-23.156-11.125-29.922-28.203\r\n\t\tc-11.438-28.938-24.484-62.719-24.609-63.062c-13.078-33.422-39.016-52.594-71.141-52.594c-42.469,0-77,38.281-77,85.328\r\n\t\tc0,47.031,34.531,85.297,77,85.297c23.156,0,44.859-11.375,59.547-31.203c0.422-0.594,0.516-1.375,0.25-2.062l-9.703-24.812\r\n\t\tc-0.281-0.688-0.891-1.141-1.562-1.172c-0.719-0.031-1.344,0.391-1.656,1.062c-9.172,19.391-27.125,31.438-46.875,31.438\r\n\t\tc-29.141,0-52.844-26.25-52.844-58.547s23.703-58.547,52.844-58.547c21.188,0,40.625,13.938,48.359,34.75l24.016,60.656l2.75,6.797\r\n\t\tc10.875,28.016,26.797,40.578,51.781,40.688c29.703,0,52.094-21.812,52.094-50.719C384,260.609,369.516,249.719,344.5,240.688z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M344.5,240.688c-2.234-0.812-4.391-1.562-6.5-2.297\r\n\t\tc-15.922-5.547-25.547-8.891-25.547-22.641c0-11.141,7.781-19.219,18.453-19.219c8.219,0,14.312,3.781,19.781,12.266\r\n\t\tc0.516,0.797,1.5,1.078,2.281,0.609l16.078-9.094c0.438-0.234,0.766-0.688,0.906-1.188c0.141-0.531,0.094-1.078-0.156-1.562\r\n\t\tc-8.625-16.938-21.047-25.188-37.969-25.188c-25.797,0-42.453,17.281-42.453,44.016c0,27.328,16.109,38.406,45.844,49.234\r\n\t\tc17.219,6.359,24.844,9.75,24.844,23.328c0,15.25-12.422,26.234-29.391,25.594c-17.766-0.672-23.156-11.125-29.922-28.203\r\n\t\tc-11.438-28.938-24.484-62.719-24.609-63.062c-13.078-33.422-39.016-52.594-71.141-52.594c-42.469,0-77,38.281-77,85.328\r\n\t\tc0,47.031,34.531,85.297,77,85.297c23.156,0,44.859-11.375,59.547-31.203c0.422-0.594,0.516-1.375,0.25-2.062l-9.703-24.812\r\n\t\tc-0.281-0.688-0.891-1.141-1.562-1.172c-0.719-0.031-1.344,0.391-1.656,1.062c-9.172,19.391-27.125,31.438-46.875,31.438\r\n\t\tc-29.141,0-52.844-26.25-52.844-58.547s23.703-58.547,52.844-58.547c21.188,0,40.625,13.938,48.359,34.75l24.016,60.656l2.75,6.797\r\n\t\tc10.875,28.016,26.797,40.578,51.781,40.688c29.703,0,52.094-21.812,52.094-50.719C384,260.609,369.516,249.719,344.5,240.688z"},"children":[]}]}]}]};exports.socialLastFm=socialLastFm;var socialLinkedin={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M128.094,383.891h48v-192h-48V383.891z M320.094,191.891\r\n\t\t\tc-41.094,0.688-61.312,30.641-64,32v-32h-48v192h48v-112c0-4.109,10.125-37,48-32c20.344,1.328,31.312,28.234,32,32v112\r\n\t\t\tl47.812,0.219V251.188C382.219,232,372.625,192.578,320.094,191.891z M152.094,127.891c-13.25,0-24,10.734-24,24s10.75,24,24,24\r\n\t\t\ts24-10.734,24-24S165.344,127.891,152.094,127.891z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M128.094,383.891h48v-192h-48V383.891z M320.094,191.891\r\n\t\t\tc-41.094,0.688-61.312,30.641-64,32v-32h-48v192h48v-112c0-4.109,10.125-37,48-32c20.344,1.328,31.312,28.234,32,32v112\r\n\t\t\tl47.812,0.219V251.188C382.219,232,372.625,192.578,320.094,191.891z M152.094,127.891c-13.25,0-24,10.734-24,24s10.75,24,24,24\r\n\t\t\ts24-10.734,24-24S165.344,127.891,152.094,127.891z"},"children":[]}]}]}]}]}]};exports.socialLinkedin=socialLinkedin;var socialMyspace={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256c0,141.391,114.609,256,256,256c141.391,0,256-114.609,256-256\r\n\tC512,114.609,397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"polygon","attribs":{"points":"352,256 160,256 160,224 128,224 128,288 384,288 384,224 352,224 "},"children":[]}]};exports.socialMyspace=socialMyspace;var socialPaypal={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M212.077,284.562h48.297c46.188,0,84.781-28.469,95.125-76.891C367.202,152.891,327.905,128,294.108,128H178.983\r\n\t\tl-50.984,234.156h67.531L212.077,284.562z M236.233,175.656h33.094c16.547,0,27.594,14.25,22.734,32.016\r\n\t\tc-4.141,17.828-21.344,32.047-38.594,32.047h-31.734L236.233,175.656z"},"children":[{"name":"path","attribs":{"d":"M212.077,284.562h48.297c46.188,0,84.781-28.469,95.125-76.891C367.202,152.891,327.905,128,294.108,128H178.983\r\n\t\tl-50.984,234.156h67.531L212.077,284.562z M236.233,175.656h33.094c16.547,0,27.594,14.25,22.734,32.016\r\n\t\tc-4.141,17.828-21.344,32.047-38.594,32.047h-31.734L236.233,175.656z"},"children":[]}]},{"name":"path","attribs":{"d":"M370.702,172.016c5.297,11.781,7.047,26.578,3.203,44.719c-10.359,48.422-48.953,76.891-95.141,76.891h-48.281\r\n\t\tl-16.547,77.594h-56.75L154.39,384h67.547l16.547-77.562h48.281c46.188,0,84.781-28.469,95.141-76.906\r\n\t\tC387.343,204.047,381.702,185.094,370.702,172.016z"},"children":[{"name":"path","attribs":{"d":"M370.702,172.016c5.297,11.781,7.047,26.578,3.203,44.719c-10.359,48.422-48.953,76.891-95.141,76.891h-48.281\r\n\t\tl-16.547,77.594h-56.75L154.39,384h67.547l16.547-77.562h48.281c46.188,0,84.781-28.469,95.141-76.906\r\n\t\tC387.343,204.047,381.702,185.094,370.702,172.016z"},"children":[]}]}]}]};exports.socialPaypal=socialPaypal;var socialPhotobucket={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M356.781,187.414h-56c-11.641-6.344-30.469-11.406-44.781-11.406c-14.281,0-33.125,5.062-44.781,11.406H200\r\n\t\t\t\tc-0.359-11.562-9.688-11.406-15.25-11.406h-20.375c-5.609,0-9.156,5.922-9.156,11.406c-5.609,0-11.219,3.078-11.219,8.594v119.93\r\n\t\t\t\tc0,5.562,5.609,8.625,11.219,8.625h56C222.875,330.875,241.719,336,256,336c14.312,0,33.141-5.125,44.781-11.438h56\r\n\t\t\t\tc5.641,0,11.219-3.062,11.219-8.625v-119.93C368,190.492,362.422,187.414,356.781,187.414z M155.219,313.094V198.852H200\r\n\t\t\t\tc-16.938,14.648-25.438,33.211-25.438,57.117c0,23.938,8.5,42.531,25.438,57.125H155.219z M292.594,315.938\r\n\t\t\t\tc-5.25,3.094-10.938,5.562-17,7.281c-0.312,0.062-0.672,0.156-1.047,0.281c-2.453,0.656-4.922,1.125-7.453,1.562\r\n\t\t\t\tc-0.703,0.062-1.406,0.219-2.094,0.281c-2.938,0.375-5.953,0.625-9,0.625s-6.062-0.25-9-0.625\r\n\t\t\t\tc-0.688-0.062-1.391-0.219-2.094-0.281c-2.531-0.438-5.031-0.906-7.469-1.562c-0.344-0.125-0.719-0.219-1.062-0.281\r\n\t\t\t\tc-6.031-1.719-11.719-4.188-16.969-7.281c-20.75-12.188-34.656-34.438-34.656-59.969c0-25.5,13.906-47.75,34.656-59.961\r\n\t\t\t\tc5.25-3.109,10.938-5.562,16.969-7.25c0.344-0.109,0.719-0.188,1.062-0.281c2.438-0.656,4.938-1.156,7.469-1.531\r\n\t\t\t\tc0.703-0.141,1.406-0.25,2.109-0.328c2.938-0.391,5.953-0.641,8.984-0.641s6.047,0.25,8.984,0.641\r\n\t\t\t\tc0.703,0.078,1.406,0.188,2.109,0.328c2.531,0.375,5,0.875,7.453,1.531c0.375,0.094,0.734,0.172,1.047,0.281\r\n\t\t\t\tc6.062,1.688,11.75,4.141,17,7.25c20.75,12.211,34.656,34.461,34.656,59.961C327.25,281.5,313.344,303.75,292.594,315.938z\r\n\t\t\t\t M356.781,313.094H312c16.953-14.594,25.484-33.188,25.484-57.125c0-23.906-8.531-42.469-25.484-57.117h44.781V313.094z\r\n\t\t\t\t M256,198.852v11.43c26.141,0,44.781,20.031,44.781,45.688H312C312,225.656,286.906,198.852,256,198.852z"},"children":[{"name":"path","attribs":{"d":"M356.781,187.414h-56c-11.641-6.344-30.469-11.406-44.781-11.406c-14.281,0-33.125,5.062-44.781,11.406H200\r\n\t\t\t\tc-0.359-11.562-9.688-11.406-15.25-11.406h-20.375c-5.609,0-9.156,5.922-9.156,11.406c-5.609,0-11.219,3.078-11.219,8.594v119.93\r\n\t\t\t\tc0,5.562,5.609,8.625,11.219,8.625h56C222.875,330.875,241.719,336,256,336c14.312,0,33.141-5.125,44.781-11.438h56\r\n\t\t\t\tc5.641,0,11.219-3.062,11.219-8.625v-119.93C368,190.492,362.422,187.414,356.781,187.414z M155.219,313.094V198.852H200\r\n\t\t\t\tc-16.938,14.648-25.438,33.211-25.438,57.117c0,23.938,8.5,42.531,25.438,57.125H155.219z M292.594,315.938\r\n\t\t\t\tc-5.25,3.094-10.938,5.562-17,7.281c-0.312,0.062-0.672,0.156-1.047,0.281c-2.453,0.656-4.922,1.125-7.453,1.562\r\n\t\t\t\tc-0.703,0.062-1.406,0.219-2.094,0.281c-2.938,0.375-5.953,0.625-9,0.625s-6.062-0.25-9-0.625\r\n\t\t\t\tc-0.688-0.062-1.391-0.219-2.094-0.281c-2.531-0.438-5.031-0.906-7.469-1.562c-0.344-0.125-0.719-0.219-1.062-0.281\r\n\t\t\t\tc-6.031-1.719-11.719-4.188-16.969-7.281c-20.75-12.188-34.656-34.438-34.656-59.969c0-25.5,13.906-47.75,34.656-59.961\r\n\t\t\t\tc5.25-3.109,10.938-5.562,16.969-7.25c0.344-0.109,0.719-0.188,1.062-0.281c2.438-0.656,4.938-1.156,7.469-1.531\r\n\t\t\t\tc0.703-0.141,1.406-0.25,2.109-0.328c2.938-0.391,5.953-0.641,8.984-0.641s6.047,0.25,8.984,0.641\r\n\t\t\t\tc0.703,0.078,1.406,0.188,2.109,0.328c2.531,0.375,5,0.875,7.453,1.531c0.375,0.094,0.734,0.172,1.047,0.281\r\n\t\t\t\tc6.062,1.688,11.75,4.141,17,7.25c20.75,12.211,34.656,34.461,34.656,59.961C327.25,281.5,313.344,303.75,292.594,315.938z\r\n\t\t\t\t M356.781,313.094H312c16.953-14.594,25.484-33.188,25.484-57.125c0-23.906-8.531-42.469-25.484-57.117h44.781V313.094z\r\n\t\t\t\t M256,198.852v11.43c26.141,0,44.781,20.031,44.781,45.688H312C312,225.656,286.906,198.852,256,198.852z"},"children":[]}]}]}]}]}]}]}]};exports.socialPhotobucket=socialPhotobucket;var socialPinterest={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"path","attribs":{"d":"M262.031,128c-70.188,0-105.594,50.094-105.594,91.859c0,25.297,9.609,47.797,30.25,56.172\r\n\t\tc3.406,1.312,6.422,0.062,7.406-3.672c0.688-2.578,2.297-9.094,3.016-11.812c0.984-3.688,0.609-5-2.125-8.188\r\n\t\tc-5.953-6.984-9.75-16.016-9.75-28.828c0-37.172,27.938-70.422,72.734-70.422c39.625,0,61.469,24.109,61.469,56.359\r\n\t\tc0,42.375-18.844,78.125-46.812,78.125c-15.484,0-27.062-12.703-23.344-28.297c4.438-18.594,13.031-38.703,13.031-52.172\r\n\t\tc0-12.031-6.5-22.094-19.906-22.094c-15.812,0-28.484,16.297-28.484,38.078c0,13.875,4.703,23.266,4.703,23.266\r\n\t\ts-16.156,68.203-19,80.125c-5.656,23.797-0.844,52.938-0.438,55.875c0.234,1.75,2.5,2.172,3.5,0.844\r\n\t\tc1.469-1.891,20.281-25.016,26.672-48.125c1.828-6.516,10.391-40.422,10.391-40.422c5.141,9.75,20.141,18.344,36.094,18.344\r\n\t\tc47.484,0,79.719-43.078,79.719-100.781C355.562,168.625,318.438,128,262.031,128z"},"children":[{"name":"path","attribs":{"d":"M262.031,128c-70.188,0-105.594,50.094-105.594,91.859c0,25.297,9.609,47.797,30.25,56.172\r\n\t\tc3.406,1.312,6.422,0.062,7.406-3.672c0.688-2.578,2.297-9.094,3.016-11.812c0.984-3.688,0.609-5-2.125-8.188\r\n\t\tc-5.953-6.984-9.75-16.016-9.75-28.828c0-37.172,27.938-70.422,72.734-70.422c39.625,0,61.469,24.109,61.469,56.359\r\n\t\tc0,42.375-18.844,78.125-46.812,78.125c-15.484,0-27.062-12.703-23.344-28.297c4.438-18.594,13.031-38.703,13.031-52.172\r\n\t\tc0-12.031-6.5-22.094-19.906-22.094c-15.812,0-28.484,16.297-28.484,38.078c0,13.875,4.703,23.266,4.703,23.266\r\n\t\ts-16.156,68.203-19,80.125c-5.656,23.797-0.844,52.938-0.438,55.875c0.234,1.75,2.5,2.172,3.5,0.844\r\n\t\tc1.469-1.891,20.281-25.016,26.672-48.125c1.828-6.516,10.391-40.422,10.391-40.422c5.141,9.75,20.141,18.344,36.094,18.344\r\n\t\tc47.484,0,79.719-43.078,79.719-100.781C355.562,168.625,318.438,128,262.031,128z"},"children":[]}]}]}]};exports.socialPinterest=socialPinterest;var socialQuora={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"path","attribs":{"d":"M314.844,341.454C346.75,321.126,368,284.798,368,243.329c0-63.688-50.156-115.328-112-115.328\r\n\tc-61.875,0-112,51.641-112,115.328c0,63.703,50.125,115.344,112,115.344c9.094,0,17.938-1.156,26.406-3.266\r\n\tc10.625,19.656,26.812,33.562,61.203,26.906v-19.547C343.609,362.767,321.562,357.142,314.844,341.454z M314.062,258.579\r\n\tc0,19.266-6.031,36.734-15.828,49.656c-12.312-13.312-31.609-24.266-56.094-22.875v2.344v20.328c0,0,16.609,0.672,27.984,20.516\r\n\tc-4.266,1.281-8.703,1.969-13.281,1.969c-31.594,0-57.188-32.203-57.188-71.938c0-5.094,0-24.609,0-29.703\r\n\tc0-39.734,25.594-71.938,57.188-71.938c31.609,0,57.219,32.203,57.219,71.938C314.062,233.97,314.062,253.485,314.062,258.579z"},"children":[]}]};exports.socialQuora=socialQuora;var socialSharethis={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"path","attribs":{"d":"M342.906,210.25c22.734,0,41.172-18.438,41.172-41.172c0-22.719-18.438-41.156-41.172-41.156s-41.172,18.438-41.172,41.156\r\n\t\tc0,1.781,0.312,3.438,0.516,5.156l-104.328,52.438c-7.438-7.312-17.594-11.844-28.844-11.844\r\n\t\tc-22.719,0-41.156,18.438-41.156,41.156c0,22.734,18.438,41.188,41.156,41.188c11.484,0,21.859-4.734,29.328-12.328l103.891,52.594\r\n\t\tc-0.25,1.812-0.562,3.594-0.562,5.453c0,22.75,18.438,41.188,41.172,41.188s41.172-18.438,41.172-41.188\r\n\t\tc0-22.703-18.438-41.172-41.172-41.172c-11.609,0-22.062,4.875-29.531,12.609l-103.719-52.5c0.266-1.922,0.594-3.828,0.594-5.844\r\n\t\tc0-2.219-0.328-4.391-0.656-6.547l103.562-52.016C320.656,205.281,331.188,210.25,342.906,210.25z"},"children":[{"name":"path","attribs":{"d":"M342.906,210.25c22.734,0,41.172-18.438,41.172-41.172c0-22.719-18.438-41.156-41.172-41.156s-41.172,18.438-41.172,41.156\r\n\t\tc0,1.781,0.312,3.438,0.516,5.156l-104.328,52.438c-7.438-7.312-17.594-11.844-28.844-11.844\r\n\t\tc-22.719,0-41.156,18.438-41.156,41.156c0,22.734,18.438,41.188,41.156,41.188c11.484,0,21.859-4.734,29.328-12.328l103.891,52.594\r\n\t\tc-0.25,1.812-0.562,3.594-0.562,5.453c0,22.75,18.438,41.188,41.172,41.188s41.172-18.438,41.172-41.188\r\n\t\tc0-22.703-18.438-41.172-41.172-41.172c-11.609,0-22.062,4.875-29.531,12.609l-103.719-52.5c0.266-1.922,0.594-3.828,0.594-5.844\r\n\t\tc0-2.219-0.328-4.391-0.656-6.547l103.562-52.016C320.656,205.281,331.188,210.25,342.906,210.25z"},"children":[]}]}]}]};exports.socialSharethis=socialSharethis;var socialSkype={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"path","attribs":{"d":"M366.734,256.297c0-63.016-51.094-114.109-114.125-114.109c-5.891,0-11.641,0.578-17.281,1.438\r\n\t\tC223.938,133.906,209.203,128,193.078,128C157.156,128,128,157.141,128,193.078c0,14.672,4.906,28.172,13.109,39.047\r\n\t\tc-1.672,7.797-2.609,15.875-2.609,24.172c0,63.047,51.078,114.141,114.109,114.141c8.094,0,16-0.875,23.609-2.484\r\n\t\tC287.656,377.922,302.562,384,318.922,384C354.859,384,384,354.859,384,318.922c0-17.766-7.125-33.844-18.688-45.578\r\n\t\tC366.156,267.75,366.734,262.094,366.734,256.297z M305.859,306c-4.484,6.391-11.078,11.391-19.734,15\r\n\t\tc-8.656,3.641-18.922,5.438-30.781,5.438c-14.25,0-26-2.469-35.25-7.422c-6.547-3.547-11.875-8.297-15.984-14.25\r\n\t\tc-4.094-5.922-6.156-11.703-6.156-17.312c0-3.266,1.234-6.047,3.688-8.359c2.469-2.328,5.609-3.484,9.406-3.484\r\n\t\tc3.078,0,5.703,0.891,7.828,2.719c2.125,1.797,3.953,4.484,5.453,8.031c1.844,4.234,3.828,7.75,5.953,10.578\r\n\t\tc2.125,2.844,5.141,5.188,9,7.016c3.875,1.844,8.969,2.766,15.25,2.766c8.672,0,15.703-1.844,21.109-5.562\r\n\t\tc5.406-3.703,8.125-8.328,8.125-13.891c0-4.391-1.453-7.969-4.375-10.703c-2.922-2.75-6.688-4.844-11.328-6.297\r\n\t\tc-4.625-1.438-10.781-2.984-18.547-4.609c-10.359-2.234-19.031-4.844-26.016-7.812c-6.984-3-12.547-7.062-16.625-12.219\r\n\t\tc-4.109-5.172-6.156-11.578-6.156-19.219c0-7.312,2.156-13.781,6.5-19.453c4.312-5.656,10.578-10.031,18.797-13.062\r\n\t\tc8.203-3.047,17.828-4.562,28.922-4.562c8.844,0,16.516,1,22.969,3.016c6.469,2.016,11.828,4.703,16.094,8.047\r\n\t\tc4.25,3.359,7.375,6.875,9.344,10.547s2.953,7.266,2.953,10.75c0,3.203-1.234,6.094-3.672,8.656\r\n\t\tc-2.469,2.547-5.547,3.844-9.219,3.844c-3.344,0-5.891-0.781-7.625-2.312s-3.625-4.047-5.656-7.547\r\n\t\tc-2.625-5-5.766-8.922-9.453-11.719c-3.672-2.797-9.578-4.203-17.719-4.203c-7.531,0-13.609,1.516-18.234,4.562\r\n\t\tc-4.641,3.031-6.938,6.703-6.938,10.984c0,2.656,0.781,4.953,2.359,6.875c1.562,1.938,3.734,3.578,6.5,4.969\r\n\t\tc2.734,1.391,5.531,2.469,8.359,3.281c2.812,0.766,7.469,1.922,13.969,3.422c8.125,1.75,15.484,3.688,22.078,5.797\r\n\t\ts12.203,4.672,16.828,7.672c4.641,3.031,8.25,6.844,10.828,11.453c2.594,4.609,3.891,10.266,3.891,16.969\r\n\t\tC312.594,292.391,310.344,299.609,305.859,306z"},"children":[{"name":"path","attribs":{"d":"M366.734,256.297c0-63.016-51.094-114.109-114.125-114.109c-5.891,0-11.641,0.578-17.281,1.438\r\n\t\tC223.938,133.906,209.203,128,193.078,128C157.156,128,128,157.141,128,193.078c0,14.672,4.906,28.172,13.109,39.047\r\n\t\tc-1.672,7.797-2.609,15.875-2.609,24.172c0,63.047,51.078,114.141,114.109,114.141c8.094,0,16-0.875,23.609-2.484\r\n\t\tC287.656,377.922,302.562,384,318.922,384C354.859,384,384,354.859,384,318.922c0-17.766-7.125-33.844-18.688-45.578\r\n\t\tC366.156,267.75,366.734,262.094,366.734,256.297z M305.859,306c-4.484,6.391-11.078,11.391-19.734,15\r\n\t\tc-8.656,3.641-18.922,5.438-30.781,5.438c-14.25,0-26-2.469-35.25-7.422c-6.547-3.547-11.875-8.297-15.984-14.25\r\n\t\tc-4.094-5.922-6.156-11.703-6.156-17.312c0-3.266,1.234-6.047,3.688-8.359c2.469-2.328,5.609-3.484,9.406-3.484\r\n\t\tc3.078,0,5.703,0.891,7.828,2.719c2.125,1.797,3.953,4.484,5.453,8.031c1.844,4.234,3.828,7.75,5.953,10.578\r\n\t\tc2.125,2.844,5.141,5.188,9,7.016c3.875,1.844,8.969,2.766,15.25,2.766c8.672,0,15.703-1.844,21.109-5.562\r\n\t\tc5.406-3.703,8.125-8.328,8.125-13.891c0-4.391-1.453-7.969-4.375-10.703c-2.922-2.75-6.688-4.844-11.328-6.297\r\n\t\tc-4.625-1.438-10.781-2.984-18.547-4.609c-10.359-2.234-19.031-4.844-26.016-7.812c-6.984-3-12.547-7.062-16.625-12.219\r\n\t\tc-4.109-5.172-6.156-11.578-6.156-19.219c0-7.312,2.156-13.781,6.5-19.453c4.312-5.656,10.578-10.031,18.797-13.062\r\n\t\tc8.203-3.047,17.828-4.562,28.922-4.562c8.844,0,16.516,1,22.969,3.016c6.469,2.016,11.828,4.703,16.094,8.047\r\n\t\tc4.25,3.359,7.375,6.875,9.344,10.547s2.953,7.266,2.953,10.75c0,3.203-1.234,6.094-3.672,8.656\r\n\t\tc-2.469,2.547-5.547,3.844-9.219,3.844c-3.344,0-5.891-0.781-7.625-2.312s-3.625-4.047-5.656-7.547\r\n\t\tc-2.625-5-5.766-8.922-9.453-11.719c-3.672-2.797-9.578-4.203-17.719-4.203c-7.531,0-13.609,1.516-18.234,4.562\r\n\t\tc-4.641,3.031-6.938,6.703-6.938,10.984c0,2.656,0.781,4.953,2.359,6.875c1.562,1.938,3.734,3.578,6.5,4.969\r\n\t\tc2.734,1.391,5.531,2.469,8.359,3.281c2.812,0.766,7.469,1.922,13.969,3.422c8.125,1.75,15.484,3.688,22.078,5.797\r\n\t\ts12.203,4.672,16.828,7.672c4.641,3.031,8.25,6.844,10.828,11.453c2.594,4.609,3.891,10.266,3.891,16.969\r\n\t\tC312.594,292.391,310.344,299.609,305.859,306z"},"children":[]}]}]}]};exports.socialSkype=socialSkype;var socialSoundcloud={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M128.591,281.609c-2.875,13.5,5.344,32,12.781,38.391v-64\r\n\t\t\tC133.935,262.391,130.778,271.5,128.591,281.609z M347.341,250.188c-4.469,0-8.672,0.875-12.609,2.266\r\n\t\t\tc-1.969-33.672-31-60.453-66.812-60.453c-22.891,0-50.609,8.938-62.703,25.594V320h142.125c20.25,0,36.656-15.625,36.656-34.891\r\n\t\t\tC383.997,265.812,367.591,250.188,347.341,250.188z M179.685,320h12.766v-89.594h-12.766V320z M154.138,320h12.766v-76.812\r\n\t\t\th-12.766V320z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M128.591,281.609c-2.875,13.5,5.344,32,12.781,38.391v-64\r\n\t\t\tC133.935,262.391,130.778,271.5,128.591,281.609z M347.341,250.188c-4.469,0-8.672,0.875-12.609,2.266\r\n\t\t\tc-1.969-33.672-31-60.453-66.812-60.453c-22.891,0-50.609,8.938-62.703,25.594V320h142.125c20.25,0,36.656-15.625,36.656-34.891\r\n\t\t\tC383.997,265.812,367.591,250.188,347.341,250.188z M179.685,320h12.766v-89.594h-12.766V320z M154.138,320h12.766v-76.812\r\n\t\t\th-12.766V320z"},"children":[]}]}]}]}]}]};exports.socialSoundcloud=socialSoundcloud;var socialStumbleupon={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"path","attribs":{"d":"M270.219,228.578l16.625,11.734l26.031-11.734l-0.156-13.062C311.812,186.031,286.812,160,256,160\r\n\tc-30.719,0-55.672,25.844-56.75,55.188v79.203c0,7.141-6.031,12.953-13.438,12.953c-7.453,0-15.141-3.031-15.141-10.219V256H128\r\n\tc0,0,0,40.734,0,41.125C128,327.422,153.5,352,184.891,352c31.141,0,56.438-24.969,56.891-54.875v-82.281\r\n\tc0-7.156,6.781-13.688,14.219-13.688c7.422,0,14.219,6.531,14.219,13.688V228.578z M341.344,256v41.125\r\n\tc0,7.172-7.719,11.781-15.156,11.781s-13.469-5.797-13.469-12.969L312.875,256l-26.031,12.953L270.219,256v41.125\r\n\tC270.5,327.203,295.875,352,327.125,352C358.5,352,384,327.422,384,297.125c0-0.391,0-41.125,0-41.125H341.344z"},"children":[]}]};exports.socialStumbleupon=socialStumbleupon;var socialTumblr={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M227.391,332.562c-4.703-2.734-7.922-6.375-9.656-10.969\r\n\t\t\tc-1.734-4.562-5.453-14.906-5.453-31.016v-45.172h67.594v-48.562h-67.594V128h-28.375c-1.812,14.344-2.234,19.062-7,28.359\r\n\t\t\tc-4.781,9.281-11.125,21.484-19.031,28.109C150,191.094,139.078,197.578,128,201.125v44.281h32.594v71.375\r\n\t\t\tc0,12.719,1.344,22.406,4.047,29.094c2.703,6.703,7.547,13.016,14.547,18.953c6.984,5.922,22.469,13.719,22.469,13.719\r\n\t\t\ts12.438,4.812,25.312,4.812c11.344,0,21.922-1.125,31.688-3.375s24.266-7.594,36.312-13.203v-43.812\r\n\t\t\tc-14.125,9.141-31.938,15.125-46.172,15.125C240.75,338.094,233.625,336.25,227.391,332.562z M349.141,315.266\r\n\t\t\tc-19.234,0-34.859,15.391-34.859,34.375S329.906,384,349.141,384S384,368.625,384,349.641S368.375,315.266,349.141,315.266z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M227.391,332.562c-4.703-2.734-7.922-6.375-9.656-10.969\r\n\t\t\tc-1.734-4.562-5.453-14.906-5.453-31.016v-45.172h67.594v-48.562h-67.594V128h-28.375c-1.812,14.344-2.234,19.062-7,28.359\r\n\t\t\tc-4.781,9.281-11.125,21.484-19.031,28.109C150,191.094,139.078,197.578,128,201.125v44.281h32.594v71.375\r\n\t\t\tc0,12.719,1.344,22.406,4.047,29.094c2.703,6.703,7.547,13.016,14.547,18.953c6.984,5.922,22.469,13.719,22.469,13.719\r\n\t\t\ts12.438,4.812,25.312,4.812c11.344,0,21.922-1.125,31.688-3.375s24.266-7.594,36.312-13.203v-43.812\r\n\t\t\tc-14.125,9.141-31.938,15.125-46.172,15.125C240.75,338.094,233.625,336.25,227.391,332.562z M349.141,315.266\r\n\t\t\tc-19.234,0-34.859,15.391-34.859,34.375S329.906,384,349.141,384S384,368.625,384,349.641S368.375,315.266,349.141,315.266z"},"children":[]}]}]}]}]}]};exports.socialTumblr=socialTumblr;var socialTwitter={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256c0,141.392,114.609,256,256,256c141.392,0,256-114.608,256-256\r\n\tC512,114.609,397.392,0,256,0z M256,472c-119.297,0-216-96.702-216-216c0-119.297,96.703-216,216-216c119.298,0,216,96.703,216,216\r\n\tC472,375.298,375.298,472,256,472z"},"children":[]},{"name":"path","attribs":{"d":"M384,170.922c-4.313,2.562-17.248,7.671-29.313,8.953c7.736-4.491,19.188-19.203,22.016-30.89\r\n\tc-7.435,5.109-24.516,12.562-32.95,12.562c0,0,0,0.023,0.016,0.039C334.141,150.75,320.608,144,305.577,144\r\n\tc-29.154,0-52.81,25.461-52.81,56.875c0,4.36,0.481,8.595,1.357,12.672h-0.017c-39.562-1.094-85.811-22.446-111.874-59\r\n\tc-16,29.852-2.156,63.046,16.015,75.141c-6.203,0.516-17.671-0.766-23.061-6.407c-0.375,19.797,8.484,46.048,40.735,55.563\r\n\tc-6.221,3.61-17.19,2.579-21.984,1.781c1.687,16.75,23.437,38.623,47.202,38.623c-8.47,10.534-37.373,29.706-73.141,23.596\r\n\tC152.298,358.782,180.625,368,210.608,368c85.205,0,151.376-74.359,147.814-166.093c0-0.11-0.031-0.219-0.031-0.313\r\n\tc0-0.25,0.031-0.5,0.031-0.719c0-0.281-0.031-0.562-0.031-0.859C366.141,194.328,376.546,184.234,384,170.922z"},"children":[]}]};exports.socialTwitter=socialTwitter;var socialViddler={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"path","attribs":{"d":"M327.125,266.844c34.125,0,56.875-26.219,56.875-60.594S356.328,144,322.172,144c-31.047,0-56.719,23.031-61.109,53.094\r\n\th-1.984C254.688,167.031,229,144,197.953,144c-34.141,0-55.734,30.656-55.734,65.031c0,34.078,23.188,57.312,56.891,57.812l0,0l0,0\r\n\tv28.906L128,266.844v86.703l71.109-14.438V368h113.766l-42.656-101.156H327.125C327.156,266.844,327.062,266.844,327.125,266.844z\r\n\t M197.953,223.844c-9.641,0-17.453-7.875-17.453-17.594s7.812-17.594,17.453-17.594s17.453,7.875,17.453,17.594\r\n\tS207.594,223.844,197.953,223.844z M306,206.25c0-9.719,7.812-17.594,17.422-17.594c9.688,0,17.484,7.875,17.484,17.594\r\n\ts-7.797,17.594-17.484,17.594C313.812,223.844,306,215.969,306,206.25z"},"children":[]}]};exports.socialViddler=socialViddler;var socialVimeo={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256-0.5C114.333-0.5-0.5,114.333-0.5,256S114.333,512.5,256,512.5S512.5,397.667,512.5,256S397.667-0.5,256-0.5z\r\n\t M256,472.422C136.47,472.422,39.578,375.53,39.578,256C39.578,136.47,136.47,39.578,256,39.578\r\n\tc119.53,0,216.422,96.892,216.422,216.422C472.422,375.53,375.53,472.422,256,472.422z"},"children":[]},{"name":"path","attribs":{"d":"M343.78,143.781c-32.61,0-58.113,21.104-69.15,60.822c12.023-5.699,33.848-8.673,35.554,11.178\r\n\tc1.723,19.867-28.446,71.249-41.69,71.249c-13.213,0-23.045-58.098-26.489-84.649c-3.413-26.583-9.55-55.859-34.552-55.859\r\n\tc-25.033,0-57.127,39.233-79.702,57.111l11.773,16.109c0,0,16.658-13.135,22.56-12.148c15.201,3.961,28.195,65.785,34.833,89.362\r\n\tc6.606,23.593,14.685,71.264,47.311,71.264c52.729,0,140.023-130.833,140.023-173.542\r\n\tC384.25,166.623,376.391,143.781,343.78,143.781z"},"children":[]}]};exports.socialVimeo=socialVimeo;var socialVirb={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"219.828,292.109 182.141,187.5 128,187.5 191.281,347.5 247.422,347.5 309.625,187.5 257.062,187.5 \t"},"children":[{"name":"polygon","attribs":{"points":"219.828,292.109 182.141,187.5 128,187.5 191.281,347.5 247.422,347.5 309.625,187.5 257.062,187.5 \t"},"children":[]}]},{"name":"path","attribs":{"d":"M357.469,164.023c-14.609,0-26.5,12.109-26.5,27.078c0,14.938,11.891,27.031,26.5,27.031\r\n\t\tc14.656,0,26.531-12.094,26.531-27.031C384,176.133,372.125,164.023,357.469,164.023z"},"children":[{"name":"path","attribs":{"d":"M357.469,164.023c-14.609,0-26.5,12.109-26.5,27.078c0,14.938,11.891,27.031,26.5,27.031\r\n\t\tc14.656,0,26.531-12.094,26.531-27.031C384,176.133,372.125,164.023,357.469,164.023z"},"children":[]}]}]}]};exports.socialVirb=socialVirb;var socialWordpress={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"path","attribs":{"d":"M128,256c0,50.625,29.438,94.438,72.156,115.156l-61.078-167.25C131.969,219.828,128,237.438,128,256z"},"children":[{"name":"path","attribs":{"d":"M128,256c0,50.625,29.438,94.438,72.156,115.156l-61.078-167.25C131.969,219.828,128,237.438,128,256z"},"children":[]}]},{"name":"path","attribs":{"d":"M258.266,267.203l-38.422,111.594c11.469,3.359,23.594,5.203,36.172,5.203c14.891,0,29.188-2.594,42.5-7.281\r\n\t\tc-0.344-0.547-0.656-1.094-0.906-1.75L258.266,267.203z"},"children":[{"name":"path","attribs":{"d":"M258.266,267.203l-38.422,111.594c11.469,3.359,23.594,5.203,36.172,5.203c14.891,0,29.188-2.594,42.5-7.281\r\n\t\tc-0.344-0.547-0.656-1.094-0.906-1.75L258.266,267.203z"},"children":[]}]},{"name":"path","attribs":{"d":"M342.406,249.547c0-15.828-5.688-26.797-10.547-35.312c-6.484-10.547-12.562-19.453-12.562-30.016\r\n\t\tc0-11.766,8.906-22.703,21.5-22.703c0.547,0,1.094,0.062,1.641,0.109C319.672,140.75,289.344,128,256.016,128\r\n\t\tc-44.734,0-84.078,22.953-106.953,57.688c3,0.109,5.828,0.172,8.234,0.172c13.391,0,34.141-1.641,34.141-1.641\r\n\t\tc6.875-0.391,7.688,9.719,0.781,10.562c0,0-6.906,0.797-14.656,1.219l46.625,138.625l28.016-84L232.25,196\r\n\t\tc-6.891-0.422-13.422-1.219-13.422-1.219c-6.891-0.422-6.078-10.953,0.828-10.562c0,0,21.125,1.641,33.703,1.641\r\n\t\tc13.375,0,34.125-1.641,34.125-1.641c6.891-0.391,7.703,9.719,0.797,10.562c0,0-6.906,0.797-14.641,1.219l46.266,137.562\r\n\t\tl12.766-42.656C339.156,274.281,342.406,260.5,342.406,249.547z"},"children":[{"name":"path","attribs":{"d":"M342.406,249.547c0-15.828-5.688-26.797-10.547-35.312c-6.484-10.547-12.562-19.453-12.562-30.016\r\n\t\tc0-11.766,8.906-22.703,21.5-22.703c0.547,0,1.094,0.062,1.641,0.109C319.672,140.75,289.344,128,256.016,128\r\n\t\tc-44.734,0-84.078,22.953-106.953,57.688c3,0.109,5.828,0.172,8.234,0.172c13.391,0,34.141-1.641,34.141-1.641\r\n\t\tc6.875-0.391,7.688,9.719,0.781,10.562c0,0-6.906,0.797-14.656,1.219l46.625,138.625l28.016-84L232.25,196\r\n\t\tc-6.891-0.422-13.422-1.219-13.422-1.219c-6.891-0.422-6.078-10.953,0.828-10.562c0,0,21.125,1.641,33.703,1.641\r\n\t\tc13.375,0,34.125-1.641,34.125-1.641c6.891-0.391,7.703,9.719,0.797,10.562c0,0-6.906,0.797-14.641,1.219l46.266,137.562\r\n\t\tl12.766-42.656C339.156,274.281,342.406,260.5,342.406,249.547z"},"children":[]}]},{"name":"path","attribs":{"d":"M369.203,207.766c0,12.969-2.438,27.562-9.75,45.828l-39.078,113.031C358.406,344.438,384,303.219,384,256\r\n\t\tc0-22.266-5.672-43.172-15.672-61.422C368.875,198.688,369.203,203.047,369.203,207.766z"},"children":[{"name":"path","attribs":{"d":"M369.203,207.766c0,12.969-2.438,27.562-9.75,45.828l-39.078,113.031C358.406,344.438,384,303.219,384,256\r\n\t\tc0-22.266-5.672-43.172-15.672-61.422C368.875,198.688,369.203,203.047,369.203,207.766z"},"children":[]}]}]}]};exports.socialWordpress=socialWordpress;var socialYahoo={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M330.734,221.281c0,0,9.891-5.812,17.016-5.812s16.453,0,16.453,0l6.078-15H267.188l1.094,11.281l6.062,3.203L301.109,216\r\n\t\t\tc0,0,1.625,5.812-2.734,9.016c-4.438,3.141-43.422,37.734-43.422,37.734l-49.391-60.469c0,0,1.094-1.562,8.219-1.562\r\n\t\t\tc7.156,0,28.031,0,28.031,0V176H128v24.844c0,0,14.438,0,21.562,0s15.359,7.781,22.5,14.688\r\n\t\t\tc7.141,6.859,56.656,59.406,56.656,59.406l0.328,43.281c0,0-3.734,6.344-18,6.344c-14.281,0-19.766,1.094-19.766,1.094v10.156\r\n\t\t\th113.094v-7.438c0,0-3.266-4.875-6-4.875h-26.844c-3.281,0-4.391-3.688-4.391-8.469c0-4.719,0-37.469,0-37.469L330.734,221.281z\r\n\t\t\t M355.594,303.375l8.062,0.719L384,238.812l-28.438-2.094L355.594,303.375z M343.172,336h24.453l1.203-22.969l-25.656,0.625V336z"},"children":[{"name":"path","attribs":{"d":"M330.734,221.281c0,0,9.891-5.812,17.016-5.812s16.453,0,16.453,0l6.078-15H267.188l1.094,11.281l6.062,3.203L301.109,216\r\n\t\t\tc0,0,1.625,5.812-2.734,9.016c-4.438,3.141-43.422,37.734-43.422,37.734l-49.391-60.469c0,0,1.094-1.562,8.219-1.562\r\n\t\t\tc7.156,0,28.031,0,28.031,0V176H128v24.844c0,0,14.438,0,21.562,0s15.359,7.781,22.5,14.688\r\n\t\t\tc7.141,6.859,56.656,59.406,56.656,59.406l0.328,43.281c0,0-3.734,6.344-18,6.344c-14.281,0-19.766,1.094-19.766,1.094v10.156\r\n\t\t\th113.094v-7.438c0,0-3.266-4.875-6-4.875h-26.844c-3.281,0-4.391-3.688-4.391-8.469c0-4.719,0-37.469,0-37.469L330.734,221.281z\r\n\t\t\t M355.594,303.375l8.062,0.719L384,238.812l-28.438-2.094L355.594,303.375z M343.172,336h24.453l1.203-22.969l-25.656,0.625V336z"},"children":[]}]}]}]}]}]};exports.socialYahoo=socialYahoo;var socialYelp={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"path","attribs":{"d":"M246.375,301.547c-8.406-0.922-18,15.844-23.188,22.328c-5.188,6.5-25.25,29.375-25.438,35.5\r\n\t\tc-0.156,6.125,10.688,12.609,25.625,18.734c14.891,6.125,31.719,10.453,32.406-2.719c0.625-13.141,0-50.062,0-54.203\r\n\t\tS256.094,302.625,246.375,301.547z"},"children":[{"name":"path","attribs":{"d":"M246.375,301.547c-8.406-0.922-18,15.844-23.188,22.328c-5.188,6.5-25.25,29.375-25.438,35.5\r\n\t\tc-0.156,6.125,10.688,12.609,25.625,18.734c14.891,6.125,31.719,10.453,32.406-2.719c0.625-13.141,0-50.062,0-54.203\r\n\t\tS256.094,302.625,246.375,301.547z"},"children":[]}]},{"name":"path","attribs":{"d":"M233.828,272.75c0-7.188-20.109-17.312-20.109-17.312s-36.781-17.656-43.594-16.938\r\n\t\tc-6.797,0.719-9.438,20.188-10.016,34.25c-1.641,39.625,15.703,29.344,15.703,29.344s36.469-12.969,43.609-15.844\r\n\t\tC226.531,283.359,233.828,279.922,233.828,272.75z"},"children":[{"name":"path","attribs":{"d":"M233.828,272.75c0-7.188-20.109-17.312-20.109-17.312s-36.781-17.656-43.594-16.938\r\n\t\tc-6.797,0.719-9.438,20.188-10.016,34.25c-1.641,39.625,15.703,29.344,15.703,29.344s36.469-12.969,43.609-15.844\r\n\t\tC226.531,283.359,233.828,279.922,233.828,272.75z"},"children":[]}]},{"name":"path","attribs":{"d":"M244,241.031c6.656,0.531,11.359-4.5,11.359-13.125c0-8.656,2.922-91.344-3.234-97.312\r\n\t\tc-6.188-5.906-30.328-0.219-36.953,2.219c-14.109,5.125-29.797,13.125-30.125,19.969S237.375,240.5,244,241.031z"},"children":[{"name":"path","attribs":{"d":"M244,241.031c6.656,0.531,11.359-4.5,11.359-13.125c0-8.656,2.922-91.344-3.234-97.312\r\n\t\tc-6.188-5.906-30.328-0.219-36.953,2.219c-14.109,5.125-29.797,13.125-30.125,19.969S237.375,240.5,244,241.031z"},"children":[]}]},{"name":"path","attribs":{"d":"M300.875,261.406c11.828-2.531,50.047-10.469,50.859-21.281c0.797-10.781-22.188-48.281-31.75-48.281\r\n\t\tc-5.5,0.219-47.312,55.844-40.344,66.312C283.984,264.656,289.031,263.938,300.875,261.406z"},"children":[{"name":"path","attribs":{"d":"M300.875,261.406c11.828-2.531,50.047-10.469,50.859-21.281c0.797-10.781-22.188-48.281-31.75-48.281\r\n\t\tc-5.5,0.219-47.312,55.844-40.344,66.312C283.984,264.656,289.031,263.938,300.875,261.406z"},"children":[]}]},{"name":"path","attribs":{"d":"M340.672,306.938c-7.797-3.047-50.547-24.297-58.016-15.297c-4.75,5.734-1.781,15.125,3.219,24.156\r\n\t\tc5.031,9,23.188,39.438,23.188,39.438s3.234,8.094,8.906,8.094s16.859-11.781,22.531-20.578s11.5-19.391,11.5-25.172\r\n\t\tC352,311.812,348.438,310.016,340.672,306.938z"},"children":[{"name":"path","attribs":{"d":"M340.672,306.938c-7.797-3.047-50.547-24.297-58.016-15.297c-4.75,5.734-1.781,15.125,3.219,24.156\r\n\t\tc5.031,9,23.188,39.438,23.188,39.438s3.234,8.094,8.906,8.094s16.859-11.781,22.531-20.578s11.5-19.391,11.5-25.172\r\n\t\tC352,311.812,348.438,310.016,340.672,306.938z"},"children":[]}]}]}]};exports.socialYelp=socialYelp;var socialYoutube={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M214.859,128l-10.156,39.5h-1.016L193.031,128h-16.562l21.016,65.5v27.562h12.062\r\n\tv-29.375L231.562,128H214.859z M267.406,171.047c0-5.578-1.812-11.047-5-14.25c-3.688-3.688-5.531-5.828-11.578-5.828\r\n\tc-6.641,0-8.484,2.516-12.422,5.828c-3.938,3.375-5.672,8.172-5.672,13.797v30.562c0,6.219,1.938,11.141,5.75,14.844\r\n\tc3.828,3.625,5.672,5.438,12.031,5.438c6.609,0,7.453-1.781,11.281-5.281c3.75-3.531,5.609-8.438,5.609-14.688V171.047z\r\n\t M313.953,151.031h-11.672v46.625c-1.375,1.609-7.469,9.859-8.562,9.859c-1.344,0-1.609-0.375-2.234-1.156\r\n\tc-0.609-0.766-0.922-2-0.922-3.734v-51.594h-11.688v56.609c0,4.391,0.375,10.781,2.719,13.156c1.594,1.609,6.625,1.906,11.203-1.594\r\n\tc3.516-2.672,6.406-6.406,9.484-11.984v12.406h11.672V151.031z M384,291.906c0-26.406-20.906-47.812-46.75-47.812H174.766\r\n\tc-25.828,0-46.766,21.406-46.766,47.812v44.297C128,362.562,148.938,384,174.766,384H337.25c25.844,0,46.75-21.438,46.75-47.797\r\n\tV291.906z M319.578,360.578c-5.344,0-9.5-1.672-12.562-5.078c-3.047-3.281-4.594-7.922-4.594-13.812v-27.5\r\n\tc0-5.266,1.703-15,5.047-18.281c3.391-3.391,7.656-5.016,12.953-5.016c5.453,0,9.625,1.516,12.484,4.578\r\n\tc2.969,3.156,4.406,12.953,4.406,18.719v11.609h-22.688v15.484c0,3.25,0.422,5.453,1.203,6.719c0.797,1.234,2.078,1.875,4.031,1.875\r\n\tc1.938,0,3.281-0.531,4.062-1.594c0.766-1.062,1.203-3.328,1.203-7v-2.766h12.188v3.172c0,6.281-1.438,10.984-4.438,14.156\r\n\tC329.875,358.969,325.438,360.578,319.578,360.578z M325.125,316.281v-2.156c0-2.594-0.438-9.812-1.25-10.891\r\n\tc-0.766-1.109-2.141-1.672-3.953-1.672c-1.859,0-3.234,0.562-4.047,1.672c-0.812,1.078-1.25,8.297-1.25,10.891v2.156H325.125z\r\n\t M279.797,360.734c-2.422,0-4.562-0.5-6.422-1.453c-1.828-0.906-3.578-2.312-5.203-4.312v4.891h-12.297V267.5h11.578v27.922\r\n\tc1.672-1.938,4.172-3.438,5.922-4.453c1.891-1.016,3.75-1.531,5.672-1.531c3.828,0,6.828,1.422,8.828,4.141\r\n\tc2.016,2.719,3.031,6.703,3.031,11.922v41.188c0,4.531-0.953,7.969-2.828,10.391C286.141,359.469,283.375,360.734,279.797,360.734z\r\n\t M279.438,306.188c0-2.141-1.516-3.766-2.328-4.906c-0.938-1.109-2.203-1.609-3.812-1.609c-0.906,0-1.734,0.188-2.609,0.609\r\n\tc-0.812,0.391-2.375,1.062-3.234,1.922v45.516c0.969,1,2.672,1.797,3.656,2.25c0.922,0.484,1.875,0.719,2.922,0.719\r\n\tc1.484,0,2.594-0.469,3.297-1.391c0.672-0.859,2.109-2.328,2.109-4.375V306.188z M232.109,352.219\r\n\tc-2.25,2.5-4.578,5.234-7.031,6.562c-2.406,1.406-4.766,2.016-7.078,2.016c-2.812,0-4.938-0.922-6.359-2.828\r\n\tc-1.438-1.906-2.5-4.703-2.5-8.484v-58.438h11.797v54.125c0,1.484,0.266,2.547,0.766,3.234c0.531,0.641,1.359,1,2.5,1\r\n\tc0.875,0,2.75-0.438,4.125-1.359c1.375-0.859,3.359-2.016,4.5-3.328v-53.672h11.484v69.562h-12.203V352.219z M197.797,360.547\r\n\th-11.719v-81.422h-11.438V267.5h34.969v11.625h-11.812V360.547z M250.125,208.812c-1.938,0-3.438-0.547-4.438-1.641\r\n\tc-1.062-1.078-1.578-2.625-1.578-4.641v-32.453c0-1.609,0.578-2.891,1.672-3.859c1.109-1,2.547-1.5,4.344-1.5\r\n\tc1.922,0,2.75,0.5,3.953,1.5c1.172,0.969,1.797,2.25,1.797,3.859v32.453c0,1.984-0.609,3.5-1.75,4.641\r\n\tC252.906,208.266,252.109,208.812,250.125,208.812z"},"children":[]}]};exports.socialYoutube=socialYoutube;var socialZerply={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M211.264,128.001c6.328,1.594,10.688,3.109,15.938,4.797\r\n\tc8,1.609,13.688,3.422,20.938,4.672c28.656,6.266,64.766-2.75,88.906-5.672c0.734,2.109,2.172,5.625,2.156,9\r\n\tc0,4.797-2.641,10.531-4.047,13.734c-5.969,13.547-16.422,20.422-24.578,31.266c-17.484,23.125-37.328,45.906-57.719,66.312\r\n\tc-12.266,12.297-31.656,28.078-39.719,43.578c33.578,1.984,51.812,23.203,77.562,34.109c10.141,4.281,28.578,11.812,44.453,6.625\r\n\tc5.859-1.922,10.312-6.438,15.125-9.469c1.188,8.5,3.188,18.844,0,27.469c-5.969,16.203-27.281,36.156-53.906,27.469\r\n\tc-30.562-9.953-48.234-35.25-78.516-46.406c-10.219-3.781-21.812-4.75-35-4.75c-5.938,0-17.469,2.406-19.844,0.953\r\n\tc-9.641-14.234,6.438-40.266,12.281-46.422c20.219-21.297,40.875-42.656,58.656-66.312c10.5-13.969,25.719-25.719,34.047-41.688\r\n\tc-0.312,0-0.625,0-0.938,0c-3.406,2.219-10.297-0.016-15.141,0.953c-24.344,4.812-56.312,3.031-55.812-21.797\r\n\tc0.609-5.391,0.109-3.281,3.781-10.422C203.014,139.985,206.404,134.407,211.264,128.001z"},"children":[]}]};exports.socialZerply=socialZerply;var sos={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"path","attribs":{"d":"M256,128c-70.688,0-128,57.312-128,128s57.312,128,128,128s128-57.312,128-128S326.688,128,256,128z M376,256\r\n\tc0,4.297-0.25,8.531-0.688,12.719C375.766,264.531,376,260.297,376,256s-0.234-8.531-0.688-12.719\r\n\tC375.75,247.469,376,251.703,376,256z M375.031,241.484c-0.438-3.625-0.984-7.234-1.75-10.734\r\n\tC374.047,234.266,374.594,237.859,375.031,241.484z M373.094,230c-1.781-7.922-4.312-15.562-7.547-22.812\r\n\tC368.781,214.438,371.344,222.062,373.094,230z M365.531,207.125l-50.719,23.656c-6.469-15.062-18.547-27.125-33.594-33.594\r\n\tl23.641-50.719C331.812,158.516,353.484,180.188,365.531,207.125z M312,256c0,7.75-1.578,15.125-4.422,21.844\r\n\tc-5.672,13.359-16.375,24.062-29.734,29.719C271.125,310.422,263.75,312,256,312s-15.125-1.578-21.844-4.422\r\n\tc-13.359-5.672-24.062-16.375-29.719-29.734C201.578,271.125,200,263.75,200,256s1.578-15.125,4.438-21.844\r\n\tc5.656-13.359,16.359-24.062,29.719-29.719C240.875,201.578,248.25,200,256,200s15.125,1.578,21.844,4.422\r\n\tc13.359,5.672,24.062,16.375,29.734,29.734C310.422,240.875,312,248.25,312,256z M270.5,136.969c3.641,0.438,7.234,1,10.766,1.75\r\n\tC277.734,137.953,274.125,137.406,270.5,136.969z M281.938,138.891c7.969,1.766,15.625,4.328,22.922,7.578\r\n\tC297.562,143.219,289.891,140.672,281.938,138.891z M268.719,136.688C264.531,136.25,260.297,136,256,136s-8.531,0.25-12.719,0.688\r\n\tC247.469,136.25,251.703,136,256,136S264.531,136.25,268.719,136.688z M241.5,136.969c-3.625,0.438-7.234,0.984-10.75,1.75\r\n\tC234.266,137.969,237.875,137.406,241.5,136.969z M230.047,138.891c-7.938,1.781-15.594,4.312-22.859,7.562\r\n\tC214.453,143.203,222.094,140.656,230.047,138.891z M207.125,146.469l23.656,50.719c-15.062,6.469-27.125,18.531-33.594,33.594\r\n\tl-50.719-23.656c-3.25,7.297-5.797,14.969-7.578,22.938C147.156,192.625,172.891,161.781,207.125,146.469z M136.688,243.281\r\n\tC136.25,247.469,136,251.703,136,256s0.25,8.531,0.688,12.719C136.25,264.531,136,260.297,136,256S136.25,247.469,136.688,243.281z\r\n\t M138.719,230.734c-0.766,3.516-1.312,7.125-1.75,10.766C137.406,237.859,137.969,234.266,138.719,230.734z M146.469,304.875\r\n\tc-3.25-7.312-5.828-14.984-7.594-22.969C140.656,289.875,143.219,297.562,146.469,304.875z M138.719,281.266\r\n\tc-0.75-3.531-1.312-7.141-1.75-10.781C137.406,274.125,137.953,277.734,138.719,281.266z M146.469,304.875l50.719-23.656\r\n\tc6.469,15.062,18.547,27.125,33.594,33.578l-23.656,50.734C180.188,353.484,158.531,331.828,146.469,304.875z M241.484,375.031\r\n\tc-3.625-0.438-7.219-0.984-10.734-1.75C234.25,374.047,237.859,374.594,241.484,375.031z M230,373.094\r\n\tc-7.938-1.75-15.562-4.312-22.812-7.547C214.438,368.781,222.078,371.312,230,373.094z M243.281,375.312\r\n\tC247.469,375.766,251.703,376,256,376s8.531-0.234,12.719-0.688C264.531,375.75,260.297,376,256,376S247.469,375.75,243.281,375.312\r\n\tz M270.531,375.031c3.625-0.438,7.203-0.984,10.719-1.75C277.734,374.047,274.156,374.594,270.531,375.031z M282.062,373.078\r\n\tc3.844-0.859,7.625-1.875,11.312-3.094C289.688,371.203,285.906,372.219,282.062,373.078z M293.438,369.953\r\n\tc3.875-1.266,7.656-2.75,11.359-4.391C301.094,367.219,297.312,368.688,293.438,369.953z M304.875,365.531l-23.656-50.734\r\n\tc15.062-6.469,27.125-18.531,33.594-33.578l50.719,23.641C353.484,331.812,331.828,353.469,304.875,365.531z M375.047,270.5\r\n\tc-0.453,3.641-1,7.234-1.766,10.766C374.047,277.734,374.594,274.125,375.047,270.5z M373.109,281.938\r\n\tc-1.75,7.969-4.312,15.625-7.578,22.922C368.781,297.562,371.328,289.891,373.109,281.938z"},"children":[]}]};exports.sos=sos;var soundOff={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"path","attribs":{"d":"M380.766,365.172L146.844,131.234c-4.312-4.312-11.297-4.312-15.609,0s-4.312,11.266,0,15.594l233.938,233.938\r\n\t\tc4.312,4.312,11.297,4.312,15.594,0C385.078,376.469,385.078,369.484,380.766,365.172z"},"children":[{"name":"path","attribs":{"d":"M380.766,365.172L146.844,131.234c-4.312-4.312-11.297-4.312-15.609,0s-4.312,11.266,0,15.594l233.938,233.938\r\n\t\tc4.312,4.312,11.297,4.312,15.594,0C385.078,376.469,385.078,369.484,380.766,365.172z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M352,325.094V166.109c0-19.75-3.828-27.797-20.859-17.812l-97.266,58.672L352,325.094z"},"children":[{"name":"path","attribs":{"d":"M352,325.094V166.109c0-19.75-3.828-27.797-20.859-17.812l-97.266,58.672L352,325.094z"},"children":[]}]},{"name":"path","attribs":{"d":"M181.094,208H168c-4.422,0-8,3.578-8,8v80c0,4.422,3.578,8,8,8h67.5l95.641,59.719c3.891,2.281,7.031,3.5,9.656,3.984\r\n\t\t\tL181.094,208z"},"children":[{"name":"path","attribs":{"d":"M181.094,208H168c-4.422,0-8,3.578-8,8v80c0,4.422,3.578,8,8,8h67.5l95.641,59.719c3.891,2.281,7.031,3.5,9.656,3.984\r\n\t\t\tL181.094,208z"},"children":[]}]}]}]},{"name":"path","attribs":{"d":"M380.766,365.172L146.844,131.234c-4.312-4.312-11.297-4.312-15.609,0s-4.312,11.266,0,15.594l233.938,233.938\r\n\t\tc4.312,4.312,11.297,4.312,15.594,0C385.078,376.469,385.078,369.484,380.766,365.172z"},"children":[{"name":"path","attribs":{"d":"M380.766,365.172L146.844,131.234c-4.312-4.312-11.297-4.312-15.609,0s-4.312,11.266,0,15.594l233.938,233.938\r\n\t\tc4.312,4.312,11.297,4.312,15.594,0C385.078,376.469,385.078,369.484,380.766,365.172z"},"children":[]}]}]}]};exports.soundOff=soundOff;var soundOn={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\t\tS397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\t\tS397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"path","attribs":{"d":"M331.141,148.297L232.156,208H168c-4.422,0-8,3.578-8,8v80c0,4.422,3.578,8,8,8h67.5l95.641,59.719\r\n\t\tc17.031,9.969,20.859,1.938,20.859-17.844V166.109C352,146.359,348.172,138.312,331.141,148.297z"},"children":[{"name":"path","attribs":{"d":"M331.141,148.297L232.156,208H168c-4.422,0-8,3.578-8,8v80c0,4.422,3.578,8,8,8h67.5l95.641,59.719\r\n\t\tc17.031,9.969,20.859,1.938,20.859-17.844V166.109C352,146.359,348.172,138.312,331.141,148.297z"},"children":[]}]}]}]};exports.soundOn=soundOn;var speed={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M350.281,169.609l-23.594,21.625C343.016,209.047,352,232.047,352,256c0,52.938-43.062,96-96,96s-96-43.062-96-96\r\n\t\t\ts43.062-96,96-96v-32c-70.578,0-128,57.422-128,128s57.422,128,128,128s128-57.422,128-128\r\n\t\t\tC384,224.016,372.031,193.344,350.281,169.609z"},"children":[{"name":"path","attribs":{"d":"M350.281,169.609l-23.594,21.625C343.016,209.047,352,232.047,352,256c0,52.938-43.062,96-96,96s-96-43.062-96-96\r\n\t\t\ts43.062-96,96-96v-32c-70.578,0-128,57.422-128,128s57.422,128,128,128s128-57.422,128-128\r\n\t\t\tC384,224.016,372.031,193.344,350.281,169.609z"},"children":[]}]},{"name":"polygon","attribs":{"points":"272,262.391 307.188,138.688 240,249.609 248,272 \t\t"},"children":[{"name":"polygon","attribs":{"points":"272,262.391 307.188,138.688 240,249.609 248,272 \t\t"},"children":[]}]}]}]}]}]};exports.speed=speed;var star={"viewBox":"0 0 512 512","children":[{"name":"polygon","attribs":{"points":"295.578,214.41 256.25,134.152 216.484,214.191 128,226.785 191.812,289.363 176.469,377.395 255.688,336.02 \r\n\t334.688,377.848 319.828,289.723 384,227.52 "},"children":[]},{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]};exports.star=star;var stop={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"rect","attribs":{"x":"176","y":"176","width":"160","height":"160"},"children":[{"name":"rect","attribs":{"x":"176","y":"176","width":"160","height":"160"},"children":[]}]}]}]};exports.stop=stop;var sun={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M256,187.078c-38,0-68.922,30.922-68.922,68.922S218,324.922,256,324.922\r\n\t\tS324.922,294,324.922,256S294,187.078,256,187.078z M256,305.234c-27.188,0-49.234-22.047-49.234-49.234\r\n\t\ts22.047-49.234,49.234-49.234s49.234,22.047,49.234,49.234S283.188,305.234,256,305.234z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M256,187.078c-38,0-68.922,30.922-68.922,68.922S218,324.922,256,324.922\r\n\t\tS324.922,294,324.922,256S294,187.078,256,187.078z M256,305.234c-27.188,0-49.234-22.047-49.234-49.234\r\n\t\ts22.047-49.234,49.234-49.234s49.234,22.047,49.234,49.234S283.188,305.234,256,305.234z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M256,128c-5.438,0-9.844,4.406-9.844,9.844v19.688\r\n\t\t\tc0,5.438,4.406,9.844,9.844,9.844s9.844-4.406,9.844-9.844v-19.688C265.844,132.406,261.438,128,256,128z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M256,128c-5.438,0-9.844,4.406-9.844,9.844v19.688\r\n\t\t\tc0,5.438,4.406,9.844,9.844,9.844s9.844-4.406,9.844-9.844v-19.688C265.844,132.406,261.438,128,256,128z"},"children":[]}]},{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M256,344.609c-5.438,0-9.844,4.422-9.844,9.859v19.688\r\n\t\t\tc0,5.438,4.406,9.844,9.844,9.844s9.844-4.406,9.844-9.844v-19.688C265.844,349.031,261.438,344.609,256,344.609z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M256,344.609c-5.438,0-9.844,4.422-9.844,9.859v19.688\r\n\t\t\tc0,5.438,4.406,9.844,9.844,9.844s9.844-4.406,9.844-9.844v-19.688C265.844,349.031,261.438,344.609,256,344.609z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M346.5,165.484c-3.844-3.844-10.078-3.844-13.922,0l-13.922,13.922\r\n\t\t\tc-3.844,3.844-3.844,10.078,0,13.938c3.844,3.844,10.078,3.844,13.922,0l13.922-13.938\r\n\t\t\tC350.344,175.562,350.344,169.344,346.5,165.484z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M346.5,165.484c-3.844-3.844-10.078-3.844-13.922,0l-13.922,13.922\r\n\t\t\tc-3.844,3.844-3.844,10.078,0,13.938c3.844,3.844,10.078,3.844,13.922,0l13.922-13.938\r\n\t\t\tC350.344,175.562,350.344,169.344,346.5,165.484z"},"children":[]}]},{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M193.344,318.672c-3.844-3.844-10.078-3.859-13.922,0L165.5,332.594\r\n\t\t\tc-3.844,3.844-3.844,10.078,0,13.922s10.078,3.844,13.922,0l13.922-13.922C197.188,328.734,197.188,322.516,193.344,318.672z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M193.344,318.672c-3.844-3.844-10.078-3.859-13.922,0L165.5,332.594\r\n\t\t\tc-3.844,3.844-3.844,10.078,0,13.922s10.078,3.844,13.922,0l13.922-13.922C197.188,328.734,197.188,322.516,193.344,318.672z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M128,256c0,5.438,4.406,9.844,9.844,9.844h19.688\r\n\t\t\tc5.438,0,9.844-4.406,9.844-9.844s-4.406-9.844-9.844-9.844h-19.688C132.406,246.156,128,250.562,128,256z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M128,256c0,5.438,4.406,9.844,9.844,9.844h19.688\r\n\t\t\tc5.438,0,9.844-4.406,9.844-9.844s-4.406-9.844-9.844-9.844h-19.688C132.406,246.156,128,250.562,128,256z"},"children":[]}]},{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M344.609,256c0,5.438,4.422,9.844,9.859,9.844h19.688\r\n\t\t\tc5.438,0,9.844-4.406,9.844-9.844s-4.406-9.844-9.844-9.844h-19.688C349.031,246.156,344.609,250.562,344.609,256z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M344.609,256c0,5.438,4.422,9.844,9.859,9.844h19.688\r\n\t\t\tc5.438,0,9.844-4.406,9.844-9.844s-4.406-9.844-9.844-9.844h-19.688C349.031,246.156,344.609,250.562,344.609,256z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M165.484,165.484c-3.844,3.859-3.844,10.078,0,13.922l13.922,13.938\r\n\t\t\tc3.844,3.844,10.078,3.844,13.938,0c3.844-3.859,3.844-10.094,0-13.938l-13.938-13.922\r\n\t\t\tC175.562,161.641,169.344,161.641,165.484,165.484z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M165.484,165.484c-3.844,3.859-3.844,10.078,0,13.922l13.922,13.938\r\n\t\t\tc3.844,3.844,10.078,3.844,13.938,0c3.844-3.859,3.844-10.094,0-13.938l-13.938-13.922\r\n\t\t\tC175.562,161.641,169.344,161.641,165.484,165.484z"},"children":[]}]},{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M318.672,318.656c-3.844,3.844-3.859,10.078,0,13.922l13.922,13.922\r\n\t\t\tc3.844,3.844,10.078,3.844,13.922,0s3.844-10.078,0-13.922l-13.922-13.922C328.734,314.812,322.516,314.812,318.672,318.656z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M318.672,318.656c-3.844,3.844-3.859,10.078,0,13.922l13.922,13.922\r\n\t\t\tc3.844,3.844,10.078,3.844,13.922,0s3.844-10.078,0-13.922l-13.922-13.922C328.734,314.812,322.516,314.812,318.672,318.656z"},"children":[]}]}]}]}]}]};exports.sun=sun;var sunshine={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M189.871,281.594c6.281-29.219,33.469-51.188,66.125-51.188\r\n\t\t\ts59.875,21.969,66.125,51.188h27c-6.625-43.297-45.625-76.797-93.125-76.797c-47.469,0-86.469,33.5-93.094,76.797H189.871z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M189.871,281.594c6.281-29.219,33.469-51.188,66.125-51.188\r\n\t\t\ts59.875,21.969,66.125,51.188h27c-6.625-43.297-45.625-76.797-93.125-76.797c-47.469,0-86.469,33.5-93.094,76.797H189.871z"},"children":[]}]},{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M255.996,179.203c7.469,0,13.5-5.734,13.5-12.797v-25.609\r\n\t\t\tc0-7.062-6.031-12.797-13.5-12.797c-7.453,0-13.5,5.734-13.5,12.797v25.609C242.496,173.469,248.543,179.203,255.996,179.203z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M255.996,179.203c7.469,0,13.5-5.734,13.5-12.797v-25.609\r\n\t\t\tc0-7.062-6.031-12.797-13.5-12.797c-7.453,0-13.5,5.734-13.5,12.797v25.609C242.496,173.469,248.543,179.203,255.996,179.203z"},"children":[]}]},{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M380.043,176.734c-5.281-5-13.812-5-19.078,0l-19.078,18.109\r\n\t\t\tc-5.281,5-5.281,13.094,0,18.094c5.266,5,13.812,5,19.078,0l19.078-18.094C385.324,189.844,385.324,181.734,380.043,176.734z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M380.043,176.734c-5.281-5-13.812-5-19.078,0l-19.078,18.109\r\n\t\t\tc-5.281,5-5.281,13.094,0,18.094c5.266,5,13.812,5,19.078,0l19.078-18.094C385.324,189.844,385.324,181.734,380.043,176.734z"},"children":[]}]},{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M170.105,194.844l-19.078-18.109c-5.266-5-13.812-5-19.094,0\r\n\t\t\tc-5.25,5-5.25,13.109,0,18.109l19.094,18.094c5.266,5,13.797,5,19.078,0C175.371,207.938,175.371,199.844,170.105,194.844z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M170.105,194.844l-19.078-18.109c-5.266-5-13.812-5-19.094,0\r\n\t\t\tc-5.25,5-5.25,13.109,0,18.109l19.094,18.094c5.266,5,13.797,5,19.078,0C175.371,207.938,175.371,199.844,170.105,194.844z"},"children":[]}]},{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M336.98,307.203H175.027c-7.453,0-13.5,5.734-13.5,12.797\r\n\t\t\ts6.047,12.797,13.5,12.797H336.98c7.453,0,13.5-5.734,13.5-12.797S344.434,307.203,336.98,307.203z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M336.98,307.203H175.027c-7.453,0-13.5,5.734-13.5,12.797\r\n\t\t\ts6.047,12.797,13.5,12.797H336.98c7.453,0,13.5-5.734,13.5-12.797S344.434,307.203,336.98,307.203z"},"children":[]}]},{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M309.98,358.406H202.012c-7.453,0-13.484,5.719-13.484,12.797\r\n\t\t\tc0,7.062,6.031,12.797,13.484,12.797H309.98c7.469,0,13.516-5.734,13.516-12.797C323.496,364.125,317.449,358.406,309.98,358.406z\r\n\t\t\t"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M309.98,358.406H202.012c-7.453,0-13.484,5.719-13.484,12.797\r\n\t\t\tc0,7.062,6.031,12.797,13.484,12.797H309.98c7.469,0,13.516-5.734,13.516-12.797C323.496,364.125,317.449,358.406,309.98,358.406z\r\n\t\t\t"},"children":[]}]}]}]}]}]};exports.sunshine=sunshine;var telephone={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"path","attribs":{"d":"M327.125,383.969c5.703,0.016,56.875-37.828,56.875-42.656s-57.266-40.906-62.219-40.906s-21.578,19.938-26.062,22.156\r\n\tc-4.5,2.219-32.5,1.422-63.703-29.781c-31.219-31.188-41.875-67.109-41.875-72.75s26.031-23.062,26.75-27.156\r\n\tS182.578,128,176.891,128S128,180.5,128,184.875s3.953,60.656,75.219,131.906S321.422,383.938,327.125,383.969z"},"children":[]}]};exports.telephone=telephone;var textAlignLeft={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"144","y":"144","width":"128","height":"32"},"children":[{"name":"rect","attribs":{"x":"144","y":"144","width":"128","height":"32"},"children":[]}]},{"name":"rect","attribs":{"x":"144","y":"208","width":"160","height":"32"},"children":[{"name":"rect","attribs":{"x":"144","y":"208","width":"160","height":"32"},"children":[]}]},{"name":"rect","attribs":{"x":"144","y":"272","width":"192","height":"32"},"children":[{"name":"rect","attribs":{"x":"144","y":"272","width":"192","height":"32"},"children":[]}]},{"name":"rect","attribs":{"x":"144","y":"336","width":"224","height":"32"},"children":[{"name":"rect","attribs":{"x":"144","y":"336","width":"224","height":"32"},"children":[]}]}]}]};exports.textAlignLeft=textAlignLeft;var textAlignRight={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"240","y":"144","width":"128","height":"32"},"children":[{"name":"rect","attribs":{"x":"240","y":"144","width":"128","height":"32"},"children":[]}]},{"name":"rect","attribs":{"x":"208","y":"208","width":"160","height":"32"},"children":[{"name":"rect","attribs":{"x":"208","y":"208","width":"160","height":"32"},"children":[]}]},{"name":"rect","attribs":{"x":"176","y":"272","width":"192","height":"32"},"children":[{"name":"rect","attribs":{"x":"176","y":"272","width":"192","height":"32"},"children":[]}]},{"name":"rect","attribs":{"x":"144","y":"336","width":"224","height":"32"},"children":[{"name":"rect","attribs":{"x":"144","y":"336","width":"224","height":"32"},"children":[]}]}]}]};exports.textAlignRight=textAlignRight;var textBold={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"path","attribs":{"d":"M299.422,249.219c23.031,4.969,39.219,10.969,48.531,18.016C361.312,277.25,368,290.25,368,306.219\r\n\tc0,16.844-7.344,30.781-22.031,41.797C327.953,361.344,301.75,368,267.375,368H144v-6.109c11.219,0,18.828-0.969,22.828-2.891\r\n\tc4-1.938,6.797-4.438,8.422-7.516c1.609-3.094,2.406-10.688,2.406-22.797V183.312c0-12.109-0.797-19.734-2.406-22.875\r\n\tc-1.625-3.141-4.453-5.656-8.5-7.516c-4.062-1.875-11.656-2.812-22.75-2.812V144h116.391c27.812,0,47.5,2.281,59.078,6.844\r\n\tc11.578,4.578,20.719,11.406,27.406,20.5c6.688,9.078,10.031,18.75,10.031,28.984c0,10.797-4.25,20.406-12.719,28.828\r\n\tC335.703,237.578,320.781,244.281,299.422,249.219z M234.25,257.656v71.859l-0.188,8.25c0,5.953,1.641,10.438,4.938,13.469\r\n\tc3.281,3.031,8.125,4.547,14.594,4.547c9.531,0,18.344-1.953,26.406-5.875c8.062-3.906,14.234-9.578,18.531-17.016\r\n\tc4.297-7.422,6.438-15.719,6.438-24.859c0-10.453-2.625-19.844-7.875-28.156s-12.469-14.125-21.656-17.438\r\n\tC266.234,259.141,252.5,257.531,234.25,257.656z M234.25,244.766c16.938,0,29.453-1.766,37.5-5.281\r\n\tc8.062-3.531,14.25-8.484,18.531-14.859c4.312-6.406,6.453-14.547,6.453-24.469c0-9.906-2.125-18.031-6.359-24.359\r\n\ts-10.281-11.141-18.172-14.453c-7.875-3.312-20.531-4.906-37.953-4.781V244.766z"},"children":[]}]};exports.textBold=textBold;var textCenter={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"144","y":"336","width":"224","height":"32"},"children":[{"name":"rect","attribs":{"x":"144","y":"336","width":"224","height":"32"},"children":[]}]},{"name":"rect","attribs":{"x":"176","y":"272","width":"160","height":"32"},"children":[{"name":"rect","attribs":{"x":"176","y":"272","width":"160","height":"32"},"children":[]}]},{"name":"rect","attribs":{"x":"176","y":"208","width":"160","height":"32"},"children":[{"name":"rect","attribs":{"x":"176","y":"208","width":"160","height":"32"},"children":[]}]},{"name":"rect","attribs":{"x":"144","y":"144","width":"224","height":"32"},"children":[{"name":"rect","attribs":{"x":"144","y":"144","width":"224","height":"32"},"children":[]}]}]}]};exports.textCenter=textCenter;var textHeight={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M301.891,144L304,196.531h-5.344c-1.016-9.25-2.422-15.859-4.219-19.828c-2.875-6.375-6.766-11.078-11.594-14.109\r\n\t\tc-4.812-3.031-11.172-4.562-19.047-4.562h-26.859v171.125c0,13.812,1.266,22.391,3.797,25.781\r\n\t\tc3.562,4.656,9.047,6.953,16.453,6.953h6.609V368h-80.859v-6.109h6.75c8.062,0,13.781-2.859,17.156-8.594\r\n\t\tc2.062-3.516,3.094-11.562,3.094-24.141V158.031h-22.922c-8.891,0-15.234,0.766-18.984,2.328c-4.875,2.094-9.031,6.094-12.5,12.047\r\n\t\ts-5.531,14-6.188,24.125H144L146.25,144H301.891z"},"children":[{"name":"path","attribs":{"d":"M301.891,144L304,196.531h-5.344c-1.016-9.25-2.422-15.859-4.219-19.828c-2.875-6.375-6.766-11.078-11.594-14.109\r\n\t\tc-4.812-3.031-11.172-4.562-19.047-4.562h-26.859v171.125c0,13.812,1.266,22.391,3.797,25.781\r\n\t\tc3.562,4.656,9.047,6.953,16.453,6.953h6.609V368h-80.859v-6.109h6.75c8.062,0,13.781-2.859,17.156-8.594\r\n\t\tc2.062-3.516,3.094-11.562,3.094-24.141V158.031h-22.922c-8.891,0-15.234,0.766-18.984,2.328c-4.875,2.094-9.031,6.094-12.5,12.047\r\n\t\ts-5.531,14-6.188,24.125H144L146.25,144H301.891z"},"children":[]}]},{"name":"polygon","attribs":{"points":"352,176 368,176 344,144 320,176 336,176 336,336 320,336 344,368 368,336 352,336 \t"},"children":[{"name":"polygon","attribs":{"points":"352,176 368,176 344,144 320,176 336,176 336,336 320,336 344,368 368,336 352,336 \t"},"children":[]}]}]}]};exports.textHeight=textHeight;var textJustifyCenter={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"144","y":"336","width":"224","height":"32"},"children":[{"name":"rect","attribs":{"x":"144","y":"336","width":"224","height":"32"},"children":[]}]},{"name":"rect","attribs":{"x":"144","y":"272","width":"224","height":"32"},"children":[{"name":"rect","attribs":{"x":"144","y":"272","width":"224","height":"32"},"children":[]}]},{"name":"rect","attribs":{"x":"144","y":"208","width":"224","height":"32"},"children":[{"name":"rect","attribs":{"x":"144","y":"208","width":"224","height":"32"},"children":[]}]},{"name":"rect","attribs":{"x":"144","y":"144","width":"224","height":"32"},"children":[{"name":"rect","attribs":{"x":"144","y":"144","width":"224","height":"32"},"children":[]}]}]}]};exports.textJustifyCenter=textJustifyCenter;var textJustifyLeft={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"256","y":"144","width":"80","height":"32"},"children":[{"name":"rect","attribs":{"x":"256","y":"144","width":"80","height":"32"},"children":[]}]},{"name":"rect","attribs":{"x":"256","y":"208","width":"96","height":"32"},"children":[{"name":"rect","attribs":{"x":"256","y":"208","width":"96","height":"32"},"children":[]}]},{"name":"rect","attribs":{"x":"256","y":"272","width":"112","height":"32"},"children":[{"name":"rect","attribs":{"x":"256","y":"272","width":"112","height":"32"},"children":[]}]},{"name":"rect","attribs":{"x":"256","y":"336","width":"128","height":"32"},"children":[{"name":"rect","attribs":{"x":"256","y":"336","width":"128","height":"32"},"children":[]}]},{"name":"rect","attribs":{"x":"224","y":"144","width":"16","height":"224"},"children":[{"name":"rect","attribs":{"x":"224","y":"144","width":"16","height":"224"},"children":[]}]},{"name":"polygon","attribs":{"points":"128,240 176,240 176,224 208,256 176,288 176,272 128,272 \t"},"children":[{"name":"polygon","attribs":{"points":"128,240 176,240 176,224 208,256 176,288 176,272 128,272 \t"},"children":[]}]}]}]};exports.textJustifyLeft=textJustifyLeft;var textJustifyRight={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"176","y":"144","width":"80","height":"32"},"children":[{"name":"rect","attribs":{"x":"176","y":"144","width":"80","height":"32"},"children":[]}]},{"name":"rect","attribs":{"x":"160","y":"208","width":"96","height":"32"},"children":[{"name":"rect","attribs":{"x":"160","y":"208","width":"96","height":"32"},"children":[]}]},{"name":"rect","attribs":{"x":"144","y":"272","width":"112","height":"32"},"children":[{"name":"rect","attribs":{"x":"144","y":"272","width":"112","height":"32"},"children":[]}]},{"name":"rect","attribs":{"x":"128","y":"336","width":"128","height":"32"},"children":[{"name":"rect","attribs":{"x":"128","y":"336","width":"128","height":"32"},"children":[]}]},{"name":"rect","attribs":{"x":"272","y":"144","width":"16","height":"224"},"children":[{"name":"rect","attribs":{"x":"272","y":"144","width":"16","height":"224"},"children":[]}]},{"name":"polygon","attribs":{"points":"384,240 336,240 336,224 304,256 336,288 336,272 384,272 \t"},"children":[{"name":"polygon","attribs":{"points":"384,240 336,240 336,224 304,256 336,288 336,272 384,272 \t"},"children":[]}]}]}]};exports.textJustifyRight=textJustifyRight;var textNormal={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"path","attribs":{"d":"M287.266,294.688h-81.672l-14.312,34.578C187.75,337.75,186,344.094,186,348.312c0,3.344,1.531,6.281,4.594,8.797\r\n\tc3.047,2.547,9.656,4.172,19.828,4.938V368H144v-5.953c8.812-1.625,14.5-3.719,17.109-6.312\r\n\tc5.297-5.172,11.141-15.641,17.578-31.484L252.891,144h5.453l73.422,182.188c5.906,14.625,11.25,24.156,16.094,28.484\r\n\tc4.812,4.391,11.531,6.828,20.141,7.375V368h-83.219v-5.953c8.406-0.438,14.062-1.875,17.047-4.375\r\n\tc2.922-2.469,4.406-5.484,4.406-9.031c0-4.75-2.062-12.219-6.203-22.453L287.266,294.688z M282.906,282.734l-35.781-88.5\r\n\tl-36.703,88.5H282.906z"},"children":[]}]};exports.textNormal=textNormal;var textParagraph={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M144,144v32h224v-32H144z M288,192H144v32h144V192z M224,240h-80v32h80V240z\r\n\t\t\t M144,320h192v-32H144V320z M144,368h128v-32H144V368z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M144,144v32h224v-32H144z M288,192H144v32h144V192z M224,240h-80v32h80V240z\r\n\t\t\t M144,320h192v-32H144V320z M144,368h128v-32H144V368z"},"children":[]}]}]}]}]}]};exports.textParagraph=textParagraph;var textSizeReduce={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"path","attribs":{"d":"M286.344,176L288,213.531h-4.234c-0.859-6.625-1.938-11.312-3.391-14.156c-2.312-4.594-5.406-7.938-9.281-10.094\r\n\t\tc-3.844-2.156-8.945-3.25-15.242-3.25h-21.477V308.25c0,9.875,1,15.984,3.031,18.438c2.836,3.312,7.227,4.953,13.156,4.953h5.289\r\n\t\tV336h-64.703v-4.359h5.43c6.438,0,11.023-2.047,13.719-6.156c1.648-2.516,2.469-8.25,2.469-17.234V186.031h-18.344\r\n\t\tc-7.117,0-12.195,0.562-15.172,1.656c-3.922,1.469-7.242,4.359-10.008,8.594c-2.766,4.266-4.43,10-4.953,17.25H160L161.82,176\r\n\t\tH286.344z"},"children":[{"name":"path","attribs":{"d":"M286.344,176L288,213.531h-4.234c-0.859-6.625-1.938-11.312-3.391-14.156c-2.312-4.594-5.406-7.938-9.281-10.094\r\n\t\tc-3.844-2.156-8.945-3.25-15.242-3.25h-21.477V308.25c0,9.875,1,15.984,3.031,18.438c2.836,3.312,7.227,4.953,13.156,4.953h5.289\r\n\t\tV336h-64.703v-4.359h5.43c6.438,0,11.023-2.047,13.719-6.156c1.648-2.516,2.469-8.25,2.469-17.234V186.031h-18.344\r\n\t\tc-7.117,0-12.195,0.562-15.172,1.656c-3.922,1.469-7.242,4.359-10.008,8.594c-2.766,4.266-4.43,10-4.953,17.25H160L161.82,176\r\n\t\tH286.344z"},"children":[]}]},{"name":"rect","attribs":{"x":"279.5","y":"264.5","width":"64","height":"16"},"children":[{"name":"rect","attribs":{"x":"279.5","y":"264.5","width":"64","height":"16"},"children":[]}]}]}]};exports.textSizeReduce=textSizeReduce;var textSizeUpper={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"path","attribs":{"d":"M285.938,160L288,205.031h-5.297c-1.078-7.938-2.406-13.594-4.234-17c-2.906-5.469-6.75-9.5-11.594-12.094\r\n\t\tc-4.828-2.594-11.195-3.906-19.055-3.906h-26.852v146.656c0,11.875,1.25,19.203,3.781,22.125c3.555,4,9.039,5.953,16.453,5.953\r\n\t\th6.617V352H166.93v-5.234h6.789c8.047,0,13.789-2.453,17.156-7.375c2.055-3.016,3.078-9.906,3.078-20.703V172.031h-22.922\r\n\t\tc-8.898,0-15.242,0.656-18.969,2c-4.906,1.781-9.055,5.219-12.508,10.312c-3.453,5.109-5.539,12-6.188,20.688H128L130.273,160\r\n\t\tH285.938z"},"children":[{"name":"path","attribs":{"d":"M285.938,160L288,205.031h-5.297c-1.078-7.938-2.406-13.594-4.234-17c-2.906-5.469-6.75-9.5-11.594-12.094\r\n\t\tc-4.828-2.594-11.195-3.906-19.055-3.906h-26.852v146.656c0,11.875,1.25,19.203,3.781,22.125c3.555,4,9.039,5.953,16.453,5.953\r\n\t\th6.617V352H166.93v-5.234h6.789c8.047,0,13.789-2.453,17.156-7.375c2.055-3.016,3.078-9.906,3.078-20.703V172.031h-22.922\r\n\t\tc-8.898,0-15.242,0.656-18.969,2c-4.906,1.781-9.055,5.219-12.508,10.312c-3.453,5.109-5.539,12-6.188,20.688H128L130.273,160\r\n\t\tH285.938z"},"children":[]}]},{"name":"rect","attribs":{"x":"295.5","y":"264.5","width":"80","height":"16"},"children":[{"name":"rect","attribs":{"x":"295.5","y":"264.5","width":"80","height":"16"},"children":[]}]},{"name":"rect","attribs":{"x":"327.5","y":"232.5","width":"16","height":"80"},"children":[{"name":"rect","attribs":{"x":"327.5","y":"232.5","width":"16","height":"80"},"children":[]}]}]}]};exports.textSizeUpper=textSizeUpper;var textWidth={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M349.438,128L352,173.031h-6.406c-1.25-7.938-2.938-13.594-5.062-17c-3.469-5.469-8.156-9.5-13.906-12.094\r\n\t\tc-5.781-2.594-13.438-3.906-22.875-3.906h-32.219v146.688c0,11.812,1.516,19.172,4.531,22.094\r\n\t\tc4.281,3.969,10.875,5.953,19.75,5.953h7.938V320h-97v-5.234h8.094c9.656,0,16.516-2.453,20.562-7.375\r\n\t\tc2.5-3.016,3.719-9.906,3.719-20.672V140.031h-27.5c-10.688,0-18.281,0.656-22.781,1.984c-5.844,1.797-10.844,5.234-15,10.328\r\n\t\tc-4.172,5.109-6.641,12-7.438,20.688H160L162.688,128H349.438z"},"children":[{"name":"path","attribs":{"d":"M349.438,128L352,173.031h-6.406c-1.25-7.938-2.938-13.594-5.062-17c-3.469-5.469-8.156-9.5-13.906-12.094\r\n\t\tc-5.781-2.594-13.438-3.906-22.875-3.906h-32.219v146.688c0,11.812,1.516,19.172,4.531,22.094\r\n\t\tc4.281,3.969,10.875,5.953,19.75,5.953h7.938V320h-97v-5.234h8.094c9.656,0,16.516-2.453,20.562-7.375\r\n\t\tc2.5-3.016,3.719-9.906,3.719-20.672V140.031h-27.5c-10.688,0-18.281,0.656-22.781,1.984c-5.844,1.797-10.844,5.234-15,10.328\r\n\t\tc-4.172,5.109-6.641,12-7.438,20.688H160L162.688,128H349.438z"},"children":[]}]},{"name":"polygon","attribs":{"points":"352,360 320,336 320,352 192,352 192,336 160,360 192,384 192,368 320,368 320,384 \t"},"children":[{"name":"polygon","attribs":{"points":"352,360 320,336 320,352 192,352 192,336 160,360 192,384 192,368 320,368 320,384 \t"},"children":[]}]}]}]};exports.textWidth=textWidth;var threePointsBottom={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"path","attribs":{"d":"M351.938,320C334.266,320,320,334.297,320,351.969S334.266,384,351.938,384C369.672,384,384,369.641,384,351.969\r\n\t\tS369.672,320,351.938,320z"},"children":[{"name":"path","attribs":{"d":"M351.938,320C334.266,320,320,334.297,320,351.969S334.266,384,351.938,384C369.672,384,384,369.641,384,351.969\r\n\t\tS369.672,320,351.938,320z"},"children":[]}]},{"name":"path","attribs":{"d":"M255.938,320C238.266,320,224,334.297,224,351.969S238.266,384,255.938,384C273.672,384,288,369.641,288,351.969\r\n\t\tS273.672,320,255.938,320z"},"children":[{"name":"path","attribs":{"d":"M255.938,320C238.266,320,224,334.297,224,351.969S238.266,384,255.938,384C273.672,384,288,369.641,288,351.969\r\n\t\tS273.672,320,255.938,320z"},"children":[]}]},{"name":"path","attribs":{"d":"M160,320c-17.688,0-32,14.297-32,31.969S142.312,384,160,384c17.656,0,32-14.359,32-32.031S177.656,320,160,320z"},"children":[{"name":"path","attribs":{"d":"M160,320c-17.688,0-32,14.297-32,31.969S142.312,384,160,384c17.656,0,32-14.359,32-32.031S177.656,320,160,320z"},"children":[]}]}]}]};exports.threePointsBottom=threePointsBottom;var threePointsTop={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"path","attribs":{"d":"M351.938,128C334.266,128,320,142.297,320,159.969S334.266,192,351.938,192C369.672,192,384,177.641,384,159.969\r\n\t\tS369.672,128,351.938,128z"},"children":[{"name":"path","attribs":{"d":"M351.938,128C334.266,128,320,142.297,320,159.969S334.266,192,351.938,192C369.672,192,384,177.641,384,159.969\r\n\t\tS369.672,128,351.938,128z"},"children":[]}]},{"name":"path","attribs":{"d":"M255.938,128C238.266,128,224,142.297,224,159.969S238.266,192,255.938,192C273.672,192,288,177.641,288,159.969\r\n\t\tS273.672,128,255.938,128z"},"children":[{"name":"path","attribs":{"d":"M255.938,128C238.266,128,224,142.297,224,159.969S238.266,192,255.938,192C273.672,192,288,177.641,288,159.969\r\n\t\tS273.672,128,255.938,128z"},"children":[]}]},{"name":"path","attribs":{"d":"M160,128c-17.688,0-32,14.297-32,31.969S142.312,192,160,192c17.656,0,32-14.359,32-32.031S177.656,128,160,128z"},"children":[{"name":"path","attribs":{"d":"M160,128c-17.688,0-32,14.297-32,31.969S142.312,192,160,192c17.656,0,32-14.359,32-32.031S177.656,128,160,128z"},"children":[]}]}]}]};exports.threePointsTop=threePointsTop;var threePoints={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"path","attribs":{"d":"M351.938,224C334.266,224,320,238.297,320,255.969S334.266,288,351.938,288C369.672,288,384,273.641,384,255.969\r\n\t\tS369.672,224,351.938,224z"},"children":[{"name":"path","attribs":{"d":"M351.938,224C334.266,224,320,238.297,320,255.969S334.266,288,351.938,288C369.672,288,384,273.641,384,255.969\r\n\t\tS369.672,224,351.938,224z"},"children":[]}]},{"name":"path","attribs":{"d":"M255.938,224C238.266,224,224,238.297,224,255.969S238.266,288,255.938,288C273.672,288,288,273.641,288,255.969\r\n\t\tS273.672,224,255.938,224z"},"children":[{"name":"path","attribs":{"d":"M255.938,224C238.266,224,224,238.297,224,255.969S238.266,288,255.938,288C273.672,288,288,273.641,288,255.969\r\n\t\tS273.672,224,255.938,224z"},"children":[]}]},{"name":"path","attribs":{"d":"M160,224c-17.688,0-32,14.297-32,31.969S142.312,288,160,288c17.656,0,32-14.359,32-32.031S177.656,224,160,224z"},"children":[{"name":"path","attribs":{"d":"M160,224c-17.688,0-32,14.297-32,31.969S142.312,288,160,288c17.656,0,32-14.359,32-32.031S177.656,224,160,224z"},"children":[]}]}]}]};exports.threePoints=threePoints;var topBottom={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\t\tS397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\t\tS397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"208,304 256,352 304,304 272,304 272,208 304,208 256,160 208,208 \r\n\t\t\t240,208 240,304 \t\t"},"children":[{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"208,304 256,352 304,304 272,304 272,208 304,208 256,160 208,208 \r\n\t\t\t240,208 240,304 \t\t"},"children":[]}]},{"name":"rect","attribs":{"x":"192","y":"128","fill-rule":"evenodd","clip-rule":"evenodd","width":"128","height":"16"},"children":[{"name":"rect","attribs":{"x":"192","y":"128","fill-rule":"evenodd","clip-rule":"evenodd","width":"128","height":"16"},"children":[]}]},{"name":"rect","attribs":{"x":"192","y":"368","fill-rule":"evenodd","clip-rule":"evenodd","width":"128","height":"16"},"children":[{"name":"rect","attribs":{"x":"192","y":"368","fill-rule":"evenodd","clip-rule":"evenodd","width":"128","height":"16"},"children":[]}]}]}]}]}]};exports.topBottom=topBottom;var triplePoints={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"path","attribs":{"d":"M352,128c-17.672,0-32,14.328-32,32c0,1.781,0.25,3.5,0.531,5.188l-139.812,66.594C175.125,227,167.938,224,160,224\r\n\tc-17.672,0-32,14.328-32,32s14.328,32,32,32c6.781,0,13.062-2.156,18.25-5.75l64.938,56.062C241.203,342.484,240,347.078,240,352\r\n\tc0,17.672,14.328,32,32,32s32-14.328,32-32s-14.328-32-32-32c-6.938,0-13.328,2.266-18.562,6.031l-64.812-55.969\r\n\tc2.094-4.266,3.375-9,3.375-14.062c0-3.844-0.781-7.484-2.031-10.906l137.078-65.281C332.906,187.188,341.844,192,352,192\r\n\tc17.672,0,32-14.328,32-32S369.672,128,352,128z M144,256c0-8.812,7.188-16,16-16s16,7.188,16,16s-7.188,16-16,16\r\n\tS144,264.812,144,256z M272,336c8.828,0,16,7.172,16,16s-7.172,16-16,16c-8.812,0-16-7.172-16-16S263.188,336,272,336z M352,176\r\n\tc-8.828,0-16-7.188-16-16s7.172-16,16-16s16,7.188,16,16S360.828,176,352,176z"},"children":[]}]};exports.triplePoints=triplePoints;var underline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M288.25,149.125V144H352v5.125h-6.75c-7.125,0-12.531,3.094-16.344,9.25c-1.844,2.875-2.781,9.516-2.781,19.938v76.062\r\n\t\t\tc0,18.828-1.844,33.422-5.375,43.781c-3.594,10.391-10.625,19.281-21.156,26.703C289.125,332.281,274.875,336,256.781,336\r\n\t\t\tc-19.641,0-34.562-3.547-44.719-10.672c-10.188-7.062-17.406-16.625-21.656-28.609c-2.812-8.219-4.25-23.609-4.25-46.219v-73.312\r\n\t\t\tc0-11.531-1.531-19.062-4.578-22.688c-3.062-3.578-7.984-5.375-14.828-5.375H160V144h77.812v5.125h-6.875\r\n\t\t\tc-7.469,0-12.75,2.438-15.969,7.328c-2.188,3.312-3.312,10.234-3.312,20.734v81.75c0,7.297,0.625,15.641,1.906,25.047\r\n\t\t\tc1.281,9.422,3.625,16.75,7,22s8.219,9.594,14.531,13.016c6.312,3.391,14.094,5.109,23.297,5.109\r\n\t\t\tc11.797,0,22.297-2.672,31.609-8.016c9.312-5.375,15.625-12.219,19.062-20.562c3.406-8.344,5.094-22.453,5.094-42.391v-75.953\r\n\t\t\tc0-11.703-1.25-19.031-3.75-21.969c-3.406-4.078-8.531-6.094-15.344-6.094H288.25z"},"children":[{"name":"path","attribs":{"d":"M288.25,149.125V144H352v5.125h-6.75c-7.125,0-12.531,3.094-16.344,9.25c-1.844,2.875-2.781,9.516-2.781,19.938v76.062\r\n\t\t\tc0,18.828-1.844,33.422-5.375,43.781c-3.594,10.391-10.625,19.281-21.156,26.703C289.125,332.281,274.875,336,256.781,336\r\n\t\t\tc-19.641,0-34.562-3.547-44.719-10.672c-10.188-7.062-17.406-16.625-21.656-28.609c-2.812-8.219-4.25-23.609-4.25-46.219v-73.312\r\n\t\t\tc0-11.531-1.531-19.062-4.578-22.688c-3.062-3.578-7.984-5.375-14.828-5.375H160V144h77.812v5.125h-6.875\r\n\t\t\tc-7.469,0-12.75,2.438-15.969,7.328c-2.188,3.312-3.312,10.234-3.312,20.734v81.75c0,7.297,0.625,15.641,1.906,25.047\r\n\t\t\tc1.281,9.422,3.625,16.75,7,22s8.219,9.594,14.531,13.016c6.312,3.391,14.094,5.109,23.297,5.109\r\n\t\t\tc11.797,0,22.297-2.672,31.609-8.016c9.312-5.375,15.625-12.219,19.062-20.562c3.406-8.344,5.094-22.453,5.094-42.391v-75.953\r\n\t\t\tc0-11.703-1.25-19.031-3.75-21.969c-3.406-4.078-8.531-6.094-15.344-6.094H288.25z"},"children":[]}]}]}]},{"name":"rect","attribs":{"x":"160","y":"352","width":"192","height":"16"},"children":[{"name":"rect","attribs":{"x":"160","y":"352","width":"192","height":"16"},"children":[]}]}]}]};exports.underline=underline;var uploadSelectionCircle={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"208.109,240.039 240.039,240.039 240.039,319.867 271.969,319.867 271.969,240.039 303.891,240.039 256,192.148 \t\r\n\t\t"},"children":[{"name":"polygon","attribs":{"points":"208.109,240.039 240.039,240.039 240.039,319.867 271.969,319.867 271.969,240.039 303.891,240.039 256,192.148 \t\r\n\t\t"},"children":[]}]},{"name":"path","attribs":{"d":"M189.484,165.883c-9.445,6.969-17.711,15.359-24.539,24.906l12.961,9.281c5.867-8.188,12.961-15.344,21.062-21.359\r\n\t\tL189.484,165.883z"},"children":[{"name":"path","attribs":{"d":"M189.484,165.883c-9.445,6.969-17.711,15.359-24.539,24.906l12.961,9.281c5.867-8.188,12.961-15.344,21.062-21.359\r\n\t\tL189.484,165.883z"},"children":[]}]},{"name":"path","attribs":{"d":"M255.164,159.961l-0.148-15.969c-11.789,0.109-23.398,2.031-34.5,5.75l5.055,15.125\r\n\t\tC235.078,161.695,245.023,160.039,255.164,159.961z"},"children":[{"name":"path","attribs":{"d":"M255.164,159.961l-0.148-15.969c-11.789,0.109-23.398,2.031-34.5,5.75l5.055,15.125\r\n\t\tC235.078,161.695,245.023,160.039,255.164,159.961z"},"children":[]}]},{"name":"path","attribs":{"d":"M190.516,346.867c9.539,6.875,20.047,12.203,31.227,15.781l4.891-15.203c-9.586-3.062-18.594-7.609-26.766-13.516\r\n\t\tL190.516,346.867z"},"children":[{"name":"path","attribs":{"d":"M190.516,346.867c9.539,6.875,20.047,12.203,31.227,15.781l4.891-15.203c-9.586-3.062-18.594-7.609-26.766-13.516\r\n\t\tL190.516,346.867z"},"children":[]}]},{"name":"path","attribs":{"d":"M149.633,291.18c3.703,11.141,9.094,21.594,16.07,31.078l12.852-9.453c-5.953-8.141-10.602-17.094-13.766-26.641\r\n\t\tL149.633,291.18z"},"children":[{"name":"path","attribs":{"d":"M149.633,291.18c3.703,11.141,9.094,21.594,16.07,31.078l12.852-9.453c-5.953-8.141-10.602-17.094-13.766-26.641\r\n\t\tL149.633,291.18z"},"children":[]}]},{"name":"path","attribs":{"d":"M164.453,226.883l-15.219-4.828c-3.469,10.953-5.234,22.359-5.234,33.938v0.609l15.961-0.609\r\n\t\tC159.961,246.055,161.477,236.258,164.453,226.883z"},"children":[{"name":"path","attribs":{"d":"M164.453,226.883l-15.219-4.828c-3.469,10.953-5.234,22.359-5.234,33.938v0.609l15.961-0.609\r\n\t\tC159.961,246.055,161.477,236.258,164.453,226.883z"},"children":[]}]},{"name":"path","attribs":{"d":"M345.938,189.227l-12.828,9.516c6.047,8.109,10.734,17.047,13.938,26.547l15.141-5.094\r\n\t\tC358.453,209.102,352.984,198.664,345.938,189.227z"},"children":[{"name":"path","attribs":{"d":"M345.938,189.227l-12.828,9.516c6.047,8.109,10.734,17.047,13.938,26.547l15.141-5.094\r\n\t\tC358.453,209.102,352.984,198.664,345.938,189.227z"},"children":[]}]},{"name":"path","attribs":{"d":"M363.25,255.164l-11.219,0.828c0,10.109-1.578,20.078-4.672,29.641l15.203,4.906c3.609-11.141,5.438-22.75,5.438-34.859\r\n\t\tL363.25,255.164z"},"children":[{"name":"path","attribs":{"d":"M363.25,255.164l-11.219,0.828c0,10.109-1.578,20.078-4.672,29.641l15.203,4.906c3.609-11.141,5.438-22.75,5.438-34.859\r\n\t\tL363.25,255.164z"},"children":[]}]},{"name":"path","attribs":{"d":"M312.547,333.617l9.422,12.875c9.516-6.938,17.828-15.281,24.703-24.766l-12.906-9.391\r\n\t\tC327.859,320.492,320.703,327.633,312.547,333.617z"},"children":[{"name":"path","attribs":{"d":"M312.547,333.617l9.422,12.875c9.516-6.938,17.828-15.281,24.703-24.766l-12.906-9.391\r\n\t\tC327.859,320.492,320.703,327.633,312.547,333.617z"},"children":[]}]},{"name":"path","attribs":{"d":"M289.625,149.133l-4.812,15.234c9.594,3.016,18.641,7.516,26.859,13.375l9.281-13.016\r\n\t\tC311.344,157.914,300.797,152.648,289.625,149.133z"},"children":[{"name":"path","attribs":{"d":"M289.625,149.133l-4.812,15.234c9.594,3.016,18.641,7.516,26.859,13.375l9.281-13.016\r\n\t\tC311.344,157.914,300.797,152.648,289.625,149.133z"},"children":[]}]},{"name":"path","attribs":{"d":"M256.273,352.055l0.062,15.953c11.828-0.047,23.43-1.906,34.539-5.531l-4.984-15.172\r\n\t\tC276.406,350.398,266.438,351.992,256.273,352.055z"},"children":[{"name":"path","attribs":{"d":"M256.273,352.055l0.062,15.953c11.828-0.047,23.43-1.906,34.539-5.531l-4.984-15.172\r\n\t\tC276.406,350.398,266.438,351.992,256.273,352.055z"},"children":[]}]}]}]};exports.uploadSelectionCircle=uploadSelectionCircle;var uploadSelection={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"144.125","y":"224.031","width":"15.984","height":"63.922"},"children":[{"name":"rect","attribs":{"x":"144.125","y":"224.031","width":"15.984","height":"63.922"},"children":[]}]},{"name":"path","attribs":{"d":"M167.969,368h8v-15.984h-8c-4.391,0-7.984-3.578-7.984-8v-7.984H144v7.984C144,357.234,154.75,368,167.969,368z"},"children":[{"name":"path","attribs":{"d":"M167.969,368h8v-15.984h-8c-4.391,0-7.984-3.578-7.984-8v-7.984H144v7.984C144,357.234,154.75,368,167.969,368z"},"children":[]}]},{"name":"rect","attribs":{"x":"224.031","y":"351.891","width":"63.938","height":"15.984"},"children":[{"name":"rect","attribs":{"x":"224.031","y":"351.891","width":"63.938","height":"15.984"},"children":[]}]},{"name":"path","attribs":{"d":"M368,344.031l-0.125-8.125h-15.984l0.125,8.125c0,4.406-3.578,7.984-7.984,7.984h-8V368h8\r\n\t\tC357.25,368,368,357.25,368,344.031z"},"children":[{"name":"path","attribs":{"d":"M368,344.031l-0.125-8.125h-15.984l0.125,8.125c0,4.406-3.578,7.984-7.984,7.984h-8V368h8\r\n\t\tC357.25,368,368,357.25,368,344.031z"},"children":[]}]},{"name":"rect","attribs":{"x":"351.891","y":"224.031","width":"15.984","height":"63.938"},"children":[{"name":"rect","attribs":{"x":"351.891","y":"224.031","width":"15.984","height":"63.938"},"children":[]}]},{"name":"path","attribs":{"d":"M352.016,167.969v8H368v-8C368,154.75,357.25,144,344.031,144h-7.984v15.984h7.984\r\n\t\tC348.438,159.984,352.016,163.578,352.016,167.969z"},"children":[{"name":"path","attribs":{"d":"M352.016,167.969v8H368v-8C368,154.75,357.25,144,344.031,144h-7.984v15.984h7.984\r\n\t\tC348.438,159.984,352.016,163.578,352.016,167.969z"},"children":[]}]},{"name":"rect","attribs":{"x":"224.031","y":"144.125","width":"63.938","height":"15.984"},"children":[{"name":"rect","attribs":{"x":"224.031","y":"144.125","width":"63.938","height":"15.984"},"children":[]}]},{"name":"path","attribs":{"d":"M159.984,167.969c0-4.391,3.594-7.984,7.984-7.984h8V144h-8C154.75,144,144,154.75,144,167.969v8h15.984V167.969z"},"children":[{"name":"path","attribs":{"d":"M159.984,167.969c0-4.391,3.594-7.984,7.984-7.984h8V144h-8C154.75,144,144,154.75,144,167.969v8h15.984V167.969z"},"children":[]}]},{"name":"polygon","attribs":{"points":"239.891,320.109 271.859,320.125 271.984,239.828 303.953,239.828 256,191.891 208.047,239.828 239.906,239.75 \t\r\n\t\t"},"children":[{"name":"polygon","attribs":{"points":"239.891,320.109 271.859,320.125 271.984,239.828 303.953,239.828 256,191.891 208.047,239.828 239.906,239.75 \t\r\n\t\t"},"children":[]}]}]}]};exports.uploadSelection=uploadSelection;var upload={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"352,320 352,352 256,352 160,352 160,320 128,320 128,384 384,384 \r\n\t\t384,320 \t"},"children":[{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"352,320 352,352 256,352 160,352 160,320 128,320 128,384 384,384 \r\n\t\t384,320 \t"},"children":[]}]},{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"240.047,208 240.047,336 272.047,336 272.047,208 320.047,208 \r\n\t\t256.047,128 192.047,208 \t"},"children":[{"name":"polygon","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","points":"240.047,208 240.047,336 272.047,336 272.047,208 320.047,208 \r\n\t\t256.047,128 192.047,208 \t"},"children":[]}]}]}]};exports.upload=upload;var userAdd={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"path","attribs":{"d":"M325.906,306.188c-16-2.734-37.906-18.25-37.906-24.984v-17.016c0-6.344,8.594-18.219,12.25-29.156\r\n\t\tc0.344-1.031,2.547,0.156,4.688-2.438c4.031-4.969,4.625-12.531,5.547-15.969c1.469-5.406-5.094-5.625-5.094-5.625\r\n\t\ts4.891-28.375,0.547-46.281c-5.875-24.406-37.5-36.719-49.875-36.719s-43.969,12.312-49.875,36.719\r\n\t\tc-4.328,17.906,0.656,46.281,0.656,46.281s-6.312,0.219-4.875,5.625c0.938,3.438,1.984,11,6.031,15.969\r\n\t\tc2.125,2.594,3.422,1.406,3.766,2.438C215.406,245.969,224,257.844,224,264.188v17.016c0,6.734-21.922,22.25-37.922,24.984\r\n\t\tc-20.547,3.5-30.703,17.703-25.891,53.125c2.406,17.688,49.094,25.297,95.344,24.641c46.25,0.656,93.641-6.953,96.047-24.641\r\n\t\tC356.406,323.891,346.469,309.688,325.906,306.188z"},"children":[{"name":"path","attribs":{"d":"M325.906,306.188c-16-2.734-37.906-18.25-37.906-24.984v-17.016c0-6.344,8.594-18.219,12.25-29.156\r\n\t\tc0.344-1.031,2.547,0.156,4.688-2.438c4.031-4.969,4.625-12.531,5.547-15.969c1.469-5.406-5.094-5.625-5.094-5.625\r\n\t\ts4.891-28.375,0.547-46.281c-5.875-24.406-37.5-36.719-49.875-36.719s-43.969,12.312-49.875,36.719\r\n\t\tc-4.328,17.906,0.656,46.281,0.656,46.281s-6.312,0.219-4.875,5.625c0.938,3.438,1.984,11,6.031,15.969\r\n\t\tc2.125,2.594,3.422,1.406,3.766,2.438C215.406,245.969,224,257.844,224,264.188v17.016c0,6.734-21.922,22.25-37.922,24.984\r\n\t\tc-20.547,3.5-30.703,17.703-25.891,53.125c2.406,17.688,49.094,25.297,95.344,24.641c46.25,0.656,93.641-6.953,96.047-24.641\r\n\t\tC356.406,323.891,346.469,309.688,325.906,306.188z"},"children":[]}]},{"name":"rect","attribs":{"x":"336","y":"176","width":"48","height":"16"},"children":[{"name":"rect","attribs":{"x":"336","y":"176","width":"48","height":"16"},"children":[]}]},{"name":"rect","attribs":{"x":"352","y":"160","width":"16","height":"48"},"children":[{"name":"rect","attribs":{"x":"352","y":"160","width":"16","height":"48"},"children":[]}]}]}]};exports.userAdd=userAdd;var userBan={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"path","attribs":{"d":"M325.906,306.188c-16-2.734-37.906-18.25-37.906-24.984v-17.016c0-6.344,8.594-18.219,12.25-29.156\r\n\t\tc0.344-1.031,2.547,0.156,4.688-2.438c4.031-4.969,4.625-12.531,5.547-15.969c1.469-5.406-5.094-5.625-5.094-5.625\r\n\t\ts4.891-28.375,0.547-46.281c-5.875-24.406-37.5-36.719-49.875-36.719s-43.969,12.312-49.875,36.719\r\n\t\tc-4.328,17.906,0.656,46.281,0.656,46.281s-6.312,0.219-4.875,5.625c0.938,3.438,1.984,11,6.031,15.969\r\n\t\tc2.125,2.594,3.422,1.406,3.766,2.438C215.406,245.969,224,257.844,224,264.188v17.016c0,6.734-21.922,22.25-37.922,24.984\r\n\t\tc-20.547,3.5-30.703,17.703-25.891,53.125c2.406,17.688,49.094,25.297,95.344,24.641c46.25,0.656,93.641-6.953,96.047-24.641\r\n\t\tC356.406,323.891,346.469,309.688,325.906,306.188z"},"children":[{"name":"path","attribs":{"d":"M325.906,306.188c-16-2.734-37.906-18.25-37.906-24.984v-17.016c0-6.344,8.594-18.219,12.25-29.156\r\n\t\tc0.344-1.031,2.547,0.156,4.688-2.438c4.031-4.969,4.625-12.531,5.547-15.969c1.469-5.406-5.094-5.625-5.094-5.625\r\n\t\ts4.891-28.375,0.547-46.281c-5.875-24.406-37.5-36.719-49.875-36.719s-43.969,12.312-49.875,36.719\r\n\t\tc-4.328,17.906,0.656,46.281,0.656,46.281s-6.312,0.219-4.875,5.625c0.938,3.438,1.984,11,6.031,15.969\r\n\t\tc2.125,2.594,3.422,1.406,3.766,2.438C215.406,245.969,224,257.844,224,264.188v17.016c0,6.734-21.922,22.25-37.922,24.984\r\n\t\tc-20.547,3.5-30.703,17.703-25.891,53.125c2.406,17.688,49.094,25.297,95.344,24.641c46.25,0.656,93.641-6.953,96.047-24.641\r\n\t\tC356.406,323.891,346.469,309.688,325.906,306.188z"},"children":[]}]},{"name":"rect","attribs":{"x":"336","y":"176","width":"48","height":"16"},"children":[{"name":"rect","attribs":{"x":"336","y":"176","width":"48","height":"16"},"children":[]}]}]}]};exports.userBan=userBan;var userRemove={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"path","attribs":{"d":"M325.906,306.188c-16-2.734-37.906-18.25-37.906-24.984v-17.016c0-6.344,8.594-18.219,12.25-29.156\r\n\t\tc0.344-1.031,2.547,0.156,4.688-2.438c4.031-4.969,4.625-12.531,5.547-15.969c1.469-5.406-5.094-5.625-5.094-5.625\r\n\t\ts4.891-28.375,0.547-46.281c-5.891-24.406-37.5-36.719-49.875-36.719s-43.969,12.312-49.875,36.719\r\n\t\tc-4.328,17.906,0.656,46.281,0.656,46.281s-6.328,0.219-4.875,5.625c0.938,3.438,1.984,11,6.031,15.969\r\n\t\tc2.125,2.594,3.422,1.406,3.766,2.438C215.422,245.969,224,257.844,224,264.188v17.016c0,6.734-21.922,22.25-37.922,24.984\r\n\t\tc-20.531,3.5-30.703,17.703-25.891,53.125c2.406,17.688,49.094,25.297,95.344,24.641c46.25,0.656,93.641-6.953,96.047-24.641\r\n\t\tC356.406,323.891,346.469,309.688,325.906,306.188z"},"children":[{"name":"path","attribs":{"d":"M325.906,306.188c-16-2.734-37.906-18.25-37.906-24.984v-17.016c0-6.344,8.594-18.219,12.25-29.156\r\n\t\tc0.344-1.031,2.547,0.156,4.688-2.438c4.031-4.969,4.625-12.531,5.547-15.969c1.469-5.406-5.094-5.625-5.094-5.625\r\n\t\ts4.891-28.375,0.547-46.281c-5.891-24.406-37.5-36.719-49.875-36.719s-43.969,12.312-49.875,36.719\r\n\t\tc-4.328,17.906,0.656,46.281,0.656,46.281s-6.328,0.219-4.875,5.625c0.938,3.438,1.984,11,6.031,15.969\r\n\t\tc2.125,2.594,3.422,1.406,3.766,2.438C215.422,245.969,224,257.844,224,264.188v17.016c0,6.734-21.922,22.25-37.922,24.984\r\n\t\tc-20.531,3.5-30.703,17.703-25.891,53.125c2.406,17.688,49.094,25.297,95.344,24.641c46.25,0.656,93.641-6.953,96.047-24.641\r\n\t\tC356.406,323.891,346.469,309.688,325.906,306.188z"},"children":[]}]},{"name":"rect","attribs":{"x":"336.003","y":"176.001","transform":"matrix(0.7071 0.7071 -0.7071 0.7071 235.5492 -200.6661)","width":"47.995","height":"15.998"},"children":[{"name":"rect","attribs":{"x":"336.003","y":"176.001","transform":"matrix(0.7071 0.7071 -0.7071 0.7071 235.5492 -200.6661)","width":"47.995","height":"15.998"},"children":[]}]},{"name":"rect","attribs":{"x":"352.001","y":"160.003","transform":"matrix(0.7071 0.7071 -0.7071 0.7071 235.5492 -200.6661)","width":"15.998","height":"47.995"},"children":[{"name":"rect","attribs":{"x":"352.001","y":"160.003","transform":"matrix(0.7071 0.7071 -0.7071 0.7071 235.5492 -200.6661)","width":"15.998","height":"47.995"},"children":[]}]}]}]};exports.userRemove=userRemove;var user={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"path","attribs":{"d":"M325.906,306.188c-16-2.734-37.906-18.25-37.906-24.984v-17.016c0-6.344,8.594-18.219,12.25-29.156\r\n\t\tc0.344-1.031,2.547,0.156,4.688-2.453c4.031-4.969,4.625-12.516,5.547-15.953c1.469-5.406-5.094-5.625-5.094-5.625\r\n\t\ts4.891-28.375,0.547-46.297c-5.875-24.406-37.5-36.703-49.875-36.703c-12.391,0-43.969,12.297-49.875,36.703\r\n\t\tc-4.344,17.922,0.656,46.297,0.656,46.297s-6.328,0.219-4.875,5.625c0.938,3.438,1.969,10.984,6.031,15.953\r\n\t\tc2.125,2.609,3.406,1.422,3.75,2.453c3.656,10.938,12.25,22.812,12.25,29.156v17.016c0,6.734-21.922,22.25-37.922,24.984\r\n\t\tc-20.547,3.5-30.703,17.703-25.891,53.125c2.406,17.688,49.094,25.297,95.344,24.641c46.25,0.656,93.641-6.953,96.047-24.641\r\n\t\tC356.406,323.891,346.469,309.688,325.906,306.188z"},"children":[{"name":"path","attribs":{"d":"M325.906,306.188c-16-2.734-37.906-18.25-37.906-24.984v-17.016c0-6.344,8.594-18.219,12.25-29.156\r\n\t\tc0.344-1.031,2.547,0.156,4.688-2.453c4.031-4.969,4.625-12.516,5.547-15.953c1.469-5.406-5.094-5.625-5.094-5.625\r\n\t\ts4.891-28.375,0.547-46.297c-5.875-24.406-37.5-36.703-49.875-36.703c-12.391,0-43.969,12.297-49.875,36.703\r\n\t\tc-4.344,17.922,0.656,46.297,0.656,46.297s-6.328,0.219-4.875,5.625c0.938,3.438,1.969,10.984,6.031,15.953\r\n\t\tc2.125,2.609,3.406,1.422,3.75,2.453c3.656,10.938,12.25,22.812,12.25,29.156v17.016c0,6.734-21.922,22.25-37.922,24.984\r\n\t\tc-20.547,3.5-30.703,17.703-25.891,53.125c2.406,17.688,49.094,25.297,95.344,24.641c46.25,0.656,93.641-6.953,96.047-24.641\r\n\t\tC356.406,323.891,346.469,309.688,325.906,306.188z"},"children":[]}]}]}]};exports.user=user;var viewportVideo={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256c0,141.391,114.609,256,256,256c141.391,0,256-114.609,256-256\r\n\tC512,114.609,397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"312.5,368 216.5,368 264.5,288 \t"},"children":[{"name":"polygon","attribs":{"points":"312.5,368 216.5,368 264.5,288 \t"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"384,144 128,144 128,336 207.438,336 226.641,304 160,304 160,176 352,176 352,304 302.359,304 321.562,336 \r\n\t\t\t384,336 \t\t"},"children":[{"name":"polygon","attribs":{"points":"384,144 128,144 128,336 207.438,336 226.641,304 160,304 160,176 352,176 352,304 302.359,304 321.562,336 \r\n\t\t\t384,336 \t\t"},"children":[]}]}]}]}]}]};exports.viewportVideo=viewportVideo;var viewport={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M319.5,208.5h-128v96h128V208.5z M367.5,336.5h-48v16h64v-64h-16V336.5z\r\n\t M319.5,160.5v16h48v48h16v-64H319.5z M143.5,176.5h48v-16h-64v64h16V176.5z M143.5,288.5h-16v64h64v-16h-48V288.5z"},"children":[]}]};exports.viewport=viewport;var waves={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.625,0,0,114.609,0,256s114.625,256,256,256c141.406,0,256-114.609,256-256S397.406,0,256,0z M256,472\r\n\t\tc-119.281,0-216-96.703-216-216S136.719,40,256,40c119.312,0,216,96.703,216,216S375.312,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.625,0,0,114.609,0,256s114.625,256,256,256c141.406,0,256-114.609,256-256S397.406,0,256,0z M256,472\r\n\t\tc-119.281,0-216-96.703-216-216S136.719,40,256,40c119.312,0,216,96.703,216,216S375.312,472,256,472z"},"children":[]}]},{"name":"path","attribs":{"d":"M312.188,335.281c-13.516,0-33.297-15.125-50.75-28.469c-21.656-16.547-44.062-33.656-66.875-33.656\r\n\t\tc-42.75,0-65.609,29.266-66.562,30.5l26.328,19.844c0.141-0.172,14.109-17.531,40.234-17.531c11.594,0,30.25,14.281,46.719,26.828\r\n\t\tc22.703,17.359,46.172,35.297,70.906,35.297c45.484,0,70.766-34.406,71.812-35.844l-26.812-19.172\r\n\t\tC356.5,313.984,340.359,335.281,312.188,335.281z"},"children":[{"name":"path","attribs":{"d":"M312.188,335.281c-13.516,0-33.297-15.125-50.75-28.469c-21.656-16.547-44.062-33.656-66.875-33.656\r\n\t\tc-42.75,0-65.609,29.266-66.562,30.5l26.328,19.844c0.141-0.172,14.109-17.531,40.234-17.531c11.594,0,30.25,14.281,46.719,26.828\r\n\t\tc22.703,17.359,46.172,35.297,70.906,35.297c45.484,0,70.766-34.406,71.812-35.844l-26.812-19.172\r\n\t\tC356.5,313.984,340.359,335.281,312.188,335.281z"},"children":[]}]},{"name":"path","attribs":{"d":"M312.188,206.031c-13.516,0-33.297-15.125-50.75-28.477c-21.656-16.531-44.062-33.648-66.875-33.648\r\n\t\tc-42.75,0-65.609,29.266-66.562,30.516l26.328,19.836c0.141-0.18,14.109-17.539,40.234-17.539c11.594,0,30.25,14.266,46.719,26.844\r\n\t\tc22.703,17.344,46.172,35.281,70.906,35.281c45.484,0,70.766-34.391,71.812-35.844l-26.812-19.18\r\n\t\tC356.5,184.727,340.359,206.031,312.188,206.031z"},"children":[{"name":"path","attribs":{"d":"M312.188,206.031c-13.516,0-33.297-15.125-50.75-28.477c-21.656-16.531-44.062-33.648-66.875-33.648\r\n\t\tc-42.75,0-65.609,29.266-66.562,30.516l26.328,19.836c0.141-0.18,14.109-17.539,40.234-17.539c11.594,0,30.25,14.266,46.719,26.844\r\n\t\tc22.703,17.344,46.172,35.281,70.906,35.281c45.484,0,70.766-34.391,71.812-35.844l-26.812-19.18\r\n\t\tC356.5,184.727,340.359,206.031,312.188,206.031z"},"children":[]}]},{"name":"path","attribs":{"d":"M312.188,270.906c-13.516,0-33.297-15.141-50.75-28.469c-21.656-16.547-44.062-33.656-66.875-33.656\r\n\t\tc-42.75,0-65.609,29.266-66.562,30.5l26.328,19.844c0.141-0.188,14.109-17.531,40.234-17.531c11.594,0,30.25,14.266,46.719,26.844\r\n\t\tc22.703,17.344,46.172,35.281,70.906,35.281c45.484,0,70.766-34.406,71.812-35.844l-26.812-19.188\r\n\t\tC356.5,249.594,340.359,270.906,312.188,270.906z"},"children":[{"name":"path","attribs":{"d":"M312.188,270.906c-13.516,0-33.297-15.141-50.75-28.469c-21.656-16.547-44.062-33.656-66.875-33.656\r\n\t\tc-42.75,0-65.609,29.266-66.562,30.5l26.328,19.844c0.141-0.188,14.109-17.531,40.234-17.531c11.594,0,30.25,14.266,46.719,26.844\r\n\t\tc22.703,17.344,46.172,35.281,70.906,35.281c45.484,0,70.766-34.406,71.812-35.844l-26.812-19.188\r\n\t\tC356.5,249.594,340.359,270.906,312.188,270.906z"},"children":[]}]}]}]};exports.waves=waves;var wifi={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,336.156c-8.828,0-16,7.141-16,15.984s7.172,16.016,16,16.016s16-7.172,16-16.016S264.828,336.156,256,336.156z"},"children":[{"name":"path","attribs":{"d":"M256,336.156c-8.828,0-16,7.141-16,15.984s7.172,16.016,16,16.016s16-7.172,16-16.016S264.828,336.156,256,336.156z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,272.031c-23.125,0-43.562,10.625-57.359,27.047l14.547,19.391c9.297-13.734,24.984-22.75,42.812-22.75\r\n\t\ts33.516,9.016,42.797,22.75l14.578-19.391C299.547,282.656,279.125,272.031,256,272.031z"},"children":[{"name":"path","attribs":{"d":"M256,272.031c-23.125,0-43.562,10.625-57.359,27.047l14.547,19.391c9.297-13.734,24.984-22.75,42.812-22.75\r\n\t\ts33.516,9.016,42.797,22.75l14.578-19.391C299.547,282.656,279.125,272.031,256,272.031z"},"children":[]}]},{"name":"path","attribs":{"d":"M163.031,245.828l14.375,19.078c19.906-20.5,47.734-33.281,78.594-33.281c30.844,0,58.641,12.781,78.609,33.281\r\n\t\tl14.328-19.094c-24.031-23.406-56.781-37.875-92.938-37.875C219.812,207.938,187.062,222.406,163.031,245.828z"},"children":[{"name":"path","attribs":{"d":"M163.031,245.828l14.375,19.078c19.906-20.5,47.734-33.281,78.594-33.281c30.844,0,58.641,12.781,78.609,33.281\r\n\t\tl14.328-19.094c-24.031-23.406-56.781-37.875-92.938-37.875C219.812,207.938,187.062,222.406,163.031,245.828z"},"children":[]}]},{"name":"path","attribs":{"d":"M128,193.594l15.562,20.75c29.562-27.422,68.984-44.328,112.438-44.328s82.875,16.906,112.406,44.328L384,193.562\r\n\t\tc-33.922-30.594-78.734-49.391-128-49.391C206.719,144.172,161.938,162.969,128,193.594z"},"children":[{"name":"path","attribs":{"d":"M128,193.594l15.562,20.75c29.562-27.422,68.984-44.328,112.438-44.328s82.875,16.906,112.406,44.328L384,193.562\r\n\t\tc-33.922-30.594-78.734-49.391-128-49.391C206.719,144.172,161.938,162.969,128,193.594z"},"children":[]}]}]}]};exports.wifi=wifi;var wind={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M354.469,206.766c-16.312,0-29.547,13.234-29.547,29.547c0,3.469,0.719,6.734,1.812,9.844H137.844\r\n\t\tc-5.438,0-9.844,4.406-9.844,9.844s4.406,9.844,9.844,9.844h216.625c16.297,0,29.531-13.234,29.531-29.531\r\n\t\tC384,220,370.766,206.766,354.469,206.766z"},"children":[{"name":"path","attribs":{"d":"M354.469,206.766c-16.312,0-29.547,13.234-29.547,29.547c0,3.469,0.719,6.734,1.812,9.844H137.844\r\n\t\tc-5.438,0-9.844,4.406-9.844,9.844s4.406,9.844,9.844,9.844h216.625c16.297,0,29.531-13.234,29.531-29.531\r\n\t\tC384,220,370.766,206.766,354.469,206.766z"},"children":[]}]},{"name":"path","attribs":{"d":"M137.844,226.469H256c16.312,0,29.531-13.234,29.531-29.547c0-16.297-13.219-29.531-29.531-29.531\r\n\t\ts-29.531,13.234-29.531,29.531c0,3.469,0.719,6.75,1.797,9.844h-90.422c-5.438,0-9.844,4.406-9.844,9.844\r\n\t\tS132.406,226.469,137.844,226.469z"},"children":[{"name":"path","attribs":{"d":"M137.844,226.469H256c16.312,0,29.531-13.234,29.531-29.547c0-16.297-13.219-29.531-29.531-29.531\r\n\t\ts-29.531,13.234-29.531,29.531c0,3.469,0.719,6.75,1.797,9.844h-90.422c-5.438,0-9.844,4.406-9.844,9.844\r\n\t\tS132.406,226.469,137.844,226.469z"},"children":[]}]},{"name":"path","attribs":{"d":"M295.375,285.531c-0.562,0-1.125,0.141-1.719,0.188c-0.375-0.031-0.688-0.188-1.078-0.188H140.656\r\n\t\tc-7,0-12.656,4.422-12.656,9.859s5.656,9.844,12.656,9.844h127c-1.094,3.094-1.812,6.375-1.812,9.844\r\n\t\tc0,16.312,13.234,29.531,29.531,29.531c16.312,0,29.547-13.219,29.547-29.531S311.688,285.531,295.375,285.531z"},"children":[{"name":"path","attribs":{"d":"M295.375,285.531c-0.562,0-1.125,0.141-1.719,0.188c-0.375-0.031-0.688-0.188-1.078-0.188H140.656\r\n\t\tc-7,0-12.656,4.422-12.656,9.859s5.656,9.844,12.656,9.844h127c-1.094,3.094-1.812,6.375-1.812,9.844\r\n\t\tc0,16.312,13.234,29.531,29.531,29.531c16.312,0,29.547-13.219,29.547-29.531S311.688,285.531,295.375,285.531z"},"children":[]}]}]}]};exports.wind=wind;var wireframeGlobe={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]},{"name":"path","attribs":{"d":"M256,128c-70.688,0-128,57.312-128,128s57.312,128,128,128s128-57.312,128-128S326.688,128,256,128z M144.406,264h57.312\r\n\tc0.719,15.422,3.344,32.266,6.547,48h-49.109C150.844,297.688,145.641,281.406,144.406,264z M201.719,248h-57.312\r\n\tc1.234-17.406,6.438-33.688,14.75-48h49.109C205.062,215.734,202.438,232.578,201.719,248z M224.281,200h63.438\r\n\tc3.219,15.75,5.844,32.609,6.562,48h-76.562C218.438,232.609,221.062,215.75,224.281,200z M217.719,264h76.562\r\n\tc-0.719,15.391-3.344,32.234-6.562,48h-63.438C221.062,296.234,218.438,279.391,217.719,264z M310.281,264h57.312\r\n\tc-1.234,17.406-6.438,33.688-14.75,48h-49.109C306.953,296.266,309.562,279.422,310.281,264z M310.281,248\r\n\tc-0.719-15.422-3.328-32.266-6.547-48h49.109c8.312,14.312,13.516,30.594,14.75,48H310.281z M341.672,184h-41.484\r\n\tc-3.359-14.188-6.797-26.375-9.172-34.312C310.953,156.266,328.422,168.281,341.672,184z M273.75,145.547\r\n\tc2.266,7.359,6.406,21.484,10.422,38.453h-56.344c4.016-16.969,8.156-31.094,10.422-38.453C244.047,144.625,249.938,144,256,144\r\n\tS267.953,144.625,273.75,145.547z M221,149.688c-2.375,7.938-5.828,20.125-9.188,34.312h-41.469\r\n\tC183.562,168.281,201.047,156.266,221,149.688z M170.344,328h41.469c3.359,14.188,6.797,26.375,9.172,34.312\r\n\tC201.047,355.734,183.578,343.719,170.344,328z M238.25,366.453c-2.266-7.359-6.406-21.484-10.422-38.453h56.344\r\n\tc-4.016,16.953-8.141,31.094-10.406,38.453C267.969,367.375,262.062,368,256,368S244.047,367.375,238.25,366.453z M291.016,362.312\r\n\tc2.391-7.938,5.828-20.125,9.188-34.312h41.453C328.422,343.719,310.953,355.719,291.016,362.312z"},"children":[]}]};exports.wireframeGlobe=wireframeGlobe;var world={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M203.141,201c0.406,0.344,0.422,0.219,0.812,0.594c0.188-0.156,0.594-0.594,0.781-0.781\r\n\t\tc-0.547-0.867,0.094-0.867,0.375-0.125c-0.156-1.023,0.875-1.898,1.812-1.867C204.703,197.133,204.562,201.156,203.141,201z"},"children":[{"name":"path","attribs":{"d":"M203.141,201c0.406,0.344,0.422,0.219,0.812,0.594c0.188-0.156,0.594-0.594,0.781-0.781\r\n\t\tc-0.547-0.867,0.094-0.867,0.375-0.125c-0.156-1.023,0.875-1.898,1.812-1.867C204.703,197.133,204.562,201.156,203.141,201z"},"children":[]}]},{"name":"path","attribs":{"d":"M256.016,127.992C185.297,127.992,128,185.297,128,256c0,70.688,57.297,128,128.016,128C326.688,384,384,326.688,384,256\r\n\t\tC384,185.297,326.688,127.992,256.016,127.992z M344.438,231.344c0,0.094,2.344,2.688,0.531,3\r\n\t\tc-0.844,0.156-0.906-1.906-0.969-2.312C344.219,232.031,344.328,231.562,344.438,231.344z M339.781,237.375\r\n\t\tc-0.031,0.031-0.484,0.688-0.484,0.062C339.438,237.406,339.625,237.406,339.781,237.375z M339.031,238.125\r\n\t\tc0.062,0.188,0.328,0.219,0.406,0.438c-0.438,0-0.281,0-0.594-0.094C338.906,238.344,338.969,238.25,339.031,238.125z\r\n\t\t M338.031,237.875c-0.375,0,0.031-0.25-0.359,0.031c-0.141-0.25-0.016-0.094-0.016-0.312c-0.062-0.188,0-0.25,0.188-0.188\r\n\t\tC337.906,237.562,337.969,237.719,338.031,237.875z M322.5,226.469c0.25,0,0.469,0.062,0.469,0.656\r\n\t\tc0.125-0.125,0.25-0.094,0.188-0.312c0.156,0.219,1.25,0.719,1.281,0.938c0,0.75-0.906,0.656-0.906,1.125\r\n\t\tc-0.156-0.031-0.812-0.094-0.812-0.344c-0.359,0-0.438,0.625-1.156,0.625c0-0.094,0.516-1.062,0.656-1.25\r\n\t\tC322.453,227.906,322.5,226.781,322.5,226.469z M318.344,224.906c-0.188-0.656,1.125-1.75,1.125-1.062\r\n\t\tc0.594,0.25,1.594,1.562,0.594,1.938c1.156,0.094,0.844-0.219,0.844,0.781c0.562,0,0.281-0.156,0.5-0.594\r\n\t\tc0.375,0,0.625,1.969-0.781,1.406c0,0.625-1.859-0.406-1.75-0.062c-0.141-0.125-0.188-0.281-0.141-0.469\r\n\t\tc-0.219,0.031-0.266,0.125-0.547,0.125c0-0.094,0-0.188,0-0.312c0.188,0,1.531-0.969,1.531-1.031\r\n\t\tc-0.438-0.031-0.922-0.125-0.922,0.281c-0.25-0.156-1.328-0.562-1.328-0.719C317.969,225.188,317.781,224.906,318.344,224.906z\r\n\t\t M320,231.812c0.312,0.25,0.062,0.219-0.641-0.031c0.109-0.031,0.25-0.094,0.391-0.156\r\n\t\tC319.688,231.844,319.781,231.875,320,231.812z M317.375,225.656c0,0.344,0.438,0.781,0.688,1c-1.25-0.188-1.312,0.156-1.312-1.031\r\n\t\tC316.938,225.656,317.172,225.656,317.375,225.656z M316.234,223.25c0.422,0.062,0.016,0.156,0.453,0.156\r\n\t\tc-0.156,0.156-0.219,0.094-0.219,0.312C315.938,223.719,316.234,223.25,316.234,223.25z M308.766,236.156\r\n\t\tc-0.016,0.125,0.094,0.438,0.094,0.656c-0.312-0.031-0.359-0.156-0.578-0.375C308.438,236.344,308.594,236.25,308.766,236.156z\r\n\t\t M308.156,237.062c-0.094,0.25-0.906,1.281-0.781,0.375C307.641,237.219,307.75,237,308.156,237.062z M302.922,235.312\r\n\t\tc0.094-0.125,0.203-0.281,0.297-0.438c0.234,0.625,0.125,0.594-0.344,0.938C302.656,235.531,302.922,235.594,302.922,235.312z\r\n\t\t M299.375,221.625c0.453,0.094,1.531-0.594,1.531,0.25c-0.375-0.031-1.562,1.469-1.562,0.062\r\n\t\tC299.547,222.062,299.406,221.719,299.375,221.625z M297.75,221.531c0.562-0.062,0.844,0.281,0.844,0.906\r\n\t\tc-0.438-0.031-0.25,0.125-0.703-0.094c0.031,0.25,0.047,0.531,0.062,0.812c-0.312-0.031-0.547-0.031-0.875-0.125\r\n\t\tC296.906,222.375,297.141,221.875,297.75,221.531z M296.859,218.406c0.172,0,0.203,0,0.203,0.188\r\n\t\tc-0.188-0.031-0.375-0.031-0.562-0.094C296.609,218.469,296.75,218.438,296.859,218.406z M295.562,220.875\r\n\t\tc-0.5-0.312-0.562-0.344-0.734-0.781c0.375-0.156,0.391,0.344,0.484-0.219c0.219,0.188,0.5,0.281,0.75,0.438\r\n\t\tc-0.078,0.094-0.156,0.188-0.219,0.281c-0.25-0.219-0.219-0.344-0.562-0.406c0.203,0.188,0.25,0.531,0.531,0.562\r\n\t\tC295.844,220.938,295.781,221,295.562,220.875z M295.625,222.438c0,0.281-0.094,0.344-0.062,0.656\r\n\t\tC294.75,223.094,294.656,222.344,295.625,222.438z M296.359,220.688c-0.141-0.062-0.172,0.406-0.312-0.062\r\n\t\tC296.156,220.531,296.656,220.094,296.359,220.688z M295.766,222.156C297.281,222.281,295.656,223.688,295.766,222.156\r\n\t\tL295.766,222.156z M296.828,223.281c0.031,0.219,0.062,0.406,0.062,0.656c-0.266-0.094-0.562-0.312-0.562-0.562\r\n\t\tC296.5,223.344,296.656,223.344,296.828,223.281z M296.016,218.75c0.031,0.188,0.203,0.094,0.203,0.312\r\n\t\tc-0.094,0.062-0.172,0.094-0.266,0.156C295.906,219.062,295.797,218.688,296.016,218.75z M295.281,218.938\r\n\t\tc0.156,0.062,0.312,0.125,0.453,0.219c0,0.656-1.172,0.125-0.922,0.188C294.906,218.875,295.281,219.562,295.281,218.938z\r\n\t\t M294.281,220.312c0.125,0.188,0.219,0.219,0.5,0.281c0,0.406-0.812,0.125-0.75-0.156\r\n\t\tC294.25,220.562,294.312,220.531,294.281,220.312z M292.438,221.906C294.047,222.062,292.438,222.719,292.438,221.906\r\n\t\tL292.438,221.906z M292.422,232.125c0.078-0.594,0.203-0.75,0.812-0.5c-0.234-0.438-0.219-0.156,0.078-0.469\r\n\t\tc-0.188,0.031-0.219-0.094-0.094-0.312c0.578,0.062,3.328-0.344,3.531-0.906c0.062,0.219,0.188,0.281,0.469,0.25\r\n\t\tc0.109-0.938,1.016-0.406,1.016,0c0.859-0.25,1.266-0.438,2.047-0.656c0.312-0.062,0.594-0.375,1.156-0.312\r\n\t\tc0.188,0.188,0.359,1.281-0.219,1.062c-0.203,0.75-2.109,0.5-2.641,0.719c-1.047,0.469-1.531,0.219-2.562,0.938\r\n\t\tc0-0.5-0.781,0.219-1.016,0.156c-0.109,0.5-0.172,0.5-0.672,0.875c0.062-0.188,0.109-0.375-0.078-0.375\r\n\t\tc-0.094,1.094-0.219,0.281-0.25,0.938c-0.172-0.062-0.344-0.156-0.484-0.25c-0.062,0.812-0.391,0.875-0.797,0.344\r\n\t\tc-0.156,0.406-0.438-0.062-0.688-0.094c0,0.312,0.906,0.625,1.203,1c-0.953,0.656-0.984,3.688,0.5,3.844\r\n\t\tc-0.141,0.531-0.609-0.125-0.891-0.156c-0.094,0.656,0.141,0,0.031,0.625c-0.203,0-0.094-0.156-0.094-0.312\r\n\t\tc-1.125-0.156-1.219,0.094-2.219-0.25c0-0.375,0.406-0.719,0.734-0.688c0.078-0.781-0.641-0.062-0.344-1.188\r\n\t\tc-0.188,0-0.5,0.094-0.672,0.188c-0.031-0.094-0.047-0.219-0.062-0.312c-0.188,0.25-0.25,0.406-0.641,0.375\r\n\t\tc-0.078-0.469-0.031-0.875,0.25-1.281c0.375,0.281,0.281,0.094,0.484,0.25c0-0.531,0.406-0.812,0.406-1.031\r\n\t\tc0.125-0.219-0.031-0.562,0.125-0.812c0.438,0.094,0.672,0.125,0.812-0.312c-0.094,0.031-0.188,0.062-0.312,0.094\r\n\t\tc0.094-0.094,0.625-0.938,0.625-0.688c-0.391-0.156-0.812,0.188-0.812-0.469c0.188,0,1-0.094,1-0.469\r\n\t\tC292.375,232.031,292.172,232.125,292.422,232.125z M295.625,240.438c-0.406,0-0.594-0.125-0.797-0.156\r\n\t\tc-0.328-0.156-0.109-0.438-0.547-0.219c0.125-0.312-0.031-0.656,0-0.969C294.906,239.125,295.281,240,295.625,240.438z\r\n\t\t M290.766,222.375c0-0.188,0.219-0.25,0.391-0.219c0.031,0.094,0.031,0.188,0.062,0.312\r\n\t\tC291.078,222.438,290.938,222.375,290.766,222.375z M291.609,222.375c0.359,0,0.422,0.219,0.141,0.688\r\n\t\tc-0.203-0.031-0.406-0.094-0.594-0.125C291.156,222.781,291.5,222.594,291.609,222.375z M291.547,220.938\r\n\t\tc-0.047,0.156-0.109,0.281-0.203,0.438c0.156-0.062,0.281-0.156,0.438-0.25c0.125,1.094-1.469,0.562-2.375,1\r\n\t\tc0.125-0.375-0.062-0.312-0.406-0.406c0.062-0.25,0.188-0.25,0.328-0.406c-0.297,0.062-0.422,0-0.328-0.25\r\n\t\tc0.562-0.031,0.75,0.5,1.281,0.406c0.438-0.031,0.906-0.562,0.812-0.594C291.297,220.875,291.156,221.125,291.547,220.938z\r\n\t\t M287.812,220.188c0.359,0,2.859,0.125,2.641,1c-0.625-0.125-1.172-0.281-1.766-0.469c-0.281,0.594-0.594,0.625-0.969,0.094\r\n\t\tc0,0.156-0.5,0.156-0.75,0.344c0.25-0.344-0.719-0.344-0.719-0.625C286.719,220.156,287.109,220.094,287.812,220.188z\r\n\t\t M288.062,239.469c-0.109,0.5-0.406,0.656-0.469,1.062C286.828,240.344,287.047,239.156,288.062,239.469z M277.719,221.75\r\n\t\tc-0.312-0.094-0.891-0.219-0.781-0.531C277.094,221.25,277.922,221.5,277.719,221.75z M271.766,217.562\r\n\t\tc0.234-1,0.297,0.031,0.562-0.469c-0.547-0.156,0.172-0.375,0.234-0.469c0.172,0.656,0.906,0.844,0.953,1.25\r\n\t\tc0.109,0.844,0.812,0.125,1.031,0.156c-0.078,0.156-0.156,0.281,0.047,0.312c0.359-1.25,0.297-0.062,0.062,0.188\r\n\t\tc0.438,0.094,0.688-0.125,1.031-0.375c0,0.188-0.125,0.281-0.234,0.406c0.203-0.094,0.25,0.031,0.312-0.219\r\n\t\tc0.297,0.094,0.312,0.594,0.922,0.719c-0.125,0.406-0.453,0.656-0.875,0.594c-0.156,0.188-0.125,0.312,0.062,0.312\r\n\t\tc-0.312,0.031-0.594,0.094-0.906,0.094c-0.312,0.969-3.672-0.656-3.516-1.469c0.469,0.312,0.938,0.094,1.266,0.219\r\n\t\tc-0.297-0.219-1.266-0.25-1.469-0.406c-0.734-0.156,0.203-0.656,0.234-0.781c-0.266-0.031-0.547-0.312-0.453-0.594\r\n\t\tC271.234,217.25,271.562,217.5,271.766,217.562z M276.031,221.812c-0.312-0.156-0.281-0.094-0.281-0.438\r\n\t\tC276.266,221.5,275.812,221.5,276.031,221.812z M272.125,223.219c-0.047,0.156-0.672-0.344-1.234-0.219\r\n\t\tc0.078-0.344,0.172-0.75,0.281-1.062c1.422-0.25,1.391,0.781,2.359,0.969C273.375,223.5,272.734,223.375,272.125,223.219z\r\n\t\t M272.25,233.094c-0.156,0.312-0.328-0.094-0.547-0.156c0.109-0.219,0.172,0,0.203-0.281\r\n\t\tC272,232.812,272.094,233.062,272.25,233.094z M270.828,220.875c0.062,0.031,1.906,0.031,1.203,0.562\r\n\t\tC271.484,221.906,271.062,221.688,270.828,220.875z M266.5,218.625c0.031-0.625,0.453-1.188,0.031-1.312\r\n\t\tc0.141-0.219,0.25-0.438,0.375-0.688c0.141,0,0.25,0.375,0.438-0.062c0.234,0.125,0.328,0.312,0.641,0.406\r\n\t\tc-0.094,0.281-0.312,0.062-0.547,0.125c-0.078,0.281,0.297,0.219,0.188,0.562c0.094,0,0.172,0.031,0.234,0.062\r\n\t\tc0.469-1.5,0.109-0.062,0.594-0.625c0,0.5,0.188,0.781,0.25,1.219c0.188-0.688,0.422-1.062,0.953-1.5\r\n\t\tc0.266,0.125,0.234,0.469,0.234,0.688c0.219,0.094,0.234-0.188,0.406-0.188c-0.109,0.562,0.312,0.812,0.109,1.5\r\n\t\tc0.172,0.031,0.672,1.188,1.016,1.75c-1.188-0.344-1.062,0.438-1.203,1.094c-0.266-0.062-1.859,1.156-1.703,0.844\r\n\t\tc-0.125,0.219-0.344,0.188-0.328,0.719c-0.359-0.094-0.391,0.062-0.562,0.031c0.047-0.281,0.094-0.562,0.109-0.812\r\n\t\tc-0.5-0.125-1.531-0.531-1.172-1.5c0.391,0.281,0.516,0.312,0.984,0.438c0.078-0.25,0.469-0.75,0.453-0.656\r\n\t\tc-0.453-0.156-1.234-0.125-1.406-0.281c0.484-1.594,2.156,0.719,2.609-0.344c-0.5-0.219-0.359-0.125-0.719-0.562\r\n\t\tc-0.312,0.688-0.344-0.469-0.344-0.594c-0.156,0-0.344,0.219-0.234-0.062c-0.359,0.5-0.844,0.594-1.453,0.375\r\n\t\tC266.484,219.125,266.766,218.656,266.5,218.625z M268.953,232.844c0.094-0.531,0.469-0.5,1.031-0.531\r\n\t\tc-0.125,0.188-0.375,0.375-0.578,0.344C269.375,232.844,269.125,232.875,268.953,232.844z M270.297,233.062\r\n\t\tc-0.141,0.188-0.25,0.375-0.406,0.531c0.047-0.188,0-0.344-0.156-0.5C270.172,233.156,269.484,232.875,270.297,233.062z\r\n\t\t M267.234,233.031c-0.125,0.156-0.219,0.281-0.312,0.438c-0.094-0.094-0.219-0.188-0.328-0.25\r\n\t\tC266.875,232.656,266.922,233.031,267.234,233.031z M266.703,233.406c-0.141,0.312-0.188,0.438-0.531,0.312\r\n\t\tc0.031-0.156,0.078-0.281,0.109-0.438C266.422,233.312,266.547,233.375,266.703,233.406z M266.172,217.688\r\n\t\tc0.062,0.031,0.078,1.062,0.078,1.344C265.891,218.969,266.078,218,266.172,217.688z M264.234,234.5\r\n\t\tc-0.031,0.156-0.094,0.312-0.141,0.469c0.047,0.031,0.359-0.125,0.453-0.188c-0.062,0.656-1.125,1.219-0.969,0.531\r\n\t\tc-0.062,0.031-0.125,0.094-0.188,0.125C263.453,235.188,264.109,234.5,264.234,234.5z M263.188,235.188\r\n\t\tc-0.047,0.125-0.609,0.562-0.5,0.219C262.859,235.312,263.016,235.25,263.188,235.188z M262.453,235.312\r\n\t\tc0,0.125,0.031,0.25,0.031,0.344c-0.109-0.062-0.562,0.344-0.469-0.094C262.266,235.562,262.125,235.219,262.453,235.312z\r\n\t\t M231.297,196.539c0.062,0.688,0.781,1.375,0.5,1.906C231.453,197.727,230.922,197.18,231.297,196.539z M207.047,185.164\r\n\t\tc0.109-0.258,0.219-0.289,0.344-0.086c-0.109,0.312-0.344,0.703-0.531,0.977C206.844,185.805,207.031,185.156,207.047,185.164z\r\n\t\t M209.828,198.32c-0.812,1.125-1.219-0.25-1.406-0.438c-0.047,0.125-0.141,0.203-0.281,0.219c0.109-0.219,0.203-0.406,0.016-0.594\r\n\t\tc-0.641,0.844-1.672-0.844-1.719-1.062c-0.594,0.078-1.578-0.469-0.828-1.062c-0.656,0.422-1.406,0.125-1.812-0.375\r\n\t\tc0.656-0.625,2.406-2.391,1.438-3.156c-0.141,0.094-0.312,0.156-0.453,0.219c-0.297-0.656-0.453-2.523,0.547-1.594\r\n\t\tc0.062-0.094,2.375,3.812,0.844,2.719c-0.234,0.25,0.062,0.062-0.297,0.359c0.203,0.016,0.406,0.062,0.609,0.094\r\n\t\tc-0.062,0.109-0.156,0.172-0.281,0.172c0.25,0.188,0.5-0.125,0.156,0.312c0.031,0.031,0.656,0.312,0.281,0.656\r\n\t\tc0.25,0.156,0.125-0.094,0.375,0.281c0.203-0.266,2.375,0.938,3.078,1.438C209.984,196.633,211.328,198.977,209.828,198.32z\r\n\t\t M203.609,192.164c0.578-0.594,0.453,0.812,0.406,0.75c-0.156,0.609-0.844,0.844-1.125,1.156c-0.312-0.219-0.031-0.438-0.281-0.625\r\n\t\tC202.297,192.852,203.031,191.82,203.609,192.164z M202.828,191.945c0.469-0.5,0.188,0.016,0.625-0.094\r\n\t\tC203.344,191.961,203.094,192.133,202.828,191.945z M205.375,189.672c0.406-0.32,1.484,0.438,1.734,0.547\r\n\t\tc-0.203,0.125-0.156,0.234,0.125,0.32C206.141,191.164,206.125,190.266,205.375,189.672z M206.766,192.648\r\n\t\tc0.125-0.422,0.281-0.578,0.594-0.359c-0.094,0.172-0.203,0.375-0.312,0.531C206.953,192.758,206.875,192.711,206.766,192.648z\r\n\t\t M205.516,188.328c0.219,0.148,0.172,0.227,0.375,0.086c-0.75-0.438-0.172-1.023,0.469-1.266c0.125,0.414,0.438,1.062,0.094,1.344\r\n\t\tc0.734,1.141-0.719,0.852-1.141,0.492C205.516,188.766,205.422,188.492,205.516,188.328z M203.094,185.102\r\n\t\tc0.109-0.047,0.203-0.109,0.312-0.156c-0.141-0.125-0.203,0.047-0.328-0.094c0.891-0.906,0.203-0.094,0.062-0.32\r\n\t\tc0.469-0.523,0.312-0.328,0.719-0.484c0,0.539,0.219,0.625,0.062,1.164c0.141-0.07,0.312-0.141,0.469-0.234\r\n\t\tc-0.031,0.344,0.156,0.25-0.125,0.555c0.781,0.188,1.25,2.516-0.156,2.875c-0.094-0.664,0-2.836-0.5-2.195\r\n\t\tc-0.109-0.047-0.484-0.32-0.594-0.578c-0.016,0.062-0.031,0.102,0.125-0.031c-0.406-0.344,0.156-0.156,0.25-0.242\r\n\t\tc-0.125-0.062-0.094-0.125,0.031-0.18C203.219,184.961,203.391,185.422,203.094,185.102z M203.766,187.445\r\n\t\tc0.094,0-0.781,0.258-0.172-0.352C203.828,187.312,203.641,187.375,203.766,187.445z M202.859,189.461\r\n\t\tc0.094-0.367-0.062-0.641,0.562-0.617c-0.219,0.398-0.5,0.625-0.156,0.93c0.141-0.18,0.188-0.336,0.344-0.555\r\n\t\tc0.547,0.562-1,2.414-1.188,3.023c-0.188-0.359-0.203,0.078-0.266,0.172c-0.625-0.25-1.031-0.656-1.516-1.078\r\n\t\tc0.422-0.516,0.875-0.359,1.047-0.57c-0.422-0.242-1.141-0.297-1.391-0.578c0.219-0.25,0.469-0.359,0.625-0.516\r\n\t\tc0.125,0.109,0.297,0.266,0.438,0.391c0.188-0.633,0.344-1.258,1.031-1.258c-0.062,0.578-0.406,1.211-0.562,1.633\r\n\t\tc0.312-0.297,0.453-0.883,0.75-1.266C202.672,189.266,202.766,189.367,202.859,189.461z M201.734,192.695\r\n\t\tc-0.188,0.281-0.109-0.094-0.281,0.156C201.266,192.727,201.641,192.727,201.734,192.695z M199.625,194.711\r\n\t\tc0.344,0.266,0.156-0.109,0.453-0.047c-0.234,0.25-0.266,0.469-0.453,0.688c0.172,0,0.344,0,0.531,0\r\n\t\tc-0.328,1.062-1.984,1.812-2.953,1.094c0.625-0.781,0.281-1.297,0.375-2.234c-0.188,0.016-0.312,0.125-0.406,0.328\r\n\t\tc-0.156-0.75,0.156-1.047,0.516-1.734c0.453,0.469-0.172,0.797,0.766,1.328c0.781-0.625-0.312-1.625,1.297-1.656\r\n\t\tc-0.266,0.344,0.078,0.375,0.078,0.719c0.125-0.188,0-0.281,0.234-0.438c0.531,0.469,0.641-0.172,1.016,0.234\r\n\t\tc-0.281,0.328-1.094,0.094-0.844,0.359C201.609,193.68,199.969,194.289,199.625,194.711z M196.422,200.875\r\n\t\tc-0.531-0.25-0.438,0.031-0.781-0.469c-0.328,0.5-0.125,0.156-0.469,0.281c0.188-0.344-0.031-0.062-0.156-0.156\r\n\t\tc0.234-0.25,0.078-0.469,0.156-0.711c0.078,0.125,0.172,0.094,0.266-0.172c-0.203-0.156-0.234-0.141-0.359,0.109\r\n\t\tc-0.219-0.219-0.188-0.062,0.031-0.391c-0.094,0-0.172-0.016-0.25-0.016c0.219-0.438,0.609-0.656,1.125-0.75\r\n\t\tc0.188,0.172-0.094,0.094,0.062,0.266c0.312-0.312,0.125-0.203,0.453-0.234c0,0,0.156,1.219,0.359,1.312\r\n\t\tC196.594,200.281,196.078,200.594,196.422,200.875z M194.609,197.602c-0.719-0.562-0.25-0.281-0.531-0.844\r\n\t\tc-0.234,0.297-0.188,0.453-0.188,0.875c0.375,0.062,0.031-0.469,0.531,0.031c-0.5,0.625-0.891,0-1.281,0.406\r\n\t\tc-0.312-0.375-0.281-0.656-0.562-0.953c0.344-0.438,0.062-0.859,0.531-1.266c-0.625-0.531-1.844,0.25-2.25-0.344\r\n\t\tc-0.547,0.625-1.75-0.844-2.125-1.188c0.781,0.766-0.094-1.969-0.125-1.75c0.375-0.562,0.156-0.844,0.688-1.375\r\n\t\tc0.469,0.406,0.938,0.531,1.344,0.938c0.156,0.094,0.188,1.062,0.625,0.609c0.359,0.109,0.297-0.359,0.594-0.094\r\n\t\tc-0.188-0.5-1.375-1.859-2.156-2.195c0.344-0.391,0.656-0.773,1.016-0.133c0.328-0.281,0.453-0.219,0.766,0.141\r\n\t\tc0.281-0.344-0.406-0.648-0.625-0.445c-0.266-0.172-0.562-0.305-0.766-0.531c0.266-0.094-0.016-0.5,0.422-0.031\r\n\t\tc-0.125-0.203,0-0.281,0.156-0.328c-0.188-0.227-0.312-0.062-0.562-0.109c0.156-0.086,0.391-0.945,1.078-0.844\r\n\t\tc0.016,0.008,0.859-0.414,0.984-0.508c0.094,0.156,0.609,0.305,0.484,0.289c-0.031,0.047,0.641,0.164,0.922,0.031\r\n\t\tc1.094-0.422,0.062,1.055-0.016,0.914c-0.484,0.516-0.578,1.062-0.438,1.609c0.453-0.453,0.766-0.695,1.172-1.305\r\n\t\tc0.562,0.453-0.359,0.984,0.141,1.477c0.391-0.492,1.219-0.297,0.859,0.172c0.109,0.688-0.875,1.188-1.312,1.625\r\n\t\tc0.469-0.125,0.734-0.125,1.188-0.438c0.484,0.375,0.641,0.891,0.219,1.625c-0.234,0.469-1.031,2.859-0.188,1.906\r\n\t\tc-0.469,1.25,1.031,1.594-0.312,2.531c-0.016-0.312-0.031-0.531,0-0.844c-0.156-0.281-0.281-0.281-0.422,0.031\r\n\t\tC194.609,197.414,194.781,197.414,194.609,197.602z M194.453,198.977c-0.375-0.25,0.062-0.125-0.156-0.328\r\n\t\tC194.547,198.43,194.719,198.695,194.453,198.977z M192.422,197.617c-0.141,0.188-0.219,0.297-0.453,0.234\r\n\t\tc0.016-0.125,0.047-0.25,0.047-0.406C192.156,197.508,192.297,197.57,192.422,197.617z M194.672,184.203\r\n\t\tc0.281-0.336,0.938-0.477,1.312-0.461c-0.375,0.391-0.766,0.531-1.219,0.859C194.734,184.477,194.703,184.328,194.672,184.203z\r\n\t\t M195.703,192.508c-0.078,0.062-0.125-1.758,0.188-1.562c0.188-0.188,0.422-0.297,0.594-0.547\r\n\t\tC196.969,190.781,196,192.352,195.703,192.508z M196.297,196.523c-0.406,0.453-0.391,0.281-0.531,0.172\r\n\t\tC195.891,196.523,196.203,196.477,196.297,196.523z M196.797,187.789c-0.359-0.336-1.688,0.398-1.734-0.477\r\n\t\tc-0.094-1.078,1.312-0.109,1.438-0.016c0.234-0.219,0.547-0.172,0.828-0.297c-0.219-0.031-0.656-0.195-0.625-0.188\r\n\t\tc0.062-0.102,0.125-0.211,0.188-0.312c-0.219,0.195-0.172,0.039-0.156-0.133c-1.5,0.258,0.047-0.555-0.312-1.008\r\n\t\tc-0.219,0.219-0.781,1.086-1.094,0.734c0.109-0.094,0.25-0.211,0.344-0.336c-0.188-0.188-0.188-0.117-0.188-0.062\r\n\t\tc0-0.047-0.016-0.078-0.094-0.211c-0.062,0.117-0.375,0.016-0.469-0.031c0.422-0.398,0.062-0.492,1-0.367\r\n\t\tc-0.062-0.125-0.281-0.18-0.438-0.211c0.062-0.086,0.125-0.18,0.188-0.273c0.203,0.109,0.25,0.203,0.469,0.25\r\n\t\tc0.031-0.031,0.516-0.484,0.578-0.562c-0.328,0.344,0.297,0.133,0.453,0.234c-0.062,0.102-0.125,0.188-0.172,0.281\r\n\t\tc0.109-0.117,0.688,2.109,1.172,2.523c0.594-0.641,0.938-1.547,1.594-2.055c0.062,0.055-0.5,1.297-0.156,1.672\r\n\t\tc-0.281,0.289-0.266,0.32-0.562,0.547c-0.031-0.086,0.203,0.297,0.219,0.492c0.266-0.258,0.469-0.43,0.688-0.719\r\n\t\tc0.438,0.438-0.938,1.672-1.328,1.828C198.578,188.875,197.703,187.789,196.797,187.789z M202.438,186.047\r\n\t\tc-0.188,0.312-0.266,0.562-0.578,0.758C201.953,186.484,202.172,185.852,202.438,186.047z M201.359,188.734\r\n\t\tc0.094,0.102,0.188,0.188,0.281,0.266c-0.469,0.445-0.906,0.945-1.531,0.367c0.25-0.172,0.875-0.07,0.531-0.414\r\n\t\tc-0.312-0.32,0.312-0.164,0.531-0.141c-0.438-0.516-0.344-1.117,0.625-0.531C201.531,188.531,201.578,188.586,201.359,188.734z\r\n\t\t M201.766,188.023c-0.094-0.055-0.438-0.023-0.656-0.164c0.188-0.109,0.375-0.219,0.578-0.344\r\n\t\tC201.734,187.672,201.672,187.773,201.766,188.023z M200.703,183.289c0.188-0.148,0.344-0.398,0.531-0.148\r\n\t\tC201.609,182.789,202.156,184.453,200.703,183.289z M200.266,183.32c-0.016-0.523-0.281-0.555-0.406-0.875\r\n\t\tC200.734,182.359,201.344,182.906,200.266,183.32z M199.062,182.117c0.578,0.32,0.359,0.781-0.391,0.727\r\n\t\tC198.797,182.75,198.859,182.383,199.062,182.117z M199.859,183.594c0.656-0.102,0.703,0.18,1.094,0.609\r\n\t\tc-0.25-0.008-0.594,0.078-0.844,0.07c-0.188,0.812-0.641,0.711-1.25,0.477C197.984,184.383,199.297,182.688,199.859,183.594z\r\n\t\t M193.922,181.977c0.719-0.922,1.062-0.031,1.875-0.844c0.219,0.234,2.188,0.555,2.25,0.594c1.219,0.266,0.016,1.164-0.531,1.547\r\n\t\tc-0.047-0.203-0.062-0.398-0.094-0.578c-0.406,0.484-0.812,0.641-1.391,0.656c0.312-0.398,0.266-0.477,0.812-0.805\r\n\t\tc-0.297-0.273-1.109,0.195-1.484,0.562c0.047-0.125,0.125-0.391,0.062-0.43c-0.266,0.328-0.469,0.727-0.906,0.422\r\n\t\tc0.188-0.203,0.297-0.492,0.438-0.711c-0.406,0.422-0.688,0.438-1.125-0.086C193.875,182.25,194.016,182.055,193.922,181.977z\r\n\t\t M191.344,183.883c0.422-0.109,1.016,0.156,1.266,0.477c0.594-0.438,0.625,1.562,0.594,1.578c0-0.023,0.75,0.781,0.672,0.734\r\n\t\tc0.031,0.297-0.172,0.469-0.109,0.719c0.203,0.781-1.031-0.125-1.312,0.094c-0.406-0.32-1.109,0.352-1.312,0.031\r\n\t\tc-1.5,0.5-0.656,0.906-1.781,0.188c-0.453,0.508-1.422,0.219-0.922-0.344C188.578,186.516,190.672,184.047,191.344,183.883z\r\n\t\t M170.25,178.727c0.016-0.039-0.047-0.297,0.297-0.445c0.125,0.414,0,1.008-0.266,1.555c0-0.258-0.391,0.258-0.344,0.203\r\n\t\tC169.953,180.086,170.234,178.844,170.25,178.727z M167.594,183.414c0.078,0.32,0.156,0.391,0.328,0.164\r\n\t\tc-0.156,0.5-0.359,0.5-0.469,0.727C167.344,183.891,167.453,183.766,167.594,183.414z M162.984,190.219\r\n\t\tc0.438-0.391,0.344,0.039,0.297,0.398c-0.047-0.133-0.547-0.141-0.625-0.156C162.766,190.383,162.875,190.297,162.984,190.219z\r\n\t\t M161.766,190.344c0.156,0.172,0.234,0.234-0.375,0.438C161.562,190.773,161.578,190.594,161.766,190.344z M159,187.445\r\n\t\tc-0.297,0.281,0.109-0.344,0.156-0.438C159.109,187.164,159.047,187.305,159,187.445z M160.109,188.961\r\n\t\tc0-0.227-0.156,0.227-0.234,0.031C159.922,188.938,160.406,188.656,160.109,188.961z M174.328,327.594\r\n\t\tc0.141,0.188,0.344,0.406,0.344,0.656c-0.031-0.062-0.094-0.156-0.141-0.25c0.047,0.125,0.016,0.156-0.078,0\r\n\t\tc0.062,0.125,0.094,0.219,0.156,0.281c-0.219-0.156-0.266-0.188-0.172-0.031C174.25,328.188,173.859,327.406,174.328,327.594z\r\n\t\t M178.859,333.562c-0.125-0.438-0.406-0.625-0.719-0.781c0.188,0.281,0.312,0.281,0.438,0.594\r\n\t\tc-0.344-0.375-0.469-0.375-0.344-0.062c-0.25-0.188-0.5-0.438-0.688-0.656c0.125,0.094,0.125,0.094,0.062-0.031\r\n\t\tc0.125,0.125,0.281,0.188,0.469,0.188c-0.188-0.062-0.703-0.531-0.422-0.312c-0.203-0.156-0.578-0.531-0.828-0.656\r\n\t\tc0.25,0.156-0.234-0.219-0.344-0.375c0.125,0.062,0.312,0.156,0.469,0.219c-0.016-0.062-0.125-0.188-0.234-0.312\r\n\t\tc0.109,0.094,0.203,0.125,0.078-0.188c0.234,0.125,0.453,0.656,0.484,0.781c0.078,0,0.078-0.062,0.031-0.125\r\n\t\tc0.156,0.062,0.344,0.406,0.516,0.469c-0.344-0.375-0.5-0.688-0.75-1.031c0.156,0.156,0.234,0.062,0.375,0.188\r\n\t\tc-0.109-0.5-0.578-0.469-0.688-0.906c0.625,0.219,1.281,0.594,1.188,0.969c0.656,0.5,1.719,1.938,2.125,2.438\r\n\t\tC179.453,333.625,179.312,333.281,178.859,333.562z M180.516,334.094c0.094,0,0.109-0.062,0.062-0.125\r\n\t\tc0.188,0.125,0.344,0.438,0.391,0.469C180.797,334.344,180.547,334.312,180.516,334.094z M181.781,333.156\r\n\t\tc0.109,0.062,0.203,0.062,0.281,0c-0.047-0.156-0.172-0.156-0.078-0.406c0.141,0.25,0.344,0.438,0.641,0.5\r\n\t\tc-0.141,0.094-0.203,0.031-0.312,0.219C182.266,333.312,181.953,333.344,181.781,333.156z M183.219,334.125\r\n\t\tc-0.297-0.062-0.609-0.156-0.672-0.469c0.125,0,0.234,0,0.344-0.031c-0.031-0.062-0.094-0.156-0.141-0.25\r\n\t\tc0.328,0.125,0.453,0.156,0.672,0.469c0-0.25,0.453,0.281,0.234,0.219c-0.359-0.188-0.172,0.125-0.625-0.281\r\n\t\tC183.078,333.906,183.141,334.031,183.219,334.125z M185.797,320.469c0.375,0.094,0.453,0.188,0.234,0.25\r\n\t\tC185.812,320.562,185.797,320.906,185.797,320.469z M200.062,242.125c-0.234-0.156-0.328-0.031-0.328,0.344\r\n\t\tc-1.047-0.5,0.344-0.688,0.391-0.875c0.078,0.219,0.203,0.281,0.109,0.469C199.672,241.594,200.156,242.031,200.062,242.125z\r\n\t\t M200.031,240.812c-0.203,0.375-0.766,0.719-1.109,1.406c-0.875-0.5,0.906-1.5,1-1.875c0.156,0.156,0.438,0.25,0.609,0.375\r\n\t\tC200.484,241.094,200.297,241.125,200.031,240.812z M199.234,235.438c0.453,0.438,0.781,0.969,0.938,1.5\r\n\t\tc-0.094,0.219,0.281,0.375,0.094,0.781C199.672,237.469,199.016,235.938,199.234,235.438z M203.609,242.469\r\n\t\tc0.062-0.156,0.094-0.312,0.094-0.5C204.141,242.281,203.766,242.156,203.609,242.469z M206.266,242.469\r\n\t\tc0.094,0.062-0.188,1.031-0.906,1c0.266-0.469,0.062-0.281,0.156-0.688c-0.188,0.156-0.281,0.438-0.453,0.344\r\n\t\tc0.297-0.562,0.266-0.562,0.453-1.031c-0.266-0.156-0.719,0.25-0.75,0.281c-0.219-0.062-0.375,0-0.656,0.031\r\n\t\tc0.359-0.219,0.562-0.438,0.906-0.594c-0.188-0.125-0.375-0.031-0.625,0c0.125-0.219-1.812-1.781-2.719-1.562\r\n\t\tc0.094-0.156-0.047-0.312-0.031-0.562c0.375,0.219,0.688-0.312,0.969-0.375c-0.438-0.281-0.375-0.188-0.234-0.531\r\n\t\tc0.422,0.281,0.078,0.125,0.297,0.375c0-0.125,0-0.25,0.016-0.375c0.109,0.125,0.172,0.094,0.188-0.094\r\n\t\tc0.109,0.156,0.203,0.25,0.328,0.375c0.188-0.938,1.406-2.875,2.609-2.219c-0.344,0.562-1.312,1.312-1.688,1.844\r\n\t\tc0.078,0.031,1.422-0.312,0.438,0.406c0.297,0.188,0.234,0.438,0.469,0.656c0.219-0.406,0.203,0.031,0.719-0.156\r\n\t\tc-0.047,0.125-0.109,0.188-0.266,0.219c0.531,0.312,0.547-0.344,0.688,0.188c0.047,0.25-0.281,0.688-0.531,0.469\r\n\t\tc0.031,0.438,0.281,0.5,0.031,0.906c0.344-0.031,0.469,0.031,0.812-0.062c-0.266,0.5-1.312,1-0.562,1.312\r\n\t\tc0.281-0.312,0.422-0.312,0.672-0.531C206.484,242.219,206.375,242.344,206.266,242.469z M206.453,235.156\r\n\t\tc0.766,0.781-2.719,1.188-2.375,0.719c-0.75,0.188-1.641,1.5-2.5,0.375c-0.062,0.156-1.469-0.5-2.188-1.125\r\n\t\tc0.281-0.594-2.75-0.719-3.156,0.125c-0.531-0.438-0.906,0.531-1.406,0.062c-0.125,0.188-0.062,0.281,0.156,0.312\r\n\t\tc-0.438,0.281-0.875,0.562-1.094,1c1-0.812,5.531-2.188,4.938,0.25c-0.062-0.094-0.125-0.188-0.172-0.312\r\n\t\tc-0.141,0.312-0.125,0.469-0.234,0.812c-0.062-0.062-0.25-0.156-0.359-0.219c-0.328,0.781-0.672,0.438-0.672-0.188\r\n\t\tc-0.062,0.156-0.188,0.188-0.344,0.125c-0.125,0.344,0,0.281-0.094,0.5c0.25,0.188,0.531,0.344,0.859,0.406\r\n\t\tc-0.047,0.125-0.297,0.656-0.344,0.688c-0.078-0.094-0.172-0.094-0.297,0c0.125,0.062,0.234,0.156,0.344,0.219\r\n\t\tc-0.219,0.594-0.906,1.188,0.125,1.375c-0.047,0.125-0.094,0.25-0.156,0.344c-0.406-0.312-0.125-0.094-0.344,0.125\r\n\t\tc0.578,0.281,0.453,1.125,1.562,0.594c-0.062,0.281-0.156,0.688-0.203,0.781c-0.125-0.062-1.922,0.469-1.891,0.375\r\n\t\tc-0.031-0.125-0.062-0.281-0.109-0.406c-0.266,0.406-0.672,0.531-1.328,0.875c0.062-0.125,0.125-0.312,0.125-0.312\r\n\t\tc-0.172-0.188-0.203,0.094-0.375,0.156c-0.906-1.562,1.344-2.188,1.656-1.281c0.281-0.375,0.625-0.031,0.781-0.281\r\n\t\tc-0.344-0.094-0.703-0.281-1.031-0.406c0.125-0.312,0.25-0.625,0.531-0.469c0.062-0.25-0.094-0.281-0.25-0.5\r\n\t\tc-0.281,0.281-0.688,0.469-0.953,0.75c0.109-0.156,0.109-0.25,0.219-0.469c-0.156-0.156-0.859,0.031-0.359,0.375\r\n\t\tc-0.469-0.188-0.297,0.156-0.812-0.531c-0.188,0.875-0.578,0.531-0.781,1.031c-0.078-0.156-0.156-0.344-0.219-0.5\r\n\t\tc-0.062,0.094-0.094,0.188-0.141,0.281c-0.203-0.156-0.047-0.219-0.094-0.469c-0.297,0.75-0.875,0.531-1.109,0.094\r\n\t\tc-0.672,0.625-1.688,1.031-1.125,2.094c-0.281-0.156-0.281-0.062-0.531-0.125c0.078-0.281,0.281-0.25-0.109-0.438\r\n\t\tc-0.078,0.156-0.141,0.156-0.203,0.406c-0.719-0.469-1.422-0.594-2.031-0.156c-0.047,0.125-1.078,2.531-1.594,0.844\r\n\t\tc-0.125,0.719-0.5,1.406-0.656,1.812c-1.75-0.531,0.344-1.688,0.562-2.281c-0.109-0.062-0.406,0.094-0.812-0.188\r\n\t\tc-0.094,0.312-0.656,1.5-0.906,1.312c0.125,0.625,0.125,0.719,0,1.375c-0.938-0.688,0,0.688,0,0.75\r\n\t\tc-0.125,0.406-0.594,0.25-0.719,0.625c0.281,0.219,0.219,0.562,0.344,0.625c-0.125,0.031-0.266,0.094-0.391,0.125\r\n\t\tc0.203-0.219-0.125-0.469-0.328-0.625c-0.062,0.281,0.031,0.375,0.062,0.625c-0.344-0.125-0.016,0.25-0.406-0.094\r\n\t\tc-0.094,0.812-1.219,1.156-1.781,0.656c-0.172,0.281-3.719,1.688-2.703,2.688c-0.359,1.031-0.109,1.875-0.453,2.688\r\n\t\tc-0.391,1.062-0.625,1.656-0.984,2.719c-0.672-0.406-0.422-3.25,0.016-3.594c-0.25-0.219-0.219-0.062-0.438,0.062\r\n\t\tc0.656-1.625,0.156-1.594,0.188-3.094c-0.906,0.375-1.219-1.406-1.5-1.906c-0.094,0.312-0.266,0-0.406,0.281\r\n\t\tc-0.281-0.188,0.156-0.5-0.156-0.656c-0.062,0.25-1.156-0.344-1.328-0.5c0.531,0.594,0.359,1.094,0.141,1.688\r\n\t\tc-0.125-0.062-0.312-1-0.422-1.312c-0.125,0.312-0.234,0.281-0.328,0.531c-0.594-0.438-0.391-0.312-0.25-0.812\r\n\t\tc-0.328-0.219-0.688-0.125-0.406-0.656c-0.344-0.031-0.688-0.312-0.922-0.75c-0.172,0.562-0.641-0.156-0.703-0.219\r\n\t\tc-0.125,0.344-5.172,0.281-5.422,0.594c0.094-0.125-5.656-0.062-5.656-0.219c0,0.156,0,0.281,0,0.406\r\n\t\tc0-0.844,2.562,4.375,1.938,5.469c-0.406,0.656,1.516,2.75,2.266,3.312c0.094,0.656,1.047,2,1.578,2.531\r\n\t\tc0.656,0.562,2.109,0.125,2.234,0.938c-0.047,0.125,1.875-1.062,1.734-1.156c0.734-0.594,0.828-1.062,1.891-0.625\r\n\t\tc1.469,0.625-0.781,2.75-0.828,3.875c-0.125-0.094-0.203-0.5-0.141-0.656c-0.328,0.375-0.344,1.094-0.516,1.625\r\n\t\tc-0.031-0.031-0.656,0.781-0.781,0.875c1.219,0.562,3.5,1.875,3.031,3.938c-0.406-0.344-1.25,2.594-1.25,3.312\r\n\t\tc0,0.656,0.609,2.531,0.688,2.312c0.203,0.5,1.234,1.062,1.391,0.469c0.844,0.656,0.656,2.875,1.375,3.219\r\n\t\tc0.125-0.438,0.484-1.188,0.906-0.906c0.062-0.438,0.406-1.75,1.047-0.875c0.797-0.906,3.688-0.031,1.75,0.438\r\n\t\tc0.516,0.344-0.297,1.531-0.266,1.844c0,0.5,0.672,0.719,0.625,0.312c-0.078-0.438-0.062-1.219,0.062-1.688\r\n\t\tc0.312,0.125,0.781,0.125,1.062,0.312c0.031-0.062-0.047-0.906-0.031-0.906c0.891,2.688,2.531,4.312,4.859,4.625\r\n\t\tc-0.125,0.281,0.078,0.438-0.484,0.031c0.047,0.688,0.25,0.844,0.719,1.312c0.062-0.312,0.328,0.188,0.125,0.562\r\n\t\tc-0.141,0.688-0.609-0.031-1.25,0.281c0.984,0.344,1.469,0.219,2.094,1.062c-0.016,0.219,0.328,0.594,0.359,0.906\r\n\t\tc0.078,0.75-0.297,0.562-0.438,1.25c0.172,0.031,0.391-0.25,0.219,0.281c0.094-0.219,0.203-0.438,0.297-0.656\r\n\t\tc0.375,0.344,0.938,0.781,0.797,1.625c-0.094-0.031,1.297,0.062,1.266,0.188c1.75,1.531,2.828,4.531,2.625,6.656\r\n\t\tc-0.156-0.031-0.297-0.062-0.438-0.094c0.219,0.312,0.078,0.312,0.031,0.562c0.141,0.031,0.344,0.031,0.438,0.062\r\n\t\tc-0.156,0.469-0.25,0.344-0.344,0.906c-0.766-0.375-0.297-0.312-0.281-0.75c-0.281-0.094-1.234,0.438-0.734,0.688\r\n\t\tc-0.484-0.094-1,1-0.453,1.469c0.312-1.219,0.734-0.812,0.844,0.156c-0.531-1.469,1.344-1.812,1.125-1.156\r\n\t\tc1,0.656,0.281,1.719-0.844,1.156c-0.031,0.156,0.625,0.562,0.75,0.688c0.062-0.312,0.406-0.281,0.609-0.125\r\n\t\tc0.031-0.25-0.141-0.188-0.203-0.438c1.156-0.531,2.219,1.031,2.031,1.656c0.031,0.031,0.453,0.031,0.594,0\r\n\t\tc-0.125,0.406-0.031,1.531,0.406,1.781c0.062-0.156,0.156-0.344,0.234-0.5c0.422,0.219,0.625,0.781,1.016,0.938\r\n\t\tc-0.031-0.062-0.094-0.125-0.125-0.219c1,0.562,3.484,2.531,3.25,4.062c2.031-0.031,1.219,3.281,1.156,4.062\r\n\t\tc-0.547,0.969-2.188,1.312-3.062,2.375c-0.156-0.156-0.266-0.312-0.406-0.469c-0.094,0.5-0.469,0.812-0.719,1.062\r\n\t\tc0.703,0.5-0.281,2.5-0.312,3.031c0.203,0.062-2.219,2.719-2.062,3.312c-0.484,0.375-1.219,0-1.25,0.125\r\n\t\tc-0.484-0.219-1.094-0.25-1.297-0.406c0.016,0.125,0.062,0.281,0.094,0.406c-0.797-0.312-0.562-0.031-1.188-0.312\r\n\t\tc-0.016,0.188-1.266,0.469-1.719,0.188c-0.031,0.344-0.141,2.844-0.297,2.781c0-0.062-1.469,1.625-1.406,1.656\r\n\t\tc0-0.438,0.719-0.531-0.109-1.156c-0.391,0.625-1.469,1.531-1.469,2.094c-0.016,0-1.094,0-1.516-0.312\r\n\t\tc-0.859-0.406-1.469-1.438-1.469-2.438c-0.344,1-0.062,1.562,0.516,2.375c0.812,1.156,0.109,1.344,0.109,2.25\r\n\t\tc-0.172-0.156-0.328-0.094-0.328,0.031c-0.359-0.312-2.109-0.75-2.156-0.75c-0.141-0.125-0.25-0.375-0.453-0.469\r\n\t\tc0.109,0.781,0.188,0.875,0.266,1.688c-0.234,0.125-0.344-0.375-0.297,0.156c-0.188-0.219-0.25-0.25-0.219-0.062\r\n\t\tc-0.312-0.344-0.625-0.688-0.938-0.938c-0.094,0.125-0.094,0.188-0.047,0.375c-0.062-0.094-0.141-0.125-0.234-0.031\r\n\t\tc0.375,0.375,0.469,0.719,0.875,1.219c-0.078-0.5,0.344,0.156,0.344,0.438c-0.266-0.125-0.609-0.281-0.844-0.562\r\n\t\tc0,0.062,0.281,0.25,0.438,0.406c-0.562-0.031-0.625,0.312-0.375,0.938c-0.391-0.156-0.172,0.219-0.125,0.375\r\n\t\tc-2.047-1.188,0.016,2-0.031,2.062c0.094,0.062,0.312,0.219,0.344,0.281c-0.484,0.031-0.688,0.125-1.016,0.438\r\n\t\tc0.25,0.188,0.203,0.25,0.297,0.531c-0.281-0.188-0.359-0.156-0.641-0.469c0.016,0.188,0.062,0.344,0.234,0.562\r\n\t\tc-0.188-0.094-0.125-0.031-0.281-0.094c0.141,0.312,0.094,0.406-0.109,0.281c0.062,0.062,0.578,0.656,0.188,0.5\r\n\t\tc0.25,0.281-8.328,0.438-8.141,0.719c-0.172-0.125-9.203-0.25-9.203-0.406c0,0.094,0,0.156,0,0.25c0-0.125,8.219-0.281,7.969-0.375\r\n\t\tc0.125,0.594,4.344,0.125,4.469,0.719c-0.25-0.219,1.594-0.438,1.391-0.75c0.125,0.312,1.047,0.281,1.359,0.438\r\n\t\tc-0.062,0.062,0.422,0.062,0.375-0.031c0.062,0.156,0.469,0.25,0.562,0.406c-0.516-0.219-0.672-0.719-0.703-1.156\r\n\t\tc0.047,0.156,0.188,0.219,0.281,0.125c-0.375-0.188-0.453-0.688-0.562-1c0.188,0.094,0.234,0.219,0.422,0.281\r\n\t\tc-0.125-0.406-0.328-0.406-0.656-0.625c0.047,0.219,0.203,0.5,0.281,0.688c-0.172-0.062-0.266-0.281-0.422-0.344\r\n\t\tc0,0.062,0.047,0.125,0.094,0.188c-0.25-0.312-0.5-0.688-0.688-1.031c0.312,0.156,0.5,0.281,0.734,0.5\r\n\t\tc-0.062-0.094-0.141-0.219-0.234-0.312c0.094,0.094,0.219,0.188,0.297,0.312c-0.109-0.219-0.078-0.25,0.047-0.156\r\n\t\tc-0.062-0.25-0.203-0.344-0.328-0.625c0.094,0.062,0.172,0.094,0.266,0.125c-0.125-0.125-0.438-0.688-0.266-0.438\r\n\t\tc-0.016-0.031-0.703-1.031-0.172-0.781c0-0.062,0.016-0.156,0.031-0.219c-0.078-0.062-0.156-0.094-0.219-0.156\r\n\t\tc0.062,0.312,0.031,0.25-0.062,0.156c-0.031-0.031-0.062-0.062-0.094-0.062c0.031,0.125,0.062,0.281,0.094,0.438\r\n\t\tc-0.109-0.156-0.125-0.156-0.062,0.031c-0.125-0.062-0.25-0.188-0.312-0.219c0.266,0.125,0.125,0.344,0.109,0.469\r\n\t\tc-0.297-0.75-0.438-1.281-0.547-2c0.031,0.312,0.062,0,0.062-0.125c0.438,0.281,0.594,1,0.75,1.469\r\n\t\tc-0.062-0.469-0.219-0.906-0.312-1.375c0.062,0.062,0.125,0.125,0.203,0.188c-0.172-0.969-0.859-0.938-1.016-1.906\r\n\t\tc0.156,0.062,0.281,0.094,0.406,0.156c-0.031-0.125-0.109-0.125-0.141-0.25c0.578,0.438-0.078-0.188,0.281,0.094\r\n\t\tc-0.094-0.156-0.172-0.312-0.266-0.469c0.078,0.094,0.188,0.062,0.156-0.062c0.125,0.125,0.562,0.625,0.062,0.312\r\n\t\tc0.062,0.156,0.266,0.312,0.359,0.5c-0.297-0.156-0.234-0.062-0.516,0.031c0.188,0.188,0.5,0.375,0.719,0.469\r\n\t\tc-0.125-0.562-0.469-1.656-0.094-1.438c-0.203-0.281-0.156-0.25,0.125-0.281c-0.156-0.312-0.156-0.594-0.234-0.875\r\n\t\tc-0.047-0.5,0.141-0.938-0.453-1.188c-0.312-1.188,0-1.375-0.219-2.406c0-1.406,0.438-2.438,0.375-3.562\r\n\t\tc0.188-1.25,0.281-3.188,0.281-4.719c0.156-1.312,1-4.156,0.766-5.656c-0.422-2.438,0.031-3.062-1.328-4.938\r\n\t\tc-0.656-0.625-1.969-2.469-1.812-3.406c-0.281-0.25-0.172-3.844-0.688-4c0.219-1.375-0.625-4-1.422-5.188\r\n\t\tc-0.859-1.188,1.031-2.969,0.953-3.031c-0.031,0.156-0.141,0.156-0.281,0.25c-0.125-0.25-0.266-0.5-0.391-0.75\r\n\t\tc0.422,0.344,0.188-1.75,0.719-1.219c0.172-0.688,0.297-1.062,0.484-1.812c0.469,0.25,0.625-0.531,1.078-0.188\r\n\t\tc-0.328-1.125,0.578-0.344,0.703-0.844c0.172,0.188,0.531-1.219,0.625-1.594c0.156-0.781,0.312-0.875,0.5-1.656\r\n\t\tc0.016-0.062-0.938-2.312-0.031-1.562c0.062-0.25-0.531-1.125-0.656-1.719c-0.094,0.344-0.703,0.406-0.891,0.312\r\n\t\tc0.141,0.281,0.078,0.5,0.188,0.781c-0.203,0.031-0.172-0.094-0.297,0.156c-0.312-0.219-1.375-2.156-1.5-2.656\r\n\t\tc0.031,0.312-0.031,0.406-0.188,0.219c-0.016-0.125-0.031-0.25-0.031-0.375c0.344,0.156-0.344-1.656-0.438-1.906\r\n\t\tc-0.312,1.25-0.406-0.438-0.125-0.594c0-1.469-0.172-3.281-0.844-3.969c-1.672-1.812-1.25-3.906-2.734-5.812\r\n\t\tc-0.156,0.375-0.719-0.688-0.844-0.125c-1.031-1.719-2.016-3.531-2.906-5.469c-0.953-2.031,0.25-4,0.266-6.062\r\n\t\tc0.031-4.375-0.594-8.125,0.406-12.469c-0.156-0.094-0.312-0.125-0.375,0.062c-0.062-0.188-0.156-0.562-0.281-0.719\r\n\t\tc-0.969,1.5-0.547,4.125-0.75,5.906c0.328,0.594-0.531,4.625-0.75,5.312c-0.516-0.625,0.359-3.094-0.016-3.656\r\n\t\tc0.422-1.25-0.078-2.406-0.203-3.719c0.891,1.031,0.688-2.062,0.703-2.781c0.016-1.031,0.234-2.531,0.703-3.281\r\n\t\tc-0.234-0.281-0.562-2.938-0.547-3c0.203-0.344,0.422-3.031,0.672-2.75c0.125-0.25,0.062-0.875,0.062-1.25\r\n\t\tc0.109,0.125,0.078,0.25,0.156,0.375c0.172-0.281,0.312-1.406,0-0.625c-0.812-1,1.531-4.75,2.016-5.656\r\n\t\tc1.547-2.656,2.109-3.875,3.422-6.375c0.219,0.812,0.531,0.812,0.594,1.25c0.016-0.031,0.031-0.031,0.031-0.062\r\n\t\tc-0.094,0.094-0.109,0.188,0,0.25c0-0.062-0.031-0.125-0.031-0.188c-0.125,0.219-0.344,0.438-0.156,0.656\r\n\t\tc0.641-1.094,0.594-1.969,1.047-2.969c-0.547,0.062-0.359-0.906-0.062-1.5c-0.859,0-0.266-0.75-0.891-1.062\r\n\t\tc0.031,0.688,0.328,1.312,0.422,1.938c-0.281,0.406-0.062,1.875-0.203,2.562c-1.125-0.938,0.109-2.094-0.719-2.719\r\n\t\tc0.469-0.656-0.375-1.094,0.312-2.031c0.062,0.094,0.125,0.156,0.188,0.25c0.406-0.625,1.484-1.656,0.781-2.188\r\n\t\tc0.156-0.188,0.219-0.438,0.438-0.656c0.016,0.094,0.031,0.188,0.031,0.281c0.25-0.406,0.141-0.375,0.391-0.719\r\n\t\tc0.047,0.031-0.188,0-0.297-0.062c-0.094,0.156-0.141,0.188-0.281,0.281c0.109-0.188,0.688-1.594,0.641-1.625\r\n\t\tc-0.047-0.062,0.859-0.688,0.922-0.781c-0.141,0.062-0.375,0.219-0.531,0.281c-0.094-0.125,0.062-0.594,0.141-0.844\r\n\t\tc0.391,0.562,0.297-0.188,0.406-0.438c-0.047,0.125-0.078,0.219-0.109,0.344c-0.062-0.094-0.141-0.125-0.25-0.094\r\n\t\tc0.125-0.625,0.25-0.906,0.688-1.562c-0.5,0.781,0.406-1.062-0.156-0.219c0.062,0.094,1.172-3.289,1.406-3.742\r\n\t\tc-0.188,0.219-0.375,0.484-0.562,0.719c-0.062-0.062-0.234-0.5-0.281-0.609c0.062-0.078,0.031,2.109-0.469,1.438\r\n\t\tc-0.156,0.516-0.531,1.328-0.328,1.602c0.172-0.352,0.359-0.398,0.516-0.555c-0.469,0.523-0.219,0.805-0.906,1.055\r\n\t\tc-0.031-0.031,0.234-0.688,0.312-0.852c-0.109,0.164-0.188,0.195-0.312,0.289c0.141-0.711,0.438-1.352,0.844-1.852\r\n\t\tc-0.062,0.062-0.156,0.109-0.234,0.172c0.188-0.531,1.016-3.344,0.953-3.422c-0.047,0.094-0.094,0.203-0.156,0.297\r\n\t\tc0.016-0.594-0.062-0.703,0.297-1.156c-0.984-0.766-0.453-2.266-1.016-3.062c0.312-0.312,0.125-0.727,0.344-0.898\r\n\t\tc0.156,0.227,0.156-0.102,0.344-0.289c-0.047-0.18-0.281-0.156-0.375-0.031c-0.156-0.32,0.094-0.117-0.156-0.555\r\n\t\tc-0.438,0.57-0.391,0.859-0.969,1.305c0.016-0.336,0.031-0.477-0.031-0.711c-0.125,0.109-0.25,0.211-0.359,0.297\r\n\t\tc-0.047-0.07-0.047-0.133,0.078-0.18c-0.359,0.156-0.469,0.172-0.938,0.422c0-0.086,0.016-0.18,0.031-0.273\r\n\t\tc-0.188,0.188-0.141,0.07-0.281-0.156c0.688-0.414,1.188-1.406,2.031-1.547c0.156,0.32-0.156,0.117,0.125,0.547\r\n\t\tc0.25-0.273,0.281-0.422,0.5-0.586c-0.031-0.102-0.25-0.023-0.391-0.117c0.156-0.164,0.016-0.133,0.172-0.32\r\n\t\tc-0.594,0.133-1.281,0.336-1.625,0.742c-0.062-0.219,0.031-0.18,0-0.352c-0.406,0.484-2.219,1.742-2.312,1.5\r\n\t\tc-0.672,0.844-1.859,0.234-2.5,0.969c0-0.078,0.016-0.164,0.031-0.25c-0.25,0.102-0.688,0.125-0.781,0.234\r\n\t\tc0-0.094,0.031-0.188,0.031-0.289c-0.25,0.352-0.016-0.391-0.062-0.477c-0.125,0.273-0.453,0.367-0.766,0.641\r\n\t\tc-0.031-0.07-0.109-0.336-0.125-0.359c0.375-0.289,0.578-0.117,0.953-0.539c0.031,0.195,0.188,0.492,0.25,0.641\r\n\t\tc0.625-0.664,0.875-0.195,1.672-0.656c0.375-0.508,1.141-1.039,1.734-1.312c-0.062-0.164-0.344-0.148-0.531-0.195\r\n\t\tc0.078-0.125,0.172-0.25,0.281-0.375c-0.156-0.188-0.406,0.18-0.5,0.289c-0.047-0.242,0.297-0.977,0.406-1.227\r\n\t\tc-0.203,0-0.594-0.039-0.75-0.023c0.031-0.055,1.438-1.602,1.281-2.023c-0.188,0.203-0.281,0.227-0.438,0.391\r\n\t\tc-0.203-0.461,0.156-1.016,0.562-1.305c0.125-0.156,0.312-0.148,0.438-0.305c-0.297-0.938,0.281-1.445,1.375-1.961\r\n\t\tc-0.047,0.117-0.156,0.367-0.141,0.438c0.234-0.43,0.547-0.656,0.859-0.93c-0.094,0.219-0.188,0.648-0.141,0.836\r\n\t\tc0.953,0.391,1.469-0.391,1.938-1.273c-0.109,0.078-0.266-0.086-0.609-0.031c0.156-0.227,0.188-0.516,0.312-0.727\r\n\t\tc-0.281,0.305-0.25-0.531-0.531-0.273c0-0.297,0.516-1.695,0.594-1.25c0.359-0.312,0.219-0.492,0.062-0.766\r\n\t\tc0.406-0.43,0.594-0.008,0.828-0.188c-0.125,0.109-0.125,0.234-0.016,0.367c0.578-0.562,0.453,0.016,0.781-0.258\r\n\t\tc0.266,0.719-0.922,0.891-0.203,1.891c0.188-0.25,0.047-0.5,0.234-0.633c0.062,0.055,0.141,0.109,0.219,0.172\r\n\t\tc-0.156,0.062-0.172,0.188-0.031,0.328c0.25-0.234,0.594-1.406,0.609-1.57c-0.109-0.141-0.203-0.133-0.297,0.016\r\n\t\tc-0.172-0.531,1.062-2.586,1.562-2.898c0.328,0.891,0.719,0.469,0.875,0.703c0.719-0.922,2.062-0.523,2.25-0.688\r\n\t\tc0.031,0.188-0.312,0.414,0.188,0.008c0.047,0.102,0.469,0.945,0.812,0.414c0.188,0.562,0,0.555-0.344,1\r\n\t\tc0.156-0.008,0.453-0.086,0.5,0.008c-0.281,0.234-0.219,0.227-0.266,0.531c0.344-0.289,0.078,0.336,0.359,0.047\r\n\t\tc-0.047,0.289,0.156,1.352-0.062,1.523c0.5,0.18,1.031,1.945,0.953,2.906c0.141-0.062,0.297-0.117,0.453-0.188\r\n\t\tc0.047,0.195,0.406,1.977,0.312,2.227c-0.062,0.195-0.312,2.578-0.25,2.625c0.281-0.289,0.344-0.555,0.438-0.969\r\n\t\tc0.281,0.352-0.125,0.75,0.5,0.109c-0.016,0.094-0.031,0.18-0.031,0.266c0.188-0.195,0.422-0.312,0.609-0.516\r\n\t\tc0.047,0.109-0.141,0.594-0.234,0.734c0.562-0.125,0.984-0.133,1.219,0.305c0.219-0.133,0.438-0.273,0.656-0.414\r\n\t\tc0.562,0.977-0.25,0.484-0.625,0.992c0.469,0.562,1.562-0.359,2.094-0.672c-0.188,0.656-1.094,3.062-0.75,3.547\r\n\t\tc0.359-0.469,0.719-0.508,1.078-0.938c-0.203,0.266-0.406,0.664-0.766,1.094c0.188,0.289,0.625,0.008,0.75-0.133\r\n\t\tc0.656,0.75,0.062,3.219,1,3.938c0.031-0.125,0.062-0.25,0.078-0.375c0.359,0.375,0.578,1.031,0.141,1.5\r\n\t\tc-0.375-0.344-1.344,0.031-0.844,0.531c-0.172,0.125,0.453,0.5,0.625,0.625c-0.031-0.031,0.719,0.594,1.094,0.219\r\n\t\tc0.531,0.531,0,1.219-0.406,1.594c0.094,0.125,0.188,0.156,0.281,0.125c-0.156,0.297-0.281,0.594-0.344,0.938\r\n\t\tc0.609-0.344,0.641-1.109,1.297-1.422c0.078,0.078,1.422,0.141,1.609-0.016c-0.062-0.125-0.031-0.219-0.109-0.344\r\n\t\tc-0.406,0.406-0.781-0.141-1-0.281c-0.109,0.141-0.203,0.281-0.297,0.406c-0.031-0.047,0.031-0.609-0.219-0.219\r\n\t\tc0.312-0.531,0.922-0.844,1.25-0.391c0.578-0.734,0.469,1.453,0.422,1.766c0.141-0.031,0.234-0.094,0.297-0.219\r\n\t\tc-0.156,0.312-0.094,0.344-0.344,0.578c0.062,0.047,0.438,0.141,0.531,0.047c-0.016,0.469,0.219,1.219,0.266,1.523\r\n\t\tc0.703-0.18,1.219,0.625,1.672,1c0.219-0.5,0.562-0.688,0.797-1c-0.047,0.406,0.062,0.562-0.078,1\r\n\t\tc0.281,0.219,0.156,0.062,0.438-0.062c-0.062,0.188-0.188,0.281-0.375,0.312c0.062,0.094,0.156,0.094,0.25,0.031\r\n\t\tc-0.531,0.781-0.406,1.156-0.734,1.906c0.25-0.031,0.297,0.188,0.453-0.062c-0.594-0.469,0.5-1.031,0.719-1.281\r\n\t\tc0.234,0.031,1.344,0.219,1.734-0.281c-0.156-0.125-0.359-0.125-0.547-0.219c0.219-0.344,0.562-0.594,0.875-0.75\r\n\t\tc0.094,0.094-0.031,0.312,0.25,0.406c0.25-0.344,0.375-0.281,0.594-0.562c-0.281-0.406-0.828-0.156-0.75-1.211\r\n\t\tc-0.141,0.172-0.266,0.328-0.391,0.5c-0.094-0.172,0.109-0.312-0.25-0.188c0.812-0.562,0.172-0.875,0.641-1.359\r\n\t\tc0.219-0.266,0.906-0.609,1.266-1.047c0.047,0.156,0.094,0.344,0.141,0.5c0.656-1.031,1.625-2.422,2.5-3.344\r\n\t\tc0.016,0.094,0.031,0.188,0.062,0.25c0.516-0.391,0.281-0.438,0.719-0.016c0.156-0.094,0.312-0.156,0.469-0.25\r\n\t\tc0.391,0.359,0.531,0.703,0.438,1.172c0.328,0.172,0.453,0.375,0.844,0.656c-0.531,0.281-1.188,1-1.781,0.656\r\n\t\tc-0.734,0.016-1.531-1.156-1.453,0.078c-0.453,0.047-0.922,0.203-1.047,0.391c0.281,0.219,0.469,2.406,0.344,2.742\r\n\t\tc-0.047-0.094,0.141,0.125,0.156,0.156c-0.438,0.312-0.312,0-0.516-0.219c-0.109,0.094-0.25,0.188-0.375,0.281\r\n\t\tc0.109,0.031,0.234,0.062,0.359,0.094c-0.266,0.406-0.906,0.25-1.016,0.469c-0.109,0.312,0.234,0.719,0.109,0.875\r\n\t\tc0.5,0.406-0.25,1.531-0.625,2c0.625,0.438,1.188-1.094,2.141-1c-0.125,0.219-0.609,1.938-1.25,1.5\r\n\t\tc-0.484,0.719-0.172,1.031-0.578,1.969c0.297,0.219,0.062,0.062,0.391,0.281c1.172-0.812,3.547-1.562,3.422-3.281\r\n\t\tc0.656,0.531,1.125,0.938,1.125,1.625c-0.078-0.062-0.375,0.344,0.297,0.625c-0.297,0.219-0.391,0.562-0.953,0.688\r\n\t\tc0.094,0.094,0.219,0.156,0.312,0.219c-0.312,0.375-0.688,0.594-0.938,1.125c-0.172,0.375,0.219,0.562-0.266,1.219\r\n\t\tc-0.141-0.188-1.938-0.312-2.203,0.188c-0.031-0.438-0.25-0.5-0.031-1.031c-0.078-0.062-0.344-0.125-0.484-0.156\r\n\t\tc0.094,0.062,0.219,1.031,0.125,1.125c-0.547-0.438-0.5-0.75-1.156-1.281c-0.219,0.281-0.547,0.812-0.828,1.188\r\n\t\tc-0.234-0.125-0.938-1.594-0.969-1.719c-0.234,0.281-0.234,0.312-0.359,0.531c-0.141-0.156-0.297-0.25-0.484-0.375\r\n\t\tc-0.125,0.188,1.188,1.406,1.531,1.562c-0.422,0.625-1.312,0.406-1.594,0.844c0-0.25-0.281-0.719-0.219-0.781\r\n\t\tc-0.344-0.188-0.953,0.281-1.188,0.719c-0.062-0.125-0.125-0.25-0.203-0.375c-0.203,0.469-0.562,1.656-1.109,0.594\r\n\t\tc-0.203,0.25-0.203,0.438-0.531,0.156c0.109,0.062,0.125,0.156,0.094,0.281c-0.531-0.438-2.031,0.844-2.656,0.781\r\n\t\tc-0.266,0.438-0.625,0.625-1.172,1.125c0.234,0.188-0.172,0.906-0.25,1.219c1.172,0.344,0.391,2-0.125,2.781\r\n\t\tc2.156-0.094,1.031,3.344,1.797,3.844c0.406,1.469,3,2.781,1.156,4.25c-0.531,0.406-0.953,1.938-0.812,2.625\r\n\t\tc0.281,1.281,1.719,1.531,1.875,0.312c0.047-0.375,0.844-2.812,1.312-2.781c0.75,0.062,2.031-0.969,2.5-0.688\r\n\t\tc0.062-0.156,0.094-0.312,0.141-0.469c-0.047,0.281-0.125,0.344-0.266,0.188c0.594-0.781,1.219-2.312,0.922-3.281\r\n\t\tc-0.484-1.594,0.922-0.844,1.578-1.656c-0.5-0.25,0.219-0.938,0.469-1.062c-0.609-0.375,0.625-0.938,0.719-0.906\r\n\t\tc0.578-0.781,0.094,9.641,1.156,10.5c0.984,0.672,2.688,13.031,1.828,13.031c0.109,0,0.203,0,0.297,0\r\n\t\tc-0.375,0,0.078-9.969,0.641-9.672c-0.047,0.188-0.156-5.141-0.312-5.297c-0.391,0.562,0.297-2.125,0.578-1.922\r\n\t\tc-0.609,0.406-1.516-0.422-1.562,0.359c0.344,0.156,0.641,0.625,0.344,1.078c0.172,0,0.344-0.578,0.5-0.391\r\n\t\tc-0.156,0.203-0.094,0.297-0.125,0.547c0.484-0.188,0.812-0.328,1.125-0.156c0.312-0.547,1.672-1.922,2.109-1.625\r\n\t\tc-0.781,1.156-0.266,1.922-0.547,2.891c-0.188-0.109-0.312-0.016-0.5,0.047c0.438,0.25,0.625,1.484-0.094,1.828\r\n\t\tc0.219,0.156,0.531,0.781,0.312,1.125c-0.281-0.312-0.031,0.031-0.688-0.406c0.062-0.062-0.156,0.562-0.188,0.625\r\n\t\tc0.094,0.125,0.188,0.125,0.312,0c-0.406,0.75,0.688,2,0.422,2.719c0.109,0.125,0.234-0.094,0.391-0.188\r\n\t\tc-0.125,0.281,0.062,0.219,0.25,0.188c-0.594,1.281,0.781,0.469,0.484,1.406c-0.578-0.344-1.656,0.312-2.531-0.156\r\n\t\tc-0.031,1.281,3.141-0.438,2.547,1.656c0.188,0.125,0.203-0.031,0.375-0.156C206.406,234.938,206.891,234.312,206.453,235.156z\r\n\t\t M197.875,239.125c-0.391,0.844-0.016,1.031,0.75,1.406c-0.281-0.156-0.016,0.188-0.016,0.344\r\n\t\tc-0.156,0.031-0.312,0.062-0.484,0.094c0.141-0.312-0.078-0.188,0.203-0.438C197.75,240.25,196.828,239.625,197.875,239.125z\r\n\t\t M189.781,242.719c-0.266,0.562-0.953-0.031-1.25-0.219C188.703,242.031,189.516,242.594,189.781,242.719z M176,274.844\r\n\t\tc0,0.188,0,0.344,0,0.562C176,275.219,176,274.688,176,274.844z M185.406,279.125c-0.141-0.594-0.734,1.688-0.141-0.594\r\n\t\tC185.484,278.625,186,279.281,185.406,279.125z M184.844,269.25c-0.672-0.062-0.875,0-0.953-0.781\r\n\t\tc0.422,0.188,0.594,0.156,0.922,0.375C184.75,269.125,184.875,269,184.844,269.25z M177.609,262.531\r\n\t\tc1.031-0.688-0.906-2.438-0.938-3.438c-0.094-1.844-2.062-1.125-2.562-1.812c0.656-0.562,1.781-0.812,2.125,0.406\r\n\t\tc0.141,0,0.219-0.094,0.219-0.219c0.969,1.156,1.5,2.406,2.062,3.656c0.094,0.219,0.562,1.219,0.844,1.594\r\n\t\tC180.609,264.344,178.297,262.812,177.609,262.531z M177.797,265.062c-0.531-0.344-0.438-0.281-0.922-0.656\r\n\t\tc-0.172-0.281-0.375-0.656-0.266-0.906C177.109,263.594,178.172,264.406,177.797,265.062z M175.469,258.281\r\n\t\tc-0.281,0.219-0.219,0.469-0.656,0.25c0.078-0.25,0.281-0.375,0.375-0.688C175.266,258,175.359,258.125,175.469,258.281z\r\n\t\t M178.484,257.406c0.203,0.062,0.734-0.25,0.406,0.5C178.75,257.719,178.625,257.562,178.484,257.406z M180.328,266.219\r\n\t\tc0.297-0.531,0.25-1.031,0.125-1.75c1.078,0.594,2.594,1.938,2.625,3.281c-0.75-0.438-1.062-0.375-1.719-1.031\r\n\t\tc-0.156,0.469-0.188,0.125-0.422,0.438c0.016,0-0.828-0.938-1.125-1.094c-0.469-0.344-0.828-0.375-0.578-0.938\r\n\t\tC179.797,265.438,180.188,265.688,180.328,266.219z M173.828,321.75c-0.156-0.125-0.172-0.062-0.094,0.125\r\n\t\tc-0.094-0.094-0.125-0.062-0.078,0.031c-0.484-0.188-0.281-0.812-0.406-1.406c0.031,0.031,0.266,0.406,0.203,0.125\r\n\t\tc0.25,0.156,0.203,0.125,0.25,0.469C173.422,320.969,173.734,321.562,173.828,321.75z M166.781,192.102\r\n\t\tc-0.141-0.5,0.016-0.688,0.266-1.141c0.188,0.172,0.188,0.172,0.266,0.234c-0.094-0.125,0.016-0.281,0.156-0.297\r\n\t\tc0.078,0.078-0.016,0.234,0.047,0.406c0.25-0.281,0,0.078,0.234-0.172c-0.016,0.25-0.047,0.719-0.297,0.969\r\n\t\tC167.344,191.945,167.016,191.836,166.781,192.102z M167.953,190.883c0.156-0.133,0.312-0.273,0.469-0.422\r\n\t\tc0.109,0.156,0.062,0.289-0.125,0.391c0.031,0.125-0.094,0.219-0.188,0.312C168.125,190.664,168.094,191.227,167.953,190.883z\r\n\t\t M168.438,205.938c0.125-0.5,0.25-1.281,0.234-1.438c0.266-0.406,0.312-0.812,0.594-1.188c0.188,0.125,0.281,0.281,0.422,0.531\r\n\t\tc-0.734,0.562-0.625,1.312-0.938,1.781C168.562,205.281,168.578,205.781,168.438,205.938z M171.297,201.156\r\n\t\tc0.031,0.031-0.75,1.938-0.906,2.125c-0.141-0.312,0.016-0.281,0.125-0.625c-0.156-0.062,0.25-0.938,0.344-1.094\r\n\t\tc-0.141-0.312-0.031-0.406,0.25-0.906c-0.047,0.375,0,0.594-0.047,0.938C171.203,201.469,171.266,201.344,171.297,201.156z\r\n\t\t M172.094,198.914c-0.234,0.328-0.203,0.531-0.609,0.484c0.328-0.422,0.578-0.859,0.719-1.359\r\n\t\tC172.625,198.57,171.953,198.664,172.094,198.914z M201.766,202.406c-0.094,0.281,0,0.469,0,0.812\r\n\t\tc-0.109,0.188-0.234,0.188-0.391-0.094C201.484,202.844,201.641,202.656,201.766,202.406z M200.406,214.781\r\n\t\tc-0.141,0.188-0.172,0.031-0.203-0.125C200.594,214.375,200.266,214.719,200.406,214.781z M195.984,211.781\r\n\t\tc0.156-0.219,0.312-0.438,0.438-0.656c-0.312-0.156-0.312-0.062-0.562-0.219c0.25-0.688,0.641-0.031,1.031-0.438\r\n\t\tc0.328-0.594,0.578-1.188,1.188-1.75c0.188,0.156-0.094,0.219,0.188,0.344c-0.422,0.125-0.219,0.125-0.469,0.469\r\n\t\tc1.031-0.031,0.734,1.719,0.312,2.438c0.094,0.094,1.094-0.281,0.562,0.406c-0.094-0.062-0.281,0.188-0.531,0.188\r\n\t\tc0.062-0.156-0.344-0.531-0.453-0.688c-0.297-0.406,0.297-0.625,0.453-0.875C197.109,210.688,197.078,212.031,195.984,211.781z\r\n\t\t M197.578,212.969c-0.406,0.375-1.219,0.438-1.719,0.156C196.016,212.719,197.031,213.062,197.578,212.969z M198.281,208.844\r\n\t\tc0.188-0.25-0.109-0.375,0.266-0.188C198.547,208.938,198.516,209.062,198.281,208.844z M198.859,214.875\r\n\t\tc-0.25,0.344-0.297,0.562-0.625,0.75C197.797,215.281,198.672,214.969,198.859,214.875z M194.609,221.781\r\n\t\tc0.5,0.406-0.219,0.625-0.375,0.906C193.859,222.5,193.984,222.188,194.609,221.781z M191.203,225.906\r\n\t\tc-0.219,0.25-0.5-0.344-0.562-0.625C191.141,225.219,190.984,225.562,191.203,225.906z M207.672,220.062\r\n\t\tc0.297-0.5,0.984-0.562,0.625,0C208.047,220.062,207.922,220.281,207.672,220.062z M213.016,215.906\r\n\t\tc-0.516,0.312-0.406,0.094-0.719,0.688c-0.438-0.219,0.125-0.281-0.391-0.594c-0.156,0.312-0.344,0.281-0.609,0.75\r\n\t\tc-0.047-0.094-0.094-0.188-0.125-0.281c-0.188,0.406,0.094,0.312-0.125,0.719c-0.25-0.406-0.219-0.062-0.375-0.625\r\n\t\tc-0.25,0.438-0.156,1.438-0.781,1.031c0.125-0.188-0.188-0.438-0.375-0.594c0.125-0.25,0.156-0.062,0.375-0.125\r\n\t\tc-0.125-0.125-0.266-0.219-0.422-0.312c0.109-0.094,0.234-0.219,0.359-0.312c-0.531-0.188,0.078-0.031-0.562-0.344\r\n\t\tc0.141-0.219,0.359-0.125,0.594-0.188c-0.375-0.344-1.172-0.5-0.578-1.5c-0.375,0.094,0.078-0.031-0.328-0.219\r\n\t\tc-0.094,0.281-0.031,0.312-0.234,0.625c-0.297-0.125,0.219-0.438-0.047-0.625c-0.375,0.562-0.031,0.5-0.297,0.969\r\n\t\tc-0.25-0.188-0.047-0.312-0.359-0.406c-0.422,0.531,0.25,2.312,0.375,3.062c0.031-0.156,0.094-0.312,0.125-0.469\r\n\t\tc0.078,0.031,0.156,0.094,0.219,0.125c-0.031,0.219-0.344,0.562-0.125,0.688c-0.078,0.094-0.172,0.156-0.25,0.219\r\n\t\tc-0.062-0.062-0.094-0.188-0.125-0.281c-0.312,0.375,0,0.812-0.594,0.438c-0.062,0.125,0.125,0.688,0.031,0.969\r\n\t\tc-0.078-0.062-0.406-1.906-0.828-1.094c-0.141-0.25-0.234-0.5-0.328-0.781c-0.344,0.469-0.344-0.188-0.734-0.469\r\n\t\tc-0.656,1.375,1.25,2.438,0.641,3.469c-0.656-0.406-0.531-0.719-1.312-1.406c-0.641-0.562-1.438-0.531-1.938-1.25\r\n\t\tc0.156-0.156,0.438-0.094,0.688-0.125c-0.109-0.062-0.156-0.312-0.156-0.469c-0.062,0.312-0.188,0.375-0.375,0.125\r\n\t\tc0.297-0.5,0.125-0.156-0.125-0.281c0.375-0.688,0-0.75,0.438-1.438c-0.25-0.219-0.5-0.25-0.625-0.25\r\n\t\tc0.047-0.156,0.125-0.156,0.219-0.062c-0.031-0.188-0.094-0.406-0.062-0.594c-0.031,0.125-0.031,0.219-0.062,0.344\r\n\t\tc-0.406-0.219,0.125-0.562-0.188-0.688c-0.156,0.531-1,0.844-0.656,0.344c-0.656,0.344-1,0.094-1.484-0.219\r\n\t\tc0.172-0.281,0.609-1.188,0.953-1.75c0.375,0.625,1.031,0.75,1.344,0.906c0.141-0.125,0.172-0.094,0.375-0.094\r\n\t\tc-0.109,0.25,0.812,0.438,1.062,0.688c0.25-0.688,0.281-1.312,0.234-1.969c0.594,0.406,0.938-0.469,1.562-0.125\r\n\t\tc-0.016-0.781,0.172-0.688,0.453-0.688c0.094-0.094,0.188-0.125,0.281-0.219c-0.188-0.156,0.375-2.375,0.781-2.562\r\n\t\tc-0.375-0.25-0.812,0.062-1.344,0.062c0.266-0.375-0.031-0.531,0.547-1c0.031,0.094,0.078,0.188,0.109,0.281\r\n\t\tc0.188-0.344-0.391-1.281,0.453-0.875c0.172-0.312-0.312-0.125-0.141-0.469c-0.188,0.062-0.359,0.156-0.562,0.219\r\n\t\tc0.328-0.562,0.125-0.031,0.375-0.375c-0.312-0.188,0-0.344-0.297-0.562c-0.281,0.25-0.031-0.156-0.406,0.312\r\n\t\tc0.125-0.281,0.234-0.625,0.391-0.938c-0.312-0.188-0.281,0.094-0.406-0.062c0.094-0.188,0.188-0.406,0.297-0.594\r\n\t\tc-0.266-0.031-0.531-0.031-0.703,0.125c0.141,0.031,0.266,0.062,0.391,0.062c-0.578,1.031-1.109-0.312-1.359-0.75\r\n\t\tc-0.203,0.375-0.406,0.875-0.531,1.406c-0.109-0.062-0.141-1.562-0.219-1.938c0.047,0.281,0.094,0.906-0.094,1.125\r\n\t\tc-0.578-0.438-1.453-1.25-1.531-1.938c-0.031,0.125-0.062,0.25-0.094,0.375c-0.406-0.438-0.25-0.875-0.344-1.5\r\n\t\tc-0.156,0.188-0.344,0.125-0.562-0.031c0.062-0.344,0.078-0.719,0.484-0.969c-0.141-0.773-0.172-3.227,1-2.555\r\n\t\tc0.234-0.156,1.422-0.75,1.422-0.719c0.688-0.031,2.359,0.656,2.281,1.469c0.469,0.031,0.906,0.266,1.188,0.891\r\n\t\tc-0.156,0.109-0.281,0.266-0.406,0.383c0.812-0.164,2.656-0.148,2.312,0.156c0.078,0.219,0.016,1.188,0.016,1.188\r\n\t\tc-0.828,0.875-2.594,0.25-2.609-1.031c-0.469,0.562-0.938,1.156-1.344,1.594c0.656,0.656,0.438-0.031,0.562-0.156\r\n\t\tc0.344-0.156,0.5-0.219,0.875-0.219c0,0.344-0.125,0.312-0.188,0.469c0.156,0,0.312-0.031,0.453-0.031\r\n\t\tc-0.141,0.188-0.344,0.688-0.547,0.938c0.25-0.25,0.469-0.375,0.75-0.812c0.312,0.219,0.344,0.531,0.594,0.781\r\n\t\tc0.25-0.375-0.125-0.562-0.25-0.844c-0.188-0.469,1.156-0.531,0.969,0.156c-0.25,0.844,1.031,0.938,1.422,1.156\r\n\t\tc-0.234,0.375-0.484,0.625-0.578,0.812c0.125,0,0.25,0,0.406,0.031c-0.422,0.656-0.219,0.562-0.875,0.594\r\n\t\tc-0.062,0.312-0.062,0.5-0.062,0.75c0.188-0.125,0.375-0.281,0.562-0.406c0.109,0.062-0.062,0.531-0.156,0.688\r\n\t\tc0.078,0.094,0.141,0.062,0.156-0.094c0,0.156-0.109,0.344,0.031,0.375c0-0.156,0.109-0.531,0.172-0.656\r\n\t\tc0.016,0.031,0.312,0.094,0.5,0.156c-0.047,0.219-0.109,0.438-0.156,0.656c0.109,0.062,0.469,0.156,0.203,0.531\r\n\t\tc0.172,0.094,0.219-0.062,0.406,0.062c-0.297,0.469-0.438,0-0.75,0.438c0.188,0.219,0.531-0.031,0.75-0.062\r\n\t\tc-0.062,0.188-0.281,0.25-0.453,0.281c0.609-0.062,0.891,0.219,0.953,0.812c-0.344-0.188-0.391-0.031-0.719-0.062\r\n\t\tc0.594,0.375-0.141,0.281,0.344,0.562c0.188-0.062,0.25-0.375,0.484-0.281c0.094,0.781-0.422,1.188-0.953,0.781\r\n\t\tc0.062,0.125,0.031,0.25-0.062,0.312c0.531,0.375,0.219,0.312,0.453,0.875c-0.625-0.375-0.391-0.219-0.641-0.594\r\n\t\tc-0.125,0.188-0.094,0.438-0.031,0.75c-1.594-0.156-0.062,0.562-0.438,1.094c0.094,0.094,0.406-0.031-0.062,0.312\r\n\t\tc0.266,0.156,0.062-0.156,0.344,0c-0.375,0.438,0,0.125-0.188,0.469c0.25,0.156,0.094-0.219,0.312,0\r\n\t\tc-0.141,0.156-0.312,0.312-0.469,0.5c0.25,0.125,0.281-0.094,0.516-0.094c-0.172,0.438,0.188-0.094,0.266-0.219\r\n\t\tc0.188,0.125-0.062,0.344-0.125,0.5c0.125,0.062,0.344-0.312,0.625-0.375c-0.109,0.281-0.156,0.375-0.422,0.688\r\n\t\tc0.281,0.125,0.141,0.219,0.391-0.125c-0.062,0.469,0.109,0.438-0.219,0.812c0.141,0.031,0.156,0.094,0.047,0.188\r\n\t\tc0,0.031,0.578,0.5,0.453,0.469c0.078-0.406,0.234-0.5,0.469-0.281c-0.156,0.219-0.375,0.406-0.562,0.625\r\n\t\tc0.188,0.094,0.375-0.156,0.5-0.281c0.297,0.125,0.422,0.094,0.844,0.312C212.703,215.625,212.672,215.812,213.016,215.906z\r\n\t\t M204.078,207.094c0.297-0.5,0.375-0.062,0.406,0.25C204.359,207.281,204.203,207.188,204.078,207.094z M205.922,209.344\r\n\t\tc-0.125,0.281-0.688,0.438-0.953,0.5C204.641,208.5,205.75,209.25,205.922,209.344z M205.297,205.969\r\n\t\tc-0.344-0.156-0.562-0.156-0.578-0.625c0.516,0.344,0.516,0,0.984,0.312C205.562,205.75,205.422,205.875,205.297,205.969z\r\n\t\t M206.703,209.469c0.109-0.125,0.203-0.281,0.312-0.406C207.141,209.188,207.047,209.781,206.703,209.469z M206.516,207.188\r\n\t\tc0.125,0.031,0.25,0.062,0.391,0.062C206.641,207.594,206.641,207.281,206.516,207.188z M211.016,197.18\r\n\t\tc0.156-0.141,0.453-0.047,0.656,0.078C211.172,197.617,211.281,197.273,211.016,197.18z M215.312,195.508\r\n\t\tc-0.297,0.375-0.047,0.5-1.219-0.266c-0.625,0.672-0.453,0.547-1.594,0.047c0.578,1,0.844,1.781-0.516,1.594\r\n\t\tc0.031-0.125,0.062-0.234,0.094-0.344c-0.375,0.188-0.906,0.406-1.234,0.125c0.516-0.641,0.578-0.578,0.141-0.875\r\n\t\tc0.094-0.312-0.031-0.375,0.219-0.641c-0.141-0.109-0.297,0.484-0.688,0.391c-0.328-0.062-0.375-0.219-0.812-0.469\r\n\t\tc0.062-0.219,0.188-0.312,0.391-0.312c-0.172-0.094-0.422-0.188-0.609-0.266c-0.156,0.188-0.031,0.297-0.125,0.484\r\n\t\tc-0.312-0.141-0.375-0.078-0.594,0.188c-0.281-0.156-0.188-1.562-0.656-0.906c0.031-0.188,0-0.344,0.031-0.562\r\n\t\tc-0.656,0.172-0.625,0.219-0.781-0.406c-0.172,0.219-0.141,0.281-0.375,0.125c0.219-0.266,0.188-0.469,0.344-0.75\r\n\t\tc0.312,0.219,0.656-0.219,0.906,0.094c0.188-0.281,0.5,0.156,0.688,0.344c0.344-0.375,0.125-0.891,0.422-1.125\r\n\t\tc1.016,0.828,0.859,1.438,1.453,2.281c0.328-0.375,0.344-0.125,0.75-0.422c-0.141-0.141-0.344-0.141-0.531-0.203\r\n\t\tc0.094-0.062,0.125-0.172,0.125-0.312c-0.094,0.078-0.188,0.125-0.281,0.188c0-0.344,0.344-0.5,0.062-0.75\r\n\t\tc0.281-0.172,0.438-0.156,0.656-0.469c-0.094-0.109-1.547-0.094-1.938-0.5c0.359-0.484,0.406-0.375,0.797-0.781\r\n\t\tc0.359,0.328,0.516,0.156,0.766,0.391c0.094-0.047,0.125-0.094,0.125-0.141c0.469,0.25,1.156,0.906,1.625,1.422\r\n\t\tc0.078-0.078,0.156-0.172,0.219-0.25c-0.312-0.266-0.609-0.719-0.953-0.891c-0.172,0.094,0.812-0.219,0.766-0.219\r\n\t\tc-0.219-0.172-0.188,0.125-0.375,0.094c0.078-0.344,0.078-0.664,0.188-1.039c-0.5,0.539-0.078,0.695-0.719,0.852\r\n\t\tc-0.438,0.312-0.688-0.547-1-0.141c0-0.109,0-0.234,0.031-0.359c-0.203,0.203-1.172,0.469-0.5-0.211\r\n\t\tc-0.625,0.523-1.219,0.109-1.844,0.617c-0.062-0.25-0.156-0.414-0.156-0.742c-0.375,0.461-0.469,0.273-0.984-0.156\r\n\t\tc0.375-0.422,0.828-1.641,1.672-0.906c0.344-0.391-0.844-0.664-1.125-0.898c0.062-0.086,0.094-0.195,0.141-0.305\r\n\t\tc0.266,0.234,0.438,0.578,0.672,0.32c-0.547-0.484-0.531-0.656-0.516-1.211c0.109,0.141,0.375-0.398,0.422-0.492\r\n\t\tc0.156,0.469,0.25,0.633,0.656,0.93c0-0.344-0.766-1.102-0.594-1.281c0.312,0.211,1.188,0.156,1.562-0.195\r\n\t\tc-0.281-0.141-0.359-0.469-0.422-0.555c-0.172,0.164-0.234,0.109-0.438,0.062c0.047-0.102,0.141-0.414,0.203-0.648\r\n\t\tc0.797,0.867,1.062,0.562,0.328-0.359c0.016,0,0.453-0.023,0.453-0.023c-0.109,0.109,1.156,1.438,0.812,2.164\r\n\t\tc-0.281,0.586-0.344,2.117,1.141,1.594c-0.391,0.219,0.141,0.305,0.203,0.375c-0.094,0.289-0.219,0.562-0.594,1.133\r\n\t\tc0.281-0.344,0.688-0.188,1.016-0.648c0.328,0.352,0.953,0.523,1.375,0.812c0.078,0.117-0.078,0.578,0.109,0.688\r\n\t\tc-0.5,0.688,0.062,1.656,0.531,1.188c-0.812-0.562-0.703-1.617,0.375-1.062c0.438,0.188,1.75,1.125,2.094,0.797\r\n\t\tc-0.391-0.188-0.688-0.453-0.875-0.609c0.5,0.406,0.984,0.109,1.531,0.5c-0.125-0.156-0.281-0.344-0.438-0.5\r\n\t\tc0.234-0.25,0.375,0.062,0.656,0.062c-1.312-0.977-2.594-0.906-4-1.852c0.094-0.055,0.188-0.117,0.281-0.188\r\n\t\tc-0.234-0.148-0.531,0.047-0.812,0.219c-0.188,0.148-0.438-0.375-0.688-0.523c0.125-0.117,0.25-0.203,0.375-0.297\r\n\t\tc-0.438-0.477-1.438-0.781-2.047-1.375c0.297,0.008,0.766,0.109,0.922-0.109c-0.156-0.148-0.469-0.125-0.766-0.195\r\n\t\tc0.047-0.109,0.094-0.211,0.141-0.32c0.25,0.32,0.906,0.211,1.281,0.422c-0.344-0.375-0.734-0.539-1.141-0.719\r\n\t\tc0.203,0.039,0.391,0.039,0.594,0.102c-1.312-0.938,1.984,0.125,1.531,0.562c0.109,0.109,0.484,0.75,0.547,1.031\r\n\t\tc0.125-0.164,0.094-0.219,0.188-0.477c0.109,0.016,0.219,0.031,0.344,0.062c-0.094,0.133-0.156,0.273-0.219,0.414\r\n\t\tc0.625-0.633,0.5-0.688-0.469-1.148c0.109-0.18,0.219-0.352,0.328-0.531c0.203,0.344,0.422,0.328,0.641,0.695\r\n\t\tc0.125-0.188,0.203-0.414,0.281-0.609c0.125,0.086,0.797,1.086,0.719,1.133c0.297,0.32-0.266,1.469,0.406,0.68\r\n\t\tc-0.031,0.25-0.062,0.469-0.078,0.711c0.297-0.359,0.422-0.766,0.578-1.133c0.25,0.18,0.812,1.289,0.594,1.562\r\n\t\tc0.125,0.188,0.094-0.125,0.266,0.008c-0.266-0.57-0.391-0.586,0.078-0.883c0.031,0.016,0.125,0.828,0.625,0.047\r\n\t\tc0.391,0.375,0.969,0.742,0.609,1.555c0.266-0.477,0.266-0.477,0.094-1.086c0.984,0.188,2.016,0.523,2.016,1.539\r\n\t\tc0.938-1.25,2.812,0.719,3.547,1.172c-0.766,0.438-1.203,0.109-1.953,0.25c1.281,0.422,1.969-0.062,2.875,0.5\r\n\t\tc0.656,0.312,0.5,1.297,1.281,1.875c-0.422,0.75-2.594,0.266-2.906-0.125c-0.141,0.094-0.141,0.156,0,0.188\r\n\t\tc-0.234-0.047-1-0.156-1.062-0.078c0.484,0.234,1.094,0.375,1.625,0.422c-0.438,0.469-1.688-0.031-1.781,0.188\r\n\t\tc-0.469-0.234-2.188,0.031-2.375-0.156c0.125-0.172-0.062-0.219,0.172-0.438c-0.422,0.375-0.453,0.281-1.125,0.406\r\n\t\tc0.172-0.297-0.234-0.344-0.359-0.438c-0.094,0.141,0.094,0.438,0.156,0.484c-0.375-0.141-0.672-0.078-1.031-0.266\r\n\t\tc-0.188,0.516-0.094,0.266-0.656,0.312c0.219-0.5-0.344-0.375-0.562-0.375c-0.062-0.188-0.125-0.344-0.188-0.516\r\n\t\tc-0.109,0.203-0.156,0.297-0.344,0.125c0.031-0.156,0.062-0.328,0.094-0.484c-0.188,0.125-0.234,0.078-0.156-0.109\r\n\t\tc-0.078,0.078-0.141,0.156-0.219,0.234c-0.094-0.125-0.188-0.25-0.281-0.375c-0.094,0.062-0.188,0.125-0.281,0.188\r\n\t\tc0.938,0.938,1.594,0.891,0.969,1.781c-0.188-0.391-0.516-0.578-0.062-0.969c-0.125,0.031-0.25,0.078-0.375,0.125\r\n\t\tc0.141-0.188-0.375-0.656-0.531-0.75c0.406,0.812,0.156,0.391-0.047,0.75c-0.016,0.047-0.719-0.891-0.891-0.984\r\n\t\tc-0.156,0.266,0.188,0.375,0.375,0.609c-0.406,0.094-0.422-0.031-0.703,0.312c0.047,0.031,0.922,0.125,0.953,0.062\r\n\t\tc0.375,0.281,0.531,0.594,1,0.859c-0.406,0.484-0.375,0.516-0.938,0.109c-0.219,0.188-0.016,0.375-0.125,0.531\r\n\t\tC215.703,195.789,215.5,195.633,215.312,195.508z M207.531,191.602c0.359-0.156,0.438-0.297,0.234-0.422\r\n\t\tc0.203-0.109,0.438-0.172,0.625-0.359C208.5,191.445,208.109,191.898,207.531,191.602z M216.594,197.883\r\n\t\tc-0.172-0.125-0.344,0.203-0.266-0.188C216.672,197.477,216.422,197.758,216.594,197.883z M218.281,229.719\r\n\t\tc0.109-0.156,0.219-0.281,0.016-0.344c-0.156,0.375-0.203,0.281-0.531,0.094c0.094-0.094,0.203-0.156,0.312-0.219\r\n\t\tc-0.156-0.094-0.281-0.156-0.406-0.219c0.375-0.281,0.141-0.062,0.078-0.156c0.141-0.188,0.297-0.312,0.438-0.5\r\n\t\tc-0.547-0.219-1.094,0.469-1.672,0.219c0.156-0.281,0.094,0.094,0.297-0.188c-0.531-0.312-0.266-1.281-0.328-1.469\r\n\t\tc0.094-0.219,0.25-0.188,0.469-0.312c-0.094-0.094-0.219-0.094-0.344,0.031c0.141-0.125,0.125-0.188-0.047-0.219\r\n\t\tc0.125-0.125,0.266-0.25,0.375-0.375c-0.453-0.188-0.484-0.062-0.828,0.125c1.016-1.812,0.312-0.344-0.031-0.562\r\n\t\tc0.188-0.406,0.062-0.312,0.406-0.719c-0.344-0.156-0.266-0.094-0.516,0.094c0.016-0.469,0.109-0.125,0.234-0.406\r\n\t\tc-0.406-0.219-0.062-0.219,0.125-0.531c-0.438-0.188-0.219-0.375-0.281-0.844c0.156,0.062,0.312,0.156,0.438,0.219\r\n\t\tc0.125-0.125,0.062-0.219-0.156-0.281c0.203-0.062,0.656-0.344,0.688-0.375c0.375-0.094-0.281,1.188,0.375-0.156\r\n\t\tc-0.281-0.156-0.719-0.031-1.125,0.125c0.094-0.125,0.609-0.844,0.125-1c0.094-0.219,0.328-0.094,0.391-0.188\r\n\t\tc-0.062-0.156-0.141-0.312-0.203-0.469c0.25,0.094,0.594,0.031,0.719-0.156c-0.219-0.125-0.391-0.188-0.5,0.094\r\n\t\tc-0.156-0.25-0.125-0.219-0.469-0.25c0.266-0.625,0.156-0.062,0.469-0.312c-0.406-0.219-0.25-0.25-0.438-0.594\r\n\t\tc0.141,0,0.281,0.031,0.438,0.031c-0.188-0.094,0.438-0.531,0.516-0.625c-0.406-0.219,0.016-0.562-0.203-0.688\r\n\t\tc0.469-0.062,0.656-0.281,1.188-0.25c-0.484-0.25-0.641,0.031-0.969-0.156c0.359-0.5,0.969-0.438,1.344,0\r\n\t\tc-0.109-0.25-0.312-0.438-0.219-0.688c0.406,0.219,0.625,0.562,1.188,0.844c0.031-0.156,0.094-0.344,0.125-0.5\r\n\t\tc-0.438,0.031-1.656-0.156-1.25-0.656c0.5,0.219,0.641,0.188,1.094,0.281c0.781,0.219,0.25-1.125,1-0.844\r\n\t\tc-0.172,0.156-0.219,0.344-0.156,0.531c0.344-0.312,0.406-0.531,0.594-0.812c-0.141-0.094-0.234-0.031-0.406-0.031\r\n\t\tc0.359-0.562,0.422-0.562,0.844-1c-0.75-0.469-0.969-1.344-1.547-1.594c-0.625,1.062,1.031,1.375-0.422,2\r\n\t\tc-0.625,0.25-1.125-0.062-1.312-0.781c0.344,0.438,0.562,0.469,0.688,0.031c-0.406-0.188,0.062,0.062-0.75-0.406\r\n\t\tc0.312-0.469,0.703-0.969,1.375-1.094c-0.125,0.219,0.031,0.219,0.25,0.344c0.062-0.094,0.156-0.156,0.25-0.219\r\n\t\tc-0.906-0.594-0.125-1.438,0.906-0.156c0.344,0.406,0.281,1,0.797,1.25c0.25-0.25-0.297-0.281-0.094-0.594\r\n\t\tc0.203,0.094,0.266,0.188,0.438,0.031c-0.516-0.281-0.297-0.531,0.156-0.281c0.141-0.281-0.688-0.688,0.25-0.219\r\n\t\tc-0.234-0.219-0.266-0.5-0.578-0.688c0.219-0.312,0.469,0.188,0.672-0.188c-0.297-0.031-0.562-0.156-0.859-0.25\r\n\t\tc0.078-0.031,0.156-0.062,0.203-0.094c-0.141-0.094-0.578-0.469-0.516-0.625l-0.453-0.438c-0.422,0.781-1.562,0.062-0.562-0.5\r\n\t\tc-0.234-0.031-0.266-0.125-0.141-0.25c0.219,0.156,0.531-0.281,0.688-0.375c-0.219-0.062-0.281-0.125-0.125-0.281\r\n\t\tc1.312,0.719,0.781-1.531,1.234-2.406c-0.172-0.062-0.359-0.094-0.531-0.125c0.109-0.094,0.703-0.406,0.953-0.531\r\n\t\tc-0.594-0.812-0.75-5-2.484-4.25c0.109-0.188,0.188-0.375,0.266-0.562c-0.5,0.062-0.906-0.062-1.188-0.344\r\n\t\tc-0.125,0.219-0.281,0.156-0.469,0.281c0.25-0.75-0.031-0.938-0.688-0.656c-0.016-0.188,0.078-0.469-0.125-0.625\r\n\t\tc-0.125,0.219-0.469,0.5-0.625,0.719c-0.719-0.406-1.141-1.312-0.438-1.586c-0.344-0.328-0.406-1.234-0.375-1.219\r\n\t\tc0.156-0.016,0.297-0.047,0.469-0.062c-0.219,0.469,2.391,0.594,2.719,1.523c0.125-0.18,0.312-0.273,0.453-0.43\r\n\t\tc-0.469-0.344-1-0.625-1.547-0.812c0.062-0.156,0.125-0.281,0.188-0.438c-0.625-0.312-0.812,0.422-1.344-0.281\r\n\t\tc0.156-0.188,0.062-0.547-0.078-0.656c0.516-0.984-0.078-1.031,1.25-0.875c1.047,0.609,2.578,0.438,2.859,1.438\r\n\t\tc0.312-0.406,1.688-0.812,2.188-1.281c-0.859-0.406-1.125-0.5-1.812-0.906c0.359-0.875,1.391-0.828,2-0.469\r\n\t\tc0.094,0.062,0.719,0.031,0.766-0.094c0.312,0.25,0.516,0.188,1.062,0.469c0.109,0.031-0.234,0.469,0,0.562\r\n\t\tc0.156-0.312,0.703-1.375,1.406-1.016c-0.078,0.141-0.328,0.953-0.078,1.047c0.031-0.375,0.219-0.562,0.281-0.938\r\n\t\tc0.156,0.125,1.188,0.297,1.234,0.188c0.359,0.25,0.812,0.719,1.156,0.844c0.391-0.531,0.234-0.016,0.375,0.219\r\n\t\tc0.797-0.922,0.828,0.391,0.156,1.344c0.016,0,0.891-0.281,0.953-0.375c0.25,0.438,0.688,0.797,0.938,1.406\r\n\t\tc0.297-0.359,0.312-1.062,0.812-0.797c-0.016-0.516,0.016-0.453,0.422-1.016c1.172,0.922,0.078,2.5,1.016,3.367\r\n\t\tc0.625-0.375,0.984,0,1.125,0.562c0.375-0.562-1.094-2.133-0.562-3.086c0.672,0.312,1.234,0.281,1.25,1.172\r\n\t\tc0.094-0.297,0.172-0.406,0.203-0.766c0.859,0.344,0.641-0.219,1.016-0.719c0.406,0.719,0.312,0.156,1.188,0.609\r\n\t\tc0.266,0.203-0.281,0.891,0.484,0.922c0.156-0.281-0.109-0.031-0.031-0.375c0.453,0.219-0.141,0.125,0.312,0.344\r\n\t\tc0.484-0.25-0.359-0.688,0.75-0.156c-0.297-1,0.594,0.156,1.016-0.547c0.094,0.156,0.219,0.328,0.312,0.5\r\n\t\tc0.281-0.547,4.984,2.477,5.891,2.883c-0.219,0.5-0.859,0.125-1.047,0.531c0.344,0.156,1.25-0.219,1.5,0.062\r\n\t\tc0.578,0.688-0.469,0.75-0.656,1c0.234-0.062,1.047-0.062,1.094-0.031c-0.188,0.375,1.219,0.75,1.391,1.594\r\n\t\tc-1.484,0.562-2.672-0.594-4.219-1.156c-1.891-0.594-2.297-0.781-4.047-0.625c0.562,0.375,1,0.125,1.594,0.125\r\n\t\tc0.984,0.031,1.938,0.656,2.953,1.062c-0.141,0.156-0.281,0.312-0.422,0.5c1.375,0.625,1.469-0.062,2.781,0.5\r\n\t\tc-0.25,0.469-1.75,1.062-1.562,0.688c-0.234,0.094-0.422,0.156-0.625,0.25c0.125,0.031,0.188,0.125,0.219,0.281\r\n\t\tc-0.031,0.094,2.375-0.156,2.75-0.219c-0.125,0.188-0.016,0.281-0.094,0.469c0.156,0.094,0.281,0.094,0.656,0.281\r\n\t\tc0.469-0.969,3.969,0.656,3.859,1.344c-0.641,0.062-1.203,0.281-1.734,0.25c-0.844-0.031-1.641-0.594-2.672-0.469\r\n\t\tc0.891,0.375,1.234,0.5,1.922,0.75c-0.781,1.5-1.953-0.25-2.719-0.125c-0.031,0.094-0.047,0.188-0.219,0.094\r\n\t\tc0-0.031,0.031-0.031,0.031-0.062c-0.125,0.062-0.234,0.25-0.312,0.469c0.531-0.25,1.203-0.125,1.766,0.406\r\n\t\tc-0.266,0.656-1.234,0.719-1.766,0.438c-0.25,0.438,0.344,0.188-0.422,0.719c0.359,0.031-0.812,0.844-1.047,1.094\r\n\t\tc-0.109-0.344-0.625-0.938-0.938-0.25c0.438,0.344,0.844,0.375,1.219,1.031c-0.25-0.062-0.344-0.219-0.641-0.281\r\n\t\tc-0.781,1.25,1.297,0.25,0.5,2.094c-0.5-0.219-1-0.594-1.516-0.938c-0.047,0.219-0.094,0.844-0.641,0.562\r\n\t\tc-0.203,0.344-0.047,0.344,0.141,0.562c0.062-0.156,0.219-0.25,0.406-0.312c0.125,0.406,0.031,0.438-0.031,0.656\r\n\t\tc0.531,0.188-0.094,1.031-0.234,1.438c-0.422-0.156-0.641-0.625-1.125-0.812c-0.047,0.094,0.328,0.688,0.422,0.875\r\n\t\tc-0.25-0.125-0.312,0.188-0.562,0.281c0.172,0.031,0.281-0.031,0.422,0c0,0-0.172,0.562-0.203,0.438\r\n\t\tc2.062,0.781-0.094,0.781-0.719-0.5c-0.312,0.219-0.906,1.219-0.438,1.406c0.594-0.5,0.344-0.25,0.875,0\r\n\t\tc-0.281,0.656-0.875,0.156-1.031,0.625c-0.281-0.156-1.906-0.469-1.328-1.281c-0.422-0.188-1.172,0.5-1.625,0.375\r\n\t\tc0.234,0.156,0.391,0.344,0.641,0.438c-0.016-0.125-0.062-0.25-0.094-0.406c0.562,0.281,1.312-0.062,1.188,0.844\r\n\t\tc0.766,0.312,0.266,0.5,0.203,0.469c0.172,0.125,0.328,0.25,0.516,0.375c-0.234,0.062-0.234,0.219-0.203,0.438\r\n\t\tc-0.281-0.062-0.422-0.281-0.625-0.438c-0.156,0.281,0.312,0.531,0.484,0.75c-0.109,0.062-0.219,0.125-0.344,0.188\r\n\t\tc0.125,0.344,0.312,0.125,0.156,0.562c-1.312-0.438-0.438-2.094-1.125-2.188c0.031-0.188-0.047-0.312-0.219-0.469\r\n\t\tc-0.156,0.375-0.625,11.094-1,11.234c-0.031-0.547-0.312,10.078,0,10.078c-0.141,0-0.281,0-0.406,0\r\n\t\tc0.125,0,0.125-10.047,0.125-10.047c0.438,0.25,2.094-5.297,0.562-4.859c0.562,0.328,1.203-1.188,1.5-1.062\r\n\t\tc-0.094,0.125-0.203-1.125-0.312-0.984c0.188,0.094,0.188-0.766,0.25-0.922c0.5,0.219-0.25,1.438-0.312,1.625\r\n\t\tc-0.391-0.188-1.625-0.969-1.234-1.906c0.016,0-0.422-1.219-0.547-1.406c-0.516-0.219-0.938-0.891-1.453-1.188\r\n\t\tc-0.594,1.109,1.734,0.906,1.359,1.969c-0.625-0.266-1-0.156-1.688-0.734c-0.109,0.281-0.594,0.266-0.812,0.484\r\n\t\tc0.125,0.031,0.156,0.125,0.156,0.25c0.406-0.688,1.312-0.156,2.062,0.219c-0.266,0.656-0.219,0.438-0.781,0.156\r\n\t\tc-0.031,0.031-0.375,0.5-0.406,0.562c0.656,0.438,0.938,0.062,1.469,0.25c0.562,0.312,0.562,0.594,1.469,1\r\n\t\tc-0.203,0.344-0.688,0.344-0.922,0.625c-0.062-0.062-0.109-0.156-0.172-0.219c-0.125,0.344-0.234,0.156-0.375,0.531\r\n\t\tc-0.531-0.625-1.75-0.125-2.344-0.312c-0.281,0.594-1.375,0.281-1.844,0.438c0.094-0.219-1.312-0.688-1.5-0.312\r\n\t\tc-0.094-0.062-0.891-0.125-0.688-0.344c-0.531-0.125-0.312-0.812-0.469-0.906c-0.656,1.344-0.219,0.969-1.312,1.781\r\n\t\tc-0.719,0.531-2.062,0.062-2.469,1.094c-0.344-0.188-0.281-0.688-1.062,0.031c0.469-1-1.156-0.656-1.672-1.188\r\n\t\tc-0.344,0.625-0.188,0.5-0.797,0.344c0.156,1.125-0.281,1.219-0.906,0.969c-0.125,0.219,0.172,0.375,0.344,0.531\r\n\t\tc-0.156,0.312-0.391,0.375-0.594,0.812c-0.125-0.125-0.25-0.25-0.406-0.406c-0.031,0.281-0.031,0.469-0.031,0.719\r\n\t\tc-0.25-0.062-0.344-0.031-0.562-0.094c-0.094,0.062-0.203,0.125-0.281,0.219c0.406,0.188-0.906,1.344-1.094,1.25\r\n\t\tc-0.094,0.25-0.531,1.188-1.062,0.938c-0.062,0.25,0,0.781,0.094,1.125c-0.375-0.125-0.281,0.031-0.656,0.031\r\n\t\tc0-0.5-0.328-0.344,0-0.906c-0.125,0.125-0.25,0.25-0.344,0.375c-0.219-0.062-0.109-0.406-0.031-0.562\r\n\t\tc-0.125,0.062-0.25,0.125-0.375,0.156C218.812,229.75,218.328,229.844,218.281,229.719z M247.688,243.125\r\n\t\tc0.078-0.188,0.328-0.594,0.5-0.531c-0.141,0.406-0.219,0.469-0.422,0.719C248.078,242.5,247.828,243.219,247.688,243.125z\r\n\t\t M245.703,255.344c-0.375,1.25-2.531-0.938-2.875,0.062c-0.312-0.562-0.812-0.594-1.406-0.156c0.25-0.719-1.062-0.281-1.422,0\r\n\t\tc0.125-0.219-0.016-0.312-0.359-0.312c0.219-0.406,1.469-0.406,1.688-1.281c0.234,0.094,0.688,0.312,0.656,0.406\r\n\t\tc1.312,0.531,0.625-0.812,0.438-0.188c-0.469-0.219-0.406-0.188-1.062-0.375c0.125-0.062,0.188-0.156,0.281-0.219\r\n\t\tc-0.406-0.188-0.344,0.031-0.656,0.094c0.219-0.875,0.969-0.562,1.25-1.469c-0.188,0-0.391,0-0.594-0.031\r\n\t\tc0.656-0.438,0.406-0.375,0.562-0.812c-0.031-0.031,0.953,0.156,0.562,0.344c0.516,0.156,0.812-0.438,1.031-0.344\r\n\t\tc0.062-0.188,0.062-0.25,0.219-0.562c-0.719-0.25-0.625-0.375-0.203-0.781c-0.422-0.156-0.844-0.625-1.078-0.062\r\n\t\tc-0.562-0.656,0.266-1.25,0.547-1.906c-0.391-0.094-0.578,0.188-0.797,0.062c0.203-0.562,0.062-0.125-0.281-0.25\r\n\t\tc0.125-0.094,0.234-0.188,0.312-0.25c0.031,0,0.109,0.188,0.203,0.25c0.234-0.344,0-0.188,0.484-0.5\r\n\t\tc-0.531-0.312,0.094-1.562,0.25-2c0.469,0.156,0.891-0.406,1.094-1c0.375,0.156-0.172,0.312,0.156,0.438\r\n\t\tc0.25-0.5,0.125,0,0.594-0.312c-0.031,0.125,0.422,0.062,0.219,0.75c-0.125,0.312-0.953,0.281-1.156,0.969\r\n\t\tc0.656-0.094,1.312,0,1.719,0.438c-0.312,0.844-1.484,0.969-1.094,1.875c-0.25-0.062-0.469,0-0.562,0.156\r\n\t\tc0.594,0.156,1.719,3.219,1.531,3.812c-0.125-0.219-0.094-0.312-0.297-0.438c-0.141,0.438,0.391,0.844,0.141,1.406\r\n\t\tC248.297,254.031,244.141,254.844,245.703,255.344z M237.203,251.969c0.094-0.281,0.156-0.562,0.281-0.781\r\n\t\tc0.125,0.094,0.219,0.188,0.344,0.312c0.203-0.469,0.938-0.844,1.156-1.469c-0.188-0.094-0.625-0.062-1-0.219\r\n\t\tc0.125-0.281,0.703-0.562,0.969-0.5c-0.156-0.375-0.203-0.281-0.062-0.719c0.25,0.125,0.531,0.219,0.781,0.438\r\n\t\tc0.156-0.5,0.25-0.25,0.656-0.438c-0.781-0.312,0.75-1.031,0.562-0.312c0.156-0.031,0.172-0.125,0.25-0.25\r\n\t\tc-0.062,0.375,0.219,0.188-0.094,0.656c1-0.406,0.969,0.594,0.828,1.188c-0.234-0.031-0.516-0.062-0.734-0.094\r\n\t\tc-0.25,0.656-0.688,1.438-0.953,2.25c-0.141-0.062-2.453,0.75-2.078,0.094c-0.25,0.031-0.469,0.062-0.703,0.094\r\n\t\tc0.047-0.156,0.234-0.219,0.391-0.188C237.516,251.906,237.453,251.906,237.203,251.969z M236.609,233.156\r\n\t\tc0.156-0.188-1.344-0.844-1.594-1.188c0.688,0.25,0.312,0,0.906,0.031c-0.031,0-1.188-1.375-1.188-1.375\r\n\t\tc0.391,0.156,1.062,0,1.438,0.094c-0.469-0.281-0.062-0.125-0.234-0.5c0.203,0.062,0.188,0.219,0.312-0.031\r\n\t\tc-0.016-0.062-0.047-0.125-0.078-0.188c-0.422,0.047-0.656-0.062-0.938-0.172c0.25-0.359,0.328-0.297,0.469-0.766\r\n\t\tc0.375,0.219,0.188,0.031,0.484-0.125c0.047,0.594,0.156,0.531,0.297,1c-0.031-0.125-0.062-0.75-0.031-0.906\r\n\t\tc1,0.375,0.5,1.188,0.312,1.75c0.094,0.031,0.156,0.062,0.25,0.094c0.609-1.281,0.125-0.031,0.375-0.188\r\n\t\tc0.781-1.844,0.016-0.344,0.641-0.812c-0.016,0.25-0.109,0.688,0.125,0.781c0.266-0.656,0.406-0.25,0.922-0.5\r\n\t\tc-0.125,0.438-0.031,0.406-0.047,0.875c0.047-0.219,0.078-0.438,0.125-0.688c0.438,0.156,0.891,0.5,1.312,0.531\r\n\t\tc0.641-0.719,0.547,0.469,1.484,0.25c-0.078,0.25-0.719,0.469-0.875,1.062c0.906,0,0.734,0.656,0.531,1.25\r\n\t\tc-0.25-0.094-0.125-0.094-0.328-0.312c-0.266,0.75-1.578,0.469-2.297,0.844c0-0.125,0-0.25,0-0.375\r\n\t\tc-0.125,0.531-0.609-0.062-0.938-0.188c-0.094,0.188-0.281,0.562-0.328,0.75c0-0.125-0.016-0.25-0.016-0.375\r\n\t\tc-0.594,0.25-0.719-0.156-1.344-0.375C236.516,233.375,236.891,233.312,236.609,233.156z M234.797,229.75\r\n\t\tc0.094,0.094,0.156,0.062,0.188-0.094c0.031,0.062,0.078,0.109,0.109,0.156C235,229.766,234.891,229.828,234.797,229.75z\r\n\t\t M236.266,228.812c0.094,0,0.922-0.312,0.641,0.25C236.688,228.969,236.469,228.875,236.266,228.812z M242.578,246.656\r\n\t\tc-0.125,0.344,0.141,0.562-0.406,0.562c-0.031-0.062-0.062-0.125-0.094-0.219C242.578,247.219,241.859,246.406,242.578,246.656z\r\n\t\t M242.688,246.344c0.078-0.219-0.359-1.344,0.25-1.125c-0.078,0.25-0.422,0.375-0.172,0.469\r\n\t\tC242.656,246.062,243.078,245.969,242.688,246.344z M242.453,244.875c0.125-0.312,0.219-0.656,0.312-0.938\r\n\t\tc0.062,0,0.484,0.062,0.797-0.062C243.359,244.438,242.984,244.75,242.453,244.875z M245.406,216.312\r\n\t\tc-0.203,0.406-0.016,0.562,0.344,0.469c-0.203,0.406,0.203-0.125-0.078,0.469C245.016,217.062,244.266,216.531,245.406,216.312z\r\n\t\t M224,214.781c0-0.344,0,0.531,0,0.844C224,215.625,224,214.969,224,214.781z M244.266,217.219\r\n\t\tc-0.156,0.094-0.281,0.188-0.453,0.312c-0.016-0.219-0.031-0.406,0.031-0.656C244.203,217,243.891,217.062,244.266,217.219z\r\n\t\t M242.922,218.031c-0.234-0.125-0.469-0.219-0.75-0.312C242.578,217.031,243.172,217.562,242.922,218.031z M224.188,277.344\r\n\t\tc-0.078,0.312-0.016,0.375-0.375,0.188C223.984,277.25,223.688,277.188,224.188,277.344z M223.578,276.75\r\n\t\tc-0.266,0.125-0.266,0.375-0.594,0.281C223.203,276.406,223.156,276.969,223.578,276.75z M218.703,231.031\r\n\t\tc-0.125,0.188-0.125,0.094-0.312,0C218.609,230.5,218.453,230.875,218.703,231.031z M264.656,334.25\r\n\t\tc-0.109-0.031-0.359-0.344-0.312-0.438c-0.062,0.219-0.391,1.219-0.25,1.25c-0.25,0.219-2.109,2.594-2.203,2.562\r\n\t\tc-0.125,0.812-1.25,1.188-1.438,1.906c-0.266,0.781-1.906,1.25-1.938,1.375c-1.5-0.094-0.969-1.594-1.5-1.719\r\n\t\tc0-0.125,0.078-1.938,0.531-1.812c0.188-0.219,2.531-2.344,1.25-2.344c0.312-2.031,3.25-0.781,3.781-2.062\r\n\t\tc0.031,0.094,0.047,0.188,0.078,0.281c0,0,1.047-0.781,0.594-0.781c0.188,0.031,0.328-0.094,0.797-0.094\r\n\t\tc-0.016-0.344,0.281-0.906,0.781-1.219c0,0.062,0.672,1.625,0.406,1.562c-0.078,0.094-0.156,0.219-0.25,0.344\r\n\t\tC265.438,333.188,265.016,333.875,264.656,334.25z M258.703,324.656c-0.188-0.094-0.125-0.281,0-0.469\r\n\t\tC259.031,324.5,258.703,324.469,258.703,324.656z M296.281,318.406c-2.719,1.781-0.828-3.312-0.234-3.312\r\n\t\tC295.984,316.438,297.188,316.75,296.281,318.406z M322.719,355.406c-0.547,0-1.688,0.875-2.062,1.062\r\n\t\tc0.109-0.125,0.375-1.156,0.438-1.219c0.906-0.844,1.078,0.031,2.25-0.688C323.156,354.875,322.953,355.156,322.719,355.406z\r\n\t\t M323.578,354.25c0.156-0.062,0.203-0.125,0.141-0.25c0.375-0.219,0.25,0.094,0.25,0.094\r\n\t\tC323.859,354.094,323.656,354.25,323.578,354.25z M334.781,339.094c-0.125,0.406,0.047,0.219,0.453,0.125\r\n\t\tc-0.312,0.5,0.141,0.312-0.312,0.906c0.359-0.156,0,0.906-0.141,1.188c0.188-0.281,0.062,0,0.375,0\r\n\t\tc-0.234,0.531-0.094,1.594-0.266,1.781c0.109,0-1.062,1.844-1.062,1.875c-0.391,0.562-0.703,1.094-1.297,1.719\r\n\t\tc-0.312,0.688-1.734,1.25-1.906,1.781c-1.375,0-2.391,2.875-3.438,2.875c-0.594,0.531-0.656,0.844-1.562,1.125\r\n\t\tc0.031-0.031-1.938,1.125-2.188,1.125c0.344-0.344-0.062-0.094-0.156-0.312c0.062-0.031,0.234-0.125,0.281-0.219\r\n\t\tc-0.125,0.062-0.281,0.125-0.406,0.188c0.047-0.156,0.375-0.375,0.469-0.5c-0.75,0-1.266,0.969-2.125,0.969\r\n\t\tc0.062-0.094,0.109-0.156,0.125-0.25c-0.156,0.031-0.156,0.031-0.047-0.094c-0.359,0.062-0.531-0.062-0.828,0\r\n\t\tc-0.031-0.188,0.156-0.469-0.078-0.375c0.312-0.469,0.594-1.094,0.828-1.312c-0.219,0.062-0.438,0.125-0.656,0.156\r\n\t\tc0.281-0.375,0.453-0.688,0.688-1.031c-0.203,0.188-0.656,0.375-1.016,0.594c0.109-0.094,0.234-0.188,0.359-0.25\r\n\t\tc-0.094,0,0.812-0.875,1.031-1.062c-0.641,0.188-1.766,0.781-2.234,1.219c0.047-0.094,0.016-0.188-0.094-0.188\r\n\t\tc0.094-0.469,0.391-0.344,0.016-0.844c0.156-0.125,0.281-0.094,0.406-0.219c-0.109,0.031-0.25,0.031-0.391,0.031\r\n\t\tc0.359-0.5-1.797-0.656-1.875-0.344c-0.547,0-3.344,0.5-3.453,0.875c-0.5,0-1.688,0.656-2.156,0.906\r\n\t\tc-0.859,0.5-2.172-0.344-3,0.719c-0.219-0.281,0-0.062-0.156-0.312c-0.719,0.688-1.094,0.594-2.031,0.594\r\n\t\tc0.234-0.281-0.25-0.281-0.406-0.469c1.484-1.188,1.469-2.375,2.5-4c-0.25,0-0.156-0.188-0.375-0.188\r\n\t\tc0.078-0.219,0.141-1.719,0.344-1.719c0.031,0.469,0.031,0.312,0.125,0.625c0.062-0.031,0-0.344,0-0.625\r\n\t\tc-0.031,0,0.156,0.188,0.312,0.312c0.609-0.672,0.703-2.562,1.625-2.859c1.297-0.078,3.219-1.578,4.453-1.984\r\n\t\tc1.109,0,2.703-1.469,2.969-1.469c0.203-0.406,0.797-1.25,1.344-1.25c-0.141,0.469,0,0.375-0.141,0.719\r\n\t\tc0.344,0,0.625-0.656,0.906-1.031c0,0.031,0.125,0,0.188,0.125c0.281-0.562,0.766-0.719,1-0.719\r\n\t\tc0.406-0.781,0.719-0.531,1.312-1.281c0.062-0.219,1.125-0.125,0.531,1.094c1.125,0,2.359-1.438,2.906-2.562\r\n\t\tc0.078,0,0.797-0.188,0.625,0.062c0.734-0.062,1.5-0.062,0.656-0.906c0.125-0.062,0.219-0.094,0.344-0.156\r\n\t\tc0.094,0.094,0.109,0.156,0.016,0.25c0.062-0.062,0.141-0.094,0.203-0.156c-0.188,0.438,0.172-0.219-0.062,0.375\r\n\t\tc0.156-0.062,0.5-0.312,0.625-0.312c-0.281,0.406,1.578,0.312,2.062-0.031c-0.188,0.438-1.188,1.125-1.312,1.438\r\n\t\tc0.125,0-0.719,1.094-0.828,1.344c0.781,0,1.453,0.844,1.672,1.625c2.453-0.156,2.875-4.531,4.531-5.656\r\n\t\tc0.219,1-0.031,1.438-0.625,2.688c0.203-0.062,0.516-0.031,0.656-0.312c0.219,0.344,0.281,0.406,0.219,0.562\r\n\t\tc-0.469,0.656-0.312,1-0.469,1.531C334.781,337.656,333.656,339.531,334.781,339.094z M307.641,319.75\r\n\t\tc-0.031-0.031,1.734,1.062,1.578,1.062c0.781,0.875,0.531,1.562,1.188,2.562c0-0.219,0.094-0.312,0.266-0.25\r\n\t\tc0.141,0.719,0.203,1.781,0.938,0.938c-0.141,0.281,0.172,0.062-0.141,0.406c0.891,0,0.031,1.25-0.172,1.656\r\n\t\tc0.141-0.062,0.219,0,0.25,0.125c0.078-0.219,0.25,0,0.594,0c-0.422,0.531-0.484,1.156,0.359,1.156\r\n\t\tc-0.359,0.625,0.094,0.25,0.094,0.75c0,0.125-0.906,1.594-0.969,1.75c-0.406-0.156-0.5,0.062-0.922-0.188\r\n\t\tc-0.047,0.25,0.062,0.219,0.141,0.406c-0.703-0.25-1.625-2-1.562-2c-0.031-0.312-0.469-2.812-0.422-2.844\r\n\t\tc-0.422,0-0.391-1.156-0.484-1.156c0.203-0.531-0.281-1.656-0.594-2.125C307.641,321.781,305.812,319,307.641,319.75z\r\n\t\t M313.719,330.656c0.953,0,2.75-0.312,2.516,0.312c0.484,0,0.453-0.125,1.078-0.125c-0.531,0.469-1.016-0.188-1.156,0.625\r\n\t\tc1.156,0,1.203,0.344,0.75,1.156c-0.594,0-1.672-0.562-2.656-0.562c0,0-2.875-0.781-3.031-0.781\r\n\t\tc0.062-0.219,0.141-0.031,0.219-0.25c-0.281,0-0.531,0-0.812,0C311,329.5,313.094,330.062,313.719,330.656z M315.625,325.062\r\n\t\tc0.188-0.562,1.625-1.812,1.438-1.406c0.469-0.188,0.469,0.094,0.719,0c0.594,0,0.453-0.844,0.703-0.844\r\n\t\tc0.641-0.438,1.859-0.281,2.109-1.188c0.078-0.062,1.969-1.406,1.766-1.406c0.641-0.5,1.047-0.938,1.422-1.625\r\n\t\tc0,0.531,0.297,0.125,0.516,0.125c-0.203,0.625,0.141-0.188-0.109,0.875c0.344,0,0.219-0.156,0.172,0.312\r\n\t\tc0.562-0.031,0.25,0.219,0.641,0.219c-0.172,0.5-0.672,0.5-0.906,0.469c0,0.719-1.062,0.688-0.75,1.125\r\n\t\tc-0.609,0.5-0.75,1.938-0.047,2.469c-1.391,0.219-1.141,1.531-1.891,2.094c-0.391,0.281-1.734,1.562-2,1.906\r\n\t\tc-0.609,0-1.125-0.062-1.844-0.062c-0.094,0.156-1.125-0.125-1.094-0.125c-0.766-0.562-0.453-0.531-0.469-1.75\r\n\t\tc-0.156,0.062-0.312,0.125-0.469,0.156c0.094-0.094,0.172-0.188,0.25-0.281C315.453,326.188,315.656,325.281,315.625,325.062z\r\n\t\t M323.094,306.25c0.203,0.531-1.281,1.938-1.781,1.938c0.156-0.312,0.094-0.406-0.219-0.312\r\n\t\tC320.219,306.531,322.906,305.812,323.094,306.25z M328.625,311.719c-0.391,0,0.141-0.156-0.25-0.156\r\n\t\tc0.25-0.25,0.406-0.406,0.469-0.75c-0.188-0.062-0.297-0.031-0.281,0.156c-0.297-0.438-0.281-0.875-0.156-1.531\r\n\t\tc0.109,0.062,0.219,0.125,0.344,0.188c0.625-1.625,0.438-2.719,2.094-2.719c-0.062,0.156-0.078,0.438-0.312,0.656\r\n\t\tc0.469,0-0.156,2-0.906,2c-0.484,1.781-0.688,1.594,0.656,1.594c-0.047,0.094-0.062,0.188-0.078,0.312\r\n\t\tc0.047,0,0.328-0.188,0.328-0.188c0.266,0.625,0.125,1.062-0.031,1.5c-0.125-0.188-0.438-1-0.641-1\r\n\t\tc-0.047,0.125-0.047,0.188-0.172,0.469c-1.062-1.406-0.938,1.094-1.25,1.094c0-0.188,0.078-0.219,0.125-0.438\r\n\t\tc-0.438,0-0.375-0.5-0.469-0.719C329.562,312.188,328.203,312,328.625,311.719z M330.938,324.969\r\n\t\tc0.016-0.125,0.031-0.219-0.156-0.281c0.375,0,0.484-0.062,0.906-0.062C331.562,324.906,331.188,324.906,330.938,324.969z\r\n\t\t M330.469,322.75c0.188-0.219,0.188-0.281-0.016-0.25c0.047-0.125,0.078-0.281,0.141-0.438\r\n\t\tC330.734,322.406,331.156,322.656,330.469,322.75z M331.641,302.188c-0.172,0.344-0.453,0.656-0.734,0.969\r\n\t\tc-0.734-0.562,0.594-3.125,1.531-3.312C332.469,300.656,331.812,301.312,331.641,302.188z M331.438,312.719\r\n\t\tc-0.156,0.469-0.312,1.031-0.078,1.562c-0.234,0-0.078-0.062-0.172-0.25C331.266,313.844,330.031,313.156,331.438,312.719z\r\n\t\t M330.984,315.219c-0.078,0-0.172,0-0.25,0c-0.047-0.344-0.016-0.625-0.016-0.875c-0.234,0.062-0.25-0.031-0.062-0.281\r\n\t\tC331.125,314.281,331.094,314.812,330.984,315.219z M328.438,315.688c0.031-0.25,0.875-0.812,1.125-1.094\r\n\t\tc-0.156,0.812-0.375,1.5-1.125,1.5C328.578,315.938,328.578,315.781,328.438,315.688z M328.344,315.094\r\n\t\tc0.25-0.719,0.234-1.188,1.062-0.969c-0.109,0.406-0.391,0.75-0.406,0.938c-0.156,0.062-0.188,0-0.062-0.125\r\n\t\tC328.719,315,328.531,315.062,328.344,315.094z M329.5,315.188c0.172-0.188,0.531-0.75,0.656-0.812\r\n\t\tc-0.062,0.312-0.484,1.406-0.938,1.406C329.297,315.594,329.406,315.375,329.5,315.188z M329.688,313.719\r\n\t\tc0.172-0.5,0.703-0.156,0.625,0.062C330.109,313.781,329.922,313.75,329.688,313.719z M330.344,315.562\r\n\t\tc-0.25,0.188-0.766,0.438-0.656-0.094C330.062,315.469,330.141,315.125,330.344,315.562z M328.344,317.281\r\n\t\tc-0.078,0.344,2.25-1.156,2.641-1.219c0.109,0.969-0.391,1.938-0.922,2.688c0.047-0.062,0.031,0.219-0.109,0.219\r\n\t\tc0.047-0.125,0.078-0.188,0.078-0.219c-0.219,0.344-0.531,0.656-0.75,0.969c0.094-0.156,0.062-0.219-0.094-0.125\r\n\t\tc0.062-0.219,0.172-0.188,0.219-0.344c-1.391,0.625-0.469-0.781-0.406-1.188c-0.344,0-0.484,0.062-0.938,0.062\r\n\t\tc-0.031-0.094-0.031-0.188-0.031-0.281c-0.25,0.281-0.359,0.531-0.703,0.594C327.531,317.844,327.719,317.438,328.344,317.281z\r\n\t\t M328.969,327.594c0,0-0.562-0.062-0.719-0.062c0.625-0.406,1.031-0.25,1.875-0.156\r\n\t\tC329.969,327.781,329.406,327.594,328.969,327.594z M330.406,323.281c-0.156,0.375-0.312,0.312-0.578,0.562\r\n\t\tc0.641,0,0.422,0.531,0.047,0.531c0.219-0.719-0.656,0.844-0.578,0.719c-0.156-0.156-0.016-0.188-0.297-0.188\r\n\t\tc0.219-0.688,0.438-0.938,0.438-1.531c0.25-0.375,0.5-0.781,0.844-0.875c-0.25,0.656-0.188,0.594-0.594,1.25\r\n\t\tC329.953,323.688,330.125,323.406,330.406,323.281z M327.312,313.562c0.188,0.031,0.25,0.094,0.188,0.25\r\n\t\tC327.312,313.562,327.312,313.906,327.312,313.562z M327.594,323.5c0.156-0.062,0.188-0.156,0.438-0.156\r\n\t\tc-0.5,1.031-3.188,1.625-3.078,1.125c-0.922,0.125-1.391,1.094-0.938,1.656c0.422,0,1.188-0.344,1.781-0.344\r\n\t\tc-0.203,0.188-0.297,0.281-0.562,0.406c0.156,0.031,0.328,0.062,0.5,0.094c-0.078,0.281-0.359,0.281-0.641,0.281\r\n\t\tc0.016-0.125,0.062-0.25,0.141-0.375c-0.359,0-1.109,0.688-1.516,0.719c0.219,0.281,0.5,1.062,0.672,1.062\r\n\t\tc0.047,0.438-0.094,1.438-1.234,1.438c0.297-0.469,0.219-0.938,0.219-1.531c-1.234,0-0.531,2.062-2.047,2.062\r\n\t\tc0.281-0.844,0.516-1.219,0.844-1.719c-0.844,0,0.469-1.5,0.641-2.031c0.219-0.625,0.938-1.688,1.375-1.938\r\n\t\tC324.469,323.656,326.719,324.25,327.594,323.5z M327.359,327.844c-0.109,0.281-0.297-0.125-0.672-0.062\r\n\t\tc0.25-0.469,1.094-0.188,1.297-0.219C327.75,327.656,327.562,327.75,327.359,327.844z M319.188,332.438\r\n\t\tc0.625,0.188-0.469,0.188,0.75,0.188c-0.016,0.125-0.016,0.25-0.031,0.375c-0.781,0-1.281,0.125-1.719,0.188\r\n\t\tC318.656,332.25,318.906,333.25,319.188,332.438z M318.031,332.969c0.125-0.188,0.031-0.219-0.25-0.156\r\n\t\tc0.203-0.156,0.375-0.469,0.656-0.469c-0.094,0.125-0.062,0.156,0.094,0.094C318.406,332.656,318.188,332.75,318.031,332.969z\r\n\t\t M319.594,333.594C321.828,333.844,319.281,334.531,319.594,333.594L319.594,333.594z M320.344,332.844\r\n\t\tc0.281-0.719,1.906-0.312,2.438-0.375c-0.094,0.188-0.109,0.375-0.312,0.375C322.281,333,320.734,332.812,320.344,332.844z\r\n\t\t M325.734,332.25c-0.672,1-3.547,2-4.109,2.094C321.891,333.594,324.656,332.562,325.734,332.25z M323.859,329.938\r\n\t\tc0.438-1.031,0.078-0.094-0.047-0.562c0.281,0,0.625-0.375,0.906-0.594C324.531,329.375,324.359,329.625,323.859,329.938z\r\n\t\t M324.219,317.375c0.172-0.812,1.625-1.562,1.875-2.156c0.438,0,0.453-0.812,0.766-0.812\r\n\t\tC326.75,315.25,325.219,317.375,324.219,317.375z M317.75,332.375c-0.141,0.125-0.391,0.375-0.578,0.375\r\n\t\tc0.109-0.188,0.328-0.375,0.016-0.375C317.391,332.219,317.328,331.969,317.75,332.375z M312.781,328.031\r\n\t\tc0.062-0.188-0.25-0.812-0.391-0.812c0.281-0.719,0.109-0.219,0.344-0.531c0.109,0.094-0.078,0.406,0.234,0.125\r\n\t\tC312.906,326.906,313.453,328.031,312.781,328.031z M307.562,326.844c0.125-0.375,0.047-0.312-0.031-0.688\r\n\t\tC307.5,326.125,308.469,326.844,307.562,326.844z M307.188,323.656c0.344,0,0.094-0.094,0.375-0.094\r\n\t\tc-0.094,0.312,0.188,0.281,0.047,0.688C307.531,323.938,307.359,323.875,307.188,323.656z M331.938,329.781\r\n\t\tc-0.047,0.188-0.719,0.719-0.812,0.719c0.109-0.156,0.734-1.094,0.469-1.094c0.406,0,0.234,0.094,0.484,0.094\r\n\t\tC332,329.562,331.328,330.031,331.938,329.781z M340.062,330.062c-0.375,0.688,0.156-0.344-0.188,0.625\r\n\t\tc0.219,0.312,0.094,0,0.188,0.5c0.078-0.062,0.188-0.094,0.312-0.062c-0.125,0.406,0.25,0.281,0,0.656\r\n\t\tc-0.219,0.094-1,0-0.906-0.156c-0.109,0.094-0.219,0.156-0.312,0.188c0.094-0.375-1-0.875-0.672-1.594\r\n\t\tc-0.484,0.094-4.547,1.969-3.891,0.656c-0.656,0-1,0.156-1.625,0.438c0.438-0.469,0.562-0.5,1.031-0.469\r\n\t\tc0.141-0.562,0.188-2.5,0.141-2.469c-0.141,0.062-0.312,0.125-0.453,0.188c-0.094-0.844-0.797-0.5-1.25-0.719\r\n\t\tc0.062-0.094,0.156-0.156,0.219-0.25c-0.266,0-0.516-0.188-0.438-0.469c-0.219,0.062-0.625,0.438-0.75,0.594\r\n\t\tc0.078-0.125,0.047-0.156-0.094-0.125c0-0.156,0.094-0.25,0.234-0.25c0,0-0.25-0.25-0.25,0.031\r\n\t\tc0.297-0.469,0.219-0.562-0.234-0.406c0.156-0.594,1.312-0.188,1.547-0.688c-0.219,0.031-0.453,0.062-0.672,0.094\r\n\t\tc0.172-0.25-0.031-0.281-0.484-0.094c0.172-0.375,0.062-0.375-0.469-0.312c0.609-1.219,1.562-0.75,2.297-1\r\n\t\tc-0.062,0.156-0.344,1.156-0.406,1.656c0-0.156,0.094-0.219,0.297-0.156c-0.234,0.75,0.109,0.188-0.141,0.688\r\n\t\tc1.062-0.188,1.578-1.625,2.75-1.625c0.625-0.031,1.688,1.125,2.5,0.844c-0.031,0.125,0.812,0.812,1.234,0.688\r\n\t\tc-0.172,0.438,0.234,1.5,0.984,1.125c-0.094,0.25-0.5,0.938-0.656,0.938C339.812,329.312,339.312,330.281,340.062,330.062z\r\n\t\t M337.25,297.781c0,0.219-0.281,0.406-0.406,0.5C336.906,297.781,336.969,298.094,337.25,297.781z M336.906,291\r\n\t\tc0.172-0.062,0.344-0.125,0.484-0.188C337.219,291.219,337.125,290.969,336.906,291z M339.562,290.906\r\n\t\tc-0.469,0.094-0.219-0.125-0.219-0.438c0.281-0.125,0.344-0.031,0.281,0.156c0.547-0.844,0.625-0.375,1.219-0.438\r\n\t\tc-0.078,0.625-0.094,0.438,0.125,0.875c-0.125,0.188-0.344,0.656-0.469,0.656c-0.078,0.344-0.406,1.531-0.891,1.531\r\n\t\tc0.078-0.25,0.203-0.531,0.281-0.781c-0.234,0.25-0.234,0.5-0.641,0.5c0.031-0.25,1-1.938,0.594-1.938\r\n\t\tC339.531,292.031,339.359,291.562,339.562,290.906z M344.156,326.219v0.031c0,0-0.125,0.094-0.25,0.188\r\n\t\tc-0.609,0.594-1.312,1.719-2.578,1.719c0.141-0.156,0.078-0.188-0.141-0.188c0.594-0.094,0.875-0.562,1.406-0.75\r\n\t\tc-0.094,0.219,0.844-0.469,1.312-0.781C344,326.344,344.078,326.281,344.156,326.219c0.031-0.219,0.062-0.438,0.094-0.688\r\n\t\tc-0.375,0.094-0.094-0.156-0.562-0.25c0.25-0.188,0.359-0.031,0.688-0.031c-0.266,0.344,0.188,0.5,0.219,0.812\r\n\t\tC344.438,326.062,344.297,326.125,344.156,326.219z M345.031,327.281c-0.375,0.094,0.109-0.219-0.188-0.094\r\n\t\tc0.188-0.469,0.156-0.344,0.281-0.688c0.094,0,0.375,1.25,0.281,1.25C345.031,328.25,344.625,327.906,345.031,327.281z\r\n\t\t M345.75,329.125c-0.031-0.25-0.406-0.25,0.125-0.5C345.812,328.812,345.797,328.969,345.75,329.125z M346.375,329.969\r\n\t\tc0.266-0.25,0.125-0.781,0.656-0.281C346.938,329.938,346.719,330.031,346.375,329.969z M346.375,328.406\r\n\t\tc0.266-0.312,0.156-0.125,0.516-0.25c-0.031,0.156-0.016,0.312,0.078,0.406C346.75,328.906,346.625,328.406,346.375,328.406z\r\n\t\t M347.062,330.312c-0.234,0-0.031-0.062,0.031-0.219c0.094,0,0.188,0.031,0.281,0.031\r\n\t\tC347.5,330.688,347.25,330.219,347.062,330.312z M346.656,288.344c0.062-0.25,0.281-0.844,0.281-1.125\r\n\t\tc-0.531,0.781-0.531,0.75-0.969,1.656c-0.156-0.094-0.156-0.25-0.062-0.438c-0.375,0.25-0.812,0.344-1.188,0.625\r\n\t\tc0-0.219,0.141-0.156,0.172-0.312c-0.531-0.125-0.297-0.031-0.703,0.219c0.531,0-0.75,1.156-0.906,1.25\r\n\t\tc-0.297-0.375-0.25-0.875,0.172-1.312c-0.609,0.062-0.266-0.062-0.609-0.094c-0.031,0.125-0.094,1.156-0.031,1.156\r\n\t\tc-0.422,0.781-1,0.219-1.281,1.5c-0.688-1.062,0.156-1.75,1.125-2.312c-0.688-0.031-1.469,0.438-2.281,0.625\r\n\t\tc0.109-0.25,1.812-1.719,1.75-1.312c0.094-0.062,0.188-0.125,0.281-0.188c-0.156,0.062-0.188,0-0.094-0.125\r\n\t\tc0.422,0,0.891-0.406,1.344-0.031c0.141-0.156,0.344-0.375,0.453-0.531c0.172-0.094,0.234-1.719,1.047-2.156\r\n\t\tc-0.406,0.469-0.234,0.625-0.344,0.969c2.156,0,2.188-5.062,3.062-5.906c-0.031,0.156-0.031,0.312-0.031,0.469\r\n\t\tc0.172-0.031,0.328-0.031,0.5-0.062c-0.156,0.438,0.234,1.188,0.188,1.812C347.531,282.719,347.344,287.75,346.656,288.344z\r\n\t\t M350.734,277.969c0-0.5-1.016,1.281-1.047,1.281c-0.688,0.094-1.094-0.656-1.234-0.094c-0.438,0-0.562-0.219-0.641,0.406\r\n\t\tc0.703-0.094,0.188,0,0.625,0.219c-0.406,0.094-0.516,0.344-0.875,0.438c0-0.812,0.25-1.562,0.25-2.062\r\n\t\tc0,0,0.562,0.094,0.719,0.188c0.031-0.594,0.406-3.125,0.531-3.031c0.578,0.344,0.375,2.125,1.5,1.438\r\n\t\tc0.125,0.062,0.062,0.344,0.219,0.438c0.125-0.094,0.234-0.156,0.344-0.25c-0.031,0.188-0.078,0.344-0.125,0.5\r\n\t\tc0.312,0,0.25,0.062,0.312,0.438C351.125,277.906,350.938,277.938,350.734,277.969z M351.047,270.781\r\n\t\tc-1.141-2.156-0.859,3.938-0.859,3.938c-0.25,0.094-0.125-0.844-0.719-0.688c-0.312,0.094,0.062,0.844-0.406,0.844\r\n\t\tc0-0.125,0.438-1.281,0.188-1.281c0-1.719,0.281-3.531,0.281-5.469c-0.125,0.031,0.531-3.844,0.609-3.938\r\n\t\tc0.281,1,0.422,2.562,0.328,3.406c-0.094,0.594-0.219,1.312-0.125,1.844C350.484,270,351.047,270.094,351.047,270.781z\r\n\t\t M353.5,274.875c-0.375,0.5-0.656,0.75-1.094,1.188c0.156-0.438,0.891-1.625,1.125-1.625\r\n\t\tC353.516,274.594,353.516,274.75,353.5,274.875z M353.969,274.531c0-0.344,0.531-1.156,0.531-0.938\r\n\t\tC354.312,273.969,354.312,274.25,353.969,274.531z M357.641,267.781c0-0.188,0.453-0.969,0.453-0.562\r\n\t\tC358.094,267.438,357.812,267.656,357.641,267.781z M366.188,234.188c0.422-0.188,0.531-0.219,1.062-0.469\r\n\t\tc0.922,0.781-0.672,1-1.156,1.188C366.016,234.688,366.188,234.438,366.188,234.188z M362.156,237.625\r\n\t\tc-0.125,0-0.188,0.062-0.156,0.188c-0.125,0.031-0.562-0.312-0.391-0.375C361.5,237.406,361.938,237.375,362.156,237.625z\r\n\t\t M352.594,238.406c-0.094-0.594,0.531,0.188,0.844,0.156c-0.594,0.188-0.875,0.344-1.297,0.406\r\n\t\tC352.141,239,352.594,238.031,352.594,238.406z M351.75,238.094c-0.141-0.094-0.031-0.344-0.25-0.312\r\n\t\tc0.219,0.375,0.5,0.906-0.062,1.688c0.391,0,0.031-0.219,0.391-0.219c0.078-0.406,0.25-1.125,0.344-1.438\r\n\t\tc0,0.281,0.047,0.25,0.109-0.031c0.156,0.5-0.125,0.875-0.453,1.469c0.141-0.125,0.172-0.031,0.141,0.125\r\n\t\tc0.766-0.5,3-1.281,3.938-1.375c1.766-0.625,1.062,0.969,2.328,1.812c-0.062-0.094-0.047-0.156,0.062-0.156\r\n\t\tc0.078,0.25,0.141,0.625,0.172,0.938c-0.344-1.906,2.156-1.719,2.047-2.094c0.5,0.406,0.922,0.25,1.141-0.375\r\n\t\tc0.188,0.625,0.531,0.875,0.734,1.594c1.062-0.906,0.5-1.594,0.172-2.75c0.781,0.094,1.547-0.188,2.062-0.594\r\n\t\tc0.094,0.312,1.031,0.938,1.469,0.438c0.094,0.312,1.75,1.219,2.062,1.688c0.844,0.594,1.734,0.719,1.938,2.156\r\n\t\tc0.328-0.125-0.312-1,0.594-1.156c0,0.125,0.297,0.156,0.297,0.156c0.578,0.125,0.484,1.062,1.125,0.844\r\n\t\tc0.062,0.406-0.25,0.625-0.109,1.062c-0.359,0.188-0.484,0-0.719,0.219c0.094,0.469,0.266,0.219,0.094,0.938\r\n\t\tc0.094-0.031,0.281,0.531,0.406,0.688c-0.281,0.094-0.156-0.156-0.219,0.25c-0.062-0.125-0.156-0.25-0.234-0.375\r\n\t\tc-0.078,0.156-0.172,0.312-0.234,0.469c-0.391-0.594-0.422-0.25-0.719-0.344c-0.188-0.531-0.531-1.188-1.094-1.188\r\n\t\tc-0.375,1.875-0.781-0.312-0.828-0.812c-0.641,0.406,0.031,1.562,0.016,2.156c-0.016,0.938-1.391,0.844-1.047,1.656\r\n\t\tc0.203-0.062,0.141-0.188,0.297-0.281c0.203,0.75,1.375,2.312,0.438,2.688c0-0.719-1.719,1.281-1.969,1.781\r\n\t\tc-0.062-0.062-0.125-0.156-0.203-0.25c0,0.688,0.109,0.312-0.281,0.594c0.141,0.469-0.141,0.5-0.203,0.562\r\n\t\tc0,0.625-0.547,1.125-0.406,2c-0.734-0.281-0.625-0.781-1.297-0.844c-0.391,0-0.484,1.25-0.875,1.75\r\n\t\tc0.062-0.406-0.016-0.781-0.016-1.156c-0.469,0.156-0.344,1-0.656,1.188c-0.25-0.719-0.609,0.219-0.781,0.531\r\n\t\tc-0.203,0.312-0.531,2.312-0.281,2.688c0-0.406,0.781,0.188,0.25,0.688c-0.375,0.438,0.062,1.062,0.125,1.5\r\n\t\tc0.094-0.062,0.219-0.125,0.312-0.219c0.094,0.844-0.344,0.438-0.375,0.594c-0.125,0.5-0.406,0.969-0.531,1.625\r\n\t\tc-0.062,0.312,0.438,0.375,0.25,0.875c-0.156,0.438-0.547-0.062-0.703,0.375c0,0.469-0.578,2.094-0.766,2.125\r\n\t\tc0,1.031-0.531,2.219-1.25,2.906c0-1.281-1.719-7.688-0.156-8.031c0-1.906,1.375-2.969,2.141-4.969\r\n\t\tc0-0.531,0.078-1.531,0.609-1.688c1.156-0.25-0.125-2.562,1.047-2.594c-0.734-0.562-0.391-0.156-1.047-0.031\r\n\t\tc0.312-0.094-0.031,2.156-0.031,1.188c-0.578,0.188-0.75,1.406-1.172,2.156c-0.016-0.375-0.047-0.406,0.016-0.844\r\n\t\tc-0.188,0.031-0.188,0.219-0.281,0.375c0.062-0.375,0.156-0.938,0.062-1.312c-0.25,0.219-1.438,0.719-1.906,0.844\r\n\t\tc-0.531,0.781-1.344,2.531-1.125,3.375c0.156-0.125,0.281-0.188,0.453-0.281c0.062,0.625-0.984,1.219-1.859,1.594\r\n\t\tc0.031-0.719-0.391-0.5,0.406-0.906c-0.625-0.531-0.281-0.625-0.906-0.156c0-0.375-1.297-0.312-1,0.688\r\n\t\tc-0.875,0.156-1.25-0.469-1.781,0.375c-0.141-0.562-0.25-0.312-0.641-0.719c0,0.281-0.797,0.281-1.078,0.531\r\n\t\tc0.031-0.125,0.062-0.25,0.094-0.344c-1.609,0.312-1.75,3.812-3.094,4.562c0.094,1.531-7.094,2.469-7.094,3.969\r\n\t\tc0.328-0.031-4.156-0.062-4.156-0.125c0,0.406,0,0.875,0,1.312c0,0,5.359-0.344,5.453-0.562c0.078,0.062,2.672,0.094,2.766,0.156\r\n\t\tc-0.094,0.219,1.125,0.438,1.047,0.625c0.375,0,1.125-0.188,1.125-0.5c0.312,0,0.266,0.156,0.609,0.125\r\n\t\tc0-1.594,1.562,0.469,2.125,0.469c0-0.219-1.188,3.062-0.766,3.281c0.594,0.312-0.734,3.5-1.188,3.875\r\n\t\tc-0.359,0.25-1.594,3.125-1.656,3.5c-1.094,0.531-1.109,2.938-2.422,2.688c-0.125-0.562-0.344-0.312-0.188-0.969\r\n\t\tc-0.125,0.125-0.25,0.25-0.375,0.375c0.031-0.125,0.078-0.219,0.125-0.344c-0.688,0-1.672,1.75-2,2.375\r\n\t\tc-0.281,0.469-1.328,3.125-2.031,3.125c0.188,0.062,0.594,0.438,0.75,0.375c-0.125,0.375,0.438,2.656,0.484,2.656\r\n\t\tc-0.484,1.594-1.203,1.656-2.391,2.875c-0.047-0.75,0.125-1.562,0.719-2.094c-0.203,0.031-0.188-0.875-0.25-1.062\r\n\t\tc0.656,0,0.359-0.969-0.031-0.969c-0.516,0.062-1,0.25-0.734-0.406c-0.047,0.031-0.109,0.094-0.172,0.156\r\n\t\tc0-0.625-0.25-0.688,0.562-1c-0.688,0.094-0.031-1.219-0.594-1.062c-0.359,0-0.75,0.031-0.906,0.031\r\n\t\tc-0.344,0.594-1,0.531-1.062,1.188c-0.125,0.031-0.25,0.031-0.422,0.031c0.109-0.25,0.234-0.375,0.375-0.625\r\n\t\tc-0.641,0,0.359-1.188,0.578-1.625c-0.969-0.531-1.656,0.625-2.219,1.312c-0.703,0.844-1.156,0.594-1.516,1.594\r\n\t\tc-0.047,0.312,0.453,1.125,0.641,1.562c0.312-0.094,0.438-0.438,0.812-0.625c0.797-0.375,1.062,0.031,2.062-0.031\r\n\t\tc-0.188,0.562-1.625,1.5-1.938,1.562c-0.109,0.344-0.75,0.75-0.844,1.094c-0.188,0.844,0.484,1.438-0.141,2.062\r\n\t\tc0.453,0,0.078-0.156,0.391-0.156c0.031,0.656,0.594,1.438,0.5,2c-0.109,0-0.5,0.062-0.812,0.031\r\n\t\tc0.312-0.031,0.688,0.281,0.906,0.281c-0.031,0.688-0.625,0.812-0.625,1.25c0.938,0,0.453,0,0.969,0.469\r\n\t\tc-0.5,0.531-0.734,2.031-1.578,2.031c0,0.688-1.609,2.938-1.797,2.938c0.062,0.656-0.312,0.906-1.047,0.969\r\n\t\tc-0.078,0.969-2.219,2.406-3.172,2.406c0.094-0.375-0.047-0.188-0.125-0.594c0,0.844-1.938,1.562-2.344,1.562\r\n\t\tc-0.062,0.062-1.469,1.375-0.844,1.25c-0.719,0.125-0.906-0.438-0.391-1.219c-0.234,0-0.641-0.031-0.812-0.094\r\n\t\tc-0.453-0.219-0.734,0.688-1.141,0.812c-0.469,0.156-0.859,1.125-1.25,1.125c-1.203,1.906,0.188,1.844,0.188,3.188\r\n\t\tc0.781,0,0.719,3.594,0.656,4.125c-0.766,2-2.25,2.219-3.719,2.219c0.406,0.531,0.25,0.469,0.344,0.844\r\n\t\tc-0.25,0-0.328-0.375-0.438-0.562c0,0.25-0.297,0.875,0.031,0.875c-0.047,0.094-0.844,0.594-1.031,0.625\r\n\t\tc0.344-0.656-0.031-1.188,0.141-1.938c-0.172,0-0.422,0.281-0.172-0.312c-0.109,0.062-0.219,0.094-0.328,0.156\r\n\t\tc-0.016-0.875-0.516-1.219-0.766-2.094c-0.016,0.188-0.125,0.219-0.344,0.125c0.047-0.156,0.078-0.531,0.078-0.719\r\n\t\tc-1.359-0.156-2.297,3.812-2.312,4.844c0.391-0.094,1.328,2.438,1.422,3.062c0.094,0.812-0.188,1.938-0.188,3.031\r\n\t\tc-0.25,0-1.516,0.312-1.234-0.25c-0.266-0.312-0.797-2.281-0.672-2.281c0.281-0.875,0.469-1.781,0.281-2.719\r\n\t\tc-0.312-1.5-0.531-0.75-0.062-2.219c0.375-1.094,1.688-7.406,0.125-7.406c-0.484,0.719-0.875,1.125-1.641,1.188\r\n\t\tc0-1.25,0.703-2.812,0.297-4.469c-0.375,0-0.516,0.406-0.766,0.406c0.25-0.719-0.281-1-0.078-2.188c0.156,0-0.734-1.25-0.969-1.438\r\n\t\tc-0.25,0.75,0.062,0.969-0.75,1.312c-0.25,0.812-2.312-0.281-2.312,0.781c-0.156,0.25-1.406,1.25-1.484,1.5\r\n\t\tc-0.922-0.094-1.859,1.625-3.016,1.844c-0.672,0.156-1.172,0.844-1.844,1.312c-0.844,0.656-0.562,0.188-1.047,1.188\r\n\t\tc-0.172-0.062-0.719,1.969-0.859,2.375c-0.25,1.188-1.688,3.719-3.406,3.719c0.172-0.531-0.078-2.062-0.219-2.906\r\n\t\tc-0.969,0,0.109-3.406-0.422-3.562c0.609-1.844-0.984-5,0.891-6.5c-0.5-0.125,0-1.531,0.062-1.625\r\n\t\tc-0.172-0.031-1.625,2.688-2.219,1.5c-1.344-2.781,0.219-0.625,1.125-2.562c-0.188-0.062-3.062,0.594-1.656-1.031\r\n\t\tc-0.625,0.188-1.469-0.781-1.578-1.188c-0.078-0.281,0.594-0.75-0.5-0.844c-0.703-0.125-0.609,0.188-1.266,0.125\r\n\t\tc-1.016-0.188-5.156-0.062-5.25-1.719c-0.203-2.25-3.031-0.219-3.031-1.219c-1.297-0.406-1.641-3.375-1.625-4.406\r\n\t\tc-0.594-0.094-1.562-0.688-1.781-0.688c-0.094,0.469,0.219,0.469,0.094,0.844c-0.094-0.062-0.156-0.156-0.25-0.219\r\n\t\tc-0.156,0.281-0.312,2.531,0.438,2.688c0.062,0.438,0,2.312,0.281,2.688c0.141-0.188,0.609-0.656,0.875-0.656\r\n\t\tc0.031,0.312-0.531,1.375-0.438,1.531c0.453,0.75,1.359,0.344,1.891,0.875c0.031-0.281,2.141-1.438,2.547-1.812\r\n\t\tc-0.125,0.531-0.375,1.625,0.031,1.781c0.125,0.219,0.625,0.781,0.594,0.875c0.938,0.094,0.953,1.719,1.516,1.719\r\n\t\tc-0.453,0.469-0.984,1-1.297,1.531c-0.031,0-1.844,1.875-1.219,1.875c-0.484,0-2.75,1-2.75,1.281\r\n\t\tc-0.484,0.25-2.703,0.281-2.703,0.969c-0.984,1.406-4.703,1.562-5.844,1.688c-0.516,0.062-3.688,0.656-2.312-1.25\r\n\t\tc-0.266-0.094,0.078-0.906,0.156-1.219c0.203-0.719-0.031-1.531-0.078-2.125c0.172-0.531-0.453-2.625-0.625-2.688\r\n\t\tc0.062-0.469-0.422-0.656-0.641-0.656c0.141-0.469-0.094-2.094-0.25-2.156c1.125-1.188,0.219-3.031-0.109-4.469\r\n\t\tc0.109-0.438-1.234-3.312-1.469-3.312c-0.75,1.688-0.844-1.125-1.266-1.281c-0.5,1.562,0.719,4.812,1.125,6.188\r\n\t\tc-0.844-0.125,0.391,2.656,0.469,3.094c-0.031,0-0.75,2.219-0.375,2.875c0.297,0.5,0.812,0.969,0.75,1.406\r\n\t\tc-0.062,0.125-0.375,1.625-0.219,2.031c0.188,0.906,3.5,4.031,1.656,4.688c1.062,1.5,1.406,1.25,3.094,1.75\r\n\t\tc0.297-0.562,3.516-0.469,3.766-0.344c-1.406,1.625-2.297,4.969-4.578,6.344c-1.094,0.719-1.922,1.469-3.297,2.125\r\n\t\tc-0.766,0.312-2.328,0.625-2.672,1.625c-0.781,0-1.406,1.5-2.266,1.5c-0.859,0.625-1.891,1.562-2.078,2.531\r\n\t\tc-0.125,0.562,0.156,0.75,0.188,1.219c0.094,1.062-1,1.375-0.438,2.562c0.156,0.375-0.562,4.281-0.75,4.219\r\n\t\tc-1.109,1.219-2.719,1.781-4.547,1.438c-0.188,0.375-2.297,1.531-1.734,1.906c0.062,0.062,0,1.562-0.109,1.875\r\n\t\tc0.453,0.188-0.453,1.062-0.875,1.25c-0.266-0.094-2.109,0-2.188,0.406c0.141,0.094,0.266,0.156,0.391,0.219\r\n\t\tc-0.312,0.438-0.469,1.406-1,1.312c0.094,1.719-5.234,2.062-5.516,3c-2.266-0.562-4.984-0.719-6.531-1.219\r\n\t\tc0.172-0.75,1.047-4.781-0.516-5.062c0.281-0.688-0.344-1.656-0.094-2.688c0.188-0.875,0.25-1.531,0.344-1.938\r\n\t\tc0.031-0.969-0.969-1.844-0.734-2.625c0.234-0.938-0.703-1.188-0.453-2.094c0,0.062,0.375-1.781,0.766-1.656\r\n\t\tc0.109-0.344,1.547-2.469,2.047-2.344c0.344-1.219-0.344-2.25,0.656-3.062c-0.406-0.125-0.156-3.344-0.406-3.406\r\n\t\tc0.391-0.531-1.438-2.875-1.688-3.625c0.25,0.156,0.359,0.156,0.344-0.031c-0.688-0.281-0.344-1.75,0.406-1.5\r\n\t\tc-0.047-0.188-0.219-0.438-0.156-0.531c0.688,0.156,1.344-2.906,1.375-3.344c-0.297-0.25-0.688,0.25-0.547-0.5\r\n\t\tc-0.609-0.156-0.453-0.281-1.016-0.438c-0.078,0.812-1.5-0.406-1.719-0.438c0.188-0.594,0.047-0.844,0.188-1.312\r\n\t\tc-1.375-0.562-1.828-1.656-3.406-0.844c0.031-0.25,0.125-0.125,0.234-0.281c-0.172,0-0.219-0.062-0.109-0.188\r\n\t\tc-0.344-0.094-0.297,0.188-0.734-0.406c-0.047,0.281,0.078,0.438,0.141,0.688c-0.953-0.406-2.281,0.062-3.047-0.281\r\n\t\tc0.109-0.719-3.984-0.688-4.328-1c-1.156-1.188-2.312-3.156-2.906-4.531c0.047,0.062,0.078,0.125,0.125,0.188\r\n\t\tc-0.031,0-0.391-1.031-0.406-0.938c0.094,0.031,0.188,0.094,0.297,0.125c0.156-1.5-0.703-2.594-1.078-3.906\r\n\t\tc0.219-0.469-0.453-1.094-0.531-1.5c0.078-0.5,0.391-1.406-0.062-2.219c1.484,0.469,2.875-6.625,2.469-6.812\r\n\t\tc0.219-1.125,1.594-1.656,2.188-2.375c0.703-0.844,1.719-1.656,2.5-2.438c0.625-0.625,2.625-0.5,3.328-1.469\r\n\t\tc0.953-1.25,0.609-2.906,2.172-3.656c1.031,0.375,1.672-1.031,2.406-0.812c0.812-2.5,1.594,0.219,3.266,0\r\n\t\tc-0.125,0.219,0.109,0.344,0.172,0.531c1-0.344,2.281-0.094,3.219-0.688c0.844-0.469,4.922,1.656,5.062,1.062\r\n\t\tc0.688,0.688,1.688,0.531,2.438,0.625c-0.219,0.594,0.344,0.438,0.641,0.531c-0.188,0.594-1.562,1.219-0.734,1.469\r\n\t\tc-0.234,0.688-0.438,1.125-0.859,1.375c-0.609,0.344,0.109,1.281,0.203,1.344c0.328,0.75,2.031,1.781,2.688,1.969\r\n\t\tc-0.312,1.344,1.812,2.312,2.984,3c0.953,0.594,0.891-1.5,0.922-1.562c0.406-0.406,1.031-0.469,1.469-0.656\r\n\t\tc0.406-0.188,2.859,2.375,3.312,2.5c0.891,0.281,1.25,1,2.438,1.281c0,0.062,2.141,0.562,2.031,0.531c0-0.188,0-0.312-0.031-0.531\r\n\t\tc1,0.406,1.594,1.281,3.078,0.094c0.828-0.719,0.703-1.812,1.797-2.531c-0.547-0.344,0.234-2.188,0.375-2.781\r\n\t\tc-0.219-0.062-0.531,0.219-0.781,0.344c0.25-0.438-2.156,0.438-2.406-0.375c-0.094-0.469-0.625-0.656-1-0.781\r\n\t\tc-0.641,1.594-2.016-0.812-2.641-1.031c0.109-0.375,0.516-1.219-0.297-1.281c0.078-0.188,0.125-0.375,0.156-0.594\r\n\t\tc0.078,0.125,0.141,0.281,0.219,0.406c0.125-0.5,0.203-0.812,0.375-1.406c-1.297-0.375,0.422-1.062,1.094-0.938\r\n\t\tc0.062-0.281,1.25-0.156,1.734-0.031c0.203-0.625-1.125-0.281,0.672-0.5c-0.125,0.781,0.969,0.062,1.156,0.031\r\n\t\tc0.938-0.094,1.781,0.188,2.75,0.094c-0.312,0.812,3.922,2.75,4.875,1.594c0.172-1.25-1.172,4.391-2.172,4.25\r\n\t\tc0.078-0.422-0.109,7.719,0.016,7.719c-0.219,0-0.406,0-0.625,0c0.156,0,0.375-8.438,0.406-8.938\r\n\t\tc0.312-0.031,0.406-4.172,0.312-3.969c0.688-0.266,0.938-2.797,0.422-3.328c0.328,0.031,1.719-1.484,1.719-1.703\r\n\t\tc-1.75,0-2.984-0.094-4.547-0.359c-0.422,0.641,0.594,0.578,0.391,1.172c0.5,0.094,0.828,0.094,1.266-0.016\r\n\t\tc-0.094,0.141-0.031,0.141,0.109,0.109c-0.891,0.312-1.797,0.375-2.844,0.594c0.578-0.75,0.266-1-0.469-1.281\r\n\t\tc0.469-0.188,1.234-0.453,1.281-0.859c-0.5-0.125-1.266,0.047-1.656-0.734c0.234,0.062,0.422-0.031,0.625,0\r\n\t\tc-0.141-0.156-0.234-0.281-0.359-0.438c0.047-0.188-1.531,0.656-1.719,0.719c-0.531,0.25-0.703,0.938-0.734,1.375\r\n\t\tc-0.516-0.344-1.594,1.406-1.734,1.719c-0.594,1.312,0.297,1.219,0.156,2.406c-0.969-0.156-1.484,0.125-2.375,0.375\r\n\t\tc0.469-1.188-0.812-1.25-1.859-1.5c-0.078,0.375,0.016,0.562,0.234,0.906c-0.094-0.062-0.172-0.156-0.266-0.25\r\n\t\tc0.031,0.156,0.047,0.281,0.062,0.406c-0.141-0.062-0.109-0.156-0.25-0.25c-0.031,0.25-0.031,0.094-0.078,0.312\r\n\t\tc-0.375-0.125-0.344-0.531-0.375-0.938c-0.172,0.688-0.5,0.719-0.172,1.781c-0.281-0.094,0.031-0.156-0.234-0.25\r\n\t\tc-0.188,0.688,0.125,0.031-0.016,0.688c0.453,0.062,0.984,0.781,1.031,1.469c-0.203-0.281-0.328-0.469-0.672-0.5\r\n\t\tc0.031,0.406,0.219-0.188-0.031,0.625c-0.219-0.156-0.438-0.219-0.703-0.344c-0.047,0.156,0.125,0.312,0.172,0.531\r\n\t\tc-0.312,0-0.25-0.031-0.594-0.156c-0.281,1.219-0.719-0.312-0.922,0.25c-0.188-0.594-0.391-1.688,0.344-1.25\r\n\t\tc0-0.156,0.078-0.188,0.203-0.094c0.047-0.438-0.75-0.344-0.312-1.125c-0.141,0.031-0.266,0.062-0.375,0.062\r\n\t\tc0.094-0.469-0.25-0.656-0.141-1.219c-0.172-0.062-0.234,0.125-0.359,0.25c0.109-0.562,0.312-1.75,0.219-2.281\r\n\t\tc-0.031-0.156-0.031-2.031-1.094-2.031c0.094-0.312-1.25-1.531-1.344-1.562c-0.219,0-0.312-1.938-0.281-2.312\r\n\t\tc-0.188,0.312-0.656,0.875-0.844,0.781c-0.031-0.656-0.094-0.938,0.312-1.281c-0.406-0.156-0.875-0.125-1.219-0.188\r\n\t\tc-0.25,0.625-0.875,1.844-0.156,2.156c0.281,0.062,0.625,0.75,0.438,1.156c0.516,0.156,0.594,1.844,1.562,1.969\r\n\t\tc-0.094,0.156-0.188,0.312-0.281,0.438c0.812,0.219,1.25,1.688,1.125,2.219c-0.266-0.094-0.438-0.906-0.719-0.906\r\n\t\tc-1.203,0.656,0.031,0.938-0.281,1.594c-0.172-0.031-1,1.438-1.656,1.219c2.047-3.625-2.922-4.562-2.094-8.438\r\n\t\tc-0.516-1.156-2.172-0.938-2.875-0.25c-0.406,0.406-3.562-2.312-3.062,0.719c-0.922-0.344-2.422,0.938-3.094,1.281\r\n\t\tc-0.656,0.312-0.125,0.719-0.438,1.125c-0.156,0.562-1.031,0.5-1.188,1.156c-1.406,0.875-2.156,0.094-3.562,0.344\r\n\t\tc-1.094,0.219-1-0.188-1.266-1.156c-0.078-0.344-1.562-0.625-1.859-0.75c0.25-0.844,0.438-1.469,0.656-2.031\r\n\t\tc-0.312-0.094-0.031,0.125-0.344,0.062c0.062-0.188,2.281-3.281,1.453-3.438c0.547-0.438,0.516-0.969,0.219-1.531\r\n\t\tc0.188,0.062,1.141-0.156,1.141-0.062c0.344-0.531,1.156,0.406,1.469,0.469c0.625,0.188,3.25,1.875,3.719,1.5\r\n\t\tc0.344-0.312,1.578-2.688,1.062-2.844c-0.062-0.719-0.891-0.938-0.391-1.688c-0.625-0.188,0.172-0.281-0.438-0.5\r\n\t\tc0.047-0.281,0.188-0.156,0.359-0.219c-0.312-0.125-0.406-0.281-0.5,0.156c-0.281-0.094-0.344-0.531-0.25-0.781\r\n\t\tc-0.297,0-0.406-0.25-0.438-0.547c0.031-0.078,0.062-0.141,0.172-0.078c-0.172-0.656,0.016-0.562,0.594-0.312\r\n\t\tc-0.047,0.156,1.438,8.078,1.906,8.266c0.109-0.594,0.109,6.328,0,6.328c0.141,0,0.312,0,0.453,0c-0.031,0,2.312-7.719,2.406-7.781\r\n\t\tc0.531-0.328,0.062-4.781,1.125-4.484c0.156-0.281,0.938-1.953,1.125-1.922c-0.25-0.094-0.062-1.125-0.156-1.344\r\n\t\tc0,0,0.5,0.125,0.156-0.094c0.094,0.094,0.172-0.078,0.25,0c0.516-1.781,2.25-2.406,3.094-1c0.406-0.922,0.719-0.219,1.078-0.562\r\n\t\tc0.234-0.5,0.422-1.125,0.578-1.719c0.125,0.031-0.641-3.312,1.5-2.438c0.188-0.812-0.109-0.547-0.531-0.734\r\n\t\tc0.125,0.016,0.188,0.078,0.188,0.234c-0.328,0.062-0.312,0.25-0.188-0.25c-0.25,0.094-0.266,0.281-0.516,0.188\r\n\t\tc0.375-0.812,1.406-0.469,2.312-0.969c-0.266,0.656-0.234,0.969-0.953,0.906c0.141,0.062,0.344,0.094,0.5,0.125\r\n\t\tc-0.25,0.781,0.281,11.281-0.453,11.062c-0.234,0.281-0.703,10.781-0.75,10.781c0.219,0,0.422,0,0.609,0\r\n\t\tc-0.188,0,0.094-9.469-0.219-9.016c-0.094-0.188-0.344-5.703-0.531-5.766c0.031,0.531-0.062-2.344-0.172-1.781\r\n\t\tc0.141,0.031,0.266-1.156,0.422-1.109c-0.625,0.469-0.172,0.109-0.25,0.672c0.359,0.25,0.391-0.281,0.75,0.25\r\n\t\tc0.109-0.344,0.672-0.469,1.125-0.656c-0.344,1.25,4.219,0.656,4.656,0.969c-0.047,0.375-0.25-0.203-0.406,0.344\r\n\t\tc0.281-0.031,0.531-0.094,0.812-0.125c-0.062,0.125-0.094,0.266,0.047,0.328c0.172-0.188,0.484-0.484,0.625-0.641\r\n\t\tc-0.672-0.25,0.266-0.594,0.5-0.719c-0.031,0.125-0.078,0.281-0.109,0.438c1.344-0.656,0.672-2.906,2.578-3.312\r\n\t\tc-0.266,0.406-0.219,0.625,0.109,1.062c0.828,0.969,1.109-0.969,1.406-1.5c-0.125-0.062-0.281-0.094-0.438-0.125\r\n\t\tc0.188-0.688,0.188-0.719,0.359-1.25c0.875,0.156,3.406,0.531,3.734-0.031c-0.094,0.219,1.219,0.125,1.594,0.219\r\n\t\tc0.125-0.469-1.062-0.969-1.438-1.5c0.25,0.094,0.328,0,0.281-0.281c-1.125-0.125-2.062,0.688-2.984,0.375\r\n\t\tc-1.297-0.125-0.375-0.438-1.359-1.531c-0.031,0.156-0.047,0.312-0.109,0.469c-0.562-0.156,0.062-2.219,0.312-2.781\r\n\t\tc0.172-0.344-0.172-0.719,0.531-0.938c0.109-0.031,0.797-0.469,1.094-0.625c0.172,0.062,1.828-1.5,1.672-1.812\r\n\t\tc0.016,0-0.062-1.094-0.094-0.906c0-0.062-1.156-0.438-1.375-0.75c-0.25,0.375-0.344,0.812-0.906,0.594\r\n\t\tc-0.375,0.844-0.688,1.688-1.797,2.375c-0.703,0.375-0.812,0-1.266,0.625c-0.453,0.281-0.562,0.656-1.094,0.375\r\n\t\tc-0.531,1.25-0.609,1.75-0.953,3.125c0.297,0.219,0.453,0.219,0.453-0.062c0.312,0.281,0.047,0.344,0.531,0.469\r\n\t\tc0,0.125-0.109,0.844,0.172,0.906c-0.297,0.156-0.391,0.375-0.906,0.438c1.203,0.25-0.922,0.812-1.516,0.688\r\n\t\tc0.422,0.469-0.875,2.219-1.125,2.625c0.25,0.031,0.281-0.094,0.5-0.188c-0.062,0.25-0.312,0.5-0.469,0.688\r\n\t\tc-0.094-0.156-0.141-0.156-0.078-0.344c-1.359-0.531-1.703,1.156-3.078,0.594c0.469-1.375,0.531-1.125,0.344-2.781\r\n\t\tc-0.359-0.125,0.062-2.125,0.109-2.375c-0.578-0.125-1.547,0.688-2.266,0.5c-1.781,0.188-1.859-0.188-1.359-1.969\r\n\t\tc-0.297-0.156-0.328-0.156-0.719-0.219c0.031-0.125,0.047-0.219,0.172-0.312c0.594,0.188,0.969-0.094,1.281-0.781\r\n\t\tc-0.562-0.156-0.391,0-0.984-0.156c0.172-0.156,0.281,0.031,0.359-0.219c-0.797-0.25-0.5-0.375,0.016-0.5\r\n\t\tc-0.125-0.062-0.359-0.312-0.297-0.438c0.266,0.094,1.578,0.75,1.703,0.219c-0.234-0.125-1.078-0.281-1.672-0.375\r\n\t\tc0.172-0.5,0.125-0.156,0.281-0.406c-0.219-0.031-0.219-0.125-0.016-0.375c0.328,0.094,0.609,0.188,0.953,0.312\r\n\t\tc0.094-0.594-0.75,0.062-0.531-0.688c0.594,0.156,1.031-0.094,0.922,0.312c0.172-0.062,0.328-0.125,0.562-0.188\r\n\t\tc-0.266-0.031-0.422-0.281-0.328-0.562c0.25,0.094,0.406,0.219,0.547,0.312c0.172-0.562,0.312-0.312,0.109-0.844\r\n\t\tc0.547,0.219,0.703,0.469,0.906-0.031c0.078,0.156,0.188,0.281,0.312,0.469c0.031-0.188-0.094-0.281-0.203-0.438\r\n\t\tc0.516-0.281,0.312-0.312,0.656-0.625c-0.141,0.031-0.297,0.031-0.422,0.031c0.141-0.062,0.312-0.125,0.469-0.188\r\n\t\tc-0.219,0.438,0.469,0.312,0.531,0.344c0.125,0.438,0.219,0.312,0.516,0.625c0.203-0.438,0.859-0.438,0.953-0.688\r\n\t\tc-0.406,0.188-0.703,0.219-1.125,0.312c0.094-0.312-0.031-0.25,0-0.5c0.562,0.125,1.594-0.906,1.625-1\r\n\t\tc0.844,0.25,0.562,0.156,0.719-0.312c1.391-0.281,1.047-0.781,1.703-1.312c0.734,0.125,1.422-0.938,1.969-0.781\r\n\t\tc0.047-0.219,0.047-0.25,0.172-0.625c-0.156,0-0.297,0.031-0.438,0.062c0.031-0.219,0.125-0.25,0.312-0.094\r\n\t\tc0-0.125,0-0.156-0.031-0.188c0.125,0.031,0.219,0.062,0.422,0.312c0.203-0.156,0.656-0.438,0.797-0.625\r\n\t\tc-0.25-0.094-0.594-0.094-0.875-0.062c0,0,2.562-1.5,0.719-1.344c0.125-0.312,0.344-0.656,0.938-0.875\r\n\t\tc-0.062,0.312-0.156,0.625-0.25,0.938c0.312,0.156,0.422,0.062,0.375-0.375c0.359-0.125,0.094,0.25,0.359-0.25\r\n\t\tc0.078,0.188-5.438,0.375-5.219,0.406c0.156-0.406-5.125-0.656-5.125-0.875c0,0.156,0,0.312,0,0.5c0-0.312,5.906-0.062,5.969-0.562\r\n\t\tc0.531,0.094,2.703,0.312,3.219,0.469c0.5,0.125,1.641-0.062,1.766-0.406c0.203,0.062,1.094,0.344,1.219,0.5\r\n\t\tc-0.031-0.219,0.281-0.469,0.266-0.688c-0.109,0.031-0.031,0.062-0.125,0.094c0.062-0.125,0.125-0.219,0.031-0.344\r\n\t\tc0.438,0.125,2.109,1.344,2.266,0.125c0.391,0.156,0.125,1.219,0.516-0.375c0.391,0.312,0.406,0.219,0.625,0.312\r\n\t\tc-0.094,0.281-0.047,0.344,0.172,0.375c-0.469,0.312-0.75,0.75-0.75,1.281c0.188-0.312,1.25-1.656,1.547-1.562\r\n\t\tc0,0.469-0.312,0.656-0.375,1.031c1-0.438,0.719-1.531,1.656-1.188c-0.188,0.531,0.219,0.344-0.422,0.531\r\n\t\tc0.016,0.125,0.047,0.219,0.047,0.344c0.109-0.094,0.219-0.156,0.344-0.25c-0.125,0.188-0.188,0.438-0.281,0.625\r\n\t\tc0.156,0.031,0.5-0.656,0.625-0.875c0.125,0.25,0.219,0.594,0.219,0.75c0.188,0.031,0.297-0.094,0.469-0.062\r\n\t\tc-0.047,0.188-0.156,0.25-0.25,0.438c0.688,0.125-8.844,0.031-8.406,0.469c-0.812-0.25-10.344,0.406-10.344,0.156\r\n\t\tc0,0.188,0,0.344,0,0.531c0-0.281,9.438,0.031,9.844-0.312c0.344,0.312,5.141,0.688,5.406,0.219\r\n\t\tc0.266,0.219,2.438,0.375,2.781,0.469c-0.312,0.188,1.156,0.281,0.688,0.219c0,0.094,2.438,1.25,2.734,1.531\r\n\t\tc-0.047,0.156,2.609,1.594,2.609,2.125c-0.281,0.75,1.859,1.906-0.172,2.781c-0.078-0.031-2.328-0.062-2.078-0.5\r\n\t\tc-0.5-0.094-1.594-1.188-1.594-1.031c-0.75-0.344-0.812-1.188-1.344-1.344c0,0.25,0.156,0.719,0.375,0.781\r\n\t\tc-0.094,0.094-0.219,0.156-0.312,0.219c0.156,0.031,0.344,0.094,0.516,0.125c0.016,0.219-0.078,0.25-0.297,0.094\r\n\t\tc0.125,0.312,0.438,0.375,0.438,0.625c-0.25-0.031-0.344-0.156-0.469,0.062c2.156,0.531,0.719,1.781,1.188,3.438\r\n\t\tc0.031-0.094,0.781,0.906,1.531,1c0-0.188,0.781-0.312,0.391-1.094c-0.5-0.875-0.312-0.5-0.078-1.5\r\n\t\tc0.469,0.312,0.688,0.719,0.562,1.125c0.688-0.031,0.719,0.281,1.469,0.688c0-0.594-0.75-2.844,0.875-2.281\r\n\t\tc0.188-0.844,1.219,0.125,0.969,0.656c0.938,0.25,1.812-3.656,1.438-4.281c0.891,1.031,1.703,0.906,1.875,2.531\r\n\t\tc-1.219-0.375-1.125,0.281-1.125,1.562c0.5,0.156,1.312-0.188,1.469-0.625c0.359-1.062,0.844-0.5,0.938-1.188\r\n\t\tc0.938,0.406,1.781-0.781,2.812-0.469c0.109-0.125,0.469-0.562,0.812-0.5c0.094,0.219,0.094,0.531,0.266,1.031\r\n\t\tc-0.484-0.062-0.297,0.125-0.578,0.219c0.375-0.031,0.406,0.062,0.656,0.125c0.219-0.5,0.406-0.094,0.641,0.094\r\n\t\tc0-1,1.297-0.938,1.828-0.156c0.375-0.375,0.625-0.375,1.234-0.438c-0.078,0.375-0.266,1.125,0.25,1.188\r\n\t\tc0.547-0.75,1.406-0.75,0.734-2.188c0.172,0.062,0.594-0.062,0.594-0.375c1.094,0.812,2.562-0.125,2.297,1.781\r\n\t\tc0.297,0.062,0.234-0.375,0.328-0.562c0.656,0.438,1.703,1.438,1.609,2.281c0.406,0.094,0.734-0.781,0.797-1.188\r\n\t\tc-0.219,0-0.062,0.219-0.391,0.156c0.109-0.625-0.141-0.781,0.25-1.281c-0.391-0.094-0.484-0.219-0.859-0.312\r\n\t\tc0.375-0.812,0.328-1.156,0.438-2c-0.594-0.125,0.562-1.094,0.594-1.219c0.359-0.75,1.562-1.469,1.562-2.219\r\n\t\tc0.453,0.031,1.375,0.094,1.719,0.531c0,0.188,0.109,1.969-0.281,1.906c0,1.188-0.125,1.906-0.156,3.188\r\n\t\tc0,0.375-0.156,0.656-0.094,1.125c0.031,0.469,0.562,0.688,0.562,1.219c0,0-0.719,2-0.75,2.188\r\n\t\tc-0.719-0.094-1.344,0.188-2.312,0.188c-0.062,0.281,0.219,0.688,0.594,0.75c1.203,0,0.812,0.938,1.531,1\r\n\t\tc0.062-0.656,0.094-0.844-0.422-1.188c2.297,0.656,1.516-2.562,2.203-3.344c0.438-0.531,1.625-0.719,1.516,0.156\r\n\t\tc0.672,0.094-0.453,2.156,0.609,2.688c0-0.875,0.938-0.219,0.938,0.094c0.078-0.062,0.156-0.094,0.25-0.156\r\n\t\tc-0.312-0.25-0.594-0.531-0.984-0.562c-0.297-0.875,0.219-0.938,0.016-1.781c-0.469-1.656-1.422-0.906-2.688-1.125\r\n\t\tc0.188-1-0.062-1.562-0.062-2.438c0.203-1.406,0.625-1.812,0.812-3.594c0.656,0-0.5,3.344,1.375,3.5c0-0.375,0.516,0,0.656,0.094\r\n\t\tc0.062-0.125,0.109-0.219,0.172-0.312c-0.922-0.094-0.953-0.875-0.953-1.531c0.906,0.094,0.719,0.906,1.406,0.125\r\n\t\tc-0.266-0.125-0.172-0.156-0.5-0.188c0.375-1.344,2.469,0.719,3.359,0.812c0,0.719-0.703,2.406-1.141,2.938\r\n\t\tc0.328,0.062,0.312-0.469,0.656-0.406c0.688,0.594-0.094,0.844,1.078,0.875c-1.359-1.031,1.047-3.938-1.297-4.125\r\n\t\tc0-0.25-0.344-0.219-0.453-0.531c-0.359-0.719,0.078-1.125,0.078-1.781c0.375-0.625,1.844-0.781,2.594-0.25\r\n\t\tc0.219-0.375,1.344-0.625,0.969,0.375c1.609,0.156-0.875-1.562,0.375-1.562c0-0.375-0.062-0.5-0.469-0.5\r\n\t\tc0.047-0.094,0.094-0.219,0.141-0.312c0.219,0,0.328,0.219,0.578,0.375c0-0.594,0.375-0.656,0.375-0.938\r\n\t\tc-0.203-0.062-0.344-0.094-0.344-0.344c1.719,0,2.312-0.656,3.969-0.594c0.031-0.281,0.109-0.25,0.109-0.438\r\n\t\tc0.672,0.312,1.672-0.375,1.672,0.844c0.25,0.094,0.328,0,0.219-0.312c0.078,0.156,0.156,0.344,0.219,0.5\r\n\t\tc0.344-0.5,0.938-1.312,1.406-0.438c0-0.531-0.125-0.438-0.391-0.781c0.109-0.062,0.234-0.125,0.359-0.188\r\n\t\tc0,0.125,0.906,0.156,1.188,0.344c-0.812-0.906,0.25-1.75,0.875-2.219c0.797,0.625,1.359-0.594,1.359,1.125\r\n\t\tc0.766,0,1.188-0.094,1.188,1.156c0.469-0.562,2.406-1.188,2.406-1.156c0.297,0.594,2.422,2.531,1.266,2.531\r\n\t\tc0.031,0.219,0.688,0.781,0.531,1.125c-0.156,0.312-0.719,0.062-0.719,0.469c-0.75,0-1.547,0.469-2.062,1\r\n\t\tc-0.141,0.156-0.188,1.469-0.875,1.469c0,0.344-1.922,1.25-1.922,1.25c0.766,0,2.984-0.688,2.859-1.438\r\n\t\tc0.188,0.094,0.344,0.219,0.5,0.312c-0.219-0.406-0.297-0.906,0.031-1.438c0.453,0.031,0.141,0.062,0.594-0.031\r\n\t\tc-0.094,0.969,1.031,1.344,0.953,0.156c0.109,0.438,0.312,0.906,0.422,1.281c-0.281-1.781,2.812-1.75,2.969-0.594\r\n\t\tc-0.25,0,2.156,1.344,2.156,1.031c0.578,0,0.719,9.219,1.422,9.094c-0.109-0.125-0.172,8.844-0.141,8.844c0.109,0,0.25,0,0.359,0\r\n\t\tc0,0-0.391-9.5-0.609-9.484c0,0.125,0.031-4.359,0.141-4.297c-0.328,0.062-1.547-3.906,0.516-4.062\r\n\t\tc0.125,0.812,0.859-0.938,0.812-0.094c0,0.375-0.75,0.188-1.078,0.5c0.172,0,0.328-0.328,0.516-0.344\r\n\t\tc-0.047,0.203-0.031,0.344-0.203,0.344c0.172,0.094,0.328,0.109,0.484,0.203c-0.062-0.547,0.125-0.203,0.406-0.516\r\n\t\tc0,0.281-0.062,0.531-0.047,0.625c0.578,0,0.516,0.531,0.75,0.891c0.141,0,0.109-1.016,0.094-1.172\r\n\t\tc0.234,0.281,0.828,1.094,1.062,1.062c-0.109-0.219-0.109-0.344,0.047-0.344c0,0.031-0.094,0.812-0.094,0.812\r\n\t\tc0.094-0.031,0.188-0.125,0.281-0.188c0.328,0.688,0.844,0.688,1.312,0.688c0,0.312-0.25,0.781,0.188,0.781\r\n\t\tc0.234-0.438,0.281-2.812,0.625-2.812c0.141,0.469,0.25,0.625,0.25,1.125c0.078-0.031,0.969-0.438,0.766-0.781\r\n\t\tc0.281,0,0.953,0.438,1.141,0.375c0.672,0.062,1.125,0.719,1.281-0.531c0.406,1.469,0.297-0.531,0.344-0.688\r\n\t\tc0.188-0.688-0.25-0.875,0.547-1.219c-0.109-0.125-0.234-0.156-0.359-0.281c0.75-0.156,2.531,0.188,3,0.5\r\n\t\tc-0.312,0.062-0.5,0.219-0.562-0.062c-0.109,0.188-0.109,0.406,0,0.656c0.531-0.156,0.719-0.344,1.266-0.406\r\n\t\tc-0.047,0.312-0.094,0.438-0.203,0.719c-0.078-0.25,0.094-0.312,0-0.531c-0.344,0-0.469,1.25-0.469,1.406\r\n\t\tc1.172-0.188,0.391-1.312,0.938-1.781C351.047,236.875,352.172,237,351.75,238.094z M361.922,254.156\r\n\t\tc0.016,0.188-0.172,0.969-0.109,1.156c-0.125,0.031-0.156,0.25-0.172,0.406C361.641,255.156,361.5,254.719,361.922,254.156z\r\n\t\t M347.031,264.188c-0.469,0.062-1.031-0.281-0.281-0.5C346.828,263.844,346.938,264,347.031,264.188z M243.281,270.031\r\n\t\tc-0.844,0.469-0.828,0.031-0.641-0.562c0.359,0.125-0.062-0.156,0.5,0C242.859,270.031,243.172,269.688,243.281,270.031z\r\n\t\t M247.953,269.656c0.625,1,0,2.281-0.969,2.625c0.062-0.312-0.094-1.469-0.062-2.094\r\n\t\tC247.109,269.875,247.578,269.719,247.953,269.656z M247.547,268.844c0.156-0.438,0.453-1.625,1.172-1.312\r\n\t\tc0,0.875-0.25,1.312-0.719,2C247.859,269.281,247.656,269.062,247.547,268.844z M249.266,274.531\r\n\t\tc0.156-0.656,1.594,0.312,2.406,0.188c-0.312,0.469-0.594,1-0.75,1.469c-0.219-0.125-0.25-0.281-0.406-0.281\r\n\t\tC250.297,275.594,249.203,274.844,249.266,274.531z M255.891,275.938c0.047-0.281,0.188-0.031,0.281,0.094\r\n\t\tC256.078,276.406,256,276,255.891,275.938z M257.438,279.875c0.109-0.344,0.422-0.031,0.484-0.031\r\n\t\tc0.375,0.344,1.766,0.531,1.656,0.969C258.703,280.906,258.297,280.531,257.438,279.875z M264.328,282.031\r\n\t\tc0.188,0,1.125-0.125,0.75-0.156c0.641,0.094,0.938,0.188,1.438-0.156C266.281,282.406,264.703,283.094,264.328,282.031z\r\n\t\t M260.781,275.938c0.578,0.094,0.047,0.094,0.391,0.25c-0.203,0-0.094,0.312-0.375,0.219\r\n\t\tC260.953,275.844,260.75,276.312,260.781,275.938z M255.797,253.156c-0.328,0.281-0.188-0.188-0.438,0.375\r\n\t\tc-0.062-0.031-0.156-0.062-0.25-0.094c0.109-0.594-0.031-0.219-0.438-0.281c0.266-0.625,0.156-0.406-0.031-0.875\r\n\t\tc0.469,0.156,0.312-0.125,0.688-0.125c-0.156,0.188-0.141,0.312,0.031,0.344c0-0.188,0.094-0.188,0.219-0.125\r\n\t\tc0.156-0.5,0.125-0.188,0.469-0.5c-0.25,0.562,0.016,0.531-0.406,0.844C255.688,252.875,255.75,253.031,255.797,253.156z\r\n\t\t M255.797,253.656c-0.156,0.375-0.781,0.531-1.25,0.5c-0.031-0.25,0-0.5,0.031-0.688\r\n\t\tC255.109,253.844,255.234,253.562,255.797,253.656z M257.453,253.469c0.125,0.188,0.266,0.406,0.375,0.625\r\n\t\tc-0.094,0-0.203,0.062-0.312,0.094C257.484,253.906,257.453,253.688,257.453,253.469z M260.797,252.406\r\n\t\tc-0.219-0.625,0.375-1.438,1.078-1.219c-0.484,0.281-0.375,0.625-0.531,0.875C261.141,252.156,260.984,252.312,260.797,252.406z\r\n\t\t M262.828,247.938c0.469-0.031,0.25-0.219,0.312-0.438c0.281,0.031,0.297,0.344,0.219,0.719\r\n\t\tC263.156,248.219,263.016,248.031,262.828,247.938z M263.891,251.094c0.203-0.594,0.781-0.469,1.297-0.156\r\n\t\tc-0.234,0.125-1.172,0.875-1.328,0.844c-0.031-0.312,0.031-0.406,0.234-0.312C264.031,251.344,263.953,251.219,263.891,251.094z\r\n\t\t M264.484,250.062c0.031-0.156,0.422-0.219,0.562-0.188c0,0.094,0.031,0.219,0.031,0.344c-0.188-0.062-0.234,0.094-0.406,0.25\r\n\t\tC264.688,250.25,264.641,250.094,264.484,250.062z M265.359,248.625c0.062-0.281,0.094-0.062,0.125-0.469\r\n\t\tc0.156,0.031,0.281,0.062,0.406,0.094c-0.031,0.156-0.094,0.344-0.109,0.469C265.641,248.688,265.5,248.656,265.359,248.625z\r\n\t\t M329.5,236.031c0.062-0.281,0.359-0.531,0.328-0.656C330.188,235.375,329.688,235.969,329.5,236.031z M350.938,231.844\r\n\t\tc-0.094,0.031-0.844,0.312-1.156,0.375c0,0.125-1.203-1.031-0.562-1.031C349.859,231.062,351.812,231.562,350.938,231.844z\r\n\t\t M346.578,235.906c-0.391-0.062-0.266-0.312-0.672-0.25c-0.031-0.156,0.5-0.875,0.469-1.031c0.969-0.656,1.406,0.5,1.625,1.219\r\n\t\tC347.688,235.875,346.5,235.625,346.578,235.906z M347.406,233c-0.234-0.594-0.344-1.219-0.25-1.25\r\n\t\tC348.016,231.594,348.156,232.312,347.406,233z"},"children":[{"name":"path","attribs":{"d":"M256.016,127.992C185.297,127.992,128,185.297,128,256c0,70.688,57.297,128,128.016,128C326.688,384,384,326.688,384,256\r\n\t\tC384,185.297,326.688,127.992,256.016,127.992z M344.438,231.344c0,0.094,2.344,2.688,0.531,3\r\n\t\tc-0.844,0.156-0.906-1.906-0.969-2.312C344.219,232.031,344.328,231.562,344.438,231.344z M339.781,237.375\r\n\t\tc-0.031,0.031-0.484,0.688-0.484,0.062C339.438,237.406,339.625,237.406,339.781,237.375z M339.031,238.125\r\n\t\tc0.062,0.188,0.328,0.219,0.406,0.438c-0.438,0-0.281,0-0.594-0.094C338.906,238.344,338.969,238.25,339.031,238.125z\r\n\t\t M338.031,237.875c-0.375,0,0.031-0.25-0.359,0.031c-0.141-0.25-0.016-0.094-0.016-0.312c-0.062-0.188,0-0.25,0.188-0.188\r\n\t\tC337.906,237.562,337.969,237.719,338.031,237.875z M322.5,226.469c0.25,0,0.469,0.062,0.469,0.656\r\n\t\tc0.125-0.125,0.25-0.094,0.188-0.312c0.156,0.219,1.25,0.719,1.281,0.938c0,0.75-0.906,0.656-0.906,1.125\r\n\t\tc-0.156-0.031-0.812-0.094-0.812-0.344c-0.359,0-0.438,0.625-1.156,0.625c0-0.094,0.516-1.062,0.656-1.25\r\n\t\tC322.453,227.906,322.5,226.781,322.5,226.469z M318.344,224.906c-0.188-0.656,1.125-1.75,1.125-1.062\r\n\t\tc0.594,0.25,1.594,1.562,0.594,1.938c1.156,0.094,0.844-0.219,0.844,0.781c0.562,0,0.281-0.156,0.5-0.594\r\n\t\tc0.375,0,0.625,1.969-0.781,1.406c0,0.625-1.859-0.406-1.75-0.062c-0.141-0.125-0.188-0.281-0.141-0.469\r\n\t\tc-0.219,0.031-0.266,0.125-0.547,0.125c0-0.094,0-0.188,0-0.312c0.188,0,1.531-0.969,1.531-1.031\r\n\t\tc-0.438-0.031-0.922-0.125-0.922,0.281c-0.25-0.156-1.328-0.562-1.328-0.719C317.969,225.188,317.781,224.906,318.344,224.906z\r\n\t\t M320,231.812c0.312,0.25,0.062,0.219-0.641-0.031c0.109-0.031,0.25-0.094,0.391-0.156\r\n\t\tC319.688,231.844,319.781,231.875,320,231.812z M317.375,225.656c0,0.344,0.438,0.781,0.688,1c-1.25-0.188-1.312,0.156-1.312-1.031\r\n\t\tC316.938,225.656,317.172,225.656,317.375,225.656z M316.234,223.25c0.422,0.062,0.016,0.156,0.453,0.156\r\n\t\tc-0.156,0.156-0.219,0.094-0.219,0.312C315.938,223.719,316.234,223.25,316.234,223.25z M308.766,236.156\r\n\t\tc-0.016,0.125,0.094,0.438,0.094,0.656c-0.312-0.031-0.359-0.156-0.578-0.375C308.438,236.344,308.594,236.25,308.766,236.156z\r\n\t\t M308.156,237.062c-0.094,0.25-0.906,1.281-0.781,0.375C307.641,237.219,307.75,237,308.156,237.062z M302.922,235.312\r\n\t\tc0.094-0.125,0.203-0.281,0.297-0.438c0.234,0.625,0.125,0.594-0.344,0.938C302.656,235.531,302.922,235.594,302.922,235.312z\r\n\t\t M299.375,221.625c0.453,0.094,1.531-0.594,1.531,0.25c-0.375-0.031-1.562,1.469-1.562,0.062\r\n\t\tC299.547,222.062,299.406,221.719,299.375,221.625z M297.75,221.531c0.562-0.062,0.844,0.281,0.844,0.906\r\n\t\tc-0.438-0.031-0.25,0.125-0.703-0.094c0.031,0.25,0.047,0.531,0.062,0.812c-0.312-0.031-0.547-0.031-0.875-0.125\r\n\t\tC296.906,222.375,297.141,221.875,297.75,221.531z M296.859,218.406c0.172,0,0.203,0,0.203,0.188\r\n\t\tc-0.188-0.031-0.375-0.031-0.562-0.094C296.609,218.469,296.75,218.438,296.859,218.406z M295.562,220.875\r\n\t\tc-0.5-0.312-0.562-0.344-0.734-0.781c0.375-0.156,0.391,0.344,0.484-0.219c0.219,0.188,0.5,0.281,0.75,0.438\r\n\t\tc-0.078,0.094-0.156,0.188-0.219,0.281c-0.25-0.219-0.219-0.344-0.562-0.406c0.203,0.188,0.25,0.531,0.531,0.562\r\n\t\tC295.844,220.938,295.781,221,295.562,220.875z M295.625,222.438c0,0.281-0.094,0.344-0.062,0.656\r\n\t\tC294.75,223.094,294.656,222.344,295.625,222.438z M296.359,220.688c-0.141-0.062-0.172,0.406-0.312-0.062\r\n\t\tC296.156,220.531,296.656,220.094,296.359,220.688z M295.766,222.156C297.281,222.281,295.656,223.688,295.766,222.156\r\n\t\tL295.766,222.156z M296.828,223.281c0.031,0.219,0.062,0.406,0.062,0.656c-0.266-0.094-0.562-0.312-0.562-0.562\r\n\t\tC296.5,223.344,296.656,223.344,296.828,223.281z M296.016,218.75c0.031,0.188,0.203,0.094,0.203,0.312\r\n\t\tc-0.094,0.062-0.172,0.094-0.266,0.156C295.906,219.062,295.797,218.688,296.016,218.75z M295.281,218.938\r\n\t\tc0.156,0.062,0.312,0.125,0.453,0.219c0,0.656-1.172,0.125-0.922,0.188C294.906,218.875,295.281,219.562,295.281,218.938z\r\n\t\t M294.281,220.312c0.125,0.188,0.219,0.219,0.5,0.281c0,0.406-0.812,0.125-0.75-0.156\r\n\t\tC294.25,220.562,294.312,220.531,294.281,220.312z M292.438,221.906C294.047,222.062,292.438,222.719,292.438,221.906\r\n\t\tL292.438,221.906z M292.422,232.125c0.078-0.594,0.203-0.75,0.812-0.5c-0.234-0.438-0.219-0.156,0.078-0.469\r\n\t\tc-0.188,0.031-0.219-0.094-0.094-0.312c0.578,0.062,3.328-0.344,3.531-0.906c0.062,0.219,0.188,0.281,0.469,0.25\r\n\t\tc0.109-0.938,1.016-0.406,1.016,0c0.859-0.25,1.266-0.438,2.047-0.656c0.312-0.062,0.594-0.375,1.156-0.312\r\n\t\tc0.188,0.188,0.359,1.281-0.219,1.062c-0.203,0.75-2.109,0.5-2.641,0.719c-1.047,0.469-1.531,0.219-2.562,0.938\r\n\t\tc0-0.5-0.781,0.219-1.016,0.156c-0.109,0.5-0.172,0.5-0.672,0.875c0.062-0.188,0.109-0.375-0.078-0.375\r\n\t\tc-0.094,1.094-0.219,0.281-0.25,0.938c-0.172-0.062-0.344-0.156-0.484-0.25c-0.062,0.812-0.391,0.875-0.797,0.344\r\n\t\tc-0.156,0.406-0.438-0.062-0.688-0.094c0,0.312,0.906,0.625,1.203,1c-0.953,0.656-0.984,3.688,0.5,3.844\r\n\t\tc-0.141,0.531-0.609-0.125-0.891-0.156c-0.094,0.656,0.141,0,0.031,0.625c-0.203,0-0.094-0.156-0.094-0.312\r\n\t\tc-1.125-0.156-1.219,0.094-2.219-0.25c0-0.375,0.406-0.719,0.734-0.688c0.078-0.781-0.641-0.062-0.344-1.188\r\n\t\tc-0.188,0-0.5,0.094-0.672,0.188c-0.031-0.094-0.047-0.219-0.062-0.312c-0.188,0.25-0.25,0.406-0.641,0.375\r\n\t\tc-0.078-0.469-0.031-0.875,0.25-1.281c0.375,0.281,0.281,0.094,0.484,0.25c0-0.531,0.406-0.812,0.406-1.031\r\n\t\tc0.125-0.219-0.031-0.562,0.125-0.812c0.438,0.094,0.672,0.125,0.812-0.312c-0.094,0.031-0.188,0.062-0.312,0.094\r\n\t\tc0.094-0.094,0.625-0.938,0.625-0.688c-0.391-0.156-0.812,0.188-0.812-0.469c0.188,0,1-0.094,1-0.469\r\n\t\tC292.375,232.031,292.172,232.125,292.422,232.125z M295.625,240.438c-0.406,0-0.594-0.125-0.797-0.156\r\n\t\tc-0.328-0.156-0.109-0.438-0.547-0.219c0.125-0.312-0.031-0.656,0-0.969C294.906,239.125,295.281,240,295.625,240.438z\r\n\t\t M290.766,222.375c0-0.188,0.219-0.25,0.391-0.219c0.031,0.094,0.031,0.188,0.062,0.312\r\n\t\tC291.078,222.438,290.938,222.375,290.766,222.375z M291.609,222.375c0.359,0,0.422,0.219,0.141,0.688\r\n\t\tc-0.203-0.031-0.406-0.094-0.594-0.125C291.156,222.781,291.5,222.594,291.609,222.375z M291.547,220.938\r\n\t\tc-0.047,0.156-0.109,0.281-0.203,0.438c0.156-0.062,0.281-0.156,0.438-0.25c0.125,1.094-1.469,0.562-2.375,1\r\n\t\tc0.125-0.375-0.062-0.312-0.406-0.406c0.062-0.25,0.188-0.25,0.328-0.406c-0.297,0.062-0.422,0-0.328-0.25\r\n\t\tc0.562-0.031,0.75,0.5,1.281,0.406c0.438-0.031,0.906-0.562,0.812-0.594C291.297,220.875,291.156,221.125,291.547,220.938z\r\n\t\t M287.812,220.188c0.359,0,2.859,0.125,2.641,1c-0.625-0.125-1.172-0.281-1.766-0.469c-0.281,0.594-0.594,0.625-0.969,0.094\r\n\t\tc0,0.156-0.5,0.156-0.75,0.344c0.25-0.344-0.719-0.344-0.719-0.625C286.719,220.156,287.109,220.094,287.812,220.188z\r\n\t\t M288.062,239.469c-0.109,0.5-0.406,0.656-0.469,1.062C286.828,240.344,287.047,239.156,288.062,239.469z M277.719,221.75\r\n\t\tc-0.312-0.094-0.891-0.219-0.781-0.531C277.094,221.25,277.922,221.5,277.719,221.75z M271.766,217.562\r\n\t\tc0.234-1,0.297,0.031,0.562-0.469c-0.547-0.156,0.172-0.375,0.234-0.469c0.172,0.656,0.906,0.844,0.953,1.25\r\n\t\tc0.109,0.844,0.812,0.125,1.031,0.156c-0.078,0.156-0.156,0.281,0.047,0.312c0.359-1.25,0.297-0.062,0.062,0.188\r\n\t\tc0.438,0.094,0.688-0.125,1.031-0.375c0,0.188-0.125,0.281-0.234,0.406c0.203-0.094,0.25,0.031,0.312-0.219\r\n\t\tc0.297,0.094,0.312,0.594,0.922,0.719c-0.125,0.406-0.453,0.656-0.875,0.594c-0.156,0.188-0.125,0.312,0.062,0.312\r\n\t\tc-0.312,0.031-0.594,0.094-0.906,0.094c-0.312,0.969-3.672-0.656-3.516-1.469c0.469,0.312,0.938,0.094,1.266,0.219\r\n\t\tc-0.297-0.219-1.266-0.25-1.469-0.406c-0.734-0.156,0.203-0.656,0.234-0.781c-0.266-0.031-0.547-0.312-0.453-0.594\r\n\t\tC271.234,217.25,271.562,217.5,271.766,217.562z M276.031,221.812c-0.312-0.156-0.281-0.094-0.281-0.438\r\n\t\tC276.266,221.5,275.812,221.5,276.031,221.812z M272.125,223.219c-0.047,0.156-0.672-0.344-1.234-0.219\r\n\t\tc0.078-0.344,0.172-0.75,0.281-1.062c1.422-0.25,1.391,0.781,2.359,0.969C273.375,223.5,272.734,223.375,272.125,223.219z\r\n\t\t M272.25,233.094c-0.156,0.312-0.328-0.094-0.547-0.156c0.109-0.219,0.172,0,0.203-0.281\r\n\t\tC272,232.812,272.094,233.062,272.25,233.094z M270.828,220.875c0.062,0.031,1.906,0.031,1.203,0.562\r\n\t\tC271.484,221.906,271.062,221.688,270.828,220.875z M266.5,218.625c0.031-0.625,0.453-1.188,0.031-1.312\r\n\t\tc0.141-0.219,0.25-0.438,0.375-0.688c0.141,0,0.25,0.375,0.438-0.062c0.234,0.125,0.328,0.312,0.641,0.406\r\n\t\tc-0.094,0.281-0.312,0.062-0.547,0.125c-0.078,0.281,0.297,0.219,0.188,0.562c0.094,0,0.172,0.031,0.234,0.062\r\n\t\tc0.469-1.5,0.109-0.062,0.594-0.625c0,0.5,0.188,0.781,0.25,1.219c0.188-0.688,0.422-1.062,0.953-1.5\r\n\t\tc0.266,0.125,0.234,0.469,0.234,0.688c0.219,0.094,0.234-0.188,0.406-0.188c-0.109,0.562,0.312,0.812,0.109,1.5\r\n\t\tc0.172,0.031,0.672,1.188,1.016,1.75c-1.188-0.344-1.062,0.438-1.203,1.094c-0.266-0.062-1.859,1.156-1.703,0.844\r\n\t\tc-0.125,0.219-0.344,0.188-0.328,0.719c-0.359-0.094-0.391,0.062-0.562,0.031c0.047-0.281,0.094-0.562,0.109-0.812\r\n\t\tc-0.5-0.125-1.531-0.531-1.172-1.5c0.391,0.281,0.516,0.312,0.984,0.438c0.078-0.25,0.469-0.75,0.453-0.656\r\n\t\tc-0.453-0.156-1.234-0.125-1.406-0.281c0.484-1.594,2.156,0.719,2.609-0.344c-0.5-0.219-0.359-0.125-0.719-0.562\r\n\t\tc-0.312,0.688-0.344-0.469-0.344-0.594c-0.156,0-0.344,0.219-0.234-0.062c-0.359,0.5-0.844,0.594-1.453,0.375\r\n\t\tC266.484,219.125,266.766,218.656,266.5,218.625z M268.953,232.844c0.094-0.531,0.469-0.5,1.031-0.531\r\n\t\tc-0.125,0.188-0.375,0.375-0.578,0.344C269.375,232.844,269.125,232.875,268.953,232.844z M270.297,233.062\r\n\t\tc-0.141,0.188-0.25,0.375-0.406,0.531c0.047-0.188,0-0.344-0.156-0.5C270.172,233.156,269.484,232.875,270.297,233.062z\r\n\t\t M267.234,233.031c-0.125,0.156-0.219,0.281-0.312,0.438c-0.094-0.094-0.219-0.188-0.328-0.25\r\n\t\tC266.875,232.656,266.922,233.031,267.234,233.031z M266.703,233.406c-0.141,0.312-0.188,0.438-0.531,0.312\r\n\t\tc0.031-0.156,0.078-0.281,0.109-0.438C266.422,233.312,266.547,233.375,266.703,233.406z M266.172,217.688\r\n\t\tc0.062,0.031,0.078,1.062,0.078,1.344C265.891,218.969,266.078,218,266.172,217.688z M264.234,234.5\r\n\t\tc-0.031,0.156-0.094,0.312-0.141,0.469c0.047,0.031,0.359-0.125,0.453-0.188c-0.062,0.656-1.125,1.219-0.969,0.531\r\n\t\tc-0.062,0.031-0.125,0.094-0.188,0.125C263.453,235.188,264.109,234.5,264.234,234.5z M263.188,235.188\r\n\t\tc-0.047,0.125-0.609,0.562-0.5,0.219C262.859,235.312,263.016,235.25,263.188,235.188z M262.453,235.312\r\n\t\tc0,0.125,0.031,0.25,0.031,0.344c-0.109-0.062-0.562,0.344-0.469-0.094C262.266,235.562,262.125,235.219,262.453,235.312z\r\n\t\t M231.297,196.539c0.062,0.688,0.781,1.375,0.5,1.906C231.453,197.727,230.922,197.18,231.297,196.539z M207.047,185.164\r\n\t\tc0.109-0.258,0.219-0.289,0.344-0.086c-0.109,0.312-0.344,0.703-0.531,0.977C206.844,185.805,207.031,185.156,207.047,185.164z\r\n\t\t M209.828,198.32c-0.812,1.125-1.219-0.25-1.406-0.438c-0.047,0.125-0.141,0.203-0.281,0.219c0.109-0.219,0.203-0.406,0.016-0.594\r\n\t\tc-0.641,0.844-1.672-0.844-1.719-1.062c-0.594,0.078-1.578-0.469-0.828-1.062c-0.656,0.422-1.406,0.125-1.812-0.375\r\n\t\tc0.656-0.625,2.406-2.391,1.438-3.156c-0.141,0.094-0.312,0.156-0.453,0.219c-0.297-0.656-0.453-2.523,0.547-1.594\r\n\t\tc0.062-0.094,2.375,3.812,0.844,2.719c-0.234,0.25,0.062,0.062-0.297,0.359c0.203,0.016,0.406,0.062,0.609,0.094\r\n\t\tc-0.062,0.109-0.156,0.172-0.281,0.172c0.25,0.188,0.5-0.125,0.156,0.312c0.031,0.031,0.656,0.312,0.281,0.656\r\n\t\tc0.25,0.156,0.125-0.094,0.375,0.281c0.203-0.266,2.375,0.938,3.078,1.438C209.984,196.633,211.328,198.977,209.828,198.32z\r\n\t\t M203.609,192.164c0.578-0.594,0.453,0.812,0.406,0.75c-0.156,0.609-0.844,0.844-1.125,1.156c-0.312-0.219-0.031-0.438-0.281-0.625\r\n\t\tC202.297,192.852,203.031,191.82,203.609,192.164z M202.828,191.945c0.469-0.5,0.188,0.016,0.625-0.094\r\n\t\tC203.344,191.961,203.094,192.133,202.828,191.945z M205.375,189.672c0.406-0.32,1.484,0.438,1.734,0.547\r\n\t\tc-0.203,0.125-0.156,0.234,0.125,0.32C206.141,191.164,206.125,190.266,205.375,189.672z M206.766,192.648\r\n\t\tc0.125-0.422,0.281-0.578,0.594-0.359c-0.094,0.172-0.203,0.375-0.312,0.531C206.953,192.758,206.875,192.711,206.766,192.648z\r\n\t\t M205.516,188.328c0.219,0.148,0.172,0.227,0.375,0.086c-0.75-0.438-0.172-1.023,0.469-1.266c0.125,0.414,0.438,1.062,0.094,1.344\r\n\t\tc0.734,1.141-0.719,0.852-1.141,0.492C205.516,188.766,205.422,188.492,205.516,188.328z M203.094,185.102\r\n\t\tc0.109-0.047,0.203-0.109,0.312-0.156c-0.141-0.125-0.203,0.047-0.328-0.094c0.891-0.906,0.203-0.094,0.062-0.32\r\n\t\tc0.469-0.523,0.312-0.328,0.719-0.484c0,0.539,0.219,0.625,0.062,1.164c0.141-0.07,0.312-0.141,0.469-0.234\r\n\t\tc-0.031,0.344,0.156,0.25-0.125,0.555c0.781,0.188,1.25,2.516-0.156,2.875c-0.094-0.664,0-2.836-0.5-2.195\r\n\t\tc-0.109-0.047-0.484-0.32-0.594-0.578c-0.016,0.062-0.031,0.102,0.125-0.031c-0.406-0.344,0.156-0.156,0.25-0.242\r\n\t\tc-0.125-0.062-0.094-0.125,0.031-0.18C203.219,184.961,203.391,185.422,203.094,185.102z M203.766,187.445\r\n\t\tc0.094,0-0.781,0.258-0.172-0.352C203.828,187.312,203.641,187.375,203.766,187.445z M202.859,189.461\r\n\t\tc0.094-0.367-0.062-0.641,0.562-0.617c-0.219,0.398-0.5,0.625-0.156,0.93c0.141-0.18,0.188-0.336,0.344-0.555\r\n\t\tc0.547,0.562-1,2.414-1.188,3.023c-0.188-0.359-0.203,0.078-0.266,0.172c-0.625-0.25-1.031-0.656-1.516-1.078\r\n\t\tc0.422-0.516,0.875-0.359,1.047-0.57c-0.422-0.242-1.141-0.297-1.391-0.578c0.219-0.25,0.469-0.359,0.625-0.516\r\n\t\tc0.125,0.109,0.297,0.266,0.438,0.391c0.188-0.633,0.344-1.258,1.031-1.258c-0.062,0.578-0.406,1.211-0.562,1.633\r\n\t\tc0.312-0.297,0.453-0.883,0.75-1.266C202.672,189.266,202.766,189.367,202.859,189.461z M201.734,192.695\r\n\t\tc-0.188,0.281-0.109-0.094-0.281,0.156C201.266,192.727,201.641,192.727,201.734,192.695z M199.625,194.711\r\n\t\tc0.344,0.266,0.156-0.109,0.453-0.047c-0.234,0.25-0.266,0.469-0.453,0.688c0.172,0,0.344,0,0.531,0\r\n\t\tc-0.328,1.062-1.984,1.812-2.953,1.094c0.625-0.781,0.281-1.297,0.375-2.234c-0.188,0.016-0.312,0.125-0.406,0.328\r\n\t\tc-0.156-0.75,0.156-1.047,0.516-1.734c0.453,0.469-0.172,0.797,0.766,1.328c0.781-0.625-0.312-1.625,1.297-1.656\r\n\t\tc-0.266,0.344,0.078,0.375,0.078,0.719c0.125-0.188,0-0.281,0.234-0.438c0.531,0.469,0.641-0.172,1.016,0.234\r\n\t\tc-0.281,0.328-1.094,0.094-0.844,0.359C201.609,193.68,199.969,194.289,199.625,194.711z M196.422,200.875\r\n\t\tc-0.531-0.25-0.438,0.031-0.781-0.469c-0.328,0.5-0.125,0.156-0.469,0.281c0.188-0.344-0.031-0.062-0.156-0.156\r\n\t\tc0.234-0.25,0.078-0.469,0.156-0.711c0.078,0.125,0.172,0.094,0.266-0.172c-0.203-0.156-0.234-0.141-0.359,0.109\r\n\t\tc-0.219-0.219-0.188-0.062,0.031-0.391c-0.094,0-0.172-0.016-0.25-0.016c0.219-0.438,0.609-0.656,1.125-0.75\r\n\t\tc0.188,0.172-0.094,0.094,0.062,0.266c0.312-0.312,0.125-0.203,0.453-0.234c0,0,0.156,1.219,0.359,1.312\r\n\t\tC196.594,200.281,196.078,200.594,196.422,200.875z M194.609,197.602c-0.719-0.562-0.25-0.281-0.531-0.844\r\n\t\tc-0.234,0.297-0.188,0.453-0.188,0.875c0.375,0.062,0.031-0.469,0.531,0.031c-0.5,0.625-0.891,0-1.281,0.406\r\n\t\tc-0.312-0.375-0.281-0.656-0.562-0.953c0.344-0.438,0.062-0.859,0.531-1.266c-0.625-0.531-1.844,0.25-2.25-0.344\r\n\t\tc-0.547,0.625-1.75-0.844-2.125-1.188c0.781,0.766-0.094-1.969-0.125-1.75c0.375-0.562,0.156-0.844,0.688-1.375\r\n\t\tc0.469,0.406,0.938,0.531,1.344,0.938c0.156,0.094,0.188,1.062,0.625,0.609c0.359,0.109,0.297-0.359,0.594-0.094\r\n\t\tc-0.188-0.5-1.375-1.859-2.156-2.195c0.344-0.391,0.656-0.773,1.016-0.133c0.328-0.281,0.453-0.219,0.766,0.141\r\n\t\tc0.281-0.344-0.406-0.648-0.625-0.445c-0.266-0.172-0.562-0.305-0.766-0.531c0.266-0.094-0.016-0.5,0.422-0.031\r\n\t\tc-0.125-0.203,0-0.281,0.156-0.328c-0.188-0.227-0.312-0.062-0.562-0.109c0.156-0.086,0.391-0.945,1.078-0.844\r\n\t\tc0.016,0.008,0.859-0.414,0.984-0.508c0.094,0.156,0.609,0.305,0.484,0.289c-0.031,0.047,0.641,0.164,0.922,0.031\r\n\t\tc1.094-0.422,0.062,1.055-0.016,0.914c-0.484,0.516-0.578,1.062-0.438,1.609c0.453-0.453,0.766-0.695,1.172-1.305\r\n\t\tc0.562,0.453-0.359,0.984,0.141,1.477c0.391-0.492,1.219-0.297,0.859,0.172c0.109,0.688-0.875,1.188-1.312,1.625\r\n\t\tc0.469-0.125,0.734-0.125,1.188-0.438c0.484,0.375,0.641,0.891,0.219,1.625c-0.234,0.469-1.031,2.859-0.188,1.906\r\n\t\tc-0.469,1.25,1.031,1.594-0.312,2.531c-0.016-0.312-0.031-0.531,0-0.844c-0.156-0.281-0.281-0.281-0.422,0.031\r\n\t\tC194.609,197.414,194.781,197.414,194.609,197.602z M194.453,198.977c-0.375-0.25,0.062-0.125-0.156-0.328\r\n\t\tC194.547,198.43,194.719,198.695,194.453,198.977z M192.422,197.617c-0.141,0.188-0.219,0.297-0.453,0.234\r\n\t\tc0.016-0.125,0.047-0.25,0.047-0.406C192.156,197.508,192.297,197.57,192.422,197.617z M194.672,184.203\r\n\t\tc0.281-0.336,0.938-0.477,1.312-0.461c-0.375,0.391-0.766,0.531-1.219,0.859C194.734,184.477,194.703,184.328,194.672,184.203z\r\n\t\t M195.703,192.508c-0.078,0.062-0.125-1.758,0.188-1.562c0.188-0.188,0.422-0.297,0.594-0.547\r\n\t\tC196.969,190.781,196,192.352,195.703,192.508z M196.297,196.523c-0.406,0.453-0.391,0.281-0.531,0.172\r\n\t\tC195.891,196.523,196.203,196.477,196.297,196.523z M196.797,187.789c-0.359-0.336-1.688,0.398-1.734-0.477\r\n\t\tc-0.094-1.078,1.312-0.109,1.438-0.016c0.234-0.219,0.547-0.172,0.828-0.297c-0.219-0.031-0.656-0.195-0.625-0.188\r\n\t\tc0.062-0.102,0.125-0.211,0.188-0.312c-0.219,0.195-0.172,0.039-0.156-0.133c-1.5,0.258,0.047-0.555-0.312-1.008\r\n\t\tc-0.219,0.219-0.781,1.086-1.094,0.734c0.109-0.094,0.25-0.211,0.344-0.336c-0.188-0.188-0.188-0.117-0.188-0.062\r\n\t\tc0-0.047-0.016-0.078-0.094-0.211c-0.062,0.117-0.375,0.016-0.469-0.031c0.422-0.398,0.062-0.492,1-0.367\r\n\t\tc-0.062-0.125-0.281-0.18-0.438-0.211c0.062-0.086,0.125-0.18,0.188-0.273c0.203,0.109,0.25,0.203,0.469,0.25\r\n\t\tc0.031-0.031,0.516-0.484,0.578-0.562c-0.328,0.344,0.297,0.133,0.453,0.234c-0.062,0.102-0.125,0.188-0.172,0.281\r\n\t\tc0.109-0.117,0.688,2.109,1.172,2.523c0.594-0.641,0.938-1.547,1.594-2.055c0.062,0.055-0.5,1.297-0.156,1.672\r\n\t\tc-0.281,0.289-0.266,0.32-0.562,0.547c-0.031-0.086,0.203,0.297,0.219,0.492c0.266-0.258,0.469-0.43,0.688-0.719\r\n\t\tc0.438,0.438-0.938,1.672-1.328,1.828C198.578,188.875,197.703,187.789,196.797,187.789z M202.438,186.047\r\n\t\tc-0.188,0.312-0.266,0.562-0.578,0.758C201.953,186.484,202.172,185.852,202.438,186.047z M201.359,188.734\r\n\t\tc0.094,0.102,0.188,0.188,0.281,0.266c-0.469,0.445-0.906,0.945-1.531,0.367c0.25-0.172,0.875-0.07,0.531-0.414\r\n\t\tc-0.312-0.32,0.312-0.164,0.531-0.141c-0.438-0.516-0.344-1.117,0.625-0.531C201.531,188.531,201.578,188.586,201.359,188.734z\r\n\t\t M201.766,188.023c-0.094-0.055-0.438-0.023-0.656-0.164c0.188-0.109,0.375-0.219,0.578-0.344\r\n\t\tC201.734,187.672,201.672,187.773,201.766,188.023z M200.703,183.289c0.188-0.148,0.344-0.398,0.531-0.148\r\n\t\tC201.609,182.789,202.156,184.453,200.703,183.289z M200.266,183.32c-0.016-0.523-0.281-0.555-0.406-0.875\r\n\t\tC200.734,182.359,201.344,182.906,200.266,183.32z M199.062,182.117c0.578,0.32,0.359,0.781-0.391,0.727\r\n\t\tC198.797,182.75,198.859,182.383,199.062,182.117z M199.859,183.594c0.656-0.102,0.703,0.18,1.094,0.609\r\n\t\tc-0.25-0.008-0.594,0.078-0.844,0.07c-0.188,0.812-0.641,0.711-1.25,0.477C197.984,184.383,199.297,182.688,199.859,183.594z\r\n\t\t M193.922,181.977c0.719-0.922,1.062-0.031,1.875-0.844c0.219,0.234,2.188,0.555,2.25,0.594c1.219,0.266,0.016,1.164-0.531,1.547\r\n\t\tc-0.047-0.203-0.062-0.398-0.094-0.578c-0.406,0.484-0.812,0.641-1.391,0.656c0.312-0.398,0.266-0.477,0.812-0.805\r\n\t\tc-0.297-0.273-1.109,0.195-1.484,0.562c0.047-0.125,0.125-0.391,0.062-0.43c-0.266,0.328-0.469,0.727-0.906,0.422\r\n\t\tc0.188-0.203,0.297-0.492,0.438-0.711c-0.406,0.422-0.688,0.438-1.125-0.086C193.875,182.25,194.016,182.055,193.922,181.977z\r\n\t\t M191.344,183.883c0.422-0.109,1.016,0.156,1.266,0.477c0.594-0.438,0.625,1.562,0.594,1.578c0-0.023,0.75,0.781,0.672,0.734\r\n\t\tc0.031,0.297-0.172,0.469-0.109,0.719c0.203,0.781-1.031-0.125-1.312,0.094c-0.406-0.32-1.109,0.352-1.312,0.031\r\n\t\tc-1.5,0.5-0.656,0.906-1.781,0.188c-0.453,0.508-1.422,0.219-0.922-0.344C188.578,186.516,190.672,184.047,191.344,183.883z\r\n\t\t M170.25,178.727c0.016-0.039-0.047-0.297,0.297-0.445c0.125,0.414,0,1.008-0.266,1.555c0-0.258-0.391,0.258-0.344,0.203\r\n\t\tC169.953,180.086,170.234,178.844,170.25,178.727z M167.594,183.414c0.078,0.32,0.156,0.391,0.328,0.164\r\n\t\tc-0.156,0.5-0.359,0.5-0.469,0.727C167.344,183.891,167.453,183.766,167.594,183.414z M162.984,190.219\r\n\t\tc0.438-0.391,0.344,0.039,0.297,0.398c-0.047-0.133-0.547-0.141-0.625-0.156C162.766,190.383,162.875,190.297,162.984,190.219z\r\n\t\t M161.766,190.344c0.156,0.172,0.234,0.234-0.375,0.438C161.562,190.773,161.578,190.594,161.766,190.344z M159,187.445\r\n\t\tc-0.297,0.281,0.109-0.344,0.156-0.438C159.109,187.164,159.047,187.305,159,187.445z M160.109,188.961\r\n\t\tc0-0.227-0.156,0.227-0.234,0.031C159.922,188.938,160.406,188.656,160.109,188.961z M174.328,327.594\r\n\t\tc0.141,0.188,0.344,0.406,0.344,0.656c-0.031-0.062-0.094-0.156-0.141-0.25c0.047,0.125,0.016,0.156-0.078,0\r\n\t\tc0.062,0.125,0.094,0.219,0.156,0.281c-0.219-0.156-0.266-0.188-0.172-0.031C174.25,328.188,173.859,327.406,174.328,327.594z\r\n\t\t M178.859,333.562c-0.125-0.438-0.406-0.625-0.719-0.781c0.188,0.281,0.312,0.281,0.438,0.594\r\n\t\tc-0.344-0.375-0.469-0.375-0.344-0.062c-0.25-0.188-0.5-0.438-0.688-0.656c0.125,0.094,0.125,0.094,0.062-0.031\r\n\t\tc0.125,0.125,0.281,0.188,0.469,0.188c-0.188-0.062-0.703-0.531-0.422-0.312c-0.203-0.156-0.578-0.531-0.828-0.656\r\n\t\tc0.25,0.156-0.234-0.219-0.344-0.375c0.125,0.062,0.312,0.156,0.469,0.219c-0.016-0.062-0.125-0.188-0.234-0.312\r\n\t\tc0.109,0.094,0.203,0.125,0.078-0.188c0.234,0.125,0.453,0.656,0.484,0.781c0.078,0,0.078-0.062,0.031-0.125\r\n\t\tc0.156,0.062,0.344,0.406,0.516,0.469c-0.344-0.375-0.5-0.688-0.75-1.031c0.156,0.156,0.234,0.062,0.375,0.188\r\n\t\tc-0.109-0.5-0.578-0.469-0.688-0.906c0.625,0.219,1.281,0.594,1.188,0.969c0.656,0.5,1.719,1.938,2.125,2.438\r\n\t\tC179.453,333.625,179.312,333.281,178.859,333.562z M180.516,334.094c0.094,0,0.109-0.062,0.062-0.125\r\n\t\tc0.188,0.125,0.344,0.438,0.391,0.469C180.797,334.344,180.547,334.312,180.516,334.094z M181.781,333.156\r\n\t\tc0.109,0.062,0.203,0.062,0.281,0c-0.047-0.156-0.172-0.156-0.078-0.406c0.141,0.25,0.344,0.438,0.641,0.5\r\n\t\tc-0.141,0.094-0.203,0.031-0.312,0.219C182.266,333.312,181.953,333.344,181.781,333.156z M183.219,334.125\r\n\t\tc-0.297-0.062-0.609-0.156-0.672-0.469c0.125,0,0.234,0,0.344-0.031c-0.031-0.062-0.094-0.156-0.141-0.25\r\n\t\tc0.328,0.125,0.453,0.156,0.672,0.469c0-0.25,0.453,0.281,0.234,0.219c-0.359-0.188-0.172,0.125-0.625-0.281\r\n\t\tC183.078,333.906,183.141,334.031,183.219,334.125z M185.797,320.469c0.375,0.094,0.453,0.188,0.234,0.25\r\n\t\tC185.812,320.562,185.797,320.906,185.797,320.469z M200.062,242.125c-0.234-0.156-0.328-0.031-0.328,0.344\r\n\t\tc-1.047-0.5,0.344-0.688,0.391-0.875c0.078,0.219,0.203,0.281,0.109,0.469C199.672,241.594,200.156,242.031,200.062,242.125z\r\n\t\t M200.031,240.812c-0.203,0.375-0.766,0.719-1.109,1.406c-0.875-0.5,0.906-1.5,1-1.875c0.156,0.156,0.438,0.25,0.609,0.375\r\n\t\tC200.484,241.094,200.297,241.125,200.031,240.812z M199.234,235.438c0.453,0.438,0.781,0.969,0.938,1.5\r\n\t\tc-0.094,0.219,0.281,0.375,0.094,0.781C199.672,237.469,199.016,235.938,199.234,235.438z M203.609,242.469\r\n\t\tc0.062-0.156,0.094-0.312,0.094-0.5C204.141,242.281,203.766,242.156,203.609,242.469z M206.266,242.469\r\n\t\tc0.094,0.062-0.188,1.031-0.906,1c0.266-0.469,0.062-0.281,0.156-0.688c-0.188,0.156-0.281,0.438-0.453,0.344\r\n\t\tc0.297-0.562,0.266-0.562,0.453-1.031c-0.266-0.156-0.719,0.25-0.75,0.281c-0.219-0.062-0.375,0-0.656,0.031\r\n\t\tc0.359-0.219,0.562-0.438,0.906-0.594c-0.188-0.125-0.375-0.031-0.625,0c0.125-0.219-1.812-1.781-2.719-1.562\r\n\t\tc0.094-0.156-0.047-0.312-0.031-0.562c0.375,0.219,0.688-0.312,0.969-0.375c-0.438-0.281-0.375-0.188-0.234-0.531\r\n\t\tc0.422,0.281,0.078,0.125,0.297,0.375c0-0.125,0-0.25,0.016-0.375c0.109,0.125,0.172,0.094,0.188-0.094\r\n\t\tc0.109,0.156,0.203,0.25,0.328,0.375c0.188-0.938,1.406-2.875,2.609-2.219c-0.344,0.562-1.312,1.312-1.688,1.844\r\n\t\tc0.078,0.031,1.422-0.312,0.438,0.406c0.297,0.188,0.234,0.438,0.469,0.656c0.219-0.406,0.203,0.031,0.719-0.156\r\n\t\tc-0.047,0.125-0.109,0.188-0.266,0.219c0.531,0.312,0.547-0.344,0.688,0.188c0.047,0.25-0.281,0.688-0.531,0.469\r\n\t\tc0.031,0.438,0.281,0.5,0.031,0.906c0.344-0.031,0.469,0.031,0.812-0.062c-0.266,0.5-1.312,1-0.562,1.312\r\n\t\tc0.281-0.312,0.422-0.312,0.672-0.531C206.484,242.219,206.375,242.344,206.266,242.469z M206.453,235.156\r\n\t\tc0.766,0.781-2.719,1.188-2.375,0.719c-0.75,0.188-1.641,1.5-2.5,0.375c-0.062,0.156-1.469-0.5-2.188-1.125\r\n\t\tc0.281-0.594-2.75-0.719-3.156,0.125c-0.531-0.438-0.906,0.531-1.406,0.062c-0.125,0.188-0.062,0.281,0.156,0.312\r\n\t\tc-0.438,0.281-0.875,0.562-1.094,1c1-0.812,5.531-2.188,4.938,0.25c-0.062-0.094-0.125-0.188-0.172-0.312\r\n\t\tc-0.141,0.312-0.125,0.469-0.234,0.812c-0.062-0.062-0.25-0.156-0.359-0.219c-0.328,0.781-0.672,0.438-0.672-0.188\r\n\t\tc-0.062,0.156-0.188,0.188-0.344,0.125c-0.125,0.344,0,0.281-0.094,0.5c0.25,0.188,0.531,0.344,0.859,0.406\r\n\t\tc-0.047,0.125-0.297,0.656-0.344,0.688c-0.078-0.094-0.172-0.094-0.297,0c0.125,0.062,0.234,0.156,0.344,0.219\r\n\t\tc-0.219,0.594-0.906,1.188,0.125,1.375c-0.047,0.125-0.094,0.25-0.156,0.344c-0.406-0.312-0.125-0.094-0.344,0.125\r\n\t\tc0.578,0.281,0.453,1.125,1.562,0.594c-0.062,0.281-0.156,0.688-0.203,0.781c-0.125-0.062-1.922,0.469-1.891,0.375\r\n\t\tc-0.031-0.125-0.062-0.281-0.109-0.406c-0.266,0.406-0.672,0.531-1.328,0.875c0.062-0.125,0.125-0.312,0.125-0.312\r\n\t\tc-0.172-0.188-0.203,0.094-0.375,0.156c-0.906-1.562,1.344-2.188,1.656-1.281c0.281-0.375,0.625-0.031,0.781-0.281\r\n\t\tc-0.344-0.094-0.703-0.281-1.031-0.406c0.125-0.312,0.25-0.625,0.531-0.469c0.062-0.25-0.094-0.281-0.25-0.5\r\n\t\tc-0.281,0.281-0.688,0.469-0.953,0.75c0.109-0.156,0.109-0.25,0.219-0.469c-0.156-0.156-0.859,0.031-0.359,0.375\r\n\t\tc-0.469-0.188-0.297,0.156-0.812-0.531c-0.188,0.875-0.578,0.531-0.781,1.031c-0.078-0.156-0.156-0.344-0.219-0.5\r\n\t\tc-0.062,0.094-0.094,0.188-0.141,0.281c-0.203-0.156-0.047-0.219-0.094-0.469c-0.297,0.75-0.875,0.531-1.109,0.094\r\n\t\tc-0.672,0.625-1.688,1.031-1.125,2.094c-0.281-0.156-0.281-0.062-0.531-0.125c0.078-0.281,0.281-0.25-0.109-0.438\r\n\t\tc-0.078,0.156-0.141,0.156-0.203,0.406c-0.719-0.469-1.422-0.594-2.031-0.156c-0.047,0.125-1.078,2.531-1.594,0.844\r\n\t\tc-0.125,0.719-0.5,1.406-0.656,1.812c-1.75-0.531,0.344-1.688,0.562-2.281c-0.109-0.062-0.406,0.094-0.812-0.188\r\n\t\tc-0.094,0.312-0.656,1.5-0.906,1.312c0.125,0.625,0.125,0.719,0,1.375c-0.938-0.688,0,0.688,0,0.75\r\n\t\tc-0.125,0.406-0.594,0.25-0.719,0.625c0.281,0.219,0.219,0.562,0.344,0.625c-0.125,0.031-0.266,0.094-0.391,0.125\r\n\t\tc0.203-0.219-0.125-0.469-0.328-0.625c-0.062,0.281,0.031,0.375,0.062,0.625c-0.344-0.125-0.016,0.25-0.406-0.094\r\n\t\tc-0.094,0.812-1.219,1.156-1.781,0.656c-0.172,0.281-3.719,1.688-2.703,2.688c-0.359,1.031-0.109,1.875-0.453,2.688\r\n\t\tc-0.391,1.062-0.625,1.656-0.984,2.719c-0.672-0.406-0.422-3.25,0.016-3.594c-0.25-0.219-0.219-0.062-0.438,0.062\r\n\t\tc0.656-1.625,0.156-1.594,0.188-3.094c-0.906,0.375-1.219-1.406-1.5-1.906c-0.094,0.312-0.266,0-0.406,0.281\r\n\t\tc-0.281-0.188,0.156-0.5-0.156-0.656c-0.062,0.25-1.156-0.344-1.328-0.5c0.531,0.594,0.359,1.094,0.141,1.688\r\n\t\tc-0.125-0.062-0.312-1-0.422-1.312c-0.125,0.312-0.234,0.281-0.328,0.531c-0.594-0.438-0.391-0.312-0.25-0.812\r\n\t\tc-0.328-0.219-0.688-0.125-0.406-0.656c-0.344-0.031-0.688-0.312-0.922-0.75c-0.172,0.562-0.641-0.156-0.703-0.219\r\n\t\tc-0.125,0.344-5.172,0.281-5.422,0.594c0.094-0.125-5.656-0.062-5.656-0.219c0,0.156,0,0.281,0,0.406\r\n\t\tc0-0.844,2.562,4.375,1.938,5.469c-0.406,0.656,1.516,2.75,2.266,3.312c0.094,0.656,1.047,2,1.578,2.531\r\n\t\tc0.656,0.562,2.109,0.125,2.234,0.938c-0.047,0.125,1.875-1.062,1.734-1.156c0.734-0.594,0.828-1.062,1.891-0.625\r\n\t\tc1.469,0.625-0.781,2.75-0.828,3.875c-0.125-0.094-0.203-0.5-0.141-0.656c-0.328,0.375-0.344,1.094-0.516,1.625\r\n\t\tc-0.031-0.031-0.656,0.781-0.781,0.875c1.219,0.562,3.5,1.875,3.031,3.938c-0.406-0.344-1.25,2.594-1.25,3.312\r\n\t\tc0,0.656,0.609,2.531,0.688,2.312c0.203,0.5,1.234,1.062,1.391,0.469c0.844,0.656,0.656,2.875,1.375,3.219\r\n\t\tc0.125-0.438,0.484-1.188,0.906-0.906c0.062-0.438,0.406-1.75,1.047-0.875c0.797-0.906,3.688-0.031,1.75,0.438\r\n\t\tc0.516,0.344-0.297,1.531-0.266,1.844c0,0.5,0.672,0.719,0.625,0.312c-0.078-0.438-0.062-1.219,0.062-1.688\r\n\t\tc0.312,0.125,0.781,0.125,1.062,0.312c0.031-0.062-0.047-0.906-0.031-0.906c0.891,2.688,2.531,4.312,4.859,4.625\r\n\t\tc-0.125,0.281,0.078,0.438-0.484,0.031c0.047,0.688,0.25,0.844,0.719,1.312c0.062-0.312,0.328,0.188,0.125,0.562\r\n\t\tc-0.141,0.688-0.609-0.031-1.25,0.281c0.984,0.344,1.469,0.219,2.094,1.062c-0.016,0.219,0.328,0.594,0.359,0.906\r\n\t\tc0.078,0.75-0.297,0.562-0.438,1.25c0.172,0.031,0.391-0.25,0.219,0.281c0.094-0.219,0.203-0.438,0.297-0.656\r\n\t\tc0.375,0.344,0.938,0.781,0.797,1.625c-0.094-0.031,1.297,0.062,1.266,0.188c1.75,1.531,2.828,4.531,2.625,6.656\r\n\t\tc-0.156-0.031-0.297-0.062-0.438-0.094c0.219,0.312,0.078,0.312,0.031,0.562c0.141,0.031,0.344,0.031,0.438,0.062\r\n\t\tc-0.156,0.469-0.25,0.344-0.344,0.906c-0.766-0.375-0.297-0.312-0.281-0.75c-0.281-0.094-1.234,0.438-0.734,0.688\r\n\t\tc-0.484-0.094-1,1-0.453,1.469c0.312-1.219,0.734-0.812,0.844,0.156c-0.531-1.469,1.344-1.812,1.125-1.156\r\n\t\tc1,0.656,0.281,1.719-0.844,1.156c-0.031,0.156,0.625,0.562,0.75,0.688c0.062-0.312,0.406-0.281,0.609-0.125\r\n\t\tc0.031-0.25-0.141-0.188-0.203-0.438c1.156-0.531,2.219,1.031,2.031,1.656c0.031,0.031,0.453,0.031,0.594,0\r\n\t\tc-0.125,0.406-0.031,1.531,0.406,1.781c0.062-0.156,0.156-0.344,0.234-0.5c0.422,0.219,0.625,0.781,1.016,0.938\r\n\t\tc-0.031-0.062-0.094-0.125-0.125-0.219c1,0.562,3.484,2.531,3.25,4.062c2.031-0.031,1.219,3.281,1.156,4.062\r\n\t\tc-0.547,0.969-2.188,1.312-3.062,2.375c-0.156-0.156-0.266-0.312-0.406-0.469c-0.094,0.5-0.469,0.812-0.719,1.062\r\n\t\tc0.703,0.5-0.281,2.5-0.312,3.031c0.203,0.062-2.219,2.719-2.062,3.312c-0.484,0.375-1.219,0-1.25,0.125\r\n\t\tc-0.484-0.219-1.094-0.25-1.297-0.406c0.016,0.125,0.062,0.281,0.094,0.406c-0.797-0.312-0.562-0.031-1.188-0.312\r\n\t\tc-0.016,0.188-1.266,0.469-1.719,0.188c-0.031,0.344-0.141,2.844-0.297,2.781c0-0.062-1.469,1.625-1.406,1.656\r\n\t\tc0-0.438,0.719-0.531-0.109-1.156c-0.391,0.625-1.469,1.531-1.469,2.094c-0.016,0-1.094,0-1.516-0.312\r\n\t\tc-0.859-0.406-1.469-1.438-1.469-2.438c-0.344,1-0.062,1.562,0.516,2.375c0.812,1.156,0.109,1.344,0.109,2.25\r\n\t\tc-0.172-0.156-0.328-0.094-0.328,0.031c-0.359-0.312-2.109-0.75-2.156-0.75c-0.141-0.125-0.25-0.375-0.453-0.469\r\n\t\tc0.109,0.781,0.188,0.875,0.266,1.688c-0.234,0.125-0.344-0.375-0.297,0.156c-0.188-0.219-0.25-0.25-0.219-0.062\r\n\t\tc-0.312-0.344-0.625-0.688-0.938-0.938c-0.094,0.125-0.094,0.188-0.047,0.375c-0.062-0.094-0.141-0.125-0.234-0.031\r\n\t\tc0.375,0.375,0.469,0.719,0.875,1.219c-0.078-0.5,0.344,0.156,0.344,0.438c-0.266-0.125-0.609-0.281-0.844-0.562\r\n\t\tc0,0.062,0.281,0.25,0.438,0.406c-0.562-0.031-0.625,0.312-0.375,0.938c-0.391-0.156-0.172,0.219-0.125,0.375\r\n\t\tc-2.047-1.188,0.016,2-0.031,2.062c0.094,0.062,0.312,0.219,0.344,0.281c-0.484,0.031-0.688,0.125-1.016,0.438\r\n\t\tc0.25,0.188,0.203,0.25,0.297,0.531c-0.281-0.188-0.359-0.156-0.641-0.469c0.016,0.188,0.062,0.344,0.234,0.562\r\n\t\tc-0.188-0.094-0.125-0.031-0.281-0.094c0.141,0.312,0.094,0.406-0.109,0.281c0.062,0.062,0.578,0.656,0.188,0.5\r\n\t\tc0.25,0.281-8.328,0.438-8.141,0.719c-0.172-0.125-9.203-0.25-9.203-0.406c0,0.094,0,0.156,0,0.25c0-0.125,8.219-0.281,7.969-0.375\r\n\t\tc0.125,0.594,4.344,0.125,4.469,0.719c-0.25-0.219,1.594-0.438,1.391-0.75c0.125,0.312,1.047,0.281,1.359,0.438\r\n\t\tc-0.062,0.062,0.422,0.062,0.375-0.031c0.062,0.156,0.469,0.25,0.562,0.406c-0.516-0.219-0.672-0.719-0.703-1.156\r\n\t\tc0.047,0.156,0.188,0.219,0.281,0.125c-0.375-0.188-0.453-0.688-0.562-1c0.188,0.094,0.234,0.219,0.422,0.281\r\n\t\tc-0.125-0.406-0.328-0.406-0.656-0.625c0.047,0.219,0.203,0.5,0.281,0.688c-0.172-0.062-0.266-0.281-0.422-0.344\r\n\t\tc0,0.062,0.047,0.125,0.094,0.188c-0.25-0.312-0.5-0.688-0.688-1.031c0.312,0.156,0.5,0.281,0.734,0.5\r\n\t\tc-0.062-0.094-0.141-0.219-0.234-0.312c0.094,0.094,0.219,0.188,0.297,0.312c-0.109-0.219-0.078-0.25,0.047-0.156\r\n\t\tc-0.062-0.25-0.203-0.344-0.328-0.625c0.094,0.062,0.172,0.094,0.266,0.125c-0.125-0.125-0.438-0.688-0.266-0.438\r\n\t\tc-0.016-0.031-0.703-1.031-0.172-0.781c0-0.062,0.016-0.156,0.031-0.219c-0.078-0.062-0.156-0.094-0.219-0.156\r\n\t\tc0.062,0.312,0.031,0.25-0.062,0.156c-0.031-0.031-0.062-0.062-0.094-0.062c0.031,0.125,0.062,0.281,0.094,0.438\r\n\t\tc-0.109-0.156-0.125-0.156-0.062,0.031c-0.125-0.062-0.25-0.188-0.312-0.219c0.266,0.125,0.125,0.344,0.109,0.469\r\n\t\tc-0.297-0.75-0.438-1.281-0.547-2c0.031,0.312,0.062,0,0.062-0.125c0.438,0.281,0.594,1,0.75,1.469\r\n\t\tc-0.062-0.469-0.219-0.906-0.312-1.375c0.062,0.062,0.125,0.125,0.203,0.188c-0.172-0.969-0.859-0.938-1.016-1.906\r\n\t\tc0.156,0.062,0.281,0.094,0.406,0.156c-0.031-0.125-0.109-0.125-0.141-0.25c0.578,0.438-0.078-0.188,0.281,0.094\r\n\t\tc-0.094-0.156-0.172-0.312-0.266-0.469c0.078,0.094,0.188,0.062,0.156-0.062c0.125,0.125,0.562,0.625,0.062,0.312\r\n\t\tc0.062,0.156,0.266,0.312,0.359,0.5c-0.297-0.156-0.234-0.062-0.516,0.031c0.188,0.188,0.5,0.375,0.719,0.469\r\n\t\tc-0.125-0.562-0.469-1.656-0.094-1.438c-0.203-0.281-0.156-0.25,0.125-0.281c-0.156-0.312-0.156-0.594-0.234-0.875\r\n\t\tc-0.047-0.5,0.141-0.938-0.453-1.188c-0.312-1.188,0-1.375-0.219-2.406c0-1.406,0.438-2.438,0.375-3.562\r\n\t\tc0.188-1.25,0.281-3.188,0.281-4.719c0.156-1.312,1-4.156,0.766-5.656c-0.422-2.438,0.031-3.062-1.328-4.938\r\n\t\tc-0.656-0.625-1.969-2.469-1.812-3.406c-0.281-0.25-0.172-3.844-0.688-4c0.219-1.375-0.625-4-1.422-5.188\r\n\t\tc-0.859-1.188,1.031-2.969,0.953-3.031c-0.031,0.156-0.141,0.156-0.281,0.25c-0.125-0.25-0.266-0.5-0.391-0.75\r\n\t\tc0.422,0.344,0.188-1.75,0.719-1.219c0.172-0.688,0.297-1.062,0.484-1.812c0.469,0.25,0.625-0.531,1.078-0.188\r\n\t\tc-0.328-1.125,0.578-0.344,0.703-0.844c0.172,0.188,0.531-1.219,0.625-1.594c0.156-0.781,0.312-0.875,0.5-1.656\r\n\t\tc0.016-0.062-0.938-2.312-0.031-1.562c0.062-0.25-0.531-1.125-0.656-1.719c-0.094,0.344-0.703,0.406-0.891,0.312\r\n\t\tc0.141,0.281,0.078,0.5,0.188,0.781c-0.203,0.031-0.172-0.094-0.297,0.156c-0.312-0.219-1.375-2.156-1.5-2.656\r\n\t\tc0.031,0.312-0.031,0.406-0.188,0.219c-0.016-0.125-0.031-0.25-0.031-0.375c0.344,0.156-0.344-1.656-0.438-1.906\r\n\t\tc-0.312,1.25-0.406-0.438-0.125-0.594c0-1.469-0.172-3.281-0.844-3.969c-1.672-1.812-1.25-3.906-2.734-5.812\r\n\t\tc-0.156,0.375-0.719-0.688-0.844-0.125c-1.031-1.719-2.016-3.531-2.906-5.469c-0.953-2.031,0.25-4,0.266-6.062\r\n\t\tc0.031-4.375-0.594-8.125,0.406-12.469c-0.156-0.094-0.312-0.125-0.375,0.062c-0.062-0.188-0.156-0.562-0.281-0.719\r\n\t\tc-0.969,1.5-0.547,4.125-0.75,5.906c0.328,0.594-0.531,4.625-0.75,5.312c-0.516-0.625,0.359-3.094-0.016-3.656\r\n\t\tc0.422-1.25-0.078-2.406-0.203-3.719c0.891,1.031,0.688-2.062,0.703-2.781c0.016-1.031,0.234-2.531,0.703-3.281\r\n\t\tc-0.234-0.281-0.562-2.938-0.547-3c0.203-0.344,0.422-3.031,0.672-2.75c0.125-0.25,0.062-0.875,0.062-1.25\r\n\t\tc0.109,0.125,0.078,0.25,0.156,0.375c0.172-0.281,0.312-1.406,0-0.625c-0.812-1,1.531-4.75,2.016-5.656\r\n\t\tc1.547-2.656,2.109-3.875,3.422-6.375c0.219,0.812,0.531,0.812,0.594,1.25c0.016-0.031,0.031-0.031,0.031-0.062\r\n\t\tc-0.094,0.094-0.109,0.188,0,0.25c0-0.062-0.031-0.125-0.031-0.188c-0.125,0.219-0.344,0.438-0.156,0.656\r\n\t\tc0.641-1.094,0.594-1.969,1.047-2.969c-0.547,0.062-0.359-0.906-0.062-1.5c-0.859,0-0.266-0.75-0.891-1.062\r\n\t\tc0.031,0.688,0.328,1.312,0.422,1.938c-0.281,0.406-0.062,1.875-0.203,2.562c-1.125-0.938,0.109-2.094-0.719-2.719\r\n\t\tc0.469-0.656-0.375-1.094,0.312-2.031c0.062,0.094,0.125,0.156,0.188,0.25c0.406-0.625,1.484-1.656,0.781-2.188\r\n\t\tc0.156-0.188,0.219-0.438,0.438-0.656c0.016,0.094,0.031,0.188,0.031,0.281c0.25-0.406,0.141-0.375,0.391-0.719\r\n\t\tc0.047,0.031-0.188,0-0.297-0.062c-0.094,0.156-0.141,0.188-0.281,0.281c0.109-0.188,0.688-1.594,0.641-1.625\r\n\t\tc-0.047-0.062,0.859-0.688,0.922-0.781c-0.141,0.062-0.375,0.219-0.531,0.281c-0.094-0.125,0.062-0.594,0.141-0.844\r\n\t\tc0.391,0.562,0.297-0.188,0.406-0.438c-0.047,0.125-0.078,0.219-0.109,0.344c-0.062-0.094-0.141-0.125-0.25-0.094\r\n\t\tc0.125-0.625,0.25-0.906,0.688-1.562c-0.5,0.781,0.406-1.062-0.156-0.219c0.062,0.094,1.172-3.289,1.406-3.742\r\n\t\tc-0.188,0.219-0.375,0.484-0.562,0.719c-0.062-0.062-0.234-0.5-0.281-0.609c0.062-0.078,0.031,2.109-0.469,1.438\r\n\t\tc-0.156,0.516-0.531,1.328-0.328,1.602c0.172-0.352,0.359-0.398,0.516-0.555c-0.469,0.523-0.219,0.805-0.906,1.055\r\n\t\tc-0.031-0.031,0.234-0.688,0.312-0.852c-0.109,0.164-0.188,0.195-0.312,0.289c0.141-0.711,0.438-1.352,0.844-1.852\r\n\t\tc-0.062,0.062-0.156,0.109-0.234,0.172c0.188-0.531,1.016-3.344,0.953-3.422c-0.047,0.094-0.094,0.203-0.156,0.297\r\n\t\tc0.016-0.594-0.062-0.703,0.297-1.156c-0.984-0.766-0.453-2.266-1.016-3.062c0.312-0.312,0.125-0.727,0.344-0.898\r\n\t\tc0.156,0.227,0.156-0.102,0.344-0.289c-0.047-0.18-0.281-0.156-0.375-0.031c-0.156-0.32,0.094-0.117-0.156-0.555\r\n\t\tc-0.438,0.57-0.391,0.859-0.969,1.305c0.016-0.336,0.031-0.477-0.031-0.711c-0.125,0.109-0.25,0.211-0.359,0.297\r\n\t\tc-0.047-0.07-0.047-0.133,0.078-0.18c-0.359,0.156-0.469,0.172-0.938,0.422c0-0.086,0.016-0.18,0.031-0.273\r\n\t\tc-0.188,0.188-0.141,0.07-0.281-0.156c0.688-0.414,1.188-1.406,2.031-1.547c0.156,0.32-0.156,0.117,0.125,0.547\r\n\t\tc0.25-0.273,0.281-0.422,0.5-0.586c-0.031-0.102-0.25-0.023-0.391-0.117c0.156-0.164,0.016-0.133,0.172-0.32\r\n\t\tc-0.594,0.133-1.281,0.336-1.625,0.742c-0.062-0.219,0.031-0.18,0-0.352c-0.406,0.484-2.219,1.742-2.312,1.5\r\n\t\tc-0.672,0.844-1.859,0.234-2.5,0.969c0-0.078,0.016-0.164,0.031-0.25c-0.25,0.102-0.688,0.125-0.781,0.234\r\n\t\tc0-0.094,0.031-0.188,0.031-0.289c-0.25,0.352-0.016-0.391-0.062-0.477c-0.125,0.273-0.453,0.367-0.766,0.641\r\n\t\tc-0.031-0.07-0.109-0.336-0.125-0.359c0.375-0.289,0.578-0.117,0.953-0.539c0.031,0.195,0.188,0.492,0.25,0.641\r\n\t\tc0.625-0.664,0.875-0.195,1.672-0.656c0.375-0.508,1.141-1.039,1.734-1.312c-0.062-0.164-0.344-0.148-0.531-0.195\r\n\t\tc0.078-0.125,0.172-0.25,0.281-0.375c-0.156-0.188-0.406,0.18-0.5,0.289c-0.047-0.242,0.297-0.977,0.406-1.227\r\n\t\tc-0.203,0-0.594-0.039-0.75-0.023c0.031-0.055,1.438-1.602,1.281-2.023c-0.188,0.203-0.281,0.227-0.438,0.391\r\n\t\tc-0.203-0.461,0.156-1.016,0.562-1.305c0.125-0.156,0.312-0.148,0.438-0.305c-0.297-0.938,0.281-1.445,1.375-1.961\r\n\t\tc-0.047,0.117-0.156,0.367-0.141,0.438c0.234-0.43,0.547-0.656,0.859-0.93c-0.094,0.219-0.188,0.648-0.141,0.836\r\n\t\tc0.953,0.391,1.469-0.391,1.938-1.273c-0.109,0.078-0.266-0.086-0.609-0.031c0.156-0.227,0.188-0.516,0.312-0.727\r\n\t\tc-0.281,0.305-0.25-0.531-0.531-0.273c0-0.297,0.516-1.695,0.594-1.25c0.359-0.312,0.219-0.492,0.062-0.766\r\n\t\tc0.406-0.43,0.594-0.008,0.828-0.188c-0.125,0.109-0.125,0.234-0.016,0.367c0.578-0.562,0.453,0.016,0.781-0.258\r\n\t\tc0.266,0.719-0.922,0.891-0.203,1.891c0.188-0.25,0.047-0.5,0.234-0.633c0.062,0.055,0.141,0.109,0.219,0.172\r\n\t\tc-0.156,0.062-0.172,0.188-0.031,0.328c0.25-0.234,0.594-1.406,0.609-1.57c-0.109-0.141-0.203-0.133-0.297,0.016\r\n\t\tc-0.172-0.531,1.062-2.586,1.562-2.898c0.328,0.891,0.719,0.469,0.875,0.703c0.719-0.922,2.062-0.523,2.25-0.688\r\n\t\tc0.031,0.188-0.312,0.414,0.188,0.008c0.047,0.102,0.469,0.945,0.812,0.414c0.188,0.562,0,0.555-0.344,1\r\n\t\tc0.156-0.008,0.453-0.086,0.5,0.008c-0.281,0.234-0.219,0.227-0.266,0.531c0.344-0.289,0.078,0.336,0.359,0.047\r\n\t\tc-0.047,0.289,0.156,1.352-0.062,1.523c0.5,0.18,1.031,1.945,0.953,2.906c0.141-0.062,0.297-0.117,0.453-0.188\r\n\t\tc0.047,0.195,0.406,1.977,0.312,2.227c-0.062,0.195-0.312,2.578-0.25,2.625c0.281-0.289,0.344-0.555,0.438-0.969\r\n\t\tc0.281,0.352-0.125,0.75,0.5,0.109c-0.016,0.094-0.031,0.18-0.031,0.266c0.188-0.195,0.422-0.312,0.609-0.516\r\n\t\tc0.047,0.109-0.141,0.594-0.234,0.734c0.562-0.125,0.984-0.133,1.219,0.305c0.219-0.133,0.438-0.273,0.656-0.414\r\n\t\tc0.562,0.977-0.25,0.484-0.625,0.992c0.469,0.562,1.562-0.359,2.094-0.672c-0.188,0.656-1.094,3.062-0.75,3.547\r\n\t\tc0.359-0.469,0.719-0.508,1.078-0.938c-0.203,0.266-0.406,0.664-0.766,1.094c0.188,0.289,0.625,0.008,0.75-0.133\r\n\t\tc0.656,0.75,0.062,3.219,1,3.938c0.031-0.125,0.062-0.25,0.078-0.375c0.359,0.375,0.578,1.031,0.141,1.5\r\n\t\tc-0.375-0.344-1.344,0.031-0.844,0.531c-0.172,0.125,0.453,0.5,0.625,0.625c-0.031-0.031,0.719,0.594,1.094,0.219\r\n\t\tc0.531,0.531,0,1.219-0.406,1.594c0.094,0.125,0.188,0.156,0.281,0.125c-0.156,0.297-0.281,0.594-0.344,0.938\r\n\t\tc0.609-0.344,0.641-1.109,1.297-1.422c0.078,0.078,1.422,0.141,1.609-0.016c-0.062-0.125-0.031-0.219-0.109-0.344\r\n\t\tc-0.406,0.406-0.781-0.141-1-0.281c-0.109,0.141-0.203,0.281-0.297,0.406c-0.031-0.047,0.031-0.609-0.219-0.219\r\n\t\tc0.312-0.531,0.922-0.844,1.25-0.391c0.578-0.734,0.469,1.453,0.422,1.766c0.141-0.031,0.234-0.094,0.297-0.219\r\n\t\tc-0.156,0.312-0.094,0.344-0.344,0.578c0.062,0.047,0.438,0.141,0.531,0.047c-0.016,0.469,0.219,1.219,0.266,1.523\r\n\t\tc0.703-0.18,1.219,0.625,1.672,1c0.219-0.5,0.562-0.688,0.797-1c-0.047,0.406,0.062,0.562-0.078,1\r\n\t\tc0.281,0.219,0.156,0.062,0.438-0.062c-0.062,0.188-0.188,0.281-0.375,0.312c0.062,0.094,0.156,0.094,0.25,0.031\r\n\t\tc-0.531,0.781-0.406,1.156-0.734,1.906c0.25-0.031,0.297,0.188,0.453-0.062c-0.594-0.469,0.5-1.031,0.719-1.281\r\n\t\tc0.234,0.031,1.344,0.219,1.734-0.281c-0.156-0.125-0.359-0.125-0.547-0.219c0.219-0.344,0.562-0.594,0.875-0.75\r\n\t\tc0.094,0.094-0.031,0.312,0.25,0.406c0.25-0.344,0.375-0.281,0.594-0.562c-0.281-0.406-0.828-0.156-0.75-1.211\r\n\t\tc-0.141,0.172-0.266,0.328-0.391,0.5c-0.094-0.172,0.109-0.312-0.25-0.188c0.812-0.562,0.172-0.875,0.641-1.359\r\n\t\tc0.219-0.266,0.906-0.609,1.266-1.047c0.047,0.156,0.094,0.344,0.141,0.5c0.656-1.031,1.625-2.422,2.5-3.344\r\n\t\tc0.016,0.094,0.031,0.188,0.062,0.25c0.516-0.391,0.281-0.438,0.719-0.016c0.156-0.094,0.312-0.156,0.469-0.25\r\n\t\tc0.391,0.359,0.531,0.703,0.438,1.172c0.328,0.172,0.453,0.375,0.844,0.656c-0.531,0.281-1.188,1-1.781,0.656\r\n\t\tc-0.734,0.016-1.531-1.156-1.453,0.078c-0.453,0.047-0.922,0.203-1.047,0.391c0.281,0.219,0.469,2.406,0.344,2.742\r\n\t\tc-0.047-0.094,0.141,0.125,0.156,0.156c-0.438,0.312-0.312,0-0.516-0.219c-0.109,0.094-0.25,0.188-0.375,0.281\r\n\t\tc0.109,0.031,0.234,0.062,0.359,0.094c-0.266,0.406-0.906,0.25-1.016,0.469c-0.109,0.312,0.234,0.719,0.109,0.875\r\n\t\tc0.5,0.406-0.25,1.531-0.625,2c0.625,0.438,1.188-1.094,2.141-1c-0.125,0.219-0.609,1.938-1.25,1.5\r\n\t\tc-0.484,0.719-0.172,1.031-0.578,1.969c0.297,0.219,0.062,0.062,0.391,0.281c1.172-0.812,3.547-1.562,3.422-3.281\r\n\t\tc0.656,0.531,1.125,0.938,1.125,1.625c-0.078-0.062-0.375,0.344,0.297,0.625c-0.297,0.219-0.391,0.562-0.953,0.688\r\n\t\tc0.094,0.094,0.219,0.156,0.312,0.219c-0.312,0.375-0.688,0.594-0.938,1.125c-0.172,0.375,0.219,0.562-0.266,1.219\r\n\t\tc-0.141-0.188-1.938-0.312-2.203,0.188c-0.031-0.438-0.25-0.5-0.031-1.031c-0.078-0.062-0.344-0.125-0.484-0.156\r\n\t\tc0.094,0.062,0.219,1.031,0.125,1.125c-0.547-0.438-0.5-0.75-1.156-1.281c-0.219,0.281-0.547,0.812-0.828,1.188\r\n\t\tc-0.234-0.125-0.938-1.594-0.969-1.719c-0.234,0.281-0.234,0.312-0.359,0.531c-0.141-0.156-0.297-0.25-0.484-0.375\r\n\t\tc-0.125,0.188,1.188,1.406,1.531,1.562c-0.422,0.625-1.312,0.406-1.594,0.844c0-0.25-0.281-0.719-0.219-0.781\r\n\t\tc-0.344-0.188-0.953,0.281-1.188,0.719c-0.062-0.125-0.125-0.25-0.203-0.375c-0.203,0.469-0.562,1.656-1.109,0.594\r\n\t\tc-0.203,0.25-0.203,0.438-0.531,0.156c0.109,0.062,0.125,0.156,0.094,0.281c-0.531-0.438-2.031,0.844-2.656,0.781\r\n\t\tc-0.266,0.438-0.625,0.625-1.172,1.125c0.234,0.188-0.172,0.906-0.25,1.219c1.172,0.344,0.391,2-0.125,2.781\r\n\t\tc2.156-0.094,1.031,3.344,1.797,3.844c0.406,1.469,3,2.781,1.156,4.25c-0.531,0.406-0.953,1.938-0.812,2.625\r\n\t\tc0.281,1.281,1.719,1.531,1.875,0.312c0.047-0.375,0.844-2.812,1.312-2.781c0.75,0.062,2.031-0.969,2.5-0.688\r\n\t\tc0.062-0.156,0.094-0.312,0.141-0.469c-0.047,0.281-0.125,0.344-0.266,0.188c0.594-0.781,1.219-2.312,0.922-3.281\r\n\t\tc-0.484-1.594,0.922-0.844,1.578-1.656c-0.5-0.25,0.219-0.938,0.469-1.062c-0.609-0.375,0.625-0.938,0.719-0.906\r\n\t\tc0.578-0.781,0.094,9.641,1.156,10.5c0.984,0.672,2.688,13.031,1.828,13.031c0.109,0,0.203,0,0.297,0\r\n\t\tc-0.375,0,0.078-9.969,0.641-9.672c-0.047,0.188-0.156-5.141-0.312-5.297c-0.391,0.562,0.297-2.125,0.578-1.922\r\n\t\tc-0.609,0.406-1.516-0.422-1.562,0.359c0.344,0.156,0.641,0.625,0.344,1.078c0.172,0,0.344-0.578,0.5-0.391\r\n\t\tc-0.156,0.203-0.094,0.297-0.125,0.547c0.484-0.188,0.812-0.328,1.125-0.156c0.312-0.547,1.672-1.922,2.109-1.625\r\n\t\tc-0.781,1.156-0.266,1.922-0.547,2.891c-0.188-0.109-0.312-0.016-0.5,0.047c0.438,0.25,0.625,1.484-0.094,1.828\r\n\t\tc0.219,0.156,0.531,0.781,0.312,1.125c-0.281-0.312-0.031,0.031-0.688-0.406c0.062-0.062-0.156,0.562-0.188,0.625\r\n\t\tc0.094,0.125,0.188,0.125,0.312,0c-0.406,0.75,0.688,2,0.422,2.719c0.109,0.125,0.234-0.094,0.391-0.188\r\n\t\tc-0.125,0.281,0.062,0.219,0.25,0.188c-0.594,1.281,0.781,0.469,0.484,1.406c-0.578-0.344-1.656,0.312-2.531-0.156\r\n\t\tc-0.031,1.281,3.141-0.438,2.547,1.656c0.188,0.125,0.203-0.031,0.375-0.156C206.406,234.938,206.891,234.312,206.453,235.156z\r\n\t\t M197.875,239.125c-0.391,0.844-0.016,1.031,0.75,1.406c-0.281-0.156-0.016,0.188-0.016,0.344\r\n\t\tc-0.156,0.031-0.312,0.062-0.484,0.094c0.141-0.312-0.078-0.188,0.203-0.438C197.75,240.25,196.828,239.625,197.875,239.125z\r\n\t\t M189.781,242.719c-0.266,0.562-0.953-0.031-1.25-0.219C188.703,242.031,189.516,242.594,189.781,242.719z M176,274.844\r\n\t\tc0,0.188,0,0.344,0,0.562C176,275.219,176,274.688,176,274.844z M185.406,279.125c-0.141-0.594-0.734,1.688-0.141-0.594\r\n\t\tC185.484,278.625,186,279.281,185.406,279.125z M184.844,269.25c-0.672-0.062-0.875,0-0.953-0.781\r\n\t\tc0.422,0.188,0.594,0.156,0.922,0.375C184.75,269.125,184.875,269,184.844,269.25z M177.609,262.531\r\n\t\tc1.031-0.688-0.906-2.438-0.938-3.438c-0.094-1.844-2.062-1.125-2.562-1.812c0.656-0.562,1.781-0.812,2.125,0.406\r\n\t\tc0.141,0,0.219-0.094,0.219-0.219c0.969,1.156,1.5,2.406,2.062,3.656c0.094,0.219,0.562,1.219,0.844,1.594\r\n\t\tC180.609,264.344,178.297,262.812,177.609,262.531z M177.797,265.062c-0.531-0.344-0.438-0.281-0.922-0.656\r\n\t\tc-0.172-0.281-0.375-0.656-0.266-0.906C177.109,263.594,178.172,264.406,177.797,265.062z M175.469,258.281\r\n\t\tc-0.281,0.219-0.219,0.469-0.656,0.25c0.078-0.25,0.281-0.375,0.375-0.688C175.266,258,175.359,258.125,175.469,258.281z\r\n\t\t M178.484,257.406c0.203,0.062,0.734-0.25,0.406,0.5C178.75,257.719,178.625,257.562,178.484,257.406z M180.328,266.219\r\n\t\tc0.297-0.531,0.25-1.031,0.125-1.75c1.078,0.594,2.594,1.938,2.625,3.281c-0.75-0.438-1.062-0.375-1.719-1.031\r\n\t\tc-0.156,0.469-0.188,0.125-0.422,0.438c0.016,0-0.828-0.938-1.125-1.094c-0.469-0.344-0.828-0.375-0.578-0.938\r\n\t\tC179.797,265.438,180.188,265.688,180.328,266.219z M173.828,321.75c-0.156-0.125-0.172-0.062-0.094,0.125\r\n\t\tc-0.094-0.094-0.125-0.062-0.078,0.031c-0.484-0.188-0.281-0.812-0.406-1.406c0.031,0.031,0.266,0.406,0.203,0.125\r\n\t\tc0.25,0.156,0.203,0.125,0.25,0.469C173.422,320.969,173.734,321.562,173.828,321.75z M166.781,192.102\r\n\t\tc-0.141-0.5,0.016-0.688,0.266-1.141c0.188,0.172,0.188,0.172,0.266,0.234c-0.094-0.125,0.016-0.281,0.156-0.297\r\n\t\tc0.078,0.078-0.016,0.234,0.047,0.406c0.25-0.281,0,0.078,0.234-0.172c-0.016,0.25-0.047,0.719-0.297,0.969\r\n\t\tC167.344,191.945,167.016,191.836,166.781,192.102z M167.953,190.883c0.156-0.133,0.312-0.273,0.469-0.422\r\n\t\tc0.109,0.156,0.062,0.289-0.125,0.391c0.031,0.125-0.094,0.219-0.188,0.312C168.125,190.664,168.094,191.227,167.953,190.883z\r\n\t\t M168.438,205.938c0.125-0.5,0.25-1.281,0.234-1.438c0.266-0.406,0.312-0.812,0.594-1.188c0.188,0.125,0.281,0.281,0.422,0.531\r\n\t\tc-0.734,0.562-0.625,1.312-0.938,1.781C168.562,205.281,168.578,205.781,168.438,205.938z M171.297,201.156\r\n\t\tc0.031,0.031-0.75,1.938-0.906,2.125c-0.141-0.312,0.016-0.281,0.125-0.625c-0.156-0.062,0.25-0.938,0.344-1.094\r\n\t\tc-0.141-0.312-0.031-0.406,0.25-0.906c-0.047,0.375,0,0.594-0.047,0.938C171.203,201.469,171.266,201.344,171.297,201.156z\r\n\t\t M172.094,198.914c-0.234,0.328-0.203,0.531-0.609,0.484c0.328-0.422,0.578-0.859,0.719-1.359\r\n\t\tC172.625,198.57,171.953,198.664,172.094,198.914z M201.766,202.406c-0.094,0.281,0,0.469,0,0.812\r\n\t\tc-0.109,0.188-0.234,0.188-0.391-0.094C201.484,202.844,201.641,202.656,201.766,202.406z M200.406,214.781\r\n\t\tc-0.141,0.188-0.172,0.031-0.203-0.125C200.594,214.375,200.266,214.719,200.406,214.781z M195.984,211.781\r\n\t\tc0.156-0.219,0.312-0.438,0.438-0.656c-0.312-0.156-0.312-0.062-0.562-0.219c0.25-0.688,0.641-0.031,1.031-0.438\r\n\t\tc0.328-0.594,0.578-1.188,1.188-1.75c0.188,0.156-0.094,0.219,0.188,0.344c-0.422,0.125-0.219,0.125-0.469,0.469\r\n\t\tc1.031-0.031,0.734,1.719,0.312,2.438c0.094,0.094,1.094-0.281,0.562,0.406c-0.094-0.062-0.281,0.188-0.531,0.188\r\n\t\tc0.062-0.156-0.344-0.531-0.453-0.688c-0.297-0.406,0.297-0.625,0.453-0.875C197.109,210.688,197.078,212.031,195.984,211.781z\r\n\t\t M197.578,212.969c-0.406,0.375-1.219,0.438-1.719,0.156C196.016,212.719,197.031,213.062,197.578,212.969z M198.281,208.844\r\n\t\tc0.188-0.25-0.109-0.375,0.266-0.188C198.547,208.938,198.516,209.062,198.281,208.844z M198.859,214.875\r\n\t\tc-0.25,0.344-0.297,0.562-0.625,0.75C197.797,215.281,198.672,214.969,198.859,214.875z M194.609,221.781\r\n\t\tc0.5,0.406-0.219,0.625-0.375,0.906C193.859,222.5,193.984,222.188,194.609,221.781z M191.203,225.906\r\n\t\tc-0.219,0.25-0.5-0.344-0.562-0.625C191.141,225.219,190.984,225.562,191.203,225.906z M207.672,220.062\r\n\t\tc0.297-0.5,0.984-0.562,0.625,0C208.047,220.062,207.922,220.281,207.672,220.062z M213.016,215.906\r\n\t\tc-0.516,0.312-0.406,0.094-0.719,0.688c-0.438-0.219,0.125-0.281-0.391-0.594c-0.156,0.312-0.344,0.281-0.609,0.75\r\n\t\tc-0.047-0.094-0.094-0.188-0.125-0.281c-0.188,0.406,0.094,0.312-0.125,0.719c-0.25-0.406-0.219-0.062-0.375-0.625\r\n\t\tc-0.25,0.438-0.156,1.438-0.781,1.031c0.125-0.188-0.188-0.438-0.375-0.594c0.125-0.25,0.156-0.062,0.375-0.125\r\n\t\tc-0.125-0.125-0.266-0.219-0.422-0.312c0.109-0.094,0.234-0.219,0.359-0.312c-0.531-0.188,0.078-0.031-0.562-0.344\r\n\t\tc0.141-0.219,0.359-0.125,0.594-0.188c-0.375-0.344-1.172-0.5-0.578-1.5c-0.375,0.094,0.078-0.031-0.328-0.219\r\n\t\tc-0.094,0.281-0.031,0.312-0.234,0.625c-0.297-0.125,0.219-0.438-0.047-0.625c-0.375,0.562-0.031,0.5-0.297,0.969\r\n\t\tc-0.25-0.188-0.047-0.312-0.359-0.406c-0.422,0.531,0.25,2.312,0.375,3.062c0.031-0.156,0.094-0.312,0.125-0.469\r\n\t\tc0.078,0.031,0.156,0.094,0.219,0.125c-0.031,0.219-0.344,0.562-0.125,0.688c-0.078,0.094-0.172,0.156-0.25,0.219\r\n\t\tc-0.062-0.062-0.094-0.188-0.125-0.281c-0.312,0.375,0,0.812-0.594,0.438c-0.062,0.125,0.125,0.688,0.031,0.969\r\n\t\tc-0.078-0.062-0.406-1.906-0.828-1.094c-0.141-0.25-0.234-0.5-0.328-0.781c-0.344,0.469-0.344-0.188-0.734-0.469\r\n\t\tc-0.656,1.375,1.25,2.438,0.641,3.469c-0.656-0.406-0.531-0.719-1.312-1.406c-0.641-0.562-1.438-0.531-1.938-1.25\r\n\t\tc0.156-0.156,0.438-0.094,0.688-0.125c-0.109-0.062-0.156-0.312-0.156-0.469c-0.062,0.312-0.188,0.375-0.375,0.125\r\n\t\tc0.297-0.5,0.125-0.156-0.125-0.281c0.375-0.688,0-0.75,0.438-1.438c-0.25-0.219-0.5-0.25-0.625-0.25\r\n\t\tc0.047-0.156,0.125-0.156,0.219-0.062c-0.031-0.188-0.094-0.406-0.062-0.594c-0.031,0.125-0.031,0.219-0.062,0.344\r\n\t\tc-0.406-0.219,0.125-0.562-0.188-0.688c-0.156,0.531-1,0.844-0.656,0.344c-0.656,0.344-1,0.094-1.484-0.219\r\n\t\tc0.172-0.281,0.609-1.188,0.953-1.75c0.375,0.625,1.031,0.75,1.344,0.906c0.141-0.125,0.172-0.094,0.375-0.094\r\n\t\tc-0.109,0.25,0.812,0.438,1.062,0.688c0.25-0.688,0.281-1.312,0.234-1.969c0.594,0.406,0.938-0.469,1.562-0.125\r\n\t\tc-0.016-0.781,0.172-0.688,0.453-0.688c0.094-0.094,0.188-0.125,0.281-0.219c-0.188-0.156,0.375-2.375,0.781-2.562\r\n\t\tc-0.375-0.25-0.812,0.062-1.344,0.062c0.266-0.375-0.031-0.531,0.547-1c0.031,0.094,0.078,0.188,0.109,0.281\r\n\t\tc0.188-0.344-0.391-1.281,0.453-0.875c0.172-0.312-0.312-0.125-0.141-0.469c-0.188,0.062-0.359,0.156-0.562,0.219\r\n\t\tc0.328-0.562,0.125-0.031,0.375-0.375c-0.312-0.188,0-0.344-0.297-0.562c-0.281,0.25-0.031-0.156-0.406,0.312\r\n\t\tc0.125-0.281,0.234-0.625,0.391-0.938c-0.312-0.188-0.281,0.094-0.406-0.062c0.094-0.188,0.188-0.406,0.297-0.594\r\n\t\tc-0.266-0.031-0.531-0.031-0.703,0.125c0.141,0.031,0.266,0.062,0.391,0.062c-0.578,1.031-1.109-0.312-1.359-0.75\r\n\t\tc-0.203,0.375-0.406,0.875-0.531,1.406c-0.109-0.062-0.141-1.562-0.219-1.938c0.047,0.281,0.094,0.906-0.094,1.125\r\n\t\tc-0.578-0.438-1.453-1.25-1.531-1.938c-0.031,0.125-0.062,0.25-0.094,0.375c-0.406-0.438-0.25-0.875-0.344-1.5\r\n\t\tc-0.156,0.188-0.344,0.125-0.562-0.031c0.062-0.344,0.078-0.719,0.484-0.969c-0.141-0.773-0.172-3.227,1-2.555\r\n\t\tc0.234-0.156,1.422-0.75,1.422-0.719c0.688-0.031,2.359,0.656,2.281,1.469c0.469,0.031,0.906,0.266,1.188,0.891\r\n\t\tc-0.156,0.109-0.281,0.266-0.406,0.383c0.812-0.164,2.656-0.148,2.312,0.156c0.078,0.219,0.016,1.188,0.016,1.188\r\n\t\tc-0.828,0.875-2.594,0.25-2.609-1.031c-0.469,0.562-0.938,1.156-1.344,1.594c0.656,0.656,0.438-0.031,0.562-0.156\r\n\t\tc0.344-0.156,0.5-0.219,0.875-0.219c0,0.344-0.125,0.312-0.188,0.469c0.156,0,0.312-0.031,0.453-0.031\r\n\t\tc-0.141,0.188-0.344,0.688-0.547,0.938c0.25-0.25,0.469-0.375,0.75-0.812c0.312,0.219,0.344,0.531,0.594,0.781\r\n\t\tc0.25-0.375-0.125-0.562-0.25-0.844c-0.188-0.469,1.156-0.531,0.969,0.156c-0.25,0.844,1.031,0.938,1.422,1.156\r\n\t\tc-0.234,0.375-0.484,0.625-0.578,0.812c0.125,0,0.25,0,0.406,0.031c-0.422,0.656-0.219,0.562-0.875,0.594\r\n\t\tc-0.062,0.312-0.062,0.5-0.062,0.75c0.188-0.125,0.375-0.281,0.562-0.406c0.109,0.062-0.062,0.531-0.156,0.688\r\n\t\tc0.078,0.094,0.141,0.062,0.156-0.094c0,0.156-0.109,0.344,0.031,0.375c0-0.156,0.109-0.531,0.172-0.656\r\n\t\tc0.016,0.031,0.312,0.094,0.5,0.156c-0.047,0.219-0.109,0.438-0.156,0.656c0.109,0.062,0.469,0.156,0.203,0.531\r\n\t\tc0.172,0.094,0.219-0.062,0.406,0.062c-0.297,0.469-0.438,0-0.75,0.438c0.188,0.219,0.531-0.031,0.75-0.062\r\n\t\tc-0.062,0.188-0.281,0.25-0.453,0.281c0.609-0.062,0.891,0.219,0.953,0.812c-0.344-0.188-0.391-0.031-0.719-0.062\r\n\t\tc0.594,0.375-0.141,0.281,0.344,0.562c0.188-0.062,0.25-0.375,0.484-0.281c0.094,0.781-0.422,1.188-0.953,0.781\r\n\t\tc0.062,0.125,0.031,0.25-0.062,0.312c0.531,0.375,0.219,0.312,0.453,0.875c-0.625-0.375-0.391-0.219-0.641-0.594\r\n\t\tc-0.125,0.188-0.094,0.438-0.031,0.75c-1.594-0.156-0.062,0.562-0.438,1.094c0.094,0.094,0.406-0.031-0.062,0.312\r\n\t\tc0.266,0.156,0.062-0.156,0.344,0c-0.375,0.438,0,0.125-0.188,0.469c0.25,0.156,0.094-0.219,0.312,0\r\n\t\tc-0.141,0.156-0.312,0.312-0.469,0.5c0.25,0.125,0.281-0.094,0.516-0.094c-0.172,0.438,0.188-0.094,0.266-0.219\r\n\t\tc0.188,0.125-0.062,0.344-0.125,0.5c0.125,0.062,0.344-0.312,0.625-0.375c-0.109,0.281-0.156,0.375-0.422,0.688\r\n\t\tc0.281,0.125,0.141,0.219,0.391-0.125c-0.062,0.469,0.109,0.438-0.219,0.812c0.141,0.031,0.156,0.094,0.047,0.188\r\n\t\tc0,0.031,0.578,0.5,0.453,0.469c0.078-0.406,0.234-0.5,0.469-0.281c-0.156,0.219-0.375,0.406-0.562,0.625\r\n\t\tc0.188,0.094,0.375-0.156,0.5-0.281c0.297,0.125,0.422,0.094,0.844,0.312C212.703,215.625,212.672,215.812,213.016,215.906z\r\n\t\t M204.078,207.094c0.297-0.5,0.375-0.062,0.406,0.25C204.359,207.281,204.203,207.188,204.078,207.094z M205.922,209.344\r\n\t\tc-0.125,0.281-0.688,0.438-0.953,0.5C204.641,208.5,205.75,209.25,205.922,209.344z M205.297,205.969\r\n\t\tc-0.344-0.156-0.562-0.156-0.578-0.625c0.516,0.344,0.516,0,0.984,0.312C205.562,205.75,205.422,205.875,205.297,205.969z\r\n\t\t M206.703,209.469c0.109-0.125,0.203-0.281,0.312-0.406C207.141,209.188,207.047,209.781,206.703,209.469z M206.516,207.188\r\n\t\tc0.125,0.031,0.25,0.062,0.391,0.062C206.641,207.594,206.641,207.281,206.516,207.188z M211.016,197.18\r\n\t\tc0.156-0.141,0.453-0.047,0.656,0.078C211.172,197.617,211.281,197.273,211.016,197.18z M215.312,195.508\r\n\t\tc-0.297,0.375-0.047,0.5-1.219-0.266c-0.625,0.672-0.453,0.547-1.594,0.047c0.578,1,0.844,1.781-0.516,1.594\r\n\t\tc0.031-0.125,0.062-0.234,0.094-0.344c-0.375,0.188-0.906,0.406-1.234,0.125c0.516-0.641,0.578-0.578,0.141-0.875\r\n\t\tc0.094-0.312-0.031-0.375,0.219-0.641c-0.141-0.109-0.297,0.484-0.688,0.391c-0.328-0.062-0.375-0.219-0.812-0.469\r\n\t\tc0.062-0.219,0.188-0.312,0.391-0.312c-0.172-0.094-0.422-0.188-0.609-0.266c-0.156,0.188-0.031,0.297-0.125,0.484\r\n\t\tc-0.312-0.141-0.375-0.078-0.594,0.188c-0.281-0.156-0.188-1.562-0.656-0.906c0.031-0.188,0-0.344,0.031-0.562\r\n\t\tc-0.656,0.172-0.625,0.219-0.781-0.406c-0.172,0.219-0.141,0.281-0.375,0.125c0.219-0.266,0.188-0.469,0.344-0.75\r\n\t\tc0.312,0.219,0.656-0.219,0.906,0.094c0.188-0.281,0.5,0.156,0.688,0.344c0.344-0.375,0.125-0.891,0.422-1.125\r\n\t\tc1.016,0.828,0.859,1.438,1.453,2.281c0.328-0.375,0.344-0.125,0.75-0.422c-0.141-0.141-0.344-0.141-0.531-0.203\r\n\t\tc0.094-0.062,0.125-0.172,0.125-0.312c-0.094,0.078-0.188,0.125-0.281,0.188c0-0.344,0.344-0.5,0.062-0.75\r\n\t\tc0.281-0.172,0.438-0.156,0.656-0.469c-0.094-0.109-1.547-0.094-1.938-0.5c0.359-0.484,0.406-0.375,0.797-0.781\r\n\t\tc0.359,0.328,0.516,0.156,0.766,0.391c0.094-0.047,0.125-0.094,0.125-0.141c0.469,0.25,1.156,0.906,1.625,1.422\r\n\t\tc0.078-0.078,0.156-0.172,0.219-0.25c-0.312-0.266-0.609-0.719-0.953-0.891c-0.172,0.094,0.812-0.219,0.766-0.219\r\n\t\tc-0.219-0.172-0.188,0.125-0.375,0.094c0.078-0.344,0.078-0.664,0.188-1.039c-0.5,0.539-0.078,0.695-0.719,0.852\r\n\t\tc-0.438,0.312-0.688-0.547-1-0.141c0-0.109,0-0.234,0.031-0.359c-0.203,0.203-1.172,0.469-0.5-0.211\r\n\t\tc-0.625,0.523-1.219,0.109-1.844,0.617c-0.062-0.25-0.156-0.414-0.156-0.742c-0.375,0.461-0.469,0.273-0.984-0.156\r\n\t\tc0.375-0.422,0.828-1.641,1.672-0.906c0.344-0.391-0.844-0.664-1.125-0.898c0.062-0.086,0.094-0.195,0.141-0.305\r\n\t\tc0.266,0.234,0.438,0.578,0.672,0.32c-0.547-0.484-0.531-0.656-0.516-1.211c0.109,0.141,0.375-0.398,0.422-0.492\r\n\t\tc0.156,0.469,0.25,0.633,0.656,0.93c0-0.344-0.766-1.102-0.594-1.281c0.312,0.211,1.188,0.156,1.562-0.195\r\n\t\tc-0.281-0.141-0.359-0.469-0.422-0.555c-0.172,0.164-0.234,0.109-0.438,0.062c0.047-0.102,0.141-0.414,0.203-0.648\r\n\t\tc0.797,0.867,1.062,0.562,0.328-0.359c0.016,0,0.453-0.023,0.453-0.023c-0.109,0.109,1.156,1.438,0.812,2.164\r\n\t\tc-0.281,0.586-0.344,2.117,1.141,1.594c-0.391,0.219,0.141,0.305,0.203,0.375c-0.094,0.289-0.219,0.562-0.594,1.133\r\n\t\tc0.281-0.344,0.688-0.188,1.016-0.648c0.328,0.352,0.953,0.523,1.375,0.812c0.078,0.117-0.078,0.578,0.109,0.688\r\n\t\tc-0.5,0.688,0.062,1.656,0.531,1.188c-0.812-0.562-0.703-1.617,0.375-1.062c0.438,0.188,1.75,1.125,2.094,0.797\r\n\t\tc-0.391-0.188-0.688-0.453-0.875-0.609c0.5,0.406,0.984,0.109,1.531,0.5c-0.125-0.156-0.281-0.344-0.438-0.5\r\n\t\tc0.234-0.25,0.375,0.062,0.656,0.062c-1.312-0.977-2.594-0.906-4-1.852c0.094-0.055,0.188-0.117,0.281-0.188\r\n\t\tc-0.234-0.148-0.531,0.047-0.812,0.219c-0.188,0.148-0.438-0.375-0.688-0.523c0.125-0.117,0.25-0.203,0.375-0.297\r\n\t\tc-0.438-0.477-1.438-0.781-2.047-1.375c0.297,0.008,0.766,0.109,0.922-0.109c-0.156-0.148-0.469-0.125-0.766-0.195\r\n\t\tc0.047-0.109,0.094-0.211,0.141-0.32c0.25,0.32,0.906,0.211,1.281,0.422c-0.344-0.375-0.734-0.539-1.141-0.719\r\n\t\tc0.203,0.039,0.391,0.039,0.594,0.102c-1.312-0.938,1.984,0.125,1.531,0.562c0.109,0.109,0.484,0.75,0.547,1.031\r\n\t\tc0.125-0.164,0.094-0.219,0.188-0.477c0.109,0.016,0.219,0.031,0.344,0.062c-0.094,0.133-0.156,0.273-0.219,0.414\r\n\t\tc0.625-0.633,0.5-0.688-0.469-1.148c0.109-0.18,0.219-0.352,0.328-0.531c0.203,0.344,0.422,0.328,0.641,0.695\r\n\t\tc0.125-0.188,0.203-0.414,0.281-0.609c0.125,0.086,0.797,1.086,0.719,1.133c0.297,0.32-0.266,1.469,0.406,0.68\r\n\t\tc-0.031,0.25-0.062,0.469-0.078,0.711c0.297-0.359,0.422-0.766,0.578-1.133c0.25,0.18,0.812,1.289,0.594,1.562\r\n\t\tc0.125,0.188,0.094-0.125,0.266,0.008c-0.266-0.57-0.391-0.586,0.078-0.883c0.031,0.016,0.125,0.828,0.625,0.047\r\n\t\tc0.391,0.375,0.969,0.742,0.609,1.555c0.266-0.477,0.266-0.477,0.094-1.086c0.984,0.188,2.016,0.523,2.016,1.539\r\n\t\tc0.938-1.25,2.812,0.719,3.547,1.172c-0.766,0.438-1.203,0.109-1.953,0.25c1.281,0.422,1.969-0.062,2.875,0.5\r\n\t\tc0.656,0.312,0.5,1.297,1.281,1.875c-0.422,0.75-2.594,0.266-2.906-0.125c-0.141,0.094-0.141,0.156,0,0.188\r\n\t\tc-0.234-0.047-1-0.156-1.062-0.078c0.484,0.234,1.094,0.375,1.625,0.422c-0.438,0.469-1.688-0.031-1.781,0.188\r\n\t\tc-0.469-0.234-2.188,0.031-2.375-0.156c0.125-0.172-0.062-0.219,0.172-0.438c-0.422,0.375-0.453,0.281-1.125,0.406\r\n\t\tc0.172-0.297-0.234-0.344-0.359-0.438c-0.094,0.141,0.094,0.438,0.156,0.484c-0.375-0.141-0.672-0.078-1.031-0.266\r\n\t\tc-0.188,0.516-0.094,0.266-0.656,0.312c0.219-0.5-0.344-0.375-0.562-0.375c-0.062-0.188-0.125-0.344-0.188-0.516\r\n\t\tc-0.109,0.203-0.156,0.297-0.344,0.125c0.031-0.156,0.062-0.328,0.094-0.484c-0.188,0.125-0.234,0.078-0.156-0.109\r\n\t\tc-0.078,0.078-0.141,0.156-0.219,0.234c-0.094-0.125-0.188-0.25-0.281-0.375c-0.094,0.062-0.188,0.125-0.281,0.188\r\n\t\tc0.938,0.938,1.594,0.891,0.969,1.781c-0.188-0.391-0.516-0.578-0.062-0.969c-0.125,0.031-0.25,0.078-0.375,0.125\r\n\t\tc0.141-0.188-0.375-0.656-0.531-0.75c0.406,0.812,0.156,0.391-0.047,0.75c-0.016,0.047-0.719-0.891-0.891-0.984\r\n\t\tc-0.156,0.266,0.188,0.375,0.375,0.609c-0.406,0.094-0.422-0.031-0.703,0.312c0.047,0.031,0.922,0.125,0.953,0.062\r\n\t\tc0.375,0.281,0.531,0.594,1,0.859c-0.406,0.484-0.375,0.516-0.938,0.109c-0.219,0.188-0.016,0.375-0.125,0.531\r\n\t\tC215.703,195.789,215.5,195.633,215.312,195.508z M207.531,191.602c0.359-0.156,0.438-0.297,0.234-0.422\r\n\t\tc0.203-0.109,0.438-0.172,0.625-0.359C208.5,191.445,208.109,191.898,207.531,191.602z M216.594,197.883\r\n\t\tc-0.172-0.125-0.344,0.203-0.266-0.188C216.672,197.477,216.422,197.758,216.594,197.883z M218.281,229.719\r\n\t\tc0.109-0.156,0.219-0.281,0.016-0.344c-0.156,0.375-0.203,0.281-0.531,0.094c0.094-0.094,0.203-0.156,0.312-0.219\r\n\t\tc-0.156-0.094-0.281-0.156-0.406-0.219c0.375-0.281,0.141-0.062,0.078-0.156c0.141-0.188,0.297-0.312,0.438-0.5\r\n\t\tc-0.547-0.219-1.094,0.469-1.672,0.219c0.156-0.281,0.094,0.094,0.297-0.188c-0.531-0.312-0.266-1.281-0.328-1.469\r\n\t\tc0.094-0.219,0.25-0.188,0.469-0.312c-0.094-0.094-0.219-0.094-0.344,0.031c0.141-0.125,0.125-0.188-0.047-0.219\r\n\t\tc0.125-0.125,0.266-0.25,0.375-0.375c-0.453-0.188-0.484-0.062-0.828,0.125c1.016-1.812,0.312-0.344-0.031-0.562\r\n\t\tc0.188-0.406,0.062-0.312,0.406-0.719c-0.344-0.156-0.266-0.094-0.516,0.094c0.016-0.469,0.109-0.125,0.234-0.406\r\n\t\tc-0.406-0.219-0.062-0.219,0.125-0.531c-0.438-0.188-0.219-0.375-0.281-0.844c0.156,0.062,0.312,0.156,0.438,0.219\r\n\t\tc0.125-0.125,0.062-0.219-0.156-0.281c0.203-0.062,0.656-0.344,0.688-0.375c0.375-0.094-0.281,1.188,0.375-0.156\r\n\t\tc-0.281-0.156-0.719-0.031-1.125,0.125c0.094-0.125,0.609-0.844,0.125-1c0.094-0.219,0.328-0.094,0.391-0.188\r\n\t\tc-0.062-0.156-0.141-0.312-0.203-0.469c0.25,0.094,0.594,0.031,0.719-0.156c-0.219-0.125-0.391-0.188-0.5,0.094\r\n\t\tc-0.156-0.25-0.125-0.219-0.469-0.25c0.266-0.625,0.156-0.062,0.469-0.312c-0.406-0.219-0.25-0.25-0.438-0.594\r\n\t\tc0.141,0,0.281,0.031,0.438,0.031c-0.188-0.094,0.438-0.531,0.516-0.625c-0.406-0.219,0.016-0.562-0.203-0.688\r\n\t\tc0.469-0.062,0.656-0.281,1.188-0.25c-0.484-0.25-0.641,0.031-0.969-0.156c0.359-0.5,0.969-0.438,1.344,0\r\n\t\tc-0.109-0.25-0.312-0.438-0.219-0.688c0.406,0.219,0.625,0.562,1.188,0.844c0.031-0.156,0.094-0.344,0.125-0.5\r\n\t\tc-0.438,0.031-1.656-0.156-1.25-0.656c0.5,0.219,0.641,0.188,1.094,0.281c0.781,0.219,0.25-1.125,1-0.844\r\n\t\tc-0.172,0.156-0.219,0.344-0.156,0.531c0.344-0.312,0.406-0.531,0.594-0.812c-0.141-0.094-0.234-0.031-0.406-0.031\r\n\t\tc0.359-0.562,0.422-0.562,0.844-1c-0.75-0.469-0.969-1.344-1.547-1.594c-0.625,1.062,1.031,1.375-0.422,2\r\n\t\tc-0.625,0.25-1.125-0.062-1.312-0.781c0.344,0.438,0.562,0.469,0.688,0.031c-0.406-0.188,0.062,0.062-0.75-0.406\r\n\t\tc0.312-0.469,0.703-0.969,1.375-1.094c-0.125,0.219,0.031,0.219,0.25,0.344c0.062-0.094,0.156-0.156,0.25-0.219\r\n\t\tc-0.906-0.594-0.125-1.438,0.906-0.156c0.344,0.406,0.281,1,0.797,1.25c0.25-0.25-0.297-0.281-0.094-0.594\r\n\t\tc0.203,0.094,0.266,0.188,0.438,0.031c-0.516-0.281-0.297-0.531,0.156-0.281c0.141-0.281-0.688-0.688,0.25-0.219\r\n\t\tc-0.234-0.219-0.266-0.5-0.578-0.688c0.219-0.312,0.469,0.188,0.672-0.188c-0.297-0.031-0.562-0.156-0.859-0.25\r\n\t\tc0.078-0.031,0.156-0.062,0.203-0.094c-0.141-0.094-0.578-0.469-0.516-0.625l-0.453-0.438c-0.422,0.781-1.562,0.062-0.562-0.5\r\n\t\tc-0.234-0.031-0.266-0.125-0.141-0.25c0.219,0.156,0.531-0.281,0.688-0.375c-0.219-0.062-0.281-0.125-0.125-0.281\r\n\t\tc1.312,0.719,0.781-1.531,1.234-2.406c-0.172-0.062-0.359-0.094-0.531-0.125c0.109-0.094,0.703-0.406,0.953-0.531\r\n\t\tc-0.594-0.812-0.75-5-2.484-4.25c0.109-0.188,0.188-0.375,0.266-0.562c-0.5,0.062-0.906-0.062-1.188-0.344\r\n\t\tc-0.125,0.219-0.281,0.156-0.469,0.281c0.25-0.75-0.031-0.938-0.688-0.656c-0.016-0.188,0.078-0.469-0.125-0.625\r\n\t\tc-0.125,0.219-0.469,0.5-0.625,0.719c-0.719-0.406-1.141-1.312-0.438-1.586c-0.344-0.328-0.406-1.234-0.375-1.219\r\n\t\tc0.156-0.016,0.297-0.047,0.469-0.062c-0.219,0.469,2.391,0.594,2.719,1.523c0.125-0.18,0.312-0.273,0.453-0.43\r\n\t\tc-0.469-0.344-1-0.625-1.547-0.812c0.062-0.156,0.125-0.281,0.188-0.438c-0.625-0.312-0.812,0.422-1.344-0.281\r\n\t\tc0.156-0.188,0.062-0.547-0.078-0.656c0.516-0.984-0.078-1.031,1.25-0.875c1.047,0.609,2.578,0.438,2.859,1.438\r\n\t\tc0.312-0.406,1.688-0.812,2.188-1.281c-0.859-0.406-1.125-0.5-1.812-0.906c0.359-0.875,1.391-0.828,2-0.469\r\n\t\tc0.094,0.062,0.719,0.031,0.766-0.094c0.312,0.25,0.516,0.188,1.062,0.469c0.109,0.031-0.234,0.469,0,0.562\r\n\t\tc0.156-0.312,0.703-1.375,1.406-1.016c-0.078,0.141-0.328,0.953-0.078,1.047c0.031-0.375,0.219-0.562,0.281-0.938\r\n\t\tc0.156,0.125,1.188,0.297,1.234,0.188c0.359,0.25,0.812,0.719,1.156,0.844c0.391-0.531,0.234-0.016,0.375,0.219\r\n\t\tc0.797-0.922,0.828,0.391,0.156,1.344c0.016,0,0.891-0.281,0.953-0.375c0.25,0.438,0.688,0.797,0.938,1.406\r\n\t\tc0.297-0.359,0.312-1.062,0.812-0.797c-0.016-0.516,0.016-0.453,0.422-1.016c1.172,0.922,0.078,2.5,1.016,3.367\r\n\t\tc0.625-0.375,0.984,0,1.125,0.562c0.375-0.562-1.094-2.133-0.562-3.086c0.672,0.312,1.234,0.281,1.25,1.172\r\n\t\tc0.094-0.297,0.172-0.406,0.203-0.766c0.859,0.344,0.641-0.219,1.016-0.719c0.406,0.719,0.312,0.156,1.188,0.609\r\n\t\tc0.266,0.203-0.281,0.891,0.484,0.922c0.156-0.281-0.109-0.031-0.031-0.375c0.453,0.219-0.141,0.125,0.312,0.344\r\n\t\tc0.484-0.25-0.359-0.688,0.75-0.156c-0.297-1,0.594,0.156,1.016-0.547c0.094,0.156,0.219,0.328,0.312,0.5\r\n\t\tc0.281-0.547,4.984,2.477,5.891,2.883c-0.219,0.5-0.859,0.125-1.047,0.531c0.344,0.156,1.25-0.219,1.5,0.062\r\n\t\tc0.578,0.688-0.469,0.75-0.656,1c0.234-0.062,1.047-0.062,1.094-0.031c-0.188,0.375,1.219,0.75,1.391,1.594\r\n\t\tc-1.484,0.562-2.672-0.594-4.219-1.156c-1.891-0.594-2.297-0.781-4.047-0.625c0.562,0.375,1,0.125,1.594,0.125\r\n\t\tc0.984,0.031,1.938,0.656,2.953,1.062c-0.141,0.156-0.281,0.312-0.422,0.5c1.375,0.625,1.469-0.062,2.781,0.5\r\n\t\tc-0.25,0.469-1.75,1.062-1.562,0.688c-0.234,0.094-0.422,0.156-0.625,0.25c0.125,0.031,0.188,0.125,0.219,0.281\r\n\t\tc-0.031,0.094,2.375-0.156,2.75-0.219c-0.125,0.188-0.016,0.281-0.094,0.469c0.156,0.094,0.281,0.094,0.656,0.281\r\n\t\tc0.469-0.969,3.969,0.656,3.859,1.344c-0.641,0.062-1.203,0.281-1.734,0.25c-0.844-0.031-1.641-0.594-2.672-0.469\r\n\t\tc0.891,0.375,1.234,0.5,1.922,0.75c-0.781,1.5-1.953-0.25-2.719-0.125c-0.031,0.094-0.047,0.188-0.219,0.094\r\n\t\tc0-0.031,0.031-0.031,0.031-0.062c-0.125,0.062-0.234,0.25-0.312,0.469c0.531-0.25,1.203-0.125,1.766,0.406\r\n\t\tc-0.266,0.656-1.234,0.719-1.766,0.438c-0.25,0.438,0.344,0.188-0.422,0.719c0.359,0.031-0.812,0.844-1.047,1.094\r\n\t\tc-0.109-0.344-0.625-0.938-0.938-0.25c0.438,0.344,0.844,0.375,1.219,1.031c-0.25-0.062-0.344-0.219-0.641-0.281\r\n\t\tc-0.781,1.25,1.297,0.25,0.5,2.094c-0.5-0.219-1-0.594-1.516-0.938c-0.047,0.219-0.094,0.844-0.641,0.562\r\n\t\tc-0.203,0.344-0.047,0.344,0.141,0.562c0.062-0.156,0.219-0.25,0.406-0.312c0.125,0.406,0.031,0.438-0.031,0.656\r\n\t\tc0.531,0.188-0.094,1.031-0.234,1.438c-0.422-0.156-0.641-0.625-1.125-0.812c-0.047,0.094,0.328,0.688,0.422,0.875\r\n\t\tc-0.25-0.125-0.312,0.188-0.562,0.281c0.172,0.031,0.281-0.031,0.422,0c0,0-0.172,0.562-0.203,0.438\r\n\t\tc2.062,0.781-0.094,0.781-0.719-0.5c-0.312,0.219-0.906,1.219-0.438,1.406c0.594-0.5,0.344-0.25,0.875,0\r\n\t\tc-0.281,0.656-0.875,0.156-1.031,0.625c-0.281-0.156-1.906-0.469-1.328-1.281c-0.422-0.188-1.172,0.5-1.625,0.375\r\n\t\tc0.234,0.156,0.391,0.344,0.641,0.438c-0.016-0.125-0.062-0.25-0.094-0.406c0.562,0.281,1.312-0.062,1.188,0.844\r\n\t\tc0.766,0.312,0.266,0.5,0.203,0.469c0.172,0.125,0.328,0.25,0.516,0.375c-0.234,0.062-0.234,0.219-0.203,0.438\r\n\t\tc-0.281-0.062-0.422-0.281-0.625-0.438c-0.156,0.281,0.312,0.531,0.484,0.75c-0.109,0.062-0.219,0.125-0.344,0.188\r\n\t\tc0.125,0.344,0.312,0.125,0.156,0.562c-1.312-0.438-0.438-2.094-1.125-2.188c0.031-0.188-0.047-0.312-0.219-0.469\r\n\t\tc-0.156,0.375-0.625,11.094-1,11.234c-0.031-0.547-0.312,10.078,0,10.078c-0.141,0-0.281,0-0.406,0\r\n\t\tc0.125,0,0.125-10.047,0.125-10.047c0.438,0.25,2.094-5.297,0.562-4.859c0.562,0.328,1.203-1.188,1.5-1.062\r\n\t\tc-0.094,0.125-0.203-1.125-0.312-0.984c0.188,0.094,0.188-0.766,0.25-0.922c0.5,0.219-0.25,1.438-0.312,1.625\r\n\t\tc-0.391-0.188-1.625-0.969-1.234-1.906c0.016,0-0.422-1.219-0.547-1.406c-0.516-0.219-0.938-0.891-1.453-1.188\r\n\t\tc-0.594,1.109,1.734,0.906,1.359,1.969c-0.625-0.266-1-0.156-1.688-0.734c-0.109,0.281-0.594,0.266-0.812,0.484\r\n\t\tc0.125,0.031,0.156,0.125,0.156,0.25c0.406-0.688,1.312-0.156,2.062,0.219c-0.266,0.656-0.219,0.438-0.781,0.156\r\n\t\tc-0.031,0.031-0.375,0.5-0.406,0.562c0.656,0.438,0.938,0.062,1.469,0.25c0.562,0.312,0.562,0.594,1.469,1\r\n\t\tc-0.203,0.344-0.688,0.344-0.922,0.625c-0.062-0.062-0.109-0.156-0.172-0.219c-0.125,0.344-0.234,0.156-0.375,0.531\r\n\t\tc-0.531-0.625-1.75-0.125-2.344-0.312c-0.281,0.594-1.375,0.281-1.844,0.438c0.094-0.219-1.312-0.688-1.5-0.312\r\n\t\tc-0.094-0.062-0.891-0.125-0.688-0.344c-0.531-0.125-0.312-0.812-0.469-0.906c-0.656,1.344-0.219,0.969-1.312,1.781\r\n\t\tc-0.719,0.531-2.062,0.062-2.469,1.094c-0.344-0.188-0.281-0.688-1.062,0.031c0.469-1-1.156-0.656-1.672-1.188\r\n\t\tc-0.344,0.625-0.188,0.5-0.797,0.344c0.156,1.125-0.281,1.219-0.906,0.969c-0.125,0.219,0.172,0.375,0.344,0.531\r\n\t\tc-0.156,0.312-0.391,0.375-0.594,0.812c-0.125-0.125-0.25-0.25-0.406-0.406c-0.031,0.281-0.031,0.469-0.031,0.719\r\n\t\tc-0.25-0.062-0.344-0.031-0.562-0.094c-0.094,0.062-0.203,0.125-0.281,0.219c0.406,0.188-0.906,1.344-1.094,1.25\r\n\t\tc-0.094,0.25-0.531,1.188-1.062,0.938c-0.062,0.25,0,0.781,0.094,1.125c-0.375-0.125-0.281,0.031-0.656,0.031\r\n\t\tc0-0.5-0.328-0.344,0-0.906c-0.125,0.125-0.25,0.25-0.344,0.375c-0.219-0.062-0.109-0.406-0.031-0.562\r\n\t\tc-0.125,0.062-0.25,0.125-0.375,0.156C218.812,229.75,218.328,229.844,218.281,229.719z M247.688,243.125\r\n\t\tc0.078-0.188,0.328-0.594,0.5-0.531c-0.141,0.406-0.219,0.469-0.422,0.719C248.078,242.5,247.828,243.219,247.688,243.125z\r\n\t\t M245.703,255.344c-0.375,1.25-2.531-0.938-2.875,0.062c-0.312-0.562-0.812-0.594-1.406-0.156c0.25-0.719-1.062-0.281-1.422,0\r\n\t\tc0.125-0.219-0.016-0.312-0.359-0.312c0.219-0.406,1.469-0.406,1.688-1.281c0.234,0.094,0.688,0.312,0.656,0.406\r\n\t\tc1.312,0.531,0.625-0.812,0.438-0.188c-0.469-0.219-0.406-0.188-1.062-0.375c0.125-0.062,0.188-0.156,0.281-0.219\r\n\t\tc-0.406-0.188-0.344,0.031-0.656,0.094c0.219-0.875,0.969-0.562,1.25-1.469c-0.188,0-0.391,0-0.594-0.031\r\n\t\tc0.656-0.438,0.406-0.375,0.562-0.812c-0.031-0.031,0.953,0.156,0.562,0.344c0.516,0.156,0.812-0.438,1.031-0.344\r\n\t\tc0.062-0.188,0.062-0.25,0.219-0.562c-0.719-0.25-0.625-0.375-0.203-0.781c-0.422-0.156-0.844-0.625-1.078-0.062\r\n\t\tc-0.562-0.656,0.266-1.25,0.547-1.906c-0.391-0.094-0.578,0.188-0.797,0.062c0.203-0.562,0.062-0.125-0.281-0.25\r\n\t\tc0.125-0.094,0.234-0.188,0.312-0.25c0.031,0,0.109,0.188,0.203,0.25c0.234-0.344,0-0.188,0.484-0.5\r\n\t\tc-0.531-0.312,0.094-1.562,0.25-2c0.469,0.156,0.891-0.406,1.094-1c0.375,0.156-0.172,0.312,0.156,0.438\r\n\t\tc0.25-0.5,0.125,0,0.594-0.312c-0.031,0.125,0.422,0.062,0.219,0.75c-0.125,0.312-0.953,0.281-1.156,0.969\r\n\t\tc0.656-0.094,1.312,0,1.719,0.438c-0.312,0.844-1.484,0.969-1.094,1.875c-0.25-0.062-0.469,0-0.562,0.156\r\n\t\tc0.594,0.156,1.719,3.219,1.531,3.812c-0.125-0.219-0.094-0.312-0.297-0.438c-0.141,0.438,0.391,0.844,0.141,1.406\r\n\t\tC248.297,254.031,244.141,254.844,245.703,255.344z M237.203,251.969c0.094-0.281,0.156-0.562,0.281-0.781\r\n\t\tc0.125,0.094,0.219,0.188,0.344,0.312c0.203-0.469,0.938-0.844,1.156-1.469c-0.188-0.094-0.625-0.062-1-0.219\r\n\t\tc0.125-0.281,0.703-0.562,0.969-0.5c-0.156-0.375-0.203-0.281-0.062-0.719c0.25,0.125,0.531,0.219,0.781,0.438\r\n\t\tc0.156-0.5,0.25-0.25,0.656-0.438c-0.781-0.312,0.75-1.031,0.562-0.312c0.156-0.031,0.172-0.125,0.25-0.25\r\n\t\tc-0.062,0.375,0.219,0.188-0.094,0.656c1-0.406,0.969,0.594,0.828,1.188c-0.234-0.031-0.516-0.062-0.734-0.094\r\n\t\tc-0.25,0.656-0.688,1.438-0.953,2.25c-0.141-0.062-2.453,0.75-2.078,0.094c-0.25,0.031-0.469,0.062-0.703,0.094\r\n\t\tc0.047-0.156,0.234-0.219,0.391-0.188C237.516,251.906,237.453,251.906,237.203,251.969z M236.609,233.156\r\n\t\tc0.156-0.188-1.344-0.844-1.594-1.188c0.688,0.25,0.312,0,0.906,0.031c-0.031,0-1.188-1.375-1.188-1.375\r\n\t\tc0.391,0.156,1.062,0,1.438,0.094c-0.469-0.281-0.062-0.125-0.234-0.5c0.203,0.062,0.188,0.219,0.312-0.031\r\n\t\tc-0.016-0.062-0.047-0.125-0.078-0.188c-0.422,0.047-0.656-0.062-0.938-0.172c0.25-0.359,0.328-0.297,0.469-0.766\r\n\t\tc0.375,0.219,0.188,0.031,0.484-0.125c0.047,0.594,0.156,0.531,0.297,1c-0.031-0.125-0.062-0.75-0.031-0.906\r\n\t\tc1,0.375,0.5,1.188,0.312,1.75c0.094,0.031,0.156,0.062,0.25,0.094c0.609-1.281,0.125-0.031,0.375-0.188\r\n\t\tc0.781-1.844,0.016-0.344,0.641-0.812c-0.016,0.25-0.109,0.688,0.125,0.781c0.266-0.656,0.406-0.25,0.922-0.5\r\n\t\tc-0.125,0.438-0.031,0.406-0.047,0.875c0.047-0.219,0.078-0.438,0.125-0.688c0.438,0.156,0.891,0.5,1.312,0.531\r\n\t\tc0.641-0.719,0.547,0.469,1.484,0.25c-0.078,0.25-0.719,0.469-0.875,1.062c0.906,0,0.734,0.656,0.531,1.25\r\n\t\tc-0.25-0.094-0.125-0.094-0.328-0.312c-0.266,0.75-1.578,0.469-2.297,0.844c0-0.125,0-0.25,0-0.375\r\n\t\tc-0.125,0.531-0.609-0.062-0.938-0.188c-0.094,0.188-0.281,0.562-0.328,0.75c0-0.125-0.016-0.25-0.016-0.375\r\n\t\tc-0.594,0.25-0.719-0.156-1.344-0.375C236.516,233.375,236.891,233.312,236.609,233.156z M234.797,229.75\r\n\t\tc0.094,0.094,0.156,0.062,0.188-0.094c0.031,0.062,0.078,0.109,0.109,0.156C235,229.766,234.891,229.828,234.797,229.75z\r\n\t\t M236.266,228.812c0.094,0,0.922-0.312,0.641,0.25C236.688,228.969,236.469,228.875,236.266,228.812z M242.578,246.656\r\n\t\tc-0.125,0.344,0.141,0.562-0.406,0.562c-0.031-0.062-0.062-0.125-0.094-0.219C242.578,247.219,241.859,246.406,242.578,246.656z\r\n\t\t M242.688,246.344c0.078-0.219-0.359-1.344,0.25-1.125c-0.078,0.25-0.422,0.375-0.172,0.469\r\n\t\tC242.656,246.062,243.078,245.969,242.688,246.344z M242.453,244.875c0.125-0.312,0.219-0.656,0.312-0.938\r\n\t\tc0.062,0,0.484,0.062,0.797-0.062C243.359,244.438,242.984,244.75,242.453,244.875z M245.406,216.312\r\n\t\tc-0.203,0.406-0.016,0.562,0.344,0.469c-0.203,0.406,0.203-0.125-0.078,0.469C245.016,217.062,244.266,216.531,245.406,216.312z\r\n\t\t M224,214.781c0-0.344,0,0.531,0,0.844C224,215.625,224,214.969,224,214.781z M244.266,217.219\r\n\t\tc-0.156,0.094-0.281,0.188-0.453,0.312c-0.016-0.219-0.031-0.406,0.031-0.656C244.203,217,243.891,217.062,244.266,217.219z\r\n\t\t M242.922,218.031c-0.234-0.125-0.469-0.219-0.75-0.312C242.578,217.031,243.172,217.562,242.922,218.031z M224.188,277.344\r\n\t\tc-0.078,0.312-0.016,0.375-0.375,0.188C223.984,277.25,223.688,277.188,224.188,277.344z M223.578,276.75\r\n\t\tc-0.266,0.125-0.266,0.375-0.594,0.281C223.203,276.406,223.156,276.969,223.578,276.75z M218.703,231.031\r\n\t\tc-0.125,0.188-0.125,0.094-0.312,0C218.609,230.5,218.453,230.875,218.703,231.031z M264.656,334.25\r\n\t\tc-0.109-0.031-0.359-0.344-0.312-0.438c-0.062,0.219-0.391,1.219-0.25,1.25c-0.25,0.219-2.109,2.594-2.203,2.562\r\n\t\tc-0.125,0.812-1.25,1.188-1.438,1.906c-0.266,0.781-1.906,1.25-1.938,1.375c-1.5-0.094-0.969-1.594-1.5-1.719\r\n\t\tc0-0.125,0.078-1.938,0.531-1.812c0.188-0.219,2.531-2.344,1.25-2.344c0.312-2.031,3.25-0.781,3.781-2.062\r\n\t\tc0.031,0.094,0.047,0.188,0.078,0.281c0,0,1.047-0.781,0.594-0.781c0.188,0.031,0.328-0.094,0.797-0.094\r\n\t\tc-0.016-0.344,0.281-0.906,0.781-1.219c0,0.062,0.672,1.625,0.406,1.562c-0.078,0.094-0.156,0.219-0.25,0.344\r\n\t\tC265.438,333.188,265.016,333.875,264.656,334.25z M258.703,324.656c-0.188-0.094-0.125-0.281,0-0.469\r\n\t\tC259.031,324.5,258.703,324.469,258.703,324.656z M296.281,318.406c-2.719,1.781-0.828-3.312-0.234-3.312\r\n\t\tC295.984,316.438,297.188,316.75,296.281,318.406z M322.719,355.406c-0.547,0-1.688,0.875-2.062,1.062\r\n\t\tc0.109-0.125,0.375-1.156,0.438-1.219c0.906-0.844,1.078,0.031,2.25-0.688C323.156,354.875,322.953,355.156,322.719,355.406z\r\n\t\t M323.578,354.25c0.156-0.062,0.203-0.125,0.141-0.25c0.375-0.219,0.25,0.094,0.25,0.094\r\n\t\tC323.859,354.094,323.656,354.25,323.578,354.25z M334.781,339.094c-0.125,0.406,0.047,0.219,0.453,0.125\r\n\t\tc-0.312,0.5,0.141,0.312-0.312,0.906c0.359-0.156,0,0.906-0.141,1.188c0.188-0.281,0.062,0,0.375,0\r\n\t\tc-0.234,0.531-0.094,1.594-0.266,1.781c0.109,0-1.062,1.844-1.062,1.875c-0.391,0.562-0.703,1.094-1.297,1.719\r\n\t\tc-0.312,0.688-1.734,1.25-1.906,1.781c-1.375,0-2.391,2.875-3.438,2.875c-0.594,0.531-0.656,0.844-1.562,1.125\r\n\t\tc0.031-0.031-1.938,1.125-2.188,1.125c0.344-0.344-0.062-0.094-0.156-0.312c0.062-0.031,0.234-0.125,0.281-0.219\r\n\t\tc-0.125,0.062-0.281,0.125-0.406,0.188c0.047-0.156,0.375-0.375,0.469-0.5c-0.75,0-1.266,0.969-2.125,0.969\r\n\t\tc0.062-0.094,0.109-0.156,0.125-0.25c-0.156,0.031-0.156,0.031-0.047-0.094c-0.359,0.062-0.531-0.062-0.828,0\r\n\t\tc-0.031-0.188,0.156-0.469-0.078-0.375c0.312-0.469,0.594-1.094,0.828-1.312c-0.219,0.062-0.438,0.125-0.656,0.156\r\n\t\tc0.281-0.375,0.453-0.688,0.688-1.031c-0.203,0.188-0.656,0.375-1.016,0.594c0.109-0.094,0.234-0.188,0.359-0.25\r\n\t\tc-0.094,0,0.812-0.875,1.031-1.062c-0.641,0.188-1.766,0.781-2.234,1.219c0.047-0.094,0.016-0.188-0.094-0.188\r\n\t\tc0.094-0.469,0.391-0.344,0.016-0.844c0.156-0.125,0.281-0.094,0.406-0.219c-0.109,0.031-0.25,0.031-0.391,0.031\r\n\t\tc0.359-0.5-1.797-0.656-1.875-0.344c-0.547,0-3.344,0.5-3.453,0.875c-0.5,0-1.688,0.656-2.156,0.906\r\n\t\tc-0.859,0.5-2.172-0.344-3,0.719c-0.219-0.281,0-0.062-0.156-0.312c-0.719,0.688-1.094,0.594-2.031,0.594\r\n\t\tc0.234-0.281-0.25-0.281-0.406-0.469c1.484-1.188,1.469-2.375,2.5-4c-0.25,0-0.156-0.188-0.375-0.188\r\n\t\tc0.078-0.219,0.141-1.719,0.344-1.719c0.031,0.469,0.031,0.312,0.125,0.625c0.062-0.031,0-0.344,0-0.625\r\n\t\tc-0.031,0,0.156,0.188,0.312,0.312c0.609-0.672,0.703-2.562,1.625-2.859c1.297-0.078,3.219-1.578,4.453-1.984\r\n\t\tc1.109,0,2.703-1.469,2.969-1.469c0.203-0.406,0.797-1.25,1.344-1.25c-0.141,0.469,0,0.375-0.141,0.719\r\n\t\tc0.344,0,0.625-0.656,0.906-1.031c0,0.031,0.125,0,0.188,0.125c0.281-0.562,0.766-0.719,1-0.719\r\n\t\tc0.406-0.781,0.719-0.531,1.312-1.281c0.062-0.219,1.125-0.125,0.531,1.094c1.125,0,2.359-1.438,2.906-2.562\r\n\t\tc0.078,0,0.797-0.188,0.625,0.062c0.734-0.062,1.5-0.062,0.656-0.906c0.125-0.062,0.219-0.094,0.344-0.156\r\n\t\tc0.094,0.094,0.109,0.156,0.016,0.25c0.062-0.062,0.141-0.094,0.203-0.156c-0.188,0.438,0.172-0.219-0.062,0.375\r\n\t\tc0.156-0.062,0.5-0.312,0.625-0.312c-0.281,0.406,1.578,0.312,2.062-0.031c-0.188,0.438-1.188,1.125-1.312,1.438\r\n\t\tc0.125,0-0.719,1.094-0.828,1.344c0.781,0,1.453,0.844,1.672,1.625c2.453-0.156,2.875-4.531,4.531-5.656\r\n\t\tc0.219,1-0.031,1.438-0.625,2.688c0.203-0.062,0.516-0.031,0.656-0.312c0.219,0.344,0.281,0.406,0.219,0.562\r\n\t\tc-0.469,0.656-0.312,1-0.469,1.531C334.781,337.656,333.656,339.531,334.781,339.094z M307.641,319.75\r\n\t\tc-0.031-0.031,1.734,1.062,1.578,1.062c0.781,0.875,0.531,1.562,1.188,2.562c0-0.219,0.094-0.312,0.266-0.25\r\n\t\tc0.141,0.719,0.203,1.781,0.938,0.938c-0.141,0.281,0.172,0.062-0.141,0.406c0.891,0,0.031,1.25-0.172,1.656\r\n\t\tc0.141-0.062,0.219,0,0.25,0.125c0.078-0.219,0.25,0,0.594,0c-0.422,0.531-0.484,1.156,0.359,1.156\r\n\t\tc-0.359,0.625,0.094,0.25,0.094,0.75c0,0.125-0.906,1.594-0.969,1.75c-0.406-0.156-0.5,0.062-0.922-0.188\r\n\t\tc-0.047,0.25,0.062,0.219,0.141,0.406c-0.703-0.25-1.625-2-1.562-2c-0.031-0.312-0.469-2.812-0.422-2.844\r\n\t\tc-0.422,0-0.391-1.156-0.484-1.156c0.203-0.531-0.281-1.656-0.594-2.125C307.641,321.781,305.812,319,307.641,319.75z\r\n\t\t M313.719,330.656c0.953,0,2.75-0.312,2.516,0.312c0.484,0,0.453-0.125,1.078-0.125c-0.531,0.469-1.016-0.188-1.156,0.625\r\n\t\tc1.156,0,1.203,0.344,0.75,1.156c-0.594,0-1.672-0.562-2.656-0.562c0,0-2.875-0.781-3.031-0.781\r\n\t\tc0.062-0.219,0.141-0.031,0.219-0.25c-0.281,0-0.531,0-0.812,0C311,329.5,313.094,330.062,313.719,330.656z M315.625,325.062\r\n\t\tc0.188-0.562,1.625-1.812,1.438-1.406c0.469-0.188,0.469,0.094,0.719,0c0.594,0,0.453-0.844,0.703-0.844\r\n\t\tc0.641-0.438,1.859-0.281,2.109-1.188c0.078-0.062,1.969-1.406,1.766-1.406c0.641-0.5,1.047-0.938,1.422-1.625\r\n\t\tc0,0.531,0.297,0.125,0.516,0.125c-0.203,0.625,0.141-0.188-0.109,0.875c0.344,0,0.219-0.156,0.172,0.312\r\n\t\tc0.562-0.031,0.25,0.219,0.641,0.219c-0.172,0.5-0.672,0.5-0.906,0.469c0,0.719-1.062,0.688-0.75,1.125\r\n\t\tc-0.609,0.5-0.75,1.938-0.047,2.469c-1.391,0.219-1.141,1.531-1.891,2.094c-0.391,0.281-1.734,1.562-2,1.906\r\n\t\tc-0.609,0-1.125-0.062-1.844-0.062c-0.094,0.156-1.125-0.125-1.094-0.125c-0.766-0.562-0.453-0.531-0.469-1.75\r\n\t\tc-0.156,0.062-0.312,0.125-0.469,0.156c0.094-0.094,0.172-0.188,0.25-0.281C315.453,326.188,315.656,325.281,315.625,325.062z\r\n\t\t M323.094,306.25c0.203,0.531-1.281,1.938-1.781,1.938c0.156-0.312,0.094-0.406-0.219-0.312\r\n\t\tC320.219,306.531,322.906,305.812,323.094,306.25z M328.625,311.719c-0.391,0,0.141-0.156-0.25-0.156\r\n\t\tc0.25-0.25,0.406-0.406,0.469-0.75c-0.188-0.062-0.297-0.031-0.281,0.156c-0.297-0.438-0.281-0.875-0.156-1.531\r\n\t\tc0.109,0.062,0.219,0.125,0.344,0.188c0.625-1.625,0.438-2.719,2.094-2.719c-0.062,0.156-0.078,0.438-0.312,0.656\r\n\t\tc0.469,0-0.156,2-0.906,2c-0.484,1.781-0.688,1.594,0.656,1.594c-0.047,0.094-0.062,0.188-0.078,0.312\r\n\t\tc0.047,0,0.328-0.188,0.328-0.188c0.266,0.625,0.125,1.062-0.031,1.5c-0.125-0.188-0.438-1-0.641-1\r\n\t\tc-0.047,0.125-0.047,0.188-0.172,0.469c-1.062-1.406-0.938,1.094-1.25,1.094c0-0.188,0.078-0.219,0.125-0.438\r\n\t\tc-0.438,0-0.375-0.5-0.469-0.719C329.562,312.188,328.203,312,328.625,311.719z M330.938,324.969\r\n\t\tc0.016-0.125,0.031-0.219-0.156-0.281c0.375,0,0.484-0.062,0.906-0.062C331.562,324.906,331.188,324.906,330.938,324.969z\r\n\t\t M330.469,322.75c0.188-0.219,0.188-0.281-0.016-0.25c0.047-0.125,0.078-0.281,0.141-0.438\r\n\t\tC330.734,322.406,331.156,322.656,330.469,322.75z M331.641,302.188c-0.172,0.344-0.453,0.656-0.734,0.969\r\n\t\tc-0.734-0.562,0.594-3.125,1.531-3.312C332.469,300.656,331.812,301.312,331.641,302.188z M331.438,312.719\r\n\t\tc-0.156,0.469-0.312,1.031-0.078,1.562c-0.234,0-0.078-0.062-0.172-0.25C331.266,313.844,330.031,313.156,331.438,312.719z\r\n\t\t M330.984,315.219c-0.078,0-0.172,0-0.25,0c-0.047-0.344-0.016-0.625-0.016-0.875c-0.234,0.062-0.25-0.031-0.062-0.281\r\n\t\tC331.125,314.281,331.094,314.812,330.984,315.219z M328.438,315.688c0.031-0.25,0.875-0.812,1.125-1.094\r\n\t\tc-0.156,0.812-0.375,1.5-1.125,1.5C328.578,315.938,328.578,315.781,328.438,315.688z M328.344,315.094\r\n\t\tc0.25-0.719,0.234-1.188,1.062-0.969c-0.109,0.406-0.391,0.75-0.406,0.938c-0.156,0.062-0.188,0-0.062-0.125\r\n\t\tC328.719,315,328.531,315.062,328.344,315.094z M329.5,315.188c0.172-0.188,0.531-0.75,0.656-0.812\r\n\t\tc-0.062,0.312-0.484,1.406-0.938,1.406C329.297,315.594,329.406,315.375,329.5,315.188z M329.688,313.719\r\n\t\tc0.172-0.5,0.703-0.156,0.625,0.062C330.109,313.781,329.922,313.75,329.688,313.719z M330.344,315.562\r\n\t\tc-0.25,0.188-0.766,0.438-0.656-0.094C330.062,315.469,330.141,315.125,330.344,315.562z M328.344,317.281\r\n\t\tc-0.078,0.344,2.25-1.156,2.641-1.219c0.109,0.969-0.391,1.938-0.922,2.688c0.047-0.062,0.031,0.219-0.109,0.219\r\n\t\tc0.047-0.125,0.078-0.188,0.078-0.219c-0.219,0.344-0.531,0.656-0.75,0.969c0.094-0.156,0.062-0.219-0.094-0.125\r\n\t\tc0.062-0.219,0.172-0.188,0.219-0.344c-1.391,0.625-0.469-0.781-0.406-1.188c-0.344,0-0.484,0.062-0.938,0.062\r\n\t\tc-0.031-0.094-0.031-0.188-0.031-0.281c-0.25,0.281-0.359,0.531-0.703,0.594C327.531,317.844,327.719,317.438,328.344,317.281z\r\n\t\t M328.969,327.594c0,0-0.562-0.062-0.719-0.062c0.625-0.406,1.031-0.25,1.875-0.156\r\n\t\tC329.969,327.781,329.406,327.594,328.969,327.594z M330.406,323.281c-0.156,0.375-0.312,0.312-0.578,0.562\r\n\t\tc0.641,0,0.422,0.531,0.047,0.531c0.219-0.719-0.656,0.844-0.578,0.719c-0.156-0.156-0.016-0.188-0.297-0.188\r\n\t\tc0.219-0.688,0.438-0.938,0.438-1.531c0.25-0.375,0.5-0.781,0.844-0.875c-0.25,0.656-0.188,0.594-0.594,1.25\r\n\t\tC329.953,323.688,330.125,323.406,330.406,323.281z M327.312,313.562c0.188,0.031,0.25,0.094,0.188,0.25\r\n\t\tC327.312,313.562,327.312,313.906,327.312,313.562z M327.594,323.5c0.156-0.062,0.188-0.156,0.438-0.156\r\n\t\tc-0.5,1.031-3.188,1.625-3.078,1.125c-0.922,0.125-1.391,1.094-0.938,1.656c0.422,0,1.188-0.344,1.781-0.344\r\n\t\tc-0.203,0.188-0.297,0.281-0.562,0.406c0.156,0.031,0.328,0.062,0.5,0.094c-0.078,0.281-0.359,0.281-0.641,0.281\r\n\t\tc0.016-0.125,0.062-0.25,0.141-0.375c-0.359,0-1.109,0.688-1.516,0.719c0.219,0.281,0.5,1.062,0.672,1.062\r\n\t\tc0.047,0.438-0.094,1.438-1.234,1.438c0.297-0.469,0.219-0.938,0.219-1.531c-1.234,0-0.531,2.062-2.047,2.062\r\n\t\tc0.281-0.844,0.516-1.219,0.844-1.719c-0.844,0,0.469-1.5,0.641-2.031c0.219-0.625,0.938-1.688,1.375-1.938\r\n\t\tC324.469,323.656,326.719,324.25,327.594,323.5z M327.359,327.844c-0.109,0.281-0.297-0.125-0.672-0.062\r\n\t\tc0.25-0.469,1.094-0.188,1.297-0.219C327.75,327.656,327.562,327.75,327.359,327.844z M319.188,332.438\r\n\t\tc0.625,0.188-0.469,0.188,0.75,0.188c-0.016,0.125-0.016,0.25-0.031,0.375c-0.781,0-1.281,0.125-1.719,0.188\r\n\t\tC318.656,332.25,318.906,333.25,319.188,332.438z M318.031,332.969c0.125-0.188,0.031-0.219-0.25-0.156\r\n\t\tc0.203-0.156,0.375-0.469,0.656-0.469c-0.094,0.125-0.062,0.156,0.094,0.094C318.406,332.656,318.188,332.75,318.031,332.969z\r\n\t\t M319.594,333.594C321.828,333.844,319.281,334.531,319.594,333.594L319.594,333.594z M320.344,332.844\r\n\t\tc0.281-0.719,1.906-0.312,2.438-0.375c-0.094,0.188-0.109,0.375-0.312,0.375C322.281,333,320.734,332.812,320.344,332.844z\r\n\t\t M325.734,332.25c-0.672,1-3.547,2-4.109,2.094C321.891,333.594,324.656,332.562,325.734,332.25z M323.859,329.938\r\n\t\tc0.438-1.031,0.078-0.094-0.047-0.562c0.281,0,0.625-0.375,0.906-0.594C324.531,329.375,324.359,329.625,323.859,329.938z\r\n\t\t M324.219,317.375c0.172-0.812,1.625-1.562,1.875-2.156c0.438,0,0.453-0.812,0.766-0.812\r\n\t\tC326.75,315.25,325.219,317.375,324.219,317.375z M317.75,332.375c-0.141,0.125-0.391,0.375-0.578,0.375\r\n\t\tc0.109-0.188,0.328-0.375,0.016-0.375C317.391,332.219,317.328,331.969,317.75,332.375z M312.781,328.031\r\n\t\tc0.062-0.188-0.25-0.812-0.391-0.812c0.281-0.719,0.109-0.219,0.344-0.531c0.109,0.094-0.078,0.406,0.234,0.125\r\n\t\tC312.906,326.906,313.453,328.031,312.781,328.031z M307.562,326.844c0.125-0.375,0.047-0.312-0.031-0.688\r\n\t\tC307.5,326.125,308.469,326.844,307.562,326.844z M307.188,323.656c0.344,0,0.094-0.094,0.375-0.094\r\n\t\tc-0.094,0.312,0.188,0.281,0.047,0.688C307.531,323.938,307.359,323.875,307.188,323.656z M331.938,329.781\r\n\t\tc-0.047,0.188-0.719,0.719-0.812,0.719c0.109-0.156,0.734-1.094,0.469-1.094c0.406,0,0.234,0.094,0.484,0.094\r\n\t\tC332,329.562,331.328,330.031,331.938,329.781z M340.062,330.062c-0.375,0.688,0.156-0.344-0.188,0.625\r\n\t\tc0.219,0.312,0.094,0,0.188,0.5c0.078-0.062,0.188-0.094,0.312-0.062c-0.125,0.406,0.25,0.281,0,0.656\r\n\t\tc-0.219,0.094-1,0-0.906-0.156c-0.109,0.094-0.219,0.156-0.312,0.188c0.094-0.375-1-0.875-0.672-1.594\r\n\t\tc-0.484,0.094-4.547,1.969-3.891,0.656c-0.656,0-1,0.156-1.625,0.438c0.438-0.469,0.562-0.5,1.031-0.469\r\n\t\tc0.141-0.562,0.188-2.5,0.141-2.469c-0.141,0.062-0.312,0.125-0.453,0.188c-0.094-0.844-0.797-0.5-1.25-0.719\r\n\t\tc0.062-0.094,0.156-0.156,0.219-0.25c-0.266,0-0.516-0.188-0.438-0.469c-0.219,0.062-0.625,0.438-0.75,0.594\r\n\t\tc0.078-0.125,0.047-0.156-0.094-0.125c0-0.156,0.094-0.25,0.234-0.25c0,0-0.25-0.25-0.25,0.031\r\n\t\tc0.297-0.469,0.219-0.562-0.234-0.406c0.156-0.594,1.312-0.188,1.547-0.688c-0.219,0.031-0.453,0.062-0.672,0.094\r\n\t\tc0.172-0.25-0.031-0.281-0.484-0.094c0.172-0.375,0.062-0.375-0.469-0.312c0.609-1.219,1.562-0.75,2.297-1\r\n\t\tc-0.062,0.156-0.344,1.156-0.406,1.656c0-0.156,0.094-0.219,0.297-0.156c-0.234,0.75,0.109,0.188-0.141,0.688\r\n\t\tc1.062-0.188,1.578-1.625,2.75-1.625c0.625-0.031,1.688,1.125,2.5,0.844c-0.031,0.125,0.812,0.812,1.234,0.688\r\n\t\tc-0.172,0.438,0.234,1.5,0.984,1.125c-0.094,0.25-0.5,0.938-0.656,0.938C339.812,329.312,339.312,330.281,340.062,330.062z\r\n\t\t M337.25,297.781c0,0.219-0.281,0.406-0.406,0.5C336.906,297.781,336.969,298.094,337.25,297.781z M336.906,291\r\n\t\tc0.172-0.062,0.344-0.125,0.484-0.188C337.219,291.219,337.125,290.969,336.906,291z M339.562,290.906\r\n\t\tc-0.469,0.094-0.219-0.125-0.219-0.438c0.281-0.125,0.344-0.031,0.281,0.156c0.547-0.844,0.625-0.375,1.219-0.438\r\n\t\tc-0.078,0.625-0.094,0.438,0.125,0.875c-0.125,0.188-0.344,0.656-0.469,0.656c-0.078,0.344-0.406,1.531-0.891,1.531\r\n\t\tc0.078-0.25,0.203-0.531,0.281-0.781c-0.234,0.25-0.234,0.5-0.641,0.5c0.031-0.25,1-1.938,0.594-1.938\r\n\t\tC339.531,292.031,339.359,291.562,339.562,290.906z M344.156,326.219v0.031c0,0-0.125,0.094-0.25,0.188\r\n\t\tc-0.609,0.594-1.312,1.719-2.578,1.719c0.141-0.156,0.078-0.188-0.141-0.188c0.594-0.094,0.875-0.562,1.406-0.75\r\n\t\tc-0.094,0.219,0.844-0.469,1.312-0.781C344,326.344,344.078,326.281,344.156,326.219c0.031-0.219,0.062-0.438,0.094-0.688\r\n\t\tc-0.375,0.094-0.094-0.156-0.562-0.25c0.25-0.188,0.359-0.031,0.688-0.031c-0.266,0.344,0.188,0.5,0.219,0.812\r\n\t\tC344.438,326.062,344.297,326.125,344.156,326.219z M345.031,327.281c-0.375,0.094,0.109-0.219-0.188-0.094\r\n\t\tc0.188-0.469,0.156-0.344,0.281-0.688c0.094,0,0.375,1.25,0.281,1.25C345.031,328.25,344.625,327.906,345.031,327.281z\r\n\t\t M345.75,329.125c-0.031-0.25-0.406-0.25,0.125-0.5C345.812,328.812,345.797,328.969,345.75,329.125z M346.375,329.969\r\n\t\tc0.266-0.25,0.125-0.781,0.656-0.281C346.938,329.938,346.719,330.031,346.375,329.969z M346.375,328.406\r\n\t\tc0.266-0.312,0.156-0.125,0.516-0.25c-0.031,0.156-0.016,0.312,0.078,0.406C346.75,328.906,346.625,328.406,346.375,328.406z\r\n\t\t M347.062,330.312c-0.234,0-0.031-0.062,0.031-0.219c0.094,0,0.188,0.031,0.281,0.031\r\n\t\tC347.5,330.688,347.25,330.219,347.062,330.312z M346.656,288.344c0.062-0.25,0.281-0.844,0.281-1.125\r\n\t\tc-0.531,0.781-0.531,0.75-0.969,1.656c-0.156-0.094-0.156-0.25-0.062-0.438c-0.375,0.25-0.812,0.344-1.188,0.625\r\n\t\tc0-0.219,0.141-0.156,0.172-0.312c-0.531-0.125-0.297-0.031-0.703,0.219c0.531,0-0.75,1.156-0.906,1.25\r\n\t\tc-0.297-0.375-0.25-0.875,0.172-1.312c-0.609,0.062-0.266-0.062-0.609-0.094c-0.031,0.125-0.094,1.156-0.031,1.156\r\n\t\tc-0.422,0.781-1,0.219-1.281,1.5c-0.688-1.062,0.156-1.75,1.125-2.312c-0.688-0.031-1.469,0.438-2.281,0.625\r\n\t\tc0.109-0.25,1.812-1.719,1.75-1.312c0.094-0.062,0.188-0.125,0.281-0.188c-0.156,0.062-0.188,0-0.094-0.125\r\n\t\tc0.422,0,0.891-0.406,1.344-0.031c0.141-0.156,0.344-0.375,0.453-0.531c0.172-0.094,0.234-1.719,1.047-2.156\r\n\t\tc-0.406,0.469-0.234,0.625-0.344,0.969c2.156,0,2.188-5.062,3.062-5.906c-0.031,0.156-0.031,0.312-0.031,0.469\r\n\t\tc0.172-0.031,0.328-0.031,0.5-0.062c-0.156,0.438,0.234,1.188,0.188,1.812C347.531,282.719,347.344,287.75,346.656,288.344z\r\n\t\t M350.734,277.969c0-0.5-1.016,1.281-1.047,1.281c-0.688,0.094-1.094-0.656-1.234-0.094c-0.438,0-0.562-0.219-0.641,0.406\r\n\t\tc0.703-0.094,0.188,0,0.625,0.219c-0.406,0.094-0.516,0.344-0.875,0.438c0-0.812,0.25-1.562,0.25-2.062\r\n\t\tc0,0,0.562,0.094,0.719,0.188c0.031-0.594,0.406-3.125,0.531-3.031c0.578,0.344,0.375,2.125,1.5,1.438\r\n\t\tc0.125,0.062,0.062,0.344,0.219,0.438c0.125-0.094,0.234-0.156,0.344-0.25c-0.031,0.188-0.078,0.344-0.125,0.5\r\n\t\tc0.312,0,0.25,0.062,0.312,0.438C351.125,277.906,350.938,277.938,350.734,277.969z M351.047,270.781\r\n\t\tc-1.141-2.156-0.859,3.938-0.859,3.938c-0.25,0.094-0.125-0.844-0.719-0.688c-0.312,0.094,0.062,0.844-0.406,0.844\r\n\t\tc0-0.125,0.438-1.281,0.188-1.281c0-1.719,0.281-3.531,0.281-5.469c-0.125,0.031,0.531-3.844,0.609-3.938\r\n\t\tc0.281,1,0.422,2.562,0.328,3.406c-0.094,0.594-0.219,1.312-0.125,1.844C350.484,270,351.047,270.094,351.047,270.781z\r\n\t\t M353.5,274.875c-0.375,0.5-0.656,0.75-1.094,1.188c0.156-0.438,0.891-1.625,1.125-1.625\r\n\t\tC353.516,274.594,353.516,274.75,353.5,274.875z M353.969,274.531c0-0.344,0.531-1.156,0.531-0.938\r\n\t\tC354.312,273.969,354.312,274.25,353.969,274.531z M357.641,267.781c0-0.188,0.453-0.969,0.453-0.562\r\n\t\tC358.094,267.438,357.812,267.656,357.641,267.781z M366.188,234.188c0.422-0.188,0.531-0.219,1.062-0.469\r\n\t\tc0.922,0.781-0.672,1-1.156,1.188C366.016,234.688,366.188,234.438,366.188,234.188z M362.156,237.625\r\n\t\tc-0.125,0-0.188,0.062-0.156,0.188c-0.125,0.031-0.562-0.312-0.391-0.375C361.5,237.406,361.938,237.375,362.156,237.625z\r\n\t\t M352.594,238.406c-0.094-0.594,0.531,0.188,0.844,0.156c-0.594,0.188-0.875,0.344-1.297,0.406\r\n\t\tC352.141,239,352.594,238.031,352.594,238.406z M351.75,238.094c-0.141-0.094-0.031-0.344-0.25-0.312\r\n\t\tc0.219,0.375,0.5,0.906-0.062,1.688c0.391,0,0.031-0.219,0.391-0.219c0.078-0.406,0.25-1.125,0.344-1.438\r\n\t\tc0,0.281,0.047,0.25,0.109-0.031c0.156,0.5-0.125,0.875-0.453,1.469c0.141-0.125,0.172-0.031,0.141,0.125\r\n\t\tc0.766-0.5,3-1.281,3.938-1.375c1.766-0.625,1.062,0.969,2.328,1.812c-0.062-0.094-0.047-0.156,0.062-0.156\r\n\t\tc0.078,0.25,0.141,0.625,0.172,0.938c-0.344-1.906,2.156-1.719,2.047-2.094c0.5,0.406,0.922,0.25,1.141-0.375\r\n\t\tc0.188,0.625,0.531,0.875,0.734,1.594c1.062-0.906,0.5-1.594,0.172-2.75c0.781,0.094,1.547-0.188,2.062-0.594\r\n\t\tc0.094,0.312,1.031,0.938,1.469,0.438c0.094,0.312,1.75,1.219,2.062,1.688c0.844,0.594,1.734,0.719,1.938,2.156\r\n\t\tc0.328-0.125-0.312-1,0.594-1.156c0,0.125,0.297,0.156,0.297,0.156c0.578,0.125,0.484,1.062,1.125,0.844\r\n\t\tc0.062,0.406-0.25,0.625-0.109,1.062c-0.359,0.188-0.484,0-0.719,0.219c0.094,0.469,0.266,0.219,0.094,0.938\r\n\t\tc0.094-0.031,0.281,0.531,0.406,0.688c-0.281,0.094-0.156-0.156-0.219,0.25c-0.062-0.125-0.156-0.25-0.234-0.375\r\n\t\tc-0.078,0.156-0.172,0.312-0.234,0.469c-0.391-0.594-0.422-0.25-0.719-0.344c-0.188-0.531-0.531-1.188-1.094-1.188\r\n\t\tc-0.375,1.875-0.781-0.312-0.828-0.812c-0.641,0.406,0.031,1.562,0.016,2.156c-0.016,0.938-1.391,0.844-1.047,1.656\r\n\t\tc0.203-0.062,0.141-0.188,0.297-0.281c0.203,0.75,1.375,2.312,0.438,2.688c0-0.719-1.719,1.281-1.969,1.781\r\n\t\tc-0.062-0.062-0.125-0.156-0.203-0.25c0,0.688,0.109,0.312-0.281,0.594c0.141,0.469-0.141,0.5-0.203,0.562\r\n\t\tc0,0.625-0.547,1.125-0.406,2c-0.734-0.281-0.625-0.781-1.297-0.844c-0.391,0-0.484,1.25-0.875,1.75\r\n\t\tc0.062-0.406-0.016-0.781-0.016-1.156c-0.469,0.156-0.344,1-0.656,1.188c-0.25-0.719-0.609,0.219-0.781,0.531\r\n\t\tc-0.203,0.312-0.531,2.312-0.281,2.688c0-0.406,0.781,0.188,0.25,0.688c-0.375,0.438,0.062,1.062,0.125,1.5\r\n\t\tc0.094-0.062,0.219-0.125,0.312-0.219c0.094,0.844-0.344,0.438-0.375,0.594c-0.125,0.5-0.406,0.969-0.531,1.625\r\n\t\tc-0.062,0.312,0.438,0.375,0.25,0.875c-0.156,0.438-0.547-0.062-0.703,0.375c0,0.469-0.578,2.094-0.766,2.125\r\n\t\tc0,1.031-0.531,2.219-1.25,2.906c0-1.281-1.719-7.688-0.156-8.031c0-1.906,1.375-2.969,2.141-4.969\r\n\t\tc0-0.531,0.078-1.531,0.609-1.688c1.156-0.25-0.125-2.562,1.047-2.594c-0.734-0.562-0.391-0.156-1.047-0.031\r\n\t\tc0.312-0.094-0.031,2.156-0.031,1.188c-0.578,0.188-0.75,1.406-1.172,2.156c-0.016-0.375-0.047-0.406,0.016-0.844\r\n\t\tc-0.188,0.031-0.188,0.219-0.281,0.375c0.062-0.375,0.156-0.938,0.062-1.312c-0.25,0.219-1.438,0.719-1.906,0.844\r\n\t\tc-0.531,0.781-1.344,2.531-1.125,3.375c0.156-0.125,0.281-0.188,0.453-0.281c0.062,0.625-0.984,1.219-1.859,1.594\r\n\t\tc0.031-0.719-0.391-0.5,0.406-0.906c-0.625-0.531-0.281-0.625-0.906-0.156c0-0.375-1.297-0.312-1,0.688\r\n\t\tc-0.875,0.156-1.25-0.469-1.781,0.375c-0.141-0.562-0.25-0.312-0.641-0.719c0,0.281-0.797,0.281-1.078,0.531\r\n\t\tc0.031-0.125,0.062-0.25,0.094-0.344c-1.609,0.312-1.75,3.812-3.094,4.562c0.094,1.531-7.094,2.469-7.094,3.969\r\n\t\tc0.328-0.031-4.156-0.062-4.156-0.125c0,0.406,0,0.875,0,1.312c0,0,5.359-0.344,5.453-0.562c0.078,0.062,2.672,0.094,2.766,0.156\r\n\t\tc-0.094,0.219,1.125,0.438,1.047,0.625c0.375,0,1.125-0.188,1.125-0.5c0.312,0,0.266,0.156,0.609,0.125\r\n\t\tc0-1.594,1.562,0.469,2.125,0.469c0-0.219-1.188,3.062-0.766,3.281c0.594,0.312-0.734,3.5-1.188,3.875\r\n\t\tc-0.359,0.25-1.594,3.125-1.656,3.5c-1.094,0.531-1.109,2.938-2.422,2.688c-0.125-0.562-0.344-0.312-0.188-0.969\r\n\t\tc-0.125,0.125-0.25,0.25-0.375,0.375c0.031-0.125,0.078-0.219,0.125-0.344c-0.688,0-1.672,1.75-2,2.375\r\n\t\tc-0.281,0.469-1.328,3.125-2.031,3.125c0.188,0.062,0.594,0.438,0.75,0.375c-0.125,0.375,0.438,2.656,0.484,2.656\r\n\t\tc-0.484,1.594-1.203,1.656-2.391,2.875c-0.047-0.75,0.125-1.562,0.719-2.094c-0.203,0.031-0.188-0.875-0.25-1.062\r\n\t\tc0.656,0,0.359-0.969-0.031-0.969c-0.516,0.062-1,0.25-0.734-0.406c-0.047,0.031-0.109,0.094-0.172,0.156\r\n\t\tc0-0.625-0.25-0.688,0.562-1c-0.688,0.094-0.031-1.219-0.594-1.062c-0.359,0-0.75,0.031-0.906,0.031\r\n\t\tc-0.344,0.594-1,0.531-1.062,1.188c-0.125,0.031-0.25,0.031-0.422,0.031c0.109-0.25,0.234-0.375,0.375-0.625\r\n\t\tc-0.641,0,0.359-1.188,0.578-1.625c-0.969-0.531-1.656,0.625-2.219,1.312c-0.703,0.844-1.156,0.594-1.516,1.594\r\n\t\tc-0.047,0.312,0.453,1.125,0.641,1.562c0.312-0.094,0.438-0.438,0.812-0.625c0.797-0.375,1.062,0.031,2.062-0.031\r\n\t\tc-0.188,0.562-1.625,1.5-1.938,1.562c-0.109,0.344-0.75,0.75-0.844,1.094c-0.188,0.844,0.484,1.438-0.141,2.062\r\n\t\tc0.453,0,0.078-0.156,0.391-0.156c0.031,0.656,0.594,1.438,0.5,2c-0.109,0-0.5,0.062-0.812,0.031\r\n\t\tc0.312-0.031,0.688,0.281,0.906,0.281c-0.031,0.688-0.625,0.812-0.625,1.25c0.938,0,0.453,0,0.969,0.469\r\n\t\tc-0.5,0.531-0.734,2.031-1.578,2.031c0,0.688-1.609,2.938-1.797,2.938c0.062,0.656-0.312,0.906-1.047,0.969\r\n\t\tc-0.078,0.969-2.219,2.406-3.172,2.406c0.094-0.375-0.047-0.188-0.125-0.594c0,0.844-1.938,1.562-2.344,1.562\r\n\t\tc-0.062,0.062-1.469,1.375-0.844,1.25c-0.719,0.125-0.906-0.438-0.391-1.219c-0.234,0-0.641-0.031-0.812-0.094\r\n\t\tc-0.453-0.219-0.734,0.688-1.141,0.812c-0.469,0.156-0.859,1.125-1.25,1.125c-1.203,1.906,0.188,1.844,0.188,3.188\r\n\t\tc0.781,0,0.719,3.594,0.656,4.125c-0.766,2-2.25,2.219-3.719,2.219c0.406,0.531,0.25,0.469,0.344,0.844\r\n\t\tc-0.25,0-0.328-0.375-0.438-0.562c0,0.25-0.297,0.875,0.031,0.875c-0.047,0.094-0.844,0.594-1.031,0.625\r\n\t\tc0.344-0.656-0.031-1.188,0.141-1.938c-0.172,0-0.422,0.281-0.172-0.312c-0.109,0.062-0.219,0.094-0.328,0.156\r\n\t\tc-0.016-0.875-0.516-1.219-0.766-2.094c-0.016,0.188-0.125,0.219-0.344,0.125c0.047-0.156,0.078-0.531,0.078-0.719\r\n\t\tc-1.359-0.156-2.297,3.812-2.312,4.844c0.391-0.094,1.328,2.438,1.422,3.062c0.094,0.812-0.188,1.938-0.188,3.031\r\n\t\tc-0.25,0-1.516,0.312-1.234-0.25c-0.266-0.312-0.797-2.281-0.672-2.281c0.281-0.875,0.469-1.781,0.281-2.719\r\n\t\tc-0.312-1.5-0.531-0.75-0.062-2.219c0.375-1.094,1.688-7.406,0.125-7.406c-0.484,0.719-0.875,1.125-1.641,1.188\r\n\t\tc0-1.25,0.703-2.812,0.297-4.469c-0.375,0-0.516,0.406-0.766,0.406c0.25-0.719-0.281-1-0.078-2.188c0.156,0-0.734-1.25-0.969-1.438\r\n\t\tc-0.25,0.75,0.062,0.969-0.75,1.312c-0.25,0.812-2.312-0.281-2.312,0.781c-0.156,0.25-1.406,1.25-1.484,1.5\r\n\t\tc-0.922-0.094-1.859,1.625-3.016,1.844c-0.672,0.156-1.172,0.844-1.844,1.312c-0.844,0.656-0.562,0.188-1.047,1.188\r\n\t\tc-0.172-0.062-0.719,1.969-0.859,2.375c-0.25,1.188-1.688,3.719-3.406,3.719c0.172-0.531-0.078-2.062-0.219-2.906\r\n\t\tc-0.969,0,0.109-3.406-0.422-3.562c0.609-1.844-0.984-5,0.891-6.5c-0.5-0.125,0-1.531,0.062-1.625\r\n\t\tc-0.172-0.031-1.625,2.688-2.219,1.5c-1.344-2.781,0.219-0.625,1.125-2.562c-0.188-0.062-3.062,0.594-1.656-1.031\r\n\t\tc-0.625,0.188-1.469-0.781-1.578-1.188c-0.078-0.281,0.594-0.75-0.5-0.844c-0.703-0.125-0.609,0.188-1.266,0.125\r\n\t\tc-1.016-0.188-5.156-0.062-5.25-1.719c-0.203-2.25-3.031-0.219-3.031-1.219c-1.297-0.406-1.641-3.375-1.625-4.406\r\n\t\tc-0.594-0.094-1.562-0.688-1.781-0.688c-0.094,0.469,0.219,0.469,0.094,0.844c-0.094-0.062-0.156-0.156-0.25-0.219\r\n\t\tc-0.156,0.281-0.312,2.531,0.438,2.688c0.062,0.438,0,2.312,0.281,2.688c0.141-0.188,0.609-0.656,0.875-0.656\r\n\t\tc0.031,0.312-0.531,1.375-0.438,1.531c0.453,0.75,1.359,0.344,1.891,0.875c0.031-0.281,2.141-1.438,2.547-1.812\r\n\t\tc-0.125,0.531-0.375,1.625,0.031,1.781c0.125,0.219,0.625,0.781,0.594,0.875c0.938,0.094,0.953,1.719,1.516,1.719\r\n\t\tc-0.453,0.469-0.984,1-1.297,1.531c-0.031,0-1.844,1.875-1.219,1.875c-0.484,0-2.75,1-2.75,1.281\r\n\t\tc-0.484,0.25-2.703,0.281-2.703,0.969c-0.984,1.406-4.703,1.562-5.844,1.688c-0.516,0.062-3.688,0.656-2.312-1.25\r\n\t\tc-0.266-0.094,0.078-0.906,0.156-1.219c0.203-0.719-0.031-1.531-0.078-2.125c0.172-0.531-0.453-2.625-0.625-2.688\r\n\t\tc0.062-0.469-0.422-0.656-0.641-0.656c0.141-0.469-0.094-2.094-0.25-2.156c1.125-1.188,0.219-3.031-0.109-4.469\r\n\t\tc0.109-0.438-1.234-3.312-1.469-3.312c-0.75,1.688-0.844-1.125-1.266-1.281c-0.5,1.562,0.719,4.812,1.125,6.188\r\n\t\tc-0.844-0.125,0.391,2.656,0.469,3.094c-0.031,0-0.75,2.219-0.375,2.875c0.297,0.5,0.812,0.969,0.75,1.406\r\n\t\tc-0.062,0.125-0.375,1.625-0.219,2.031c0.188,0.906,3.5,4.031,1.656,4.688c1.062,1.5,1.406,1.25,3.094,1.75\r\n\t\tc0.297-0.562,3.516-0.469,3.766-0.344c-1.406,1.625-2.297,4.969-4.578,6.344c-1.094,0.719-1.922,1.469-3.297,2.125\r\n\t\tc-0.766,0.312-2.328,0.625-2.672,1.625c-0.781,0-1.406,1.5-2.266,1.5c-0.859,0.625-1.891,1.562-2.078,2.531\r\n\t\tc-0.125,0.562,0.156,0.75,0.188,1.219c0.094,1.062-1,1.375-0.438,2.562c0.156,0.375-0.562,4.281-0.75,4.219\r\n\t\tc-1.109,1.219-2.719,1.781-4.547,1.438c-0.188,0.375-2.297,1.531-1.734,1.906c0.062,0.062,0,1.562-0.109,1.875\r\n\t\tc0.453,0.188-0.453,1.062-0.875,1.25c-0.266-0.094-2.109,0-2.188,0.406c0.141,0.094,0.266,0.156,0.391,0.219\r\n\t\tc-0.312,0.438-0.469,1.406-1,1.312c0.094,1.719-5.234,2.062-5.516,3c-2.266-0.562-4.984-0.719-6.531-1.219\r\n\t\tc0.172-0.75,1.047-4.781-0.516-5.062c0.281-0.688-0.344-1.656-0.094-2.688c0.188-0.875,0.25-1.531,0.344-1.938\r\n\t\tc0.031-0.969-0.969-1.844-0.734-2.625c0.234-0.938-0.703-1.188-0.453-2.094c0,0.062,0.375-1.781,0.766-1.656\r\n\t\tc0.109-0.344,1.547-2.469,2.047-2.344c0.344-1.219-0.344-2.25,0.656-3.062c-0.406-0.125-0.156-3.344-0.406-3.406\r\n\t\tc0.391-0.531-1.438-2.875-1.688-3.625c0.25,0.156,0.359,0.156,0.344-0.031c-0.688-0.281-0.344-1.75,0.406-1.5\r\n\t\tc-0.047-0.188-0.219-0.438-0.156-0.531c0.688,0.156,1.344-2.906,1.375-3.344c-0.297-0.25-0.688,0.25-0.547-0.5\r\n\t\tc-0.609-0.156-0.453-0.281-1.016-0.438c-0.078,0.812-1.5-0.406-1.719-0.438c0.188-0.594,0.047-0.844,0.188-1.312\r\n\t\tc-1.375-0.562-1.828-1.656-3.406-0.844c0.031-0.25,0.125-0.125,0.234-0.281c-0.172,0-0.219-0.062-0.109-0.188\r\n\t\tc-0.344-0.094-0.297,0.188-0.734-0.406c-0.047,0.281,0.078,0.438,0.141,0.688c-0.953-0.406-2.281,0.062-3.047-0.281\r\n\t\tc0.109-0.719-3.984-0.688-4.328-1c-1.156-1.188-2.312-3.156-2.906-4.531c0.047,0.062,0.078,0.125,0.125,0.188\r\n\t\tc-0.031,0-0.391-1.031-0.406-0.938c0.094,0.031,0.188,0.094,0.297,0.125c0.156-1.5-0.703-2.594-1.078-3.906\r\n\t\tc0.219-0.469-0.453-1.094-0.531-1.5c0.078-0.5,0.391-1.406-0.062-2.219c1.484,0.469,2.875-6.625,2.469-6.812\r\n\t\tc0.219-1.125,1.594-1.656,2.188-2.375c0.703-0.844,1.719-1.656,2.5-2.438c0.625-0.625,2.625-0.5,3.328-1.469\r\n\t\tc0.953-1.25,0.609-2.906,2.172-3.656c1.031,0.375,1.672-1.031,2.406-0.812c0.812-2.5,1.594,0.219,3.266,0\r\n\t\tc-0.125,0.219,0.109,0.344,0.172,0.531c1-0.344,2.281-0.094,3.219-0.688c0.844-0.469,4.922,1.656,5.062,1.062\r\n\t\tc0.688,0.688,1.688,0.531,2.438,0.625c-0.219,0.594,0.344,0.438,0.641,0.531c-0.188,0.594-1.562,1.219-0.734,1.469\r\n\t\tc-0.234,0.688-0.438,1.125-0.859,1.375c-0.609,0.344,0.109,1.281,0.203,1.344c0.328,0.75,2.031,1.781,2.688,1.969\r\n\t\tc-0.312,1.344,1.812,2.312,2.984,3c0.953,0.594,0.891-1.5,0.922-1.562c0.406-0.406,1.031-0.469,1.469-0.656\r\n\t\tc0.406-0.188,2.859,2.375,3.312,2.5c0.891,0.281,1.25,1,2.438,1.281c0,0.062,2.141,0.562,2.031,0.531c0-0.188,0-0.312-0.031-0.531\r\n\t\tc1,0.406,1.594,1.281,3.078,0.094c0.828-0.719,0.703-1.812,1.797-2.531c-0.547-0.344,0.234-2.188,0.375-2.781\r\n\t\tc-0.219-0.062-0.531,0.219-0.781,0.344c0.25-0.438-2.156,0.438-2.406-0.375c-0.094-0.469-0.625-0.656-1-0.781\r\n\t\tc-0.641,1.594-2.016-0.812-2.641-1.031c0.109-0.375,0.516-1.219-0.297-1.281c0.078-0.188,0.125-0.375,0.156-0.594\r\n\t\tc0.078,0.125,0.141,0.281,0.219,0.406c0.125-0.5,0.203-0.812,0.375-1.406c-1.297-0.375,0.422-1.062,1.094-0.938\r\n\t\tc0.062-0.281,1.25-0.156,1.734-0.031c0.203-0.625-1.125-0.281,0.672-0.5c-0.125,0.781,0.969,0.062,1.156,0.031\r\n\t\tc0.938-0.094,1.781,0.188,2.75,0.094c-0.312,0.812,3.922,2.75,4.875,1.594c0.172-1.25-1.172,4.391-2.172,4.25\r\n\t\tc0.078-0.422-0.109,7.719,0.016,7.719c-0.219,0-0.406,0-0.625,0c0.156,0,0.375-8.438,0.406-8.938\r\n\t\tc0.312-0.031,0.406-4.172,0.312-3.969c0.688-0.266,0.938-2.797,0.422-3.328c0.328,0.031,1.719-1.484,1.719-1.703\r\n\t\tc-1.75,0-2.984-0.094-4.547-0.359c-0.422,0.641,0.594,0.578,0.391,1.172c0.5,0.094,0.828,0.094,1.266-0.016\r\n\t\tc-0.094,0.141-0.031,0.141,0.109,0.109c-0.891,0.312-1.797,0.375-2.844,0.594c0.578-0.75,0.266-1-0.469-1.281\r\n\t\tc0.469-0.188,1.234-0.453,1.281-0.859c-0.5-0.125-1.266,0.047-1.656-0.734c0.234,0.062,0.422-0.031,0.625,0\r\n\t\tc-0.141-0.156-0.234-0.281-0.359-0.438c0.047-0.188-1.531,0.656-1.719,0.719c-0.531,0.25-0.703,0.938-0.734,1.375\r\n\t\tc-0.516-0.344-1.594,1.406-1.734,1.719c-0.594,1.312,0.297,1.219,0.156,2.406c-0.969-0.156-1.484,0.125-2.375,0.375\r\n\t\tc0.469-1.188-0.812-1.25-1.859-1.5c-0.078,0.375,0.016,0.562,0.234,0.906c-0.094-0.062-0.172-0.156-0.266-0.25\r\n\t\tc0.031,0.156,0.047,0.281,0.062,0.406c-0.141-0.062-0.109-0.156-0.25-0.25c-0.031,0.25-0.031,0.094-0.078,0.312\r\n\t\tc-0.375-0.125-0.344-0.531-0.375-0.938c-0.172,0.688-0.5,0.719-0.172,1.781c-0.281-0.094,0.031-0.156-0.234-0.25\r\n\t\tc-0.188,0.688,0.125,0.031-0.016,0.688c0.453,0.062,0.984,0.781,1.031,1.469c-0.203-0.281-0.328-0.469-0.672-0.5\r\n\t\tc0.031,0.406,0.219-0.188-0.031,0.625c-0.219-0.156-0.438-0.219-0.703-0.344c-0.047,0.156,0.125,0.312,0.172,0.531\r\n\t\tc-0.312,0-0.25-0.031-0.594-0.156c-0.281,1.219-0.719-0.312-0.922,0.25c-0.188-0.594-0.391-1.688,0.344-1.25\r\n\t\tc0-0.156,0.078-0.188,0.203-0.094c0.047-0.438-0.75-0.344-0.312-1.125c-0.141,0.031-0.266,0.062-0.375,0.062\r\n\t\tc0.094-0.469-0.25-0.656-0.141-1.219c-0.172-0.062-0.234,0.125-0.359,0.25c0.109-0.562,0.312-1.75,0.219-2.281\r\n\t\tc-0.031-0.156-0.031-2.031-1.094-2.031c0.094-0.312-1.25-1.531-1.344-1.562c-0.219,0-0.312-1.938-0.281-2.312\r\n\t\tc-0.188,0.312-0.656,0.875-0.844,0.781c-0.031-0.656-0.094-0.938,0.312-1.281c-0.406-0.156-0.875-0.125-1.219-0.188\r\n\t\tc-0.25,0.625-0.875,1.844-0.156,2.156c0.281,0.062,0.625,0.75,0.438,1.156c0.516,0.156,0.594,1.844,1.562,1.969\r\n\t\tc-0.094,0.156-0.188,0.312-0.281,0.438c0.812,0.219,1.25,1.688,1.125,2.219c-0.266-0.094-0.438-0.906-0.719-0.906\r\n\t\tc-1.203,0.656,0.031,0.938-0.281,1.594c-0.172-0.031-1,1.438-1.656,1.219c2.047-3.625-2.922-4.562-2.094-8.438\r\n\t\tc-0.516-1.156-2.172-0.938-2.875-0.25c-0.406,0.406-3.562-2.312-3.062,0.719c-0.922-0.344-2.422,0.938-3.094,1.281\r\n\t\tc-0.656,0.312-0.125,0.719-0.438,1.125c-0.156,0.562-1.031,0.5-1.188,1.156c-1.406,0.875-2.156,0.094-3.562,0.344\r\n\t\tc-1.094,0.219-1-0.188-1.266-1.156c-0.078-0.344-1.562-0.625-1.859-0.75c0.25-0.844,0.438-1.469,0.656-2.031\r\n\t\tc-0.312-0.094-0.031,0.125-0.344,0.062c0.062-0.188,2.281-3.281,1.453-3.438c0.547-0.438,0.516-0.969,0.219-1.531\r\n\t\tc0.188,0.062,1.141-0.156,1.141-0.062c0.344-0.531,1.156,0.406,1.469,0.469c0.625,0.188,3.25,1.875,3.719,1.5\r\n\t\tc0.344-0.312,1.578-2.688,1.062-2.844c-0.062-0.719-0.891-0.938-0.391-1.688c-0.625-0.188,0.172-0.281-0.438-0.5\r\n\t\tc0.047-0.281,0.188-0.156,0.359-0.219c-0.312-0.125-0.406-0.281-0.5,0.156c-0.281-0.094-0.344-0.531-0.25-0.781\r\n\t\tc-0.297,0-0.406-0.25-0.438-0.547c0.031-0.078,0.062-0.141,0.172-0.078c-0.172-0.656,0.016-0.562,0.594-0.312\r\n\t\tc-0.047,0.156,1.438,8.078,1.906,8.266c0.109-0.594,0.109,6.328,0,6.328c0.141,0,0.312,0,0.453,0c-0.031,0,2.312-7.719,2.406-7.781\r\n\t\tc0.531-0.328,0.062-4.781,1.125-4.484c0.156-0.281,0.938-1.953,1.125-1.922c-0.25-0.094-0.062-1.125-0.156-1.344\r\n\t\tc0,0,0.5,0.125,0.156-0.094c0.094,0.094,0.172-0.078,0.25,0c0.516-1.781,2.25-2.406,3.094-1c0.406-0.922,0.719-0.219,1.078-0.562\r\n\t\tc0.234-0.5,0.422-1.125,0.578-1.719c0.125,0.031-0.641-3.312,1.5-2.438c0.188-0.812-0.109-0.547-0.531-0.734\r\n\t\tc0.125,0.016,0.188,0.078,0.188,0.234c-0.328,0.062-0.312,0.25-0.188-0.25c-0.25,0.094-0.266,0.281-0.516,0.188\r\n\t\tc0.375-0.812,1.406-0.469,2.312-0.969c-0.266,0.656-0.234,0.969-0.953,0.906c0.141,0.062,0.344,0.094,0.5,0.125\r\n\t\tc-0.25,0.781,0.281,11.281-0.453,11.062c-0.234,0.281-0.703,10.781-0.75,10.781c0.219,0,0.422,0,0.609,0\r\n\t\tc-0.188,0,0.094-9.469-0.219-9.016c-0.094-0.188-0.344-5.703-0.531-5.766c0.031,0.531-0.062-2.344-0.172-1.781\r\n\t\tc0.141,0.031,0.266-1.156,0.422-1.109c-0.625,0.469-0.172,0.109-0.25,0.672c0.359,0.25,0.391-0.281,0.75,0.25\r\n\t\tc0.109-0.344,0.672-0.469,1.125-0.656c-0.344,1.25,4.219,0.656,4.656,0.969c-0.047,0.375-0.25-0.203-0.406,0.344\r\n\t\tc0.281-0.031,0.531-0.094,0.812-0.125c-0.062,0.125-0.094,0.266,0.047,0.328c0.172-0.188,0.484-0.484,0.625-0.641\r\n\t\tc-0.672-0.25,0.266-0.594,0.5-0.719c-0.031,0.125-0.078,0.281-0.109,0.438c1.344-0.656,0.672-2.906,2.578-3.312\r\n\t\tc-0.266,0.406-0.219,0.625,0.109,1.062c0.828,0.969,1.109-0.969,1.406-1.5c-0.125-0.062-0.281-0.094-0.438-0.125\r\n\t\tc0.188-0.688,0.188-0.719,0.359-1.25c0.875,0.156,3.406,0.531,3.734-0.031c-0.094,0.219,1.219,0.125,1.594,0.219\r\n\t\tc0.125-0.469-1.062-0.969-1.438-1.5c0.25,0.094,0.328,0,0.281-0.281c-1.125-0.125-2.062,0.688-2.984,0.375\r\n\t\tc-1.297-0.125-0.375-0.438-1.359-1.531c-0.031,0.156-0.047,0.312-0.109,0.469c-0.562-0.156,0.062-2.219,0.312-2.781\r\n\t\tc0.172-0.344-0.172-0.719,0.531-0.938c0.109-0.031,0.797-0.469,1.094-0.625c0.172,0.062,1.828-1.5,1.672-1.812\r\n\t\tc0.016,0-0.062-1.094-0.094-0.906c0-0.062-1.156-0.438-1.375-0.75c-0.25,0.375-0.344,0.812-0.906,0.594\r\n\t\tc-0.375,0.844-0.688,1.688-1.797,2.375c-0.703,0.375-0.812,0-1.266,0.625c-0.453,0.281-0.562,0.656-1.094,0.375\r\n\t\tc-0.531,1.25-0.609,1.75-0.953,3.125c0.297,0.219,0.453,0.219,0.453-0.062c0.312,0.281,0.047,0.344,0.531,0.469\r\n\t\tc0,0.125-0.109,0.844,0.172,0.906c-0.297,0.156-0.391,0.375-0.906,0.438c1.203,0.25-0.922,0.812-1.516,0.688\r\n\t\tc0.422,0.469-0.875,2.219-1.125,2.625c0.25,0.031,0.281-0.094,0.5-0.188c-0.062,0.25-0.312,0.5-0.469,0.688\r\n\t\tc-0.094-0.156-0.141-0.156-0.078-0.344c-1.359-0.531-1.703,1.156-3.078,0.594c0.469-1.375,0.531-1.125,0.344-2.781\r\n\t\tc-0.359-0.125,0.062-2.125,0.109-2.375c-0.578-0.125-1.547,0.688-2.266,0.5c-1.781,0.188-1.859-0.188-1.359-1.969\r\n\t\tc-0.297-0.156-0.328-0.156-0.719-0.219c0.031-0.125,0.047-0.219,0.172-0.312c0.594,0.188,0.969-0.094,1.281-0.781\r\n\t\tc-0.562-0.156-0.391,0-0.984-0.156c0.172-0.156,0.281,0.031,0.359-0.219c-0.797-0.25-0.5-0.375,0.016-0.5\r\n\t\tc-0.125-0.062-0.359-0.312-0.297-0.438c0.266,0.094,1.578,0.75,1.703,0.219c-0.234-0.125-1.078-0.281-1.672-0.375\r\n\t\tc0.172-0.5,0.125-0.156,0.281-0.406c-0.219-0.031-0.219-0.125-0.016-0.375c0.328,0.094,0.609,0.188,0.953,0.312\r\n\t\tc0.094-0.594-0.75,0.062-0.531-0.688c0.594,0.156,1.031-0.094,0.922,0.312c0.172-0.062,0.328-0.125,0.562-0.188\r\n\t\tc-0.266-0.031-0.422-0.281-0.328-0.562c0.25,0.094,0.406,0.219,0.547,0.312c0.172-0.562,0.312-0.312,0.109-0.844\r\n\t\tc0.547,0.219,0.703,0.469,0.906-0.031c0.078,0.156,0.188,0.281,0.312,0.469c0.031-0.188-0.094-0.281-0.203-0.438\r\n\t\tc0.516-0.281,0.312-0.312,0.656-0.625c-0.141,0.031-0.297,0.031-0.422,0.031c0.141-0.062,0.312-0.125,0.469-0.188\r\n\t\tc-0.219,0.438,0.469,0.312,0.531,0.344c0.125,0.438,0.219,0.312,0.516,0.625c0.203-0.438,0.859-0.438,0.953-0.688\r\n\t\tc-0.406,0.188-0.703,0.219-1.125,0.312c0.094-0.312-0.031-0.25,0-0.5c0.562,0.125,1.594-0.906,1.625-1\r\n\t\tc0.844,0.25,0.562,0.156,0.719-0.312c1.391-0.281,1.047-0.781,1.703-1.312c0.734,0.125,1.422-0.938,1.969-0.781\r\n\t\tc0.047-0.219,0.047-0.25,0.172-0.625c-0.156,0-0.297,0.031-0.438,0.062c0.031-0.219,0.125-0.25,0.312-0.094\r\n\t\tc0-0.125,0-0.156-0.031-0.188c0.125,0.031,0.219,0.062,0.422,0.312c0.203-0.156,0.656-0.438,0.797-0.625\r\n\t\tc-0.25-0.094-0.594-0.094-0.875-0.062c0,0,2.562-1.5,0.719-1.344c0.125-0.312,0.344-0.656,0.938-0.875\r\n\t\tc-0.062,0.312-0.156,0.625-0.25,0.938c0.312,0.156,0.422,0.062,0.375-0.375c0.359-0.125,0.094,0.25,0.359-0.25\r\n\t\tc0.078,0.188-5.438,0.375-5.219,0.406c0.156-0.406-5.125-0.656-5.125-0.875c0,0.156,0,0.312,0,0.5c0-0.312,5.906-0.062,5.969-0.562\r\n\t\tc0.531,0.094,2.703,0.312,3.219,0.469c0.5,0.125,1.641-0.062,1.766-0.406c0.203,0.062,1.094,0.344,1.219,0.5\r\n\t\tc-0.031-0.219,0.281-0.469,0.266-0.688c-0.109,0.031-0.031,0.062-0.125,0.094c0.062-0.125,0.125-0.219,0.031-0.344\r\n\t\tc0.438,0.125,2.109,1.344,2.266,0.125c0.391,0.156,0.125,1.219,0.516-0.375c0.391,0.312,0.406,0.219,0.625,0.312\r\n\t\tc-0.094,0.281-0.047,0.344,0.172,0.375c-0.469,0.312-0.75,0.75-0.75,1.281c0.188-0.312,1.25-1.656,1.547-1.562\r\n\t\tc0,0.469-0.312,0.656-0.375,1.031c1-0.438,0.719-1.531,1.656-1.188c-0.188,0.531,0.219,0.344-0.422,0.531\r\n\t\tc0.016,0.125,0.047,0.219,0.047,0.344c0.109-0.094,0.219-0.156,0.344-0.25c-0.125,0.188-0.188,0.438-0.281,0.625\r\n\t\tc0.156,0.031,0.5-0.656,0.625-0.875c0.125,0.25,0.219,0.594,0.219,0.75c0.188,0.031,0.297-0.094,0.469-0.062\r\n\t\tc-0.047,0.188-0.156,0.25-0.25,0.438c0.688,0.125-8.844,0.031-8.406,0.469c-0.812-0.25-10.344,0.406-10.344,0.156\r\n\t\tc0,0.188,0,0.344,0,0.531c0-0.281,9.438,0.031,9.844-0.312c0.344,0.312,5.141,0.688,5.406,0.219\r\n\t\tc0.266,0.219,2.438,0.375,2.781,0.469c-0.312,0.188,1.156,0.281,0.688,0.219c0,0.094,2.438,1.25,2.734,1.531\r\n\t\tc-0.047,0.156,2.609,1.594,2.609,2.125c-0.281,0.75,1.859,1.906-0.172,2.781c-0.078-0.031-2.328-0.062-2.078-0.5\r\n\t\tc-0.5-0.094-1.594-1.188-1.594-1.031c-0.75-0.344-0.812-1.188-1.344-1.344c0,0.25,0.156,0.719,0.375,0.781\r\n\t\tc-0.094,0.094-0.219,0.156-0.312,0.219c0.156,0.031,0.344,0.094,0.516,0.125c0.016,0.219-0.078,0.25-0.297,0.094\r\n\t\tc0.125,0.312,0.438,0.375,0.438,0.625c-0.25-0.031-0.344-0.156-0.469,0.062c2.156,0.531,0.719,1.781,1.188,3.438\r\n\t\tc0.031-0.094,0.781,0.906,1.531,1c0-0.188,0.781-0.312,0.391-1.094c-0.5-0.875-0.312-0.5-0.078-1.5\r\n\t\tc0.469,0.312,0.688,0.719,0.562,1.125c0.688-0.031,0.719,0.281,1.469,0.688c0-0.594-0.75-2.844,0.875-2.281\r\n\t\tc0.188-0.844,1.219,0.125,0.969,0.656c0.938,0.25,1.812-3.656,1.438-4.281c0.891,1.031,1.703,0.906,1.875,2.531\r\n\t\tc-1.219-0.375-1.125,0.281-1.125,1.562c0.5,0.156,1.312-0.188,1.469-0.625c0.359-1.062,0.844-0.5,0.938-1.188\r\n\t\tc0.938,0.406,1.781-0.781,2.812-0.469c0.109-0.125,0.469-0.562,0.812-0.5c0.094,0.219,0.094,0.531,0.266,1.031\r\n\t\tc-0.484-0.062-0.297,0.125-0.578,0.219c0.375-0.031,0.406,0.062,0.656,0.125c0.219-0.5,0.406-0.094,0.641,0.094\r\n\t\tc0-1,1.297-0.938,1.828-0.156c0.375-0.375,0.625-0.375,1.234-0.438c-0.078,0.375-0.266,1.125,0.25,1.188\r\n\t\tc0.547-0.75,1.406-0.75,0.734-2.188c0.172,0.062,0.594-0.062,0.594-0.375c1.094,0.812,2.562-0.125,2.297,1.781\r\n\t\tc0.297,0.062,0.234-0.375,0.328-0.562c0.656,0.438,1.703,1.438,1.609,2.281c0.406,0.094,0.734-0.781,0.797-1.188\r\n\t\tc-0.219,0-0.062,0.219-0.391,0.156c0.109-0.625-0.141-0.781,0.25-1.281c-0.391-0.094-0.484-0.219-0.859-0.312\r\n\t\tc0.375-0.812,0.328-1.156,0.438-2c-0.594-0.125,0.562-1.094,0.594-1.219c0.359-0.75,1.562-1.469,1.562-2.219\r\n\t\tc0.453,0.031,1.375,0.094,1.719,0.531c0,0.188,0.109,1.969-0.281,1.906c0,1.188-0.125,1.906-0.156,3.188\r\n\t\tc0,0.375-0.156,0.656-0.094,1.125c0.031,0.469,0.562,0.688,0.562,1.219c0,0-0.719,2-0.75,2.188\r\n\t\tc-0.719-0.094-1.344,0.188-2.312,0.188c-0.062,0.281,0.219,0.688,0.594,0.75c1.203,0,0.812,0.938,1.531,1\r\n\t\tc0.062-0.656,0.094-0.844-0.422-1.188c2.297,0.656,1.516-2.562,2.203-3.344c0.438-0.531,1.625-0.719,1.516,0.156\r\n\t\tc0.672,0.094-0.453,2.156,0.609,2.688c0-0.875,0.938-0.219,0.938,0.094c0.078-0.062,0.156-0.094,0.25-0.156\r\n\t\tc-0.312-0.25-0.594-0.531-0.984-0.562c-0.297-0.875,0.219-0.938,0.016-1.781c-0.469-1.656-1.422-0.906-2.688-1.125\r\n\t\tc0.188-1-0.062-1.562-0.062-2.438c0.203-1.406,0.625-1.812,0.812-3.594c0.656,0-0.5,3.344,1.375,3.5c0-0.375,0.516,0,0.656,0.094\r\n\t\tc0.062-0.125,0.109-0.219,0.172-0.312c-0.922-0.094-0.953-0.875-0.953-1.531c0.906,0.094,0.719,0.906,1.406,0.125\r\n\t\tc-0.266-0.125-0.172-0.156-0.5-0.188c0.375-1.344,2.469,0.719,3.359,0.812c0,0.719-0.703,2.406-1.141,2.938\r\n\t\tc0.328,0.062,0.312-0.469,0.656-0.406c0.688,0.594-0.094,0.844,1.078,0.875c-1.359-1.031,1.047-3.938-1.297-4.125\r\n\t\tc0-0.25-0.344-0.219-0.453-0.531c-0.359-0.719,0.078-1.125,0.078-1.781c0.375-0.625,1.844-0.781,2.594-0.25\r\n\t\tc0.219-0.375,1.344-0.625,0.969,0.375c1.609,0.156-0.875-1.562,0.375-1.562c0-0.375-0.062-0.5-0.469-0.5\r\n\t\tc0.047-0.094,0.094-0.219,0.141-0.312c0.219,0,0.328,0.219,0.578,0.375c0-0.594,0.375-0.656,0.375-0.938\r\n\t\tc-0.203-0.062-0.344-0.094-0.344-0.344c1.719,0,2.312-0.656,3.969-0.594c0.031-0.281,0.109-0.25,0.109-0.438\r\n\t\tc0.672,0.312,1.672-0.375,1.672,0.844c0.25,0.094,0.328,0,0.219-0.312c0.078,0.156,0.156,0.344,0.219,0.5\r\n\t\tc0.344-0.5,0.938-1.312,1.406-0.438c0-0.531-0.125-0.438-0.391-0.781c0.109-0.062,0.234-0.125,0.359-0.188\r\n\t\tc0,0.125,0.906,0.156,1.188,0.344c-0.812-0.906,0.25-1.75,0.875-2.219c0.797,0.625,1.359-0.594,1.359,1.125\r\n\t\tc0.766,0,1.188-0.094,1.188,1.156c0.469-0.562,2.406-1.188,2.406-1.156c0.297,0.594,2.422,2.531,1.266,2.531\r\n\t\tc0.031,0.219,0.688,0.781,0.531,1.125c-0.156,0.312-0.719,0.062-0.719,0.469c-0.75,0-1.547,0.469-2.062,1\r\n\t\tc-0.141,0.156-0.188,1.469-0.875,1.469c0,0.344-1.922,1.25-1.922,1.25c0.766,0,2.984-0.688,2.859-1.438\r\n\t\tc0.188,0.094,0.344,0.219,0.5,0.312c-0.219-0.406-0.297-0.906,0.031-1.438c0.453,0.031,0.141,0.062,0.594-0.031\r\n\t\tc-0.094,0.969,1.031,1.344,0.953,0.156c0.109,0.438,0.312,0.906,0.422,1.281c-0.281-1.781,2.812-1.75,2.969-0.594\r\n\t\tc-0.25,0,2.156,1.344,2.156,1.031c0.578,0,0.719,9.219,1.422,9.094c-0.109-0.125-0.172,8.844-0.141,8.844c0.109,0,0.25,0,0.359,0\r\n\t\tc0,0-0.391-9.5-0.609-9.484c0,0.125,0.031-4.359,0.141-4.297c-0.328,0.062-1.547-3.906,0.516-4.062\r\n\t\tc0.125,0.812,0.859-0.938,0.812-0.094c0,0.375-0.75,0.188-1.078,0.5c0.172,0,0.328-0.328,0.516-0.344\r\n\t\tc-0.047,0.203-0.031,0.344-0.203,0.344c0.172,0.094,0.328,0.109,0.484,0.203c-0.062-0.547,0.125-0.203,0.406-0.516\r\n\t\tc0,0.281-0.062,0.531-0.047,0.625c0.578,0,0.516,0.531,0.75,0.891c0.141,0,0.109-1.016,0.094-1.172\r\n\t\tc0.234,0.281,0.828,1.094,1.062,1.062c-0.109-0.219-0.109-0.344,0.047-0.344c0,0.031-0.094,0.812-0.094,0.812\r\n\t\tc0.094-0.031,0.188-0.125,0.281-0.188c0.328,0.688,0.844,0.688,1.312,0.688c0,0.312-0.25,0.781,0.188,0.781\r\n\t\tc0.234-0.438,0.281-2.812,0.625-2.812c0.141,0.469,0.25,0.625,0.25,1.125c0.078-0.031,0.969-0.438,0.766-0.781\r\n\t\tc0.281,0,0.953,0.438,1.141,0.375c0.672,0.062,1.125,0.719,1.281-0.531c0.406,1.469,0.297-0.531,0.344-0.688\r\n\t\tc0.188-0.688-0.25-0.875,0.547-1.219c-0.109-0.125-0.234-0.156-0.359-0.281c0.75-0.156,2.531,0.188,3,0.5\r\n\t\tc-0.312,0.062-0.5,0.219-0.562-0.062c-0.109,0.188-0.109,0.406,0,0.656c0.531-0.156,0.719-0.344,1.266-0.406\r\n\t\tc-0.047,0.312-0.094,0.438-0.203,0.719c-0.078-0.25,0.094-0.312,0-0.531c-0.344,0-0.469,1.25-0.469,1.406\r\n\t\tc1.172-0.188,0.391-1.312,0.938-1.781C351.047,236.875,352.172,237,351.75,238.094z M361.922,254.156\r\n\t\tc0.016,0.188-0.172,0.969-0.109,1.156c-0.125,0.031-0.156,0.25-0.172,0.406C361.641,255.156,361.5,254.719,361.922,254.156z\r\n\t\t M347.031,264.188c-0.469,0.062-1.031-0.281-0.281-0.5C346.828,263.844,346.938,264,347.031,264.188z M243.281,270.031\r\n\t\tc-0.844,0.469-0.828,0.031-0.641-0.562c0.359,0.125-0.062-0.156,0.5,0C242.859,270.031,243.172,269.688,243.281,270.031z\r\n\t\t M247.953,269.656c0.625,1,0,2.281-0.969,2.625c0.062-0.312-0.094-1.469-0.062-2.094\r\n\t\tC247.109,269.875,247.578,269.719,247.953,269.656z M247.547,268.844c0.156-0.438,0.453-1.625,1.172-1.312\r\n\t\tc0,0.875-0.25,1.312-0.719,2C247.859,269.281,247.656,269.062,247.547,268.844z M249.266,274.531\r\n\t\tc0.156-0.656,1.594,0.312,2.406,0.188c-0.312,0.469-0.594,1-0.75,1.469c-0.219-0.125-0.25-0.281-0.406-0.281\r\n\t\tC250.297,275.594,249.203,274.844,249.266,274.531z M255.891,275.938c0.047-0.281,0.188-0.031,0.281,0.094\r\n\t\tC256.078,276.406,256,276,255.891,275.938z M257.438,279.875c0.109-0.344,0.422-0.031,0.484-0.031\r\n\t\tc0.375,0.344,1.766,0.531,1.656,0.969C258.703,280.906,258.297,280.531,257.438,279.875z M264.328,282.031\r\n\t\tc0.188,0,1.125-0.125,0.75-0.156c0.641,0.094,0.938,0.188,1.438-0.156C266.281,282.406,264.703,283.094,264.328,282.031z\r\n\t\t M260.781,275.938c0.578,0.094,0.047,0.094,0.391,0.25c-0.203,0-0.094,0.312-0.375,0.219\r\n\t\tC260.953,275.844,260.75,276.312,260.781,275.938z M255.797,253.156c-0.328,0.281-0.188-0.188-0.438,0.375\r\n\t\tc-0.062-0.031-0.156-0.062-0.25-0.094c0.109-0.594-0.031-0.219-0.438-0.281c0.266-0.625,0.156-0.406-0.031-0.875\r\n\t\tc0.469,0.156,0.312-0.125,0.688-0.125c-0.156,0.188-0.141,0.312,0.031,0.344c0-0.188,0.094-0.188,0.219-0.125\r\n\t\tc0.156-0.5,0.125-0.188,0.469-0.5c-0.25,0.562,0.016,0.531-0.406,0.844C255.688,252.875,255.75,253.031,255.797,253.156z\r\n\t\t M255.797,253.656c-0.156,0.375-0.781,0.531-1.25,0.5c-0.031-0.25,0-0.5,0.031-0.688\r\n\t\tC255.109,253.844,255.234,253.562,255.797,253.656z M257.453,253.469c0.125,0.188,0.266,0.406,0.375,0.625\r\n\t\tc-0.094,0-0.203,0.062-0.312,0.094C257.484,253.906,257.453,253.688,257.453,253.469z M260.797,252.406\r\n\t\tc-0.219-0.625,0.375-1.438,1.078-1.219c-0.484,0.281-0.375,0.625-0.531,0.875C261.141,252.156,260.984,252.312,260.797,252.406z\r\n\t\t M262.828,247.938c0.469-0.031,0.25-0.219,0.312-0.438c0.281,0.031,0.297,0.344,0.219,0.719\r\n\t\tC263.156,248.219,263.016,248.031,262.828,247.938z M263.891,251.094c0.203-0.594,0.781-0.469,1.297-0.156\r\n\t\tc-0.234,0.125-1.172,0.875-1.328,0.844c-0.031-0.312,0.031-0.406,0.234-0.312C264.031,251.344,263.953,251.219,263.891,251.094z\r\n\t\t M264.484,250.062c0.031-0.156,0.422-0.219,0.562-0.188c0,0.094,0.031,0.219,0.031,0.344c-0.188-0.062-0.234,0.094-0.406,0.25\r\n\t\tC264.688,250.25,264.641,250.094,264.484,250.062z M265.359,248.625c0.062-0.281,0.094-0.062,0.125-0.469\r\n\t\tc0.156,0.031,0.281,0.062,0.406,0.094c-0.031,0.156-0.094,0.344-0.109,0.469C265.641,248.688,265.5,248.656,265.359,248.625z\r\n\t\t M329.5,236.031c0.062-0.281,0.359-0.531,0.328-0.656C330.188,235.375,329.688,235.969,329.5,236.031z M350.938,231.844\r\n\t\tc-0.094,0.031-0.844,0.312-1.156,0.375c0,0.125-1.203-1.031-0.562-1.031C349.859,231.062,351.812,231.562,350.938,231.844z\r\n\t\t M346.578,235.906c-0.391-0.062-0.266-0.312-0.672-0.25c-0.031-0.156,0.5-0.875,0.469-1.031c0.969-0.656,1.406,0.5,1.625,1.219\r\n\t\tC347.688,235.875,346.5,235.625,346.578,235.906z M347.406,233c-0.234-0.594-0.344-1.219-0.25-1.25\r\n\t\tC348.016,231.594,348.156,232.312,347.406,233z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]}]}]};exports.world=world;var yen={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[{"name":"path","attribs":{"d":"M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z"},"children":[]}]},{"name":"path","attribs":{"d":"M338.5,243.406v24h-61.828v26.797H338.5v24.031h-61.828V384h-45.688v-65.766h-61.047v-24.031h61.047v-26.797h-61.047v-24\r\n\t\th48.844l-65-115.406h52l33.469,71.281c6.703,14.594,11.438,26.781,16.156,39.797h0.781c4.734-11.844,9.859-26,16.547-40.578\r\n\t\tl34.672-70.5h50.797l-68.531,115.406H338.5z"},"children":[{"name":"path","attribs":{"d":"M338.5,243.406v24h-61.828v26.797H338.5v24.031h-61.828V384h-45.688v-65.766h-61.047v-24.031h61.047v-26.797h-61.047v-24\r\n\t\th48.844l-65-115.406h52l33.469,71.281c6.703,14.594,11.438,26.781,16.156,39.797h0.781c4.734-11.844,9.859-26,16.547-40.578\r\n\t\tl34.672-70.5h50.797l-68.531,115.406H338.5z"},"children":[]}]}]}]};exports.yen=yen; \ No newline at end of file diff --git a/dist/metrize/info.js b/dist/metrize/info.js new file mode 100644 index 000000000..c36337f2b --- /dev/null +++ b/dist/metrize/info.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.info = void 0; +var info = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M285.172,331.453c-12.453,13.25-20.547,18.781-26.094,18.781c-3.859,0-5.172-3.422-4.312-11.141\r\n\t\tc2.594-20.062,17.531-84.578,21.781-107.625c4.266-19.719,3-29.953-2.562-29.953c-10.641,0-36.734,17.516-53.828,35.016\r\n\t\tc-0.875,1.344-2.562,8.578-1.688,11.125c0,0.875,1.266,1.312,1.266,1.312c10.266-8.125,18.391-12.844,23.109-12.844\r\n\t\tc2.109,0,2.938,3.406,1.688,9.406c-5.125,25.625-13.672,65.406-20.078,98.281c-5.984,28.672-2.172,40.188,6.812,40.188\r\n\t\ts33.766-11.984,53.906-38.906c0.812-2.094,1.641-10.188,1.25-12.359C286.422,331.906,285.172,331.453,285.172,331.453z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M285.172,331.453c-12.453,13.25-20.547,18.781-26.094,18.781c-3.859,0-5.172-3.422-4.312-11.141\r\n\t\tc2.594-20.062,17.531-84.578,21.781-107.625c4.266-19.719,3-29.953-2.562-29.953c-10.641,0-36.734,17.516-53.828,35.016\r\n\t\tc-0.875,1.344-2.562,8.578-1.688,11.125c0,0.875,1.266,1.312,1.266,1.312c10.266-8.125,18.391-12.844,23.109-12.844\r\n\t\tc2.109,0,2.938,3.406,1.688,9.406c-5.125,25.625-13.672,65.406-20.078,98.281c-5.984,28.672-2.172,40.188,6.812,40.188\r\n\t\ts33.766-11.984,53.906-38.906c0.812-2.094,1.641-10.188,1.25-12.359C286.422,331.906,285.172,331.453,285.172,331.453z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M281.281,128c-7.297,0-16.25,3.414-20.516,7.703c-1.688,2.141-3.406,8.539-3.859,11.945\r\n\t\tc0.453,7.711,2.578,11.984,6.859,14.562c2.109,1.68,16.219,0.414,19.219-1.312c5.188-3.398,9.828-10.25,10.703-18.375\r\n\t\tc0.375-3.82-0.438-8.984-2.141-11.531C290.688,129.719,287.25,128,281.281,128z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M281.281,128c-7.297,0-16.25,3.414-20.516,7.703c-1.688,2.141-3.406,8.539-3.859,11.945\r\n\t\tc0.453,7.711,2.578,11.984,6.859,14.562c2.109,1.68,16.219,0.414,19.219-1.312c5.188-3.398,9.828-10.25,10.703-18.375\r\n\t\tc0.375-3.82-0.438-8.984-2.141-11.531C290.688,129.719,287.25,128,281.281,128z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }] + }] +}; +exports.info = info; \ No newline at end of file diff --git a/dist/metrize/italic.js b/dist/metrize/italic.js new file mode 100644 index 000000000..d4187ade9 --- /dev/null +++ b/dist/metrize/italic.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.italic = void 0; +var italic = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M272.562,361.891L271.016,368H192l1.984-6.109c7.922-0.219,13.172-1,15.719-2.312c4.141-1.875,7.219-4.469,9.203-7.766\r\n\tc3.109-5.172,6.312-14.422,9.625-27.75l33.406-135.125c2.844-11.25,4.25-19.719,4.25-25.438c0-2.875-0.625-5.297-1.828-7.281\r\n\tc-1.234-1.969-3.094-3.5-5.594-4.531c-2.516-1.062-7.391-1.578-14.672-1.578l1.719-6.109H320l-1.562,6.109\r\n\tc-6.031-0.109-10.516,0.672-13.453,2.312c-4.234,2.203-7.484,5.344-9.688,9.422c-2.234,4.062-5.078,13.094-8.578,27.094\r\n\tl-33.266,135.125c-3.016,12.438-4.531,20.375-4.531,23.781c0,2.75,0.578,5.094,1.766,7.031c1.188,1.922,3.078,3.406,5.656,4.453\r\n\tC258.938,360.375,264.359,361.234,272.562,361.891z" + }, + "children": [] + }] +}; +exports.italic = italic; \ No newline at end of file diff --git a/dist/metrize/key.js b/dist/metrize/key.js new file mode 100644 index 000000000..be6c1b15a --- /dev/null +++ b/dist/metrize/key.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.key = void 0; +var key = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M253.734,240c-7.141-27.562-31.953-48-61.734-48c-35.344,0-64,28.656-64,64s28.656,64,64,64\r\n\tc29.781,0,54.594-20.453,61.734-48H336v32h32v-32h16v-32H253.734z M192,296c-22.094,0-40-17.922-40-40c0-22.094,17.906-40,40-40\r\n\ts40,17.906,40,40C232,278.078,214.094,296,192,296z" + }, + "children": [] + }] +}; +exports.key = key; \ No newline at end of file diff --git a/dist/metrize/landscape.js b/dist/metrize/landscape.js new file mode 100644 index 000000000..b841744fa --- /dev/null +++ b/dist/metrize/landscape.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.landscape = void 0; +var landscape = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M256,160L128,352h256L256,160z M256,256l-16,16l-16-32l32-48l32,48h-16L256,256z" + }, + "children": [] + }] +}; +exports.landscape = landscape; \ No newline at end of file diff --git a/dist/metrize/layers.js b/dist/metrize/layers.js new file mode 100644 index 000000000..312d306bb --- /dev/null +++ b/dist/metrize/layers.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.layers = void 0; +var layers = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "256,355.219 151.031,289.625 128,304 256,384 384,304.25 360.969,289.812 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "256,355.219 151.031,289.625 128,304 256,384 384,304.25 360.969,289.812 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "256,306.859 151.594,241.609 128,256.359 256,336.359 384,256.609 360.391,241.797 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "256,306.859 151.594,241.609 128,256.359 256,336.359 384,256.609 360.391,241.797 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "128,208 256,288 384,208.25 256,128 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "128,208 256,288 384,208.25 256,128 \t" + }, + "children": [] + }] + }] + }] +}; +exports.layers = layers; \ No newline at end of file diff --git a/dist/metrize/leaf.js b/dist/metrize/leaf.js new file mode 100644 index 000000000..5d2620881 --- /dev/null +++ b/dist/metrize/leaf.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.leaf = void 0; +var leaf = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M224,192c-40.289,32.219-46.742,100.328-47.781,121.453C166.477,323.422,144,346.969,144,352c0,6.406,8,16,16,16\r\n\tc6.875,0,20.82-35.406,24.609-45.359c22.312,6.062,83.609,17.438,127.391-25.047C366.406,244.797,368,144,368,144\r\n\tS272,153.594,224,192z" + }, + "children": [] + }] +}; +exports.leaf = leaf; \ No newline at end of file diff --git a/dist/metrize/leftRight.js b/dist/metrize/leftRight.js new file mode 100644 index 000000000..4410606c6 --- /dev/null +++ b/dist/metrize/leftRight.js @@ -0,0 +1,99 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.leftRight = void 0; +var leftRight = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\t\tS397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\t\tS397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "304,240 208,240 208,208 160,256 208,304 208,272 304,272 304,304 \r\n\t\t\t352,256 304,208 \t\t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "304,240 208,240 208,208 160,256 208,304 208,272 304,272 304,304 \r\n\t\t\t352,256 304,208 \t\t" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "368", + "y": "192", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "16", + "height": "128" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "368", + "y": "192", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "16", + "height": "128" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "128", + "y": "192", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "16", + "height": "128" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "128", + "y": "192", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "16", + "height": "128" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.leftRight = leftRight; \ No newline at end of file diff --git a/dist/metrize/likeAdd.js b/dist/metrize/likeAdd.js new file mode 100644 index 000000000..b955fe9a4 --- /dev/null +++ b/dist/metrize/likeAdd.js @@ -0,0 +1,59 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.likeAdd = void 0; +var likeAdd = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M344,288c4.781,0,9.328,0.781,13.766,1.922C373.062,269.562,384,245.719,384,218.625C384,177.422,351.25,144,310.75,144\r\n\t\t\tc-21.875,0-41.375,10.078-54.75,25.766C242.5,154.078,223,144,201.125,144C160.75,144,128,177.422,128,218.625\r\n\t\t\tC128,312,256,368,256,368s14-6.203,32.641-17.688C288.406,348.203,288,346.156,288,344C288,313.125,313.125,288,344,288z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M344,288c4.781,0,9.328,0.781,13.766,1.922C373.062,269.562,384,245.719,384,218.625C384,177.422,351.25,144,310.75,144\r\n\t\t\tc-21.875,0-41.375,10.078-54.75,25.766C242.5,154.078,223,144,201.125,144C160.75,144,128,177.422,128,218.625\r\n\t\t\tC128,312,256,368,256,368s14-6.203,32.641-17.688C288.406,348.203,288,346.156,288,344C288,313.125,313.125,288,344,288z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }] + }] + }, { + "name": "path", + "attribs": { + "d": "M344,304c-22.094,0-40,17.906-40,40s17.906,40,40,40s40-17.906,40-40S366.094,304,344,304z M368,352h-16v16h-16v-16h-16\r\n\t\tv-16h16v-16h16v16h16V352z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M344,304c-22.094,0-40,17.906-40,40s17.906,40,40,40s40-17.906,40-40S366.094,304,344,304z M368,352h-16v16h-16v-16h-16\r\n\t\tv-16h16v-16h16v16h16V352z" + }, + "children": [] + }] + }] + }] +}; +exports.likeAdd = likeAdd; \ No newline at end of file diff --git a/dist/metrize/likeBan.js b/dist/metrize/likeBan.js new file mode 100644 index 000000000..6708c6e04 --- /dev/null +++ b/dist/metrize/likeBan.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.likeBan = void 0; +var likeBan = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M344,288c4.781,0,9.328,0.781,13.766,1.922C373.062,269.562,384,245.719,384,218.625C384,177.422,351.25,144,310.75,144\r\n\t\t\t\tc-21.875,0-41.375,10.078-54.75,25.766C242.5,154.078,223,144,201.125,144C160.75,144,128,177.422,128,218.625\r\n\t\t\t\tC128,312,256,368,256,368s14-6.203,32.641-17.688C288.406,348.203,288,346.156,288,344C288,313.125,313.125,288,344,288z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M344,288c4.781,0,9.328,0.781,13.766,1.922C373.062,269.562,384,245.719,384,218.625C384,177.422,351.25,144,310.75,144\r\n\t\t\t\tc-21.875,0-41.375,10.078-54.75,25.766C242.5,154.078,223,144,201.125,144C160.75,144,128,177.422,128,218.625\r\n\t\t\t\tC128,312,256,368,256,368s14-6.203,32.641-17.688C288.406,348.203,288,346.156,288,344C288,313.125,313.125,288,344,288z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\t\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\t\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }] + }] + }] + }] + }, { + "name": "path", + "attribs": { + "d": "M384,344c0-22.094-17.938-40-40-40s-40,17.906-40,40c0,22.062,17.938,40,40,40S384,366.062,384,344z M314,344\r\n\t\tc0-16.547,13.469-30,30-30c6.438,0,12.469,2.094,17.375,5.562l-41.781,41.812C316.078,356.469,314,350.438,314,344z\r\n\t\t M326.625,368.406l41.781-41.766C371.938,331.547,374,337.562,374,344c0,16.531-13.469,30-30,30\r\n\t\tC337.562,374,331.531,371.938,326.625,368.406z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M384,344c0-22.094-17.938-40-40-40s-40,17.906-40,40c0,22.062,17.938,40,40,40S384,366.062,384,344z M314,344\r\n\t\tc0-16.547,13.469-30,30-30c6.438,0,12.469,2.094,17.375,5.562l-41.781,41.812C316.078,356.469,314,350.438,314,344z\r\n\t\t M326.625,368.406l41.781-41.766C371.938,331.547,374,337.562,374,344c0,16.531-13.469,30-30,30\r\n\t\tC337.562,374,331.531,371.938,326.625,368.406z" + }, + "children": [] + }] + }] + }] +}; +exports.likeBan = likeBan; \ No newline at end of file diff --git a/dist/metrize/likeClose.js b/dist/metrize/likeClose.js new file mode 100644 index 000000000..d14956e8f --- /dev/null +++ b/dist/metrize/likeClose.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.likeClose = void 0; +var likeClose = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M344,288c4.781,0,9.328,0.781,13.766,1.922C373.062,269.562,384,245.719,384,218.625C384,177.422,351.25,144,310.75,144\r\n\t\t\t\tc-21.875,0-41.375,10.078-54.75,25.766C242.5,154.078,223,144,201.125,144C160.75,144,128,177.422,128,218.625\r\n\t\t\t\tC128,312,256,368,256,368s14-6.203,32.641-17.688C288.406,348.203,288,346.156,288,344C288,313.125,313.125,288,344,288z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M344,288c4.781,0,9.328,0.781,13.766,1.922C373.062,269.562,384,245.719,384,218.625C384,177.422,351.25,144,310.75,144\r\n\t\t\t\tc-21.875,0-41.375,10.078-54.75,25.766C242.5,154.078,223,144,201.125,144C160.75,144,128,177.422,128,218.625\r\n\t\t\t\tC128,312,256,368,256,368s14-6.203,32.641-17.688C288.406,348.203,288,346.156,288,344C288,313.125,313.125,288,344,288z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\t\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\t\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }] + }] + }] + }] + }, { + "name": "path", + "attribs": { + "d": "M344,304c-22.094,0-40,17.906-40,40s17.906,40,40,40s40-17.906,40-40S366.094,304,344,304z M366.625,355.312\r\n\t\tl-11.312,11.312L344,355.312l-11.312,11.312l-11.312-11.312L332.688,344l-11.312-11.312l11.312-11.312L344,332.688l11.312-11.312\r\n\t\tl11.312,11.312L355.312,344L366.625,355.312z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M344,304c-22.094,0-40,17.906-40,40s17.906,40,40,40s40-17.906,40-40S366.094,304,344,304z M366.625,355.312\r\n\t\tl-11.312,11.312L344,355.312l-11.312,11.312l-11.312-11.312L332.688,344l-11.312-11.312l11.312-11.312L344,332.688l11.312-11.312\r\n\t\tl11.312,11.312L355.312,344L366.625,355.312z" + }, + "children": [] + }] + }] + }] +}; +exports.likeClose = likeClose; \ No newline at end of file diff --git a/dist/metrize/likeDownload.js b/dist/metrize/likeDownload.js new file mode 100644 index 000000000..b04340e7c --- /dev/null +++ b/dist/metrize/likeDownload.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.likeDownload = void 0; +var likeDownload = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M344,288c4.781,0,9.328,0.781,13.766,1.922C373.062,269.562,384,245.719,384,218.625C384,177.422,351.25,144,310.75,144\r\n\t\t\t\tc-21.875,0-41.375,10.078-54.75,25.766C242.5,154.078,223,144,201.125,144C160.75,144,128,177.422,128,218.625\r\n\t\t\t\tC128,312,256,368,256,368s14-6.203,32.641-17.688C288.406,348.203,288,346.156,288,344C288,313.125,313.125,288,344,288z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M344,288c4.781,0,9.328,0.781,13.766,1.922C373.062,269.562,384,245.719,384,218.625C384,177.422,351.25,144,310.75,144\r\n\t\t\t\tc-21.875,0-41.375,10.078-54.75,25.766C242.5,154.078,223,144,201.125,144C160.75,144,128,177.422,128,218.625\r\n\t\t\t\tC128,312,256,368,256,368s14-6.203,32.641-17.688C288.406,348.203,288,346.156,288,344C288,313.125,313.125,288,344,288z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\t\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\t\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }] + }] + }] + }] + }, { + "name": "path", + "attribs": { + "d": "M344,304c-22.094,0-40,17.906-40,40s17.906,40,40,40s40-17.906,40-40S366.094,304,344,304z M344,374.406L324.797,352H336\r\n\t\tv-32h16v32h11.203L344,374.406z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M344,304c-22.094,0-40,17.906-40,40s17.906,40,40,40s40-17.906,40-40S366.094,304,344,304z M344,374.406L324.797,352H336\r\n\t\tv-32h16v32h11.203L344,374.406z" + }, + "children": [] + }] + }] + }] +}; +exports.likeDownload = likeDownload; \ No newline at end of file diff --git a/dist/metrize/likeRemove.js b/dist/metrize/likeRemove.js new file mode 100644 index 000000000..3666a523c --- /dev/null +++ b/dist/metrize/likeRemove.js @@ -0,0 +1,75 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.likeRemove = void 0; +var likeRemove = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M344,288c4.781,0,9.328,0.781,13.766,1.922C373.062,269.562,384,245.719,384,218.625C384,177.422,351.25,144,310.75,144\r\n\t\t\t\tc-21.875,0-41.375,10.078-54.75,25.766C242.5,154.078,223,144,201.125,144C160.75,144,128,177.422,128,218.625\r\n\t\t\t\tC128,312,256,368,256,368s14-6.203,32.641-17.688C288.406,348.203,288,346.156,288,344C288,313.125,313.125,288,344,288z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M344,288c4.781,0,9.328,0.781,13.766,1.922C373.062,269.562,384,245.719,384,218.625C384,177.422,351.25,144,310.75,144\r\n\t\t\t\tc-21.875,0-41.375,10.078-54.75,25.766C242.5,154.078,223,144,201.125,144C160.75,144,128,177.422,128,218.625\r\n\t\t\t\tC128,312,256,368,256,368s14-6.203,32.641-17.688C288.406,348.203,288,346.156,288,344C288,313.125,313.125,288,344,288z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\t\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\t\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M344,304c-22.094,0-40,17.906-40,40s17.906,40,40,40s40-17.906,40-40S366.094,304,344,304z M368,352h-48v-16h48V352z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M344,304c-22.094,0-40,17.906-40,40s17.906,40,40,40s40-17.906,40-40S366.094,304,344,304z M368,352h-48v-16h48V352z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.likeRemove = likeRemove; \ No newline at end of file diff --git a/dist/metrize/likeUpload.js b/dist/metrize/likeUpload.js new file mode 100644 index 000000000..3fcf77553 --- /dev/null +++ b/dist/metrize/likeUpload.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.likeUpload = void 0; +var likeUpload = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M344,288c4.781,0,9.328,0.781,13.766,1.922C373.062,269.562,384,245.719,384,218.625C384,177.422,351.25,144,310.75,144\r\n\t\t\t\tc-21.875,0-41.375,10.078-54.75,25.766C242.5,154.078,223,144,201.125,144C160.75,144,128,177.422,128,218.625\r\n\t\t\t\tC128,312,256,368,256,368s14-6.203,32.641-17.688C288.406,348.203,288,346.156,288,344C288,313.125,313.125,288,344,288z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M344,288c4.781,0,9.328,0.781,13.766,1.922C373.062,269.562,384,245.719,384,218.625C384,177.422,351.25,144,310.75,144\r\n\t\t\t\tc-21.875,0-41.375,10.078-54.75,25.766C242.5,154.078,223,144,201.125,144C160.75,144,128,177.422,128,218.625\r\n\t\t\t\tC128,312,256,368,256,368s14-6.203,32.641-17.688C288.406,348.203,288,346.156,288,344C288,313.125,313.125,288,344,288z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\t\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\t\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }] + }] + }] + }] + }, { + "name": "path", + "attribs": { + "d": "M344,384c22.094,0,40-17.906,40-40s-17.906-40-40-40s-40,17.906-40,40S321.906,384,344,384z M344,313.594L363.203,336H352\r\n\t\tv32h-16v-32h-11.203L344,313.594z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M344,384c22.094,0,40-17.906,40-40s-17.906-40-40-40s-40,17.906-40,40S321.906,384,344,384z M344,313.594L363.203,336H352\r\n\t\tv32h-16v-32h-11.203L344,313.594z" + }, + "children": [] + }] + }] + }] +}; +exports.likeUpload = likeUpload; \ No newline at end of file diff --git a/dist/metrize/limitDirections.js b/dist/metrize/limitDirections.js new file mode 100644 index 000000000..4cc99251a --- /dev/null +++ b/dist/metrize/limitDirections.js @@ -0,0 +1,107 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.limitDirections = void 0; +var limitDirections = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "352,208 352,160 304,160 316,172 256,232 196,172 208,160 160,160 \r\n\t\t160,208 172,196 232,256 172,316 160,304 160,352 208,352 196,340 256,280 316,340 304,352 352,352 352,304 340,316 280,256 \r\n\t\t340,196 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "352,208 352,160 304,160 316,172 256,232 196,172 208,160 160,160 \r\n\t\t160,208 172,196 232,256 172,316 160,304 160,352 208,352 196,340 256,280 316,340 304,352 352,352 352,304 340,316 280,256 \r\n\t\t340,196 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "368,128 320,128 320,144 368,144 368,192 384,192 384,144 384,128 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "368,128 320,128 320,144 368,144 368,192 384,192 384,144 384,128 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "384,368 384,320 368,320 368,368 320,368 320,384 368,384 384,384 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "384,368 384,320 368,320 368,368 320,368 320,384 368,384 384,384 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "144,384 192,384 192,368 144,368 144,320 128,320 128,368 128,384 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "144,384 192,384 192,368 144,368 144,320 128,320 128,368 128,384 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "128,144.016 128,192 144,192 144,144 192,144 192,128 144,128 128,128 \t\r\n\t\t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "128,144.016 128,192 144,192 144,144 192,144 192,128 144,128 128,128 \t\r\n\t\t" + }, + "children": [] + }] + }] + }] +}; +exports.limitDirections = limitDirections; \ No newline at end of file diff --git a/dist/metrize/lineThrough.js b/dist/metrize/lineThrough.js new file mode 100644 index 000000000..221117680 --- /dev/null +++ b/dist/metrize/lineThrough.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.lineThrough = void 0; +var lineThrough = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M368,240h-94.406c-0.688-0.375-1.219-0.688-1.906-1.062c-24.188-13.156-39.453-23.719-45.875-31.594\r\n\tc-4.438-5.375-6.672-11.312-6.672-17.844c0-8.531,3.531-16.156,10.547-22.844c7.031-6.688,16-10,26.75-10\r\n\tc9.516,0,18.75,2.453,27.609,7.391c8.969,4.984,15.844,14.625,20.609,23.047c4.781,8.438,8.188,20.906,10.094,36.906H320v-80h-5.25\r\n\tc-1.062,4.938-2.516,8.219-4.234,9.859c-1.703,1.641-3.859,2.484-6.516,2.484c-2.375,0-6.469-1.312-12.266-3.953\r\n\tc-12.609-5.578-24.453-8.391-35.656-8.391c-17.891,0-32.641,5.562-44.266,16.656c-11.594,11.125-17.406,24.359-17.406,39.75\r\n\tc0,8.812,2,16.969,5.906,24.312c2.953,5.469,7.219,10.5,12.172,15.281H144v32h116.438c15.297,8.781,25.062,14.797,28.766,17.656\r\n\tc6.016,4.625,10.469,9.641,13.297,15.016c2.812,5.359,4.297,10.703,4.297,15.953c0,9.438-3.812,17.656-11.344,24.625\r\n\ts-17.672,10.422-30.625,10.422c-11.188,0-21.484-2.531-30.891-7.578c-9.344-5.047-16.312-14.656-20.844-22.297\r\n\tC208.5,318.156,204.875,304,202.203,288H192v80h10.203c0.703-4.953,1.859-8.234,3.297-9.812c1.516-1.562,3.594-2.359,6.188-2.359\r\n\tc2.688,0,9.062,1.672,19.156,4.984c10.109,3.312,16.781,5.234,20,5.781c5.406,0.938,11.172,1.406,17.25,1.406\r\n\tc19.406,0,35.328-5.875,47.766-17.594c12.312-11.75,18.547-25.734,18.547-41.938c0-8.531-1.953-16.703-5.828-24.5\r\n\tc-2.156-4.344-4.953-8.281-8.141-11.969H368V240z" + }, + "children": [] + }] +}; +exports.lineThrough = lineThrough; \ No newline at end of file diff --git a/dist/metrize/linkUrl.js b/dist/metrize/linkUrl.js new file mode 100644 index 000000000..72202a20e --- /dev/null +++ b/dist/metrize/linkUrl.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.linkUrl = void 0; +var linkUrl = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M359.5,241.221c-10.844-10.828-23.969-17.719-37.766-21.375c-14.625-3.859-29.922-3.672-44.453,0.531\r\n\tc-13.172,3.766-25.688,10.469-36.062,20.844c-13.688,13.672-34.422,15.703-50.422,6.5c-3.109-1.812-6.078-3.859-8.734-6.5\r\n\tc-16.312-16.344-16.312-42.828,0-59.125c16.359-16.344,42.812-16.344,59.156,0c2.656,2.625,4.688,5.594,6.5,8.672\r\n\tc14.531-4.172,29.812-4.375,44.469-0.5c-3.688-13.797-10.594-26.922-21.406-37.797c-32.656-32.625-85.609-32.625-118.281,0\r\n\tc-32.656,32.703-32.656,85.656,0,118.312c10.844,10.797,23.969,17.719,37.75,21.406c14.641,3.812,29.906,3.609,44.469-0.516\r\n\tc13.188-3.828,25.688-10.484,36.062-20.891c13.703-13.672,34.453-15.75,50.453-6.484c3.047,1.797,6.047,3.844,8.719,6.484\r\n\tc16.297,16.312,16.297,42.797,0,59.156c-16.344,16.312-42.859,16.312-59.172,0c-2.656-2.656-4.688-5.641-6.5-8.703\r\n\tc-14.531,4.156-29.812,4.328-44.438,0.5c3.656,13.797,10.531,26.922,21.375,37.781c32.656,32.641,85.594,32.641,118.281,0\r\n\tC392.156,326.814,392.156,273.877,359.5,241.221z" + }, + "children": [] + }] +}; +exports.linkUrl = linkUrl; \ No newline at end of file diff --git a/dist/metrize/listCircle.js b/dist/metrize/listCircle.js new file mode 100644 index 000000000..836a5cfcd --- /dev/null +++ b/dist/metrize/listCircle.js @@ -0,0 +1,127 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.listCircle = void 0; +var listCircle = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\t\tS397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\t\tS397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M160,304c-8.844,0-16,7.156-16,16s7.156,16,16,16s16-7.156,16-16\r\n\t\tS168.844,304,160,304z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M160,304c-8.844,0-16,7.156-16,16s7.156,16,16,16s16-7.156,16-16\r\n\t\tS168.844,304,160,304z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M160,240c-8.844,0-16,7.156-16,16s7.156,16,16,16s16-7.156,16-16\r\n\t\tS168.844,240,160,240z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M160,240c-8.844,0-16,7.156-16,16s7.156,16,16,16s16-7.156,16-16\r\n\t\tS168.844,240,160,240z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M160,176c-8.844,0-16,7.156-16,16s7.156,16,16,16s16-7.156,16-16\r\n\t\tS168.844,176,160,176z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M160,176c-8.844,0-16,7.156-16,16s7.156,16,16,16s16-7.156,16-16\r\n\t\tS168.844,176,160,176z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M368,184c0-4.422-3.578-8-8-8H216c-4.422,0-8,3.578-8,8v16c0,4.422,3.578,8,8,8\r\n\t\th144c4.422,0,8-3.578,8-8V184z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M368,184c0-4.422-3.578-8-8-8H216c-4.422,0-8,3.578-8,8v16c0,4.422,3.578,8,8,8\r\n\t\th144c4.422,0,8-3.578,8-8V184z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M368,248c0-4.422-3.578-8-8-8H216c-4.422,0-8,3.578-8,8v16c0,4.422,3.578,8,8,8\r\n\t\th144c4.422,0,8-3.578,8-8V248z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M368,248c0-4.422-3.578-8-8-8H216c-4.422,0-8,3.578-8,8v16c0,4.422,3.578,8,8,8\r\n\t\th144c4.422,0,8-3.578,8-8V248z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M368,312c0-4.422-3.578-8-8-8H216c-4.422,0-8,3.578-8,8v16c0,4.422,3.578,8,8,8\r\n\t\th144c4.422,0,8-3.578,8-8V312z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M368,312c0-4.422-3.578-8-8-8H216c-4.422,0-8,3.578-8,8v16c0,4.422,3.578,8,8,8\r\n\t\th144c4.422,0,8-3.578,8-8V312z" + }, + "children": [] + }] + }] + }] +}; +exports.listCircle = listCircle; \ No newline at end of file diff --git a/dist/metrize/listSquare.js b/dist/metrize/listSquare.js new file mode 100644 index 000000000..1620646fc --- /dev/null +++ b/dist/metrize/listSquare.js @@ -0,0 +1,163 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.listSquare = void 0; +var listSquare = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\t\tS397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\t\tS397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "208", + "y": "176", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "160", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "208", + "y": "176", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "160", + "height": "32" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "208", + "y": "240", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "160", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "208", + "y": "240", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "160", + "height": "32" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "144", + "y": "176", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "32", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "144", + "y": "176", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "32", + "height": "32" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "144", + "y": "240", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "32", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "144", + "y": "240", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "32", + "height": "32" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "144", + "y": "304", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "32", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "144", + "y": "304", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "32", + "height": "32" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "208", + "y": "304", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "160", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "208", + "y": "304", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "160", + "height": "32" + }, + "children": [] + }] + }] + }] +}; +exports.listSquare = listSquare; \ No newline at end of file diff --git a/dist/metrize/location.js b/dist/metrize/location.js new file mode 100644 index 000000000..05cd09f68 --- /dev/null +++ b/dist/metrize/location.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.location = void 0; +var location = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M128,288l256-160L224,384v-96H128z" + }, + "children": [] + }] +}; +exports.location = location; \ No newline at end of file diff --git a/dist/metrize/locationMaps.js b/dist/metrize/locationMaps.js new file mode 100644 index 000000000..2c51089c8 --- /dev/null +++ b/dist/metrize/locationMaps.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.locationMaps = void 0; +var locationMaps = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M128,244.375l104.719,34.891L267.625,384L384,128L128,244.375z M247.266,264.719l-78.547-26.172l192-87.266L247.266,264.719\r\n\tz" + }, + "children": [] + }] +}; +exports.locationMaps = locationMaps; \ No newline at end of file diff --git a/dist/metrize/locked.js b/dist/metrize/locked.js new file mode 100644 index 000000000..ee230e03c --- /dev/null +++ b/dist/metrize/locked.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.locked = void 0; +var locked = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M335.688,240H320l0.047-46.219c0-27.5-28.562-49.781-63.875-49.781c-35.266,0-63.875,22.281-63.875,49.781L192,240h-16.031\r\n\tc-8.828,0-15.625,7.125-15.625,14L160,354c0,6.875,7.484,14,16.312,14h159.75c8.797,0,15.594-7.125,15.594-14L352,254\r\n\tC352,247.125,344.484,240,335.688,240z M224,192c0-13.719,14.594-23.117,32.172-23.117c17.594,0,31.828,9.398,31.828,23.117\r\n\tl-0.219,48H224V192z" + }, + "children": [] + }] +}; +exports.locked = locked; \ No newline at end of file diff --git a/dist/metrize/loginLockRefresh.js b/dist/metrize/loginLockRefresh.js new file mode 100644 index 000000000..b95b83357 --- /dev/null +++ b/dist/metrize/loginLockRefresh.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.loginLockRefresh = void 0; +var loginLockRefresh = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M296,240h-8.5c0.312-2.516,0.5-5.188,0.5-8c0-13.203-14.406-24-32-24s-32,10.797-32,24c0,2.812,0.188,5.484,0.5,8H216\r\n\t\tc-4.422,0-8,3.578-8,8v48c0,4.422,3.578,8,8,8h80c4.422,0,8-3.578,8-8v-48C304,243.578,300.422,240,296,240z M240,240\r\n\t\tc-4.797-9.594,7.203-19.203,16-19.203s20.797,9.609,16,19.203H240z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M296,240h-8.5c0.312-2.516,0.5-5.188,0.5-8c0-13.203-14.406-24-32-24s-32,10.797-32,24c0,2.812,0.188,5.484,0.5,8H216\r\n\t\tc-4.422,0-8,3.578-8,8v48c0,4.422,3.578,8,8,8h80c4.422,0,8-3.578,8-8v-48C304,243.578,300.422,240,296,240z M240,240\r\n\t\tc-4.797-9.594,7.203-19.203,16-19.203s20.797,9.609,16,19.203H240z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M370.906,311.188L401.594,256h-19.188c-0.797-72.344-56.625-127.516-126.781-127.609\r\n\t\tc-70.609-0.078-127.766,57.078-127.672,127.688c0.078,70.625,57.359,127.906,127.969,127.969\r\n\t\tc39.875,0.094,75.406-18.125,98.797-46.625l-15.281-25.484c-17.938,27.016-48.641,44.75-83.562,44.703\r\n\t\tc-55.469-0.031-100.484-45.047-100.531-100.531c-0.062-55.484,44.844-100.375,100.312-100.312\r\n\t\tc55.219,0.094,99.078,45.781,99.547,100.203l-19.047-0.031L370.906,311.188z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M370.906,311.188L401.594,256h-19.188c-0.797-72.344-56.625-127.516-126.781-127.609\r\n\t\tc-70.609-0.078-127.766,57.078-127.672,127.688c0.078,70.625,57.359,127.906,127.969,127.969\r\n\t\tc39.875,0.094,75.406-18.125,98.797-46.625l-15.281-25.484c-17.938,27.016-48.641,44.75-83.562,44.703\r\n\t\tc-55.469-0.031-100.484-45.047-100.531-100.531c-0.062-55.484,44.844-100.375,100.312-100.312\r\n\t\tc55.219,0.094,99.078,45.781,99.547,100.203l-19.047-0.031L370.906,311.188z" + }, + "children": [] + }] + }] + }] +}; +exports.loginLockRefresh = loginLockRefresh; \ No newline at end of file diff --git a/dist/metrize/magicWand.js b/dist/metrize/magicWand.js new file mode 100644 index 000000000..621ce92bd --- /dev/null +++ b/dist/metrize/magicWand.js @@ -0,0 +1,93 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.magicWand = void 0; +var magicWand = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M295.656,189.562L128,357.297L154.695,384l167.789-167.594L295.656,189.562z M256.664,237.516l39.445-39.469L314,215.938\r\n\t\tl-39.438,39.469L256.664,237.516z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M295.656,189.562L128,357.297L154.695,384l167.789-167.594L295.656,189.562z M256.664,237.516l39.445-39.469L314,215.938\r\n\t\tl-39.438,39.469L256.664,237.516z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "362.734,162.719 349.312,149.297 322.484,176.141 335.906,189.562 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "362.734,162.719 349.312,149.297 322.484,176.141 335.906,189.562 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "288.406,165.375 281.812,128 263.148,131.297 269.75,168.688 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "288.406,165.375 281.812,128 263.148,131.297 269.75,168.688 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "346.641,223.656 343.359,242.328 380.719,248.938 384,230.25 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "346.641,223.656 343.359,242.328 380.719,248.938 384,230.25 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "304.422,278.719 320.453,313.125 337.656,305.094 321.625,270.703 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "304.422,278.719 320.453,313.125 337.656,305.094 321.625,270.703 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "241.391,190.453 207,174.422 198.969,191.625 233.367,207.656 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "241.391,190.453 207,174.422 198.969,191.625 233.367,207.656 \t" + }, + "children": [] + }] + }] + }] +}; +exports.magicWand = magicWand; \ No newline at end of file diff --git a/dist/metrize/magnet.js b/dist/metrize/magnet.js new file mode 100644 index 000000000..7eb7caa8e --- /dev/null +++ b/dist/metrize/magnet.js @@ -0,0 +1,69 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.magnet = void 0; +var magnet = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256c0,141.391,114.609,256,256,256c141.391,0,256-114.609,256-256\r\n\tC512,114.609,397.391,0,256,0z M256,472c-119.297,0-216-96.702-216-216c0-119.297,96.703-216,216-216c119.298,0,216,96.703,216,216\r\n\tC472,375.298,375.298,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "320", + "y": "144", + "width": "32", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "320", + "y": "144", + "width": "32", + "height": "32" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M320,272.438C320,307.546,291.546,336,256.453,336h-0.906C220.453,336,192,307.546,192,272.438V192h-32v80.656\r\n\t\tC160,325.313,202.688,368,255.328,368h1.344C309.313,368,352,325.313,352,272.656V192h-32V272.438z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M320,272.438C320,307.546,291.546,336,256.453,336h-0.906C220.453,336,192,307.546,192,272.438V192h-32v80.656\r\n\t\tC160,325.313,202.688,368,255.328,368h1.344C309.313,368,352,325.313,352,272.656V192h-32V272.438z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "160", + "y": "144", + "width": "32", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "160", + "y": "144", + "width": "32", + "height": "32" + }, + "children": [] + }] + }] + }] +}; +exports.magnet = magnet; \ No newline at end of file diff --git a/dist/metrize/mail.js b/dist/metrize/mail.js new file mode 100644 index 000000000..d19d9fd60 --- /dev/null +++ b/dist/metrize/mail.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.mail = void 0; +var mail = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M256,176H128v160h128h128V176H256z M256,192h89.719L256,255.75L166.281,192H256z M144,196.531l54.5,36.859L144,292.812\r\n\tV196.531z M256,320h-92.406l45.562-79.422L256,272.25l46.844-31.672L348.406,320H256z M368,292.812l-54.5-59.422l54.5-36.859\r\n\tV292.812z" + }, + "children": [] + }] +}; +exports.mail = mail; \ No newline at end of file diff --git a/dist/metrize/mailbox.js b/dist/metrize/mailbox.js new file mode 100644 index 000000000..12f89bd90 --- /dev/null +++ b/dist/metrize/mailbox.js @@ -0,0 +1,105 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.mailbox = void 0; +var mailbox = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M352.062,128L352,128.016V128H160.25v0.062L159.938,128L128,288v96h256v-95.5L352.062,128z M144.594,288.25l28.5-144.25\r\n\t\th165.828l28.5,144.25H144.594z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M352.062,128L352,128.016V128H160.25v0.062L159.938,128L128,288v96h256v-95.5L352.062,128z M144.594,288.25l28.5-144.25\r\n\t\th165.828l28.5,144.25H144.594z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "176", + "y": "256", + "width": "160", + "height": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "176", + "y": "256", + "width": "160", + "height": "16" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "184", + "y": "224", + "width": "144", + "height": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "184", + "y": "224", + "width": "144", + "height": "16" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "192", + "y": "192", + "width": "128", + "height": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "192", + "y": "192", + "width": "128", + "height": "16" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "200", + "y": "160", + "width": "112", + "height": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "200", + "y": "160", + "width": "112", + "height": "16" + }, + "children": [] + }] + }] + }] +}; +exports.mailbox = mailbox; \ No newline at end of file diff --git a/dist/metrize/maleSymbol.js b/dist/metrize/maleSymbol.js new file mode 100644 index 000000000..461fcdbb2 --- /dev/null +++ b/dist/metrize/maleSymbol.js @@ -0,0 +1,33 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.maleSymbol = void 0; +var maleSymbol = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,192c17.672,0,32-14.328,32-32s-14.328-32-32-32s-32,14.328-32,32S238.328,192,256,192z M208,208v80h16v96h64v-96h16\r\n\t\tv-80H208z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,192c17.672,0,32-14.328,32-32s-14.328-32-32-32s-32,14.328-32,32S238.328,192,256,192z M208,208v80h16v96h64v-96h16\r\n\t\tv-80H208z" + }, + "children": [] + }] + }] + }] +}; +exports.maleSymbol = maleSymbol; \ No newline at end of file diff --git a/dist/metrize/map.js b/dist/metrize/map.js new file mode 100644 index 000000000..630a50fc7 --- /dev/null +++ b/dist/metrize/map.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.map = void 0; +var map = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "135.5,368 199.5,336 199.5,144 135.5,176 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "135.5,368 199.5,336 199.5,144 135.5,176 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "215.5,336 279.5,368 279.5,176 215.5,144 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "215.5,336 279.5,368 279.5,176 215.5,144 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "295.5,368 359.5,336 359.5,144 295.5,176 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "295.5,368 359.5,336 359.5,144 295.5,176 \t" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,0C114.625,0,0,114.609,0,256s114.625,256,256,256c141.406,0,256-114.609,256-256S397.406,0,256,0z M256,472\r\n\t\tc-119.281,0-216-96.703-216-216S136.719,40,256,40c119.312,0,216,96.703,216,216S375.312,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.625,0,0,114.609,0,256s114.625,256,256,256c141.406,0,256-114.609,256-256S397.406,0,256,0z M256,472\r\n\t\tc-119.281,0-216-96.703-216-216S136.719,40,256,40c119.312,0,216,96.703,216,216S375.312,472,256,472z" + }, + "children": [] + }] + }] + }] +}; +exports.map = map; \ No newline at end of file diff --git a/dist/metrize/marker.js b/dist/metrize/marker.js new file mode 100644 index 000000000..25ea80262 --- /dev/null +++ b/dist/metrize/marker.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.marker = void 0; +var marker = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M256,128c-70.688,0-128,57.312-128,128s57.312,128,128,128h128V256C384,185.312,326.703,128,256,128z M160,256\r\n\tc0-52.938,43.062-96,96-96s96,43.062,96,96s-43.062,96-96,96S160,308.938,160,256z" + }, + "children": [] + }] +}; +exports.marker = marker; \ No newline at end of file diff --git a/dist/metrize/markerAdd.js b/dist/metrize/markerAdd.js new file mode 100644 index 000000000..682077b8e --- /dev/null +++ b/dist/metrize/markerAdd.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.markerAdd = void 0; +var markerAdd = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,128c-70.688,0-128,57.312-128,128s57.312,128,128,128h128V256C384,185.312,326.703,128,256,128z M256,352\r\n\t\tc-52.938,0-96-43.062-96-96s43.062-96,96-96s96,43.062,96,96S308.938,352,256,352z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,128c-70.688,0-128,57.312-128,128s57.312,128,128,128h128V256C384,185.312,326.703,128,256,128z M256,352\r\n\t\tc-52.938,0-96-43.062-96-96s43.062-96,96-96s96,43.062,96,96S308.938,352,256,352z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "272,208 240,208 240,240 208,240 208,272 240,272 240,304 272,304 272,272 304,272 304,240 272,240 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "272,208 240,208 240,240 208,240 208,272 240,272 240,304 272,304 272,272 304,272 304,240 272,240 \t" + }, + "children": [] + }] + }] + }] +}; +exports.markerAdd = markerAdd; \ No newline at end of file diff --git a/dist/metrize/markerMinus.js b/dist/metrize/markerMinus.js new file mode 100644 index 000000000..77afcaa36 --- /dev/null +++ b/dist/metrize/markerMinus.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.markerMinus = void 0; +var markerMinus = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,128c-70.688,0-128,57.312-128,128s57.312,128,128,128h128V256C384,185.312,326.703,128,256,128z M256,352\r\n\t\tc-52.938,0-96-43.062-96-96s43.062-96,96-96s96,43.062,96,96S308.938,352,256,352z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,128c-70.688,0-128,57.312-128,128s57.312,128,128,128h128V256C384,185.312,326.703,128,256,128z M256,352\r\n\t\tc-52.938,0-96-43.062-96-96s43.062-96,96-96s96,43.062,96,96S308.938,352,256,352z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "208", + "y": "240", + "width": "96", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "208", + "y": "240", + "width": "96", + "height": "32" + }, + "children": [] + }] + }] + }] +}; +exports.markerMinus = markerMinus; \ No newline at end of file diff --git a/dist/metrize/markerPoints.js b/dist/metrize/markerPoints.js new file mode 100644 index 000000000..9328f1e3f --- /dev/null +++ b/dist/metrize/markerPoints.js @@ -0,0 +1,69 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.markerPoints = void 0; +var markerPoints = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,128c-70.688,0-128,57.312-128,128s57.312,128,128,128h128V256C384,185.312,326.703,128,256,128z M256,352\r\n\t\tc-52.938,0-96-43.062-96-96s43.062-96,96-96s96,43.062,96,96S308.938,352,256,352z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,128c-70.688,0-128,57.312-128,128s57.312,128,128,128h128V256C384,185.312,326.703,128,256,128z M256,352\r\n\t\tc-52.938,0-96-43.062-96-96s43.062-96,96-96s96,43.062,96,96S308.938,352,256,352z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M208,240c-8.828,0-16,7.156-16,16s7.172,16,16,16c8.844,0,16-7.156,16-16S216.844,240,208,240z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M208,240c-8.828,0-16,7.156-16,16s7.172,16,16,16c8.844,0,16-7.156,16-16S216.844,240,208,240z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,240c-8.844,0-16,7.156-16,16s7.156,16,16,16c8.828,0,16-7.156,16-16S264.828,240,256,240z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,240c-8.844,0-16,7.156-16,16s7.156,16,16,16c8.828,0,16-7.156,16-16S264.828,240,256,240z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M304,240c-8.844,0-16,7.156-16,16s7.156,16,16,16c8.828,0,16-7.156,16-16S312.828,240,304,240z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M304,240c-8.844,0-16,7.156-16,16s7.156,16,16,16c8.828,0,16-7.156,16-16S312.828,240,304,240z" + }, + "children": [] + }] + }] + }] +}; +exports.markerPoints = markerPoints; \ No newline at end of file diff --git a/dist/metrize/minus.js b/dist/metrize/minus.js new file mode 100644 index 000000000..4d6f04deb --- /dev/null +++ b/dist/metrize/minus.js @@ -0,0 +1,26 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.minus = void 0; +var minus = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "rect", + "attribs": { + "x": "128", + "y": "240", + "width": "256", + "height": "32" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] +}; +exports.minus = minus; \ No newline at end of file diff --git a/dist/metrize/multiBorders.js b/dist/metrize/multiBorders.js new file mode 100644 index 000000000..0502b76ad --- /dev/null +++ b/dist/metrize/multiBorders.js @@ -0,0 +1,165 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.multiBorders = void 0; +var multiBorders = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "128", + "y": "192", + "width": "256", + "height": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "128", + "y": "192", + "width": "256", + "height": "16" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "128", + "y": "240", + "width": "256", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "128", + "y": "240", + "width": "256", + "height": "32" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "128", + "y": "304", + "width": "256", + "height": "64" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "128", + "y": "304", + "width": "256", + "height": "64" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "128", + "y": "144", + "width": "32", + "height": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "128", + "y": "144", + "width": "32", + "height": "16" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "176", + "y": "144", + "width": "32", + "height": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "176", + "y": "144", + "width": "32", + "height": "16" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "224", + "y": "144", + "width": "64", + "height": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "224", + "y": "144", + "width": "64", + "height": "16" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "304", + "y": "144", + "width": "32", + "height": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "304", + "y": "144", + "width": "32", + "height": "16" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "352", + "y": "144", + "width": "32", + "height": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "352", + "y": "144", + "width": "32", + "height": "16" + }, + "children": [] + }] + }] + }] +}; +exports.multiBorders = multiBorders; \ No newline at end of file diff --git a/dist/metrize/music.js b/dist/metrize/music.js new file mode 100644 index 000000000..a693fd8e9 --- /dev/null +++ b/dist/metrize/music.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.music = void 0; +var music = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M199.5,318.466c-16-4.635-7.93-7.499-18.514-7.499c-25.814,0-41.969,16.406-41.969,36.634\r\n\t\tc0,20.242,12.41,36.649,38.227,36.649c25.831,0,38.256-16.407,38.256-36.649V237.667l112-54.951v117.417\r\n\t\tc-16-4.634-6.475-7.483-17.057-7.483c-25.801,0-41.25,16.407-41.25,36.634c0,20.243,11.33,36.649,37.146,36.649\r\n\t\tc25.831,0,37.16-16.406,37.16-36.649V127.75l-144,73.284V318.466z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M199.5,318.466c-16-4.635-7.93-7.499-18.514-7.499c-25.814,0-41.969,16.406-41.969,36.634\r\n\t\tc0,20.242,12.41,36.649,38.227,36.649c25.831,0,38.256-16.407,38.256-36.649V237.667l112-54.951v117.417\r\n\t\tc-16-4.634-6.475-7.483-17.057-7.483c-25.801,0-41.25,16.407-41.25,36.634c0,20.243,11.33,36.649,37.146,36.649\r\n\t\tc25.831,0,37.16-16.406,37.16-36.649V127.75l-144,73.284V318.466z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256-0.5C114.349-0.5-0.5,114.333-0.5,256S114.349,512.5,256,512.5c141.683,0,256.5-114.833,256.5-256.5\r\n\t\tS397.683-0.5,256-0.5z M256,472.422C136.485,472.422,39.578,375.53,39.578,256c0-119.53,96.907-216.422,216.422-216.422\r\n\t\tc119.546,0,216.422,96.892,216.422,216.422C472.422,375.53,375.546,472.422,256,472.422z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256-0.5C114.349-0.5-0.5,114.333-0.5,256S114.349,512.5,256,512.5c141.683,0,256.5-114.833,256.5-256.5\r\n\t\tS397.683-0.5,256-0.5z M256,472.422C136.485,472.422,39.578,375.53,39.578,256c0-119.53,96.907-216.422,216.422-216.422\r\n\t\tc119.546,0,216.422,96.892,216.422,216.422C472.422,375.53,375.546,472.422,256,472.422z" + }, + "children": [] + }] + }] + }] +}; +exports.music = music; \ No newline at end of file diff --git a/dist/metrize/nextFastStep.js b/dist/metrize/nextFastStep.js new file mode 100644 index 000000000..d27bca9ee --- /dev/null +++ b/dist/metrize/nextFastStep.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.nextFastStep = void 0; +var nextFastStep = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "128,336 224,256 128,176 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "128,336 224,256 128,176 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "224,256 224,336 320,256 224,176 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "224,256 224,336 320,256 224,176 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "320,240 320,336 352,336 352,176 320,176 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "320,240 320,336 352,336 352,176 320,176 \t" + }, + "children": [] + }] + }] + }] +}; +exports.nextFastStep = nextFastStep; \ No newline at end of file diff --git a/dist/metrize/nextStep.js b/dist/metrize/nextStep.js new file mode 100644 index 000000000..16f3a996b --- /dev/null +++ b/dist/metrize/nextStep.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.nextStep = void 0; +var nextStep = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "176,336 272,256 176,176 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "176,336 272,256 176,176 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "272,240 272,336 304,336 304,176 272,176 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "272,240 272,336 304,336 304,176 272,176 \t" + }, + "children": [] + }] + }] + }] +}; +exports.nextStep = nextStep; \ No newline at end of file diff --git a/dist/metrize/numberEight.js b/dist/metrize/numberEight.js new file mode 100644 index 000000000..ac643e6d3 --- /dev/null +++ b/dist/metrize/numberEight.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.numberEight = void 0; +var numberEight = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M327.172,271.406c-3.094-5.688-7.219-10.688-12.141-15c-4.891-4.25-10.75-7.531-17.547-9.906\r\n\t\tc9.812-4.984,17.766-12.109,23.875-21.359c6.25-9.266,9.297-21.047,9.297-35.484c0-8.516-1.672-16.516-5.141-24.016\r\n\t\ts-8.391-14.016-14.938-19.609c-6.547-5.547-14.453-10-23.562-13.172C277.781,129.625,267.453,128,256,128\r\n\t\tc-11.766,0-22.172,1.625-31.375,4.859c-9.125,3.172-16.938,7.625-23.344,13.172c-6.422,5.594-11.297,12.109-14.562,19.609\r\n\t\tc-3.281,7.5-4.906,15.5-4.906,24.016c0,14.438,2.938,26.344,9,35.719c5.953,9.375,14.078,16.484,24.219,21.125\r\n\t\tc-7.188,2.375-13.156,5.75-18.062,10.141c-4.984,4.391-8.969,9.578-12.125,15.469c-3.125,5.875-5.375,12.125-6.75,18.672\r\n\t\tc-1.391,6.688-2.094,13.203-2.094,19.672c0,9.594,1.859,18.844,5.594,27.75c3.703,8.781,8.969,16.562,15.969,23.312\r\n\t\tc6.984,6.75,15.375,12.234,25.219,16.266C232.656,381.984,243.656,384,256,384s23.391-2.016,33.172-6.219\r\n\t\tc9.938-4.031,18.344-9.547,25.344-16.5c6.844-6.812,12.203-14.797,15.922-23.781c3.703-8.984,5.562-18.266,5.562-27.984\r\n\t\tc0-6.484-0.688-12.984-2.078-19.547C332.531,283.297,330.375,277.172,327.172,271.406z M214.688,193.234\r\n\t\tc0-9.453,3.422-17.969,10.312-25.609c6.875-7.625,17.375-11.469,31.453-11.469c7.141,0,13.328,1.078,18.531,3.094\r\n\t\tc5.281,2.094,9.5,4.875,12.781,8.375c3.422,3.516,5.828,7.5,7.453,11.891c1.656,4.453,2.531,8.984,2.531,13.719\r\n\t\tc0,5.266-0.906,10.266-2.75,14.922c-1.688,4.719-4.281,8.938-7.75,12.594s-7.844,6.609-13.047,8.781\r\n\t\tc-5.266,2.219-11.188,3.344-17.75,3.344c-13.766,0-24.234-4.016-31.234-12.125C218.203,212.641,214.688,203.5,214.688,193.234z\r\n\t\t M300.141,326.734c-1.906,5.266-4.734,10.031-8.656,14.281c-3.766,4.266-8.625,7.719-14.422,10.203\r\n\t\tc-5.781,2.5-12.656,3.75-20.609,3.75c-6.641,0-12.828-1.25-18.641-3.75c-5.734-2.484-10.75-5.766-15.047-9.969\r\n\t\tc-4.297-4.047-7.688-8.797-10.141-14.266c-2.469-5.469-3.734-11.188-3.734-17c0-5.938,1.047-11.75,3.141-17.688\r\n\t\tc2.094-5.812,5-11.031,8.859-15.562c3.859-4.594,8.734-8.234,14.672-11.016c5.875-2.828,12.75-4.219,20.438-4.219\r\n\t\tc7.469,0,14.125,1.391,20.047,4.219c5.891,2.781,10.938,6.422,14.906,11.016c3.984,4.531,7.016,9.75,9.094,15.562\r\n\t\tc1.953,5.938,3.062,11.75,3.062,17.688C303.109,315.797,302.172,321.484,300.141,326.734z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M327.172,271.406c-3.094-5.688-7.219-10.688-12.141-15c-4.891-4.25-10.75-7.531-17.547-9.906\r\n\t\tc9.812-4.984,17.766-12.109,23.875-21.359c6.25-9.266,9.297-21.047,9.297-35.484c0-8.516-1.672-16.516-5.141-24.016\r\n\t\ts-8.391-14.016-14.938-19.609c-6.547-5.547-14.453-10-23.562-13.172C277.781,129.625,267.453,128,256,128\r\n\t\tc-11.766,0-22.172,1.625-31.375,4.859c-9.125,3.172-16.938,7.625-23.344,13.172c-6.422,5.594-11.297,12.109-14.562,19.609\r\n\t\tc-3.281,7.5-4.906,15.5-4.906,24.016c0,14.438,2.938,26.344,9,35.719c5.953,9.375,14.078,16.484,24.219,21.125\r\n\t\tc-7.188,2.375-13.156,5.75-18.062,10.141c-4.984,4.391-8.969,9.578-12.125,15.469c-3.125,5.875-5.375,12.125-6.75,18.672\r\n\t\tc-1.391,6.688-2.094,13.203-2.094,19.672c0,9.594,1.859,18.844,5.594,27.75c3.703,8.781,8.969,16.562,15.969,23.312\r\n\t\tc6.984,6.75,15.375,12.234,25.219,16.266C232.656,381.984,243.656,384,256,384s23.391-2.016,33.172-6.219\r\n\t\tc9.938-4.031,18.344-9.547,25.344-16.5c6.844-6.812,12.203-14.797,15.922-23.781c3.703-8.984,5.562-18.266,5.562-27.984\r\n\t\tc0-6.484-0.688-12.984-2.078-19.547C332.531,283.297,330.375,277.172,327.172,271.406z M214.688,193.234\r\n\t\tc0-9.453,3.422-17.969,10.312-25.609c6.875-7.625,17.375-11.469,31.453-11.469c7.141,0,13.328,1.078,18.531,3.094\r\n\t\tc5.281,2.094,9.5,4.875,12.781,8.375c3.422,3.516,5.828,7.5,7.453,11.891c1.656,4.453,2.531,8.984,2.531,13.719\r\n\t\tc0,5.266-0.906,10.266-2.75,14.922c-1.688,4.719-4.281,8.938-7.75,12.594s-7.844,6.609-13.047,8.781\r\n\t\tc-5.266,2.219-11.188,3.344-17.75,3.344c-13.766,0-24.234-4.016-31.234-12.125C218.203,212.641,214.688,203.5,214.688,193.234z\r\n\t\t M300.141,326.734c-1.906,5.266-4.734,10.031-8.656,14.281c-3.766,4.266-8.625,7.719-14.422,10.203\r\n\t\tc-5.781,2.5-12.656,3.75-20.609,3.75c-6.641,0-12.828-1.25-18.641-3.75c-5.734-2.484-10.75-5.766-15.047-9.969\r\n\t\tc-4.297-4.047-7.688-8.797-10.141-14.266c-2.469-5.469-3.734-11.188-3.734-17c0-5.938,1.047-11.75,3.141-17.688\r\n\t\tc2.094-5.812,5-11.031,8.859-15.562c3.859-4.594,8.734-8.234,14.672-11.016c5.875-2.828,12.75-4.219,20.438-4.219\r\n\t\tc7.469,0,14.125,1.391,20.047,4.219c5.891,2.781,10.938,6.422,14.906,11.016c3.984,4.531,7.016,9.75,9.094,15.562\r\n\t\tc1.953,5.938,3.062,11.75,3.062,17.688C303.109,315.797,302.172,321.484,300.141,326.734z" + }, + "children": [] + }] + }] + }] +}; +exports.numberEight = numberEight; \ No newline at end of file diff --git a/dist/metrize/numberFive.js b/dist/metrize/numberFive.js new file mode 100644 index 000000000..9e13f3d4b --- /dev/null +++ b/dist/metrize/numberFive.js @@ -0,0 +1,33 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.numberFive = void 0; +var numberFive = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M183.219,263.844L198.453,128h124.062v29.031H221.328l-6.828,70.109l1.219,0.484c5.844-5.641,12.719-9.656,20.656-12.031\r\n\t\tc7.875-2.375,15.719-3.594,23.469-3.594c10.969,0,21.109,2.234,30.5,6.719c9.266,4.406,17.359,10.531,24.078,18.281\r\n\t\tc6.734,7.75,12.078,16.891,15.906,27.5c3.797,10.531,5.672,21.781,5.672,33.734c0,11.016-1.656,21.578-5.031,31.984\r\n\t\tc-3.531,10.25-8.656,19.328-15.391,27.5c-6.734,8-15.297,14.328-25.656,19.078c-10.406,4.75-22.578,7.203-36.484,7.203\r\n\t\tc-19.531,0-36.375-6.188-50.531-18.281c-14.219-12.234-23.188-30.172-26.906-53.688h32.516c2.922,13.453,8.453,23.969,16.641,31.5\r\n\t\tc8.172,7.531,17.719,11.453,28.656,11.453c7.5,0,14.328-1.5,20.422-4.5c6.219-2.969,11.453-6.984,15.906-12.016\r\n\t\tc4.328-5.156,7.828-11.219,10.156-18.422c2.453-7.078,3.594-14.734,3.594-22.766c0-8.297-1.391-15.859-4.344-22.766\r\n\t\tc-3.062-6.797-6.906-12.734-11.859-17.641c-4.922-4.891-10.625-8.75-17.031-11.625C264.234,242.469,257.688,241,251,241\r\n\t\tc-7.469,0-14.719,1.844-21.688,5.375c-6.938,3.609-12.812,9.375-17.625,17.469H183.219z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M183.219,263.844L198.453,128h124.062v29.031H221.328l-6.828,70.109l1.219,0.484c5.844-5.641,12.719-9.656,20.656-12.031\r\n\t\tc7.875-2.375,15.719-3.594,23.469-3.594c10.969,0,21.109,2.234,30.5,6.719c9.266,4.406,17.359,10.531,24.078,18.281\r\n\t\tc6.734,7.75,12.078,16.891,15.906,27.5c3.797,10.531,5.672,21.781,5.672,33.734c0,11.016-1.656,21.578-5.031,31.984\r\n\t\tc-3.531,10.25-8.656,19.328-15.391,27.5c-6.734,8-15.297,14.328-25.656,19.078c-10.406,4.75-22.578,7.203-36.484,7.203\r\n\t\tc-19.531,0-36.375-6.188-50.531-18.281c-14.219-12.234-23.188-30.172-26.906-53.688h32.516c2.922,13.453,8.453,23.969,16.641,31.5\r\n\t\tc8.172,7.531,17.719,11.453,28.656,11.453c7.5,0,14.328-1.5,20.422-4.5c6.219-2.969,11.453-6.984,15.906-12.016\r\n\t\tc4.328-5.156,7.828-11.219,10.156-18.422c2.453-7.078,3.594-14.734,3.594-22.766c0-8.297-1.391-15.859-4.344-22.766\r\n\t\tc-3.062-6.797-6.906-12.734-11.859-17.641c-4.922-4.891-10.625-8.75-17.031-11.625C264.234,242.469,257.688,241,251,241\r\n\t\tc-7.469,0-14.719,1.844-21.688,5.375c-6.938,3.609-12.812,9.375-17.625,17.469H183.219z" + }, + "children": [] + }] + }] + }] +}; +exports.numberFive = numberFive; \ No newline at end of file diff --git a/dist/metrize/numberFour.js b/dist/metrize/numberFour.js new file mode 100644 index 000000000..e6c8609a7 --- /dev/null +++ b/dist/metrize/numberFour.js @@ -0,0 +1,33 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.numberFour = void 0; +var numberFour = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M274.203,384v-62.5H176v-37.203L274.203,128H303.5v164.484H336V321.5h-32.5V384H274.203z M202.438,292.484h71.766V176.969\r\n\t\tL202.438,292.484z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M274.203,384v-62.5H176v-37.203L274.203,128H303.5v164.484H336V321.5h-32.5V384H274.203z M202.438,292.484h71.766V176.969\r\n\t\tL202.438,292.484z" + }, + "children": [] + }] + }] + }] +}; +exports.numberFour = numberFour; \ No newline at end of file diff --git a/dist/metrize/numberNine.js b/dist/metrize/numberNine.js new file mode 100644 index 000000000..29cc75190 --- /dev/null +++ b/dist/metrize/numberNine.js @@ -0,0 +1,33 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.numberNine = void 0; +var numberNine = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M208.594,317.016c3.188,13.516,9.125,23.422,17.875,29.422c8.672,6.016,17.656,9.016,26.688,9.016\r\n\t\tc9.672,0,17.766-2.438,24.344-7.172c6.547-4.578,11.812-11,15.875-18.844c4.078-7.953,6.859-16.969,8.641-27.172\r\n\t\tc1.688-10.062,2.547-20.578,2.547-31.5c-7.359,10.922-15.734,18.234-24.875,22.016c-9.094,3.922-17.969,5.734-26.531,5.734\r\n\t\tc-9.031,0-18.219-1.984-27.281-5.969c-9.094-3.984-17.375-9.516-24.781-16.703c-7.312-7.203-13.375-15.719-18.031-25.562\r\n\t\tC178.375,240.469,176,229.5,176,217.469c0-12.062,1.719-23.5,5.031-34.375c3.375-10.859,8.266-20.344,14.672-28.438\r\n\t\tc6.484-8.062,14.469-14.531,24.141-19.391c9.594-4.797,20.688-7.266,33.312-7.266c26.031,0,46.328,10,60.938,29.984\r\n\t\tC328.688,177.969,336,206.625,336,243.875c0,15.875-1.156,32.141-3.438,48.672c-2.297,16.688-6.547,31.719-12.703,45.203\r\n\t\tc-6.188,13.516-14.625,24.688-25.312,33.266C283.844,379.734,270.031,384,253.156,384c-8.781,0-17.469-1.234-26.125-3.734\r\n\t\tc-8.547-2.5-16.156-6.312-22.891-11.703c-6.703-5.281-12.297-12.109-16.859-20.625c-4.562-8.5-7.203-18.906-8.094-30.922H208.594z\r\n\t\t M253.016,269.875c6.391,0,12.547-1.406,18.266-4.375c5.844-2.969,10.766-6.984,15.016-12.125\r\n\t\tc4.156-5.125,7.531-11.141,10.047-18.094c2.531-6.891,3.859-14.281,3.859-22.25c0-7.906-1.328-15.266-3.859-22.031\r\n\t\tc-2.516-6.734-5.891-12.719-10.047-17.844c-4.25-5.125-9.172-9.156-15.016-12.125c-5.719-2.906-11.875-4.406-18.266-4.406\r\n\t\tc-6.234,0-12.031,1.5-17.422,4.406c-5.344,2.969-10.109,7-14.125,12.125c-4,5.125-7.281,11.109-9.688,17.844\r\n\t\tc-2.406,6.766-3.625,14.125-3.625,22.031c0,7.969,1.219,15.359,3.625,22.25c2.406,6.953,5.688,12.969,9.688,18.094\r\n\t\tc4.016,5.141,8.781,9.156,14.125,12.125C240.984,268.469,246.781,269.875,253.016,269.875z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M208.594,317.016c3.188,13.516,9.125,23.422,17.875,29.422c8.672,6.016,17.656,9.016,26.688,9.016\r\n\t\tc9.672,0,17.766-2.438,24.344-7.172c6.547-4.578,11.812-11,15.875-18.844c4.078-7.953,6.859-16.969,8.641-27.172\r\n\t\tc1.688-10.062,2.547-20.578,2.547-31.5c-7.359,10.922-15.734,18.234-24.875,22.016c-9.094,3.922-17.969,5.734-26.531,5.734\r\n\t\tc-9.031,0-18.219-1.984-27.281-5.969c-9.094-3.984-17.375-9.516-24.781-16.703c-7.312-7.203-13.375-15.719-18.031-25.562\r\n\t\tC178.375,240.469,176,229.5,176,217.469c0-12.062,1.719-23.5,5.031-34.375c3.375-10.859,8.266-20.344,14.672-28.438\r\n\t\tc6.484-8.062,14.469-14.531,24.141-19.391c9.594-4.797,20.688-7.266,33.312-7.266c26.031,0,46.328,10,60.938,29.984\r\n\t\tC328.688,177.969,336,206.625,336,243.875c0,15.875-1.156,32.141-3.438,48.672c-2.297,16.688-6.547,31.719-12.703,45.203\r\n\t\tc-6.188,13.516-14.625,24.688-25.312,33.266C283.844,379.734,270.031,384,253.156,384c-8.781,0-17.469-1.234-26.125-3.734\r\n\t\tc-8.547-2.5-16.156-6.312-22.891-11.703c-6.703-5.281-12.297-12.109-16.859-20.625c-4.562-8.5-7.203-18.906-8.094-30.922H208.594z\r\n\t\t M253.016,269.875c6.391,0,12.547-1.406,18.266-4.375c5.844-2.969,10.766-6.984,15.016-12.125\r\n\t\tc4.156-5.125,7.531-11.141,10.047-18.094c2.531-6.891,3.859-14.281,3.859-22.25c0-7.906-1.328-15.266-3.859-22.031\r\n\t\tc-2.516-6.734-5.891-12.719-10.047-17.844c-4.25-5.125-9.172-9.156-15.016-12.125c-5.719-2.906-11.875-4.406-18.266-4.406\r\n\t\tc-6.234,0-12.031,1.5-17.422,4.406c-5.344,2.969-10.109,7-14.125,12.125c-4,5.125-7.281,11.109-9.688,17.844\r\n\t\tc-2.406,6.766-3.625,14.125-3.625,22.031c0,7.969,1.219,15.359,3.625,22.25c2.406,6.953,5.688,12.969,9.688,18.094\r\n\t\tc4.016,5.141,8.781,9.156,14.125,12.125C240.984,268.469,246.781,269.875,253.016,269.875z" + }, + "children": [] + }] + }] + }] +}; +exports.numberNine = numberNine; \ No newline at end of file diff --git a/dist/metrize/numberOne.js b/dist/metrize/numberOne.js new file mode 100644 index 000000000..60dde01c5 --- /dev/null +++ b/dist/metrize/numberOne.js @@ -0,0 +1,33 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.numberOne = void 0; +var numberOne = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256c0,141.391,114.609,256,256,256c141.391,0,256-114.609,256-256\r\n\tC512,114.609,397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M249.703,201.25H188v-25h19.312c6.859,0,13.422-1.219,19.5-3.594c6.172-2.375,11.438-5.641,15.797-9.797\r\n\t\tc4.358-4.203,7.922-9.25,10.547-15.234c2.734-5.906,4.047-12.5,4.047-19.625H284v256h-34.297V201.25z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M249.703,201.25H188v-25h19.312c6.859,0,13.422-1.219,19.5-3.594c6.172-2.375,11.438-5.641,15.797-9.797\r\n\t\tc4.358-4.203,7.922-9.25,10.547-15.234c2.734-5.906,4.047-12.5,4.047-19.625H284v256h-34.297V201.25z" + }, + "children": [] + }] + }] + }] +}; +exports.numberOne = numberOne; \ No newline at end of file diff --git a/dist/metrize/numberSeven.js b/dist/metrize/numberSeven.js new file mode 100644 index 000000000..bba028fe8 --- /dev/null +++ b/dist/metrize/numberSeven.js @@ -0,0 +1,33 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.numberSeven = void 0; +var numberSeven = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M210.188,384c5.156-43.219,15.688-83.281,31.562-120.266c15.844-37.016,36.953-72.328,63.391-105.828v-0.438H176V128h160\r\n\t\tv29.469c-13.047,17.516-24.922,35.875-35.562,55.031c-10.75,19.219-20.156,38.5-28.156,58c-7.984,19.484-14.5,38.953-19.531,58.234\r\n\t\tc-5.047,19.281-8.344,37.75-10,55.266H210.188z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M210.188,384c5.156-43.219,15.688-83.281,31.562-120.266c15.844-37.016,36.953-72.328,63.391-105.828v-0.438H176V128h160\r\n\t\tv29.469c-13.047,17.516-24.922,35.875-35.562,55.031c-10.75,19.219-20.156,38.5-28.156,58c-7.984,19.484-14.5,38.953-19.531,58.234\r\n\t\tc-5.047,19.281-8.344,37.75-10,55.266H210.188z" + }, + "children": [] + }] + }] + }] +}; +exports.numberSeven = numberSeven; \ No newline at end of file diff --git a/dist/metrize/numberSix.js b/dist/metrize/numberSix.js new file mode 100644 index 000000000..041f596e1 --- /dev/null +++ b/dist/metrize/numberSix.js @@ -0,0 +1,33 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.numberSix = void 0; +var numberSix = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M302.922,193.656c0-4.406-1-8.797-3.297-13.188c-2.156-4.438-5.141-8.375-8.688-11.938\r\n\t\tc-3.547-3.531-7.938-6.375-13.047-8.562c-5.109-2.219-10.516-3.344-16.281-3.344c-10.281,0-18.516,2.516-24.859,7.5\r\n\t\tc-6.312,5-11.375,11.531-15.094,19.625c-3.688,8.094-6.344,17.125-7.875,27.125c-1.516,9.969-2.375,19.781-2.688,29.5h1.266\r\n\t\tc14.312-14.656,29.797-22.031,46.578-22.031c10.688,0,20.766,2.047,30.328,6.156c9.438,4.125,17.625,9.875,24.453,17.234\r\n\t\tc6.969,7.281,12.359,16.141,16.375,26.391c3.969,10.297,5.906,21.422,5.906,33.422c0,11.219-1.844,21.906-5.391,31.891\r\n\t\tc-3.531,10-8.656,18.625-15.25,26.094c-6.594,7.5-14.594,13.469-24.141,17.938c-9.422,4.328-20.094,6.531-31.938,6.531\r\n\t\tc-12.656,0-24.141-2.562-34.469-7.938c-10.25-5.266-19.016-12.812-26.156-22.609c-7.172-9.922-12.703-21.891-16.688-35.953\r\n\t\tc-4-14.047-5.969-30.062-5.969-48.016c0-25.609,1.969-47.391,5.969-65.484c4-18.031,9.719-32.641,17.156-43.844\r\n\t\tc7.469-11.141,16.406-19.281,26.875-24.422c10.5-5.125,22.156-7.734,35.156-7.734c10.188,0,19.688,1.844,28.359,5.5\r\n\t\tc8.688,3.719,16.156,8.609,22.312,14.766c6.141,6.203,11.203,13.234,14.953,21.141c3.594,7.953,5.734,16.062,6.359,24.25H302.922z\r\n\t\t M259.141,355.453c14.828,0,25.906-5.172,33-15.219c7.234-10.219,10.781-22.734,10.781-37.734c0-7.297-0.906-14.281-2.641-20.938\r\n\t\tc-1.828-6.578-4.625-12.453-8.359-17.578c-3.609-5.141-8.219-9.25-13.625-12.359C272.906,248.5,266.672,247,259.5,247\r\n\t\tc-8.797,0-16.281,1.75-22.281,5.25c-6.094,3.531-11,8.016-14.75,13.484c-3.656,5.391-6.344,11.359-7.844,17.797\r\n\t\tc-1.469,6.484-2.266,12.766-2.266,18.969c0,15.953,4.234,28.719,12.797,38.438C233.719,350.516,245,355.453,259.141,355.453z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M302.922,193.656c0-4.406-1-8.797-3.297-13.188c-2.156-4.438-5.141-8.375-8.688-11.938\r\n\t\tc-3.547-3.531-7.938-6.375-13.047-8.562c-5.109-2.219-10.516-3.344-16.281-3.344c-10.281,0-18.516,2.516-24.859,7.5\r\n\t\tc-6.312,5-11.375,11.531-15.094,19.625c-3.688,8.094-6.344,17.125-7.875,27.125c-1.516,9.969-2.375,19.781-2.688,29.5h1.266\r\n\t\tc14.312-14.656,29.797-22.031,46.578-22.031c10.688,0,20.766,2.047,30.328,6.156c9.438,4.125,17.625,9.875,24.453,17.234\r\n\t\tc6.969,7.281,12.359,16.141,16.375,26.391c3.969,10.297,5.906,21.422,5.906,33.422c0,11.219-1.844,21.906-5.391,31.891\r\n\t\tc-3.531,10-8.656,18.625-15.25,26.094c-6.594,7.5-14.594,13.469-24.141,17.938c-9.422,4.328-20.094,6.531-31.938,6.531\r\n\t\tc-12.656,0-24.141-2.562-34.469-7.938c-10.25-5.266-19.016-12.812-26.156-22.609c-7.172-9.922-12.703-21.891-16.688-35.953\r\n\t\tc-4-14.047-5.969-30.062-5.969-48.016c0-25.609,1.969-47.391,5.969-65.484c4-18.031,9.719-32.641,17.156-43.844\r\n\t\tc7.469-11.141,16.406-19.281,26.875-24.422c10.5-5.125,22.156-7.734,35.156-7.734c10.188,0,19.688,1.844,28.359,5.5\r\n\t\tc8.688,3.719,16.156,8.609,22.312,14.766c6.141,6.203,11.203,13.234,14.953,21.141c3.594,7.953,5.734,16.062,6.359,24.25H302.922z\r\n\t\t M259.141,355.453c14.828,0,25.906-5.172,33-15.219c7.234-10.219,10.781-22.734,10.781-37.734c0-7.297-0.906-14.281-2.641-20.938\r\n\t\tc-1.828-6.578-4.625-12.453-8.359-17.578c-3.609-5.141-8.219-9.25-13.625-12.359C272.906,248.5,266.672,247,259.5,247\r\n\t\tc-8.797,0-16.281,1.75-22.281,5.25c-6.094,3.531-11,8.016-14.75,13.484c-3.656,5.391-6.344,11.359-7.844,17.797\r\n\t\tc-1.469,6.484-2.266,12.766-2.266,18.969c0,15.953,4.234,28.719,12.797,38.438C233.719,350.516,245,355.453,259.141,355.453z" + }, + "children": [] + }] + }] + }] +}; +exports.numberSix = numberSix; \ No newline at end of file diff --git a/dist/metrize/numberThree.js b/dist/metrize/numberThree.js new file mode 100644 index 000000000..2d9360351 --- /dev/null +++ b/dist/metrize/numberThree.js @@ -0,0 +1,33 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.numberThree = void 0; +var numberThree = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M182.828,204.781c2.688-24.062,9.672-42.922,20.938-56.5C215.031,134.766,232.812,128,257.25,128\r\n\t\tc21.156,0,37.938,5.969,50.25,17.875s18.469,27.75,18.469,47.469c0,14.125-2.562,25.375-7.781,33.781\r\n\t\tc-5.234,8.375-13.453,14.906-24.781,19.625c5.422,1.75,10.641,4.25,15.688,7.5c5.188,3.25,9.734,7.406,13.672,12.594\r\n\t\tc4.062,5.156,7.266,11.234,9.734,18.344c2.344,7.047,3.5,15.359,3.5,25.094c0,12.172-2.078,22.688-6.234,31.75\r\n\t\tc-4.281,9.188-9.984,16.906-17.078,22.984c-7.234,6.219-15.641,10.938-25.047,14.188c-9.531,3.234-19.672,4.797-30.391,4.797\r\n\t\tc-21.969,0-40.156-6.984-54.5-20.984c-14.344-13.984-23.25-34.547-26.75-62h32.562c3.188,20,8.734,34.047,16.5,42.203\r\n\t\tc7.75,8.031,18.531,12.062,32.188,12.062c6.156,0,12.094-1.016,17.703-3.047c5.641-2.016,10.516-5.016,14.812-9.016\r\n\t\tc4.312-4,7.734-8.734,10.391-14.281c2.5-5.688,3.703-11.906,3.703-18.656c0-13.516-4.125-25.016-12.5-34.438\r\n\t\tc-8.25-9.375-19.641-14.094-34.109-14.094h-18.516v-28.719h18.516c6.719,0,12.422-1.062,17.109-3.281\r\n\t\tc4.656-2.234,8.484-5.094,11.453-8.625c2.953-3.5,5.031-7.5,6.219-11.875c1.297-4.469,1.797-8.875,1.797-13.25\r\n\t\tc0-12.375-3.406-22.109-10.25-29.156c-6.828-7.078-15.922-10.594-27.188-10.594c-6.953,0-12.797,1.281-17.656,3.984\r\n\t\tc-4.812,2.641-8.875,6.156-12.078,10.547c-3.188,4.453-5.719,9.594-7.625,15.484c-1.859,5.875-3.219,12.109-4,18.516H182.828z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M182.828,204.781c2.688-24.062,9.672-42.922,20.938-56.5C215.031,134.766,232.812,128,257.25,128\r\n\t\tc21.156,0,37.938,5.969,50.25,17.875s18.469,27.75,18.469,47.469c0,14.125-2.562,25.375-7.781,33.781\r\n\t\tc-5.234,8.375-13.453,14.906-24.781,19.625c5.422,1.75,10.641,4.25,15.688,7.5c5.188,3.25,9.734,7.406,13.672,12.594\r\n\t\tc4.062,5.156,7.266,11.234,9.734,18.344c2.344,7.047,3.5,15.359,3.5,25.094c0,12.172-2.078,22.688-6.234,31.75\r\n\t\tc-4.281,9.188-9.984,16.906-17.078,22.984c-7.234,6.219-15.641,10.938-25.047,14.188c-9.531,3.234-19.672,4.797-30.391,4.797\r\n\t\tc-21.969,0-40.156-6.984-54.5-20.984c-14.344-13.984-23.25-34.547-26.75-62h32.562c3.188,20,8.734,34.047,16.5,42.203\r\n\t\tc7.75,8.031,18.531,12.062,32.188,12.062c6.156,0,12.094-1.016,17.703-3.047c5.641-2.016,10.516-5.016,14.812-9.016\r\n\t\tc4.312-4,7.734-8.734,10.391-14.281c2.5-5.688,3.703-11.906,3.703-18.656c0-13.516-4.125-25.016-12.5-34.438\r\n\t\tc-8.25-9.375-19.641-14.094-34.109-14.094h-18.516v-28.719h18.516c6.719,0,12.422-1.062,17.109-3.281\r\n\t\tc4.656-2.234,8.484-5.094,11.453-8.625c2.953-3.5,5.031-7.5,6.219-11.875c1.297-4.469,1.797-8.875,1.797-13.25\r\n\t\tc0-12.375-3.406-22.109-10.25-29.156c-6.828-7.078-15.922-10.594-27.188-10.594c-6.953,0-12.797,1.281-17.656,3.984\r\n\t\tc-4.812,2.641-8.875,6.156-12.078,10.547c-3.188,4.453-5.719,9.594-7.625,15.484c-1.859,5.875-3.219,12.109-4,18.516H182.828z" + }, + "children": [] + }] + }] + }] +}; +exports.numberThree = numberThree; \ No newline at end of file diff --git a/dist/metrize/numberTwo.js b/dist/metrize/numberTwo.js new file mode 100644 index 000000000..2f1051f09 --- /dev/null +++ b/dist/metrize/numberTwo.js @@ -0,0 +1,33 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.numberTwo = void 0; +var numberTwo = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M176,209.75c2.531-24.406,10.969-44.141,25.375-59.219c14.344-15.031,34-22.531,58.859-22.531\r\n\t\tc12.234,0,23.172,2.141,32.594,6.484c9.422,4.297,17.375,10.141,23.719,17.484c6.328,7.281,11.219,15.547,14.516,24.797\r\n\t\tc3.281,9.266,4.938,18.844,4.938,28.703c0,8.625-0.984,16.391-3.062,23.266c-2.094,6.875-4.953,12.984-8.688,18.297\r\n\t\tc-3.75,5.438-8.031,10.375-13.109,15c-4.922,4.688-10.328,9.078-16.188,13.234c-10.844,8.406-22.125,16.453-33.672,24.203\r\n\t\tc-11.594,7.75-22.719,16.531-33.375,26.328c-3.875,3.672-7.062,7.438-9.594,11.453c-2.5,4.016-4.594,9.031-6.266,15.016h117.375\r\n\t\tV384H178.531v-24.203c0-10.047,3.188-20,9.625-29.578c6.438-9.734,14.438-19.188,24.125-28.219\r\n\t\tc9.625-9.031,20.188-17.828,31.781-26.359c11.609-8.516,22.531-16.766,32.891-24.781c7.844-5.984,14.031-12.359,18.672-19.234\r\n\t\tc4.516-6.859,6.859-15.625,6.859-26.344c0-15.172-3.812-27.031-11.734-35.531c-7.781-8.484-17.938-12.734-30.516-12.734\r\n\t\tc-15.359,0-27.531,4.703-36.453,14.109c-9,9.375-13.438,22.25-13.438,38.625H176z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M176,209.75c2.531-24.406,10.969-44.141,25.375-59.219c14.344-15.031,34-22.531,58.859-22.531\r\n\t\tc12.234,0,23.172,2.141,32.594,6.484c9.422,4.297,17.375,10.141,23.719,17.484c6.328,7.281,11.219,15.547,14.516,24.797\r\n\t\tc3.281,9.266,4.938,18.844,4.938,28.703c0,8.625-0.984,16.391-3.062,23.266c-2.094,6.875-4.953,12.984-8.688,18.297\r\n\t\tc-3.75,5.438-8.031,10.375-13.109,15c-4.922,4.688-10.328,9.078-16.188,13.234c-10.844,8.406-22.125,16.453-33.672,24.203\r\n\t\tc-11.594,7.75-22.719,16.531-33.375,26.328c-3.875,3.672-7.062,7.438-9.594,11.453c-2.5,4.016-4.594,9.031-6.266,15.016h117.375\r\n\t\tV384H178.531v-24.203c0-10.047,3.188-20,9.625-29.578c6.438-9.734,14.438-19.188,24.125-28.219\r\n\t\tc9.625-9.031,20.188-17.828,31.781-26.359c11.609-8.516,22.531-16.766,32.891-24.781c7.844-5.984,14.031-12.359,18.672-19.234\r\n\t\tc4.516-6.859,6.859-15.625,6.859-26.344c0-15.172-3.812-27.031-11.734-35.531c-7.781-8.484-17.938-12.734-30.516-12.734\r\n\t\tc-15.359,0-27.531,4.703-36.453,14.109c-9,9.375-13.438,22.25-13.438,38.625H176z" + }, + "children": [] + }] + }] + }] +}; +exports.numberTwo = numberTwo; \ No newline at end of file diff --git a/dist/metrize/numberZero.js b/dist/metrize/numberZero.js new file mode 100644 index 000000000..b42b076a5 --- /dev/null +++ b/dist/metrize/numberZero.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.numberZero = void 0; +var numberZero = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M255.984,128c-26.516,0-46.453,11.344-59.922,33.891C182.688,184.516,176,215.25,176,254.016\r\n\t\tc0,42.938,6.688,75.25,20.062,97.188C209.531,373.016,229.469,384,255.984,384c26.531,0,46.562-10.984,59.922-32.797\r\n\t\tC329.297,329.266,336,296.953,336,254.016C336,170,309.266,128,255.984,128z M292.219,330.719\r\n\t\tc-7.453,16.484-19.609,24.578-36.234,24.578c-16.688,0-28.703-8.094-36.266-24.578c-7.516-16.484-11.219-42.016-11.219-76.703\r\n\t\tc0-34.391,3.703-59.156,11.219-74.484c7.562-15.266,19.578-22.906,36.266-22.906c16.625,0,28.781,7.641,36.234,22.906\r\n\t\tc7.547,15.328,11.281,40.094,11.281,74.484C303.5,288.703,299.766,314.234,292.219,330.719z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M255.984,128c-26.516,0-46.453,11.344-59.922,33.891C182.688,184.516,176,215.25,176,254.016\r\n\t\tc0,42.938,6.688,75.25,20.062,97.188C209.531,373.016,229.469,384,255.984,384c26.531,0,46.562-10.984,59.922-32.797\r\n\t\tC329.297,329.266,336,296.953,336,254.016C336,170,309.266,128,255.984,128z M292.219,330.719\r\n\t\tc-7.453,16.484-19.609,24.578-36.234,24.578c-16.688,0-28.703-8.094-36.266-24.578c-7.516-16.484-11.219-42.016-11.219-76.703\r\n\t\tc0-34.391,3.703-59.156,11.219-74.484c7.562-15.266,19.578-22.906,36.266-22.906c16.625,0,28.781,7.641,36.234,22.906\r\n\t\tc7.547,15.328,11.281,40.094,11.281,74.484C303.5,288.703,299.766,314.234,292.219,330.719z" + }, + "children": [] + }] + }] + }] +}; +exports.numberZero = numberZero; \ No newline at end of file diff --git a/dist/metrize/off.js b/dist/metrize/off.js new file mode 100644 index 000000000..a744a5626 --- /dev/null +++ b/dist/metrize/off.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.off = void 0; +var off = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "240", + "y": "128", + "width": "32", + "height": "80" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "240", + "y": "128", + "width": "32", + "height": "80" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M288,164.703v34.047c28.219,12.359,48,40.469,48,73.25c0,44.172-35.828,80-80,80c-44.188,0-80-35.828-80-80\r\n\t\tc0-32.781,19.766-60.891,48-73.25v-34.047c-46.25,13.766-80,56.562-80,107.297c0,61.859,50.141,112,112,112s112-50.141,112-112\r\n\t\tC368,221.266,334.25,178.469,288,164.703z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M288,164.703v34.047c28.219,12.359,48,40.469,48,73.25c0,44.172-35.828,80-80,80c-44.188,0-80-35.828-80-80\r\n\t\tc0-32.781,19.766-60.891,48-73.25v-34.047c-46.25,13.766-80,56.562-80,107.297c0,61.859,50.141,112,112,112s112-50.141,112-112\r\n\t\tC368,221.266,334.25,178.469,288,164.703z" + }, + "children": [] + }] + }] + }] +}; +exports.off = off; \ No newline at end of file diff --git a/dist/metrize/officine.js b/dist/metrize/officine.js new file mode 100644 index 000000000..6a64c57be --- /dev/null +++ b/dist/metrize/officine.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.officine = void 0; +var officine = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M149.651,280.892c-15.734,15.734-26.062,37.047-19.781,56.891c0.781,2.469,22.594-5.531,22.594-5.531l10.547-24\r\n\tl29.297-5.625l8.531,8.547l8.531,8.531l-5.641,29.281l-23.984,10.547c0,0-8,21.812-5.531,22.609\r\n\tc19.844,6.266,41.156-4.062,56.891-19.812c17.344-17.328,21.203-42.891,11.891-64.062l134.172-122.516l6.828-20.469l-13.656-13.641\r\n\tl-13.641-13.641l-20.469,6.812L213.714,269.001C192.558,259.688,166.995,263.563,149.651,280.892z" + }, + "children": [] + }] +}; +exports.officine = officine; \ No newline at end of file diff --git a/dist/metrize/officine2.js b/dist/metrize/officine2.js new file mode 100644 index 000000000..aa69f4ef7 --- /dev/null +++ b/dist/metrize/officine2.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.officine2 = void 0; +var officine2 = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M284.516,258.023c3.609,4.391,9.984,4.969,14.281,1.25c4.25-3.594,4.812-10.031,1.328-14.375l76.828-65.281\r\n\tc8.359-7.125,9.438-19.875,2.422-28.406c-7.031-8.531-19.547-9.656-27.906-2.484l-76.812,65.234\r\n\tc-3.625-4.25-9.922-4.781-14.172-1.156c-4.289,3.656-4.836,10.203-1.227,14.547l6.211,7.547l-106.875,91.383l-14.219,4.453\r\n\tL128,352.438L140.828,368l23.523-12l7.195-14.031l106.781-91.477L284.516,258.023z" + }, + "children": [] + }] +}; +exports.officine2 = officine2; \ No newline at end of file diff --git a/dist/metrize/optionsSettings.js b/dist/metrize/optionsSettings.js new file mode 100644 index 000000000..b568433ff --- /dev/null +++ b/dist/metrize/optionsSettings.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.optionsSettings = void 0; +var optionsSettings = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M152.312,242.875c17.797,14.688,42.258,16.219,61.484,5.828l4.227,3.828l18.062-14.906\r\n\t\tc-1.367-3.688-1.914-7.656-1.547-11.688c0.516-5.719,2.859-10.969,6.602-15.234c3.102-18.172-3.266-37.375-18.641-50.062\r\n\t\tc-16.188-13.344-37.164-21.203-55.352-13.766c-2.273,0.938,7.055,20.531,7.055,20.531l23.57,7.875L205.508,202l-7.359,8.625\r\n\t\tl-7.344,8.609l-28.141-2.844l-11.953-21.422c0,0-21.266-5.656-21.805-3.328C124.602,210.594,136.125,229.531,152.312,242.875z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M152.312,242.875c17.797,14.688,42.258,16.219,61.484,5.828l4.227,3.828l18.062-14.906\r\n\t\tc-1.367-3.688-1.914-7.656-1.547-11.688c0.516-5.719,2.859-10.969,6.602-15.234c3.102-18.172-3.266-37.375-18.641-50.062\r\n\t\tc-16.188-13.344-37.164-21.203-55.352-13.766c-2.273,0.938,7.055,20.531,7.055,20.531l23.57,7.875L205.508,202l-7.359,8.625\r\n\t\tl-7.344,8.609l-28.141-2.844l-11.953-21.422c0,0-21.266-5.656-21.805-3.328C124.602,210.594,136.125,229.531,152.312,242.875z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M375.875,322l-68.125-51.203c-1.406,2-2.969,3.859-4.938,5.484c-4.844,4.031-11.172,6.297-17.656,6.297\r\n\t\tc-4.891,0-9.609-1.266-13.75-3.594l-12.602,10.406l81.805,73.953L360.484,368l11.781-13.781L384,340.438L375.875,322z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M375.875,322l-68.125-51.203c-1.406,2-2.969,3.859-4.938,5.484c-4.844,4.031-11.172,6.297-17.656,6.297\r\n\t\tc-4.891,0-9.609-1.266-13.75-3.594l-12.602,10.406l81.805,73.953L360.484,368l11.781-13.781L384,340.438L375.875,322z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M278.047,261.312c3.297,3.875,9.156,4.391,13.078,1.125c3.891-3.188,4.406-8.875,1.234-12.75l70.375-57.672\r\n\t\tc7.672-6.328,8.672-17.578,2.234-25.125c-6.453-7.547-17.922-8.531-25.562-2.203L269,222.375c-3.297-3.781-9.07-4.266-12.961-1.031\r\n\t\tc-3.93,3.219-4.438,9.016-1.133,12.859l5.703,6.672l-97.93,80.781l-13.031,3.953l-15,19.156l11.75,13.766l21.555-10.594\r\n\t\tl6.586-12.406l97.836-80.859L278.047,261.312z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M278.047,261.312c3.297,3.875,9.156,4.391,13.078,1.125c3.891-3.188,4.406-8.875,1.234-12.75l70.375-57.672\r\n\t\tc7.672-6.328,8.672-17.578,2.234-25.125c-6.453-7.547-17.922-8.531-25.562-2.203L269,222.375c-3.297-3.781-9.07-4.266-12.961-1.031\r\n\t\tc-3.93,3.219-4.438,9.016-1.133,12.859l5.703,6.672l-97.93,80.781l-13.031,3.953l-15,19.156l11.75,13.766l21.555-10.594\r\n\t\tl6.586-12.406l97.836-80.859L278.047,261.312z" + }, + "children": [] + }] + }] + }] +}; +exports.optionsSettings = optionsSettings; \ No newline at end of file diff --git a/dist/metrize/paperclip.js b/dist/metrize/paperclip.js new file mode 100644 index 000000000..4ead9c06d --- /dev/null +++ b/dist/metrize/paperclip.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.paperclip = void 0; +var paperclip = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M255.5,128c-35.281,0-64,25.125-64,56v48v96v12c0,24.266,18.719,44,46.453,44s49.547-19.734,49.547-44v-78.75V232v-11.25\r\n\tc0-11.844-10.453-21.5-24.016-21.5c-13.531,0-23.984,9.656-23.984,21.5v40.5c0,11.859,11.609,21.5,25.141,21.5\r\n\tc2.25,0,6.859-0.625,6.859-1.109V340c0,15.438-15.891,28-33.531,28S207.5,355.438,207.5,340v-12v-96v-48c0-22.062,22.797-40,48-40\r\n\ts48,17.938,48,40v144c0,4.422,2.938,8,8,8c5.047,0,8-3.578,8-8V184C319.5,153.125,290.781,128,255.5,128z M263.5,266.75\r\n\tc-3.453,0-8-2.469-8-5.5v-40.5c0-3.031,4.547-5.5,8-5.5c3.469,0,8,2.469,8,5.5V232v29.25C271.5,264.281,266.969,266.75,263.5,266.75\r\n\tz" + }, + "children": [] + }] +}; +exports.paperclip = paperclip; \ No newline at end of file diff --git a/dist/metrize/paperclipOblique.js b/dist/metrize/paperclipOblique.js new file mode 100644 index 000000000..506f15ae4 --- /dev/null +++ b/dist/metrize/paperclipOblique.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.paperclipOblique = void 0; +var paperclipOblique = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M262.734,139.969l-38.016,41.438l-76.031,82.875l-9.5,10.344c-19.203,20.953-20.016,54.141,1.938,78.062\r\n\t\tc21.953,23.969,54.875,25.75,74.094,4.828l62.375-67.984l23.141-25.25l8.906-9.734c9.375-10.203,8.75-27.562-1.969-39.281\r\n\t\tc-10.734-11.688-26.656-12.359-36.031-2.141l-32.094,34.953c-9.359,10.234-7.812,28.562,2.906,40.266\r\n\t\tc1.781,1.953,5.938,5.375,6.312,4.969l-46.219,50.344c-12.234,13.344-34.766,10.469-48.734-4.75\r\n\t\tc-13.969-15.234-14.156-37.125-1.969-50.469l9.516-10.359l76.031-82.875l38.016-41.438c17.484-19.047,49.719-14.844,69.688,6.906\r\n\t\tc19.938,21.766,23.797,56.938,6.328,75.984L237.391,360.969c-3.5,3.812-4,9.422,0,13.812c4,4.328,9.156,3.812,12.656,0\r\n\t\tl114.062-124.312c24.438-26.672,21.578-73.141-6.359-103.609C329.828,116.406,287.172,113.312,262.734,139.969z M252.234,261.906\r\n\t\tl32.062-34.969c2.406-2.625,7.969-0.828,10.703,2.156c2.734,3,4.375,9.031,1.969,11.656l-8.906,9.719l-23.156,25.25\r\n\t\tc-2.406,2.625-7.938,0.812-10.688-2.172S249.828,264.516,252.234,261.906z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M262.734,139.969l-38.016,41.438l-76.031,82.875l-9.5,10.344c-19.203,20.953-20.016,54.141,1.938,78.062\r\n\t\tc21.953,23.969,54.875,25.75,74.094,4.828l62.375-67.984l23.141-25.25l8.906-9.734c9.375-10.203,8.75-27.562-1.969-39.281\r\n\t\tc-10.734-11.688-26.656-12.359-36.031-2.141l-32.094,34.953c-9.359,10.234-7.812,28.562,2.906,40.266\r\n\t\tc1.781,1.953,5.938,5.375,6.312,4.969l-46.219,50.344c-12.234,13.344-34.766,10.469-48.734-4.75\r\n\t\tc-13.969-15.234-14.156-37.125-1.969-50.469l9.516-10.359l76.031-82.875l38.016-41.438c17.484-19.047,49.719-14.844,69.688,6.906\r\n\t\tc19.938,21.766,23.797,56.938,6.328,75.984L237.391,360.969c-3.5,3.812-4,9.422,0,13.812c4,4.328,9.156,3.812,12.656,0\r\n\t\tl114.062-124.312c24.438-26.672,21.578-73.141-6.359-103.609C329.828,116.406,287.172,113.312,262.734,139.969z M252.234,261.906\r\n\t\tl32.062-34.969c2.406-2.625,7.969-0.828,10.703,2.156c2.734,3,4.375,9.031,1.969,11.656l-8.906,9.719l-23.156,25.25\r\n\t\tc-2.406,2.625-7.938,0.812-10.688-2.172S249.828,264.516,252.234,261.906z" + }, + "children": [] + }] + }] + }] +}; +exports.paperclipOblique = paperclipOblique; \ No newline at end of file diff --git a/dist/metrize/pause.js b/dist/metrize/pause.js new file mode 100644 index 000000000..601c05ea3 --- /dev/null +++ b/dist/metrize/pause.js @@ -0,0 +1,65 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pause = void 0; +var pause = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "271.5,336.5 335.5,336.5 335.5,211.5 335.5,176.5 271.5,176.5 \t\t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "271.5,336.5 335.5,336.5 335.5,211.5 335.5,176.5 271.5,176.5 \t\t" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "175.5", + "y": "176.5", + "width": "64", + "height": "160" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "175.5", + "y": "176.5", + "width": "64", + "height": "160" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.pause = pause; \ No newline at end of file diff --git a/dist/metrize/pigMoney.js b/dist/metrize/pigMoney.js new file mode 100644 index 000000000..983edf0e1 --- /dev/null +++ b/dist/metrize/pigMoney.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pigMoney = void 0; +var pigMoney = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M265.875,153.75c-7.188,0-14.062,0.484-20.594,1.406c-5.594-7.094-14.656-13.25-26.219-17.062\r\n\t\tC200.922,132.125,159,120.875,159,134.328c11,7.578,20.281,32.953,31.156,44.203c-17.031,13.625-30.328,32.172-40.688,54.344\r\n\t\tc0,0-14.797,4.875-18.656,8.734c-3.875,3.891-3.625,43.125,0,46.75C134.422,292,152,295.922,152,295.922\r\n\t\tc8.75,19.281,21.828,35.078,38.469,46.656c-0.875,13.484-1.875,35.75,0.75,38.391c3.797,3.797,38.375,4.219,42.594,0\r\n\t\tc1.781-1.781,8.312-9.312,15.312-17.438c5.438,0.562,11,0.922,16.75,0.922c4.375,0,8.688-0.219,12.938-0.641\r\n\t\tc6.172,7.188,11.594,15.562,13.188,17.172c4.219,4.219,38.828,3.797,42.625,0c2.391-2.406,1.781-23.344,1-36.875\r\n\t\tC364.953,324.969,384,294.016,384,259.094C384,200.922,331.125,153.75,265.875,153.75z M326.891,330.672l-7.781,5.078l0.547,9.297\r\n\t\tc0.562,9.906,0.719,17.273,0.641,22.43c-2.125,0.141-4.672,0.023-7.578,0.023c0,0,0,0-0.016,0c-5.109,0-8.75-0.086-10.969-0.367\r\n\t\tc-0.109-0.156-0.234-0.215-0.359-0.387c-2.703-3.734-6.438-8.803-10.453-13.475l-5.422-6.284l-8.266,0.843\r\n\t\tc-3.734,0.375-7.516,0.569-11.359,0.569c-5.188,0-10.219-0.325-15.094-0.841l-8.312-0.857L237,353.046\r\n\t\tc-4.891,5.688-9.531,11.079-12.328,14.22c-2.141,0.312-5.953,0.672-11.547,0.672c-2.906,0-5.469-0.109-7.594-0.25\r\n\t\tc-0.031-4.797,0.156-12.359,0.906-24.078l0.578-9.047l-7.422-5.172c-14.375-10-25.5-23.5-33.031-40.125L163.25,282l-7.781-1.734\r\n\t\tc-3.719-0.844-7.906-2.016-11-3.031c-0.656-7.031-0.656-18.828,0.047-25.344c2.5-1.062,6.453-2.609,9.938-3.766l6.547-2.156\r\n\t\tl2.938-6.281c9.766-20.875,21.938-37.219,36.188-48.578l13.797-11.016l-12.266-12.719c-3.516-3.625-7.641-10.75-11.625-17.656\r\n\t\tc-0.656-1.156-1.328-2.312-2-3.438c8.562,1.781,18.062,4.438,26.047,7.062c8.047,2.656,14.844,6.938,18.641,11.75l5.688,7.25\r\n\t\tl9.094-1.281c5.906-0.844,12.062-1.266,18.375-1.266c56.312,0,102.125,40.062,102.125,89.297\r\n\t\tC368,287.516,353.016,313.594,326.891,330.672z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M265.875,153.75c-7.188,0-14.062,0.484-20.594,1.406c-5.594-7.094-14.656-13.25-26.219-17.062\r\n\t\tC200.922,132.125,159,120.875,159,134.328c11,7.578,20.281,32.953,31.156,44.203c-17.031,13.625-30.328,32.172-40.688,54.344\r\n\t\tc0,0-14.797,4.875-18.656,8.734c-3.875,3.891-3.625,43.125,0,46.75C134.422,292,152,295.922,152,295.922\r\n\t\tc8.75,19.281,21.828,35.078,38.469,46.656c-0.875,13.484-1.875,35.75,0.75,38.391c3.797,3.797,38.375,4.219,42.594,0\r\n\t\tc1.781-1.781,8.312-9.312,15.312-17.438c5.438,0.562,11,0.922,16.75,0.922c4.375,0,8.688-0.219,12.938-0.641\r\n\t\tc6.172,7.188,11.594,15.562,13.188,17.172c4.219,4.219,38.828,3.797,42.625,0c2.391-2.406,1.781-23.344,1-36.875\r\n\t\tC364.953,324.969,384,294.016,384,259.094C384,200.922,331.125,153.75,265.875,153.75z M326.891,330.672l-7.781,5.078l0.547,9.297\r\n\t\tc0.562,9.906,0.719,17.273,0.641,22.43c-2.125,0.141-4.672,0.023-7.578,0.023c0,0,0,0-0.016,0c-5.109,0-8.75-0.086-10.969-0.367\r\n\t\tc-0.109-0.156-0.234-0.215-0.359-0.387c-2.703-3.734-6.438-8.803-10.453-13.475l-5.422-6.284l-8.266,0.843\r\n\t\tc-3.734,0.375-7.516,0.569-11.359,0.569c-5.188,0-10.219-0.325-15.094-0.841l-8.312-0.857L237,353.046\r\n\t\tc-4.891,5.688-9.531,11.079-12.328,14.22c-2.141,0.312-5.953,0.672-11.547,0.672c-2.906,0-5.469-0.109-7.594-0.25\r\n\t\tc-0.031-4.797,0.156-12.359,0.906-24.078l0.578-9.047l-7.422-5.172c-14.375-10-25.5-23.5-33.031-40.125L163.25,282l-7.781-1.734\r\n\t\tc-3.719-0.844-7.906-2.016-11-3.031c-0.656-7.031-0.656-18.828,0.047-25.344c2.5-1.062,6.453-2.609,9.938-3.766l6.547-2.156\r\n\t\tl2.938-6.281c9.766-20.875,21.938-37.219,36.188-48.578l13.797-11.016l-12.266-12.719c-3.516-3.625-7.641-10.75-11.625-17.656\r\n\t\tc-0.656-1.156-1.328-2.312-2-3.438c8.562,1.781,18.062,4.438,26.047,7.062c8.047,2.656,14.844,6.938,18.641,11.75l5.688,7.25\r\n\t\tl9.094-1.281c5.906-0.844,12.062-1.266,18.375-1.266c56.312,0,102.125,40.062,102.125,89.297\r\n\t\tC368,287.516,353.016,313.594,326.891,330.672z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M302.75,191.719c-18.953-5.656-39.688,2.578-41.188,7.625s19.625-1.562,38.578,4.094\r\n\t\tc18.984,5.641,37.078,29.312,38.578,24.25C340.203,222.656,321.734,197.375,302.75,191.719z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M302.75,191.719c-18.953-5.656-39.688,2.578-41.188,7.625s19.625-1.562,38.578,4.094\r\n\t\tc18.984,5.641,37.078,29.312,38.578,24.25C340.203,222.656,321.734,197.375,302.75,191.719z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M207.672,213.469c-5.516,0-10,4.5-10,10.031s4.484,10.031,10,10.031s10-4.5,10-10.031S213.188,213.469,207.672,213.469z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M207.672,213.469c-5.516,0-10,4.5-10,10.031s4.484,10.031,10,10.031s10-4.5,10-10.031S213.188,213.469,207.672,213.469z" + }, + "children": [] + }] + }] + }] +}; +exports.pigMoney = pigMoney; \ No newline at end of file diff --git a/dist/metrize/pin.js b/dist/metrize/pin.js new file mode 100644 index 000000000..50d1d07c5 --- /dev/null +++ b/dist/metrize/pin.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pin = void 0; +var pin = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,144c-44.188,0-80,38.609-80,80c0,22.031,11,32.344,32,69.906c18.453,32.984,33.859,62.938,33.859,62.938\r\n\t\tc7.641,14.859,20.172,14.875,27.828,0.031c0,0,15.516-30,34.312-62.969c21.406-37.562,32-47.859,32-69.906\r\n\t\tC336,182.609,300.188,144,256,144z M256,272c-26.5,0-48-21.5-48-48c0-26.508,21.5-48,48-48c26.516,0,48,21.492,48,48\r\n\t\tC304,250.5,282.516,272,256,272z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,144c-44.188,0-80,38.609-80,80c0,22.031,11,32.344,32,69.906c18.453,32.984,33.859,62.938,33.859,62.938\r\n\t\tc7.641,14.859,20.172,14.875,27.828,0.031c0,0,15.516-30,34.312-62.969c21.406-37.562,32-47.859,32-69.906\r\n\t\tC336,182.609,300.188,144,256,144z M256,272c-26.5,0-48-21.5-48-48c0-26.508,21.5-48,48-48c26.516,0,48,21.492,48,48\r\n\t\tC304,250.5,282.516,272,256,272z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,0C114.625,0,0,114.609,0,256s114.625,256,256,256c141.406,0,256-114.609,256-256S397.406,0,256,0z M256,472\r\n\t\tc-119.281,0-216-96.703-216-216S136.719,40,256,40c119.312,0,216,96.703,216,216S375.312,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.625,0,0,114.609,0,256s114.625,256,256,256c141.406,0,256-114.609,256-256S397.406,0,256,0z M256,472\r\n\t\tc-119.281,0-216-96.703-216-216S136.719,40,256,40c119.312,0,216,96.703,216,216S375.312,472,256,472z" + }, + "children": [] + }] + }] + }] +}; +exports.pin = pin; \ No newline at end of file diff --git a/dist/metrize/pinMap.js b/dist/metrize/pinMap.js new file mode 100644 index 000000000..e34c42c67 --- /dev/null +++ b/dist/metrize/pinMap.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pinMap = void 0; +var pinMap = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M304,191.953C304,165.469,282.516,144,256,144c-26.5,0-48,21.469-48,47.953c0,23.734,17.312,43.328,40,47.141v110.25\r\n\tc-13.781,1.047-24,4.766-24,9.156c0,5.234,14.328,9.5,32,9.5c17.656,0,32-4.266,32-9.5c0-4.391-10.219-8.109-24-9.156v-110.25\r\n\tC286.688,235.281,304,215.688,304,191.953z M236.406,181.75c-4.625,4.625-10.922,5.844-14.062,2.734\r\n\tc-3.125-3.141-1.875-9.422,2.75-14.047c4.641-4.625,10.938-5.859,14.062-2.75C242.266,170.812,241.047,177.109,236.406,181.75z" + }, + "children": [] + }] +}; +exports.pinMap = pinMap; \ No newline at end of file diff --git a/dist/metrize/play.js b/dist/metrize/play.js new file mode 100644 index 000000000..88252dad7 --- /dev/null +++ b/dist/metrize/play.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.play = void 0; +var play = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "192,336 352,256 192,176 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "192,336 352,256 192,176 \t" + }, + "children": [] + }] + }] + }] +}; +exports.play = play; \ No newline at end of file diff --git a/dist/metrize/plus.js b/dist/metrize/plus.js new file mode 100644 index 000000000..52afa5ce5 --- /dev/null +++ b/dist/metrize/plus.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.plus = void 0; +var plus = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "272,128 240,128 240,240 128,240 128,272 240,272 240,384 272,384 272,272 384,272 384,240 272,240 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "272,128 240,128 240,240 128,240 128,272 240,272 240,384 272,384 272,272 384,272 384,240 272,240 \t" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }] + }] +}; +exports.plus = plus; \ No newline at end of file diff --git a/dist/metrize/podcast.js b/dist/metrize/podcast.js new file mode 100644 index 000000000..e5ad0ae1d --- /dev/null +++ b/dist/metrize/podcast.js @@ -0,0 +1,69 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.podcast = void 0; +var podcast = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M230.406,256c0,14.141,11.453,25.594,25.594,25.594s25.594-11.453,25.594-25.594S270.141,230.406,256,230.406\r\n\t\tS230.406,241.859,230.406,256z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M230.406,256c0,14.141,11.453,25.594,25.594,25.594s25.594-11.453,25.594-25.594S270.141,230.406,256,230.406\r\n\t\tS230.406,241.859,230.406,256z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M281.922,299.922l14.172,21.297c21.953-13.516,36.703-37.547,36.703-65.219c0-42.406-34.375-76.797-76.797-76.797\r\n\t\tc-42.406,0-76.797,34.391-76.797,76.797c0,27.672,14.75,51.703,36.688,65.219l14.203-21.297\r\n\t\tC215.016,291,204.797,274.781,204.797,256c0-28.281,22.922-51.203,51.203-51.203s51.203,22.922,51.203,51.203\r\n\t\tC307.203,274.781,296.969,291.031,281.922,299.922z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M281.922,299.922l14.172,21.297c21.953-13.516,36.703-37.547,36.703-65.219c0-42.406-34.375-76.797-76.797-76.797\r\n\t\tc-42.406,0-76.797,34.391-76.797,76.797c0,27.672,14.75,51.703,36.688,65.219l14.203-21.297\r\n\t\tC215.016,291,204.797,274.781,204.797,256c0-28.281,22.922-51.203,51.203-51.203s51.203,22.922,51.203,51.203\r\n\t\tC307.203,274.781,296.969,291.031,281.922,299.922z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,128c-70.688,0-128,57.312-128,128c0,45.422,23.828,85.094,59.5,107.797l14.188-21.297\r\n\t\tc-28.797-18.125-48.094-49.953-48.094-86.5c0-56.547,45.859-102.406,102.406-102.406S358.406,199.453,358.406,256\r\n\t\tc0,36.547-19.312,68.406-48.109,86.5l14.203,21.297C360.172,341.094,384,301.422,384,256C384,185.312,326.703,128,256,128z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,128c-70.688,0-128,57.312-128,128c0,45.422,23.828,85.094,59.5,107.797l14.188-21.297\r\n\t\tc-28.797-18.125-48.094-49.953-48.094-86.5c0-56.547,45.859-102.406,102.406-102.406S358.406,199.453,358.406,256\r\n\t\tc0,36.547-19.312,68.406-48.109,86.5l14.203,21.297C360.172,341.094,384,301.422,384,256C384,185.312,326.703,128,256,128z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "208,384 304,384 256,304 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "208,384 304,384 256,304 \t" + }, + "children": [] + }] + }] + }] +}; +exports.podcast = podcast; \ No newline at end of file diff --git a/dist/metrize/pounds.js b/dist/metrize/pounds.js new file mode 100644 index 000000000..cd0398df3 --- /dev/null +++ b/dist/metrize/pounds.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pounds = void 0; +var pounds = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M340.812,384H171.188v-25.969c22.844-10.812,43.359-34.062,43.359-61.906c0-7,0-13.188-1.547-20.562h-38.344v-32.906\r\n\t\th32.938c-1.562-10.469-3.5-23.25-3.5-36.031c0-47.641,33.688-78.625,81.75-78.625c20.5,0,35.641,4.656,43.75,9.281l-8.531,36.031\r\n\t\tc-7.375-3.875-18.188-7.359-33.297-7.359c-29.047,0-39.109,19.375-39.109,42.219c0,12.797,1.531,23.641,4.25,34.484h54.188v32.906\r\n\t\th-49.938c0.375,11.625,0.375,23.25-2.688,34.484c-3.891,13.172-11.625,24.375-22.5,34.062v0.766h108.844V384z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M340.812,384H171.188v-25.969c22.844-10.812,43.359-34.062,43.359-61.906c0-7,0-13.188-1.547-20.562h-38.344v-32.906\r\n\t\th32.938c-1.562-10.469-3.5-23.25-3.5-36.031c0-47.641,33.688-78.625,81.75-78.625c20.5,0,35.641,4.656,43.75,9.281l-8.531,36.031\r\n\t\tc-7.375-3.875-18.188-7.359-33.297-7.359c-29.047,0-39.109,19.375-39.109,42.219c0,12.797,1.531,23.641,4.25,34.484h54.188v32.906\r\n\t\th-49.938c0.375,11.625,0.375,23.25-2.688,34.484c-3.891,13.172-11.625,24.375-22.5,34.062v0.766h108.844V384z" + }, + "children": [] + }] + }] + }] +}; +exports.pounds = pounds; \ No newline at end of file diff --git a/dist/metrize/prevStep.js b/dist/metrize/prevStep.js new file mode 100644 index 000000000..bb2bdb9ad --- /dev/null +++ b/dist/metrize/prevStep.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.prevStep = void 0; +var prevStep = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "304,336 304,176 208,256 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "304,336 304,176 208,256 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "176,176 176,336 208,336 208,240 208,176 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "176,176 176,336 208,336 208,240 208,176 \t" + }, + "children": [] + }] + }] + }] +}; +exports.prevStep = prevStep; \ No newline at end of file diff --git a/dist/metrize/previousFastStep.js b/dist/metrize/previousFastStep.js new file mode 100644 index 000000000..8063b188e --- /dev/null +++ b/dist/metrize/previousFastStep.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.previousFastStep = void 0; +var previousFastStep = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,512c141.391,0,256-114.609,256-256S397.391,0,256,0S0,114.609,0,256S114.609,512,256,512z M256,40\r\n\t\tc119.297,0,216,96.703,216,216s-96.703,216-216,216S40,375.297,40,256S136.703,40,256,40z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,512c141.391,0,256-114.609,256-256S397.391,0,256,0S0,114.609,0,256S114.609,512,256,512z M256,40\r\n\t\tc119.297,0,216,96.703,216,216s-96.703,216-216,216S40,375.297,40,256S136.703,40,256,40z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "352,176 256,256 352,336 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "352,176 256,256 352,336 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "256,256 256,176 160,256 256,336 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "256,256 256,176 160,256 256,336 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "160,240 160,176 128,176 128,336 160,336 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "160,240 160,176 128,176 128,336 160,336 \t" + }, + "children": [] + }] + }] + }] +}; +exports.previousFastStep = previousFastStep; \ No newline at end of file diff --git a/dist/metrize/question.js b/dist/metrize/question.js new file mode 100644 index 000000000..9c54effcd --- /dev/null +++ b/dist/metrize/question.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.question = void 0; +var question = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "240", + "y": "352", + "width": "32", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "240", + "y": "352", + "width": "32", + "height": "32" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M317.734,150.148c-6.484-6.625-14.688-11.922-24.766-16.031c-10.203-4.102-22.172-6.117-36.281-6.117\r\n\t\tc-11.969,0-22.875,2.016-32.781,6.117c-9.938,4.109-18.5,9.773-25.688,17.125c-7.125,7.289-12.672,14.508-16.5,24.773\r\n\t\tC177.906,186.281,176,192,176,208h32.656c0-16,4.234-28.109,12.938-38.516c8.594-10.453,20.266-14.82,35.094-14.82\r\n\t\tc14.438,0,25.234,3.914,32.172,10.938c6.875,7.023,10.391,17.086,10.391,29.797c0,9.883-3.25,18.758-9.734,26.492\r\n\t\tc-6.375,7.75-13.359,15.297-20.844,22.438c-7.594,7.141-13.672,14.766-19.953,22.641S240,284.016,240,294.469V320h32v-13.75\r\n\t\tc0-8.203,1.203-15.312,4.406-21.516c3.094-6.219,6.953-11.859,11.844-16.891c4.734-5.094,9.812-10,15.469-14.828\r\n\t\tc5.5-4.766,10.781-9.859,15.531-15.172c4.844-5.344,8.875-11.344,11.938-17.969c3.219-6.625,4.828-14.406,4.828-23.477\r\n\t\tc0-7.875-1.422-15.891-4.391-24.039C328.719,164.148,324.031,156.766,317.734,150.148z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M317.734,150.148c-6.484-6.625-14.688-11.922-24.766-16.031c-10.203-4.102-22.172-6.117-36.281-6.117\r\n\t\tc-11.969,0-22.875,2.016-32.781,6.117c-9.938,4.109-18.5,9.773-25.688,17.125c-7.125,7.289-12.672,14.508-16.5,24.773\r\n\t\tC177.906,186.281,176,192,176,208h32.656c0-16,4.234-28.109,12.938-38.516c8.594-10.453,20.266-14.82,35.094-14.82\r\n\t\tc14.438,0,25.234,3.914,32.172,10.938c6.875,7.023,10.391,17.086,10.391,29.797c0,9.883-3.25,18.758-9.734,26.492\r\n\t\tc-6.375,7.75-13.359,15.297-20.844,22.438c-7.594,7.141-13.672,14.766-19.953,22.641S240,284.016,240,294.469V320h32v-13.75\r\n\t\tc0-8.203,1.203-15.312,4.406-21.516c3.094-6.219,6.953-11.859,11.844-16.891c4.734-5.094,9.812-10,15.469-14.828\r\n\t\tc5.5-4.766,10.781-9.859,15.531-15.172c4.844-5.344,8.875-11.344,11.938-17.969c3.219-6.625,4.828-14.406,4.828-23.477\r\n\t\tc0-7.875-1.422-15.891-4.391-24.039C328.719,164.148,324.031,156.766,317.734,150.148z" + }, + "children": [] + }] + }] + }] +}; +exports.question = question; \ No newline at end of file diff --git a/dist/metrize/quote.js b/dist/metrize/quote.js new file mode 100644 index 000000000..8cf000c11 --- /dev/null +++ b/dist/metrize/quote.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.quote = void 0; +var quote = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M239.078,185.492L209.25,160C172.219,187.18,144,235.609,144,287.438C144,329.047,167.344,352,193.969,352\r\n\t\tc24.172,0,43.5-20.375,43.5-45.922c0-24.625-16.891-43.281-39.469-43.281c-4.031,0-9.656,1.688-10.5,1.688\r\n\t\tC190.75,237.312,213.281,203.344,239.078,185.492z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M239.078,185.492L209.25,160C172.219,187.18,144,235.609,144,287.438C144,329.047,167.344,352,193.969,352\r\n\t\tc24.172,0,43.5-20.375,43.5-45.922c0-24.625-16.891-43.281-39.469-43.281c-4.031,0-9.656,1.688-10.5,1.688\r\n\t\tC190.75,237.312,213.281,203.344,239.078,185.492z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M326.938,262.797c-3.234,0-8.922,1.688-10.5,1.688c3.203-27.172,25.781-61.141,51.562-78.992L338.188,160\r\n\t\tc-37.031,27.18-65.234,75.609-65.234,127.438c0,41.609,23.328,64.562,49.953,64.562c24.141,0,43.469-20.375,43.469-45.922\r\n\t\tC366.375,281.453,349.516,262.797,326.938,262.797z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M326.938,262.797c-3.234,0-8.922,1.688-10.5,1.688c3.203-27.172,25.781-61.141,51.562-78.992L338.188,160\r\n\t\tc-37.031,27.18-65.234,75.609-65.234,127.438c0,41.609,23.328,64.562,49.953,64.562c24.141,0,43.469-20.375,43.469-45.922\r\n\t\tC366.375,281.453,349.516,262.797,326.938,262.797z" + }, + "children": [] + }] + }] + }] +}; +exports.quote = quote; \ No newline at end of file diff --git a/dist/metrize/random.js b/dist/metrize/random.js new file mode 100644 index 000000000..9aaf3c806 --- /dev/null +++ b/dist/metrize/random.js @@ -0,0 +1,71 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.random = void 0; +var random = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "336,224 336,240 384,208.25 336,176 336,192 272,192 208,288 128,288.25 128,320 224,320 288,224 \t\t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "336,224 336,240 384,208.25 336,176 336,192 272,192 208,288 128,288.25 128,320 224,320 288,224 \t\t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "219.719,241.578 238.391,213.578 224,192 128,192 128,224 208,224 \t\t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "219.719,241.578 238.391,213.578 224,192 128,192 128,224 208,224 \t\t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "336,288 288,288 276.281,270.422 257.625,298.422 272,320 336,320 336,336 384,303.75 336,272 \t\t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "336,288 288,288 276.281,270.422 257.625,298.422 272,320 336,320 336,336 384,303.75 336,272 \t\t" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.random = random; \ No newline at end of file diff --git a/dist/metrize/rec.js b/dist/metrize/rec.js new file mode 100644 index 000000000..33c6eefc8 --- /dev/null +++ b/dist/metrize/rec.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.rec = void 0; +var rec = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M336,256c0,44.188-35.812,80-80,80s-80-35.812-80-80s35.812-80,80-80S336,211.812,336,256z" + }, + "children": [] + }] +}; +exports.rec = rec; \ No newline at end of file diff --git a/dist/metrize/refresh.js b/dist/metrize/refresh.js new file mode 100644 index 000000000..7783cbe4a --- /dev/null +++ b/dist/metrize/refresh.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.refresh = void 0; +var refresh = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M354.554,236.532c6.422,31.797-2.75,66.047-27.484,90.703c-39.234,39.203-102.907,39.203-142.172,0\r\n\tc-39.281-39.188-39.266-102.688,0-141.859c39.094-38.984,102.782-38.641,141.594-0.484l-13.828,14.391l63.609,14.469l-17.875-62.016\r\n\tl-12.891,13.375c-51.719-50.594-130.329-48.641-180.016,0.906c-49.984,49.875-49.984,130.703,0,180.562\r\n\tc50,49.891,131.016,49.891,181,0c28.25-28.125,40.5-66.125,36.891-102.828L354.554,236.532z" + }, + "children": [] + }] +}; +exports.refresh = refresh; \ No newline at end of file diff --git a/dist/metrize/reportComment.js b/dist/metrize/reportComment.js new file mode 100644 index 000000000..e98b32896 --- /dev/null +++ b/dist/metrize/reportComment.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.reportComment = void 0; +var reportComment = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256-2C114.609-2,0,112.609,0,254s114.609,256,256,256s256-114.609,256-256S397.391-2,256-2z M256,470\r\n\tc-119.297,0-216-96.703-216-216S136.703,38,256,38s216,96.703,216,216S375.297,470,256,470z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M349.328,142H162.664C152.359,142,144,150.359,144,160.656v122.672c0,10.312,8.359,18.672,18.664,18.672H176v64l37.336-64\r\n\th135.992c10.312,0,18.672-8.359,18.672-18.672V160.656C368,150.359,359.641,142,349.328,142z M336,270h-96v-16h96V270z M336,222H176\r\n\tv-16h160V222z M336,190H176v-16h160V190z" + }, + "children": [] + }] +}; +exports.reportComment = reportComment; \ No newline at end of file diff --git a/dist/metrize/retweet.js b/dist/metrize/retweet.js new file mode 100644 index 000000000..eae872baa --- /dev/null +++ b/dist/metrize/retweet.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.retweet = void 0; +var retweet = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "160,208 176,192 320,192 320,176 352,208 320,240 320,224 192,224 192,240 160,272 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "160,208 176,192 320,192 320,176 352,208 320,240 320,224 192,224 192,240 160,272 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "352,304 336,320 192,320 192,336 160,304 192,272 192,288 320,288 320,272 352,240 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "352,304 336,320 192,320 192,336 160,304 192,272 192,288 320,288 320,272 352,240 \t" + }, + "children": [] + }] + }] + }] +}; +exports.retweet = retweet; \ No newline at end of file diff --git a/dist/metrize/rss.js b/dist/metrize/rss.js new file mode 100644 index 000000000..7cc1b321f --- /dev/null +++ b/dist/metrize/rss.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.rss = void 0; +var rss = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M128,230.391v51.203c56.547,0,102.406,45.844,102.406,102.406h51.188C281.594,299.188,212.844,230.391,128,230.391z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M128,230.391v51.203c56.547,0,102.406,45.844,102.406,102.406h51.188C281.594,299.188,212.844,230.391,128,230.391z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M128,128v51.203c113.094,0,204.812,91.703,204.812,204.797H384C384,242.609,269.406,128,128,128z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M128,128v51.203c113.094,0,204.812,91.703,204.812,204.797H384C384,242.609,269.406,128,128,128z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M153.594,332.797c-14.141,0-25.594,11.453-25.594,25.609C128,372.547,139.453,384,153.594,384\r\n\t\tc14.156,0,25.609-11.453,25.609-25.594C179.203,344.25,167.75,332.797,153.594,332.797z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M153.594,332.797c-14.141,0-25.594,11.453-25.594,25.609C128,372.547,139.453,384,153.594,384\r\n\t\tc14.156,0,25.609-11.453,25.609-25.594C179.203,344.25,167.75,332.797,153.594,332.797z" + }, + "children": [] + }] + }] + }] +}; +exports.rss = rss; \ No newline at end of file diff --git a/dist/metrize/rules.js b/dist/metrize/rules.js new file mode 100644 index 000000000..a1c8e07a5 --- /dev/null +++ b/dist/metrize/rules.js @@ -0,0 +1,75 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.rules = void 0; +var rules = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "128", + "y": "128", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "64", + "height": "64" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "128", + "y": "128", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "64", + "height": "64" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "368,128 368,160 352,160 352,128 336,128 336,144 320,144 320,128 \r\n\t\t304,128 304,160 288,160 288,128 272,128 272,144 256,144 256,128 240,128 240,160 224,160 224,128 208,128 208,192 384,192 \r\n\t\t384,128 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "368,128 368,160 352,160 352,128 336,128 336,144 320,144 320,128 \r\n\t\t304,128 304,160 288,160 288,128 272,128 272,144 256,144 256,128 240,128 240,160 224,160 224,128 208,128 208,192 384,192 \r\n\t\t384,128 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "128,224 144,224 144,240 128,240 128,256 160,256 160,272 128,272 \r\n\t\t128,288 144,288 144,304 128,304 128,320 160,320 160,336 128,336 128,352 144,352 144,368 128,368 128,384 192,384 192,208 \r\n\t\t128,208 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "128,224 144,224 144,240 128,240 128,256 160,256 160,272 128,272 \r\n\t\t128,288 144,288 144,304 128,304 128,320 160,320 160,336 128,336 128,352 144,352 144,368 128,368 128,384 192,384 192,208 \r\n\t\t128,208 \t" + }, + "children": [] + }] + }] + }] +}; +exports.rules = rules; \ No newline at end of file diff --git a/dist/metrize/scale.js b/dist/metrize/scale.js new file mode 100644 index 000000000..aa1f76056 --- /dev/null +++ b/dist/metrize/scale.js @@ -0,0 +1,69 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.scale = void 0; +var scale = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "119.5", + "y": "296.5", + "width": "112", + "height": "64" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "119.5", + "y": "296.5", + "width": "112", + "height": "64" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "119.5,232.5 135.5,232.5 135.5,184.5 359.5,184.5 359.5,344.5 327.5,344.5 327.5,360.5 375.5,360.5 375.5,168.5 \r\n\t\t119.5,168.5 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "119.5,232.5 135.5,232.5 135.5,184.5 359.5,184.5 359.5,344.5 327.5,344.5 327.5,360.5 375.5,360.5 375.5,168.5 \r\n\t\t119.5,168.5 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "119.5,280.5 135.5,280.5 135.5,264.5 295.5,264.5 295.5,344.5 247.5,344.5 247.5,360.5 311.5,360.5 311.5,248.5 \r\n\t\t119.5,248.5 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "119.5,280.5 135.5,280.5 135.5,264.5 295.5,264.5 295.5,344.5 247.5,344.5 247.5,360.5 311.5,360.5 311.5,248.5 \r\n\t\t119.5,248.5 \t" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,0C114.625,0,0,114.609,0,256s114.625,256,256,256c141.406,0,256-114.609,256-256S397.406,0,256,0z M256,472\r\n\t\tc-119.281,0-216-96.703-216-216S136.719,40,256,40c119.312,0,216,96.703,216,216S375.312,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.625,0,0,114.609,0,256s114.625,256,256,256c141.406,0,256-114.609,256-256S397.406,0,256,0z M256,472\r\n\t\tc-119.281,0-216-96.703-216-216S136.719,40,256,40c119.312,0,216,96.703,216,216S375.312,472,256,472z" + }, + "children": [] + }] + }] + }] +}; +exports.scale = scale; \ No newline at end of file diff --git a/dist/metrize/search.js b/dist/metrize/search.js new file mode 100644 index 000000000..1e81687c7 --- /dev/null +++ b/dist/metrize/search.js @@ -0,0 +1,37 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.search = void 0; +var search = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill": "#1D1D1B", + "d": "M302.188,279.563C313.36,263.875,320,244.727,320,224c0-53.032-42.984-96-96-96c-53.017,0-96,42.968-96,96\r\n\t\t\tc0,53.016,42.983,96,96,96c20.727,0,39.875-6.64,55.563-17.812l77.124,77.124c6.25,6.252,16.375,6.252,22.624,0\r\n\t\t\tc6.252-6.249,6.252-16.374,0-22.623L302.188,279.563z M278.953,256.319c-5.53,9.36-13.273,17.104-22.634,22.634\r\n\t\t\tC246.805,284.563,235.843,288,224,288c-35.345,0-64-28.656-64-64s28.655-64,64-64c35.344,0,64,28.656,64,64\r\n\t\t\tC288,235.843,284.563,246.805,278.953,256.319z M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\t\t\tS397.391,0,256,0z M256,472c-119.298,0-216-96.702-216-216c0-119.297,96.702-216,216-216s216,96.703,216,216\r\n\t\t\tC472,375.298,375.298,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill": "#1D1D1B", + "d": "M302.188,279.563C313.36,263.875,320,244.727,320,224c0-53.032-42.984-96-96-96c-53.017,0-96,42.968-96,96\r\n\t\t\tc0,53.016,42.983,96,96,96c20.727,0,39.875-6.64,55.563-17.812l77.124,77.124c6.25,6.252,16.375,6.252,22.624,0\r\n\t\t\tc6.252-6.249,6.252-16.374,0-22.623L302.188,279.563z M278.953,256.319c-5.53,9.36-13.273,17.104-22.634,22.634\r\n\t\t\tC246.805,284.563,235.843,288,224,288c-35.345,0-64-28.656-64-64s28.655-64,64-64c35.344,0,64,28.656,64,64\r\n\t\t\tC288,235.843,284.563,246.805,278.953,256.319z M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\t\t\tS397.391,0,256,0z M256,472c-119.298,0-216-96.702-216-216c0-119.297,96.702-216,216-216s216,96.703,216,216\r\n\t\t\tC472,375.298,375.298,472,256,472z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.search = search; \ No newline at end of file diff --git a/dist/metrize/selectCircle.js b/dist/metrize/selectCircle.js new file mode 100644 index 000000000..8ba1c9372 --- /dev/null +++ b/dist/metrize/selectCircle.js @@ -0,0 +1,141 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.selectCircle = void 0; +var selectCircle = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M177.914,311.906l-12.969,9.312c6.844,9.516,15.094,17.922,24.547,24.906l9.516-12.828\r\n\t\tC190.883,327.281,183.789,320.094,177.914,311.906z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M177.914,311.906l-12.969,9.312c6.844,9.516,15.094,17.922,24.547,24.906l9.516-12.828\r\n\t\tC190.883,327.281,183.789,320.094,177.914,311.906z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M144.008,255.406V256c0,11.578,1.766,23,5.25,33.953l15.188-4.844c-2.969-9.375-4.469-19.172-4.469-29.109L144.008,255.406\r\n\t\tz" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M144.008,255.406V256c0,11.578,1.766,23,5.25,33.953l15.188-4.844c-2.969-9.375-4.469-19.172-4.469-29.109L144.008,255.406\r\n\t\tz" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M165.711,189.75c-6.953,9.469-12.375,19.938-16.078,31.078l15.172,5.016c3.141-9.562,7.797-18.531,13.766-26.625\r\n\t\tL165.711,189.75z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M165.711,189.75c-6.953,9.469-12.375,19.938-16.078,31.078l15.172,5.016c3.141-9.562,7.797-18.531,13.766-26.625\r\n\t\tL165.711,189.75z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M220.539,362.25c11.078,3.719,22.688,5.625,34.469,5.75l0.156-15.969c-10.125-0.094-20.062-1.734-29.594-4.922\r\n\t\tL220.539,362.25z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M220.539,362.25c11.078,3.719,22.688,5.625,34.469,5.75l0.156-15.969c-10.125-0.094-20.062-1.734-29.594-4.922\r\n\t\tL220.539,362.25z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M221.758,149.344c-11.156,3.594-21.672,8.922-31.25,15.797l9.375,12.938c8.156-5.891,17.172-10.453,26.75-13.516\r\n\t\tL221.758,149.344z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M221.758,149.344c-11.156,3.594-21.672,8.922-31.25,15.797l9.375,12.938c8.156-5.891,17.172-10.453,26.75-13.516\r\n\t\tL221.758,149.344z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M290.883,149.531c-11.109-3.625-22.719-5.484-34.562-5.531l-0.031,15.969c10.125,0.047,20.109,1.625,29.609,4.734\r\n\t\tL290.883,149.531z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M290.883,149.531c-11.109-3.625-22.719-5.484-34.562-5.531l-0.031,15.969c10.125,0.047,20.109,1.625,29.609,4.734\r\n\t\tL290.883,149.531z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M333.117,313.25l12.828,9.547c7.031-9.469,12.5-19.891,16.234-31.016l-15.125-5.062\r\n\t\tC343.836,296.203,339.164,305.125,333.117,313.25z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M333.117,313.25l12.828,9.547c7.031-9.469,12.5-19.891,16.234-31.016l-15.125-5.062\r\n\t\tC343.836,296.203,339.164,305.125,333.117,313.25z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M362.555,221.469l-15.188,4.906c3.078,9.562,4.672,19.516,4.672,29.625l11.203,0.844l4.75-0.531\r\n\t\tC367.992,244.219,366.164,232.609,362.555,221.469z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M362.555,221.469l-15.188,4.906c3.078,9.562,4.672,19.516,4.672,29.625l11.203,0.844l4.75-0.531\r\n\t\tC367.992,244.219,366.164,232.609,362.555,221.469z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M284.82,347.625l4.797,15.234c11.188-3.516,21.734-8.766,31.328-15.594l-9.266-13.016\r\n\t\tC303.461,340.109,294.414,344.609,284.82,347.625z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M284.82,347.625l4.797,15.234c11.188-3.516,21.734-8.766,31.328-15.594l-9.266-13.016\r\n\t\tC303.461,340.109,294.414,344.609,284.82,347.625z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M346.68,190.25c-6.875-9.469-15.188-17.812-24.719-24.719l-9.406,12.859c8.156,5.969,15.297,13.125,21.203,21.266\r\n\t\tL346.68,190.25z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M346.68,190.25c-6.875-9.469-15.188-17.812-24.719-24.719l-9.406,12.859c8.156,5.969,15.297,13.125,21.203,21.266\r\n\t\tL346.68,190.25z" + }, + "children": [] + }] + }] + }] +}; +exports.selectCircle = selectCircle; \ No newline at end of file diff --git a/dist/metrize/selectSquare.js b/dist/metrize/selectSquare.js new file mode 100644 index 000000000..3c1976120 --- /dev/null +++ b/dist/metrize/selectSquare.js @@ -0,0 +1,141 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.selectSquare = void 0; +var selectSquare = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "351.906", + "y": "224.031", + "width": "15.984", + "height": "63.938" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "351.906", + "y": "224.031", + "width": "15.984", + "height": "63.938" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M344.047,144h-8.016v15.984h8.016c4.375,0,7.969,3.578,7.969,7.984v8H368v-8C368,154.766,357.234,144,344.047,144z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M344.047,144h-8.016v15.984h8.016c4.375,0,7.969,3.578,7.969,7.984v8H368v-8C368,154.766,357.234,144,344.047,144z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "224.031", + "y": "144.125", + "width": "63.938", + "height": "15.984" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "224.031", + "y": "144.125", + "width": "63.938", + "height": "15.984" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M144,167.969l0.125,8.125h15.984l-0.125-8.125c0-4.406,3.578-7.984,7.984-7.984h8V144h-8\r\n\t\tC154.75,144,144,154.766,144,167.969z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M144,167.969l0.125,8.125h15.984l-0.125-8.125c0-4.406,3.578-7.984,7.984-7.984h8V144h-8\r\n\t\tC154.75,144,144,154.766,144,167.969z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "144.125", + "y": "224.031", + "width": "15.984", + "height": "63.938" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "144.125", + "y": "224.031", + "width": "15.984", + "height": "63.938" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M159.984,344.047v-8.016H144v8.016C144,357.25,154.75,368,167.969,368h8v-15.984h-8\r\n\t\tC163.562,352.016,159.984,348.422,159.984,344.047z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M159.984,344.047v-8.016H144v8.016C144,357.25,154.75,368,167.969,368h8v-15.984h-8\r\n\t\tC163.562,352.016,159.984,348.422,159.984,344.047z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "224.031", + "y": "351.906", + "width": "63.938", + "height": "15.984" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "224.031", + "y": "351.906", + "width": "63.938", + "height": "15.984" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M352.016,344.047c0,4.375-3.594,7.969-7.969,7.969h-8.016V368h8.016C357.234,368,368,357.25,368,344.047v-8.016h-15.984\r\n\t\tV344.047z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M352.016,344.047c0,4.375-3.594,7.969-7.969,7.969h-8.016V368h8.016C357.234,368,368,357.25,368,344.047v-8.016h-15.984\r\n\t\tV344.047z" + }, + "children": [] + }] + }] + }] +}; +exports.selectSquare = selectSquare; \ No newline at end of file diff --git a/dist/metrize/setting.js b/dist/metrize/setting.js new file mode 100644 index 000000000..f6900cd5d --- /dev/null +++ b/dist/metrize/setting.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.setting = void 0; +var setting = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M368,274.672v-37.328h-20.547c-0.75-3.703-2.109-7.156-3.281-10.688l18.141-10.469l-18.672-32.336l-18.094,10.445\r\n\t\t\tc-2.469-2.766-5.078-5.367-7.844-7.828l10.469-18.109l-32.328-18.672l-10.469,18.156c-3.547-1.18-6.984-2.539-10.703-3.297V144\r\n\t\t\th-37.344v20.547c-3.688,0.758-7.141,2.117-10.656,3.281l-10.484-18.141l-32.344,18.656l10.453,18.117\r\n\t\t\tc-2.766,2.461-5.359,5.047-7.828,7.82l-18.109-10.461l-18.672,32.336l18.156,10.469c-1.188,3.547-2.547,7-3.297,10.719H144v37.328\r\n\t\t\th20.547c0.75,3.703,2.109,7.156,3.281,10.672l-18.172,10.5l18.672,32.344l18.141-10.469c2.469,2.781,5.062,5.375,7.844,7.828\r\n\t\t\tl-10.469,18.141l32.328,18.672l10.5-18.188c3.516,1.172,6.969,2.547,10.656,3.281V368h37.344v-20.547\r\n\t\t\tc3.688-0.734,7.156-2.109,10.703-3.297l10.469,18.188l32.344-18.672l-10.469-18.141c2.781-2.469,5.359-5.062,7.844-7.844\r\n\t\t\tl18.125,10.469l18.656-32.344l-18.172-10.5c1.172-3.516,2.531-6.938,3.281-10.641H368z M256,312c-30.906,0-56-25.062-56-56\r\n\t\t\tc0-30.906,25.094-56,56-56c30.938,0,56,25.094,56,56C312,286.938,286.938,312,256,312z M256,237.344\r\n\t\t\tc-10.312,0-18.672,8.344-18.672,18.656s8.359,18.672,18.672,18.672s18.672-8.359,18.672-18.672S266.312,237.344,256,237.344z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M368,274.672v-37.328h-20.547c-0.75-3.703-2.109-7.156-3.281-10.688l18.141-10.469l-18.672-32.336l-18.094,10.445\r\n\t\t\tc-2.469-2.766-5.078-5.367-7.844-7.828l10.469-18.109l-32.328-18.672l-10.469,18.156c-3.547-1.18-6.984-2.539-10.703-3.297V144\r\n\t\t\th-37.344v20.547c-3.688,0.758-7.141,2.117-10.656,3.281l-10.484-18.141l-32.344,18.656l10.453,18.117\r\n\t\t\tc-2.766,2.461-5.359,5.047-7.828,7.82l-18.109-10.461l-18.672,32.336l18.156,10.469c-1.188,3.547-2.547,7-3.297,10.719H144v37.328\r\n\t\t\th20.547c0.75,3.703,2.109,7.156,3.281,10.672l-18.172,10.5l18.672,32.344l18.141-10.469c2.469,2.781,5.062,5.375,7.844,7.828\r\n\t\t\tl-10.469,18.141l32.328,18.672l10.5-18.188c3.516,1.172,6.969,2.547,10.656,3.281V368h37.344v-20.547\r\n\t\t\tc3.688-0.734,7.156-2.109,10.703-3.297l10.469,18.188l32.344-18.672l-10.469-18.141c2.781-2.469,5.359-5.062,7.844-7.844\r\n\t\t\tl18.125,10.469l18.656-32.344l-18.172-10.5c1.172-3.516,2.531-6.938,3.281-10.641H368z M256,312c-30.906,0-56-25.062-56-56\r\n\t\t\tc0-30.906,25.094-56,56-56c30.938,0,56,25.094,56,56C312,286.938,286.938,312,256,312z M256,237.344\r\n\t\t\tc-10.312,0-18.672,8.344-18.672,18.656s8.359,18.672,18.672,18.672s18.672-8.359,18.672-18.672S266.312,237.344,256,237.344z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.setting = setting; \ No newline at end of file diff --git a/dist/metrize/settings.js b/dist/metrize/settings.js new file mode 100644 index 000000000..6f26f9a0a --- /dev/null +++ b/dist/metrize/settings.js @@ -0,0 +1,59 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.settings = void 0; +var settings = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M261.078,275.656l18.578-18.594l-24.719-24.734l-18.594,18.594c-2.953-1.547-6.031-2.812-9.25-3.828v-26.297h-34.984\r\n\t\t\tv26.297c-3.219,1.016-6.297,2.281-9.266,3.828l-18.594-18.578l-24.719,24.719l18.594,18.594c-1.562,2.953-2.812,6.031-3.844,9.25\r\n\t\t\tH128v34.984h26.281c1.031,3.219,2.281,6.297,3.844,9.25l-18.594,18.594l24.734,24.734l18.578-18.594\r\n\t\t\tc2.969,1.547,6.031,2.797,9.266,3.828V384h34.984v-26.281c3.219-1.031,6.297-2.297,9.25-3.844l18.594,18.594l24.734-24.734\r\n\t\t\tl-18.594-18.578c1.547-2.969,2.812-6.031,3.828-9.266h26.297v-34.984h-26.297C263.891,281.688,262.625,278.609,261.078,275.656z\r\n\t\t\t M209.594,337.375c-19.312,0-34.969-15.656-34.969-34.969c0-19.328,15.656-34.969,34.969-34.969\r\n\t\t\tc19.328,0,34.969,15.641,34.969,34.969C244.562,321.719,228.922,337.375,209.594,337.375z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M261.078,275.656l18.578-18.594l-24.719-24.734l-18.594,18.594c-2.953-1.547-6.031-2.812-9.25-3.828v-26.297h-34.984\r\n\t\t\tv26.297c-3.219,1.016-6.297,2.281-9.266,3.828l-18.594-18.578l-24.719,24.719l18.594,18.594c-1.562,2.953-2.812,6.031-3.844,9.25\r\n\t\t\tH128v34.984h26.281c1.031,3.219,2.281,6.297,3.844,9.25l-18.594,18.594l24.734,24.734l18.578-18.594\r\n\t\t\tc2.969,1.547,6.031,2.797,9.266,3.828V384h34.984v-26.281c3.219-1.031,6.297-2.297,9.25-3.844l18.594,18.594l24.734-24.734\r\n\t\t\tl-18.594-18.578c1.547-2.969,2.812-6.031,3.828-9.266h26.297v-34.984h-26.297C263.891,281.688,262.625,278.609,261.078,275.656z\r\n\t\t\t M209.594,337.375c-19.312,0-34.969-15.656-34.969-34.969c0-19.328,15.656-34.969,34.969-34.969\r\n\t\t\tc19.328,0,34.969,15.641,34.969,34.969C244.562,321.719,228.922,337.375,209.594,337.375z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M384,197.281v-24.453h-18.391c-0.703-2.258-1.594-4.406-2.672-6.469l12.969-13.008l-17.281-17.289l-13,13\r\n\t\t\tc-2.047-1.086-4.219-1.969-6.469-2.68V128h-24.438v18.383c-2.25,0.711-4.422,1.602-6.484,2.68l-13-12.992l-17.297,17.289l13,13\r\n\t\t\tc-1.078,2.062-1.969,4.211-2.672,6.469h-18.391v24.453h18.391c0.703,2.258,1.594,4.406,2.672,6.469l-13,13l17.312,17.297\r\n\t\t\tl12.984-13c2.062,1.078,4.219,1.953,6.484,2.672v18.391h24.438v-18.375c2.25-0.719,4.422-1.609,6.469-2.688l13,13l17.312-17.297\r\n\t\t\tl-13-12.984c1.078-2.078,1.969-4.219,2.672-6.484H384z M326.938,209.5c-13.5,0-24.453-10.938-24.453-24.438\r\n\t\t\tc0-13.516,10.953-24.461,24.453-24.461c13.516,0,24.453,10.945,24.453,24.461C351.391,198.562,340.453,209.5,326.938,209.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M384,197.281v-24.453h-18.391c-0.703-2.258-1.594-4.406-2.672-6.469l12.969-13.008l-17.281-17.289l-13,13\r\n\t\t\tc-2.047-1.086-4.219-1.969-6.469-2.68V128h-24.438v18.383c-2.25,0.711-4.422,1.602-6.484,2.68l-13-12.992l-17.297,17.289l13,13\r\n\t\t\tc-1.078,2.062-1.969,4.211-2.672,6.469h-18.391v24.453h18.391c0.703,2.258,1.594,4.406,2.672,6.469l-13,13l17.312,17.297\r\n\t\t\tl12.984-13c2.062,1.078,4.219,1.953,6.484,2.672v18.391h24.438v-18.375c2.25-0.719,4.422-1.609,6.469-2.688l13,13l17.312-17.297\r\n\t\t\tl-13-12.984c1.078-2.078,1.969-4.219,2.672-6.484H384z M326.938,209.5c-13.5,0-24.453-10.938-24.453-24.438\r\n\t\t\tc0-13.516,10.953-24.461,24.453-24.461c13.516,0,24.453,10.945,24.453,24.461C351.391,198.562,340.453,209.5,326.938,209.5z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.settings = settings; \ No newline at end of file diff --git a/dist/metrize/shield.js b/dist/metrize/shield.js new file mode 100644 index 000000000..317c89684 --- /dev/null +++ b/dist/metrize/shield.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.shield = void 0; +var shield = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M367.625,161.469c0,0-37.266,4.281-55.875,0c-17.609-4.031-56.062-33.562-56.203-33.469\r\n\tc-3.766,2.938-38.188,29.531-55.266,33.469c-18.641,4.281-55.906,0-55.906,0S139.719,214.984,163,281.359\r\n\tc22.625,64.453,92.969,102.656,93,102.641c0.031,0.016,70.391-38.188,92.969-102.641\r\n\tC372.266,214.984,367.625,161.469,367.625,161.469z M315.797,271.516C303.984,305.219,275,330.875,256,344.781\r\n\tc-18.969-13.891-48-39.547-59.828-73.25c-10.391-29.625-14.641-56.625-16.312-76.156c11.562-0.094,21.016-1.031,28.875-2.844\r\n\tc13.984-3.203,31.297-13.062,47.234-23.906c25.953,17.344,38.812,21.969,47.328,23.906c7.828,1.812,17.281,2.75,28.844,2.844\r\n\tC330.484,214.891,326.219,241.844,315.797,271.516z" + }, + "children": [] + }] +}; +exports.shield = shield; \ No newline at end of file diff --git a/dist/metrize/signFemale.js b/dist/metrize/signFemale.js new file mode 100644 index 000000000..7cc793afb --- /dev/null +++ b/dist/metrize/signFemale.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.signFemale = void 0; +var signFemale = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M272,253.734c27.562-7.141,48-31.953,48-61.734c0-35.344-28.641-64-64-64c-35.344,0-64,28.656-64,64\r\n\tc0,29.781,20.453,54.594,48,61.734V320h-32v32h32v32h32v-32h32v-32h-32V253.734z M256,224c-17.672,0-32-14.312-32-32\r\n\ts14.328-32,32-32s32,14.312,32,32S273.672,224,256,224z" + }, + "children": [] + }] +}; +exports.signFemale = signFemale; \ No newline at end of file diff --git a/dist/metrize/signMale.js b/dist/metrize/signMale.js new file mode 100644 index 000000000..d7f263c37 --- /dev/null +++ b/dist/metrize/signMale.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.signMale = void 0; +var signMale = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M293.086,151.031l22.625,22.625l-91,90.984c-9.5-5.609-20.469-9.047-32.312-9.047c-35.344,0-64,28.656-64,64\r\n\ts28.656,64,64,64c35.359,0,64-28.656,64-64c0-11.859-3.438-22.812-9.062-32.328l91-90.984l22.625,22.625l22.641-90.5\r\n\tL293.086,151.031z M192.398,351.594c-17.672,0-32-14.312-32-32s14.328-32,32-32s32,14.312,32,32S210.07,351.594,192.398,351.594z" + }, + "children": [] + }] +}; +exports.signMale = signMale; \ No newline at end of file diff --git a/dist/metrize/sliders.js b/dist/metrize/sliders.js new file mode 100644 index 000000000..c5ed8bbf9 --- /dev/null +++ b/dist/metrize/sliders.js @@ -0,0 +1,203 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.sliders = void 0; +var sliders = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M336,176c-13.266,0-24-10.75-24-24s10.734-24,24-24c13.25,0,24,10.75,24,24S349.25,176,336,176z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M336,176c-13.266,0-24-10.75-24-24s10.734-24,24-24c13.25,0,24,10.75,24,24S349.25,176,336,176z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M288,240c-13.266,0-24-10.75-24-24s10.734-24,24-24c13.25,0,24,10.75,24,24S301.25,240,288,240z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M288,240c-13.266,0-24-10.75-24-24s10.734-24,24-24c13.25,0,24,10.75,24,24S301.25,240,288,240z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M232,320c-13.266,0-24-10.75-24-24s10.734-24,24-24c13.25,0,24,10.75,24,24S245.25,320,232,320z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M232,320c-13.266,0-24-10.75-24-24s10.734-24,24-24c13.25,0,24,10.75,24,24S245.25,320,232,320z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M176,384c-13.266,0-24-10.75-24-24s10.734-24,24-24c13.25,0,24,10.75,24,24S189.25,384,176,384z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M176,384c-13.266,0-24-10.75-24-24s10.734-24,24-24c13.25,0,24,10.75,24,24S189.25,384,176,384z" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M296.812,144H128v16h168.812c-0.531-2.594-0.812-5.25-0.812-8S296.281,146.594,296.812,144z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M296.812,144H128v16h168.812c-0.531-2.594-0.812-5.25-0.812-8S296.281,146.594,296.812,144z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M384,144h-8.812c0.531,2.594,0.812,5.25,0.812,8s-0.281,5.406-0.812,8H384V144z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M384,144h-8.812c0.531,2.594,0.812,5.25,0.812,8s-0.281,5.406-0.812,8H384V144z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M248.812,208H128v16h120.812c-0.531-2.594-0.812-5.25-0.812-8S248.281,210.594,248.812,208z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M248.812,208H128v16h120.812c-0.531-2.594-0.812-5.25-0.812-8S248.281,210.594,248.812,208z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M384,208h-56.812c0.531,2.594,0.812,5.25,0.812,8s-0.281,5.406-0.812,8H384V208z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M384,208h-56.812c0.531,2.594,0.812,5.25,0.812,8s-0.281,5.406-0.812,8H384V208z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M192.812,288H128v16h64.812c-0.531-2.594-0.812-5.266-0.812-8S192.281,290.594,192.812,288z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M192.812,288H128v16h64.812c-0.531-2.594-0.812-5.266-0.812-8S192.281,290.594,192.812,288z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M384,288H271.188c0.531,2.594,0.812,5.266,0.812,8s-0.281,5.406-0.812,8H384V288z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M384,288H271.188c0.531,2.594,0.812,5.266,0.812,8s-0.281,5.406-0.812,8H384V288z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M136.812,352H128v16h8.812c-0.531-2.594-0.812-5.266-0.812-8S136.281,354.594,136.812,352z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M136.812,352H128v16h8.812c-0.531-2.594-0.812-5.266-0.812-8S136.281,354.594,136.812,352z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M384,352H215.188c0.531,2.594,0.812,5.266,0.812,8s-0.281,5.406-0.812,8H384V352z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M384,352H215.188c0.531,2.594,0.812,5.266,0.812,8s-0.281,5.406-0.812,8H384V352z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.sliders = sliders; \ No newline at end of file diff --git a/dist/metrize/slidersVertical.js b/dist/metrize/slidersVertical.js new file mode 100644 index 000000000..44df20274 --- /dev/null +++ b/dist/metrize/slidersVertical.js @@ -0,0 +1,203 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.slidersVertical = void 0; +var slidersVertical = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M176,328c0,13.25-10.75,24-24,24s-24-10.75-24-24s10.75-24,24-24S176,314.75,176,328z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M176,328c0,13.25-10.75,24-24,24s-24-10.75-24-24s10.75-24,24-24S176,314.75,176,328z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M384,280c0,13.25-10.75,24-24,24s-24-10.75-24-24s10.75-24,24-24S384,266.75,384,280z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M384,280c0,13.25-10.75,24-24,24s-24-10.75-24-24s10.75-24,24-24S384,266.75,384,280z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M240,184c0,13.25-10.75,24-24,24s-24-10.75-24-24s10.75-24,24-24S240,170.75,240,184z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M240,184c0,13.25-10.75,24-24,24s-24-10.75-24-24s10.75-24,24-24S240,170.75,240,184z" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M208,223.188V384h16V223.188c-2.594,0.531-5.25,0.812-8,0.812S210.594,223.719,208,223.188z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M208,223.188V384h16V223.188c-2.594,0.531-5.25,0.812-8,0.812S210.594,223.719,208,223.188z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M224,144.812V128h-16v16.812c2.594-0.531,5.25-0.812,8-0.812S221.406,144.281,224,144.812z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M224,144.812V128h-16v16.812c2.594-0.531,5.25-0.812,8-0.812S221.406,144.281,224,144.812z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M352,319.188V384h16v-64.812c-2.594,0.531-5.266,0.812-8,0.812S354.594,319.719,352,319.188z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M352,319.188V384h16v-64.812c-2.594,0.531-5.266,0.812-8,0.812S354.594,319.719,352,319.188z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M368,240.812V128h-16v112.812c2.594-0.531,5.266-0.812,8-0.812S365.406,240.281,368,240.812z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M368,240.812V128h-16v112.812c2.594-0.531,5.266-0.812,8-0.812S365.406,240.281,368,240.812z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M144,367.188V384h16v-16.812c-2.594,0.531-5.25,0.812-8,0.812S146.594,367.719,144,367.188z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M144,367.188V384h16v-16.812c-2.594,0.531-5.25,0.812-8,0.812S146.594,367.719,144,367.188z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M160,288.812V128h-16v160.812c2.594-0.531,5.25-0.812,8-0.812S157.406,288.281,160,288.812z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M160,288.812V128h-16v160.812c2.594-0.531,5.25-0.812,8-0.812S157.406,288.281,160,288.812z" + }, + "children": [] + }] + }] + }] + }, { + "name": "path", + "attribs": { + "d": "M320,224c0,13.266-10.75,24-24,24s-24-10.734-24-24c0-13.25,10.75-24,24-24S320,210.75,320,224z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M320,224c0,13.266-10.75,24-24,24s-24-10.734-24-24c0-13.25,10.75-24,24-24S320,210.75,320,224z" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M304,184.812V128h-16v56.812c2.594-0.531,5.266-0.812,8-0.812S301.406,184.281,304,184.812z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M304,184.812V128h-16v56.812c2.594-0.531,5.266-0.812,8-0.812S301.406,184.281,304,184.812z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M288,263.188V384h16V263.188c-2.594,0.531-5.266,0.812-8,0.812S290.594,263.719,288,263.188z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M288,263.188V384h16V263.188c-2.594,0.531-5.266,0.812-8,0.812S290.594,263.719,288,263.188z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.slidersVertical = slidersVertical; \ No newline at end of file diff --git a/dist/metrize/snow.js b/dist/metrize/snow.js new file mode 100644 index 000000000..e83a63cfc --- /dev/null +++ b/dist/metrize/snow.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.snow = void 0; +var snow = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M357.498,285l-26.094-15.062c0.828-4.531,1.391-9.172,1.391-13.938c0-4.781-0.562-9.438-1.438-13.969l26.109-15.078\r\n\tc12.266-7.109,16.438-22.75,9.375-34.953c-7.078-12.25-22.688-16.453-34.938-9.406l-26.359,15.219\r\n\tc-7.047-6-15.078-10.719-23.953-13.875v-30.344c0-14.125-11.438-25.594-25.594-25.594c-14.141,0-25.594,11.469-25.594,25.594v30.312\r\n\tc-8.875,3.156-16.906,7.891-23.969,13.891l-26.281-15.172c-12.25-7.078-27.938-2.891-35,9.359\r\n\tc-7.062,12.234-2.859,27.891,9.391,34.953l26.047,15.047c-0.844,4.547-1.406,9.219-1.406,14.016c0,4.766,0.562,9.406,1.406,13.953\r\n\tL154.529,285c-12.266,7.062-16.469,22.75-9.375,35c7.031,12.203,22.703,16.406,34.969,9.344l26.281-15.172\r\n\tc7.031,6,15.094,10.766,24,13.922v30.312c0,14.141,11.453,25.594,25.594,25.594c14.157,0,25.594-11.453,25.594-25.594v-30.344\r\n\tc8.906-3.156,16.953-7.891,23.969-13.906l26.344,15.188c12.25,7.062,27.891,2.859,34.938-9.344\r\n\tC373.936,307.75,369.748,292.094,357.498,285z M230.404,256c0-14.125,11.438-25.594,25.594-25.594\r\n\tc14.125,0,25.594,11.469,25.594,25.594s-11.469,25.594-25.594,25.594C241.841,281.594,230.404,270.125,230.404,256z" + }, + "children": [] + }] +}; +exports.snow = snow; \ No newline at end of file diff --git a/dist/metrize/social500px.js b/dist/metrize/social500px.js new file mode 100644 index 000000000..f42076531 --- /dev/null +++ b/dist/metrize/social500px.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.social500px = void 0; +var social500px = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M367.922,210.203c-5.094-5.641-11.391-10.109-18.828-13.359c-7.453-3.219-15.859-4.844-25.188-4.844\r\n\t\tc-7.438,0-14.344,1.172-20.766,3.469c-6.391,2.328-12.328,5.375-17.781,9.203c-5.484,3.797-10.625,8.266-15.391,13.359\r\n\t\tc-4.781,5.062-9.375,10.281-13.781,15.594c-4.672-5.562-9.375-10.812-14.156-15.781s-9.906-9.375-15.359-13.172\r\n\t\tc-5.484-3.828-11.422-6.875-17.828-9.203c-6.406-2.297-13.438-3.469-21.125-3.469c-9.312,0-17.688,1.688-25.156,5.031\r\n\t\tc-7.438,3.359-13.75,7.875-18.859,13.531c-5.125,5.656-9.016,12.375-11.688,20.125c-2.703,7.75-4.016,16.125-4.016,25.125\r\n\t\tc0,9.047,1.406,17.484,4.188,25.328c2.781,7.875,6.875,14.641,12.234,20.281c5.344,5.719,11.766,10.219,19.203,13.547\r\n\t\tc7.438,3.375,15.938,5.031,25.5,5.031c7.688,0,14.594-1.141,20.781-3.312c6.156-2.188,11.875-5.047,17.109-8.656\r\n\t\tc5.234-3.594,10.172-7.734,14.828-12.469c4.656-4.75,9.438-9.703,14.344-14.75c4.406,5.047,9.062,10,13.969,14.75\r\n\t\tc4.875,4.734,10.047,8.875,15.516,12.469c5.469,3.609,11.375,6.469,17.672,8.656c6.297,2.172,13.016,3.312,20.25,3.312\r\n\t\tc9.266,0,17.75-1.656,25.266-5.031c7.594-3.328,13.969-7.984,19.062-13.828c5.141-5.953,9.094-12.797,11.891-20.703\r\n\t\tc2.828-7.797,4.188-16.312,4.188-25.312c0-9.016-1.359-17.328-4.188-24.969C377.016,222.531,373.062,215.875,367.922,210.203z\r\n\t\t M225.797,266.75c-3.484,3.391-7.234,6.391-11.188,9.031c-3.953,2.625-8.172,4.859-12.562,6.578\r\n\t\tc-4.438,1.781-8.859,2.594-13.266,2.594c-8.625,0-15.375-2.641-20.266-7.969s-7.328-12.125-7.328-20.453\r\n\t\tc0-7.641,2.375-14.516,7.141-20.656c4.766-6.125,11.234-9.188,19.391-9.188c4.422,0,8.844,1,13.281,2.953\r\n\t\tc4.422,1.953,8.672,4.453,12.734,7.453c4.078,3,7.969,6.312,11.703,9.875c3.734,3.594,7,6.891,9.781,9.891\r\n\t\tC232.438,260.094,229.281,263.391,225.797,266.75z M344.156,276.641c-4.625,5.531-11.297,8.312-19.875,8.312\r\n\t\tc-4.922,0-9.484-0.812-13.812-2.406c-4.312-1.641-8.422-3.766-12.375-6.406c-3.953-2.688-7.734-5.703-11.234-9\r\n\t\tc-3.469-3.391-6.734-6.828-9.734-10.281c2.781-3,5.953-6.297,9.438-9.891c3.5-3.562,7.156-6.875,11-9.875\r\n\t\tc3.797-3,7.906-5.5,12.219-7.453c4.328-1.953,8.812-2.953,13.438-2.953c8.641,0,15.422,2.875,20.422,8.672\r\n\t\ts7.516,12.703,7.516,20.828C351.156,264.281,348.859,271.109,344.156,276.641z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M367.922,210.203c-5.094-5.641-11.391-10.109-18.828-13.359c-7.453-3.219-15.859-4.844-25.188-4.844\r\n\t\tc-7.438,0-14.344,1.172-20.766,3.469c-6.391,2.328-12.328,5.375-17.781,9.203c-5.484,3.797-10.625,8.266-15.391,13.359\r\n\t\tc-4.781,5.062-9.375,10.281-13.781,15.594c-4.672-5.562-9.375-10.812-14.156-15.781s-9.906-9.375-15.359-13.172\r\n\t\tc-5.484-3.828-11.422-6.875-17.828-9.203c-6.406-2.297-13.438-3.469-21.125-3.469c-9.312,0-17.688,1.688-25.156,5.031\r\n\t\tc-7.438,3.359-13.75,7.875-18.859,13.531c-5.125,5.656-9.016,12.375-11.688,20.125c-2.703,7.75-4.016,16.125-4.016,25.125\r\n\t\tc0,9.047,1.406,17.484,4.188,25.328c2.781,7.875,6.875,14.641,12.234,20.281c5.344,5.719,11.766,10.219,19.203,13.547\r\n\t\tc7.438,3.375,15.938,5.031,25.5,5.031c7.688,0,14.594-1.141,20.781-3.312c6.156-2.188,11.875-5.047,17.109-8.656\r\n\t\tc5.234-3.594,10.172-7.734,14.828-12.469c4.656-4.75,9.438-9.703,14.344-14.75c4.406,5.047,9.062,10,13.969,14.75\r\n\t\tc4.875,4.734,10.047,8.875,15.516,12.469c5.469,3.609,11.375,6.469,17.672,8.656c6.297,2.172,13.016,3.312,20.25,3.312\r\n\t\tc9.266,0,17.75-1.656,25.266-5.031c7.594-3.328,13.969-7.984,19.062-13.828c5.141-5.953,9.094-12.797,11.891-20.703\r\n\t\tc2.828-7.797,4.188-16.312,4.188-25.312c0-9.016-1.359-17.328-4.188-24.969C377.016,222.531,373.062,215.875,367.922,210.203z\r\n\t\t M225.797,266.75c-3.484,3.391-7.234,6.391-11.188,9.031c-3.953,2.625-8.172,4.859-12.562,6.578\r\n\t\tc-4.438,1.781-8.859,2.594-13.266,2.594c-8.625,0-15.375-2.641-20.266-7.969s-7.328-12.125-7.328-20.453\r\n\t\tc0-7.641,2.375-14.516,7.141-20.656c4.766-6.125,11.234-9.188,19.391-9.188c4.422,0,8.844,1,13.281,2.953\r\n\t\tc4.422,1.953,8.672,4.453,12.734,7.453c4.078,3,7.969,6.312,11.703,9.875c3.734,3.594,7,6.891,9.781,9.891\r\n\t\tC232.438,260.094,229.281,263.391,225.797,266.75z M344.156,276.641c-4.625,5.531-11.297,8.312-19.875,8.312\r\n\t\tc-4.922,0-9.484-0.812-13.812-2.406c-4.312-1.641-8.422-3.766-12.375-6.406c-3.953-2.688-7.734-5.703-11.234-9\r\n\t\tc-3.469-3.391-6.734-6.828-9.734-10.281c2.781-3,5.953-6.297,9.438-9.891c3.5-3.562,7.156-6.875,11-9.875\r\n\t\tc3.797-3,7.906-5.5,12.219-7.453c4.328-1.953,8.812-2.953,13.438-2.953c8.641,0,15.422,2.875,20.422,8.672\r\n\t\ts7.516,12.703,7.516,20.828C351.156,264.281,348.859,271.109,344.156,276.641z" + }, + "children": [] + }] + }] + }] +}; +exports.social500px = social500px; \ No newline at end of file diff --git a/dist/metrize/socialAddthis.js b/dist/metrize/socialAddthis.js new file mode 100644 index 000000000..49288235d --- /dev/null +++ b/dist/metrize/socialAddthis.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialAddthis = void 0; +var socialAddthis = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "points": "287.5,128.5 223.5,128.5 223.5,224.5 127.5,224.5 127.5,288.5 223.5,288.5 223.5,384.5 287.5,384.5 287.5,288.5 \r\n\t383.5,288.5 383.5,224.5 287.5,224.5 " + }, + "children": [] + }] +}; +exports.socialAddthis = socialAddthis; \ No newline at end of file diff --git a/dist/metrize/socialBebo.js b/dist/metrize/socialBebo.js new file mode 100644 index 000000000..24b79a7ee --- /dev/null +++ b/dist/metrize/socialBebo.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialBebo = void 0; +var socialBebo = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M268.438,384h-24.875C188.656,384,144,338.047,144,281.594v-128C144,139.453,155.125,128,168.891,128\r\n\tc13.734,0,24.891,11.453,24.891,25.594v128c0,28.234,22.344,51.203,49.781,51.203h24.875c27.453,0,49.781-20.094,49.781-44.797\r\n\tc0-25.25-13.391-44.797-24.875-44.797h-49.781c-13.766,0-24.906-11.484-24.906-25.609c0-14.141,11.141-25.594,24.906-25.594h49.781\r\n\tC334.5,192,368,235.047,368,288C368,340.922,323.328,384,268.438,384z" + }, + "children": [] + }] +}; +exports.socialBebo = socialBebo; \ No newline at end of file diff --git a/dist/metrize/socialBehance.js b/dist/metrize/socialBehance.js new file mode 100644 index 000000000..580637771 --- /dev/null +++ b/dist/metrize/socialBehance.js @@ -0,0 +1,85 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialBehance = void 0; +var socialBehance = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M242.531,192.656c4.719,6.594,7.094,14.547,7.094,23.797c0,9.516-2.406,17.203-7.156,23\r\n\t\t\t\tc-2.688,3.234-6.578,6.203-11.75,8.859c7.859,2.922,13.797,7.484,17.812,13.766c4,6.328,6,13.922,6,22.891\r\n\t\t\t\tc0,9.25-2.281,17.531-6.875,24.859c-2.906,4.891-6.531,8.969-10.906,12.344c-4.906,3.797-10.75,6.375-17.422,7.812\r\n\t\t\t\tc-6.703,1.375-13.969,2.078-21.797,2.078H128V176h74.578C221.375,176.266,234.719,181.812,242.531,192.656z M158.781,203.141\r\n\t\t\t\tv34.375h37.5c6.688,0,12.109-1.281,16.328-3.844c4.141-2.609,6.25-7.172,6.25-13.719c0-7.297-2.766-12.047-8.281-14.406\r\n\t\t\t\tc-4.75-1.625-10.859-2.406-18.234-2.406H158.781z M158.781,263.406v41.578h37.438c6.688,0,11.906-0.953,15.625-2.766\r\n\t\t\t\tc6.781-3.406,10.156-9.906,10.156-19.484c0-8.141-3.281-13.703-9.844-16.734c-3.656-1.688-8.781-2.562-15.406-2.594H158.781z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M242.531,192.656c4.719,6.594,7.094,14.547,7.094,23.797c0,9.516-2.406,17.203-7.156,23\r\n\t\t\t\tc-2.688,3.234-6.578,6.203-11.75,8.859c7.859,2.922,13.797,7.484,17.812,13.766c4,6.328,6,13.922,6,22.891\r\n\t\t\t\tc0,9.25-2.281,17.531-6.875,24.859c-2.906,4.891-6.531,8.969-10.906,12.344c-4.906,3.797-10.75,6.375-17.422,7.812\r\n\t\t\t\tc-6.703,1.375-13.969,2.078-21.797,2.078H128V176h74.578C221.375,176.266,234.719,181.812,242.531,192.656z M158.781,203.141\r\n\t\t\t\tv34.375h37.5c6.688,0,12.109-1.281,16.328-3.844c4.141-2.609,6.25-7.172,6.25-13.719c0-7.297-2.766-12.047-8.281-14.406\r\n\t\t\t\tc-4.75-1.625-10.859-2.406-18.234-2.406H158.781z M158.781,263.406v41.578h37.438c6.688,0,11.906-0.953,15.625-2.766\r\n\t\t\t\tc6.781-3.406,10.156-9.906,10.156-19.484c0-8.141-3.281-13.703-9.844-16.734c-3.656-1.688-8.781-2.562-15.406-2.594H158.781z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M354.156,218.984c7.969,3.625,14.547,9.297,19.75,17.078c4.641,6.906,7.688,14.844,9.094,23.891\r\n\t\t\t\tc0.781,5.281,1.109,12.891,0.969,22.859h-83.094c0.469,11.625,4.469,19.719,11.969,24.391c4.531,2.891,10.016,4.328,16.406,4.328\r\n\t\t\t\tc6.797,0,12.328-1.766,16.547-5.297c2.344-1.906,4.375-4.516,6.172-7.938h30.438c-0.797,6.812-4.5,13.797-11.062,20.891\r\n\t\t\t\tC361.125,330.359,346.812,336,328.422,336c-15.172,0-28.547-4.734-40.172-14.203c-11.594-9.484-17.375-24.859-17.375-46.219\r\n\t\t\t\tc0-19.969,5.219-35.328,15.719-46c10.453-10.656,24.047-16.016,40.766-16.016C337.281,213.562,346.219,215.422,354.156,218.984z\r\n\t\t\t\t M309.562,245.062c-4.219,4.422-6.844,10.359-7.938,17.906H353c-0.547-8.031-3.203-14.141-7.969-18.266\r\n\t\t\t\tc-4.734-4.141-10.625-6.219-17.656-6.219C319.719,238.484,313.766,240.703,309.562,245.062z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M354.156,218.984c7.969,3.625,14.547,9.297,19.75,17.078c4.641,6.906,7.688,14.844,9.094,23.891\r\n\t\t\t\tc0.781,5.281,1.109,12.891,0.969,22.859h-83.094c0.469,11.625,4.469,19.719,11.969,24.391c4.531,2.891,10.016,4.328,16.406,4.328\r\n\t\t\t\tc6.797,0,12.328-1.766,16.547-5.297c2.344-1.906,4.375-4.516,6.172-7.938h30.438c-0.797,6.812-4.5,13.797-11.062,20.891\r\n\t\t\t\tC361.125,330.359,346.812,336,328.422,336c-15.172,0-28.547-4.734-40.172-14.203c-11.594-9.484-17.375-24.859-17.375-46.219\r\n\t\t\t\tc0-19.969,5.219-35.328,15.719-46c10.453-10.656,24.047-16.016,40.766-16.016C337.281,213.562,346.219,215.422,354.156,218.984z\r\n\t\t\t\t M309.562,245.062c-4.219,4.422-6.844,10.359-7.938,17.906H353c-0.547-8.031-3.203-14.141-7.969-18.266\r\n\t\t\t\tc-4.734-4.141-10.625-6.219-17.656-6.219C319.719,238.484,313.766,240.703,309.562,245.062z" + }, + "children": [] + }] + }] + }] + }, { + "name": "rect", + "attribs": { + "x": "288", + "y": "192", + "width": "80", + "height": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "288", + "y": "192", + "width": "80", + "height": "16" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.socialBehance = socialBehance; \ No newline at end of file diff --git a/dist/metrize/socialBlogger.js b/dist/metrize/socialBlogger.js new file mode 100644 index 000000000..f47edec42 --- /dev/null +++ b/dist/metrize/socialBlogger.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialBlogger = void 0; +var socialBlogger = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M365.953,224.344h-9.734l0,0c0,0-1.734,0-2.016,0c-15.969,0-18.734-14.188-18.734-14.188l0.375,0.266\r\n\tc-1.875-45.797-36.672-82.156-84.219-82.453v0.062h-38.562h0.562c-47.391,0.297-85.625,38.062-85.625,85.5c0,0.188,0-0.172,0-0.172\r\n\tl0,0v85.344l0,0c0,47.406,38.031,85.016,85.594,85.297v0.031h85.578v-0.062C341.969,383.094,384,346.109,384,298.703l0,0v-57.516\r\n\tC384,232.094,375.094,224.344,365.953,224.344z M208.812,191.625c0.125,0,0.031,0.016,0.031,0.016l0,0l47.531,0.016v-0.016\r\n\tc9.5,0.203,15.562,8.859,15.562,17.234s-6.062,15.469-15.562,15.469l0,0h-47.531c0,0-0.469,0-0.594,0\r\n\tc-8.531,0-17.188-7.219-17.188-15.719S200.312,191.625,208.812,191.625z M296.656,320.656L296.656,320.656h-87.812v-0.5\r\n\tc0,0-0.469,0-0.594,0c-8.531,0-17.047-8.188-17.047-16.703c0-8.5,8.484-15.25,17.016-15.25c0.125,0,0.469,0,0.469,0h-0.031h89h-0.25\r\n\tc9.531,0,14.562,7.594,14.562,15.984C311.969,312.562,306.172,320.656,296.656,320.656z" + }, + "children": [] + }] +}; +exports.socialBlogger = socialBlogger; \ No newline at end of file diff --git a/dist/metrize/socialDeviantart.js b/dist/metrize/socialDeviantart.js new file mode 100644 index 000000000..d5f3df650 --- /dev/null +++ b/dist/metrize/socialDeviantart.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialDeviantart = void 0; +var socialDeviantart = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M220.75,223.578c57.953-18.891,106.375,19.672,106.375,19.672l-39.906,12.188l-11.5-24.188\r\n\tc-10.812-2.219-23.094-2.938-36.203-0.438l27.141,62.469L384,255c0,0-42.562-75.617-169.484-51.172\r\n\tc-0.734,0.141-1.406,0.344-2.141,0.453L200.062,176l-36.531,4.703l14.906,34.453C101.406,251.125,135.531,336,135.531,336\r\n\tl117.516-38.281L220.75,223.578z M167.312,292.062c0,0-11.312-28.312,21.625-52.562l17.531,40.594L167.312,292.062z" + }, + "children": [] + }] +}; +exports.socialDeviantart = socialDeviantart; \ No newline at end of file diff --git a/dist/metrize/socialDigg.js b/dist/metrize/socialDigg.js new file mode 100644 index 000000000..ecb6f7af8 --- /dev/null +++ b/dist/metrize/socialDigg.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialDigg = void 0; +var socialDigg = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M284.643,227.531h42.422c7.844,0,14.234-6.375,14.234-14.234v-42.719\r\n\t\t\tc0-7.859-6.391-14.234-14.234-14.234h-42.422c-7.875,0-14.25,6.375-14.25,14.234v42.719\r\n\t\t\tC270.393,221.156,276.768,227.531,284.643,227.531z M171.908,183.625c-45.094,0-43.906,27.891-43.906,27.891V256\r\n\t\t\tc0,11.875,14.25,14.25,14.25,14.25h14.219v43.719c-16.25,1.969-27.562,10.469-27.562,20.656c0,11.625,22.156,21.031,41.812,21.031\r\n\t\t\ts41.844-8.5,41.844-20.156c0-10.031-11.625-19.344-27.516-21.438l-0.078-43.812h13.625c13.656,0,14.844-14.25,14.844-14.25\r\n\t\t\tv-45.078C213.439,183.625,171.908,183.625,171.908,183.625z M383.127,212.688c0-14.219-14.25-14.219-14.25-14.219h-13.062v37.062\r\n\t\t\tc0,8.906-7.109,6.531-7.109,6.531h-87.5c-6.547,0-6.547-6.531-6.547-6.531l0.312-35.875l-13.734-1.312\r\n\t\t\tc-15.141,0-13.547,14.656-13.547,14.656v28.781c0,0-2.125,14.219,12.125,14.219h16.328v86.031\r\n\t\t\tc0,14.844,13.657,13.062,13.657,13.062h15.422c14.25,0,13.656-13.656,13.656-13.656v-42.719c0-7.688,7.109-9.781,7.109-9.781\r\n\t\t\tc4.156,0,6.531,9.188,6.531,9.188v42.75c0,14.781,19.578,14.781,19.578,14.781h7.422c14.234,0,15.391-13.625,15.391-13.625\r\n\t\t\tL355.814,256h12.469c14.219,0,15.719-15.422,15.719-15.422L383.127,212.688z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M284.643,227.531h42.422c7.844,0,14.234-6.375,14.234-14.234v-42.719\r\n\t\t\tc0-7.859-6.391-14.234-14.234-14.234h-42.422c-7.875,0-14.25,6.375-14.25,14.234v42.719\r\n\t\t\tC270.393,221.156,276.768,227.531,284.643,227.531z M171.908,183.625c-45.094,0-43.906,27.891-43.906,27.891V256\r\n\t\t\tc0,11.875,14.25,14.25,14.25,14.25h14.219v43.719c-16.25,1.969-27.562,10.469-27.562,20.656c0,11.625,22.156,21.031,41.812,21.031\r\n\t\t\ts41.844-8.5,41.844-20.156c0-10.031-11.625-19.344-27.516-21.438l-0.078-43.812h13.625c13.656,0,14.844-14.25,14.844-14.25\r\n\t\t\tv-45.078C213.439,183.625,171.908,183.625,171.908,183.625z M383.127,212.688c0-14.219-14.25-14.219-14.25-14.219h-13.062v37.062\r\n\t\t\tc0,8.906-7.109,6.531-7.109,6.531h-87.5c-6.547,0-6.547-6.531-6.547-6.531l0.312-35.875l-13.734-1.312\r\n\t\t\tc-15.141,0-13.547,14.656-13.547,14.656v28.781c0,0-2.125,14.219,12.125,14.219h16.328v86.031\r\n\t\t\tc0,14.844,13.657,13.062,13.657,13.062h15.422c14.25,0,13.656-13.656,13.656-13.656v-42.719c0-7.688,7.109-9.781,7.109-9.781\r\n\t\t\tc4.156,0,6.531,9.188,6.531,9.188v42.75c0,14.781,19.578,14.781,19.578,14.781h7.422c14.234,0,15.391-13.625,15.391-13.625\r\n\t\t\tL355.814,256h12.469c14.219,0,15.719-15.422,15.719-15.422L383.127,212.688z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.socialDigg = socialDigg; \ No newline at end of file diff --git a/dist/metrize/socialDribbble.js b/dist/metrize/socialDribbble.js new file mode 100644 index 000000000..b02ab5827 --- /dev/null +++ b/dist/metrize/socialDribbble.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialDribbble = void 0; +var socialDribbble = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M256,128c-70.688,0.016-128,57.305-128,128c0,70.688,57.312,128,128,128s128-57.312,128-128\r\n\tC384,185.305,326.688,128.016,256,128z M334.422,194.367c12.484,15.852,20.312,35.492,21.297,56.945\r\n\tc-14.453-3.062-28.109-4.562-40.828-4.562l0,0h-0.094c-10.234,0-19.859,0.922-28.922,2.531c-2.219-5.406-4.438-10.594-6.688-15.562\r\n\tC299.375,224.875,318.75,212.281,334.422,194.367z M256,156.141c23.562,0,45.172,8.227,62.281,21.945\r\n\tc-13.094,15.672-30.391,27.008-49.047,35.039c-13.125-25.367-25.797-43.523-34.469-54.609\r\n\tC241.625,157.016,248.703,156.141,256,156.141z M211.875,166.539c6.938,8.188,20.828,26.203,35.641,54.336\r\n\tc-30.141,8.969-60.484,11.062-78.859,11.062c-0.531,0-1.062,0-1.562,0l0,0c-3.094,0-5.75-0.062-7.984-0.125\r\n\tC166.281,203.156,185.906,179.398,211.875,166.539z M156.141,256c0-0.469,0.016-0.938,0.047-1.438\r\n\tc2.844,0.109,6.5,0.203,10.906,0.203l0,0c20.094-0.141,55.156-1.812,90.656-13.031c1.938,4.234,3.844,8.641,5.75,13.234\r\n\tc-23.719,7.922-42.406,20.562-56.219,33.156C193.969,300.25,185,312.234,179.75,320.234C165.031,302.844,156.141,280.5,156.141,256z\r\n\t M256,355.859c-22.234,0-42.719-7.344-59.344-19.688c3.562-5.812,11.125-16.953,23.188-28.5\r\n\tc12.391-11.891,29.516-24.141,51.891-31.422c7.594,21.312,14.469,45.656,19.719,73.078C280.406,353.531,268.484,355.859,256,355.859\r\n\tz M312.516,338.141c-5.062-24.797-11.438-47.141-18.422-67.109c6.484-0.922,13.297-1.453,20.484-1.453h0.25h0.016h0.016\r\n\tc11.906,0,24.984,1.484,39.188,4.703C349.141,300.688,333.844,323.422,312.516,338.141z" + }, + "children": [] + }] +}; +exports.socialDribbble = socialDribbble; \ No newline at end of file diff --git a/dist/metrize/socialEmail.js b/dist/metrize/socialEmail.js new file mode 100644 index 000000000..6f77c038e --- /dev/null +++ b/dist/metrize/socialEmail.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialEmail = void 0; +var socialEmail = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M315.844,198.359c0.172-1.109,0.25-2.141,0.25-3.094c0-8.797-5.5-13.172-16.5-13.172c-5.281,0-8.844,0.906-10.688,2.688\r\n\t\tc-1.875,1.812-3.156,5.391-3.906,10.75c-4.219-5.938-8.469-9.938-12.75-12.016c-3.938-1.891-9.578-2.828-16.875-2.828\r\n\t\tc-18.797,0-35.109,9.562-48.875,28.672c-12.688,17.578-19.016,36.359-19.016,56.328c0,15.594,4.109,29.281,12.344,41.094\r\n\t\tc9.125,13.016,21.062,19.516,35.766,19.516c12.594,0,24.688-4.516,36.266-13.547c5.219,9.031,14.141,13.547,26.734,13.547\r\n\t\tc23.844,0,44.266-10.062,61.219-30.203C375.938,276.938,384,254.906,384,230.031c0-29.75-12.516-54.562-37.547-74.422\r\n\t\tC323.266,137.219,296.75,128,266.844,128c-38.906,0-71.562,12.297-98.016,36.906C141.609,190.281,128,222.656,128,262.062\r\n\t\tc0,40.266,13.953,71.188,41.828,92.781C194.859,374.297,227.688,384,268.344,384c17.312,0,34.188-2.703,50.656-8.141\r\n\t\tc18.062-5.922,32.922-14.359,44.594-25.297c3.766-3.609,7.391-8,10.828-13.156c4.297-6.297,6.422-11.375,6.422-15.234\r\n\t\tc0-2.922-1.016-5.531-3.078-7.828c-2.047-2.281-4.516-3.422-7.359-3.422c-5.391,0-9.922,1.906-13.625,5.672\r\n\t\tc-6.109,6.562-10.656,11.562-13.594,15c-20,17.469-44.844,26.203-74.594,26.203c-31.906,0-57.438-7.828-76.578-23.484\r\n\t\tc-20.922-17.109-31.375-41.625-31.375-73.531c0-30.969,9.938-56.844,29.859-77.625C210.406,162.391,235.484,152,265.703,152\r\n\t\tc23.781,0,43.547,6.75,59.328,20.281c16.906,14.344,25.328,33.438,25.328,57.25c0,12.469-2.125,24.094-6.422,34.828\r\n\t\tc-4.781,12.047-11.719,21.328-20.781,27.859c-6.812,4.891-12.141,7.344-16,7.344c-4.203,0-6.297-1.969-6.297-5.922\r\n\t\tc0-1.641,1.078-9.203,3.281-22.719L315.844,198.359z M267.344,269.578c-7.734,21.453-15.969,32.188-24.688,32.188\r\n\t\tc-13.031,0-19.547-8.312-19.547-24.953c0-12.922,3.734-27.469,11.234-43.688c8.734-19.141,18.672-28.703,29.844-28.703\r\n\t\tc4.625,0,8.062,2.5,10.328,7.484c1.844,3.812,2.766,8.344,2.766,13.594C277.281,236.719,273.984,251.406,267.344,269.578z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M315.844,198.359c0.172-1.109,0.25-2.141,0.25-3.094c0-8.797-5.5-13.172-16.5-13.172c-5.281,0-8.844,0.906-10.688,2.688\r\n\t\tc-1.875,1.812-3.156,5.391-3.906,10.75c-4.219-5.938-8.469-9.938-12.75-12.016c-3.938-1.891-9.578-2.828-16.875-2.828\r\n\t\tc-18.797,0-35.109,9.562-48.875,28.672c-12.688,17.578-19.016,36.359-19.016,56.328c0,15.594,4.109,29.281,12.344,41.094\r\n\t\tc9.125,13.016,21.062,19.516,35.766,19.516c12.594,0,24.688-4.516,36.266-13.547c5.219,9.031,14.141,13.547,26.734,13.547\r\n\t\tc23.844,0,44.266-10.062,61.219-30.203C375.938,276.938,384,254.906,384,230.031c0-29.75-12.516-54.562-37.547-74.422\r\n\t\tC323.266,137.219,296.75,128,266.844,128c-38.906,0-71.562,12.297-98.016,36.906C141.609,190.281,128,222.656,128,262.062\r\n\t\tc0,40.266,13.953,71.188,41.828,92.781C194.859,374.297,227.688,384,268.344,384c17.312,0,34.188-2.703,50.656-8.141\r\n\t\tc18.062-5.922,32.922-14.359,44.594-25.297c3.766-3.609,7.391-8,10.828-13.156c4.297-6.297,6.422-11.375,6.422-15.234\r\n\t\tc0-2.922-1.016-5.531-3.078-7.828c-2.047-2.281-4.516-3.422-7.359-3.422c-5.391,0-9.922,1.906-13.625,5.672\r\n\t\tc-6.109,6.562-10.656,11.562-13.594,15c-20,17.469-44.844,26.203-74.594,26.203c-31.906,0-57.438-7.828-76.578-23.484\r\n\t\tc-20.922-17.109-31.375-41.625-31.375-73.531c0-30.969,9.938-56.844,29.859-77.625C210.406,162.391,235.484,152,265.703,152\r\n\t\tc23.781,0,43.547,6.75,59.328,20.281c16.906,14.344,25.328,33.438,25.328,57.25c0,12.469-2.125,24.094-6.422,34.828\r\n\t\tc-4.781,12.047-11.719,21.328-20.781,27.859c-6.812,4.891-12.141,7.344-16,7.344c-4.203,0-6.297-1.969-6.297-5.922\r\n\t\tc0-1.641,1.078-9.203,3.281-22.719L315.844,198.359z M267.344,269.578c-7.734,21.453-15.969,32.188-24.688,32.188\r\n\t\tc-13.031,0-19.547-8.312-19.547-24.953c0-12.922,3.734-27.469,11.234-43.688c8.734-19.141,18.672-28.703,29.844-28.703\r\n\t\tc4.625,0,8.062,2.5,10.328,7.484c1.844,3.812,2.766,8.344,2.766,13.594C277.281,236.719,273.984,251.406,267.344,269.578z" + }, + "children": [] + }] + }] + }] +}; +exports.socialEmail = socialEmail; \ No newline at end of file diff --git a/dist/metrize/socialEnvato.js b/dist/metrize/socialEnvato.js new file mode 100644 index 000000000..16eec3101 --- /dev/null +++ b/dist/metrize/socialEnvato.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialEnvato = void 0; +var socialEnvato = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M166.531,194.172c-28.344,36.844-29.438,86.891-6.125,124.359c20.969-55.344,47.359-117.625,79.844-173.25\r\n\t\tC209.719,158.562,181.25,175.047,166.531,194.172z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M166.531,194.172c-28.344,36.844-29.438,86.891-6.125,124.359c20.969-55.344,47.359-117.625,79.844-173.25\r\n\t\tC209.719,158.562,181.25,175.047,166.531,194.172z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M367.781,145.406c-69.641,49.047-129.109,125.984-176.844,204.953c-2.141-1.484,35,17.641,57.25,17.641\r\n\t\tc30.75,0,61.219-13.922,81.797-40.641C371.094,273.859,368.219,128.188,367.781,145.406z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M367.781,145.406c-69.641,49.047-129.109,125.984-176.844,204.953c-2.141-1.484,35,17.641,57.25,17.641\r\n\t\tc30.75,0,61.219-13.922,81.797-40.641C371.094,273.859,368.219,128.188,367.781,145.406z" + }, + "children": [] + }] + }] + }] +}; +exports.socialEnvato = socialEnvato; \ No newline at end of file diff --git a/dist/metrize/socialEvernote.js b/dist/metrize/socialEvernote.js new file mode 100644 index 000000000..5d5d70818 --- /dev/null +++ b/dist/metrize/socialEvernote.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialEvernote = void 0; +var socialEvernote = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M208.078,192.031c-0.062-0.25,0-16.016,0-16.016V128l-63.891,64.031h47.922\r\n\t\t\tC192.109,192.031,208.156,192.25,208.078,192.031z M353.438,160.125c-4.812-7.984-29.953-13.375-43-13.375\r\n\t\t\tc-13.031,0-33.625,0-33.625,0s-11.234-15.734-36.516-18.219c-20.406-2-16.234,6.141-16.234,15.469v64.031h-63.906\r\n\t\t\tc0,0-16.156-4.297-16.156,6.844c0,20.672,2.75,87.969,47.375,94.641c52.781,7.906,60.734-5.109,60.734-8\r\n\t\t\tc0-11.984,2.047-26,2.047-26s20.469,24.078,43.781,23.203c22.891-0.875,27.703,14.188,27.703,27.484c0,13.312,0,24.703,0,24.703\r\n\t\t\ts-0.094,9.078-13.828,9.078c-13.719,0-25.391,0-25.391,0s-9.609-1.016-9.609-11.016c0-9.984,6.047-12.656,11.547-12.656\r\n\t\t\tc5.484,0,9.609,0.672,9.609,0.672v-18c0,0-43.125-6.016-43.125,26.672C254.844,378.297,272,384,290.531,384s30.203,0,30.203,0\r\n\t\t\tS368,383.516,368,279.531S358.234,168.125,353.438,160.125z M298.438,250.219c0,0,3.422-13.344,13.719-13.344\r\n\t\t\ts20.188,20.969,20.188,20.969S310.781,250.219,298.438,250.219z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M208.078,192.031c-0.062-0.25,0-16.016,0-16.016V128l-63.891,64.031h47.922\r\n\t\t\tC192.109,192.031,208.156,192.25,208.078,192.031z M353.438,160.125c-4.812-7.984-29.953-13.375-43-13.375\r\n\t\t\tc-13.031,0-33.625,0-33.625,0s-11.234-15.734-36.516-18.219c-20.406-2-16.234,6.141-16.234,15.469v64.031h-63.906\r\n\t\t\tc0,0-16.156-4.297-16.156,6.844c0,20.672,2.75,87.969,47.375,94.641c52.781,7.906,60.734-5.109,60.734-8\r\n\t\t\tc0-11.984,2.047-26,2.047-26s20.469,24.078,43.781,23.203c22.891-0.875,27.703,14.188,27.703,27.484c0,13.312,0,24.703,0,24.703\r\n\t\t\ts-0.094,9.078-13.828,9.078c-13.719,0-25.391,0-25.391,0s-9.609-1.016-9.609-11.016c0-9.984,6.047-12.656,11.547-12.656\r\n\t\t\tc5.484,0,9.609,0.672,9.609,0.672v-18c0,0-43.125-6.016-43.125,26.672C254.844,378.297,272,384,290.531,384s30.203,0,30.203,0\r\n\t\t\tS368,383.516,368,279.531S358.234,168.125,353.438,160.125z M298.438,250.219c0,0,3.422-13.344,13.719-13.344\r\n\t\t\ts20.188,20.969,20.188,20.969S310.781,250.219,298.438,250.219z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.socialEvernote = socialEvernote; \ No newline at end of file diff --git a/dist/metrize/socialFacebook.js b/dist/metrize/socialFacebook.js new file mode 100644 index 000000000..758b57030 --- /dev/null +++ b/dist/metrize/socialFacebook.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialFacebook = void 0; +var socialFacebook = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M316.75,216.812h-44.531v-32.5c0-9.969,10.312-12.281,15.125-12.281\r\n\tc4.781,0,28.766,0,28.766,0v-43.859L283.141,128c-44.984,0-55.25,32.703-55.25,53.672v35.141H195.25V262h32.641\r\n\tc0,58.016,0,122,0,122h44.328c0,0,0-64.641,0-122h37.656L316.75,216.812z" + }, + "children": [] + }] +}; +exports.socialFacebook = socialFacebook; \ No newline at end of file diff --git a/dist/metrize/socialFlickr.js b/dist/metrize/socialFlickr.js new file mode 100644 index 000000000..762016c91 --- /dev/null +++ b/dist/metrize/socialFlickr.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialFlickr = void 0; +var socialFlickr = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\t\tS397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\t\tS397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M320,208c-26.516,0-48,21.484-48,48c0,26.484,21.484,48,48,48\r\n\t\tc26.469,0,48-21.516,48-48C368,229.484,346.469,208,320,208z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M320,208c-26.516,0-48,21.484-48,48c0,26.484,21.484,48,48,48\r\n\t\tc26.469,0,48-21.516,48-48C368,229.484,346.469,208,320,208z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M192,208c-26.516,0-48,21.484-48,48c0,26.484,21.484,48,48,48\r\n\t\tc26.484,0,48-21.516,48-48C240,229.484,218.484,208,192,208z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M192,208c-26.516,0-48,21.484-48,48c0,26.484,21.484,48,48,48\r\n\t\tc26.484,0,48-21.516,48-48C240,229.484,218.484,208,192,208z" + }, + "children": [] + }] + }] + }] +}; +exports.socialFlickr = socialFlickr; \ No newline at end of file diff --git a/dist/metrize/socialForrst.js b/dist/metrize/socialForrst.js new file mode 100644 index 000000000..77a66347c --- /dev/null +++ b/dist/metrize/socialForrst.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialForrst = void 0; +var socialForrst = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M367.531,375.812L260.578,131.5c-0.891-2.125-2.891-3.5-5.109-3.5l0,0\r\n\tc-2.219,0-4.219,1.375-5.109,3.5L144.469,375.797c-0.75,1.828-0.594,3.922,0.438,5.578c1.031,1.625,2.781,2.625,4.656,2.625H240v-48\r\n\tl-32.016-16v-16L240,320v-48h32v32l32.016-16v16L272,320v16l48.016-32v16L272,352v32h90.438c1.875,0,3.625-0.969,4.656-2.625\r\n\tS368.281,377.625,367.531,375.812z" + }, + "children": [] + }] +}; +exports.socialForrst = socialForrst; \ No newline at end of file diff --git a/dist/metrize/socialGithub.js b/dist/metrize/socialGithub.js new file mode 100644 index 000000000..ba1a2f6f8 --- /dev/null +++ b/dist/metrize/socialGithub.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialGithub = void 0; +var socialGithub = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M336.005,128.769c-26.266,14.312-53.359,2.234-72.891,0\r\n\tc-86.234-9.891-113.641,77.734-50.812,112.859c-16.172,7.312-15.109,44.453,2.203,49.734c-40.812,4.078-48.391,54.188-26.5,74.625\r\n\tc26.625,24.844,108.531,23.188,132.547,0c16.766-16.219,19.109-49.625,4.422-65.031c-13.391-14.078-80.562-16.203-79.531-38.266\r\n\tc0.719-15.438,25.016-13,39.766-19.141c27.734-11.547,44.047-46.109,33.141-72.703c6.188-1,11.469-2.797,17.656-3.812\r\n\tC336.005,154.284,336.005,141.534,336.005,128.769z M229.974,209.128c-32.328-61.344,74.344-56.953,41.984,0\r\n\tC261.349,215.972,240.458,216.659,229.974,209.128z M289.63,329.644c2.859,27.5-61.094,28.719-68.5,9.562\r\n\tc-6.219-16.141,1.531-20.719,19.891-24.875C261.817,309.612,287.708,311.237,289.63,329.644z" + }, + "children": [] + }] +}; +exports.socialGithub = socialGithub; \ No newline at end of file diff --git a/dist/metrize/socialGooglePlus.js b/dist/metrize/socialGooglePlus.js new file mode 100644 index 000000000..a6f3ad4c3 --- /dev/null +++ b/dist/metrize/socialGooglePlus.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialGooglePlus = void 0; +var socialGooglePlus = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M278.062,135.945c8.719-4.891,12.531-8.062,12.531-8.062h-83.281c-16.688,0-63.031,18.953-63.031,63.203\r\n\t\t\tc0,44.258,48.062,53.758,65.5,53.039c-9.781,11.938-1.406,22.844,3.844,28.422c5.219,5.625,4.156,7.375-2.094,7.375\r\n\t\t\tc-6.281,0-83.625,0.844-83.625,56.219s102.781,59.375,136.562,29.531s26.469-71,0.344-89.594\r\n\t\t\tc-26.125-18.609-35.875-27.391-19.156-42.141s29.969-26.688,29.969-54.086c0-27.406-22.656-41.422-22.656-41.422\r\n\t\t\tS269.344,140.867,278.062,135.945z M265.156,333.328c0,23.891-20.281,35.469-54.719,35.469c-34.469,0-52.938-17.203-52.938-42.844\r\n\t\t\tc0-25.656,25.094-38.297,72.125-38.297C242.375,297.484,265.156,309.422,265.156,333.328z M215.344,233.219\r\n\t\t\tc-41.469,0-60.281-96.898-11.5-96.898C241.812,134.898,270.375,233.219,215.344,233.219z M352.75,160.039v-31.516h-16.281v31.516\r\n\t\t\th-31.875v16.359h31.875v31.57h16.281v-31.57h31.344v-16.359H352.75z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M278.062,135.945c8.719-4.891,12.531-8.062,12.531-8.062h-83.281c-16.688,0-63.031,18.953-63.031,63.203\r\n\t\t\tc0,44.258,48.062,53.758,65.5,53.039c-9.781,11.938-1.406,22.844,3.844,28.422c5.219,5.625,4.156,7.375-2.094,7.375\r\n\t\t\tc-6.281,0-83.625,0.844-83.625,56.219s102.781,59.375,136.562,29.531s26.469-71,0.344-89.594\r\n\t\t\tc-26.125-18.609-35.875-27.391-19.156-42.141s29.969-26.688,29.969-54.086c0-27.406-22.656-41.422-22.656-41.422\r\n\t\t\tS269.344,140.867,278.062,135.945z M265.156,333.328c0,23.891-20.281,35.469-54.719,35.469c-34.469,0-52.938-17.203-52.938-42.844\r\n\t\t\tc0-25.656,25.094-38.297,72.125-38.297C242.375,297.484,265.156,309.422,265.156,333.328z M215.344,233.219\r\n\t\t\tc-41.469,0-60.281-96.898-11.5-96.898C241.812,134.898,270.375,233.219,215.344,233.219z M352.75,160.039v-31.516h-16.281v31.516\r\n\t\t\th-31.875v16.359h31.875v31.57h16.281v-31.57h31.344v-16.359H352.75z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.socialGooglePlus = socialGooglePlus; \ No newline at end of file diff --git a/dist/metrize/socialGrooveshark.js b/dist/metrize/socialGrooveshark.js new file mode 100644 index 000000000..a862449d7 --- /dev/null +++ b/dist/metrize/socialGrooveshark.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialGrooveshark = void 0; +var socialGrooveshark = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\t\tS397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\t\tS397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M240.625,128.875c-35.812,3.812-62.344,21.438-80.188,42.109\r\n\t\tc-17.688,20.453-33.062,50.141-32.406,87.234c0.656,36.781,15.5,64.641,34.406,85.219c23,25.078,59.156,43.672,105.25,40.125\r\n\t\tc65.859-5.094,117.734-59.703,116.281-131.359c-0.688-34.078-18.781-66.484-35.078-84.234\r\n\t\tC324.406,141.297,287.891,123.812,240.625,128.875z M307.797,261.219C280.656,226.625,260.094,195,210.562,181\r\n\t\tc1.125,28.75,4.344,60.812-13.031,81.234c-7.812,9.141-23.406,19.312-35.094,14.031c-11.844-5.359-8.5-28.672-5-44.109\r\n\t\tc9.531-42.297,44.594-75.047,91.219-78.219c41.547-2.844,77.359,21.125,93.219,47.125c8.156,13.375,15.578,36.25,15.047,55.156\r\n\t\tC355.75,297.25,324.844,282.984,307.797,261.219z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M240.625,128.875c-35.812,3.812-62.344,21.438-80.188,42.109\r\n\t\tc-17.688,20.453-33.062,50.141-32.406,87.234c0.656,36.781,15.5,64.641,34.406,85.219c23,25.078,59.156,43.672,105.25,40.125\r\n\t\tc65.859-5.094,117.734-59.703,116.281-131.359c-0.688-34.078-18.781-66.484-35.078-84.234\r\n\t\tC324.406,141.297,287.891,123.812,240.625,128.875z M307.797,261.219C280.656,226.625,260.094,195,210.562,181\r\n\t\tc1.125,28.75,4.344,60.812-13.031,81.234c-7.812,9.141-23.406,19.312-35.094,14.031c-11.844-5.359-8.5-28.672-5-44.109\r\n\t\tc9.531-42.297,44.594-75.047,91.219-78.219c41.547-2.844,77.359,21.125,93.219,47.125c8.156,13.375,15.578,36.25,15.047,55.156\r\n\t\tC355.75,297.25,324.844,282.984,307.797,261.219z" + }, + "children": [] + }] + }] + }] +}; +exports.socialGrooveshark = socialGrooveshark; \ No newline at end of file diff --git a/dist/metrize/socialLastFm.js b/dist/metrize/socialLastFm.js new file mode 100644 index 000000000..9325e142d --- /dev/null +++ b/dist/metrize/socialLastFm.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialLastFm = void 0; +var socialLastFm = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\t\tS397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\t\tS397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M344.5,240.688c-2.234-0.812-4.391-1.562-6.5-2.297\r\n\t\tc-15.922-5.547-25.547-8.891-25.547-22.641c0-11.141,7.781-19.219,18.453-19.219c8.219,0,14.312,3.781,19.781,12.266\r\n\t\tc0.516,0.797,1.5,1.078,2.281,0.609l16.078-9.094c0.438-0.234,0.766-0.688,0.906-1.188c0.141-0.531,0.094-1.078-0.156-1.562\r\n\t\tc-8.625-16.938-21.047-25.188-37.969-25.188c-25.797,0-42.453,17.281-42.453,44.016c0,27.328,16.109,38.406,45.844,49.234\r\n\t\tc17.219,6.359,24.844,9.75,24.844,23.328c0,15.25-12.422,26.234-29.391,25.594c-17.766-0.672-23.156-11.125-29.922-28.203\r\n\t\tc-11.438-28.938-24.484-62.719-24.609-63.062c-13.078-33.422-39.016-52.594-71.141-52.594c-42.469,0-77,38.281-77,85.328\r\n\t\tc0,47.031,34.531,85.297,77,85.297c23.156,0,44.859-11.375,59.547-31.203c0.422-0.594,0.516-1.375,0.25-2.062l-9.703-24.812\r\n\t\tc-0.281-0.688-0.891-1.141-1.562-1.172c-0.719-0.031-1.344,0.391-1.656,1.062c-9.172,19.391-27.125,31.438-46.875,31.438\r\n\t\tc-29.141,0-52.844-26.25-52.844-58.547s23.703-58.547,52.844-58.547c21.188,0,40.625,13.938,48.359,34.75l24.016,60.656l2.75,6.797\r\n\t\tc10.875,28.016,26.797,40.578,51.781,40.688c29.703,0,52.094-21.812,52.094-50.719C384,260.609,369.516,249.719,344.5,240.688z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M344.5,240.688c-2.234-0.812-4.391-1.562-6.5-2.297\r\n\t\tc-15.922-5.547-25.547-8.891-25.547-22.641c0-11.141,7.781-19.219,18.453-19.219c8.219,0,14.312,3.781,19.781,12.266\r\n\t\tc0.516,0.797,1.5,1.078,2.281,0.609l16.078-9.094c0.438-0.234,0.766-0.688,0.906-1.188c0.141-0.531,0.094-1.078-0.156-1.562\r\n\t\tc-8.625-16.938-21.047-25.188-37.969-25.188c-25.797,0-42.453,17.281-42.453,44.016c0,27.328,16.109,38.406,45.844,49.234\r\n\t\tc17.219,6.359,24.844,9.75,24.844,23.328c0,15.25-12.422,26.234-29.391,25.594c-17.766-0.672-23.156-11.125-29.922-28.203\r\n\t\tc-11.438-28.938-24.484-62.719-24.609-63.062c-13.078-33.422-39.016-52.594-71.141-52.594c-42.469,0-77,38.281-77,85.328\r\n\t\tc0,47.031,34.531,85.297,77,85.297c23.156,0,44.859-11.375,59.547-31.203c0.422-0.594,0.516-1.375,0.25-2.062l-9.703-24.812\r\n\t\tc-0.281-0.688-0.891-1.141-1.562-1.172c-0.719-0.031-1.344,0.391-1.656,1.062c-9.172,19.391-27.125,31.438-46.875,31.438\r\n\t\tc-29.141,0-52.844-26.25-52.844-58.547s23.703-58.547,52.844-58.547c21.188,0,40.625,13.938,48.359,34.75l24.016,60.656l2.75,6.797\r\n\t\tc10.875,28.016,26.797,40.578,51.781,40.688c29.703,0,52.094-21.812,52.094-50.719C384,260.609,369.516,249.719,344.5,240.688z" + }, + "children": [] + }] + }] + }] +}; +exports.socialLastFm = socialLastFm; \ No newline at end of file diff --git a/dist/metrize/socialLinkedin.js b/dist/metrize/socialLinkedin.js new file mode 100644 index 000000000..c18b82746 --- /dev/null +++ b/dist/metrize/socialLinkedin.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialLinkedin = void 0; +var socialLinkedin = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M128.094,383.891h48v-192h-48V383.891z M320.094,191.891\r\n\t\t\tc-41.094,0.688-61.312,30.641-64,32v-32h-48v192h48v-112c0-4.109,10.125-37,48-32c20.344,1.328,31.312,28.234,32,32v112\r\n\t\t\tl47.812,0.219V251.188C382.219,232,372.625,192.578,320.094,191.891z M152.094,127.891c-13.25,0-24,10.734-24,24s10.75,24,24,24\r\n\t\t\ts24-10.734,24-24S165.344,127.891,152.094,127.891z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M128.094,383.891h48v-192h-48V383.891z M320.094,191.891\r\n\t\t\tc-41.094,0.688-61.312,30.641-64,32v-32h-48v192h48v-112c0-4.109,10.125-37,48-32c20.344,1.328,31.312,28.234,32,32v112\r\n\t\t\tl47.812,0.219V251.188C382.219,232,372.625,192.578,320.094,191.891z M152.094,127.891c-13.25,0-24,10.734-24,24s10.75,24,24,24\r\n\t\t\ts24-10.734,24-24S165.344,127.891,152.094,127.891z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.socialLinkedin = socialLinkedin; \ No newline at end of file diff --git a/dist/metrize/socialMyspace.js b/dist/metrize/socialMyspace.js new file mode 100644 index 000000000..e29d02d93 --- /dev/null +++ b/dist/metrize/socialMyspace.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialMyspace = void 0; +var socialMyspace = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256c0,141.391,114.609,256,256,256c141.391,0,256-114.609,256-256\r\n\tC512,114.609,397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "polygon", + "attribs": { + "points": "352,256 160,256 160,224 128,224 128,288 384,288 384,224 352,224 " + }, + "children": [] + }] +}; +exports.socialMyspace = socialMyspace; \ No newline at end of file diff --git a/dist/metrize/socialPaypal.js b/dist/metrize/socialPaypal.js new file mode 100644 index 000000000..30a64eef3 --- /dev/null +++ b/dist/metrize/socialPaypal.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialPaypal = void 0; +var socialPaypal = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M212.077,284.562h48.297c46.188,0,84.781-28.469,95.125-76.891C367.202,152.891,327.905,128,294.108,128H178.983\r\n\t\tl-50.984,234.156h67.531L212.077,284.562z M236.233,175.656h33.094c16.547,0,27.594,14.25,22.734,32.016\r\n\t\tc-4.141,17.828-21.344,32.047-38.594,32.047h-31.734L236.233,175.656z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M212.077,284.562h48.297c46.188,0,84.781-28.469,95.125-76.891C367.202,152.891,327.905,128,294.108,128H178.983\r\n\t\tl-50.984,234.156h67.531L212.077,284.562z M236.233,175.656h33.094c16.547,0,27.594,14.25,22.734,32.016\r\n\t\tc-4.141,17.828-21.344,32.047-38.594,32.047h-31.734L236.233,175.656z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M370.702,172.016c5.297,11.781,7.047,26.578,3.203,44.719c-10.359,48.422-48.953,76.891-95.141,76.891h-48.281\r\n\t\tl-16.547,77.594h-56.75L154.39,384h67.547l16.547-77.562h48.281c46.188,0,84.781-28.469,95.141-76.906\r\n\t\tC387.343,204.047,381.702,185.094,370.702,172.016z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M370.702,172.016c5.297,11.781,7.047,26.578,3.203,44.719c-10.359,48.422-48.953,76.891-95.141,76.891h-48.281\r\n\t\tl-16.547,77.594h-56.75L154.39,384h67.547l16.547-77.562h48.281c46.188,0,84.781-28.469,95.141-76.906\r\n\t\tC387.343,204.047,381.702,185.094,370.702,172.016z" + }, + "children": [] + }] + }] + }] +}; +exports.socialPaypal = socialPaypal; \ No newline at end of file diff --git a/dist/metrize/socialPhotobucket.js b/dist/metrize/socialPhotobucket.js new file mode 100644 index 000000000..0fac7db4b --- /dev/null +++ b/dist/metrize/socialPhotobucket.js @@ -0,0 +1,55 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialPhotobucket = void 0; +var socialPhotobucket = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M356.781,187.414h-56c-11.641-6.344-30.469-11.406-44.781-11.406c-14.281,0-33.125,5.062-44.781,11.406H200\r\n\t\t\t\tc-0.359-11.562-9.688-11.406-15.25-11.406h-20.375c-5.609,0-9.156,5.922-9.156,11.406c-5.609,0-11.219,3.078-11.219,8.594v119.93\r\n\t\t\t\tc0,5.562,5.609,8.625,11.219,8.625h56C222.875,330.875,241.719,336,256,336c14.312,0,33.141-5.125,44.781-11.438h56\r\n\t\t\t\tc5.641,0,11.219-3.062,11.219-8.625v-119.93C368,190.492,362.422,187.414,356.781,187.414z M155.219,313.094V198.852H200\r\n\t\t\t\tc-16.938,14.648-25.438,33.211-25.438,57.117c0,23.938,8.5,42.531,25.438,57.125H155.219z M292.594,315.938\r\n\t\t\t\tc-5.25,3.094-10.938,5.562-17,7.281c-0.312,0.062-0.672,0.156-1.047,0.281c-2.453,0.656-4.922,1.125-7.453,1.562\r\n\t\t\t\tc-0.703,0.062-1.406,0.219-2.094,0.281c-2.938,0.375-5.953,0.625-9,0.625s-6.062-0.25-9-0.625\r\n\t\t\t\tc-0.688-0.062-1.391-0.219-2.094-0.281c-2.531-0.438-5.031-0.906-7.469-1.562c-0.344-0.125-0.719-0.219-1.062-0.281\r\n\t\t\t\tc-6.031-1.719-11.719-4.188-16.969-7.281c-20.75-12.188-34.656-34.438-34.656-59.969c0-25.5,13.906-47.75,34.656-59.961\r\n\t\t\t\tc5.25-3.109,10.938-5.562,16.969-7.25c0.344-0.109,0.719-0.188,1.062-0.281c2.438-0.656,4.938-1.156,7.469-1.531\r\n\t\t\t\tc0.703-0.141,1.406-0.25,2.109-0.328c2.938-0.391,5.953-0.641,8.984-0.641s6.047,0.25,8.984,0.641\r\n\t\t\t\tc0.703,0.078,1.406,0.188,2.109,0.328c2.531,0.375,5,0.875,7.453,1.531c0.375,0.094,0.734,0.172,1.047,0.281\r\n\t\t\t\tc6.062,1.688,11.75,4.141,17,7.25c20.75,12.211,34.656,34.461,34.656,59.961C327.25,281.5,313.344,303.75,292.594,315.938z\r\n\t\t\t\t M356.781,313.094H312c16.953-14.594,25.484-33.188,25.484-57.125c0-23.906-8.531-42.469-25.484-57.117h44.781V313.094z\r\n\t\t\t\t M256,198.852v11.43c26.141,0,44.781,20.031,44.781,45.688H312C312,225.656,286.906,198.852,256,198.852z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M356.781,187.414h-56c-11.641-6.344-30.469-11.406-44.781-11.406c-14.281,0-33.125,5.062-44.781,11.406H200\r\n\t\t\t\tc-0.359-11.562-9.688-11.406-15.25-11.406h-20.375c-5.609,0-9.156,5.922-9.156,11.406c-5.609,0-11.219,3.078-11.219,8.594v119.93\r\n\t\t\t\tc0,5.562,5.609,8.625,11.219,8.625h56C222.875,330.875,241.719,336,256,336c14.312,0,33.141-5.125,44.781-11.438h56\r\n\t\t\t\tc5.641,0,11.219-3.062,11.219-8.625v-119.93C368,190.492,362.422,187.414,356.781,187.414z M155.219,313.094V198.852H200\r\n\t\t\t\tc-16.938,14.648-25.438,33.211-25.438,57.117c0,23.938,8.5,42.531,25.438,57.125H155.219z M292.594,315.938\r\n\t\t\t\tc-5.25,3.094-10.938,5.562-17,7.281c-0.312,0.062-0.672,0.156-1.047,0.281c-2.453,0.656-4.922,1.125-7.453,1.562\r\n\t\t\t\tc-0.703,0.062-1.406,0.219-2.094,0.281c-2.938,0.375-5.953,0.625-9,0.625s-6.062-0.25-9-0.625\r\n\t\t\t\tc-0.688-0.062-1.391-0.219-2.094-0.281c-2.531-0.438-5.031-0.906-7.469-1.562c-0.344-0.125-0.719-0.219-1.062-0.281\r\n\t\t\t\tc-6.031-1.719-11.719-4.188-16.969-7.281c-20.75-12.188-34.656-34.438-34.656-59.969c0-25.5,13.906-47.75,34.656-59.961\r\n\t\t\t\tc5.25-3.109,10.938-5.562,16.969-7.25c0.344-0.109,0.719-0.188,1.062-0.281c2.438-0.656,4.938-1.156,7.469-1.531\r\n\t\t\t\tc0.703-0.141,1.406-0.25,2.109-0.328c2.938-0.391,5.953-0.641,8.984-0.641s6.047,0.25,8.984,0.641\r\n\t\t\t\tc0.703,0.078,1.406,0.188,2.109,0.328c2.531,0.375,5,0.875,7.453,1.531c0.375,0.094,0.734,0.172,1.047,0.281\r\n\t\t\t\tc6.062,1.688,11.75,4.141,17,7.25c20.75,12.211,34.656,34.461,34.656,59.961C327.25,281.5,313.344,303.75,292.594,315.938z\r\n\t\t\t\t M356.781,313.094H312c16.953-14.594,25.484-33.188,25.484-57.125c0-23.906-8.531-42.469-25.484-57.117h44.781V313.094z\r\n\t\t\t\t M256,198.852v11.43c26.141,0,44.781,20.031,44.781,45.688H312C312,225.656,286.906,198.852,256,198.852z" + }, + "children": [] + }] + }] + }] + }] + }] + }] + }] +}; +exports.socialPhotobucket = socialPhotobucket; \ No newline at end of file diff --git a/dist/metrize/socialPinterest.js b/dist/metrize/socialPinterest.js new file mode 100644 index 000000000..5b9c6d4f5 --- /dev/null +++ b/dist/metrize/socialPinterest.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialPinterest = void 0; +var socialPinterest = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M262.031,128c-70.188,0-105.594,50.094-105.594,91.859c0,25.297,9.609,47.797,30.25,56.172\r\n\t\tc3.406,1.312,6.422,0.062,7.406-3.672c0.688-2.578,2.297-9.094,3.016-11.812c0.984-3.688,0.609-5-2.125-8.188\r\n\t\tc-5.953-6.984-9.75-16.016-9.75-28.828c0-37.172,27.938-70.422,72.734-70.422c39.625,0,61.469,24.109,61.469,56.359\r\n\t\tc0,42.375-18.844,78.125-46.812,78.125c-15.484,0-27.062-12.703-23.344-28.297c4.438-18.594,13.031-38.703,13.031-52.172\r\n\t\tc0-12.031-6.5-22.094-19.906-22.094c-15.812,0-28.484,16.297-28.484,38.078c0,13.875,4.703,23.266,4.703,23.266\r\n\t\ts-16.156,68.203-19,80.125c-5.656,23.797-0.844,52.938-0.438,55.875c0.234,1.75,2.5,2.172,3.5,0.844\r\n\t\tc1.469-1.891,20.281-25.016,26.672-48.125c1.828-6.516,10.391-40.422,10.391-40.422c5.141,9.75,20.141,18.344,36.094,18.344\r\n\t\tc47.484,0,79.719-43.078,79.719-100.781C355.562,168.625,318.438,128,262.031,128z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M262.031,128c-70.188,0-105.594,50.094-105.594,91.859c0,25.297,9.609,47.797,30.25,56.172\r\n\t\tc3.406,1.312,6.422,0.062,7.406-3.672c0.688-2.578,2.297-9.094,3.016-11.812c0.984-3.688,0.609-5-2.125-8.188\r\n\t\tc-5.953-6.984-9.75-16.016-9.75-28.828c0-37.172,27.938-70.422,72.734-70.422c39.625,0,61.469,24.109,61.469,56.359\r\n\t\tc0,42.375-18.844,78.125-46.812,78.125c-15.484,0-27.062-12.703-23.344-28.297c4.438-18.594,13.031-38.703,13.031-52.172\r\n\t\tc0-12.031-6.5-22.094-19.906-22.094c-15.812,0-28.484,16.297-28.484,38.078c0,13.875,4.703,23.266,4.703,23.266\r\n\t\ts-16.156,68.203-19,80.125c-5.656,23.797-0.844,52.938-0.438,55.875c0.234,1.75,2.5,2.172,3.5,0.844\r\n\t\tc1.469-1.891,20.281-25.016,26.672-48.125c1.828-6.516,10.391-40.422,10.391-40.422c5.141,9.75,20.141,18.344,36.094,18.344\r\n\t\tc47.484,0,79.719-43.078,79.719-100.781C355.562,168.625,318.438,128,262.031,128z" + }, + "children": [] + }] + }] + }] +}; +exports.socialPinterest = socialPinterest; \ No newline at end of file diff --git a/dist/metrize/socialQuora.js b/dist/metrize/socialQuora.js new file mode 100644 index 000000000..ce4893fca --- /dev/null +++ b/dist/metrize/socialQuora.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialQuora = void 0; +var socialQuora = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M314.844,341.454C346.75,321.126,368,284.798,368,243.329c0-63.688-50.156-115.328-112-115.328\r\n\tc-61.875,0-112,51.641-112,115.328c0,63.703,50.125,115.344,112,115.344c9.094,0,17.938-1.156,26.406-3.266\r\n\tc10.625,19.656,26.812,33.562,61.203,26.906v-19.547C343.609,362.767,321.562,357.142,314.844,341.454z M314.062,258.579\r\n\tc0,19.266-6.031,36.734-15.828,49.656c-12.312-13.312-31.609-24.266-56.094-22.875v2.344v20.328c0,0,16.609,0.672,27.984,20.516\r\n\tc-4.266,1.281-8.703,1.969-13.281,1.969c-31.594,0-57.188-32.203-57.188-71.938c0-5.094,0-24.609,0-29.703\r\n\tc0-39.734,25.594-71.938,57.188-71.938c31.609,0,57.219,32.203,57.219,71.938C314.062,233.97,314.062,253.485,314.062,258.579z" + }, + "children": [] + }] +}; +exports.socialQuora = socialQuora; \ No newline at end of file diff --git a/dist/metrize/socialSharethis.js b/dist/metrize/socialSharethis.js new file mode 100644 index 000000000..852dee4bb --- /dev/null +++ b/dist/metrize/socialSharethis.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialSharethis = void 0; +var socialSharethis = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M342.906,210.25c22.734,0,41.172-18.438,41.172-41.172c0-22.719-18.438-41.156-41.172-41.156s-41.172,18.438-41.172,41.156\r\n\t\tc0,1.781,0.312,3.438,0.516,5.156l-104.328,52.438c-7.438-7.312-17.594-11.844-28.844-11.844\r\n\t\tc-22.719,0-41.156,18.438-41.156,41.156c0,22.734,18.438,41.188,41.156,41.188c11.484,0,21.859-4.734,29.328-12.328l103.891,52.594\r\n\t\tc-0.25,1.812-0.562,3.594-0.562,5.453c0,22.75,18.438,41.188,41.172,41.188s41.172-18.438,41.172-41.188\r\n\t\tc0-22.703-18.438-41.172-41.172-41.172c-11.609,0-22.062,4.875-29.531,12.609l-103.719-52.5c0.266-1.922,0.594-3.828,0.594-5.844\r\n\t\tc0-2.219-0.328-4.391-0.656-6.547l103.562-52.016C320.656,205.281,331.188,210.25,342.906,210.25z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M342.906,210.25c22.734,0,41.172-18.438,41.172-41.172c0-22.719-18.438-41.156-41.172-41.156s-41.172,18.438-41.172,41.156\r\n\t\tc0,1.781,0.312,3.438,0.516,5.156l-104.328,52.438c-7.438-7.312-17.594-11.844-28.844-11.844\r\n\t\tc-22.719,0-41.156,18.438-41.156,41.156c0,22.734,18.438,41.188,41.156,41.188c11.484,0,21.859-4.734,29.328-12.328l103.891,52.594\r\n\t\tc-0.25,1.812-0.562,3.594-0.562,5.453c0,22.75,18.438,41.188,41.172,41.188s41.172-18.438,41.172-41.188\r\n\t\tc0-22.703-18.438-41.172-41.172-41.172c-11.609,0-22.062,4.875-29.531,12.609l-103.719-52.5c0.266-1.922,0.594-3.828,0.594-5.844\r\n\t\tc0-2.219-0.328-4.391-0.656-6.547l103.562-52.016C320.656,205.281,331.188,210.25,342.906,210.25z" + }, + "children": [] + }] + }] + }] +}; +exports.socialSharethis = socialSharethis; \ No newline at end of file diff --git a/dist/metrize/socialSkype.js b/dist/metrize/socialSkype.js new file mode 100644 index 000000000..b3848dfcd --- /dev/null +++ b/dist/metrize/socialSkype.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialSkype = void 0; +var socialSkype = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M366.734,256.297c0-63.016-51.094-114.109-114.125-114.109c-5.891,0-11.641,0.578-17.281,1.438\r\n\t\tC223.938,133.906,209.203,128,193.078,128C157.156,128,128,157.141,128,193.078c0,14.672,4.906,28.172,13.109,39.047\r\n\t\tc-1.672,7.797-2.609,15.875-2.609,24.172c0,63.047,51.078,114.141,114.109,114.141c8.094,0,16-0.875,23.609-2.484\r\n\t\tC287.656,377.922,302.562,384,318.922,384C354.859,384,384,354.859,384,318.922c0-17.766-7.125-33.844-18.688-45.578\r\n\t\tC366.156,267.75,366.734,262.094,366.734,256.297z M305.859,306c-4.484,6.391-11.078,11.391-19.734,15\r\n\t\tc-8.656,3.641-18.922,5.438-30.781,5.438c-14.25,0-26-2.469-35.25-7.422c-6.547-3.547-11.875-8.297-15.984-14.25\r\n\t\tc-4.094-5.922-6.156-11.703-6.156-17.312c0-3.266,1.234-6.047,3.688-8.359c2.469-2.328,5.609-3.484,9.406-3.484\r\n\t\tc3.078,0,5.703,0.891,7.828,2.719c2.125,1.797,3.953,4.484,5.453,8.031c1.844,4.234,3.828,7.75,5.953,10.578\r\n\t\tc2.125,2.844,5.141,5.188,9,7.016c3.875,1.844,8.969,2.766,15.25,2.766c8.672,0,15.703-1.844,21.109-5.562\r\n\t\tc5.406-3.703,8.125-8.328,8.125-13.891c0-4.391-1.453-7.969-4.375-10.703c-2.922-2.75-6.688-4.844-11.328-6.297\r\n\t\tc-4.625-1.438-10.781-2.984-18.547-4.609c-10.359-2.234-19.031-4.844-26.016-7.812c-6.984-3-12.547-7.062-16.625-12.219\r\n\t\tc-4.109-5.172-6.156-11.578-6.156-19.219c0-7.312,2.156-13.781,6.5-19.453c4.312-5.656,10.578-10.031,18.797-13.062\r\n\t\tc8.203-3.047,17.828-4.562,28.922-4.562c8.844,0,16.516,1,22.969,3.016c6.469,2.016,11.828,4.703,16.094,8.047\r\n\t\tc4.25,3.359,7.375,6.875,9.344,10.547s2.953,7.266,2.953,10.75c0,3.203-1.234,6.094-3.672,8.656\r\n\t\tc-2.469,2.547-5.547,3.844-9.219,3.844c-3.344,0-5.891-0.781-7.625-2.312s-3.625-4.047-5.656-7.547\r\n\t\tc-2.625-5-5.766-8.922-9.453-11.719c-3.672-2.797-9.578-4.203-17.719-4.203c-7.531,0-13.609,1.516-18.234,4.562\r\n\t\tc-4.641,3.031-6.938,6.703-6.938,10.984c0,2.656,0.781,4.953,2.359,6.875c1.562,1.938,3.734,3.578,6.5,4.969\r\n\t\tc2.734,1.391,5.531,2.469,8.359,3.281c2.812,0.766,7.469,1.922,13.969,3.422c8.125,1.75,15.484,3.688,22.078,5.797\r\n\t\ts12.203,4.672,16.828,7.672c4.641,3.031,8.25,6.844,10.828,11.453c2.594,4.609,3.891,10.266,3.891,16.969\r\n\t\tC312.594,292.391,310.344,299.609,305.859,306z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M366.734,256.297c0-63.016-51.094-114.109-114.125-114.109c-5.891,0-11.641,0.578-17.281,1.438\r\n\t\tC223.938,133.906,209.203,128,193.078,128C157.156,128,128,157.141,128,193.078c0,14.672,4.906,28.172,13.109,39.047\r\n\t\tc-1.672,7.797-2.609,15.875-2.609,24.172c0,63.047,51.078,114.141,114.109,114.141c8.094,0,16-0.875,23.609-2.484\r\n\t\tC287.656,377.922,302.562,384,318.922,384C354.859,384,384,354.859,384,318.922c0-17.766-7.125-33.844-18.688-45.578\r\n\t\tC366.156,267.75,366.734,262.094,366.734,256.297z M305.859,306c-4.484,6.391-11.078,11.391-19.734,15\r\n\t\tc-8.656,3.641-18.922,5.438-30.781,5.438c-14.25,0-26-2.469-35.25-7.422c-6.547-3.547-11.875-8.297-15.984-14.25\r\n\t\tc-4.094-5.922-6.156-11.703-6.156-17.312c0-3.266,1.234-6.047,3.688-8.359c2.469-2.328,5.609-3.484,9.406-3.484\r\n\t\tc3.078,0,5.703,0.891,7.828,2.719c2.125,1.797,3.953,4.484,5.453,8.031c1.844,4.234,3.828,7.75,5.953,10.578\r\n\t\tc2.125,2.844,5.141,5.188,9,7.016c3.875,1.844,8.969,2.766,15.25,2.766c8.672,0,15.703-1.844,21.109-5.562\r\n\t\tc5.406-3.703,8.125-8.328,8.125-13.891c0-4.391-1.453-7.969-4.375-10.703c-2.922-2.75-6.688-4.844-11.328-6.297\r\n\t\tc-4.625-1.438-10.781-2.984-18.547-4.609c-10.359-2.234-19.031-4.844-26.016-7.812c-6.984-3-12.547-7.062-16.625-12.219\r\n\t\tc-4.109-5.172-6.156-11.578-6.156-19.219c0-7.312,2.156-13.781,6.5-19.453c4.312-5.656,10.578-10.031,18.797-13.062\r\n\t\tc8.203-3.047,17.828-4.562,28.922-4.562c8.844,0,16.516,1,22.969,3.016c6.469,2.016,11.828,4.703,16.094,8.047\r\n\t\tc4.25,3.359,7.375,6.875,9.344,10.547s2.953,7.266,2.953,10.75c0,3.203-1.234,6.094-3.672,8.656\r\n\t\tc-2.469,2.547-5.547,3.844-9.219,3.844c-3.344,0-5.891-0.781-7.625-2.312s-3.625-4.047-5.656-7.547\r\n\t\tc-2.625-5-5.766-8.922-9.453-11.719c-3.672-2.797-9.578-4.203-17.719-4.203c-7.531,0-13.609,1.516-18.234,4.562\r\n\t\tc-4.641,3.031-6.938,6.703-6.938,10.984c0,2.656,0.781,4.953,2.359,6.875c1.562,1.938,3.734,3.578,6.5,4.969\r\n\t\tc2.734,1.391,5.531,2.469,8.359,3.281c2.812,0.766,7.469,1.922,13.969,3.422c8.125,1.75,15.484,3.688,22.078,5.797\r\n\t\ts12.203,4.672,16.828,7.672c4.641,3.031,8.25,6.844,10.828,11.453c2.594,4.609,3.891,10.266,3.891,16.969\r\n\t\tC312.594,292.391,310.344,299.609,305.859,306z" + }, + "children": [] + }] + }] + }] +}; +exports.socialSkype = socialSkype; \ No newline at end of file diff --git a/dist/metrize/socialSoundcloud.js b/dist/metrize/socialSoundcloud.js new file mode 100644 index 000000000..d3b597418 --- /dev/null +++ b/dist/metrize/socialSoundcloud.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialSoundcloud = void 0; +var socialSoundcloud = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M128.591,281.609c-2.875,13.5,5.344,32,12.781,38.391v-64\r\n\t\t\tC133.935,262.391,130.778,271.5,128.591,281.609z M347.341,250.188c-4.469,0-8.672,0.875-12.609,2.266\r\n\t\t\tc-1.969-33.672-31-60.453-66.812-60.453c-22.891,0-50.609,8.938-62.703,25.594V320h142.125c20.25,0,36.656-15.625,36.656-34.891\r\n\t\t\tC383.997,265.812,367.591,250.188,347.341,250.188z M179.685,320h12.766v-89.594h-12.766V320z M154.138,320h12.766v-76.812\r\n\t\t\th-12.766V320z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M128.591,281.609c-2.875,13.5,5.344,32,12.781,38.391v-64\r\n\t\t\tC133.935,262.391,130.778,271.5,128.591,281.609z M347.341,250.188c-4.469,0-8.672,0.875-12.609,2.266\r\n\t\t\tc-1.969-33.672-31-60.453-66.812-60.453c-22.891,0-50.609,8.938-62.703,25.594V320h142.125c20.25,0,36.656-15.625,36.656-34.891\r\n\t\t\tC383.997,265.812,367.591,250.188,347.341,250.188z M179.685,320h12.766v-89.594h-12.766V320z M154.138,320h12.766v-76.812\r\n\t\t\th-12.766V320z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.socialSoundcloud = socialSoundcloud; \ No newline at end of file diff --git a/dist/metrize/socialStumbleupon.js b/dist/metrize/socialStumbleupon.js new file mode 100644 index 000000000..8cd646d20 --- /dev/null +++ b/dist/metrize/socialStumbleupon.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialStumbleupon = void 0; +var socialStumbleupon = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M270.219,228.578l16.625,11.734l26.031-11.734l-0.156-13.062C311.812,186.031,286.812,160,256,160\r\n\tc-30.719,0-55.672,25.844-56.75,55.188v79.203c0,7.141-6.031,12.953-13.438,12.953c-7.453,0-15.141-3.031-15.141-10.219V256H128\r\n\tc0,0,0,40.734,0,41.125C128,327.422,153.5,352,184.891,352c31.141,0,56.438-24.969,56.891-54.875v-82.281\r\n\tc0-7.156,6.781-13.688,14.219-13.688c7.422,0,14.219,6.531,14.219,13.688V228.578z M341.344,256v41.125\r\n\tc0,7.172-7.719,11.781-15.156,11.781s-13.469-5.797-13.469-12.969L312.875,256l-26.031,12.953L270.219,256v41.125\r\n\tC270.5,327.203,295.875,352,327.125,352C358.5,352,384,327.422,384,297.125c0-0.391,0-41.125,0-41.125H341.344z" + }, + "children": [] + }] +}; +exports.socialStumbleupon = socialStumbleupon; \ No newline at end of file diff --git a/dist/metrize/socialTumblr.js b/dist/metrize/socialTumblr.js new file mode 100644 index 000000000..ea0635bb4 --- /dev/null +++ b/dist/metrize/socialTumblr.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialTumblr = void 0; +var socialTumblr = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M227.391,332.562c-4.703-2.734-7.922-6.375-9.656-10.969\r\n\t\t\tc-1.734-4.562-5.453-14.906-5.453-31.016v-45.172h67.594v-48.562h-67.594V128h-28.375c-1.812,14.344-2.234,19.062-7,28.359\r\n\t\t\tc-4.781,9.281-11.125,21.484-19.031,28.109C150,191.094,139.078,197.578,128,201.125v44.281h32.594v71.375\r\n\t\t\tc0,12.719,1.344,22.406,4.047,29.094c2.703,6.703,7.547,13.016,14.547,18.953c6.984,5.922,22.469,13.719,22.469,13.719\r\n\t\t\ts12.438,4.812,25.312,4.812c11.344,0,21.922-1.125,31.688-3.375s24.266-7.594,36.312-13.203v-43.812\r\n\t\t\tc-14.125,9.141-31.938,15.125-46.172,15.125C240.75,338.094,233.625,336.25,227.391,332.562z M349.141,315.266\r\n\t\t\tc-19.234,0-34.859,15.391-34.859,34.375S329.906,384,349.141,384S384,368.625,384,349.641S368.375,315.266,349.141,315.266z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M227.391,332.562c-4.703-2.734-7.922-6.375-9.656-10.969\r\n\t\t\tc-1.734-4.562-5.453-14.906-5.453-31.016v-45.172h67.594v-48.562h-67.594V128h-28.375c-1.812,14.344-2.234,19.062-7,28.359\r\n\t\t\tc-4.781,9.281-11.125,21.484-19.031,28.109C150,191.094,139.078,197.578,128,201.125v44.281h32.594v71.375\r\n\t\t\tc0,12.719,1.344,22.406,4.047,29.094c2.703,6.703,7.547,13.016,14.547,18.953c6.984,5.922,22.469,13.719,22.469,13.719\r\n\t\t\ts12.438,4.812,25.312,4.812c11.344,0,21.922-1.125,31.688-3.375s24.266-7.594,36.312-13.203v-43.812\r\n\t\t\tc-14.125,9.141-31.938,15.125-46.172,15.125C240.75,338.094,233.625,336.25,227.391,332.562z M349.141,315.266\r\n\t\t\tc-19.234,0-34.859,15.391-34.859,34.375S329.906,384,349.141,384S384,368.625,384,349.641S368.375,315.266,349.141,315.266z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.socialTumblr = socialTumblr; \ No newline at end of file diff --git a/dist/metrize/socialTwitter.js b/dist/metrize/socialTwitter.js new file mode 100644 index 000000000..fbb63eb61 --- /dev/null +++ b/dist/metrize/socialTwitter.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialTwitter = void 0; +var socialTwitter = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256c0,141.392,114.609,256,256,256c141.392,0,256-114.608,256-256\r\n\tC512,114.609,397.392,0,256,0z M256,472c-119.297,0-216-96.702-216-216c0-119.297,96.703-216,216-216c119.298,0,216,96.703,216,216\r\n\tC472,375.298,375.298,472,256,472z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M384,170.922c-4.313,2.562-17.248,7.671-29.313,8.953c7.736-4.491,19.188-19.203,22.016-30.89\r\n\tc-7.435,5.109-24.516,12.562-32.95,12.562c0,0,0,0.023,0.016,0.039C334.141,150.75,320.608,144,305.577,144\r\n\tc-29.154,0-52.81,25.461-52.81,56.875c0,4.36,0.481,8.595,1.357,12.672h-0.017c-39.562-1.094-85.811-22.446-111.874-59\r\n\tc-16,29.852-2.156,63.046,16.015,75.141c-6.203,0.516-17.671-0.766-23.061-6.407c-0.375,19.797,8.484,46.048,40.735,55.563\r\n\tc-6.221,3.61-17.19,2.579-21.984,1.781c1.687,16.75,23.437,38.623,47.202,38.623c-8.47,10.534-37.373,29.706-73.141,23.596\r\n\tC152.298,358.782,180.625,368,210.608,368c85.205,0,151.376-74.359,147.814-166.093c0-0.11-0.031-0.219-0.031-0.313\r\n\tc0-0.25,0.031-0.5,0.031-0.719c0-0.281-0.031-0.562-0.031-0.859C366.141,194.328,376.546,184.234,384,170.922z" + }, + "children": [] + }] +}; +exports.socialTwitter = socialTwitter; \ No newline at end of file diff --git a/dist/metrize/socialViddler.js b/dist/metrize/socialViddler.js new file mode 100644 index 000000000..fb0006247 --- /dev/null +++ b/dist/metrize/socialViddler.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialViddler = void 0; +var socialViddler = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M327.125,266.844c34.125,0,56.875-26.219,56.875-60.594S356.328,144,322.172,144c-31.047,0-56.719,23.031-61.109,53.094\r\n\th-1.984C254.688,167.031,229,144,197.953,144c-34.141,0-55.734,30.656-55.734,65.031c0,34.078,23.188,57.312,56.891,57.812l0,0l0,0\r\n\tv28.906L128,266.844v86.703l71.109-14.438V368h113.766l-42.656-101.156H327.125C327.156,266.844,327.062,266.844,327.125,266.844z\r\n\t M197.953,223.844c-9.641,0-17.453-7.875-17.453-17.594s7.812-17.594,17.453-17.594s17.453,7.875,17.453,17.594\r\n\tS207.594,223.844,197.953,223.844z M306,206.25c0-9.719,7.812-17.594,17.422-17.594c9.688,0,17.484,7.875,17.484,17.594\r\n\ts-7.797,17.594-17.484,17.594C313.812,223.844,306,215.969,306,206.25z" + }, + "children": [] + }] +}; +exports.socialViddler = socialViddler; \ No newline at end of file diff --git a/dist/metrize/socialVimeo.js b/dist/metrize/socialVimeo.js new file mode 100644 index 000000000..e8ed994f7 --- /dev/null +++ b/dist/metrize/socialVimeo.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialVimeo = void 0; +var socialVimeo = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256-0.5C114.333-0.5-0.5,114.333-0.5,256S114.333,512.5,256,512.5S512.5,397.667,512.5,256S397.667-0.5,256-0.5z\r\n\t M256,472.422C136.47,472.422,39.578,375.53,39.578,256C39.578,136.47,136.47,39.578,256,39.578\r\n\tc119.53,0,216.422,96.892,216.422,216.422C472.422,375.53,375.53,472.422,256,472.422z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M343.78,143.781c-32.61,0-58.113,21.104-69.15,60.822c12.023-5.699,33.848-8.673,35.554,11.178\r\n\tc1.723,19.867-28.446,71.249-41.69,71.249c-13.213,0-23.045-58.098-26.489-84.649c-3.413-26.583-9.55-55.859-34.552-55.859\r\n\tc-25.033,0-57.127,39.233-79.702,57.111l11.773,16.109c0,0,16.658-13.135,22.56-12.148c15.201,3.961,28.195,65.785,34.833,89.362\r\n\tc6.606,23.593,14.685,71.264,47.311,71.264c52.729,0,140.023-130.833,140.023-173.542\r\n\tC384.25,166.623,376.391,143.781,343.78,143.781z" + }, + "children": [] + }] +}; +exports.socialVimeo = socialVimeo; \ No newline at end of file diff --git a/dist/metrize/socialVirb.js b/dist/metrize/socialVirb.js new file mode 100644 index 000000000..7d7912db5 --- /dev/null +++ b/dist/metrize/socialVirb.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialVirb = void 0; +var socialVirb = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "219.828,292.109 182.141,187.5 128,187.5 191.281,347.5 247.422,347.5 309.625,187.5 257.062,187.5 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "219.828,292.109 182.141,187.5 128,187.5 191.281,347.5 247.422,347.5 309.625,187.5 257.062,187.5 \t" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M357.469,164.023c-14.609,0-26.5,12.109-26.5,27.078c0,14.938,11.891,27.031,26.5,27.031\r\n\t\tc14.656,0,26.531-12.094,26.531-27.031C384,176.133,372.125,164.023,357.469,164.023z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M357.469,164.023c-14.609,0-26.5,12.109-26.5,27.078c0,14.938,11.891,27.031,26.5,27.031\r\n\t\tc14.656,0,26.531-12.094,26.531-27.031C384,176.133,372.125,164.023,357.469,164.023z" + }, + "children": [] + }] + }] + }] +}; +exports.socialVirb = socialVirb; \ No newline at end of file diff --git a/dist/metrize/socialWordpress.js b/dist/metrize/socialWordpress.js new file mode 100644 index 000000000..e913f0f74 --- /dev/null +++ b/dist/metrize/socialWordpress.js @@ -0,0 +1,75 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialWordpress = void 0; +var socialWordpress = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M128,256c0,50.625,29.438,94.438,72.156,115.156l-61.078-167.25C131.969,219.828,128,237.438,128,256z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M128,256c0,50.625,29.438,94.438,72.156,115.156l-61.078-167.25C131.969,219.828,128,237.438,128,256z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M258.266,267.203l-38.422,111.594c11.469,3.359,23.594,5.203,36.172,5.203c14.891,0,29.188-2.594,42.5-7.281\r\n\t\tc-0.344-0.547-0.656-1.094-0.906-1.75L258.266,267.203z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M258.266,267.203l-38.422,111.594c11.469,3.359,23.594,5.203,36.172,5.203c14.891,0,29.188-2.594,42.5-7.281\r\n\t\tc-0.344-0.547-0.656-1.094-0.906-1.75L258.266,267.203z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M342.406,249.547c0-15.828-5.688-26.797-10.547-35.312c-6.484-10.547-12.562-19.453-12.562-30.016\r\n\t\tc0-11.766,8.906-22.703,21.5-22.703c0.547,0,1.094,0.062,1.641,0.109C319.672,140.75,289.344,128,256.016,128\r\n\t\tc-44.734,0-84.078,22.953-106.953,57.688c3,0.109,5.828,0.172,8.234,0.172c13.391,0,34.141-1.641,34.141-1.641\r\n\t\tc6.875-0.391,7.688,9.719,0.781,10.562c0,0-6.906,0.797-14.656,1.219l46.625,138.625l28.016-84L232.25,196\r\n\t\tc-6.891-0.422-13.422-1.219-13.422-1.219c-6.891-0.422-6.078-10.953,0.828-10.562c0,0,21.125,1.641,33.703,1.641\r\n\t\tc13.375,0,34.125-1.641,34.125-1.641c6.891-0.391,7.703,9.719,0.797,10.562c0,0-6.906,0.797-14.641,1.219l46.266,137.562\r\n\t\tl12.766-42.656C339.156,274.281,342.406,260.5,342.406,249.547z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M342.406,249.547c0-15.828-5.688-26.797-10.547-35.312c-6.484-10.547-12.562-19.453-12.562-30.016\r\n\t\tc0-11.766,8.906-22.703,21.5-22.703c0.547,0,1.094,0.062,1.641,0.109C319.672,140.75,289.344,128,256.016,128\r\n\t\tc-44.734,0-84.078,22.953-106.953,57.688c3,0.109,5.828,0.172,8.234,0.172c13.391,0,34.141-1.641,34.141-1.641\r\n\t\tc6.875-0.391,7.688,9.719,0.781,10.562c0,0-6.906,0.797-14.656,1.219l46.625,138.625l28.016-84L232.25,196\r\n\t\tc-6.891-0.422-13.422-1.219-13.422-1.219c-6.891-0.422-6.078-10.953,0.828-10.562c0,0,21.125,1.641,33.703,1.641\r\n\t\tc13.375,0,34.125-1.641,34.125-1.641c6.891-0.391,7.703,9.719,0.797,10.562c0,0-6.906,0.797-14.641,1.219l46.266,137.562\r\n\t\tl12.766-42.656C339.156,274.281,342.406,260.5,342.406,249.547z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M369.203,207.766c0,12.969-2.438,27.562-9.75,45.828l-39.078,113.031C358.406,344.438,384,303.219,384,256\r\n\t\tc0-22.266-5.672-43.172-15.672-61.422C368.875,198.688,369.203,203.047,369.203,207.766z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M369.203,207.766c0,12.969-2.438,27.562-9.75,45.828l-39.078,113.031C358.406,344.438,384,303.219,384,256\r\n\t\tc0-22.266-5.672-43.172-15.672-61.422C368.875,198.688,369.203,203.047,369.203,207.766z" + }, + "children": [] + }] + }] + }] +}; +exports.socialWordpress = socialWordpress; \ No newline at end of file diff --git a/dist/metrize/socialYahoo.js b/dist/metrize/socialYahoo.js new file mode 100644 index 000000000..e765ef636 --- /dev/null +++ b/dist/metrize/socialYahoo.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialYahoo = void 0; +var socialYahoo = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M330.734,221.281c0,0,9.891-5.812,17.016-5.812s16.453,0,16.453,0l6.078-15H267.188l1.094,11.281l6.062,3.203L301.109,216\r\n\t\t\tc0,0,1.625,5.812-2.734,9.016c-4.438,3.141-43.422,37.734-43.422,37.734l-49.391-60.469c0,0,1.094-1.562,8.219-1.562\r\n\t\t\tc7.156,0,28.031,0,28.031,0V176H128v24.844c0,0,14.438,0,21.562,0s15.359,7.781,22.5,14.688\r\n\t\t\tc7.141,6.859,56.656,59.406,56.656,59.406l0.328,43.281c0,0-3.734,6.344-18,6.344c-14.281,0-19.766,1.094-19.766,1.094v10.156\r\n\t\t\th113.094v-7.438c0,0-3.266-4.875-6-4.875h-26.844c-3.281,0-4.391-3.688-4.391-8.469c0-4.719,0-37.469,0-37.469L330.734,221.281z\r\n\t\t\t M355.594,303.375l8.062,0.719L384,238.812l-28.438-2.094L355.594,303.375z M343.172,336h24.453l1.203-22.969l-25.656,0.625V336z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M330.734,221.281c0,0,9.891-5.812,17.016-5.812s16.453,0,16.453,0l6.078-15H267.188l1.094,11.281l6.062,3.203L301.109,216\r\n\t\t\tc0,0,1.625,5.812-2.734,9.016c-4.438,3.141-43.422,37.734-43.422,37.734l-49.391-60.469c0,0,1.094-1.562,8.219-1.562\r\n\t\t\tc7.156,0,28.031,0,28.031,0V176H128v24.844c0,0,14.438,0,21.562,0s15.359,7.781,22.5,14.688\r\n\t\t\tc7.141,6.859,56.656,59.406,56.656,59.406l0.328,43.281c0,0-3.734,6.344-18,6.344c-14.281,0-19.766,1.094-19.766,1.094v10.156\r\n\t\t\th113.094v-7.438c0,0-3.266-4.875-6-4.875h-26.844c-3.281,0-4.391-3.688-4.391-8.469c0-4.719,0-37.469,0-37.469L330.734,221.281z\r\n\t\t\t M355.594,303.375l8.062,0.719L384,238.812l-28.438-2.094L355.594,303.375z M343.172,336h24.453l1.203-22.969l-25.656,0.625V336z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.socialYahoo = socialYahoo; \ No newline at end of file diff --git a/dist/metrize/socialYelp.js b/dist/metrize/socialYelp.js new file mode 100644 index 000000000..67c197b42 --- /dev/null +++ b/dist/metrize/socialYelp.js @@ -0,0 +1,87 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialYelp = void 0; +var socialYelp = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M246.375,301.547c-8.406-0.922-18,15.844-23.188,22.328c-5.188,6.5-25.25,29.375-25.438,35.5\r\n\t\tc-0.156,6.125,10.688,12.609,25.625,18.734c14.891,6.125,31.719,10.453,32.406-2.719c0.625-13.141,0-50.062,0-54.203\r\n\t\tS256.094,302.625,246.375,301.547z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M246.375,301.547c-8.406-0.922-18,15.844-23.188,22.328c-5.188,6.5-25.25,29.375-25.438,35.5\r\n\t\tc-0.156,6.125,10.688,12.609,25.625,18.734c14.891,6.125,31.719,10.453,32.406-2.719c0.625-13.141,0-50.062,0-54.203\r\n\t\tS256.094,302.625,246.375,301.547z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M233.828,272.75c0-7.188-20.109-17.312-20.109-17.312s-36.781-17.656-43.594-16.938\r\n\t\tc-6.797,0.719-9.438,20.188-10.016,34.25c-1.641,39.625,15.703,29.344,15.703,29.344s36.469-12.969,43.609-15.844\r\n\t\tC226.531,283.359,233.828,279.922,233.828,272.75z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M233.828,272.75c0-7.188-20.109-17.312-20.109-17.312s-36.781-17.656-43.594-16.938\r\n\t\tc-6.797,0.719-9.438,20.188-10.016,34.25c-1.641,39.625,15.703,29.344,15.703,29.344s36.469-12.969,43.609-15.844\r\n\t\tC226.531,283.359,233.828,279.922,233.828,272.75z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M244,241.031c6.656,0.531,11.359-4.5,11.359-13.125c0-8.656,2.922-91.344-3.234-97.312\r\n\t\tc-6.188-5.906-30.328-0.219-36.953,2.219c-14.109,5.125-29.797,13.125-30.125,19.969S237.375,240.5,244,241.031z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M244,241.031c6.656,0.531,11.359-4.5,11.359-13.125c0-8.656,2.922-91.344-3.234-97.312\r\n\t\tc-6.188-5.906-30.328-0.219-36.953,2.219c-14.109,5.125-29.797,13.125-30.125,19.969S237.375,240.5,244,241.031z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M300.875,261.406c11.828-2.531,50.047-10.469,50.859-21.281c0.797-10.781-22.188-48.281-31.75-48.281\r\n\t\tc-5.5,0.219-47.312,55.844-40.344,66.312C283.984,264.656,289.031,263.938,300.875,261.406z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M300.875,261.406c11.828-2.531,50.047-10.469,50.859-21.281c0.797-10.781-22.188-48.281-31.75-48.281\r\n\t\tc-5.5,0.219-47.312,55.844-40.344,66.312C283.984,264.656,289.031,263.938,300.875,261.406z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M340.672,306.938c-7.797-3.047-50.547-24.297-58.016-15.297c-4.75,5.734-1.781,15.125,3.219,24.156\r\n\t\tc5.031,9,23.188,39.438,23.188,39.438s3.234,8.094,8.906,8.094s16.859-11.781,22.531-20.578s11.5-19.391,11.5-25.172\r\n\t\tC352,311.812,348.438,310.016,340.672,306.938z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M340.672,306.938c-7.797-3.047-50.547-24.297-58.016-15.297c-4.75,5.734-1.781,15.125,3.219,24.156\r\n\t\tc5.031,9,23.188,39.438,23.188,39.438s3.234,8.094,8.906,8.094s16.859-11.781,22.531-20.578s11.5-19.391,11.5-25.172\r\n\t\tC352,311.812,348.438,310.016,340.672,306.938z" + }, + "children": [] + }] + }] + }] +}; +exports.socialYelp = socialYelp; \ No newline at end of file diff --git a/dist/metrize/socialYoutube.js b/dist/metrize/socialYoutube.js new file mode 100644 index 000000000..26935a1d3 --- /dev/null +++ b/dist/metrize/socialYoutube.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialYoutube = void 0; +var socialYoutube = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M214.859,128l-10.156,39.5h-1.016L193.031,128h-16.562l21.016,65.5v27.562h12.062\r\n\tv-29.375L231.562,128H214.859z M267.406,171.047c0-5.578-1.812-11.047-5-14.25c-3.688-3.688-5.531-5.828-11.578-5.828\r\n\tc-6.641,0-8.484,2.516-12.422,5.828c-3.938,3.375-5.672,8.172-5.672,13.797v30.562c0,6.219,1.938,11.141,5.75,14.844\r\n\tc3.828,3.625,5.672,5.438,12.031,5.438c6.609,0,7.453-1.781,11.281-5.281c3.75-3.531,5.609-8.438,5.609-14.688V171.047z\r\n\t M313.953,151.031h-11.672v46.625c-1.375,1.609-7.469,9.859-8.562,9.859c-1.344,0-1.609-0.375-2.234-1.156\r\n\tc-0.609-0.766-0.922-2-0.922-3.734v-51.594h-11.688v56.609c0,4.391,0.375,10.781,2.719,13.156c1.594,1.609,6.625,1.906,11.203-1.594\r\n\tc3.516-2.672,6.406-6.406,9.484-11.984v12.406h11.672V151.031z M384,291.906c0-26.406-20.906-47.812-46.75-47.812H174.766\r\n\tc-25.828,0-46.766,21.406-46.766,47.812v44.297C128,362.562,148.938,384,174.766,384H337.25c25.844,0,46.75-21.438,46.75-47.797\r\n\tV291.906z M319.578,360.578c-5.344,0-9.5-1.672-12.562-5.078c-3.047-3.281-4.594-7.922-4.594-13.812v-27.5\r\n\tc0-5.266,1.703-15,5.047-18.281c3.391-3.391,7.656-5.016,12.953-5.016c5.453,0,9.625,1.516,12.484,4.578\r\n\tc2.969,3.156,4.406,12.953,4.406,18.719v11.609h-22.688v15.484c0,3.25,0.422,5.453,1.203,6.719c0.797,1.234,2.078,1.875,4.031,1.875\r\n\tc1.938,0,3.281-0.531,4.062-1.594c0.766-1.062,1.203-3.328,1.203-7v-2.766h12.188v3.172c0,6.281-1.438,10.984-4.438,14.156\r\n\tC329.875,358.969,325.438,360.578,319.578,360.578z M325.125,316.281v-2.156c0-2.594-0.438-9.812-1.25-10.891\r\n\tc-0.766-1.109-2.141-1.672-3.953-1.672c-1.859,0-3.234,0.562-4.047,1.672c-0.812,1.078-1.25,8.297-1.25,10.891v2.156H325.125z\r\n\t M279.797,360.734c-2.422,0-4.562-0.5-6.422-1.453c-1.828-0.906-3.578-2.312-5.203-4.312v4.891h-12.297V267.5h11.578v27.922\r\n\tc1.672-1.938,4.172-3.438,5.922-4.453c1.891-1.016,3.75-1.531,5.672-1.531c3.828,0,6.828,1.422,8.828,4.141\r\n\tc2.016,2.719,3.031,6.703,3.031,11.922v41.188c0,4.531-0.953,7.969-2.828,10.391C286.141,359.469,283.375,360.734,279.797,360.734z\r\n\t M279.438,306.188c0-2.141-1.516-3.766-2.328-4.906c-0.938-1.109-2.203-1.609-3.812-1.609c-0.906,0-1.734,0.188-2.609,0.609\r\n\tc-0.812,0.391-2.375,1.062-3.234,1.922v45.516c0.969,1,2.672,1.797,3.656,2.25c0.922,0.484,1.875,0.719,2.922,0.719\r\n\tc1.484,0,2.594-0.469,3.297-1.391c0.672-0.859,2.109-2.328,2.109-4.375V306.188z M232.109,352.219\r\n\tc-2.25,2.5-4.578,5.234-7.031,6.562c-2.406,1.406-4.766,2.016-7.078,2.016c-2.812,0-4.938-0.922-6.359-2.828\r\n\tc-1.438-1.906-2.5-4.703-2.5-8.484v-58.438h11.797v54.125c0,1.484,0.266,2.547,0.766,3.234c0.531,0.641,1.359,1,2.5,1\r\n\tc0.875,0,2.75-0.438,4.125-1.359c1.375-0.859,3.359-2.016,4.5-3.328v-53.672h11.484v69.562h-12.203V352.219z M197.797,360.547\r\n\th-11.719v-81.422h-11.438V267.5h34.969v11.625h-11.812V360.547z M250.125,208.812c-1.938,0-3.438-0.547-4.438-1.641\r\n\tc-1.062-1.078-1.578-2.625-1.578-4.641v-32.453c0-1.609,0.578-2.891,1.672-3.859c1.109-1,2.547-1.5,4.344-1.5\r\n\tc1.922,0,2.75,0.5,3.953,1.5c1.172,0.969,1.797,2.25,1.797,3.859v32.453c0,1.984-0.609,3.5-1.75,4.641\r\n\tC252.906,208.266,252.109,208.812,250.125,208.812z" + }, + "children": [] + }] +}; +exports.socialYoutube = socialYoutube; \ No newline at end of file diff --git a/dist/metrize/socialZerply.js b/dist/metrize/socialZerply.js new file mode 100644 index 000000000..84ee27858 --- /dev/null +++ b/dist/metrize/socialZerply.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialZerply = void 0; +var socialZerply = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M211.264,128.001c6.328,1.594,10.688,3.109,15.938,4.797\r\n\tc8,1.609,13.688,3.422,20.938,4.672c28.656,6.266,64.766-2.75,88.906-5.672c0.734,2.109,2.172,5.625,2.156,9\r\n\tc0,4.797-2.641,10.531-4.047,13.734c-5.969,13.547-16.422,20.422-24.578,31.266c-17.484,23.125-37.328,45.906-57.719,66.312\r\n\tc-12.266,12.297-31.656,28.078-39.719,43.578c33.578,1.984,51.812,23.203,77.562,34.109c10.141,4.281,28.578,11.812,44.453,6.625\r\n\tc5.859-1.922,10.312-6.438,15.125-9.469c1.188,8.5,3.188,18.844,0,27.469c-5.969,16.203-27.281,36.156-53.906,27.469\r\n\tc-30.562-9.953-48.234-35.25-78.516-46.406c-10.219-3.781-21.812-4.75-35-4.75c-5.938,0-17.469,2.406-19.844,0.953\r\n\tc-9.641-14.234,6.438-40.266,12.281-46.422c20.219-21.297,40.875-42.656,58.656-66.312c10.5-13.969,25.719-25.719,34.047-41.688\r\n\tc-0.312,0-0.625,0-0.938,0c-3.406,2.219-10.297-0.016-15.141,0.953c-24.344,4.812-56.312,3.031-55.812-21.797\r\n\tc0.609-5.391,0.109-3.281,3.781-10.422C203.014,139.985,206.404,134.407,211.264,128.001z" + }, + "children": [] + }] +}; +exports.socialZerply = socialZerply; \ No newline at end of file diff --git a/dist/metrize/sos.js b/dist/metrize/sos.js new file mode 100644 index 000000000..5defe9ba6 --- /dev/null +++ b/dist/metrize/sos.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.sos = void 0; +var sos = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M256,128c-70.688,0-128,57.312-128,128s57.312,128,128,128s128-57.312,128-128S326.688,128,256,128z M376,256\r\n\tc0,4.297-0.25,8.531-0.688,12.719C375.766,264.531,376,260.297,376,256s-0.234-8.531-0.688-12.719\r\n\tC375.75,247.469,376,251.703,376,256z M375.031,241.484c-0.438-3.625-0.984-7.234-1.75-10.734\r\n\tC374.047,234.266,374.594,237.859,375.031,241.484z M373.094,230c-1.781-7.922-4.312-15.562-7.547-22.812\r\n\tC368.781,214.438,371.344,222.062,373.094,230z M365.531,207.125l-50.719,23.656c-6.469-15.062-18.547-27.125-33.594-33.594\r\n\tl23.641-50.719C331.812,158.516,353.484,180.188,365.531,207.125z M312,256c0,7.75-1.578,15.125-4.422,21.844\r\n\tc-5.672,13.359-16.375,24.062-29.734,29.719C271.125,310.422,263.75,312,256,312s-15.125-1.578-21.844-4.422\r\n\tc-13.359-5.672-24.062-16.375-29.719-29.734C201.578,271.125,200,263.75,200,256s1.578-15.125,4.438-21.844\r\n\tc5.656-13.359,16.359-24.062,29.719-29.719C240.875,201.578,248.25,200,256,200s15.125,1.578,21.844,4.422\r\n\tc13.359,5.672,24.062,16.375,29.734,29.734C310.422,240.875,312,248.25,312,256z M270.5,136.969c3.641,0.438,7.234,1,10.766,1.75\r\n\tC277.734,137.953,274.125,137.406,270.5,136.969z M281.938,138.891c7.969,1.766,15.625,4.328,22.922,7.578\r\n\tC297.562,143.219,289.891,140.672,281.938,138.891z M268.719,136.688C264.531,136.25,260.297,136,256,136s-8.531,0.25-12.719,0.688\r\n\tC247.469,136.25,251.703,136,256,136S264.531,136.25,268.719,136.688z M241.5,136.969c-3.625,0.438-7.234,0.984-10.75,1.75\r\n\tC234.266,137.969,237.875,137.406,241.5,136.969z M230.047,138.891c-7.938,1.781-15.594,4.312-22.859,7.562\r\n\tC214.453,143.203,222.094,140.656,230.047,138.891z M207.125,146.469l23.656,50.719c-15.062,6.469-27.125,18.531-33.594,33.594\r\n\tl-50.719-23.656c-3.25,7.297-5.797,14.969-7.578,22.938C147.156,192.625,172.891,161.781,207.125,146.469z M136.688,243.281\r\n\tC136.25,247.469,136,251.703,136,256s0.25,8.531,0.688,12.719C136.25,264.531,136,260.297,136,256S136.25,247.469,136.688,243.281z\r\n\t M138.719,230.734c-0.766,3.516-1.312,7.125-1.75,10.766C137.406,237.859,137.969,234.266,138.719,230.734z M146.469,304.875\r\n\tc-3.25-7.312-5.828-14.984-7.594-22.969C140.656,289.875,143.219,297.562,146.469,304.875z M138.719,281.266\r\n\tc-0.75-3.531-1.312-7.141-1.75-10.781C137.406,274.125,137.953,277.734,138.719,281.266z M146.469,304.875l50.719-23.656\r\n\tc6.469,15.062,18.547,27.125,33.594,33.578l-23.656,50.734C180.188,353.484,158.531,331.828,146.469,304.875z M241.484,375.031\r\n\tc-3.625-0.438-7.219-0.984-10.734-1.75C234.25,374.047,237.859,374.594,241.484,375.031z M230,373.094\r\n\tc-7.938-1.75-15.562-4.312-22.812-7.547C214.438,368.781,222.078,371.312,230,373.094z M243.281,375.312\r\n\tC247.469,375.766,251.703,376,256,376s8.531-0.234,12.719-0.688C264.531,375.75,260.297,376,256,376S247.469,375.75,243.281,375.312\r\n\tz M270.531,375.031c3.625-0.438,7.203-0.984,10.719-1.75C277.734,374.047,274.156,374.594,270.531,375.031z M282.062,373.078\r\n\tc3.844-0.859,7.625-1.875,11.312-3.094C289.688,371.203,285.906,372.219,282.062,373.078z M293.438,369.953\r\n\tc3.875-1.266,7.656-2.75,11.359-4.391C301.094,367.219,297.312,368.688,293.438,369.953z M304.875,365.531l-23.656-50.734\r\n\tc15.062-6.469,27.125-18.531,33.594-33.578l50.719,23.641C353.484,331.812,331.828,353.469,304.875,365.531z M375.047,270.5\r\n\tc-0.453,3.641-1,7.234-1.766,10.766C374.047,277.734,374.594,274.125,375.047,270.5z M373.109,281.938\r\n\tc-1.75,7.969-4.312,15.625-7.578,22.922C368.781,297.562,371.328,289.891,373.109,281.938z" + }, + "children": [] + }] +}; +exports.sos = sos; \ No newline at end of file diff --git a/dist/metrize/soundOff.js b/dist/metrize/soundOff.js new file mode 100644 index 000000000..a7bfe4ed0 --- /dev/null +++ b/dist/metrize/soundOff.js @@ -0,0 +1,83 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.soundOff = void 0; +var soundOff = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M380.766,365.172L146.844,131.234c-4.312-4.312-11.297-4.312-15.609,0s-4.312,11.266,0,15.594l233.938,233.938\r\n\t\tc4.312,4.312,11.297,4.312,15.594,0C385.078,376.469,385.078,369.484,380.766,365.172z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M380.766,365.172L146.844,131.234c-4.312-4.312-11.297-4.312-15.609,0s-4.312,11.266,0,15.594l233.938,233.938\r\n\t\tc4.312,4.312,11.297,4.312,15.594,0C385.078,376.469,385.078,369.484,380.766,365.172z" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M352,325.094V166.109c0-19.75-3.828-27.797-20.859-17.812l-97.266,58.672L352,325.094z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M352,325.094V166.109c0-19.75-3.828-27.797-20.859-17.812l-97.266,58.672L352,325.094z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M181.094,208H168c-4.422,0-8,3.578-8,8v80c0,4.422,3.578,8,8,8h67.5l95.641,59.719c3.891,2.281,7.031,3.5,9.656,3.984\r\n\t\t\tL181.094,208z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M181.094,208H168c-4.422,0-8,3.578-8,8v80c0,4.422,3.578,8,8,8h67.5l95.641,59.719c3.891,2.281,7.031,3.5,9.656,3.984\r\n\t\t\tL181.094,208z" + }, + "children": [] + }] + }] + }] + }, { + "name": "path", + "attribs": { + "d": "M380.766,365.172L146.844,131.234c-4.312-4.312-11.297-4.312-15.609,0s-4.312,11.266,0,15.594l233.938,233.938\r\n\t\tc4.312,4.312,11.297,4.312,15.594,0C385.078,376.469,385.078,369.484,380.766,365.172z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M380.766,365.172L146.844,131.234c-4.312-4.312-11.297-4.312-15.609,0s-4.312,11.266,0,15.594l233.938,233.938\r\n\t\tc4.312,4.312,11.297,4.312,15.594,0C385.078,376.469,385.078,369.484,380.766,365.172z" + }, + "children": [] + }] + }] + }] +}; +exports.soundOff = soundOff; \ No newline at end of file diff --git a/dist/metrize/soundOn.js b/dist/metrize/soundOn.js new file mode 100644 index 000000000..12d99d59b --- /dev/null +++ b/dist/metrize/soundOn.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.soundOn = void 0; +var soundOn = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\t\tS397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\t\tS397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M331.141,148.297L232.156,208H168c-4.422,0-8,3.578-8,8v80c0,4.422,3.578,8,8,8h67.5l95.641,59.719\r\n\t\tc17.031,9.969,20.859,1.938,20.859-17.844V166.109C352,146.359,348.172,138.312,331.141,148.297z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M331.141,148.297L232.156,208H168c-4.422,0-8,3.578-8,8v80c0,4.422,3.578,8,8,8h67.5l95.641,59.719\r\n\t\tc17.031,9.969,20.859,1.938,20.859-17.844V166.109C352,146.359,348.172,138.312,331.141,148.297z" + }, + "children": [] + }] + }] + }] +}; +exports.soundOn = soundOn; \ No newline at end of file diff --git a/dist/metrize/speed.js b/dist/metrize/speed.js new file mode 100644 index 000000000..0fd361601 --- /dev/null +++ b/dist/metrize/speed.js @@ -0,0 +1,59 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.speed = void 0; +var speed = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M350.281,169.609l-23.594,21.625C343.016,209.047,352,232.047,352,256c0,52.938-43.062,96-96,96s-96-43.062-96-96\r\n\t\t\ts43.062-96,96-96v-32c-70.578,0-128,57.422-128,128s57.422,128,128,128s128-57.422,128-128\r\n\t\t\tC384,224.016,372.031,193.344,350.281,169.609z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M350.281,169.609l-23.594,21.625C343.016,209.047,352,232.047,352,256c0,52.938-43.062,96-96,96s-96-43.062-96-96\r\n\t\t\ts43.062-96,96-96v-32c-70.578,0-128,57.422-128,128s57.422,128,128,128s128-57.422,128-128\r\n\t\t\tC384,224.016,372.031,193.344,350.281,169.609z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "272,262.391 307.188,138.688 240,249.609 248,272 \t\t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "272,262.391 307.188,138.688 240,249.609 248,272 \t\t" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.speed = speed; \ No newline at end of file diff --git a/dist/metrize/star.js b/dist/metrize/star.js new file mode 100644 index 000000000..02565a158 --- /dev/null +++ b/dist/metrize/star.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.star = void 0; +var star = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "polygon", + "attribs": { + "points": "295.578,214.41 256.25,134.152 216.484,214.191 128,226.785 191.812,289.363 176.469,377.395 255.688,336.02 \r\n\t334.688,377.848 319.828,289.723 384,227.52 " + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] +}; +exports.star = star; \ No newline at end of file diff --git a/dist/metrize/stop.js b/dist/metrize/stop.js new file mode 100644 index 000000000..49ad14b60 --- /dev/null +++ b/dist/metrize/stop.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.stop = void 0; +var stop = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "176", + "y": "176", + "width": "160", + "height": "160" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "176", + "y": "176", + "width": "160", + "height": "160" + }, + "children": [] + }] + }] + }] +}; +exports.stop = stop; \ No newline at end of file diff --git a/dist/metrize/sun.js b/dist/metrize/sun.js new file mode 100644 index 000000000..c9ef07232 --- /dev/null +++ b/dist/metrize/sun.js @@ -0,0 +1,197 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.sun = void 0; +var sun = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M256,187.078c-38,0-68.922,30.922-68.922,68.922S218,324.922,256,324.922\r\n\t\tS324.922,294,324.922,256S294,187.078,256,187.078z M256,305.234c-27.188,0-49.234-22.047-49.234-49.234\r\n\t\ts22.047-49.234,49.234-49.234s49.234,22.047,49.234,49.234S283.188,305.234,256,305.234z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M256,187.078c-38,0-68.922,30.922-68.922,68.922S218,324.922,256,324.922\r\n\t\tS324.922,294,324.922,256S294,187.078,256,187.078z M256,305.234c-27.188,0-49.234-22.047-49.234-49.234\r\n\t\ts22.047-49.234,49.234-49.234s49.234,22.047,49.234,49.234S283.188,305.234,256,305.234z" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M256,128c-5.438,0-9.844,4.406-9.844,9.844v19.688\r\n\t\t\tc0,5.438,4.406,9.844,9.844,9.844s9.844-4.406,9.844-9.844v-19.688C265.844,132.406,261.438,128,256,128z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M256,128c-5.438,0-9.844,4.406-9.844,9.844v19.688\r\n\t\t\tc0,5.438,4.406,9.844,9.844,9.844s9.844-4.406,9.844-9.844v-19.688C265.844,132.406,261.438,128,256,128z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M256,344.609c-5.438,0-9.844,4.422-9.844,9.859v19.688\r\n\t\t\tc0,5.438,4.406,9.844,9.844,9.844s9.844-4.406,9.844-9.844v-19.688C265.844,349.031,261.438,344.609,256,344.609z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M256,344.609c-5.438,0-9.844,4.422-9.844,9.859v19.688\r\n\t\t\tc0,5.438,4.406,9.844,9.844,9.844s9.844-4.406,9.844-9.844v-19.688C265.844,349.031,261.438,344.609,256,344.609z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M346.5,165.484c-3.844-3.844-10.078-3.844-13.922,0l-13.922,13.922\r\n\t\t\tc-3.844,3.844-3.844,10.078,0,13.938c3.844,3.844,10.078,3.844,13.922,0l13.922-13.938\r\n\t\t\tC350.344,175.562,350.344,169.344,346.5,165.484z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M346.5,165.484c-3.844-3.844-10.078-3.844-13.922,0l-13.922,13.922\r\n\t\t\tc-3.844,3.844-3.844,10.078,0,13.938c3.844,3.844,10.078,3.844,13.922,0l13.922-13.938\r\n\t\t\tC350.344,175.562,350.344,169.344,346.5,165.484z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M193.344,318.672c-3.844-3.844-10.078-3.859-13.922,0L165.5,332.594\r\n\t\t\tc-3.844,3.844-3.844,10.078,0,13.922s10.078,3.844,13.922,0l13.922-13.922C197.188,328.734,197.188,322.516,193.344,318.672z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M193.344,318.672c-3.844-3.844-10.078-3.859-13.922,0L165.5,332.594\r\n\t\t\tc-3.844,3.844-3.844,10.078,0,13.922s10.078,3.844,13.922,0l13.922-13.922C197.188,328.734,197.188,322.516,193.344,318.672z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M128,256c0,5.438,4.406,9.844,9.844,9.844h19.688\r\n\t\t\tc5.438,0,9.844-4.406,9.844-9.844s-4.406-9.844-9.844-9.844h-19.688C132.406,246.156,128,250.562,128,256z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M128,256c0,5.438,4.406,9.844,9.844,9.844h19.688\r\n\t\t\tc5.438,0,9.844-4.406,9.844-9.844s-4.406-9.844-9.844-9.844h-19.688C132.406,246.156,128,250.562,128,256z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M344.609,256c0,5.438,4.422,9.844,9.859,9.844h19.688\r\n\t\t\tc5.438,0,9.844-4.406,9.844-9.844s-4.406-9.844-9.844-9.844h-19.688C349.031,246.156,344.609,250.562,344.609,256z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M344.609,256c0,5.438,4.422,9.844,9.859,9.844h19.688\r\n\t\t\tc5.438,0,9.844-4.406,9.844-9.844s-4.406-9.844-9.844-9.844h-19.688C349.031,246.156,344.609,250.562,344.609,256z" + }, + "children": [] + }] + }] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M165.484,165.484c-3.844,3.859-3.844,10.078,0,13.922l13.922,13.938\r\n\t\t\tc3.844,3.844,10.078,3.844,13.938,0c3.844-3.859,3.844-10.094,0-13.938l-13.938-13.922\r\n\t\t\tC175.562,161.641,169.344,161.641,165.484,165.484z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M165.484,165.484c-3.844,3.859-3.844,10.078,0,13.922l13.922,13.938\r\n\t\t\tc3.844,3.844,10.078,3.844,13.938,0c3.844-3.859,3.844-10.094,0-13.938l-13.938-13.922\r\n\t\t\tC175.562,161.641,169.344,161.641,165.484,165.484z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M318.672,318.656c-3.844,3.844-3.859,10.078,0,13.922l13.922,13.922\r\n\t\t\tc3.844,3.844,10.078,3.844,13.922,0s3.844-10.078,0-13.922l-13.922-13.922C328.734,314.812,322.516,314.812,318.672,318.656z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M318.672,318.656c-3.844,3.844-3.859,10.078,0,13.922l13.922,13.922\r\n\t\t\tc3.844,3.844,10.078,3.844,13.922,0s3.844-10.078,0-13.922l-13.922-13.922C328.734,314.812,322.516,314.812,318.672,318.656z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.sun = sun; \ No newline at end of file diff --git a/dist/metrize/sunshine.js b/dist/metrize/sunshine.js new file mode 100644 index 000000000..3ab5e178d --- /dev/null +++ b/dist/metrize/sunshine.js @@ -0,0 +1,131 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.sunshine = void 0; +var sunshine = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M189.871,281.594c6.281-29.219,33.469-51.188,66.125-51.188\r\n\t\t\ts59.875,21.969,66.125,51.188h27c-6.625-43.297-45.625-76.797-93.125-76.797c-47.469,0-86.469,33.5-93.094,76.797H189.871z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M189.871,281.594c6.281-29.219,33.469-51.188,66.125-51.188\r\n\t\t\ts59.875,21.969,66.125,51.188h27c-6.625-43.297-45.625-76.797-93.125-76.797c-47.469,0-86.469,33.5-93.094,76.797H189.871z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M255.996,179.203c7.469,0,13.5-5.734,13.5-12.797v-25.609\r\n\t\t\tc0-7.062-6.031-12.797-13.5-12.797c-7.453,0-13.5,5.734-13.5,12.797v25.609C242.496,173.469,248.543,179.203,255.996,179.203z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M255.996,179.203c7.469,0,13.5-5.734,13.5-12.797v-25.609\r\n\t\t\tc0-7.062-6.031-12.797-13.5-12.797c-7.453,0-13.5,5.734-13.5,12.797v25.609C242.496,173.469,248.543,179.203,255.996,179.203z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M380.043,176.734c-5.281-5-13.812-5-19.078,0l-19.078,18.109\r\n\t\t\tc-5.281,5-5.281,13.094,0,18.094c5.266,5,13.812,5,19.078,0l19.078-18.094C385.324,189.844,385.324,181.734,380.043,176.734z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M380.043,176.734c-5.281-5-13.812-5-19.078,0l-19.078,18.109\r\n\t\t\tc-5.281,5-5.281,13.094,0,18.094c5.266,5,13.812,5,19.078,0l19.078-18.094C385.324,189.844,385.324,181.734,380.043,176.734z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M170.105,194.844l-19.078-18.109c-5.266-5-13.812-5-19.094,0\r\n\t\t\tc-5.25,5-5.25,13.109,0,18.109l19.094,18.094c5.266,5,13.797,5,19.078,0C175.371,207.938,175.371,199.844,170.105,194.844z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M170.105,194.844l-19.078-18.109c-5.266-5-13.812-5-19.094,0\r\n\t\t\tc-5.25,5-5.25,13.109,0,18.109l19.094,18.094c5.266,5,13.797,5,19.078,0C175.371,207.938,175.371,199.844,170.105,194.844z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M336.98,307.203H175.027c-7.453,0-13.5,5.734-13.5,12.797\r\n\t\t\ts6.047,12.797,13.5,12.797H336.98c7.453,0,13.5-5.734,13.5-12.797S344.434,307.203,336.98,307.203z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M336.98,307.203H175.027c-7.453,0-13.5,5.734-13.5,12.797\r\n\t\t\ts6.047,12.797,13.5,12.797H336.98c7.453,0,13.5-5.734,13.5-12.797S344.434,307.203,336.98,307.203z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M309.98,358.406H202.012c-7.453,0-13.484,5.719-13.484,12.797\r\n\t\t\tc0,7.062,6.031,12.797,13.484,12.797H309.98c7.469,0,13.516-5.734,13.516-12.797C323.496,364.125,317.449,358.406,309.98,358.406z\r\n\t\t\t" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M309.98,358.406H202.012c-7.453,0-13.484,5.719-13.484,12.797\r\n\t\t\tc0,7.062,6.031,12.797,13.484,12.797H309.98c7.469,0,13.516-5.734,13.516-12.797C323.496,364.125,317.449,358.406,309.98,358.406z\r\n\t\t\t" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.sunshine = sunshine; \ No newline at end of file diff --git a/dist/metrize/telephone.js b/dist/metrize/telephone.js new file mode 100644 index 000000000..28c4457ab --- /dev/null +++ b/dist/metrize/telephone.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.telephone = void 0; +var telephone = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M327.125,383.969c5.703,0.016,56.875-37.828,56.875-42.656s-57.266-40.906-62.219-40.906s-21.578,19.938-26.062,22.156\r\n\tc-4.5,2.219-32.5,1.422-63.703-29.781c-31.219-31.188-41.875-67.109-41.875-72.75s26.031-23.062,26.75-27.156\r\n\tS182.578,128,176.891,128S128,180.5,128,184.875s3.953,60.656,75.219,131.906S321.422,383.938,327.125,383.969z" + }, + "children": [] + }] +}; +exports.telephone = telephone; \ No newline at end of file diff --git a/dist/metrize/textAlignLeft.js b/dist/metrize/textAlignLeft.js new file mode 100644 index 000000000..4fa672c3f --- /dev/null +++ b/dist/metrize/textAlignLeft.js @@ -0,0 +1,93 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.textAlignLeft = void 0; +var textAlignLeft = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "144", + "y": "144", + "width": "128", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "144", + "y": "144", + "width": "128", + "height": "32" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "144", + "y": "208", + "width": "160", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "144", + "y": "208", + "width": "160", + "height": "32" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "144", + "y": "272", + "width": "192", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "144", + "y": "272", + "width": "192", + "height": "32" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "144", + "y": "336", + "width": "224", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "144", + "y": "336", + "width": "224", + "height": "32" + }, + "children": [] + }] + }] + }] +}; +exports.textAlignLeft = textAlignLeft; \ No newline at end of file diff --git a/dist/metrize/textAlignRight.js b/dist/metrize/textAlignRight.js new file mode 100644 index 000000000..e1261c7d5 --- /dev/null +++ b/dist/metrize/textAlignRight.js @@ -0,0 +1,93 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.textAlignRight = void 0; +var textAlignRight = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "240", + "y": "144", + "width": "128", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "240", + "y": "144", + "width": "128", + "height": "32" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "208", + "y": "208", + "width": "160", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "208", + "y": "208", + "width": "160", + "height": "32" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "176", + "y": "272", + "width": "192", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "176", + "y": "272", + "width": "192", + "height": "32" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "144", + "y": "336", + "width": "224", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "144", + "y": "336", + "width": "224", + "height": "32" + }, + "children": [] + }] + }] + }] +}; +exports.textAlignRight = textAlignRight; \ No newline at end of file diff --git a/dist/metrize/textBold.js b/dist/metrize/textBold.js new file mode 100644 index 000000000..8cb11c47c --- /dev/null +++ b/dist/metrize/textBold.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.textBold = void 0; +var textBold = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M299.422,249.219c23.031,4.969,39.219,10.969,48.531,18.016C361.312,277.25,368,290.25,368,306.219\r\n\tc0,16.844-7.344,30.781-22.031,41.797C327.953,361.344,301.75,368,267.375,368H144v-6.109c11.219,0,18.828-0.969,22.828-2.891\r\n\tc4-1.938,6.797-4.438,8.422-7.516c1.609-3.094,2.406-10.688,2.406-22.797V183.312c0-12.109-0.797-19.734-2.406-22.875\r\n\tc-1.625-3.141-4.453-5.656-8.5-7.516c-4.062-1.875-11.656-2.812-22.75-2.812V144h116.391c27.812,0,47.5,2.281,59.078,6.844\r\n\tc11.578,4.578,20.719,11.406,27.406,20.5c6.688,9.078,10.031,18.75,10.031,28.984c0,10.797-4.25,20.406-12.719,28.828\r\n\tC335.703,237.578,320.781,244.281,299.422,249.219z M234.25,257.656v71.859l-0.188,8.25c0,5.953,1.641,10.438,4.938,13.469\r\n\tc3.281,3.031,8.125,4.547,14.594,4.547c9.531,0,18.344-1.953,26.406-5.875c8.062-3.906,14.234-9.578,18.531-17.016\r\n\tc4.297-7.422,6.438-15.719,6.438-24.859c0-10.453-2.625-19.844-7.875-28.156s-12.469-14.125-21.656-17.438\r\n\tC266.234,259.141,252.5,257.531,234.25,257.656z M234.25,244.766c16.938,0,29.453-1.766,37.5-5.281\r\n\tc8.062-3.531,14.25-8.484,18.531-14.859c4.312-6.406,6.453-14.547,6.453-24.469c0-9.906-2.125-18.031-6.359-24.359\r\n\ts-10.281-11.141-18.172-14.453c-7.875-3.312-20.531-4.906-37.953-4.781V244.766z" + }, + "children": [] + }] +}; +exports.textBold = textBold; \ No newline at end of file diff --git a/dist/metrize/textCenter.js b/dist/metrize/textCenter.js new file mode 100644 index 000000000..effd01e7f --- /dev/null +++ b/dist/metrize/textCenter.js @@ -0,0 +1,93 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.textCenter = void 0; +var textCenter = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "144", + "y": "336", + "width": "224", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "144", + "y": "336", + "width": "224", + "height": "32" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "176", + "y": "272", + "width": "160", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "176", + "y": "272", + "width": "160", + "height": "32" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "176", + "y": "208", + "width": "160", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "176", + "y": "208", + "width": "160", + "height": "32" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "144", + "y": "144", + "width": "224", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "144", + "y": "144", + "width": "224", + "height": "32" + }, + "children": [] + }] + }] + }] +}; +exports.textCenter = textCenter; \ No newline at end of file diff --git a/dist/metrize/textHeight.js b/dist/metrize/textHeight.js new file mode 100644 index 000000000..644194584 --- /dev/null +++ b/dist/metrize/textHeight.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.textHeight = void 0; +var textHeight = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M301.891,144L304,196.531h-5.344c-1.016-9.25-2.422-15.859-4.219-19.828c-2.875-6.375-6.766-11.078-11.594-14.109\r\n\t\tc-4.812-3.031-11.172-4.562-19.047-4.562h-26.859v171.125c0,13.812,1.266,22.391,3.797,25.781\r\n\t\tc3.562,4.656,9.047,6.953,16.453,6.953h6.609V368h-80.859v-6.109h6.75c8.062,0,13.781-2.859,17.156-8.594\r\n\t\tc2.062-3.516,3.094-11.562,3.094-24.141V158.031h-22.922c-8.891,0-15.234,0.766-18.984,2.328c-4.875,2.094-9.031,6.094-12.5,12.047\r\n\t\ts-5.531,14-6.188,24.125H144L146.25,144H301.891z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M301.891,144L304,196.531h-5.344c-1.016-9.25-2.422-15.859-4.219-19.828c-2.875-6.375-6.766-11.078-11.594-14.109\r\n\t\tc-4.812-3.031-11.172-4.562-19.047-4.562h-26.859v171.125c0,13.812,1.266,22.391,3.797,25.781\r\n\t\tc3.562,4.656,9.047,6.953,16.453,6.953h6.609V368h-80.859v-6.109h6.75c8.062,0,13.781-2.859,17.156-8.594\r\n\t\tc2.062-3.516,3.094-11.562,3.094-24.141V158.031h-22.922c-8.891,0-15.234,0.766-18.984,2.328c-4.875,2.094-9.031,6.094-12.5,12.047\r\n\t\ts-5.531,14-6.188,24.125H144L146.25,144H301.891z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "352,176 368,176 344,144 320,176 336,176 336,336 320,336 344,368 368,336 352,336 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "352,176 368,176 344,144 320,176 336,176 336,336 320,336 344,368 368,336 352,336 \t" + }, + "children": [] + }] + }] + }] +}; +exports.textHeight = textHeight; \ No newline at end of file diff --git a/dist/metrize/textJustifyCenter.js b/dist/metrize/textJustifyCenter.js new file mode 100644 index 000000000..45837c9e6 --- /dev/null +++ b/dist/metrize/textJustifyCenter.js @@ -0,0 +1,93 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.textJustifyCenter = void 0; +var textJustifyCenter = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "144", + "y": "336", + "width": "224", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "144", + "y": "336", + "width": "224", + "height": "32" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "144", + "y": "272", + "width": "224", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "144", + "y": "272", + "width": "224", + "height": "32" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "144", + "y": "208", + "width": "224", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "144", + "y": "208", + "width": "224", + "height": "32" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "144", + "y": "144", + "width": "224", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "144", + "y": "144", + "width": "224", + "height": "32" + }, + "children": [] + }] + }] + }] +}; +exports.textJustifyCenter = textJustifyCenter; \ No newline at end of file diff --git a/dist/metrize/textJustifyLeft.js b/dist/metrize/textJustifyLeft.js new file mode 100644 index 000000000..7e70ab8dd --- /dev/null +++ b/dist/metrize/textJustifyLeft.js @@ -0,0 +1,123 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.textJustifyLeft = void 0; +var textJustifyLeft = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "256", + "y": "144", + "width": "80", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "256", + "y": "144", + "width": "80", + "height": "32" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "256", + "y": "208", + "width": "96", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "256", + "y": "208", + "width": "96", + "height": "32" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "256", + "y": "272", + "width": "112", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "256", + "y": "272", + "width": "112", + "height": "32" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "256", + "y": "336", + "width": "128", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "256", + "y": "336", + "width": "128", + "height": "32" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "224", + "y": "144", + "width": "16", + "height": "224" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "224", + "y": "144", + "width": "16", + "height": "224" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "128,240 176,240 176,224 208,256 176,288 176,272 128,272 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "128,240 176,240 176,224 208,256 176,288 176,272 128,272 \t" + }, + "children": [] + }] + }] + }] +}; +exports.textJustifyLeft = textJustifyLeft; \ No newline at end of file diff --git a/dist/metrize/textJustifyRight.js b/dist/metrize/textJustifyRight.js new file mode 100644 index 000000000..8b4a320d2 --- /dev/null +++ b/dist/metrize/textJustifyRight.js @@ -0,0 +1,123 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.textJustifyRight = void 0; +var textJustifyRight = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "176", + "y": "144", + "width": "80", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "176", + "y": "144", + "width": "80", + "height": "32" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "160", + "y": "208", + "width": "96", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "160", + "y": "208", + "width": "96", + "height": "32" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "144", + "y": "272", + "width": "112", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "144", + "y": "272", + "width": "112", + "height": "32" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "128", + "y": "336", + "width": "128", + "height": "32" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "128", + "y": "336", + "width": "128", + "height": "32" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "272", + "y": "144", + "width": "16", + "height": "224" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "272", + "y": "144", + "width": "16", + "height": "224" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "384,240 336,240 336,224 304,256 336,288 336,272 384,272 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "384,240 336,240 336,224 304,256 336,288 336,272 384,272 \t" + }, + "children": [] + }] + }] + }] +}; +exports.textJustifyRight = textJustifyRight; \ No newline at end of file diff --git a/dist/metrize/textNormal.js b/dist/metrize/textNormal.js new file mode 100644 index 000000000..6f427f61e --- /dev/null +++ b/dist/metrize/textNormal.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.textNormal = void 0; +var textNormal = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M287.266,294.688h-81.672l-14.312,34.578C187.75,337.75,186,344.094,186,348.312c0,3.344,1.531,6.281,4.594,8.797\r\n\tc3.047,2.547,9.656,4.172,19.828,4.938V368H144v-5.953c8.812-1.625,14.5-3.719,17.109-6.312\r\n\tc5.297-5.172,11.141-15.641,17.578-31.484L252.891,144h5.453l73.422,182.188c5.906,14.625,11.25,24.156,16.094,28.484\r\n\tc4.812,4.391,11.531,6.828,20.141,7.375V368h-83.219v-5.953c8.406-0.438,14.062-1.875,17.047-4.375\r\n\tc2.922-2.469,4.406-5.484,4.406-9.031c0-4.75-2.062-12.219-6.203-22.453L287.266,294.688z M282.906,282.734l-35.781-88.5\r\n\tl-36.703,88.5H282.906z" + }, + "children": [] + }] +}; +exports.textNormal = textNormal; \ No newline at end of file diff --git a/dist/metrize/textParagraph.js b/dist/metrize/textParagraph.js new file mode 100644 index 000000000..ae8bcd36c --- /dev/null +++ b/dist/metrize/textParagraph.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.textParagraph = void 0; +var textParagraph = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M144,144v32h224v-32H144z M288,192H144v32h144V192z M224,240h-80v32h80V240z\r\n\t\t\t M144,320h192v-32H144V320z M144,368h128v-32H144V368z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M144,144v32h224v-32H144z M288,192H144v32h144V192z M224,240h-80v32h80V240z\r\n\t\t\t M144,320h192v-32H144V320z M144,368h128v-32H144V368z" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.textParagraph = textParagraph; \ No newline at end of file diff --git a/dist/metrize/textSizeReduce.js b/dist/metrize/textSizeReduce.js new file mode 100644 index 000000000..383ec9a09 --- /dev/null +++ b/dist/metrize/textSizeReduce.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.textSizeReduce = void 0; +var textSizeReduce = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M286.344,176L288,213.531h-4.234c-0.859-6.625-1.938-11.312-3.391-14.156c-2.312-4.594-5.406-7.938-9.281-10.094\r\n\t\tc-3.844-2.156-8.945-3.25-15.242-3.25h-21.477V308.25c0,9.875,1,15.984,3.031,18.438c2.836,3.312,7.227,4.953,13.156,4.953h5.289\r\n\t\tV336h-64.703v-4.359h5.43c6.438,0,11.023-2.047,13.719-6.156c1.648-2.516,2.469-8.25,2.469-17.234V186.031h-18.344\r\n\t\tc-7.117,0-12.195,0.562-15.172,1.656c-3.922,1.469-7.242,4.359-10.008,8.594c-2.766,4.266-4.43,10-4.953,17.25H160L161.82,176\r\n\t\tH286.344z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M286.344,176L288,213.531h-4.234c-0.859-6.625-1.938-11.312-3.391-14.156c-2.312-4.594-5.406-7.938-9.281-10.094\r\n\t\tc-3.844-2.156-8.945-3.25-15.242-3.25h-21.477V308.25c0,9.875,1,15.984,3.031,18.438c2.836,3.312,7.227,4.953,13.156,4.953h5.289\r\n\t\tV336h-64.703v-4.359h5.43c6.438,0,11.023-2.047,13.719-6.156c1.648-2.516,2.469-8.25,2.469-17.234V186.031h-18.344\r\n\t\tc-7.117,0-12.195,0.562-15.172,1.656c-3.922,1.469-7.242,4.359-10.008,8.594c-2.766,4.266-4.43,10-4.953,17.25H160L161.82,176\r\n\t\tH286.344z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "279.5", + "y": "264.5", + "width": "64", + "height": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "279.5", + "y": "264.5", + "width": "64", + "height": "16" + }, + "children": [] + }] + }] + }] +}; +exports.textSizeReduce = textSizeReduce; \ No newline at end of file diff --git a/dist/metrize/textSizeUpper.js b/dist/metrize/textSizeUpper.js new file mode 100644 index 000000000..3305e16cc --- /dev/null +++ b/dist/metrize/textSizeUpper.js @@ -0,0 +1,75 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.textSizeUpper = void 0; +var textSizeUpper = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M285.938,160L288,205.031h-5.297c-1.078-7.938-2.406-13.594-4.234-17c-2.906-5.469-6.75-9.5-11.594-12.094\r\n\t\tc-4.828-2.594-11.195-3.906-19.055-3.906h-26.852v146.656c0,11.875,1.25,19.203,3.781,22.125c3.555,4,9.039,5.953,16.453,5.953\r\n\t\th6.617V352H166.93v-5.234h6.789c8.047,0,13.789-2.453,17.156-7.375c2.055-3.016,3.078-9.906,3.078-20.703V172.031h-22.922\r\n\t\tc-8.898,0-15.242,0.656-18.969,2c-4.906,1.781-9.055,5.219-12.508,10.312c-3.453,5.109-5.539,12-6.188,20.688H128L130.273,160\r\n\t\tH285.938z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M285.938,160L288,205.031h-5.297c-1.078-7.938-2.406-13.594-4.234-17c-2.906-5.469-6.75-9.5-11.594-12.094\r\n\t\tc-4.828-2.594-11.195-3.906-19.055-3.906h-26.852v146.656c0,11.875,1.25,19.203,3.781,22.125c3.555,4,9.039,5.953,16.453,5.953\r\n\t\th6.617V352H166.93v-5.234h6.789c8.047,0,13.789-2.453,17.156-7.375c2.055-3.016,3.078-9.906,3.078-20.703V172.031h-22.922\r\n\t\tc-8.898,0-15.242,0.656-18.969,2c-4.906,1.781-9.055,5.219-12.508,10.312c-3.453,5.109-5.539,12-6.188,20.688H128L130.273,160\r\n\t\tH285.938z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "295.5", + "y": "264.5", + "width": "80", + "height": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "295.5", + "y": "264.5", + "width": "80", + "height": "16" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "327.5", + "y": "232.5", + "width": "16", + "height": "80" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "327.5", + "y": "232.5", + "width": "16", + "height": "80" + }, + "children": [] + }] + }] + }] +}; +exports.textSizeUpper = textSizeUpper; \ No newline at end of file diff --git a/dist/metrize/textWidth.js b/dist/metrize/textWidth.js new file mode 100644 index 000000000..e9cfd1809 --- /dev/null +++ b/dist/metrize/textWidth.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.textWidth = void 0; +var textWidth = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M349.438,128L352,173.031h-6.406c-1.25-7.938-2.938-13.594-5.062-17c-3.469-5.469-8.156-9.5-13.906-12.094\r\n\t\tc-5.781-2.594-13.438-3.906-22.875-3.906h-32.219v146.688c0,11.812,1.516,19.172,4.531,22.094\r\n\t\tc4.281,3.969,10.875,5.953,19.75,5.953h7.938V320h-97v-5.234h8.094c9.656,0,16.516-2.453,20.562-7.375\r\n\t\tc2.5-3.016,3.719-9.906,3.719-20.672V140.031h-27.5c-10.688,0-18.281,0.656-22.781,1.984c-5.844,1.797-10.844,5.234-15,10.328\r\n\t\tc-4.172,5.109-6.641,12-7.438,20.688H160L162.688,128H349.438z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M349.438,128L352,173.031h-6.406c-1.25-7.938-2.938-13.594-5.062-17c-3.469-5.469-8.156-9.5-13.906-12.094\r\n\t\tc-5.781-2.594-13.438-3.906-22.875-3.906h-32.219v146.688c0,11.812,1.516,19.172,4.531,22.094\r\n\t\tc4.281,3.969,10.875,5.953,19.75,5.953h7.938V320h-97v-5.234h8.094c9.656,0,16.516-2.453,20.562-7.375\r\n\t\tc2.5-3.016,3.719-9.906,3.719-20.672V140.031h-27.5c-10.688,0-18.281,0.656-22.781,1.984c-5.844,1.797-10.844,5.234-15,10.328\r\n\t\tc-4.172,5.109-6.641,12-7.438,20.688H160L162.688,128H349.438z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "352,360 320,336 320,352 192,352 192,336 160,360 192,384 192,368 320,368 320,384 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "352,360 320,336 320,352 192,352 192,336 160,360 192,384 192,368 320,368 320,384 \t" + }, + "children": [] + }] + }] + }] +}; +exports.textWidth = textWidth; \ No newline at end of file diff --git a/dist/metrize/threeDCube.js b/dist/metrize/threeDCube.js new file mode 100644 index 000000000..31a90ee72 --- /dev/null +++ b/dist/metrize/threeDCube.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.threeDCube = void 0; +var threeDCube = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M367.766,223.875l-0.109-32.141l-14.031-8L255.688,128l-97.672,56.188L144,192.266l0.078,31.828l0.234,96.156l83.594,47.594\r\n\tL242.234,376l13.812,7.844l0.266,0.156l28.062-16.141L368,319.734L367.766,223.875z M255.781,160.156l69.812,39.719l-69.641,40.062\r\n\tl-69.828-39.734L255.781,160.156z M172.344,304.109l-0.203-79.766l69.547,39.578l0.219,79.781L172.344,304.109z M270.234,343.781\r\n\tL270.047,264l69.609-40.062l0.25,79.812L270.234,343.781z" + }, + "children": [] + }] +}; +exports.threeDCube = threeDCube; \ No newline at end of file diff --git a/dist/metrize/threePoints.js b/dist/metrize/threePoints.js new file mode 100644 index 000000000..fd3bdedb4 --- /dev/null +++ b/dist/metrize/threePoints.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.threePoints = void 0; +var threePoints = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M351.938,224C334.266,224,320,238.297,320,255.969S334.266,288,351.938,288C369.672,288,384,273.641,384,255.969\r\n\t\tS369.672,224,351.938,224z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M351.938,224C334.266,224,320,238.297,320,255.969S334.266,288,351.938,288C369.672,288,384,273.641,384,255.969\r\n\t\tS369.672,224,351.938,224z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M255.938,224C238.266,224,224,238.297,224,255.969S238.266,288,255.938,288C273.672,288,288,273.641,288,255.969\r\n\t\tS273.672,224,255.938,224z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M255.938,224C238.266,224,224,238.297,224,255.969S238.266,288,255.938,288C273.672,288,288,273.641,288,255.969\r\n\t\tS273.672,224,255.938,224z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M160,224c-17.688,0-32,14.297-32,31.969S142.312,288,160,288c17.656,0,32-14.359,32-32.031S177.656,224,160,224z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M160,224c-17.688,0-32,14.297-32,31.969S142.312,288,160,288c17.656,0,32-14.359,32-32.031S177.656,224,160,224z" + }, + "children": [] + }] + }] + }] +}; +exports.threePoints = threePoints; \ No newline at end of file diff --git a/dist/metrize/threePointsBottom.js b/dist/metrize/threePointsBottom.js new file mode 100644 index 000000000..1909b2623 --- /dev/null +++ b/dist/metrize/threePointsBottom.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.threePointsBottom = void 0; +var threePointsBottom = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M351.938,320C334.266,320,320,334.297,320,351.969S334.266,384,351.938,384C369.672,384,384,369.641,384,351.969\r\n\t\tS369.672,320,351.938,320z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M351.938,320C334.266,320,320,334.297,320,351.969S334.266,384,351.938,384C369.672,384,384,369.641,384,351.969\r\n\t\tS369.672,320,351.938,320z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M255.938,320C238.266,320,224,334.297,224,351.969S238.266,384,255.938,384C273.672,384,288,369.641,288,351.969\r\n\t\tS273.672,320,255.938,320z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M255.938,320C238.266,320,224,334.297,224,351.969S238.266,384,255.938,384C273.672,384,288,369.641,288,351.969\r\n\t\tS273.672,320,255.938,320z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M160,320c-17.688,0-32,14.297-32,31.969S142.312,384,160,384c17.656,0,32-14.359,32-32.031S177.656,320,160,320z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M160,320c-17.688,0-32,14.297-32,31.969S142.312,384,160,384c17.656,0,32-14.359,32-32.031S177.656,320,160,320z" + }, + "children": [] + }] + }] + }] +}; +exports.threePointsBottom = threePointsBottom; \ No newline at end of file diff --git a/dist/metrize/threePointsTop.js b/dist/metrize/threePointsTop.js new file mode 100644 index 000000000..a07234686 --- /dev/null +++ b/dist/metrize/threePointsTop.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.threePointsTop = void 0; +var threePointsTop = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M351.938,128C334.266,128,320,142.297,320,159.969S334.266,192,351.938,192C369.672,192,384,177.641,384,159.969\r\n\t\tS369.672,128,351.938,128z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M351.938,128C334.266,128,320,142.297,320,159.969S334.266,192,351.938,192C369.672,192,384,177.641,384,159.969\r\n\t\tS369.672,128,351.938,128z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M255.938,128C238.266,128,224,142.297,224,159.969S238.266,192,255.938,192C273.672,192,288,177.641,288,159.969\r\n\t\tS273.672,128,255.938,128z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M255.938,128C238.266,128,224,142.297,224,159.969S238.266,192,255.938,192C273.672,192,288,177.641,288,159.969\r\n\t\tS273.672,128,255.938,128z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M160,128c-17.688,0-32,14.297-32,31.969S142.312,192,160,192c17.656,0,32-14.359,32-32.031S177.656,128,160,128z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M160,128c-17.688,0-32,14.297-32,31.969S142.312,192,160,192c17.656,0,32-14.359,32-32.031S177.656,128,160,128z" + }, + "children": [] + }] + }] + }] +}; +exports.threePointsTop = threePointsTop; \ No newline at end of file diff --git a/dist/metrize/topBottom.js b/dist/metrize/topBottom.js new file mode 100644 index 000000000..1776e1141 --- /dev/null +++ b/dist/metrize/topBottom.js @@ -0,0 +1,99 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.topBottom = void 0; +var topBottom = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\t\tS397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256\r\n\t\tS397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "208,304 256,352 304,304 272,304 272,208 304,208 256,160 208,208 \r\n\t\t\t240,208 240,304 \t\t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "208,304 256,352 304,304 272,304 272,208 304,208 256,160 208,208 \r\n\t\t\t240,208 240,304 \t\t" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "192", + "y": "128", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "128", + "height": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "192", + "y": "128", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "128", + "height": "16" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "192", + "y": "368", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "128", + "height": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "192", + "y": "368", + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "width": "128", + "height": "16" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.topBottom = topBottom; \ No newline at end of file diff --git a/dist/metrize/triplePoints.js b/dist/metrize/triplePoints.js new file mode 100644 index 000000000..60bb1ab41 --- /dev/null +++ b/dist/metrize/triplePoints.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.triplePoints = void 0; +var triplePoints = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M352,128c-17.672,0-32,14.328-32,32c0,1.781,0.25,3.5,0.531,5.188l-139.812,66.594C175.125,227,167.938,224,160,224\r\n\tc-17.672,0-32,14.328-32,32s14.328,32,32,32c6.781,0,13.062-2.156,18.25-5.75l64.938,56.062C241.203,342.484,240,347.078,240,352\r\n\tc0,17.672,14.328,32,32,32s32-14.328,32-32s-14.328-32-32-32c-6.938,0-13.328,2.266-18.562,6.031l-64.812-55.969\r\n\tc2.094-4.266,3.375-9,3.375-14.062c0-3.844-0.781-7.484-2.031-10.906l137.078-65.281C332.906,187.188,341.844,192,352,192\r\n\tc17.672,0,32-14.328,32-32S369.672,128,352,128z M144,256c0-8.812,7.188-16,16-16s16,7.188,16,16s-7.188,16-16,16\r\n\tS144,264.812,144,256z M272,336c8.828,0,16,7.172,16,16s-7.172,16-16,16c-8.812,0-16-7.172-16-16S263.188,336,272,336z M352,176\r\n\tc-8.828,0-16-7.188-16-16s7.172-16,16-16s16,7.188,16,16S360.828,176,352,176z" + }, + "children": [] + }] +}; +exports.triplePoints = triplePoints; \ No newline at end of file diff --git a/dist/metrize/underline.js b/dist/metrize/underline.js new file mode 100644 index 000000000..b6e38121d --- /dev/null +++ b/dist/metrize/underline.js @@ -0,0 +1,59 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.underline = void 0; +var underline = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M288.25,149.125V144H352v5.125h-6.75c-7.125,0-12.531,3.094-16.344,9.25c-1.844,2.875-2.781,9.516-2.781,19.938v76.062\r\n\t\t\tc0,18.828-1.844,33.422-5.375,43.781c-3.594,10.391-10.625,19.281-21.156,26.703C289.125,332.281,274.875,336,256.781,336\r\n\t\t\tc-19.641,0-34.562-3.547-44.719-10.672c-10.188-7.062-17.406-16.625-21.656-28.609c-2.812-8.219-4.25-23.609-4.25-46.219v-73.312\r\n\t\t\tc0-11.531-1.531-19.062-4.578-22.688c-3.062-3.578-7.984-5.375-14.828-5.375H160V144h77.812v5.125h-6.875\r\n\t\t\tc-7.469,0-12.75,2.438-15.969,7.328c-2.188,3.312-3.312,10.234-3.312,20.734v81.75c0,7.297,0.625,15.641,1.906,25.047\r\n\t\t\tc1.281,9.422,3.625,16.75,7,22s8.219,9.594,14.531,13.016c6.312,3.391,14.094,5.109,23.297,5.109\r\n\t\t\tc11.797,0,22.297-2.672,31.609-8.016c9.312-5.375,15.625-12.219,19.062-20.562c3.406-8.344,5.094-22.453,5.094-42.391v-75.953\r\n\t\t\tc0-11.703-1.25-19.031-3.75-21.969c-3.406-4.078-8.531-6.094-15.344-6.094H288.25z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M288.25,149.125V144H352v5.125h-6.75c-7.125,0-12.531,3.094-16.344,9.25c-1.844,2.875-2.781,9.516-2.781,19.938v76.062\r\n\t\t\tc0,18.828-1.844,33.422-5.375,43.781c-3.594,10.391-10.625,19.281-21.156,26.703C289.125,332.281,274.875,336,256.781,336\r\n\t\t\tc-19.641,0-34.562-3.547-44.719-10.672c-10.188-7.062-17.406-16.625-21.656-28.609c-2.812-8.219-4.25-23.609-4.25-46.219v-73.312\r\n\t\t\tc0-11.531-1.531-19.062-4.578-22.688c-3.062-3.578-7.984-5.375-14.828-5.375H160V144h77.812v5.125h-6.875\r\n\t\t\tc-7.469,0-12.75,2.438-15.969,7.328c-2.188,3.312-3.312,10.234-3.312,20.734v81.75c0,7.297,0.625,15.641,1.906,25.047\r\n\t\t\tc1.281,9.422,3.625,16.75,7,22s8.219,9.594,14.531,13.016c6.312,3.391,14.094,5.109,23.297,5.109\r\n\t\t\tc11.797,0,22.297-2.672,31.609-8.016c9.312-5.375,15.625-12.219,19.062-20.562c3.406-8.344,5.094-22.453,5.094-42.391v-75.953\r\n\t\t\tc0-11.703-1.25-19.031-3.75-21.969c-3.406-4.078-8.531-6.094-15.344-6.094H288.25z" + }, + "children": [] + }] + }] + }] + }, { + "name": "rect", + "attribs": { + "x": "160", + "y": "352", + "width": "192", + "height": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "160", + "y": "352", + "width": "192", + "height": "16" + }, + "children": [] + }] + }] + }] +}; +exports.underline = underline; \ No newline at end of file diff --git a/dist/metrize/upload.js b/dist/metrize/upload.js new file mode 100644 index 000000000..e34bcc635 --- /dev/null +++ b/dist/metrize/upload.js @@ -0,0 +1,53 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.upload = void 0; +var upload = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "352,320 352,352 256,352 160,352 160,320 128,320 128,384 384,384 \r\n\t\t384,320 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "352,320 352,352 256,352 160,352 160,320 128,320 128,384 384,384 \r\n\t\t384,320 \t" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "240.047,208 240.047,336 272.047,336 272.047,208 320.047,208 \r\n\t\t256.047,128 192.047,208 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "points": "240.047,208 240.047,336 272.047,336 272.047,208 320.047,208 \r\n\t\t256.047,128 192.047,208 \t" + }, + "children": [] + }] + }] + }] +}; +exports.upload = upload; \ No newline at end of file diff --git a/dist/metrize/uploadSelection.js b/dist/metrize/uploadSelection.js new file mode 100644 index 000000000..4febe95f3 --- /dev/null +++ b/dist/metrize/uploadSelection.js @@ -0,0 +1,153 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.uploadSelection = void 0; +var uploadSelection = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "rect", + "attribs": { + "x": "144.125", + "y": "224.031", + "width": "15.984", + "height": "63.922" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "144.125", + "y": "224.031", + "width": "15.984", + "height": "63.922" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M167.969,368h8v-15.984h-8c-4.391,0-7.984-3.578-7.984-8v-7.984H144v7.984C144,357.234,154.75,368,167.969,368z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M167.969,368h8v-15.984h-8c-4.391,0-7.984-3.578-7.984-8v-7.984H144v7.984C144,357.234,154.75,368,167.969,368z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "224.031", + "y": "351.891", + "width": "63.938", + "height": "15.984" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "224.031", + "y": "351.891", + "width": "63.938", + "height": "15.984" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M368,344.031l-0.125-8.125h-15.984l0.125,8.125c0,4.406-3.578,7.984-7.984,7.984h-8V368h8\r\n\t\tC357.25,368,368,357.25,368,344.031z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M368,344.031l-0.125-8.125h-15.984l0.125,8.125c0,4.406-3.578,7.984-7.984,7.984h-8V368h8\r\n\t\tC357.25,368,368,357.25,368,344.031z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "351.891", + "y": "224.031", + "width": "15.984", + "height": "63.938" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "351.891", + "y": "224.031", + "width": "15.984", + "height": "63.938" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M352.016,167.969v8H368v-8C368,154.75,357.25,144,344.031,144h-7.984v15.984h7.984\r\n\t\tC348.438,159.984,352.016,163.578,352.016,167.969z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M352.016,167.969v8H368v-8C368,154.75,357.25,144,344.031,144h-7.984v15.984h7.984\r\n\t\tC348.438,159.984,352.016,163.578,352.016,167.969z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "224.031", + "y": "144.125", + "width": "63.938", + "height": "15.984" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "224.031", + "y": "144.125", + "width": "63.938", + "height": "15.984" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M159.984,167.969c0-4.391,3.594-7.984,7.984-7.984h8V144h-8C154.75,144,144,154.75,144,167.969v8h15.984V167.969z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M159.984,167.969c0-4.391,3.594-7.984,7.984-7.984h8V144h-8C154.75,144,144,154.75,144,167.969v8h15.984V167.969z" + }, + "children": [] + }] + }, { + "name": "polygon", + "attribs": { + "points": "239.891,320.109 271.859,320.125 271.984,239.828 303.953,239.828 256,191.891 208.047,239.828 239.906,239.75 \t\r\n\t\t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "239.891,320.109 271.859,320.125 271.984,239.828 303.953,239.828 256,191.891 208.047,239.828 239.906,239.75 \t\r\n\t\t" + }, + "children": [] + }] + }] + }] +}; +exports.uploadSelection = uploadSelection; \ No newline at end of file diff --git a/dist/metrize/uploadSelectionCircle.js b/dist/metrize/uploadSelectionCircle.js new file mode 100644 index 000000000..9f603eb2f --- /dev/null +++ b/dist/metrize/uploadSelectionCircle.js @@ -0,0 +1,153 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.uploadSelectionCircle = void 0; +var uploadSelectionCircle = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "208.109,240.039 240.039,240.039 240.039,319.867 271.969,319.867 271.969,240.039 303.891,240.039 256,192.148 \t\r\n\t\t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "208.109,240.039 240.039,240.039 240.039,319.867 271.969,319.867 271.969,240.039 303.891,240.039 256,192.148 \t\r\n\t\t" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M189.484,165.883c-9.445,6.969-17.711,15.359-24.539,24.906l12.961,9.281c5.867-8.188,12.961-15.344,21.062-21.359\r\n\t\tL189.484,165.883z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M189.484,165.883c-9.445,6.969-17.711,15.359-24.539,24.906l12.961,9.281c5.867-8.188,12.961-15.344,21.062-21.359\r\n\t\tL189.484,165.883z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M255.164,159.961l-0.148-15.969c-11.789,0.109-23.398,2.031-34.5,5.75l5.055,15.125\r\n\t\tC235.078,161.695,245.023,160.039,255.164,159.961z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M255.164,159.961l-0.148-15.969c-11.789,0.109-23.398,2.031-34.5,5.75l5.055,15.125\r\n\t\tC235.078,161.695,245.023,160.039,255.164,159.961z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M190.516,346.867c9.539,6.875,20.047,12.203,31.227,15.781l4.891-15.203c-9.586-3.062-18.594-7.609-26.766-13.516\r\n\t\tL190.516,346.867z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M190.516,346.867c9.539,6.875,20.047,12.203,31.227,15.781l4.891-15.203c-9.586-3.062-18.594-7.609-26.766-13.516\r\n\t\tL190.516,346.867z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M149.633,291.18c3.703,11.141,9.094,21.594,16.07,31.078l12.852-9.453c-5.953-8.141-10.602-17.094-13.766-26.641\r\n\t\tL149.633,291.18z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M149.633,291.18c3.703,11.141,9.094,21.594,16.07,31.078l12.852-9.453c-5.953-8.141-10.602-17.094-13.766-26.641\r\n\t\tL149.633,291.18z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M164.453,226.883l-15.219-4.828c-3.469,10.953-5.234,22.359-5.234,33.938v0.609l15.961-0.609\r\n\t\tC159.961,246.055,161.477,236.258,164.453,226.883z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M164.453,226.883l-15.219-4.828c-3.469,10.953-5.234,22.359-5.234,33.938v0.609l15.961-0.609\r\n\t\tC159.961,246.055,161.477,236.258,164.453,226.883z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M345.938,189.227l-12.828,9.516c6.047,8.109,10.734,17.047,13.938,26.547l15.141-5.094\r\n\t\tC358.453,209.102,352.984,198.664,345.938,189.227z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M345.938,189.227l-12.828,9.516c6.047,8.109,10.734,17.047,13.938,26.547l15.141-5.094\r\n\t\tC358.453,209.102,352.984,198.664,345.938,189.227z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M363.25,255.164l-11.219,0.828c0,10.109-1.578,20.078-4.672,29.641l15.203,4.906c3.609-11.141,5.438-22.75,5.438-34.859\r\n\t\tL363.25,255.164z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M363.25,255.164l-11.219,0.828c0,10.109-1.578,20.078-4.672,29.641l15.203,4.906c3.609-11.141,5.438-22.75,5.438-34.859\r\n\t\tL363.25,255.164z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M312.547,333.617l9.422,12.875c9.516-6.938,17.828-15.281,24.703-24.766l-12.906-9.391\r\n\t\tC327.859,320.492,320.703,327.633,312.547,333.617z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M312.547,333.617l9.422,12.875c9.516-6.938,17.828-15.281,24.703-24.766l-12.906-9.391\r\n\t\tC327.859,320.492,320.703,327.633,312.547,333.617z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M289.625,149.133l-4.812,15.234c9.594,3.016,18.641,7.516,26.859,13.375l9.281-13.016\r\n\t\tC311.344,157.914,300.797,152.648,289.625,149.133z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M289.625,149.133l-4.812,15.234c9.594,3.016,18.641,7.516,26.859,13.375l9.281-13.016\r\n\t\tC311.344,157.914,300.797,152.648,289.625,149.133z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256.273,352.055l0.062,15.953c11.828-0.047,23.43-1.906,34.539-5.531l-4.984-15.172\r\n\t\tC276.406,350.398,266.438,351.992,256.273,352.055z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256.273,352.055l0.062,15.953c11.828-0.047,23.43-1.906,34.539-5.531l-4.984-15.172\r\n\t\tC276.406,350.398,266.438,351.992,256.273,352.055z" + }, + "children": [] + }] + }] + }] +}; +exports.uploadSelectionCircle = uploadSelectionCircle; \ No newline at end of file diff --git a/dist/metrize/user.js b/dist/metrize/user.js new file mode 100644 index 000000000..5c4055a10 --- /dev/null +++ b/dist/metrize/user.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.user = void 0; +var user = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M325.906,306.188c-16-2.734-37.906-18.25-37.906-24.984v-17.016c0-6.344,8.594-18.219,12.25-29.156\r\n\t\tc0.344-1.031,2.547,0.156,4.688-2.453c4.031-4.969,4.625-12.516,5.547-15.953c1.469-5.406-5.094-5.625-5.094-5.625\r\n\t\ts4.891-28.375,0.547-46.297c-5.875-24.406-37.5-36.703-49.875-36.703c-12.391,0-43.969,12.297-49.875,36.703\r\n\t\tc-4.344,17.922,0.656,46.297,0.656,46.297s-6.328,0.219-4.875,5.625c0.938,3.438,1.969,10.984,6.031,15.953\r\n\t\tc2.125,2.609,3.406,1.422,3.75,2.453c3.656,10.938,12.25,22.812,12.25,29.156v17.016c0,6.734-21.922,22.25-37.922,24.984\r\n\t\tc-20.547,3.5-30.703,17.703-25.891,53.125c2.406,17.688,49.094,25.297,95.344,24.641c46.25,0.656,93.641-6.953,96.047-24.641\r\n\t\tC356.406,323.891,346.469,309.688,325.906,306.188z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M325.906,306.188c-16-2.734-37.906-18.25-37.906-24.984v-17.016c0-6.344,8.594-18.219,12.25-29.156\r\n\t\tc0.344-1.031,2.547,0.156,4.688-2.453c4.031-4.969,4.625-12.516,5.547-15.953c1.469-5.406-5.094-5.625-5.094-5.625\r\n\t\ts4.891-28.375,0.547-46.297c-5.875-24.406-37.5-36.703-49.875-36.703c-12.391,0-43.969,12.297-49.875,36.703\r\n\t\tc-4.344,17.922,0.656,46.297,0.656,46.297s-6.328,0.219-4.875,5.625c0.938,3.438,1.969,10.984,6.031,15.953\r\n\t\tc2.125,2.609,3.406,1.422,3.75,2.453c3.656,10.938,12.25,22.812,12.25,29.156v17.016c0,6.734-21.922,22.25-37.922,24.984\r\n\t\tc-20.547,3.5-30.703,17.703-25.891,53.125c2.406,17.688,49.094,25.297,95.344,24.641c46.25,0.656,93.641-6.953,96.047-24.641\r\n\t\tC356.406,323.891,346.469,309.688,325.906,306.188z" + }, + "children": [] + }] + }] + }] +}; +exports.user = user; \ No newline at end of file diff --git a/dist/metrize/userAdd.js b/dist/metrize/userAdd.js new file mode 100644 index 000000000..b15f204a9 --- /dev/null +++ b/dist/metrize/userAdd.js @@ -0,0 +1,75 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.userAdd = void 0; +var userAdd = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M325.906,306.188c-16-2.734-37.906-18.25-37.906-24.984v-17.016c0-6.344,8.594-18.219,12.25-29.156\r\n\t\tc0.344-1.031,2.547,0.156,4.688-2.438c4.031-4.969,4.625-12.531,5.547-15.969c1.469-5.406-5.094-5.625-5.094-5.625\r\n\t\ts4.891-28.375,0.547-46.281c-5.875-24.406-37.5-36.719-49.875-36.719s-43.969,12.312-49.875,36.719\r\n\t\tc-4.328,17.906,0.656,46.281,0.656,46.281s-6.312,0.219-4.875,5.625c0.938,3.438,1.984,11,6.031,15.969\r\n\t\tc2.125,2.594,3.422,1.406,3.766,2.438C215.406,245.969,224,257.844,224,264.188v17.016c0,6.734-21.922,22.25-37.922,24.984\r\n\t\tc-20.547,3.5-30.703,17.703-25.891,53.125c2.406,17.688,49.094,25.297,95.344,24.641c46.25,0.656,93.641-6.953,96.047-24.641\r\n\t\tC356.406,323.891,346.469,309.688,325.906,306.188z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M325.906,306.188c-16-2.734-37.906-18.25-37.906-24.984v-17.016c0-6.344,8.594-18.219,12.25-29.156\r\n\t\tc0.344-1.031,2.547,0.156,4.688-2.438c4.031-4.969,4.625-12.531,5.547-15.969c1.469-5.406-5.094-5.625-5.094-5.625\r\n\t\ts4.891-28.375,0.547-46.281c-5.875-24.406-37.5-36.719-49.875-36.719s-43.969,12.312-49.875,36.719\r\n\t\tc-4.328,17.906,0.656,46.281,0.656,46.281s-6.312,0.219-4.875,5.625c0.938,3.438,1.984,11,6.031,15.969\r\n\t\tc2.125,2.594,3.422,1.406,3.766,2.438C215.406,245.969,224,257.844,224,264.188v17.016c0,6.734-21.922,22.25-37.922,24.984\r\n\t\tc-20.547,3.5-30.703,17.703-25.891,53.125c2.406,17.688,49.094,25.297,95.344,24.641c46.25,0.656,93.641-6.953,96.047-24.641\r\n\t\tC356.406,323.891,346.469,309.688,325.906,306.188z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "336", + "y": "176", + "width": "48", + "height": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "336", + "y": "176", + "width": "48", + "height": "16" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "352", + "y": "160", + "width": "16", + "height": "48" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "352", + "y": "160", + "width": "16", + "height": "48" + }, + "children": [] + }] + }] + }] +}; +exports.userAdd = userAdd; \ No newline at end of file diff --git a/dist/metrize/userBan.js b/dist/metrize/userBan.js new file mode 100644 index 000000000..2bb9758ce --- /dev/null +++ b/dist/metrize/userBan.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.userBan = void 0; +var userBan = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M325.906,306.188c-16-2.734-37.906-18.25-37.906-24.984v-17.016c0-6.344,8.594-18.219,12.25-29.156\r\n\t\tc0.344-1.031,2.547,0.156,4.688-2.438c4.031-4.969,4.625-12.531,5.547-15.969c1.469-5.406-5.094-5.625-5.094-5.625\r\n\t\ts4.891-28.375,0.547-46.281c-5.875-24.406-37.5-36.719-49.875-36.719s-43.969,12.312-49.875,36.719\r\n\t\tc-4.328,17.906,0.656,46.281,0.656,46.281s-6.312,0.219-4.875,5.625c0.938,3.438,1.984,11,6.031,15.969\r\n\t\tc2.125,2.594,3.422,1.406,3.766,2.438C215.406,245.969,224,257.844,224,264.188v17.016c0,6.734-21.922,22.25-37.922,24.984\r\n\t\tc-20.547,3.5-30.703,17.703-25.891,53.125c2.406,17.688,49.094,25.297,95.344,24.641c46.25,0.656,93.641-6.953,96.047-24.641\r\n\t\tC356.406,323.891,346.469,309.688,325.906,306.188z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M325.906,306.188c-16-2.734-37.906-18.25-37.906-24.984v-17.016c0-6.344,8.594-18.219,12.25-29.156\r\n\t\tc0.344-1.031,2.547,0.156,4.688-2.438c4.031-4.969,4.625-12.531,5.547-15.969c1.469-5.406-5.094-5.625-5.094-5.625\r\n\t\ts4.891-28.375,0.547-46.281c-5.875-24.406-37.5-36.719-49.875-36.719s-43.969,12.312-49.875,36.719\r\n\t\tc-4.328,17.906,0.656,46.281,0.656,46.281s-6.312,0.219-4.875,5.625c0.938,3.438,1.984,11,6.031,15.969\r\n\t\tc2.125,2.594,3.422,1.406,3.766,2.438C215.406,245.969,224,257.844,224,264.188v17.016c0,6.734-21.922,22.25-37.922,24.984\r\n\t\tc-20.547,3.5-30.703,17.703-25.891,53.125c2.406,17.688,49.094,25.297,95.344,24.641c46.25,0.656,93.641-6.953,96.047-24.641\r\n\t\tC356.406,323.891,346.469,309.688,325.906,306.188z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "336", + "y": "176", + "width": "48", + "height": "16" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "336", + "y": "176", + "width": "48", + "height": "16" + }, + "children": [] + }] + }] + }] +}; +exports.userBan = userBan; \ No newline at end of file diff --git a/dist/metrize/userRemove.js b/dist/metrize/userRemove.js new file mode 100644 index 000000000..fb149cb35 --- /dev/null +++ b/dist/metrize/userRemove.js @@ -0,0 +1,79 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.userRemove = void 0; +var userRemove = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M325.906,306.188c-16-2.734-37.906-18.25-37.906-24.984v-17.016c0-6.344,8.594-18.219,12.25-29.156\r\n\t\tc0.344-1.031,2.547,0.156,4.688-2.438c4.031-4.969,4.625-12.531,5.547-15.969c1.469-5.406-5.094-5.625-5.094-5.625\r\n\t\ts4.891-28.375,0.547-46.281c-5.891-24.406-37.5-36.719-49.875-36.719s-43.969,12.312-49.875,36.719\r\n\t\tc-4.328,17.906,0.656,46.281,0.656,46.281s-6.328,0.219-4.875,5.625c0.938,3.438,1.984,11,6.031,15.969\r\n\t\tc2.125,2.594,3.422,1.406,3.766,2.438C215.422,245.969,224,257.844,224,264.188v17.016c0,6.734-21.922,22.25-37.922,24.984\r\n\t\tc-20.531,3.5-30.703,17.703-25.891,53.125c2.406,17.688,49.094,25.297,95.344,24.641c46.25,0.656,93.641-6.953,96.047-24.641\r\n\t\tC356.406,323.891,346.469,309.688,325.906,306.188z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M325.906,306.188c-16-2.734-37.906-18.25-37.906-24.984v-17.016c0-6.344,8.594-18.219,12.25-29.156\r\n\t\tc0.344-1.031,2.547,0.156,4.688-2.438c4.031-4.969,4.625-12.531,5.547-15.969c1.469-5.406-5.094-5.625-5.094-5.625\r\n\t\ts4.891-28.375,0.547-46.281c-5.891-24.406-37.5-36.719-49.875-36.719s-43.969,12.312-49.875,36.719\r\n\t\tc-4.328,17.906,0.656,46.281,0.656,46.281s-6.328,0.219-4.875,5.625c0.938,3.438,1.984,11,6.031,15.969\r\n\t\tc2.125,2.594,3.422,1.406,3.766,2.438C215.422,245.969,224,257.844,224,264.188v17.016c0,6.734-21.922,22.25-37.922,24.984\r\n\t\tc-20.531,3.5-30.703,17.703-25.891,53.125c2.406,17.688,49.094,25.297,95.344,24.641c46.25,0.656,93.641-6.953,96.047-24.641\r\n\t\tC356.406,323.891,346.469,309.688,325.906,306.188z" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "336.003", + "y": "176.001", + "transform": "matrix(0.7071 0.7071 -0.7071 0.7071 235.5492 -200.6661)", + "width": "47.995", + "height": "15.998" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "336.003", + "y": "176.001", + "transform": "matrix(0.7071 0.7071 -0.7071 0.7071 235.5492 -200.6661)", + "width": "47.995", + "height": "15.998" + }, + "children": [] + }] + }, { + "name": "rect", + "attribs": { + "x": "352.001", + "y": "160.003", + "transform": "matrix(0.7071 0.7071 -0.7071 0.7071 235.5492 -200.6661)", + "width": "15.998", + "height": "47.995" + }, + "children": [{ + "name": "rect", + "attribs": { + "x": "352.001", + "y": "160.003", + "transform": "matrix(0.7071 0.7071 -0.7071 0.7071 235.5492 -200.6661)", + "width": "15.998", + "height": "47.995" + }, + "children": [] + }] + }] + }] +}; +exports.userRemove = userRemove; \ No newline at end of file diff --git a/dist/metrize/viewport.js b/dist/metrize/viewport.js new file mode 100644 index 000000000..a77020765 --- /dev/null +++ b/dist/metrize/viewport.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.viewport = void 0; +var viewport = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M319.5,208.5h-128v96h128V208.5z M367.5,336.5h-48v16h64v-64h-16V336.5z\r\n\t M319.5,160.5v16h48v48h16v-64H319.5z M143.5,176.5h48v-16h-64v64h16V176.5z M143.5,288.5h-16v64h64v-16h-48V288.5z" + }, + "children": [] + }] +}; +exports.viewport = viewport; \ No newline at end of file diff --git a/dist/metrize/viewportVideo.js b/dist/metrize/viewportVideo.js new file mode 100644 index 000000000..22b250d4d --- /dev/null +++ b/dist/metrize/viewportVideo.js @@ -0,0 +1,53 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.viewportVideo = void 0; +var viewportVideo = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256c0,141.391,114.609,256,256,256c141.391,0,256-114.609,256-256\r\n\tC512,114.609,397.391,0,256,0z M256,472c-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "312.5,368 216.5,368 264.5,288 \t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "312.5,368 216.5,368 264.5,288 \t" + }, + "children": [] + }] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "polygon", + "attribs": { + "points": "384,144 128,144 128,336 207.438,336 226.641,304 160,304 160,176 352,176 352,304 302.359,304 321.562,336 \r\n\t\t\t384,336 \t\t" + }, + "children": [{ + "name": "polygon", + "attribs": { + "points": "384,144 128,144 128,336 207.438,336 226.641,304 160,304 160,176 352,176 352,304 302.359,304 321.562,336 \r\n\t\t\t384,336 \t\t" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.viewportVideo = viewportVideo; \ No newline at end of file diff --git a/dist/metrize/waves.js b/dist/metrize/waves.js new file mode 100644 index 000000000..0ca258a4f --- /dev/null +++ b/dist/metrize/waves.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.waves = void 0; +var waves = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.625,0,0,114.609,0,256s114.625,256,256,256c141.406,0,256-114.609,256-256S397.406,0,256,0z M256,472\r\n\t\tc-119.281,0-216-96.703-216-216S136.719,40,256,40c119.312,0,216,96.703,216,216S375.312,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.625,0,0,114.609,0,256s114.625,256,256,256c141.406,0,256-114.609,256-256S397.406,0,256,0z M256,472\r\n\t\tc-119.281,0-216-96.703-216-216S136.719,40,256,40c119.312,0,216,96.703,216,216S375.312,472,256,472z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M312.188,335.281c-13.516,0-33.297-15.125-50.75-28.469c-21.656-16.547-44.062-33.656-66.875-33.656\r\n\t\tc-42.75,0-65.609,29.266-66.562,30.5l26.328,19.844c0.141-0.172,14.109-17.531,40.234-17.531c11.594,0,30.25,14.281,46.719,26.828\r\n\t\tc22.703,17.359,46.172,35.297,70.906,35.297c45.484,0,70.766-34.406,71.812-35.844l-26.812-19.172\r\n\t\tC356.5,313.984,340.359,335.281,312.188,335.281z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M312.188,335.281c-13.516,0-33.297-15.125-50.75-28.469c-21.656-16.547-44.062-33.656-66.875-33.656\r\n\t\tc-42.75,0-65.609,29.266-66.562,30.5l26.328,19.844c0.141-0.172,14.109-17.531,40.234-17.531c11.594,0,30.25,14.281,46.719,26.828\r\n\t\tc22.703,17.359,46.172,35.297,70.906,35.297c45.484,0,70.766-34.406,71.812-35.844l-26.812-19.172\r\n\t\tC356.5,313.984,340.359,335.281,312.188,335.281z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M312.188,206.031c-13.516,0-33.297-15.125-50.75-28.477c-21.656-16.531-44.062-33.648-66.875-33.648\r\n\t\tc-42.75,0-65.609,29.266-66.562,30.516l26.328,19.836c0.141-0.18,14.109-17.539,40.234-17.539c11.594,0,30.25,14.266,46.719,26.844\r\n\t\tc22.703,17.344,46.172,35.281,70.906,35.281c45.484,0,70.766-34.391,71.812-35.844l-26.812-19.18\r\n\t\tC356.5,184.727,340.359,206.031,312.188,206.031z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M312.188,206.031c-13.516,0-33.297-15.125-50.75-28.477c-21.656-16.531-44.062-33.648-66.875-33.648\r\n\t\tc-42.75,0-65.609,29.266-66.562,30.516l26.328,19.836c0.141-0.18,14.109-17.539,40.234-17.539c11.594,0,30.25,14.266,46.719,26.844\r\n\t\tc22.703,17.344,46.172,35.281,70.906,35.281c45.484,0,70.766-34.391,71.812-35.844l-26.812-19.18\r\n\t\tC356.5,184.727,340.359,206.031,312.188,206.031z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M312.188,270.906c-13.516,0-33.297-15.141-50.75-28.469c-21.656-16.547-44.062-33.656-66.875-33.656\r\n\t\tc-42.75,0-65.609,29.266-66.562,30.5l26.328,19.844c0.141-0.188,14.109-17.531,40.234-17.531c11.594,0,30.25,14.266,46.719,26.844\r\n\t\tc22.703,17.344,46.172,35.281,70.906,35.281c45.484,0,70.766-34.406,71.812-35.844l-26.812-19.188\r\n\t\tC356.5,249.594,340.359,270.906,312.188,270.906z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M312.188,270.906c-13.516,0-33.297-15.141-50.75-28.469c-21.656-16.547-44.062-33.656-66.875-33.656\r\n\t\tc-42.75,0-65.609,29.266-66.562,30.5l26.328,19.844c0.141-0.188,14.109-17.531,40.234-17.531c11.594,0,30.25,14.266,46.719,26.844\r\n\t\tc22.703,17.344,46.172,35.281,70.906,35.281c45.484,0,70.766-34.406,71.812-35.844l-26.812-19.188\r\n\t\tC356.5,249.594,340.359,270.906,312.188,270.906z" + }, + "children": [] + }] + }] + }] +}; +exports.waves = waves; \ No newline at end of file diff --git a/dist/metrize/wifi.js b/dist/metrize/wifi.js new file mode 100644 index 000000000..5a198ff90 --- /dev/null +++ b/dist/metrize/wifi.js @@ -0,0 +1,75 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.wifi = void 0; +var wifi = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,336.156c-8.828,0-16,7.141-16,15.984s7.172,16.016,16,16.016s16-7.172,16-16.016S264.828,336.156,256,336.156z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,336.156c-8.828,0-16,7.141-16,15.984s7.172,16.016,16,16.016s16-7.172,16-16.016S264.828,336.156,256,336.156z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,272.031c-23.125,0-43.562,10.625-57.359,27.047l14.547,19.391c9.297-13.734,24.984-22.75,42.812-22.75\r\n\t\ts33.516,9.016,42.797,22.75l14.578-19.391C299.547,282.656,279.125,272.031,256,272.031z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,272.031c-23.125,0-43.562,10.625-57.359,27.047l14.547,19.391c9.297-13.734,24.984-22.75,42.812-22.75\r\n\t\ts33.516,9.016,42.797,22.75l14.578-19.391C299.547,282.656,279.125,272.031,256,272.031z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M163.031,245.828l14.375,19.078c19.906-20.5,47.734-33.281,78.594-33.281c30.844,0,58.641,12.781,78.609,33.281\r\n\t\tl14.328-19.094c-24.031-23.406-56.781-37.875-92.938-37.875C219.812,207.938,187.062,222.406,163.031,245.828z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M163.031,245.828l14.375,19.078c19.906-20.5,47.734-33.281,78.594-33.281c30.844,0,58.641,12.781,78.609,33.281\r\n\t\tl14.328-19.094c-24.031-23.406-56.781-37.875-92.938-37.875C219.812,207.938,187.062,222.406,163.031,245.828z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M128,193.594l15.562,20.75c29.562-27.422,68.984-44.328,112.438-44.328s82.875,16.906,112.406,44.328L384,193.562\r\n\t\tc-33.922-30.594-78.734-49.391-128-49.391C206.719,144.172,161.938,162.969,128,193.594z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M128,193.594l15.562,20.75c29.562-27.422,68.984-44.328,112.438-44.328s82.875,16.906,112.406,44.328L384,193.562\r\n\t\tc-33.922-30.594-78.734-49.391-128-49.391C206.719,144.172,161.938,162.969,128,193.594z" + }, + "children": [] + }] + }] + }] +}; +exports.wifi = wifi; \ No newline at end of file diff --git a/dist/metrize/wind.js b/dist/metrize/wind.js new file mode 100644 index 000000000..e2d7236b6 --- /dev/null +++ b/dist/metrize/wind.js @@ -0,0 +1,57 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.wind = void 0; +var wind = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M354.469,206.766c-16.312,0-29.547,13.234-29.547,29.547c0,3.469,0.719,6.734,1.812,9.844H137.844\r\n\t\tc-5.438,0-9.844,4.406-9.844,9.844s4.406,9.844,9.844,9.844h216.625c16.297,0,29.531-13.234,29.531-29.531\r\n\t\tC384,220,370.766,206.766,354.469,206.766z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M354.469,206.766c-16.312,0-29.547,13.234-29.547,29.547c0,3.469,0.719,6.734,1.812,9.844H137.844\r\n\t\tc-5.438,0-9.844,4.406-9.844,9.844s4.406,9.844,9.844,9.844h216.625c16.297,0,29.531-13.234,29.531-29.531\r\n\t\tC384,220,370.766,206.766,354.469,206.766z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M137.844,226.469H256c16.312,0,29.531-13.234,29.531-29.547c0-16.297-13.219-29.531-29.531-29.531\r\n\t\ts-29.531,13.234-29.531,29.531c0,3.469,0.719,6.75,1.797,9.844h-90.422c-5.438,0-9.844,4.406-9.844,9.844\r\n\t\tS132.406,226.469,137.844,226.469z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M137.844,226.469H256c16.312,0,29.531-13.234,29.531-29.547c0-16.297-13.219-29.531-29.531-29.531\r\n\t\ts-29.531,13.234-29.531,29.531c0,3.469,0.719,6.75,1.797,9.844h-90.422c-5.438,0-9.844,4.406-9.844,9.844\r\n\t\tS132.406,226.469,137.844,226.469z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M295.375,285.531c-0.562,0-1.125,0.141-1.719,0.188c-0.375-0.031-0.688-0.188-1.078-0.188H140.656\r\n\t\tc-7,0-12.656,4.422-12.656,9.859s5.656,9.844,12.656,9.844h127c-1.094,3.094-1.812,6.375-1.812,9.844\r\n\t\tc0,16.312,13.234,29.531,29.531,29.531c16.312,0,29.547-13.219,29.547-29.531S311.688,285.531,295.375,285.531z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M295.375,285.531c-0.562,0-1.125,0.141-1.719,0.188c-0.375-0.031-0.688-0.188-1.078-0.188H140.656\r\n\t\tc-7,0-12.656,4.422-12.656,9.859s5.656,9.844,12.656,9.844h127c-1.094,3.094-1.812,6.375-1.812,9.844\r\n\t\tc0,16.312,13.234,29.531,29.531,29.531c16.312,0,29.547-13.219,29.547-29.531S311.688,285.531,295.375,285.531z" + }, + "children": [] + }] + }] + }] +}; +exports.wind = wind; \ No newline at end of file diff --git a/dist/metrize/wireframeGlobe.js b/dist/metrize/wireframeGlobe.js new file mode 100644 index 000000000..93ad64e0d --- /dev/null +++ b/dist/metrize/wireframeGlobe.js @@ -0,0 +1,23 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.wireframeGlobe = void 0; +var wireframeGlobe = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M256,128c-70.688,0-128,57.312-128,128s57.312,128,128,128s128-57.312,128-128S326.688,128,256,128z M144.406,264h57.312\r\n\tc0.719,15.422,3.344,32.266,6.547,48h-49.109C150.844,297.688,145.641,281.406,144.406,264z M201.719,248h-57.312\r\n\tc1.234-17.406,6.438-33.688,14.75-48h49.109C205.062,215.734,202.438,232.578,201.719,248z M224.281,200h63.438\r\n\tc3.219,15.75,5.844,32.609,6.562,48h-76.562C218.438,232.609,221.062,215.75,224.281,200z M217.719,264h76.562\r\n\tc-0.719,15.391-3.344,32.234-6.562,48h-63.438C221.062,296.234,218.438,279.391,217.719,264z M310.281,264h57.312\r\n\tc-1.234,17.406-6.438,33.688-14.75,48h-49.109C306.953,296.266,309.562,279.422,310.281,264z M310.281,248\r\n\tc-0.719-15.422-3.328-32.266-6.547-48h49.109c8.312,14.312,13.516,30.594,14.75,48H310.281z M341.672,184h-41.484\r\n\tc-3.359-14.188-6.797-26.375-9.172-34.312C310.953,156.266,328.422,168.281,341.672,184z M273.75,145.547\r\n\tc2.266,7.359,6.406,21.484,10.422,38.453h-56.344c4.016-16.969,8.156-31.094,10.422-38.453C244.047,144.625,249.938,144,256,144\r\n\tS267.953,144.625,273.75,145.547z M221,149.688c-2.375,7.938-5.828,20.125-9.188,34.312h-41.469\r\n\tC183.562,168.281,201.047,156.266,221,149.688z M170.344,328h41.469c3.359,14.188,6.797,26.375,9.172,34.312\r\n\tC201.047,355.734,183.578,343.719,170.344,328z M238.25,366.453c-2.266-7.359-6.406-21.484-10.422-38.453h56.344\r\n\tc-4.016,16.953-8.141,31.094-10.406,38.453C267.969,367.375,262.062,368,256,368S244.047,367.375,238.25,366.453z M291.016,362.312\r\n\tc2.391-7.938,5.828-20.125,9.188-34.312h41.453C328.422,343.719,310.953,355.719,291.016,362.312z" + }, + "children": [] + }] +}; +exports.wireframeGlobe = wireframeGlobe; \ No newline at end of file diff --git a/dist/metrize/world.js b/dist/metrize/world.js new file mode 100644 index 000000000..b6b2bea44 --- /dev/null +++ b/dist/metrize/world.js @@ -0,0 +1,51 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.world = void 0; +var world = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M203.141,201c0.406,0.344,0.422,0.219,0.812,0.594c0.188-0.156,0.594-0.594,0.781-0.781\r\n\t\tc-0.547-0.867,0.094-0.867,0.375-0.125c-0.156-1.023,0.875-1.898,1.812-1.867C204.703,197.133,204.562,201.156,203.141,201z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M203.141,201c0.406,0.344,0.422,0.219,0.812,0.594c0.188-0.156,0.594-0.594,0.781-0.781\r\n\t\tc-0.547-0.867,0.094-0.867,0.375-0.125c-0.156-1.023,0.875-1.898,1.812-1.867C204.703,197.133,204.562,201.156,203.141,201z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256.016,127.992C185.297,127.992,128,185.297,128,256c0,70.688,57.297,128,128.016,128C326.688,384,384,326.688,384,256\r\n\t\tC384,185.297,326.688,127.992,256.016,127.992z M344.438,231.344c0,0.094,2.344,2.688,0.531,3\r\n\t\tc-0.844,0.156-0.906-1.906-0.969-2.312C344.219,232.031,344.328,231.562,344.438,231.344z M339.781,237.375\r\n\t\tc-0.031,0.031-0.484,0.688-0.484,0.062C339.438,237.406,339.625,237.406,339.781,237.375z M339.031,238.125\r\n\t\tc0.062,0.188,0.328,0.219,0.406,0.438c-0.438,0-0.281,0-0.594-0.094C338.906,238.344,338.969,238.25,339.031,238.125z\r\n\t\t M338.031,237.875c-0.375,0,0.031-0.25-0.359,0.031c-0.141-0.25-0.016-0.094-0.016-0.312c-0.062-0.188,0-0.25,0.188-0.188\r\n\t\tC337.906,237.562,337.969,237.719,338.031,237.875z M322.5,226.469c0.25,0,0.469,0.062,0.469,0.656\r\n\t\tc0.125-0.125,0.25-0.094,0.188-0.312c0.156,0.219,1.25,0.719,1.281,0.938c0,0.75-0.906,0.656-0.906,1.125\r\n\t\tc-0.156-0.031-0.812-0.094-0.812-0.344c-0.359,0-0.438,0.625-1.156,0.625c0-0.094,0.516-1.062,0.656-1.25\r\n\t\tC322.453,227.906,322.5,226.781,322.5,226.469z M318.344,224.906c-0.188-0.656,1.125-1.75,1.125-1.062\r\n\t\tc0.594,0.25,1.594,1.562,0.594,1.938c1.156,0.094,0.844-0.219,0.844,0.781c0.562,0,0.281-0.156,0.5-0.594\r\n\t\tc0.375,0,0.625,1.969-0.781,1.406c0,0.625-1.859-0.406-1.75-0.062c-0.141-0.125-0.188-0.281-0.141-0.469\r\n\t\tc-0.219,0.031-0.266,0.125-0.547,0.125c0-0.094,0-0.188,0-0.312c0.188,0,1.531-0.969,1.531-1.031\r\n\t\tc-0.438-0.031-0.922-0.125-0.922,0.281c-0.25-0.156-1.328-0.562-1.328-0.719C317.969,225.188,317.781,224.906,318.344,224.906z\r\n\t\t M320,231.812c0.312,0.25,0.062,0.219-0.641-0.031c0.109-0.031,0.25-0.094,0.391-0.156\r\n\t\tC319.688,231.844,319.781,231.875,320,231.812z M317.375,225.656c0,0.344,0.438,0.781,0.688,1c-1.25-0.188-1.312,0.156-1.312-1.031\r\n\t\tC316.938,225.656,317.172,225.656,317.375,225.656z M316.234,223.25c0.422,0.062,0.016,0.156,0.453,0.156\r\n\t\tc-0.156,0.156-0.219,0.094-0.219,0.312C315.938,223.719,316.234,223.25,316.234,223.25z M308.766,236.156\r\n\t\tc-0.016,0.125,0.094,0.438,0.094,0.656c-0.312-0.031-0.359-0.156-0.578-0.375C308.438,236.344,308.594,236.25,308.766,236.156z\r\n\t\t M308.156,237.062c-0.094,0.25-0.906,1.281-0.781,0.375C307.641,237.219,307.75,237,308.156,237.062z M302.922,235.312\r\n\t\tc0.094-0.125,0.203-0.281,0.297-0.438c0.234,0.625,0.125,0.594-0.344,0.938C302.656,235.531,302.922,235.594,302.922,235.312z\r\n\t\t M299.375,221.625c0.453,0.094,1.531-0.594,1.531,0.25c-0.375-0.031-1.562,1.469-1.562,0.062\r\n\t\tC299.547,222.062,299.406,221.719,299.375,221.625z M297.75,221.531c0.562-0.062,0.844,0.281,0.844,0.906\r\n\t\tc-0.438-0.031-0.25,0.125-0.703-0.094c0.031,0.25,0.047,0.531,0.062,0.812c-0.312-0.031-0.547-0.031-0.875-0.125\r\n\t\tC296.906,222.375,297.141,221.875,297.75,221.531z M296.859,218.406c0.172,0,0.203,0,0.203,0.188\r\n\t\tc-0.188-0.031-0.375-0.031-0.562-0.094C296.609,218.469,296.75,218.438,296.859,218.406z M295.562,220.875\r\n\t\tc-0.5-0.312-0.562-0.344-0.734-0.781c0.375-0.156,0.391,0.344,0.484-0.219c0.219,0.188,0.5,0.281,0.75,0.438\r\n\t\tc-0.078,0.094-0.156,0.188-0.219,0.281c-0.25-0.219-0.219-0.344-0.562-0.406c0.203,0.188,0.25,0.531,0.531,0.562\r\n\t\tC295.844,220.938,295.781,221,295.562,220.875z M295.625,222.438c0,0.281-0.094,0.344-0.062,0.656\r\n\t\tC294.75,223.094,294.656,222.344,295.625,222.438z M296.359,220.688c-0.141-0.062-0.172,0.406-0.312-0.062\r\n\t\tC296.156,220.531,296.656,220.094,296.359,220.688z M295.766,222.156C297.281,222.281,295.656,223.688,295.766,222.156\r\n\t\tL295.766,222.156z M296.828,223.281c0.031,0.219,0.062,0.406,0.062,0.656c-0.266-0.094-0.562-0.312-0.562-0.562\r\n\t\tC296.5,223.344,296.656,223.344,296.828,223.281z M296.016,218.75c0.031,0.188,0.203,0.094,0.203,0.312\r\n\t\tc-0.094,0.062-0.172,0.094-0.266,0.156C295.906,219.062,295.797,218.688,296.016,218.75z M295.281,218.938\r\n\t\tc0.156,0.062,0.312,0.125,0.453,0.219c0,0.656-1.172,0.125-0.922,0.188C294.906,218.875,295.281,219.562,295.281,218.938z\r\n\t\t M294.281,220.312c0.125,0.188,0.219,0.219,0.5,0.281c0,0.406-0.812,0.125-0.75-0.156\r\n\t\tC294.25,220.562,294.312,220.531,294.281,220.312z M292.438,221.906C294.047,222.062,292.438,222.719,292.438,221.906\r\n\t\tL292.438,221.906z M292.422,232.125c0.078-0.594,0.203-0.75,0.812-0.5c-0.234-0.438-0.219-0.156,0.078-0.469\r\n\t\tc-0.188,0.031-0.219-0.094-0.094-0.312c0.578,0.062,3.328-0.344,3.531-0.906c0.062,0.219,0.188,0.281,0.469,0.25\r\n\t\tc0.109-0.938,1.016-0.406,1.016,0c0.859-0.25,1.266-0.438,2.047-0.656c0.312-0.062,0.594-0.375,1.156-0.312\r\n\t\tc0.188,0.188,0.359,1.281-0.219,1.062c-0.203,0.75-2.109,0.5-2.641,0.719c-1.047,0.469-1.531,0.219-2.562,0.938\r\n\t\tc0-0.5-0.781,0.219-1.016,0.156c-0.109,0.5-0.172,0.5-0.672,0.875c0.062-0.188,0.109-0.375-0.078-0.375\r\n\t\tc-0.094,1.094-0.219,0.281-0.25,0.938c-0.172-0.062-0.344-0.156-0.484-0.25c-0.062,0.812-0.391,0.875-0.797,0.344\r\n\t\tc-0.156,0.406-0.438-0.062-0.688-0.094c0,0.312,0.906,0.625,1.203,1c-0.953,0.656-0.984,3.688,0.5,3.844\r\n\t\tc-0.141,0.531-0.609-0.125-0.891-0.156c-0.094,0.656,0.141,0,0.031,0.625c-0.203,0-0.094-0.156-0.094-0.312\r\n\t\tc-1.125-0.156-1.219,0.094-2.219-0.25c0-0.375,0.406-0.719,0.734-0.688c0.078-0.781-0.641-0.062-0.344-1.188\r\n\t\tc-0.188,0-0.5,0.094-0.672,0.188c-0.031-0.094-0.047-0.219-0.062-0.312c-0.188,0.25-0.25,0.406-0.641,0.375\r\n\t\tc-0.078-0.469-0.031-0.875,0.25-1.281c0.375,0.281,0.281,0.094,0.484,0.25c0-0.531,0.406-0.812,0.406-1.031\r\n\t\tc0.125-0.219-0.031-0.562,0.125-0.812c0.438,0.094,0.672,0.125,0.812-0.312c-0.094,0.031-0.188,0.062-0.312,0.094\r\n\t\tc0.094-0.094,0.625-0.938,0.625-0.688c-0.391-0.156-0.812,0.188-0.812-0.469c0.188,0,1-0.094,1-0.469\r\n\t\tC292.375,232.031,292.172,232.125,292.422,232.125z M295.625,240.438c-0.406,0-0.594-0.125-0.797-0.156\r\n\t\tc-0.328-0.156-0.109-0.438-0.547-0.219c0.125-0.312-0.031-0.656,0-0.969C294.906,239.125,295.281,240,295.625,240.438z\r\n\t\t M290.766,222.375c0-0.188,0.219-0.25,0.391-0.219c0.031,0.094,0.031,0.188,0.062,0.312\r\n\t\tC291.078,222.438,290.938,222.375,290.766,222.375z M291.609,222.375c0.359,0,0.422,0.219,0.141,0.688\r\n\t\tc-0.203-0.031-0.406-0.094-0.594-0.125C291.156,222.781,291.5,222.594,291.609,222.375z M291.547,220.938\r\n\t\tc-0.047,0.156-0.109,0.281-0.203,0.438c0.156-0.062,0.281-0.156,0.438-0.25c0.125,1.094-1.469,0.562-2.375,1\r\n\t\tc0.125-0.375-0.062-0.312-0.406-0.406c0.062-0.25,0.188-0.25,0.328-0.406c-0.297,0.062-0.422,0-0.328-0.25\r\n\t\tc0.562-0.031,0.75,0.5,1.281,0.406c0.438-0.031,0.906-0.562,0.812-0.594C291.297,220.875,291.156,221.125,291.547,220.938z\r\n\t\t M287.812,220.188c0.359,0,2.859,0.125,2.641,1c-0.625-0.125-1.172-0.281-1.766-0.469c-0.281,0.594-0.594,0.625-0.969,0.094\r\n\t\tc0,0.156-0.5,0.156-0.75,0.344c0.25-0.344-0.719-0.344-0.719-0.625C286.719,220.156,287.109,220.094,287.812,220.188z\r\n\t\t M288.062,239.469c-0.109,0.5-0.406,0.656-0.469,1.062C286.828,240.344,287.047,239.156,288.062,239.469z M277.719,221.75\r\n\t\tc-0.312-0.094-0.891-0.219-0.781-0.531C277.094,221.25,277.922,221.5,277.719,221.75z M271.766,217.562\r\n\t\tc0.234-1,0.297,0.031,0.562-0.469c-0.547-0.156,0.172-0.375,0.234-0.469c0.172,0.656,0.906,0.844,0.953,1.25\r\n\t\tc0.109,0.844,0.812,0.125,1.031,0.156c-0.078,0.156-0.156,0.281,0.047,0.312c0.359-1.25,0.297-0.062,0.062,0.188\r\n\t\tc0.438,0.094,0.688-0.125,1.031-0.375c0,0.188-0.125,0.281-0.234,0.406c0.203-0.094,0.25,0.031,0.312-0.219\r\n\t\tc0.297,0.094,0.312,0.594,0.922,0.719c-0.125,0.406-0.453,0.656-0.875,0.594c-0.156,0.188-0.125,0.312,0.062,0.312\r\n\t\tc-0.312,0.031-0.594,0.094-0.906,0.094c-0.312,0.969-3.672-0.656-3.516-1.469c0.469,0.312,0.938,0.094,1.266,0.219\r\n\t\tc-0.297-0.219-1.266-0.25-1.469-0.406c-0.734-0.156,0.203-0.656,0.234-0.781c-0.266-0.031-0.547-0.312-0.453-0.594\r\n\t\tC271.234,217.25,271.562,217.5,271.766,217.562z M276.031,221.812c-0.312-0.156-0.281-0.094-0.281-0.438\r\n\t\tC276.266,221.5,275.812,221.5,276.031,221.812z M272.125,223.219c-0.047,0.156-0.672-0.344-1.234-0.219\r\n\t\tc0.078-0.344,0.172-0.75,0.281-1.062c1.422-0.25,1.391,0.781,2.359,0.969C273.375,223.5,272.734,223.375,272.125,223.219z\r\n\t\t M272.25,233.094c-0.156,0.312-0.328-0.094-0.547-0.156c0.109-0.219,0.172,0,0.203-0.281\r\n\t\tC272,232.812,272.094,233.062,272.25,233.094z M270.828,220.875c0.062,0.031,1.906,0.031,1.203,0.562\r\n\t\tC271.484,221.906,271.062,221.688,270.828,220.875z M266.5,218.625c0.031-0.625,0.453-1.188,0.031-1.312\r\n\t\tc0.141-0.219,0.25-0.438,0.375-0.688c0.141,0,0.25,0.375,0.438-0.062c0.234,0.125,0.328,0.312,0.641,0.406\r\n\t\tc-0.094,0.281-0.312,0.062-0.547,0.125c-0.078,0.281,0.297,0.219,0.188,0.562c0.094,0,0.172,0.031,0.234,0.062\r\n\t\tc0.469-1.5,0.109-0.062,0.594-0.625c0,0.5,0.188,0.781,0.25,1.219c0.188-0.688,0.422-1.062,0.953-1.5\r\n\t\tc0.266,0.125,0.234,0.469,0.234,0.688c0.219,0.094,0.234-0.188,0.406-0.188c-0.109,0.562,0.312,0.812,0.109,1.5\r\n\t\tc0.172,0.031,0.672,1.188,1.016,1.75c-1.188-0.344-1.062,0.438-1.203,1.094c-0.266-0.062-1.859,1.156-1.703,0.844\r\n\t\tc-0.125,0.219-0.344,0.188-0.328,0.719c-0.359-0.094-0.391,0.062-0.562,0.031c0.047-0.281,0.094-0.562,0.109-0.812\r\n\t\tc-0.5-0.125-1.531-0.531-1.172-1.5c0.391,0.281,0.516,0.312,0.984,0.438c0.078-0.25,0.469-0.75,0.453-0.656\r\n\t\tc-0.453-0.156-1.234-0.125-1.406-0.281c0.484-1.594,2.156,0.719,2.609-0.344c-0.5-0.219-0.359-0.125-0.719-0.562\r\n\t\tc-0.312,0.688-0.344-0.469-0.344-0.594c-0.156,0-0.344,0.219-0.234-0.062c-0.359,0.5-0.844,0.594-1.453,0.375\r\n\t\tC266.484,219.125,266.766,218.656,266.5,218.625z M268.953,232.844c0.094-0.531,0.469-0.5,1.031-0.531\r\n\t\tc-0.125,0.188-0.375,0.375-0.578,0.344C269.375,232.844,269.125,232.875,268.953,232.844z M270.297,233.062\r\n\t\tc-0.141,0.188-0.25,0.375-0.406,0.531c0.047-0.188,0-0.344-0.156-0.5C270.172,233.156,269.484,232.875,270.297,233.062z\r\n\t\t M267.234,233.031c-0.125,0.156-0.219,0.281-0.312,0.438c-0.094-0.094-0.219-0.188-0.328-0.25\r\n\t\tC266.875,232.656,266.922,233.031,267.234,233.031z M266.703,233.406c-0.141,0.312-0.188,0.438-0.531,0.312\r\n\t\tc0.031-0.156,0.078-0.281,0.109-0.438C266.422,233.312,266.547,233.375,266.703,233.406z M266.172,217.688\r\n\t\tc0.062,0.031,0.078,1.062,0.078,1.344C265.891,218.969,266.078,218,266.172,217.688z M264.234,234.5\r\n\t\tc-0.031,0.156-0.094,0.312-0.141,0.469c0.047,0.031,0.359-0.125,0.453-0.188c-0.062,0.656-1.125,1.219-0.969,0.531\r\n\t\tc-0.062,0.031-0.125,0.094-0.188,0.125C263.453,235.188,264.109,234.5,264.234,234.5z M263.188,235.188\r\n\t\tc-0.047,0.125-0.609,0.562-0.5,0.219C262.859,235.312,263.016,235.25,263.188,235.188z M262.453,235.312\r\n\t\tc0,0.125,0.031,0.25,0.031,0.344c-0.109-0.062-0.562,0.344-0.469-0.094C262.266,235.562,262.125,235.219,262.453,235.312z\r\n\t\t M231.297,196.539c0.062,0.688,0.781,1.375,0.5,1.906C231.453,197.727,230.922,197.18,231.297,196.539z M207.047,185.164\r\n\t\tc0.109-0.258,0.219-0.289,0.344-0.086c-0.109,0.312-0.344,0.703-0.531,0.977C206.844,185.805,207.031,185.156,207.047,185.164z\r\n\t\t M209.828,198.32c-0.812,1.125-1.219-0.25-1.406-0.438c-0.047,0.125-0.141,0.203-0.281,0.219c0.109-0.219,0.203-0.406,0.016-0.594\r\n\t\tc-0.641,0.844-1.672-0.844-1.719-1.062c-0.594,0.078-1.578-0.469-0.828-1.062c-0.656,0.422-1.406,0.125-1.812-0.375\r\n\t\tc0.656-0.625,2.406-2.391,1.438-3.156c-0.141,0.094-0.312,0.156-0.453,0.219c-0.297-0.656-0.453-2.523,0.547-1.594\r\n\t\tc0.062-0.094,2.375,3.812,0.844,2.719c-0.234,0.25,0.062,0.062-0.297,0.359c0.203,0.016,0.406,0.062,0.609,0.094\r\n\t\tc-0.062,0.109-0.156,0.172-0.281,0.172c0.25,0.188,0.5-0.125,0.156,0.312c0.031,0.031,0.656,0.312,0.281,0.656\r\n\t\tc0.25,0.156,0.125-0.094,0.375,0.281c0.203-0.266,2.375,0.938,3.078,1.438C209.984,196.633,211.328,198.977,209.828,198.32z\r\n\t\t M203.609,192.164c0.578-0.594,0.453,0.812,0.406,0.75c-0.156,0.609-0.844,0.844-1.125,1.156c-0.312-0.219-0.031-0.438-0.281-0.625\r\n\t\tC202.297,192.852,203.031,191.82,203.609,192.164z M202.828,191.945c0.469-0.5,0.188,0.016,0.625-0.094\r\n\t\tC203.344,191.961,203.094,192.133,202.828,191.945z M205.375,189.672c0.406-0.32,1.484,0.438,1.734,0.547\r\n\t\tc-0.203,0.125-0.156,0.234,0.125,0.32C206.141,191.164,206.125,190.266,205.375,189.672z M206.766,192.648\r\n\t\tc0.125-0.422,0.281-0.578,0.594-0.359c-0.094,0.172-0.203,0.375-0.312,0.531C206.953,192.758,206.875,192.711,206.766,192.648z\r\n\t\t M205.516,188.328c0.219,0.148,0.172,0.227,0.375,0.086c-0.75-0.438-0.172-1.023,0.469-1.266c0.125,0.414,0.438,1.062,0.094,1.344\r\n\t\tc0.734,1.141-0.719,0.852-1.141,0.492C205.516,188.766,205.422,188.492,205.516,188.328z M203.094,185.102\r\n\t\tc0.109-0.047,0.203-0.109,0.312-0.156c-0.141-0.125-0.203,0.047-0.328-0.094c0.891-0.906,0.203-0.094,0.062-0.32\r\n\t\tc0.469-0.523,0.312-0.328,0.719-0.484c0,0.539,0.219,0.625,0.062,1.164c0.141-0.07,0.312-0.141,0.469-0.234\r\n\t\tc-0.031,0.344,0.156,0.25-0.125,0.555c0.781,0.188,1.25,2.516-0.156,2.875c-0.094-0.664,0-2.836-0.5-2.195\r\n\t\tc-0.109-0.047-0.484-0.32-0.594-0.578c-0.016,0.062-0.031,0.102,0.125-0.031c-0.406-0.344,0.156-0.156,0.25-0.242\r\n\t\tc-0.125-0.062-0.094-0.125,0.031-0.18C203.219,184.961,203.391,185.422,203.094,185.102z M203.766,187.445\r\n\t\tc0.094,0-0.781,0.258-0.172-0.352C203.828,187.312,203.641,187.375,203.766,187.445z M202.859,189.461\r\n\t\tc0.094-0.367-0.062-0.641,0.562-0.617c-0.219,0.398-0.5,0.625-0.156,0.93c0.141-0.18,0.188-0.336,0.344-0.555\r\n\t\tc0.547,0.562-1,2.414-1.188,3.023c-0.188-0.359-0.203,0.078-0.266,0.172c-0.625-0.25-1.031-0.656-1.516-1.078\r\n\t\tc0.422-0.516,0.875-0.359,1.047-0.57c-0.422-0.242-1.141-0.297-1.391-0.578c0.219-0.25,0.469-0.359,0.625-0.516\r\n\t\tc0.125,0.109,0.297,0.266,0.438,0.391c0.188-0.633,0.344-1.258,1.031-1.258c-0.062,0.578-0.406,1.211-0.562,1.633\r\n\t\tc0.312-0.297,0.453-0.883,0.75-1.266C202.672,189.266,202.766,189.367,202.859,189.461z M201.734,192.695\r\n\t\tc-0.188,0.281-0.109-0.094-0.281,0.156C201.266,192.727,201.641,192.727,201.734,192.695z M199.625,194.711\r\n\t\tc0.344,0.266,0.156-0.109,0.453-0.047c-0.234,0.25-0.266,0.469-0.453,0.688c0.172,0,0.344,0,0.531,0\r\n\t\tc-0.328,1.062-1.984,1.812-2.953,1.094c0.625-0.781,0.281-1.297,0.375-2.234c-0.188,0.016-0.312,0.125-0.406,0.328\r\n\t\tc-0.156-0.75,0.156-1.047,0.516-1.734c0.453,0.469-0.172,0.797,0.766,1.328c0.781-0.625-0.312-1.625,1.297-1.656\r\n\t\tc-0.266,0.344,0.078,0.375,0.078,0.719c0.125-0.188,0-0.281,0.234-0.438c0.531,0.469,0.641-0.172,1.016,0.234\r\n\t\tc-0.281,0.328-1.094,0.094-0.844,0.359C201.609,193.68,199.969,194.289,199.625,194.711z M196.422,200.875\r\n\t\tc-0.531-0.25-0.438,0.031-0.781-0.469c-0.328,0.5-0.125,0.156-0.469,0.281c0.188-0.344-0.031-0.062-0.156-0.156\r\n\t\tc0.234-0.25,0.078-0.469,0.156-0.711c0.078,0.125,0.172,0.094,0.266-0.172c-0.203-0.156-0.234-0.141-0.359,0.109\r\n\t\tc-0.219-0.219-0.188-0.062,0.031-0.391c-0.094,0-0.172-0.016-0.25-0.016c0.219-0.438,0.609-0.656,1.125-0.75\r\n\t\tc0.188,0.172-0.094,0.094,0.062,0.266c0.312-0.312,0.125-0.203,0.453-0.234c0,0,0.156,1.219,0.359,1.312\r\n\t\tC196.594,200.281,196.078,200.594,196.422,200.875z M194.609,197.602c-0.719-0.562-0.25-0.281-0.531-0.844\r\n\t\tc-0.234,0.297-0.188,0.453-0.188,0.875c0.375,0.062,0.031-0.469,0.531,0.031c-0.5,0.625-0.891,0-1.281,0.406\r\n\t\tc-0.312-0.375-0.281-0.656-0.562-0.953c0.344-0.438,0.062-0.859,0.531-1.266c-0.625-0.531-1.844,0.25-2.25-0.344\r\n\t\tc-0.547,0.625-1.75-0.844-2.125-1.188c0.781,0.766-0.094-1.969-0.125-1.75c0.375-0.562,0.156-0.844,0.688-1.375\r\n\t\tc0.469,0.406,0.938,0.531,1.344,0.938c0.156,0.094,0.188,1.062,0.625,0.609c0.359,0.109,0.297-0.359,0.594-0.094\r\n\t\tc-0.188-0.5-1.375-1.859-2.156-2.195c0.344-0.391,0.656-0.773,1.016-0.133c0.328-0.281,0.453-0.219,0.766,0.141\r\n\t\tc0.281-0.344-0.406-0.648-0.625-0.445c-0.266-0.172-0.562-0.305-0.766-0.531c0.266-0.094-0.016-0.5,0.422-0.031\r\n\t\tc-0.125-0.203,0-0.281,0.156-0.328c-0.188-0.227-0.312-0.062-0.562-0.109c0.156-0.086,0.391-0.945,1.078-0.844\r\n\t\tc0.016,0.008,0.859-0.414,0.984-0.508c0.094,0.156,0.609,0.305,0.484,0.289c-0.031,0.047,0.641,0.164,0.922,0.031\r\n\t\tc1.094-0.422,0.062,1.055-0.016,0.914c-0.484,0.516-0.578,1.062-0.438,1.609c0.453-0.453,0.766-0.695,1.172-1.305\r\n\t\tc0.562,0.453-0.359,0.984,0.141,1.477c0.391-0.492,1.219-0.297,0.859,0.172c0.109,0.688-0.875,1.188-1.312,1.625\r\n\t\tc0.469-0.125,0.734-0.125,1.188-0.438c0.484,0.375,0.641,0.891,0.219,1.625c-0.234,0.469-1.031,2.859-0.188,1.906\r\n\t\tc-0.469,1.25,1.031,1.594-0.312,2.531c-0.016-0.312-0.031-0.531,0-0.844c-0.156-0.281-0.281-0.281-0.422,0.031\r\n\t\tC194.609,197.414,194.781,197.414,194.609,197.602z M194.453,198.977c-0.375-0.25,0.062-0.125-0.156-0.328\r\n\t\tC194.547,198.43,194.719,198.695,194.453,198.977z M192.422,197.617c-0.141,0.188-0.219,0.297-0.453,0.234\r\n\t\tc0.016-0.125,0.047-0.25,0.047-0.406C192.156,197.508,192.297,197.57,192.422,197.617z M194.672,184.203\r\n\t\tc0.281-0.336,0.938-0.477,1.312-0.461c-0.375,0.391-0.766,0.531-1.219,0.859C194.734,184.477,194.703,184.328,194.672,184.203z\r\n\t\t M195.703,192.508c-0.078,0.062-0.125-1.758,0.188-1.562c0.188-0.188,0.422-0.297,0.594-0.547\r\n\t\tC196.969,190.781,196,192.352,195.703,192.508z M196.297,196.523c-0.406,0.453-0.391,0.281-0.531,0.172\r\n\t\tC195.891,196.523,196.203,196.477,196.297,196.523z M196.797,187.789c-0.359-0.336-1.688,0.398-1.734-0.477\r\n\t\tc-0.094-1.078,1.312-0.109,1.438-0.016c0.234-0.219,0.547-0.172,0.828-0.297c-0.219-0.031-0.656-0.195-0.625-0.188\r\n\t\tc0.062-0.102,0.125-0.211,0.188-0.312c-0.219,0.195-0.172,0.039-0.156-0.133c-1.5,0.258,0.047-0.555-0.312-1.008\r\n\t\tc-0.219,0.219-0.781,1.086-1.094,0.734c0.109-0.094,0.25-0.211,0.344-0.336c-0.188-0.188-0.188-0.117-0.188-0.062\r\n\t\tc0-0.047-0.016-0.078-0.094-0.211c-0.062,0.117-0.375,0.016-0.469-0.031c0.422-0.398,0.062-0.492,1-0.367\r\n\t\tc-0.062-0.125-0.281-0.18-0.438-0.211c0.062-0.086,0.125-0.18,0.188-0.273c0.203,0.109,0.25,0.203,0.469,0.25\r\n\t\tc0.031-0.031,0.516-0.484,0.578-0.562c-0.328,0.344,0.297,0.133,0.453,0.234c-0.062,0.102-0.125,0.188-0.172,0.281\r\n\t\tc0.109-0.117,0.688,2.109,1.172,2.523c0.594-0.641,0.938-1.547,1.594-2.055c0.062,0.055-0.5,1.297-0.156,1.672\r\n\t\tc-0.281,0.289-0.266,0.32-0.562,0.547c-0.031-0.086,0.203,0.297,0.219,0.492c0.266-0.258,0.469-0.43,0.688-0.719\r\n\t\tc0.438,0.438-0.938,1.672-1.328,1.828C198.578,188.875,197.703,187.789,196.797,187.789z M202.438,186.047\r\n\t\tc-0.188,0.312-0.266,0.562-0.578,0.758C201.953,186.484,202.172,185.852,202.438,186.047z M201.359,188.734\r\n\t\tc0.094,0.102,0.188,0.188,0.281,0.266c-0.469,0.445-0.906,0.945-1.531,0.367c0.25-0.172,0.875-0.07,0.531-0.414\r\n\t\tc-0.312-0.32,0.312-0.164,0.531-0.141c-0.438-0.516-0.344-1.117,0.625-0.531C201.531,188.531,201.578,188.586,201.359,188.734z\r\n\t\t M201.766,188.023c-0.094-0.055-0.438-0.023-0.656-0.164c0.188-0.109,0.375-0.219,0.578-0.344\r\n\t\tC201.734,187.672,201.672,187.773,201.766,188.023z M200.703,183.289c0.188-0.148,0.344-0.398,0.531-0.148\r\n\t\tC201.609,182.789,202.156,184.453,200.703,183.289z M200.266,183.32c-0.016-0.523-0.281-0.555-0.406-0.875\r\n\t\tC200.734,182.359,201.344,182.906,200.266,183.32z M199.062,182.117c0.578,0.32,0.359,0.781-0.391,0.727\r\n\t\tC198.797,182.75,198.859,182.383,199.062,182.117z M199.859,183.594c0.656-0.102,0.703,0.18,1.094,0.609\r\n\t\tc-0.25-0.008-0.594,0.078-0.844,0.07c-0.188,0.812-0.641,0.711-1.25,0.477C197.984,184.383,199.297,182.688,199.859,183.594z\r\n\t\t M193.922,181.977c0.719-0.922,1.062-0.031,1.875-0.844c0.219,0.234,2.188,0.555,2.25,0.594c1.219,0.266,0.016,1.164-0.531,1.547\r\n\t\tc-0.047-0.203-0.062-0.398-0.094-0.578c-0.406,0.484-0.812,0.641-1.391,0.656c0.312-0.398,0.266-0.477,0.812-0.805\r\n\t\tc-0.297-0.273-1.109,0.195-1.484,0.562c0.047-0.125,0.125-0.391,0.062-0.43c-0.266,0.328-0.469,0.727-0.906,0.422\r\n\t\tc0.188-0.203,0.297-0.492,0.438-0.711c-0.406,0.422-0.688,0.438-1.125-0.086C193.875,182.25,194.016,182.055,193.922,181.977z\r\n\t\t M191.344,183.883c0.422-0.109,1.016,0.156,1.266,0.477c0.594-0.438,0.625,1.562,0.594,1.578c0-0.023,0.75,0.781,0.672,0.734\r\n\t\tc0.031,0.297-0.172,0.469-0.109,0.719c0.203,0.781-1.031-0.125-1.312,0.094c-0.406-0.32-1.109,0.352-1.312,0.031\r\n\t\tc-1.5,0.5-0.656,0.906-1.781,0.188c-0.453,0.508-1.422,0.219-0.922-0.344C188.578,186.516,190.672,184.047,191.344,183.883z\r\n\t\t M170.25,178.727c0.016-0.039-0.047-0.297,0.297-0.445c0.125,0.414,0,1.008-0.266,1.555c0-0.258-0.391,0.258-0.344,0.203\r\n\t\tC169.953,180.086,170.234,178.844,170.25,178.727z M167.594,183.414c0.078,0.32,0.156,0.391,0.328,0.164\r\n\t\tc-0.156,0.5-0.359,0.5-0.469,0.727C167.344,183.891,167.453,183.766,167.594,183.414z M162.984,190.219\r\n\t\tc0.438-0.391,0.344,0.039,0.297,0.398c-0.047-0.133-0.547-0.141-0.625-0.156C162.766,190.383,162.875,190.297,162.984,190.219z\r\n\t\t M161.766,190.344c0.156,0.172,0.234,0.234-0.375,0.438C161.562,190.773,161.578,190.594,161.766,190.344z M159,187.445\r\n\t\tc-0.297,0.281,0.109-0.344,0.156-0.438C159.109,187.164,159.047,187.305,159,187.445z M160.109,188.961\r\n\t\tc0-0.227-0.156,0.227-0.234,0.031C159.922,188.938,160.406,188.656,160.109,188.961z M174.328,327.594\r\n\t\tc0.141,0.188,0.344,0.406,0.344,0.656c-0.031-0.062-0.094-0.156-0.141-0.25c0.047,0.125,0.016,0.156-0.078,0\r\n\t\tc0.062,0.125,0.094,0.219,0.156,0.281c-0.219-0.156-0.266-0.188-0.172-0.031C174.25,328.188,173.859,327.406,174.328,327.594z\r\n\t\t M178.859,333.562c-0.125-0.438-0.406-0.625-0.719-0.781c0.188,0.281,0.312,0.281,0.438,0.594\r\n\t\tc-0.344-0.375-0.469-0.375-0.344-0.062c-0.25-0.188-0.5-0.438-0.688-0.656c0.125,0.094,0.125,0.094,0.062-0.031\r\n\t\tc0.125,0.125,0.281,0.188,0.469,0.188c-0.188-0.062-0.703-0.531-0.422-0.312c-0.203-0.156-0.578-0.531-0.828-0.656\r\n\t\tc0.25,0.156-0.234-0.219-0.344-0.375c0.125,0.062,0.312,0.156,0.469,0.219c-0.016-0.062-0.125-0.188-0.234-0.312\r\n\t\tc0.109,0.094,0.203,0.125,0.078-0.188c0.234,0.125,0.453,0.656,0.484,0.781c0.078,0,0.078-0.062,0.031-0.125\r\n\t\tc0.156,0.062,0.344,0.406,0.516,0.469c-0.344-0.375-0.5-0.688-0.75-1.031c0.156,0.156,0.234,0.062,0.375,0.188\r\n\t\tc-0.109-0.5-0.578-0.469-0.688-0.906c0.625,0.219,1.281,0.594,1.188,0.969c0.656,0.5,1.719,1.938,2.125,2.438\r\n\t\tC179.453,333.625,179.312,333.281,178.859,333.562z M180.516,334.094c0.094,0,0.109-0.062,0.062-0.125\r\n\t\tc0.188,0.125,0.344,0.438,0.391,0.469C180.797,334.344,180.547,334.312,180.516,334.094z M181.781,333.156\r\n\t\tc0.109,0.062,0.203,0.062,0.281,0c-0.047-0.156-0.172-0.156-0.078-0.406c0.141,0.25,0.344,0.438,0.641,0.5\r\n\t\tc-0.141,0.094-0.203,0.031-0.312,0.219C182.266,333.312,181.953,333.344,181.781,333.156z M183.219,334.125\r\n\t\tc-0.297-0.062-0.609-0.156-0.672-0.469c0.125,0,0.234,0,0.344-0.031c-0.031-0.062-0.094-0.156-0.141-0.25\r\n\t\tc0.328,0.125,0.453,0.156,0.672,0.469c0-0.25,0.453,0.281,0.234,0.219c-0.359-0.188-0.172,0.125-0.625-0.281\r\n\t\tC183.078,333.906,183.141,334.031,183.219,334.125z M185.797,320.469c0.375,0.094,0.453,0.188,0.234,0.25\r\n\t\tC185.812,320.562,185.797,320.906,185.797,320.469z M200.062,242.125c-0.234-0.156-0.328-0.031-0.328,0.344\r\n\t\tc-1.047-0.5,0.344-0.688,0.391-0.875c0.078,0.219,0.203,0.281,0.109,0.469C199.672,241.594,200.156,242.031,200.062,242.125z\r\n\t\t M200.031,240.812c-0.203,0.375-0.766,0.719-1.109,1.406c-0.875-0.5,0.906-1.5,1-1.875c0.156,0.156,0.438,0.25,0.609,0.375\r\n\t\tC200.484,241.094,200.297,241.125,200.031,240.812z M199.234,235.438c0.453,0.438,0.781,0.969,0.938,1.5\r\n\t\tc-0.094,0.219,0.281,0.375,0.094,0.781C199.672,237.469,199.016,235.938,199.234,235.438z M203.609,242.469\r\n\t\tc0.062-0.156,0.094-0.312,0.094-0.5C204.141,242.281,203.766,242.156,203.609,242.469z M206.266,242.469\r\n\t\tc0.094,0.062-0.188,1.031-0.906,1c0.266-0.469,0.062-0.281,0.156-0.688c-0.188,0.156-0.281,0.438-0.453,0.344\r\n\t\tc0.297-0.562,0.266-0.562,0.453-1.031c-0.266-0.156-0.719,0.25-0.75,0.281c-0.219-0.062-0.375,0-0.656,0.031\r\n\t\tc0.359-0.219,0.562-0.438,0.906-0.594c-0.188-0.125-0.375-0.031-0.625,0c0.125-0.219-1.812-1.781-2.719-1.562\r\n\t\tc0.094-0.156-0.047-0.312-0.031-0.562c0.375,0.219,0.688-0.312,0.969-0.375c-0.438-0.281-0.375-0.188-0.234-0.531\r\n\t\tc0.422,0.281,0.078,0.125,0.297,0.375c0-0.125,0-0.25,0.016-0.375c0.109,0.125,0.172,0.094,0.188-0.094\r\n\t\tc0.109,0.156,0.203,0.25,0.328,0.375c0.188-0.938,1.406-2.875,2.609-2.219c-0.344,0.562-1.312,1.312-1.688,1.844\r\n\t\tc0.078,0.031,1.422-0.312,0.438,0.406c0.297,0.188,0.234,0.438,0.469,0.656c0.219-0.406,0.203,0.031,0.719-0.156\r\n\t\tc-0.047,0.125-0.109,0.188-0.266,0.219c0.531,0.312,0.547-0.344,0.688,0.188c0.047,0.25-0.281,0.688-0.531,0.469\r\n\t\tc0.031,0.438,0.281,0.5,0.031,0.906c0.344-0.031,0.469,0.031,0.812-0.062c-0.266,0.5-1.312,1-0.562,1.312\r\n\t\tc0.281-0.312,0.422-0.312,0.672-0.531C206.484,242.219,206.375,242.344,206.266,242.469z M206.453,235.156\r\n\t\tc0.766,0.781-2.719,1.188-2.375,0.719c-0.75,0.188-1.641,1.5-2.5,0.375c-0.062,0.156-1.469-0.5-2.188-1.125\r\n\t\tc0.281-0.594-2.75-0.719-3.156,0.125c-0.531-0.438-0.906,0.531-1.406,0.062c-0.125,0.188-0.062,0.281,0.156,0.312\r\n\t\tc-0.438,0.281-0.875,0.562-1.094,1c1-0.812,5.531-2.188,4.938,0.25c-0.062-0.094-0.125-0.188-0.172-0.312\r\n\t\tc-0.141,0.312-0.125,0.469-0.234,0.812c-0.062-0.062-0.25-0.156-0.359-0.219c-0.328,0.781-0.672,0.438-0.672-0.188\r\n\t\tc-0.062,0.156-0.188,0.188-0.344,0.125c-0.125,0.344,0,0.281-0.094,0.5c0.25,0.188,0.531,0.344,0.859,0.406\r\n\t\tc-0.047,0.125-0.297,0.656-0.344,0.688c-0.078-0.094-0.172-0.094-0.297,0c0.125,0.062,0.234,0.156,0.344,0.219\r\n\t\tc-0.219,0.594-0.906,1.188,0.125,1.375c-0.047,0.125-0.094,0.25-0.156,0.344c-0.406-0.312-0.125-0.094-0.344,0.125\r\n\t\tc0.578,0.281,0.453,1.125,1.562,0.594c-0.062,0.281-0.156,0.688-0.203,0.781c-0.125-0.062-1.922,0.469-1.891,0.375\r\n\t\tc-0.031-0.125-0.062-0.281-0.109-0.406c-0.266,0.406-0.672,0.531-1.328,0.875c0.062-0.125,0.125-0.312,0.125-0.312\r\n\t\tc-0.172-0.188-0.203,0.094-0.375,0.156c-0.906-1.562,1.344-2.188,1.656-1.281c0.281-0.375,0.625-0.031,0.781-0.281\r\n\t\tc-0.344-0.094-0.703-0.281-1.031-0.406c0.125-0.312,0.25-0.625,0.531-0.469c0.062-0.25-0.094-0.281-0.25-0.5\r\n\t\tc-0.281,0.281-0.688,0.469-0.953,0.75c0.109-0.156,0.109-0.25,0.219-0.469c-0.156-0.156-0.859,0.031-0.359,0.375\r\n\t\tc-0.469-0.188-0.297,0.156-0.812-0.531c-0.188,0.875-0.578,0.531-0.781,1.031c-0.078-0.156-0.156-0.344-0.219-0.5\r\n\t\tc-0.062,0.094-0.094,0.188-0.141,0.281c-0.203-0.156-0.047-0.219-0.094-0.469c-0.297,0.75-0.875,0.531-1.109,0.094\r\n\t\tc-0.672,0.625-1.688,1.031-1.125,2.094c-0.281-0.156-0.281-0.062-0.531-0.125c0.078-0.281,0.281-0.25-0.109-0.438\r\n\t\tc-0.078,0.156-0.141,0.156-0.203,0.406c-0.719-0.469-1.422-0.594-2.031-0.156c-0.047,0.125-1.078,2.531-1.594,0.844\r\n\t\tc-0.125,0.719-0.5,1.406-0.656,1.812c-1.75-0.531,0.344-1.688,0.562-2.281c-0.109-0.062-0.406,0.094-0.812-0.188\r\n\t\tc-0.094,0.312-0.656,1.5-0.906,1.312c0.125,0.625,0.125,0.719,0,1.375c-0.938-0.688,0,0.688,0,0.75\r\n\t\tc-0.125,0.406-0.594,0.25-0.719,0.625c0.281,0.219,0.219,0.562,0.344,0.625c-0.125,0.031-0.266,0.094-0.391,0.125\r\n\t\tc0.203-0.219-0.125-0.469-0.328-0.625c-0.062,0.281,0.031,0.375,0.062,0.625c-0.344-0.125-0.016,0.25-0.406-0.094\r\n\t\tc-0.094,0.812-1.219,1.156-1.781,0.656c-0.172,0.281-3.719,1.688-2.703,2.688c-0.359,1.031-0.109,1.875-0.453,2.688\r\n\t\tc-0.391,1.062-0.625,1.656-0.984,2.719c-0.672-0.406-0.422-3.25,0.016-3.594c-0.25-0.219-0.219-0.062-0.438,0.062\r\n\t\tc0.656-1.625,0.156-1.594,0.188-3.094c-0.906,0.375-1.219-1.406-1.5-1.906c-0.094,0.312-0.266,0-0.406,0.281\r\n\t\tc-0.281-0.188,0.156-0.5-0.156-0.656c-0.062,0.25-1.156-0.344-1.328-0.5c0.531,0.594,0.359,1.094,0.141,1.688\r\n\t\tc-0.125-0.062-0.312-1-0.422-1.312c-0.125,0.312-0.234,0.281-0.328,0.531c-0.594-0.438-0.391-0.312-0.25-0.812\r\n\t\tc-0.328-0.219-0.688-0.125-0.406-0.656c-0.344-0.031-0.688-0.312-0.922-0.75c-0.172,0.562-0.641-0.156-0.703-0.219\r\n\t\tc-0.125,0.344-5.172,0.281-5.422,0.594c0.094-0.125-5.656-0.062-5.656-0.219c0,0.156,0,0.281,0,0.406\r\n\t\tc0-0.844,2.562,4.375,1.938,5.469c-0.406,0.656,1.516,2.75,2.266,3.312c0.094,0.656,1.047,2,1.578,2.531\r\n\t\tc0.656,0.562,2.109,0.125,2.234,0.938c-0.047,0.125,1.875-1.062,1.734-1.156c0.734-0.594,0.828-1.062,1.891-0.625\r\n\t\tc1.469,0.625-0.781,2.75-0.828,3.875c-0.125-0.094-0.203-0.5-0.141-0.656c-0.328,0.375-0.344,1.094-0.516,1.625\r\n\t\tc-0.031-0.031-0.656,0.781-0.781,0.875c1.219,0.562,3.5,1.875,3.031,3.938c-0.406-0.344-1.25,2.594-1.25,3.312\r\n\t\tc0,0.656,0.609,2.531,0.688,2.312c0.203,0.5,1.234,1.062,1.391,0.469c0.844,0.656,0.656,2.875,1.375,3.219\r\n\t\tc0.125-0.438,0.484-1.188,0.906-0.906c0.062-0.438,0.406-1.75,1.047-0.875c0.797-0.906,3.688-0.031,1.75,0.438\r\n\t\tc0.516,0.344-0.297,1.531-0.266,1.844c0,0.5,0.672,0.719,0.625,0.312c-0.078-0.438-0.062-1.219,0.062-1.688\r\n\t\tc0.312,0.125,0.781,0.125,1.062,0.312c0.031-0.062-0.047-0.906-0.031-0.906c0.891,2.688,2.531,4.312,4.859,4.625\r\n\t\tc-0.125,0.281,0.078,0.438-0.484,0.031c0.047,0.688,0.25,0.844,0.719,1.312c0.062-0.312,0.328,0.188,0.125,0.562\r\n\t\tc-0.141,0.688-0.609-0.031-1.25,0.281c0.984,0.344,1.469,0.219,2.094,1.062c-0.016,0.219,0.328,0.594,0.359,0.906\r\n\t\tc0.078,0.75-0.297,0.562-0.438,1.25c0.172,0.031,0.391-0.25,0.219,0.281c0.094-0.219,0.203-0.438,0.297-0.656\r\n\t\tc0.375,0.344,0.938,0.781,0.797,1.625c-0.094-0.031,1.297,0.062,1.266,0.188c1.75,1.531,2.828,4.531,2.625,6.656\r\n\t\tc-0.156-0.031-0.297-0.062-0.438-0.094c0.219,0.312,0.078,0.312,0.031,0.562c0.141,0.031,0.344,0.031,0.438,0.062\r\n\t\tc-0.156,0.469-0.25,0.344-0.344,0.906c-0.766-0.375-0.297-0.312-0.281-0.75c-0.281-0.094-1.234,0.438-0.734,0.688\r\n\t\tc-0.484-0.094-1,1-0.453,1.469c0.312-1.219,0.734-0.812,0.844,0.156c-0.531-1.469,1.344-1.812,1.125-1.156\r\n\t\tc1,0.656,0.281,1.719-0.844,1.156c-0.031,0.156,0.625,0.562,0.75,0.688c0.062-0.312,0.406-0.281,0.609-0.125\r\n\t\tc0.031-0.25-0.141-0.188-0.203-0.438c1.156-0.531,2.219,1.031,2.031,1.656c0.031,0.031,0.453,0.031,0.594,0\r\n\t\tc-0.125,0.406-0.031,1.531,0.406,1.781c0.062-0.156,0.156-0.344,0.234-0.5c0.422,0.219,0.625,0.781,1.016,0.938\r\n\t\tc-0.031-0.062-0.094-0.125-0.125-0.219c1,0.562,3.484,2.531,3.25,4.062c2.031-0.031,1.219,3.281,1.156,4.062\r\n\t\tc-0.547,0.969-2.188,1.312-3.062,2.375c-0.156-0.156-0.266-0.312-0.406-0.469c-0.094,0.5-0.469,0.812-0.719,1.062\r\n\t\tc0.703,0.5-0.281,2.5-0.312,3.031c0.203,0.062-2.219,2.719-2.062,3.312c-0.484,0.375-1.219,0-1.25,0.125\r\n\t\tc-0.484-0.219-1.094-0.25-1.297-0.406c0.016,0.125,0.062,0.281,0.094,0.406c-0.797-0.312-0.562-0.031-1.188-0.312\r\n\t\tc-0.016,0.188-1.266,0.469-1.719,0.188c-0.031,0.344-0.141,2.844-0.297,2.781c0-0.062-1.469,1.625-1.406,1.656\r\n\t\tc0-0.438,0.719-0.531-0.109-1.156c-0.391,0.625-1.469,1.531-1.469,2.094c-0.016,0-1.094,0-1.516-0.312\r\n\t\tc-0.859-0.406-1.469-1.438-1.469-2.438c-0.344,1-0.062,1.562,0.516,2.375c0.812,1.156,0.109,1.344,0.109,2.25\r\n\t\tc-0.172-0.156-0.328-0.094-0.328,0.031c-0.359-0.312-2.109-0.75-2.156-0.75c-0.141-0.125-0.25-0.375-0.453-0.469\r\n\t\tc0.109,0.781,0.188,0.875,0.266,1.688c-0.234,0.125-0.344-0.375-0.297,0.156c-0.188-0.219-0.25-0.25-0.219-0.062\r\n\t\tc-0.312-0.344-0.625-0.688-0.938-0.938c-0.094,0.125-0.094,0.188-0.047,0.375c-0.062-0.094-0.141-0.125-0.234-0.031\r\n\t\tc0.375,0.375,0.469,0.719,0.875,1.219c-0.078-0.5,0.344,0.156,0.344,0.438c-0.266-0.125-0.609-0.281-0.844-0.562\r\n\t\tc0,0.062,0.281,0.25,0.438,0.406c-0.562-0.031-0.625,0.312-0.375,0.938c-0.391-0.156-0.172,0.219-0.125,0.375\r\n\t\tc-2.047-1.188,0.016,2-0.031,2.062c0.094,0.062,0.312,0.219,0.344,0.281c-0.484,0.031-0.688,0.125-1.016,0.438\r\n\t\tc0.25,0.188,0.203,0.25,0.297,0.531c-0.281-0.188-0.359-0.156-0.641-0.469c0.016,0.188,0.062,0.344,0.234,0.562\r\n\t\tc-0.188-0.094-0.125-0.031-0.281-0.094c0.141,0.312,0.094,0.406-0.109,0.281c0.062,0.062,0.578,0.656,0.188,0.5\r\n\t\tc0.25,0.281-8.328,0.438-8.141,0.719c-0.172-0.125-9.203-0.25-9.203-0.406c0,0.094,0,0.156,0,0.25c0-0.125,8.219-0.281,7.969-0.375\r\n\t\tc0.125,0.594,4.344,0.125,4.469,0.719c-0.25-0.219,1.594-0.438,1.391-0.75c0.125,0.312,1.047,0.281,1.359,0.438\r\n\t\tc-0.062,0.062,0.422,0.062,0.375-0.031c0.062,0.156,0.469,0.25,0.562,0.406c-0.516-0.219-0.672-0.719-0.703-1.156\r\n\t\tc0.047,0.156,0.188,0.219,0.281,0.125c-0.375-0.188-0.453-0.688-0.562-1c0.188,0.094,0.234,0.219,0.422,0.281\r\n\t\tc-0.125-0.406-0.328-0.406-0.656-0.625c0.047,0.219,0.203,0.5,0.281,0.688c-0.172-0.062-0.266-0.281-0.422-0.344\r\n\t\tc0,0.062,0.047,0.125,0.094,0.188c-0.25-0.312-0.5-0.688-0.688-1.031c0.312,0.156,0.5,0.281,0.734,0.5\r\n\t\tc-0.062-0.094-0.141-0.219-0.234-0.312c0.094,0.094,0.219,0.188,0.297,0.312c-0.109-0.219-0.078-0.25,0.047-0.156\r\n\t\tc-0.062-0.25-0.203-0.344-0.328-0.625c0.094,0.062,0.172,0.094,0.266,0.125c-0.125-0.125-0.438-0.688-0.266-0.438\r\n\t\tc-0.016-0.031-0.703-1.031-0.172-0.781c0-0.062,0.016-0.156,0.031-0.219c-0.078-0.062-0.156-0.094-0.219-0.156\r\n\t\tc0.062,0.312,0.031,0.25-0.062,0.156c-0.031-0.031-0.062-0.062-0.094-0.062c0.031,0.125,0.062,0.281,0.094,0.438\r\n\t\tc-0.109-0.156-0.125-0.156-0.062,0.031c-0.125-0.062-0.25-0.188-0.312-0.219c0.266,0.125,0.125,0.344,0.109,0.469\r\n\t\tc-0.297-0.75-0.438-1.281-0.547-2c0.031,0.312,0.062,0,0.062-0.125c0.438,0.281,0.594,1,0.75,1.469\r\n\t\tc-0.062-0.469-0.219-0.906-0.312-1.375c0.062,0.062,0.125,0.125,0.203,0.188c-0.172-0.969-0.859-0.938-1.016-1.906\r\n\t\tc0.156,0.062,0.281,0.094,0.406,0.156c-0.031-0.125-0.109-0.125-0.141-0.25c0.578,0.438-0.078-0.188,0.281,0.094\r\n\t\tc-0.094-0.156-0.172-0.312-0.266-0.469c0.078,0.094,0.188,0.062,0.156-0.062c0.125,0.125,0.562,0.625,0.062,0.312\r\n\t\tc0.062,0.156,0.266,0.312,0.359,0.5c-0.297-0.156-0.234-0.062-0.516,0.031c0.188,0.188,0.5,0.375,0.719,0.469\r\n\t\tc-0.125-0.562-0.469-1.656-0.094-1.438c-0.203-0.281-0.156-0.25,0.125-0.281c-0.156-0.312-0.156-0.594-0.234-0.875\r\n\t\tc-0.047-0.5,0.141-0.938-0.453-1.188c-0.312-1.188,0-1.375-0.219-2.406c0-1.406,0.438-2.438,0.375-3.562\r\n\t\tc0.188-1.25,0.281-3.188,0.281-4.719c0.156-1.312,1-4.156,0.766-5.656c-0.422-2.438,0.031-3.062-1.328-4.938\r\n\t\tc-0.656-0.625-1.969-2.469-1.812-3.406c-0.281-0.25-0.172-3.844-0.688-4c0.219-1.375-0.625-4-1.422-5.188\r\n\t\tc-0.859-1.188,1.031-2.969,0.953-3.031c-0.031,0.156-0.141,0.156-0.281,0.25c-0.125-0.25-0.266-0.5-0.391-0.75\r\n\t\tc0.422,0.344,0.188-1.75,0.719-1.219c0.172-0.688,0.297-1.062,0.484-1.812c0.469,0.25,0.625-0.531,1.078-0.188\r\n\t\tc-0.328-1.125,0.578-0.344,0.703-0.844c0.172,0.188,0.531-1.219,0.625-1.594c0.156-0.781,0.312-0.875,0.5-1.656\r\n\t\tc0.016-0.062-0.938-2.312-0.031-1.562c0.062-0.25-0.531-1.125-0.656-1.719c-0.094,0.344-0.703,0.406-0.891,0.312\r\n\t\tc0.141,0.281,0.078,0.5,0.188,0.781c-0.203,0.031-0.172-0.094-0.297,0.156c-0.312-0.219-1.375-2.156-1.5-2.656\r\n\t\tc0.031,0.312-0.031,0.406-0.188,0.219c-0.016-0.125-0.031-0.25-0.031-0.375c0.344,0.156-0.344-1.656-0.438-1.906\r\n\t\tc-0.312,1.25-0.406-0.438-0.125-0.594c0-1.469-0.172-3.281-0.844-3.969c-1.672-1.812-1.25-3.906-2.734-5.812\r\n\t\tc-0.156,0.375-0.719-0.688-0.844-0.125c-1.031-1.719-2.016-3.531-2.906-5.469c-0.953-2.031,0.25-4,0.266-6.062\r\n\t\tc0.031-4.375-0.594-8.125,0.406-12.469c-0.156-0.094-0.312-0.125-0.375,0.062c-0.062-0.188-0.156-0.562-0.281-0.719\r\n\t\tc-0.969,1.5-0.547,4.125-0.75,5.906c0.328,0.594-0.531,4.625-0.75,5.312c-0.516-0.625,0.359-3.094-0.016-3.656\r\n\t\tc0.422-1.25-0.078-2.406-0.203-3.719c0.891,1.031,0.688-2.062,0.703-2.781c0.016-1.031,0.234-2.531,0.703-3.281\r\n\t\tc-0.234-0.281-0.562-2.938-0.547-3c0.203-0.344,0.422-3.031,0.672-2.75c0.125-0.25,0.062-0.875,0.062-1.25\r\n\t\tc0.109,0.125,0.078,0.25,0.156,0.375c0.172-0.281,0.312-1.406,0-0.625c-0.812-1,1.531-4.75,2.016-5.656\r\n\t\tc1.547-2.656,2.109-3.875,3.422-6.375c0.219,0.812,0.531,0.812,0.594,1.25c0.016-0.031,0.031-0.031,0.031-0.062\r\n\t\tc-0.094,0.094-0.109,0.188,0,0.25c0-0.062-0.031-0.125-0.031-0.188c-0.125,0.219-0.344,0.438-0.156,0.656\r\n\t\tc0.641-1.094,0.594-1.969,1.047-2.969c-0.547,0.062-0.359-0.906-0.062-1.5c-0.859,0-0.266-0.75-0.891-1.062\r\n\t\tc0.031,0.688,0.328,1.312,0.422,1.938c-0.281,0.406-0.062,1.875-0.203,2.562c-1.125-0.938,0.109-2.094-0.719-2.719\r\n\t\tc0.469-0.656-0.375-1.094,0.312-2.031c0.062,0.094,0.125,0.156,0.188,0.25c0.406-0.625,1.484-1.656,0.781-2.188\r\n\t\tc0.156-0.188,0.219-0.438,0.438-0.656c0.016,0.094,0.031,0.188,0.031,0.281c0.25-0.406,0.141-0.375,0.391-0.719\r\n\t\tc0.047,0.031-0.188,0-0.297-0.062c-0.094,0.156-0.141,0.188-0.281,0.281c0.109-0.188,0.688-1.594,0.641-1.625\r\n\t\tc-0.047-0.062,0.859-0.688,0.922-0.781c-0.141,0.062-0.375,0.219-0.531,0.281c-0.094-0.125,0.062-0.594,0.141-0.844\r\n\t\tc0.391,0.562,0.297-0.188,0.406-0.438c-0.047,0.125-0.078,0.219-0.109,0.344c-0.062-0.094-0.141-0.125-0.25-0.094\r\n\t\tc0.125-0.625,0.25-0.906,0.688-1.562c-0.5,0.781,0.406-1.062-0.156-0.219c0.062,0.094,1.172-3.289,1.406-3.742\r\n\t\tc-0.188,0.219-0.375,0.484-0.562,0.719c-0.062-0.062-0.234-0.5-0.281-0.609c0.062-0.078,0.031,2.109-0.469,1.438\r\n\t\tc-0.156,0.516-0.531,1.328-0.328,1.602c0.172-0.352,0.359-0.398,0.516-0.555c-0.469,0.523-0.219,0.805-0.906,1.055\r\n\t\tc-0.031-0.031,0.234-0.688,0.312-0.852c-0.109,0.164-0.188,0.195-0.312,0.289c0.141-0.711,0.438-1.352,0.844-1.852\r\n\t\tc-0.062,0.062-0.156,0.109-0.234,0.172c0.188-0.531,1.016-3.344,0.953-3.422c-0.047,0.094-0.094,0.203-0.156,0.297\r\n\t\tc0.016-0.594-0.062-0.703,0.297-1.156c-0.984-0.766-0.453-2.266-1.016-3.062c0.312-0.312,0.125-0.727,0.344-0.898\r\n\t\tc0.156,0.227,0.156-0.102,0.344-0.289c-0.047-0.18-0.281-0.156-0.375-0.031c-0.156-0.32,0.094-0.117-0.156-0.555\r\n\t\tc-0.438,0.57-0.391,0.859-0.969,1.305c0.016-0.336,0.031-0.477-0.031-0.711c-0.125,0.109-0.25,0.211-0.359,0.297\r\n\t\tc-0.047-0.07-0.047-0.133,0.078-0.18c-0.359,0.156-0.469,0.172-0.938,0.422c0-0.086,0.016-0.18,0.031-0.273\r\n\t\tc-0.188,0.188-0.141,0.07-0.281-0.156c0.688-0.414,1.188-1.406,2.031-1.547c0.156,0.32-0.156,0.117,0.125,0.547\r\n\t\tc0.25-0.273,0.281-0.422,0.5-0.586c-0.031-0.102-0.25-0.023-0.391-0.117c0.156-0.164,0.016-0.133,0.172-0.32\r\n\t\tc-0.594,0.133-1.281,0.336-1.625,0.742c-0.062-0.219,0.031-0.18,0-0.352c-0.406,0.484-2.219,1.742-2.312,1.5\r\n\t\tc-0.672,0.844-1.859,0.234-2.5,0.969c0-0.078,0.016-0.164,0.031-0.25c-0.25,0.102-0.688,0.125-0.781,0.234\r\n\t\tc0-0.094,0.031-0.188,0.031-0.289c-0.25,0.352-0.016-0.391-0.062-0.477c-0.125,0.273-0.453,0.367-0.766,0.641\r\n\t\tc-0.031-0.07-0.109-0.336-0.125-0.359c0.375-0.289,0.578-0.117,0.953-0.539c0.031,0.195,0.188,0.492,0.25,0.641\r\n\t\tc0.625-0.664,0.875-0.195,1.672-0.656c0.375-0.508,1.141-1.039,1.734-1.312c-0.062-0.164-0.344-0.148-0.531-0.195\r\n\t\tc0.078-0.125,0.172-0.25,0.281-0.375c-0.156-0.188-0.406,0.18-0.5,0.289c-0.047-0.242,0.297-0.977,0.406-1.227\r\n\t\tc-0.203,0-0.594-0.039-0.75-0.023c0.031-0.055,1.438-1.602,1.281-2.023c-0.188,0.203-0.281,0.227-0.438,0.391\r\n\t\tc-0.203-0.461,0.156-1.016,0.562-1.305c0.125-0.156,0.312-0.148,0.438-0.305c-0.297-0.938,0.281-1.445,1.375-1.961\r\n\t\tc-0.047,0.117-0.156,0.367-0.141,0.438c0.234-0.43,0.547-0.656,0.859-0.93c-0.094,0.219-0.188,0.648-0.141,0.836\r\n\t\tc0.953,0.391,1.469-0.391,1.938-1.273c-0.109,0.078-0.266-0.086-0.609-0.031c0.156-0.227,0.188-0.516,0.312-0.727\r\n\t\tc-0.281,0.305-0.25-0.531-0.531-0.273c0-0.297,0.516-1.695,0.594-1.25c0.359-0.312,0.219-0.492,0.062-0.766\r\n\t\tc0.406-0.43,0.594-0.008,0.828-0.188c-0.125,0.109-0.125,0.234-0.016,0.367c0.578-0.562,0.453,0.016,0.781-0.258\r\n\t\tc0.266,0.719-0.922,0.891-0.203,1.891c0.188-0.25,0.047-0.5,0.234-0.633c0.062,0.055,0.141,0.109,0.219,0.172\r\n\t\tc-0.156,0.062-0.172,0.188-0.031,0.328c0.25-0.234,0.594-1.406,0.609-1.57c-0.109-0.141-0.203-0.133-0.297,0.016\r\n\t\tc-0.172-0.531,1.062-2.586,1.562-2.898c0.328,0.891,0.719,0.469,0.875,0.703c0.719-0.922,2.062-0.523,2.25-0.688\r\n\t\tc0.031,0.188-0.312,0.414,0.188,0.008c0.047,0.102,0.469,0.945,0.812,0.414c0.188,0.562,0,0.555-0.344,1\r\n\t\tc0.156-0.008,0.453-0.086,0.5,0.008c-0.281,0.234-0.219,0.227-0.266,0.531c0.344-0.289,0.078,0.336,0.359,0.047\r\n\t\tc-0.047,0.289,0.156,1.352-0.062,1.523c0.5,0.18,1.031,1.945,0.953,2.906c0.141-0.062,0.297-0.117,0.453-0.188\r\n\t\tc0.047,0.195,0.406,1.977,0.312,2.227c-0.062,0.195-0.312,2.578-0.25,2.625c0.281-0.289,0.344-0.555,0.438-0.969\r\n\t\tc0.281,0.352-0.125,0.75,0.5,0.109c-0.016,0.094-0.031,0.18-0.031,0.266c0.188-0.195,0.422-0.312,0.609-0.516\r\n\t\tc0.047,0.109-0.141,0.594-0.234,0.734c0.562-0.125,0.984-0.133,1.219,0.305c0.219-0.133,0.438-0.273,0.656-0.414\r\n\t\tc0.562,0.977-0.25,0.484-0.625,0.992c0.469,0.562,1.562-0.359,2.094-0.672c-0.188,0.656-1.094,3.062-0.75,3.547\r\n\t\tc0.359-0.469,0.719-0.508,1.078-0.938c-0.203,0.266-0.406,0.664-0.766,1.094c0.188,0.289,0.625,0.008,0.75-0.133\r\n\t\tc0.656,0.75,0.062,3.219,1,3.938c0.031-0.125,0.062-0.25,0.078-0.375c0.359,0.375,0.578,1.031,0.141,1.5\r\n\t\tc-0.375-0.344-1.344,0.031-0.844,0.531c-0.172,0.125,0.453,0.5,0.625,0.625c-0.031-0.031,0.719,0.594,1.094,0.219\r\n\t\tc0.531,0.531,0,1.219-0.406,1.594c0.094,0.125,0.188,0.156,0.281,0.125c-0.156,0.297-0.281,0.594-0.344,0.938\r\n\t\tc0.609-0.344,0.641-1.109,1.297-1.422c0.078,0.078,1.422,0.141,1.609-0.016c-0.062-0.125-0.031-0.219-0.109-0.344\r\n\t\tc-0.406,0.406-0.781-0.141-1-0.281c-0.109,0.141-0.203,0.281-0.297,0.406c-0.031-0.047,0.031-0.609-0.219-0.219\r\n\t\tc0.312-0.531,0.922-0.844,1.25-0.391c0.578-0.734,0.469,1.453,0.422,1.766c0.141-0.031,0.234-0.094,0.297-0.219\r\n\t\tc-0.156,0.312-0.094,0.344-0.344,0.578c0.062,0.047,0.438,0.141,0.531,0.047c-0.016,0.469,0.219,1.219,0.266,1.523\r\n\t\tc0.703-0.18,1.219,0.625,1.672,1c0.219-0.5,0.562-0.688,0.797-1c-0.047,0.406,0.062,0.562-0.078,1\r\n\t\tc0.281,0.219,0.156,0.062,0.438-0.062c-0.062,0.188-0.188,0.281-0.375,0.312c0.062,0.094,0.156,0.094,0.25,0.031\r\n\t\tc-0.531,0.781-0.406,1.156-0.734,1.906c0.25-0.031,0.297,0.188,0.453-0.062c-0.594-0.469,0.5-1.031,0.719-1.281\r\n\t\tc0.234,0.031,1.344,0.219,1.734-0.281c-0.156-0.125-0.359-0.125-0.547-0.219c0.219-0.344,0.562-0.594,0.875-0.75\r\n\t\tc0.094,0.094-0.031,0.312,0.25,0.406c0.25-0.344,0.375-0.281,0.594-0.562c-0.281-0.406-0.828-0.156-0.75-1.211\r\n\t\tc-0.141,0.172-0.266,0.328-0.391,0.5c-0.094-0.172,0.109-0.312-0.25-0.188c0.812-0.562,0.172-0.875,0.641-1.359\r\n\t\tc0.219-0.266,0.906-0.609,1.266-1.047c0.047,0.156,0.094,0.344,0.141,0.5c0.656-1.031,1.625-2.422,2.5-3.344\r\n\t\tc0.016,0.094,0.031,0.188,0.062,0.25c0.516-0.391,0.281-0.438,0.719-0.016c0.156-0.094,0.312-0.156,0.469-0.25\r\n\t\tc0.391,0.359,0.531,0.703,0.438,1.172c0.328,0.172,0.453,0.375,0.844,0.656c-0.531,0.281-1.188,1-1.781,0.656\r\n\t\tc-0.734,0.016-1.531-1.156-1.453,0.078c-0.453,0.047-0.922,0.203-1.047,0.391c0.281,0.219,0.469,2.406,0.344,2.742\r\n\t\tc-0.047-0.094,0.141,0.125,0.156,0.156c-0.438,0.312-0.312,0-0.516-0.219c-0.109,0.094-0.25,0.188-0.375,0.281\r\n\t\tc0.109,0.031,0.234,0.062,0.359,0.094c-0.266,0.406-0.906,0.25-1.016,0.469c-0.109,0.312,0.234,0.719,0.109,0.875\r\n\t\tc0.5,0.406-0.25,1.531-0.625,2c0.625,0.438,1.188-1.094,2.141-1c-0.125,0.219-0.609,1.938-1.25,1.5\r\n\t\tc-0.484,0.719-0.172,1.031-0.578,1.969c0.297,0.219,0.062,0.062,0.391,0.281c1.172-0.812,3.547-1.562,3.422-3.281\r\n\t\tc0.656,0.531,1.125,0.938,1.125,1.625c-0.078-0.062-0.375,0.344,0.297,0.625c-0.297,0.219-0.391,0.562-0.953,0.688\r\n\t\tc0.094,0.094,0.219,0.156,0.312,0.219c-0.312,0.375-0.688,0.594-0.938,1.125c-0.172,0.375,0.219,0.562-0.266,1.219\r\n\t\tc-0.141-0.188-1.938-0.312-2.203,0.188c-0.031-0.438-0.25-0.5-0.031-1.031c-0.078-0.062-0.344-0.125-0.484-0.156\r\n\t\tc0.094,0.062,0.219,1.031,0.125,1.125c-0.547-0.438-0.5-0.75-1.156-1.281c-0.219,0.281-0.547,0.812-0.828,1.188\r\n\t\tc-0.234-0.125-0.938-1.594-0.969-1.719c-0.234,0.281-0.234,0.312-0.359,0.531c-0.141-0.156-0.297-0.25-0.484-0.375\r\n\t\tc-0.125,0.188,1.188,1.406,1.531,1.562c-0.422,0.625-1.312,0.406-1.594,0.844c0-0.25-0.281-0.719-0.219-0.781\r\n\t\tc-0.344-0.188-0.953,0.281-1.188,0.719c-0.062-0.125-0.125-0.25-0.203-0.375c-0.203,0.469-0.562,1.656-1.109,0.594\r\n\t\tc-0.203,0.25-0.203,0.438-0.531,0.156c0.109,0.062,0.125,0.156,0.094,0.281c-0.531-0.438-2.031,0.844-2.656,0.781\r\n\t\tc-0.266,0.438-0.625,0.625-1.172,1.125c0.234,0.188-0.172,0.906-0.25,1.219c1.172,0.344,0.391,2-0.125,2.781\r\n\t\tc2.156-0.094,1.031,3.344,1.797,3.844c0.406,1.469,3,2.781,1.156,4.25c-0.531,0.406-0.953,1.938-0.812,2.625\r\n\t\tc0.281,1.281,1.719,1.531,1.875,0.312c0.047-0.375,0.844-2.812,1.312-2.781c0.75,0.062,2.031-0.969,2.5-0.688\r\n\t\tc0.062-0.156,0.094-0.312,0.141-0.469c-0.047,0.281-0.125,0.344-0.266,0.188c0.594-0.781,1.219-2.312,0.922-3.281\r\n\t\tc-0.484-1.594,0.922-0.844,1.578-1.656c-0.5-0.25,0.219-0.938,0.469-1.062c-0.609-0.375,0.625-0.938,0.719-0.906\r\n\t\tc0.578-0.781,0.094,9.641,1.156,10.5c0.984,0.672,2.688,13.031,1.828,13.031c0.109,0,0.203,0,0.297,0\r\n\t\tc-0.375,0,0.078-9.969,0.641-9.672c-0.047,0.188-0.156-5.141-0.312-5.297c-0.391,0.562,0.297-2.125,0.578-1.922\r\n\t\tc-0.609,0.406-1.516-0.422-1.562,0.359c0.344,0.156,0.641,0.625,0.344,1.078c0.172,0,0.344-0.578,0.5-0.391\r\n\t\tc-0.156,0.203-0.094,0.297-0.125,0.547c0.484-0.188,0.812-0.328,1.125-0.156c0.312-0.547,1.672-1.922,2.109-1.625\r\n\t\tc-0.781,1.156-0.266,1.922-0.547,2.891c-0.188-0.109-0.312-0.016-0.5,0.047c0.438,0.25,0.625,1.484-0.094,1.828\r\n\t\tc0.219,0.156,0.531,0.781,0.312,1.125c-0.281-0.312-0.031,0.031-0.688-0.406c0.062-0.062-0.156,0.562-0.188,0.625\r\n\t\tc0.094,0.125,0.188,0.125,0.312,0c-0.406,0.75,0.688,2,0.422,2.719c0.109,0.125,0.234-0.094,0.391-0.188\r\n\t\tc-0.125,0.281,0.062,0.219,0.25,0.188c-0.594,1.281,0.781,0.469,0.484,1.406c-0.578-0.344-1.656,0.312-2.531-0.156\r\n\t\tc-0.031,1.281,3.141-0.438,2.547,1.656c0.188,0.125,0.203-0.031,0.375-0.156C206.406,234.938,206.891,234.312,206.453,235.156z\r\n\t\t M197.875,239.125c-0.391,0.844-0.016,1.031,0.75,1.406c-0.281-0.156-0.016,0.188-0.016,0.344\r\n\t\tc-0.156,0.031-0.312,0.062-0.484,0.094c0.141-0.312-0.078-0.188,0.203-0.438C197.75,240.25,196.828,239.625,197.875,239.125z\r\n\t\t M189.781,242.719c-0.266,0.562-0.953-0.031-1.25-0.219C188.703,242.031,189.516,242.594,189.781,242.719z M176,274.844\r\n\t\tc0,0.188,0,0.344,0,0.562C176,275.219,176,274.688,176,274.844z M185.406,279.125c-0.141-0.594-0.734,1.688-0.141-0.594\r\n\t\tC185.484,278.625,186,279.281,185.406,279.125z M184.844,269.25c-0.672-0.062-0.875,0-0.953-0.781\r\n\t\tc0.422,0.188,0.594,0.156,0.922,0.375C184.75,269.125,184.875,269,184.844,269.25z M177.609,262.531\r\n\t\tc1.031-0.688-0.906-2.438-0.938-3.438c-0.094-1.844-2.062-1.125-2.562-1.812c0.656-0.562,1.781-0.812,2.125,0.406\r\n\t\tc0.141,0,0.219-0.094,0.219-0.219c0.969,1.156,1.5,2.406,2.062,3.656c0.094,0.219,0.562,1.219,0.844,1.594\r\n\t\tC180.609,264.344,178.297,262.812,177.609,262.531z M177.797,265.062c-0.531-0.344-0.438-0.281-0.922-0.656\r\n\t\tc-0.172-0.281-0.375-0.656-0.266-0.906C177.109,263.594,178.172,264.406,177.797,265.062z M175.469,258.281\r\n\t\tc-0.281,0.219-0.219,0.469-0.656,0.25c0.078-0.25,0.281-0.375,0.375-0.688C175.266,258,175.359,258.125,175.469,258.281z\r\n\t\t M178.484,257.406c0.203,0.062,0.734-0.25,0.406,0.5C178.75,257.719,178.625,257.562,178.484,257.406z M180.328,266.219\r\n\t\tc0.297-0.531,0.25-1.031,0.125-1.75c1.078,0.594,2.594,1.938,2.625,3.281c-0.75-0.438-1.062-0.375-1.719-1.031\r\n\t\tc-0.156,0.469-0.188,0.125-0.422,0.438c0.016,0-0.828-0.938-1.125-1.094c-0.469-0.344-0.828-0.375-0.578-0.938\r\n\t\tC179.797,265.438,180.188,265.688,180.328,266.219z M173.828,321.75c-0.156-0.125-0.172-0.062-0.094,0.125\r\n\t\tc-0.094-0.094-0.125-0.062-0.078,0.031c-0.484-0.188-0.281-0.812-0.406-1.406c0.031,0.031,0.266,0.406,0.203,0.125\r\n\t\tc0.25,0.156,0.203,0.125,0.25,0.469C173.422,320.969,173.734,321.562,173.828,321.75z M166.781,192.102\r\n\t\tc-0.141-0.5,0.016-0.688,0.266-1.141c0.188,0.172,0.188,0.172,0.266,0.234c-0.094-0.125,0.016-0.281,0.156-0.297\r\n\t\tc0.078,0.078-0.016,0.234,0.047,0.406c0.25-0.281,0,0.078,0.234-0.172c-0.016,0.25-0.047,0.719-0.297,0.969\r\n\t\tC167.344,191.945,167.016,191.836,166.781,192.102z M167.953,190.883c0.156-0.133,0.312-0.273,0.469-0.422\r\n\t\tc0.109,0.156,0.062,0.289-0.125,0.391c0.031,0.125-0.094,0.219-0.188,0.312C168.125,190.664,168.094,191.227,167.953,190.883z\r\n\t\t M168.438,205.938c0.125-0.5,0.25-1.281,0.234-1.438c0.266-0.406,0.312-0.812,0.594-1.188c0.188,0.125,0.281,0.281,0.422,0.531\r\n\t\tc-0.734,0.562-0.625,1.312-0.938,1.781C168.562,205.281,168.578,205.781,168.438,205.938z M171.297,201.156\r\n\t\tc0.031,0.031-0.75,1.938-0.906,2.125c-0.141-0.312,0.016-0.281,0.125-0.625c-0.156-0.062,0.25-0.938,0.344-1.094\r\n\t\tc-0.141-0.312-0.031-0.406,0.25-0.906c-0.047,0.375,0,0.594-0.047,0.938C171.203,201.469,171.266,201.344,171.297,201.156z\r\n\t\t M172.094,198.914c-0.234,0.328-0.203,0.531-0.609,0.484c0.328-0.422,0.578-0.859,0.719-1.359\r\n\t\tC172.625,198.57,171.953,198.664,172.094,198.914z M201.766,202.406c-0.094,0.281,0,0.469,0,0.812\r\n\t\tc-0.109,0.188-0.234,0.188-0.391-0.094C201.484,202.844,201.641,202.656,201.766,202.406z M200.406,214.781\r\n\t\tc-0.141,0.188-0.172,0.031-0.203-0.125C200.594,214.375,200.266,214.719,200.406,214.781z M195.984,211.781\r\n\t\tc0.156-0.219,0.312-0.438,0.438-0.656c-0.312-0.156-0.312-0.062-0.562-0.219c0.25-0.688,0.641-0.031,1.031-0.438\r\n\t\tc0.328-0.594,0.578-1.188,1.188-1.75c0.188,0.156-0.094,0.219,0.188,0.344c-0.422,0.125-0.219,0.125-0.469,0.469\r\n\t\tc1.031-0.031,0.734,1.719,0.312,2.438c0.094,0.094,1.094-0.281,0.562,0.406c-0.094-0.062-0.281,0.188-0.531,0.188\r\n\t\tc0.062-0.156-0.344-0.531-0.453-0.688c-0.297-0.406,0.297-0.625,0.453-0.875C197.109,210.688,197.078,212.031,195.984,211.781z\r\n\t\t M197.578,212.969c-0.406,0.375-1.219,0.438-1.719,0.156C196.016,212.719,197.031,213.062,197.578,212.969z M198.281,208.844\r\n\t\tc0.188-0.25-0.109-0.375,0.266-0.188C198.547,208.938,198.516,209.062,198.281,208.844z M198.859,214.875\r\n\t\tc-0.25,0.344-0.297,0.562-0.625,0.75C197.797,215.281,198.672,214.969,198.859,214.875z M194.609,221.781\r\n\t\tc0.5,0.406-0.219,0.625-0.375,0.906C193.859,222.5,193.984,222.188,194.609,221.781z M191.203,225.906\r\n\t\tc-0.219,0.25-0.5-0.344-0.562-0.625C191.141,225.219,190.984,225.562,191.203,225.906z M207.672,220.062\r\n\t\tc0.297-0.5,0.984-0.562,0.625,0C208.047,220.062,207.922,220.281,207.672,220.062z M213.016,215.906\r\n\t\tc-0.516,0.312-0.406,0.094-0.719,0.688c-0.438-0.219,0.125-0.281-0.391-0.594c-0.156,0.312-0.344,0.281-0.609,0.75\r\n\t\tc-0.047-0.094-0.094-0.188-0.125-0.281c-0.188,0.406,0.094,0.312-0.125,0.719c-0.25-0.406-0.219-0.062-0.375-0.625\r\n\t\tc-0.25,0.438-0.156,1.438-0.781,1.031c0.125-0.188-0.188-0.438-0.375-0.594c0.125-0.25,0.156-0.062,0.375-0.125\r\n\t\tc-0.125-0.125-0.266-0.219-0.422-0.312c0.109-0.094,0.234-0.219,0.359-0.312c-0.531-0.188,0.078-0.031-0.562-0.344\r\n\t\tc0.141-0.219,0.359-0.125,0.594-0.188c-0.375-0.344-1.172-0.5-0.578-1.5c-0.375,0.094,0.078-0.031-0.328-0.219\r\n\t\tc-0.094,0.281-0.031,0.312-0.234,0.625c-0.297-0.125,0.219-0.438-0.047-0.625c-0.375,0.562-0.031,0.5-0.297,0.969\r\n\t\tc-0.25-0.188-0.047-0.312-0.359-0.406c-0.422,0.531,0.25,2.312,0.375,3.062c0.031-0.156,0.094-0.312,0.125-0.469\r\n\t\tc0.078,0.031,0.156,0.094,0.219,0.125c-0.031,0.219-0.344,0.562-0.125,0.688c-0.078,0.094-0.172,0.156-0.25,0.219\r\n\t\tc-0.062-0.062-0.094-0.188-0.125-0.281c-0.312,0.375,0,0.812-0.594,0.438c-0.062,0.125,0.125,0.688,0.031,0.969\r\n\t\tc-0.078-0.062-0.406-1.906-0.828-1.094c-0.141-0.25-0.234-0.5-0.328-0.781c-0.344,0.469-0.344-0.188-0.734-0.469\r\n\t\tc-0.656,1.375,1.25,2.438,0.641,3.469c-0.656-0.406-0.531-0.719-1.312-1.406c-0.641-0.562-1.438-0.531-1.938-1.25\r\n\t\tc0.156-0.156,0.438-0.094,0.688-0.125c-0.109-0.062-0.156-0.312-0.156-0.469c-0.062,0.312-0.188,0.375-0.375,0.125\r\n\t\tc0.297-0.5,0.125-0.156-0.125-0.281c0.375-0.688,0-0.75,0.438-1.438c-0.25-0.219-0.5-0.25-0.625-0.25\r\n\t\tc0.047-0.156,0.125-0.156,0.219-0.062c-0.031-0.188-0.094-0.406-0.062-0.594c-0.031,0.125-0.031,0.219-0.062,0.344\r\n\t\tc-0.406-0.219,0.125-0.562-0.188-0.688c-0.156,0.531-1,0.844-0.656,0.344c-0.656,0.344-1,0.094-1.484-0.219\r\n\t\tc0.172-0.281,0.609-1.188,0.953-1.75c0.375,0.625,1.031,0.75,1.344,0.906c0.141-0.125,0.172-0.094,0.375-0.094\r\n\t\tc-0.109,0.25,0.812,0.438,1.062,0.688c0.25-0.688,0.281-1.312,0.234-1.969c0.594,0.406,0.938-0.469,1.562-0.125\r\n\t\tc-0.016-0.781,0.172-0.688,0.453-0.688c0.094-0.094,0.188-0.125,0.281-0.219c-0.188-0.156,0.375-2.375,0.781-2.562\r\n\t\tc-0.375-0.25-0.812,0.062-1.344,0.062c0.266-0.375-0.031-0.531,0.547-1c0.031,0.094,0.078,0.188,0.109,0.281\r\n\t\tc0.188-0.344-0.391-1.281,0.453-0.875c0.172-0.312-0.312-0.125-0.141-0.469c-0.188,0.062-0.359,0.156-0.562,0.219\r\n\t\tc0.328-0.562,0.125-0.031,0.375-0.375c-0.312-0.188,0-0.344-0.297-0.562c-0.281,0.25-0.031-0.156-0.406,0.312\r\n\t\tc0.125-0.281,0.234-0.625,0.391-0.938c-0.312-0.188-0.281,0.094-0.406-0.062c0.094-0.188,0.188-0.406,0.297-0.594\r\n\t\tc-0.266-0.031-0.531-0.031-0.703,0.125c0.141,0.031,0.266,0.062,0.391,0.062c-0.578,1.031-1.109-0.312-1.359-0.75\r\n\t\tc-0.203,0.375-0.406,0.875-0.531,1.406c-0.109-0.062-0.141-1.562-0.219-1.938c0.047,0.281,0.094,0.906-0.094,1.125\r\n\t\tc-0.578-0.438-1.453-1.25-1.531-1.938c-0.031,0.125-0.062,0.25-0.094,0.375c-0.406-0.438-0.25-0.875-0.344-1.5\r\n\t\tc-0.156,0.188-0.344,0.125-0.562-0.031c0.062-0.344,0.078-0.719,0.484-0.969c-0.141-0.773-0.172-3.227,1-2.555\r\n\t\tc0.234-0.156,1.422-0.75,1.422-0.719c0.688-0.031,2.359,0.656,2.281,1.469c0.469,0.031,0.906,0.266,1.188,0.891\r\n\t\tc-0.156,0.109-0.281,0.266-0.406,0.383c0.812-0.164,2.656-0.148,2.312,0.156c0.078,0.219,0.016,1.188,0.016,1.188\r\n\t\tc-0.828,0.875-2.594,0.25-2.609-1.031c-0.469,0.562-0.938,1.156-1.344,1.594c0.656,0.656,0.438-0.031,0.562-0.156\r\n\t\tc0.344-0.156,0.5-0.219,0.875-0.219c0,0.344-0.125,0.312-0.188,0.469c0.156,0,0.312-0.031,0.453-0.031\r\n\t\tc-0.141,0.188-0.344,0.688-0.547,0.938c0.25-0.25,0.469-0.375,0.75-0.812c0.312,0.219,0.344,0.531,0.594,0.781\r\n\t\tc0.25-0.375-0.125-0.562-0.25-0.844c-0.188-0.469,1.156-0.531,0.969,0.156c-0.25,0.844,1.031,0.938,1.422,1.156\r\n\t\tc-0.234,0.375-0.484,0.625-0.578,0.812c0.125,0,0.25,0,0.406,0.031c-0.422,0.656-0.219,0.562-0.875,0.594\r\n\t\tc-0.062,0.312-0.062,0.5-0.062,0.75c0.188-0.125,0.375-0.281,0.562-0.406c0.109,0.062-0.062,0.531-0.156,0.688\r\n\t\tc0.078,0.094,0.141,0.062,0.156-0.094c0,0.156-0.109,0.344,0.031,0.375c0-0.156,0.109-0.531,0.172-0.656\r\n\t\tc0.016,0.031,0.312,0.094,0.5,0.156c-0.047,0.219-0.109,0.438-0.156,0.656c0.109,0.062,0.469,0.156,0.203,0.531\r\n\t\tc0.172,0.094,0.219-0.062,0.406,0.062c-0.297,0.469-0.438,0-0.75,0.438c0.188,0.219,0.531-0.031,0.75-0.062\r\n\t\tc-0.062,0.188-0.281,0.25-0.453,0.281c0.609-0.062,0.891,0.219,0.953,0.812c-0.344-0.188-0.391-0.031-0.719-0.062\r\n\t\tc0.594,0.375-0.141,0.281,0.344,0.562c0.188-0.062,0.25-0.375,0.484-0.281c0.094,0.781-0.422,1.188-0.953,0.781\r\n\t\tc0.062,0.125,0.031,0.25-0.062,0.312c0.531,0.375,0.219,0.312,0.453,0.875c-0.625-0.375-0.391-0.219-0.641-0.594\r\n\t\tc-0.125,0.188-0.094,0.438-0.031,0.75c-1.594-0.156-0.062,0.562-0.438,1.094c0.094,0.094,0.406-0.031-0.062,0.312\r\n\t\tc0.266,0.156,0.062-0.156,0.344,0c-0.375,0.438,0,0.125-0.188,0.469c0.25,0.156,0.094-0.219,0.312,0\r\n\t\tc-0.141,0.156-0.312,0.312-0.469,0.5c0.25,0.125,0.281-0.094,0.516-0.094c-0.172,0.438,0.188-0.094,0.266-0.219\r\n\t\tc0.188,0.125-0.062,0.344-0.125,0.5c0.125,0.062,0.344-0.312,0.625-0.375c-0.109,0.281-0.156,0.375-0.422,0.688\r\n\t\tc0.281,0.125,0.141,0.219,0.391-0.125c-0.062,0.469,0.109,0.438-0.219,0.812c0.141,0.031,0.156,0.094,0.047,0.188\r\n\t\tc0,0.031,0.578,0.5,0.453,0.469c0.078-0.406,0.234-0.5,0.469-0.281c-0.156,0.219-0.375,0.406-0.562,0.625\r\n\t\tc0.188,0.094,0.375-0.156,0.5-0.281c0.297,0.125,0.422,0.094,0.844,0.312C212.703,215.625,212.672,215.812,213.016,215.906z\r\n\t\t M204.078,207.094c0.297-0.5,0.375-0.062,0.406,0.25C204.359,207.281,204.203,207.188,204.078,207.094z M205.922,209.344\r\n\t\tc-0.125,0.281-0.688,0.438-0.953,0.5C204.641,208.5,205.75,209.25,205.922,209.344z M205.297,205.969\r\n\t\tc-0.344-0.156-0.562-0.156-0.578-0.625c0.516,0.344,0.516,0,0.984,0.312C205.562,205.75,205.422,205.875,205.297,205.969z\r\n\t\t M206.703,209.469c0.109-0.125,0.203-0.281,0.312-0.406C207.141,209.188,207.047,209.781,206.703,209.469z M206.516,207.188\r\n\t\tc0.125,0.031,0.25,0.062,0.391,0.062C206.641,207.594,206.641,207.281,206.516,207.188z M211.016,197.18\r\n\t\tc0.156-0.141,0.453-0.047,0.656,0.078C211.172,197.617,211.281,197.273,211.016,197.18z M215.312,195.508\r\n\t\tc-0.297,0.375-0.047,0.5-1.219-0.266c-0.625,0.672-0.453,0.547-1.594,0.047c0.578,1,0.844,1.781-0.516,1.594\r\n\t\tc0.031-0.125,0.062-0.234,0.094-0.344c-0.375,0.188-0.906,0.406-1.234,0.125c0.516-0.641,0.578-0.578,0.141-0.875\r\n\t\tc0.094-0.312-0.031-0.375,0.219-0.641c-0.141-0.109-0.297,0.484-0.688,0.391c-0.328-0.062-0.375-0.219-0.812-0.469\r\n\t\tc0.062-0.219,0.188-0.312,0.391-0.312c-0.172-0.094-0.422-0.188-0.609-0.266c-0.156,0.188-0.031,0.297-0.125,0.484\r\n\t\tc-0.312-0.141-0.375-0.078-0.594,0.188c-0.281-0.156-0.188-1.562-0.656-0.906c0.031-0.188,0-0.344,0.031-0.562\r\n\t\tc-0.656,0.172-0.625,0.219-0.781-0.406c-0.172,0.219-0.141,0.281-0.375,0.125c0.219-0.266,0.188-0.469,0.344-0.75\r\n\t\tc0.312,0.219,0.656-0.219,0.906,0.094c0.188-0.281,0.5,0.156,0.688,0.344c0.344-0.375,0.125-0.891,0.422-1.125\r\n\t\tc1.016,0.828,0.859,1.438,1.453,2.281c0.328-0.375,0.344-0.125,0.75-0.422c-0.141-0.141-0.344-0.141-0.531-0.203\r\n\t\tc0.094-0.062,0.125-0.172,0.125-0.312c-0.094,0.078-0.188,0.125-0.281,0.188c0-0.344,0.344-0.5,0.062-0.75\r\n\t\tc0.281-0.172,0.438-0.156,0.656-0.469c-0.094-0.109-1.547-0.094-1.938-0.5c0.359-0.484,0.406-0.375,0.797-0.781\r\n\t\tc0.359,0.328,0.516,0.156,0.766,0.391c0.094-0.047,0.125-0.094,0.125-0.141c0.469,0.25,1.156,0.906,1.625,1.422\r\n\t\tc0.078-0.078,0.156-0.172,0.219-0.25c-0.312-0.266-0.609-0.719-0.953-0.891c-0.172,0.094,0.812-0.219,0.766-0.219\r\n\t\tc-0.219-0.172-0.188,0.125-0.375,0.094c0.078-0.344,0.078-0.664,0.188-1.039c-0.5,0.539-0.078,0.695-0.719,0.852\r\n\t\tc-0.438,0.312-0.688-0.547-1-0.141c0-0.109,0-0.234,0.031-0.359c-0.203,0.203-1.172,0.469-0.5-0.211\r\n\t\tc-0.625,0.523-1.219,0.109-1.844,0.617c-0.062-0.25-0.156-0.414-0.156-0.742c-0.375,0.461-0.469,0.273-0.984-0.156\r\n\t\tc0.375-0.422,0.828-1.641,1.672-0.906c0.344-0.391-0.844-0.664-1.125-0.898c0.062-0.086,0.094-0.195,0.141-0.305\r\n\t\tc0.266,0.234,0.438,0.578,0.672,0.32c-0.547-0.484-0.531-0.656-0.516-1.211c0.109,0.141,0.375-0.398,0.422-0.492\r\n\t\tc0.156,0.469,0.25,0.633,0.656,0.93c0-0.344-0.766-1.102-0.594-1.281c0.312,0.211,1.188,0.156,1.562-0.195\r\n\t\tc-0.281-0.141-0.359-0.469-0.422-0.555c-0.172,0.164-0.234,0.109-0.438,0.062c0.047-0.102,0.141-0.414,0.203-0.648\r\n\t\tc0.797,0.867,1.062,0.562,0.328-0.359c0.016,0,0.453-0.023,0.453-0.023c-0.109,0.109,1.156,1.438,0.812,2.164\r\n\t\tc-0.281,0.586-0.344,2.117,1.141,1.594c-0.391,0.219,0.141,0.305,0.203,0.375c-0.094,0.289-0.219,0.562-0.594,1.133\r\n\t\tc0.281-0.344,0.688-0.188,1.016-0.648c0.328,0.352,0.953,0.523,1.375,0.812c0.078,0.117-0.078,0.578,0.109,0.688\r\n\t\tc-0.5,0.688,0.062,1.656,0.531,1.188c-0.812-0.562-0.703-1.617,0.375-1.062c0.438,0.188,1.75,1.125,2.094,0.797\r\n\t\tc-0.391-0.188-0.688-0.453-0.875-0.609c0.5,0.406,0.984,0.109,1.531,0.5c-0.125-0.156-0.281-0.344-0.438-0.5\r\n\t\tc0.234-0.25,0.375,0.062,0.656,0.062c-1.312-0.977-2.594-0.906-4-1.852c0.094-0.055,0.188-0.117,0.281-0.188\r\n\t\tc-0.234-0.148-0.531,0.047-0.812,0.219c-0.188,0.148-0.438-0.375-0.688-0.523c0.125-0.117,0.25-0.203,0.375-0.297\r\n\t\tc-0.438-0.477-1.438-0.781-2.047-1.375c0.297,0.008,0.766,0.109,0.922-0.109c-0.156-0.148-0.469-0.125-0.766-0.195\r\n\t\tc0.047-0.109,0.094-0.211,0.141-0.32c0.25,0.32,0.906,0.211,1.281,0.422c-0.344-0.375-0.734-0.539-1.141-0.719\r\n\t\tc0.203,0.039,0.391,0.039,0.594,0.102c-1.312-0.938,1.984,0.125,1.531,0.562c0.109,0.109,0.484,0.75,0.547,1.031\r\n\t\tc0.125-0.164,0.094-0.219,0.188-0.477c0.109,0.016,0.219,0.031,0.344,0.062c-0.094,0.133-0.156,0.273-0.219,0.414\r\n\t\tc0.625-0.633,0.5-0.688-0.469-1.148c0.109-0.18,0.219-0.352,0.328-0.531c0.203,0.344,0.422,0.328,0.641,0.695\r\n\t\tc0.125-0.188,0.203-0.414,0.281-0.609c0.125,0.086,0.797,1.086,0.719,1.133c0.297,0.32-0.266,1.469,0.406,0.68\r\n\t\tc-0.031,0.25-0.062,0.469-0.078,0.711c0.297-0.359,0.422-0.766,0.578-1.133c0.25,0.18,0.812,1.289,0.594,1.562\r\n\t\tc0.125,0.188,0.094-0.125,0.266,0.008c-0.266-0.57-0.391-0.586,0.078-0.883c0.031,0.016,0.125,0.828,0.625,0.047\r\n\t\tc0.391,0.375,0.969,0.742,0.609,1.555c0.266-0.477,0.266-0.477,0.094-1.086c0.984,0.188,2.016,0.523,2.016,1.539\r\n\t\tc0.938-1.25,2.812,0.719,3.547,1.172c-0.766,0.438-1.203,0.109-1.953,0.25c1.281,0.422,1.969-0.062,2.875,0.5\r\n\t\tc0.656,0.312,0.5,1.297,1.281,1.875c-0.422,0.75-2.594,0.266-2.906-0.125c-0.141,0.094-0.141,0.156,0,0.188\r\n\t\tc-0.234-0.047-1-0.156-1.062-0.078c0.484,0.234,1.094,0.375,1.625,0.422c-0.438,0.469-1.688-0.031-1.781,0.188\r\n\t\tc-0.469-0.234-2.188,0.031-2.375-0.156c0.125-0.172-0.062-0.219,0.172-0.438c-0.422,0.375-0.453,0.281-1.125,0.406\r\n\t\tc0.172-0.297-0.234-0.344-0.359-0.438c-0.094,0.141,0.094,0.438,0.156,0.484c-0.375-0.141-0.672-0.078-1.031-0.266\r\n\t\tc-0.188,0.516-0.094,0.266-0.656,0.312c0.219-0.5-0.344-0.375-0.562-0.375c-0.062-0.188-0.125-0.344-0.188-0.516\r\n\t\tc-0.109,0.203-0.156,0.297-0.344,0.125c0.031-0.156,0.062-0.328,0.094-0.484c-0.188,0.125-0.234,0.078-0.156-0.109\r\n\t\tc-0.078,0.078-0.141,0.156-0.219,0.234c-0.094-0.125-0.188-0.25-0.281-0.375c-0.094,0.062-0.188,0.125-0.281,0.188\r\n\t\tc0.938,0.938,1.594,0.891,0.969,1.781c-0.188-0.391-0.516-0.578-0.062-0.969c-0.125,0.031-0.25,0.078-0.375,0.125\r\n\t\tc0.141-0.188-0.375-0.656-0.531-0.75c0.406,0.812,0.156,0.391-0.047,0.75c-0.016,0.047-0.719-0.891-0.891-0.984\r\n\t\tc-0.156,0.266,0.188,0.375,0.375,0.609c-0.406,0.094-0.422-0.031-0.703,0.312c0.047,0.031,0.922,0.125,0.953,0.062\r\n\t\tc0.375,0.281,0.531,0.594,1,0.859c-0.406,0.484-0.375,0.516-0.938,0.109c-0.219,0.188-0.016,0.375-0.125,0.531\r\n\t\tC215.703,195.789,215.5,195.633,215.312,195.508z M207.531,191.602c0.359-0.156,0.438-0.297,0.234-0.422\r\n\t\tc0.203-0.109,0.438-0.172,0.625-0.359C208.5,191.445,208.109,191.898,207.531,191.602z M216.594,197.883\r\n\t\tc-0.172-0.125-0.344,0.203-0.266-0.188C216.672,197.477,216.422,197.758,216.594,197.883z M218.281,229.719\r\n\t\tc0.109-0.156,0.219-0.281,0.016-0.344c-0.156,0.375-0.203,0.281-0.531,0.094c0.094-0.094,0.203-0.156,0.312-0.219\r\n\t\tc-0.156-0.094-0.281-0.156-0.406-0.219c0.375-0.281,0.141-0.062,0.078-0.156c0.141-0.188,0.297-0.312,0.438-0.5\r\n\t\tc-0.547-0.219-1.094,0.469-1.672,0.219c0.156-0.281,0.094,0.094,0.297-0.188c-0.531-0.312-0.266-1.281-0.328-1.469\r\n\t\tc0.094-0.219,0.25-0.188,0.469-0.312c-0.094-0.094-0.219-0.094-0.344,0.031c0.141-0.125,0.125-0.188-0.047-0.219\r\n\t\tc0.125-0.125,0.266-0.25,0.375-0.375c-0.453-0.188-0.484-0.062-0.828,0.125c1.016-1.812,0.312-0.344-0.031-0.562\r\n\t\tc0.188-0.406,0.062-0.312,0.406-0.719c-0.344-0.156-0.266-0.094-0.516,0.094c0.016-0.469,0.109-0.125,0.234-0.406\r\n\t\tc-0.406-0.219-0.062-0.219,0.125-0.531c-0.438-0.188-0.219-0.375-0.281-0.844c0.156,0.062,0.312,0.156,0.438,0.219\r\n\t\tc0.125-0.125,0.062-0.219-0.156-0.281c0.203-0.062,0.656-0.344,0.688-0.375c0.375-0.094-0.281,1.188,0.375-0.156\r\n\t\tc-0.281-0.156-0.719-0.031-1.125,0.125c0.094-0.125,0.609-0.844,0.125-1c0.094-0.219,0.328-0.094,0.391-0.188\r\n\t\tc-0.062-0.156-0.141-0.312-0.203-0.469c0.25,0.094,0.594,0.031,0.719-0.156c-0.219-0.125-0.391-0.188-0.5,0.094\r\n\t\tc-0.156-0.25-0.125-0.219-0.469-0.25c0.266-0.625,0.156-0.062,0.469-0.312c-0.406-0.219-0.25-0.25-0.438-0.594\r\n\t\tc0.141,0,0.281,0.031,0.438,0.031c-0.188-0.094,0.438-0.531,0.516-0.625c-0.406-0.219,0.016-0.562-0.203-0.688\r\n\t\tc0.469-0.062,0.656-0.281,1.188-0.25c-0.484-0.25-0.641,0.031-0.969-0.156c0.359-0.5,0.969-0.438,1.344,0\r\n\t\tc-0.109-0.25-0.312-0.438-0.219-0.688c0.406,0.219,0.625,0.562,1.188,0.844c0.031-0.156,0.094-0.344,0.125-0.5\r\n\t\tc-0.438,0.031-1.656-0.156-1.25-0.656c0.5,0.219,0.641,0.188,1.094,0.281c0.781,0.219,0.25-1.125,1-0.844\r\n\t\tc-0.172,0.156-0.219,0.344-0.156,0.531c0.344-0.312,0.406-0.531,0.594-0.812c-0.141-0.094-0.234-0.031-0.406-0.031\r\n\t\tc0.359-0.562,0.422-0.562,0.844-1c-0.75-0.469-0.969-1.344-1.547-1.594c-0.625,1.062,1.031,1.375-0.422,2\r\n\t\tc-0.625,0.25-1.125-0.062-1.312-0.781c0.344,0.438,0.562,0.469,0.688,0.031c-0.406-0.188,0.062,0.062-0.75-0.406\r\n\t\tc0.312-0.469,0.703-0.969,1.375-1.094c-0.125,0.219,0.031,0.219,0.25,0.344c0.062-0.094,0.156-0.156,0.25-0.219\r\n\t\tc-0.906-0.594-0.125-1.438,0.906-0.156c0.344,0.406,0.281,1,0.797,1.25c0.25-0.25-0.297-0.281-0.094-0.594\r\n\t\tc0.203,0.094,0.266,0.188,0.438,0.031c-0.516-0.281-0.297-0.531,0.156-0.281c0.141-0.281-0.688-0.688,0.25-0.219\r\n\t\tc-0.234-0.219-0.266-0.5-0.578-0.688c0.219-0.312,0.469,0.188,0.672-0.188c-0.297-0.031-0.562-0.156-0.859-0.25\r\n\t\tc0.078-0.031,0.156-0.062,0.203-0.094c-0.141-0.094-0.578-0.469-0.516-0.625l-0.453-0.438c-0.422,0.781-1.562,0.062-0.562-0.5\r\n\t\tc-0.234-0.031-0.266-0.125-0.141-0.25c0.219,0.156,0.531-0.281,0.688-0.375c-0.219-0.062-0.281-0.125-0.125-0.281\r\n\t\tc1.312,0.719,0.781-1.531,1.234-2.406c-0.172-0.062-0.359-0.094-0.531-0.125c0.109-0.094,0.703-0.406,0.953-0.531\r\n\t\tc-0.594-0.812-0.75-5-2.484-4.25c0.109-0.188,0.188-0.375,0.266-0.562c-0.5,0.062-0.906-0.062-1.188-0.344\r\n\t\tc-0.125,0.219-0.281,0.156-0.469,0.281c0.25-0.75-0.031-0.938-0.688-0.656c-0.016-0.188,0.078-0.469-0.125-0.625\r\n\t\tc-0.125,0.219-0.469,0.5-0.625,0.719c-0.719-0.406-1.141-1.312-0.438-1.586c-0.344-0.328-0.406-1.234-0.375-1.219\r\n\t\tc0.156-0.016,0.297-0.047,0.469-0.062c-0.219,0.469,2.391,0.594,2.719,1.523c0.125-0.18,0.312-0.273,0.453-0.43\r\n\t\tc-0.469-0.344-1-0.625-1.547-0.812c0.062-0.156,0.125-0.281,0.188-0.438c-0.625-0.312-0.812,0.422-1.344-0.281\r\n\t\tc0.156-0.188,0.062-0.547-0.078-0.656c0.516-0.984-0.078-1.031,1.25-0.875c1.047,0.609,2.578,0.438,2.859,1.438\r\n\t\tc0.312-0.406,1.688-0.812,2.188-1.281c-0.859-0.406-1.125-0.5-1.812-0.906c0.359-0.875,1.391-0.828,2-0.469\r\n\t\tc0.094,0.062,0.719,0.031,0.766-0.094c0.312,0.25,0.516,0.188,1.062,0.469c0.109,0.031-0.234,0.469,0,0.562\r\n\t\tc0.156-0.312,0.703-1.375,1.406-1.016c-0.078,0.141-0.328,0.953-0.078,1.047c0.031-0.375,0.219-0.562,0.281-0.938\r\n\t\tc0.156,0.125,1.188,0.297,1.234,0.188c0.359,0.25,0.812,0.719,1.156,0.844c0.391-0.531,0.234-0.016,0.375,0.219\r\n\t\tc0.797-0.922,0.828,0.391,0.156,1.344c0.016,0,0.891-0.281,0.953-0.375c0.25,0.438,0.688,0.797,0.938,1.406\r\n\t\tc0.297-0.359,0.312-1.062,0.812-0.797c-0.016-0.516,0.016-0.453,0.422-1.016c1.172,0.922,0.078,2.5,1.016,3.367\r\n\t\tc0.625-0.375,0.984,0,1.125,0.562c0.375-0.562-1.094-2.133-0.562-3.086c0.672,0.312,1.234,0.281,1.25,1.172\r\n\t\tc0.094-0.297,0.172-0.406,0.203-0.766c0.859,0.344,0.641-0.219,1.016-0.719c0.406,0.719,0.312,0.156,1.188,0.609\r\n\t\tc0.266,0.203-0.281,0.891,0.484,0.922c0.156-0.281-0.109-0.031-0.031-0.375c0.453,0.219-0.141,0.125,0.312,0.344\r\n\t\tc0.484-0.25-0.359-0.688,0.75-0.156c-0.297-1,0.594,0.156,1.016-0.547c0.094,0.156,0.219,0.328,0.312,0.5\r\n\t\tc0.281-0.547,4.984,2.477,5.891,2.883c-0.219,0.5-0.859,0.125-1.047,0.531c0.344,0.156,1.25-0.219,1.5,0.062\r\n\t\tc0.578,0.688-0.469,0.75-0.656,1c0.234-0.062,1.047-0.062,1.094-0.031c-0.188,0.375,1.219,0.75,1.391,1.594\r\n\t\tc-1.484,0.562-2.672-0.594-4.219-1.156c-1.891-0.594-2.297-0.781-4.047-0.625c0.562,0.375,1,0.125,1.594,0.125\r\n\t\tc0.984,0.031,1.938,0.656,2.953,1.062c-0.141,0.156-0.281,0.312-0.422,0.5c1.375,0.625,1.469-0.062,2.781,0.5\r\n\t\tc-0.25,0.469-1.75,1.062-1.562,0.688c-0.234,0.094-0.422,0.156-0.625,0.25c0.125,0.031,0.188,0.125,0.219,0.281\r\n\t\tc-0.031,0.094,2.375-0.156,2.75-0.219c-0.125,0.188-0.016,0.281-0.094,0.469c0.156,0.094,0.281,0.094,0.656,0.281\r\n\t\tc0.469-0.969,3.969,0.656,3.859,1.344c-0.641,0.062-1.203,0.281-1.734,0.25c-0.844-0.031-1.641-0.594-2.672-0.469\r\n\t\tc0.891,0.375,1.234,0.5,1.922,0.75c-0.781,1.5-1.953-0.25-2.719-0.125c-0.031,0.094-0.047,0.188-0.219,0.094\r\n\t\tc0-0.031,0.031-0.031,0.031-0.062c-0.125,0.062-0.234,0.25-0.312,0.469c0.531-0.25,1.203-0.125,1.766,0.406\r\n\t\tc-0.266,0.656-1.234,0.719-1.766,0.438c-0.25,0.438,0.344,0.188-0.422,0.719c0.359,0.031-0.812,0.844-1.047,1.094\r\n\t\tc-0.109-0.344-0.625-0.938-0.938-0.25c0.438,0.344,0.844,0.375,1.219,1.031c-0.25-0.062-0.344-0.219-0.641-0.281\r\n\t\tc-0.781,1.25,1.297,0.25,0.5,2.094c-0.5-0.219-1-0.594-1.516-0.938c-0.047,0.219-0.094,0.844-0.641,0.562\r\n\t\tc-0.203,0.344-0.047,0.344,0.141,0.562c0.062-0.156,0.219-0.25,0.406-0.312c0.125,0.406,0.031,0.438-0.031,0.656\r\n\t\tc0.531,0.188-0.094,1.031-0.234,1.438c-0.422-0.156-0.641-0.625-1.125-0.812c-0.047,0.094,0.328,0.688,0.422,0.875\r\n\t\tc-0.25-0.125-0.312,0.188-0.562,0.281c0.172,0.031,0.281-0.031,0.422,0c0,0-0.172,0.562-0.203,0.438\r\n\t\tc2.062,0.781-0.094,0.781-0.719-0.5c-0.312,0.219-0.906,1.219-0.438,1.406c0.594-0.5,0.344-0.25,0.875,0\r\n\t\tc-0.281,0.656-0.875,0.156-1.031,0.625c-0.281-0.156-1.906-0.469-1.328-1.281c-0.422-0.188-1.172,0.5-1.625,0.375\r\n\t\tc0.234,0.156,0.391,0.344,0.641,0.438c-0.016-0.125-0.062-0.25-0.094-0.406c0.562,0.281,1.312-0.062,1.188,0.844\r\n\t\tc0.766,0.312,0.266,0.5,0.203,0.469c0.172,0.125,0.328,0.25,0.516,0.375c-0.234,0.062-0.234,0.219-0.203,0.438\r\n\t\tc-0.281-0.062-0.422-0.281-0.625-0.438c-0.156,0.281,0.312,0.531,0.484,0.75c-0.109,0.062-0.219,0.125-0.344,0.188\r\n\t\tc0.125,0.344,0.312,0.125,0.156,0.562c-1.312-0.438-0.438-2.094-1.125-2.188c0.031-0.188-0.047-0.312-0.219-0.469\r\n\t\tc-0.156,0.375-0.625,11.094-1,11.234c-0.031-0.547-0.312,10.078,0,10.078c-0.141,0-0.281,0-0.406,0\r\n\t\tc0.125,0,0.125-10.047,0.125-10.047c0.438,0.25,2.094-5.297,0.562-4.859c0.562,0.328,1.203-1.188,1.5-1.062\r\n\t\tc-0.094,0.125-0.203-1.125-0.312-0.984c0.188,0.094,0.188-0.766,0.25-0.922c0.5,0.219-0.25,1.438-0.312,1.625\r\n\t\tc-0.391-0.188-1.625-0.969-1.234-1.906c0.016,0-0.422-1.219-0.547-1.406c-0.516-0.219-0.938-0.891-1.453-1.188\r\n\t\tc-0.594,1.109,1.734,0.906,1.359,1.969c-0.625-0.266-1-0.156-1.688-0.734c-0.109,0.281-0.594,0.266-0.812,0.484\r\n\t\tc0.125,0.031,0.156,0.125,0.156,0.25c0.406-0.688,1.312-0.156,2.062,0.219c-0.266,0.656-0.219,0.438-0.781,0.156\r\n\t\tc-0.031,0.031-0.375,0.5-0.406,0.562c0.656,0.438,0.938,0.062,1.469,0.25c0.562,0.312,0.562,0.594,1.469,1\r\n\t\tc-0.203,0.344-0.688,0.344-0.922,0.625c-0.062-0.062-0.109-0.156-0.172-0.219c-0.125,0.344-0.234,0.156-0.375,0.531\r\n\t\tc-0.531-0.625-1.75-0.125-2.344-0.312c-0.281,0.594-1.375,0.281-1.844,0.438c0.094-0.219-1.312-0.688-1.5-0.312\r\n\t\tc-0.094-0.062-0.891-0.125-0.688-0.344c-0.531-0.125-0.312-0.812-0.469-0.906c-0.656,1.344-0.219,0.969-1.312,1.781\r\n\t\tc-0.719,0.531-2.062,0.062-2.469,1.094c-0.344-0.188-0.281-0.688-1.062,0.031c0.469-1-1.156-0.656-1.672-1.188\r\n\t\tc-0.344,0.625-0.188,0.5-0.797,0.344c0.156,1.125-0.281,1.219-0.906,0.969c-0.125,0.219,0.172,0.375,0.344,0.531\r\n\t\tc-0.156,0.312-0.391,0.375-0.594,0.812c-0.125-0.125-0.25-0.25-0.406-0.406c-0.031,0.281-0.031,0.469-0.031,0.719\r\n\t\tc-0.25-0.062-0.344-0.031-0.562-0.094c-0.094,0.062-0.203,0.125-0.281,0.219c0.406,0.188-0.906,1.344-1.094,1.25\r\n\t\tc-0.094,0.25-0.531,1.188-1.062,0.938c-0.062,0.25,0,0.781,0.094,1.125c-0.375-0.125-0.281,0.031-0.656,0.031\r\n\t\tc0-0.5-0.328-0.344,0-0.906c-0.125,0.125-0.25,0.25-0.344,0.375c-0.219-0.062-0.109-0.406-0.031-0.562\r\n\t\tc-0.125,0.062-0.25,0.125-0.375,0.156C218.812,229.75,218.328,229.844,218.281,229.719z M247.688,243.125\r\n\t\tc0.078-0.188,0.328-0.594,0.5-0.531c-0.141,0.406-0.219,0.469-0.422,0.719C248.078,242.5,247.828,243.219,247.688,243.125z\r\n\t\t M245.703,255.344c-0.375,1.25-2.531-0.938-2.875,0.062c-0.312-0.562-0.812-0.594-1.406-0.156c0.25-0.719-1.062-0.281-1.422,0\r\n\t\tc0.125-0.219-0.016-0.312-0.359-0.312c0.219-0.406,1.469-0.406,1.688-1.281c0.234,0.094,0.688,0.312,0.656,0.406\r\n\t\tc1.312,0.531,0.625-0.812,0.438-0.188c-0.469-0.219-0.406-0.188-1.062-0.375c0.125-0.062,0.188-0.156,0.281-0.219\r\n\t\tc-0.406-0.188-0.344,0.031-0.656,0.094c0.219-0.875,0.969-0.562,1.25-1.469c-0.188,0-0.391,0-0.594-0.031\r\n\t\tc0.656-0.438,0.406-0.375,0.562-0.812c-0.031-0.031,0.953,0.156,0.562,0.344c0.516,0.156,0.812-0.438,1.031-0.344\r\n\t\tc0.062-0.188,0.062-0.25,0.219-0.562c-0.719-0.25-0.625-0.375-0.203-0.781c-0.422-0.156-0.844-0.625-1.078-0.062\r\n\t\tc-0.562-0.656,0.266-1.25,0.547-1.906c-0.391-0.094-0.578,0.188-0.797,0.062c0.203-0.562,0.062-0.125-0.281-0.25\r\n\t\tc0.125-0.094,0.234-0.188,0.312-0.25c0.031,0,0.109,0.188,0.203,0.25c0.234-0.344,0-0.188,0.484-0.5\r\n\t\tc-0.531-0.312,0.094-1.562,0.25-2c0.469,0.156,0.891-0.406,1.094-1c0.375,0.156-0.172,0.312,0.156,0.438\r\n\t\tc0.25-0.5,0.125,0,0.594-0.312c-0.031,0.125,0.422,0.062,0.219,0.75c-0.125,0.312-0.953,0.281-1.156,0.969\r\n\t\tc0.656-0.094,1.312,0,1.719,0.438c-0.312,0.844-1.484,0.969-1.094,1.875c-0.25-0.062-0.469,0-0.562,0.156\r\n\t\tc0.594,0.156,1.719,3.219,1.531,3.812c-0.125-0.219-0.094-0.312-0.297-0.438c-0.141,0.438,0.391,0.844,0.141,1.406\r\n\t\tC248.297,254.031,244.141,254.844,245.703,255.344z M237.203,251.969c0.094-0.281,0.156-0.562,0.281-0.781\r\n\t\tc0.125,0.094,0.219,0.188,0.344,0.312c0.203-0.469,0.938-0.844,1.156-1.469c-0.188-0.094-0.625-0.062-1-0.219\r\n\t\tc0.125-0.281,0.703-0.562,0.969-0.5c-0.156-0.375-0.203-0.281-0.062-0.719c0.25,0.125,0.531,0.219,0.781,0.438\r\n\t\tc0.156-0.5,0.25-0.25,0.656-0.438c-0.781-0.312,0.75-1.031,0.562-0.312c0.156-0.031,0.172-0.125,0.25-0.25\r\n\t\tc-0.062,0.375,0.219,0.188-0.094,0.656c1-0.406,0.969,0.594,0.828,1.188c-0.234-0.031-0.516-0.062-0.734-0.094\r\n\t\tc-0.25,0.656-0.688,1.438-0.953,2.25c-0.141-0.062-2.453,0.75-2.078,0.094c-0.25,0.031-0.469,0.062-0.703,0.094\r\n\t\tc0.047-0.156,0.234-0.219,0.391-0.188C237.516,251.906,237.453,251.906,237.203,251.969z M236.609,233.156\r\n\t\tc0.156-0.188-1.344-0.844-1.594-1.188c0.688,0.25,0.312,0,0.906,0.031c-0.031,0-1.188-1.375-1.188-1.375\r\n\t\tc0.391,0.156,1.062,0,1.438,0.094c-0.469-0.281-0.062-0.125-0.234-0.5c0.203,0.062,0.188,0.219,0.312-0.031\r\n\t\tc-0.016-0.062-0.047-0.125-0.078-0.188c-0.422,0.047-0.656-0.062-0.938-0.172c0.25-0.359,0.328-0.297,0.469-0.766\r\n\t\tc0.375,0.219,0.188,0.031,0.484-0.125c0.047,0.594,0.156,0.531,0.297,1c-0.031-0.125-0.062-0.75-0.031-0.906\r\n\t\tc1,0.375,0.5,1.188,0.312,1.75c0.094,0.031,0.156,0.062,0.25,0.094c0.609-1.281,0.125-0.031,0.375-0.188\r\n\t\tc0.781-1.844,0.016-0.344,0.641-0.812c-0.016,0.25-0.109,0.688,0.125,0.781c0.266-0.656,0.406-0.25,0.922-0.5\r\n\t\tc-0.125,0.438-0.031,0.406-0.047,0.875c0.047-0.219,0.078-0.438,0.125-0.688c0.438,0.156,0.891,0.5,1.312,0.531\r\n\t\tc0.641-0.719,0.547,0.469,1.484,0.25c-0.078,0.25-0.719,0.469-0.875,1.062c0.906,0,0.734,0.656,0.531,1.25\r\n\t\tc-0.25-0.094-0.125-0.094-0.328-0.312c-0.266,0.75-1.578,0.469-2.297,0.844c0-0.125,0-0.25,0-0.375\r\n\t\tc-0.125,0.531-0.609-0.062-0.938-0.188c-0.094,0.188-0.281,0.562-0.328,0.75c0-0.125-0.016-0.25-0.016-0.375\r\n\t\tc-0.594,0.25-0.719-0.156-1.344-0.375C236.516,233.375,236.891,233.312,236.609,233.156z M234.797,229.75\r\n\t\tc0.094,0.094,0.156,0.062,0.188-0.094c0.031,0.062,0.078,0.109,0.109,0.156C235,229.766,234.891,229.828,234.797,229.75z\r\n\t\t M236.266,228.812c0.094,0,0.922-0.312,0.641,0.25C236.688,228.969,236.469,228.875,236.266,228.812z M242.578,246.656\r\n\t\tc-0.125,0.344,0.141,0.562-0.406,0.562c-0.031-0.062-0.062-0.125-0.094-0.219C242.578,247.219,241.859,246.406,242.578,246.656z\r\n\t\t M242.688,246.344c0.078-0.219-0.359-1.344,0.25-1.125c-0.078,0.25-0.422,0.375-0.172,0.469\r\n\t\tC242.656,246.062,243.078,245.969,242.688,246.344z M242.453,244.875c0.125-0.312,0.219-0.656,0.312-0.938\r\n\t\tc0.062,0,0.484,0.062,0.797-0.062C243.359,244.438,242.984,244.75,242.453,244.875z M245.406,216.312\r\n\t\tc-0.203,0.406-0.016,0.562,0.344,0.469c-0.203,0.406,0.203-0.125-0.078,0.469C245.016,217.062,244.266,216.531,245.406,216.312z\r\n\t\t M224,214.781c0-0.344,0,0.531,0,0.844C224,215.625,224,214.969,224,214.781z M244.266,217.219\r\n\t\tc-0.156,0.094-0.281,0.188-0.453,0.312c-0.016-0.219-0.031-0.406,0.031-0.656C244.203,217,243.891,217.062,244.266,217.219z\r\n\t\t M242.922,218.031c-0.234-0.125-0.469-0.219-0.75-0.312C242.578,217.031,243.172,217.562,242.922,218.031z M224.188,277.344\r\n\t\tc-0.078,0.312-0.016,0.375-0.375,0.188C223.984,277.25,223.688,277.188,224.188,277.344z M223.578,276.75\r\n\t\tc-0.266,0.125-0.266,0.375-0.594,0.281C223.203,276.406,223.156,276.969,223.578,276.75z M218.703,231.031\r\n\t\tc-0.125,0.188-0.125,0.094-0.312,0C218.609,230.5,218.453,230.875,218.703,231.031z M264.656,334.25\r\n\t\tc-0.109-0.031-0.359-0.344-0.312-0.438c-0.062,0.219-0.391,1.219-0.25,1.25c-0.25,0.219-2.109,2.594-2.203,2.562\r\n\t\tc-0.125,0.812-1.25,1.188-1.438,1.906c-0.266,0.781-1.906,1.25-1.938,1.375c-1.5-0.094-0.969-1.594-1.5-1.719\r\n\t\tc0-0.125,0.078-1.938,0.531-1.812c0.188-0.219,2.531-2.344,1.25-2.344c0.312-2.031,3.25-0.781,3.781-2.062\r\n\t\tc0.031,0.094,0.047,0.188,0.078,0.281c0,0,1.047-0.781,0.594-0.781c0.188,0.031,0.328-0.094,0.797-0.094\r\n\t\tc-0.016-0.344,0.281-0.906,0.781-1.219c0,0.062,0.672,1.625,0.406,1.562c-0.078,0.094-0.156,0.219-0.25,0.344\r\n\t\tC265.438,333.188,265.016,333.875,264.656,334.25z M258.703,324.656c-0.188-0.094-0.125-0.281,0-0.469\r\n\t\tC259.031,324.5,258.703,324.469,258.703,324.656z M296.281,318.406c-2.719,1.781-0.828-3.312-0.234-3.312\r\n\t\tC295.984,316.438,297.188,316.75,296.281,318.406z M322.719,355.406c-0.547,0-1.688,0.875-2.062,1.062\r\n\t\tc0.109-0.125,0.375-1.156,0.438-1.219c0.906-0.844,1.078,0.031,2.25-0.688C323.156,354.875,322.953,355.156,322.719,355.406z\r\n\t\t M323.578,354.25c0.156-0.062,0.203-0.125,0.141-0.25c0.375-0.219,0.25,0.094,0.25,0.094\r\n\t\tC323.859,354.094,323.656,354.25,323.578,354.25z M334.781,339.094c-0.125,0.406,0.047,0.219,0.453,0.125\r\n\t\tc-0.312,0.5,0.141,0.312-0.312,0.906c0.359-0.156,0,0.906-0.141,1.188c0.188-0.281,0.062,0,0.375,0\r\n\t\tc-0.234,0.531-0.094,1.594-0.266,1.781c0.109,0-1.062,1.844-1.062,1.875c-0.391,0.562-0.703,1.094-1.297,1.719\r\n\t\tc-0.312,0.688-1.734,1.25-1.906,1.781c-1.375,0-2.391,2.875-3.438,2.875c-0.594,0.531-0.656,0.844-1.562,1.125\r\n\t\tc0.031-0.031-1.938,1.125-2.188,1.125c0.344-0.344-0.062-0.094-0.156-0.312c0.062-0.031,0.234-0.125,0.281-0.219\r\n\t\tc-0.125,0.062-0.281,0.125-0.406,0.188c0.047-0.156,0.375-0.375,0.469-0.5c-0.75,0-1.266,0.969-2.125,0.969\r\n\t\tc0.062-0.094,0.109-0.156,0.125-0.25c-0.156,0.031-0.156,0.031-0.047-0.094c-0.359,0.062-0.531-0.062-0.828,0\r\n\t\tc-0.031-0.188,0.156-0.469-0.078-0.375c0.312-0.469,0.594-1.094,0.828-1.312c-0.219,0.062-0.438,0.125-0.656,0.156\r\n\t\tc0.281-0.375,0.453-0.688,0.688-1.031c-0.203,0.188-0.656,0.375-1.016,0.594c0.109-0.094,0.234-0.188,0.359-0.25\r\n\t\tc-0.094,0,0.812-0.875,1.031-1.062c-0.641,0.188-1.766,0.781-2.234,1.219c0.047-0.094,0.016-0.188-0.094-0.188\r\n\t\tc0.094-0.469,0.391-0.344,0.016-0.844c0.156-0.125,0.281-0.094,0.406-0.219c-0.109,0.031-0.25,0.031-0.391,0.031\r\n\t\tc0.359-0.5-1.797-0.656-1.875-0.344c-0.547,0-3.344,0.5-3.453,0.875c-0.5,0-1.688,0.656-2.156,0.906\r\n\t\tc-0.859,0.5-2.172-0.344-3,0.719c-0.219-0.281,0-0.062-0.156-0.312c-0.719,0.688-1.094,0.594-2.031,0.594\r\n\t\tc0.234-0.281-0.25-0.281-0.406-0.469c1.484-1.188,1.469-2.375,2.5-4c-0.25,0-0.156-0.188-0.375-0.188\r\n\t\tc0.078-0.219,0.141-1.719,0.344-1.719c0.031,0.469,0.031,0.312,0.125,0.625c0.062-0.031,0-0.344,0-0.625\r\n\t\tc-0.031,0,0.156,0.188,0.312,0.312c0.609-0.672,0.703-2.562,1.625-2.859c1.297-0.078,3.219-1.578,4.453-1.984\r\n\t\tc1.109,0,2.703-1.469,2.969-1.469c0.203-0.406,0.797-1.25,1.344-1.25c-0.141,0.469,0,0.375-0.141,0.719\r\n\t\tc0.344,0,0.625-0.656,0.906-1.031c0,0.031,0.125,0,0.188,0.125c0.281-0.562,0.766-0.719,1-0.719\r\n\t\tc0.406-0.781,0.719-0.531,1.312-1.281c0.062-0.219,1.125-0.125,0.531,1.094c1.125,0,2.359-1.438,2.906-2.562\r\n\t\tc0.078,0,0.797-0.188,0.625,0.062c0.734-0.062,1.5-0.062,0.656-0.906c0.125-0.062,0.219-0.094,0.344-0.156\r\n\t\tc0.094,0.094,0.109,0.156,0.016,0.25c0.062-0.062,0.141-0.094,0.203-0.156c-0.188,0.438,0.172-0.219-0.062,0.375\r\n\t\tc0.156-0.062,0.5-0.312,0.625-0.312c-0.281,0.406,1.578,0.312,2.062-0.031c-0.188,0.438-1.188,1.125-1.312,1.438\r\n\t\tc0.125,0-0.719,1.094-0.828,1.344c0.781,0,1.453,0.844,1.672,1.625c2.453-0.156,2.875-4.531,4.531-5.656\r\n\t\tc0.219,1-0.031,1.438-0.625,2.688c0.203-0.062,0.516-0.031,0.656-0.312c0.219,0.344,0.281,0.406,0.219,0.562\r\n\t\tc-0.469,0.656-0.312,1-0.469,1.531C334.781,337.656,333.656,339.531,334.781,339.094z M307.641,319.75\r\n\t\tc-0.031-0.031,1.734,1.062,1.578,1.062c0.781,0.875,0.531,1.562,1.188,2.562c0-0.219,0.094-0.312,0.266-0.25\r\n\t\tc0.141,0.719,0.203,1.781,0.938,0.938c-0.141,0.281,0.172,0.062-0.141,0.406c0.891,0,0.031,1.25-0.172,1.656\r\n\t\tc0.141-0.062,0.219,0,0.25,0.125c0.078-0.219,0.25,0,0.594,0c-0.422,0.531-0.484,1.156,0.359,1.156\r\n\t\tc-0.359,0.625,0.094,0.25,0.094,0.75c0,0.125-0.906,1.594-0.969,1.75c-0.406-0.156-0.5,0.062-0.922-0.188\r\n\t\tc-0.047,0.25,0.062,0.219,0.141,0.406c-0.703-0.25-1.625-2-1.562-2c-0.031-0.312-0.469-2.812-0.422-2.844\r\n\t\tc-0.422,0-0.391-1.156-0.484-1.156c0.203-0.531-0.281-1.656-0.594-2.125C307.641,321.781,305.812,319,307.641,319.75z\r\n\t\t M313.719,330.656c0.953,0,2.75-0.312,2.516,0.312c0.484,0,0.453-0.125,1.078-0.125c-0.531,0.469-1.016-0.188-1.156,0.625\r\n\t\tc1.156,0,1.203,0.344,0.75,1.156c-0.594,0-1.672-0.562-2.656-0.562c0,0-2.875-0.781-3.031-0.781\r\n\t\tc0.062-0.219,0.141-0.031,0.219-0.25c-0.281,0-0.531,0-0.812,0C311,329.5,313.094,330.062,313.719,330.656z M315.625,325.062\r\n\t\tc0.188-0.562,1.625-1.812,1.438-1.406c0.469-0.188,0.469,0.094,0.719,0c0.594,0,0.453-0.844,0.703-0.844\r\n\t\tc0.641-0.438,1.859-0.281,2.109-1.188c0.078-0.062,1.969-1.406,1.766-1.406c0.641-0.5,1.047-0.938,1.422-1.625\r\n\t\tc0,0.531,0.297,0.125,0.516,0.125c-0.203,0.625,0.141-0.188-0.109,0.875c0.344,0,0.219-0.156,0.172,0.312\r\n\t\tc0.562-0.031,0.25,0.219,0.641,0.219c-0.172,0.5-0.672,0.5-0.906,0.469c0,0.719-1.062,0.688-0.75,1.125\r\n\t\tc-0.609,0.5-0.75,1.938-0.047,2.469c-1.391,0.219-1.141,1.531-1.891,2.094c-0.391,0.281-1.734,1.562-2,1.906\r\n\t\tc-0.609,0-1.125-0.062-1.844-0.062c-0.094,0.156-1.125-0.125-1.094-0.125c-0.766-0.562-0.453-0.531-0.469-1.75\r\n\t\tc-0.156,0.062-0.312,0.125-0.469,0.156c0.094-0.094,0.172-0.188,0.25-0.281C315.453,326.188,315.656,325.281,315.625,325.062z\r\n\t\t M323.094,306.25c0.203,0.531-1.281,1.938-1.781,1.938c0.156-0.312,0.094-0.406-0.219-0.312\r\n\t\tC320.219,306.531,322.906,305.812,323.094,306.25z M328.625,311.719c-0.391,0,0.141-0.156-0.25-0.156\r\n\t\tc0.25-0.25,0.406-0.406,0.469-0.75c-0.188-0.062-0.297-0.031-0.281,0.156c-0.297-0.438-0.281-0.875-0.156-1.531\r\n\t\tc0.109,0.062,0.219,0.125,0.344,0.188c0.625-1.625,0.438-2.719,2.094-2.719c-0.062,0.156-0.078,0.438-0.312,0.656\r\n\t\tc0.469,0-0.156,2-0.906,2c-0.484,1.781-0.688,1.594,0.656,1.594c-0.047,0.094-0.062,0.188-0.078,0.312\r\n\t\tc0.047,0,0.328-0.188,0.328-0.188c0.266,0.625,0.125,1.062-0.031,1.5c-0.125-0.188-0.438-1-0.641-1\r\n\t\tc-0.047,0.125-0.047,0.188-0.172,0.469c-1.062-1.406-0.938,1.094-1.25,1.094c0-0.188,0.078-0.219,0.125-0.438\r\n\t\tc-0.438,0-0.375-0.5-0.469-0.719C329.562,312.188,328.203,312,328.625,311.719z M330.938,324.969\r\n\t\tc0.016-0.125,0.031-0.219-0.156-0.281c0.375,0,0.484-0.062,0.906-0.062C331.562,324.906,331.188,324.906,330.938,324.969z\r\n\t\t M330.469,322.75c0.188-0.219,0.188-0.281-0.016-0.25c0.047-0.125,0.078-0.281,0.141-0.438\r\n\t\tC330.734,322.406,331.156,322.656,330.469,322.75z M331.641,302.188c-0.172,0.344-0.453,0.656-0.734,0.969\r\n\t\tc-0.734-0.562,0.594-3.125,1.531-3.312C332.469,300.656,331.812,301.312,331.641,302.188z M331.438,312.719\r\n\t\tc-0.156,0.469-0.312,1.031-0.078,1.562c-0.234,0-0.078-0.062-0.172-0.25C331.266,313.844,330.031,313.156,331.438,312.719z\r\n\t\t M330.984,315.219c-0.078,0-0.172,0-0.25,0c-0.047-0.344-0.016-0.625-0.016-0.875c-0.234,0.062-0.25-0.031-0.062-0.281\r\n\t\tC331.125,314.281,331.094,314.812,330.984,315.219z M328.438,315.688c0.031-0.25,0.875-0.812,1.125-1.094\r\n\t\tc-0.156,0.812-0.375,1.5-1.125,1.5C328.578,315.938,328.578,315.781,328.438,315.688z M328.344,315.094\r\n\t\tc0.25-0.719,0.234-1.188,1.062-0.969c-0.109,0.406-0.391,0.75-0.406,0.938c-0.156,0.062-0.188,0-0.062-0.125\r\n\t\tC328.719,315,328.531,315.062,328.344,315.094z M329.5,315.188c0.172-0.188,0.531-0.75,0.656-0.812\r\n\t\tc-0.062,0.312-0.484,1.406-0.938,1.406C329.297,315.594,329.406,315.375,329.5,315.188z M329.688,313.719\r\n\t\tc0.172-0.5,0.703-0.156,0.625,0.062C330.109,313.781,329.922,313.75,329.688,313.719z M330.344,315.562\r\n\t\tc-0.25,0.188-0.766,0.438-0.656-0.094C330.062,315.469,330.141,315.125,330.344,315.562z M328.344,317.281\r\n\t\tc-0.078,0.344,2.25-1.156,2.641-1.219c0.109,0.969-0.391,1.938-0.922,2.688c0.047-0.062,0.031,0.219-0.109,0.219\r\n\t\tc0.047-0.125,0.078-0.188,0.078-0.219c-0.219,0.344-0.531,0.656-0.75,0.969c0.094-0.156,0.062-0.219-0.094-0.125\r\n\t\tc0.062-0.219,0.172-0.188,0.219-0.344c-1.391,0.625-0.469-0.781-0.406-1.188c-0.344,0-0.484,0.062-0.938,0.062\r\n\t\tc-0.031-0.094-0.031-0.188-0.031-0.281c-0.25,0.281-0.359,0.531-0.703,0.594C327.531,317.844,327.719,317.438,328.344,317.281z\r\n\t\t M328.969,327.594c0,0-0.562-0.062-0.719-0.062c0.625-0.406,1.031-0.25,1.875-0.156\r\n\t\tC329.969,327.781,329.406,327.594,328.969,327.594z M330.406,323.281c-0.156,0.375-0.312,0.312-0.578,0.562\r\n\t\tc0.641,0,0.422,0.531,0.047,0.531c0.219-0.719-0.656,0.844-0.578,0.719c-0.156-0.156-0.016-0.188-0.297-0.188\r\n\t\tc0.219-0.688,0.438-0.938,0.438-1.531c0.25-0.375,0.5-0.781,0.844-0.875c-0.25,0.656-0.188,0.594-0.594,1.25\r\n\t\tC329.953,323.688,330.125,323.406,330.406,323.281z M327.312,313.562c0.188,0.031,0.25,0.094,0.188,0.25\r\n\t\tC327.312,313.562,327.312,313.906,327.312,313.562z M327.594,323.5c0.156-0.062,0.188-0.156,0.438-0.156\r\n\t\tc-0.5,1.031-3.188,1.625-3.078,1.125c-0.922,0.125-1.391,1.094-0.938,1.656c0.422,0,1.188-0.344,1.781-0.344\r\n\t\tc-0.203,0.188-0.297,0.281-0.562,0.406c0.156,0.031,0.328,0.062,0.5,0.094c-0.078,0.281-0.359,0.281-0.641,0.281\r\n\t\tc0.016-0.125,0.062-0.25,0.141-0.375c-0.359,0-1.109,0.688-1.516,0.719c0.219,0.281,0.5,1.062,0.672,1.062\r\n\t\tc0.047,0.438-0.094,1.438-1.234,1.438c0.297-0.469,0.219-0.938,0.219-1.531c-1.234,0-0.531,2.062-2.047,2.062\r\n\t\tc0.281-0.844,0.516-1.219,0.844-1.719c-0.844,0,0.469-1.5,0.641-2.031c0.219-0.625,0.938-1.688,1.375-1.938\r\n\t\tC324.469,323.656,326.719,324.25,327.594,323.5z M327.359,327.844c-0.109,0.281-0.297-0.125-0.672-0.062\r\n\t\tc0.25-0.469,1.094-0.188,1.297-0.219C327.75,327.656,327.562,327.75,327.359,327.844z M319.188,332.438\r\n\t\tc0.625,0.188-0.469,0.188,0.75,0.188c-0.016,0.125-0.016,0.25-0.031,0.375c-0.781,0-1.281,0.125-1.719,0.188\r\n\t\tC318.656,332.25,318.906,333.25,319.188,332.438z M318.031,332.969c0.125-0.188,0.031-0.219-0.25-0.156\r\n\t\tc0.203-0.156,0.375-0.469,0.656-0.469c-0.094,0.125-0.062,0.156,0.094,0.094C318.406,332.656,318.188,332.75,318.031,332.969z\r\n\t\t M319.594,333.594C321.828,333.844,319.281,334.531,319.594,333.594L319.594,333.594z M320.344,332.844\r\n\t\tc0.281-0.719,1.906-0.312,2.438-0.375c-0.094,0.188-0.109,0.375-0.312,0.375C322.281,333,320.734,332.812,320.344,332.844z\r\n\t\t M325.734,332.25c-0.672,1-3.547,2-4.109,2.094C321.891,333.594,324.656,332.562,325.734,332.25z M323.859,329.938\r\n\t\tc0.438-1.031,0.078-0.094-0.047-0.562c0.281,0,0.625-0.375,0.906-0.594C324.531,329.375,324.359,329.625,323.859,329.938z\r\n\t\t M324.219,317.375c0.172-0.812,1.625-1.562,1.875-2.156c0.438,0,0.453-0.812,0.766-0.812\r\n\t\tC326.75,315.25,325.219,317.375,324.219,317.375z M317.75,332.375c-0.141,0.125-0.391,0.375-0.578,0.375\r\n\t\tc0.109-0.188,0.328-0.375,0.016-0.375C317.391,332.219,317.328,331.969,317.75,332.375z M312.781,328.031\r\n\t\tc0.062-0.188-0.25-0.812-0.391-0.812c0.281-0.719,0.109-0.219,0.344-0.531c0.109,0.094-0.078,0.406,0.234,0.125\r\n\t\tC312.906,326.906,313.453,328.031,312.781,328.031z M307.562,326.844c0.125-0.375,0.047-0.312-0.031-0.688\r\n\t\tC307.5,326.125,308.469,326.844,307.562,326.844z M307.188,323.656c0.344,0,0.094-0.094,0.375-0.094\r\n\t\tc-0.094,0.312,0.188,0.281,0.047,0.688C307.531,323.938,307.359,323.875,307.188,323.656z M331.938,329.781\r\n\t\tc-0.047,0.188-0.719,0.719-0.812,0.719c0.109-0.156,0.734-1.094,0.469-1.094c0.406,0,0.234,0.094,0.484,0.094\r\n\t\tC332,329.562,331.328,330.031,331.938,329.781z M340.062,330.062c-0.375,0.688,0.156-0.344-0.188,0.625\r\n\t\tc0.219,0.312,0.094,0,0.188,0.5c0.078-0.062,0.188-0.094,0.312-0.062c-0.125,0.406,0.25,0.281,0,0.656\r\n\t\tc-0.219,0.094-1,0-0.906-0.156c-0.109,0.094-0.219,0.156-0.312,0.188c0.094-0.375-1-0.875-0.672-1.594\r\n\t\tc-0.484,0.094-4.547,1.969-3.891,0.656c-0.656,0-1,0.156-1.625,0.438c0.438-0.469,0.562-0.5,1.031-0.469\r\n\t\tc0.141-0.562,0.188-2.5,0.141-2.469c-0.141,0.062-0.312,0.125-0.453,0.188c-0.094-0.844-0.797-0.5-1.25-0.719\r\n\t\tc0.062-0.094,0.156-0.156,0.219-0.25c-0.266,0-0.516-0.188-0.438-0.469c-0.219,0.062-0.625,0.438-0.75,0.594\r\n\t\tc0.078-0.125,0.047-0.156-0.094-0.125c0-0.156,0.094-0.25,0.234-0.25c0,0-0.25-0.25-0.25,0.031\r\n\t\tc0.297-0.469,0.219-0.562-0.234-0.406c0.156-0.594,1.312-0.188,1.547-0.688c-0.219,0.031-0.453,0.062-0.672,0.094\r\n\t\tc0.172-0.25-0.031-0.281-0.484-0.094c0.172-0.375,0.062-0.375-0.469-0.312c0.609-1.219,1.562-0.75,2.297-1\r\n\t\tc-0.062,0.156-0.344,1.156-0.406,1.656c0-0.156,0.094-0.219,0.297-0.156c-0.234,0.75,0.109,0.188-0.141,0.688\r\n\t\tc1.062-0.188,1.578-1.625,2.75-1.625c0.625-0.031,1.688,1.125,2.5,0.844c-0.031,0.125,0.812,0.812,1.234,0.688\r\n\t\tc-0.172,0.438,0.234,1.5,0.984,1.125c-0.094,0.25-0.5,0.938-0.656,0.938C339.812,329.312,339.312,330.281,340.062,330.062z\r\n\t\t M337.25,297.781c0,0.219-0.281,0.406-0.406,0.5C336.906,297.781,336.969,298.094,337.25,297.781z M336.906,291\r\n\t\tc0.172-0.062,0.344-0.125,0.484-0.188C337.219,291.219,337.125,290.969,336.906,291z M339.562,290.906\r\n\t\tc-0.469,0.094-0.219-0.125-0.219-0.438c0.281-0.125,0.344-0.031,0.281,0.156c0.547-0.844,0.625-0.375,1.219-0.438\r\n\t\tc-0.078,0.625-0.094,0.438,0.125,0.875c-0.125,0.188-0.344,0.656-0.469,0.656c-0.078,0.344-0.406,1.531-0.891,1.531\r\n\t\tc0.078-0.25,0.203-0.531,0.281-0.781c-0.234,0.25-0.234,0.5-0.641,0.5c0.031-0.25,1-1.938,0.594-1.938\r\n\t\tC339.531,292.031,339.359,291.562,339.562,290.906z M344.156,326.219v0.031c0,0-0.125,0.094-0.25,0.188\r\n\t\tc-0.609,0.594-1.312,1.719-2.578,1.719c0.141-0.156,0.078-0.188-0.141-0.188c0.594-0.094,0.875-0.562,1.406-0.75\r\n\t\tc-0.094,0.219,0.844-0.469,1.312-0.781C344,326.344,344.078,326.281,344.156,326.219c0.031-0.219,0.062-0.438,0.094-0.688\r\n\t\tc-0.375,0.094-0.094-0.156-0.562-0.25c0.25-0.188,0.359-0.031,0.688-0.031c-0.266,0.344,0.188,0.5,0.219,0.812\r\n\t\tC344.438,326.062,344.297,326.125,344.156,326.219z M345.031,327.281c-0.375,0.094,0.109-0.219-0.188-0.094\r\n\t\tc0.188-0.469,0.156-0.344,0.281-0.688c0.094,0,0.375,1.25,0.281,1.25C345.031,328.25,344.625,327.906,345.031,327.281z\r\n\t\t M345.75,329.125c-0.031-0.25-0.406-0.25,0.125-0.5C345.812,328.812,345.797,328.969,345.75,329.125z M346.375,329.969\r\n\t\tc0.266-0.25,0.125-0.781,0.656-0.281C346.938,329.938,346.719,330.031,346.375,329.969z M346.375,328.406\r\n\t\tc0.266-0.312,0.156-0.125,0.516-0.25c-0.031,0.156-0.016,0.312,0.078,0.406C346.75,328.906,346.625,328.406,346.375,328.406z\r\n\t\t M347.062,330.312c-0.234,0-0.031-0.062,0.031-0.219c0.094,0,0.188,0.031,0.281,0.031\r\n\t\tC347.5,330.688,347.25,330.219,347.062,330.312z M346.656,288.344c0.062-0.25,0.281-0.844,0.281-1.125\r\n\t\tc-0.531,0.781-0.531,0.75-0.969,1.656c-0.156-0.094-0.156-0.25-0.062-0.438c-0.375,0.25-0.812,0.344-1.188,0.625\r\n\t\tc0-0.219,0.141-0.156,0.172-0.312c-0.531-0.125-0.297-0.031-0.703,0.219c0.531,0-0.75,1.156-0.906,1.25\r\n\t\tc-0.297-0.375-0.25-0.875,0.172-1.312c-0.609,0.062-0.266-0.062-0.609-0.094c-0.031,0.125-0.094,1.156-0.031,1.156\r\n\t\tc-0.422,0.781-1,0.219-1.281,1.5c-0.688-1.062,0.156-1.75,1.125-2.312c-0.688-0.031-1.469,0.438-2.281,0.625\r\n\t\tc0.109-0.25,1.812-1.719,1.75-1.312c0.094-0.062,0.188-0.125,0.281-0.188c-0.156,0.062-0.188,0-0.094-0.125\r\n\t\tc0.422,0,0.891-0.406,1.344-0.031c0.141-0.156,0.344-0.375,0.453-0.531c0.172-0.094,0.234-1.719,1.047-2.156\r\n\t\tc-0.406,0.469-0.234,0.625-0.344,0.969c2.156,0,2.188-5.062,3.062-5.906c-0.031,0.156-0.031,0.312-0.031,0.469\r\n\t\tc0.172-0.031,0.328-0.031,0.5-0.062c-0.156,0.438,0.234,1.188,0.188,1.812C347.531,282.719,347.344,287.75,346.656,288.344z\r\n\t\t M350.734,277.969c0-0.5-1.016,1.281-1.047,1.281c-0.688,0.094-1.094-0.656-1.234-0.094c-0.438,0-0.562-0.219-0.641,0.406\r\n\t\tc0.703-0.094,0.188,0,0.625,0.219c-0.406,0.094-0.516,0.344-0.875,0.438c0-0.812,0.25-1.562,0.25-2.062\r\n\t\tc0,0,0.562,0.094,0.719,0.188c0.031-0.594,0.406-3.125,0.531-3.031c0.578,0.344,0.375,2.125,1.5,1.438\r\n\t\tc0.125,0.062,0.062,0.344,0.219,0.438c0.125-0.094,0.234-0.156,0.344-0.25c-0.031,0.188-0.078,0.344-0.125,0.5\r\n\t\tc0.312,0,0.25,0.062,0.312,0.438C351.125,277.906,350.938,277.938,350.734,277.969z M351.047,270.781\r\n\t\tc-1.141-2.156-0.859,3.938-0.859,3.938c-0.25,0.094-0.125-0.844-0.719-0.688c-0.312,0.094,0.062,0.844-0.406,0.844\r\n\t\tc0-0.125,0.438-1.281,0.188-1.281c0-1.719,0.281-3.531,0.281-5.469c-0.125,0.031,0.531-3.844,0.609-3.938\r\n\t\tc0.281,1,0.422,2.562,0.328,3.406c-0.094,0.594-0.219,1.312-0.125,1.844C350.484,270,351.047,270.094,351.047,270.781z\r\n\t\t M353.5,274.875c-0.375,0.5-0.656,0.75-1.094,1.188c0.156-0.438,0.891-1.625,1.125-1.625\r\n\t\tC353.516,274.594,353.516,274.75,353.5,274.875z M353.969,274.531c0-0.344,0.531-1.156,0.531-0.938\r\n\t\tC354.312,273.969,354.312,274.25,353.969,274.531z M357.641,267.781c0-0.188,0.453-0.969,0.453-0.562\r\n\t\tC358.094,267.438,357.812,267.656,357.641,267.781z M366.188,234.188c0.422-0.188,0.531-0.219,1.062-0.469\r\n\t\tc0.922,0.781-0.672,1-1.156,1.188C366.016,234.688,366.188,234.438,366.188,234.188z M362.156,237.625\r\n\t\tc-0.125,0-0.188,0.062-0.156,0.188c-0.125,0.031-0.562-0.312-0.391-0.375C361.5,237.406,361.938,237.375,362.156,237.625z\r\n\t\t M352.594,238.406c-0.094-0.594,0.531,0.188,0.844,0.156c-0.594,0.188-0.875,0.344-1.297,0.406\r\n\t\tC352.141,239,352.594,238.031,352.594,238.406z M351.75,238.094c-0.141-0.094-0.031-0.344-0.25-0.312\r\n\t\tc0.219,0.375,0.5,0.906-0.062,1.688c0.391,0,0.031-0.219,0.391-0.219c0.078-0.406,0.25-1.125,0.344-1.438\r\n\t\tc0,0.281,0.047,0.25,0.109-0.031c0.156,0.5-0.125,0.875-0.453,1.469c0.141-0.125,0.172-0.031,0.141,0.125\r\n\t\tc0.766-0.5,3-1.281,3.938-1.375c1.766-0.625,1.062,0.969,2.328,1.812c-0.062-0.094-0.047-0.156,0.062-0.156\r\n\t\tc0.078,0.25,0.141,0.625,0.172,0.938c-0.344-1.906,2.156-1.719,2.047-2.094c0.5,0.406,0.922,0.25,1.141-0.375\r\n\t\tc0.188,0.625,0.531,0.875,0.734,1.594c1.062-0.906,0.5-1.594,0.172-2.75c0.781,0.094,1.547-0.188,2.062-0.594\r\n\t\tc0.094,0.312,1.031,0.938,1.469,0.438c0.094,0.312,1.75,1.219,2.062,1.688c0.844,0.594,1.734,0.719,1.938,2.156\r\n\t\tc0.328-0.125-0.312-1,0.594-1.156c0,0.125,0.297,0.156,0.297,0.156c0.578,0.125,0.484,1.062,1.125,0.844\r\n\t\tc0.062,0.406-0.25,0.625-0.109,1.062c-0.359,0.188-0.484,0-0.719,0.219c0.094,0.469,0.266,0.219,0.094,0.938\r\n\t\tc0.094-0.031,0.281,0.531,0.406,0.688c-0.281,0.094-0.156-0.156-0.219,0.25c-0.062-0.125-0.156-0.25-0.234-0.375\r\n\t\tc-0.078,0.156-0.172,0.312-0.234,0.469c-0.391-0.594-0.422-0.25-0.719-0.344c-0.188-0.531-0.531-1.188-1.094-1.188\r\n\t\tc-0.375,1.875-0.781-0.312-0.828-0.812c-0.641,0.406,0.031,1.562,0.016,2.156c-0.016,0.938-1.391,0.844-1.047,1.656\r\n\t\tc0.203-0.062,0.141-0.188,0.297-0.281c0.203,0.75,1.375,2.312,0.438,2.688c0-0.719-1.719,1.281-1.969,1.781\r\n\t\tc-0.062-0.062-0.125-0.156-0.203-0.25c0,0.688,0.109,0.312-0.281,0.594c0.141,0.469-0.141,0.5-0.203,0.562\r\n\t\tc0,0.625-0.547,1.125-0.406,2c-0.734-0.281-0.625-0.781-1.297-0.844c-0.391,0-0.484,1.25-0.875,1.75\r\n\t\tc0.062-0.406-0.016-0.781-0.016-1.156c-0.469,0.156-0.344,1-0.656,1.188c-0.25-0.719-0.609,0.219-0.781,0.531\r\n\t\tc-0.203,0.312-0.531,2.312-0.281,2.688c0-0.406,0.781,0.188,0.25,0.688c-0.375,0.438,0.062,1.062,0.125,1.5\r\n\t\tc0.094-0.062,0.219-0.125,0.312-0.219c0.094,0.844-0.344,0.438-0.375,0.594c-0.125,0.5-0.406,0.969-0.531,1.625\r\n\t\tc-0.062,0.312,0.438,0.375,0.25,0.875c-0.156,0.438-0.547-0.062-0.703,0.375c0,0.469-0.578,2.094-0.766,2.125\r\n\t\tc0,1.031-0.531,2.219-1.25,2.906c0-1.281-1.719-7.688-0.156-8.031c0-1.906,1.375-2.969,2.141-4.969\r\n\t\tc0-0.531,0.078-1.531,0.609-1.688c1.156-0.25-0.125-2.562,1.047-2.594c-0.734-0.562-0.391-0.156-1.047-0.031\r\n\t\tc0.312-0.094-0.031,2.156-0.031,1.188c-0.578,0.188-0.75,1.406-1.172,2.156c-0.016-0.375-0.047-0.406,0.016-0.844\r\n\t\tc-0.188,0.031-0.188,0.219-0.281,0.375c0.062-0.375,0.156-0.938,0.062-1.312c-0.25,0.219-1.438,0.719-1.906,0.844\r\n\t\tc-0.531,0.781-1.344,2.531-1.125,3.375c0.156-0.125,0.281-0.188,0.453-0.281c0.062,0.625-0.984,1.219-1.859,1.594\r\n\t\tc0.031-0.719-0.391-0.5,0.406-0.906c-0.625-0.531-0.281-0.625-0.906-0.156c0-0.375-1.297-0.312-1,0.688\r\n\t\tc-0.875,0.156-1.25-0.469-1.781,0.375c-0.141-0.562-0.25-0.312-0.641-0.719c0,0.281-0.797,0.281-1.078,0.531\r\n\t\tc0.031-0.125,0.062-0.25,0.094-0.344c-1.609,0.312-1.75,3.812-3.094,4.562c0.094,1.531-7.094,2.469-7.094,3.969\r\n\t\tc0.328-0.031-4.156-0.062-4.156-0.125c0,0.406,0,0.875,0,1.312c0,0,5.359-0.344,5.453-0.562c0.078,0.062,2.672,0.094,2.766,0.156\r\n\t\tc-0.094,0.219,1.125,0.438,1.047,0.625c0.375,0,1.125-0.188,1.125-0.5c0.312,0,0.266,0.156,0.609,0.125\r\n\t\tc0-1.594,1.562,0.469,2.125,0.469c0-0.219-1.188,3.062-0.766,3.281c0.594,0.312-0.734,3.5-1.188,3.875\r\n\t\tc-0.359,0.25-1.594,3.125-1.656,3.5c-1.094,0.531-1.109,2.938-2.422,2.688c-0.125-0.562-0.344-0.312-0.188-0.969\r\n\t\tc-0.125,0.125-0.25,0.25-0.375,0.375c0.031-0.125,0.078-0.219,0.125-0.344c-0.688,0-1.672,1.75-2,2.375\r\n\t\tc-0.281,0.469-1.328,3.125-2.031,3.125c0.188,0.062,0.594,0.438,0.75,0.375c-0.125,0.375,0.438,2.656,0.484,2.656\r\n\t\tc-0.484,1.594-1.203,1.656-2.391,2.875c-0.047-0.75,0.125-1.562,0.719-2.094c-0.203,0.031-0.188-0.875-0.25-1.062\r\n\t\tc0.656,0,0.359-0.969-0.031-0.969c-0.516,0.062-1,0.25-0.734-0.406c-0.047,0.031-0.109,0.094-0.172,0.156\r\n\t\tc0-0.625-0.25-0.688,0.562-1c-0.688,0.094-0.031-1.219-0.594-1.062c-0.359,0-0.75,0.031-0.906,0.031\r\n\t\tc-0.344,0.594-1,0.531-1.062,1.188c-0.125,0.031-0.25,0.031-0.422,0.031c0.109-0.25,0.234-0.375,0.375-0.625\r\n\t\tc-0.641,0,0.359-1.188,0.578-1.625c-0.969-0.531-1.656,0.625-2.219,1.312c-0.703,0.844-1.156,0.594-1.516,1.594\r\n\t\tc-0.047,0.312,0.453,1.125,0.641,1.562c0.312-0.094,0.438-0.438,0.812-0.625c0.797-0.375,1.062,0.031,2.062-0.031\r\n\t\tc-0.188,0.562-1.625,1.5-1.938,1.562c-0.109,0.344-0.75,0.75-0.844,1.094c-0.188,0.844,0.484,1.438-0.141,2.062\r\n\t\tc0.453,0,0.078-0.156,0.391-0.156c0.031,0.656,0.594,1.438,0.5,2c-0.109,0-0.5,0.062-0.812,0.031\r\n\t\tc0.312-0.031,0.688,0.281,0.906,0.281c-0.031,0.688-0.625,0.812-0.625,1.25c0.938,0,0.453,0,0.969,0.469\r\n\t\tc-0.5,0.531-0.734,2.031-1.578,2.031c0,0.688-1.609,2.938-1.797,2.938c0.062,0.656-0.312,0.906-1.047,0.969\r\n\t\tc-0.078,0.969-2.219,2.406-3.172,2.406c0.094-0.375-0.047-0.188-0.125-0.594c0,0.844-1.938,1.562-2.344,1.562\r\n\t\tc-0.062,0.062-1.469,1.375-0.844,1.25c-0.719,0.125-0.906-0.438-0.391-1.219c-0.234,0-0.641-0.031-0.812-0.094\r\n\t\tc-0.453-0.219-0.734,0.688-1.141,0.812c-0.469,0.156-0.859,1.125-1.25,1.125c-1.203,1.906,0.188,1.844,0.188,3.188\r\n\t\tc0.781,0,0.719,3.594,0.656,4.125c-0.766,2-2.25,2.219-3.719,2.219c0.406,0.531,0.25,0.469,0.344,0.844\r\n\t\tc-0.25,0-0.328-0.375-0.438-0.562c0,0.25-0.297,0.875,0.031,0.875c-0.047,0.094-0.844,0.594-1.031,0.625\r\n\t\tc0.344-0.656-0.031-1.188,0.141-1.938c-0.172,0-0.422,0.281-0.172-0.312c-0.109,0.062-0.219,0.094-0.328,0.156\r\n\t\tc-0.016-0.875-0.516-1.219-0.766-2.094c-0.016,0.188-0.125,0.219-0.344,0.125c0.047-0.156,0.078-0.531,0.078-0.719\r\n\t\tc-1.359-0.156-2.297,3.812-2.312,4.844c0.391-0.094,1.328,2.438,1.422,3.062c0.094,0.812-0.188,1.938-0.188,3.031\r\n\t\tc-0.25,0-1.516,0.312-1.234-0.25c-0.266-0.312-0.797-2.281-0.672-2.281c0.281-0.875,0.469-1.781,0.281-2.719\r\n\t\tc-0.312-1.5-0.531-0.75-0.062-2.219c0.375-1.094,1.688-7.406,0.125-7.406c-0.484,0.719-0.875,1.125-1.641,1.188\r\n\t\tc0-1.25,0.703-2.812,0.297-4.469c-0.375,0-0.516,0.406-0.766,0.406c0.25-0.719-0.281-1-0.078-2.188c0.156,0-0.734-1.25-0.969-1.438\r\n\t\tc-0.25,0.75,0.062,0.969-0.75,1.312c-0.25,0.812-2.312-0.281-2.312,0.781c-0.156,0.25-1.406,1.25-1.484,1.5\r\n\t\tc-0.922-0.094-1.859,1.625-3.016,1.844c-0.672,0.156-1.172,0.844-1.844,1.312c-0.844,0.656-0.562,0.188-1.047,1.188\r\n\t\tc-0.172-0.062-0.719,1.969-0.859,2.375c-0.25,1.188-1.688,3.719-3.406,3.719c0.172-0.531-0.078-2.062-0.219-2.906\r\n\t\tc-0.969,0,0.109-3.406-0.422-3.562c0.609-1.844-0.984-5,0.891-6.5c-0.5-0.125,0-1.531,0.062-1.625\r\n\t\tc-0.172-0.031-1.625,2.688-2.219,1.5c-1.344-2.781,0.219-0.625,1.125-2.562c-0.188-0.062-3.062,0.594-1.656-1.031\r\n\t\tc-0.625,0.188-1.469-0.781-1.578-1.188c-0.078-0.281,0.594-0.75-0.5-0.844c-0.703-0.125-0.609,0.188-1.266,0.125\r\n\t\tc-1.016-0.188-5.156-0.062-5.25-1.719c-0.203-2.25-3.031-0.219-3.031-1.219c-1.297-0.406-1.641-3.375-1.625-4.406\r\n\t\tc-0.594-0.094-1.562-0.688-1.781-0.688c-0.094,0.469,0.219,0.469,0.094,0.844c-0.094-0.062-0.156-0.156-0.25-0.219\r\n\t\tc-0.156,0.281-0.312,2.531,0.438,2.688c0.062,0.438,0,2.312,0.281,2.688c0.141-0.188,0.609-0.656,0.875-0.656\r\n\t\tc0.031,0.312-0.531,1.375-0.438,1.531c0.453,0.75,1.359,0.344,1.891,0.875c0.031-0.281,2.141-1.438,2.547-1.812\r\n\t\tc-0.125,0.531-0.375,1.625,0.031,1.781c0.125,0.219,0.625,0.781,0.594,0.875c0.938,0.094,0.953,1.719,1.516,1.719\r\n\t\tc-0.453,0.469-0.984,1-1.297,1.531c-0.031,0-1.844,1.875-1.219,1.875c-0.484,0-2.75,1-2.75,1.281\r\n\t\tc-0.484,0.25-2.703,0.281-2.703,0.969c-0.984,1.406-4.703,1.562-5.844,1.688c-0.516,0.062-3.688,0.656-2.312-1.25\r\n\t\tc-0.266-0.094,0.078-0.906,0.156-1.219c0.203-0.719-0.031-1.531-0.078-2.125c0.172-0.531-0.453-2.625-0.625-2.688\r\n\t\tc0.062-0.469-0.422-0.656-0.641-0.656c0.141-0.469-0.094-2.094-0.25-2.156c1.125-1.188,0.219-3.031-0.109-4.469\r\n\t\tc0.109-0.438-1.234-3.312-1.469-3.312c-0.75,1.688-0.844-1.125-1.266-1.281c-0.5,1.562,0.719,4.812,1.125,6.188\r\n\t\tc-0.844-0.125,0.391,2.656,0.469,3.094c-0.031,0-0.75,2.219-0.375,2.875c0.297,0.5,0.812,0.969,0.75,1.406\r\n\t\tc-0.062,0.125-0.375,1.625-0.219,2.031c0.188,0.906,3.5,4.031,1.656,4.688c1.062,1.5,1.406,1.25,3.094,1.75\r\n\t\tc0.297-0.562,3.516-0.469,3.766-0.344c-1.406,1.625-2.297,4.969-4.578,6.344c-1.094,0.719-1.922,1.469-3.297,2.125\r\n\t\tc-0.766,0.312-2.328,0.625-2.672,1.625c-0.781,0-1.406,1.5-2.266,1.5c-0.859,0.625-1.891,1.562-2.078,2.531\r\n\t\tc-0.125,0.562,0.156,0.75,0.188,1.219c0.094,1.062-1,1.375-0.438,2.562c0.156,0.375-0.562,4.281-0.75,4.219\r\n\t\tc-1.109,1.219-2.719,1.781-4.547,1.438c-0.188,0.375-2.297,1.531-1.734,1.906c0.062,0.062,0,1.562-0.109,1.875\r\n\t\tc0.453,0.188-0.453,1.062-0.875,1.25c-0.266-0.094-2.109,0-2.188,0.406c0.141,0.094,0.266,0.156,0.391,0.219\r\n\t\tc-0.312,0.438-0.469,1.406-1,1.312c0.094,1.719-5.234,2.062-5.516,3c-2.266-0.562-4.984-0.719-6.531-1.219\r\n\t\tc0.172-0.75,1.047-4.781-0.516-5.062c0.281-0.688-0.344-1.656-0.094-2.688c0.188-0.875,0.25-1.531,0.344-1.938\r\n\t\tc0.031-0.969-0.969-1.844-0.734-2.625c0.234-0.938-0.703-1.188-0.453-2.094c0,0.062,0.375-1.781,0.766-1.656\r\n\t\tc0.109-0.344,1.547-2.469,2.047-2.344c0.344-1.219-0.344-2.25,0.656-3.062c-0.406-0.125-0.156-3.344-0.406-3.406\r\n\t\tc0.391-0.531-1.438-2.875-1.688-3.625c0.25,0.156,0.359,0.156,0.344-0.031c-0.688-0.281-0.344-1.75,0.406-1.5\r\n\t\tc-0.047-0.188-0.219-0.438-0.156-0.531c0.688,0.156,1.344-2.906,1.375-3.344c-0.297-0.25-0.688,0.25-0.547-0.5\r\n\t\tc-0.609-0.156-0.453-0.281-1.016-0.438c-0.078,0.812-1.5-0.406-1.719-0.438c0.188-0.594,0.047-0.844,0.188-1.312\r\n\t\tc-1.375-0.562-1.828-1.656-3.406-0.844c0.031-0.25,0.125-0.125,0.234-0.281c-0.172,0-0.219-0.062-0.109-0.188\r\n\t\tc-0.344-0.094-0.297,0.188-0.734-0.406c-0.047,0.281,0.078,0.438,0.141,0.688c-0.953-0.406-2.281,0.062-3.047-0.281\r\n\t\tc0.109-0.719-3.984-0.688-4.328-1c-1.156-1.188-2.312-3.156-2.906-4.531c0.047,0.062,0.078,0.125,0.125,0.188\r\n\t\tc-0.031,0-0.391-1.031-0.406-0.938c0.094,0.031,0.188,0.094,0.297,0.125c0.156-1.5-0.703-2.594-1.078-3.906\r\n\t\tc0.219-0.469-0.453-1.094-0.531-1.5c0.078-0.5,0.391-1.406-0.062-2.219c1.484,0.469,2.875-6.625,2.469-6.812\r\n\t\tc0.219-1.125,1.594-1.656,2.188-2.375c0.703-0.844,1.719-1.656,2.5-2.438c0.625-0.625,2.625-0.5,3.328-1.469\r\n\t\tc0.953-1.25,0.609-2.906,2.172-3.656c1.031,0.375,1.672-1.031,2.406-0.812c0.812-2.5,1.594,0.219,3.266,0\r\n\t\tc-0.125,0.219,0.109,0.344,0.172,0.531c1-0.344,2.281-0.094,3.219-0.688c0.844-0.469,4.922,1.656,5.062,1.062\r\n\t\tc0.688,0.688,1.688,0.531,2.438,0.625c-0.219,0.594,0.344,0.438,0.641,0.531c-0.188,0.594-1.562,1.219-0.734,1.469\r\n\t\tc-0.234,0.688-0.438,1.125-0.859,1.375c-0.609,0.344,0.109,1.281,0.203,1.344c0.328,0.75,2.031,1.781,2.688,1.969\r\n\t\tc-0.312,1.344,1.812,2.312,2.984,3c0.953,0.594,0.891-1.5,0.922-1.562c0.406-0.406,1.031-0.469,1.469-0.656\r\n\t\tc0.406-0.188,2.859,2.375,3.312,2.5c0.891,0.281,1.25,1,2.438,1.281c0,0.062,2.141,0.562,2.031,0.531c0-0.188,0-0.312-0.031-0.531\r\n\t\tc1,0.406,1.594,1.281,3.078,0.094c0.828-0.719,0.703-1.812,1.797-2.531c-0.547-0.344,0.234-2.188,0.375-2.781\r\n\t\tc-0.219-0.062-0.531,0.219-0.781,0.344c0.25-0.438-2.156,0.438-2.406-0.375c-0.094-0.469-0.625-0.656-1-0.781\r\n\t\tc-0.641,1.594-2.016-0.812-2.641-1.031c0.109-0.375,0.516-1.219-0.297-1.281c0.078-0.188,0.125-0.375,0.156-0.594\r\n\t\tc0.078,0.125,0.141,0.281,0.219,0.406c0.125-0.5,0.203-0.812,0.375-1.406c-1.297-0.375,0.422-1.062,1.094-0.938\r\n\t\tc0.062-0.281,1.25-0.156,1.734-0.031c0.203-0.625-1.125-0.281,0.672-0.5c-0.125,0.781,0.969,0.062,1.156,0.031\r\n\t\tc0.938-0.094,1.781,0.188,2.75,0.094c-0.312,0.812,3.922,2.75,4.875,1.594c0.172-1.25-1.172,4.391-2.172,4.25\r\n\t\tc0.078-0.422-0.109,7.719,0.016,7.719c-0.219,0-0.406,0-0.625,0c0.156,0,0.375-8.438,0.406-8.938\r\n\t\tc0.312-0.031,0.406-4.172,0.312-3.969c0.688-0.266,0.938-2.797,0.422-3.328c0.328,0.031,1.719-1.484,1.719-1.703\r\n\t\tc-1.75,0-2.984-0.094-4.547-0.359c-0.422,0.641,0.594,0.578,0.391,1.172c0.5,0.094,0.828,0.094,1.266-0.016\r\n\t\tc-0.094,0.141-0.031,0.141,0.109,0.109c-0.891,0.312-1.797,0.375-2.844,0.594c0.578-0.75,0.266-1-0.469-1.281\r\n\t\tc0.469-0.188,1.234-0.453,1.281-0.859c-0.5-0.125-1.266,0.047-1.656-0.734c0.234,0.062,0.422-0.031,0.625,0\r\n\t\tc-0.141-0.156-0.234-0.281-0.359-0.438c0.047-0.188-1.531,0.656-1.719,0.719c-0.531,0.25-0.703,0.938-0.734,1.375\r\n\t\tc-0.516-0.344-1.594,1.406-1.734,1.719c-0.594,1.312,0.297,1.219,0.156,2.406c-0.969-0.156-1.484,0.125-2.375,0.375\r\n\t\tc0.469-1.188-0.812-1.25-1.859-1.5c-0.078,0.375,0.016,0.562,0.234,0.906c-0.094-0.062-0.172-0.156-0.266-0.25\r\n\t\tc0.031,0.156,0.047,0.281,0.062,0.406c-0.141-0.062-0.109-0.156-0.25-0.25c-0.031,0.25-0.031,0.094-0.078,0.312\r\n\t\tc-0.375-0.125-0.344-0.531-0.375-0.938c-0.172,0.688-0.5,0.719-0.172,1.781c-0.281-0.094,0.031-0.156-0.234-0.25\r\n\t\tc-0.188,0.688,0.125,0.031-0.016,0.688c0.453,0.062,0.984,0.781,1.031,1.469c-0.203-0.281-0.328-0.469-0.672-0.5\r\n\t\tc0.031,0.406,0.219-0.188-0.031,0.625c-0.219-0.156-0.438-0.219-0.703-0.344c-0.047,0.156,0.125,0.312,0.172,0.531\r\n\t\tc-0.312,0-0.25-0.031-0.594-0.156c-0.281,1.219-0.719-0.312-0.922,0.25c-0.188-0.594-0.391-1.688,0.344-1.25\r\n\t\tc0-0.156,0.078-0.188,0.203-0.094c0.047-0.438-0.75-0.344-0.312-1.125c-0.141,0.031-0.266,0.062-0.375,0.062\r\n\t\tc0.094-0.469-0.25-0.656-0.141-1.219c-0.172-0.062-0.234,0.125-0.359,0.25c0.109-0.562,0.312-1.75,0.219-2.281\r\n\t\tc-0.031-0.156-0.031-2.031-1.094-2.031c0.094-0.312-1.25-1.531-1.344-1.562c-0.219,0-0.312-1.938-0.281-2.312\r\n\t\tc-0.188,0.312-0.656,0.875-0.844,0.781c-0.031-0.656-0.094-0.938,0.312-1.281c-0.406-0.156-0.875-0.125-1.219-0.188\r\n\t\tc-0.25,0.625-0.875,1.844-0.156,2.156c0.281,0.062,0.625,0.75,0.438,1.156c0.516,0.156,0.594,1.844,1.562,1.969\r\n\t\tc-0.094,0.156-0.188,0.312-0.281,0.438c0.812,0.219,1.25,1.688,1.125,2.219c-0.266-0.094-0.438-0.906-0.719-0.906\r\n\t\tc-1.203,0.656,0.031,0.938-0.281,1.594c-0.172-0.031-1,1.438-1.656,1.219c2.047-3.625-2.922-4.562-2.094-8.438\r\n\t\tc-0.516-1.156-2.172-0.938-2.875-0.25c-0.406,0.406-3.562-2.312-3.062,0.719c-0.922-0.344-2.422,0.938-3.094,1.281\r\n\t\tc-0.656,0.312-0.125,0.719-0.438,1.125c-0.156,0.562-1.031,0.5-1.188,1.156c-1.406,0.875-2.156,0.094-3.562,0.344\r\n\t\tc-1.094,0.219-1-0.188-1.266-1.156c-0.078-0.344-1.562-0.625-1.859-0.75c0.25-0.844,0.438-1.469,0.656-2.031\r\n\t\tc-0.312-0.094-0.031,0.125-0.344,0.062c0.062-0.188,2.281-3.281,1.453-3.438c0.547-0.438,0.516-0.969,0.219-1.531\r\n\t\tc0.188,0.062,1.141-0.156,1.141-0.062c0.344-0.531,1.156,0.406,1.469,0.469c0.625,0.188,3.25,1.875,3.719,1.5\r\n\t\tc0.344-0.312,1.578-2.688,1.062-2.844c-0.062-0.719-0.891-0.938-0.391-1.688c-0.625-0.188,0.172-0.281-0.438-0.5\r\n\t\tc0.047-0.281,0.188-0.156,0.359-0.219c-0.312-0.125-0.406-0.281-0.5,0.156c-0.281-0.094-0.344-0.531-0.25-0.781\r\n\t\tc-0.297,0-0.406-0.25-0.438-0.547c0.031-0.078,0.062-0.141,0.172-0.078c-0.172-0.656,0.016-0.562,0.594-0.312\r\n\t\tc-0.047,0.156,1.438,8.078,1.906,8.266c0.109-0.594,0.109,6.328,0,6.328c0.141,0,0.312,0,0.453,0c-0.031,0,2.312-7.719,2.406-7.781\r\n\t\tc0.531-0.328,0.062-4.781,1.125-4.484c0.156-0.281,0.938-1.953,1.125-1.922c-0.25-0.094-0.062-1.125-0.156-1.344\r\n\t\tc0,0,0.5,0.125,0.156-0.094c0.094,0.094,0.172-0.078,0.25,0c0.516-1.781,2.25-2.406,3.094-1c0.406-0.922,0.719-0.219,1.078-0.562\r\n\t\tc0.234-0.5,0.422-1.125,0.578-1.719c0.125,0.031-0.641-3.312,1.5-2.438c0.188-0.812-0.109-0.547-0.531-0.734\r\n\t\tc0.125,0.016,0.188,0.078,0.188,0.234c-0.328,0.062-0.312,0.25-0.188-0.25c-0.25,0.094-0.266,0.281-0.516,0.188\r\n\t\tc0.375-0.812,1.406-0.469,2.312-0.969c-0.266,0.656-0.234,0.969-0.953,0.906c0.141,0.062,0.344,0.094,0.5,0.125\r\n\t\tc-0.25,0.781,0.281,11.281-0.453,11.062c-0.234,0.281-0.703,10.781-0.75,10.781c0.219,0,0.422,0,0.609,0\r\n\t\tc-0.188,0,0.094-9.469-0.219-9.016c-0.094-0.188-0.344-5.703-0.531-5.766c0.031,0.531-0.062-2.344-0.172-1.781\r\n\t\tc0.141,0.031,0.266-1.156,0.422-1.109c-0.625,0.469-0.172,0.109-0.25,0.672c0.359,0.25,0.391-0.281,0.75,0.25\r\n\t\tc0.109-0.344,0.672-0.469,1.125-0.656c-0.344,1.25,4.219,0.656,4.656,0.969c-0.047,0.375-0.25-0.203-0.406,0.344\r\n\t\tc0.281-0.031,0.531-0.094,0.812-0.125c-0.062,0.125-0.094,0.266,0.047,0.328c0.172-0.188,0.484-0.484,0.625-0.641\r\n\t\tc-0.672-0.25,0.266-0.594,0.5-0.719c-0.031,0.125-0.078,0.281-0.109,0.438c1.344-0.656,0.672-2.906,2.578-3.312\r\n\t\tc-0.266,0.406-0.219,0.625,0.109,1.062c0.828,0.969,1.109-0.969,1.406-1.5c-0.125-0.062-0.281-0.094-0.438-0.125\r\n\t\tc0.188-0.688,0.188-0.719,0.359-1.25c0.875,0.156,3.406,0.531,3.734-0.031c-0.094,0.219,1.219,0.125,1.594,0.219\r\n\t\tc0.125-0.469-1.062-0.969-1.438-1.5c0.25,0.094,0.328,0,0.281-0.281c-1.125-0.125-2.062,0.688-2.984,0.375\r\n\t\tc-1.297-0.125-0.375-0.438-1.359-1.531c-0.031,0.156-0.047,0.312-0.109,0.469c-0.562-0.156,0.062-2.219,0.312-2.781\r\n\t\tc0.172-0.344-0.172-0.719,0.531-0.938c0.109-0.031,0.797-0.469,1.094-0.625c0.172,0.062,1.828-1.5,1.672-1.812\r\n\t\tc0.016,0-0.062-1.094-0.094-0.906c0-0.062-1.156-0.438-1.375-0.75c-0.25,0.375-0.344,0.812-0.906,0.594\r\n\t\tc-0.375,0.844-0.688,1.688-1.797,2.375c-0.703,0.375-0.812,0-1.266,0.625c-0.453,0.281-0.562,0.656-1.094,0.375\r\n\t\tc-0.531,1.25-0.609,1.75-0.953,3.125c0.297,0.219,0.453,0.219,0.453-0.062c0.312,0.281,0.047,0.344,0.531,0.469\r\n\t\tc0,0.125-0.109,0.844,0.172,0.906c-0.297,0.156-0.391,0.375-0.906,0.438c1.203,0.25-0.922,0.812-1.516,0.688\r\n\t\tc0.422,0.469-0.875,2.219-1.125,2.625c0.25,0.031,0.281-0.094,0.5-0.188c-0.062,0.25-0.312,0.5-0.469,0.688\r\n\t\tc-0.094-0.156-0.141-0.156-0.078-0.344c-1.359-0.531-1.703,1.156-3.078,0.594c0.469-1.375,0.531-1.125,0.344-2.781\r\n\t\tc-0.359-0.125,0.062-2.125,0.109-2.375c-0.578-0.125-1.547,0.688-2.266,0.5c-1.781,0.188-1.859-0.188-1.359-1.969\r\n\t\tc-0.297-0.156-0.328-0.156-0.719-0.219c0.031-0.125,0.047-0.219,0.172-0.312c0.594,0.188,0.969-0.094,1.281-0.781\r\n\t\tc-0.562-0.156-0.391,0-0.984-0.156c0.172-0.156,0.281,0.031,0.359-0.219c-0.797-0.25-0.5-0.375,0.016-0.5\r\n\t\tc-0.125-0.062-0.359-0.312-0.297-0.438c0.266,0.094,1.578,0.75,1.703,0.219c-0.234-0.125-1.078-0.281-1.672-0.375\r\n\t\tc0.172-0.5,0.125-0.156,0.281-0.406c-0.219-0.031-0.219-0.125-0.016-0.375c0.328,0.094,0.609,0.188,0.953,0.312\r\n\t\tc0.094-0.594-0.75,0.062-0.531-0.688c0.594,0.156,1.031-0.094,0.922,0.312c0.172-0.062,0.328-0.125,0.562-0.188\r\n\t\tc-0.266-0.031-0.422-0.281-0.328-0.562c0.25,0.094,0.406,0.219,0.547,0.312c0.172-0.562,0.312-0.312,0.109-0.844\r\n\t\tc0.547,0.219,0.703,0.469,0.906-0.031c0.078,0.156,0.188,0.281,0.312,0.469c0.031-0.188-0.094-0.281-0.203-0.438\r\n\t\tc0.516-0.281,0.312-0.312,0.656-0.625c-0.141,0.031-0.297,0.031-0.422,0.031c0.141-0.062,0.312-0.125,0.469-0.188\r\n\t\tc-0.219,0.438,0.469,0.312,0.531,0.344c0.125,0.438,0.219,0.312,0.516,0.625c0.203-0.438,0.859-0.438,0.953-0.688\r\n\t\tc-0.406,0.188-0.703,0.219-1.125,0.312c0.094-0.312-0.031-0.25,0-0.5c0.562,0.125,1.594-0.906,1.625-1\r\n\t\tc0.844,0.25,0.562,0.156,0.719-0.312c1.391-0.281,1.047-0.781,1.703-1.312c0.734,0.125,1.422-0.938,1.969-0.781\r\n\t\tc0.047-0.219,0.047-0.25,0.172-0.625c-0.156,0-0.297,0.031-0.438,0.062c0.031-0.219,0.125-0.25,0.312-0.094\r\n\t\tc0-0.125,0-0.156-0.031-0.188c0.125,0.031,0.219,0.062,0.422,0.312c0.203-0.156,0.656-0.438,0.797-0.625\r\n\t\tc-0.25-0.094-0.594-0.094-0.875-0.062c0,0,2.562-1.5,0.719-1.344c0.125-0.312,0.344-0.656,0.938-0.875\r\n\t\tc-0.062,0.312-0.156,0.625-0.25,0.938c0.312,0.156,0.422,0.062,0.375-0.375c0.359-0.125,0.094,0.25,0.359-0.25\r\n\t\tc0.078,0.188-5.438,0.375-5.219,0.406c0.156-0.406-5.125-0.656-5.125-0.875c0,0.156,0,0.312,0,0.5c0-0.312,5.906-0.062,5.969-0.562\r\n\t\tc0.531,0.094,2.703,0.312,3.219,0.469c0.5,0.125,1.641-0.062,1.766-0.406c0.203,0.062,1.094,0.344,1.219,0.5\r\n\t\tc-0.031-0.219,0.281-0.469,0.266-0.688c-0.109,0.031-0.031,0.062-0.125,0.094c0.062-0.125,0.125-0.219,0.031-0.344\r\n\t\tc0.438,0.125,2.109,1.344,2.266,0.125c0.391,0.156,0.125,1.219,0.516-0.375c0.391,0.312,0.406,0.219,0.625,0.312\r\n\t\tc-0.094,0.281-0.047,0.344,0.172,0.375c-0.469,0.312-0.75,0.75-0.75,1.281c0.188-0.312,1.25-1.656,1.547-1.562\r\n\t\tc0,0.469-0.312,0.656-0.375,1.031c1-0.438,0.719-1.531,1.656-1.188c-0.188,0.531,0.219,0.344-0.422,0.531\r\n\t\tc0.016,0.125,0.047,0.219,0.047,0.344c0.109-0.094,0.219-0.156,0.344-0.25c-0.125,0.188-0.188,0.438-0.281,0.625\r\n\t\tc0.156,0.031,0.5-0.656,0.625-0.875c0.125,0.25,0.219,0.594,0.219,0.75c0.188,0.031,0.297-0.094,0.469-0.062\r\n\t\tc-0.047,0.188-0.156,0.25-0.25,0.438c0.688,0.125-8.844,0.031-8.406,0.469c-0.812-0.25-10.344,0.406-10.344,0.156\r\n\t\tc0,0.188,0,0.344,0,0.531c0-0.281,9.438,0.031,9.844-0.312c0.344,0.312,5.141,0.688,5.406,0.219\r\n\t\tc0.266,0.219,2.438,0.375,2.781,0.469c-0.312,0.188,1.156,0.281,0.688,0.219c0,0.094,2.438,1.25,2.734,1.531\r\n\t\tc-0.047,0.156,2.609,1.594,2.609,2.125c-0.281,0.75,1.859,1.906-0.172,2.781c-0.078-0.031-2.328-0.062-2.078-0.5\r\n\t\tc-0.5-0.094-1.594-1.188-1.594-1.031c-0.75-0.344-0.812-1.188-1.344-1.344c0,0.25,0.156,0.719,0.375,0.781\r\n\t\tc-0.094,0.094-0.219,0.156-0.312,0.219c0.156,0.031,0.344,0.094,0.516,0.125c0.016,0.219-0.078,0.25-0.297,0.094\r\n\t\tc0.125,0.312,0.438,0.375,0.438,0.625c-0.25-0.031-0.344-0.156-0.469,0.062c2.156,0.531,0.719,1.781,1.188,3.438\r\n\t\tc0.031-0.094,0.781,0.906,1.531,1c0-0.188,0.781-0.312,0.391-1.094c-0.5-0.875-0.312-0.5-0.078-1.5\r\n\t\tc0.469,0.312,0.688,0.719,0.562,1.125c0.688-0.031,0.719,0.281,1.469,0.688c0-0.594-0.75-2.844,0.875-2.281\r\n\t\tc0.188-0.844,1.219,0.125,0.969,0.656c0.938,0.25,1.812-3.656,1.438-4.281c0.891,1.031,1.703,0.906,1.875,2.531\r\n\t\tc-1.219-0.375-1.125,0.281-1.125,1.562c0.5,0.156,1.312-0.188,1.469-0.625c0.359-1.062,0.844-0.5,0.938-1.188\r\n\t\tc0.938,0.406,1.781-0.781,2.812-0.469c0.109-0.125,0.469-0.562,0.812-0.5c0.094,0.219,0.094,0.531,0.266,1.031\r\n\t\tc-0.484-0.062-0.297,0.125-0.578,0.219c0.375-0.031,0.406,0.062,0.656,0.125c0.219-0.5,0.406-0.094,0.641,0.094\r\n\t\tc0-1,1.297-0.938,1.828-0.156c0.375-0.375,0.625-0.375,1.234-0.438c-0.078,0.375-0.266,1.125,0.25,1.188\r\n\t\tc0.547-0.75,1.406-0.75,0.734-2.188c0.172,0.062,0.594-0.062,0.594-0.375c1.094,0.812,2.562-0.125,2.297,1.781\r\n\t\tc0.297,0.062,0.234-0.375,0.328-0.562c0.656,0.438,1.703,1.438,1.609,2.281c0.406,0.094,0.734-0.781,0.797-1.188\r\n\t\tc-0.219,0-0.062,0.219-0.391,0.156c0.109-0.625-0.141-0.781,0.25-1.281c-0.391-0.094-0.484-0.219-0.859-0.312\r\n\t\tc0.375-0.812,0.328-1.156,0.438-2c-0.594-0.125,0.562-1.094,0.594-1.219c0.359-0.75,1.562-1.469,1.562-2.219\r\n\t\tc0.453,0.031,1.375,0.094,1.719,0.531c0,0.188,0.109,1.969-0.281,1.906c0,1.188-0.125,1.906-0.156,3.188\r\n\t\tc0,0.375-0.156,0.656-0.094,1.125c0.031,0.469,0.562,0.688,0.562,1.219c0,0-0.719,2-0.75,2.188\r\n\t\tc-0.719-0.094-1.344,0.188-2.312,0.188c-0.062,0.281,0.219,0.688,0.594,0.75c1.203,0,0.812,0.938,1.531,1\r\n\t\tc0.062-0.656,0.094-0.844-0.422-1.188c2.297,0.656,1.516-2.562,2.203-3.344c0.438-0.531,1.625-0.719,1.516,0.156\r\n\t\tc0.672,0.094-0.453,2.156,0.609,2.688c0-0.875,0.938-0.219,0.938,0.094c0.078-0.062,0.156-0.094,0.25-0.156\r\n\t\tc-0.312-0.25-0.594-0.531-0.984-0.562c-0.297-0.875,0.219-0.938,0.016-1.781c-0.469-1.656-1.422-0.906-2.688-1.125\r\n\t\tc0.188-1-0.062-1.562-0.062-2.438c0.203-1.406,0.625-1.812,0.812-3.594c0.656,0-0.5,3.344,1.375,3.5c0-0.375,0.516,0,0.656,0.094\r\n\t\tc0.062-0.125,0.109-0.219,0.172-0.312c-0.922-0.094-0.953-0.875-0.953-1.531c0.906,0.094,0.719,0.906,1.406,0.125\r\n\t\tc-0.266-0.125-0.172-0.156-0.5-0.188c0.375-1.344,2.469,0.719,3.359,0.812c0,0.719-0.703,2.406-1.141,2.938\r\n\t\tc0.328,0.062,0.312-0.469,0.656-0.406c0.688,0.594-0.094,0.844,1.078,0.875c-1.359-1.031,1.047-3.938-1.297-4.125\r\n\t\tc0-0.25-0.344-0.219-0.453-0.531c-0.359-0.719,0.078-1.125,0.078-1.781c0.375-0.625,1.844-0.781,2.594-0.25\r\n\t\tc0.219-0.375,1.344-0.625,0.969,0.375c1.609,0.156-0.875-1.562,0.375-1.562c0-0.375-0.062-0.5-0.469-0.5\r\n\t\tc0.047-0.094,0.094-0.219,0.141-0.312c0.219,0,0.328,0.219,0.578,0.375c0-0.594,0.375-0.656,0.375-0.938\r\n\t\tc-0.203-0.062-0.344-0.094-0.344-0.344c1.719,0,2.312-0.656,3.969-0.594c0.031-0.281,0.109-0.25,0.109-0.438\r\n\t\tc0.672,0.312,1.672-0.375,1.672,0.844c0.25,0.094,0.328,0,0.219-0.312c0.078,0.156,0.156,0.344,0.219,0.5\r\n\t\tc0.344-0.5,0.938-1.312,1.406-0.438c0-0.531-0.125-0.438-0.391-0.781c0.109-0.062,0.234-0.125,0.359-0.188\r\n\t\tc0,0.125,0.906,0.156,1.188,0.344c-0.812-0.906,0.25-1.75,0.875-2.219c0.797,0.625,1.359-0.594,1.359,1.125\r\n\t\tc0.766,0,1.188-0.094,1.188,1.156c0.469-0.562,2.406-1.188,2.406-1.156c0.297,0.594,2.422,2.531,1.266,2.531\r\n\t\tc0.031,0.219,0.688,0.781,0.531,1.125c-0.156,0.312-0.719,0.062-0.719,0.469c-0.75,0-1.547,0.469-2.062,1\r\n\t\tc-0.141,0.156-0.188,1.469-0.875,1.469c0,0.344-1.922,1.25-1.922,1.25c0.766,0,2.984-0.688,2.859-1.438\r\n\t\tc0.188,0.094,0.344,0.219,0.5,0.312c-0.219-0.406-0.297-0.906,0.031-1.438c0.453,0.031,0.141,0.062,0.594-0.031\r\n\t\tc-0.094,0.969,1.031,1.344,0.953,0.156c0.109,0.438,0.312,0.906,0.422,1.281c-0.281-1.781,2.812-1.75,2.969-0.594\r\n\t\tc-0.25,0,2.156,1.344,2.156,1.031c0.578,0,0.719,9.219,1.422,9.094c-0.109-0.125-0.172,8.844-0.141,8.844c0.109,0,0.25,0,0.359,0\r\n\t\tc0,0-0.391-9.5-0.609-9.484c0,0.125,0.031-4.359,0.141-4.297c-0.328,0.062-1.547-3.906,0.516-4.062\r\n\t\tc0.125,0.812,0.859-0.938,0.812-0.094c0,0.375-0.75,0.188-1.078,0.5c0.172,0,0.328-0.328,0.516-0.344\r\n\t\tc-0.047,0.203-0.031,0.344-0.203,0.344c0.172,0.094,0.328,0.109,0.484,0.203c-0.062-0.547,0.125-0.203,0.406-0.516\r\n\t\tc0,0.281-0.062,0.531-0.047,0.625c0.578,0,0.516,0.531,0.75,0.891c0.141,0,0.109-1.016,0.094-1.172\r\n\t\tc0.234,0.281,0.828,1.094,1.062,1.062c-0.109-0.219-0.109-0.344,0.047-0.344c0,0.031-0.094,0.812-0.094,0.812\r\n\t\tc0.094-0.031,0.188-0.125,0.281-0.188c0.328,0.688,0.844,0.688,1.312,0.688c0,0.312-0.25,0.781,0.188,0.781\r\n\t\tc0.234-0.438,0.281-2.812,0.625-2.812c0.141,0.469,0.25,0.625,0.25,1.125c0.078-0.031,0.969-0.438,0.766-0.781\r\n\t\tc0.281,0,0.953,0.438,1.141,0.375c0.672,0.062,1.125,0.719,1.281-0.531c0.406,1.469,0.297-0.531,0.344-0.688\r\n\t\tc0.188-0.688-0.25-0.875,0.547-1.219c-0.109-0.125-0.234-0.156-0.359-0.281c0.75-0.156,2.531,0.188,3,0.5\r\n\t\tc-0.312,0.062-0.5,0.219-0.562-0.062c-0.109,0.188-0.109,0.406,0,0.656c0.531-0.156,0.719-0.344,1.266-0.406\r\n\t\tc-0.047,0.312-0.094,0.438-0.203,0.719c-0.078-0.25,0.094-0.312,0-0.531c-0.344,0-0.469,1.25-0.469,1.406\r\n\t\tc1.172-0.188,0.391-1.312,0.938-1.781C351.047,236.875,352.172,237,351.75,238.094z M361.922,254.156\r\n\t\tc0.016,0.188-0.172,0.969-0.109,1.156c-0.125,0.031-0.156,0.25-0.172,0.406C361.641,255.156,361.5,254.719,361.922,254.156z\r\n\t\t M347.031,264.188c-0.469,0.062-1.031-0.281-0.281-0.5C346.828,263.844,346.938,264,347.031,264.188z M243.281,270.031\r\n\t\tc-0.844,0.469-0.828,0.031-0.641-0.562c0.359,0.125-0.062-0.156,0.5,0C242.859,270.031,243.172,269.688,243.281,270.031z\r\n\t\t M247.953,269.656c0.625,1,0,2.281-0.969,2.625c0.062-0.312-0.094-1.469-0.062-2.094\r\n\t\tC247.109,269.875,247.578,269.719,247.953,269.656z M247.547,268.844c0.156-0.438,0.453-1.625,1.172-1.312\r\n\t\tc0,0.875-0.25,1.312-0.719,2C247.859,269.281,247.656,269.062,247.547,268.844z M249.266,274.531\r\n\t\tc0.156-0.656,1.594,0.312,2.406,0.188c-0.312,0.469-0.594,1-0.75,1.469c-0.219-0.125-0.25-0.281-0.406-0.281\r\n\t\tC250.297,275.594,249.203,274.844,249.266,274.531z M255.891,275.938c0.047-0.281,0.188-0.031,0.281,0.094\r\n\t\tC256.078,276.406,256,276,255.891,275.938z M257.438,279.875c0.109-0.344,0.422-0.031,0.484-0.031\r\n\t\tc0.375,0.344,1.766,0.531,1.656,0.969C258.703,280.906,258.297,280.531,257.438,279.875z M264.328,282.031\r\n\t\tc0.188,0,1.125-0.125,0.75-0.156c0.641,0.094,0.938,0.188,1.438-0.156C266.281,282.406,264.703,283.094,264.328,282.031z\r\n\t\t M260.781,275.938c0.578,0.094,0.047,0.094,0.391,0.25c-0.203,0-0.094,0.312-0.375,0.219\r\n\t\tC260.953,275.844,260.75,276.312,260.781,275.938z M255.797,253.156c-0.328,0.281-0.188-0.188-0.438,0.375\r\n\t\tc-0.062-0.031-0.156-0.062-0.25-0.094c0.109-0.594-0.031-0.219-0.438-0.281c0.266-0.625,0.156-0.406-0.031-0.875\r\n\t\tc0.469,0.156,0.312-0.125,0.688-0.125c-0.156,0.188-0.141,0.312,0.031,0.344c0-0.188,0.094-0.188,0.219-0.125\r\n\t\tc0.156-0.5,0.125-0.188,0.469-0.5c-0.25,0.562,0.016,0.531-0.406,0.844C255.688,252.875,255.75,253.031,255.797,253.156z\r\n\t\t M255.797,253.656c-0.156,0.375-0.781,0.531-1.25,0.5c-0.031-0.25,0-0.5,0.031-0.688\r\n\t\tC255.109,253.844,255.234,253.562,255.797,253.656z M257.453,253.469c0.125,0.188,0.266,0.406,0.375,0.625\r\n\t\tc-0.094,0-0.203,0.062-0.312,0.094C257.484,253.906,257.453,253.688,257.453,253.469z M260.797,252.406\r\n\t\tc-0.219-0.625,0.375-1.438,1.078-1.219c-0.484,0.281-0.375,0.625-0.531,0.875C261.141,252.156,260.984,252.312,260.797,252.406z\r\n\t\t M262.828,247.938c0.469-0.031,0.25-0.219,0.312-0.438c0.281,0.031,0.297,0.344,0.219,0.719\r\n\t\tC263.156,248.219,263.016,248.031,262.828,247.938z M263.891,251.094c0.203-0.594,0.781-0.469,1.297-0.156\r\n\t\tc-0.234,0.125-1.172,0.875-1.328,0.844c-0.031-0.312,0.031-0.406,0.234-0.312C264.031,251.344,263.953,251.219,263.891,251.094z\r\n\t\t M264.484,250.062c0.031-0.156,0.422-0.219,0.562-0.188c0,0.094,0.031,0.219,0.031,0.344c-0.188-0.062-0.234,0.094-0.406,0.25\r\n\t\tC264.688,250.25,264.641,250.094,264.484,250.062z M265.359,248.625c0.062-0.281,0.094-0.062,0.125-0.469\r\n\t\tc0.156,0.031,0.281,0.062,0.406,0.094c-0.031,0.156-0.094,0.344-0.109,0.469C265.641,248.688,265.5,248.656,265.359,248.625z\r\n\t\t M329.5,236.031c0.062-0.281,0.359-0.531,0.328-0.656C330.188,235.375,329.688,235.969,329.5,236.031z M350.938,231.844\r\n\t\tc-0.094,0.031-0.844,0.312-1.156,0.375c0,0.125-1.203-1.031-0.562-1.031C349.859,231.062,351.812,231.562,350.938,231.844z\r\n\t\t M346.578,235.906c-0.391-0.062-0.266-0.312-0.672-0.25c-0.031-0.156,0.5-0.875,0.469-1.031c0.969-0.656,1.406,0.5,1.625,1.219\r\n\t\tC347.688,235.875,346.5,235.625,346.578,235.906z M347.406,233c-0.234-0.594-0.344-1.219-0.25-1.25\r\n\t\tC348.016,231.594,348.156,232.312,347.406,233z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256.016,127.992C185.297,127.992,128,185.297,128,256c0,70.688,57.297,128,128.016,128C326.688,384,384,326.688,384,256\r\n\t\tC384,185.297,326.688,127.992,256.016,127.992z M344.438,231.344c0,0.094,2.344,2.688,0.531,3\r\n\t\tc-0.844,0.156-0.906-1.906-0.969-2.312C344.219,232.031,344.328,231.562,344.438,231.344z M339.781,237.375\r\n\t\tc-0.031,0.031-0.484,0.688-0.484,0.062C339.438,237.406,339.625,237.406,339.781,237.375z M339.031,238.125\r\n\t\tc0.062,0.188,0.328,0.219,0.406,0.438c-0.438,0-0.281,0-0.594-0.094C338.906,238.344,338.969,238.25,339.031,238.125z\r\n\t\t M338.031,237.875c-0.375,0,0.031-0.25-0.359,0.031c-0.141-0.25-0.016-0.094-0.016-0.312c-0.062-0.188,0-0.25,0.188-0.188\r\n\t\tC337.906,237.562,337.969,237.719,338.031,237.875z M322.5,226.469c0.25,0,0.469,0.062,0.469,0.656\r\n\t\tc0.125-0.125,0.25-0.094,0.188-0.312c0.156,0.219,1.25,0.719,1.281,0.938c0,0.75-0.906,0.656-0.906,1.125\r\n\t\tc-0.156-0.031-0.812-0.094-0.812-0.344c-0.359,0-0.438,0.625-1.156,0.625c0-0.094,0.516-1.062,0.656-1.25\r\n\t\tC322.453,227.906,322.5,226.781,322.5,226.469z M318.344,224.906c-0.188-0.656,1.125-1.75,1.125-1.062\r\n\t\tc0.594,0.25,1.594,1.562,0.594,1.938c1.156,0.094,0.844-0.219,0.844,0.781c0.562,0,0.281-0.156,0.5-0.594\r\n\t\tc0.375,0,0.625,1.969-0.781,1.406c0,0.625-1.859-0.406-1.75-0.062c-0.141-0.125-0.188-0.281-0.141-0.469\r\n\t\tc-0.219,0.031-0.266,0.125-0.547,0.125c0-0.094,0-0.188,0-0.312c0.188,0,1.531-0.969,1.531-1.031\r\n\t\tc-0.438-0.031-0.922-0.125-0.922,0.281c-0.25-0.156-1.328-0.562-1.328-0.719C317.969,225.188,317.781,224.906,318.344,224.906z\r\n\t\t M320,231.812c0.312,0.25,0.062,0.219-0.641-0.031c0.109-0.031,0.25-0.094,0.391-0.156\r\n\t\tC319.688,231.844,319.781,231.875,320,231.812z M317.375,225.656c0,0.344,0.438,0.781,0.688,1c-1.25-0.188-1.312,0.156-1.312-1.031\r\n\t\tC316.938,225.656,317.172,225.656,317.375,225.656z M316.234,223.25c0.422,0.062,0.016,0.156,0.453,0.156\r\n\t\tc-0.156,0.156-0.219,0.094-0.219,0.312C315.938,223.719,316.234,223.25,316.234,223.25z M308.766,236.156\r\n\t\tc-0.016,0.125,0.094,0.438,0.094,0.656c-0.312-0.031-0.359-0.156-0.578-0.375C308.438,236.344,308.594,236.25,308.766,236.156z\r\n\t\t M308.156,237.062c-0.094,0.25-0.906,1.281-0.781,0.375C307.641,237.219,307.75,237,308.156,237.062z M302.922,235.312\r\n\t\tc0.094-0.125,0.203-0.281,0.297-0.438c0.234,0.625,0.125,0.594-0.344,0.938C302.656,235.531,302.922,235.594,302.922,235.312z\r\n\t\t M299.375,221.625c0.453,0.094,1.531-0.594,1.531,0.25c-0.375-0.031-1.562,1.469-1.562,0.062\r\n\t\tC299.547,222.062,299.406,221.719,299.375,221.625z M297.75,221.531c0.562-0.062,0.844,0.281,0.844,0.906\r\n\t\tc-0.438-0.031-0.25,0.125-0.703-0.094c0.031,0.25,0.047,0.531,0.062,0.812c-0.312-0.031-0.547-0.031-0.875-0.125\r\n\t\tC296.906,222.375,297.141,221.875,297.75,221.531z M296.859,218.406c0.172,0,0.203,0,0.203,0.188\r\n\t\tc-0.188-0.031-0.375-0.031-0.562-0.094C296.609,218.469,296.75,218.438,296.859,218.406z M295.562,220.875\r\n\t\tc-0.5-0.312-0.562-0.344-0.734-0.781c0.375-0.156,0.391,0.344,0.484-0.219c0.219,0.188,0.5,0.281,0.75,0.438\r\n\t\tc-0.078,0.094-0.156,0.188-0.219,0.281c-0.25-0.219-0.219-0.344-0.562-0.406c0.203,0.188,0.25,0.531,0.531,0.562\r\n\t\tC295.844,220.938,295.781,221,295.562,220.875z M295.625,222.438c0,0.281-0.094,0.344-0.062,0.656\r\n\t\tC294.75,223.094,294.656,222.344,295.625,222.438z M296.359,220.688c-0.141-0.062-0.172,0.406-0.312-0.062\r\n\t\tC296.156,220.531,296.656,220.094,296.359,220.688z M295.766,222.156C297.281,222.281,295.656,223.688,295.766,222.156\r\n\t\tL295.766,222.156z M296.828,223.281c0.031,0.219,0.062,0.406,0.062,0.656c-0.266-0.094-0.562-0.312-0.562-0.562\r\n\t\tC296.5,223.344,296.656,223.344,296.828,223.281z M296.016,218.75c0.031,0.188,0.203,0.094,0.203,0.312\r\n\t\tc-0.094,0.062-0.172,0.094-0.266,0.156C295.906,219.062,295.797,218.688,296.016,218.75z M295.281,218.938\r\n\t\tc0.156,0.062,0.312,0.125,0.453,0.219c0,0.656-1.172,0.125-0.922,0.188C294.906,218.875,295.281,219.562,295.281,218.938z\r\n\t\t M294.281,220.312c0.125,0.188,0.219,0.219,0.5,0.281c0,0.406-0.812,0.125-0.75-0.156\r\n\t\tC294.25,220.562,294.312,220.531,294.281,220.312z M292.438,221.906C294.047,222.062,292.438,222.719,292.438,221.906\r\n\t\tL292.438,221.906z M292.422,232.125c0.078-0.594,0.203-0.75,0.812-0.5c-0.234-0.438-0.219-0.156,0.078-0.469\r\n\t\tc-0.188,0.031-0.219-0.094-0.094-0.312c0.578,0.062,3.328-0.344,3.531-0.906c0.062,0.219,0.188,0.281,0.469,0.25\r\n\t\tc0.109-0.938,1.016-0.406,1.016,0c0.859-0.25,1.266-0.438,2.047-0.656c0.312-0.062,0.594-0.375,1.156-0.312\r\n\t\tc0.188,0.188,0.359,1.281-0.219,1.062c-0.203,0.75-2.109,0.5-2.641,0.719c-1.047,0.469-1.531,0.219-2.562,0.938\r\n\t\tc0-0.5-0.781,0.219-1.016,0.156c-0.109,0.5-0.172,0.5-0.672,0.875c0.062-0.188,0.109-0.375-0.078-0.375\r\n\t\tc-0.094,1.094-0.219,0.281-0.25,0.938c-0.172-0.062-0.344-0.156-0.484-0.25c-0.062,0.812-0.391,0.875-0.797,0.344\r\n\t\tc-0.156,0.406-0.438-0.062-0.688-0.094c0,0.312,0.906,0.625,1.203,1c-0.953,0.656-0.984,3.688,0.5,3.844\r\n\t\tc-0.141,0.531-0.609-0.125-0.891-0.156c-0.094,0.656,0.141,0,0.031,0.625c-0.203,0-0.094-0.156-0.094-0.312\r\n\t\tc-1.125-0.156-1.219,0.094-2.219-0.25c0-0.375,0.406-0.719,0.734-0.688c0.078-0.781-0.641-0.062-0.344-1.188\r\n\t\tc-0.188,0-0.5,0.094-0.672,0.188c-0.031-0.094-0.047-0.219-0.062-0.312c-0.188,0.25-0.25,0.406-0.641,0.375\r\n\t\tc-0.078-0.469-0.031-0.875,0.25-1.281c0.375,0.281,0.281,0.094,0.484,0.25c0-0.531,0.406-0.812,0.406-1.031\r\n\t\tc0.125-0.219-0.031-0.562,0.125-0.812c0.438,0.094,0.672,0.125,0.812-0.312c-0.094,0.031-0.188,0.062-0.312,0.094\r\n\t\tc0.094-0.094,0.625-0.938,0.625-0.688c-0.391-0.156-0.812,0.188-0.812-0.469c0.188,0,1-0.094,1-0.469\r\n\t\tC292.375,232.031,292.172,232.125,292.422,232.125z M295.625,240.438c-0.406,0-0.594-0.125-0.797-0.156\r\n\t\tc-0.328-0.156-0.109-0.438-0.547-0.219c0.125-0.312-0.031-0.656,0-0.969C294.906,239.125,295.281,240,295.625,240.438z\r\n\t\t M290.766,222.375c0-0.188,0.219-0.25,0.391-0.219c0.031,0.094,0.031,0.188,0.062,0.312\r\n\t\tC291.078,222.438,290.938,222.375,290.766,222.375z M291.609,222.375c0.359,0,0.422,0.219,0.141,0.688\r\n\t\tc-0.203-0.031-0.406-0.094-0.594-0.125C291.156,222.781,291.5,222.594,291.609,222.375z M291.547,220.938\r\n\t\tc-0.047,0.156-0.109,0.281-0.203,0.438c0.156-0.062,0.281-0.156,0.438-0.25c0.125,1.094-1.469,0.562-2.375,1\r\n\t\tc0.125-0.375-0.062-0.312-0.406-0.406c0.062-0.25,0.188-0.25,0.328-0.406c-0.297,0.062-0.422,0-0.328-0.25\r\n\t\tc0.562-0.031,0.75,0.5,1.281,0.406c0.438-0.031,0.906-0.562,0.812-0.594C291.297,220.875,291.156,221.125,291.547,220.938z\r\n\t\t M287.812,220.188c0.359,0,2.859,0.125,2.641,1c-0.625-0.125-1.172-0.281-1.766-0.469c-0.281,0.594-0.594,0.625-0.969,0.094\r\n\t\tc0,0.156-0.5,0.156-0.75,0.344c0.25-0.344-0.719-0.344-0.719-0.625C286.719,220.156,287.109,220.094,287.812,220.188z\r\n\t\t M288.062,239.469c-0.109,0.5-0.406,0.656-0.469,1.062C286.828,240.344,287.047,239.156,288.062,239.469z M277.719,221.75\r\n\t\tc-0.312-0.094-0.891-0.219-0.781-0.531C277.094,221.25,277.922,221.5,277.719,221.75z M271.766,217.562\r\n\t\tc0.234-1,0.297,0.031,0.562-0.469c-0.547-0.156,0.172-0.375,0.234-0.469c0.172,0.656,0.906,0.844,0.953,1.25\r\n\t\tc0.109,0.844,0.812,0.125,1.031,0.156c-0.078,0.156-0.156,0.281,0.047,0.312c0.359-1.25,0.297-0.062,0.062,0.188\r\n\t\tc0.438,0.094,0.688-0.125,1.031-0.375c0,0.188-0.125,0.281-0.234,0.406c0.203-0.094,0.25,0.031,0.312-0.219\r\n\t\tc0.297,0.094,0.312,0.594,0.922,0.719c-0.125,0.406-0.453,0.656-0.875,0.594c-0.156,0.188-0.125,0.312,0.062,0.312\r\n\t\tc-0.312,0.031-0.594,0.094-0.906,0.094c-0.312,0.969-3.672-0.656-3.516-1.469c0.469,0.312,0.938,0.094,1.266,0.219\r\n\t\tc-0.297-0.219-1.266-0.25-1.469-0.406c-0.734-0.156,0.203-0.656,0.234-0.781c-0.266-0.031-0.547-0.312-0.453-0.594\r\n\t\tC271.234,217.25,271.562,217.5,271.766,217.562z M276.031,221.812c-0.312-0.156-0.281-0.094-0.281-0.438\r\n\t\tC276.266,221.5,275.812,221.5,276.031,221.812z M272.125,223.219c-0.047,0.156-0.672-0.344-1.234-0.219\r\n\t\tc0.078-0.344,0.172-0.75,0.281-1.062c1.422-0.25,1.391,0.781,2.359,0.969C273.375,223.5,272.734,223.375,272.125,223.219z\r\n\t\t M272.25,233.094c-0.156,0.312-0.328-0.094-0.547-0.156c0.109-0.219,0.172,0,0.203-0.281\r\n\t\tC272,232.812,272.094,233.062,272.25,233.094z M270.828,220.875c0.062,0.031,1.906,0.031,1.203,0.562\r\n\t\tC271.484,221.906,271.062,221.688,270.828,220.875z M266.5,218.625c0.031-0.625,0.453-1.188,0.031-1.312\r\n\t\tc0.141-0.219,0.25-0.438,0.375-0.688c0.141,0,0.25,0.375,0.438-0.062c0.234,0.125,0.328,0.312,0.641,0.406\r\n\t\tc-0.094,0.281-0.312,0.062-0.547,0.125c-0.078,0.281,0.297,0.219,0.188,0.562c0.094,0,0.172,0.031,0.234,0.062\r\n\t\tc0.469-1.5,0.109-0.062,0.594-0.625c0,0.5,0.188,0.781,0.25,1.219c0.188-0.688,0.422-1.062,0.953-1.5\r\n\t\tc0.266,0.125,0.234,0.469,0.234,0.688c0.219,0.094,0.234-0.188,0.406-0.188c-0.109,0.562,0.312,0.812,0.109,1.5\r\n\t\tc0.172,0.031,0.672,1.188,1.016,1.75c-1.188-0.344-1.062,0.438-1.203,1.094c-0.266-0.062-1.859,1.156-1.703,0.844\r\n\t\tc-0.125,0.219-0.344,0.188-0.328,0.719c-0.359-0.094-0.391,0.062-0.562,0.031c0.047-0.281,0.094-0.562,0.109-0.812\r\n\t\tc-0.5-0.125-1.531-0.531-1.172-1.5c0.391,0.281,0.516,0.312,0.984,0.438c0.078-0.25,0.469-0.75,0.453-0.656\r\n\t\tc-0.453-0.156-1.234-0.125-1.406-0.281c0.484-1.594,2.156,0.719,2.609-0.344c-0.5-0.219-0.359-0.125-0.719-0.562\r\n\t\tc-0.312,0.688-0.344-0.469-0.344-0.594c-0.156,0-0.344,0.219-0.234-0.062c-0.359,0.5-0.844,0.594-1.453,0.375\r\n\t\tC266.484,219.125,266.766,218.656,266.5,218.625z M268.953,232.844c0.094-0.531,0.469-0.5,1.031-0.531\r\n\t\tc-0.125,0.188-0.375,0.375-0.578,0.344C269.375,232.844,269.125,232.875,268.953,232.844z M270.297,233.062\r\n\t\tc-0.141,0.188-0.25,0.375-0.406,0.531c0.047-0.188,0-0.344-0.156-0.5C270.172,233.156,269.484,232.875,270.297,233.062z\r\n\t\t M267.234,233.031c-0.125,0.156-0.219,0.281-0.312,0.438c-0.094-0.094-0.219-0.188-0.328-0.25\r\n\t\tC266.875,232.656,266.922,233.031,267.234,233.031z M266.703,233.406c-0.141,0.312-0.188,0.438-0.531,0.312\r\n\t\tc0.031-0.156,0.078-0.281,0.109-0.438C266.422,233.312,266.547,233.375,266.703,233.406z M266.172,217.688\r\n\t\tc0.062,0.031,0.078,1.062,0.078,1.344C265.891,218.969,266.078,218,266.172,217.688z M264.234,234.5\r\n\t\tc-0.031,0.156-0.094,0.312-0.141,0.469c0.047,0.031,0.359-0.125,0.453-0.188c-0.062,0.656-1.125,1.219-0.969,0.531\r\n\t\tc-0.062,0.031-0.125,0.094-0.188,0.125C263.453,235.188,264.109,234.5,264.234,234.5z M263.188,235.188\r\n\t\tc-0.047,0.125-0.609,0.562-0.5,0.219C262.859,235.312,263.016,235.25,263.188,235.188z M262.453,235.312\r\n\t\tc0,0.125,0.031,0.25,0.031,0.344c-0.109-0.062-0.562,0.344-0.469-0.094C262.266,235.562,262.125,235.219,262.453,235.312z\r\n\t\t M231.297,196.539c0.062,0.688,0.781,1.375,0.5,1.906C231.453,197.727,230.922,197.18,231.297,196.539z M207.047,185.164\r\n\t\tc0.109-0.258,0.219-0.289,0.344-0.086c-0.109,0.312-0.344,0.703-0.531,0.977C206.844,185.805,207.031,185.156,207.047,185.164z\r\n\t\t M209.828,198.32c-0.812,1.125-1.219-0.25-1.406-0.438c-0.047,0.125-0.141,0.203-0.281,0.219c0.109-0.219,0.203-0.406,0.016-0.594\r\n\t\tc-0.641,0.844-1.672-0.844-1.719-1.062c-0.594,0.078-1.578-0.469-0.828-1.062c-0.656,0.422-1.406,0.125-1.812-0.375\r\n\t\tc0.656-0.625,2.406-2.391,1.438-3.156c-0.141,0.094-0.312,0.156-0.453,0.219c-0.297-0.656-0.453-2.523,0.547-1.594\r\n\t\tc0.062-0.094,2.375,3.812,0.844,2.719c-0.234,0.25,0.062,0.062-0.297,0.359c0.203,0.016,0.406,0.062,0.609,0.094\r\n\t\tc-0.062,0.109-0.156,0.172-0.281,0.172c0.25,0.188,0.5-0.125,0.156,0.312c0.031,0.031,0.656,0.312,0.281,0.656\r\n\t\tc0.25,0.156,0.125-0.094,0.375,0.281c0.203-0.266,2.375,0.938,3.078,1.438C209.984,196.633,211.328,198.977,209.828,198.32z\r\n\t\t M203.609,192.164c0.578-0.594,0.453,0.812,0.406,0.75c-0.156,0.609-0.844,0.844-1.125,1.156c-0.312-0.219-0.031-0.438-0.281-0.625\r\n\t\tC202.297,192.852,203.031,191.82,203.609,192.164z M202.828,191.945c0.469-0.5,0.188,0.016,0.625-0.094\r\n\t\tC203.344,191.961,203.094,192.133,202.828,191.945z M205.375,189.672c0.406-0.32,1.484,0.438,1.734,0.547\r\n\t\tc-0.203,0.125-0.156,0.234,0.125,0.32C206.141,191.164,206.125,190.266,205.375,189.672z M206.766,192.648\r\n\t\tc0.125-0.422,0.281-0.578,0.594-0.359c-0.094,0.172-0.203,0.375-0.312,0.531C206.953,192.758,206.875,192.711,206.766,192.648z\r\n\t\t M205.516,188.328c0.219,0.148,0.172,0.227,0.375,0.086c-0.75-0.438-0.172-1.023,0.469-1.266c0.125,0.414,0.438,1.062,0.094,1.344\r\n\t\tc0.734,1.141-0.719,0.852-1.141,0.492C205.516,188.766,205.422,188.492,205.516,188.328z M203.094,185.102\r\n\t\tc0.109-0.047,0.203-0.109,0.312-0.156c-0.141-0.125-0.203,0.047-0.328-0.094c0.891-0.906,0.203-0.094,0.062-0.32\r\n\t\tc0.469-0.523,0.312-0.328,0.719-0.484c0,0.539,0.219,0.625,0.062,1.164c0.141-0.07,0.312-0.141,0.469-0.234\r\n\t\tc-0.031,0.344,0.156,0.25-0.125,0.555c0.781,0.188,1.25,2.516-0.156,2.875c-0.094-0.664,0-2.836-0.5-2.195\r\n\t\tc-0.109-0.047-0.484-0.32-0.594-0.578c-0.016,0.062-0.031,0.102,0.125-0.031c-0.406-0.344,0.156-0.156,0.25-0.242\r\n\t\tc-0.125-0.062-0.094-0.125,0.031-0.18C203.219,184.961,203.391,185.422,203.094,185.102z M203.766,187.445\r\n\t\tc0.094,0-0.781,0.258-0.172-0.352C203.828,187.312,203.641,187.375,203.766,187.445z M202.859,189.461\r\n\t\tc0.094-0.367-0.062-0.641,0.562-0.617c-0.219,0.398-0.5,0.625-0.156,0.93c0.141-0.18,0.188-0.336,0.344-0.555\r\n\t\tc0.547,0.562-1,2.414-1.188,3.023c-0.188-0.359-0.203,0.078-0.266,0.172c-0.625-0.25-1.031-0.656-1.516-1.078\r\n\t\tc0.422-0.516,0.875-0.359,1.047-0.57c-0.422-0.242-1.141-0.297-1.391-0.578c0.219-0.25,0.469-0.359,0.625-0.516\r\n\t\tc0.125,0.109,0.297,0.266,0.438,0.391c0.188-0.633,0.344-1.258,1.031-1.258c-0.062,0.578-0.406,1.211-0.562,1.633\r\n\t\tc0.312-0.297,0.453-0.883,0.75-1.266C202.672,189.266,202.766,189.367,202.859,189.461z M201.734,192.695\r\n\t\tc-0.188,0.281-0.109-0.094-0.281,0.156C201.266,192.727,201.641,192.727,201.734,192.695z M199.625,194.711\r\n\t\tc0.344,0.266,0.156-0.109,0.453-0.047c-0.234,0.25-0.266,0.469-0.453,0.688c0.172,0,0.344,0,0.531,0\r\n\t\tc-0.328,1.062-1.984,1.812-2.953,1.094c0.625-0.781,0.281-1.297,0.375-2.234c-0.188,0.016-0.312,0.125-0.406,0.328\r\n\t\tc-0.156-0.75,0.156-1.047,0.516-1.734c0.453,0.469-0.172,0.797,0.766,1.328c0.781-0.625-0.312-1.625,1.297-1.656\r\n\t\tc-0.266,0.344,0.078,0.375,0.078,0.719c0.125-0.188,0-0.281,0.234-0.438c0.531,0.469,0.641-0.172,1.016,0.234\r\n\t\tc-0.281,0.328-1.094,0.094-0.844,0.359C201.609,193.68,199.969,194.289,199.625,194.711z M196.422,200.875\r\n\t\tc-0.531-0.25-0.438,0.031-0.781-0.469c-0.328,0.5-0.125,0.156-0.469,0.281c0.188-0.344-0.031-0.062-0.156-0.156\r\n\t\tc0.234-0.25,0.078-0.469,0.156-0.711c0.078,0.125,0.172,0.094,0.266-0.172c-0.203-0.156-0.234-0.141-0.359,0.109\r\n\t\tc-0.219-0.219-0.188-0.062,0.031-0.391c-0.094,0-0.172-0.016-0.25-0.016c0.219-0.438,0.609-0.656,1.125-0.75\r\n\t\tc0.188,0.172-0.094,0.094,0.062,0.266c0.312-0.312,0.125-0.203,0.453-0.234c0,0,0.156,1.219,0.359,1.312\r\n\t\tC196.594,200.281,196.078,200.594,196.422,200.875z M194.609,197.602c-0.719-0.562-0.25-0.281-0.531-0.844\r\n\t\tc-0.234,0.297-0.188,0.453-0.188,0.875c0.375,0.062,0.031-0.469,0.531,0.031c-0.5,0.625-0.891,0-1.281,0.406\r\n\t\tc-0.312-0.375-0.281-0.656-0.562-0.953c0.344-0.438,0.062-0.859,0.531-1.266c-0.625-0.531-1.844,0.25-2.25-0.344\r\n\t\tc-0.547,0.625-1.75-0.844-2.125-1.188c0.781,0.766-0.094-1.969-0.125-1.75c0.375-0.562,0.156-0.844,0.688-1.375\r\n\t\tc0.469,0.406,0.938,0.531,1.344,0.938c0.156,0.094,0.188,1.062,0.625,0.609c0.359,0.109,0.297-0.359,0.594-0.094\r\n\t\tc-0.188-0.5-1.375-1.859-2.156-2.195c0.344-0.391,0.656-0.773,1.016-0.133c0.328-0.281,0.453-0.219,0.766,0.141\r\n\t\tc0.281-0.344-0.406-0.648-0.625-0.445c-0.266-0.172-0.562-0.305-0.766-0.531c0.266-0.094-0.016-0.5,0.422-0.031\r\n\t\tc-0.125-0.203,0-0.281,0.156-0.328c-0.188-0.227-0.312-0.062-0.562-0.109c0.156-0.086,0.391-0.945,1.078-0.844\r\n\t\tc0.016,0.008,0.859-0.414,0.984-0.508c0.094,0.156,0.609,0.305,0.484,0.289c-0.031,0.047,0.641,0.164,0.922,0.031\r\n\t\tc1.094-0.422,0.062,1.055-0.016,0.914c-0.484,0.516-0.578,1.062-0.438,1.609c0.453-0.453,0.766-0.695,1.172-1.305\r\n\t\tc0.562,0.453-0.359,0.984,0.141,1.477c0.391-0.492,1.219-0.297,0.859,0.172c0.109,0.688-0.875,1.188-1.312,1.625\r\n\t\tc0.469-0.125,0.734-0.125,1.188-0.438c0.484,0.375,0.641,0.891,0.219,1.625c-0.234,0.469-1.031,2.859-0.188,1.906\r\n\t\tc-0.469,1.25,1.031,1.594-0.312,2.531c-0.016-0.312-0.031-0.531,0-0.844c-0.156-0.281-0.281-0.281-0.422,0.031\r\n\t\tC194.609,197.414,194.781,197.414,194.609,197.602z M194.453,198.977c-0.375-0.25,0.062-0.125-0.156-0.328\r\n\t\tC194.547,198.43,194.719,198.695,194.453,198.977z M192.422,197.617c-0.141,0.188-0.219,0.297-0.453,0.234\r\n\t\tc0.016-0.125,0.047-0.25,0.047-0.406C192.156,197.508,192.297,197.57,192.422,197.617z M194.672,184.203\r\n\t\tc0.281-0.336,0.938-0.477,1.312-0.461c-0.375,0.391-0.766,0.531-1.219,0.859C194.734,184.477,194.703,184.328,194.672,184.203z\r\n\t\t M195.703,192.508c-0.078,0.062-0.125-1.758,0.188-1.562c0.188-0.188,0.422-0.297,0.594-0.547\r\n\t\tC196.969,190.781,196,192.352,195.703,192.508z M196.297,196.523c-0.406,0.453-0.391,0.281-0.531,0.172\r\n\t\tC195.891,196.523,196.203,196.477,196.297,196.523z M196.797,187.789c-0.359-0.336-1.688,0.398-1.734-0.477\r\n\t\tc-0.094-1.078,1.312-0.109,1.438-0.016c0.234-0.219,0.547-0.172,0.828-0.297c-0.219-0.031-0.656-0.195-0.625-0.188\r\n\t\tc0.062-0.102,0.125-0.211,0.188-0.312c-0.219,0.195-0.172,0.039-0.156-0.133c-1.5,0.258,0.047-0.555-0.312-1.008\r\n\t\tc-0.219,0.219-0.781,1.086-1.094,0.734c0.109-0.094,0.25-0.211,0.344-0.336c-0.188-0.188-0.188-0.117-0.188-0.062\r\n\t\tc0-0.047-0.016-0.078-0.094-0.211c-0.062,0.117-0.375,0.016-0.469-0.031c0.422-0.398,0.062-0.492,1-0.367\r\n\t\tc-0.062-0.125-0.281-0.18-0.438-0.211c0.062-0.086,0.125-0.18,0.188-0.273c0.203,0.109,0.25,0.203,0.469,0.25\r\n\t\tc0.031-0.031,0.516-0.484,0.578-0.562c-0.328,0.344,0.297,0.133,0.453,0.234c-0.062,0.102-0.125,0.188-0.172,0.281\r\n\t\tc0.109-0.117,0.688,2.109,1.172,2.523c0.594-0.641,0.938-1.547,1.594-2.055c0.062,0.055-0.5,1.297-0.156,1.672\r\n\t\tc-0.281,0.289-0.266,0.32-0.562,0.547c-0.031-0.086,0.203,0.297,0.219,0.492c0.266-0.258,0.469-0.43,0.688-0.719\r\n\t\tc0.438,0.438-0.938,1.672-1.328,1.828C198.578,188.875,197.703,187.789,196.797,187.789z M202.438,186.047\r\n\t\tc-0.188,0.312-0.266,0.562-0.578,0.758C201.953,186.484,202.172,185.852,202.438,186.047z M201.359,188.734\r\n\t\tc0.094,0.102,0.188,0.188,0.281,0.266c-0.469,0.445-0.906,0.945-1.531,0.367c0.25-0.172,0.875-0.07,0.531-0.414\r\n\t\tc-0.312-0.32,0.312-0.164,0.531-0.141c-0.438-0.516-0.344-1.117,0.625-0.531C201.531,188.531,201.578,188.586,201.359,188.734z\r\n\t\t M201.766,188.023c-0.094-0.055-0.438-0.023-0.656-0.164c0.188-0.109,0.375-0.219,0.578-0.344\r\n\t\tC201.734,187.672,201.672,187.773,201.766,188.023z M200.703,183.289c0.188-0.148,0.344-0.398,0.531-0.148\r\n\t\tC201.609,182.789,202.156,184.453,200.703,183.289z M200.266,183.32c-0.016-0.523-0.281-0.555-0.406-0.875\r\n\t\tC200.734,182.359,201.344,182.906,200.266,183.32z M199.062,182.117c0.578,0.32,0.359,0.781-0.391,0.727\r\n\t\tC198.797,182.75,198.859,182.383,199.062,182.117z M199.859,183.594c0.656-0.102,0.703,0.18,1.094,0.609\r\n\t\tc-0.25-0.008-0.594,0.078-0.844,0.07c-0.188,0.812-0.641,0.711-1.25,0.477C197.984,184.383,199.297,182.688,199.859,183.594z\r\n\t\t M193.922,181.977c0.719-0.922,1.062-0.031,1.875-0.844c0.219,0.234,2.188,0.555,2.25,0.594c1.219,0.266,0.016,1.164-0.531,1.547\r\n\t\tc-0.047-0.203-0.062-0.398-0.094-0.578c-0.406,0.484-0.812,0.641-1.391,0.656c0.312-0.398,0.266-0.477,0.812-0.805\r\n\t\tc-0.297-0.273-1.109,0.195-1.484,0.562c0.047-0.125,0.125-0.391,0.062-0.43c-0.266,0.328-0.469,0.727-0.906,0.422\r\n\t\tc0.188-0.203,0.297-0.492,0.438-0.711c-0.406,0.422-0.688,0.438-1.125-0.086C193.875,182.25,194.016,182.055,193.922,181.977z\r\n\t\t M191.344,183.883c0.422-0.109,1.016,0.156,1.266,0.477c0.594-0.438,0.625,1.562,0.594,1.578c0-0.023,0.75,0.781,0.672,0.734\r\n\t\tc0.031,0.297-0.172,0.469-0.109,0.719c0.203,0.781-1.031-0.125-1.312,0.094c-0.406-0.32-1.109,0.352-1.312,0.031\r\n\t\tc-1.5,0.5-0.656,0.906-1.781,0.188c-0.453,0.508-1.422,0.219-0.922-0.344C188.578,186.516,190.672,184.047,191.344,183.883z\r\n\t\t M170.25,178.727c0.016-0.039-0.047-0.297,0.297-0.445c0.125,0.414,0,1.008-0.266,1.555c0-0.258-0.391,0.258-0.344,0.203\r\n\t\tC169.953,180.086,170.234,178.844,170.25,178.727z M167.594,183.414c0.078,0.32,0.156,0.391,0.328,0.164\r\n\t\tc-0.156,0.5-0.359,0.5-0.469,0.727C167.344,183.891,167.453,183.766,167.594,183.414z M162.984,190.219\r\n\t\tc0.438-0.391,0.344,0.039,0.297,0.398c-0.047-0.133-0.547-0.141-0.625-0.156C162.766,190.383,162.875,190.297,162.984,190.219z\r\n\t\t M161.766,190.344c0.156,0.172,0.234,0.234-0.375,0.438C161.562,190.773,161.578,190.594,161.766,190.344z M159,187.445\r\n\t\tc-0.297,0.281,0.109-0.344,0.156-0.438C159.109,187.164,159.047,187.305,159,187.445z M160.109,188.961\r\n\t\tc0-0.227-0.156,0.227-0.234,0.031C159.922,188.938,160.406,188.656,160.109,188.961z M174.328,327.594\r\n\t\tc0.141,0.188,0.344,0.406,0.344,0.656c-0.031-0.062-0.094-0.156-0.141-0.25c0.047,0.125,0.016,0.156-0.078,0\r\n\t\tc0.062,0.125,0.094,0.219,0.156,0.281c-0.219-0.156-0.266-0.188-0.172-0.031C174.25,328.188,173.859,327.406,174.328,327.594z\r\n\t\t M178.859,333.562c-0.125-0.438-0.406-0.625-0.719-0.781c0.188,0.281,0.312,0.281,0.438,0.594\r\n\t\tc-0.344-0.375-0.469-0.375-0.344-0.062c-0.25-0.188-0.5-0.438-0.688-0.656c0.125,0.094,0.125,0.094,0.062-0.031\r\n\t\tc0.125,0.125,0.281,0.188,0.469,0.188c-0.188-0.062-0.703-0.531-0.422-0.312c-0.203-0.156-0.578-0.531-0.828-0.656\r\n\t\tc0.25,0.156-0.234-0.219-0.344-0.375c0.125,0.062,0.312,0.156,0.469,0.219c-0.016-0.062-0.125-0.188-0.234-0.312\r\n\t\tc0.109,0.094,0.203,0.125,0.078-0.188c0.234,0.125,0.453,0.656,0.484,0.781c0.078,0,0.078-0.062,0.031-0.125\r\n\t\tc0.156,0.062,0.344,0.406,0.516,0.469c-0.344-0.375-0.5-0.688-0.75-1.031c0.156,0.156,0.234,0.062,0.375,0.188\r\n\t\tc-0.109-0.5-0.578-0.469-0.688-0.906c0.625,0.219,1.281,0.594,1.188,0.969c0.656,0.5,1.719,1.938,2.125,2.438\r\n\t\tC179.453,333.625,179.312,333.281,178.859,333.562z M180.516,334.094c0.094,0,0.109-0.062,0.062-0.125\r\n\t\tc0.188,0.125,0.344,0.438,0.391,0.469C180.797,334.344,180.547,334.312,180.516,334.094z M181.781,333.156\r\n\t\tc0.109,0.062,0.203,0.062,0.281,0c-0.047-0.156-0.172-0.156-0.078-0.406c0.141,0.25,0.344,0.438,0.641,0.5\r\n\t\tc-0.141,0.094-0.203,0.031-0.312,0.219C182.266,333.312,181.953,333.344,181.781,333.156z M183.219,334.125\r\n\t\tc-0.297-0.062-0.609-0.156-0.672-0.469c0.125,0,0.234,0,0.344-0.031c-0.031-0.062-0.094-0.156-0.141-0.25\r\n\t\tc0.328,0.125,0.453,0.156,0.672,0.469c0-0.25,0.453,0.281,0.234,0.219c-0.359-0.188-0.172,0.125-0.625-0.281\r\n\t\tC183.078,333.906,183.141,334.031,183.219,334.125z M185.797,320.469c0.375,0.094,0.453,0.188,0.234,0.25\r\n\t\tC185.812,320.562,185.797,320.906,185.797,320.469z M200.062,242.125c-0.234-0.156-0.328-0.031-0.328,0.344\r\n\t\tc-1.047-0.5,0.344-0.688,0.391-0.875c0.078,0.219,0.203,0.281,0.109,0.469C199.672,241.594,200.156,242.031,200.062,242.125z\r\n\t\t M200.031,240.812c-0.203,0.375-0.766,0.719-1.109,1.406c-0.875-0.5,0.906-1.5,1-1.875c0.156,0.156,0.438,0.25,0.609,0.375\r\n\t\tC200.484,241.094,200.297,241.125,200.031,240.812z M199.234,235.438c0.453,0.438,0.781,0.969,0.938,1.5\r\n\t\tc-0.094,0.219,0.281,0.375,0.094,0.781C199.672,237.469,199.016,235.938,199.234,235.438z M203.609,242.469\r\n\t\tc0.062-0.156,0.094-0.312,0.094-0.5C204.141,242.281,203.766,242.156,203.609,242.469z M206.266,242.469\r\n\t\tc0.094,0.062-0.188,1.031-0.906,1c0.266-0.469,0.062-0.281,0.156-0.688c-0.188,0.156-0.281,0.438-0.453,0.344\r\n\t\tc0.297-0.562,0.266-0.562,0.453-1.031c-0.266-0.156-0.719,0.25-0.75,0.281c-0.219-0.062-0.375,0-0.656,0.031\r\n\t\tc0.359-0.219,0.562-0.438,0.906-0.594c-0.188-0.125-0.375-0.031-0.625,0c0.125-0.219-1.812-1.781-2.719-1.562\r\n\t\tc0.094-0.156-0.047-0.312-0.031-0.562c0.375,0.219,0.688-0.312,0.969-0.375c-0.438-0.281-0.375-0.188-0.234-0.531\r\n\t\tc0.422,0.281,0.078,0.125,0.297,0.375c0-0.125,0-0.25,0.016-0.375c0.109,0.125,0.172,0.094,0.188-0.094\r\n\t\tc0.109,0.156,0.203,0.25,0.328,0.375c0.188-0.938,1.406-2.875,2.609-2.219c-0.344,0.562-1.312,1.312-1.688,1.844\r\n\t\tc0.078,0.031,1.422-0.312,0.438,0.406c0.297,0.188,0.234,0.438,0.469,0.656c0.219-0.406,0.203,0.031,0.719-0.156\r\n\t\tc-0.047,0.125-0.109,0.188-0.266,0.219c0.531,0.312,0.547-0.344,0.688,0.188c0.047,0.25-0.281,0.688-0.531,0.469\r\n\t\tc0.031,0.438,0.281,0.5,0.031,0.906c0.344-0.031,0.469,0.031,0.812-0.062c-0.266,0.5-1.312,1-0.562,1.312\r\n\t\tc0.281-0.312,0.422-0.312,0.672-0.531C206.484,242.219,206.375,242.344,206.266,242.469z M206.453,235.156\r\n\t\tc0.766,0.781-2.719,1.188-2.375,0.719c-0.75,0.188-1.641,1.5-2.5,0.375c-0.062,0.156-1.469-0.5-2.188-1.125\r\n\t\tc0.281-0.594-2.75-0.719-3.156,0.125c-0.531-0.438-0.906,0.531-1.406,0.062c-0.125,0.188-0.062,0.281,0.156,0.312\r\n\t\tc-0.438,0.281-0.875,0.562-1.094,1c1-0.812,5.531-2.188,4.938,0.25c-0.062-0.094-0.125-0.188-0.172-0.312\r\n\t\tc-0.141,0.312-0.125,0.469-0.234,0.812c-0.062-0.062-0.25-0.156-0.359-0.219c-0.328,0.781-0.672,0.438-0.672-0.188\r\n\t\tc-0.062,0.156-0.188,0.188-0.344,0.125c-0.125,0.344,0,0.281-0.094,0.5c0.25,0.188,0.531,0.344,0.859,0.406\r\n\t\tc-0.047,0.125-0.297,0.656-0.344,0.688c-0.078-0.094-0.172-0.094-0.297,0c0.125,0.062,0.234,0.156,0.344,0.219\r\n\t\tc-0.219,0.594-0.906,1.188,0.125,1.375c-0.047,0.125-0.094,0.25-0.156,0.344c-0.406-0.312-0.125-0.094-0.344,0.125\r\n\t\tc0.578,0.281,0.453,1.125,1.562,0.594c-0.062,0.281-0.156,0.688-0.203,0.781c-0.125-0.062-1.922,0.469-1.891,0.375\r\n\t\tc-0.031-0.125-0.062-0.281-0.109-0.406c-0.266,0.406-0.672,0.531-1.328,0.875c0.062-0.125,0.125-0.312,0.125-0.312\r\n\t\tc-0.172-0.188-0.203,0.094-0.375,0.156c-0.906-1.562,1.344-2.188,1.656-1.281c0.281-0.375,0.625-0.031,0.781-0.281\r\n\t\tc-0.344-0.094-0.703-0.281-1.031-0.406c0.125-0.312,0.25-0.625,0.531-0.469c0.062-0.25-0.094-0.281-0.25-0.5\r\n\t\tc-0.281,0.281-0.688,0.469-0.953,0.75c0.109-0.156,0.109-0.25,0.219-0.469c-0.156-0.156-0.859,0.031-0.359,0.375\r\n\t\tc-0.469-0.188-0.297,0.156-0.812-0.531c-0.188,0.875-0.578,0.531-0.781,1.031c-0.078-0.156-0.156-0.344-0.219-0.5\r\n\t\tc-0.062,0.094-0.094,0.188-0.141,0.281c-0.203-0.156-0.047-0.219-0.094-0.469c-0.297,0.75-0.875,0.531-1.109,0.094\r\n\t\tc-0.672,0.625-1.688,1.031-1.125,2.094c-0.281-0.156-0.281-0.062-0.531-0.125c0.078-0.281,0.281-0.25-0.109-0.438\r\n\t\tc-0.078,0.156-0.141,0.156-0.203,0.406c-0.719-0.469-1.422-0.594-2.031-0.156c-0.047,0.125-1.078,2.531-1.594,0.844\r\n\t\tc-0.125,0.719-0.5,1.406-0.656,1.812c-1.75-0.531,0.344-1.688,0.562-2.281c-0.109-0.062-0.406,0.094-0.812-0.188\r\n\t\tc-0.094,0.312-0.656,1.5-0.906,1.312c0.125,0.625,0.125,0.719,0,1.375c-0.938-0.688,0,0.688,0,0.75\r\n\t\tc-0.125,0.406-0.594,0.25-0.719,0.625c0.281,0.219,0.219,0.562,0.344,0.625c-0.125,0.031-0.266,0.094-0.391,0.125\r\n\t\tc0.203-0.219-0.125-0.469-0.328-0.625c-0.062,0.281,0.031,0.375,0.062,0.625c-0.344-0.125-0.016,0.25-0.406-0.094\r\n\t\tc-0.094,0.812-1.219,1.156-1.781,0.656c-0.172,0.281-3.719,1.688-2.703,2.688c-0.359,1.031-0.109,1.875-0.453,2.688\r\n\t\tc-0.391,1.062-0.625,1.656-0.984,2.719c-0.672-0.406-0.422-3.25,0.016-3.594c-0.25-0.219-0.219-0.062-0.438,0.062\r\n\t\tc0.656-1.625,0.156-1.594,0.188-3.094c-0.906,0.375-1.219-1.406-1.5-1.906c-0.094,0.312-0.266,0-0.406,0.281\r\n\t\tc-0.281-0.188,0.156-0.5-0.156-0.656c-0.062,0.25-1.156-0.344-1.328-0.5c0.531,0.594,0.359,1.094,0.141,1.688\r\n\t\tc-0.125-0.062-0.312-1-0.422-1.312c-0.125,0.312-0.234,0.281-0.328,0.531c-0.594-0.438-0.391-0.312-0.25-0.812\r\n\t\tc-0.328-0.219-0.688-0.125-0.406-0.656c-0.344-0.031-0.688-0.312-0.922-0.75c-0.172,0.562-0.641-0.156-0.703-0.219\r\n\t\tc-0.125,0.344-5.172,0.281-5.422,0.594c0.094-0.125-5.656-0.062-5.656-0.219c0,0.156,0,0.281,0,0.406\r\n\t\tc0-0.844,2.562,4.375,1.938,5.469c-0.406,0.656,1.516,2.75,2.266,3.312c0.094,0.656,1.047,2,1.578,2.531\r\n\t\tc0.656,0.562,2.109,0.125,2.234,0.938c-0.047,0.125,1.875-1.062,1.734-1.156c0.734-0.594,0.828-1.062,1.891-0.625\r\n\t\tc1.469,0.625-0.781,2.75-0.828,3.875c-0.125-0.094-0.203-0.5-0.141-0.656c-0.328,0.375-0.344,1.094-0.516,1.625\r\n\t\tc-0.031-0.031-0.656,0.781-0.781,0.875c1.219,0.562,3.5,1.875,3.031,3.938c-0.406-0.344-1.25,2.594-1.25,3.312\r\n\t\tc0,0.656,0.609,2.531,0.688,2.312c0.203,0.5,1.234,1.062,1.391,0.469c0.844,0.656,0.656,2.875,1.375,3.219\r\n\t\tc0.125-0.438,0.484-1.188,0.906-0.906c0.062-0.438,0.406-1.75,1.047-0.875c0.797-0.906,3.688-0.031,1.75,0.438\r\n\t\tc0.516,0.344-0.297,1.531-0.266,1.844c0,0.5,0.672,0.719,0.625,0.312c-0.078-0.438-0.062-1.219,0.062-1.688\r\n\t\tc0.312,0.125,0.781,0.125,1.062,0.312c0.031-0.062-0.047-0.906-0.031-0.906c0.891,2.688,2.531,4.312,4.859,4.625\r\n\t\tc-0.125,0.281,0.078,0.438-0.484,0.031c0.047,0.688,0.25,0.844,0.719,1.312c0.062-0.312,0.328,0.188,0.125,0.562\r\n\t\tc-0.141,0.688-0.609-0.031-1.25,0.281c0.984,0.344,1.469,0.219,2.094,1.062c-0.016,0.219,0.328,0.594,0.359,0.906\r\n\t\tc0.078,0.75-0.297,0.562-0.438,1.25c0.172,0.031,0.391-0.25,0.219,0.281c0.094-0.219,0.203-0.438,0.297-0.656\r\n\t\tc0.375,0.344,0.938,0.781,0.797,1.625c-0.094-0.031,1.297,0.062,1.266,0.188c1.75,1.531,2.828,4.531,2.625,6.656\r\n\t\tc-0.156-0.031-0.297-0.062-0.438-0.094c0.219,0.312,0.078,0.312,0.031,0.562c0.141,0.031,0.344,0.031,0.438,0.062\r\n\t\tc-0.156,0.469-0.25,0.344-0.344,0.906c-0.766-0.375-0.297-0.312-0.281-0.75c-0.281-0.094-1.234,0.438-0.734,0.688\r\n\t\tc-0.484-0.094-1,1-0.453,1.469c0.312-1.219,0.734-0.812,0.844,0.156c-0.531-1.469,1.344-1.812,1.125-1.156\r\n\t\tc1,0.656,0.281,1.719-0.844,1.156c-0.031,0.156,0.625,0.562,0.75,0.688c0.062-0.312,0.406-0.281,0.609-0.125\r\n\t\tc0.031-0.25-0.141-0.188-0.203-0.438c1.156-0.531,2.219,1.031,2.031,1.656c0.031,0.031,0.453,0.031,0.594,0\r\n\t\tc-0.125,0.406-0.031,1.531,0.406,1.781c0.062-0.156,0.156-0.344,0.234-0.5c0.422,0.219,0.625,0.781,1.016,0.938\r\n\t\tc-0.031-0.062-0.094-0.125-0.125-0.219c1,0.562,3.484,2.531,3.25,4.062c2.031-0.031,1.219,3.281,1.156,4.062\r\n\t\tc-0.547,0.969-2.188,1.312-3.062,2.375c-0.156-0.156-0.266-0.312-0.406-0.469c-0.094,0.5-0.469,0.812-0.719,1.062\r\n\t\tc0.703,0.5-0.281,2.5-0.312,3.031c0.203,0.062-2.219,2.719-2.062,3.312c-0.484,0.375-1.219,0-1.25,0.125\r\n\t\tc-0.484-0.219-1.094-0.25-1.297-0.406c0.016,0.125,0.062,0.281,0.094,0.406c-0.797-0.312-0.562-0.031-1.188-0.312\r\n\t\tc-0.016,0.188-1.266,0.469-1.719,0.188c-0.031,0.344-0.141,2.844-0.297,2.781c0-0.062-1.469,1.625-1.406,1.656\r\n\t\tc0-0.438,0.719-0.531-0.109-1.156c-0.391,0.625-1.469,1.531-1.469,2.094c-0.016,0-1.094,0-1.516-0.312\r\n\t\tc-0.859-0.406-1.469-1.438-1.469-2.438c-0.344,1-0.062,1.562,0.516,2.375c0.812,1.156,0.109,1.344,0.109,2.25\r\n\t\tc-0.172-0.156-0.328-0.094-0.328,0.031c-0.359-0.312-2.109-0.75-2.156-0.75c-0.141-0.125-0.25-0.375-0.453-0.469\r\n\t\tc0.109,0.781,0.188,0.875,0.266,1.688c-0.234,0.125-0.344-0.375-0.297,0.156c-0.188-0.219-0.25-0.25-0.219-0.062\r\n\t\tc-0.312-0.344-0.625-0.688-0.938-0.938c-0.094,0.125-0.094,0.188-0.047,0.375c-0.062-0.094-0.141-0.125-0.234-0.031\r\n\t\tc0.375,0.375,0.469,0.719,0.875,1.219c-0.078-0.5,0.344,0.156,0.344,0.438c-0.266-0.125-0.609-0.281-0.844-0.562\r\n\t\tc0,0.062,0.281,0.25,0.438,0.406c-0.562-0.031-0.625,0.312-0.375,0.938c-0.391-0.156-0.172,0.219-0.125,0.375\r\n\t\tc-2.047-1.188,0.016,2-0.031,2.062c0.094,0.062,0.312,0.219,0.344,0.281c-0.484,0.031-0.688,0.125-1.016,0.438\r\n\t\tc0.25,0.188,0.203,0.25,0.297,0.531c-0.281-0.188-0.359-0.156-0.641-0.469c0.016,0.188,0.062,0.344,0.234,0.562\r\n\t\tc-0.188-0.094-0.125-0.031-0.281-0.094c0.141,0.312,0.094,0.406-0.109,0.281c0.062,0.062,0.578,0.656,0.188,0.5\r\n\t\tc0.25,0.281-8.328,0.438-8.141,0.719c-0.172-0.125-9.203-0.25-9.203-0.406c0,0.094,0,0.156,0,0.25c0-0.125,8.219-0.281,7.969-0.375\r\n\t\tc0.125,0.594,4.344,0.125,4.469,0.719c-0.25-0.219,1.594-0.438,1.391-0.75c0.125,0.312,1.047,0.281,1.359,0.438\r\n\t\tc-0.062,0.062,0.422,0.062,0.375-0.031c0.062,0.156,0.469,0.25,0.562,0.406c-0.516-0.219-0.672-0.719-0.703-1.156\r\n\t\tc0.047,0.156,0.188,0.219,0.281,0.125c-0.375-0.188-0.453-0.688-0.562-1c0.188,0.094,0.234,0.219,0.422,0.281\r\n\t\tc-0.125-0.406-0.328-0.406-0.656-0.625c0.047,0.219,0.203,0.5,0.281,0.688c-0.172-0.062-0.266-0.281-0.422-0.344\r\n\t\tc0,0.062,0.047,0.125,0.094,0.188c-0.25-0.312-0.5-0.688-0.688-1.031c0.312,0.156,0.5,0.281,0.734,0.5\r\n\t\tc-0.062-0.094-0.141-0.219-0.234-0.312c0.094,0.094,0.219,0.188,0.297,0.312c-0.109-0.219-0.078-0.25,0.047-0.156\r\n\t\tc-0.062-0.25-0.203-0.344-0.328-0.625c0.094,0.062,0.172,0.094,0.266,0.125c-0.125-0.125-0.438-0.688-0.266-0.438\r\n\t\tc-0.016-0.031-0.703-1.031-0.172-0.781c0-0.062,0.016-0.156,0.031-0.219c-0.078-0.062-0.156-0.094-0.219-0.156\r\n\t\tc0.062,0.312,0.031,0.25-0.062,0.156c-0.031-0.031-0.062-0.062-0.094-0.062c0.031,0.125,0.062,0.281,0.094,0.438\r\n\t\tc-0.109-0.156-0.125-0.156-0.062,0.031c-0.125-0.062-0.25-0.188-0.312-0.219c0.266,0.125,0.125,0.344,0.109,0.469\r\n\t\tc-0.297-0.75-0.438-1.281-0.547-2c0.031,0.312,0.062,0,0.062-0.125c0.438,0.281,0.594,1,0.75,1.469\r\n\t\tc-0.062-0.469-0.219-0.906-0.312-1.375c0.062,0.062,0.125,0.125,0.203,0.188c-0.172-0.969-0.859-0.938-1.016-1.906\r\n\t\tc0.156,0.062,0.281,0.094,0.406,0.156c-0.031-0.125-0.109-0.125-0.141-0.25c0.578,0.438-0.078-0.188,0.281,0.094\r\n\t\tc-0.094-0.156-0.172-0.312-0.266-0.469c0.078,0.094,0.188,0.062,0.156-0.062c0.125,0.125,0.562,0.625,0.062,0.312\r\n\t\tc0.062,0.156,0.266,0.312,0.359,0.5c-0.297-0.156-0.234-0.062-0.516,0.031c0.188,0.188,0.5,0.375,0.719,0.469\r\n\t\tc-0.125-0.562-0.469-1.656-0.094-1.438c-0.203-0.281-0.156-0.25,0.125-0.281c-0.156-0.312-0.156-0.594-0.234-0.875\r\n\t\tc-0.047-0.5,0.141-0.938-0.453-1.188c-0.312-1.188,0-1.375-0.219-2.406c0-1.406,0.438-2.438,0.375-3.562\r\n\t\tc0.188-1.25,0.281-3.188,0.281-4.719c0.156-1.312,1-4.156,0.766-5.656c-0.422-2.438,0.031-3.062-1.328-4.938\r\n\t\tc-0.656-0.625-1.969-2.469-1.812-3.406c-0.281-0.25-0.172-3.844-0.688-4c0.219-1.375-0.625-4-1.422-5.188\r\n\t\tc-0.859-1.188,1.031-2.969,0.953-3.031c-0.031,0.156-0.141,0.156-0.281,0.25c-0.125-0.25-0.266-0.5-0.391-0.75\r\n\t\tc0.422,0.344,0.188-1.75,0.719-1.219c0.172-0.688,0.297-1.062,0.484-1.812c0.469,0.25,0.625-0.531,1.078-0.188\r\n\t\tc-0.328-1.125,0.578-0.344,0.703-0.844c0.172,0.188,0.531-1.219,0.625-1.594c0.156-0.781,0.312-0.875,0.5-1.656\r\n\t\tc0.016-0.062-0.938-2.312-0.031-1.562c0.062-0.25-0.531-1.125-0.656-1.719c-0.094,0.344-0.703,0.406-0.891,0.312\r\n\t\tc0.141,0.281,0.078,0.5,0.188,0.781c-0.203,0.031-0.172-0.094-0.297,0.156c-0.312-0.219-1.375-2.156-1.5-2.656\r\n\t\tc0.031,0.312-0.031,0.406-0.188,0.219c-0.016-0.125-0.031-0.25-0.031-0.375c0.344,0.156-0.344-1.656-0.438-1.906\r\n\t\tc-0.312,1.25-0.406-0.438-0.125-0.594c0-1.469-0.172-3.281-0.844-3.969c-1.672-1.812-1.25-3.906-2.734-5.812\r\n\t\tc-0.156,0.375-0.719-0.688-0.844-0.125c-1.031-1.719-2.016-3.531-2.906-5.469c-0.953-2.031,0.25-4,0.266-6.062\r\n\t\tc0.031-4.375-0.594-8.125,0.406-12.469c-0.156-0.094-0.312-0.125-0.375,0.062c-0.062-0.188-0.156-0.562-0.281-0.719\r\n\t\tc-0.969,1.5-0.547,4.125-0.75,5.906c0.328,0.594-0.531,4.625-0.75,5.312c-0.516-0.625,0.359-3.094-0.016-3.656\r\n\t\tc0.422-1.25-0.078-2.406-0.203-3.719c0.891,1.031,0.688-2.062,0.703-2.781c0.016-1.031,0.234-2.531,0.703-3.281\r\n\t\tc-0.234-0.281-0.562-2.938-0.547-3c0.203-0.344,0.422-3.031,0.672-2.75c0.125-0.25,0.062-0.875,0.062-1.25\r\n\t\tc0.109,0.125,0.078,0.25,0.156,0.375c0.172-0.281,0.312-1.406,0-0.625c-0.812-1,1.531-4.75,2.016-5.656\r\n\t\tc1.547-2.656,2.109-3.875,3.422-6.375c0.219,0.812,0.531,0.812,0.594,1.25c0.016-0.031,0.031-0.031,0.031-0.062\r\n\t\tc-0.094,0.094-0.109,0.188,0,0.25c0-0.062-0.031-0.125-0.031-0.188c-0.125,0.219-0.344,0.438-0.156,0.656\r\n\t\tc0.641-1.094,0.594-1.969,1.047-2.969c-0.547,0.062-0.359-0.906-0.062-1.5c-0.859,0-0.266-0.75-0.891-1.062\r\n\t\tc0.031,0.688,0.328,1.312,0.422,1.938c-0.281,0.406-0.062,1.875-0.203,2.562c-1.125-0.938,0.109-2.094-0.719-2.719\r\n\t\tc0.469-0.656-0.375-1.094,0.312-2.031c0.062,0.094,0.125,0.156,0.188,0.25c0.406-0.625,1.484-1.656,0.781-2.188\r\n\t\tc0.156-0.188,0.219-0.438,0.438-0.656c0.016,0.094,0.031,0.188,0.031,0.281c0.25-0.406,0.141-0.375,0.391-0.719\r\n\t\tc0.047,0.031-0.188,0-0.297-0.062c-0.094,0.156-0.141,0.188-0.281,0.281c0.109-0.188,0.688-1.594,0.641-1.625\r\n\t\tc-0.047-0.062,0.859-0.688,0.922-0.781c-0.141,0.062-0.375,0.219-0.531,0.281c-0.094-0.125,0.062-0.594,0.141-0.844\r\n\t\tc0.391,0.562,0.297-0.188,0.406-0.438c-0.047,0.125-0.078,0.219-0.109,0.344c-0.062-0.094-0.141-0.125-0.25-0.094\r\n\t\tc0.125-0.625,0.25-0.906,0.688-1.562c-0.5,0.781,0.406-1.062-0.156-0.219c0.062,0.094,1.172-3.289,1.406-3.742\r\n\t\tc-0.188,0.219-0.375,0.484-0.562,0.719c-0.062-0.062-0.234-0.5-0.281-0.609c0.062-0.078,0.031,2.109-0.469,1.438\r\n\t\tc-0.156,0.516-0.531,1.328-0.328,1.602c0.172-0.352,0.359-0.398,0.516-0.555c-0.469,0.523-0.219,0.805-0.906,1.055\r\n\t\tc-0.031-0.031,0.234-0.688,0.312-0.852c-0.109,0.164-0.188,0.195-0.312,0.289c0.141-0.711,0.438-1.352,0.844-1.852\r\n\t\tc-0.062,0.062-0.156,0.109-0.234,0.172c0.188-0.531,1.016-3.344,0.953-3.422c-0.047,0.094-0.094,0.203-0.156,0.297\r\n\t\tc0.016-0.594-0.062-0.703,0.297-1.156c-0.984-0.766-0.453-2.266-1.016-3.062c0.312-0.312,0.125-0.727,0.344-0.898\r\n\t\tc0.156,0.227,0.156-0.102,0.344-0.289c-0.047-0.18-0.281-0.156-0.375-0.031c-0.156-0.32,0.094-0.117-0.156-0.555\r\n\t\tc-0.438,0.57-0.391,0.859-0.969,1.305c0.016-0.336,0.031-0.477-0.031-0.711c-0.125,0.109-0.25,0.211-0.359,0.297\r\n\t\tc-0.047-0.07-0.047-0.133,0.078-0.18c-0.359,0.156-0.469,0.172-0.938,0.422c0-0.086,0.016-0.18,0.031-0.273\r\n\t\tc-0.188,0.188-0.141,0.07-0.281-0.156c0.688-0.414,1.188-1.406,2.031-1.547c0.156,0.32-0.156,0.117,0.125,0.547\r\n\t\tc0.25-0.273,0.281-0.422,0.5-0.586c-0.031-0.102-0.25-0.023-0.391-0.117c0.156-0.164,0.016-0.133,0.172-0.32\r\n\t\tc-0.594,0.133-1.281,0.336-1.625,0.742c-0.062-0.219,0.031-0.18,0-0.352c-0.406,0.484-2.219,1.742-2.312,1.5\r\n\t\tc-0.672,0.844-1.859,0.234-2.5,0.969c0-0.078,0.016-0.164,0.031-0.25c-0.25,0.102-0.688,0.125-0.781,0.234\r\n\t\tc0-0.094,0.031-0.188,0.031-0.289c-0.25,0.352-0.016-0.391-0.062-0.477c-0.125,0.273-0.453,0.367-0.766,0.641\r\n\t\tc-0.031-0.07-0.109-0.336-0.125-0.359c0.375-0.289,0.578-0.117,0.953-0.539c0.031,0.195,0.188,0.492,0.25,0.641\r\n\t\tc0.625-0.664,0.875-0.195,1.672-0.656c0.375-0.508,1.141-1.039,1.734-1.312c-0.062-0.164-0.344-0.148-0.531-0.195\r\n\t\tc0.078-0.125,0.172-0.25,0.281-0.375c-0.156-0.188-0.406,0.18-0.5,0.289c-0.047-0.242,0.297-0.977,0.406-1.227\r\n\t\tc-0.203,0-0.594-0.039-0.75-0.023c0.031-0.055,1.438-1.602,1.281-2.023c-0.188,0.203-0.281,0.227-0.438,0.391\r\n\t\tc-0.203-0.461,0.156-1.016,0.562-1.305c0.125-0.156,0.312-0.148,0.438-0.305c-0.297-0.938,0.281-1.445,1.375-1.961\r\n\t\tc-0.047,0.117-0.156,0.367-0.141,0.438c0.234-0.43,0.547-0.656,0.859-0.93c-0.094,0.219-0.188,0.648-0.141,0.836\r\n\t\tc0.953,0.391,1.469-0.391,1.938-1.273c-0.109,0.078-0.266-0.086-0.609-0.031c0.156-0.227,0.188-0.516,0.312-0.727\r\n\t\tc-0.281,0.305-0.25-0.531-0.531-0.273c0-0.297,0.516-1.695,0.594-1.25c0.359-0.312,0.219-0.492,0.062-0.766\r\n\t\tc0.406-0.43,0.594-0.008,0.828-0.188c-0.125,0.109-0.125,0.234-0.016,0.367c0.578-0.562,0.453,0.016,0.781-0.258\r\n\t\tc0.266,0.719-0.922,0.891-0.203,1.891c0.188-0.25,0.047-0.5,0.234-0.633c0.062,0.055,0.141,0.109,0.219,0.172\r\n\t\tc-0.156,0.062-0.172,0.188-0.031,0.328c0.25-0.234,0.594-1.406,0.609-1.57c-0.109-0.141-0.203-0.133-0.297,0.016\r\n\t\tc-0.172-0.531,1.062-2.586,1.562-2.898c0.328,0.891,0.719,0.469,0.875,0.703c0.719-0.922,2.062-0.523,2.25-0.688\r\n\t\tc0.031,0.188-0.312,0.414,0.188,0.008c0.047,0.102,0.469,0.945,0.812,0.414c0.188,0.562,0,0.555-0.344,1\r\n\t\tc0.156-0.008,0.453-0.086,0.5,0.008c-0.281,0.234-0.219,0.227-0.266,0.531c0.344-0.289,0.078,0.336,0.359,0.047\r\n\t\tc-0.047,0.289,0.156,1.352-0.062,1.523c0.5,0.18,1.031,1.945,0.953,2.906c0.141-0.062,0.297-0.117,0.453-0.188\r\n\t\tc0.047,0.195,0.406,1.977,0.312,2.227c-0.062,0.195-0.312,2.578-0.25,2.625c0.281-0.289,0.344-0.555,0.438-0.969\r\n\t\tc0.281,0.352-0.125,0.75,0.5,0.109c-0.016,0.094-0.031,0.18-0.031,0.266c0.188-0.195,0.422-0.312,0.609-0.516\r\n\t\tc0.047,0.109-0.141,0.594-0.234,0.734c0.562-0.125,0.984-0.133,1.219,0.305c0.219-0.133,0.438-0.273,0.656-0.414\r\n\t\tc0.562,0.977-0.25,0.484-0.625,0.992c0.469,0.562,1.562-0.359,2.094-0.672c-0.188,0.656-1.094,3.062-0.75,3.547\r\n\t\tc0.359-0.469,0.719-0.508,1.078-0.938c-0.203,0.266-0.406,0.664-0.766,1.094c0.188,0.289,0.625,0.008,0.75-0.133\r\n\t\tc0.656,0.75,0.062,3.219,1,3.938c0.031-0.125,0.062-0.25,0.078-0.375c0.359,0.375,0.578,1.031,0.141,1.5\r\n\t\tc-0.375-0.344-1.344,0.031-0.844,0.531c-0.172,0.125,0.453,0.5,0.625,0.625c-0.031-0.031,0.719,0.594,1.094,0.219\r\n\t\tc0.531,0.531,0,1.219-0.406,1.594c0.094,0.125,0.188,0.156,0.281,0.125c-0.156,0.297-0.281,0.594-0.344,0.938\r\n\t\tc0.609-0.344,0.641-1.109,1.297-1.422c0.078,0.078,1.422,0.141,1.609-0.016c-0.062-0.125-0.031-0.219-0.109-0.344\r\n\t\tc-0.406,0.406-0.781-0.141-1-0.281c-0.109,0.141-0.203,0.281-0.297,0.406c-0.031-0.047,0.031-0.609-0.219-0.219\r\n\t\tc0.312-0.531,0.922-0.844,1.25-0.391c0.578-0.734,0.469,1.453,0.422,1.766c0.141-0.031,0.234-0.094,0.297-0.219\r\n\t\tc-0.156,0.312-0.094,0.344-0.344,0.578c0.062,0.047,0.438,0.141,0.531,0.047c-0.016,0.469,0.219,1.219,0.266,1.523\r\n\t\tc0.703-0.18,1.219,0.625,1.672,1c0.219-0.5,0.562-0.688,0.797-1c-0.047,0.406,0.062,0.562-0.078,1\r\n\t\tc0.281,0.219,0.156,0.062,0.438-0.062c-0.062,0.188-0.188,0.281-0.375,0.312c0.062,0.094,0.156,0.094,0.25,0.031\r\n\t\tc-0.531,0.781-0.406,1.156-0.734,1.906c0.25-0.031,0.297,0.188,0.453-0.062c-0.594-0.469,0.5-1.031,0.719-1.281\r\n\t\tc0.234,0.031,1.344,0.219,1.734-0.281c-0.156-0.125-0.359-0.125-0.547-0.219c0.219-0.344,0.562-0.594,0.875-0.75\r\n\t\tc0.094,0.094-0.031,0.312,0.25,0.406c0.25-0.344,0.375-0.281,0.594-0.562c-0.281-0.406-0.828-0.156-0.75-1.211\r\n\t\tc-0.141,0.172-0.266,0.328-0.391,0.5c-0.094-0.172,0.109-0.312-0.25-0.188c0.812-0.562,0.172-0.875,0.641-1.359\r\n\t\tc0.219-0.266,0.906-0.609,1.266-1.047c0.047,0.156,0.094,0.344,0.141,0.5c0.656-1.031,1.625-2.422,2.5-3.344\r\n\t\tc0.016,0.094,0.031,0.188,0.062,0.25c0.516-0.391,0.281-0.438,0.719-0.016c0.156-0.094,0.312-0.156,0.469-0.25\r\n\t\tc0.391,0.359,0.531,0.703,0.438,1.172c0.328,0.172,0.453,0.375,0.844,0.656c-0.531,0.281-1.188,1-1.781,0.656\r\n\t\tc-0.734,0.016-1.531-1.156-1.453,0.078c-0.453,0.047-0.922,0.203-1.047,0.391c0.281,0.219,0.469,2.406,0.344,2.742\r\n\t\tc-0.047-0.094,0.141,0.125,0.156,0.156c-0.438,0.312-0.312,0-0.516-0.219c-0.109,0.094-0.25,0.188-0.375,0.281\r\n\t\tc0.109,0.031,0.234,0.062,0.359,0.094c-0.266,0.406-0.906,0.25-1.016,0.469c-0.109,0.312,0.234,0.719,0.109,0.875\r\n\t\tc0.5,0.406-0.25,1.531-0.625,2c0.625,0.438,1.188-1.094,2.141-1c-0.125,0.219-0.609,1.938-1.25,1.5\r\n\t\tc-0.484,0.719-0.172,1.031-0.578,1.969c0.297,0.219,0.062,0.062,0.391,0.281c1.172-0.812,3.547-1.562,3.422-3.281\r\n\t\tc0.656,0.531,1.125,0.938,1.125,1.625c-0.078-0.062-0.375,0.344,0.297,0.625c-0.297,0.219-0.391,0.562-0.953,0.688\r\n\t\tc0.094,0.094,0.219,0.156,0.312,0.219c-0.312,0.375-0.688,0.594-0.938,1.125c-0.172,0.375,0.219,0.562-0.266,1.219\r\n\t\tc-0.141-0.188-1.938-0.312-2.203,0.188c-0.031-0.438-0.25-0.5-0.031-1.031c-0.078-0.062-0.344-0.125-0.484-0.156\r\n\t\tc0.094,0.062,0.219,1.031,0.125,1.125c-0.547-0.438-0.5-0.75-1.156-1.281c-0.219,0.281-0.547,0.812-0.828,1.188\r\n\t\tc-0.234-0.125-0.938-1.594-0.969-1.719c-0.234,0.281-0.234,0.312-0.359,0.531c-0.141-0.156-0.297-0.25-0.484-0.375\r\n\t\tc-0.125,0.188,1.188,1.406,1.531,1.562c-0.422,0.625-1.312,0.406-1.594,0.844c0-0.25-0.281-0.719-0.219-0.781\r\n\t\tc-0.344-0.188-0.953,0.281-1.188,0.719c-0.062-0.125-0.125-0.25-0.203-0.375c-0.203,0.469-0.562,1.656-1.109,0.594\r\n\t\tc-0.203,0.25-0.203,0.438-0.531,0.156c0.109,0.062,0.125,0.156,0.094,0.281c-0.531-0.438-2.031,0.844-2.656,0.781\r\n\t\tc-0.266,0.438-0.625,0.625-1.172,1.125c0.234,0.188-0.172,0.906-0.25,1.219c1.172,0.344,0.391,2-0.125,2.781\r\n\t\tc2.156-0.094,1.031,3.344,1.797,3.844c0.406,1.469,3,2.781,1.156,4.25c-0.531,0.406-0.953,1.938-0.812,2.625\r\n\t\tc0.281,1.281,1.719,1.531,1.875,0.312c0.047-0.375,0.844-2.812,1.312-2.781c0.75,0.062,2.031-0.969,2.5-0.688\r\n\t\tc0.062-0.156,0.094-0.312,0.141-0.469c-0.047,0.281-0.125,0.344-0.266,0.188c0.594-0.781,1.219-2.312,0.922-3.281\r\n\t\tc-0.484-1.594,0.922-0.844,1.578-1.656c-0.5-0.25,0.219-0.938,0.469-1.062c-0.609-0.375,0.625-0.938,0.719-0.906\r\n\t\tc0.578-0.781,0.094,9.641,1.156,10.5c0.984,0.672,2.688,13.031,1.828,13.031c0.109,0,0.203,0,0.297,0\r\n\t\tc-0.375,0,0.078-9.969,0.641-9.672c-0.047,0.188-0.156-5.141-0.312-5.297c-0.391,0.562,0.297-2.125,0.578-1.922\r\n\t\tc-0.609,0.406-1.516-0.422-1.562,0.359c0.344,0.156,0.641,0.625,0.344,1.078c0.172,0,0.344-0.578,0.5-0.391\r\n\t\tc-0.156,0.203-0.094,0.297-0.125,0.547c0.484-0.188,0.812-0.328,1.125-0.156c0.312-0.547,1.672-1.922,2.109-1.625\r\n\t\tc-0.781,1.156-0.266,1.922-0.547,2.891c-0.188-0.109-0.312-0.016-0.5,0.047c0.438,0.25,0.625,1.484-0.094,1.828\r\n\t\tc0.219,0.156,0.531,0.781,0.312,1.125c-0.281-0.312-0.031,0.031-0.688-0.406c0.062-0.062-0.156,0.562-0.188,0.625\r\n\t\tc0.094,0.125,0.188,0.125,0.312,0c-0.406,0.75,0.688,2,0.422,2.719c0.109,0.125,0.234-0.094,0.391-0.188\r\n\t\tc-0.125,0.281,0.062,0.219,0.25,0.188c-0.594,1.281,0.781,0.469,0.484,1.406c-0.578-0.344-1.656,0.312-2.531-0.156\r\n\t\tc-0.031,1.281,3.141-0.438,2.547,1.656c0.188,0.125,0.203-0.031,0.375-0.156C206.406,234.938,206.891,234.312,206.453,235.156z\r\n\t\t M197.875,239.125c-0.391,0.844-0.016,1.031,0.75,1.406c-0.281-0.156-0.016,0.188-0.016,0.344\r\n\t\tc-0.156,0.031-0.312,0.062-0.484,0.094c0.141-0.312-0.078-0.188,0.203-0.438C197.75,240.25,196.828,239.625,197.875,239.125z\r\n\t\t M189.781,242.719c-0.266,0.562-0.953-0.031-1.25-0.219C188.703,242.031,189.516,242.594,189.781,242.719z M176,274.844\r\n\t\tc0,0.188,0,0.344,0,0.562C176,275.219,176,274.688,176,274.844z M185.406,279.125c-0.141-0.594-0.734,1.688-0.141-0.594\r\n\t\tC185.484,278.625,186,279.281,185.406,279.125z M184.844,269.25c-0.672-0.062-0.875,0-0.953-0.781\r\n\t\tc0.422,0.188,0.594,0.156,0.922,0.375C184.75,269.125,184.875,269,184.844,269.25z M177.609,262.531\r\n\t\tc1.031-0.688-0.906-2.438-0.938-3.438c-0.094-1.844-2.062-1.125-2.562-1.812c0.656-0.562,1.781-0.812,2.125,0.406\r\n\t\tc0.141,0,0.219-0.094,0.219-0.219c0.969,1.156,1.5,2.406,2.062,3.656c0.094,0.219,0.562,1.219,0.844,1.594\r\n\t\tC180.609,264.344,178.297,262.812,177.609,262.531z M177.797,265.062c-0.531-0.344-0.438-0.281-0.922-0.656\r\n\t\tc-0.172-0.281-0.375-0.656-0.266-0.906C177.109,263.594,178.172,264.406,177.797,265.062z M175.469,258.281\r\n\t\tc-0.281,0.219-0.219,0.469-0.656,0.25c0.078-0.25,0.281-0.375,0.375-0.688C175.266,258,175.359,258.125,175.469,258.281z\r\n\t\t M178.484,257.406c0.203,0.062,0.734-0.25,0.406,0.5C178.75,257.719,178.625,257.562,178.484,257.406z M180.328,266.219\r\n\t\tc0.297-0.531,0.25-1.031,0.125-1.75c1.078,0.594,2.594,1.938,2.625,3.281c-0.75-0.438-1.062-0.375-1.719-1.031\r\n\t\tc-0.156,0.469-0.188,0.125-0.422,0.438c0.016,0-0.828-0.938-1.125-1.094c-0.469-0.344-0.828-0.375-0.578-0.938\r\n\t\tC179.797,265.438,180.188,265.688,180.328,266.219z M173.828,321.75c-0.156-0.125-0.172-0.062-0.094,0.125\r\n\t\tc-0.094-0.094-0.125-0.062-0.078,0.031c-0.484-0.188-0.281-0.812-0.406-1.406c0.031,0.031,0.266,0.406,0.203,0.125\r\n\t\tc0.25,0.156,0.203,0.125,0.25,0.469C173.422,320.969,173.734,321.562,173.828,321.75z M166.781,192.102\r\n\t\tc-0.141-0.5,0.016-0.688,0.266-1.141c0.188,0.172,0.188,0.172,0.266,0.234c-0.094-0.125,0.016-0.281,0.156-0.297\r\n\t\tc0.078,0.078-0.016,0.234,0.047,0.406c0.25-0.281,0,0.078,0.234-0.172c-0.016,0.25-0.047,0.719-0.297,0.969\r\n\t\tC167.344,191.945,167.016,191.836,166.781,192.102z M167.953,190.883c0.156-0.133,0.312-0.273,0.469-0.422\r\n\t\tc0.109,0.156,0.062,0.289-0.125,0.391c0.031,0.125-0.094,0.219-0.188,0.312C168.125,190.664,168.094,191.227,167.953,190.883z\r\n\t\t M168.438,205.938c0.125-0.5,0.25-1.281,0.234-1.438c0.266-0.406,0.312-0.812,0.594-1.188c0.188,0.125,0.281,0.281,0.422,0.531\r\n\t\tc-0.734,0.562-0.625,1.312-0.938,1.781C168.562,205.281,168.578,205.781,168.438,205.938z M171.297,201.156\r\n\t\tc0.031,0.031-0.75,1.938-0.906,2.125c-0.141-0.312,0.016-0.281,0.125-0.625c-0.156-0.062,0.25-0.938,0.344-1.094\r\n\t\tc-0.141-0.312-0.031-0.406,0.25-0.906c-0.047,0.375,0,0.594-0.047,0.938C171.203,201.469,171.266,201.344,171.297,201.156z\r\n\t\t M172.094,198.914c-0.234,0.328-0.203,0.531-0.609,0.484c0.328-0.422,0.578-0.859,0.719-1.359\r\n\t\tC172.625,198.57,171.953,198.664,172.094,198.914z M201.766,202.406c-0.094,0.281,0,0.469,0,0.812\r\n\t\tc-0.109,0.188-0.234,0.188-0.391-0.094C201.484,202.844,201.641,202.656,201.766,202.406z M200.406,214.781\r\n\t\tc-0.141,0.188-0.172,0.031-0.203-0.125C200.594,214.375,200.266,214.719,200.406,214.781z M195.984,211.781\r\n\t\tc0.156-0.219,0.312-0.438,0.438-0.656c-0.312-0.156-0.312-0.062-0.562-0.219c0.25-0.688,0.641-0.031,1.031-0.438\r\n\t\tc0.328-0.594,0.578-1.188,1.188-1.75c0.188,0.156-0.094,0.219,0.188,0.344c-0.422,0.125-0.219,0.125-0.469,0.469\r\n\t\tc1.031-0.031,0.734,1.719,0.312,2.438c0.094,0.094,1.094-0.281,0.562,0.406c-0.094-0.062-0.281,0.188-0.531,0.188\r\n\t\tc0.062-0.156-0.344-0.531-0.453-0.688c-0.297-0.406,0.297-0.625,0.453-0.875C197.109,210.688,197.078,212.031,195.984,211.781z\r\n\t\t M197.578,212.969c-0.406,0.375-1.219,0.438-1.719,0.156C196.016,212.719,197.031,213.062,197.578,212.969z M198.281,208.844\r\n\t\tc0.188-0.25-0.109-0.375,0.266-0.188C198.547,208.938,198.516,209.062,198.281,208.844z M198.859,214.875\r\n\t\tc-0.25,0.344-0.297,0.562-0.625,0.75C197.797,215.281,198.672,214.969,198.859,214.875z M194.609,221.781\r\n\t\tc0.5,0.406-0.219,0.625-0.375,0.906C193.859,222.5,193.984,222.188,194.609,221.781z M191.203,225.906\r\n\t\tc-0.219,0.25-0.5-0.344-0.562-0.625C191.141,225.219,190.984,225.562,191.203,225.906z M207.672,220.062\r\n\t\tc0.297-0.5,0.984-0.562,0.625,0C208.047,220.062,207.922,220.281,207.672,220.062z M213.016,215.906\r\n\t\tc-0.516,0.312-0.406,0.094-0.719,0.688c-0.438-0.219,0.125-0.281-0.391-0.594c-0.156,0.312-0.344,0.281-0.609,0.75\r\n\t\tc-0.047-0.094-0.094-0.188-0.125-0.281c-0.188,0.406,0.094,0.312-0.125,0.719c-0.25-0.406-0.219-0.062-0.375-0.625\r\n\t\tc-0.25,0.438-0.156,1.438-0.781,1.031c0.125-0.188-0.188-0.438-0.375-0.594c0.125-0.25,0.156-0.062,0.375-0.125\r\n\t\tc-0.125-0.125-0.266-0.219-0.422-0.312c0.109-0.094,0.234-0.219,0.359-0.312c-0.531-0.188,0.078-0.031-0.562-0.344\r\n\t\tc0.141-0.219,0.359-0.125,0.594-0.188c-0.375-0.344-1.172-0.5-0.578-1.5c-0.375,0.094,0.078-0.031-0.328-0.219\r\n\t\tc-0.094,0.281-0.031,0.312-0.234,0.625c-0.297-0.125,0.219-0.438-0.047-0.625c-0.375,0.562-0.031,0.5-0.297,0.969\r\n\t\tc-0.25-0.188-0.047-0.312-0.359-0.406c-0.422,0.531,0.25,2.312,0.375,3.062c0.031-0.156,0.094-0.312,0.125-0.469\r\n\t\tc0.078,0.031,0.156,0.094,0.219,0.125c-0.031,0.219-0.344,0.562-0.125,0.688c-0.078,0.094-0.172,0.156-0.25,0.219\r\n\t\tc-0.062-0.062-0.094-0.188-0.125-0.281c-0.312,0.375,0,0.812-0.594,0.438c-0.062,0.125,0.125,0.688,0.031,0.969\r\n\t\tc-0.078-0.062-0.406-1.906-0.828-1.094c-0.141-0.25-0.234-0.5-0.328-0.781c-0.344,0.469-0.344-0.188-0.734-0.469\r\n\t\tc-0.656,1.375,1.25,2.438,0.641,3.469c-0.656-0.406-0.531-0.719-1.312-1.406c-0.641-0.562-1.438-0.531-1.938-1.25\r\n\t\tc0.156-0.156,0.438-0.094,0.688-0.125c-0.109-0.062-0.156-0.312-0.156-0.469c-0.062,0.312-0.188,0.375-0.375,0.125\r\n\t\tc0.297-0.5,0.125-0.156-0.125-0.281c0.375-0.688,0-0.75,0.438-1.438c-0.25-0.219-0.5-0.25-0.625-0.25\r\n\t\tc0.047-0.156,0.125-0.156,0.219-0.062c-0.031-0.188-0.094-0.406-0.062-0.594c-0.031,0.125-0.031,0.219-0.062,0.344\r\n\t\tc-0.406-0.219,0.125-0.562-0.188-0.688c-0.156,0.531-1,0.844-0.656,0.344c-0.656,0.344-1,0.094-1.484-0.219\r\n\t\tc0.172-0.281,0.609-1.188,0.953-1.75c0.375,0.625,1.031,0.75,1.344,0.906c0.141-0.125,0.172-0.094,0.375-0.094\r\n\t\tc-0.109,0.25,0.812,0.438,1.062,0.688c0.25-0.688,0.281-1.312,0.234-1.969c0.594,0.406,0.938-0.469,1.562-0.125\r\n\t\tc-0.016-0.781,0.172-0.688,0.453-0.688c0.094-0.094,0.188-0.125,0.281-0.219c-0.188-0.156,0.375-2.375,0.781-2.562\r\n\t\tc-0.375-0.25-0.812,0.062-1.344,0.062c0.266-0.375-0.031-0.531,0.547-1c0.031,0.094,0.078,0.188,0.109,0.281\r\n\t\tc0.188-0.344-0.391-1.281,0.453-0.875c0.172-0.312-0.312-0.125-0.141-0.469c-0.188,0.062-0.359,0.156-0.562,0.219\r\n\t\tc0.328-0.562,0.125-0.031,0.375-0.375c-0.312-0.188,0-0.344-0.297-0.562c-0.281,0.25-0.031-0.156-0.406,0.312\r\n\t\tc0.125-0.281,0.234-0.625,0.391-0.938c-0.312-0.188-0.281,0.094-0.406-0.062c0.094-0.188,0.188-0.406,0.297-0.594\r\n\t\tc-0.266-0.031-0.531-0.031-0.703,0.125c0.141,0.031,0.266,0.062,0.391,0.062c-0.578,1.031-1.109-0.312-1.359-0.75\r\n\t\tc-0.203,0.375-0.406,0.875-0.531,1.406c-0.109-0.062-0.141-1.562-0.219-1.938c0.047,0.281,0.094,0.906-0.094,1.125\r\n\t\tc-0.578-0.438-1.453-1.25-1.531-1.938c-0.031,0.125-0.062,0.25-0.094,0.375c-0.406-0.438-0.25-0.875-0.344-1.5\r\n\t\tc-0.156,0.188-0.344,0.125-0.562-0.031c0.062-0.344,0.078-0.719,0.484-0.969c-0.141-0.773-0.172-3.227,1-2.555\r\n\t\tc0.234-0.156,1.422-0.75,1.422-0.719c0.688-0.031,2.359,0.656,2.281,1.469c0.469,0.031,0.906,0.266,1.188,0.891\r\n\t\tc-0.156,0.109-0.281,0.266-0.406,0.383c0.812-0.164,2.656-0.148,2.312,0.156c0.078,0.219,0.016,1.188,0.016,1.188\r\n\t\tc-0.828,0.875-2.594,0.25-2.609-1.031c-0.469,0.562-0.938,1.156-1.344,1.594c0.656,0.656,0.438-0.031,0.562-0.156\r\n\t\tc0.344-0.156,0.5-0.219,0.875-0.219c0,0.344-0.125,0.312-0.188,0.469c0.156,0,0.312-0.031,0.453-0.031\r\n\t\tc-0.141,0.188-0.344,0.688-0.547,0.938c0.25-0.25,0.469-0.375,0.75-0.812c0.312,0.219,0.344,0.531,0.594,0.781\r\n\t\tc0.25-0.375-0.125-0.562-0.25-0.844c-0.188-0.469,1.156-0.531,0.969,0.156c-0.25,0.844,1.031,0.938,1.422,1.156\r\n\t\tc-0.234,0.375-0.484,0.625-0.578,0.812c0.125,0,0.25,0,0.406,0.031c-0.422,0.656-0.219,0.562-0.875,0.594\r\n\t\tc-0.062,0.312-0.062,0.5-0.062,0.75c0.188-0.125,0.375-0.281,0.562-0.406c0.109,0.062-0.062,0.531-0.156,0.688\r\n\t\tc0.078,0.094,0.141,0.062,0.156-0.094c0,0.156-0.109,0.344,0.031,0.375c0-0.156,0.109-0.531,0.172-0.656\r\n\t\tc0.016,0.031,0.312,0.094,0.5,0.156c-0.047,0.219-0.109,0.438-0.156,0.656c0.109,0.062,0.469,0.156,0.203,0.531\r\n\t\tc0.172,0.094,0.219-0.062,0.406,0.062c-0.297,0.469-0.438,0-0.75,0.438c0.188,0.219,0.531-0.031,0.75-0.062\r\n\t\tc-0.062,0.188-0.281,0.25-0.453,0.281c0.609-0.062,0.891,0.219,0.953,0.812c-0.344-0.188-0.391-0.031-0.719-0.062\r\n\t\tc0.594,0.375-0.141,0.281,0.344,0.562c0.188-0.062,0.25-0.375,0.484-0.281c0.094,0.781-0.422,1.188-0.953,0.781\r\n\t\tc0.062,0.125,0.031,0.25-0.062,0.312c0.531,0.375,0.219,0.312,0.453,0.875c-0.625-0.375-0.391-0.219-0.641-0.594\r\n\t\tc-0.125,0.188-0.094,0.438-0.031,0.75c-1.594-0.156-0.062,0.562-0.438,1.094c0.094,0.094,0.406-0.031-0.062,0.312\r\n\t\tc0.266,0.156,0.062-0.156,0.344,0c-0.375,0.438,0,0.125-0.188,0.469c0.25,0.156,0.094-0.219,0.312,0\r\n\t\tc-0.141,0.156-0.312,0.312-0.469,0.5c0.25,0.125,0.281-0.094,0.516-0.094c-0.172,0.438,0.188-0.094,0.266-0.219\r\n\t\tc0.188,0.125-0.062,0.344-0.125,0.5c0.125,0.062,0.344-0.312,0.625-0.375c-0.109,0.281-0.156,0.375-0.422,0.688\r\n\t\tc0.281,0.125,0.141,0.219,0.391-0.125c-0.062,0.469,0.109,0.438-0.219,0.812c0.141,0.031,0.156,0.094,0.047,0.188\r\n\t\tc0,0.031,0.578,0.5,0.453,0.469c0.078-0.406,0.234-0.5,0.469-0.281c-0.156,0.219-0.375,0.406-0.562,0.625\r\n\t\tc0.188,0.094,0.375-0.156,0.5-0.281c0.297,0.125,0.422,0.094,0.844,0.312C212.703,215.625,212.672,215.812,213.016,215.906z\r\n\t\t M204.078,207.094c0.297-0.5,0.375-0.062,0.406,0.25C204.359,207.281,204.203,207.188,204.078,207.094z M205.922,209.344\r\n\t\tc-0.125,0.281-0.688,0.438-0.953,0.5C204.641,208.5,205.75,209.25,205.922,209.344z M205.297,205.969\r\n\t\tc-0.344-0.156-0.562-0.156-0.578-0.625c0.516,0.344,0.516,0,0.984,0.312C205.562,205.75,205.422,205.875,205.297,205.969z\r\n\t\t M206.703,209.469c0.109-0.125,0.203-0.281,0.312-0.406C207.141,209.188,207.047,209.781,206.703,209.469z M206.516,207.188\r\n\t\tc0.125,0.031,0.25,0.062,0.391,0.062C206.641,207.594,206.641,207.281,206.516,207.188z M211.016,197.18\r\n\t\tc0.156-0.141,0.453-0.047,0.656,0.078C211.172,197.617,211.281,197.273,211.016,197.18z M215.312,195.508\r\n\t\tc-0.297,0.375-0.047,0.5-1.219-0.266c-0.625,0.672-0.453,0.547-1.594,0.047c0.578,1,0.844,1.781-0.516,1.594\r\n\t\tc0.031-0.125,0.062-0.234,0.094-0.344c-0.375,0.188-0.906,0.406-1.234,0.125c0.516-0.641,0.578-0.578,0.141-0.875\r\n\t\tc0.094-0.312-0.031-0.375,0.219-0.641c-0.141-0.109-0.297,0.484-0.688,0.391c-0.328-0.062-0.375-0.219-0.812-0.469\r\n\t\tc0.062-0.219,0.188-0.312,0.391-0.312c-0.172-0.094-0.422-0.188-0.609-0.266c-0.156,0.188-0.031,0.297-0.125,0.484\r\n\t\tc-0.312-0.141-0.375-0.078-0.594,0.188c-0.281-0.156-0.188-1.562-0.656-0.906c0.031-0.188,0-0.344,0.031-0.562\r\n\t\tc-0.656,0.172-0.625,0.219-0.781-0.406c-0.172,0.219-0.141,0.281-0.375,0.125c0.219-0.266,0.188-0.469,0.344-0.75\r\n\t\tc0.312,0.219,0.656-0.219,0.906,0.094c0.188-0.281,0.5,0.156,0.688,0.344c0.344-0.375,0.125-0.891,0.422-1.125\r\n\t\tc1.016,0.828,0.859,1.438,1.453,2.281c0.328-0.375,0.344-0.125,0.75-0.422c-0.141-0.141-0.344-0.141-0.531-0.203\r\n\t\tc0.094-0.062,0.125-0.172,0.125-0.312c-0.094,0.078-0.188,0.125-0.281,0.188c0-0.344,0.344-0.5,0.062-0.75\r\n\t\tc0.281-0.172,0.438-0.156,0.656-0.469c-0.094-0.109-1.547-0.094-1.938-0.5c0.359-0.484,0.406-0.375,0.797-0.781\r\n\t\tc0.359,0.328,0.516,0.156,0.766,0.391c0.094-0.047,0.125-0.094,0.125-0.141c0.469,0.25,1.156,0.906,1.625,1.422\r\n\t\tc0.078-0.078,0.156-0.172,0.219-0.25c-0.312-0.266-0.609-0.719-0.953-0.891c-0.172,0.094,0.812-0.219,0.766-0.219\r\n\t\tc-0.219-0.172-0.188,0.125-0.375,0.094c0.078-0.344,0.078-0.664,0.188-1.039c-0.5,0.539-0.078,0.695-0.719,0.852\r\n\t\tc-0.438,0.312-0.688-0.547-1-0.141c0-0.109,0-0.234,0.031-0.359c-0.203,0.203-1.172,0.469-0.5-0.211\r\n\t\tc-0.625,0.523-1.219,0.109-1.844,0.617c-0.062-0.25-0.156-0.414-0.156-0.742c-0.375,0.461-0.469,0.273-0.984-0.156\r\n\t\tc0.375-0.422,0.828-1.641,1.672-0.906c0.344-0.391-0.844-0.664-1.125-0.898c0.062-0.086,0.094-0.195,0.141-0.305\r\n\t\tc0.266,0.234,0.438,0.578,0.672,0.32c-0.547-0.484-0.531-0.656-0.516-1.211c0.109,0.141,0.375-0.398,0.422-0.492\r\n\t\tc0.156,0.469,0.25,0.633,0.656,0.93c0-0.344-0.766-1.102-0.594-1.281c0.312,0.211,1.188,0.156,1.562-0.195\r\n\t\tc-0.281-0.141-0.359-0.469-0.422-0.555c-0.172,0.164-0.234,0.109-0.438,0.062c0.047-0.102,0.141-0.414,0.203-0.648\r\n\t\tc0.797,0.867,1.062,0.562,0.328-0.359c0.016,0,0.453-0.023,0.453-0.023c-0.109,0.109,1.156,1.438,0.812,2.164\r\n\t\tc-0.281,0.586-0.344,2.117,1.141,1.594c-0.391,0.219,0.141,0.305,0.203,0.375c-0.094,0.289-0.219,0.562-0.594,1.133\r\n\t\tc0.281-0.344,0.688-0.188,1.016-0.648c0.328,0.352,0.953,0.523,1.375,0.812c0.078,0.117-0.078,0.578,0.109,0.688\r\n\t\tc-0.5,0.688,0.062,1.656,0.531,1.188c-0.812-0.562-0.703-1.617,0.375-1.062c0.438,0.188,1.75,1.125,2.094,0.797\r\n\t\tc-0.391-0.188-0.688-0.453-0.875-0.609c0.5,0.406,0.984,0.109,1.531,0.5c-0.125-0.156-0.281-0.344-0.438-0.5\r\n\t\tc0.234-0.25,0.375,0.062,0.656,0.062c-1.312-0.977-2.594-0.906-4-1.852c0.094-0.055,0.188-0.117,0.281-0.188\r\n\t\tc-0.234-0.148-0.531,0.047-0.812,0.219c-0.188,0.148-0.438-0.375-0.688-0.523c0.125-0.117,0.25-0.203,0.375-0.297\r\n\t\tc-0.438-0.477-1.438-0.781-2.047-1.375c0.297,0.008,0.766,0.109,0.922-0.109c-0.156-0.148-0.469-0.125-0.766-0.195\r\n\t\tc0.047-0.109,0.094-0.211,0.141-0.32c0.25,0.32,0.906,0.211,1.281,0.422c-0.344-0.375-0.734-0.539-1.141-0.719\r\n\t\tc0.203,0.039,0.391,0.039,0.594,0.102c-1.312-0.938,1.984,0.125,1.531,0.562c0.109,0.109,0.484,0.75,0.547,1.031\r\n\t\tc0.125-0.164,0.094-0.219,0.188-0.477c0.109,0.016,0.219,0.031,0.344,0.062c-0.094,0.133-0.156,0.273-0.219,0.414\r\n\t\tc0.625-0.633,0.5-0.688-0.469-1.148c0.109-0.18,0.219-0.352,0.328-0.531c0.203,0.344,0.422,0.328,0.641,0.695\r\n\t\tc0.125-0.188,0.203-0.414,0.281-0.609c0.125,0.086,0.797,1.086,0.719,1.133c0.297,0.32-0.266,1.469,0.406,0.68\r\n\t\tc-0.031,0.25-0.062,0.469-0.078,0.711c0.297-0.359,0.422-0.766,0.578-1.133c0.25,0.18,0.812,1.289,0.594,1.562\r\n\t\tc0.125,0.188,0.094-0.125,0.266,0.008c-0.266-0.57-0.391-0.586,0.078-0.883c0.031,0.016,0.125,0.828,0.625,0.047\r\n\t\tc0.391,0.375,0.969,0.742,0.609,1.555c0.266-0.477,0.266-0.477,0.094-1.086c0.984,0.188,2.016,0.523,2.016,1.539\r\n\t\tc0.938-1.25,2.812,0.719,3.547,1.172c-0.766,0.438-1.203,0.109-1.953,0.25c1.281,0.422,1.969-0.062,2.875,0.5\r\n\t\tc0.656,0.312,0.5,1.297,1.281,1.875c-0.422,0.75-2.594,0.266-2.906-0.125c-0.141,0.094-0.141,0.156,0,0.188\r\n\t\tc-0.234-0.047-1-0.156-1.062-0.078c0.484,0.234,1.094,0.375,1.625,0.422c-0.438,0.469-1.688-0.031-1.781,0.188\r\n\t\tc-0.469-0.234-2.188,0.031-2.375-0.156c0.125-0.172-0.062-0.219,0.172-0.438c-0.422,0.375-0.453,0.281-1.125,0.406\r\n\t\tc0.172-0.297-0.234-0.344-0.359-0.438c-0.094,0.141,0.094,0.438,0.156,0.484c-0.375-0.141-0.672-0.078-1.031-0.266\r\n\t\tc-0.188,0.516-0.094,0.266-0.656,0.312c0.219-0.5-0.344-0.375-0.562-0.375c-0.062-0.188-0.125-0.344-0.188-0.516\r\n\t\tc-0.109,0.203-0.156,0.297-0.344,0.125c0.031-0.156,0.062-0.328,0.094-0.484c-0.188,0.125-0.234,0.078-0.156-0.109\r\n\t\tc-0.078,0.078-0.141,0.156-0.219,0.234c-0.094-0.125-0.188-0.25-0.281-0.375c-0.094,0.062-0.188,0.125-0.281,0.188\r\n\t\tc0.938,0.938,1.594,0.891,0.969,1.781c-0.188-0.391-0.516-0.578-0.062-0.969c-0.125,0.031-0.25,0.078-0.375,0.125\r\n\t\tc0.141-0.188-0.375-0.656-0.531-0.75c0.406,0.812,0.156,0.391-0.047,0.75c-0.016,0.047-0.719-0.891-0.891-0.984\r\n\t\tc-0.156,0.266,0.188,0.375,0.375,0.609c-0.406,0.094-0.422-0.031-0.703,0.312c0.047,0.031,0.922,0.125,0.953,0.062\r\n\t\tc0.375,0.281,0.531,0.594,1,0.859c-0.406,0.484-0.375,0.516-0.938,0.109c-0.219,0.188-0.016,0.375-0.125,0.531\r\n\t\tC215.703,195.789,215.5,195.633,215.312,195.508z M207.531,191.602c0.359-0.156,0.438-0.297,0.234-0.422\r\n\t\tc0.203-0.109,0.438-0.172,0.625-0.359C208.5,191.445,208.109,191.898,207.531,191.602z M216.594,197.883\r\n\t\tc-0.172-0.125-0.344,0.203-0.266-0.188C216.672,197.477,216.422,197.758,216.594,197.883z M218.281,229.719\r\n\t\tc0.109-0.156,0.219-0.281,0.016-0.344c-0.156,0.375-0.203,0.281-0.531,0.094c0.094-0.094,0.203-0.156,0.312-0.219\r\n\t\tc-0.156-0.094-0.281-0.156-0.406-0.219c0.375-0.281,0.141-0.062,0.078-0.156c0.141-0.188,0.297-0.312,0.438-0.5\r\n\t\tc-0.547-0.219-1.094,0.469-1.672,0.219c0.156-0.281,0.094,0.094,0.297-0.188c-0.531-0.312-0.266-1.281-0.328-1.469\r\n\t\tc0.094-0.219,0.25-0.188,0.469-0.312c-0.094-0.094-0.219-0.094-0.344,0.031c0.141-0.125,0.125-0.188-0.047-0.219\r\n\t\tc0.125-0.125,0.266-0.25,0.375-0.375c-0.453-0.188-0.484-0.062-0.828,0.125c1.016-1.812,0.312-0.344-0.031-0.562\r\n\t\tc0.188-0.406,0.062-0.312,0.406-0.719c-0.344-0.156-0.266-0.094-0.516,0.094c0.016-0.469,0.109-0.125,0.234-0.406\r\n\t\tc-0.406-0.219-0.062-0.219,0.125-0.531c-0.438-0.188-0.219-0.375-0.281-0.844c0.156,0.062,0.312,0.156,0.438,0.219\r\n\t\tc0.125-0.125,0.062-0.219-0.156-0.281c0.203-0.062,0.656-0.344,0.688-0.375c0.375-0.094-0.281,1.188,0.375-0.156\r\n\t\tc-0.281-0.156-0.719-0.031-1.125,0.125c0.094-0.125,0.609-0.844,0.125-1c0.094-0.219,0.328-0.094,0.391-0.188\r\n\t\tc-0.062-0.156-0.141-0.312-0.203-0.469c0.25,0.094,0.594,0.031,0.719-0.156c-0.219-0.125-0.391-0.188-0.5,0.094\r\n\t\tc-0.156-0.25-0.125-0.219-0.469-0.25c0.266-0.625,0.156-0.062,0.469-0.312c-0.406-0.219-0.25-0.25-0.438-0.594\r\n\t\tc0.141,0,0.281,0.031,0.438,0.031c-0.188-0.094,0.438-0.531,0.516-0.625c-0.406-0.219,0.016-0.562-0.203-0.688\r\n\t\tc0.469-0.062,0.656-0.281,1.188-0.25c-0.484-0.25-0.641,0.031-0.969-0.156c0.359-0.5,0.969-0.438,1.344,0\r\n\t\tc-0.109-0.25-0.312-0.438-0.219-0.688c0.406,0.219,0.625,0.562,1.188,0.844c0.031-0.156,0.094-0.344,0.125-0.5\r\n\t\tc-0.438,0.031-1.656-0.156-1.25-0.656c0.5,0.219,0.641,0.188,1.094,0.281c0.781,0.219,0.25-1.125,1-0.844\r\n\t\tc-0.172,0.156-0.219,0.344-0.156,0.531c0.344-0.312,0.406-0.531,0.594-0.812c-0.141-0.094-0.234-0.031-0.406-0.031\r\n\t\tc0.359-0.562,0.422-0.562,0.844-1c-0.75-0.469-0.969-1.344-1.547-1.594c-0.625,1.062,1.031,1.375-0.422,2\r\n\t\tc-0.625,0.25-1.125-0.062-1.312-0.781c0.344,0.438,0.562,0.469,0.688,0.031c-0.406-0.188,0.062,0.062-0.75-0.406\r\n\t\tc0.312-0.469,0.703-0.969,1.375-1.094c-0.125,0.219,0.031,0.219,0.25,0.344c0.062-0.094,0.156-0.156,0.25-0.219\r\n\t\tc-0.906-0.594-0.125-1.438,0.906-0.156c0.344,0.406,0.281,1,0.797,1.25c0.25-0.25-0.297-0.281-0.094-0.594\r\n\t\tc0.203,0.094,0.266,0.188,0.438,0.031c-0.516-0.281-0.297-0.531,0.156-0.281c0.141-0.281-0.688-0.688,0.25-0.219\r\n\t\tc-0.234-0.219-0.266-0.5-0.578-0.688c0.219-0.312,0.469,0.188,0.672-0.188c-0.297-0.031-0.562-0.156-0.859-0.25\r\n\t\tc0.078-0.031,0.156-0.062,0.203-0.094c-0.141-0.094-0.578-0.469-0.516-0.625l-0.453-0.438c-0.422,0.781-1.562,0.062-0.562-0.5\r\n\t\tc-0.234-0.031-0.266-0.125-0.141-0.25c0.219,0.156,0.531-0.281,0.688-0.375c-0.219-0.062-0.281-0.125-0.125-0.281\r\n\t\tc1.312,0.719,0.781-1.531,1.234-2.406c-0.172-0.062-0.359-0.094-0.531-0.125c0.109-0.094,0.703-0.406,0.953-0.531\r\n\t\tc-0.594-0.812-0.75-5-2.484-4.25c0.109-0.188,0.188-0.375,0.266-0.562c-0.5,0.062-0.906-0.062-1.188-0.344\r\n\t\tc-0.125,0.219-0.281,0.156-0.469,0.281c0.25-0.75-0.031-0.938-0.688-0.656c-0.016-0.188,0.078-0.469-0.125-0.625\r\n\t\tc-0.125,0.219-0.469,0.5-0.625,0.719c-0.719-0.406-1.141-1.312-0.438-1.586c-0.344-0.328-0.406-1.234-0.375-1.219\r\n\t\tc0.156-0.016,0.297-0.047,0.469-0.062c-0.219,0.469,2.391,0.594,2.719,1.523c0.125-0.18,0.312-0.273,0.453-0.43\r\n\t\tc-0.469-0.344-1-0.625-1.547-0.812c0.062-0.156,0.125-0.281,0.188-0.438c-0.625-0.312-0.812,0.422-1.344-0.281\r\n\t\tc0.156-0.188,0.062-0.547-0.078-0.656c0.516-0.984-0.078-1.031,1.25-0.875c1.047,0.609,2.578,0.438,2.859,1.438\r\n\t\tc0.312-0.406,1.688-0.812,2.188-1.281c-0.859-0.406-1.125-0.5-1.812-0.906c0.359-0.875,1.391-0.828,2-0.469\r\n\t\tc0.094,0.062,0.719,0.031,0.766-0.094c0.312,0.25,0.516,0.188,1.062,0.469c0.109,0.031-0.234,0.469,0,0.562\r\n\t\tc0.156-0.312,0.703-1.375,1.406-1.016c-0.078,0.141-0.328,0.953-0.078,1.047c0.031-0.375,0.219-0.562,0.281-0.938\r\n\t\tc0.156,0.125,1.188,0.297,1.234,0.188c0.359,0.25,0.812,0.719,1.156,0.844c0.391-0.531,0.234-0.016,0.375,0.219\r\n\t\tc0.797-0.922,0.828,0.391,0.156,1.344c0.016,0,0.891-0.281,0.953-0.375c0.25,0.438,0.688,0.797,0.938,1.406\r\n\t\tc0.297-0.359,0.312-1.062,0.812-0.797c-0.016-0.516,0.016-0.453,0.422-1.016c1.172,0.922,0.078,2.5,1.016,3.367\r\n\t\tc0.625-0.375,0.984,0,1.125,0.562c0.375-0.562-1.094-2.133-0.562-3.086c0.672,0.312,1.234,0.281,1.25,1.172\r\n\t\tc0.094-0.297,0.172-0.406,0.203-0.766c0.859,0.344,0.641-0.219,1.016-0.719c0.406,0.719,0.312,0.156,1.188,0.609\r\n\t\tc0.266,0.203-0.281,0.891,0.484,0.922c0.156-0.281-0.109-0.031-0.031-0.375c0.453,0.219-0.141,0.125,0.312,0.344\r\n\t\tc0.484-0.25-0.359-0.688,0.75-0.156c-0.297-1,0.594,0.156,1.016-0.547c0.094,0.156,0.219,0.328,0.312,0.5\r\n\t\tc0.281-0.547,4.984,2.477,5.891,2.883c-0.219,0.5-0.859,0.125-1.047,0.531c0.344,0.156,1.25-0.219,1.5,0.062\r\n\t\tc0.578,0.688-0.469,0.75-0.656,1c0.234-0.062,1.047-0.062,1.094-0.031c-0.188,0.375,1.219,0.75,1.391,1.594\r\n\t\tc-1.484,0.562-2.672-0.594-4.219-1.156c-1.891-0.594-2.297-0.781-4.047-0.625c0.562,0.375,1,0.125,1.594,0.125\r\n\t\tc0.984,0.031,1.938,0.656,2.953,1.062c-0.141,0.156-0.281,0.312-0.422,0.5c1.375,0.625,1.469-0.062,2.781,0.5\r\n\t\tc-0.25,0.469-1.75,1.062-1.562,0.688c-0.234,0.094-0.422,0.156-0.625,0.25c0.125,0.031,0.188,0.125,0.219,0.281\r\n\t\tc-0.031,0.094,2.375-0.156,2.75-0.219c-0.125,0.188-0.016,0.281-0.094,0.469c0.156,0.094,0.281,0.094,0.656,0.281\r\n\t\tc0.469-0.969,3.969,0.656,3.859,1.344c-0.641,0.062-1.203,0.281-1.734,0.25c-0.844-0.031-1.641-0.594-2.672-0.469\r\n\t\tc0.891,0.375,1.234,0.5,1.922,0.75c-0.781,1.5-1.953-0.25-2.719-0.125c-0.031,0.094-0.047,0.188-0.219,0.094\r\n\t\tc0-0.031,0.031-0.031,0.031-0.062c-0.125,0.062-0.234,0.25-0.312,0.469c0.531-0.25,1.203-0.125,1.766,0.406\r\n\t\tc-0.266,0.656-1.234,0.719-1.766,0.438c-0.25,0.438,0.344,0.188-0.422,0.719c0.359,0.031-0.812,0.844-1.047,1.094\r\n\t\tc-0.109-0.344-0.625-0.938-0.938-0.25c0.438,0.344,0.844,0.375,1.219,1.031c-0.25-0.062-0.344-0.219-0.641-0.281\r\n\t\tc-0.781,1.25,1.297,0.25,0.5,2.094c-0.5-0.219-1-0.594-1.516-0.938c-0.047,0.219-0.094,0.844-0.641,0.562\r\n\t\tc-0.203,0.344-0.047,0.344,0.141,0.562c0.062-0.156,0.219-0.25,0.406-0.312c0.125,0.406,0.031,0.438-0.031,0.656\r\n\t\tc0.531,0.188-0.094,1.031-0.234,1.438c-0.422-0.156-0.641-0.625-1.125-0.812c-0.047,0.094,0.328,0.688,0.422,0.875\r\n\t\tc-0.25-0.125-0.312,0.188-0.562,0.281c0.172,0.031,0.281-0.031,0.422,0c0,0-0.172,0.562-0.203,0.438\r\n\t\tc2.062,0.781-0.094,0.781-0.719-0.5c-0.312,0.219-0.906,1.219-0.438,1.406c0.594-0.5,0.344-0.25,0.875,0\r\n\t\tc-0.281,0.656-0.875,0.156-1.031,0.625c-0.281-0.156-1.906-0.469-1.328-1.281c-0.422-0.188-1.172,0.5-1.625,0.375\r\n\t\tc0.234,0.156,0.391,0.344,0.641,0.438c-0.016-0.125-0.062-0.25-0.094-0.406c0.562,0.281,1.312-0.062,1.188,0.844\r\n\t\tc0.766,0.312,0.266,0.5,0.203,0.469c0.172,0.125,0.328,0.25,0.516,0.375c-0.234,0.062-0.234,0.219-0.203,0.438\r\n\t\tc-0.281-0.062-0.422-0.281-0.625-0.438c-0.156,0.281,0.312,0.531,0.484,0.75c-0.109,0.062-0.219,0.125-0.344,0.188\r\n\t\tc0.125,0.344,0.312,0.125,0.156,0.562c-1.312-0.438-0.438-2.094-1.125-2.188c0.031-0.188-0.047-0.312-0.219-0.469\r\n\t\tc-0.156,0.375-0.625,11.094-1,11.234c-0.031-0.547-0.312,10.078,0,10.078c-0.141,0-0.281,0-0.406,0\r\n\t\tc0.125,0,0.125-10.047,0.125-10.047c0.438,0.25,2.094-5.297,0.562-4.859c0.562,0.328,1.203-1.188,1.5-1.062\r\n\t\tc-0.094,0.125-0.203-1.125-0.312-0.984c0.188,0.094,0.188-0.766,0.25-0.922c0.5,0.219-0.25,1.438-0.312,1.625\r\n\t\tc-0.391-0.188-1.625-0.969-1.234-1.906c0.016,0-0.422-1.219-0.547-1.406c-0.516-0.219-0.938-0.891-1.453-1.188\r\n\t\tc-0.594,1.109,1.734,0.906,1.359,1.969c-0.625-0.266-1-0.156-1.688-0.734c-0.109,0.281-0.594,0.266-0.812,0.484\r\n\t\tc0.125,0.031,0.156,0.125,0.156,0.25c0.406-0.688,1.312-0.156,2.062,0.219c-0.266,0.656-0.219,0.438-0.781,0.156\r\n\t\tc-0.031,0.031-0.375,0.5-0.406,0.562c0.656,0.438,0.938,0.062,1.469,0.25c0.562,0.312,0.562,0.594,1.469,1\r\n\t\tc-0.203,0.344-0.688,0.344-0.922,0.625c-0.062-0.062-0.109-0.156-0.172-0.219c-0.125,0.344-0.234,0.156-0.375,0.531\r\n\t\tc-0.531-0.625-1.75-0.125-2.344-0.312c-0.281,0.594-1.375,0.281-1.844,0.438c0.094-0.219-1.312-0.688-1.5-0.312\r\n\t\tc-0.094-0.062-0.891-0.125-0.688-0.344c-0.531-0.125-0.312-0.812-0.469-0.906c-0.656,1.344-0.219,0.969-1.312,1.781\r\n\t\tc-0.719,0.531-2.062,0.062-2.469,1.094c-0.344-0.188-0.281-0.688-1.062,0.031c0.469-1-1.156-0.656-1.672-1.188\r\n\t\tc-0.344,0.625-0.188,0.5-0.797,0.344c0.156,1.125-0.281,1.219-0.906,0.969c-0.125,0.219,0.172,0.375,0.344,0.531\r\n\t\tc-0.156,0.312-0.391,0.375-0.594,0.812c-0.125-0.125-0.25-0.25-0.406-0.406c-0.031,0.281-0.031,0.469-0.031,0.719\r\n\t\tc-0.25-0.062-0.344-0.031-0.562-0.094c-0.094,0.062-0.203,0.125-0.281,0.219c0.406,0.188-0.906,1.344-1.094,1.25\r\n\t\tc-0.094,0.25-0.531,1.188-1.062,0.938c-0.062,0.25,0,0.781,0.094,1.125c-0.375-0.125-0.281,0.031-0.656,0.031\r\n\t\tc0-0.5-0.328-0.344,0-0.906c-0.125,0.125-0.25,0.25-0.344,0.375c-0.219-0.062-0.109-0.406-0.031-0.562\r\n\t\tc-0.125,0.062-0.25,0.125-0.375,0.156C218.812,229.75,218.328,229.844,218.281,229.719z M247.688,243.125\r\n\t\tc0.078-0.188,0.328-0.594,0.5-0.531c-0.141,0.406-0.219,0.469-0.422,0.719C248.078,242.5,247.828,243.219,247.688,243.125z\r\n\t\t M245.703,255.344c-0.375,1.25-2.531-0.938-2.875,0.062c-0.312-0.562-0.812-0.594-1.406-0.156c0.25-0.719-1.062-0.281-1.422,0\r\n\t\tc0.125-0.219-0.016-0.312-0.359-0.312c0.219-0.406,1.469-0.406,1.688-1.281c0.234,0.094,0.688,0.312,0.656,0.406\r\n\t\tc1.312,0.531,0.625-0.812,0.438-0.188c-0.469-0.219-0.406-0.188-1.062-0.375c0.125-0.062,0.188-0.156,0.281-0.219\r\n\t\tc-0.406-0.188-0.344,0.031-0.656,0.094c0.219-0.875,0.969-0.562,1.25-1.469c-0.188,0-0.391,0-0.594-0.031\r\n\t\tc0.656-0.438,0.406-0.375,0.562-0.812c-0.031-0.031,0.953,0.156,0.562,0.344c0.516,0.156,0.812-0.438,1.031-0.344\r\n\t\tc0.062-0.188,0.062-0.25,0.219-0.562c-0.719-0.25-0.625-0.375-0.203-0.781c-0.422-0.156-0.844-0.625-1.078-0.062\r\n\t\tc-0.562-0.656,0.266-1.25,0.547-1.906c-0.391-0.094-0.578,0.188-0.797,0.062c0.203-0.562,0.062-0.125-0.281-0.25\r\n\t\tc0.125-0.094,0.234-0.188,0.312-0.25c0.031,0,0.109,0.188,0.203,0.25c0.234-0.344,0-0.188,0.484-0.5\r\n\t\tc-0.531-0.312,0.094-1.562,0.25-2c0.469,0.156,0.891-0.406,1.094-1c0.375,0.156-0.172,0.312,0.156,0.438\r\n\t\tc0.25-0.5,0.125,0,0.594-0.312c-0.031,0.125,0.422,0.062,0.219,0.75c-0.125,0.312-0.953,0.281-1.156,0.969\r\n\t\tc0.656-0.094,1.312,0,1.719,0.438c-0.312,0.844-1.484,0.969-1.094,1.875c-0.25-0.062-0.469,0-0.562,0.156\r\n\t\tc0.594,0.156,1.719,3.219,1.531,3.812c-0.125-0.219-0.094-0.312-0.297-0.438c-0.141,0.438,0.391,0.844,0.141,1.406\r\n\t\tC248.297,254.031,244.141,254.844,245.703,255.344z M237.203,251.969c0.094-0.281,0.156-0.562,0.281-0.781\r\n\t\tc0.125,0.094,0.219,0.188,0.344,0.312c0.203-0.469,0.938-0.844,1.156-1.469c-0.188-0.094-0.625-0.062-1-0.219\r\n\t\tc0.125-0.281,0.703-0.562,0.969-0.5c-0.156-0.375-0.203-0.281-0.062-0.719c0.25,0.125,0.531,0.219,0.781,0.438\r\n\t\tc0.156-0.5,0.25-0.25,0.656-0.438c-0.781-0.312,0.75-1.031,0.562-0.312c0.156-0.031,0.172-0.125,0.25-0.25\r\n\t\tc-0.062,0.375,0.219,0.188-0.094,0.656c1-0.406,0.969,0.594,0.828,1.188c-0.234-0.031-0.516-0.062-0.734-0.094\r\n\t\tc-0.25,0.656-0.688,1.438-0.953,2.25c-0.141-0.062-2.453,0.75-2.078,0.094c-0.25,0.031-0.469,0.062-0.703,0.094\r\n\t\tc0.047-0.156,0.234-0.219,0.391-0.188C237.516,251.906,237.453,251.906,237.203,251.969z M236.609,233.156\r\n\t\tc0.156-0.188-1.344-0.844-1.594-1.188c0.688,0.25,0.312,0,0.906,0.031c-0.031,0-1.188-1.375-1.188-1.375\r\n\t\tc0.391,0.156,1.062,0,1.438,0.094c-0.469-0.281-0.062-0.125-0.234-0.5c0.203,0.062,0.188,0.219,0.312-0.031\r\n\t\tc-0.016-0.062-0.047-0.125-0.078-0.188c-0.422,0.047-0.656-0.062-0.938-0.172c0.25-0.359,0.328-0.297,0.469-0.766\r\n\t\tc0.375,0.219,0.188,0.031,0.484-0.125c0.047,0.594,0.156,0.531,0.297,1c-0.031-0.125-0.062-0.75-0.031-0.906\r\n\t\tc1,0.375,0.5,1.188,0.312,1.75c0.094,0.031,0.156,0.062,0.25,0.094c0.609-1.281,0.125-0.031,0.375-0.188\r\n\t\tc0.781-1.844,0.016-0.344,0.641-0.812c-0.016,0.25-0.109,0.688,0.125,0.781c0.266-0.656,0.406-0.25,0.922-0.5\r\n\t\tc-0.125,0.438-0.031,0.406-0.047,0.875c0.047-0.219,0.078-0.438,0.125-0.688c0.438,0.156,0.891,0.5,1.312,0.531\r\n\t\tc0.641-0.719,0.547,0.469,1.484,0.25c-0.078,0.25-0.719,0.469-0.875,1.062c0.906,0,0.734,0.656,0.531,1.25\r\n\t\tc-0.25-0.094-0.125-0.094-0.328-0.312c-0.266,0.75-1.578,0.469-2.297,0.844c0-0.125,0-0.25,0-0.375\r\n\t\tc-0.125,0.531-0.609-0.062-0.938-0.188c-0.094,0.188-0.281,0.562-0.328,0.75c0-0.125-0.016-0.25-0.016-0.375\r\n\t\tc-0.594,0.25-0.719-0.156-1.344-0.375C236.516,233.375,236.891,233.312,236.609,233.156z M234.797,229.75\r\n\t\tc0.094,0.094,0.156,0.062,0.188-0.094c0.031,0.062,0.078,0.109,0.109,0.156C235,229.766,234.891,229.828,234.797,229.75z\r\n\t\t M236.266,228.812c0.094,0,0.922-0.312,0.641,0.25C236.688,228.969,236.469,228.875,236.266,228.812z M242.578,246.656\r\n\t\tc-0.125,0.344,0.141,0.562-0.406,0.562c-0.031-0.062-0.062-0.125-0.094-0.219C242.578,247.219,241.859,246.406,242.578,246.656z\r\n\t\t M242.688,246.344c0.078-0.219-0.359-1.344,0.25-1.125c-0.078,0.25-0.422,0.375-0.172,0.469\r\n\t\tC242.656,246.062,243.078,245.969,242.688,246.344z M242.453,244.875c0.125-0.312,0.219-0.656,0.312-0.938\r\n\t\tc0.062,0,0.484,0.062,0.797-0.062C243.359,244.438,242.984,244.75,242.453,244.875z M245.406,216.312\r\n\t\tc-0.203,0.406-0.016,0.562,0.344,0.469c-0.203,0.406,0.203-0.125-0.078,0.469C245.016,217.062,244.266,216.531,245.406,216.312z\r\n\t\t M224,214.781c0-0.344,0,0.531,0,0.844C224,215.625,224,214.969,224,214.781z M244.266,217.219\r\n\t\tc-0.156,0.094-0.281,0.188-0.453,0.312c-0.016-0.219-0.031-0.406,0.031-0.656C244.203,217,243.891,217.062,244.266,217.219z\r\n\t\t M242.922,218.031c-0.234-0.125-0.469-0.219-0.75-0.312C242.578,217.031,243.172,217.562,242.922,218.031z M224.188,277.344\r\n\t\tc-0.078,0.312-0.016,0.375-0.375,0.188C223.984,277.25,223.688,277.188,224.188,277.344z M223.578,276.75\r\n\t\tc-0.266,0.125-0.266,0.375-0.594,0.281C223.203,276.406,223.156,276.969,223.578,276.75z M218.703,231.031\r\n\t\tc-0.125,0.188-0.125,0.094-0.312,0C218.609,230.5,218.453,230.875,218.703,231.031z M264.656,334.25\r\n\t\tc-0.109-0.031-0.359-0.344-0.312-0.438c-0.062,0.219-0.391,1.219-0.25,1.25c-0.25,0.219-2.109,2.594-2.203,2.562\r\n\t\tc-0.125,0.812-1.25,1.188-1.438,1.906c-0.266,0.781-1.906,1.25-1.938,1.375c-1.5-0.094-0.969-1.594-1.5-1.719\r\n\t\tc0-0.125,0.078-1.938,0.531-1.812c0.188-0.219,2.531-2.344,1.25-2.344c0.312-2.031,3.25-0.781,3.781-2.062\r\n\t\tc0.031,0.094,0.047,0.188,0.078,0.281c0,0,1.047-0.781,0.594-0.781c0.188,0.031,0.328-0.094,0.797-0.094\r\n\t\tc-0.016-0.344,0.281-0.906,0.781-1.219c0,0.062,0.672,1.625,0.406,1.562c-0.078,0.094-0.156,0.219-0.25,0.344\r\n\t\tC265.438,333.188,265.016,333.875,264.656,334.25z M258.703,324.656c-0.188-0.094-0.125-0.281,0-0.469\r\n\t\tC259.031,324.5,258.703,324.469,258.703,324.656z M296.281,318.406c-2.719,1.781-0.828-3.312-0.234-3.312\r\n\t\tC295.984,316.438,297.188,316.75,296.281,318.406z M322.719,355.406c-0.547,0-1.688,0.875-2.062,1.062\r\n\t\tc0.109-0.125,0.375-1.156,0.438-1.219c0.906-0.844,1.078,0.031,2.25-0.688C323.156,354.875,322.953,355.156,322.719,355.406z\r\n\t\t M323.578,354.25c0.156-0.062,0.203-0.125,0.141-0.25c0.375-0.219,0.25,0.094,0.25,0.094\r\n\t\tC323.859,354.094,323.656,354.25,323.578,354.25z M334.781,339.094c-0.125,0.406,0.047,0.219,0.453,0.125\r\n\t\tc-0.312,0.5,0.141,0.312-0.312,0.906c0.359-0.156,0,0.906-0.141,1.188c0.188-0.281,0.062,0,0.375,0\r\n\t\tc-0.234,0.531-0.094,1.594-0.266,1.781c0.109,0-1.062,1.844-1.062,1.875c-0.391,0.562-0.703,1.094-1.297,1.719\r\n\t\tc-0.312,0.688-1.734,1.25-1.906,1.781c-1.375,0-2.391,2.875-3.438,2.875c-0.594,0.531-0.656,0.844-1.562,1.125\r\n\t\tc0.031-0.031-1.938,1.125-2.188,1.125c0.344-0.344-0.062-0.094-0.156-0.312c0.062-0.031,0.234-0.125,0.281-0.219\r\n\t\tc-0.125,0.062-0.281,0.125-0.406,0.188c0.047-0.156,0.375-0.375,0.469-0.5c-0.75,0-1.266,0.969-2.125,0.969\r\n\t\tc0.062-0.094,0.109-0.156,0.125-0.25c-0.156,0.031-0.156,0.031-0.047-0.094c-0.359,0.062-0.531-0.062-0.828,0\r\n\t\tc-0.031-0.188,0.156-0.469-0.078-0.375c0.312-0.469,0.594-1.094,0.828-1.312c-0.219,0.062-0.438,0.125-0.656,0.156\r\n\t\tc0.281-0.375,0.453-0.688,0.688-1.031c-0.203,0.188-0.656,0.375-1.016,0.594c0.109-0.094,0.234-0.188,0.359-0.25\r\n\t\tc-0.094,0,0.812-0.875,1.031-1.062c-0.641,0.188-1.766,0.781-2.234,1.219c0.047-0.094,0.016-0.188-0.094-0.188\r\n\t\tc0.094-0.469,0.391-0.344,0.016-0.844c0.156-0.125,0.281-0.094,0.406-0.219c-0.109,0.031-0.25,0.031-0.391,0.031\r\n\t\tc0.359-0.5-1.797-0.656-1.875-0.344c-0.547,0-3.344,0.5-3.453,0.875c-0.5,0-1.688,0.656-2.156,0.906\r\n\t\tc-0.859,0.5-2.172-0.344-3,0.719c-0.219-0.281,0-0.062-0.156-0.312c-0.719,0.688-1.094,0.594-2.031,0.594\r\n\t\tc0.234-0.281-0.25-0.281-0.406-0.469c1.484-1.188,1.469-2.375,2.5-4c-0.25,0-0.156-0.188-0.375-0.188\r\n\t\tc0.078-0.219,0.141-1.719,0.344-1.719c0.031,0.469,0.031,0.312,0.125,0.625c0.062-0.031,0-0.344,0-0.625\r\n\t\tc-0.031,0,0.156,0.188,0.312,0.312c0.609-0.672,0.703-2.562,1.625-2.859c1.297-0.078,3.219-1.578,4.453-1.984\r\n\t\tc1.109,0,2.703-1.469,2.969-1.469c0.203-0.406,0.797-1.25,1.344-1.25c-0.141,0.469,0,0.375-0.141,0.719\r\n\t\tc0.344,0,0.625-0.656,0.906-1.031c0,0.031,0.125,0,0.188,0.125c0.281-0.562,0.766-0.719,1-0.719\r\n\t\tc0.406-0.781,0.719-0.531,1.312-1.281c0.062-0.219,1.125-0.125,0.531,1.094c1.125,0,2.359-1.438,2.906-2.562\r\n\t\tc0.078,0,0.797-0.188,0.625,0.062c0.734-0.062,1.5-0.062,0.656-0.906c0.125-0.062,0.219-0.094,0.344-0.156\r\n\t\tc0.094,0.094,0.109,0.156,0.016,0.25c0.062-0.062,0.141-0.094,0.203-0.156c-0.188,0.438,0.172-0.219-0.062,0.375\r\n\t\tc0.156-0.062,0.5-0.312,0.625-0.312c-0.281,0.406,1.578,0.312,2.062-0.031c-0.188,0.438-1.188,1.125-1.312,1.438\r\n\t\tc0.125,0-0.719,1.094-0.828,1.344c0.781,0,1.453,0.844,1.672,1.625c2.453-0.156,2.875-4.531,4.531-5.656\r\n\t\tc0.219,1-0.031,1.438-0.625,2.688c0.203-0.062,0.516-0.031,0.656-0.312c0.219,0.344,0.281,0.406,0.219,0.562\r\n\t\tc-0.469,0.656-0.312,1-0.469,1.531C334.781,337.656,333.656,339.531,334.781,339.094z M307.641,319.75\r\n\t\tc-0.031-0.031,1.734,1.062,1.578,1.062c0.781,0.875,0.531,1.562,1.188,2.562c0-0.219,0.094-0.312,0.266-0.25\r\n\t\tc0.141,0.719,0.203,1.781,0.938,0.938c-0.141,0.281,0.172,0.062-0.141,0.406c0.891,0,0.031,1.25-0.172,1.656\r\n\t\tc0.141-0.062,0.219,0,0.25,0.125c0.078-0.219,0.25,0,0.594,0c-0.422,0.531-0.484,1.156,0.359,1.156\r\n\t\tc-0.359,0.625,0.094,0.25,0.094,0.75c0,0.125-0.906,1.594-0.969,1.75c-0.406-0.156-0.5,0.062-0.922-0.188\r\n\t\tc-0.047,0.25,0.062,0.219,0.141,0.406c-0.703-0.25-1.625-2-1.562-2c-0.031-0.312-0.469-2.812-0.422-2.844\r\n\t\tc-0.422,0-0.391-1.156-0.484-1.156c0.203-0.531-0.281-1.656-0.594-2.125C307.641,321.781,305.812,319,307.641,319.75z\r\n\t\t M313.719,330.656c0.953,0,2.75-0.312,2.516,0.312c0.484,0,0.453-0.125,1.078-0.125c-0.531,0.469-1.016-0.188-1.156,0.625\r\n\t\tc1.156,0,1.203,0.344,0.75,1.156c-0.594,0-1.672-0.562-2.656-0.562c0,0-2.875-0.781-3.031-0.781\r\n\t\tc0.062-0.219,0.141-0.031,0.219-0.25c-0.281,0-0.531,0-0.812,0C311,329.5,313.094,330.062,313.719,330.656z M315.625,325.062\r\n\t\tc0.188-0.562,1.625-1.812,1.438-1.406c0.469-0.188,0.469,0.094,0.719,0c0.594,0,0.453-0.844,0.703-0.844\r\n\t\tc0.641-0.438,1.859-0.281,2.109-1.188c0.078-0.062,1.969-1.406,1.766-1.406c0.641-0.5,1.047-0.938,1.422-1.625\r\n\t\tc0,0.531,0.297,0.125,0.516,0.125c-0.203,0.625,0.141-0.188-0.109,0.875c0.344,0,0.219-0.156,0.172,0.312\r\n\t\tc0.562-0.031,0.25,0.219,0.641,0.219c-0.172,0.5-0.672,0.5-0.906,0.469c0,0.719-1.062,0.688-0.75,1.125\r\n\t\tc-0.609,0.5-0.75,1.938-0.047,2.469c-1.391,0.219-1.141,1.531-1.891,2.094c-0.391,0.281-1.734,1.562-2,1.906\r\n\t\tc-0.609,0-1.125-0.062-1.844-0.062c-0.094,0.156-1.125-0.125-1.094-0.125c-0.766-0.562-0.453-0.531-0.469-1.75\r\n\t\tc-0.156,0.062-0.312,0.125-0.469,0.156c0.094-0.094,0.172-0.188,0.25-0.281C315.453,326.188,315.656,325.281,315.625,325.062z\r\n\t\t M323.094,306.25c0.203,0.531-1.281,1.938-1.781,1.938c0.156-0.312,0.094-0.406-0.219-0.312\r\n\t\tC320.219,306.531,322.906,305.812,323.094,306.25z M328.625,311.719c-0.391,0,0.141-0.156-0.25-0.156\r\n\t\tc0.25-0.25,0.406-0.406,0.469-0.75c-0.188-0.062-0.297-0.031-0.281,0.156c-0.297-0.438-0.281-0.875-0.156-1.531\r\n\t\tc0.109,0.062,0.219,0.125,0.344,0.188c0.625-1.625,0.438-2.719,2.094-2.719c-0.062,0.156-0.078,0.438-0.312,0.656\r\n\t\tc0.469,0-0.156,2-0.906,2c-0.484,1.781-0.688,1.594,0.656,1.594c-0.047,0.094-0.062,0.188-0.078,0.312\r\n\t\tc0.047,0,0.328-0.188,0.328-0.188c0.266,0.625,0.125,1.062-0.031,1.5c-0.125-0.188-0.438-1-0.641-1\r\n\t\tc-0.047,0.125-0.047,0.188-0.172,0.469c-1.062-1.406-0.938,1.094-1.25,1.094c0-0.188,0.078-0.219,0.125-0.438\r\n\t\tc-0.438,0-0.375-0.5-0.469-0.719C329.562,312.188,328.203,312,328.625,311.719z M330.938,324.969\r\n\t\tc0.016-0.125,0.031-0.219-0.156-0.281c0.375,0,0.484-0.062,0.906-0.062C331.562,324.906,331.188,324.906,330.938,324.969z\r\n\t\t M330.469,322.75c0.188-0.219,0.188-0.281-0.016-0.25c0.047-0.125,0.078-0.281,0.141-0.438\r\n\t\tC330.734,322.406,331.156,322.656,330.469,322.75z M331.641,302.188c-0.172,0.344-0.453,0.656-0.734,0.969\r\n\t\tc-0.734-0.562,0.594-3.125,1.531-3.312C332.469,300.656,331.812,301.312,331.641,302.188z M331.438,312.719\r\n\t\tc-0.156,0.469-0.312,1.031-0.078,1.562c-0.234,0-0.078-0.062-0.172-0.25C331.266,313.844,330.031,313.156,331.438,312.719z\r\n\t\t M330.984,315.219c-0.078,0-0.172,0-0.25,0c-0.047-0.344-0.016-0.625-0.016-0.875c-0.234,0.062-0.25-0.031-0.062-0.281\r\n\t\tC331.125,314.281,331.094,314.812,330.984,315.219z M328.438,315.688c0.031-0.25,0.875-0.812,1.125-1.094\r\n\t\tc-0.156,0.812-0.375,1.5-1.125,1.5C328.578,315.938,328.578,315.781,328.438,315.688z M328.344,315.094\r\n\t\tc0.25-0.719,0.234-1.188,1.062-0.969c-0.109,0.406-0.391,0.75-0.406,0.938c-0.156,0.062-0.188,0-0.062-0.125\r\n\t\tC328.719,315,328.531,315.062,328.344,315.094z M329.5,315.188c0.172-0.188,0.531-0.75,0.656-0.812\r\n\t\tc-0.062,0.312-0.484,1.406-0.938,1.406C329.297,315.594,329.406,315.375,329.5,315.188z M329.688,313.719\r\n\t\tc0.172-0.5,0.703-0.156,0.625,0.062C330.109,313.781,329.922,313.75,329.688,313.719z M330.344,315.562\r\n\t\tc-0.25,0.188-0.766,0.438-0.656-0.094C330.062,315.469,330.141,315.125,330.344,315.562z M328.344,317.281\r\n\t\tc-0.078,0.344,2.25-1.156,2.641-1.219c0.109,0.969-0.391,1.938-0.922,2.688c0.047-0.062,0.031,0.219-0.109,0.219\r\n\t\tc0.047-0.125,0.078-0.188,0.078-0.219c-0.219,0.344-0.531,0.656-0.75,0.969c0.094-0.156,0.062-0.219-0.094-0.125\r\n\t\tc0.062-0.219,0.172-0.188,0.219-0.344c-1.391,0.625-0.469-0.781-0.406-1.188c-0.344,0-0.484,0.062-0.938,0.062\r\n\t\tc-0.031-0.094-0.031-0.188-0.031-0.281c-0.25,0.281-0.359,0.531-0.703,0.594C327.531,317.844,327.719,317.438,328.344,317.281z\r\n\t\t M328.969,327.594c0,0-0.562-0.062-0.719-0.062c0.625-0.406,1.031-0.25,1.875-0.156\r\n\t\tC329.969,327.781,329.406,327.594,328.969,327.594z M330.406,323.281c-0.156,0.375-0.312,0.312-0.578,0.562\r\n\t\tc0.641,0,0.422,0.531,0.047,0.531c0.219-0.719-0.656,0.844-0.578,0.719c-0.156-0.156-0.016-0.188-0.297-0.188\r\n\t\tc0.219-0.688,0.438-0.938,0.438-1.531c0.25-0.375,0.5-0.781,0.844-0.875c-0.25,0.656-0.188,0.594-0.594,1.25\r\n\t\tC329.953,323.688,330.125,323.406,330.406,323.281z M327.312,313.562c0.188,0.031,0.25,0.094,0.188,0.25\r\n\t\tC327.312,313.562,327.312,313.906,327.312,313.562z M327.594,323.5c0.156-0.062,0.188-0.156,0.438-0.156\r\n\t\tc-0.5,1.031-3.188,1.625-3.078,1.125c-0.922,0.125-1.391,1.094-0.938,1.656c0.422,0,1.188-0.344,1.781-0.344\r\n\t\tc-0.203,0.188-0.297,0.281-0.562,0.406c0.156,0.031,0.328,0.062,0.5,0.094c-0.078,0.281-0.359,0.281-0.641,0.281\r\n\t\tc0.016-0.125,0.062-0.25,0.141-0.375c-0.359,0-1.109,0.688-1.516,0.719c0.219,0.281,0.5,1.062,0.672,1.062\r\n\t\tc0.047,0.438-0.094,1.438-1.234,1.438c0.297-0.469,0.219-0.938,0.219-1.531c-1.234,0-0.531,2.062-2.047,2.062\r\n\t\tc0.281-0.844,0.516-1.219,0.844-1.719c-0.844,0,0.469-1.5,0.641-2.031c0.219-0.625,0.938-1.688,1.375-1.938\r\n\t\tC324.469,323.656,326.719,324.25,327.594,323.5z M327.359,327.844c-0.109,0.281-0.297-0.125-0.672-0.062\r\n\t\tc0.25-0.469,1.094-0.188,1.297-0.219C327.75,327.656,327.562,327.75,327.359,327.844z M319.188,332.438\r\n\t\tc0.625,0.188-0.469,0.188,0.75,0.188c-0.016,0.125-0.016,0.25-0.031,0.375c-0.781,0-1.281,0.125-1.719,0.188\r\n\t\tC318.656,332.25,318.906,333.25,319.188,332.438z M318.031,332.969c0.125-0.188,0.031-0.219-0.25-0.156\r\n\t\tc0.203-0.156,0.375-0.469,0.656-0.469c-0.094,0.125-0.062,0.156,0.094,0.094C318.406,332.656,318.188,332.75,318.031,332.969z\r\n\t\t M319.594,333.594C321.828,333.844,319.281,334.531,319.594,333.594L319.594,333.594z M320.344,332.844\r\n\t\tc0.281-0.719,1.906-0.312,2.438-0.375c-0.094,0.188-0.109,0.375-0.312,0.375C322.281,333,320.734,332.812,320.344,332.844z\r\n\t\t M325.734,332.25c-0.672,1-3.547,2-4.109,2.094C321.891,333.594,324.656,332.562,325.734,332.25z M323.859,329.938\r\n\t\tc0.438-1.031,0.078-0.094-0.047-0.562c0.281,0,0.625-0.375,0.906-0.594C324.531,329.375,324.359,329.625,323.859,329.938z\r\n\t\t M324.219,317.375c0.172-0.812,1.625-1.562,1.875-2.156c0.438,0,0.453-0.812,0.766-0.812\r\n\t\tC326.75,315.25,325.219,317.375,324.219,317.375z M317.75,332.375c-0.141,0.125-0.391,0.375-0.578,0.375\r\n\t\tc0.109-0.188,0.328-0.375,0.016-0.375C317.391,332.219,317.328,331.969,317.75,332.375z M312.781,328.031\r\n\t\tc0.062-0.188-0.25-0.812-0.391-0.812c0.281-0.719,0.109-0.219,0.344-0.531c0.109,0.094-0.078,0.406,0.234,0.125\r\n\t\tC312.906,326.906,313.453,328.031,312.781,328.031z M307.562,326.844c0.125-0.375,0.047-0.312-0.031-0.688\r\n\t\tC307.5,326.125,308.469,326.844,307.562,326.844z M307.188,323.656c0.344,0,0.094-0.094,0.375-0.094\r\n\t\tc-0.094,0.312,0.188,0.281,0.047,0.688C307.531,323.938,307.359,323.875,307.188,323.656z M331.938,329.781\r\n\t\tc-0.047,0.188-0.719,0.719-0.812,0.719c0.109-0.156,0.734-1.094,0.469-1.094c0.406,0,0.234,0.094,0.484,0.094\r\n\t\tC332,329.562,331.328,330.031,331.938,329.781z M340.062,330.062c-0.375,0.688,0.156-0.344-0.188,0.625\r\n\t\tc0.219,0.312,0.094,0,0.188,0.5c0.078-0.062,0.188-0.094,0.312-0.062c-0.125,0.406,0.25,0.281,0,0.656\r\n\t\tc-0.219,0.094-1,0-0.906-0.156c-0.109,0.094-0.219,0.156-0.312,0.188c0.094-0.375-1-0.875-0.672-1.594\r\n\t\tc-0.484,0.094-4.547,1.969-3.891,0.656c-0.656,0-1,0.156-1.625,0.438c0.438-0.469,0.562-0.5,1.031-0.469\r\n\t\tc0.141-0.562,0.188-2.5,0.141-2.469c-0.141,0.062-0.312,0.125-0.453,0.188c-0.094-0.844-0.797-0.5-1.25-0.719\r\n\t\tc0.062-0.094,0.156-0.156,0.219-0.25c-0.266,0-0.516-0.188-0.438-0.469c-0.219,0.062-0.625,0.438-0.75,0.594\r\n\t\tc0.078-0.125,0.047-0.156-0.094-0.125c0-0.156,0.094-0.25,0.234-0.25c0,0-0.25-0.25-0.25,0.031\r\n\t\tc0.297-0.469,0.219-0.562-0.234-0.406c0.156-0.594,1.312-0.188,1.547-0.688c-0.219,0.031-0.453,0.062-0.672,0.094\r\n\t\tc0.172-0.25-0.031-0.281-0.484-0.094c0.172-0.375,0.062-0.375-0.469-0.312c0.609-1.219,1.562-0.75,2.297-1\r\n\t\tc-0.062,0.156-0.344,1.156-0.406,1.656c0-0.156,0.094-0.219,0.297-0.156c-0.234,0.75,0.109,0.188-0.141,0.688\r\n\t\tc1.062-0.188,1.578-1.625,2.75-1.625c0.625-0.031,1.688,1.125,2.5,0.844c-0.031,0.125,0.812,0.812,1.234,0.688\r\n\t\tc-0.172,0.438,0.234,1.5,0.984,1.125c-0.094,0.25-0.5,0.938-0.656,0.938C339.812,329.312,339.312,330.281,340.062,330.062z\r\n\t\t M337.25,297.781c0,0.219-0.281,0.406-0.406,0.5C336.906,297.781,336.969,298.094,337.25,297.781z M336.906,291\r\n\t\tc0.172-0.062,0.344-0.125,0.484-0.188C337.219,291.219,337.125,290.969,336.906,291z M339.562,290.906\r\n\t\tc-0.469,0.094-0.219-0.125-0.219-0.438c0.281-0.125,0.344-0.031,0.281,0.156c0.547-0.844,0.625-0.375,1.219-0.438\r\n\t\tc-0.078,0.625-0.094,0.438,0.125,0.875c-0.125,0.188-0.344,0.656-0.469,0.656c-0.078,0.344-0.406,1.531-0.891,1.531\r\n\t\tc0.078-0.25,0.203-0.531,0.281-0.781c-0.234,0.25-0.234,0.5-0.641,0.5c0.031-0.25,1-1.938,0.594-1.938\r\n\t\tC339.531,292.031,339.359,291.562,339.562,290.906z M344.156,326.219v0.031c0,0-0.125,0.094-0.25,0.188\r\n\t\tc-0.609,0.594-1.312,1.719-2.578,1.719c0.141-0.156,0.078-0.188-0.141-0.188c0.594-0.094,0.875-0.562,1.406-0.75\r\n\t\tc-0.094,0.219,0.844-0.469,1.312-0.781C344,326.344,344.078,326.281,344.156,326.219c0.031-0.219,0.062-0.438,0.094-0.688\r\n\t\tc-0.375,0.094-0.094-0.156-0.562-0.25c0.25-0.188,0.359-0.031,0.688-0.031c-0.266,0.344,0.188,0.5,0.219,0.812\r\n\t\tC344.438,326.062,344.297,326.125,344.156,326.219z M345.031,327.281c-0.375,0.094,0.109-0.219-0.188-0.094\r\n\t\tc0.188-0.469,0.156-0.344,0.281-0.688c0.094,0,0.375,1.25,0.281,1.25C345.031,328.25,344.625,327.906,345.031,327.281z\r\n\t\t M345.75,329.125c-0.031-0.25-0.406-0.25,0.125-0.5C345.812,328.812,345.797,328.969,345.75,329.125z M346.375,329.969\r\n\t\tc0.266-0.25,0.125-0.781,0.656-0.281C346.938,329.938,346.719,330.031,346.375,329.969z M346.375,328.406\r\n\t\tc0.266-0.312,0.156-0.125,0.516-0.25c-0.031,0.156-0.016,0.312,0.078,0.406C346.75,328.906,346.625,328.406,346.375,328.406z\r\n\t\t M347.062,330.312c-0.234,0-0.031-0.062,0.031-0.219c0.094,0,0.188,0.031,0.281,0.031\r\n\t\tC347.5,330.688,347.25,330.219,347.062,330.312z M346.656,288.344c0.062-0.25,0.281-0.844,0.281-1.125\r\n\t\tc-0.531,0.781-0.531,0.75-0.969,1.656c-0.156-0.094-0.156-0.25-0.062-0.438c-0.375,0.25-0.812,0.344-1.188,0.625\r\n\t\tc0-0.219,0.141-0.156,0.172-0.312c-0.531-0.125-0.297-0.031-0.703,0.219c0.531,0-0.75,1.156-0.906,1.25\r\n\t\tc-0.297-0.375-0.25-0.875,0.172-1.312c-0.609,0.062-0.266-0.062-0.609-0.094c-0.031,0.125-0.094,1.156-0.031,1.156\r\n\t\tc-0.422,0.781-1,0.219-1.281,1.5c-0.688-1.062,0.156-1.75,1.125-2.312c-0.688-0.031-1.469,0.438-2.281,0.625\r\n\t\tc0.109-0.25,1.812-1.719,1.75-1.312c0.094-0.062,0.188-0.125,0.281-0.188c-0.156,0.062-0.188,0-0.094-0.125\r\n\t\tc0.422,0,0.891-0.406,1.344-0.031c0.141-0.156,0.344-0.375,0.453-0.531c0.172-0.094,0.234-1.719,1.047-2.156\r\n\t\tc-0.406,0.469-0.234,0.625-0.344,0.969c2.156,0,2.188-5.062,3.062-5.906c-0.031,0.156-0.031,0.312-0.031,0.469\r\n\t\tc0.172-0.031,0.328-0.031,0.5-0.062c-0.156,0.438,0.234,1.188,0.188,1.812C347.531,282.719,347.344,287.75,346.656,288.344z\r\n\t\t M350.734,277.969c0-0.5-1.016,1.281-1.047,1.281c-0.688,0.094-1.094-0.656-1.234-0.094c-0.438,0-0.562-0.219-0.641,0.406\r\n\t\tc0.703-0.094,0.188,0,0.625,0.219c-0.406,0.094-0.516,0.344-0.875,0.438c0-0.812,0.25-1.562,0.25-2.062\r\n\t\tc0,0,0.562,0.094,0.719,0.188c0.031-0.594,0.406-3.125,0.531-3.031c0.578,0.344,0.375,2.125,1.5,1.438\r\n\t\tc0.125,0.062,0.062,0.344,0.219,0.438c0.125-0.094,0.234-0.156,0.344-0.25c-0.031,0.188-0.078,0.344-0.125,0.5\r\n\t\tc0.312,0,0.25,0.062,0.312,0.438C351.125,277.906,350.938,277.938,350.734,277.969z M351.047,270.781\r\n\t\tc-1.141-2.156-0.859,3.938-0.859,3.938c-0.25,0.094-0.125-0.844-0.719-0.688c-0.312,0.094,0.062,0.844-0.406,0.844\r\n\t\tc0-0.125,0.438-1.281,0.188-1.281c0-1.719,0.281-3.531,0.281-5.469c-0.125,0.031,0.531-3.844,0.609-3.938\r\n\t\tc0.281,1,0.422,2.562,0.328,3.406c-0.094,0.594-0.219,1.312-0.125,1.844C350.484,270,351.047,270.094,351.047,270.781z\r\n\t\t M353.5,274.875c-0.375,0.5-0.656,0.75-1.094,1.188c0.156-0.438,0.891-1.625,1.125-1.625\r\n\t\tC353.516,274.594,353.516,274.75,353.5,274.875z M353.969,274.531c0-0.344,0.531-1.156,0.531-0.938\r\n\t\tC354.312,273.969,354.312,274.25,353.969,274.531z M357.641,267.781c0-0.188,0.453-0.969,0.453-0.562\r\n\t\tC358.094,267.438,357.812,267.656,357.641,267.781z M366.188,234.188c0.422-0.188,0.531-0.219,1.062-0.469\r\n\t\tc0.922,0.781-0.672,1-1.156,1.188C366.016,234.688,366.188,234.438,366.188,234.188z M362.156,237.625\r\n\t\tc-0.125,0-0.188,0.062-0.156,0.188c-0.125,0.031-0.562-0.312-0.391-0.375C361.5,237.406,361.938,237.375,362.156,237.625z\r\n\t\t M352.594,238.406c-0.094-0.594,0.531,0.188,0.844,0.156c-0.594,0.188-0.875,0.344-1.297,0.406\r\n\t\tC352.141,239,352.594,238.031,352.594,238.406z M351.75,238.094c-0.141-0.094-0.031-0.344-0.25-0.312\r\n\t\tc0.219,0.375,0.5,0.906-0.062,1.688c0.391,0,0.031-0.219,0.391-0.219c0.078-0.406,0.25-1.125,0.344-1.438\r\n\t\tc0,0.281,0.047,0.25,0.109-0.031c0.156,0.5-0.125,0.875-0.453,1.469c0.141-0.125,0.172-0.031,0.141,0.125\r\n\t\tc0.766-0.5,3-1.281,3.938-1.375c1.766-0.625,1.062,0.969,2.328,1.812c-0.062-0.094-0.047-0.156,0.062-0.156\r\n\t\tc0.078,0.25,0.141,0.625,0.172,0.938c-0.344-1.906,2.156-1.719,2.047-2.094c0.5,0.406,0.922,0.25,1.141-0.375\r\n\t\tc0.188,0.625,0.531,0.875,0.734,1.594c1.062-0.906,0.5-1.594,0.172-2.75c0.781,0.094,1.547-0.188,2.062-0.594\r\n\t\tc0.094,0.312,1.031,0.938,1.469,0.438c0.094,0.312,1.75,1.219,2.062,1.688c0.844,0.594,1.734,0.719,1.938,2.156\r\n\t\tc0.328-0.125-0.312-1,0.594-1.156c0,0.125,0.297,0.156,0.297,0.156c0.578,0.125,0.484,1.062,1.125,0.844\r\n\t\tc0.062,0.406-0.25,0.625-0.109,1.062c-0.359,0.188-0.484,0-0.719,0.219c0.094,0.469,0.266,0.219,0.094,0.938\r\n\t\tc0.094-0.031,0.281,0.531,0.406,0.688c-0.281,0.094-0.156-0.156-0.219,0.25c-0.062-0.125-0.156-0.25-0.234-0.375\r\n\t\tc-0.078,0.156-0.172,0.312-0.234,0.469c-0.391-0.594-0.422-0.25-0.719-0.344c-0.188-0.531-0.531-1.188-1.094-1.188\r\n\t\tc-0.375,1.875-0.781-0.312-0.828-0.812c-0.641,0.406,0.031,1.562,0.016,2.156c-0.016,0.938-1.391,0.844-1.047,1.656\r\n\t\tc0.203-0.062,0.141-0.188,0.297-0.281c0.203,0.75,1.375,2.312,0.438,2.688c0-0.719-1.719,1.281-1.969,1.781\r\n\t\tc-0.062-0.062-0.125-0.156-0.203-0.25c0,0.688,0.109,0.312-0.281,0.594c0.141,0.469-0.141,0.5-0.203,0.562\r\n\t\tc0,0.625-0.547,1.125-0.406,2c-0.734-0.281-0.625-0.781-1.297-0.844c-0.391,0-0.484,1.25-0.875,1.75\r\n\t\tc0.062-0.406-0.016-0.781-0.016-1.156c-0.469,0.156-0.344,1-0.656,1.188c-0.25-0.719-0.609,0.219-0.781,0.531\r\n\t\tc-0.203,0.312-0.531,2.312-0.281,2.688c0-0.406,0.781,0.188,0.25,0.688c-0.375,0.438,0.062,1.062,0.125,1.5\r\n\t\tc0.094-0.062,0.219-0.125,0.312-0.219c0.094,0.844-0.344,0.438-0.375,0.594c-0.125,0.5-0.406,0.969-0.531,1.625\r\n\t\tc-0.062,0.312,0.438,0.375,0.25,0.875c-0.156,0.438-0.547-0.062-0.703,0.375c0,0.469-0.578,2.094-0.766,2.125\r\n\t\tc0,1.031-0.531,2.219-1.25,2.906c0-1.281-1.719-7.688-0.156-8.031c0-1.906,1.375-2.969,2.141-4.969\r\n\t\tc0-0.531,0.078-1.531,0.609-1.688c1.156-0.25-0.125-2.562,1.047-2.594c-0.734-0.562-0.391-0.156-1.047-0.031\r\n\t\tc0.312-0.094-0.031,2.156-0.031,1.188c-0.578,0.188-0.75,1.406-1.172,2.156c-0.016-0.375-0.047-0.406,0.016-0.844\r\n\t\tc-0.188,0.031-0.188,0.219-0.281,0.375c0.062-0.375,0.156-0.938,0.062-1.312c-0.25,0.219-1.438,0.719-1.906,0.844\r\n\t\tc-0.531,0.781-1.344,2.531-1.125,3.375c0.156-0.125,0.281-0.188,0.453-0.281c0.062,0.625-0.984,1.219-1.859,1.594\r\n\t\tc0.031-0.719-0.391-0.5,0.406-0.906c-0.625-0.531-0.281-0.625-0.906-0.156c0-0.375-1.297-0.312-1,0.688\r\n\t\tc-0.875,0.156-1.25-0.469-1.781,0.375c-0.141-0.562-0.25-0.312-0.641-0.719c0,0.281-0.797,0.281-1.078,0.531\r\n\t\tc0.031-0.125,0.062-0.25,0.094-0.344c-1.609,0.312-1.75,3.812-3.094,4.562c0.094,1.531-7.094,2.469-7.094,3.969\r\n\t\tc0.328-0.031-4.156-0.062-4.156-0.125c0,0.406,0,0.875,0,1.312c0,0,5.359-0.344,5.453-0.562c0.078,0.062,2.672,0.094,2.766,0.156\r\n\t\tc-0.094,0.219,1.125,0.438,1.047,0.625c0.375,0,1.125-0.188,1.125-0.5c0.312,0,0.266,0.156,0.609,0.125\r\n\t\tc0-1.594,1.562,0.469,2.125,0.469c0-0.219-1.188,3.062-0.766,3.281c0.594,0.312-0.734,3.5-1.188,3.875\r\n\t\tc-0.359,0.25-1.594,3.125-1.656,3.5c-1.094,0.531-1.109,2.938-2.422,2.688c-0.125-0.562-0.344-0.312-0.188-0.969\r\n\t\tc-0.125,0.125-0.25,0.25-0.375,0.375c0.031-0.125,0.078-0.219,0.125-0.344c-0.688,0-1.672,1.75-2,2.375\r\n\t\tc-0.281,0.469-1.328,3.125-2.031,3.125c0.188,0.062,0.594,0.438,0.75,0.375c-0.125,0.375,0.438,2.656,0.484,2.656\r\n\t\tc-0.484,1.594-1.203,1.656-2.391,2.875c-0.047-0.75,0.125-1.562,0.719-2.094c-0.203,0.031-0.188-0.875-0.25-1.062\r\n\t\tc0.656,0,0.359-0.969-0.031-0.969c-0.516,0.062-1,0.25-0.734-0.406c-0.047,0.031-0.109,0.094-0.172,0.156\r\n\t\tc0-0.625-0.25-0.688,0.562-1c-0.688,0.094-0.031-1.219-0.594-1.062c-0.359,0-0.75,0.031-0.906,0.031\r\n\t\tc-0.344,0.594-1,0.531-1.062,1.188c-0.125,0.031-0.25,0.031-0.422,0.031c0.109-0.25,0.234-0.375,0.375-0.625\r\n\t\tc-0.641,0,0.359-1.188,0.578-1.625c-0.969-0.531-1.656,0.625-2.219,1.312c-0.703,0.844-1.156,0.594-1.516,1.594\r\n\t\tc-0.047,0.312,0.453,1.125,0.641,1.562c0.312-0.094,0.438-0.438,0.812-0.625c0.797-0.375,1.062,0.031,2.062-0.031\r\n\t\tc-0.188,0.562-1.625,1.5-1.938,1.562c-0.109,0.344-0.75,0.75-0.844,1.094c-0.188,0.844,0.484,1.438-0.141,2.062\r\n\t\tc0.453,0,0.078-0.156,0.391-0.156c0.031,0.656,0.594,1.438,0.5,2c-0.109,0-0.5,0.062-0.812,0.031\r\n\t\tc0.312-0.031,0.688,0.281,0.906,0.281c-0.031,0.688-0.625,0.812-0.625,1.25c0.938,0,0.453,0,0.969,0.469\r\n\t\tc-0.5,0.531-0.734,2.031-1.578,2.031c0,0.688-1.609,2.938-1.797,2.938c0.062,0.656-0.312,0.906-1.047,0.969\r\n\t\tc-0.078,0.969-2.219,2.406-3.172,2.406c0.094-0.375-0.047-0.188-0.125-0.594c0,0.844-1.938,1.562-2.344,1.562\r\n\t\tc-0.062,0.062-1.469,1.375-0.844,1.25c-0.719,0.125-0.906-0.438-0.391-1.219c-0.234,0-0.641-0.031-0.812-0.094\r\n\t\tc-0.453-0.219-0.734,0.688-1.141,0.812c-0.469,0.156-0.859,1.125-1.25,1.125c-1.203,1.906,0.188,1.844,0.188,3.188\r\n\t\tc0.781,0,0.719,3.594,0.656,4.125c-0.766,2-2.25,2.219-3.719,2.219c0.406,0.531,0.25,0.469,0.344,0.844\r\n\t\tc-0.25,0-0.328-0.375-0.438-0.562c0,0.25-0.297,0.875,0.031,0.875c-0.047,0.094-0.844,0.594-1.031,0.625\r\n\t\tc0.344-0.656-0.031-1.188,0.141-1.938c-0.172,0-0.422,0.281-0.172-0.312c-0.109,0.062-0.219,0.094-0.328,0.156\r\n\t\tc-0.016-0.875-0.516-1.219-0.766-2.094c-0.016,0.188-0.125,0.219-0.344,0.125c0.047-0.156,0.078-0.531,0.078-0.719\r\n\t\tc-1.359-0.156-2.297,3.812-2.312,4.844c0.391-0.094,1.328,2.438,1.422,3.062c0.094,0.812-0.188,1.938-0.188,3.031\r\n\t\tc-0.25,0-1.516,0.312-1.234-0.25c-0.266-0.312-0.797-2.281-0.672-2.281c0.281-0.875,0.469-1.781,0.281-2.719\r\n\t\tc-0.312-1.5-0.531-0.75-0.062-2.219c0.375-1.094,1.688-7.406,0.125-7.406c-0.484,0.719-0.875,1.125-1.641,1.188\r\n\t\tc0-1.25,0.703-2.812,0.297-4.469c-0.375,0-0.516,0.406-0.766,0.406c0.25-0.719-0.281-1-0.078-2.188c0.156,0-0.734-1.25-0.969-1.438\r\n\t\tc-0.25,0.75,0.062,0.969-0.75,1.312c-0.25,0.812-2.312-0.281-2.312,0.781c-0.156,0.25-1.406,1.25-1.484,1.5\r\n\t\tc-0.922-0.094-1.859,1.625-3.016,1.844c-0.672,0.156-1.172,0.844-1.844,1.312c-0.844,0.656-0.562,0.188-1.047,1.188\r\n\t\tc-0.172-0.062-0.719,1.969-0.859,2.375c-0.25,1.188-1.688,3.719-3.406,3.719c0.172-0.531-0.078-2.062-0.219-2.906\r\n\t\tc-0.969,0,0.109-3.406-0.422-3.562c0.609-1.844-0.984-5,0.891-6.5c-0.5-0.125,0-1.531,0.062-1.625\r\n\t\tc-0.172-0.031-1.625,2.688-2.219,1.5c-1.344-2.781,0.219-0.625,1.125-2.562c-0.188-0.062-3.062,0.594-1.656-1.031\r\n\t\tc-0.625,0.188-1.469-0.781-1.578-1.188c-0.078-0.281,0.594-0.75-0.5-0.844c-0.703-0.125-0.609,0.188-1.266,0.125\r\n\t\tc-1.016-0.188-5.156-0.062-5.25-1.719c-0.203-2.25-3.031-0.219-3.031-1.219c-1.297-0.406-1.641-3.375-1.625-4.406\r\n\t\tc-0.594-0.094-1.562-0.688-1.781-0.688c-0.094,0.469,0.219,0.469,0.094,0.844c-0.094-0.062-0.156-0.156-0.25-0.219\r\n\t\tc-0.156,0.281-0.312,2.531,0.438,2.688c0.062,0.438,0,2.312,0.281,2.688c0.141-0.188,0.609-0.656,0.875-0.656\r\n\t\tc0.031,0.312-0.531,1.375-0.438,1.531c0.453,0.75,1.359,0.344,1.891,0.875c0.031-0.281,2.141-1.438,2.547-1.812\r\n\t\tc-0.125,0.531-0.375,1.625,0.031,1.781c0.125,0.219,0.625,0.781,0.594,0.875c0.938,0.094,0.953,1.719,1.516,1.719\r\n\t\tc-0.453,0.469-0.984,1-1.297,1.531c-0.031,0-1.844,1.875-1.219,1.875c-0.484,0-2.75,1-2.75,1.281\r\n\t\tc-0.484,0.25-2.703,0.281-2.703,0.969c-0.984,1.406-4.703,1.562-5.844,1.688c-0.516,0.062-3.688,0.656-2.312-1.25\r\n\t\tc-0.266-0.094,0.078-0.906,0.156-1.219c0.203-0.719-0.031-1.531-0.078-2.125c0.172-0.531-0.453-2.625-0.625-2.688\r\n\t\tc0.062-0.469-0.422-0.656-0.641-0.656c0.141-0.469-0.094-2.094-0.25-2.156c1.125-1.188,0.219-3.031-0.109-4.469\r\n\t\tc0.109-0.438-1.234-3.312-1.469-3.312c-0.75,1.688-0.844-1.125-1.266-1.281c-0.5,1.562,0.719,4.812,1.125,6.188\r\n\t\tc-0.844-0.125,0.391,2.656,0.469,3.094c-0.031,0-0.75,2.219-0.375,2.875c0.297,0.5,0.812,0.969,0.75,1.406\r\n\t\tc-0.062,0.125-0.375,1.625-0.219,2.031c0.188,0.906,3.5,4.031,1.656,4.688c1.062,1.5,1.406,1.25,3.094,1.75\r\n\t\tc0.297-0.562,3.516-0.469,3.766-0.344c-1.406,1.625-2.297,4.969-4.578,6.344c-1.094,0.719-1.922,1.469-3.297,2.125\r\n\t\tc-0.766,0.312-2.328,0.625-2.672,1.625c-0.781,0-1.406,1.5-2.266,1.5c-0.859,0.625-1.891,1.562-2.078,2.531\r\n\t\tc-0.125,0.562,0.156,0.75,0.188,1.219c0.094,1.062-1,1.375-0.438,2.562c0.156,0.375-0.562,4.281-0.75,4.219\r\n\t\tc-1.109,1.219-2.719,1.781-4.547,1.438c-0.188,0.375-2.297,1.531-1.734,1.906c0.062,0.062,0,1.562-0.109,1.875\r\n\t\tc0.453,0.188-0.453,1.062-0.875,1.25c-0.266-0.094-2.109,0-2.188,0.406c0.141,0.094,0.266,0.156,0.391,0.219\r\n\t\tc-0.312,0.438-0.469,1.406-1,1.312c0.094,1.719-5.234,2.062-5.516,3c-2.266-0.562-4.984-0.719-6.531-1.219\r\n\t\tc0.172-0.75,1.047-4.781-0.516-5.062c0.281-0.688-0.344-1.656-0.094-2.688c0.188-0.875,0.25-1.531,0.344-1.938\r\n\t\tc0.031-0.969-0.969-1.844-0.734-2.625c0.234-0.938-0.703-1.188-0.453-2.094c0,0.062,0.375-1.781,0.766-1.656\r\n\t\tc0.109-0.344,1.547-2.469,2.047-2.344c0.344-1.219-0.344-2.25,0.656-3.062c-0.406-0.125-0.156-3.344-0.406-3.406\r\n\t\tc0.391-0.531-1.438-2.875-1.688-3.625c0.25,0.156,0.359,0.156,0.344-0.031c-0.688-0.281-0.344-1.75,0.406-1.5\r\n\t\tc-0.047-0.188-0.219-0.438-0.156-0.531c0.688,0.156,1.344-2.906,1.375-3.344c-0.297-0.25-0.688,0.25-0.547-0.5\r\n\t\tc-0.609-0.156-0.453-0.281-1.016-0.438c-0.078,0.812-1.5-0.406-1.719-0.438c0.188-0.594,0.047-0.844,0.188-1.312\r\n\t\tc-1.375-0.562-1.828-1.656-3.406-0.844c0.031-0.25,0.125-0.125,0.234-0.281c-0.172,0-0.219-0.062-0.109-0.188\r\n\t\tc-0.344-0.094-0.297,0.188-0.734-0.406c-0.047,0.281,0.078,0.438,0.141,0.688c-0.953-0.406-2.281,0.062-3.047-0.281\r\n\t\tc0.109-0.719-3.984-0.688-4.328-1c-1.156-1.188-2.312-3.156-2.906-4.531c0.047,0.062,0.078,0.125,0.125,0.188\r\n\t\tc-0.031,0-0.391-1.031-0.406-0.938c0.094,0.031,0.188,0.094,0.297,0.125c0.156-1.5-0.703-2.594-1.078-3.906\r\n\t\tc0.219-0.469-0.453-1.094-0.531-1.5c0.078-0.5,0.391-1.406-0.062-2.219c1.484,0.469,2.875-6.625,2.469-6.812\r\n\t\tc0.219-1.125,1.594-1.656,2.188-2.375c0.703-0.844,1.719-1.656,2.5-2.438c0.625-0.625,2.625-0.5,3.328-1.469\r\n\t\tc0.953-1.25,0.609-2.906,2.172-3.656c1.031,0.375,1.672-1.031,2.406-0.812c0.812-2.5,1.594,0.219,3.266,0\r\n\t\tc-0.125,0.219,0.109,0.344,0.172,0.531c1-0.344,2.281-0.094,3.219-0.688c0.844-0.469,4.922,1.656,5.062,1.062\r\n\t\tc0.688,0.688,1.688,0.531,2.438,0.625c-0.219,0.594,0.344,0.438,0.641,0.531c-0.188,0.594-1.562,1.219-0.734,1.469\r\n\t\tc-0.234,0.688-0.438,1.125-0.859,1.375c-0.609,0.344,0.109,1.281,0.203,1.344c0.328,0.75,2.031,1.781,2.688,1.969\r\n\t\tc-0.312,1.344,1.812,2.312,2.984,3c0.953,0.594,0.891-1.5,0.922-1.562c0.406-0.406,1.031-0.469,1.469-0.656\r\n\t\tc0.406-0.188,2.859,2.375,3.312,2.5c0.891,0.281,1.25,1,2.438,1.281c0,0.062,2.141,0.562,2.031,0.531c0-0.188,0-0.312-0.031-0.531\r\n\t\tc1,0.406,1.594,1.281,3.078,0.094c0.828-0.719,0.703-1.812,1.797-2.531c-0.547-0.344,0.234-2.188,0.375-2.781\r\n\t\tc-0.219-0.062-0.531,0.219-0.781,0.344c0.25-0.438-2.156,0.438-2.406-0.375c-0.094-0.469-0.625-0.656-1-0.781\r\n\t\tc-0.641,1.594-2.016-0.812-2.641-1.031c0.109-0.375,0.516-1.219-0.297-1.281c0.078-0.188,0.125-0.375,0.156-0.594\r\n\t\tc0.078,0.125,0.141,0.281,0.219,0.406c0.125-0.5,0.203-0.812,0.375-1.406c-1.297-0.375,0.422-1.062,1.094-0.938\r\n\t\tc0.062-0.281,1.25-0.156,1.734-0.031c0.203-0.625-1.125-0.281,0.672-0.5c-0.125,0.781,0.969,0.062,1.156,0.031\r\n\t\tc0.938-0.094,1.781,0.188,2.75,0.094c-0.312,0.812,3.922,2.75,4.875,1.594c0.172-1.25-1.172,4.391-2.172,4.25\r\n\t\tc0.078-0.422-0.109,7.719,0.016,7.719c-0.219,0-0.406,0-0.625,0c0.156,0,0.375-8.438,0.406-8.938\r\n\t\tc0.312-0.031,0.406-4.172,0.312-3.969c0.688-0.266,0.938-2.797,0.422-3.328c0.328,0.031,1.719-1.484,1.719-1.703\r\n\t\tc-1.75,0-2.984-0.094-4.547-0.359c-0.422,0.641,0.594,0.578,0.391,1.172c0.5,0.094,0.828,0.094,1.266-0.016\r\n\t\tc-0.094,0.141-0.031,0.141,0.109,0.109c-0.891,0.312-1.797,0.375-2.844,0.594c0.578-0.75,0.266-1-0.469-1.281\r\n\t\tc0.469-0.188,1.234-0.453,1.281-0.859c-0.5-0.125-1.266,0.047-1.656-0.734c0.234,0.062,0.422-0.031,0.625,0\r\n\t\tc-0.141-0.156-0.234-0.281-0.359-0.438c0.047-0.188-1.531,0.656-1.719,0.719c-0.531,0.25-0.703,0.938-0.734,1.375\r\n\t\tc-0.516-0.344-1.594,1.406-1.734,1.719c-0.594,1.312,0.297,1.219,0.156,2.406c-0.969-0.156-1.484,0.125-2.375,0.375\r\n\t\tc0.469-1.188-0.812-1.25-1.859-1.5c-0.078,0.375,0.016,0.562,0.234,0.906c-0.094-0.062-0.172-0.156-0.266-0.25\r\n\t\tc0.031,0.156,0.047,0.281,0.062,0.406c-0.141-0.062-0.109-0.156-0.25-0.25c-0.031,0.25-0.031,0.094-0.078,0.312\r\n\t\tc-0.375-0.125-0.344-0.531-0.375-0.938c-0.172,0.688-0.5,0.719-0.172,1.781c-0.281-0.094,0.031-0.156-0.234-0.25\r\n\t\tc-0.188,0.688,0.125,0.031-0.016,0.688c0.453,0.062,0.984,0.781,1.031,1.469c-0.203-0.281-0.328-0.469-0.672-0.5\r\n\t\tc0.031,0.406,0.219-0.188-0.031,0.625c-0.219-0.156-0.438-0.219-0.703-0.344c-0.047,0.156,0.125,0.312,0.172,0.531\r\n\t\tc-0.312,0-0.25-0.031-0.594-0.156c-0.281,1.219-0.719-0.312-0.922,0.25c-0.188-0.594-0.391-1.688,0.344-1.25\r\n\t\tc0-0.156,0.078-0.188,0.203-0.094c0.047-0.438-0.75-0.344-0.312-1.125c-0.141,0.031-0.266,0.062-0.375,0.062\r\n\t\tc0.094-0.469-0.25-0.656-0.141-1.219c-0.172-0.062-0.234,0.125-0.359,0.25c0.109-0.562,0.312-1.75,0.219-2.281\r\n\t\tc-0.031-0.156-0.031-2.031-1.094-2.031c0.094-0.312-1.25-1.531-1.344-1.562c-0.219,0-0.312-1.938-0.281-2.312\r\n\t\tc-0.188,0.312-0.656,0.875-0.844,0.781c-0.031-0.656-0.094-0.938,0.312-1.281c-0.406-0.156-0.875-0.125-1.219-0.188\r\n\t\tc-0.25,0.625-0.875,1.844-0.156,2.156c0.281,0.062,0.625,0.75,0.438,1.156c0.516,0.156,0.594,1.844,1.562,1.969\r\n\t\tc-0.094,0.156-0.188,0.312-0.281,0.438c0.812,0.219,1.25,1.688,1.125,2.219c-0.266-0.094-0.438-0.906-0.719-0.906\r\n\t\tc-1.203,0.656,0.031,0.938-0.281,1.594c-0.172-0.031-1,1.438-1.656,1.219c2.047-3.625-2.922-4.562-2.094-8.438\r\n\t\tc-0.516-1.156-2.172-0.938-2.875-0.25c-0.406,0.406-3.562-2.312-3.062,0.719c-0.922-0.344-2.422,0.938-3.094,1.281\r\n\t\tc-0.656,0.312-0.125,0.719-0.438,1.125c-0.156,0.562-1.031,0.5-1.188,1.156c-1.406,0.875-2.156,0.094-3.562,0.344\r\n\t\tc-1.094,0.219-1-0.188-1.266-1.156c-0.078-0.344-1.562-0.625-1.859-0.75c0.25-0.844,0.438-1.469,0.656-2.031\r\n\t\tc-0.312-0.094-0.031,0.125-0.344,0.062c0.062-0.188,2.281-3.281,1.453-3.438c0.547-0.438,0.516-0.969,0.219-1.531\r\n\t\tc0.188,0.062,1.141-0.156,1.141-0.062c0.344-0.531,1.156,0.406,1.469,0.469c0.625,0.188,3.25,1.875,3.719,1.5\r\n\t\tc0.344-0.312,1.578-2.688,1.062-2.844c-0.062-0.719-0.891-0.938-0.391-1.688c-0.625-0.188,0.172-0.281-0.438-0.5\r\n\t\tc0.047-0.281,0.188-0.156,0.359-0.219c-0.312-0.125-0.406-0.281-0.5,0.156c-0.281-0.094-0.344-0.531-0.25-0.781\r\n\t\tc-0.297,0-0.406-0.25-0.438-0.547c0.031-0.078,0.062-0.141,0.172-0.078c-0.172-0.656,0.016-0.562,0.594-0.312\r\n\t\tc-0.047,0.156,1.438,8.078,1.906,8.266c0.109-0.594,0.109,6.328,0,6.328c0.141,0,0.312,0,0.453,0c-0.031,0,2.312-7.719,2.406-7.781\r\n\t\tc0.531-0.328,0.062-4.781,1.125-4.484c0.156-0.281,0.938-1.953,1.125-1.922c-0.25-0.094-0.062-1.125-0.156-1.344\r\n\t\tc0,0,0.5,0.125,0.156-0.094c0.094,0.094,0.172-0.078,0.25,0c0.516-1.781,2.25-2.406,3.094-1c0.406-0.922,0.719-0.219,1.078-0.562\r\n\t\tc0.234-0.5,0.422-1.125,0.578-1.719c0.125,0.031-0.641-3.312,1.5-2.438c0.188-0.812-0.109-0.547-0.531-0.734\r\n\t\tc0.125,0.016,0.188,0.078,0.188,0.234c-0.328,0.062-0.312,0.25-0.188-0.25c-0.25,0.094-0.266,0.281-0.516,0.188\r\n\t\tc0.375-0.812,1.406-0.469,2.312-0.969c-0.266,0.656-0.234,0.969-0.953,0.906c0.141,0.062,0.344,0.094,0.5,0.125\r\n\t\tc-0.25,0.781,0.281,11.281-0.453,11.062c-0.234,0.281-0.703,10.781-0.75,10.781c0.219,0,0.422,0,0.609,0\r\n\t\tc-0.188,0,0.094-9.469-0.219-9.016c-0.094-0.188-0.344-5.703-0.531-5.766c0.031,0.531-0.062-2.344-0.172-1.781\r\n\t\tc0.141,0.031,0.266-1.156,0.422-1.109c-0.625,0.469-0.172,0.109-0.25,0.672c0.359,0.25,0.391-0.281,0.75,0.25\r\n\t\tc0.109-0.344,0.672-0.469,1.125-0.656c-0.344,1.25,4.219,0.656,4.656,0.969c-0.047,0.375-0.25-0.203-0.406,0.344\r\n\t\tc0.281-0.031,0.531-0.094,0.812-0.125c-0.062,0.125-0.094,0.266,0.047,0.328c0.172-0.188,0.484-0.484,0.625-0.641\r\n\t\tc-0.672-0.25,0.266-0.594,0.5-0.719c-0.031,0.125-0.078,0.281-0.109,0.438c1.344-0.656,0.672-2.906,2.578-3.312\r\n\t\tc-0.266,0.406-0.219,0.625,0.109,1.062c0.828,0.969,1.109-0.969,1.406-1.5c-0.125-0.062-0.281-0.094-0.438-0.125\r\n\t\tc0.188-0.688,0.188-0.719,0.359-1.25c0.875,0.156,3.406,0.531,3.734-0.031c-0.094,0.219,1.219,0.125,1.594,0.219\r\n\t\tc0.125-0.469-1.062-0.969-1.438-1.5c0.25,0.094,0.328,0,0.281-0.281c-1.125-0.125-2.062,0.688-2.984,0.375\r\n\t\tc-1.297-0.125-0.375-0.438-1.359-1.531c-0.031,0.156-0.047,0.312-0.109,0.469c-0.562-0.156,0.062-2.219,0.312-2.781\r\n\t\tc0.172-0.344-0.172-0.719,0.531-0.938c0.109-0.031,0.797-0.469,1.094-0.625c0.172,0.062,1.828-1.5,1.672-1.812\r\n\t\tc0.016,0-0.062-1.094-0.094-0.906c0-0.062-1.156-0.438-1.375-0.75c-0.25,0.375-0.344,0.812-0.906,0.594\r\n\t\tc-0.375,0.844-0.688,1.688-1.797,2.375c-0.703,0.375-0.812,0-1.266,0.625c-0.453,0.281-0.562,0.656-1.094,0.375\r\n\t\tc-0.531,1.25-0.609,1.75-0.953,3.125c0.297,0.219,0.453,0.219,0.453-0.062c0.312,0.281,0.047,0.344,0.531,0.469\r\n\t\tc0,0.125-0.109,0.844,0.172,0.906c-0.297,0.156-0.391,0.375-0.906,0.438c1.203,0.25-0.922,0.812-1.516,0.688\r\n\t\tc0.422,0.469-0.875,2.219-1.125,2.625c0.25,0.031,0.281-0.094,0.5-0.188c-0.062,0.25-0.312,0.5-0.469,0.688\r\n\t\tc-0.094-0.156-0.141-0.156-0.078-0.344c-1.359-0.531-1.703,1.156-3.078,0.594c0.469-1.375,0.531-1.125,0.344-2.781\r\n\t\tc-0.359-0.125,0.062-2.125,0.109-2.375c-0.578-0.125-1.547,0.688-2.266,0.5c-1.781,0.188-1.859-0.188-1.359-1.969\r\n\t\tc-0.297-0.156-0.328-0.156-0.719-0.219c0.031-0.125,0.047-0.219,0.172-0.312c0.594,0.188,0.969-0.094,1.281-0.781\r\n\t\tc-0.562-0.156-0.391,0-0.984-0.156c0.172-0.156,0.281,0.031,0.359-0.219c-0.797-0.25-0.5-0.375,0.016-0.5\r\n\t\tc-0.125-0.062-0.359-0.312-0.297-0.438c0.266,0.094,1.578,0.75,1.703,0.219c-0.234-0.125-1.078-0.281-1.672-0.375\r\n\t\tc0.172-0.5,0.125-0.156,0.281-0.406c-0.219-0.031-0.219-0.125-0.016-0.375c0.328,0.094,0.609,0.188,0.953,0.312\r\n\t\tc0.094-0.594-0.75,0.062-0.531-0.688c0.594,0.156,1.031-0.094,0.922,0.312c0.172-0.062,0.328-0.125,0.562-0.188\r\n\t\tc-0.266-0.031-0.422-0.281-0.328-0.562c0.25,0.094,0.406,0.219,0.547,0.312c0.172-0.562,0.312-0.312,0.109-0.844\r\n\t\tc0.547,0.219,0.703,0.469,0.906-0.031c0.078,0.156,0.188,0.281,0.312,0.469c0.031-0.188-0.094-0.281-0.203-0.438\r\n\t\tc0.516-0.281,0.312-0.312,0.656-0.625c-0.141,0.031-0.297,0.031-0.422,0.031c0.141-0.062,0.312-0.125,0.469-0.188\r\n\t\tc-0.219,0.438,0.469,0.312,0.531,0.344c0.125,0.438,0.219,0.312,0.516,0.625c0.203-0.438,0.859-0.438,0.953-0.688\r\n\t\tc-0.406,0.188-0.703,0.219-1.125,0.312c0.094-0.312-0.031-0.25,0-0.5c0.562,0.125,1.594-0.906,1.625-1\r\n\t\tc0.844,0.25,0.562,0.156,0.719-0.312c1.391-0.281,1.047-0.781,1.703-1.312c0.734,0.125,1.422-0.938,1.969-0.781\r\n\t\tc0.047-0.219,0.047-0.25,0.172-0.625c-0.156,0-0.297,0.031-0.438,0.062c0.031-0.219,0.125-0.25,0.312-0.094\r\n\t\tc0-0.125,0-0.156-0.031-0.188c0.125,0.031,0.219,0.062,0.422,0.312c0.203-0.156,0.656-0.438,0.797-0.625\r\n\t\tc-0.25-0.094-0.594-0.094-0.875-0.062c0,0,2.562-1.5,0.719-1.344c0.125-0.312,0.344-0.656,0.938-0.875\r\n\t\tc-0.062,0.312-0.156,0.625-0.25,0.938c0.312,0.156,0.422,0.062,0.375-0.375c0.359-0.125,0.094,0.25,0.359-0.25\r\n\t\tc0.078,0.188-5.438,0.375-5.219,0.406c0.156-0.406-5.125-0.656-5.125-0.875c0,0.156,0,0.312,0,0.5c0-0.312,5.906-0.062,5.969-0.562\r\n\t\tc0.531,0.094,2.703,0.312,3.219,0.469c0.5,0.125,1.641-0.062,1.766-0.406c0.203,0.062,1.094,0.344,1.219,0.5\r\n\t\tc-0.031-0.219,0.281-0.469,0.266-0.688c-0.109,0.031-0.031,0.062-0.125,0.094c0.062-0.125,0.125-0.219,0.031-0.344\r\n\t\tc0.438,0.125,2.109,1.344,2.266,0.125c0.391,0.156,0.125,1.219,0.516-0.375c0.391,0.312,0.406,0.219,0.625,0.312\r\n\t\tc-0.094,0.281-0.047,0.344,0.172,0.375c-0.469,0.312-0.75,0.75-0.75,1.281c0.188-0.312,1.25-1.656,1.547-1.562\r\n\t\tc0,0.469-0.312,0.656-0.375,1.031c1-0.438,0.719-1.531,1.656-1.188c-0.188,0.531,0.219,0.344-0.422,0.531\r\n\t\tc0.016,0.125,0.047,0.219,0.047,0.344c0.109-0.094,0.219-0.156,0.344-0.25c-0.125,0.188-0.188,0.438-0.281,0.625\r\n\t\tc0.156,0.031,0.5-0.656,0.625-0.875c0.125,0.25,0.219,0.594,0.219,0.75c0.188,0.031,0.297-0.094,0.469-0.062\r\n\t\tc-0.047,0.188-0.156,0.25-0.25,0.438c0.688,0.125-8.844,0.031-8.406,0.469c-0.812-0.25-10.344,0.406-10.344,0.156\r\n\t\tc0,0.188,0,0.344,0,0.531c0-0.281,9.438,0.031,9.844-0.312c0.344,0.312,5.141,0.688,5.406,0.219\r\n\t\tc0.266,0.219,2.438,0.375,2.781,0.469c-0.312,0.188,1.156,0.281,0.688,0.219c0,0.094,2.438,1.25,2.734,1.531\r\n\t\tc-0.047,0.156,2.609,1.594,2.609,2.125c-0.281,0.75,1.859,1.906-0.172,2.781c-0.078-0.031-2.328-0.062-2.078-0.5\r\n\t\tc-0.5-0.094-1.594-1.188-1.594-1.031c-0.75-0.344-0.812-1.188-1.344-1.344c0,0.25,0.156,0.719,0.375,0.781\r\n\t\tc-0.094,0.094-0.219,0.156-0.312,0.219c0.156,0.031,0.344,0.094,0.516,0.125c0.016,0.219-0.078,0.25-0.297,0.094\r\n\t\tc0.125,0.312,0.438,0.375,0.438,0.625c-0.25-0.031-0.344-0.156-0.469,0.062c2.156,0.531,0.719,1.781,1.188,3.438\r\n\t\tc0.031-0.094,0.781,0.906,1.531,1c0-0.188,0.781-0.312,0.391-1.094c-0.5-0.875-0.312-0.5-0.078-1.5\r\n\t\tc0.469,0.312,0.688,0.719,0.562,1.125c0.688-0.031,0.719,0.281,1.469,0.688c0-0.594-0.75-2.844,0.875-2.281\r\n\t\tc0.188-0.844,1.219,0.125,0.969,0.656c0.938,0.25,1.812-3.656,1.438-4.281c0.891,1.031,1.703,0.906,1.875,2.531\r\n\t\tc-1.219-0.375-1.125,0.281-1.125,1.562c0.5,0.156,1.312-0.188,1.469-0.625c0.359-1.062,0.844-0.5,0.938-1.188\r\n\t\tc0.938,0.406,1.781-0.781,2.812-0.469c0.109-0.125,0.469-0.562,0.812-0.5c0.094,0.219,0.094,0.531,0.266,1.031\r\n\t\tc-0.484-0.062-0.297,0.125-0.578,0.219c0.375-0.031,0.406,0.062,0.656,0.125c0.219-0.5,0.406-0.094,0.641,0.094\r\n\t\tc0-1,1.297-0.938,1.828-0.156c0.375-0.375,0.625-0.375,1.234-0.438c-0.078,0.375-0.266,1.125,0.25,1.188\r\n\t\tc0.547-0.75,1.406-0.75,0.734-2.188c0.172,0.062,0.594-0.062,0.594-0.375c1.094,0.812,2.562-0.125,2.297,1.781\r\n\t\tc0.297,0.062,0.234-0.375,0.328-0.562c0.656,0.438,1.703,1.438,1.609,2.281c0.406,0.094,0.734-0.781,0.797-1.188\r\n\t\tc-0.219,0-0.062,0.219-0.391,0.156c0.109-0.625-0.141-0.781,0.25-1.281c-0.391-0.094-0.484-0.219-0.859-0.312\r\n\t\tc0.375-0.812,0.328-1.156,0.438-2c-0.594-0.125,0.562-1.094,0.594-1.219c0.359-0.75,1.562-1.469,1.562-2.219\r\n\t\tc0.453,0.031,1.375,0.094,1.719,0.531c0,0.188,0.109,1.969-0.281,1.906c0,1.188-0.125,1.906-0.156,3.188\r\n\t\tc0,0.375-0.156,0.656-0.094,1.125c0.031,0.469,0.562,0.688,0.562,1.219c0,0-0.719,2-0.75,2.188\r\n\t\tc-0.719-0.094-1.344,0.188-2.312,0.188c-0.062,0.281,0.219,0.688,0.594,0.75c1.203,0,0.812,0.938,1.531,1\r\n\t\tc0.062-0.656,0.094-0.844-0.422-1.188c2.297,0.656,1.516-2.562,2.203-3.344c0.438-0.531,1.625-0.719,1.516,0.156\r\n\t\tc0.672,0.094-0.453,2.156,0.609,2.688c0-0.875,0.938-0.219,0.938,0.094c0.078-0.062,0.156-0.094,0.25-0.156\r\n\t\tc-0.312-0.25-0.594-0.531-0.984-0.562c-0.297-0.875,0.219-0.938,0.016-1.781c-0.469-1.656-1.422-0.906-2.688-1.125\r\n\t\tc0.188-1-0.062-1.562-0.062-2.438c0.203-1.406,0.625-1.812,0.812-3.594c0.656,0-0.5,3.344,1.375,3.5c0-0.375,0.516,0,0.656,0.094\r\n\t\tc0.062-0.125,0.109-0.219,0.172-0.312c-0.922-0.094-0.953-0.875-0.953-1.531c0.906,0.094,0.719,0.906,1.406,0.125\r\n\t\tc-0.266-0.125-0.172-0.156-0.5-0.188c0.375-1.344,2.469,0.719,3.359,0.812c0,0.719-0.703,2.406-1.141,2.938\r\n\t\tc0.328,0.062,0.312-0.469,0.656-0.406c0.688,0.594-0.094,0.844,1.078,0.875c-1.359-1.031,1.047-3.938-1.297-4.125\r\n\t\tc0-0.25-0.344-0.219-0.453-0.531c-0.359-0.719,0.078-1.125,0.078-1.781c0.375-0.625,1.844-0.781,2.594-0.25\r\n\t\tc0.219-0.375,1.344-0.625,0.969,0.375c1.609,0.156-0.875-1.562,0.375-1.562c0-0.375-0.062-0.5-0.469-0.5\r\n\t\tc0.047-0.094,0.094-0.219,0.141-0.312c0.219,0,0.328,0.219,0.578,0.375c0-0.594,0.375-0.656,0.375-0.938\r\n\t\tc-0.203-0.062-0.344-0.094-0.344-0.344c1.719,0,2.312-0.656,3.969-0.594c0.031-0.281,0.109-0.25,0.109-0.438\r\n\t\tc0.672,0.312,1.672-0.375,1.672,0.844c0.25,0.094,0.328,0,0.219-0.312c0.078,0.156,0.156,0.344,0.219,0.5\r\n\t\tc0.344-0.5,0.938-1.312,1.406-0.438c0-0.531-0.125-0.438-0.391-0.781c0.109-0.062,0.234-0.125,0.359-0.188\r\n\t\tc0,0.125,0.906,0.156,1.188,0.344c-0.812-0.906,0.25-1.75,0.875-2.219c0.797,0.625,1.359-0.594,1.359,1.125\r\n\t\tc0.766,0,1.188-0.094,1.188,1.156c0.469-0.562,2.406-1.188,2.406-1.156c0.297,0.594,2.422,2.531,1.266,2.531\r\n\t\tc0.031,0.219,0.688,0.781,0.531,1.125c-0.156,0.312-0.719,0.062-0.719,0.469c-0.75,0-1.547,0.469-2.062,1\r\n\t\tc-0.141,0.156-0.188,1.469-0.875,1.469c0,0.344-1.922,1.25-1.922,1.25c0.766,0,2.984-0.688,2.859-1.438\r\n\t\tc0.188,0.094,0.344,0.219,0.5,0.312c-0.219-0.406-0.297-0.906,0.031-1.438c0.453,0.031,0.141,0.062,0.594-0.031\r\n\t\tc-0.094,0.969,1.031,1.344,0.953,0.156c0.109,0.438,0.312,0.906,0.422,1.281c-0.281-1.781,2.812-1.75,2.969-0.594\r\n\t\tc-0.25,0,2.156,1.344,2.156,1.031c0.578,0,0.719,9.219,1.422,9.094c-0.109-0.125-0.172,8.844-0.141,8.844c0.109,0,0.25,0,0.359,0\r\n\t\tc0,0-0.391-9.5-0.609-9.484c0,0.125,0.031-4.359,0.141-4.297c-0.328,0.062-1.547-3.906,0.516-4.062\r\n\t\tc0.125,0.812,0.859-0.938,0.812-0.094c0,0.375-0.75,0.188-1.078,0.5c0.172,0,0.328-0.328,0.516-0.344\r\n\t\tc-0.047,0.203-0.031,0.344-0.203,0.344c0.172,0.094,0.328,0.109,0.484,0.203c-0.062-0.547,0.125-0.203,0.406-0.516\r\n\t\tc0,0.281-0.062,0.531-0.047,0.625c0.578,0,0.516,0.531,0.75,0.891c0.141,0,0.109-1.016,0.094-1.172\r\n\t\tc0.234,0.281,0.828,1.094,1.062,1.062c-0.109-0.219-0.109-0.344,0.047-0.344c0,0.031-0.094,0.812-0.094,0.812\r\n\t\tc0.094-0.031,0.188-0.125,0.281-0.188c0.328,0.688,0.844,0.688,1.312,0.688c0,0.312-0.25,0.781,0.188,0.781\r\n\t\tc0.234-0.438,0.281-2.812,0.625-2.812c0.141,0.469,0.25,0.625,0.25,1.125c0.078-0.031,0.969-0.438,0.766-0.781\r\n\t\tc0.281,0,0.953,0.438,1.141,0.375c0.672,0.062,1.125,0.719,1.281-0.531c0.406,1.469,0.297-0.531,0.344-0.688\r\n\t\tc0.188-0.688-0.25-0.875,0.547-1.219c-0.109-0.125-0.234-0.156-0.359-0.281c0.75-0.156,2.531,0.188,3,0.5\r\n\t\tc-0.312,0.062-0.5,0.219-0.562-0.062c-0.109,0.188-0.109,0.406,0,0.656c0.531-0.156,0.719-0.344,1.266-0.406\r\n\t\tc-0.047,0.312-0.094,0.438-0.203,0.719c-0.078-0.25,0.094-0.312,0-0.531c-0.344,0-0.469,1.25-0.469,1.406\r\n\t\tc1.172-0.188,0.391-1.312,0.938-1.781C351.047,236.875,352.172,237,351.75,238.094z M361.922,254.156\r\n\t\tc0.016,0.188-0.172,0.969-0.109,1.156c-0.125,0.031-0.156,0.25-0.172,0.406C361.641,255.156,361.5,254.719,361.922,254.156z\r\n\t\t M347.031,264.188c-0.469,0.062-1.031-0.281-0.281-0.5C346.828,263.844,346.938,264,347.031,264.188z M243.281,270.031\r\n\t\tc-0.844,0.469-0.828,0.031-0.641-0.562c0.359,0.125-0.062-0.156,0.5,0C242.859,270.031,243.172,269.688,243.281,270.031z\r\n\t\t M247.953,269.656c0.625,1,0,2.281-0.969,2.625c0.062-0.312-0.094-1.469-0.062-2.094\r\n\t\tC247.109,269.875,247.578,269.719,247.953,269.656z M247.547,268.844c0.156-0.438,0.453-1.625,1.172-1.312\r\n\t\tc0,0.875-0.25,1.312-0.719,2C247.859,269.281,247.656,269.062,247.547,268.844z M249.266,274.531\r\n\t\tc0.156-0.656,1.594,0.312,2.406,0.188c-0.312,0.469-0.594,1-0.75,1.469c-0.219-0.125-0.25-0.281-0.406-0.281\r\n\t\tC250.297,275.594,249.203,274.844,249.266,274.531z M255.891,275.938c0.047-0.281,0.188-0.031,0.281,0.094\r\n\t\tC256.078,276.406,256,276,255.891,275.938z M257.438,279.875c0.109-0.344,0.422-0.031,0.484-0.031\r\n\t\tc0.375,0.344,1.766,0.531,1.656,0.969C258.703,280.906,258.297,280.531,257.438,279.875z M264.328,282.031\r\n\t\tc0.188,0,1.125-0.125,0.75-0.156c0.641,0.094,0.938,0.188,1.438-0.156C266.281,282.406,264.703,283.094,264.328,282.031z\r\n\t\t M260.781,275.938c0.578,0.094,0.047,0.094,0.391,0.25c-0.203,0-0.094,0.312-0.375,0.219\r\n\t\tC260.953,275.844,260.75,276.312,260.781,275.938z M255.797,253.156c-0.328,0.281-0.188-0.188-0.438,0.375\r\n\t\tc-0.062-0.031-0.156-0.062-0.25-0.094c0.109-0.594-0.031-0.219-0.438-0.281c0.266-0.625,0.156-0.406-0.031-0.875\r\n\t\tc0.469,0.156,0.312-0.125,0.688-0.125c-0.156,0.188-0.141,0.312,0.031,0.344c0-0.188,0.094-0.188,0.219-0.125\r\n\t\tc0.156-0.5,0.125-0.188,0.469-0.5c-0.25,0.562,0.016,0.531-0.406,0.844C255.688,252.875,255.75,253.031,255.797,253.156z\r\n\t\t M255.797,253.656c-0.156,0.375-0.781,0.531-1.25,0.5c-0.031-0.25,0-0.5,0.031-0.688\r\n\t\tC255.109,253.844,255.234,253.562,255.797,253.656z M257.453,253.469c0.125,0.188,0.266,0.406,0.375,0.625\r\n\t\tc-0.094,0-0.203,0.062-0.312,0.094C257.484,253.906,257.453,253.688,257.453,253.469z M260.797,252.406\r\n\t\tc-0.219-0.625,0.375-1.438,1.078-1.219c-0.484,0.281-0.375,0.625-0.531,0.875C261.141,252.156,260.984,252.312,260.797,252.406z\r\n\t\t M262.828,247.938c0.469-0.031,0.25-0.219,0.312-0.438c0.281,0.031,0.297,0.344,0.219,0.719\r\n\t\tC263.156,248.219,263.016,248.031,262.828,247.938z M263.891,251.094c0.203-0.594,0.781-0.469,1.297-0.156\r\n\t\tc-0.234,0.125-1.172,0.875-1.328,0.844c-0.031-0.312,0.031-0.406,0.234-0.312C264.031,251.344,263.953,251.219,263.891,251.094z\r\n\t\t M264.484,250.062c0.031-0.156,0.422-0.219,0.562-0.188c0,0.094,0.031,0.219,0.031,0.344c-0.188-0.062-0.234,0.094-0.406,0.25\r\n\t\tC264.688,250.25,264.641,250.094,264.484,250.062z M265.359,248.625c0.062-0.281,0.094-0.062,0.125-0.469\r\n\t\tc0.156,0.031,0.281,0.062,0.406,0.094c-0.031,0.156-0.094,0.344-0.109,0.469C265.641,248.688,265.5,248.656,265.359,248.625z\r\n\t\t M329.5,236.031c0.062-0.281,0.359-0.531,0.328-0.656C330.188,235.375,329.688,235.969,329.5,236.031z M350.938,231.844\r\n\t\tc-0.094,0.031-0.844,0.312-1.156,0.375c0,0.125-1.203-1.031-0.562-1.031C349.859,231.062,351.812,231.562,350.938,231.844z\r\n\t\t M346.578,235.906c-0.391-0.062-0.266-0.312-0.672-0.25c-0.031-0.156,0.5-0.875,0.469-1.031c0.969-0.656,1.406,0.5,1.625,1.219\r\n\t\tC347.688,235.875,346.5,235.625,346.578,235.906z M347.406,233c-0.234-0.594-0.344-1.219-0.25-1.25\r\n\t\tC348.016,231.594,348.156,232.312,347.406,233z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }] + }] +}; +exports.world = world; \ No newline at end of file diff --git a/dist/metrize/yen.js b/dist/metrize/yen.js new file mode 100644 index 000000000..05b470396 --- /dev/null +++ b/dist/metrize/yen.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.yen = void 0; +var yen = { + "viewBox": "0 0 512 512", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M256,0C114.609,0,0,114.609,0,256s114.609,256,256,256s256-114.609,256-256S397.391,0,256,0z M256,472\r\n\t\tc-119.297,0-216-96.703-216-216S136.703,40,256,40s216,96.703,216,216S375.297,472,256,472z" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M338.5,243.406v24h-61.828v26.797H338.5v24.031h-61.828V384h-45.688v-65.766h-61.047v-24.031h61.047v-26.797h-61.047v-24\r\n\t\th48.844l-65-115.406h52l33.469,71.281c6.703,14.594,11.438,26.781,16.156,39.797h0.781c4.734-11.844,9.859-26,16.547-40.578\r\n\t\tl34.672-70.5h50.797l-68.531,115.406H338.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M338.5,243.406v24h-61.828v26.797H338.5v24.031h-61.828V384h-45.688v-65.766h-61.047v-24.031h61.047v-26.797h-61.047v-24\r\n\t\th48.844l-65-115.406h52l33.469,71.281c6.703,14.594,11.438,26.781,16.156,39.797h0.781c4.734-11.844,9.859-26,16.547-40.578\r\n\t\tl34.672-70.5h50.797l-68.531,115.406H338.5z" + }, + "children": [] + }] + }] + }] +}; +exports.yen = yen; \ No newline at end of file diff --git a/dist/noto_emoji_regular/index.js b/dist/noto_emoji_regular/index.js new file mode 100644 index 000000000..83b426d6e --- /dev/null +++ b/dist/noto_emoji_regular/index.js @@ -0,0 +1 @@ +"use strict";Object.defineProperty(exports,"__esModule",{value:true});exports.u1F31C=exports.u1F31B=exports.u1F31A=exports.u1F319=exports.u1F318=exports.u1F317=exports.u1F316=exports.u1F315=exports.u1F314=exports.u1F313=exports.u1F312=exports.u1F311=exports.u1F310=exports.u1F30F=exports.u1F30E=exports.u1F30D=exports.u1F30C=exports.u1F30B=exports.u1F30A=exports.u1F309=exports.u1F308=exports.u1F307=exports.u1F306=exports.u1F305=exports.u1F304=exports.u1F303=exports.u1F302=exports.u1F301=exports.u1F300=exports.u1F251=exports.u1F250=exports.u1F23A=exports.u1F239=exports.u1F238=exports.u1F237=exports.u1F236=exports.u1F235=exports.u1F234=exports.u1F233=exports.u1F232=exports.u1F22F=exports.u1F21A=exports.u1F202=exports.u1F201=exports.u1F1FF=exports.u1F1FE=exports.u1F1FD=exports.u1F1FC=exports.u1F1FB=exports.u1F1FA=exports.u1F1F9=exports.u1F1F8=exports.u1F1F7=exports.u1F1F6=exports.u1F1F5=exports.u1F1F4=exports.u1F1F3=exports.u1F1F2=exports.u1F1F1=exports.u1F1F0=exports.u1F1EF=exports.u1F1EE=exports.u1F1ED=exports.u1F1EC=exports.u1F1EB=exports.u1F1EA=exports.u1F1E9=exports.u1F1E8=exports.u1F1E7=exports.u1F1E6=exports.u1F19A=exports.u1F199=exports.u1F198=exports.u1F197=exports.u1F196=exports.u1F195=exports.u1F194=exports.u1F193=exports.u1F192=exports.u1F191=exports.u1F18E=exports.u1F17F=exports.u1F17E=exports.u1F171=exports.u1F170=exports.u1F0CF=exports.u1F004=exports.u00AE=exports.u00A9=exports.u0039=exports.u0038=exports.u0037=exports.u0036=exports.u0035=exports.u0034=exports.u0033=exports.u0032=exports.u0031=exports.u0030=exports.u0023=void 0;exports.u1F393=exports.u1F392=exports.u1F391=exports.u1F390=exports.u1F38F=exports.u1F38E=exports.u1F38D=exports.u1F38C=exports.u1F38B=exports.u1F38A=exports.u1F389=exports.u1F388=exports.u1F387=exports.u1F386=exports.u1F385=exports.u1F384=exports.u1F383=exports.u1F382=exports.u1F381=exports.u1F380=exports.u1F37C=exports.u1F37B=exports.u1F37A=exports.u1F379=exports.u1F378=exports.u1F377=exports.u1F376=exports.u1F375=exports.u1F374=exports.u1F373=exports.u1F372=exports.u1F371=exports.u1F370=exports.u1F36F=exports.u1F36E=exports.u1F36D=exports.u1F36C=exports.u1F36B=exports.u1F36A=exports.u1F369=exports.u1F368=exports.u1F367=exports.u1F366=exports.u1F365=exports.u1F364=exports.u1F363=exports.u1F362=exports.u1F361=exports.u1F360=exports.u1F35F=exports.u1F35E=exports.u1F35D=exports.u1F35C=exports.u1F35B=exports.u1F35A=exports.u1F359=exports.u1F358=exports.u1F357=exports.u1F356=exports.u1F355=exports.u1F354=exports.u1F353=exports.u1F352=exports.u1F351=exports.u1F350=exports.u1F34F=exports.u1F34E=exports.u1F34D=exports.u1F34C=exports.u1F34B=exports.u1F34A=exports.u1F349=exports.u1F348=exports.u1F347=exports.u1F346=exports.u1F345=exports.u1F344=exports.u1F343=exports.u1F342=exports.u1F341=exports.u1F340=exports.u1F33F=exports.u1F33E=exports.u1F33D=exports.u1F33C=exports.u1F33B=exports.u1F33A=exports.u1F339=exports.u1F338=exports.u1F337=exports.u1F335=exports.u1F334=exports.u1F333=exports.u1F332=exports.u1F331=exports.u1F330=exports.u1F320=exports.u1F31F=exports.u1F31E=exports.u1F31D=void 0;exports.u1F428=exports.u1F427=exports.u1F426=exports.u1F425=exports.u1F424=exports.u1F423=exports.u1F422=exports.u1F421=exports.u1F420=exports.u1F41F=exports.u1F41E=exports.u1F41D=exports.u1F41C=exports.u1F41B=exports.u1F41A=exports.u1F419=exports.u1F418=exports.u1F417=exports.u1F416=exports.u1F415=exports.u1F414=exports.u1F413=exports.u1F412=exports.u1F411=exports.u1F410=exports.u1F40F=exports.u1F40E=exports.u1F40D=exports.u1F40C=exports.u1F40B=exports.u1F40A=exports.u1F409=exports.u1F408=exports.u1F407=exports.u1F406=exports.u1F405=exports.u1F404=exports.u1F403=exports.u1F402=exports.u1F401=exports.u1F400=exports.u1F3F0=exports.u1F3EF=exports.u1F3EE=exports.u1F3ED=exports.u1F3EC=exports.u1F3EB=exports.u1F3EA=exports.u1F3E9=exports.u1F3E8=exports.u1F3E7=exports.u1F3E6=exports.u1F3E5=exports.u1F3E4=exports.u1F3E3=exports.u1F3E2=exports.u1F3E1=exports.u1F3E0=exports.u1F3CA=exports.u1F3C9=exports.u1F3C8=exports.u1F3C7=exports.u1F3C6=exports.u1F3C4=exports.u1F3C3=exports.u1F3C2=exports.u1F3C1=exports.u1F3C0=exports.u1F3BF=exports.u1F3BE=exports.u1F3BD=exports.u1F3BC=exports.u1F3BB=exports.u1F3BA=exports.u1F3B9=exports.u1F3B8=exports.u1F3B7=exports.u1F3B6=exports.u1F3B5=exports.u1F3B4=exports.u1F3B3=exports.u1F3B2=exports.u1F3B1=exports.u1F3B0=exports.u1F3AF=exports.u1F3AE=exports.u1F3AD=exports.u1F3AC=exports.u1F3AB=exports.u1F3AA=exports.u1F3A9=exports.u1F3A8=exports.u1F3A7=exports.u1F3A6=exports.u1F3A5=exports.u1F3A4=exports.u1F3A3=exports.u1F3A2=exports.u1F3A1=exports.u1F3A0=void 0;exports.u1F48F=exports.u1F48E=exports.u1F48D=exports.u1F48C=exports.u1F48B=exports.u1F48A=exports.u1F489=exports.u1F488=exports.u1F487=exports.u1F486=exports.u1F485=exports.u1F484=exports.u1F483=exports.u1F482=exports.u1F481=exports.u1F480=exports.u1F47F=exports.u1F47E=exports.u1F47D=exports.u1F47C=exports.u1F47B=exports.u1F47A=exports.u1F479=exports.u1F478=exports.u1F477=exports.u1F476=exports.u1F475=exports.u1F474=exports.u1F473=exports.u1F472=exports.u1F471=exports.u1F470=exports.u1F46F=exports.u1F46E=exports.u1F46D=exports.u1F46C=exports.u1F46B=exports.u1F46A=exports.u1F469=exports.u1F468=exports.u1F467=exports.u1F466=exports.u1F465=exports.u1F464=exports.u1F463=exports.u1F462=exports.u1F461=exports.u1F460=exports.u1F45F=exports.u1F45E=exports.u1F45D=exports.u1F45C=exports.u1F45B=exports.u1F45A=exports.u1F459=exports.u1F458=exports.u1F457=exports.u1F456=exports.u1F455=exports.u1F454=exports.u1F453=exports.u1F452=exports.u1F451=exports.u1F450=exports.u1F44F=exports.u1F44E=exports.u1F44D=exports.u1F44C=exports.u1F44B=exports.u1F44A=exports.u1F449=exports.u1F448=exports.u1F447=exports.u1F446=exports.u1F445=exports.u1F444=exports.u1F443=exports.u1F442=exports.u1F440=exports.u1F43E=exports.u1F43D=exports.u1F43C=exports.u1F43B=exports.u1F43A=exports.u1F439=exports.u1F438=exports.u1F437=exports.u1F436=exports.u1F435=exports.u1F434=exports.u1F433=exports.u1F432=exports.u1F431=exports.u1F430=exports.u1F42F=exports.u1F42E=exports.u1F42D=exports.u1F42C=exports.u1F42B=exports.u1F429=void 0;exports.u1F4F3=exports.u1F4F2=exports.u1F4F1=exports.u1F4F0=exports.u1F4EF=exports.u1F4EE=exports.u1F4ED=exports.u1F4EC=exports.u1F4EB=exports.u1F4EA=exports.u1F4E9=exports.u1F4E8=exports.u1F4E7=exports.u1F4E6=exports.u1F4E5=exports.u1F4E4=exports.u1F4E3=exports.u1F4E2=exports.u1F4E1=exports.u1F4E0=exports.u1F4DF=exports.u1F4DE=exports.u1F4DD=exports.u1F4DC=exports.u1F4DB=exports.u1F4DA=exports.u1F4D9=exports.u1F4D8=exports.u1F4D7=exports.u1F4D6=exports.u1F4D5=exports.u1F4D4=exports.u1F4D3=exports.u1F4D2=exports.u1F4D1=exports.u1F4D0=exports.u1F4CF=exports.u1F4CE=exports.u1F4CD=exports.u1F4CC=exports.u1F4CB=exports.u1F4CA=exports.u1F4C9=exports.u1F4C8=exports.u1F4C7=exports.u1F4C6=exports.u1F4C5=exports.u1F4C4=exports.u1F4C3=exports.u1F4C2=exports.u1F4C1=exports.u1F4C0=exports.u1F4BF=exports.u1F4BE=exports.u1F4BD=exports.u1F4BC=exports.u1F4BB=exports.u1F4BA=exports.u1F4B9=exports.u1F4B8=exports.u1F4B7=exports.u1F4B6=exports.u1F4B5=exports.u1F4B4=exports.u1F4B3=exports.u1F4B2=exports.u1F4B1=exports.u1F4B0=exports.u1F4AF=exports.u1F4AE=exports.u1F4AD=exports.u1F4AC=exports.u1F4AB=exports.u1F4AA=exports.u1F4A9=exports.u1F4A8=exports.u1F4A7=exports.u1F4A6=exports.u1F4A5=exports.u1F4A4=exports.u1F4A3=exports.u1F4A2=exports.u1F4A1=exports.u1F4A0=exports.u1F49F=exports.u1F49E=exports.u1F49D=exports.u1F49C=exports.u1F49B=exports.u1F49A=exports.u1F499=exports.u1F498=exports.u1F497=exports.u1F496=exports.u1F495=exports.u1F494=exports.u1F493=exports.u1F492=exports.u1F491=exports.u1F490=void 0;exports.u1F600=exports.u1F5FF=exports.u1F5FE=exports.u1F5FD=exports.u1F5FC=exports.u1F5FB=exports.u1F567=exports.u1F566=exports.u1F565=exports.u1F564=exports.u1F563=exports.u1F562=exports.u1F561=exports.u1F560=exports.u1F55F=exports.u1F55E=exports.u1F55D=exports.u1F55C=exports.u1F55B=exports.u1F55A=exports.u1F559=exports.u1F558=exports.u1F557=exports.u1F556=exports.u1F555=exports.u1F554=exports.u1F553=exports.u1F552=exports.u1F551=exports.u1F550=exports.u1F53D=exports.u1F53C=exports.u1F53B=exports.u1F53A=exports.u1F539=exports.u1F538=exports.u1F537=exports.u1F536=exports.u1F535=exports.u1F534=exports.u1F533=exports.u1F532=exports.u1F531=exports.u1F530=exports.u1F52F=exports.u1F52E=exports.u1F52D=exports.u1F52C=exports.u1F52B=exports.u1F52A=exports.u1F529=exports.u1F528=exports.u1F527=exports.u1F526=exports.u1F525=exports.u1F524=exports.u1F523=exports.u1F522=exports.u1F521=exports.u1F520=exports.u1F51F=exports.u1F51E=exports.u1F51D=exports.u1F51C=exports.u1F51B=exports.u1F51A=exports.u1F519=exports.u1F518=exports.u1F517=exports.u1F516=exports.u1F515=exports.u1F514=exports.u1F513=exports.u1F512=exports.u1F511=exports.u1F510=exports.u1F50F=exports.u1F50E=exports.u1F50D=exports.u1F50C=exports.u1F50B=exports.u1F50A=exports.u1F509=exports.u1F508=exports.u1F507=exports.u1F506=exports.u1F505=exports.u1F504=exports.u1F503=exports.u1F502=exports.u1F501=exports.u1F500=exports.u1F4FC=exports.u1F4FB=exports.u1F4FA=exports.u1F4F9=exports.u1F4F7=exports.u1F4F6=exports.u1F4F5=exports.u1F4F4=void 0;exports.u1F699=exports.u1F697=exports.u1F696=exports.u1F695=exports.u1F694=exports.u1F693=exports.u1F692=exports.u1F691=exports.u1F690=exports.u1F68F=exports.u1F68E=exports.u1F68D=exports.u1F68C=exports.u1F68B=exports.u1F68A=exports.u1F689=exports.u1F688=exports.u1F687=exports.u1F686=exports.u1F685=exports.u1F684=exports.u1F683=exports.u1F682=exports.u1F681=exports.u1F680=exports.u1F64F=exports.u1F64E=exports.u1F64D=exports.u1F64C=exports.u1F64B=exports.u1F64A=exports.u1F649=exports.u1F648=exports.u1F647=exports.u1F646=exports.u1F645=exports.u1F640=exports.u1F63F=exports.u1F63E=exports.u1F63D=exports.u1F63C=exports.u1F63B=exports.u1F63A=exports.u1F639=exports.u1F638=exports.u1F637=exports.u1F636=exports.u1F635=exports.u1F634=exports.u1F633=exports.u1F632=exports.u1F631=exports.u1F630=exports.u1F62F=exports.u1F62E=exports.u1F62D=exports.u1F62C=exports.u1F62B=exports.u1F62A=exports.u1F629=exports.u1F628=exports.u1F627=exports.u1F626=exports.u1F625=exports.u1F624=exports.u1F623=exports.u1F622=exports.u1F621=exports.u1F620=exports.u1F61F=exports.u1F61E=exports.u1F61D=exports.u1F61C=exports.u1F61B=exports.u1F61A=exports.u1F619=exports.u1F618=exports.u1F617=exports.u1F616=exports.u1F615=exports.u1F614=exports.u1F613=exports.u1F612=exports.u1F611=exports.u1F610=exports.u1F60F=exports.u1F60E=exports.u1F60D=exports.u1F60C=exports.u1F60B=exports.u1F60A=exports.u1F609=exports.u1F608=exports.u1F607=exports.u1F606=exports.u1F605=exports.u1F604=exports.u1F603=exports.u1F602=exports.u1F601=void 0;exports.u2668=exports.u2666=exports.u2665=exports.u2663=exports.u2660=exports.u2653=exports.u2652=exports.u2651=exports.u2650=exports.u264F=exports.u264E=exports.u264D=exports.u264C=exports.u264B=exports.u264A=exports.u2649=exports.u2648=exports.u263A=exports.u261D=exports.u2615=exports.u2614=exports.u2611=exports.u260E=exports.u2601=exports.u2600=exports.u25FE=exports.u25FD=exports.u25FC=exports.u25FB=exports.u25CA=exports.u25C0=exports.u25B6=exports.u25AB=exports.u25AA=exports.u24C2=exports.u23F3=exports.u23F0=exports.u23EC=exports.u23EB=exports.u23EA=exports.u23E9=exports.u231B=exports.u231A=exports.u21AA=exports.u21A9=exports.u2199=exports.u2198=exports.u2197=exports.u2196=exports.u2195=exports.u2194=exports.u2139=exports.u2122=exports.u20E3=exports.u2049=exports.u203C=exports.u1F6C5=exports.u1F6C4=exports.u1F6C3=exports.u1F6C2=exports.u1F6C1=exports.u1F6C0=exports.u1F6BF=exports.u1F6BE=exports.u1F6BD=exports.u1F6BC=exports.u1F6BB=exports.u1F6BA=exports.u1F6B9=exports.u1F6B8=exports.u1F6B7=exports.u1F6B6=exports.u1F6B5=exports.u1F6B4=exports.u1F6B3=exports.u1F6B2=exports.u1F6B1=exports.u1F6B0=exports.u1F6AF=exports.u1F6AE=exports.u1F6AD=exports.u1F6AC=exports.u1F6AB=exports.u1F6AA=exports.u1F6A9=exports.u1F6A8=exports.u1F6A7=exports.u1F6A6=exports.u1F6A5=exports.u1F6A4=exports.u1F6A3=exports.u1F6A2=exports.u1F6A1=exports.u1F6A0=exports.u1F69F=exports.u1F69E=exports.u1F69D=exports.u1F69C=exports.u1F69B=exports.u1F69A=void 0;exports.uFE837=exports.uFE836=exports.uFE835=exports.uFE834=exports.uFE833=exports.uFE832=exports.uFE831=exports.uFE830=exports.uFE82F=exports.uFE82E=exports.uFE82C=exports.uFE4EE=exports.uFE4ED=exports.uFE4EC=exports.uFE4EB=exports.uFE4EA=exports.uFE4E9=exports.uFE4E8=exports.uFE4E7=exports.uFE4E6=exports.uFE4E5=exports.u3299=exports.u3297=exports.u303D=exports.u3030=exports.u2B55=exports.u2B50=exports.u2B1C=exports.u2B1B=exports.u2B07=exports.u2B06=exports.u2B05=exports.u2935=exports.u2934=exports.u27BF=exports.u27B0=exports.u27A1=exports.u2797=exports.u2796=exports.u2795=exports.u2764=exports.u2757=exports.u2755=exports.u2754=exports.u2753=exports.u274E=exports.u274C=exports.u2747=exports.u2744=exports.u2734=exports.u2733=exports.u2728=exports.u2716=exports.u2714=exports.u2712=exports.u270F=exports.u270C=exports.u270B=exports.u270A=exports.u2709=exports.u2708=exports.u2705=exports.u2702=exports.u26FD=exports.u26FA=exports.u26F5=exports.u26F3=exports.u26F2=exports.u26EA=exports.u26D4=exports.u26CE=exports.u26C5=exports.u26C4=exports.u26BE=exports.u26BD=exports.u26AB=exports.u26AA=exports.u26A1=exports.u26A0=exports.u2693=exports.u267F=exports.u267B=void 0;var u0023={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1740 1210l-86 449h383v188h-420l-113 586h-201l115-586h-399l-112 586H710l107-586H463v-188h391l89-449H567v-188h410l112-591h202l-113 591h402l115-591h197l-115 591h359v188h-396zm-685 449h399l87-449h-398z"},"children":[]}]};exports.u0023=u0023;var u0030={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M822 2195.5Q660 1931 660 1429q0-524 157-777t480-253q318 0 480.5 265.5T1940 1429q0 526-159 778.5T1297 2460q-313 0-475-264.5zm772.5-141.5q93.5-194 93.5-625 0-432-94.5-624.5T1297 612q-200 0-291.5 191T914 1429q0 433 91 626t292 193q204 0 297.5-194z"},"children":[]}]};exports.u0030=u0030;var u0031={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1665 2432h-242V1182q0-63 1-130.5t3-129.5l4-127q2-61 3-108-23 25-40.5 42.5T1358 763l-89 79-203 166-132-169 525-409h206v2002z"},"children":[]}]};exports.u0031=u0031;var u0032={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1925 2436H675v-213l480-522q83-89 194-215t177.5-255.5T1593 950q0-156-87-245t-236-89q-130 0-235 52.5T836 803L696 640q137-122 282.5-178.5T1273 405q264 0 418 145t154 390q0 134-48 256t-132.5 242-298.5 350l-385 410v11h944v227z"},"children":[]}]};exports.u0032=u0032;var u0033={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1438 1378v8q243 30 369 154t126 323q0 278-190 437.5T1197 2460q-149 0-281-23.5T667 2352v-233q119 63 258 97t267 34q236 0 360.5-98t124.5-297q0-174-131-264t-391-90H973v-207h182q217 0 338.5-103.5T1615 915q0-141-94-222t-248-81q-148 0-259.5 46.5T801 778L675 606q120-97 275-151t323-54q281 0 439.5 135T1871 898q0 190-113 317t-320 163z"},"children":[]}]};exports.u0033=u0033;var u0034={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2029 1984h-292v449h-241v-449H571v-218l908-1347h258v1337h292v228zm-533-228v-488q0-87 3.5-230t9.5-245l5-116h-13q-18 55-55.5 128.5T1378 923l-563 833h681z"},"children":[]}]};exports.u0034=u0034;var u0035={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1714.5 2282Q1525 2456 1182 2456q-138 0-268-27t-219-81v-236q84 60 228.5 96t265.5 36q228 0 343.5-110.5T1648 1814q0-196-120.5-299.5T1177 1411q-60 0-143.5 10T860 1446l-123-78 75-942h946v227h-729l-54 574q53-10 125.5-18.5t161.5-8.5q288 0 465 156.5t177 429.5q0 322-189.5 496z"},"children":[]}]};exports.u0035=u0035;var u0036={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1676 408.5q68 7.5 104 18.5v212q-48-16-108.5-24.5T1552 606q-198 0-333 80.5T1010.5 936 923 1412h17q66-119 174-176t246-57q267 0 418.5 162t151.5 446q0 312-164.5 492.5T1322 2460q-298 0-475.5-232T669 1576q0-599 219.5-887T1544 401q64 0 132 7.5zM1594 1481q-95-106-266-106-175 0-292.5 112T918 1739q0 207 110.5 359t290.5 152q172 0 271-117t99-346q0-200-95-306z"},"children":[]}]};exports.u0036=u0036;var u0037={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M918 2432l771-1775H656V430h1288v198l-760 1804H918z"},"children":[]}]};exports.u0037=u0037;var u0038={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1780.5 1156.5Q1697 1276 1505 1373q221 116 322.5 248t101.5 290q0 246-171.5 397.5T1300 2460q-298 0-463.5-142.5T671 1922q0-170 95-307t293-231q-178-114-250-238t-72-268q0-219 159-349t404-130q250 0 407 129t157 353q0 156-83.5 275.5zm-198.5 1009q103-88.5 103-251.5 0-126-89-222t-291-193l-41-19q-172 82-260 188t-88 257q0 157 97 243t282 86q184 0 287-88.5zm-569-1123q32 63.5 91 113t199 115.5q180-83 249-174t69-207q0-137-86-210t-238-73q-145 0-230.5 72.5T981 890q0 89 32 152.5z"},"children":[]}]};exports.u0038=u0038;var u0039={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M922.5 2452q-70.5-8-102.5-17v-213q48 17 108.5 25.5t119.5 8.5q297 0 453.5-184t175.5-622h-18q-61 114-167.5 173.5T1238 1683q-266 0-418-163t-152-445q0-306 163-490t447-184q302 0 478 235t176 649q0 593-218 884t-658 291q-63 0-133.5-8zm82.5-1071.5q94 106.5 268 106.5 173 0 291-111.5t118-252.5q0-209-110-360t-291-151q-174 0-272 118.5T911 1075q0 199 94 305.5z"},"children":[]}]};exports.u0039=u0039;var u00A9={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2201.5 1943Q2062 2184 1821 2323.5T1300 2463q-285 0-529-144.5T392.5 1934 258 1422q0-278 140-520t382-382 520-140q272 0 512 134.5T2196.5 893t144.5 529q0 280-139.5 521zM2115 951.5Q1989 734 1771 607t-471-127q-252 0-470.5 126.5T484.5 951 358 1422t127 471 345 344 470 126q253 0 470.5-126.5t344-344T2241 1422t-126-470.5zM1799 1889q0 2 1 6 0 16-78.5 66.5t-173 77.5-204.5 27q-288 0-475.5-183T681 1422q0-279 187.5-461.5T1344 778q134 0 242.5 33t191.5 99q6 5 6 11 0 4-2 7l-148 270q-3 6-9 6h-6q-6 0-24.5-15.5t-89.5-43-160-27.5q-136 0-225.5 84.5T1030 1422q0 134 89 219t226 85q75 0 158.5-31t112.5-53.5 39-22.5q6 0 10 7z"},"children":[]}]};exports.u00A9=u00A9;var u00AE={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2201 1942q-140 242-381.5 381.5T1300 2463q-281 0-525-143t-380.5-384.5T258 1420t136.5-515.5T775 520t525-143q278 0 519.5 139.5T2201 898t140 522-140 522zm-86.5-992.5Q1988 731 1769.5 604T1300 477q-249 0-468.5 126.5T485 948.5 358 1420t127 471.5 346.5 345T1300 2363q251 0 469.5-127t345-345.5T2241 1420t-126.5-470.5zM1848 1993q6 6 6 16 0 11-8.5 19.5t-19.5 8.5h-259q-15 0-23-11l-297-396h-103v379q0 11-7.5 18.5t-18.5 7.5H859q-11 0-18.5-7.5T833 2009V816q0-11 7.5-19.5T859 788h529q175 0 300.5 124.5T1814 1209q0 126-71.5 232.5T1551 1598zm-486-611q65 0 112.5-51t47.5-122q0-76-46.5-125t-120.5-49h-206q-6 0-6 7v334q0 4 3 5t12 1h204z"},"children":[]}]};exports.u00AE=u00AE;var u1F004={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2143 701q51 23 81.5 68.5T2255 876v436q0 80-3.5 125.5T2212 1528l-678 910q-32 46-93.5 75t-121.5 29q-59 0-108-25l-752-356q-53-25-83.5-70T345 1989v-539q0-30 10.5-60t30.5-56l681-910q36-48 94.5-76t122.5-28q58 0 106 23zM510 1521l752 358q12 6 27 8.5t30 2.5q36 0 68.5-15t52.5-41l681-910q19-26 19-53 0-22-12.5-37t-35.5-26l-751-358q-27-12-57-12-38 0-70 15t-51 41l-682 910q-11 14-14.5 25t-3.5 24q0 23 12.5 40.5T510 1521zm1628-422l-604 806q-36 48-90.5 76t-120.5 28q-29 0-58-6t-54-19l-748-354v226q0 21 12.5 38t34.5 27l752 358q12 6 27 9t30 3q36 0 68.5-15t52.5-41l678-909q11-14 15-27t4-27zm-1254 33q-9-3-9-13 0-2 1-5l2-4 234-316q4-6 11-6 4 0 7 2l243 116 164-215q4-5 11-5 4 0 7 1l149 71q2 2 4.5 6t2.5 8q0 5-3 8l-160 210 234 112 5 5q2 3 2 8t-3 8l-233 318q-3 5-12 5-4 0-5-1l-246-118-187 245q-6 6-11 6-2 0-3-1t-3-1l-149-71q-3-2-6.5-5.5t-3.5-8.5q0-3 1-5l187-243zm588 131q3 2 5 2t3-2l80-106q2 0 2-5t-4-7l-94-44-89 116zm-273-131l89-116-96-46q-2 0-3-1-2 0-3 1l-4 3-77 103-1 3q0 2-1 4 0 6 7 7z"},"children":[]}]};exports.u1F004=u1F004;var u1F0CF={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1986 289q66 0 116.5 48.5T2153 456v1945q0 69-49.5 117.5T1986 2567H614q-68 0-117.5-48.5T447 2401V456q0-69 50-118t117-49h1372zm52 167q0-21-15.5-36.5T1986 404H614q-21 0-36.5 15.5T562 456v1945q0 20 15.5 35.5T614 2452h1372q21 0 36.5-15.5t15.5-35.5V456zm-287.5 1623q-18.5 19-44.5 19-27 0-46.5-19t-19.5-46q0-8 2-15t5-14q-99-37-137.5-117.5T1428 1768q-14 38-20 78t-6 91q0 53-25.5 103.5T1307 2127q14 17 14 38 0 26-19.5 45.5T1256 2230q-27 0-46.5-19.5T1190 2165t19-44.5 45-19.5q0-28-6.5-50t-16.5-45l-22-48q-14-29-25-72t-11-82v-13q0-6 1-12-49 34-90 121t-141 124q4 8 4 21 0 27-19 46t-46 19q-26 0-45-19t-19-46 19-46 45-19q12 0 24 5 30-38 36-124t46-148q-17 11-58.5 41T822 1784q-18 0-32.5-2.5T763 1776q-9 13-23.5 21t-31.5 8q-27 0-46-19t-19-46 19-46 46-19q26 0 44.5 17.5T773 1736q18-8 30.5-22.5T828 1681l23-36q18-28 45.5-50.5T975 1557q-15-42-19-77t-4-78q0-77 14.5-138.5T1010 1129t48.5-109 19.5-68q0-35-18.5-57t-53.5-22q-29 0-57.5 21T901 940q25 23 25 58 0 32-22.5 54.5T849 1075q-33 0-56-22.5T770 998t22.5-55 54.5-24q22-121 82-183.5t156-62.5q58 0 107 30.5t82 81.5q42-102 120.5-154.5T1582 578q20 0 36.5 1.5t28.5 3.5q10-18 28-29.5t40-11.5q32 0 55 23t23 56q0 32-23 55.5t-55 23.5q-24 0-43.5-13.5T1643 652q-66 30-102 95.5T1497 905q14-6 47.5-14t73.5-8q95 0 167 62.5t72 159.5q0 38-9 74t-17 57q14 11 22.5 27t8.5 35q0 32-23 55.5t-56 23.5q-32 0-54.5-23.5T1706 1298q0-30 19.5-52t49.5-25q0-5 1-18 0-42-31-74.5t-60-32.5q-32 0-51 38t-19 102q0 17 3 38l13 91q3 23 3 42 0 39-5.5 70.5T1615 1532q61 4 117 58t106 61q4-23 21.5-39t42.5-16q26 0 45.5 19.5t19.5 46.5q0 26-19.5 45.5T1902 1727t-45-19q-18 12-41 22t-49 10q-41 0-92-28.5t-85-35.5q22 31 36 64.5t18 65.5l7 60q3 30 10.5 56.5t26.5 47.5l9-2h9q26 0 44.5 19t18.5 46-18.5 46zm-633-451.5Q1197 1697 1290 1697q103 0 180.5-81.5T1548 1405q0-99-38-158.5t-85-59.5q-34 0-68 20t-67 76q-14-42-47-76t-72-34q-58 0-95.5 74t-37.5 151q0 160 79.5 229.5zM1182 1416q-23-2-40.5-16t-17.5-42q0-31 18.5-49t45.5-18q37 0 60.5 33t23.5 74q0 30-10.5 51t-10.5 36q0 18 20 18 16 0 27-8t25-8q5 0 5 6 0 24-76 58 0 5 15.5 9t27.5 4q33 0 61.5-15t47.5-31l10-8q5-3 12-3 5 0 9.5 3t4.5 16q0 45-49 75t-90 30q-52 0-103-35t-51-79q0-5 1.5-8.5t4.5-3.5q6 0 11 6.5t11 6.5q4 0 5-2t20-39l14-30q4-11 4-20t-7-9zm172.5-102q23.5-22 55.5-22 20 0 28 13.5t8 30.5q0 32-20.5 51.5T1379 1407q-23 0-35.5-12.5T1331 1364q0-28 23.5-50zM650 618.5q14-14.5 37-14.5t36.5 14.5T737 653q0 21-13.5 35.5T687 703t-37-14.5-14-35.5q0-20 14-34.5zM647 930q0-2 3-2h40q14 0 23.5 9t9.5 23q0 22-20 30l23 30v2l-2 1h-18q-3 0-4-1l-23-29h-8v28q0 2-2 2h-19q-3 0-3-2v-91zm23-216q2 0 2 2v35l24-36 4-1h20q2 0 2 1v2l-27 40 31 49q0 3-4 3h-18q-4 0-5-3l-27-43v44q0 2-2 2h-20q-2 0-2-2v-91q0-2 2-2h20zm7 126v18h32q2 0 2 2v15q0 2-2 2h-32v20h42q2 0 2 2v16q0 2-2 2h-64q-2 0-2-2v-93q0-2 2-2h64q2 0 2 2v16q0 2-2 2h-42zm-29-274q0-2 5-3l15-5q2 0 6 6t11 6q10 0 12-6.5t2-18.5v-47q0-2 2-2h22q3 0 3 2v49q0 46-40 46-15 0-25.5-7.5T648 566zm20 105.5q7 7.5 19 7.5t19-7.5 7-18.5-7-18-19-7-19 7-7 18 7 18.5zm3 302.5h17q5 0 9-3.5t4-10.5q0-6-4-9.5t-9-3.5h-17v27zm1293 1262.5q-14 14.5-37 14.5t-36.5-14.5-13.5-34.5q0-21 13.5-35.5t36.5-14.5 37 14.5 14 35.5q0 20-14 34.5zm3-311.5q0 2-3 2h-40q-14 0-23.5-9t-9.5-23q0-22 20-30l-23-30v-2l2-1h18q3 0 4 1l23 29h8v-28q0-2 2-2h19q3 0 3 2v91zm-23 216q-2 0-2-2v-35l-24 36-4 1h-20q-2 0-2-1v-2l27-40-31-49q0-3 4-3h18q3 0 5 3l27 43v-44q0-2 2-2h20q2 0 2 2v91q0 2-2 2h-20zm-7-126v-18h-32q-2 0-2-2v-15q0-2 2-2h32v-20h-42q-2 0-2-2v-16q0-2 2-2h64q2 0 2 2v93q0 2-2 2h-64q-2 0-2-2v-16q0-2 2-2h42zm29 274q0 2-5 3l-15 5q-2 0-6-6t-11-6q-10 0-12 6.5t-2 18.5v47q0 2-2 2h-22q-3 0-3-2v-49q0-46 40-46 15 0 25.5 7.5t12.5 19.5zm-20-105.5q-7-7.5-19-7.5t-19 7.5-7 18.5 7 18 19 7 19-7 7-18-7-18.5zm-3-302.5h-17q-5 0-9 3.5t-4 10.5q0 6 4 9.5t9 3.5h17v-27z"},"children":[]}]};exports.u1F0CF=u1F0CF;var u1F170={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2222 394q46 0 79 33t33 79v1845q0 45-33.5 78t-78.5 33H377q-45 0-78-33t-33-78V506q0-45 33-78.5t78-33.5h1845zm-196 1808q13 0 23-8.5t10-22.5q0-7-3-13L1503 684q-9-22-32-22h-345q-9 0-18 5.5t-12 16.5L539 2164q0 3-1 5 0 14 10.5 23.5t24.5 9.5h363q10 0 19-6.5t12-15.5l85-253h496l84 253q3 9 11.5 15.5t19.5 6.5h363zm-727-1022l145 434h-289z"},"children":[]}]};exports.u1F170=u1F170;var u1F171={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2222 394q47 0 79.5 33t32.5 78v1845q0 45-32.5 78t-79.5 33H377q-47 0-79-33t-32-78V505q0-45 32-78t79-33h1845zm-800 1811q202 0 347.5-130t145.5-314q0-108-54-202.5T1710 1401q63-60 99-138.5t36-167.5q0-182-145-313.5T1352 650H793q-14 0-23.5 9.5T760 683v1489q0 14 9.5 23.5t23.5 9.5h629zm-81-651q66 0 116.5 54t50.5 128q0 76-50 129.5t-117 53.5h-218q-7 0-7-9v-348q0-8 7-8h218zm-219-292q-3 0-5-2t-2-4V956q0-2 2-5.5t5-3.5h207q62 0 105.5 47.5T1478 1105q0 62-43.5 109.5T1329 1262h-207z"},"children":[]}]};exports.u1F171=u1F171;var u1F17E={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2222 393q46 0 79 33t33 79v1845q0 45-33.5 78t-78.5 33H377q-45 0-78-33t-33-78V505q0-45 33-78.5t78-33.5h1845zm-194.5 616.5Q1919 822 1727 718.5T1299 615q-235 0-427.5 104T571 1010t-108 417q0 227 107 415t300 292.5 429 104.5 428.5-104 300.5-292 108-416q0-230-108.5-417.5zm-435.5 701Q1478 1822 1299 1822q-180 0-293-111.5T893 1427q0-173 113.5-284t292.5-111 293 110.5 114 284.5q0 172-114 283.5z"},"children":[]}]};exports.u1F17E=u1F17E;var u1F17F={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2222 393q45 0 78 32.5t33 79.5v1845q0 47-33 79t-78 32H377q-45 0-78-32t-33-79V505q0-47 33-79.5t78-32.5h1845zm-799 259H763q-14 0-23.5 9.5T730 684v1490q0 13 9.5 23t23.5 10h322q14 0 24-10t10-23v-474h304q219 0 375-155t156-370q0-214-156-368.5T1423 652zm-41 306q84 0 146.5 64.5T1591 1175t-61.5 152-147.5 64h-257q-2 0-6-2.5t-4-5.5V967q0-2 4-5.5t6-3.5h257z"},"children":[]}]};exports.u1F17F=u1F17F;var u1F18E={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2222 393q47 0 79 32t32 79v1845q0 47-32 79t-79 32H377q-47 0-79-32t-32-79V504q0-47 32-79t79-32h1845zm-211 1008q42-60 65-138.5t23-169.5q0-180-88.5-308.5T1799 656h-333q-11 0-18 7.5t-7 18.5v1489q0 11 7 18.5t18 7.5h375q122 0 211-128.5t89-309.5q0-112-35.5-205.5T2011 1401zm-993-718q-2-8-9.5-14t-16.5-6H788q-10 0-17 6t-9 14L432 2164q0 13 8 19t18 6h216q20 0 25-21l50-254h283l49 254q2 10 9.5 15.5t15.5 5.5h217q8 0 16-6t8-19v-5zm775 872q41 0 70.5 50.5T1893 1735t-29.5 129.5-70.5 50.5h-130q-5 0-5-6v-349q0-5 5-5h130zm-130-296q-7 0-7-6V953q0-5 7-5h122q36 0 63.5 45t27.5 111q0 65-27.5 110t-63.5 45h-122zm-772-58l82 414H808z"},"children":[]}]};exports.u1F18E=u1F18E;var u1F191={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2222 393q45 0 78 32.5t33 79.5v1845q0 47-33 79t-78 32H377q-45 0-78-33t-33-78V505q0-45 33-78.5t78-33.5h1845zm33 112q0-14-9.5-23.5T2222 472H377q-14 0-23.5 9.5T344 505v1845q0 14 9.5 23t23.5 9h1845q14 0 23.5-9t9.5-23V505zm-919 1497v9l-3 4q-142 198-347 198-221 0-363.5-221.5T480 1417q0-351 142.5-572.5T986 623q98 0 172 34.5t120.5 83T1325 797q-2 3-2 4l-112 334q-5 10-15 10-9 0-22.5-21t-67-54-120.5-33q-100 0-167.5 107T751 1417q0 167 67 275t168 108q61 0 125-41.5t81.5-66.5 30.5-25q9 0 11 9zm741-113q11 0 18.5 7t7.5 17v246q0 10-7.5 18t-18.5 8h-627q-11 0-19-8t-8-18V678q0-11 8-18.5t19-7.5h197q10 0 18 7.5t8 18.5v1211h404z"},"children":[]}]};exports.u1F191=u1F191;var u1F192={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2222 393q45 0 78 32t33 79v1845q0 47-33 79.5t-78 32.5H377q-45 0-78-33.5t-33-78.5V504q0-45 33-78t78-33h1845zm33 111q0-14-9.5-23.5T2222 471H377q-14 0-23.5 9.5T344 504v1845q0 14 9.5 23.5t23.5 9.5h1845q14 0 23.5-9.5t9.5-23.5V504zM1242.5 1927.5Q1186 2124 1099 2124t-143.5-196.5T899 1427q0-303 56.5-501T1099 728t143.5 198 56.5 501q0 304-56.5 500.5zm442.5-1q-56 197.5-144 197.5-87 0-142.5-198t-55.5-499 55.5-500T1541 728q88 0 144 198.5t56 500.5-56 499.5zM841 1641q6 2 8 8l54 288v4q-76 176-188 176-118 0-194.5-194.5T444 1419q0-308 76-503.5T715 720q56 0 100.5 37.5T896 867v7l-59 293q-2 8-8 8-11 0-16-17.5t-36-61.5-60-44q-49 0-81.5 102.5T603 1419q0 160 32.5 263.5T717 1786q27 0 66-56t43.5-72.5T841 1641zm1295 207q18 0 18 16v222q0 8-5 13t-13 5h-333q-8 0-13-5t-5-13V750q0-7 5-11.5t13-4.5h105q17 0 17 16v1098h211zm-991-709.5q-18-111.5-46-111.5-27 0-46 109.5t-19 290.5 19 290.5 46 109.5q28 0 46-113t18-287q0-177-18-288.5zm443 0q-18-111.5-47-111.5-27 0-45 111.5t-18 288.5 18 288.5 45 111.5q29 0 47-111.5t18-288.5-18-288.5z"},"children":[]}]};exports.u1F192=u1F192;var u1F193={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2222 393q45 0 78 32.5t33 79.5v1845q0 47-33 79t-78 32H377q-45 0-78-33t-33-78V505q0-45 33-78.5t78-33.5h1845zm33 112q0-14-9.5-23.5T2222 472H377q-14 0-23.5 9.5T344 505v1845q0 14 9.5 23t23.5 9h1845q14 0 23.5-9t9.5-23V505zm-952 1632v4q0 8-5 14t-14 6h-107q-8 0-13-3.5t-6-11.5l-124-468h-24v464q0 18-19 18H884q-19 0-19-18V723q0-19 19-19h219q81 0 132 144.5t51 342.5q0 154-31.5 277.5T1174 1643zm412-1433q8 0 13.5 5.5t5.5 13.5v235q0 8-5.5 13t-13.5 5h-215v304h163q8 0 13.5 5.5t5.5 12.5v236q0 19-19 19h-163v336h215q8 0 13.5 5t5.5 13v235q0 8-5.5 13.5t-13.5 5.5h-342q-8 0-13-5.5t-5-13.5V723q0-8 5-13.5t13-5.5h342zm432 0q7 0 12.5 5.5t5.5 13.5v235q0 8-5.5 13t-12.5 5h-217v304h165q8 0 13.5 5.5t5.5 12.5v236q0 19-19 19h-165v336h217q7 0 12.5 5t5.5 13v235q0 8-5.5 13.5t-12.5 5.5h-341q-19 0-19-19V723q0-19 19-19h341zm-1354 0q8 0 13 5.5t5 13.5v235q0 8-5 13t-13 5H595v319h164q8 0 13 6t5 14v235q0 8-5 13t-13 5H595v574q0 8-6 13.5t-14 5.5H469q-8 0-13-5.5t-5-13.5V723q0-8 5-13.5t13-5.5h324zm296 690q30 0 50.5-59t20.5-144q0-86-20.5-145t-50.5-59h-85q-5 0-5 6v396q0 5 5 5h85z"},"children":[]}]};exports.u1F193=u1F193;var u1F194={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2222 393q45 0 78 32.5t33 79.5v1845q0 47-33 79t-78 32H377q-45 0-78-33t-33-78V505q0-45 33-78.5t78-33.5h1845zm33 112q0-14-9.5-24t-23.5-10H377q-14 0-23.5 10t-9.5 24v1845q0 13 9.5 22.5t23.5 9.5h1845q14 0 23.5-9.5t9.5-22.5V505zm-740 160q261 0 437 203.5t176 559.5-176 560.5-437 204.5H988q-13 0-21-9t-8-21V694q0-11 8-20t21-9h527zm-15 1169l23-1q62-2 130.5-45.5T1765 1651t43-223q0-185-88.5-294.5T1500 1024h-192q-11 0-19.5 9t-8.5 20v752q0 11 8.5 20t19.5 9h192zM819 665q13 0 22.5 9t9.5 21v1481q0 14-9.5 23t-22.5 9H522q-14 0-22.5-9t-8.5-23V695q0-12 8.5-21t22.5-9h297z"},"children":[]}]};exports.u1F194=u1F194;var u1F195={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2222 393q45 0 78 32.5t33 79.5v1845q0 47-32 79t-79 32H377q-47 0-79-33t-32-78V505q0-45 33-78.5t78-33.5h1845zm33 112q0-14-9.5-23.5T2222 472H377q-14 0-23.5 9.5T344 505v1845q0 14 9.5 23.5t23.5 9.5h1845q14 0 23.5-9.5t9.5-23.5V505zm-823 199q8 0 14 5.5t6 13.5v237q0 7-6 12.5t-14 5.5h-237v304h181q8 0 13.5 5.5t5.5 13.5v236q0 9-5.5 14.5t-13.5 5.5h-181v336h237q8 0 14 5.5t6 13.5v236q0 8-6 13.5t-14 5.5h-374q-8 0-14.5-5.5t-6.5-13.5V723q0-8 6.5-13.5t14.5-5.5h374zm-472-2q8 0 14.5 6.5T981 723v1425q0 8-6.5 14t-14.5 6H843q-16 0-20-16l-202-835v831q0 8-6.5 14t-15.5 6H482q-8 0-14-6t-6-14V723q0-8 6-14.5t14-6.5h117q8 0 13.5 4.5T619 717l203 836V723q0-8 6.5-14.5T843 702h117zm1183 8q9 0 14.5 6.5t5.5 15.5l-126 1410q0 9-6.5 14t-13.5 5h-102q-19 0-19-19l-67-705-64 705q0 3-4.5 11t-16.5 8h-101q-19-8-19-19L1497 732q0-8 4.5-15t15.5-7h126q8 0 14 5t6 13l43 589 59-589q0-7 5.5-12.5t13.5-5.5h92q7 0 13.5 4t6.5 14l59 589 41-589q3-18 21-18h126z"},"children":[]}]};exports.u1F195=u1F195;var u1F196={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2222 393q46 0 78.5 32t32.5 80v1845q0 47-33 79t-78 32H377q-45 0-78-33t-33-78V505q0-46 32.5-79t78.5-33h1845zm33 112q0-14-9.5-24t-23.5-10H377q-14 0-23.5 10t-9.5 24v1845q0 13 9.5 22.5t23.5 9.5h1845q14 0 23.5-9.5t9.5-22.5V505zm-111 858q5 0 9.5 3.5t4.5 8.5q0 366-105.5 595.5T1744 2200q-198 0-324.5-213T1293 1438q0-337 126.5-550T1744 675q95 0 176 52t142 152l1 7-1 5-126 258q-2 3-4.5 4t-5.5 3q-11 0-26.5-26t-65.5-64-90-38q-91 0-153 121t-62 289q0 165 61.5 294t153.5 129q60 0 111.5-62.5T1913 1638h-107q-14 0-14-12v-251q0-12 14-12h338zm-940-661q11 0 18 7t7 18v1419q0 11-7 18.5t-18 7.5h-175q-16 0-23-16l-313-865v855q0 11-7 18.5t-17 7.5H495q-11 0-18.5-7.5T469 2146V727q0-11 7.5-18t18.5-7h174q16 0 23 17l312 864V727q0-11 7-18t18-7h175z"},"children":[]}]};exports.u1F196=u1F196;var u1F197={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2222 393q45 0 78 32.5t33 79.5v1845q0 47-33 79t-78 32H377q-45 0-78-33t-33-78V505q0-45 33-78.5t78-33.5h1845zm33 112q0-14-9.5-23.5T2222 472H377q-14 0-23.5 9.5T344 505v1845q0 14 9.5 23.5t23.5 9.5h1845q14 0 23.5-9.5t9.5-23.5V505zm-94 1615q0 3 1 8 0 11-7 18.5t-18 7.5h-205q-19 0-24-16l-248-653v645q0 9-6.5 16.5t-17.5 7.5h-184q-10 0-17-7.5t-7-16.5V723q0-11 7-18t17-7h184q11 0 17.5 7t6.5 18v527l216-537q7-15 23-15h205q11 0 18 7t7 18q0 5-1 8l-255 633zm-916-165q-131 215-338 215-206 0-336.5-213.5T440 1417q0-323 130.5-536.5T907 667q207 0 338 214.5t131 535.5q0 323-131 538zm-197.5-845Q993 989 907 989q-85 0-140 120.5T712 1417q0 189 55 310.5T907 1849q86 0 140.5-122t54.5-310q0-186-54.5-307z"},"children":[]}]};exports.u1F197=u1F197;var u1F198={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2222 393q46 0 78.5 32t32.5 80v1845q0 47-33 79t-78 32H377q-45 0-78-33t-33-78V505q0-46 32.5-79t78.5-33h1845zm33 112q0-14-9.5-24t-23.5-10H377q-14 0-23.5 10t-9.5 24v1845q0 13 9.5 22.5t23.5 9.5h1845q14 0 23.5-9.5t9.5-22.5V505zm-710 1451q-91 209-232 209-143 0-234-209t-91-532q0-322 91.5-531T1313 684q140 0 231.5 209t91.5 531q0 323-91 532zm355-734l49 50q104 106 151.5 216t47.5 258q0 187-72 311t-181 124q-67 0-120-44.5t-94-117-41-80.5q0-4 1-6l67-232q5-11 14-11 13 0 27.5 31.5t63 90.5 91.5 59l11-2q17-4 32.5-33t15.5-83q0-107-67.5-176.5t-130.5-141-88-153-25-187.5q0-158 53-292t183-134q75 0 139 53t64 72v4l-43 221q-2 12-15 12-6 0-51.5-44t-85.5-44q-28 0-46 29.5t-18 88.5q0 47 13.5 81.5t33.5 56.5zm-1117 49q115 123 158 234t43 241q0 184-72 309.5T730 2181q-72 0-133-55.5T477 1943q-2 0-2-4t2-6l68-232q3-11 13-11 12 0 26.5 31.5t63 90.5 92.5 59l11-2q18-4 33.5-33t15.5-84q0-42-14-86.5t-42-74.5l-55-59h-1q-102-109-133-156t-49-114.5-18-166.5q0-155 52-290.5T723 669q67 0 136 50t69 79l-46 221q-2 12-13 12-5 0-51-44t-86-44q-28 0-46.5 29.5T667 1061q0 43 15.5 83t53.5 78zm621-147.5q-36-119.5-91-119.5-57 0-93 119.5t-36 300.5q0 183 36 303.5t93 120.5q55 0 91-120.5t36-303.5q0-181-36-300.5z"},"children":[]}]};exports.u1F198=u1F198;var u1F199={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2222 393q45 0 78 32t33 79v1845q0 47-33 79.5t-78 32.5H377q-45 0-78-33.5t-33-78.5V504q0-45 33-78t78-33h1845zm33 111q0-14-9.5-23.5T2222 471H377q-14 0-23.5 9.5T344 504v1845q0 14 9.5 23.5t23.5 9.5h1845q14 0 23.5-9.5t9.5-23.5V504zm-626 222q115 0 196 136t81 333q0 199-81.5 335.5T1629 1667h-151v440q0 9-7 15t-15 6h-165q-10 0-17-6t-7-15V747q0-9 7-15t17-6h338zm-22 665q44 0 77-58t33-138-33-137.5-77-57.5h-131q-6 0-6 6v379q0 6 6 6h131zm-423-671q9 0 16 6.5t7 15.5v745q-6 328-108 487.5T844 2134q-152 0-254.5-156T481 1484l-1-72V742q0-9 7-15.5t16-6.5h186q9 0 15.5 6.5T711 742v670q0 142 12.5 215t37.5 103.5 83 30.5q57 0 81.5-31t37-103.5T975 1412V742q0-9 6.5-15.5T997 720h187zm924 1378.5q-25 24.5-60 24.5-36 0-60.5-24.5T1963 2038q0-35 24.5-60t60.5-25q35 0 60 25t25 60q0 36-25 60.5zM2160 871q-1 6-1 12l-89 982q0 8-7 14t-15 6-14.5-6-8.5-14l-88-982-2-12q0-6-1-13 0-56 33.5-95t80.5-39q45 0 79 39t34 95q0 7-1 13z"},"children":[]}]};exports.u1F199=u1F199;var u1F19A={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2222 393q45 0 78 32t33 79v1845q0 47-33 79.5t-78 32.5H377q-45 0-78-33.5t-33-78.5V504q0-45 33-78t78-33h1845zm33 111q0-13-9.5-22.5T2222 472H377q-14 0-23.5 9.5T344 504v1845q0 14 9.5 23.5t23.5 9.5h1845q14 0 23.5-9.5t9.5-23.5V504zm-232 1563q-107 129-276 129-98 0-178.5-44.5t-142-118-61.5-84.5q0-4 2-8l103-236q4-9 18-9 5 0 57.5 56t109.5 91 108 35q41 0 68-35t27-83q0-41-20.5-84t-61.5-72l-184-129q-128-88-168-173.5t-40-200.5q0-169 80.5-301.5T1737 667q100 0 203.5 50t103.5 78v3l-68 226q-5 13-18 13-3 0-5-1l-5-2q-50-38-101.5-61.5T1748 949q-43 0-71.5 29t-28.5 86q0 92 104.5 160.5t197 147.5 136.5 174 44 207q0 185-107 314zM1341 693q7 0 12 5.5t5 11.5v5l-329 1441q0 6-5 10t-13 4H802q-6 0-7.5-1t-2.5-3l-2-5q0-2-6-5L455 715q0-22 18-22h198q14 0 17 13l219 924 218-924q2-13 18-13h198z"},"children":[]}]};exports.u1F19A=u1F19A;var u1F1E6={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2200 2288q3 6 3 14 0 17-12 28t-28 11h-431q-14 0-23.5-7.5T1695 2314l-102-301h-589l-98 301q-5 12-15 19.5t-24 7.5H436q-16 0-28-12t-12-27q0-8 3-14l659-1752q4-13 14-19.5t23-6.5h409q26 0 37 26zm-729-647l-172-516-171 516h343z"},"children":[]}]};exports.u1F1E6=u1F1E6;var u1F1E7={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1741 1386q118 77 181.5 190t63.5 239q0 216-172 372t-414 156H652q-17 0-27.5-11t-10.5-28V534q0-17 10.5-28.5T652 494h664q160 0 298 74t213.5 195.5T1903 1023q0 106-43.5 199T1741 1386zm-452-164q75 0 126.5-55.5T1467 1036q0-77-52.5-132.5T1289 848h-245q-5 0-7.5 3.5t-2.5 5.5v355q0 5 3.5 7.5t6.5 2.5h245zm15 779q81 0 139-62.5t58-152.5q0-89-58.5-152.5T1304 1570h-259q-3 0-6 1.5t-3 6.5v415q0 8 9 8h259z"},"children":[]}]};exports.u1F1E7=u1F1E7;var u1F1E8={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2127 2117q3 6 3 11t-2 9-6 6q-275 236-670 236-279 0-506.5-125T594 1909.5 470 1425q0-267 125.5-487t352-344T1452 470q203 0 361.5 47.5T2097 665q9 6 9 16 0 3-1 6l-2 5-221 399q-3 6-8 9t-10 3q-4 0-7-2l-6-3q-70-56-176-90.5T1455 973q-206 0-336 127.5T989 1425q0 195 129.5 323t336.5 128q107 0 228-43.5t168.5-79.5 58.5-36q13 0 19 11z"},"children":[]}]};exports.u1F1E8=u1F1E8;var u1F1E9={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1259 494q392 0 638 255t246 669q0 415-245.5 670T1259 2343H495q-17 0-28-11.5t-11-28.5V533q0-16 11-27.5t28-11.5h764zm19 1414q170 0 285-142.5t115-347.5q0-222-121-356.5T1237 927H959q-17 0-27.5 11T921 966v905q0 16 10.5 26.5T959 1908h319z"},"children":[]}]};exports.u1F1E9=u1F1E9;var u1F1EA={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1111 866v346h615q17 0 28.5 11.5t11.5 28.5v293q0 17-11.5 28.5T1726 1585h-615v386h800q17 0 28.5 11.5t11.5 26.5v294q0 17-11.5 28t-28.5 11H688q-17 0-28.5-11t-11.5-28V535q0-17 11.5-28t28.5-11h1223q17 0 28.5 11t11.5 28v291q0 17-11.5 28.5T1911 866h-800z"},"children":[]}]};exports.u1F1EA=u1F1EA;var u1F1EB={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1881 496q17 0 28.5 11t11.5 27v293q0 17-11.5 28.5T1881 867h-740v294h617q16 0 27 11.5t11 28.5v293q0 17-11 28.5t-27 11.5h-617v770q0 17-11.5 27.5T1103 2342H719q-17 0-28.5-10.5T679 2304V534q0-16 11.5-27t28.5-11h1162z"},"children":[]}]};exports.u1F1EB=u1F1EB;var u1F1EC={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2221 1318q9 0 15.5 6t6.5 14q0 279-104 525.5T1833.5 2240 1340 2370q-278 0-506.5-124t-353-344T356 1416t125-487 353-345 506-124q206 0 380.5 64.5T2029 714q7 7 7 15 0 7-6 12l-278 321q-3 8-13 8-11 0-55-36t-149.5-79.5T1340 911q-209 0-344.5 152T860 1416q0 205 137.5 363.5T1340 1938q140 0 250.5-77t126.5-190h-243q-8 0-14-5.5t-6-13.5v-314q0-8 6-14t14-6h747z"},"children":[]}]};exports.u1F1EC=u1F1EC;var u1F1ED={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2096 506q17 0 29 11.5t12 28.5v1754q0 17-12 28.5t-29 11.5h-431q-18 0-29.5-11.5T1624 2300v-745H974v745q0 17-11.5 28.5T934 2340H501q-16 0-27.5-11.5T462 2300V546q0-17 11.5-28.5T501 506h433q17 0 28.5 11.5T974 546v637h650V546q0-17 11.5-28.5T1665 506h431z"},"children":[]}]};exports.u1F1ED=u1F1ED;var u1F1EE={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1515 506q17 0 29 12t12 29v1753q0 17-12 29t-29 12h-431q-18 0-29.5-12t-11.5-29V547q0-17 11.5-29t29.5-12h431z"},"children":[]}]};exports.u1F1EE=u1F1EE;var u1F1EF={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2002 495q17 0 27.5 11t10.5 28v762q0 370-27 548.5t-138 291-262.5 166.5-327.5 54q-295 0-495.5-142.5T559 1843q0-25 7.5-35t18.5-13l359-113q4 0 11-1 29 0 41.5 37t54 84 106.5 79 134 32q125 0 182-75.5t57-293.5V534q0-17 11.5-28t28.5-11h432z"},"children":[]}]};exports.u1F1EF=u1F1EF;var u1F1F0={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2045 2281q4 5 5 10.5t1 10.5q0 17-11.5 28.5T2013 2342h-429q-22 0-34-20l-540-863v843q0 17-11.5 28.5T970 2342H586q-17 0-27.5-11.5T548 2302V532q0-17 10.5-28t27.5-11h384q17 0 28.5 11t11.5 28v692l474-714q11-17 31-17h429q16 0 27 11t11 28q0 6-1 11.5t-5 10.5l-520 786z"},"children":[]}]};exports.u1F1F0=u1F1F0;var u1F1F1={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1911 1969q17 0 28.5 11.5t11.5 28.5v293q0 16-11.5 28t-28.5 12H688q-17 0-28.5-12t-11.5-28V532q0-17 11.5-28.5T688 492h383q17 0 28.5 11.5T1111 532v1437h800z"},"children":[]}]};exports.u1F1F1=u1F1F1;var u1F1F2={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2281 2297q0 17-11 30.5t-31 13.5h-366q-17 0-28-10t-13-27l-74-747-284 757q-5 12-15.5 19.5t-22.5 7.5h-273q-11 0-23-7t-17-20l-282-757-74 747q-2 17-13.5 27t-27.5 10H359q-17 0-29-12t-12-32L466 543q0-14 12-26t29-12h392q14 0 24.5 9.5T939 535l360 1178 361-1178q4-9 15-19.5t25-10.5h391q22 0 31.5 12t10.5 26z"},"children":[]}]};exports.u1F1F2=u1F1F2;var u1F1F3={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2081 491q17 0 29 12t12 29v1770q0 17-12 29t-29 12h-384q-10 0-19.5-5t-14.5-14L945 1199v1103q0 17-12 29t-29 12H520q-17 0-29.5-12t-12.5-29V532q0-17 12.5-29t29.5-12h384q23 0 34 19l718 1125V532q0-17 12-29t29-12h384z"},"children":[]}]};exports.u1F1F3=u1F1F3;var u1F1F4={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2149.5 1903.5q-122.5 218.5-345 340T1299 2365t-505-121.5-344.5-340T327 1422q0-264 122.5-482T795 600t504-122q280 0 503.5 121.5t346.5 340 123 482.5q0 263-122.5 481.5zm-486.5-832Q1522 932 1299 932q-222 0-363 139t-141 351q0 210 140 350.5t364 140.5q225 0 365-140.5t140-350.5q0-211-141-350.5z"},"children":[]}]};exports.u1F1F4=u1F1F4;var u1F1F5={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1397 494q167 0 313.5 83T1942 805.5t85 312.5-85 312.5-231.5 228.5-313.5 83h-361v562q0 17-11.5 28.5T996 2344H612q-17 0-28-11.5t-11-28.5V534q0-17 11-28.5t28-11.5h785zm-30 880q97-8 163-83t66-173q0-107-73-182.5T1348 860h-306q-4 0-7.5 3.5t-3.5 7.5v493q0 3 3.5 7t7.5 4h306z"},"children":[]}]};exports.u1F1F5=u1F1F5;var u1F1F6={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2121 2315q8 11 8 22 0 12-8 21.5t-19 12.5l-289 84h-6l-4 1q-20 0-30-15l-106-149q-82 29-174 44.5t-194 15.5q-281 0-502.5-120T451 1892.5 327 1408t123.5-483.5T795 585t504-121q281 0 503 120.5T2148 924t124 484q0 209-76.5 388.5T1976 2107zm-733-423l-162-233q-7-10-7-22 0-13 7.5-21.5t18.5-13.5l289-83q3 0 10-1 19 0 32 16l126 182q49-64 75.5-142t26.5-166q0-211-140.5-351T1299 917q-223 0-363.5 140T795 1408q0 212 141 351t363 139q45 0 89-6z"},"children":[]}]};exports.u1F1F6=u1F1F6;var u1F1F7={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2048 2277q8 11 8 27 0 17-12.5 27.5T2015 2342h-383q-22 0-35-15l-441-586h-152v562q0 17-10.5 28t-27.5 11H582q-17 0-28-11t-11-28V535q0-17 11-28t28-11h784q259 0 444.5 181.5T1996 1116q0 189-105.5 345.5T1607 1693zM1492.5 935q-72.5-75-174.5-75h-307q-3 0-6 2.5t-3 7.5v494q0 5 3 7.5t6 2.5h316l59-11q58-11 118.5-79t60.5-168q0-106-72.5-181z"},"children":[]}]};exports.u1F1F7=u1F1F7;var u1F1F8={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1950.5 2162q-97.5 146-271 221t-380.5 75q-106 0-219-22t-235-87.5-200.5-132-85.5-76-7-19.5 4-15l206-316q9-12 24-12t15 4 100.5 79 217 118.5T1332 2023q74 0 132.5-42.5T1523 1871q0-53-41.5-110.5T1363 1667l-75-35q-42-19-86-41l-91-43q-46-22-89-44l-21-9q-174-90-245.5-149t-119-146T589 986q0-274 185.5-429.5T1279 401q140 0 277 33.5t219 73 92.5 49T1878 579q0 7-3 13l-132 298q-4 8-11.5 13t-16.5 5q-7 0-12-4l-67-31q-78-35-165.5-59T1301 790q-96 0-150 39.5T1097 940q0 119 190.5 199t389 194.5 285 245.5 86.5 281q0 156-97.5 302z"},"children":[]}]};exports.u1F1F8=u1F1F8;var u1F1F9={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2138 494q17 0 28.5 11.5T2178 534v315q0 17-11.5 28.5T2138 889h-606v1415q0 16-11.5 28t-28.5 12h-384q-17 0-28.5-12t-11.5-28V889H462q-17 0-28.5-11.5T422 849V534q0-17 11.5-28.5T462 494h1676z"},"children":[]}]};exports.u1F1F9=u1F1F9;var u1F1FA={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2089 492q17 0 28.5 11.5T2129 532v906q-4 172-25.5 290t-91 249-182.5 214-249 124-282 41q-191 0-350.5-65T693 2124t-156.5-252.5T471 1454l-1-49V532q0-17 11.5-28.5T510 492h431q17 0 28.5 11.5T981 532v873q0 109 5.5 179.5t39 135T1126 1817t173 33q93 0 154-25t93-65 50-93 21-184l1-75V532q0-17 11.5-28.5T1658 492h431z"},"children":[]}]};exports.u1F1FA=u1F1FA;var u1F1FB={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2155 505q17 0 29 12t12 31q0 7-3 13l-646 1753q-3 10-13 18.5t-27 8.5h-415q-8 0-21-6t-19-21L406 561q-2-3-2-7l-1-6q0-19 12-31t29-12h390q14 0 24.5 7.5T874 533l425 1108 426-1108q5-13 15.5-20.5t22.5-7.5h392z"},"children":[]}]};exports.u1F1FB=u1F1FB;var u1F1FC={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2412 551.5q-1 2.5-1 4.5l-433 1752q0 7-10.5 19.5T1939 2340h-346q-9 0-21.5-6.5T1554 2308l-255-986-254 986q-2 10-11 21t-28 11H660q-20 0-29-9t-12-23L188 556q-2-3-2-10 0-17 12-29t29-12h433q15 0 26.5 9.5T701 538l168 850 234-853q0-4 11-17t29-13h313q13 0 25 9.5t15 20.5l234 853 168-850q3-14 14-23.5t27-9.5h431q20 0 31.5 13t11.5 28q0 3-1 5.5z"},"children":[]}]};exports.u1F1FC=u1F1FC;var u1F1FD={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2182 2275q5 7 6 12t1 12q0 17-12 29t-29 12h-512q-11 0-20.5-4.5T1601 2322l-301-445-300 445q-12 18-34 18H452q-19 0-30-12.5t-11-30.5q0-10 7-22l582-846-578-859q-5-5-6-11t-1-13q0-18 12-29.5t29-11.5h488q21 0 34 18l322 469 322-469q13-18 34-18h489q17 0 29 12.5t12 30.5q0 12-6 22l-579 859z"},"children":[]}]};exports.u1F1FD=u1F1FD;var u1F1FE={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2189 562l-641 957v782q0 17-12 29t-29 12h-416q-17 0-28.5-12t-11.5-29v-782L410 562q-5-5-6-11t-1-12q0-19 12-30t29-11h390q11 0 20.5 5t14.5 13l431 619 430-619q15-18 33-18h392q17 0 29 11.5t12 29.5q0 13-7 23z"},"children":[]}]};exports.u1F1FE=u1F1FE;var u1F1FF={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2088 1968q17 0 28 11.5t11 27.5v294q0 17-11 28t-28 11H514q-16 0-29.5-11t-13.5-30q0-10 7-22l867-1397H514q-17 0-28.5-11.5T474 842V548q0-17 11.5-28t28.5-11h1574q17 0 29 12.5t12 29.5q0 12-6 21l-846 1396h811z"},"children":[]}]};exports.u1F1FF=u1F1FF;var u1F201={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2176 432q52 0 87.5 37.5T2299 555v1751q0 50-36.5 87.5T2176 2431H423q-50 0-86.5-37.5T300 2306V555q0-48 35.5-85.5T423 432h1753zm45 123q0-18-13.5-31.5T2176 510H423q-18 0-30.5 13.5T380 555v1751q0 19 12.5 33t30.5 14h1753q18 0 31.5-14t13.5-33V555zm-995 347q10 0 16.5 7t6.5 18v1089q0 11-6.5 17.5t-16.5 6.5H599q-10 0-17.5-6.5T574 2016v-241q0-8 7-16.5t18-8.5h348v-558H599q-11 0-18-8t-7-16V927q0-10 7-17.5t18-7.5h627zm776 0q10 0 17 7t7 18v1089q0 11-7 17.5t-17 6.5h-626q-25 0-25-24v-241q0-8 6-16.5t19-8.5h348v-558h-348q-13 0-19-8t-6-16V927q0-11 6.5-18t18.5-7h626z"},"children":[]}]};exports.u1F201=u1F201;var u1F202={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2176 432q50 0 86.5 37.5T2299 557v1751q0 49-36 86t-87 37H423q-51 0-87-37t-36-86V557q0-50 36.5-87.5T423 432h1753zm45 125q0-19-13.5-32t-31.5-13H423q-18 0-30.5 13T380 557v1751q0 18 12.5 31.5T423 2353h1753q18 0 31.5-13.5t13.5-31.5V557zm-197 503q10 0 17 7.5t7 16.5v229q0 9-7.5 16t-16.5 7h-251q-3 190-52 348.5T1587.5 1954t-174 170-106.5 59q-3 0-8 1-6 0-12-3t-9-8l-126-191q-2-2-3-6t-1-7q0-9 6-15t57-34 118-101 114-197 50-286h-368v333q0 11-8 18t-17 7H871q-11 0-17.5-7.5T847 1669v-333H574q-8 0-16.5-7t-8.5-16v-229q0-9 8-16.5t17-7.5h273V827q0-11 7-18.5t17-7.5h229q8 0 16.5 6.5t8.5 19.5v233h370V827q0-11 7-18.5t17-7.5h229q8 0 16.5 7.5t8.5 18.5v233h251z"},"children":[]}]};exports.u1F202=u1F202;var u1F21A={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2176 432q52 0 87.5 37.5T2299 555v1751q0 50-36.5 87.5T2176 2431H423q-50 0-86.5-37.5T300 2306V555q0-48 35.5-85.5T423 432h1753zm45 123q0-18-13.5-31.5T2176 510H423q-18 0-30.5 13.5T380 555v1751q0 19 12.5 33t30.5 14h1753q18 0 31.5-14t13.5-33V555zm-258 691q11 0 18 6.5t7 18.5v135q0 11-7 18t-18 7h-149v156h104q11 0 18 6.5t7 16.5v136q0 9-7 17t-18 8H737q-12 0-19-8t-7-17v-136q0-8 7.5-15.5t18.5-7.5h104v-156H691q-11 0-18-8t-7-17v-135q0-10 7-17.5t18-7.5h150v-178l-46 112q-3 8-10 12.5t-15 4.5q-2 0-4-1l-4-2-156-66q-15-7-15-22 0-5 2-9l154-368q7-15 24-15 6 0 9 2l156 65q5 4 9 10t4 14v4q0 3-1 5l-27 66h997q11 0 18 7t7 18v135q0 11-8 18t-17 7h-104v181h149zm-996 625q6 3 10 10t4 14q0 6-1 8l-88 209q-7 16-23 16-6 0-10-3l-126-53q-6-3-10.5-8.5T718 2049q0-6 1-10l88-208q6-15 25-15 5 0 8 1zm980 176q0 3 1 7 0 8-4.5 14t-11.5 11l-130 42q-3 2-9 2-8 0-15-4.5t-8-12.5l-71-215q-2-3-2-7 0-18 17-23l131-44 7-1q8 0 14 4.5t10 11.5zm-648 18v6q0 18-19 24l-133 32-6 1q-8 0-15-5.5t-8-14.5l-53-220q-2-2-2-4 0-8 5-15t14-9l133-33h6q8 0 15 5t9 13zm320-8q2 3 2 8 0 8-5.5 14.5t-13.5 7.5l-132 36q-3 0-8 1-8 0-14.5-5t-7.5-13l-59-218v-4l-1-2q0-8 5-14.5t12-10.5l133-34q2 0 3.5-1t3.5-1q8 0 14.5 5t8.5 13zm-254-992h-80v181h80v-181zm261 0h-75v181h75v-181zm-598 181h69v-181h-69v181zm257 341h80v-156h-80v156zm341-156h-75v156h75v-156zm-598 156h69v-156h-69v156z"},"children":[]}]};exports.u1F21A=u1F21A;var u1F22F={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2176 433q52 0 87.5 37.5T2299 557v1750q0 49-35.5 86.5T2176 2431H423q-52 0-87.5-37.5T300 2307V557q0-49 35.5-86.5T423 433h1753zm45 124q0-19-13.5-32.5T2176 511H423q-18 0-30.5 13.5T380 557v1750q0 19 12.5 32.5T423 2353h1753q18 0 31.5-13.5t13.5-32.5V557zm-313 927q8 0 16.5 6t8.5 19v587q0 11-8.5 17.5t-16.5 6.5h-643q-8 0-16.5-6.5t-8.5-17.5v-587q0-13 8.5-19t16.5-6h643zm-731 59q0 3 1 10 0 7-3.5 13.5t-11.5 9.5l-116 52v345q0 63-33.5 96.5T942 2107l-23 3H774q-8 0-15.5-5.5T749 2088l-24-183v-3q0-11 7-18.5t17-7.5h63v-144l-97 45q-6 3-11 3-8 0-13.5-4.5T682 1765l-56-123q0-3-1-11 0-16 15-22l172-78v-278H660q-8 0-16-8t-8-17v-136q0-9 8-16.5t16-7.5h152V807q0-9 8-16t17-7h185q11 0 18 7.5t7 15.5v261h107q7 0 15.5 6.5t8.5 17.5v136q0 11-8.5 18t-15.5 7h-107v174l41-20q2 0 7-1 20 0 26 14zm793-347q17 6 17 25v6q-49 113-77.5 148t-73.5 51.5-95 16.5h-368q-61 0-92.5-35t-31.5-80V837q0-9 8.5-16.5t16.5-7.5h163q8 0 16.5 6.5t8.5 17.5v121l400-115 7-1q8 0 14.5 5t8.5 12l38 130q0 2 1 4t1 3q0 19-19 24l-451 130v81h212l26-2q37 0 51.5-12t27.5-40l9-18q7-15 22-15 5 0 8 2zm-229 677l-7-3h-295l-7 3-2 7v73l2 6 7 2h295l7-2 2-6v-73zm2-145v-74l-2-6-7-2h-295l-7 2-2 6v74l2 5 7 3h295l7-3z"},"children":[]}]};exports.u1F22F=u1F22F;var u1F232={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2176 432q50 0 86.5 36.5T2299 555v1753q0 49-36 86t-87 37H425q-52 0-88.5-37t-36.5-86V555q0-50 37.5-86.5T425 432h1751zm43 123q0-18-13-31.5t-30-13.5H425q-20 0-33.5 13.5T378 555v1753q0 18 13.5 31.5T425 2353h1751q17 0 30-13.5t13-31.5V555zM637 1334l-85-88q-7-6-7-17 0-10 7-17l185-194H614q-11 0-18-7t-7-17v-97q0-8 7-16.5t18-8.5h241v-96q0-8 6-15.5t20-7.5h133q14 0 20 7.5t6 15.5v96h196q10 0 17 7.5t7 17.5v97q0 11-7.5 17.5t-16.5 6.5h-67l108 111q5 8 5 18 0 13-5 18l-86 88q-9 7-18 7-10 0-17-7l-116-121v115q0 8-6 16t-20 8H881q-14 0-20-8t-6-16v-103l-182 190q-10 8-18 8-12 0-18-8zm1408-122q7 7 7 17 0 11-7 17l-84 88q-8 8-18 8t-18-8l-182-190v103q0 11-7 17.5t-18 6.5h-136q-12 0-17.5-8t-5.5-16v-115l-116 121q-7 7-18 7-8 0-18-7l-85-88q-7-6-7-18 0-10 7-18l108-111h-68q-8 0-16.5-6t-8.5-18v-97q0-10 7-17.5t18-7.5h197v-96q0-8 5.5-15.5t17.5-7.5h136q11 0 18 7t7 16v96h241q9 0 16.5 7.5t7.5 17.5v97q0 12-8 18t-16 6h-123zm-65 389q10 0 17 7t7 17v122q0 11-7.5 18t-16.5 7h-537v226q0 63-34.5 98t-89.5 35h-198q-10 0-17-6.5t-8-16.5l-14-142q0-10 7-18.5t18-8.5h110v-167H634q-9 0-16.5-7t-7.5-18v-122q0-10 7-17t17-7h1346zM774 1357h1066q11 0 18 7t7 17v122q0 10-7 17.5t-18 7.5H774q-11 0-18-7.5t-7-17.5v-122q0-10 7-17t18-7zm267 563q6 6 6 18 0 10-10 16l-194 158q-6 5-17 5-8 0-18-8l-87-107q-6-4-6-14 0-4 2.5-10t7.5-10l193-158q6-5 16-5 12 0 18 8zm866 26q11 6 11 20 0 9-4 14l-73 117q-4 5-9.5 8.5t-12.5 3.5-12-4l-236-145q-5-5-9-10t-4-11q0-3 1-7t3-7l74-116q4-6 10-9t12-3q7 0 12 4z"},"children":[]}]};exports.u1F232=u1F232;var u1F233={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2176 433q50 0 86.5 37t36.5 87v1750q0 49-35.5 86.5T2176 2431H425q-52 0-88.5-37t-36.5-87V557q0-51 37.5-87.5T425 433h1751zm43 124q0-19-13-32.5t-30-13.5H425q-20 0-33.5 13.5T378 557v1750q0 19 13.5 32.5T425 2353h1751q17 0 30-13.5t13-32.5V557zm-350 1364q9 0 16.5 7t7.5 18v152q0 11-7.5 17.5t-16.5 6.5H732q-13 0-19.5-7.5T706 2098v-152q0-8 6.5-16.5t19.5-8.5h422v-114H891q-10 0-17-6.5t-7-17.5v-151q0-11 8-18.5t16-7.5h817q11 0 18 8.5t7 17.5v151q0 9-6.5 16.5t-18.5 7.5h-264v114h425zm64-1071q9 0 17.5 7.5t8.5 16.5v402q0 11-7.5 18.5t-18.5 7.5h-190q-10 0-17.5-7t-7.5-19v-221H880v221q0 12-8.5 19t-16.5 7H663q-7 0-15-7t-8-19V874q0-11 8.5-17.5T663 850h491V721q0-11 7.5-18t18.5-7h239q11 0 18 7t7 18v129h489zM834 1588q-2 2-8 2-12 0-19-11l-86-140q-4-5-4-12 0-17 16.5-23.5T797 1386t126.5-61 118-93 45.5-60 27-17q9 0 15 6l118 112q8 10 8 18 0 16-58 81t-152.5 124.5T834 1588zm486-361l-3-33q0-10 6-19t18-9l172-3q9 0 16 5t8 16q0 42 37.5 114t200.5 72q18 0 20-1 12 0 19.5 7t7.5 18v154q0 12-7.5 18.5t-17.5 6.5q-113 0-187.5-11t-142-53-104.5-123-43-159z"},"children":[]}]};exports.u1F233=u1F233;var u1F234={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2176 432q52 0 87.5 37.5T2299 555v1751q0 50-36.5 87.5T2176 2431H425q-51 0-88-37t-37-88V555q0-49 36-86t89-37h1751zm43 123q0-18-13-31.5t-30-13.5H425q-20 0-33.5 13.5T378 555v1751q0 19 13.5 32t33.5 13h1751q17 0 30-13t13-32V555zM955 1492q-8 0-12-5.5t-4-10.5v-153q0-5 4-11t12-6h740q9 0 13.5 6t4.5 11v153q0 5-5.5 10.5t-12.5 5.5H955zm900 88q6 0 11 6t5 12v484q0 16-16 16H796q-8 0-13-4t-5-12v-484q0-8 6-13t12-5h1059zm-204 191l-6-3h-639l-7 3-3 5v127l3 6 7 3h639l6-3 3-6v-127zm445-540l-111 179q-4 8-15 8-21 0-220.5-109T1325 1021q-222 178-423 287.5T680 1418q-10 0-14-8l-111-179-2-6q-2-3-2-7 0-3 9.5-9t22.5-12l42-20q102-51 204.5-112T1026 940t192.5-146 99.5-83l5-1q11 0 17 8t87.5 75 223 164.5 276 169 148.5 76 19 9 5 12.5q0 3-3 7z"},"children":[]}]};exports.u1F234=u1F234;var u1F235={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2176 432q52 0 87.5 37.5T2299 555v1753q0 50-36.5 86.5T2176 2431H425q-50 0-87.5-36.5T300 2308V555q0-49 36-86t89-37h1751zm43 123q0-17-13-30t-30-13H425q-20 0-33.5 13T378 555v1753q0 18 13.5 31.5T425 2353h1751q17 0 30-13.5t13-31.5V555zm-276 599q7 0 15 6t8 20v130q0 11-7 17.5t-16 6.5h-399v57h399q9 0 16 7t7 18v596q0 60-32 90t-72 32l-10 1h-159q-9 0-15.5-5.5t-8.5-15.5l-22-120q0-11 7-17t17-6h106v-400h-233v221h38v-112q0-11 8-18.5t17-7.5h111q8 0 16.5 7.5t8.5 18.5v248q0 11-8.5 18t-16.5 7h-503q-10 0-17-8t-7-17v-248q0-11 6.5-18.5t17.5-7.5h110q11 0 18 7.5t7 18.5v112h35v-221h-230v539q0 10-7 17.5t-18 7.5H991q-11 0-18-7t-7-18v-694q0-11 7-18t18-7h394v-57H991q-11 0-18-7t-7-17v-130q0-11 7.5-18.5t17.5-7.5h168v-92h-133q-7 0-15-6t-8-20V906q0-11 7-17t16-6h133v-86q0-12 7.5-19.5t15.5-7.5h141q8 0 16 6.5t8 20.5v86h238v-86q0-12 7-19.5t18-7.5h140q10 0 17 7.5t7 19.5v86h132q11 0 17.5 7t6.5 16v130q0 11-7 18.5t-17 7.5h-132v92h169zm-596 0h238v-92h-238v92zm-400 660l3 8q0 3 1 7 0 10-7 17l-226 236q-6 6-19 6-14-2-19-11l-74-105q-5-7-5-14 0-10 7-18l226-235q10-7 20-7 11 2 19 11zm-344-446q-5-3-6-8l-4-9q0-10 6-19l79-103q3-4 8.5-6t10.5-2q7 0 15 4l195 147q10 6 10 20 0 8-6 14l-79 102q-10 10-21 10-6 0-14-5zm22-406q-10-6-11-16 0-13 5-19l80-102q6-9 20-9 8 0 15 4l195 145q4 5 6 9.5t2 12.5q0 9-4 14l-81 102q-8 10-19 10-10 0-15-6z"},"children":[]}]};exports.u1F235=u1F235;var u1F236={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2166 451q52 0 87 37t35 86v1733q0 50-35.5 86t-86.5 36H433q-51 0-86.5-35.5T311 2307V574q0-50 35.5-86.5T433 451h1733zm44 123q0-18-12.5-31.5T2166 529H433q-17 0-30.5 13.5T389 574v1733q0 18 13.5 31t30.5 13h1733q19 0 31.5-13t12.5-31V574zm-302 321q12 0 18.5 7.5t6.5 16.5v189q0 12-7 18.5t-18 6.5h-602l-28 47q-14 24-30 49h574q9 0 17.5 7t8.5 18v750q0 65-37 99t-75 34h-151q-9 0-16-5.5t-9-14.5l-24-141q0-15 7-22t17-7h61v-70h-444v236q0 10-7.5 17t-17.5 7H974q-11 0-18-7t-7-17v-550q-45 39-94.5 74t-55 37-15.5 2q-10-5-15-13l-98-164q-4-6-4-12 0-19 33-33.5t138.5-99T1037 1133H747q-10 0-17.5-6.5T722 1108V919q0-10 7-17t18-7h418q24-61 35-98l16-57q5-20 9.5-26.5t18.5-6.5h174q14 0 20 8.5t6 17.5q-2 2-7.5 42.5T1406 895h502zm-731 827h444v-74h-444v74zm444-303h-444v74h444v-74z"},"children":[]}]};exports.u1F236=u1F236;var u1F237={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2166 452q51 0 86.5 36t35.5 86v1733q0 50-35.5 86t-86.5 36H433q-51 0-86.5-35.5T311 2307V574q0-51 35.5-86.5T433 452h1733zm44 122q0-17-12.5-30.5T2166 530H433q-17 0-30.5 13.5T389 574v1733q0 17 13.5 30.5T433 2351h1733q19 0 31.5-13.5t12.5-30.5V574zm-323 204q10 0 17 7t7 18v1134l-1 16q-6 85-45.5 126t-93.5 46l-13 1h-228q-9 0-15.5-6t-7.5-14l-31-215v-5q0-9 6.5-16t17.5-7h141v-144h-631q-18 102-63.5 193T860 2058t-46.5 58-13.5 3q-10 0-15-5l-170-145q-3-3-5.5-7.5t-2.5-9.5q0-11 7-18 78-102 113.5-186t35.5-168V803q0-11 7-18t18-7h1099zm-246 262h-620v134h620v-134zm0 472v-132h-620v132h620z"},"children":[]}]};exports.u1F237=u1F237;var u1F238={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2176 433q52 0 87.5 37.5T2299 557v1750q0 49-35.5 86.5T2176 2431H423q-52 0-87.5-37.5T300 2307V557q0-49 35.5-86.5T423 433h1753zm45 124q0-19-13.5-32.5T2176 511H423q-18 0-31.5 13.5T378 557v1750q0 19 13.5 32.5T423 2353h1753q18 0 31.5-13.5t13.5-32.5V557zm-247 357q11 0 18 7.5t7 18.5v848q0 11-7 18t-18 7h-507v342q0 11-7 18t-17 7h-267q-11 0-18-7.5t-7-17.5v-342H644q-9 0-17-6t-8-19V940q0-11 8-18.5t17-7.5h507V705q0-11 7.5-18t17.5-7h267q8 0 16 6t8 19v209h507zm-823 212H869q-7 0-12 4t-5 12v113q0 8 5 11.5t12 3.5h282v-144zm-299 461q0 8 5 11.5t12 3.5h282v-144H869q-7 0-12 3.5t-5 11.5v114zm615 15h284q6 0 10.5-4t4.5-11v-114q0-6-4.5-10.5t-10.5-4.5h-284v144zm284-332q5 0 10-3.5t5-11.5v-113q0-7-4.5-11.5t-10.5-4.5h-284v144h284z"},"children":[]}]};exports.u1F238=u1F238;var u1F239={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2176 432q50 0 86.5 36.5T2299 555v1753q0 49-36 86t-87 37H423q-51 0-87-37t-36-86V555q0-50 36.5-86.5T423 432h1753zm45 123q0-17-13.5-30t-31.5-13H423q-18 0-31.5 13T378 555v1753q0 18 13.5 31.5T423 2353h1753q18 0 31.5-13.5t13.5-31.5V555zm-280 291q11 0 18.5 7.5t7.5 16.5v1125q0 59-30.5 88.5T1872 2117l-20 2h-202q-10 0-17-6t-8-15l-22-170q0-12 7-19.5t18-7.5h127V870q0-10 7-17t18-7h161zm-289 918h-161q-11 0-18-8t-7-18V870q0-9 7-16.5t18-7.5h161q11 0 18 7t7 17v868q0 10-7.5 18t-17.5 8zm-298-19q10 0 17 8t7 16v329q0 11-7.5 18t-16.5 7H689q-24 0-24-25v-329q0-8 6-16t18-8h665zm-169 137l-5-3H863l-7 3-2 6v91l2 7 7 2h317l5-2 3-7v-91zm208-965q11 0 18 8.5t7 16.5v259q0 10-7.5 17t-17.5 7h-112q-9 0-17-6.5t-8-17.5v-99h-144v60h76q12 0 18.5 8.5t6.5 16.5v97q0 11-7 18.5t-18 7.5h-76v43h153q8 0 16 6.5t8 17.5v98q0 12-8 18t-16 6h-153v44h242q10 0 17 8.5t7 16.5v97q0 11-7.5 18t-16.5 7H689q-24 0-24-25v-97q0-8 5.5-16.5t18.5-8.5h241v-44H777q-9 0-17-6t-8-18v-98q0-11 8.5-17.5t16.5-6.5h153v-43h-76q-10 0-17.5-6.5T829 1284v-97q0-9 6.5-17t18.5-8h76v-60H788v99q0 10-8 17t-17 7H651q-10 0-17.5-6.5T626 1201V942q0-8 7-16.5t19-8.5h278v-89q0-8 6.5-16.5T955 803h133q11 0 17.5 8.5t6.5 16.5v89h281z"},"children":[]}]};exports.u1F239=u1F239;var u1F23A={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2176 432q50 0 86.5 36.5T2299 555v1753q0 50-36.5 86.5T2176 2431H423q-50 0-86.5-36.5T300 2308V555q0-50 36.5-86.5T423 432h1753zm45 123q0-18-13.5-31.5T2176 510H423q-18 0-31.5 13.5T378 555v1753q0 18 13.5 31.5T423 2353h1753q18 0 31.5-13.5t13.5-31.5V555zm-271 329q12 0 18 8.5t6 16.5v418q0 9-6.5 16.5t-17.5 7.5h-191q-11 0-18-7.5t-7-16.5v-258H896v258q0 9-7 16.5t-18 7.5H680q-11 0-18-7t-7-17V909q0-9 7-17t18-8h209V695q0-4 4.5-10t12.5-6h175q16 0 16 16v189h98V695q0-4 3.5-10t14.5-6h173q10 0 14 5.5t4 10.5v189h102l79-197q2-8 8-11.5t14-3.5l10 1 154 65q14 6 14 23 0 7-1 9l-47 114h213zm-77 806q11 0 18 7t7 17v422q0 11-8 18.5t-17 7.5H765q-10 0-17.5-7.5T740 2136v-422q0-10 7-17t18-7h308l35-104h-101q-9 0-17-6.5t-8-18.5v-374q0-11 7-18t18-7h623q11 0 18 7t7 18v374q0 12-8.5 18.5t-16.5 6.5h-291l-35 104h569zm-711-265l1 7 7 3h297l6-3 3-7v-102l-3-7-6-2h-297l-7 2-1 7v102zm516 446l-2-7-6-3H967l-7 3-2 7v111l2 5 7 3h703l6-3 2-5v-111z"},"children":[]}]};exports.u1F23A=u1F23A;var u1F250={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2231.5 1959.5Q2091 2208 1840.5 2355T1300 2502t-540.5-146.5T368 1960t-141-531 141-531 391.5-395.5T1300 356t540.5 147 391 395.5T2372 1429t-140.5 530.5zm-71.5-1027Q2027 702 1796.5 569T1300 436q-264 0-495 131T440 929.5 306 1429q0 269 134.5 500t365 363 494.5 132q267 0 496.5-134t363-364 133.5-497q0-266-133-496.5zM1203 1388q-9 0-17-7.5t-8-17.5V804q0-10 8-17t17-7h667q11 0 18 7t7 17v559q0 8-8 16.5t-17 8.5h-667zm521-375v-70l-3-6-7-3h-355l-7 3-2 6v70l2 6 7 3h355l7-3zm-3 138l-7-3h-355l-7 3-2 5v70l2 7 7 3h355l7-3 3-7v-70zm253 296q10 0 17.5 6.5t7.5 17.5v129q0 11-7.5 18t-17.5 7h-140v60h140q10 0 17.5 7t7.5 18v105q0 11-7 18t-18 7h-140v173q0 63-33 95t-68 36l-20 2h-140q-10 0-16.5-6.5t-8.5-14.5l-26-148q0-9 8.5-16t17.5-7h60v-114h-505q-11 0-18-7.5t-7-17.5v-105q0-11 7-18t18-7h505v-60h-505q-25 0-25-25v-129q0-10 7-17t18-7h871zm-535 449q8 0 16 7t8 18v127q0 11-7 18t-17 7h-202q-11 0-17.5-7.5t-6.5-17.5v-127q0-9 6.5-17t17.5-8h202zM593 966q-2-6-2-10 0-7 4-13.5t12-8.5l342-135q3-2 10-2 17 0 23 16l59 149q2 2 2 4v5q0 5-4 12.5t-11 9.5l-348 138q-3 0-6 1-8 0-13.5-5.5T652 1115zm491 315q0 3 1 8 0 8-3.5 15t-11.5 9l-89 35v743q0 10-7.5 17t-17.5 7H797q-10 0-17-7t-7-17v-659l-93 36q-3 0-6 1-8 0-13.5-5t-8.5-12l-59-149q-2-6-2-10 0-7 4-13.5t12-8.5l385-153q3 0 10-1 6 0 13 3.5t10 11.5z"},"children":[]}]};exports.u1F250=u1F250;var u1F251={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2231.5 1959.5Q2091 2208 1840.5 2355T1300 2502t-540.5-146.5T368 1960t-141-531q0-286 143.5-536T764 499.5 1300 356t535.5 144 393 393.5T2372 1429q0 282-140.5 530.5zm-72-1027.5q-133.5-231-364-364.5T1300 434q-264 0-494.5 132t-365 363T306 1429q0 265 132.5 496T802 2289t498 133 496.5-133 363-363.5T2293 1429t-133.5-497zM1925 956q9 0 17 8t8 17v189q0 11-8 18t-17 7h-170v779q0 80-43 122t-98 46l-14 1h-186q-20 0-25-21l-31-189q-2-4-2-5 0-11 7-17.5t19-6.5h88v-709H655q-25 0-25-25V981q0-11 7-18t18-7h1270zm-593 355q11 0 18.5 8.5t7.5 16.5v490q0 11-8 18t-18 7H803q-9 0-17-6t-8-19v-490q0-11 7-18t18-7h529zm-158 171l-7-4H967l-5 3-3 7v186l3 7 5 3h200l7-3 3-7v-186z"},"children":[]}]};exports.u1F251=u1F251;var u1F300={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1889.5 1876.5q-143.5 205.5-392 328T986 2327q-211 0-386-83.5T310 2008q96 54 192 79.5t201 25.5q83 0 138.5-12.5T897 2064q0-16-15-23.5t-98.5-83-151.5-216-68-306.5q0-236 143.5-441T1100 665.5 1611 542q209 0 384.5 82.5T2289 861q-89-49-191-77t-202-28q-87 0-140.5 13t-53.5 36q0 20 35 40.5t113 104 130.5 211.5 52.5 274q0 236-143.5 441.5zm-376-228Q1603 1559 1603 1435q0-125-89.5-214.5T1300 1131q-125 0-214.5 89.5T996 1435q0 124 89.5 213.5T1300 1738q124 0 213.5-89.5z"},"children":[]}]};exports.u1F300=u1F300;var u1F301={"viewBox":"0 0 2637.4458 2760.837","children":[{"name":"path","attribs":{"d":"M103.946 427q-18.5-13-18.5-39 0-23 12.5-35.5t55.5-12.5q54 0 73 11.5t19 36.5q0 32-18 41t-45 9q-8 0-16.5 1t-17.5 1q-26 0-44.5-13zm2417.5 408.5q-15 13.5-67 13.5-32 0-55.5-9.5t-23.5-43.5q0-22 12.5-34.5t55.5-12.5h30q23 0 43 12t20 36q0 25-15 38.5zm-304.5 1692q-15.5 13.5-69.5 13.5-31 0-53.5-11.5t-22.5-40.5q0-24 14-36t59-12q53 0 70.5 13t17.5 35q0 25-15.5 38.5zm358-2102q-14.5 14.5-64.5 14.5-45 0-63-13.5t-18-38.5 15-36.5 70-11.5q38 0 56.5 12t18.5 36q0 23-14.5 37.5zm-144.5 641.5q-19 13-74 13-38 0-63.5-11.5t-25.5-42.5q0-24 16-36t58-12q61 0 84.5 11.5t23.5 36.5q0 28-19 41zm-1474.5-640.5q-24.5-13.5-24.5-38.5t19-36.5 69-11.5h39q36 0 63.5 11.5t27.5 36.5-20 37.5-66 12.5q-9 0-21.5 1t-25.5 1q-36 0-60.5-13.5zm522.5 1805.5q-21 14-96 14-42 0-71.5-12t-29.5-41q0-23 18-35t80-12h38q35 0 58.5 12.5t23.5 34.5q0 25-21 39zm-1301-1150q-27 0-44.5-13.5t-17.5-39.5q0-24 14.5-35.5t48.5-11.5h31q30 0 49 11.5t19 35.5q0 32-18.5 42t-46.5 10zm152-346.5q23 12.5 26 35.5 0 26-21.5 39t-95.5 13q-42 0-71.5-11.5t-29.5-40.5q0-22 19.5-34t40.5-12q11 0 26-1t29-1q54 0 77 12.5zm268 1007.5q-12 0-24 1-36 0-60-14t-24-39 19.5-36.5 85.5-11.5q63 0 86.5 12.5t26.5 36.5q0 31-26 41t-62 10h-22zm1751-1114q-12 0-26 1-36 0-60-14t-24-38 18.5-36 73.5-12q70 0 97.5 11.5t27.5 36.5q0 31-25 41t-61 10h-21zm-2009.5-271q24.5-14 86.5-14h24q26 0 46 13t20 39q0 27-26.5 43.5t-66.5 16.5q-77 0-92.5-18.5t-15.5-38.5q0-27 24.5-41zm613.5 1775q31 3 49 15.5t18 36.5q0 29-29.5 45t-64.5 16q-60 0-83.5-14t-23.5-44q0-29 27-42t66-13h41zm-837-1520.5q-25-13.5-25-42.5 0-27 23-41.5t88-14.5q51 0 71.5 14t20.5 39q0 28-28 43.5t-65 15.5q-60 0-85-13.5zm310 1513.5q32 3 50 16.5t18 37.5q0 28-30.5 43.5t-65.5 15.5q-65 0-86-14.5t-21-41.5q0-29 25-43t110-14zm194-1773q23-15 88-15h34q29 0 49 13.5t20 41.5q0 33-24.5 48t-66.5 15l-31-1q-45 0-68.5-14.5t-23.5-45.5q0-27 23-42zm-153.5 182.5q25.5-13.5 85.5-13.5h34q27 0 47 13.5t20 41.5q0 30-22 46t-77 16l-33 1q-36 0-58-17t-22-45q0-29 25.5-42.5zm281 2007.5q-27.5 14-62.5 14h-27q-53 0-75-16.5t-22-45.5q0-28 24.5-41.5t86.5-13.5h26q46 0 61.5 17t15.5 39q0 33-27.5 47zm-341.5-1277q21 3 36 16.5t15 38.5q0 32-25.5 46t-63.5 14h-30q-53 0-74-15.5t-21-44.5q0-27 22.5-41.5t86.5-14.5h27q13 0 27 1zm1530.5-908q24.5-14 86.5-14h25q25 0 45 13t20 39q0 27-26.5 43.5t-66.5 16.5q-77 0-92.5-19t-15.5-38q0-27 24.5-41zm411.5 1796q27 0 47 12.5t20 37.5q0 27-27.5 44t-65.5 17q-63 0-86-14t-23-44q0-29 27-42t97-13q9 0 11 2zm-995-1070q-22-2-36.5-17t-14.5-35q0-28 24.5-42t86.5-14q51 0 71.5 14t20.5 39q0 28-29 43.5t-64 15.5q-14 0-29-2zm319 841v7q0 28-29 44t-65 16q-61 0-84.5-13.5t-23.5-42.5q0-27 22-41.5t88-14.5h24q37 2 52.5 15.5t15.5 29.5zm35-1200q30 0 48.5 14t18.5 38q0 29-29.5 44t-64.5 15q-60 0-84.5-13.5t-24.5-42.5 28.5-43 96.5-14q9 0 11 2zm205 881q31 0 50 13.5t19 38.5q0 29-30.5 44t-64.5 15q-66 0-87-15t-21-41q0-28 23-42.5t100-14.5q10 0 11 2zm-380-1069q22 14 22 40 0 28-28.5 43.5t-62.5 15.5q-68 0-89.5-14.5t-21.5-40.5q0-25 21-41.5t81-16.5q56 0 78 14zm-308 744q31 0 50 13.5t19 38.5q0 28-29 43.5t-63 15.5q-67 0-89-14t-22-41q0-30 26-43t65-13h43zm1039-826q-49 0-70-15.5t-21-44.5 25-43 86-14h33q31 0 50 14t19 41q0 33-26.5 47.5t-63.5 14.5h-32zm-971 2077.5q-25 14.5-62 14.5h-32q-46 0-69.5-15t-23.5-45q0-29 25-43t86-14h26q41 0 58 15t17 40q0 33-25 47.5zm621-1452.5q-17 2-33 2-39 0-65-15t-26-48q0-28 26.5-42t78.5-14h35q33 0 53 13.5t20 42.5-22.5 45-66.5 16zm200 912l-48 1q-51 0-72.5-16t-21.5-45q0-28 24.5-41.5t86.5-13.5h34q29 0 49 13.5t20 41.5q0 24-19.5 42t-52.5 18zm6-1251h33q30 0 49 13.5t19 41.5q0 33-26.5 47.5t-63.5 14.5h-30q-45 0-69-15t-24-46q0-24 19.5-40t92.5-16zm140 958q-46 0-68.5-15t-22.5-45q0-27 21.5-42t81.5-15h36q31 0 52.5 14t21.5 43q0 34-27 47.5t-62 13.5zm-381-1054q-51 0-71.5-15.5t-20.5-44.5q0-27 23-42t82-15q70 0 89.5 15t19.5 42q0 33-23.5 46.5t-63.5 13.5h-35zm-302.5 656.5q25.5-13.5 85.5-13.5 64 0 83 14t19 41q0 33-25.5 47.5t-67.5 14.5l-33-1q-52 0-69.5-18.5t-17.5-41.5q0-29 25.5-42.5zm-300.5-944q26-13.5 86-13.5h22q26 0 47.5 13t21.5 39q0 28-27 44t-66 16q-76 0-93-18t-17-38q0-29 26-42.5zm633 1779.5q37 3 52.5 16.5t15.5 35.5q0 28-27.5 43.5t-66.5 15.5q-65 0-86.5-14.5t-21.5-41.5q0-26 22.5-41t100.5-15q10 0 11 1zm-1466-1063q-23-14-23-44 0-27 23.5-40.5t87.5-13.5q47 0 68.5 13t21.5 39q0 29-29 44.5t-64 15.5q-62 0-85-14zm253 796q36 3 52.5 16.5t16.5 35.5q0 28-29 43.5t-64 15.5q-67 0-88.5-13.5t-21.5-41.5q0-29 23.5-43t87.5-14zm-91.5-1054q-21.5-14-21.5-42 0-26 22-41t82-15h28q31 0 51 13.5t20 39.5q0 24-27.5 41.5t-68.5 17.5q-64 0-85.5-14zm397.5 813q27 0 47 14t20 39q0 29-29.5 43.5t-62.5 14.5q-69 0-90-14t-21-41q0-30 26-43t65-13h45zm-686 101.5q-28 16.5-65 16.5-60 0-84.5-13.5t-24.5-42.5q0-28 25.5-42t85.5-14h24q30 2 48.5 15t18.5 37q0 27-28 43.5zm1349-1275.5q-51 0-71.5-15.5t-20.5-44.5 25-43 86-14q64 0 83 14t19 41q0 33-26 47.5t-63 14.5h-32zm-604 604q-20 15-69 15l-26 1q-31 0-53-14t-22-47q0-28 22.5-43t72.5-15h26q38 0 53.5 16.5t15.5 41.5q0 30-20 45zm68 930q-42 0-62-15t-20-45q0-28 22.5-42t72.5-14h31q29 0 47.5 14t18.5 43q0 33-24.5 46.5t-57.5 13.5zm39.5-1260.5q24.5-13.5 86.5-13.5h34q29 0 49 13.5t20 41.5q0 35-30 49t-67 14l-30-1q-51 0-69-20t-18-42q0-28 24.5-41.5zm154 904q24.5-13.5 86.5-13.5 64 0 83.5 14t19.5 43q0 34-29.5 47.5t-65.5 13.5l-33-1q-50 0-68-20t-18-42q0-28 24.5-41.5zM956.446 651q-47 0-69.5-15t-22.5-45q0-29 26.5-43t79.5-14h36q30 0 50.5 13.5t20.5 41.5q0 33-27 47.5t-64 14.5h-30zm851 1785q23 0 37.5 15t14.5 38q0 33-27 48t-66 15l-28-1q-45 0-69-15.5t-24-46.5q0-28 26.5-42t79.5-14q14 0 28 1zm326-1036q-18 2-34 2-39 0-65-14.5t-26-47.5q0-28 24.5-41.5t86.5-13.5h33q33 0 51.5 13.5t18.5 41.5q0 21-16.5 40.5t-72.5 19.5zm-1285.5-124.5q19.5 13.5 19.5 41.5 0 30-21.5 45.5t-79.5 15.5h-29q-34 0-58-14t-24-46q0-26 19-41t92-15q62 0 81.5 13.5z"},"children":[]}]};exports.u1F301=u1F301;var u1F302={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2331.5 1669q-10.5 16-30.5 24L516 2424l-148 119q-19 14-41 14-26 0-47-20t-21-48q0-12 4-23.5t13-21.5l126-137 876-1729q8-17 24-26t35-9q26 0 45 19t19 44q0 10-1.5 19.5T1398 645q0 86 62 147.5t148 61.5q17 0 34.5-4.5t34.5-4.5q26 0 45.5 18.5T1742 908q0 12-2 19l-6 16q-3 9-5.5 22.5t-2.5 36.5q0 55 26 101l330-292q24-22 36.5-48.5T2131 707q0-55-40.5-95.5T1997 571q-17 0-29.5 3.5T1941 583l-22 9q-11 4-26 4-39 0-68-29t-29-70q0-57 61-89.5t140-32.5q136 0 234 98t98 234q0 72-30 137t-88 116l-284 251q20 0 39-4t39-4q27 0 46.5 19t19.5 45q0 22-8 46t-8 48q0 87 61 147.5t148 60.5q31 0 54.5 15t23.5 49q0 20-10.5 36z"},"children":[]}]};exports.u1F302=u1F302;var u1F303={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2160 1109q69 0 117.5 49.5T2326 1276v1188H274v-726q0-68 49-117.5t118-49.5h466q71 0 119 50t48 117v96h477v-558q0-68 49-117.5t118-49.5h442zm-1486.5-75.5Q520 903 520 706q0-219 138.5-352T1030 221h33q37 0 71 10t34 30q0 8-15 20.5t-48 35.5l-54 37q-83 59-122.5 143T889 673q0 140 75.5 241t181.5 118.5 106 55.5q0 37-73.5 56.5T1030 1164q-203 0-356.5-130.5zM1378 790q-5-4-5-10 0-7 9-8l67-11q10 0 18.5-7.5T1479 736l28-59q2-8 8-8t11 8l29 58q4 8 13.5 15t19.5 8l65 7q11 2 11 10 0 5-5 9l-47 45q-12 14-12 33v4l15 66v6q0 9-8 9l-7-2-60-33q-5-4-18-4-5 0-10.5 1t-10.5 4l-57 34q-4 3-8 3-9 0-9-8 0-2 1-3t1-3l11-67v-5q0-8-4-17t-10-13zm314-373q-6-4-6-10 0-7 11-9l66-10q9-2 18-9t14-15l26-59q3-8 9-8t10 8l30 57q3 8 12.5 14.5t18.5 7.5l68 8q9 3 9 9 0 5-4 9l-48 45q-5 5-8.5 14.5T1914 487l1 7 14 66v5q0 8-7 8-6 0-8-2l-59-32q-8-4-21-4-11 0-18 4l-57 36q-6 2-8 2-8 0-8-11 0-4 3-19l7-50v-7q0-8-3-16.5t-9-13.5zm511 911q0-6-13.5-18t-31.5-12h-54q-20 0-33 14t-13 33v84q0 20 13 33.5t33 13.5h54q18 0 31.5-11t13.5-19v-118zM548 2145q0-20-13.5-33.5T503 2098h-55q-19 0-32 13.5t-13 33.5v85q0 20 13 33t32 13h55q18 0 31.5-13t13.5-33v-85zm1459-280q0-6-13.5-17.5T1962 1836h-55q-19 0-32 13.5t-13 32.5v85q0 20 13 33t32 13h55q18 0 31.5-11t13.5-18v-119zM752 2145q0-20-13.5-33.5T707 2098h-54q-20 0-33 13.5t-13 33.5v85q0 20 13 33t33 13h54q18 0 31.5-13t13.5-33v-85zm410 0q0-20-13.5-33.5T1115 2098h-53q-19 0-32.5 13.5T1016 2145v85q0 20 13.5 33t32.5 13h53q20 0 33.5-13t13.5-33v-85zm1041-536q0-6-13.5-17.5T2158 1580h-54q-20 0-33 13.5t-13 33.5v85q0 18 13 31.5t33 13.5h54q18 0 31.5-11.5t13.5-17.5v-119zM957 1883q0-19-14.5-32t-31.5-13h-54q-18 0-32 13t-14 32v86q0 19 14 32t32 13h54q17 0 31.5-13t14.5-32v-86zm887-538q0-19-13.5-33t-31.5-14h-54q-20 0-33 14t-13 33v84q0 20 13 33.5t33 13.5h54q18 0 31.5-13.5t13.5-33.5v-84zM548 1883q0-19-13.5-32t-31.5-13h-55q-19 0-32 13t-13 32v86q0 19 13 32t32 13h55q18 0 31.5-13t13.5-32v-86zm204 0q0-19-13.5-32t-31.5-13h-54q-20 0-33 13t-13 32v86q0 19 13 32t33 13h54q18 0 31.5-13t13.5-32v-86z"},"children":[]}]};exports.u1F303=u1F303;var u1F304={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2478 1304v918q0 91-65 157t-157 66H345q-91 0-157-66t-66-157v-992q56-31 112.5-58t118.5-38l-44-48q-10-12-10-25 0-17 10-27.5t24-13.5l282-30-108-270q-3-6-3-12 0-17 11.5-29t28.5-12q6 0 12 3l275 93-4-289q0-15 10.5-27.5T867 434q6 0 13 2.5t12 6.5l241 209 127-280q5-10 15-16.5t21-6.5q25 0 36 22l145 293 260-196q11-8 23-8 19 0 29.5 12.5T1800 500q0 11-3 26l-30 259 265-81q2-2 11-2 17 0 28 12.5t11 27.5q0 8-1 12l-92 265 282 16q17 2 27 12.5t10 27.5-12 29l-112 103q71 0 142 21.5t152 75.5zm-897 243l83-69q42-35 84-69t86-65q-46-202-186.5-310T1290 926q-188 0-328 100.5T774 1279q41 34 104.5 94t148.5 144l113 114q42 42 86 68.5t86 26.5q46 0 134-69.5t135-109.5zM612 771l95 238 2 8q0 3 1 7 0 15-10.5 26t-24.5 13l-255 27 37 40q69 6 131 34t120 66q63-169 220.5-275.5T1290 848q230 0 400 121.5t214 328.5q33-20 66.5-36.5t67.5-27.5l137-126-242-14q-17 0-27.5-12t-10.5-29q0-3 2-11l84-241-248 77q-3 0-10 1-17 0-29-11t-12-29v-4l29-249-225 170q-11 7-26 7-10 0-19-6.5t-14-15.5l-128-261-115 251q-12 23-37 23-16 0-25-9L907 560l4 257q0 17-11.5 28.5T873 857q-8 0-14-3z"},"children":[]}]};exports.u1F304=u1F304;var u1F305={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2478 1635v562q0 91-65.5 156.5T2256 2419H345q-91 0-157-65t-66-157v-562h207l-76-56q-7-7-11.5-14.5T237 1547q0-12 7.5-22t18.5-15l216-79-170-182q-10-12-10-26 0-16 9-27t25-13l282-32-108-268q-3-6-3-13 0-18 12-29.5t29-11.5q7 0 11 2l275 93-4-288q0-15 11.5-27.5T867 596q6 0 13 3t12 7l241 207 127-278q11-24 36-24 11 0 21 6t15 16l145 292 260-196q12-7 23-7 18 0 29 11.5t11 28.5v4l-33 281 265-81q8-2 12-2 17 0 27.5 12.5T2082 903v6q0 4-1 7l-92 264 282 18q17 0 27 12t10 28q0 15-12 27l-193 178 218 75q10 4 18 14t8 22q0 21-18 34l-70 47h219zm-1728-21l2 21h1089q2-9 2-28 0-151-69.5-271.5t-205-184T1290 1088q-241 0-391 151.5T749 1594q0 10 1 20zm-393-54l102 75h214q0-11-1-21t-1-20q0-234 173.5-409.5T1290 1009q165 0 319 75t233.5 216.5T1922 1598q0 19-3 37h199l103-69-206-69q-12-4-19.5-14t-7.5-23q0-17 13-29l174-161-242-15q-16 0-27-11t-11-28q0-5 2-13l84-239-254 77q-3 0-6 1-16 0-27.5-12t-11.5-29v-5l29-249-225 170q-11 8-24 8-11 0-20.5-6t-14.5-16l-128-261-115 252q-5 10-15 16.5t-21 6.5q-14 0-26-10L907 722l4 257q0 17-11.5 29t-28.5 12q-3 0-6-1l-253-86 95 237 2 8q0 4 1 8 0 15-10.5 26t-24.5 12l-255 29 158 167q10 11 10 27 0 26-25 36zm1541 209.5q-25-11.5-83-11.5-99 0-195-2t-195-2l-359 1-261-1q-32 0-55.5 13.5T726 1810q0 16 24.5 42.5T863 1884t100 30 30.5 56.5 69.5 31.5l44-1q43 0 63.5 7.5t35.5 24.5l19 25q23 28 60 35.5t74 7.5q61 0 115-11t78-47.5 94.5-36.5 113.5-20.5 73-69 60-68 30-43.5-25-35.5zm459.5 19Q2329 1773 2234 1773q-48 0-68.5 14.5T2145 1831q0 28 21.5 42.5t91.5 14.5q74 0 101-12.5t27-37.5q0-34-28.5-49.5zm-1624 192Q705 1965 612 1965q-48 0-70 14t-22 44q0 28 21.5 42.5T633 2080q67 0 98-11t31-38q0-35-28.5-50.5zm1422.5-16q-29-15.5-122-15.5-53 0-71 15t-18 42q0 29 21.5 43.5t89.5 14.5 98.5-10.5 30.5-39.5q0-34-29-49.5zM447.5 1822q-29.5-16-120.5-16-49 0-69.5 14.5T237 1862q0 29 20 44t91 15 100-11.5 29-37.5q0-34-29.5-50z"},"children":[]}]};exports.u1F305=u1F305;var u1F306={"viewBox":"0 0 2639.6437 2760.837","children":[{"name":"path","attribs":{"d":"M2295.644 104q69 0 126.5 40.5t81.5 105.5h-2329q24-63 81.5-104.5t127.5-41.5h1912zm219 185q3 18 3 38v126h-2356V327q0-20 3-38h2350zm-2353 223h2356v145h-2356V512zm0 222h2356v127h-2356V734zm0 223h2356v107h-2356V957zm2295 311q-4-45-31-89h92v89h-61zm-861-89q-11 21-19 43.5t-11 45.5h-1404v-89h1434zm862 224h60v68h-60v-68zm-893 68h-1403v-68h1403v68zm-1403 154h168q-17 25-27 50h-141v-50zm1029 50q-11-28-26-50h400v50h-374zm1267-50h60v50h-60v-50zm-58 857h-2053v-726q0-67 50-117t117-50h466q70 0 118.5 50.5t48.5 116.5v95h477v-557q0-67 49-117t118-50h442q67 0 116.5 49t49.5 118zm-124-1137q0-6-13.5-17.5t-32.5-11.5h-54q-19 0-32.5 13.5t-13.5 32.5v86q0 17 14.5 31t31.5 14h54q18 0 32-10.5t14-18.5v-119zm-504 103q0 17 14 31t31 14h55q16 0 30.5-14t14.5-31v-86q0-19-13.5-32.5t-31.5-13.5h-55q-19 0-32 13.5t-13 32.5v86zm358 282q0 19 13.5 32t32.5 13h54q19 0 32.5-11t13.5-18v-119q0-6-12.5-17t-33.5-11h-54q-19 0-32.5 13.5t-13.5 31.5v86zm-50 152q0-6-13.5-17.5t-33.5-11.5h-53q-19 0-33 13.5t-14 33.5v85q0 19 14 32.5t33 13.5h53q20 0 33.5-11.5t13.5-18.5v-119zm-946 234q-18 0-31.5 13.5t-13.5 33.5v85q0 19 13.5 32t31.5 13h54q20 0 33.5-13t13.5-32v-85q0-20-13.5-33.5t-33.5-13.5h-54zm-250-130q0 20 13 33.5t33 13.5h54q18 0 32-14.5t14-32.5v-85q0-18-13-31.5t-33-13.5h-54q-20 0-33 13.5t-13 31.5v85zm-59-85q0-18-13.5-31.5t-31.5-13.5h-54q-20 0-33 13.5t-13 31.5v85q0 20 13 33.5t33 13.5h54q18 0 31.5-13.5t13.5-33.5v-85zm-99 215q-20 0-33 13.5t-13 33.5v85q0 19 13 32t33 13h54q18 0 31.5-13t13.5-32v-85q0-20-13.5-33.5t-31.5-13.5h-54zm-105-215q0-18-13.5-31.5t-33.5-13.5h-53q-19 0-32 13.5t-13 31.5v85q0 20 13 33.5t32 13.5h53q20 0 33.5-13.5t13.5-33.5v-85zm-145 347q0 19 13 32t32 13h53q20 0 33.5-13t13.5-32v-85q0-20-13.5-33.5t-33.5-13.5h-53q-19 0-32 13.5t-13 33.5v85z"},"children":[]}]};exports.u1F306=u1F306;var u1F307={"viewBox":"0 0 2625.5234 2760.837","children":[{"name":"path","attribs":{"d":"M2385.523 2466q-13 9-28 12h-2025v-726q0-68 50-117.5t117-49.5h466q70 0 118.5 50.5t48.5 116.5v96h477v-557q0-68 49.5-118t117.5-50h442q68 0 117 50t49 118zm118-1981h-777q16 14 30 28.5t28 30.5h719v145h-627q8 19 15 38l14 39h598v126h-577q3 23 3 44 0 26-3 53h577v107h-171q-25-14-54-22.5t-60-8.5h-383q7-32 11.5-64t4.5-65q0-215-156-370.5t-370-155.5q-219 0-372 158t-153 368q0 107 38.5 199t108.5 165l4 4q90 82 180.5 120t193.5 38q61 0 118-13.5t107-38.5v93h-20q-48 17-99 27t-106 10-105.5-10-98.5-27h-974v-70h837q-41-27-75.5-60.5t-64.5-72.5h-697v-89h641q-14-27-25-56t-20-59h-596V989h577q-3-27-3-53 0-21 3-44h-577V766h598l14-39q7-19 15-38h-627V544h719q14-16 28-30.5t30-28.5h-777V359q0-20 3-38h2350q3 18 3 38v126zm-222-349q69 0 126.5 40.5t81.5 105.5h-2329q24-63 81.5-104.5t127.5-41.5h1912zm-216 1744q0-8-13.5-19t-33.5-11h-53q-19 0-33 13t-14 33v85q0 20 14 33.5t33 13.5h53q20 0 33.5-11.5t13.5-19.5v-117zm196-539q0-6-13.5-17.5t-32.5-11.5h-54q-19 0-32.5 13.5t-13.5 33.5v85q0 19 13.5 32t32.5 13h54q19 0 32.5-11t13.5-18v-119zm-146 385q0 19 13.5 32t32.5 13h54q19 0 32.5-11t13.5-17v-120q0-6-13.5-17t-32.5-11h-54q-19 0-32.5 13t-13.5 33v85zm-1100 171q0-17-13-31t-33-14h-54q-20 0-33 13.5t-13 31.5v85q0 20 13 33.5t33 13.5h54q18 0 32-14.5t14-32.5v-85zm-350 85q0 20 13 33.5t33 13.5h54q18 0 31.5-13.5t13.5-33.5v-85q0-18-13.5-31.5t-31.5-13.5h-54q-20 0-33 13.5t-13 31.5v85zm1092-538q0 19 13 32t32 13h55q18 0 31.5-13t13.5-32v-85q0-20-13.5-33.5t-31.5-13.5h-55q-20 0-32.5 15t-12.5 32v85zm-947 715q0-20-13.5-33t-31.5-13h-54q-20 0-33 13t-13 33v85q0 19 13 32t33 13h54q18 0 31.5-13t13.5-32v-85zm-349-177q0 20 13 33.5t32 13.5h53q20 0 33.5-13.5t13.5-33.5v-85q0-18-13.5-31.5t-33.5-13.5h-53q-19 0-32 13.5t-13 31.5v85zm759 177q0-20-13.5-33t-33.5-13h-54q-18 0-31.5 13t-13.5 33v85q0 19 13.5 32t31.5 13h54q20 0 33.5-13t13.5-32v-85zm-614 0q0-20-13.5-33t-33.5-13h-53q-19 0-32 13t-13 33v85q0 19 13 32t32 13h53q20 0 33.5-13t13.5-32v-85zm944-452h-363q-3-14-7.5-26t-10.5-25h381v51zm-1403-51h148l-10 25q-5 12-7 26h-131v-51zm2296-356q0-54-14-89h74v89h-60zm0 133h60v70h-60v-70zm0 223h60v51h-60v-51z"},"children":[]}]};exports.u1F307=u1F307;var u1F308={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2538 1556q-2 39-6 79t-10 79q-33-65-87-97.5t-116-32.5q-54 0-98.5 27.5T2160 1677t-53 38q-27 0-45-19.5t-47-33.5-64-14q-43 0-89 24.5t-83 79-69 54.5q-22 0-41.5-9t-42.5-9q-31 0-61.5 34.5T1534 1940q0 46 32.5 76.5t77.5 30.5q17 0 32-6t32-6q35 0 57.5 42t69.5 69.5 110 27.5q62 0 113-23t67-23q9 0 16 2t13 6q68 47 139 47l17-1q9 0 17-2-29 33-59.5 61t-63.5 51q-20-3-41-13.5t-41-23.5q-32 22-77 31.5t-83 9.5q-84 0-161.5-37.5T1675 2154q-7 0-19 1-117 0-177.5-63t-60.5-159q0-99 61-175t162-76q15 0 23 2 3-21 3-44 0-168-119.5-287.5T1260 1233q-152 0-267.5 101.5T856 1589q5 5 8.5 9.5t8.5 9.5l24-4q12 0 24-1 95 0 155.5 77t60.5 175q0 96-61 158.5T901 2076q-14 0-20-2-48 69-125.5 106T594 2217q-42 0-83-10.5t-78-29.5q-35 23-78.5 37.5T266 2229q-35-34-59.5-69t-44.5-82q23 13 49.5 19t52.5 6q41 0 77.5-14t52.5-26.5 35-12.5 68 23 113 23q61 0 111-29t70.5-70.5T847 1955q16 0 31.5 7t32.5 7q45 0 77.5-33.5t32.5-89.5q0-55-24-96t-70-41q-21 0-40 9.5t-42 9.5q-16 0-29.5-11.5T790 1688l-25-33q-27-37-72-61.5t-89-24.5q-34 0-63.5 15t-46.5 33.5-45 18.5q-38 0-51.5-35.5t-58-66T236 1504q-48 0-93 21t-77 59q-2-36-3-71t-1-70q11-8 25.5-15.5T116 1415q51-264 215.5-481T741 595t519-122q285 0 539.5 132.5t417.5 366 200 513.5l25 10q28 11 51.5 25.5t44.5 35.5zM201 1395q19-3 37-3 31 0 66 8 79-325 347-536.5T1260 652q236 0 447.5 107.5t350 299T2234 1482q22-5 46-8t56-3q-42-258-195.5-470T1755 670t-495-119q-375 0-674.5 236.5T201 1395zm1706 145q20-4 45-4 23 0 40 3-36-269-244.5-454T1260 900q-256 0-456.5 159T542 1463q14-3 27.5-5t27.5-2q8 0 17 1l16 2q58-207 233-341t397-134q242 0 426.5 159t220.5 397zm167 26l10 5 8 6q28-37 68-60-30-222-159.5-404t-326-282.5T1260 730q-314 0-561 196t-321 500q22 13 41.5 28t36.5 35q55-288 282.5-477.5T1260 822q204 0 383.5 95t296 269.5T2074 1566zm-330 56q20-17 42.5-31.5t45.5-25.5q-28-214-192.5-358T1260 1063q-194 0-348 116.5T705 1478q22 10 43 21.5t41 25.5q38-160 170-265t301-105q193 0 334.5 135.5T1744 1622z"},"children":[]}]};exports.u1F308=u1F308;var u1F309={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M890 2284h848v322q-93 8-186 9l-187 2-107 2q-56 0-117 1-61 0-124-1.5t-127-6.5v-328zm1533-662q28 11 55.5 20t56.5 17q-5 94-16 187t-37 183h-59v-407zM909 2029H664v-637q67-43 128-88.5t117-90.5v816zm1167-568q58 34 118.5 64.5T2320 1583v446h-244v-568zm-22 823h310q-66 94-144 154.5t-166 96.5v-251zM1012 1124q67-61 121.5-116t96.5-101v1122h-218v-905zm1534.5 226q-2.5 91-7.5 216-236-71-467-212.5T1643 1026t-290-313q-16-22-40-22-25 0-34 17t-128 150-301.5 285T463 1407 53 1576l1-133v-163q0-188 14-357.5T125.5 603t116-266 163-171.5 246-87T985 42t376-5q383 0 558 43.5T2195 190t176 175 126.5 292.5T2549 1158q0 101-2.5 192zm-2195-245.5Q332 1085 304 1085t-47.5 19.5T237 1151q0 29 19.5 48t47.5 19 47.5-19 19.5-48q0-27-19.5-46.5zm42.5-704q14 14.5 34 14.5 21 0 35.5-14.5T478 366t-14.5-34.5T428 317q-20 0-34 14.5T380 366t14 34.5zM516.5 710Q494 687 461 687t-55.5 23-22.5 56q0 32 22.5 55t55.5 23 55.5-23 22.5-55q0-33-22.5-56zm359-57Q861 639 841 639q-21 0-34.5 14T793 687t13.5 34.5T841 736q20 0 34.5-14.5T890 687t-14.5-34zM1034 232q-23-23-55-23-33 0-56 23t-23 56q0 32 23 55t56 23q31 0 54.5-22.5T1057 288t-23-56zm627 99.5q-14-14.5-34-14.5t-34.5 14.5T1578 366t14.5 34.5T1627 415t34-14.5 14-34.5-14-34.5zm229 370q-14-14.5-34-14.5-21 0-35 14.5t-14 34.5 14 34 35 14q20 0 34-14t14-34-14-34.5zM2049 271q-23-23-56-23-31 0-54.5 22.5T1915 326t23 56.5 55 23.5q33 0 56-23.5t23-56.5q0-32-23-55zm201 779.5q-14-14.5-34-14.5t-34.5 14.5-14.5 34.5 14.5 34 34.5 14 34-14 14-34-14-34.5zm98.5-397.5q-14.5-14-35.5-14-20 0-34 14t-14 34 14 34.5 34 14.5q21 0 35.5-14.5T2363 687t-14.5-34zM1398 907q43 47 100.5 105t127.5 121v896h-228V907zM317 1579q66-25 126-58l118-66v574H317v-450zm-102 450H89q-17-87-24-178t-9-182q40-11 80-24t79-27v411zm1513-808q56 45 117.5 90t128.5 88v630h-246v-808zM176 2284h396v278q-143-41-244.5-111.5T176 2284z"},"children":[]}]};exports.u1F309=u1F309;var u1F30A={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2507 1941.5q3 3.5 3 14.5 0 59-78.5 153t-207 151.5T1943 2318q-134 0-268-38t-288.5-115.5-244.5-104-168-26.5q-131 0-313.5 105T338 2244q-100 0-174.5-78.5T89 1982q0-9 2.5-21t9.5-12q10 0 42.5 17t75.5 17q63 0 113.5-48.5t86.5-119 64-131.5l58-127q106-231 294-456.5t478.5-388T1898 550q70 0 131 8.5t111 21.5l36 10q127 35 223 109t96 155q0 43-29.5 72.5T2388 956q-35 0-74.5-24t-58.5-24q-14 0-14 14 0 10 10 17l16 13q25 17 36.5 43t11.5 53q0 45-28 76.5t-72 31.5h-5q-48 0-89-30l-13-11q-14-10-30.5-19.5t-27.5-9.5q-7 0-15.5 4.5t-8.5 14.5q0 16 41 48.5t41 88.5q0 46-31 78.5t-78 32.5q-33 0-97.5-38.5T1750 1276q-103 0-166 51.5t-63 139.5q0 178 226 366.5t460 188.5q77 0 153.5-24.5t104-42 34.5-17.5q5 0 8 3.5zm-884.5-728Q1673 1193 1750 1193q97 0 170.5 38.5t78.5 38.5l6-1q8 0 14-6.5t6-20.5q0-21-26-40.5t-41-43-15-53.5q0-45 32-74t75-29q44 0 90.5 36t72.5 36q7 0 13.5-4.5t6.5-20.5q0-8-3-15.5t-13-14.5l-15-12q-17-12-30.5-35t-13.5-52q0-40 29-68t68-28q36 0 80 25t53 25q12 0 18.5-6t6.5-14q0-30-54-80.5T2177 678t-279-45q-105 0-256 30t-151 89q0 33 49 40t49 39q0 29-41 54t-41 59q0 36 51.5 44.5t51.5 44.5q0 32-53.5 71.5T1503 1186q0 20 11 34t34 14q24 0 74.5-20.5z"},"children":[]}]};exports.u1F30A=u1F30A;var u1F30B={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1824 2493q-312 85-553 85-209 0-395.5-38.5t-349-113.5T364 2250q0-31 13-56t38-48l29-27q203-176 346.5-371.5t180-295.5 91.5-100q15 0 25 5.5t20 12.5l15 13q7 6 18 6 18 0 44.5-23.5t49.5-23.5q33 0 54 26t39 26 42-26.5 58-26.5q70 0 129.5 133.5t195 327 260 299.5 124.5 177q0 130-312 215zM707 471.5q25-24.5 57-24.5 48 0 135 72t156.5 189 121.5 292 52 183q0 16-11.5 24.5t-25.5 8.5q-13 0-24.5-9t-46.5-116.5-85.5-191-115-145.5-127-98.5-87-66.5-24.5-62q0-31 25-55.5zm1309.5 168Q2045 656 2045 691q0 77-101.5 85t-255 72-235.5 164l-30 38q-16 21-29 32t-23 27.5-24 16.5q-13 0-20.5-6.5t-7.5-17.5l14-55q15-50 110-162.5t233.5-187T1947 623q41 0 69.5 16.5zM2172 1288q-24 18-54 18-36 0-83-37t-122-59.5-172-22.5q-95 0-154.5 18t-74.5 18q-10 0-24-4.5t-14-13.5q0-17 16-31.5t41-25.5l24-11q62-33 130-47.5t138-14.5q118 0 245.5 48t127.5 122q0 25-24 43zm-1866.5 69q-16.5-18-16.5-38 0-77 129.5-158.5T718 1079q127 0 228 53t101 88q0 14-9 24t-23 10q-12 0-29-13t-72-32.5-126-19.5q-155 0-262.5 93T360 1375q-38 0-54.5-18zM443 867l-62-1q-92 0-112-22.5T249 801q0-43 42.5-65.5T397 713q133 0 285.5 74.5t238.5 145 86 104.5q0 17-11.5 29t-27.5 12q-18 0-59.5-41T734 933t-291-66zm784 67q-6-7-6-21 0-147 101-295t239.5-227 211.5-79q40 0 67 16t27 46q0 50-47.5 82.5t-160 56.5-203 110.5T1290 878l-12 28q-6 13-15.5 24t-20.5 11q-9 0-15-7zm1088-58q14 6 25 17t11 23q0 31-23.5 47.5T2256 980q-60 0-111.5-5.5T2036 969q-83 0-157.5 10t-149.5 30l-13 3q-17 4-41.5 8t-38.5 4q-7 0-13.5-1t-6.5-6q0-41 115.5-80.5t222-56.5 273.5-17q18 0 36.5 1t35.5 5zM1025 429q-24-31-35-56t-11-50q0-30 17.5-49.5T1040 254q51 0 92 78.5t41 283.5q0 14-6 28t-16 14q-21 0-40.5-71.5T1048 460zm223-18q-26-49-26-98 0-38 23-60t58-22 53.5 23.5T1375 305q0 46-30.5 100.5T1293 460q-19 0-45-49zM754.5 243q25.5-19 57.5-19 34 0 61.5 32t41.5 81q0 14 5.5 27.5T926 391q0 14-5.5 22t-21.5 8q-41 0-105.5-38.5T729 300q0-38 25.5-57zM1985 530q-27-3-38-11t-11-19q0-28 58-73t96-45q29 0 50.5 20.5T2162 454q0 35-22 54t-58 19q-23 0-46.5 1.5T1985 530zM448 582q-47-13-73.5-35T348 491t21-56.5 54-22.5q59 0 104.5 57T573 569q0 19-11.5 25.5T533 601q-11 0-21-2l-18-4z"},"children":[]}]};exports.u1F30B=u1F30B;var u1F30C={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1289 1664q-3 17-14.5 26.5T1248 1705l-55 15-16 55q-5 18-19.5 29.5T1126 1816q-27 0-45-26l-32-50-65 3q-21 0-35.5-15t-14.5-35q0-10 4-19.5t10-17.5l37-46-19-53q-4-9-4-19 0-22 14.5-38t37.5-16q5 0 10 1t10 3l55 20 45-33q8-7 17-10t17-3q22 0 37.5 16t15.5 38l-3 60 48 33q11 8 17 20.5t7 24.5zm204-952q-23 0-39-14.5t-16-36.5q0-20 13-36l37-46-19-52q-5-12-5-22 0-23 16-37t36-14q10 0 21 3l55 20 45-34q16-12 34-12 23 0 37.5 15.5T1723 483l-2 61 48 35q11 8 17 20t7 25q0 17-12.5 31.5T1751 675l-55 13-17 56q-5 19-19 29.5t-31 10.5q-28 0-45-26l-32-46h-59zm344 409q-3 17-14.5 27.5T1795 1164l-54 13-18 57q-6 18-19 28.5t-30 10.5q-30 0-47-26l-30-48-63 2q-22 0-37-15t-15-35q0-9 4-19t10-18l36-46-20-52q-2-5-3-10.5t-1-10.5q0-22 14.5-37t37.5-15q5 0 11 1t11 3l55 19 45-34q16-12 34-12 22 0 36.5 16t14.5 37l-1 61 46 34q25 18 25 46v7zM386 2053l-31-48-64 1q-21 0-35.5-15t-14.5-35q0-21 14-36l35-45-19-54q-4-9-4-20 0-22 15-37t37-15q12 0 21 4l54 19 47-34q16-11 33-11 23 0 37.5 16t14.5 40l-1 57 46 33q11 8 17 20.5t8 25.5q0 20-12 32.5t-31 17.5l-53 15-18 55q-6 19-19.5 30t-31.5 11q-13 0-25-6.5t-20-20.5zm314 289q25 19 25 48 0 17-12.5 30t-29.5 18l-54 15-18 55q-6 18-19 29.5t-30 11.5q-30 0-47-28l-30-48-63 2q-20 0-36-13.5t-16-36.5q0-19 13-37l36-45-18-53q-2-5-3-11t-1-11q0-20 15-35.5t36-15.5q6 0 11.5 1t10.5 3l55 20 45-35q17-11 34-11 20 0 35.5 14.5T655 2247l-2 62zm1489-1065q11 8 18 20t7 24q0 20-12 33t-31 18l-53 15-18 55q-6 18-19 29.5t-30 11.5q-30 0-47-27l-31-48-62 1q-21 0-36.5-14t-15.5-37q0-20 14-35l35-46-19-53q-2-5-2-11l-1-10q0-23 14.5-37.5t36.5-14.5q5 0 10.5 1t10.5 3l54 20 47-35q8-5 16.5-8t17.5-3q22 0 36.5 16t14.5 38l-1 60zm-246-378q-21 0-34.5-12.5T1895 854q0-7 2-14.5t9-15.5l26-33-14-37q-2-4-2-9l-1-10q0-19 13.5-32t31.5-13q11 0 18 4l40 14 33-25q13-11 29-11 19 0 32 13.5t13 34.5l-2 44 35 23q21 19 20 45.5t-35 38.5l-40 10-13 39q-10 35-43 35-25 0-40-23l-22-33h-42zm38-374q-20 0-34-12.5t-14-32.5q0-14 12-31l26-32-13-38q-5-10-5-18 0-21 14-33t32-12h10l9 2 38 15 33-24q16-11 30-11 19 0 32 14t13 30l-2 46 34 25q22 16 22 38 0 17-11 29t-26 17l-38 9-13 40q-11 35-44 35-25 0-39-23l-22-34h-41zm-495 1381q21 18 21 39 0 17-10 28.5t-27 16.5l-38 11-13 38q-5 17-16 26.5t-28 9.5q-26 0-39-24l-22-34-47 2q-18 0-31.5-13.5T1222 1973q0-15 12-30l26-33-13-37q-2-4-2-9l-1-10q0-18 13-31.5t32-13.5q10 0 18 4l38 14 33-25q8-5 15.5-7t14.5-2q18 0 31.5 11.5t13.5 31.5l-1 47zm-575 173l-11 38q-5 17-16.5 26.5T856 2153q-26 0-41-23l-22-35-45 2q-18 0-31.5-13.5T703 2051q0-15 12-30l26-33-14-38q-4-10-4-18 0-20 13.5-32.5T768 1887q11 0 18 4l40 14 33-25q13-11 30-11t30.5 13.5T933 1916l-2 44 35 24q20 17 20 41 0 15-10.5 26.5T951 2068zM2434 994.5q-4 9.5-12 17.5l-23 20 5 33v8q0 21-12.5 34t-29.5 13q-8 0-14-2t-12-5l-28-18-28 17q-16 7-24 7-20 0-32.5-14t-12.5-33q0-7 1-10l7-33-23-21q-16-15-16-35 0-18 12.5-30t29.5-14l33-4 15-30q13-26 41-26t41 28l14 30 33 4q15 2 27 14.5t12 30.5q0 9-4 18.5zM1578 1613q-4 16-16 25t-26 9q-11 0-22-5.5t-18-16.5l-17-27-39 1q-16 0-29.5-13t-13.5-30q0-16 13-32l20-26-11-29q-2-4-2-8.5t-1-9.5q0-17 12-31t32-14q8 0 18 4l32 11 26-19q10-9 28-9 19 0 31.5 12t12.5 30l-1 38 27 20q21 15 21 37 0 16-10 27.5t-26 15.5l-31 9zM359 1961q8 0 16.5 4.5T389 1977l34 53q4 5 8 5 6 0 9-8l19-60q2-8 9.5-15.5t14.5-9.5l59-15q10-3 10-8t-7-10l-49-36q-8-4-11.5-12t-3.5-16l1-63q0-11-8-11l-7 2-48 36q-10 7-25 7-8 0-11-2l-64-21q-8 0-8 8 0 4 1 5l21 56 2 7q0 3 1 6 0 13-9 23l-38 49q-4 4-4 9 0 6 11 6zm1801-632q10-2 10-8 0-2-6-8l-50-36q-8-4-11.5-13t-3.5-17l1-63q0-11-7-11l-8 3-48 37q-12 7-25 7-8 0-11-3l-64-22q-8 0-8 8 0 5 1 6l21 57q0 3 1 11 0 13-7 25l-38 48q-4 5-4 10 0 6 11 6l64-2q8 0 16.5 4.5t13.5 11.5l33 52q5 7 10 7 4 0 7-10l19-58q2-8 10-16t16-9zm-923 333q8-2 8-8 0-4-5-8l-50-36q-7-5-11.5-15t-4.5-18l3-60q0-11-9-11l-8 3-48 37q-9 7-23 7-3 0-6-1l-69-24q-9 0-9 8 0 4 2 6l20 57q2 3 2 11 0 14-7 24l-40 49q-4 5-4 8 0 7 11 7l64-1q8 0 17 5t14 11l34 52q5 7 8 7 7 0 8-10l18-59q3-8 10.5-15t15.5-9zm-566 733q10-2 10-8 0-5-6-9l-50-36q-8-5-11.5-13t-3.5-16l1-63q0-11-7-11l-8 3-48 36q-5 4-11 5t-14 1q-7 0-11-1l-64-22q-7 0-7 8 0 4 1 6l21 56q0 4 1 12 0 16-7 24l-39 49q-4 4-4 8 0 7 11 7l64-1q8 0 17 4t13 12l33 52q7 7 10 7 5 0 8-10l18-60q3-8 10.5-15.5t15.5-9.5zm1113-1274q9-2 9-8 0-2-1.5-5t-3.5-5l-51-35q-8-5-11.5-13t-3.5-16l1-63q0-12-7-12l-8 4-48 35q-10 7-24 7h-6q-3 0-5-1l-65-22q-7 0-7 8 0 3 2 6l20 56q0 2 1 4.5t1 4.5q0 16-8 26l-39 50q-4 4-4 8 0 7 11 7l64-3q8 0 16.5 5t12.5 12l34 52q4 6 10 6 4 0 8-8l18-60q2-8 10-15.5t16-9.5zm-298-468q-4 4-4 8 0 7 11 7l63-3q8 0 17 5t13 11l35 54q2 5 8 5 7 0 8-8l18-60q3-8 10.5-15.5t15.5-9.5l59-15q9-2 9-8 0-5-6-10l-50-35q-7-5-11.5-14.5T1677 547l2-60q0-12-8-12l-8 4-47 35q-11 7-24 7-8 0-11-1l-65-22q-8 0-8 8 0 4 2 6l20 56q2 4 2 12 0 13-7 23zm489-180l-1 3q0 2-1 4 0 6 8 6l49-2q6 0 13 4t10 9l27 41 6 4q2 0 6-7l14-47q3-5 8.5-10.5t11.5-7.5l45-12q7-2 7-7 0-3-4-7l-38-27q-7-3-10-9.5t-3-12.5l2-49q0-8-6-8l-7 2-37 28q-3 2-7.5 3.5t-9.5 1.5l-10-1-44-17h-5q-6 0-6 6 0 3 2 4l15 44q0 3 1 9 0 13-5 18zm-515 1478q7 0 7-5 0-4-4-7l-38-27q-5-5-9-12t-4-14l2-46q0-9-6-9l-7 3-35 27q-9 6-19 6l-9-2-49-16q-7 0-7 7 0 2 2 4l16 44q0 2 1 3v3q0 11-6 20l-29 38q-3 3-3 7 0 5 7 5l49-3q16 0 23 13l26 41 7 4q6 0 7-5l14-47q5-14 19-19zm477-1102q-3 2-3 6 0 5 9 5l49-2q6 0 12.5 4t9.5 9l26 41 7 4q5 0 6-7l14-45q2-7 8-12.5t11-6.5l46-13q6 0 6-5 0-6-4-7l-38-29q-5-3-8.5-10t-3.5-15l1-48q0-6-5-6l-7 2-36 28q-6 5-19 5l-8-1-50-17q-7 0-7 7 0 3 2 4l16 43q0 2 1 3.5t1 3.5q0 11-7 20zM940 2030q7 0 7-6 0-3-5-8l-38-28q-11-6-11-21l1-50q0-8-5-8l-7 3-37 27q-6 6-18 6l-9-2-44-16h-6q-5 0-5 5 0 4 1 6l15 42q2 3 2 10 0 12-6 18l-30 38q-3 3-3 5 0 6 9 6l49-1q14 0 23 12l26 40 7 5q2 0 6-7l13-45q2-6 8.5-12t12.5-7zM2396 982q3-2 3-6 0-3-6-5l-41-7q-5 0-11-4.5t-8-9.5l-16-37-6-5-7 5-16 36q-3 5-9 9t-12 6l-40 4q-8 2-8 5 0 2 4 6l29 27q3 5 5.5 10.5t2.5 10.5v2l-9 42q0 8 5 8l40-22q6-3 12-3 8 0 13 4l35 21 6 1q4 0 4-8l-7-41v-4q0-11 7-18zm-843 580q2-5 7-10t10-6l40-10q5 0 5-5 0-6-4-7l-33-23q-5-3-8-10t-3-12l2-40q0-8-5-8l-38 26q-5 5-15 5l-8-1-43-15q-5 0-5 5 0 3 1 5l14 38 1 7q0 9-5 16l-26 32q-3 3-3 7t8 4l43-2q5 0 10.5 3.5t8.5 7.5l23 34 6 6q3 0 5-7zm169.5 631q-13.5 13-33.5 13t-33.5-13-13.5-33 13.5-33.5 33.5-13.5 33.5 13.5 13.5 33.5-13.5 33zM1153 1047q13-13 33-13t33.5 13 13.5 33-13.5 33.5-33.5 13.5-33-13.5-13-33.5 13-33zm46.5-605.5Q1213 428 1233 428t33 13.5 13 33.5-13 33-33 13-33.5-13-13.5-33 13.5-33.5zm1060.5 227q13-13.5 33-13.5t33.5 13.5T2340 702t-13.5 33.5T2293 749t-33-13.5-13-33.5 13-33.5zm-651 1149q-13-13.5-13-33.5 0-18 13-32t33-14 33.5 14 13.5 32q0 20-13.5 33.5T1642 1831t-33-13.5zm-1274-258q13-13.5 33-13.5 19 0 33 13.5t14 33.5-14 33-33 13q-20 0-33-13t-13-33 13-33.5zm1541 82.5q-13 14-33 14t-33.5-14-13.5-33q0-20 13.5-33.5t33.5-13.5 33 13.5 13 33.5q0 19-13 33zm-895.5 919q-13.5 14-32.5 14-20 0-33.5-14t-13.5-33q0-20 13.5-33t33.5-13q19 0 32.5 13t13.5 33q0 19-13.5 33zM694 1622.5q13-13.5 33-13.5t33.5 13.5T774 1656q0 18-13.5 31.5T727 1701t-33-13.5-13-31.5q0-20 13-33.5zm451.5 648.5q-13.5 13-33.5 13t-33-13-13-32q0-20 13-33t33-13 33.5 13 13.5 33q0 19-13.5 32zm154.5 57q-8 8-21 8-11 0-19-8t-8-20q0-11 8-19.5t19-8.5q13 0 21 8.5t8 19.5q0 12-8 20zM237 2587q-8 8-19 8-13 0-21-8t-8-19q0-12 8-20.5t21-8.5q11 0 19 8.5t8 20.5q0 11-8 19zm0-375q-8 8-19 8-13 0-21-8t-8-19q0-13 8-21t21-8q11 0 19 8t8 21q0 11-8 19zm671-893.5q8-8.5 19-8.5 13 0 21 8.5t8 19.5q0 12-8 20t-21 8q-11 0-19-8t-8-20q0-11 8-19.5zm954 518q-8 8.5-19 8.5-12 0-20.5-8.5t-8.5-20.5q0-11 8.5-19.5t20.5-8.5q11 0 19 8.5t8 19.5q0 12-8 20.5zM796 2615q-8 9-19 9-13 0-21-9t-8-20 8-19 21-8q11 0 19 8t8 19-8 20zm1563-1317q-8 8-19 8t-20-8-9-19q0-13 9-21t20-8 19 8 8 21q0 11-8 19zm-1048-191q8-9 21-9 11 0 19 9t8 20-8 19-19 8q-13 0-21-8t-8-19 8-20zm-59-491.5q8 8.5 8 20.5 0 11-8 19.5t-19 8.5-20-8.5-9-19.5q0-12 9-20.5t20-8.5 19 8.5zm-1082 1043q-8-8.5-8-19.5t8-20 19-9q12 0 20.5 9t8.5 20-8.5 19.5-20.5 8.5q-11 0-19-8.5zm402.5-86q8.5-8.5 20.5-8.5 11 0 19 8.5t8 20.5q0 11-8 19t-19 8q-12 0-20.5-8t-8.5-19q0-12 8.5-20.5zM1588 2356q-8 8-19 8-13 0-21-8t-8-20q0-11 8-19.5t21-8.5q11 0 19 8.5t8 19.5q0 12-8 20zm732-1833.5q9-8.5 20-8.5t19 8.5 8 19.5-8 20-19 9-20-9-9-20 9-19.5zM661.5 1769q8.5-8 19.5-8 12 0 20.5 8t8.5 19q0 12-8.5 20t-20.5 8q-11 0-19.5-8t-8.5-20q0-11 8.5-19zm537.5-538q8 8 8 19t-8 20-20 9q-11 0-19-9t-8-20 8-19 19-8q12 0 20 8z"},"children":[]}]};exports.u1F30C=u1F30C;var u1F30D={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2064.5 1872.5q-118.5 204.5-323 323T1300 2314t-441.5-118.5-323-323T417 1431t118.5-442 323-323.5T1300 547q234 0 440 119.5T2064.5 990t118.5 441-118.5 441.5zm-362-887.5q12.5 28 34.5 28 13 0 20-11t7-23q0-14-9-23l-17-16q-4-4-9-18.5t-18-14.5q-9 0-15 5t-6 17q0 28 12.5 56zM1434 959q11 0 17.5-5t22.5-5q10 0 17 2l23 10q5 3 13 3 13 0 13-14 0-25-14-40.5t-25-15.5q-8 0-14.5 2t-14.5 2l-15 2q-13 2-24 19t-11 27q0 13 12 13zm-389-256q-26 8-50.5 19T945 745q9 9 14.5 17t5.5 20q0 9-3 14.5t-3 12.5q0 5 3 8.5t8 3.5 9-3 12-3q6 0 12.5 1t13.5 1q27 0 54.5-33t57.5-33q16 0 37 4.5t42 4.5q49 0 68-46t19-55l-44 1q-20 18-35.5 46t-52.5 28q-52-2-81.5-10t-36.5-21zm1026 744q-28-2-42-31t-24.5-86-34-86.5-68.5-29.5q-44 0-69.5-13t-52-34-41.5-21q-7 0-14 3t-7 11q0 13 15 32t38 25l31 9q14 5 23.5 11.5t9.5 21.5q0 33-50 74t-89 41q-37 0-69-49t-53-76-39.5-62.5-33.5-35.5q-8 0-13.5 7t-5.5 16q0 29 23.5 67.5t53.5 73.5 57 66 68 42 41 41-48 76.5-81 73-33 72.5q0 14 2 24l8 34q2 8 2 17 0 73-34.5 100t-46.5 73-52 97-109 51q-44 0-79-16t-58-52-43-76-20-78q0-20 2.5-39.5t2.5-39.5q0-38-16-67t-32-88-46.5-84.5T958 1516q-21 0-42.5 2.5T873 1521q-45 0-79.5-19t-58-60.5T712 1365q0-18 20.5-95t41.5-109 71-66.5 81.5-42T990 1033l18-6q9-2 19-2 28 0 46.5 25t68.5 46 85 21q21 0 37-3.5t31-9.5l24-8q12-4 27-4 22 0 44.5 6.5t44.5 6.5h15q8 0 17 1 22 0 35.5-6.5t13.5-23.5q0-20-15-32t-32-12q-18 0-36 4.5t-35 4.5l-9-1q-15-2-25-8t-10-17q0-5 2.5-8.5t2.5-8.5q0-13-12-21t-26-8q-13 0-26 11t-29 11q-28 0-33-17t-15-36-32-19q-19 0-19 15 0 11 10 21t10 16q0 4-16.5 23.5T1138 1014q-18 0-19-42.5t-35-42.5q-23 0-55.5 23T973 999t-65 24h-11q-6 0-10.5-1t-10.5-1l-8 1q-15 0-23-8.5t-8-26.5q0-22 10-48.5t25-26.5q3 0 7.5 3t8.5 3q7 2 16 2l16 1q32 0 32-46 0-5-2-11.5t-7-6.5q-10 0-17.5 9.5T907 876q-20 0-28.5-7t-8.5-25l1-8q0-8-2-15-5 0-12-1h-9q-8 0-10-7-148 112-229 274t-81 344q0 206 104 385t283 283 385 104q200 0 376-98.5t283.5-274T2071 1447zm-388.5 478q-20.5 35-49.5 35-17 0-22.5-14.5t-5.5-30.5q0-14 4.5-22.5t7.5-20.5l4-12q0-6 6-10l25-18q15-11 32-11 9 0 14 5.5t5 20.5q0 43-20.5 78z"},"children":[]}]};exports.u1F30D=u1F30D;var u1F30E={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M857 2195q-205-119-323.5-323.5T415 1431q0-238 117.5-442t323-324T1300 545q240 0 446.5 120t322 325 115.5 441-119 441.5-323.5 323.5-441.5 118q-238 0-443-119zm356-1533q-41 3-84 14 8 14 18 26.5t22 12.5q16 0 28-16.5t16-36.5zm857 843q-28-16-42.5-47t-14.5-64 12-65.5 33-55.5q-26-130-93.5-240T1800 840q-19 10-44 10-21 0-42-8t-34-25l-21-28q-21-26-76.5-43.5T1465 674q-19-5-39.5-8t-40.5-5q24 23 55 32l15 6q19 8 29.5 18.5T1495 739t-7.5 17.5-18.5 6.5q-9 0-19-3t-19-7l-18-8q-10-3-18-4t-13-1h-7q-16 0-25.5-19t-39.5-19h-24q-7 0-14.5 5t-7.5 12q0 5 1.5 9.5t1.5 9.5-5 13-9 8q-45 0-61 6.5t-16 32.5q0 20 16 28.5t33 8.5q9 0 18.5-1t18.5-1q29 0 45.5 21.5T1341 876q12 0 18-7.5t6-14.5q0-11-5.5-21.5T1354 811q0-13 6-28t26-15q33 0 124 62t118 71.5 27 34.5q0 20-9 33.5t-35 13.5q-17 0-20.5-16.5T1564 950l-12 1q-16 2-29.5 7.5T1509 974q0 12 18 17t18 19-12 18.5-24 4.5q-13 0-22-1t-20-1q-23 0-40.5 19t-48.5 58-33 75l1 16v18q0 23-7.5 35.5T1317 1265q-23 0-41.5-40t-70.5-40q-53 0-88 20.5t-37 59.5q0 4 2 13l3 20q2 11 3.5 22.5t1.5 21.5v6q11 2 24 7t25 5q19 0 37.5-23.5t40.5-23.5q11 0 23 6t12 12q0 4-3 8l-8 11q-4 6-7.5 13t-3.5 16q0 20 35.5 25t35.5 37q0 9-1.5 15.5t-1.5 13.5q0 20 11.5 28.5t30.5 8.5l9-1q31-2 46-19t41-17q14 0 28 4l28 8h82q68 24 105 61.5t44 63.5 37 26q44 0 78 29t34 55q0 25-27.5 73t-70.5 65.5-75.5 80.5-85.5 98.5-79 57.5l-18 15q-18 16-40 28.5t-39 12.5q-18 0-25.5-10.5t-7.5-21.5q0-17 9.5-37.5t12.5-34.5l10-50q5-24 5-49 0-80-68.5-129t-68.5-127q0-53 16-85.5t16-38.5q0-22-41.5-20t-56.5-39.5-50-41.5h-12q-7 0-14 1-16 0-22.5-5.5t-8.5-15.5l-5-16q-3-13-19.5-16t-52.5-15-52.5-20.5T985 1348q-38-19-48.5-57t-24.5-53l-10-9q-10-8-16-8-4 0-4 5 0 6 3.5 14.5t8.5 16.5l8 17q4 9 4 15t-4 9.5-8 3.5q-11 0-30-23.5t-31.5-51-61-72T723 1064q0-15 1-31t1-32q0-24-5-36t-21-23q-81 100-127 224.5T526 1431q0 205 102.5 383t282 283.5T1300 2203q297 0 519.5-203t250.5-495zm-607-175h23q18 0 33.5 5t15.5 24q0 15-18.5 25t-40.5 10q-18 0-32.5-5t-19.5-12l-7-12q-4-6-10.5-10.5t-19.5-4.5q-14 0-26 1.5t-29 1.5q-15 0-32.5-4t-17.5-23 23.5-27 48.5-8l22-1q16 0 23.5 4t12.5 10l9 12q3 4 12.5 9t29.5 5z"},"children":[]}]};exports.u1F30E=u1F30E;var u1F30F={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2061.5 1878q-122.5 206-326 321T1299 2314q-235 0-439-116.5T535.5 1875 415 1430q0-237 118-442.5T856.5 664 1299 546q235 0 440 117t325 322.5 120 444.5q0 242-122.5 448zm-57.5-751q-62-138-170-245l-7 2q-4 0-9 1-29 0-69.5-20t-74.5-20q-51 0-75 20.5t-35 53-28.5 45.5-42.5 26.5-33.5 51-56.5 69-54.5 51.5-22.5 40-16 42q0 53 39 79t39 71q0 27-19 54.5t-46.5 44.5-27.5 34q0 5 2 10.5t2 10.5q0 25-27 43t-55 18l-13-1q-15 0-26-6t-11-19q0-16-13-24.5t-33-11.5l-18-2q-27-4-55-39t-75-55-74-20q-61 0-100 60.5T760 1640v26q0 24-9.5 44t-28.5 20q-41 0-79.5-76.5t-38.5-119-11.5-88T534 1401q0 5-1 21 0 215 104.5 394t282 279.5T1299 2196t379.5-100.5T1961 1818t105-388q0-165-62-303zm-616 180l1-17q0-27 10.5-39.5t26.5-12.5q36 0 38-17t23-40.5 21-36.5q0-11-8-19t-8-17q0-16 24.5-32t33.5-16q14 0 26.5 19.5t12.5 42.5q0 22-19.5 25t-21 32.5-18.5 50-26 20.5q-1 0-1 9 0 5 2.5 9t2.5 9q0 23-34.5 28t-43 17.5-22.5 12.5q-20 0-20-28zm-4 329q-22 0-40-5t-18-15q0-15 17.5-23t37.5-8q29 0 42.5-1t24.5-1q23 0 40.5 9t17.5 26q0 14-10.5 21t-18.5 7q-10 0-16-2l-14-3q-9 0-19-2t-25-2zm210.5-68.5q15.5 7.5 15.5 24.5 0 23-32 23-23 0-40-12.5t-17-25.5q0-8 15-12.5t26-4.5q17 0 32.5 7.5zm74 374Q1640 1975 1592 1975q-59 0-107.5-26t-78.5-26q-11 0-21 1t-19 1q-44 0-70.5-17t-26.5-49q0-30 21-50.5t70.5-58.5 71.5-38q17 0 39.5 20.5t50.5 20.5q24 0 50-17.5t42-17.5q30 0 56.5 49.5t26.5 88.5q0 52-28.5 85.5zm-835-198.5q-14.5 16-30.5 16-9 0-13-7t-4-16q0-15 9-31t26-16q9 0 18 6t9 17q0 15-14.5 31z"},"children":[]}]};exports.u1F30F=u1F30F;var u1F310={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2205 1906q-136 241-378.5 384.5T1299 2434q-279 0-520-139.5t-380.5-381T259 1393t139.5-520.5 380.5-381T1299 352t523 141.5 381.5 384T2341 1393q0 272-136 513zm-452-572q-3-81-13.5-152.5T1712 1046q-77 23-164.5 37t-188.5 18v233h394zm-40 406q17-63 27.5-135t13.5-153h-395v233q101 4 189 18t165 37zm-867-288q3 81 13.5 152.5T887 1740q78-23 165.5-37t188.5-18v-233H846zm40-406q-17 63-27 135t-13 153h395v-233q-102-4-189.5-18T886 1046zm355-531q-103 73-184.5 179T923 933q69 21 148 34t170 16V515zm118 1756q108-78 187.5-183t129.5-235q-69-21-147.5-34t-169.5-16v468zm629-1491q-91-103-208.5-175T1525 498q93 88 156.5 187T1788 894q60-25 109-54t91-60zm-629 203q91-3 169-16t147-33q-49-125-128-231.5T1359 516v467zm-284-485q-137 35-254.5 107T611 780q42 31 91.5 60T812 894q42-111 106.5-210T1075 498zm-300 508q-70-29-129-62.5T538 873q-68 100-109 216.5T380 1334h347q4-93 16-174.5t32-153.5zm-395 446q8 128 49 244.5T538 1913q49-37 108-70.5t129-62.5q-20-72-32-153.5T727 1452H380zm432 440q-60 25-109.5 54t-91.5 60q92 103 209.5 175t254.5 107q-87-82-153-181t-110-215zm429-89q-91 3-169 16t-147 33q49 125 128 231.5t188 186.5v-467zm284 485q137-35 254.5-107t208.5-175q-42-31-91-60t-109-54q-54 138-124 235.5T1525 2288zm299-508q71 29 129.5 62.5T2061 1913q69-100 110-216.5t49-244.5h-348q-7 184-48 328zm396-446q-8-128-49-244.5T2061 873q-49 37-107.5 70.5T1824 1006q41 144 48 328h348z"},"children":[]}]};exports.u1F310=u1F310;var u1F311={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2149.5 1920.5q-131.5 227.5-359 359T1300 2411t-490.5-131.5-359-359T319 1430t131.5-490.5 359-359T1300 449t490.5 131.5 359 359T2281 1430t-131.5 490.5z"},"children":[]}]};exports.u1F311=u1F311;var u1F312={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2149 1920q-132 228-359 359.5T1300 2411t-490-131.5T451 1920t-132-490q0-265 133-493.5t360.5-358T1300 449t487.5 129.5 360.5 358 133 493.5q0 262-132 490zm-849 374q231 0 431.5-116.5t317-317T2165 1429t-116.5-431.5-317-317T1300 564l-20 1q230 110 371.5 345t141.5 519-141.5 519-371.5 345z"},"children":[]}]};exports.u1F312=u1F312;var u1F313={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2148 1923.5q-133 228.5-360.5 358T1300 2411t-487.5-129.5-360.5-358T319 1430q0-263 131.5-490.5t359-359T1300 449t490.5 131.5 359 359T2281 1430q0 265-133 493.5zM1300 2293q229 0 430.5-115.5t317-317T2163 1430t-115.5-430.5-317-317T1300 567v1726z"},"children":[]}]};exports.u1F313=u1F313;var u1F314={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2149 1920q-132 228-359 359.5T1300 2411t-490-131.5T451 1920t-132-490q0-265 133-493.5t360.5-358T1300 449t487.5 129.5 360.5 358 133 493.5q0 262-132 490zm-849 373q232-2 432.5-117.5t315.5-316 115-429.5-114.5-428.5-315.5-317T1296 567q-254 99-411.5 336T727 1430q0 287 156.5 522t416.5 341z"},"children":[]}]};exports.u1F314=u1F314;var u1F315={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2153 1922.5Q2021 2150 1793.5 2282T1302 2414t-491.5-132T451 1922.5 319 1431t132-491.5T810.5 580 1302 448t491.5 132T2153 939.5t132 491.5-132 491.5zm-1599.5-60q116.5 200.5 317 317T1302 2296t431.5-116.5 317-317T2167 1431t-116.5-431.5-317-317T1302 566 870.5 682.5t-317 317T437 1431t116.5 431.5z"},"children":[]}]};exports.u1F315=u1F315;var u1F316={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1790.5 580.5q228.5 131.5 360 360T2282 1431q0 263-132 491t-360 359-490 131q-263 0-490.5-131.5t-359-359T319 1431q0-261 130.5-488.5T808 582t492-133q262 0 490.5 131.5zM1305 2294q252-100 410.5-336t158.5-527q0-290-157.5-526T1305 567q-234 0-435 115T553 997.5 437 1431t115 431.5 314.5 315T1300 2294h5z"},"children":[]}]};exports.u1F316=u1F316;var u1F317={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2148 1923.5q-133 228.5-360.5 358T1300 2411t-487.5-129.5-360.5-358T319 1430q0-263 131.5-490.5t359-359T1300 449t490.5 131.5 359 359T2281 1430q0 265-133 493.5zM1300 567q-229 0-430.5 115.5t-317 317T437 1430t115.5 430.5 317 317T1300 2293V567z"},"children":[]}]};exports.u1F317=u1F317;var u1F318={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2149 1920q-132 228-359 359.5T1300 2411t-490-131.5T451 1920t-132-490q0-265 133-493.5t360.5-358T1300 449t487.5 129.5 360.5 358 133 493.5q0 262-132 490zm-846 372l20-1q-230-110-371.5-345T810 1427t141.5-519T1323 563l-20-1q-231 0-431.5 116.5t-317 317T438 1427t116.5 431.5 317 317T1303 2292z"},"children":[]}]};exports.u1F318=u1F318;var u1F319={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1925.5 2105Q1632 2392 1233 2392q-197 0-380.5-75.5t-327.5-223T381 1870q0-49 35.5-83.5T499 1752q39 0 82.5 28.5T725 1842t220 33q206 0 380.5-103.5T1598 1495t98-370q0-127-37-233t-67-147-30-85q0-49 35-83.5t82-34.5q74 0 227 143t233 327 80 381q0 425-293.5 712zM1679 660q68 106 101.5 225t33.5 241q0 230-113.5 429.5T1383 1874t-438 119q-117 0-230-30.5T499 1870q118 189 315 296.5t419 107.5q232 0 435-117.5t318-318.5 115-431q0-229-112.5-428T1679 660z"},"children":[]}]};exports.u1F319=u1F319;var u1F31A={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2150.5 1896.5q-131.5 227.5-359 359T1301 2387q-261 0-488.5-130.5T452 1898t-133-492q0-262 131-490t359.5-360T1301 424t491 132 359 360 131 490q0 263-131.5 490.5zm-954-259Q1243 1675 1301 1675q50 0 87.5-27t37.5-53q0-9-7-15t-16-6q-12 0-37 25t-65 25q-34 0-65-21.5t-31-55.5q0-37 32.5-103.5T1270 1308q0-47-19.5-95.5T1205 1164q-9 0-14 7.5t-5 18.5q0 17 5 29l11 26q7 18 11 33.5t4 36.5q0 64-33.5 126.5T1150 1548q0 52 46.5 89.5zm-225.5-406q-32-37.5-79-37.5-48 0-80 37.5t-32 85.5q0 50 33.5 86.5T892 1440t78-36.5 33-86.5q0-48-32-85.5zm558.5 518.5q-6.5-11-21.5-11-18 0-72 30.5t-122 30.5q-74 0-133-31t-72-31-20.5 10-7.5 21q0 39 71.5 81t167.5 42q89 0 152.5-46t63.5-78q0-7-6.5-18zm255.5-519.5q-32-36.5-79-36.5-48 0-80 37.5t-32 85.5q0 50 33.5 86.5t78.5 36.5 78-35.5 33-87.5q0-50-32-86.5z"},"children":[]}]};exports.u1F31A=u1F31A;var u1F31B={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2055.5 1898q-139.5 242-382 382T1152 2420q-248 0-498-125t-250-262q0-58 35-91.5t81-42.5q37-7 171.5-19.5T826 1830q13-100 91-152 5-27 15.5-44.5T958 1600q-61-49-94.5-103.5T830 1388q0-69 57-123.5t179.5-73.5 223.5-127.5T1391 804q0-81-29-147.5T1333 546q0-64 44.5-105.5T1477 399q63 0 216 89t267 229 174.5 313 60.5 351q0 275-139.5 517zm-55.5-888q-77-170-197-283t-199-155l-54-27q-17-9-40.5-18.5T1477 517q-6 0-16.5 8t-10.5 24q0 14 8 34.5t15 36.5l8 18q27 83 27 166 0 128-59.5 240T1282 1227t-188 80l-33 4q-57 7-84.5 29t-27.5 48q0 34 37.5 76.5t97 84 59.5 77.5q0 33-55 41.5t-55 35.5q0 14 12 30.5t22 28.5l12 14q5 7 12 12-15 0-32.5-9.5t-39.5-9.5q-64 0-76.5 82T841 1967t-204 35.5-115 31.5q0 18 28 50t90 68l38 23q115 67 233 96.5t242 29.5q244 0 457.5-120.5t340-336.5 126.5-465q0-199-77-369zm-254 458q11 10 13 26 0 21-14 33t-58 12q-114 0-186.5-58t-92.5-144l-6-23-1-6q0-16 11-27.5t28-11.5q16 0 26.5 9.5t13.5 23.5l3 13q13 64 66 104.5t138 40.5q8 0 15-1t18-1q15 0 26 10z"},"children":[]}]};exports.u1F31B=u1F31B;var u1F31C={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M584.5 793Q765 524 1057 412l26-9q17-5 40-5 54 0 99 42t45 104q0 50-29.5 113.5T1208 804q0 159 110 267.5t224.5 120 170 67.5 55.5 128q0 55-31.5 107t-94.5 105q11 11 23 31t17 47q52 36 72 84t19 69 61 36.5 103 15.5 105 8l22 3q60 11 95.5 45.5t35.5 94.5-48.5 116.5T1965 2278l-41 23q-115 60-235.5 88.5T1446 2418q-277 0-519-138.5t-382.5-382T404 1379q0-317 180.5-586zm62 1045.5Q771 2053 985 2176.5t462 123.5q104 0 214.5-25.5t240-95.5 152.5-100 23-47q0-16-26-22t-63-8l-80-5q-77-4-156.5-34.5t-94-112.5-73.5-82q-12 0-21.5 2.5t-17.5 5.5l-17 7q-9 3-19 4 8-5 12.5-12.5t10.5-14.5l21-26q13-16 13-32 0-27-55-36t-55-42q0-36 58.5-76.5t97-83.5 38.5-77q0-28-27-49.5t-84-28.5l-33-4q-82-10-189-80.5T1150 1041t-60-238q0-42 7-83.5t21-83.5l8-18q7-16 15-36.5t8-34.5q0-17-10.5-24t-17.5-7q-27 0-150 70T742.5 779t-163 277.5T522 1378q0 246 124.5 460.5zM907 1458q88 0 141.5-39.5T1116 1314l3-13q2-15 13.5-24.5t25.5-9.5q17 0 28 11.5t11 28.5q0 27-30.5 90t-95 101.5T916 1537l-25-1q-22 0-36-10t-14-30q0-17 11-28t28-11h15z"},"children":[]}]};exports.u1F31C=u1F31C;var u1F31D={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2151 1894.5Q2019 2122 1791.5 2254T1300 2386t-491.5-132T449 1894.5 317 1403t132-491.5T808.5 552 1300 420t491.5 132T2151 911.5t132 491.5-132 491.5zm-1599.5-60q116.5 200.5 317 317T1300 2268q230 0 429.5-115t317-316.5T2164 1403t-117.5-433.5-317-316.5T1300 538q-231 0-431.5 116.5t-317 317T435 1403t116.5 431.5zm536-88q7.5-9.5 19.5-9.5 14 0 73 31t133 31q41 0 75.5-11.5t69.5-30.5l23-12q13-7 26-7 15 0 21.5 10.5t6.5 17.5q0 32-63.5 78t-152.5 46q-97 0-168-41.5t-71-81.5q0-11 7.5-20.5zm-276-345.5q-32.5-37-32.5-86 0-48 32-85.5t80-37.5q47 0 79 37.5t32 85.5q0 49-32.5 86t-78.5 37q-47 0-79.5-37zm972.5-171.5q32 37.5 32 85.5 0 49-32.5 86t-78.5 37-78.5-37-32.5-86q0-48 32-85.5t79-37.5 79 37.5zM1388.5 1646q-36.5 27-88.5 27-57 0-104-36.5t-47-89.5q0-40 33.5-104t33.5-129q0-21-4.5-37.5T1201 1243l-11-26q-5-13-5-30 0-10 5-17.5t14-7.5q19 0 42 44t23 100q0 29-7.5 64t-20.5 65l-17 38q-8 19-14 36.5t-6 34.5q0 32 29.5 55t66.5 23q40 0 65-25t37-25q8 0 15.5 5.5t7.5 16.5q0 25-36.5 52z"},"children":[]}]};exports.u1F31D=u1F31D;var u1F31E={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1265 2612l-136-280-229 212q-13 11-27 11-16 0-26.5-10.5T834 2519l-26-311-290 115q-8 3-15 3-15 0-27-11.5t-12-28.5q0-3 2-11l88-299-312 3q-14-2-26.5-11t-12.5-28q0-13 8-24l190-247-292-111q-25-9-25-37 0-22 19-33l266-162-232-208q-13-12-13-30 0-14 9-24.5t23-12.5l307-55-141-278q-5-10-5-19 0-17 12.5-28t28.5-11l312 61-31-310v-5q0-15 11-26.5t28-11.5q10 0 21 6l264 167 82-301q3-12 14-20.5t25-8.5q18 0 31 16l185 250 186-250q11-16 31-16 14 0 24 8.5t15 20.5l82 301 264-167q9-6 20-6 20 0 30 14t10 29l-32 310 306-60h6q17 0 29 11t12 28q0 10-4 18l-142 278 307 55q14 2 23.5 13.5t9.5 25.5q0 17-13 28l-233 208 267 162q19 12 19 36 0 11-8 20.5t-17 13.5l-292 111 190 247q8 11 8 24 0 17-12.5 28t-26.5 11l-313-3 86 292q5 10 5 18 0 21-14.5 30t-32.5 9q-4 0-8-2l-290-115-25 311q-2 15-12.5 25.5T1728 2555t-27-11l-229-212-136 280q-11 22-36 22-24 0-35-22zm-89-362l124 255 124-255q5-11 15-16.5t21-5.5q17 0 27 10l208 194 24-284q2-14 13-25t25-11q7 0 15 3l264 105-80-272q0-3-1-11 0-17 12-28.5t27-11.5l284 3-173-226q-5-5-6.5-11t-1.5-12q0-13 7-23t18-14l266-101-243-147q-19-10-19-33 0-17 13-30l212-189-280-50q-14-2-23-13t-9-26q0-10 4-17l129-254-279 55q-3 0-7 1-16 0-28-11t-12-27l1-2v-3l28-283-240 151q-9 6-21 6-14 0-24.5-8t-13.5-20l-75-274-169 228q-12 15-32 15-9 0-17.5-3.5T1269 567l-169-228-76 274q-4 13-14 20.5t-23 7.5q-12 0-22-6L725 484l29 283v4q0 15-10.5 27T717 810q-7 0-10-1l-279-55 130 254q4 10 4 17 0 16-9.5 26.5T529 1064l-279 50 211 189q13 13 13 30 0 11-5.5 19.5T455 1366l-243 147 266 101q11 5 18.5 15t7.5 22q0 13-8 23l-174 226 285-3q17 2 28 12.5t11 27.5q0 8-1 11l-81 272 264-105q7-3 15-3 15 0 26 10.5t13 25.5l24 283 208-193q11-11 27-11 11 0 20.5 6.5t14.5 16.5zM655 1057.5Q751 887 924 784t376-103q199 0 371 99.5t271.5 271.5 99.5 371-99.5 371-271.5 271.5-371 99.5q-203 0-376-103t-269-273.5-96-365.5 96-365.5zm71 695Q815 1908 970.5 1997t329.5 89 328-87.5 244.5-242T1963 1423q0-180-90.5-334.5t-244.5-242-328-87.5q-175 0-330.5 89t-244 244.5T637 1423q0 174 89 329.5zm404.5-35q5.5-8.5 16.5-8.5 8 0 17 4l15 9q32 17 65.5 27.5t69.5 10.5q32 0 59.5-10.5t56.5-24.5l19-10q10-5 20-5 13 0 18 8.5t5 14.5q0 9-6.5 20t-19.5 23l-11 10q-29 24-64 35.5t-73 11.5q-80 0-136.5-33.5T1125 1734q0-8 5.5-16.5zM1403 1594q0 21-30 42.5t-71 21.5q-43 0-72-21.5t-29-42.5q0-8 5.5-13t13.5-5 15 6l14 14q8 8 21 14.5t32 6.5q32 0 52-20.5t30-20.5q8 0 13.5 5t5.5 13zm-503.5-99.5Q871 1463 871 1419q0-45 28.5-75.5T967 1313t68 30.5 29 75.5q0 44-28.5 75.5T967 1526q-39 0-67.5-31.5zM1633 1526q-39 0-68-31t-29-76q0-46 29.5-76t67.5-30 67.5 30 29.5 76q0 45-29 76t-68 31z"},"children":[]}]};exports.u1F31E=u1F31E;var u1F31F={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M304 767q-20-11-30-21.5T264 720q2-29 35.5-79.5t65-79.5 54.5-50.5 48-21.5q31 0 62 32.5T624 665l79 138 57 109q6 11 6 23 0 17-14.5 34.5T718 987q-33 0-212.5-103.5T323 778zm331.5 1122q15.5 15 15.5 33 0 16-40 64.5t-147 155T343 2262t-32 14q-43 0-107-95.5T140 2052q0-34 44.5-59.5t121.5-46 179.5-46.5 117.5-26q17 0 32.5 15zM1888 987h-7q-19 0-33.5-17.5T1833 935q0-12 6-23l57-109q25-48 53.5-94.5T2003 616t59.5-86.5T2128 489q43 0 124 93t81 138q0 15-9.5 26t-28.5 21l-19 11-142 83q-64 38-149.5 82t-96.5 44zm318 937l74 19q66 16 122.5 44t56.5 63q0 33-62.5 129.5T2288 2276q-21 0-34-14t-110-111-146.5-154-49.5-75 15.5-33 32.5-15q15 0 67 12t91 23zm-287 385q2 3 2 6v7q0 20-15.5 35t-35.5 15q-15 0-26-8l-544-345-545 345q-6 5-13 6.5t-13 1.5q-21 0-36-15t-15-35v-7q0-3 2-6l154-628-491-409q-18-13-18-38 0-20 13-33.5t32-15.5l641-52 243-590q13-31 46-31 14 0 26.5 8.5T1345 543l243 590 641 52q19 2 32 15.5t13 33.5q0 25-18 38l-490 409zm-619-498l376 238-107-433 338-281-441-35-166-407-167 407-441 35 338 281-105 433z"},"children":[]}]};exports.u1F31F=u1F31F;var u1F320={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2309.5 537q5.5 2 5.5 6 0 6-12.5 14.5T2276 571l-10 4q-188 93-372.5 198.5T1540 1009q0-34-18-58t-36-34q270-184 513-283t300-99q5 0 10.5 2zM1636 1873q5 7 8.5 15t3.5 16q0 17-13 27t-27 10l-505-5-219 455q-5 10-15 16t-21 6q-14 0-23.5-7.5T811 2386l-158-482-494-69q-16-2-25-13t-9-27q0-18 15-30l406-298-84-499q0-16 11-28t28-12q12 0 24 7l404 293 448-230q7-4 18-4 17 0 27.5 12t10.5 26v6q0 4-1 7l-159 474zm-270-72l-251-244 110-327-309 158-278-201 58 340-280 205 341 47 109 333 152-314zm-507-791q-12-12-12-20 0-7 9.5-16.5T882 951l15-11q233-186 436.5-301T1718 457t219-67q3 0 9 2t6 7q0 16-63.5 40.5t-266.5 135-370.5 231-240 189.5-88.5 69q-10 0-22-10.5t-23-21.5zm1562.5-159q-53.5 28-271 158.5t-382 266-217 194-70.5 58.5q-19 0-49.5-30t-30.5-42q0-5 5-11.5t13-13.5l29-25q324-286 634.5-443T2462 806q7 0 10 1.5t3 5.5q0 10-53.5 38z"},"children":[]}]};exports.u1F320=u1F320;var u1F330={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2164.5 2055Q2047 2235 1819 2332t-519 97q-288 0-517-97t-347.5-276T317 1669q0-140 60.5-259T527 1199.5 749 998t217-187 165-218 166-156h6q79 14 155 140t128 185 200 183l117 97h-1q196 162 288 308t92 319q0 206-117.5 386zM1992 1864.5q-52-36.5-258.5-89T1300 1723q-241 0-444.5 54.5t-252.5 90-49 81.5q0 69 94.5 162.5t238.5 139 413 45.5q273 0 415-46t235.5-138 93.5-163q0-48-52-84.5z"},"children":[]}]};exports.u1F330=u1F330;var u1F331={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2342 1159.5q-53 54.5-153 54.5-59 0-239.5-32t-271.5-32q-95 0-185 49t-90 148q0 26 28.5 157t28.5 295q0 137-25.5 247.5t-60 177T1217 2290q-48 0-87-19t-39-53q0-21 15-49l34-63q59-115 87.5-235.5T1256 1629q0-71-9.5-138t-16-103-38.5-67.5-81.5-47.5-113.5-16q-156 0-299.5 95T436 1447q-108 0-170-70t-62-187q0-128 63.5-240.5t189-183T741 696q156 0 289 77.5t239 247.5q43-243 202-386t369-143q233 0 394 154t161 356q0 103-53 157.5z"},"children":[]}]};exports.u1F331=u1F331;var u1F332={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2224 1873l-1 9-2 10q-10 46-72.5 83.5T1967 2013q-37 0-76-3-42 0-45 35t-36.5 71-92.5 36q-48 0-95-19.5t-73-36.5-49-17q-22 4-37.5 17t-41.5 23q3 25 8 57t13 53l13 34q6 18 11 35.5t5 32.5q0 46-56 57.5t-115 11.5q-61 0-116-12t-55-57q0-15 5-32.5t12-35.5l13-34q9-25 15-68t8-76l-6-6q-13-8-33-8-31 0-54 17t-74.5 39.5T912 2150q-65 0-95.5-39t-35.5-71-41-32q-28 0-54.5 2.5T633 2013q-106 0-163.5-27.5t-75-57T377 1883l-1-10q0-103 122-134t250-106l6-4q3-2 3-6 0-5-14-9t-32-7l-36-6q-65-9-108.5-40t-52.5-83l-1-9q0-99 105.5-128.5t182-66T877 1230q0-5-10.5-8t-31.5-5l-17-2q-55-10-86-36t-35-59l-1-4q0-3-1-12 0-71 84.5-106T947 916.5t83-57.5q0-5-4-6l-8-2-17 2q-3 0-7 1l-17 1q-49 0-83.5-27.5T859 749q0-62 72.5-99t130.5-92 109-126 77.5-123 47.5-52l3 1h2l3-1q24 0 63 77t121 171.5T1655.5 642t85.5 107q0 52-34 79t-84 27q-13 0-17-1-4 0-6-1l-18-2-7 2q-5 0-5 6 0 3 2 5l4 5q130 85 229.5 122t99.5 112v7l-1 5q0 3-1 5-5 37-42 64t-94 33l-20 2q-10 2-17.5 4.5t-7.5 6.5q0 6 73.5 42.5t182 67T2086 1462v7l-1 9q-4 45-46.5 80t-130.5 47l-53 8q-5 0-8.5 2.5t-3.5 7.5q0 4 3 6l6 4q130 74 251 106.5t121 127.5v6z"},"children":[]}]};exports.u1F332=u1F332;var u1F333={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2068 1642q17 28 26 59.5t9 66.5q0 104-74 176.5t-175 72.5q-37 0-71-10t-63-29q-22 81-88.5 132t-151.5 51q-28 0-55-6l7 41q3 15 9 31l13 34q6 18 11 35.5t5 32.5q0 46-57 57.5t-114 11.5q-61 0-116-12t-55-57q0-26 17-68t22-65l8-50q-33 9-69 9-75 0-138-42.5T876 2000q-29 17-62 27t-68 10q-103 0-176-73t-73-176q0-58 25-110-68-25-110-85.5T370 1460q0-63 30.5-115.5T482 1262q-29-30-46.5-70.5T418 1106q0-75 47-136t123-80q-19-41-19-85 0-83 60-143t143-60h12l11 2q-3-12-5-23.5t-2-24.5q0-79 57.5-136.5T982 362q25 0 48.5 7t43.5 18q26-41 69-65.5t94-24.5 94 24 69 64q24-20 54-31t65-11q77 0 134 55t59 134q14-4 28-6.5t28-2.5q83 0 143 60t60 143q0 26-5.5 48.5T1949 818q91 2 155 67t64 156q0 51-21 94t-56 74q61 26 99.5 83.5T2229 1421q0 76-45.5 137.5T2068 1642z"},"children":[]}]};exports.u1F333=u1F333;var u1F334={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2338 1414l4 29q0 15 1 29 0 26-6 56.5t-10 53.5q-12-6-31-14l-39-16-56-20q-14-4-26.5-12.5T2148 1509l-2-17q0-8-1-16 0-11 1-22.5t1-22.5q0-57-20-122l-12-26q-12 25-22.5 67t-27 75-24.5 33-50-13.5-44-13.5q0-24 3-49t3-53q0-35-7-68t-14-33q-16 0-26 50.5t-22.5 84.5-25.5 34q-9 0-17-5.5t-40.5-11-79.5-26-128-40.5l-81-19q8 11 15 22l14 26q32 54 52 107t35 115l17 77q28 127 43.5 252t15.5 255v63q0 79-6 121t-11 107-64 86-119 21q-79 0-157.5-38t-78.5-100q0-12 6-21l14-20q12-20 12-29.5t35.5-165T1371 1850q0-107-5-216t-33-217q-13 22-25 48l-23 52q-3 5-6 14l-6 18q-4 9-9.5 15.5t-12.5 6.5q-6 0-15.5-6.5T1216 1546l-8-8q-6-5-14.5-11t-12.5-13q3 20 6.5 33t15.5 32l10 18q5 9 8.5 17.5t3.5 14.5q0 13-6 24l-11 20q-4 7-28 62.5t-31 55.5q-9 0-26-20t-23-31l-19-34q-10-17-19-30.5t-17-15.5q0 5-1 15 0 32 15 63.5t37.5 66 22.5 42.5q0 15-12 38.5t-19 45.5l-11 35-7 18q-9 23-21 42.5t-22 19.5q-13 0-56.5-35t-77-110.5T860 1739q0-76 20-141t58-125q-12 12-25 22l-28 22q-14 11-26.5 22.5T836 1565l-9 12q-9 13-18.5 22t-19.5 9q-14 0-21.5-20.5T756 1542l-8-46q-4-20-8-20-3 0-6 12t-4 45l-1 24q0 23 5.5 41.5t5.5 39.5q0 15-27.5 50t-60.5 61q-10-8-24-43t-18-60l-2-45q0-8-2-24t-3-16q-16 0-23 25.5t-7 66.5q0 23 2.5 45.5t6.5 41.5l6 32q2 13 2 16 0 8-14 29t-32 44l-36 45q-30 37-37 53.5t-18 16.5q-24 0-51-79.5T375 1710q0-142 71-275.5T694 1220t310-81q-25-4-50-6l-52-4q-26-2-51.5-5t-49.5-10q0-2-1-5v-4q0-11 7-47t7-85q0-4-4-4-18 0-41 28.5t-32 51.5l-15 41-4 13q-5 2-10 2h-9q-11 0-21-1t-21-1-23.5 1-25.5 1h-11q-7 0-12-2 0-25 7.5-47.5T609 1014l17-35q7-15 7-26 0-2-4.5-3t-8.5-1q-54 0-100.5 70t-46.5 87q-2 5-12.5 6.5T430 1114q-21 0-49-2l-53-4q-27-2-46-4.5t-25-2.5q8-65 62-147.5t176.5-152T760 732q89 0 165 31.5t150 79.5q-26-45-43-94.5T1015 647q0-102 61-188.5T1255.5 307t181.5-65q5 0 6 2t1 9q0 18-7.5 58.5T1418 401l-7 27q-5 18-5 27t-27 15.5-73 19.5-54 21-8 11q0 6 17 9t46 5l46 3q23 2 28 5t5 24q0 15-2 34t-2 53l-1 128q0 13 1 26 60-144 189-238.5t278-94.5h39q66 2 101.5 16t55.5 19 87 53 67 72q0 10-43.5 31t-63 34.5T2060 717q-12 0-22.5-14t-52-40.5T1933 636q-3 0-4.5 4.5t-1.5 8.5q0 17 6.5 34.5T1948 717l14 31q7 15 9 27-18 6-33 17t-28 11q-5 0-39.5-21t-87.5-45.5-60-24.5q-5 0-5 8 0 28 36.5 71.5T1799 868q0 14-20.5 22.5t-88 51T1544 1054q76-29 157-46.5t162-17.5q209 0 335.5 111.5T2338 1414z"},"children":[]}]};exports.u1F334=u1F334;var u1F335={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2471.5 1027q-24.5 212-69.5 307t-107.5 161-253.5 156.5-349 156.5q-5 84-11 163l-11 143-9 92q-11 111-30.5 207.5t-104 163T1313 2643q-100 0-192-49.5T997.5 2493 947 2297t-33-222q-58 8-120 14t-125 6q-192 0-300.5-66t-187-233-78.5-329q0-132 70.5-228.5T354 1142q59 0 99.5 18.5T531 1227t67 167.5 39 157.5 49 63 89 25q12 0 29-1l33-2-41-252q-25-151-38.5-279T744 879q0-314 125.5-466T1240 261q162 0 268.5 72.5t160 228T1722 1004q0 57-1 113l-4 114q143-92 181-155t38-161q0-59-5-136t-5-167q0-141 37-204.5T2067.5 306t143.5-38q87 0 150.5 42.5t99 117T2496 652q0 163-24.5 375zM1326 2524q2 0 4 1 11 0 17-14.5t7-38.5v-27q0-184-21.5-444t-31-483-13-692-70.5-469q-22 0-27.5 12t-11 58.5T1174 551v47l14 366q14 358 54.5 859t60.5 658l3 24q0 12 15 17zm-153-7.5q3-10.5 3-24.5v-14q0 3-11.5-82.5T1153 2308l-22-155q-12-88-24-185l-25-198q-47-370-64.5-603T1000 840q0-166 29.5-286t42-144 12.5-39q0-8-3.5-15.5T1066 348q-42 0-98.5 135T911 827q0 156 49 569t89 677l11 71q6 42 15 89l16 93q30 172 44 186.5t24 14.5q11 0 14-10.5zM1578 1474l2-122q0-60 1-123 0-282-19.5-411t-61-236.5T1392 390l-10-13q-11-11-24-21t-25-10q-9 0-14 5.5t-5 12.5q0 18 15.5 38t79 184.5T1488 1000t16 441q0 309-26 984l1 24q0 13 5.5 24t14.5 11q25 0 33.5-56t18-147.5T1562 2081l8-344zm773-803.5q-1-29.5-4-59.5l-6-53q-10-69-30-111.5t-52-42.5q-12 0-16 11.5t-4 22.5q0 16 5 31l10 31q17 66 22.5 137.5T2282 781q0 231-28.5 341.5t-101 196-248 167.5-202 95.5-26.5 36.5q0 17 7.5 23.5t18.5 6.5q12 0 31.5-6.5t36.5-14.5l108-48q220-98 328-206t127-294.5 19-348.5q0-30-1-59.5zM895 1971l18-3q9 0 9-9 0-14-2-21l-5-13h-70l-52 1-90 1q-165 0-248.5-57.5t-130-171T278 1445q0-30 2.5-59.5t7.5-58.5q0-3 3-11l5-19q3-10 5-21.5t2-20.5q0-21-13-21-37 0-57.5 64T212 1459q0 127 37.5 238.5t94 172.5 136 88 237.5 27q44 0 89.5-3t88.5-11zm786-602q-11 7-11 24 0 11 5 18t16 7q7 0 41.5-12t125-59.5 139.5-79 76-72 43.5-98.5 16.5-130v-58l-1-101q0-45-1.5-89t-1.5-89q0-106 5-129t5-38q0-13-5.5-25.5T2117 425q-15 0-27.5 37t-18.5 83l-4 30q-5 45-6.5 88t-1.5 88v128q0 24 1 49t1 51q0 94-27.5 148t-89 99.5T1812 1304l-109 51zM426 1657q38 90 110.5 127t214.5 37q95 0 129.5-10.5T915 1785q0-16-7-32-34 0-99.5 5.5T719 1764q-95 0-156-41t-83.5-131.5-27.5-206-38-115.5q-13 0-19.5 21.5T388 1355q0 212 38 302z"},"children":[]}]};exports.u1F335=u1F335;var u1F337={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2112 1748q-91 56-203.5 266T1663 2358t-326 185l-41 12q-51 15-102.5 25.5T1104 2591q-37 0-58-12t-21-44q0-39 36-138t116-170l22-19q17-89 27-178.5t10-180.5q0-44-1-87l-4-86q-32 13-66 19t-69 6q-220 0-360-159t-140-374q0-54 3.5-109.5T603 947q0-110-27-196.5T473 612t-76-91q0-37 36-56t107-19q119 0 211 41.5T868 607q-38 82-60.5 173.5T785 977q0 71 12 140t39 133q-13-59-13-132 0-134 44-339t122.5-352.5T1144 279q73 0 164.5 105.5T1487 648l29 54q56 94 103 207t59 204l1-19v-21q0-124-38.5-237T1561 660t-77-126q0-125 89.5-201t200.5-76q56 0 94 14.5t38 41.5q0 30-76.5 92.5T1753 601q0 100 49 267t49 283q0 217-120 368.5T1392 1671q-18 0-26-2v36q0 104-1.5 206.5T1355 2117q47-19 92-88.5t97-122 130-77.5 114-59l55-53q60-58 144.5-85t137.5-27q29 0 53.5 13t24.5 36q0 38-91 94z"},"children":[]}]};exports.u1F337=u1F337;var u1F338={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2446 1283q14 7 14 18l-1 5q0 25-35.5 98t-97 134.5T2165 1641t-238 41q-71 0-146-12 117 87 194 217t77 267q0 60-13.5 113t-37.5 107.5-44 54.5q-3 0-9-2l-92-55 4 109q0 8-4.5 13t-10.5 7q-2 0-19 3t-47 3q-108 0-212.5-52t-182-147-118.5-190.5-41-238.5q-71 212-229.5 340T656 2347q-63 0-146-21t-83-44q0-2 2-8l41-101-110 19q-16 0-21.5-11t-15.5-50-10-90q0-118 64.5-229.5t178.5-200T870 1490q-312 0-491.5-124T199 1043q0-33 5-67.5t24-34.5h121l-66-88q-4-5-4-12 0-20 84.5-56.5T551 748q133 0 274.5 69.5T1076 1056q-23-72-34-139t-11-132q0-162 56-274t140.5-167 148.5-66l29-5q17 0 21 13l32 104 72-84q4-7 15-7 19 0 81.5 54T1728 497.5t39 198.5q0 97-30.5 205t-85.5 190q94-53 195-78t189-25q164 0 280.5 74t116.5 104q0 8-7 15l-84 69zm-1395.5 137.5q18.5 20.5 49.5 20.5 30 0 54-19t24-51q0-26-18.5-48t-46.5-22q-33 0-57 21t-24 52q0 26 18.5 46.5zM1233 1584l2-9v-8q0-28-19-49t-48-21q-31 0-55.5 22t-24.5 51q0 26 19 46.5t50 20.5q25 0 47-14.5t29-38.5zm110-306q24-21 24-49t-19.5-49-48.5-21q-33 0-56 22t-23 51q0 28 19 47.5t48 19.5q32 0 56-21zm114.5 258.5Q1439 1515 1409 1515q-31 0-55.5 22t-24.5 51q0 26 19.5 46.5t49.5 20.5 54-20.5 24-49.5q0-27-18.5-48.5zM1548 1369v-8q0-27-19.5-48t-49.5-21q-29 0-53 21t-24 51q0 26 18.5 46.5t49.5 20.5q25 0 47-14.5t29-38.5z"},"children":[]}]};exports.u1F338=u1F338;var u1F339={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2309 1399q-57 129-89.5 269.5t-131 292.5-239 244-214.5 92q-58 0-93.5-2.5t-59.5-2.5q-46 0-75.5 18t-101 44.5T1165 2381q-84 0-183.5-40.5t-169.5-105-93.5-119-66-69.5-140-73.5-170-143T270 1658q0-94 24-170t24-105q0-27-23-88.5T272 1139q0-104 22-194t49.5-121.5 103-99.5T593 617.5 740.5 553 895 527h31l25 1q12 0 20.5-1t14.5-6l33-26q97-75 145.5-98.5t133-42.5 179.5-19q130 0 231.5 32T1903 511t101 248l4 68 37 22 109 71 58 40q87 60 120.5 113.5T2366 1186q0 84-57 213zM1187 660q41 6 62 9l25 6q38 10 74 33t56.5 50.5 53.5 34 84 6.5q76 0 149 46.5t83 46.5q8 0 14.5-5t6.5-16q0-32-73-117t-186-131.5-263-46.5q-39 0-83 15.5t-44 38.5q0 24 41 30zm403 388q13 26 23.5 57.5t10.5 75.5q0 79-35 149.5t-35 77.5q0 8 5.5 10t9.5 2q35 0 99.5-83.5T1733 1156q0-58-31.5-105t-79.5-76-59-29q-9 0-11.5 6t-2.5 11q2 6 6 15.5t13 25.5zm-530 152l1-9q0-11-12-11-14 0-53 19.5t-39 49.5q0 41 40 62.5t95 21.5h19q22 0 69.5-23.5t47.5-61.5q0-4-3-7t-14-3q-8 0-23 3.5t-32 3.5q-38 0-67-11.5t-29-33.5zm-4-82q2 0 10-2l19-6q23-7 52-12.5t54-5.5q62 0 107 47t45 79q0 23 16 23 23 0 38-49.5t15-91.5q0-59-31-100t-88-41q-77 0-162.5 57t-85.5 92q0 10 11 10zm-19 308l-13-7q-9-5-15-5-5 0-5 5 0 46 99 105.5t171 62.5l24 1q60 0 91.5-54.5T1432 1357q0-32-16-32-13 0-21 19t-39 55.5-58.5 53.5-72.5 17q-34 0-78.5-9.5T1037 1426zm-168.5-328q2.5 6 8.5 6 22 0 48.5-54t87-110.5 114.5-81 54-36.5q0-10-12.5-15.5T1132 800h-25q-83 0-128 26.5T900 954t-34 130q0 8 2.5 14zm-284 152.5Q673 1332 711 1332q5 0 7-3t2-12q0-17-6-38l-15-48q-9-25-15.5-57.5T677 1101q0-76 33.5-156.5T788 808l29-36q4-6 19.5-26.5T852 719q0-10-12-10-18 0-120 55.5t-163 119-61 171.5q0 114 88.5 195.5zm403 537q41.5-25.5 41.5-43.5 0-8-6-10.5t-10-2.5q-63 0-152-32.5T697 1602t-110-116l-14-19q-4-5-12.5-14t-19.5-9q-18 0-18 25 0 91 57.5 184.5T723 1780t158 33q65 0 106.5-25.5zM1882 1660h-3l-41 51q-40 51-139.5 115.5t-219 98T1148 1958q-61 0-84.5-1.5t-25.5-1.5q-11 0-18 3t-7 10q0 21 116 50.5t239 29.5q124 0 254-57t198-147 68-168q0-16-6-16zm8.5-433.5Q1874 1187 1862 1187q-19 0-35 80.5t-60.5 145.5-107.5 116.5-147.5 95.5-84.5 59q0 7 9.5 8.5t15.5 1.5q59 0 211.5-63.5t198-143T1907 1327q0-61-16.5-100.5zM2094 1136q-44-93-81-93-6 0-7.5 9.5t-1.5 19.5q9 38 20 115t11 138q0 65-15 152.5t-31 148.5l-14 52q-3 9-3 14 0 8 4 10.5t8 2.5h5q6 0 48-53t71.5-131.5T2138 1337q0-108-44-201zM790 2304q-12 12-23 12-10 0-20.5-3t-26.5-3q-53 0-90 34t-59 34q-26 0-51.5-5t-52.5-5q-32 0-65.5 5.5T340 2387l-24 6q-13 3-26 3-21 0-26.5-10.5T258 2358q0-36 15-87t15-87q0-40-16-60.5t-16-34.5q0-6 5-17t12-21l23-31q11-15 19.5-32.5t8.5-37.5q0-14-10-23.5t-12-18.5q0-4 4-9.5t7-5.5q66 73 163.5 135t142 79 72 76.5T790 2304zm1671-82l1 8q0 10-8 13t-23 3q-17 0-39.5-2t-37.5-2q-54 0-92.5 13.5T2207 2285t-30 16q-8 0-15-3l-16-6-61-21q-32-11-64-11-42 0-67.5 21t-45.5 21q-17 0-29-12t-26-17q95-41 183-149t166-267l38-78q3 2 5 2t2 6v7q0 4-1 9 0 42 61.5 98t61.5 72q0 11-3.5 22t-3.5 22q0 49 46.5 109.5t52.5 95.5z"},"children":[]}]};exports.u1F339=u1F339;var u1F33A={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2328 1520l1 24q0 95-42 162t-117 92.5-86 38.5l-13 15q-28 42-82 75.5t-91 33.5q-24 0-55.5-6.5T1788 1935l-22-15q-12-7-27-9 0 20 13.5 44t13.5 59q0 62-36 114.5t-73.5 68.5-51 62.5-76.5 82-143 35.5q-88 0-131.5-40.5T1206 2292q-16 0-28 2t-24 2q-70 0-134.5-65T955 1991q0-19-8-19-10 0-19.5 12t-16.5 30l-8 18q-20 40-74 66.5T714 2125q-67 0-129-34.5t-94-92.5q-12 0-26-4l-47-10q-64-14-106-63.5T270 1777q0-29 6-57.5t19-54.5l5-10q8-19 8-24 0-9-6-27.5t-6-48.5q0-85 53.5-154.5T457 1321l18-3q9-2 15.5-5.5t6.5-8.5q0-12-39-32.5t-53-54.5-14-59q0-55 31.5-96.5T454 1004q0-10-6-25l-13-33q-8-18-14-39.5t-6-45.5q0-60 50-116.5T580 676q13-51 47.5-82.5T718 562q17 0 32 3.5t31 8.5q6 0 12-1h14q50 0 90.5 27t58.5 70q33 6 55.5 30t36.5 47q0-5 1-9v-8q27-100 95.5-168.5T1299 493q28 0 54.5 8.5t54.5 8.5q18 0 34-6l33-13q16-6 33.5-12t38.5-6q66 0 114 33t70 80 86.5 72.5 97.5 69 33 94.5q0 65-44.5 122.5t-64.5 70-20 31.5q0 4 25 4 11 0 27-6.5t36-6.5q29 0 123.5 19t160 91 65.5 141q0 14-3 26t-3 27q0 29 13 35.5t36 46.5 29 97zM663 733q8 12 23 23-7 13-11 21.5t-4 22.5q0 41 19.5 64t80.5 27q7 36 30.5 53.5T855 962q14 0 25-4t17-4l10 1q8 5 13 11l10 12q56 65 85.5 109.5t62 129 44 133 64.5 48.5q49 0 68.5-22t19.5-51q0-55-45.5-141T1112 1019t-101-105.5-30-39.5l4-11q5-8 6-15t1-15q0-34-24-63.5T912 740h-7q-4 0-12 1 0-39-25-64.5T807 651q-9 0-18.5 3.5T773 658l-8-3q-8-6-22-10t-25-4q-30 0-46.5 17T655 706q0 15 8 27zm983 710l35 8q18 5 36 8.5t37 3.5q17 0 27-5t10-19q0-18-31.5-45t-59.5-40l-34-16q-36-15-66.5-20t-30.5-16q0-13 43-27t43-32q0-24-32.5-38t-70.5-14q-9 0-26.5 3.5t-34.5 3.5q-11 0-19.5-3t-8.5-12q0-20 25-45.5t46-37.5l20-12q21-12 31.5-25.5t10.5-27.5q0-15-21.5-26t-41.5-11q-28 0-51.5 9.5t-44.5 9.5q-11 0-17-6t-6-22q0-14 4-31t4-33-7-26-24-10q-46 0-76 29t-37 51.5-22 22.5q-23 0-23-46t-38-46q-14 0-30.5 10t-16.5 30q101 108 152.5 206t51.5 180q0 71-47 110.5t-119 39.5q-63 0-96-31t-50-93q0-9-4-23.5t-10-31.5l-27-67q-14-41-37-79.5t-66-91.5q-12 3-20.5 10.5T867 1092q0 16 17.5 38t17.5 37q0 23-8 29t-35 6q-15 0-32 11.5t-17 25.5q0 17 52 36.5t52 38.5q0 9-7 12.5t-15 3.5q-5 0-8-1h-7q-71 0-121 15.5t-50 44.5q0 15 15.5 18t32.5 3q16 0 32 3t16 19q0 11-10 19l-22 19q-13 10-23 23.5t-10 34.5q0 14 12.5 19t31.5 5q13 0 24.5-3.5t21.5-8.5l19-8q9-4 19-4 14 0 19 6t5 14q0 14-8 31.5t-8 27.5q0 18 13 33t33 15q27 0 60-38.5t55-38.5q15 0 15 10 0 11-19 50.5t-19 74.5q0 22 13.5 42.5t30.5 20.5q29 0 46-41t42-41q22 0 55.5 65t77.5 65q17 0 26-17t9-37-6-41-6-41q0-11 3.5-18t14.5-7q16 0 41.5 20.5t45.5 20.5q14 0 20-12t6-29q0-29-11-60.5t-25-42-14-23.5q0-10 12.5-14.5t32.5-4.5q72 0 140.5 35t93.5 35q11 0 17-4.5t6-17.5q0-34-46.5-63t-46.5-53q0-8 6.5-9.5t14.5-1.5q18 0 36 4z"},"children":[]}]};exports.u1F33A=u1F33A;var u1F33B={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1962 1378h48q24 0 48-1h44q64 0 111.5 45t47.5 105-48 96.5-126 36.5q-60 0-117.5-9.5T1851 1641q-15 0-15 4 0 5 26 14.5t76 22.5l92 26q41 12 86 58.5t45 110.5q0 50-37 79.5t-99 29.5q-29 0-75-11.5t-78-34.5l-71-51q-29-20-56.5-38t-34.5-18q4 6 24 31l90 116q38 52 47 90t9 55q0 74-32 106t-97 32q-74 0-136-52t-103-152-53-100q-3 0-3 4 0 14 18.5 85.5t21.5 78.5l12 59q5 27 5 54 0 57-33.5 98.5T1397 2380q-82 0-122-44t-60-85-24-143-17-102q-2 0-9.5 18.5T1149 2068l-15 45-28 81q-17 46-57 87.5T949 2323q-53 0-82.5-45.5T837 2162q0-16 2-31t5-32l5-17 30-88q8-24 23-66.5t19-57.5q-7 0-23.5 22.5T862 1944l-35 54q-20 33-40.5 48t-76.5 40-99 25q-66 0-85.5-16.5T506 2022q0-96 61-177.5t130-120 69-51.5q0-4-10-4-29 0-126 42t-167 42q-67 0-96-47.5T338 1599q0-46 23.5-75.5t52-43T482 1449t111-27l82-11q17-2 17-4 0-5-17-8t-38-5l-42-2q-81-4-160-59t-79-129q0-69 38.5-112.5T493 1048q50 0 172 52l75 29q19 8 44 17.5t33 9.5h1q0-6-66.5-50t-87.5-62-57-78-36-114q0-55 38.5-92t98.5-37q31 0 72.5 19t93.5 83l73 91q14 18 28.5 34t20.5 18q0-14-47-109t-47-147q0-79 34-127t94-48q66 0 117 55.5t62.5 173.5 24.5 118q3 0 7-13l19-77 10-47q12-51 19.5-65t34-57 61-68.5T1471 531q7 0 17 2l19 4 17 5q45 15 64 52t19 105q0 21-4 42.5t-14 44.5l-38 75q-5 11-21 43t-16 37q4 0 19-17.5t34-39.5l50-61q75-96 112.5-118.5T1802 682q23 0 54 11.5t47 49 16 54.5q0 32-19 74.5t-51 72-74 67.5-42 51q0 6 10 6 22 0 104.5-41t151.5-41q43 0 102.5 32t59.5 100q0 46-26.5 82t-132.5 78l-56 18q-46 15-85 33.5t-39 30.5q0 10 28.5 14.5t70.5 4.5zm-256.5-173q-60.5-113-178.5-172.5T1269 973q-99 0-207 43t-192 170-84 258q0 175 133.5 320.5T1276 1910q128 0 245-50t181-161 64-250q0-131-60.5-244zM1476 1626.5q-86 72.5-205 72.5-114 0-196-72t-82-185q0-79 40.5-151t99-102.5T1292 1158q106 0 188 91.5t82 202.5q0 102-86 174.5z"},"children":[]}]};exports.u1F33B=u1F33B;var u1F33C={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2248.5 1830q-72.5 80-187.5 80-58 0-125-26.5t-156-87.5l-9-1q-8 0-8 7l19 47q20 43 35.5 109t15.5 118q0 127-85 219.5t-218 92.5q-160 0-257-128t-97-258q0-13-2-20.5t-7-12.5q-14 0-33.5 50.5T1060 2142t-136 109q-74 33-151 33-123 0-209.5-82.5T477 1981q0-86 44.5-177.5T666 1626l14-13q7-6 11.5-13t4.5-13q0-11-10-14l-28-6-46 4q-24 2-48 2-149 0-217.5-75T278 1328q0-116 102-214.5t268-98.5q11 0 27 1l32 2 56 6q25-3 25-20 0-12-17.5-38.5t-31.5-79T725 778q0-116 87-197.5t210-81.5q66 0 119 24t102.5 71 92.5 135.5 45.5 92 10.5 3.5q18 0 51-52t121.5-111.5T1781 602q141 0 244.5 83T2129 896q0 81-53 150.5T1970.5 1149t-52.5 42q0 13 57 24.5t145.5 74T2265 1447t56 199-72.5 184zm-742-657.5Q1405 1083 1265 1083q-131 0-220 90t-89 225q0 133 99 217.5t234 84.5q130 0 224.5-87t94.5-215q0-136-101.5-225.5z"},"children":[]}]};exports.u1F33C=u1F33C;var u1F33D={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M912 1040l-15-35q5-7 13-7 17 0 37.5 26.5T970 1053l22 27q20 26 31 50t11 45q0 30-18 56t-45 29q-2 0-4-2-8-72-28-135.5t-27-82.5zm366 419q17 14 39.5 33.5t23.5 23.5q-78 4-151.5 13.5T1047 1556q-26-24-43.5-60.5T986 1424q0-50 37-91.5t62-41.5q27 0 49.5 34t35 44 37.5 35zm-51.5-345q35.5-38 72.5-38 42 0 94 54.5t107.5 103 55.5 91.5-38.5 78.5-84.5 35.5q-89 0-165.5-77.5T1191 1202q0-50 35.5-88zm509.5 77q-41 40-93 40-68 0-156-86t-88-154q0-46 45-85t93-39q40 0 79 25.5t69 61 61 76.5 31 74q0 47-41 87zm-721-172q-14-17-24.5-35.5T980 942q0-49 36.5-88.5T1100 814q53 0 100 69t47 97q0 16-36 48t-59 55-42 23q-20 0-38.5-14.5T1033 1046zm250.5-354.5Q1308 632 1362 632q40 0 80 47t40 79q0 27-29.5 46.5T1387 854t-65 30q-35 0-67-53t-32-85q0-49 42.5-81.5zM1825 1567q-61-23-128-31l-137-16q2-35 55-82t100-47q53 0 96 36.5t43 69.5q0 18-7.5 36t-21.5 34zm-11-212.5q-32-27.5-32-68.5 0-32 42.5-82.5t96.5-50.5q38 0 71.5 27t33.5 70q0 60-46.5 96t-91.5 36q-42 0-74-27.5zM1558 708q-21-2-43-40t-22-71q0-42 35-64.5t96-22.5q54 0 80 28t26 59-59.5 58-71.5 40-41 13zm127.5 20.5Q1724 694 1766 694q41 0 112.5 68t71.5 126q0 43-33 71t-76 28q-69 0-131.5-66.5T1647 804q0-41 38.5-75.5zM2081 916q27 11 38 32.5t11 46.5q0 50-31.5 89.5T2025 1124q-29 0-55-21t-26-53q0-47 36.5-93.5T2056 910q7 0 13 2zm-253.5-364.5Q1844 540 1873 540q82 0 156.5 74t74.5 157q0 23-10.5 32.5T2066 813q-43 0-111-47t-106-103.5-38-79.5q0-20 16.5-31.5zM592 977l-33-11q-16-5-28-14t-12-28q0-22 26-32t76-10q138 0 216 139t78 357q0 190-161 288.5T537 1832q0-26-1.5-40.5T534 1768q0-102 46-260t49-172l21-94q12-54 12-108 0-59-19.5-103T592 977zm1475 944.5q-13 21.5-34 21.5-17 0-31-13.5t-25-21.5l-39-30q-34-24-69.5-37.5T1792 1827q-111 0-248.5 128.5T1236 2200t-296 116q-57 0-140-16.5t-79-16.5q-19 0-36 23.5t-37 23.5q-54 0-116.5-62.5T469 2164q0-26 31.5-47t31.5-44q0-13-1-25.5t-1-36.5q0-160 274-299t607-139q307 0 488 84.5t181 217.5q0 25-13 46.5z"},"children":[]}]};exports.u1F33D=u1F33D;var u1F33E={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2438 1059q-36 41-142.5 206T2092 1656t-139 419.5-47 256-30.5 86.5-61.5 24q-35 0-58.5-25.5T1732 2357l-7-74q-12-119-44.5-211.5t-87-185-134-162.5-122.5-96.5-43-49.5q0-18 18-27t43-10h25q88 0 193 44t181 120l11-79q8-67 14-137t6-126q0-175-62-290.5T1525 911l-10-3q-14-5-20.5-14.5T1488 865q0-33 15.5-45t35.5-12q40 0 139 55.5t159.5 190.5 60.5 300q0 22-2 48l-4 54q59-106 139-200.5t176-172.5l41-31q45-34 95.5-61t85.5-27q19 0 32 9.5t13 23.5q0 21-36 62zM1162.5 826.5Q1133 853 1085 853q-74 0-131.5-68.5T896 630q0-25 12.5-47t49.5-22q90 0 162 58t72 131q0 50-29.5 76.5zm-532 77Q558 846 558 782q0-33 59-51.5t93-18.5q79 0 134.5 43T900 865q0 29-13.5 43.5T842 942t-73 19q-66 0-138.5-57.5zm-276 235Q285 1101 285 1059q0-29 62.5-75T489 938q74 0 114 41t40 80q0 31-42 74t-116 43q-61 0-130.5-37.5zM427 1427q-58 44-139 44-67 0-105-19t-38-48q0-47 66.5-117t151.5-70q49 0 85.5 30.5T485 1308q0 75-58 119zm1.5 377.5Q380 1874 336 1874q-27 0-63-58.5T237 1687q0-66 35.5-117t97.5-51q37 0 72 43.5t35 101.5q0 71-48.5 140.5zM710 1583l-16 26q-15 25-34.5 40.5T621 1665q-30 0-74-62t-44-139q0-62 33.5-109t88.5-47q34 0 75 43t41 114q0 61-31 118zm190-236q-33 65-68 65t-87-64.5-52-149.5q0-55 31.5-98.5T802 1056q18 0 54 20t56.5 59.5T933 1223q0 59-33 124zm247.5-132.5Q1104 1283 1059 1283q-29 0-68-60t-39-134q0-67 35-114.5t93-47.5q30 0 70.5 43t40.5 109q0 67-43.5 135.5zm111-61.5q-19.5-59-19.5-97 0-77 41.5-132.5T1391 868q42 0 69 44t27 89q0 77-61.5 144t-112.5 67q-35 0-54.5-59zm4.5-425q-53-68-53-157 0-39 14.5-58.5T1269 493q74 0 150 59t76 138q0 37-21 71.5t-80 34.5q-78 0-131-68z"},"children":[]}]};exports.u1F33E=u1F33E;var u1F33F={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1991.5 2121.5Q1781 2187 1554 2187q-203 0-315.5-47t-149-127.5-89.5-80.5q-92 0-155.5 100T776 2206t-64 74q-37 0-75.5-20t-38.5-50q0-10 5-21t13-22l15-20q28-38 67.5-126t39.5-168q0-120-100.5-143T473 1545.5 409 1176q0-40 3-79l4-74q10-157 60-291t92-134q88 0 225 243t137 534q0 128-27.5 186T843 1668.5 811 1772q0 33 12 36 3 0 40.5-49t84-104.5T994 1531q0-10-4-34t-4-61q0-153 123-337.5t327.5-292T1881 660l106-17q28-4 53.5-5.5t66.5-1.5q59 0 91 13.5t32 41.5q0 44-50.5 140.5t-203.5 285-268 288.5-258.5 169.5T1197 1646l-78-1q-65 0-122.5 69t-75.5 95l-15 23q-3 4-12 18.5t-9 18.5q0 7 6 7 12 0 26.5-8.5t71.5-19 129-58.5l39-26q64-41 150.5-60.5T1497 1684q150 0 305 43t277.5 130 122.5 142q0 57-210.5 122.5z"},"children":[]}]};exports.u1F33F=u1F33F;var u1F340={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2153 2536q-32 32-75 32-141 0-274.5-87T1591 2264t-79-216q0-37 18.5-63t48.5-26q42 0 90 77t115.5 145.5 149 115.5 166.5 70 85 90q0 47-32 79zm-801-435q-125 113-260 113-65 0-122.5-26t-77.5-51l-21-27q-28-34-54.5-45.5T768 2051l-54-4q-66-5-96-23.5t-59.5-48.5-50.5-79.5-21-109.5q0-39 5.5-70t16.5-62 29-63.5 43.5-63.5 62.5-64 91.5-66.5 132-65T1026 1285l88-16 45-9q24-4 50-7t48-3q36 0 47 8t23.5 26.5 81 196.5 68.5 313q0 194-125 307zm934-571q-26 43-58 59t-32 50q0 14 2.5 27.5t2.5 27.5q0 85-16.5 125t-50.5 82-84 72-105 30l-88-14q-83-14-156.5-82T1582 1666l-19-76q-22-86-55.5-183t-78.5-195q-2 0-2-7 0-44 153.5-83t283.5-39q221 0 334.5 100.5T2312 1426q0 61-26 104zM992 1210q-123 37-219.5 55T583 1283q-135 0-225.5-68.5T267 1030q0-92 65-178.5T494 727q5-35 6.5-72t21-70 48.5-55.5 62.5-37.5 69.5-23 73-8q16 0 29 2l27 4q75 13 133 52t101.5 96.5T1148 761t63 172l29 94 7 25q4 14 7 30t3 30q0 34-21.5 37.5t-52 8-57.5 12.5zm391-112q-12 0-27.5-16t-81-183.5T1209 585q0-139 70.5-230.5T1468 263q58 0 109.5 26t84 65 42.5 67 30 28q5 0 31-5.5t66-5.5q128 0 208.5 66t80.5 179q0 109-51.5 192T1810 993.5t-275 60.5l-50 19q-25 9-50.5 16t-51.5 9z"},"children":[]}]};exports.u1F340=u1F340;var u1F341={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2344 1321q-90 172-165 257.5T2011 1721q78 26 120 48.5t42 34.5q0 33-127.5 112t-279.5 79h-22q73 119 169.5 192.5t182 90.5 85.5 77q0 36-33 56.5t-68 20.5q-89 0-218.5-91T1630 2090q-23 72-66.5 135.5T1463 2338l-12 11q-16 14-37.5 28t-34.5 14-26-42-21-113q-84 69-193 112t-305 70l-18 3q-25 4-56 6.5t-59 2.5q-51 0-78-11t-27-34q0-32 50-164t153-246q-137-55-289.5-147.5t-239.5-178-87-131.5q0-58 120.5-95t216.5-40.5 181-3.5h43q22 0 44 2-122-153-186.5-361.5T537 581q0-90 18.5-116.5T611 438q48 0 185 61t287.5 163T1347 904q28-134 81-246.5T1567 451l14-14q13-13 29-22.5t30-9.5q46 0 105 112t105.5 295.5T1907 1151q83-38 173.5-56t182.5-18q102 0 128 8.5t26 41.5q0 30-17.5 76t-39.5 89z"},"children":[]}]};exports.u1F341=u1F341;var u1F342={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2265.5 1099.5q-26.5 145.5-93 294.5T2026 1689.5 1908 1836q-18 0-17-35t-29.5-85.5-93-81.5-147.5-31q-143 0-242.5 85t-99.5 218q0 72 40.5 119t72 51.5 31.5 30.5q0 18-39 20.5t-77 2.5q-98 0-210.5-19.5T867 2038t-159-53q-46 0-101 77t-91.5 151.5T425 2288q-48 0-82.5-43t-34.5-59q0-27 55.5-73T495 1975.5t76-179.5q0-50-10-99t-10-105q0-179 63-331t209-281.5 301-197 225-67.5q10 0 17.5 3.5t7.5 11.5q0 7-6 14l-13 15q-7 9-13 18.5t-6 21.5q0 31 32.5 53t73.5 22q57 0 112.5-44t55.5-101q0-10-3.5-17t-7.5-13l-7-9q-4-4-4-9 0-16 35-24t85-8q25 0 47 1t33 1q206-4 295-53.5t107.5-82.5 32.5-33q25 0 47 117.5t22 230.5q0 124-26.5 269.5z"},"children":[]}]};exports.u1F342=u1F342;var u1F343={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1765 2103q4 0 8-1 24 0 43.5 24t19.5 53q0 33-15.5 50t-73.5 17q-64 0-161 24t-157 78-171 95.5-231 41.5q-224 0-386-135t-254.5-343.5T294 1602l1-34q0-43 5-62.5t14-19.5q11 0 19 13.5t57 37.5 127 24q35 0 71-4l71-7q35-4 71-7.5t72-3.5q297 0 504 154t222 396q0 40 12.5 60.5t38.5 20.5l81-21q53-13 66-25t31-19zm182-655q41-16 80-33.5t76-40.5q-17 113-97.5 230.5t-190 199.5-142.5 82q-12 0-21-5.5t-9-19.5l1-10q2-6 90-79.5t135.5-151T1947 1448zm100.5-119Q1770 1479 1332 1479q-230 0-394.5-77T773 1180q0-103 93.5-176T1112 895t261-36q207 0 347.5 35.5T1961 1016q-30 22-64.5 39.5T1824 1087q-81-57-198-88.5T1370 967l-31 1q-138 5-232.5 41.5T1012 1112q0 54 96 83t224 29q369 0 591-109t222-315q0-168-176.5-286T1526 359l-114-16-17-1q-20 0-29-5t-9-14q0-13 14-16t31-5q157 0 397.5 68.5t383 203T2325 896q0 283-277.5 433z"},"children":[]}]};exports.u1F343=u1F343;var u1F344={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2186 1926.5Q2043 2093 1773 2093q-109 0-217-24.5t-212-66.5q-95 224-271 350.5T715 2479q-187 0-315.5-104T271 2105q0-135 91.5-254.5T553 1689t174-84q-124-130-197.5-303T456 965q0-179 85.5-304T786 466.5t373-95.5 344-26q226 0 368 73t234 204.5 158 382.5 66 451q0 304-143 470.5zm-753-480q8 13.5 9 32.5v18q0 44-13.5 159t-32.5 189q79 36 158.5 59t144.5 23 90-23 25-56q0-73-67-174t-218-248.5-301.5-237-273.5-125-176-35.5q-50 0-86 31t-36 83q0 67 61 161t168 198q68-58 97-87t65.5-91.5 73.5-62.5q14 0 20 7.5t6 19.5q0 36-49.5 120.5t-172 189-252 164.5-198 139.5T407 2060q0 95 73.5 149.5T668 2264q95 0 191.5-38t196-124 167.5-207 106.5-239.5 44-170.5 36.5-52q15 0 23 13.5zM1359 469q-191 15-316 41t-210 66q0 69 95 116t210 47q120 0 198-57.5t78-155.5q0-17-4-32t-10-27h-20zm850 924l-5-62q-87 9-149.5 90.5T1992 1600q0 66 30 129t92 105q51-72 74-170.5t23-207.5q0-32-2-63zm-529-756q-62 61-62 152 0 146 113.5 260.5T1984 1164q64 0 105.5-39t55.5-101q-50-202-118.5-305.5t-105.5-123-89-19.5q-90 0-152 61z"},"children":[]}]};exports.u1F344=u1F344;var u1F345={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2046.5 1798.5q-151.5 218.5-376 322T1166 2224q-356 0-560.5-208T401 1443q0-218 127.5-419.5t344-323T1317 579q138 0 300.5 38.5t296 145.5 209 253 75.5 325q0 239-151.5 457.5zM1484 1145l-2-6q-15-3-30-5l-29-4q-29-4-49.5-15t-34.5-25l-24-22q-33-30-57.5-33t-24.5-19q0-10 14.5-25t42.5-33l17-11q75-52 103.5-100.5T1439 739q0-10-6-16-3 0-29.5 22.5t-122 49-121 50T1122 868q-14 0-25.5-23t-11.5-50q0-10 1-17l2-16 2-22q0-14 1-38 0-29-11-29-8 0-19 7l-16 11q-58 37-91.5 109T913 922t-85 50-120 29-80 29q-5 0-10.5-1t-10.5-1q-6 0-11 2.5t-5 8.5q0 27 51 56.5t113 29.5q5 0 11-1t12-1q10 0 14 4.5t4 10.5l-14 41q-13 37-24.5 107.5T706 1397l-14 14q-8 7-14 14t-7 14q18 11 40 11 47 0 119.5-47.5T944 1284t82-71q13 0 34 6l46 14q24 8 51 14t51 6q47 0 108-5.5t114.5-47 53.5-55.5zm-408.5-176.5Q1092 983 1092 1008q0 37-43.5 69t-85.5 32q-25 0-42.5-16.5T903 1054q0-39 44.5-69.5T1036 954q23 0 39.5 14.5z"},"children":[]}]};exports.u1F345=u1F345;var u1F346={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2234 1406q-27 22-76 22-92 0-158-66-67 225-212.5 452t-350 355.5T984 2298q-289 0-467.5-168.5T338 1705q0-129 46.5-239.5t134-189 201.5-117 297-43 269.5-34T1489 947q-81-34-128-86.5T1314 745q0-43 28.5-74.5T1415 639q19 0 31 3l46 12q13 3 34 3l13-1q28 0 110.5-34t164.5-34q33 0 64.5 3t61.5 3q19 0 49-18.5t59-18.5q33 0 102 47.5t69 112.5q0 27-10 49t-18 32q26 38 43.5 84t17.5 101q0 56-15 128.5t-15 102.5q0 43 19.5 69t19.5 59q0 42-27 64zm-71-104.5q-19-36.5-19-89.5 0-42 14.5-113.5T2173 984q0-72-32.5-117t-32.5-72q0-17 16-39t16-37q0-22-37-52.5t-55-30.5q-14 0-37 18t-52 18q-37 0-73-2t-72-2q-41 0-73.5 6t-50.5 14l-47 20q-23 10-51.5 18.5T1526 735q-40 0-69-9t-42-9q-12 0-17 8t-5 20q0 56 79 106t168 50q27 0 45-2.5t31-6.5l21-6q8-2 17-2 8 0 12 5t4 9q0 10-20.5 44.5T1729 1028q0 34 23.5 98.5t58.5 64.5q15 0 38-22.5t58-75.5l10-15q10-15 22-26t22-12q0 3 4 17l18 79q5 24 11 45l9 36q10 44 51 88t104 44q14 0 19-2t5-6q0-3-19-39.5z"},"children":[]}]};exports.u1F346=u1F346;var u1F347={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M429 1073q-30-18-30-49 0-63 80.5-146.5t171.5-165T845.5 567 971 503q28 0 50 27.5t22 57.5q0 51-61.5 81t-103 71.5T837 795t62.5 66.5T962 956q0 21-16.5 58.5T904 1052q-61 0-119.5-67.5T693 917q-13 0-28.5 12T639 954l-14 16q-19 20-53.5 70.5T489 1091q-30 0-60-18zm1700 1185.5q-71 70.5-168 70.5-62 0-95.5-15t-33.5-45q0-8 4.5-23.5t8.5-27.5l10-34q5-16 8.5-33.5t3.5-37.5q0-8-3-26.5t-3-35.5 8-27 29-10q12 0 25.5 3t24.5 3q32 0 62.5-9t45.5-17l25-13q12-6 24.5-10.5t24.5-4.5q29 0 49.5 35t20.5 88q0 99-71 169.5zm-9-709q45 50.5 45 130.5 0 91-63.5 168.5T1907 1926q-17 0-21.5-10t-4.5-27q0-13 3-26.5t3-27.5q0-69-22-112.5t-22-55.5q0-13 8.5-20.5t22.5-14.5l31-15q20-10 51.5-41.5t46.5-54 37-22.5q35 0 80 50.5zm-415 724q-77 66.5-164 66.5-84 0-151-54.5t-67-134.5q0-38 24-78.5t50-40.5q16 0 57.5 29t84.5 43 90 14q52 0 85-17t47-17q13 0 17 11.5t4 25.5q0 86-77 152.5zm43.5-309Q1684 2026 1604 2026q-86 0-145.5-64t-59.5-96q0-20 25-28.5t65-60 54-100.5 42-49q15 0 29 4l29 10q14 5 29 9.5t31 4.5q34 0 72 47.5t38 121.5q0 78-64.5 139.5zM808 1669q15 0 25.5 7.5T844 1702q0 26-21.5 83.5t-59.5 80-89 22.5q-98 0-168-71t-70-169q0-46 19.5-98t44.5-52q21 0 38 34.5t88 86 148 51.5zm587-925q32-45 82-71t110-26q98 0 168.5 70.5T1826 885q0 42-12.5 79t-35.5 66l-20-2h-21q-48 0-90 13.5t-80 36.5q2-12 3-24.5t1-24.5q0-88-46-165t-130-120zm-140.5 1340q-71.5 68-166.5 68-100 0-170-70.5T848 1913q0-66 39-129t76-63q27 0 45 40.5t90.5 80T1254 1881q44 0 58 6.5t14 37.5q0 91-71.5 159zm651.5-907.5q71 70.5 71 168.5 0 102-73 171t-170 69q-101 0-168-73t-67-168 70-166.5 168-71.5 169 70.5zM1085.5 1395q71.5-71 168.5-71t168 71 71 168q0 95-72 167.5t-167 72.5q-96 0-168-71.5t-72-168.5 71.5-168zm337-534.5Q1493 932 1493 1029t-70.5 168.5T1254 1269t-169-71-71-169 70.5-169 169.5-71q98 0 168.5 71.5zm-457 659.5q-70.5 71-169.5 71-98 0-168-71t-70-169q0-97 70-168.5t168-71.5q99 0 169.5 71t70.5 169-70.5 169z"},"children":[]}]};exports.u1F347=u1F347;var u1F348={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1593 850q220 86 361.5 300t141.5 459q0 359-233 585.5T1254 2421q-248 0-436.5-108.5t-290-297T426 1595q0-351 250-573.5T1310 799q32 0 65 2.5t68 8.5q0-8 2-15.5t2-15.5q0-39-35.5-55T1294 664.5t-130.5-80T1067 511t-48-80q0-33 24.5-55.5T1100 353q14 0 29 5.5t26 16.5q0 7 100 80.5T1488.5 587t281.5 82.5 297 27.5l26 1q31 0 55.5 23t24.5 55q0 33-23.5 56t-57.5 23q-182 0-324-26t-129-26h-6q-18 0-29 19t-11 28zm77 148q-22-14-43.5-25.5T1581 951q-4 5-8 11.5t-8 10.5l-4 36q-2 23-17 45t-48 22q-45 0-74-18t-29-46q0-16 8.5-51.5T1419 903q-37 19-80 36t-103 47-100.5 46-49.5 25q-14-29-30.5-59t-32.5-58l-46 16q-24 9-47 19 60 104 112 205t113 208q-27 7-62.5 11.5t-66.5 6.5h-12l-14-8q-9-6-32.5-20.5T918 1345l-89-57q-42-29-81-61t-70-66q-17 19-30.5 39t-26.5 43q23 24 48 45.5t53 42.5q-27 20-74 46t-82 56l-29 23q-12 62-12 124 43-20 84.5-55.5t94-66T793 1399l11-8 125 80q-15 21-28.5 47.5T873 1567l-25 41q-12 19-25 42.5t-26 54.5q-44-2-87-3t-87-1q-23 0-45.5-2.5T529 1694q6 20 8.5 47.5t7.5 52.5q18 2 37.5 3.5t42.5 1.5q42 0 84 1l86 2q4 16 14.5 32.5T853 1928l51 112q-51 13-100.5 23.5T695 2094q21 23 40 41t42 38l85-20q43-10 87-23 19 33 38 72t36 91q61 14 121 21-9-23-18-38t-16-31l-27-67q-7-17-17-37l-18-36q27-6 86.5-20.5T1241 2060q2-2 14.5-5.5t18.5-3.5q13 36 25.5 83.5t39 102 35.5 83.5q26-2 50.5-6.5t48.5-9.5q-9-21-14.5-39t-25.5-60-31-75l-14-43q99-58 189-126 27 20 51 42l48 46q24 23 49.5 46t55.5 43q17-17 33-35.5t30-38.5l-11-10q-78-66-121.5-108.5T1662 1899q51-51 112.5-95.5T1900 1705l98-85q0-32-2-62t-7-63l-5 7q-33 30-69.5 60.5T1845 1623q-22-28-37-51l-28-42q-13-20-25-39.5t-27-40.5q24-21 50-40l51-37q25-18 49.5-37t46.5-41q-11-23-23.5-45t-24.5-42l-86 67q-10-5-24-16l-33-24q-48-34-84-53t-79-54q23-29 47.5-63t51.5-67zm-251 582l-79 68q-40 34-82 66l-4 5q-17 2-35 3t-37 1q-66 0-137-6.5t-142-6.5q9-22 36.5-62t45.5-79 38-64q74-4 159.5-24.5T1323 1435l25 35q22 30 38 57t33 53zm13-277q23-23 42.5-47.5t38.5-47.5q33 26 92.5 58.5T1711 1338q-53 41-104 82t-103 86l-9 8q-10-15-45-66t-59-88q5-11 19-29zm-218 517l16 70q7 33 18 67-2 0-4 1-52 11-133.5 31.5T1002 2016l-21-43q-23-43-38.5-85t-34.5-79q69 0 137 6t137 6zm29-477q-29-53-57-100t-54-98q9-7 20.5-13.5t14.5-6.5q38-15 76-33t74-37q13 14 28.5 26t31.5 23l31 23q14 11 25 22-18 24-78.5 92t-72.5 104l-30 16zm285 533q-19 13-56.5 41.5T1358 1990q-3-11-25-96t-22-93q13-15 32-31l81-65q21-17 39-34 14 54 31 103t31 94zm123-364q25 32 46.5 70t38 58 31.5 43l-75 59q-39 30-77 66l-5 4-29-83q-21-58-23-79.5t-11-50.5l52-43q26-21 52-44z"},"children":[]}]};exports.u1F348=u1F348;var u1F349={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2173 897q28 95 48 211t20 223q0 273-130.5 464t-409 306-546.5 115q-147 0-280-34.5t-237-98-173-153-87.5-167T359 1478q0-61 16-105t69-68l1496-664q6-4 16.5-7t31.5-3q50 0 91.5 44.5T2147 808zm-507 236q30 24 63 24 18 0 35.5-13.5t17.5-31.5q0-26-28-43t-62-17q-25 0-40.5 8t-15.5 23q0 26 30 50zm-49.5 143.5Q1585 1249 1552 1249q-15 0-21 10t-6 24q0 32 24 63.5t54 31.5q17 0 31-10.5t14-32.5q0-31-31.5-58.5zm-332.5 104q-14 28.5-14 53.5 0 27 13.5 47.5t38.5 20.5q22 0 35-19t13-40q0-32-16.5-61.5T1319 1352q-21 0-35 28.5zm-161-53.5q-8-11-22-11-27 0-53.5 31t-26.5 62q0 19 11.5 34t30.5 15q29 0 48.5-29.5t19.5-64.5q0-26-8-37zm-641 442q27 63 72 115.5t106 94.5q-4-23-23-38.5t-19-38.5v-31q0-21-22.5-37.5T573 1753q0-22-21-48.5t-21-57.5v-15q0-7 2-15-23-29-41-55l-35-49q0 25 2.5 52.5t2.5 55.5q0 56 4.5 91t10.5 46zm431.5 199.5q1.5-7.5 2.5-15.5-54-29-103.5-64t-93.5-73q0 5-1 15 0 24 9 39.5t22 27.5l23 21q11 10 13 24t2 26q0 13 5 26.5t26 31.5l23 20q13 12 30 31 25 7 50.5 12.5T973 2101v-13q0-29-30.5-54.5T912 1983q0-7 1.5-14.5zM1118 2117q70 0 131-4.5t113-14.5q-69-9-144-30t-163-53q0 21 29 43t34 52v7zm998-1025q-25-119-56-228l-8-29q-15-55-33.5-80t-30.5-25h-6l-76 34q46 82 86.5 237.5T2033 1295q0 144-59 288t-186 225.5-317 81.5q-230 0-459-128.5T656 1436l-59-91-118 52q70 139 234 306t392.5 247 382.5 80q233 0 443-184t210-512q0-123-25-242z"},"children":[]}]};exports.u1F349=u1F349;var u1F34A={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1841 899q211 112 331.5 304.5T2293 1619q0 225-111.5 402T1846 2298t-546 100q-323 0-547-101t-335-277.5T307 1619t123.5-420.5 352-310T1303 775q34-142 152-234t270-92q72 0 142.5 17.5T2004 512l20 7h-1q15 6 25.5 16t10.5 27q0 18-21 83t-72 133.5T1841 899zm212.5 336Q1930 1058 1716 968q-97 40-194 40-37 0-73-6-20 59-72 92t-117 33q-79 0-136.5-48.5T1066 960q0-13 2.5-25t6.5-23q-296 57-474 254.5T423 1619q0 309 232 486t645 177 645-177 232-486q0-207-123.5-384zM1318 926.5q-22-17.5-58-17.5-32 0-55 16.5t-23 34.5q0 15 20.5 32.5t57.5 17.5q30 0 55-14t25-36q0-16-22-33.5zM894.5 1374q-21.5 20-56.5 20-31 0-46-16.5t-15-38.5q0-25 18.5-46t48.5-21q28 0 50 16t22 40q0 26-21.5 46zm701.5 246.5q-23 16.5-51 16.5-25 0-44.5-17.5T1481 1574q0-26 20.5-42t46.5-16 48.5 18.5 22.5 44.5q0 25-23 41.5zm125.5-417q23.5 20.5 23.5 56.5 0 25-17 37t-40 12q-29 0-52.5-18t-23.5-50q0-30 18.5-44t40.5-14q27 0 50.5 20.5zm-969.5 507q22 20.5 22 54.5 0 28-16 41t-36 13q-29 0-53.5-20t-24.5-49q0-23 15.5-41.5T701 1690q29 0 51 20.5zM1891 1525q20-17 43-17 25 0 43.5 19.5t18.5 39.5q0 25-22 42.5t-47 17.5q-23 0-39.5-17t-16.5-42q0-26 20-43zm-701 446.5q20 18.5 20 47.5 0 25-20 37.5t-43 12.5-42.5-12.5-19.5-39.5q0-32 18.5-48t41.5-16q25 0 45 18.5zm439-76.5q19-17 44-17 24 0 42.5 19.5t18.5 39.5q0 24-22.5 42t-47.5 18q-23 0-38.5-17t-15.5-42q0-26 19-43zm-477-321.5q-22 17.5-47 17.5-23 0-38.5-17t-15.5-42q0-26 19-43t42-17q22 0 42 17t20 42-22 42.5z"},"children":[]}]};exports.u1F34A=u1F34A;var u1F34B={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1579 671q102 12 225 12 29 0 57-1t54-1q93 0 179.5 92t86.5 192q0 32-20 95.5t-27.5 232-58.5 297-127 230.5-164 176.5-189 125.5q-87 45-182 68l-73 17q-56 14-108.5 22t-102.5 8q-77 0-217.5-25T726 2187l-45 1q-122 0-192.5-92T418 1910q0-24 4.5-47.5T433 1816l13-46q6-24 9.5-49.5t8.5-52.5l10-51q11-66 18-149t34.5-167 63.5-154 86-135 111.5-119.5 130.5-94 147.5-67T1221 683q91-24 190-24 66 0 168 12z"},"children":[]}]};exports.u1F34B=u1F34B;var u1F34C={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2149.5 997.5Q1991 1101 1845 1219q116 41 207 133.5t91 192.5q0 40-23 69t-67 29q-24 0-47.5-8t-46.5-20l-45-23q-36-18-71.5-25t-78.5-9q102 46 164 140t62 213q0 123-63.5 224.5T1756 2237q-51 0-92.5-40.5t-55.5-177-56.5-179-95.5-42.5q-43 0-88 44t-77.5 90-130 124.5-166.5 106-105 31.5-56 47.5-55 43.5q-18 0-75.5-36T594 2168l-17-15q-7-6-9-10.5t-2-9.5q0-8 7.5-32.5t7.5-57.5q0-43-14.5-114.5T552 1813q0-217 103-410h-22q-11 0-23 1-154 0-236-42.5T292 1234q0-117 125.5-198.5T740 954q18 0 36 1t35 4q-17-23-39.5-43T724 877l-49-38q-39-30-63-65t-24-75q0-58 50-92t124-34q138 0 268 79t211 224q162-131 367.5-213t371.5-82q139 0 233.5 54t94.5 151q0 108-158.5 211.5zM2003 978l88-61q60-41 89.5-72t29.5-61q0-46-66.5-76T1980 678q-182 0-435 122.5T1144 1111q90 81 146 180t62 228l12 11 147-145q127-126 257-230t235-177zM674 1978q5 32 5 66 0 16-1 30.5t-4 29.5l27 24 32-48q110-197 274-372 46-49 65.5-82.5t19.5-66.5q0-78-64.5-117.5T768 1402q-56 84-87.5 190.5T649 1811q0 26 3 51t11 57zm-9-673q29-1 55-1 214 0 324 26.5t193 86.5q-26-81-91-166t-178-142-228-57q-157 0-253.5 56.5T390 1237q0 34 65 51.5t155 17.5q26 0 55-1zm1130.5 389.5Q1698 1611 1553 1611q-15 0-31 1t-32 3q99 58 153 174.5t63.5 233T1756 2139q62 0 99.5-72.5T1893 1910q0-132-97.5-215.5zM747 769l70 56q39 34 71.5 75t53.5 92q64 24 122 62 24-32 49-59.5t53-53.5q-46-87-122-156.5T890 693t-128-22q-28 0-52 7.5T686 699q0 14 17 32t44 38zm1265 762q18 9 32 12-15-83-91-150t-180-91q-33 36-42.5 71.5t-9.5 87.5q7-2 15-2h16q62 0 116.5 15t108.5 41z"},"children":[]}]};exports.u1F34C=u1F34C;var u1F34D={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1977.5 831.5q-37.5 23.5-108.5 98t-88 119.5q0 14 18 14l13-1h47q36 0 64.5 8t28.5 24q0 13-21.5 31t-43.5 42l-37 42q-19 21-38.5 41.5T1770 1289q102 114 156.5 273.5T1981 1889q0 205-77 363.5T1676.5 2491t-337.5 80q-188 0-346-79.5T748.5 2256 662 1901q0-179 59.5-341.5T891 1278q-35-23-71-42.5t-76-32.5l-12-3q-15-4-25-9t-10-13q0-31 68.5-42t68.5-31q0-14-30.5-45t-98-58.5-94.5-35-27-22.5q0-29 54-47.5T755 878q25 0 49.5 1.5T855 881q9 0 12-6.5t3-15.5q0-68-86-142.5t-139-95-53-40.5q0-23 84-42t113-19q74 0 129 13t57 13q24 0 30.5-3t6.5-19v-12l-2-12q-22-79-70.5-153.5T891 253q0-14 10.5-22t27.5-8l11 1q108 17 187 55t109 69 55 31q27 0 61-37.5t122-78.5 207-41q16 0 30.5 3t14.5 15q0-3-33.5 65T1643 483q0 5 2 11t10 6q5 0 73-27.5t187-27.5q32 0 62 2.5t30 20.5q0 13-25 33.5t-89.5 81.5-87.5 113-23 57q0 10 8.5 12t19.5 2q8 0 25-1l38-3q21 0 42.5-1.5t39.5-1.5q26 0 43 5.5t17 20.5q0 22-37.5 45.5zm-158 760.5q-51.5-144-142.5-243-72 34-166.5 58t-196.5 24q-95 0-175-23t-151-68q-100 87-158.5 241T771 1904q0 261 160.5 408.5T1339 2460q160 0 287-68.5t186-201 59-301.5q0-153-51.5-297zM1540 1976q-10 6-21 6-33 0-83-52.5t-86-52.5q-47 0-96.5 52.5T1169 1982q-17 0-23.5-8t-6.5-16q0-29 70.5-107t137.5-78q29 0 61 20.5t63 53.5l31 34 27 31q9 11 15 24.5t6 21.5q0 12-10 18zm-559-390q70-64 118-64 40 0 74.5 33t69 69 34.5 58q0 16-11.5 24.5t-25.5 8.5q-19 0-72-39t-83-39q-21 0-67.5 33.5T941 1704q-14 0-22-6.5t-8-16.5q0-31 70-95zm271 598q19 23 26 36t7 25q0 13-9.5 18.5t-21.5 5.5q-31 0-84-52.5t-89-52.5q-29 0-74 38.5t-71 38.5q-11 0-22-6.5t-11-20.5q0-16 10.5-35t27.5-38l19-19q24-23 56.5-43t67.5-20q28 0 64 23.5t89 84.5zm-270.5-238.5Q964 1927 898 1886t-66-86q0-19 13.5-28t28.5-9q33 0 103.5 65t70.5 103q0 13-8.5 23t-20.5 10q-20 0-37.5-18.5zM1717 1600q19 19 36 42t17 39q0 8-6.5 15.5t-23.5 7.5q-27 0-73.5-33.5T1596 1637q-36 0-82.5 39t-73.5 39q-13 0-24.5-8t-11.5-22q0-24 31-57t68.5-69.5 78.5-36.5q35 0 63.5 21t53.5 42zm23 540q18 20 28 37.5t10 33.5q0 14-8 22t-22 8q-23 0-67.5-38.5T1600 2164t-89 52.5-85 52.5q-11 0-20.5-5t-9.5-19q0-32 75.5-109t125.5-77q35 0 68.5 19.5t56.5 43.5zm68-367q13 10 13 27 0 44-63 82.5t-82.5 60-41.5 21.5q-14 0-21-11.5t-7-22.5q0-37 71.5-102t103.5-65q14 0 27 10z"},"children":[]}]};exports.u1F34D=u1F34D;var u1F34E={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1963 2008.5Q1856 2207 1681 2299t-393 92q-276 0-463.5-120T548 1995.5 459 1635q0-166 63.5-312.5t189-253.5T1007 962q47 0 93 6l92 12q-9 48-15 100.5t-6 105.5l1 23q0 13 2 26-51-15-81.5-32t-45.5-17q-8 0-13.5 5.5t-5.5 20.5q0 44 77.5 89t178.5 45q92 0 165.5-49.5t73.5-84.5q0-10-6.5-13.5t-14.5-3.5q-11 0-21 4.5t-21 10.5l-25 14q-13 7-29 12-3-22-3-45 0-32 2-57t2-48l1-17 10-71q26 0 50.5-1t49.5-1q146 0 236 39.5t162 114.5 113 188.5 41 252.5q0 219-107 417.5zM2130 628q10 11 10 23 0 14-8 24l-17 21q-84 108-215 172.5T1639 933q-73 0-136.5-20t-95.5-52q-37 73-50 138t-13 193q0 19 1.5 36.5t1.5 26.5q0 16-17 24t-46 8q-14 0-29.5-6t-18.5-26l-2-9q-2-8-3-22.5t-1-44.5q0-47 5.5-93t13-93.5 24-88.5 21-82 50.5-41q19 0 32.5 3.5T1404 802l7-31q22-108 121.5-196t228.5-88q87 0 192 34t157 88z"},"children":[]}]};exports.u1F34E=u1F34E;var u1F34F={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2144 682q-90 86-215.5 139T1679 874q-97 0-172-31t-86-50q-5 5-22 44.5t-31 92.5q0 7-2 15 12 0 23.5 1t22.5 1q34 0 70-1t73-1q158 0 254.5 43.5T1985 1113t126 207.5 47 285.5q0 242-119 464t-313 324-437 102q-166 0-326.5-45.5t-319.5-183-218-291-59-318.5q0-185 71-349.5t210-283T974 907q68 0 136 9l137 20 6-34q4-29 16.5-62t16.5-55l6-28q4-25 18.5-38t42.5-13q17 0 34.5 4.5T1418 728q29-150 140-250.5T1812 377q96 0 206.5 36t163 81.5T2234 560q0 36-90 122zm-762 374q-13 0-27-1-5 17-5 40l-1 44q0 20 2 43t2 46q29 0 73-18.5t60.5-31 39.5-12.5q9 0 16 3.5t7 14.5q0 40-79 95t-192 55q-98 0-189.5-49.5T997 1184q0-17 7-23t17-6q15 0 56.5 22.5T1229 1226q-3-12-4.5-34t-1.5-40q0-26 2-53.5t6-54.5q-68-8-132-17.5t-125-9.5q-120 0-201.5 51.5T624 1203t-108 201-41 251q0 320 231 526.5t583 206.5q209 0 374.5-83t275.5-276 110-419q0-136-39-245t-103-174-139.5-100.5T1555 1055h-73z"},"children":[]}]};exports.u1F34F=u1F34F;var u1F350={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2030 1173.5q-49 157.5-49 385.5 0 197-76.5 401T1680 2258.5t-315 94.5q-287 0-577-215.5T498 1616q0-110 51.5-222t157-219.5 212.5-168 151-100 152.5-142 213.5-177 215-74.5q87 0 175 40 27-43 69.5-75t74-41.5 47-24T2047 398q17 0 36 29.5t19 57.5q0 12-8.5 22t-25.5 10q-5 0-10.5-1t-9.5-1q-39 0-75 22.5t-61 64.5q96 63 131.5 143t35.5 173q0 98-49 255.5z"},"children":[]}]};exports.u1F350=u1F350;var u1F351={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2210 2071q17 40 30.5 85.5t13.5 75.5q0 36-21 39.5t-100.5 10-159.5 6.5q-225 0-394.5-71T1355 1998q-26-4-52-7t-54-3q-49 153-221 226.5T627 2288q-88 0-163.5-8.5T383 2271q-20 0-28.5-8.5T346 2230q0-68 62-194t181-211q-87-83-136-201.5T404 1384q0-217 147.5-429T929 608l168-97q4-2 45-27t68-25q77 0 323.5 129.5t414 338.5 167.5 449q0 134-38 235t-115 182q77 50 135.5 109.5T2197 2043zM1763.5 872.5Q1510 638 1210 558q-55 31-113 65l-119 70q-210 124-342.5 312.5T503 1384q0 129 64 250t181.5 188 274.5 67q25 0 38.5-7t13.5-24q0-22-31.5-62T964 1640t-48-258q0-77 17-159l5-17q7-26 17.5-42.5T977 1147q17 0 17 23l-1 21q0 363 133 537t362 174q181 0 355-135t174-391q0-269-253.5-503.5z"},"children":[]}]};exports.u1F351=u1F351;var u1F352={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2171.5 610.5Q2141 630 2108 630q-7 0-14-2t-14-2l-14 2q-8 1-79 63.5T1841 849t-138 207.5-115 248-88 298.5q138 53 215.5 154.5T1793 1996q0 186-114.5 307T1384 2424q-187 0-328.5-119.5T914 2002q0-175 129.5-302.5T1341 1572q20 0 42 1.5t42 6.5q9-52 55.5-199t124.5-301.5 164.5-266T1951 618q-302 59-545 234t-378 465q-17 36-22 55 56 23 105.5 59t87.5 84q-157 47-260 185.5T836 2002q0 99 34 178-193 0-333-119.5T397 1759q0-174 128-302t300-128q30 0 56 4.5t51 10.5q7-20 23-54 145-316 411-505.5T1989 532q2 0 3-1t4-1q16-4 29-12l24-15q12-7 25-12.5t30-5.5q38 0 68 22t30 54q0 30-30.5 49.5z"},"children":[]}]};exports.u1F352=u1F352;var u1F353={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2015 997q81 88 123.5 186.5T2181 1382q0 97-34 166.5t-95 69.5q-7 0-11-1-26 203-179 379t-371.5 264-464.5 88q-130 0-273.5-28T543 2213.5t-95-194-29-322.5q0-342 151.5-613.5T986 747q-6-13-10.5-27.5T971 688q0-64 66.5-102t203.5-38q99 0 193.5 31.5T1619 675q56-51 112.5-79.5T1851 567q96 0 172.5 78.5T2100 827q0 48-19.5 89t-65.5 81zM718.5 1800q-15.5-23-40.5-23-26 0-46 26.5t-20 65.5q0 32 16 55t40 23q27 0 46.5-27.5T734 1855q0-32-15.5-55zm38-413.5Q743 1366 719 1366q-28 0-51.5 30t-23.5 70q0 26 13.5 47t36.5 21q33 0 54.5-33t21.5-68q0-26-13.5-46.5zm137.5-367q-16-12.5-39-12.5-39 0-71 29.5t-32 60.5q0 24 16.5 36t39.5 12q36 0 69-27t33-63q0-23-16-35.5zM1045.5 2065q-21.5-14-51.5-14-38 0-67.5 22t-29.5 49q0 25 22.5 38.5T971 2174q37 0 66.5-20.5t29.5-49.5q0-25-21.5-39zm26.5-371q-13-14-36-14-34 0-65 32.5t-31 67.5q0 23 13.5 36t35.5 13q37 0 66.5-31t29.5-68q0-22-13-36zm33.5-342q-12.5-15-35.5-15-34 0-63.5 34t-29.5 70q0 22 13 36.5t35 14.5q35 0 64-32t29-70q0-23-12.5-38zm212.5 366.5q14 13.5 37 13.5 35 0 67.5-32t32.5-66q0-23-14.5-36t-37.5-13q-36 0-67.5 29.5T1304 1682q0 23 14 36.5zm170.5 241Q1470 1947 1444 1947q-39 0-70.5 25.5T1342 2028q0 23 18.5 35t43.5 12q37 0 70-23t33-56q0-24-18.5-36.5zm317.5-261q-13-18.5-36-18.5-29 0-54.5 31.5T1690 1781q0 27 13 45.5t38 18.5q32 0 55-32t23-69q0-27-13-45.5zm246-179.5q14-18 23-58t9-79q0-85-40-169.5T1933 1053q-26 16-81 66.5t-75 50.5q-14 0-24-9t-10-23q0-35 49.5-86t85.5-76l20-14q10-7 17.5-13.5t7.5-10.5q0-15-37.5-19t-82.5-53.5-45-112.5q0-13 1-20t1-17q0-9-2-14t-10-5q-109 89-163.5 161t-84.5 72q-17 0-26.5-10.5T1464 890q0-36 41.5-83t49.5-56q-66-47-142.5-76.5T1241 645q-57 0-114 13t-57 32q0 5 7.5 17t16.5 22l38 35q35 34 66.5 71t31.5 57q0 28-63.5 56.5t-98 56.5-34.5 55q0 16 25.5 26.5t53.5 13.5l24 3q8 0 102 10t94 54q0 31-14.5 80.5T1304 1348q0 25 7 44t33 19q35 0 112.5-39t103.5-39q34 0 66 114.5t71 114.5q28 0 59-58.5t42-101.5 39-43q17 0 44 15.5t58 40.5l30 26q9 8 19 20l19 24q10 12 21.5 21.5t23.5 12.5z"},"children":[]}]};exports.u1F353=u1F353;var u1F354={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2185 1744q-41 46-86 58 7 21 10 43t3 45q0 189-128 324.5T1642 2386t-400 36q-267 0-461.5-77.5t-269.5-198-82-261.5q-20-14-30-45.5t-10-70.5q0-60 24.5-100t69.5-72q-2-5-3-12l-3-11q-41-20-62-58.5t-21-81.5q0-65 52-118-39-35-55.5-85.5T374 1117q0-159 84-309.5T761 552t486-105q135 0 269 26.5t268 79.5 222.5 133 123 194 34.5 207q0 45-10 88t-33 77.5-39 52.5l-15 53q12 37 18 70 44 24 92.5 82t48.5 124q0 64-41 110zm-185 246l3-10q-20 14-40 19t-45 5q-84 0-98 22.5t-76 85-177 62.5q-38 0-66.5-12t-56.5-39q-19 0-31 2l-23 5q-17 3-64.5 37t-109.5 34q-90 0-151.5-50t-91.5-50q-15 0-30 8l-35 17q-19 9-43.5 17.5T808 2152q-72 0-122-39.5t-59-92.5-14.5-58-22.5-8l-23-4q-14-2-33-8 26 141 118.5 218T895 2280t347 43q146 0 329.5-25t293-107.5T2000 1990zM519 1252.5q48 44.5 138 88.5t226.5 72.5T1221 1442q402 0 623.5-89.5T2066 1089q0-80-27-172.5T1939.5 758 1753 645.5t-244.5-73T1247 546q-244 0-442.5 95.5t-266 221T471 1119q0 89 48 133.5zM1990 1495q-83 100-252 163.5t-459 63.5q-106 0-199-7t-169-20q-16 5-31 9t-29 4q-45 0-93.5-27t-87.5-60.5-87-33.5q0 5 5 14l8 16q38 97 151.5 154.5t269 71T1282 1856q341 0 512.5-95.5T1990 1495zM522 1379q-11 11-20.5 25t-9.5 33q0 24 12.5 38t37.5 14q67 0 97.5 7t105 60 106.5 53q17 0 34-8l34-15q29-14 67-27t80-13q43 0 75.5 14t52 28 62.5 14q16 0 40-18.5t52-46.5q-33 0-64 1t-63 1q-259 0-423.5-47.5T579 1412zm1558 170q-49 194-249.5 299T1282 1953q-263 0-385-26t-214-78.5T523 1690q-24 24-30.5 38.5T486 1769q0 69 85 81t112 43 38 96 87 65q31 0 77-26t85-26q36 0 63 12.5t44 23.5l35 25q25 20 47.5 29.5t51.5 9.5q45 0 84.5-34.5T1430 2026q51 0 77 23.5t47 24.5l13 1q92 0 137.5-62.5t82.5-85 131-22.5h19l19-12 8-14q8-16 21.5-79.5t77.5-88.5 64-77q0-37-47-85zm-908-845.5q-17-8.5-17-31.5 0-22 20-35.5t51-13.5q22 0 39 13t17 31q0 20-21 32.5t-50 12.5q-22 0-39-8.5zm185.5 115Q1377 832 1377 852q0 13-14.5 27t-50.5 14q-25 0-44.5-10t-19.5-36q0-20 18-31t46-11q26 0 45.5 13.5zm59-82Q1397 726 1397 708q0-25 20-36.5t43-11.5q26 0 46 14.5t20 34.5-20.5 29-41.5 9q-28 0-47.5-10.5zm-373.5 56q20-12.5 45-12.5 23 0 43 12t20 29q0 20-23.5 33.5T1078 868t-40.5-11-14.5-29q0-23 20-35.5zm464.5 27Q1523 808 1558 808q20 0 36 14t16 31q0 20-21.5 34t-37.5 14q-20 0-39.5-16t-19.5-39q0-15 15.5-26.5zm197.5-21q-26-16.5-26-35.5 0-21 13-28t30-7q25 0 44.5 12t19.5 33q0 13-8.5 27.5T1753 815q-22 0-48-16.5zm-148 238q-10 13.5-25 13.5-24 0-47-17t-25-36q0-19 13.5-26t29.5-7q25 0 44.5 12t19.5 33q0 14-10 27.5zM1231.5 997q12.5 13 12.5 30 0 20-20 31t-43 11q-19 0-35.5-8t-16.5-23q0-23 23-38.5t49-15.5q18 0 30.5 13zM894 929q-20 10-43 10-21 0-36.5-7.5T799 906q0-22 22-37t47-15q18 0 32 11t14 32q0 22-20 32zm114-195q-21 11-44 11-20 0-35-8t-15-25q0-24 21.5-38t49.5-14q17 0 30.5 11t13.5 31q0 21-21 32z"},"children":[]}]};exports.u1F354=u1F354;var u1F355={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2360 1594q-18 71-114 108l-54 20q-148 56-296 106l-297 100-76 25q-54 17-96 44.5t-63 67.5-57.5 66.5-92.5 26.5q-32 0-58.5-11t-48.5-24l-45-23q-22-11-46-11-43 0-69.5 37t-67.5 59-95 22q-22 0-40.5-5t-33.5-11l-30-10q-15-5-28-5-32 0-53.5 34.5T571 2301t-51 99.5-101 43.5q-103 0-150-137t-47-257q0-175 104-351t314-446l283-364 22-28q47-60 49-100.5t20-100 54.5-107 94-75T1295 451q170 0 442 131t456.5 363 184.5 494q0 84-18 155zm-827 253l300-101q160-53 325-116l49-19q47-18 53-30t13.5-55 7.5-81q0-44-4.5-64.5t-30-55-75.5-34.5q-76 0-114.5 43t-38.5 113q0 96-84.5 128.5T1764 1624l-60 12q-41 9-95.5 31t-155.5 55l-197 63q-99 32-333.5 110T619 1991l-60 16q-76 20-95.5 32t-29.5 12q-14 0-26-11t-12-29q0-22 29.5-40t71.5-30l43-12q143-37 382-116.5t309-102.5l196-63q108-34 170-60.5t111-31.5 125-27 90-36q-13-59-34-111-29 47-87 73.5t-116 26.5q-80 0-133.5-40.5T1499 1330v-18q0-60 59-113.5t130-53.5q18 0 37 3t38 8q-100-128-216.5-195.5T1277 873q18 18 28.5 43t10.5 60q0 63-69.5 122.5T1088 1158q-62 0-109.5-27t-59.5-76l-106 137q-53 69-110 138 83 0 142.5 45.5T905 1491q0 78-70 126.5T686 1666q-46 0-94-19.5t-77-58.5l-40 60q-94 144-125 231.5T319 2050q0 93 32 194.5t68 101.5q45 0 61.5-84t61-134.5T652 2077q22 0 41.5 5t36.5 11l30 12q13 5 24 5 53 0 81-39.5t67-59.5 84-20q51 0 106 34t92 34q44 0 61-37.5t65-82 193-92.5zM1108 776l83 6q50 2 159.5 24.5t203 68.5 175 124.5 137.5 164 93 177.5q27-60 79.5-94t113.5-34q27 0 48 2t41 10q-62-172-221-327t-376-252.5-349-97.5q-89 0-142 57.5T1090 774zm-146 769q0-38 16-67t48-48l29-17q-8-15-10.5-26.5t-2.5-27.5q0-56 46-87.5t104-31.5q55 0 90.5 23t43.5 65q13-4 32-4 54 0 95.5 40t41.5 102q0 63-46 98.5t-112 35.5q-20 0-38.5-2.5t-34.5-6.5q-24 40-67 66.5t-94 26.5q-61 0-100-39.5t-41-99.5zm123-58q-20 9-32.5 23t-12.5 33q0 29 19.5 46t43.5 17q26 0 51.5-15t42.5-40l4-10q4-13 19.5-25t35.5-12q13 0 24 5t19 10q74 0 95-10.5t21-42.5q0-26-14.5-45t-42.5-19q-5 0-10.5 1t-14.5 4q-8 8-17.5 11.5t-27.5 3.5q-21 0-31-17t-10-32v-15.5l2-7.5q0-32-57-32-38 0-54.5 15t-16.5 26q0 8 1.5 15.5t4.5 12.5q13 3 23 16t10 38q0 23-13 35t-28 12l-11 1q-7 0-13.5-1t-9.5-1z"},"children":[]}]};exports.u1F355=u1F355;var u1F356={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2288 898q40 94 59 180.5t19 168.5q0 118-39 226t-94 170-167 138-243 142-180.5 82.5T1383 2179l-164 122q-118 87-234 133.5T763 2481q-126 0-256-72t-172-171l-60-137q-23-53-32-100t-9-89q0-82 30-152.5t62.5-123T444 1512l77-65q127-108 190-251t125.5-292.5T1005 637t254.5-181.5T1571 391q141 0 298.5 61t236 131T2230 765zm-122.5-51.5Q2119 712 2045.5 649t-213-116-261.5-53q-93 0-179.5 23T1207 585.5t-179.5 166-145.5 271T752 1308t-174.5 209.5T437 1640t-73 111.5-41 159.5q0 32 7 69t24 79l13 23q21 41 84 86t153 61l36 10q21 6 58 6 90 0 192.5-42t211.5-122l165-123q217-163 292-189t218-104.5 234.5-148 126-131T2192 1251t20-152q0-118-46.5-252.5zm-90 463Q2024 1409 1867 1513l-36 23q-35 21-68 34t-62 13q-38 0-67.5-26t-29.5-64q0-16 3-29l5-27q3-16 5.5-36t2.5-48q0-26-13-39.5t-32-13.5q-37 0-56.5 39.5T1499 1471q0 26 1.5 51.5t1.5 51.5q0 75-27 113t-90 78-134.5 93-121.5 91-107.5 80.5-129 75T756 2137q-88 0-134.5-43.5T570 1998t-30-52q-20 0-37.5 40.5T465 2027q-11 0-32-17t-21-99q0-69 37.5-136T600 1610l72-61q78-66 130-149t103-200l46-110q23-55 44-103.5t41-85.5l15-27q11-20 28-33.5t40-13.5q25 0 39.5 31t27.5 49.5 23 59 10 72.5q0 89-45.5 166t-45.5 118q0 35 13 54.5t40 19.5q16 0 34-20.5t20-43 64-131.5 62-184q0-60-43-138t-43-131q0-87 77.5-133.5T1571 569q61 0 91.5 25t34.5 68l4 42q2 26 3 50.5t1 50.5q0 48 13.5 67t33.5 19q22 0 39-28.5t17-57.5q0-15-3-33.5t-3-35.5q0-24 15-40.5t57-16.5q37 0 105.5 57.5t108 149.5 39.5 203q0 121-51.5 220.5z"},"children":[]}]};exports.u1F356=u1F356;var u1F357={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2349.5 1012q-20.5 43-45.5 57t-39 47l-11 25q-20 43-57.5 69t-73.5 26q-63 0-115.5-22.5T1922 1191q-45 0-168.5 27.5T1616 1246q-23 0-35.5-8.5T1549 1206q-84 33-137.5 100t-87.5 234l-22 112q-27 133-99.5 283.5t-167.5 250T841 2330t-173 45q-196 0-317-168t-121-399q0-256 187-485t460-334 521-105h90q7-48 33.5-71.5t112.5-33 135.5-27 83-107.5 81.5-116 95-26q79 0 117 50t43 49 63 36 58 109q0 57 30 88.5t30 85.5q0 48-20.5 91zm-1366 338.5q20.5 18.5 42.5 18.5 17 0 35-16.5t18-45.5q0-27-24.5-52.5T1005 1229q-21 0-31.5 18t-10.5 40q0 45 20.5 63.5zM826 2157q14-14 14-34 0-33-31-61t-57-28q-20 0-32.5 15t-12.5 37q0 30 29.5 57.5T793 2171q19 0 33-14zm137.5-587q17.5-16 17.5-45 0-27-28.5-50.5T893 1451q-17 0-32.5 12t-15.5 34q0 29 26 59t54 30q21 0 38.5-16zm84.5 423.5q14-12.5 14-31.5 0-40-27.5-65.5T979 1871q-20 0-35 12t-15 34q0 30 26.5 59.5t58.5 29.5q20 0 34-12.5zm117-245.5q14-12 14-32 0-40-25-68t-54-28q-19 0-33 11.5t-14 34.5q0 32 23.5 63t54.5 31q20 0 34-12zm83.5-398.5Q1231 1328 1207 1328q-23 0-40.5 17t-17.5 41q0 23 16.5 43.5t42.5 20.5q23 0 40.5-15t17.5-40q0-24-17.5-45.5zm40-242.5q-23.5-19-52.5-19-20 0-35 12t-15 40 20.5 46.5 45.5 18.5q22 0 41-16.5t19-41.5q0-21-23.5-40zm964-225q-20.5-21-44.5-21-20 0-40 7t-42 7q-6 0-12-2.5t-6-10.5q0-11 35.5-22.5t53-31.5 17.5-51q0-24-20.5-42.5T2149 696q-23 0-43.5 29.5T2067 755q-6 0-10.5-3t-4.5-9q0-4 16-30t16-56q0-29-14.5-42t-40.5-13q-63 0-82 68.5T1879.5 791 1759 857l-59 12q-34 8-63 11t-51 8q-4 19-6.5 39.5T1577 973q3 96 13 119t36 54q24-4 127.5-29t173.5-25q42 0 97 23.5t87 23.5q26-2 46.5-28t20.5-50q0-26-35.5-34.5T2107 1005q0-14 15-14 20 0 35.5 5.5t35.5 5.5q43 0 61.5-25t18.5-57q0-17-20.5-38z"},"children":[]}]};exports.u1F357=u1F357;var u1F358={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2167 1874q-129 216-382.5 346.5T1242 2351q-258 0-483.5-107t-340-312.5T304 1480q0-378 280.5-669T1288 520q159 0 341 40t333 164.5 242.5 303.5 91.5 356q0 274-129 490zm30-487q0-154-77-309.5t-218.5-273-309-152T1288 618q-379 0-632 258t-253 603q0 64 9 128t25.5 119 38 102.5 50 91 55.5 74 61 61.5 62 45.5 64 37.5l-1-17q0-29 11.5-48.5T810 2053q43 0 52.5 60t44.5 85l60 18q30 9 62 15-3-10-5-20.5t-2-20.5q0-31 15.5-47t33.5-16q35 0 44 58t34.5 63.5 92.5 5.5q87 0 173-15 0-3 1-8-3-18-17-39t-49-55.5-118-109-164-162-127.5-121-60-51-38-34T803 1622q-9-12-9-30 0-25 14.5-50.5T849 1490l28-28 14-23q9-14 29.5-27t30.5-23l32-30 37-31h-1q43-35 76.5-79t96-91 89.5-76 60-48.5 97.5-66T1540 921q20 0 49 14t54.5 31.5T1745 1040t108.5 73 47.5 32.5 63 54.5l69 56 63 56q29 25 52 45.5t49 55.5v-26zm-842-560q8 9 8 17 0 18-26 30.5t-62 12.5q-53 0-73.5-38t-20.5-48q0-11 8-16t16-5q19 0 38.5 22t38.5 22q11 0 22.5-3t25.5-3q17 0 25 9zm563.5 135.5Q1903 974 1878 974t-46-7-48-34l-3-4q-5-5-9.5-14t-4.5-19q0-8 5.5-16t19.5-8q10 0 17.5 4.5T1824 887l13 12q16 15 56.5 22t40.5 22q0 8-15.5 19.5zm-992 62.5q-35.5 33-71.5 33-32 0-51.5-9t-19.5-25q0-30 41.5-33t64.5-30.5 46-27.5q12 0 19 12t7 23q0 24-35.5 57zM654 1326q-10-18-10-34 0-8 10.5-18t34.5-10q23 0 35 22t12 57q0 39-13.5 64.5T686 1433q-11 0-21-10.5t-10-21.5q0-10 4.5-19t4.5-21q0-17-10-35zm120 450q9 0 21.5 7.5T808 1810q0 17-16.5 27t-38.5 10q-28 0-69.5-17.5T642 1781q0-13 8-22.5t18-9.5 22 4l46 19q11 5 19 5z"},"children":[]}]};exports.u1F358=u1F358;var u1F359={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2143 1660q-84 140-336 354t-444 292.5-381 78.5q-280 0-444.5-178.5T373 1692q0-145 34.5-480T591 689.5 988 502q140 0 330 56t393 166.5T2011.5 929t156.5 209 59 236q0 146-84 286zm-136-591q-122-156-452.5-312.5T988 600q-212 0-332.5 165T511 1182l-28 285q-12 108-12 214 0 318 139.5 462T982 2287q75 0 159-15.5t170-47.5q26-32 26-74 0-86-96-213.5t-179.5-228T978 1563q0-34 49-65t55-36l220-159q111-80 227-145l37-20q19-10 40-10 40 0 96 66t118.5 140.5T1941 1512t58 176q68-85 99-157t31-157q0-149-122-305z"},"children":[]}]};exports.u1F359=u1F359;var u1F35A={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2192 1225q42 47 57 106t15 131q0 119-77 256t-195 234.5-241 154.5v56q0 116-103.5 176.5T1333 2400q-161 0-289-55.5T916 2183q0-11 1-24l2-23q-135-50-274-154.5T421 1732t-85-270q0-81 21-148t77-116q8-35 23.5-65t35.5-51v-21q0-66 39.5-124.5T629 850q20-72 66.5-119.5T822 665l15-25q23-42 71-73.5t128-37.5l39-2q24 0 36.5-13t57.5-31 117-18q44 0 76.5 13t63.5 13l28-1q75 0 135 22.5t108 80.5q56 8 104.5 36t75.5 70 38 56q25 9 47 23t39 33 36 53.5 24 69.5l9 53q25 23 45.5 55t28.5 77l2 13q0 6 1 12 17 23 28.5 42t16.5 39zm-96 130v-26q-3-84-32.5-108.5T2034 1165q-2-65-38.5-94t-36.5-65.5-16.5-80.5-66.5-65l-18-8q-22-10-51.5-58.5t-57-67-71-23.5-68.5-39-66.5-46.5T1439 605t-92.5-14-60.5-14q-77 0-113.5 32t-118 30.5T932 700l-19 28q-8 11-22.5 24T839 778l-27 9q-22 8-40.5 25T742 868l-11 37h-1q-10 34-37.5 39T636 982.5t-32 80.5q0 65-32 97t-32 90q0 37-19.5 65t-19.5 52q0 58 68.5 126t277 144.5T1301 1714q36 0 72-2t71-5q5-7 13-12l13-7q12-8 20-19l15-21q3-5 19.5-38.5t39.5-33.5q21 0 33.5 20.5t12.5 49.5q0 9-2 22.5t-5 16.5l31-7q203-42 300.5-99.5T2064 1461t32-106zm-440.5-437q13.5 27 13.5 43 0 30-29.5 60.5T1569 1052q-16 0-33-13t-17-29q0-21 29-33.5t40.5-49T1622 891q20 0 33.5 27zm-40.5 417q-27 30-63 30-19 0-37-12t-18-29q0-26 27-41t33-33l9-24q4-12 11-21t22-9q23 0 33 17.5t10 40.5q0 51-27 81zm-302.5 281q-25.5 30-63.5 30-20 0-37-11.5t-17-28.5q0-23 16-34l30-20q13-8 21-41t34-33q23 0 32.5 17.5t9.5 39.5q0 51-25.5 81zm576.5-472.5q8 15.5 8 51.5 0 39-18 67.5t-52 28.5q-14 0-33.5-11.5T1774 1252q0-10 7-20t16-21l18-20q14-15 15.5-39t32.5-24q18 0 26 15.5zm-13 280q8 14.5 8 45.5 0 42-17.5 71.5T1815 1570q-17 0-35-11t-18-26q0-10 7-20.5t16-20.5l18-20q8-10 11-18t3-18q0-8 7.5-17.5t26.5-9.5q17 0 25 14.5z"},"children":[]}]};exports.u1F35A=u1F35A;var u1F35B={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2332 1924q-156 174-433.5 276T1300 2302q-322 0-599.5-102.5t-433-275T112 1547q0-118 50.5-220.5T307 1134q22-33 48.5-58t52.5-41l6-3q19-80 97.5-135T670 842q6 0 11 1 37-44 86-65t110-21l64 1 10-7q16-57 115-92.5t201-35.5h29l29 2q34-18 69-23t58-5q81 0 144.5 30.5T1695 710q46 15 85.5 35.5T1859 793q22-3 44-3 117 0 199.5 63.5T2192 1027l28 21q13 11 24 27l9 13q4 7 71.5 75t115.5 169 48 215q0 203-156 377zm38-423.5q-3-23.5-10-46.5-11 74-32.5 118.5t-50 71-94 65.5-93 69.5-93 62T1880 1893t-149.5 39.5-139.5 31-91 22.5l-37 8q-18 4-38 4-41 0-84.5-5t-85.5-22l-8-4q-13 7-31 14t-41 12l-8 2q-20 4-43 7.5t-49 3.5q-51 0-93-17t-81-52q-10 0-22 1l-23 1q-86 0-144.5-29t-89.5-79q-121 0-194-69.5T352 1589q-48-36-68.5-79t-20.5-91q0-19 3-37-19 40-29 81t-10 84q0 166 143 315t390 237 540 88q284 0 530-85t394.5-233 148.5-322q0-23-3-46.5zM494 1118l-27 16q-39 25-63.5 60.5T379 1262q0 19 6.5 35t6.5 31q0 22-6.5 45t-6.5 44q0 49 44.5 78t44.5 63l-1 28q0 48 35 86.5t114 43 87.5 28.5 44 52 108.5 28q20 0 39.5-2.5t33.5-2.5q23 0 37.5 20t45.5 36 63 16q18 0 53.5-6.5t48.5-12.5l23-11q11-6 22-10.5t23-4.5q14 0 29 6t25 6q42 0 70-43t28-100q0-37-21-96t-21-187q0-79-39-124.5t-43-103.5l-2-27q-7-54-61.5-122T1148 936l-5-30q-7-33-25-57.5t-48-24.5q-21 0-32 5.5t-18 12.5l-15 15q-7 8-19.5 12.5T963 874l-23 1q-14 0-27-1l-28-2h-8q-71 0-106.5 44T705 960q-11 0-20-1.5t-19-1.5l-10 1q-36 5-79 34t-52.5 72-30.5 54zm1331 404.5q-19-19.5-55.5-37.5t-70.5-18q-35 0-59 36.5t-24 76.5q0 48 48 80.5t102 32.5q48 0 63-25.5t15-84.5q0-41-19-60.5zM1459 1206q0 44 15.5 70t46.5 26q19 0 110.5-24.5t91.5-72.5q0-51-30.5-86.5T1623 1083q-17 0-35.5 4.5t-34.5 9.5l-14 4q-41 12-57.5 30.5T1459 1206zm684.5 255.5q44.5-16.5 44.5-51.5 0-78-31-113t-109-35q-11 0-20 1l-20 2q-32 6-56.5 47.5T1927 1398q0 37 22 58.5t76 21.5q74 0 118.5-16.5zm-300-545.5q-19.5 11-36.5 41.5t-17 62.5q0 44 44.5 80t105.5 36q56 0 97-24.5t41-69.5q0-64-49.5-100.5T1903 905q-40 0-59.5 11zm-483-175q-37.5 29-37.5 91 0 32 68.5 65.5T1556 931q36 0 48-23t12-59q0-52-17-76.5t-57.5-42.5-89.5-18q-54 0-91.5 29zM773 1506.5q7-10.5 16-21.5l18-20q14-15 17.5-41t32.5-26q18 0 26.5 17t8.5 52q0 39-17 68.5t-55 29.5q-17 0-35.5-10.5T766 1527q0-10 7-20.5zm301-70q7-10.5 16-21.5l18-20q16-18 18-42.5t32-24.5q18 0 26.5 17t8.5 45q0 47-18.5 77t-51.5 30q-2 0-4-1t-4-1q-16 0-32-11t-16-27q0-10 7-20.5zm-68 285q7-10.5 16-21.5l18-20q15-18 17.5-41.5t30.5-23.5q18 0 27.5 16t9.5 52q0 40-19.5 68.5T1053 1780q-17 0-35.5-10.5T999 1742q0-10 7-20.5z"},"children":[]}]};exports.u1F35B=u1F35B;var u1F35C={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2219 1750q-81 174-223 300t-280 186q0 12-1 23.5t-1 20.5q-2 92-116 142.5t-271 50.5q-147 0-264.5-50T945 2278v-15q-161-58-313-185t-242-297-90-339q0-243 135-405t396-250h20q11 4 16.5 13t5.5 19q0 30-30.5 38.5t-116 48-154 94.5-114 122.5-65 133T371 1400q25-184 282.5-308.5T1268 959q38-29 83.5-46t93.5-17q39 0 77.5 13.5T1592 952q57-23 116-23 72 0 129.5 37t77.5 101q70 30 84.5 33t89.5 63 93.5 84.5 31.5 47.5q-33-145-135.5-249T1775 861l-21-13q-10-5-10-18 0-21 11.5-30t23.5-9q39 0 197.5 89t241 231.5T2300 1420q0 156-81 330zm-98-452q-2 16-6.5 26t-8.5 24q19 0 42-8-5-11-13-23zm-31 130q-13 0-26 1h-27q-11 8-22 14l-22 13q10 0 18 5h6q157 0 157-11t1-15l-1-20q-20 5-41 9t-43 4zm57 107l-41 2 21 25q5-6 10-13zm-225 180l45-23q-44-44-91.5-74t-82.5-37-124-7q6 10 11 14l20 19q74 5 137.5 43t84.5 65zm-79 33q-25-20-51.5-35.5T1738 1691h-5q-3-2-11-2 8 22 12 45t6 46q26-6 53-15zm21-224q50 21 92.5 54.5t77.5 71.5l21-15q10-7 19-15-46-53-89-72.5t-121-23.5zm-346.5-25q14.5 11 38.5 11 31 0 60-5t62-16l110-37q63-21 122-43.5t96-58.5 37-69q0-59-47.5-92.5T1886 1155q-66 0-134.5 39.5T1624 1292t-90 96.5-31 77.5q0 22 14.5 33zm-18.5 78q37 43 58.5 100.5T1584 1814l79-15q-3-49-20-97t-61-114h-7l-6 1q-18 0-36.5-2t-33.5-10zm6 247q-2-38-10-77.5t-25-73.5q-8 20-20 38t-25 33q19 41 22 85l30-2q14 0 28-3zm-145-487q26 11 44 27t36 34q18-57 145.5-178t250.5-139q0-11-34-42.5t-94-31.5q-65 0-135 46.5t-138 150-75 133.5zm-226-15q23-6 46.5-9.5t48.5-3.5q14 0 28 1t28 4q16-54 65-129.5t80.5-110T1519 996q-31-20-74-20-90 0-171.5 85.5T1134 1322zm-3-277q14 18 25 42 0-3 3.5-9.5t9.5-13.5l20-24zm-131 730.5q45 33.5 110 33.5 113 0 210.5-74t97.5-180q0-71-52.5-119.5T1229 1387q-113 0-193.5 87.5T955 1688q0 54 45 87.5zm368 57.5q0-13-5-31l-27 17q-13 8-25 16 14 0 28.5-1t28.5-1zm-330-775q-20 2-38 5.5t-36 8.5q39 46 64.5 101.5T1062 1289l21-52q10-27 22-53-12-75-67-126zm-204 46q39 46 60.5 99.5T916 1310q0 32-7 61.5t-16 61.5l66 8q0-8 5-14t11-10q5-10 9-31t4-35q0-75-29.5-142T875 1092zm44 584l-1-19q0-30 5-58t14-56q-59 16-106.5 61T720 1724l36 14q17 7 36 13 38-41 86-63zm-227 0q23-60 65.5-109t101.5-77q-25-2-47.5-9t-45.5-15q-51 4-91.5 56T589 1651l30 19q15 10 32 18zm227 90l13 4q7 2 14 3-3-4-5-9l-4-9zm-126-645q-5 3-11 5l-11 5q0 47 26.5 85.5T836 1280q-11-42-31.5-81.5T752 1133zm-136 69q0 5-1 11l-1 11q0 72 56.5 127t140.5 70q13-23 22-62-75-12-119-58.5T655 1180q-11 5-20 11t-19 11zm-33 168q-31 15-67 54t-54 79q8 23 21.5 45t35.5 43q13-48 43-92.5t74-72.5q-30-24-53-56zm-75-79q-17 20-28.5 40t-19.5 41q21-22 41.5-40t46.5-32l-5-20q-3-9-5-19-8 7-15 14zm1698 300q-103 146-344 234t-550 88q-378 0-649.5-129.5T371 1467q2 118 69 255.5T603 1956t194.5 157.5 158.5 77 60 86.5q0 54 92.5 90t218.5 36q123 0 219-35.5t98-90.5l1-19v-22q0-50 67-75.5t187.5-121.5 198-216.5T2206 1591zm-1058.5 44.5Q1107 1602 1107 1557q0-47 39.5-78t93.5-31q49 0 80.5 29.5t31.5 80.5q0 46-30 78.5t-81 32.5q-53 0-93.5-33.5zM891 629q-24-42-31.5-71t-7.5-66q0-92 59.5-177.5T1029 229q29 0 29 30 0 20-8 29t-26.5 57-18.5 100q0 61 45.5 179t2.5 193.5-80 75.5q-8 0-17-8t-9-24q0-14 4.5-29t7.5-29q0-39-11.5-67T918 676zm626-316q61-84 116-84 29 0 29 30 0 20-14.5 43.5t-26 62T1610 448q0 56 34 145t34 142q0 58-36.5 108t-64.5 50q-8 0-16.5-8.5T1552 859q0-18 5.5-37t5.5-33v-15q-3-39-36-90.5t-52-92-19-100.5q0-94 61-178zm-315.5.5Q1262 229 1318 229q29 0 29 30 0 20-8 29.5t-26 56.5-18 100q0 60 34 150.5t34 147.5q-8 72-45 111t-56 39q-8 0-17-8t-9-24q0-15 5-30.5t7-27.5q0-69-53.5-147T1141 492q0-94 60.5-178.5z"},"children":[]}]};exports.u1F35C=u1F35C;var u1F35D={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1193 1017v200q39-6 84-6 30 0 59 3.5t54 8.5l45 11q22 6 44 10t44 4q98 0 175 22t132.5 59.5 62.5 36 59 28.5 93 73q23 25 40 52 102 72 163.5 160.5T2310 1874q0 153-133.5 282.5t-371 204T1297 2435q-266 0-501-72.5T423.5 2161 286 1874q0-66 22-118.5t57.5-99 37-55.5 24.5-41.5 51.5-51T526 1461t43-53 60.5-44 88.5-26V996q-53-53-76.5-116T618 742q0-85 46-144.5T786 538q14 0 31 2l28 5q14-8 35-16t47-9h7q17 0 32 3.5t24 6.5q13-8 37.5-16.5t53.5-8.5q58 0 106.5 28t75.5 75q36-4 66-14.5t72-37.5l43-28q52-31 156.5-57.5T1870 415l114-21q57-10 113-23l53-13q26-6 54-6 43 0 76.5 19t33.5 55q0 46-56.5 57.5T2140 505l-84 15q-52 10-163 26.5T1703 589t-126.5 54-129.5 95l-59 49q-30 24-63 43 0 73-34 124t-98 63zm-453 620q-64 25-92 80t-28 122q0 56 22.5 113.5T692 2025t104 23q-28-44-44-92.5T736 1855q0-71 21-106.5t29-43.5l-19-35q-10-18-27-33zm-232.5 149.5Q538 1822 542 1827q3-66 27-126.5t80-103.5q-18-12-30.5-28.5T590 1537q-21 30-50 47.5t-46 52.5-17 72q0 42 30.5 77.5zM1963 1709q38 19 74.5 45t58.5 61q15-10 24.5-35.5t9.5-44.5q0-38-27-68t-66-59q-14 18-30.5 46t-43.5 55zm-94 48q-5 2-11 2h-11q17 37 27.5 77.5t10.5 82.5q0 44-14 85 50-10 69-18.5t55.5-45.5 40.5-72q-8-18-29-36.5t-49-35.5l-44-25q-25-14-45-14zm-364 463q-41 0-68-5.5t-45-5.5l-7 2q-34 3-75 11t-81 8q-87 0-158.5-23t-98-36-137-19.5-170.5-30-97-58-56-71-25-64-40.5-62.5-49.5-66q-12 36-12 74 0 119 120.5 227t334 172 457.5 64q251 0 460.5-63t331.5-172.5 122-227.5q0-11-1-23.5t-4-23.5q-19 37-39 55.5t-41 30.5q-20 72-90.5 126t-136.5 60-92.5 29.5-83 57.5-218.5 34zm-637.5-722q-27.5 23-27.5 54 0 25 49.5 53.5T981 1634q29 0 55.5-23t26.5-51q0-30-42-57.5t-90-27.5q-36 0-63.5 23zM990 1246q13-2 29.5-3t48.5-1h23.5l22.5-3v-216q-27 17-58 23t-66 6v194zm-38 558l1-13q-29-3-57.5-8.5T841 1763q-14 18-20 41.5t-6 50.5q0 55 25 110t63 92q5 0 9 1t10 1l15-3q19-3 56.5-14.5t64.5-22.5q-47-34-77-90t-30-111q0-7 1-14zm190 167q40-28 62.5-61t22.5-65q0-16-5-30l-4-6q-45-10-91-11l-94-2q-4 8-4 22 0 50 39.5 101.5t73.5 51.5zm-230-919q-11 3-22.5 5t-22.5 2q-17 0-35-3.5t-36-9.5v281q32-11 59.5-26.5T912 1271v-219zm880 784.5q-14-41.5-36-82.5l-16-1q-22 0-39 7l-34 16q14 38 23 79t9 83q0 48-13 91t-42 82q59-17 110.5-66.5T1806 1919q0-41-14-82.5zM1587 1392q0 3-1 5 0 29 40.5 70t72.5 41q29 0 52.5-15.5t23.5-44.5q0-36-38-67.5t-79-31.5q-23 0-43.5 10t-25.5 27zm8 420q-25 8-53 13.5t-54 9.5l2 17v19q0 64-21 127t-69 114q26 0 50 5t50 5q67-27 93-74t26-110q0-31-6-63.5t-18-62.5zm-262-231.5q8 13.5 19 28.5l16 23q13 19 32.5 29.5t46.5 10.5q37 0 63.5-15.5t26.5-40.5q0-43-39.5-76t-79.5-33q-30 0-61.5 13t-31.5 34q0 13 8 26.5zm77 257.5q-28 0-54-4.5t-52-9.5l1 21q0 80-69.5 150T1063 2101q45 17 88 23.5t94 6.5q81-38 123.5-107.5T1411 1863q0-17-1-25zm-220-500q-44 3-84 17.5t-40 41.5q0 28 18 47t42 19q30 0 76-12.5t63-16.5 17-23q0-29-18-51.5t-46-22.5zm-23-416q28 0 43.5-25.5T1226 827q0-84-38-153.5T1081 604q-14 0-24.5 4.5T1036 618l-20 9q-10 5-22 5-15 0-29-7.5t-31-7.5-42 14.5-40 14.5q-12 0-30.5-4.5T789 637q-31 0-52 24.5T716 742q0 68 39.5 143T867 960q24 0 33.5-19t9.5-47q0-45-16-91t-16-65q0-11 5.5-19t13.5-8q29 0 59 64t30 130l-1 37q0 9 6.5 10.5t13.5 1.5q35 0 58-20t23-58q0-28-6-55t-11-42l-14-48q-3-10-3-15 0-11 5.5-18.5t16.5-7.5q3 0 8 1t8 6q31 20 54.5 81t23.5 127z"},"children":[]}]};exports.u1F35D=u1F35D;var u1F35E={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2209.5 2100.5Q2179 2135 2128 2143l-617 179q-7 5-27.5 8t-32.5 3l-11 1q-17 0-144.5-5.5T942 2305l-222-18q-111-9-221-16-51 0-79-36.5T392 2134q0-148 14-324t23-232 31-118l21-56q10-27 10-49 0-32-36.5-55.5t-66-72.5-29.5-117q0-102 68-189.5t194-141 288.5-107 328-85.5 276.5-32q308 0 506.5 138.5T2219 993q0 104-59.5 158t-59.5 57q2 28 33 84t42 106.5 11 98.5 15.5 213.5 27 212 11.5 84.5q0 59-30.5 93.5zm-728.5 21q-11-39.5-25-201.5t-19-240-22-108.5-40-81-23-94.5q0-27 12-48t36-43l19-16q35-28 43.5-47.5t8.5-55.5q0-74-83.5-161.5t-223-135.5T865 841q-168 0-288.5 75T456 1110q0 60 43.5 97.5T566 1280t23 75q0 49-28.5 116T523 1626l-16 145q-8 81-12 160.5t-4 160.5v49.5l5 31.5q113 7 226 16l224 19q111 9 222.5 16t222.5 10q12 0 24 1t25 1q31 0 41.5-7t10.5-33q0-35-11-74.5zM1601 893q-35-36-67-36-9 0-23.5 7.5T1496 886q0 6 13.5 24.5T1537 951t30 33.5 32 11.5q14 0 25.5-10t11.5-26q0-31-35-67zm182.5-37.5Q1749 820 1717 820q-13 0-25 8.5t-12 20.5q0 9 33.5 60t67.5 51q14 0 25.5-9.5T1818 923q0-32-34.5-67.5zm152-35Q1901 785 1869 785q-14 0-26.5 8t-12.5 22q0 6 14 25t27 40.5 29 33 32 11.5q14 0 26-9.5t12-27.5q0-32-34.5-67.5z"},"children":[]}]};exports.u1F35E=u1F35E;var u1F35F={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2163 431l20 13q20 14 34.5 39.5T2232 542v12q0 7-2 13v2q-9 84-49 190.5T2133 891q32 24 44 55t12 56q0 36-16.5 76.5T2120 1194l-36 73q12 9 19 17.5t7 14.5-15 79.5-31 130.5l-22 77q-14 48-64.5 264t-74 286-41.5 143.5-51 73.5q-21 0-40-10t-169-22.5-286-12.5q-129 0-274 12.5T879 2343t-39 10q-32 0-50.5-74.5t-38-132.5-61.5-228-60.5-251.5-42-157T552 1352q-2-11-6-23.5t-4-23.5q0-19 16-31.5t38-17.5q-34-74-108-216.5T379 783l-7-28q-4-16-4-33 0-63 50.5-103.5T544 578q47 0 85 26.5t58 62.5l28 47 11 17q-6-60-10.5-120T711 489v-10q0-6-1-22 0-98 49.5-140T905 275q69 0 109 65.5t60 260.5l4-69q2-34 7-69l1-10q5-97 50-139.5t126-42.5q68 0 105 28t47 79l1 2q11 49 14.5 96.5t3.5 95.5v130l11-4q7-50 19-95.5t26.5-102 30-96 55-71.5 111.5-32 111.5 40 39.5 104v20q-3 77-15 150.5T1795 767q21-59 45-117t52-115l5-9q31-72 66.5-98t77.5-28h7q33 0 63 10t52 21zm-899 1015q-4-30-23-262.5T1205 877t-24.5-81-22.5-7q-37 0-55.5 20.5T1084 880l-1 72q0 28 3 54.5t3 38.5v23l6 69q7 65 15 180.5t8 123.5q23 3 60.5 4t85.5 1zm571-479q0-10 1-18 0-19-26-34t-55-15q-6 0-8 1.5t-27.5 42.5-54.5 131l-36 108-93 256q15 0 31-4t28-4q58-14 86.5-39t41.5-65l6-22q6-21 13-35t17-22q22-65 37-126.5t37-136.5zm-283-114q0-5 1.5-11t1.5-12q0-19-17.5-25.5T1505 798q-33 0-47.5 18.5t-35 61.5-48.5 143l-29 102q4 38 7 78l6 82q3 41 6.5 81.5t8.5 77.5l23-1 37-129 34-107q32-97 49-169.5t24-112.5zm-547 558q-26-241-59-381t-45-161-38-21q-48 0-58.5 12T794 920q0 41 4.5 80t11.5 77l15 78q7 39 12 80 54 0 69 28.5t26.5 71.5 72.5 76zm-294-167q4-2 9-2h9q-6-41-24.5-140T686 912q0-19 2-29-48-80-80.5-138.5T544 686q-29 0-48 10t-19 26q0 6 2 13l4 15q40 123 118.5 275.5T711 1244zm112.5-649.5Q829 667 837 741q6 0 12-1t14-1q44 0 73.5 17.5T985 800l4-13-14-98-14-116q-12-104-25.5-143.5t-18-43T904 383q-50 0-68 13t-18 54q0 72 5.5 144.5zM1312 868q3-7 7.5-16t6.5-18q0-48-1.5-93t-1.5-92q0-19 1-37t1-37l-3-86q-2-28-7.5-62.5t-15-41-37.5-6.5q-60 0-64.5 49.5t-10.5 108-6 146.5q46 6 76.5 36.5T1306 835zm810-311l2-9q0-3 1-6 0-10-27.5-22t-51.5-12q-22 0-40 40t-53 117-68 172q21 13 36 35 12-12 33.5-23.5T2007 837h15l15 2q0-5 38.5-105.5T2122 557zm-567 123q0 5-1 8.5t-1 8.5q52 12 81 50.5t29 85.5l8-9q20-91 36.5-181.5T1729 460q0-32-10.5-41.5T1686 409q-56 0-71 50.5t-24 79.5-18 76l-10 33q-5 16-8 32zm501 287.5q-25-22.5-49-22.5-9 0-26.5 19t-32.5 43l-15 23-4 13q-11 50-24.5 98.5T1877 1238q20 5 44.5 6.5t49.5 1.5q33-60 71.5-141.5T2081 1004q0-14-25-36.5z"},"children":[]}]};exports.u1F35F=u1F35F;var u1F360={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2260 2202.5q-76 18.5-65 14.5l-58 18q-81 25-128 28t-137 16-173 13q-428 0-779-188t-508-407l-33-45q-27-35-27-42t-13-18.5-35-57.5-32-114q-6-35-6-67v-20q0-9-1-19t-1-21q7-112 17.5-138.5t35-77 30.5-81 35.5-81.5 71-97T561 724q89-63 215-110t236-47l17 1q31 0 65 2.5t73 2.5q82 0 142.5 29t84 56 69.5 64 118.5 114.5 116 116.5 115.5 136.5 141 227 78.5 152.5 25 93 50 111.5 44.5 75.5q77 268 130.5 304t53.5 72q0 59-76 77.5zM1299 1906q-41-46-136-46-47 0-73 12t-26 34q0 16 28 26t65 14l28 3q27 5 52 42.5t53 37.5q18 0 34-12.5t16-34.5q0-30-41-76zm121-1009q-12-44-49-93t-49-64-56-35.5-107-20.5q-36 0-71.5-3t-72.5-3q-119 0-261 64.5T538.5 888t-85 139-45 114.5T375 1292q0 143 43.5 217.5T566 1632t198 48q78 0 219-42t257-152 154-286 38-221q0-38-12-82zm299.5 977.5Q1680 1836 1634 1836q-24 0-50 18.5t-26 42.5q0 38 50 44t66 21l17 17q9 9 17.5 15.5t17.5 6.5q10 0 21.5-11.5t11.5-31.5q0-45-39.5-83.5zm35.5-336q-11-13.5-26-25.5l-29-23q-24-18-34.5-65.5T1622 1377q-18 0-27 20t-9 55q0 78 34.5 116t101.5 38q17 0 30.5-8.5t13.5-28.5q0-17-11-30.5zm313 497.5q-24-16-37-72.5t-50-56.5q-14 0-26 10t-12 30q0 57 35 99t92 42q10 0 16-5.5t6-13.5q0-17-24-33z"},"children":[]}]};exports.u1F360=u1F360;var u1F361={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2115.5 2390.5Q2091 2409 2063 2409q-19 0-40.5-15.5T1968 2339l-31-35q-58 34-124 54t-132 20q-101 0-178-48t-117.5-138-40.5-165q-119 0-206.5-53.5t-135-156T956 1630q0-5 1-10v-6q-152 0-251-64.5t-150-180-51-204.5q0-112 35.5-205.5T636 798l-41-46q-21-25-78-83.5T460 566q0-33 27.5-61.5T552 476q31 0 57 18t49 49l25 34 87 113q60-33 134-55.5t152-22.5q195 0 340.5 132.5T1542 1065q0 20-1.5 46t-7.5 46q142 31 237.5 139t95.5 250q0 19-3.5 38t-3.5 37q124 30 202.5 124.5T2140 1958q0 59-25 133t-67 123l32 39q16 19 38 41t22 49q0 29-24.5 47.5zm-681-477q33.5-14.5 62.5-24t74-55 72.5-122.5 27.5-155q0-108-44.5-190T1505 1255q-40 107-103 169.5T1248.5 1535t-192.5 68v14q0 7-1 15 0 55 32.5 133t97 120.5T1341 1928q60 0 93.5-14.5zM701 873q-45 57-71 131.5T604 1168q0 52 29 132t79.5 129 108 67 95.5 20 123-33 153-99.5 104.5-149.5 36.5-181q0-120-82-231.5T1053 710q-60 0-119 17t-105 42q20 22 38.5 47.5T886 866q0 34-28.5 55.5T797 943q-33 0-63-33.5T701 873zm743 1162q0 40 25.5 105t78 102 133.5 37q116 0 199.5-88.5T1964 1990q0-76-38.5-148T1823 1735q-33 81-79 125.5t-123.5 89.5-176.5 66v19z"},"children":[]}]};exports.u1F361=u1F361;var u1F362={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1889 1936q34 42 68.5 83t68.5 83l26 33q12 16 26 30l38 40q19 21 19 49 0 21-22.5 40.5T2063 2314q-23 0-47-19t-110-116.5-121-132.5l-109 121q-102 115-198 174t-194 59q-151 0-250.5-112T934 2068q0-75 38-142t95-126q-74-26-125.5-79T858 1599q-42 32-81 51.5t-84 19.5q-94 0-181-68t-104.5-142-36.5-251.5T352 821q0-156 40.5-232T509 481.5 747 450q61 0 252 12t297 55 186 108 80 153q0 47-27.5 97T1455 977q93 29 159.5 88t96.5 156q50-36 107.5-56.5T1936 1144q123 0 217 89t94 207q0 108-102.5 224.5T1889 1936zm63-207q43-46 119.5-131t76.5-155q0-67-57.5-133.5T1936 1243q-55 0-109 23.5t-98 66.5l2 25q0 12 1 25 0 149-55 239.5t-174 148-266 57.5q-14 0-26-1l-26-2q-77 68-115 128t-38 116q0 66 42.5 117.5t90 83.5 119.5 32q75 0 155-52t183-172zm-633-753l51-53q42-43 68.5-80t26.5-65q-19-22-71.5-34T1245 732q-36 0-72-1l-155-4q-42 0-90-1-122 0-173 13.5T681 794t-23 130q0 136 18 282t28 245 54 99l73-58q68-53 251.5-256.5T1319 976zm134 595q-9-6-32-6-35 0-61 12t-26 34q0 8 6.5 16t19.5 8q12 0 22-5t21-5l15 1h7q10 0 23.5-12t13.5-26q0-11-9-17zm24.5-218.5q22.5 25.5 55.5 25.5 19 0 28-10.5t9-21.5q0-22-17-33t-23-22l-13-22q-6-10-12.5-18t-16.5-8q-12 0-22.5 13.5T1455 1293q0 34 22.5 59.5zM450 860q1 33 1 65 6 0 13-3.5t13-3.5q20 0 34 14.5t14 32.5q0 12-11.5 25t-36.5 13q-6 0-12-1.5t-11-3.5q5 141 21.5 264.5t25 165 52 84T659 1567q-23-34-27-69l-9-63q-14-128-28.5-253.5T580 924q0-84 16-131t42-75 63-44 131-23l88-2q43 0 87-1 59 0 190.5 4t164.5 9q-66-47-165-73.5T992 561q0 20-13 34.5T940 610q-18 0-25.5-11t-7.5-22q0-6 1.5-11.5T912 555q-42-3-83.5-5t-81.5-2q-119 0-178 18.5T479.5 638 449 795q0 32 1 65zm668 630l-1 13q0 17 4 27.5t13 10.5q20 0 34-23t14-56q0-34-24-52.5t-72-18.5q-28 0-28 19 0 24 30 37.5t30 42.5zm75 562q56 9 103 45.5t47 83.5q0 28-16 47t-49 19q-32 0-57.5-18.5t-33-52.5-49-52.5-41.5-43.5q0-14 21.5-21.5t51.5-7.5h14zM786.5 849.5Q798 830 821 830q21 0 30 14t9 32q0 24-14 48t-32 24q-15 0-27-17t-12-39q0-23 11.5-42.5zM1034 935q-20-2-36-16.5T982 887q0-8 8.5-20.5T1019 854q18 0 34.5 13t16.5 31q0 20-8 28.5t-28 8.5zM559 715.5Q548 703 548 680q0-20 9.5-36t26.5-16q20 0 31 14.5t11 35.5q0 27-15.5 38.5T582 728q-12 0-23-12.5zm329.5 393Q902 1122 902 1139q0 13-11 26t-36 13q-20 0-34.5-12.5T806 1136q0-18 14-29.5t35-11.5q20 0 33.5 13.5zm105-21Q985 1071 985 1051q0-17 8-31t25-14q20 0 30 15.5t10 32.5q0 15-10.5 32.5T1018 1104q-16 0-24.5-16.5zM532 1323q-9-16-9-36 0-18 8-32.5t25-14.5q20 0 30 15.5t10 33.5q0 16-10 33t-30 17q-15 0-24-16zm671.5-484.5q10.5-6.5 24.5-6.5 20 0 37 12.5t17 32.5q0 16-11 32t-31 16q-16 0-31.5-24t-15.5-40 10.5-22.5zm-346 510.5q-12.5 12-31.5 12t-36-10.5-17-26.5q0-19 17-29t38-10q15 0 28.5 7t13.5 25q0 20-12.5 32z"},"children":[]}]};exports.u1F362=u1F362;var u1F363={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2301 1654q14 61 14 123 0 151-77 247.5t-282 223-355.5 178T1305 2477q-110 0-260-36t-203.5-124-53.5-217q0-22 1-42.5t5-42.5q-54-5-87.5-45.5T673 1869q0-51 22-103t61-96q-228-29-306.5-116.5T371 1295q0-17 2-25-69-23-101-75.5T240 1078q0-78 38.5-150.5T447 765l68-47q219-158 444-243.5t414-85.5q72 0 159.5 14t278.5 72l46 16q77 27 102.5 78.5T1985 692v71q0 31-19.5 58.5T1890 880q9 48 9 101 0 54-11.5 107.5T1848 1189q206 21 307.5 73.5t153 117T2360 1517q0 37-15 75t-44 62zm-85.5 93q-1.5-19-3.5-37-42 19-80.5 37t-75.5 36l-71 36q-103 52-114.5 55.5t-172.5 94-199 109-84 18.5q-92 0-212-40.5T894 2015q-9 42-9 85 0 72 22 130t64 81 142.5 46 191.5 23q208 0 436.5-123t352-224 123.5-249q0-18-1.5-37zM625 1541l47 11q46 12 89.5 19.5T842 1582q86-75 236-169t249-129q0-29-1-57t-4-57q-26 16-76.5 42.5t-94.5 55-97.5 51.5-96.5 34.5-102 11.5q-97 0-235.5-34.5T470 1293q-2 4-2 11 0 60 17 114t45 80 95 43zm420-992q92 7 222 46.5t162 57.5l34 17q64-28 139-59t156-49q-97-31-191.5-53.5T1373 486q-84 0-167 18.5T1045 549zm841 142l-2-42q-7 0-19-1-59 0-139.5 24.5T1538 744q16 21 27 59t19 111q175-92 238.5-114.5T1886 763v-72zM970.5 1813q43.5-1 87.5-1 74 0 206.5 41.5T1427 1895q84 0 200.5-93t300-170.5T2177 1550t66-31q0-18-17-25.5t-40-7.5q-65 0-180 35t-243.5 103.5-211 128T1440 1812q-46 0-107-22t-149-38-162-16q-83 0-126.5 13t-43.5 39q0 17 13.5 21.5t30.5 4.5q31 0 74.5-1zm774.5-646q27-32 41-79t14-100q0-17-1-35t-3-35l-10 4q-51 24-100 49.5t-97 51.5l-1 95q0 22 1 43.5t1 44.5q33-8 66.5-12t68.5-6zM716 703q-98 57-171.5 110T419 914l37 7 167 34q205 43 230 53.5t44 10.5q6 0 9-1l6-1q52-33 109.5-81t114.5-84l68-44q-41-26-116-42t-193.5-40.5T731 701q-4 0-7 1t-8 1zm224 554.5q32-8.5 91.5-35T1189 1137l121-73q-8-59-15.5-102t-24.5-78q-40 23-76 49t-72 53l-75 57q-34 25-73 50t-77 25q-35 0-80.5-17t-140-35-184.5-39-140-21q-8 18-11 36.5t-3 35.5q0 84 72 100.5t211.5 52T855 1266q53 0 85-8.5z"},"children":[]}]};exports.u1F363=u1F363;var u1F364={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2321.5 980.5q-37.5 50.5-88 85T2129 1133l-50 31q-25 16-51 27 17 25 23.5 50t6.5 51q0 36-13.5 67t-38.5 50q-3 46-25 78t-60 48q-16 43-44.5 77.5T1814 1662q-3 19-22.5 76t-44.5 85-50.5 44.5-56.5 23.5q-8 57-60.5 106.5T1465 2054l-5 10q-26 53-76 79t-128 26q-29 35-65.5 54t-69.5 19q-10 0-18-1l-15-2-15-1q-24 31-67 48t-87 17q-26 0-47.5-5.5T834 2283q-14 9-35.5 18t-44.5 9q-52 0-96-16.5t-70-47.5l-21 1q-62 0-109.5-29t-64.5-86q-40-8-68.5-46t-28.5-85q0-8 1.5-16t1.5-19q-29-23-44-56.5t-15-70.5q0-63 31.5-115t75.5-73q6-64 52-110.5t109-46.5q45 0 87 15 21-22 51-33t60-11q40 0 75 19 29-26 68-43.5t79-17.5q26 0 49 8 16-29 55-49.5t78-20.5q20 0 33 1t27 6q6-10 14-17l15-13 5-6q27-27 65.5-38.5t71.5-16.5q10-38 41.5-68.5t75.5-39.5q10-35 35-63t67-45q17-44 52.5-70t78.5-26q8 0 20 2.5t26 2.5q0-10-1-32 0-176 60.5-284T1939 546q28 0 52 21t45 21q14 0 34.5-10t35.5-10q63 0 121 41.5t58 97.5q0 22-7.5 36.5T2270 766q0 13 27 17t44.5 29 17.5 61q0 57-37.5 107.5zM1876 840q-6 29-6 54 0 17 4 27.5t15 10.5q27 0 59-56.5t32-102.5q0-20-9-34t-26-14q-20 0-37.5 26.5T1885 799zm56 525q29-3 42.5-25t13.5-49q0-30-19-57.5t-19-47.5l1-32q0-41-30-53.5t-37.5-10.5-22-29.5-69.5-31.5q-21 0-32.5 10.5T1744 1050q-5 0-9-2l-9-5q-6-3-14-5t-21-2q-28 0-51 27.5t-23 54.5q-33 0-62.5 25.5t-32 59.5-33.5 34q-26 0-48 13.5t-29 45.5l-7 31q-5 21-62 23t-89.5 31.5-39.5 47.5l-9 14q-4 6-13 6-10 0-17-3l-15-6q-9-3-20-5.5t-30-2.5q-23 0-48 15.5t-37.5 42-24.5 26.5q-15 0-36.5-12t-35.5-12q-34 0-68.5 21t-44.5 40.5-24 19.5q-10 0-32-18.5t-53-18.5q-41 0-62 25t-32 25q-14 0-23-4l-20-7q-12-4-26-7.5t-35-3.5q-24 0-57.5 23.5T417 1680q-3 27-24.5 28t-51.5 40.5-30 91.5q0 32 17.5 55t30 26.5T371 1951q0 14-2 27.5t-2 26.5q0 50 45 58t46 36 29 52.5 80 24.5h8q8 0 18.5-5.5t21.5-5.5q4 0 8 5.5t9 12.5l9 15q12 18 41 29.5t66 11.5q20-2 47-17.5t37-15.5 18 4l18 9q10 5 22 9t29 4q34 0 62-12t39-31l8-12q4-6 9.5-10.5t13.5-4.5q22 0 36.5 4.5t33.5 4.5q22 0 54.5-22t38.5-48q122 0 156.5-34.5t33-58.5 47.5-24q38-2 78-35t40-65v-10q0-17 9.5-29.5t45.5-23 67-43 33.5-60 10.5-40.5 8-24-2-21-2-24q48 0 82.5-42t34.5-69l-1-5q0-19 40.5-26t40.5-76q0-6-2-12t-2-14zm236.5-499q-13.5-8-24.5-8-42 0-86.5 40t-44.5 82q0 6 7.5 9t14.5 3q34 0 90.5-36t56.5-65q0-17-13.5-25z"},"children":[]}]};exports.u1F364=u1F364;var u1F365={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2118 1743q14 47 14 77 0 58-43 94.5t-83.5 47.5-42 64-48 105.5T1784 2184q-17 0-32-1t-27-1q-27 0-47 9t-42 39l-4 7-14 19q-18 23-47.5 39.5T1503 2312q-65 0-119-39t-76-39q-12 0-23.5 6t-21.5 14l-21 17q-26 23-55 33.5t-58 10.5q-58 0-105.5-38t-71-87.5T851 2140q-133 0-210.5-57.5T563 1914q0-26 1-52.5t6-53.5q-87-58-121.5-114T414 1578q0-65 55-135t56-72q-2-7-7-20l-8-20q-5-15-30-61t-25-85q0-50 30.5-86t142.5-80q2-9 2-22v-40q0-111 50.5-166.5T825 735q17 0 31.5 1t29.5 1q0-49 44-113.5t124-64.5q32 0 69 13.5t73 33.5l40 24q14-3 71-44t125-41q49 0 87.5 27.5T1575 633l27 48q11 0 29.5-3t42.5-3q72 0 119.5 28t88.5 117l25 54q12 28 31 49.5t56 38.5l30 15q45 23 87.5 98t42.5 122q0 29-28 79.5t-28 86.5q0 40 43.5 83.5t43.5 90.5q0 39-21 72t-40.5 51-19.5 32q0 4 14 51zm-124-345q-14-15-32-29l-35-27q-19-15-25-31.5t-6-29.5q0-37 41-91.5t41-93.5q0-23-19.5-37t-54.5-24q-42-11-94-25t-52-110q0-20 1-38v-32q0-30-17-43t-68-13q-19 0-38 2t-39 2q-46 0-62-20.5t-40-67-63-46.5h-10q-26 3-87 44.5T1232 730q-14 0-34-12l-43-25q-23-13-49-24.5t-52-11.5q-24 0-43 21t-27.5 70.5-30.5 68-64 18.5l-31-1h-33q-51 0-72 18.5T732 928q0 93-15.5 134.5t-88.5 62-73 63.5q0 23 17 50t34 68.5 17 65.5q0 42-55.5 102.5T512 1577q0 32 42 53.5t81 52.5 39 79q0 18-5.5 47.5T663 1867l-1 51q0 20 17.5 27.5t42.5 7.5q42 0 82.5-1t69.5-1q59 0 90.5 82t83.5 82q34 0 87-44.5t82-44.5q34 0 100 42.5t106 42.5q29 0 43.5-25.5t48.5-69 84-43.5q26 0 53.5 4.5t53.5 4.5q46 0 64-23.5t18-88.5q0-58 26.5-74.5t84-32 57.5-52.5q0-12-6-31l-28-79q-7-19-7-31 0-27 46.5-67t46.5-72q0-18-14-33zm-405 353.5Q1448 1899 1200 1899q-180 0-306.5-117T767 1453q0-148 84.5-284T1077 961.5t308-71.5q136 0 202.5 38.5t66.5 72.5q0 10-5.5 13.5t-14.5 3.5q-24 0-100-13t-138-13q-179 0-324.5 128.5T926 1425q0 147 85 231.5t225 84.5q128 0 233-89.5t105-210.5q0-86-53-139t-144-53q-48 0-110.5 35t-62.5 88q0 27 22 46t48 19q27 0 46.5-25.5t49.5-25.5q29 0 55 27t26 58q0 56-62 94t-135 38q-72 0-135.5-39.5T1055 1423q0-145 96.5-230t243.5-85q83 0 176.5 44t126 125 32.5 156q0 171-141 318.5z"},"children":[]}]};exports.u1F365=u1F365;var u1F366={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1901.5 1609.5Q1851 1676 1756 1718l-13 199-2 21q-2 20-11 32.5t-29 12.5q-46 0-59.5 12t-18.5 33l-7 44q-5 33-11 77l-34 252q-4 29-5 33l-3 12q-4 15-16.5 24t-34.5 9h-88q-33 0-72 1h-82q-60 0-116-1h-90q-20 0-32.5-10.5T1015 2444l-3-10q0-4-4-32t-10-71l-38-259-7-44q-6-30-29-37.5t-54-7.5q-16 0-24-11t-10-31l-2-24-14-214q-89-48-130.5-109.5T648 1454q0-64 21-119t21-67q0-18-17-62.5t-17-92.5q0-84 33-137.5t56-71.5 23-29q0-19-13.5-46T741 758q0-108 97.5-201T1079 437.5t202.5-84T1341 224q0-16-3.5-32.5T1334 162q0-15 15.5-26.5T1407 124q121 0 207 123.5t86 244.5q0 26-5 49.5t-14 45.5q68 19 113.5 85t45.5 140q0 43-13 74.5t-31 57.5q62 32 105 95.5t43 128.5q0 29-17 83.5t-17 57.5q0 8 7.5 15t21 44 13.5 86q0 89-50.5 155.5zm-73.5-213q-6-10.5-22-10.5-11 0-66 26.5t-110 26.5l-17-1q-30-2-46-7.5t-16-14.5q0-19 74-44.5t138-89.5 64-128q0-49-38-91t-63-42q-14 0-90 34.5t-133 34.5q-24 0-48.5-7t-24.5-22q0-32 78-53.5t151-74 73-127.5q0-46-25.5-88t-50.5-42q-13 0-22.5 10t-44.5 27.5-78 17.5q-11 0-20.5-5t-9.5-17q0-20 34.5-53.5T1573 567t23-105q0-63-32-119l-18-31q-18-29-41-49t-47-20q-8 0-14 2l-10 3q2 7 3 14.5t1 14.5q0 72-47 136.5T1184.5 516 948 610t-77 140q0 47 25.5 75.5T922 864q0 26-73.5 98.5T775 1131q0 46 27.5 91t27.5 66q0 22-24 56t-24 84q0 118 122.5 185.5T1284 1681q208 0 331-44t171-111 48-108q0-11-6-21.5z"},"children":[]}]};exports.u1F366=u1F366;var u1F367={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2337.5 1341q-107.5 42-195 125.5T2006 1621q12 42 12 84 0 141-125 306t-325 231q15 20 24.5 42.5t9.5 45.5q0 72-100 135t-264 63q-176 0-299-51.5T816 2313q0-23 11.5-44t29.5-38q-252-65-367.5-234.5T374 1678q0-46 11.5-89t38.5-81q0-78 30-167t79.5-173 78.5-150l60-138q30-68 63.5-135T816 617l67-88q62-81 158-130.5t203-49.5q124 0 245.5 58.5t190 160.5T1786 869l19 102q17 93 37 168.5t51 167.5l47 142q57-98 174-208t199-110q57 0 94.5 39t37.5 77q0 52-107.5 94zm-1589 403q191.5 97 506.5 97 144 0 261-28t196.5-76 103.5-90 24-97q0-73-44-176t-49-116q-44 0-61 13t-22.5 66.5-41.5 78.5-73 25q-45 0-77-29.5t-42.5-71.5-31.5-69.5-47-27.5q-13 0-23 7.5t-18 17.5l-16 20q-16 21-39 30.5t-48 9.5q-59 0-92.5-32.5t-52-107T998 1114q-36 0-81 44t-85 44q-54 0-68.5-54t-46.5-54q-10 0-31 43.5T611 1279t-54 182q0 186 191.5 283zm706 550.5Q1440 2280 1424 2280q-9 0-19 2l-18 4q-22 3-42.5 3t-42.5 1q-162 0-221-11.5t-61-11.5q-20 0-41 20t-21 37q0 43 86.5 67t179.5 24q151 0 198-31.5t47-59.5q0-15-14.5-29.5zM1848 1892q20-24 32-47t12-43q0-11-1.5-18.5t-9.5-7.5l-9 2q-5 1-25.5 24t-98 68.5-191 73.5-317.5 28q-263 0-450.5-57.5T534 1770l-12-14q-6-7-12.5-12t-13.5-5q-15 0-15 17 0 7 3 16t7 17l12 27q46 105 144.5 190.5t280.5 124 342 38.5q192 0 322.5-61t232.5-188z"},"children":[]}]};exports.u1F367=u1F367;var u1F368={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2416 638.5q-30 35.5-51 67.5t-60 76l-68 77-75 88q-39 45-67.5 85t-55 65.5-47.5 59.5l-9 14q-6 9-6 14l20 49q16 38 44.5 48t50 26 37 39 24 54 8.5 71q0 103-45 229t-140 216-213 141.5-154 57.5-36 21q0 10 24.5 43t24.5 87q0 107-118.5 180t-316.5 73q-160 0-286.5-68.5T774 2267q0-25 8-51.5t17-38.5l10-13q5-7 9-13.5t4-12.5q0-17-36.5-22.5t-154-57-210-139-140-214T234 1472q0-80 33.5-126t77-59 59.5-65.5 81-155.5 152-181l6-5q131-110 274-160.5t285-50.5q94 0 183 21t170 59q26-26 45.5-57t47.5-62.5 56-69.5l54-74h-1q80-110 165-201.5t129-91.5q46 5 103 52.5t174.5 157T2446 576q0 27-30 62.5zM2138 410l-27-19q10 28 15 56.5t13 56.5q20-5 39.5-7.5t42.5-6.5q-25-29-46.5-49t-36.5-31zm-273 485q-22 5-42.5 6.5T1780 906q29 28 54.5 59.5t49.5 64.5l-10-66q-5-33-9-69zm81-119q35-6 70-14t69-14q-3-32-10-62.5t-12-62.5q-37 6-72.5 13.5T1918 648q2 32 11 63.5t17 64.5zm79-405q-35 34-66 69.5t-67 75.5q2 9 5 17.5t5 16.5q37-5 72.5-12t69.5-17q-5-32-12-72.5t-7-77.5zm-252 293l-55 72q-28 36-55 73l26 19q39-9 78-16.5t79-11.5q-7-38-15-72t-12-71q-9 2-20 3zM634.5 1544.5q142.5 35.5 285 44.5t271.5 9q247 0 425-25t233-68.5 55-124.5q0-194-202.5-391.5T1193 791q-223 0-376 101.5T578 1130t-86 250q0 129 142.5 164.5zm826 649Q1417 2165 1365 2165q-43 0-85 3.5t-84 3.5-82.5-3.5-83.5-3.5q-51 0-94.5 28.5T892 2267q0 50 102 84t204 34q116 0 211-31.5t95-86.5q0-45-43.5-73.5zM818 1704q-129-20-238.5-58.5T442 1587l-23-16q-12-7-21.5-12.5T381 1553q-11 0-15 5t-4 13q0 12 34 94.5t133.5 172 277.5 147 382 57.5q223 0 407.5-61.5T1878 1828t126-168.5 29-89.5q0-7-3.5-12t-14.5-5q-13 0-36.5 20t-134.5 62.5-276.5 65.5-350.5 23q-270 0-399-20zm1159-745q20-25 41-50l44-52q-23 5-48.5 12t-48.5 7q4 22 6 42t6 41zm204-240q3-3 47-54t48-79q-29 4-59.5 11t-59.5 7q0 12 2 22.5t5 22.5z"},"children":[]}]};exports.u1F368=u1F368;var u1F369={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2363 1896.5q-55 139.5-202.5 288.5t-356 224.5T1288 2485q-236 0-437.5-62.5t-360-210-233.5-339-75-368.5q0-330 200.5-583.5t457-359.5T1378 456q158 0 305.5 41.5t321 144.5T2279 886.5t120 347.5 19 321q0 202-55 341.5zm-859-544q-51-33.5-125-33.5-90 0-166 31.5t-76 82.5q0 54 58.5 87t137.5 33q90 0 156-31t66-85q0-51-51-84.5zm171 93.5q0 11-1 17 36-42 60-98t24-110q0-78-53-140.5t-127-62.5q-51 0-115 42.5t-149 42.5q-46 0-106.5-32t-99.5-32q-71 0-119.5 66T940 1282q0 69 53 140.5t58 78.5q-7-15-11-31.5t-4-35.5q0-103 96-159t242-56q135 0 218 72.5t83 154.5zm589 357q-32 33-58 44t-55 11q-24 0-47-3.5t-49-3.5q-104 0-152 112t-114.5 140.5T1652 2132q-86 0-134.5-31.5T1412 2020t-115-49q-29 0-84 13t-121 62.5-105.5 64T910 2125q-94 0-149.5-67t-61-172-43.5-141.5-156-42T297 1562q7 104 63 253t154 258 229 169.5 280.5 90.5 303.5 30q245 0 458-74t321-202 158-284z"},"children":[]}]};exports.u1F369=u1F369;var u1F36A={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2260 1506q0 23 1 47 0 108-23 214.5t-78 208-138 165-180.5 129-199 89.5-251.5 24q-112 0-289.5-20.5t-320-100.5-241-196T390 1807t-52-297q0-163 45.5-350.5t186-352 323-242.5 403.5-78q274 0 482 90t325.5 305.5T2256 1460zm-197.5-412Q1986 845 1832 732q-22 10-45 23.5t-41.5 18.5-33.5 12l-27 12q-13 6-25 10t-24 4q-25 0-37-34.5t-12-79.5l2-40q0-10 1.5-18t4.5-12q-60-14-122.5-18t-120.5-4q-123 0-243.5 23.5t-227.5 76-186.5 146-134.5 198-72.5 228T470 1524q0 213 89.5 352.5t229.5 237 345 125.5q-49-35-75-69.5t-26-61.5q0-22 47-56.5t85-34.5q33 0 86 50t53 75q0 26-33.5 55t-79.5 49q54 6 108.5 11t110.5 5q175 0 302.5-69t223.5-150.5 149.5-223T2139 1502q0-159-76.5-408zm-73.5 159q0 27-28.5 40t-94.5 13q-36 0-54.5-13.5T1783 1224t-10-99q0-18 39.5-30.5t85.5-12.5q25 0 38 14t32 66.5 21 90.5zm-784.5-173q3.5 20 3.5 40 0 64-21 71t-67 20-125 13q-28 0-38-17.5t-10-67.5l1-31q2-74 19.5-82t87-24 88.5-16q31 0 44.5 18t13.5 37 3.5 39zM866 1583q14 3 22 21.5t8 30.5q-2 50-20 85.5t-92 35.5q-57 0-91-16.5t-34-49.5q0-23 10-42t23-48 51-29q29 0 58.5 3.5t58.5 7.5zm898.5 213.5q-22.5 42.5-51 50t-61.5 7.5l-25-1q-47 0-63.5-11.5t-49-54-32.5-70.5q0-24 33-51.5t59.5-51 61.5-23.5q53 0 102 56t49 84q0 23-22.5 65.5zm-95 354.5q-21.5 16-45.5 16t-47-10-23-29q0-23 25.5-39.5t54.5-16.5q23 0 40 11.5t17 28.5q0 23-21.5 39zm204.5-221q21 9 21 26 0 21-15.5 30t-35.5 9q-25 0-45.5-10t-20.5-27q0-10 9.5-23.5t36.5-13.5q29 0 50 9zm144-213q25 7 25 28 0 23-17 32t-35 9q-24 0-40.5-12t-16.5-27q0-18 17-26t37-8q8 0 16 1zm-676 202q-13 11-34 11-26 0-43.5-13t-17.5-31q0-22 20-31.5t44-9.5q26 0 35 10t9 28q0 25-13 36zm350-508q19-9 40-9 23 0 35.5 8.5t12.5 27.5q0 23-16 30t-34 7q-27 0-42-10t-15-27q0-18 19-27zm315.5 118.5Q1986 1547 1961 1547q-13 0-26.5-9t-13.5-30q0-23 20.5-36.5t43.5-13.5q20 0 32 10.5t12 24.5q0 19-21.5 36.5zM1483 1175q-13-8-13-22 0-18 18-32.5t40-14.5q20 0 31 11.5t11 24.5q0 17-15 29t-38 12q-21 0-34-8z"},"children":[]}]};exports.u1F36A=u1F36A;var u1F36B={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2411 1045q11 9 16 21.5t5 26.5q0 11-3 24.5t-251.5 271-340 359T1707 1884l64 124 59 113q7 16 38.5 72.5t31.5 74.5q0 20-20 53.5t-45.5 51-56.5 38-49 20.5q-31 0-59.5-28t-59.5-28q-10 0-18 1l-16 3q-32 5-60.5 6.5t-68.5 1.5q-14 0-28.5-1t-27.5-4q-4 2-12.5 11t-17.5 20l-17 20q-42 50-97 107.5t-104 57.5q-36 0-121-61.5T898 2431t-239.5-222T373 1930.5t-145.5-172T167 1650q0-17 9-31l21-35q39-58 110-137t98.5-119 79-86 99-93 96.5-47q13 0 26.5 1t27.5 3l9-8q241-261 499-530t275.5-286.5T1560 264t47 19zM1300 2292.5q-2-12.5-5-27.5l-10-45-11-61q-5-36-31.5-55t-88-27.5T1052 2061t-56-25-19.5-47-15.5-62-26.5-87-39.5-75-78-28-67-17.5-22-62.5l-10-67q-4-89-21-223.5T638 1232q-11 0-22.5 9t-26.5 25l-14 14q-41 42-69.5 79t-117 137.5T300 1642q0 43 100.5 159T640 2044.5 825 2221l62 65q65 69 138.5 127t104.5 58q41-2 73-33.5t65.5-72 33.5-57.5q0-3-2-15.5zm91-457.5h-26q-42 0-64-6.5t-49-63-49-96-76-66.5-105.5-45.5-61.5-59-23-64.5l-44-81q-16-30-55-70.5t-60-40.5q-11 0-11 11 0 5 3 11l5 14q19 31 26.5 83.5t8.5 82.5l1 42q2 61 10.5 110t22.5 51l38 8q51 10 80 23t47 37.5 27.5 68 19 93.5 18.5 72 17.5 25.5 51.5 8.5q88 0 128.5 9.5t51.5 9.5l6-1q25 0 30 49t26 107.5 32.5 93 33.5 34.5q84 0 125.5-8.5t53.5-8.5q20 0 42 16.5t39 16.5q24 0 44.5-18t20.5-34q0-23-37-65t-93-166-111.5-150.5T1391 1835zm746-933q11-13 11-27 0-16-11.5-27.5T2110 836q-17 0-30 13l-274 296-254-240 259-278q11-13 11-28t-11.5-27-28.5-12q-16 0-28 12l-259 279-181-171q-11-11-26-11-17 0-28.5 12t-11.5 29q0 8 3 15.5t9 12.5l181 171-305 330-167-157q-14-11-29-11-14 0-26 11.5t-12 26.5q0 17 12 29l168 159-70 75q10 19 22 37l21 33 84-90 253 239-70 74q6 9 17.5 31.5t34.5 29.5l76-81 137 130q30 9 49 20t41 40q14-5 22-14t8-23q0-15-12-29l-192-182 305-330 179 169q9 9 26 9t28-11.5 11-26.5q0-17-12-29l-178-169zm-638 62l253 238-307 332-253-240z"},"children":[]}]};exports.u1F36B=u1F36B;var u1F36C={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2461 1036q-49 47-136 77l-69 24q-141 47-242.5 54t-101.5 34l1 6q40 146 40 239 0 168-79.5 301.5t-199 201T1360 2040q-117 0-187-18.5t-83-18.5q-14 0-20.5 8t-6.5 19v13q-9 144-124 337t-209 193q-37 0-73-29t-80-127.5-71-112-80-21-101-46.5-48-111q0-75-93.5-135.5T90 1856q0-71 87-133t301-65q34 0 68 2l68 4 34 5q20 4 40 4 17 0 30-5.5t13-22.5q0-10-3-21l-5-20q-8-44-12-78t-4-79q0-246 162.5-424.5T1344 844q86 0 158.5 17.5T1578 879q18 0 25-17.5t7-43.5q0-73 48.5-238.5t109.5-233 124-67.5q79 0 112 81.5t50.5 115T2152 533l46 14q72 22 99 111.5t47.5 108.5 93 69 72.5 106q0 47-49 94zM773.5 1913q74.5-49 74.5-80 0-11-12-19.5t-40-8.5q-79 0-132.5 26.5T610 1904q0 21 17.5 39.5T664 1962q35 0 109.5-49zm154 5.5Q919 1904 899 1904q-18 0-62.5 51t-44.5 86q0 25 14.5 42t34.5 17q38 0 66.5-55.5T936 1951q0-18-8.5-32.5zM1836 780q-19-20-44-20-38 0-62 43.5T1706 938q0 24 5 41t21 17q37 0 80-61.5t43-101.5q0-33-19-53zm175.5 185q-15.5-16-41.5-16-33 0-98 41.5t-65 71.5q0 11 12.5 19t43.5 8q62 0 113-20t51-59q0-29-15.5-45z"},"children":[]}]};exports.u1F36C=u1F36C;var u1F36D={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2303.5 1545q-102.5 188-283 289.5T1600 1936q-210 0-424.5-94.5t-338-254.5T714 1232q0-49 16-89.5t41-40.5q27 0 32.5 41t55.5 147.5 164 214 275 163.5q117 42 243 42 163 0 308-73t231-202 86-278q0-147-82.5-291.5t-216-230T1587 550q-219 0-343.5 111.5T1119 975q0 167 112.5 291.5T1506 1391q111 0 192.5-69t81.5-171q0-79-59-150.5T1588 929q-34 0-49.5 13.5T1523 975q0 39 71 68t71 100q0 58-57 97t-127 39q-107 0-181.5-92.5T1225 976q0-149 99-240.5t253-91.5q118 0 230.5 69.5T1989 898t69 233q0 221-163 350t-396 129q-255 0-440-191.5T874 961q0-174 93-316t254-220.5 342-78.5q218 0 415.5 106T2291 744.5t115 410.5q0 202-102.5 390zM962 1857q9 7 9 19 0 16-13 29.5t-24 23.5l-54 57q-86 85-263 269t-222.5 230.5T295 2532q-46 0-74-30t-28-75q0-41 32.5-69t36.5-31l171-158q390-360 410.5-377t29.5-17q10 0 16 7l11 15z"},"children":[]}]};exports.u1F36D=u1F36D;var u1F36E={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2502 1686q0 234-179 415.5t-475.5 266T1240 2452q-300 0-574.5-86T244 2122.5 97 1749q0-147 77-271t300-240q11-49 24-98l25-97 24-97q19-77 38-107.5t34.5-56.5 47-61.5T742 652t90-58 97-45 111-35 127-22.5 135-7.5q121 0 243.5 26.5T1779 590t187 158 101 258l32 187q182 85 290 214.5t113 278.5zm-1306-513q-12 4-12 21 0 18 54.5 28t143.5 10q192 0 354-83.5T1898 967q0-13-4-24t-14-11q-15 0-27 19t-89 78.5-208.5 99.5-337.5 40q-10 0-22 4zm-601 9q-7 29-47 174.5T508 1605q0 142 120.5 246T962 2009t403 54q165 0 283-31t204.5-89.5 139-146T2044 1563q0-120-19-236t-44-233q-22 30-44 57l-46 55q-44 55-67.5 115.5T1788 1483t-86 101q-60 0-102-80t-86.5-102-225.5-32-286-44.5-217.5-90T615 1102zm1711 304.5q-59-95.5-182-176.5 14 69 25.5 141.5T2161 1595q0 209-119.5 328t-290 188-418.5 69q-200 0-426-59t-356.5-166.5T407 1700l-2-30q0-15-1-29 0-72 11.5-142t28.5-142q-9 8-18 14l-19 12q-92 69-133 154.5T233 1712q0 185 130 321t374.5 209.5T1248 2316q288 0 554.5-76.5t414.5-230 148-325.5q0-102-59-197.5z"},"children":[]}]};exports.u1F36E=u1F36E;var u1F36F={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2170 2107q-118 202-348.5 308.5T1300 2522q-318 0-549-119t-335.5-327T311 1622q0-194 62-379t137-295q-25-29-39.5-83.5T456 761q0-110 81.5-212t202-171 260-104 281.5-35q248 0 442 58t328 170.5T2185 740q0 60-26 114t-71 92l22 36q72 119 125 288.5t53 351.5q0 283-118 485zM584 1015q-25 39-44 79l-39 83q20 44 59 67t147 29.5 144.5 88 80.5 111 98 29.5q37 0 122-26t133-26q65 0 98.5 52t33.5 164q0 164 35 215t107 51q66 0 103-60.5t37-168.5q0-37-1.5-76t-1.5-76q0-133 44-183.5t133-50.5q42 0 89.5 8t95.5 8q23 0 45-3.5t42-14.5q-23-86-60.5-169.5T2013 1011l-10-1-22 13q-27 16-45.5 23.5t-33.5 7.5q-11 0-23.5-7.5T1866 1025q0-25 46.5-58.5t92-100.5 45.5-133q0-82-78-173t-277-146-363-55q-189 0-371.5 51t-283 156T577 772q0 59 39 112.5T719.5 972t64.5 60q0 13-17 21.5t-39 8.5q-25 0-48.5-9t-46.5-17l-26-9q-12-4-23-12zm387-476.5q128-61.5 325-61.5 80 0 196.5 24.5t185.5 75 69 121.5q0 98-111 160.5T1329 921q-192 0-339-53T843 714q0-114 128-175.5zm51 209.5q49 31 119 47t170 16l32-1q112-5 182.5-20.5T1596 748q0-38-84.5-61.5T1307 663q-96 0-190.5 26t-94.5 59z"},"children":[]}]};exports.u1F36F=u1F36F;var u1F370={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2337 1685v36q0 127-21.5 205t-64.5 115l-22 20q-166 135-440 230t-510 144.5-523 49.5q-45 0-68-1l-90-3q-150-4-225-56t-92.5-163.5T263 1929q0-268 76.5-426.5T584 1143t428-396q57-173 214.5-325.5T1545 269q155 0 249.5 162.5T1910 755q51 44 97 90l93 95q114 122 156 200.5t61 178 19 257.5q0 6-1 12.5t-1 13.5q0 12 1 24.5t1 25.5zm-612-713q0-19-7-33.5t-17-14.5q-29 0-59.5 43t-30.5 77q0 22 14 33t31 11q31 0 50-29.5t19-69.5v-17zm-125-335l-1 21q0 46 18 71t38 25 36-16 16-39q0-21-8-40t-20-35l-8-11q-9-11-21-20t-21-9q-14 0-21.5 16.5T1600 637zm-181.5 207.5Q1397 886 1397 914q0 27 15.5 44.5T1451 976t37.5-26 14.5-58q0-30-10.5-59.5T1466 803q-26 0-47.5 41.5zM1360 526q-14 13-28 35.5t-14 42.5q0 23 14.5 39t34.5 16q29 0 49-36t20-83v-13q0-13-6.5-22t-17.5-9q-8 0-18.5 5t-24.5 17zm-208 436q16 19 41 19 21 0 33-17t12-50q0-27-17.5-67t-34.5-40q-19 0-34.5 36.5T1136 908q0 35 16 54zm-675.5 638q45.5 14 104.5 14 34 0 353.5-30.5t547-93T2006 1311l36-15q29-13 49.5-34t20.5-51q0-50-50-120t-147-170q-19 177-137 266t-318 89q-175 0-322.5-97.5T990 922q-171 144-281.5 260.5T565 1345l-28 40q-11 17-44.5 53t-47.5 72-14 48q0 28 45.5 42zM466 2152h44q39 0 78.5 3t78.5 3q122 0 239.5-11.5T1141 2117l28-4q32-4 62-69t87.5-99.5T1452 1910q50 0 101 13t100 35l34 15q17 8 34 8 16 0 23-6t105.5-44 199.5-98l17-9 21-13q11-6 19-12.5t8-10.5q-15-3-27-4l-38-1q-17-2-31-7l-30-10q-22-8-43-20.5t-45-12.5q-23 0-64 18t-218 68.5-357 81-199 32-45.5 20.5-66.5 75-92 80.5-106 24.5q-71 0-129-39.5t-76.5-72.5-81.5-37h-16q-56 0-66 9.5t-10 58.5q0 44 21.5 72t71.5 28zm1718-266l4-16q0-7 1-13 0-7-1-8t-6-1q-26 6-81.5 42.5T1858 2010t-548.5 156-647.5 73q-25 0-49-1l-50-2q-31 0-63-5t-62-5q-14 0-26 6t-12 20q0 19 27.5 51t92 49 198.5 17q406 0 916-161.5t550-321.5zm18-487q-10-36-28-36-16 0-54.5 33.5t-270 121.5-559 145-689.5 57q-33 0-64.5-3t-74.5-3q-39 0-59.5 13.5T375 1796l-7 65q0 32 19.5 43t48.5 11q20 0 39-2t33-2q22 0 42.5 1t41.5 1q171 0 333.5-21.5t293-52 335-80.5 350-103 227-105.5 81.5-80.5q0-35-10-71z"},"children":[]}]};exports.u1F370=u1F370;var u1F371={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2444 1415q15 26 19 49t4 48q0 20-3 37.5t-6 28.5l-65 216q-9 33-40.5 61.5T2278 1902L834 2534q-18 8-35.5 10t-31.5 2q-41 0-70.5-16.5T655 2494l-10-16-464-907q-24-47-36.5-104T132 1361v-246q0-82 50.5-129.5t260.5-135T882 671l557-220 211-82q32-13 59-18.5t49-5.5q35 0 69 16.5t49 44.5zm-425-421h-9q-41 0-53.5 37.5T1919 1069q-24 0-60.5-37.5T1787 994q-18 0-32.5 12.5T1740 1048q0 11 2.5 22.5t2.5 22.5q0 9-2 11t-11 2q-18 0-34.5-5t-31.5-11l-31-10q-16-5-32-5-33 0-55.5 16.5T1525 1139q0 19 11.5 44t30.5 25q11 0 23-4l21-7q31-8 64-11.5t66-3.5q26 0 88 9.5t84 19.5l28 12q16 7 25 7 17 0 64.5-42.5t47.5-89.5q0-32-19-66.5t-40-37.5zm-267.5-219.5Q1706 860 1706 889q0 12 6 21t24 9q33 0 76.5-23t88-48.5T1945 774q0-35-23.5-60t-62.5-25q-62 0-107.5 85.5zm-153.5-15q18 53.5 54 53.5 20 0 33-19t20-52l5-27 6-36q3-18 3-36 0-31-16.5-54.5T1659 565q-32 0-55.5 27.5T1580 668q0 38 18 91.5zM1118 887q34 59 49 59 11 0 46.5-27.5T1304 891q21 0 62 16t41 36q0 10-22 17.5t-37 7.5q-59 6-98.5 19t-39.5 34q0 27 28 60.5t46 33.5q11 0 25-6.5t56-20.5 134-65 102-56.5 14-13 4-22.5q0-24-24-68t-81.5-51.5-61.5-42-21-68-60-33.5q-32 0-52.5 14.5t-29 50T1267 768q-10 0-15-2l-14-5q-9-3-23.5-5t-41.5-2q-25 0-57 17t-32 41q0 16 34 75zm344.5 915q-13.5-29-40.5-31t-27-23q0-19 4-36t4-36q0-34-18-56.5t-45-36.5l-12-5q-14-6-21.5-13t-7.5-16q0-13 11.5-29.5t11.5-41.5q0-44-24.5-88.5t-63-48.5-38.5-22q0-14 5.5-30.5t5.5-36.5q0-96-66.5-115.5T1074 1093q0-14 7-25t7-34q0-36-19.5-64t-49.5-28q-8 0-16 1.5t-15 1.5q-23 0-43.5-38T881 869q-35 0-66 14.5T765 929t-47 31q-20 0-41.5-6t-42.5-6h-8q-27 0-58.5 17t-42.5 37l-13 23q-6 12-13.5 20.5T480 1054q-18 0-43-6.5t-40-6.5q-41 0-74.5 34.5T289 1150q0 66 51.5 158.5t104 202.5 167 323T733 2065l10 26q7 18 16 28.5t26.5 44.5 36.5 34q23 0 122.5-52.5t207.5-97 191.5-89 108-64 24.5-46.5q0-18-13.5-47zm412.5-58q0-3 1-5 0-21-31-35t-60-14q-24 0-45 16.5t-37 16.5q-15 0-15-8 0-5 5.5-12t5.5-13q0-14-16.5-18.5t-28.5-4.5q-33 0-52.5 14t-19.5 41q0 8 32.5 62.5t55.5 54.5q15 0 41.5-9.5t48.5-20.5l28-15q10-5 24-11l26-12q12-5 22-11t13-11zm269-160q0-56-36-123t-106.5-117-126.5-69-146-19q-108 0-159 16.5t-94.5 58-43.5 86.5q0 28 14 54t30 57l12 25q11 24 26 42t31 18q8 0 49.5-15.5T1696 1582q63 0 116 22.5t79.5 58 59.5 35.5q25 0 48-9.5t45-20.5l26-11q36-16 55-32.5t19-40.5zm129-34q2 2 7 2 26 0 45-19t19-39q0-40-58-122.5t-81.5-117.5-49.5-35q-29 0-59.5 19.5T2065 1276q0 17 25.5 34t79.5 83.5 66.5 108 36.5 48.5zM862 1394h12q45 0 87 32.5t42 71.5q0 47-31.5 75t-80.5 28q-52 0-87-30.5t-35-77.5q0-42 32-69t61-30z"},"children":[]}]};exports.u1F371=u1F371;var u1F372={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2484 1520q-66 64-145.5 73.5t-92 63.5-59 157-126.5 200-192 152-244.5 79.5T1332 2270q-271 0-469-68t-334-201l-4-2q-55-55-100-136t-65-153-80.5-77.5-115-40-85-94T49 1363q0-90 40.5-179.5t98.5-133T354 985v-23q0-67 53-110.5T534 808q5 0 10.5 1t11.5 1q140-108 325.5-168t388.5-60q248 0 447 61t320.5 153.5 156 141.5 96 52 121 42 99.5 117 40 185q0 122-66 186zM333.5 1109.5q-4.5-8.5-18.5-8.5-60 0-109.5 79.5T156 1336q0 61 36 116.5t85 55.5q17 0 29.5-9t12.5-29q0-28-2.5-56.5T314 1358q0-95 12-152.5t12-76.5q0-11-4.5-19.5zM1533 986q38-29 82-50.5t93-34.5l-26-30q-29-32-55-53.5t-43-21.5q-13 0-28.5 7.5T1512 831l-19 14q-82 57-82 73 0 5 5 7.5t12 3.5l15 2q19 2 40.5 17.5T1518 974zM677 852q43 34 73 34t63.5 16.5T863 938t36 19q9 0 15.5-9.5T927 925l13-27h-1q10-21 81.5-97t131.5-76q30 0 75 20.5t84 46.5l7 6 23 17q6 4 10 4l8 3q40-35 81-60t70-43q-117-15-228-15-185 0-333.5 37.5T677 852zm24 133q-23 0-37-13l-31-26q-17-14-40-25t-59-11q-40 0-60 19t-20 57q0 44 20.5 91.5T501 1141q30-12 61-12 53 0 89 24t46 36 74 15q-2-11-3-22t-1-22q0-70 37-127-12-25-29-35.5T732 986zm44 716q2-80 36.5-151.5T870 1447q-2-6-19-76.5t-85-70.5q-14 0-26 1.5t-25 1.5q-12 0-27.5-4.5T652 1276l-25-22q-13-11-26-19.5t-24-8.5q-50 0-78 35.5t-28 97.5q0 92 53 167t90.5 106 130.5 69zm198 58q20 5 42 9t44 7q4-20 32.5-73t34.5-62l15-19q17-22 24.5-36t7.5-27q0-11-14-11-48 0-102 63t-80 137zm265-463q-3-7-14-21t-22-42l-15-36q-27-68-65-83t-65-38-65-23q-48 0-74 31.5t-26 92.5q0 13 2 26t5 24v7q55 40 71 102.5t18 67.5q25-8 80-14.5t97-42 73-51.5zm-43-255l55-43q27-22 55.5-32.5T1304 948q0-28-35.5-51.5t-70.5-47-51-23.5q-18 0-37.5 22t-49.5 52-30 52q0 7 13.5 16.5T1079 989l44 25q23 13 42 27zm927 723q8-15 15.5-33.5t7.5-29.5q0-15-13-15-5 0-13 5.5t-17 12.5l-18 14q-16 14-101 61.5t-251 89-388 41.5q-226 0-451.5-51T519 1707l-14-11q-7-5-14.5-9.5T478 1682t-7 4.5-2 10.5q0 14 11 38t25 45l12 19q87 139 187 205t251 108.5 327 42.5q339 0 521.5-93t281.5-285zm-390-130q-5-8-15-8-15 0-32 10l-25 15q-61 43-77.5 81t-33.5 64q27-2 54-5.5t53-8.5q10-26 45.5-73t35.5-56q0-11-5-19zm404-87q50-57 79-129t29-147q0-173-140-309t-374-205q18 16 33 30l31 31q5 5 32 33t44 45q120 20 208.5 114.5T2137 1218q0 38-17 104t-36 66q-16 0-34-11t-73-22-106-11l-31 1-13-1h-25q-18 0-24.5-5.5t-6.5-16.5q0-41 16.5-74.5t45.5-33.5q27 0 67.5 17.5t73.5 17.5q8 0 13-2t5-10q0-18-45-48t-75.5-40.5-30.5-33.5q0-8 6.5-31.5t8.5-28.5l7-15q3-8 5.5-16t2.5-14q0-7-3.5-12t-12.5-5q-7 0-14.5 3.5t-14.5 8.5l-24 18q-8 7-16 19l-18 24q-9 12-18 21t-17 9q-15 0-35-5t-39-5h-19q-18 0-32.5 6.5T1593 1108q0 13 18 21l39 18q21 10 38.5 23.5t17.5 37.5q0 18-17 69.5t-34 51.5q-9 0-17-10l-14-16q-21-22-47.5-43t-58.5-29l-21-3q-24-2-41-10.5t-17-24.5q0-23 8-54.5t20-59.5q-12-17-31.5-31.5T1395 1033q-24 0-49.5 11.5T1295 1073l-49 35q-7 5-7 14 0 8 24.5 50t42.5 88l20-2q10 0 21-1 82 0 149 30.5t91 87.5l5 12q3 8 3 14 0 12-22 19l-57 17q-99 29-147 68t-93 124.5-57 170.5l83 4q22-101 69.5-166.5t107.5-98 107.5-43 72.5-40.5 67.5-50 116.5-20q95 0 160 43t103 118zm284.5-383.5Q2346 1104 2310 1104q-18 0-18 19 0 9 11 53.5t11 102.5q0 78-12.5 124.5T2289 1452q0 12 15 17t29 5q45 0 73.5-43.5T2435 1323q0-100-44.5-159.5z"},"children":[]}]};exports.u1F372=u1F372;var u1F373={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2379.5 886Q2261 936 2120 1019.5t-227.5 151-162.5 147-76 168.5q0 24 1 45.5t1 47.5q0 200-116 377.5t-299 273-400 95.5q-191 0-365.5-66.5T201 2052t-100-336q0-248 130.5-418.5t302-249T895 970q145 0 279.5 40t201.5 81.5 91 41.5q31 0 60-50t109.5-144.5T1840 744t235-166 192-66q66 0 111 44t82.5 103 37.5 101q0 76-118.5 126zm-1043 582q-36.5-66-103.5-118.5t-142-71-179-18.5q-264 0-432 136t-168 289q0 114 84 192.5t183.5 83T748 2005t153 40q87 0 200.5-57.5t192.5-163 79-217.5q0-73-36.5-139zM1104 1619q0 87-78.5 139T841 1810q-98 0-160.5-52T618 1623q0-94 72.5-155t168.5-61q97 0 168 54t77 158zm-129.5-97.5Q924 1485 859 1485t-114 38.5-49 95.5q0 52 36.5 81.5T834 1730q76 0 133.5-30.5t57.5-85.5q0-56-50.5-92.5z"},"children":[]}]};exports.u1F373=u1F373;var u1F374={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2302 2152q48 107 69 171t21 99q0 42-26.5 72t-69.5 30q-79 0-138.5-75.5T2036 2125t-83-337.5-78-89.5q-29 0-77.5 17.5T1718 1733q-127 0-203-155.5t-94-426.5-26.5-324-8.5-176q0-14 1-26t1-26q0-129 30-196t92-67q73 0 127.5 137.5T1725 698l70 192q81 223 146 376t148.5 370 159.5 400zM1014 663l16-56q25-92 43-140.5t28-48.5q21 0 29 34t8 87q0 107-26.5 281.5t-114 271.5-234.5 97q-25 0-37-2-78 301-137 594t-106 522.5T314 2533q-52 0-79-38t-27-100q0-54 29.5-162t53.5-176l64-181q21-60 48-142l58-176q31-95 64-199l65-208q-106-48-151.5-120T393 856q0-177 116-365.5T673 302q10 0 14.5 6.5T692 322q0 22-49 126t-49 210q0 45 20 64t45 19q35 0 56.5-34t36.5-76l12-36q6-23 45.5-119.5t52-110T888 352q16 0 23 12.5t7 24.5q0 7-1 11.5t-1 6.5q-4 29-10.5 64T892 539l-22 104q-7 24-10.5 43.5T856 735q0 31 15.5 49.5T918 803q27 0 53-39.5t43-100.5z"},"children":[]}]};exports.u1F374=u1F374;var u1F375={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M948 185.5q74-76.5 123-76.5 10 0 18 6t8 21q0 6-35.5 66.5T1026 320q0 50 53.5 137t53.5 158q0 72-58.5 143T945 829q-18 0-29.5-10.5T904 796q0-20 18-37t40-49.5 22-72.5q0-50-55-119t-55-150q0-106 74-182.5zm278 0q74-76.5 123-76.5 10 0 18 5.5t8 19.5q0 11-35.5 69T1304 320q0 51 53.5 136.5T1411 615q0 72-58.5 143T1223 829q-18 0-29.5-10.5T1182 796q0-20 18-37t40.5-50 22.5-72q0-47-55.5-118.5T1152 368q0-106 74-182.5zm277 4q73-80.5 124-80.5 10 0 18 5.5t8 19.5-35.5 69.5T1582 320q0 51 53.5 136.5T1689 615q0 74-58.5 144T1501 829q-18 0-28.5-9.5T1462 796q0-22 19-40t39.5-50 20.5-69q0-47-55.5-118.5T1430 368q0-98 73-178.5zm568 843.5v156q0 64-1 135l-2 143q-4 156-18.5 321t-84.5 305.5-222 213.5l2 14v12q0 63-128.5 110.5T1300 2491q-187 0-315.5-47.5T856 2333q0-11 3-26-100-48-168-129.5t-113-241-48-624.5l-1-135q0-41 1-126.5t1-156.5q0-105 79.5-188.5T827 589l7-1q11 0 18 9t7 19q0 16-20 24t-62.5 39.5-74 80.5T671 864t23.5 99.5T760 1042q22-64 169-112t357-48q214 0 357 48.5t161 103.5q69-37 102.5-81.5T1940 860q0-53-32.5-102t-75.5-76.5-71.5-36T1732 614q0-11 7-21t21-10q108 0 209 101.5T2070 903zm-1166 77q12 6 87 21.5t201 15.5q122 0 235.5-10t226.5-45q8-13 8-24 0-40-111.5-63T1314 982q-216 0-318.5 34.5T893 1092q0 12 12 18zm1047 102q0-31-10.5-50.5T1912 1142q-20 0-29.5 7.5t-96.5 47-216 63.5-269 24q-131 0-295-24t-281-89l-12-6q-8-3-25-3-19 0-29.5 18t-10.5 49l1 116q0 206 15.5 387t85.5 301.5 207 175 343 54.5q210 0 346.5-56t204-172 83-283 18.5-423v-117z"},"children":[]}]};exports.u1F375=u1F375;var u1F376={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2190 2177.5q-96 196.5-185.5 253T1799 2487q-92 0-169.5-33.5T1490 2357q-86 54-199 82.5t-217 28.5q-172 0-339-73.5T471 2139t-97-360q0-128 47.5-256T545 1275t137.5-219.5T744 804q0-68-13-134.5T688 512l-5-14q-2-6-3-13t-1-18q0-104 120.5-168.5T1068 234q170 0 290.5 58.5T1479 465q0 41-32.5 135T1414 804q0 158 63 257.5t149.5 237T1753 1568h10q230 6 376.5 79t146.5 216q0 118-96 314.5zm-85-85.5q-5-3-12-3-15 0-76.5 13.5T1831 2116q-190 0-272.5-15t-83.5-15q-8 0-16 4t-8 19q0 51 97.5 166t250.5 115q69 0 126.5-27t121-133 63.5-125q0-10-5-13zm-120.5-84.5q28.5-9.5 45.5-24t17-40.5q0-41-83.5-73.5T1757 1837q-95 0-182 34.5t-87 71.5q0 34 50.5 54t292.5 20q125 0 153.5-9.5zM2123 1967q33-18 49.5-45t16.5-62q0-51-31.5-80t-80.5-52.5-133-42-191-18.5q-151 0-279.5 57T1345 1867q0 23 17.5 48t46.5 39v-11q0-82 110.5-134t237.5-52q145 0 256.5 48t111.5 136q0 6-1 13t-1 13zM888 534.5q81 26.5 195 26.5l30-1q94-4 163.5-32t69.5-75q0-62-71-94t-215-32q-85 0-169 34t-84 92q0 55 81 81.5zM1416 2265l-26-39q-19-29-38.5-63.5T1316 2089l-20-48q-21-49-34.5-91.5T1248 1878q0-117 101-193t281-107q-46-137-169-319.5T1317 981t-21-176q0-40 3.5-77t9.5-71q0-4-5-4-56 17-116 22t-117 5q-47 0-106.5-6.5T848 647q6 35 9.5 74.5T861 804q0 107-24 192.5t-139 258-160.5 292T492 1778t46.5 226.5 111.5 188T834.5 2308t239.5 42q83 0 175-20.5t167-64.5z"},"children":[]}]};exports.u1F376=u1F376;var u1F377={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1367 2152q0 109 173.5 169.5T1714 2449q0 56-136 93t-355 37q-155 0-272.5-38.5T833 2440q0-64 174-134t174-170l-1-64q-309-46-478-223.5T533 1381q0-237 73-481.5T785 471l25-44q41-77 170-122.5t320-45.5q185 0 304.5 38T1771 398.5t124 233 124 367 47 382.5q0 206-87.5 357t-254 237.5T1367 2078v74zm146 284q-91-30-152.5-76.5T1269 2249q-31 53-78.5 90t-112.5 64l-70 31q49 13 100.5 20.5t114.5 7.5q77 0 151.5-6t138.5-20zM919 468q20 30 122.5 59.5T1300 557q166 0 266-31t115-61q-14-25-116-57t-265-32q-162 0-265 31.5T919 468zm-56 106Q762 775 706.5 983T651 1381t86 321.5T981 1899t316 65q160 0 317-64t245.5-195 88.5-324q0-192-57-403.5T1737 575q-62 46-176 73t-261 27q-146 0-259.5-26.5T863 574zm-35.5 643q93.5-51 217.5-51 111 0 281 61.5t278 61.5q81 0 141-22.5t68-22.5q24 0 36.5 27.5t12.5 69.5q0 227-158 374t-391 147q-249 0-414-139.5T734 1357q0-89 93.5-140z"},"children":[]}]};exports.u1F377=u1F377;var u1F378={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1404 1984.5q1 70.5 1 68.5 0 107 174 169t174 129q0 55-131.5 92t-358.5 37q-153 0-271.5-38.5T873 2342q0-28 30.5-55.5T975 2239l39-18 76-33q39-15 71.5-48t45-70.5 12.5-83.5v-76q-2-124-9.5-208t-14.5-132.5-60.5-105.5-92.5-91l-75-64q8 7-289-240T381 700q0-120 256.5-194t662.5-74q119 0 228 7t206 20q109-125 211-189t147-64q23 0 39 18t16 44q0 15-11 26.5t-29 20.5l-18 9q-63 29-118 69t-105 90q169 33 261 89.5t92 127.5q0 47-39 99.5T2076 924t-233.5 209.5-253.5 210-124.5 125-50.5 161-11 242.5q0 42 1 112.5zM857 822q55-28 170-44t254-16q79 0 139 3t109 9q31-56 59.5-105t63.5-101q-75-8-162-13t-190-5q-242 0-415 25.5T616 636t-116 64q14 26 106.5 62T857 822zm551 1449l-14-13q-18-15-46-46.5t-44-68.5q-33 67-89.5 108t-98.5 56.5-68 27.5q42 15 97.5 21t117.5 6q88 0 125-14.5t37-46.5q0-8-5-15.5t-12-14.5zm478-1328q21-18 40-37-124 32-284 48t-342 16q-184 0-345-16.5T670 906q90 80 167 146t152 126l111 90q44 35 96.5 54.5T1303 1342q87 0 192.5-74.5T1698 1106l143-125zm214-243q-19-27-106.5-59.5T1773 584q-41 51-74.5 102.5T1637 795q25 6 48 13l47 16q152-21 254.5-59t113.5-65zm-670 357q44 41 44 100t-44 100-104 41q-61 0-105-41t-44-100 44-100 105-41q60 0 104 41z"},"children":[]}]};exports.u1F378=u1F378;var u1F379={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1850 1260q14 64 64.5 206.5T1965 1727q0 221-142.5 353.5T1407 2250l31 15q13 7 117 50.5t104 97.5q0 56-139 91.5t-335 35.5q-141 0-259.5-38T807 2404q0-27 28.5-52t70.5-45l38-18 52-23q26-12 52-27-232-39-363-169.5T554 1726q0-125 58-281t68-244q-5 7-60.5 94.5T498 1383q-56 0-139-142t-83-344q0-173 81.5-332t227-228.5T899 267q67 0 137 15t138.5 39 68.5 74q0 47-55.5 117T1017 742q50-6 102.5-10t108.5-4q0 26 6.5 52t12.5 55q-98 0-176.5 9T925 865q-17 28-37 55t-40 51l65 16q62 16 136.5 26t156.5 10q40 0 79-1h73q38 26 82 39.5t91 13.5q4 0 7-1h6q2 8 7 17t10 17q-67 11-143 16.5t-159 5.5q-149 0-274-18t-208-53l2 29q0 15 1 32 0 130-66 310t-66 297q0 232 176 335t413 103q314 0 473.5-114t159.5-324q0-110-55.5-258.5T1748 1226q6 0 36 17t66 17zm528.5-659.5Q2354 629 2317 649q12 19 16.5 38t4.5 39q0 17-1.5 33t-1.5 34l1 34q0 36-29.5 58t-65 61.5T2122 986q-17 0-35-3 0 82-69 141t-159 59q-23 0-55-16.5t-65-21.5q-51 0-92.5-53T1605 985q-18 5-36 8t-38 3q-44 0-79.5-13.5t-62.5-36-42.5-48-18-50.5-12.5-60.5-10-53.5q0-74 51.5-123.5T1495 550q-35-23-52-51.5t-17-75.5q0-34 12.5-65.5t31-50 39.5-27 34-24 51-30.5 82-15q54 0 90.5 25t64.5 87q0-13 49.5-41.5T1962 253q24 0 52.5 18t49.5 18q34 0 65.5 28t47.5 65q19-3 40-3 75 0 130.5 41.5T2403 527q0 45-24.5 73.5zm-835 680.5q97.5-20 95.5-20 13 0 19.5 8.5t8.5 20.5l2 12q5 66 48.5 183t43.5 206q0 119-62 205.5T1515.5 2027t-256.5 44q-211 0-356-95.5T758 1690q0-93 43.5-209t45.5-167 31-51q11 0 103.5 19t277.5 19q187 0 284.5-20zM566 1201q-58-31-89-89.5T446 985q0-42 26-63t100-21q36 0 71.5-1.5T721 898q19 0 39 1.5t38 5.5l6-11q3-6 7-11-60 0-135.5-20T552 822t-48-84q0-64 53-137.5T676 527q30 0 57.5 36.5t47 75 33 57T839 744t29 58l12-17q-20-39-33-100t-18-78l-13-42q-6-21-10-42.5t-4-43.5q0-36 33-54.5t90-18.5q49 0 106 22.5t83 61.5q15-22 15-45 0-20-15-32t-40-17l-26-6q-41-12-83-19.5t-85-7.5q-141 0-263.5 57.5t-190 190T359 887q0 133 51.5 250t88.5 117q15 0 36-21t31-32zm1617-747q-55 8-118.5 44T1946 541.5t-99 35-44 81.5q0 25 22.5 40t51.5 15q48 0 121-49t140-49q83 0 140.5-26t57.5-72-45-55-53-10h-28zm-659 1951q-110-41-160.5-72.5T1274 2259l-95-2q-41 47-114.5 80.5T983 2375l-55 28q33 14 105.5 27.5T1185 2444q104 0 191.5-9.5T1524 2405z"},"children":[]}]};exports.u1F379=u1F379;var u1F37A={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2287 893q-35 47-91 65-2 14-9.5 35.5T2162 1032q6 28 8.5 58t2.5 61q0 60-5 116.5t-5 101.5q0 91 2 184.5t2 192.5q0 277-20 423.5t-95.5 236.5-235.5 128-364 38q-43 0-86-2t-85-5l-94-7q-234-18-341-92.5t-103.5-201-143-134-226.5-107-90-313.5q-5-109-5-237 0-47 3-94t10-93.5 22-91.5 40-86 57.5-72 79-56.5T580 946l87-19q-38-65-38-137 0-21 5-48t18-66v-5q-21-65-21-105 0-93 74-169.5T875 320q43 0 54-2.5t19-8.5l26-20q26-21 66.5-35.5T1127 239q32 0 46 3.5t20 3.5l6-1q5 0 41-17.5t69.5-25.5 71.5-8q87 0 140.5 34.5T1581 265q3 0 48.5-14.5T1730 236q92 0 165 38.5t102.5 83.5 45.5 43.5 78.5 24.5 104 75.5T2267 627q0 13 2 19 53 73 53 134 0 66-35 113zm-102.5-176.5Q2158 686 2158 627v-21q0-8-16.5-36.5t-66-44-83-23.5-60.5-48l-10-15q-29-45-81-69t-111-24q-16 0-35 2t-33 7l-25 8q-14 5-28 8.5t-28 3.5q-23 0-42.5-8.5T1507 350l-33-21q-21-13-42-18.5t-51-5.5q-53 0-67.5 9.5t-52 25.5-68.5 16q-20 0-33-3t-26-3q-62 0-84.5 19.5T988 410t-78 21q-11 0-19-1t-16-1q-35 0-84.5 39T741 566q0 24 10.5 53t10.5 57q0 19-3.5 34.5T751 738l-7 26q-4 13-4 26 0 55 35 103.5t81 48.5q23 0 40-2t53-9l37-7q19-3 45-3 73 0 129 52t161 52q34 0 82.5-13.5T1490 998q77 0 124 55.5t63.5 172.5 95.5 117q55 0 77-37t30-123 39.5-131 84.5-57q12 0 46.5-16t39.5-45.5 23-50 48.5-29 40-31 9.5-43.5q0-33-26.5-63.5zM1355 2460l97 1q266 0 410.5-57t170-220.5T2058 1752q0-100-2.5-197.5T2053 1371q0-49 5-102.5t5-114.5q0-30-3-59-23 12-38 9t-24 49l-12 75q-5 29-12 57l-15 61v356l-1 81v160q0 150-33.5 222.5t-72.5 105-156.5 49.5-233.5 17q-52 0-102.5-3t-100.5-11l-54-11q-127-24-181.5-77T968 2072l-2-71q-2-45-3-111t-1-134l-2-282v-161q0-61 11-78.5t32-17.5q20 0 157.5 24t301.5 24q28 0 55.5-1t55.5-3q-2-8-17-80.5t-66-72.5q-20 0-34 4l-33 9q-20 6-52 10t-89 4q-46 0-97.5-19t-85.5-51.5-52-32.5q-27 0-47 3l-79 14q-21 4-50 4-35 0-65.5-10t-57.5-27q-26 11-50 16l-46 10q-134 26-199 116t-65 322q0 148 8 275t64 194 166 77 168.5 71.5T853 2268q0 38 13.5 58.5t52 46.5 89 42 107.5 25.5 118.5 14.5 121.5 5zm-506.5-877q-6.5 59-6.5 123 0 80-49 136.5T674 1899q-91 0-141.5-77.5T482 1553q0-219 60.5-291t138.5-72q85 0 129.5 73t44.5 213q0 48-6.5 107zM733 1704q0-24 5.5-90.5T744 1482q0-96-16-138.5t-47-42.5q-44 0-66.5 59T592 1556q0 127 20.5 180t61.5 53q23 0 40-24t19-61z"},"children":[]}]};exports.u1F37A=u1F37A;var u1F37B={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2452.5 2069.5q-42.5 56.5-114 74T2267 2220q0 14 2.5 29.5t2.5 32.5q0 70-58 120t-181 81l-57 14q-63 14-126.5 23.5T1721 2530q-95 0-158.5-24.5t-108-88-80.5-269-50.5-318-24.5-141-15-90.5l-49 323q-39 263-113 344t-244 81q-157 0-354-59t-197-189q0-15 3-30.5t3-29.5q0-58-67.5-74T151 1892.5 104 1735q0-57 23-210t58.5-221.5 88-101.5 147.5-38q-13-32-13-66 0-30 29-107l-1-7q-3-16-3-35 0-65 47.5-119.5T595 775q15 0 27 3t18 3q10 0 39-18.5t75-18.5q24 0 39.5 6.5T817 757q9 0 26.5-9.5T892 738q42 0 79 14t78 54q11-2 23.5-5t26.5-3q50 0 95 18.5t78.5 61.5 33.5 61q29 14 51.5 25.5t42.5 36.5q26-8 50-14.5t50-6.5q15 0 27 2.5t23 5.5l5-2q31-37 66.5-51.5T1708 920q26 0 46 8l28 12q7 0 23.5-6.5t41.5-6.5q35 0 70.5 17.5T1954 962q7 0 20-2.5t32-2.5q65 0 112.5 52.5T2166 1131q0 9-1.5 17.5t-1.5 17.5q0 13 14 41.5t14 72.5q0 33-11 66 11 2 24 2l10-1q81 0 152.5 71.5t100 253.5 28.5 242q0 99-42.5 155.5zM2386 1676q-29-164-78.5-207.5T2217 1427t-84-10q-20 21-47 28.5t-53 7.5q-14 0-26-1t-23-1q-34 0-53.5 29.5t-66 50-90.5 20.5q-18 0-34-2.5t-27-2.5q-31 0-38 19t-7 75q0 19-2 39 130-13 216-45.5t107-32.5q20 0 25.5 38t6.5 41l15 98 13 81 25 164 8 59q2 20 5.5 40t3.5 40q-3 93-121.5 137t-243.5 44q-165 0-192-143.5t-37-210.5l-32-212q-41-30-59.5-99.5T1381 1597l-19-3q5 64 19.5 118t17.5 88 29.5 203 51 264.5T1542 2401t94 45q38 5 85 5 109 0 237-31l11-3q134-33 179-63t45-72q0-11-2-27t-2-36q0-51 29.5-91.5t89-56 83.5-47 24-108.5q0-76-29-240zm-1164-171q-8-5-13-9l-12-10q-14 48-25 68t-38 43q-2 21-7.5 44t-5.5 45q-4 17-8 43l-28 181-15 88q-19 94-62 128.5T873 2161q-58 0-157-18.5T562.5 2083 508 1980q0-20 3.5-39.5t6.5-41.5l34-223q6-43 12-80l16-97q0-2 4-41.5t26-39.5q7 0 22 5l26 9q65 27 134.5 42t141.5 23q0-10-1-28.5t-1-32.5q0-44-10-58t-29-14q-12 0-29 2.5t-38 2.5q-42 0-89-19t-58-36-30-38l-8-4q-4-2-10.5-2t-13.5-1q-11 0-24 1t-27 1q-28 0-54-8.5t-46-27.5q-28 9-51 9l-7-1q-79 0-120 50t-57.5 113-29.5 156l-12 101q-5 35-5 69 0 77 25 110.5t84.5 49T382 1947t29 92q0 19-2.5 33t-2.5 25q0 82 178 127t294 45q108 0 148.5-25t72.5-91 74-357l21-138q14-96 21-122.5t7-30.5zm197-425q-12 5-24 19.5t-24 38.5l-10 23q-10 24-62 46.5t-52 61.5q0 5 1 14l3 26q0 30-10.5 42t-10.5 32q0 17 8.5 30.5t16.5 20.5l10 2q26 0 40.5 19t20.5 43q23 18 62 21t64 53 36.5 101.5 54.5 51.5q40 0 42-44t6.5-97.5 37-85.5 78.5-32q20 0 38 3t29 3h7q68-8 86-37t47.5-46 62.5-17q17 0 31 1.5t25 1.5q36 0 58-24t22-71q0-24-14.5-54.5T2084 1173q0-10 2-21.5t2-20.5q0-38-20.5-61t-56.5-34l-5-1q-6 0-19 3.5t-31 3.5q-28 0-56-18.5t-53-18.5q-16 0-30.5 6t-32.5 6q-17 0-27.5-2.5t-19.5-7.5l-16-6q-8-3-22-3-49 0-77.5 34t-69.5 34q-14 0-29-4t-23-4q-20 0-35.5 5t-34.5 12zm-904-99v10q0 29-13.5 56t-13.5 51q0 44 19.5 69t58.5 25l24-1h27q70 0 104.5 47t97.5 52l74-4q61 0 89 39.5t30 95.5v33q0 56 10.5 73.5t35.5 17.5q15 0 32.5-15t23.5-39 16-53l19-55q9-26 15.5-46.5t6.5-28.5q0-5-2-15.5t-2-23.5q0-51 36-90.5t65.5-47.5 31.5-26 37-58q-15-17-54.5-31.5t-52-56-49.5-62-82-20.5q-8 0-23 3.5t-29 3.5q-19 0-33-7.5T992 861l-24-21q-14-13-31.5-18.5T892 816q-7 0-14 3l-17 7q-9 4-20 7t-24 3q-11 0-20-2t-16-4l-13-4q-7-2-14-2-27 0-56 18t-54 18q-17 0-29.5-3.5T595 853l-6 1q-77 21-77 101 0 10 1.5 15.5T515 981zm1808.5 975q-28.5 43-80.5 43-37 0-71-28t-57-150.5-23-170.5q0-60 28-96.5t76-36.5q92 0 124 128t32 208q0 60-28.5 103zm-1838-326.5Q464 1737 436 1777t-80 40q-51 0-79.5-42T248 1672q0-133 40-235t116-102q47 0 75 36t28 97q0 54-21.5 161.5zM1026 576q-14-11-14-30 0-13 11-22l135-112q7-9 20-9 10 0 18 6t12 13l121 283 2 6q0 3 1 6 0 12-10 22t-25 10q-8 0-15-5zm608 194.5q1-5.5 6-9.5l203-230q8-11 22-11 19 0 28 15l94 149 4 9q0 4 1 9 0 11-6.5 19t-16.5 11l-296 81q-3 0-8 1-13 0-22.5-9t-9.5-24q0-5 1-10.5zM1460 672l-52-302v-5q0-12 8.5-22t22.5-10h5l175 21q11 2 19.5 10.5t8.5 21.5q0 4-1 7l-2 6-123 280q-10 19-33 19-11 0-18.5-7.5T1460 672zM422 1428q-5-15-18-15-33 0-55.5 93T326 1671q0 24 6.5 46t23.5 22q26 0 37-52.5t22.5-114.5 11.5-104q0-25-5-40zm1828 254.5q-23-87.5-54-87.5-12 0-18 15t-6 41q0 36 10 90.5t23 116.5 38 62q11 0 20.5-14.5t9.5-56.5q0-79-23-166.5z"},"children":[]}]};exports.u1F37B=u1F37B;var u1F37C={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2218 1820q26 44 37.5 91t11.5 95q0 111-59.5 208.5T2050 2369l-371 216q-51 29-103.5 43t-106.5 14q-111 0-204.5-51.5T1123 2451l-443-806q-27-50-45-98.5t-20-99.5q19 3 41 3 136 0 321.5-85t332-214T1507 902q51 30 93 76t81 100zm-475 349l-27 16q-3 10-16 10l-31 18q-6 2-8 2-6 0-11-4.5t-5-10.5q0-8 8-13l25-15-209-353-25 15q-6 2-8 2-6 0-10.5-4t-4.5-11q0-9 7-13l25-15-125-211 36-2-92-157 21-12q7-5 7-13 0-6-4.5-10.5t-10.5-4.5q-5 0-8 2l-74 43q-8 5-8 14 0 6 4.5 10.5t11.5 4.5q2 0 8-2l24-15 84 141-504 3q3 32 14.5 63t27.5 61l341 642q35 67 109.5 108t167.5 41q45 0 89.5-12t86.5-37l294-174q80-48 123-127t43-167q0-40-9.5-79.5T2080 1826l-163-245h-553l117 195 22-13q4-2 7-2 5 0 10 4.5t5 11.5q0 8-7 13l-21 12 209 353 22-12q2-2 8-2t10.5 4 4.5 11q0 8-8 13zM1046 740.5Q958 836 825 904t-240 68q-64 0-97.5-26.5T454 859q0-56 28.5-117t53.5-92.5 25-57.5q0-40-40-73t-56-70-16-74q0-64 42.5-110T594 219q54 0 99 40t54 98l5 24q6 37 24.5 58t47.5 21q25 0 53.5-5t53.5-5q29 0 53.5 4t45.5 10q49-15 88-21.5t68-6.5q41 0 73.5 11t47.5 30l169 230q9 13 12.5 29t3.5 33q0 109-140 260t-356 261.5T621 1401q-57 0-98-16.5t-61-49.5l-118-251q-5-8-8-19.5t-3-31.5q0-29 16-75t68-107q-35 43-54 81.5t-19 69.5q0 43 33.5 63.5T468 1086q132 0 333-96.5T1148 756t146-228q0-42-33-62.5t-90-20.5q-59 0-137 21 45 14 72.5 40.5T1134 572q0 73-88 168.5z"},"children":[]}]};exports.u1F37C=u1F37C;var u1F380={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2492 1360q-37 79-129.5 124t-198.5 45q-38 0-72-3 131 100 210.5 247t79.5 299q0 20-16.5 37.5T2329 2127l-7-1q-21-2-85.5-38t-81.5-44l-38-16q-22-8-40-8-53 0-120 106.5t-87 126.5l-20 19q-18 17-40 29.5t-40 12.5q-30 0-54.5-37.5t-67.5-234-86.5-303.5-111.5-149-143-42q-85 0-155 40t-115.5 155-86.5 306-66.5 228-54.5 37q-31 0-73-35.5T672 2171t-78-111.5-69-39.5q-22 0-42 8l-38 16q-29 13-89.5 46.5T278 2126l-8 1q-22 0-38-17.5t-16-37.5q0-153 79.5-298.5T507 1526q-33 3-73 3-125 0-208.5-50t-119-122T71 1166q0-230 132-426.5T607 543q149 0 281 69t208 192q39-17 86-22t92-5q113 0 153.5 8.5T1501 818l12-17 36-57q17-26 37.5-45.5t54-44.5 73-45 85-35 98-23 96.5-8q269 0 402.5 196.5T2529 1165q0 116-37 195zM370 1114q82 0 166 20t226 73.5 158 64.5 31 12l3-9q0-3 1-7 0-21-4-43t-4-51q0-13 3-25.5t3-26.5q0-27-70.5-77T775 983.5 738 950q0-11 7-19.5t18-8.5q27 0 74.5 15.5T898 959l18 9q9 5 18.5 8.5T952 980q18 0 22-24t5-28l12-32q5-12 5-26 0-65-127.5-143.5T600 648q-152 0-256.5 96T205 1020l-9 45q-6 29-6 56 0 20 7 34.5t18 14.5q6 0 11.5-3.5t11.5-8.5l11-10q15-14 47-23.5t74-10.5zm589.5 399.5Q885 1508 881 1507l-25-2h-26q-170 0-285 110t-175 250l-12 29q-7 18-7 32 0 16 7.5 22.5t16.5 6.5q18 0 72.5-29.5T555 1896q54 0 81 36t63 107 87 71q16 0 29.5-35t25.5-103l7-41q11-68 64.5-181t87.5-153 34-51q0-27-74.5-32.5zm551.5-499q-23-58.5-48.5-80.5t-66.5-35.5-173-13.5q-23 0-47.5 2t-45.5 8q-53 42-71 145.5t-18 142.5q0 112 52 174.5t149 62.5q59 0 123.5-22t97-50.5 52-84.5 19.5-120q0-70-23-128.5zm138 497.5q-85 7-85 34 0 11 39.5 55.5t89.5 161 58 168.5 23.5 115.5 37.5 63.5q55 0 91.5-75t63.5-107 78-32q28 0 55 8.5t51 19.5l14 8q14 9 30.5 16t27.5 7 18-7 7-23q0-14-13-45-63-154-182.5-264.5T1769 1505q-35 0-120 7zm753-448l-9-44q-34-180-138.5-276T1999 648q-146 0-271 80t-125 144q0 12 5 24l11 32q2 5 6 28.5t22 23.5 39.5-13.5 69-29T1836 922q12 0 18 8.5t6 19.5q0 23-34.5 33.5T1719 1044t-72 77q0 14 2.5 27t2.5 26q0 23-3.5 47t-3.5 47q0 4 1 7l3 9q13 0 28-10t141-61.5 219-75 170-23.5q52 0 91 10t53 24l11 10q5 5 10.5 8.5t11.5 3.5q10 0 17-11.5t7-38.5-6-56z"},"children":[]}]};exports.u1F380=u1F380;var u1F381={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1756 738q45-8 90.5-11.5t90.5-3.5q190 0 294.5 71.5T2336 1003q0 46-8.5 86t-21.5 67.5-14.5 34T2280 1302l-14 130-16 133-32 274q-7 67-26.5 97t-19.5 28q-97 115-185 218l-223 258-57 61q-31 34-65.5 47t-68.5 13q-28 0-53.5-5.5T1322 2489l-354-123-174-62q-79-27-201-72t-143.5-131-72.5-275l-62-227-44-154q-4-15-6-28t-2-26q0-39 17-73t38-55l12-12q4-5 17.5-17t22.5-21q-39-23-69-49.5t-30-54.5q0-35 67.5-73.5T512 984q-60-35-90.5-99T391 718q0-205 136-310.5T802 302q102 0 215 80t180 190zm-489 1030q-14-24-25-49t-21-51q-11-3-18-6l-53-20-54-18 74-100q-10-35-23-70l-54-141q-14-36-24-73-68 44-159.5 135.5T759 1509l147 52q130 44 152 52.5t22 17.5q0 7-7.5 13.5t-7.5 21.5l1 13q0 13-14 13-18 0-136.5-46.5T703 1576q2 17 5 34l6 35q18 134 38 265l40 262q9 56 97.5 80.5T1004 2286l28 11q14 6 27 9.5t22 3.5q12 0 14-29.5t2-90.5q0-123-10-246t-13-245zm191.5-696q4.5 7 15.5 7 8 0 14.5-1.5t13.5-2.5q35 0 69.5-3.5t68.5-3.5q110 0 180.5 25t70.5 75q0 32-28.5 53t-60.5 21q-8 0-30-3.5t-49-9.5l-53-11q-27-5-44-9l-6-3q-3 0-6-1-8 0-8 7 0 3 4 7.5t10 7.5l17 12q58 32 126.5 56.5T1900 1320q101 0 218-98t117-198q0-101-89-155.5T1926 814q-138 0-259 34t-167 90-46 116q0 11 4.5 18zM662 935l4 2q2 0 4 1 51 17 100.5 22.5T871 966q21 0 29.5-8t8.5-26l-1-7q0-9 3-18-19-11-60.5-23T793 873.5t-60.5-9.5-76-38-31.5-69q0-38 21.5-54.5T700 686q28 0 62.5 15.5T831 741l39 28 36 30q10 8 20.5 13.5T947 818t22.5-9 26.5-22l27-25h-1q25-22 66-40t41-47q0-30-60-103.5t-139.5-119T773 407q-119 0-198.5 106T495 729q0 76 39 126.5T662 935zm1433 448q0-4 1-8-38 17-82.5 30t-92.5 15q-14 17-30 34.5t-30 35.5q17 26 26 51t9 42q0 29-18.5 44t-47.5 23q-6 135-7.5 263t-1.5 292q0 22 12 22 5 0 10-4.5t8-9.5l162-183q15-18 31.5-41.5t16.5-42.5q0-13 1-26l1-26q10-125 16-252t16-251v-8zm-373.5 156.5q15.5-6.5 15.5-18.5 0-11-9-23l-14-19q-61-75-130-140t-147-119l-35-25q-17-12-40-12-11 0-19 3l-17 6q-12 4-23.5 6.5t-29.5 2.5q-20 0-33-2t-24-6l-16-5q-8-2-20-2-8 0-16 6t-8 17q0 9 4 18l7 16q42 124 97.5 251.5t67.5 153 30 25.5q22 0 60-50t66-65.5 109-15.5q22 0 43.5 2t46.5 2q19 0 34.5-6.5zM416 1110q0 2-1 3 0 19 60.5 37t93.5 39 49 48 16 97q0 20-1 39t-1 36q0 20 4 28.5t13 8.5q12 0 32.5-13.5T730 1394l21-18q23-18 51-42l57-48 55-48q27-23 48-42l33-30q12-11 12-12 0-26-38.5-55.5T903 1069q-13 0-25 1.5t-26 1.5l-66-1q-54 0-106.5 2.5T573 1076h-35q-43 0-77 7.5t-43 22.5zm657-278q-69 62-69 123 0 60 77 96t158 36q39 0 69.5-25t62.5-93l24-44q13-25 13-46 0-38-81.5-73.5T1200 770q-58 0-127 62zm623 966q17-20 34-38l94-109q-25 5-53.5 7t-57.5 2q-33 36-72 83t-67 47q-10 0-23-4t-28-10l-30-12q-16-6-30-10-12 17-26 35t-29 30q27 5 62.5 20t63.5 24 28 57q0 124-3.5 248t-3.5 251q0 38 7.5 58t24.5 20q24 0 27-40t14-183.5 11-287.5l1-39q0-43 6-69.5t16-39.5zM537 1509q-3-13-4-27t-1-28l1-15v-15l-58-21q-29-10-60-24t-60-14q-11 0-18.5 5.5T329 1392q0 26 21 43.5t59 28.5l38 13zm834-795q43 18 81 40.5t61 48.5q26-11 57.5-21t66.5-20l-241-76z"},"children":[]}]};exports.u1F381=u1F381;var u1F382={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2339 1730v146q0 174-130 318t-337.5 221.5T1304 2493q-198 0-329-18.5t-236-57-191.5-96-143-119.5-82-113-40.5-96-15-156v-118q-49-29-75-82t-26-155q0-166 45.5-311.5t121-226T537 797l1-105q0-21-10-22t-50.5-46T437 508q0-91 75-174t131-83q59 0 109 89.5T802 497q0 61-32.5 110.5T680 675l1 57q35-13 69-23t69-17q45-64 86.5-95t76.5-31 62.5 27 47.5 63l99-5q0-18 1-37v-33q-47-23-74-68t-27-110q0-81 76.5-163t128.5-82q59 0 109 89t50 157q0 63-33.5 112t-88.5 68q0 8 1 20v47q42 0 82.5 1t79.5 6q20-20 45.5-37.5T1596 603q30 0 55.5 23t45.5 55q48 9 95.5 24t94.5 33v-17q-42-11-72-63t-30-115q0-65 71.5-155.5T1991 297q60 0 109.5 91t49.5 157q0 61-33 109.5t-89 68.5l2 88q130 76 234.5 179.5t136.5 213 32 267.5q0 98-23.5 163.5T2339 1730zM2046.5 625.5Q2074 592 2074 543q0-55-34-111t-49-59q-42 10-86 72.5T1861 554t26.5 75.5T1965 659q54 0 81.5-33.5zM1596 678q-38 8-84.5 70.5T1465 852q0 61 27.5 87t76.5 26q53 0 82-33.5t29-82.5q0-9-2-18l-4-19q-18-54-40.5-92t-37.5-42zm-244.5-191q28.5-31 28.5-84 0-57-35-112t-49-58q-43 10-86.5 72T1166 412q0 47 26.5 76.5T1270 518q53 0 81.5-31zM1038 895q28-33 28-81 0-53-34-110.5T982 641q-35 4-82.5 68T852 811q0 50 24 83.5t80 33.5q54 0 82-33zM699 578q27-33 27-79 0-53-32.5-110.5T643 325q-45 14-88 74t-43 108q0 45 27.5 74.5T617 611q55 0 82-33zm1522 1159q-20-7-40.5-15t-41.5-8q-60 0-101.5 80t-94 122-118.5 42q-41 0-80.5-8.5t-79.5-8.5q-90 0-158.5 55.5t-131 77.5-131.5 22q-117 0-204-69t-145-69q-14 0-29 4l-32 8q-17 5-34.5 8.5T765 1982q-69 0-134.5-36.5t-107-136T412 1710q-14 0-27 4 0 201 19.5 270t103 156.5 199.5 141 264 74 333 20.5q356 0 537-73.5t280.5-186.5 99.5-242v-137zm-3.5-593Q2143 1019 2030 944q0 40 1 74.5t1 62.5q0 93-16.5 117.5T1962 1223q-49 0-67-25.5t-18-69.5q0-80 2.5-144.5T1884 860q-33-15-66.5-27.5T1750 811q2 11 3 20.5t1 19.5q0 61-32 109.5t-89 68.5q0 26 1.5 50.5t1.5 50.5v326q0 40-21 56.5t-50 16.5q-45 0-64.5-22.5T1481 1433q0-46 3-76t3-65q0-62 2-129.5t2-136.5q-42-13-71-63.5T1391 856q0-49 22-93l-38-2q-19 0-38-1l-1 229 1 21q0 39-21 56.5t-50 17.5q-51 0-67.5-28t-16.5-68v-59.5l2-56.5 3-52 2-54-53 4q4 20 4 45 0 60-32 109t-89 68q3 22 4 49v87l-1 35 1 70-1 164q0 7 1 12v10q0 40-21 56.5t-50 16.5q-42 0-62-21t-20-75q0-94 4-197.5t4-209.5q-43-22-70-60.5T778 828q-49 9-94 26v249q0 39-22 56.5t-50 17.5q-51 0-67-28t-16-69q0-26 1-47l2-40q0-19 1-36.5t1-37.5q-127 74-189.5 206T282 1469q0 66 18.5 94t55.5 28q22 0 46-5t47-5q49 0 84 41.5t69.5 110 67 93T769 1850q37 0 73-8t72-8q54 0 101 32.5t76 63.5 74.5 48.5 93.5 17.5q83 0 154-66t135.5-82 168.5-16q23 0 45 2t42 2q60 0 90.5-31.5t60-89 70.5-93.5 105-36q27 0 54 10t48 10q30 0 45-38t15-92q0-207-74.5-332zM2031 1498q-117 80-311 137t-418 57q-218 0-418-57.5T534 1466l-38-29q-39-28-67-61t-32-64q0-6 2-17t15-11q7 0 17.5 7.5T453 1309l23 22q55 56 182 126t294 110.5 351 40.5q218 0 417-57t371-180l19-12q13-8 25-8 10 0 11.5 9.5t1.5 19.5q0 38-117 118z"},"children":[]}]};exports.u1F382=u1F382;var u1F383={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2223.5 1941q-116.5 186-344 276t-576.5 90q-572 0-808-233t-236-543q0-205 104-392t282-292 568-113q0-45-26.5-85t-79-67.5T1055 515q0-34 30-64.5t62-30.5 107 66 98.5 121 29.5 127q311 6 472 65t268.5 176 162.5 259.5 55 291.5q0 229-116.5 415zM1189 1608q-7 10-7 18 0 15 24 15h208q22 0 22-14 0-7-8-18l-99-106q-12-13-27-13-18 0-29 14zm-464-129q-7 7-7 13 0 5 3.5 8.5t11.5 3.5l301 33q15 0 15-13l-2-9-110-236q-6-11-16-11-8 0-15 7zm1101 261q2-4 2-7v-4q0-9-7-9-3 0-11 4l-97 65q-12 7-24 7-19 0-29-10l-64-51q-11-8-27-8-13 0-25 7l-78 55q-10 7-26 7-15 0-26-8l-85-62q-5-5-10.5-6t-11.5-1q-8 0-15 2.5t-12 7.5l-66 56q-13 11-29 11-11 0-23-7l-103-66q-7-4-19-4-18 0-32 11l-53 51q-6 6-15 9t-18 3q-10 0-18-4l-133-67q-6-3-11-3-8 0-8 10 0 2 1 4l2 7 93 265q3 11 10.5 16t15.5 5 12-3l89-45q10-6 27-6t28 7l111 69q9 5 22 5 8 0 16-2t13-7l88-77q10-8 26-8 6 0 12 1t11 6l88 71q5 5 12 7t15 2q14 0 25-6l105-72q10-6 29-6 17 0 26 5l82 49q5 4 13 4 16 0 24-20zm48-240q15-3 15-13 0-5-5-12l-187-200q-7-7-15-7-10 0-16 13l-104 238q-3 6-3 10 0 12 19 12z"},"children":[]}]};exports.u1F383=u1F383;var u1F384={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2300.5 2055q21.5 17 21.5 45 0 92-164.5 172t-362.5 80q-75 0-157.5-12t-155.5-39q-8 0-16.5-4t-16.5-4q-12 0-14.5 9.5t-2.5 20.5v18q0 38 1 64v7q0 38-8.5 52.5T1389 2479q-175 0-197-6t-22-40q0-32 1-63v-59q0-8-4-14t-15-6q-4 0-6.5 1.5t-5.5 1.5q-83 28-168 43t-167 15q-198 0-362.5-81T278 2101q0-29 22.5-46t50.5-17q26 0 54.5 7t56.5 7q41 0 83-11t77-35l20-14q25-17 35.5-29.5T688 1937q0-22-20-31l-56-20q-57-19-111.5-77T446 1697q0-21 14.5-38t43.5-17q26 0 49.5 5.5t45.5 5.5q43 0 82.5-13.5T753 1601l19-14q16-13 28-29.5t12-31.5q0-28-51-39t-91-58-40-83q0-24 14-36t49-12q110 0 208.5-52t98.5-145q0-24-5.5-30t-21.5-6q-58 0-98.5-27T834 967t74-52.5 144.5-63.5T1186 712l59-80q11-14 25-28t31-14q16 0 30 14t25 28l60 81q62 85 133 139t144.5 62.5T1767 967q0 41-33 66.5t-94 31.5h-19q-8 0-14 6t-6 30q0 90 97.5 143.5T1900 1298q43 0 57 12.5t14 35.5q0 29-29 69.5t-67 55.5l-40 16q-19 8-32.5 16t-13.5 21q0 34 65 81.5t149 47.5q22 0 44.5-5.5t48.5-5.5q30 0 44 17t14 39q0 53-52 110.5t-112 77.5l-56 20q-20 8-20 31 0 14 11 27.5t34 27.5l21 14q35 24 76.5 35t83.5 11q37 0 69.5-7t41.5-7q28 0 49.5 17zm-705.5 51q28 0 54.5 1.5t54.5 1.5h30q33 0 59-14.5t26-46.5q0-12-4.5-21t-15.5-18-204-9-392.5-35-268-75.5-79-55T820 1820q-20 0-35 15t-15 37q0 26 56.5 78.5T1005 2032l73 17q98 22 208.5 38.5T1474 2104zM1070 309q-8-7-8-15 0-11 17-14l109-16q15-2 29.5-12.5T1240 225l45-95q6-14 15-14t15 15l47 94q6 14 22 25.5t30 13.5l108 15q18 2 18 14 0 9-8 15l-80 72q-9 10-14.5 23.5T1432 431q0 7 1 10l20 109q0 2 1 4t1 4q0 14-13 14-6 0-13-4l-96-55q-14-7-32-7-19 0-31 9l-96 53q-8 4-14 4-12 0-12-14 0-5 1-8l21-108 1-10q0-14-6-27.5t-16-22.5zm-33 869q0 13 13 27l21 25q31 37 86 60t123 35l73 14q95 19 199 19 23 0 42.5-9t19.5-40q0-23-13.5-37t-130.5-23.5-210.5-41.5-121.5-58-49-26q-24 0-38 17t-14 38zm70 454q-2 29-41 62t-39 59q0 23 21.5 40.5t48.5 17.5q30 0 91-38t61-97q0-36-6-69.5t-12-74.5-49-41q-30 0-58 13.5t-28 29.5q0 22 5.5 48t5.5 50zm237-40.5q-6 13.5-6 35.5 0 51 62.5 65t129 25 140.5 11q22 0 41-9t19-39q0-19-11-33.5t-30.5-15.5-120-15-133.5-26-68-12q-17 0-23 13.5zM897 2083q-24-24-59-24-34 0-58 24t-24 58 24 58 58 24q35 0 59-24t24-58-24-58zm441-302q-24 24-24 58 0 35 24 59t58 24 57.5-24 23.5-59q0-34-23.5-58t-57.5-24-58 24zm53-636.5q24 23.5 58 23.5 35 0 59-23.5t24-57.5-24-58-59-24q-34 0-58 24t-24 58 24 57.5zM1882 2148q-24-24-59-24-34 0-57 24t-23 58q0 33 23 58t57 25q31 0 57-24t26-59q0-34-24-58zm-771-1138q23 24 57 24 35 0 59-24t24-57q0-35-24-58.5t-59-23.5q-34 0-57 23.5t-23 58.5q0 33 23 57zm-180.5 512q38.5 31 79.5 31 12 0 15.5-6.5t3.5-16.5v-21q0-11 3.5-19t3.5-18q0-16-32-32t-44.5-24-26.5-8q-17 0-29 15.5t-12 33.5q0 34 38.5 65z"},"children":[]}]};exports.u1F384=u1F384;var u1F385={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2416 994q-79 74-198 74-89 0-158-41.5T1962 910q-31 42-45 109.5t-14 170.5q0 55 3.5 108.5t3.5 108.5q0 54 7 70t24 71 17 92q0 100-46.5 163.5T1802 1884t-69 25.5-11 28.5l-8 29q-14 41-49 75.5t-60 48.5-67 21l-29 5q-46 9-57 36.5t-97.5 125-260.5 137-257 43.5-123 8l-63 6q-33 3-67 5.5t-66 2.5q-151 0-237.5-83.5T149 2182t-45-293q0-20 1-39l2-36q7-98 53-199.5T280 1408l83-116q6-9 34-44t28-60q0-18-19.5-54t-19.5-87q0-117 83-197t216-99l40-5q20-2 40-2 27 0 64.5-18.5T910 681l88-54q103-63 300-130t365-67q119 0 233 28t217 87q20-7 39.5-11t39.5-4q147 0 225 71.5t78 208.5q0 110-79 184zM458.5 1433.5Q479 1448 529 1448q22 0 34-13.5t28-27.5q-22-8-36-26t-14-43q0-29 21-50t50-21q32 0 52.5 21t20.5 50q0 9-1 13 12-3 28-8.5t33-5.5q29 0 29 22 0 28-83.5 76T607 1548q0 25 18.5 36.5T681 1596q17 0 35.5-2t35.5-2q135 0 183 80.5t162 80.5q83 0 111-90.5t29-93.5l10-30q5-15 8.5-31.5t3.5-30.5q0-20-8.5-37t-139-89.5-238-121T656 1181q-53 0-87 13t-55.5 49.5-48.5 83-27 70.5q0 22 20.5 36.5zM1371 1919q19-99 63-143t44-83q0-23-50-80t-69-57q-22 0-26 55t-24 119.5-68 101.5-129 37q-44 0-109.5-20.5T900 1788t-66-64-85-24l-27 1q-102 0-162.5-24.5T499 1600q0-11 3-20l6-22q-53-5-87.5-21t-57.5-51q-73 126-103.5 225T229 1908q0 184 78.5 314T523 2352l18-1q58-4 234-8.5t301.5-42 191-104T1360 1974zm240.5-114.5Q1590 1784 1562 1784q-42 0-71 78t-29 107q0 16 7 29.5t26 13.5q44 0 91-54t47-113q0-20-21.5-40.5zm149-398.5Q1660 1275 1561 1191.5T1294 1011 989 881l-55-13q-56-12-102-19t-85-7q-117 0-172.5 62.5T519 1041q0 30 12 40.5t31 10.5q23 0 48.5-5.5t48.5-5.5q104 0 219 45t280 137.5 267.5 186 153 176T1711 1752q26 14 52 14 43 0 70.5-40.5t27.5-96.5q0-92-100.5-223zM2336 689q-46-40-117-40-65 0-112.5 42T2059 801q0 67 48.5 109.5T2225 953q63 0 110-48.5t47-115.5q0-60-46-100zM782 1884l16 14q8 8 13.5 16.5t5.5 17.5q0 16-10.5 21.5T782 1959q-62 0-112.5-42t-65-75.5T567 1808q-10 0-21 3t-20 3q-54 0-99.5-17.5T381 1748q0-14 10-23.5t30-9.5q15 0 30.5 1.5t30.5 1.5q17 0 37.5-3t39.5-7l35-6q15-3 24-3 27 0 46 18t33.5 57.5T743 1846zm185.5-422.5Q991 1438 1025 1438q33 0 56 23.5t23 57.5q0 33-23 56.5t-56 23.5q-34 0-57.5-23.5T944 1519q0-34 23.5-57.5z"},"children":[]}]};exports.u1F385=u1F385;var u1F386={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1337 1206.5q16-21.5 44-21.5 26 0 41.5 18.5t15.5 42.5q0 29-29.5 61.5T1347 1340q-9 0-17.5-26t-8.5-49q0-37 16-58.5zM1063 1505q-21-13-21-44 0-25 19.5-42t45.5-17q28 0 62.5 22.5t34.5 43.5q0 9-31.5 29.5T1105 1518q-21 0-42-13zm344 76q32 10 57.5 34t25.5 51-18.5 42.5-37.5 15.5q-31 0-51-26.5t-20-68.5q0-21 4.5-36.5t11.5-15.5 15 1zm-282-505l1-7q11-24 29-34.5t38-10.5q30 0 57 22t27 93q0 41-10.5 89t-22.5 48q-15 0-70-56.5t-55-110.5q0-16 6-33zm-104 271q-33-6-61-25t-41-52l-3-5q-2-5-2-11v-11q0-33 23.5-53.5T990 1169q28 0 54 20h1q27 25 47 55t34 63l10 18q5 11 5 19 0 7-6.5 10.5t-17.5 3.5q-27 0-50-4zm-128 251q27-10 54.5-14t55.5-4l25-1q23 0 37 4.5t14 14.5q0 15-51 82.5T918 1748q-10 0-15-1l-7-1q-30-7-44.5-28t-14.5-45q0-23 13.5-44.5T890 1598h3zm455 365q-24 25-55 25-30 0-53.5-22.5T1216 1906q0-8 2-12v-2q8-44 40-103.5t46-59.5q17 0 44 59.5t27 99.5q0 20-5.5 38t-17.5 33zm284-256q-39-21-83.5-66.5T1504 1577q0-12 27-19t63-8h40q31 0 58.5 12t44.5 38l3 6q5 9 7 19t2 19q0 31-22.5 52.5T1673 1718q-19 0-39-11h-2zm-131-370q22-93 56-139t81-46q35 0 55.5 23.5t20.5 53.5q0 53-77.5 91t-118.5 38q-11 0-14-7.5t-3-13.5zM467.5 1756q68.5-29 183.5-31h71q15 0 24 6t9 16q0 21-31.5 49t-75.5 55l-47 28q-26 15-57 28t-63 13-57-21.5-25-55.5q0-58 68.5-87zm980.5 672q-11 17-27.5 25t-34.5 8q-41 0-64-36t-23-94q0-38 7.5-76t15.5-74l5-26q6-28 14-47.5t21-19.5q29 0 67 94.5t38 175.5q0 17-3.5 33.5T1452 2422zm590.5-544.5Q1998 1864 1961 1834l-64-48q-22-15-36-29t-14-25q0-12 12.5-19t28.5-8h16q102 0 180.5 19.5T2189 1783l4 5q10 17 10 38 0 33-23 55t-64 22q-37 0-77.5-19.5zM2008 820q22 22 22 52 0 35-26 69.5t-71.5 62-97.5 56.5-79 29q-10 0-14-7.5t-4-18.5q0-40 76-152.5T1955 798q31 0 53 22zM407 1162l-4-5q-9-16-9-35 0-34 24-56t61-22q60 0 164 79t104 103q0 13-15 19t-35 6q-69 0-164.5-20.5T407 1162zm603-531.5q30 47.5 42 120.5l12 74q2 17 4.5 33t2.5 33-3.5 27.5T1052 929q-32 0-84.5-63.5t-82.5-113-30-89.5q0-31 20.5-55.5T931 583q49 0 79 47.5zM1356.5 517q22.5 37 22.5 108l-1 32q-9 145-26.5 225.5T1315 963t-39.5-61-36.5-141l-17-87q-5-20-8.5-43.5T1210 584q0-45 22-74.5t60-29.5q42 0 64.5 37zm-769 244q21.5-22 52.5-22 76 0 191.5 159T947 1080q0 5-4.5 10.5T927 1096q-9 0-18-5l-16-8q-67-35-125.5-72t-130-88.5T566 814q0-31 21.5-53zm308 1242Q851 2078 789 2164l-23 31q-23 30-46 48t-50 23l-6 2q-4 0-11 1-31 0-53-21.5t-22-52.5q0-29 23-67.5T736.5 2008 889 1907l16-8q10-5 18-5 7 0 12 5t5 14q0 15-44.5 90zm244.5 1q8-10 18-10t14.5 9 4.5 23q0 67-13 132t-28 137l-8 39q-8 33-22.5 61t-35.5 44l-6 3q-9 6-19.5 8.5t-21.5 2.5q-34 0-55-24.5t-21-62.5q0-30 14-67.5t35-71.5l25-42q26-41 50-84t55-80zm-518.5-618.5Q779 1420 779 1446q0 9-8 15.5t-21 8.5l-13 3q-78 20-162.5 34T415 1521q-24 0-46-4.5t-40-18.5l-6-4q-14-11-20.5-26t-6.5-32q0-34 29.5-59.5T412 1351q52 0 209.5 34.5zm912-506.5q28.5-84 53-153.5T1643 618t73-38q32 0 54.5 22.5T1793 659q0 26-13.5 54t-30.5 50l-23 31q-39 51-79.5 99.5T1559 987l-17 15q-9 9-20 9-17 0-17-19 0-29 28.5-113zm622.5 212h11q38 0 63.5 22t25.5 56q0 25-13 42l-5 6q-17 21-44.5 33t-61.5 17l-40 7q-67 11-134 18t-136 7q-12 0-23-3.5t-11-15.5q0-13 29.5-34t113.5-63l58-29q68-37 108.5-50t58.5-13zm-478 1327l-7-2q-23-13-40.5-40t-28.5-58l-13-37q-33-90-54-176.5t-21-99.5q0-22 16-22 23 0 77.5 68.5t116 150.5 61.5 140q0 41-23 62t-54 21q-13 0-30-7zm374.5-177.5Q2030 2262 1997 2262h-7q-49-7-99.5-62.5t-97-112.5-87.5-119l-11-18q-7-9-7-18t5.5-13.5 12.5-4.5q25 0 114 51t132 76.5 83 64.5 40 81q0 32-22.5 53.5zM2264 1596l-5 3q-16 8-31.5 11.5t-32.5 3.5q-6 0-13 1-17 0-35-5l-46-10-50-10q-85-17-160.5-42.5T1815 1502q0-15 46-26.5t120-18.5l68-7q48-6 96-6 86 0 120 27.5t34 61.5q0 39-35 63zm-842.5-110q-14.5 14-35.5 14t-35.5-14-14.5-36q0-21 14.5-36t35.5-15 35.5 15 14.5 36q0 22-14.5 36zM1188 1632q-15-15-15-36 0-20 15-35t37-15q20 0 34.5 15t14.5 35q0 21-14.5 36t-34.5 15q-22 0-37-15zm689.5 1006.5Q1852 2664 1815 2664q-36 0-62-25.5t-26-61.5q0-37 26-62t62-25q37 0 62.5 25t25.5 62q0 36-25.5 61.5zm387-239.5q-26.5 26-61.5 26-34 0-60-25.5t-26-61.5q0-38 25-63t61-25q37 0 62.5 25t25.5 63q0 35-26.5 61zm183-434q-25.5 26-62.5 26-36 0-61-26t-25-62 25-61.5 61-25.5q37 0 62.5 25.5t25.5 61.5-25.5 62zm-94.5-936q26-26 62-26t62 26 26 62-26 61-62 25-62-25-26-61 26-62zm-556.5-673.5Q1822 330 1858 330q37 0 62 25.5t25 61.5q0 37-25 62t-62 25q-36 0-61.5-25t-25.5-62q0-36 25.5-61.5zM754 356q25-26 61-26 37 0 62.5 26t25.5 62-25.5 62-62.5 26q-36 0-61-26t-25-62 25-62zM179 962.5q26-25.5 62-25.5t61 25.5 25 62.5q0 36-25 61t-61 25-62-25-26-61q0-37 26-62.5zm126 1058q-25 25.5-61 25.5t-62-25.5-26-61.5q0-37 26-62t62-25 61 25 25 62q0 36-25 61.5zm702.5 639Q981 2685 947 2685q-36 0-62-25.5t-26-61.5 26-61.5 62-25.5q34 0 60.5 25.5t26.5 61.5-26.5 61.5zm1488.5-1058q-22 22.5-53 22.5-32 0-54-22.5t-22-53.5 22-53 54-22q31 0 53 22t22 53-22 53.5zM2098.5 668q21.5-22 53.5-22 31 0 53 22t22 53q0 32-22 53.5t-53 21.5q-32 0-53.5-21.5T2077 721q0-31 21.5-53zM1226 267.5q22-21.5 53-21.5 32 0 54 21.5t22 53.5q0 31-22 53t-54 22q-31 0-53-22t-22-53q0-32 22-53.5zM408 599q22-22 54-22t54 22 22 53q0 32-22 54t-54 22-54-22-22-54q0-31 22-53zm-303.5 897.5Q82 1475 82 1443q0-31 22.5-53t54.5-22q31 0 53 22t22 53q0 32-22 53.5t-53 21.5q-32 0-54.5-21.5zm440.5 920q-22 22.5-53 22.5-32 0-54-22.5t-22-54.5q0-31 22-52.5t54-21.5q31 0 53 21.5t22 52.5q0 32-22 54.5zm907.5 246.5q-21.5 22-53.5 22-31 0-53.5-22t-22.5-54q0-31 22.5-53.5t53.5-22.5q32 0 53.5 22.5t21.5 53.5q0 32-21.5 54z"},"children":[]}]};exports.u1F386=u1F386;var u1F387={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1929.5 454.5Q1958 427 1997 427q38 0 66.5 27.5T2092 521q0 40-28.5 68t-66.5 28q-40 0-68-27.5t-28-68.5q0-39 28.5-66.5zM804 434q23-24 56-24t55.5 24 22.5 56-22.5 55.5T860 569t-56-23.5-23-55.5 23-56zM298 2124.5q-24 22.5-57 22.5-32 0-55-22.5t-23-55.5 23-56 55-23q33 0 57 23t24 56-24 55.5zm1068.5 431Q1344 2579 1311 2579t-56.5-23.5-23.5-56.5q0-32 23.5-55t56.5-23 55.5 23 22.5 55q0 33-22.5 56.5zm1022.5-1067q-23 23.5-56 23.5t-55.5-23.5-22.5-56.5 22.5-56 55.5-23 56 23 23 56-23 56.5zm-2262.5-277Q99 1184 99 1145q0-40 27.5-67t66.5-27q40 0 67.5 27.5T288 1145q0 40-29 67t-66 27q-39 0-66.5-27.5zM2232 763q36-35 85-35 51 0 86 35t35 86q0 50-35 86t-86 36q-50 0-85.5-36t-35.5-86q0-51 36-86zM278 470q36-35 85-35 50 0 85 35t35 85q0 49-35 85t-85 36-85.5-35.5T242 555t36-85zm2137 2042.5q-26 26.5-61 26.5-38 0-64-26t-26-62q0-37 26-63t64-26q35 0 61 26.5t26 62.5q0 35-26 61.5zM556.5 2530q-28.5 28-70.5 28-40 0-69-29.5t-29-68.5q0-40 29-69.5t69-29.5q42 0 70.5 28.5T585 2460t-28.5 70zm938-598q-61.5 70-156.5 70-99 0-159-67t-60-178q0-100 77-256.5t77-427.5q0-61-2.5-119t-2.5-118q0-97 2.5-191t2.5-191V121h131v328q0 147-1.5 291t-1.5 299q0 303 77.5 457.5T1556 1761q0 101-61.5 171zM781 1150l-72-24q-127-42-164.5-85.5T507 940q0-67 48-108.5T677 790q158 0 271.5 211t113.5 315q0 11-6.5 22t-18.5 11q-13 0-35.5-26.5T919 1236t-138-86zm824-105q52-114 131-189t167-75q54 0 84.5 27.5T2018 873q0 95-143 147.5t-201 139-93 86.5q-11 0-19.5-8t-8.5-22q0-57 52-171zm-734 790q42 2 86 12.5t44 29.5q0 37-84.5 58T775 2000t-116 107.5-125 63.5q-37 0-65-21.5t-28-66.5q0-109 126.5-179t277.5-70zm258 245q10 2 22.5 6.5t12.5 18.5q0 10-6.5 20t-15.5 20l-17 19q-25 26-62 153.5T931 2445q-37 0-65-32t-28-86q0-101 90.5-174t200.5-73zm660.5 420q-29.5 28-71.5 28-28 0-52.5-10.5T1616 2479t-38-83-16-135-19-115.5-16-55.5q0-13 7-21t21-8q65 0 164.5 124.5T1819 2412q0 60-29.5 88zM578 1555q-71 20-128.5 52.5T334 1640q-55 0-92-36t-37-87q0-92 92.5-142t229.5-50q111 0 223 38t191.5 100.5T1021 1566q0 10-7 17.5t-22 7.5q-21 0-86.5-28T730 1535q-81 0-152 20zm1675.5 768q-32.5 39-82.5 39-86 0-141.5-114.5t-134.5-200-192-123.5l-18-5q-17-5-31-14t-14-21q0-24 33-36.5t83-12.5q161 0 345.5 126t184.5 271q0 52-32.5 91zm213.5-398q-34 35-82 35-58 0-129.5-63T2082 1782.5t-200-51.5q-22 0-40 2.5t-45 2.5q-15 0-28.5-4.5T1755 1712q0-12 10.5-26t26.5-26l15-10q55-31 115.5-44.5T2045 1592q218 0 337 77.5t119 172.5q0 48-34 83zm-190.5-849.5q53.5 36.5 53.5 97.5 0 53-43.5 88t-123.5 38l-53 2q-145 8-241.5 54t-136 94.5-62.5 48.5q-16 0-22-12t-6-28q0-40 39.5-115t133.5-152.5 176.5-114.5 160.5-37q71 0 124.5 36.5z"},"children":[]}]};exports.u1F387=u1F387;var u1F388={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1142 2179h-22q23 21 42 44l33 41q8 11 18 26t10 27q0 29-66 56.5t-123 27.5q-21 0-32-20t-11-73q0-29 2.5-50t2.5-41q0-13-1-27-51 57-105 85t-102.5 40-144.5 12l-34-1h-36q-197 0-277 81t-84 182-55 101q-26 0-35.5-11.5T112 2645q0-100 54.5-193.5t146.5-146 275-52.5h84q124 0 185.5-32.5T961 2120q-165-151-251-380.5T624 1238q0-259 113.5-479.5T1053 414t455-124q234 0 439 117.5T2270 730t118 441q0 291-157.5 519T1780 2049t-614 131q-13 0-24-1z"},"children":[]}]};exports.u1F388=u1F388;var u1F389={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1552 1804q20 0 38.5 4t32.5 13q-34 157-160 244t-322 160l-537 221-73 31-126 52-30 13q-27 12-51.5 21t-40.5 9q-29 0-48.5-19.5T215 2502q0-32 12.5-60t23.5-57l39-109q51-140 117-316.5t99-263.5l56-148q41-108 79.5-199.5t96-152T867 1111q5 25 16.5 49t27.5 44q-72 27-103 87.5T777 1445q0 127 70.5 248.5t191 195T1289 1962q92 0 156.5-42t86.5-114q5-2 11-2h9zm-286.5-375q13.5-33 32.5-98t38-120l25-73h-1q21-59 47-109t61.5-85 98.5-52.5 91-41 34.5-64.5 24.5-94.5 42-77.5 84-33l33-5q30-5 54-22.5t43-55.5l21-44q22-47 63-74t95-33l4-2q13 0 30.5 17t34.5 49.5 33 60.5 16 36q0 13-18.5 22t-21.5 11l-52 29q-38 22-69.5 77.5t-60 88.5-92.5 37l-33 2q-61 6-73 28.5t-46.5 92-75.5 108-105 57-120.5 79.5-104.5 160-63 122q-22 36-32 71t-25 35q-8 0-17-12t-9-32q0-22 13.5-55zm-367-1049q51.5-99 61-102t17.5-3q37 0 72 32.5t52.5 42T1119 374t-22 42.5-44.5 69T1030 559q0 19 11.5 35.5T1074 627l22 18q30 28 48 65t18 79q0 62-47.5 138.5T1067 1056q0 38 31 96t31 102q0 59-31.5 121.5T1025 1459l-13 4q-18 6-37.5 9.5T944 1476q-8 0-9.5-2t-1.5-5q0-9 13-17.5t35-56 22-108.5q0-39-22-76t-41-67-19-86q0-47 28-115.5T977 832q0-56-42-92.5t-65-79T847 560q0-81 51.5-180zM2442 1866l-16 21-24 39q-13 23-19 29.5t-21.5 32-35.5 25.5q-82 0-131-50t-97-75-108-25q-29 0-58.5 2t-58.5 2q-85 0-122-28t-85-60.5-114-32.5-128.5 23-116.5 57l-10 6q-7 4-15 4-6 0-8.5-7.5t-2.5-15.5q0-22 9.5-39t30.5-33l22-17q80-64 148.5-92t133.5-28q33 0 66.5 8t65.5 25l42 29q35 26 72.5 43t71.5 17q35 0 86-15t85-15h7q72 5 142.5 53t143.5 72l16 5q7 3 15 4h8q10 0 13 4.5t3 8.5q0 10-10 23zM1357.5 458q30.5-67 53.5-67 17 0 37 7t34 13l23 10q24 12 41 25.5t17 23.5q0 7-33.5 90.5T1470 644q-14 0-78.5-25t-64.5-41q0-53 30.5-120zM1821 2189q22 34 30 52.5t8 31.5q0 17-22 30t-29 18l-19 15q-19 16-36.5 25t-33.5 9q-26 0-32-13t-17-34l-20-37q-10-19-17-38t-7-35q0-31 33.5-51t53-32 42.5-12q22 0 35.5 23t15.5 26zM442 865q-7-11-36-49t-29-58q0-17 37.5-46.5T479 682q17 0 30.5 16t34.5 35 50 58.5 29 49.5q0 13-14 19.5t-48.5 43T508 940q-10 0-25.5-18T458 889zm1929-69q8 28 18 59.5t10 58.5q0 23-14.5 31.5T2341 959l-54 10q-26 5-54 7l-16 3q-8 2-13 2-17 0-27.5-38t-10.5-70q0-36 10.5-46t89.5-22.5 92-12.5q9 0 13 4zm-443 557q1-5 1-10v-30q0-14 1-27t6-25q21-5 43.5-6t45.5-1q21 0 42-2t44-2q20 0 23 10.5t3 38.5q0 23 5 44.5t5 44.5q0 14-10 17t-25 3q-8 0-15-1h-45q-45 0-85-5.5t-40-36.5q0-7 1-12zM402 328q17-13 39.5-35t39.5-22q14 0 38 31t40 44l18 16q8 8 14 14.5t6 11.5q0 6-34.5 49.5T496 481q-17 0-37.5-22t-47-50.5T385 358q0-17 17-30zm1827 2100.5q-19 18.5-38 48t-40 29.5q-13 0-64-33t-51-53q0-18 34.5-45t46.5-44 28-17q4 0 53.5 27.5t49.5 50.5q0 18-19 36.5zM1456 1319q54 61 87.5 116t56.5 112q-48 0-96 15-17-42-41-82t-52-77q17-31 26.5-49.5t18.5-34.5zm-1152-60q-2 17-12 30.5t-28 13.5q-15 0-32-7t-31-12l-16-5q-14-5-25.5-14t-11.5-22l3-17h-1q6-31 18-56.5t29-25.5q11 0 18.5 4.5t28.5 9.5l35 9q17 5 30.5 10t13.5 10-3 16l-13 43q-3 10-3 13zm881-41q-3-25-15-52.5t-23-47.5q38 11 71 26.5t66 33.5l-25 78q-36-23-74-38z"},"children":[]}]};exports.u1F389=u1F389;var u1F38A={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M777.5 495Q954 320 1196 320q177 0 326.5 98.5T1741 678q94-32 189-32 240 0 416.5 175t176.5 420q0 153-72.5 285T2263 1732.5t-170 74.5q-26 0-51-12t-55-53q-121-167-210.5-386T1655 862l-70 48q-232 156-474.5 232.5T759 1219q-76 0-117-89t-41-215q0-245 176.5-420zM1766 794q22 262 108.5 487.5T2093 1689q140-51 226.5-175t86.5-272q0-202-143-340t-333-138q-82 0-164 30zM759 1101l60-8q201-26 424.5-127.5T1634 727q-57-134-176.5-211.5T1196 438q-193 0-334.5 140.5T720 914q0 97 39 187zm795 148q0 9 1 24 0 69-46 119t-125 60.5-93 85.5l-9 48q-17 109-127.5 118T1044 1818v21.5l2 10.5 2 5v4q0 12-8 21t-21 9q-6 0-12-3l-71-31q-15-5-19.5-16.5T912 1786q0-73 43-117t84-50 73-12.5 42.5-81 48.5-113 97-48.5 91-39.5 32-83.5v-18l-1-8q0-11 7.5-20.5t21.5-9.5q6 0 12 3l71 31q17 7 18 21zm273.5 1064q-30.5 49-56.5 49-4 0-11-2l-70-12q-10-2-17-10.5t-7-19.5 9-22l7-7q14-14 26.5-37t12.5-48q0-49-54.5-94t-54.5-98q0-24 7.5-45t16.5-41l16-37q7-17 7-34 0-40-56-94.5t-56-130.5q0-43 24.5-87t47.5-44l13 1 71 14q9 0 16 8.5t7 19.5q0 13-21 38.5t-21 64.5q0 53 56 107.5t56 116.5q0 26-7.5 49t-15.5 42l-16 36q-8 17-8 30 0 31 31 51.5t54.5 59.5 23.5 81q0 46-30.5 95zm-591-74.5q3.5 20.5 3.5 43.5 0 63-37 101t-75.5 57.5-40.5 57.5l-2 35q-6 72-38.5 109.5T989 2680q-3 0-5-1l-74-30q-8-3-13-10.5t-7-15.5q0-21 28.5-34t33.5-73l5-51q2-28 22.5-58t42.5-45l43-28q21-14 33.5-32t12.5-53q0-17-3-35t-3-39q0-87 76.5-120t76.5-110q0-10-1-17t-2-10l-2-2-1-9q0-11 8-20.5t21-9.5q4 0 12 2l69 28q2 0 13 8.5t11 57.5-26.5 94.5-76.5 65-50 70.5q0 15 3.5 35.5zM274 1882q-18 0-26-11l-47-59q-7-7-7-17 0-13 10-21t27-8q49 0 80.5-53t63.5-71.5 109-23.5 99.5-71 60-91.5T719 1430q13 0 23 1.5t20 1.5q42-2 70-33t32.5-54 28.5-23q14 0 23 11l47 58q5 8 5 19v8q0 28-49 79t-111 51q-14 0-24-1h-18q-51 0-71.5 58t-59.5 94-110 36q-64 0-81 18.5t-56.5 73T274 1882zm492 124h-91q-14 0-22-9t-8-22v-90q0-12 9.5-21t20.5-9h91q11 0 19.5 9t8.5 21v90q0 16-10 23.5t-18 7.5zm-332-739q10-8 21-8t22 8l63 64q8 10 8 21t-8 21l-63 64q-5 4-10.5 7t-11.5 3q-5 0-10.5-3t-10.5-7l-64-64q-8-8-8-21t8-21zm-242 248q-9 8-22 8t-21-8l-64-64q-8-8-8-21t8-20l64-65q11-9 21-9 5 0 11 2.5t11 6.5l63 65q9 9 9 20 0 10-9 21zm457 618q5 3 6.5 8.5t1.5 11.5q0 14-8 21l-64 64q-9 9-21 9-13 0-20-9l-65-64q-5-4-7-10t-2-11 2-10.5 7-9.5l65-64q7-10 20-10 12 0 21 10zm791 360q8 10 8 21 0 12-8 20l-61 61q-10 8-21 8-13 0-21-8l-60-61q-9-7-9-20 0-6 2-12t7-9l60-61q4-5 10-7t11-2q12 0 21 9zm756-627q8-10 21-10 5 0 10.5 2.5t9.5 7.5l60 60q9 9 9 21 0 13-9 20l-60 60q-4 5-9.5 7.5t-10.5 2.5q-14 0-21-10l-62-60q-3-4-5.5-9t-2.5-11q0-7 3-12l5-9zm-127 640q8 8 8 20 0 11-8 21l-61 60q-11 8-22 8-5 0-10.5-2t-9.5-6l-60-60q-9-9-9-21t9-20l60-61q9-9 20-9 7 0 12 2.5t10 6.5zM914 2292q0 14-8.5 22t-20.5 8h-91q-13 0-21.5-9t-8.5-21v-91q0-10 8.5-19t21.5-9h91q12 0 20.5 8.5t8.5 19.5v91zm549-117q11 0 20 9t9 20v85q0 14-9 22t-20 8h-86q-13 0-21-8t-8-22v-85q0-11 8-20t21-9h86zm-896 221q12 0 21 9t9 20v92q0 11-9 19.5t-21 8.5h-90q-11 0-21-7.5t-10-20.5v-92q0-14 10-21.5t21-7.5h90zm-199-200q10 8 10 22 0 12-10 20l-63 65q-10 8-22 8-5 0-10.5-2t-9.5-6l-64-65q-9-7-9-20 0-14 9-22l64-63q4-5 9.5-7.5t10.5-2.5q12 0 22 10zM81 1000l33-55q3-6 10-10.5t14-4.5q6 0 11 2l10 6q14 14 29 21.5t37 7.5q11 0 24-4l28-7q13-4 30-7.5t37-3.5q62 0 105 60.5t102 60.5q10 0 20 8t10 22l-3 72q0 18-13.5 23.5T533 1197q-41 0-76.5-18.5T401 1134l-21-27q-12-15-24.5-22t-35.5-7q-21 0-48.5 10.5T207 1099q-50 0-90-31.5T77 1015q0-8 4-15zm2411 1436q14 9 14 23 0 8-5 16l-46 77q-9 15-25 15l-5-1h-3q-64 0-143-43.5T2164 2399q-73-11-124-54t-79.5-99-28.5-73q0-7 2.5-11.5t6.5-9.5l63-64q8-8 21-8 20 0 34.5 35.5t39 70.5 55.5 57q22-81 63.5-124.5T2325 2075q53 0 83 38.5t30 92.5q0 46-31 92.5t-84 74.5q57 44 105.5 51t57.5 9zm-229-169q43-19 58.5-32.5t15.5-27.5q0-11-8-18.5t-21-7.5q-22 0-34 21t-12 49q0 11 1 16z"},"children":[]}]};exports.u1F38A=u1F38A;var u1F38B={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1647 990q-33-36-66.5-69t-66.5-63q35-57 55-114 49 36 97 77.5t96 89.5q-22 26-51.5 48.5T1647 990zm696 1194q-22 19-46 26t-49 7q-28 0-56-6l-55-12q-11-110-29.5-210.5T2066 1795q14 5 28 6.5t29 1.5q36 0 71-9.5t58-28.5q29 96 52 200t39 219zM774 441q10-7 27-8h14q121 17 226.5 49.5T1237 554q-11 23-17.5 46.5T1210 647q-123-66-237.5-103.5t-161.5-45-47-36.5q0-14 10-21zm1371 1847q19 10 42.5 14t49.5 4q35 0 66.5-8.5t50.5-27.5q9 77 14.5 157t8.5 165q-19 15-47.5 24t-60.5 9q-33 0-64-9.5t-51-23.5l1-67q0-62-2.5-121t-7.5-116zM937 1124q20 10 30.5 29t10.5 41q0 16-4 27l-17 42q-73 176-210.5 336T440 1818l-13 4q-6 2-12 2-31 0-55-22l-207-199q-23-20-23-57 0-26 15.5-46.5T185 1472q17 0 121-59t201.5-167.5T633 1077t81-60q18 0 37 10zm-522 620q141-52 253.5-173.5T863 1274l37-80-186-99q-75 127-151.5 209t-153 138.5T208 1547zm2047.5-232.5q-7.5 16.5-21.5 28.5l-235 199q-13 11-27 15t-28 4q-56 0-167.5-88.5t-189-210.5-114-228-36.5-133q0-20 9-39t26-31l201-141q11-8 23-11t26-4q57 0 87 68.5t100.5 175.5 143.5 179 141.5 96 68.5 86q0 18-7.5 34.5zM2386 1476q-126-42-240.5-177T1956 1010l-27-55-202 143q52 201 152 338t221 209l51 30zm-757 404q23 11 36 32t13 46q0 10-1 15l-10 42q-23 99-73 221t-116 217-124 143.5-74 55-33 6.5q-14 0-26.5-3.5T1197 2643l-275-192q-17-12-26.5-31t-9.5-39q0-49 51.5-78.5t122-101.5 125.5-172 76.5-185 87.5-85q19 0 36 9zm-382 695q60-41 109-96.5t85-115.5 66-131.5 49-138.5l39-136-246-113q-47 175-140 305.5T1011 2352l-41 29 23 16q15 12 36 26l94 66q56 40 124 86zM170 809l-2-10 6-25q12-53 51.5-124t108-117T492 487q55 0 92.5 20.5T641 562q11-11 36.5-23.5T742 526q61 0 138 46t115 129.5 38 190.5q0 31-3 53t-3 23l-4 6-9 2q-200-81-300-202 0 82-42.5 160t-106 133-72.5 55l-4 3-4-1-6-6q-23-62-33-118t-10-108q0-38 5-72t18-66q-117 51-281 57zm1194 164q-9 0-64-92.5T1245 689q0-98 62.5-180.5T1451 426q5 0 9.5 1t9.5 1l-2-12q0-6-1-14 0-83 86-147t181-64q84 0 165.5 39t106.5 64l4 8-4 7q-126 102-244 142 123 83 176 307l-2 8q-5 2-25.5 5t-52.5 3q-94 0-176-27t-133-81q-10 67-54 145t-117 162l-7 4zm409.5 751q-12.5 50-31.5 90l-12 26-4 2-8-3q-173-120-233-248-26 46-74 86t-133.5 69.5T1152 1776l-8-1-3-9q0-110 22.5-192.5T1236 1436q-123-11-263-77l-6-5 1-8q7-13 58.5-62t115-78 126.5-29q87 0 159.5 47t77.5 122q9-3 23-6.5t30-3.5q76 0 152 80t76 204q0 54-12.5 104z"},"children":[]}]};exports.u1F38B=u1F38B;var u1F38C={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2504 1017l-274 652q-5 11-16 18.5t-27 7.5q-123 0-235.5-43.5t-186-152.5-173-135.5T1391 1337l-39 81 362 687q7 16 7 30 0 24-19 44t-46 20q-17 0-33-10t-24-27l-299-634-297 634q-8 19-25 28t-34 9q-27 0-45.5-20t-18.5-46q0-7 1-14t5-14l362-687-37-81q-153 0-233.5 34.5T817 1516t-179 143-197 35l-27 1q-17 0-28-7.5t-16-18.5L96 1017q-4-5-4-17 0-17 12-29.5t29-12.5q90 0 160-26.5t159-127T652 658t240-50l37-1q11 0 22 7t18 18l331 692 333-692q5-11 15.5-18t22.5-7l38 1q141 5 252.5 55.5T2177 836t290 122q17 0 28.5 12.5t11.5 29.5q0 11-3 17zm-1351 202l-2-6-230-481q-8-13-20.5-23.5T867 698q-18 0-26.5 1t-12.5 1q-80 13-136.5 36.5t-93 51.5T483 897.5t-143.5 105T246 1031t-29 37q0 10 4 19.5t6 18.5l136 321q21 51 34 79l26 59q10 20 32 28.5t57 8.5q33 0 104-26t129-107 106.5-122 123.5-64 127-25.5 52-29.5q0-5-1-9zM794 994q43 47 43 111 0 85-61.5 150T632 1320q-62 0-106-43.5T482 1165q0-84 56.5-151T681 947q70 0 113 47zm1580 112q2-8 6.5-17t4.5-19-6-21.5-93-35.5-184-131-191.5-145.5T1733 698q-25 0-33.5 9t-19.5 25l-229 479-4 18q0 14 13 18l22 8q131 17 211.5 60t151 140.5 140.5 122 103 24.5q48 0 69-15t31-40zm-299.5 171.5Q2030 1320 1970 1320q-84 0-145.5-66t-61.5-149q0-64 43.5-111t112.5-47q88 0 144 69.5t56 148.5q0 70-44.5 112.5z"},"children":[]}]};exports.u1F38C=u1F38C;var u1F38D={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1843 1846q16 6 29.5 21.5t13.5 38.5v426q0 21-15.5 33t-87.5 42.5-203.5 52.5-290.5 22q-237 0-418-50.5T690 2332v-426q0-29 19-44t43-23V861q0-116 60.5-203T967 571q32 0 63.5 12t53.5 34V406q0-115 61-203.5t152-88.5 152.5 86.5T1511 406v336q29-23 56.5-35t59.5-12q89 0 152.5 85t63.5 207v859zm566.5-224q-50.5 12-107 32t-78 31-46.5 22.5-87 50.5-76 51-44 33q-5-17-12-26t-19-21v-675q44-52 104-83t110-31q12 0 21.5 4t9.5 18q0 9-5 21.5t-13 25.5l-7 12q-4 9-27 52.5t-23 68.5q0 19 13 19 3 0 53.5-15t146.5-15q48 0 70 7.5t22 22.5q0 22-28.5 41t-86.5 67.5-92 92.5l-5 11q-3 6-3 12t13.5 11.5 36.5 11.5l46 13q25 8 48 18l28 13q38 19 63 38t25 37q0 17-50.5 29zM482 1010q37 6 86.5 34.5T655 1112v668q-16 11-25.5 22.5T611 1831l-7-7q-165-129-359-188-16 0-60.5-13.5T140 1593q0-22 41.5-48.5t107.5-52 89-27 23-14.5q0-12-26-45.5T237 1284l-15-10q-20-13-28.5-24t-8.5-23q0-15 22-22.5t70-7.5q46 0 91 5t89 19l10 4q5 2 10 2 13 0 13-19 0-13-5.5-28.5T471 1148l-16-31q-4-8-7.5-15.5T441 1087q-3-4-7-12l-8-15q-5-8-8-16.5t-3-15.5q0-14 10-18t21-4q10 0 20 1zm1128 780q12-9 12-22 0-36-88-88.5t-245-52.5q-116 0-196.5 25t-123 56-42.5 39q-4 8-4 13 0 10 11 18l330 194q6 6 18 6t21-6zm-735-778.5q41 59.5 92 59.5 44 0 87-55.5t43-144.5q0-99-41-159.5T967 651q-59 0-96 66t-37 144q0 91 41 150.5zm660.5 124q39.5 61.5 91.5 61.5 46 0 89-58t43-152q0-89-40-149.5t-92-60.5q-60 0-95.5 65.5T1496 987q0 87 39.5 148.5zm-330.5-579q39 59.5 92 59.5 50 0 91-63t41-147q0-89-41.5-149t-90.5-60q-59 0-95 64t-36 140q0 96 39 155.5zM1553 2025l-107 10q-56 6-110 6v361q59 0 112.5-5t104.5-13v-359zm-295 17q-60-3-113.5-4.5T1040 2027v360q51 8 105.5 11t112.5 4v-360zm-296-26q-16 0-81.5-15.5T768 1967v343q35 18 83 34.5t111 28.5v-357zm846-49q-33 16-80 27t-96 19v356q55-12 97-27t79-32v-343zm-64.5-384q55.5-26 55.5-69 0-37-25-37-5 0-16 5.5t-14 5.5q-33 18-56 25.5t-52 7.5q-56 0-100-19t-57-19-18.5 10.5-5.5 20.5q0 43 50 69t120 26q63 0 118.5-26zM807 1428q-8 5-10.5 13.5T794 1458q0 46 50 69.5t120 23.5q64 0 117-25t56-69q0-13-3-25t-20-12q-8 0-17.5 5.5t-12.5 5.5q-30 17-55 25t-55 8q-61 0-104-19.5t-52-19.5q-3 0-6 1zm608-453q-27 17-53 25.5t-58 8.5q-30 0-64-7t-59-20v93q26 12 53.5 17t55.5 5q29 0 64-5.5t60-22.5v-51q0-18 1-27v-16z"},"children":[]}]};exports.u1F38D=u1F38D;var u1F38E={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1134 2331q14 0 23.5 8.5t9.5 22.5v115q0 14-9.5 23.5t-23.5 9.5H292q-14 0-23.5-9.5T259 2477v-115q0-14 9.5-22.5t23.5-8.5h842zm1173 0q14 0 23.5 8.5t9.5 22.5v115q0 14-9.5 23.5t-23.5 9.5h-844q-14 0-22.5-9.5t-8.5-23.5v-115q0-14 8.5-22.5t22.5-8.5h844zm163.5-212.5q-44.5 54.5-102 65.5t-71 25.5-47.5 18.5l-31 4q-81 13-165.5 15.5T1884 2250q-84 0-168-2t-166-16l-31-4q-35-5-48-19t-76.5-26.5-95.5-62.5q-32 50-94.5 62t-76.5 27-48 19l-31 4q-81 13-165.5 15.5T714 2250q-84 0-169.5-2.5T380 2232l-32-4q-35-5-46.5-18.5t-72.5-26-103-67.5-42-130q0-110 78-186t103-105.5 77-136.5 144-159q-48-40-75-96.5T384 1179q0-26-4.5-45t-4.5-38q0-70 35-124t91-89l-1-9q2-42 32.5-67.5T622 773q-19-80-28.5-176.5T584 411q0-67 7-87.5t38-33.5 78-13q57 0 91 13.5t39.5 34.5 5.5 92q0 89-10 187t-27 169q65 11 91.5 36.5T926 874l-1 9q56 35 91 89t35 124q0 17-2 33.5t-6 36.5q0 143-102 233 57 32 95.5 81t67.5 111l28 55q26 50 83 102t84 88q31-43 88.5-91t101.5-144q0-5-1-14 0-51 38.5-91t91.5-71l19-14q9-7 19-12-24-22-44-47.5t-32-56.5q-87-31-139.5-89t-52.5-133q0-93 58.5-175.5T1625 748q6-26 18-48.5t28-42.5l-57-42q-34-26-61-75.5T1526 435q0-57 33.5-93.5T1655 305q10 0 22 3l22 7 20 7q9 4 15 4 16 0 22.5-26.5t43-56.5 85.5-30q45 0 80.5 25t42.5 56.5 8.5 34 11.5 2.5q11 0 37-13t48-13q62 0 95 35.5t33 92.5q0 72-39.5 127T2100 654q14 19 24.5 43t15.5 49q116 62 178.5 146t62.5 181q0 75-52.5 133.5T2191 1295q-14 31-34 56.5t-44 47.5l11 6q12 6 67 43.5t76 83.5l9 19q8 18 8 36 0 5-1 9l-2 10q21 47 45.5 79t47.5 52l41 38q65 63 82.5 116.5t17.5 95.5q0 77-44.5 131.5zM888 1332.5q71-61.5 71-153.5 0-18-3-35-24-20-50-36l-53-31q-87-52-106-82.5T712 964q-12 0-31.5 30.5T576 1076t-106 68l-2 16q0 9-1 19 0 92 70.5 153.5T712 1394q105 0 176-61.5zm-99-112q-16-12.5-16-35.5 0-18 12-30.5t37-12.5q28 0 39.5 14t11.5 31q0 20-13 33t-37 13q-18 0-34-12.5zM565 1156q11-14 39-14 25 0 37.5 12.5T654 1185q0 23-16.5 35.5T601 1233q-22 0-34.5-13.5T554 1187q0-17 11-31zm638.5 703.5q-41.5-59.5-98-107t-84-137-65.5-123-86-48.5q-35 16-74.5 24.5T712 1477q-42 0-81-8t-73-25q-52 16-88.5 50.5t-66 124.5-79.5 132-96 104.5-46 121.5q0 64 43.5 101.5T327 2116t129.5-40.5T557 1979t51-56q14 0 18.5 22t25.5 34 62 12q45 0 64.5-13.5t23.5-34 17-20.5q22 0 50 53t99.5 96.5T1100 2116q69 0 107-41.5t38-97.5q0-58-41.5-117.5zM786 1514q13 0 21 9t8 23l-45 334q-2 14-12.5 23t-24.5 9h-40q-14 0-24.5-9t-12.5-23l-45-334q0-14 8-23t21-9h146zm277 391q25 11 42.5 32t17.5 49q0 32-19.5 42.5T1059 2039q-77 0-146.5-80.5T843 1809q0-26 7-36.5t16-10.5q28 0 69.5 50t88.5 73zm-485-133.5q8 9.5 8 34.5 0 66-68.5 149.5T369 2039q-29 0-47-12t-18-43q0-54 65-82.5t97-61.5l22-24q27-30 44-42t30-12q8 0 16 9.5zM1725.5 690q-25.5 37-25.5 68 0 49 55 81.5t133 32.5q70 0 122-29.5t52-87.5q0-38-22-70.5t-22-48.5q0-17 27.5-30t72-61.5T2162 454q0-24-15-43t-39-19q-19 0-35.5 13t-27.5 31q-13 23-34.5 92.5T1959 598q-11 0-18-8.5t-7-19.5q0-15 4-33l7-37q4-20 7.5-42.5t3.5-47.5q0-46-19.5-72.5T1884 311t-50 26.5-17 79.5q0 28 4.5 57t10.5 55l5 16q2 8 2 16 0 17-7.5 25.5T1813 595q-18 0-31.5-19t-25.5-57l-11-34q-22-62-42-77.5t-44-15.5q-25 0-39 19t-14 43v10q0 26 41 75.5t72.5 64T1751 636q0 17-25.5 54zm29.5 674l8 3q8 4 37.5-1t60.5-5q40 0 73.5 2t65.5 7q58-29 95-75.5t37-115.5q0-66-34-123t-90-91q-26 9-55.5 14.5T1888 985q-34 0-66-5.5t-60-14.5q-56 34-89.5 91t-33.5 123q0 63 31.5 110.5t84.5 74.5zm-185 204q-4 5-4 13 0 11 10 18l301 207q7 4 18 4 10 0 18-4l280-193q11-9 11-25 0-7-1-9 0-7-30.5-42.5t-100-66.5-172.5-31-177 27-113.5 60.5-39.5 41.5zm815 310q-30-52-81-100l-31-29q-15-14-28-29.5t-21-32.5l-144 99q33 30 47 51.5t90 58 76 90.5q0 32-19.5 42.5T2229 2039q-72 0-136-68.5t-78-141.5l-59 41q-13 10-28.5 14t-32.5 4-32.5-4-29.5-14l-77-53q-7 68-73.5 145t-143.5 77q-29 0-47-12t-18-43q2-55 76.5-89t95.5-63.5 53-52.5l-148-102-16 29q-7 14-50 53t-77 84-45 74-11 60q0 64 43.5 101.5T1497 2116q60 0 131-41.5t99-96.5 51-55q14 0 18.5 22t25.5 34 62 12q45 0 64.5-13.5t23.5-34 17-20.5q22 0 51 54t100.5 96.5T2270 2116q69 0 107-41.5t38-97.5q0-47-30-99zm-424.5-657.5Q1944 1208 1944 1185q0-18 12.5-30.5t36.5-12.5q27 0 39.5 14t12.5 31q0 19-13.5 32.5T1996 1233q-19 0-35.5-12.5zM1725 1187q0-19 12.5-32t38.5-13 38 12.5 12 30.5q0 23-16 35.5t-36 12.5q-22 0-34.5-13t-14.5-33z"},"children":[]}]};exports.u1F38E=u1F38E;var u1F38F={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M875 1495q-124 0-205.5-109.5T588 1126q0-61 17.5-120.5T668 894l16-20q104-124 334.5-222t548.5-98q91 0 181 4.5t181 6.5q66 0 118.5-3t84.5-10l37-7q21-4 43.5-7t43.5-3q33 0 56.5 10.5T2336 587q0 45-35.5 94.5T2258 743l-32 52q-18 29-18 57 0 33 36 54.5t81 31.5 69 26 24 42q0 87-164.5 169t-331.5 95l-167 14q-61 5-119.5 15t-117.5 24q-5 0-9.5-2.5t-4.5-9.5q0-5 13-32.5t13-83.5q0-81-22-123t-39-42q-7 0-9 3.5t-2 5.5q0 25 5.5 48.5t5.5 49.5q0 75-42 148.5t-99.5 91.5-113 45.5-141.5 51-173 23.5q-18 0-25-2zm1426.5 544q-150.5 102-332 127t-309.5 38.5-319 92.5-337 79q-124 0-204-112t-80-263q0-148 97-253t234.5-166.5T1338 1484t387-36h81q41 0 87 1 43 0 127-10.5t152-34.5 109-24q25 0 42 11.5t17 40.5q0 75-44.5 147.5T2251 1700q0 62 100.5 85t100.5 75q0 77-150.5 179zm46.5-159l-85-29q-42-15-72.5-55.5T2160 1702q0-55 36-125t47-99q-10 3-122 32t-228 29h-177q-258 0-428.5 52T1019 1701q97 32 156 135t59 235q0 48-10 95t-34 88q56-16 150-52.5t163.5-63.5 74.5-160l2-22q0-6 3-10t9-4q21 0 33.5 36.5t12.5 71.5q0 18-2 35t-7 32q56-11 257.5-33.5T2207 1988t141-108zM683 2419l14 85q7 44 7 82 0 17-12.5 32.5T656 2634q-20 0-36.5-15T590 2479.5 564 2290t-57.5-425-53.5-402-36-258l-31-244q-8-43-12-94l-1-7q0-7 5-7 8 0 14.5 2t14.5 2q31 0 39.5-5.5T467 846q4 0 4 7 2 9 2 14 0 6 3 21.5t12 85.5l48 358q16 116 35.5 261.5T595 1771zm306-1079.5q42-61.5 42-155.5 0-109-56.5-195.5T840 902q-65 0-112 65.5T681 1126q0 101 51.5 188t142.5 87q72 0 114-61.5zm98.5 531Q1033 1782 959 1782q-63 0-105 68t-42 151q0 111 53 196.5t132 85.5q69 0 107-63.5t38-148.5q0-112-54.5-200.5zm386 58Q1437 1969 1389 1969q-66 0-112.5-57.5T1230 1790q0-56 37-94.5t89-38.5q68 0 111 59t43 122q0 50-36.5 90.5zM1124.5 838q-32.5 33-32.5 82 0 57 41 108.5t103 51.5q42 0 74-36.5t32-78.5q0-61-41-110.5t-98-49.5q-46 0-78.5 33zM1470 1843q0-58-35.5-103t-78.5-45q-33 0-59.5 27.5T1270 1790q0 58 39 99t80 41q22 0 51.5-25t29.5-62zM300 560q0 16-19 37l-65 66q-8 8-17 8-20 0-35.5-45T148 547q0-23 6.5-47.5T172 451l5-13q7-14 20-14 11 0 19 8l65 65q9 9 14 19t5 18v26zm171-26q0-8 5.5-18t15.5-19l64-65q10-8 18-8 13 0 20 14l6 11q8 17 16.5 45.5T625 547q0 25-6.5 48.5T601 641l-7 15q-8 15-20 15-8 0-18-8l-64-66q-21-21-21-37v-26zM271 376q-8-8-8-18 0-12 14-20l16-7q20-10 44-16t49-6q30 0 76 15t46 36q0 10-7 16l-65 66q-14 13-27 16.5t-27 3.5q-27 0-45-20zm216 384q-23 11-50 18.5t-51 7.5q-32 0-77.5-15.5T263 735q0-8 8-18l66-64q8-9 18-14t18-5h26q16 0 37 19l65 64q7 7 7 18 0 6-2.5 11.5T499 754zm679.5 126q18.5-18 44.5-18 30 0 52 27t22 61q0 23-18 42t-41 19q-32 0-55-27t-23-59q0-27 18.5-45zm249 979q-16.5 18-36.5 18-29 0-50-26.5t-21-55.5q0-24 16-40t39-16q30 0 49.5 26t19.5 53q0 23-16.5 41z"},"children":[]}]};exports.u1F38F=u1F38F;var u1F390={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1879.5 1279.5q-50.5 92.5-150 137.5t-248.5 45q-53 0-113.5-5.5T1237 1440q-3 26-5 52.5t-3 52.5l118 6q7 0 12 6.5t5 13.5q0 6-8.5 46t-8.5 131q0 90 16.5 174t52 161 84.5 146.5 119.5 127.5 73 60 2.5 8q0 14-13 19l-331 151-7 1q-7 0-12-4-6 0-53-42.5t-102-115-96-166-68-209.5-27-267q0-75 7.5-151.5t10.5-92 22-15.5l125 7q0-29 2.5-57t5.5-57q-228-50-358.5-160.5T670 1012q0-73 39-194.5t117-221T1019 443t256-54q26 0 53.5 2t53.5 6q18-40 32-70l25-51q20-41 30.5-60t33.5-19q17 0 28 11.5t11 26.5-22.5 56-57.5 120q223 52 345.5 210t122.5 394q0 172-50.5 264.5zm-111.5-564Q1691 591 1556 533t-281-58q-172 0-291.5 90T810 795t-54 216q0 158 221 261t504 103q142 0 224-42.5t111-119 29-197.5q0-176-77-300.5zM1054.5 784q-37.5 46-62.5 91l-29 52q0 2-23.5 39.5T893 1004q-15 0-25.5-18.5T857 944q4-66 62-177t131-111q16 0 29 16t13 35q0 31-37.5 77zM1233 598q0 29-21 44t-46 15q-23 0-40.5-11.5T1108 612q0-23 21-39.5t46-16.5q23 0 39 11t19 31zm501.5 457.5q10.5 19.5 10.5 41.5 0 92-68.5 151t-166.5 59q-23 0-40-5t-17-17q0-28 54.5-52.5t90-70 63.5-86 49-40.5q14 0 24.5 19.5z"},"children":[]}]};exports.u1F390=u1F390;var u1F391={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1443 2192q7 10 20 24l26 27q4 5 17 20.5t13 20.5q0 13-80 21t-140 8q-179 0-341-55t-278.5-142T517 1970q-10 81-21 163t-11 169q0 45 2 87t2 85q0 14 2 24.5t2 21.5q0 27-17.5 41.5T425 2576q-25 0-36-12.5t-11-50.5v-110q0-164 17.5-318.5T426 1857q-82-122-128-264t-46-299q0-271 137.5-506T770 413.5 1299 274q277 0 520 134.5T2204.5 781t142.5 513q0 73-8.5 130.5t-25 126.5-29.5 69q-15 0-43.5-32t-36.5-55q16-57 24.5-116.5t8.5-122.5q0-244-126.5-456.5t-344.5-333T1299 384q-247 0-463.5 120t-345 331T362 1294q0 106 24 205.5t69 189.5q49-261 154-439t211.5-304 322-250.5T1566 552q14 0 25.5 9.5T1603 587q0 45-56 48t-172 46.5T1132 814q66-17 147-24t161-7q72 0 93 9t21 30q0 19-15 27.5t-61 8.5q-100 0-204.5 14T1066 915l-54 16q-28 9-54 20l-56 58q80-25 176-37.5t202-12.5q55 0 85 7t30 37q0 17-13.5 24.5t-36.5 7.5h-26q-189 6-323.5 35.5T810 1124q-80 110-142 242.5T571 1644q205-225 432.5-309.5T1380 1250h43q40 0 71.5 11t31.5 34q0 15-9.5 30t-28.5 15q-23-4-43-5.5t-41-1.5q-88 0-188 26t-206 77q75 0 152 10t155 34l22 7q20 7 31 17.5t11 24.5q0 9-7.5 21t-25.5 12q-11 0-97.5-20T991 1518q-35 0-69.5 2.5T849 1529l-31 22q-16 12-30 25 14-2 28-2h28q73 0 144.5 11t144.5 29.5 73 53.5q0 10-7 21t-26 11q-5 0-13-2l-31-6q-72-15-146.5-25T830 1657q-34 0-69 1t-72 7q-42 40-80 80.5t-65 85.5q123 172 325 272t430 100q37 0 72.5-3t71.5-8zm233-496q-4-9-6.5-21.5t-2.5-24.5q0-53 36.5-90.5t91.5-41.5q-11-25-11-52 0-56 40-94.5t95-38.5q54 0 95.5 38t41.5 95q0 14-5.5 28.5t-5.5 23.5q54 4 91 42.5t37 89.5q0 22-8 46 55 6 90.5 43.5t35.5 88.5q0 54-39.5 93.5T2154 1961q-38 0-68-18t-49-48q-17 28-48.5 47t-69.5 19q-37 0-68-18.5t-48-47.5q-19 29-49.5 47.5T1685 1961q-55 0-95-38.5t-40-94.5l1-11q4-49 37-80.5t88-40.5zm609 300q14 0 23.5 9.5t9.5 23.5v129q0 14-9.5 24t-23.5 10h-68v373q0 14-9.5 23.5t-23.5 9.5h-111q-26 0-33.5-25.5T2006 2547h-173q-25 0-32.5 25.5T1766 2598h-111q-14 0-23.5-9.5t-9.5-23.5v-373h-67q-14 0-23.5-10t-9.5-24v-129q0-14 9.5-23.5t23.5-9.5h730zm-290.5 274.5Q1963 2239 1919 2239q-42 0-73.5 31t-31.5 76 31.5 76 73.5 31q44 0 75.5-31.5t31.5-75.5-31.5-75.5z"},"children":[]}]};exports.u1F391=u1F391;var u1F392={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2328.5 1821Q2188 2079 1943 2202l-511 255-16 6q-8 3-25 3-27 0-41-19.5t-14-57.5v-685q0-100 22-196.5t79-144.5 225-109l162-58 4-55q2-28 2-56 0-77-27-112.5t-81-35.5q-69 0-155 53.5T1399.5 1181 1274 1512t-44 482q0 66 2 131l4 132q0 29 3.5 65t3.5 72q0 97-42 138.5t-125 41.5q-63 0-122-18l-117-36-216-68q-106-32-233.5-85.5t-174-112.5-56-150-18.5-212-9-248q0-301 22.5-457.5t87-307 228.5-275T867 480q46 0 92.5 4t94.5 12q31-71 129-127t183-56q97 0 190 62.5T1684 528q36-15 82.5-24t106.5-9q270 0 433 221.5t163 534.5q0 312-140.5 570zm-1968 215.5Q343 2003 317 2003q-29 0-44 27.5t-15 67.5q0 33 15.5 59.5T325 2184q29 0 41-21.5t12-49.5q0-43-17.5-76.5zm671 217.5q-19.5-36-47.5-36t-45.5 28.5T921 2321q0 41 18.5 68t53.5 27q30 0 44-23.5t14-53.5q0-49-19.5-85zM1541 640q5-9 16.5-23.5T1589 585q-17-34-41.5-59.5T1484 500q-36 0-64.5 25t-42.5 57l84 28q41 14 80 30zm402 1200q106-115 163-275.5t57-321.5q0-103-23-200.5T2069 892t-151-100q-14 8-23.5 21.5T1880 850q40 68 51.5 145t11.5 156v689zm366.5-932.5Q2230 780 2078 780q-11 0-19 2t-8 10q0 11 40 37.5t92 123.5 52 306q0 189-77.5 383.5T1943 1946v160q202-115 324-339t122-528q0-204-79.5-331.5z"},"children":[]}]};exports.u1F392=u1F392;var u1F393={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2419 1068l5 18q2 8 2 15 0 33-39.5 66t-116.5 66l-344 151q-200 88-337.5 154t-263.5 66q-112 0-264-72.5t-433.5-198T281 1179t-65-82q0-77 154.5-143.5T571 866l485-220q72-32 146-58t150-26q44 0 83.5 9t174 62 351 161T2286 951l33 17q34 18 63.5 46t36.5 54zm-290 454q0 48 5.5 106t5.5 117q0 111-29 174t-84.5 102-225.5 70-383 31q-285 0-578.5-44.5T542 1843l-1-61 1-392 165 75q207 94 353 160.5t265 66.5q147 0 319-84t485-219v133zM215 2090l-17-6q-9-3-9-15 0-56 15.5-93.5T249 1925l-1-658q0-11 3.5-20.5t15.5-9.5q35 0 53 22.5t18 54.5l-1 248q0 17 1 29l1 26 1 48v258q33 14 50.5 65t17.5 63q0 25-36.5 36.5T274 2099q-31 0-59-9zm292.5 298.5Q500 2397 488 2399q-11 0-17.5-7t-15.5-8q-7 0-7 5 0 2 1.5 5.5t1.5 6.5q0 11-13.5 20t-29.5 9q-17 0-24.5-10t-15.5-10q-3 0-12.5 14t-28.5 14q-18 0-28.5-6t-16.5-14l-10-13q-5-6-12-6-3 0-3 4l-1 8q0 5-4 8.5t-14 3.5q-29 0-46.5-49t-17.5-99l1-29q0-27 6.5-68t22.5-41q24 0 45.5 4t44.5 4 48-5.5 47-12.5l9-4q5-2 10-2 6 0 10.5 13.5T430 2176l12 48q12 49 42.5 85.5T515 2367q0 13-7.5 21.5z"},"children":[]}]};exports.u1F393=u1F393;var u1F3A0={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2378 1666q-3 37-63 70t-131 33q-91 0-154.5-60.5t-83-133T1914 1465q2 14 3 28t1 28q0 32-2.5 61.5t-2.5 58.5q0 57 74.5 159.5T2062 1970q0 65-57 109.5t-156 82.5-121 82q0 46-55.5 86t-125.5 40q-32 0-48.5-18.5T1482 2302q0-57 30.5-99t93-79.5T1710 2048t42-56q0-10-60.5-59.5t-70-52-56.5-23-91-20.5q-30 0-56.5 2.5t-55.5 7.5v659h-215v-629q-42 0-85.5 7t-90.5 7q-22 0-42.5-3t-49.5-3q-58 0-127.5-11.5T640 1862q-55 0-81 37.5T533 2015q0 11 2 21l2 21q0 15 32 32.5t32 67.5q0 15-3 28l-6 26q0 2-9 36t-45 34q-35 0-53-7.5t-50-40-52.5-83.5-20.5-130q0-28 1.5-55t5.5-55l3-38q0-23 4.5-48t14.5-49.5 30-40 43-19.5 50-16l42-19-11-34q-8-24-8-76 0-88 18.5-163t75-168 83-158.5T740 992q0-22-12-31t-20-9q-14 0-25 13t-22 33l-25 42q-26 43-59.5 66t-79.5 23q-62 0-98.5-30.5T362 1015q0-45 17-105.5T409 781t37.5-144.5T511 534l5-32q2-12 2-17 0-32 7-53.5t39-21.5 48.5 15.5T637 466q5-5 17-13.5t33-8.5q36 0 67 13t31 31l3 4q2 2 20 5.5t30 9.5l26 16q13 8 43.5 22t70.5 59 40 61l7 1q30 8 46.5 49.5T1105 781l13 19q7 12 10.5 24.5t6.5 24.5l4 24q2 12 8 24V374h215v796q23 2 45 6t45 4q21 0 40-4l77-14q19-3 41-3 30 0 51 16.5t28 56.5q53 17 92 53 32-34 73.5-49t90.5-15q92 0 167 63t108 181.5 95.5 144.5 62.5 56zM568.5 759Q557 748 543 748q-17 0-28 11t-11 26q0 17 11 28t28 11q14 0 25.5-11t11.5-28q0-15-11.5-26zm1072 509q-4.5-5-17.5-5-54 2-103 77.5T1411.5 1446t-123.5 30q-89 0-134.5-19.5T1108 1399q0-14 3.5-30t3.5-30q0-9 8-27l18-41q9-22 17-46t8-45q0-15-6-28t-20-13q-11 0-30.5 30.5t-26 52-29.5 44-28 48.5l-12 58q-3 9-5.5 21t-2.5 26q0 81 70 125.5t167 44.5q116 0 203-44t143-141 56-123q0-8-4.5-13z"},"children":[]}]};exports.u1F3A0=u1F3A0;var u1F3A1={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2166 1433q-29 113-84 213 64 17 103 67t39 113q0 76-54.5 130.5T2039 2011q-56 0-101-30.5t-67-78.5q-51 43-108 77t-119 60q56 16 94 66t38 111q0 75-54.5 129.5T1592 2400q-23 0-44-6v74q0 18-13.5 29t-27.5 11h-415q-14 0-27-10.5t-13-29.5v-85q-14 3-27 3-76 0-130.5-54T840 2201q0-54 29.5-99t75.5-67q-120-52-216-134-23 48-68 79t-101 31q-76 0-130.5-54.5T375 1826q0-63 39-113t103-67q-55-100-84-213-68-10-113.5-61.5T274 1250q0-63 41-114t103-65l1-11q20-112 59.5-199.5t67.5-127 34.5-60 31-49T673 579q113-114 261-182t321-76l22-4q11 0 23-1l105 10q100 10 198 46t174.5 86 108 82 61 49.5 50.5 46 25 45 34 57 66 126.5q39 92 58 195l1 12q63 14 103.5 65t40.5 116q0 69-46 120t-113 61zm-151-609q-23 47-67 76.5T1848 930t-100.5-30-66.5-78l-96 115q34 35 59 77.5t38 91.5l411-72q-12-56-32-108.5T2015 824zm-794 489l-6-4-170 98q24 31 50.5 52.5t58.5 38.5zm-162 680q14 4 28 7t28 7l62-339zm241-380l-33-1-22 118h109l-22-118zm-18-80l18 1 17-1-17-96zm191-587q-60-39-134-48v196l8 3zm-66 202l4 6 193-34q-10-35-28-65.5t-43-56.5zm-147-250q-74 9-134 48l126 151 8-3V898zm-194 100q-25 26-43 56.5t-28 65.5l193 34 4-6zm-85 200l-1 17q0 65 26 123l170-99v-6zm212 824q27 3 53 5t54 2q27 0 53.5-2t52.5-5l-39-211h-135zm252-524q32-17 58.5-38.5t50.5-52.5l-170-98-6 4zm148-160q11-29 18.5-59.5t7.5-63.5l-1-17-193 35-2 6zm187-678.5q-32 22.5-32 53.5 0 21 22.5 28.5t83.5 7.5q48 0 74-9.5t26-26.5q0-31-34-53.5t-75-22.5q-33 0-65 22.5zM1463 416q10 20 15.5 40.5t5.5 43.5q0 65-41 115.5T1339 680v137q51 5 97.5 23t88.5 45l142-170q8-51 40.5-89t80.5-55l4-4q-72-55-154.5-93T1463 416zm-241.5 81q21.5 7 85.5 7 41 0 70-9t29-26q0-28-30.5-53t-79.5-25q-33 0-64.5 22t-31.5 55q0 22 21.5 29zm-85.5-80q-92 19-174 57t-154 93l3 4q48 17 80.5 55t41.5 89l141 170q42-27 88.5-45t97.5-23V680q-63-14-104-64.5T1115 500q0-23 5.5-43.5T1136 417zM674 741.5q23 6.5 84 6.5 46 0 72-8.5t26-24.5q0-35-35.5-56.5T748 637q-36 0-66.5 22.5T651 713q0 22 23 28.5zM585 824q-55 100-79 210l411 72q13-49 38-91.5t59-77.5l-96-115q-22 48-66.5 78T751 930t-99.5-29.5T585 824zm-178 426q9 2 24 3t32 1q56 0 78.5-9t22.5-26q0-24-32-50.5t-77-26.5q-34 0-65 23t-31 54q0 14 15 22.5t33 8.5zm107 176q23 85 61 160l362-208q-17-38-27-79t-10-84q0-8 1-15.5t1-14.5l-305-54q22 25 34.5 55t12.5 64q0 63-36.5 110.5T514 1426zm117.5 315.5Q597 1718 560 1718t-68.5 21.5T460 1794q0 22 23 29t86 7q39 0 68-8t29-28q0-29-34.5-52.5zM743 1808q105 100 241 157l142-391q-45-22-83-54t-68-74l-354 206q49 17 83 59t39 97zm357 309.5q-30-24.5-77-24.5-33 0-65.5 23t-32.5 54q0 22 23 28.5t86 6.5q42 0 69-8t27-26q0-29-30-53.5zm339 200.5q-32-44-32-102 0-23 5-43t14-39l-7-34q-29 4-59 6t-60 2q-31 0-61-2t-59-6q30 47 30 101 0 34-11.5 63.5T1167 2318h272zm45-311q14-4 28-7t28-7l-118-323zm40 122.5q-32 22.5-32 53.5 0 25 36 30.5t71 5.5q49 0 73.5-9t24.5-25q0-31-35.5-54.5T1588 2107q-32 0-64 22.5zm332-321.5q5-55 39-97t83-59l-354-206q-30 42-68 74t-83 54l142 391q136-57 241-157zm114.5-67.5Q1939 1763 1939 1794q0 19 26 27.5t82 8.5q49 0 73.5-9t24.5-25q0-32-35.5-55t-72.5-23q-35 0-66.5 22.5zM2024 1586q38-75 61-160-55-18-92-65.5t-37-108.5q0-35 12-65.5t32-55.5l-303 54q0 8 1 15t1 15q0 43-10 84t-27 79zm107-332h20q40 0 68-9t28-26q0-30-34.5-53.5T2140 1142q-34 0-66.5 22t-32.5 55q0 24 29.5 29.5t60.5 5.5z"},"children":[]}]};exports.u1F3A1=u1F3A1;var u1F3A2={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2540 164q0 3 1 6v69l-10 37q-15 55-53 154.5T2382 659v1972q0 5-4 10t-9 5h-110q-4 0-9.5-5t-5.5-10V933q-78 143-182 307.5T1822 1587v1044l-4 8-7 3h-110l-6-3-5-8v-874q-91 113-193 230.5T1277 2228v403l-3 5-4 1h-110l-4-1-3-5v-279q-84 86-198.5 194T834 2656l-8 2H282q-8 0-11-4.5t-3-9.5q0-7 4-9.5T429.5 2521 775 2250q38 0 70.5 2.5t66.5 2.5q78 0 143.5-24.5t122.5-79 116-119.5 115-131 61.5-108 79.5-115.5 125-142.5q53-71 107-147l17-19q46-51 54.5-97t51-75 103-102 106-175 45.5-201q0-28-5-54l-10-50q87-158 140-289t57.5-151 17.5-20h167q6 0 10 4zm-958 713l-14-24q-8-12-8-23 0-17 17-26t35-9q28 0 55 3.5t55 3.5q67 0 114.5-36.5T1930 618l11-26q6-13 6-27 0-19-9.5-28t-25.5-16l-24-10q-11-5-11-19 0-11 5.5-19t17.5-8q81 0 134.5 63.5T2099 698q0 70-23.5 128T2015 944l-12 23q-32 62-79.5 111.5T1825 1128q-10 0-22.5-2t-29.5-2l4 32q0 16 1 36l-4 29q-10 75-61.5 148.5t-135 175.5-158.5 102q0 78-39 150.5t-98 137.5-109 120-121 96-164 41l-43-1q-92-7-318.5-73T300 1862q0-105 47-204t118-194 149-95q9 0 18 9.5t10 20.5v5q-2 9-10.5 20.5T613 1447l-21 21q-14 16-25.5 42.5T555 1555q0 36 40 68t173 62l63 14 88 21q44 11 89 11 73 0 127.5-36.5t90.5-89.5l47-68q12-15 12-34 0-24-32-40.5t-32-37.5q0-11 7.5-29t7.5-37q0-12-3-23l-8-22q-4-11-7.5-23.5t-3.5-27.5q0-14 10-22t34-8q13 0 27 4t26 6l59 13q30 7 62 7 37 0 71.5-20t62.5-56.5 54.5-80 26.5-58.5q0-26-31.5-40t-31.5-31q0-8 6-22.5t6-29.5q0-12-3-24.5t-11-23.5zM67 1339q-5-5-5-10v-216q0-11 12.5-12.5T233 1037t313.5-175 286-234.5 135-148.5 25.5-27q5 0 8 4t3 7q0 18-84 145.5T746 833t-199.5 191.5-225 171.5T78 1339H67zm0-403l-4-8V784q0-9 8-11h2q39 0 170.5-46T501 608t205-134.5 79-64 8-2.5q10 0 10 11v3q-89 147-276 283.5T75 937zm861 589l18-22q8-11 14.5-22t6.5-22v-8q0-4-1-8 0-2-2.5-10.5T959 1413l-5-21q-3-11-3-20 0-39 35-67t80-28q41 0 74.5 26t33.5 69l-1 31q0 9-5 18l-9 17q-5 8-9 16.5t-5 17.5q0 26 9.5 45.5t9.5 41.5q0 29-36 62.5t-64 33.5q-15 0-31-3l-30-6q-19 0-63-14t-44-38q0-10 12.5-35t19.5-34zm-288-22q0-27 32-66.5t32-58.5q0-18-11-39t-11-44q0-51 35.5-79.5T812 1187q34 0 60.5 19t34.5 52l1 9q0 5 1 8t1 6q0 26-21 63.5t-21 65.5q0 13 3.5 23t8.5 18l8 16q4 8 4 16 0 20-30.5 56.5T796 1576q-49 0-102.5-21t-53.5-52zm-384 491q39 76 76 108t88 52q-92 69-175 129T81 2399l-4 2q-2 0-3 1-6 0-10.5-4.5T59 2387v-245q0-12 9.5-16.5T162 2061zM1348 992q-5-17-9.5-29t-4.5-26q0-37 34-63t73-26q41 0 69 22.5t28 68.5q0 30-10 49t-10 36 10 36.5 10 42.5q0 29-26.5 55t-33.5 30-42 4q-55 0-98-12.5t-43-33.5q0-18 9.5-35t20.5-33l21-31q9-14 9-28 0-9-2-15zm285-358.5q19-34.5 22-51.5 0-20-16-50t-16-48q0-41 32.5-69t77.5-28q37 0 66.5 26.5T1829 484q0 17-6.5 31.5T1816 545q0 22 14.5 43.5T1849 630q0 29-20 56t-35 37-71 10h-33q-39 0-57.5-8t-18.5-26q0-31 19-65.5zM1366 661q0-15 6-29.5t13-28.5l12-27q6-12 6-22 0-13-18-41.5t-18-46.5q0-57 31.5-86t86.5-29q36 0 61 26t25 62q0 20-8 40.5t-8 52.5q0 16 5 27t13 20l12 16q5 8 5 18 0 19-21 57t-98 38q-51 0-76.5-10t-27.5-29zm-262 283l-8-20q-4-10-7.5-21.5T1085 877q0-45 31.5-72t82.5-27q29 0 54 15t35 46l2 8q0 4 1 8t1 8q0 23-16 56.5t-16 58.5q0 12 3.5 21.5t9.5 19.5l8 15q4 7 4 14 0 15-25 51t-56 36q-53 0-100.5-15t-47.5-42q0-25 25.5-61.5T1107 963q0-10-3-19zm876-523q-54-27-90-40.5t-94-30.5q30-54 48-91l28-61q11-23 17-33t12-10h139q7 0 11 5t4 10v66q-6 20-22 63.5T1980 421zM884 1066q24-43 64-75t77-35q9 0 17.5 7t10.5 18v7q-7 13-18 23l-21 21q-10 10-17 20t-7 20q0 13 20 28t20 32q0 22-13.5 39t-28.5 17-25-8l-22-15q-9-7-23-11l-27-7q-13-3-22.5-9.5T859 1118q0-14 9-28zm349.5-452q45.5-62 88.5-62 9 0 16.5 6.5T1351 574l1 6q-5 14-28 42t-23 45q0 13 21.5 25.5T1344 724q0 14-7 24.5t-18 10.5q-5 0-33.5-12t-63-12-34.5-28q0-31 45.5-93zM894 1946.5q-20-22.5-52-22.5t-55 21-23 53 21 57.5 51 25.5q27 0 52.5-26t25.5-56-20-52.5zM495.5 1831q-18.5-20-44.5-20t-47.5 17-21.5 48q0 28 19.5 51.5T445 1951q26 0 47.5-24.5T514 1878q0-27-18.5-47z"},"children":[]}]};exports.u1F3A2=u1F3A2;var u1F3A3={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2066 1856l-4 12q14 20 19.5 43t5.5 54q0 89-36.5 144.5T1948 2165h-11l-120 254q-11 22-36 22-7 0-11-2l-74-23q-14-4-20.5-15t-6.5-23q0-4 3.5-15.5T1721 2261l60-119q-35-6-63.5-16t-51.5-30q-38 103-70 138.5t-71 35.5q-5 0-9-1l-8-2q-24 11-41 17.5t-42 6.5q-66 0-101-23t-35-64q0-39 25.5-63.5t58.5-24.5q36 0 87.5 23.5t64.5 38.5q19-13 36-43.5t32-73.5l14-39q-12-30-12-61 0-70 55-125.5t123-55.5q39 0 74 9.5t81 18.5q127-299 201.5-568t74.5-453q0-139-32.5-210T2062 459.5 1887 413q-110 0-219 66t-191 170l-422 807q18 35 18 98 0 175-73 333 13 19 18 42.5t5 37.5q0 43-12.5 55.5t-40 21.5-74.5 15q-71 100-91 153.5t-20 96.5q0 25 11 52 32-4 75-45t74-41q19 0 26 9.5t7 26.5q0 14-2.5 30.5T973 2372q0 45 64.5 53t81.5 35q2 0 2 5 0 14-41.5 26.5T984 2512l-68 10q-30 5-55.5 7t-31.5 2q-17 0-34.5-1.5T751 2528q-141 0-247.5-75.5T366 2181q-5 2-16 4t-23 2q-14 0-20-8t-16-46.5-10-65.5l1-43q0-6-1-18 0-65 18-126t41-116l11-26q8-19 24-29.5t47-10.5q16 0 22.5-2.5T455 1684l5-10q87-128 208-204t244-76q22 0 43 3.5t37 7.5l418-799q100-135 229-209t260-74q201 0 310 130t109 377q0 193-65.5 456.5T2066 1856zM858 1508.5q-16-12.5-33-12.5-20 0-34 18t-14 36q0 14 16 27.5t29 13.5q19 0 35.5-15t16.5-38q0-17-16-29.5zm528-63.5l-32-1q-33 0-59-6t-26-18q0-9 9-21.5t17-22.5l33-39q29-35 58.5-52.5t63.5-17.5q36 0 63 23.5t27 58.5q0 49-41 72.5t-113 23.5zm-853.5-276.5Q554 1149 581 1149q43 0 87 66t44 98q0 5-5 9t-11 4q-76 0-130.5-29t-54.5-80q0-29 21.5-48.5zM764 969q24-31 61-31 35 0 61 25t26 67q0 33-14 74.5t-29 77.5l-5 11q-6 15-12 22.5t-11 7.5q-9 0-15.5-7t-46-66.5T740 1041q0-41 24-72z"},"children":[]}]};exports.u1F3A3=u1F3A3;var u1F3A4={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1628 1509L611 2413q-3 3-8 5.5t-10 2.5q-54 0-152-96t-98-148q0-11 5-16l865-1052q30 89 111 186.5t168.5 152T1628 1509zm-248-855q99 162 316 370t382 300q-74 63-140.5 87.5T1800 1436q-195 0-358.5-161.5T1278 922q0-85 29.5-154t72.5-114zm852.5 434q-23.5 71-65.5 133l-36-20q-28-16-77-50.5t-115-87T1772.5 913t-166-179-87.5-115.5-39-57.5q63-47 137.5-74.5T1773 459q182 0 332.5 146.5T2256 942q0 75-23.5 146zM468 920.5Q529 859 612 859h27l26 5-92-427-7-16q-4-8-4-22 0-36 29-55.5t68-19.5q57 0 140.5 63.5T943 451q14 0 24-2t18-4l11-4q5-2 11-2 5 0 9.5 5.5t4.5 16.5q0 27-55 78t-117 51q-32 0-66-10t-66-10q-19 0-37 6l79 367q5 11 6.5 24.5T767 996q0 78-65 138t-144 60q-61 0-106-39.5t-45-97.5q0-75 61-136.5z"},"children":[]}]};exports.u1F3A4=u1F3A4;var u1F3A5={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1958 1079q21 6 35.5 25t14.5 42v537q0 29-20 49.5t-50 20.5h-369v179q0 29-20.5 50.5T1499 2004h-25l285 442q8 13 8 25 0 25-22 41l-35 22q-14 8-26 8-11 0-22-5.5t-18-16.5l-195-304v306q0 20-14 33.5t-34 13.5h-42q-19 0-33-13.5t-14-33.5v-306l-196 304q-13 22-39 22-13 0-26-8l-35-22q-11-8-16.5-19t-5.5-22q0-15 7-25l285-442h-24q-29 0-49.5-21.5T1192 1932v-179H822q-29 0-49.5-20.5T752 1683v-168l-281 138q-20 0-34-17.5t-14-42.5v-465q0-25 14-42t34-17l281 137v-60q0-38 32-57-108-51-173.5-154T545 710q0-173 123.5-295T963 293q133 0 244 79.5T1362 584q38-127 149.5-209t247.5-82q172 0 295 123.5T2177 710q0 117-60.5 217T1958 1079zm-269.5-296q29.5 29 70.5 29 42 0 71.5-30t29.5-72q0-41-30-70.5t-71-29.5-70.5 28.5T1659 710q0 44 29.5 73zm-797-1q29.5 30 71.5 30 41 0 70.5-30t29.5-72q0-41-29.5-70.5T963 610t-71 29.5-30 70.5q0 42 29.5 72zm666.5 294q-71-38-122-100t-74-138q-25 76-76 138t-122 100h394z"},"children":[]}]};exports.u1F3A5=u1F3A5;var u1F3A6={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2451.5 2065q-23.5 179-110 221.5t-303 54T1603 2352q-73 0-147.5-1.5T1300 2349q-74 0-150 1.5t-154 1.5q-230 0-451.5-12T246 2278t-99-221-22-397q0-81 3-160l5-160 8-296q8-284 70-408.5T456 502l76-4 114-5q130-4 306-6.5t323-2.5q566 0 717.5 7.5t221 19.5 120 53 85 139 45.5 470.5 11 482.5q0 230-23.5 409zM685 953q-7 5-7 18v756q0 22 23 22 8 0 20-3l62-13q104-20 246.5-36.5T1302 1680t273.5 16.5T1821 1733l61 13q12 3 20 3 14 0 19-6.5t5-15.5V971q0-23-24-23-11 0-61 14t-198.5 33.5T1287 1015q-205 0-343-19.5T760 962t-58-14q-10 0-17 5zm-123 176q59-218 81-366l5-28q2-17 2-33 0-23-10-29t-29-6q-31 0-60.5-1t-61.5-1q-152 0-165.5 16T291 820.5 259 1243l-12 317-1 24q0 18 18 18 19 0 43-66.5t27-82.5l5-14h-1q8-23 15-38.5t12-15.5q3 0 4 7l2 19q0 12 1 24v21q0 40-10 81.5t-10 55.5l1 4 24 2q9-3 22-25.5t34-69.5q70-157 129-375zm1795 418l-2-39-4-123q-14-409-37.5-552t-34-149-12.5-8-75-8q-38-3-78-3-29 0-58 1t-58 1q-26 0-35 6t-9 29q0 16 3 33l4 28q15 116 74 341t129 384l14 32q9 25 23.5 50.5t23.5 28.5l24-2 1-6q0-5-9.5-48t-9.5-86l1-17v-28q0-11 1-19t4-8q5 0 12 13.5t16 40.5l10 36q3 11 7 22l10 30q10 30 22.5 52.5t24.5 22.5q10 0 14.5-4t4.5-13q0-19-1-38zM752 666q0 66 47 114t110 48q45 0 80.5-23t55.5-61q20 38 55.5 61t80.5 23q42 0 76-20t55-54q21 34 55 54t75 20q40 0 74-19.5t55-51.5q21 32 55 51.5t74 19.5q65 0 111-48.5t46-113.5H752zM414 2176l36-2q19 0 35-3 0-5-2-22l-6-39-29-156q-14-64-35-128t-53-120l-2-3q-5-7-14-7-17 0-32.5 1t-31.5 1-22.5 36-6.5 125q0 65 8.5 191.5T373 2177q23 0 41-1zm1939-327v-20q0-9-1-19v-25q0-28-7.5-57.5T2323 1698q-16 0-32-1t-32-1q-9 0-14 7l-2 3q-34 59-61 143.5t-34 162.5l-9 94q-2 23-3 40t-1 23q0 2 12.5 3.5t32.5 2.5l57 2q100 0 108-128.5t8-199.5zm-747 347q35 10 92.5 15t144.5 5 144.5-5 92.5-15q-3-63-24-102t-58-39q-48 0-79 3.5t-77 3.5q-45 0-75-3.5t-79-3.5q-39 0-59 41t-22 90zm-527 0q35 11 99.5 15.5t136.5 4.5q87 0 144.5-5t92.5-15l-1-21q-4-44-24-82t-57-38q-48 0-78 3.5t-76 3.5-77-3.5-79-3.5q-38 0-58 40t-22 91zm-533 0q35 10 92.5 15t144.5 5 144.5-5 91.5-15q-3-66-23.5-103.5T938 2055q-48 0-79 3.5t-77 3.5-76-3.5-78-3.5q-35 0-58.5 38T546 2196zm127-202q27 8 77 11t106 3 106.5-3 78.5-11q-2-43-18.5-69t-45.5-27q-29 0-57.5 2t-63.5 2q-26 0-54.5-2t-66.5-2q-24 0-40 19t-22 77zm522-96q-31 0-46.5 27t-17.5 69q27 8 77.5 11t106.5 3 106-3 78-11q-2-42-18-68.5t-45-27.5q-29 0-57.5 2t-62.5 2q-26 0-54.5-2t-66.5-2zm390 96q27 8 77.5 11t106.5 3 106-3 78-11q0-38-18-67t-46-29q-29 0-57.5 2t-62.5 2q-26 0-54-2t-66-2q-30 0-47 28t-17 68zm14-205q-19 0-29.5 15.5T1557 1849q18 5 51.5 6.5t69.5 1.5q37 0 70.5-1.5t51.5-6.5q-2-28-12.5-44t-29.5-16h-24l-32 2q-8 0-23 1-15 0-23-1l-33-2h-24zm-774 60q18 5 51.5 6.5t69.5 1.5q37 0 70.5-1.5t51.5-6.5q-4-33-14-46.5t-27-13.5h-25l-32 2q-8 0-23 1-15 0-23-1l-32-2h-25q-18 0-28.5 15t-13.5 45zm369 0q18 5 51 6.5t70 1.5 70-1.5 51-6.5q-2-28-12.5-44t-28.5-16h-24l-32 2q-9 0-24 1-15 0-23-1l-32-2h-24q-24 0-32 19.5t-10 40.5z"},"children":[]}]};exports.u1F3A6=u1F3A6;var u1F3A7={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2407 1499.5q-75 191.5-125.5 221.5t-106.5 30q-32 0-61-10-40 79-82 143t-69 103q5 23 7.5 47t2.5 47q0 203-146 360t-358 157q-2 0-3.5-1t-2.5-1q-2 2-19.5 4.5t-51.5 2.5q-215 0-368-135.5T871 2122q0-239 168-422t406-183q126 0 235.5 59t151.5 156q20-30 35-57t26-50q-34-26-47.5-60.5T1832 1496q0-66 84-221.5t84-281.5q0-153-118.5-269.5T1588 607q-115 0-226.5 48t-196 141T1050 908.5 982 928l-14-1q-7 0-13-2-18 17-33.5 37.5T894 1007l24 25 45 31q45 29 73 70.5t46.5 95T1101 1355q0 162-83.5 279.5t-192 191.5-228.5 74q-80 0-154.5-26t-123-68-64.5-73.5-49-76-60.5-124T118 1370q0-203 143-346t333-143q35 0 70.5 5.5T737 904l39-53q19-26 40-49-6-19-6-37 0-85 150.5-222t319-205 347.5-68q170 0 338.5 73.5t281.5 185T2421 770t61 334-75 395.5zM204 1448q0 6 1.5 11.5t2.5 11.5q0-61 48-159.5t123-173T543 1028t198-36q-32-17-69-25t-78-8q-159 0-278.5 121T196 1370q0 35 8 78zm356.5-111.5Q483 1419 483 1513q0 58 41 98t101 40q84 0 161-76.5t77-167.5q0-65-37.5-109t-99.5-44q-88 0-165.5 82.5zm1778-509q-45.5-106.5-129-200t-217-165T1697 371q215 97 309.5 242.5T2101 980q0 81-23 161t-62 156l-42 80q-19 37-31.5 67t-12.5 52q0 31 24 53t100 62.5 121 40.5q37 0 56-17t86-177.5 67-353.5q0-170-45.5-276.5zM1515 2513q-89-26-129-60.5t-70-101-30-149.5q0-157 107-257.5t248-100.5q47 0 91 12l47-54q-55-61-110.5-81.5T1540 1700q-181 0-313.5 147T1094 2182q0 164 96 248.5t279 84.5h23.5l22.5-2z"},"children":[]}]};exports.u1F3A7=u1F3A7;var u1F3A8={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2380.5 842.5Q2295 1004 2262 1063l-73 130q-36 65-70 131t-64 135q11 24 11 48-4 55-55 120.5T1901 1855l-37 101q-5 13-21.5 56.5T1777 2079l1 10q-2 127-73 237.5t-187.5 173T1279 2562q-112 0-192-33.5t-80-90.5q0-28 16.5-44.5t58.5-16.5q33 0 43.5-26.5T1136 2240v-51q0-160 69.5-254.5T1386 1805q3-38 49-68.5t58-40.5q-9 2-18 3l-20 2q-56 3-107 3-123 0-188.5 22.5T1019 1820l-64 61q-83 80-165.5 114.5T625 2030q-131 0-245.5-70t-180-214.5T134 1418q0-296 170-554t461.5-412T1358 298q211 0 380 71t273.5 221T2123 915l139-204 27-43q26-40 57-67t66-27q18 0 36 14t18 45q0 48-85.5 209.5zM1336 1602l24 1q106 0 161.5-13t103.5-35q13-19 77-129t141-110q45-51 84-109l76-115q11-38 15.5-74.5t4.5-73.5q0-129-57.5-232.5t-129.5-167T1636.5 441 1366 401q-281 0-550.5 141.5T391 918t-155 500q0 219 105 364t284 145q79 0 141.5-33T926 1765.5t182.5-129.5 227.5-34zm200-276q-87 78-196 78-78 0-132.5-57t-54.5-128q0-97 83.5-172.5T1419 971q87 0 145.5 48.5T1623 1144q0 104-87 182zm-75.5-72.5Q1522 1204 1522 1144q0-31-28-50.5t-75-19.5q-52 0-108 46t-56 99q0 33 26 58.5t59 25.5q59 0 120.5-49.5zM781 812.5q33 27.5 33 70.5 0 51-47.5 96T664 1024q-44 0-70-30.5T568 920q0-51 43-93t100-42q37 0 70 27.5zM623 1694q-32 36-83 36-53 0-89.5-46T414 1578q0-56 31.5-89t80.5-33q55 0 92 43.5t37 101.5q0 57-32 93zm3.5-377.5Q589 1362 537 1362q-47 0-80.5-33t-33.5-84q0-55 39-98t93-43q44 0 76.5 33.5T664 1218q0 53-37.5 98.5zM1093 587q28 32 28 76 0 52-46.5 85T966 781q-40 0-69.5-28T867 687q0-48 49-90t106-42q43 0 71 32zm355 1309q-73 11-129 60t-56 110q0 16 8 31t33 15l30-1q16 0 24 12l11 28q6 17 18.5 24t38.5 7h27q20 0 34 6t14 31q0 8-1 14t-1 12q0 16 18.5 23t41.5 7q33 0 56-11.5t42.5-66T1677 2089q0-14-2-27t-5-25l-65-52q-42-32-87-52t-70-37zm300 75q11-19 18-41l15-44-8-9q-34-34-95.5-73.5T1579 1759l-43 31-20 15q-9 7-9 9 26 15 58 27.5t103.5 63 79.5 66.5zm161-518.5q-54-33.5-66-33.5-28 14-70.5 95T1645 1694q2 0 2 1t2 1q47 20 90.5 49.5t72.5 58.5l47-112q44-103 74-136.5t30-48.5q0-21-54-54.5z"},"children":[]}]};exports.u1F3A8=u1F3A8;var u1F3A9={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2128 2065q-101 121-246 216.5T1539 2439t-394 62q-356 0-565-127t-209-366q0-102 48-197.5T577 1644l41-25q19-12 34-27l-7-157q-8-164-52-412.5t-53-282-9-75.5q0-130 226-225t553-95q258 0 441 70.5T1934 602q0 22-2 32l-6 23q-4 15-8.5 46.5T1908 775l-10 85q-36 288-47 455.5t-13 356.5q41-29 90.5-52.5T2034 1596q87 0 141 55t54 149q0 144-101 265zM971 1802q-2-205-17-427.5T911 912q-64-9-121.5-26T671 841q2 14 5 26l6 26q25 132 43.5 265.5T752 1428l15 307q45 31 100.5 45t103.5 22zm387 568q166-36 298.5-94t228.5-130 166-158.5 70-187.5q0-48-22-71.5t-65-23.5q-40 0-96 32.5t-104 80.5l-36 35q-9 9-23 24l-42 45q-64 64-174 217.5T1358 2370zm-585-357q56 40 166 60.5t246 20.5q76 0 146.5-8.5T1479 2066q58-80 116-150.5t135-147.5l-1-24q-99 72-239 110.5t-305 38.5q-85 0-216.5-22T768 1818l4 116q0 48 1 79z"},"children":[]}]};exports.u1F3A9=u1F3A9;var u1F3AA={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2010.5 2460q-343.5 94-710.5 94-336 0-589.5-60.5t-359-133.5T246 2184q0-55 37-119t101.5-167T488 1700q-46-17-70-50.5t-24-82.5q0-17 3-33l4-27q10-90 21-131.5t39.5-74.5 94.5-71l45-25q176-98 391-188.5T1249 912V326q0-34 40-49.5t121-15.5q70 0 149.5 34.5t156.5 103 135 97.5 159 29q23 0 47-5.5t49-5.5q14 0 26.5 6.5T2145 541q0 25-60.5 76.5t-160.5 84-201 32.5q-45 0-81.5-10t-64.5-20l-58-21q-28-9-55-9-32 0-58 9l-57 21v216q63 13 293 120t343 173 146 98 33 148q0 60-18.5 110.5T2086 1640q39 99 106.5 215.5t114.5 192 47 136.5q0 182-343.5 276zm-24.5-801q-6 0-12-3l-11-4q-34 51-66.5 72t-67.5 21q-21 0-40-5t-33-11q-20 42-66.5 67t-97.5 25q-17 0-39-5 36 43 76.5 79.5t82.5 70.5l92 75q57 48 109.5 76t52.5 54q0 33-88 75t-88 102q0 21 23.5 33t55.5 12q174-35 279.5-90t105.5-119q0-36-34-90t-113.5-191-120.5-244zM470 2311q124 58 263 82 30 0 53.5-12t23.5-33q0-60-88.5-102.5T633 2171q0-26 43-47t168-122 179-158l9-9q3-4 6-9-36-3-72-22t-58-53q-26 15-53.5 21.5T800 1779q-54 0-89-22.5t-55-78.5q-19 11-33.5 17t-28.5 10q-52 123-142.5 269.5t-98 170.5-7.5 39q0 69 124 127zm64-969q22 15 65 33.5t105 35.5q14-16 31-29t31-26l62-52q36-29 78-70.5t107.5-96T1138 1029q-88 47-176 85.5t-249 126T534 1342zm1544 47q-27 14-58.5 31.5T1941 1456q3 23 5.5 47.5t9.5 45.5q0 18 15.5 27.5t24.5 9.5q38 0 63.5-41t25.5-85q0-17-2-34t-5-37zm-612 285q19 28 44.5 45.5t81.5 17.5q61 0 94-29.5t33-86.5q0-25 1.5-50t1.5-52q-52 11-109 19.5t-123 13.5l-27 1zm-14-199q66-5 124-12t108-16q-2-2-2-4 0-10-110-135t-155-188-75-91l8 39q3 20 8 39l24 91 39 151zm-195-448l3-26q-14 17-78.5 110.5t-128.5 181T953 1462q53 6 111 10.5t124 6.5q0-39 7.5-98.5T1212 1273l14-70q7-36 11.5-77t10.5-64zm-80 531q-60 0-120-5.5T934 1540q2 23 2 45v46q9 50 42 85.5t84 35.5q41 0 71.5-18t50.5-50q0-32-3.5-63.5t-3.5-62.5zm-54 263q-67 81-141 153.5T822 2110l-40 28q-10 8-16.5 15t-6.5 13q0 10 49.5 34t81 57.5T921 2334q0 14-3 22.5t-7 14.5l-7 10q-3 5-3 11 0 3 4.5 5t9.5 2q3 0 5.5-1t5.5-1q38-14 72-44.5t64-81 61-126.5 53-141 30.5-137.5 6-78-6.5-8.5l-7-5-19 17q-11 9-24 16t-33 13zm664 380l25-13q12-6 20.5-13t8.5-13q0-5-11.5-13t-19.5-13l-10-6q-19-12-34-26l-33-29q-73-65-144.5-133T1456 1796q-18 14-48.5 23.5T1348 1830q27 161 78 279.5t114.5 200T1697 2403q5 0 9.5-4.5t4.5-9.5q0-9-16.5-22t-16.5-31q0-42 36.5-79.5t72.5-55.5zm112-813q36-14 66.5-29t55.5-29q-140-93-273.5-149t-196.5-92-133-64q42 41 88 81t94 78l59 44q36 27 75 53t96 61l35 22q17 11 34 24zM481 1518l-4 27q-2 13-2 22 0 37 26.5 53.5T568 1637q53 0 77.5-29t27.5-74l4-48-18-5q-62-21-100-38t-62-31q-7 25-10.5 52.5T481 1518z"},"children":[]}]};exports.u1F3AA=u1F3AA;var u1F3AB={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2537 1505.5q-3 9.5-11 16.5l-755 880q-8 11-19 15.5t-24 4.5q-37 0-234-76t-409.5-206-389-287T381 1523.5 151 1189t-92-187q0-29 23-46l670-531q16-12 39-12 17 0 30 8.5t20 22.5l4 8q31 59 84.5 131t134 159.5T1244 911t209.5 151.5T1669 1184t202 87.5 201 67.5 215.5 53 181.5 29 71 64q0 11-3 20.5zm-170 20.5q-155-26-292.5-64t-260.5-86q-3 14-19 28t-45 14q-23 0-38.5-13t-15.5-36q0-11 3-19.5t12-17.5q-307-133-554.5-342T771 559l-578 459q145 284 363 529.5t499 432.5q8-11 21-16.5t27-5.5q27 0 43 18t16 38q0 18-10 29 130 78 274 145t281 108zm-1126 55q-9 7-20 7-15 0-59.5-25.5T1084 1514l-41-29q-18-12-30-22l-25-20q-8-5-8-15 0-3 1-7t5-7l47-40q5-5 18-5t19 5q0 3 25 19l71 47q39 26 65 41l39 23q17 11 21 15t4 9q0 7-6 13zm-96 92l-57 49q-9 6-18 6-14 0-117.5-84.5T849 1546q0-8 7-15l43-36q7-6 18-6 10 0 19 6 2 3 17 14l37 28q21 16 47 34l86 60q8 5 18.5 12t10.5 16q0 7-7 14zM754 959q-6-5-6-13 0-11 10-18l31-26q3-2 7-3t7-1q11 0 19 6l18 20q5 5 5 15t-8 15l-34 26q-5 5-14 5-13 0-18-8zm168 173q-7-7-7-14 0-9 8-15l37-30q7-6 17-6t19 7l38 35q7 6 7 15 0 7-7 13l-39 30q-7 6-18 6-8 0-18-7zm106 93q-7-5-7-15 0-4 1.5-7.5t5.5-6.5l39-31q6-6 17-6t20 7l37 28q8 5 8 15 0 7-6 13l-44 32-9 5q-4 2-9 2-11 0-18-7zm108 85q-8-5-8-15 0-7 8-12l42-33q10-7 21-7 10 0 18 5l42 29q8 5 8 14 0 7-7 12l-45 36q-6 5-19 5t-19-5zM671 858q-5-5-5-12 0-9 9-20l29-23q3-3 7-4t7-1q13 0 18 8l29 35q5 6 5 14 0 9-8 17l-32 26q-8 4-13 4-11 0-17-10zm585 533q-9-7-9-14 0-3 1.5-6.5t6.5-5.5l47-37q7-6 20-6 9 0 19 4l87 47q11 6 11 15 0 7-6 11l-49 40q-8 7-22 7-8 0-18-5zm-426-350q-7-7-7-15 0-9 9-15l35-27q6-6 15-6 12 0 18 9l30 27q7 7 7 15 0 9-8 15l-37 29q-5 4-15 4-13 0-18-7zM537 940q3 0 9-8l14-14q7-7 15-12.5t13-5.5q8 0 34.5 41.5t126.5 156T954 1285l22 18q12 10 12 18 0 7-7 12t-12 9l-14 13q-8 7-16 13t-14 9l-8 1q-16-5-30.5-17.5t-109-103.5-156-175T546 979.5 532 951q0-6 5-11zm315 485q4 4 4 8 0 8-27.5 31t-40.5 23q-9 0-16-5.5t-81.5-83-159-185.5T426 1068q-12-19-12-29 0-3 22.5-26.5T469 989q5 0 7 2l5 7q40 68 116.5 162T726 1303t117 114zm392 418h7q26 0 42.5 18t16.5 38q0 19-15 33.5t-48 14.5q-22 0-40-12.5t-18-35.5q0-26 20.5-41t34.5-15zm184-105.5q16 17.5 16 38.5 0 18-14.5 33t-47.5 15q-21 0-39-12.5t-18-35.5q0-25 16.5-40.5t40.5-15.5q30 0 46 17.5zm69-148.5q4 0 7-1h6q28 0 44.5 18.5t16.5 39.5q0 18-15 33t-48 15q-20 0-38.5-12.5T1451 1646q0-21 14-36.5t32-20.5zm184.5-125.5q15.5 16.5 15.5 36.5 0 16-14.5 33.5T1632 1551q-22 0-38-12.5t-16-35.5q0-26 18.5-41t44.5-15q25 0 40.5 16.5z"},"children":[]}]};exports.u1F3AB=u1F3AB;var u1F3AC={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2135 928q19 8 19 39l-43 266-13 262q-2 12-9.5 21.5T2069 1530l-28 9-12 563q0 12-8 22t-19 15L810 2555q-2 2-8 2l-13 1-218-40q-13-2-22-13t-9-25l-8-654-35-5q-13-2-22-12.5t-11-24.5l-19-311q0-9 7.5-22.5T477 1432l1214-249L538 685q-12-5-17.5-16.5T515 643v-11q0-6 2-11l34-330q2-16 12.5-26t25.5-10h351q6 0 12 1.5t8 3.5zm-185 686l1-42h-8q-23 5-251.5 73T1296 1762l-415 122-10 5v31q0 15-1 35 0 5 1.5 9.5t9.5 4.5q16 0 29.5-8.5t190-57.5 313.5-93l7-3q3 0 7-1 7 0 10 5t3 10v72.5l-4 71.5-282 88q-268 83-277 87.5t-9 13.5l1 32q0 7 1 14l2 14q0 7 4 7 20 0 56.5-16t430.5-134.5 539-178.5l23-7q13-4 17-9t4-17v-48q0-8-4-8-12 0-43 10.5t-54 20.5l-35 14q-74 19-148 44t-148 48l4-69q2-35 2-71 0-24 85-47.5t105-30.5l113-35q16-6 66.5-19t54-20 5.5-34zM756 1862l-139-23v608l139 25v-610zM625 333l-28 280 261 13 38-293H625zm-99 1184l15 231 265 43v-234zm441-858l148 71q44-48 92.5-95.5T1303 545l-162-91q-42 48-82 98t-81 96zm643 60l-130-74q-45 41-94.5 83t-86.5 89q148 71 216.5-6.5T1610 719zm-400 973q-41-40-78.5-85.5T1059 1511l-157 37q43 66 79.5 114t69.5 75zm693-805l-138-80-39 33q-36 31-67.5 63.5T1608 965l139 65 74-65q25-21 82-78zm-378 716q-18-18-71.5-81.5T1384 1433l-148 36q37 45 77 86t78 86zm305-86q-35-35-66.5-76t-66.5-83l-152 37 146 162zm241-535l-28-16q-12 10-29.5 23.5T1975 1025l-44 47q-13 14-31 32l125 59q0-3 7-8.5t15-13.5zm-43 354l-40-47-127 31q31 39 65 74.5t70 75.5l25-8v-16z"},"children":[]}]};exports.u1F3AC=u1F3AC;var u1F3AD={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1572 769l2 9v9q0 24-8 65t-21 96l-15 59q56-17 112.5-25.5T1756 973q153 0 248.5 28t141.5 90.5 107 241.5 95 329.5 34 241.5q0 143-117 355t-295 212q-77 0-244.5-40.5t-247.5-90-129-118-96-203.5l-46-132q-23-65-43-132-77 56-191 100.5T783 1900q-118 0-228.5-93T383 1581t-61-255q0-94 27-243t76-322.5T522 522t164.5-96.5T936 394q119 0 233.5 35.5t206 101T1516 670t56 99zm-313 633l6-10q7-11 15-28.5t8-27.5q0-13-12-13-8 0-25 10.5t-118 43.5-215 33q-119 0-209.5-45.5t-157-122.5-69.5-82.5-13-5.5q-9 0-12 15.5t-3 32.5q0 159 108 292t284 133q132-2 243-69t170-156zm976 620l-1-6q-22-96-124.5-167t-209.5-71q-90 0-167 53t-132 161-55 181l1 17q0 16 5.5 25.5t15.5 9.5q20 0 88-91t151-133 171-42q60 0 119 19t85 38l14 10q7 5 14.5 8.5t13.5 3.5 8.5-5 2.5-11zm-969 132q-5 0-8 1h-8q-72 4-122.5 83t-110 112-125.5 33q-50 0-107-22.5t-57-34.5q0-2 4-3t7-1h16q8 0 18-1 21 0 75-11.5t54-27.5q0-3-3-4h-6q-56-2-110.5-40.5T728 2181q0-3 4-3 95 24 135 24 88 0 154.5-107t179.5-116zm-987-884q-3 32-3 64 0 30 2.5 59t9.5 57q-100-49-152.5-114T83 1194q0-95 70.5-185.5T352 877q-13 49-24 98.5t-21 99.5q-56 14-88.5 43t-32.5 68q0 29 27.5 49.5T279 1270zm159 477q-98 72-157 173l-12 22q-5 9-18 33.5t-15 24.5q-3 0-6-16t-3-33l-1-18q0-30 4-58.5t11-57.5l5-16q3-8 3-15 0-5-4-5-6 0-44 26.5t-59 63.5l-7 12q0 2-4.5 8t-5.5 6q-3 0-4-5t-1-11q0-82 43-149t108-115l63-47q17 42 39 83t45 70zm1137.5-40.5Q1629 1647 1629 1550q0-37-11.5-77t-29.5-40q-14 0-36 46t-84.5 101.5-111.5 79-49 39.5q0 15 35 41t90 26q90 0 143.5-59.5zM1818 1394q0 28 24 80t72 90.5 102 38.5q58 0 116.5-39.5t58.5-97.5q0-12-7.5-16t-20.5-4l-52 1q-76 0-140-16.5t-94-37.5-43-21q-16 0-16 22zm662.5 366.5Q2454 1824 2420 1869q-3-44-11-90t-21-103q20-19 34-42.5t14-51.5q0-40-26-59t-65-19l-26-87q-13-43-29-86 130 13 173.5 93t43.5 191q0 82-26.5 145.5zM1369 1107q0-75-48-131.5T1194 919q-74 0-127.5 48.5T1013 1041q0 11 17 11 15 0 31-4l32-7q16-4 33.5-7.5t37.5-3.5q52 0 103 33.5t65.5 57 23.5 23.5q6 0 9-7t3-14zM467.5 933.5Q470 937 478 937q7 0 15-3l14-5q20-5 40.5-8.5T589 917q53 0 92.5 19.5t64 42.5 33.5 23q10 0 13.5-16t3.5-29q0-59-46-105t-110-46q-66 0-120.5 47T465 925q0 5 2.5 8.5z"},"children":[]}]};exports.u1F3AD=u1F3AD;var u1F3AE={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2470 1932q0 110-60 188.5t-156 78.5q-121 0-241-139.5T1820 1885t-184.5-56.5T1285 1807q-230 0-334 22t-172.5 57-161 140T466 2165t-121 34q-96 0-155.5-79T130 1940q0-128 69-305t125-296.5 106-233T538.5 929t58.5-88q0-15-2.5-30t-2.5-29q2-58 46-84.5t142-58T973 608q37 0 45 25.5t14 42.5 47 17q22 0 90-5.5t121-5.5q30 0 63.5 2t65.5 4l61 5q29 2 49 2 48 0 57-43.5t50-43.5q92 0 197 33.5t144.5 61.5 39.5 76q0 15-3 29.5t-3 31.5q0 23 27.5 48.5T2139 1044t202 442.5 129 445.5zM859 1248l8 1 37-1q43 0 53.5-12t10.5-58l-1-35q0-36-22-40.5t-68-8.5-46-23q0-4 1-7t1-6v-38q-2-41-13.5-51.5T763 958l-38 1q-34 0-38.5 17.5T678 1043t-22 49q-90 0-104 13t-14 83q0 36 12.5 47.5T601 1247h52q13 0 17.5 5t4.5 18v33q0 62 17.5 70t80.5 8q28 0 42.5-10t14.5-41v-45q0-11 1.5-24t17.5-13h10zm489 264q-29-26-67-26-42 0-69 27.5t-27 72.5q0 35 28.5 59t68.5 24q39 0 67-25t28-67q0-39-29-65zm-311 13.5q-30-24.5-66-24.5-39 0-67.5 27t-28.5 72q0 38 29.5 61t68.5 23q40 0 67-25.5t27-67.5q0-41-30-65.5zm634.5 16.5q-28.5-25-67.5-25-38 0-67 25t-29 73q0 38 29 61t69 23q39 0 66.5-25.5t27.5-67.5q0-39-28.5-64zm35-596q-28.5 28-28.5 64 0 38 26.5 61.5t58.5 23.5q31 0 62-27.5t31-61.5-25-61-60-27q-36 0-64.5 28zm145 345.5Q1826 1264 1793 1264q-36 0-64.5 27t-28.5 64q0 38 25.5 62t58.5 24q32 0 62.5-27.5t30.5-62.5q0-32-25.5-59.5zm-329-173.5q-27.5 28-27.5 64 0 38 25.5 61t56.5 23 63.5-27.5 32.5-61.5-25.5-60.5-59.5-26.5q-38 0-65.5 28zm512 1.5Q2009 1093 1977 1093q-38 0-66.5 29t-28.5 63q0 37 26 60.5t59 23.5 63-27.5 30-61.5-25.5-60.5z"},"children":[]}]};exports.u1F3AE=u1F3AE;var u1F3AF={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2268 632q-12 23-36 47l-7 7q-24 26-50.5 52t-55.5 59l-4 4q-30 35-64 64l-4 4q-24 28-53.5 40t-52.5 15q185 239 185 551 0 242-109 444t-309.5 317-455.5 115q-257 0-473-107.5T441 1945t-122-433q0-275 119.5-486.5t339-328T1281 581q96 0 177.5 19.5T1622 658q-4-20-4-40 0-50 38.5-105t79-110.5 80-110T1910 238q34 0 60 23t36 62l17 70 6 34q3 16 3 22 20 6 28.5 15t15.5 22l5 1 41-1h45q54 0 83.5 29t29.5 71q0 23-12 46zm-562 56l16 66 10-11 29-35 194-238q0-3-13-78.5t-32-75.5q-14 0-31.5 24.5t-100 131.5-82.5 145q0 33 10 71zm133 235q-21 0-41-1l-48-2-465 526q-10 12-18 15t-15 3q-17 0-29.5-12t-12.5-29q0-8 3.5-18t11.5-21l437-548q-9-14-12-36t-7-40q-98-57-182-78t-180-21q-394 0-638 234.5T399 1512q0 215 108.5 388.5t307.5 273 437 99.5q363 0 579-230t216-568q0-305-208-552zm-516 261q-63 77-113 136.5t-50 103.5q0 37 28.5 62.5t63.5 25.5q23 0 41-10t39-33l153-171q25 42 40 88.5t15 93.5q0 116-90.5 195t-209.5 79q-131 0-213.5-87T944 1457q0-120 83.5-202.5T1233 1172q48 0 90 12zm365-119q68 78 104 177t36 207q0 243-172.5 410.5T1229 2027q-263 0-429.5-157T633 1453q0-246 172-413t427-167q75 0 148.5 16.5T1521 938l-51 63q-55-24-115-36t-123-12q-235 0-377.5 146.5T712 1453q0 230 141 363t376 133q219 0 370-143t151-357q0-91-30-175t-84-150zm502-497.5q-12-2.5-23-2.5h-109l-224 259-17 19q20 0 38 2t42 2q53 0 70.5-13t91-86 93.5-98.5 35-38 15-27.5q0-14-12-16.5z"},"children":[]}]};exports.u1F3AF=u1F3AF;var u1F3B0={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2459.5 1707.5q-31.5 122.5-79 207t-80 108.5-135.5 24H435q-82 0-113-12t-62-57l-16-22q-67-101-101-229t-34-281q0-177 24-293.5T185.5 965t62-114 62.5-56 79-13h1821q79 0 116.5 40.5T2396 925t63.5 194.5T2491 1446q0 139-31.5 261.5zM1650 1838q29-96 39.5-195t10.5-200v-18h-257q-23 75-31 142t-8 116q0 43 3 63l3 29h-236q0-5-1.5-15.5t-1.5-31.5q3-69 12.5-104.5t35-87.5 72.5-111H886l-1 18q0 118 15 234.5t57 224.5l12 29q8 22 22.5 35t37.5 13h490q10 0 21 1 31 0 47.5-11.5t27.5-33.5l11-26q7-17 13-35zm-764-427h138q0-5-2.5-28t-2.5-60q0-44 5-96.5t14-98.5h67v36q35-26 67.5-36t62.5-10q25 0 48.5 5.5t45.5 11.5l43 13q19 7 39 10t38 3q22 0 36.5-3.5t23.5-6.5l56 37q-42 55-70.5 111.5T1447 1411h253q-2-115-18-230t-44.5-207-41-108-65.5-16h-463l-32-1q-35 0-50 20.5t-55.5 174T886 1411zm1525 32v-18h-198q-15 69-20.5 131t-5.5 112q0 28 1 47l2 34 2 24 2 17h-235q0-67 22.5-175t79.5-190h-282v18q0 189-26 301.5t-44.5 152.5-18.5 56q0 13 11 19.5t30 6.5h451q74 0 122-86.5t77.5-197.5 29.5-252zM896 1931l-11-23q-39-88-57-207t-18-258l1-18H652q-13 59-17.5 113t-4.5 99q0 41 2.5 72.5t6.5 61.5l-244 3v-14q0-7-1-18 0-97 30-177.5t69-139.5H188l-1 18q0 128 25 236.5t66.5 183 65 95.5 111.5 21h420l12-1q7 0 11.5-5.5t4.5-13.5q0-13-7-28zm839-1081q-23 0-37 4.5t-14 20.5q0 14 12 37t45.5 165.5T1778 1411h108l1-18v-32q0-76-7-137t-21-99h71l3 9q2 7 5 21 28-22 56-30.5t56-8.5q24 0 46 5t42 10l37 11q17 5 33 5 32 0 45-6l24-10 46 31q-41 58-66.5 122t-40.5 127h195q0-12-1-37 0-190-63-357t-141-167h-471zM188 1411h81q0-11-1-32 0-80 6.5-123t26.5-132h66l-9 31q27-16 53-22t50-6q27 0 51.5 5t47.5 11l44 11q21 5 41 5 21 0 37.5-4.5t25.5-9.5l50 32q-39 55-63.5 114.5T656 1411h156q3-198 34-331.5T892 917t15-45q0-9-6-16t-20-7h-9l-9 1H423q-55 0-81 17t-63 84-62.5 182.5T188 1411zm917 0h198q14-17 25-29l18-20q8-8 15-14l15-13q-15 5-31 7t-33 2q-42 0-82-8.5t-68-8.5-42.5 22-14.5 48v14zm-602 0q14-21 25-34l19-22q8-9 15-15l12-11q-21 10-38.5 13.5T503 1346q-27 0-48.5-6.5T411 1331q-34 0-52.5 27.5T340 1411h163zm1462-75l1 31v22q0 11-2 22h107q18-24 34-41t33-31l17-14q-14 6-29 8.5t-30 2.5q-31 0-59-5.5t-47-5.5q-14 0-25 11z"},"children":[]}]};exports.u1F3B0=u1F3B0;var u1F3B1={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1578 1545.5Q1459 1663 1295 1663q-165 0-284-117.5T892 1260q0-166 119-283.5T1295 859q164 0 283 117.5t119 283.5q0 168-119 285.5zm-464.5-907Q1199 691 1248 782q-193 19-313.5 160.5T814 1277q-106-37-172.5-129.5T575 943q0-146 104-251.5T930 586q98 0 183.5 52.5zM1344 782q43-87 129.5-140.5T1659 588q146 0 250.5 104T2014 943q0 114-66.5 205.5T1775 1277q0-192-123-335t-308-160zm749 161q0-172-118.5-296T1692 511q46-75 119-115t153-40q132 0 226 94t94 225q0 96-53.5 176T2092 967zm196 1586.5q-28 24.5-68 24.5-24 0-53.5-11t-56.5-25l-560-283q-23-12-34.5-32.5T1505 2161q0-27 18-50.5t44-23.5q3 0 7.5 1t9.5 3l542 235q34 15 112.5 48t78.5 91q0 40-28 64.5zM497 929q-58-44-92-109.5T371 675q0-131 94-225t225-94q86 0 157.5 42.5T962 510q-8 0-16-1t-16-1q-174 0-300.5 123T497 929zm984.5 1135.5q-10.5 4.5-27 25T1438 2137q0 14 3.5 21.5t3.5 15.5q0 4-7 4l-38-19q-511-254-785-394t-303-156-29-33q0-13 7.5-24t21.5-11q27 2 83.5 31.5T951 1816t520 224 21 15-10.5 9.5zM1296 710q-44-69-107.5-116T1047 525q43-80 118.5-124.5T1327 356q88 0 160.5 43.5T1601 514q-97 12-175.5 64T1296 710z"},"children":[]}]};exports.u1F3B1=u1F3B1;var u1F3B2={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2237.5 1753.5Q2220 1841 2170 1907t-141 148.5-175 158-162.5 112T1537 2362q-80 0-194.5-23t-199-38-245-64-217.5-79.5T576 2047t-90-200l-23-63q-20-57-69-189t-49-261q0-186 50.5-283T516 878t223-197.5 270.5-169T1247 464q173 0 453 73t401 223 137.5 406.5T2255 1549q0 117-17.5 204.5zM549 1218.5q53 35.5 330 110t351 74.5q8 0 16 1t16 1q85 0 131-22t125.5-81 203.5-166l94-83q12-10 79.5-70t67.5-136q0-133-238-212.5T1301 555q-184 0-331 80T659.5 874 496 1129q0 54 53 89.5zm862 864.5q-11-89-16.5-104.5T1373 1842t-41-193.5-52-97.5-45.5-32.5-71.5-23.5l-208-58-113-29q-55-14-101-25l-74-18q-45-11-80.5-17t-59.5-6q-39 0-56.5 23.5T453 1417q0 38 22.5 97.5T509 1612l15 57 14 59q7 29 15 54l31 105q26 90 75 153.5T828 2141l66 20q119 36 220.5 54.5T1219 2235l54 11q26 6 50 10t44 4q35 0 45-12.5t10-48.5q0-27-11-116zm759.5-637.5q-7.5-78.5-7.5-159.5 0-146-28.5-207t-83.5-61q-26 0-54 15t-58 39l-33 26q-69 53-121 95.5t-155.5 122-144 145.5-40.5 189q0 60 10 119l20 118q3 15 8.5 48t12.5 67l12 62q13 71 41 124.5t66 53.5q26 0 107.5-40t248.5-207l49-49q88-86 123-153.5t35-182.5q0-86-7.5-164.5zM1092 819.5q76-55.5 185-55.5 100 0 158 51t58 110q0 77-81 128.5t-183 51.5q-90 0-151.5-41.5T1016 958q0-83 76-138.5zm-485 671q21-17.5 48-17.5 48 0 89 35.5t41 81.5q0 31-23 46t-52 15q-49 0-86.5-36.5T586 1538q0-30 21-47.5zm466.5 106q20.5-16.5 49.5-16.5 49 0 89 34t40 81q0 31-22 46.5t-52 15.5q-50 0-87.5-37t-37.5-77q0-30 20.5-46.5zM1559 1665q-19-17-19-55 0-40 31.5-79.5t69.5-39.5q28 0 44 22t16 51q0 46-31 82t-71 36q-21 0-40-17zm352-327q-18-17-18-55 0-42 31.5-80t70.5-38q27 0 43.5 22.5t16.5 50.5q0 43-30.5 80t-72.5 37q-23 0-41-17zm81 410q-15-14-15-47 0-36 25.5-69t57.5-33q25 0 38 19t13 42q0 41-27 71.5t-58 30.5q-19 0-34-14zm-323 298q-16-15-16-49 0-39 28.5-74t62.5-35q26 0 39 21.5t13 44.5q0 43-28 75t-64 32q-19 0-35-15zm-825.5-306.5Q861 1724 888 1724q48 0 91.5 35.5t43.5 83.5q0 27-19 39t-45 12q-52 0-92.5-36.5T826 1782q0-27 17.5-42.5zm-123 190Q734 1916 756 1916q43 0 81 30.5t38 69.5q0 23-16.5 34t-39.5 11q-43 0-77.5-31.5T707 1964q0-21 13.5-34.5zM1139 2017q17-12 39-12 44 0 82.5 32.5t38.5 74.5q0 23-17 34t-41 11q-42 0-80.5-32.5T1122 2053q0-24 17-36z"},"children":[]}]};exports.u1F3B2=u1F3B2;var u1F3B3={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1678.5 2178.5Q1575 2354 1396.5 2457T1008 2560q-211 0-391-105t-281.5-279.5T234 1798q0-204 103-379.5t282.5-278T1008 1038t388 102 282.5 278 103.5 380q0 205-103.5 380.5zM883 1463q-22-15-47-15-32 0-54.5 21t-22.5 51q0 27 19 46.5t53 19.5q29 0 51.5-21t22.5-52q0-35-22-50zm260.5-76.5q22.5-18.5 22.5-51.5 0-29-20.5-44.5T1100 1275q-34 0-56 20.5t-22 49.5q0 25 22 42.5t48 17.5q29 0 51.5-18.5zM1270 1621q-23-21-58-21-33 0-60 24.5t-27 58.5q0 35 21 59.5t59 24.5q36 0 62-26t26-60q0-39-23-60zm100-608.5q-30-33.5-30-88.5l1-16q0-8 1-15l8-63q17-133 105-195.5t120-95.5q0 46 36 78t82 32q10 0 19-2l18-4q-10 35-12 93.5T1676 867t-92 109.5-80 53.5-55 16q-49 0-79-33.5zM1608 491q2-4 33.5-74.5T1749 346q38 0 65 27t27 64q0 43-22 77.5t-48 64.5q-20 8-46 8-45 0-76-25t-41-71zm484 462q-12 23-12 47 0 43 26 68.5t65 40.5q-29 29-54.5 73.5t-104.5 93-185 48.5l-20-1-10 1q-34 0-62.5-30t-28.5-66q0-24 10.5-47t24.5-42l35-48q74-103 174.5-112.5T2092 953zm234.5 71.5Q2287 1059 2234 1074q-41-7-71.5-37.5T2132 965q0-9 3-18l5-17q4-3 45-36t84-33q46 0 71.5 29t25.5 59q0 41-39.5 75.5zM727 543q22 13 50 13 44 0 81.5-32.5T904 445q29 25 93 64.5T1108.5 632t57.5 196q0 5-1 10t-1 10 1 10.5 1 10.5q0 41-34.5 74t-76.5 33q-49 0-131.5-56.5T805.5 815 759 695l-8-52q-4-26-9-51.5T727 543zm-82-284q30-32 70-32 43 0 82.5 40.5T862 374q-9 51-44 86t-81 35q-20 0-38-6-17-19-50.5-57.5T615 338q0-47 30-79z"},"children":[]}]};exports.u1F3B3=u1F3B3;var u1F3B4={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2356 895q-14 34-46 103l-114 239-253 521q-31 64-93.5 190.5T1773 2104l-103 208q-56 115-96.5 163t-104.5 48q-25 0-48.5-9t-30.5-13L323 1949q-51-26-72-63t-21-76q0-38 12.5-63t31.5-50l905-1261q22-31 53-41.5t53-10.5q20 0 32 3l28 8q32 10 81 26l109 36 128 43 136 47 264 93q54 20 180.5 66T2370 834q0 27-14 61zm-133 59q17-34 33.5-71.5T2273 836q0-11-24.5-21t-150-59-266.5-95q51 50 76.5 115t25.5 134q0 105-54.5 189.5t-150 121.5-185.5 37q-185 0-308.5-105T1112 887q0-141 108-237t258-112l-67-23q-44-14-80-24t-46-10q-8 0-16.5 4.5T1248 508l-475 658h53l38-1q332 0 568 171t365 500l25-52 112-229q78-158 144-295.5T2207 988zm-929.5 141q100.5 84 250.5 84 130 0 220.5-75.5T1855 910q0-78-40.5-146t-135-108-168.5-40q-117 0-217.5 80T1193 887q0 124 100.5 208z"},"children":[]}]};exports.u1F3B4=u1F3B4;var u1F3B5={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2274.5 1460.5Q2243 1478 2202 1478q-77 0-138.5-51T1947 1277.5t-155-163-290-108.5l-205 970q-34 166-215 290t-367 124q-179 0-300.5-120T293 1985q0-176 164.5-294.5T828 1572q103 0 199 32t168 101l259-1237q6-28 28.5-45.5T1532 405q92 0 274.5 110.5t294.5 266 112 359.5q0 18-1.5 36.5t-1.5 39.5q0 98 48 134t48 66q0 26-31.5 43.5z"},"children":[]}]};exports.u1F3B5=u1F3B5;var u1F3B6={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2366.5 1749.5Q2342 1761 2318 1761q-32 0-61.5-16.5T2202 1702l-31-31q-45-45-109-62.5t-124-17.5q-4 0-9 1t-10 1l6 533q0 111-100.5 200.5T1614 2416q-78 0-148.5-57.5T1395 2218q0-104 93.5-181t217.5-77q35 0 69.5 8.5t64.5 27.5l-8-681q0-26 19.5-36t45.5-10q7 0 14 1l14 2q175 35 271 123.5t111 182 49.5 108 34.5 33.5-24.5 30.5zm-1144.5 181q-20 11.5-48 11.5-64 0-121.5-74.5t-129-100T782 1742l-37 532q-6 97-106.5 181T430 2539q-83 0-152-60t-69-144q0-101 91-173t211-72q43 0 84 11t76 36l47-680q0-23 16.5-31.5t42.5-8.5q10 0 20 2l17 4q169 45 260.5 144.5T1171 1759t38 109 33 36q0 15-20 26.5zM1083 1026q91-77 209-77 40 0 77.5 8t70.5 29l5-681q0-25 19.5-33.5t42.5-8.5h16q66 5 175 56.5T1858 443t60.5 148.5 44 94T1997 720t-22 28.5-49 11.5q-32 0-61.5-16.5T1809 700l-31-32q-40-42-101.5-62T1527 586l-2 533q-2 108-103.5 196.5T1211 1404q-82 0-150.5-58.5T992 1204q0-101 91-178z"},"children":[]}]};exports.u1F3B6=u1F3B6;var u1F3B7={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2469 758q15 12 27 29.5t12 39.5q0 31-21.5 47.5T2443 891q-13 0-41-6t-117-28l-127-31q-20-5-33-19t-14-35q0-5-4-5-58-18-103-53.5t-73-75.5l-25-34-18 32q-17 29-41.5 88.5T1801 844l-26 71q-8 23-30 79l-124 312q-38 97-79 198l-81 202-142 348q-30 73-61 142t-84 129.5-117.5 102.5-140.5 63-153 21q-241 0-379.5-154T245 1938q0-91 29.5-240t29.5-203q0-81-76.5-170T151 1163q0-122 135-202.5T662 880q205 0 329 71.5t124 185.5q0 40-18 89.5t-33.5 80T1008 1521l-17 77q-9 40-24 98l73-129q-4-13-4-30 0-50 28-88t72-55l46-85q-8-24-8-49 0-54 33.5-94.5t84.5-50.5l26-47q-8-15-13.5-31.5t-5.5-36.5q0-55 39-95t95-42l14-25q-24-35-24-78 0-58 41-99.5t99-41.5l6 1 102-184q41-72 90.5-101.5T1886 305q67 0 135 42t107.5 131.5T2195 593l19-11q7-4 20-4 17 0 51.5 18.5T2366 639t70 68l26 45zm-1217 502q0 29 20.5 48.5t49.5 19.5 49.5-19.5 20.5-48.5-20.5-49.5-49.5-20.5-49.5 20.5-20.5 49.5zm-116 224.5q-21 20.5-21 52.5 0 29 21 50.5t52 21.5q29 0 50.5-21.5t21.5-50.5q0-32-21.5-52.5T1188 1464q-31 0-52 20.5zm384.5-680Q1540 821 1563 821q27 0 45-17.5t18-43.5-18.5-44-44.5-18q-25 0-43.5 18.5T1501 760q0 28 19.5 44.5zM1396 1043q18 17 42 17 25 0 43-17t18-43q0-27-19.5-43t-45.5-16q-23 0-39.5 18t-16.5 41q0 26 18 43zm-535.5 4q-88.5-34-211.5-34-134 0-221.5 41T340 1163q0 56 86 91t212 35q136 0 223.5-40t87.5-108q0-60-88.5-94z"},"children":[]}]};exports.u1F3B7=u1F3B7;var u1F3B8={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2391 369q43 0 69.5 20t26.5 52q0 29-28.5 62t-48.5 64.5-60.5 69T2260 676t-82 42l-535 597-22 26q-32 36-59.5 86.5T1534 1522q0 30 18.5 51t52.5 21q27 0 57-27t53-27q31 0 42 20t11 46q0 56-44.5 136.5t-154.5 122-126 163.5-70 265-175 233-288 90q-185 0-359.5-105t-286-285.5T153 1869q0-143 73-250.5t166.5-155 265-63.5 285-113 135-236.5T1198 840t211-71q31 0 50 16.5t19 42.5q0 48-53 86t-75.5 85-22.5 93q0 45 21.5 70.5t63.5 25.5q14 0 35-4.5t40-21.5l625-541q3 0 7-17l10-35q15-56 21.5-62.5t6.5-13.5-6.5-13-29.5-6q-16 0-23.5-13t-7.5-25q0-19 12.5-33.5T2137 388q13 0 25.5 8t12.5 25l-1 20q0 11 5 17.5t11 6.5q5 0 9.5-3.5T2223 446l22-14q4-6 4-10 0-3-1-6l-2-6q-3-8-11-12l-18-7q-9-3-15.5-10.5T2195 358q0-16 12-30t32-14q14 0 29 7t15 27q0 11-4 19.5t-4 19.5 9 17l5 3q10-4 36-17t27-16v-4q0-7-6-13l-14-11q-8-6-14.5-13.5T2311 314q0-17 13.5-30t31.5-13q14 0 29.5 9.5T2401 308q0 13-9 23.5t-9 20.5q0 5 6 13zM1170.5 1795.5Q1158 1776 1133 1748l-23-24q-4-4-52-59.5t-78-55.5q-28 0-57.5 27t-29.5 45q0 23 32.5 63.5t90 101 85.5 60.5 55-28 27-49q0-14-12.5-33.5zm127.5-175q-34-33.5-37-36.5l-60-63q-16-14-33.5-31t-35.5-17-31.5 15-13.5 27q0 22 33.5 60.5t86.5 94 77 55.5q17 0 32.5-12t15.5-30q0-29-34-62.5z"},"children":[]}]};exports.u1F3B8=u1F3B8;var u1F3B9={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2480 2456l-5 60q-6 54-26 76t-81.5 27.5-101.5 5.5q-173 0-405.5-67.5t-611-202T538 2053t-370.5-216-41.5-157q0-29-4-64t-4-70q0-58 11-89.5t30-31.5q11 0 24 6l22 12q27 14 54.5 29.5T316 1501l851-929-164-55-132 134q-58 59-100 98.5T671 846t-85 57q-17 0-34-8l-36-16-291 235q-3 2-30.5 27t-42.5 25q-14 0-16-12.5t-2-22.5q0-30 4.5-51t23.5-36l268-209q-16-8-32-18.5T382 795q0-39 21-93t69.5-84 77.5-54 198-137l-58-22-2 4q-97 61-188 129.5T315 668l-27 17q-14 9-31 9t-47.5-19-35.5-22l-32-20q-9-6-16-12.5t-7-13.5v-2q9-58 33-94t61-58l44-25q47-26 97-53t106-55q-6-3-32.5-15T401 284q0-11 16-20t28-9q17 0 48 12t38 17q30-14 61-30t60-16q11 0 42 9.5t40 23 11 44.5v21q0 14-3 26l68 24q11-8 23-16l24-16q17-11 33.5-22.5T927 320q22 0 71 19t49 57q0 18-2 35.5t-5 34.5l313 107q58-72 79-72 19 0 82.5 17.5T1578 580q0 20-2 35.5t-5 26.5l63 20 14-25q13-23 26.5-37t26.5-14q35 0 74.5 11t67.5 20.5 28 42.5q0 18-4.5 37t-6.5 32l88 25q2-7 15-46t55-39q23 0 47 6.5t46 11.5l22 6q20 6 33.5 17.5T2180 738q0 20-3 39l-6 37 86 23q80 22 141 33.5t61 42.5q0 8-4 15.5t-15 7.5q-28 0-60.5-8t-68.5-16l-15 1346 78 20q75 20 91.5 28t16.5 89q0 31-2 61zM2233 892l-71-19-5 25-30 145q-27 137-52 234.5t-32 116.5-35 19q-10 0-23-2l-26-5q-13-2-23.5-5.5t-16.5-6.5l-146 709q127 41 233.5 73.5T2219 2238zm-534 1187l145-706q-34-12-50.5-17t-16.5-27q0-32 10.5-68t20.5-67l61-192q30-95 60-192l-84-24-94 258q-85 234-101 243.5t-29 9.5q-16 0-31.5-3t-30.5-7l-266 647q100 37 180 66t161 57zm-562-943q-41-10-63.5-20.5T1051 1092l1-38q0-65 16.5-94t45.5-69l56-77q32-44 70-94t75-97l-68-24-861 937 21 10 20 11q84 42 168.5 81t171.5 76zm-59 712l144 58 264-645-28-13q-24-10-38.5-22.5T1405 1197q0-21 10.5-67t64.5-158l39-80q20-41 39-77l32-63q13-27 18-36l-61-20q-226 463-247 469t-25 6q-15 0-31-4t-30-9l-376 588 48 21q7 4 75 32.5t117 48.5z"},"children":[]}]};exports.u1F3B9=u1F3B9;var u1F3BA={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2427.5 2446.5Q2382 2494 2329 2494q-30 0-60.5-16.5t-44-60-26.5-62.5-35-19q-23 0-70 61t-105.5 104-128.5 43q-37 0-79-11t-58-11-30.5 3.5-29.5 3.5q-68 0-90-32.5t-42-32.5q-11 0-22.5 4.5t-23.5 4.5q-26 0-58-16t-38-39l-7-25q-5-15-25-26t-45-29.5-51-18.5q-15 0-29.5 4t-29.5 4q-56 0-109.5-43t-53.5-98q0-17 4.5-34t4.5-37q0-31-10.5-63.5T1026 1986q0-63 25.5-148t82.5-134.5 96.5-62.5 39.5-30-109.5-79.5-198-97T777 1400q-29 0-63 4l-72 10q-38 6-80 10.5t-88 4.5q-164 0-255.5-86.5T127 1097q0-189 114.5-368T537 440.5 884 331q162 0 244.5 96.5T1211 744q0 38-1.5 76.5T1208 897q0 176 39.5 304t159.5 246 266 242l74 63q28 24 70.5 57t56.5 33q16 0 18.5-15.5t15.5-26.5 35-11q35 0 60.5 29t25.5 63q0 23-23.5 34.5T1982 1934q0 11 11 23.5t28 12.5q14 0 23-23.5t33-23.5q26 0 49 22.5t23 48.5q0 16-9.5 23t-18.5 11l-19 7q-9 4-9 14 0 13 14.5 23t28.5 10 21.5-13 26.5-13q24 0 45.5 19.5t21.5 39.5q0 19-16 25.5t-16 19.5q0 17 36 48.5t66 31.5q9 0 19-1.5t19-1.5q35 0 74.5 29t39.5 79q0 54-45.5 101.5zm-1452-1916Q935 493 874 493q-124 0-262 87T387 798.5 300 1053q0 78 42.5 120.5T463 1216q116 0 248.5-87.5t218.5-220 86-260.5q0-80-40.5-117.5zM1565 2195q5-6 5-16 0-28-65-64.5t-126-36.5q-32 0-68 9t-36 24q0 16 58.5 69.5t82.5 75.5 48 22q20 0 38.5-14t34.5-33zm157 84q0-10-9-17t-21-7q-22 0-41 16.5t-50 46.5-31 45q0 12 15 20.5t27 8.5q23 0 52-29.5t54-72.5q4-6 4-11zm10-249q8-11 19.5-28.5t11.5-29.5q0-13-10.5-23t-106.5-87-191-77q-102 0-165.5 53t-63.5 111q0 17 16 17 5 0 11-2l10-4q22-11 50-15t51-4q70 0 135.5 32.5t111 68.5 66.5 41q9 0 21-12t24-27zm119 324.5q-20-18.5-36-18.5-15 0-46 30.5t-31 53.5q0 8 8.5 11t17.5 3l18-1q25-2 57-12t32-32q0-16-20-34.5zm21-196q36-48.5 36-69.5 0-9-8-21t-29-12q-14 0-25.5 9t-22.5 20l-16 18q-18 18-28 35t-10 32q0 16 12 26.5t26 10.5q29 0 65-48.5zm131 112.5q15-16 15-37 0-16-11.5-34.5T1978 2181q-21 0-49 33t-28 52q0 17 16.5 33.5t34.5 16.5q10 0 22-13z"},"children":[]}]};exports.u1F3BA=u1F3BA;var u1F3BB={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2451 577.5q35 9.5 35 37.5 0 20-17 34t-37 14q-15 0-37-13t-27.5-25-17.5-12q-11 0-16.5 8t-5.5 19q0 9 9 15l19 14q10 8 19 18.5t9 25.5q0 20-16 32t-33 12q-36 0-47.5-31.5T2263 694q-7 0-13.5 2.5T2235 699q-16 0-27-10l-362 351q37 62 59.5 131t22.5 140q0 70-26.5 139.5t-118.5 156-109.5 148.5-23 69-15.5 7q-20 0-56.5-28.5T1508 1774q-68 0-122 63t-54 128q0 38 22 69.5t46 42 24 29.5q0 11-8.5 17.5T1397 2135l-22 12q-29 17-43.5 40t-30.5 61l-23 53q-33 73-66 106t-75.5 63.5T1021 2524t-153 23q-281 0-507.5-255.5T134 1781q0-105 36-196t104-159.5 181.5-97T592 1257t40-43q20 0 33.5 34.5t46.5 54 68 19.5q66 0 129.5-50t63.5-115q0-12-2.5-25t-11.5-29l-12-22q-6-11-11-22.5t-5-21.5q0-7 3.5-13t74.5-20.5 155-87 145.5-95.5 128.5-23q62 0 123 19t117 52l431-299-8-16q-4-6-4-14 0-5 2-10.5t2-11.5q0-16-34.5-30t-34.5-41q0-20 13-34t33-14q18 0 39 18t27.5 33 33.5 15q4-5 5-7t1-7q0-9-8-19l-17-20q-9-10-17-22t-8-27q0-14 12.5-27.5T2178 322q20 0 31.5 12.5T2228 362l13 27q6 13 16 13 15 0 27-13-14-18-23-40t-9-46q0-41 26-69t71-28q60 0 108.5 55.5T2506 380q0 41-23.5 76t-45 57.5T2416 551q0 17 35 26.5zM999 1428q16 0 28.5 17.5t30.5 17.5q19 0 35-13t16-33q0-30-30.5-46t-70.5-16q-14 0-26 1l-22 3q-51 8-119 55.5t-99 47.5q-29 0-41.5-23t-42.5-23q-25 0-35.5 15.5T612 1468q0 39 33 64t69 25q60 0 144-64.5t141-64.5zm294.5 194q-14.5-24-40.5-24-17 0-32 14.5t-15 34.5q0 13 12.5 26t12.5 26q0 46-90 132t-90 150q0 38 23.5 68t60.5 30q19 0 33.5-11.5t14.5-38.5q0-16-17-33t-17-37q0-35 59.5-89t79.5-102.5 20-91.5q0-30-14.5-54z"},"children":[]}]};exports.u1F3BB=u1F3BB;var u1F3BC={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2485 1918l1 7q0 20-132 81t-264 87-239 32q-10-25-23-55t-25-54q119-3 245-26.5t231-70.5 132-66.5 33-19.5q8 0 13 4t6 9zm-597-265l76-12q59-8 168.5-48t155-68 53.5-28 12 4.5 7 10.5l19 63 3 13q0 8-5.5 14t-79 42.5-135 58.5-131 36-135.5 24q0-27-4-58.5t-4-51.5zm262.5-808q5.5 3 7.5 10l22 69q0 2 1 3v3q0 7-5.5 14T2071 985.5t-243.5 60.5-243.5 26q-69 0-127.5-5.5T1333 1056l-1-110q66 4 133.5 10.5T1585 963q116 0 260-28.5t215.5-60.5 79.5-32q5 0 10.5 3zm75.5 311l4-2q2 0 4-1 5 0 12 4t9 10l20 70q2 3 2 7t-5 12-150.5 73-392.5 91q-36-23-81-34.5t-92-11.5q-42 0-85.5 9t-82.5 31l-43-3-55-71 11-40q78 2 163.5 9t145.5 7q129 0 294-35.5t322-124.5zm-955-527l-7-17q73 4 141 10.5t122 6.5q109 0 249-24.5t262-67.5q2-2 7-2 8 0 12 4.5t7 9.5l20 63q0 5 1 7v4q0 7-3.5 13t-96.5 34-220 48-239 20q-62 0-116-5l-111-9-8-31q-3-10-11.5-36t-8.5-28zM956 2163q-100 41-205.5 126.5T636 2375q-15 0-18-12L116 1044q-2-6-2-9 0-20 145.5-154T631 671q7 34 13 58t11 52q-112 36-193 86t-135 99l87 224q57-51 137.5-99.5T741 1007l18 38q6 14 15 29.5t20 30.5q-96 29-182 79.5T455 1303l78 204q53-42 122.5-80.5T815 1359l-20 65q-12 37-18 68-64 27-113.5 59.5T575 1616l76 200q24-17 51-33t58-32q0-3 6.5 40t6.5 44l6 32q-24 14-45.5 28.5T692 1925l78 205q23-14 49-28t55-27q31 40 55 62.5t27 25.5zm776-155q39 60 63 129.5t24 135.5q0 113-57.5 187t-151.5 74q-66 0-119-43t-53-105q0-49 33.5-80t81.5-31q7 0 13 1l13 2q22 6 43.5 36t47.5 30q25 0 42-23.5t17-54.5q0-53-21.5-98.5T1658 2075q-81 69-179 111.5t-201 42.5q-116 0-208-56.5T933 2059t-82-153-37-229q0-111 27-212.5t95-241.5q-82-102-169.5-299T679 571q0-115 62.5-195T907 289q144 0 257 229.5T1277 983q0 116-12.5 207.5T1229 1351q4 6 16 22l28 37q16 21 35 45.5t39 48.5q45-36 99-55t110-19q131 0 206.5 90.5T1838 1770q0 72-30 131.5t-76 106.5zm-731-936q35-78 54.5-165t19.5-187q0-96-21-141.5T993 533q-37 0-59.5 52.5T911 711q0 91 25 200t65 161zm18-349l-51 3-1-14q0-8 2-21l3-28q2-14 5.5-27t7.5-21l22-2q4 7 7.5 26t3.5 44zm580 1273q-33-48-82-109l-105-130q-29 24-47 54t-18 64q0 24 9 45.5t26 38.5l13 15q6 8 6 19t-9 14.5-19 3.5q-68 0-115-68t-47-150q0-51 13-98.5t42-98.5q-22-23-43.5-46.5T1178 1500q-25 75-45.5 158t-20.5 167q0 116 66.5 192t161.5 76q51 0 125-27t134-70zm67-74q7-11 15-28.5t8-37.5q0-67-37.5-109.5T1553 1704q-10 0-21 1t-24 4q42 50 83 107z"},"children":[]}]};exports.u1F3BC=u1F3BC;var u1F3BD={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2110.5 2078q-30.5 42-165 150.5t-329.5 176-438 67.5q-154 0-297.5-24.5t-217-41-100.5-70-27-178.5q0-276-19.5-457.5T478 1448t-19-113q0-35 22.5-78.5t38.5-114T536 986q0-84-14.5-182T496 673l-13-36-11-33q-5-16-5-28 0-51 72-88.5T670 445l44-3q58 0 89.5 53t77 71T988 584q87 0 152.5-35.5T1211 453q0-10-1.5-19t-1.5-20q0-58 82-70.5t117-12.5q37 0 86 7t62 14.5 25.5 44 15 76 14.5 82 22 89.5 22 89 29 81 39.5 74 50.5 62.5 64 50.5q16 10 20.5 25t4.5 32v49l-1 8q0 71 27 205t84.5 273 113 234 55.5 162q0 47-30.5 89zM649 1923q91-39 188-122t259.5-226.5 268-258 180.5-204 96-136.5q-64-88-108.5-237T1475 454l-34-4q-17 0-34-1-19 0-35.5 2.5T1334 456q11 81 17.5 167.5T1358 791q0 160-74.5 237.5T1105 1106q-102-2-183.5-62.5T789 830l-39-117q-17-52-26-97.5T711 560q-42 0-69.5 12.5T594 593q27 72 43 179.5T653 986q0 114-23.5 203.5t-39 114.5-15.5 37q0 3 29.5 147t42.5 385zm1326-53q-48-82-98.5-198t-83.5-248q-41 62-203 247.5T1257 2001t-293 213.5-126.5 75.5-36.5 23q97 21 191.5 31t185.5 10q171 0 312-34.5t252-96 192.5-137.5 85-83.5 3.5-16.5q0-34-48-116z"},"children":[]}]};exports.u1F3BD=u1F3BD;var u1F3BE={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2228 1498q-220 212-665 249l-205 18q-128 13-250.5 75T947 1957q0 106-63.5 176t-114 133.5T667 2385l-85 94-39 46q-40 47-86.5 75t-99.5 28q-81 0-143-60.5T152 2427q0-81 67.5-151t72.5-75l261-278 38-38q35-36 71-57t76-28q24-24 34-49.5t37.5-130T837 1371q0-55 1-112l-1-74q0-387 96.5-576T1197 323t374-97q118 0 278 48.5t301.5 163 219.5 271 78 304.5q0 273-220 485zm-336 517q39 35 62 83.5t23 105.5q0 36-11 71-24-6-46-8t-46-2q-87 0-163 40.5T1585 2418q-53-35-84.5-90.5T1469 2204q0-50 17-93 33 14 64 21t66 7q74 0 156.5-34.5T1892 2015zm-1216.5 19.5Q646 1986 603 1986l-120 127q54 23 87.5 86t33.5 139q43-45 72-82.5t29-105.5q0-67-29.5-115.5zM497 2226q-29-47-75-47-41 42-82 82t-70 76q5 0 9.5-1t9.5-1q55 0 108.5 48.5T451 2493q0 10-2 15l41-43q4-9 3-9t16-28.5 17-83.5q0-71-29-118zm1546-807q38-29 71-61.5t61-68.5l-130-96-120 138zm-196 563q-41 48-100 74t-126 26q-57 0-109-21 35-51 89.5-81.5T1722 1949q35 0 66 8.5t59 24.5zM1164 549q-60 64-90 146l107 80 119-128zm526 934l124-141-114-85-125 138zm-287-218l112 85 123-138-111-84zm348-64l113 84 120-136-114-84zm-919.5 702q-36.5-28-67.5-28-20 0-44.5 12.5T668 1922q47 23 78 76.5t36 129.5l16-16q26-28 48-63.5t22-73.5q0-44-36.5-72zm632.5-497l-112-84-123 135q29 22 60.5 40.5t63.5 34.5zm-122-187l124-136-108-81-125 133zm566.5 1104.5q18.5 1.5 35.5 6.5-33 58-92 93.5t-130 35.5q-23 0-45-4.5t-43-12.5q37-51 101.5-85.5T1873 2322q17 0 35.5 1.5zM1689 1154l121-134-111-81-121 133zm345-63l117-133-113-80-116 131zm-845-215l-123 132 107 82 123-134zm-116 435q23 26 46.5 51t50.5 49l122-136-110-84zm456-496l-121 131 110 81 119-133zm220 68l111 81 117-130-111-80zm169-185l109 78 106-118q-20-26-43.5-50t-49.5-45zm-451 73l-105-78-121 128 107 79zm513-254q-28-18-57.5-33.5T1862 454l-113 122 107 77zm-768 1114q-65-30-117.5-69.5T1010 1476q-5 42-12.5 82t-18.5 81l-6 25q-3 12-3 25l-1 8q0 4 5 4 15 0 63.5-19t174.5-51zm592-921l-107-78-116 126 107 80zm-274-198l-116 125 105 78 117-126zm-307-15l129 96 117-125-70-49q-55 14-106 39t-70 39zm992 727q23-42 35-88t13-97l-51-35-116 133zm-574 315l-116-87-99 112q20 6 39 13l38 16 98-7zm140 13q50-16 99-38t95-51l-100-76-124 141zM1582 457l104 75 98-106q-73-22-146-29zm595 266l-88 98 111 80 37-40q-15-50-32.5-86.5T2177 723zm-1156 345q0 5-1 9t-1 9q0 35 1 76t1 83l4 5 97-104zm28-296q-10 42-16 84t-8 86l104-111zm454-372l18 12 15-17z"},"children":[]}]};exports.u1F3BE=u1F3BE;var u1F3BF={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M533 1741q23 38 35.5 75.5T581 1887q0 45-23.5 73t-68.5 28q-37 0-79-21.5t-81-60.5l-109 87q-13 10-26 10-17 0-29-12t-12-29q0-9 4.5-18t12.5-15l107-86q-24-38-37-75t-13-69q0-45 24.5-74t68.5-29q36 0 79 21.5t82 59.5l1235-999q-2-6-3.5-13t-1.5-14l1-11q-14-5-26.5-15t-18.5-23l-4-7q-7-19-7-36 0-27 12-57.5t38-57 75-43 126.5-23.5 99.5-16.5 41-10.5q0-10 22.5-16t32.5-6q34 0 67.5 29t33.5 63q0 46-51 71t-84 55.5-92 74.5-81 70l-32 36q-16 17-39 17-11 0-23.5-3t-23.5-8zM1752 571q55-21 105.5-55t97.5-72l-71 7q-58 5-101 34t-43 58q0 19 12 28zm660.5 142.5q-34.5 24.5-91 103t-76 98.5-37.5 54l-14 25q-11 20-27 32.5t-38 12.5q-6 0-12-1l-13-2-977 1270q41 39 63 81.5t22 79.5q0 46-29.5 69t-74.5 23q-32 0-68.5-11t-72.5-34l-85 110q-12 16-33 16-18 0-28.5-12.5T810 2599q0-6 1.5-13t6.5-12l83-111q-40-38-62.5-81t-22.5-80q0-45 30-68t75-23q32 0 68.5 11t72.5 34l970-1259q-12-14-14-37-34-3-54-26l-4-5q-10-14-14.5-32.5T1941 859q0-25 5.5-47.5t23.5-47 56.5-50 112-50.5 99-42 39.5-22q9-17 27.5-26t38.5-9q43 0 73.5 25t30.5 59q0 40-34.5 64.5zm-204.5.5l-68 24q-54 17-86.5 50.5T2021 851q0 9 4.5 18t15.5 16l10-8q69-49 157-163z"},"children":[]}]};exports.u1F3BF=u1F3BF;var u1F3C0={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1807 1573q-114 182-192.5 411.5T1510 2462v1q0 34-99.5 68t-269.5 34q-180 0-270.5-34t-96-73.5-20-136-61.5-260T564.5 1734t-134-224.5T378 1384q0-100 115-185t303-127q8 29 18.5 57t22.5 56q-133 32-207.5 81.5T555 1372q0 89 171.5 154.5T1141 1592q54 0 95.5-2.5t47.5-3.5 50 11 94.5 19.5 105.5 7.5q68 0 137-11.5t136-39.5zm160-175q-88 72-192.5 107.5T1552 1547q-148-153-243.5-358T1206 780q226 8 438 213t323 405zm-733-879l11-32q5-16 11-31 148-8 330.5-81t293.5-73q156 89 247.5 240t93.5 328q-192-159-432.5-255.5T1278 518q-29 0-44 1zm-28 180q2-27 4.5-53t7.5-54h33q227 0 468 108.5t484 329.5q-17 74-50 140t-80 123q-101-151-222-268t-293.5-221.5T1206 699zm133 822q-145-43-254.5-135.5T915 1170q3-142 53.5-247.5T1111 791l-1 33q0 176 55 353.5t174 343.5zm-188 248q-29 37-64 87.5t-73 113.5q34 69 68.5 149.5T1151 2291q34-78 69.5-149t72.5-135q-39-76-76-135.5t-66-102.5zm-84 737q22-67 50-133-33-97-68.5-181.5T977 2033q-29 51-57.5 108.5T862 2265l39 112q19 55 35 112 25 5 58.5 10t72.5 7zm315-110q17-46 36-91-23-66-46.5-124t-46.5-109q-77 135-145 302l20 65q10 33 19 67 38-3 70.5-7.5t58.5-9.5zm-682-502q34 74 69 147.5t64 145.5q56-123 112-218-43-86-82.5-151.5T792 1707q-26 45-49 91.5t-43 95.5zm822 189q28-101 62-187-14-33-30-65.5t-33-64.5q-36 49-77 110t-84 133q23 48 46 101.5t46 115.5zM1117 708q-85 20-153 88.5T854 977q-4-24-6.5-48t-2.5-49q0-44 6.5-85.5T869 713q54-48 122-76t141-38q-5 28-9 55.5t-6 53.5zm172-312q38-59 95-106t138-79q119 0 226 33l-25 4q-37 7-186 71t-248 77zm193 1300q-66 14-137 24.5t-149 11.5q29 38 62.5 91.5T1329 1947q43-72 85-131.5t77-105.5zM1173 454q-8 17-14 34.5t-11 37.5q-78 11-136.5 30T911 598q31-66 74-121.5t97-100.5q10 33 33 52t58 26zm-69 1279q-64-2-123-8t-115-15q25 38 54 88t61 111q35-56 66-100t57-76zm-489-33l29 61q15 32 29 67 17-38 36-73.5t40-71.5q-15-4-35-10l-72-22q-14-4-17-4-8 0-13 3.5t-5 11.5q0 13 1.5 19.5t6.5 18.5zm1051-40q-8-6-21-6-21 0-35.5 8.5T1578 1692l-23 30 28 54q14 27 25 55l32-72q19-44 26.5-57t7.5-25q0-11-8-17zM1202 397q-38-6-50.5-22t-12.5-35v-7q48-33 102-58t113-39q-35 23-76.5 63t-75.5 98zM832 2450q5 8 37 22l-19-64q-10-31-21-62l-8 17q4 22 6.5 43.5t4.5 43.5zm624-32q-3-13-9-27l-29 79q14-5 23-10t11-10zm-297 89l-14-45-16 45h30z"},"children":[]}]};exports.u1F3C0=u1F3C0;var u1F3C1={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2465 791q15 8 23 22t8 31v10q0 6-3 11l-454 1271q-7 17-21 28.5t-34 11.5q-27 0-36-10.5t-148.5-84.5-331-116.5-463-42.5-401-34-193.5-82l-153 342q-11 23-31 35.5t-43 12.5q-38 0-59.5-24.5T103 2115q0-8 1-16t6-16L744 666q11-23 34.5-36t49.5-13q13 0 31 5l53 14q56 15 159.5 35.5T1267 692q95 0 269-26t301-26q181 0 347 46.5t220.5 75.5 60.5 29zm-837 186q82 0 161 11.5t156 40.5l19-44q35-81 53.5-116.5T2040 820t15-38q-51-9-107.5-14.5T1837 762q-37 0-73 2t-72 6q-19 45-42 127.5t-22 79.5zm-631-8h6q29 7 58 8t58 1q22 0 42 1.5t41 1.5l12-1h18q11 0 19 2 14-46 35.5-89t35.5-80l-55 1q-46 0-94-5.5t-97-13.5l-2 4q-4 14-26.5 59.5T1006 948zm-369 797q35-61 64-122t55-127q-46 0-92.5-10.5T563 1485l-8-1-95 210 27 15q24 15 57 28.5t84 28.5zm126-552q14 3 30 4l32 2q16 0 30 2.5t24 5.5q4-4 9.5-16.5T891 1183l12-31q6-16 14.5-31.5t20-59T956 1005l7-17q-5 0-14 1-49 0-91.5-6.5T786 969l-106 237q18 3 37 4zm160 295l51 4q13 0 23.5 2t14.5 3q0-22 17.5-46.5t48-85.5 35.5-80.5 15-35.5q-6 2-17 2-57 0-112-4.5T882 1250q-4 23-41 103.5T780 1491q-3 2-3 7 15 0 71.5 5t65.5 6zm416 57q-21-2-29.5-5.5t-89-10.5-192.5-11q-13 56-38.5 127.5T922 1798l139 2q72 0 153 6l9-20q15-33 31-62t26-51zm141-290q8-18 14.5-35.5t14.5-34.5l3-10q23-56 43.5-102t41.5-91q-50 0-99-5t-97-5q-25 0-49.5 1.5T1293 996h-17q-9 0-17-1l1 9q0 18-11.5 41t-30.5 88.5-52 110.5q14 0 28.5 1.5t28.5 1.5q83 0 158.5 8.5t89.5 20.5zm-104 268l37 2q61 4 154 19t122 37q8-13 13.5-27.5t12.5-28.5l4-7 26-51q14-25 27.5-57t38.5-79l-19-6q-12-3-33.5-4t-51.5-7l-65-12q-33-6-66-11t-67-5h-16l-11-4q0 2-14 41.5t-38 86.5l-23 46q-12 23-20 47zm692 174q-82-31-219-54t-153-23q-8 20-18.5 38.5T1652 1718l-27 75-29 79q86 24 174 61t180 92zm211-589q-67-21-134-31t-98.5-18.5-55.5-8.5q-17 0-30-6 0 11-4 20l-9 18q-18 57-37.5 113t-45.5 109q79 5 163.5 19.5T2176 1392z"},"children":[]}]};exports.u1F3C1=u1F3C1;var u1F3C2={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2091 2506.5q-157 85.5-373 85.5-188 0-386-110t-444-240.5-366.5-196T360 1884q-16-37-16-82 0-113 104.5-186t218.5-73q66 0 124 24t114 56v-10q0-51 34.5-88.5t107.5-87 115-105.5 42-126q0-51-5.5-99t-16.5-96q-26 0-51 6.5t-50 14.5l-49 18q-47 18-80 44t-33 56q0 8 1 16l2 17q0 57-44.5 100.5T779 1327q-52 0-81.5-43.5T668 1165q0-115 136-250t318-163q-55-96-55-202 0-139 93.5-239.5T1396 210q151 0 258.5 92T1762 537q0 68-25.5 134T1663 790q122 48 213.5 118t148.5 136 95.5 137 62 85 48.5 50.5 25 95.5q0 71-53 120.5t-132 49.5q-54 0-99-47t-45-118q0-20 3-40.5t3-42.5q0-45-51-99.5t-55-58.5q12 39 14.5 70.5t2.5 62.5q0 144-71 275.5T1602.5 1763t-99.5 131v15.5l2 14.5q48 19 95 33l92 29q36 12 216 35t260 83.5 80 166.5q0 150-157 235.5zM1844 2139l-70-9q-47-5-90-14.5t-78-22.5l-51-17q6 23 10.5 45.5t4.5 43.5q0 63-55.5 102.5T1381 2307q-47 0-89.5-30.5T1249 2202q0-28 31-59t31-56q0-20-9.5-45.5t-16-48-44.5-36.5l-44-16q3 12 3 27 0 52-47 80t-109 28q-61 0-108.5-30t-47.5-79q0-36 39-55t39-44q0-14-8-32t-13-35q-99-70-165.5-100T667 1671q-71 0-133.5 43.5T471 1807q0 36 35 69t101 68l71 39q142 81 314 169.5t369 199.5 357 111q161 0 282-55.5t121-136.5q0-62-87-90t-190-42zm-700-389q3 14 3 28l101 45q0-26 8-53t22-47l17-26q9-13 16-26.5t7-25.5q0-14-12-23.5t-28-9.5q-28 0-82.5 29t-54.5 81q0 14 3 28z"},"children":[]}]};exports.u1F3C2=u1F3C2;var u1F3C3={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2278 1368.5Q2158 1481 1996 1481q-90 0-163-43.5t-119-43.5q-20 0-47 10t-91.5 113.5T1475 1719t-36 327q0 56 6.5 135t42.5 95.5 62.5 47 26.5 72.5q0 54-56 90t-133 36q-116 0-172-58t-73-236-27-275-79-97q-40 0-109.5 41t-131 62.5T681 1981q-63 0-128-33t-98.5-65-62.5-32q-21 0-44 6.5t-49 6.5q-47 0-72.5-27.5T201 1759q0-79 70.5-146.5T425 1545q53 0 83 45t65.5 68 67.5 23q51 0 117-60.5T908 1436l88-131q27-42 44.5-88t17.5-86q0-84-66-101t-117-17q-53 0-73.5 15t-20.5 43l1 10v12q0 58-35.5 98t-99.5 40q-58 0-99.5-42T506 1085q0-166 128-260t324-94q103 0 201.5 27t116.5 27q20 0 29.5-21t9.5-49q0-22-3.5-45.5T1308 616q0-144 96-240.5t237-96.5q151 0 256 98t105 245q0 59-20 121.5T1927 853t-90.5 81-55.5 64q0 25 43.5 88t105.5 96 102 33q34 0 60-21t26-81q0-61 48.5-87t81.5-26q52 0 101 43t49 102q0 111-120 223.5z"},"children":[]}]};exports.u1F3C3=u1F3C3;var u1F3C4={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2163 2081q-82 98-263 198t-305.5 148-339.5 108-411 60q-218 0-327-52t-109-150q0-114 193.5-268t514.5-271q-23-25-64-44t-115-83-108.5-164.5T794 1395q0-99 18.5-185t18.5-109q0-16-7-35t-30-30l-113-52q-151-62-238.5-180.5T355 583q0-75 42-124t104-49q45 0 83 28t38 72q0 8-1.5 14.5T619 536q0 19 31.5 71t99.5 96.5T1036 814q-27-44-38.5-87.5T986 601q0-167 101-254t228-87q140 0 245.5 93T1666 576q0 66-28.5 136T1562 842q61-18 128-56.5t88-53.5 26-35l10-32q19-64 52.5-85.5T1949 558q58 0 92 35t34 95q0 67-45 121t-181 140.5-214.5 113.5-113.5 40-59 102.5-24 113.5q0 93 136.5 159.5T1711 1641q0 16-2.5 36t-5.5 39q51-6 104.5-10.5t107.5-4.5q160 0 245 47t85 141-82 192zm-97-240q-57-18-151-18-60 0-124.5 7t-123.5 15l-13 26q-9 16-9 30 0 8 7 8 36 8 55 29.5t19 52.5q0 45-47 74t-104 29q-66 0-118.5-26.5T1404 1993q0-26 13.5-53.5t27.5-53.5l-75 19q-5 28-15.5 55t-18.5 55l-11 33q-10 29-18 58t-8 47q0 15 15 19t33.5 22 18.5 44q0 43-39 62t-96 19q-52 0-112-31t-60-108q0-53 17.5-98.5t35.5-95.5q-254 97-417.5 226T531 2393q0 39 85 59t228 20q182 0 391.5-59t306.5-95.5 267-127.5 242-170 72-131q0-30-57-48zm-730-111q16 25 24 50 33-8 66-15t66-15q0-50-37.5-78.5T1353 1643q-29 0-39.5 6t-10.5 18q0 13 11 29z"},"children":[]}]};exports.u1F3C4=u1F3C4;var u1F3C6={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2410 933.5q-19 59.5-56 111t-93 92-114.5 58.5-69.5 24l-8 4 7 31q4 17 4 40 0 67-45.5 113t-110.5 46q-46 0-82-22t-64-60l-55 48q-47 42-83.5 80.5T1599 1550q97 42 143 96t46 126q0 11-3 18 33 6 43 40l102 378h105q21 0 38.5 17t17.5 39v155q0 23-16.5 39t-39.5 16H578q-23 0-39-16t-16-39v-155q0-22 16.5-39t38.5-17h106l101-378q5-16 16-26t25-14q0-5-1-17 0-56 20-91.5t50-62 119-69.5q-4-15-26-39t-51-51l-60-53q-30-26-51-46-26 44-65.5 68t-90.5 24q-64 0-107.5-47.5T519 1290q0-22 4-36.5t7-30.5l-7-4q-9-5-19-8l-22-6q-144-44-228-148.5T170 816q0-141 94-237t232-96q40 0 73.5 7t64.5 20q84-108 251-167t422-59 417.5 59T1976 505q29-11 61.5-16.5t65.5-5.5q144 0 235 97.5t91 235.5q0 58-19 117.5zm-149-280q-61-64.5-158-64.5-17 0-40 3.5t-44 11.5q5 20 6 39t1 37q0 26-2 51l-5 45-1 14q20-17 41.5-30t46.5-13q36 0 53.5 22.5T2177 821q0 49-38 88t-93 66l-62 31q-19 81-49 151.5t-81 133.5q11 21 29 38.5t45 17.5q23 0 34.5-17.5t11.5-38.5q0-23-7.5-42t-7.5-36q0-25 26.5-56t114-57.5 155-99T2322 819q0-101-61-165.5zm-368.5-79q-26.5-38.5-102.5-84t-191-73-292-27.5q-193 0-311 30.5t-194 81-92.5 90T693 683q0 84 30.5 254T837 1213.5t183.5 185.5 100.5 157q0 67-95.5 107.5T930 1771q0 4 1 12t3 10q9 27 37.5 38t67.5 11l21-1q20 0 45.5 2t63.5 2l80 1q56 0 113.5-1t122.5-4l58-3q59-2 98.5-18t39.5-48q0-43-32.5-71.5t-94-56-61.5-88.5q0-73 76.5-137.5t147.5-135 117-167 65.5-202.5 19.5-231q0-70-26.5-108.5zM1002 2191q0 14 8.5 24.5t23.5 10.5h546q9 0 21-8t12-27v-153q0-16-11-25t-22-9h-546q-13 0-22.5 10t-9.5 24v153zm-251-911q-45-56-73.5-123.5T632 1016l-76-38q-55-28-94.5-66.5T422 823q0-29 17.5-52.5T493 747q30 0 55.5 18t48.5 39l-6-59q-3-28-3-63 0-18 1-37t6-37q-25-11-50-15t-49-4q-97 0-158 64.5T277 819q0 100 65 177.5t155 102 116.5 57.5 26.5 57q0 18-7.5 38.5T625 1295q0 20 13 36t33 16q30 0 49.5-20.5T751 1280zm894.5-551.5Q1506 768 1307 768t-338.5-39.5T829 634q0-54 139-94.5t339-40.5 339 40.5 139 94.5q0 55-139.5 94.5zM1740 841q11 3 14.5 13t3.5 22q-2 35-9 62l-16 56q-44 159-97.5 251.5T1522 1386t-89 48q-9 0-16-3.5t-7-11.5q0-14 13.5-30.5t57-105.5 78.5-326l5-34q6-37 38.5-44.5T1647 867l17-8q14-7 35.5-13.5t33.5-6.5zm-205 858.5q36 28.5 36 64.5 0 25-22 37t-71 12q-12 0-26.5-2.5T1437 1798q0-6 16-18t16-37q0-23-10.5-39t-10.5-24q0-9 14-9 37 0 73 28.5z"},"children":[]}]};exports.u1F3C6=u1F3C6;var u1F3C7={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2426.5 2428q-16.5 9-36.5 9-100 0-179-121.5T2041 2176l-23-4q-16-3-64.5-5t-156.5-42-148.5-84-75.5-44q-17 0-41 4l-44 7q-49 9-181 48t-239 53.5-203 14.5H740q-100 0-129 37.5T582 2275q0 35 6.5 67t22.5 41l25 14q13 8 22.5 20.5t9.5 39.5q0 10-2.5 27.5T663 2520q0 20-10.5 29t-37.5 9q-28 0-47-17l-43-36q-44-40-62.5-107.5T444 2164q0-60 22.5-95t72-62 49.5-61q0-16-5-33.5t-8-40.5l-4-45q-2-22-2-46 0-103 33-189t33-154q0-40-9-79-26 4-53 5.5t-55 1.5q-41 0-81-6.5t-75-25.5l-8-4q-5-2-8-6-23 11-45.5 18.5T258 1350q-36 0-80-38t-44-81q0-21 14.5-43.5T180 1145q-2 0-2-4 0-5 13.5-23t23.5-18l4 1 3-3q18-24 33-45l88-131q13-18 25-36.5t28-33.5q-2 0-2-5t13.5-21 25.5-16q2 0 8 2l33-21q11-8 25-40.5t34-32.5q23 0 35 16t12 35q0 10-4 20 21 0 39.5 5t39.5 5h7q10 0 16 3t6 15q0 19 27.5 23.5T749 847q21 0 23.5 16.5T787 886l39 17q27 12 28.5 25t20.5 25l16 9q7 5 12.5 10t5.5 13l-1 13q0 6 30 20.5t30 34.5q0 18 32 33.5t40 47.5q15 0 27 1.5t23 1.5q40 0 81.5-35.5t41.5-78.5q0-50-25.5-80t-142-45T868 760q-20 18-39.5 32T789 806q-11 0-25-7.5T750 777q0-18 24-52.5t24-49.5l1-28-1-44q0-122 82.5-196.5T1069 332q72 0 131 34.5t92 93.5l18 32q10 18 10 32 0 11-11 19l10 25q5 15 7.5 28t2.5 29l-1 7q0 49 78 67t161.5 71.5 139.5 138 56 166.5q0 112-149.5 223T1464 1498q0 37 25.5 98t25.5 98q0 63-55 109.5t-123 46.5q-7 0-14.5-1t-15.5-3q15 20 37 29t46 9q53 0 100.5-31t60-72.5 38.5-41.5l5 1q31 0 93.5-30t62.5-88q0-15-6.5-33.5T1709 1525l-38-62q-10-15-27-15-9 0-15 4 0 28 20.5 71.5t20.5 68.5q0 24-24.5 44.5T1594 1657q-30 0-45.5-44t-28-65.5-12.5-46.5q0-28 19-60.5t57-62.5q16 6 23.5 14t15.5 23h10q23 0 81 8.5t82 25.5q41-47 91-68.5t106-21.5q78 0 142.5 34t113 70.5T2358 1500q24 0 49.5-5t34.5-5q13 0 18 7t5 17q0 28-30 80t-82.5 84-114.5 32q-37 0-66-11.5t-55-27.5l-53-33q-23-14-50.5-23.5t-59.5-9.5q-16 0-31.5 1.5t-30.5 3.5q7 54 8.5 89.5T1932 1810t71 116q13-3 29-3 40 0 76 32.5t68 84.5l32 53 39 71q36 67 85 72t80 63 31 96q0 24-16.5 33zM512 1305q5 0 10 1h10q20 0 38-2t37-5q-9-20-22.5-38t-31.5-31q-3 6-16 8t-24 2l-10-1v-3l-21 7q-14 5-30 18t-38 25q11 5 25 8l27 5q13 3 25 4zm108-352q5-4 13.5-9t8.5-10q0-8-13-22.5T604 897q-8 0-24 14t-29 24q-13-11-23.5-26T502 880l-26-24q-16-14-26-14-8 0-19 10t-11 18q0 6 4.5 11t7.5 9l87 98q-2 22-3 48l-4 52-170 110q-16-24-49.5-51.5T245 1119q-11 0-20.5 11.5T215 1150q0 13 14 22.5t23 17.5l28 27q37 38 48 53.5t20 15.5q10 0 21-8.5t11-16.5l-1-12q0-8 13-17.5t32-19.5l20-10q8-5 33-21t29-16q5 0 5 20 0 4 7.5 5t11.5 1q40 0 40-46 0-17 1-38t1-38q0-20 2-40l4-40 5-5 25-22zm534 350q-10 3-20 7 2 9 2 17l-1 8q0 8 2 16 0 2 1 5 8-8 22-8 10 0 21 3.5t22 7.5l22 9q10 5 20 6 15-31 49.5-83t42.5-84q-30 26-85.5 55.5T1175 1297zm-93 69q21-9 21-38-21 7-49 7-36 0-70-14t-51-43l-20 4q-12 3-12 13 0 19 34 49.5t94 30.5q32 0 53-9zm197 387q6-19 15-37t18-38q-54-2-81.5-29t-27.5-75q0-26-3-53l-7-52q-3-33-13.5-54.5T1131 1399q-5 0-9.5 4t-4.5 16q0 9 1.5 19.5t1.5 17.5q0 11-1 22l-4 59q0 19-1 46 0 98 33.5 133.5T1258 1759z"},"children":[]}]};exports.u1F3C7=u1F3C7;var u1F3C8={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2096 1721.5q-174 328.5-523 506T854 2405q-215 0-313-58.5t-155-241-57-379.5q0-349 175.5-649.5t480-477T1645 423q163 0 296 35.5t197 84 98 176 34 291.5q0 383-174 711.5zM988 2299q71-8 146.5-22.5T1288 2237q-6 0-10-1-14 0-147-39.5t-294.5-140-275.5-223T435 1688l-6-11q-2 14-2 27v26q0 39 4.5 101.5T444 1929q54 73 124 142t142.5 115.5T871 2261zm403-1553.5q-63-43.5-132-43.5-27 0-61.5 15.5T1163 759q2 8 7.5 15t5.5 17q0 12-12 17.5t-30 7.5l-38 4q-43 4-62 17.5t-19 40.5q0 19 9.5 35.5t9.5 29.5q0 11-13.5 17.5T993 967l-28-1q-34 0-62.5 20.5T874 1033q0 14 5.5 26t5.5 25q0 28-33.5 28t-76 22.5T733 1202q0 15 8 24t8 19q0 8-7.5 12.5T722 1262l-19-1q-28 2-48.5 21.5T634 1329q0 44 67.5 95.5T825 1476q27 0 47-16t20-41q0-10-4-19l-20-37q-5-9-6-20 0-11 16-11t36 6l26 8q4 0 14 1 32 0 55-21.5t23-55.5q0-22-16.5-44.5T999 1185q0-6 4.5-11t17.5-5 25 3l23 8q11 4 23 7.5t25 3.5q37 0 56-20.5t19-48.5q0-35-22.5-60t-22.5-33q0-6 9.5-11t19.5-5 19 3l17 6q8 4 17.5 7t21.5 3q29 0 53-15t24-39q0-10-4-19l-8-18q-5-9-9-18.5t-4-19.5q0-14 10-19.5t23-5.5q14 0 26.5 7t32.5 7q28 0 43.5-12t15.5-29q0-62-63-105.5zm759 515.5q11-69 16.5-133t5.5-124v-39q-63-124-169.5-230.5T1721 524q-18-2-36-2h-38q-39 0-86 3t-101 11q49 17 93 38.5t89.5 50 97.5 70 101 91 91.5 102 91 126.5 72.5 126z"},"children":[]}]};exports.u1F3C8=u1F3C8;var u1F3C9={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2143.5 1698.5Q1945 2037 1606.5 2235T927 2433q-104 0-193.5-19.5t-156.5-52-112.5-70.5-45.5-137q0-105 56-266t178-360l20-29q-19-10-36.5-20t-34.5-22l-9 13-8 14q-118 190-180.5 360.5T342 2138q-42-78-62.5-172.5T259 1765q0-344 201-684t535-535.5T1674 350q84 0 161.5 13t146.5 40q-124 11-273.5 74.5T1384 655q20 11 37 24t31 30q159-107 315-169.5t270-62.5q77 0 110.5 25t82.5 91 80.5 177.5T2342 1017q0 343-198.5 681.5zM1391 729q-63-56-131-56-31 0-60 13t-29 34q0 8 3 14t3 14q0 13-9.5 18t-20.5 5q-18 0-37.5-2.5T1070 766q-31 0-55.5 17T990 827q0 14 5.5 25.5t5.5 25.5q0 20-15.5 25t-34.5 5q-10 0-19.5-1.5T912 905q-41 0-70 23t-29 63q0 18 6 33.5t6 32.5q0 23-19 28t-54 16.5-56 35.5-21 55q0 10 3.5 17t8.5 13l8 11q4 5 4 11 0 7-8 12t-25 7l-15 2q-25 4-42.5 24.5T591 1336q0 50 71.5 93t135.5 43q26 0 48-14.5t22-45.5q0-20-19.5-42t-19.5-42q0-8 7-10t17-2q15 0 33.5 3.5t23.5 3.5q35 0 60-20.5t25-60.5q0-34-14-53.5t-16-26.5q0-12 12-14 2 0 4 1 16 5 33 8.5t34 3.5q48 0 70-20t22-59q0-32-18-58.5t-18-32.5 3-7.5 7-1.5q11 0 45.5 17.5t71.5 17.5q29 0 49-15t20-38q0-15-6-31t-6-33 8-23 21-6q16 0 39 13.5t49 13.5q21 0 35-10.5t14-32.5q0-70-63-126z"},"children":[]}]};exports.u1F3C9=u1F3C9;var u1F3CA={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M544 747l1-16h-1q4-59 54.5-126.5t156-108.5T995 455q113 0 207 34t181 105 135 143.5 81 167.5 60 203 109.5 174 100.5 82.5 170.5 112T2192 1611q0 22-33.5 33.5T2059 1656q-57 0-118.5-6t-132.5-6q-81 0-219.5 32t-215.5 32q-41 0-81-5l-80-11q-40-5-80.5-10t-80.5-5q-42 0-92.5 7.5T856 1692q-89 0-138.5-41t-82-112.5T603 1373q0-159 102-268.5T952 995q109 0 174.5 24.5T1228 1074t56 30q18 0 28.5-20.5t10.5-43.5q0-53-38.5-131t-112-113.5T991 760q-75 0-110 43.5t-85.5 70T693 900q-60 0-104.5-45T544 747zm1770.5 1173.5Q2251 1956 2176 1956q-58 0-152-19.5t-153-19.5q-83 0-201 55.5t-263 55.5q-78 0-211-34.5T986 1959t-210 31.5-210 31.5q-95 0-220-45.5T221 1870q0-29 16.5-41t36.5-12q15 0 32 4t33 9l30 11q22 8 48.5 11.5t64.5 3.5q54 0 106.5-8.5T694 1828l104-21q52-10 105-14l27-2h25q79 0 204.5 35.5T1366 1862q105 0 266-47.5t257-47.5q63 0 164.5 25.5T2219 1818q20 0 42.5-3t44.5-3q37 0 54.5 14.5t17.5 32.5q0 26-63.5 61.5zm-77 319.5q-69.5 45-179.5 45-45 0-110.5-11.5T1841 2262h-18q-8 0-37.5 5t-89.5 33l-53 24q-54 24-115 37t-135 13q-78 0-199-34t-198-34q-68 0-174 19.5T649 2345q-142 0-233-48.5t-91-93.5q0-22 16-30t36-8q15 0 32 2.5t33 5.5l29 7q14 3 22.5 4t19.5 1h21q48 0 96.5-6t96.5-14l97-15q35-6 81-10t61-4q74 0 194.5 35.5T1358 2207q102 0 256-46t249-46q70 0 139.5 14t99.5 14q41 0 77.5-5t79.5-5q30 0 39 9t9 23q0 30-69.5 75z"},"children":[]}]};exports.u1F3CA=u1F3CA;var u1F3E0={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2115 1180q27 25 46.5 69.5t19.5 80.5v926q0 37-26 63t-63 26h-833v-611q0-29-20-49t-48-20H919q-28 0-47.5 20t-19.5 49v611H507q-35 0-62-26t-27-63v-926q0-39 20-83t46-67l750-682q28-25 65-25 18 0 35.5 6.5T1366 498zm-430 569h-179v83q0 35 24 59t58 24h97v-166zm0-271h-97q-34 0-58 23.5t-24 58.5v111h179v-193zm258 271h-180v166h98q34 0 58-24t24-59v-83zm0-189q0-35-24-58.5t-58-23.5h-98v193h180v-111z"},"children":[]}]};exports.u1F3E0=u1F3E0;var u1F3E1={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1016 1223l-268 244q-30 26-50.5 72.5T677 1630v711H466q0-9 11.5-29t11.5-78v-143q0-64-59.5-90.5t-126-95.5T192 1714t-45-287q0-238 65.5-448T388 633t201-136q111 0 251 211.5t176 514.5zm1427 855q36 17 52.5 51.5t16.5 72.5q0 56-38.5 98t-92.5 42h-314v-588q14-7 29.5-11t31.5-4q60 0 93.5 41.5t35.5 71 34 29.5q42 0 82.5 39t40.5 99q0 7-2 14t-2 15q0 14 11 19zm-499-552q20 20 32.5 49.5t12.5 54.5v649q0 26-18 44t-45 18h-583v-428q0-20-13.5-34t-33.5-14h-190q-20 0-33.5 14t-13.5 34v428H816q-26 0-43.5-18t-17.5-44v-649q0-25 13-55.5t33-48.5l525-478q20-18 47-18 25 0 45 18zm-301 398h-126v59q0 24 17 41t40 17h69v-117zm0-190h-69q-23 0-40 17t-17 40v79h126v-136zm179 190h-125v117h67q24 0 41-17t17-41v-59zm0-133q0-23-17-40t-41-17h-67v136h125v-79z"},"children":[]}]};exports.u1F3E1=u1F3E1;var u1F3E2={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1984 318q60 0 106 43.5t46 107.5v1900h-582v-219q0-34-25-59.5t-60-25.5h-339q-35 0-60 25.5t-25 59.5v219H463V469q0-63 45-107t106-44h1370zM877 1459H663v256h214v-256zm0-408H663v256h214v-256zm0-410H663v258h214V641zm356 818h-214v256h214v-256zm0-408h-214v256h214v-256zm0-410h-214v258h214V641zm356 818h-212v256h212v-256zm0-408h-212v256h212v-256zm0-410h-212v258h212V641zm358 818h-214v256h214v-256zm0-408h-214v256h214v-256zm0-410h-214v258h214V641z"},"children":[]}]};exports.u1F3E2=u1F3E2;var u1F3E3={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2132 867q26 18 46 56t20 70v715q0 4-2 7v655h-625v-398q0-37-26.5-63.5T1481 1882h-363q-37 0-63.5 26.5T1028 1972v398H403v-652q-2-3-2-10V993q0-33 19-69.5t47-56.5l767-544q14-9 31-13.5t34-4.5q18 0 35 4.5t31 13.5zM981 1449q0-55-39.5-94t-92.5-39q-54 0-93 38.5t-39 94.5v184h264v-184zm451 0q0-55-39-94t-94-39q-54 0-93.5 39t-39.5 94v184h266v-184zm85-590q0-14-9.5-24.5T1484 824h-369q-14 0-24 10.5t-10 24.5v33q0 13 10 23.5t24 10.5h100q14 0 24 9.5t10 23.5v100q0 14 10 24t23 10h35q13 0 23-10t10-24V959q0-14 10-23.5t24-9.5h100q14 0 23.5-10.5t9.5-23.5v-33zm0-166q0-14-9.5-23.5T1484 660h-369q-14 0-24 9.5t-10 23.5v34q0 14 10 23.5t24 9.5h369q14 0 23.5-9.5t9.5-23.5v-34zm365 756q0-56-39-94.5t-93-38.5q-53 0-92.5 39t-39.5 94v184h264v-184z"},"children":[]}]};exports.u1F3E3=u1F3E3;var u1F3E4={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2133 866q26 18 46 56t20 70v1378h-627v-397q0-38-26.5-64.5T1481 1882h-363q-38 0-64 26.5t-26 64.5v397H401V992q0-34 20.5-72t44.5-54l768-544q26-18 65.5-18t65.5 18zM982 1448q0-54-39.5-93t-93.5-39-93 39-39 93v185h265v-185zm450 0q0-54-39-93t-93-39-93.5 39-39.5 93v185h265v-185zm274.5-594q-23.5-21-37.5-21-6 0-7.5 6.5T1660 856q0 25-24 49t-43 39l2-16v-15q0-99-71-170t-170-71-170.5 70.5T1112 913l1 16q-21-18-27-45t-6-60q0-23 2-39l1-15q0-25-23-25-54 0-153 95t-99 147q0 11 7.5 16t23.5 5h17q27 0 61 6.5t76 28.5l55 30q116 64 181.5 75t99.5 11q78 0 136-32.5t121-97.5 83.5-94.5T1710 899t20-14q0-10-23.5-31zm176.5 594q0-53-39-92.5t-94-39.5q-54 0-93 39t-39 93v185h265v-185zm-421-425.5q-46 45.5-108 45.5-63 0-109-45.5T1199 913t45.5-109 109.5-45 109 45 45 109-46 109.5z"},"children":[]}]};exports.u1F3E4=u1F3E4;var u1F3E5={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2115 876q65 0 113.5 48.5T2277 1038v1330h-706v-213q0-38-26.5-64t-63.5-26h-363q-37 0-63.5 26t-26.5 64v213H322V1038q0-65 48.5-113.5T484 876h294q54 0 80-21t26-67V487q0-67 48-114.5t113-47.5h509q65 0 113 47.5t48 114.5v301q0 46 26 67t80 21h294zM723 1572H522v257h201v-257zm0-408H522v256h201v-256zm339 408H860v257h202v-257zm0-408H860v256h202v-256zm338 408h-201v257h201v-257zm0-408h-201v256h201v-256zm80-499q0-14-10-23.5t-25-9.5h-53q-14 0-24-9.5t-10-23.5v-55q0-14-9.5-23.5T1325 511h-51q-14 0-24 9.5t-10 23.5v55q0 14-9.5 23.5T1207 632h-55q-14 0-23.5 9.5T1119 665v52q0 14 9.5 23.5t23.5 9.5h55q14 0 23.5 10t9.5 24v54q0 13 10 23.5t24 10.5h51q14 0 23.5-10.5t9.5-23.5v-54q0-14 10-24t24-10h53q15 0 25-9.5t10-23.5v-52zm259 907h-203v257h203v-257zm0-408h-203v256h203v-256zm338 408h-203v257h203v-257zm0-408h-203v256h203v-256z"},"children":[]}]};exports.u1F3E5=u1F3E5;var u1F3E6={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2055 318q62 0 107 44.5t45 106.5v1900h-653v-322q0-34-25-59t-60-25h-339q-35 0-60 25t-25 59v322H392V469q0-61 44.5-106T544 318h1511zM891.5 774q-8.5-21-19.5-30l-14-11q-7-5-12.5-11.5T840 707q0-9 4-14l10-12q5-7 9-18.5t4-34.5q0-50-44-79.5T711 519q-50 0-77.5 19.5T606 596l1 32q0 12-1 23v25q0 12 1 76.5t1 106.5q0 41 13.5 61.5T681 944l49 2q84 0 127-40.5t43-91.5q0-19-8.5-40zm756.5 51l5-84q2-42 2-85 0-70-15-93.5t-45-23.5q-25 0-36 18.5t-13 46.5l-3 31q0 15-3.5 24.5T1528 669q-12 0-26-21l-32-44q-18-24-38-44.5t-43-20.5q-35 0-52.5 32T1319 673q0 43 3.5 85.5t3.5 84.5q0 37 14 69t41 32 40-20.5 13-64.5v-36l-1-30q0-7 1.5-13.5t9.5-6.5q17 0 40.5 40.5t47.5 81 64 40.5q27 0 39-25.5t13-58.5v-26zm365 75v-11q-3-28-41.5-84.5T1933 717q0-25 34.5-61.5T2002 588q0-17-14-30.5t-32-13.5q-39 0-68.5 52t-46.5 52q-9 0-12-8.5t-3-22.5l-2-28q-2-26-16-42.5t-46-16.5q-27 0-38 25t-11 119v79q0 41 2 82v20q0 10-1 21 0 40 15.5 55.5T1777 947q30 0 39.5-13.5t9.5-31.5q0-11-1-23.5t-1-23.5q0-14 6-27t18-13q10 0 20.5 11t18.5 26l19 41q9 21 21.5 36t34.5 15q16 0 32.5-13.5T2013 900zm-766.5-82.5Q1233 784 1219 712t-33.5-130-75.5-58q-46 0-71 48t-34.5 114.5-28 121T958 900q0 21 11 34.5t39 13.5q52 0 57.5-43.5T1117 861q35 0 43 42.5t57 42.5q12 0 27.5-9t15.5-39q0-47-13.5-80.5zM1213 1122H999v258h214v-258zm0 393H999v258h214v-258zm763 0h-213v258h213v-258zm-1146 0H618v258h212v-258zm763 0h-212v258h212v-258zm-763-393H618v258h212v-258zm763 0h-212v258h212v-258zm383 0h-213v258h213v-258zM765.5 845Q754 855 741 855q-22 0-28-8t-6-26q0-26 4.5-35t24.5-9q14 0 27.5 12t13.5 30q0 16-11.5 26zM723 681q-9 0-13-10t-4-23l1-15q0-8 4-12l3-4q6-3 12-4h12q5 0 11 1.5t11 6.5l3 4q6 11 6 22 0 20-13 27.5t-24 7.5zm405 67q0 8 3 16t3 16q0 4-2 7.5t-9 5.5h-15l-17-2q0-5 1-10.5t1-10.5l2-7 8-49q0-3 2.5-6.5t6.5-3.5q3 0 5 5l5 12 4 15z"},"children":[]}]};exports.u1F3E6=u1F3E6;var u1F3E7={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2055 318q62 0 107 44.5t45 106.5v1900H392V469q0-61 44.5-106T544 318h1511zm-504 594q0 32 12 51.5t39 19.5q31 0 44-24t15.5-64.5T1674 854q16 0 29 59.5t52 59.5q37 0 56-63t30-63q5 0 7.5 3.5t3.5 8.5v19q5 65 18.5 82.5T1910 978t40.5-20 14.5-74q0-14-1-27t-1-24q0-88-4.5-176t-55.5-88q-24 0-43 21t-47 88l-12 26q-11 26-24 46t-22 20q-11 0-19-17l-14-29q-2-5-30-82t-74-77q-28 0-43 22.5t-17 59.5l-3 38q-3 51-3 100t-1 99v28zm-839.5 61.5Q727 988 763 988q57 0 62.5-44t60.5-44q48 0 57 42.5t63 42.5q34 0 46.5-14.5T1065 936q0-17-5-33t-8-29l-16-47q-9-24-15-49l-16-67h-1q-10-42-35.5-95.5T882 562q-52 0-83 47t-45.5 115.5-36 132.5-21.5 82q0 20 15.5 34.5zM1332 1988q0-20-14-34.5t-34-14.5H640q-20 0-34 14.5t-14 34.5v78q0 20 14 34t34 14h644q20 0 34-14t14-34v-78zm0-738q0-32-22.5-54.5T1255 1173H669q-32 0-54.5 22.5T592 1250v449q0 32 23.5 55t53.5 23h586q32 0 54.5-23t22.5-55v-449zm106-672.5q-33-7.5-113-7.5-34 0-67 1l-69 2-18-1h-20q-38 0-51.5 18t-13.5 51q0 30 13.5 43.5T1182 698q20 0 24.5 8t4.5 20v6q0 4-1 8 0 33 1.5 67t1.5 69v37q0 43 18.5 57.5T1286 985q34 0 48-15.5t14-77.5q0-42-1.5-85t-1.5-86q0-14 8.5-20t31.5-6l32 1q30 0 42-15t12-57q0-39-33-46.5zM1593 1973q0-12-9.5-21.5t-23.5-9.5h-57q-14 0-23 9.5t-9 21.5v74q0 12 9 22t23 10h57q14 0 23.5-10t9.5-22v-74zm0-222q0-14-9.5-22.5t-23.5-8.5h-57q-14 0-23 8.5t-9 22.5v73q0 13 9 22t23 9h57q14 0 23.5-9t9.5-22v-73zm0-223q0-13-9.5-22.5t-23.5-9.5h-57q-14 0-23 9.5t-9 22.5v74q0 12 9 21.5t23 9.5h57q14 0 23.5-9.5t9.5-21.5v-74zm209 445q0-12-9-21.5t-23-9.5h-57q-14 0-23.5 9.5t-9.5 21.5v74q0 12 9.5 22t23.5 10h57q14 0 23-10t9-22v-74zm0-222q0-14-9-22.5t-23-8.5h-57q-14 0-23.5 8.5t-9.5 22.5v73q0 13 9.5 22t23.5 9h57q14 0 23-9t9-22v-73zm0-223q0-13-9-22.5t-23-9.5h-57q-14 0-23.5 9.5t-9.5 22.5v74q0 12 9.5 21.5t23.5 9.5h57q14 0 23-9.5t9-21.5v-74zm208 445q0-12-9-21.5t-23-9.5h-57q-13 0-22.5 9.5t-9.5 21.5v74q0 12 9.5 22t22.5 10h57q14 0 23-10t9-22v-74zm0-222q0-14-9-22.5t-23-8.5h-57q-13 0-22.5 8.5t-9.5 22.5v73q0 13 9.5 22t22.5 9h57q14 0 23-9t9-22v-73zm0-223q0-13-9-22.5t-23-9.5h-57q-13 0-22.5 9.5t-9.5 22.5v74q0 12 9.5 21.5t22.5 9.5h57q14 0 23-9.5t9-21.5v-74zm0-289q0-14-9-23t-23-9h-475q-14 0-23 9t-9 23v70q0 12 9 21.5t23 9.5h475q14 0 23-9.5t9-21.5v-70zM889 832q-9 0-19-3t-10-11q0-3 1-6t2-10l6-25q2-12 6-26 2-2 3.5-5t6.5-3q8 0 17 35.5t9 38.5q0 11-12 15h-10z"},"children":[]}]};exports.u1F3E7=u1F3E7;var u1F3E8={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2078 594q24 13 41 41.5t17 55.5v1700h-584v-218q0-35-24-60t-59-25h-339q-35 0-60 25t-25 60v218H463V691q0-27 17-55.5t41-41.5l720-403q13-8 27.5-10.5t31.5-3.5q16 0 30.5 4t27.5 10zM865 1591H652v257h213v-257zm0-451H652v258h213v-258zm356 451h-213v257h213v-257zm0-451h-213v258h213v-258zm131-385q0 69 8.5 90t47.5 21 59.5-13 20.5-54v-22l-1-19q0-38 1-75.5t1-75.5q0-102-14.5-127.5T1418 454q-31 0-48.5 16.5T1352 531q0 13 1 24t1 19q0 19-6.5 24.5T1333 604h-63q-11 0-18-6.5t-7-23.5q0-8 1-19t1-24q0-77-66-77-34 0-52 21t-18 60v23q0 12-1 26 0 42 1 85.5t1 88.5v19q0 11-1 22 0 41 20.5 54t59.5 13q35 0 45.5-16.5T1247 778v-39q0-10 5-16t22-6h45q16 0 24.5 3t8.5 12v23zm226 836h-213v257h213v-257zm0-451h-213v258h213v-258zm356 451h-212v257h212v-257zm0-451h-212v258h212v-258z"},"children":[]}]};exports.u1F3E8=u1F3E8;var u1F3E9={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2078 593q24 14 41 42.5t17 56.5v1700h-584v-219q0-36-24.5-60.5T1469 2088h-339q-35 0-60 25.5t-25 59.5v219H463V692q0-28 17-56.5t41-42.5l720-402q13-8 27.5-10.5t31.5-3.5q32 0 58 14zM865 1591H652v257h213v-257zm0-451H652v258h213v-258zm356 451h-213v257h213v-257zm0-451h-213v258h213v-258zm357 451h-213v257h213v-257zm0-451h-213v258h213v-258zm64.5-687q-59.5-61-144.5-61-33 0-67.5 9.5T1372 429l-27 20q-14 10-26.5 17.5T1297 474q-4 0-11-4l-44-31q-44-30-77-38.5t-83-8.5q-80 0-138.5 61.5T885 607q0 71 32 135.5t170.5 131T1249 983t42 43q17 0 33-26.5t47-53 115-65.5 128.5-74.5 66-91T1702 607q0-93-59.5-154zM1934 1591h-212v257h212v-257zm0-451h-212v258h212v-258zm-582-411q0-9-8.5-12t-24.5-3h-45q-17 0-22 6t-5 16v40q0 51-10 69t-46 18q-39 0-59.5-13t-20.5-54q0-11 1-22v-59l-1-68q0-17-1-39 0-14 1-26v-23q0-40 19-60.5t51-20.5q66 0 66 77 0 14-1 25t-1 19q0 17 7 23.5t18 6.5h63q8 0 14.5-6t6.5-24q0-8-1-19t-1-25q0-44 17.5-60.5T1418 478q43 0 57 26.5t14 127.5v33l-1 56q0 15-1 34l1 19v22q0 41-20.5 54t-59.5 13-47.5-21-8.5-90v-23z"},"children":[]}]};exports.u1F3E9=u1F3E9;var u1F3EA={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2430 1796v611h-197v-349q0-48-36-83t-83-35h-74q-49 0-84 35.5t-35 82.5v349H905v-944l-72 1q-253 0-397.5-45t-205-148T170 922q0-329 11.5-446t54-180T341 182.5 561 103t433-29q326 0 486.5 35.5t223 101T1805 391t39 424q0 228-38 342t-100.5 172.5-190 94T1108 1462v167q26-53 77-86t114-33h919q82 0 143.5 57t67.5 140H1108v89h1322zM592 878.5q51-43.5 111.5-126T764 590q0-86-61.5-135.5T549 405q-72 0-143.5 51.5T334 570q0 30 16 53.5t46 23.5q23 0 62.5-26t70.5-26q15 0 32 12.5t17 43.5q0 20-14 44.5T529 745l-22 25q-7 7-81 88.5T352 1000q0 33 16.5 68t42 48.5T501 1130q22 0 44 1.5t47 1.5q34 0 97-12t63-69q0-34-21-56.5T675 973l-82 1q-24 0-38-10t-14-21q0-21 51-64.5zM931 964q63 0 62 46t12.5 84.5 64.5 38.5q50 0 71-23.5t21-67.5q0-50 9.5-67.5t56-24 62-30T1305 852q0-31-13.5-54t-36.5-23q-6 0-12.5 1t-12.5 1q-23 0-32.5-19t-9.5-44q0-29 6.5-59.5t6.5-54.5q0-91-26-131t-76-40q-67 0-141 77.5T825.5 674 767 849q0 53 37.5 84t94.5 31h32zm813 1083q0-44-32-75.5t-76-31.5h-320q-43 0-75.5 31.5T1208 2047v127q0 44 32.5 75.5t75.5 31.5h320q44 0 76-31.5t32-75.5v-127zM1001 806h-9q-22 0-41-10t-22-33q0-31 20.5-54t40.5-45.5 36-22.5q17 0 26.5 26t9.5 60q0 49-23.5 64t-37.5 15zm569 209q0 69 8.5 90t47.5 21 59.5-13 20.5-54q0-11-1-21.5t-1-19.5l3-136v-42q0-101-14-127.5t-57-26.5q-31 0-48.5 16.5T1570 763q0 14 1 25v19q0 19-6.5 31.5T1551 851h-50q-11 0-17.5-13.5T1477 807l1-19v-25q0-39-15.5-58t-50.5-19q-34 0-52 22.5t-18 58.5v23q0 12-1 26l3 154v48q0 9-1 19.5t-1 21.5q0 41 20.5 54t59.5 13q35 0 45.5-16.5t10.5-71.5v-39q0-10 5-16t22-6h32q16 0 24.5 3t8.5 12v23z"},"children":[]}]};exports.u1F3EA=u1F3EA;var u1F3EB={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2117 838q65 0 113 47.5t48 115.5v1372h-705v-212q0-37-26.5-63.5T1482 2071h-363q-37 0-63.5 26.5T1029 2161v212H322V1001q0-66 48.5-114.5T485 838h294q48 0 74.5-16t30.5-61V551q0-12 8.5-27.5T912 502l359-200q10-5 29-5t29 5l359 200q12 8 20 22t8 27v206q4 43 28 62t78 19h295zM726 1588H523v258h203v-258zm0-408H523v258h203v-258zm337 408H862v258h201v-258zm0-408H862v258h201v-258zm338 408h-201v258h201v-258zm0-408h-201v258h201v-258zm64-624q-69-69-165-69t-164.5 69-68.5 165 68 164.5 165 68.5 165.5-68.5T1534 721t-69-165zm275 1032h-203v258h203v-258zm0-408h-203v258h203v-258zm337 408h-202v258h202v-258zm0-408h-202v258h202v-258zm-754-493q8 6 13.5 14.5t5.5 19.5q0 18-12.5 30.5T1300 764q-12 0-19-6l-103 61-23-42 104-58q0-10 5.5-18.5T1278 687V518h45v169z"},"children":[]}]};exports.u1F3EB=u1F3EB;var u1F3EC={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2277 572q35 0 60 24t25 59v1384q0 34-25 59.5t-60 25.5h-224q-32 0-57.5-19.5T1970 2071v-136h-59v408h-586v-241q0-20-71-32.5t-175-12.5q-114 0-179.5 12.5T834 2102v241H238V640q0-63 46-106.5T390 490h1370q62 0 106.5 44t44.5 106v46h59v-61q0-14 25.5-33.5T2053 572h224zM438 991h214V735H438v256zm0 410h214v-258H438v258zm0 408h214v-258H438v258zm302 155H438v219h302v-219zm268-413H796v258h212v-258zm0-408H796v258h212v-258zm0-408H796v256h212V735zm358 816h-214v258h214v-258zm0-408h-214v258h214v-258zm0-408h-214v256h214V735zm355 1229h-303v219h303v-219zm1-413h-214v258h214v-258zm0-408h-214v258h214v-258zm0-408h-214v256h214V735zm248 49h-59v1052h59V784z"},"children":[]}]};exports.u1F3EC=u1F3EC;var u1F3ED={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2215 2391H384v-609q0-19 17-31l70-38 25-770q0-12 7-16-20-26-34.5-62T454 783q0-76 53-133.5T636 586q13-104 82.5-173.5T908 343q25 0 49 3.5t47 11.5q42-70 111.5-105t157.5-35q75 0 135.5 19.5T1507 288q46-50 114-77.5t159-27.5q155 0 254 103t99 260q0 152-109.5 259T1752 912q-77 0-152.5-28T1473 816q-36 45-98 71.5T1233 914q-68 0-127-20.5T1006 840q-36 39-73 57.5T854 916q-41 0-85-19l-15 21q-8 11-17 22l1 3 20 611 231-129q5-2 9-3t9-1q17 0 25.5 11t8.5 25v264l535-296q10-4 17-4 16 0 26 11t10 25v264l534-296q5-2 9-3t9-1q17 0 25.5 11t8.5 25v934zM533 776q0 41 15.5 74.5T596 912h62q32-32 50.5-69.5T754 805q14 0 39.5 15.5T854 836q36 0 67.5-24t43-46.5T1000 743q18 0 40.5 23.5T1114 813t116 23q75 0 123-25.5t59-44.5l16-23q9-23 37-23 15 0 27 9 0 9 81 57t181 48q128 0 214-84t86-201q0-129-75.5-208.5T1781 261q-93 0-153.5 33t-75.5 62.5-41 29.5q-9 0-17-4.5t-13-11.5l-13-14q-22-21-72-39.5T1278 298q-86 0-140 35t-70 75.5-45 40.5q-6 0-38.5-14T908 421q-92 0-141.5 53T713 603l-1 21q0 17-11 28.5T673 664q-5 0-10-1t-9-1q-46 0-83.5 33.5T533 776z"},"children":[]}]};exports.u1F3ED=u1F3ED;var u1F3EE={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2097 1970q-104 238-308 361l-36 18v34q0 90-135 155.5t-318 65.5q-190 0-322.5-68T845 2375v-26q-219-110-332.5-355T399 1386q0-371 100.5-601T845 432v-31q0-93 132.5-162t322.5-69q189 0 321 68.5T1753 401v31q251 125 349.5 359t98.5 596q0 345-104 583zm-205 105l-6 1-77 28-45 15q-82 28-170 40.5t-164 12.5q-75 0-113-15.5t-38-42.5q0-51 102-65.5t248.5-49.5 253.5-101 107-125q0-19-10-36.5t-29-20.5l-107 42q-101 39-209 60t-202 21q-75 0-114.5-15.5T1279 1779q0-17 18-34.5t74-27.5l87-15q271-48 401.5-124t130.5-139q0-20-10-38t-29-18l-104 39q-138 52-240.5 67.5T1433 1505q-72 0-113-15t-41-44q0-51 104.5-65.5t247-49.5 251-101 108.5-125q0-25-12.5-41.5T1943 1047q-39 0-90 30t-168 62-252 32q-69 0-111.5-15t-42.5-46q0-52 118-67t192-35.5 150-55.5 124-92.5 48-129.5q0-12-1-18-17-22-55.5-60T1753 575v6q-6 90-137.5 155T1300 801q-188 0-319.5-66T847 575Q677 678 601 865.5T525 1382q0 314 79 506.5t234 309 444 116.5q151 0 279.5-31t207-91 123.5-117zM1006 396q1 3 1 5 6 50 92 86.5t201 36.5q120 0 207.5-39.5T1595 390t-87.5-95.5T1300 254q-125 0-210 41t-85 95q0 3 1 6z"},"children":[]}]};exports.u1F3EE=u1F3EE;var u1F3EF={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2174 1672v298q24 0 27.5 19t45 142 91.5 224 76 126 26 41q0 11-9 19.5t-20 8.5H189q-14 0-22-8.5t-8-19.5q0-14 20.5-32t64-97 98.5-234.5 55-166.5q2-10 10-16t18-6v-298H307q-35 0-74.5-14.5T172 1628l-14-9q-13-9-13-25 0-11 9-19t20-8q75-4 149-64.5t100-99 46-38.5h211v-126H566q-32 0-79-18t-47-43q0-11 9-20.5t21-9.5q94 0 161.5-39t86-68 36.5-29h100V800h-17q-63 0-105-22.5T673 727l-10-15-2-6q0-3-1-6 0-13 9.5-21t22.5-8q11 0 20 3.5t20 3.5q49 0 98-59t87-155q-46-11-66.5-44T830 352q0-43 27-79t68-36q12 0 16 5.5t4 13.5q0 15-6 29t-6 32q0 27 39 36t53 38h224q21-37 26-50t25-13q19 0 25.5 15.5T1351 391h225q9-28 49.5-37t40.5-37q0-18-6-31t-6-30q0-8 4-13.5t16-5.5q39 0 67.5 35t28.5 80q0 36-21 68.5t-65 43.5q38 96 86.5 155t98.5 59q9 0 19-3.5t19-3.5q13 0 22.5 8t9.5 22q0 8-2 11l-9 16q-17 27-59 49.5T1763 800h-16v212h98q18 0 35 27t84.5 68 165.5 41q14 0 21.5 9.5t7.5 21.5q0 23-45 41.5t-81 18.5h-112v126h211q19 0 44 38t99 99 150 65q14 0 21.5 9t7.5 20q0 14-13 23l-13 9q-23 16-61.5 30t-73.5 14h-119zm-118 3H543v295h1513v-295zM1300 487q-19 47-74.5 109.5T1111 674h378q-55-6-109.5-69.5T1300 487zm-329 525h106v-88q0-28 19.5-46.5T1143 859q26 0 45.5 18.5T1208 924v88h184v-88q0-28 19.5-46.5T1458 859q26 0 45 18.5t19 46.5v88h107V800H971v212zm832 245h-181q76 43 181 82v-82zm-503-83q-63 75-145.5 125T981 1361h638q-95-11-185.5-71T1300 1174zm-503 165q103-40 181-82H797v82zm466 552h-78v-143h78v143zm151 0h-78v-143h78v143zm-589 0h-78v-143h78v143zm150 0h-78v-143h78v143zm879 0h-78v-143h78v143zm-151 0h-79v-143h79v143z"},"children":[]}]};exports.u1F3EF=u1F3EF;var u1F3F0={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2293 2518h-859v-255q0-18-13-31t-32-13h-179q-19 0-31.5 13t-12.5 31v255H307l100-594v-90h67v-302q-12 0-17-10l-21-56q-2 0-2-6 0-2 1-4l185-352V781q0-8 6-14.5t14-6.5 15 7l207 84q11 6 11 16 0 11-11 18l-202 81v138l182 348q2 3 2 8t-2 6l-20 56q-5 10-17 10v359h58v-57h94v57h69v-135l-129-126v-293h95v65h79v-65h63V943h-8q-5 0-9-3.5t-6-7.5l-22-57-1-5q0-3 2-7l183-348V190q0-8 6-14t14-6q9 0 14 7l208 83q12 5 12 18 0 12-12 17l-203 82v138l186 351q0 2 1 4-2 4-2 5l-22 57q-2 4-6 7.5t-10 3.5h-8v394h60v65h78v-65h95v293l-129 126v135h81v-57h94v57h51v-359q-12 0-17-10l-21-56q-2 0-2-6 0-2 1-4l184-349V781q0-8 6.5-14.5t14.5-6.5q6 0 13 7l209 84q11 6 11 16 0 11-11 18l-203 81v141l183 345q2 3 2 7t-2 7l-22 56q-2 10-16 10v302h82v90zm-961-1403v-103h-79v103h79zm-654 591v-104h-77v104h77zm1230-104v104h77v-104h-77z"},"children":[]}]};exports.u1F3F0=u1F3F0;var u1F400={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2004 1644q106 32 179.5 108t73.5 168q0 181-204 310t-557 129q-103 0-206-15.5t-198-57.5l-38-16q-71-29-97-54.5t-26-35.5q0-8 12-8 8 0 15.5 7.5t81.5 38 169 49.5 194 19q269 0 418.5-48.5t237.5-128 88-173.5q0-73-46.5-125t-135.5-78q-18 76-71 144t-177 125l-94 43q-48 22-91 52l-44 31q-37 25-73.5 38.5T1333 2180q-47 0-76.5-22.5T1227 2091q0-45 60-79t119-60l20-10q12-5 12-16 0-12-18.5-32t-18.5-69q0-21 5-39.5t22-43.5l11-17q4-7 4-12 0-10-20-10-38 0-61.5 46t-23.5 89q0 23 6.5 47t6.5 36q0 16-41 35.5t-70 19.5q-13 0-26 3.5t-23 12.5l-19 15q-73 52-111.5 67t-71.5 15q-56 0-86.5-19t-30.5-58q0-54 77.5-92t77.5-62q0-7-21.5-39.5T979 1730t-24-56q-18 0-40.5 32.5t-53 48.5-58.5 16q-37 0-65-26.5t-28-62.5q0-32 39.5-71t55.5-89l-35 1q-111 0-177-17t-110-53q-11 12-26 19t-33 7q-32 0-56.5-23.5T343 1398q0-29 18.5-51.5T411 1320q-2-14-3-28t-1-30q0-111 53-233t132-211q-59-43-93-108t-34-140q0-136 92.5-212.5T763 281q129 0 214.5 81t85.5 209q0 47-12 92l26 7q12 4 25 9 41-126 131.5-198t205.5-72q146 0 264 112t118 266q0 118-67 205t-181 121q158 114 228 187t115 154.5 55 179.5q9 2 18 5zm-417-710q65-63 65-151 0-86-70-148t-157-62q-85 0-137 64.5T1236 743q0 24 27 47t55 75 28 83.5 19.5 40 69.5 8.5q87 0 152-63zM851 679l27-14q16-7 23-26.5t7-47.5q0-73-46.5-127.5T752 409q-67 0-112 52t-45 120q0 49 29.5 90.5t63 53.5 39.5 12q10 0 31.5-13.5T808 698zm167 371q-25-29-60-29-33 0-58.5 29t-25.5 72 24.5 72.5T958 1224t60-29 25-73q0-43-25-72zm253.5 629.5q-4.5-7.5-12.5-7.5-13 0-21 19.5t-31.5 43.5-56.5 24q-24 0-42-14.5t-18-37.5q0-31 24-70.5t24-77.5q0-10-3.5-16.5t-11.5-6.5q-14 0-16 10l-5 19q-4 25-30.5 67.5T1045 1707q0 43 32.5 74t79.5 31q64 0 91.5-48.5t27.5-68.5q0-8-4.5-15.5z"},"children":[]}]};exports.u1F400=u1F400;var u1F401={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1195.5 2067.5q3.5-16.5 11.5-30.5l-19 14q-60 45-106 63.5t-88 18.5q-72 0-114-31t-42-87q0-37 21.5-66.5T921 1898l48-26q12-7 18-12-5-7-12-20l-12-27q-7-14-12-33t-5-42q-29 35-63.5 54.5T805 1812q-54 0-92.5-38t-38.5-91q0-43 35-79t36-38q-86 0-158.5-18.5T466 1490q-12 4-30 4-39 0-69-28.5t-30-70.5q0-23 10-44t29-35q-3-24-3-51 0-104 46.5-223.5T543 827q-39-39-75.5-100T431 574q0-151 102.5-239.5T769 246q137 0 238 86.5T1108 583q58-104 145-157t191-53q163 0 292 123t129 295q0 106-53 196.5T1661 1128q195 148 272.5 271t82.5 251q105 36 176 110t71 163q0 130-109.5 238T1872 2316t-371 47q-103 0-205.5-16t-197.5-57l-38-16q-41-18-70-36t-45-39l-5-7q-3-4-3-8 0-8 11-8 8 0 16.5 7.5t80.5 37.5 167.5 49.5T1408 2290q272 0 421.5-49t236-127.5T2152 1941q0-58-28-98.5t-120-78.5q-26 95-101 172t-197 121l-5 2q-113 54-184.5 110.5T1360 2226q-77 0-122.5-35.5T1192 2098q0-14 3.5-30.5zM453 1299q35 7 57.5 33.5T533 1396q0 21-9 39 39 27 101 39.5t155 12.5h23q18 0 32 9.5t14 29.5q0 24-16 53t-53 66l-16 16q-6 7-9 12t-3 11q0 21 15.5 34.5T803 1732q49 0 84-47t73-47q32 0 47 28t16.5 61 20.5 74l3 7q7 14 16 26t9 29q0 29-27.5 51.5T973 1960l-13 7q-21 11-32 21t-11 27q0 22 18 30.5t59 8.5q40 0 75-21t74-47l12-8q12-9 32.5-24t72.5-15h70q4 0 9 1 22-2 22-15 0-4-9-26.5t-9-56.5q0-44 23.5-89.5t62.5-45.5q19 0 19 10 0 6-21 37.5t-21 75.5q0 50 22 74t22 43q0 32-57 62t-89.5 47-32.5 42 25.5 37.5 63.5 12.5q30 0 54.5-9t50.5-28l32-24q42-33 86.5-57.5t84.5-41.5l39-17q114-48 172.5-128t58.5-177q0-68-30.5-144.5T1811 1368t-154.5-144-103-76.5-14.5-29.5q0-32 42.5-43t94.5-50 81.5-99.5T1787 790q0-139-105.5-238.5T1444 452q-79 0-144 38.5T1198 586t-49 96.5-41 39.5q-6 0-48.5-13t-42.5-42q0-2 6-29t6-63q0-123-79.5-187T769 324t-180.5 66T509 574q0 91 51 151.5t64 68 13 28.5q0 16-6.5 21T578 910.5 492 1074t-40 201q0 16 1 24zm841-657.5q52-64.5 137-64.5 88 0 157 62t69 148q0 88-65 151t-152 63l-16-1q-35 0-54-9t-19-36.5-29-84.5-54.5-77-25.5-46q0-41 52-105.5zM884.5 669Q856 683 796 712l-62 29q-55-9-94.5-53.5T600 585q0-68 45-120t112-52q63 0 109.5 53.5T913 593q0 62-28.5 76zm19.5 530q-25-29-25-73 0-43 25-72t60-29q33 0 58.5 29t25.5 72-24.5 72.5T964 1228t-60-29zm218.5 582q-41.5-35-41.5-81 0-33 32.5-76.5t34-69 20.5-25.5q13 0 17.5 13.5t4.5 26.5q0 29-24.5 69.5T1141 1701t20 34 39 12q21 0 38.5-11.5t33.5-33.5l17-23q6-8 13-8 8 0 14.5 7t6.5 18q0 34-34 77t-85 43q-40 0-81.5-35z"},"children":[]}]};exports.u1F401=u1F401;var u1F402={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2274 1779q3 45 9 89.5t6 89.5q0 86-30.5 128.5T2170 2129q-36 0-48.5-11.5T2109 2088q0-19 6-37t6-37q0-77-36.5-130t-96.5-88l-33-21q-16-10-41-10h-10l-10 2q-8 45-24 90l-31 82q-11 29-38.5 49.5T1739 2009q-30 0-54-10.5t-24-33.5q0-25 29.5-44t29.5-77q0-9-1-19t-3-18l-63 14q-43 9-63.5 23.5T1569 1896q0 29 2 49t2 43v102q0 185 24.5 243.5t24.5 84.5q0 38-25 53.5t-58 15.5q-36 0-72.5-14t-48-30.5-11.5-58.5q0-12 1-24v-21q0-39-20-119t-52-151l-10-21q-8-18-20.5-29.5T1277 2007h-6l-7 2q-33 9-66.5 14.5t-68.5 5.5q-64 0-130.5-19.5T922 1990q-11 0-15.5 11t-14 59.5-18.5 118-22.5 95-44.5 39-74 13.5q-28 0-45.5-12t-17.5-33q0-20 20.5-46t20.5-74l-1-28q0-26 2-53t2-54v-24q0-73-50-143.5T596 1730t-18-125q0-29 6-59 53 11 108 11 94 0 152.5-32t92.5-101 127-147.5 93-139.5q0-12-4-22.5t-9-20.5q-44 84-145.5 165.5t-109 121-57 80T677 1501q-107 0-174.5-40t-93-83.5T384 1284q0-47 38-110.5t38-115.5q0-20-1.5-40t-1.5-38q0-61 4-119t21-112q-55-4-113-72t-58-124q0-39 18-64.5t52-45.5l39-23q16-10 34.5-24t18.5-30q0-20-18.5-36.5T436 296q0-13 17-13 14 0 27 9l22 16q27 19 42.5 45t16.5 59q0 45-20 73t-20 46q0 14 18.5 22.5T590 562q18 0 33.5-2.5T655 557q36-17 72-22t78-5q87 0 133.5 11.5T999 556l6-1q19 0 56 13t59 13q18 0 35-11.5t17-32.5q0-19-16.5-45t-16.5-57q0-54 30-91t48-37q13 0 13 16 0 18-8 31t-8 30q0 26 61 87t61 131q0 35-11.5 68t-33.5 60q27 4 46.5 14t19.5 34q0 15-8.5 26.5T1326 824q41 27 120 59.5t120.5 41.5 127.5 22l152 19q22 3 36 13.5t17 15 39 23.5l55 32q20 10 41 14.5t41 4.5q51 0 83.5-28t32.5-81q0-50-43.5-92.5t-110.5-76-67-73.5q0-18 13-38-6-12-6-25 0-32 27.5-56.5T2066 574q19 0 38 3.5t39 3.5q12 0 24-2t19-2 10.5 6 3.5 24q0 67-41.5 95.5T2075 731q-26 0-50-12 0 26 56 49.5t114 80 58 124.5q0 70-54 118.5t-134 52.5q42 52 72.5 109t51.5 160l11 56q18 84 46 132t28 178zM515 1330q-20-14-37-14-8 0-13 4t-5 12q0 11 15.5 34t37.5 23q10 0 16-9.5t6-18.5q0-17-20-31zm257 28.5q-12-5.5-27-5.5-31 0-53.5 12t-22.5 33q0 13 11 19t25 6q33 0 56-13.5t23-33.5q0-12-12-17.5zM964.5 954q-8.5-14-23.5-29l-101 63q0 30 18.5 54t48.5 24q26 0 46-20.5t20-55.5q0-22-8.5-36z"},"children":[]}]};exports.u1F402=u1F402;var u1F403={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2407.5 939q-54.5 53-139.5 53 57 84 89.5 169.5T2390 1344q0 15-1 31.5t-1 32.5q2 75 6.5 150.5t4.5 150.5q0 26 2 54.5t2 57.5q0 73-32 122.5t-85 49.5q-27 0-47.5-16.5T2218 1928q0-13 4.5-26t4.5-32q0-58-12.5-99.5t-29.5-61-45-25-57.5-23-44.5-17.5q-5 0-10 4.5t-11 11.5l-22 27q-83 90-172 140.5t-185 50.5q-11 0-18-1-2 42-5 83t-3 82q0 94 16 135t16 67q0 13-2 26l-4 24q-4 23-36 42t-68 19q-43 0-61-19.5t-18-69.5q0-18-4-34l-10-32q-6-18-6-35l1-11q0-50-19.5-127t-31.5-120l-11-36q-9 0-18 1h-20q-20 0-37.5-1t-37.5-4v20q0 11-1 22l1 84q0 17-1 33t-1 33q0 21 5.5 43t5.5 41q0 37-33 65t-84 28q-28 0-48-13.5t-20-38.5q0-19 6-40.5t6-35.5q0-56-9.5-116t-29.5-102-63-59-83-54.5-67-78.5q67 0 127.5-43.5T1054 1553t56.5-92 94-100 58.5-115q0-19-11-41-43 86-147.5 175T989 1517.5t-64 89.5-169 41l-52-2q-96-4-173-69.5T454 1422q0-45 37-110.5t37-113.5q0-29-2.5-59.5T523 1085q-66 24-128 24-107 0-181.5-71.5T139 854q0-93 51-173.5T315 600q20 0 31 12.5t11 26.5q0 24-24.5 41T308 754q0 29 18.5 43t38.5 14q51 0 79.5-63T555 626.5 715 568q24 0 43.5 3t35.5 6l32 7q15 3 32 3 50 0 104-25.5t118-25.5q53-19 101.5-29.5T1284 496q87 0 163 25.5t151 72.5q-3-14-9-26l-12-24q-6-11-10.5-22.5T1562 496q0-35 20.5-53.5T1628 424q23 0 46.5 13t43.5 32l23 24q42 42 63.5 101t21.5 119q0 24-3 48 55 37 147.5 38t140 30 91.5 78q17 6 34 11t36 5q52 0 85.5-37t33.5-89q0-50-34.5-90.5t-97-73.5-81.5-58q-32-4-56.5-26.5T2097 488q0-54 37-100.5t111-46.5q10 0 23.5 3t13.5 14q0 10-11.5 22t-11.5 32 8 41.5 8 42.5q0 23-11.5 40t-25.5 26q7 8 19.5 16t27.5 16l29 17q68 39 108 88.5t40 112.5q0 74-54.5 127zM1637 536q21 35 21 85 0 77-46 128.5T1491 801q-96 0-205-106t-237-106q-55 0-97.5 33.5T909 705q0 36 32.5 87T1126 929.5t312 86.5q142 0 237-81.5t95-217.5q0-56-19.5-108.5T1689 518l-27-25q-17-15-34-15-12 0-12 16 0 7 21 42zM498 1036q0-74 18.5-99t59-49.5 53-67.5 50-108.5T760 624q-9-2-20-2h-21q-65 0-128 43T486 786.5 365 865q-49 0-80-32t-31-79q0-29 6.5-49.5T275 670q-37 26-59.5 75.5T193 850q0 97 59 151t143 54q24 0 50.5-5t52.5-14zm97 438q-21-15-39-15-20 0-20 16 0 14 18 36.5t39 22.5q12 0 17.5-10t5.5-19q0-16-21-31zm283 46q0-3 1-5 0-13-10.5-18.5T844 1491q-36 0-61 12.5t-25 36.5q0 13 12 19.5t26 6.5q25 0 49.5-11.5T876 1527zm164.5-469.5Q1023 1027 996 1027q-24 0-43.5 20t-19.5 53q0 30 19.5 55t48.5 25q26 0 43.5-20.5t17.5-52.5q0-33-19.5-56.5z"},"children":[]}]};exports.u1F403=u1F403;var u1F404={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2515 982q4 16 4 37 0 51-32.5 91t-80.5 40q-20 0-45.5-11t-39.5-29q-46-3-78.5-35.5t-61.5-106T2058 855q92 132 138.5 341.5t74.5 341 32 276.5q0 12 1.5 24t1.5 25q0 51-40.5 81.5T2182 1975h-29q-60 0-87-20.5t-32-56.5l-10-59q-9-51-16-95.5t-97-80.5q-110 16-217 44l2 20v20q0 69-47.5 86.5T1554 1851q-28 0-42.5-14t-14.5-56v-12l-12 7q-20 12-39 18.5t-38 17.5q-6 77-6 153 0 18 1 36t1 37q0 18 3.5 48t3.5 63q0 96-34.5 146t-118.5 50q-102 0-131-34t-29-97q0-7 1-13v-10q0-41-4-79t-11-80l-5-31q-5-29-14-59.5t-20-60.5q-65-7-126-23-17 62-17 124 0 15 1 31t1 40q0 92-71 111.5T720 2184q-54 0-83-22t-29-68q0-24 4-41t4-30q0-50-8.5-101T591 1818l-4-28q-2-16-6.5-31.5T573 1728q-9 0-19 1t-19 1q-83 0-148.5-33t-88.5-85q-75-42-116.5-102T140 1371q0-59 26.5-118t65.5-105.5 60-147.5l21-107q-59-15-93.5-58.5T185 731t34.5-101T320 589l27 1 14 1q10 0 19 1h17q-9-20-17.5-44t-8.5-48q0-32 16-51t45-19 78 27 69 47q67-26 137-26h4q107 2 175 14t97 25l37 15q6-4 9-7l22-15q29-19 57.5-29.5T1163 470q27 0 43.5 17.5T1223 537q0 21-8 51 60-12 115.5-19.5T1443 561q158 0 292 49t234 143q104 13 171 59.5t97 134.5 73 99q0-20 26.5-48.5T2410 969l36 1q13 0 26-6.5t25-6.5q11 0 14 8zM1056.5 648.5Q1079 667 1105 669h3q27 0 47.5-52.5T1176 543q0-15-4.5-20.5T1158 517q-14 0-36 9.5t-37 20.5l-20 14q-19 13-25 23.5t-6 22.5q0 23 22.5 41.5zm-621.5-89q13 32.5 23 48.5t32 16q29 0 48.5-19t19.5-38q0-26-48-56t-70-30q-18 0-18 24 0 22 13 54.5zM544 925q-14-16-33-16-24 0-41.5 23T452 985q0 26 14.5 41t32.5 15q23 0 41-22.5t18-51.5q0-26-14-42zm-256 558q9-21 19-35.5t24-30.5q0-20 13-29.5t30-9.5q27 0 53.5 20.5T454 1444q0 20-11.5 28t-13.5 26l-2 17q0 22 30.5 39t70.5 17q36 0 66.5-14t30.5-40l-1-17q0-36 25.5-60.5T713 1415q23 0 40 11t19 37l-1 7q13 31 13 62 0 41-21 80 73-17 127-65t68-90l10-29q23-68 89.5-128.5t111-127.5 44.5-186q0-68-18-136 60 0 102-26.5t42-74.5q0-27-14-47t-37-20q-12 0-23 3l-24 6-28 6q-15 3-35 3h-25q-8 8-22 12.5t-24 4.5q-49 0-84.5-34T987 607q0-5 1-7-45-22-107.5-32.5T727 557q20 37 24.5 78.5T756 712q0 186-108.5 316T420 1169l-57 5q-29 3-58 4-5 7-45.5 69.5T219 1380q0 37 17.5 66t45.5 58q0-5 2-11zm99 156.5q60 41.5 146 41.5 81 0 141.5-40t60.5-107q0-16-5-33l-1-4q-2-9-7-18t-17-9-22 4.5-10 16.5q0 8 1 16.5t1 16.5q0 40-43.5 68T531 1620q-66 0-109.5-30.5T378 1516l2-22q2-14 10.5-26t8.5-20-4.5-10.5-8.5-2.5q-18 0-38.5 35t-20.5 68q0 60 60 101.5zM2105 1159q-11 5-23.5 6.5t-24.5 1.5q-77 0-118.5-21t-92.5-89-115-68l-102 1-50-1q-51 0-110.5-37T1381 850q-18 23-42.5 39.5T1288 915q2 18 3 35.5t1 35.5q0 107-36 186.5t-122.5 162T1039 1461t-58 104-124.5 97.5T662 1703l-6 3q-3 2-7 3 5 17 8 34t7 35l5 27q11 57 17.5 115.5T694 2038q11 2 24.5 3t27.5 1q20 0 49.5-4.5T825 2025q0-19-1-32 0-92 24-170-13-14-24.5-33.5T812 1751q0-25 19-25 22 0 44 23t55.5 31 75 15.5 68 9 36 27.5 26 71.5 21.5 85.5l15 107q5 38 5 78 17 11 32.5 12.5t35.5 1.5q24 0 45-4.5t42-10.5l1-12v-13q0-44-5-92.5t-5-94.5q0-56 4.5-119.5t4.5-65.5v-15q0-43 13.5-97t13.5-66v-7q0-25-17-56.5t-17-51.5q0-32 29-53t65-21q57 0 89 59t62 59 74.5 19 80.5 72q69-17 128-26t63-9q24 0 90.5 42t77.5 96l9 50 10 60q22 3 47 3 11 0 32-1.5t42-8.5q0-58-5.5-116.5T2199 1582q-92-10-128-46t-36-94q0-57 26-101.5t72-65.5q-6-30-13-58.5t-15-57.5zM888.5 961.5Q905 943 929 943q32 0 56.5 29t24.5 64q0 32-17.5 50.5T951 1105q-31 0-55-29t-24-65q0-31 16.5-49.5z"},"children":[]}]};exports.u1F404=u1F404;var u1F405={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2546 1449q19 43 25.5 73t6.5 56q0 83-62.5 137t-134.5 54q-53 0-87.5-24t-60.5-67q-70 29-159 29-38 0-76-9t-84-37q-21 42-74 81.5t-118 71.5q-38 19-74.5 36t-74.5 31q-12 29-34 102t-62 158l-6 13q-77 167-162 221.5t-178 54.5q-123 0-224-69.5T806 2190q0-93 72.5-168t96.5-126q-51-8-103.5-17.5T765 1848l-45 63q-38 55-102 119.5T469 2133q-59 27-132 27-123 0-206.5-80.5T47 1876q0-72 38-119t94.5-68T298 1578q-20-20-37-40l-32-36q-60-70-91-161.5T107 1148q0-158 74.5-321T382 558q-6-12-8.5-28.5T371 497q0-87 79-154t179-67q101 0 168 58t73 133q63 5 127.5 18t125.5 34q25-45 76-72.5t119-27.5q98 0 174.5 58.5T1600 630q92 7 181 36.5t170 29.5q100 0 171.5-39.5T2203 568l2-8q11-47 45-76t79-29q55 0 93.5 42.5T2461 607q0 86-77 180.5T2183 932q32 35 52 71l36 69q16 30 28 58.5t26 53.5q54 6 101.5 58.5T2511 1372zm-299-794q-5 5-10 11t-11 11q23 8 45 32t30 51q18-18 30-34 0-27-25-49.5t-48-22.5q-8 0-11 1zm-73 63q-13 8-25.5 14.5T2122 744q22 15 35.5 41.5T2171 839l-1 12 17-8q20-9 35-19.5t15-20.5q0-25-18-51.5t-45-33.5zm320 816.5q-6-21.5-15-42.5l-25-58q-40-90-82.5-134.5t-72.5-40-66-83-79.5-153.5T2035 891q13-2 26-5l25-5q6-16 6-33 0-23-11.5-49t-31.5-34q-24 5-49 7t-49 2l-11-1q0 2 2 2t31.5 33.5 50 90T2044 1017q0 29-5 43.5t-13 14.5q-24 0-50.5-90T1898 837t-98-74q49 61 72 137t23 150v30q0 30-8.5 48.5T1864 1147q-8 0-12-2.5t-33.5-124-92-194.5T1590 721l-2 7q62 66 90 139t28 158q0 32-4.5 64.5T1690 1154l-5 23q-7 24-17.5 40.5T1643 1234q-12 0-15.5-7.5t-3.5-14.5v-21q0-33-1.5-66.5t-1.5-67.5q0-60-26-131.5T1529 814q-13 10-13 18 0 4 19 50.5t19 122.5l-1 15q-4 29-10 51t-16 22q-5 0-6-8t-1-13q-8-79-35.5-146t-45-87.5T1422 811q0-10 10-10 46-18 69-54.5t23-84.5q0-62-69-113t-137-51q-43 0-77.5 15.5t-48 42T1179 594l1 11q0 9-5.5 12t-14.5 3q-10 0-21.5-3t-16.5-5l-31-6q-16-3-32-3-20 0-38.5 4T983 617q9 4 20 7l22 8q29 11 49.5 25t20.5 27q0 12-14 12-12 0-60-16.5T933 652q0 3-9 12l-12 12q34 10 71.5 28t37.5 33q0 9-16 9-11 0-22-3l-17-4q-42-13-87-22-15 18-36 18-9 0-17-4.5t-8-15.5q0-7 1-11l-30-3q-29-3-55-10.5T708 672q0-8 12-13t24-6h15q22 0 39 2l35 4 5-13q2-6 6-13-18-3-36-3l-17-1q-27 0-46-4t-19-14q0-15 25-20t81-5h18q8 0 16 2 2-4 2-6 0-13-11.5-19t-22.5-8l-14-2q-16-2-27-7.5T782 530q0-13 4.5-26t4.5-25q0-52-51-88.5T629 354q-64 0-122 43.5T449 503q0 20 11.5 39.5T472 575q0 11-10.5 18T406 643.5t-54 75-9 58.5q0 15 3.5 29t8.5 28l8 29q4 15 4 30 0 21-17 21-29 0-49-31t-22-70l-11 21q-6 10-11 21v33l-1 31q0 73 28 132t43.5 76.5T343 1160q0 13-6.5 18.5T323 1184q-23 0-66-41t-56-133l-10 60q14 99 48.5 143.5t51 55T307 1291q0 9-5.5 12.5T288 1307q-30 0-57-20t-33-24q17 80 64.5 150.5T369 1534l9 9q31 26 81.5 46.5T510 1636q0 14-15 18t-32 4q-25 0-53.5-7t-51.5-21q-48 69-77.5 90t-92.5 52-63 103q3 83 58.5 144.5T337 2081q87 0 173-61t149-159.5 95-98.5q13 0 57 19.5t140 31.5 104 24 8 31q0 36-34.5 92t-89 112-54.5 116q0 68 76.5 113.5T1103 2349l28 1q77 0 132.5-40t89.5-97.5 69-140 58.5-168 53.5-93.5 122-52 141.5-84 49.5-62q0-11-23.5-43t-35-64.5-11.5-66.5v-16q0-14 11.5-60.5t32.5-46.5q18 0 22.5 17.5t4.5 37.5v44q0 76 63.5 144t162.5 68q75 0 122.5-19t65.5-19q24 0 40.5 50.5t78.5 50.5q41 0 80-31.5t39-82.5q0-20-6-41.5zM1253 1118q-14 0-30-4.5t-16-17.5q0-12 10-19t23-12l14-4q49-18 77-54t44-72 25-36q11 0 18 17.5t7 39.5q0 59-51 108t-113 53zm167-12q9-12 18-19.5t16-7.5 9.5 8 2.5 16q0 35-27.5 85.5T1354 1271t-124 32q-38 0-69-10.5t-31-25.5q0-10 10-16.5t27-9.5l17-2q68-5 126.5-38t101.5-84zm-22 204q7-7 19.5-15t18.5-8 8 7 2 13q0 46-80 109.5t-183 63.5q-44 0-84.5-12.5T1058 1436q0-16 77-16 75 0 136.5-28.5T1390 1317zm-318.5-82.5Q1053 1274 980 1289q0 95-61.5 162T766 1518q-117 0-208-43t-91-126q0-29 7-53.5t7-44.5q0-16-4.5-32t-4.5-36q-38-23-60.5-58t-22.5-79q0-26 9-51t28-25q7 0 9 10t2 21q0 8 1 15 0 35 39 70t81 35q41 0 57-28t21-67q-44-33-64.5-66.5T551 891q0-15 7-21t17-6q29 0 81.5 38t99.5 38q36 0 69-1.5t65-1.5q55 0 55 29 0 18-21 43t-72.5 41-102.5 16q-10 20-10 38 0 49 58.5 77t116.5 28q53 0 90.5-19.5t49.5-45.5 27-26q12 0 18.5 9t6.5 22q0 32-26.5 78.5zM902 1291q-57 0-110.5-25t-82.5-54-51-29q-7 0-17 3l-23 8q-13 5-28.5 8.5T556 1206l4 21q0 11 1 24 0 30-8 56t-8 42q0 40 68.5 65.5T758 1440q61 0 100-40t44-109zM621 769q-8 24-32 40.5T539 826t-44-16.5-18-42.5q0-27 22-53.5t53-30.5zm418 176.5q-26-25.5-26-63.5l1-8 121-51q17 14 27 31.5t10 40.5q0 30-20 53t-53 23q-34 0-60-25.5z"},"children":[]}]};exports.u1F405=u1F405;var u1F406={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2516 1712q-62 54-135 54-50 0-88.5-24t-59.5-67q-4 4-20 8l-27 8q-29 8-58 10t-54 2q-39 0-77-8.5t-83-36.5q-21 42-74 81.5t-114 69.5l-78 37q-37 18-75 32-23 60-44.5 128t-51.5 132l-6 14q-60 138-146 206t-194 68q-122 0-223.5-68.5T806 2187q0-91 70.5-164.5T975 1894q-51-8-103.5-18T765 1845l-67 92q-63 87-155.5 153.5T337 2157q-123 0-206.5-80.5T47 1873q0-65 32.5-113t94-71.5T298 1576l-65-71q-32-35-56.5-79.5t-39.5-90-22.5-94-7.5-97.5q0-161 73.5-316.5T382 555q-6-14-8.5-30t-2.5-31q0-90 80.5-155.5T629 273q101 0 168 58t73 133q63 5 127.5 18t125.5 33q25-45 75.5-72t119.5-27q97 0 178 61t103 150q93 7 182 36.5t170 29.5q96 0 167.5-36.5t84-92.5 48-83.5T2329 453q56 0 94 42.5t38 108.5q0 88-76.5 180.5T2183 928q51 64 93.5 151.5T2325 1180q94 17 173.5 167t79.5 228q0 83-62 137zm-22-180.5q-6-21.5-15-42.5l-25-58q-31-69-69-117.5t-63-53.5l-19-4q-21-3-31.5-12t-66-131.5T2035 888q85-11 154-50 19-74 25.5-78.5t16.5-4.5q11 0 25.5 7.5T2271 783q26-21 46.5-42.5T2356 689q-4-25-28.5-44t-47.5-19q-17 0-20.5 7.5T2247 650q12 7 23 16.5t11 20.5q0 12-15.5 21t-30.5 9q-9 0-23.5-2.5T2189 705q-12 9-25 16l-27 14q13 10 13 26t-10.5 29-24.5 13q-18 0-41-13t-25-28q-25 5-45.5 7t-48.5 2q-51 0-100.5-8.5T1758 738q-4 23-28 41.5t-50 18.5q-21 0-41.5-14t-20.5-34q0-5 3-9t10-4q13 0 26.5 7.5t20.5 7.5q10 0 16.5-5t6.5-14q0-3-1-5.5t-1-5.5q-25-6-50.5-10.5T1599 707q-6 44-28 79 10 8 15 19t5 20q0 18-14 31t-34 13q-6 0-9-1 6 12 12.5 23t11.5 25q40 17 51.5 33.5T1621 987q0 20-11.5 34.5T1576 1037q-4 33-17 55.5t-28 22.5l-4-1q-3 0-3-2-5-63-21.5-123T1455 874l-8-14q-10-15-17.5-22t-7.5-13q0-3 12-7l16-6q38-18 57-55t19-77q0-74-65-129.5T1318 495q-71 0-105 34t-34 62l1 11q0 5-2 9.5t-9 4.5q-85-31-86-31 0 16-15.5 27.5T1031 624q-14 0-23-7.5t-9-21.5q0-9 4.5-17t9.5-12q-26-6-52-11l-52-8q-4 13-20 21.5t-29 8.5-18.5-6.5T836 555v-7q0-3 2-7h-42q-14 0-14-15 0-12 4.5-25t4.5-25q0-55-52-89.5T625 352q-65 0-120.5 42.5T449 493q0 14 3.5 24.5T461 537l8 16q3 8 3 18 0 15-16.5 24T397 651l-46 51q16 13 16 41 0 16-7.5 28T333 783t-29-16q-10 15-18 29t-16 30q14 2 21.5 18t7.5 33q0 19-11 29.5T264 917q-9 0-14.5-3.5T236 902q-40 91-48 194 21 4 35.5 26.5T238 1165q0 18-11 26.5t-23 8.5q-9 0-16-3 13 137 92.5 240.5T417 1569l43 21q21 11 36 22t15 25-14.5 18.5-31.5 4.5q-26 0-56-7.5t-53-23.5q-62 94-146.5 128T125 1872q0 87 60 147t152 60q90 0 171.5-62T641 1883l41-58q20-28 39-47t36-19q7 0 61.5 19t150.5 35l33 4q29 3 45 14.5t16 33.5q0 35-34 91.5T940 2069t-55 116q0 75 85 119t161 44q68 0 117.5-31t87.5-84.5 78-145 65.5-182 55.5-98 120-51 141-84.5 51-62q0-13-7-18.5t-35-55-28-101.5q0-23 10.5-72.5t32.5-49.5q19 0 23.5 20.5t4.5 52.5q0 74 17 104t39.5 59 69.5 52.5 100 23.5q75 0 119.5-19.5t70.5-19.5q20 0 31 33.5t31 50.5 52 17q46 0 84-32t38-82q0-20-6-41.5zM1847 917q-19-16-19-40 0-5 3-10t9-5q14 0 25 10.5t22 10.5q8 0 14-5t6-17q0-18-20-26t-20-18q0-5 7-10t19-5q29 0 48.5 19.5T1961 863q0 26-23.5 48t-51.5 22q-20 0-39-16zm45 292q-21-14-21-34 0-13 13-13 11 0 23.5 6t17.5 6q8 0 14-5t6-15q0-23-24.5-28t-24.5-16q0-8 11-14t25-6q34 0 50.5 19.5t16.5 39.5q0 28-22.5 51t-47.5 23q-16 0-37-14zm295.5-77q7.5 11 10.5 22l1 8q0 22-21 37t-40 15q-27 0-50.5-20.5T2064 1148q0-17 8.5-32.5t25.5-15.5q7 0 14.5 4t7.5 12-6.5 11.5-6.5 11.5q0 11 9 16.5t21 5.5q9 0 16-4.5t7-12.5l-1-11q0-5 3.5-8.5t7.5-3.5q10 0 17.5 11zm-362 11.5Q1808 1166 1774 1166t-63-23-29-58q0-9 4-16.5t15-7.5q6 0 20.5 23.5t39.5 23.5q14 0 21.5-7t7.5-18q0-15-19.5-27t-19.5-26q0-8 5-11t12-3q28 0 51.5 20t23.5 56q0 29-17.5 51.5zM1677 900q8 0 23 6t26 6 11-12-7.5-17-15.5-8l-16-5q-8-2-8-9 0-8 13-12.5t21-4.5q24 0 43.5 22t19.5 49q0 24-13 35.5t-34 11.5l-23 1q-21 0-38.5-15t-17.5-32q0-13 16-16zm28 469q-19 14-38 14-25 0-49.5-24t-24.5-46q0-11 4.5-22.5t15.5-11.5q15 0 21 23t23 23q8 0 13-6t5-14q0-10-9.5-19.5t-9.5-20.5q0-3 2.5-7t8.5-4q15 0 36 24t21 56q0 21-19 35zm-170-124q-7-2-15-7 2-17 3-33l2-32q8 10 18 10 11 0 17.5-7.5t6.5-17.5q0-7-6-15t-6-16q0-10 11-10 21 0 33.5 19.5t12.5 43.5q0 30-18 48.5t-42 18.5q-10 0-17-2zm-92 468q17 2 24 13.5t7 27.5q0 25-17.5 49t-39.5 24q-21 0-31-15t-10-34q0-28 18-46.5t49-18.5zm-38-190q6-8 12-14t11-6q31 0 31 48 0 23-10 41t-33 18q-14 0-25-8.5t-11-23.5q0-6 1-11l2-11zm-102 115q13 7 18 19t5 26q0 21-20.5 43.5T1260 1749q-19 0-29-15.5t-10-32.5q0-20 8.5-21.5t33.5-18.5 40-23zm302.5-29.5Q1595 1634 1579 1634q-13 0-24.5-13t-11.5-30q0-20 13.5-40.5t32.5-20.5q13 0 20 6.5t7 23.5q0 23-10.5 48.5zm496-237q15.5 13.5 15.5 32.5 0 20-12 28.5t-23 8.5q-17 0-31.5-13t-14.5-32q0-14 9.5-26t23.5-12q17 0 32.5 13.5zM1961 1449q22 0 36 18.5t14 39.5q0 14-7.5 23t-23.5 9q-21 0-35.5-17t-14.5-38q0-13 7-23t24-12zm16.5-78.5q-6.5 11.5-20.5 11.5-21 0-33.5-13.5T1911 1335q0-16 9-28.5t29-12.5q15 0 25 17.5t10 33.5q0 14-6.5 25.5zM1587 1434q0 17-15.5 30.5T1539 1478q-19 0-27-13t-8-28q0-22 12.5-40.5t32.5-18.5q17 0 27.5 17.5t10.5 38.5zm377.5-388.5Q1945 1035 1945 1015q0-4 1.5-11.5t7.5-7.5q11 0 23 5t23 5q6 0 12.5-4.5t6.5-12.5q0-12-25-17t-25-12q0-14 11-19.5t25-5.5q30 0 48 21t18 51q0 23-14 36t-43 13q-30 0-49.5-10.5zm-497 5q11.5 13.5 11.5 27.5 0 21-16.5 36.5T1425 1130q-14 0-24.5-8t-10.5-24q0-21 16.5-41t34.5-20q15 0 26.5 13.5zM1391 902q14 5 20.5 13.5t6.5 19.5q0 20-15.5 37.5T1367 990q-12 0-24-8.5t-12-24.5q0-22 16-39.5t33-17.5h6zM881.5 609.5Q895 596 912 596q14 0 25 11.5t11 21.5q0 14-13 23.5T905 664q-16 0-26.5-7.5T868 637q0-14 13.5-27.5zm452 669Q1317 1267 1317 1252q0-21 22.5-38t43.5-17q16 0 27 8t11 22q0 16-17.5 39.5T1363 1290q-13 0-29.5-11.5zM1509 1254q4 0 8 3-9 51-24 99-11 3-21 3-15 0-25-9t-10-25q0-23 20.5-47t43.5-24h8zM295 1057.5q-10 7.5-23 7.5-17 0-33-12.5t-16-39.5q0-18 8-26t21-8h7q13 0 29.5 18t16.5 39q0 14-10 21.5zm201.5-247Q479 794 479 769q0-30 26-56.5t60-26.5q25 0 42.5 16t17.5 41q0 33-26.5 58.5T539 827q-25 0-42.5-16.5zM1078 818h8q31 0 57.5 25t26.5 60q0 29-19.5 51.5T1100 977q-34 0-58.5-26t-24.5-60q0-25 14-45t38-26zm-10 422q-38 43-88 45 0 95-61.5 162.5T766 1515q-122 0-210.5-44T467 1346q0-29 7-53t7-44q0-15-4.5-32.5T472 1180q-34-16-58-54.5t-24-83.5q0-31 9-53.5t26-22.5q11 0 11 14 0 56 33.5 96.5T555 1117q38 0 59.5-27t21.5-67q-29-21-52-53t-23-68q0-14 6.5-19t14.5-5q12 0 26.5 6.5T632 896l28 18q24 16 47.5 24.5T757 947q29 0 56.5-1.5T870 944q23 0 36.5 6.5T920 971q0 37-53.5 63.5T762 1061q-10 0-16.5 9t-6.5 20l-1 11q0 45 55 75t120 30q51 0 89-18.5t50.5-45.5 33.5-27q12 0 16 10t4 21q0 51-38 94zm-166 48q-5 0-8-1h-9q-52-2-100.5-27t-78-53-49.5-28q-5 0-13 2l-38 13q-12 4-25 7t-25 3q2 11 3.5 21.5t1.5 23.5q0 29-8 55t-8 42q0 40 67 65t142 25q74 0 109.5-44t38.5-104zm57-550.5q7-11.5 20-11.5 10 0 26 13t16 30q0 11-10.5 23.5T982 805q-14 0-22-12.5t-8-28.5q0-15 7-26.5zm-282-26q-9-9.5-9-21.5 0-14 13-25t30-11q12 0 22 7.5t10 24.5q0 14-14 24.5T700 721q-14 0-23-9.5z"},"children":[]}]};exports.u1F406=u1F406;var u1F407={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2104 1850q79 4 130 55t51 127q0 72-44.5 125t-112.5 65q-33 182-202.5 232.5T1549 2505q-46 0-84-20-30 26-71 41t-101 15q-46 0-82.5-9.5T1150 2503q-28 19-61.5 28.5t-69.5 9.5q-85 0-139-48.5T826 2369q0-29 6.5-59t6.5-46q0-42-4-84t-10-81q-161-59-247-165t-86-246q0-97 28-162.5t50-152 63-163 96-123.5l-1-1q-61-93-164.5-202T411 722t-74-122.5T312 458q0-93 76-161.5T574 228q76 0 147 29t132.5 73 113 99 93 118 70 134.5T1171 827l28 147h19l19 2 46-177q33-130 76.5-239.5t101-182.5T1595 260t168-44q108 0 172 68.5t64 184.5q0 99-45 205t-157 294-112 234q0 67 54 183.5t70 211.5q68 30 138 90t120 166q18-3 37-3zm-663.5 172q114.5-43 197-118.5T1720 1693q0-115-67-257.5t-67-234.5q0-36 32.5-108t81.5-155l37-61q61-100 112.5-209.5T1901 468q0-74-34.5-114T1766 314q-121 0-211.5 103.5t-148 305.5-75 277-69.5 75q-28 0-55.5-2.5t-55.5-2.5q-22 0-30.5-9T1083 883.5t-110.5-288-188-194.5T580 326q-67 0-118.5 37.5T410 458q0 116 66 189t149 158.5 151.5 178T845 1108q0 22-32 38t-72.5 72-72.5 172-55.5 169.5T589 1689q0 176 179.5 276t419.5 100q138 0 252.5-43zm537-130q-57.5-119-159.5-177-6 151-100 246t-226 148.5-276 53.5q-57 0-132-6t-155-26l6 66q3 33 3 65 0 18-6.5 49.5T925 2370q0 36 26.5 54.5t69.5 18.5q64 0 89-34t25-158v-9q0-4-1-9 0-16 9.5-21.5t21.5-5.5h22q30 0 38.5 15.5t8.5 57.5q0 49-7.5 75.5t-7.5 34.5q0 23 23 36.5t61 13.5q42 0 79-16t37-69l-1-15q2-76 65-96.5t70.5-66.5 48.5-86.5 82-40.5q10 0 19.5 6t9.5 18q0 10-7 18l-15 15q-27 27-41.5 60t-14.5 69q0 22-11.5 35t-37.5 13h-11q-35 0-60.5 20t-25.5 55q0 25 12 38.5t50 13.5q47 0 145.5-10.5t184.5-34 120-76 34-143.5q0-135-57.5-254zm154.5 227q27-12 41-35.5t14-49.5q0-34-22.5-59t-62.5-27q10 28 20 86t10 85zM830 1689.5q-23-27.5-23-64.5t23-63.5 56-26.5q32 0 54.5 26.5T963 1626q0 36-23.5 63.5T884 1717q-31 0-54-27.5zm577 27.5q-32 0-55-26.5t-23-64.5 22.5-64.5 55.5-26.5q32 0 55 26t23 64-23 64.5-55 27.5zm-382 162l14 13q6 6 17 12.5t27 6.5q27 0 38-12.5t11-45.5l-18-8q-20-7-34.5-20.5T1065 1794q0-6 5-16t13-10 24.5 15.5 46.5 15.5q33 0 52.5-15t31.5-15q15 3 15 22 0 17-21.5 36t-37.5 24q0 33 13.5 44t50.5 11q17 0 35.5-16t31.5-16q9 0 15 5.5t6 11.5q0 17-29 43t-77 26q-35 0-51.5-10.5T1167 1939q-10 0-28.5 13t-57.5 13q-37 0-67.5-20.5T983 1894q0-11 8.5-16t19.5-5q7 0 14 6zm474-1078.5q82-232.5 131.5-284T1728 465q25 0 39 16.5t14 44.5q0 23-6.5 49t-17.5 52l-10 25q-20 45-42.5 90.5T1659 831l-45 83q-35 64-56 111.5t-37.5 73-16.5 27-8 1.5q-14 0-33-8t-32.5-13.5-13.5-26.5q0-46 82-278.5zM928 1065l-14-28Q790 804 671.5 693.5T553 512q0-24 16-42t49-18q42 0 133.5 80T929 785l40 84q12 28 34.5 91t22.5 83q0 19-21 33t-50 14q-11 0-17-7.5t-10-17.5z"},"children":[]}]};exports.u1F407=u1F407;var u1F408={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1931 1972q70 26 114 79.5t44 114.5q0 104-102 184.5t-306 80.5q-26 0-50-1t-60-1q-99 0-119-28t-20-48q0-24 20-39t46-15h32q16 0 33 1l31-1 89 1q137 0 201.5-43t64.5-99q0-25-14-39.5t-34-22.5q-40 70-168 90.5t-250 20.5q-38 0-57-10t-19-44q0-31 23-48.5t52-17.5l23 1q23 0 32.5-13t9.5-32q0-29 14-61.5t27-45.5l18-16q8-8 14-15.5t6-15.5q0-13-9.5-18.5t-20.5-5.5q-35 0-73.5 31t-49 77-40.5 58l-27 11q-26 10-45 29t-19 51l1 36q0 31-25.5 50t-58.5 19q-51 0-83.5-16t-32.5-57q0-12 5.5-37.5t5.5-64.5 3-73q0-35-8-50.5t-29-15.5h-18q-16 0-20.5 6.5t-4.5 20.5v10q0 5 1 9 0 22-1 44t-1 44q0 20 2 40.5t2 40.5q0 40-19.5 59.5T980 2207q-62 0-88.5-30t-26.5-80q0-35 4-62.5t4-53.5q0-46-2-90t-2-89v-21q0-11-1-25l-2-38q-2-24-3-63l-4-102q-94-36-166-92t-104-121l-85 24q-6 2-7 2-11 0-18-7.5t-7-18.5q0-8 5-15.5t13-9.5l78-22q-5-14-8.5-28t-5.5-28l-94 13q-12 0-20-6.5t-8-19.5q0-9 5.5-16t16.5-9l94-12-1-15q0-7-1-15v-10q0-5 1-10l-91-18q-10-2-16-9t-6-16q0-11 7.5-18.5t17.5-7.5l92 18 2-17q5-45 31.5-112.5T662 827q0-219 34.5-356.5T797 333q43 0 109.5 60T1033 534l63 88q10 0 30-1 112 0 213 27 90-90 186.5-156t150.5-66q41 0 63 47.5t22 140.5q0 57-8.5 130.5T1733 875l-12 63q26 55 41 113.5t15 115.5v20l75-8h3q11 0 18 7.5t7 18.5q0 22-22 24l-86 10q0 25-8 51l89 20q9 2 14.5 9t5.5 16q0 15-10 20t-21 5l-92-20q-9 26-23 52l80 30q16 8 16 24 0 13-7.5 19.5t-17.5 6.5q-3 0-9-2l-90-33q-18 26-42 48l89 57q42 26 77.5 70.5t60.5 104 36 119 11 119.5v17zm-631.5-570.5q-8.5-6.5-16.5-6.5-6 0-22.5 9t-34.5 9q-23 0-40.5-15.5T1168 1353v-7q38-3 54.5-22.5t16.5-42.5-25.5-40-69.5-17q-45 0-63.5 15t-18.5 38q0 20 14.5 37.5t41.5 25.5l-2 15q-8 20-24 31.5t-36 11.5q-22 0-35-15t-28-15q-13 0-18.5 6.5T969 1389q0 27 28.5 46t67.5 19q22 0 39-5t32-20q11 21 35.5 30.5t52.5 9.5q39 0 61.5-17.5t22.5-35.5q0-8-8.5-14.5zM937 679q38-19 38-42 0-16-53.5-76.5T836 500q-33 0-48.5 61.5T772 672q0 38 9 53.5t29 15.5q6 0 14-3l62-32q16-8 30-16zm654 138q9 6 20 6 22 0 33.5-33t11.5-91-8-88.5-35-30.5q-28 0-91.5 47t-63.5 70q0 14 22.5 36.5T1540 781zm-151 459q36 0 62.5-30.5t26.5-70.5q0-37-24.5-65t-59.5-28-62 29-27 70q0 36 21.5 63t54.5 31zm-567-60q37 0 62.5-29.5T961 1116q0-37-25-65t-59-28-61.5 28.5T788 1120q0 37 22 64t55 31z"},"children":[]}]};exports.u1F408=u1F408;var u1F409={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2520 1581q-43 21-64 61t-28.5 124-49.5 127.5-99.5 66.5-118.5 23q-95 0-164-54.5t-69-161.5q0-54 16-108t38-99l24-48q6-14 10.5-29t4.5-28q0-14-8-23.5t-29-9.5q-59 0-103 82.5t-72 143.5-62 119q7 15 11 29t4 28q0 13-2.5 26.5t-2.5 26.5q0 17 8 34t8 37q0 2-1 5.5t-1 7.5q0 6 7.5 8.5t14.5 2.5q5 0 9-5.5t10-5.5q7 0 10 5.5t3 12.5q0 19-10 32.5t-42 17.5q-4 17-16 26.5t-29 9.5q-22 0-34.5 12.5T1667 2090q-28 0-45.5-28t-17.5-66q0-30 22-65t22-59q0-29-17.5-53.5T1591 1776q-8 0-10 6.5t-2 13.5q0 16 8.5 32t8.5 33q0 24-21.5 64t-21.5 76q0 11 2 25t8 25l-10 12q-47 56-141.5 132T1220 2309t-190 38-176.5-33.5T708 2226t-95-109.5-33-149.5q0-54 12.5-104t31.5-99q-5 0-9 1h-10q-20 0-39.5-3t-39.5-3q-15 0-15 5 0 2 1 4t1 4q0 17-9 26t-23 9q-38 0-50-4.5t-12-17.5v-6h5l4 1 8-1q7 0 7-3 0-4-6.5-14t-17.5-10q-8 0-13-1h-8q-7 0-14 1l-14 2q-6 0-6 4 0 5 1.5 9.5t1.5 9.5q0 8-7 11t-14 3q-17 0-29-16.5t-12-33.5q0-33 44-39t44-53q0-9-2-19t-7-10h-5q-11 0-15 5.5t-11 5.5q-11 0-11-11 0-21 14-42.5t38-21.5q57 0 70 53t93 53q53 0 100.5-36.5t84-86.5 75-97.5T855 1342q0-12-3-23l-4-19q-2-9-4-14-32 31-79.5 83.5t-88 73.5-102.5 21q-79 0-113-20.5t-34-35.5q0-10 17.5-12.5t43.5-2.5q14 0 28 2.5t28 2.5q32 0 56-10.5t24-25.5q0-3-6-23t-6-40q0-19 13-19 7 0 14.5 5t14.5 10l13 11q6 5 12 5 16 0 31.5-42.5t87-62.5 71.5-60q0-41-45.5-69t-93.5-28q-50 0-117 26.5t-109.5 65T437 1196l1 52q0 7-1.5 18.5T428 1278q-15 0-29-16.5t-23-33.5q-26 10-49.5 15.5T275 1249q-46 0-85-13-2 15-7 26.5t-13 11.5q-9 0-16.5-15.5T143 1228l-3-15q-18-13-35-31.5T88 1141q0-12 3-20l12-32q3-8 3-22 0-28 11-50.5t27.5-36 56-25 76-40 47-39T334 844q0-7-1-13.5t-1-14.5q0-35 29.5-73t31.5-64 61-31 59-66q0-15-10-57.5T492 478l-8-22q-4-12-7.5-24.5T473 409q0-13 7.5-18t16.5-5q21 0 32.5 49t36.5 49q33 0 65.5-97t53.5-97q13 0 17.5 11t4.5 25q0 17-17.5 65.5T660 470l-41 99 17-8q13-6 24-6 5 0 9 4.5t4 9.5q0 8-11 20l-17 18q5 0 10-3 17-2 34.5-3.5T724 599t33 1l33 4q0-2 22-37t24-64v-11q0-2 4.5-70.5T870 353q17 0 21.5 11.5T896 393l-1 38q0 19 6 32.5t26 13.5q26 0 51.5-22.5T1027 405l43-50q19-22 33-22 11 0 15 8.5t4 16.5q0 19-9 31l-21 26q-21 26-44 50l-48 50q-24 25-47 51t-43 55q32 8 67 10t64 2q58 0 99.5-15.5T1188 602q9 0 9 14 0 34-19.5 55.5T1133 707q0 14 17.5 16t37.5 2q19 0 35-8t33-8q6 0 11 2t5 7q0 26-27 47t-27 27q0 9 19.5 15.5t37.5 6.5q26 0 36-4.5t18-4.5 10 2.5 2 7.5q0 22-23.5 40.5t-46 21.5-22.5 13 24 18 34 8q5 0 12 1l13-1q15 0 24 4t9 13q0 11-14.5 21.5T1322 970l-18 7q31 57 45 116t14 122q0 155-132 321.5T1099 1756q0 22 17.5 36.5t37.5 14.5q61 0 167.5-122t189.5-300.5 205.5-285T1984 993q15 0 31 1l31 4q103 17 184.5 101.5T2312 1286q0 86-20 150.5t-59 119.5l-38 54q-18 26-29.5 52t-11.5 58q0 38 17 53.5t37 15.5q28 0 60-20.5t43-50.5l8-28q24-86 79-131.5t133-45.5q12 0 22 4t10 18q0 25-43 46zM323 1468q-7 16-14.5 24.5T293 1501q-11 0-14-14.5t-3-25.5q10-118 95.5-135.5t116-77.5 82-103 127.5-43q21 0 37.5 9.5T751 1137q0 26-44.5 36t-90.5 86-85 89-106 30.5-95 75.5zm723 352h-4q-8 5-39 22t-31 26q0 5 12.5 16.5T997 1916q0 23-17 38.5t-41 15.5q-8 0-17-2.5t-9-9.5q0-6 8-10t8-9q0-8-15-11t-27-3h-20q-26 0-39.5 3t-13.5 11q0 4 5 5t5 9q0 7-9.5 10.5T798 1967q-12 0-30.5-14t-18.5-31q0-24 42.5-31.5T834 1866q0-11-15.5-26.5T793 1824q-8 0-12 6t-12 6q-12 0-12-11 0-27 20-43t38-16 35 9.5 33 9.5q28 0 57.5-29.5T978 1691q0-14-5-23.5t-18-9.5q-8 0-12 5.5t-5 13.5l-3 16q-3 15-23 29.5t-57 14.5q-14 0-26.5-1t-24.5-1q-37 0-65 31t-28 67q0 14 12 20.5t17 6.5q4 0 4 2 0 9-18 19.5t-18 39.5q0 32 28.5 62t64.5 30q18 0 34-10.5t37-10.5q8 0 15 3l13 6q8 5 16.5 7.5t19.5 2.5q39 0 71.5-23t32.5-56q0-12-4.5-22.5t-4.5-21.5q0-16 15.5-31.5t15.5-25.5q0-11-16-11zM676 850l-114 66q9 21 28.5 33.5T632 962q19 0 41-17t22-46q0-25-19-49zm-334 250q17 0 25.5-10.5t8.5-21.5q0-12-10-24.5t-27-12.5q-20 0-37.5 13t-17.5 35q0 14 12 18t27 4zm77.5-175.5Q429 918 437 907l-56-80q-10 9-16 23.5t-6 28.5q0 26 14.5 39t25.5 13 20.5-6.5zm-218.5 113q-12-16.5-27-16.5-13 0-22 12t-9 23q0 17 14 27.5t31 10.5q14 0 19.5-6.5t5.5-16.5q0-17-12-33.5z"},"children":[]}]};exports.u1F409=u1F409;var u1F40A={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2469 1304q0 12-6 16l-14 9q-13 9-13 17 0 12-7.5 20.5t-30.5 8.5q-14 0-26.5-2t-26.5-2q-20 0-33.5 7t-31.5 7q-13 0-19.5-6.5t-6.5-16.5q0-6 1-12t1-11q0-24-9-48.5t-24-24.5q-11 0-12 5l-4 12q-12 108-88 179t-116 71q-15 0-35-18.5t-41.5-27.5-47.5-9q-11 0-24.5 3t-13.5 14q0 4 3.5 6t8.5 3l18 2q40 5 70 32t48 80.5 27 96.5 24 56l15 14q7 7 7 18 0 16-13.5 22t-26.5 35l-6 13q-4 7-14.5 12t-28.5 5l-25-1q-33 0-66 12t-55 12q-34 0-34-31 0-10 2-20t2-20q0-48-15-74.5t-40-26.5q-18 0-52.5 13t-44.5 20-45.5 64-120 108.5T1233 2038t-286 99l-89 44q-70 35-141.5 56.5T576 2259q-90 0-159.5-35.5T347 2127q0-48 61-84t113.5-80 86.5-95q-40 12-80 20t-81 8q-86 0-184-51t-98-107l-1-17q0-63 36.5-100t119.5-37h25q29 0 57.5-18.5T533 1505t170.5-111 80-100 25.5-84.5 72-86.5q32-18 69-18 36 0 93 20t107 20q87 0 118-51t67-51q18 0 36 1.5t38 1.5q33 0 53.5-37.5T1521 971q11 0 23 1t24 1q31 0 54-30.5t44-30.5q14 0 28.5 2t28.5 2q26 0 38.5-8t19.5-18l12-18q5-8 18-8l54 1q8 0 12-3.5t4-14.5q0-55-112.5-87.5T1493 727q-43 0-85.5 1.5T1323 730q-11 0-26-4.5t-15-16.5q0-19 43.5-34.5T1438 646l66-12q66-12 134.5-21t137.5-9q165 0 302 60.5T2286 886l8 21q8 22 18 57.5t10 51.5q0 23-17.5 24t-17.5 12q0 12 42 19.5t66 48.5 32.5 95 21.5 61.5 20 27.5zM303 1733q7-9 7-20 0-12-8.5-21t-18.5-9q-14 0-21.5 10t-7.5 21q0 15 9.5 21.5t20.5 6.5q12 0 19-9zm123.5 51q9.5-9 9.5-21 0-11-8-22t-25-11q-13 0-21 10t-8 22q0 15 9.5 23t20.5 8q13 0 22.5-9zm879.5-139.5q-18-24.5-60-24.5-26 0-54 8.5t-54 22.5q0 28-7 61.5t-22 33.5q-10 0-27.5-16.5T1051 1695q-74 35-148.5 64.5T751 1817l-2 27q-2 25-8.5 41t-18.5 16q-10 0-28-18t-26-30l-11 21q-47 84-131.5 145.5T422 2092t-19 26q0 25 43.5 42t92.5 17q77 0 163.5-34T936 2011v-14q0-9-1-19 0-21 5-37.5t18-16.5 26.5 12.5 25.5 26.5l105-62q66-38 137.5-82t71.5-119q0-31-18-55.5zm12-344q-21-24.5-53-24.5-26 0-44 18.5t-18 49.5 21 56 53 25q27 0 44.5-20.5t17.5-48.5q0-31-21-55.5z"},"children":[]}]};exports.u1F40A=u1F40A;var u1F40B={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2370 1917l48 11q74 17 116.5 36.5t42.5 41.5q0 32-93.5 77.5T2242 2129q-76 0-144-20t-126-63q-158 92-357 144t-397 52q-208 0-402.5-56.5T476 2030q-49 59-119.5 90.5T210 2152q-59 0-121.5-21T26 2078q0-21 41.5-51t106.5-64l69-37q34-18 67-39-88-94-145.5-216.5T94 1415q57-41 139-66.5t167-25.5q124 0 290.5 76.5t259.5 101 206 24.5q29 0 58.5-8t55.5-22l18-11q17-11 26.5-21.5t9.5-19.5q0-6-3.5-9.5t-7.5-3.5q-6 0-12 3l-11 7q-22 13-45 18.5t-46 5.5q-147 0-357-160.5T419 1143q-110 0-195.5 37T90 1286q11-196 127-355.5T526 683t410-88q184 0 341 63.5t402 265 351 201.5q77 0 123.5-60t46.5-140q0-58-16.5-96t-49.5-38q-18 0-37 6l-34 12q-20 6-38 10.5t-40 4.5q-78 0-140.5-48.5T1782 689q0-14 8.5-18.5t19.5-4.5q8 0 15.5 1t13.5 1q18 0 39-12l44-26q24-14 52-26t62-12q51 0 90.5 22.5T2174 637q6 0 8.5-7.5t3.5-19.5l1-24q0-36 29-73t80-47l39-7q61-10 85.5-44t35.5-34q9 0 28.5 39t19.5 103q0 45-28.5 84.5t-96.5 66-68 62.5q0 30 58 85.5t93 170 35 235.5q0 184-76.5 343.5T2211 1862q37 17 77.5 31.5t81.5 23.5zm-1080.5-793q-30.5-30-67.5-30t-59 25-22 62q0 40 28.5 72.5t66.5 32.5q33 0 58.5-26.5t25.5-59.5q0-46-30.5-76z"},"children":[]}]};exports.u1F40B=u1F40B;var u1F40C={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2208 1538.5q-17 87.5-49 171.5t-76.5 155-103 134-99.5 90-54.5 45.5-68 61.5-159 94-185.5 77q-54 18-109.5 28.5T1193 2406q-318 0-544.5-263.5T422 1571q0-117 42.5-215T585 1201q-2-12-5-26.5t-6-27.5l-11-36q-23-61-106-176.5T374 720q0-90 59-156t147-66q74 0 127.5 42.5T782 659q32-64 89.5-101.5T1006 520q61 0 98 25.5t59 68.5q83-52 168.5-76t171.5-24q176 0 346 94t273 293 103 444q0 106-17 193.5zm-1315.5-667Q918 905 952 905q45 0 77.5-40.5T1062 768q0-71-46.5-105T918 673t-51 115q0 50 25.5 83.5zM724 1121q1 14 1 28 18-2 36.5-3t38.5-1h25l6-38q2-19 2-39 0-47-27.5-102.5T770 885l-15 39q-16 40-24 76.5t-8 92.5q0 14 1 28zm-78-270.5q24-31.5 24-76.5 0-56-29.5-94T574 642q-36 0-59.5 31.5T491 752q0 48 27.5 89t70.5 41q33 0 57-31.5zM931.5 1429q-11.5-14-35.5-14-25 0-64 16.5t-65 16.5q-39 0-74-16.5t-53-16.5q-21 0-30.5 14t-9.5 28q0 58 51.5 94.5T765 1588q70 0 124-43t54-81q0-21-11.5-35zm926.5 556q-99 0-193.5-81T1516 1678.5t-54-318.5q0-149 46-260t113-166 129-55q131 0 202.5 129t71.5 304q0 127-50 230t-120 103q-74 0-118-73t-44-169q0-33 5.5-64.5t16.5-57.5l7-16q8-16 21-31t25-15q17 0 17 19 0 7-1 12l-3 10q-8 28-11.5 59t-3.5 60q0 76 19 124t59 48q45 0 69.5-68t24.5-191q0-130-50.5-228T1750 966q-67 0-133.5 113.5T1550 1359q0 222 94 381.5t215 159.5q67 0 129-63.5t107-202 45-289.5q0-221-91.5-399.5t-240.5-263-304-84.5q-83 0-166 26.5T1191 699q2 14 3 28.5t1 28.5q0 59-19 108.5T1078 979t-88.5 100.5T954 1168q96 28 165.5 112t76 284.5 45 298 129 152.5 211.5 55q81 0 146-19.5t131-65.5z"},"children":[]}]};exports.u1F40C=u1F40C;var u1F40D={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2261.5 2147q-89.5 139-231.5 139-70 0-137-38.5t-99.5-103T1761 2008q0-56-5-80.5t-26-24.5q-37 0-72 63.5T1503.5 2144t-261 179-293.5 65q-206 0-356-102.5T443 2012q0-154 134.5-337t247-326T937 1149q0-32-28-54.5t-77-35.5l-58-16q-29-7-54.5-14.5T678 1010q-15 20-32 38t-34 35q-35 35-105.5 116T343 1286q-20 0-51.5-7t-31.5-21q0-16 17-21t37-5q41 0 84-27.5t43-58.5q0-23-48.5-24.5t-96.5-21-48-47.5q0-21 19-21 16 0 49 14t79 14q32-2 66-10.5t63-28.5 41.5-36 33.5-38q-21-25-34.5-52T551 833q0-94 61-196.5t190-169 282-66.5q209 0 350.5 138T1576 879q0 143-66 295.5T1334.5 1466 1125 1697t-100 143q0 28 13 39.5t27 11.5q37 0 104-56t180-192.5 219-214.5 203-78q99 0 181 77.5t112.5 190T2095 1821t23 91 68.5-66.5 63-110 52.5-43.5q23 0 36 56t13 98q0 162-89.5 301zM1206 617q-31 0-52 23.5t-21 55.5q0 35 21.5 58t52.5 23 52.5-25 21.5-56q0-37-23-58t-52-21z"},"children":[]}]};exports.u1F40D=u1F40D;var u1F40E={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2371 1381.5q-70 62.5-176 62.5-45 0-91-13t-85-37q4 9 6 21l20 100q37 198 80 286.5t119.5 221T2321 2210q0 47-34.5 76.5T2207 2316q-62 0-109.5-63T1979 2072.5 1859 1914t-107-41q-56 0-151.5 41.5T1470 2007t-47.5 143.5-30 156.5-29.5 128l-11 58q-11 55-41 86.5t-85 31.5q-62 0-98-36t-36-94q0-52 30-215.5t30-199.5q0-55-32-84.5t-118-56.5l-122 222-24 42-19 32q5-8-55.5 100T636 2429q-54 0-96.5-34.5T497 2316q0-35 17.5-67t34.5-59l78-126q70-114 115.5-230t45.5-216q0-77-29.5-163T680 1296q-18 14-90 75.5T427 1433q-112 0-190.5-64.5T158 1210q0-69 37.5-140T278 932t70.5-144.5 67-140.5T519 536q-7-7-25.5-57.5T475 410q0-36 29.5-74t62.5-38q40 0 70 78t34.5 92 93.5 42.5T899 539l32-26q40-33 90-60t90-27q41 0 57 19t16 44q0 24-12.5 54t-32 47-80.5 40q8 13 39 32t66 32.5 35 31.5q0 19-28 23t-28 14q0 26 60 31t60 36q0 8-8 13.5t-17 8.5l-17 7q-8 4-8 8 0 10 26 21.5t53 18.5l18 6q2 0 23.5 6t21.5 21q0 16-29 27t-29 20q0 7 16.5 12.5t37.5 8.5l40 7q25 4 33.5 9.5t8.5 14.5q0 26-39 44t-79 20q32 22 65.5 30t67.5 8q45 0 92-6.5t97-6.5q48 0 95.5 8t91.5 30q20-48 50.5-66.5t68.5-18.5q77 0 199 63t203 63l42-1q23 0 38.5 12.5t15.5 38.5q0 62-70 124.5zM804.5 952q17.5-24 17.5-53 0-34-23.5-61.5T736 810q-29 0-49.5 25T666 895q0 34 24 57.5t59 23.5q38 0 55.5-24z"},"children":[]}]};exports.u1F40E=u1F40E;var u1F40F={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2465.5 1536q-25.5 47-69.5 70 3 12 8 28.5t5 31.5q0 64-21 113.5t-62 75.5q11 33 44 110t43 133l1 12q0 32-31 54t-68 22q-40 0-81.5-30T2126 2031q-31 14-64.5 20t-66.5 6q-34 0-61-6 0 20-3 41l-4 41q-4 35-36.5 61t-72.5 26q-29 0-52.5-17t-45.5-74q-62 17-131 17-15 0-23-1l1 152q0 97-39 129.5t-81 32.5q-31 0-55.5-14.5t-47-42.5-28.5-50l-11-55-14-85q-29 9-59.5 13t-61.5 4q-129 0-217.5-54.5T812 2111l-56 83q-28 41-70.5 71t-93.5 30q-38 0-69-23.5t-31-62.5q0-13 3.5-28t9.5-30l20-51q17-39 31.5-78.5T588 1940q-3-8-5.5-17.5T579 1902v-6q0-4-1-10v-9l-2-5q-69-38-105.5-101T434 1635q0-62 27-116l-5-8q-22-22-33-47t-15-51q-17 5-35.5 7.5T337 1423q-95 0-161-82.5T110 1120q0-191 143.5-344T594 623q19 0 37.5 2t37.5 5q7-6 10.5-15.5T685 594l4-22q12-67 84.5-123T927 393q32 0 58 9t55 23q44-35 94.5-52t105.5-17q68 0 122.5 24t89.5 68q32-17 68.5-28t83.5-11q94 0 169 36t93 68.5 25 41.5l9-1 17-4q9-2 20-2 110 0 210.5 86T2248 822q0 22-4 48t-13 59q77 27 121 90.5t44 134.5q0 26-7 48.5t-15 39.5q41 11 79 64.5t38 125.5q0 57-25.5 104zM534 986q-22-41-70-41-42 0-79.5 36t-37.5 80q0 19 20.5 26.5T388 1109q0 13-15 23.5t-31 10.5q-21 0-32-21t-11-47q0-61 52-126t96-65q12-35 37-74t60-63l11-7h-1q15-8 25.5-16.5T590 710t-5-6.5-12-1.5h-13l-11 2q-151 11-258 142.5T184 1136q0 87 46.5 143t124.5 56q90 0 145.5-83.5T556 1081q0-54-22-95zm1852 378q-16-33-64.5-47.5T2273 1260q0-14 6-25l12-25q16-33 16-56 0-38-21-74.5t-71-60.5l-12-5q-34-14-50-33.5t-16-38.5q0-9 2-16t4-13l3-7q6-25 10-44.5t4-34.5q0-67-73.5-128.5T1937 637q-11 0-25 4t-30 4q-42 0-69-51t-88-74-119-23q-30 0-56.5 6.5T1502 521l-43 25q-11 6-22 6-30 0-45-33t-58-54-94-21q-64 0-110.5 29t-55 39-27.5 10q-16 0-50.5-20T928 482q-53 0-103.5 38.5T774 605q0 9-3 20 10 0 31.5 13t21.5 28-11.5 20.5T786 693l-29 1q-16 0-69.5 31.5T598 802t-36 82q0 9 32 56t32 141q0 108-42.5 176T481 1375l-1 8q0 29 37 66t37 66q0 20-15.5 49t-15.5 72q0 46 21 86t62 64q2-9 12-22.5t25-13.5q12 0 15 16.5t3 30.5q0 23 2 36t2 32q0 65 50.5 114t120.5 49l15-1q0-8-3.5-18.5T844 1990q0-16 9-16 15 0 55.5 52.5t112 83.5 149.5 31q56 0 103.5-16.5t81.5-45.5l8-8q36-41 59.5-71t41.5-30q10 0 13 9.5t3 20.5q0 8-2.5 18.5t-5.5 20.5l15 4 12 4q26 9 53.5 10.5t55.5 1.5q60 0 114.5-16.5t94.5-49.5l5-5q7-9 28.5-31t31.5-41l6-9q7-10 16.5-18.5t18.5-8.5q8 0 11.5 5t3.5 13q0 18-7 32l-15 31 31 11q17 6 34 6 59 0 103-29t65.5-97.5 38.5-68.5q13 0 15 14t7 28q46-7 78-56.5t32-99.5q0-14-4-23.5t-18-26.5l-5-8q-6-10-6-23 0-19 12.5-32t31.5-20l25-9q21-11 33.5-37t12.5-59q0-34-16-67zm-398 244.5Q1882 1717 1706 1717q-115 0-195.5-43.5T1387 1561q-58 76-154 116t-233 40q-156 0-281-104t-125-259q0-27 5-52t12-50l14-49q8-29 21.5-94.5T695 977l14-24q13-23 26-38t25-15q7 0 12 5.5t10 12.5l10 16q8 13 22 18.5t33 5.5q50 0 77-26.5t43-26.5q11 0 17.5 8t11.5 18l11 22q9 20 30.5 29.5t48.5 9.5q45 0 68-22t39-22q19 0 22.5 38.5t31 60 62.5 21.5q51 0 76-21.5t42-21.5q12 0 21.5 11.5t11.5 27.5q26-101 82.5-144t128.5-43q93 0 192 58t165 165 66 222q0 178-106 286.5zM755 1269h8q31 0 55.5-26.5T843 1174q0-32-18.5-55.5T775 1095t-55 28-24 66 21.5 59 37.5 21zm279 177q-18 0-43 13t-55 13q-42 0-64-32.5t-42-32.5q-12 0-16.5 6.5T809 1430q0 31 34 57t34 42q0 14-3 26.5t-3 26.5q0 22 12.5 31t29.5 9q14 0 14-12 0-8-1-18.5t-1-29.5q0-23 3.5-29.5t14.5-6.5q36 0 73.5-14.5t37.5-42.5q0-23-20-23zm210-255.5q-20-26.5-51-26.5t-54.5 27.5-23.5 67.5q0 35 20 60.5t52 25.5 54.5-28 22.5-65q0-35-20-61.5zm667-114.5q-108-119-236-119-70 0-109.5 46t-39.5 102q0 10 1 15 34-13 66-13 81 0 148 66t67 146q0 53-33.5 89t-88.5 36q-25 0-42.5-13t-17.5-36q0-12 6.5-22t18.5-10 19.5 6 18.5 6q23 0 33-19.5t10-42.5q0-52-42.5-94.5T1592 1176q-83 0-128 62.5t-45 135.5q0 112 76.5 185t205.5 73q138 0 228-80.5t90-228.5q0-128-108-247z"},"children":[]}]};exports.u1F40F=u1F40F;var u1F410={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2281.5 1422q-48.5 55-104.5 61 8 47 11.5 99.5t4.5 105.5l2 107q0 52 2 82.5t2 40.5q0 109-47.5 153.5T2018 2116q-94 0-125-53-19 12-48.5 18.5t-55.5 6.5q-53 0-86.5-18.5T1654 2017q0 24-1 48.5t-1 49.5q0 29 2 62t2 66q0 72-46.5 116.5T1478 2404q-66 0-114.5-33t-48.5-101q0-29 1-58t1-59q0-80-9-138.5t-16-70.5v23q0 29 1.5 64.5t1.5 73.5v60q0 68-26 110.5t-78 52.5l-3 1-40 6q-23 4-48 4-76 0-116.5-45T943 2165v-99q0-73-5.5-147T912 1775l-52 44q-39 33-110.5 59T617 1904q-52 0-86-28.5t-34-76.5q0-20 3-43.5t3-40.5q0-76-33.5-97.5t-80.5-79-76.5-137T283 1231q0-111 49-210.5T471 854q-16-19-25.5-41t-9.5-47q0-57 45-98t118-51.5T701 598l58-18q-6-45-22-95t-45-88l-10-14q-7-10-15.5-25.5T658 332q0-11 9-17t32-6q83 0 154.5 67.5T955 533l13-2q22-2 43.5-3t42.5-1q47 0 92 6 48-106 127-166.5t171-60.5q31 0 55.5 9t24.5 24q0 24-58.5 68T1355 576q106 34 200.5 78t104.5 47l16 6q58 21 94.5 55.5T1807 855q0 53-32 98t-89 70q122 29 216.5 72.5T2056 1207q20 2 44.5 5.5t50.5 3.5q14 0 26-3l23-7q11-3 23-6t27-3q39 0 59.5 30.5t20.5 73.5q0 66-48.5 121zM2113 1292q14 26 25.5 54.5t20.5 60.5q36-6 64.5-37t28.5-69q0-9-2-16t-4-10q-38 13-55 15.5t-44 2.5h-17q-9 0-17-1zm8 636l-1-27q-3-55-5.5-218t-38-276.5-104.5-173-155.5-91T1555 1073q0 8 1 16v16q0 30-3 58-9 6-18 6-25 0-38-22t-17-52l-3-24q-4-17-4-40t-9-45l-4-12q-3-7-3-12 0-15 23-15 24 0 47.5 8.5t50.5 8.5q62 0 106-29.5t44-78.5q0-44-52-63t-140.5-60.5T1408 677l-68-23q-72-23-146.5-35.5T1056 606q-103 0-200 27.5t-126 38T608 696t-93 71q0 16 9.5 29t23.5 21q19-6 43.5-15t39.5-9q14 0 14 16 0 40-82.5 79T421 1018t-59 213q0 105 46.5 194t110 132 63.5 159q0 21-3 42.5t-3 35.5q0 18 11.5 24.5t31.5 6.5q64 0 139.5-36t108-84 36-79 27.5-35l26-4q63-13 119.5-27t115.5-38l35-14q20-8 35-8 8 0 12.5 4t4.5 16q0 15-6 30t-16 28q-93 47-171 62t-111 24q-2 5-4 12t-6 14q29 68 43.5 154.5T1022 2059v45l-1 44q0 69 17 90.5t78 21.5q53 0 76.5-19t23.5-74v-145q0-14-1.5-27.5t-1.5-27.5q0-75 8-106t35-31q28 0 63.5 23.5t56 93.5 20.5 211q0 26-1 51.5t-1 51.5q0 38 24 51t59 13q45 0 72.5-16t27.5-66q0-33-2-66.5t-2-66.5q0-34 2-68l3-67 5-70q4-71 26-115t73-44q18 0 22.5 8.5t8.5 31.5 4 56q0 20 1 26v21q0 13-1 29 0 35 6.5 62.5t46.5 27.5q60 0 77.5-8t17.5-52q0-23 1.5-46t1.5-46l-1-62q0-7 2-15 39 2 60 39.5t21 111.5q0 20 3 38l7 51q0 8 7.5 11t27.5 6h13q7 0 18 1 53 0 74-27.5t21-81.5zM701 1376.5q-9 7.5-23 7.5-30 0-59-19.5t-34-19.5q-13 0-33 20t-40 20q-8 0-18-7.5t-10-23.5q0-11 8-19t18-16l20-14q11-8 16.5-21.5t5.5-36.5q-37-6-58-28t-21-47q0-34 25.5-52.5T576 1101q51 0 80.5 19.5T686 1171q0 29-20 49t-58 28q0 33 12 44.5t51 26.5 39 37q0 13-9 20.5zm458-462q24 27.5 24 67.5 0 38-23.5 63.5T1101 1071t-58.5-27-23.5-60q0-39 22-68t59-29q35 0 59 27.5z"},"children":[]}]};exports.u1F410=u1F410;var u1F411={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2401.5 1555q-26.5 46-69.5 67 6 17 9.5 31.5t3.5 34.5q0 38-14 81t-43 81v19l18 99q12 68 25 119t13 97q0 34-27.5 55.5T2250 2261q-51 0-95-50t-89-169q-31 20-68 31t-76 11l-14-1q-4 0-6-2-20 116-50 148.5t-79 32.5q-70 0-85.5-56t-16.5-60q-31 8-63.5 13t-70.5 5q-20 0-41-2l-42-4q-2 8-2 17v19q0 28 1.5 57t1.5 59q0 101-39.5 133t-79.5 32q-42 0-81-33t-52-82l-21-121q-17 3-36 5t-38 2q-60 0-118.5-15.5T882 2187q-40 94-103 152t-128 58q-38 0-69-23.5t-31-64.5q0-13 3.5-28t9.5-29l20-50q11-29 24-57t21-57q-51-34-81.5-85.5T515 1888q-69-37-105.5-100.5T373 1653q0-30 6.5-60t20.5-57l-5-7q-22-26-37-56t-22-62q-78-30-121.5-104T171 1135q0-121 72.5-230.5T433 757q33-49 82.5-82.5T622 633q0-30 23-83.5t84-96T866 411q31 0 57.5 9t54.5 23q41-33 92.5-51t107.5-18q69 0 123 23.5t88 68.5q33-18 70-28t85-10q101 0 176 39.5T1828 573l9-1 18-4q9-2 19-2 109 0 210 86t101 188q0 42-16 107l5 3q70 35 114 89t44 127q0 28-6.5 51.5T2311 1258q63 34 90 84t27 108q0 59-26.5 105zm-109.5-11q21-10 34.5-34t13.5-62q0-35-17-67t-65-47.5-48-54.5q0-15 5.5-27t10.5-19l3-6q15-33 15-57 0-36-20.5-72t-71.5-62l-12-4q-34-14-50-34t-16-39q0-5 12-47.5t12-65.5q0-68-75-129.5T1874 655q-10 0-23.5 3.5T1819 662q-46 0-72.5-51.5t-88.5-73-115-21.5q-42 0-71.5 11t-64.5 31l-11 7q-4 3-9.5 4t-10.5 1q-31 0-46-33t-58.5-54-93.5-21q-60 0-105 25.5t-57 40-32 14.5q-5 0-10-2l-9-4q-32-17-54.5-26.5T865 500q-51 0-103 38.5T710 643q9 0 31 14.5t22 27.5q0 14-16 20t-30 6q-92 8-157 74.5T495 937q0 29 9 59t32 59q22-12 48-12t52 15l-5-14q-2-5-2-15 0-32 9.5-55t24.5-23q9 0 13.5 7t7.5 16l5 18q5 20 23.5 30.5T763 1033q35 0 73.5-14.5T887 991l14-16q7-7 14.5-12.5T932 957t14.5 8.5T956 985l7 22q7 23 34.5 35.5t57.5 12.5q31 0 67.5-13.5t52.5-27.5 38-14q6 0 13 5.5t7 18.5q0 8-3.5 16.5t-3.5 17.5q0 31 17 43t43 12q64 0 117-31t63-31q16 0 16 19 0 12-4 21h14q11 0 27.5 3.5t32.5 14.5q24-54 78-89t115-35q104 0 177.5 99.5T1996 1307q0 147-104 241.5t-249 94.5q-81 0-157.5-32.5T1367 1521q-67 89-160.5 140T993 1712q-162 0-274.5-80.5T606 1374q-35 29-78 43t-92 14q15 30 36 52.5t21 47.5q0 19-15.5 48.5T462 1654t21 84 61 65q3-10 13.5-23.5T582 1766q7 0 11.5 7.5t6.5 24.5v15q0 23 1.5 37t1.5 33q0 65 50.5 113t121.5 48q9 0 14-1-3-3-5-16t-2-20q0-16 10-17 15 0 57.5 55.5T963 2129t145 28q56 0 103.5-16t81.5-46l7-8q14-14 26-29l25-29q11-12 22-27t29-15q10 0 13 9.5t3 20.5q0 16-8 40 7 0 14 3l13 4q24 8 50.5 9.5t52.5 1.5q63 0 120-16.5t95-48.5l6-5q13-22 29.5-37t36-43.5 35.5-28.5q14 3 14 18 0 18-6.5 33t-15.5 30q13 8 31 13t34 5q53 0 92.5-24t47-42.5 22.5-44.5q0-6 15.5-44.5t28.5-38.5q11 0 16.5 14t5.5 27q47-11 78-59t31-98q0-15-4.5-23.5T2236 1635l-6-7q-6-10-6-22 0-22 17.5-37t42.5-22zM384 883q-57 45-90.5 111.5T260 1139q0 91 50.5 147.5T444 1343q67 0 116.5-45t49.5-113q0-18-9-37t-17-19q-6 0-30 27.5t-62 27.5q-26 0-43-19t-17-45q0-20 11-36-28-35-41.5-88.5T388 896l1-19zm567 767q-9-14-10.5-33t-1.5-40q0-22 24.5-23t62-15.5 37.5-43.5q0-25-22-25-18 0-42 16t-56 16q-40 0-63.5-29.5T836 1443q-11 0-15 6.5t-4 15.5q0 17 10 31.5t29 28.5l19 15 10 7 4 10v8q0 11-1.5 22t-1.5 22q0 21 9 32.5t38 11.5zm-229-358q18 24 49 24 33 0 59-28.5t26-70.5q0-32-18.5-56t-49.5-24q-33 0-58.5 31t-25.5 68q0 32 18 56zm417 51q21 27 54 27 30 0 51.5-25t21.5-62q0-39-22-65.5t-55-26.5q-30 0-50.5 25t-20.5 61q0 39 21 66zm389-86q-2-78-43-78-46 0-71 43t-25 114q0 93 74.5 156t179.5 63q110 0 187-71t77-177q0-87-49-160t-113-73q-45 0-81 31t-40 76q0 23 21.5 50.5t21.5 49.5q0 24-19.5 39t-50.5 15q-67 0-69-78z"},"children":[]}]};exports.u1F411=u1F411;var u1F412={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2283 1922q-28 47-73 78.5t-91.5 49.5-102 46.5-97.5 28.5q-44 0-81.5-23.5T1800 2041q0-15 8.5-28t25.5-13q5 0 15.5 1t23.5 1q17 0 30.5-3t13.5-12q0-5-10-17t-26-12l-22 1q-16 0-16-11 0-24 27.5-36.5t69.5-12.5q14 0 33.5 1.5t39.5 1.5q47 0 66.5-14.5t19.5-40.5q0-51-41.5-82t-109.5-31q-49 0-94.5 18.5t-66 71.5-20.5 110q0 51 20.5 118.5T1808 2163q0 69-43 127.5t-43 86.5q0 21 27.5 40t27.5 42q0 26-26 40t-55 14q-89 0-124-51t-35-99q0-29 20-69.5t20-74.5q0-45-38.5-69.5T1437 2125q-68 0-109.5 27.5T1286 2240q0 21 5 40l21 76q5 19 5 39 0 38-45 76.5t-83 38.5q-43 0-73.5-18t-30.5-48q0-22 30-43t30-35q0-25-51-71t-51-88q0-6 1-11v-7q0-4-1-7-120 38-188 47.5t-127 9.5q-174 0-284.5-67.5T333 1982q0-90 57.5-154.5T522 1763q56 0 91 36t35 100q0 40-11.5 60.5T603 1980q-21 0-29-15t-8-31v-19q0-25-14-35.5t-34-10.5q-37 0-59.5 29.5T436 1973q0 76 81.5 118.5T721 2134q109 0 211.5-35t152.5-85v-15q-2-47-15-106t-36-82q-370-46-558-201t-188-425q0-126 47-245t141.5-260.5 112.5-224 96-137T856 264q52 0 120.5 30t68.5 84q0 32-27 56.5T962 459q-26 0-54-9t-54-9q-24 0-48 18t-24 40q0 12 11 19.5t26 7.5q13 0 25-5t25-5q11 0 22.5 8t11.5 25q0 38-85 84.5T670 759 563 907t-64.5 138-20.5 140q0 141 78.5 235T817 1541q-23-29-39.5-61.5T748 1412l-19-1q-61-3-123.5-60T543 1173q0-94 51-158t139-64q42-166 142-296.5t243-192 303-61.5q157 0 300 61t242.5 189T2106 940q93 0 145 62t52 161q0 94-42 154.5t-130 81.5q-16 4-24 4-3 0-5-1h-4q-16 44-38 85.5t-53 77.5q21-3 43-3 93 0 177 74.5t84 174.5q0 64-28 111zm-153-827q2 17 2 32v31q0 38-2.5 75.5t-8.5 73.5q43 0 70.5-39.5T2219 1162q0-48-25-78t-69-39q2 13 3 25zM723 1318q-7-38-10-78.5t-3-81.5q0-26 1-50t4-50q-45 12-66 42t-21 74q0 56 25 98.5t70 45.5zm824 522.5q-37-59.5-125-59.5-65 0-106.5 42.5T1274 1936q0 50 26.5 76.5t80.5 26.5q41 0 106-6.5t81-25.5 16-56q0-51-37-110.5zm363-509q-4-18.5-9-37.5l-11-36q-4-15-7-31.5t-3-33.5v-30q0-46 13-106.5t13-97.5q0-80-56-155t-162-75q-52 0-132 46.5T1425 822q-54 0-136.5-46.5T1154 729q-72 0-112 25.5T968 836t-34 122q0 24 5 47l9 48q5 24 9.5 50.5t4.5 55.5q0 26-2.5 50t-9.5 49l-10 36q-5 19-8.5 37.5T928 1369q0 134 139 222.5t343 88.5q231 0 367.5-90.5T1914 1369q0-19-4-37.5zm-544.5-153q18.5-11.5 62.5-11.5 32 0 49.5 10t17.5 27q0 21-19.5 38.5T1421 1260q-29 0-51.5-15.5T1347 1206q0-16 18.5-27.5zm120 360.5q-25.5 34-66.5 34t-65-37-24-93q0-64 28-102t65-38q43 0 65.5 42.5T1511 1451q0 54-25.5 88zm222.5-408.5q-26 31.5-63 31.5-36 0-61.5-32t-25.5-75 25.5-75 61.5-32q37 0 63 31.5t26 75.5-26 75.5zm-450 0q-26 31.5-62 31.5t-62.5-31.5-26.5-75.5 26.5-75.5T1196 948t62 31.5 26 75.5-26 75.5z"},"children":[]}]};exports.u1F412=u1F412;var u1F413={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2295 1280l-4 4 2 16v17q0 48-29 89l-1 2q6 15 10 32.5t4 36.5q0 15-3 30t-11 29l-5 8q4 9 8 28.5t4 37.5q0 11-1 21l-5 34q-12 105-101 167.5t-145.5 147-185.5 153-313 99.5q11 36 19.5 74t8.5 74q0 87-73.5 140.5T1337 2574q-23 0-39-15t-16-38q0-35 70.5-64.5t70.5-93.5q0-30-12-59t-19-59q-45 3-92 3v54q-2 97-20.5 153.5t-81.5 89-127 32.5q-55 0-71-13.5t-16-45.5q0-30 21.5-46.5t73-22.5 72-39.5 22.5-96.5l2-70q-318-28-495-202t-202-494q-65-24-105-86t-40-138q0-63 25-122.5t71-103.5q-8-3-14.5-6.5T400 1084l-28-9q-44-13-76-39t-32-66q0-49 57.5-94t138-66T563 789q4-15 9.5-28.5T582 733q-59-56-83.5-102T474 532q0-51 23-109t93-78l28-8q32-9 90.5-47T826 252q55 0 88 19t65 19q20 0 39-3t41-3q40 0 78 21t54.5 44 37.5 35l54 30q39 22 56 54.5t17 94.5q0 75-18 108t-22.5 49-12.5 31q57 83 129.5 250.5t144.5 247 104 79.5q10-10 16.5-49t44.5-110.5 83-108.5 101-54.5 125-17.5q110 0 197.5 50.5T2336 1173q0 52-41 107zm-69-63q17-28 17-46 0-35-64-62.5t-128-27.5q-44 0-83.5 9t-78.5 38-69.5 91.5-33.5 89-19 58.5q8 0 14 1l14 2q103 11 136 37.5t33 73.5q0 17-5.5 33t-5.5 30q0 4 13.5 23.5t13.5 53.5q0 6-1 12l-2 14q-2 7-7 13l-10 14q-5 7-8.5 13t-3.5 12q0 10 4 16.5t4 21.5q0 45-47.5 90t-55.5 74-77 57-179 28q-169 0-281-64t-156.5-164-44.5-140q0-9 2.5-15t9.5-6l6 1q5 1 19 48.5t61 112 136 105 210 40.5q127 0 173.5-20t46.5-41q0-7-10.5-13.5T1758 1814q0-16 60-30.5t60-55.5q0-19-27.5-23.5T1823 1685q0-7 11-13l22-13q12-7 22.5-18t10.5-29q0-24-33.5-30t-33.5-20q0-9 9-13l20-7q10-4 19.5-11.5t9.5-24.5q0-18-8.5-35t-38-25.5-102.5-13-104.5-20.5-37.5-24l-7-8q-126-90-227.5-330t-188-320T957 643q-47 0-83 9.5T800 688q84 24 131.5 75.5T979 882q0 74-51.5 140t-112 91.5T753 1265l-1 46q0 99-48 165.5T571 1556q31 310 215.5 455t509.5 145q216 0 399-65.5t254.5-173T2094 1766t79-111l2-18q2-7 2-14v-13q0-8-6.5-25t-6.5-47q0-16 5.5-27.5t11.5-18.5l3-4 1-11q0-24-15-51l-16-9-21-13q-11-6-18.5-13.5t-7.5-15.5q0-10 11.5-15t25.5-5q9 0 19 1.5t19 3.5l6-5q13-17 13-37 0-36-45.5-47.5T2110 1241t16-24 36-6q18 0 28 3l24 9 6-4zM359 969q6 6 17 10l22 8 35 12q16 4 48 19.5t57 15.5q13 0 16-13.5t3-28.5l-1-49q0-26-4-61-3 0-14 2-59 12-112.5 39T359 969zm351-34q17 20 41 20 23 0 40-20t17-50q0-29-17-49t-40-20q-24 0-41 20t-17 49q0 30 17 50z"},"children":[]}]};exports.u1F413=u1F413;var u1F414={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2109 1346q16 32 24.5 60t8.5 56q0 45-21 79t-22 39q10 26 10 66 0 14-3 25t-6 20l-7 17q-3 9-3 19 0 95-74.5 215.5t-204 190.5-291.5 92q11 46 26 93t15 95q0 59-31.5 109t-79.5 50q-21 0-35.5-12t-14.5-32q0-33 21-67t21-67q0-38-16.5-77.5T1396 2239q-20 2-38 2h-37q2 14 3 29t1 31q0 146-60 206t-130 60q-29 0-50.5-16.5T1063 2509q0-16 12-36.5t36-22 55.5-27.5 31.5-186q-321-25-495.5-217.5T528 1473q0-51 3.5-100t9.5-96q-35-13-53-51t-18-86q-15-3-77-27.5t-62-85.5q0-54 78-101t158-62l19-3q7 0 7-14 0-6-3-15l-7-20q-4-10-7-21t-3-22q0-61 25-97t55.5-44 54.5-32.5 56-24.5q13 0 25 4.5t20 4.5q20 0 38-6t36-6q12 0 21 5l15 7h-1q16 9 33 23t17 23l-1 3q103 0 175.5 32t128 97 99 153 73.5 159.5 87 103.5 115 32q72 0 118.5-42t108.5-61.5 119-19.5q84 0 127.5 41.5t43.5 91.5q0 35-16 68.5t-37 61.5zM752 994.5q16 19.5 39 19.5t39-19.5 16-47.5-16-47-39-19-39 19-16 47 16 47.5zm-144.5 22Q605 995 605 942q-49 0-114.5 34.5T416 1027q14 11 37.5 16.5t66.5 26 71 20.5q6 0 12.5-11.5t6.5-34.5q0-6-2.5-27.5zm1413 301.5q5.5-10 17.5-24l3-3q23-32 28.5-50t5.5-28q0-11-20-26t-67-15q-51 0-98.5 17.5T1813 1236q72 0 97 32.5t25 73.5q0 16-5 28t-5 24q0 6 17 21.5t17 54.5q0 36-23 73t-23 42q0 6 7 19.5t7 28.5q0 33-21.5 60.5T1869 1729t-15 22l1 14q0 47-82 92.5t-209 45.5q-124 0-227-42.5t-172-126-69-122.5q0-21 11-21h7q3 0 51 62t160.5 115.5T1566 1822q87 0 151.5-30.5t64.5-64.5q0-16-14.5-21t-14.5-10q0-6 40-26.5t40-54.5q0-17-19.5-25.5T1794 1575l3-9q23-6 42-30.5t19-48.5q0-34-33.5-37.5T1791 1435q0-6 6.5-7.5t29-23 22.5-48.5q0-19-16.5-30.5T1784 1314q-50 0-150-15t-165-59.5-96-113.5l-12-26-45-97q-35-79-80-145.5T1128 754t-156-37q-77 0-124.5 35T802 786q58 8 95.5 55.5T935 949q0 58-37 112.5T785 1125l-25 4q-48 8-54 40.5t-26.5 65.5-50.5 40q-6 47-10 97t-4 101q0 344 177.5 512t516.5 168q193 0 353-51t250-165 90-213q0-15 2-27.5t10-27.5l6-13q2-6 2-9 0-16-4.5-33.5t-4.5-36.5q0-32 21-59t21-54q0-32-20-68.5t-20-52.5q0-15 5.5-25z"},"children":[]}]};exports.u1F414=u1F414;var u1F415={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M318 535.5Q419 431 544 431q105 0 167 52.5T773 613q0 49-29.5 81.5T672 750l-50 27q-98 53-126 130t-58.5 116.5T368 1063q-62 0-106.5-79.5T217 805q0-165 101-269.5zm1427.5 6Q1841 652 1841 804q0 93-44 176t-107 83q-59 0-97.5-89T1532 852.5 1397.5 758 1285 609q0-74 64.5-126t159.5-52q141 0 236.5 110.5zm602 747.5q-70.5 65-173.5 65-20 0-40.5-2.5t-40.5-8.5q31 100 40.5 205t9.5 204q0 37-2.5 73.5t-2.5 73.5q0 20 1.5 40t1.5 39q0 92-63.5 116t-132.5 24q-66 0-109.5-26t-43.5-88q0-44-5-89t-32-45l-24 1-35-1q-45 0-55 23t-10 92q0 23 3 45t5 44l8 128q0 21 3.5 41t3.5 39q0 66-74 92.5t-164 26.5q-76 0-117.5-24.5T1257 2303q0-35 5-69.5t5-69.5v-20l-10-95-83-76q-20 0-39.5 3t-38.5 3q-4 0-7-1h-6q-19 0-25.5 13t-6.5 33q0 11 1 22t1 19q0 38-1.5 76.5t-1.5 76.5q0 110-52 154.5T854 2417q-59 0-114-19.5t-69.5-51.5-14.5-84q0-26 6-90t6-240q0-24 3-35.5t14-11.5q13 0 23.5 4.5t21.5 4.5q9 0 23-7t14-19q0-7-4-10t-15.5-7.5-77-34-152.5-126T383 1449t-48-316q16 3 33 3 69 0 116-55t71-128.5T662.5 838 796 742.5 846 611q0-34-10-66t-27-59l42-10q38-8 85.5-14t88.5-6q47 0 95.5 6.5T1209 480l38 10q-34 57-34 124 0 64 37 115t119.5 97 100.5 65 42.5 86 69 113 108.5 46q23 0 51-13.5t49-49.5 37-36q11 0 22 5l20 10q38 20 68 43.5t56 53.5q23 5 45 8t43 3q63 0 120-20t120-50l27-14q15-7 30-7 19 0 29.5 15t10.5 42q0 98-70.5 163zm-1601-74.5Q721 1185 686 1185q-36 0-62.5 29t-26.5 71 26.5 71.5T685 1386q36 0 61.5-30t25.5-70q0-42-25.5-71.5zm451 470.5q-7.5-8-18.5-8-10 0-24.5 9.5t-37.5 9.5q-26 0-42.5-10.5T1058 1655v-14q60-5 89.5-29.5t29.5-69.5-46-74.5-107-29.5-103.5 30.5T878 1552q0 37 30.5 62.5T998 1643v7q0 26-17 35t-37 9q-12 0-20.5-2.5T907 1686l-13-6q-7-2-16-2-11 0-19 7.5t-8 19.5q0 19 25 34.5t59 15.5q31 0 62.5-11t33.5-11q3 0 11 4l4 2q14 7 32 11t36 4q32 0 61.5-14.5t29.5-35.5q0-11-7.5-19zm236.5-470.5q-26-29.5-61-29.5t-61.5 29.5-26.5 71.5q0 40 25.5 70t61.5 30q35 0 61.5-29.5t26.5-71.5q0-41-26-70.5z"},"children":[]}]};exports.u1F415=u1F415;var u1F416={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2454 1277q-31 17-67 17-10 0-14-1-23 23-54 35t-65 13l2 34v35q0 78-11 164.5t-55 210.5-57.5 207-13.5 119q0 57-23.5 77t-86.5 20q-102 0-112-46.5t-28-93.5-70-47q-45 0-43 57.5t-22 77.5-78 20l-32-1q-47 0-57-10t-16-36l-7-28q-5-18-15-33t-36-15q-28 0-41.5 26.5T1438 2162q0 26 1 49.5t1 38.5q0 27-37.5 43.5T1323 2310q-51 0-86.5-12.5t-37-63.5-21-103-51-73.5-78.5-21.5h-24q-57 3-65 49.5t-11 95.5-81 49q-129 0-133-41.5t-10-71.5l-8-37q-8-42-18-84-223-54-347-182t-124-312q0-163 89-320t190-277q5 2 12 3t15 1q40 0 75-53.5t73-64.5 77.5-41.5T799 684v-7q78-32 157.5-42.5T1123 624h29q14 0 29 1-17 34-17 68 0 50 31 88t78.5 52.5T1343 876l27 35q14 18 30 30.5t39 12.5 48.5-17.5T1535 892l22-28q18-24 28.5-47t10.5-52q0-14-4-41t-16-49q60 14 117 32t114 47l105 53q117 60 204.5 176.5T2237 1234l10 1q4 0 9 1 7 0 8-1-2-6-8.5-13t-6.5-24q0-33 26-58.5t61-25.5q38 0 64 23t26 60q0 10-2.5 19t-6.5 13q2 2 6 2l7 1q12 0 23-5t22-5q6 0 8 4.5t2 7.5q0 26-31 43zM837 1396.5q-74-56.5-172-56.5-116 0-177 62.5T427 1545q0 73 72.5 114t184.5 41q111 0 169-35t58-121q0-91-74-147.5zm649.5-756Q1540 685 1540 754q0 46-29 93.5t-68 47.5q-28 0-53.5-40t-96-76.5T1223 693q0-39 29-68t91-29q90 0 143.5 44.5zM724 700q-12 11-33 23l-18 10q-18 12-48.5 31T580 809l-12 21q-6 10-14 17t-18 7q-26 0-47-32t-21-53q0-58 60.5-102.5T653 622q35 0 59 14t24 39q0 14-12 25zm424 515q-26-32-60-32-33 0-55.5 27t-22.5 67q0 43 26 73.5t60 30.5q31 0 54.5-26.5t23.5-66.5q0-41-26-73zm-673.5 106q18.5 24 50.5 24 34 0 63-31t29-72q0-31-19.5-55t-51.5-24q-35 0-62.5 32t-27.5 71q0 31 18.5 55zM624 1523q0 37-9.5 62t-32.5 25-30.5-23-7.5-57q0-40 8.5-68.5T586 1433q22 0 30 21.5t8 53.5v15zm131 93q-21 0-28.5-21.5T719 1542q0-42 8-72.5t34-30.5q23 0 30.5 24t7.5 58q0 41-9.5 68t-34.5 27zm1604-402q2-4 3.5-8.5t1.5-10.5q0-8-5.5-15t-14.5-7q-8 0-14 6t-6 14q0 11 10 16t25 5z"},"children":[]}]};exports.u1F416=u1F416;var u1F417={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2471.5 1328.5Q2451 1347 2418 1347q-17 0-33-6t-30-6q-37 0-86 65t-167 65l-61-1q-48 0-74-38.5t-26-101.5q0-28 4-54.5t9-49.5q0-3 3-10l5-15q3-8 5-17t2-16q0-6-2.5-10.5t-8.5-4.5q-18 0-49.5 71.5T1877 1358q0 49 14 101t41 77q-6 8-19 21l-231 230-24 26q-85 92-113 255t-60 224-192 61q-80 0-114-15.5t-34-46.5q0-21 6.5-44.5t15.5-48.5l17-51q3-11 16.5-79.5t13.5-83.5q0-49-97.5-56T922 1910l-31 82q-15 43-48 108t-75.5 82-98.5 17q-80 0-131.5-18t-51.5-49q0-9 24-67.5t49-114.5l29-65 9-28q-97-19-163.5-42.5t-148-62-130-106T107 1503q0-63 28-113.5t73.5-79.5 96.5-37 83.5-15.5 101.5-77 139-195T734 809q-4-8-31.5-58T675 662q0-31 22.5-47t54.5-16q34 0 57 19.5t40 50.5q82-92 197.5-143.5T1280 474q52 0 107 7.5t142 29 207.5 60.5 163.5 50l55 13 33 10q17 5 34 9t34 4q26 0 53.5-8t48.5-28l22-20q11-10 23-17.5t26-7.5 17.5 13.5 3.5 28.5q0 38-25.5 73t-81.5 71q39 50 59.5 116t20.5 145q0 53 11.5 90.5t56.5 38.5l28 1q51 2 112 51.5t61 82.5q0 23-20.5 41.5zm-1922.5 96q-99-61.5-193-61.5-66 0-109.5 38.5T203 1503q0 84 85 141.5t187 57.5q79 0 126-37t47-97q0-82-99-143.5zm59.5-186Q625 1261 655 1261q33 0 59.5-28.5T741 1165q0-29-17-51.5t-47-22.5q-33 0-59 29.5t-26 66.5q0 29 16.5 51.5zm435.5 441q-15-17.5-53-43t-70-66.5-39-62-24-21q-20 3-27.5 44.5T823 1613q0 82 31 151t91 69q47 0 80.5-32t33.5-80q0-24-15-41.5zm130-477q-25-29.5-57-29.5-33 0-53 25.5t-20 60.5q0 43 26 71t58 28q30 0 50.5-25t20.5-60q0-41-25-70.5zM1623 949q0-7 1-13 0-50-33-86t-87-36q-29 0-59.5 10t-53.5 27l-12 9q-12 10-25 22.5t-13 20.5q0 6 7 11.5t11 5.5q9 0 39.5-22t68.5-22q36 0 60.5 17t24.5 50q0 24-16.5 42t-36.5 32l-37 27q-17 12-17 25 0 10 17 10 53 0 101.5-34t57.5-83zM385.5 1443q9.5 16 9.5 33 0 38-24.5 72.5T321 1583q-10 0-22.5-11t-12.5-36q0-30 22.5-69.5T359 1427q17 0 26.5 16zm143.5 58.5q12 14.5 12 42.5 0 35-17.5 63.5T481 1636q-24 0-32.5-16t-8.5-36q0-34 17-65.5t44-31.5q16 0 28 14.5z"},"children":[]}]};exports.u1F417=u1F417;var u1F418={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1096 1718q-9 73-76 167.5t-227 153-352 58.5q-89 0-124.5-9.5T261 2050t-20-87q0-104 57.5-109.5T422 1848q198 0 279-58.5t81-123.5q0-55-64-84.5T600 1509t-85-106.5-32.5-138.5-30.5-75q-10 0-21 4t-21 9l-20 10q-19 10-42.5 14.5T297 1231q-66 0-111-31.5t-45-87.5q0-29 13.5-49t44-113 38-137.5 18.5-93 34.5-82T348 577t70-40 75-13q36 0 75 9.5t99 33.5l56 23q15 6 28 6 21 0 58.5-17.5t99-35T1037 526q103 0 170 41t118 41q44 0 117.5-26.5T1560 555q99 0 154 61t82 165 79.5 190.5T1928 1123q0 71-58 120.5t-134 49.5q-67 0-112-22t-66-22q-20 0-32 10t-17 28l-6 24q-17 76-62 141t-113 101.5-103 36.5q-61 0-126.5-46.5T1033 1490q-7-7-16-7-8 0-13 6.5t-5 14.5q0 61 23 115.5t74 98.5zm1317.5-37q-44.5 33-99.5 33-57 0-85.5-25.5T2199 1663q-3 0-3 5 0 4 1 7.5t1 5.5q-2 14-2 26v26q0 48 2 93.5t2 92.5q0 139-45.5 178.5T2024 2137q-75 0-119-22t-44-108l1-78q0-63-29-108.5t-77-47.5q-16 0-74.5 26.5T1563 1827t-77 38-17 106q0 67 6.5 127.5t6.5 123.5q0 50-42 74.5t-138 24.5q-75 0-116-24t-46-67l-2-25q0-12-1-24 0-26 1.5-51.5t1.5-51.5q0-61-12-101t-33-61q21-30 42-70.5t79.5-105T1333 1642t80.5-50 57-52.5 62-88T1577 1336q33 18 77.5 26.5t81.5 8.5q114 0 192-75.5t78-172.5q0-83-52.5-173t-85-197-79.5-176q99 12 188.5 72t149 141.5T2219 954t33 218q0 62-5.5 118.5T2241 1412q0 89 28 141t79 52q15 0 25.5-6.5t19.5-14.5l18-14q8-6 18-6 17 0 23 11t6 24q0 49-44.5 82zM915 2070q2 29 4.5 57.5t2.5 56.5q0 54-43.5 82.5T754 2295q-57 0-108-19t-62-36-11-73q101-11 185.5-34.5T915 2070zm822-208q0 24 3 47.5t3 47.5q0 5-1 11.5t-1 17.5q0 58-13 77.5t-47 33-78 13.5q-14 0-27-1t-25-1q-3-31-3-57l-1-48q0-23 2-51t6-47q60 0 118.5-18t63.5-25zm-1200-96q-5-42-7-83.5t-2-86.5l1-43q57 53 115.5 79t58.5 35q0 21-40.5 55.5T537 1766zm772.5-540.5Q1287 1201 1259 1201t-45 22-17 52q0 37 22 62.5t51 25.5q28 0 45-23.5t17-51.5q0-38-22.5-62.5zm-571-16.5q-17.5-21-45.5-21t-49.5 24.5T622 1274q0 31 17.5 52.5T685 1348q30 0 50.5-26.5T756 1260q0-30-17.5-51z"},"children":[]}]};exports.u1F418=u1F418;var u1F419={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2320.5 2028.5q13.5 9.5 13.5 27.5 0 9-8 25.5t-17 28.5l-10 15q-48 59-128.5 94.5T2008 2255q-99 0-186.5-53t-111.5-95-50-42q-14 0-18.5 11t-4.5 25q0 48 40.5 118t108 115 67.5 84q0 34-31.5 56.5T1762 2497q-54 0-130.5-61.5t-90-76-85-118T1332 2138q-24 0-49 13.5t-48 37.5l-27 29q-87 97-197 163l-53 30q-47 27-95 44.5t-88 17.5q-36 0-58.5-15.5T694 2412q0-61 90.5-120.5T892 2217l27-22q23-18 38.5-40.5T973 2107q0-23-13-33.5t-31-10.5q-27 0-123.5 50T633 2163q-105 0-184.5-82.5T298 1946t-71-87q0-23 13.5-35t37.5-12q46 0 95.5 29.5t95.5 70 119 40.5q48 0 85.5-18.5T748 1875q-212-73-347-256.5T266 1216q0-94 19.5-206T369 783t64-176q0-20-6.5-43t-6.5-41 18.5-34 51.5-16q47 0 71.5 55T586 693q0 14-2 24l-5 21q-7 47-19 93l-24 93q-12 47-20.5 94t-8.5 96q0 59 15 110.5t41 102.5l28 62q25 58 52 93.5t50 35.5q17 0 24.5-12t12.5-26q-28-77-42-151t-14-154q0-194 83.5-368.5T984 534t315-98q270 0 463.5 173.5T1956 1095q0 91-16.5 181t-47.5 169q0 5-1 10.5t-1 10.5q0 17 5.5 27.5t22.5 10.5q53 0 133.5-130.5T2132 1110q0-128-60.5-284.5T2011 592q0-64 30.5-108t80.5-44q32 0 49 19t17 51q0 16-9.5 35.5T2169 594q0 56 57 123t102 199 45 300q0 237-158 430t-399 251q68 82 139.5 125t141.5 43q50 0 114.5-23t80.5-23q15 0 28.5 9.5zM963 1274.5q25 31.5 60 31.5 39 0 68.5-35t29.5-82q0-43-25.5-73.5T1034 1085q-39 0-67.5 34.5T938 1199q0 44 25 75.5zm263 188.5q-58-63-137-63-67 0-113 53t-46 122q0 79 57.5 129.5T1123 1755q66 0 113.5-42.5T1284 1606q0-80-58-143zm293-298.5q-26-32.5-64-32.5t-64.5 32-26.5 77q0 49 26 80t66 31q34 0 61.5-32t27.5-79q0-44-26-76.5zm-342.5 491Q1152 1678 1116 1678q-42 0-73.5-30t-31.5-74q0-41 25.5-69t60.5-28q43 0 73.5 33t30.5 75q0 48-24.5 70.5z"},"children":[]}]};exports.u1F419=u1F419;var u1F41A={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2195 1355q-46 52-117.5 81t-233.5 42l-94 8q-93 8-218 43.5t-241.5 99.5-176 120.5-86 112.5-26.5 150q0 128 78 199.5t217 71.5q185 0 315-139.5t165-357.5l1-20v-94q0-66 16-88.5t82-22.5q53 0 78 18t37.5 85.5T2004 1832q0 337-190 539.5T1296 2574q-242 0-461.5-111t-348-300T358 1776q0-96 31-195.5t95.5-196.5T638 1203t207-151.5 200.5-90T1273 939q49 0 115 1l284 6q72 0 135 1 171 0 254 26t131.5 73 48.5 144q0 113-46 165zm-914-477q-6 0-14 1-10 0-17-3t-7-14q0-25 11-45.5t72.5-63T1517 709l122-2q62 0 124-1 245 0 340.5 22.5T2199 830q0 23-15.5 39.5T2136 886q-76 0-152-4t-152-4h-51q-100 0-199.5-2.5T1378 873q-21 0-42 2.5t-44 2.5h-11zm250-239l3-7q35-56 82.5-77.5T1719 528l88-8q43-3 86-3 162 0 219.5 47t57.5 90q0 13-2 25t-10 12q-2 0-58-19.5T1914 652q-83 0-161.5 3t-159.5 3h-22q-25 0-33-3t-8-10q0-3 1-6zm302-163h-8q-5 0-10-1 0-33 45.5-59t70-28 54-21.5T2048 347q24 0 30 18.5t19.5 24T2122 423t11 68q0 11-2.5 14t-5.5 3-32.5-20.5T1963 467q-45 0-78.5 4.5T1833 476z"},"children":[]}]};exports.u1F41A=u1F41A;var u1F41B={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2232 2014q13 14 23.5 33.5t10.5 34.5q0 6-4 15t-14 9q-7 0-15-6.5t-16-15.5l-15-18q-14-16-35.5-29t-41.5-21q-35 43-96 64t-122 21l-1 10q0 43 23 82.5t55.5 65 32.5 46.5q0 20-15.5 28t-31.5 8q-44 0-95.5-50.5T1793 2106l-42-2q-17 104-53 175t-80 71q-28 0-38-7.5t-10-20.5q0-23 26-71.5t44-174.5q-11-4-20-8l-21-9q-44 76-98.5 122.5T1411 2228q-15 0-32-13.5t-17-28.5q0-8 3-16t54.5-54.5T1510 1997l-21-22q-10-10-19-21-43 32-95.5 56.5T1266 2035q-27 0-43.5-11t-16.5-30q0-43 71-56t134-67l-17-31q-8-15-14-32-9 4-89 38t-102 34q-18 0-34-16.5t-16-35.5q0-40 92.5-85.5T1337 1690q-6-22-11-43.5t-9-42.5l-25 11q-38 18-80 62.5t-87 44.5q-11 0-19.5-7.5t-8.5-24.5q0-43 58.5-99.5T1293 1504q-5-22-11-44l-12-43-36 24q-21 13-61.5 67.5T1095 1563q-20 0-30.5-9.5T1054 1515q0-13 5-23l11-21q28-53 70-90t93-66q-17-29-38-51t-46-37q-91 112-108 172.5t-64 60.5q-14 0-24-9t-10-32q0-53 25-117t69-118l-71-10-19 53q-21 61-72.5 115.5T767 1397q-18 0-37.5-10.5T710 1356q0-26 38.5-42.5t71-61T852 1164q-86-9-119.5-28t-50.5-50q-67 15-115.5 37.5t-101.5 62-72.5 55T348 1256q-15 0-15-17 0-41 67-117.5T638 975q0-30 7-55t24-48q-33-65-58.5-133T585 597l1-19q0-30 8.5-63t26.5-33q13 0 24 18t16 44l5 25q7 54 45 140t50 94l2 2q28-9 59.5-12t63.5-3q30 0 59 3 10-19 13.5-40t3.5-41q0-55-22-89t-22-55q0-19 9-28t20-9q30 0 73 51t43 145q0 25-3 43l-9 45q22 6 48.5 11.5t54.5 8.5q14-61 64-143.5t100-82.5q20 0 30 11.5t10 22.5q0 24-35 77t-58 140q23 7 43 17t43 23q44-61 103.5-102.5T1565 756q17 0 29.5 7t12.5 24q0 37-33 61t-56.5 34-83.5 83q34 33 59 69 51-43 102-66t90-23q17 0 33 8t16 29q0 17-18 33t-44 27l-28 12q-30 13-54 31t-45 41q10 20 17 40l12 40 44-40 45-39q21-17 37-27.5t44-10.5q14 0 24 16t10 32q0 20-16 46t-39 50l-24 24q-23 23-46.5 44.5T1606 1343q7 44 18 87 85-60 111.5-125.5t61.5-65.5q19 0 29 16.5t10 48.5q0 49-59 120t-123 113l24 55q12 29 30 58 66-61 112-148t73-87q13 0 22.5 17t9.5 40q0 50-36 119t-104 132q31 15 65 18.5t68 3.5h43q38 0 72 11t60 31q26-14 49-35t34-50l3-11q3-14 7-21t12-7q12 0 16 8.5t4 22.5q0 50-22.5 84.5T2144 1842q22 36 22 74 0 20-8 44 35 14 60 40z"},"children":[]}]};exports.u1F41B=u1F41B;var u1F41C={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2224 2110.5q-95 71.5-228 71.5-56 0-109.5-13t-98.5-39l8 22 34 315v6q0 19-11.5 33t-30.5 16h-6q-18 0-32.5-12.5T1733 2478l-33-300-67-204q-16 4-37 4l19 162v5q0 10-1 14l-89 288q-5 17-17.5 26t-29.5 9q-21 0-35-16t-14-33q0-6 3-15l85-278-21-175q-29-11-50.5-32t-38.5-49l-121 192-9 11-219 183q-15 12-32 12t-33-12.5-16-35.5q0-24 18-38l212-179 148-235q-55 21-90 28.5t-85 7.5q-63 0-126-20t-113-62q35-21 64-56.5t29-61.5q0-22-12-36.5t-26-14.5q-19 0-37.5 20.5T873 1649l-4 3q-38-60-58-131t-20-144q0-192 138-318L685 756l-322 306q-15 13-34 13t-34-14.5-15-34.5q0-9 4-18.5t12-16.5l360-343q7-6 15.5-10t17.5-4q22 0 40 18l279 349q23-13 46.5-25t48.5-20L969 518l-491 16q-20 0-35.5-13.5T427 486q0-48 63-50t207-7l151-5q59-2 91-4l47-2h21q21 0 31 9.5t14 24.5l148 481q14-2 29-3t29-1q172 0 306.5 141t134.5 307v18l16-32-11-227q0-19 12.5-35t33.5-16q20 0 35 12.5t17 32.5l12 245q0 5-2 10l-4 11-89 174 15 11 57-84 115-113q11-14 33-14 20 0 34.5 14.5t14.5 34.5q0 21-14 35l-104 102-74 109q3 4 6 9l4 10 130-115q10-10 26-13l246-37h9q20 0 34 14t14 36q0 17-11.5 30t-29.5 16l-233 36-28 25q8-2 25-2 135 0 233 73t98 183q0 109-95 180.5zm-1119-782q-21-25.5-50-25.5-30 0-50 25.5t-20 60.5q0 38 21 61.5t52 23.5q28 0 48-25.5t20-60.5q0-34-21-59.5z"},"children":[]}]};exports.u1F41C=u1F41C;var u1F41D={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2325 1622q34 65 34 137 0 149-141 275.5T1900 2170q-68 0-133-15.5t-119-57.5v92l-1 62q0 37-7.5 48.5T1599 2311q-23 0-31-13t-8-36q0-16 2.5-31t2.5-31v-73l1-49v-49q-8 0-13 5t-9 10l-8 11q-4 5-10 5t-13-11-14-11q0 18 1 35v104q0 106-6 120.5t-43 14.5q-23 0-30.5-12t-7.5-36q0-15 1-31t1-32v-72q0-23 1.5-46.5t1.5-46.5q-11 3-19 13t-19 10-15.5-12.5-4.5-23.5q-58 73-113.5 111.5T1170 2173q-16 0-28-13t-12-27q0-27 38.5-47.5t66.5-50.5l54-58-13 1q-10 0-16-1.5t-6-9.5q0-7 8.5-20t8.5-24q0-5-1-7-2 2-68 71t-142 69q-14 0-28.5-1.5t-28.5-1.5q-17 0-32.5 2.5T939 2058q-29 0-44-11t-15-32q0-20 13-32t40-12q28 0 56 3t56 3q24 0 50.5-13.5t74.5-68.5q-45 16-106.5 25.5T944 1930q-219 0-348.5-115.5T466 1500q0-117 48-230t133-184q-2-4-5-7l-6-6q-86-97-126.5-114.5T427 941q-41 0-75.5 11.5T295 964q-25 0-40-17.5T240 911q0-30 45-58t141-28q82 0 142 33.5T671 942l72 81q84-44 179-59l7-1-22-85q-20-76-68.5-116.5t-122-53T643 645q0-31 24.5-43t54.5-12q12 0 25 2l23 4q92 26 144 74.5t78 105 52 180.5q55 0 105 14 0-173 82-301.5T1459 540q89 0 169.5 53T1762 734q47-37 103.5-60t119.5-23q118 0 201.5 100.5T2270 999q0 124-63.5 236.5T2008 1458q5 0 9.5-1t8.5-1q63 0 120 19.5t104 54.5q12-2 32.5-2t41.5-1q7 0 12 4t5 20q0 21-6 36t-10 35zm-44 139q0-89-60-150.5t-159-73.5q74 50 125 134.5t68 192.5q13-29 19.5-56.5t6.5-46.5zM1228 967q0 18 1 27 86 40 151.5 106t104.5 153q33-151 87.5-267.5T1703 788q-48-85-112-128.5T1460 616q-101 0-166.5 99.5T1228 967zm750-238q-26 0-47.5 5.5T1882 752t-54 29.5-60.5 51.5-57 67.5-65.5 121-74.5 210.5-37.5 201l-7 90q0 6 2 10 9-11 20-11 8 0 11 5.5t3 12.5q0 3-1 6t-1 6q0 11 4 16.5t9 5.5q9 0 28-14.5t27-14.5 10.5 6.5 4.5 15.5v21q0 12 1 16 11-4 22.5-10t22.5-13l11-6 113-72h-1q201-129 291-251t90-253q0-115-60.5-192.5T1987 729h-9zm-333 1241q23 55 83 87.5t142 34.5v-34q0-88-38-171.5T1726 1752q0 4 8 9l16 13q8 7 14.5 15t6.5 15q0 14-28.5 16.5T1714 1834q0 10 9 18t9 21-6.5 17.5-18.5 4.5h-19q-8 0-13 2t-5 10q0 11 7 21.5t7 19.5-8.5 16-21.5 7q-6 0-9-1zm392 88q26-11 49.5-24t45.5-28q0-150-67.5-267T1876 1566q-22 9-43 20t-38 25q33 23 102 98.5t104.5 169.5 35.5 179zm-881-576.5q30 32.5 66 32.5 34 0 54-28t20-59q0-45-28.5-78t-64.5-33h-12q-17 2-41 24t-24 63q0 46 30 78.5zm-303.5-13Q825 1437 789 1437q-33 0-55 25.5t-22 64.5q0 45 27.5 77t62.5 32q28 0 53-25t25-67q0-44-27.5-75.5zM1198 1615q-13-18-36-18-24 0-33.5 29t-39 46.5-59.5 17.5q-14 0-37.5-13t-40.5-13q-12 0-26.5 10.5T911 1705q0 31 35 52t66 21q63 0 131-35.5t68-86.5q0-23-13-41z"},"children":[]}]};exports.u1F41D=u1F41D;var u1F41E={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2331 1633q-17 17-40 17-31 0-54-32t-85-72.5-134-53.5q0 217-97 393t-268.5 270.5T1259 2250q-151 0-292-44v16q0 48 16 106.5t37 92 21 55.5q0 23-15.5 39.5T984 2532t-43.5-19.5-52-107T854 2222q0-37 4-60-98-48-172-110.5T549 1913q-12 29-21.5 70.5T518 2081q0 17 2 34t2 36q0 23-14 39.5t-37 18.5h-7q-29 0-44.5-27.5T404 2081q0-78 19-149t59-133q-39-81-59-161.5T403 1472q0-53 5.5-108t16.5-113l-115-40q-16-5-25.5-18.5T273 1163l-22-227v-6q0-23 16-39.5t40-16.5q22 0 38.5 14t18.5 37l18 190 81 29q2-5 5.5-10t8.5-9q-2-9-3-19t-1-21q0-87 40-164.5T629 781q-28-21-69.5-34.5T518 703q0-16 12-27t29-11q27 0 81.5 24t65.5 30q2 2 4 2 89-59 192-92 0-9-1.5-29t-1.5-34q0-51 11.5-82.5T951 452q20 0 28.5 19t8.5 37q0 12-1 23.5t-1 22.5q0 12 3 25t3 25q60-12 116-12 69 0 128 16t115 59l23-89-149-122q-21-16-21-43 0-25 16.5-41.5T1260 355q20 0 37 12l179 146q21 18 21 43 0 5-2 15l-35 125q87 19 197 83t206 209l30-4q15-2 35-2 92 0 185 36t107.5 55 14.5 40q0 26-18 41t-39 15q-18 0-53-20t-93-35.5-106-15.5l13 25q13 23 37 94.5t35 158.5q122 13 229.5 91.5T2348 1592q0 24-17 41zm-1123 500q13 2 26 2h25q85 0 161-16t145-47l-82-149q-36-64-87-157.5t-75-132.5q-45 15-92 15-95 0-158.5-54.5T1007 1448q0-56 26.5-102t73.5-80q-4-7-42-69.5t-55-109.5q-154 59-255 82.5T592 1193h-23q-9 3-11.5 16t-11.5 41l-12 38q-6 18-9 35.5t-3 38.5l1 21q35-32 80-52t90-20q63 0 107 47t44 120q0 92-71.5 170T611 1726q-22 0-38-4 42 97 113 175t168 134q6-78 83-144.5t167-66.5q62 0 107 46.5t45 122.5q0 79-48 144zm393-158l31 60q79-51 145-141t94-180q-7 0-20 1-79 0-138-44.5t-59-109.5q0-75 77-140.5t151-65.5h11q-22-125-75-218.5t-48-81.5q-33 55-93 88.5t-123 33.5q-77 0-125-46.5t-48-111.5q0-60 37.5-114.5T1513 833q-29-14-59-22.5t-58-8.5q-9 0-17 19t-86 93.5-228 147.5l5 5q15 19 53 83.5t48 81.5q40-17 80-17 87 0 159 65t72 150q0 53-27.5 97t-65.5 72q44 70 98.5 166t113.5 210zM1050.5 805q28.5 28 63.5 28 31 0 47.5-19t16.5-44q0-32-28-61t-65-29q-29 0-46 18.5t-17 44.5q0 34 28.5 62zM674 877q-22 8-33.5 28T629 951q0 39 24.5 65.5T708 1043q29 0 46-24t17-53q0-39-24-65.5T693 874q-5 0-9 1z"},"children":[]}]};exports.u1F41E=u1F41E;var u1F41F={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2488.5 1679q-18.5 19-52.5 19-59 0-169.5-79t-142.5-87l-37 26q-115 82-171.5 126t-91.5 68q-17 32-36 94.5t-85 62.5q-32 0-67.5-8.5T1570 1884l-8 5q-128 51-249 73t-244 22l-55-1q7 7 20.5 28.5t13.5 34.5q0 8-6 13t-21 5q-54 0-119.5-31T785 1958q-112-18-214-49.5T382 1828l-13-8q-127-68-181.5-125.5T133 1598v-10l1-12-8-8q-8-8-21-25t-13-42q0-50 107-186t251-221 327-123q58-71 142.5-144t128.5-73q17 0 23 12t6 29q0 23-3 44.5t-3 43.5q0 17 2.5 34.5t7.5 32.5q109 6 213.5 26.5T1504 1025q15-10 64.5-61t89.5-51q44 0 80 74t50.5 90.5 30.5 52.5q110 45 175 77.5t76 32.5q5 0 13.5-9.5t20.5-27.5l10-15q37-52 73-98l72-93 24-32q22-30 46.5-46.5T2380 902q29 0 46.5 21t17.5 53q0 43-33 150.5t-33 201.5q0 30 22.5 71.5t26.5 56 19 36.5l21 33q23 38 31.5 62t8.5 41q0 32-18.5 51zM2111 1431l3-18q-62-43-99-58.5t-76-15.5q-33 0-70 6t-92 6q-96 0-164-65t-148-65q-43 0-94 25.5t-105 25.5q-82 0-157.5-45T973 1182q-67 0-133 37.5T675 1257q-47 0-95.5-16.5T491 1224q-43 0-72.5 19t-88 78.5T247 1424l-25 40q-6 9-10 12 24 0 47 6l38 10q43 12 73 29.5t30 40.5q0 26-31 26-14 0-25-5l-23-9q-12-5-25-9.5t-29-4.5q-20 0-30 13 0 4 1 6v4l-1 8q23 34 63.5 66.5T418 1730l14 8q85 45 186 75 19-36 25-75.5t6-83.5q0-94-18.5-185.5t-34-115T581 1316q0-10 6.5-14.5t13.5-4.5q39 0 58.5 48.5t31 80T708 1487l9-6q6-4 75.5-30t137.5-26q34 0 56 5.5t41.5 8.5 19.5 26q0 70-27.5 110.5t-60 74T902 1683q-44 0-83-13t-86-27v24q0 48-10 87t-27 81q96 22 189 33.5t186 11.5q106 0 205.5-17t195.5-51.5 191-85.5 193-127 152-113 67.5-45.5 35.5-9.5zm-1696-80q24 0 45.5 19t21.5 49q0 29-16.5 52t-44.5 23q-25 0-46-18t-21-49q0-30 16.5-52t44.5-24z"},"children":[]}]};exports.u1F41F=u1F41F;var u1F420={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2524 1352q2 9 3 18.5t1 18.5q0 35-8.5 69t-8.5 69q0 34 3.5 67t3.5 67q0 90-32 169.5t-60 128-44 132.5-64 120.5-123 36.5q-110 0-264-66.5t-274.5-217-174-270T1369 1575q-25 0-51 10l-52 20q31 19 48.5 44.5t17.5 54.5q0 43-24.5 66.5T1239 1794q-57 0-116-31.5t-86-68.5q-32 8-65.5 14.5T903 1719q19 24 26 46.5t7 54.5q0 73-27.5 114t-78.5 41q-25 0-53.5-13t-64.5-54.5-47.5-106.5-13.5-86q-237-37-408.5-164T71 1285q0-60 68-100t108.5-63.5 116-49.5 135-42.5T628 1009q13-127 100.5-232.5t212-164.5 195.5-59q47 0 86 20t51 53l7 17q11 27 57.5 81.5T1384 819q0 20-7.5 38t-7.5 40q0 17 17 48.5t17 89.5q0 35-20 61.5t-50 41.5q3 0 6 1t6 1q26 0 83.5-57.5T1647 895t271-173 223-43q132 0 247 89t115 218q0 45-7.5 90t-7.5 85q0 25 3.5 48t9.5 46zM426.5 1250q-22.5-24-52.5-24-35 0-56 27t-21 62q0 32 24 55.5t56 23.5q31 0 51.5-26t20.5-60-22.5-58zm1491-137.5q7.5 7.5 27.5 7.5 26 0 49-8l46-16q64-22 97-46t33-52q0-21-18-39t-49-18q-56 0-124.5 48.5T1910 1093q0 12 7.5 19.5zm165 662.5q-58.5-37-124.5-37-18 0-29.5 8.5T1917 1777q0 47 65 98.5t114 51.5q24 0 34.5-18t10.5-41q0-56-58.5-93zm149-292q26.5-18 26.5-52 0-39-30.5-58.5T2158 1353q-47 0-128.5 29t-81.5 55q0 31 58 47.5t142 16.5q57 0 83.5-18z"},"children":[]}]};exports.u1F420=u1F420;var u1F421={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2489.5 1467.5Q2428 1562 2306 1562q-37 0-70-6.5t-61-14.5l-56-14q-27-6-53-6h-17q-10 0-17 3-41 43-100.5 199t-165 275-277.5 185.5-393 66.5q-277 0-480-101t-304.5-257.5T210 1568q-64-6-111-53.5T52 1406q0-55 33-97-20-22-28.5-49t-8.5-58v-7q4-62 44.5-99t110.5-37q13 0 20 2 88-186 270-294.5T891 658q147 0 293 27t292 91q44-23 91.5-44t98.5-21q72 0 120 36t48 96q0 26-10 50t-31 36q97 49 189 89t110 40q21 0 77-35.5t141-35.5q58 0 110.5 29t91.5 87.5 39 136.5q0 133-61.5 227.5zM530 1150q29 31 67 31 41 0 68.5-31.5T693 1072t-27.5-77-68.5-31q-38 0-67 31t-29 77q0 47 29 78zm-159 148q0-63-18-99t-57-40q-12 0-24.5 1.5T247 1164h-6q-11 0-22.5-1.5T196 1161q-18 0-32.5 9t-14.5 35q0 32 23.5 45t62.5 16 39 17q0 21-20.5 39t-59.5 32-39 51q0 27 23.5 45t47.5 18q42 0 89.5-40t55.5-130zm1740-30q-18 0-36.5-1t-38.5-1q-26 0-62.5 15t-100.5 15q-19 0-38-2l-38-3q-20-3-38-9l-36-13q-18-6-36-11t-37-5-37 5l-75 21q-19 5-38 5-45 0-109-20t-106-20q-44 0-100.5 23t-98.5 23q-19 0-38-4l-80-15q-20-3-39-3-16 0-37.5 3t-37.5 9l-55 21q-27 11-58 11-41 0-103.5-20T536 1272q-17 0-31.5 3t-31.5 9q0 98-42.5 165.5T312 1550v14q0 7-1 15 0 126 90 261t269.5 222 425.5 87q121 0 234-24.5t213.5-79T1715 1903t130.5-238 99-198.5T2066 1418q8 0 14.5 1t12.5 1q7-11 14-32t7-67q0-27-3-53zm130-90l18-5 17-4q13-2 22-10.5t9-22.5-10-22-28-8q-16 0-44.5 16.5T2196 1158q0 9 6 16t17 7 22-3zm82 226q0-3 1-6 0-16-22-25t-54-9h-13q-14 0-21.5 7.5t-7.5 18.5q0 16 22 27t49 11q16 0 27.5-4.5t16.5-13.5zm0-159q-13-12-35-12-26 0-46.5 10.5T2221 1270q0 18 20.5 23t61.5 5q19 0 26-9t7-21q0-11-13-23zm-1217 373.5q-41 56.5-95 57.5l-30 1q-70 0-115-67t-45-103q0-12 6-19t15-13l17-11q10-7 17-23.5t12-64.5q12-2 25-3t27-1q86 0 146.5 39t60.5 88q0 63-41 119.5z"},"children":[]}]};exports.u1F421=u1F421;var u1F422={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2292.5 2005.5q-47.5 13.5-95.5 22t-96 8.5q-56 0-87-13.5t-43.5-30.5-12.5-69l1-63q0-29 31-33.5t115-41.5l105-45q9-3 20.5-9t23.5-6l8 1q25 4 51.5 92.5T2340 1940q0 52-47.5 65.5zM719 2028q5 23 8 47.5t3 49.5q0 38-56 58t-154 20l-40-1q-68 0-99.5-19t-31.5-94q0-38 6.5-80.5T370 1933q50 27 123.5 51t225.5 44zm1558-781q-19 34-42 62t-51 53q-28-87-74.5-178.5T2012 1023q14-23 31-60t28-77q69 81 118.5 171t87.5 190zM874 775q-33 21-73.5 57T720 907q-23-8-47-12.5t-50-6.5q52-60 112.5-112T860 686zm297 610l-12-10q-8-3-18-26.5t-16-40.5l-10-26q-51-115-127.5-200T814 945q38-36 67-60.5t45-35.5l49 19q94 37 216.5 95t193.5 107q0 27-1 77l-4 240q0 67-1 128v56q-61-20-105-81t-103-105zm273-388q-67-47-176.5-101T1020 787l-54-21-19-125q84-40 176.5-57.5T1310 566q187 0 383 69.5T1996 803q-3 33-20.5 80.5T1932 978q-38-2-74.5-3t-71.5-1q-110 0-210 9t-132 14zm34 89q52-6 134-12.5t169-6.5q74 0 152 6 58 77 102 168.5t69 177.5q-102 64-279 114t-352 52l2-308q0-59 1-109zm-153 742l-83-2q0-67-8.5-135t-25.5-135q44 60 108.5 91t161.5 31q113 0 314-42.5t329.5-117.5 190.5-156q8 23 15 54t7 59-15 59.5-141.5 104-324 131.5-445.5 59q-42 0-83-1zm234 393q-16 9-63 22t-123 13l-42-1q-86 0-112-18.5t-26-80.5q0-52 15-109.5t26-89 99-31.5l107 4q82 4 92 48.5t26.5 105T1575 2186q0 26-16 35zm869.5-957.5Q2397 1330 2377 1330q-13 0-19.5-18t-13.5-32l-12-23q-6-11-10-20t-4-14q0-3 8.5-8t22.5-13l25-13q24-11 39-20t27-9q8 0 14 5t6 17q0 15-31.5 81.5zM1151 1653q0 5 3 28l5 56q3 32 5 69t2 69q0 79-14.5 85t-119.5 6q-358 0-533.5-62t-267-184.5T140 1415q0-136 53.5-245t156-158.5T566 962q164 0 291 100.5t194.5 265.5 99.5 325zm-473-310.5q26 28.5 60 28.5 35 0 57.5-26.5T818 1282q0-40-26.5-69t-60.5-29q-35 0-57 26t-22 63q0 41 26 69.5zm-388-2q22 26.5 56 26.5 35 0 62.5-30t27.5-70q0-37-23-62.5t-56-25.5q-38 0-63.5 31t-25.5 69q0 35 22 61.5zM516.5 1584q23.5-15 44.5-33l25-21q2 0 26.5-20t24.5-39q0-12-6.5-17t-14.5-5q-30 0-81.5 33t-72.5 33q-35 0-70.5-31t-51.5-31q-11 0-16.5 6t-5.5 15q0 30 59.5 77.5T478 1599q15 0 38.5-15z"},"children":[]}]};exports.u1F422=u1F422;var u1F423={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1944 1568q-5 47-15 91t-28 86l152-126q11-8 24-13.5t27-5.5q43 0 65.5 34.5T2192 1781q0 237-134 404.5t-351.5 237T1295 2492q-246 0-455-89t-325-245-116-348q0-113 25-162t73-49q11 0 23 3t21 10l145 95q-10-34-17-68.5t-12-70.5q-154-39-266-189t-112-311q0-59 20-90.5t63-31.5q21 0 45 9.5t51 25.5l28 18q61 37 141 63.5t98 26.5q69-194 174-304.5t197-148 204-37.5q236 0 367 142.5t206 348.5q160-38 240.5-91t126.5-53q41 0 61 32t20 90q0 161-111 311t-266 189zm-358 124l-286 163-311-163-225 163-267-177q-18 68-18 132 0 200 150.5 354.5T1001 2373l48 10q49 11 117 19.5t129 8.5 131-8.5 124-19.5l50-10q149-38 273-121t181-206 57-267q0-24-2-48.5t-5-49.5l-233 193zm-11.5-554.5q21.5 22.5 47.5 22.5 25 0 41-20t16-48q0-33-20.5-57.5T1611 1010q-26 0-42 21.5t-16 49.5q0 34 21.5 56.5zM1152 1257l12 14 61 74q5 6 27.5 39t48.5 35q19 0 29.5-14t67.5-79 57-86q0-23-50-81.5t-68.5-86.5-36.5-28q-15 0-63 64.5t-70 89.5-22 43q0 9 7 16zm-210-118q16 21 43 21 26 0 47-22.5t21-56.5q0-28-16-49.5t-43-21.5q-28 0-48 25.5t-20 54.5q0 28 16 49zm283 110l-11-9 1-11q73-84 84-84 12 0 21.5 12t38.5 39 29 40q0 3-5 9t-12 13l-15 14q-8 8-14 13l-6 8q-9 11-18 18t-14 7q-17 0-26-11l-20-23zm670-537l104-200q10-20 27.5-30.5T2067 471q35 0 66.5 33t78 102 46.5 103q0 29-18.5 51t-44.5 26l-218 39h-6q-3 0-8 1-32 0-54.5-23.5T1886 748q0-19 9-36zm286-3q-20-40-49-82t-65-79l-104 200zm-656-379q-4-11-4-26 0-45 43.5-68.5T1692 212q36 0 62 4.5t41 9.5l4 1q29 3 48.5 25t19.5 52v108q0 25-13 45t-36 28l-137 52q-11 4-28 4-24 0-44-14.5t-28-37.5zm72-26l56 160 137-52V304q-7 0-31-7.5t-67-7.5q-20 0-44 3.5t-51 11.5zM471 757q-26-8-41-28.5T415 682q0-34 36-95t102.5-107T655 434q21 0 40 11t30 32l54 109q9 17 9 36 0 18-9 34l-54 110q-11 20-30 31t-40 11q-11 0-21-3zm184-27l55-108-55-111q-55 24-101 70t-61 102z"},"children":[]}]};exports.u1F423=u1F423;var u1F424={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2290 1544.5q-134 192.5-263 290T1740 1989l34 27q16 13 34 24l25 14q24 14 35.5 30.5t11.5 41.5q0 29-25.5 64.5T1804 2258t-52.5 60.5-55.5 28.5q-25 0-47.5-18.5T1626 2285q0-34 50-82.5t50-82.5q0-21-18.5-44.5T1644 2020q-81 23-163.5 33t-166.5 10q-37 0-74-1t-73-5l-37 76q-29 58-41 136t-85 78q-19 0-105-28t-111-46.5-25-54.5q0-25 14-45.5t44-20.5q28 0 75.5 23t74.5 23q51 0 76-80.5t23-74.5q-325-62-494.5-289T406 1187q-44-15-84.5-33.5T238 1118l-19-7q-16-5-30-14t-14-19q0-13 23-23.5T426 967q19-119 108.5-258.5t224.5-202 327-62.5q83 0 185 26.5t199 80 154.5 129 137 170T1933 1001t170 57q37 0 94.5-14t98.5-14q58 0 93 42t35 110q0 170-134 362.5zm-1519.5-651Q748 866 718 866q-33 0-56.5 27T638 961q0 42 23.5 66.5T718 1052q32 0 53.5-28t21.5-65q0-38-22.5-65.5zM1987 1194q-69-38-225-38-34 0-67-2l-74-6-74-4q-13 0-29.5-2.5t-33.5-2.5q-19 0-32 7t-13 17q0 42 170.5 59.5T1784 1240l50 4q49 4 79.5 23.5t30.5 60.5q0 48-35 132t-140 141-250 57q-91 0-167-21.5t-119-53.5-63-32q-8 0-13 6.5t-5 14.5q0 39 126 107t278 68q141 0 267-66t179.5-165.5T2056 1328q0-96-69-134z"},"children":[]}]};exports.u1F424=u1F424;var u1F425={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2388 1751q-63 29-186 29-20 0-39-1l-38-2q0-3 5-33.5t5-76.5q0-47-12-122.5t-46-75.5q-18 0-22.5 9t-4.5 21q0 26 1 51.5t1 51.5q0 184-120.5 321T1604 2128q3 11 3 20l-1 33q0 74 74.5 118.5t74.5 85.5q0 27-34.5 42.5T1625 2443q-59 0-92-27t-33-101q0-17 1.5-32t1.5-31v-28q0-14-1-29v-22q0-11 2-19-43 8-97 15t-111 7q-54 0-104.5-7t-91.5-15q2 9 2 19.5t1 21.5q0 15-1 29v28q0 16 1 31t1 32q0 77-34 102.5t-90 25.5q-62 0-97-15.5t-35-42.5q0-39 75.5-86.5T999 2181q0-8-1-16.5t-1-16.5l1-10q0-5 2-10-198-60-325.5-206.5T547 1595q0-22 1-44t1-45q0-17-4-27t-22-10q-37 0-48 77t-11 112q0 29 2 59t9 60l-37 2q-20 0-41 1-124 0-186.5-29t-62.5-88q0-63 82.5-132T420 1325t186.5-352T801 624t231-190 271-56q178 0 297 62.5T1818 640t175.5 338 182 340.5T2366 1529t85 134q0 59-63 88zM963.5 974Q943 947 908 947q-33 0-59.5 30.5T822 1050q0 37 21.5 63t51.5 26q34 0 61.5-31t27.5-71q0-36-20.5-63zm449 179q-61.5-39-109.5-39-20 0-40 5.5t-37 14.5l-28 17q-27 16-46.5 37t-19.5 41q0 15 15 33t36 34l21 17q6 4 41 30.5t61 26.5q10 0 42-21t58.5-37 47-36 20.5-44q0-40-61.5-79zm348-176.5Q1734 947 1700 947t-54.5 26-20.5 60q0 42 26 74t62 32q30 0 52-26.5t22-64.5q0-42-26.5-71.5z"},"children":[]}]};exports.u1F425=u1F425;var u1F426={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2383 1247.5q-46 42.5-110 69t-143 76.5l-108 65-49 32q-45 30-87.5 56.5T1808 1602q12 7 19 14l6 5q21 18 27.5 28.5t6.5 26.5q0 30-18 56t-41 33l-7 3q-3 3-6 8t-7 10l-3 4q-20 31-54.5 47t-56 36-68 35-102.5 15q-125 0-247-69.5t-185-171-73-156.5-26-55q-7 0-12 11t-5 23q0 64 51.5 171t149.5 190 212 108q-11 5-21.5 9t-20.5 7l12 59q5 25 5 57 0 31-10.5 69l-21 76-68.5 38q-23 0-42.5-6t-19.5-23q0-9 5-18.5t12-20.5l13-20q14-22 27.5-66.5t13.5-89.5v-15q0-6-1-14-49 14-103 19l-7 45q-4 22-4 43 0 64-63 99t-159 35q-15 0-28-4.5t-13-20.5q0-46 61.5-55.5t98-38.5 36.5-97q-164 0-298.5-51t-221-142.5T443 1581l-11-94q-13-107-32-153.5t-23-57.5l-46-3q-34-2-67.5-19.5T230 1197q0-36 35.5-69t39.5-37l10-11 11-11q6-6 11-13 0-210 145-335.5T803 595q114 0 211.5 55.5t156 142.5 74.5 153 98 144.5 135 78.5q36 0 86-75t122-142.5 174-67.5q68 0 146.5 21.5T2181 956t172 83 76 114q0 52-46 94.5zM355 1204h16l15 2 14 3q20 3 41 5.5t41 2.5l18-1q-2-8-6-17l-6-13-9-18q-6-14-24.5-49.5T425 1083q-14 0-29 15l-39 40q-2 3-5 6l-8 8q-12 9-19 16l-15 16q-8 8-9 13 5 2 23 3.5t31 3.5zm438-215q-17-21-45-21-24 0-42 19.5t-18 48.5q0 26 17.5 48t43.5 22q27 0 44-21.5t17-48.5q0-26-17-47z"},"children":[]}]};exports.u1F426=u1F426;var u1F427={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2222 1720q61 29 83.5 58t22.5 62q0 40-26 69t-65 45l-37 15q-56 20-110.5 25t-102.5 5h-40q-8 0-11-1 0 51 21 70t75 27q64 0 100.5 21t36.5 63q0 57-74 96t-168.5 92.5T1677 2458q-13 26-40 59t-52 55l-34 30q-18 16-44 16-10 0-27-16.5t-28-16.5q-6 0-14 4l-19 10q-11 5-23 9.5t-25 4.5q-16 0-27-9.5t-11-33.5q-8 0-20.5 1.5t-24.5 1.5q-17 0-26.5-5.5t-9.5-16.5q0-12 13.5-25t32.5-25l16-10-70-5q-35-2-70-6-3 4-41.5 44.5T1058 2565q-10 0-27-18t-28-18q-7 0-16 4l-19 10q-11 6-23 10.5t-24 4.5q-17 0-28.5-9.5T881 2516h-26q-11 0-22 1-17 0-25.5-6.5T799 2495q0-14 18-30.5t59-41.5l39-24q-14-8-26.5-16t-26.5-15l-11-7q-92-57-149-136.5T614 2048q-36 11-74.5 18t-91.5 7q-82 0-129.5-22.5T271 1987q0-15 7.5-36.5t56.5-89T435.5 1688t81.5-253 59.5-222.5 51.5-113 45-100T696 888q0-19-2-37t-2-37q-34 0-67 4.5T558 830l-27 7q-14 4-28 4-23 0-31.5-6.5T463 815q0-30 38-75t118-86l96-50q52-136 116.5-208.5t170.5-118 219-45.5q98 0 189 33.5t171.5 108 135 171T1806 751t84 349 108 358.5 120 180 87 73.5zm-572.5 640q129.5-29 238.5-87-94-75-148.5-157T1635 1888t-56-238-32.5-202.5T1473 1220l-2-6q-10-28-26-51l-6-11q-10-13-17.5-28t-7.5-31q0-17 10.5-28t32.5-18l23-6q82-20 130.5-73.5T1659 835q0-74-16-109t-49.5-70-65.5-35q-28 0-48.5 19t-36.5 81l-9 31q-20 74-34.5 90.5T1358 890l-33 38q-12 12-93.5 67.5T1017 1051q-66 0-125-16.5T782 988q-18 57-35.5 105.5T721 1192l-4 25q-18 102-33 227t-15 252q0 223 60 365.5T904 2272l11 8q36 19 71.5 41.5t136.5 45 251 22.5q146 0 275.5-29zM1239 540.5q-21-25.5-53-25.5-30 0-51 27t-21 61q0 33 20.5 61t51.5 28q32 0 53-26.5t21-62.5q0-37-21-62.5z"},"children":[]}]};exports.u1F427=u1F427;var u1F428={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1240 2444q0 15-1 29v29l1 33q0 23-12 32t-58 35.5-126.5 46T870 2668q-143 0-262.5-31T419 2547l-11-13q-4-5-4-16v-57q0-86-1-172t-1-176V769q0-168 6-258.5t6-141.5q0-66 112-115.5T810 204q117 0 214.5 22t153 60.5T1235 357l2 32q-63-20-123-20-140 0-253.5 103.5T747 751q0 56 11.5 114T804 985l6 10q7 14 9.5 30t2.5 34q0 33-4 70.5t-4 76.5q0 52 12 100-69 16-110.5 68T674 1485q0 56 29.5 112.5t99 113.5 145 83 84.5 27q-34 17-64 49.5t-51 75.5q-15-8-35-14.5t-45-6.5q-72 0-114 54t-42 101q0 112 165 228t253 116q25 0 47-6t42-13q14 9 26 19t26 20zM2255.5 936q-22.5 68-57.5 110l-7 9-16 18q-9 9-12 22l-1 15 2 30q0 16 1 30 0 139-47 239.5t-131.5 162-168 79-83.5 32.5q0 10 25 16.5t59 6.5l32 1 56-2q25 57 36.5 121t11.5 132q0 193-143 326.5T1461 2418q-67 0-120.5-17t-89-50.5-60.5-33.5q-10 0-39 12.5t-53 12.5q-56 0-196-95.5T763 2081q0-22 21.5-48t52.5-26q21 0 50 15t50 15q31 0 44-37.5t55-81.5 160-44q7 0 9.5-1.5t2.5-7.5q0-11-21.5-25t-56.5-20q0-5 1-10.5t1-10.5q0-40-43.5-47.5T966 1713t-144.5-95.5T756 1487q0-41 28-68t66-34q36 115 171.5 203t281.5 88q11 0 22-2t11-8q0-5-16-12.5t-52-18.5l-28-7q-116-45-174.5-90.5t-114-133.5-55.5-197q0-35 4-72t4-73q0-28-4.5-55T881 954l-5-8q-24-47-35.5-95.5T829 752q0-142 89-221.5t196-79.5q48 0 97 17.5t107 55 129 37.5l9-1h12l19-1h31q41 0 78.5 4.5T1674 576l15 2q13 3 39 3 62 0 128-31.5t139-31.5q110 0 196.5 82t86.5 207q0 61-22.5 129zm-1171-75.5Q1098 848 1113 830l31-36q24-28 68-55.5t44-51.5q0-22-38-45t-77-23q-57 0-101 42t-44 102q0 41 20 75.5t45 34.5q10 0 23.5-12.5zm158.5 260q-18-21.5-48-21.5-26 0-45.5 19t-19.5 47q0 25 18.5 45.5t42.5 20.5 47-17.5 23-43.5q0-28-18-49.5zm370.5 12.5q-44.5-50-102.5-50-73 0-110.5 71.5T1363 1298q0 76 42.5 116.5T1519 1455q73 0 106-51.5t33-138.5q0-82-44.5-132zm289 128q19.5-19 19.5-46 0-26-19-45.5t-47-19.5q-26 0-44.5 18.5T1793 1215q0 24 17.5 44.5t45.5 20.5q27 0 46.5-19zm169-542q-42.5-42-99.5-42-39 0-72 16t-33 36q0 23 39 56t58 65l25 41q12 20 23.5 34t23.5 14q26 0 52-37t26-81q0-60-42.5-102z"},"children":[]}]};exports.u1F428=u1F428;var u1F429={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2262.5 1036q36.5 39 36.5 83 0 38-29 66.5t-70 28.5q-8 0-12-2-13 31-28 61t-38 57q12 44 12 86 0 74-33 142.5t-93 108.5q4 11 9 29.5t11 40.5l11 47q5 25 8 49 58 18 93 58t35 91q0 34-17 67.5t-47 51.5l-15 9q-8 5-15.5 8.5t-11.5 4.5q-10 27-30 50t-50 23q-17 0-31-7.5t-14-24.5q0-9 5-16.5t10-13.5q-24-4-48-12.5t-41-25.5q-14 11-26.5 19.5T1816 2130l-10 25q-10 24-25.5 36.5T1744 2204q-16 0-28.5-7.5T1703 2171q0-9 3.5-15.5t9.5-14.5q-71-12-93-56t-22-84q0-42 17-75.5t45-61.5l-12-27q-46 38-120.5 62t-90.5 30l6 42q2 21 6 43 68 16 104.5 69t36.5 131q0 53-29 80t-76 42q-11 38-32.5 62.5T1393 2423q-20 0-34.5-11t-16.5-37q0-7 3.5-13t6.5-13q-47-5-83.5-29t-50.5-79q-8 55-41.5 78.5T1092 2348q-14 34-36.5 54t-55.5 20q-23 0-40.5-11t-17.5-37q0-12 4-18.5t10-15.5q-56-16-85.5-50.5T841 2199q0-72 43-119t109-64v-82q-158-29-235-119t-77-203q0-20 4.5-39t4.5-33q0-5-4-6h-8q-14 0-30.5 5t-35.5 5q-57 0-111-18t-103-69.5-73-88.5-24-97q0-64 39-140t113-150l48-49q9-9 19-20.5t10-15.5q0-11-22-44.5T486 755q0-156 137-252t310-96q112 0 214 21.5t184.5 83.5 149 138 79.5 188q0 58-9 114.5t-9 114.5q0 55 11.5 110.5T1584 1286l16 48q8 25 8 48 0 96-79.5 162t-184.5 66q-63 0-113-32t-102-152q-4 0-4 8 0 125 59 195.5t168 70.5q135 0 230.5-86.5T1678 1383q0-20-1-30l-2-8q-6-35-17-70l-21-69q-11-34-19-68.5t-8-69.5q0-26 3-50.5t3-47.5q51 4 109 34.5t95 80.5l24 32q11 15 21.5 25.5t18.5 10.5h23q47 0 100.5 28.5t82.5 78.5q16-15 22-31.5t17-34.5q-26-12-44.5-34.5T2066 1108q0-46 34.5-78.5T2178 997q48 0 84.5 39zm-1222 355q78.5-28 78.5-79 0-14-2-28.5t-2-28.5q0-55 12.5-107.5T1160 1046l4-8 12-30q2-7 2-9t-10-3h-38l-23 1q4 11 4 26 0 30-21.5 53.5T1040 1100q-27 0-45-20t-18-50q0-9 2-19t7-19q-42 0-82-8l-78-14q0 29-19.5 52t-47.5 23q-25 0-42.5-19T699 981q0-22 12-40-5-3-11-7.5t-11-6.5h-10q-9 4-34.5 82T612 1146q20-11 33.5-16t35.5-5q56 0 97.5 29t41.5 68q0 37-32 59.5t-81 22.5q-40 0-70-15 33 62 97 96t143 34q85 0 163.5-28zm293.5 632q-4-18-7-36l-6-36q-36 0-70 4t-69 4q-17 0-34-1t-34-3q0 18-1 36t-1 35q36 17 64 47t42 79q10-38 35.5-69t61.5-50zm487-320q-11 0-21.5 2t-21.5 10q0 24 2 40l3 30q0 13 2.5 25.5t3.5 27.5q23 7 43.5 19t37.5 31q9-11 17.5-19.5t19.5-16.5q-18-39-44-77.5t-42-71.5z"},"children":[]}]};exports.u1F429=u1F429;var u1F42B={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2396 1768.5q-45 55.5-84 55.5-6 0-12-1.5t-6-8.5q0-8 5.5-19t5.5-31q0-19-13-52.5t-13-63.5q0-23 11.5-46.5t42.5-34.5q-2-64-35-119t-117-95l-43-19q12 45 19.5 90t7.5 88q0 104-20.5 229.5T2116 1970t-20 124.5-68 21.5q-18 0-33.5-5.5T1979 2083q0-25 13-64t13-64q0-11-1.5-25.5t-1.5-45.5q0-75-9.5-99.5t-32.5-45-81-38.5q-14 67-22.5 178.5t-19 141-71.5 29.5q-19 0-34-5.5t-15-27.5q0-28 15.5-80t15.5-123q0-49-10.5-91.5T1699 1657q-76 12-108 103t-32 160q0 62-2 123.5t-2 123.5q0 15 2.5 40t2.5 51q0 66-29.5 80.5T1466 2353q-26 0-43-12t-17-46q0-31 16-55t16-50q0-98-57.5-187t-89.5-114l-1 73q0 37-1 75 0 14 2.5 39t2.5 51q0 58-24 77t-68 19q-30 0-46.5-12.5T1139 2164q0-33 16.5-56t16.5-52q0-14-7.5-75t-13.5-83.5-44-89.5q-120-36-171.5-72T814 1628.5t-126-175-56-133.5q0-8 4-16t9-13l13-11q13-10 23.5-22.5T692 1234q0-14-10-14-11 0-23 9l-22 15q-63 39-109.5 56t-97.5 17q-93 0-181-59.5T161 1111q0-102 130-181.5T441 776t74-113q-23-23-23-56t20.5-57.5T563 525q27 0 45.5 22.5T636 601q51-14 99-14 38 0 72 8.5t63 24.5q17-28 36-41t44-13q36 0 64 24t28 58q0 28-17.5 48T981 729q23 40 35.5 84t12.5 90q0 53-6.5 78t-6.5 43q0 32 16.5 60t42.5 28q44 0 98-165.5T1282.5 700t123.5-81q39 0 67.5 22t53 62.5T1571 744q17 0 39-43t57-75 76-32q49 0 90 48.5t67 109.5l38 83 38 87q24 54 73 153t69 176q128 53 202 128.5t74 191.5q28 14 37.5 32.5t9.5 46.5q0 63-45 118.5zM810 858H688q-3 6-5.5 14t-2.5 18q0 26 17.5 45t43.5 19q30 0 52.5-19.5T816 883q0-13-6-25z"},"children":[]}]};exports.u1F42B=u1F42B;var u1F42C={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2043 1726q-63 155-172 268.5T1642 2163t-120 135q0 38 7.5 79t7.5 82q0 46-15.5 80.5T1479 2574q-50 0-100-88.5t-50-129.5q0-33-11-46.5t-40-13.5q-23 0-46.5 5t-46.5 5q-103 0-141.5-13t-38.5-40q0-48 67-74t143-26q26 0 56.5 7t58.5 7q75 0 140-56t105-157l14-38q12-32 21-74t9-75q0-53-23.5-85.5T1530 1649q-17 0-36 5l-38 10q-3 14-4 27t-1 26q0 47 13.5 108t13.5 99q0 27-10 41.5t-38 14.5q-46 0-105-45.5t-93.5-132.5-34.5-109q-187 12-280 90.5T751.5 1958 603 2054q-47 0-73.5-30.5T503 1928q0-35 6-69l25-137q6-34 6-69 0-65-23-166t-23-164q0-170 111-337t298.5-266 397.5-99h36q96-133 261.5-203.5T1893 347q79 0 117.5 25.5T2049 445q0 35-30.5 86T1951 674.5 1901 879q94 94 149.5 233t55.5 292q0 167-63 322zm-968-342q-35-37-78-37-37 0-61.5 29t-24.5 70q0 51 34 87t76 36q35 0 62-28.5t27-71.5q0-48-35-85z"},"children":[]}]};exports.u1F42C=u1F42C;var u1F42D={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2381.5 1260q-65.5 118-173 173.5T1989 1489h-17.5l-1.5 4q0 5 22 78t22 147q0 145-85 277t-260.5 201-369.5 69q-191 0-368-69t-262-201-85-274q0-71 22.5-149t22.5-79q0-3-1.5-3t-17.5-1q-114 0-221.5-57t-172-174-64.5-247q0-190 131-311.5T597 578q112 0 211 47.5t160 127 72.5 157T1074 987q16 0 68-16.5t157-16.5q98 0 161.5 16.5T1525 987l12-2q8-3 17-66.5t63-147T1776 633t226-55q187 0 316 124t129 309q0 131-65.5 249zM823 1220l76-107 3-13q0-8 1-22 0-108-67.5-195T648 796q-108 0-196 77t-88 188 87 193 200 82q77 0 101-26t71-90zm191 341q-25-31-60-31t-59.5 30-24.5 72 24.5 72.5T954 1735t60-31 25-72q0-40-25-71zm404 412q27 0 65.5-21t38.5-48q0-8-5.5-14t-13.5-6q-11 0-34.5 15.5T1408 1915q-32 0-47.5-13.5T1340 1865q26-14 42.5-42.5t16.5-63.5q0-49-29-81.5t-66-32.5q-39 0-66.5 33.5T1210 1759q0 34 15.5 61.5t39.5 41.5q0 32-12.5 43.5T1215 1917q-14 0-27-4.5t-25-10.5l-22-10q-10-4-18-4-9 0-14 7t-5 14q0 24 30 41.5t66 23.5q2 60 24 102t58 42q13 0 20-8t12-8q7 0 15.5 8t22.5 8q23 0 37.5-28.5t21.5-73.5zm296.5-413q-24.5-30-59.5-30t-60 30-25 72q0 43 24.5 73t60.5 30q35 0 59.5-30.5t24.5-72.5-24.5-72zm442.5-306q87-82 87-189 0-111-86-190t-197-79q-122 0-188.5 87.5T1706 1078q0 25 4 35l42 59q92 134 119 149t85 15q114 0 201-82z"},"children":[]}]};exports.u1F42D=u1F42D;var u1F42E={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2167 1039.5q-56 54.5-196 75.5l-60 10q3 17 4 34t1 34v17q0 9-1 17l-4 44q-4 41-7 81t-3 80q0 119 39.5 223.5T1980 1858q0 196-176 325t-441 129q-335 0-545.5-133.5T607 1824q0-85 30-165.5t50-161 20-165.5q0-11-1-23t-1-23l1-77q0-39 5-79-30-7-119-20.5t-152-65T377 897q0-81 53-129.5T579 719q83 0 158.5 50T851 831q-4-36-5.5-63.5T844 703q0-84 31-126.5t92-42.5q49 0 84.5 34.5T1151 739q33-5 66.5-7t68.5-2q76 0 147 12l18-38q48-109 87.5-142.5T1621 528q59 0 90.5 41.5T1743 695q0 28-2.5 58.5T1737 834q40-10 121-62.5t163-52.5q91 0 146.5 48t55.5 130q0 88-56 142.5zM2098 838q-27-21-77-21-34 0-57 8t-43 21l-61 38q-31 20-66 35t-79 15q-43 0-70-19.5t-130.5-53T1270 828q82 97 82 245 0 133-58 239t-138.5 136.5-182.5 43T760 1609q-24 48-40 109.5T704 1824q0 151 135.5 252t355.5 126q-108-24-189-99.5T925 1928q0-38 15-82-17-2-34-14t-17-30q0-26 32-41.5t76-15.5q20 0 40 3t38 9q34 0 67 31.5t33 74.5q0 14-2.5 23t-9.5 22l-4 5q0 2-1 7 0 36 42.5 59t103.5 23q45 0 83-15t51-40l3-4q-20-9-28.5-28t-8.5-44q0-57 50-91.5t119-34.5q45 0 78 15t33 41q0 14-9 23t-20 14q14 26 22 54t8 51q0 114-98.5 189t-245.5 81h29q224 0 367.5-102.5T1881 1858q0-81-38.5-187t-38.5-240q0-42 3.5-84t6.5-85l2-42q0-8 1-14.5t1-14.5q0-33-7-65.5t-7-35.5q0-61 160.5-73.5T2125 897q0-38-27-59zM1092.5 2079.5Q1186 2142 1314 2142q127 0 211.5-55.5T1610 1945q0-49-29-83.5t-52-34.5q-11 0-22 9t-11 20q0 14 9.5 33t9.5 50q0 54-61.5 95.5T1304 2076q-92 0-155.5-42t-63.5-114q0-25 11-44l7-12q0-5-8.5-19t-21.5-14q-36 0-55 29t-19 71q0 86 93.5 148.5zM948 801q22-14 48.5-23t55.5-18l-30-61q-14-27-26.5-47.5T967 631q-17 0-21.5 18.5T941 702q0 24 2 48t5 51zm14 472v14q0 38 20 63.5t48 25.5q31 0 55.5-30.5t24.5-70.5q0-36-18.5-62.5T1041 1186q-33 0-56 31t-23 56zm570-512q28 8 54.5 17.5T1640 799v-8q0-15 2.5-36t2.5-61q0-31-5-50t-19-19q-11 0-26.5 17t-32.5 55zm113 451.5q25 29.5 25 74.5 0 34-19 59.5t-50 25.5q-29 0-55.5-30t-26.5-74q0-37 19.5-61t49.5-24q32 0 57 29.5z"},"children":[]}]};exports.u1F42E=u1F42E;var u1F42F={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2109.5 1966Q2000 2068 1892 2095l-85 21q-106 27-131.5 66t-80.5 85-137.5 77-183.5 31q-142 0-240-52.5T904 2210t-132-86-191.5-88.5-145.5-165-54-224.5q0-48 14.5-131.5t31-179T464 1170l16-54q3-12 3-22 0-20-21.5-50T424 966t-16-105q0-128 87-215t217-87q47 0 100 17.5T915 624l43 31q6 4 8 4 3 0 10-3l23-7q66-20 134.5-29t140.5-9q139 0 277 39l47 14q23 8 50 8 16 0 32-12t72-37 122-25q130 0 217 87.5t87 217.5q0 85-38.5 144.5T2101 1135q0 21 11.5 52.5T2144 1334t47.5 212.5T2219 1718q0 146-109.5 248zm7.5-210q-59 63-147.5 103t-181.5 40q-20 0-38-6.5t-18-25.5q0-23 69.5-35t169.5-74 132-151l-6-28q-50 75-152.5 122t-196.5 47q-19 0-33.5-4t-14.5-17q0-20 43.5-31t148-76.5T2059 1416q-5-15-6.5-31t-5.5-32q-17 18-44.5 32t-53.5 44l-29 34q-15 17-29 28.5t-29 11.5q-11 0-11-14 0-11 16.5-39.5t16.5-63.5q0-40-18-71t-18-36q0-3 3.5-7t11.5-4q17 0 42.5 30.5t49.5 30.5q22 0 34-40.5t12-72.5q0-18-4.5-38t-9.5-39l-9-35q-5-16-5-27 0-8 3-11t13-3q13 0 25 14 6-18 14-33l16-28q19-31 26.5-56.5t7.5-58.5q0-84-56-143.5T1875 698q-33 0-62.5 10.5T1764 729l-41 20q-19 10-37.5 16.5T1644 772l-33-2-5-2q-33-4-70.5-18.5T1382 718q-9 3-13.5 11t-4.5 26q-4 0 106.5 22.5T1581 838q0 11-13.5 15t-26.5 4h-8q-45-6-88.5-13t-88.5-11l-5 38q0 5 11 7.5t23 4.5l14 2 30 7q38 9 60.5 21.5T1512 942q0 10-11 14t-22 4q-35 0-70-8t-69-12q-6 24-18.5 44.5T1288 1011l-7 1q-24 0-38-19.5t-22-59.5l-29 2q-17 0-40 7t-34 7q-10 0-25.5-8t-15.5-21q0-16 32.5-28.5T1212 872l-2-42q-38 4-76.5 12.5T1056 851q-14 0-30-3t-16-14q0-13 16-23.5t50-21.5l27-8q25-8 50.5-14.5t53.5-9.5q-2-13-9.5-27t-22.5-14q-37 5-74.5 11.5T1027 745l-9 3q-11 4-25 6.5t-29 2.5q-28 0-49-12t-38-25l-28-18q-29-18-67-31.5T711 657q-90 0-146.5 59.5T508 860q0 75 36.5 129t37.5 93q6-9 14-17t18-8q8 0 8 11 0 14-5 33l-6 25q-8 17-10 29.5t-2 33.5q0 50 20.5 82.5T657 1304q5 0 12-6l14-12q8-7 16.5-12.5t18.5-5.5q11 0 11 10 0 13-19.5 32t-19.5 76q0 61 16.5 94t16.5 42q0 4-1.5 5.5t-5.5 1.5q-26 0-56-38t-34.5-63.5T591 1382t-57-74l-3 8q3 145 62.5 225T741 1653t88 66q0 13-10 21.5t-30 8.5q-93 0-175.5-40.5T485 1589q0 60 14.5 96.5t42 72.5 70 59 108 49 65.5 46q0 10-25 18t-61 8q-27 0-53-5t-52-14q20 28 91 63t159 61.5 132 97 126.5 102T1274 2274q114 0 198-46t129-111 193.5-100 229-106 93.5-155zm-517-90q-8 15-10 30.5t-2 30.5q0 24 5 48l11 49 10 50 5 49q0 90-98 140.5t-240 50.5q-116 0-230.5-47.5T936 1900q0-34 16-89.5t16-96.5q0-23-5.5-44.5T940 1631q-91-22-143.5-76.5T744 1422q0-31 12.5-58t37.5-27q23 0 28.5 52.5t83 96.5 169.5 44q71 0 109-29.5t38-86.5v-11q0-5-1-11-72-17-141.5-56T971 1240q-9-14-11.5-22t-2.5-13q0-14 12-19t30-5q17 0 36 4l33 7q54 11 110 26t112 15q47 0 123-18t124-18h19q17 0 26.5 6t9.5 16q0 11-8 25.5t-17 25.5l-9 12q-34 37-98 68.5t-113 42.5l-3 15q-2 7-2 15 0 43 19.5 67t97 36 119.5 12q65 0 119-24.5t67-93.5l3-16q2-15 8-28t15-13q17 0 28.5 20.5t11.5 42.5q0 91-56.5 153t-163.5 74q-3 3-5 6zm-149 310.5q48-31.5 48-87.5 0-79-60.5-143t-157.5-64q-87 0-152.5 59t-65.5 144q0 51 27.5 71t92 36 131.5 16q89 0 137-31.5zM1799.5 762q40.5-24 84.5-24 56 0 91.5 37.5T2011 872q0 42-22.5 89t-48.5 47q-24 0-56.5-55t-78.5-82.5-46-54.5q0-30 40.5-54zM606 956.5Q581 913 581 864q0-59 32.5-96.5T705 730q37 0 80.5 19t43.5 54q0 28-46 58t-75.5 84.5T655 1000q-24 0-49-43.5zm997.5 155.5q-32.5-30-32.5-71 0-32 23-57t62-25 71.5 30 32.5 71q0 34-23.5 58t-61.5 24q-39 0-71.5-30zM911 1140q-30-8-48.5-31t-18.5-54q0-41 30.5-69.5T942 957q39 0 63.5 24.5t24.5 59.5q0 42-30 71.5t-70 29.5zm-209.5 18.5Q663 1132 663 1094q0-36 25-67t48-31q10 0 12.5 4.5t2.5 10.5q0 8-3 18l-12 40q-3 9-3 13 0 19 13.5 29t30.5 16l30 12q13 6 13 16 0 12-10.5 21t-27.5 9q-42 0-80.5-26.5zm1242 17.5q-14.5 17-51.5 17-40 0-66.5-11.5T1799 1149v-7h46q25 0 41.5-9t16.5-39q0-12-1-19l-3-12q-2-5-3-10.5t-1-14.5q0-14 11-14 18 0 35 33t17 70q0 32-14.5 49z"},"children":[]}]};exports.u1F42F=u1F42F;var u1F430={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2064.5 958.5Q1866 1194 1837 1223l-24 25q-26 26-33 38.5t1 66.5 83.5 224 75.5 323q0 189-107.5 307t-277 187.5T1180 2464q-213 0-419-69.5T445.5 2197 336 1896q0-96 35.5-195t63.5-195.5 77-190.5 118-158l4-4 3-38q21-316 56-466t104.5-264.5T975 200t214-70q114 0 182 71t68 185q0 153-97.5 355T1230 1048h6q28-82 30-95t50.5-109.5 91.5-159 91.5-118 88-90.5 77-61.5 69-43 63-28.5 57-18 51.5-9.5 53-3.5q144 0 224.5 73.5T2263 567q0 156-198.5 391.5zM1667 1296q2-47 50.5-100.5t52.5-58.5l114-131q151-174 210.5-269.5T2154 570q0-70-54.5-110T1958 420q-126 0-260.5 106.5T1472 785t-114 233l-14 50q-12 40-22.5 58.5t-17 24.5-27.5 6q-31 0-47.5-1t-38.5-3l-36-3q-24-2-30-5t-6-56q0-138 105.5-350T1330 385q0-71-36-109t-105-38q-114 0-221.5 106.5t-166 312T743 1160q0 55-30 70.5t-81.5 89.5-90 208.5-68 203T444 1893q0 141 96.5 245t275 161 364.5 57q160 0 299.5-49.5t246-145T1832 1898q0-139-82.5-317t-82.5-285zm-793.5 600q-29.5 33-66.5 33-39 0-67.5-33.5T711 1816q0-45 28.5-78t68.5-33q38 0 66.5 32.5T903 1816q0 47-29.5 80zm642 0q-27.5 33-67.5 33-38 0-67-33t-29-80 28.5-79 66.5-32 67 31.5 29 79.5q0 47-27.5 80zm-172 292q-27.5 25-46 32t-56.5 7q-41 0-62-13t-27-13q-9 0-32 16t-73 16q-44 0-81.5-24t-37.5-63q0-10 7.5-18.5t27.5-8.5q12 0 31.5 24t54.5 24q36 0 48.5-16t12.5-57l-22-9q-24-9-42-25.5t-18-36.5q0-7 7-20t17-13q9 0 29 20t58 20q20 0 37-7t34-18l13-8q6-4 14-4 11 0 16 7.5t5 18.5q0 21-25 43.5t-47 29.5q0 8 1.5 14t1.5 14q0 19 19 29.5t57 10.5q15 0 40-19t42-19h7q4 0 10.5 5t6.5 15q0 21-27.5 46zm581-1407Q1868 836 1798 915.5t-116.5 148-85.5 127-81 58.5q-34 0-52.5-21.5T1444 1168q0-94 82-235.5T1714 707t211-84q22 0 39 11t17 40q0 52-56.5 107zM995 1155q0 17-24.5 27.5T915 1193q-38 0-52-41.5T849 987q0-216 91-377t188-161q24 0 33.5 15.5t9.5 39.5q0 66-81 245t-83 296q0 26-2 55.5t-10 54.5z"},"children":[]}]};exports.u1F430=u1F430;var u1F431={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2063 1244q57 91 88 193t31 215q0 233-119.5 374.5T1732 2234t-439 66q-219 0-428.5-67t-328-207.5T418 1652q0-107 28.5-209t91.5-199q-7-58-12.5-148.5T520 940q0-197 37-308t107-111q69 0 184 90.5T1071 828l54 60q43-8 86.5-11t88.5-3 88.5 3 86.5 11l54-60q106-123 221-215t184-92q70 0 108 111t38 311q0 89-6 170.5t-11 130.5zm-526.5 665.5q-4.5-6.5-10.5-6.5-3 0-7 2l-8 5q-22 14-46 22.5t-49 8.5q-34 0-60.5-17t-26.5-52v-13q23-8 42-26t19-41q0-32-20-47t-70-15-69.5 15-19.5 47q0 20 16.5 37t36.5 27v16q0 35-27 52t-60 17q-26 0-49.5-8.5T1082 1910l-8-5q-4-2-8-2-6 0-10 6.5t-4 11.5q0 25 35.5 45.5t75.5 25.5q6 8 35 93t102 85q42 0 69-29.5t40-75.5l13-50 5-22q48-4 81-29.5t33-42.5q0-5-4.5-11.5zm-575.5-399q-33-39.5-76-39.5-45 0-76.5 40.5T777 1610q0 55 31.5 96.5T885 1748q44 0 76.5-40.5T994 1610q0-60-33-99.5zm818 .5q-32-40-76-40t-77 40-33 99q0 56 32.5 97t77.5 41q44 0 76-41t32-97q0-59-32-99z"},"children":[]}]};exports.u1F431=u1F431;var u1F432={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2223 2431q-187 156-493 156-149 0-281-44.5T1317 2427q0-43 51.5-85.5t78-92T1473 2148q0-14-2-27t-5-27l-104 112q-90 97-156.5 126t-164.5 29q-137 0-193.5-36T760 2218q-48 16-87.5 48t-60.5 79l-13 27q-12 27-25.5 42t-26.5 15q-15 0-22-21t-7-52q0-109 48-164t142-78 137.5-72 89-131.5 136.5-133 184-50.5q36 0 65.5 16t29.5 44q-2 48-77 64.5t-147 132-114 146.5-161 62q11 23 45.5 39.5T984 2248q38 0 62.5-6t64.5-30l-7-22q-6-15-12-40.5t-6-40.5q0-14 5.5-24.5t19.5-10.5q11 0 25.5 11t27.5 24l10 11q59-111 176-159t158.5-92 41.5-82q0-63-88.5-108t-151.5-45q-118 0-243.5 63.5t-161 103.5-83.5 75q0 5-10.5 59t-34.5 54q-19 0-35-15t-35-32q-47 20-95.5 32T508 1986q-31 0-61-3.5t-59-11.5q-11 17-23.5 30.5T334 2015q-23 0-29-33.5t-9-48.5q-57-36-82-70t-25-67q0-28 16.5-63.5T222 1667q0-75 39.5-125.5t113.5-68 162.5-87 100-104.5 31-102.5 86-149.5T910 911q9-19 16-37.5t7-41.5q0-65-35.5-167T862 522q0-32 20.5-57.5T941 439q64 0 83 86t28 97q21-5 59.5-82t70.5-170.5 91-95.5q32 0 55 25.5t23 75.5q0 44-79 242.5T1174 860q36-5 72.5-8t67.5-3q20 0 41.5 2.5t41.5 5.5l32-34q21-32 23-96t8-90v-63q0-79 18-113t55-34q48 0 73.5 23t25.5 80q0 25-3 48t-3 49q0 6 1 11t6 5q21 0 64-33t125-120l26-29q26-30 52.5-48.5T1952 394q31 0 53.5 23.5T2028 475q0 39-26 77.5T1841 735l-160 169q20 0 39 5l35 11q38 11 78.5 18.5t79.5 7.5q72 0 120-28t74-28q11 0 14 6.5t3 16.5q0 22-11 38.5t-25 30.5l-19 18q-17 16-35 29t-30 13q0 11 23 16.5t55 5.5l25 1q65 0 82.5-6t25.5-9l18-6q8-2 15-2 8 0 11.5 6t3.5 11q0 9-8 23.5t-16 22.5l-9 10q-7 8-39 34t-32 45q0 15 27 17t51.5 7.5 46.5 5.5q14 0 26-1t25-6l14-6q8-3 16-3 10 0 14.5 5.5t4.5 12.5q0 26-39.5 63.5T2272 1333l-23 4q-11 2-19 6t-8 11q0 10 9.5 17t28.5 13l14 5q27 10 67 17t43.5 9 3.5 15q0 19-19.5 38.5T2306 1508q38 82 71 207t33 281q0 279-187 435zm-768-9q47 17 142 32.5t154 15.5h23q65-65 104-159.5t39-190.5q0-119-57-219t-161-157q0 73-26 131t-114 130q32 70 32 141 0 85-37.5 153t-98.5 123zm-213.5-1095.5q-9.5-20.5-24.5-39.5l-199 114q17 37 50.5 58.5t71.5 21.5q46 0 78.5-32t32.5-78q0-24-9.5-44.5zm-566 298Q659 1604 626 1604q-35 0-65.5 24.5T530 1687q0 25 22 32t51 7q43 0 66-14t23-44q0-23-16.5-43.5zM703 1245q-19 15-28.5 40.5T665 1338q0 37 18.5 63t48.5 26q18 0 36-10t31-30zm-394 450q24 20 53 20 23 0 33.5-11.5T406 1672q0-31-21.5-58.5T338 1586q-22 0-37.5 20.5T285 1649q0 26 24 46z"},"children":[]}]};exports.u1F432=u1F432;var u1F433={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1673.5 2048Q1502 2175 1265 2241t-509 66q-115 0-227.5-17.5t-213.5-57-128.5-81.5-27.5-161q0-203 93-373t251.5-258 370.5-88q151 0 309.5 48t295.5 130 233 178.5 114.5 129 18.5 63.5q0 101-171.5 228zM454 1652.5q-20-24.5-55-24.5-37 0-68 32.5t-31 78.5q0 34 23.5 60.5T375 1826q39 0 69-36t30-78q0-35-20-59.5zm659 6q-30-31.5-70-31.5-36 0-60 27t-24 68 28 73.5 64 32.5 64-27.5 28-63.5q0-47-30-78.5zm1267-232q-60 43.5-143 48.5h-29q-14 0-30 6t-16 31q0 28 23 72t23 66q0 39-51 67t-118 28q-50 0-87-18t-37-48q0-17 27.5-71.5t27.5-95.5q0-35-50-61.5t-78-71.5-28-86q0-18 3.5-35.5t7.5-34.5l8-33q3-16 3-30 0-6-1-13t-1-15q0-17 18-17 40 0 105 49t82.5 113 51.5 64q11 0 55-24t109-24q25 0 49.5 1t47.5 1q19 0 33.5-3t36.5-3q11 0 14.5 8t3.5 18q0 68-60 111.5zM472 654q43-27 102-27 85 0 153.5 56.5t85 86.5 25.5 30q5 0 9.5-6.5T855 778l6-17q7-23 40-73.5t82-81 113-30.5q46 0 74.5 16.5T1199 639q0 25-12.5 31t-31.5 6h-27q-14 0-30.5 7t-16.5 18q0 19 33 19h22q39 0 66.5 19.5T1230 790q0 26-25.5 44.5T1154 853q-21 0-53.5-17t-82.5-17l-16 1q-8 0-38.5 12T933 854q0 3 6 9t19 6q11 0 25-4t27-4q28 0 61 25.5t33 50.5q0 14-15.5 31.5T1051 986q-19 0-36-5t-34-5q-54 0-82.5 33.5T861 1099l-9 60q-4 27-10 45.5t-21 18.5q-28 0-32-70t-16-131.5-40-85-97-28-69-44.5q0-27 16-36t36-9q24 0 47.5 6.5T700 832q15 0 15-17 0-22-20.5-35T644 767q-21 0-38.5 4.5T572 781l-32 9q-16 5-32 5-31 0-55-17.5T429 727q0-46 43-73zm-91.5 324.5Q395 965 417 965q23 0 40.5 14.5T475 1017q0 20-14 33.5t-38 13.5q-21 0-39-14.5t-18-37.5q0-20 14.5-33.5zm918-492Q1313 473 1334 473q23 0 40.5 14.5T1392 526q0 20-13.5 33t-38.5 13q-20 0-38-14.5t-18-37.5q0-20 14.5-33.5zm-1080 412Q203 882 203 861q0-22 14.5-36.5T254 810q29 0 45 17.5t16 35.5q0 21-17 36.5T258 915q-24 0-39.5-16.5zM1462 738q16 18 16 36t-16.5 34-42.5 16q-21 0-37-15t-16-38q0-21 14.5-36t37.5-15q28 0 44 18zm-167.5 240q-13.5-13-13.5-32t12-30.5 29-11.5q24 0 38 14t14 29q0 18-15 31t-33 13-31.5-13zM242 650q-13-13-13-30 0-20 12-32.5t29-12.5q23 0 37.5 15t14.5 29q0 17-14.5 30.5T273 663q-18 0-31-13z"},"children":[]}]};exports.u1F433=u1F433;var u1F434={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2324 2343q-71 19-258.5 45.5T1719 2415q-342 0-479-25.5t-137-76.5q0-13 5-29l13-40q32-95 46.5-196.5T1182 1843q0-89-13.5-162t-41.5-141q-83 10-174.5 47.5T764 1717t-205 92q-128 0-241-99.5T205 1510q0-58 40-118t103.5-130T468 1134t99.5-110 65.5-88 32-111 79.5-117.5T848 639q-17-36-24.5-84.5T816 455q0-67 22-133.5t62-66.5q51 0 118 105t123 154q25-5 50.5-6.5t52.5-1.5h15q7 0 15 1 23-111 84.5-184t107.5-73q27 0 46.5 28.5t31 103.5 23.5 138 20.5 66 57.5 25.5 91.5 53.5 109 50.5 98 32.5 31.5 43q0 18-14 37t-39.5 27-42.5 18-17 23q0 43 141 72.5t141 74.5q0 32-60.5 61t-60.5 55q0 27 40.5 59t114.5 56 74 59q0 41-68.5 57.5T2115 1452q0 35 41.5 69t113 62.5 71.5 66.5q0 41-71 55.5t-71 67.5q0 27 19.5 51.5t45.5 43.5q17 12 68.5 33.5t51.5 50.5q0 30-27 51t-60 21q-4 0-8.5-1t-8.5-1q-24 0-38.5 12t-14.5 32q0 35 28 68.5t84 61.5 56 73q0 55-71 74zM517 1502q-21-14-46-14-35 0-60.5 19t-25.5 49 19.5 40 41.5 10q35 0 63.5-17.5T538 1543q0-27-21-41zm552-444.5q25-26.5 25-61.5t-25-60.5-62-25.5q-34 0-60 25t-26 63q0 35 25 60.5t62 25.5q36 0 61-26.5z"},"children":[]}]};exports.u1F434=u1F434;var u1F435={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2214.5 1677.5Q2145 1741 2069 1741q-5 0-9-1h-9q-55 169-183 268t-287 141l-47 10q-59 13-121 21t-120 8q-126 0-280-39.5t-284.5-142T547 1740l-18 1q-76 0-145-64t-69-195q0-102 55.5-171t151.5-69q5 0 9 1t9 1q46-179 155.5-322T962 710.5t330-68.5q185 0 344.5 69.5T1905 924t154 320q5 0 8.5-1t8.5-1q82 0 145 61.5t63 178.5q0 132-69.5 195.5zM523 1638q-12-73-12-153 0-33 1.5-65t6.5-65q-59 10-85.5 42t-26.5 90q0 55 25.5 104t77.5 49q8 0 13-2zm1305 27q-4-20-9-40l-11-40q-7-24-10-50t-3-56q0-50 14.5-113.5T1824 1264q0-57-25.5-111.5T1740 1068t-62-41.5-91-11.5q-54 0-141.5 50.5T1303 1116t-146-50.5-146-50.5q-61 0-90.5 12t-62.5 42.5-58 83-25 111.5q0 38 14.5 103.5T804 1481q0 28-2.5 53t-9.5 51l-11 39q-6 20-10 40t-4 41q0 140 144 238t377 98q261 0 402.5-100t141.5-234q0-22-4-42zm337.5-268q-26.5-32-85.5-42 2 33 4.5 65t2.5 65q0 39-2.5 77.5t-8.5 75.5q3 2 10 2 52 0 79-47.5t27-110.5q0-53-26.5-85zm-1176-111q27.5-34 66.5-34t67.5 33.5 28.5 80.5q0 48-28.5 81.5T1056 1481q-40 0-67-34t-27-81q0-46 27.5-80zm486-.5q28.5-33.5 67.5-33.5 37 0 66.5 33t29.5 81q0 49-29.5 82t-66.5 33q-39 0-67.5-33.5T1447 1366q0-47 28.5-80.5zM1573 1856q-92 59-274 59-141 0-253.5-50.5T933 1755q0-48 100.5-79.5T1323 1644q174 0 258 27t84 77q0 49-92 108zm-335.5-354q18.5-13 64.5-13 34 0 56 9.5t22 30.5q0 23-21.5 41.5T1300 1589q-29 0-55-17t-26-42q0-15 18.5-28z"},"children":[]}]};exports.u1F435=u1F435;var u1F436={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2026 1399q0 243-91 437.5T1671 2127t-380 96q-210 0-383-96.5t-263.5-292T554 1396q8 2 17 3t18 1q77 0 128-62.5t74.5-138T905 1080t144-103.5 54-140.5q0-35-11.5-70t-28.5-65q43-12 107.5-22t124.5-10q57 0 123.5 10.5T1533 706q-17 29-27 62t-10 68q0 80 50 138.5t143.5 103 121.5 128 76 139 121 55.5q13 0 18-1zm-1030 86q-27-33-66-33t-66.5 31.5T836 1559q0 46 27 78t66 32 66.5-32 27.5-77q0-42-27-75zm484 503.5q-8-7.5-20-7.5-10 0-23 8l-4 3q-16 10-38 10-29 0-51-16l-10-6q-4-8-4-18l-1-19q71-9 100-34.5t29-71.5q0-50-49-81t-113-31q-67 0-113 32t-46 88q0 41 33.5 70t95.5 29v10q0 26-19.5 36t-40.5 10q-22 0-37-9t-32-9q-12 0-20.5 7.5t-8.5 21.5q0 26 26.5 40t62.5 14q35 0 69-12t36-12q50 22 89 22 18 0 35.5-4t32.5-12l16-12q5-4 9-11t4-16q0-12-8-19.5zm254.5-505Q1707 1452 1669 1452t-66.5 30.5-28.5 75.5q0 48 28.5 79.5t66.5 31.5q37 0 65-32.5t28-77.5q0-44-27.5-75.5zm-1204-724Q634 643 784 643q121 0 180 59.5t59 133.5q0 50-30.5 89T857 1020.5t-134.5 139-61 122.5-72.5 40q-65 0-113.5-86T427 1040q0-164 103.5-280.5zm1592 477.5q-49.5 85-114.5 85-41 0-72-40.5t-61-123-135-140-135.5-95.5-30.5-86q0-91 70-142.5t171-51.5q149 0 253 117t104 281q0 111-49.5 196z"},"children":[]}]};exports.u1F436=u1F436;var u1F437={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2135 1045q60 134 93 267.5t33 235.5q0 329-240 531.5T1299 2282q-475 0-718-194t-243-528q0-109 35.5-250t85.5-258q30 40 86.5 68.5T651 1149q50 0 76-31.5t28-74.5v-6q26-112 76-180t50-131q0-17-5-36t-13-39q98-44 206.5-66.5T1291 562t223.5 20.5T1726 645q-20 46-20 84 0 54 54.5 133.5t71 183T1937 1149q47 0 106-30.5t92-73.5zm-1055.5 725q76.5 45 205.5 45 143 0 212.5-42.5T1567 1634q0-107-83-172t-204-65-199 66-78 177q0 85 76.5 130zm-152-291.5Q958 1442 958 1393q0-52-31-87.5t-72-35.5-72 35-31 87q0 51 30.5 87t72.5 36 72.5-36.5zM1426 1878q-34 6-69.5 10t-71.5 4q-29 0-63-3t-70-11q11 61 52.5 101t86.5 40q46 0 84.5-40t50.5-101zm391-572q-31-36-72-36-42 0-72 36.5t-30 86.5q0 51 30 86.5t72 35.5q41 0 72-35.5t31-87.5q0-50-31-86zm-667 384q-11-25-11-79 0-51 11-77t35-26q28 0 37.5 30.5t9.5 72.5q0 44-9.5 74t-37.5 30q-24 0-35-25zm203.5-155.5q10.5-26.5 34.5-26.5 28 0 38 30.5t10 72.5q0 44-10 74t-38 30q-24 0-34.5-25.5T1343 1611q0-50 10.5-76.5zm455.5-876q24-36.5 53-36.5 23 0 47 14l41 26q77 52 117.5 110.5T2108 886q0 54-29 100.5t-79 65.5l-12 5q-13 6-27 10t-24 4l-7-1q-12-4-16-12.5t-4-21.5q0-14-20-84t-62.5-129-42.5-96q0-32 24-68.5zM577.5 709Q677 622 725 622q27 0 52 34.5t25 68.5q0 37-41 95.5t-61.5 123-24.5 96-24 31.5q-26 0-76-24.5t-73.5-69T478 888q0-92 99.5-179z"},"children":[]}]};exports.u1F437=u1F437;var u1F438={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2093 1378q15 42 22 87.5t7 93.5q0 298-231 457t-595 159q-379 0-599-164t-220-451q0-62 11.5-120.5T529 1301t42-109 13-62q0-36-12.5-78T559 962q0-163 77-234.5T838 656q61 0 111.5 17.5t79.5 37 59 66.5l19 30q17 28 32 36t58.5 14.5T1299 864q56 0 100-6t60-14 33-37l19-30h-1q43-67 112-94t137-27q126 0 203 71t77 226q0 8-1 17t-1 17q-2 29-13 72t-11 71q0 34 13 61t39 104zm-649.5-228.5q13.5 10.5 30.5 10.5 16 0 26.5-8.5t10.5-27.5q0-21-13.5-31.5T1467 1082q-14 0-25.5 9t-11.5 28q0 20 13.5 30.5zm-351.5 2q12 8.5 26 8.5 17 0 30.5-10.5t13.5-30.5q0-19-11.5-28t-25.5-9q-17 0-31 10.5t-14 31.5q0 19 12 27.5zm-221-170q26-33.5 26-80.5 0-46-26.5-79T807 789q-35 0-62.5 32T717 901t27.5 81 62.5 33q38 0 64-33.5zm938.5 230q-11.5-7.5-29.5-7.5-31 0-80 14l-113 33q-63 18-136.5 32.5T1297 1298t-153.5-14.5T1007 1251l-112-33q-50-14-80-14-18 0-29.5 7.5T774 1237q0 41 69.5 105t191.5 111 262 47q141 0 262.5-47t191.5-111 70-105q0-18-11.5-25.5zm39-389.5q-27.5-33-63.5-33-35 0-62.5 32t-27.5 80 27.5 81 62.5 33q36 0 63.5-34t27.5-80-27.5-79z"},"children":[]}]};exports.u1F438=u1F438;var u1F439={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1923 2020.5Q1746 2169 1367 2169q-17 0-33.5-1t-33.5-1-33.5 1-33.5 1q-374 0-553.5-146T500 1676q0-114 53-211t93-198l33-84q16-42 35-83-87-12-145.5-79T510 873q0-84 68.5-152.5T734 652q61 0 113 43.5T941 823q81-45 173-68t186-23q95 0 186.5 23t173.5 68q48-92 98.5-131.5T1866 652q88 0 156 69.5t68 152.5q0 85-60 149.5t-142 76.5q46 106 69 171.5t83 174.5 60 230q0 196-177 344.5zM1206.5 1688q39.5 38 97.5 38 55 0 94-37.5t39-71.5q0-11-6-18.5t-20-7.5q-12 0-37.5 12t-88.5 12q-11 0-38-6.5t-50-6.5q-12 0-21 4.5t-9 15.5q0 28 39.5 66zM767 987q10 4 21 4 14 0 31.5-19t37.5-62q0-16-35.5-61T741 804q-28 0-53 24.5T663 885q0 26 17.5 49t67.5 46zm205 471.5q-27-36.5-65-36.5-37 0-64.5 35.5T815 1540q0 50 27 84t63 34q38 0 66-33.5t28-83.5q0-46-27-82.5zm581.5 395.5q-4.5-9-15.5-9-6 0-12 2l-15 6q-9 4-20 6.5t-27 2.5q-47 0-95-22.5t-69-22.5q-19 0-68 22.5t-95 22.5q-27 0-42-7.5t-29-7.5q-11 0-16.5 8t-5.5 21q0 31 32 47.5t82 16.5h16q0 27 12 75.5t23 66 55 17.5q22 0 30-17t13-17q7 0 12.5 17.5t38.5 17.5q50 0 61.5-74t14.5-86h11q55 0 84-17.5t29-46.5q0-13-4.5-22zm204.5-397q-27-35-65-35-37 0-63.5 35t-26.5 82q0 50 25.5 84.5t64.5 34.5q38 0 65-34t27-81q0-51-27-86zm154-500.5q43-34.5 43-71.5 0-33-26-57t-54-24q-31 0-72 36.5t-41 69.5q0 4 1 5l9 18q12 25 27 41.5t31 16.5q39 0 82-34.5z"},"children":[]}]};exports.u1F439=u1F439;var u1F43A={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2287.5 1652.5q-8.5 14.5-25.5 14.5-11 0-23-5t-24-12l-22-13q-11-6-20-9l-11-2h-11q-21 0-21 17 0 19 27.5 57.5t27.5 67.5q0 14-13 28.5t-36 14.5q-20 0-54-22t-53-22q-8 0-10 4t-2 13q0 19 13 49.5t13 50.5q0 29-15 41.5t-26 12.5q-17 0-73.5-30t-110.5-30q-36 0-62.5 19t-34.5 64l-13 62q-8 39-21 59.5t-35 73-53.5 97-95 70-85.5 36-85 10.5q-113 0-171.5-18t-136-105-79.5-101-14-43l-19-39q-17-35-28.5-91.5t-43-71T760 1886q-54 0-95.5 18t-70.5 39l-21 15q-11 7-22 12t-21 5q-12 0-27-14t-15-46q0-23 13-62t13-59q0-12-6-23-31 10-59 21.5t-60 11.5q-6 0-11.5-1t-7.5-1v-7q0-3-1-9 0-41 45.5-95t45.5-76q0-7-1-10-43 0-99.5-13t-56.5-38q0-27 56.5-78.5T481 1345t93.5-148 28.5-104q0-18-46.5-82.5T452.5 818 395 565q0-83 33-122t95-39q110 0 285.5 82.5T1036 597q65-20 133-31.5t137-11.5q68 0 137 11t133 32q23-11 209-102t304-91q63 0 95.5 38t32.5 115q0 129-57.5 261.5T2047 1021t-55 120q0 62 52 133.5t85 124.5 100 119 67 108q0 12-8.5 26.5zM874 758l21-13q31-18 28-27.5T894 695l-38-19q-106-47-164.5-65T617 593q-22 0-37.5 13.5T564 642q0 17 8 33l13 31q22 58 68.5 145t72.5 87q13 0 20-23.5t43.5-76.5 84.5-80zm163 508.5q-37-38.5-85-38.5-38 0-62.5 25t-24.5 63q0 45 37 84t84 39q35 0 61.5-24t26.5-63q0-47-37-85.5zm470 856.5q-9 0-25 10t-67 10q-41 0-64-17.5t-23-50.5q65-3 101.5-28.5t36.5-78.5q0-49-50.5-79.5T1302 1858q-65 0-111 33.5t-46 87.5q0 42 37.5 69.5T1285 2076q0 39-21.5 53t-63.5 14q-23 0-35-3t-19-7l-14-7q-7-3-18-3-9 0-15 5t-6 13q0 24 33 36.5t66 12.5q34 0 69-15t49-15q8 0 14 2l13 6q20 9 35 12t45 3q43 0 72.5-12t29.5-34q0-14-12-14zm199.5-870.5Q1681 1228 1644 1228q-49 0-85.5 38t-36.5 86q0 38 25 62.5t63 24.5q49 0 85.5-38t36.5-86q0-38-25.5-62.5zm224-354.5q27.5-40 64.5-119l21-45q9-19 20-47.5t11-44.5q0-20-15-34.5t-37-14.5q-16 0-70 16.5T1756 676l-37 19q-12 6-21 13t-9 12q0 6 8.5 12.5T1717 745l37 22q47 35 74.5 78t36.5 68 22 25q16 0 43.5-40z"},"children":[]}]};exports.u1F43A=u1F43A;var u1F43B={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2253 1467q0 22 1 43 0 282-127.5 460T1767 2232.5t-474 84.5q-225 0-455-82t-361-258-131-469q0-115 22-223.5t72-213.5q-38-51-63-122.5T352 812q0-138 90.5-220.5T642 509q44 0 92 14t97 42.5T947 594h15q80-27 165.5-41t172.5-14q160 0 312 47l18 1q66 0 141.5-43t161.5-43q113 0 201.5 84t88.5 216q0 57-16.5 115t-48.5 109l-11 17q45 90 72 187t32 195zm-448.5-713.5Q1823 772 1845 787l21 16q16 15 32 37l29 42q14 20 27.5 34.5T1981 931q29 0 52-38t23-84q0-64-45-108.5T1904 656q-40 0-79 22t-39 41q0 16 18.5 34.5zM636 917q13-14 27-34l28-42q25-37 69-66t44-56q0-21-40-42t-79-21q-64 0-107.5 45.5T534 809q0 50 23.5 86t52.5 36q13 0 26-14zm201.5 494q-29.5-36-71.5-36t-72 35.5-30 84.5q0 51 30 86.5t72 35.5 71.5-36 29.5-86q0-48-29.5-84zm713.5 76q-108-118-255-118-149 0-257 118t-108 286q0 145 91.5 220t273.5 75q180 0 271.5-75t91.5-220q0-168-108-286zm345.5-76q-29.5-36-71.5-36t-72 35.5-30 84.5q0 51 30 86.5t72 35.5 71.5-36 29.5-86q0-48-29.5-84zm-722 120.5Q1226 1491 1296 1491t121.5 41 51.5 98-52 97.5-121 40.5q-70 0-121.5-40t-51.5-98 51.5-98.5zm325.5 320q10 9.5 10 23.5 0 5-2 9l-4 9q-13 26-71 60t-137 34q-90 0-152.5-42.5T1081 1873q0-12 10-21.5t24-9.5q16 0 27 14l18 17q22 20 56.5 33.5t79.5 13.5q51 0 87.5-16.5t56.5-39 35-22.5 25 9.5z"},"children":[]}]};exports.u1F43B=u1F43B;var u1F43C={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2123 1126q41 94 59 188.5t18 193.5q0 213-68 354.5T1923 2100t-309.5 133-306.5 37q-206 0-417-73.5t-338-238T425 1515q0-111 16.5-193t30-116 13.5-48q0-35-25.5-69t-51-97T383 859q0-122 87-200.5T668 580q84 0 159 40t137 40q36 0 58.5-9t105.5-25 186-16q132 0 207 21t116 21q64 0 136.5-39.5T1932 573q108 0 196.5 76.5T2217 852q0 52-17 111t-49 103q-11 15-18.5 24t-9.5 21v15zm-238-184q-215-232-575-232-229 0-407 103t-278 289.5T525 1510q0 251 124 407t370 215l47 10q51 12 115.5 19.5t125.5 7.5q184 0 377.5-60t304.5-209.5 111-384.5q0-341-215-573zm-722 535q-19 69-67 131.5t-125.5 151T792 1848q-91 0-148.5-65T586 1619q0-141 119.5-256T949 1248q90 0 153.5 56t63.5 140q0 8-1 16zm-122-101q-27-26-64-26-38 0-65 26t-27 64q0 37 27 63t65 26 64.5-26 26.5-63q0-38-27-64zm602 400.5q-81-88.5-145.5-174.5t-64.5-166q0-89 67.5-147.5T1663 1230q129 0 255.5 122t126.5 272q0 106-59.5 173.5T1827 1865q-103 0-184-88.5zm58-400.5q-28-26-65-26-38 0-65 26t-27 64q0 37 27 63t65 26q37 0 65-26.5t28-62.5q0-38-28-64zm-187.5 506q8.5 10 8.5 22 0 29-63 71.5t-151 42.5q-89 0-151.5-42t-62.5-72q0-12 9-22t24-10q19 0 33 19.5t53.5 39.5 94.5 20q53 0 94.5-20.5t54.5-39.5 33-19q15 0 23.5 10zM1205 1630q42-35 103-35 60 0 102 35t42 81q0 47-41.5 82t-102.5 35q-62 0-103.5-35t-41.5-82q0-46 42-81z"},"children":[]}]};exports.u1F43C=u1F43C;var u1F43D={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2161.5 1825.5Q2102 1947 2004 2014t-299 110-404 43q-385 0-653.5-146.5T379 1562q0-155 61.5-296t170-246.5T862 853t274-163l8-6q42-35 76-47t77-12q85 0 181 69t108 76.5 110.5 53.5 186 100 150.5 119.5 103.5 142 62.5 169 22 188.5q0 161-59.5 282.5zm-134-482q-30.5-98.5-111-186.5t-239-160-254-141.5T1299 786q-22 0-30 7t-24 18l-8 7q-150 118-318.5 189.5t-273 220.5T541 1556q0 132 64 222t254 158 442 68q154 0 295.5-24t249-65 160-141.5T2058 1540q0-98-30.5-196.5zM1106 1678q-49 62-147 62t-146.5-62.5T764 1480t48-198.5 147-63.5 147.5 63.5T1155 1480q0 136-49 198zm667 0q-49 62-146 62-98 0-146.5-62.5T1432 1480t48-198.5 147-63.5q98 0 146.5 63t48.5 199-49 198z"},"children":[]}]};exports.u1F43D=u1F43D;var u1F43E={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1192.5 610.5Q1226 555 1281 555q63 0 102.5 51.5T1423 731q0 68-37.5 117.5T1295 898q-51 0-93.5-43T1159 741q0-75 33.5-130.5zM869 496.5q32-50.5 91-50.5 62 0 103 53.5t41 124.5q0 67-36 116.5T977 790t-97.5-44T837 626q0-79 32-129.5zM478.5 1043q-38.5 39-82.5 39-65 0-118-61.5T225 882q0-57 35.5-97t87.5-40q51 0 110 69t59 135q0 55-38.5 94zm60-243Q486 739 486 660q0-57 32.5-97.5T604 522q56 0 107.5 72T763 731q0 56-35 93t-77 37q-60 0-112.5-61zm673.5 469.5q-43 33.5-119 33.5-10 0-20-1l-30-3q-11-2-21-3h-19q-72 0-168.5 57.5T667 1411q-48 0-77.5-32t-29.5-86q0-70 48-167.5T745 973t187-55q117 0 220 70.5t103 188.5q0 59-43 92.5zm269 811.5q-34 35-78 35-66 0-123.5-60t-57.5-138q0-50 33.5-89.5t77.5-39.5q47 0 114.5 62.5T1515 1988q0 58-34 93zm3-294.5q-55-62.5-55-140.5 0-53 34.5-91.5t84.5-38.5q47 0 110 66.5t63 136.5q0 51-32.5 90.5T1606 1849q-67 0-122-62.5zm854.5-67.5q-35.5 49-90.5 49-65 0-104.5-49t-39.5-122q0-80 31-127t93-47q60 0 103 53.5t43 127.5q0 66-35.5 115zm-457.5-1q-50-16-78.5-63t-28.5-118q0-77 28.5-116.5t86.5-39.5q60 0 103 61t43 131q0 64-32.5 108t-83.5 44q-9 0-18-2zm369 462.5q-64 32.5-180.5 42.5t-177.5 66l-7 7q-31 26-68 46t-73 20q-63 0-98-62.5t-35-118.5q3-114 106-221.5t253-107.5q124 0 234 81.5t110 155.5q0 59-64 91.5z"},"children":[]}]};exports.u1F43E=u1F43E;var u1F440={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1063 1346l24 46q12 24 12 47 0 14-6.5 23t-24.5 9q-21 0-46-33.5t-55-33.5q-29 0-44.5 62T849 1567t-133 39q-98 0-163-60t-67-121-29-61q-17 0-40.5 23t-49.5 70.5-52 47.5q-13 0-21.5-14t-8.5-32q0-72 53.5-152.5t151-132.5 204.5-52q129 0 223.5 62.5T1063 1346zm-406-69.5q-20-17.5-46-17.5t-46 21-20 46 18 41 42 16q27 0 49.5-18.5T677 1319q0-25-20-42.5zM2307 1488q-8 17-22 17-17 0-30-15t-24-35l-23-38q-10-18-31-35.5t-36-17.5q-25 0-26.5 57.5t-64 121T1884 1606q-75 0-132-37.5t-75-101-45-63.5-54 33.5-48 33.5q-29 0-29-28 0-47 58-135t146-137 199-49q123 0 235 69t156 180l9 22q4 12 7.5 29.5t3.5 33.5q0 15-8 32zm-458-159v-9q0-26-19.5-43.5T1784 1259q-25 0-45.5 21.5T1718 1326q0 23 17 40t42 17q29 0 50.5-19t21.5-35z"},"children":[]}]};exports.u1F440=u1F440;var u1F442={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M941 1622.5q56-89.5 56-177.5 0-56-34-117.5T929 1192q0-117 80-249t177.5-189.5T1386 696q140 0 225.5 103.5T1697 1085q0 18-10 26.5t-24 8.5q-38 0-41.5-47.5t-33.5-104-81-95-108-38.5q-98 0-172 82t-74 183q0 68 57 89t108.5 76 51.5 109q0 17-10.5 33t-27.5 16q-22 0-34.5-30t-34.5-47-51-17q-23 0-32.5 9t-9.5 24q0 11 5 24l10 28q5 15 9.5 33t4.5 39q0 79-65.5 169.5T1068 1829q0 66 30.5 100.5t93.5 34.5q64 0 92-21.5t43-21.5q18 0 31 15t13 35q0 37-86 90t-178 53q-99 0-160.5-65.5T885 1852q0-140 56-229.5zm948-152.5q-126 278-176.5 519T1502 2376.5 1133 2523q-154 0-273.5-77.5T681 2266l-15-26q-5-8-6-15.5t-1-14.5q0-27 18.5-48t48.5-21q20 0 37 10t26 28q0 12 49.5 70.5T965 2347t169 39q158 0 280.5-116.5t162-303T1675 1628t130.5-325.5T1877 962q0-200-128-337t-329-143h-38q-241 0-403.5 143.5T726 1120l-6 25q-5 25-23.5 40t-41.5 15q-30 0-50-19.5t-20-47.5q0-10 1-15l8-32h-1q48-199 143.5-371.5T999 443t409-99q235 0 421 165.5T2015 963q0 229-126 507z"},"children":[]}]};exports.u1F442=u1F442;var u1F443={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2043 2036q-41 85-119.5 119.5T1784 2190q-25 0-46-3.5t-39-8.5l-35-8q-16-4-30-4-47 0-130.5 53t-204.5 53q-70 0-119-16t-86-37l-64-37q-29-16-63-16-17 0-33 4l-35 8q-17 5-38 8.5t-46 3.5q-58 0-134.5-31.5t-121-118.5-44.5-195q0-66 28-141.5t74-155.5l67-117q27-46 50.5-107t48.5-135l55-160h-1q59-171 108-265.5T1094.5 603t204.5-66q98 0 200.5 63t160 174 131.5 343 124 314l18 29q55 86 103 191t48 197q0 103-41 188zm-128.5-319q-32.5-78-100.5-186l-17-30q-30-52-54.5-114.5T1692 1249l-56-163q-59-172-96-243.5T1438.5 725 1316 675l-16-1-16 1q-54 4-117.5 46t-103 112T963 1085l-55 163q-26 75-50.5 138T803 1501l-18 30-44 76q-37 63-63 127t-26 112q0 94 39.5 149t123.5 55q17 0 34-4l34-7 38-7q19-3 42-3 90 0 168 53t168 53 169-53 164-53q22 0 38.5 2t47.5 8l33 7q16 4 33 4 54 0 91-23t54.5-74.5T1947 1848t-32.5-131z"},"children":[]}]};exports.u1F443=u1F443;var u1F444={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1674.5 2169.5Q1547 2232 1360 2232q-74 0-145.5-10.5T1073 2187l-44-16q-49-17-89.5-45t-40.5-59 28-48.5 72-17.5 128.5 17 224.5 17q51 0 105.5-4t94.5-13l52-11q26-5 52.5-9.5t53.5-4.5q41 0 66.5 14.5t25.5 41.5q0 58-127.5 120.5zm334.5-451Q1751 1843 1325 1843q-472 0-732.5-121T332 1369q0-366 268.5-567T1300 601q430 0 698.5 200.5T2267 1369q0 225-258 349.5zM1266 812q0-23-6-37t-20-14q-53 0-166.5 14.5t-132.5 21-25 42-6 147.5q0 64 9.5 77t38.5 13q10 0 47-2l158-7 48-1q30 0 44-6.5t14-35.5zm-675 294q13 6 27 6h9q4 0 6.5-1t30.5-5l49-7q8 0 38.5-4t37.5-4l14-3q16-2 27-11t11-28l9-157q0-13 1-15v-12q0-11-3-18t-12-8q-8 0-17.5 5.5T803 854l-40 28q-70 49-127.5 112.5T578 1084q0 16 13 22zm1087 565q185-22 185-95 0-48-89.5-84t-174.5-36q-59 0-146 15t-143 15q-57 0-141-15t-141-15q-85 0-178.5 34.5T756 1576q0 72 183.5 94.5T1310 1693q183 0 368-22zm-338-647q2 28 13.5 35t45.5 7h27q6 0 102 4.5t99 4.5l24 1q33 0 40.5-14.5t7.5-63.5q0-106-5.5-152.5t-35-52-133.5-19-155-13.5q-12 0-19.5 12t-7.5 39zm579.5-83Q1809 839 1774 839q-9 0-12.5 7.5T1758 865l1 12 8 155v17q0 37 39 39.5t108 13.5l68 10h9q18 0 28.5-8t10.5-21q0-40-110.5-142z"},"children":[]}]};exports.u1F444=u1F444;var u1F445={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M904.5 553q45.5-15 88.5-15 75 0 141.5 9.5T1269 557q43 0 85-7.5t122-9.5h47q119 0 156.5 20.5T1717 598t-23 24-53 7q-15 0-29.5-1t-30.5-1q-57 0-148 26t-151 26q-43 0-85.5-7.5T1112 654l-84-19q-32-7-65-11t-57-4q-17 0-32-7t-15-19q0-26 45.5-41zM2209 1157.5q-67 68.5-170 108.5l-10 4q-98 301-121 479t-108 298.5-218 182.5-282 62q-153 0-286.5-64t-217-184.5-106-299T571 1270l-11-4q-101-39-169-108t-68-146q0-88 77-161t226-73q76 0 168.5 25.5t226 42T1299 862q151 0 285.5-17.5t222.5-42 167-24.5q149 0 225.5 73t76.5 161q0 77-67 145.5zM1863 1344l16-58q6-24 6-33 0-36-16.5-49.5T1829 1190q-8 0-15 1l-15 2-146 33q-35 8-68 15l-63 13-81 17q-12 3-23.5 14.5t-17.5 22-19 70-20 130.5-16 140-16 88q-9 27-29 27-23 0-31-26.5t-13-77.5l-11-121q-7-70-23-144.5t-22.5-85-18-22-21-14.5-83.5-18l-62-13q-34-7-68-15l-145-33-15-2q-8 0-16-1-28 0-42 15.5t-14 60.5q0 9 7 32l15 57q29 108 65 305.5t85.5 290T1036 2098t264 55q169 0 268.5-58t147-151 82-287.5T1863 1344zM623 912q0 18 55 76.5t125 87 83 28.5q9 0 11.5-11.5t2.5-34.5v-72l-1-16q-2-18-8-27t-76.5-31.5T703 883q-5 0-19-2t-28-2-24 3.5-10 17.5q0 8 1 12zm1292-31q-14 2-19 2-13 2-42.5 9t-59.5 17l-40 13q-30 11-41 17.5t-12 39.5l-2 39q0 57 2.5 71.5t11.5 14.5q12 0 81-27.5t126.5-87T1978 901q0-15-10.5-18.5T1943 879t-28 2zm-586 245q0 31 36 31 262 0 269-52.5t7-78.5q0-45-3-55.5t-20-10.5q-12 0-29 3l-23 4q-24 4-49 7l-100 11q-45 5-62 15t-20 45zm-62-90q-4-32-25.5-40T1137 979l-51-5q-26-3-50-7l-22-4q-18-3-30-3-16 0-20 10t-4 52q0 18 2.5 39t2.5 35q0 29 62 45t210 16q36 0 36-28 0-11-2-39z"},"children":[]}]};exports.u1F445=u1F445;var u1F446={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1996 1574q-32 109-103 206t-137.5 159-77.5 101l-5 24q48 0 65.5 18t23.5 69.5 7 103.5v38q91 0 110.5 41.5T1902 2534v32H715q0-17-1-37v-78q0-29 4-81t12-67 38-20l20-2q10 0 16-1 0-20 7.5-80t17.5-99 55-39h15l34 2q7 0 10 2-31-136-105.5-193t-130-139.5T637 1561l-24-158-6-41q-9-52-22.5-91t-13.5-94q0-105 55.5-170.5T782 941q30 0 58 9.5t63 35.5v-46q0-38-1-102l1-118q0-160 14.5-270t82.5-163 170-53q80 0 137.5 49.5t78.5 119 30 247.5l7 145q2 56 3.5 65t2.5 10q12-3 27-3 62 0 110.5 39.5T1630 984l22-6q14-4 40-4 49 0 80 23.5t58.5 54.5 36.5 97l42 15q30 9 50.5 28.5t33 38.5 24 52 11.5 96q0 86-32 195zm-98-171l1-17q0-43-16.5-83.5T1840 1262q-20 0-32.5 26.5T1774 1315q-6 0-10.5-3.5t-4.5-11.5q0-17 5.5-34t5.5-39q0-43-24-83t-65-40q-35 0-49.5 38.5T1591 1181q-24 0-24-37 0-70-32-113t-88-43q-28 0-56.5 15.5t-40 61-35.5 45.5q-18 0-27-38.5T1276 961l-3-50q-3-49-5-104l-8-216-4-84q-3-74-32.5-107t-68.5-33q-67 0-89.5 49T1041 592l-13 627-3 74q-4 78-16.5 129.5T977 1474q-28 0-28-46.5t-7-119-30-124-42.5-71.5-58.5-20q-40 0-68.5 25t-28.5 67q0 18 5 37t11 38l12 38q10 37 22.5 186.5t136 254.5 163 169.5T1103 2045q0 17-3 32 41 0 86.5 2.5t98.5 2.5q60 0 119.5-1t108.5-3q12-109 105-176t177-195.5 103-303.5zm-599 908q177 0 266-2l101-1q0-90-8.5-108t-31.5-18l-108 3-105 2q-59 0-118 1-128 0-232.5-6.5T962 2175q-25 0-32 11t-10 64l-2 51q11 2 86 6t226 4h69z"},"children":[]}]};exports.u1F446=u1F446;var u1F447={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M603 1228q32-109 103-206t137.5-159T921 762l5-24q-48 0-65.5-18T837 650.5 831 547l-1-38q-93 0-111.5-42.5T698 268l-1-32h1187q0 17 1 37v78q0 29-4 81t-12 67-38 19l-20 3q-10 0-16 1 0 22-7.5 81.5t-17.5 98-55 38.5l-49-3q-7 0-10-1 31 138 107 195t133 146 71 193.5 19 128.5l7 40q8 53 21.5 92t13.5 94q0 107-56.5 171.5T1817 1861q-30 0-58-9.5t-63-35.5l1 46v219q-2 158-16 269t-81.5 164.5T1429 2568q-80 0-137.5-49.5t-78.5-119-30-247.5l-6-146q-3-55-4.5-64t-2.5-10q-12 3-27 3-62 0-110.5-39.5T969 1818l-21 6q-15 4-41 4-49 0-80-23.5t-58.5-54.5-36.5-97q-69-14-115-67t-46-163q0-86 32-195zm98 171l-1 17q0 43 17 83.5t42 40.5q20 0 32.5-26.5T825 1487q6 0 10.5 3.5t4.5 11.5q0 17-5.5 34t-5.5 39q0 43 24 83t65 40q35 0 49.5-38.5t40.5-38.5q24 0 24 37 0 70 32 113t88 43q37 0 61-18t36-61 35-43q18 0 27 38.5t13 110.5l2 50q3 50 5 104l8 216 3 84q4 74 33.5 107t68.5 33q62 0 86-41.5t28-183.5l13-627 3-74q4-78 16.5-129.5t31.5-51.5q12 0 21 9.5t10.5 98T1679 1593t47 92.5 62 23.5q40 0 68.5-25t28.5-67q0-18-5-37t-11-39l-11-37q-13-40-24-193t-174.5-283.5T1496 757q0-17 3-32-41 0-86.5-2.5T1314 720q-60 0-119.5 1t-108.5 3q-15 106-86 160.5T867 1009t-107.5 168.5T701 1399zm599-908q-177 0-266 2l-101 1q0 90 8.5 108t31.5 18l109-3 105-2q58 0 117-1 128 0 232.5 6.5T1637 627q25 0 32-11t10-65l2-50q-11-2-86-6t-226-4h-69z"},"children":[]}]};exports.u1F447=u1F447;var u1F448={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1049 1985q-66-9-97-36.5t-54.5-58.5-23.5-80q0-26 4-41l6-21q-38-15-77.5-63.5T767 1574q0-15 3-27-4-2-22-3.5t-52-3.5l-146-6q-178-9-247.5-30t-119-78.5T134 1288q0-103 53.5-170.5T352 1036t269-16h219l46 1q-26-35-35.5-63t-9.5-58q0-98 64.5-154.5T1077 689q55 0 94 13.5t92 21.5l40 7q24 5 128.5 19t193.5 71 146 133 195 107q0-3-1-10l-3-49q0-45 38.5-55t98-17.5 81.5-7.5q0-6 1-16l3-20q4-30 19-38t67-12 81-4h78q20 0 37 1v1187l-32-1q-156-2-198.5-20.5T2193 1887l-38-1q-52 0-103.5-6t-69.5-23.5-18-65.5l-24 5q-39 11-101 77.5T1680 2011t-206 103-195 32q-110 0-163-46t-67-115zm254 31q123-13 221.5-58.5T1693 1850t124.5-133 160.5-86q2-49 3-108.5t1-119.5q0-53-2.5-98.5t-2.5-86.5q-15 3-32 3-140 0-270.5-163.5T1391 883t-193-24l-37-11q-20-6-39-11t-37-5q-42 0-67 28.5T993 929q0 39 23.5 62t92.5 47 157.5 25.5 98 10.5 9.5 21q0 19-51.5 31.5T1193 1143l-74 3-627 13q-142 4-183.5 28t-41.5 86q0 39 33 68.5t107 33.5l84 3 216 8q54 2 104 5l50 2q72 4 110.5 13t38.5 27q0 23-43 35t-61 36-18 61q0 56 43 88t113 32q37 0 37 24 0 26-38.5 40.5T1004 1799q0 41 40 65t83 24q22 0 39-5.5t34-5.5q8 0 11.5 4.5t3.5 10.5q0 21-26.5 33.5T1162 1958q0 25 40.5 42t83.5 17zm908-668q0-151-4-226t-6-86l-50 2q-54 3-65 10t-11 32l2 41q3 32 7 112.5t4 179.5q0 59-1 117l-2 105-3 109q0 23 18 31.5t108 8.5l1-101q0-89 2-266v-69z"},"children":[]}]};exports.u1F448=u1F448;var u1F449={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1126 2114q-109-32-206-103t-159-137.5-101-77.5l-24-5q0 48-18 65.5t-69.5 23.5-103.5 6l-38 1q0 91-41.5 110.5T166 2019l-32 1V833q17 0 37-1h78q29 0 81 4t67 12 20 38l2 20q0 10 1 16 20 0 80 7.5t99 17.5 39 55v15l-2 34q0 7-2 10 64-14 112-39.5t82-67.5 95.5-96 134.5-79 137-33l75-10 68-12q52-8 91-21.5t94-13.5q107 0 171.5 56.5T1759 900q0 30-9.5 58t-35.5 63l46-1h220q155 2 266.5 15.5t165.5 81 54 171.5q0 80-49.5 137.5t-119 78.5-247.5 30l-145 6q-56 3-65 4.5t-10 2.5q3 12 3 27 0 62-39.5 110.5T1716 1748l6 21q4 15 4 41 0 49-23.5 80t-54.5 58.5-97 36.5l-15 43q-9 29-28.5 49.5t-38.5 33-52 24-96 11.5q-86 0-195-32zm171-98l17 1q43 0 83.5-16.5t40.5-42.5q0-20-26.5-32.5T1385 1892q0-6 3.5-10.5t11.5-4.5q17 0 34 5.5t39 5.5q43 0 83-24t40-65q0-35-38.5-49.5T1519 1709q0-24 37-24 70 0 113-32t43-88q0-28-15.5-56.5t-61-40-45.5-35.5q0-18 38.5-27t110.5-13l50-2q49-3 104-5l216-8 84-3q74-4 107-33.5t33-68.5q0-62-41.5-86t-183.5-28l-627-13-74-3q-78-4-129.5-16.5T1226 1095q0-28 46.5-28t119-7 124-30 71.5-42.5 20-58.5q0-40-25-68.5t-67-28.5q-18 0-37 5t-38 11l-38 11q-38 12-187 23.5t-254 136T791.5 1182 655 1221q-17 0-32-3 0 41-2.5 86.5T618 1403q0 60 1 119.5t3 108.5q106 15 160.5 86T907 1850t168.5 107.5T1297 2016zm-908-599q0 177 2 266l1 101q90 0 108-8.5t18-31.5l-3-109-2-105q0-58-1-117 0-128 6.5-232.5T525 1080q0-25-11-32t-64-10l-51-2q-2 11-6 86t-4 226v69z"},"children":[]}]};exports.u1F449=u1F449;var u1F44A={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2230 2045q-115 116-322 182.5t-335 66.5q-127 0-210.5-39T1241 2150.5t-38-118.5l-22 4q-26 6-64.5 11.5t-62.5 5.5q-209 0-394.5-88.5t-295.5-304T254 1247q0-229 96.5-382.5T619 711q14 0 26.5 1.5T670 716l11 1 8-10q36-46 86.5-68.5T908 616q39 0 88.5 7t50.5 9.5 4 2.5q4 0 28-22t80-38.5 121-16.5q54 0 106 9.5t102 37.5q38-20 98.5-35t116.5-15q258 0 383 232.5t125 499.5q0 40-3 81.5t-8 86.5q57 51 101 137t44 176q0 161-115 277zm-801-284.5q37-52.5 37-203.5 0-90-4-161.5t-4-131.5q0-107 18-157t52-50q23 0 34.5 18t11.5 43q0 14-1.5 53.5t-1.5 94.5q0 206 30.5 346.5T1718 1753q103 0 179-158t76-419q0-56-5.5-108.5T1950 961l-2-7q-6-24-14-45l-19-43q-36-86-109-131.5T1643 689q-64 0-116.5 13.5T1440 747l-76-23q-15-4-19-4-20-5-40.5-7.5T1262 710q-57 0-99.5 24.5T1080 795q-60-23-125-23-51 0-99 14.5T766 833l-14 12q-9 7-11 14-17-9-39-12t-46-3q-127 0-195.5 91.5T392 1265q0 180 77 343.5T632 1772q25 0 41-12t16-31q0-15-6-32t-8-28l-8-38q-12-50-21-120t-9-135q0-98 20-171t58-73q14 0 18 11.5t4 33.5q0 49-3.5 89.5T730 1347q0 131 45.5 272.5t93 174.5 98.5 33q39 0 74.5-21.5t35.5-55.5q0-23-15-57t-29-129-14-258 14.5-189.5 43.5-26.5q14 0 26 12.5t12 41.5q0 109 4.5 197.5T1141 1538t38.5 162 44 83.5 89.5 29.5q79 0 116-52.5zm708.5-67Q2098 1636 2063 1617q-41 114-101 182t-134.5 101-190.5 33q-59 0-91-5l-49-6q-40 15-70 45t-30 79q0 42 43.5 78.5T1556 2161l20-1q64-3 231-39.5t268.5-122T2177 1817q0-66-39.5-123.5z"},"children":[]}]};exports.u1F44A=u1F44A;var u1F44B={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1945 2041l-2 48q47 0 63.5 34t19.5 158v38q91 0 111.5 36.5T2161 2556v37H966q0-20-1-43v-78q0-14 1-25l1-31q0-40 6-65t13-32 34-11l21-2q9 0 14-2l2-21q4-53 12-102t13.5-64.5 31.5-27.5l-10-29q-58-18-127-70.5t-136-147T732 1707l-154-147-72-71-119-119q-59-60-80.5-114.5T285 1148q0-72 47-137.5T456 921q-12-39-12-83 0-95 68-164.5T682 596q2-98 71.5-169.5T930 355q22 0 43.5 3t41.5 11q29-69 93.5-108.5T1249 221q78 0 138.5 42t93.5 122l54 129 107 268 75 192q14 37 35.5 74.5T1814 1174q14-22 30-46l31-44q14-21 26-38l18-24q40-47 103-79t126-32q103 0 175 80.5t72 175.5q0 79-38.5 133.5T2307 1370l-47 65q-25 33-58 80t-50 70q-31 132-82 232t-86.5 128.5-38.5 95.5zM829.5 659Q840 697 1035 978l65 93q31 44 54 74 37-25 76-44l81-39-149-272q-91-163-126.5-230.5T929 492q-44 0-77 28.5T819 600q0 21 10.5 59zm-207 288.5Q664 998 690 1028l146 174 118 139q35-43 66-77.5t68-67.5l-88-120q-48-64-90-123L788 784q-19-27-43-39t-50-12q-44 0-79 28t-35 77q0 59 41.5 109.5zM1709 2336l213-3q0-90-8-108t-30-18l-111 3-106 2q-59 0-119 1-142 0-229.5-5.5T1214 2200q-24 0-32.5 13t-10.5 96l-1 19q16 0 111.5 4.5t272.5 4.5q89 0 155-1zm305-760l11-48 122-171 50-69q13-19 37-50.5t24-70.5q0-42-33.5-80t-76.5-38q-34 0-69 19t-54 42l-19 26-33 48-91 135q-50 66-126.5 86.5T1649 1457t-50 31q-11 0-18-7t-7-15q0-16 16-36t44-42l26-19q8-6 33.5-18t25.5-33-8.5-37.5-35.5-77.5-68-132l-9-26-127-324-59-145q-21-51-56-134.5T1249 358q-55 0-85.5 30.5T1133 469q0 37 25.5 99t83.5 182l52 108q22 48 46.5 98t44.5 87l24-4q11-2 34-2 13 0 24 3.5t11 13.5q0 21-46 41t-135.5 73.5T1104 1310t-138.5 135-51.5 47q-21 0-21-21 0-17 8-36.5t13-28.5q-62-65-130.5-140.5T665 1131l-40-46q-19-22-42-31t-46-9q-47 0-80.5 31.5T423 1148q0 63 60.5 125.5T597 1388l69 68q90 89 134.5 127T930 1732l39 52q50 68 104.5 103t96 52 60 64.5 21.5 79.5l1 12q6 0 13 1h12l292 10q58 0 111-1t124-5l1-26q0-15 2-33l3-36q10-89 65-144t88-134 51-151zM781 1915q8 2 15.5 5.5t7.5 12.5q0 13-18 20.5t-43 7.5l-29 1q-131-8-197-46t-123-124.5-76-199.5l-1-8q0-17 15-17 11 0 12 7.5t49.5 92 121 146T713 1900zm-167 121q11 0 21 3.5t10 15.5-25.5 19-64.5 7q-174 0-262.5-113.5T204 1800q0-12 11-12 18 0 49 47t114 115.5 223 85.5h13zM1700.5 362q7.5-6 13.5-6 33 0 107 46.5T1933 519t38 162q0 51-17.5 130.5T1915 891q-6 0-9.5-5.5T1902 874q0-17 2.5-33t2.5-33q-2-79-10.5-144.5t-43-121-97.5-107-63-60.5q0-7 7.5-13zm325.5 44l-16-28q-11-18-25.5-31.5T1970 322q0-8 5-11.5t10-3.5q6 0 14 3.5t15 8.5l13 9q49 38 86.5 99.5T2151 563q0 42-26.5 132t-53.5 90q-8 0-10.5-8t-2.5-13 11.5-60.5T2081 603q0-108-55-197z"},"children":[]}]};exports.u1F44B=u1F44B;var u1F44C={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2188 1037q48 36 72.5 92t24.5 126q0 76-30.5 163t-91.5 163l-29 36q-37 47-100.5 102t-141.5 97l-51 25q-14 7-26 14t-18 13v81q56 4 64 67t10 124v39q100 0 116 47.5t19 191.5v35H810q0-23-1-50.5t-1-52.5q0-12 1-23.5t1-20.5l1-30q0-69 12-88t76-23l7-63q7-63 17.5-109.5T982 1946q8 0 18.5 1.5t21.5 1.5l-2-32q0-15-1-29l-21-23q-17-21-36.5-31.5T904 1792l-4-2q-85-67-152.5-152.5t-93-131.5-68-94.5-108-151.5T369 1048t-52-183q-3-22-3-43 0-116 74-184t175-68q55 0 107 25 0-144 68-230t184-86q65 0 120 30t90 85q51-95 117-146.5t147-51.5q104 0 174.5 74.5T1641 442q0 52-20.5 101.5T1571 654q45-21 91-32t96-11q177 0 309.5 111T2200 965q0 38-12 72zM1183 896.5q13 65.5 46 132.5 14-4 97.5-25.5T1410 853q0-26-2-50.5t-2-44.5q0-12 2-28l3-27q11-48 54-133.5t43-127.5q0-44-32.5-79t-78.5-35q-84 0-155.5 139.5T1170 770q0 61 13 126.5zM803 594q0 157 41 301.5T956 1158q49-32 100-58.5t107-46.5q-51-102-82.5-244.5t-35-235.5-39.5-127.5-84-34.5q-58 0-88.5 44.5T803 594zm300 1598q42 3 101.5 4.5t134.5 1.5h159l149-2q102-2 120-2 0-81-7-103.5t-32-22.5l-88 2q-41 0-91 1t-98 1q-95 0-202-3.5t-154-6.5l-36-2h-11q-20 2-25 25t-8 78l-1 24zm1019.5-1036q-29.5-35-86.5-35-85 0-111.5 87t-64.5 124-89 37q-72 0-112.5-42.5T1618 1217q0-79 38.5-153t117.5-74q35 0 82 43t98 43q44 0 78.5-36t34.5-76q0-73-94.5-146.5T1756 744q-110 0-188.5 72t-92 156-70.5 95-212 63-241 104l-25 15q-12 7-23 12t-20 5q-11 0-15-4t-4-8q0-11 12.5-27t24.5-26q-68-72-127-178t-93.5-213.5T562 702q-55 0-85 34t-30 86q0 50 22.5 116.5T517 1058t58 108.5 84 123.5 64 78.5 29.5 45 76 112 111 123 98.5 78.5 78.5 70.5 34.5 77.5l5 84 104 4q57 3 125 3 54 0 97-1l76-1q33 0 59.5-1.5t47.5-3.5v-109l2-12q2-21 26-51t70-56l62-29q133-71 230-197t97-250q0-64-29.5-99zm-320.5 2l-16-12q-8-6-16-14-3 5-6 17.5t-5 26.5l-8 49 1 6 19 5q3-4 7-13l15-39z"},"children":[]}]};exports.u1F44C=u1F44C;var u1F44D={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2264 1098l28 1q14 0 27 1l-2 1151-145-4q-29 0-50-3l-29-3q-31-2-64.5-9t-37.5-29l-4-22q-2-13-2-29-31-4-63-9l-58-11q-71-12-83-29t-12-37q0-13 1-18t3-10q-62 5-114.5 29t-91.5 66l-34 37q-75 82-173.5 137t-188.5 70.5-196.5 36T793 2434q-133 0-217.5-60T491 2207q0-19 3-35t3-27q0-24-37-41t-71.5-66.5T354 1918q0-41 15.5-89t15.5-57q0-15-35.5-53t-52.5-75-17-80q0-54 20-96t35.5-57.5T351 1383q0-13-12-26t-27.5-49-15.5-89q0-115 75.5-184.5T534 965q101 0 196.5 16.5T825 998q5 0 6-1t1-6q0-6-23.5-98.5T785 693q0-79 17-174t84-145.5 166-50.5q119 0 185 72t92 184 31.5 155 78.5 158.5 140.5 193.5 108.5 158l10 18q10 21 26.5 33t41.5 12q8 0 19-1l21-2q0-2-1-3t-1-3q2-49 30.5-65.5T1961 1216q32 0 48.5 1t29.5 1q0-99 56-109.5t134-10.5h35zm-579 824q3 0 4-2 29-4 54-6l45-2q9-88 17-230.5t8-199.5q0-14-1-25.5t-1-22.5q-6 0-19 1-141 0-194-88t-78.5-124-143-170-133-230-41.5-219.5T1077 480q-77 0-116.5 46T921 678q0 165 64.5 307.5T1165 1279q6 79 27.5 156t58.5 122l28 35q12 16 20.5 29t8.5 25q0 10-5.5 19.5t-20.5 9.5q-36 0-104-45.5t-68-50.5q-6 0-9 10l-7 25q-5 15-11 30.5t-18 25.5q2 0 19.5 27t32.5 60.5 15 57.5q0 39-19 85.5t-32 59.5q28 12 54.5 49.5t26.5 69.5q0 14-3 30l-15 62q-4 15-4 26 0 17 15 25t37 8q60 0 145-52.5t122.5-102 101-96T1685 1922zM515 1676l43-1q29 0 66-2l78-3q120-6 177-16t79.5-44 22.5-72q0-39-31.5-69.5T884 1438q-12 0-39-1l-309-10q-65 0-102 39t-37 101q0 52 34 80.5t84 28.5zm-98-465q0 99 132.5 112.5T733 1341t95 4q64 0 101.5-31t37.5-83q0-35-26-63t-60-37l-38-9-126-24q-46-8-97-15.5t-68-7.5q-77 0-106 45t-29 91zm47 712q5 47 45 74t88 27q21 0 109.5-13.5t196-38.5 107.5-116q0-43-25.5-73t-65.5-30h-8q-8 0-30 2l-247 19-53 5q-57 5-87 42t-30 91v11zm573 167q-22-33-63-33-4 0-7 1t-8 1l-260 42q-52 10-75.5 42.5T600 2216q0 52 40.5 81.5T738 2327q5 0 23-3t43-9l55-12q151-35 175.5-64t24.5-72q0-44-22-77zm1006-566l6-174q0-25 1-34-70 0-99 6t-29 28l-1 105q-2 108-8 241t-11 198l-6 91q0 21 11 28.5t52 16.5l54 11q20-189 30-517z"},"children":[]}]};exports.u1F44D=u1F44D;var u1F44E={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M370 1779h-35q-16 0-28-1-14 0-27-1l2-1151h35l53 2 107 5 30 2q30 3 62.5 9.5T608 674l4 22q2 13 2 29 31 4 63 9l58 11q8 2 51.5 12.5T830 811q0 13-1 18t-3 10q62-5 114.5-29t91.5-66l34-37q74-82 172-136.5t195-71.5 198-36.5 175-19.5q133 0 217.5 60t84.5 167q0 19-3 35t-3 27q0 24 37 41t71.5 66.5T2245 959q0 41-15.5 89t-15.5 57q0 15 35.5 53t52.5 75 17 80q0 54-20 96t-35.5 57.5-15.5 27.5q0 13 12 26t27.5 49 15.5 89q0 115-75.5 184.5T2065 1912q-65 0-134-8t-130-20l-27-5q-5 0-6 1t-1 6q0 6 23.5 98.5T1814 2184q0 78-16.5 173.5t-82.5 146-168 50.5q-91 0-146.5-39.5t-89-103.5-51.5-152-23.5-124.5-71-142.5-146-202T916 1642.5t-50-65.5q-14-7-33-7-8 0-18 1l-22 2q0 2 1 3t1 3q-2 49-30.5 65.5T638 1661q-32 0-48.5-1t-29.5-1q0 99-56 109.5T370 1779zm544-824q-3 0-4 2-29 4-54 5l-45 3q-9 88-17 230.5t-8 199.5q0 14 1 25.5t1 22.5q6 0 19-1 141 0 194 87.5t76 121.5 143.5 171 135.5 238 42 219 124 118q77 0 116.5-46t39.5-152q0-165-64.5-307.5T1434 1598q-7-89-30.5-166t-68-128.5-44.5-72.5q0-10 5.5-19.5t20.5-9.5q36 0 104 45.5t68 50.5q6 0 9-11l8-25q4-14 10-29.5t18-25.5q-2 0-19.5-27t-32.5-60.5-15-57.5q0-39 19-85.5t32-59.5q-29-13-55-50t-26-69q0-14 4-30l15-63q3-14 3-25 0-17-15-25t-37-8q-60 0-145 52.5t-122.5 102-101 96T914 955zm1170 246h-43l-66 2-78 4q-7 0-143 11t-136 121q0 39 31.5 69.5t65.5 30.5q12 0 40 1l274 9q25 0 34 1 65 0 102-39t37-101q0-52-34-80.5t-84-28.5zm98 465q0-99-132.5-112.5T1866 1536t-95-4q-71 0-105 33.5t-34 80.5q0 35 26 63t60 37l39 8q25 6 58 12l68 12q45 9 96 16.5t68 7.5q77 0 106-45t29-91zm-47-712q-5-47-45-74t-88-27q-21 0-109.5 13.5t-196 38.5-107.5 116q0 43 25.5 73t65.5 30h8l30-3 300-23q57-5 87-41.5t30-91.5v-11zm-573-167q22 33 63 33 4 0 7-1t8-1l260-42q52-10 75.5-42.5T1999 661q0-53-41-82t-97-29q-5 0-23 3t-43 8l-55 13q-96 22-148 45.5t-52 90.5q0 44 22 77zM556 1353l-6 174q0 25-1 34 70 0 99-6t29-28l2-106q0-107 6.5-240T697 983l6-91q0-21-11-28.5T641 847l-55-11q-20 189-30 517z"},"children":[]}]};exports.u1F44E=u1F44E;var u1F44F={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2356.5 2044.5q-32.5 108.5-97 187.5T2118 2363.5t-151.5 81T1777 2473q-214 0-391.5-109.5t-331-293T886 1729q-19-4-58.5-9.5T738 1708l-105-13-104-14q-58-7-115.5-16.5t-107.5-39-81.5-78.5-31.5-108q0-36 12-68.5t29-61.5q-42-32-69.5-79T137 1129q0-50 24.5-97t61.5-77q-20-29-32.5-61.5T178 825q0-68 45.5-129T338 614q-3-14-5-27t-2-26q0-92 70-156.5T553 340q64 0 123.5 33.5T882 495l182 111q93 57 142.5 85t60.5 28q6 0 6-5 0-6-14.5-42t-14.5-91q0-112 62.5-179t164.5-67q73 0 131.5 39.5t83.5 109 54 145.5 49 151l39 132 24 88q20 73 21.5 102.5t6.5 49.5h15q117 0 244 106.5t188.5 276T2389 1844q0 92-32.5 200.5zm-132-463.5q-46.5-129-148-220t-180.5-91q-33 0-48.5 13t-15.5 34q0 30 35 61.5t117 142 82 136.5q0 13-9.5 23.5T2033 1691q-20 0-33-24t-56-85.5-107-133.5l-8-11-70-75q-61-61-123-115t-96-79l-24-17q-47-32-80-43.5t-59-11.5q-31 0-53.5 15t-22.5 33q0 10 7 22l42 41q51 50 130.5 136.5T1622 1506l16 17q14 17 23.5 31.5t9.5 25.5q0 14-10 22.5t-23 8.5q-22 0-36.5-24T1428 1389t-179-187-45-13-47.5 22.5-22.5 47.5q0 18 8 35t18 32l99 120q47 58 86.5 104.5t79.5 90.5l45 48q11 12 18.5 23t7.5 20q0 12-8.5 22.5T1462 1765q-10 0-17.5-4.5t-64-67.5-142-165.5T1121 1383l-6-9q-4-3-8.5-5.5t-10.5-2.5q-17 0-34 21.5t-17 47.5q0 57 88 197.5t151 196.5 63 74q0 14-10.5 24t-24.5 10q-21 0-87-70.5T1116.5 1731t-53-86-25.5-21q-16 0-26.5 17.5T1001 1699q0 61 35.5 136.5T1194 2049t265 220l38 21q43 25 118.5 45t159.5 20h36q115 0 239-86.5t172.5-198.5 48.5-226q0-134-46.5-263zM509 1555l74 10 155 20q35 5 59 7l49 5q22 3 54 10 8-23 22.5-41.5T949 1537q-10-25-16-51t-6-53q0-45 21.5-90t67.5-71v-10q0-73 54-131.5t133-58.5q21-36 55-59t79-30q3-14 11-27t8-27q0-24-85-67t-133-64q-39-26-83-54L852 619l-118-71-116-67q-18-11-34-15t-31-4q-37 0-68.5 31.5T453 562q0 29 22 58.5t51.5 47T618 718l87 46 95 49q39 21 83 43t81 40q4-3 24-24t39-21q5 0 9.5 3.5t4.5 11.5q0 11-5 23l-9 18q-73 135-107.5 281.5t-37 217.5-25.5 71q-12 0-21.5-21.5T823 1410q-61-11-122-22.5T588 1365l-143-29-12-2q-6 0-13-1-43 0-73.5 32t-30.5 74q0 39 37 68t83 37zm865.5-926q8.5 28 33.5 93l39 106q5 14 6.5 27.5t1.5 24.5q0 35-13.5 56t-31.5 45q71 6 152.5 59.5T1756 1196v-15q0-62-17-124.5T1697 935l-42-155q-29-84-57.5-176.5t-51.5-119-75-26.5q-51 0-78 35t-27 87q0 21 8.5 49zm-1053 253q20.5 29 51 45.5T578 1004l102 35q50 17 96 31l79 25q12-37 29.5-75t37.5-70q-26-11-67-30L499 759q-14-6-43-19.5T404 726q-43 0-73 32t-30 67q0 28 20.5 57zM261 1119q0 4-1 9 0 33 31 65.5t64.5 41.5 104.5 25l356 81q0-48 4.5-90.5T834 1166q-59-17-127-38l-130-39q-63-19-111-35l-67-21q-10-3-19-4t-17-1q-38 0-63.5 24.5T263 1110zm654 954q12 0 15 13t3 24v19q0 47-4.5 96t-9.5 93l-7 67q-4 36-7.5 55.5T901 2477q0 28-8 41.5t-29 13.5q-15 0-82.5-17.5t-102-40T645 2429q0-20 16-49.5t48-69.5l21-26q64-93 114.5-152t70.5-59zm-204.5-203.5Q691 1890 619 1949t-96 83-45 36.5-53 41.5-57 29q-50 0-85-85t-35-95q0-21 16.5-36.5T424 1876t191.5-44.5T710 1818q7 0 13.5 4.5t6.5 13.5q0 13-19.5 33.5zM1882 649.5q-4-16.5-4-28.5 0-62 4-83t10-183.5 51-162.5q20 0 40 5t40 11l39 14q8 3 49 15t41 39q0 23-33 66.5T2010 510t-84.5 140-24.5 16q-15 0-19-16.5zM2460 924q3 13 3 26 0 18-14 27t-136 22.5-213 13.5q-53 0-53-22 0-20 57.5-51.5T2217 875t102-64 78-31q9 0 24 20t23 43l6 28q3 15 5 31z"},"children":[]}]};exports.u1F44F=u1F44F;var u1F450={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2497 1999q13 23 20.5 49.5t7.5 53.5q0 62-37.5 110.5t-79 68.5-129.5 36l-198 35q-32 6-54 9l-42 9q-59 14-122 38t-194 24q-236 0-373.5-133.5T1158 1948q0-52 11.5-113t37.5-125l-4-130q-83 116-193 181t-229 65q-98 0-196.5-42t-194-162T276 1425t-59-146q-8-13-24.5-43.5T166 1186l-43-84h-1q-8-17-43-86.5T44 887q0-74 44.5-130.5T215 688q12-79 65.5-125T418 517q15 0 23 1 24-51 69.5-81T615 407q56 0 107 28 26-24 58.5-35.5T851 388q86 0 141.5 52.5T1056 578l9 116 12 163 4 66q0 29 1 39l2 7q0 25 3 44l4 36q2 17 4.5 32.5t4.5 33.5q65-47 100-65t96-18q88 0 144.5 61.5T1497 1236q0 16-1.5 30t-6.5 28q34 13 81.5 67t47.5 200q67-36 82-46l45-31q37-25 123.5-83.5T1984 1323l85-55q28-19 58-27.5t59-8.5q78 0 140 59.5t62 140.5v12q52 21 89.5 72t37.5 112q0 44-22 88 29 29 46 66t17 77q0 79-59 140zM187.5 833Q167 855 167 887q0 21 6 36.5t15 32.5l73 142 25 46q94 176 102 227.5t65.5 124.5 92 106.5 100 56T789 1681q106 0 193-54t154-172l5-8q114-85 173-124t59-87q0-34-21.5-57.5T1296 1155q-48 0-85 29t-94.5 77.5T997 1310h-29q-40 0-60.5 11t-30.5 11q-5 0-12.5-4.5T857 1315q0-9 17-21t41-21l21-8q8-3 30-6t22-31q0-38-7-82.5t-17-86.5l-8-160-6-100-8-107q0-14-8-97.5T849 511q-35 0-54.5 27T775 606q0 7 3 31l6 59 9 75 16 116 16 107 12 1q14 2 30.5 8t16.5 15q0 8-13 13.5t-26 5.5q-122 15-231.5 59.5t-143 68T423 1188t-14-11 12-25l17-21q-21-44-40-88l-36-80q-19-42-42-97t-76-55q-36 0-56.5 22zm1162 1308.5Q1415 2228 1487 2267t247 39q48 0 128.5-29t133.5-38l102-17 184-33q73-13 95.5-38t22.5-49q0-31-22.5-56t-56.5-25q-12 0-22 3l-194 48q-47 12-95 22l-2 14q-3 15-9 27t-14 12-11.5-6.5-3.5-17.5l-1-9q-14-135-65-255.5t-66.5-142.5-15.5-35q0-9 11-9 14 0 28.5 12.5t20.5 20.5q24-13 57-32l68-38q30-17 65-37.5t71-42.5l50-31q37-22 54-45.5t17-47.5q0-28-24-52t-54-24q-21 0-50 17l-94 62q-33 22-68 46l-120 82q-29 19-69.5 45t-72.5 45l-36 21q-18 10-43 25l-15 9q-21 12-28.5 20.5t-7.5 16.5 16.5 40 16.5 71q0 8-3 15t-12 7q-22 0-26.5-32.5t-41-75T1493 1669q0-31 1-60t1-52q0-24-1-40t-1-22q-6-35-28-65t-53-30q-34 0-61.5 22t-27.5 62l6 166q0 42 1 82l-3 10q-27 69-35 113t-8 82q0 118 65.5 204.5zM2273 1563l-94 49-71 36-192 96q18 22 32.5 53t25.5 57q25-8 60-22l150-59 70-28q32-13 55-23l28-13q17-11 35.5-33t18.5-48v-11q-2-21-24.5-42t-54.5-21q-20 0-39 9zM697 599q-6-33-30-51t-51-18q-34 0-54 25.5T542 622q0 11 2 15 0 7 6 30l15 57q9 34 21 73l23 79 23 75q11 36 19 60 26-7 51-12t51-7l20-3-11-55q-7-33-14-73l-16-81q-4-21-14-69t-14-72zm-209 97q-8-29-30-42.5T411 640q-34 0-54 22t-20 64q0 17 2 25.5t11 29.5l110 268 19 49q27-20 57-37t61-29l-32-98q-18-52-33-100zm1920 1112q-25-24-53-24-18 0-32 5l-234 84q-52 19-97 34 9 33 13.5 65.5t6.5 67.5l329-90q26-7 37-13t33-29 22-47q0-29-25-53z"},"children":[]}]};exports.u1F450=u1F450;var u1F451={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1175 581.5q52-52.5 124-52.5t124.5 52.5T1476 706t-52.5 124-124.5 52q-71 0-123.5-52.5T1123 706q0-72 52-124.5zm55.5 193.5q27.5 28 68.5 28 42 0 69.5-28t27.5-69q0-39-27.5-68t-69.5-29q-41 0-68.5 28.5T1203 706q0 41 27.5 69zm-983 134.5Q206 868 206 809q0-61 42.5-102.5T348 665q59 0 101.5 42.5T492 809q0 57-41.5 99.5T348 951q-59 0-100.5-41.5zm153-49Q422 839 422 809q0-31-21.5-52.5T348 735q-30 0-51.5 21.5T275 809q0 30 21.5 51.5T348 882q31 0 52.5-21.5zm326-136.5q35.5-36 84.5-36 50 0 85.5 35.5T932 809t-35.5 85.5T811 930q-49 0-84.5-36T691 809t35.5-85zm976 0q35.5-36 84.5-36 50 0 85 36t35 85-34.5 85-84.5 36q-51 0-86-36t-35-84q0-50 35.5-86zm649 185q-41.5 42-101.5 42-59 0-101-42.5t-42-99.5q0-59 43-101.5t100-42.5q58 0 100.5 42t42.5 102q0 58-41.5 100zm-49-152.5Q2281 735 2250 735q-30 0-51.5 21.5T2177 809q0 30 21.5 51.5T2250 882q31 0 52.5-21.5T2324 809q0-31-21.5-52.5zM2240 1082q16 7 26 22t10 32l-22 794q-5 154-279.5 249t-672.5 95q-396 0-672-95.5T349 1928l-22-794q0-22 18-40t41-18q11 0 22 4.5t19 12.5l264 246 93-290q5-16 19-28.5t31-12.5q18 0 34 7t24 23l160 294 202-298q17-26 49-26 14 0 27.5 6.5t21.5 19.5l196 294 159-290q8-14 21.5-22t29.5-8q20 0 35.5 10.5t21.5 30.5l93 294 268-250q17-17 39-17 7 0 13 2zm-101 745q-32-20-52.5-57.5T2066 1684q0-49 22.5-88.5t58.5-56.5l7-264-430 404q-17 15-42 15-30 0-48-26l-331-496-334 496q-20 27-51 27-20 0-38-16l-431-404 7 267q34 17 55.5 55.5T533 1684q0 47-19.5 83.5T464 1824l3 102q0 50 112 105t300.5 90 422.5 35q357 0 596-76t239-152zm-735.5 128.5Q1362 2005 1302 2005t-102-49-42-120q0-64 42-116.5t102-52.5q52 0 97.5 47t45.5 122q0 70-41.5 119.5zm-659-19.5q-20.5 24-49.5 24t-49.5-24-20.5-58q0-33 20.5-57t49.5-24q28 0 49 23.5t21 57.5-20.5 58zm275 48q-20.5 24-49.5 24t-49.5-24-20.5-58q0-35 20.5-59t49.5-24 49.5 24 20.5 59q0 34-20.5 58zm934-48q-20.5 24-49.5 24t-50-24-21-58q0-33 21-57t50-24 49.5 25 20.5 56q0 34-20.5 58zm-275.5 48q-21 24-50 24t-49-24-20-58q0-35 20-59t49-24 50 24 21 59q0 34-21 58z"},"children":[]}]};exports.u1F451=u1F451;var u1F452={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2251 2381.5Q2113 2516 1873 2516q-342 0-746.5-249t-660-635T211 901q0-248 141-397.5T730 354q137 0 288 46t307 134q57-19 117.5-30.5T1569 492q271 0 476.5 208t205.5 475q0 64-11.5 124.5T2210 1417q85 154 132 305t47 291q0 234-138 368.5zm-10.5-584Q2210 1680 2151 1560q-84 158-163 218.5t-174 60.5q-178 0-394.5-151.5t-366-367T904 928q0-72 25-121.5t74.5-92T1078 656l21-13q11-7 28-19 5 0 12.5-4t15.5-10l16-10q8-5 14-8-121-59-236-89.5T730 472q-191 0-295 113.5T331 903q0 315 239 672t614 590 689 233q190 0 294-100.5t104-284.5q0-98-30.5-215.5zM1211 713q-2 9-2 18l-1 19q0 136 134 324t324 324.5 330 136.5h17l16-3q43-76 73-167.5t30-189.5q0-222-170.5-393.5T1569 610q-89 0-187 29t-171 74zm489 1480q16 4 28.5 14.5t12.5 26.5q0 23-17 30t-32 7q-37 0-74-15t-37-41q0-21 16-30.5t33-9.5q9 0 31 6zm232 11q17 0 30 11t13 28q0 25-23 38t-51 13q-24 0-44.5-11.5T1836 2246t24-29 43-8zm228-.5q-29 26.5-53 26.5-17 0-25.5-11t-8.5-25q0-10 4-18 0-4 29.5-35.5t48.5-31.5q15 0 24.5 14t9.5 26q0 28-29 54.5zM1938 2046q19 0 33 7t14 29q0 21-23 33t-59 12q-27 0-42.5-8.5T1845 2095q0-18 16-29t46-16zm229-44q-6 21-34 42t-53 21q-18 0-28.5-12.5T2041 2030q0-25 41-51t51-26q12 0 24 13.5t12 26.5q0 3-1 5t-1 4zm-79-111q-34 22-63 22-13 0-21.5-11t-8.5-22l2-13q0-4 33.5-31.5t62.5-27.5q15 0 22 11t7 23q0 27-34 49zm-265-539.5q13-11.5 24-11.5 7 0 39 11.5t56.5 20 24.5 27.5q0 18-16 25.5t-33 7.5q-30 0-69-18t-39-34q0-17 13-28.5zm152-28.5q-29-2-61.5-21t-32.5-40q0-14 11.5-24t25.5-10q19 0 33 8t49.5 17.5 35.5 33.5q0 17-14.5 27t-37.5 10zm-37.5-237q10.5-11 26.5-11 10 0 23 6l23 12q3 0 32 15.5t29 44.5q0 17-12.5 24t-29.5 7q-29 0-65.5-24.5T1927 1108q0-11 10.5-22zM1703 1330q-28-2-61.5-31t-33.5-56q0-11 9-23t24-12q18 0 57.5 34.5t39.5 55.5q0 14-10.5 23t-24.5 9zm5-229q9-13 28-13 7 0 14.5 5.5t14.5 13.5l13 16q4 5 22 24t18 33q0 17-12.5 23.5t-23.5 6.5q-32 0-57.5-28t-25.5-54q0-14 9-27z"},"children":[]}]};exports.u1F452=u1F452;var u1F453={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2499 1311q-22 29-61 29-29 0-47-30.5t-18-67.5v-19q0-10-2.5-20t-12.5-10q-17 0-54.5 56.5T2212 1414t-66.5 123.5-12.5 36.5q0 11 3.5 21t3.5 21q0 42-30.5 89t-41 129-60.5 163-151 139.5-209 58.5q-107 0-210-32.5T1236 2061t-138.5-158.5-44-166T993 1660q-43 0-58 60.5t-66 122-123 90.5-157 29q-206 0-336-186.5T123 1344q0-11 1-20t1-19q0-28-23-69t-23-70q0-42 36-73.5t84.5-47.5 69.5-31 122-55 247.5-123.5 216-115.5T994 665q91-30 190-30 155 0 261.5 52T1552 838q0 49-26.5 83.5T1453 956q-66 0-99-64.5t-64.5-89T1185 778q-60 0-117 18.5T953 848l-72 42q-69 42-198.5 127T553 1112q0 24 55.5 37.5t120 38.5 135 85 101 84.5T1077 1382q40 0 120-25.5t248-25.5q128 0 256.5 28t180 52.5 70.5 24.5q34 0 75.5-59.5T2141 1231l63-75q73-88 123-124t87-36q53 0 80 77t27 154q0 55-22 84zM783.5 1471.5q-27.5-71.5-101-116T541 1294l-52-11q-18-4-38.5-7t-39.5-3q-58 0-84.5 12t-35.5 36-9 89q0 138 85.5 260T608 1792q92 0 147.5-57t55.5-145q0-47-27.5-118.5zm968 111Q1617 1522 1436 1522q-131 0-187.5 40t-56.5 124q0 95 59 184.5t164 128 226 38.5q120 0 182.5-85t62.5-179q0-130-134.5-190.5z"},"children":[]}]};exports.u1F453=u1F453;var u1F454={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1502 1301l18 47q80 214 155 528t75 427q0 32-7 47t-51.5 62-154 125.5-162 96-75.5 17.5q-33 0-89.5-24t-127.5-74.5-137.5-107T864 2363t-15-59q0-95 73-412.5t157-543.5l18-47q17-37 73-60t125-23q71 0 130 22t77 61zm608-100q-34 33-81 33-59 0-171-63t-196-148q-38 59-77.5 99.5T1491 1200q-2 0-55-29t-136-29q-46 0-92 11.5t-100 46.5q-44-28-87-71t-84-106q-84 85-196 148t-171 63q-48 0-81.5-34.5T455 1120q0-19 8-41t8-102q0-20-2-50l-8-135q-2-37-2-73 0-246 126-348.5T795 268q20 0 20 18 0 10-6 20l-14 24q-8 12-14.5 29t-6.5 39q0 98 100.5 175.5t187 99T1259 694l41-1 40 1q114 0 184.5-17t153.5-67.5T1793 502t32-104q0-22-6.5-39t-13.5-29l-14-24q-7-10-7-20 0-18 20-18 81 0 208.5 102.5T2140 719q0 64-7 144t-7 114q0 70 9 97.5t9 47.5q0 46-34 79zM1007 782q-140-51-225.5-129T668 493l-10-29q-45 45-63 108.5T577 718q0 37 2 73l8 134q2 29 2 50 0 84-12 140 41-6 144-69t286-264zm1015 333q-14-57-14-140 0-36 7-114.5t7-144.5q0-76-14.5-137T1943 464q-13 47-40 89t-60.5 77.5-75 64.5-86.5 48l-89 39 60 65q96 104 192.5 174.5T2022 1115z"},"children":[]}]};exports.u1F454=u1F454;var u1F455={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2373.5 1068.5Q2315 1209 2253 1284t-91 75q-17 0-32-9l-30-16q-28-14-62.5-29.5T1971 1289q-12 0-16.5 26.5t-4.5 61.5q0 85 23.5 314.5T2003 2008l7 110q3 56 3 111 0 12-5 22l-12 22q-70 120-292 154.5t-405 34.5q-157 0-335.5-24.5T714 2374t-99.5-83-28.5-62l6-151q3-106 22-278.5t27-281.5q0-6 1-21l6-79q0-23 1-45 0-35-4-59.5t-16-24.5q-32 0-67 15.5t-63 29.5l-29 16q-16 9-32 9-28 0-89-71t-121.5-215T167 816q0-24 6.5-46t42.5-49.5T332 657t200-88 288-106 270-71 210-17q205 0 441 74.5T2191 623l57 25q81 35 132.5 69.5T2432 810q0 118-58.5 258.5zm-822-580.5Q1447 453 1292 453q-156 0-261 35.5T926 570t105.5 81 260.5 35q153 0 258.5-35t105.5-81q0-47-104.5-82z"},"children":[]}]};exports.u1F455=u1F455;var u1F456={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2046 1998q-8 155-28 272t-25.5 179-78 92.5T1763 2572q-109 0-198-51t-89-179q0-48 11.5-135.5T1499 1993q0-45-1-88.5t-1-88.5q0-26 1-52.5t1-53.5q0-54-52-288t-56-265l-9-45q-5-21-13-43l-14-35q-9-22-20-29t-36-7q-24 0-34 4.5t-25.5 40.5-31.5 114-39.5 175-46 221.5T1100 1746q0 17 1 35t1 35q0 45-1 88.5t-1 88.5q0 138 11.5 217t11.5 132q0 126-87 178t-200 52q-84 0-153.5-31t-75-95.5-26-174.5-28.5-273.5-8-239.5q0-126 12.5-218.5t28-248T630 981l28-156q9-53 29.5-135T708 535l-1-15q0-81 15-113.5t53.5-59 177-67.5 316.5-41q247 0 380 41t168 63.5 54.5 52T1891 512v27q0 70 21.5 145.5T1969 971t47.5 340 25 226.5T2054 1758q0 85-8 240zM1078 561q2 0 2-7 0-5-4-10t-9-5l-42-6q-13 0-24.5 24.5T930 620t-157 38q-17 0-26-1-14 0-17 12l-5 43q0 9 12 13t48 4q100 0 175-43.5T1078 561zm265 51q0-15-14-15h-59q-6 0-10.5 4t-4.5 11v309q0 6 4.5 10.5t10.5 4.5h59q6 0 10-4.5t4-10.5V612zm-14-135q45 0 98-1t116-7q37 0 103.5-12.5T1713 420q0-40-122-69.5T1306 321q-85 0-170 7.5T970 358l-26 7q-30 8-47 20t-17 29q0 28 90.5 44.5T1245 476zm523 248q5 0 9-4.5t4-8.5l-5-32q-2-7-2-11-3-12-15-12-10 0-28 1-94 0-148-32t-73-62.5-28-30.5q-5 0-21 2l-24 4q-5 0-9 3.5t-4 11.5q0 6 2 7 42 80 118 124t176 44h20l15-2z"},"children":[]}]};exports.u1F456=u1F456;var u1F457={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M248 1967q78-161 149-258.5T599 1497l100-88q53-46 85.5-97t58.5-114q45 26 120 53.5t185 41.5q-58 88-125 132.5T875 1485v9q0 7-1 19 0 28 7 52t16.5 33 37.5 25l20 12q32 18 57 52t103 47l27-26q42-40 89-125t69-192q23 97 67 183.5t117 159.5q79-14 102-46t58-53l19-12q27-16 37-24t17.5-31.5 7.5-54.5v-18l-1-10q-89-16-159-67.5T1451 1291q111-13 185.5-40.5T1756 1197q61 148 168 234.5t215.5 201T2351 1967q-86 7-157.5 45t-108.5 89.5-144 51.5q-18 0-33.5-2t-34.5-2q-59 0-114 27.5t-102.5 72.5-119.5 45q-48 0-110-24t-128-24-128 24-111 24q-39 0-64.5-11.5T948 2252l-47-39q-26-22-75.5-43t-99.5-21q-19 0-34.5 2t-33.5 2q-104 0-143.5-50T413 2014.5 248 1967zM700.5 400Q790 377 843 348.5T949 320q17 0 41 7t24 18q0 5-4 14t-4 21q0 55 68.5 96t225.5 41q154 0 223.5-40.5T1593 379q0-17-4-24t-4-12q0-9 24.5-16t40.5-7q54 0 109.5 30t142 51 86.5 71q0 38-15.5 90.5T1929 653t-57 59.5-50 27.5-56 10q0 2-26 95.5T1714 976q0 26 1.5 52t6.5 52q-70 49-181.5 77t-243.5 28q-125 0-233.5-25.5T877 1082q4-22 6-46t2-60q0-25-12-78t-28-108l-12-40q-45 0-100-35.5T644.5 611 611 472q0-49 89.5-72zM2398 2076q14 38 22.5 65.5t8.5 41.5q0 49-77 71t-129 66.5-109 67-110 25.5l-47 3q-83 6-130 28.5t-121.5 56T1559 2534q-36 0-72.5-4.5T1416 2519l-63-10q-29-4-50-4t-50 4l-64 10q-35 6-73.5 10.5t-75.5 4.5q-69 0-140.5-31.5t-121-56T642 2416l-46-3q-51-3-109.5-24.5t-114.5-70-127.5-65.5-74.5-67q0-12 8.5-40t22.5-70l40 2q41 2 84.5 16.5T407 2149l30 32q47 50 100 66t119 16q22 0 39-2t31-2q68 0 143.5 73t195.5 73q66 0 125.5-24.5T1299 2356q50 0 111 24.5t124 24.5q116 0 196-73t143-73q14 0 31 2t39 2q150 0 226.5-93.5T2380 2076h18z"},"children":[]}]};exports.u1F457=u1F457;var u1F458={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2479.5 1777.5q-50.5 44.5-215 95.5t-266.5 51q-71 0-105-47t-48-135-32-88q-13 0-14 25l-20 191-34 290q-19 165-28 216.5t-72.5 83T1487 2504t-187 13q-129 0-225-20.5T937 2449t-50.5-50.5T868 2285l-31-271-37-335q0-25-14-25-19 0-42 135t-143 135q-47 0-122.5-14T344 1876l-58-20q-142-48-179.5-92.5T69 1584q0-67 14.5-190.5T144 1048l30-150q4-20 24.5-131.5T219 625v-25q0-13-1-27 0-50 15-71.5t47-21.5q22 0 60 14l80 30q43 17 85 31t72 14q35 0 98-39.5T831.5 416 969 322.5t58-19.5q35 0 99 44t79.5 60.5T1251 452q-85 90-163 194t-78 139q0 11 7.5 16.5t15.5 5.5 15.5-3.5T1082 766l89-117q35-45 81.5-95.5T1323 478l28-29 30-30q46-44 101-80t87-36h8q10 0 53 19.5t141.5 96T1929 532t92 37q45 0 154.5-44.5T2318 480q34 0 49 22t15 68q0 16-1 31.5t-1 28.5q0 29 22 144.5t24 123.5l30 149q39 194 56.5 325t17.5 211q0 150-50.5 194.5zM1762 1195q0-105-10-128t-39-23h-11q-88 8-174 11t-174 3q-231 0-343.5-9t-158.5-9q-14 0-21.5 8t-7.5 35q0 8 1 15.5t1 15.5v82q104 22 226 33t249 11q124 0 243.5-11t218.5-34zM818 924q0 4-1 15 0 23 6.5 26t53 9.5T1042 988t258 7q77 0 155-3l109-3q87-2 137-7.5t53.5-7.5 3.5-16q0-29-12-36t-99-30-155-23q-45 0-114.5 15t-77.5 16l-27-5q-24-6-84.5-16t-93.5-10q-113 0-196.5 27.5T818 924zm940 420l1-67q-53 10-147.5 22.5T1389 1317l39 45q4 6 6.5 12t2.5 14q0 16-11 27t-29 11q-17 0-30-13l-64-77-64 77q-13 13-31 13-17 0-28-11t-11-27 9-26l39-45q-142-5-241.5-18T826 1276v64l-1 71q0 53 37.5 69.5t167.5 34 281 17.5q108 0 209.5-9.5T1690 1494t68-88v-62z"},"children":[]}]};exports.u1F458=u1F458;var u1F459={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1911 1334.5q-130 87.5-288 87.5-93 0-179-39t-143-102q-67 67-147.5 104T978 1422q-168 0-293.5-92T559 1107q0-65 31.5-138.5t129.5-185 127-194T899 456l12-29h-1q12-31 28-50t37-19h14q15 0 24 6t9 15q0 8-1 15l-3 13q-21 56-38.5 115.5T962 641q0 105 69.5 173t138 125.5T1301 1067q61-69 130-127t139-125 70-173q0-75-30.5-160.5T1579 379q0-9 9-14.5t24-6.5h13q18 0 33.5 16t28.5 46l16 36q32 76 59 149.5t124 183 126 183 29 135.5q0 140-130 227.5zm76 634.5q16 31 16 63v12q0 2-11 2l-26 1-44 1q-67 4-137 54.5T1611 2266l-68 73q-45 49-118.5 116.5T1304 2523q-23 0-43-11l-38-21q-97-56-206.5-173T868 2162l-44-42q-34-31-73-50t-83-22l-43-1-25-1q-12 0-12-2-2-4-2-12 0-20 7-37l15-36q20-45 43-78t41-33q20 0 46.5 20.5T931 1943t336 54q157 0 323-36t225.5-72 64.5-38.5 17-2.5 30 20 26 38z"},"children":[]}]};exports.u1F459=u1F459;var u1F45A={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2269.5 1051.5q-27.5 12.5-66.5 33t-89.5 36.5-76 27.5-53.5 11.5q-45 0-47.5-34t-26.5-109.5-44-75.5q-11 0-16 15t-5 24q2 30 8 59t6 59q0 56-38.5 147.5T1782 1393q0 70 66.5 230.5t103 258 71.5 142 35 82.5q0 101-145 190.5t-290.5 131T1308 2469q-124 0-240.5-21.5t-208.5-60-205-113T541 2108q0-40 35-85t67.5-134T746 1636t70-245q0-54-38-145t-38-141q0-32 6.5-63.5T753 978q0-10-4.5-23.5T734 941q-21 0-45.5 74.5t-27 109.5-45.5 35q-27 0-52-11t-77-27.5-91-37-66-32.5-27-29q0-13 11.5-33.5T326 917q0-20-1.5-39t-1.5-37q0-73 48.5-162T506 556t170.5-36T808 493l64-34q74-39 161-58t259-23h15q295 7 405.5 74.5t200 67.5 176 33.5 136.5 121 50 170.5q0 18-1 36.5t-1 38.5q0 50 12 72t12 32q0 15-27.5 27.5zM1212.5 627q-39.5-6-115-34T985 532l-20-18q-10-8-20-13.5t-20-5.5q-30 0-45.5 36T864 623q0 85 59 143t145 58q70 0 127-60t57-96q0-35-39.5-41zM1349 2012.5q-22-22.5-54-22.5t-54.5 22.5-22.5 54.5 22.5 54 54.5 22 54-22 22-54-22-54.5zm0-396.5q-22-23-54-23t-54.5 23-22.5 55 22.5 54.5 54.5 22.5 54-22.5 22-54.5-22-55zm0-395.5q-22-22.5-54-22.5t-54.5 22.5-22.5 54.5 22.5 54.5 54.5 22.5 54-22.5 22-54.5-22-54.5zm0-396.5q-22-23-54-23t-54.5 23-22.5 55 22.5 54.5T1295 956t54-22.5 22-54.5-22-55zm358.5-293q-15.5-36-44.5-36-10 0-20 6t-19 14l-20 17q-31 27-111.5 59T1375 627.5t-41 37.5q0 33 56 96t129 63q66 0 135-50t69-153q0-54-15.5-90z"},"children":[]}]};exports.u1F45A=u1F45A;var u1F45B={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2242 2161.5Q2093 2292 1871 2320t-461 28q-28 0-55.5-1.5t-54.5-1.5q-28 0-55.5 1.5t-55.5 1.5q-207 0-437.5-25t-387-157.5T208 1830q0-92 27.5-193t62-181.5T332 1338q0-12-5-26l-10-29q-6-15-11-32t-5-37q0-64 73-161.5T525.5 890 725 779t183-51 62-28q0-11-7.5-31t-7.5-40q0-82 59-133.5t144-51.5q46 0 81 20.5t47 20.5q10 0 18.5-4t17.5-7l54-15q25-7 54-7 82 0 131 58t49 124q0 24-5.5 37.5T1599 696q0 18 34 20.5t156 34.5 231 101 187 177l31 41q30 40 45 75t15 70q0 20-5 36.5t-11 31.5l-11 28q-5 14-5 26 0 31 41 129.5t62.5 191T2391 1832q0 199-149 329.5zM2138 1084q-69-97-194-172.5T1640.5 810 1310 784q-339 0-528 71t-289.5 192.5T392 1229q0 14 7 24t24 10q10 0 16-5t12-13l53-69q119-157 283-209t417-52h191q157 0 262.5 16.5T1857 985t163.5 107 103 120.5 57.5 50.5q14 0 20-10t6-24q0-48-69-145zm-931.5-384q26.5-10 26.5-27 0-7-3.5-12.5T1226 644q0-21 5.5-39t5.5-24q0-25-28.5-40t-53.5-15q-44 0-75.5 26t-31.5 67 30.5 66 73.5 25q28 0 54.5-10zm145.5-16q29 24 65 24 41 0 71-26t30-71q0-40-28.5-60.5T1425 530q-43 0-72.5 26.5T1323 622q0 38 29 62z"},"children":[]}]};exports.u1F45B=u1F45B;var u1F45C={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2175 2271v34q0 78-27 100t-90 22H542q-62 0-89.5-22T425 2305l2-72q2-83 32.5-278.5T530 1554l18-94q54 20 108 43l107 46q86 37 169 66.5t173 51.5q0 8-1 25 0 78 46 116t162 38q88 0 120-10.5t48.5-39 16.5-94.5v-21l-2-22q52-13 108.5-35.5T1711 1585l88-28q107-33 146-49.5t62-23.5l48-16 19 96q39 207 70 404.5t31 302.5zM578 1378q27-34 71.5-51.5T738 1309h58l3-81q14-446 142-686.5T1300 301q142 0 245 87.5T1716.5 679t89.5 630h56q49 0 94 19t71 55q-135 48-280.5 89.5T1456 1559q-22-16-51-18l-53-4q-33-3-67-3h-39q-37 0-73 10t-46 28q-57-14-191.5-59T736 1440t-158-62zm374-69h697q-9-426-98.5-637.5T1299 460q-105 0-173.5 81T1009 795t-57 514zm456.5 444q-14.5 14-74.5 14-85 0-114.5-12.5T1190 1690q0-53 23-65.5t97-12.5 93.5 14 19.5 54q0 59-14.5 73z"},"children":[]}]};exports.u1F45C=u1F45C;var u1F45D={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2250 1707q-41 79-147.5 168.5T1846 2044t-306 153.5-295.5 113.5-273.5 39q-18 0-39-3l-42-4q-156 0-299.5-75T378 2069t-69-362q0-154 42-328t158.5-320T793 812t354.5-153 363.5-52q68 0 132.5 10.5T1724 637t32 9q26 0 38.5-44t39-87 76-81 102.5-38 110.5 48.5T2180 543q0 27-25.5 58.5T2085 665l-47 35q-3 2-31.5 20t-28.5 35q0 9 5.5 16.5T1997 786l16 14q54 47 124.5 165.5t112 265T2291 1499q0 129-41 208zm-448-814q34-7 64-17.5t30-18.5q0-27-67.5-46.5T1690 791q-149 0-350.5 76.5t-366.5 197-234 246-79.5 226.5-28 110.5-27.5 9.5q-23 0-31.5-17.5T564 1602q0-22 18-133.5t116-256T979 946t389-177l76-21 67-18q-2-7-17-9.5t-32-2.5q-169 0-314.5 55t-293 142.5-243 203-140 278T427 1717q0 63 8.5 112t17.5 85.5 38 86 72 85 87 53.5 64 18q38 0 38-54 0-17-2-35.5t-2-32.5q0-287 44.5-455T958 1282.5t342.5-231.5T1778 898zm98-226q10 0 92-60t82-74q0-17-18-33t-37-16q-18 0-35 12t-43 45l-10 17q-18 29-28.5 55t-10.5 43q0 11 8 11z"},"children":[]}]};exports.u1F45D=u1F45D;var u1F45E={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M445 1802l-45-15q-49-15-80-37.5t-31-51.5v-5l8-32q8-36 21-58t50-52.5 98-58 163-56.5 163-58.5 95-61.5 40.5-46.5 6.5-38.5l-1-29q2-51 52-107t102.5-95 97.5-39l23 1q16 0 26-14.5t24-28.5l93-95q42-43 100-66.5t118-23.5q79 0 132.5 34.5t69 63T1806 860q6 0 12-2l11-2q100-21 206-21 121 0 158 22t78.5 73.5 72 144T2374 1324q0 27-1 51t-3 50q-36 59-151 122.5t-242 86.5-266 97-315.5 114.5T1017 1886q-150 0-294-21t-278-63zm1959-87v19q0 64-27 82t-140.5 63-258.5 45q-16 0-23.5-10.5t-7.5-27.5l1-9q0-6-1-10-50 0-93 47t-124.5 95-188 80-219.5 43-252 11q-243 0-437-32t-304-76-122-65-12-51l2-43q0-35 5-52.5t13-17.5q14 0 31 12l29 20q113 62 268 96t504 34q129 0 252-15.5t232-45 193.5-66.5 145-75.5T2010 1721t164-33 132.5-60.5 51-38.5 14.5-5q15 0 23 34t8 79zm-1905.5-67.5q27.5 18.5 166 65.5t286.5 47q135 0 267.5-39.5t241.5-111 203-173.5l144-154 15-15q14-14 24-28.5t10-26.5-17.5-28-34.5-16-39 24.5-35 24.5q-25 0-77-45t-166-89.5-259-44.5q-73 0-148.5 66t-75.5 93q0 35 59.5 35t167.5 21 203 69 95 86q0 56-184 156t-397 100q-153 0-288.5-48.5T506 1567q-14 0-24.5 10t-10.5 25q0 27 27.5 45.5zM1837 914q0 11 5 31t5 45q0 68 8 85.5t64 17.5q121 0 192-25t71-73q0-49-53.5-75T1978 894q-52 0-95.5 5.5T1837 914z"},"children":[]}]};exports.u1F45E=u1F45E;var u1F45F={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2418 1411v237q0 74-72.5 137.5T2119 1909l-68 26q-136 54-527 181.5T849 2244q-190 0-365.5-51t-239-121-63.5-184q0-141 102.5-292.5t319-277T949 1053l90-97 70-71q66-66 82.5-128t63-95.5 102-48T1477 599q101 0 179 30.5t143 87.5q32-7 62-19l60-24q29-11 60-19t64-8q118 0 210 90t127.5 219.5T2418 1411zm-114-103v-19q0-23-1-45.5t-3-45.5q-35-21-155-27.5t-120-92.5v-18q-2-23-8-33t-17-10q-12 0-50.5 16.5T1856 1050q-23 0-41.5-9t-41.5-9q-15 0-38 12.5t-43.5 14.5-25.5 38l-3 19q-3 28-29 54t-60.5 29-34.5 40q0 29-35 66.5t-74 37.5q-3 0-7 1l-8-1q-24 0-26 19.5t-23.5 48-54.5 35.5-57.5 13.5-24.5 31.5q0 8 19 72.5t19 128.5q0 17-2 31t-2 36q0 21 5.5 31t27.5 10q31 0 98-23.5t164-68.5l55-25q27-12 112-42.5t250-102 225-109.5l51-33q28-17 40.5-34t12.5-54zM422 1597q-27 27-41.5 52.5T366 1703q0 91 125.5 140t316.5 49q81 0 192-12.5t131-31 20-130.5q0-73-6-145l-3-49q-3-42-17-69t-45-44l-57-29q-52-26-98.5-40t-91.5-14q-25 0-48 7t-142.5 83.5T451 1569zm1859 22l-1-16q0-11 2-25.5t2-27.5q0-16-4-26.5t-11-10.5q-5 0-10 3l-12 8q-63 35-131.5 60t-134.5 55l-287 130q-247 111-466 172.5T804 2003q-100 0-201.5-21T440 1929t-89.5-70-31-39.5-7.5-1.5q-7 0-13.5 13t-6.5 39q0 78 75 137t228.5 86 271.5 27q126-2 246.5-24.5t215-54 269-85T1873 1858t189-76.5 144.5-63 65.5-45.5 9-37v-17zm-993-757q8 0 16.5-1.5t17.5-1.5q122 0 201 38t94.5 67 29.5 29q7 0 43-21t49-37 13-48q0-74-87.5-126.5T1470 708q-103 0-151 50t-48 89q0 15 17 15zm-106 137h10q43 5 53 4t91 27.5 111 48.5 39.5 25.5 15.5 7.5l17 3q27 0 49.5-17.5t22.5-42.5q0-53-123-93.5T1271 921q-62 0-83 21.5t-21 39.5q0 17 15 17zm-121 127.5q28 2.5 83 12t95 29.5l46 24q8 4 52 33.5t71 29.5q13 0 26.5-11t13.5-36q0-47-94.5-102t-208.5-55h-29q-43 2-63 19.5t-20 33.5q0 20 28 22.5zM915.5 1245q13.5 4 62.5 17.5t100.5 41 105 41 61.5 13.5q25 0 44-11.5t19-29.5q0-42-109.5-91T995 1177h-18q-34 4-54.5 16.5T902 1226q0 15 13.5 19zm1178-236.5q2.5 5.5 5.5 16.5l6 21q11 40 52 40t66.5 3.5 45.5 3.5q13 0 19.5-5.5t6.5-24.5q0-56-12-112.5t-49-98.5l-28-31-7 32q-4 21-25.5 49t-32.5 35.5-30.5 23.5-19.5 32q0 10 2.5 15.5z"},"children":[]}]};exports.u1F45F=u1F45F;var u1F460={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2236 1123q-46 98-70 214t-27.5 287-83.5 171q-37 0-55.5-28.5T1981 1679l1-30v-33q0-136-22-194.5t-67-58.5q-53 0-113.5 114T1658 1783.5 1475.5 2104t-298 197-395.5 69q-134 0-266.5-31.5t-165-75T318 2169q0-96 136-240t246.5-290 272-287 240.5-254 182.5-281 244-296T1915 393q149 0 258 138.5T2282 888q0 137-46 235zm-248-481q0-48-32-74t-90-26q-86 0-178 82.5T1506.5 846t-147 239.5T1188 1312l-114 126q-7 7-85 90t-78 158q0 32 13 52.5t65 35.5q33-88 188-193t336.5-395.5 273.5-410T1962 656q14 0 26 3v-17zm-28 108q-9-8-23-8-18 0-38.5 14t-81.5 91.5-164 251.5l-101 170q-52 87-116.5 171.5t-161 164.5-142.5 112.5-46 63.5q0 11 14 11 67 0 125.5-17.5t116.5-55 118.5-108 130-188.5 217-361.5T1952 818t10-26q7-13 7-25 0-9-9-17z"},"children":[]}]};exports.u1F460=u1F460;var u1F461={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2334 1391.5q-17 64.5-56.5 113t-128 88T1956 1632q-44 0-66.5-15t-22.5-47q0-17-1-35t-3-36q-30 25-54.5 56t-46.5 65l-46 68q-74 112-215 221t-334.5 162.5T791 2125q-237 0-390-92.5T248 1771q0-43 13-84t36-70l35-45q17-22 29.5-46.5T374 1471v-43q0-37 20.5-103t85.5-138.5T651.5 1054t178-92T955 930q59 0 119 38t135.5 109.5T1325 1149q33 0 115-67.5T1625 926t213.5-133 213.5-45q122 0 198 62.5t88.5 160T2351 1174q0 153-17 217.5zM1528 1626l24-23q22-22 37-44t15-38q0-27-60-46t-160-92.5-178-147.5l-136-131-23-21q-23-18-48-32.5t-44-14.5q-18 0-43 8.5t-48 19.5l-28 13q-6 3-83.5 39.5T675 1174q0 7 2 7t71 47.5 146.5 193 113 262.5 35.5 164q0 28 14.5 41t50.5 13q68 0 171.5-65t231.5-196zm622.5-722.5Q2094 869 2015 869q-105 0-197 51.5t-195.5 145T1451 1195l-28 15q-14 8-23 15.5t-9 13.5q0 13 15 21l24 14q109 73 177.5 104.5T1710 1410q13 0 16-4.5t56-47.5 265-178l48-31q57-36 84.5-74t27.5-80q0-57-56.5-91.5zM880 1780.5q-15-60.5-27-116.5t-34.5-114-60.5-90q-26-20-59-20-60 0-202.5 94.5T354 1751q0 92 89 140.5t327 48.5q81 0 103-21.5t22-57.5q0-20-15-80.5z"},"children":[]}]};exports.u1F461=u1F461;var u1F462={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1888 2490q-138-66-177-203l-10-34q-5-16-11-28t-12-12q-13 0-13 16t-11.5 32-50.5 16q-45 0-73.5-17.5T1501 2212q0-77-22.5-189t-22.5-178q0-78 20.5-184.5T1497 1435q0-117-31.5-337.5t-58-337T1378 562q-8 72-21 143l-27 141q-19 98-33.5 206t-33 217.5T1245 1449q0 60 10 102.5t21 66.5l23 55q11 28 19 56t8 59q0 65-36 168.5t-37 166.5v67q0 23-28 34.5t-58 11.5q-38 0-51.5-8t-13.5-27l-2-24q0-9-4-60.5t-25-51.5q-19 0-45.5 51t-105 145.5-184 151T505 2469q-120 0-208-47t-88-135q0-30 18-61t144-104 211.5-172 131-220 45.5-350q0-148-15-294l-30-292q-5-47-12-96l-15-96q-7-48-11.5-96.5T671 410q0-109 131-135.5t239-26.5q92 0 181 18l42 8q77 16 91 48.5t23 98.5q8-90 33.5-114t120.5-41.5 187-17.5q139 0 254 30t115 127q0 86-21 222t-48 395.5-27 421.5q0 275 46.5 442t127.5 263 153 119 72 77q0 84-22.5 125.5t-86 63.5-131.5 22q-125 0-263-66z"},"children":[]}]};exports.u1F462=u1F462;var u1F463={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1527 957.5q43-49.5 103-49.5 66 0 119 62t53 138q0 63-43 111.5t-104 48.5q-66 0-118.5-58t-52.5-135q0-68 43-117.5zm342 15.5q28-43 68-43 34 0 61 35.5t27 80.5q0 50-26 84.5t-65 34.5q-42 0-67.5-29.5T1841 1064q0-48 28-91zm348.5 214.5Q2185 1233 2144 1233q-33 0-58-31.5t-25-73.5q0-51 31-85t78-34q38 0 59 26t21 59q0 48-32.5 93.5zm146.5 128q-35 38.5-80 38.5-35 0-52-16t-17-42q0-40 39-82t83-42q32 0 47 18.5t15 42.5q0 44-35 82.5zm94.5 69.5q19.5 18 19.5 49 0 42-28.5 68t-73.5 26q-25 0-47-15t-22-42q0-33 36.5-68.5t69.5-35.5q26 0 45.5 18zm-386-78q90.5 40 136 122.5T2254 1608q0 131-73 270.5t-230 302-265 223-213 60.5q-93 0-157.5-59.5T1251 2253q0-143 106-211.5t113-73.5l46-31q42-27 64.5-58.5t22.5-71.5q0-37-15-95t-15-99q0-92 37-168.5t103-127 172-50.5q97 0 187.5 40zM1243 716q-68 66-150 66-64 0-101-48t-37-122q0-63 49.5-137.5T1134 400q70 0 123.5 45.5T1311 563q0 87-68 153zM747 558q-22-33-22-83 0-65 33-108.5t86-43.5q51 0 75 31.5t24 72.5q0 65-42 114.5T807 591q-38 0-60-33zM498 360.5q31-36.5 75-36.5 47 0 76 37t29 91q0 55-27 95t-66 40q-42 0-80-41t-38-98q0-51 31-87.5zM305.5 624Q270 580 270 531q0-36 22.5-62t56.5-26q45 0 80 41.5t35 90.5q0 41-25.5 67T382 668q-41 0-76.5-44zM284 662q42 40 42 90 0 31-23.5 54.5T248 830q-45 0-86-42.5T121 697q0-35 19.5-55t48.5-20q53 0 95 40zm848 1368q-83 72-177 72-114 0-223-87t-221.5-321.5-148-410T327 1016q0-175 120-258.5T727 674q139 0 233.5 97t94.5 226q0 71-50.5 180T954 1356q0 62 26.5 119.5t95.5 131 104 134.5 35 122q0 95-83 167z"},"children":[]}]};exports.u1F463=u1F463;var u1F464={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M447 2425v-249q0-101 89.5-225T758 1742t235-85h26v-81q-41-34-74.5-86.5T885 1375q-40-14-77.5-79.5T770 1158q0-34 10-56.5t30-22.5q0-24-3-47t-3-46q0-225 141.5-368T1300 475q219 0 358 148t139 369v45.5l-2 30.5q26 0 37.5 21t11.5 55q0 83-40 153.5t-83 78.5q-27 62-61 113.5t-75 86.5v81h21q104 0 237.5 87t221 209 87.5 218v254H447z"},"children":[]}]};exports.u1F464=u1F464;var u1F465={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2304 1884h-677q-57-72-131-131.5t-154-91.5q15-24 29-52 56-38 89.5-112.5T1494 1346q0-71-35-118 0-67-22-152.5t-68-150T1259 814q0-11-1-23t-1-25q0-176 110-286t276-110q165 0 275.5 120T2029 788q0 11-1 21.5t-1 21.5q20 0 28.5 17.5t8.5 43.5q0 62-31 116t-65 62q-20 48-46.5 88t-58.5 66v64h16q80 0 181.5 64.5t170.5 160 73 174.5v197zm-684 455H296v-197q0-79 72-176t173-160 180-63h19v-63q-32-26-58-67t-46-89q-33-11-61-63.5T547 1356q0-26 7.5-44t23.5-18q0-18-2.5-36t-2.5-36q0-177 110.5-287T960 825q171 0 278 115t107 304v20l-2 22q21 0 29.5 17t8.5 43q0 61-30 116t-66 64q-21 48-47.5 88t-58.5 66v63h17q78 0 176.5 61.5t171 158T1620 2142v197z"},"children":[]}]};exports.u1F465=u1F465;var u1F466={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2172 1822q-66 50-142 50-11 0-16-1-58 207-259.5 327.5T1293 2319q-255 0-463.5-122T570 1872q-78 0-143-50t-65-147q0-81 48-136t138-60q-25-59-35-128t-10-134q0-196 107.5-354t300-249.5T1314 522q222 0 412 92t278.5 245 88.5 338q0 47-7.5 103.5T2041 1479q93 0 145 55.5t52 141.5q0 96-66 146zm-228-266q-4-48-12-95-53-76-87-96.5t-37-20.5q-7 0-8 9l-2 22q0 12-4 21.5t-15 9.5q-15 0-45.5-23.5t-47-31-68-48.5-77.5-41q-15 0-34 6.5t-39 15.5l-42 18q-14 7-60.5 24t-70.5 17q-13 0-22-4.5t-9-18.5q0-8 1.5-18t1.5-19q0-10-3-18t-13-8q-16 0-68.5 27.5t-112.5 52-85 24.5q-17 0-23-4.5t-6-12.5q0-9 5.5-21t5.5-21q0-8-5.5-11t-10.5-3q-32 0-75 36.5T764 1413t-120 112q-3 32-5 65t-2 67q0 218 83.5 327t236 176.5T1293 2228q191 0 348.5-72t232-189.5T1948 1657q0-53-4-101zm-938 254.5q-31 32.5-70 32.5-41 0-71.5-32.5T834 1731q0-46 30.5-78.5T936 1620q40 0 70.5 32.5t30.5 78.5q0 47-31 79.5zm709.5-.5q-29.5 33-70.5 33t-71-33-30-79q0-45 29.5-78t71.5-33q41 0 70.5 33.5t29.5 77.5q0 46-29.5 79zM1418 2062.5q-48 35.5-113 35.5-58 0-116.5-28t-58.5-67q0-7 5-15t14-8q8 0 16 4l14 8q26 15 54.5 25.5t58.5 10.5q33 0 60-8.5t56-24.5l17-9q11-6 20-6 8 0 14.5 7t6.5 15q0 25-48 60.5zm625-273.5q6 0 12 1 47 0 71.5-32t24.5-83q0-55-32-81t-83-26q0 22 1 44.5t1 45.5q0 34-1.5 66t-6.5 63zm-1499 1h9q-3-32-5-64.5t-2-67.5v-45l3-45q-53 6-77 34t-24 73q0 51 24.5 83t71.5 32zm668 80q4-5 11-5 16 0 33.5 6t36.5 6q17 0 28-2.5t19-5.5l13-6q6-2 13-2 11 0 15 3t4 8q0 24-31.5 39.5T1296 1927q-32 0-60-15.5t-28-31.5q0-5 4-10z"},"children":[]}]};exports.u1F466=u1F466;var u1F467={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2192.5 2326.5Q2133 2358 2048 2358q-106 0-192-48t-119-128q-101 60-220.5 88.5T1279 2299q-104 0-207.5-22.5T874 2209q-35 79-119.5 124.5T566 2379q-85 0-145.5-31.5T360 2287q0-20 33.5-33t33.5-89l-1-19q0-59 37-130.5t116-95.5q-14-35-23-67l-49-6q-24-3-52-17.5t-47.5-30.5-34-39.5-20-49.5-5.5-53q0-70 36.5-123t103.5-68q0-2-1-5l-2-4q-16-59-28.5-117T444 1221q0-196 112-356t313-255.5 420-95.5q216 0 411 84.5T2006.5 839t111.5 356q0 85-14.5 153.5T2063 1462q75 7 118.5 63.5T2225 1657q0 102-70.5 149t-127.5 47q-8 0-14-1l-12-2-13 40q100 14 149.5 85.5T2187 2136q0 49 7.5 69t24.5 27l13 6q9 4 14.5 9.5t5.5 18.5q0 29-59.5 60.5zM1923 1478q-11-58-33-58-17 0-42 15t-44 15q-29 0-69.5-31t-64.5-31q-22 0-79 31.5t-102 31.5q-38 0-85-32t-75-32q-29 0-81.5 31.5T1164 1450q-41 0-94-26t-60-26q-11 0-42.5 20.5t-53 35T870 1468q-17 0-32.5-6t-30.5-14l-30-14q-15-6-30-6-36 0-70 54t-51 72q0 20-1.5 41t-1.5 43q0 194 72 307t233.5 188.5T1279 2209q184 0 333-65t235.5-179 86.5-327q0-102-11-160zm-930 312q-30 33-71 33-40 0-71-32.5t-31-78.5 30-78.5 72-32.5q43 0 72 33t29 78-30 78zm710 0q-30 33-71 33-40 0-70-32t-30-79 29-79 71-32q43 0 72 33t29 78-30 78zm-296 251q-45 36-115 36-60 0-118-29.5t-58-64.5q0-8 5-15.5t15-7.5q8 0 52 24t100 24q47 0 89.5-23.5t54.5-23.5q8 0 14 6.5t6 15.5q0 22-45 58zm615-494l2 37q0 19 1 37 0 39-2 76t-6 69q13 3 26 3 46 0 70-31.5t24-82.5q0-50-27-77.5t-88-30.5zM535 1770q3-1 6-1-4-31-6-63.5t-2-67.5v-41l3-40-3-4q-2-2-4-3-48 6-71.5 32.5T434 1655q0 51 24.5 83.5T529 1771q3 0 6-1zm664 79.5q4-5.5 12-5.5 14 0 30.5 7t36.5 7q17 0 28.5-2.5t19.5-5.5l14-6q6-2 12-2 11 0 15 3t4 8q0 23-30 39t-59 16q-33 0-60-16t-27-31q0-6 4-11.5z"},"children":[]}]};exports.u1F467=u1F467;var u1F468={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2237 1736q-74 52-144 52-7 0-14-1l-13-2q-58 189-176.5 315t-284 181-317.5 55q-150 0-311.5-57T694 2093t-174-307q-4 0-8 1t-9 1q-38 0-98.5-26.5t-88-75.5-27.5-111q0-85 46.5-140.5T467 1366q-21-78-21-165 6-244 118.5-390.5t303-235T1251 487q9 0 18 1t19 1q9 0 18-1t19-1q295 3 551 188t256 537q0 39-3.5 77.5T2118 1364q97 9 145 68.5t48 142.5q0 109-74 161zm-235-232q-1-23-3-49-74-144-160.5-231.5t-133-143.5-79.5-56q-19 0-143.5 76T1255 1204l-53 15q-26 8-54 8l-14-1q-16 0-26.5-6.5T1097 1200q0-17 28.5-44t36.5-36l22-21q27-26 36.5-40.5t9.5-27.5q0-11-14-11-30 0-84.5 41t-204 150T720 1368.5 588 1463q-2 14-4 38.5t-2 44.5q0 233 127 413.5t338 240.5l40 10q44 12 97.5 19.5t103.5 7.5q320 0 517.5-194t197.5-492q0-24-1-47zM500 1699q-15-76-15-155 0-21 2-41.5t2-40.5q-57 6-82 36t-25 77q0 55 26.5 90t79.5 35q7 0 12-1zm1602-1q6 0 13 1 50 0 76-34.5t26-89.5q0-52-28.5-82t-92.5-33q2 23 3 45t1 44q0 38-3.5 74.5t-8.5 72.5zm-658.5 288.5Q1386 2027 1310 2027q-71 0-141-32.5t-70-76.5q0-10 7-18t17-8q12 0 64 27t106 27q41 0 73-9.5t67-27.5l20-11q12-6 22-6 12 0 19 8.5t7 17.5q0 28-57.5 68.5zM1001 1631q-29 32-70 32-40 0-69-33t-29-77q0-42 29-75t69-33q41 0 70 32t29 76q0 46-29 78zm719.5 0q-28.5 32-69.5 32t-69.5-32-28.5-78q0-44 28.5-76t69.5-32 69.5 32 28.5 76q0 46-28.5 78zM1201 1745q9 0 17 7l17 15q10 10 23.5 16.5t34.5 6.5q36 0 58-22.5t33-22.5q8 0 14 6.5t6 14.5q0 23-33.5 46.5T1293 1836q-43 0-77-23.5t-34-48.5q0-19 19-19z"},"children":[]}]};exports.u1F468=u1F468;var u1F469={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2175 2068.5q-88 203.5-233.5 310.5T1740 2486q-34 0-34-45 0-17 4.5-35t10.5-36l12-34q7-21 24-87t23-92q-97 75-215 115t-255 40q-124 0-249.5-36.5T819 2153l25 98q19 78 34 115.5t15 74.5q0 23-7.5 34t-26.5 11q-59 0-205-110.5T422 2062t-86-490q0-127 20-262.5t72-274 150-250 206-176T1015.5 509t242.5-36q9 0 18 1t36 1q195 0 367 70t284 186l17 13 16 14q78 79 135.5 191t94.5 258 37 364q0 294-88 497.5zM751 1387q-5 42-6 82.5t-1 81.5q0 111 11 221.5t31 221.5q109 109 238 165t286 56q149 0 279-58.5t226-163.5q21-112 33.5-224t12.5-223q0-16-1-30.5t-1-29.5q-63-41-159-145.5t-126.5-163-47.5-58.5q-4 0-11.5 5t-24.5 20q-133 111-401.5 168T751 1387zm158 140.5q29-32.5 68-32.5 40 0 69.5 32t29.5 78q0 45-29 76t-70 31q-40 0-68.5-31.5T880 1605q0-45 29-77.5zm628.5-.5q29.5-32 68.5-32t68.5 32 29.5 78q0 45-29.5 76t-68.5 31-68.5-31-29.5-76q0-46 29.5-78zM1159 1934q7-6 18-6t48 14 92 14q21 0 38.5-3.5t32.5-8.5l27-8q12-4 25-4 20 0 20 15 0 10-10.5 23t-18.5 20l-10 9q-23 18-49 26.5t-55 8.5q-70 0-117.5-30t-47.5-57q0-7 7-13zm52-131q5-5 11-5 10 0 28.5 19t48.5 19 48.5-19 28.5-19q7 0 11.5 5t4.5 13q0 20-27.5 39.5T1299 1875q-40 0-66.5-20.5T1206 1814q0-6 5-11z"},"children":[]}]};exports.u1F469=u1F469;var u1F46A={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2536 1769q0 25-16 34.5t-38 9.5q-29 0-42.5-13t-13.5-35q0-12 4.5-23.5t4.5-24.5q0-30-30-74t-42-44q-3 0-3 3l-1 6q3 29 3 54 0 40 9 76.5t9 55.5q0 22-3 41l-6 40q-5 24-7.5 49t-2.5 55v28q0 49 29 68.5t29 41.5q0 24-26.5 37.5T2336 2168q-44 0-64.5-27t-20.5-65q0-23 4-48t4-62v-25q0-68-3-81t-13-13q-12 0-14.5 18t-2.5 54q0 16 1 35l4 69q0 14 1 19 0 76-22.5 101t-62.5 25q-31 0-56.5-14t-25.5-37 29.5-40.5 29.5-66.5q0-94-9-147.5t-9-68.5q0-27 8-58.5t10-59.5q-8 17-19.5 31t-34.5 14q-48-2-99-74.5t-80.5-175.5-47.5-103q-8 0-12.5 8t-4.5 22q0 33 16.5 84.5t42.5 94.5l22 37q10 18 17.5 33.5t8.5 28.5q0 31-28 47t-58 22.5-42 89.5-12 126q0 60 15.5 69.5t34 27.5 18.5 44q0 28-18.5 41.5T1796 2157q-48 0-70.5-19t-22.5-73q0-17 1-40l6-102q0-27 1-51 0-36-5-60.5t-19-24.5q-15 0-19.5 24t-4.5 61q0 24 1 50.5t3 52.5l3 49q0 24 1 41 0 54-22.5 73t-70.5 19q-28 0-46-13.5t-18-39.5q0-38 33.5-58t33.5-82q0-49-13.5-128.5t-26-83-56.5-21-44-51.5q0-14 7-29.5t18-33.5l22-38q23-38 41.5-92.5t18.5-88.5q0-14-4-22t-12-8-16 14.5-34.5 92.5-40 106.5-22 39-15.5 38.5-30 47-51 19q-29 0-53.5-20t-24.5-49q0-38 7.5-70t7.5-67q0-59-20.5-92t-31.5-33q-10 0-18 4.5t-8 21.5q0 14 4 36l9 48q5 26 9 54t4 54q0 56-23 101t-23 167q0 29 3.5 77.5t35 72 31.5 57.5-23 50-62 16q-70 0-101-28.5t-31-88.5q0-34 5.5-87.5t5.5-94.5q0-34-5-56t-19-22q-15 0-20 22t-5 56q0 22 2 47l6 97q0 23 1 41 0 57-32 85.5t-99 28.5q-39 0-62-16t-23-50q0-33 31.5-57.5t35-72 3.5-78.5q0-130-23.5-169.5T793 1608q0-25 4-52.5t9-53.5l9-47q4-22 4-36 0-17-7.5-21t-18.5-4-30.5 31.5T743 1519q0 35 6.5 67t6.5 70q0 29-24 48.5t-54 19.5q-14 0-29-5.5t-27-19.5h-5q-14 7-37.5 25.5T528 1743q4 14 10 30l12 33q5 16 8.5 30t3.5 24q0 6-3.5 13t-14.5 12l-19 8q-11 5-22 9l-22 7-3 26q-3 19-3 27 0 16-2.5 30.5T470 2021q0 41 26 55t26 44q0 25-21 38.5t-46 13.5q-37 0-55-25.5t-18-89.5v-133l-13 1v132q0 64-18 89.5t-55 25.5q-24 0-46.5-13.5T227 2121q0-30 26.5-43t26.5-50q0-15-2.5-30.5T275 1967l-4-55-33-10q-28-9-43-19t-15-23q0-8 2.5-19.5t6.5-24.5l9-25q4-13 8-23-13 11-29.5 38.5T117 1834q-22 0-38-14t-16-32q0-20 17-37t37-23l10-4q11-6 27.5-29.5T182 1654l30-50q15-25 31.5-50.5T281 1501q-9-2-23.5-14t-20.5-22q-6 2-12 7.5t-13 5.5q-8 0-12-8.5t-11-8.5q-6 0-11.5 5.5T167 1472q-10 0-17-28.5t-7-59.5q0-63 33.5-125.5t89-91.5 104.5-29q101 0 165 80.5t64 165.5q0 26-8 57t-17 31q-5 0-10.5-5.5T552 1461q-7 0-11 8.5t-12 8.5-13-5.5-10-7.5q-7 10-21 20t-25 17q17 14 36 43t23 40l8 19 8 17q3 8 6 10 2-14 13-28t35-17q2-105 69-235.5t137-182 72-54.5 2-12q0-12-24-30t-54.5-64T760 888q0-108 69.5-175t172.5-67q100 0 170.5 67t70.5 170q0 76-30.5 123.5T1158 1072t-24 30q0 17 51.5 49.5t111.5 119 92 190.5q29-85 63.5-157.5t73-105.5 71.5-42.5 33-31.5q0-8-11.5-16.5T1588 1088q-19 22-48.5 32t-55.5 10q-24 0-41.5-7.5T1425 1101q0-13 20.5-32.5T1466 998v-32q0-16-1-35l1-33q2-89 60.5-155.5T1687 676q104 0 163.5 67.5T1910 931q0 20-1 36.5t-1 30.5q0 49 20 69.5t20 33.5q0 14-17 21.5t-42 7.5q-26 0-55.5-10t-46.5-32l-30 19q-14 9-14 17 0 22 32.5 30.5t74.5 43.5 85.5 137 55 141.5 30.5 64.5q4-2 8-2h8q13 0 21 3.5t18 13.5q16-32 30.5-49.5t40.5-39.5q-54-32-80-77.5t-26-96.5q0-78 56.5-136t139.5-62h13q88 4 142.5 63t54.5 135q0 49-29 99.5t-75 72.5q4 9 37 34t70 70l17 21q35 48 42.5 86.5t16.5 51 10 28.5v13z"},"children":[]}]};exports.u1F46A=u1F46A;var u1F46B={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2374.5 1797q-28.5 25-63.5 25-56 0-114-99.5t-93.5-224T2041 1374q-20 0-20 40 0 45 23.5 117.5T2102 1661l31 52q14 25 23.5 47t9.5 40q0 45-57.5 69t-77.5 29-37.5 110.5T1976 2182q0 81 21.5 94t45 36.5 23.5 62.5q0 36-25.5 54.5T1977 2448q-65 0-95-26.5t-30-98.5q0-43 5.5-122t5.5-143q0-50-6.5-82t-24.5-32q-20 0-27.5 33.5t-7.5 81.5q0 35 2 72t5 72l4 68q2 32 2 55 0 70-30.5 96t-94.5 26q-39 0-64-18.5t-25-55.5q0-39 24.5-62.5t45.5-37.5 21-92q0-71-18.5-174.5t-37-108.5-77-29.5-58.5-69.5q0-18 9.5-40t24.5-47l31-53q35-61 57.5-131t22.5-114q0-41-20-41-28 0-64.5 130.5t-93 224T1351 1822q-36 0-62-23-55-2-93-41t-48-73l-22-80-22-72q-21-68-40.5-104.5T1028 1392q-12 0-16.5 6.5t-4.5 23.5q0 19 6 48l11 64q6 35 11.5 71.5t5.5 69.5q0 79-31.5 139T978 2060q0 94 9.5 141.5t25.5 57.5 38.5 36 22.5 59q0 45-32 65.5t-87 20.5q-92 0-135-38t-43-116q0-23 3-55l10-142q2-37 2-70 0-51-6.5-85.5T759 1899t-27 34.5-7 84.5q0 33 3 70l10 139q2 32 2 55 0 79-42 118.5T562 2440q-54 0-86-20.5t-32-65.5q0-33 19.5-56.5t39-37 28.5-69 9-133.5q0-189-32.5-244.5T475 1673q0-33 5.5-69t12.5-70l12-63q5-29 5-48 0-20-5-25.5t-19-5.5q-20 0-44.5 71T417 1593q0 34 4 68t4 76q0 37-32.5 64.5T318 1829q-52 0-87-44.5T196 1658q0-137 93-342t232-274l41-21q15-7 15-22t-45.5-53.5-74-96T429 714q0-144 94.5-234.5T759 389q136 0 232.5 89t96.5 229q0 84-30 143t-74 96.5-44 52.5 15 22l41 21q64 32 113 86t96.5 135.5T1273 1439t53 133l41 49q29-29 45.5-87.5t79.5-202 116.5-189.5 100-58.5 46.5-43.5q0-10-17-21l-43-26q-24 29-63.5 42t-76.5 13q-33 0-56-10t-23-28 27-46 27-94q0-21-1-44.5t-1-51.5q0-160 81.5-252t222.5-92q140 0 221.5 93t81.5 251q0 27-1.5 50.5T2132 868q0 66 28 96t28 46q0 18-24 28t-57 10q-37 0-76.5-13t-63.5-42l-43 26q-17 11-17 21t5 20.5 62 30.5 112.5 87.5T2221 1458l37 100q24 70 84.5 95t60.5 84q0 35-28.5 60z"},"children":[]}]};exports.u1F46B=u1F46B;var u1F46C={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1316 1563q30-44 55.5-152.5T1473 1194t167-154l41-21q15-7 15-22t-45-53-74-98-29-142q0-138 95-227.5t234-89.5q140 0 235 90t95 234q0 82-30.5 140t-74 94.5T2059 997t15 22l41 21q140 70 233 273.5t93 341.5q0 82-35 127.5t-88 45.5q-41 0-73.5-26.5T2212 1736q0-42 4-75.5t4-67.5q0-56-24.5-129.5T2150 1390q-12 0-18 6t-6 25q0 20 6 49l11 63q6 34 11.5 70.5t5.5 69.5q0 84-31.5 138.5T2097 2055q0 78 8.5 134t28.5 71 39.5 38 19.5 55q0 45-32 66t-87 21q-91 0-134-38t-43-116q0-39 7-123t7-143q0-52-7-87.5t-27-35.5-26.5 35-6.5 86q0 33 3 70l10 140q2 32 2 56 0 78-42 117t-136 39q-54 0-86.5-21t-32.5-66q0-32 19.5-54.5t39.5-38.5 28.5-72.5 8.5-132.5q0-190-32-244.5t-32-137.5q0-34 5.5-70.5t11.5-70.5l12-64q5-29 5-48 0-17-4.5-23t-16.5-6q-37 0-89 203.5T1347 1798q-28 0-48-10-20 10-47 10-119 0-171-203.5T992 1391q-12 0-16.5 6t-4.5 23q0 19 6 48l11 64q6 34 11.5 70.5t5.5 70.5q0 83-32 137.5T941 2055q0 76 8.5 132.5T978 2260t39.5 38.5 19.5 54.5q0 45-32.5 66t-86.5 21q-94 0-136-39t-42-117q0-24 3-56l10-140q2-37 2-70 0-51-6.5-86t-26.5-35-27 35.5-7 87.5q0 59 7 143t7 123q0 79-43 116.5T525 2440q-55 0-87-21t-32-66q0-32 19.5-55t39.5-38 28.5-71 8.5-134q0-189-31.5-243.5T439 1673q0-33 5.5-69.5T456 1533l12-63q5-29 5-49 0-19-6-25t-18-6q-21 0-45.5 73.5T379 1593q0 34 4 67.5t4 75.5q0 39-32.5 65.5T281 1828q-53 0-88-45.5T158 1655q0-136 92.5-340.5T484 1040l41-21q15-7 15-22t-43.5-51.5-74-94.5T392 711q0-144 95-234t235-90q137 0 233 89.5t96 227.5q0 82-29 142t-74 98-45 53 15 22l41 21q97 48 173.5 163t101 227.5T1299 1584q5-5 9-11z"},"children":[]}]};exports.u1F46C=u1F46C;var u1F46D={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2372 1783q-28 24-62 24-55 0-113-97t-94.5-224.5T2039 1358q-11 0-16.5 11t-5.5 30q0 47 27.5 125t54.5 121l31 53q14 25 23.5 46.5t9.5 39.5q0 44-58 68.5t-77 29.5-37.5 109.5T1972 2167q0 76 21 91.5t45.5 38.5 24.5 62q0 38-25 56t-63 18q-54 0-90-24t-36-100q0-23 2-55l8-139q2-37 2-71 0-49-6.5-82t-26.5-33-26.5 33-6.5 82q0 34 2 71l8 141q2 32 2 55 0 77-36.5 99.5T1681 2433q-38 0-63-18.5t-25-56.5q0-37 24.5-60.5t45.5-39 21-92.5q0-34-4-76.5t-18.5-121.5-35-85.5-77-30.5-56.5-69q0-18 9.5-39.5t24.5-46.5l30-52q34-60 58-131.5t24-114.5q0-19-5.5-30t-16.5-11q-17 0-32 40t-46 135.5-64 151-63 89-66 33.5q-25 0-46-12-21 12-45 12-55 0-111-91t-94.5-224.5T984 1358q-11 0-16.5 11t-5.5 29q0 46 27 125t73.5 153.5T1109 1783q0 45-56.5 69t-77 30.5-35 87-18.5 122-4 75.5q0 79 21 93t45.5 38.5 24.5 59.5q0 38-25.5 56.5T920 2433q-53 0-89.5-23.5T794 2309q0-23 2-55l8-139q2-37 2-71 0-49-6.5-82t-25.5-33q-20 0-27 33.5t-7 85.5q0 34 2 71l8 138q2 32 2 54 0 76-35.5 99t-90.5 23q-38 0-63.5-18t-25.5-56q0-36 24.5-60.5t46-40T629 2166q0-34-4-76.5T606.5 1968t-35-85.5-77-30.5-56.5-69q0-18 10-39.5t24-46.5l31-52q35-60 58-131.5t23-114.5q0-19-5.5-30t-16.5-11q-26 0-63.5 129.5T403 1712t-111 95q-36 0-63.5-26t-27.5-60q0-59 61-84t80.5-87.5 84-217.5T549 1128.5t103-61 45-43.5q0-10-17.5-21T637 977q-24 29-63.5 42t-76.5 13q-33 0-56.5-10T417 993q0-17 27-44t27-96q0-20-1-43.5t-1-49.5q0-175 87.5-260.5T774 414q143 0 223.5 92t80.5 252q0 28-1.5 51.5T1075 854q0 69 27.5 95t27.5 44q0 19-23.5 29t-57.5 10q-37 0-76.5-13T909 977q-25 15-42 26t-17 21l3 18q3 11 59 30.5t115 87.5 137 281l36 100q13 36 31.5 57.5t43.5 33.5l25 13 25-13q57-28 80-102t85-216.5 117-188 100-58 45-43.5q0-10-17.5-21t-42.5-26q-24 29-63.5 42t-76.5 13q-33 0-56.5-10t-23.5-29q0-17 27-44t27-96q0-20-1-43.5t-1-49.5q0-158 81-252t223-94q139 0 222 93.5t83 250.5q0 28-1.5 52.5T2130 856q0 66 27 93t27 44q0 19-23 29t-57 10q-36 0-76-13t-64-42q-25 15-42 26t-17 21q0 24 17 31t63 27 90.5 72 87 149 64.5 159.5 40 104.5 61 63.5 53 35.5q19 29 19 56 0 37-28 61z"},"children":[]}]};exports.u1F46D=u1F46D;var u1F46E={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2227 1852.5q-72 51.5-141 51.5-7 0-14-1l-13-2q-48 162-161 291t-272.5 188-328.5 59q-152 0-307-54.5t-274.5-181T545 1902q-4 0-8 1t-8 1q-37 0-96-26t-87-73.5-28-106.5q0-79 42.5-137t118.5-67q-5-33-8.5-66.5T466 1360q-13-17-20.5-24.5T438 1309v-40q-63-36-100-105.5T301 1023q0-253 304.5-449T1304 378q263 0 485.5 87t364 228.5T2295 971q0 73-40.5 142.5T2154 1217v92q0 14-9 27l-20 28-4 64q-2 31-7 62 69 9 104 33t58 69.5 23 104.5q0 104-72 155.5zm-242-51.5q-8-14-12-34l-6-29q-9-51-25.5-99t-37.5-96q-51 26-112 48t-136 39q40 2 66.5 33.5t26.5 73.5q0 45-29 75.5t-68 30.5-67.5-30.5-28.5-75.5q0-33 16-59t43-39q-64 11-138.5 18.5T1316 1665q-191 0-348-35t-275-98q-47 102-61 170t-17 78q25 166 122 302t251.5 199 308.5 63q278 0 458.5-145t229.5-398zM408.5 1084.5Q418 1114 438 1141q0-13 12.5-27.5T654 1036t414-87q32-58 90-96t138-38q73 0 132.5 35t94.5 100q160 19 312 58.5t242 75.5l53 22 7 5q28-32 44-68t16-71q0-116-143.5-241.5T1715 539t-411-66q-356 0-630.5 171.5T399 1023q0 32 9.5 61.5zm774.5 72q46 44.5 113 44.5t113-44.5 46-102.5q0-60-47.5-103T1296 908q-62 0-110.5 42t-48.5 104q0 58 46 102.5zM727 1460q49 26 110 49t137 40l68-256q-73 6-147 9t-153 14l-45 127zm352 109q35 5 73 9.5t77 6.5l59-291q-14 0-27-2t-25-5q-22 0-45.5 1t-45.5 1zm-63.5 244q-29.5 30-67.5 30-41 0-68.5-30.5T852 1737q0-44 28.5-75.5T948 1630t68 31 29 76q0 46-29.5 76zm399.5 252q8 0 15.5-1t14.5-1q14 0 23.5 6.5t9.5 17.5q0 30-49 50t-122 20q-15 0-30-2l-29-3q-13 0-23-3l-14-3q-35-10-54.5-25.5T1137 2087q0-11 9.5-17.5t23.5-6.5q32 0 64.5 4.5t65.5 4.5h14q26 0 51-1.5t50-5.5zm665-252q13 3 27 3 48 0 74-33t26-87q0-51-28.5-80.5T2093 1583l-4 11q2 17 3 35v36q0 76-12 148zm-1555 3q-8-36-11-73.5t-3-74.5v-20q0-9 1-18l-12-44q-44 8-67.5 35.5T409 1696q0 54 26.5 87.5T514 1817q6 0 11-1zm677.5 80q5.5-6 13.5-6 11 0 33 22.5t58 22.5q20 0 34.5-7t24.5-16l17-15q7-7 16-7 8 0 13.5 6t5.5 13q0 23-33.5 46.5T1307 1979q-46 0-78-23.5t-32-46.5q0-7 5.5-13z"},"children":[]}]};exports.u1F46E=u1F46E;var u1F46F={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2139 2177q-50 131-149.5 224.5T1781 2528t-162 33q-39 0-64.5-13t-25.5-35q0-17 16.5-35t39.5-36q-48 21-135 38.5t-158 17.5q-80 0-171-21t-144-49q8 9 39 38t31 48q0 20-21.5 32t-50.5 15q-111 0-249-61.5T487 2281t-101-405q0-201 69-434.5T667 1053q-50-55-89.5-120.5t-71-156.5-45-201-38-193.5T399 250q0-66 45-106.5T567 103q199 0 439 201t278 484h45q22-160 119-308.5T1720.5 217 2045 103q80 0 124.5 40.5T2214 250q0 57-24 133t-35.5 174-39 191-74.5 176-112 148q135 166 197.5 391t62.5 413q0 170-50 301zm-418 274q152-32 265-181t113-393q0-167-61.5-389T1860 1131q-67 48-148 83 58 42 80 78t22 73q0 14-10 27t-35 13q-16 0-31-6l-28-11q-99-36-198.5-55t-200.5-19q-117 0-217 23.5T946.5 1381t-99.5 20q-19 0-33.5-4.5T799 1372q0-33 27-68.5t92-81.5l-18-9-22-9q-23-9-72-39t-72-49q-132 142-195.5 362.5T475 1877q0 233 109 384.5T855 2451l23 6q-59-67-91-170.5T755 1980q0-46 3.5-96t17-97 38-85.5 65-58.5 81.5-23 95-5 124-31 84-47.5 52-51.5q22-19 48.5-34t59.5-15q69 0 114 72t130.5 164 120.5 182.5 35 214.5q0 110-32 213.5t-95 174.5zm-20-187q17-47 24.5-96t7.5-99q0-47-6-91.5t-20-85.5q-11 13-26 21.5t-29 8.5q0 45-24.5 76t-65.5 31q-37 0-64.5-29t-27.5-72 27.5-71.5 64.5-28.5q8 0 16 3 10 0 18.5-3.5t15.5-8.5l13-8q6-4 13-4t12 4 5 11q0 8-4.5 13.5t-9.5 9.5l-9 8q-5 4-5 6l5 6q28 0 37-3t21-5q-18-36-43-68.5t-52-63.5l-55-63q-58-66-77-101.5t-40-35.5q-11 0-26.5 12.5T1363 1567l-39 35q-51 46-140.5 75.5T1027 1707q-86 0-114.5 20t-48 77.5T845 1990q0 68 3.5 129.5T868 2243q84 87 200 125.5t224 38.5q101 0 211.5-32t197.5-111zM1293 879q0 12 1 24t1 23q0 46-6.5 88t-17.5 85l36-1 34 1q-9-43-15.5-87t-6.5-91v-22q0-10 2-20h-28zm185 194l1 45q22 5 42 12t42 12q70-34 134-87.5T1805.5 931t73-179.5 44-154T1938 517q0-23-11-41.5t-41-18.5q-64 0-180 104.5T1534 819t-56 254zm-420 74q18-8 36.5-14.5t38.5-11.5q3-21 3-27 0-109-53-262T911 568 726 457q-28 0-38.5 17T677 513q0 38 23.5 102T734 735.5t42 135 102.5 145 115 92 64.5 39.5zm154 930q5-4 11-4 7 0 13 5l12 11q7 7 17.5 12t27.5 5q16 0 26.5-5t17.5-12l13-11q5-5 12-5 6 0 11 4t5 10q0 18-26 35.5t-59 17.5q-34 0-60-17.5t-26-35.5q0-6 5-10zm189 104l11-7q6-4 13-4 13 0 13 17 0 42-42 68t-88 26h-16q-50 0-91-26.5t-41-70.5q0-14 14-14 5 0 40 18.5t86 18.5q52 0 101-26zm-309.5-181q-27.5 29-62.5 29-37 0-64.5-29t-27.5-72l1-6q-16 0-38.5-15t-22.5-30q0-6 4.5-13t11.5-7q14 0 21.5 4t30.5 4l10-1q7 0 7-5-28-25-28-38 0-7 6-10.5t11-3.5q10 0 26.5 12t33.5 12q7-3 18-3 35 0 62.5 28.5t27.5 71.5-27.5 72z"},"children":[]}]};exports.u1F46F=u1F46F;var u1F470={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2322.5 2154q-28.5 48-90.5 77l-4 3q2 22 3 43.5t1 42.5q0 76-13 90.5t-36 23-118 11.5h-10l-28 2q-14 0-28 1-31 0-67-4.5t-70-19.5h-12q-67-13-111-60t-58-152q-89 54-195.5 77.5T1295 2313q-86 0-187.5-24.5T925 2216q-17 105-60.5 150T756 2424h-9q-37 15-73 19.5t-66 4.5q-14 0-28-1l-29-2h-8q-90-2-114-9.5t-38-20-15-59.5l-1-32q0-21 1-43l2-44q-67-33-98.5-78.5T248 2045q0-40 9-78l17-70 6-22q66-267 112-432.5T537.5 1050 771 738q-3-9-4-19t-1-19q0-57 40.5-98t97.5-41q16 0 32 4t31 11q14-7 29.5-11t32.5-4q30 0 55 12t46 32q10-8 20-13.5t21-8.5q15-42 51-69t81-27 81.5 27 49.5 69q27 9 47 26 22-22 47-33.5t56-11.5q32 0 61 15 15-8 31-11t32-3q56 0 97.5 41t41.5 96q0 11-2 21.5t-5 21.5q121 89 224.5 314t159.5 449l50 196q11 42 20.5 86.5t24.5 84.5l6 22q0 11 13 53t13 94q0 62-28.5 110zM1765 2016q-13-8-18-30.5t-15-92-18-192.5q-9 17-27 27t-31 10q0 44-25.5 75.5T1565 1845q-36 0-63.5-29t-27.5-71q0-43 27-72t64-29q7 0 17 2 17 0 34-11.5t27-11.5q7 0 11.5 4.5t4.5 10.5q0 8-4.5 14t-9.5 10l-10 7q-5 3-5 6 5 5 9.5 6t10.5 1q13 0 24.5-5t25.5-5q3 0 5.5 1t5.5 3q-5-82-19.5-169t-31.5-166q-16-20-47-69t-43-49q-16 0-57.5 34.5T1344 1361t-255 114-187 75l-6 47q-2 19-3.5 43t-6.5 38q7-6 11-6 8 0 22 5t26 5q5 0 13-1t8-6q0-2-13.5-12t-13.5-26q0-7 5-10.5t11-3.5 12 3l14 8q7 5 15 8.5t18 3.5q10-2 18-2 37 0 64 29t27 72q0 42-27.5 71t-63.5 29q-38 0-64.5-29.5T941 1738q-9 0-24.5-7t-31.5-27q-5 28-12.5 110.5t-14 135.5-25.5 66l23 25q43 50 108 91.5t129 59.5l37 9q33 9 80 15.5t85 6.5q124 0 247-43.5t208-145.5zm489 76q7-29 7-50 0-28-6.5-63t-17.5-59l-5-22-32-125q-35-137-82.5-307.5t-119-335.5T1841 867q-13 43-49.5 70.5T1708 965q-11 0-25-2t-27-9l11 32q26 106 54.5 217t48.5 236l12 76q17 121 31.5 263t18.5 161q18 3 38 3 19 0 43-1l47-2q23 0 45-1t40-1q91 0 150 41.5t59 113.5zM617.5 1938q29.5 1 59.5 4l47-1q23 0 43-2l3-32q9-120 26.5-251t22-174.5 26.5-159T941 957q-8 2-16.5 3t-16.5 3q-51 0-89-28.5T770 856q-91 82-182 305.5T421 1686l-54 212-5 22-16 62q-8 32-8 62 0 20 7 48 0-61 51.5-108t155.5-47q36 0 65.5 1zm550-1180q18.5 13 45 23t26.5 30.5 19 38.5 45 18q24 0 42-15t22.5-43 31-31 42-22.5T1456 713q0-38-32.5-53t-39.5-15-22-42-59-42q-29 0-45 18.5t-19 38.5-32 31l-22 10q-15 7-25.5 22t-10.5 32q0 32 18.5 45zM2134 2046q-29-17-89-17-54 0-94.5 2.5t-84.5 2.5q-45 64-104 116 4 24 7.5 54.5t11.5 48.5q50-59 168-63.5t166-28.5 48-64q0-34-29-51zM1537 780l-14 30q-4 8-4 17 0 30 20 46.5t42 16.5q14 0 22.5-3t15.5-7l12-6q5-3 14-3 8 0 16 3l15 8q7 4 15 7.5t17 3.5q30 0 47.5-21t17.5-45q0-12-3-19.5t-8-14.5l-7-12q-4-6-4-14 0-5 1.5-10t3.5-9l12-24q3-7 3-24 0-25-17.5-43.5T1708 638q-18 0-32.5 10.5T1645 659q-8 0-14-4l-13-7q-11-5-18.5-7.5T1582 638q-17 0-33.5 9t-23.5 28q3 9 4 19.5t1 18.5v12q0 5-1 10 4 5 7.5 14t3.5 16q0 8-3 15zM844 2157l-37-34q-41-41-74-89-48 0-96.5-3.5T552 2027q-53 0-84.5 17t-31.5 53q0 44 55.5 64t149.5 28l47 4q40 3 76 17.5t61 42.5q2-5 4-12l3-14zm6-1425q10 17 10 29 0 16-10 31t-10 35q0 26 19 44t45 18q11 0 19.5-3.5T939 878l13-7q6-3 14-3 10 0 17 3l13 7q10 6 17 8.5t17 2.5q27 0 45-19t18-43q0-11-3.5-19.5T1082 791l-7-15q-4-7-4-15t7-20l-2-22q0-13 1.5-25.5t7.5-26.5q-3-3-5-7l-4-7q-10-9-23-12.5t-24-3.5q-13 0-22.5 3t-15.5 6l-12 7q-6 3-13 3-8 0-25.5-10.5T903 635q-26 0-44.5 17.5T840 698q0 17 10 34zM607 2357q54 0 89.5-11t58.5-34q-18-27-127.5-33.5T467 2263l-2 32q0 15-1 29 0 7 1 13t1 12l30 2 49 4h13q12 0 25 1zm1533-8l1-17v-44l-2-27q-30 8-64 10t-65 5l-56 5q-46 5-70.5 11.5T1851 2312q23 23 58.5 34t89.5 11l51-2h11zm-701-358.5q2 3.5 2 10.5 0 43-41 70t-97 27q-55 0-96.5-26.5T1165 2002q0-15 12-15 7 0 43.5 18t82.5 18q47 0 84.5-18t41.5-18q8 0 10 3.5zm-223-98q5-3.5 12-3.5 6 0 12 5l12 11q6 7 16.5 12t27.5 5q15 0 26-5t19-12l13-11q5-5 11-5 7 0 11.5 4t4.5 9q0 19-26 36.5t-59 17.5-59-17.5-26-36.5q0-6 5-9.5z"},"children":[]}]};exports.u1F470=u1F470;var u1F471={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2322 1439l-4 50q-9 116-45.5 180t-71.5 142-36 161l-2 76q-3 109-41 172t-123 108-178 45q-101 0-167-45.5t-88-130.5q-66 21-137 31.5t-133 10.5q-94 0-170.5-20t-94.5-24q-13 89-74 135t-156 46q-111 0-205-61t-121-148.5-34-199-69.5-222.5-79.5-200-17-178q0-284 143-538.5t355.5-384T1305 315q241 0 400 66.5T2012.5 608 2243 968.5t82 397.5q0 37-3 73zm-101-8q3-31 3-64 0-183-81-371t-205-320-256-195.5-377-63.5q-233 0-375 61.5T657.5 670t-206 320.5T376 1367q0 188 75.5 314.5T540 1924l10 97q9 94 35.5 141t87.5 80 128 33q48 0 81-18t44-55q-8 2-17.5 3t-23.5 1q-61 0-105-41t-44-101q0-36 19-84.5t19-80.5q0-64-51.5-135.5T671 1604q0-157 90.5-243t265.5-116.5 262.5-117.5 145.5-87q40 0 72 30l60 57q49 47 94 69t92 27 70.5 34.5 40.5 73.5l27 74q17 47 27.5 97t10.5 94q0 61-23 114t-51.5 96.5-28.5 96.5q0 21 6 39l13 36q6 18 12 39t6 47q0 61-43 101.5t-106 40.5q-14 0-22-1t-16-3q21 38 56 54t89 16q77 0 141-38.5t81-78.5 19-125l2-74q3-114 72-241t75-183zm-481 559q-16-42-16-90 0-35 9-70.5t27-63.5l31-50q15-24 26-52.5t11-65.5q0-48-18.5-115.5T1750 1325q-67-7-117-29.5t-84.5-48.5-113.5-105q-20 10-38.5 25.5T1360 1199l-36 33q-81 72-264.5 109T824 1442.5 772 1604q0 57 51.5 131.5T875 1902q0 45-15 85 94 82 218.5 116t217.5 34q91 0 217.5-31t226.5-116zm-39-397q0 3 1 7 0 46-30.5 79.5T1600 1713q-42 0-72.5-33.5T1497 1600q0-47 31-79.5t72-32.5h11l10 2q17 0 35.5-13t28.5-13q8 0 14 4t6 13q0 16-15.5 27t-16.5 14q5 7 15 7 16 0 25-1.5t15-3.5l10-4q4 0 11-1 8 0 14.5 7.5t6.5 15.5q0 15-23.5 33t-45.5 18zm-699-105q41 0 71.5 32.5t30.5 79.5q0 46-30.5 79.5T1002 1713t-71.5-33.5T900 1600q0-4 1-7-19 0-44-15.5t-25-35.5q0-8 6-15.5t14-7.5q7 0 19.5 5t41.5 5q6 0 8-1t7-6q0-3-16-14.5t-16-25.5q0-9 6-13.5t14-4.5q6 0 13 4l15 9q8 5 17 9t19 4l11-2h11zm146.5 336q-29.5-17-29.5-53 0-23 11-43l22-38 28-44q34-51 48.5-115t42.5-64q10 0 15.5 11t6.5 30v18q0 70-42 143.5t-42 85.5q0 11 12 13.5t26 2.5q13 0 26-1.5t27-1.5q19 0 32.5 8.5t13.5 23.5q0 17-11.5 28t-26.5 11q-14 0-32 1t-38 1q-60 0-89.5-17zm277.5 60q2 5 2 11 0 41-39.5 66.5T1298 1990l-8-1-9 1q-53-3-89-27.5t-41-63.5v-4q0-6 2.5-11t9.5-5q9 0 45 18t82 18q53 0 84-18t43-18q7 0 9 5z"},"children":[]}]};exports.u1F471=u1F471;var u1F472={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2237 1719q-58 59-155 59h-15l-13-2q-53 183-176.5 312T1594 2267t-306 50q-141 0-300.5-52t-280-179T534 1777q-5 0-13 1-98 0-157-59t-59-148q0-68 34-123.5t111-77.5q-4-6-5.5-13.5T443 1342v-168q0-18 13-36 20-169 121.5-338T861 536.5t435-94.5q251 0 432 93t284.5 262 124.5 341q13 18 13 36v168q0 7-2 13t-5 13l15 3q57 14 97 66.5t40 131.5q0 91-58 150zm-246-213v-32q-2-22-8-27t-28-29l-36-40q-140-18-304.5-28.5T1296 1339q-138 0-280 8t-347 31q-14 27-32 49l-39 45q-3 38-3 73 0 137 49.5 265T792 2034t230 141 266 45q313 0 508.5-189t195.5-496q0-19-1-29zM929 1004q80-11 172-18.5t195-7.5 195 7.5 172 18.5q-37-228-130.5-365.5T1296 501q-137 0-230.5 128T929 1004zm446.5 228q33.5-33 33.5-77t-36-77-79-33q-48 0-83.5 32.5T1175 1155q0 44 33.5 77t83.5 33 83.5-33zM512 1690q-13-71-13-148l1-43q0-22 3-43-53 6-79 34t-26 79q0 54 25 88t77 34q7 0 12-1zm1563-3q15 3 29 3 48 0 73.5-33.5t25.5-87.5q0-51-28.5-80.5T2084 1456q2 22 3 43t1 42q0 38-3 74t-10 72zm-882.5 21.5q5.5-7.5 14.5-7.5l6 1q22 5 43 10.5t44 5.5q33 0 54.5-10.5t39.5-10.5q7 0 12 5t5 13q0 19-35 42t-77 23-77-19-35-38q0-7 5.5-14.5zm266 250Q1397 2005 1311 2005q-93 0-161.5-41.5T1081 1882q0-10 7.5-20.5t18.5-10.5q13 0 70 31t128 31q63 0 117.5-30.5t69.5-30.5q11 0 19.5 8.5t8.5 20.5q0 31-61.5 77.5zm-471-359.5q-28.5 21-66.5 21t-67-21-29-51q0-28 28-49.5t68-21.5q41 0 68 21.5t27 49.5q0 30-28.5 51zm733.5 0q-29 21-67 21t-67-21-29-51q0-28 28-49.5t68-21.5 68 21.5 28 49.5q0 30-29 51z"},"children":[]}]};exports.u1F472=u1F472;var u1F473={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2270.5 1595q-51.5 131-135.5 221l-25 27q-16 16-41 16-6 0-11-1.5t-7-1.5q-60 187-176 307t-273 172.5-314 52.5q-154 0-311-54.5t-274-179T533 1849q-36-9-75.5-51.5t-75-90T323 1596t-36-149q-10-72-10-151 0-277 122.5-507.5t354-355T1302 309q313 0 543 122.5T2198.5 783t123.5 500q0 181-51.5 312zM2137 931q-66-168-185-279-169 71-323 158t-292 190q190 100 412 299.5t333 395.5q76-102 98.5-200.5T2203 1288q0-189-66-357zm-154 829q-100-179-304-366t-442-315q-145 112-323 296t-307 410q45 185 161 308t281 170l44 11q42 11 94 18t101 7q165 0 316.5-60.5t249-189T1983 1760zm-336 293.5q-37 29.5-91 29.5-62 0-139-35t-129-35q-45 0-119 39t-124 39q-49 0-80.5-19.5T933 2018q0-28 35.5-32.5t81-50 87.5-66.5q-26-8-43.5-25t-17.5-49q0-40 48-109t90-160 73-91q19 0 25 12.5t6 26.5v11q-5 57-71 169t-66 123 14.5 14 31.5 3q14 0 27.5-1t27.5-1q29 0 45 9.5t16 27.5q0 5-1 8 91 16 171.5 75t125.5 59 45 34q0 19-37 48.5zm79.5-352Q1696 1735 1653 1735q-41 0-72.5-33t-31.5-82q0-48 31-81.5t73-33.5q44 0 74 34t30 81q0 48-30.5 81.5zm-880 0Q816 1668 816 1620q0-47 30-81t74-34q42 0 73 33.5t31 81.5q0 49-31.5 82t-72.5 33q-43 0-73.5-33.5zm-426-185.5Q447 1619 523 1695q12-23 29-49l36-55q108-162 251-308.5t234-221.5 186-150.5 250.5-169T1848 569q-216-141-546-141-444 0-676 249.5T394 1295q0 118 26.5 221z"},"children":[]}]};exports.u1F473=u1F473;var u1F474={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2219 1728.5q-74 50.5-139 50.5-8 0-14-1l-14-2q-47 163-160.5 293t-274 188.5T1288 2316q-151 0-307.5-53T707 2087t-174-310q-4 0-8 1t-8 1q-62 0-136.5-49.5T306 1569q0-85 48.5-140.5T493 1362q-9-48-14.5-94.5T473 1173q0-215 115-353t296-216.5 368-78.5q11 0 21 1t19 1q11 0 20.5-1t20.5-1q299 0 544 181.5t245 479.5q0 45-5.5 89t-14.5 87q102 12 146.5 70.5T2293 1571q0 107-74 157.5zM1989.5 1515q-1.5-15-1.5-31-65-60-142.5-193T1723 1047l-60-148-19 12h-1q-73 47-247 99.5t-332 87T785 1212t-184 206l-4 64q-2 32-2 64 0 148 57 281t160 225 233.5 130 242.5 38q316 0 509.5-191t193.5-483q0-16-1.5-31zM570 1182q0 29 1 44l2 28q0 14 4 22 48-63 113.5-114t148-90.5 249-76.5 312-85.5 190-78T1663 802q33 0 56.5 17.5T1754 865l33 84q44 110 108.5 233.5T2004 1360q22-84 22-169-3-147-54.5-237T1825 788.5 1601 667t-277-46q-17 0-27 1h-9q-8 0-26-1-176 0-332.5 67.5T671.5 869 570 1182zm299.5 442.5Q841 1594 841 1549q0-44 28.5-75.5T937 1442q40 0 68.5 31.5t28.5 75.5q0 45-29 75.5t-68 30.5-67.5-30.5zm842 .5q-29.5 30-66.5 30-38 0-67.5-30t-29.5-76q0-45 29-76t68-31q37 0 66.5 31t29.5 76q0 46-29.5 76zM1439 1955.5q-57 39.5-129 39.5-84 0-146-36t-62-72q0-9 6-17.5t17-8.5q9 0 19 5l16 10q30 17 64 27.5t69 12.5q63 0 114.5-27t63.5-27q10 0 17.5 7t7.5 18q0 29-57 68.5zm634-267.5q13 3 27 3 48 0 75-33.5t27-88.5q0-57-34.5-84.5T2084 1457q0 22 1.5 43t1.5 44q0 36-4 72t-10 72zm-1561 3q-6-37-9.5-73t-3.5-74q0-21 1-43t3-44q-54 6-80 35.5t-26 76.5q0 55 26 89t78 34q7 0 11-1zm676.5 30.5q6.5-5.5 14.5-5.5 10 0 32.5 22t56.5 22q37 0 58.5-22t31.5-22q8 0 14.5 5.5t6.5 13.5q0 23-33.5 46.5T1292 1805t-77-24-33-46q0-8 6.5-13.5zm417.5 238q-7 17.5-21 17.5-7 0-12.5-4t-6.5-12l-15-64q-9-38-33.5-60t-24.5-34q0-17 20-17 29 0 64.5 38.5t35.5 95.5q0 22-7 39.5zm-518.5-169q5.5 4.5 5.5 12.5 0 11-9 20l-17 17q-33 37-39 87t-28 50q-12 0-19-15t-7-42q0-44 31-89t71-45q6 0 11.5 4.5z"},"children":[]}]};exports.u1F474=u1F474;var u1F475={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2328.5 1742.5Q2306 1800 2262 1844t-76 54.5-71.5 23.5-64.5 13q-11 0-23-1t-23-4q-66 133-175 226.5t-253.5 137T1291 2337q-110 0-242-34t-248.5-118T606 1960q-18 11-47.5 15.5T504 1980q-72 0-131.5-43.5t-92-112T248 1624t69-243 66.5-202 48.5-172.5 100.5-110 64.5-100 116.5-158 242-115T1206 495q38 0 63 5.5t48.5 0 64.5-5.5q14 0 26.5 1.5t25.5 1.5q196 15 309 63t176 120.5 76 130.5 65 90l24 15q44 27 83 96t39 174v41q0 35 9 58.5t28 50.5l2 5 41 63q30 44 47.5 104.5T2351 1632q0 53-22.5 110.5zM1914 1896q-44-26-68.5-97t-24.5-108q0-43 13-111.5t13-114.5q0-83-23.5-131.5T1754 1245l-77-65q-18-15-59-59.5t-47.5-94.5-15.5-76q-22 24-30 44.5t-72 43-102 22.5q-21 0-41.5-3.5t-40.5-7.5l-39-8q-19-3-37-3-49 0-82 30t-72.5 121-141 133.5T763 1426t-37 163l-4 104q-3 52-12 102.5t-35 93.5q61 119 155.5 199.5t224 116.5 236.5 36q198 0 365-83.5t258-261.5zm321.5-369q-16.5-48-41-80.5T2139 1358t-31-84q0-23-1-39t-1-33l1-20q0-77-28.5-125.5t-86.5-81-87-122.5l-9-29q-17-55-90-115t-182.5-85-160.5-25l-10 1q-12 0-24-3h-14q-9-2-17-2h-16q-20 0-41.5 3.5T1293 602t-47.5-3.5-39.5-3.5h-16q-8 0-17 2h-14q-14 2-28 2-53 0-149.5 22.5t-147 52.5-90.5 70-52.5 81-29.5 77-52.5 60.5T569 993l-30 38q-57 71-58 139.5t-15 129-66.5 137T347 1624q0 163 57 210.5t100 47.5q17 0 32.5-5t26.5-5q20-8 40-66.5t20-131.5q0-172 31-249t86.5-123.5T863 1229t96-104.5 88-132.5 146-54q36 0 86.5 11.5T1351 961q17 0 44-9t53-17l3-5q28-48 53-64t51-16q30 0 51 12.5t35.5 38 22 72.5 10.5 57 44 52 95.5 87 87.5 99.5 42 139.5l3 36q0 11 1 21 0 45-7.5 81t-11.5 71l-2 7q-3 19-5 35.5t-2 31.5q0 14 12 54t20 51 35.5 26 63.5 15q14 0 73.5-21t94-74 34.5-110-16.5-105zm-519 116.5Q1688 1675 1648 1675q-39 0-68-31t-29-76q0-44 28.5-74.5t68.5-30.5q41 0 69 30t28 75q0 44-28.5 75.5zm-843.5.5q-29-31-29-76 0-44 28.5-74.5T941 1463q41 0 69.5 30t28.5 75-29.5 76-68.5 31-68-31zm586 260q0 47-44 77.5t-105 33.5h-15q-35 0-94.5-29.5T1141 1922q0-13 8.5-19t19.5-6q8 0 12 1l60 20q28 10 61 10 38 0 70-9.5t46-21 27-11.5q14 0 14 18zm-269-163q6-6 16-6t31.5 22 57.5 22q34 0 56.5-22t33.5-22q8 0 14.5 5.5t6.5 13.5q0 23-33.5 46.5T1295 1824t-77.5-23.5-33.5-46.5q0-7 6-13zm-88 125.5q-26 23.5-36.5 75.5t-17.5 57-14 5q-14 0-20.5-19t-6.5-39q0-46 32.5-89.5t68.5-43.5q7 0 13.5 4.5t6.5 12.5q0 13-26 36.5zm494 119.5q-7 18-20 18-19 0-22-24t-15-62.5-33.5-56.5-21.5-33q0-5 5.5-10t13.5-5q31 0 65.5 38.5t34.5 94.5q0 22-7 40z"},"children":[]}]};exports.u1F475=u1F475;var u1F476={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2224.5 1772q-68.5 53-142.5 53-7 0-14-1l-12-2q-60 220-273.5 347.5T1292 2297q-266 0-486-125t-280-347q-86 0-153-53.5T306 1617q0-92 56.5-150.5T514 1408q13-105 42.5-184.5t49-127.5 63-121 119-136.5T956 734t185-61.5 165-28 113-24.5q29-12 49.5-33t20.5-55q0-21 6-29t18-8q31 0 86 48t58.5 114 60 92.5T1857 856t141 205.5 58 239.5q0 39 3.5 45t10.5 62q116 0 169.5 60t53.5 149q0 102-68.5 155zM1971 1395q-16-83-26.5-108.5t-59.5-87-112-101.5-132-40q-68 0-160 67.5t-173 67.5q-25 0-48.5-10t-23.5-23q0-8 9-16l19-18q10-10 18.5-21.5t8.5-27.5q0-11-8-20.5t-27-9.5q-43 0-106.5 54t-113.5 54q-26 0-42-7t-16-18q0-12 18-28.5t18-27.5q0-12-16.5-21.5T959 1043q-108 0-204.5 99.5T651 1249q-54 153-54 348 0 231 88.5 347.5t251 187T1292 2202q203 0 369.5-77t246-200.5T1987 1597q0-119-16-202zM503.5 1738q3.5-1 6.5-1-9-66-9-140l1-47q0-23 2-46-56 6-81.5 35t-25.5 78q0 54 26 88t74 34q3 0 6.5-1zm1569.5-4q13 3 27 3 48 0 75-32.5t27-87.5-33.5-84.5-90.5-29.5q2 23 3 47t1 47q0 36-2.5 70.5t-6.5 66.5zm-865.5 134.5q5.5-6.5 13.5-6.5 9 0 16 2l14 4q9 3 19.5 4.5t25.5 1.5q28 0 48-8t32-8q5 0 10 4.5t5 10.5q0 21-31.5 38t-62.5 17q-38 0-66.5-17t-28.5-31q0-5 5.5-11.5zm215.5 187q-51 37.5-116 37.5-64 0-126-30t-62-70q0-8 6.5-17t15.5-9q8 0 55.5 25.5T1302 2018q31 0 58-9.5t55-24.5l17-9q11-6 20-6 8 0 15 7t7 16q0 26-51 63.5zM989 1822q-32 34-75 34t-75-34-32-83 31-83.5 76-34.5 76 34.5 31 83.5-32 83zm752 0q-32 34-75 34-45 0-76-34.5t-31-82.5q0-47 30-82.5t77-35.5q45 0 76 34.5t31 83.5-32 83z"},"children":[]}]};exports.u1F476=u1F476;var u1F477={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2174 1419q58 23 88.5 75t30.5 116q0 60-27 108.5t-85 74.5-97 26q-10 0-17-1l-15-2q-52 179-174.5 307.5t-279 181T1288 2357q-155 0-312-56t-274-183.5T533 1817q-4 0-8.5 1t-9.5 1q-63 0-136-50t-73-159q0-62 28.5-112t83.5-75q-60-17-83.5-38t-23.5-58q0-45 34.5-77t42-53.5 68.5-225T600.5 673 773 526t183-83q6-59 52-102t107-43h350q61 0 107 43t52 102q164 52 283 156t177.5 261 95.5 297l6 24q8 33 44.5 67t36.5 79q0 33-17 51.5t-76 40.5zM512 1731q-6-36-9.5-72.5T499 1584q0-21 1-41t3-46q-54 6-80 35t-26 78q0 54 26 88t78 34q7 0 11-1zm1476-97q-33-59-65.5-97t-55.5-58q-107 14-249.5 22t-328.5 8q-184 0-326-8t-251-22q-24 23-55 58.5t-61 87.5q13 219 136.5 381t318.5 218l39 10q43 12 95.5 19.5t102.5 7.5q156 0 316.5-62.5t266-216T1988 1634zm170-317q-4-6-29.5-29t-44.5-96-65.5-217.5-101.5-217T1788.5 634 1625 550v627q0 20-14.5 34t-34.5 14-34-14-14-34V458q0-28-19.5-45.5T1465 395h-350q-26 0-44.5 18.5T1052 458v719q0 20-14 34t-34 14-34.5-14-14.5-34V550q-92 34-166 86T660 762 558.5 977 496 1189t-42 95.5-32 32.5q89 36 313 63.5t554 27.5q334 0 562-29t307-62zm-85 411q7 2 14 2t15 1q48 0 74-33.5t26-87.5q0-52-29-81t-91-32q2 21 3.5 43.5t1.5 43.5q0 36-4 72t-10 72zm-1067-1.5q-28 30.5-69 30.5t-68.5-31-27.5-74q0-44 28.5-75.5T937 1545q40 0 68.5 31.5t28.5 75.5-28 74.5zm706.5 0Q1684 1757 1645 1757q-40 0-68.5-30.5T1548 1652q0-45 29-76t68-31q37 0 66.5 31t29.5 76q0 44-28.5 74.5zm-255 311.5q-60.5 46-146.5 46-96 0-163-40t-67-82q0-10 7-20.5t19-10.5q11 0 71 31.5t129 31.5q38 0 71-12.5t67-31.5l22-12q13-7 25-7 10 0 18 8.5t8 20.5q0 32-60.5 78zm-269-241.5q6.5-5.5 14.5-5.5 10 0 32.5 22t56.5 22q37 0 58.5-22t31.5-22q8 0 14.5 5.5t6.5 13.5q0 23-33 47.5t-78 24.5q-46 0-78-25t-32-47q0-8 6.5-13.5z"},"children":[]}]};exports.u1F477=u1F477;var u1F478={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2274.5 2001q-10.5 37-25.5 56l-15 18q-8 9-14 18.5t-7 20.5q0 19 8.5 44t8.5 53q0 100-87 167t-206 67q-99 0-173-54.5T1656 2237q-71 38-172.5 59.5T1296 2318q-83 0-178.5-20.5T943 2236q-33 98-107.5 153.5T662 2445q-117 0-206.5-67T366 2211q0-25 9.5-47t9.5-45q0-22-24-50t-35.5-70-11.5-81q0-52 15-103t41-93l16-26q7-13 12-26.5t5-26.5q0-56-10.5-110.5T382 1422q0-180 73-355t207-309q-16-27-28-58t-12-66q0-54 35.5-90.5T743 507q64 0 102.5 37t58.5 42q5-80 38.5-120.5T1030 425q39 0 67 20.5t59 51.5q11-79 46-122t98-43q65 0 99 44.5t44 123.5q31-31 60.5-44t58.5-13q54 0 86 35.5t44 92.5l19 10q33-34 66.5-54t78.5-20q48 0 84 36.5t36 89.5q0 32-10.5 62t-24.5 56q132 143 203 320.5t71 357.5q0 55-10 107.5t-10 106.5q0 28 45 101t45 175q0 45-10.5 82zm-203 309q50.5-40 50.5-108 0-31-19-62.5t-51-31.5q-26 0-36.5 8t-14.5 18l-8 18q-4 8-19 8-14 0-21.5-11t-7.5-19q0-35 40-60t81-25q32 0 66 13 11-26 34-54.5t23-82.5q0-79-44.5-154t-44.5-134q0-63 10.5-114.5t10.5-95.5q0-149-57.5-300T1893 841q-56 115-87.5 143t-66.5 28q-54 0-162.5-48.5T1303 915q-97 0-164 14.5T989 977l-15 5q-22 9-44 19.5t-56 10.5q-46 0-78-26.5T738 907l-31-60q-104 114-166.5 271.5T478 1423q0 43 10.5 97.5T499 1644q0 50-44.5 125.5T410 1918q0 61 22 84.5t35 55.5q34-13 65-13 52 0 87 31t35 54q0 8-7.5 19t-23.5 11q-11 0-16-8l-11-18q-6-10-17.5-18t-33.5-8q-29 0-49.5 29t-20.5 66q0 68 53.5 107.5T662 2350q89 0 146-64.5t57-156.5q0-62-21-123t-59-103l-24-27q-25-26-42.5-57t-17.5-59q0-35 28.5-80.5T769 1527t53-158 125-51l45 1q94 0 182-42.5t154-104.5 113-62q51 0 85.5 49t98.5 88 108.5 56.5 70 59.5 25.5 166q0 70 33.5 131t33.5 100q0 29-17 60.5t-42 57.5l-23 25q-38 42-59 104t-21 123q0 92 56.5 156t146.5 64q84 0 134.5-40zM1639 2137q0-2-1-4t-1-4q0-94 35.5-175.5t81.5-127 46-66.5q0-9-34-72.5t-34-160-11-115.5-45-30-107-57-128-119q-19 12-37 27l-37 32q-66 58-114.5 81t-116 46-144.5 23l-45-1q-38 0-54 15.5t-25 81.5l-8 54q-11 76-18 97.5t-26 57.5l-13 25q-6 11-6 15 0 10 10 24.5t33 37.5l18 19q53 61 77.5 138t24.5 157q73 44 167.5 65t168.5 21q73 0 170-20t173-65zM743 708q24 44 28 52l22 47q21 47 43 79t38 32q20 0 49-17t137-49.5 243-32.5q95 0 182 18.5t175 55.5l32 16q16 9 32 9 12 0 26-12 17-35 36-68t36-69l17-31q19-33 30-59t11-45q0-10-6.5-20.5T1856 603q-30 0-54 25.5t-62.5 46T1676 695q-32 0-51-20.5t-28-85.5l-2-10q-4-15-12.5-28t-20.5-13q-28 0-62 38.5t-82 38.5q-58 0-68-94t-50-94q-42 0-50.5 94t-68.5 94q-46 0-87.5-46.5T1030 522q-15 0-23 18.5t-8 56.5q0 44-20.5 71T925 695q-50 0-101.5-46T743 603q-11 0-17.5 10t-6.5 24q0 27 24 71zm771 1053q-29-31-29-76 0-44 28.5-74.5t68.5-30.5q26 0 47.5 13t33.5 35q9 0 27-14t24-14 9 5.5 3 9.5q0 7-14.5 26.5T1677 1669l2 8q0 4 1 8 0 45-29.5 76t-68.5 31-68-31zm-429.5-1q-27.5 32-67.5 32-39 0-67.5-31.5T921 1681q0-8 1-11-18-9-34.5-24t-16.5-31q0-4 3-9.5t10-5.5 16 7l14 12q4 3 11 6l9 4q14-23 35.5-36t47.5-13q41 0 68 31.5t27 73.5q0 43-27.5 75zm340.5 221q8 5 8 16 0 26-36.5 51.5T1299 2074t-97.5-24.5-36.5-52.5q0-11 7-16t13-5q14 0 40 10t74 10q46 0 72-10t40-10q6 0 14 5zm-210-109.5q5-4.5 13-4.5 7 0 25 16t46 16 45-16 26-16q6 0 11 4.5t5 10.5q0 16-23.5 34t-63.5 18q-41 0-65-18t-24-34q0-6 5-10.5z"},"children":[]}]};exports.u1F478=u1F478;var u1F479={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2184 2221l1 7q0 18-33.5 28t-56.5 10q-32 0-79.5-15t-78.5-15q-14 0-23.5 5t-9.5 22q0 14 7 21t7 16q0 15-44.5 23.5t-93.5 8.5q-74 0-122.5-29.5T1582 2273q-10 0-17 3.5t-7 12.5q0 16 26.5 32t26.5 30q0 15-30.5 24t-85.5 9q-24 0-45.5-7t-41.5-16l-39-18q-20-9-41-14l-59 3q-42 22-93.5 33t-99.5 11q-35 0-61.5-7.5T988 2346q0-10 3.5-22t3.5-22-6-15.5-23-5.5q-19 0-36 7l-35 14q-27 10-53 18.5t-54 8.5l-15-1q-2 0-46.5-5t-44.5-21q0-11 9.5-22.5t9.5-23.5q0-13-16-13-8 0-16 3l-14 5q-55 23-114 23-49 0-88-14t-39-42q0-7 8-7 26 0 50.5-28.5T497 2096q0-56-34-109.5T429 1880q0-22 5.5-42t11.5-40l12-39q5-19 5-40v-9q0-5-10-54t-10-91q0-76 35.5-131.5T514 1311q0-38-6.5-75t-6.5-73q0-96 35.5-178T634 833q-6-16-25.5-87T589 599q0-93 44-146t108-53q31 0 59.5 12.5T847 441l15 15q36 39 62.5 79.5T982 610q75-25 154-37.5t159-12.5q79 0 158 12.5t154 37.5q28-30 92-120t149-90q64 0 108 53t44 146q0 63-14.5 121.5T1952 840l21 29q96 143 99.5 295t43 241.5T2155 1556q0 59-20.5 104.5T2114 1730q0 33 26 80.5t26 82.5q0 44-32 110t-32 119q0 33 11 53.5t27 26.5l35 15q8 3 9 4zM783 1984q-1 20-1 40 0 89 36 132.5t123 43.5q21 0 44.5-8t54.5-8h7q40 2 77 39.5t138 37.5q65 0 133-17t101.5-38.5 79.5-21.5q20 0 40 2t38 2q46 0 90-43t48-114l3-57q5-101 37-136t35-40l3-5q37-52 55-104t18-109q0-34-10.5-83t-47.5-90l-26-27q-52-56-65-114t-37-109.5-97-70.5l-75-19q-39-10-82.5-28.5T1417 981l-9-7q-23-20-44.5-41.5T1328 889l-15 14-47.5 47.5L1160 1022q-73 33-146 33-96 0-141.5 18t-83.5 56.5-38 88.5q0 14 4 29t4 33q0 48-56 127t-56 170q0 118 68.5 207.5T784 1941q0 23-1 43zm42-380q30-34 77-34 37 0 88 43.5t134 77 171 33.5q86 0 169-33t135-77 89-44q46 0 75.5 34t29.5 78q0 46-33 119.5t-36 115.5l-4 41q-8 85-59 123t-125 38q-79 0-139.5-43t-101.5-43q-43 0-102 43t-139 43q-83 0-131.5-44t-53-122-39.5-148.5-35-122.5q0-44 30-78zm612-310q12-7 36-7 29 0 71.5-16.5t67.5-33.5l29-20q14-9 27.5-15.5t26.5-6.5q24 0 38 27t14 63q0 64-52.5 107.5T1577 1436q-78 0-115-41t-37-76q0-18 12-25zm-586.5-72.5Q864 1195 889 1195q14 0 27 7l23 13q66 45 107 58.5t67 13.5q23 0 34.5 7t11.5 25q0 42-40.5 79.5T1008 1436q-67 0-119-43t-52-108q0-37 13.5-63.5zM711 758q42-32 85-61t93-50q-7-9-60.5-80.5T741 495q-28 0-42 30t-14 82q0 38 7.5 75.5T711 758zm989-111q47 20 94.5 48.5T1877 759q8-16 17.5-70.5t9.5-81.5q0-52-14-82t-42-30q-36 0-86.5 69.5T1700 647zm-490.5 891.5q35.5 16.5 79.5 16.5 49 0 74.5-16.5t43.5-16.5q14 0 14 11 0 10-10.5 28.5T1389 1592l-9 10q-22 15-53 25t-54 10q-45 0-87-30t-42-70q0-5 1.5-10t9.5-5q19 0 54.5 16.5zM977 1722q-23 14-35.5 61.5T929 1866q0 25 5 34.5t13 9.5q11 0 68.5-47.5t57.5-73.5q0-23-30.5-45t-57.5-22h-8zm647-14q-5 0-8-1h-9q-30 0-64.5 17t-46.5 38q18 30 67 71t76 41q6 0 8.5-14.5t2.5-24.5q0-33-7-67t-19-60zm-279 416q27 5 50.5 19t23.5 34q0 6-5.5 14t-17.5 8q-5 0-9.5-1.5t-9.5-2.5l-43-4q-22-2-42-2t-32 1.5-21 3.5l-16 3q-7 2-17 2-15 0-25.5-7.5T1170 2170q0-24 34-37.5t93-13.5q13 0 25 1zm-8-170l95 24q11-17 11-54 0-34-9-58.5t-21-24.5q-21 0-47 43.5t-29 69.5zm-232 16.5q5 12.5 16 16.5l64-17q6 0 15.5-5.5t9.5-14.5q0-25-20.5-51.5T1144 1872q-26 0-35 24.5t-9 46.5q0 15 5 27.5z"},"children":[]}]};exports.u1F479=u1F479;var u1F47A={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2334 1841q-57 201-137 320.5t-235 192-365 72.5q-118 0-248-25.5t-238-89.5l-36-21q-124-77-207.5-212.5T779 1733l-68 3q-34 2-69 2-200 0-316.5-67.5T209 1479q0-93 73.5-158t172.5-65q83 0 207.5 32.5T844 1330q50-172 145.5-326T1205 750l3-264q0-16 9.5-27t23.5-16l296-80q4-2 11-2 16 0 29 10l222 178q6 5 9.5 12.5t5.5 14.5l12 77q185 67 315.5 171.5t190 264.5 59.5 350q0 201-57 402zm-390.5 44q-45.5-24-98.5-67t-166-98q-13-16-15-52t-24-74-59-38q14 20 21.5 44.5t7.5 48.5q0 37-21.5 55.5T1529 1723q-67 0-99.5-39.5T1353 1644q-31 15-83.5 23.5t-166 30.5-222.5 29q-34 26-34 63 0 33 33.5 47t33.5 23q0 6-3 15l-7 20q-4 11-7 23t-3 23q0 17 11.5 29t31.5 12q50 0 147-98t213-98q112 0 221.5 129.5T1627 2044l34 36q36 39 65.5 60t52.5 21q19 0 27-9t12.5-30 45-30 53.5-25 13-27l-1-10q0-25 30-32t30-46q0-43-45.5-67zm339-705.5q-31.5-115.5-86.5-188t-71-72.5q-6 0-8.5 4t-2.5 8q0 11 8 22t11 16l8 19q3 9 3 20 0 13-11 23t-11 23q0 18 27.5 49t27.5 53q0 14-23.5 30.5T2130 1216q0 21 25 59t25 66q0 22-18 30.5t-18 36.5q0 33 40.5 107.5T2225 1647q0 24 3.5 48t16.5 35q37-41 46.5-108t16-109.5 6.5-100.5q0-117-31.5-232.5zM1689 575l-149-121-245 66v169l-2 11 270 74q-4-10-6.5-20.5T1551 734l-2-6q-14-52-31.5-99t-17.5-65q0-5 3-9.5t11-4.5q7 0 63.5 6.5T1689 575zm-230.5 1554q-26.5-21-51.5-21h-14l-11 1q-23 0-49.5-23t-59.5-23q-19 0-30 4l-27 12q-4 2-7 2l-6 1q-13 0-26.5-7.5t-28.5-7.5q-17 0-24.5 11.5t-7.5 25.5q0 29 51 110.5t96 81.5q23 0 59.5-13.5t44.5-16.5l30-11q35-12 61.5-32t26.5-48q0-25-26.5-46zm214.5-640q58 42 123 42 50 0 95.5-28.5T1937 1394q0-35-15.5-60t-58.5-25q-22 0-63.5 7t-77.5 7q-61 0-84 18t-23 53q0 53 58 95zm300.5-432.5Q1950 1035 1918 1035q-44 0-183 55t-139 110q0 16 17 24.5t54 8.5q57 0 111-11t136.5-27.5 82.5-83.5q0-33-23.5-54.5zm-955 256.5q24.5 30 62.5 48l68 6q34 3 69 3 33-11 55.5-31t22.5-54q0-30-49-56.5t-96.5-60-75.5-33.5q-35 0-58 45t-23 72q0 31 24.5 61zm131.5-271q29 24 65 52.5t73.5 52 63.5 23.5q23 0 29.5-13t6.5-30q-3-25-16-51l-25-48q-39-65-70-95.5t-56-30.5q-39 0-69.5 28.5T1121 996q0 22 29 46zm161-270l34 63 265 82 142-154-12-91-137 162q-9 11-25 11l-9-2z"},"children":[]}]};exports.u1F47A=u1F47A;var u1F47B={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2237 1252q-12 118-59.5 254.5t-120 281T1985 2008q0 59 29.5 85.5t95.5 32.5h23q42 0 67.5 18.5t25.5 56.5q0 84-214.5 134.5T1602 2386q-213 0-398.5-74t-319-201-204-285.5T606 1547v-13q0-6 1-12-17 5-28.5 14.5T555 1560l-22 23q-20 22-47 36t-58 14q-59 0-95-50t-36-125q0-136 99.5-237.5T619 1119h16q86-322 338-495t533-173q201 0 371 96t267.5 262.5T2242 1164q0 23-1 44zm-272.5 508.5Q2040 1612 2093 1459t53-292q0-251-186.5-436T1507 546q-256 0-484.5 160.5T721 1171l9 13 11 19q6 11 10 22t4 20q0 17-19 17-8 0-35.5-23.5T615 1215q-93 0-158 81t-65 160q0 33 9.5 57t24.5 24q23 0 74.5-56t113.5-56q43 0 66 25t23 62v17l-1 15q4 100 66 241t183 256.5 288.5 182.5 360.5 67q99 0 242.5-20.5T2077 2218q-89-11-138.5-67t-49.5-141q0-101 75.5-249.5zm-556-294.5q-97.5 52-205.5 52-114 0-194-84t-80-200q0-63 25.5-99t67.5-36q47 0 79 53t71.5 75 92.5 22q26 0 53.5-4t54.5-4q57 0 95 27t38 72q0 74-97.5 126zm413 330q-4.5 7-15.5 7-14 0-29-9.5t-29-9.5q-33 0-61 21.5t-52 49.5l-24 24q-22 22-51.5 37.5T1500 1932q-59 0-93-50.5t-34-122.5q0-132 93.5-233t210.5-101q52 0 98 26t46 67q0 8-5.5 14t-13.5 6q-11 0-19-5l-19-9q-12-5-27-9.5t-37-4.5q-93 0-165.5 76t-72.5 174q0 32 10.5 57.5t25.5 25.5q31-3 69.5-46.5t83-70.5 84.5-27q33 0 62 24.5t29 55.5q0 10-4.5 17zM1428 1134q-26-4-40.5-12t-14.5-21q0-60 72.5-111.5T1589 938q70 0 115.5 42t45.5 109q0 48-32.5 88.5T1640 1218q-34 0-76-34t-117-47zm-408.5-351.5Q1065 731 1121 731q49 0 80.5 43t31.5 100q0 67-25.5 117.5T1159 1042q-10 0-17-7l-16-15q-35-35-93.5-49T974 892q0-58 45.5-109.5z"},"children":[]}]};exports.u1F47B=u1F47B;var u1F47C={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2292.5 2129.5Q2272 2161 2240 2175q-4 40-33 70.5t-77 43.5q-24 36-65.5 53.5T1965 2360q-29 19-60.5 31.5T1829 2404q-39 0-85-11-17 0-45 8t-63 8q-72 0-119.5-44.5T1469 2249q0-8 1-14l1-14q-43 10-86 14t-85 4-85.5-5-86.5-13q0 8 1 21 0 77-46.5 122T963 2409q-35 0-63-8t-45-8q-46 11-85 11-45 0-77-13t-59-31q-56 0-98-17.5t-67-53.5q-47-12-74.5-41.5T359 2175q-33-14-53-46t-20-67q0-82 90-133t219-51q42 0 86 6-5-13-9-27.5t-7-28.5h-11q-57 0-115.5-43.5T480 1649q0-30 7.5-59t24.5-54q-75-75-75-191 0-67 23-141.5t80.5-133.5T612 952t45.5-110 89.5-85q-19-34-19-75 0-125 164.5-199t407.5-74q241 0 406 74t165 199q0 24-6.5 45.5T1847 769q42 54 64 109.5t85 88.5 98.5 110 35.5 172q0 27-5 51t-11 44l-11 37q-5 17-5 28 0 27 6.5 54t6.5 62v13q0 6-1 12 11 22 17 47.5t6 51.5q0 88-57 133.5t-126 45.5q-10 0-14-1-5 15-9 29.5t-9 27.5q43-6 86-6 136 0 222.5 53.5T2313 2062q0 36-20.5 67.5zM541.5 1406q8.5 29 29.5 52l42 46q14 16 33.5 67.5T710 1623q8 0 8-19 0-30-3.5-41.5T711 1543q0-29 42-49.5t58.5-33.5 36.5-52l14-28q7-14 16-26-19-19-19-44 0-10 5.5-22t16.5-12q9 0 19 6l18 11q26 20 60 25.5t63 5.5h15q6 0 14-1h9q4 0 9 1l6-2q3 0 5-1 2-23 17.5-44t38.5-21q10 0 19 3l36 14q9 4 18 4 12 0 28.5-10.5t36.5-10.5q14 0 14 20 0 23-16.5 35.5T1249 1324q-15 0-31-4t-33-4q-14 0-14 11 0 22 38 59t104 37q68 0 126.5-40.5t97.5-40.5q37 0 66.5 35.5t96.5 35.5q73 0 95.5-21.5t34.5-27.5q13 0 17.5 4.5t4.5 17.5q0 26-13.5 43t-36.5 29q4 35 35 43.5t61 20.5 30 39q0 17-8.5 29t-8.5 26q0 7 8 13t17 6q27 0 52.5-40t25.5-74q0-23-6-52t-6-56q0-29 17-80.5t17-81.5q0-58-21.5-116t-53.5-78.5-66.5-42T1829 927l-22-45q-11-22-29-43-80 56-208 85.5T1300 954q-148 0-281.5-31T810 831q-47 25-69.5 58.5T708 963l-9 35q-21 77-73.5 123.5T553 1229t-20 116q0 32 8.5 61zM1548 2103.5q113-41.5 179-108t96.5-131T1861 1705q-15-7-30.5-31.5T1815 1620q0-6 1-12l2-11q-34-11-62-33.5t-39-54.5q-81 0-111-14t-74-56q-18 7-44.5 26.5T1413 1502t-102 17q-76 0-131.5-25.5T1093 1423l-1-2q-23 5-36.5 6t-26.5 1q-36 0-69-14l-8 2q-7 7-14 20l-15 30q-30 56-54.5 71.5T812 1571q2 7 2 15v16q0 37-17.5 68.5T741 1715q17 216 184 323t375 107q135 0 248-41.5zm90-1298Q1776 753 1776 682q0-72-139.5-124.5T1300 505q-196 0-336.5 52.5T823 682q0 71 138 123.5t339 52.5q200 0 338-52.5zM1015 2187q-79-29-149.5-78T744 1997q-37-11-74.5-17.5T595 1973q-77 0-144 24t-67 64q0 20 18 28.5t52 8.5q9 0 18-1h13q-14 10-23.5 23t-9.5 30q0 26 17.5 37t45.5 13l26 2q2 11 2 20 0 12 20.5 27t66.5 15q10 0 21-3l7-1q3 0 36.5 24t75.5 24q23 0 43-5.5t43-5.5q27 0 54 8t53 8q38 0 54.5-19t16.5-47q0-22-7-38.5t-12-21.5zm1122.5-67q-9.5-13-23.5-23h14q8 0 17 1 34 0 53-9t19-28q0-39-67.5-63.5T2004 1973q-38 0-75.5 6.5T1855 1997q-55 67-122.5 115.5T1581 2190q0 4-3 5-13 23-13 51t16.5 47.5 54.5 19.5q26 0 53-8t55-8q20 0 41 5.5t44 5.5q47 0 76-24t38-24l5 1q10 3 21 3 50 0 68.5-15.5t18.5-26.5q0-9 2-20l23-2q40-3 53-18.5t13-31.5q0-17-9.5-30zm-1029-1505q82.5-21 191.5-21 108 0 190.5 21t82.5 51q0 31-81 52t-192 21q-117 0-195.5-21.5T1026 666t82.5-51zM1038 1795.5q-28 29.5-65 29.5-38 0-65.5-30t-27.5-71 27-72 66-31q37 0 65 30.5t28 72.5-28 71.5zm521.5-144.5q27.5-30 65.5-30t65 30 27 73-27.5 72-64.5 29-65-28.5-28-72.5q0-43 27.5-73zM1205 2004q-54-27-54-59 0-8 5-15t13-7q7 0 15 4l12 7q24 12 51 22.5t53 10.5q49 0 89-22t51-22q9 0 14 7.5t5 12.5q0 24-44 56t-102 32q-54 0-108-27zm859 94.5q-13 16.5-27 24.5l-18 11q-20 11-22 32t-24.5 34.5-51.5 15.5q-40 0-50 20t-56 20h-12q-3 0-9-2l-13-3q-7 0-12.5-3.5t-6.5-8.5q0-8 14-10l30-3q16 0 30-6t14-23q0-2-1-5t-1-6q0-11 10-11 5 0 12.5 1.5t10.5 1.5q29 0 50-12.5t21-33.5q0-5-2.5-10t-2.5-10q0-6 33-16t33-35q0-11-6.5-16t-6.5-11q0-8 8-9l14-2q16 0 35.5 13t19.5 31q0 15-13 31.5zM800 2228l26 2q11 0 11 8t-12.5 12.5-27.5 4.5l-13 1q-44 0-55.5-20t-32-20-56.5-10.5-39-40.5q0-22-17.5-30.5t-39-27T523 2065q0-14 17.5-28t37.5-14l13 2q8 0 8 9 0 7-6.5 11.5T586 2058q0 30 33 39t33 15q0 5-3.5 10t-3.5 10q0 20 22 33t51 13q4 0 11-1.5t14-1.5q8 0 8 11 0 3-1 6t-1 5q0 8 10 18.5t41 12.5zm426.5-392.5q4.5-4.5 9.5-4.5 17 0 33 5.5t33 5.5q12 0 22-2t20-6l14-5q7-2 15-2 12 0 12 12 0 21-28 34.5t-54 13.5q-31 0-56-14.5t-25-27.5q0-5 4.5-9.5zM556 1649q2 46 22.5 75t62.5 29h10q-2-11-3-23.5t-3-24.5q-25-13-44.5-31t-29.5-38l-11-20q-2 7-3 15t-1 18zm1395 101q12 3 23 3 36 0 56.5-24.5t24.5-64.5l-14 17q-14 16-37 30.5t-49 18.5q-3 2-3 8z"},"children":[]}]};exports.u1F47C=u1F47C;var u1F47D={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2115.5 1816q-135.5 235-370 380T1300 2341q-205 0-438.5-147.5t-373-383T349 1310q0-223 118.5-411t337-295.5T1300 496q272 0 489 104t339.5 292.5T2251 1310q0 271-135.5 506zm-1010-56q39.5-32 39.5-113 0-99-52.5-195T954 1308t-175-48q-87 0-140.5 48.5T585 1451q0 89 48.5 172.5t140 126T967 1792q99 0 138.5-32zm386.5 238.5q-70-17.5-192-17.5t-191 17.5-69 41.5q0 30 87 52t173 22q95 0 178.5-22.5t83.5-51.5q0-24-70-41.5zm465.5-691Q1904 1260 1816 1260q-90 0-176 49t-137.5 144-51.5 192q0 84 40.5 115.5T1630 1792q102 0 193.5-43t139.5-126.5 48-173.5q0-94-53.5-141.5z"},"children":[]}]};exports.u1F47D=u1F47D;var u1F47E={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1581 2179l-9 31q-9 35-27.5 56t-61.5 48l-31 18q-33 19-74 24.5t-78 5.5q-116 0-186.5-49.5t-79-86-22.5-75-75-57T814.5 1994 696 1899t-133.5-68T421 1683t-91-196.5-26-264.5q0-171 110-330t290-256 366-97q78 0 134.5 26t95.5 61q48-43 106.5-65t125.5-22q193 0 372 97.5T2189.5 893t106.5 334q0 231-61.5 363T2080 1800t-164 95-128 96.5-111 97.5-69.5 33.5-26.5 56.5zm382-1391q-73-57-157.5-94T1633 643q19 30 30 58.5t11 66.5q0 16-6.5 25t-16.5 9q-25 0-30.5-37t-29.5-76-64-46l-37-7q-41 3-78 25.5t-63 51.5v83q17-15 43.5-26t60.5-11q15 0 27.5 7t12.5 18q0 8-14 9l-24 3q-51 11-76 47.5t-30 88.5v114q27-25 71.5-38.5T1510 994q36 0 88 21.5t86 21.5q31 0 73-27t84-27q37 0 57.5 13t20.5 36-23 23q-14 0-28-5.5t-28-5.5q-27 0-57 36.5t-90 36.5q-42 0-90.5-28t-84.5-28q-52 0-93.5 22.5t-50 41-25.5 43.5v74q3 9 3 21l7-6q9-7 23-14.5t28-7.5q8 0 12 5t4 10q0 8-7 14l-12 12q-20 12-31.5 33.5T1353 1354q12 52 43.5 82t95.5 43q11-5 37.5-6t51.5-33.5 25-88.5v-22q0-15 6.5-25t25.5-10q21 0 33.5 19.5t12.5 55.5q0 40-15 67t-44 56q55 0 122.5 28t110.5 85l16 23q94-20 132.5-51t38.5-70q0-41-36.5-88.5t-79.5-81-43-83.5q0-24 10.5-45.5t30.5-21.5q8 0 14.5 6t6.5 18q0 14-4 22.5t-4 17.5q0 5 2 9l5 10q22 38 95 96.5t73 136.5v13l18-21q24-29 40.5-82.5T2197 1294q0-72-69-115.5t-69-64.5q0-8 9.5-15.5t26.5-7.5q20 0 52.5 14.5t38.5 22.5q-8-38-22-73t-31-68q-8-6-16-17t-15-22l-13-21q-23-32-75.5-57.5T1912 844q-29 0-53 12.5t-33 12.5q-8 0-13-5t-5-12q0-11 26-31.5t48-26.5 81-6zM512 927l-13 21q-7 11-15 22t-16 17q-17 33-31 68t-23 73q71-37 93-37 17 0 26 7.5t9 15.5q0 9-10 19.5t-20 17.5l-49 34q-79 57-51.5 170.5T486 1516v-7l-1-6q0-80 87.5-148t87.5-104q0-8-4-17t-4-23q0-12 7-18t15-6q18 0 29.5 21.5T715 1254q0 51-45.5 86.5T590 1422t-34 85q0 43 43 73.5t128 47.5l17-23h-1q44-59 112-86t122-27q-30-20-44.5-53.5T918 1370t11.5-55.5T962 1294q19 0 26.5 10.5t7.5 24.5q0 6-1 13.5t-1 14.5q0 53 26.5 84.5t51.5 31.5 38 6q63-13 95-43.5t42-82.5q-8-19-21-39.5t-31-37.5l-13-13q-8-7-8-13 0-5 5-10t13-5q17 0 32.5 10.5t24.5 17.5q0-6 1-11l2-10v-74l-20-36q-7-15-30-33t-55-28-65-10q-35 0-82.5 28t-92.5 28q-59 0-88.5-36.5T762 1044q-14 0-28.5 5.5T705 1055q-10 0-16.5-5.5T682 1032q0-22 20.5-35.5T759 983q44 0 85 27t74 27q34 0 84-21.5t88-21.5q44 0 89 13t73 39V932q-5-71-44-104t-70-33-31-11 13.5-18 27.5-7q34 0 60.5 11.5T1252 796v-83q-25-28-62-51t-79-26l-37 7q-39 7-62 45t-31 76-32 38q-9 0-16-9.5t-7-24.5q0-36 12-66t30-59q-88 14-172 51t-158 94q35 0 67.5 4t60.5 28l17 14q10 9 10 18 0 7-5.5 12t-13.5 5-14-4l-12-6q-17-8-31.5-11.5T688 844q-51 0-104 27t-72 56zm676.5 974q42.5-42 42.5-103l-254-134q-49 30-67 61t-18 67q0 65 52.5 108t129.5 43q72 0 114.5-42zm181.5-103q0 63 44.5 104t111.5 41q71 0 127.5-40.5T1710 1795q0-37-20-69t-65-62zm13 281.5q-43-25.5-75-25.5-37 0-78.5 29t-41.5 66q0 13 11 19.5t22 6.5q21 0 41.5-21t41.5-21q16 0 42.5 19.5t46.5 19.5q11 0 22-7.5t11-26.5q0-33-43-58.5z"},"children":[]}]};exports.u1F47E=u1F47E;var u1F47F={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M884.5 2118Q705 2003 657 1822h-8q-47 0-111-42.5T474 1641q0-30 8-58.5t25-52.5q-77-74-77-190 0-66 25-144.5t80.5-133T604 953q-37-90-37-189 0-135 60.5-251T762 397q11 0 21 7t10 23q0 14-8 42t-8 65q0 45 12.5 91.5T825 713q48-16 86-14t77.5-39 103-65 133.5-24q43 0 77 9t61 21l52 22q24 11 49 14 20 0 44.5-2t54.5-2q53 0 107.5 17t99.5 48q20-38 30-80.5t10-86.5q0-45-9-66t-9-38 11-23.5 22-6.5q67 0 130.5 112.5T2019 764q0 47-7.5 97t-27.5 92q86 56 113.5 138t27.5 151q0 26-5 50t-11 44l-12 37q-5 17-5 28 0 22 6 49t6 62v15q0 8-1 15 12 23 18 48t6 51q0 96-63.5 139t-114.5 43q-9 0-19-3-45 187-224.5 300T1295 2233t-410.5-115zm-338-692q20.5 32 47 60t47.5 79 63 51q6 0 7-5.5t1-13.5q0-29-4-40.5t-4-21.5q0-26 39-46t57-31.5 42-55.5l14-28q7-14 17-26-20-20-20-44 0-11 5.5-22.5T877 1270q16 0 48 24t120 24q10 0 23.5-1t24.5-3q3-22 16.5-43.5t39.5-21.5q15 0 37.5 11t35.5 11q12 0 29-11t35-11q15 0 15 21t-15.5 34.5-41.5 13.5q-16 0-32-5t-33-5q-7 0-10 3.5t-3 8.5q0 23 37 59.5t104 36.5q66 0 125-40.5t100-40.5q34 0 65 35t71 35h25q76 0 100.5-24t36.5-24q10 0 13.5 6.5t3.5 17.5q0 28-15.5 44t-35.5 26q4 40 65 53t61 51q0 17-8 28.5t-8 25.5q0 8 6.5 13t16.5 5h7q14-3 22.5-12.5t16.5-20.5l16-21q9-12 13-26.5t4-31.5q0-28-6-55t-6-53q0-36 16.5-85.5t16.5-81.5q0-46-14-92t-29.5-68.5-52.5-44.5q-32 32-66 53t-79 21q-69 0-129-57t-60-117 53.5-106.5T1714 775q-31-20-74.5-33t-76.5-13q-20 0-41.5 2t-42.5 2q-50 0-125-33t-129-33q-36 0-82.5 11t-92 54-70 51-83.5 13l38 33q23 20 38 42t15 55q0 64-59 123.5T797 1109q-37 0-69-16t-58-42q-17 34-61.5 75.5T545 1229t-19 111q0 54 20.5 86zM2161 2176q5 16 5 23 0 21-61 34t-112 37.5-73 77-64 52.5q-23 0-55-13t-85-13q-24 0-50.5 5.5T1624 2394l-23 14q-12 7-24 12.5t-24 5.5q-24 0-29.5-9t-5.5-39q0-23 3-48.5t8-48.5q161-45 276.5-136.5T1974 1931l97-13q38-5 98.5-12t88.5-7q35 0 53 8.5t18 26.5q0 20-26.5 30t-66 34-60 55-20.5 76q0 31 5 47zm-1088 108q3 21 7 44t4 46q0 32-6 42t-30 10q-12 0-24-5t-24-12l-23-14q-19-11-43-16t-49-5q-53 0-85.5 13t-55.5 13q-41 0-62.5-52.5t-74.5-77-113-37.5-60-34q0-3 2-7l4-12q2-7 3.5-19t1.5-31q0-45-19.5-75.5T366 1999t-67.5-35-27.5-31 21.5-27.5 49.5-6.5q31 0 134.5 12.5T611 1929q53 125 175.5 219t286.5 136zm603-653l-2-11-289 88q7 35 49.5 65t91.5 30q61 0 106-46.5t45-114.5q0-5-1-11zm-728 125.5q44 46.5 107 46.5 49 0 91-30t49-65l-290-88q0 5-1 16 0 74 44 120.5zm519.5 161.5q-5.5-9-16.5-9t-56.5 25-95.5 25q-54 0-99-25t-53-25q-10 0-15.5 8t-5.5 16q0 41 61 69.5t121 28.5q67 0 116-37.5t49-60.5q0-6-5.5-15z"},"children":[]}]};exports.u1F47F=u1F47F;var u1F480={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1998 1384q-13 98-33 142.5t-62.5 123.5-125.5 93l-29 6q-40 8-56.5 21t-31.5 41l-14 24q-30 52-112.5 91t-274.5 39q-113 0-173-14.5t-94-73.5l-23-39h-1q-40-69-131.5-77T697 1688t-73-161-25-149q0-63 46-123.5t74.5-111T748 1028q0-11-3-20t-12-9-32.5 70-55.5 102.5-54 61.5q0-366 178.5-564T1299 471q354 0 531.5 198.5T2008 1239q-27-39-55.5-62.5T1891 1061l-16-44q-7-18-13-18-8 0-11.5 9t-3.5 20q0 68 29.5 118t75.5 113 46 125zm-875-156.5q-42-35.5-127-35.5-101 0-163.5 57T770 1388q0 67 43 113.5t119 46.5q106 0 169.5-71.5T1165 1325q0-62-42-97.5zm264.5 345.5q-15.5-43-21-62.5t-30-35.5-41.5-16q-50 0-88 75t-38 147q0 45 57.5 50t67.5 5l13 1q51 0 73.5-14.5t22.5-48.5q0-58-15.5-101zm393.5-71.5q44-46.5 44-113.5 0-82-62.5-139t-163.5-57q-85 0-127 35.5t-42 97.5q0 80 63.5 151.5T1663 1548q74 0 118-46.5zm29 566q-20 77.5-61.5 133t-92 77T1517 2339t-150 40q-29 0-59-5l-57-9-122-16q-101-12-179.5-67.5t-107-111-50-166.5-21.5-157q0-23 9-33.5t23-10.5q26 2 48.5 26.5t26.5 81 60 100 209 43.5l85-2q93-2 155-8.5t135-11 112.5-29.5 47.5-72 23.5-89 49.5-42q39 0 57 30t18 70q0 90-20 167.5z"},"children":[]}]};exports.u1F480=u1F480;var u1F481={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2187 1481q96 6 150 41t54 88q0 88-134.5 138.5T2057 1852l2 11q0 6 1 12-5 45-27.5 71.5t-53 60-65.5 66.5l-124 122q-68 68-130 98t-126 30q-24 0-43-1l-23-1q0 25-30 73t-88 79l-43 22q-46 24-124.5 40.5T1001 2552q-144 0-254-28t-166.5-70.5T461 2400t-107.5-40.5T309 2285q0-12 4.5-28t43.5-101l41-90q106-232 120-312.5t38.5-147.5 44.5-87q-63-48-108-112t-65-139q-22-28-37.5-71.5T375 1108q0-64 14-117.5T442 859v-47q0-240 148.5-387T992 278q162 0 278.5 74.5T1441 548t54 242q0 38-7.5 66t-18.5 48q27 55 41.5 114.5T1525 1141q0 119-52 217t-144 165q46 56 96 140.5t66 106.5l20 27q19 29 37.5 49t28.5 20q19 0 68.5-46.5t92-112 85-68.5 50.5-59 53-125 90-69q43 0 84 46t54 47zm-882.5 805q-29.5-35-33-67.5t-3.5-62.5q0-58 28.5-152.5T1325 1859q0-56-15-83.5t-18-33.5q-28 75-76 105.5t-85 30.5q-40 0-94-30t-68-30q-11 0-25 9l-33 20q-18 12-39.5 21.5T825 1878q-55 0-109.5-44T639 1731q-8 21-16.5 60t-8.5 72q0 56 40.5 147t40.5 174q0 38-14 79.5t-26 59.5l-6 11q-3 6-3 13 0 9 7 13l13 10q41 33 124 50t187 17q179 0 268-40.5t89-66.5q0-9-29.5-44zM550 1220q29 127 146 205.5t272 78.5q180 0 303.5-102.5T1395 1141q0-70-25.5-135T1301 883l-503 216q35 4 52.5 24.5T868 1174q0 37-26 59t-58 22q-35 0-57-23t-22-57q0-20 11-39zm23-512q72-57 183-88.5T977 588q143 0 246.5 49T1373 764q-23-175-117.5-269.5T992 400t-281.5 82T573 708zm1295 1256q5-5 38.5-36t33.5-54q0-16-15.5-30.5t-45-39.5-50.5-25q-12 0-35 31.5t-97 105.5-118 74q-18 0-36.5-12.5T1509 1949l-22-22q-9-8-34.5-36.5T1416 1860q-5 20-14.5 85t-8.5 62l-1 18q0 68 49 126.5t113 58.5q43 0 103.5-44.5T1796 2039zM695 1577q0 5-1 16 0 69 42 127.5t91 58.5q28 0 75-41t67-41q12 0 29 12l36 28q19 15 40.5 27.5t45.5 12.5q44 0 81.5-52.5T1239 1615v-19q0-9-5-17-60 27-126.5 42T968 1636q-75 0-143.5-15.5T695 1577zm1592 49q-11-47-62-47-12 0-27.5 1t-32.5 1q-93 0-104.5-44t-35.5-44q-29 0-53.5 90t-35.5 110v10q18 11 34.5 23.5t31.5 28.5q48-33 120.5-56.5T2232 1662t55-36zM567.5 2025q-15.5-49-27.5-57-3 19-52 137.5T416 2260q18 13 48.5 28.5T513 2304t44-50 26-121q0-59-15.5-108zm526-793q-25.5-23-25.5-59 0-32 21.5-54t60.5-22q38 0 59.5 23t21.5 55q0 35-22.5 57.5T1151 1255q-32 0-57.5-23z"},"children":[]}]};exports.u1F481=u1F481;var u1F482={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2028.5 2444.5Q2006 2486 1910 2506t-171 27l-136 13q-54 5-106 7t-105 2q-103 0-250.5-12.5T911 2513l-31-7q-27-5-54-14t-44-22q-17 5-32 7t-32 2q-166 0-168-53t-2-130q0-156 5-259.5t8-128 15-54.5l27-69q10-28 12-108t2-114q0-40 1-77v-106q0-35 11.5-47t33.5-12q30 0 43 12t13 40q0 14-2 29.5t-2 26.5l3 170q0 97 5 153.5t27 98.5l30 59q13 29 18.5 74.5T804 2095l22-38q11-19 25-37-4-9-4-22 0-52 49.5-86.5T1012 1877q14 0 28.5 1t28.5 6q0-12 2-25.5t9-23.5q-59-54-92-125.5T955 1553q0-16 3-33-43-24-61-46t-35-73.5-40-263T799 706q0-208 69.5-307t193-150 326.5-51 328.5 53T1908 402t66 304q0 145-9 279.5t-32 316.5-107 211q3 21 3 40 0 85-33 156.5t-92 125.5q7 10 9 23.5t2 25.5q14-5 29-6t27-1q56 0 111 34.5t55 87.5v10q0 6-3 11 45 61 81 148t36 174q0 61-22.5 102.5zm-93.5-197q-12-45.5-24-68.5l-27-59q-14-28-33-54-8 0-17-3l-17-4-60-13q-42-9-68.5-30.5T1662 1951q-57 25-117.5 40.5T1466 2007q-24 0-31-13.5t-7-35.5v-11q-10 0-18 1h-35q-9 0-19-1v11q0 20-7 34.5t-31 14.5q-19 0-87.5-18t-107.5-38q0 42-27 64.5t-68 30.5l-59 13-17 4q-10 2-19 3-35 54-65.5 127.5T837 2327q0 40 26.5 61.5T930 2410q35 0 40-19t20-97 35.5-103.5 45.5-25.5q11 0 14 5.5t3 14.5q0 13-3 31l-8 41q-5 23-8.5 48t-3.5 50q0 51 30 75.5t116 24.5q40 0 80 1t83 1h82q39 0 81-2 11 0 23.5 1t26.5 1q74 0 103-25.5t29-77.5q0-25-3.5-49.5t-7.5-46.5l-8-41q-4-18-4-32 0-9 3.5-14.5t14.5-5.5q32 0 52.5 42t32.5 106l11 62q4 23 13 29t32 6q38 0 65-20t27-62q0-35-12-80.5zM1624 1757q94-81 94-204v-19l-3-18q-67-55-140.5-68t-227.5-13q-91 0-162.5 17t-114.5 53q-2 11-3 21.5t-1 26.5q0 121 94.5 203t231.5 82q138 0 232-81zm-133-147q-21-15-21-45 0-26 17-44t50-18q31 0 49 18.5t18 43.5q0 23-18 41.5t-50 18.5q-24 0-45-15zm-197.5-1q-20.5 16-45.5 16-28 0-47.5-17t-19.5-43q0-24 17-43t50-19q32 0 49 17t17 44q0 29-20.5 45zm95.5 722h10q20 0 38 11.5t18 33.5q0 15-14.5 27.5T1407 2416q-27 0-45-11t-18-30q0-17 13-29.5t32-14.5zm0-289h10q20 0 38 11t18 32q0 19-18 30.5t-38 11.5q-19 0-37-11.5t-18-31.5q0-16 13.5-28t31.5-14zm-1 145h9q20 0 39 10.5t19 33.5q0 15-14.5 27t-33.5 12q-27 0-45-11t-18-30q0-15 14-28.5t30-13.5z"},"children":[]}]};exports.u1F482=u1F482;var u1F483={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2020 1843q-46 48-98 48l-25-2q-23-5-46-5-44 0-69.5-20.5t-62.5-42-37-72.5q0-14 5-32t12-29l20-29q4-6 4-12 0-13-13-22t-13-23q0-20 1-39.5t1-39.5q0-105-25.5-134t-48.5-29q-18 0-25 26t-7 64q0 41 10 123.5t34.5 132 24.5 76.5q0 11-8 18l-19 15q-9 7-18 19t-9 31q0 70 51 105.5t118 48 109.5 32.5 57.5 98q0 13 8.5 14.5t32 24.5 23.5 53q0 14-4 25t-9 20l-10 18q-5 8-5 15-9 92-33.5 126.5t-62 54.5-135.5 20q-14 0-31.5 3t-36.5 3q-30 0-51.5-12t-21.5-32q0-16 12-34.5t23-21.5l13-3q6-2 11-4.5t6-7.5q0-6-9-14.5t-21-16.5l-40-26-58-31q-20-10-88-59.5t-102.5-84-55-63-35.5-58-27-61.5l-4-19q-12-45-23-70.5t-20-25.5q-14 0-70 60t-56 125q0 32 11 59l21 57q11 34 18.5 70t19.5 70l4 12q2 6 2 13 0 14-12.5 29t-49.5 24l-16 4q-6 2-8.5 5t-2.5 9v42q0 39-20 52t-68 13q-24 0-30-10.5t-12-11.5q-7 0-66.5 24T700 2552q-79 0-122.5-15t-43.5-42q0-32 48.5-49t66-28 41.5-21q-2-7-11-7h-8q-25-2-46.5-19.5T603 2332l2-30q5-36 13-80t18-89l20-87q11-51 25-100.5t58.5-101T784 1782q0-27-45-38.5t-45-48.5q0-71 68-171t68-172q0-23-16-81t-71-168l-57-112q-50-99-55.5-191T625 619q0-81 20-106t22-34q0-19-7-35t-7-41q0-56 50.5-99.5t67-54.5 56.5-67.5 89-56.5q44 0 80 37t40 89 4 118v27q0 13-2 27 35-36 79-51t94-15q78 0 173 33.5T1546.5 496t75.5 155l6 81q0 23 1 39 0 53-6.5 85.5T1612 893t-18 36-34 59q65 13 201 87t204 204 68 241q0 20-3 43.5t-3 46.5q0 34 19.5 66.5t19.5 65.5q0 53-46 101zm-523 15.5q-4 1.5-9 1.5l-56 10q-29 6-58 6-33 0-51-14t-25-38l-10-31-15-41q-8-21-13-52.5t-31-31.5q-10 0-19 1.5t-17 1.5q-37 0-72.5-4t-73.5-4q-54 0-94.5 43.5t-131 169.5-90.5 395q0 34 18 45.5t91 11.5q17 0 33.5-1t33.5-1q15 0 31 2t32 2q21 0 35-6t14-19-8-28.5-26.5-82T966 2082q0-85 56-161.5t89.5-93 33.5-29.5q0-5-2.5-9.5t-2.5-10.5q0-8 4-11t9-3q8 0 16 3l13 6q49 24 83 70t68.5 131 81.5 142.5 80.5 75 110 69.5 100.5 66 46 14q49 0 81.5-47t32.5-97q0-67-26-78.5t-86-28.5l-55-16q-88-25-121.5-63.5t-45-96-28.5-57.5q-3 0-7 1.5zm282.5-327.5q-1.5 10-1.5 21 0 20 13 25.5t50 5.5h93q2-8 4.5-21t2.5-27q0-98-63.5-220t-176-178.5T1537 1080q-14 0-20 8t-6 16q0 15 11 31t11 32q0 27-52.5 44.5T1392 1234t-36 37q-4 42-12 86.5t-8 84.5q0 58 5 116.5t12 137.5 47 79q35 0 99-20.5t64-33.5-17-39.5-33.5-118T1496 1421q0-89 12.5-129t39.5-40q82 0 139.5 30.5t75.5 75.5 18 155q0 8-1.5 18zM1523 857q-3-23-5-78t-25-89l-4-7q-19-23-50.5-30.5T1378 645t-57 3-57 3q-51 0-94.5-8.5T1110 634q-53 0-85.5 55.5T992 801q0 102 77 168.5t191 66.5q100 0 171-50t92-129zm-527 614l-4 24q-2 13-2 26 0 32 21.5 49t74.5 17l151 3q7 0 7-1 0-81 7.5-162t25.5-159v-7q0-7-4.5-10.5t-10.5-3.5q-21 0-35.5 10t-27.5 10q-17 0-42-21.5t-53-37.5-43.5-27.5-26.5-11.5q-9 0-12.5 7.5t-3.5 14.5l1 21q0 63-7 128zm-162-424l26 40q13 21 24.5 44t20.5 52l8 20q6 16 6 27 4-7 11-21.5t14-30.5l11-28q5-13 5-18 0-10-27.5-30.5T905 1062q0-13 19.5-31.5T970 999q-34-41-52.5-91T899 801q0-11 1-20t3-19q-5-20-7.5-40.5T893 680q0-11 1.5-22t1.5-24q0-11-3.5-21.5T878 602q-8 0-16 2t-13 2q-18 0-34.5 1t-36.5 1q-8 0-16-3t-17-3q-7 0-11 7t-4 15l1 18v51q0 108 33.5 203t69.5 151zm-54-558q23 14 54 14 47 0 69.5-17.5t30.5-42 8-94.5q0-13 2.5-31t2.5-35q0-26-8-44t-25-18q-12 0-21.5 14T878 270l-7 23q-5 17-16.5 26T830 334l-27 13q-19 9-32.5 38T757 438q0 37 23 51zm1163.5 1185q-27.5-18-62.5-18-36 0-52 5t-37 30-21 41q0 23 26 26.5t31.5 20.5 38.5 21l28 2q34 0 55-15.5t21-50.5q0-44-27.5-62zM1419 846.5q-17 14.5-40 14.5-20 0-37-14t-17-38q0-20 14-34.5t40-14.5q21 0 39 13.5t18 36.5q0 22-17 36.5zm-239.5.5q-16.5 14-38.5 14-23 0-39-14.5t-16-36.5q0-17 13-33.5t42-16.5q20 0 37.5 12t17.5 36q0 25-16.5 39zm87.5 323l26-26q13-13 26-20l-28 2q-15 2-31 2-52 0-98-12 0 5 9 46.5t34 41.5q17 0 32.5-10t29.5-24z"},"children":[]}]};exports.u1F483=u1F483;var u1F484={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2176 1916q7 11 54.5 84t47.5 142l-1 21q-15 170-161 290t-321 120q-51 0-96-11.5t-100-45.5-108-85.5-98-108.5-98.5-113-122.5-146.5-89.5-114.5-20.5-67l1-47q0-62-43-113.5t-50-60.5l-132-161q-64-78-81.5-110.5T734 1329l-5-34q-7-42-20-58.5t-38-49.5l-60-77Q400 836 360.5 741T321 548q0-129 55.5-210T533 257q141 0 272 104t254.5 290.5T1207 868l6 9q14 15 50 21t94 54.5 166.5 204.5 125 168 62.5 22.5 107 82.5l98 112q48 55 92.5 119t85.5 128zm-948-191q103-4 215.5-86t112.5-162q0-57-76.5-169T1352 1115t-83-81q-20 0-30.5 56.5t-48.5 112-109.5 90T951 1327l-29-1q-25 0-36 12t-11 21q0 12 10.5 25t20.5 24l100 119q90 108 120 153t102 45zM787 484Q679 367 570 367q-59 0-94 40t-35 105q0 125 96.5 213.5T759 814q58 0 97-30.5t39-80.5q0-102-108-219zm994 1975q17 0 37.5-5t20.5-18q0-10-11-24l-341-385-28-29q-15-14-33-14-7 0-30 3l-55 9q-7 0-14 1h-27q-10 0-16 4t-6 10q0 21 73.5 99t76.5 82l74 91q68 84 136 130t143 46zm-295.5-596.5q128.5-53.5 192-139.5t63.5-170q0-33-12-65.5t-63-32.5q-8 0-16 4t-16.5 60.5T1568 1645t-146 114-162 52-83.5 17.5-10.5 30.5q0 22 16 39.5t65 17.5q110 0 238.5-53.5z"},"children":[]}]};exports.u1F484=u1F484;var u1F485={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2473 1820q-23 30-51 53l-131 113q-249 214-444 307t-374 93q-79 0-161.5-19.5T1218 2325q-24 3-51 3-99 0-190.5-82.5T885 2068q0-79 90-161.5t234-196.5 271-153q108-138 262-250t330-204l254-134 43-23q7-3 17-10.5t20-7.5q19 0 29.5 23.5t11.5 48.5v17q0 19-49.5 40.5t-297 152-367 223T1614 1547q84 37 121.5 88t37.5 140q0 117-88 245t-174 182l-34 21q-16 11-27 21t-11 18 9.5 9.5 20.5 1.5q92-2 221.5-51t311.5-189l243-183q10-8 87-76.5t125-68.5q16 0 27.5 11.5t11.5 36.5q0 37-23 67zM704 1658.5Q614 1597 602.5 1526t-58.5-71q-6 0-12 1t-13 1q-19 0-34-10.5t-28-32.5l-14-22q-78-116-140-238L177 910q-3-6-38.5-72T103 722q0-22 10-37.5t32-15.5q26 0 33.5 21.5t82 158T390 1097t81.5 174 71.5 62q35 0 65-24t30-58q0-25-15-60.5T462 880 282.5 548.5 249 451q0-22 11.5-31t25.5-9 25 6.5 24 24.5l12 17q37 53 70 108t63 112l60 114q174 337 204.5 391.5T775 1281q0 15-4 27t-8 22l-8 20q-4 9-4 18 0 17 15.5 30.5T802 1420l23 9q54 22 114.5 38.5T1059 1484q39 0 77.5-7t77.5-7q20 0 29 8.5t9 20.5q0 54-95.5 137.5T918 1720q-124 0-214-61.5zm877-4q-23-8.5-42-8.5-89 0-204 87t-235 179.5T980 2075q0 16 12 40.5t30 24.5q14 0 52-36.5t250-211.5 246-191 34-29q0-9-23-17.5z"},"children":[]}]};exports.u1F485=u1F485;var u1F486={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2515 520l-1 35q-3 75-14.5 238.5T2483 1042l-7 122q-3 54-3 80 0 67 13 174.5t13 173.5q0 130-36 319t-165 325-249 136q-86 0-152-31.5t-89-83.5q-40 34-116.5 77.5t-188.5 70-204 26.5q-132 0-274-47.5T790 2259q-25 54-89 83.5T555 2372q-121 0-249.5-132T139 1917.5 101 1594q0-64 13-166t13-165q0-10-3-58l-16-268-10-157q-3-51-6.5-115T86 555l-1-35q0-30 16.5-49t44.5-19q46 0 60.5 41.5t26.5 243 23 336.5 11 238q0 67-16.5 172T234 1657q0 247 108.5 420.5T571 2251q51 0 80.5-25t29.5-60q0-48-52-117t-77-126-25-97q0-24 10-32.5t25-8.5q28 0 62 49.5t73 49.5q38 0 52.5-16.5T764 1833q0-11-7.5-35.5T634 1609t-146-275-34-576l-1-208q0-55 19-76.5t54-21.5q29 0 46.5 18.5T590 518v74l2 125q24-40 132-128.5t264.5-144T1319 389q198 0 378 72t313 201V518q0-22 15-44t50-22 54 23 19 86v95q0 171-7 380t-30 299.5-108 218-126 185.5-41 94q0 18 14.5 34.5t52.5 16.5q39 0 73-49.5t62-49.5q16 0 25.5 8.5t9.5 32.5q0 41-25 96.5t-77.5 127T1918 2166q0 35 30 60t79 25q119 0 229-173t110-416q0-68-16.5-172.5T2333 1318q0-115 12-249t23-333.5 25-241.5 61-42q18 0 39.5 15.5T2515 520zm-684 1528l11-21q5-10 9-19.5t4-15.5q0-8-14.5-8t-46-12-51.5-43-20-66q0-26 8.5-55.5t24.5-64.5l22-45q31-65 66-129t55-92l22-34q-141-116-287-165.5t-293-49.5q-161 0-328.5 57T685 1452l9 15q-2-3 30 48.5t70 125.5l29 57q37 71 44.5 102.5t7.5 57.5q0 61-38 92t-65.5 32-27.5 10l17 38 25 51q9 16 41.5 50.5t81 69T1012 2260q68 31 141.5 46.5T1299 2322q174 0 326.5-84t205.5-190zM877 689l40 42q152 161 295.5 256.5t225 112.5 190 47 293.5 158q32 22 53 38 18-42 25.5-168.5T2007 937v-43q-51-106-105.5-152.5t-130.5-95-198.5-85T1312 525q-164 0-306 52t-142 86q0 14 13 26zM593 970q0 14 1 39l2 56q0 31 3 64l8 118q2 47 8 67.5t26 62.5q73-66 223-136t247.5-88.5T1218 1134t9-10q0-18-55.5-51.5T1016 956 860.5 798.5 774 724q-32 0-73 40.5T631 852l-27 44q-5 9-8 26.5t-3 34.5v13zm867.5 1033q5.5 9 5.5 17 0 36-48.5 66t-117.5 30q-66 0-116-30t-50-65q0-9 5-18t16-9q16 0 39.5 21t66.5 32 84.5-1 62.5-32 37-20q10 0 15.5 9zm271-317.5Q1686 1717 1626 1717q-61 0-106.5-31.5T1474 1621q0-11 8-18.5t19-7.5q15 0 46 30t79 30 78-30 45-30h7q7 2 14 9t7 17q0 33-45.5 64.5zm-637-.5q-45.5 32-105.5 32t-105.5-32-45.5-64q0-11 8.5-18.5t19.5-7.5q15 0 45 30t78 30 78-30 45-30q13 0 20.5 6.5t7.5 18.5q0 33-45.5 65zm123 213.5q6.5-3.5 12.5-3.5t12 3l13 6q8 4 18.5 7t26.5 3q27 0 44-9.5t24-9.5q5 0 12.5 3.5t7.5 10.5q0 14-26 31t-62 17q-38 0-63.5-16.5T1211 1909q0-7 6.5-10.5z"},"children":[]}]};exports.u1F486=u1F486;var u1F487={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2407 2085l20 30q9 15 15.5 28.5t6.5 23.5q0 36-58 36-76 0-149-38t-90-53.5-30-15.5q-6 0-12 6.5t-6 19.5q0 14 13 36l28 46q15 25 28 47.5t13 36.5q0 17-21.5 25.5t-61.5 8.5q-26 0-49-3l-31-4q-35-6-70.5-15t-66.5-26q-83 117-252.5 190.5T1292 2538t-341-72.5T697 2275q-31 17-65.5 25.5T563 2315l-31 4q-23 3-49 3-41 0-62.5-8.5T399 2288q0-11 13-33l28-47q15-24 28-47.5t13-37.5q0-12-6-19.5t-12-7.5q-13 0-29 15.5t-89.5 53.5-150.5 38q-26 0-42.5-9.5T135 2167q0-27 39.5-74.5t90.5-170T368 1557t108-375 134.5-230.5 174.5-166 202-106 212-53.5q46-6 94-6 59 0 97 8.5t96 42.5 58 70q0 22-27 47.5t-66 46.5l-51 28q-56 30-88.5 64t-32.5 73q0 50 42 79.5t108 29.5q97 0 206-37t171-69.5 94-32.5q40 0 67 70.5t66 113.5 93 71q49 129 109.5 413t171.5 447zm-625 133l39-52q33-69 48-166.5t15-221.5q0-69-5-146t-11-133l-8-61q-20 18-57.5 36.5T1732 1493q-21 0-40-15t-19-33q0-57-6-67.5t-30-10.5q-60 0-168 61.5T1160 1549l-18 5q-18 6-40 10t-40 4q-22 0-36-6.5t-14-23.5q0-25 49-68.5t49-65.5q0-9-8.5-15t-22.5-6q-50 0-114.5 40.5t-134.5 71-114 30.5q-5 52-9 116.5t-4 136.5q0 223 46.5 349T952 2341t340 88q159 0 297-69t193-142zm646.5-1800q-35.5 17-35.5 78v27q0 70-59.5 113T2193 679q-17 0-30.5-1t-30.5-1q-33 0-57.5 32t-27.5 35l22 27q20 28 31 34.5t23 6.5q18 0 32-2t34-2q90 0 154.5 52t64.5 134q0 62-50 111.5t-111 49.5q-52 0-105-36.5T2041.5 975 1919 831q-187 105-293.5 139t-128.5 37.5-68 3.5q-16 0-33-1t-17-7q0-10 8.5-15t160.5-96 237-148l-136-85q-73-46-171.5-102t-98.5-70q0-4 10.5-6.5t40.5-2.5q98 0 225 48.5T1919 657q9-3 44.5-32t76.5-111l33-64q28-55 65-84t91-29q20 0 47.5 3.5t48.5 3.5q28 0 27-37t40-37q27 0 49.5 18.5T2464 338q0 63-35.5 80zm-975 1731.5q5.5 8.5 5.5 16.5 0 37-49 66.5t-117 29.5q-67 0-116.5-29.5T1127 2167q0-9 5-17.5t16-8.5q17 0 52.5 29t91.5 29q58 0 93.5-29t52.5-29q10 0 15.5 8.5zm717.5-1122q30 25.5 63 25.5t56.5-18 23.5-50q0-42-34-65.5t-84-23.5q-23 0-39 16.5t-16 42.5q0 47 30 72.5zm121-572q-22-20.5-48-20.5-44 0-73.5 28t-29.5 71q0 27 17.5 43t45.5 16q43 0 76.5-25t33.5-63q0-29-22-49.5zm-1204.5 1376Q1042 1863 982 1863t-105.5-32-45.5-64q0-11 9-18.5t20-7.5q15 0 44.5 30t77.5 30 77.5-30 44.5-30q9 0 19 6.5t10 19.5q0 33-45.5 64.5zm636 0Q1678 1863 1618 1863t-105.5-32-45.5-64q0-11 9-18.5t20-7.5q15 0 44.5 30t77.5 30q49 0 78.5-30t44.5-30q7 0 17.5 6t10.5 20q0 33-45.5 64.5zm-514 212.5q6.5-3 12.5-3t25 10.5 45 10.5q25 0 44-10.5t26-10.5q6 0 12.5 4t6.5 10q0 16-26.5 32t-62.5 16q-37 0-63-16t-26-32q0-8 6.5-11z"},"children":[]}]};exports.u1F487=u1F487;var u1F488={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1840 849l-37 1028q37 28 56 71.5t19 92.5q0 68-34.5 129.5T1748 2280l-30 78q-5 13-31 48.5t-55 61.5-66 48.5-58 30.5-80 20.5-138 12.5q-178 0-285.5-86T860 2319l-15-34-21-17q-73-57-98-116.5T701 2039q0-49 19-91t57-70L749 849q-53-32-75.5-70T651 692q0-54 26.5-92t67.5-59l47-23h-1q58-28 55-39t39-96.5T1032 236t265-61q75 0 133.5 16.5T1542 239t101.5 90.5 78.5 118 67.5 69 98.5 64 61 120.5q0 48-31.5 84t-77.5 64zm-155 59q-5 2-11 3t-12 3q-56 61-147 108.5t-233.5 103-232.5 121T916 1380l7 289q43-82 125.5-152t292.5-166l119-55q63-28 124.5-85t94.5-129zm-682-483q-18 23-29.5 48T962 519q0 33 26 44.5t96.5 29T1295 610q115 0 177-9.5t110-29.5l16-6q13-5 21-15.5t8-30.5q0-18-11-42.5t-29-50.5l-18-25q-44-54-109.5-81.5T1295 292q-98 0-164.5 27.5T1022 401zm760.5 1558.5Q1749 1958 1727 1958q-21 0-45.5 42.5T1553 2084t-264 41q-139 0-239.5-33.5T911 2011l-19-24q-10-12-20-20.5t-20-8.5q-22 0-36.5 25.5T801 2034q0 48 41 103.5t161 101.5 285 46q145 0 262.5-36.5t172.5-97 55-118.5q0-24-14.5-49.5zM1667 1419q-68 91-162.5 144t-165.5 93.5-152.5 115T1042 1949l-24 39q48 23 104.5 33.5T1255 2032h41q98-134 211-208.5t151-141.5zM840.5 772.5Q902 799 998 819.5t297 20.5q35 0 71-2l70-4q201-14 288-48t87-85q0-30-27.5-55.5T1723 614q-8 0-36 15.5t-128.5 37T1289 688q-162 0-259.5-21.5t-125.5-37-36-15.5q-32 0-60.5 30T779 701q0 45 61.5 71.5zM1601 2311q-64 39-142.5 53t-163.5 14-162.5-14-143.5-51q59 87 129.5 124t177.5 37q82 0 148-23.5t105-68.5 52-71zM903 910l2 131q26-26 67-54t101-53l-64-7q-32-3-64-9z"},"children":[]}]};exports.u1F488=u1F488;var u1F489={"viewBox":"0 0 2686.2591 2760.837","children":[{"name":"path","attribs":{"d":"M2422.26 2410q-120 124-241 124-63 0-105-36t-42-93q0-14 1.5-25.5t1.5-23.5q-2-8-8.5-15t-21.5-18l-62-48-26 22-52 41q-47 37-96 59t-97 22q-56 0-93-31t-37-87q0-41 18-75t36-64l19-31q10-18 10-26 0-19-10-24t-247-204l-151-127h-1q-356-301-484.5-442t-128.5-266q0-73 24-143t72-135l-10-11q-13-16-16.5-27t-3.5-29q0-19 12-39l-442-477q-7-6-9-12.5t-2-14.5q0-16 11.5-28t26.5-12q16 0 30 14l443 477 18-6q9-2 19-2 15 0 25.5 4t16.5 9l32 32q54-27 112.5-41.5t115.5-14.5q70 0 122 17t87.5 43 122.5 126l26 30q120 139 368 469t255 343.5 26 13.5q7 0 75.5-46.5t126.5-46.5q50 0 82 37t32 93q0 47-20.5 99t-92.5 146l-19 25 48 49q25 28 34 28 14 0 29.5-3.5t35.5-3.5q50 0 87 42.5t37 110.5q0 128-120 252zm-759-539q-38 24-74 35l155 132q11 10 23 15.5t25 10.5q98-14 169-65.5t110-138.5q-6-44-48.5-103.5t-187.5-247.5l-126-163q-231-295-282-348.5t-53.5-61.5-12.5-8q-2 0-4.5 2t-4.5 5q-26 146-113 239t-162 115-97 22q-17 0-25.5 3t-8.5 11q0 4 7.5 12t19.5 18l25 24q14 13 28 27 12 3 31 3 44 0 83-15.5t57-34.5 30-19q11 0 20 9t9 22q0 23-52.5 56t-114.5 38l17 18q15 16 31.5 27t33.5 11q37 0 75-13.5t56.5-33.5 34.5-20q13 0 21.5 9t8.5 21q0 23-47.5 53.5t-108.5 39.5q17 15 32 29t32 28q51 0 88.5-16t54-33 31.5-17q12 0 21 9.5t9 20.5q0 21-45 50.5t-97 39.5l67 59q38-3 72.5-15.5t52.5-32 31-19.5q11 0 20.5 9.5t9.5 20.5q0 20-38 47t-89 41l71 60q32-4 62-18t45-30 30-16q12 0 21 9t9 20q0 24-38 48zm-878-1018q-23 33-38.5 70t-15.5 75q0 91 43 150.5t120 59.5q140 0 245-98t105-244q0-79-46-128.5t-134-49.5q-35 0-69.5 9.5t-67.5 26.5l111 118q19 19 19 48 0 45-35 76.5t-79 31.5q-11 0-19.5-4t-15.5-10zm1499.5 1420q30.5-31 30.5-71 0-21-7.5-34t-57.5-70-82-82q-31 36-64 70.5t-81 82.5q22 23 91 79t102 56q38 0 68.5-31z"},"children":[]}]};exports.u1F489=u1F489;var u1F48A={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2360.5 1191.5Q2313 1311 2218 1406l-532 531q-21 22-45 29.5t-46 7.5l-362 362q-87 87-198 132.5T801 2514q-159 0-300.5-81t-225-224-83.5-305q0-123 46-233t133-197l354-355q0-23 7.5-45.5T760 1030l541-542q92-92 210-140.5t249-48.5q176 0 325 86.5t236 237 87 324.5q0 125-47.5 244.5zm-1385 1132Q1058 2289 1122 2225l415-416q-26-112-141.5-260.5t-255.5-252T897 1169l-415 416q-65 66-99 147.5T349 1906q0 189 135 320.5T801 2358q92 0 174.5-34.5zM1979 542q15 0 29-5t14-16q0-17-23.5-30t-56.5-20l-27-5q-23-4-47-6t-47-2q-94 0-179.5 35.5T1490 595l-434 434q35 7 74 20.5t106 52.5l380-381q88-88 187.5-133t156.5-45zm-679 1145q33 31 49.5 57.5t35.5 68.5l-297 297q-57 57-130.5 85.5T804 2224q-38 0-73-7l-21-4q-24-5-46-15.5t-22-24.5q0-10 12.5-14t31.5-5h15q81-13 152-52.5t129-96.5z"},"children":[]}]};exports.u1F48A=u1F48A;var u1F48B={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2215.5 1970.5q-124.5 31.5-199 89.5t-268 154-375.5 96q-113 0-227.5-26.5t-221.5-63-207.5-104-154.5-166-65.5-218-32.5-227-92-211.5l-26-37-32-44q-23-23-38.5-48.5T260 1110q0-57 57.5-86.5t99.5-41 110.5-59 95.5-67T732 756l54-52q91-87 181.5-132.5T1140 526q104 0 199.5 76t161 109 150 46 200 29 216.5 96 112.5 207.5T2195 1241l12 102q29 245 81 346.5t52 154.5q0 95-124.5 126.5zM1855 1704q21 1 42 3-58-68-104-191t-74.5-169-68.5-67.5-142-21.5q-127-3-194-21t-134-71.5-136-53.5q-52 0-161 49.5T681 1229q78 73 171 234.5t237.5 230.5 311.5 69q73 0 201-30t212-30q20 0 41 1z"},"children":[]}]};exports.u1F48B=u1F48B;var u1F48C={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2479 1449q-16 28-106.5 99.5T2101 1730t-244.5 153-227.5 137.5-346.5 214T998 2400t-151 46q-72 0-128-70t-114-169-103.5-195-89-201-91-204.5-90.5-202-84.5-204.5-41.5-187q0-41 27.5-93.5t156-106T598 705l115-35 205-67q182-60 486-147t354-97 100-10q65 0 108 24t71.5 65.5 102 168 177.5 347 141 296 37 133.5q0 38-16 66zm-174-214.5q-22-57.5-49-116.5l-39-84q-14-29-56-131t-143-264l-15-25h-1q-21-34-34-49.5t-20-15.5q-5 0-7 5.5t-5 28.5l-28 241q0 3-8.5 69.5T1866 960q-26 0-40-24t-14-54q0-10 1-20t1-27q0-72 7.5-144.5T1829 549v-15h-1q0-12-6.5-22.5T1803 501q-37 6-235.5 59t-256 77-310 100T636 854.5t-189.5 75T370 989q0 17 14 24.5t100.5 38.5 223.5 71l139 41q90 27 139 45.5t108 42.5 59 79q0 11-8 16t-16 5q-39-2-75-13l-73-22-299-80q-219-59-257.5-75t-69.5-16q-8 0-16.5 3t-8.5 11q0 9 10 35.5t70.5 206.5T580 1813t143.5 279.5T799 2166t93 25q100 0 239.5-74.5t246-127.5 371.5-209 370.5-228 156.5-122 51-104q0-34-22-91.5zm-460.5 49.5q-10.5 55-36.5 149t-79 94l-34-1h-36q-253-23-340.5-89t-87.5-172q0-78 50.5-130.5T1416 1082q28 0 53.5 4t51.5 4q24 0 44-40.5t54-59 73-18.5q75 0 119 58.5t44 149.5q0 49-10.5 104z"},"children":[]}]};exports.u1F48C=u1F48C;var u1F48D={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2337 847q6 15 6 32v9l-41 251q-5 28-25.5 46t-48.5 20l-158 7q-23 33-54.5 49.5T1947 1286l-104 23q-52 12-104 23 48 94 71.5 196.5T1834 1735q0 327-214.5 528.5T1056 2465q-227 0-410-102.5T359.5 2072 256 1658q0-204 100.5-376t277-268.5T1018 917q140 0 274 44l12-216q2-40 15-78.5t51-64.5l-12-170v-5q0-27 15-47.5t41-28.5l244-70q6-2 12-2h20q5 0 10 2l254 69q19 5 31 16l234 209q14 12 21 28zm-811 619q-77-146-224-228t-320-82q-149 0-287.5 73.5t-215 201.5-76.5 288q0 258 168.5 436.5T1010 2334q263 0 428-153.5t165-404.5q0-164-77-310zm203-1095l12 130 200 211 228 115 81 9-83-204-234-207zm110 654l-211-165-74 241zm-357 26l84-254-119-225zm221-232l181 142-4-171zm-49-277l-163-56 109 209zm538 544l-55-158-129 100 77 25zm-525-341l172-28-120-125zm414 387l-157-48-251 66 234-10zm1-261l-123-62 3 156zm-579-463l156 53-9-96zm755 509l-44-5 31 87z"},"children":[]}]};exports.u1F48D=u1F48D;var u1F48E={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2381 1907v20q0 20-32 48t-58 35L782 2379q-6 2-13 3t-14 1q-39 0-71-23.5t-43-63.5L225 802q-4-8-5-16.5t-1-16.5q0-32 17.5-60.5T283 665l479-244q12-6 25.5-10t27.5-4l560 39q28 0 52 15l570 334q11 8 21.5 17t18.5 20l303 463q18 29 19 60zm-286-483l159 270-11-280zm-662-126q-42 81-97 154t-113 144l313 158zm808 567l-230-391q-13 66-21 176t-20 185zm-318-459l-389-107 99 441zm-559-190L968 936l-61 449zM859 889q-39 28-116.5 82.5T599 1076l215 264 61-448zm-45 1291l682-336-608-309zm72-1649l88 289 515 365 528 146 197-13-276-422-571-334zM418 728l445 63-77-251zm301 1411l75-665-397-489z"},"children":[]}]};exports.u1F48E=u1F48E;var u1F48F={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2486.5 1773q-42.5 122-112 207T2249 2099.5t-56 76.5q0 29 28 86.5t28 84.5q0 40-58 63.5t-154.5 42.5-233.5 19q-73 0-146-8.5t-145-27.5l-52-10q-62-11-102-34t-40-60q0-25 70-99.5t70-141.5q0-8-1-15l-2-14q-11-27-120-61.5t-125-46.5l-14-8-13-8q-7-3-10-3-13 0-25 2.5t-26 2.5q-81-3-134.5-20t-82.5-17q-21 0-39 12t-18 34q0 9 13.5 50t77.5 131l31 46q4 6 49 65.5t45 99.5q0 71-180 106t-316 35q-174 0-335.5-54.5T71 2286q0-40 40-127t103-251.5 63-283.5q0-29-40.5-93T150 1365t-46-201q0-206 166.5-390T710 590q141 0 303 61t239 171.5 82 208.5l3 70q0 21 3.5 54t12.5 33q14 0 45-39.5t87.5-92T1606 970t134.5-49.5T1884 905q165 0 319 74.5t240 225.5 86 308q0 138-42.5 260zm-1239-577q-4.5-25-4.5-62 0-36-7.5-71t-27.5-35q-9 0-20.5 6.5T1164 1049l-22 17q-38 29-114 53.5t-98 24.5q-20 0-28-11t-8-28q0-11 1.5-20.5t1.5-16.5q0-14-3-19t-8-5q-9 0-24.5 15.5T831 1095l-13 18q-27 37-48.5 79.5T748 1281q0 14 1.5 29t1.5 28q0 8-13.5 17.5T707 1365q-29 0-64-54t-73-54-63.5 38.5T481 1375q0 48 34 86.5t72.5 41T626 1539q0 27-25.5 48.5T541 1623t-81.5 25.5-52.5 31-20.5 63.5-15.5 59q0 58 94.5 91.5T651 1927q73 0 82.5-48t47-75 81.5-27q45 0 119.5 28.5T1094 1834q41 0 57.5-55t16.5-84l-1-34q0-24 9.5-43.5t9.5-42.5v-21q0-17 13-37t13-35q0-21-28-47.5t-28-50.5q0-39 48-67t48-74q0-22-4.5-47zm1094 83.5q-65.5-127.5-190-201T1871 1005q-70 0-102.5 13.5T1736 1064q0 29 24 71t52 78l68 93q40 55 61.5 124.5T1963 1562q0 88-35 179.5T1816 1903t-95 78-20 21q0 14 9.5 19.5t25.5 5.5q17 0 42-6t43-13l17-6q25-8 88.5-31.5t76.5-23.5q9 0 13.5 6t4.5 12q0 24-65.5 56.5T1874 2064q8 14 22 18.5t31 4.5q83 0 206.5-67t198.5-190 75-273-65.5-277.5zm-572 53.5Q1665 1200 1641 1062q-72 37-152.5 143.5t-152.5 142-74 53.5q0 13 24.5 41t24.5 52q0 18-5.5 31t-12.5 23l-14 20q-7 10-8.5 24t-10 27-8.5 24q0 13 2 23.5t2 23.5q0 48-9 68t-9 30q0 5 2 6 7 21 18 34.5t31.5 23.5 105 36.5T1511 1936l37 22q26-12 176-136t150-256q0-100-104.5-233zM1401 790q-26-48-113.5-163T1200 406q0-96 62.5-160.5T1400 181q47 0 98 25.5t84.5 75.5 57.5 50l7-1q29-8 53.5-16t54.5-8q97 0 156.5 54.5T1971 509q0 72-56 148t-197.5 115.5T1530 832l-37 17q-8 4-18.5 11.5T1453 868q-14 0-22-20t-10-24zm-243 460q9 0 12.5 5t3.5 11q0 24-26.5 47t-54.5 23q-30 0-64.5-25.5T994 1260q0-5 3.5-10t10.5-5l8 1 30 8 17 6q6 3 13 4.5t17 1.5q22 0 37.5-8t27.5-8zm497 144q6 3 10 6t4 10q0 14-20 22t-41 10l-15 1q-40 0-65-24.5t-25-58.5q0-11 5-25t15-14q14 0 26 25.5t71 38.5z"},"children":[]}]};exports.u1F48F=u1F48F;var u1F490={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2425 2349q-21 37-56 69l-46 42q-52 49-90 67.5t-72 18.5q-63 0-109.5-57t-64-102-51.5-45q-83 0-167.5-12t-192-18-144.5-10q-46 50-74.5 63.5T1299 2379q-47 0-90-26.5t-78-62-78-35.5q-18 0-38 4l-46 9-8 1-22 5q-29 8-53 12t-43 4q-56 0-85-32.5T726 2130l-1-21-71 1h-38q-71 0-103-21.5t-32-63.5q0-7 1-15t3-16v-6q3-10 3-19-26-26-34.5-52.5T436 1854q-37-32-53-73t-18-82q-26-20-46-46.5t-20-61.5q0-22 12-49-48-26-76.5-71.5T206 1373q0-14 3-29-18-21-27-46.5t-9-51.5q0-60 40-111 0-62 43.5-110.5T365 964h7q5-2 18-2 13-15 27.5-25.5T446 920q-2-11-4-18.5t-2-18.5q0-24 10.5-56.5T492 764q0-3-1-10 0-6 1-8v-6q4-61 50-109.5T653 576q23-23 53.5-35.5T769 528q25 0 48.5 7.5T861 557q19-4 40-4 0-5-1-11t-1-11q0-57 36-106.5t90-66.5l6-3 10-2h9q22-37 58.5-58.5T1188 273q25 0 48 7.5t41 19.5q10-3 19-4t18-1q30 0 65 12.5t68 38.5q17-7 34-7l10 1q22 3 38 15t26 25l5 4q16 20 29.5 41t27.5 41q41-23 99-23 46 0 87.5 16.5T1873 506q24 0 47-3.5t46-3.5q56 0 95 22.5t58 62 30.5 119.5 25 105 69.5 49l27 12 60 29q54 27 84.5 64t30.5 85q0 23-10.5 41.5T2417 1120l-3 4q-31 48-57.5 83.5T2296 1280l-19 21q0 21 1 42.5t1 43.5q10 20 19.5 51.5t9.5 62.5q0 21-6 43.5t-23 43.5q-2 14-2 29v29q0 14 1 28.5t1 28.5q0 52-3 102.5t-3 101.5q0 18 1 35t1 34q0 16-1.5 31.5t-1.5 31.5q0 87 87 134t87 93-21 83zM1187 918l-9 10q-5 5-13 5-6 0-10-3l-9-6q-13-11-28.5-16.5T1090 902q-27 0-56 18.5T999 972t-28 36.5-40 24.5-18 48l1 9q0 6 2 11 0 2 5 8l10 14q5 8 9 15.5t4 11.5q0 5-4 10.5t-9 10.5l-11 9q-12 10-18 23.5t-6 36.5q0 34 20.5 67t46 33 29.5 33 15 47l21 22q6-2 13-3t13-1h8l15-13 4-4q25-20 53.5-29t59.5-9q56 0 90.5 21.5t50.5 24.5q7-7 15.5-19t11.5-23q-2-8-3-17t-1-17q0-52 24.5-94.5t63.5-67.5q0-4 1-7-7-4-7-14 0-6 4-12l8-13q4-6 8-15t4-21q0-35-25.5-77.5T1380 985h-27q-23 0-27-27t-27.5-47.5T1251 890q-17 0-33.5 8t-30.5 20zm-99.5 1084q20.5-14 28.5-14 9 0 14 7l8 14q11 20 28 28.5t36 8.5q36 0 62.5-23.5t28-50 20.5-26.5q11 0 20.5 3.5t20.5 3.5q29 0 54-24t25-58q0-14-4.5-27.5t-4.5-27.5q0-8 3.5-12t8.5-8l9-7q7-5 12-21t5-34q0-32-16-57.5t-43.5-30.5-27.5-22q0-8 2.5-16.5t2.5-16.5q0-28-21.5-47t-45.5-19q-8 0-15.5 2t-14.5 2q-13 0-21-14.5t-27.5-24.5-40.5-10q-41 0-59 30t-26 34l-6 2q-11 0-24-5t-25-5q-32 0-51 20.5t-19 55.5q0 10 2 18.5t2 13.5q0 15-18 22.5t-33 27.5-15 61q0 25 9.5 47.5T953 1831l12 6q6 4 10.5 8.5t4.5 11.5q0 11-6 20t-6 28q0 49 21.5 80t57.5 31q20 0 40.5-14zm788.5-448q4 2 10 3t12 1q36 0 55-21t19-47q0-24-6-34t-6-21 18-17 30.5-26 12.5-43q0-50-25-64.5t-25-29.5l1-13v-13q0-28-19.5-48t-49.5-20q-7 0-16 3.5t-16 3.5l-7-2q-10-2-15.5-24.5t-27-40-57.5-17.5q-47 0-59.5 19.5T1684 1125l-9 2q-13 0-25-4.5t-25-4.5l-11 2q-25 6-47.5 24.5T1544 1198q0 14 4.5 24t4.5 22q0 15-30.5 23t-48 32-17.5 55q0 34 30.5 54.5t30.5 31.5q0 7-3 13l-17 32q-5 9-6 21 0 40 31.5 60t83.5 20q14 0 25-7t23-7q7 0 11 3.5t7 8.5l6 11q5 8 25.5 18.5t48.5 10.5q38 0 62-13t29.5-35 21.5-22h10zm-274.5-971q-15.5-7-32.5-7-34 0-50.5 23t-16.5 55q0 8 1.5 14.5t1.5 14.5q0 12-19.5 14t-41 23.5T1423 777v11.5l2 10.5q0 9 5 16t11 14l11 13q5 6 5 12 0 11-5.5 22t-5.5 19l1 11q17 11 33 26.5t32 32.5q20 0 28.5 5.5t8.5 20.5l-1 6q0 10 4 18.5t10 17.5q32-13 63-13h13q5 0 9 1 30-17 57-26.5t60-9.5q26 0 50 6.5t44 17.5q2-3 2-7v-7q0-11-3.5-23t-3.5-26l1-7h14l12 2q6 2 12 2 23 0 44.5-30.5T1958 853q0-37-12-55t-12-21q0-10 4-18l7-14q3-7 6.5-15.5t3.5-19.5q0-40-23.5-68.5T1868 613q-8 0-16 2.5t-16 2.5l-4-1q-7-2-10.5-7t-5.5-11l-3-11q-5-17-34.5-31.5T1716 542h-12q-41 0-52.5 24t-26.5 24q-8 0-23.5-7zM492 1772q5 2 7 7 5 3 22.5 8.5T539 1809q0 8-3 15t-3 15q10 55 34.5 70.5T632 1925q23 0 41.5-10t25.5-10q2 0 17 12t52 12q30 0 58-16t35-37q-20-28-28.5-59.5T824 1754q0-50 17.5-89.5T885 1602q2-20 7-41t15-41q-15-3-18.5-7t-3.5-14q0-6 1-12t1-11q0-23-22.5-41t-46.5-18l-9 1q-8 2-17 5.5t-16 3.5h-6q-5-2-19.5-17.5T701 1394q-55 0-72.5 34.5T611 1473l-8 3q-5 0-9-1.5t-14-1.5q-41 0-61.5 18t-20.5 52q0 17 6.5 30.5t6.5 23.5q0 14-24.5 26.5T462 1695q0 44 30 77zm1788 538q2-2 2-8 0-26-51.5-58t-62-76-10.5-160v-68q0-68-1.5-146.5T2154 1666q-14 8-30 13l-43 16q-16 6-25.5 11t-9.5 22q0 25 1 47t3 43l3 42q0 22 1 46 0 72-34.5 105.5T1934 2052t-132 12.5-132 5.5-83.5 48-58.5 79l189 10q137 6 231.5 19.5t109 38 50.5 84 56 59.5q16 0 37-19.5t45.5-37.5 33.5-41zm-341-400q0-45-4-88t-4-90q0-20 4.5-42t18.5-43q-11 3-20.5 5t-20.5 3q-24 32-68 50t-92 18q-38 0-69.5-11t-56.5-31q-5 2-10 2l-36-1q-13 0-27-2 3 14 5 27t2 27q0 29-7.5 54.5T1529 1842q3 12 3 26 0 7-1.5 14.5t-1.5 15.5q-13 66-55 104.5t-106 47.5q-25 42-69 68.5t-97 26.5q-30 0-57-10t-50-27q-9 3-17 4l-19 2q-58 0-109-33t-67-89q-18 12-35.5 19.5T810 2024q21 15 25.5 41t4.5 47v11l-1 11 3 16q0 3 1 10t3 15q10 0 22.5-2t25.5-5l52-13q29-5 55-9t52-4q89 0 152.5 61t93.5 61q14 0 55.5-44.5t68.5-75 55.5-73.5 67-72 66-35 119-11 100-6.5 57.5-4 51-18.5v-14zM321 1312l1 5q0 8-3 14l-6 13q-4 7-7 14t-3 15q0 30 21 55t50 34l7 2q5 0 12-2t12-2l9 2 3 3q19-36 55-60t75-29l15-21q26-29 62-44.5t77-15.5q21 0 45.5 5.5T791 1317l7-15q3-7 5-15-3-12-3-22 0-55-33.5-67.5T733 1169q0-8 3-14.5t3-12.5q0-32-34.5-65.5T639 1043l-11 1q-8 2-16 6t-16 4q-6 0-13-8l-17-18q-10-10-21.5-18t-26.5-8q-44 0-61 33t-22 34h-3q-9 0-18-4t-23-4h-10q-28 4-49.5 28t-21.5 50q0 8 3 15t3 15q0 9-12 15.5t-23 24.5-11 37q0 29 24.5 44.5T321 1312zm681-731l-11 13q-6 8-11 18t-5 23q0 27 12.5 43t31.5 20.5 19 18.5q0 9-5.5 20t-5.5 17l1 3-1 7q0 26 19 46 5-2 19.5-3.5t24.5-1.5q7 0 17 1t21 3l5 1q12 0 25 8 11-11 38.5-19t54.5-8q21 0 37 6t39 13q-3-13-3-30 0-40 15-76t45-62l6-4 7-7q3-2 8-4 5-36 19-61t31-41q-16-8-25-10t-9-21q2-3 2-10 0-34-37.5-62t-71.5-28q-17 0-27.5 9.5T1265 413q-7 0-30.5-21.5T1188 370l-5 2q-21 3-37 16t-23 36.5-13 26.5l-22-1-9-2q-33 0-58 25t-25 56q0 10 5.5 22t5.5 19q0 5-5 11zM541 898l3 8q23 5 43 15.5t35 24.5q5 0 8.5-1t8.5-1q45 0 104 37.5t73 79.5q6-45 29.5-78t61.5-55l2-1q17-42 50-70-16-22-23-46.5t-7-52.5q-46-41-52-103l-5 4-11 6-12 5q-6 3-9 3l-4-1q-9-2-21-23.5T769 627t-48.5 22.5T696 674l-6 2q-5 0-8.5-1.5T673 673h-8q-25 0-50 24t-25 51q0 15 5.5 27.5T601 799q0 10-11 13.5T559 836t-20 51q0 7 2 11zm1512-92q2 16 2 28v20q0 56-28.5 99.5t-47.5 56-25 26.5l-6 14q-3 8-8 18 53 10 89.5 51t41.5 98q23 24 36 61.5t13 67.5q0 28-8 55t-25 50l-4 6-14 15q0 5 1 9.5t1 9.5q0 33-11.5 58t-21.5 41l8-3q4-2 76-28t72-58q0-9-7-28l-15-42q-8-23-15-48t-7-45q0-71 52.5-126.5T2317 1062l6-8q2-2 4-6l4-6q-5-24-92.5-61T2111 908t-58-102zm-925 309q29-31 70-31 36 0 65 28t29 64q0 38-30.5 69.5T1186 1277q-40 0-63.5-25t-23.5-65q0-41 29-72zm686 185q26 24 26 61 0 35-27.5 61.5T1747 1449q-34 0-60.5-20t-26.5-54q0-44 28-71.5t66-27.5q34 0 60 24zM659 1735.5q-23-28.5-23-63.5 0-37 25-64t61-27q40 0 62.5 27t22.5 62q0 42-30.5 68t-60.5 26q-34 0-57-28.5zM1610 801q0-38 27.5-61.5T1702 716q38 0 64 23t26 55q0 37-29 65t-65 28q-33 0-59-21.5t-29-56.5v-8zm-435 1043q-31 0-53.5-24.5T1099 1761q0-39 23-68t62-29q37 0 61.5 25t24.5 61q0 42-28.5 67.5T1175 1844zm8-1280q26-25 57-25 41 0 62 25t21 57q0 34-27 63.5t-60 29.5q-32 0-55.5-27.5T1157 625q0-36 26-61zM737.5 950Q713 925 713 892q0-34 26.5-59.5T801 807q34 0 59 22t25 52q0 41-29 67.5T794 975q-32 0-56.5-25zM466 1202.5q23-26.5 51-26.5 31 0 51 25.5t20 60.5q0 41-23 70t-55 29q-29 0-48-29.5t-19-62.5q0-40 23-66.5z"},"children":[]}]};exports.u1F490=u1F490;var u1F491={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2503.5 2251q-39.5 107-119.5 180t-111 73q-13 0-17-11.5t-4-25.5q0-7 5.5-34t11.5-72l4-28q-66 56-152 92.5t-198 36.5q-69 0-131.5-16t-110.5-57l27 70q8 22 21.5 45t13.5 47q0 23-24 23-38 0-128-50.5T1440 2381t-92-214q-11 24-48.5 41t-80.5 17q-8 0-12-2-64 132-181 208t-299 76q-209 0-353-112.5T193 2095l-16-5q-46-14-83-52t-37-96q0-59 31.5-106.5T178 1775l8-1v-26q0-210 150.5-340T714 1278q232 0 414 133.5t182 361.5q0 35-4.5 70t-13.5 69q6 2 10.5 4t11.5 2v-17q0-180 72.5-325.5t222-226.5 320.5-81q169 0 316 90.5t222.5 270.5 75.5 387q0 128-39.5 235zM663.5 467.5q27.5-58.5 67-106t98-76.5T963 256q59 0 120.5 13.5T1218 332l34 24q20 14 35.5 23.5t30.5 9.5q17 0 35.5-11t32.5-22l34-24q61-43 124.5-59.5T1655 256q86 0 149 28.5t102.5 75.5 67 103.5T2001 614q0 139-78.5 253.5t-247 226.5-238.5 179l-51 46q-6 5-27 30.5t-40 25.5q-20 0-42-26t-26-30l-48-46q-73-70-245.5-183.5t-247-228T636 615q0-89 27.5-147.5zM337 2217.5q65 103.5 175 151t215 47.5q141 0 233.5-53t152.5-156.5 60-228.5q-34-95-80.5-155t-72-103-52.5-43q-4 0-112 45.5T667 1768l-8-1q-12 0-22-5t-10-14q0-13 21-27.5t27-20.5l14-10q16-12 26-21.5t10-19.5q0-7-13-7-18 0-36 10l-36 21-170 94-82 49q-67 41-91.5 49T272 1981q0 133 65 236.5zm1949-28.5q3-55 3-110 0-54-3.5-107t-11.5-106q-26-13-50-31l-43-32q-72-54-102.5-97t-42.5-43q-8 0-18 17t-77 63.5-199 90.5l-172 58q3 94 22 189.5t48 188.5q61 51 132.5 76t149.5 25q120 0 212-48.5t152-133.5zM483 2047q-26-4-43-24t-17-49q0-32 21-54.5t49-22.5q30 0 49.5 21.5T562 1973q0 32-22 53.5t-48 21.5zm453 57q-27-3-44-24t-17-48q0-32 21-54.5t49-22.5q29 0 48 20.5t19 51.5q0 33-21 55t-49 22h-6zm1189-199q28 0 46.5 22t18.5 54q0 28-17.5 48t-43.5 20q-27 0-48-21.5t-21-52.5q0-26 16.5-45.5t41.5-24.5h7zm-396 51q26 0 46.5 21t20.5 53q0 29-18 49t-45 20-47-20.5-20-51.5q0-28 15.5-48t40.5-23h7zM575 2188.5q4-6.5 11-6.5 6 0 12 4l12 9q20 17 48 27.5t56 10.5q17 0 33-4.5t34-10.5l13-5q7-2 13-2 8 0 12 5.5t4 9.5q0 23-37 40.5t-71 17.5q-53 0-98.5-28.5T571 2200q0-5 4-11.5zm658-170.5q-2 31-8 60t-15 58l14 3q7 2 13 2 29 0 46.5-22.5t17.5-59.5q0-25-13.5-44t-53.5-26zm803 164q7-3 15-3 5 0 7 3.5t2 6.5q0 14-29 40.5t-78 26.5q-28 0-57.5-13t-29.5-31q0-13 18-13 17 0 30.5 4t29.5 4q22 0 41.5-5.5t37.5-13.5zM162.5 1991q16.5 20 49.5 20 0-8-1-16v-16q0-29 4.5-58.5t9.5-58.5q-45 0-62 25t-17 53q0 31 16.5 51zM630 2112q0-20 18-20 8 0 13 6l11 12q6 8 14.5 13.5t24.5 5.5q10 0 17-3.5t13-7.5l10-8q5-3 12-3 8 0 12 5t4 13q0 20-22.5 30.5T703 2166q-28 0-49.5-18.5T630 2112zm1269-4q5 0 18 9t27 9q22 0 31.5-15t20.5-15q5 0 10 4.5t5 10.5q0 15-19.5 32t-48.5 17q-26 0-42-11.5t-16-23.5q0-17 14-17z"},"children":[]}]};exports.u1F491=u1F491;var u1F492={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2170 1702q14 6 20.5 18t6.5 26v101q0 23-16 37t-33 14q-6 0-12-2l-11-4-52-26v554q0 21-14.5 35.5T2022 2470H573q-21 0-36-14.5t-15-35.5v-554l-52 26-10 4q-6 2-12 2-21 0-35-15.5t-14-35.5v-101q0-14 6.5-26t19.5-18l538-284v-53q0-5 2-11t2-11l256-558V470h-153V321h153V187h148v134h155v149h-155v315l256 558q2 4 3.5 10.5t1.5 11.5v53zm-721 668h84v-956h-470v956h88v-200q0-62 44.5-106t104.5-44q59 0 103 42t46 103v205zM275.5 433Q331 376 420 376q25 0 46 7.5t45 7.5q13 0 23-9.5t19-23.5l18-29q23-37 70.5-64.5T737 237q77 0 132.5 63T925 447q0 96-77.5 209.5T754 822t-32 52q-22 0-55-19.5t-149.5-41-175.5-57-90.5-85.5-31.5-99q0-82 55.5-139zM2307 1367.5q-73 68.5-218 68.5-34 0-68.5-2t-68.5-2h-30q-36 2-59 8.5t-42 6.5q-13 0-18-11t-5-24q0-8-1-14l-3-19q-2-9-8.5-37.5T1769 1283l-26-77q-14-38-23.5-76.5t-9.5-79.5q0-99 61-164.5t140-65.5q60 0 113 44.5t69 104 45.5 58 90 12.5 106 57 45.5 114q0 89-73 157.5zM1973 1816l-341-173v727h341v-554zM622 2370h341v-727l-341 173v554zM1807.5 314q44.5-44 93.5-44 37 0 73.5 24t53.5 61 36 37q16-2 29-4.5t28-2.5q58 0 99.5 38.5T2262 518q0 31-15 62t-38 53-62.5 36.5-112.5 23-102 21-42 12.5q-14 0-22.5-38T1811 569.5 1763 422q0-64 44.5-108zM640 1462q-41-15-70-21l-60-13q-113-24-151.5-73.5T320 1259q0-60 41-98.5t102-38.5q19 0 33.5 5t32.5 5q15 0 22.5-16t32-43.5 49.5-39 56-11.5q54 0 95 46t41 105q0 71-55.5 150.5t-66 116.5-24.5 37q-7 0-14-4l-13-7zm809 396q0 12-8.5 21t-19.5 9h-240q-14 0-22-9t-8-21v-170q0-63 45-106t104-43q61 0 105 43t44 102v174zm-239-29h61v-81h-61v81zm180-81h-60v81h60v-81zm-119-59v-86q-28 10-44.5 33.5T1210 1689h61zm119 0q0-29-17-52.5t-43-33.5v86h60z"},"children":[]}]};exports.u1F492=u1F492;var u1F493={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1460 2100l-30 30q-31 33-32 31t-29.5 33-54.5 35-53-33.5-92-94.5-143-115l-157-109q-169-116-246-199.5T503 1497t-43-219q0-177 120-312.5T874 830q65 0 124.5 12.5t114 41.5 113.5 71 89 42q22 0 39-11l95-63q72-47 142-70t163-23q170 0 291.5 133t121.5 314q0 173-95 316t-307.5 282-304.5 225zM337.5 1133.5Q333 1120 333 1108l-1-9q0-120 45-208t133-137.5T669 704q23 0 47 7t24 19q0 11-4.5 13.5t-89 39-157 110.5-96 153.5-29 90T351 1147q-9 0-13.5-13.5zm1483 885.5q-5.5-3-5.5-11 0-16 40.5-38t149-111 152.5-166l28-51q13-26 24.5-43t19.5-17q9 0 14.5 12.5t6.5 25.5v13q0 58-42.5 137.5t-121 140.5-153.5 86-99 25q-8 0-13.5-3zm445.5-39.5q-75 75.5-185 90.5h-5q-10 0-22.5-2.5t-12.5-8.5q0-9 47.5-34.5t107-88.5 84.5-119.5 44-56.5q2 0 9.5 4.5t7.5 30.5q0 109-75 184.5zM491 667q-113 45-155.5 135T275 892q-8 0-12.5-17.5T258 837q0-81 55.5-151.5T496 615q18 0 33 5t15 17q0 6-7 11t-16 8z"},"children":[]}]};exports.u1F493=u1F493;var u1F494={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1308 1837q-2 55-2 111l1 27v88q0 44-6 66.5t-15 22.5q-11 0-37.5-25.5T1213 2094l-73-55q-57-43-118.5-78T897 1893l-127-64q-277-141-392.5-311T262 1138q0-202 123-336t325-134q103 0 177 32t125.5 56 92.5 77l36 49q10 11 22.5 28t12.5 35q0 21-63.5 80.5T1049 1106q0 14 34.5 49.5t94.5 86.5l24 20q23 20 36.5 36t13.5 29q0 17-38.5 68.5t-56 73-17.5 41.5q0 33 48 77.5t85 75 37 64.5q0 55-2 110zm917-330.5Q2113 1673 1870.5 1815T1528 2042l-35 31q-18 16-31 25.5t-23 22.5l-19 21q-10 11-19.5 18.5t-19.5 7.5q-11 0-15-7.5t-4-17.5q0-16 8-35t35-131.5 40.5-152.5 13.5-71q0-50-40.5-109t-59.5-87-19-42q0-30 83.5-86t83.5-84q0-19-14-37l-26-32q-23-29-44.5-57.5T1381 1161l-23-30q-13-15-13-32 0-25 62.5-52.5t65.5-29.5l26-10q29-11 48-23.5t19-27.5q0-25-28-83.5t-28-74.5q0-9 4-11t57.5-38.5 135-71.5 182.5-35q195 0 321.5 140t126.5 342q0 216-112 382.5z"},"children":[]}]};exports.u1F494=u1F494;var u1F495={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1630.5 2047.5q-72.5 117.5-241 213t-402.5 161-409 65.5q-103 0-142-14.5t-39-48.5q0-20 23.5-53.5T444 2285q0-38-11-73.5T380.5 2099 322 1997.5t-45-80-43.5-114T218 1679q0-165 117.5-305T618 1234q90 0 181 44t152 120.5 75 81.5 28 5q5 0 10-1l9-2q22-7 96.5-32.5T1315 1424q163 0 275.5 107t112.5 267q0 132-72.5 249.5zm701-1024q-49.5 73.5-113 110T2111 1190t-187 54.5-262 34.5q-38 0-76-3.5t-75-12.5l-8-3q-29-6-48-18.5t-19-26.5q0-9 19-41.5t19-62.5q0-56-57-183.5T1360 709q0-126 87.5-223t210.5-97q69 0 141 44t105.5 113 68.5 69q33 0 63-7.5t62-7.5q118 0 200.5 75.5T2381 869q0 81-49.5 154.5z"},"children":[]}]};exports.u1F495=u1F495;var u1F496={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M657 813l-241 35 240 34-79 140 139-81 35 246 35-246 141 79-82-140 237-35-237-33 81-141-141 82-28-192q85 0 183.5 26.5T1141 683l54 38q35 24 57.5 38.5T1300 774q26 0 50.5-14.5T1407 722l53-38q90-65 192-94t181-29q51 0 97 5t88 19l-30 216-148-85 86 148-249 36 248 35-84 148 147-85 35 250h4l35-250 148 85-85-148 218-31 5 12q19 45 27.5 100t8.5 111q0 210-113 388.5T1893 1873l-140 96q-70 48-138 98t-129 107l-78 75q-10 9-43.5 48.5T1300 2337t-65.5-40.5-41.5-47.5l-39-38q-42-41-97.5-88T933 2028l-198-137q-218-151-315-257t-150.5-229-53.5-278q0-139 44.5-232.5t108-168 157.5-120T744 561l-28 192-139-81zm401 840l-121-68 70 119-202 31 202 28-69 120 120-70 30 203 28-201 121 68-70-120 204-30-204-29 69-121-120 70-30-200zm-417-97.5Q588 1489 534.5 1390T461 1214.5 438 1086t-31-52q-21 0-32 30t-11 95q0 97 44 201.5t134.5 200T673 1656q8 0 14.5-5.5t6.5-15.5q0-13-53-79.5zM2030 589q100 36 177 112.5T2337 893l-212-30 83-147-148 84zm112 837q-3-6-10-6-18 0-62 41.5t-66 61.5l-75 65q-64 55-117 108t-53 82q0 11 15 11 38 0 137.5-71t166.5-156.5 67-123.5q0-6-3-12zm-365-163l-71-40 41 71-122 18 122 18-41 71 71-41 19 122 16-122 73 41-42-73 124-16-124-19 42-71-73 41-17-122zm451 23q-5-10-16-10-19 0-35.5 28.5T2160 1354q0 15 6.5 21.5t14.5 6.5q23 0 37.5-25.5t14.5-49.5q0-11-5-21zm-1172-186l-71-40 41 71-122 18 122 18-41 71 71-41 19 122 17-122 72 41-42-73 125-16-125-19 42-71-72 41-18-122zm241 909l-71-39 41 71-122 18 122 17-41 72 71-41 19 122 17-122 72 41-42-73 125-16-125-20 42-71-72 41-18-122z"},"children":[]}]};exports.u1F496=u1F496;var u1F497={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2249.5 1592q-124.5 192-359 345.5T1540 2207l-4 6-31 33q-33 36-83 62.5t-108 30.5h-28q-56-4-109-31t-111-95l-63-62q-79-74-300.5-219t-349-339T226 1163q0-172 82-326t228-247 323-93q127 0 236 34.5T1300 632q91-63 203.5-99t211.5-36q281 0 470 193t189 475q0 235-124.5 427zm-147-816Q1949 615 1718 615q-82 0-164.5 24.5T1422 694l-42 27q-20 12-39 20t-41 8q-42 0-87-32.5t-142.5-67T888 615q-232 0-389 157t-157 388q0 190 93 350t348 333l132 90q64 45 122 91t103 97l15 14q40 49 73 67t67 19h12q34 0 66.5-18.5t71.5-66.5l46-46q12-12 53.5-49.5t97.5-75.5l146-102q211-147 301-253.5t128.5-210.5 38.5-237q0-225-153.5-386zm-31.5 687.5q-81 135.5-326 303.5l-155 107q-78 54-143 114l-62 59q-7 6-34 37t-51 31q-25 0-52.5-33t-93.5-94-142-115l-156-109h-1q-171-118-247-201.5T490 1383t-42-217q0-182 120.5-313.5T862 721q78 0 154.5 19t158.5 75l43 30q42 30 52.5 35t28.5 5q38 0 103.5-53t149-82 188.5-29q171 0 291.5 132t120.5 313q0 162-81 297.5zM1030 891q-47-33-130-33-126 0-207 79.5T612 1142q0 63 21.5 127t59.5 64q15 0 27.5-15.5T742 1279l9-21 27-70q21-55 61.5-82t107-42.5 98.5-45.5 32-59q0-35-47-68zm608-42q-60 13-106 44t-46 65q0 21 12 34.5t32 13.5q35 0 62.5-33.5t60.5-56 33-51.5q0-11-11-14t-20-3h-9z"},"children":[]}]};exports.u1F497=u1F497;var u1F498={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2166 1036q11 38 16.5 81t5.5 86q0 200-114.5 370T1713 1903.5 1356 2169l-72 70q-7 7-39 44t-60 37q-30 0-62-38t-38-43l-73-70q-104-100-360-272t-363.5-334.5T181 1198q0-205 142-363.5T667 676q105 0 205 31.5t185.5 95.5 101.5 67l26 2q36 0 78-33t117.5-80.5T1570 690l27 113q-52 10-103.5 29.5T1366 909l-40 28q-33 24-68.5 38.5T1185 990q-43 0-77.5-15t-86.5-53l-47-33q-81-57-155-76t-155-19q-152 0-258.5 122T299 1202t87 295 266.5 256.5 277 193T1185 2172q10-13 100-97t285-214 279.5-208.5 132-153.5 67.5-142q21-74 21-156 0-38-5-72.5t-13-60.5q59-5 82.5-16.5t31.5-15.5zm122-559q54 0 92.5 31.5T2419 592q0 27-11.5 51t-27.5 41l-17 17q-52 59-105 112t-117.5 115-163.5 62q-42 0-85-3.5t-91-3.5l-256 292q-3 3-30.5 35.5T1458 1343q-22 0-42.5-14t-20.5-38q0-22 14-40l290-365q-5-19-28-113.5T1648 631q0-29 13-62t28-55l181-250 18-23q17-22 43-38t57-16q41 0 71 26t40 74l30 147q24 7 35 19t17 24h107zm-548 163q4 35 13 73.5t17 76.5l270-332q-3-15-7-31t-6-33l-5-33q-6-38-14.5-61t-19.5-23q-6 0-13 6t-14 14l-24 31q-33 40-66 88t-82 110-49 114zm573.5-68q-13.5-4-25.5-4h-129l-278 325h1q21 0 44 2.5t51 2.5q46 0 68-8.5t81.5-72.5T2230 707.5t70.5-73T2327 592q0-16-13.5-20z"},"children":[]}]};exports.u1F498=u1F498;var u1F499={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2309.5 1517Q2186 1704 1925 1880l-141 95q-133 90-226.5 170.5t-144.5 146-116 65.5q-59 0-154-113.5T751 1936t-440.5-392.5T167 1098q0-246 164.5-430.5T738 483q109 0 217 28t252 129l22 16q18 15 39.5 28t31.5 13 26.5-9.5T1371 657l22-17q86-61 142-87.5t138-48 179-21.5q243 0 412 180t169 435q0 232-123.5 419zm20.5-348q2-15 2-37.5t1-74.5H267v21l-1 21q0 19 1 36t3 34h2060zM315 868q-14 28-24 53.5T277 980h2048q-8-32-17-59t-23-53H315zm1967 492q13-29 21.5-57t15.5-56H282q6 28 15.5 56t20.5 57h1964zm-120 189q21-26 43-55t36-58H359q17 30 37 58t42 55h1724zm-206 189q72-54 133-112H511q31 29 64.5 57t68.5 55h1312zm-271 189q19-13 73.5-50t90.5-62H752q39 29 80 56t83 56h770zM1511 679q-30 18-88.5 62t-97.5 50h916q-22-33-46-61t-52-51h-632zm-1054 0q-52 45-98 112h908q-47-18-90.5-50t-87.5-62H457zm988 1438q31-29 65-57t68-55h-556q35 27 69 54t65 58h289zm-145 141q11-4 26.5-20t27.5-31l10-13h-128q3 3 26 31.5t38 32.5zm392-1656h309q-32-11-73-15.5t-84-4.5q-41 0-75.5 4.5T1692 602zm-1091 0h307q-40-11-81-15.5t-85-4.5q-38 0-73.5 4.5T601 602z"},"children":[]}]};exports.u1F499=u1F499;var u1F49A={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2295 1537.5q-138 194.5-398.5 365T1519 2180q-18 20-38 38l-40 36q-3 3-47 51t-91 52h-6q-52-3-100.5-59.5T1075 2173t-261-197l-140-96q-261-179-384-366.5T167 1098q0-243 165.5-429T738 483q140 0 253.5 39t202 107 106.5 68 103-65 201-107 254-42q244 0 409.5 182.5T2433 1098q0 245-138 439.5zM1662 1942q23-17 47-33l47-31L516 638q-25 14-46.5 31T427 706zm-151 116l44-36q21-18 44-35L377 765q-34 44-61 99zm311-224l93-66L727 582q-36 0-69.5 5.5T592 603zm-388 291l18-16L285 942q-8 32-12.5 68t-6.5 72l1105 1104q2 0 8-6l27-26q5-5 11-12t17-17zm543-404q23-17 44.5-34.5t41.5-36.5l-964-966q-59-39-124-62t-131-35zm142-126q20-20 38-41t35-44l-770-770q-3 2-36 26t-72 24zm117-150q17-26 30-52t25-52l-705-705q-28 13-52 27.5t-48 31.5zm-936 813q7-3 19-15L272 1197q14 78 19.5 98.5T322 1364t63.5 101 137 152T693 1775t217.5 155 203.5 148 92 86l37 37 19 22q9 11 18.5 21t19.5 14zm1025-1038q7-48 9-103l-533-534q-34 2-67.5 8.5T1666 608l651 649zm2-219q-4-27-9-51-6-23-15-44-130-299-393-323z"},"children":[]}]};exports.u1F49A=u1F49A;var u1F49B={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2313 1512q-120 185-388 368l-141 95q-71 48-138 98t-127 107l-78 76q-6 5-47.5 52t-90.5 49h-6q-57-3-113-73t-163-156-264.5-190T490 1739t-180.5-198-107-206.5T167 1098q0-158 76.5-302.5t208-228.5T738 483q109 0 217 28t252 129l23 18q20 16 40.5 28t29.5 12q18 0 107.5-68T1611 522.5t247-39.5q244 0 409.5 183t165.5 432q0 229-120 414zm-412-929q-8 15-22.5 24t-31.5 9q-19 0-33.5-9t-21.5-23q-182 18-315.5 119T1300 804q-17 0-35-8t-31-18l-11-7q-34-22-141-96t-283-91q-8 14-23 23t-32 9q-18 0-32.5-9T689 584q-102 10-181.5 59T374 768t-81 148.5-27 182.5q0 201 106 364.5t352.5 333T1047 2023q0-27 18.5-46t45.5-19 45.5 19 18.5 46q0 23-15.5 40.5T1121 2086q14 10 54 49.5t58 54.5q5-20 22-34t41-14q25 0 43 17t20 41q30-30 61.5-59t57.5-55q-26 0-44.5-18.5T1415 2023q0-27 18.5-46t44.5-19q27 0 45.5 19t18.5 46l-1 11q103-83 330-235.5t344.5-319T2333 1105q0-141-36.5-216.5t-85-140-127.5-111-183-54.5zm-561 566q-19 19-45 19-27 0-46-19t-19-45q0-27 19-46t47-19q27 0 45 19t18 46q0 26-19 45zm-183.5 551.5Q1138 1719 1111 1719t-45.5-18.5-18.5-44.5q0-27 18.5-46t45.5-19 45.5 19 18.5 46q0 26-18.5 44.5zM1707 1516q-19 19-45 19t-44.5-19-18.5-45q0-27 18.5-46t44.5-19 45 19 19 46q0 26-19 45zm-550.5-183q-18.5 19-45.5 19t-45.5-19-18.5-46q0-26 18.5-44.5t45.5-18.5 45.5 18.5 18.5 44.5q0 27-18.5 46zm0-367.5Q1138 984 1111 984t-45.5-18.5T1047 920q0-26 18.5-44.5T1111 857t45.5 18.5T1175 920q0 27-18.5 45.5zm-185 550.5q-18.5 19-44.5 19t-45-19-19-45q0-27 19-46t45-19 44.5 19 18.5 46q0 26-18.5 45zM1707 782.5q-19 18.5-45 18.5t-44.5-18.5T1599 738q0-27 18.5-46t44.5-19 45 19 19 46q0 26-19 44.5zm-183.5 918Q1505 1719 1478 1719q-26 0-44.5-18.5T1415 1656q0-27 18.5-46t44.5-19q27 0 45.5 19t18.5 46q0 26-18.5 44.5zm368 0Q1873 1719 1847 1719q-27 0-46-18.5t-19-44.5q0-27 19-46t46-19q26 0 44.5 19t18.5 46q0 26-18.5 44.5zM1707 1149q-19 19-45 19t-44.5-19-18.5-45 18.5-44.5 44.5-18.5 45 18.5 19 44.5-19 45zm-183.5-183.5Q1505 984 1478 984q-26 0-44.5-18.5T1415 920q0-26 18.5-44.5T1478 857q27 0 45.5 18.5T1542 920q0 27-18.5 45.5zm-735 735Q770 1719 744 1719q-27 0-46-18.5t-19-44.5q0-27 19-46t46-19q26 0 44.5 19t18.5 46q0 26-18.5 44.5zM421 965.5Q402 984 375 984q-26 0-44.5-18.5T312 920q0-26 18.5-44.5T375 857q27 0 46 18.5t19 44.5q0 27-19 45.5zm0 367.5q-19 19-46 19-26 0-44.5-19t-18.5-46q0-26 18.5-44.5T375 1224q27 0 46 18.5t19 44.5q0 27-19 46zm1102.5 0q-18.5 19-45.5 19-26 0-44.5-19t-18.5-46q0-26 18.5-44.5t44.5-18.5q27 0 45.5 18.5t18.5 44.5q0 27-18.5 46zm-552-550.5Q953 801 927 801t-45-18.5-19-44.5q0-27 19-46t45-19 44.5 19 18.5 46q0 26-18.5 44.5zm-183 183Q770 984 744 984q-27 0-46-18.5T679 920q0-26 19-44.5t46-18.5q26 0 44.5 18.5T807 920q0 27-18.5 45.5zm1470 0Q2240 984 2214 984q-27 0-46-18.5t-19-45.5q0-26 19-44.5t46-18.5q26 0 44.5 18.5T2277 920q0 27-18.5 45.5zm-367 0Q1873 984 1847 984q-27 0-46-18.5t-19-45.5q0-26 19-44.5t46-18.5q26 0 44.5 18.5T1910 920q0 27-18.5 45.5zm367 367.5q-18.5 19-44.5 19-27 0-46-19t-19-46q0-26 19-44.5t46-18.5q26 0 44.5 18.5t18.5 44.5q0 27-18.5 46zm-1470 0q-18.5 19-44.5 19-27 0-46-19t-19-46q0-26 19-44.5t46-18.5q26 0 44.5 18.5T807 1287q0 27-18.5 46zm1103 0q-18.5 19-44.5 19-27 0-46-19t-19-46q0-26 19-44.5t46-18.5q26 0 44.5 18.5t18.5 44.5q0 27-18.5 46zm-920-184q-18.5 19-44.5 19t-45-19-19-45 19-44.5 45-18.5 44.5 18.5T990 1104t-18.5 45zm735.5 733.5q-19 18.5-45 18.5t-44.5-18.5-18.5-44.5q0-27 18.5-45t44.5-18 45 18 19 45q0 26-19 44.5zm-735.5 0Q953 1901 927 1901t-45-18.5-19-44.5q0-27 19-45t45-18 44.5 18 18.5 45q0 26-18.5 44.5zM1340 1516q-19 19-45 19-27 0-46-19t-19-45q0-27 19-46t47-19q27 0 45 19t18 46q0 26-19 45zm0 369q-19 19-45 19-27 0-46-19t-19-46q0-26 19-45t47-19q27 0 45 19t18 45q0 27-19 46zm734-1102.5q-19 18.5-45 18.5t-44.5-18.5T1966 738q0-27 18.5-46t44.5-19 45 19 19 46q0 26-19 44.5zm0 366.5q-19 19-45 19t-44.5-19-18.5-45 18.5-44.5 44.5-18.5 45 18.5 19 44.5-19 45zm0 366q-19 19-45 19t-44.5-19-18.5-46q0-26 18.5-44.5t44.5-18.5 45 18.5 19 44.5q0 27-19 46zm-1469.5.5Q586 1534 560 1534t-45-18.5-19-44.5q0-27 19-46t45-19 44.5 19 18.5 46q0 26-18.5 44.5zm0-735Q586 799 560 799t-45-18.5-19-45.5q0-26 19-44.5t45-18.5 44.5 18.5T623 735q0 27-18.5 45.5zm0 367.5q-18.5 19-44.5 19t-45-19-19-46q0-26 19-44.5t45-18.5 44.5 18.5T623 1102q0 27-18.5 46z"},"children":[]}]};exports.u1F49B=u1F49B;var u1F49C={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2307 1520q-126 189-379 360l-141 95q-185 126-272.5 210t-125 126-86.5 46h-6q-52-3-100.5-59.5t-125-127T814 1976l-140-96q-261-179-384-366.5T167 1098q0-147 48-251t119-186 175-130 239-48q103 0 213.5 29T1207 639l51 36q13 10 24.5 16.5t17.5 6.5q8 0 14-4l11-7q39-23 113.5-78.5T1624 518t234-35q132 0 235.5 49t174 131 118 185 47.5 250q0 233-126 422zM960 1958L2192 725q-20-21-41-39.5t-44-32.5L867 1893zm-159-109L2037 613q-30-11-61.5-19t-65.5-11L708 1784zm1495-959q-14-28-27.5-53.5T2240 787L1023 2005q22 17 44 35l43 35zm37 205q0-31-2.5-62t-7.5-60L1167 2127q19 14 41.5 36.5t39.5 42.5l1085-1086v-25zM557 1668q22 17 42.5 35t44.5 35L1799 583q-52 4-107 16t-104 37zm-132-136q17 22 36.5 42.5T501 1615l824-824q-7 0-12 1.5t-13 1.5q-32 0-64-18t-36-20zm712-822q-24-17-47.5-32t-49.5-29l-718 718q12 24 25.5 49.5T378 1468zm-175-93q-31-11-63.5-18T834 587l-566 566q2 37 7.5 69t16.5 65zm1357 628l-848 848q63-57 130-107t136-97l135-92q220-151 319.5-285t127.5-267zM268 1043l462-463q-123 5-216 59L352 801q-32 51-55 105.5T268 1043z"},"children":[]}]};exports.u1F49C=u1F49C;var u1F49D={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2282 1503q-121 182-376 354l-140 95q-171 117-236 178.5t-69 64.5l-40 38q-8 6-45.5 49t-74.5 45h-2q-37-2-72.5-42.5t-121-122.5T835 1953l-140-95q-256-176-377-357t-121-404q0-236 159-410.5T748 512q91 0 173 21t131 44.5 137 85.5l26 19q24 20 45 30.5t40 10.5l20-1q14-2 99.5-67.5t198.5-104 240-38.5q227 0 386 172t159 413q0 224-121 406zm-65-40q12-14 29.5-40.5t25.5-37.5 8-28q-13 13-33 20.5t-40 7.5q-16 0-33-5-10 0-10 11 0 18 16.5 51.5t20.5 33.5q5 0 9-4zm77.5-204.5q38.5-43.5 38.5-98.5 0-61-56-99t-136-38q-14 0-30 6.5t-16 26.5q0 15 34.5 32t34.5 36q0 13-8 17.5t-19 4.5q-14 0-25.5-3.5t-20.5-7.5l-20-8q-10-3-22-3-10 0-25.5 11t-15.5 28q0 5 2 6 17 50 80.5 91.5T2200 1302q56 0 94.5-43.5zm-606-457q6.5-6.5 17.5-6.5 15 0 32.5 23t35.5 23q16 0 25-14t9-27q0-36-52.5-102.5T1647 631t-98 45-42 98q0 64 74.5 124t114.5 60q20 0 31-13.5t11-31.5q0-24-28-48t-28-46q0-11 6.5-17.5zm-334 354q-3.5 17.5-3.5 31.5 0 16 5 26t21 10q30 0 75-25.5t99-49.5l74-32q14-6 50.5-22.5t36.5-22.5q0-13-63.5-42t-88-52.5T1495 953q-30 0-61 9l-56 16-26 8q-29 9-59.5 27.5T1262 1050q0 20 26 25t48 16.5 22 32.5q0 14-3.5 31.5zm50-325Q1432 858 1442 858q6 0 6-5 0-14-4-26t-4-26l1-18q0-10 1-19 2-3 4-8.5t2-10.5q0-3-4-3-15 0-41 21.5t-26 31.5q0 8 27.5 35.5zm412.5 258q35 31.5 75 31.5 50 0 103-68.5t53-79.5q0-14-19.5-43.5t-58.5-54-67-24.5q-12 0-21 10l-9 8-48 56q-21 23-32 51.5t-11 47.5q0 34 35 65.5zm57 483q5 10.5 19 10.5 9 0 20-5l44-22q10-5 18-5 25 0 44.5 33.5t36.5 33.5q16 0 26-25t10-79v-45q0-110-52-141.5t-84-70.5-48-39q-5 0-9 24.5t-8 73.5l-7 79q-4 47-9.5 77t-5.5 63q0 27 5 37.5z"},"children":[]}]};exports.u1F49D=u1F49D;var u1F49E={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M611.5 650.5Q689 577 816 577q27 0 52 5t53 7q36 0 70-70t104.5-118.5T1238 352q71 0 141 45.5t99.5 116.5 29.5 138q0 121-83.5 268T1316 1133l-16 48q0 2-9 32t-29 30q-14 0-28-7t-24-10l-24-8q-67-23-271-48.5t-292.5-125T534 842q0-118 77.5-191.5zm1698.5 776q-85 66.5-203 66.5-57 0-141.5-13.5T1822 1466q-22 0-41 2t-43 2q-17 0-22-10t-5-26v-16q0-23-4-59.5t-11-69.5l-19-81q-10-40-17.5-81t-7.5-82q0-120 71.5-198t168.5-78q79 0 138 63t69 123.5 24.5 70.5 79.5 16 128.5 65 63.5 140q0 113-85 179.5zm-1413.5 488Q870 1918 868 1918l-39 8q-47 11-92 29l-90 35q-45 18-90.5 31t-94.5 13q-111 0-184-69.5T205 1807q0-59 41-116t109-85 71.5-38 3.5-35v-33q0-37 9.5-74t31.5-70l6-8q29-44 69-64.5t91-20.5q50 0 94.5 20t85 60.5 62 114.5 21.5 207.5 11.5 163T923 1889q0 22-26.5 25.5zm626.5 277q-11 60.5-11 119.5 0 17 2 33.5t2 36.5q0 14-8 18t-19 4h-15q-11 0-20.5 1.5t-20.5 1.5q-35 3-69 11l-68 16q-34 9-68.5 15.5t-69.5 6.5q-102 0-167-60t-65-141q0-57 42-105l6-5q41-50 104-61t69-38l8-42q7-44 18-69t30-46l5-6q24-28 54-40.5t64-12.5q86 0 147 66.5t61 175.5q0 60-11 120.5zm732-253.5q41 43 41 98 0 82-60 132t-150 50q-29 0-57-5l-113-19q-29-5-57-6l-51 1q-24 0-24-23v-17q0-49-16-133.5t-16-133.5q0-89 53.5-148.5T1932 1674q60 0 101 45.5t48 86 13 56.5 63 25.5 91 45.5z"},"children":[]}]};exports.u1F49E=u1F49E;var u1F49F={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1051.5 750.5q86.5 30.5 150.5 83t101 52.5q34 0 105-55.5t156-83 180-27.5q171 0 290.5 131.5T2154 1166q0 122-42 218t-117 178.5-249 203.5l-155 107q-78 54-142 115l-61 59-45 47q-41 44-82-.5t-43-46.5l-62-59q-64-61-141-115l-155-109q-177-122-251.5-204t-116-177.5T451 1166q0-184 118-315t295-131q101 0 187.5 30.5zM823 1856l-53 93H663l-53-93 53-92h107zM545 725l-52-92 52-93h107l53 93-53 92H545zm1392 1039l53 92-53 93h-107l-52-93 52-92h107zm11-1039l-53-92 53-93h107l52 93-52 92h-107zm171 886l54 92-54 93h-107l-52-93 52-92h107zm-1479 92l-52 93H481l-54-93 54-92h107zm1603-778h106l54 91-54 92h-106l-54-92zm-681 1135l53 92-53 92h-107l-54-92 54-92h107zm845-797l-53 92h-106l-53-92 48-92h111zm-692-608l-53-92 53-92h107l53 92-53 92h-107zm-696 53l-53-92 53-91h107l52 91-52 92h-107zm-240-53l-53-92 53-92h107l52 92-52 92H779zm574 1520l54 92-54 92h-105l-53-92 53-92h105zm922-770l54 92-54 92h-105l-53-92 53-92h105zM357 882l-53-92 53-92h106l53 92-53 92H357zm1118-174l-53-92 53-91h106l53 91-53 92h-106zm-459 1282l-53 92H857l-53-92 53-91h106zm-585-401H326l-54-92 54-92h105l54 92zm-180-481l-52-92 52-91h106l52 91-52 92H251zm101 247H246l-53-92 53-92h106l53 92zm896-566l-53-92 53-92h105l54 92-54 92h-105zm-51 1363l-52 92h-107l-52-92 52-92h107zm887-1362l53-92h106l53 92-53 92h-106zm-341 1109l53 91-53 92h-106l-53-92 53-91h106z"},"children":[]}]};exports.u1F49F=u1F49F;var u1F4A0={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2287.5 1518Q2186 1635 2021 1682q52 66 87.5 141t35.5 161q0 180-130.5 318.5T1700 2441q-125 0-228-62t-172-173q-73 115-177 175t-223 60q-176 0-310-134t-134-312q0-90 33.5-167t88.5-146q-178-46-272.5-166.5T211 1248q0-178 129.5-317T649 792q53 0 104 11t100 31q0-10-1-31 0-213 130-344t318-131q186 0 316.5 131.5T1747 803q0 21-2 31 50-20 101-31t103-11q179 0 309.5 135.5T2389 1248q0 153-101.5 270zm-806-250.5Q1405 1191 1300 1191q-106 0-182 75t-76 182q0 106 76 181t182 75q101 0 179.5-76t78.5-178q0-106-76.5-182.5z"},"children":[]}]};exports.u1F4A0=u1F4A0;var u1F4A1={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2273 2080q-9 28-9 66 0 76-34.5 103.5T2163 2279t-47 9l-24 12q-11 6-25 11t-32 5q-28 0-52.5-13.5T1943 2289q-11 0-22.5 1.5t-22.5 1.5q-18 0-31-8.5t-24-19.5l-20-19q-10-8-20-8-39 0-53.5-3.5t-38-20-23.5-24.5q-27 6-55 6-20 0-39-2.5t-38-8.5l-112-35q-201-60-396-89t-342-117.5-248.5-265T356 1292q0-211 104.5-392T748 613.5 1140 508q117 0 224.5 32.5T1559 630t151 126 112 172 82.5 235 62 173.5 84.5 151 57 213.5l-1 21q27 15 40 41t15 58v8q0 4-1 9 0 20 29.5 34t29.5 47 31 52 31 61q0 20-9 48zm-485-75.5q81-72.5 142-152.5t61-151q0-97-83-230.5t-104-225-68-218-132-213T1396.5 677 1140 626q-181 0-333.5 89T564 958.5 474 1292q0 118 39.5 228t117 203 185 146 299 84 339 77.5T1633 2077q74 0 155-72.5zM1130 2332q7 24 14.5 55.5t7.5 52.5q0 15-17.5 22t-41.5 7l-27 1q-38 0-56-7t-18-30q0-12 7-47t20-68l33-89q4-12 9-19t21-7q13 0 24 28.5t17 63.5zm1194-1258q3 14 4 26.5t1 26.5q0 25-4.5 41.5T2303 1185q-5 0-10-1t-9-1l-108-8q-88-6-100.5-13t-12.5-21q0-4 2-7 2-13 71.5-50.5T2256 1031l16-4q7 0 15-1 12 0 19.5 7.5t13.5 24.5zm-573.5-453q-7.5-8-7.5-17 0-46 11.5-102t19-99 34.5-43q18 0 70 27t52 51q0 12-74 101.5t-89 89.5q-9 0-16.5-8zM767 2151q-5 54-25 124t-23 90.5-23 20.5q-23 0-75-23t-52-49q0-21 36-58t47-49l22-24q17-20 37.5-38t29.5-18q8 0 17 6.5t9 17.5zm-244.5-188.5q7.5 7.5 7.5 16.5 0 16-39.5 58t-41.5 44l-23 25q-21 24-39.5 41t-26.5 17q-18 0-54-45.5t-36-69.5 52.5-41.5 113.5-35 71-17.5q8 0 15.5 7.5zM1971 841q-12 0-19.5-8.5T1944 815q0-7 14-27t34-45l21-25q4-5 39.5-50t58.5-45q16 0 50 44.5t34 76.5q0 14-10 17.5t-90 35.5-124 44z"},"children":[]}]};exports.u1F4A1=u1F4A1;var u1F4A2={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1041 549.5q12-20.5 44-20.5 54 0 119.5 79.5t152 137.5 201.5 58q36 0 71-4.5t70-11.5l70-14q10-2 53-9.5t56-7.5q36 0 55.5 16t19.5 41q0 65-152 141t-300 76q-187 0-329.5-161T1029 594q0-24 12-44.5zM585 1629l-49 22q-26 12-58 12-23 0-43-13t-20-39q0-48 87-133t142.5-174 55.5-192q0-79-28-174t-28-120q0-32 17-55t40-23q39 0 91 58t93.5 174.5T927 1173q0 134-96 257.5T585 1629zm1495.5-234.5q-104.5 91.5-157.5 177t-53 195.5q0 68 20.5 152t20.5 111q0 31-17 56.5t-43 25.5q-65 0-134-137.5t-69-292.5q0-136 106-260.5t261-190.5l47-18q23-9 55-9 31 0 49.5 15.5t18.5 37.5q0 46-104.5 137.5zm-579 885Q1489 2301 1455 2301q-43 0-81.5-48T1273 2138.5 1138.5 2036 967 2000q-58 0-141 13.5T685 2027q-42 0-62-14t-20-42q0-61 139-127.5t291-66.5q209 0 345 169t136 284q0 28-12.5 49.5z"},"children":[]}]};exports.u1F4A2=u1F4A2;var u1F4A3={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2176 2054.5q-106 179.5-285.5 280T1507 2435q-206 0-386-101.5t-285-279T731 1669q0-207 105-384.5t285-279T1507 904q26 0 56 4t52 4q28 0 60-30.5t73.5-57T1831 798q23 0 47.5 5.5T1926 817q25-36 38-77.5t13-83.5q0-116-84.5-197T1685 378q-91 0-200 47t-214 132.5T1050.5 695 839 747q-13 0-20-1l-38-5q-51-6-81-21t-30-40 15-35 28-10q11 0 50.5 9.5T848 654q74 0 155-38.5t206.5-141T1454 329t228-43q171 0 283.5 109T2078 661q0 55-15.5 106.5T2019 867q54 40 79.5 83.5T2124 1053q0 23-5 49t-5 48q0 45 36 92.5t84 164 48 262.5q0 206-106 385.5zM1560 1169l46-5q84-10 118.5-23t34.5-31q0-47-70.5-72t-181.5-25q-176 0-332 90.5T930 1345t-89 322q0 106 43 197.5t86 91.5q27 0 41.5-27t14.5-61q0-17-1-30.5t-1-25.5q0-167 81.5-314.5T1319 1265t241-96zM596 690q-19 19-46 19-26 0-45-19t-19-45q0-27 19-46t45-19q27 0 46 19t19 46q0 26-19 45zm-42.5 92q9.5 30 9.5 85 0 50-15 77t-42 27-42.5-20-15.5-49q0-40 28-95t52-55q16 0 25.5 30zm94.5 82.5Q617 814 617 762q0-16 6-23t14-7q22 0 73 48.5t51 87.5q0 20-13 33.5T713 915q-34 0-65-50.5zM456 708q0 25-47 77.5T326 838q-20 0-33-14.5T280 789q0-36 54-67.5t96-31.5q26 0 26 18zm159-167q0-48 39.5-103.5T730 382q17 0 35 11.5t18 29.5q0 50-60.5 96T635 565q-20 0-20-24zm-339.5 65Q238 585 238 553q0-23 18.5-38.5T296 499q43 0 97.5 38.5T448 598q0 14-20.5 21.5T376 627q-63 0-100.5-21zM541 514q-5 22-21 22-19 0-53-51t-34-88q0-24 13.5-43.5T486 334q23 0 41.5 30T546 467q0 25-5 47z"},"children":[]}]};exports.u1F4A3=u1F4A3;var u1F4A4={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2287 617l4 17q0 8 1 16 0 19-7 36.5t-29.5 39-58 40.5-69.5 34.5-45 23.5-31 18l-38 18q-162 78-217.5 99t-55.5 32q0 9 32 22.5t89.5 40.5 100.5 63 43 79q0 44-43.5 112t-106.5 68q-45 0-111.5-36.5T1665 1296l-152-76-97-48q-141-67-183-105t-42-76q0-74 116-134.5t196-98.5l160-74q81-37 81-51 0-11-81-50t-138.5-73-57.5-88q0-45 45.5-111.5T1618 244q49 0 126 44t202 102 221 112l37 21q30 18 51 41t32 53zm-664.5 1038q-35.5 25-78 41.5t-60 27-47.5 21.5q-27 10-53 21l-86 33q-12 5-40 17t-28 17q0 7 7.5 9t68.5 36 88.5 61 27.5 55q0 33-34.5 82t-80.5 49q-37 0-93.5-35.5t-124-70.5-100.5-53.5-102-63.5-69-88q0-44 58-79.5t90.5-48.5 98.5-40.5 120.5-47.5 61.5-32q0-5-15-13l-37-20q-86-45-117-75.5t-31-59.5q0-33 35.5-82.5t79.5-49.5q35 0 88 32t58 35l111 63q30 16 134.5 73t104.5 123q0 38-35.5 63zM874 2203q-44 26-85 50.5t-89 46.5l-36 18q-8 4-27 14.5t-19 15.5 28.5 16 77.5 36.5 49 58.5q0 27-24.5 64.5T689 2561q-32 0-95.5-33t-175-76.5T307 2362q0-23 15.5-39.5T355 2295l8-5q42-32 94-59l107-54 11-5q8-5 20.5-11t12.5-13q0-2-80-36.5t-80-76.5 27-73 55-31q27 0 54 14t53 25l88 39q12 5 102.5 42t90.5 92q0 34-44 60z"},"children":[]}]};exports.u1F4A4=u1F4A4;var u1F4A5={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2413.5 1665q-27.5 8-65.5 10l-38 2-142 5q-17 0-91.5 12.5T2002 1746q0 34 30 74t83 85l50 43 126 116q10 10 65 57.5t55 74.5q0 14-12.5 20t-29.5 6q-45 0-142-38t-213-76.5-153.5-52.5-68.5-14q-45 0-72.5 40.5T1680 2180l-14 65q0 3-5.5 57.5T1624 2357t-94.5-71.5T1418 2157t-89-57q-66 0-115.5 102.5T1138 2358t-58 120-74 67q-51 0-59.5-150T933 2138t-90-107q-40 0-105.5 22t-237 65-203 52-52.5 9q-15 0-25-6t-10-20q0-33 59.5-90.5T333 2001l94-96q46-47 91-97l33-35q34-37 54-71.5t20-63.5q0-42-51-56t-108.5-16-114-17.5T295 1501q0-17 19.5-35t44.5-31l23-12q21-12 57-28t66.5-44 30.5-66q0-37-28-81t-81-97l-60-60q-71-70-140-149.5T158 785q0-18 14-28.5t31-10.5q7 0 11 2l165 58q104 38 147.5 51.5t67.5 25 51 11.5q16 0 22-8t6-20q0-14-2-29.5t-2-29.5q0-23 6-40.5t24-17.5 76.5 41 80.5 41q23 0 32-19t9-42q0-45-17-106t-27-148l-12-92q0-2-7.5-37.5T826 326q0-19 6-33.5t22-14.5q20 0 37 17l30 32 114 141q78 96 143 175t118 79q58 0 119.5-85.5T1510 470t79-81q40 0 40 64 0 35-3.5 69.5T1622 593q0 65 11.5 94t36.5 29q29 0 64-30.5t188.5-163 186-154.5 52.5-22q17 0 24.5 10.5t7.5 21.5q0 22-23.5 72.5T2123 546l-56 109q-57 110-88 182.5t-31 88.5q0 35 87.5 40t113.5 5l16-1q32 0 46.5 9t14.5 28q0 26-30 44.5t-33 20.5l-26 19q-27 19-46.5 42.5T2071 1178q0 46 71.5 54.5t160 32 88.5 43.5q0 26-80.5 53.5t-149.5 57-69 55.5q0 37 85.5 56.5T2352 1580t89 60q0 17-27.5 25zM1777 1405.5q-74-16.5-115-51t-41-87.5q0-35 22.5-88t22.5-74q0-19-15-19-8 0-15.5 4t-14.5 10l-15 12q-20 17-79.5 47t-107.5 30q-52 0-90.5-38t-59.5-104-51-66q-34 0-48.5 127T1044 1235q-29 0-72-11.5t-76-11.5q-16 0-28.5 6t-12.5 17q0 15 18.5 36.5T916 1314l18 15q58 47 76 77t18 60q0 53-52.5 120.5T919 1660l-9 12q-11 13-19.5 27.5T882 1723q0 13 11.5 19t27.5 6q20 0 41-7l98-28q31-8 62-8 51 0 76.5 26t40.5 89 45 63q25 0 52-51.5t65.5-89 93.5-37.5q57 0 134 45.5t111 45.5q8 0 13.5-5t5.5-16q0-14-30-44t-66.5-74.5-36.5-84.5q0-37 40-64.5t112.5-31 72.5-27.5q0-27-74-43.5z"},"children":[]}]};exports.u1F4A5=u1F4A5;var u1F4A6={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M956 1494q-49 28-177 114t-213 86q-62 0-98.5-42.5T431 1542q0-77 76.5-285T688 885l38-63q143-228 325.5-349T1440 352q223 0 365.5 125.5T1948 807q0 88-30.5 167t-93.5 148-152.5 118-285.5 100l-85 22q-101 27-185 59t-128 55zm1099.5 805Q1942 2404 1779 2404q-68 0-128-14t-114-30l-105-29q-76-20-147-31.5t-141-11.5q-30 0-70 4t-82 4q-70 0-110.5-29.5T841 2181q0-83 84-167t162.5-142.5T1251 1771l22-11q100-55 206-87t206-32q201 0 342.5 112t141.5 285q0 156-113.5 261zM744 1377q23 0 63.5-17.5T876 1326l27-16q129-72 393-134t367-150.5T1766 804q0-119-87.5-195T1441 533q-178 0-340 128t-276.5 354T710 1342q0 35 34 35zm1164 492q-102-70-223-70-97 0-205 39t-212 110l-45 31q-43 30-76 65t-33 60q0 16 17 22.5t53 6.5l37-1q107 0 290.5 58t267.5 58q100 0 165.5-60t65.5-147q0-102-102-172z"},"children":[]}]};exports.u1F4A6=u1F4A6;var u1F4A7={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1750.5 2288Q1591 2451 1318 2451q-161 0-321.5-75.5t-233.5-216-73-343.5q0-208 105-437.5t179-444 115.5-398T1241 353q70 0 142.5 112t183 385 161 380.5T1844 1511t66 342q0 272-159.5 435zM971 2124q133 119 339 119 182 0 315-123t133-299q0-174-126.5-447t-214-481.5T1266 684q-26 0-48 28.5t-57 131-83 240-120 292-96 252.5-24 188q0 189 133 308z"},"children":[]}]};exports.u1F4A7=u1F4A7;var u1F4A8={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2368 1636q24 37 24 132 0 78-29.5 150t-87 123-134.5 70-112.5 90.5-90.5 125-130.5 77.5-153.5 24q-138 0-213.5-55.5T1311 2317q-35 0-69 9t-69 9q-96 0-189-36t-133.5-123-40.5-175q0-33 6.5-64.5T837 1873q-160-20-372.5-50t-248-32.5T181 1758q0-17 27.5-22t95.5-5q77 0 317.5 12t411 22 170.5 77q0 36-29.5 48.5T1099 1903q-29 0-63.5-3.5T968 1889l-32-5q-8 21-15 42t-7 45q0 91 91.5 151.5T1207 2183q62 0 102.5-15t55.5-15q25 0 47.5 33.5t79 54.5 132.5 21q120 0 213-63.5t105-148.5 54-85q11 0 21.5 3t19.5 3q82 0 141-64t59-146q0-48-16.5-90t-39-68.5-22.5-55.5q0-36 38-55t78-84.5 40-154.5q0-80-36.5-153.5t-100-116T1971 914l-29-6q-21-4-32-14t-11-29q0-17 9-31.5t9-23.5q0-41-34.5-113T1761 576.5 1562 528q-87 0-155 27.5T1301 633t-43.5 112-36.5 62q-26 0-46.5-4.5T1130 798q-111 0-182 66t-71 161q0 29 7 58.5t23 58.5q30-2 59.5-3t59.5-1q39 0 84.5 19.5t45.5 51.5q0 27-33 39.5t-82 14.5l-48 2q-202 11-403 24.5T188 1335h-6q-12 0-22.5-7t-10.5-18q0-27 79-49t142.5-39 181.5-36 239-32q-24-33-35-71t-11-77q0-98 47-167t118-107 136.5-55 93.5-84 89.5-116 151-75 192.5-26q180 0 302.5 79T2028 602.5t30 121.5q0 51 26 68.5t83.5 29.5 143.5 83 122.5 156 36.5 178q0 134-63 214t-63 122q0 24 24 61zm-2171-61h-20q-11 0-22 1-13 0-19.5-10t-6.5-22q0-27 26-30t286-31 476-28q37 0 120.5 6t100 21.5 16.5 40.5q0 26-21 40t-77 14q-17 0-33-1h-87q-72 0-142-2t-140-2q-88 0-175.5 2.5T304 1577q-26 0-53-1t-54-1z"},"children":[]}]};exports.u1F4A8=u1F4A8;var u1F4A9={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M899 589.5Q995 459 1162 380l22-9q23-9 55.5-17.5t55.5-8.5q20 0 34 8t14 30q0 43-50 95.5t-50 93.5q0 99 177.5 101.5T1675 748t77 176q0 125-106 214.5t-310 89.5q-199 0-366-97T803 869q0-149 96-279.5zM1156 1805q-233-18-402-141.5T585 1337q0-107 48-197.5t104-90.5q39 0 39 48t59 110.5 197 107.5 283 45q132 0 241.5-43t178.5-109 88.5-103.5 45.5-37.5q52 0 85.5 80.5T1988 1322q0 232-204.5 360.5T1274 1811q-30 0-59-2zm987 332q-124 149-356.5 234.5T1291 2457q-206 0-455-62t-376.5-218.5T332 1845q0-124 54.5-216t112.5-92q9 0 22 5.5t38.5 69.5T681 1748.5 931.5 1870t354.5 49q295 0 497-102t268-297l7-19q6-17 16-27t25-10q46 0 107 98.5t61 231.5q0 194-124 343z"},"children":[]}]};exports.u1F4A9=u1F4A9;var u1F4AA={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2314 1665q-87-130-224.5-214t-297.5-84q-194 0-334 86.5t-208 206-172 119.5q-28 0-47-15.5t-19-43.5v-7l59-653q2-22 18-38.5t41-16.5q28 0 57 8t58 8q56 0 80.5-34.5T1350 903q0-23-12.5-54.5T1325 791q0-17 7-33t27-31l67 116q37 63 48 79t30 16q17 0 32-10t15-26q0-6-4-14l-100-202q-2-3-4-8.5t-2-15.5q0-14 11.5-22t25.5-8q22 0 34.5 26t24.5 50l24 45q12 25 24 46l20 38q9 17 16.5 24.5t23.5 7.5q17 0 30-8.5t13-24.5v-5q0-3-1-6l-94-208q-2-2-2-15 0-14 10.5-24t27.5-10q13 0 20.5 7t10.5 15l46 108q36 85 45.5 99.5T1781 812q14 0 29.5-8t15.5-25q0-7-1-11l-82-208q-2-4-2-6.5t-1-10.5q0-14 10-22.5t27-8.5q15 0 23.5 10t12.5 18l41 106q12 41 30 73t38 32q17 0 32-8.5t15-25.5q0-5-2-8l-4-18-23-73-33-99q-27-81-79-111.5T1708 377q-132 0-335.5 109.5t-365 238.5T713 1081t-219.5 479.5T407 1949q0 78 31 157.5t60.5 103 73 46.5 344 71 671.5 79.5 727 34.5v122q-548-5-1059.5-67.5t-675-109-229-177T285 1947q0-160 99.5-444t238-510 308-362.5 394.5-256T1708 255q91 0 166 39.5t120 132 95 296.5l16 27q16 29 27 67t11 73q0 126-125.5 172.5T1806 1109q-49 0-81.5-10.5T1671 1073q-68 31-163 52.5t-195 21.5q-30 0-61-2t-64-7l-44 461q109-174 272-264t372-90q155 0 289 60t237 168v192zm-159.5 226q8.5 8 8.5 22 0 107-80.5 181t-238.5 74q-104 0-206.5-35t-160.5-75l-36-24q-6-5-9-12t-3-13q0-14 9.5-22t20.5-8h6l18 2q32 5 86.5 9.5t111.5 4.5q152 0 260.5-30t143-56 48.5-26q13 0 21.5 8zM1800 961.5q12 18.5 41 18.5 13 0 26.5-4.5T1915 957l62-25q20-8 38-26.5t18-47.5q0-27-9.5-42.5T2010 788l-45 20q-151 67-164 85t-13 31q0 19 12 37.5z"},"children":[]}]};exports.u1F4AA=u1F4AA;var u1F4AB={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1540 814q-7-10-7-21 0-16 11.5-28t26.5-12q3 0 5.5 1t4.5 1l197 45 129-155q10-12 29-12 14 0 26.5 9t14.5 25l16 200 188 77q11 4 18 13.5t7 21.5q0 13-7 22.5t-18 14.5l-186 76-13 202q0 16-12 26.5t-27 10.5q-18 0-31-13l-130-155-196 52q-4 0-9 1-16 0-28-11.5t-12-27.5q0-12 5-21l107-174zm270 76l-146-33 81 124-78 128 144-38 96 114 9-150 137-56-137-55-13-147zm-658 1135q5 5 6 11t1 11q0 17-12 29t-28 12q-2 0-3.5-1t-3.5-1l-198-38-120 163q-5 7-13.5 11.5T763 2227q-19 0-27.5-10t-10.5-24l-28-201-190-63q-25-7-28-35 0-11 5.5-22t16.5-16l182-88 3-201q0-16 11-27t26-11q16 0 30 12l139 144 193-59q2 0 7-1 19 0 31.5 10.5t12.5 27.5q0 11-6 20l-96 176zm-274-68l147 29-87-122 72-130-143 44-101-107-3 148-133 66 141 45 19 148zm513-1021q-14-1-53-1-263 0-499 50t-361.5 144.5T352 1315q0 55 42 115.5T510 1546t82 55q9 4 9 17 0 12-9 16l-107 63q-3 3-7 3-19 0-102-64.5t-128-137-45-146.5q0-122 127-233.5t337.5-172T1160 886q108 0 175 6t75 8q8 0 12.5 6t4.5 14-5 12.5-12 4.5q-5 0-19-1zm1006 558q0 171-216.5 299.5T1610 1922q-33 0-121.5-5t-92.5-9q-17-2-17-18 0-8 6-13.5t14-5.5q6 0 18.5 1t38.5 1q229 0 421-47t297.5-135.5T2280 1512q0-57-34.5-115.5t-98-119.5-63.5-57q-9-3-9-16 3-11 13-15l85-33 5-1q18 0 86.5 73t100.5 142.5 32 123.5z"},"children":[]}]};exports.u1F4AB=u1F4AB;var u1F4AC={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M582 2605v-493H475q-105 0-164-59.5T252 1887V734q0-86 65-148t158-62h1650q94 0 158.5 60t64.5 150v1153q0 102-61 163.5t-162 61.5H1084zM475 642q-42 0-73.5 25T370 734v1153q0 57 24.5 82t80.5 25h225v330l336-330h1089q105 0 105-107V734q0-42-31.5-67t-73.5-25H475z"},"children":[]}]};exports.u1F4AC=u1F4AC;var u1F4AD={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2384 1320v21l-1 55q0 74-38.5 141t-84.5 107-78 57.5-32 34-7 34.5-7 27q-2 81-83.5 165t-208.5 84q-14 0-27-1l-27-1q-32-2-62-2-46 0-71-11.5t-42-11.5q-21 0-44 20.5t-83.5 48T1353 2115q-94 0-130-7t-53-16l-26-13q-13-6-26.5-10.5t-28.5-4.5q-21 0-55.5 16.5T913 2097q8 30 8 58 0 83-62.5 134T693 2340q-19 48-52 68.5t-87 20.5q-62 0-103-40t-41-99q0-40 21-71.5t51-43.5q-8-29-8-57 0-65 36-116.5t98-73.5q0-38-70.5-56t-113-68-45.5-90l-3-47q-5-62-44.5-92T259 1474.5 226 1317q0-99 37.5-174t72-102 45-98.5 36.5-126 89-102T642 662q49 0 82.5-11t50.5-47.5 76-72 96-54 116-18.5h27l26 2q29 3 75.5 26.5T1269 511q28 0 86.5-26.5T1520 458q115 0 213.5 61t124 99 71.5 38q18 0 35 1 102 0 198 119.5t96 225.5v18q0 10-1 21 0 35 30 65.5t60 87.5 35 106zM599.5 2263.5Q584 2246 558 2246q-21 0-37.5 13.5T504 2294q0 25 16.5 41t39.5 16q20 0 37.5-13t17.5-36q0-21-15.5-38.5zM771 2056q-37-32-85-32-40 0-70.5 25.5T585 2115q0 47 31 76t78 29q43 0 78.5-24.5T808 2129q0-41-37-73zm1463-840q-36-77-65.5-85.5T2139 1103q0-12 2.5-25.5t2.5-28.5q0-50-13.5-84.5t-41.5-71-56-63-69.5-41T1885 775q-15 0-29 2.5t-28 2.5q-18 0-66-66.5T1640 615t-153-32q-64 0-107 17.5t-59.5 34T1287 651q-12 0-75.5-31.5T1068 588q-85 0-149 47.5t-80.5 80T766 748l-47-1q-90 0-165.5 77.5T478 1000q0 11 14 13t14 14q0 13-19.5 20.5t-80.5 73-61 176.5q0 92 46 157.5t56 65.5q9 0 20-11t20-11 12.5 8 3.5 19q0 30-5.5 62t-5.5 63q0 66 44 93t72 27q6 0 10.5-3.5t9.5-8.5l9-8q4-4 10-4 17 0 20 36.5t33.5 88T793 1954t138 32q66 0 117.5-17.5t71.5-36 38-18.5q8 0 14.5 4.5t6.5 15.5q0 9-2 17t-2 14q0 23 45.5 35.5t98.5 12.5q95 0 177.5-45t105-80.5 35.5-35.5q18 0 21 28.5t59 39 92 10.5q62 0 115.5-33t86-87 32.5-79q0-9 6-37.5t6-63.5l-1-14q0-8 6.5-12.5t14.5-4.5q14 0 21 8.5t16 8.5q7 0 61-39t75.5-88 21.5-110q0-86-36-163z"},"children":[]}]};exports.u1F4AD=u1F4AD;var u1F4AE={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2434 1656.5q-62 97.5-154 147.5t-143 58.5-51 38.5q0 17 7 47t7 62q0 167-132.5 307.5T1559 2458q-143 0-228.5-54t-104-92.5-38.5-38.5q-10 0-22.5 10.5T1139 2308l-31 30q-42 42-118.5 70T827 2436q-209 0-313.5-124.5T409 2027q0-59 11.5-108t27-72.5T463 1802q0-30-59-44t-132-68-120.5-149.5T104 1335q0-101 60-220.5t167.5-192T571 850q14 0 27.5 1.5T626 853q13 0 21-5.5t8-20.5q0-24-3.5-46t-3.5-51q0-84 65-192t180.5-179.5T1133 287q78 0 141.5 27.5t102.5 77 49.5 91.5 44.5 42q15 0 32-5.5t34-13.5l31-14q37-17 122.5-38.5T1851 432q189 0 291 121t102 283q0 77-22 130t-22 63q0 12 3.5 21.5t76 32.5 144.5 116 72 226q0 134-62 231.5zm-91-253.5q0-135-57-185t-167-50h-34q-17 0-37 1-58 0-81-15.5t-23-43.5q0-36 46-66.5t83.5-95T2111 810q0-116-76-185.5T1834 555q-70 0-137.5 21.5T1587 628l-79 56-24 16q-23 15-50 26.5t-46 11.5q-65 0-72-105t-59.5-157-144.5-52q-133 0-240.5 112.5T764 779q0 35 8.5 69.5T801 917l4 8q5 7 6 13t1 13q0 19-15 33t-35 14q-8 0-51-15t-106-15q-149 0-258.5 95.5T237 1301q0 104 47 182t118 114.5 163 44.5 92 57q0 30-28 72.5t-47 98-19 102.5q0 120 80 204t198 84q93 0 168.5-51t104.5-99 67-48q58 0 73 43t45 90 81 74.5 128 27.5q214 0 323.5-104t109.5-216q0-59-26-102.5t-26-61.5q0-27 28.5-51t57.5-24q13 0 25 2.5t25 2.5q110 0 212-99t106-208v-33zm-509 62q-89 126-240.5 189t-311.5 63q-117 0-193.5-68t-76.5-173q0-80 51.5-157.5t147-126T1385 1144q68 0 105 36t37 77q0 30-23 55.5t-55 25.5q-22 0-51-18t-53-18q-69 0-120.5 46t-51.5 116q0 46 34 71t103 25q120 0 220.5-61.5T1682 1343t51-168q0-94-79-150.5T1455 968q-146 0-317.5 102.5t-252 247T805 1595q0 144 98.5 238t317.5 94q129 0 237.5-27.5T1603 1855t50-17q13 0 21 8.5t8 19.5q0 10-8 19.5t-90 50-187.5 66.5-218.5 26q-240 0-378-113t-138-316q0-188 115-377t306-306.5T1479 798q187 0 315.5 114t128.5 291q0 136-89 262z"},"children":[]}]};exports.u1F4AE=u1F4AE;var u1F4AF={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M879 886q130-256 339-371l5-3 6-11q16-17 39-25.5t46-8.5q11 0 21 2l24 5q65 16 120 16 45 0 89.5-11.5T1659 451l93-33q44-15 83-22.5t60.5-16 52.5-8.5q16 0 29 4t27 9l43 9q125 37 194.5 155t69.5 281q0 153-60 304.5T2085.5 1370t-238.5 85q-157 0-248-84t-102-241q-61 244-193 403t-270 159q-114 0-199.5-89.5T749 1351q0-209 130-465zm-560.5 57.5Q289 917 289 874q0-24 12.5-45t33.5-37l21-15q16-13 72-45t152-119.5 109.5-109 36-43 42.5-33 47-11.5q47 0 75 37t28 96q0 80-68.5 210t-120 293T622 1596l-3 26q-9 61-15 116.5T593 1848q0 98-29.5 147.5T477 2045q-47 0-71.5-40T381 1903q0-17 15.5-169t56.5-388.5T549 929q-40 20-76 30.5T409 970q-61 0-90.5-26.5zM2225 1729q3 0 10-1 32 0 52.5 20t20.5 49q0 22-13.5 39.5T2259 1860l-107 31q-53 16-107 30l-20 5q-245 66-634 197t-626.5 240T510 2483.5t-48 11.5q-40 0-72.5-31.5T357 2392q0-37 26.5-64.5t231-125.5 497-195 556.5-156l417-92zm-310-164q30 0 50 20t20 49q0 21-13 37t-35 22l-137 39-86 23q-255 69-577.5 175T781 2047.5t-44 11.5q-39 0-64.5-27t-25.5-70q0-39 29-65t392-143 783-180l55-9h9zm-169-374q25 50 70 50 54 0 124-48t111-142 41-224q0-105-40-164.5T1938 603l-26 11q-13 6-30 24.5t-42 55.5l-21 31q-53 81-75.5 156.5T1721 1049t25 142zm-791 120q0 63 19 98t55 35q60 0 121.5-60.5t116-211.5 54.5-258q0-61-19.5-124t-35.5-63q-38 0-133.5 128T996 1108.5 955 1311zm549-600q11 31 17 66.5t8 73.5q10-38 23.5-76.5T1586 699l-38 6q-21 4-44 6z"},"children":[]}]};exports.u1F4AF=u1F4AF;var u1F4B0={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2086.5 2379Q1860 2518 1362 2518q-562 0-819-142t-257-419q0-156 75-358.5T598 1229t357.5-258.5T1340 879h22q-2-2-2-7 0-36 24.5-68.5T1437 757q-9-37-18-83.5t-9-95.5q0-108 61-197.5t157-89.5q46 0 94 25.5t78 62.5l7 7q14 0 28.5-2t34.5-2q111 0 178 57t67 154v9l13 6 5 4q52 33 81.5 80t29.5 95q0 82-51.5 140.5T1952 997h-5l-48 5v14q0 28-9 53t-31 42q64 72 108.5 160t56.5 154.5 80 120 116.5 125T2291 1817t22 158q0 265-226.5 404zm39.5-568q-37-83-91.5-141t-90.5-83-36-76q-6-94-141-298t-408-204q-201 0-425 103.5T567.5 1433 425 1887q0 254 211 380.5t700 126.5q221 0 415.5-35.5t303-140T2163 1989q0-95-37-178zm-564.5 293q-83.5 64-187.5 64-26 0-54-3.5t-57-11.5l-18 52q-7 13-17 13-2 0-3.5-1t-2.5-1l-133-49q-12-5-12-18l1-4 24-63q-106-63-176-139.5t-70-94.5q3-6 7-10l130-82 5-2q2 0 4-1 4 0 49.5 49.5T1169 1897l60-166q-14-10-26-21t-25-21l-9-8q-104-90-127.5-134.5T1018 1456q0-81 74-144t171-63q63 0 133 22l21-60q3-11 17-11h6l133 48q11 6 11 17v6l-30 79q60 41 110 85t76 73l2 3q0 2 1 4 0 10-6 13l-112 84q-3 3-10 3t-8-3q-23-22-52-45l-62-49-49 135q126 110 163.5 173.5T1645 1950q0 90-83.5 154zm-12-1446q8.5 40 17.5 77 27 5 61 15t67 22q12-14 30.5-32t33.5-30l10-9q8-5 26-15t35-10q26 0 26 28 0 22-23.5 73.5T1806 833q26 19 46 45 47-10 115-15.5t107-15.5 39-54q-9-48-71-81t-62-78q0-9 2.5-19t2.5-19q0-41-30.5-62.5T1885 512l-11 1q-17 0-34.5 2t-35.5 2q-50 0-97-47t-79-47-59.5 45-27.5 111q0 39 8.5 79zM1713 986l6 2q3 0 6 1 20 0 38.5-14t18.5-30q0-15-18-31t-47-29l-75-38q-38-19-83-19-28 0-53.5 12t-25.5 31q0 23 33 29t87.5 27.5T1713 986zm-383 982q5 0 8 1t7 1q28 0 48.5-15t20.5-39q0-14-12-30t-29-33zm6-534l-11-2q-6 0-12-1-19 0-38 11t-19 36q0 14 12 27t32 29z"},"children":[]}]};exports.u1F4B0=u1F4B0;var u1F4B1={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2341 1785q23 50 35 103.5t12 111.5q0 213-153.5 367T1866 2521q-168 0-304-98.5T1374 2170H462q-25 0-42-17.5t-17-41.5v-762H271q-25 0-42-17t-17-42V412q0-25 17-42t42-17h1821q23 0 41 17t18 42v214q113 75 175 190t62 247q0 57-12 110.5t-35 103.5v508zM330 1232h1043q-13-44-20.5-84t-7.5-85q0-214 153-368t368-154q45 0 86 7t80 20v-97H330v761zm1017 820q-2-14-2-39 0-161 78-287t215-194q-130-64-206-183H520v703h827zm803-1274.5Q2030 659 1866 659q-163 0-283 118t-120 286q0 165 118.5 284.5T1866 1467q161 0 282.5-119.5T2270 1063q0-167-120-285.5zm1.5 938.5Q2033 1596 1866 1596q-163 0-283 118t-120 286q0 165 117.5 284t285.5 119q167 0 285.5-120.5T2270 2000q0-164-118.5-284zm-87-415.5Q2006 1349 1925 1356v36q0 12-13 12h-93q-12 0-12-12v-44q-77-16-119.5-37t-81.5-48l-5-5 3-7 62-83q0-2 5-2 6 0 46.5 21t89.5 31v-117l-48-19q-96-35-123.5-68t-27.5-76q0-70 56-114.5t143-48.5v-42q0-11 12-11h93q13 0 13 11v56q48 12 88.5 29t61.5 27l6 7-1 7-53 78q0 4-6 4-3 0-4-1l-92-33v96q53 23 100 46t72.5 57.5 25.5 77.5q0 68-58.5 116.5zM1142 1781l50 112-2 8q-85 73-206 73-104 0-182-54t-106-143h-93q-3 0-6-2.5t-3-5.5v-62q0-5 3-6.5t6-1.5h78q0-5-1-10.5t-1-10.5 1-9.5 1-9.5h-78q-3 0-6-2.5t-3-5.5v-63q0-3 3-6t6-3h93q28-89 106.5-142t181.5-53q122 0 200 60l1 8-58 115-4 3-5-1q-25-19-60.5-30.5T985 1527q-38 0-69 14t-52 38h99q4 0 7 3t3 6v63q0 8-10 8H830l-1 19 1 21h133q10 0 10 8v62q0 8-10 8h-99q21 25 51.5 38.5T985 1829q32 0 75.5-14t72.5-37l5-1zM451 575q-3 0-3-5 0-8 4.5-11t9.5-3h121q9 0 11 6l133 191 135-191q2-6 11-6h120q5 0 9.5 2.5t4.5 9.5q0 2-1 3l-2 4-141 211h107q4 0 6.5 3.5t2.5 7.5v66q0 11-9 11H805v41h165q4 0 6.5 3.5t2.5 7.5v67q0 10-9 10H805v113q0 13-13 13H663q-12 0-12-13v-113H485q-11 0-11-10v-67q0-4 3-7.5t8-3.5h166v-41H485q-11 0-11-11v-66q0-4 3-7.5t8-3.5h108zm1692 1611l1 11q0 14-50 54t-136 40q-43 0-114.5-18.5T1729 2254q-34 0-52 8t-29 8q-3 0-6.5-2t-4.5-5l-45-108v-8l5-4q46-15 71-38.5t38-49.5h-91q-5 0-7-3t-2-7v-85q0-9 9-9h97q-5-38-12.5-67.5t-7.5-58.5q0-71 46-117t122-46q67 0 116.5 48t49.5 65q0 6-3 9l-79 71-8 3-7-6q-9-17-25-33t-31-16q-18 0-27 12.5t-9 24.5q0 7 6.5 24.5t12.5 86.5h102q9 0 9 9v85q0 4-2 7t-7 3h-107q-3 19-8.5 38t-15.5 36q30 10 72.5 19.5t56.5 9.5q28 0 52.5-9.5t44.5-24.5l16-13 8-3 5 3 47 59zm80-745q-29 28-61 50.5t-67 40.5q35 17 67 39.5t61 49.5v-180zm-298-216q17-5 29-14t12-26q0-14-11.5-23t-29.5-18v81zm-118-335q-14 3-27.5 10.5T1766 923q0 16 10 24t31 15v-72z"},"children":[]}]};exports.u1F4B1=u1F4B1;var u1F4B2={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1971 2152.5Q1799 2326 1499 2350v118q0 16-11 26.5t-28 10.5h-302q-16 0-26.5-10.5T1121 2468v-142q-96-17-193.5-47.5t-184.5-68-180-95.5-99.5-68-6.5-21 6-17l201-263q9-11 24-11 10 0 40 19.5t153.5 71.5 239.5 79v-378l-158-59q-207-76-297.5-136.5T525 1192t-50-190q0-184 160.5-347T1121 478V342q0-15 10.5-26.5T1158 304h302q17 0 28 11.5t11 26.5v182q176 45 329.5 108.5t163 75 9.5 22.5q0 10-4 18l-167 252q-8 13-26 13-3 0-5-1l-6-1q-61-26-135-53.5T1499 904v309q233 92 370 173t205.5 187 68.5 221q0 185-172 358.5zM1499 1929q62-15 98.5-49t36.5-83q0-40-36-70.5t-99-58.5v261zM1121 850q-73 15-103 44.5T988 967q0 45 34.5 68.5t98.5 43.5V850z"},"children":[]}]};exports.u1F4B2=u1F4B2;var u1F4B3={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2334 1605q-126 85-302 189t-420 230.5-480.5 250.5T794 2399q-67 0-104-22.5t-82.5-79.5T447 2002t-230-520l-25-60q-20-49-36-98t-16-103q0-62 27-115t75-99 122.5-87.5 376.5-173T1243.5 537t255.5-93.5 128-15.5q71 0 131.5 24t107.5 81l82 99 84 104q139 172 283.5 339t144.5 310q0 135-126 220zm-67-378q-43-67-164-223l-88-112-1573 745 66 137q33 68 61 124l48 97q36 72 80.5 136t132.5 64q42 0 85.5-14t95.5-42l55-29 89-45 87-43q285-139 521-265.5t391.5-215T2310 1344q0-50-43-117zm-1984 19.5q5 21.5 11 43.5l1499-675q-33-41-73.5-60.5T1626 535q-63 0-140 28l-180 71q-69 27-153 61l-172 70q-189 77-446 191t-257 250q0 19 5 40.5zm1915.5 151Q2176 1428 2067 1484l-46 23q-14 8-35.5 17t-47.5 9q-58 0-104-68t-46-114q0-32 21-56.5t53-41.5l76-40q41-21 73-32.5t59-11.5q61 0 106 64.5t45 101.5q0 32-22.5 62.5zM1972 1457l112-58q24-11 47-29t23-35q0-15-28-57t-56-42l-10 1q-36 8-65 23l-61 31-24 11q-28 13-42.5 26t-14.5 26q0 14 8 27l14 24 13 19q15 26 26 34t24 8q17 0 34-9z"},"children":[]}]};exports.u1F4B3=u1F4B3;var u1F4B4={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2373 764q25 0 42 17t17 42v1192q0 25-17 42t-42 17H226q-23 0-41-17t-18-42V823q0-25 18-42t41-17h2147zm-59 118H286v1074h2028V882zM438 1094q-2-4-2-8 0-7 5-11.5t11-4.5h143q10 0 13 7l158 242 156-242q6-7 14-7h144q5 0 10 3.5t5 11.5q0 2-1 4l-2 5-167 267h126q12 0 12 13v83q0 13-12 13H858v53h193q5 0 8.5 3.5t3.5 8.5v85q0 13-12 13H858v142q0 6-4.5 10.5T841 1790H689q-6 0-10.5-4.5T674 1775v-142H480q-13 0-13-13v-85q0-5 4-8.5t9-3.5h194v-53H480q-13 0-13-13v-83q0-13 13-13h126z"},"children":[]}]};exports.u1F4B4=u1F4B4;var u1F4B5={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2373 763q25 0 42 17.5t17 41.5v1193q0 24-17 41.5t-42 17.5H226q-23 0-41-17.5t-18-41.5V822q0-24 18-41.5t41-17.5h2147zm-59 118H286v1075h2028V881zM418 1652l-4-8 3-8 72-96q4-4 10-4 3 0 50.5 24t106.5 39v-139q-3 0-119-47.5T421 1267q0-81 65.5-133.5T656 1077v-51q0-5 4.5-9.5t9.5-4.5h111q6 0 10 4.5t4 9.5v67q54 14 103 33t75 33l5 7-1 9-60 92-4 4q-2 2-5 2-4-2-5-2l-50-19-58-21v114q131 52 183 102.5t52 110.5q0 81-69.5 138.5T795 1760v44q0 5-4 9.5t-10 4.5H670q-5 0-9.5-4.5t-4.5-9.5v-52q-71-14-134-42t-104-58zm238-440q-18 3-33 12.5t-15 31.5q0 16 12.5 25t35.5 15v-84zm139 395q17-5 33-15.5t16-32.5q0-14-13-25.5t-36-22.5v96z"},"children":[]}]};exports.u1F4B5=u1F4B5;var u1F4B6={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2374 763q25 0 42 17t17 42v1193q0 25-17 42t-42 17H226q-25 0-42-17t-17-42V822q0-25 17-42t42-17h2148zm-59 118H285v1075h2030V881zm-1192 679l63 145q0 2 1 4 0 10-77.5 54T920 1807q-133 0-233-69.5T552 1556H433q-10 0-10-10v-80q0-4 2.5-7.5t7.5-3.5h100l-1-12q0-6-1-13l1-13q0-6 1-12H433q-10 0-10-11v-79q0-11 10-11h119q35-112 135-181.5t233-69.5q113 0 185.5 36.5t72.5 46.5q0 2-2 5l-73 147q-3 4-8 4-6 0-17-10t-56-27.5-101-17.5q-49 0-88.5 18t-65.5 49h127q11 0 11 11v79q0 11-11 11H724q0 6-1 12l-1 13q0 7 1 13l1 12h170q5 0 8 3.5t3 7.5v80q0 10-11 10H767q26 32 65 49.5t89 17.5q46 0 98-18.5t72-34 26-15.5q3 0 6 5z"},"children":[]}]};exports.u1F4B6=u1F4B6;var u1F4B7={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2375 762q24 0 41 17t17 42v1193q0 25-17 42.5t-41 17.5H226q-24 0-41.5-17.5T167 2014V821q0-25 17.5-42t41.5-17h2149zm-59 118H286v1075h2030V880zm-1178 793q3 4 3 8 0 9-27.5 41t-82 58-130.5 26q-69 0-144.5-23.5T609 1759q-47 0-72 10t-33 10-11-8l-59-138q0-4-1-7 0-10 25.5-15.5t64-34T579 1505H464q-13 0-13-13v-108q0-12 13-12h124q-7-51-16.5-90t-9.5-73q0-89 60-147t155-58q65 0 116.5 36t79.5 80l15 24q2 4 2 6 0 6-5 9l-101 91q-5 3-9 3-8 0-14.5-15t-26-34.5T789 1184q-23 0-31.5 14t-8.5 29q0 13 9.5 50.5T771 1372h132q5 0 8.5 3.5t3.5 8.5v108q0 5-4 9t-8 4H765q-4 24-11.5 48.5T735 1600q14 3 77 20t87 17q36 0 74-15.5t71-45.5l4-2q2 0 6-1 4 0 8 4l59 75z"},"children":[]}]};exports.u1F4B7=u1F4B7;var u1F4B8={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2418 1412q-62 46-142 46-11 0-23-1l-23-2q-23 28-62.5 42t-71.5 14q-11 0-22.5-1t-22.5-3q-14 17-44.5 33t-80.5 16q-34 0-67-11-14 17-40.5 31.5T1748 1591q-34 0-74-8t-81-25q-76 171-192 314.5T1139 2137l-40 32q-34 27-67 42t-66 15q-83 0-357.5-126t-303-153-28.5-59l1-11q0-4 23.5-115.5T325 1563v-31q0-30 48-54.5t111-72.5 126-103q-23-16-36-34t-19-34q-58-9-96.5-40.5T410 1126q-8-2-16-5l-16-6q-24-8-55.5-37t-41.5-64q-72-22-117-72t-45-109q0-57 43-98.5T274 693q113 0 207.5-38T626 617q149 0 202.5 142.5T908 956q46-68 68-106l26-47q11-22 29.5-33t39.5-11q9 0 21 3l482 127q48 13 55.5 65t21.5 170q53-41 138-132.5t185-91.5q104 0 193.5 95.5T2354 1143l20 11q46 23 59.5 35.5t30 41.5 16.5 67q0 68-62 114zm-292-68l-1-6q0-2-1-5 0-4 2-6.5t10-2.5 14 2l12 6q25 11 54.5 20t59.5 9q35 0 70.5-18t35.5-47q0-31-37-48t-98-52.5-107.5-88-85-80.5-80.5-28q-60 0-119 66.5t-144 135-135 95-50 62.5q0 59 73.5 96.5T1748 1492q30 0 38.5-9t8.5-31q0-5-1.5-11.5t-1.5-12.5q0-10 12-10 7 0 14 3l12 5q23 14 46.5 23t49.5 9q21 0 37.5-7t16.5-21q0-4-1-7t-5-8l-8-9-7-10q-4-5-4-9 0-5 2-8t9-3q4 0 9 2l7 3q27 11 56 21.5t57 10.5q15 0 39-8.5t24-20.5q0-5-4.5-9.5l-9.5-9.5-11-9q-6-5-7-12zm-1437-9q-57 54-121 105t-138 99l585 228q43-30 100.5-85t120.5-131q-74-44-190.5-92.5T689 1335zm-5-106q48-48 87.5-94.5T844 1044q-61-109-94-219.5T626 714q-23 0-46.5 7.5T532 738l-49 20q-28 11-57.5 17.5T367 785l-67 6h-10q-41 0-56.5 11T218 832q0 33 45.5 66.5T392 932q9 0 19.5 2t10.5 10q0 15-24 20t-24 17q0 14 25 33.5t69 23.5l54 5q21 0 21 9 0 10-20 18.5t-20 21.5q0 21 33 34.5t67 13.5l33-1q8 0 17.5 2t9.5 10q0 5-9 16t-9 26 17 25.5 22 10.5zm387-392q-25 48-56.5 100.5T934 1056q214 57 318 100t180 89q32-62 63-131.5t59-148.5zm200 643l114-148 11-17q-91-55-219.5-103T897 1130l-132 147q38 14 217.5 74.5T1271 1480zm176 42l-18-111q-31 51-61.5 95t-60.5 82q0 5 1 9v9q2 33 3.5 66.5t1.5 67.5q0 25-2.5 48.5t-2.5 48.5v13.5l5 12.5 36-31q15-14 60.5-73t45.5-124q0-58-8-113zm-495 599q8-8 8-21 0-26-17.5-33.5T723 1978t-254-109l-21-11q-11-5-20-8.5t-14-3.5q-13 0-20.5 8.5T386 1876q0 11 16.5 23t42.5 24l24 12q38 20 76 36.5t77 32.5l8 5q202 85 251 102.5t52 17.5q11 0 19-8zm43-262.5q-1-10.5-9-18.5l-572-223q0 10-1.5 17.5T411 1648q0 13 7 20.5t22 12.5l20 7q30 10 471 191l25 11q11 5 20.5 9t12.5 4q5 0 6-7t1-15q0-12-1-22.5zm-21 102q-21-5.5-61-22.5l-65-28q-71-28-201-81.5T482 1761l-36-17q-11-5-20-8.5t-14-3.5q-8 0-10.5 9t-2.5 17q0 24 69 51.5t96.5 41T694 1904l181 72 55 24 26 10q11 5 18 5 11 0 16-8t5-19q0-22-21-27.5z"},"children":[]}]};exports.u1F4B8=u1F4B8;var u1F4B9={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2367 2413q21 0 35.5 14.5t14.5 34.5q0 21-14.5 35.5T2367 2512H232q-20 0-35-14.5t-15-35.5V342q0-21 15-35.5t35-14.5 34.5 14.5T281 342v1644l236-241q10-11 22.5-15.5t26.5-5.5q25 0 44 16l212 177 434-1318q8-22 26-34t40-12q19 0 35 9t25 26l309 561 180-518q7-21 25-35l393-274q19-12 39-12 28 0 49 20.5t21 48.5q0 35-31 57l-374 260-223 643q-8 22-26 33.5t-40 11.5q-18 0-33.5-8.5T1645 1350l-306-558-418 1265q-8 20-25.5 34t-40.5 14q-25 0-44-17l-241-201-289 295v231h2086zM500 585q-13-24-48-73.5T417 429q0-25 27.5-37.5T521 379q42 0 69 47t61 112 50 65q21 0 58-66.5t62.5-112T891 379q51 0 78 12.5t27 37.5q0 21-36.5 88.5T878 644q5 0 8.5 1t8.5 1h16q33 0 54 13.5t21 39.5q0 28-18 40t-90 12l-68-1q-5 9-7 19l-4 21q7 0 21-1h28l37 2h21q39 0 59.5 13t20.5 39q0 28-19 40.5T878 896l-82-1v97q0 81-22 99.5t-70 18.5q-50 0-71.5-17t-21.5-88v-54q0-26 1-56h-82q-61 0-82-6.5T427 847q0-27 13-41.5t53-14.5h117q0-11-4-21.5t-9-19.5h-67q-65 0-84-7.5T427 703q0-28 13.5-42.5T489 646l44 1z"},"children":[]}]};exports.u1F4B9=u1F4B9;var u1F4BA={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2044 1720q6 23 10.5 48t7.5 50l9 66 38 333q6 55 9.5 99.5t3.5 66.5q0 16-3.5 22t-21.5 17.5-37 11.5q-22 0-25-19t-6-39l-27-164q-8-50-17-102l-17-102q-18-103-28.5-140.5T1916 1803q-48 23-108.5 44t-134.5 35l4 387 6 278q0 29 1 34 0 28-33.5 46t-51.5 18q-12 0-20-4t-14-10q-8-104-20-238.5t-11-128.5l-9-107q-9-96-12.5-153.5T1501 1901q-20 2-39 2h-40q-48 0-99-3t-108-10l-18 239q-11 124-15 136.5t-24.5 23-40.5 10.5q-24 0-26-20.5t-4-72.5l-3-75q-2-29-3.5-133t-1.5-128q-92-16-180-37t-163-47q-26 59-50 132t-46 162l-23 89-27 112q-10 34-17.5 81t-50.5 67-68 20q-10 0-16.5-4t-6.5-12q0-6 4-33l10-64q4-32 11-71.5t14-75.5l58-302q5-29 13-75.5t30-100.5q-42-25-59.5-54t-17.5-61q0-8 1-15t3-14q-16-28-16-59 0-68 56.5-91.5t198-48.5 246.5-25q140 0 268 46.5t245 54.5q12-15 17-40t5-56q0-28-3-58t-8-59q-321-38-436-103.5T956 940l1-15-5-30q-3-14-3-31 0-145 105.5-352T1296 305q19 0 164 20.5t291 20.5q32 0 89-1t60-1q113 0 172 53t71 141.5 12 156.5q0 121-38.5 312T1842 1236q12 48 16.5 83t4.5 61-3 42q32-4 60-6t54-2q88 0 111.5 33.5t23.5 68.5q0 7-1 14t-3 14q16 31 16 58 0 37-22.5 64t-54.5 54z"},"children":[]}]};exports.u1F4BA=u1F4BA;var u1F4BB={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M992 1660H303q-42 0-70.5-28.5T204 1561V507q0-40 29.5-69t69.5-29h1585q39 0 68.5 29.5T1986 507v1054q0 40-29 69.5t-69 29.5h-691v116h259q30 0 51.5 19.5t21.5 46.5v66H660v-66q0-27 21.5-46.5T733 1776h259v-116zm789-255q32 0 53.5-22.5t21.5-53.5V627q0-32-21.5-54t-53.5-22H408q-31 0-53 22t-22 54v702q0 31 22 53.5t53 22.5h1373zm-15 589q14 0 25 9.5t15 23.5l76 372v7q0 13-7.5 19.5t-19.5 6.5H349q-11 0-19-6.5t-8-19.5q0-4 1-7l76-372q3-14 14.5-23.5t26.5-9.5h1326zm595 387.5q-35 30.5-97 30.5-90 0-177.5-70t-87.5-139q0-7 1-12-49-16-71.5-45t-22.5-66q0-17 3.5-33t8.5-31l8-27q4-13 4-24 0-36-42.5-53t-120.5-17q-12 0-21-8.5t-9-22.5q0-20 14.5-25t32.5-5q102 0 155.5 35t53.5 96q0 17-4 33t-9 31l-9 29q-4 14-4 24 0 23 20 36t46 18q17-15 40-22.5t49-7.5q111 0 192.5 58.5T2396 2305q0 46-35 76.5zm-629-62.5q13 0 22.5-9.5t9.5-23.5q0-15-9.5-25t-22.5-10H483q-14 0-24 10t-10 25q0 14 10 23.5t24 9.5h1249zM515 2090q-14 0-23.5 10t-9.5 24 9.5 23.5 23.5 9.5h1184q14 0 24-9.5t10-23.5-10-24-24-10H515z"},"children":[]}]};exports.u1F4BB=u1F4BB;var u1F4BC={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2369.5 1703q-3.5 78-9 207.5t-18 195-48 118T2144 2285l-170 12-190 12-221 13q-114 7-228 12l-215 11q-73 4-159 7t-139 3q-24 0-42.5-1t-38.5-1q-88 0-252-59.5t-207.5-111T227 2001l15-596 7-238q4-167 65.5-238.5t252-92T893 816q44 0 65-8t21-25q0-7-4-16l-10-18q-5-10-9.5-21t-4.5-22q0-85 58-159t180-74q76 0 102.5-2t39.5-2h35q56 0 111 3l112 8q61 6 96.5 37t55 69 19.5 125q0 16-8.5 33t-8.5 30q0 26 48 39.5t155 13.5q199 0 281 31.5t107.5 104 32 258 6.5 276.5q0 128-3.5 206zm-105.5 57l-6-439-3-130-3-86q-3-68-44.5-103t-97.5-35l-54-1-275-7-188-3q-94-2-195-3t-197-1q-263 0-359 11t-139 48.5-43 97.5q0 59-1 136l-2 162-10 462-3 87q-2 27-3 54t-1 53q0 104 42.5 143t129.5 39q8 0 15-1t146-7l209-9q362-16 668.5-39t338-45 53.5-64.5 22-215.5v-104zm-150-494.5q-72 12.5-161 15.5l-47 2q-211 7-431 10t-487 3q-52 0-102.5 2t-101.5 2q-17 0-30.5-9t-13.5-24q0-41 123.5-47.5T1088 1207t369-9l273-3q76 0 202.5-2.5t141.5-2.5h25q37 2 62 13t25 30q0 20-72 32.5zm1 481q-71 12.5-162 15.5l-47 2q-213 7-427.5 9.5T988 1776q-52 0-102.5 2.5T784 1781q-17 0-30.5-9t-13.5-24q0-40 103-45t222.5-12.5T1546 1680l457-6q14 0 33-1.5t39-1.5q54 0 82.5 11t28.5 31q0 21-71 33.5zm-82 117.5h36q58 0 86.5 11t28.5 33q0 26-47 31.5t-98 10-105 6.5l-209 8q-54 2-415.5 17.5T892 1997q-93 0-117-8.5t-24-35.5q0-33 81-34.5t490.5-27.5 683.5-26zM783.5 1444q31.5-9 132.5-9 254-9 508-23t508-14h75l26-1h31q62 0 91 12t29 35q0 26-57 31.5t-104 8.5l-89 4-209 6q-145 5-340 10t-374 11l-47 1q-24 0-48 1-95 0-129.5-8.5T752 1471q0-18 31.5-27zM1251 642q-50 5-79.5 30t-29.5 77q0 31 25.5 47t110.5 16q48 0 90 3.5t83 3.5q91 0 125-26t34-76q0-39-26-57.5t-88-18.5h-32l-28 1q-26 0-53.5-1.5T1329 639q-21 0-41 1z"},"children":[]}]};exports.u1F4BC=u1F4BC;var u1F4BD={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2441.5 933.5Q2424 981 2414 1013l-102 327-35 111-128 396q-24 74-47 149l-46 145-41 127q-3 10-48 146.5T1800 2551q-40 0-89-12t-109-36l-719-272-192-72q-181-69-294.5-108t-185-79-71.5-111q0-29 10-65.5t23-67.5l15-39q68-178 142-356.5t145.5-354 139-359.5T725 389t107-46q45 0 308.5 53T1778 554l365 103q66 18 90.5 28t89 28.5 100.5 49 36 87.5q0 36-17.5 83.5zM1981 1002q-80-156-216-256-33 100-71 205.5t-64.5 182.5-88.5 77q-17 0-32.5-3.5t-32.5-8.5q31 56 31 118 0 105-77.5 177t-177.5 72q-103 0-172.5-70t-69.5-165q0-75 43-137.5t107-90.5q-36-13-50-32t-14-45q0-32 25.5-94t58.5-165l56-171q-195 16-367.5 125t-271 281-98.5 372q0 193 99.5 367.5T872 2016t388 100q217 0 405.5-110t292-294.5T2061 1332q0-174-80-330zm-319-397l-25-6-116-31q-56-15-114-28l-14-3q-9 0-17-1-13 0-21.5 9T1287 727l-58 173-15 39q-8 20-13.5 37.5t-5.5 27.5q0 21 33 31.5t101.5 33T1451 1105l25 6q13 4 27 4 18 0 29.5-11.5t18-26.5 68-190.5T1694 677t14-45q0-9-10.5-15t-35.5-12z"},"children":[]}]};exports.u1F4BD=u1F4BD;var u1F4BE={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2429 874q14 27 14 58 0 24-61 229.5T2265 1536l-100 314-93 294-71 222q-41 123-84.5 155.5T1815 2554q-71 0-187-45t-248.5-94-261-97-261-98.5T598 2122t-249-92.5-157.5-81T156 1863q0-24 6.5-51t26.5-80l15-39q17-49 37-97l40-95q88-220 175.5-433t166-425.5 121.5-255T849 345q18 0 37.5 2.5T926 354l253 49q175 35 470 115t509 142l91 28q96 30 118.5 72t32.5 60zM979.5 1026.5q9.5 6.5 23.5 11.5l144 46 5 2q61 18 171 54t225 67l154 41q32 9 53 14l25 6q15 5 28 5 39 0 55-54.5t66.5-182 57-156T2022 786q10-23 10-41 0-28-28-42t-90-35-177-51l-132-34q-70-17-132.5-36.5T1341 514l-78-14-30-4q-16-2-29-2-46 0-65 41.5t-94 249-75 221.5 9.5 20.5zM1934 1589q4-11 7.5-26t3.5-29q0-19-14.5-30t-35.5-16l-24-6-104-32q-247-78-499-157l-542-168q-19-6-34-6-35 0-56 58.5T548.5 1397 437 1670t-45 157 45 76 130 60 447.5 164 446.5 170 143 35q47 0 76-24t49-81l33-102 130-407zm-369-451q-19-5-35-14t-16-26q0-10 51-153t79-217l13-30q5-11 25-11 24 0 48.5 8.5T1778 709l79 17q19 5 36 10t29 11l6 6 1 12q0 17-10 43l-17 46q-25 70-51 140l-52 141q-4 8-13 31.5t-35 23.5q-12 0-48.5-10t-61.5-18z"},"children":[]}]};exports.u1F4BE=u1F4BE;var u1F4BF={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2057.5 1870.5Q1938 2075 1735 2191t-435 116-435-116-322.5-320.5T423 1430q0-232 117.5-436T862 672t438-118 438 118 321.5 322 117.5 436q0 236-119.5 440.5zM2055 1335q-3-36-10-71.5t-18-69.5l-472 143q7 23 12 48zm-619.5 213.5Q1493 1492 1493 1412q0-78-57.5-135t-135.5-57q-79 0-136 57.5t-57 134.5q0 78 57 135.5t136 57.5q78 0 135.5-56.5zM548 1322l486 56q18-93 93-155.5t173-62.5q67 0 123 29l244-440q-82-45-174.5-70T1300 654q-287 0-502.5 192.5T548 1322zm5 215q5 36 14.5 70.5T589 1675l451-166-6-25q-3-13-4-25zm1492 15l-476-88q-12 100-89.5 169t-179.5 69q-33 0-63.5-8t-58.5-22l-201 426q74 35 155 54t168 19q275 0 486-177t259-442zm-807-204q28-26 62-26 38 0 64 26.5t26 60.5q0 42-24 67.5t-66 25.5q-36 0-63-25.5t-27-64.5q0-38 28-64z"},"children":[]}]};exports.u1F4BF=u1F4BF;var u1F4C0={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M490.5 703q123.5-188 341-297.5T1299 296q252 0 470.5 111T2110 705t122 398q0 212-122.5 398.5t-340.5 297-470 110.5q-249 0-466-108.5t-341.5-296T367 1103q0-212 123.5-400zm8.5 284l518 52q18-87 98.5-144.5T1299 837q70 0 131 28l259-406q-88-42-186-64t-204-22q-304 0-534 176.5T499 987zm1593 211l-507-80q-14 93-96.5 155.5T1299 1336q-35 0-68-7t-62-20l-214 391q79 32 165 49.5t179 17.5q290 0 515.5-161.5T2092 1198zM950.5 2442q-77.5 69-206.5 69-25 0-46-2t-43-2q-53 0-78-17.5t-25-68.5q0-12 1-24.5t1-24.5l-3-89q-2-43-2-85l1-65q0-32 5-61l3-21q2-20 13-30.5t33-14.5l4-1q11-5 26-6t29-1q145 0 215.5 24.5t110 88.5 39.5 144q0 118-77.5 187zm1076 1q-77.5 68-205.5 68-24 0-45-2t-44-2q-52 0-77.5-17.5T1629 2421q0-11 1-22v-20q0-47-2-91.5t-2-89.5q0-124 15-162t99-38q146 0 217.5 25.5t109 89T2104 2254q0 121-77.5 189zM1524 2143q-12 37-21 72l-22 76q-44 153-82 189.5t-89 36.5q-89 0-124.5-95.5t-70-208.5-34.5-140 23-41.5 70-14.5q25 0 41 15t24 39l8 29q4 15 22 102t39 87q20 0 29.5-64.5T1366 2106l9-29q7-26 21-41.5t38-15.5q57 0 79.5 16t22.5 36q0 34-12 71zm-80-949q60-53 60-124t-60.5-124.5T1299 892q-82 0-144 53t-62 125q0 73 63 125t143 52q85 0 145-53zm125-194q10 19 13 44l520-45q-3-33-10.5-65.5T2073 870zM504 1184q12 68 39 129l479-155q-7-23-11-45zm1409 981q-31-28-88-28-9 0-15.5 5t-6.5 18v78q0 25-1 50l1 52q0 14 9.5 21.5t25.5 7.5l18 1q41 0 64.5-32.5t23.5-83.5q0-61-31-89zm-1075 1q-29-29-91-29-13 0-17.5 8.5T725 2168l1 23v47q0 25-1 50 0 40 4 61t49 21q41 0 65-32.5t24-83.5q0-59-29-88zm392.5-1154.5Q1258 987 1299 987q40 0 68.5 25t28.5 58q0 35-29.5 59.5T1299 1154q-36 0-66-24t-30-60q0-34 27.5-58.5z"},"children":[]}]};exports.u1F4C0=u1F4C0;var u1F4C1={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2058.5 1169q-2.5 52-6.5 135l-33 605-10 194q-4 63-7 136t-3 101q0 35-29.5 64t-67.5 29q-16 0-29.5-4.5T1848 2417L732 1703q-17-9-29-28t-15-39L541 728q0-5-1.5-14.5T538 693q0-62 39.5-110.5T681 534q17 0 35.5 4t38.5 11q14-53 57.5-88.5T911 425q42 0 79 18t69 38l375 238q32-34 68-52t76-18q29 0 52.5 9t54.5 24l83 42q137 70 186.5 109.5t78 100T2061 1107q0 10-2.5 62zM638 711q0 2 6 37t17 102l97 605 27 166 1117 714-77-422q-15-79-28-159l-26-148q-26-149-32.5-206t-44-113-75.5-83l-116-74-115-72-136-84q-71-44-142-90l-136-86q-64-40-116-74l-83-53q-29-20-54-29.5t-40-9.5q-21 0-32.5 15T637 692v14q0 3 1 5zm1210 759l21 124 26 150q14 80 29 160l37-752 1-46q0-133-51-181t-236-139l-62-30q-18-8-35-8-43 0-75 45.5t-53 45.5q-10 0-20-4.5t-19-11.5l-35-24-370-236q-26-17-50-29t-45-12q-29 0-45 22.5T844 600l205 131q64 41 135 85l140 88q69 44 132 83l190 118q30 19 32 21l28 23q43 37 81.5 101.5T1833 1369z"},"children":[]}]};exports.u1F4C1=u1F4C1;var u1F4C2={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2284 1181l-6 134-39 799-13 237q0 37-30.5 65t-66.5 28q-16 0-28.5-4.5T2075 2429L959 1714q-5-2-12.5-8.5T936 1695l-163-178q-24-27-69-81.5T596 1301l-70-88-84-109q-82-105-101.5-136.5T319 919l-3-14q-2-9-2-21 0-41 32-75.5t79-34.5q38 0 72 17t117 73l282 191q12 9 25 17.5t24 16.5l8-127q5-75 6.5-150.5T968 656q0-90 44-155t125-65q58 0 123.5 41.5T1349 533l145 92q23 16 90.5 57.5T1655 726l5 4q31-34 68-52t76-18q42 0 80 20l90 45q139 70 192.5 108.5T2253 934t33 184q0 10-2 63zm-1273 451l1118 714-192-261q-49-66-94-130l-84-118q-24-35-75-109.5T1518 1579l-40-25q-47-31-80-52l-143-90-109-70q-32-21-95-63.5T938 1203l-203-137q-50-33-94-64l-80-54-86-56q-20-11-32-15t-18-4q-13 0-13 12 0 5 1 9l2 8q2 6 71.5 99T705 1280.5 919 1532l47 49q11 11 21 23.5t21 23.5zm774 66l158 225 134 187q32 45 59 81l7-137q3-77 8-162l37-731 1-52q0-115-47.5-166.5T1902 797l-62-30q-10-4-18.5-6t-17.5-2q-30 0-53.5 21.5t-39 46T1677 851q-10 0-20-4.5t-19-11.5l-35-25q-19-11-62-39l-97-61-110-71q-62-39-113-72.5t-84-33.5q-56 0-66.5 84.5T1053 883t-13 269q45 31 88.5 60.5t82.5 54.5l60 39q27 18 54 34l117 74q175 111 239.5 168.5T1785 1698z"},"children":[]}]};exports.u1F4C2=u1F4C2;var u1F4C3={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2395 2058q-39 67-86 104t-55 37l-977 228q-14 3-23.5 3t-20.5 1q-177 0-300-203t-183-542l-17-95q-24-139-51-338t-42-257l-380 83-12 1q-40 0-61-54t-21-140q0-87 38-152t98-99 79-34q6-2 43-10l94-19 132-25 154-30 160-30 152-29q141-26 211-37t126-11q174 0 268.5 90T1851 755t62.5 290 50.5 258l29 156q14 79 33 157l210-43h11q53 0 120 107t67 226q0 85-39 152zM807 1290l32 229q18 132 72.5 342.5t138 331T1233 2313l12-2q18-4 39.5-31.5t31.5-81.5q-24 11-54 19t-47 8q-25 0-38.5-18.5T1163 2168q0-37 31-47.5t121-34.5q-4-30-13-54t-20-44q-40 11-75 17l-77 14-20 2q-25 0-38-17t-13-38q0-43 62.5-55t67.5-13q-20-6-32-21t-12-35q0-22 13.5-38.5t33.5-20.5l719-144q-27-112-54-265t-48-254l-45-207-35-149q-26-114-86.5-175.5T1456 527q-25 0-50.5 2.5T1352 536l-80 14q-52 9-118 21l-294 56-150 29-132 27q64 50 108.5 123.5T752 959t43 237zm1397 801q51-29 82-79t31-106q0-52-22-105t-66-106l-887 177q50 58 73 128t23 149q0 24-6 71.5t-13 52.5zM988.5 1679.5Q977 1664 977 1644q0-39 43-52.5t333-73.5 319-68l33-10q16-5 29.5-8.5t20.5-3.5q23 0 37.5 17.5t14.5 37.5q0 21-16.5 34t-182.5 49.5-367.5 82.5-218.5 46q-22 0-33.5-15.5zM984 1369q-28 0-43-16.5t-15-38.5q0-46 59-47.5t194-35.5l103-25q90-23 205-39.5t156-29.5 50-13q21 0 34.5 15.5t13.5 33.5q0 28-44.5 43.5T1558 1249l-80 15q-81 14-234.5 55.5T984 1369zm-22-301q-21 0-32-14t-11-31q0-41 44-45.5t163-28.5l170-33q84-16 168.5-31.5T1634 857h7q19 0 28.5 12.5t9.5 28.5q0 36-37 43t-255.5 52.5T968 1068h-6zM847 820.5Q836 806 836 787q0-25 15.5-41.5t188.5-53 463-72.5h7q20 0 31 12.5t11 29.5q0 37-39 48t-192 29-292 57-151 39q-20 0-31-14.5z"},"children":[]}]};exports.u1F4C3=u1F4C3;var u1F4C4={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2399.5 633q-4.5 9-18.5 50l-136 392q-34 104-64 208.5t-68 240.5l-60 221-46 163-46 156q-22 74-52.5 151t-33.5 87-29.5 70.5-45.5 77.5-32 24.5-58 7.5q-30 0-146.5-18t-266.5-55-298.5-64-423.5-87l-148-34q-64-14-127-34l-8-2q-48-10-72-31.5t-24-54.5q0-20 9-37.5t15-26.5l3-6q113-199 189-519.5T534 1050l34-101q48-144 95.5-205t46.5-63 10-11l49-35q78-55 207.5-125.5t243.5-117 132-48.5h15q16 0 33 3.5t36 9.5l8 1q23 8 47.5 10t50.5 7l28 4q100 15 198 36t188 43l34 8q48 12 162 45.5t183 40 69 61.5q0 11-4.5 20zM2133 1038l79-234q12-38 25.5-76t24.5-67q-87-18-133-34.5t-85-26.5l-115-27q-92-22-185.5-43T1553 495l-27-3q-66-6-134-26l-147 291q-7 14-22.5 22.5T1193 788l-405-12q-67 73-127.5 266T523 1553.5 334 2077q60 19 122 33l145 33q131 31 344.5 72t304.5 62l127 30q60 15 124 27.5t139 21.5q7 0 17 1l43 6q10 0 18 1l5-3q9-16 17-34.5t14-35.5l10-28 50-130q53-138 152-515t167-580zm-399.5 630.5Q1719 1687 1693 1687l-8-1-74-20q-71-21-333-68t-377-78.5-123-41.5-11.5-19.5-3.5-18.5q0-17 10-29.5t28-12.5h6q447 49 679 108t247 78 15 43q0 23-14.5 41.5zm-68 249.5q-15.5 20-42.5 20-7 0-29.5-5.5t-210-40.5-259.5-54.5-191.5-38T752 1761t-67.5-32-6.5-26q0-20 14-37t37-17q148 0 498 85t402 92 52 50q0 22-15.5 42zm183.5-503q-15 20-43 20-11 0-322.5-61.5t-467-103-165-54-9.5-26.5q0-17 12.5-30.5T888 1146h9q190 39 558 105t388.5 80 20.5 41q0 23-15 43zm77-262q-11 15-34 15-26 0-52-5l-52-8q-102-12-277.5-44t-215.5-42l-154-38q-38-10-78-19l-52-14-21-4q-38-6-58-15t-20-36q0-17 12.5-33t34.5-16q26 0 57 9t59 14h7l253 55q249 54 363.5 70t176.5 20 62 58q0 18-11 33zm-500 993q-14 18-41 18l-225-50q-223-50-228.5-53.5T830 2039t-152-46-56-62q0-25 22.5-36t48.5-11q22 0 51.5 5t59.5 13l25 7 244 69q214 61 290.5 65t76.5 62q0 23-14 41zM1236 514q-90 38-163 76.5T944 664l214 5 64-129z"},"children":[]}]};exports.u1F4C4=u1F4C4;var u1F4C5={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2457 622q25 0 42 17.5t17 41.5v1561q0 24-17 41t-42 17H243q-24 0-41.5-17t-17.5-41V681q0-24 17.5-41.5T243 622h601l472-332q14-10 34-10t34 10l472 332h601zm-59 119H302v1441h1635v-247q0-24 17-41t41-17l28-1q156-6 229.5-29t145.5-89V741zM1049 622h602l-301-212zm382 244v158h-60v-21h-43v21h-59V866h59v23h43v-23h60zm625 1282q82-48 132-92t89-93q-39 10-108.5 18.5T2056 1992v156zm342-148q-37 48-78.5 94t-100.5 88h179v-182zm-1225-817h-162v-61h162v61zm258 0h-162v-61h162v61zm258 0h-162v-61h162v61zm-1032 0H495v-61h162v61zm1290 0h-162v-61h162v61zm258 0h-162v-61h162v61zm-1290 0H753v-61h162v61zm1250 216h-82v-80h82v80zm-516 0h-82v-80h82v80zm258 0h-82v-80h82v80zm-774 195h-82v-79h82v79zm258 0h-82v-79h82v79zm258 0h-82v-79h82v79zm258 0h-82v-79h82v79zm258 0h-82v-79h82v79zm-1549 0h-81v-79h81v79zm258 0h-81v-79h81v79zm259 390h-82v-78h82v78zm258-195h-82v-78h82v78zm516 0h-82v-78h82v78zm258 0h-82v-78h82v78zm-516 0h-82v-78h82v78zm-258 195h-82v-78h82v78zm-258-195h-82v-78h82v78zm-517 195h-81v-78h81v78zm258-195h-81v-78h81v78zm-258 0h-81v-78h81v78zm258 195h-81v-78h81v78z"},"children":[]}]};exports.u1F4C5=u1F4C5;var u1F4C6={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2493 678l-5 225q-2 72-4.5 150.5T2478 1212l-8 176q-5 109-11 219l-23 408q-5 87-12 202.5t-7 141.5q0 57-14 84.5t-57 32.5l-31 4-106 7-172 10-81 3q-38 2-63 2h-23q-371-19-812.5-68t-507-69-72.5-40-7-77l1-45q0-22 1-41l2-33q0-13 2-18-21-6-119.5-25T183 2035t-76-75q0-15 7-26t126.5-191.5T428 1416t134.5-332T653 767q-5 0-14-5l-21-8q-28-11-37.5-24.5T565 683t-6-53q0-45 3-89l6-88q5-53 28-77t90-24q132 0 329.5 10t270.5 12q17-69 64-106t119-37q76 0 123 44.5t61 113.5q8 0 32 2l298 32 90 9q55 4 134.5 26.5t157 40.5 103 59.5T2493 678zm-911 1425.5q26-43.5 145.5-320t175.5-567 56-300.5q0-38-38-43t-214-17l-572-37q-98-6-172-12l-119-9q-46-3-52-3-58 0-68 69.5T642.5 1162 458 1593.5t-151.5 259T268 1923t21.5 26.5 265 61T1073 2097l304 41q48 9 93 9 86 0 112-43.5zM948 1901q-11 0-11-10 0-5 1-6l83-179q6-6 121.5-56.5T1385 1509t127-169q0-69-70-69-57 0-132 37t-72 37q-3 3-7 3t-8-3.5-4-8.5l-14-148q0-15 130-77.5t234-62.5q89 0 151 58t62 145q0 85-64 179.5T1513 1607t-255 129l301 38q6 0 8.5 4.5t2.5 7.5-1 5l-79 171q-2 7-12 7zm990.5-1373q-73.5-4-115.5-10l-170-15-152-12-351-26-162-11-130-7q-56-3-80-3-8 0-18-1t-20-1q-48 0-57.5 26.5T673 575q0 13 1 25v23q0 26 25.5 38t68.5 14l44 3 248 19q372 30 602 43t251 13q79 0 89-24t10-99q0-98-73.5-102zm28.5 1192l11-222 3-102q-2 5-12 39l-88 301-44 141-115 283q-23 57-55 82t-92 25q-13 0-20-1l-168-11q-79-5-164.5-15.5T1062 2218l-442-64v25q0 16-1 32l-2 32q0 15-2 23 60 10 191.5 25t262.5 27l198 19q188 18 370.5 31.5T1889 2382l10-64 14-106 18-130q14-105 21.5-176.5T1967 1720zm-1081-19q5 0 8 5t3 8l-1 4-74 159q-3 8-11 8l-285-37q-6 0-9-4t-3-7 2-5l73-159q5-7 10-7l58 7 217-470-70-3q-12 0-12-12 0-3 1-4l77-168q5-8 11-8l257-8q5 0 9 4t4 8q0 2-1 3t-1 3l-312 677zM2375.5 643q-9.5-9-49.5-20 0 12-4 109.5t-7 162.5l-28 613q-9 175-27.5 455.5T2230 2378l33-2q28-2 29-32.5t14-214.5l31-480q27-432 37.5-673t10.5-298q0-26-9.5-35zM2051 1874l-24 273-23 234h20q13 0 39 1l17-234q15-205 23.5-340.5T2122 1488l12-227q5-113 9-220l14-351 3-100q-2-2-9-2h-11q-21 0-28 11.5t-10 97.5l-4 97q0 40-3 131t-4 116l-6 189q-5 161-13.5 321.5T2051 1874zm89 272l-18 236q12 0 25-1h24l17-235q12-161 22.5-329.5T2229 1500l11-219 10-212 8-192 6-158 3-109-48-10-3 105-6 157-8 194-10 216-11 223q-8 158-19 326.5t-22 324.5zM1314 540q23 0 38.5 18t15.5 42q0 26-17.5 44t-39.5 18q-25 0-41.5-18.5T1253 600q0-27 19-43.5t42-16.5zm79-159l141 4q0-16-18.5-38t-51.5-22q-29 0-49 13t-22 43z"},"children":[]}]};exports.u1F4C6=u1F4C6;var u1F4C7={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2306 1235q10 9 25.5 29.5t15.5 47.5q0 20-10 38t-27 28l-33 19-63 31q0 34-3 65t-11 61q67 112 87.5 179t20.5 123q0 92-71.5 183t-225.5 91q-83 0-160-9t-155-24q11 32 16.5 66t5.5 68q0 102-80 202.5T1390 2534q-207 0-457-62t-342-106.5-92-109.5q0-47 33-81t79-55l63-30q-195-120-308-324t-113-441q0-260 148.5-479T951 492l170-57q37-13 74.5-24.5T1271 388q0-41 24-67t52-34l23-6 90-19q19-7 47-7 31 0 54.5 14.5T1607 322l292 532zM878 642q-249 57-398 245.5T331 1331q0 212 101.5 397T710 2022.5t376 109.5q78 0 157.5-21.5T1385 2045q-50-88-143-197.5T1110 1686q-77 40-154 62.5T792 1771q-123 0-210.5-100.5T494 1434q0-100 48.5-172.5T710 1122t232-67q80 0 146 39L894 681l-13-31q-2-4-3-8zm386-162l-189 56-45 14-27 6q-25 6-43.5 17.5T941 603q0 13 7 26l12 25q24 48 117.5 248.5T1173 1109l4 8 250-88q-11-11-50.5-23.5T1337 940q0-20 12.5-34.5T1390 891q45 0 88.5 28t66.5 69l121-42q-14-19-55.5-30t-41.5-66q0-22 12-35.5t41-13.5q43 0 90 29t69 76l55-19-3-6q0-3-56.5-108.5T1693 619l-120-210q-2-3-22-43.5t-44-40.5q-11 0-20.5 3t-17.5 5l-36 6-42 9q-21 5-35.5 18t-14.5 35.5-8 41.5-29 26zm944 874l18-8q20-8 34.5-16.5t17.5-16.5q0-11-22.5-31t-97.5-91l-272-255q-5 6-11.5 10.5T1860 954l-56 19q3 17 3 34 0 42-19.5 83.5T1738 1132q-71 0-71-56 0-14 6.5-28.5t10.5-31.5l-113 38 4 21q2 11 2 22 0 42-20.5 84t-49.5 42q-34 0-52-14.5t-18-40.5q0-17 8-34.5t8-38.5l-213 76q69 61 193 162.5t154 126 61 24.5q30 0 45-9t135.5-56.5T1969 1361t53-10q22 0 59.5 16t61.5 16q10 0 16.5-4.5t14.5-7.5zm-611 543q10 13 19 27l16 29 115-65q109-61 185-125.5t122-145.5 46-172q-12 0-23.5-4t-21.5-9l-20-8q-10-4-17-4h-9q-4 0-6 1l-122 50q-165 66-175 71t-42 9q0 11 1 21.5t1 21.5q0 102-24.5 188t-44.5 115zm-718-299.5q43-47.5 43-111.5 0-77-54-131t-121-54q-56 0-96.5 42.5T610 1450q0 77 50 136t117 59q59 0 102-47.5zm361-337.5q28 60 28 135 0 21-1.5 42t-6.5 43q14 13 28 27l26 29q74 83 147 175.5t86 108.5q21-59 29-130.5t8-140.5v-11q-19-9-38.5-22.5T1523 1498zm-174 1010q52 12 108 19.5t105 7.5q83 0 124-24.5t41-71.5q0-25-12-61-83 29-169.5 49t-185.5 20q-17 0-25-1l-82 41zm814-356q7 0 14 1t14 1q76 0 113.5-22t37.5-65q0-18-8-45-39 38-83 70t-88 60z"},"children":[]}]};exports.u1F4C7=u1F4C7;var u1F4C8={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2367 2413q21 0 35.5 14.5t14.5 34.5q0 21-14.5 35.5T2367 2512H232q-21 0-35.5-14.5T182 2462V342q0-21 14.5-35.5T232 292q20 0 34.5 14.5T281 342v1644l236-241q19-21 47-21 26 0 46 16l211 177 435-1318q7-18 23-32t36-14q24 0 39.5 9t26.5 26l310 561 179-518q9-21 26-35l392-272q19-13 40-13 26 0 47 19.5t21 49.5q0 17-7 31t-22 25l-374 262-224 641q-6 19-22.5 33t-36.5 14q-28 0-42.5-9.5T1644 1350l-307-558-416 1265q-8 20-25.5 34t-40.5 14q-25 0-44-17l-241-201-289 295v231h2086z"},"children":[]}]};exports.u1F4C8=u1F4C8;var u1F4C9={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2367 2413q20 0 35 14.5t15 35.5q0 20-15 34.5t-35 14.5H232q-21 0-35.5-14.5T182 2463V340q0-20 14.5-34.5T232 291q20 0 34.5 14.5T281 340v62l290 289 191-146q17-14 41-14 23 0 39.5 12t24.5 32l509 1297 217-404q8-17 22.5-26.5t34.5-9.5q46 0 67 40l215 464 408 342q25 20 25 53 0 28-21 48.5t-49 20.5q-22 0-44-17l-418-351q-13-9-19-24l-164-354-224 414q-9 17-24 26.5t-33 9.5q-50 0-67-43L771 710 607 836q-18 15-43 15-28 0-47-20L281 595v1818h2086z"},"children":[]}]};exports.u1F4C9=u1F4C9;var u1F4CA={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2367 2413q20 0 35 14.5t15 34.5q0 21-15 35.5t-35 14.5H232q-21 0-35.5-14.5T182 2462V342q0-21 14.5-35.5T232 292q20 0 34.5 14.5T281 342v2071h249V464q0-23 16.5-39t39.5-16h207q23 0 39 16t16 39v1949h318V1132q0-23 16.5-39.5t39.5-16.5h207q23 0 39.5 16.5t16.5 39.5v1281h317V779q0-24 16-40.5t40-16.5h207q23 0 39.5 16.5T2121 779v1634h246z"},"children":[]}]};exports.u1F4CA=u1F4CA;var u1F4CB={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2426 982q0 35-17 62t-34 51l-39 59q-27 41-64 96l-83 123q-136 204-258.5 363T1792 1916l-107 141q-54 71-103 137l-185 249q-41 45-72.5 65.5T1270 2529q-74 0-179-103.5T685.5 2032t-406-389T174 1491q0-47 52-105.5T331 1275l72-72 324-330 173-183q49-51 93-98l78-84q54-57 141.5-151t146.5-94q42 0 124.5 49.5T1582 371q18-17 38.5-27.5T1666 333q15 0 29 7.5t31 7.5q13 0 26-11l26-24q14-13 32-24t43-11q101 0 227.5 96.5T2207 559q0 35-20 69.5t-20 57.5q0 11 1.5 25t1.5 27l-1 17q142 101 195 139t62 79v9zm-288 13l-50-38-22-16q-6 6-11.5 12.5T2041 966l-9 9q-32 28-60 40t-57 12q-52 0-110-35t-141-86-131.5-101-85-79.5T1411 644q0-31 13-61t29-57q-6-4-42-33t-59-29q-12 0-29 13t-41 39l-22 24-28 32q-9 9-114 123T917 908l-86 89q-54 55-147.5 143.5T533 1300t-77 90.5-20 34.5q0 16 32 53.5T624.5 1612t276 246.5 248 228T1262 2183t33 19q12 0 17.5-6t44.5-43.5 289.5-373 276.5-372 99-144.5 107-153.5 34-79.5q0-16-25-35zm-397-528l-34-17q-18-8-36-8t-40 14.5-41 35.5l-24 26q-18 20-36 51t-18 63q0 13 5.5 25.5T1534 679l74 61q96 80 132.5 97t82 45.5T1903 911q12 0 24.5-3.5T1953 896l5-3q37-28 70.5-82.5T2062 726q0-18-11-36t-78.5-77.5T1752 473zm140-102q-6 0-11-1-14 0-26 6.5t-12 19.5q0 16 41 38.5t43 24.5l52 37q59 43 65.5 54.5T2051 556q13 0 23.5-15.5T2085 512q0-20-18-41.5t-40-37.5l-24-17q-25-16-52.5-29.5T1893 367z"},"children":[]}]};exports.u1F4CB=u1F4CB;var u1F4CC={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M865 1775q-132-139-215-281t-83-233q0-51 26-77l70-70q28-26 77-26 64 0 156 43t197 120l433-434q-63-85-98.5-153T1392 553q0-25 14-39l89-89q13-13 38-13 94 0 293 156.5t346 349 147 280.5q0 25-13 38l-89 89q-14 14-39 14-43 0-111-35.5t-153-98.5l-433 433q78 105 120.5 198t42.5 157q0 49-26 75l-71 70q-26 26-77 26-91 0-233-83t-281-215l-249 251-396 334-31-30 334-397z"},"children":[]}]};exports.u1F4CC=u1F4CC;var u1F4CD={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2098 1514.5q-91 159.5-251.5 254T1497 1863q-103 0-196.5-28.5T1126 1754q-64 60-130 121l-129 119q-268 249-324 289t-88 40q-16 0-30-11t-14-31q0-14 14.5-41T652 1957.5 953 1598q-69-89-108.5-197T805 1171q0-284 204-488t488-204q189 0 349.5 94.5t251.5 254 91 343.5-91 343.5zm-976.5-498Q1180 1075 1262 1075q84 0 141-59t57-140q0-80-57.5-139T1262 678q-82 0-140.5 58T1063 876t58.5 140.5zm934 74.5q-13.5-32-45.5-32-74 0-89 110.5t-90.5 231.5-207.5 198-283 77q-19 0-31.5 4.5T1296 1693q0 24 65 38t136 14q153 0 287.5-78t209.5-208.5 75-278.5q0-57-13.5-89z"},"children":[]}]};exports.u1F4CD=u1F4CD;var u1F4CE={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M474.5 1722.5Q509 1639 575 1573L1602 547q43-43 96-66t112-23q133 0 241 111t108 245q0 58-20.5 111.5T2076 1021l-862 862q-25 25-55.5 37t-62.5 12q-78 0-146-66.5T882 1716q0-33 11.5-64t35.5-54l704-706 95 95-706 704q-8 10-8 23 0 30 26 57.5t55 27.5q6 0 12.5-2t13.5-9l860-861q45-46 45-111 0-84-69.5-154T1808 592q-65 0-113 48L669 1666q-47 47-71.5 107.5T573 1899q0 135 96.5 232t232.5 97q66 0 125-24.5t106-71.5l889-889 93 95-887 887q-66 66-149.5 101T902 2361q-187 0-324.5-137T440 1899q0-93 34.5-176.5z"},"children":[]}]};exports.u1F4CE=u1F4CE;var u1F4CF={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2384 617q17 18 24 39t7 44q0 21-7 41.5t-23 37.5L816 2519q-17 19-39 28.5t-47 9.5q-51 0-86-38l-426-456q-33-36-33-89 0-27 9-52.5t28-42.5L1914 291q17-15 37-23t46-8q24 0 45 10t38 27zm-165 173q28-30 45.5-49.5T2282 695q0-14-4.5-27t-19.5-29l-205-216q-16-17-33.5-34.5T1982 371q-17 0-36.5 16t-37.5 33l113 110q9 9 9 22t-9.5 22-21.5 9q-15 0-22-10l-115-110-61 60 106 104q4 5 6.5 11t2.5 11q0 12-8.5 21.5T1885 680t-22-8l-105-104-62 59 203 208q4 5 6.5 10.5t2.5 11.5q0 13-9 22.5t-24 9.5q-12 0-22-10l-204-210-53 52 110 110q4 5 6.5 11t2.5 12q0 11-9.5 20.5T1684 884q-13 0-22-9l-113-110-65 63 105 104q10 12 10 24t-9 21-23 9q-12 0-22-8l-107-107-65 63 204 214q9 11 9 21 0 14-10 23t-21 9q-13 0-23-10l-205-213-59 54 111 111q10 12 10 24t-9 21.5-22 9.5-22-9l-113-113-70 66 106 108q9 11 9 22 0 13-10 22.5t-21 9.5-23-10l-107-108-70 67 207 218q8 11 8 22 0 12-8.5 21.5t-22.5 9.5q-16 0-22-9l-209-218-61 59 112 113q10 12 10 24t-9.5 21-22.5 9q-12 0-22-10l-113-115-76 71 108 110q9 9 9 22 0 12-9 21.5t-23 9.5-22-9l-108-110-74 72 208 223q5 4 6.5 10t1.5 12q0 14-8.5 22.5T874 1861q-12 0-23-9l-209-224-65 62 113 116q9 11 9 22 0 13-9 22.5t-23 9.5q-12 0-22-8l-114-118-79 75 107 113q9 11 9 21 0 13-10 22.5t-21 9.5q-6 0-12.5-2.5T514 1965l-109-112q-5 5-45 38.5t-40 60.5q0 19 21.5 40T513 2173t167 181.5 35 21.5q28 0 65-42t40-45z"},"children":[]}]};exports.u1F4CF=u1F4CF;var u1F4D0={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2430 559l-396 1759q-9 42-41.5 67t-73.5 25h-11q-6 0-11-2L264 2092q-40-8-68.5-39t-28.5-75q0-28 13.5-54t37.5-43L2247 435q15-10 33-16t35-6q48 0 83 35t35 85q0 13-3 26zm-145 15q0-6 3-13t3-13q0-8-4-13t-9-5-9.5 4.5-12.5 9.5l-134 96 75 104q6 8 6 19 0 12-8 21.5t-24 9.5-24-13l-76-106-46 33 26 36q5 6 5 19 0 12-8 21.5t-22 9.5q-16 0-26-13l-26-37-45 33 26 36q5 8 5 20t-8.5 21-21.5 9q-17 0-26-13l-26-37-45 32 75 105q6 9 6 20 0 12-9.5 21.5t-22.5 9.5q-16 0-24-14l-77-105-45 32 27 36 4 9q2 5 2 9 0 13-10 23t-22 10q-15 0-26-14l-26-37-45 33 26 37q5 8 5 18 0 13-8 22.5t-22 9.5q-18 0-26-14l-27-37-46 32 77 108q6 8 6 18 0 12-9 21.5t-23 9.5q-7 0-13.5-3t-10.5-11l-77-107-45 33 27 39q5 8 5 16 0 13-8.5 23t-22.5 10q-15 0-26-14l-27-38-46 33 28 38q5 8 5 18 0 14-9 23t-21 9q-16 0-26-13l-27-40-46 33 77 109q6 8 6 17 0 13-9 22.5t-23 9.5q-7 0-13.5-3t-11.5-11l-78-107-45 32 29 38q5 8 5 19t-8.5 21.5-22.5 10.5q-16 0-26-14l-28-38-45 31 28 40q5 8 5 18 0 14-9 22.5t-21 8.5q-8 0-15-3t-11-9l-29-40-45 32 78 109q6 9 6 18 0 13-8.5 22.5t-22.5 9.5q-18 0-26-14l-78-108-45 33 29 39q5 8 5 18 0 11-8.5 21.5T870 1622q-16 0-26-14l-29-40-45 32 30 41q5 8 5 18 0 12-8.5 21.5T774 1690q-16 0-26-12l-30-40-44 32 78 109q5 8 5 18 0 13-8 22.5t-22 9.5q-18 0-26-14l-79-110-45 33 30 40q5 6 5 19 0 11-8.5 21.5T581 1829q-16 0-26-14l-29-41-45 33 30 41q5 8 5 18 0 12-8.5 21.5T485 1897q-16 0-26-12l-29-41-79 53q-15 11-25.5 20.5T315 1933q0 9 13 15t30 8l21 3 80 15q332 64 798.5 148.5t504 96 89.5 11.5q54 0 65.5-49.5t15.5-70.5zm-436 820v14q0 6-2 14l-87 381q-9 41-42.5 66t-72.5 25l-11-1q-6 0-11-1l-353-66q-42-8-69.5-39t-27.5-76q0-29 12.5-54t36.5-42l442-315q31-22 69-22 48 0 82 34t34 82zm-134 80q0-8 5.5-22t5.5-25q0-13-11-13t-23 10-19 14l-314 224q-9 7-23.5 15t-14.5 22q0 25 148 48.5t147 23.5q14 0 22-5l9-10q8-11 10.5-27t5.5-30z"},"children":[]}]};exports.u1F4D0=u1F4D0;var u1F4D1={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2148 1392q71 24 113 42.5t83 42.5l-63 177q-81-37-147-61t-165-53l-99-30 73-166 47 9q21 4 43 9 8-19 15-45.5t7-58.5q-18-43-32.5-92.5T2002 1044l-370 892q-11 27-35.5 56.5T1537 2040q-3 22-6 53.5t-3 67.5q0 54 8.5 113.5T1571 2388q9-5 23-23.5t77-158.5l60-133q33-74 68.5-156.5T1872 1747l72-172q48 12 114 35l-136 320q-161 378-218.5 481T1545 2514q-36 0-90.5-9.5T1342 2479l-80-21q-70-19-146-42l-151-45q-75-22-146-45l-134-42-177-57q-115-38-184-135t-69-239q0-58 6.5-87t7.5-30q0-13 137.5-337t261-580T859 460t244-103q42 0 79.5 5t66.5 10l14 2q217 40 470 119t285 102.5 43.5 39.5 24 36 16.5 79l12 213q9 156 34 207.5t25 94.5q0 44-8 73t-17 54zm-186-557q10-24 16-48.5t6-43.5q0-30-33.5-49.5t-272-94T1244 491l-15-3q-27-5-59.5-9.5T1103 474q-115 0-151.5 59t-93 167-151 314T544 1384l-61 144q-29 67-50 118 132 16 313 80t232 80l208 69q77 26 110 34t42 10l41 10q21 5 43 9t38 4q21 0 38.5-16.5t47.5-87.5l35-85q21-51 49-117l311-751zm-583 1532q26 7 54.5 13.5t54.5 10.5q-23-58-30.5-117.5T1450 2160q0-29 1.5-54.5t3.5-45.5q-39 0-99.5-14t-123.5-36l-175-57q-53-16-131.5-39.5T773 1864l-141-50q-64-22-116-36t-93-14q-15 0-22 3t-21 13l-4 30q-3 17-3 44 0 60 14.5 105t41.5 79 52 49.5 131 50.5l110 35q153 49 296 92t275 79z"},"children":[]}]};exports.u1F4D1=u1F4D1;var u1F4D2={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2286 940q19 45 27.5 100t8.5 109q0 65-15 118t-48 112l-36 63-564 1013q-51 93-130 93-53 0-126.5-47.5t-303.5-189T690 2077l-148-77q-83-42-106.5-64.5t-48-80.5-24.5-151q-37-33-61-79t-24-96q0-67 48.5-117t109.5-50q32 0 61 12 22-29 45.5-58.5T588 1256l13-19-13-2q-7 0-13-1-28 0-47 16t-22.5 50-5.5 34l-41-1-11 2q-6 2-11 2-11 0-14-11t-3-23q0-74 49.5-123.5T582 1130q42 0 81 21l99-137h-13q-31 0-49 16.5t-18 39.5l1 14v9q0 9-3 15.5t-10 6.5q-6 0-12.5-2.5T645 1110q-4 0-26-4.5t-22-28.5q0-69 48-118t111-49q37 0 70 15l89-121-15-1q-24 0-42 11.5T834 852l-7 29h-3l-2 1q-9 0-19.5-3.5T784 873q-5 0-12 1t-12 1q-12 0-12-16 0-68 50-114t106-46q40 0 77 19l36-50q18-24 38-48-29 5-44.5 17T984 685q-11 0-25.5-6t-26.5-6q-9 0-15.5-2.5T910 659q0-17 16-52.5t55.5-62T1063 518q31 0 63 12l81-100h-7q-25 0-46.5 18t-24.5 46q-11-2-21-7t-20-5q-12 0-23.5-2t-11.5-13q0-6 3-12l4-10q13-52 55.5-85.5T1207 326q28 0 55.5 10.5T1314 364q10-2 19-2 42 0 78 14.5t67 30.5l4 1q244 115 350.5 176.5t266 156T2286 934v6zM577 1434q14 19 28 47.5t14 55.5q0 17-15.5 27.5T570 1575q-14 0-27.5-8.5T525 1538q0-5-3-12l-7-11q-14 20-27 41t-20 41q26 5 54 20l48 26 26 13q35 18 69.5 37t70.5 40l67 37q230 130 407.5 240.5T1435 2151t69 30q9 0 19-8t24-33l607-1090 16-30q8-15 13.5-28t5.5-21q0-30-38-67t-113-82l-54-32q-95-57-237-133.5T1438 499l-26-13q-12-5-23-9 0 7 2 13t2 14q0 17-14.5 27t-31.5 10q-16 0-29.5-9.5T1300 501l-7-16q-23 26-44.5 53.5T1205 593q16 20 29.5 49.5T1248 696q0 17-14.5 26t-32.5 9q-15 0-28.5-8.5T1155 693l-3-8q0-5-2.5-8.5t-4.5-8.5q-23 29-44.5 58t-42.5 59q11 17 22.5 42t11.5 48q0 17-15.5 28t-32.5 11q-16 0-29-9.5T997 875q0-6-3-9l-45 61-44 62q14 19 26.5 46t12.5 49q0 15-13 25.5t-30 12.5q-26 0-37-10.5t-20-40.5l-53 74q-26 37-53 73 13 17 22.5 41t9.5 44q0 17-15.5 27.5T722 1341q-14 0-29-8.5t-18-25.5zm635.5-583q11.5-23 34.5-53l23-30q33-42 62-64.5t58-22.5q41 0 135.5 46t228 118.5 169.5 101 36 54.5q0 18-21.5 49t-64.5 99.5-78 68.5q-28 0-41.5-11t-45-20.5-67.5-33-131-68-181-92.5-109-70q-8-7-13.5-16t-5.5-18q0-15 11.5-38zm632.5 172q3-3 3-8 0-20-49.5-46T1628 880.5 1479 798t-75-28h-4q-17 0-51 43t-34 61q0 12 36 29.5t52 29 142.5 71 170 79.5 61.5 20q16 0 29.5-14.5t27.5-42.5zM367 1585q8-34 24-63t34-55q-33 3-49.5 23t-16.5 51q0 20 8 44z"},"children":[]}]};exports.u1F4D2=u1F4D2;var u1F4D3={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2261 2083.5q-31 38.5-128 68.5l-228 76q-230 77-454 133t-366.5 100.5T847 2506q-90 0-153.5-57.5t-225-603T307 1223q3-82 48.5-138.5T467 950l303-365 93-111 70-82q27-32 34-38l56-52q34-31 59-46t48-15q25 0 56 22.5t72 124 51 119.5 28 18q17 0 61-28t104-28q49 0 68 23.5t31 57.5l14 42q7 20 15.5 34t21.5 14q14 0 45.5-13t58.5-13q58 0 95.5 102t83 197 113.5 303 95.5 283 88 242.5T2292 1987q0 58-31 96.5zM891 2256q34-33 87-86l375-371q141-138 195.5-189t54.5-115q0-32-16-77t-137.5-344.5-211-500-101-207-19.5-6.5q-30 0-168 158.5T679 840l-179 219zm186-20q80-49 163-93t170-94 193.5-103 138-74.5 96-53 64.5-71.5q0-21-9.5-39.5T1841 1572l-226-639-86-242-16-43q-11-22-24.5-36.5T1455 597q-7 0-23.5 8t-42.5 25l-19 13 139 316 131 293 43 99q7 17 30 69t23 95q0 63-54 121t-143 146l-228 225zm1080-311q-12-29-20-52l-85-276q-149-484-229-672.5t-85-194-17-5.5q-8 0-20 5t-31 15q29 129 106.5 310t145 397 78.5 249.5 11 65.5q0 79-71 113.5t-95.5 53.5-101.5 61l-129 70q-130 69-268.5 147T1118 2339q138-50 431.5-126.5t444.5-126 163-67 12-37.5q0-28-12-57zM684.5 1177.5Q673 1163 671 1150q0-22 43.5-66.5T770 1025l86-98q41-47 80-76.5t81.5-64.5 74.5-35q12 3 21.5 9.5t9.5 20.5q0 30-49.5 67.5t-177 168.5-151 153-35.5 22q-14 0-25.5-14.5zm512.5-248q9 14.5 9 28.5 0 25-52.5 61.5t-120 112.5-114 107.5-73 69.5-49.5 38q-18 0-26-12.5t-8-24.5q0-45 62-94.5T932 1114t73-72 69-60l13-13q26-26 47.5-40t36.5-14q17 0 26 14.5z"},"children":[]}]};exports.u1F4D3=u1F4D3;var u1F4D4={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2270.5 1276.5Q2243 1336 2201 1418l-68 132q-39 74-83 156l-92 169h-1q-70 129-171.5 301.5t-163 259.5-82.5 105.5-52 18.5q-37 0-88-24.5t-97-57.5l-43-29q-47-30-104-68t-121-82l-264-180-323-222-53-37q-44-29-69-81t-25-113q0-27 12-70.5t132.5-245T698 952t281.5-399 168-214.5 32-18.5 39.5-6q24 0 45 5l35 8q50 10 304 143.5T2045 717t202 138.5 14 51.5q0 21-5.5 33.5t-2.5 83 16 105 21 43 8 23.5q0 22-27.5 81.5zM1552 2058l39-66 189-359q47-89 95-181l93-180q74-143 117.5-231.5t45.5-95 2-15.5q0-22-30.5-39.5T2052 860l-93-57q-64-39-134.5-81.5T1689 641l-46 77-484 12 51-78 478-12q-49-30-96-57t-90-50l-218 5 52-79h22l-45-19q-9-3-18-5t-21-2q-45 0-81.5 26t-57.5 64-276.5 403-324 489-81 142.5T441 1592q0 13 11.5 18t27.5 5q22 0 42 6.5t47 21.5l17-28 524-14-47 78-414 11 170 109 176-6-48 80h-11l135 87q272 178 305.5 210.5t53.5 32.5q35 0 54-30t68-115zm-137 360q0-25-3-54l-5-46-730-497q-3-2-85.5-57.5T466 1708q-11 0-20.5 8t-9.5 27q0 18 16.5 43.5T515 1838l159 103 703 464q37 25 38 25v-12zm99 12q44-67 154.5-256.5T1886 1790l110-200q75-136 133-250t66-144q-19-37-25-74-19 38-71.5 135.5T2004 1432l-89 162q-46 85-94 171l-177 319q-20 36-77 136.5t-61 102.5q0 10-1.5 24.5t-1.5 21.5v9q0 15 3 29.5t8 22.5zM711 1422l515-14-46 80-521 12zm125-192l507-14-48 80-510 12zm124-193l498-12-47 78-501 12zm568-126l-494 12 51-79 489-13z"},"children":[]}]};exports.u1F4D4=u1F4D4;var u1F4D5={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2175 1779q0 14 1 28 0 41-17 66t-49 25q-2 0-3.5 4t-1.5 10l-1 20q0 15 2 31l4 31q3 20 3 38l-1 7q0 20 12 39l21 42q10 22 10 45 0 47-38.5 66t-95.5 19l-26-1q-20 0-36 1l-45 1q-36 0-90 1l-123 2q-70 0-148 1l-332 2q-511 0-567-9t-109-43.5-87.5-102T423 1885q0-112 4.5-224t4.5-224q0-246 17-442t39-267 81-122.5T808.5 545t409.5-11h164q129 0 247.5 6.5t266.5 18 165.5 144 43 373.5 36.5 355 17 181l14 143zm-148 326l-6-20q-3-11-5.5-28.5t-2.5-49.5q0-15 2.5-33.5t2.5-36.5q0-16-11-24.5t-405-10.5l-412-2H796q-98 0-136.5 35.5T621 2037q0 45 17.5 72.5t43 41.5 392.5 14q94 0 197-1l204-2q100 0 192-3l162-4q91 0 145.5-3t54.5-24q0-14-2-23zM1007 977q0 14 9.5 24t23.5 10h611q12 0 20.5-8t8.5-21v-5l-15-148q-2-14-13-23.5t-24-9.5h-588q-14 0-23.5 9.5T1007 829v148zm-340 726l-1-59q0-197 5-364.5T682 892l4-101q2-50 2-104 0-16-3.5-28T667 647q-19 0-42.5 23T601 743l1 18q0 26-19 366.5T564 1767l1 29q0 22 5.5 38.5T584 1851q12 0 13.5-21.5T633 1789t34-86z"},"children":[]}]};exports.u1F4D5=u1F4D5;var u1F4D6={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2389 1965q0 27 1 44.5t1 32.5q0 8-1 14.5t-1 12.5q2 4 2 6v5q0 16-18.5 33.5T2335 2131q-24 0-48.5-11t-126.5-31.5-236-20.5q-129 0-241.5 15.5t-183.5 39-92 27.5l-47 10q-21 5-38 7t-25 2q-58 0-211.5-50.5T675 2068q-133 0-233.5 20t-128 31.5T264 2131q-16 0-36.5-15.5T207 2080l1-13v-19q0-16 1-30.5t1-30.5v-22l-7-57q-3-16-4.5-29.5T197 1860q0-56 17-177t41-267l53-319q11-65 15-99l2-8 8-85q9-94 52.5-124.5t216.5-86T910 639q119 0 219.5 41T1300 806q63-78 162-122.5t227-44.5q140 3 317 59t214 87.5 46 119.5l8 85 2 8q4 34 15 99l25 147q48 278 66 415t20 201q0 5-2 18zm-1209-136l21 11q10 6 19.5 10t16.5 4q5 0 8-4t3-15v-90q0-36-1-83l2-442q0-248 5.5-294T1149 802.5 912 725q-78 0-210.5 30t-194 59-72.5 88l-6 28q-16 87-25 187.5T348 1484t-47 306q0 9 4.5 18t12.5 9q3 0 11-3l53-19q97-29 193-43t198-14q143 0 247 29.5t160 61.5zm1115.5-56.5q-2.5-9.5-2.5-16.5-15-130-48.5-308t-51-337.5-33.5-227-197-113-276-45.5q-109 0-192.5 50T1375 862t-31 80.5 7 287.5l1 521-1 84q0 13 2.5 16t8.5 3q13 0 51-22.5t148.5-58T1828 1738q110 0 215.5 17t190.5 46l37 13q7 3 10 3 9 0 13-8t4-18q0-9-2.5-18.5zM1500 1330l3-4q29-23 118.5-48.5T1824 1252q63 0 125 10.5t109.5 30 54 27 6.5 17.5q0 13-10 24t-25 11q-6 0-86.5-20t-175.5-20q-92 0-164.5 18t-91.5 26l-24 11q-13 6-24 6-14 0-21.5-10.5t-7.5-24.5q0-17 11-28zm-400 0q10 10 10 27 0 14-7 25t-21 11q-11 0-24-6l-25-11q-15-7-89-25.5T791 1332q-111 0-191 20t-86 20q-14 0-24-11t-10-24q0-10 6-17.5t54-27 110-30 125-10.5q115 0 206 26.5t115 47.5zm380-346q-13-14-13-31 0-38 103-65t200-27q102 0 179 24.5t93.5 35T2059 947q0 15-11.5 27.5T2019 987q-6 0-70-24t-164-24q-79 0-145 17t-89 29.5-38 12.5q-20 0-33-14zm-361.5 0q-13.5 14-32.5 14-15 0-38-12.5T959 956t-145-17q-100 0-164 24t-69 24q-17 0-29-12.5T540 946q0-15 17-26t93.5-35T829 861q106 0 193.5 27t98.5 39.5 11 25.5q0 17-13.5 31zm400.5 212q-3 0-6 1-16 0-26.5-14.5T1476 1153q0-13 7.5-23t115-44 222.5-34q95 0 181 26.5t86 55.5q0 12-11 23t-26 11l-6-1q-115-40-200-40-82 0-163.5 19.5T1525 1194zm-406.5-13.5Q1102 1197 1085 1197q-2 0-5-1l-6-2q-75-28-156.5-47.5T754 1127q-90 0-143.5 20.5T547 1168q-14 0-25-10t-11-24q0-28 86.5-55t180.5-27q115 0 222.5 34t115 44 7.5 23q0 15-10.5 29.5zM2122 1569q-8 10-22 10-10 0-99.5-26t-168.5-26q-69 0-140 18.5t-134 43.5l-8 3q-4 0-9 1-17 0-29-13.5t-12-27.5q0-17 15-28t98-37.5 190-26.5q104 0 208 27t111.5 37 7.5 22q0 13-8 23zm-1034.5 10.5Q1075 1593 1058 1593q-5 0-8-1l-9-3q-62-25-133.5-43.5T767 1527q-48 0-95 8t-98 23l-64 20q-4 0-11 1-14 0-22-10t-8-24q0-10 7-20.5t111-37.5 208-27q110 0 193 27t97.5 38 14.5 27q0 14-12.5 27.5z"},"children":[]}]};exports.u1F4D6=u1F4D6;var u1F4D7={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2291 1830.5q-53 51.5-107.5 73.5t-150 54.5T1776 2036l-212 59q-32 9-103 31t-135 22q-112 0-231-89.5T830 1855l-267-207q-226-175-243.5-194t-40.5-56-23-77q0-20 8-44l8-26q6-19 13-46l15-56q10-41 18.5-83t8.5-54q0-7-3-17l-6-22q-4-11-7-23t-3-23q0-92 134.5-137T822 717t316-28q98 0 169.5 28.5T1468 810l127 91q163 119 298 220.5t246 197.5 136.5 132 40.5 68.5 26 135.5q2 20 2 29 0 95-53 146.5zM1275 1989q8-23 15-48t7-51q0-38-4-72.5t-15-70.5q-12-4-92.5-60.5T993 1546l-153-114q-78-58-152-115l-135-102q-61-46-101-78l-49-38q-4 67-26 137t-22 82q0 38 55.5 89T690 1624l134 98q67 50 132 97l117 84q55 40 104.5 75t84.5 48q4-9 7-19zm927.5-383.5Q2173 1579 2122 1579q-75 0-249.5 47.5T1610 1694l-104 23q-17 4-63.5 14t-50.5 10q7 33 11.5 64.5t4.5 65.5q0 42-7 83.5t-24 78.5q11-2 47-11t89-23l116-30q64-17 130-36l130-36q227-64 263.5-90t58-63.5 21.5-73.5q0-38-29.5-64.5zM682 859q-33 6-62 13l-56 13 903 716 117-27zm207-36l-60 10q-31 5-63 11l897 711 115-26zm218-29q-37 4-65.5 6.5T975 810l883 700 117-26zm257.5 826q9.5-2 20.5-2L492 910q-21 9-33.5 20.5T446 956q0 7 7 18t109 93l111 89q62 50 129 102l132 103q66 52 123 95l100 75q84 64 118.5 77.5t68.5 13.5q11 0 20.5-2zm767.5-151q8 0 8-6t-6.5-16-14.5-20l-16-17q-10-10-35.5-30.5T1944 1286l-133-100q-348-260-451.5-321.5T1223 796q-8 0-12-2l851 677 25-2h45z"},"children":[]}]};exports.u1F4D7=u1F4D7;var u1F4D8={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2337 1616l5 43q2 19 2 26 0 93-52.5 145t-109.5 74.5-152 55-254 76.5l-212 59q-32 9-103 31t-135 22q-62 0-119-24t-140-86l-371-286-251-196h-1q-99-78-117.5-95.5T282 1403t-26-82q0-20 8-44l8-26q6-19 13-46l15-56q10-41 18.5-83t8.5-54q0-7-3-18l-13-46q-3-11-3-21 0-92 130.5-136.5t378.5-73 321-28.5q98 0 169.5 28.5T1468 810l127 91q339 247 428.5 321t169 144 102 111.5 28.5 60 14 78.5zm-1044 201.5q-4-34.5-15-70.5-12-4-92.5-60.5T993 1546l-153-114q-78-58-152-115l-135-102q-61-46-101-78l-49-38q-4 67-26 137t-22 82q0 38 55.5 89T690 1624l134 98q67 50 132 97l117 84q55 40 104.5 75t84.5 48q5-12 20-59.5t15-76.5q0-38-4-72.5zm878-27.5q23-20 42-53t19-67q0-38-29.5-64.5T2122 1579q-75 0-247 46.5t-266 68.5l-104 23q-16 4-62.5 14t-50.5 10q7 33 11.5 64.5t4.5 65.5q0 42-7 82.5t-24 79.5q11-2 47-11t89-23l116-30q64-17 130-36l130-36q105-30 176.5-54t83.5-34 20-14zm-131-431l-111-85-884 173 111 83zm-185-140l-55-41q-28-21-57-42l-879 171 110 85zm-186-138l-116-84-868 170 108 85zm-250-178q-17-11-32-21.5t-32-19.5l-844 164q22 17 48 39t57 46l862-167q-17-11-31-22zm-188 681q27 17 54.5 27.5t58.5 10.5q11 0 61.5-8.5T1510 1592l189-46 108-24 180-39q33-7 47-9l40-4q19 0 40-1h18q9 0 9-7 0-8-11.5-22.5T2107 1414zm-65-792q-43 0-100 6t-110 14l-89 14q-236 38-328.5 66.5T446 955l1 8q0 5 4 7l812-159q-26-13-47-16t-50-3z"},"children":[]}]};exports.u1F4D8=u1F4D8;var u1F4D9={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2337 1616l5 43q2 19 2 26 0 49-15 90.5t-91 100.5-582 194l-92 25q-37 10-107.5 32t-130.5 22q-57 0-112.5-22t-146.5-89l-371-286-251-196q-101-78-119.5-95.5t-44-57.5-25.5-81q0-20 8-44l8-27q6-19 13-46l15-56q10-41 18.5-83t8.5-54q0-7-3-17l-6-22q-4-11-7-23t-3-23q0-92 132.5-136t379-73 314.5-29q92 0 163 25.5t172 96.5l126 90q352 255 496.5 378.5T2262 1435t40.5 59 21 45.5 13.5 76.5zm-1075 410q9-28 22-64t13-70q0-38-4-74t-15-72q-10-2-75.5-47T993 1545l-153-113q-65-49-138.5-104.5T553 1214l-101-77q-40-31-49-39-4 68-26 138.5t-22 82.5q0 21 22.5 55T690 1624l266 195q65 48 117 85l86 61q41 30 63 42t40 19zm940-421q-30-26-80-26-75 0-241.5 46t-271.5 70l-104 23q-16 4-62.5 14t-50.5 10q6 30 11 62.5t5 66.5q0 42-7 83t-24 79q11-2 47-11t89-23l116-30q64-17 130-36l130-36q227-64 263.5-90t58-63.5 21.5-73.5q0-39-30-65zM1025 930l-118 26 105 84 119-25zm30 344l107 85 117-26-105-84zM825 972l-118 26 105 84 119-25zm537 344l117-24-105-85-119 26zm-363-205l-118 26 107 83 117-24zm737 301l117-25-106-84-118 26zm-306-42l106 85 117-25-105-85zm74-259l-105-85-118 26 105 83zm-174-139l-105-83-118 24 105 85zm6 525l117-26-105-84-118 25zm237-331l-118 24 105 84 119-25zm-385 12l117-25-106-83-118 24zm-492-3l107 84 102-22-105-84zm-173-138l104 85 104-22-105-85zm348 277q28 21 55 42l53 41 100-22-105-83zm382 200l-105-84-97 21q32 23 59 44.5t50 38.5zm683-144l93-19-50-40q-28-21-60-44l-90 19zM682 859q-33 6-62.5 12.5T564 885l74 59 118-25zm1165 355l-54-42-57-41-81 17 105 83zM889 823q-29 5-60 9.5T766 844l72 57 118-25zm774 255q-31-22-59-43l-55-41-68 15 105 85zm-196 523q19-3 34-6l27-6 56-14-62-49-118 25zm-360-805q-37 2-65.5 6t-66.5 7l63 50 118-25zm751 713l64-14q30-6 53-10l-53-44-119 26zm-383-567q-29-21-48-34l-33-22q-14-9-23-14.5t-16-10.5l-50 10 107 84zm587 529q14-2 29.5-2t40.5-1q9 0 9-7 0-6-8-17.5t-23-27.5l-13-12-94 20zm-399 85q28-8 57-14t58-13l-56-46-118 25zM492 909q-21 11-33.5 22T446 956q0 6 3 11.5t11 14.5l97-22zm742 677q27 17 54 27t57 10q10 0 19.5-2.5t20.5-2.5l-63-50zm29-774q-20-11-31.5-13.5T1211 796l26 22z"},"children":[]}]};exports.u1F4D9=u1F4D9;var u1F4DA={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2473 1545l5 43q2 19 2 26 0 87-54 145.5T2229 1868l-78 27q31 48 43.5 96.5T2207 2097q0 136-111.5 204T1472 2506q-84 23-155 45t-131 22q-58 0-113.5-23T930 2462l-121-93-383-297q-95-73-201-157t-106-170q0-18 8-44l8-26q6-20 13-46l15-56q13-47 21-86.5t8-53.5q-6-14-14-38t-8-44q0-53 47-92t189-73l6-23q-8-6-105-82.5T210 919q0-21 5-35.5t11-35.5l27-104 14-58q6-27 10-49.5t4-32.5q-6-14-13.5-37.5T260 523q0-100 159-143.5T738 319l228-25 62-6q31-2 63-2 143 0 256 72t464.5 336.5 415 351.5 69.5 223q95 81 130 132t47 144zm-1348 904q21-58 27.5-85t6.5-49q0-37-2.5-74.5T1140 2170q-11-4-89-58.5T856 1969l-153-113q-78-58-153-115l-236-180q-41-31-50-39-4 64-24.5 136.5T219 1732l-1 11q0 32 34 68.5T432 1958l120 90q66 49 134 98l133 97q65 48 117 85l126 90q17 11 31.5 18t31.5 13zM309 905l-1 10q0 28 22.5 55t71.5 67l63 51q15 13 34 27l38 29q20 15 40 29l465 338 110 79q17 11 31.5 19t30.5 13q14-30 24.5-64.5t10.5-69.5q0-74-17-145-15-5-122-80t-192-140l-125-97-234-178-204-154q-2 65-24 136.5T309 905zm1030 700l-5 15q-3 7-5 9 25-5 80.5-19t127.5-33l152-41q377-100 416.5-132t59-66.5 19.5-71.5q0-35-28-62t-78-27q-81 0-267 50t-248 64l-103 23q-15 4-62.5 14t-53.5 10q8 33 12 63t4 62q0 58-7 91t-14 51zm726.5 426q-27.5-27-77.5-27-78 0-254.5 47.5T1472 2119l-104 23q-16 4-62.5 14t-51.5 10q17 63 17 127 0 42-8 84.5t-24 78.5q11-2 47-10.5t89-22.5l116-30 130-35q359-98 392-126t56.5-60 23.5-77q0-37-27.5-64zm273-495q-28.5-28-80.5-28-49 0-135 18t-250 66l-343 96q7 28 10.5 55t3.5 57q0 83-31 160 12 0 57-13l109-28q375-95 531.5-150.5T2367 1599q0-35-28.5-63zM1224 2046q8-1 18-3l24-5q13-3 34-6-23-14-46.5-29.5T1203 1967l-120-93q-16-12-108.5-83T832 1681l-133-104q-66-51-118-93l-86-68q-47-37-63-61.5t-24-40.5q-46 14-73 29t-27 36q0 9 6.5 18.5t108 93T663 1682l133 103q66 51 123 94l100 75q90 68 122 80.5t66 12.5q9 0 17-1zM997 687q142-14 177-25t104-21l15-3q14-2 23.5-8t9.5-14q0-9-14-24t-31-29l-21-16q-20-17-39.5-29.5T1173 505q-27 0-251.5 24T697 592q0 23 50 66t101 43zm-505 551q0 4-1 9 0 40 50 85t165 131l120 90 266 195 116 84q52 38 86 62l40 28q17 11 32 19t31 13q12-29 23.5-64.5t11.5-70.5q0-25-2-50.5t-5-49.5q-44 14-80.5 20t-68.5 6q-77 0-145-38.5T992 1612l-157-123-110-85-232-177z"},"children":[]}]};exports.u1F4DA=u1F4DA;var u1F4DB={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2250.5 2017.5q-137.5 201.5-376 310T1270 2436q-444 0-751.5-239T211 1519q0-197 55-396.5t141-371T584 451t119-143.5 46-14.5q43 0 67.5 40T861 452.5 912.5 579t87.5 47q37 0 71.5-35t67-116.5 73-141T1292 274q37 0 67.5 27t63.5 103l31 71q29 67 65.5 112.5T1595 633q31 0 62.5-35t81.5-151l24-58q20-47 45.5-68t52.5-21q25 0 56.5 25t158 222T2295 990t93 520q0 306-137.5 507.5zM1959 1147q0-47-32.5-80t-78.5-33H752q-46 0-78.5 34t-32.5 79v493q0 45 33 78t78 33h1096q45 0 78-32t33-79v-493z"},"children":[]}]};exports.u1F4DB=u1F4DB;var u1F4DC={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1045 2285q2 6 2 12 0 25-39 54.5t-86 29.5q-39 0-49-24l-50-116q-2-6-2-11 0-26 41-55t86-29q38 0 49 23zm1460-594q0 3 1 8 0 19-12.5 21t-111 34.5-240 146.5-230.5 159-184.5 65.5T1477 2146h-53q-37 0-96.5 8t-145.5 35l-80 26q-19 23-42 41l-23-53q19-17 29.5-35t10.5-33q0-24-23-36t-57-12q-89 0-177.5 56T731 2247q0 26 25 37.5t63 11.5l20 51q-10 2-19 2h-19q-48 0-82-15.5t-46-44.5L145 1036q-6-15-6-30 0-72 106.5-149T477 780q48 0 84.5 15.5T609 841l11 29q50-14 109-25t113-11h61q235 0 371-62t285-188 347-175l7-1q13 0 18 13zm-223-106l-432-962q-5-11-19-11h-4q-6 0-62.5 28.5t-179 127.5-212 142.5-178 60.5T966 988h-59q-54 0-112.5 11T686 1024l424 1008q49-14 113-28t129-14h48q158 0 247-18t183-65 224.5-151.5 176.5-124 49.5-24.5 3.5-14q0-4-2-8zM223 814q-2-6-2-11 0-26 40-55t86-29q18 0 30.5 6t17.5 17l7 15q-45 8-91 27t-82 45z"},"children":[]}]};exports.u1F4DC=u1F4DC;var u1F4DD={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2433.5 655.5Q2418 688 2388 722l-37 42q-46 48-162.5 157T1946 1145l-237 214-99 86q-67 58-164.5 78t-127.5 27l-81 21q-39 11-66 11-22 0-31-16.5t-9-31.5q0-11 1.5-21.5t3.5-18.5q0-9 3-32l18-116 11-66q18-111 41.5-155.5t68.5-106T1500 769l112-119h-1q309-325 372-359t127-34q82 0 162.5 52T2401 442t48 145q0 36-15.5 68.5zm-262 1564.5q-147.5 50-315.5 79t-502 107-590 87h-13q-45 0-78-14t-90-108.5-100.5-229-72.5-279-78-317T228 1082t-66-340.5-11-58.5q0-34 39-44.5T343 621t194-16l134-15q118-13 291-26t321-56 175-43q23 0 35.5 17t33.5 68.5 21 60.5q0 13-23 38t-37 25q-15 0-29-51t-40-51q-10 0-117 27.5T1081.5 637t-303 33.5-223 22.5-100.5 7l-73 8q-38 4-74 7-17 0-26 2.5t-26 5.5q0 8-1.5 15.5T253 754q3 36 37.5 178.5t68 306.5 58.5 241 75.5 319 98.5 357 87.5 172 103.5 57q94 0 446-67t372-72.5 221-51.5l127-25q84-15 137-33t53-38q0-10-9-26l-18-28q-84-145-133.5-243T1834 1412l-3-15q-2-6-2-12 0-13 16.5-41.5t28.5-28.5q12 4 43 75t101 245 156 297.5 132 185.5q13 18 13 28 0 24-147.5 74zM1381 1208l12 82 70 14 626-600q-33-22-56.5-50.5T1993 587zm-95-44l67 15 625-633q-3-10-5-25l-4-30q-2-14-5-24t-9-10q-18 0-44.5 33t-163 165.5T1471 935t-185 229zm-56-355q20 0 30 13t10 30q0 46-54.5 55.5t-156 21.5T918 956.5 845 972q-14 0-28-1.5t-28-1.5q-24 0-84 23.5T600 1016q-37 0-79-23t-42-59q0-21 15-36.5t33-15.5q10 0 20 6l20 13q10 7 20.5 13t22.5 6q27 0 67-23t103-25l47-1q55-2 86-15t75-13h24q51 0 104-14t107-20h7zm1050-397.5q-76-74.5-163-74.5-40 0-55 22t-15 54q0 69 37 129t94.5 87.5T2275 657t60-24 21-66q0-81-76-155.5zM2193 755q-8-4-19-9l-25-10q-14-5-26-12l-631 606 23 70q38-30 357-326.5T2196 772t5-9-8-8zm-1174 402l9-2q3 0 8-1 20 0 32.5 15.5t12.5 35.5q0 29-32.5 48t-75.5 19l-15-1h-17q-12 0-22.5 3.5T898 1283l-20 10q-11 5-28.5 10t-57.5 5l-62-1q-60 0-85.5 13t-37.5 13q-24 0-39.5-19t-15.5-39q0-27 29-41.5t51-27.5 49-13q26 0 54.5 6.5t56.5 6.5q18 0 28-2.5t30-13.5l23-12q12-6 24.5-10t23.5-4 21 1.5 20 1.5q26 0 57-10zm262 321q38-5 100.5-23.5t99.5-35.5l-28-77-80-16q-7-2-11-6t-4-9l-16-94-71-16q-23 59-36.5 121t-15.5 81 16 42.5 46 32.5zm-235.5-.5q14.5 14.5 14.5 34.5 0 47-61.5 58.5T901 1599t-65 17q-18 0-38.5-6t-37.5-6q-22 0-40.5 5.5T678 1615q-19 0-32-12t-13-31q0-23 38.5-47t77.5-24q19 0 39.5 6t45.5 6q21 0 51-19t51-19h23q23 0 31-6t21-6q20 0 34.5 14.5zm1212.5-935q-11 7.5-22 7.5-37 0-66-28.5t-29-69.5q0-13 7-20.5t25-7.5q34 0 65 28.5t31 63.5q0 19-11 26.5z"},"children":[]}]};exports.u1F4DD=u1F4DD;var u1F4DE={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2228.5 1295q-188.5 335-452 597.5t-595 447.5T697 2525q-46 0-90-14.5t-97.5-50.5-111.5-95-127-153-79-111.5-10-38.5q0-20 9.5-37.5T218 1995l479-343q22-16 50-16 32 0 52.5 19.5t66.5 91T996 2016q148-22 355.5-181t370-369 186.5-362q-136-57-185.5-85.5t-122-69.5-72.5-94q0-27 15-50l344-479q25-36 67-36l20 2q14 1 139 93.5T2301.5 553t89.5 134 26 120q0 153-188.5 488z"},"children":[]}]};exports.u1F4DE=u1F4DE;var u1F4DF={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2165 662q74 0 126.5 52.5T2344 841v1132q0 74-52.5 126.5T2165 2152H433q-72 0-125-52.5T255 1973V841q0-74 53-126.5T433 662h1732zm-46 289q0-47-32-79t-79-32H591q-47 0-80 32.5T478 951v515q0 46 33 78.5t80 32.5h1417q47 0 79-32t32-79V951zM773.5 1748.5Q740 1714 692 1714q-47 0-81 34t-34 81 34 81 81 34q48 0 81.5-34.5T807 1829t-33.5-80.5zm1213.5-.5q-34-34-81-34t-81 34-34 81 34 81 81 34 81-34 34-81-34-81zm-766.5 16q46.5 29 79.5 29 32 0 75-34t43-57-35.5-36.5-87.5-13.5q-64 0-92.5 16t-28.5 36q0 31 46.5 60zm156.5 167q-41-35-75-35-32 0-80 28t-48 60q0 26 32.5 39.5t88.5 13.5q42 0 82.5-12t40.5-34q0-25-41-60zm-198-33q38-39 38-58 0-28-49-54.5t-73-26.5q-21 0-31.5 13t-12.5 24l-2 8q0 11-1 22.5t-1 23.5q0 36 15 61.5t44 25.5q35 0 73-39zm369-94l-1-8q-2-12-13-24.5t-31-12.5q-29 0-75.5 27t-46.5 54q0 19 39.5 58t67.5 39q32 0 47.5-25t15.5-62q0-23-3-46zm-719.5-438q-7.5 19-21.5 19t-21.5-20-7.5-46q0-22 7.5-41.5T807 1258t21.5 20.5 7.5 43.5q0 25-7.5 44zm1182 0q-7.5 19-21.5 19-15 0-21.5-21t-6.5-47q0-23 6.5-41t21.5-18q14 0 21.5 20.5t7.5 43.5q0 25-7.5 44zm-466 0q-7.5 19-21.5 19t-21-20-7-46q0-21 7-41t21-20q17 0 23 20.5t6 43.5q0 25-7.5 44zm170 1q-7.5 18-21.5 18t-21-22.5-7-47.5q0-21 6.5-39t23.5-18q14 0 20.5 21t6.5 44q0 26-7.5 44zM827 1162.5q-9 17.5-20 17.5-14 0-21.5-20t-7.5-46q0-24 6.5-42t22.5-18 22.5 20 6.5 43q0 28-9 45.5zm1182 0q-9 17.5-20 17.5-15 0-21.5-21.5t-6.5-47.5q0-23 7-40t21-17q16 0 22.5 20t6.5 43q0 28-9 45.5zm-507-2.5q-7-20-7-46 0-22 7-41t21-19q16 0 22.5 20t6.5 43q0 31-8.5 47t-20.5 16q-14 0-21-20zM974.5 990q20.5-6 43.5-6t43 6.5 20 21.5q0 14-20.5 21t-49.5 7h-11q-8 0-27-7t-19-21q0-16 20.5-22zm739.5 173q-8 17-21 17-14 0-21-22.5t-7-47.5q0-23 8-39.5t22-16.5q15 0 21 21t6 44q0 27-8 44zm-678 237q16 0 30.5 7.5t14.5 20.5q0 15-20 21.5t-46 6.5q-23 0-42-7t-19-21q0-15 20-21.5t45-6.5h17zm887 0q16 0 30 7.5t14 20.5q0 15-19.5 21.5t-45.5 6.5q-24 0-43-7t-19-21q0-12 18-20t48-8h17zm-969.5-33q-6.5 18-20.5 18-16 0-22.5-21t-6.5-45 7-42.5 22-18.5 21 22.5 6 42.5q0 26-6.5 44zM740 1400q16 0 30.5 7.5T785 1428q0 15-20 21.5t-46 6.5q-23 0-42-7t-19-21q0-15 21-21.5t44-6.5h17zm679.5-33q-6.5 18-20.5 18-16 0-22.5-21t-6.5-45q0-22 7.5-41.5t21.5-19.5 20.5 21 6.5 44q0 26-6.5 44zm207.5 33q16 0 30 7.5t14 20.5q0 14-19 21t-45 7q-24 0-43.5-7t-19.5-21q0-12 18-20t48-8h17zm233.5-409q20.5-7 43.5-7t43 6.5 20 21.5q0 16-22 22t-47 6h-12q-7 0-26.5-6.5T1840 1012q0-14 20.5-21zm-1182 0q20.5-7 43.5-7t43 6.5 20 21.5q0 16-22 22t-48 6h-11q-8 0-27-7t-19-21 20.5-21zm571 374q-6.5 20-21.5 20-16 0-22-22.5t-6-47.5q0-22 6.5-39.5t21.5-17.5q16 0 22 22t6 42q0 23-6.5 43zm-591.5 1q-7 19-21 19t-21.5-20-7.5-46 8-43.5 21-17.5q15 0 21.5 20.5t6.5 43.5q0 25-7 44zm1291.5-167q17.5 7 17.5 20 0 16-19.5 22.5t-45.5 6.5q-24 0-43-7.5t-19-21.5q0-13 22-20t45-7q25 0 42.5 7zm-1182 0q17.5 7 17.5 20 0 16-20 22.5t-46 6.5q-22 0-41.5-7.5T658 1219q0-13 22-20t45-7q25 0 42.5 7zM1268 991q19-7 46-7 23 0 42.5 6.5t19.5 21.5q0 16-22 22t-47 6h-12q-9 0-27.5-7.5T1249 1012q0-14 19-21zm-357.5 168q-6.5-21-6.5-45 0-23 6.5-41.5T933 1054q14 0 20.5 21t6.5 44q0 30-7.5 45.5T933 1180q-16 0-22.5-21zm654-168q20.5-7 43.5-7t43 6.5 20 21.5q0 16-21.5 22t-46.5 6q-24 0-41.5-7.5T1544 1012q0-14 20.5-21zm-441 375q-6.5 19-20.5 19t-21.5-20-7.5-46q0-23 6-42t23-19q14 0 20.5 20.5t6.5 43.5q0 25-6.5 44zm-59.5-166q17 8 17 19 0 16-20 22.5t-46 6.5q-22 0-41.5-7.5T954 1219q0-13 20.5-20t46.5-7 43 8zm268 200q20 0 32 7.5t12 20.5q0 14-19.5 21t-45.5 7q-23 0-42.5-6.5T1249 1428t20-21.5 46-6.5h17zm508-34q-7 19-21 19t-21-20-7-46q0-21 7-41t21-20 21 19 7 45q0 25-7 44zm-186.5-167q17.5 7 17.5 20 0 14-19 21.5t-45 7.5-44.5-7.5-18.5-21.5q0-12 21-19.5t46-7.5 42.5 7zm-447.5-41.5q-6-22.5-6-47.5 0-22 6.5-39t21.5-17q16 0 22 20t6 43q0 36-9.5 49.5T1228 1180q-16 0-22-22.5zm212 6q-8 16.5-19 16.5-16 0-22.5-21t-6.5-45 5-42 24-18q13 0 20 20t7 45q0 28-8 44.5zm-802.5-3.5q-7.5-20-7.5-46 0-22 6-41t23-19q16 0 22 20.5t6 43.5q0 28-8 45t-20 17q-14 0-21.5-20zm507 2.5q-7.5 17.5-19.5 17.5-14 0-21.5-20t-7.5-46q0-25 6-42.5t23-17.5q15 0 21 20.5t6 43.5q0 27-7.5 44.5zm675.5-2.5q-7-20-7-46 0-22 7-41t21-19q16 0 22 20.5t6 43.5q0 33-8.5 47.5T1819 1180q-14 0-21-20zm-437.5 40q15.5 8 15.5 19 0 14-19.5 21.5t-45.5 7.5q-23 0-42.5-6.5T1249 1219q0-12 21-19.5t47-7.5q28 0 43.5 8z"},"children":[]}]};exports.u1F4DF=u1F4DF;var u1F4E0={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2344.5 2158q-10.5 70-31.5 122.5t-52.5 85-61 48T2096 2438l-49 5q-24 3-36 3-65 2-150 2l-184 2q-99 0-206 1h-215q-711 0-770-18t-104-83.5-46.5-93-6.5-32.5l-4-3q-49-45-65-97t-16-108q0-95 46-387.5t133-394T611 1133q48 0 89.5 19.5t59.5 40 48 20.5q40 0 51-12t11-43q0-29-2-58t-2-58q0-149 27.5-278.5t94.5-245 127.5-147T1330 340l173 1 364-1q81 0 162.5 1t159.5 9l26 2q22 3 40.5 13.5T2274 396l-3 17q-2 10-69.5 58.5t-126 182.5-58.5 367l1 73v33q0 63 9 79t31 18 79.5 30.5T2249 1446t80 328 26 231q0 83-10.5 153zM2212 1709.5q-40-196.5-64.5-261T2071 1343t-168-41q-59 0-122 1.5t-129 1.5q-129 0-253.5 2t-250.5 2q-76 0-146-2t-146-2q-39 0-41.5 23t-18 71.5-40 77.5-32 48-16.5 75l-24 130q-6 34-6 68 0 30 5 57l9 58q3 21 3 42v20q0 20 2.5 35t2.5 30v41q0 24-5.5 34t-5.5 18q0 27 35 35.5t95 8.5q172 0 336-4t332-4q101 0 197 2t197 2q174 0 246.5-21t98.5-53 26-103q0-90-40-286.5zM965 1017v82q0 49 13.5 73.5t31.5 32 89 9.5l80 2q45 0 96 1h105q77 0 154-1l300-2q46 0 61-7.5t15-37.5q0-29-1.5-57.5t-1.5-56.5q0-165 26.5-290.5T2005 557t62.5-92.5T2085 440q0-5-8-6.5t-14-1.5q-51 0-99 2t-98 2l-474-5h-84q-92 0-120 8.5t-79.5 76-84 147.5-46 146.5T965 1017zm-265 243.5q-29-20.5-74-20.5-163 0-215.5 322.5T358 1996q0 63 26 94.5t80 31.5q78 0 114.5-37t36.5-109q0-37-13.5-77t-13.5-74q0-51 4-103.5t15-103.5l9-47q22-123 67.5-163t45.5-79q0-48-29-68.5zm583 279.5l2 26q2 28 2 55.5t1 55.5q0 101-15 137t-48 36q-39 0-77.5 2t-76.5 2l-51-1h-87q-67 0-86-21t-19-92q0-43 16-143.5t40.5-124.5 71.5-26l70-4q34-2 69-2h36q18 0 36 3l46 4q32 3 49.5 25.5t20.5 67.5zm-166.5-567.5Q1106 960 1106 944q0-22 29.5-34t75.5-12q27 0 53.5 7.5t53.5 7.5q33 0 65-5.5t67-5.5h27q33 0 67-3.5t67-3.5q30 0 58 5.5t56 5.5l22-1q17 0 26 11t9 26q0 26-19.5 39t-84.5 13q-48 0-95-4.5t-95-4.5q-36 0-75.5 7t-78.5 7q-40 0-73.5-9.5T1191 980q-19 0-29.5 2.5T1144 985q-17 0-27.5-12.5zm113-418Q1273 539 1319 539q32 0 64.5 3.5t64.5 3.5q11 0 21-1.5t20-1.5q17 0 36.5 7.5t37.5 7.5 34-3 33-3q38 0 82 6.5t85 6.5q7 0 13.5-1t13.5-1q20 0 30.5 13t10.5 30q0 15-10.5 29.5T1824 650q-40 0-78-9t-77-9q-25 0-53 5t-56 5q-16 0-31-4l-30-7q-16-4-32-7.5t-35-3.5q-43 0-107 8.5t-100 8.5q-16 0-27.5-12.5T1186 598q0-28 43.5-43.5zm-80 225.5q-9.5-12-9.5-26 0-17 15.5-26.5t54.5-9.5q26 0 50.5 3t49.5 3q26 0 52-5t49-5h16q3 0 46.5 7t113.5 7q51 0 100-5.5t95-5.5q18 0 26.5 11.5t8.5 25.5q0 45-66 45-24 0-47-2t-46-2q-31 0-64.5 6t-65.5 6q-21 0-41.5-3.5T1444 800t-43.5 1.5-42.5 1.5q-28 0-68-7t-79-7h-14q-6 0-10.5 1.5T1176 792q-17 0-26.5-12zm388.5 728.5q-21 12.5-56 12.5-43 0-64.5-9t-21.5-42q0-18 11.5-33.5t35.5-15.5h37q49 0 64 15.5t15 33.5q0 26-21 38.5zm233 0q-21 12.5-56 12.5-43 0-64.5-9t-21.5-42q0-18 11.5-33.5t35.5-15.5h37q48 0 63.5 15.5t15.5 33.5q0 26-21 38.5zm231 .5q-22 12-55 12-43 0-64-9t-21-42q0-18 11.5-33.5t34.5-15.5h37q48 0 63.5 14.5t15.5 34.5q0 27-22 39zm-465 322.5q-22 12.5-63 12.5-39 0-58.5-9t-19.5-40q0-33 21.5-42t64.5-9q41 0 59 14t18 37q0 24-22 36.5zm233 0q-22 12.5-63 12.5-39 0-58.5-9t-19.5-40q0-33 21.5-42t64.5-9q41 0 59 14t18 37q0 24-22 36.5zm1-161q-21 12.5-56 12.5-44 0-65-9t-21-41 22-41 64-9 59.5 14 17.5 36q0 25-21 37.5zm-233 0q-21 12.5-56 12.5-44 0-65-9t-21-41 22-41 64-9 59.5 14 17.5 36q0 25-21 37.5zm465 161.5q-21 12-64 12-38 0-57.5-9t-19.5-40q0-33 21-42t64-9q39 0 58 13.5t19 37.5q0 25-21 37zm-1.5-160.5Q1979 1683 1947 1683q-42 0-63.5-9t-21.5-41 21.5-41 63.5-9q40 0 58.5 13t18.5 37q0 27-22.5 38.5z"},"children":[]}]};exports.u1F4E0=u1F4E0;var u1F4E1={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2149 1471q0 21-1 31v7q-24 246-182.5 380T1537 2028l19 66 10 31q11 36 20 81.5t9 80.5q0 48-28 81t-116 70-189 53.5-206 16.5q-191 0-334-50t-208.5-127.5T448 2190q0-30 9.5-58t20.5-50l208-421q-103-118-151.5-264T486 1095q0-191 67.5-385T768 427.5t342-88.5q183 0 355.5 81.5T1786 654l46-31q-8-17-14-36t-6-40q0-68 49.5-118t120.5-50q72 0 121 49t49 119q0 72-49.5 122T1982 719q-14 0-27.5-2.5T1929 709l-44 59q132 181 198 358t66 345zm-173.5-350Q1922 971 1829 843l-530 721q130 90 250.5 141t214.5 51q127 0 196-89t69-239q0-157-53.5-307zM1708 708q-79-77-177-137.5T1348.5 484 1236 458q-94 0-166.5 79.5t-114 219T914 1005q0 90 9 119.5t50 94.5zm-73 1134.5q-51-7.5-193-62T1162 1629t-250-240.5T746 1086t-54-280q0-26 2.5-48.5T697 709q0-8-3.5-15.5T682 686q-22 0-53 87t-39.5 139-8.5 138q0 176 66.5 341.5t216.5 287 293 182 364 60.5l36-1q44 0 84.5-10t43.5-28q0-2 1.5-5t1.5-5q-2-22-53-29.5zM1425.5 2258q-23.5-13-50.5-13l-43 1q-166 0-322-83.5T755 1937l-9-15q-10-17-18.5-25t-17.5-8q-21 0-40.5 48t-22.5 54l-22 44q-25 48-34.5 79.5T581 2174q0 104 170.5 176.5T1089 2423q108 0 212-29l37-10q57-14 84-37.5t27-50.5q0-25-23.5-38zM1190 1479q66-86 133-169l135-168q4-6 19-24l34-41 41-51q21-27 51-68.5t30-49.5q0-3-6-3-12 0-42 20.5t-84 65.5l-26 21q-112 81-231 169.5T1047 1327q32 42 67.5 79.5t75.5 72.5zm730.5-868.5Q1946 636 1982 636q38 0 63-25.5t25-63.5q0-36-25-61t-63-25q-36 0-61.5 25t-25.5 61q0 38 25.5 63.5z"},"children":[]}]};exports.u1F4E1=u1F4E1;var u1F4E2={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2376.5 1870q-64.5 209-181 333.5T1943 2328q-99 0-189-69t-139-106l-261-193q-74-54-191-101t-260-79v5l-219 162q-13 10-40.5 25.5T582 1988H401q-34 0-67.5-1t-62.5-1q-52 0-80-20t-28-57v-123l-3-291-1-223q0-39 2-65l2-35q2-39 16.5-69.5t134-122.5 150-109.5T558 853q24 0 57 1l67 2 65 4 51 5q51 5 78 26.5t27 61.5v138q97-25 182.5-56t133-57T1374 878l173-120q49-37 82-63l53-42 34-28q64-53 118-75.5t109-22.5q134 0 250 121t182 331.5 66 447.5q0 234-64.5 443zM548 1822.5q-1-8.5-1-15.5v-167l1-259v-161q0-14-6-22t-110-10h-56q-65 0-91.5 4.5T258 1266q0 67-1.5 130.5T255 1527q0 62 1.5 123t1.5 127q0 75 14.5 90t91.5 16l45 1 76-2q39-2 51.5-9.5T549 1839q0-8-1-16.5zm87-793.5l51-39q45-35 47-39.5t2-5.5q0-14-61-16t-127-2q-14 0-28.5 3T491 943l-49 35q-44 31-79.5 60t-35.5 39q0 2 5 3t21 1l44 1q28 0 75 1 28 0 49-1h22q13 0 24-5t68-48zm941 1004q-71-138-100.5-292.5T1446 1427q0-174 33.5-327t93.5-274q-200 178-390 255t-399 118q-40 40-62.5 103T699 1437q0 73 26.5 134.5T801 1678q199 37 332 86t209 95 234 174zm34-389l371-114q-14-25-22-57.5t-8-69.5q0-32 6.5-61t17.5-53l-372-22q-4 39-6 78.5t-2 81.5q0 57 4 111t11 106zm715-483.5q-23-130.5-65.5-233t-62-114.5-49.5-12q-60 0-140.5 46t-146 141.5T1762 1182l298 34q45 6 77 58t32 129q0 67-26.5 118t-68.5 66l-446 155q46 214 140 338t204 124q154 0 265-227.5t111-549.5q0-136-23-266.5z"},"children":[]}]};exports.u1F4E2=u1F4E2;var u1F4E3={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2037 1748.5q-53 110.5-117.5 181t-163 122-307.5 112T951 2282t-304 58l-35 2q-23 70-80.5 106.5T400 2485q-130 0-217-81t-87-197q0-78 37-140t84-80.5 76-18.5l25-68 74-225q75-224 198-519.5T814 744l31-33q53-56 144.5-95t221.5-39q222 0 423 117.5t328.5 336T2090 1482q0 156-53 266.5zm-109.5-543Q1880 1077 1790 975q-267 0-494 111.5T911 1399q81 227 266.5 373t380.5 146q182 0 299.5-128.5T1975 1460q0-126-47.5-254.5zM418 1878q-4 12-29.5 80T363 2071q0 82 60 129t150 47q13 0 37-2.5t49-10.5l541-152q42-14 56.5-28t14.5-27q0-12-6-18l-10-9q-241-115-388-348t-147-482q0-56 9-110-103 232-189 473zm2069.5-212.5Q2471 1731 2441 1731q-19 0-74-26.5t-63-30.5l-41-18q-55-24-81.5-41.5T2155 1583q0-25 23.5-32t111-17.5T2441 1523q32 0 47.5 10t15.5 35q0 32-16.5 97.5zm-483-769.5q-8.5-11-8.5-22 0-10 17.5-37.5T2054 780l26-34q4-5 49.5-65.5T2206 620q21 0 66.5 56.5T2318 774q0 17-19 25t-21 9l-121 53q-56 25-93 35.5t-41 10.5q-10 0-18.5-11zM1437 479q-5-50-9.5-104t-4.5-115q0-13 2-21 0-33 11-48.5t34-15.5q34 0 98.5 21t64.5 48q0 10-5.5 18.5T1618 279l-49 102-20 39h-1q-23 44-43 74t-32 30q-16 0-26-10.5t-10-34.5zM416 2310q-70-30-112-85t-42-118q0-8 1-16t1-16q-33 0-53.5 37.5T190 2197q0 106 93 162l17 8q18 10 38 16.5t36 6.5q30 0 35.5-38.5t6.5-41.5z"},"children":[]}]};exports.u1F4E3=u1F4E3;var u1F4E4={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2340 1759q0 37-12 60.5T2094.5 2071 1766 2396l-19 17q-16 13-36 20.5t-44 7.5q-3 0-35-5l-164-22-69-8q-396-42-736.5-96.5t-355.5-65-31.5-21.5-16.5-184q0-100 5.5-199t6.5-200q0-49 63.5-95t136.5-98.5 286.5-183 257.5-158 82-27.5h7v110q0 6-2 14t-2 16q0 40 2 79l2 85q0 57 8 84t44 31l360 43 134 15q64 7 117 11t84 4h15q5 0 34.5-21.5t71.5-55.5l92-77q19-16 28-25l57-51 27-22q7-6 12-11.5t5-10.5q0-7-10-11t-35-6l-21-2-278-32q-139-15-279-27v-95l369 39q196 19 299 38t103 91zm-700 486q-3-69-3-142 0-54 2.5-105t2.5-110q0-17-8.5-25t-28.5-9h-20q-36-2-70.5-7.5t-72.5-5.5q-16 0-27.5 4t-21.5 17l-42 60q-33 46-69.5 68.5T1193 2013q-20 0-45-2t-53-6l-114-13-154-20q-81-11-118.5-35.5t-56-75T611 1765t-103.5-58-111.5-12-34 48-3 98q0 47-3 93.5t-3 93.5v28q0 14 2 28l3 42q0 23 12 34.5t342 56.5l405 53 343 43 110.5 13 28.5 3q25 0 34-11.5t9-29.5q0-11-1-22t-1-21zM1332 262l435 593h-272v553h-325V855H897zm441.5 1381q-3.5-2-66.5-9l-214-24q-47-5-167.5-19t-115.5-13l-48-5q-25-2-48-2-13 0-24.5 2.5T1067 1584l-285 222q-6 4-14 8.5t-8 11.5q0 16 38 32.5t101 20 135 16.5 133 13h21q42-2 84.5-56t73.5-90 116-36q42 0 93.5 9t82.5 9q30 0 47.5-7.5t54.5-42 37-45.5q0-4-3.5-6z"},"children":[]}]};exports.u1F4E4=u1F4E4;var u1F4E5={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2341 1736q0 20-8.5 51T2049 2095l-108 109q-168 168-202 191.5t-70 23.5q-3 0-19-3l-40-6-168-23-43-5q-234-25-463.5-56T475 2255l-49-10-62-10q-35-4-65-20t-32.5-38-5-66.5-2.5-89.5q0-102 6.5-202t6.5-203q0-30 14-50t151-117 323-211l136-83 292 397q-19 0-37.5-2.5t-36.5-2.5q-13 0-25.5 3t-21.5 10l-206 162q-31 24-53 40l-26 20q-7 5-13.5 9t-6.5 12q0 14 30.5 31t97.5 21 141 17 136 13h21q42-2 85-56t75-90 114-36q24 0 44 3l82 12q22 3 50 3 53 0 96-42.5t43-52.5q0-9-81.5-17.5T1464 1582l50-66 198 21q45 5 81 7.5t59 2.5h14q4 0 20-12l38-28q22-17 47.5-38t49.5-41l43-36q25-21 27.5-24.5t52-43.5 49.5-51q0-12-21-15l-45-5q-96-10-194.5-19t-196.5-23l65-88 312 35 58 8 57 6q50 6 81.5 28.5t31.5 65.5v470zm-701 486q-3-60-3-121 0-29 1-57l3-55q0-28 1.5-57.5t1.5-63.5q0-18-9-27.5t-29-10.5h-20q-37-2-73-8t-73-6q-32 0-44.5 19t-41 61.5-66.5 67.5-95 25q-20 0-45-2t-52-5l-57-7q-30-3-58-7l-139-17q-32-4-64-10.5t-60.5-22T672 1875t-28-58-24.5-60-39-50-58.5-22-64.5-8-63.5-6q-17 0-25 16.5t-8 43.5l-1 29v39q0 48-2.5 97t-2.5 97l1 38v57q0 37 19 49t339 56l403 53 343 43q115 14 125 15.5t14 1.5q25 0 34-12.5t9-30.5q0-11-1-21.5t-1-19.5zm-303-665L903 964h270V411h324v553h274z"},"children":[]}]};exports.u1F4E5=u1F4E5;var u1F4E6={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2459 806q26 13 26 41v1091q0 12-6.5 23t-16.5 16l-1244 693-10 4q-5 2-12 2-13 0-23-6L138 2070q-23-13-23-39V941q0-12 6-23.5t20-18.5l1243-609q10-5 20-5t20 5zM271 941l925 479 1142-573-924-466zm593 276l-202-104 1085-540 199 102zm-658 788l944 547V1499l-944-485v991zm570 317l-196-114v-169l196 117v166zm0-879l-196-99v-109l197 101v107h-1zm-11 51q29 17 45.5 43.5T827 1591q0 23-10 36.5t-30 14.5q-16 0-31-7l-187-98q-25-13-40-38.5t-15-51.5q0-25 13-38.5t32-13.5q12 0 30 8zm1629-574l-1153 579v1054l1153-642V920z"},"children":[]}]};exports.u1F4E6=u1F4E6;var u1F4E7={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2206 2096H395v-947l316 156q8-32 17.5-62.5T752 1182l-359-177V749h1811v252l-359 178q14 30 24.5 61t18.5 63l316-158zm-557-1005q-133-135-350-135-209 0-345.5 134.5T817 1426q0 204 136.5 337.5T1296 1897q88 0 164-22.5t139-70.5l-85-115q-44 32-98 48t-116 16q-148 0-244-92t-96-234q0-141 95-234t244-93q159 0 249.5 93.5T1639 1440q0 26-8 45t-36 19q-33 0-49-36t-16-86v-163q0-10-11-10h-122q-9 0-9 10v14q-26-14-57-23t-66-9q-106 0-172.5 67t-66.5 166q0 100 66 166t174 66q61 0 107.5-22.5t77.5-60.5q27 32 64.5 48.5t80.5 16.5q84 0 135-57.5t51-145.5q0-219-133-354zm-302.5 418.5Q1317 1541 1266 1541q-52 0-81.5-31t-29.5-76 29-76 81-31q51 0 81 30t30 76q0 45-29.5 76.5z"},"children":[]}]};exports.u1F4E7=u1F4E7;var u1F4E8={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1300 1690l904-451v947H395v-947zm904-847v252l-904 450-905-450V843h1809zm-608-268l34-36q350-388 377.5-392t21.5-4q25 0 25 25-5 53-134 253.5T1755 679l-7 5q-12 13-35.5 15t-43.5 2l-41-1q-40 0-70-7t-30-22q0-13 13-32t55-64zm-380 36l33-37q73-82 152.5-166.5T1560 233t122-90q25 0 25 25 0 23-14 49l-27 48q-60 106-127 208.5T1408 679l-6 5q-13 13-36 15t-44 2q-49 0-95-8t-46-24q0-10 7.5-22.5T1216 611zm-323 84l-16-1q-20 0-31.5-6T834 669q0-22 51.5-78T1102 355.5t189-196 43-16.5q15 0 20.5 8t5.5 20q-6 49-125.5 235.5T1062 679l-7 5q-12 13-35.5 15t-44.5 2q-20 0-41-2z"},"children":[]}]};exports.u1F4E8=u1F4E8;var u1F4E9={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1300 1716l904-451v947H395v-947zm904-847v252l-904 449-905-449V869h568l334 456 333-456h574zm-907 256L862 532h271V0h325v532h274z"},"children":[]}]};exports.u1F4E9=u1F4E9;var u1F4EA={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2257.5 1597q-40.5 30-47.5 30t-321.5 155.5-329 159-14.5 67.5q0 16 2.5 144.5t2.5 150.5v30q0 13-2 19 0 13-30.5 36t-92.5 23q-49 0-83.5-11.5t-47-27-12.5-54.5q0-30 1-60.5t1-61.5q0-57-3.5-84t-13.5-27q-20 0-39.5 5.5t-41.5 5.5q-37 0-81.5-16t-122-44.5T636 1894t-291.5-143-30-59.5-7.5-38.5l-4-90q-2-48-2-102 0-374 78.5-545T613 704l52-14q29-8 64-17l130-31 47-10q64-12 297.5-49t399.5-37q429 0 562 194t133 643q0 184-40.5 214zm-122.5-44l15-10q15-9 25-33.5t10-62.5q0-154-20.5-325.5t-56-248.5-80-122-174-81-272.5-36q-98 0-215.5 14T1114 687l-148 28q-40 7-40 16 0 11 63.5 38.5t134 131 80 237.5 9.5 281q0 84-1 146l-4 228q0 55-1 123 0 23 8 39t28 16q18 0 230-92.5t414-196.5l126-65q63-32 122-64zm-1038 30q0-23 3-76.5t3-124.5q0-72-6-151.5t-26.5-168-82-155-127.5-88T715 798q-125 0-184 55.5T444.5 998 417 1205l-4 190q-2 94-2 191 0 99 51.5 118t243 103T985 1927l44 17q23 9 36 9 18 0 27.5-32t9.5-91q0-31-2.5-63t-2.5-62v-122zm952.5-441.5Q2065 1168 2065 1242q0 112-20 159t-61 67l-39 18q-23 11-45 11-51 0-63-88t-41-88q-25 0-104 26.5t-173 62.5l-62 23q-11 5-29 12t-32 7q-27 0-33.5-31t-6.5-83q0-57 45-75.5t221-61.5l247-60q37-9 74-17.5t57-8.5q34 0 49.5 26.5zM961.5 1476q-15.5 21-44.5 21-14 0-25-3l-44-12q-11-3-23-3-17 0-23 22t-6 71q0 80-16.5 106t-50.5 26q-42 0-61.5-31.5T648 1587q0-35 3-62t3-57q0-17-5.5-32t-23.5-23l-41-15h-1q-39-13-59.5-31.5T503 1319t24-52.5 54-23.5q38 0 107.5 28.5T811 1313t109.5 40.5T977 1427q0 28-15.5 49zm-381-423q22.5-22 57.5-22 37 0 57 8.5t80.5 20.5 118 40.5T951 1179q0 44-22.5 60.5T874 1256q-42 0-179-41t-137-109q0-31 22.5-53z"},"children":[]}]};exports.u1F4EA=u1F4EA;var u1F4EB={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2298 1447v39q-2 88-18 133.5t-43 57.5-311 151.5-321 155-48.5 27-11.5 61.5q0 16 2.5 145t2.5 151v30q0 13-2 19 0 13-30.5 36t-92.5 23q-49 0-83-11.5t-47-26.5-13-55q0-30 1-60.5t1-61.5q0-33-1-72t-16-39q-20 0-39.5 5.5t-41.5 5.5q-27 0-58-8.5T957 2090t-365-151.5-246-122-30-57-9-42.5l-4-90q-2-48-2-102 0-342 65.5-515.5T582 778l31-10q25-7 56-15t61-16l129-31 47-10q109-21 220-38.5t226-31.5q0 23-1 44v45q-119 14-267.5 40.5t-153 31.5-4.5 8q0 11 64 39t133.5 130 79.5 233 10 286q0 85-1 146l-4 225q0 55-1 126 0 23 8.5 39t28.5 16q18 0 202-81.5t279.5-125T2135 1617l15-10q15-9 25-33.5t10-62.5q0-155-21-326t-54.5-245.5-77-120-166-81.5-249.5-39q0-20-1-41.5t-1-35.5q0-8 5-9l16-3q280 9 417.5 91t191 281 53.5 465zm-1201 200q0-25 3-78t3-123q0-152-21.5-270.5T1005 991t-118.5-97.5T719 862q-129 0-187 55t-86.5 143.5T417 1269l-4 190q-2 94-2 191 0 98 49.5 116T701 1868.5 985 1991l42 17q22 9 36 9 20 0 29.5-32t9.5-91q0-31-2.5-63t-2.5-62v-122zm328.5-707.5Q1429 824 1429 706q0-127 1-224t6-197v-37q0-38 10.5-59.5t22-26 65.5-9.5l294-24q34 0 45.5 24t11.5 65q0 28-1 57l-1 56q0 27-1.5 50.5T1880 421q0 39-24.5 57.5t-85.5 28-124.5 22-86 25T1537 610v278q0 139 4 274 0 25-22.5 37t-56.5 12q-17 0-28.5-7t-11.5-32q0-117 3.5-232.5zm-464 599.5q-15.5 22-44.5 22-28 0-50-9t-45-9q-14 0-20 26t-6 67q0 78-17.5 105t-50.5 27q-40 0-60-30.5t-20-86.5q0-34 3-61.5t3-56.5q0-18-5.5-33t-23.5-23l-41-14q-36-11-58.5-30.5T503 1383t24.5-53 53.5-23q37 0 105.5 28t179.5 61 111 95q0 26-15.5 48zm-381-422q22.5-22 57.5-22 27 0 142 30t143 57 28 61q0 44-22.5 60.5T874 1320q-42 0-179-41t-137-109q0-31 22.5-53z"},"children":[]}]};exports.u1F4EB=u1F4EB;var u1F4EC={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1593.5 1110.5q1.5-29.5 1.5-58.5 2-307 6-492t5.5-254 8-109.5T1668 155t253-21l53-5 25-1q26 0 42 14.5t16 42.5l-3 106q0 37-2 73.5t-2 55.5q0 26-16 48t-42 27l-55 10-155 29q-42 8-58 29t-16 57q0 138 1.5 271.5t1.5 271.5q0 24-21.5 36.5T1636 1212q-20 0-32-8t-12-35q0-29 1.5-58.5zm856 520Q2431 1667 2393 1684t-250.5 124.5-307 150T1728 2009t-13 62q0 17 2.5 148t2.5 152v29q0 13-1 18 0 14-33.5 37t-100.5 23q-48 0-79-12.5t-42-28-11-53.5q0-29 1-59t1-60q0-35-2.5-60.5t-2.5-28.5q0-13-4-19t-13-6q-11 0-32 6t-41 6q-38 0-87.5-17t-129.5-48q-162 122-226.5 162t-103 68-85.5 28q-59 0-118.5-37t-265-191T127 1955t-12-30q0-15 20.5-36t58.5-37l97-40 78-30q45-18 111-43l-3-14q0-5-1-7-3-52-4-98t-1-90q0-168 15-307t60.5-236.5 88-134.5 89-61.5T967 721l108-24q109-22 221-39.5t226-31.5v44l-2 45q-29 2-57 6l-55 8q-91 13-181.5 28.5T1047 793l-17 3q-23 4-40 11t-17 16q0 6 7 14t54 19.5 135 97 149.5 264T1380 1734v68l-2 116q0 28-1 60 0 23 7.5 40.5t28.5 17.5q7 0 20-5l20-8q377-156 598.5-271.5t263-138.5 41.5-100q0-165-21.5-342.5t-77.5-280-193-147-275-44.5v-87q194 0 342.5 48.5t213 156.5 94 267 29.5 355q0 155-18.5 191.5zm-1907 299Q655 1937 766 1937l35-1q23 0 47 2.5t47 2.5q56 0 71.5-17.5t25-68 9.5-78.5q0-43-12-56t-53.5-29.5T862 1675q-24 0-44.5 9.5T778 1702l-5 2q-52 23-104 43l-103 41-70 26q-58 21-85 34.5t-89 30-62 33.5q0 4 16.5 7t44.5 3q109 0 221.5 7.5zm120 63.5q-6.5-2-17.5-4h-3q-19-4-37-4-13 0-84-5t-170-5q-22 0-44.5 2t-22.5 6q0 3 7.5 10.5T310 2009l21 18q75 65 139 105.5t74 48.5l26 20q12 10 22.5 17t16.5 7l3-2q5-1 21.5-66.5t20-90 9.5-36.5 6-23q0-12-6.5-14zm565.5-67l20-10q12-5 12-13 0-5-3.5-7.5T1182 1880l-34-6q-15-2-33-6.5t-35-4.5h-9l-10 2-8 33q-8 23-19.5 57t-84.5 34h-75q-37 0-75 1-9 0-19.5-1t-20.5-1q-20 0-27.5 12t-7.5 29l1 8q0 11-15.5 97.5T694 2242q0 12 2.5 22.5T709 2275q5 0 11-2l10-4q24-12 45.5-27t42.5-31l41-33q40-32 87-61.5t66-41.5l35-22q16-11 35.5-21.5t76-54 69.5-51.5zm25-73q8 0 8-3 0-14-74-48.5t-119-36.5q-4 5-4 15t1 18v16q0 9 18.5 15t38.5 8l23 3q23 2 44 5z"},"children":[]}]};exports.u1F4EC=u1F4EC;var u1F4ED={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2291 1594.5q-18 36.5-58 54.5t-240.5 119-306.5 149.5-117.5 58.5-11.5 35l2 133 2 89v124.5l-2 25.5q0 12-32.5 36t-97.5 24q-51 0-93.5-17.5T1293 2348q0-29 1-59t1-59q0-21-2-42.5t-2-48.5q0-9-3-16.5t-14-7.5q-17 0-35.5 6t-39.5 6q-27 0-50-5.5T986 2063t-371-153-255-125-34-59-10-44q-3-51-4-96.5t-1-88.5q0-173 17-313t53.5-221.5 77.5-126 79-69T676 718l65-16q34-9 67-17t62-14l46-10q58-11 117-21l117-19q113-18 229.5-33t233.5-15q430 0 563 196t133 654q0 135-18 171.5zM2155 1017q-42-217-191.5-286T1585 662q-128 0-345 32t-352 64l-17 3q-31 5-44.5 11.5T813 787l2 10q3 8 67.5 27t149 113.5 137 263T1221 1708l-1 94q0 36-1.5 69t-1.5 73q0 24 8.5 40t28.5 16q7 0 19-4l24-8q13-4 25.5-9.5t22.5-10.5l217-95q140-61 344.5-166t247.5-130 43-102q0-241-42-458zm-91 154q12 29 12 98 0 121-20.5 165t-60.5 63l-39 18q-23 11-44 11-50 0-64-87.5t-41-87.5q-19 0-74 17t-124 41l-79 29q-43 16-75.5 29t-47.5 13q-26 0-33-27t-7-87q0-67 59.5-83t54.5-14l66-18 86-22 92-23 155-37q100-24 110.5-25.5t20.5-1.5q41 0 53 29z"},"children":[]}]};exports.u1F4ED=u1F4ED;var u1F4EE={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2347 1029q0 45 1 88v88q0 70-2.5 139t-2.5 139l1 44v45q0 115-29.5 167T2186 1841l-41 21q-86 47-174 79t-172.5 66.5T1617 2042q-23 0-45.5-1t-45.5-5v3q134 32 208 84t74 118v135q0 82-114.5 132t-294.5 50q-138 0-251-26.5t-182-72-84.5-88T866 2213v-19q5-66 81.5-111.5T1154 2021v-64l-199-55q-185-51-249-73t-128-53-75-110l-2-16q0-67-1-124.5t-4-113.5l-111-66q-28-17-82.5-64t-54.5-84q0-43 76.5-102.5T491 969q0-26-1-50.5t-1-50.5l4-144q3-159 21.5-224t67-110.5 138.5-68 234.5-53T1225 238q106 0 326.5 42.5t325.5 70 245 68T2306.5 552t44.5 256q0 49-2 98t-2 97v26zm-700 787q-2-17-2-34v-33q0-113 5.5-221t5.5-223q0-88-4-175t-4-175v-45q0-133-49-174.5T1278 637l-142-30q-72-15-143-34l-74-21q-73-20-126-30t-97-10q-52 0-66 50t-17 81-3 144l1 46v51q17-14 36-26l38-22v-18q0-9 1.5-25t1.5-39q0-43 18.5-71t66.5-28q79 0 228.5 44t292.5 68 178 69.5 35 132.5v77q0 61-27.5 91.5T1397 1168q-17 0-36-2l-38-4q-8 19-22.5 43.5T1239 1299l-39 55q-21 30-102.5 161.5T955 1647t-162-59.5-133-77.5l-25-12q-13-6-25-14l1 36q0 21 2 41l2 39q2 40 11 50.5t28 25.5 136 61 380 112l15 4q78 19 155 34l155 30q6 2 25.5 6t39.5 4q47 0 67-27t20-84zm302.5-1235q137.5-35 137.5-57 0-6-6.5-11T1969 481t-204-46.5-264-55.5-290-36q-24 0-104 10t-155 21l-61 10q-49 8-79 17t-30 19q0 8 32 13.5t239 51 234 48.5 190 43 286 40q49 0 186.5-35zM457 1168l36-8q27-5 53.5-8.5t52.5-8.5l6-2q3 0 6-1 87-18 184-31.5t126.5-21.5 113-21 83.5-71q0-34-2.5-72t-9.5-74l-9-36q-8-31-53-45.5T966 753q-31 0-41 12.5T759 893l-152 111-4 4q-37 24-71.5 50.5t-85.5 57-51 49.5q0 5 7.5 6.5t15.5 1.5q20 0 39-5zm510-22q-5 2-36 6t-31 39q0 14 4 27.5t4 27.5q0 34 3.5 67t5.5 66l2 51q2 60 8.5 90.5T947 1551q14 0 46.5-44t55.5-87 59-96l66-95q34-49 58-72.5t60.5-89.5 56.5-86.5 20-30.5q0-8-7-11t-15-3h-17q-28 0-51.5-2t-55.5-2q-11 0-22 1.5t-19 6.5l2 42 1 43q0 69-53 81t-98 23zm559 974v74q0 31-47 50.5t-116 19.5q-84 0-146.5-26.5T1154 2172v-73q-97 14-151 42t-54 53q0 29 58 66.5t165.5 61T1399 2345q138 0 234.5-33t96.5-70q0-29-54-62t-150-60zm-905-727l51 28q25 14 41 21t39 22l30 21q15 10 28 17t20 7q10 0 10-19 0-8-1-17.5t-1-14.5l4-78q0-39 1-78 0-14-1.5-25.5T840 1253q0-11 2-23.5t2-23.5q0-16-5.5-21.5T817 1179q-49 0-107 11.5T542.5 1222 433 1256q0 9 88.5 71t99.5 66zm666-545.5q-68-26.5-110-26.5-5 0-9 1t-6 1q0 11 7 43t49 32q13 0 23-1l48-4q15 0 40-1h17l9-4q0-14-68-40.5z"},"children":[]}]};exports.u1F4EE=u1F4EE;var u1F4EF={"viewBox":"0 0 2723 2760.837","children":[{"name":"path","attribs":{"d":"M2718.5 1370q-4.5 10-12.5 17l-5 5q-26 26-71.5 35.5t-67 34-87.5 94-179.5 166.5-210.5 161.5-164 97.5q8 31 27 59.5t45 48.5q11-11 24.5-15t27.5-4q20 0 41 6l65 17q23 6 45 18.5t22 28.5q0 9-5.5 13.5t-5.5 9.5 4.5 7 4.5 11q0 8-3 13t-7 9l-7 9q-3 4-3 9v7q0 11-9 16.5t-28.5 30-47.5 24.5q-14 0-25-10l-22-19-32-25q-29-22-48-47.5t-19-52.5q0-6 1-9-36-14-60-53t-35-80q-65 24-137 37.5t-147 16.5q-14 34-29 59t-39 42q4 11 4 23 0 39-21.5 81t-32.5 68-41 26q-13 0-22-2.5t-16-6.5l-12-6q-10-5-20.5-6t-17-14.5-22.5-17.5-16-21q0-3 1.5-5t1.5-5-3-5l-8-5q-4-2-7.5-6.5t-3.5-11.5q0-15 13-31.5t32-31.5l20-15 22-19q17-15 38.5-27t40.5-12q8 0 15 2l15 6q29-24 47-59-137-3-286.5-46T982 1917t-302-186l-102-70q-115-78-163-100t-138-45.5-160-23.5q-54 0-85.5-26.5T0 1388q0-99 145.5-259T494 844t319-125q54 0 85 28t31 77q0 13-14.5 93T900 1088v24q0 12 1 24 62-240 259-392.5T1607 591q200 0 369 100t265.5 267.5T2338 1332q0 25-2 38 20-15 40-31l39-33 16-31q8-15 9-33.5t6-35 14.5-32.5 23-26 33.5-10q55 0 130.5 76.5T2723 1345q0 15-4.5 25zm-833 228.5Q2000 1483 2000 1319q0-159-116.5-275T1608 928q-162 0-277 115.5T1216 1321q0 157 113.5 275t279.5 118q162 0 276.5-115.5zM2627 1333q-21-31-44.5-54.5T2532 1237q-2 30-19 77.5t-91.5 105.5-101.5 79-45 21q-19 0-32.5-13.5T2229 1475q0-2 9.5-50.5t9.5-103.5q0-167-84-315.5t-234-236-323-87.5q-177 0-326.5 89.5t-230 236.5-80.5 293q0 18-13 31t-32 13q-14 0-28.5-8t-51.5-69-37-186q0-89 31-258 0-8-4.5-11.5T813 809q-93 0-275 113t-314 256-132 210q0 6 3.5 10t18.5 4q102 0 200 27.5t142 49T617 1579l103 70h-1q174 120 273 170t230.5 91 249.5 53q18-25 26.5-56.5t8.5-62.5q0-14-1-26l-4-26q-163-35-270.5-168T1124 1322q0-199 142-341.5T1606 838t341.5 144 143.5 340q0 109-47.5 209T1906 1702q30 28 47 65.5t17 80.5q103-56 270.5-201t223.5-213.5 104-84 55-15.5q2 0 4-1zM719 933q0 35-97 127.5t-218 172-163 79.5q-16 0-16-13 0-34 102-131.5T546 995t158-75q15 0 15 13z"},"children":[]}]};exports.u1F4EF=u1F4EF;var u1F4F0={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2268 2091l10 280q0 23-13.5 39.5T2229 2430l-49 8q-277 46-678 91.5T849 2575q-40 0-87-2t-77-6l-37-4-9-3q-23-5-38-32.5t-77.5-278-121-721T327 811l-5-68q0-21 16-41.5T470.5 609 751 468t414.5-137T1727 223q2 0 5-1t5-1q20 0 35 13.5t20 33.5l44 198q95-19 160-39.5t73-20.5h8q20 0 37 12.5t22 32.5l13 68q24 125 53.5 376.5T2268 2091zM690 2421q246-123 627.5-220t740.5-144L1689 346q-407 57-735 172.5T441 771l10 113q27 321 88 778.5T690 2421zm1072-1220.5q24 117.5 51 244t27 150.5q0 45-40.5 71.5t-179 67.5-183.5 41q-61 0-75.5-34.5t-48.5-141-49-206.5l-8-52q-4-27-4-54 0-74 52.5-101t187.5-65 172-38q74 0 98 117.5zM905 2457q204-4 540.5-41t585.5-76l127-19q0-26-2-66.5t-4-93.5l-260 43q-255 42-517 106.5T905 2457zM2033 539q-42 12-85 22l-88 20 283 1306-22-496q-11-232-32.5-447T2033 539zM598.5 1305.5Q582 1291 582 1277q0-25 43.5-56.5t137.5-58 118-39 110-49.5 116-42 68-30 105-29.5 95-19 133-42 114-27.5q19 0 30 13.5t11 29.5q0 36-93 68t-151 38.5-211 64.5l-264 95-118 52q-54 25-120.5 50t-74.5 25q-16 0-32.5-14.5zm1258.5 560q12 15.5 12 33.5 0 19-16.5 36t-317 81-482.5 128l-264 92q-6 3-12 3-15 0-25-12t-10-26q0-6 4.5-17.5T856 2122t258.5-95.5T1486 1933t274-65.5 65-17.5q20 0 32 15.5zM792 821q-25-2-38-19t-13-37q0-19 12-34t37-15 58-23.5 57.5-23.5 72-25 108.5-41 111-34l55-19h8q22 0 35 17t13 38q0 38-36 50.5T1154.5 700 1037 738.5 968 761l-54 26q-28 14-56 24t-57 10h-9zM692 1937.5q7-12.5 18-12.5 68-30 136.5-52.5T1015 1802t158-48q17 0 27 13.5t10 29.5q0 7-8.5 25.5T975 1922l-110 41q-68 26-90.5 37.5T736 2012q-22 0-36.5-17t-14.5-35q0-10 7-22.5zm-59.5-419Q622 1505 622 1490q0-42 69.5-62.5t99-39.5 62-23.5T964 1326t128-42h7q18 0 32 14.5t14 31.5q0 18-16 27t-104 45-141.5 52-75 29-74.5 31-71 18q-20 0-30.5-13.5zM928 942l-179 68q-80 31-126.5 49.5T567 1080l-7 3q-8 0-14-6.5t-6-14.5 13-18 370.5-145T1630 671h6q6 0 12.5 4t6.5 13q0 21-27.5 25.5t-242 70.5T928 942zm-245 823q-12 0-19-9.5t-7-20.5q0-3 1-6l2-6q8-22 28.5-40t67-32 92-36 99-40.5 91.5-33 61-14.5q20 0 31 12t11 26q0 22-17 33.5t-66.5 28.5-92 31.5-74 31.5-69 26.5-73 29T683 1765z"},"children":[]}]};exports.u1F4F0=u1F4F0;var u1F4F1={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1874 480v1844q0 155-182.5 192.5T1300 2554t-391.5-37.5T726 2324V480q0-75 51.5-131t219-77.5T1300 250t303.5 21.5 219 77.5 51.5 131zm-224-65.5q11 10.5 27 10.5t27-10.5 11-26.5-11-27-27-11-27 11-11 27 11 26.5zM1195 353q-8 0-14 6t-6 14 6 13.5 14 5.5h210q8 0 14-5.5t6-13.5-6-14-14-6h-210zm-175 1960q25 0 39.5-7.5t14.5-30.5q0-21-14.5-29t-39.5-8h-16v-13l-29 21 29 21v-14h16q21 0 30 5t9 17q0 13-9 18t-30 5h-37v15h37zm335-60l-54-23-55 23v55h109v-55zm-54-6l38 17v28h-77v-28zm313 4h-91v57h91v-57zm-16 41h-59v-26h59v26zm42-66h-84v16h68v33h16v-49zm130-1606H831v1555h939V620z"},"children":[]}]};exports.u1F4F1=u1F4F1;var u1F4F2={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1218 1420l-594 436v-272H69v-325h555V985zm1262-940v1844q0 155-182.5 192.5T1906 2554t-391.5-37.5T1332 2324V480q0-75 51.5-131t219-77.5T1906 250t303.5 21.5 219 77.5 51.5 131zm-224-65.5q11 10.5 27 10.5t27-10.5 11-26.5-11-27-27-11-27 11-11 27 11 26.5zM1801 353q-8 0-14 6t-6 14 6 13.5 14 5.5h210q8 0 14-5.5t6-13.5-6-14-14-6h-210zm-175 1960q25 0 39.5-7.5t14.5-30.5q0-21-14.5-29t-39.5-8h-16v-13l-29 21 29 21v-14h16q21 0 30 5t9 17q0 13-9 18t-30 5h-37v15h37zm335-60l-54-23-55 23v55h109v-55zm-54-6l38 17v28h-77v-28zm313 4h-91v57h91v-57zm-16 41h-59v-26h59v26zm42-66h-84v16h68v33h16v-49zm130-1606h-939v1555h939V620z"},"children":[]}]};exports.u1F4F2=u1F4F2;var u1F4F3={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2394.5 1769q-94.5 164-258.5 259t-354 95q-193 0-357-96t-257.5-258.5T1074 1416q0-188 93-351.5t258.5-260T1782 708q188 0 353 95.5t259.5 260.5 94.5 352q0 189-94.5 353zm-188.5-8q57-71 90-158t33-187q0-226-161.5-387T1782 868q-99 0-187 33t-159 91l357 356-2 17q0 9-3 21l-17 74q-83-63-181-71l-269-267q-42 64-64.5 138t-22.5 156q0 225 160.5 386.5T1782 1964q82 0 156.5-23t138.5-64l-182-181q15-45 31.5-86t32.5-97zm-40-330.5q-30 55.5-63 55.5-11 0-18.5-6.5t-7.5-20.5q0-16 7-34t7-35q0-41-45-86t-90-45q-20 0-25 17t-5 39q0 114-49 263t-111.5 191.5T1622 1812q-94 0-164-54t-70-142q0-75 52.5-121.5T1570 1448q51 0 100 21t86 55l14 11q7 6 15 6l10-4q28-18 45.5-113t17.5-174q0-65-9-131t-9-71q0-46 46-46 120 0 215 96.5t95 223.5q0 53-30 108.5zM964 745v1341q0 51-36 93t-159 58-223 16q-158 0-287.5-28T129 2086V745q0-51 35-93t157.5-58T546 578q100 0 223 16t159 58 36 93zm-163-47.5q8 8.5 19 8.5 12 0 20-8.5t8-19.5-8-19.5-20-8.5q-11 0-19 8.5t-8 19.5 8 19.5zM470 653q-6 0-10 4.5t-4 9.5q0 14 14 14h153q5 0 9.5-3.5T637 667q0-5-4.5-9.5T623 653H470zM343 2077q18 0 28.5-5t10.5-22q0-15-10.5-21t-28.5-6h-12v-9l-21 16 21 15v-11h12q28 0 28 16 0 17-28 17h-27v10h27zm243-43l-39-17-40 17v41h79v-41zm-39-4l28 12v20h-56v-20zm228 2h-67v43h67v-43zm-12 30h-42v-18h42v18zm31-47h-61v11h49v24h12v-35zm94-1168H205v1131h683V847z"},"children":[]}]};exports.u1F4F3=u1F4F3;var u1F4F4={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M374.5 1678Q260 1560 260 1378t114.5-300.5T663 959t288.5 118.5T1066 1378q0 174-114 296t-289 122q-174 0-288.5-118zm162-169q49.5 52 126.5 52t126.5-52 49.5-131q0-80-49.5-132T663 1194q-76 0-126 51t-50 133q0 79 49.5 131zM1892 1850v450q0 154-183 191.5t-391 37.5-391-37.5T744 2300v-433q53-7 104-29v312h940v-301l10 1h94zm-854 439q25 0 39.5-8.5t14.5-29.5-14.5-29.5-39.5-8.5h-16v-13l-30 21 30 22v-14h16q21 0 29.5 5t8.5 17-8.5 17-29.5 5h-37v16h37zm335-61l-54-22-55 22v55h109v-55zm258-2h-90v57h90v-57zm-15 42h-60v-26h60v26zm41-66h-83v15h68v34h15v-49zm-338 21l38 16v29h-77v-29zM848 916q-51-20-104-29V455q0-72 48-127.5t213-79 313-23.5q147 0 313 23t213.5 79 47.5 128v449h-94q-4 0-10 2V595H848v321zm820-526q11 11 27 11 15 0 26-11t11-27q0-15-11-26t-26-11q-16 0-27 11t-11 26q0 16 11 27zm-456-61q-8 0-14 5.5t-6 13.5 6 14 14 6h211q8 0 14-6t6-14-6-13.5-14-5.5h-211zm1098 813q0 8-5 12.5t-11 4.5h-293v152h239q8 0 12.5 5t4.5 12v142q0 7-4.5 12t-12.5 5h-239v267q0 17-17 17h-186q-17 0-17-17v-754q0-7 4.5-12t12.5-5h496q6 0 11 5t5 12v142zm-933 17v152h240q7 0 12 5t5 12v142q0 7-5 12t-12 5h-240v267q0 17-16 17h-187q-16 0-16-17v-754q0-7 4.5-12t11.5-5h496q7 0 12 5t5 12v142q0 8-5 12.5t-12 4.5h-293z"},"children":[]}]};exports.u1F4F4=u1F4F4;var u1F4F5={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2351.5 2001Q2192 2281 1910 2446.5T1299 2612q-326 0-606-162.5T250.5 2007 88 1401t162.5-606T693 352.5 1299 190q329 0 611 165.5T2351.5 801t159.5 600-159.5 600zm-1341-1507.5Q874 538 758 618l1319 1331q82-117 128-255.5t46-292.5q0-255-128-475.5T1774.5 577 1299 449q-152 0-288.5 44.5zM885 678q16-41 54.5-65.5t150-38T1296 561q153 0 286 27t133 141v789l-75-77V831h-603zm333-41q-5 0-9.5 4t-4.5 10 4.5 10 9.5 4h155q14 0 14-14t-14-14h-155zm334 44q8 8 19 8t19.5-8 8.5-20q0-11-8.5-19t-19.5-8-19 8-8 19q0 12 8 20zm52.5 1621.5Q1749 2253 1869 2163L542 825q-92 121-143 266.5T348 1401q0 254 127.5 475T824 2224.5t475 127.5q161 0 305.5-49.5zM1715 2077v2q0 51-35.5 93t-159 58-224.5 16q-102 0-225.5-16t-159-58-35.5-93v-851l76 76v665h657zm-148-79h-63v12h50v26h13v-38zm-20 18h-69v44h69v-44zm-12 33h-45v-20h45v20zm-183-31l-41-17-41 17v42h82v-42zm-41-4l28 13v22h-58v-22zm-213 50q19 0 30-6t11-22q0-17-11-23t-30-6h-12v-10l-22 16 22 16v-10h12q29 0 29 17t-29 17h-28v11h28z"},"children":[]}]};exports.u1F4F5=u1F4F5;var u1F4F6={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1451 608q26 0 45 18.5t19 44.5v103l-1 10v9q0 14-5 35t-23 42l-459 566v744q0 33-23.5 55.5T949 2258H823q-32 0-55-23t-23-55v-744L286 870q-18-23-23.5-43t-5.5-32q0-14 1-20.5t1-10.5v-93q0-26 17.5-44.5T320 608h1131zm815 0q31 0 54 23.5t23 54.5v1494q0 32-23 55t-54 23h-126q-33 0-56.5-23t-23.5-55V686q0-32 23.5-55t56.5-23h126zm-423 467q31 0 54.5 23t23.5 54v1028q0 33-23.5 55.5T1843 2258h-127q-32 0-55-23t-23-55V1152q0-31 23-54t55-23h127zm-422 358q32 0 55 22.5t23 55.5v669q0 32-23 55t-55 23h-126q-31 0-55-23.5t-24-54.5v-669q0-33 23.5-55.5t55.5-22.5h126zm-676-360V837H553zm473-236h-191v236z"},"children":[]}]};exports.u1F4F6=u1F4F6;var u1F4F7={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2185 665q93 7 147.5 80.5T2387 927v888q0 20-7.5 37t-20.5 31l-233 262q-13 18-34 29.5t-46 11.5h-7q-4 0-7-1l-391-44q63-86 94-184.5t31-204.5q0-178-90.5-331.5t-243-240T1104 1094q-226 0-408 142t-235 361q74-164 266-296t376-132q232 0 406.5 172.5T1684 1753q0 138-58.5 259T1461 2211l-118 87q-75 55-161.5 86T992 2415q-193 0-347.5-116.5T437 2004l-72-9q-74 0-113-65t-39-173v-637q0-158 17.5-237.5t73-162T487 563l38-22q26-15 66-28.5t98-13.5h16l29 2 53 5q41 4 104.5 11t123.5 13l200 24 176-118q8-4 13-4h6l434 46q13 0 22 9l159 160zm-867 1479q128-139 128-313 0-185-133-318t-317-133q-178 0-315 133.5T544 1832q0 184 133.5 317.5T995 2283q195 0 323-139zm23-298q-8 137-107 235t-236 98q-144 0-247.5-102.5T647 1832q0-110 62-197t165-129q-72 46-114 117.5T718 1775q0 134 93 226.5t224 92.5q106 0 195.5-71t110.5-177zM1114 819l495 56-113-137-250-26z"},"children":[]}]};exports.u1F4F7=u1F4F7;var u1F4F9={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2321 1148q11 2 18.5 11t7.5 20v773q0 11-9.5 21.5T2314 1984h-7l-288-66v160q0 49-25 83.5t-66 50.5l-799 332-28 9q-14 5-30 5-8 0-16.5-1t-17.5-3l-385-87q-62-14-105-66.5T504 2285v-607l29 4q15 2 29 2 196 0 342.5-129t146.5-319q0-178-117.5-305T659 804q-39 0-78 8t-77 22v-29q0-44 22-79t59-51l770-319q33-14 63.5-18t50.5-4 31 1l17 2 100 23q45-21 107.5-40t105.5-19q93 0 172.5 56t118 140 38.5 150q0 111-31.5 181.5T2019 962v117zm-417 744l-574-129q-10-3-17-12.5t-7-20.5V959q0-11 8-22t23-11l8 1 559 126V600q0-23-17-44.5t-40-26.5l-355-80-6-1h-15q-12 0-32 3t-40 11L823 700l240 53q64 16 105.5 70t41.5 114v1451l683-285q8-5 9.5-11t1.5-14v-186zM356.5 1001.5Q461 911 649 882q132 0 228 102t96 238q0 107-42.5 191T772 1551.5 574 1606q-132 0-227-102t-95-240q0-172 104.5-262.5zM2150 1297l-648-146v461l648 147v-462zM682.5 1426.5Q733 1364 733 1282q0-98-62.5-168T519 1044q-9 0-16 1l-18 3q-60 15-100.5 71.5T344 1251q0 94 63.5 166t154.5 72q70 0 120.5-62.5zM847 1829q-22-25-51-25t-48.5 23.5T728 1882q0 41 23.5 64t54.5 23q26 0 44.5-25t18.5-56q0-34-22-59z"},"children":[]}]};exports.u1F4F9=u1F4F9;var u1F4FA={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2102 803q76 0 131 54.5t55 131.5v996q0 76-55.5 131t-135.5 55q-11 0-28 2 0 38-3 62l-3 38q-2 15-3.5 23t-1.5 14q0 23-18 41.5t-49 18.5q-66 0-73.5-63.5T1907 2183l-136 6q-130 7-252 10.5t-220 3.5q-94 0-209.5-3.5T850 2189l-133-6q0 35-3 57l-3 35q-2 14-3.5 21.5T706 2310q0 23-18 41.5t-48 18.5q-65 0-73.5-61.5T555 2175l-40-4h-18q-75 0-130.5-55T311 1985V989q0-77 55-131.5T497 803q5 0 125-12t363-19q13-38 34.5-67t54.5-50L900 382q-9 3-19 5t-21 2q-43 0-73.5-30.5T756 285q0-45 31.5-75.5T860 179q43 0 74.5 31.5T966 285q0 18-7 35t-18 30l215 266q24-7 49-11t50-4q23 0 46.5 4t46.5 10l215-265q-24-27-24-65 0-44 30.5-75t73.5-31 74 32 31 74q0 40-30 72t-75 32q-11 0-20-2t-19-5l-176 275q29 23 53.5 52t35.5 61q156 3 324 13t261 20zm-261.5 301.5Q1811 998 1671 981l-57-6q-116-9-232-12.5t-234-3.5h-115q-75 0-225.5 8t-205 29-87.5 70.5-41 133.5l-15 173q-7 86-7 173 0 126 16 237t66.5 155 148 52.5 226 15 251.5 6.5q122 0 338-9t275.5-48 78-134.5T1870 1466q0-255-29.5-361.5zm309 272.5q-32.5-33-79.5-33t-79.5 33-32.5 79 33 80 79 34 79-34 33-80-32.5-79zm-.5-334q-33-34-79-34t-79 34-33 80 33 79 79 33 79-33 33-79-33-80z"},"children":[]}]};exports.u1F4FA=u1F4FA;var u1F4FB={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2363 1903q-29 131-75.5 204T2108 2219q-3 28-7 48.5t-4 22.5q-5 22-31.5 40.5T1980 2349q-50 0-79.5-18.5T1870 2289q0-5-2-11t-4-17q-103 10-215.5 12t-225.5 2h-249q-115 0-231.5-2T720 2260l-4 17q-2 7-2 12-2 23-31 41.5t-79 18.5q-53 0-82-16t-34-43q0-3-4-19.5t-9-55.5q-105-35-157-97.5T236 1904q136 0 272 4t273 4q141 0 220.5-2.5t148-4 68.5-53.5q0-35-29.5-48.5T782 1790q-139 0-267.5 2.5T260 1797h-20q-5 0-10 1h-11q-2-16-3-34l-2-34q11-12 27-18t98.5-14.5T510 1689q48 0 97 2t97 2l100-1q65 0 126.5 1t122.5 1h63q52 0 79-14t27-40q0-23-21.5-36.5T1148 1590q-63 0-122.5-1.5T907 1587q-71 0-142.5 1t-146.5 1q-241 0-317.5 10t-92.5 23v-61q0-31 108.5-60.5T655 1471l194 1q74 0 143-1t139-1h48q25 0 38.5-15.5t13.5-34.5q0-21-17.5-40t-55.5-19q-22 0-42.5 1t-38.5 1q-39 0-108-1.5t-132-1.5h-72q-38 0-80 1l-147-1q-131 0-215.5 26T208 1450l3-76q63-57 152-86t249-29q98 0 194.5 2.5t194.5 2.5l10 2q34 3 67 3t67 1q36 0 54.5-12.5t18.5-39.5q0-42-71.5-50.5T945 1159q-50 0-98-1.5t-98-1.5q-62 0-130-1h-18q-109 0-206 19.5T226 1242q21-142 84-237t236-141q-3-5-4.5-13t-1.5-16q0-20 11-35t31-21l1600-459q4 0 11-1 14 0 25 9.5t11 24.5q0 13-7.5 23t-18.5 13L855 816q90-6 201.5-10.5T1299 801q374 0 577.5 28.5T2185 913t156 196.5 51 428.5q0 234-29 365zm-197-659q0-36-26.5-62t-62.5-26h-574q-37 0-63 26.5t-26 61.5v157q0 37 25.5 63t63.5 26h381l5-60q6-73 16.5-115.5t23.5-42.5q23 0 39 107t17 111h92q37 0 63-26t26-63v-157zm-56 473q-42-42-99-42t-99 42-42 99q0 59 41 100t100 41 100-41 41-100q0-57-42-99zm-456 0q-42-42-99-42t-99 42-42 99q0 59 41 100t100 41 100-41 41-100q0-57-42-99z"},"children":[]}]};exports.u1F4FB=u1F4FB;var u1F4FC={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2301 754q55 0 95 40.5t40 94.5v1054q0 54-40 94.5t-95 40.5H297q-56 0-94.5-40t-38.5-95V889q0-55 38.5-95t94.5-40h2004zm-275 448q62 36 105 95t55 134q10-42 18.5-95.5T2218 1213q-5-9-10-11h-182zm-401 599q33 0 55.5-23t22.5-55v-443q0-32-23-55t-55-23H974q-31 0-54.5 22.5T896 1280v443q0 33 23.5 55.5T974 1801h651zm-840-425q-19-8-38-8-48 0-83 34.5t-35 83.5q0 50 34 84t84 34q9 0 19-2l19-4v-222zm1164 27q-35-35-83-35-8 0-16 2l-17 4v226q8 2 16.5 3t16.5 1q49 0 83.5-35t34.5-83-35-83zM397 1202l-8 9q-6 6-16 20 37 87 70 151t62 109q0-101 70-173.5t172-72.5q9 0 19 1t19 3v-47H397zm0 599h388v-77q-9 2-19 2l-19 1q-131 0-226.5-131T348 1276q-16 33-28 85t-12 124q0 107 25 185t64 131zm1811 0q53-83 70.5-157.5T2296 1485q0-75-12-127t-28-84q-22 233-99 363t-208 164h259z"},"children":[]}]};exports.u1F4FC=u1F4FC;var u1F500={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M300 1990l-31-1q-18 0-56-2v-192l69 3h11q220 0 425-116t385.5-324 375.5-333.5T1874 854V523l513 415-513 415v-291q-111 36-252.5 133t-293 270.5-322 292.5T659 1933.5 300 1990zm1574-556l513 415-513 414v-329q-171-44-303-116.5T1322 1646q27-27 52.5-54.5t50.5-55.5l54-59q90 81 183 142.5t212 105.5v-291zM267 989l-54 3V800l55-3q17 0 30-1 228 0 443 87t406 256q-41 39-92 94.5t-53 58.5l-14 16q-169-161-341-240t-359-79h-21z"},"children":[]}]};exports.u1F500=u1F500;var u1F501={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M332 1498q-31-89-31-183 0-228 164.5-392.5T858 758h985V450l513 416-513 414V951H858q-148 0-256 107t-108 257q0 11 1 21l1 22zm1936-354q31 91 31 182 0 228-163.5 392.5T1742 1883H757v308l-512-415 512-415v330h985q148 0 256-107t108-258q0-20-3-43z"},"children":[]}]};exports.u1F501=u1F501;var u1F502={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M498 1170q-73 39-129.5 98.5T277 1403q-2-18-3.5-37t-1.5-38q0-237 165-402.5T831 760h984V452l513 415-513 415V953H831q-109 0-199.5 60T498 1170zm522 731q-118 119-284 119t-283.5-119T335 1618q0-165 118-283.5T736 1216q166 0 284 118t118 284q0 164-118 283zm1221-755q31 87 31 182 0 228-164.5 392.5T1715 1885h-548q54-86 71-193h477q150 0 257-108t107-256q0-22-3-43zM872 1764q0-7-8-7h-59v-413q0-2-3-4.5t-6-2.5l-171 37q-7 0-7 7v102q0 2 2.5 4.5t7.5 2.5l51-15v282h-59q-8 0-8 7v96q0 8 8 8h244q8 0 8-8v-96z"},"children":[]}]};exports.u1F502=u1F502;var u1F503={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2274 1361q2 17 2 50 0 275-132 503t-356 356.5-486 128.5q-122 0-238.5-30T838 2282l-217 231-58-642 680-22-244 261q72 31 148.5 47t154.5 16q312 0 530.5-222t218.5-539q0-24-1-36zM552 1472l-226 15-2-33q0-16-1-33 0-252 126.5-478t352-361T1297 447q122 0 239.5 30t226.5 89l217-231 57 641-679 23 244-261q-72-31-148.5-47T1299 675q-192 0-363.5 95t-278 267T551 1434q0 26 1 38z"},"children":[]}]};exports.u1F503=u1F503;var u1F504={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M551 1374l-1 25q0 13-1 26 0 197 100.5 373t273 276 375.5 100q78 0 155-16.5t149-48.5l-245-261 680 23-57 643-218-232q-108 58-225 88t-238 30q-254 0-478-125t-361-351.5T323 1409q0-32 2-49zm447-637l245 261-681-22 58-643 217 231q109-59 226.5-88.5T1302 446q264 0 487.5 130T2145 934t132 488v32l-2 32-226-15 2-26v-24q0-199-100.5-373T1676 773.5 1302 673q-158 0-304 64z"},"children":[]}]};exports.u1F504=u1F504;var u1F505={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1643 1715q-143 143-343 143t-342.5-142.5T815 1373t143-343 342-143 342.5 143.5T1786 1373t-143 342zm-143.5-541.5Q1416 1090 1300 1090q-117 0-200 84t-83 199q0 116 83.5 199.5T1300 1656q115 0 199-83t84-200q0-116-83.5-199.5zM1186 2037q0-20 14-34t34-14h134q20 0 33.5 14t13.5 34v131q0 20-13.5 34t-33.5 14h-134q-20 0-34-14t-14-34v-131zm-435-275q13-13 34-13 20 0 33 13l95 95q13 13 13 34 0 20-13 33l-93 93q-14 14-34 14-19 0-33-14l-95-94q-7-7-10-16t-4-18q0-20 14-34zm1098-775q-14 14-33 14-9 0-18-3.5t-16-10.5l-94-95q-14-14-14-33t14-33l93-94q13-13 33-13 9 0 18 3t16 10l95 95q13 13 13 33 0 9-3 18t-10 16zM638 1260q20 0 33.5 14t13.5 34v134q0 20-13.5 33.5T638 1489H506q-20 0-33.5-13.5T459 1442v-134q0-20 13.5-34t33.5-14h132zm1050 663q-14-14-14-33t15-34l94-94q13-13 33-13 9 0 18 3t16 10l93 93q13 13 13 33 0 9-3 18t-10 16l-95 95q-14 14-33 14-9 0-18-3.5t-16-10.5zm275-435q-20 0-34-13.5t-14-33.5v-133q0-20 14-34t34-14h131q20 0 34 14t14 34v133q0 20-14 33.5t-34 13.5h-131zm-549-776q0 20-13.5 33.5T1367 759h-134q-20 0-33.5-13.5T1186 712V580q0-19 13.5-33t33.5-14h134q20 0 33.5 14t13.5 33v132zM912 826q7 7 10 16t3 17q0 20-13 33l-94 95q-14 14-33 14-21 0-34-14l-93-93q-14-14-14-33 0-20 14-34l95-94q14-14 34-14 19 0 33 14z"},"children":[]}]};exports.u1F505=u1F505;var u1F506={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1642.5 1715.5Q1499 1859 1300 1859t-342-142.5T815 1373q0-200 142.5-342.5T1300 888t343 143.5 143 341.5q0 199-143.5 342.5zm-142-540.5q-82.5-84-200.5-84-117 0-199.5 83t-82.5 199q0 117 82.5 200t199.5 83q118 0 200.5-84t82.5-199q0-114-82.5-198zM1415 712q0 20-14 34t-34 14h-134q-20 0-33.5-14t-13.5-34V405q0-20 13.5-33.5T1233 358h134q20 0 34 13.5t14 33.5v307zM913 826q13 13 13 33 0 9-3 18t-10 16l-94 94q-14 14-34 14-19 0-33-14L534 770q-14-14-14-33 0-20 14-34l95-94q14-14 34-14 19 0 33 14zm-274 435q20 0 33.5 13.5T686 1308v133q0 20-13.5 34t-33.5 14H331q-20 0-33.5-14t-13.5-34v-133q0-20 13.5-33.5T331 1261h308zm112 501q14-14 34-14 18 0 34 14l94 95q13 13 13 33t-13 33l-217 217q-14 14-33 14-21 0-34-14l-95-94q-14-14-14-33 0-20 14-34zm435 274q0-20 13.5-33.5t33.5-13.5h134q20 0 34 13.5t14 33.5v307q0 20-14 34t-34 14h-134q-20 0-33.5-14t-13.5-34v-307zm502-113q-8-7-11-16t-3-17q0-19 14-33l94-95q14-14 34-14 19 0 33 14l217 217q14 14 14 33 0 20-14 34l-94 94q-14 14-34 14-19 0-33-14zm274-434q-20 0-33.5-14t-13.5-34v-133q0-20 13.5-33.5t33.5-13.5h308q19 0 33 13.5t14 33.5v133q0 20-14 34t-33 14h-308zm-113-502q-14 14-33 14-21 0-34-14l-94-94q-15-15-15-34t14-33l218-217q14-14 33-14 18 0 34 14l94 94q14 14 14 33 0 20-14 34z"},"children":[]}]};exports.u1F506=u1F506;var u1F507={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2348.5 1979Q2186 2259 1906 2421.5T1300 2584t-606-162.5T251.5 1979 89 1373t162.5-606T694 324.5 1300 162t606 162.5T2348.5 767t162.5 606-162.5 606zM736 608l1336 1323q85-118 132.5-259.5T2252 1373q0-252-126-472.5T1778.5 551 1300 422q-159 0-302 49T736 608zm1124 1535L526 820q-84 118-130.5 258T349 1373q0 257 129 478.5T827.5 2199t472.5 126q158 0 300-48t260-134zm-360-889q-18-60-50.5-96.5T1373 1120q26-274 95-426t161-152q71 0 155 252t84 575q0 62-3.5 120.5T1855 1605zm-282 362q27 223 93.5 376t151.5 204h-65q-23 0-85-93.5T1198 1867h-3l-241-303-74-22q-8 84-25 135.5t-48 56.5l-5 1H663q-57 0-97.5-101.5T525 1392q0-133 36.5-230.5T649 1052zm498 494q-23 42-45 64t-42 22q-76 0-137-105.5t-95-298.5zM1172 928q52-166 121.5-276T1407 542h56q-72 43-132.5 163.5T1238 994z"},"children":[]}]};exports.u1F507=u1F507;var u1F508={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1999 1779.5q-41 207.5-105.5 343.5T1776 2259q-96 0-170-153t-106-428q62-6 109.5-96t47.5-207q0-132-46.5-217.5T1494 1072q27-291 103-464.5T1776 434q52 0 116.5 134t106 343 41.5 436q0 225-41 432.5zM1593 2259h-71q-27 0-94.5-104T1302 1896l-6-1-264-334-82-23q-8 112-30.5 162t-62.5 50H711q-64 0-107.5-112.5T560 1373q0-153 43.5-265.5T711 995h154q31 0 52 46.5t33 159.5l42-10q20-4 40-7l231-289q56-198 137.5-329.5T1532 434h61q-122 73-204 328t-82 585 82 584.5 204 327.5z"},"children":[]}]};exports.u1F508=u1F508;var u1F509={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1690 1777.5q-41 207.5-105.5 343.5T1467 2257q-96 0-170-153t-106-428q60-6 108.5-95.5T1348 1373q0-129-47-216t-116-87q28-300 104-469t178-169q52 0 116.5 134t106 343 41.5 436q0 225-41 432.5zM1284 2257h-71q-27 0-94.5-104T993 1894l-6-1-264-334-82-23q-13 126-34 169t-54 43H401q-62 0-106-112t-44-265q0-154 44-266t106-112h155q31 0 52 46.5t33 159.5q20-5 41-9.5t41-7.5l231-289q51-187 134-324t135-137h61q-122 73-204 328t-82 585 82 584.5 204 327.5zm650-1361q60 77 93 192.5t33 255.5q0 139-33 254.5t-93 193.5l-89-90q42-61 65.5-154t23.5-204-23.5-204.5T1845 986zm242-244q83 126 127.5 303.5T2348 1344q0 207-45 386.5T2176 2035l-91-92q65-106 101-262t36-337q0-182-36-338t-101-262z"},"children":[]}]};exports.u1F509=u1F509;var u1F50A={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1486 2053q-92 279-171 279-96 0-170.5-155.5T1040 1750q60-6 108-96t48-206q0-129-47.5-216.5T1033 1144q27-292 103.5-464T1315 508q79 0 171 277.5t92 633.5q0 355-92 634zm-353 279h-71q-26 0-93.5-102.5T841 1969l-5-2-263-334-83-23-5 51h-1q-6 63-24.5 107.5T411 1822H251q-63 0-107-112t-44-265 43.5-265.5T251 1067h154q31 0 51 46.5t28 107.5l6 53 41-10q20-5 42-8l230-289q52-192 134.5-325.5T1071 508h62q-124 74-205 328.5T847 1419q0 329 81.5 584t204.5 329zM2274 475q108 174 167 418.5t59 524.5-59.5 526-166.5 417l-92-92q90-152 141.5-375t51.5-476-51.5-476T2182 567zm-251 253q83 126 127.5 302.5T2195 1418t-45 388-127 302l-91-91q66-109 102-263.5t36-335.5q0-173-36-331t-102-268zm-242 242q60 78 93 193t33 255-33 255-93 193l-88-90q42-60 65-153t23-205q0-111-23-204t-65-154z"},"children":[]}]};exports.u1F50A=u1F50A;var u1F50B={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1591 346q102 43 161 110t59 142l-86 1662q-6 107-129 181t-296 74-296-74-129-181L788 598q0-73 56.5-139.5T1011 346q27-53 107-90t182-37 181.5 36.5T1591 346zm-431 120.5q56 31.5 140 31.5 82 0 139.5-31t57.5-74q0-44-59-75.5T1300 286q-81 0-138.5 32t-57.5 75q0 42 56 73.5zM1582.5 740Q1702 677 1702 592q0-42-22.5-79t-76.5-71v96q0 74-90 127t-213 53q-127 0-215-54t-88-134v-88q-46 29-73 65t-27 76q0 89 119 154.5t284 65.5q163 0 282.5-63zm-78.5 394v-8q0-59-59-70.5t-64-12.5-13.5-62-70.5-61q-65 0-71.5 60t-14.5 66l-5 3q-51 0-84 21.5t-33 59.5q0 33 22 52t75 23q18 0 25 5t7 17q7 55 26.5 81t54.5 26q58 0 67.5-52t9.5-62.5 58-21 68-54.5zm-66 1019q-38-13-145-13-101 0-138 18.5t-37 55.5q0 39 37.5 55t150.5 16q95 0 132.5-18t37.5-57q0-44-38-57z"},"children":[]}]};exports.u1F50B=u1F50B;var u1F50C={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1987.5 2264.5q47.5 80.5 101.5 118t54 89.5q0 40-30.5 69.5T2044 2571q-72 0-186-147.5T1744 2091q0-140 45.5-279.5t163-327.5 151-289.5T2137 1002q0-103-46.5-159.5T1964 786q-128 0-231.5 139T1618 1381.5t-75.5 557.5-215.5 386-367 146q-207 0-331-112t-124-292q0-98 36-216.5t42-209.5q-43-16-59-36.5t-16-50.5q0-17 2-34t2-34q0-19-3-30.5t-45.5-32.5-91.5-86-77-173.5T267 905l1-52q0-71 13.5-98t50.5-49 91-26q2-35 7-78t12-87l12-85q6-41 12-74l12-72q13-30 36-41t52-11q60 0 90 30t30 87q0 24-2 65t-5 88l-15 185q53 3 107.5 7.5T889 706q4-69 15.5-162.5T931 360l6-41q13-30 35.5-41.5T1027 266q66 0 93 32t27 94q0 40-4 114t-9 153l-7 86q64 22 83.5 50.5T1230 917q0 185-80 345t-203 207q-7 8-29 21t-24.5 93-114.5 89q-4 45-11 84t-18 80l-13 48q-13 32-24.5 83T701 2067q0 101 68.5 154.5T962 2275q114 0 204-68.5t147.5-205 80.5-321 28.5-341T1457 1069t94-225.5T1730.5 660t236.5-72q161 0 263.5 116.5T2333 1005q0 118-42 246t-160.5 321-154.5 303-36 216q0 93 47.5 173.5zM1007 343q-9 25-23.5 146T962 714q38 8 93 13l13-190q3-45 4.5-83t1.5-62q0-32-8.5-42t-38.5-10q-10 0-16 2zm-461-33q-9 23-25 145.5T496 680q26 0 47.5 1.5T590 683l8-100q4-50 7-96l5-82q2-36 2-56 0-27-8.5-35t-37.5-8q-8 0-13.5 1.5T546 310z"},"children":[]}]};exports.u1F50C=u1F50C;var u1F50D={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2400 2166q14 14 20 32t6 39q0 93-95.5 186.5T2145 2517q-21 0-39-6t-32-20l-425-425q-26-28-26-71 0-48 29-101l-186-185q-109 82-234 123t-255 41q-215 0-402-107t-294-294-107-402q0-216 108-402t294-294 402-108q217 0 402 107t293.5 293.5T1782 1067q0 131-41.5 256T1616 1557l185 185q26-14 51.5-20t48.5-6q22 0 41.5 6t32.5 20zm-1101-548.5q147-87.5 231-233t84-314.5q0-260-186.5-447.5T978 435q-171 0-316 83.5T429.5 749 342 1070q0 170 85.5 316.5t232 232.5 318.5 86q174 0 321-87.5z"},"children":[]}]};exports.u1F50D=u1F50D;var u1F50E={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M625 1742q13-14 32.5-20t41.5-6q23 0 48.5 6t51.5 20l185-185q-83-109-124.5-234T818 1067q0-214 108.5-400.5T1220 373t402-107q216 0 400.5 107t294 292.5T2426 1070q0 217-107.5 402.5t-293 293T1623 1873q-130 0-255-41t-234-123l-186 185q29 53 29 101 0 43-26 71l-425 425q-14 14-32 20t-39 6q-91 0-186-94t-95-186q0-21 6-39t20-32zm1545.5-993Q2083 602 1938 518.5T1622 435q-263 0-449.5 187.5T986 1070q0 169 84 314.5t231 233 321 87.5q172 0 318.5-86t232-232.5T2258 1070q0-174-87.5-321z"},"children":[]}]};exports.u1F50E=u1F50E;var u1F50F={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1360 1664q42 0 72 29.5t30 71.5v695q0 40-29 71.5t-73 31.5H354q-42 0-71-30.5t-29-72.5v-695q0-43 29.5-72t70.5-29h30v-253q0-196 139-335t335-139q194 0 333 139t139 335v253h30zm980 316l4 27q0 13 1 27 0 88-48 193t-98.5 169-114.5 163l-4 4q-16 24-50 24-38 0-55.5-35t-84-119.5-105-160.5-54.5-133-16-106q0-42 18.5-106t48.5-106l20-27q-5-5-5-9v-483q-13-5-20.5-11t-7.5-12v-119q11 22 90 35t203 13v111l123-11v-110q42-5 71-15.5t37-22.5v118q0 7-8 13t-22 11v483q0 4-4 9 38 50 54.5 92.5t26.5 93.5zm-1245-569q0-97-69-168t-168-71q-101 0-170 71t-69 168v253h476v-253zm935-290q-114 0-187.5-16t-73.5-37V720q0-70 6.5-140t23.5-134q37 14 106.5 20.5T2062 473v648h-32zm59 1225q60-73 100.5-161.5T2230 2033v-16l-2-15q-17-79-45.5-116.5T2141 1826q-25 2-53 3.5t-58 1.5q-29 0-56.5-1.5t-52.5-3.5q-59 77-74 121.5t-15 86.5q0 56 33 135t69 126l53 72 15 22v-247q-22-8-36.5-28t-14.5-46q0-33 23.5-56t55.5-23q33 0 56.5 23t23.5 56q0 26-14 46t-37 28v247zm96-1882l44-9q19-4 33-9 17 65 24 135.5t7 138.5v348q0 14-29 24.5t-79 18.5V464zm-81-80q-35 3-74 3-63 0-116.5-5.5T1825 367q35-89 86.5-131.5T2028 193q76 0 126.5 47t82.5 127q-17 5-38.5 8t-46.5 5zM893 2144q26-12 42.5-35.5T952 2056q0-39-27.5-67.5T858 1960q-41 0-68 27.5t-27 68.5q0 29 16 52.5t43 35.5l-33 139h136l-29-131z"},"children":[]}]};exports.u1F50F=u1F50F;var u1F510={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1301 1370q43 0 72.5 30.5t29.5 71.5v695q0 42-30 71.5t-72 29.5H296q-41 0-71.5-29.5T194 2167v-695q0-42 30-72t72-30h30v-254q0-195 140-334t333-139q191 0 331.5 138.5T1271 1116v254h30zm769 850l-147 147-146-147v-97l97-99-97-97 97-97-97-99v-368q-150-49-244.5-177.5T1438 904q0-196 142.5-340T1922 420q200 0 342 141.5T2406 904q0 149-93 279t-243 180v857zM1036 1116q0-99-71-168.5T799 878q-97 0-167 70t-70 168v254h474v-254zm983-311.5q41-41.5 41-96.5 0-58-41-98.5t-96-40.5q-54 0-96 41.5t-42 97.5q0 54 41 96t97 42q55 0 96-41.5zM834 1849q27-11 43.5-34.5T894 1761q0-39-27.5-66.5T799 1667q-41 0-68 28t-27 66q0 30 16.5 53.5T763 1849l-33 140h137l-30-130z"},"children":[]}]};exports.u1F510=u1F510;var u1F511={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M451 2570H131v-319l107-105h213v-213h212v-212l403-403q-41-76-62.5-162T982 977q0-197 98-368t271-272.5T1725 235q202 0 375 101.5T2371 609t98 368q0 199-100 372t-272 272.5-372 99.5q-94 0-179-21.5t-162-62.5zM2087 915q62-62 62-150t-61.5-150.5T1937 552t-150.5 62.5T1725 765t62 150 150 62 150-62z"},"children":[]}]};exports.u1F511=u1F511;var u1F512={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1957 1464q-3 363-17 499t-113.5 232-275 180-354.5 84q-107 0-180.5-45T893 2275.5t-127.5-301T688 1722t22.5-90.5T777 1542q-62-109-99-219.5T641 1087q0-200 99.5-354.5T1027 488t340-90q135 0 231.5 71.5t147 198.5 50.5 243q0 49-2 106.5t-6 113.5q71 11 120.5 59.5T1958 1305zM830 1629q-20 26-32 49t-12 46q0 50 52 80.5t122 30.5q39 0 82-7.5t103-28.5q10 0 138.5-58.5t353-194T1861 1317q0-39-23-60t-58-29q-3 37-7 63l-6 37q-10 54-47.5 77t-69.5 23q-34 0-65-14.5t-34.5-49-3.5-69.5l1-51q-129 36-252 95.5T1048 1469q27 58 46 88l23 39 7 16q4 12 4 32 0 51-48.5 80.5T988 1754q-36 0-69-21t-89-104zm142-377.5q16 66.5 38 125.5 191-106 309-156.5t229-79.5q0-225-50.5-322.5T1345 721q-74 0-174 49.5t-157.5 137T956 1117q0 68 16 134.5zm617 773.5q46-32 72.5-73.5t26.5-78.5q0-39-26.5-60t-64.5-21q-79 0-152.5 66.5T1371 1988q0 39 27 60t65 21q29 0 56-10l-8 137 121-64z"},"children":[]}]};exports.u1F512=u1F512;var u1F513={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2158 342q122 134 122 389 0 135-33 279t-67 213l-10 20q-11 24-36.5 39t-67.5 15q-41 0-73.5-25t-32.5-57q0-26 7-69l16-97q9-53 16-112.5t7-117.5q0-149-57.5-221T1777 526q-119 0-219.5 52.5t-146 148.5-45.5 226q0 52 6 102.5t16 95.5l9-2q122 0 186.5 54.5T1648 1334q0 4 1 14v72l-4 237q0 68-3 131l-4 115q-5 138-31 192t-63 101.5-156 126-246.5 122.5-252.5 44q-109 0-185.5-47.5T577 2293t-124-292-74-255q0-87 88.5-178t309-204 348.5-159q-22-73-36-150.5T1075 905q0-231 99.5-392.5t267-233T1803 208q233 0 355 134zm-744 907q7 26 12.5 43t10.5 30l5 20q2 8 2 15 0 47-33.5 76.5T1312 1463q-49 0-79.5-26.5t-44-53-33.5-85.5l-230 100q-139 61-293 165t-154 189q0 49 49.5 80.5T651 1864q134 0 339-101t383-217.5 178-199.5q0-42-27.5-67t-109.5-30zm-664 368q7 0 14-1 24 0 42.5 12t18.5 35q0 45-45.5 74.5T682 1767q-32 0-48-12.5t-16-34.5q0-34 34.5-63t84.5-38zm536 366q24-20 43.5-47.5t19.5-57.5q0-32-16.5-45.5T1286 1819q-66 0-144 55.5t-78 114.5q0 26 16.5 44t45.5 18q12 0 27-4.5t29-4.5q8 0 11.5 18.5t3.5 58.5 3.5 58.5 11.5 18.5q13 0 35.5-12t22.5-35l-1-111q0-21 2-31.5t7-15.5z"},"children":[]}]};exports.u1F513=u1F513;var u1F514={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1978 1154q152 113 206.5 196t54.5 166q0 185-197 404.5t-521.5 365T893 2431q-241 0-381.5-106.5T371 1957q0-81 7-170t7-154q0-106-12.5-293.5T360 1046q0-95 26.5-185.5T485 683l30-35q-11-23-15.5-47.5T495 553q0-95 68-167t169-72q72 0 132 41t87 107q112 2 224 46t289 218l78 77q123 124 237.5 205.5T1955 1136zm-543 1063.5q287-114.5 496-324.5t209-373q0-86-72.5-130t-212.5-44q-107 0-233 27 50 46 79 113.5t29 137.5q0 140-101.5 247.5T1380 1979q-156 0-255-108.5t-99-243.5v-18q-213 124-355 277t-142 272q0 81 101 127.5t263 46.5q255 0 542-114.5zM471.5 1338q12.5 187 12.5 297 0 56-7 135t-7 174q2 16 12 16 5 0 15.5-12t28.5-38l30-42q15-21 51-61.5t36-162.5q0-155-49.5-403T544 813q0-9-1-15l-2-9q0-4-4-4-9 0-43.5 68T459 1046q0 105 12.5 292zm185-877Q619 490 619 527q0 15 11 15 3 0 15-5l25-10q29-12 38.5-18t25.5-11l30-9q15-5 26.5-11t11.5-12q0-14-22.5-24T732 432q-38 0-75.5 29z"},"children":[]}]};exports.u1F514=u1F514;var u1F515={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2348.5 1978Q2186 2258 1906 2420.5T1300 2583t-606-162.5T251.5 1978 89 1372t162.5-606T694 323.5 1300 161t606 162.5T2348.5 766t162.5 606-162.5 606zm-1953-308Q443 1811 528 1929L1864 606q-119-88-262-136.5T1300 421q-258 0-479.5 130t-347 349.5T348 1372q0 157 47.5 298zm322-684Q739 923 776 868q-29-46-29-99 0-74 54-130t131-56q51 0 91 23.5t69 66.5q15-2 30.5-3t30.5-1q76 0 156 26t236 144l-602 597-45-134q-23-66-41-135l-21-79q-13-45-19-93l-1-13q-2-11-7-11t-20.5 37.5T773 1117q0 45 12.5 113.5T810 1356l37 175-67 66q-28-159-56-279t-28-207q0-62 21.5-125zM873 763l23-15q12-8 26-16l26-14q12-6 20-12.5t8-11.5q0-11-15-14.5t-26-3.5q-36 0-64 22.5T843 758q0 14 8 14 9 0 22-9zm1332 313.5Q2158 937 2073 819L739 2141q118 87 260.5 135t300.5 48q256 0 476-128t348-348 128-476q0-156-47-295.5zm-239 15.5q160 90 203 153t43 137q0 166-168.5 374t-419 332.5T1163 2213q-74 0-133-17.5t-96.5-54T886 2091l1033-1025zm134 289.5q-23-8.5-57-8.5-62 0-136.5 24t-112.5 43l-69 34q42 30 63 72t21 85q0 83-58 144t-142 61q-73 0-128-44.5t-71-135.5q-141 116-237.5 248t-96.5 183q0 25 26 37t90 12q111 0 266-61t228-109.5 184-150 182-220 71-173.5q0-32-23-40.5z"},"children":[]}]};exports.u1F515=u1F515;var u1F516={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2335 1732q0 4 1 8 0 16-10 30.5t-26 29.5l-249 255-110 112-174 179-20 22q-28 31-56 49t-55 18q-32 0-69.5-23.5T1356 2233t-307.5-312.5-245-321.5T606 1233l-29-68-21-51q-3-6-7-17t-4-20q0-28 21-45l111-89q-35-27-66.5-54.5T548 832l-43-40Q387 676 335.5 609.5T274 529t-10-31q0-15 38-60.5t66-45.5q22 0 49.5 48.5T520 580t170 186q-20-75-27.5-152.5T655 458q0-25 7.5-41.5t47-24T775 385q29 0 29 32 0 22-1.5 38t-1.5 33q0 79 11 162t32 161l141-111q5-4 10.5-6.5t15.5-2.5q33 0 70.5 53T1246 932t293 275 402.5 281.5 308 175 83.5 60.5zM985 952q-30-28-70-28h-11l-12 2 17 29q5 9 8.5 17.5T921 988q0 16-31 43t-52 27q-12-2-25-11.5t-21-17.5q-4 13-4 29 0 44 29 74.5t69 30.5q51 0 90-41.5t39-93.5q0-48-30-76z"},"children":[]}]};exports.u1F516=u1F516;var u1F517={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2090 1153.5Q1983 1307 1861.5 1448T1618 1689t-237 122q-14 20-27.5 38t-27.5 35l-7 8q-72 92-138.5 155t-127.5 97q-100 176-199 256t-198 80q-111 0-182-67.5T403 2257q0-99 57-214.5T626 1816q18-92 75.5-188T867 1424q4-108 75.5-271.5t146-306 164-266.5T1446 401.5t216-54.5q128 0 255.5 74.5t203.5 194 76 242.5q0 142-107 295.5zm-428.5-283Q1617 829 1559 829q-63 0-117 55.5T1283 1116l-44 75q-21 35-36 61l-22 39q58 0 128.5 48.5T1419 1454q24-24 45-51.5t40-56.5l38-57q5-8 84.5-124t79.5-197q0-56-44.5-97.5zM723 2001.5q33 44.5 110 82.5 23-30 39.5-64.5T889 1951q-17-17-29-33.5t-12-42.5q0-24 12-49.5t32-50.5l22-28q21-26 43-52t46-51l28-30q35-37 72.5-62t67.5-25q15 0 36 14t67 14q28 0 48-16t45-33q-29-64-95-106t-130-42q-129 0-290.5 185.5T690 1883q0 74 33 118.5zm36 170.5l26-32q-34-15-55.5-33.5T685 2062q-27 33-46 67t-19 61q0 18 12.5 32t40.5 14q18 0 41-18.5t45-45.5zm511-332q4-6 8-11l8-9q-31-2-55.5-9t-45.5-17l-31 37q-17 21-39 45 5 14 8.5 28t3.5 27q0 20-4 40.5t-11 42.5q48-42 88.5-89t63.5-78zm-191-31q13-14 24-29.5t22-22.5q-21-14-40.5-30.5T1047 1701l-40 45q20 7 38.5 24t33.5 39z"},"children":[]}]};exports.u1F517=u1F517;var u1F518={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2159 1913.5Q2036 2129 1817.5 2249T1325 2369q-283 0-517.5-116T445 1931t-128-468q0-278 128.5-511.5T804 587t517-131q268 0 489.5 127T2157 934.5t125 497.5q0 266-123 481.5zm-31.5-847Q2057 899 1932 778q-37 0-103.5 42.5T1704 915q115 79 188.5 219.5T1966 1420q0 179-89 333.5T1631 1996t-342 88q-138 0-266.5-51.5T803 1894q-45 57-71.5 105.5T696 2087q122 93 287 146t342 53q247 0 448-110.5t313-305.5 112-438q0-198-70.5-365.5zm-416 764Q1880 1661 1880 1420q0-219-168.5-380.5T1314 878q-263 0-433.5 163.5T710 1458q0 230 167 386t412 156q254 0 422.5-169.5zm-629.5-602q93-83.5 222-83.5 117 0 200.5 90.5T1588 1447q0 124-88 204.5t-212 80.5q-125 0-212-84.5T989 1436q0-124 93-207.5z"},"children":[]}]};exports.u1F518=u1F518;var u1F519={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1089 1895q6 0 10 7l190 507v11q-4 4-9 4h-126q-8 0-10-7l-29-87H944l-29 87q-2 7-11 7H780q-6 0-10-4l-1-11 190-507q5-7 11-7h119zm-9 328l-50-151-50 151h100zm-396-73q32 22 51.5 54t19.5 70q0 63-49.5 108T585 2427H370q-5 0-8.5-3.5t-3.5-7.5v-511q0-12 12-12h192q70 0 120 45t50 108q0 30-13.5 57t-34.5 47zm-130-48q21 0 36.5-15t15.5-38q0-22-15.5-38t-36.5-16h-72v107h72zm5 226q23 0 39.5-18t16.5-43q0-26-18-43.5t-46-17.5h-67v122h75zm1141-81l58 114-2 7q-40 34-88.5 50.5T1563 2435q-123 0-204-78t-81-197q0-118 80.5-197t204.5-79q114 0 187 57l1 8-63 115-6 3-4-2q-21-17-52-26t-63-9q-59 0-97 36.5t-38 93.5 37.5 94 97.5 37q31 0 67.5-13t60.5-32l5-1zm540 162l1 7q0 3-3 7t-8 4h-123q-8 0-9-6l-157-249v244q0 4-3.5 7.5t-8.5 3.5h-110q-5 0-8.5-3.5t-3.5-7.5v-511q0-5 3.5-8.5t8.5-3.5h110q12 0 12 12v199l136-206 4-4q2 0 7-1h123q11 0 11 11v3l-1 3-151 228zM393 973l877-642v400h936v479h-936v406z"},"children":[]}]};exports.u1F519=u1F519;var u1F51A={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1796 1821q114 0 185 74t71 193q0 117-69.5 192t-186.5 75h-220q-13 0-13-11v-511q0-12 13-12h220zm-5 409q57 0 91.5-39t34.5-103q0-63-34.5-102t-91.5-39h-81q-11 0-11 9v262q0 12 11 12h81zm-879-409q11 0 11 12v85q0 11-11 11H682v100h177q12 0 12 11v85q0 4-3.5 7.5t-8.5 3.5H682v112h230q5 0 8 3.5t3 7.5v85q0 11-11 11H559q-4 0-7.5-3t-3.5-8v-511q0-5 3.5-8.5t7.5-3.5h353zm558 0q11 0 11 12v511q0 13-11 13h-111q-5 0-11-6l-205-326v319q0 5-4 9t-9 4h-112q-11 0-11-13v-511q0-12 11-12h112q6 0 10 5l207 325v-318q0-12 12-12h111zm736-840l-876 643v-402H393V744h937V338z"},"children":[]}]};exports.u1F51A=u1F51A;var u1F51B={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1733 1865q12 0 12 12v511q0 11-12 11h-111q-8 0-10-5l-208-324v318q0 11-12 11h-110q-12 0-12-11v-511q0-12 12-12h110q8 0 11 5l208 325v-318q0-12 11-12h111zm-613.5 457q-79.5 77-201.5 77-124 0-202.5-77.5T637 2126q0-117 78.5-194.5T918 1854q122 0 201.5 77t79.5 195q0 119-79.5 196zm-97-297.5Q982 1984 918 1984q-66 0-106.5 40.5T771 2126q0 62 40.5 101.5T918 2267q64 0 104.5-39.5T1063 2126q0-61-40.5-101.5zm901 361Q1910 2399 1893 2399q-18 0-31.5-13.5T1848 2355q0-20 13.5-32.5t31.5-12.5q17 0 30.5 12.5t13.5 32.5q0 17-13.5 30.5zM1962 1936l-58 319q-2 10-11 10-4 0-8-2.5t-4-7.5l-58-319q0-4-1-12 0-30 20.5-51t50.5-21q29 0 49.5 21t20.5 51q0 8-1 12zM1634 734V333l877 644-877 642v-401H964v401L89 977l875-644v401h670z"},"children":[]}]};exports.u1F51B=u1F51B;var u1F51C={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M544 2000q115 58 153.5 103.5T736 2200q0 63-51 114.5T542 2366q-56 0-103.5-22.5T353 2278l-1-9 52-88 5-4 7 3q22 22 61.5 44t74.5 22q17 0 33-11t16-32q0-35-56-63.5t-74-39.5l-5-2q-74-42-90-73t-16-68q0-65 42-114t135-49q37 0 81 12t71 30l3 10-35 83-4 4h-6q-3 0-38.5-15.5T542 1902q-23 0-36.5 11t-13.5 31q0 16 11 28.5t22 18.5zm1693-178q5 0 8 3.5t3 7.5v513q0 4-3 7.5t-8 3.5h-97q-5 0-11-6l-182-323v318q0 4-3 7.5t-8 3.5h-99q-5 0-8-3.5t-3-7.5v-513q0-4 3-7.5t8-3.5h99q5 0 9 6l182 323v-318q0-4 4-7.5t9-3.5h97zm-521.5 457q-69.5 78-179.5 78-111 0-181-77.5t-70-195.5 70-195.5 181-77.5q110 0 179.5 78t69.5 195-69.5 195zm-87-298.5Q1593 1939 1536 1939q-56 0-93.5 40.5T1405 2084t38 104 93 40q56 0 92-41.5t36-102.5q0-62-35.5-103.5zM1185 2279q-70 78-180 78t-179.5-78-69.5-195 69.5-195 179.5-78 180 78 70 195-70 195zm-86.5-299.5Q1061 1939 1005 1939t-93 41-37 104 37 103.5 93 40.5q55 0 93-40t38-104-37.5-104.5zM2207 978l-877 643v-400H394V740h936V336z"},"children":[]}]};exports.u1F51C=u1F51C;var u1F51D={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1300 404l643 879h-400v307h-481v-307H658zm221.5 1867.5Q1443 2349 1319 2349q-123 0-201.5-77.5T1039 2076t78.5-195.5T1319 1803q124 0 202.5 77.5T1600 2076t-78.5 195.5zM1882 1809q75 0 129 53t54 126q0 74-54 127.5t-129 53.5h-104v163q0 11-11 11h-111q-5 0-8.5-3t-3.5-8v-512q0-5 3.5-8t8.5-3h226zm-839 102q0 5-3.5 8t-7.5 3H856v410q0 11-12 11H733q-11 0-11-11v-410H547q-5 0-9-3t-4-8v-91q0-5 4-8t9-3h485q4 0 7.5 3t3.5 8v91zm382.5 63.5Q1385 1935 1319 1935q-64 0-104.5 39.5T1174 2076t40.5 101.5T1319 2217q66 0 106.5-39.5T1466 2076t-40.5-101.5zM1871 2064q29-2 49.5-24t20.5-52-21.5-52-50.5-22h-89l-3 3v144l3 3h91z"},"children":[]}]};exports.u1F51D=u1F51D;var u1F51E={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2176 1936.5Q2040 2171 1805.5 2307T1300 2443q-272 0-506-136t-370-370-136-506 136-506 370-370 506-136q271 0 505.5 136T2176 925.5t136 505.5-136 505.5zm-232 57.5q99-114 155-257.5t56-305.5q0-231-116.5-429.5T1725 689t-425-114q-162 0-305.5 56.5T737 787l137 138-97 17q-22 4-36 20t-14 39l-98-99q-87 109-136 243.5T444 1431q0 228 114 425t312.5 313.5T1300 2286q151 0 285.5-48.5T1829 2101l-118-118q37-15 70-39t59-54zm-725-725q12 73 54 130-36 42-58 90l-82-84v-222zm554 133q51 44 79.5 106.5T1881 1647q0 140-93 230.5t-233 90.5-234-90.5-94-230.5q0-76 29.5-138t79.5-107q-35-35-55.5-87t-20.5-113q0-125 84-207t211-82q128 0 211 82t83 207q0 60-20 111t-56 89zm-129 343.5q37-38.5 37-98.5t-37-98.5-89-38.5q-56 0-92 39t-36 98q0 58 37.5 97.5t90.5 39.5q52 0 89-38.5zm-159.5-145q10.5-22.5 31.5-33.5l114 113q-7 24-25.5 41t-49.5 17q-39 0-60-27t-21-64q0-24 10.5-46.5zm153-486.5q-32.5-35-82.5-35-51 0-83 35t-32 88q0 56 32 90t83 34q50 0 82.5-34t32.5-90q0-53-32.5-88zM1152 1734q5 0 9.5 4t4.5 9v183q0 6-4.5 9.5t-9.5 3.5H810q-13 0-13-13v-183q0-5 4-9t9-4h65v-539l-87 10q-5 0-9.5-3t-4.5-9V999q0-5 3-8.5t8-3.5l286-49q15 0 15 14v782h66z"},"children":[]}]};exports.u1F51E=u1F51E;var u1F51F={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2222 378q47 0 79.5 33t32.5 78v1845q0 46-33 79t-79 33H377q-45 0-78-33.5t-33-78.5V489q0-45 32-78t79-33h1845zM563 2142q4 7 7 7h1459q8 0 8-7V683q0-8-8-8H570q-7 0-7 8v1459zm753-1196.5Q1416 772 1581 772q164 0 264 174t100 461q0 289-100.5 462T1581 2042q-166 0-265.5-172t-99.5-463q0-288 100-461.5zM2232 458q-3 0-10-1H377q-14 0-23.5 9.5T344 489v1845q0 15 11 23l153-155q-26-24-26-60V683q0-36 26-62.5t62-26.5h1459q14 0 27.5 4.5T2081 611zM731 1108q-16 0-16-17V852q0-14 12-17l309-56q19 0 19 17v978h68q8 0 12.5 5t4.5 11v229q0 6-4.5 11t-12.5 5H756q-7 0-12.5-5t-5.5-11v-229q0-6 5.5-11t12.5-5h67v-674zm749 544q38 94 101 94 61 0 99.5-93.5T1719 1407t-38.5-245.5-99.5-93.5q-67 0-103 101t-36 238q0 151 38 245z"},"children":[]}]};exports.u1F51F=u1F51F;var u1F520={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2239 1408v938h-939v-938h939zm-1879 0V470h939v938H360zm1420 804q144 0 232-92.5t88-242.5q0-148-88-241.5t-232-93.5h-277q-6 0-10.5 4t-4.5 10v641q0 6 4.5 10.5t10.5 4.5h277zm-247-938q-6 0-10.5-4t-4.5-10V619q0-6 4.5-10.5t10.5-4.5h241q88 0 150.5 57t62.5 135q0 38-16.5 71.5T1928 927q40 26 63.5 66.5t23.5 88.5q0 77-61 134.5t-150 57.5h-271zm-377-22L917 616q-3-8-13-8H755q-10 0-12 8l-239 636-2 3q0 2-1 4 0 5 5.5 8.5t10.5 3.5h156q11 0 13-10l36-109h215l36 109q3 10 13 10h157q6 0 10.5-5t4.5-9q-2-4-2-5zm-85 744l68 139-2 10q-103 89-249 89-158 0-263.5-101T519 1878q0-156 105.5-257T888 1520q74 0 133 18.5t107 54.5l1 11-75 144-6 4-7-1q-28-23-69-36.5t-84-13.5q-79 0-130 49t-51 128q0 78 50.5 126t130.5 48q41 0 89-16.5t82-42.5l8-3zm700-298q71 0 116 51t45 129q0 84-46.5 130.5T1765 2055h-94q-6 0-10.5-4t-4.5-10v-329q0-5 4.5-9.5t10.5-4.5h100zm-2-548q29 0 50.5-23.5t21.5-54.5q0-32-21.5-55.5T1769 993h-93l-5 4v149l5 4h93zm-6-282q27 0 46-20t19-48-19-47.5-46-19.5h-89l-3 2v129l3 4h89zm-933-38l62 188H767z"},"children":[]}]};exports.u1F520=u1F520;var u1F521={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2239 1408v938h-939v-938h939zm-1879 0V471h939v937H360zm1135-91q-11 0-11-11V561q0-4 3-7.5t8-3.5h155q5 0 7.5 3.5t2.5 7.5v259q30-15 65.5-24t74.5-9q123 0 198.5 75.5T2074 1052t-76 189-198 75q-39 0-74.5-8.5T1660 1283v23q0 11-10 11h-155zm527 181q0-4-3-7.5t-8-3.5h-153q-5 0-8 3.5t-3 7.5v261q-30-17-65.5-26t-74.5-9q-119 0-196.5 75t-77.5 190 77.5 190 196.5 75q78 0 140-34v25q0 4 3 7.5t8 3.5h153q5 0 8-3.5t3-7.5v-747zm-903-786q0-14-12-14H958q-11 0-11 14v35q-65-35-151-35-130 0-211 81t-81 201q0 122 82 203t210 81q44 0 81.5-9.5T947 1242v23q0 14 11 14h149q12 0 12-14V712zm-71 1336l66 128-3 9q-90 76-219 76-140 0-231.5-88.5T569 1948q0-135 91.5-224.5T892 1634q130 0 211 66l3 8-73 131-4 3-7-1q-23-19-58-30t-71-11q-66 0-109.5 40.5T740 1948q0 66 43 107.5t110 41.5q35 0 77.5-15.5t66.5-35.5l7-3zm-153.5-961q-37.5 37-98.5 37-60 0-98-36.5T660 994q0-56 37.5-93.5T796 863q62 0 99 38t37 93q0 56-37.5 93zm819.5 47q33 34 86 34 54 0 87.5-33.5t33.5-82.5-32.5-83-88.5-34q-53 0-86 34t-33 83q0 48 33 82zm80 937q-32 34-87 34-54 0-88-33.5t-34-82.5 34-82 88-33q53 0 86 33.5t33 81.5-32 82z"},"children":[]}]};exports.u1F521=u1F521;var u1F522={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2239 1408v938h-939v-938h939zm-1879 0V471h939v937H360zm1718 583q0-5-4-8t-8-3h-126v-465q0-3-4-6.5t-7-3.5h-162q-3 0-8 3v1l-309 476q-2 2-2 6v129q0 5 3.5 8t7.5 3h297v132q0 4 3.5 6.5t7.5 2.5h162q11 0 11-9v-132h126q4 0 8-3t4-8v-129zM1478 712q0-2-1-6 0-22 100.5-89t202.5-67q95 0 177.5 72t82.5 175q0 111-98.5 202T1751 1148h286q11 0 11 12v146q0 13-11 13h-500q-11 0-11-13v-153q0-11 65.5-48.5t148-118T1822 842q0-41-27.5-66.5T1733 750t-75 20-89 62l-10 3-8-5zm-478 1170q53 28 84 76.5t31 105.5q0 101-81.5 167.5T840 2298q-74 0-142.5-31T586 2198t-43-49l2-7 72-104 8-4 9 3q29 27 82 53t95 26q37 0 64-25.5t27-60.5q0-34-38-58.5t-60.5-28.5-22.5-16v-90q0-12 23-17t63.5-33 40.5-65q0-33-24-58t-56-25q-31 0-68.5 17.5T697 1693l-15 11-8 2-8-4-71-104q-3 0-3-5 0-18 78.5-65.5T849 1480q103 0 178.5 69.5T1103 1705q0 48-26.5 94t-76.5 83zm-5-713q0-5-2.5-8.5t-7.5-3.5h-56V573l-4-6-10-3-242 52q-8 2-8 11v142l4 10 9 1 73-20v397h-56q-5 0-8 3.5t-3 8.5v136q0 11 11 11h290q10 0 10-11v-136zm646 811l115-179v179h-115z"},"children":[]}]};exports.u1F522=u1F522;var u1F523={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M360 1409V471h939v938H360zm1879 0v937h-939v-937h939zm-1029 610.5q-42 56.5-122 56.5-38 0-70.5-14.5T962 2019q-28 33-68.5 52.5T799 2091q-91 0-149.5-57T591 1889q0-87 58-145t150-58q32 0 58.5 7t49.5 19v-11q0-8 8-8h107q10 0 10 8v142q0 49 14.5 78t41.5 29q19 0 28.5-14.5t9.5-42.5q0-133-78.5-214T829 1598q-130 0-213 80t-83 205 83 205 213 80q112 0 188-56l74 101q-54 41-120.5 61T829 2294q-184 0-302.5-117T408 1883t119.5-294.5T829 1471q191 0 307 117.5t116 302.5q0 72-42 128.5zm893.5-112.5q-48.5-50-127.5-50-44 0-80 17l178-280v-8l-8-6h-162l-8 6-151 229q0-5 1-8t1-6q0-76-49.5-123.5T1571 1630t-126.5 47.5T1395 1801t49.5 123.5T1571 1972q24 0 45.5-5.5t39.5-14.5l-161 246v11l7 4h171l8-4 119-186q0 78 49 126.5t127 48.5 127-49 49-121q0-71-48.5-121zm-598-871q66.5-54 160.5-54 29 0 55.5 6t49.5 18l-5-402q0-16 10.5-28t27.5-12q96 0 176 44t118.5 106.5 43 105T2171 877l13 8q6 5 11 10.5t5 12.5q0 13-16 22t-41 9q-49 0-105-65t-191-65l4 299q0 90-78.5 152.5T1610 1323q-68 0-119.5-44.5T1439 1167q0-77 66.5-131zM1152 902q0-9-11-9H519q-12 0-12 9v126q0 13 12 13h232v249q0 11 11 11h135q11 0 11-11v-249h233q11 0 11-13V902zm0-253q0-11-11-11H519q-12 0-12 11v126q0 9 12 9h622q11 0 11-9V649zM870 1823q-26-27-71-27t-70.5 27-25.5 66q0 38 25.5 65.5T799 1982t71-27.5 26-65.5q0-39-26-66zm751.5 25.5Q1603 1868 1571 1868t-50.5-19.5-18.5-47.5q0-29 18.5-48.5t50.5-19.5 50.5 19.5 18.5 48.5q0 28-18.5 47.5zm405 227.5q-18.5 20-50.5 20t-50.5-20-18.5-48q0-29 18.5-48.5t50.5-19.5 50.5 19.5 18.5 48.5q0 28-18.5 48z"},"children":[]}]};exports.u1F523=u1F523;var u1F524={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2429 1614v937h-939v-659H831v-659H171V294h939v659h659v661h660zm-1054 143q88 0 150.5-57t62.5-134q0-48-24-88.5t-65-66.5q28-26 43.5-60t15.5-72q0-80-63-135t-150-55h-241q-5 0-9.5 3.5t-4.5 10.5v639q0 8 4.5 11.5t9.5 3.5h271zm-422-663q5 0 9.5-4t4.5-9v-6L727 440q-2-9-12-9H566q-10 0-14 9l-238 635q0 2-1 2t-1 2q0 15 15 15h156q13 0 14-9l36-108h214l37 108q0 9 13 9h156zm1316 1247l-68-141-5-4-7 1q-30 24-79 42.5t-92 18.5q-79 0-130-49t-51-127 50.5-126 130.5-48q43 0 84 12.5t69 34.5l7 2 6-4 75-145-1-9q-48-38-107-55.5t-134-17.5q-159 0-263.5 102.5T1649 2082q0 154 104.5 255t263.5 101q143 0 250-87zm-927-863q29 0 49.5 22.5t20.5 55.5q0 32-20.5 55t-50.5 23h-94l-3-4v-149l3-3h95zm-95-127l-5-3v-129l5-3h89q26 0 45 19.5t19 47.5q0 29-19 48.5t-45 19.5h-89zM641 655l62 186H578z"},"children":[]}]};exports.u1F524=u1F524;var u1F525={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1965 1042q2 0 10-2l18-3q10 0 22-1.5t24-1.5q14 0 24.5 2.5t10.5 10.5l-2 10q-1 3-52 22.5t-87.5 76T1896 1307q0 107 56 282t56 289q0 170-104 315.5T1620.5 2427t-358.5 88q-171 0-332.5-85.5t-257-229.5-95.5-311q0-133 65-346t65-325q0-89-36-146t-109-80l-11-2q-10-2-18-7t-8-15q0-14 28-22.5t54-8.5q100 0 169.5 74t79 135 30.5 61q7 0 14.5-7.5T916 1178l5-10q122-191 287.5-334T1459 564.5t85-248.5q0-60-21.5-120.5t-43-86.5-21.5-38q0-8 11-8 46 0 133 94t122 212.5 35 244.5q0 133-32.5 264.5T1659 1101t-35 148q0 37 14 57.5t42 20.5q53 0 94.5-126.5T1965 1042zm-585.5 865.5q34.5-61.5 53.5-106t19-128.5q0-70-20-137t-58-116.5-49-49.5q-6 0-6 11 0 10 4 18l6 17q3 9 5 18.5t2 21.5v13q-2 26-29.5 83t-138 164.5T1019 1900t-39 160q0 135 89.5 237t229.5 102q128 0 240-88t112-212q0-53-29-102t-49-49q-4 0-4 8 0 10 3.5 19t3.5 18q0 41-47 82t-96 41q-37 0-62.5-26t-25.5-67q0-54 34.5-115.5z"},"children":[]}]};exports.u1F525=u1F525;var u1F526={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M683.5 1453q-195.5-78-326-199.5T227 950q2-172 109-338.5t294.5-276T1014 226q165 0 285 81t190.5 278 70.5 393q0 43-3.5 84.5t-7.5 61.5-7.5 35.5-36.5 75-84.5 111.5-150.5 108-155 67l-57 10q-179 0-374.5-78zM423 1187q105 94 265 94 162 0 324.5-90.5t266-243T1382 650q0-149-103.5-240.5T1014 318q-168 0-329.5 91t-264 240T318 948q0 145 105 239zm1452 1164l-749-752q111-12 220.5-79t177-151.5T1606 1224l619 822q8 26 8 53 0 96-91.5 181.5T1947 2366q-41 0-72-15zm-875-1237q-77 37-153 37-93 0-151-54t-58-136q0-122 118-233t256-111q93 0 152 53.5t59 138.5q0 41-15 83.5t-44 84.5q-2-52-41-90.5t-92-38.5q-54 0-94.5 39.5T896 983q0 48 29.5 85t74.5 46zm1343 1089q30 38 30 88 0 87-80 165.5t-172 78.5q-32 0-59.5-12t-49.5-33l-75-76q112 0 212-75t132-219z"},"children":[]}]};exports.u1F526=u1F526;var u1F527={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2273 2134.5q-7 27.5-19 27.5-17 0-79-54.5t-115-54.5h-19l-20 2q-3 0-35.5 4.5T1953 2102v23q0 60 10 81.5t73.5 63.5 63.5 65q0 30-39.5 47.5T1956 2402l-18 1q-45 0-88.5-18.5t-77-48-54.5-65-28-78-22-86.5-41-70l-52-55-185-191-101-103q-74-76-134-135t-133-59h-7q-25 6-66 8.5t-85 2.5q-277 0-410.5-151.5T320 985q0-91 17-120.5t33-29.5q12 0 27 11l26 19q54 46 94 77.5t98 78.5 90 47q23 0 98-23t106-33.5 31-43.5v-53q0-98-9.5-139.5T827 652l-64-59h-1q-66-60-80.5-74.5T667 488q0-31 67-47.5T882 424q130 0 255 72.5T1323.5 698t61.5 319q0 115 10.5 155.5t21 65T1522 1375l25 31 320 366q37 35 149 33.5t188 79 76 192.5q0 30-7 57.5zM1445 1669q39 36 136 133t106.5 102 18.5 5q16 0 36.5-22.5t20.5-39.5q0-22-39-64t-50-55l-60-70-62-70q-37-42-112.5-136.5T1334 1357q-28 0-55.5 37.5T1251 1448q0 32 45 73.5t49.5 48 44.5 45.5z"},"children":[]}]};exports.u1F527=u1F527;var u1F528={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1665 827q2 26 2 55 0 31-19 60t-53 46l583 1292q9 18 9 39 0 56-56 105t-128 49q-36 0-64.5-15t-42.5-43l-634-1259-4 3q-60 26-87 26-30 0-60-15t-47-15q-10 0-22 8t-26 35l-23 44q-26 50-35 60.5t-41 26.5l-60 31-113 57q-16 7-31 11.5t-31 4.5q-29 0-54-14t-38-39L332 869q-10-19-10-40 0-31 18.5-60.5T393 722l184-93q29-14 63.5-23t69.5-9q23 0 43 3.5t40 3.5q34 0 80.5-16.5T951 551l7-3q-18-23-25.5-43.5T925 470q0-30 34-60t83-53l50-23q38-17 77.5-29t81.5-12q41 0 58.5 16t27.5 49q69-31 154-50t186-19q134 0 250 34.5t189 81 87.5 59.5 14.5 36q0 35-44.5 68T2056 601q-36 0-96-13t-100-13q-95 0-146 45t-51 154q0 27 2 53z"},"children":[]}]};exports.u1F528=u1F528;var u1F529={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2429 822q7 6 13 16.5t6 21.5v444q0 12-8 25.5t-21 19.5l-590 288q-8 5-21 5-15 0-27-8l-144-85-129 59 4 6q3 4 4.5 8.5t1.5 14.5q0 6-1 11.5t-3 10.5l-198 445q-4 8-10 15t-14 11l-339 156q-2 2-10 4t-12 2l-483-60q-25-4-37-25l-251-421q-8-13-8-24 0-7 3-15l153-524q5-14 15-23t22-12l4-3 359-159q8-3 16-4h14l489 87 159-67-2-111q0-22 19-37l330-250 7-4 8-3 295-98q3 0 8-1 8 0 16.5 4t14.5 9zM566 2144l276 35q41 0 56-12t31-44l116-268q11-24 11-52 0-20-4.5-35t-11.5-30l-176-319q-20-39-46.5-51.5T756 1349l-326-50q-20 0-29 4t-20 27l-99 340q-11 35-11 55 0 23 6 46.5t19 44.5l153 259q19 35 43.5 49.5T566 2144zm1538-751V986l-340-238-279 212v41l113-48q28-11 59-18.5t58-7.5q120 0 199 79t79 195q0 99-55.5 168t-127.5 99l-63 29 63 37zm-912-171l-256 115 212 392 251-115zm97-30l167 316q8-23 13.5-45t5.5-45q0-82-28.5-131.5T1418 1229q0-7 4-12t14-5q45 0 82 65t37 130q0 7-1 18l-2 22q-2 12-4.5 22t-6.5 13l48-22q13-25 18-52.5t5-55.5q0-38-6.5-62t-6.5-28q-4-10-11-25l-26-53q-6-11-6-16 0-16 22-16 43 0 79 68t36 131q0 35-12 65l49-22q10-20 16-44t6-54q0-48-18-97t-28.5-65-10.5-27q0-6 4-10.5t15-4.5q49 0 83.5 67t34.5 130q0 14-3 26t-3 23q38-30 52.5-62.5t14.5-74.5q0-64-45-119t-115-55q-44 0-67.5 8.5T1618 1053zm585-491l288 202 137-55-258-203zM736 1125l-202 89 325 48 186-84z"},"children":[]}]};exports.u1F529=u1F529;var u1F52A={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2282 699q-51 54-173 65t-196 152-179.5 218-175.5 77q-47 0-73.5 10t-26.5 37l135 248q6 11 8.5 24t2.5 24q0 25-10.5 46t-30.5 35L423 2417q-27 18-56 18-48 0-74-30.5T267 2276q0-204 85-380t335-428 475-431l33-26q5-6 15-11l172-151 215-186 124-106q90-77 185-128t189-51q90 0 164 56.5t74 139.5q0 71-51 125zM366 2276q6 34 27 34 16 0 36.5-15t40.5-29l989-679q12-13 21.5-20.5t9.5-27.5q0-8-2-13.5t-3-11.5l-193-355-19-33q-9-16-28-17-10 0-18.5 2.5t-156.5 130-314 297T514 1817t-112 220-36 239zM1564 969.5q-15-17.5-46-17.5-19 0-34 13t-15 42q0 22 14.5 38.5t42.5 16.5q25 0 39-18t14-38q0-19-15-36.5zm368.5-326Q1917 626 1886 626q-18 0-33.5 13.5T1837 680q0 21 15 38t41 17 40.5-17.5T1948 680q0-19-15.5-36.5zm271.5-177q-56-33.5-134-33.5-18 0-46 7.5t-28 18.5q0 13 73.5 43.5T2169 599l4 16q4 17 11.5 26.5t18.5 9.5q18 0 37.5-29.5T2260 559q0-59-56-92.5z"},"children":[]}]};exports.u1F52A=u1F52A;var u1F52B={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2395 1963q6 23 6 41 0 58-43 90t-63 32l-422 49q-25 0-38-23l-201-408q-35-71-86-109.5t-125-38.5h-218l-19-2q-96-8-165.5-76.5T951 1301q0-31-21-56.5t-58-39.5H253q-27 0-43.5-16.5T190 1149v-133q-12-25-22-62t-10-78q0-48 18.5-88.5T232 719v-23q0-8 6.5-14.5T253 675h131q8 0 13.5 6.5T403 696v15h1496v-29q0-8 6-13.5t14-5.5h67q19 0 19 19v29h77q9 0 16 8l14 19q7 11 16.5 20.5T2153 770q6 0 15-2l35-7q7 0 10-1 17 0 29 12t12 33q0 17-10 26t-17 29.5-23 49.5l-37 64 30 119 51 17q49 18 76.5 40.5t27.5 50.5-18.5 41.5-75.5 16.5q-29 0-58 28t-29 88q0 27 6 53.5t14 46.5zm-1190-454h177q107 0 150.5-31.5T1576 1368q0-58-9.5-85t-45-48-91.5-30q5 20 9 43t4 49q0 51-21.5 109t-57.5 58q-19 0-29.5-12.5T1324 1424q0-9 19-45t19-85q0-28-5.5-50.5T1343 1205h-175q-59 10-91 34.5t-38 47.5l-3 14q0 110 48 159t121 49z"},"children":[]}]};exports.u1F52B=u1F52B;var u1F52C={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1915.5 2454.5Q1789 2570 1655 2637t-269 67l-22-1q-61-2-89-35t-28-72q0-48 27-89t137.5-75 169.5-77.5 59-92.5q0-18-12-34t-29-16q-8 0-17 2t-17 2q-14 0-31-5t-30-13l-7 2q-20 100-111.5 166t-202.5 66q-63 0-119-21.5t-94-61.5q-4 2-7 3l-7 2q-24 8-44 22l-41 29q-21 14-42.5 24.5T781 2440q-46 0-77-31t-31-83q0-67 50-123t193-114q8-17 18.5-36t24.5-33l-238-89-87-32-51-18q-61-20-61-44l3-78q0-17 7-21l175-124q-24-14-49-53t-25-60q0-16 12-28l152-149q-6-30-6-58 0-26 3.5-50.5T809 1160l217-620q10-28 44-28 8 0 18 1l119-335q-3-10-3-18 0-26 22-40.5t60-14.5q89 0 224 55t135 116q0 20-11.5 31t-29.5 18l-116 325 19 11q18 12 29.5 26t11.5 29q0 6-2 14l-34 99q205 130 312 306t107 393q0 61-7.5 115.5T1905 1743q30 27 51 79.5t21 85.5q0 51 32.5 114.5T2042 2197q0 142-126.5 257.5zM1245 1016q40 43 98 43 61 0 102-46.5t41-108.5q0-57-41.5-100t-95.5-43q-59 0-101.5 46.5T1205 914q0 59 40 102zm-374 262q0 51 29 94.5t84 63 98 19.5q39 0 75-18t61-55q-92-2-177-28t-170-76zm509 900l-350-132q-23 23-35 51t-12 57q0 62 52 109t133 47q61 0 116.5-28.5t85.5-80.5zm266-313q5-5 5-10 0-19-35.5-31t-58.5-21l-96-36-110-40-106-37v14q0 29-40 47t-84 18q-48 0-76-13t-30-39l-9-111q-7-2-12-4l-9-4q-4-2-8-2-2 0-8-1.5t-13-1.5q-11 0-24.5 4t-30.5 16l-154 116q-3 2-5.5 5.5t-2.5 9.5q0 5 3.5 12.5T759 1769l657 248q25 9 45 9 19 0 31-5.5t19-12.5zm-173-209q37-62 52.5-119t15.5-109q0-85-35.5-165t-94.5-143l-88 251q-5 18-22 24-8 18-21 36.5t-30 35.5l-3 109 112 39zM1170 533l238 89 104-290-20-8q-49-10-108.5-30T1273 243zm-5 986q-18 8-39 11t-40 3l11 149q5 0 11 1t13 1q11 0 17.5-1t22.5-5zm-446-8q6 10 18 24.5t32 23.5l112-93q-17-14-30-29t-23-32z"},"children":[]}]};exports.u1F52C=u1F52C;var u1F52D={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2347.5 949q-53.5 101-150.5 149l-264 128q-28 14-57.5 18t-61.5 4q-43 0-87-11l-405 178q25 11 40.5 33.5t15.5 51.5v103q0 21-9 39t-24 31l334 550q5 8 6.5 15.5t1.5 15.5q0 22-12 37l191 315q7 11 7 26 0 19-14.5 34t-34.5 15q-28 0-42-24l-193-318q-37 0-54-29l-303-501v423q0 16-7.5 29t-19.5 21v297q0 21-14.5 35t-34.5 14-34.5-14-14.5-35v-293q-34-16-34-54v-411l-268 506q-8 15-21 21.5t-30 10.5l-174 330q-7 12-18.5 18.5T536 2714q-22 0-35.5-14.5T487 2665q0-12 6-23l172-326q-15-16-15-40 0-15 7-28l299-565q-21-12-34-33t-13-47v-7l-34 15q-20 8-41.5 11.5T790 1626l-116 51q-39 13-75 13-44 0-84.5-16.5T440 1625l-84 36q-15 6-30 6-41 0-73-36.5t-32-85.5q0-23 8.5-44.5T258 1462l80-58q0-5-1-10v-10q0-34 7.5-67t24.5-64q-32-17-51-49.5t-19-69.5q0-26 9.5-50.5T338 1043l417-333q23-18 47.5-24.5T850 679q45 0 78.5 24.5T976 770l351-255q20-74 58.5-126.5T1498 285l152-105q74-51 122-67.5T1875 96q128 0 252 87t199 233.5 75 300.5q0 131-53.5 232zM849 858q21-15 29-26t8-19q0-11-9-23.5T850 777q-9 0-18.5 2.5T816 787l-352 280q0 13 5.5 23t20.5 25zm725 309q-113-83-182.5-206.5T1309 683l-630 457q-29 26-43 61t-14 72q0 93 53 160t120 67q16 0 36-6zm574-791.5Q2020 222 1875 222q-106 0-169 83.5T1643 519q0 172 123 332t278 160q101 0 166.5-81t65.5-211q0-190-128-343.5zm25.5 508.5q-31.5 50-76.5 50-18 0-27.5-11t-9.5-22q0-13 25-53.5t25-103.5q0-50-13-91.5t-13-58.5q0-19 8.5-33.5T2124 546q37 0 59 69.5t22 141.5q0 77-31.5 127z"},"children":[]}]};exports.u1F52D=u1F52D;var u1F52E={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2231.5 2307q-149.5 87-352.5 129t-553 42q-225 0-488.5-29t-441-126.5T219 2179q0-25 40.5-48t70.5-73 96-104.5T634 1837l19-10q9-4 18-7-119-119-186-278t-67-334q0-237 120.5-441t327-320T1307 331t441.5 116.5 326.5 320 120 440.5q0 173-67.5 333T1937 1824q184 81 244.5 135t89.5 100.5 69.5 71 40.5 48.5q0 41-149.5 128zm-271-839q-17.5-15-42.5-15-56 0-140 94t-122 128.5-129 78.5-229.5 48.5T1159 1841q0 23 71 38t141 15q145 0 281.5-54t231-148 94.5-176q0-33-17.5-48zm-948-212.5q97.5 58.5 199 77.5t195.5 19q128 0 270.5-50t223-138.5T1981 959q0-136-96.5-257t-260-196.5T1305 430q-313 0-527.5 224.5T563 1219q0 101 15.5 136t46.5 35q40 0 69-67t64.5-96.5T848 1197q67 0 164.5 58.5zm-551.5 894q24 14.5 70 14.5 55 0 98-4.5t91-4.5q26 0 51 1t51 5l217 38q108 19 220 19 202 0 408-47t289-47q38 0 78 5.5t76 5.5q18 0 35-11.5t17-29.5q0-25-49.5-63t-111-70.5T1853 1898q-86 66-183 110-8-2-16-3l-18-2q-78-11-155.5-16.5T1323 1981q-90 0-178.5 9T968 2019q-57-24-110.5-54.5T756 1896q-74 19-196.5 86.5T437 2109q0 26 24 40.5z"},"children":[]}]};exports.u1F52E=u1F52E;var u1F52F={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2254 1882q6 9 8.5 19.5t2.5 21.5q0 33-23.5 55.5T2187 2001h-547l-273 456q-23 38-67 38-20 0-38.5-9.5T1232 2457l-272-456H412q-31 0-54.5-22.5T334 1923q0-22 11-41l273-458-273-458q-11-19-11-39 0-33 23-55.5t55-22.5h548l272-458q11-19 29.5-28.5t38.5-9.5q44 0 67 38l273 458h547q31 0 54.5 22.5T2265 927q0 10-2.5 20t-8.5 19l-272 458zm-522-876l159 265 157-265h-316zm-182 0h-501l-247 418 247 419h501l249-419zm-407-157h313l-156-265zm-433 422l157-265H551zm157 572l-157-266-159 266h316zm589 158h-313l157 263zm592-158l-157-266-159 266h316zm-582.5-244.5Q1397 1668 1300 1668t-166-69.5-69-164.5q0-97 69-166.5t166-69.5 165.5 69.5T1534 1434q0 95-68.5 164.5z"},"children":[]}]};exports.u1F52F=u1F52F;var u1F530={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2058 592v1126q0 62-31 132.5t-76 111.5l-517 471q-26 25-61 38t-73 13-73.5-13-61.5-38l-516-471q-46-42-77-113t-31-131V592q0-64 33.5-100.5T656 455q18 0 44 8t55 34l516 475q10 9 28 9t30-9l515-475q29-26 55-34t44-8q48 0 81.5 36.5T2058 592zm-758 547q-38 0-73.5-13t-61.5-38L699 661v1057q0 31 17.5 70t38.5 58l515 471q6 5 14 7t16 2V1139z"},"children":[]}]};exports.u1F530=u1F530;var u1F531={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2140 874l76 43q72 41 122 87.5t50 84.5q0 26-24.5 49.5T2296 1165l-28 2q-23 2-47.5 18t-24.5 46q0 8 2 16l4 18q15 73 28.5 142.5T2244 1557q0 211-119.5 372.5T1813 2133l-40 6q-44 6-78.5 20.5T1659 2227t-34 85.5-98 37-82.5 17-47.5 66.5l-15 30q-14 30-31.5 49.5T1314 2533l-15 2-15-2q-42-3-78-87t-99-91l-38-4q-29-2-52.5-11.5t-38-22.5-26-33.5T941 2243t-7-46.5-37-38-31-11.5l-47-8-35-6q-188-41-308.5-204T355 1555q0-106 24-202.5t24-120.5q0-31-24-47t-48-18l-28-2q-44-3-68-26.5t-24-47.5q0-75 224.5-202.5T656 763l53-29q29-16 57-16 22 0 39 12t17 32q0 33-69 162.5T647 1225t-37 355q0 99 72.5 169.5T851 1820q41 0 86.5-22t84-67 77.5-205.5 41-393.5q0-80-23.5-117.5T1049 977q-21 0-42.5 11T965 999q-21 0-35.5-11T915 958q0-127 127.5-315t163-247 93.5-59q53 0 96.5 64.5t165 254.5T1682 958q0 17-13.5 29t-36.5 12q-21 0-42-11t-43-11q-44 0-66.5 36t-22.5 119q0 174 40 376.5t113.5 257T1748 1820q96 0 169.5-72.5T1991 1580q0-135-31.5-317T1830 892l-17-31q-17-31-26.5-55.5T1777 761q0-19 17-31t39-12q29 0 84 29t102 56zm-625 1271.5q-28-13.5-113-13.5-50 0-76.5 2.5t-53.5 0-77-2.5q-89 0-115 15.5t-26 51.5q0 44 45.5 63t182.5 19h9.5l7.5-1q5 0 17 1 101 0 164-13t63-69q0-40-28-53.5z"},"children":[]}]};exports.u1F531=u1F531;var u1F532={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2222 400q47 0 79.5 33t32.5 78v1845q0 45-33.5 78t-78.5 33H377q-45 0-78-32t-33-79V511q0-47 32-79t79-32h1845zM751 1995q19 13 41 13h1015q28 0 48-19.5t20-47.5V925q0-14-4.5-26.5T1856 877l-179 182q14 14 21.5 32.5t7.5 38.5v606q0 43-31 72.5t-72 29.5H997q-18 0-35.5-6.5T931 1814zM2093 620q-12-9-27.5-14.5T2033 600H566q-42 0-70.5 28.5T467 698v1469q0 21 7.5 38.5T496 2237l214-216q-33-33-33-80V925q0-49 35-82.5t80-33.5h1015q22 0 39.5 7.5T1880 835z"},"children":[]}]};exports.u1F532=u1F532;var u1F533={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2223 400q47 0 79 33t32 78v1845q0 45-33 78t-78 33H377q-45 0-78-33t-33-78V511q0-45 32-78t79-33h1846zm33 111q0-14-10-23.5t-23-9.5H377q-14 0-23 9.5t-9 23.5v1845q0 14 9 23.5t23 9.5h1846q13 0 23-9.5t10-23.5V511zm-175 122q26 22 42.5 54t16.5 69v1354q0 65-47.5 113t-115.5 48H623q-34 0-63.5-12.5T507 2223l201-204q-30-32-30-78V925q0-46 34-81t81-35h1015q21 0 38.5 7t33.5 19zm-273 1377q28 0 48.5-20.5t20.5-48.5V925q0-29-21-48l-179 183q14 14 21.5 32t7.5 38v606q0 43-31 72.5t-72 29.5H997q-37 0-66-24l-180 181q9 6 20 10.5t22 4.5h1015zm-179-880q0-14-9-20t-17-6H997q-10 0-18 7.5t-8 18.5v606q0 11 8 18.5t18 7.5h606q11 0 18.5-7.5t7.5-18.5v-606z"},"children":[]}]};exports.u1F533=u1F533;var u1F534={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2103 1872.5q-121 215.5-337 343T1299 2343q-236 0-448.5-115t-344-334.5T375 1418q0-246 126-463t338-339 460-122q253 0 472 131t336 347 117 446q0 239-121 454.5zM600 1825v-813q-54 91-82.5 193T489 1418q0 112 28.5 214t82.5 193zm77 111q51 62 111 111V790q-59 48-111 110v1036zm189 165q27 18 55 32.5t57 28.5V675q-29 13-57 27.5T866 734v1367zm189 89q28 10 55.5 16t56.5 11V619q-29 5-56.5 11.5T1055 647v1543zm303 36V611q-16 0-30-1.5t-29-1.5q-14 0-27 1.5t-27 1.5v1615q14 0 27 1.5t27 1.5q15 0 29-1.5t30-1.5zm75-9q29-5 57.5-12t54.5-16V647q-26-8-54.5-15t-57.5-12v1597zm191-57q59-26 112-61V737q-27-17-55-32.5t-57-27.5v1483zm189-116q31-25 58.5-53t53.5-59V905q-26-31-53.5-59t-58.5-53v1251zm190-225q51-90 78-190.5t27-210.5q0-109-27-210t-78-190v801z"},"children":[]}]};exports.u1F534=u1F534;var u1F535={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2223 1390q0 14 1 28 0 246-124.5 459.5t-340.5 339-460 125.5q-254 0-470-131.5T494 1872t-119-454q0-240 127-458t340-342.5T1299 493q234 0 443 115t337 315 142 440zM893 718h811q-90-53-191.5-81T1299 609t-214 28-192 81zm-111 77q-61 51-112 112h1258q-26-31-53-58.5t-58-53.5H782zM615 985q-33 54-60 111h1488q-13-29-28-56.5t-33-54.5H615zm-89 189q-8 27-14.5 55.5T500 1287h1598q-11-60-27-113H526zm1173 947H899q89 51 190 79t210 28q110 0 210.5-28t189.5-79zm114-77q61-51 112-112H673q51 61 112 112h1028zm167-190q17-27 32.5-55t28.5-57H558q12 29 27.5 57t32.5 55h1362zm90-189q9-27 16-55.5t12-57.5H501q5 29 12 57.5t16 55.5h1541zm36-189l2-29v-57l-2-27H492l-2 27q0 14-1 28 0 14 1 29l2 29h1614z"},"children":[]}]};exports.u1F535=u1F535;var u1F536={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2250 1388q17 19 17 41 0 23-17 40l-910 912q-17 15-41 15-25 0-40-15l-911-912q-16-15-16-40 0-24 16-41l911-911q15-16 40-16t41 16zM1170 728h258l-111-113h-36zM980 917h638l-112-113h-414zm-188 189h1015l-112-112H903zm-191 190h1395l-111-112H714zm827 835h-258l111 112h36zm190-189H980l112 111h414zm189-191H792l111 112h792zm189-189H601l113 112h1171zm133-133l-56-56H525l-56 56 56 56h1548z"},"children":[]}]};exports.u1F536=u1F536;var u1F537={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2250 1389q17 17 17 40 0 24-17 41l-910 910q-16 17-41 17-11 0-21.5-4t-18.5-13l-911-910q-16-17-16-41 0-25 16-40l911-912q15-15 40-15t41 16zm-228-68l-79-79-54 54 80 78zm-589 53l80-78-80-80-79 80zm-134-25l-80 80 80 79 79-79zm79-187l-79-80-80 80 80 78zm-212 54l-80 80 80 78 78-78zm-134 133l-80 80 80 79 78-79zm54 214l80 80 78-80-78-79zm133 133l80 79 79-79-79-78zm214-53l80-80-80-79-79 79zm133-135l79-79-79-80-78 80zm134-134l80-78-80-80-78 80zm-55-212l-79-80-78 80 78 78zm-132-135l-80-79-79 79 79 80zm-135-134l-79-78-80 78 80 80zm-212 55l-80 79 80 80 78-80zm-134 134l-80 80 80 78 78-78zm-135 134l-79 80 79 78 80-78zm-134 133l-78 80 78 79 80-79zm55 214l79 80 80-80-80-79zm134 133l80 79 78-79-78-78zm134 134l80 80 78-80-78-78zm133 134l80 80 79-80-79-79zm214-54l80-80-80-78-79 78zm133-135l79-79-79-78-78 78zm134-132l80-80-80-79-78 79zm134-135l80-79-80-80-79 80zm54-322l-80-78-53 54 79 78zm-134-133l-78-79-54 53 78 80zm-135-134l-78-79-53 53 78 80zm-132-134l-80-80-53 54 79 79zm-135-133l-53-53-54 53 54 53zm-161 53l-79 80 54 53 78-79zm-135 135l-78 79 54 54 78-80zM923 974l-79 79 53 54 80-80zm-134 134l-79 78 53 54 80-78zm-133 134l-81 79 54 53 79-78zm-134 133l-53 54 53 53 53-53zm53 162l81 80 52-54-79-79zm135 134l79 78 54-53-80-78zm134 135l79 78 54-54-80-78zm134 132l78 80 54-54-78-79zm134 135l79 79 53-53-78-80zm133 133l54 53 53-53-53-52zm162-54l80-79-54-54-79 80zm134-134l78-80-53-53-78 79zm135-134l78-78-54-54-78 78zm132-135l80-78-54-53-79 78zm135-132l79-80-53-53-80 79zm133-135l53-53-53-54-52 54z"},"children":[]}]};exports.u1F537=u1F537;var u1F538={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1771 1404q11 13 11 27 0 16-11 29l-445 442q-4 7-11 9t-15 2-15-2-14-9l-443-442q-11-13-11-29 0-8 3-15t8-12l443-444q14-11 29-11 8 0 15 3t11 8zm-121-10H949l-38 37 41 41h693l43-41zm-261 334l80-78h-340l79 78h181zm-131 50l42 41 41-41h-83zm260-177l79-80h-595l79 80h437zm-312-465l-80 80h347l-80-80h-187zm138-47l-44-46-45 46h89zm-267 176l-78 80h601l-79-80h-444z"},"children":[]}]};exports.u1F538=u1F538;var u1F539={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1771 1403q11 14 11 28 0 16-11 27l-445 445q-4 5-11 8t-15 3q-15 0-29-11l-443-445q-11-11-11-26 0-9 3-15.5t8-13.5l443-442q13-12 29-12 8 0 15 3t11 9zm-380-5l54-55-54-56-57 56zm-91-21l-56 57 56 54 55-54zm55-124l-55-56-56 56 56 55zm-147 34l-56 56 56 55 57-55zm-90 90l-56 57 56 54 56-54zm34 146l56 56 57-56-57-55zm92 91l56 57 55-57-55-56zm147-35l54-56-56-55-55 55zm89-91l56-56-56-55-55 57zm90-90l43-41-57-56-41 42zm-48-132l-56-56-41 43 55 55zm-90-90l-56-56-42 41 57 56zm-91-92l-41-41-42 41 42 43zm-118 36l-56 56 41 41 57-56zm-91 90l-56 56 42 42 56-55zm-91 91l-56 56 43 41 56-55zm-90 90l-40 41 41 41 41-39zm37 117l55 56 41-41-56-55zm90 90l56 56 40-40-56-56zm91 90l56 57 40-40-57-56zm90 92l41 40 39-40-39-41zm114-35l56-57-38-39-57 56zm92-91l56-56-41-40-55 56zm90-90l56-56-41-40-55 55zm90-91l43-41-41-41-41 41z"},"children":[]}]};exports.u1F539=u1F539;var u1F53A={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2376 2240H223L1299 565zM401 2107l-34 54h34v-54zm190-294l-111 174v174h111v-348zm189-295l-113 174v469h113v-643zm189-294l-111 174v763h111v-937zm190-295l-112 174v1058h112V929zm189-142l-49-77-62 99v1352h111V787zm189 294l-112-174v1254h112V1081zm189 295l-111-174v959h111v-785zm191 294l-113-174v665h113v-491zm189 295l-113-174v370h113v-196zm76 196h50l-50-76v76z"},"children":[]}]};exports.u1F53A=u1F53A;var u1F53B={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M223 565h2153L1299 2239zm192 78h-48l48 77v-77zm78 196l113 175V643H493v196zm1705-143l34-53h-34v53zm-190 295l113-174V643h-113v348zm-190 295l112-174V643h-112v643zm-189 294l112-174V643h-112v937zm-189 295l112-174V643h-112v1232zm-189 144l48 75 64-99V643h-112v1376zm-191-295l113 174V643h-113v1081zm-189-295l113 174V643H871v786zm-76-786H682v490l113 176V643z"},"children":[]}]};exports.u1F53B=u1F53B;var u1F53C={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M705 1822l595-926 595 926H705zm821-429l-79-123v474h79v-351zm49 351h80v-151l-80-123v274zm-176-551l-80-123v674h80v-551zm-129-104l-80 123v532h80v-655zm-128 199l-79 123v333h79v-456zm-128 200l-80 123v133h80v-256zm737 256l-48-75v75h48zm-902 0h37v-56z"},"children":[]}]};exports.u1F53C=u1F53C;var u1F53D={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1895 896l-595 926-595-926h1190zm-820 429l78 123V974h-78v351zm-49-351h-79v151l79 123V974zm177 551l79 122V974h-79v551zm129 104l78-123V974h-78v655zm127-199l79-123V974h-79v456zm129-200l78-123V974h-78v256zM849 974l48 75v-75h-48zm902 0h-36v56z"},"children":[]}]};exports.u1F53D=u1F53D;var u1F550={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2255.5 1982q-148.5 256-405 404.5T1299 2535t-551-148.5T343.5 1982 195 1431t148.5-551.5 404.5-405T1299 326t551.5 148.5 405 405T2404 1431t-148.5 551zm-92-1050.5q-134.5-230.5-365-365T1299 432q-268 0-498.5 134t-365 365T301 1431q0 267 134 497.5T799.5 2294t499.5 135 499.5-134 365-364.5T2298 1431t-134.5-499.5zM1656 972l-213 370q12 20 19 42t7 47q0 69-50.5 119t-119.5 50-119-50-50-119q0-48 24.5-87t64.5-62V520h159v614l140-241zm-314 506.5q21-15.5 21-47.5 0-26-19-44.5t-45-18.5-44.5 18.5-18.5 44.5q0 21 17 42t46 21q22 0 43-15.5zm865.5-3Q2189 1494 2162 1494q-26 0-44.5-18.5T2099 1431t18.5-44.5 44.5-18.5q27 0 45.5 18.5t18.5 44.5-18.5 44.5zm-204.5-430q-19-17.5-19-45.5 0-24 16.5-44.5T2045 935q26 0 45.5 17.5T2110 998q0 27-18.5 46t-44.5 19q-25 0-44-17.5zM1775 730q-20 18-43 18-29 0-47-20.5t-18-44.5q0-28 20-45.5t43-17.5q26 0 45.5 17.5T1795 683q0 29-20 47zm-863-93q20 17 20 46 0 25-18 45t-47 20q-23 0-43-18t-20-47q0-26 18.5-44.5T867 620q25 0 45 17zm-317.5 409q-20.5 17-43.5 17-28 0-45.5-20t-17.5-43q0-27 19-46t45-19q28 0 45.5 19.5T615 1000q0 29-20.5 46zM481 1475.5q-19 18.5-45 18.5-27 0-45-18.5t-18-44.5 18-44.5 45-18.5q26 0 45 18.5t19 44.5-19 44.5zM595 1817q20 17 20 46 0 26-17.5 44.5T551 1926q-25 0-44-18.5t-19-46.5q0-24 16.5-42.5T549 1800q26 0 46 17zm317 408q-20 17-45 17-28 0-45.5-19.5T804 2179q0-29 20-46.5t43-17.5q28 0 46.5 18t18.5 46q0 29-20 46zm432 115q-19 19-45 19t-44.5-19-18.5-46q0-26 18-44.5t45-18.5q26 0 45 18.5t19 44.5q0 27-19 46zm431-207.5q20 17.5 20 46.5 0 24-18 43.5t-47 19.5q-23 0-43-17.5t-20-45.5q0-27 18-45.5t45-18.5q25 0 45 17.5zm315-223q-20 16.5-43 16.5-28 0-45.5-20t-17.5-43q0-28 19-45.5t45-17.5q32 0 47 21t15 43q0 29-20 45.5z"},"children":[]}]};exports.u1F550=u1F550;var u1F551={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2257 1980.5q-147 255.5-404.5 405T1299 2535q-297 0-554-150t-403.5-405.5T195 1430q0-295 148.5-551T748 474.5 1299 326t551.5 148.5 405 404.5 148.5 551-147 550.5zm-93-1049q-134-230.5-365-365T1299 432q-268 0-498.5 134.5t-365 365T301 1430t133.5 499T799 2295t500 135q270 0 501-135t364.5-366 133.5-499-134-498.5zM1758 1074l79 138-370 214q2 0 2 4 0 69-50.5 119.5T1299 1600t-119-50.5-50-119.5q0-49 24.5-87.5t64.5-59.5V520h159v763l10 4zm449.5 402q-18.5 20-45.5 20-26 0-44.5-20t-18.5-46 18.5-44.5 44.5-18.5q27 0 45.5 18.5t18.5 44.5-18.5 46zM912 2225q-20 17-45 17-28 0-45.5-19.5T804 2178q0-28 20-45.5t43-17.5q28 0 46.5 18t18.5 46q0 29-20 46zm432-839.5q-19-18.5-45-18.5t-44.5 18.5-18.5 44.5q0 28 20 47t43 19q26 0 45-20t19-46-19-44.5zM482 1475q-18 19-44 19-28 0-46.5-18t-18.5-46q0-26 18-44.5t45-18.5q26 0 45 18.5t19 44.5-18 45zm1293 657.5q20 17.5 20 45.5 0 25-18 44.5t-47 19.5q-23 0-43-17.5t-20-45.5q0-27 18-45.5t45-18.5q25 0 45 17.5zM912 637q20 17 20 46 0 25-18 45t-47 20q-23 0-43-18t-20-47q0-27 18.5-45t46.5-18q23 0 43 17zM595 1816q20 16 20 45 0 25-17.5 45.5T551 1927q-25 0-44-18.5t-19-47.5q0-23 17-42t47-19q23 0 43 16zm749 523.5q-19 19.5-45 19.5t-44.5-19.5-18.5-45.5 18-44.5 45-18.5q26 0 45 18.5t19 44.5-19 45.5zM595.5 1046q-19.5 17-44.5 17-28 0-45.5-20t-17.5-43q0-28 19.5-46.5T552 935q26 0 44.5 18t18.5 47-19.5 46zM1687 637.5q20-17.5 43-17.5 28 0 46.5 20t18.5 43q0 29-20 47t-43 18q-21 0-43-17.5t-22-47.5q0-28 20-45.5zm315.5 407Q1984 1026 1984 1000q0-25 17.5-45t45.5-20q23 0 43 17t20 46q0 27-18.5 46t-44.5 19-44.5-18.5zm88 865.5q-19.5 17-42.5 17-29 0-46.5-20.5T1984 1863q0-27 19-45t44-18q30 0 46.5 19.5t16.5 44.5q0 29-19.5 46z"},"children":[]}]};exports.u1F551=u1F551;var u1F552={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2255.5 1982q-148.5 256-405 404.5T1299 2535t-551-148.5T343.5 1982 195 1431t148.5-551.5 404.5-405T1299 326t551.5 148.5 405 405T2404 1431t-148.5 551zm-92-1050.5q-134.5-230.5-365-365T1299 432q-268 0-498.5 134t-365 365T301 1431q0 270 135.5 501t366 364 496.5 133q267 0 497.5-132.5t366-364T2298 1431q0-269-134.5-499.5zM1378 1282q46 24 70 70h428v159h-428q-22 40-61.5 64.5T1299 1600q-69 0-119-50t-50-119q0-50 24.5-88.5t64.5-60.5V520h159v762zm-34 194q19-18 19-45 0-26-19-45t-45-19q-27 0-45 18t-18 46q0 25 16.5 44t46.5 19q26 0 45-18zm863.5 0q-18.5 18-45.5 18-26 0-44.5-18t-18.5-45q0-26 18.5-45t44.5-19q27 0 45.5 19t18.5 45q0 27-18.5 45zm-205-430.5Q1984 1028 1984 1000q0-25 17-45t46-20q23 0 43 17t20 46q0 28-19 46.5t-46 18.5q-24 0-42.5-17.5zm-315.5-408q20-17.5 43-17.5 27 0 46 18.5t19 44.5q0 28-20 45.5t-45 17.5q-26 0-44.5-18t-18.5-45q0-28 20-45.5zm-774-.5q19 17 19 46 0 24-18 43.5T867 746q-23 0-43-17.5T804 683t18.5-45.5T869 620q25 0 44 17zm-318 409q-20 17-43 17-28 0-46-20t-18-43q0-28 19-46.5t44-18.5q29 0 46.5 19.5T615 1000q0 29-20 46zm-114 430q-19 18-45 18-27 0-45-18t-18-45q0-26 18-45t45-19q26 0 45 19t19 45q0 27-19 45zm114 341q20 17 20 46 0 23-17.5 43t-46.5 20q-25 0-44-18.5t-19-46.5q0-26 18-43.5t46-17.5q23 0 43 17zm317 408q-20 17-45 17-29 0-46-19.5t-17-44.5q0-28 20.5-45.5T869 2115q25 0 44 18t19 46q0 29-20 46zm432 114q-19 18-45 18t-44.5-18-18.5-45q0-26 18-45t45-19q26 0 45 19t19 45q0 27-19 45zm431.5-204.5q19.5 19.5 19.5 43.5 0 25-17.5 44.5T1730 2242q-23 0-43-17.5t-20-45.5q0-27 18-45.5t45-18.5q26 0 45.5 19.5zm314.5-225q-20 16.5-43 16.5-28 0-45.5-20t-17.5-43q0-28 19-45.5t44-17.5q30 0 46.5 19t16.5 45q0 29-20 45.5z"},"children":[]}]};exports.u1F552=u1F552;var u1F553={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2255.5 1982q-148.5 256-405 404.5T1299 2535t-551-148.5T343.5 1982 195 1431t148.5-551.5 404.5-405T1299 326t551.5 148.5 405 405T2404 1431t-148.5 551zm-92-1050.5q-134.5-230.5-365-365T1299 432q-268 0-498.5 134t-365 365T301 1431q0 267 134 497.5T799.5 2294t499.5 135 499.5-134 365-364.5T2298 1431t-134.5-499.5zM1467 1437l370 212-79 138-370-213q-19 12-41.5 19t-47.5 7q-69 0-119-50t-50-119q0-48 24.5-87.5t64.5-61.5V520h159v762q41 22 66 61.5t25 87.5q0 3-2 6zm219.5-800q19.5-18 45.5-18 28 0 45.5 19.5T1795 683q0 28-20 45.5t-45 17.5q-26 0-44.5-18t-18.5-45q0-28 19.5-46zm316.5 408.5q-19-17.5-19-45.5 0-25 17.5-45t45.5-20q23 0 43 17t20 46q0 27-18.5 46t-44.5 19q-25 0-44-17.5zm-1091-409q20 17.5 20 46.5 0 24-18 43.5T867 746q-23 0-43-17.5T804 683t18.5-46 43.5-18q26 0 46 17.5zm1178 1273q-20 16.5-43 16.5-28 0-45.5-20t-17.5-43q0-29 18.5-47t44.5-18q27 0 45 19t18 47q0 29-20 45.5zM1344 2339q-19 18-45 18t-44.5-18-18.5-45q0-26 18-45t45-19q26 0 45 19t19 45q0 27-19 45zm-863-863.5q-19 18.5-45 18.5-27 0-45-18.5t-18-44.5 18-45 45-19q26 0 45 19t19 45-19 44.5zm1294 657q20 17.5 20 46.5 0 25-19 44t-46 19q-23 0-43-17.5t-20-45.5q0-27 18-45.5t45-18.5q25 0 45 17.5zM594.5 1046q-20.5 17-43.5 17-28 0-45.5-20t-17.5-43q0-27 19-46t44-19q29 0 46.5 19.5T615 1000q0 29-20.5 46zM912 2225q-20 17-43 17-28 0-46.5-19.5T804 2178q0-28 20-45.5t43-17.5q28 0 46.5 18t18.5 46q0 29-20 46zm-316.5-409.5Q615 1833 615 1863q0 23-17.5 43t-46.5 20q-25 0-44-18.5t-19-46.5 19.5-45.5T551 1798q25 0 44.5 17.5zm1612-340Q2189 1494 2162 1494q-26 0-44.5-18.5T2099 1431t18.5-45 44.5-19q27 0 45.5 19t18.5 45-18.5 44.5zm-863.5.5q19-18 19-45 0-26-19-45t-45-19q-23 0-43 18t-20 46q0 25 17.5 44t45.5 19q26 0 45-18z"},"children":[]}]};exports.u1F553=u1F553;var u1F554={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2255.5 1981Q2107 2237 1851 2385.5T1300 2534t-551-148.5T344.5 1981 196 1430t148.5-551.5 404.5-405T1300 325t551 148.5 404.5 405T2404 1430t-148.5 551zM2165 934q-132-230-362.5-366.5T1300 431 797.5 567.5 435 934t-132 496q0 268 134 499.5t364.5 365T1300 2428t498.5-133.5 364.5-365 134-499.5q0-266-132-496zm-723 585l216 369-139 81-214-370q-71 0-123-49t-52-120q0-48 25-87.5t66-61.5V519h158v762q41 22 65.5 61.5t24.5 87.5q0 49-27 89zm-97-134q-18-19-45-19t-45 19-18 45q0 27 17.5 45t45.5 18 45.5-18.5 17.5-44.5-18-45zm863 90q-18 18-45 18-26 0-44.5-18t-18.5-45q0-26 18.5-45t44.5-19q27 0 45 19t18 45q0 27-18 45zm-205-431.5q-19-18.5-19-46.5 0-23 17-43t47-20q24 0 43.5 18t19.5 47q0 28-19.5 45.5T2048 1062q-26 0-45-18.5zM1775 730q-20 17-45 17-28 0-44.5-20t-16.5-45q0-28 18-45.5t43-17.5q30 0 47.5 18.5T1795 684q0 29-20 46zm-862.5-93.5Q931 654 931 682q0 26-18 44.5T868 745q-26 0-45-18t-19-46q0-29 19.5-45.5T868 619q26 0 44.5 17.5zm-316 407Q578 1062 552 1062q-28 0-45.5-20T489 999q0-29 18.5-47t44.5-18q27 0 45 18t18 45q0 28-18.5 46.5zm-115 431.5q-18.5 18-44.5 18-27 0-45.5-18t-18.5-45q0-26 18.5-45t45.5-19q26 0 44.5 19t18.5 45q0 27-18.5 45zm115 342q18.5 18 18.5 45 0 23-17.5 43t-45.5 20q-25 0-44-17.5t-19-45.5q0-26 17.5-44.5T553 1799q25 0 43.5 18zM912 2223.5q-19 17.5-44 17.5-29 0-46.5-19.5T804 2177q0-29 19-45.5t44-16.5q26 0 45 16.5t19 46.5q0 28-19 45.5zm433 114.5q-18 18-45 18t-45-18-18-45q0-26 18-45t45-19 45 19 18 45q0 27-18 45zm430.5-207q19.5 16 19.5 44 0 26-17 46t-46 20q-26 0-44.5-17.5T1669 2178q0-29 18.5-46t45.5-17q23 0 42.5 16zm316-223.5Q2072 1925 2048 1925q-29 0-46.5-19.5T1984 1863q0-28 19.5-46t43.5-18q29 0 46.5 18t17.5 45q0 28-19.5 45.5z"},"children":[]}]};exports.u1F554=u1F554;var u1F555={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2255.5 1982Q2107 2238 1851 2386.5T1300 2535t-551-148.5T344.5 1982 196 1431t148.5-551.5 404.5-405T1300 326t551 148.5 404.5 405T2404 1431t-148.5 551zM2165 935q-132-230-362.5-366.5T1300 432 797.5 568.5 435 935t-132 496q0 265 131.5 495T797 2292.5t503 136.5q271 0 501.5-136t363-366 132.5-496-132-496zm-786 347q41 22 65.5 61t24.5 87-24.5 87.5-65.5 61.5v428h-158v-428q-41-22-66-60.5t-25-88.5q0-48 25-87t66-61V520h158v762zm-34.5 104q-18.5-19-44.5-19t-44.5 19-18.5 45q0 27 18.5 45t44.5 18q25 0 44-18t19-45q0-26-18.5-45zm863.5 89.5q-18 18.5-45 18.5-26 0-44.5-18.5T2100 1431t18.5-45 44.5-19q27 0 45 19t18 45-18 44.5zm-205-431q-19-18.5-19-46.5 0-23 17.5-43t46.5-20q24 0 43.5 18t19.5 47q0 28-19.5 45.5T2048 1063q-26 0-45-18.5zM1775 730q-20 16-43 16-28 0-45.5-19.5T1669 683q0-28 18.5-46t45.5-18 44.5 19 17.5 47q0 29-20 45zm-863-93q19 18 19 46 0 24-17.5 43.5T868 746q-26 0-45-18t-19-46q0-27 18.5-45t44.5-18 45 18zm-315.5 407.5Q578 1063 552 1063q-28 0-45.5-20t-17.5-43q0-28 18.5-46.5T552 935q27 0 45 18t18 45q0 28-18.5 46.5zm-115 431Q463 1494 437 1494q-27 0-45.5-18.5T373 1431t18.5-45 45.5-19q26 0 44.5 19t18.5 45-18.5 44.5zm115 341.5q18.5 19 18.5 46 0 23-17.5 43t-45.5 20q-25 0-44-17.5t-19-45.5q0-27 18.5-46t44.5-19 44.5 19zm315 407q-19.5 18-44.5 18-28 0-45.5-19.5T804 2179q0-30 20-47t44-17q26 0 44.5 17.5T931 2179q0 27-19.5 45zm433.5 114.5q-18 18.5-45 18.5t-45-18.5-18-44.5 18-44.5 45-18.5 45 18.5 18 44.5-18 44.5zm430-206.5q20 17 20 46 0 26-17 45t-46 19q-24 0-43.5-18t-19.5-45q0-29 18.5-46.5t44.5-17.5q23 0 43 17zm316.5-223.5Q2072 1926 2048 1926q-29 0-46.5-20t-17.5-43q0-27 19-46t45-19 44.5 19 18.5 46q0 28-19.5 45.5z"},"children":[]}]};exports.u1F555=u1F555;var u1F556={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2254.5 1983.5Q2105 2241 1849.5 2388T1300 2535q-295 0-551.5-148.5t-405-405T195 1430t148.5-551 405-404.5T1300 326t551.5 148T2256 878.5t148 551.5q0 296-149.5 553.5zm-89.5-1052q-134-230.5-365-365T1300 432 800 566.5t-365 365T301 1430q0 269 134.5 499.5t365 365T1300 2429t499.5-134.5 365-365T2299 1430q0-268-134-498.5zM1380 1282q39 22 64 60.5t25 87.5q0 73-51.5 121.5T1295 1600l-214 368-138-79 213-369q-11-20-17.5-42.5t-6.5-47.5q0-49 24-87.5t65-60.5V520h159v762zm-35 193q20-19 20-45 0-21-16.5-42t-48.5-21q-23 0-43.5 16t-20.5 47q0 25 18 44.5t46 19.5q25 0 45-19zm864 .5q-19 18.5-46 18.5-26 0-45-18.5t-19-44.5 19-45 45-19q27 0 46 19t19 45-19 44.5zm-205.5-430Q1984 1028 1984 1000q0-25 17.5-45t45.5-20q25 0 44.5 17.5T2111 998t-19 46.5-45 18.5q-24 0-43.5-17.5zM1775 728q-20 18-43 18-29 0-47-19.5t-18-43.5q0-28 20.5-46t44.5-18q26 0 44.5 18t18.5 45q0 28-20 46zm-863.5-91.5Q932 654 932 682q0 25-17.5 44.5T869 746q-26 0-45.5-18T804 682q0-25 19-44t44-19q24 0 44.5 17.5zm-315.5 408q-19 18.5-45 18.5-28 0-45.5-20t-17.5-43q0-27 20-46t44-19q26 0 44.5 18t18.5 47q0 26-19 44.5zM481 1475q-19 19-45 19t-44.5-19-18.5-45 18.5-44.5T436 1367t45 18.5 19 44.5-19 45zm114.5 341q19.5 18 19.5 47 0 23-17.5 43t-45.5 20q-25 0-44.5-18.5T488 1861t20.5-45.5T552 1798q24 0 43.5 18zM911 2224q-21 18-44 18-29 0-46-20t-17-43q0-29 20-46.5t43-17.5q28 0 46.5 18t18.5 46q0 27-21 45zm434 114.5q-18 18.5-45 18.5-26 0-45-18.5t-19-44.5 19-45 45-19q27 0 45 19t18 45-18 44.5zm430-206.5q20 17 20 46 0 25-17 44.5t-46 19.5q-24 0-44.5-17.5T1667 2178q0-25 19-44t46-19q23 0 43 17zm316.5-223.5Q2072 1926 2047 1926q-28 0-45.5-20t-17.5-43q0-29 19.5-47t43.5-18q26 0 45 18.5t19 46.5-19.5 45.5z"},"children":[]}]};exports.u1F556=u1F556;var u1F557={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2254 1984q-150 257-405 403.5T1300 2534q-295 0-551.5-148.5t-405-404.5T195 1430t148.5-551 405-404.5T1300 326t551.5 148T2256 878.5t148 551.5q0 297-150 554zm-91.5-1056.5Q2026 697 1796 565t-496-132-496 132-366.5 362.5T301 1430t136.5 502.5T804 2295t496 132 496-132 366.5-362.5T2299 1430t-136.5-502.5zM1380 1281q39 23 64 62t25 87q0 69-50 119t-119 50q-48 0-89-27l-370 214-79-137 370-214q0-51 23.5-91t65.5-63V519h159v762zm-125 104q-19 18-19 45t19 45 45 18q25 0 45-18t20-45-20-45-45-18q-26 0-45 18zm954 90q-19 18-46 18-26 0-45-18t-19-45 19-45 45-18q27 0 46 18t19 45-19 45zm-205.5-431.5Q1984 1026 1984 998q0-24 17-44t46-20q25 0 44.5 17.5T2111 998q0 27-17.5 45t-46.5 18q-24 0-43.5-17.5zm-228.5-315q-20 17.5-43 17.5-30 0-47.5-20t-17.5-43q0-28 20.5-46t44.5-18q26 0 44.5 17.5T1795 682q0 29-20 46.5zm-951-.5q-20-18-20-47 0-23 17.5-42.5T867 619q25 0 45 17.5t20 45.5q0 31-21 47.5T867 746t-43-18zm-228.5 315.5Q576 1061 552 1061q-28 0-46-19t-18-44q0-29 19.5-46.5T552 934q28 0 45.5 20t17.5 44q0 28-19.5 45.5zM481 1475q-19 18-45 18t-44.5-18-18.5-45 18.5-45 44.5-18 45 18 19 45-19 45zm115 341.5q19 17.5 19 45.5 0 23-16.5 43.5T554 1926q-26 0-46-18t-20-46q0-27 19-45t45-18q25 0 44 17.5zm316 407q-20 17.5-45 17.5-28 0-45.5-19.5T804 2178q0-28 19-45.5t44-17.5q27 0 46 17t19 46q0 28-20 45.5zm433 114.5q-18 18-45 18-26 0-45-18t-19-45q0-26 19-44.5t45-18.5q27 0 45 18.5t18 44.5q0 27-18 45zm431-206q19 17 19 46 0 24-17.5 43.5T1732 2241q-24 0-44.5-17.5T1667 2177q0-26 19-44t47-18q24 0 43 17zm315-223.5q-20 17.5-46 17.5-29 0-45-20.5t-16-43.5q0-28 19.5-45.5t43.5-17.5q29 0 46.5 18t17.5 45q0 29-20 46.5z"},"children":[]}]};exports.u1F557=u1F557;var u1F558={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2254 1985q-150 257-405 403.5T1300 2535q-295 0-551.5-148.5t-405-404.5T195 1431t148.5-551.5 405-405T1300 326q298 0 555 150t403 406.5 146 548.5q0 297-150 554zm-89.5-1053.5q-134.5-230.5-365-365T1300 432 800.5 566.5t-365 365T301 1431q0 268 134 498.5t365 365 500 134.5 499.5-134 365-364.5T2299 1431t-134.5-499.5zM1380 1282q39 22 64 60.5t25 87.5q0 69-50 119.5t-119 50.5q-50 0-88.5-25t-59.5-66H725v-159h427q23-44 69-68V520h159v762zm-34.5 104q-19.5-19-45.5-19t-45 19-19 45q0 27 19 45t45 18q23 0 44-19t21-44q0-26-19.5-45zm863.5 89.5q-19 18.5-46 18.5-26 0-45-18.5t-19-44.5 19-45 45-19q27 0 46 19t19 45-19 44.5zm-205.5-430Q1984 1028 1984 1000q0-25 17.5-45t45.5-20q25 0 44.5 17.5T2111 998t-19 46.5-45 18.5q-24 0-43.5-17.5zM1775 728q-20 18-43 18-29 0-47-19.5t-18-43.5q0-28 20-46t45-18q26 0 44.5 18t18.5 45q0 28-20 46zm-951.5 0Q804 710 804 682q0-23 17.5-43t45.5-20q25 0 45 17.5t20 46.5q0 27-18.5 45T869 746t-45.5-18zM596 1044.5q-19 18.5-45 18.5-28 0-45.5-20t-17.5-43q0-27 20-46t44-19q26 0 44.5 18t18.5 47q0 26-19 44.5zM481 1475q-19 19-45 19t-44.5-19-18.5-45 18.5-44.5T436 1367t45 18.5 19 44.5-19 45zm114.5 341q19.5 18 19.5 47 0 23-17.5 43t-45.5 20q-23 0-43.5-18t-20.5-47q0-28 20.5-45.5T552 1798q24 0 43.5 18zM912 2224.5q-20 17.5-43 17.5-28 0-46.5-19.5T804 2179q0-29 20-46.5t43-17.5q28 0 46.5 18t18.5 46-20 45.5zm433 114q-18 18.5-45 18.5-26 0-45-18.5t-19-44.5 19-45 45-19q27 0 45 19t18 45-18 44.5zm430-206q20 17.5 20 46.5 0 25-18.5 44t-46.5 19q-23 0-43-18t-20-46q0-25 19-44t46-19q23 0 43 17.5zm316.5-224Q2072 1926 2047 1926q-28 0-45.5-20t-17.5-43q0-29 19.5-47t43.5-18q26 0 45 18.5t19 46.5-19.5 45.5z"},"children":[]}]};exports.u1F558=u1F558;var u1F559={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2258 1982q-148 256-405 404.5T1300 2535t-553-148.5T342 1982t-148-551 148.5-551.5 405-405T1300 326q295 0 552 148t405.5 405 148.5 552-148 551zm-93.5-1050.5q-134.5-230.5-365-365T1300 432 800.5 566.5t-365 365T301 1431q0 268 134 498.5t365 365 500 134.5 499.5-134 365-364.5T2299 1431t-134.5-499.5zM1379 1283q41 21 65.5 60t24.5 87q0 69-50 119.5t-119 50.5q-72 0-120.5-51t-48.5-123l-369-214 79-138 370 213 10-4V520h158v763zm-33.5 1056.5Q1327 2359 1300 2359q-26 0-45-19.5t-19-45.5 19-44.5 45-18.5q27 0 45.5 18.5t18.5 44.5-18.5 45.5zm-863.5-864q-18 18.5-45 18.5t-45.5-18.5T373 1431t18.5-45 45.5-19 45 19 18 45-18 44.5zM596.5 1046q-19.5 17-44.5 17-28 0-45.5-20T489 998q0-28 19.5-45.5T552 935q27 0 45.5 19.5T616 1000q0 29-19.5 46zm-1 769.5Q616 1833 616 1863q0 23-17.5 43t-46.5 20q-24 0-43.5-17.5T489 1863q0-27 18.5-46t44.5-19q23 0 43.5 17.5zm750-429Q1327 1368 1300 1368t-45.5 18.5-18.5 44.5q0 27 19 45t45 18q25 0 44.5-18t19.5-45q0-26-18.5-44.5zm-434 838Q892 2242 868 2242q-29 0-46.5-19.5T804 2179q0-28 20-46t44-18q26 0 44.5 17.5T931 2178q0 29-19.5 46.5zm1092-1180Q1984 1026 1984 998q0-23 17.5-43t46.5-20q24 0 43.5 18.5t19.5 46.5-19.5 45.5-43.5 17.5q-25 0-44.5-18.5zM1775 2133q20 18 20 46 0 24-17.5 43.5T1732 2242q-24 0-44.5-17.5T1667 2178q0-27 19.5-45t45.5-18q23 0 43 18zM824 729.5Q804 711 804 683q0-23 18-43t46-20q24 0 43.5 18t19.5 47-22 46-42 17q-23 0-43-18.5zM2091.5 1908q-19.5 18-43.5 18-29 0-46.5-19.5T1984 1864q0-29 20.5-46.5t44.5-17.5q29 0 45.5 18.5t16.5 42.5q0 29-19.5 47zm117-432.5Q2190 1494 2163 1494q-26 0-44.5-18.5T2100 1431t18.5-44.5 44.5-18.5q27 0 45.5 18.5t18.5 44.5-18.5 44.5zm-433.5-746q-20 18.5-43 18.5-28 0-45.5-20.5T1669 683q0-28 19-45.5t42-17.5q26 0 45.5 17.5T1795 683t-20 46.5z"},"children":[]}]};exports.u1F559=u1F559;var u1F55A={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2256 1985q-150 257-406.5 403T1300 2534q-292 0-548.5-145.5t-407-402.5T194 1430q0-294 146.5-549.5t404-405T1300 326q296 0 553.5 149t405 404.5T2406 1430q0 298-150 555zm-91.5-1054.5q-134.5-230.5-365-365T1300 431 800.5 565.5t-365 365T301 1430t134.5 499.5 365 365T1300 2429t499.5-134.5 365-365T2299 1430t-134.5-499.5zM1379 1281q41 21 65.5 61t24.5 88q0 69-50 119t-119 50-119-50-50-119q0-25 7-47.5t18-41.5L944 971l138-79 139 241V519h158v762zm-33.5 104q-18.5-19-45.5-19t-45.5 19-18.5 45q0 29 19 46t45 17q31 0 47.5-20.5t16.5-42.5q0-26-18.5-45zm863 90q-18.5 18-45.5 18-26 0-44.5-18t-18.5-45q0-26 18.5-45t44.5-19q27 0 45.5 19t18.5 45q0 27-18.5 45zm-204-431.5Q1984 1026 1984 997q0-23 18-42.5t47-19.5q24 0 43 17.5t19 45.5q0 26-17.5 44.5T2048 1061q-23 0-43.5-17.5zm-229-315.5q-19.5 18-45.5 18-28 0-44.5-20.5T1669 682q0-28 19.5-45.5T1732 619q25 0 44 17t19 46q0 28-19.5 46zm-864-91q19.5 18 19.5 46 0 23-16 43t-45 20q-26 0-46-18t-20-46 19.5-45.5T868 619q24 0 43.5 18zm-315 407q-19.5 17-44.5 17-28 0-45.5-19.5T489 998q0-29 19-46t43-17 44.5 18 20.5 45q0 29-19.5 46zM482 1475q-18 18-45 18t-45.5-18-18.5-45 18.5-45.5T437 1366t45 18.5 18 45.5-18 45zm114.5 341q19.5 17 19.5 46 0 23-17 43.5t-46 20.5q-23 0-43.5-17.5T489 1862q0-26 17.5-44.5T552 1799q25 0 44.5 17zm315 407.5Q892 2241 868 2241q-29 0-46.5-19.5T804 2179q0-29 20-46.5t43-17.5q25 0 44.5 16t19.5 46q0 29-19.5 46.5zm435 114.5q-17.5 18-43.5 18-27 0-47-17.5t-20-45.5q0-26 19-44.5t45-18.5q27 0 45.5 18.5t18.5 44.5q0 27-17.5 45zm428.5-205.5q20 17.5 20 46.5 0 23-17.5 42.5T1732 2241q-24 0-44.5-17.5T1667 2178q0-27 19.5-45t45.5-18q23 0 43 17.5zm315.5-224.5q-20.5 18-43.5 18-29 0-46-20t-17-43q0-28 20.5-46t43.5-18q28 0 45.5 18.5t17.5 44.5q0 28-20.5 46z"},"children":[]}]};exports.u1F55A=u1F55A;var u1F55B={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2257.5 1982.5q-148.5 256.5-405 405T1300 2536q-295 0-551.5-147.5T343 1984t-149-554q0-295 147.5-551.5T746 473t554-149q296 0 552.5 148.5t405 405T2406 1430t-148.5 552.5zm-93-1052q-134.5-230.5-365-365T1300 431 800.5 565.5t-365 365T301 1430t134.5 499.5 365 365T1300 2429t499.5-134.5 365-365T2299 1430t-134.5-499.5zM1403 1297q31 23 48.5 57t17.5 76q0 69-50 119t-119 50-119-50-50-119q0-42 18.5-76t47.5-57V840h24V519h158v321h24v457zm-58 179.5q19-17.5 19-46.5 0-26-18.5-44.5T1300 1367q-26 0-45 18t-19 45q0 25 19 44.5t45 19.5 45-17.5zm863.5-1Q2190 1494 2163 1494q-26 0-44.5-18.5T2100 1430t18.5-45 44.5-18q27 0 45.5 18t18.5 45-18.5 45.5zm-204.5-431q-20-18.5-20-46.5 0-23 18-43t46-20q24 0 43.5 18t19.5 47q0 26-20.5 44.5T2047 1063t-43-18.5zm-229-316q-20 17.5-43 17.5-27 0-45-19t-18-44q0-29 19-46.5t42-17.5q26 0 45.5 17.5T1795 682q0 29-20 46.5zm-863.5-92Q931 654 931 683q0 24-18 43.5T867 746q-23 0-43-17.5T804 682q0-27 19.5-45t44.5-18q24 0 43.5 17.5zM596 1046q-20 17-43 17-28 0-46-20t-18-45q0-28 19.5-45.5T551 935q25 0 45 18.5t20 46.5q0 29-20 46zm-114 429.5q-18 18.5-45 18.5t-45.5-18.5T373 1430t18.5-45 45.5-18 45 18 18 45-18 45.5zM596.5 1816q19.5 17 19.5 46 0 23-18.5 43.5T551 1926q-23 0-42.5-17.5T489 1862q0-26 17.5-44.5T552 1799q25 0 44.5 17zm315 408q-19.5 18-43.5 18-28 0-46-20t-18-43q0-29 20-46.5t43-17.5q25 0 44.5 16t19.5 46q0 29-19.5 47zm434 114.5Q1327 2357 1300 2357q-26 0-45-18.5t-19-45.5 19-45 45-18q27 0 45.5 18t18.5 45-18.5 45.5zM1775 2133q20 18 20 46 0 23-18 43t-47 20q-23 0-43-18t-20-47q0-28 19.5-45t45.5-17q23 0 43 18zm316.5-225q-19.5 18-43.5 18-28 0-46-20t-18-43q0-28 20.5-46t43.5-18q28 0 45.5 18.5t17.5 44.5q0 28-19.5 46z"},"children":[]}]};exports.u1F55B=u1F55B;var u1F55C={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2257.5 1983.5q-148.5 256.5-405 405T1300 2537q-295 0-551.5-147.5T343 1985t-149-554q0-295 147.5-551.5T746 474t554-149q296 0 552.5 148.5t405 405T2406 1431t-148.5 552.5zm-93-1052q-134.5-230.5-365-365T1300 432 800.5 566.5t-365 365T301 1431t134.5 499.5 365 365T1300 2430t499.5-134.5 365-365T2299 1431t-134.5-499.5zM1658 972l-214 370q12 20 19 42t7 47q0 49-25 88t-65 61v763h-159v-763q-41-22-65.5-61t-24.5-88q0-73 51-121t124-48l214-370zm-313 414q-19-19-45-19-24 0-44 18.5t-20 45.5q0 26 19 45t45 19 45-19 19-45-19-45zm747.5 523.5Q2072 1927 2048 1927q-29 0-46-20t-17-45q0-28 20-45.5t44-17.5q26 0 45 19t19 46q0 28-20.5 45.5zM1776 2134q20 18 20 46 0 24-18 44t-46 20q-25 0-44-17.5t-19-46.5q0-28 18.5-46t44.5-18q24 0 44 18zM1255 521.5q19-18.5 45-18.5t45 18.5 19 44.5q0 27-19 46t-45 19-45-19-19-46q0-26 19-44.5zM912.5 2226q-19.5 18-44.5 18-29 0-46.5-20.5T804 2179q0-29 20.5-46t43.5-17q27 0 45.5 18.5T932 2180q0 28-19.5 46zM596 1817q20 18 20 46 0 25-17.5 44.5T552 1927q-24 0-44-17t-20-46 19.5-47 43.5-18q25 0 45 18zm-115-341q-19 19-45 19t-45-19-19-45 19-45 45-19 45 19 19 45-19 45zm114.5-430.5Q575 1063 551 1063q-28 0-45.5-20T488 999q0-29 20-46.5t43-17.5q26 0 45.5 18.5T616 999q0 29-20.5 46.5zm317-409.5q19.5 18 19.5 46 0 25-17.5 45T868 747q-25 0-44.5-18T804 683q0-27 19-46t45-19q25 0 44.5 18zm864 92.5Q1757 747 1732 747q-28 0-45.5-20.5T1669 682q0-28 19-46t44-18 44.5 19 19.5 45q0 28-19.5 46.5zM2005 1046q-20-17-20-46 0-25 18-45t46-20q24 0 44 18t20 46q0 30-20.5 47t-43.5 17q-24 0-44-17zm204.5 430q-18.5 19-44.5 19-27 0-45.5-19t-18.5-45 18.5-45 45.5-19q26 0 44.5 19t18.5 45-18.5 45z"},"children":[]}]};exports.u1F55C=u1F55C;var u1F55D={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2257.5 1984q-148.5 257-405 405.5T1300 2538t-552.5-149-405-405.5T194 1431q0-295 147.5-551.5T746 474t554-149q296 0 552.5 148.5t405 405T2406 1431t-148.5 553zm-93-1052.5q-134.5-230.5-365-365T1300 432q-272 0-504.5 137.5t-364 368T300 1431q0 266 134.5 498.5t366 366.5 499.5 134q266 0 495.5-131.5T2162 1935t137-504q0-269-134.5-499.5zm45 545Q2191 1495 2164 1495q-26 0-44.5-18.5T2101 1431q0-26 18.5-44.5t44.5-18.5q27 0 45.5 18.5t18.5 44.5q0 27-18.5 45.5zm-205-431Q1985 1028 1985 999q0-24 17-43.5t46-19.5q23 0 43.5 17t20.5 46q0 28-19 46t-45 18q-24 0-43.5-17.5zm-316-409Q1708 619 1732 619q28 0 46 19.5t18 43.5q0 28-19.5 46.5T1732 747q-24 0-43.5-18t-19.5-47q0-28 19.5-45.5zm-777 .5q20.5 18 20.5 46 0 24-18 44t-46 20q-24 0-44-17t-20-46 19.5-47 43.5-18 44.5 18zM596 1045.5q-20 17.5-44 17.5-29 0-46.5-20.5T488 998q0-28 20.5-45t43.5-17q27 0 45.5 18.5T616 999q0 29-20 46.5zm-115 431q-19 18.5-45 18.5t-45-18.5-19-45.5q0-26 19-44.5t45-18.5 45 18.5 19 44.5q0 27-19 45.5zm114.5 341Q616 1835 616 1863q0 24-18.5 44t-46.5 20q-23 0-43-17t-20-45 19.5-46.5T552 1800q23 0 43.5 17.5zM912 2226q-20 18-45 18-28 0-45.5-20.5T804 2179q0-29 20-46t43-17q25 0 45 17.5t20 45.5q0 29-20 47zm864.5-91.5q19.5 18.5 19.5 46.5 0 23-17.5 42.5T1732 2243q-25 0-44-17t-19-46q0-28 20-46t44-18 43.5 18.5zM2092 1910q-20 17-43 17-28 0-46-19.5t-18-43.5q0-29 19.5-46.5t43.5-17.5q26 0 45 18t19 46q0 29-20 46zm-333-836l80 138-370 214q0 51-23.5 91t-65.5 63v763h-159v-763q-41-22-65.5-61t-24.5-88q0-71 50-120t119-49q25 0 47 7t42 19zm-505 312.5q-18 18.5-18 44.5 0 25 18 44.5t46 19.5q26 0 45-18.5t19-45.5q0-26-18-44.5t-46-18.5-46 18.5zm1-864.5q19-19 45-19t45 19 19 45-19 44.5-45 18.5-45-18.5-19-44.5 19-45z"},"children":[]}]};exports.u1F55D=u1F55D;var u1F55E={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2257.5 1982.5q-148.5 256.5-405 405T1300 2536q-295 0-551.5-147.5T343 1984t-149-554q0-296 148.5-552.5t405-405T1300 324t552.5 148.5 405 405T2406 1430t-148.5 552.5zm-93-1052q-134.5-230.5-365-365T1300 431q-272 0-504.5 137.5t-364 368T300 1430q0 266 134.5 498.5t367 367T1300 2430q263 0 493.5-131.5t368-364T2299 1430q0-269-134.5-499.5zm45 545Q2191 1494 2164 1494q-26 0-44.5-18.5T2101 1430q0-26 18.5-44.5t44.5-18.5q27 0 45.5 18.5t18.5 44.5q0 27-18.5 45.5zm-205-431Q1985 1027 1985 999q0-24 17.5-44.5T2048 934q25 0 44.5 18.5T2112 999q0 27-20 45t-44 18-43.5-17.5zm-317-408.5q19.5-18 43.5-18 28 0 46.5 19.5T1796 681q0 29-19.5 46.5T1732 745q-27 0-45.5-18t-18.5-45q0-28 19.5-46zM912 636q20 18 20 47 0 24-18 43t-46 19q-24 0-44-16.5T804 683q0-28 19.5-46.5T868 618q24 0 44 18zm-317 408q-20 18-44 18-28 0-45.5-20T488 998q0-29 19.5-46.5T551 934q25 0 44.5 19t19.5 45q0 28-20 46zm-114.5 431.5Q462 1494 436 1494q-27 0-45.5-18t-18.5-44q0-27 18-46t46-19q26 0 44.5 18.5T499 1430q0 27-18.5 45.5zm115 341Q615 1835 615 1863q0 23-17.5 43t-46.5 20q-25 0-44-17t-19-46 19.5-47 43.5-18q25 0 44.5 18.5zm316 409Q891 2243 867 2243q-28 0-45.5-20t-17.5-45q0-29 20-46t43-17q26 0 45.5 18.5T932 2179q0 29-20.5 46.5zm865-92.5q19.5 18 19.5 46 0 25-18 44.5t-46 19.5q-25 0-44.5-18.5T1668 2179q0-28 19.5-46t45.5-18q24 0 43.5 18zm316-224.5Q2073 1926 2048 1926q-29 0-46-20t-17-44q0-28 19-46t44-18 44.5 19 19.5 45q0 29-19.5 46.5zM1449 1350h427v160h-427q-24 45-69 68v764h-160v-764q-40-21-64.5-60.5T1131 1430q0-71 50-120t119-49q49 0 88 24.5t61 64.5zm-194.5 35.5Q1236 1404 1236 1430t19 45 45 19 45-18.5 19-45.5q0-26-18.5-44.5T1300 1367t-45.5 18.5zm0-864.5q18.5-19 45.5-19 26 0 44.5 19t18.5 45-18.5 45-44.5 19q-27 0-45.5-19t-18.5-45 18.5-45z"},"children":[]}]};exports.u1F55E=u1F55E;var u1F55F={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2257.5 1983.5q-148.5 256.5-405 405T1300 2537t-552.5-148.5-405-405T194 1431q0-297 149-552.5T747.5 474 1300 325q296 0 552.5 148.5t405 405T2406 1431t-148.5 552.5zm-89-1046q-131.5-230.5-364-368T1300 432q-269 0-499.5 134.5t-365 365T301 1431q0 272 137.5 504.5t368 364T1300 2431q266 0 498.5-134.5t367-367T2300 1431q0-263-131.5-493.5zm41 539.5q-18.5 19-44.5 19-27 0-46-19t-19-46q0-26 19-44.5t46-18.5q26 0 44.5 18.5t18.5 44.5q0 27-18.5 46zM2005 1046q-20-17-20-46 0-24 17.5-44.5T2048 935q25 0 45 18t20 46-18.5 46-45.5 18q-24 0-44-17zm-317-409q20-18 44-18 29 0 46.5 20t17.5 45q0 28-20 45.5t-44 17.5q-23 0-43.5-17t-20.5-47q0-28 20-46zm-775.5 0q19.5 18 19.5 46 0 25-18 44.5T868 747q-24 0-44-18t-20-46 19.5-46 45.5-18q24 0 43.5 18zm-318 409q-20.5 17-44.5 17-29 0-45.5-20.5T488 999q0-29 19.5-46.5T551 935q25 0 44.5 18.5T615 1000q0 29-20.5 46zM482 1476.5q-18 18.5-44 18.5-27 0-46.5-18t-19.5-46q0-26 19-44.5t45-18.5 45 18.5 19 44.5q0 27-18 45.5zm113.5 340Q615 1834 615 1863q0 24-17.5 44.5T551 1928q-24 0-43.5-17.5T488 1864t19.5-47 43.5-18q25 0 44.5 17.5zm317 409.5q-19.5 18-44.5 18-28 0-46-19.5t-18-43.5q0-29 20-47t44-18q25 0 44.5 19t19.5 45q0 28-19.5 46zm863.5-92.5q20 17.5 20 46.5 0 25-17.5 44.5T1733 2244q-24 0-44.5-17.5T1668 2181q0-26 19-45.5t46-19.5q23 0 43 17.5zm317-223.5q-20 18-45 18-28 0-45.5-20.5T1985 1863q0-29 20-46t44-17q26 0 45 17.5t19 46.5q0 28-20 46zm-624-473l370 214-79 137-371-213q-6 4-9 5v763h-160v-763q-40-21-64.5-60.5T1131 1431q0-69 50-119t119-50 119.5 50 50.5 119q0 4-1 6zm-124-50.5q-19-18.5-45-18.5-24 0-43.5 18t-19.5 45 18.5 45 44.5 18q27 0 45.5-18t18.5-45q0-26-19-44.5zm-90-864q19-18.5 45-18.5t45 18 19 45q0 26-19 45t-45 19-45-18.5-19-45.5q0-26 19-44.5z"},"children":[]}]};exports.u1F55F=u1F55F;var u1F560={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2257.5 1982.5q-148.5 256.5-405 405T1300 2536q-295 0-551.5-147.5T343 1984t-149-554q0-296 148.5-552.5t405-405T1300 324q297 0 552.5 149T2257 877.5t149 552.5q0 296-148.5 552.5zm-96-1056q-137.5-232.5-368-364T1300 431q-266 0-499 134.5t-367 367T300 1430q0 266 134.5 498.5t367 367T1300 2430q263 0 493.5-131.5t368-364T2299 1430q0-271-137.5-503.5zm47 549.5q-18.5 19-44.5 19-27 0-45.5-19t-18.5-46q0-26 18.5-44.5t45.5-18.5q26 0 44.5 18.5t18.5 44.5q0 27-18.5 46zm-204-431q-19.5-17-19.5-46 0-24 17.5-44.5T2048 934q24 0 44 18.5t20 46.5q0 25-18 44t-46 19q-24 0-43.5-17zM1775 728.5q-21 17.5-45 17.5-28 0-45-20t-17-43q0-28 19-46.5t44-18.5q26 0 45.5 19t19.5 46q0 28-21 45.5zm-864-93q20 17.5 20 46.5 0 24-17.5 44T867 746q-24 0-43.5-17.5T804 682q0-27 19-45.5t45-18.5q23 0 43 17.5zm-316.5 409Q574 1062 549 1062q-28 0-45-20t-17-44q0-28 19.5-46t44.5-18 44.5 19 19.5 45q0 29-20.5 46.5zm-113.5 431q-18 18.5-44 18.5-27 0-46.5-18t-19.5-46q0-26 19-44.5t45-18.5 45 18.5 19 44.5q0 27-18 45.5zm114 341q20 17.5 20 46.5 0 24-18 44t-46 20q-25 0-44.5-18t-19.5-46q0-27 18.5-45.5T550 1799q25 0 45 17.5zM910.5 2226q-20.5 17-44.5 17-29 0-45.5-20t-16.5-44q0-29 20-46.5t43-17.5q25 0 44.5 18.5T931 2180q0 29-20.5 46zm865-93.5q20.5 17.5 20.5 46.5 0 24-17.5 44t-45.5 20q-25 0-45-18t-20-46 20-46 44-18q23 0 43.5 17.5zM2092 1909q-20 18-44 18-28 0-45.5-20.5T1985 1862q0-28 19.5-45.5t43.5-17.5q27 0 45.5 18.5t18.5 44.5q0 29-20 47zm-649-389l214 370-138 80-139-242v614h-160v-763q-40-21-65-60.5t-25-88.5q0-69 50.5-119t119.5-50 119 50 50 119q0 25-7 47.5t-19 42.5zm-188.5-44q18.5 19 45.5 19 26 0 44.5-19t18.5-46q0-26-18.5-44t-44.5-18q-25 0-44.5 17t-19.5 45q0 27 18.5 46zm0-955q18.5-19 45.5-19 26 0 44.5 19t18.5 45-18.5 45-44.5 19q-27 0-45.5-19t-18.5-45 18.5-45z"},"children":[]}]};exports.u1F560=u1F560;var u1F561={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2257 1983.5Q2108 2239 1852.5 2388T1300 2537q-296 0-552.5-148.5t-405-405T194 1431t148-553 405-405.5T1300 324t552.5 148.5 405 405T2406 1431t-149 552.5zM2165.5 932Q2032 701 1801 566t-501-135q-273 0-506 138T430.5 938.5 300 1431q0 263 131.5 493.5t364 368T1300 2430q269 0 499.5-134.5t365-365T2299 1431q0-268-133.5-499zm43 543.5Q2190 1494 2164 1494q-27 0-45.5-18.5T2100 1431q0-27 18.5-45.5t45.5-18.5q26 0 44.5 18.5t18.5 45.5q0 26-18.5 44.5zm-204.5-431q-19-17.5-19-45.5 0-24 17-44t46-20q23 0 43.5 17.5T2112 999q0 28-20 45.5t-45 17.5q-24 0-43-17.5zm-1092.5-409Q931 653 931 682q0 23-17.5 43.5T867 746q-24 0-43.5-17.5T804 682q0-27 19-45.5t44-18.5 44.5 17.5zm-317 409Q574 1062 551 1062q-28 0-46-19.5T487 999q0-29 20-46.5t44-17.5q27 0 45.5 18t18.5 45q0 29-20.5 46.5zm-114.5 431q-19 18.5-45 18.5t-45-18.5-19-44.5q0-27 19-45.5t45-18.5 45 18.5 19 45.5q0 26-19 44.5zM595 1817q20 18 20 47 0 23-17.5 42.5T551 1926q-24 0-44-17.5t-20-45.5q0-26 19.5-45t44.5-19q24 0 44 18zm316.5 408.5Q892 2243 867 2243q-28 0-45.5-19.5T804 2179q0-29 19.5-46.5T867 2115t44 18 20 46q0 29-19.5 46.5zM1776 2133q20 18 20 46 0 25-18.5 44.5T1732 2243q-26 0-45-18.5t-19-46.5q0-29 20.5-46t42.5-17q25 0 45 18zm315.5-224.5Q2071 1926 2048 1926q-29 0-46-20t-17-43q0-28 19-46t43-18q25 0 45 17.5t20 45.5q0 29-20.5 46.5zm-641-402Q1432 1541 1403 1564v458h-24v320h-159v-320h-24v-458q-30-24-48-58t-18-76q0-69 50.5-119t119.5-50 119 50 50 119q0 42-18.5 76.5zM1255 1385q-19 18-19 46 0 26 18.5 44.5t45.5 18.5q26 0 44.5-18.5t18.5-44.5-18.5-45-44.5-19-45 18zm-.5-864q18.5-19 45.5-19 26 0 44.5 19t18.5 45-18.5 45-44.5 19q-27 0-45.5-19t-18.5-45 18.5-45zM1776 728.5q-20 17.5-44 17.5-28 0-46-20t-18-43q0-28 19.5-46.5T1732 618t44.5 19 19.5 45q0 29-20 46.5z"},"children":[]}]};exports.u1F561=u1F561;var u1F562={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2257.5 1981.5q-148.5 256.5-405 405T1300 2535q-295 0-551.5-147.5T343 1983t-149-554q0-295 148.5-551.5t405-405T1300 324t552 148.5T2257 877t149 552-148.5 552.5zm-96-1056q-137.5-232.5-368-364T1300 430q-266 0-499 134.5t-367 367T300 1429q0 266 134.5 498.5t367 367T1300 2429q263 0 493.5-131.5t368-364T2299 1429q0-271-137.5-503.5zm47 549.5q-18.5 19-44.5 19-27 0-45.5-19t-18.5-46q0-26 18.5-44.5t45.5-18.5q26 0 44.5 18.5t18.5 44.5q0 27-18.5 46zm-204-431q-19.5-17-19.5-46 0-24 17.5-44.5T2048 933q24 0 44 18.5t20 46.5q0 25-18 44t-46 19q-24 0-43.5-17zM1775 727.5q-21 17.5-45 17.5-28 0-45-20t-17-43q0-28 19-46.5t44-18.5q26 0 45.5 19t19.5 46q0 28-21 45.5zm-864-93q20 17.5 20 46.5 0 23-17 43.5T868 745q-24 0-44-17t-20-46q0-27 18.5-46t45.5-19q23 0 43 17.5zm-316.5 409Q574 1061 549 1061q-28 0-45-20t-17-44q0-28 19.5-46t44.5-18 44.5 19 19.5 45q0 29-20.5 46.5zM480 1475q-19 19-45 19t-45-19-19-46q0-26 19-44.5t45-18.5 45 18.5 19 44.5q0 27-19 46zm115 340.5q20 17.5 20 46.5 0 24-18 44t-46 20q-25 0-44.5-18t-19.5-46q0-27 18.5-45.5T550 1798q25 0 45 17.5zM910.5 2225q-20.5 17-44.5 17-29 0-45.5-20t-16.5-44q0-29 19.5-46.5T867 2114q25 0 44.5 18.5T931 2179q0 29-20.5 46zm865.5-93q20 18 20 46 0 24-17.5 44t-45.5 20q-25 0-45-18t-20-46 20-46 43-18q25 0 45 18zm316-224q-20 18-44 18-28 0-45.5-20.5T1985 1861q0-28 19.5-45.5t43.5-17.5q27 0 45.5 18.5t18.5 44.5q0 29-20 47zm-648-387q-25 39-64 61v759h-160v-611l-139 242-138-80 213-370q-12-20-19-42t-7-47q0-69 49.5-119t120.5-50 120 50 49 119q0 49-25 88zm-188.5-134q-18.5 19-18.5 45t18.5 44.5 45.5 18.5q26 0 44.5-18.5t18.5-44.5-18.5-45-44.5-19q-27 0-45.5 19zm-1-866.5Q1273 502 1300 502q26 0 44.5 18t18.5 45q0 26-18.5 45t-44.5 19q-27 0-45.5-18.5T1236 565q0-26 18.5-44.5z"},"children":[]}]};exports.u1F562=u1F562;var u1F563={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2257 1984.5Q2108 2240 1852.5 2389T1300 2538q-296 0-552.5-148.5t-405-405T194 1432t148-553 405-405.5T1300 325t552.5 148.5 405 405T2406 1432t-149 552.5zm-95.5-1057q-137.5-232.5-368-364T1300 432q-266 0-498.5 134.5t-367 367T300 1432q0 263 131.5 493.5t364 368T1300 2431q269 0 499.5-134.5t365-365T2299 1432q0-272-137.5-504.5zm47 549Q2190 1495 2164 1495q-27 0-45.5-18.5T2100 1432q0-27 18.5-45.5t45.5-18.5q26 0 44.5 18.5t18.5 45.5q0 26-18.5 44.5zm-204-430.5q-19.5-17-19.5-46 0-23 17-43.5t46-20.5q23 0 43.5 17.5t20.5 46.5q0 25-18 44t-46 19q-24 0-43.5-17zM1776 729.5q-20 17.5-44 17.5-28 0-46-20t-18-43q0-28 19.5-46t44.5-18q27 0 45.5 18.5T1796 683q0 29-20 46.5zm-952.5 0Q804 712 804 683q0-25 17-44t46-19q24 0 44 17t20 46q0 28-20 46t-44 18-43.5-17.5zm-229 316Q574 1063 551 1063q-28 0-46-19.5t-18-43.5q0-29 20-46.5t44-17.5q27 0 45.5 18.5T615 999q0 29-20.5 46.5zm-114.5 431q-19 18.5-45 18.5t-45-18.5-19-44.5q0-27 19-45.5t45-18.5 45 18.5 19 45.5q0 26-19 44.5zM595 1818q20 18 20 47 0 23-17.5 42.5T551 1927q-24 0-44-17.5t-20-45.5q0-26 19.5-45t44.5-19q24 0 44 18zm316.5 408.5Q892 2244 867 2244q-28 0-45.5-19.5T804 2181q0-29 20-47t44-18q23 0 43 18t20 46q0 29-19.5 46.5zm864-92q20.5 17.5 20.5 46.5 0 24-18 43.5t-46 19.5q-26 0-45-18.5t-19-46.5q0-29 19.5-45.5t43.5-16.5 44.5 17.5zm316.5-225q-20 17.5-44 17.5-29 0-46-20t-17-43q0-28 19-46t44-18q24 0 44 18t20 45q0 29-20 46.5zM1444 1519q-25 39-64 61v763h-160v-763l-4-2q-3 0-6-3l-370 214-80-138 371-214-1-6q0-69 50.5-119t119.5-50 119 50 50 119q0 49-25 88zm-189-132.5q-19 18.5-19 45.5 0 26 18.5 44.5t45.5 18.5q26 0 44.5-18.5t18.5-44.5q0-23-17-43.5t-46-20.5q-26 0-45 18.5zm-.5-864.5q18.5-19 45.5-19 26 0 44.5 19t18.5 45-18.5 45-44.5 19q-27 0-45.5-19t-18.5-45 18.5-45z"},"children":[]}]};exports.u1F563=u1F563;var u1F564={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2257.5 1981.5q-148.5 256.5-405 405T1300 2535q-295 0-551.5-147.5T343 1983t-149-554q0-295 148.5-551.5t405-405T1300 324t552 148.5T2257 877t149 552-148.5 552.5zm-96-1056q-137.5-232.5-368-364T1300 430q-266 0-499 134.5t-367 367T300 1429q0 266 134.5 498.5t367 367T1300 2429q263 0 493.5-131.5t368-364T2299 1429q0-271-137.5-503.5zm47 549.5q-18.5 19-44.5 19-27 0-45.5-19t-18.5-46q0-26 18.5-44.5t45.5-18.5q26 0 44.5 18.5t18.5 44.5q0 27-18.5 46zm-204-431q-19.5-17-19.5-46 0-23 17-43.5t46-20.5q23 0 43.5 17.5T2112 998q0 25-18 44t-46 19q-24 0-43.5-17zM1775 727.5q-21 17.5-45 17.5-28 0-45-20t-17-43q0-28 19-46.5t44-18.5q26 0 45.5 19t19.5 46q0 28-21 45.5zm-951 .5q-20-17-20-46 0-25 17.5-45t46.5-20q23 0 43 17.5t20 46.5q0 27-18 45.5T868 745q-24 0-44-17zm-229.5 315.5Q574 1061 550 1061q-29 0-46-20t-17-44q0-28 19.5-46t44.5-18 44.5 19 19.5 45q0 29-20.5 46.5zM480 1475q-19 19-45 19t-45-19-19-46q0-26 19-44.5t45-18.5 45 18.5 19 44.5q0 27-19 46zm115 340.5q20 17.5 20 46.5 0 24-18 44t-46 20q-25 0-44.5-18t-19.5-46q0-27 18.5-45.5T550 1798q25 0 45 17.5zM910.5 2225q-20.5 17-44.5 17-29 0-45.5-20t-16.5-44q0-29 19.5-46.5T867 2114q25 0 44.5 18.5T931 2179q0 29-20.5 46zm865.5-93q20 18 20 46 0 24-17.5 44t-45.5 20q-25 0-45-18t-20-46 20-46 43-18q25 0 45 18zm316-224q-20 18-44 18-28 0-45.5-20.5T1985 1861q0-28 19-45.5t43-17.5q25 0 45 18t20 46-20 46zm-648-390.5q-25 39.5-64 60.5v763h-160v-763q-44-22-69-69H724v-159h427q22-40 61-65t88-25q69 0 119 50t50 119q0 49-25 88.5zm-99.5-133Q1326 1366 1300 1366t-45 18.5-19 44.5q0 27 18.5 46t45.5 19q26 0 44.5-18.5t18.5-46.5q0-26-18.5-44.5zm-90-864Q1273 502 1300 502q26 0 44.5 18t18.5 45q0 26-18.5 45t-44.5 19q-27 0-45.5-18.5T1236 565q0-26 18.5-44.5z"},"children":[]}]};exports.u1F564=u1F564;var u1F565={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2257 1983.5Q2108 2239 1852.5 2388T1300 2537q-296 0-552.5-148.5t-405-405T194 1431t148.5-552.5 405-405T1300 325t552.5 148.5 405 405T2406 1431q0 297-149 552.5zM2165.5 932Q2032 701 1801 566t-501-135q-273 0-506 138T430.5 938.5 300 1431q0 263 131.5 493.5t364 368T1300 2430q269 0 499.5-134.5t365-365T2299 1431q0-268-133.5-499zm43 543.5Q2190 1494 2164 1494q-27 0-45.5-18.5T2100 1431q0-27 18.5-45.5t45.5-18.5q26 0 44.5 18.5t18.5 45.5q0 26-18.5 44.5zm-204-430.5q-19.5-17-19.5-46 0-23 17-43.5t46-20.5q23 0 43.5 17.5T2112 999q0 25-18 44t-46 19q-24 0-43.5-17zm-1181-316.5Q804 711 804 682q0-25 17-44t46-19q24 0 44 18t20 46q0 25-19.5 44T867 746q-24 0-43.5-17.5zm-229 316Q574 1062 550 1062q-29 0-46-20t-17-43q0-29 20-46.5t44-17.5q27 0 45.5 18.5T615 998q0 29-20.5 46.5zm-114.5 431q-19 18.5-45 18.5t-45-18.5-19-44.5q0-27 19-45.5t45-18.5 45 18.5 19 45.5q0 26-19 44.5zM595 1817q20 18 20 47 0 23-17.5 42.5T551 1926q-25 0-44.5-17.5T487 1863q0-26 19.5-45t44.5-19q24 0 44 18zm316.5 407.5Q892 2243 868 2243q-29 0-46.5-19.5T804 2180q0-29 20-47t44-18q23 0 43 18t20 45q0 28-19.5 46.5zm864-91q20.5 17.5 20.5 45.5 0 24-18.5 44t-46.5 20q-25 0-44-18.5t-19-46.5q0-29 19.5-45.5t43.5-16.5 44.5 17.5zm316.5-225q-20 17.5-44 17.5-29 0-46.5-20t-17.5-43q0-28 19.5-46t44.5-18q24 0 44 18t20 45q0 29-20 46.5zM1444 1518q-25 39-65 61v763h-159v-763q-40-22-65-61t-25-88l1-2v-3l-370-213 79-139 370 214q20-12 42.5-19t47.5-7q69 0 119 50t50 119q0 49-25 88zm-189.5-132q-18.5 18-18.5 45 0 26 18.5 44.5t45.5 18.5q26 0 44.5-16t18.5-44q0-27-16.5-46.5T1299 1368q-26 0-44.5 18zM1775 728.5q-20 17.5-43 17.5-28 0-46-20t-18-44q0-28 20-45.5t44-17.5q26 0 44.5 17.5T1795 683q0 28-20 45.5zM1254.5 521q18.5-19 45.5-19 26 0 44.5 19t18.5 45-18.5 45-45.5 19q-26 0-44.5-19t-18.5-45 18.5-45z"},"children":[]}]};exports.u1F565=u1F565;var u1F566={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2257.5 1981.5q-148.5 256.5-405 405T1300 2535t-552.5-148.5-405-405T194 1429q0-295 148.5-551.5t405-405T1300 324t552 148.5T2257 877t149 552-148.5 552.5zm-96-1056q-137.5-232.5-368-364T1300 430q-266 0-499 134.5t-367 367T300 1429q0 261 130.5 492.5T794 2291t506 138q270 0 501-135t364.5-366 133.5-499q0-271-137.5-503.5zm47 549.5q-18.5 19-44.5 19-27 0-45.5-19t-18.5-46q0-26 18.5-44.5t45.5-18.5q26 0 44.5 18.5t18.5 44.5q0 27-18.5 46zm-204-431q-19.5-17-19.5-46 0-23 17-43.5t46-20.5q23 0 43.5 17.5T2112 998q0 25-18 44t-46 19q-24 0-43.5-17zm-1093-408.5Q931 654 931 682q0 23-17 43t-46 20q-24 0-44-17t-20-46q0-27 18.5-46t45.5-19q24 0 43.5 18.5zm-317 408Q574 1061 550 1061q-29 0-46-20t-17-44q0-28 19.5-45.5T551 934q27 0 45.5 18.5T615 997q0 29-20.5 46.5zM480 1475q-19 19-45 19t-45-19-19-46q0-26 19-44.5t45-18.5 45 18.5 19 44.5q0 27-19 46zm114.5 340.5Q615 1833 615 1862q0 24-18 44t-46 20q-25 0-44.5-18t-19.5-46q0-27 18.5-45.5T550 1798q24 0 44.5 17.5zM911 2224q-20 18-45 18-29 0-45.5-20t-16.5-44q0-29 19.5-46.5T867 2114q25 0 44.5 19t19.5 45q0 28-20 46zm865-92q20 18 20 46 0 24-17.5 44t-46.5 20q-24 0-44-18t-20-46 20-46 43-18q25 0 45 18zm316-224q-20 18-44 18-28 0-46-20.5t-18-43.5q0-28 19.5-46t43.5-18q25 0 45 18t20 46-20 46zm-648-390.5q-25 39.5-65 60.5v764h-159v-764q-40-21-65-60.5t-25-88.5q0-24 7-46t19-42L943 971l138-80 213 370 6-1q69 0 119 50t50 119q0 49-25 88.5zm-189.5-42.5q18.5 19 45.5 19 25 0 44-19t19-46q0-26-18.5-44.5T1300 1366t-45 18.5-19 44.5q0 27 18.5 46zm520-747.5Q1754 745 1730 745q-27 0-44.5-20t-17.5-44q0-27 19.5-45.5T1731 617t44 17 20 47q0 29-20.5 46.5zm-520-207Q1273 502 1300 502q26 0 44.5 18.5T1363 565q0 27-18.5 45.5T1299 629q-26 0-44.5-18.5T1236 565q0-26 18.5-44.5z"},"children":[]}]};exports.u1F566=u1F566;var u1F567={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2257 1983.5Q2108 2239 1852.5 2388T1300 2537q-296 0-552.5-148.5t-405-405T194 1431q0-295 147.5-551.5T746 474t554-149q296 0 552.5 148.5t405 405T2406 1431q0 297-149 552.5zm-95.5-1057q-137.5-232.5-368-364T1300 431q-266 0-498.5 134.5t-367 367T300 1431q0 263 131.5 493.5t364 368T1300 2430q269 0 499.5-134.5t365-365T2299 1431q0-272-137.5-504.5zm47 549Q2190 1494 2164 1494q-27 0-45.5-18.5T2100 1431q0-27 18.5-45.5t45.5-18.5q26 0 44.5 18.5t18.5 45.5q0 26-18.5 44.5zM2004 1045q-19-17-19-46 0-23 17-43.5t46-20.5q23 0 43.5 17.5T2112 999q0 25-18 44t-46 19q-25 0-44-17zM911 637q20 18 20 46 0 23-18 43t-46 20q-24 0-43.5-17.5T804 682q0-27 18-45t45-18q24 0 44 18zm-316.5 407.5Q574 1062 550 1062q-29 0-46-20t-17-43q0-29 20-46.5t44-17.5q27 0 45.5 18.5T615 998q0 29-20.5 46.5zm-114.5 431q-19 18.5-45 18.5t-45-18.5-19-44.5q0-27 19-45.5t45-18.5 45 18.5 19 45.5q0 26-19 44.5zM595 1817q20 18 20 47 0 23-17.5 42.5T551 1926q-25 0-44.5-17.5T487 1863q0-26 19.5-45t44.5-19q24 0 44 18zm316.5 407.5Q892 2243 868 2243q-29 0-46.5-19.5T804 2180q0-29 20-46.5t44-17.5q25 0 44 17.5t19 44.5q0 28-19.5 46.5zm864-91q20.5 17.5 20.5 45.5 0 24-18.5 44t-46.5 20q-25 0-44-18.5t-19-46.5q0-29 19.5-45.5t43.5-16.5 44.5 17.5zm316.5-225q-20 17.5-44 17.5-29 0-46.5-20t-17.5-43q0-28 19.5-46t44.5-18q24 0 44 18t20 45q0 29-20 46.5zM1379 1282q41 20 65.5 60t24.5 89q0 48-25 87t-65 61v763h-159v-763q-40-22-65-61t-25-87 24.5-88.5 65.5-60.5V839h159v443zm-124 103q-19 18-19 46 0 26 18.5 44.5t45.5 18.5q26 0 44.5-18.5t18.5-44.5-18.5-45-44.5-19-45 18zm520-656.5q-20 17.5-43 17.5-28 0-46-20t-18-44q0-28 20-45.5t44-17.5q26 0 44.5 17.5T1795 683q0 28-20 45.5zM1254.5 521q18.5-19 45.5-19 26 0 44.5 19t18.5 46q0 26-18.5 44.5T1299 630q-26 0-44.5-18.5T1236 567q0-27 18.5-46z"},"children":[]}]};exports.u1F567=u1F567;var u1F5FB={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2405.5 1997.5Q2356 2035 2296 2035q-70 0-148-35.5t-131-35.5q-51 0-154 42.5t-175 42.5q-71 0-171-42.5t-161-42.5q-59 0-170 44.5T977 2053q-103 0-167-44.5T697 1964q-44 0-163 36t-255 36q-47 0-90.5-34t-43.5-82q0-63 87-132t212-203.5 221-271T832 1069t120.5-220.5T1067 736q32 0 61 24t50 24q24 0 56.5-30.5T1299 723q43 0 73 34.5t55 34.5q27 0 55-35.5t76-35.5q41 0 80.5 37t83 125.5T1858 1137t232 335.5 213 245.5 113 108 39 82q0 52-49.5 89.5zM1783 1399q9 2 18 2 19 0 33.5-7t14.5-28q0-20-74.5-121T1652 1046l-43-87q-19-38-34-59t-31-21q-27 0-56.5 29.5T1432 938q-28 0-58-27.5t-67-27.5q-16 0-43.5 26t-45.5 26q-27 0-58.5-28t-48.5-28q-39 0-60 58t-114 209.5-108 173-15 42.5q0 35 45 35t117-21 116-21q48 0 131 38.5t140 38.5q44 0 106-33.5t128-33.5q38 0 82.5 12t86.5 20z"},"children":[]}]};exports.u1F5FB=u1F5FB;var u1F5FC={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2063 2562h-277l-8-11-72-82q-89-97-134.5-123.5T1488 2319q-42 0-72 28t-30 83q0 41 1 74.5t3 57.5h-180l3-58q0-33 1-74 0-54-29.5-82.5T1114 2319q-40 0-84.5 25.5T895 2469l-37 41-46 52H537l85-78q134-124 281-324.5t204-445.5q-30-7-51.5-43.5T1034 1588q0-53 29-76t89-28q28-176 43.5-369.5T1211 748h49l15-519q0-13 9.5-21t20.5-8q13 0 21 8t8 21l15 520h39q0 172 16 368.5t44 367.5q60 3 88 28t28 78q0 43-18 75t-54 45q57 242 199 439t289 335l26 25zm-949-1003q-5 5-7.5 10.5t-2.5 18.5q0 20 8 37t14 25q26 7 65.5 11t98.5 4q43 0 84-3t81.5-11.5 40.5-57.5q0-19-11-31t-156-12h-66l-79 1q-22 0-41 2.5t-29 5.5zm137-373l-6 59-8 63h45q21 0 44-2h17q9 0 20 1l-8-62q-4-30-6-59h-98zm13-226q19 0 37.5 1.5t32.5 1.5q0-32-1-89.5t-1-66.5h-62q0 5-1 11t-1 12q0 27-1 61t-3 69z"},"children":[]}]};exports.u1F5FC=u1F5FC;var u1F5FD={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2276 1680q11 0 11 11 0 3-1.5 6t-4.5 4l-312 129q5 15 7 32.5t2 34.5q0 32-9.5 62t-9.5 60q0 32 23.5 78.5t23.5 85.5q0 16-4 29t-8 25l-9 23q-4 12-4 25 0 42 67 121t85 109H574q-14-14-25-31t-11-38q0-10 3.5-19t8.5-18l8-18q4-8 4-17 0-14-8.5-29t-18.5-30l-29-41q-15-21-25-43t-10-44q0-31 68.5-144.5T673 1857l-29-145-16-88q-13-66-28-132t-37-139q-45 0-66-12.5t-28-35.5-7-89q-8-6-20.5-19t-12.5-29l1-6v-10q0-17-13.5-25t-13.5-33q0-8 1.5-15.5t1.5-14.5q0-6-3-10l-6-8q-5-7-7-11.5t-2-11.5q0-16 6.5-24.5T401 976q0-18-6.5-30t-6.5-26q0-10 9-27-38-10-61.5-24T312 836V684q0-18 27-33t69-24q-17-20-29.5-48T366 516q0-51 34-114t94-90 150-37 99.5-18.5T834 221l7 3q11 25 11 49 0 25-7.5 48T826 361l-13 20q-9 13-9 27 0 71-17.5 127.5T736 623q48 10 79.5 25.5T847 684v152q0 22-34.5 39T710 902q11 21 16 48l10 58q0 6 6.5 54.5t6.5 79.5q0 17-1 27.5t-1 24.5q0 38 7 90.5t11 64.5q0 5 10 35l27 78q17 53 40.5 117.5T889 1708q14-5 28.5-9.5t26.5-4.5q28 0 39.5 62t12.5 65l215-64q6-56 32-105l-272-237q-4-4-4-7 0-10 15-10l329 158q19-20 47-38.5t45-26.5l-93-367q0-3 2-6t7-3q6 0 10 4l192 338 23-2q11 0 23-1 13 0 25 1l26 2 164-329q6-4 10-4 8 0 8 11l-70 354q28 12 51 28t44 36l283-174q2 0 5-1 4 0 7.5 3.5t3.5 7.5q0 2-3 5l-232 249q11 21 20 40t21 41zm-573 292q0-43-24-76t-68-33q-65 0-68.5 64.5T1511 2006q16 0 41.5 9.5t25.5 25.5q0 7-6.5 9t-13.5 2h-11q-13 0-27 4t-27 8l-25 8q-11 4-17 4-8 0-8-8 0-15 8-29t25-22q-14 0-26.5-5.5T1437 1986q0-45 13.5-45t23.5-21 10-80q0-50 26.5-66.5t72.5-20 60-6.5q-19-12-39-20t-40-15l-41-13q-21-7-42-16l-18-7q-6-2-11-2-23 4-55.5 47t-59 81-26.5 74q0 3 2 4 14-20 38.5-34.5t50.5-14.5h12q3 11 10.5 32t7.5 38q0 25-23.5 26t-42.5 16-19 40q0 43 26.5 99t52.5 79l10 7q3 0 24 16.5t63 16.5q66 0 114.5-57.5T1703 1972zm-697-97q8 36 20.5 60.5t32.5 47.5l26 30 136-72-5-37q-3-17-5-35zm289 364q4-17 6.5-33t2.5-27q0-22-23-31.5t-36-33.5-13-75l-114 26q4 14 6.5 28t4.5 33q6 0 10.5 1t9.5 1h13q14 0 49.5 17t83.5 94zm247-130.5q-17 7.5-40 7.5-8 0-14.5-2.5t-6.5-8.5q0-12 23-19t41-7q5 0 9.5 1.5t4.5 8.5q0 12-17 19.5z"},"children":[]}]};exports.u1F5FD=u1F5FD;var u1F5FE={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M318 2430q2-2 8-2 8 0 12 8t4 14q0 13-19.5 52.5t-39.5 50-46 37-60 26.5q-11 0-20-5.5t-9-17.5q0-15 10-30.5t16-37 22-39 40-17.5q21 0 31-4t17-10l13-13q6-6 21-12zm220-300q-33 29-57 83t-29.5 76-34 44.5T360 2356q-31 0-51-29t-20-62q0-23 8-46t8-46q0-13-4.5-20.5T289 2139l-14-11q-14-11-22-26.5t-8-52.5q0-53 43-87t98-34q30 0 53.5 12.5t62.5 26 39 31.5q0 8-3.5 14t-3.5 13q0 15 18.5 27.5T571 2078q0 23-33 52zm1268-855l-20 48q-13 37-54.5 63t-41.5 59q0 13 1.5 29.5t1.5 31.5q0 44-30 76t-30 86q0 20 5.5 38.5t5.5 35.5q0 14-9 31.5t-29 35.5-34.5 19.5-56 8-70.5 22-63.5 20-66.5 12-48 7.5h-14q-39 0-51.5-24t-28.5-24q-11 0-18.5 9t-7.5 20 14 23.5 14 25.5q0 14-14.5 28.5T1126 1984l-19 13q-23 17-52.5 29.5T996 2039t-51-17.5-22-44.5q0-9 5-18l19-35q4-9 4-18 0-18-15-26t-32-8q-38 0-60 16t-57 17l-32 2q-55 3-83.5 24.5T610 1953q-73 0-106-13.5t-33-42.5q0-25 15.5-40.5t55-26T611 1797t47.5-50 45.5-27q14 0 31 5t40 5q35 0 72-8t71-8q51 0 64.5 17t21.5 18q50 0 53-42t42.5-64 42.5-48l4-37q3-35 23-57t62-22q10 0 17.5 1.5t7.5 10.5q0 16-16.5 35t-16.5 35q0 8 5 11.5t13 3.5q33 0 86-38t83-70.5 48.5-63 50.5-80.5 32-93q0-22-10-41.5t-10-39.5q0-19 19.5-55t25.5-53l9-30q4-18 31-34t58-16q32 0 49 17t20 43l4 32q2 32 40 77.5t38 92.5q0 30-9 51zm-969 653q27 2 46.5 22.5T903 1998q0 24-11 34l-50 46q-14 13-31 13-14 0-29-16.5t-33-16.5q-35 0-53 46.5t-44 46.5q-31 0-42-23.5t-11-52.5q0-57 31.5-87t47.5-30q11 0 24 6.5t25 6.5q33-5 46-24.5t38-19.5h14zM2140 639l16 7q7 4 12.5 8.5t5.5 11.5q0 15-29 33t-77.5 22-77.5 26-36 56.5-24 49.5-41 15q-34 0-78-29t-74-29q-16 0-29 7t-29 7q-6 0-18.5-5.5T1638 813q-5 0-9 2.5t-4 8.5q0 14 30 28t30 35q0 13-8 17t-20 4q-11 0-18.5 2t-13.5 6l-16 11q-9 6-18 10.5t-22 4.5q-15 0-20-9.5t-5-18.5q0-8 1.5-17.5t1.5-19.5q0-19-16.5-33.5T1514 801v-12q0-16 8-27t27-21l20-10q9-4 9-11 0-5-2-10.5t-2-10.5q0-19 10.5-25.5t26.5-7.5l29-1q35-2 56.5-67t21.5-117q0-16-3-34t-3-35q0-15 3-25.5t6-18.5q10-6 27.5-8.5t37.5-2.5q30 0 43.5 25t75 83.5T2036 536q2 2 8 2 16 0 37-15.5t36-15.5q13 0 20 7.5t7 19.5q0 15-12.5 29.5T2119 599q0 19 5.5 27t15.5 13zm67-140l11-3q5 0 11-1 11 0 17 7t6 16q0 12-9 20l-17 17q-9 14-22.5 27t-30.5 13q-3 0-4-1l-7-7q-7-10-7-18 0-18 17-39.5t35-30.5zm231-97q-14 14-40 28l-24 14q-11 8-35.5 31.5T2289 499q-11 0-17-5t-6-22q5-24 50.5-76.5T2403 343q18 0 33.5 6.5T2452 373q0 15-14 29z"},"children":[]}]};exports.u1F5FE=u1F5FE;var u1F5FF={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2106 2049q-11 52-17.5 74.5t-17 90.5-31 105.5-46.5 52-72.5 28.5-89.5 22q-105 21-217 30.5t-240 9.5q-31 0-61-1l-62-2-83-5q-44-2-80-12-83 0-171.5-9T752 2415l-36-4q-78-12-187-17.5T407 2281l-4-33q-11-83-16.5-170t-5.5-181q0-414 38.5-622t210-409 375-330T1423 407q36 0 64.5 5.5T1542 427l37 15q28 9 50 22t42 27l40 28q18 13 75 47.5t116 88 82.5 110T2010 872t14.5 95 48.5 102 64.5 108.5T2181 1321t26.5 238 11.5 223q0 139-28.5 188t-84.5 79zm-21.5-532q-16.5-188-34-241t-58-116-59.5-107q-22 19-46 34t-36 15q-15 0-24.5-17t-13.5-45l-5-27q-3-17-13.5-43.5T1784 920q0-17 8-27t31-10q32 0 73 30-4-18-5-33l-3-29q-7-55-69-110.5t-153-112-150-56.5q-219 0-374.5 189.5T986 1198q0 329 26 475.5t44.5 302.5 53.5 228 88.5 106 179.5 34q141 0 284-15.5t205.5-35 68-26.5 9.5-22q-4 0-9 2l-10 4q-22 8-45.5 10t-46.5 2q-61 0-119.5 4.5T1597 2272q-42 0-83-3l-82-5q-82-6-102.5-108t-27.5-171.5-7-129.5q0-41 5-57t18-16q8 0 14 2.5t57.5 38 98 61 109 58.5 76 36.5 63.5 10.5 89 7q45 0 91-2.5t87-12.5q13-20 46-36t42.5-45 9.5-118q0-77-16.5-265zM1952 1698q14 8 14 31 0 24-22 36t-60 12h-14q-7 0-64-8t-57-34q0-23 49.5-28t71-11 48.5-6q20 0 34 8zm9-71q-35 11-97 11-69 0-159 17l-12 1q-9 0-18-6t-9-17q0-29 77.5-58.5T1881 1545h16q53 3 76 19.5t23 32.5q0 19-35 30zm-321-116q-24 4-34 4-27 0-46-35t-41-87l-26-63-48-111q-9-20-21.5-24t-85-14.5T1204 1170q-78 0-107.5-13.5T1067 1115q0-19 17-39.5t45-40.5l26-19 117-87q56-42 119-54t138-12q17 0 32.5 3t23.5 16l68 173 39 65q31 49 41.5 92t51.5 43q31 0 60 2l61 4q30 2 37.5 8t7.5 25q0 154-80.5 173t-230.5 44z"},"children":[]}]};exports.u1F5FF=u1F5FF;var u1F600={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2415.5 1722.5q-40.5 107.5-90 169.5t-72 80-52.5 61-144 105-316.5 105-440.5 43q-239 0-444-44t-316.5-106.5-138-101.5-58.5-67.5-78-88.5-83-162-37-239q0-63 8-111t26-103 43.5-104.5 62-100 86-101T447 872t80.5-85 109-88.5 121-72.5 135-60 144.5-44q129-30 263-30 262 0 502 112.5T2179 903q165 165 221 297t56 277q0 138-40.5 245.5zM788 1196l-67-10q-26-4-43-8l-51-11q7 86 48 163t113 134v-268zm60.5-167.5Q875 1056 917 1056q45 0 77-38.5t32-89.5q0-41-27-67.5T937 834q-44 0-79.5 35.5T822 958q0 43 26.5 70.5zM1034 1217q-48-3-94.5-6.5T852 1203v304q37 21 82 39t100 31v-360zm246 7q-47 0-92.5-1t-89.5-3v371q41 7 86 11t96 5v-383zm247-4q-44 2-89.5 3t-93.5 1v383q51 0 96-4.5t87-11.5v-371zm245-17q-42 4-87.5 7.5t-93.5 6.5v361q54-13 99-30.5t82-38.5v-306zm-8-332.5q-36-36.5-78-36.5-36 0-63 27t-27 67q0 49 32 88.5t78 39.5q38 0 66-27t28-70q0-52-36-88.5zm72 596.5q81-63 123.5-147.5T2002 1167q-16 3-58 12t-108 17v271z"},"children":[]}]};exports.u1F600=u1F600;var u1F601={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2277.5 1824q-49.5 148-93 205T2025 2146.5t-306.5 101T1300 2288q-163 0-304.5-20T744 2215.5 560.5 2144 448 2068.5t-52-64-42.5-93.5-55.5-176.5-26-241.5q0-263 120.5-474.5t372.5-345T1300 540q287 0 540 135.5t370 347 117 470.5q0 183-49.5 331zM816 1259l-114-10-38-5q15 62 54.5 127t97.5 116v-228zm232 11q-48 0-90-3l-79-4v272q35 23 76.5 42t92.5 34v-341zm16-159q5 8 14 13t18 5q15 0 25-12.5t10-25.5q0-27-53.5-70T948 978q-58 0-103 25.5t-65 53.5l-12 16q-5 6-5 19 0 14 10 25.5t26 11.5q22 0 35-21.5t43-39 71-17.5q36 0 66 16t42 33zm217 163h-86.5l-82.5-2v354q75 16 169 18v-370zm233-2q-40 0-83 1t-87 1v370q46 0 89-4.5t81-11.5v-356zm231-9l-78 4q-42 2-90 3v341q51-14 92-33t76-41v-274zm24-152q5 8 13.5 13t17.5 5q16 0 26.5-11.5t10.5-25.5q0-10-5-19l-12-16q-20-28-65-53.5T1652 978q-57 0-102 25t-65 53l-12 17-4 8q-2 5-2 10 0 13 10 25.5t27 12.5q9 0 18-5t14-13q0-7 33-33.5t83-26.5q38 0 67.5 16.5t41.5 32.5zm41 378q59-50 99-116t54-129l-37 5-116 10v230z"},"children":[]}]};exports.u1F601=u1F601;var u1F602={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2018 2158.5Q1724 2277 1300 2277t-718-118.5T288 1880q0-390 115-696.5t340.5-469T1300 552t556.5 162.5 340.5 469 115 696.5q0 160-294 278.5zm-1524.5-344q-3.5-20.5-5.5-70t-18-49.5q-18 0-65.5 53.5T357 1860q0 36 20.5 65.5T433 1955q27 0 45.5-23t18.5-66q0-31-3.5-51.5zM639 1427q3-7 3-15 0-13-17-13-45 0-101.5 45T467 1545q0 29 16.5 53t47.5 24q61 0 77.5-83.5T634 1440zm223 117q-34-2-57-4l-63-6-15-2q7 44 40.5 103.5T862 1749v-205zm209 11q-39 0-76-2t-70-4v248q31 20 67 37t79 29v-308zm-15.5-307.5Q997 1200 915 1200q-70 0-123.5 35.5T722 1303l-4 8q-2 5-2 10 0 14 11 25.5t26 11.5q21 0 32-18 0-8 36-37.5t94-29.5q56 0 93 29.5t37 37.5q11 18 32 18 12 0 24.5-10t12.5-27q0-26-58.5-73.5zM1282 1559q-82 0-146-3v324q64 12 146 15v-336zm210-3q-66 3-147 3v336q81-3 147-15v-324zm63-216q0-8 36.5-37.5t93.5-29.5q56 0 93 29.5t37 37.5q11 18 32 18 15 0 25-11.5t10-25.5q0-31-59-76t-138-45q-83 0-141 47.5t-58 73.5q0 16 12 26.5t25 10.5q21 0 32-18zm148 209q-34 2-71 3.5t-76 2.5v310q44-14 80-30t67-36v-250zm63 203q59-54 89-105t37-78l11-37-137 13v207zm362-154q17-24 17-53 0-51-54.5-98.5T1986 1399q-17 0-17 13 0 8 4 15l5 13q9 17 26 99.5t76 82.5q31 0 48-24zm106 328q21-29 21-66 0-54-46.5-109.5T2143 1695q-17 0-19 53.5t-5.5 67.5-3.5 43q0 55 19.5 75.5t43.5 20.5q35 0 56-29z"},"children":[]}]};exports.u1F602=u1F602;var u1F603={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2018 2160.5Q1724 2279 1300 2279t-718-118.5T288 1882q0-398 120.5-708.5t346-465.5T1300 553t545.5 155 346 465.5T2312 1882q0 160-294 278.5zm-1031.5-885Q955 1241 915 1241q-41 0-71 35t-30 85 29.5 86 71.5 36q41 0 72-35t31-87q0-51-31.5-85.5zM1607 1624q-11-12-26-12-21 0-37.5 25t-73.5 58-137 33q-83 0-145.5-25.5T1098 1648l-16-16q-14-15-30-15-17 0-27 11t-10 25q0 11 7 21 0 5 35.5 37.5t106 61T1333 1801q119 0 202-60.5t83-90.5q0-14-11-26zm149-348q-30-35-71-35-40 0-71.5 34.5T1582 1361q0 52 31 87t72 35q42 0 71.5-36t29.5-86-30-85z"},"children":[]}]};exports.u1F603=u1F603;var u1F604={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2018 2160.5Q1724 2279 1300 2279t-718-118.5T288 1882q0-398 120.5-708.5t346-465.5T1300 553t545.5 155 346 465.5T2312 1882q0 160-294 278.5zM739 1012l-1 7q0 14 9.5 25.5T774 1056q24 0 35.5-23t34.5-38.5 49-15.5q36 0 60.5 25t24.5 33q12 20 33 20 15 0 26-11.5t11-25.5q0-27-45.5-71T893 905t-108 42.5-46 64.5zm801.5 278q-32.5-27-87.5-27-32 0-95 10.5t-137 10.5q-158 0-251.5-51T834 1182q-51 0-81 33.5t-30 92.5q0 141 136.5 238t303.5 97 288.5-92.5T1573 1365q0-48-32.5-75zm101.5-147l-2-15q-8-57-53-105t-121-48q-37 0-73 16t-54 32l-12 11q-9 11-9 24 0 16 10.5 27.5t26.5 11.5q14 0 41.5-25t69.5-25q44 0 70.5 30t32 66 42.5 36q14 0 22.5-11t8.5-25z"},"children":[]}]};exports.u1F604=u1F604;var u1F605={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2018 2160.5Q1724 2279 1300 2279t-718-118.5T288 1882q0-398 119.5-707.5T753 709t547-156 547 156 345.5 465.5T2312 1882q0 160-294 278.5zM741 1004q-2 4-2 7t-1 8q0 14 10 25.5t26 11.5q22 0 35-23.5t35.5-39T893 978q36 0 60.5 25.5T978 1035q10 21 33 21 17 0 27-11t10-26v-7q0-4-3-8l-13-21q-21-31-57.5-55T893 904q-48 0-86 26.5T752 986zm799 284.5q-33-27.5-87-27.5-27 0-94 11t-141 11q-155 0-248-51.5T834 1180q-51 0-81 33.5t-30 92.5q0 144 138.5 240.5T1164 1643q167 0 288-92.5t121-186.5q0-48-33-75.5zm102-145.5l-2-15q-9-59-54-107t-122-48q-36 0-69.5 15t-55.5 35l-12 11q-9 11-9 24 0 16 11.5 26.5t25.5 10.5q15 0 26-11l8-7q13-11 34-20.5t44-9.5q49 0 76 35.5t27 63.5q2 17 13 25t28 8q14 0 22.5-11t8.5-25zm374 208q-28-41-68-68l-15-10q-10-6-18-6-7 0-10.5 8.5t-3.5 18.5v10q0 17 1.5 33t1.5 32l-1 44q0 48 18.5 80.5t56.5 32.5q32 0 49-31.5t17-63.5q0-39-28-80z"},"children":[]}]};exports.u1F605=u1F605;var u1F606={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2017 2161q-295 118-717 118t-717-118-295-279q0-390 115-696.5t340.5-469T1300 554t556.5 162.5 340.5 469 115 696.5q0 161-295 279zm-544-855q0-4 1-12 0-14-9.5-25t-26.5-11q-25 0-34 24l-13 27q-23 47-83.5 90t-145.5 43q-132 0-197.5-68.5T899 1208q0-17-8-31.5t-27-14.5q-23 0-30.5 15t-7.5 35q0 122 86 213t250 91q98 0 173.5-48.5T1442 1362zm145-250q15-2 25-12.5t10-26.5q0-14-10-24t-24-10l-27 1q-50 2-116.5 13t-100.5 21.5-34 38.5q0 21 16.5 29t73 28 99 45 55.5 25q14 0 25.5-9t11.5-26q0-16-21.5-33t-59.5-35l-33-15q23-3 43-5t35-3zm-841-13q31-5 66-7t67-2q34 0 57 1l26 1q14 0 25-10t11-25q0-27-51-67.5T896 878l-32-16q-8-2-13-2-16 0-26.5 10T814 897q0 25 21.5 34t56.5 30q-33 0-95.5 5.5T734 1009q0 15 11.5 25.5T771 1045z"},"children":[]}]};exports.u1F606=u1F606;var u1F607={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1913 760q195 167 297.5 464t102.5 659q0 160-294 278.5T1300 2280t-719-118.5T287 1883q0-364 101.5-659.5T687 760q88 66 254 104.5t359 38.5 359-38.5T1913 760zM784 1395l9-12q15-19 48-36.5t74-17.5q42 0 74.5 18t46.5 36l9 12q11 19 31 19 16 0 26.5-11.5t10.5-25.5q0-30-59-76t-139-46q-86 0-142.5 48t-56.5 73q0 14 10 25.5t27 11.5q20 0 31-18zm823.5 229q-10.5-11-26.5-11-20 0-36 25t-74 58-139 33q-88 0-147.5-26t-87-56-46.5-30q-16 0-26 11t-10 25q0 13 7 21 0 5 36 38t106 61.5 169 28.5q117 0 201-59t84-93q0-15-10.5-26zm270.5-266l-12-18q-21-29-70-57t-111-28q-83 0-141 48t-58 73q0 15 10 26t27 11q23 0 34-21t45.5-42 82.5-21q55 0 92.5 29t37.5 37q11 19 31 19 13 0 25-10.5t12-26.5q0-9-5-19zm-120-585.5Q1569 844 1300 844q-268 0-458-71.5T652 603q0-97 189.5-168.5T1300 363q270 0 458.5 72T1947 603q0 98-189 169.5zM1562 494q-104-30-262-30-159 0-263 30t-104 68q0 39 105 68t262 29q156 0 261-29t105-68q0-38-104-68zm-30 83q-41 10-99 17t-133 7-133.5-7-99.5-17q54-11 111.5-17.5T1300 553q63 0 120.5 6.5T1532 577z"},"children":[]}]};exports.u1F607=u1F607;var u1F608={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1967 808q172 176 259.5 457t87.5 617q0 108-140 201.5t-375.5 145T1301 2280q-263 0-499.5-52T426 2083t-139-201q0-344 91-626t259-450q-18-42-26.5-85t-8.5-87q0-121 52.5-221.5T770 312q10 0 19.5 6.5T799 339q0 15-7.5 35.5T784 429q0 61 22 117t63 96q90-42 196.5-66t235.5-24q132 0 240 24.5t198 68.5q37-33 57.5-91.5T1817 442q0-36-7-56t-7-38q0-14 9-20t19-6q57 0 112.5 96.5T1999 643q0 41-7 85t-25 80zm-917 647q77-55 88-115l-528-159q-2 10-3 21.5t-1 24.5q0 127 81.5 205t194.5 78q91 0 168-55zm487.5 246q-82.5-61-203.5-61-84 0-149.5 22t-113.5 62-51.5 47.5-3.5 16.5q0 15 10.5 26t26.5 11q19 0 30-15l13-14q27-29 90.5-56t148.5-27q69 0 123 26t80 57l14 17q11 17 31 17 14 0 25.5-10.5t11.5-26.5q0-31-82.5-92zm477.5-498.5q-1-11.5-3-21.5l-528 159q11 61 88 115.5t167 54.5q114 0 195.5-78t81.5-205q0-13-1-24.5z"},"children":[]}]};exports.u1F608=u1F608;var u1F609={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2018 2158.5Q1724 2277 1300 2277t-718-118.5T288 1880q0-390 115-696.5t340.5-469T1300 552t556.5 162.5 340.5 469 115 696.5q0 160-294 278.5zM1608 1622q-10-11-27-11-22 0-40 27.5t-73.5 57.5-131.5 30q-87 0-149.5-25.5T1097 1646l-15-16q-12-15-30-15-17 0-27 11t-10 25q0 34 90.5 91t227.5 57q118 0 201.5-60t83.5-92q0-14-10-25zm81-262h-16q90-45 130-57t40-40q0-17-11-27t-25-10q-7 0-11 1l-33 12q-87 32-158.5 75.5t-90 60.5-18.5 35q0 15 10.5 26t26.5 11l7-2 41-6q19-2 44-3.5t53-1.5q30 0 62 2.5t61 10.5h6l4 1q12 0 24-9t12-29q0-25-42-37.5t-116-12.5zm-702-86.5q-31-35.5-72-35.5-42 0-71.5 36t-29.5 86 29.5 86 71.5 36q41 0 72-35t31-87q0-51-31-86.5z"},"children":[]}]};exports.u1F609=u1F609;var u1F60A={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2018 2158.5Q1724 2277 1300 2277t-718-118.5T288 1880q0-390 115-696.5t340.5-469T1300 552t556.5 162.5 340.5 469 115 696.5q0 160-294 278.5zM785 1393q0-7 37.5-36t92.5-29q54 0 92 28.5t38 36.5q11 18 32 18 14 0 25.5-10.5t11.5-26.5q0-9-6-18l-13-18q-22-29-70.5-56.5T915 1254t-109.5 27.5T735 1338l-13 18-4 9q-2 5-2 9 0 14 11 25.5t28 11.5q20 0 30-18zm823 229q-10-11-27-11-22 0-39 26.5t-74 57.5-134 31q-85 0-147.5-25t-90.5-56l-17-17q-3-5-11-9t-16-4q-17 0-27 11t-10 25q0 34 90.5 91t228.5 57q118 0 201-60t83-92q0-14-10-25zm270-266l-13-18q-22-29-70.5-56.5T1685 1254q-63 0-111 27.5t-69 56.5l-13 18q-6 9-6 18 0 16 11 26.5t26 10.5q22 0 35-22t47.5-41.5 79.5-19.5q54 0 92 28.5t38 36.5q11 18 32 18 13 0 24-10t11-27q0-10-4-18z"},"children":[]}]};exports.u1F60A=u1F60A;var u1F60B={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2263.5 1908.5Q2315 1976 2315 2022q0 107-136.5 203t-372 149.5T1303 2428q-426 0-721.5-118T286 2031q0-6 1-12l2-12q-2-38-3-76t-1-75q0-440 152.5-752t413-495T1410 426q221 0 442.5 99.5t332 291.5 110.5 444q0 104-18 207.5t-41.5 176.5-23.5 120q0 76 51.5 143.5zm-619.5-663q-4-8.5-11-13.5-11-32-37.5-55t-55.5-23q-45 0-74.5 39t-29.5 86v29q-47 14-91 20t-86 6q-95 0-165-20t-72-20q-14 0-25.5 10t-11.5 26q0 22 21 33.5t97 28.5 159 17q94 0 175.5-23.5t140-58 64.5-44.5 6-22q0-7-4-15.5zM957 973q24 29 66 29 47 0 86.5-41.5T1149 867q0-41-26-69.5t-65-28.5q-49 0-87 42.5T933 905q0 39 24 68zm801-64q-11-11-26-11-32 0-129.5 25t-119 38-21.5 34q0 30 36 37.5t93 25 106 42.5l9 3q3 0 8 1 14 0 24.5-10t10.5-27q0-20-25.5-35.5T1670 1007l-41-14 42-10q29-6 63.5-12t34.5-36q0-15-11-26z"},"children":[]}]};exports.u1F60B=u1F60B;var u1F60C={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2018 2160.5Q1724 2279 1300 2279t-718-118.5T288 1882q0-398 120.5-708.5t346-465.5T1300 553t545.5 155 346 465.5T2312 1882q0 160-294 278.5zm-986-829q-10-11.5-25-11.5-19 0-33.5 20t-44.5 35-66 15-64-13.5-42-30.5l-8-9q-11-17-31-17-16 0-26 11.5t-10 25.5q0 27 53.5 66.5T863 1463q72 0 125.5-39t53.5-67q0-14-10-25.5zm239.5 255Q1240 1528 1186 1528q-40 0-61 34.5t-21 93.5q0 92 38 162.5t81 70.5q33 0 56.5-40.5T1303 1732q0-87-31.5-145.5zm443.5-255q-10-11.5-27-11.5-16 0-32 20.5t-46 35-66 14.5q-39 0-68.5-14.5t-42-35-33.5-20.5q-16 0-26 11.5t-10 25.5q0 5 1.5 10t4.5 9l12 15q21 27 64 49.5t98 22.5q75 0 128-40t53-66q0-14-10-25.5z"},"children":[]}]};exports.u1F60C=u1F60C;var u1F60D={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2263.5 1908.5Q2315 1976 2315 2020q0 164-293 286t-719 122-721.5-118T286 2031q0-6 1.5-14.5t1.5-30.5q0-24-2-58.5t-2-71.5q0-644 338.5-1037T1410 426q223 0 444 100.5T2185 818t110 442q0 179-41.5 316t-41.5 189q0 76 51.5 143.5zM1993 893.5q-50-50.5-119-50.5-38 0-74.5 19t-59.5 51l-3-1q27-42 27-88 0-64-48-114t-119-50q-83 0-133 68.5T1414 901q0 82 30 183.5t63 168.5l24 2q13 0 38 1 214 0 344-69t130-178q0-65-50-115.5zM810 973q53 79 126 142 24-6 101.5-46t129-95 51.5-113q0-46-33-81t-82-35q-39 0-70.5 25.5T990 834h-2q0-5 1-13 0-50-33.5-84.5T874 702q-52 0-84.5 35T757 826q0 68 53 147zm611 384q-35-33-141-33l-20 1q-65 0-133-34.5t-111-34.5q-37 0-59.5 26t-22.5 64q0 76 96 136t206 60q91 0 155.5-31t64.5-89q0-32-35-65z"},"children":[]}]};exports.u1F60D=u1F60D;var u1F60E={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2173 1255q44 139 67.5 296.5T2264 1881q0 108-139 201t-375.5 145-499.5 52q-262 0-497.5-51.5t-375.5-145T237 1881q0-191 27.5-362t76.5-306q-13-59-17.5-102.5T319 1059q0-17 11.5-29.5T359 1017q7 0 13 2l50 12q125-235 333.5-357.5T1250 551q284 0 493 122.5t339 364.5l78-18 8-1q17 0 28.5 11.5t11.5 28.5l-1 16q-2 32-10.5 80.5T2173 1255zm-487 444q-10-11-26-11-17 0-23 8t-55.5 47.5-142.5 71-212 31.5q-16 0-36-2l-75-6q-16 0-22-1-15 0-25.5 10.5T1058 1874q0 32 42 36.5t68.5 6.5 60.5 2q108 0 206.5-26.5T1615 1810t81-85q0-15-10-26zm438-576q0-4 1-8v-6l-791 180-8 1h-160l-9-1-754-181q34 235 134 352t262 117q132 0 215-58t106-131l6-21q3-14 11.5-23t24.5-10l159 6q32 2 40.5 40t37 81.5 92 78.5 170.5 35q195 0 314-118t149-334z"},"children":[]}]};exports.u1F60E=u1F60E;var u1F60F={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2018 2160.5Q1724 2279 1300 2279t-718-118.5T288 1882q0-398 119.5-707.5T753 709t547-156 547 156 345.5 465.5T2312 1882q0 160-294 278.5zm6-923.5q-31-6-105-11.5t-176-5.5q-57 0-107 1.5t-88 3.5l-88 6q-14 2-24 12.5t-10 24.5q0 17 13 26.5t27 9.5l81-5q37-2 85.5-3.5t103.5-1.5h67q5 42 40 69.5t84 27.5q54 0 91-34.5t37-84.5q0-29-31-35zm-934-19.5q-39-5.5-108-10.5t-171-5q-56 0-105 1.5t-86 3.5l-86 6q-14 2-23.5 12.5T501 1250q0 17 12 26.5t28 9.5q6 0 28-2l58-4q35-2 82-3.5t102-1.5h67q4 41 40 70t85 29q56 0 91-34t35-86q0-31-39-36.5zm645 443q-10-11.5-25-11.5-18 0-23 8t-57.5 49-143 71.5T1278 1808q-35 0-69-5t-65-5q-14 0-25 10t-11 26q0 35 50 40.5t120 5.5q123 0 223-31.5t162.5-77.5 72-57.5 9.5-27.5q0-14-10-25.5z"},"children":[]}]};exports.u1F60F=u1F60F;var u1F610={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2292 1820.5q17 51.5 17 90.5 0 161-294 279.5T1296 2309q-262 0-497.5-51.5t-375.5-145T283 1911q-4-35-6-71t-2-73q0-323 144.5-616.5t401.5-457T1410 530q291 0 484.5 97.5t312 295T2325 1359q0 117-25 212t-25 153q0 45 17 96.5zm-1504-665q25 28.5 63 28.5 45 0 82.5-39.5T971 1051q0-39-23-68t-65-29q-49 0-84.5 41t-35.5 90q0 42 25 70.5zm498 434.5q14 0 26.5-9.5t12.5-24.5q0-16-9-27.5t-25-11.5q-108-7-231-28t-198-40l-42-10q-3 0-10-1-14 0-24.5 10t-10.5 27q0 12 7 21.5t20 13.5l46 11q73 19 199.5 40.5T1286 1590zm244-488.5q-27-33.5-68-33.5-43 0-77 38.5t-34 92.5q0 46 27.5 79t68.5 33q45 0 77.5-39.5t32.5-91.5q0-45-27-78.5z"},"children":[]}]};exports.u1F610=u1F610;var u1F611={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2019.5 2160.5Q1725 2279 1300 2279t-719-118.5T287 1881q0-603 259-966t754-363q320 0 546 154.5t347 464 121 710.5q0 161-294.5 279.5zM795 1438h307q16 0 27.5-11.5t11.5-28.5q0-16-11.5-27.5T1102 1359H795q-16 0-27.5 11.5T756 1398q0 17 11.5 28.5T795 1438zm665 465q17 0 28-11t11-28-11-28.5-28-11.5h-331q-17 0-28.5 11.5T1089 1864t11.5 28 28.5 11h331zm328-466q16 0 27.5-11.5t11.5-27.5q0-17-11.5-28.5T1788 1358h-307q-16 0-27.5 11.5T1442 1398q0 16 11.5 27.5t27.5 11.5h307z"},"children":[]}]};exports.u1F611=u1F611;var u1F612={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2017 2159q-295 118-717 118t-717-118-295-279q0-390 115-696.5t340.5-469T1300 552t556.5 162.5 340.5 469 115 696.5q0 161-295 279zm-476.5-405.5Q1469 1722 1381 1722q-96 0-205 38.5t-109 82.5q0 19 14 29.5t35 10.5l21 1q38 0 96-16.5t96-16.5q62 0 127 22.5t92 22.5q23 0 43.5-14t20.5-41q0-56-71.5-87.5zM942 1348q4 41 40 70t85 29q55 0 90.5-34t35.5-87q0-30-33-35.5t-104.5-11T884 1274q-73 0-136 2.5t-122 7.5l-27 2q-15 2-24 11.5t-9 23.5q0 18 11 27.5t28 9.5q5 0 27-2l58-3q35-2 82-3.5t102-1.5h68zm753.5-53.5q-48.5 1.5-85.5 3.5l-87 6q-14 2-23.5 12.5t-9.5 24.5q0 16 11 26t26 10l90-6q38-2 89-3.5t109-1.5h52q4 41 40 70t85 29q54 0 90-35t36-85q0-31-34.5-36t-106.5-10.5-177-5.5q-56 0-104.5 1.5z"},"children":[]}]};exports.u1F612=u1F612;var u1F613={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2291.5 1822.5q17.5 49.5 17.5 90.5 0 160-294 278.5T1296 2310q-424 0-718-118.5T284 1913q-9-70-9-143 0-324 145.5-618.5t402-457T1408 532q453 0 684.5 246t231.5 584q0 110-25 210.5t-25 152.5q0 48 17.5 97.5zM1930 1407q-1 34-56.5 106t-55.5 134q0 43 27.5 72t68.5 29q50 0 75.5-36t25.5-116q0-65-26-144t-44-79q-14 0-15 34zm-621.5 135q-12.5-15-226.5-56.5T814 1444q-17 0-28.5 10.5T774 1483q0 34 52.5 37.5T1019 1548t255 58l11 1q15 0 25.5-12t10.5-26q0-12-12.5-27zm245.5-329l2-15v-15q0-47-26.5-79t-69.5-32-76 36.5-33 91.5q0 46 26 79.5t68 33.5q38 0 68.5-27.5t40.5-72.5zm-765-56.5q24 28.5 63 28.5 45 0 82-38.5t37-92.5q0-41-23.5-69T882 957q-45 0-81 39.5t-36 91.5q0 40 24 68.5z"},"children":[]}]};exports.u1F613=u1F613;var u1F614={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2273.5 1831q21.5 49 21.5 90 0 160-293.5 278.5T1282 2318q-424 0-718-118.5T270 1921q-5-38-6.5-76.5T262 1766q0-333 138.5-633.5t395-468.5T1399 496q163 0 341.5 39T2056 682.5t209.5 267T2338 1288q0 83-16 166.5t-43 154.5-27 127q0 46 21.5 95zM1270 1495l22 1q61 0 106.5-28t53.5-45q5-4 6-9.5t1-11.5q0-15-10-25.5t-27-10.5q-19 0-29 14l-8 8q-12 12-38 23t-58 11q-40 0-70-16.5t-43-35.5l-8-11q-8-19-31-19-17 0-27 11.5t-10 25.5q0 24 49 67.5t121 50.5zm510 235.5q-83-39.5-170-39.5-60 0-115 16.5t-120 52.5-65 65q0 14 10.5 24.5t26.5 10.5q17 0 38-19t84.5-48.5T1607 1763q58 0 112 21.5t73 38 35 16.5q15 0 25.5-10.5t10.5-25.5q0-33-83-72.5zm316-297.5q-11-11-26-11-19 0-29 14l-10 10q-12 12-36 21.5t-54 9.5q-39 0-70-18t-43.5-40-34.5-22q-15 0-26 11t-11 26q0 5 1 8 3 9 19 32t61 50 107 27 112.5-33 50.5-59q0-15-11-26z"},"children":[]}]};exports.u1F614=u1F614;var u1F615={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2268.5 1900q51.5 68 51.5 114 0 168-299.5 291.5T1303 2429q-136 0-270-14.5t-260-45-233-80T370 2180t-76.5-118.5T280 1841q0-644 339.5-1046T1410 393q215 0 440 101t337.5 296 112.5 454q0 111-19.5 219.5t-41.5 177-22 115.5q0 76 51.5 144zM1134 848q0 3-1 8 0 6 5 12.5t14 6.5q18 0 23-22.5t24.5-45.5 41-26 21.5-20q0-10-7-15t-16-5q-49 8-77 49.5t-28 57.5zm-431.5 225q24.5 29 64.5 29 44 0 82-40.5t38-94.5q0-41-24.5-69.5T799 869q-50 0-85.5 42t-35.5 92q0 41 24.5 70zm754.5 424l-100-65q-5-3-10-5t-11-2q-7 0-10 1l-695 170q-14 3-22 14t-8 25q0 16 11 27.5t28 11.5q3 0 9-2l679-165 86 56q10 7 21 7 16 0 27.5-11.5t11.5-28.5q0-21-17-33zm80-542l1-8-251-74q-7 11-9.5 25.5T1275 927q0 53 38 92.5t93 39.5q54 0 90-35t41-69z"},"children":[]}]};exports.u1F615=u1F615;var u1F616={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1758.5 722q268.5 156 423 439t154.5 594q0 32-2 63.5t-5 62.5q0 160-294 278.5T1316 2278q-424 0-718-118.5T304 1881q0-41 21-90.5t21-94.5q0-58-26-126.5t-41-144-15-150.5q0-208 112-376t307-250.5 472-82.5q335 0 603.5 156zM641 1634q14 0 64-26t84-77.5 34-105.5q0-14-10.5-25t-24.5-11q-17 0-27 11.5t-10 26.5l-2 16q-6 32-37 66t-73 47.5-42 42.5q0 15 11.5 25t27.5 10h5zm757 198q13-9 13-29 0-49-72-81.5t-147-32.5q-57 0-95.5 27t-67.5 27q-25 0-68-16t-69-16q-35 0-81.5 34t-46.5 72q0 18 13 28t30 10q33 0 55-40.5t64-40.5q31 0 59 11t57 11q22 0 60.5-18.5t59.5-18.5q59 0 101 24t60 41 45 17q17 0 30-9zm29.5-425.5q-10.5-9.5-24.5-9.5-8 0-13 2l-26 7q-24 6-59 6-45 0-89.5-15.5t-67.5-40-41-24.5q-14 0-25.5 10.5T1070 1369q0 31 72.5 73.5T1304 1485q46 0 90-10.5t44-41.5q0-17-10.5-26.5z"},"children":[]}]};exports.u1F616=u1F616;var u1F617={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2019 2160.5Q1724 2279 1300 2279q-425 0-719-118.5T287 1882q0-396 118.5-705T750 710t550-158q332 0 559 164.5t341 473.5 114 692q0 160-295 278.5zm-1052-1034q37-39.5 37-94.5 0-41-24-71t-66-30q-45 0-81 40t-36 93q0 44 25.5 73t63.5 29q44 0 81-39.5zm140 135.5q-10-7-18-7-115 12-130.5 41t-15.5 55q0 14 4 25.5t4 19.5q0 9-16 27.5t-16 46.5q0 30 22.5 60t29 55.5 44.5 25.5q13 0 23.5-3t10.5-13q0-13-14.5-32.5t-40-35.5-25.5-43q0-20 10-35t29-15l29 1q8 0 15-3.5t7-11.5q0-15-34-25t-34-49q0-21 12-36.5t38-15.5q11 0 22 1.5t20 1.5q17 0 25.5-4.5t8.5-12.5q0-11-10-18zm490-117v-12q0-47-28-81t-68-34q-43 0-76.5 37.5T1391 1149q0 46 27 81t70 35q40 0 72-33t37-87z"},"children":[]}]};exports.u1F617=u1F617;var u1F618={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2419.5 1230.5Q2354 1360 2239 1488l-24 27q-11 8-22 8l-38-9q-15-3-40-10 14 85 22 173.5t8 183.5l-2 100q-2 53-.5 53t1.5 17q0 161-296.5 279T1127 2428q-381 0-665.5-101T129 2080l-9-28q-5-13-5-30 0-46 51.5-113.5T218 1767q0-51-21.5-114.5T155 1481t-20-220q0-251 110.5-443.5t332-292T1019 426q233 0 442 110.5T1832 850q7 0 13-1h14q45 0 88 16.5t75 47.5q19-80 82-129t144-49q94 0 165.5 68.5T2485 991q0 110-65.5 239.5zM2184 1459q98-106 168.5-234.5T2423 993q0-86-48.5-141T2245 797q-70 0-120 51.5T2075 967q0 13 1.5 21t3.5 13l4 10q0 5 1 12 0 14-9 21.5t-20 7.5q-28 0-36-34.5t-53.5-72T1860 908q-68 0-121 50.5t-53 120.5q0 64 60.5 142t188.5 143 249 95zm-726-648.5q-38-41.5-85-41.5-43 0-67.5 29.5T1281 867q0 54 40 94.5t86 40.5q42 0 65.5-27.5T1496 905q0-53-38-94.5zM940 1031q11-2 19-11t9-22q0-19-13-32t-117.5-40.5T699 898q-15 0-26 11t-11 26q0 14 8.5 24t22.5 12l33 5q31 5 77 15l-35 12q-36 12-62.5 28t-26.5 36q0 17 12.5 26t24.5 9q5 0 9-1l8-1q43-23 94.5-39.5T921 1035zm532 254q-17-16-17-17 0-4 3.5-9.5t3.5-15.5q0-44-52-53.5t-68-14.5l-26-10q-13-4-27-4-8 0-17 3t-9 11q0 13 24 24t68.5 18 44.5 33q0 8-5.5 14.5T1383 1277l-11 12q-6 6-6 13 0 8 5.5 11t12.5 3q6 0 12.5-1.5t14.5-1.5 16.5 6.5 8.5 17.5q0 2-1 3.5t-1 2.5q-6 24-16 42t-10 41q0 11 5.5 19.5t19.5 8.5q18 0 28-32.5t19-53 9-41.5q0-26-17-42z"},"children":[]}]};exports.u1F618=u1F618;var u1F619={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2268.5 1899.5Q2320 1968 2320 2014q0 168-299.5 291.5T1303 2429q-136 0-269.5-14.5T774 2369t-234-80.5-170.5-109-76-118.5-13.5-220q0-444 157.5-763t416-502T1411 393q217 0 441 101t336 296 112 454q0 111-19.5 219.5t-41.5 177-22 115.5q0 75 51.5 143.5zM807 951l7-6q9-9 27.5-17t37.5-8q37 0 60.5 24t29 59 35.5 35q15 0 26-10t11-27q0-46-44.5-100.5T879 846q-34 0-65.5 14.5T765 890l-10 10q-11 11-11 26 0 14 12 25t25 11q15 0 26-11zm250 233q-13-8-25-8-22 0-46.5-4t-47.5-4q-39 0-66 24.5t-27 62.5l1 11v14q0 19-11 25t-25 25-14 46q0 29 24 67.5t24 61.5q0 20 19.5 31t43.5 11q14 0 19-4t5-13q0-33-40-78t-40-71q0-14 9.5-27.5T888 1340q11 0 22 4.5t25 4.5q10 0 13.5-4.5t3.5-10.5q0-12-28.5-27.5T895 1266q0-23 11.5-43t32.5-20q13 0 28 3.5t30 7.5l26 8q12 4 18 4 13 0 21-4.5t8-13.5q0-16-13-24zm631 62q0-85-53.5-141t-130.5-56q-42 0-90 20t-48 50q0 17 11.5 28t26.5 11q10 0 39-16t60-16q53 0 81 38t28 87q0 19 11 29.5t28 10.5q15 0 25.5-10t11.5-25v-10z"},"children":[]}]};exports.u1F619=u1F619;var u1F61A={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2018 2158.5Q1724 2277 1300 2277t-718-118.5T288 1880q0-390 115-696.5t340.5-469T1300 552t556.5 162.5 340.5 469 115 696.5q0 160-294 278.5zM723.5 1105q-33.5-35-86.5-35-56 0-100.5 42.5T492 1211q0 49 35 84t87 35q58 0 100.5-42t42.5-100q0-48-33.5-83zm32.5-101q0 5 18.5 31t58.5 51 96 25q52 0 93.5-27t41.5-35q9-9 9-23t-11.5-25-25.5-11q-18 0-39.5 23.5T929 1037q-36 0-63.5-17.5t-40.5-42-36-24.5q-17 0-26.5 12.5T753 992q0 3 1 6zm350.5 256.5q-9.5-6.5-17.5-6.5l-8 1q-27 4-53 5.5t-47.5 13.5-30 31-8.5 47q0 8 4.5 20t4.5 23q0 9-16 27t-16 48q0 18 7 32.5t16 27.5l17 26q7 12 13 33t43 21q12 0 23-3.5t11-13.5q0-29-40.5-55.5T968 1484q0-21 11.5-36.5t31.5-15.5h12q6 0 14 1 8 0 15-3t7-12-11-14l-23-11q-12-6-23.5-16.5T990 1345q0-20 12-36t38-16q11 0 22 1.5t22 1.5q18 0 25-5t7-13q0-11-9.5-17.5zM1547 1187q35-17 54-36l10-11q8-11 8-22 0-14-10.5-25.5T1582 1081q-15 0-43 24.5t-69 24.5q-51 0-81.5-29t-30.5-37q-11-21-35-21-17 0-26 12t-9 26q0 4 2 12l9 16q20 36 67.5 65.5T1470 1204q42 0 77-17zm262.5 100q-50.5-47-116.5-47-72 0-119.5 49.5T1526 1404q0 70 50 118t116 48q68 0 118-48.5t50-117.5q0-70-50.5-117z"},"children":[]}]};exports.u1F61A=u1F61A;var u1F61B={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2019 2160.5Q1724 2279 1300 2279q-425 0-719-118.5T287 1882q0-397 119-706t345-466.5T1300 552t549.5 157.5T2195 1176t119 706q0 160-295 278.5zM987.5 1447q29.5-36 29.5-85t-29-86-73-37q-42 0-72 36.5t-30 86.5 30.5 85.5T915 1483q43 0 72.5-36zm679.5 315q11 0 20-8t9-19q0-31-38-33.5t-130.5-8-197.5-5.5q-160 0-276 13t-129.5 22-13.5 25q0 13 9.5 21t20.5 8q5 0 7-1l42-7q40-7 121-14 10 24 22 114t53.5 136 118.5 46q78 0 120-47t54-138 23-115l79 4q40 3 83 7h3zm91-486.5q-30-36.5-73-36.5t-72 37-29 86 29.5 85 71.5 36 72.5-35.5 30.5-85.5-30-86.5z"},"children":[]}]};exports.u1F61B=u1F61B;var u1F61C={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2263.5 1908q51.5 67 51.5 112 0 164-293 286t-719 122-721.5-118T286 2031q0-6 1-12l2-12q-2-38-3-76t-1-75q0-440 152.5-752t413-495T1410 426q223 0 444.5 101t331 292.5T2295 1261q0 107-18.5 211.5T2235 1647t-23 118q0 76 51.5 143zm-796-654q-6.5-6-14.5-6-6 0-34.5 6.5t-97.5 6.5q-146 0-263.5-32.5T940 1187q-8-4-13-4-8 0-15 7t-7 16q0 14 23 25.5t61 22.5q-63 16-108 75t-45 125q0 55 30 93t79 38q33 0 70.5-21.5t80-65 48-50.5 43-45.5 89-69 84-30.5 69.5-6q13-3 29-6.5t16-21.5q0-9-6.5-15zm-509-279.5Q984 1004 1023 1004q47 0 86-41.5t39-95.5q0-42-25-70t-64-28q-49 0-87.5 42T933 905q0 40 25.5 69.5zM1758 909q-11-11-26-11-33 0-135.5 27T1478 964.5t-16 30.5q0 14 8 23.5t22 12.5l24 5q30 6 84 24.5t97 39.5l9 3q3 0 8 1 14 0 24.5-11t10.5-26q0-20-25.5-35.5T1670 1007l-41-14q53-13 96.5-19.5T1769 935q0-15-11-26z"},"children":[]}]};exports.u1F61C=u1F61C;var u1F61D={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2263.5 1908q51.5 67 51.5 112 0 166-295 287t-717 121q-426 0-721.5-118T286 2031q0-6 1-12l2-12q-2-38-3-76t-1-75q0-440 152.5-752t413-495T1410 426q223 0 444.5 101t331 292.5T2295 1261q0 107-18.5 211.5T2235 1647t-23 118q0 76 51.5 143zM861.5 902.5Q872 913 886 913q76 2 149.5 19t75.5 17q14 0 25.5-9.5T1148 913q0-9-5-19t-61-64.5T973 736l-20-15q-8-5-20-5-16 0-26.5 10.5T896 753q0 19 15 29 52 36 88 68-26-4-54-6.5t-57-2.5q-16 0-26.5 10T851 876q0 16 10.5 26.5zm608 406.5q4.5-6 4.5-14 0-9-7-14.5t-15-5.5h-2q-23 4-66 4-109 0-238.5-32T962 1182l-15-8q-6-6-14-6t-14.5 6.5-6.5 15.5q0 14 21 26.5t57 28.5q-69 10-119.5 71T820 1446q0 51 30.5 87t76.5 36q77 0 187.5-107t222.5-140q12 0 23 1h22q34 0 54.5-3t21.5-3q7-2 11.5-8zM1747 987q13 0 22.5-10.5t9.5-24.5q0-18-11-27.5t-27-9.5q-44 0-156.5 23.5t-126 37-13.5 29.5q2 14 8.5 22.5t76 29T1650 1104t64 27q15 0 26-10t11-26q0-19-29-38.5t-71-35.5l-39-15q55-10 94-15z"},"children":[]}]};exports.u1F61D=u1F61D;var u1F61E={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2277.5 1740q3.5 19 13.5 52l12 41q5 21 5 49 0 161-295 279t-717 118q-423 0-718-118t-295-279q-4-35-6-70.5t-2-72.5q0-324 145.5-618.5t402-456.5T1408 502q453 0 685 245.5t232 583.5q0 107-25.5 209t-25.5 155q0 26 3.5 45zM1251 1357q0 55 30 91t71 36q44 0 79-39.5t35-93.5q0-26-8.5-48t-21.5-39q-38 26-82 35t-92 9l-6 16q-2 7-3.5 15.5t-1.5 17.5zm651 411q-6-10-56-46t-111-54.5-117-18.5q-67 0-134 22.5t-133.5 70-66.5 55.5q-11 11-11 24 0 15 11 26t26 11 27-12l25-23q40-37 109.5-69.5T1615 1721q69 0 131 29t84.5 52 42.5 23q14 0 24.5-9.5t10.5-27.5q0-10-6-20zm145-318l1-9v-9l-1-19q-56-14-92.5-37.5T1896 1323q-28 17-45.5 47.5T1833 1442q0 50 30 86t71 36q42 0 73.5-33t39.5-81z"},"children":[]}]};exports.u1F61E=u1F61E;var u1F61F={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2268.5 1898.5Q2320 1967 2320 2013q0 170-297.5 292.5T1303 2428q-136 0-269.5-14.5T774 2368t-234-80.5-170.5-109-76-118.5-13.5-220q0-444 157.5-763t416-502T1411 392q218 0 441.5 101T2188 789.5t112 452.5q0 99-16.5 203.5T2233 1660q-16 52-16 94 0 76 51.5 144.5zm-949-996q4.5 6.5 15.5 6.5 8 0 13.5-5.5t5.5-13.5q0-41 14.5-65.5t30-31T1414 774q0-8-6-14t-14-6q-19 0-49 36t-30 96q0 10 4.5 16.5zM1138 763q14 25 14 52 0 18-6.5 30t-6.5 18q0 8 5.5 13.5t13.5 5.5q16 0 24.5-24.5t8.5-43.5q0-24-14-62t-34-38q-8 0-13.5 6t-5.5 14q0 4 14 29zm-303 70q-4 16-4 35 0 53 30 88t74 35q49 0 86-43t37-101q0-46-24-79-28 16-62 25t-82 9q-23 0-42-3-4 8-7 16zm669.5 724.5q-6.5-16.5-215-110T959 1354q-73 0-118.5 28.5T795 1474q0 22 11 41.5t37 19.5q15 0 29-11t14-30q0-16-12-28 0-11 19-22t64-11q82 0 218 53t250 114l28 15q10 5 19 5 17 0 28-12t11-27q0-7-6.5-23.5zM1632 973q-54-20-91-48t-59-60q-32 16-54.5 51t-22.5 81q0 51 29.5 87t73.5 36q49 0 86.5-43t37.5-104z"},"children":[]}]};exports.u1F61F=u1F61F;var u1F620={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2018 2160.5Q1724 2279 1300 2279t-718-118.5T288 1882q0-398 120.5-708.5t346-465.5T1300 553t545.5 155 346 465.5T2312 1882q0 160-294 278.5zM1052 1455q75-56 85-116l-527-157q-5 22-5 45 0 119 79 201.5t201 82.5q92 0 167-56zm549 369q17-11 17-31 0-33-84-92t-200-59q-50 0-97 9t-90.5 26-84 50-40.5 41q-7 12-7 21 0 14 10.5 25.5t26.5 11.5q9 0 16.5-4.5t13.5-12.5l21-20q30-28 92-51t141-23q68 0 121.5 26t79.5 55l14 17q11 17 31 17 5 0 10-2zm412-620.5q-1-11.5-3-21.5l-528 157q10 59 87.5 115.5T1740 1511q115 0 194.5-80t79.5-203q0-13-1-24.5z"},"children":[]}]};exports.u1F620=u1F620;var u1F621={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2423 1706.5q-31 98.5-76.5 168.5t-87.5 112.5-64 72-92 74-193.5 86.5-289.5 65q-152 22-320 22-333 0-591.5-82T377 2021q-35-21-97-100t-98-187.5-36-234.5q0-158 73-303t171-236l28-27q137-188 379-303t503-115q111 0 215.5 20t205 59 185 91 146 106.5 94 95.5 74.5 83 87 105 76.5 130.5 51 140T2454 1499q0 109-31 207.5zm-290.5-453Q2072 1197 1992 1197q-85 0-142 59t-57 139q0 84 60.5 140.5T1993 1592q80 0 140-58.5t60-140.5q0-83-60.5-139.5zm-1354 2.5q-57.5-59-141.5-59-78 0-139.5 56T436 1393q0 80 57.5 139.5T636 1592q80 0 140-59t60-140q0-78-57.5-137zM1418 974q13 50 79.5 91.5T1640 1107q99 0 174-74t75-177q0-20-2.5-38.5T1880 785zM749 785q-8 29-8 70 0 102 72.5 177t175.5 75q76 0 143-42.5t80-90.5zm934 404q-9-10-21-10-23 0-49.5 41t-41.5 86q-52-24-113-35t-128-11q-91 0-163.5 14.5T1060 1310q-10-37-38.5-84t-53.5-47q-13 0-22 10.5t-9 21.5q0 15 20 36.5t36.5 66.5 16.5 89q0 35-7.5 59.5T993 1492l-2 6q0 3-1 6 0 14 9 23.5t23 9.5q27 0 39-43t12-90v-23q8 0 68-23.5t195-23.5q103 0 162.5 22t57.5 22q0 6-1 17 0 56 11.5 90.5t11.5 33.5q10 18 29 18 14 0 22.5-10t8.5-21q0-13-10-34.5t-10-67.5q0-44 17.5-88.5t37-66.5 19.5-38q0-12-9-22z"},"children":[]}]};exports.u1F621=u1F621;var u1F622={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1793 618q255 161 399.5 462t144.5 644q0 42-1.5 81t-6.5 77q0 160-293 278.5T1318 2279q-424 0-718-118.5T306 1882q0-42 21-91.5t21-95.5q0-55-28.5-131.5t-43-156T262 1247q0-177 70.5-334t207-267.5T857 496t346-39q335 0 590 161zm-964 810l11-18q4-7 4-16 0-14-10.5-25.5T807 1357q-20 0-36.5 25t-46 40.5T656 1438q-32 0-58.5-13t-38-27.5T530 1383q-17 0-27 11t-10 25q0 12 7 22l12 12q18 20 57 38.5t87 18.5q61 0 107-26.5t66-55.5zm362 273.5q-100-49.5-200-49.5-89 0-171.5 39.5T737 1764q0 14 11.5 25t25.5 11q16 0 35-16t71.5-38 112.5-22q75 0 140.5 30.5t84 48.5 36.5 18q15 0 26-11t11-26q0-33-100-82.5zm309-355.5v-8q0-14-10-25.5t-27-11.5q-20 0-32 20.5t-44.5 41-75.5 20.5q-35 0-63-13.5t-40-28-30-14.5q-15 0-26 10t-11 26q0 11 7 21l12 12q20 21 60 40.5t88 19.5q46 0 86-14.5t72-49 34-46.5zm32.5 172.5Q1470 1468 1450 1468q-14 0-14 16 0 29 7 54t7 52q0 52 21 89.5t62 37.5q37 0 49.5-29.5t12.5-56.5q0-62-62.5-112.5z"},"children":[]}]};exports.u1F622=u1F622;var u1F623={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2294 1753.5q-36 135.5-79.5 230t-187 164T1729 2246t-254 35-175 6q-216 0-402.5-36t-311-96.5-170-121-96-218.5-50.5-327q0-272 124.5-482.5t376.5-341T1300 534q280 0 533.5 133t375 344 121.5 477q0 130-36 265.5zM1629 1414q-52-65-127-105t-160-40q-127 0-236 94t-109 128q0 14 11 25.5t28 11.5q22 0 49-40t100-93.5 157-53.5q83 0 153 48.5t108 111.5l9 17q5 9 13.5 15t19.5 6q16 0 26-11t10-26q0-23-52-88zm-778-263q26-8 55-10t57-2q52 0 77 3t34 5l12 2q7 2 10 2 15 0 26.5-11.5t11.5-26.5q0-40-127.5-104.5T857 944q-4 0-12-1-14 0-24.5 9T810 978q0 11 6.5 21t17.5 14l11 3 27 10q17 7 39 17t46 22q-80 0-116 12t-36 38q0 16 11.5 26.5T842 1152zm831-86q77-39 112-47.5t35-37.5q0-18-10-27.5t-24-9.5q-9 0-13 1-22 0-150 66t-128 104q0 17 12.5 27t25.5 10q8 0 39-6t94-6q28 0 57 2t56 10h5l4 1q13 0 24.5-9t11.5-28q0-25-36-37.5t-115-12.5z"},"children":[]}]};exports.u1F623=u1F623;var u1F624={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2424 1698q-27 87-68 156t-88.5 117-69.5 78.5-89 75-184 86-279 67-346 25.5q-334 0-591-82t-330-203l-25-22q-85-73-145-204t-60-294q0-98 24.5-182.5T237 1160t89-130 68.5-73 59.5-67 123.5-121 195-126 248.5-92 279-34q82 0 162.5 11.5t163 35 156 56.5 139 75 118.5 86.5T2140 884t42 50 40.5 37.5 85.5 101 64.5 106 44.5 109 26.5 105 7.5 105.5q0 113-27 200zm-1546-41q-25-44-70-70 53-67 81.5-121.5T933 1356l15-56q-76 75-143 118t-122 63q-20-48-68.5-80.5T511 1368q-77 0-134 55t-57 132q0 24 6.5 47t17.5 44q-17 17-23.5 44.5T314 1743q0 75 54.5 131.5T504 1931q53 0 100-28 26 17 51.5 25.5t56.5 8.5q80 0 135.5-56t55.5-131q0-49-25-93zm177-710q-42-12-84-39t-75-56q-26 21-42 57t-16 80q0 64 33 110.5t78 46.5q44 0 77-45t33-112q0-23-4-42zm542 375q-53-48-117.5-74t-150.5-26q-95 0-165.5 26.5T1062 1304l-17 17q-8 11-8 23 0 14 10.5 25t26.5 11 27-12l14-13q25-21 78.5-40.5T1315 1295q73 0 129.5 19.5t81.5 41.5l15 14q11 13 29 13 12 0 24-10t12-27q0-13-9-24zm132-222.5q33-46.5 33-110.5 0-44-16-80t-42-57q-33 29-75 56t-84 39q-4 19-4 42 0 67 33 112t77 45q45 0 78-46.5zm578 589.5q-7-29-21-43 11-21 17.5-43.5t6.5-45.5q0-79-57.5-134t-133.5-55q-56 0-103.5 32t-70.5 81q-54-20-120-63t-143-118l12 46q11 49 42.5 111t85.5 130q-47 26-71 70t-24 93q0 77 57 132t134 55q54 0 107-34 47 28 101 28 77 0 132.5-54.5T2314 1743q0-25-7-54z"},"children":[]}]};exports.u1F624=u1F624;var u1F625={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2255.5 1743.5q21.5 48.5 21.5 88.5 0 158-289 273.5T1284 2221q-416 0-704-116t-288-273q-3-31-5-61.5t-2-61.5q0-303 150-580t413.5-430.5T1442 545q435 0 654 200t219 493q0 71-14.5 146t-40.5 144-26 122q0 45 21.5 93.5zM832 951.5q-2-2.5-10-2.5-77 0-151 81t-74 158q0 31 20 56t54 25q35 0 53-19t26.5-52 10-71 21.5-74 36-57 16-32q0-10-2-12.5zm623.5 450q70.5-41.5 70.5-71.5 0-15-10.5-26t-26.5-11q-18 0-39 22.5t-64.5 39-90.5 16.5q-42 0-83-13-4 0-12-1-14 0-25.5 9.5T1163 1393q0 30 40.5 40t92.5 10q89 0 159.5-41.5zm296 206Q1692 1579 1612 1579q-165 0-233 48.5t-68 102.5q0 31 29 63.5t61 32.5l10-1q35-3 96-61.5t116-58.5q35 0 68 24.5t57 24.5q26 0 44.5-21t18.5-47q0-50-59.5-78.5zM1988 1558q0-32-39.5-44t-71-45.5-35.5-64.5l-2-17q0-17-12-27t-28-10-25 11-9 25q0 52 34 101.5t82 76.5 70 27q17 0 26.5-11.5t9.5-21.5z"},"children":[]}]};exports.u1F625=u1F625;var u1F626={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2268.5 1900q51.5 68 51.5 114 0 170-297.5 292.5T1303 2429q-136 0-269.5-14.5T774 2369t-234-80.5-170.5-109-76-118.5-13.5-220q0-645 340-1046.5T1410 393q216 0 442 102t337 296.5 111 452.5q0 111-19.5 219.5t-41.5 177-22 115.5q0 76 51.5 144zM1461 880q-33 16-55 52.5t-22 81.5q0 52 30.5 87t73.5 35q47 0 84.5-43.5T1610 989q-54-22-89-45.5t-60-63.5zm-162 10q0 7 5.5 13.5t14.5 6.5q17 0 23-23.5t24-45 40-25 22-19.5q0-11-7-16t-15-5q-50 8-78 51t-28 59zm-213-147q22 26 22 58 0 16-3 20t-3 12 5 13.5 14 5.5q12 0 18.5-12t7.5-25v-14q0-29-13.5-56.5T1106 702l-9-9q-7-5-13-5-7 0-13.5 5.5T1064 709q0 8 22 34zm-259 72q-16 32-16 71 0 50 29.5 85.5T913 1007q48 0 86-42.5t38-101.5q0-23-6.5-43t-17.5-36q-27 15-60 24t-79 9h-24.5l-22.5-2zm677 575.5Q1354 1247 1171 1247q-111 0-204 47.5t-147.5 136T765 1601q0 64 41.5 108t100.5 44q19 0 38-4l77-14q19-3 39-3 48 0 107.5 29t137.5 91.5 159 62.5q79 0 134-55t55-152q0-174-150-317.5z"},"children":[]}]};exports.u1F626=u1F626;var u1F627={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2296 1812q17 53 17 92 0 164-296 284t-721 120q-268 0-504.5-53.5t-374.5-148T279 1904q-4-35-6-71t-2-73q0-330 146.5-629.5t404-464T1409 502q454 0 687 249t233 594q0 117-25 213t-25 156q0 45 17 98zM1210 936q0 2-1 5 0 7 5 13t14 6q18 0 22-20t23.5-44.5 42-28T1338 845q0-8-6-13t-13-5h-4q-49 8-77 51t-28 58zm-170.5-132q20.5 26 20.5 57 0 16-3.5 22.5T1053 896q0 8 6 14t14 6q12 0 19-19t7-38q0-25-11-50t-27-44l-8-9q-5-5-13-5-9 0-15 6t-6 13q0 8 20.5 34zM766 1025q30 35 73 35 49 0 86.5-43T963 914q0-44-25-78-26 17-59 25.5t-79 8.5h-24.5l-22.5-2q-9 16-13 33.5t-4 36.5q0 52 30 87zm571 793q4-22 6.5-45t2.5-49q0-163-111.5-271.5T958 1344q-138 0-251.5 86.5T575 1626l-2 23zm199-776q-54-20-91-48.5t-59-60.5q-32 16-54 52.5t-22 81.5q0 51 29 86t74 35q48 0 85.5-42t37.5-104zm411.5 744.5q22.5-33.5 22.5-79.5 0-89-28-173t-42-84q-16 0-66 85.5t-50 162.5q0 50 28 86t75 36q38 0 60.5-33.5z"},"children":[]}]};exports.u1F627=u1F627;var u1F628={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2291 1818q17 51 17 89 0 163-297.5 281T1296 2306q-419 0-716-118t-297-281q-4-35-6-70t-2-72q0-322 144-615.5T820 692t588-164q73 0 155 7.5t163 29.5v794q0 11 7 18t18 7q10 0 17-7t7-18V579q23 6 44.5 14.5T1862 611v748q0 11 7 18t17 7q11 0 18-7t7-18V636q23 13 44.5 26t41.5 28v669q0 11 7 18t18 7 17-7 6-18V729q25 20 46.5 42t41.5 46v542q0 11 7 18t18 7q9 0 16-7t7-18V883q69 102 106.5 222.5T2325 1358q0 106-25.5 208t-25.5 155q0 46 17 97zm-1020-407.5Q1154 1307 1003 1307q-142 0-238.5 92T668 1605q0 71 41.5 115.5T834 1765q23 0 45.5-1.5t45.5-1.5q31 0 62 6t58 19l56 27q28 14 56.5 24.5t60.5 10.5q75 0 122.5-60t47.5-145q0-130-117-233.5zm618 506.5q38 0 60-31.5t22-79.5q0-79-22-151t-36-94.5-52 35-59 114.5q-16 44-16 88 0 51 25.5 83t70.5 36h7zm-359.5-818.5Q1503 1066 1462 1066q-44 0-77.5 38t-33.5 94q0 45 27.5 78t68.5 33q44 0 76.5-38.5t32.5-94.5q0-45-26.5-77.5zM789 1152q25 29 64 29 45 0 81.5-38.5T971 1050q0-39-23-69t-64-30q-47 0-83.5 40t-36.5 93q0 39 25 68z"},"children":[]}]};exports.u1F628=u1F628;var u1F629={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1761 706q268 157 421.5 438.5T2336 1737q0 32-2 63t-5 63q0 161-294 279.5T1316 2261q-423 0-717.5-118.5T304 1863q0-41 21-90.5t21-94.5q0-59-26.5-127.5t-41-144T264 1257q0-208 112-375.5t307-250 472-82.5q338 0 606 157zm-618.5 670.5Q1215 1420 1304 1420q47 0 78-8l33-8q23-11 23-36 0-17-11-26.5t-26-9.5q-8 0-30.5 7.5t-65.5 7.5q-47 0-92-16.5t-65.5-39.5-40.5-23q-14 0-25.5 9.5T1070 1304q0 29 72.5 72.5zm-329.5-40q-10-10.5-27-10.5-15 0-25 10.5t-10 26.5q0 39-36.5 79.5t-76 51T599 1534q0 17 11 27t26 10q12 0 64-25.5t87.5-78T823 1361q0-14-10-24.5zm612 321.5q-49-52-125-52-66 0-144 50t-122 50q-18 0-81-26.5T849 1653q-46 0-86 31.5t-40 80.5q0 65 40 104t81 39q50 0 91-16.5t99-16.5q51 0 110.5 36.5T1270 1948q106 0 155-53.5t49-116.5q0-68-49-120z"},"children":[]}]};exports.u1F629=u1F629;var u1F62A={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2263.5 1908.5Q2315 1976 2315 2022q0 165-295 285.5T1303 2428q-428 0-722.5-117.5T286 2031q0-6 1-12l2-12q-2-38-3-76t-1-75q0-646 339.5-1038T1410 426q215 0 438 99.5t335 291 112 444.5q0 104-17.5 207t-41.5 176.5-24 120.5q0 76 51.5 143.5zm-750.5-54q65-41.5 65-123.5 0-132-121-225.5t-253-93.5q-115 0-199 74.5T921 1672q0 73 55 125t159 75.5 194 23.5q119 0 184-41.5zM928 1229l28-35q16-20 37.5-42t51.5-46q-66-2-137-70t-149-68-131 55-53 130q0 71 56.5 118.5T763 1319q48 0 87.5-22t77.5-68zm-20-425v4q0 3 2 5 12 48 63.5 92t129.5 44q31 0 61-10t43-20l9-7q7-5 10-12.5t3-15.5q0-14-11-25.5t-25-11.5q-13 0-23 9-2 0-20.5 10t-48.5 10q-44 0-76.5-24t-44-54-36.5-30q-19 0-27.5 11.5T908 804zm871 287q7-5 10-12t3-15q0-14-11-25.5t-25-11.5q-12 0-23 8-37 21-66 21-42 0-72-22.5t-42.5-53T1515 950q-15 0-26 11t-11 25q0 31 50.5 86.5T1667 1128q31 0 60-9.5t43-20.5z"},"children":[]}]};exports.u1F62A=u1F62A;var u1F62B={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2178 2088q-134 93-371 147.5t-507 54.5q-420 0-716-119t-296-283q0-662 259-1003t753-341 753 337.5T2312 1888q0 107-134 200zm-378.5-236.5Q1658 1805 1479 1805q-225 0-379.5 73.5T945 2042q0 48 63 76.5t195 36.5l71 4q39 2 84 2 260 0 421.5-43t161.5-132q0-88-141.5-134.5zM881 968q-9-44-17-44-23 0-96.5 86.5T694 1177q0 42 26.5 74t67.5 32q44 0 73-51t29-164q0-56-9-100zm59 712l11-1q42-14 87-19t83-5 62 3 35 3q15 0 25-11t10-25q0-21-24.5-39.5t-95.5-56-156-62.5l-33-10q-3-2-10-2-14 0-25.5 11t-11.5 26q0 33 46.5 42t133.5 50q-93 5-133.5 20t-40.5 40q0 14 11.5 25t25.5 11zm1022-71q14 0 26-9.5t12-26.5q0-24-25-34t-61-10h-65q65-36 102-50.5t37-40.5q0-17-11.5-27t-25.5-10h-6l-7 2-28 12q-69 30-151 86t-82 86q0 15 11.5 25.5t25.5 10.5h5q2 0 4-2l14-3q23-5 64.5-10.5t78.5-5.5q20 0 39 2t37 5h6z"},"children":[]}]};exports.u1F62B=u1F62B;var u1F62C={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2335.5 1705.5q-31.5 115.5-98 221t-121 152-160 94.5-275.5 81-382 33q-260 0-468-52t-318.5-130.5-194.5-265-84-387.5q0-250 135.5-465.5t392-349T1299 504q287 0 547.5 138.5t390.5 356 130 461.5q0 130-31.5 245.5zM822 1376q-54 57-89.5 111.5T674 1616l21-6 27-6q21-4 47.5-9t52.5-9v-210zm-17-298.5q73 64.5 176 64.5 98 0 162-61t64-134q0-19-5-33t-17-14q-17 0-27.5 26t-44.5 26q-14 0-21-3l-15-6-276-126-8-3q-4 0-9-1-27 0-39.5 27T732 913q0 100 73 164.5zm246 155.5q-49 17-90 39.5t-75 48.5v257q35-5 77-9l88-8v-328zm229-41q-94 3-165 22v343q38-2 79-3l86-2v-360zm229 21q-38-9-79-14.5t-86-6.5v360l86 2q41 0 79 3v-344zm229 106q-35-26-76-48t-89-39v329q47 3 88 7t77 9v-258zm138-481.5q-14-24.5-39-24.5-5 0-8.5 1t-7.5 3l-276 126-14 5q-9 4-23 4-34 0-44.5-26t-27.5-26q-11 0-16.5 14t-5.5 33q0 76 65 135.5t161 59.5q106 0 178-66t72-163q0-51-14-75.5zm-74 748.5l61 10q23 4 39 7.5t28 6.5l23 6q-27-76-64-134.5t-87-108.5v213z"},"children":[]}]};exports.u1F62C=u1F62C;var u1F62D={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2263.5 1908.5Q2315 1975 2315 2022q0 164-294.5 285T1303 2428q-426 0-721.5-118T286 2031q0-6 1-13l2-13q-2-38-3-75.5t-1-75.5q0-643 339.5-1035.5T1410 426q215 0 438 99.5t335 291 112 444.5q0 103-17.5 206t-41.5 177.5-24 122.5q0 75 51.5 141.5zM1536 1238q-82-118-200-118-17 0-31 3l-56 14q-14 4-28 4-49 0-109.5-52T993 1037q-89 0-172.5 104.5T737 1334q0 56 40.5 94.5T882 1467q24 0 48.5-3t47.5-3q66 0 125 37t104.5 99 97.5 82.5 106 20.5q99 0 153-57.5t54-160.5q0-126-82-244zm127-226q27-2 50-3h84q14 0 24.5-10t10.5-24q0-27-17-33.5t-68-6.5h-35q-89 2-161 19.5t-72 49.5q0 22 15 29.5t83 26 114 48 56 29.5q13 0 24-11t11-28q0-19-13-29t-43-26.5-63-30.5zM873.5 876q10.5 10 26.5 10 78 0 152 30t82 30q14 0 25.5-11.5T1171 909q0-15-36.5-60t-106-105.5T936 683q-15 0-26 10t-11 26q0 19 17 30l35 25q26 19 64 54-27-6-56-10.5t-59-4.5q-16 0-26.5 11T863 850q0 16 10.5 26zm1096 551.5q15.5-21.5 15.5-62.5 0-42-33.5-80.5T1855 1217l-15-6q-10-3-18-3t-9.5 5-1.5 11q0 27 9.5 52.5t13.5 51.5l7 31q8 40 29.5 65t54.5 25q29 0 44.5-21.5zM762 993l18-28q9-14 16-27t7-21q0-5-4.5-8.5T784 905q-74 0-136 40.5T586 1053q0 29 18.5 44t42.5 15h7q22 0 46.5-24t37.5-51.5 24-43.5zm-236 375q0-14-1.5-26t-1.5-25q0-17 1.5-32.5t1.5-32.5v-11q0-10-3.5-18t-10.5-8q-27 0-77 56.5T385 1380q0 34 17.5 64t49.5 30q33 0 52-26t22-66v-14zm1532.5 308.5Q2036 1638 1997 1604l-15-13q-9-8-16-8-16 0-17.5 53.5t-5 68-3.5 44.5q0 43 18 70t53 27q32 0 51-33.5t19-62.5q0-35-22.5-73.5z"},"children":[]}]};exports.u1F62D=u1F62D;var u1F62E={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2180 2076.5q-137 94.5-373.5 148T1300 2278q-265 0-500-52t-375.5-147T284 1875q0-613 259.5-981.5T1300 525q317 0 544 154.5t350 469 123 726.5q0 107-137 201.5zm-1217-741q32-39.5 32-88.5 0-41-27-67.5t-62-26.5q-44 0-80 37t-36 88q0 45 29 71t66 26q46 0 78-39.5zm429.5 329Q1353 1622 1300 1622q-54 0-92.5 43t-38.5 102q0 55 37 90t94 35q56 0 94-34.5t38-90.5q0-60-39.5-102.5zm287.5-581q-37-35.5-79-35.5-35 0-61.5 26.5T1513 1140q0 55 32 92.5t76 37.5q39 0 67.5-26.5t28.5-71.5q0-53-37-88.5z"},"children":[]}]};exports.u1F62E=u1F62E;var u1F62F={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2268.5 1899q51.5 68 51.5 114 0 111-133.5 207t-371 152-512.5 56q-136 0-270-14.5t-260-45-233-80T370 2179t-76.5-118.5T280 1840q0-645 340-1046t790-401q218 0 441.5 100.5t336 295.5 112.5 454q0 111-19.5 219.5t-41.5 177-22 115.5q0 76 51.5 144zM1430 925.5q29 28.5 63 28.5 46 0 82.5-37.5T1612 830q0-40-25.5-66.5T1521 737q-44 0-82 38.5t-38 83.5q0 38 29 66.5zm-569-74q26 27.5 70 27.5 47 0 77.5-39t30.5-89q0-39-27-66.5T949 657q-44 0-79 36.5T835 781q0 43 26 70.5zM2039 1992q29-15 45.5-39.5t16.5-52.5q0-25-16-51l-282-427q-20-30-47.5-47.5T1703 1357q-11 0-23 5l-18 9-89-113q-6-8-15-11t-17-4q-8 0-14 3l-155 65-112-128q-12-14-30-14-9 0-16 3l-190 85-88-102q-12-14-30-14-9 0-19 5l-142 81-78-75q-13-11-27-11-10 0-18 4l-115 57q-11 5-16.5 15t-5.5 21q0 17 12.5 28t27.5 11q10 0 17-4l90-45 80 75q10 12 27 12 9 0 19-5l139-80 87 101q11 13 30 13 8 0 16-3l190-85 111 127q12 14 30 14 7 0 15-3l153-64 62 78q-11 11-17 28t-6 38q0 14 2.5 29t8.5 29l185 475q11 29 36.5 45.5t55.5 16.5q27 0 53-13zm-100-139q12-6 26-6 23 0 42.5 16t19.5 41q0 32-32 48l-92 45q-13 7-28 7-22 0-38-15t-16-41q0-16 8.5-30.5t23.5-22.5z"},"children":[]}]};exports.u1F62F=u1F62F;var u1F630={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2291 1791q17 51 17 91 0 160-294 278.5T1296 2279q-425 0-719-118.5T283 1882q-4-35-6-70t-2-73q0-324 145.5-618.5t402-457T1408 501q453 0 685 245.5t232 583.5q0 107-25.5 209t-25.5 155q0 46 17 97zm-1163.5-443q-39.5-61-96.5-61-62 0-124.5 85T844 1552q0 73 55.5 129.5T1034 1738q65 0 99-56t34-151q0-122-39.5-183zm809 109.5Q1909 1374 1895 1372q-17 0-67 84.5t-50 160.5q0 51 25 85.5t78 34.5q38 0 60.5-32.5t22.5-78.5q0-85-27.5-168.5zM1553 1167q2-9 2-17-51-26-82.5-54.5T1423 1034q-36 13-61 51t-25 83q0 47 27 79t69 32q37 0 69.5-25.5t46.5-67.5zm-748.5-103q26.5 34 72.5 34t83-41.5 37-98.5q0-36-16-64-20 9-43.5 15t-51.5 6q-25 0-45-2.5t-40-6.5l-8 16q-8 16-11.5 33t-3.5 29q0 46 26.5 80z"},"children":[]}]};exports.u1F630=u1F630;var u1F631={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M623 2282q-125-33-205-85t-128-111l-2-26q0-769 273-1168.5T1363 492q474 0 711.5 357T2312 1920q-73 26-138 50t-126 48q8-55 64.5-160t92.5-203.5 36-193.5q0-104-48.5-161.5T2070 1242q-55 0-103.5 39t-67 127-117.5 203-128 194-29 179q0 52 2.5 105t4.5 108q-179 69-330.5 99.5T1005 2327q-4 0-7-1t-6-1v-42q0-75 4.5-149.5t4.5-149.5q0-93-24-169t-92-154.5T775.5 1518 721 1387.5t-60-106-105-39.5q-78 0-125.5 62T383 1476q0 97 31.5 207.5T484 1857t58 84l28 30q36 41 46 76.5t10 99.5v42zm295 42q-62-2-117-8.5T697 2299v-81q0-18 1.5-36.5t1.5-36.5q0-153-74.5-223.5t-121.5-198-47-242.5q0-86 25-125.5t74-39.5q30 0 58.5 22t38 75 45 118 105 145.5 97 147T927 1979q0 78-3.5 163t-4.5 140zm1055-274q-60 20-127.5 53.5T1703 2166q-2-46-3-92.5t-1-93.5q0-80 21-144t67-116 106-133.5 81-176 96-94.5q42 0 70.5 34t28.5 111q0 63-20 131.5t-53 136.5l-43 87q-49 97-64.5 144.5T1973 2050zm-829-186q44 61 127 61 56 0 108.5-28t71.5-65 19-111q0-139-53.5-260.5T1282 1339q-56 0-95.5 43.5t-63 158T1100 1709q0 94 44 155zm-348-772q6 8 16 11 2 0 22 5t56 5l22-1q11 0 24-2-2 5-2 16 0 59 28 96t67 37 66.5-37.5 27.5-89.5q0-51-26-88 35-29 51-65.5t14-34.5v-5q0-13-9-23.5t-23-10.5q-15 0-24 12t-17 38l-214 94q-17-2-28-4.5t-25-2.5q-11 0-21.5 8.5T790 1075q0 9 6 17zm644-148q0 10 18 43t45 57q-25 35-25 88 0 55 28 91t65 36q38 0 66.5-37t28.5-96q0-11-2-16 11 2 23 2l23 1q34 0 56-5t23-5q11-3 16.5-12t5.5-19q0-14-10-22t-22-8q-10 0-20.5 2.5t-33.5 4.5l-213-94q-3-6-11.5-28t-30.5-22q-11 0-21.5 9.5T1438 936q0 6 2 8z"},"children":[]}]};exports.u1F631=u1F631;var u1F632={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2263.5 1908.5Q2315 1976 2315 2022q0 109-137.5 204T1805 2374.5t-502 53.5q-426 0-721.5-118T286 2031q0-7 1-14l2-13q-2-38-3-76t-1-75q0-432 150.5-744.5T847 611t561-185q222 0 443.5 99.5t332.5 291 111 444.5q0 104-18 207.5t-41.5 176.5-23.5 120q0 76 51.5 143.5zm-744.5-579q-55-51.5-148-51.5-60 0-148 27t-126 27h-14q-28 0-87.5-54T882 1224q-59 0-100.5 44.5T740 1379q0 30 20 69.5t72 45.5l19 2q10 0 25 1h34q55 0 95.5 15t89.5 69.5 108 76 120 21.5q95 0 173-65t78-160q0-73-55-124.5zM827 975q45 53 120 53 85 0 157.5-75t72.5-173q0-75-47-127t-119-52q-91 0-160 77t-69 172q0 72 45 125zm860.5-104q-22.5-28-58.5-28-38 0-68.5 34.5T1530 958q0 38 22 65t59 27q40 0 69.5-34.5T1710 938q0-39-22.5-67z"},"children":[]}]};exports.u1F632=u1F632;var u1F633={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1736.5 744Q2000 897 2153 1175t153 587q0 32-2 63t-5 62q0 160-291 276t-707 116-707-116-291-276q0-40 21-89.5t21-93.5q0-54-40.5-168T264 1290q0-213 117-379.5t310-243 450-76.5q332 0 595.5 153zM659 1716q0-58-33-93t-82-35q-54 0-97 41.5T404 1730q0 49 34 85t84 36q56 0 96.5-41.5T659 1716zm155-284q2-8 2-13 0-15-10.5-26t-26.5-11q-10 0-19 6t-13 17l-8 12q-12 17-36.5 31t-51.5 14q-44 0-71-24.5t-43-24.5-26.5 11-10.5 26q0 14 10 23 0 7 41.5 34.5T648 1535q57 0 97.5-27t52.5-50zm361.5 209.5q-9.5-2.5-23.5-2.5-28 3-57.5 14.5T1050 1678l-21 18q-11 9-20 16t-16 7q-9 0-18-6t-18-14l-17-14q-10-7-39.5-16t-49.5-9q-14 0-20 6.5t-6 13.5q0 23 30 27t53 20l29 20q14 11 29.5 18.5t33.5 7.5q23 0 43-15t36-28l21-15q19-14 52-25.5t33-29.5q0-16-9.5-18.5zM1426 1371l2-7q0-4 1-7 0-14-10-25.5t-27-11.5q-11 0-20.5 5.5t-11.5 11-11.5 20.5-34 30.5-61.5 15.5q-42 0-66-18t-23-18q-9-14-27-14-14 0-25.5 11.5T1100 1390q0 12 8 23l11 11q19 19 55 36t78 17q55 0 102-28.5t72-77.5zm243.5 189.5Q1621 1512 1554 1512q-70 0-118 49.5t-48 113.5q0 68 50.5 115.5T1554 1838t114.5-48.5T1718 1675t-48.5-114.5z"},"children":[]}]};exports.u1F633=u1F633;var u1F634={"viewBox":"0 0 2601 2760.837","children":[{"name":"path","attribs":{"d":"M1765.5 764.5Q2021 932 2161 1231.5t140 635.5q0 81-9 156 0 161-294 279.5T1279 2421t-719-118.5T266 2023q0-41 21-90.5t21-94.5q0-56-27-127.5T238 1556t-16-166q0-181 72.5-340T505 782.5t318-147 341-38.5q346 0 601.5 167.5zm-945 778Q810 1531 794 1531q-20 0-35 23t-46.5 40-69.5 17q-33 0-58-13t-38.5-28-30.5-15q-16 0-26 11.5t-10 25.5 7 22l12 12q19 21 57.5 39.5T643 1684q80 0 134-44.5t54-71.5q0-14-10.5-25.5zm535 396.5q-40.5-44-80.5-74t-100-30q-105 0-156.5 80T967 2024q0 10 6 15t14 6l6 1h208q21 10 33.5 37t17.5 55l3 26q6 81 17 116t41 35q19 0 34.5-23t17.5-112.5 16.5-122.5 14.5-43q0-31-40.5-75zm128.5-412q4-7 4-16 0-14-10.5-25.5T1450 1474q-19 0-34 23t-47.5 41.5-70.5 18.5q-29 0-54-10t-38-23l-12-11q-12-14-30-14-17 0-26 11.5t-9 25.5 7 22l12 12q19 22 59 40.5t89 18.5q62 0 109.5-27t67.5-57zm521-526.5q-9-13.5-54.5-29t-100-33T1787 921q-14 0-30 16t-16 45q0 26 49 39.5t49 17.5q0 8-79 57t-79 76q0 29 53 44t104.5 34 65.5 19 30-15.5 16-44.5q0-28-47-39.5t-47-16.5q0-3 12-11l61-40q12-8 48.5-33.5t36.5-45.5q0-9-9-22.5zM2320.5 734q-28.5 16-57.5 33t-49 26l-43 23q-9 5-9 7 0 3 4 4l6 3q3 1 45 20t42 43q0 25-17.5 44t-34.5 19-34-9l-33-16q-38-18-105-45.5t-67-55.5q0-26 59.5-58t101.5-56l20-11q8-4 8-9 0-2-50-23t-50-45q0-25 17.5-45t34.5-20q24 0 50 16t108 46.5 82 70.5q0 22-28.5 38zm219-436.5Q2478 337 2426 366l-29 16q-14 7-25 15t-11 12 7 6l12 5q4 1 59 22.5t55 54.5q0 20-18.5 52.5T2425 582q-23 0-52.5-14t-96-37.5T2172 490l-24-11q-18-8-31-20t-13-28q0-30 38.5-58.5T2223 320l109-64q13-8 13-13 0-7-40-19.5t-69-29.5-29-43q0-18 17.5-51.5T2275 66q23 0 94 30t151.5 58 80.5 74q0 30-61.5 69.5z"},"children":[]}]};exports.u1F634=u1F634;var u1F635={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2263.5 1908.5Q2315 1976 2315 2022q0 123-169.5 225.5T1697 2396q-10 2-15 2-174 30-379 30-426 0-721.5-118T286 2031q0-7 1-14l2-13q-2-38-3-76t-1-75q0-432 150.5-744.5T847 611t561-185q222 0 443.5 99.5t332.5 291 111 444.5q0 104-18 207.5t-41.5 176.5-23.5 120q0 76 51.5 143.5zm-700-665Q1501 1187 1397 1187q-56 0-136 18t-119 18q-51 0-76-26.5t-73-68.5-104-42q-34 0-74.5 21t-58.5 70-18 71q0 48 28 87.5t102 42 130.5 23 103.5 89 122.5 97.5 137.5 29q104 0 184-70t80-168q0-78-62.5-134.5zm-205-479.5q-31.5 1-63.5 4-85-50-194.5-92T975 634q-15 0-26 10.5T938 674q0 27 49 39.5t180 70.5q-121 21-220.5 58.5t-109.5 50-10 24.5q0 17 11.5 26.5T864 953q13 0 57.5-21.5t142-49T1279 843q116 70 224.5 185t127.5 140.5 40 25.5q14 0 25.5-11.5t11.5-25.5q0-9-3.5-17t-107-120T1400 838h30q153 0 265 24.5t115 24.5q12 0 24.5-10t12.5-24q0-23-14.5-32.5t-143-33.5-267.5-24q-32 0-63.5 1z"},"children":[]}]};exports.u1F635=u1F635;var u1F636={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2174 2082.5q-140 93.5-375.5 145T1301 2279q-263 0-499.5-52T426 2082t-139-201q0-383 114-692t341-473.5T1301 551q323 0 549 157.5t345 466.5 119 706q0 108-140 201.5zM987.5 1274q-29.5-36-72.5-36-42 0-72 35.5t-30 86.5 30 87 72 36q43 0 72.5-36.5t29.5-86.5-29.5-86zm770.5-.5q-30-35.5-72-35.5t-72.5 35.5-30.5 86.5 30 87 73 36q42 0 72-36t30-87-30-86.5z"},"children":[]}]};exports.u1F636=u1F636;var u1F637={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M597 1121q-31-50-44-102t-17-85q162-239 390-373.5T1410 426q222 0 444 100.5T2184.5 819t108.5 457q-54 54-195 99t-350 63q0-140-161.5-170t-349-76-312.5-87l-92-30q-44-14-70-19.5t-43-5.5q-78 0-123 71zm1335 2q0 4-1 7t-1 8q0 51 27 85t73 34q39 0 62-32.5t23-78.5q0-77-20-144t-36-97-52 25.5-56 108.5q-16 42-19 84zm-427-197q-34 17-54.5 51t-20.5 76q0 49 28.5 82.5t70.5 33.5q45 0 81.5-39.5t36.5-98.5q-50-17-86.5-45.5T1505 926zm-628-79q-8 15-13 32t-5 37q0 48 28 82t70 34q45 0 81.5-39.5T1075 894q0-41-22-74-23 14-52.5 23t-70.5 9q-14 0-27.5-1.5T877 847zm792 984q7-36 17-80l37-174q9-42 17-76 191-15 329.5-52t221.5-90q-2 21-5 42l-6 44q-52 104-210 214.5T1669 1831zM486 1016q10 40 28 84.5t50 86.5q-26 61-51 161t-39 234q-41-64-55.5-135.5T404 1309q0-47 7-103t21-87.5 54-102.5zm1777.5 892.5Q2315 1976 2315 2022q0 164-294.5 285T1303 2428q-426 0-721.5-118T286 2031q0-7 1-14l2-12q-2-38-3-75t-1-73q0-261 57-483 7 77 35 156t90 148q0 9-1.5 13.5T464 1711q0 123 368.5 238.5T1490 2065q66 0 106.5-42t56.5-122q200-47 352-127t246-183q-7 31-23 81.5t-16 92.5q0 76 51.5 143.5z"},"children":[]}]};exports.u1F637=u1F637;var u1F638={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2425 1772q14 3 22.5 13.5t8.5 24.5q0 23-15 31.5t-31 8.5l-145-26q-5 29-11.5 57t-16.5 55l119 38q13 5 19.5 15t6.5 22q0 18-11 29t-27 11q-8 0-12-1l-126-41q-94 189-344 295.5T1293 2411q-70 0-147.5-8t-137.5-20l-56-10q-198-42-345-138.5T393 2009l-126 41q-4 0-11 1-17 0-29-10.5t-12-27.5q0-13 8-23.5t21-15.5l119-37q-11-28-17-56t-10-57l-147 26q-19 0-32.5-10t-13.5-30q0-14 9-24.5t23-13.5l152-28q0-11-1-21v-51q0-14 1-29l-154-24q-15-2-25-13t-10-25q0-17 12-28.5t30-11.5h5l149 22q14-82 44.5-162.5T458 1245q-7-56-13.5-145.5T438 913q0-226 41.5-346T599 447q85 0 219 113t207 199l81 92q48-6 96-10.5t98-4.5q49 0 97.5 4.5T1495 851l57-67q116-133 243-235t205-102q76 0 117.5 116.5T2159 913q0 98-5.5 186.5T2141 1245q49 75 80 155.5t44 162.5l150-22h6q15 0 27.5 10.5t12.5 28.5q0 14-9.5 25.5T2426 1619l-153 24 1 52-1 49zm-947 135q-35-11-72.5-25.5T1329 1866v337q38 0 75-2.5t74-7.5v-286zm-356 289q27 3 55 5t56 2h38v-333q-39 8-75.5 24t-73.5 25v277zm366-594q-2 3-2 6l-1 7q0 16 11.5 28t28.5 12q26 0 42-34t55-61.5 95-27.5q36 0 67 13.5t47 28.5l9 10q12 15 29 15t28-12 11-28q0-33-62.5-69t-128.5-36q-74 0-126.5 32t-77.5 70-25 46zm-788-74q-9 10-9 26 0 15 11 27t28 12q18 0 29-12l10-9q16-15 44.5-27.5T878 1532q56 0 95 27.5t49 49.5l14 24q4 13 15 19.5t22 6.5q17 0 27.5-12t10.5-26v-7q0-4-1-7 0-8-30-52t-82.5-72.5T877 1454q-52 0-96 19.5t-67 41.5zm836 659q79-11 149-31v-230q-8 0-15.5 1t-15.5 1q-61 0-118-6v265zm-622-32q35 11 72.5 19t76.5 15v-259q-18 4-36.5 5t-38.5 1-37-2-37-5v226zm-207-104q31 25 68.5 45t80.5 37v-214q-38-9-78.5-17.5T707 1873v178zm1036 88q45-19 81-36t68-44v-174q-34 14-71 23.5t-78 13.5v217zM649 1993v-137q-5 0-13-1-21 0-28.5 9.5T600 1888q0 22 14.5 52t34.5 53zm1342.5-125q-7.5-5-18.5-5-5 0-10 1l-12 2v136q24-36 36-71.5t12-45.5q0-12-7.5-17z"},"children":[]}]};exports.u1F638=u1F638;var u1F639={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2425 1659q14 2 22.5 13t8.5 26q0 23-15 30.5t-31 7.5l-124-23q-2 62-12 122l82 26q13 4 19.5 14t6.5 23q0 17-11.5 28t-26.5 11q-8 0-12-1l-76-25q-76 253-343.5 376.5T1305 2411q-329 0-599.5-127T366 1904l-99 32q-4 0-11 1-17 0-29-10.5t-12-27.5q0-14 8-24t21-14l105-33q-5-30-7-60l-4-60-149 28q-20 0-33.5-9t-13.5-31q0-14 9.5-24t23.5-13l165-31q0-23 3.5-47t8.5-49l-180-26q-15-2-23.5-13t-8.5-27 11-27 28-11h6l186 27q35-112 99-210-6-55-12.5-145T451 914q0-221 40.5-344T612 447q87 0 224.5 117T1040 761l78 90q96-15 194-15 97 0 195 15l57-67q94-113 230-225t218-112q78 0 119.5 120.5T2173 911q0 98-6.5 188t-12.5 146q63 98 98 207l163-24h6q15 0 27 10.5t12 27.5q0 16-9 27t-25 13l-155 23q5 26 9 52t4 52zm-1750 71l9-19q5-11 5-22 0-19-25-19-60 0-145.5 65T433 1887q0 44 26 78t68 34q51 0 80-43.5t42-121.5 26-104zm1394 268l12 1q42 0 68-33.5t26-77.5q0-84-82-151t-149-67q-25 0-25 19 2 24 16.5 46t25 92 26.5 104.5 35 49 47 17.5zm-677-74q-30-13-63-18v335q38-2 75.5-5t73.5-10v-267l-14-3q-7 0-13-4zm-270 305q36 8 73 11t76 3v-333q-21 6-38 14l-35 17q-18 9-36 16.5t-40 11.5v260zm-364-635q8-4 15-10 0-5 35.5-28.5T894 1532q55 0 94.5 27t49.5 48l13 23q4 11 14 18t21 7q17 0 28.5-12t11.5-26q0-8-3-14 0-10-32-54.5t-83.5-70.5-114.5-26q-54 0-100 21.5t-67 44.5l-14 14q-5 6-7 13t-2 13q0 18 13 29t26 11q8 0 16-4zm1094-10q12 15 30 15 17 0 28-12t11-28q0-14-9-25-2 0-18-17t-62-40-103-23q-73 0-124.5 31.5t-78 70-26.5 46.5l-2 6q0 3-1 7 0 16 11.5 28t28.5 12q26 0 41.5-33.5t55-61.5 96.5-28q37 0 67 13.5t46 28.5zm-316 630l39-9q30-7 60.5-19.5t49.5-27.5v-204q-23 8-47.5 10t-48.5 2h-27q-13 0-26-1v249zm-622-63q32 20 70.5 36.5t78.5 27.5v-241q-3 0-6 1t-6 1q-32 0-68.5-9t-68.5-20v204zm-58-42v-184q-15-8-32-19t-39-11q-19 0-26 8t-7 23q0 33 28 87.5t76 95.5zm991-178v-6q0-12-6-17t-14-5q-17 0-41.5 12t-42.5 20v184q60-49 82-114.5t22-73.5z"},"children":[]}]};exports.u1F639=u1F639;var u1F63A={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2425 1754q14 3 22.5 14.5t8.5 25.5q0 21-14.5 29.5t-30.5 8.5l-138-26q-3 30-9 59t-16 57l108 35q12 4 19 15t7 23q0 17-12 27.5t-26 10.5q-8 0-12-1l-113-37q-67 139-220 238t-342 138.5-357 39.5q-71 0-145-8t-141-21l-55-10q-202-42-354-144t-212-237l-126 41q-4 0-11 1-17 0-29-10.5t-12-27.5q0-14 8-24t21-14l120-39q-8-29-14-56.5t-10-56.5l-151 27q-19 0-32.5-9.5T143 1792q0-14 9-24.5t23-13.5l159-29q0-11-1-21v-20q0-27 3-59l-163-23q-16-2-24.5-14t-8.5-26q0-17 11.5-27.5T178 1524h6l161 23q14-79 44-155t75-148q-6-55-12.5-145T445 913q0-227 42-347t120-120q82 0 219 113.5T1055 784l57 67q97-15 195-15 97 0 195 15 34-46 137-154.5T1842 517t165-71q78 0 119 121t41 344q0 99-6 189t-11 144q45 70 75 146t44 156l146-22h7q17 0 27 11t10 28q0 14-9 25.5t-24 13.5l-148 22q3 30 3 61l-1 43zm-760 249q0-4 1-7v-5q0-9-3.5-13.5t-8.5-4.5q-11 0-27 9l-30 17q-23 14-50.5 20t-55.5 6h-21q-10 0-20-1-29 0-69.5-25t-67.5-25q-12 0-23 4.5t-20 9.5l-27 16q-26 15-48.5 22t-50.5 7q-31 0-73.5-14t-63.5-34-40-20q-11 0-15 8t-4 21v6q15 112 112 183t224 71q176 0 270.5-65t110.5-186zm188-541.5q-40-44.5-95-44.5-56 0-95 45t-39 107q0 64 39.5 108.5t94.5 44.5 95-44 40-109q0-63-40-107.5zM950.5 1678q40.5-44 40.5-109 0-64-40.5-108t-95.5-44q-56 0-95 45t-39 107q0 64 39.5 108.5T855 1722t95.5-44z"},"children":[]}]};exports.u1F63A=u1F63A;var u1F63B={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2425 1903q14 3 22.5 15t8.5 26q0 20-14.5 28.5t-30.5 8.5l-194-34q-11 26-24 50.5t-28 47.5l191 61q12 4 19 15t7 23q0 17-12 27.5t-26 10.5q-8 0-12-1l-219-70q-124 136-353 209t-476 73q-233 0-459.5-71T473 2115l-206 66q-4 0-11 1-17 0-29-10.5t-12-27.5q0-14 8-24t21-14l177-57q-18-23-31-48.5t-24-51.5l-177 32q-20 0-33-10t-13-30q0-14 9-24.5t23-13.5l166-29q-7-25-11.5-50t-7.5-51l-149-22q-16-2-24.5-13t-8.5-27q0-15 11.5-26.5T178 1673h6l133 20q0-83 10.5-156.5T367 1385q-70-157-122.5-329T192 773q0-90 31.5-129t93.5-39q76 0 195.5 47T740 761l59 34 70 42q31 19 57 34 87-26 179-39.5t186-13.5q92 0 182.5 13t176.5 39l105-78q126-93 262.5-161.5T2236 562q59 0 91 48.5t32 155.5q0 116-38.5 284T2218 1396q27 75 37 148.5t10 151.5l150-23h6q17 0 27.5 11.5t10.5 27.5-9 26.5-24 12.5l-168 24q-2 25-6 48.5t-11 46.5zm-468-365q0-7 1-13 0-52-38.5-90t-91.5-38q-45 0-79.5 27.5T1703 1495q0-5 1-15 0-56-36.5-94.5T1577 1347t-92 39.5-38 98.5q0 69 45.5 145.5T1594 1763l47 47 35-14q111-43 187.5-107.5T1955 1551zm-1331 13q18 86 115 155.5T939 1810q69-59 131.5-151.5T1133 1485q0-58-37-98t-92-40q-54 0-91.5 39t-37.5 96q0 3 2 15-11-43-45-71.5t-78-28.5q-55 0-93 39t-38 90q0 6 1 12zm1084 434l1-10q0-20-14.5-34.5T1660 1926q-16 0-29 10t-17 27l-9 21q-13 31-50 57t-95 26q-44 0-76.5-13.5T1332 2018t-41-22-35.5 17-48.5 35.5-86 18.5q-62 0-101-29t-51.5-71-50.5-42q-22 0-35 16t-13 33q0 62 72 127t180 65q59 0 101.5-17.5t67.5-36.5q24 19 66 36.5t103 17.5q96 0 163.5-52t86.5-129z"},"children":[]}]};exports.u1F63B=u1F63B;var u1F63C={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2425 1880q14 3 22.5 14.5t8.5 25.5q0 20-14.5 28.5t-30.5 8.5l-196-36q-8 27-19 52.5t-24 49.5l184 59q12 4 19 15t7 23q0 19-12 28.5t-26 9.5q-8 0-12-1l-206-64q-119 150-349.5 233t-507.5 83q-257 0-483-78.5T433 2105l-166 52q-4 0-11 1-15 0-28-9.5t-13-28.5q0-12 8-23t21-15l141-44q-14-26-26.5-52.5T337 1930l-148 27q-19 0-32.5-9t-13.5-29q0-14 9-25t23-14l142-26q-5-26-8.5-53t-5.5-55l-130-19q-16-2-24.5-13t-8.5-25q0-18 11.5-28.5T178 1650h6l117 17q0-123 43.5-245.5T467 1193q28-360 94.5-550T722 453q66 0 167 100t223 292q41-5 81.5-8t82.5-3 84.5 3 84.5 8q115-182 219.5-286.5T1837 454q94 0 157.5 185.5T2084 1115l7 89q78 108 117.5 227t39.5 242l167-23h6q17 0 27.5 11.5t10.5 28.5q0 14-9 24.5t-24 12.5l-179 27q-2 23-5 45.5t-7 45.5zm-606 170v-8q0-38-44.5-50.5T1696 1939t-34-61q-2-18-15.5-29.5T1614 1837q-22 0-35.5 14t-13.5 37q0 8 5 25t19 44q-77 47-151 64.5t-136 17.5q-74 0-141-19t-87.5-32-36.5-13q-17 0-33 13t-16 35q0 24 17.5 39.5t105 46T1304 2139q77 0 165.5-22.5T1652 2034q23 20 58.5 39.5t60.5 19.5q15 0 28-9.5t18-25.5zm105.5-558q-5.5-20-14.5-39l-329 152q22 45 66.5 73t100.5 28q75 0 128.5-50.5T1930 1534q0-22-5.5-42zM958 1624l-326-152q-14 30-14 62 0 72 54.5 122t129.5 50q49 0 90-22.5t66-59.5z"},"children":[]}]};exports.u1F63C=u1F63C;var u1F63D={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2425 1642q14 3 22.5 14.5t8.5 24.5q0 22-14.5 30.5t-30.5 8.5l-149-28q0 30-2.5 60.5t-5.5 59.5l102 32q12 5 19 15.5t7 23.5q0 17-12 27.5t-26 10.5q-8 0-12-1l-93-30q-52 199-216.5 316.5T1636 2372l-58 10q-60 11-143 19.5t-154 8.5-149-8.5-137-19.5l-56-10q-218-46-382.5-162.5T338 1897l-71 23q-4 0-11 1-17 0-29-10.5t-12-27.5q0-14 8-24t21-15l78-26q-4-29-6-59.5t-2-61.5l-125 23q-19 0-32.5-10t-13.5-30q0-14 9-24.5t23-13.5l142-26q2-26 5-51.5t10-51.5l-159-23q-16-2-24.5-14t-8.5-26q0-17 11.5-27.5T178 1412h6l168 24q35-101 93-193-6-55-12.5-144.5T426 913q0-227 42-347t120-120q65 0 166 72.5t194 170T1093 850q97-15 195-15t193 15l59-66q125-143 249-240.5t199-97.5q76 0 117.5 116.5T2147 912q0 96-6 186t-12 145q30 48 53.5 97t41.5 100l191-28h6q17 0 27.5 11t10.5 28q0 14-9 25.5t-24 13.5l-182 26q5 25 8.5 48.5t5.5 47.5zm-1233 168l2-7q0-3 1-8 0-27-40-41t-78-14q-51 0-86 32t-35 83q0 17 5.5 34.5T980 1924q-41 14-59 41.5t-18 65.5q0 54 45 92.5t130 58.5l8 1q17 0 28.5-11.5t11.5-26.5q0-35-37-42.5t-72.5-27T981 2031q0-24 21.5-33.5t68.5-9.5q16 0 28-10.5t12-27.5q0-27-37.5-46t-37.5-50q0-17 9.5-26.5t30.5-9.5q10 0 26 3t39 13l6 1q3 0 8 1 12 0 22-6.5t15-19.5zm-127.5-440.5q63.5-50.5 63.5-81.5 0-14-11-26.5t-28-12.5q-24 0-37.5 23.5t-51 46.5-86.5 23q-59 0-99.5-32.5T774 1268q-6-10-15.5-14.5T738 1249q-17 0-27.5 12t-10.5 26q0 30 62.5 81.5T914 1420q87 0 150.5-50.5zm832-108.5q-10.5-12-27.5-12-26 0-38.5 23t-50 46.5-87.5 23.5q-51 0-89.5-25t-50-46.5-35.5-21.5q-17 0-27.5 12t-10.5 27q0 31 63 81.5t150 50.5q88 0 151-51t63-81q0-15-10.5-27z"},"children":[]}]};exports.u1F63D=u1F63D;var u1F63E={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2425 1884q31 10 31 41 0 17-12 28t-26 11q-2 0-3.5-1t-3.5-1l-196-34q-8 26-19 51.5t-24 50.5l184 57q12 5 19 15.5t7 22.5q0 18-11 29t-27 11q-6 0-12-3l-206-64q-85 108-233.5 183t-318 104.5T1269 2415q-248 0-479-78t-357-227l-166 52q-6 3-11 3-17 0-29-11t-12-29q2-12 8.5-22.5T244 2087l141-44q-14-26-26.5-53t-21.5-54l-148 26q-2 0-3.5 1t-3.5 1q-17 0-28-11.5t-11-28.5q0-14 9-24.5t23-15.5l142-24q-5-27-8.5-54t-5.5-55l-130-19q-16-2-24.5-13t-8.5-25q0-17 10.5-27.5T177 1656h7l117 16q0-122 42.5-243T464 1202q15-311 85-547.5T722 418q77 0 187.5 122T1075 751l61 96 70-6q34-2 70-2 35 0 72 2.5t74 7.5q98-166 216.5-297.5T1837 420q96 0 167 215.5t89 576.5q77 109 116 227.5t39 239.5l167-23h7q17 0 27 11t10 28q0 14-9 24.5t-24 12.5l-179 28q-2 23-5 45.5t-7 45.5zm-763.5 125.5Q1634 1993 1553 1966t-180-27q-69 0-148 18.5t-147.5 56-79 51T988 2095q0 22 15 35t34 13q22 0 56.5-25.5T1208 2065t166-27q71 0 131.5 16.5t90 33 45.5 16.5q21 0 34.5-15t13.5-35q0-28-27.5-44.5zm263-512.5q-5.5-20-14.5-39l-329 152q22 46 66.5 74t100.5 28q75 0 128.5-51t53.5-122q0-22-5.5-42zM958 1630l-326-153q-14 31-14 62 0 71 54 122t130 51q49 0 90-22.5t66-59.5z"},"children":[]}]};exports.u1F63E=u1F63E;var u1F63F={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2425 1866q14 4 23.5 14.5t9.5 24.5q0 17-13 28t-27 11q-4 0-7-2l-181-31q-16 53-45 103l173 54q11 4 18.5 14.5t7.5 22.5q0 18-12.5 29t-26.5 11l-12-1-193-63q-118 149-349.5 230.5T1285 2393q-258 0-489-79.5T446 2086l-178 58-12 1q-15 0-27.5-11t-12.5-29q0-12 8.5-22.5T244 2068l156-50q-14-25-26.5-51.5T352 1914l-163 28q0 2-7 2-14 0-26-11t-12-28q0-13 8.5-24.5T175 1866l158-29q-5-25-8.5-50.5T319 1734l-145-22q-14-2-24-12.5t-10-24.5q0-17 12-29t27-12h6l133 21q0-69 13-135.5t37-133.5q-70-157-122.5-329T193 774q0-90 31.5-128.5T318 607t135.5 25.5 143.5 57T735 761l134 77 58 34q87-26 179-39.5t186-13.5q91 0 181.5 13t175.5 39l107-78q115-85 257-157.5t224-72.5q60 0 91 49t31 155q0 118-39.5 288T2218 1397q23 64 34.5 129.5T2264 1657l153-23h4q15 0 27 11.5t12 28.5q0 14-8.5 25t-23.5 13l-165 25q-5 52-12 97zm-378 59q-4-56-19.5-93.5t-56-87.5-70.5-50q-11 0-16 14.5t-5 42.5l1 19q0 15-3 28.5t-7 25.5l-12 43q-6 23-10.5 46.5t-4.5 45.5q0 42 26 73t67 31q39 0 74.5-37.5T2047 1925zm-227.5-263q43.5-19 67.5-42l13-13q10-10 10-26 0-17-11-28.5t-28-11.5q-18 0-30 12 0 7-35 27.5t-80 20.5q-76 0-118-43.5t-42-58.5q-5-13-15.5-19.5t-21.5-6.5q-19 0-29.5 12t-10.5 26q0 6 3 12 0 13 32.5 59t87 72.5T1726 1681q50 0 93.5-19zm-751-166q-10.5-13-27.5-13-12 0-22.5 7t-15.5 20q-2 0-11 20t-47.5 51-99.5 31q-36 0-65-12.5t-44-27.5l-9-9q-14-14-30-14-15 0-27.5 12t-12.5 28q0 29 58.5 65t128.5 36q104 0 169.5-64.5T1079 1523q0-14-10.5-27z"},"children":[]}]};exports.u1F63F=u1F63F;var u1F640={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2425 1858q15 3 24 15t9 26q0 20-15 28.5t-32 8.5l-181-33q-16 53-45 103l173 55q11 4 18.5 15t7.5 23q0 17-12.5 28t-26.5 11q-8 0-12-2l-193-61q-78 96-210 169t-290 105l-58 10q-60 11-143 19.5t-154 8.5-150.5-8.5T998 2359l-56-10q-153-32-283-101.5T446 2080l-178 56q-4 2-12 2-14 0-27-11t-13-28q0-12 8.5-23t19.5-15l156-49q-14-26-26.5-52t-21.5-53l-163 29q-16 0-30.5-8.5T144 1899q0-14 8.5-26t22.5-15l158-27q-5-26-8.5-51.5T319 1728l-145-22q-14-2-24-12.5t-10-25.5q0-17 11-28.5t28-11.5h6l133 21q0-61 10-123.5t32-124.5q-78-182-122.5-337.5T193 806q0-90 31.5-128.5T318 639q75 0 197 47.5T800 829l84 51q95-34 198.5-51.5T1292 811q102 0 202 16.5t194 48.5l68-49q133-99 268-165.5t213-66.5q61 0 91.5 49t30.5 154q0 119-40.5 291.5T2225 1412q20 59 29.5 119t9.5 120l153-23h4q17 0 28 11.5t11 26.5q0 16-8.5 27t-23.5 13l-165 25q-2 25-5 48.5t-7 47.5zm-698.5 106.5Q1684 1921 1621 1921q-67 0-135.5 48.5T1360 2018q-38 0-95.5-21t-100.5-21q-73 0-117 45t-44 103q0 61 45.5 98.5T1164 2260q83 0 138.5-36.5T1413 2187h14q34 0 74 12.5t73 12.5 84-13.5 81-50.5 30-87q0-53-42.5-96.5zM1897 1664q13-13 13-31 0-16-11.5-27t-27.5-11q-13 0-46 22t-80 22q-57 0-95-25.5t-55.5-56-17.5-40.5q-3-14-14-22t-25-8q-17 0-28 11.5t-11 26.5q0 6 1 8 0 14 31.5 66.5t86 85T1744 1717q43 0 83-14.5t58-29.5zm-848-168q-11-12-28-12-15 0-25.5 10t-13.5 24q0 10-16.5 44.5t-54.5 63-97 28.5q-40 0-66.5-13.5T723 1627q-6-5-12-6t-12-1q-16 0-28 10.5t-12 27.5q0 8 4 16.5t12 13.5l12 8q20 14 54.5 25t72.5 11q69 0 127.5-34.5t88.5-88.5 30-85q0-16-11-28z"},"children":[]}]};exports.u1F640=u1F640;var u1F645={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1609.5 533Q1750 591 1855 699.5T2033.5 950t166 275.5 164.5 243 113 262.5q22 83 22 164 0 204-159.5 328T1912 2347q-122 0-251.5-28t-251-85.5-261-172.5-166-143-118-134T657 1603t-116-139q0-32 23.5-47.5T626 1401q73 0 155 35t161.5 73 206.5 155l95 88q208 193 346.5 237.5T1927 2034q118 0 180-31.5t62-95.5q0-6-1-13l-2-13q-14 39-56 60t-99 21q-5 0-10.5-1t-10.5-1q-14 2-29 3t-34 1q-48 0-108-6t-130-17q64-68 115.5-130t188-158.5T2129 1464q0-56-39-94t-116-38q-97 0-259.5 72T1464 1558l-164 150q-151-142-222-197t-216-117-236-62q-76 0-115.5 39t-39.5 93q0 93 132.5 186T792 1810t118 131q-69 11-128.5 17t-107.5 6q-41 0-64-4-5 0-10.5 1t-10.5 1q-57 0-99-21t-56-60l-2 13q0 7-1 13 0 64 62 95.5t181 31.5q50 0 128.5-5t165.5-30q58 57 124.5 109t138.5 103q-139 72-277.5 104T688 2347q-268 0-427.5-124T101 1895q0-109 38.5-224.5t108-220 161-238 153-253.5 141-213 172-152.5T1085 501q96-26 215-26 169 0 309.5 58zM1400 1058q6 41 58 78.5t113 37.5q88 0 136-58t48-132q0-10-1-18l-2-15zm-234 355.5q14 8.5 34 8.5 21 0 44-24.5t49-24.5q25 0 52.5 23t50.5 23q16 0 31-8.5t15-32.5q0-32-48-67.5t-91-35.5q-49 0-100 36.5t-51 67.5q0 26 14 34.5zM816 951q0 7-1 15t-1 18q0 73 46.5 131.5T997 1174q61 0 113-38t58-78zm796 970q-82-30-147-76.5t-113-89.5q156-146 218.5-192t176-95.5 152-58 75.5-8.5q38 0 61.5 15.5t23.5 47.5q0 66-115.5 139T1739 1781t-127 140z"},"children":[]}]};exports.u1F645=u1F645;var u1F646={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2377 2020q-136 240-410.5 354.5T1307 2489q-367 0-657.5-112.5t-427-353T86 1495q0-85 11.5-168t43-162.5T214 1012t93-141 111-128 122.5-112.5T650 501l33-52q16-26 38-49l44-45q37-38 78-60t87-22q29 0 49.5 13t20.5 25q0 17-42.5 35T915 393q0 8 10 8 18 0 59.5-21t97.5-21q77 0 125.5 51t48.5 139q0 95-59 152.5T974 787 687.5 952.5t-186 271T438 1495q0 44 10.5 70t31.5 26q5 0 8-8l4-9q99-310 304.5-469.5T1307 945q298 0 502 149t306 464l7 14q3 8 7 15 15-5 22-22t8-38v-25q0-130-55-258.5t-183-279T1614.5 784t-226-93-47.5-142q0-85 48.5-137.5T1515 359q55 0 96 20t60 22q11 0 11-6 0-30-42.5-49.5T1597 311q0-12 20-25t49-13q46 0 88.5 22t79.5 60l43 45q21 24 38 50l34 52q16 26 33 50t40 44l81 71q181 161 295.5 368t114.5 462q0 283-136 523zm-789-249.5q-12-14.5-32-14.5-11 0-20 6t-17 15l-21 23q-22 26-63 43.5t-96 17.5q-71 0-125.5-22t-77.5-46l-13-13q-12-20-34-20-18 0-31.5 13t-13.5 31q0 12 8 25 2 0 21 23.5t91 59.5 173 36q109 0 186-56.5t77-89.5q0-17-12-31.5zm-557.5-304Q1003 1434 967 1434q-37 0-63.5 33t-26.5 77q0 45 26.5 76.5T967 1652t64-31 27-77q0-45-27.5-77.5zm680 0Q1684 1434 1648 1434q-37 0-63.5 33t-26.5 77q0 45 26.5 76.5t63.5 31.5q36 0 62.5-31t26.5-77q0-45-26.5-77.5z"},"children":[]}]};exports.u1F646=u1F646;var u1F647={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1407 2077q-25 0-52.5 1.5t-54.5 1.5q-28 0-54.5-1.5t-53.5-1.5q-20-86-171-142.5t-308-66-225-40.5l-13-24q-11-18-11-73t-1-75q0-20-8-28.5t-22-8.5q-35 0-62 43.5t-27 89.5q0 77 87.5 124.5t224 55.5 242.5 37 161 60l21 13q18 12 32 29.5t14 37.5q0 30-28 45.5t-91 15.5q-75 0-153.5-11t-208-13.5-250.5-27-201-90T89 1843q-9-40-9-81 0-122 71-249t213-254l67-58q159-140 209.5-230T789 799.5 1014 677t286-41q196 0 341 63t228.5 154 108 144.5 199.5 206 258.5 282.5 83.5 276q0 91-36 169.5T2366 2059t-194.5 67.5-227 20.5-135 5.5T1680 2166q-44 4-87 4l-25-1q-34-2-64-16t-30-44q0-56 117.5-104.5t320-67T2185 1872t71-120q0-46-27-89.5t-60-43.5q-14 0-23 8t-9 28v37q0 54-3 76.5t-21 59.5q-91 35-240 43.5t-294 63-172 142.5zm217.5-876q21.5 46 63.5 46 35 0 56-25t21-61q0-42-23.5-85t-65-84.5T1624 950q-7 0-14 35t-7 84q0 86 21.5 132zM1480 1665q9 8 23 8 12 0 41-5.5t78-5.5q46 0 76.5 6t31.5 6q11 0 21-8.5t10-20.5q0-21-33.5-31t-98.5-10h-19q81-44 113.5-51t32.5-34q0-13-9-20.5t-19-7.5q-7 0-10 1l-26 10q-66 24-143.5 70.5T1471 1644q0 13 9 21zm-361.5.5q10.5-7.5 10.5-21.5 0-25-76-71t-143-71l-28-10q-2 0-4-1h-5q-11 0-20 7.5t-9 20.5q0 10 5.5 18t15.5 11l43 16q34 14 83 40h-57q-40 0-66.5 11t-26.5 32q0 11 9 19t20 8q4 0 33-6t75-6q52 0 85 5.5t34 5.5q11 0 21.5-7.5z"},"children":[]}]};exports.u1F647=u1F647;var u1F648={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2267.5 2142q-81.5 83-212.5 83-102 0-195.5-72.5T1688 1940q-86 42-197.5 63t-197.5 21q-84 0-190.5-21.5T911 1940q-85 137-173 199.5T556 2202q-115 0-210-56t-95-180q0-79 43-175.5T432 1567t175.5-186 110-118T821 1127.5t152-76.5q26 0 43.5 10t17.5 23q0 15-37.5 31t-37.5 44q0 7 8 7 16 0 51.5-19t88.5-19q73 0 114 45t41 123q0 82-50 131.5t-171.5 72T856 1565t-139 135-76 143q0 19 7 19 15 0 71.5-80T829 1654q34 113 162 175.5t307 62.5q187 0 314-65t158-179q62 56 114.5 135t71.5 79q5 0 6-4.5t1-10.5q0-59-71-142t-129-131.5-194-73-180.5-77T1344 1296q0-81 43.5-124.5T1500 1128q51 0 85 19t52 19q8 0 8-8 0-18-11.5-28t-25.5-17l-26-13q-12-6-12-16 0-13 18-23t45-10q56 0 120.5 49.5T1866 1227l35 58q17 28 44 52l65 57q50 44 95.5 92t82.5 99l38 53q45 63 84 147t39 151q0 123-81.5 206zM429 1489q-15-46-15-98 0-96 51.5-156.5T603 1174h12q64-249 245.5-395T1299 633q159 0 302 62t241 190.5 140 288.5h13q85 0 137 60t52 154q0 23-3 50.5t-11 43.5l-33-37q-17-18-37-38v-16q0-51-26-80t-74-35q2 11 3 22t3 21q-60-49-81-94.5t-69-95.5l-32-35q-51-52-77.5-67t-44-17.5T1652 988t-94-19q-50 0-127 45t-127 45q-64 0-139.5-45T1040 969t-78 11.5-41.5 21.5-45 22.5-84 60T711 1178l-29 45q-14 22-27 40.5t-29 33.5l-17 15q-9 8-17 16 0-14 2-26.5t3-25.5q-49 7-75 35.5t-26 79.5l1 23-34 38q-17 19-34 37zm935 264.5q-21 23.5-60 23.5-44 0-68-26t-24-71q0-51 26-97t61-46q34 0 60 42.5t26 105.5q0 45-21 68.5zm-52-357.5q14 36 44 67-8 9-21 16.5t-38 7.5q-17 0-29-6.5t-21-14.5q14-16 26-33t20-37h19z"},"children":[]}]};exports.u1F648=u1F648;var u1F649={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2312 2142.5q-74 76.5-178 76.5-83 0-194.5-80.5T1718 1923q-105 56-221 79t-205 23q-91 0-203-23.5T884 1929q-118 136-227 213t-191 77q-105 0-178.5-76.5T214 1951q0-97 48-210.5t90-169.5 49-123q-15-38-24.5-77.5T367 1293q0-83 58.5-155t111.5-72q23 0 45.5 15.5T605 1120q0 11-4 24l-9 30q-11 31-23.5 62.5T556 1304q0 47 21.5 115t21.5 112q0 43-20.5 72T512 1719.5 466 1859q0 22 9.5 36t29.5 14q55 0 124-73.5t63-68.5q-42-57-65-125 14-23 24.5-50t10.5-59q0-43-22-117t-22-112q0-8 1-14l1-12q3-13 11-31l16-39q8-21 14.5-43.5t6.5-45.5q0-30-16-56 85-203 253-316t385-113q225 0 395 111t260 326q-6 12-8.5 24.5t-2.5 24.5q0 29 9 57t19 52l2 4q10 23 14 39t4 35q0 37-21 106.5t-21 115.5q0 28 6.5 55t22.5 51q-24 70-65 128l19 16q9 9 18 19l30 34q32 35 63 56t61 21q21 0 31-14t10-36q0-35-27-92t-43-87l-36-66q-14-25-20.5-42.5t-6.5-40.5q0-38 20.5-111t20.5-117q0-25-7-49t-18-49l-17-49q-7-20-7-36 0-25 26-42t50-17q54 0 106.5 83t52.5 174q0 34-8 67.5t-22 67.5l5 22q2 12 7 26l12 24q13 27 7.5 18.5t34 57 61 114.5 36 95.5 19 78 4.5 63.5q0 114-74 190.5zM1644 1805q131-87 131-213 0-19-4-37t-9-36l-10-36q-4-15-6.5-33t-2.5-32v-28q0-45 13-104t13-94q0-75-54-148.5T1556 970q-49 0-127.5 45t-127.5 45q-57 0-135.5-45T1037 970q-69 0-107.5 24t-71.5 79-33 120q0 35 13 92.5t13 101.5q0 66-16.5 116.5T818 1592q0 125 130 212.5t349 87.5q216 0 347-87zm-336-267q36 9 56 53.5t20 94.5q0 42-21.5 67t-59.5 25q-43 0-67.5-26.5T1211 1679q0-54 26-98t60-44zm267.5-177.5Q1550 1390 1515 1390t-60.5-29.5-25.5-74.5q0-43 25-73.5t61-30.5 61 30.5 25 73.5q0 45-25.5 74.5zm-437.5-.5q-25 30-60 30t-60.5-29.5T992 1286q0-43 25-73.5t61-30.5 60.5 31 24.5 73q0 44-25 74zm103.5 47q16.5-11 58.5-11 30 0 49 8.5t19 26.5q0 20-18.5 37.5T1297 1486q-28 0-50-16t-22-37q0-15 16.5-26z"},"children":[]}]};exports.u1F649=u1F649;var u1F64A={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2154 1521q-31 54-80 76.5t-81 22.5q-5 0-8.5-1t-7.5-1q-16 48-39 91.5t-56 82.5l-36-26q-25-18-47-37.5t-43-43.5q23-46 23-101 0-18-4-35.5t-9-35.5l-10-35q-5-18-8-43.5t-3-53.5q0-42 13-99t13-91q0-68-35.5-125.5T1664 987t-105-21q-50 0-128 45t-127 45q-50 0-130.5-45T1042 966q-68 0-103.5 20t-72.5 76.5-37 126.5q0 36 13 93.5t13 99.5q0 30-5 55t-11 47l-11 44q-6 22-8 46 0 35 7 63.5t21 54.5q-27 31-56.5 54.5T722 1796q-35-40-59-84.5t-38-93.5q-5 0-8.5 1t-8.5 1q-8 0-15-2l-18-3q-78-19-119-77.5T415 1387q0-94 51-155.5t135-61.5q5 0 8 1t7 1q67-252 247.5-397T1293 630q267 0 447.5 147.5T1984 1172q4 0 7-1t8-1q74 0 130 54.5t56 160.5q0 82-31 136zM523 2192.5q-52-42.5-52-112.5 0-85 102-139.5t189-109T922 1684l39-51q40-52 99.5-104.5T1188 1476q23 0 43 10t20 21q0 18-39 35t-39 41q0 8 9 8t22-6l29-12q16-7 37.5-12.5t48.5-5.5q73 0 113.5 47.5T1473 1720q0 95-59.5 142.5T1290 1917l-18 2-16 3-46 9q-42 8-102 36t-125 82.5-136.5 104-116 65.5-89.5 16q-66 0-118-42.5zM2052 1950q39 23 62.5 56t23.5 74q0 70-51.5 112.5T1970 2235q-62 0-127-33t-136-91l-78-63q-54-43-107.5-71t-118.5-44q57-28 89.5-87t32.5-124q0-86-45-144t-120-71q3-11 20-21t43-10q72 0 138.5 61t131 153.5T1965 1900zm-594-741.5q25-30.5 61-30.5t60.5 31 24.5 73q0 43-24.5 73t-60.5 30q-35 0-60.5-29.5T1433 1282q0-43 25-73.5zm-437 0q25-30.5 61-30.5t60.5 31 24.5 73q0 43-24.5 73t-60.5 30q-35 0-60.5-29.5T996 1282q0-43 25-73.5zM2101 1406q0-5 1-10t1-9q0-50-26-79.5t-74-35.5q2 29 3.5 59t1.5 60q0 34-2 67.5t-7 67.5q4 2 12 2 39 0 62-34t28-88zM603 1526q-7-34-10-68t-3-69q0-29 3.5-59t5.5-58q-50 6-76 35.5t-26 84.5q0 10 7.5 47.5t29 63T593 1528q7 0 10-2zm642.5-122.5q16.5-11.5 58.5-11.5 30 0 49.5 8t19.5 25q0 21-21 39.5t-48 18.5q-29 0-52-14.5t-23-39.5q0-14 16.5-25.5zM1305 1967q44 11 82 18t73 21q-37 5-79.5 9.5t-84.5 4.5q-41 0-79-4t-70-9q36-15 74.5-22t83.5-18z"},"children":[]}]};exports.u1F64A=u1F64A;var u1F64B={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2245 2107.5q46 61.5 46 101.5 0 35-33.5 95.5t-146 123-300 103.5-415.5 41q-159 0-301.5-20.5t-257-56.5-183.5-77-104.5-81.5-43-70-40-103-74-220.5-60.5-320-22-280q-2-49-2-98 0-206 25.5-356T359 695q0-41-11.5-108.5T336 477q0-138 82.5-243.5T626 128q93 0 155.5 56.5T844 291q0 42-33.5 96T777 468q0 14 10.5 29t35.5 15q15 0 28-8t30-8q28 0 48 22.5t20 49.5q0 26-23 50.5T862 667l-145 91q-35 22-51.5 52T644 912l-10 143q-5 72-5 144v37q0 31 2 80t6 49q12 0 33.5-47t113-169T1010 934q107-73 229-113t252-40q194 0 391 91t293.5 260.5T2272 1528q0 107-20 210t-36.5 151.5-16.5 90.5q0 66 46 127.5zM1541.5 1520q-39.5-36-93.5-36-25 0-49.5 3.5t-48.5 3.5q-27 0-45-5t-30-16l-27-23q-14-11-29.5-19.5t-37.5-8.5q-63 0-95 36t-32 99q0 106 85 166t202 60q102 0 171-51.5t69-120.5q0-52-39.5-88zm-449-246q23.5 25 56.5 25 42 0 76.5-37t34.5-85q0-35-21-60.5t-58-25.5q-43 0-77.5 36t-34.5 83q0 39 23.5 64zm654.5-27.5q-22-26.5-58-26.5-43 0-77 37.5t-34 84.5q0 35 21.5 61t59.5 26q43 0 76.5-37.5t33.5-83.5q0-35-22-61.5z"},"children":[]}]};exports.u1F64B=u1F64B;var u1F64C={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2432 867q14 97 20 193.5t6 194.5q0 173-28 388t-92.5 402-114.5 242-164.5 112.5T1742 2499t-442 42q-244 0-447-43t-317.5-102-163-115-114-249.5T167 1621t-26-380q0-202 25.5-354T192 688q0-54-11-108t-11-109q0-138 83.5-242T460 125q70 0 144 51t74 112q0 46-33.5 98.5T611 467q0 14 10.5 28.5T655 510q15 0 28.5-7.5T711 495q30 0 51.5 20.5T784 564q0 49-79.5 96T558 748.5 484 851t-14 163.5-7 182.5v39q0 40 3.5 72t10.5 32q11 0 22-24.5t61-99.5 115-138 148.5-112 190.5-81q126-37 286-37 98 0 187 15t172.5 47 155.5 80 131.5 109 112.5 148 55.5 90 9.5 3 10-35.5 3-68.5v-39q0-63-6-168.5t-12-171-68-102.5l-55-34q-28-17-55-35l-38-22q-40-22-63-46.5t-23-53.5q0-28 21-48.5t50-20.5q15 0 28.5 7.5t27.5 7.5q24 0 34-15t10-29q0-28-33-82t-33-96q0-55 71.5-109t146.5-54q127 0 208.5 105t81.5 241q0 56-10.5 112T2409 693q0 45 8 86zM895 1444.5q9-15.5 31.5-32.5t54.5-17q25 0 45.5 11.5t35.5 27.5l7 9q5 8 13.5 12t16.5 4q15 0 24.5-11.5t9.5-24.5q0-11-5-19l-11-14q-21-25-56.5-46t-79.5-21q-40 0-72.5 15t-60 50.5T821 1436q-3 6-3 12 0 14 10 25t26 11q10 0 19-6.5t11-12 11-21zm738.5 166.5q-29.5-27-77.5-27-20 0-41.5 5t-42.5 11l-43 12q-30 9-66 12.5t-63 3.5q-28 0-64-4t-64-12l-42-12q-22-6-43.5-11t-42.5-5q-48 0-77.5 27t-29.5 67q0 93 115.5 170t231.5 77q152 0 265.5-77.5T1663 1678q0-40-29.5-67zm132.5-130q22-9 22-33v-10l-16-31q-16-30-53.5-57t-92.5-27q-44 0-80.5 21.5T1491 1390l-11 14q-6 9-6 19 0 14 9.5 25t24.5 11q10 0 17-4.5t14-11.5l8-11q12-15 33-26t48-11q30 0 53 16.5t30 31.5l10 17q4 11 13 17.5t20 6.5q3 0 6-1z"},"children":[]}]};exports.u1F64C=u1F64C;var u1F64D={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2150.5 2192.5Q1802 2309 1300 2309t-850.5-116.5T101 1918q0-100 44.5-228T340 1351t217-344.5T714 771t199-163q76-43 172-69.5t215-26.5q131 0 237.5 33t191.5 88 165.5 147.5 147 222.5 175.5 287 155.5 229.5 86.5 187 40 211.5q0 158-348.5 274.5zm-1058-921.5q45.5-24 45.5-48 0-14-10-24t-24-10q-12 0-22 7l-9 5q-14 9-36.5 16.5T989 1225q-49 0-79.5-23.5T866 1178q-14 0-24.5 10t-10.5 25q0 26 52.5 54t105.5 28q58 0 103.5-24zm369 162.5Q1387 1410 1301 1410q-92 0-154 18.5t-62 51.5q0 11 10.5 21t33.5 10q17 0 67.5-15t111.5-15q66 0 121.5 18.5t71.5 18.5q18 0 26.5-10t8.5-20q0-31-74.5-54.5zm297-244.5q-10.5-11-24.5-11-13 0-46 23.5t-78 23.5q-41 0-72-18t-42-18q-13 0-23.5 10t-10.5 24q0 25 45 48.5t104 23.5q53 0 105.5-28t52.5-53q0-14-10.5-25z"},"children":[]}]};exports.u1F64D=u1F64D;var u1F64E={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2151 2192q-348 117-851 117t-851-117-348-274q0-98 39.5-213.5t98-204.5T397 1266.5 560 999t143-216.5T875.5 630t209.5-92q96-26 215-26 169 0 309.5 58.5t246 167 179 252T2204 1270t161.5 236.5T2476 1761q23 79 23 157 0 157-348 274zM1069 1191.5q-4-16.5-11-32.5l-17 1q-31 0-68.5-10t-72.5-42q-26 18-41 49t-15 69q0 57 33 98t80 41q46 0 81-40t35-99q0-18-4-34.5zm250.5 442.5q-7.5-9-15.5-15l-8-5q-10-7-39.5-18.5T1227 1552q0-19 11-27.5t26-11.5l25-4q11-2 11-12t-12-13l-28-6q-17-3-29-13t-12-33q0-26 17-34t37-11l37-4q17-2 17-16 0-8-9.5-13.5t-17.5-5.5q-3 0-6 1l-8 2q-5 2-58.5 17.5T1174 1439q0 12 2.5 19.5t7.5 14.5l6 11q3 6 3 13 0 5-9 18.5t-9 32.5q0 33 33 60t41 43 33 16q15 0 30-5.5t15-13.5q0-5-7.5-14zm421.5-477q-15-31-41-49-35 32-72.5 42t-68.5 10l-17-1q-6 16-10.5 32.5t-4.5 34.5q0 59 34.5 99t80.5 40q48 0 81-41t33-98q0-38-15-69z"},"children":[]}]};exports.u1F64E=u1F64E;var u1F64F={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M492 1126l27-60q128-280 322-417t458-137q169 0 305 54.5t233.5 149T1999 918t99 190.5 186 224.5 198 254 47 216q0 187-82.5 288T2223 2243.5t-359 51.5q-210 0-314.5-31t-160-97-55.5-167q0-62 3-116.5t3-112.5q0-32-1-63.5t-3-63.5v-7q0-4-2-8 11-59 27.5-79t37.5-20q17 0 30 16.5t26 47.5l11 28q22 55 42.5 162.5t100.5 159 213 51.5q217 0 297-42t80-121q0-8-2.5-15t-11.5-7q-25 0-64 57.5t-299 57.5q-87 0-136.5-21t-72-47.5-37.5-98.5l-11-52q-6-26-13.5-53.5T1532 1596l-3-10-17-38q-17-38-46-63.5t-67-25.5q-29 0-56 16t-44 44q-17-25-44-42.5t-56-17.5q-38 0-70 27.5t-59 99.5l-4 10q-12 29-19.5 57t-13.5 54l-11 52q-16 70-39 97t-72.5 48-135.5 21l-16-2q-114 0-193.5-14.5t-105.5-54-44-39.5q-6 0-11.5 3t-5.5 12q0 8 2 18l6 36q9 45 96.5 78t259.5 33q148 0 227.5-53.5t97.5-158 42-161.5l12-28q13-32 26.5-48t30.5-16q22 0 38.5 24.5t25.5 74.5q0 4-1 8v7q-6 68-6 137 0 56 3.5 108t3.5 111q0 101-56 166.5t-162.5 97T733 2295q-312 0-487-115.5T71 1774q0-100 55.5-210t176-219.5T492 1126zm294 99q4 0 47 17.5t98 46.5h-17q-82 0-118.5 12.5T759 1338q0 15 10.5 25t24.5 10q2 0 4.5-1t4.5-1q29-7 59.5-9.5t59.5-2.5q53 0 94 5.5t42 5.5l5 1q14 0 25.5-10.5t11.5-24.5q0-31-93.5-85.5T841 1169l-31-11q-4-2-6-2h-5q-14 0-25 9.5t-11 24.5q0 11 6 20.5t17 14.5zm722 136q11 10 25 10l47-7q18-2 42.5-3.5t52.5-1.5q29 0 60 2.5t60 9.5q2 0 4 1t4 1q14 0 24.5-10t10.5-25q0-24-35.5-36.5T1682 1289h-18q57-31 96-46l50-18q11-5 17.5-14.5t6.5-20.5q0-15-11-24.5t-24-9.5q-7 0-11 2l-31 11h-1q-75 28-167 82.5t-92 85.5q0 14 11 24z"},"children":[]}]};exports.u1F64F=u1F64F;var u1F680={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1608 1830l46 46q-30 17-61 27t-59 10q-18 0-29.5-3.5T1473 1898l-4-3q-35-20-60.5-30t-148-80-233.5-148.5T820 1473t-177.5-174.5-143-176.5-98-154.5T337 825q89-40 178-132t125-192q142 46 262 115t235.5 163 223 207.5 199.5 241 161 247 73.5 136.5 4.5 38q0 44-23 93-24-21-48.5-41t-47.5-43l-22-21q-25-22-43-30.5t-38-8.5q-34 0-54.5 20.5T1502 1668q0 49 50.5 102.5t55.5 59.5zm-159 141q24 11 39.5 26.5t15.5 34.5q0 16-9 33t-42 96l-51 119-25 54q-12 27-24 55.5t-25 62.5q17 12 29 24.5t12 28.5q0 14-11.5 30t-26.5 29l-17 14q-56-40-99.5-87T1095 2381t-92-112q8-15 13-23t17-8q25 0 56.5 26t36.5 29l3-10q4-19 23-135.5t20-145.5l3-85h-1q2-41 6-69t16-28q3 0 10 4l34 22q8 6 23.5 14t36.5 22l40 28q20 14 40.5 26.5t41.5 21.5l28 13h-1zm992-596l-13 18q-12 17-27.5 29.5T2372 1435q-16 0-29.5-11.5T2317 1398q-25 16-52 27l-41 18q-35 14-66.5 33t-64.5 36l-81 40q-52 26-71.5 37.5T1906 1601q-19 0-35-15t-27-36l-14-26q-21-42-53.5-79t-58.5-77l-36-53q-5-6-5-7 0-8 14-14.5t41-10.5l20-3q104-7 156-18t147.5-32.5 88.5-21.5q-5-6-32.5-37t-27.5-54q0-12 7-17t23-14q49 14 107.5 76.5t98 95 79.5 71.5zM584 483q-19 76-89 151.5T317 768q-18-54-28.5-104.5T278 566q0-31 11-59l-44-41q-24-24-37-35.5T188 411l-14-15q-7-8-11.5-16t-4.5-16q0-11 7.5-15.5T184 344q22 0 46 25t56 48 48 44q15-6 31-8.5t34-2.5q40 0 87 9.5t98 23.5zm1326 1459q-8 15-31.5 37.5T1839 2002q-27 0-58-42.5t-49.5-58.5-79-84-80.5-92-20-43q0-11 8-16t22-15q51 15 107.5 76t118.5 114 102 101zM845 865q-28-26-63-26t-62 26-27 63q0 36 27 63t62 27q38 0 64.5-26.5T873 928t-28-63zm476 447q-27-28-63-28-35 0-62 27.5t-27 61.5q0 37 27.5 64t62.5 27q38 0 63.5-26.5t25.5-64.5q0-33-27-61zm-238-224.5q-27-26.5-62-26.5-34 0-61.5 27t-27.5 65q0 36 25.5 61.5t63.5 25.5q39 0 64-26.5t25-62.5q0-37-27-63.5z"},"children":[]}]};exports.u1F680=u1F680;var u1F681={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2412.5 1233q-66.5 66-158.5 66-45 0-84-16t-69-45l177-51q40-8 67-41l-709 205-19 52q-41 106-119.5 226T1306 1798l72 267h224q17 0 28 11.5t11 28.5q0 16-11 27.5t-28 11.5H570q-65 0-114.5-49T406 1959q0-17 11.5-28.5T446 1919q16 0 27.5 11.5T485 1959q0 53 28 79.5t59 26.5h128l33-233h-38q-129 0-254.5-15T271 1749t-44-124q0-94 67.5-183t87.5-147l14-41q51-153 191-279t400-126h35l34 2v-63h52v-69q-400-2-667.5-44T173 582q0-54 285-95.5t699-41.5q413 0 698 41.5t285 95.5q0 50-261 92t-673 45v69h52v97q89 23 177 63t155 84l737-46q-32-27-74-27h-10l-10 2-179 11q29-54 81.5-88t118.5-34q92 0 158.5 65.5T2479 1074t-66.5 159zM919 1464q63 0 97-23.5t34-73.5v-300q0-80-32-103t-95-23q-115 0-214.5 59T539 1171.5 469 1368q0 43 21.5 69.5T561 1464h358zm312 358q-17 5-36 7.5t-33 2.5H812l-32 233h516z"},"children":[]}]};exports.u1F681=u1F681;var u1F682={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1550 690h830v1115h-146q-28-99-111-164t-189-65q-93 0-173 53t-117 146h20q32-77 105-128t165-51q107 0 189 70t98 175h159v173h-183q-37 76-108 121t-155 45q-86 0-156.5-45T1670 2014h-57q-37 76-108 121t-155 45q-85 0-155.5-45.5T1087 2014h-60q-14 71-71 118.5T825 2180t-131-47-71-119h-4v161H80v-112h75l174-258h54q48-35 80-130.5t32-223.5q0-121-31-218t-81-136h89L321 609h576l-150 488q56 52 87 140.5t31 211.5q0 107-24 190.5T776 1774l24-4q12-2 25-2h2q35-49 56-131.5t21-184.5q0-128-32-223.5T792 1098h103V978q0-40 34-67.5t79-27.5q46 0 80 27.5t34 67.5v120h58V908q0-38 34-65.5t79-27.5q50 0 81.5 28.5T1406 908v190h144V690zm386 561q0 23 15.5 38t37.5 15h237q23 0 38-15t15-38V842q0-22-15-37.5t-38-15.5h-237q-22 0-37.5 15.5T1936 842v409zm558-731v131H1437V520h1057zM242.5 1215.5Q282 1117 329 1117t86.5 98.5T455 1451q0 139-39.5 237t-86.5 98-86.5-98-39.5-237q0-137 39.5-235.5zM1530 1904h-115q-20 0-34.5-14.5T1366 1855t14.5-34 34.5-14h96q-23-45-65-72.5t-96-27.5q-75 0-128 53.5t-53 127.5q0 75 53 128t128 53q69 0 121.5-48t58.5-117zm244-97h124q20 0 34 14t14 34-14 34.5-34 14.5h-143q6 71 58.5 118t121.5 47q75 0 127.5-53.5T2115 1888t-52.5-127.5T1935 1707q-54 0-96 27.5t-65 72.5zM889 481H328l57-133h445zm-612 39h665v50H277v-50zm1363 1255q-36-91-116-145t-174-54q-108 0-191 66t-109 163H942q11 8 20.5 16.5T981 1841h81q18-106 99-175.5t189-69.5q89 0 161.5 49t107.5 130h21zm-971 66q16-20 38-36h-88v36h50z"},"children":[]}]};exports.u1F682=u1F682;var u1F683={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2256 1874q0 21-14 35.5t-35 14.5h-167q0-4 1-14 0-92-66.5-159t-161.5-67q-99 0-163.5 70t-64.5 170H969q0-100-64.5-170T741 1684q-98 0-162.5 69T514 1924H392q-21 0-35-14.5t-14-35.5v-823q0-116 87.5-168.5T685 830h1232q167 0 253 53t86 168v823zM867 1111q0-20-14-33t-34-13H663q-20 0-34 13t-14 33v254q0 20 14 34t34 14h156q20 0 34-14t14-34v-254zm429 0q0-20-13.5-33t-34.5-13h-156q-20 0-33.5 13t-13.5 33v254q0 20 13.5 34t33.5 14h156q21 0 34.5-14t13.5-34v-254zm348 0q0-20-13.5-33t-34.5-13h-156q-20 0-33.5 13t-13.5 33v254q0 20 13.5 34t33.5 14h156q21 0 34.5-14t13.5-34v-254zm337 0q0-20-14-33t-34-13h-155q-20 0-34 13t-14 33v254q0 20 14 34t34 14h155q20 0 34-14t14-34v-254zM859.5 2029q-50.5 50-118.5 50t-118-49.5-50-119.5q0-68 49-117.5t119-49.5 119.5 50 49.5 117q0 69-50.5 119zm1071.5.5q-50 49.5-118 49.5-69 0-118.5-50.5T1645 1910q0-66 48.5-116.5T1813 1743q70 0 119 49.5t49 117.5q0 70-50 119.5z"},"children":[]}]};exports.u1F683=u1F683;var u1F684={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2244 1078q2 0 28 19t26 63v62l-56 41-91 68-253 192q-72 55-148 114l-151 119q-177 141-350 209.5T893 2034q-133 0-273-34.5t-222-100-94-157.5l2-7q11-91 52-170t163.5-195T676 1160t78.5-189 117-177.5 178-125T1284 626q118 0 234.5 36.5T1739 759t204 122zm-755-26v-18q0-50-17.5-79t-45.5-29q-13 0-31 8.5t-49 30.5l-28 20q-25 17-55.5 25.5T1133 1019q-47 0-92-3-36 0-70.5-9T929 962l-3-18q-2-8-5-13t-10-5q-23 0-64 37t-83 126.5-42 160.5q0 94 96.5 126t259.5 32q104 0 166.5-22t115.5-71 91-134 38-129zm-243.5 976.5Q1415 1964 1554 1854t273-220l471-388v28l-590 579-41 44q-23 26-66.5 66.5t-93 75-87 54.5-70 32.5-71 24-95.5 21.5-117.5 14.5T934 2190q-282 0-449-86.5T301 1852q55 119 235 180t361 61q179 0 348.5-64.5zM1882 1093q0-31-13.5-58t-35.5-35l-34-13q-5-2-9.5-3t-9.5-1q-23 0-38.5 21.5T1726 1060v215q0 37 17 59.5t42 22.5l14-2 34-11q22-8 35.5-33t13.5-58v-160zm-719 568.5q-17-19.5-46-19.5-48 0-87 42.5t-39 86.5q0 32 17.5 48t43.5 16q47 0 87.5-41.5t40.5-82.5q0-30-17-49.5zm-595.5-101Q551 1540 528 1540q-33 0-60.5 39t-27.5 78q0 31 15 53.5t40 22.5q35 0 62-35.5t27-81.5q0-35-16.5-55.5zM2043 1122q0-22-9-41t-23-24l-20-5q-2 0-3.5-1t-3.5-1q-14 0-23 16t-9 39v141q0 25 9.5 41t23.5 16q2 0 3-1t3-1l20-4q14-3 23-22t9-40v-113zm94 11q0-17-5.5-29.5T2118 1089l-16-4q-8 0-15 11.5t-7 30.5v104q0 18 6 29t14 11q3 0 4-1l14-6q8-3 13.5-16.5t5.5-29.5v-85zm56 6q0-12-3-22t-8-12l-9-1q-5 0-8 9t-3 22v77q0 14 3 22t9 8l8-3q5-2 8-12.5t3-22.5v-65zm36 3q0-9-2-17.5t-5-8.5l-5-1q-3 0-6 6.5t-3 19.5v60q0 13 3 19t6 6l5-3q3 0 5-8.5t2-18.5v-54z"},"children":[]}]};exports.u1F684=u1F684;var u1F685={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2304 1553l-8 68q-463 160-789.5 230.5T918 1922q-175 0-293-31t-179-79.5-107.5-138T292 1474q0-112 51.5-215.5T478 1093t232-102q70-124 167-174.5t237-50.5h27q68-84 101-84 23 0 41 8t18 17q0 8-13.5 16t-13.5 25q0 14 3 29 180 24 333.5 90.5T1896 1032l160 118q126 96 189 151.5t63 183.5q0 34-4 68zm-260 177l248-89q-16 94-75 125t-163 70l-282 105q-263 98-466 148t-395 50q-181 0-287.5-18T438 2072l-31-13q-33-14-66.5-36.5T307 1980q0-13 22-63.5t44-90.5q58 68 194 109t334 41q227 0 522-65t621-181zm-1591.5-83q71.5 70 187.5 70 118 0 189.5-70t71.5-180q0-106-79-185t-195-79q-112 0-179 76.5T381 1473q0 104 71.5 174zM880 880.5Q811 910 781 974q72-12 144-12 151 0 277 24.5t205 67.5q3-13 4-24t1-22q0-82-97.5-119.5T1056 851q-107 0-176 29.5zm623.5 117q-8.5 21.5-8.5 68.5 0 82 18.5 124t59.5 42q38 0 38-89 0-99-24.5-133t-54.5-34q-20 0-28.5 21.5zM1205 1460q-24-24-58-24-35 0-59.5 23t-24.5 59 25 59 60 23q34 0 57.5-24.5t23.5-57.5q0-34-24-58zm548.5-222q6.5-18 6.5-58 0-130-61-130-15 0-21.5 16.5t-6.5 54.5q0 80 18 107.5t41 27.5q17 0 23.5-18zm130.5-17q0-57-10.5-86t-36.5-29q-22 0-22 61 0 65 13.5 87t33.5 22q22 0 22-55zm100 20q0-43-8.5-66t-28.5-23q-17 0-17 48 0 56 11 72.5t23 16.5q20 0 20-48zm68 73l6 1q13 0 13-35 0-32-7-51t-23-19q-12 0-12 35 0 34 4.5 50t18.5 19zm78 20q2 2 4 2 14 0 14-30 0-25-6-39.5t-20-14.5q-12 0-12 29 0 50 20 53z"},"children":[]}]};exports.u1F685=u1F685;var u1F686={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1723 347q144 0 247 103t103 247v964q0 134-90.5 233.5T1761 2008v172q0 32-22.5 54.5T1685 2257q-32 0-54.5-22.5T1608 2180v-170H992v170q0 32-22.5 54.5T915 2257t-54-22.5-22-54.5v-172q-133-14-222.5-113.5T527 1661V697q0-144 103-247t247-103h846zM901 1570.5q-38-36.5-89-36.5-53 0-90 37t-37 90q0 52 37 89.5t90 37.5q51 0 89-37t38-90q0-54-38-90.5zm976.5.5q-37.5-37-88.5-37-53 0-90 37t-37 90q0 52 37 89.5t90 37.5q52 0 89-37.5t37-89.5q0-53-37.5-90zm40.5-919q0-76-56-132t-132-56H870q-77 0-133 55.5T681 652v239q0 77 56 133t133 56h860q77 0 132.5-56t55.5-133V652z"},"children":[]}]};exports.u1F686=u1F686;var u1F687={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2119.5 1907Q1991 2128 1771 2254t-472 126q-253 0-474-127t-347.5-348T351 1431q0-252 127-473t348-348 473-127q251 0 471.5 126t349 346.5T2248 1431t-128.5 476zM1824 1120q0-99-70-168t-167-69h-575q-99 0-168.5 70T774 1120v653q0 93 62.5 161t149.5 76v102q0 21 15.5 35.5t37.5 14.5q21 0 35.5-14.5t14.5-35.5v-100h419v100q0 21 15.5 35.5t36.5 14.5q22 0 36.5-14.5t14.5-35.5v-102q87-8 150-76t63-161v-653zm-232-159q52 0 89.5 37.5t37.5 91.5v161q0 54-37.5 91.5T1592 1380h-585q-54 0-90.5-38t-36.5-91v-161q0-53 36.5-91t90.5-38h585zm-563.5 873.5Q1003 1861 967 1861q-35 0-60.5-25.5T881 1775q0-36 26.5-61.5T967 1688q36 0 61.5 25.5t25.5 61.5q0 33-25.5 59.5zm663 0Q1666 1861 1630 1861q-34 0-60-25.5t-26-60.5q0-36 25-61.5t61-25.5 61.5 25.5 25.5 61.5q0 33-25.5 59.5z"},"children":[]}]};exports.u1F687=u1F687;var u1F688={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2431 1477q2 8 3 17t1 19q0 19-3 38t-8 33l-58 167q17 6 31.5 20t14.5 32v106q0 23-11 39t-34 16h-213q-20 29-51 46.5t-69 17.5-69.5-17.5-50.5-46.5h-50q-20 29-51.5 46.5T1744 2028q-38 0-69.5-17.5T1623 1964H977q-20 29-51 46.5t-69 17.5-69-17.5-51-46.5h-50q-20 29-51.5 46.5T567 2028q-38 0-69.5-17.5T446 1964H227q-23 0-36.5-16t-13.5-39v-105q0-23 17-38.5t39-17.5l-58-164q-5-14-7.5-32t-2.5-36q0-11 1-21t3-18l97-447q21-94 96-163t169-69h907l131-130-167-168h-153v-88q0-23 16.5-39.5T1305 356h350q23 0 39.5 16.5T1711 412v88h-143l126 126q17 19 17 42 0 24-17 41l-89 89h464q94 0 169 69t96 163zm-707-457q0-23-17-39t-41-16h-245q-23 0-40.5 16t-17.5 39v384q0 23 17.5 39.5t40.5 16.5h245q24 0 41-16.5t17-39.5v-384zm-488 0q0-23-17-39t-41-16H933q-23 0-40.5 16t-17.5 39v384q0 23 17.5 39.5T933 1460h245q24 0 41-16.5t17-39.5v-384zm957 440q21 0 35-13t14-32q0-7-1-10l-69-345q-10-48-40.5-73.5T2063 961h-154q-23 0-40.5 16.5T1851 1017v387q0 23 17.5 39.5t40.5 16.5h284zM748 1017q0-23-17-39.5T690 961H537q-38 0-68 25.5t-40 73.5l-70 345q0 3-1 10 0 19 14 32t35 13h283q24 0 41-16.5t17-39.5v-387z"},"children":[]}]};exports.u1F688=u1F688;var u1F689={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1364 932q109 0 187.5 78.5T1630 1198v733q0 100-68 176t-169 88v113q0 24-17 40.5t-40 16.5q-25 0-42-16.5t-17-40.5v-111H808v111q0 24-17 40.5t-40 16.5q-25 0-41.5-16.5T693 2308v-113q-102-12-170-88t-68-176v-733q0-109 78-187.5T720 932h644zm-767 430q0 55 40 95.5t96 40.5h618q57 0 97-40t40-96v-171q0-55-40-95.5t-97-40.5H733q-57 0-96.5 40.5T597 1191v171zm160 489.5q-27-27.5-65-27.5t-64.5 27-26.5 65q0 36 26.5 63t64.5 27 65-27.5 27-62.5q0-37-27-64.5zm701.5-1Q1432 1824 1393 1824q-38 0-64 27t-26 65q0 36 25.5 63t64.5 27 65.5-26.5 26.5-63.5q0-39-26.5-65.5zM2145 2365h-445v-415q0-34 24-58t58-24h196V939l-689-444q-19-11-28.5-30t-9.5-40q0-35 25-58.5t58-23.5q25 0 45 12l727 469q18 11 28 29.5t11 38.5v1473z"},"children":[]}]};exports.u1F689=u1F689;var u1F68A={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1713 607q140 0 241 101t101 241v941q0 130-87.5 228T1750 2230v169q0 31-21.5 52.5T1676 2473t-53-21.5-22-52.5v-167H998v167q0 31-21.5 52.5T924 2473t-52.5-21.5T850 2399v-169q-130-14-218-111.5T544 1890V949q0-140 101-241t241-101h130V348q-38 14-61 39.5T932 419q-8 16-22.5 24.5T878 452q-26 0-42.5-18T819 394q0-13 6-25l15-26q26-44 87.5-83.5T1075 220h450q84 0 146 39.5t89 83.5l15 26q5 13 5 24 0 23-16.5 41.5T1721 453q-17 0-31.5-9t-22.5-25q0-5-22.5-31t-61.5-40v259h130zm-580 0h333V338h-333v269zM909.5 1803q-36.5-36-86.5-36-52 0-88 36t-36 88q0 53 37.5 88.5T823 2015q48 0 85.5-35.5T946 1891q0-52-36.5-88zm955.5 0q-36-36-88-36-53 0-88.5 37.5T1653 1891q0 51 36.5 87.5t87.5 36.5q49 0 86.5-35.5t37.5-88.5q0-52-36-88zm40-898q0-75-54.5-129.5T1721 721H880q-76 0-130.5 54T695 905v437q0 76 54.5 130.5T880 1527h841q76 0 130-54.5t54-130.5V905z"},"children":[]}]};exports.u1F68A=u1F68A;var u1F68B={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2358 1855q0 45-33 78t-78 33h-21q-4 61-46.5 100t-98.5 39q-57 0-99.5-40t-44.5-99h-1q-4 62-46.5 100.5T1791 2105q-57 0-99.5-40t-44.5-99H937q-2 59-44.5 99t-99.5 40q-58 0-100.5-41t-44.5-98h-1q-2 59-44.5 99t-99.5 40q-58 0-100.5-40t-44.5-99h-5q-45 0-79-32.5t-34-78.5v-723q0-91 66-157t157-66h675l131-130-168-168H949v-88q0-23 16-39.5t39-16.5h351q23 0 39.5 16.5T1411 523v88h-142l125 126q17 19 17 42 0 24-17 41l-88 89h831q90 0 156.5 65.5T2360 1130zM766 1183q0-20-14-34.5t-34-14.5H468q-20 0-34.5 14.5T419 1183v364q0 20 14.5 34t34.5 14h250q20 0 34-14t14-34v-364zm471 0q0-20-14.5-34.5T1188 1134H938q-20 0-34 14.5t-14 34.5v364q0 20 14 34t34 14h250q20 0 34.5-14t14.5-34v-364zm470 0q0-20-14.5-34.5T1658 1134h-249q-20 0-34.5 14.5T1360 1183v364q0 20 14.5 34t34.5 14h249q20 0 34.5-14t14.5-34v-364zm470 0q0-20-14-34.5t-34-14.5h-250q-20 0-34.5 14.5T1830 1183v364q0 20 14.5 34t34.5 14h250q20 0 34-14t14-34v-364z"},"children":[]}]};exports.u1F68B=u1F68B;var u1F68C={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2230 1581q0 32-21.5 67t-56.5 70q0 5 1 10.5t1 11.5q0 111-25.5 164.5T2056 1958q-28 0-51-22.5t-35-76.5q-75 51-134.5 89.5T1723 2007q-2 101-33 153t-90 52q-52 0-83.5-41.5T1478 2047H800q-7 83-38.5 124t-83.5 41q-54 0-85.5-44.5T556 2034q-81-24-133.5-94.5T370 1782V847q0-98 69.5-160T619 625h1408q110 0 156.5 55t46.5 165v736zM552 1281q0 35 26 62t63 27h743q37 0 63-27t26-62V881q0-38-26-63.5t-63-25.5H641q-37 0-63 25.5T552 881v400zm1332-421q0-28-14.5-48t-36.5-20h-108q-30 0-53 25.5t-23 63.5v400q0 26 12 40.5t32 14.5q16 0 32-10l108-60q22-13 36.5-41.5t14.5-56.5V860zm133 244q0 20 6 31.5t15 11.5q2 0 5-1l5-2 49-28q10-6 17-23.5t7-37.5V841q0-20-7-34.5t-17-14.5h-49q-12 0-21.5 17t-9.5 40v255zm-527 640q-29-29-71-29t-71 29-29 71q0 41 28.5 70.5t71.5 29.5 71.5-29.5 28.5-70.5q0-42-29-71zm-817.5 141.5Q701 1856 701 1815t-29.5-70.5T601 1715q-42 0-71 29t-29 71 29 71 71 29q43 0 71.5-29.5z"},"children":[]}]};exports.u1F68C=u1F68C;var u1F68D={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2054 1379l2 56v511q0 23-16 39.5t-39 16.5h-91v138q0 40-27 67.5t-67 27.5q-39 0-66.5-28t-27.5-67v-138H877v138q0 40-28 67.5t-66 27.5q-39 0-66.5-28t-27.5-67v-138h-91q-23 0-39-16.5t-16-39.5v-455l1-56q0-33 2-56l39-727q2-28 19-62t98.5-75 231-72 356.5-31q178 0 323.5 24.5T1865 506t126.5 80 23.5 66zM933 548q-26 0-44.5 18.5T870 611t18.5 44 44.5 18h715q26 0 44-18t18-44-18-44.5-44-18.5H933zm-249 899h1232l-19-689H702zm179.5 209.5Q832 1625 789 1625q-44 0-75 32t-31 74 31 74 75 32q43 0 74.5-31.5T895 1731t-31.5-74.5zm1028.5.5q-31-32-74-32-44 0-75 32t-31 74 31 74 75 32q43 0 74-32t31-74-31-74z"},"children":[]}]};exports.u1F68D=u1F68D;var u1F68E={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2257 1890q0 20-14.5 34.5T2208 1939h-92q-12-86-79.5-146.5T1879 1732q-91 0-158.5 60.5T1641 1939H948q-12-86-79.5-146.5T711 1732q-91 0-158.5 60.5T473 1939h-82q-21 0-34.5-14.5T343 1890v-779q0-114 85-168t255-54h451V775q0-13 8.5-21.5t20.5-8.5h157l489-302q7-5 20-5 16 0 28 11t12 28q0 10-5 19.5t-13 14.5l-382 235q11 0 19 8.5t8 20.5v114h420q170 0 255.5 53.5T2257 1111v779zM850 1171q0-21-15-35t-35-14H638q-20 0-34.5 14t-14.5 35v263q0 21 14.5 35.5T638 1484h162q20 0 35-14.5t15-35.5v-263zm446 0q0-21-15-35t-35-14h-162q-20 0-34.5 14t-14.5 35v263q0 21 14.5 35.5t34.5 14.5h162q20 0 35-14.5t15-35.5v-263zm361 0q0-21-14.5-35t-35.5-14h-161q-21 0-35.5 14t-14.5 35v263q0 21 14.5 35.5t35.5 14.5h161q21 0 35.5-14.5t14.5-35.5v-263zm350 0q0-21-14.5-35t-35.5-14h-161q-21 0-35.5 14t-14.5 35v263q0 21 14.5 35.5t35.5 14.5h161q21 0 35.5-14.5t14.5-35.5v-263zM582.5 2099.5Q530 2046 530 1972q0-73 52-127t129-54q76 0 128.5 54.5T892 1972q0 73-53 127t-128 54q-76 0-128.5-53.5zm1168 .5q-53.5-53-53.5-128 0-74 53-127.5t129-53.5 128.5 54.5T2060 1972q0 73-53 127t-128 54-128.5-53z"},"children":[]}]};exports.u1F68E=u1F68E;var u1F68F={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1585 2313q33 0 55.5 22.5t22.5 54.5v188H927v-188q0-30 23-53.5t55-23.5h226v-204H992q-21 0-35.5-14.5T942 2060v-958q0-20 14.5-34t35.5-14h239v-51q-136-24-226-131.5T915 625q0-157 113.5-271T1300 240t271.5 113.5T1685 625q0 141-92 249.5T1360 1005v49h240q20 0 34 14t14 34v958q0 20-14 34.5t-34 14.5h-240v204h225zM1047 494h508q-39-74-108-114.5T1300 339q-84 0-151 43t-102 112zm528 207q11-38 11-76 0-13-1-26t-4-26h-562q-5 28-5 52 0 38 11 76h550zm-516 78q38 60 104 96.5t137 36.5q75 0 138.5-36.5T1541 779h-482zm-18 1231h510v-859h-510v859z"},"children":[]}]};exports.u1F68F=u1F68F;var u1F690={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M684.5 2098q-53.5-53-53.5-128 0-74 53-127.5t129-53.5 128.5 54.5T994 1970q0 73-53 127t-128 54-128.5-53zm1013.5 0q-53-53-53-128 0-74 53-127.5t128-53.5 128 53 53 128-53.5 128-127.5 53q-75 0-128-53zm659-532q0 74-27 176t-93.5 165-170.5 63q0-98-71-169t-169-71q-99 0-169.5 71t-70.5 169h-534q0-97-70-168.5T813 1730t-170 71-71 169h-27q-132 0-216.5-72.5T244 1694q0-70 25.5-148.5T366 1415l47-33q56-39 81.5-69t52.5-74l94-151q108-174 185-264.5t131-114 224-41.5 402-18q217 0 379 25.5t215 67.5 91 131 63.5 325.5T2357 1566zm-1287-348q0-21 1-45.5t1-48.5q0-79-7-106.5t-21-38-66-10.5q-126 0-157 37t-90.5 159-59.5 146q0 17 11 28t31 11h300q32 0 43.5-22.5t11.5-51.5zm419.5-239.5Q1447 963 1276 963q-98 0-103.5 99.5T1167 1225q0 90 14.5 106.5T1310 1348q32 0 60-1h43l29 1q73 0 81.5-49.5t8.5-143.5q0-161-42.5-176.5zM2199 1076q-19-94-96-102.5t-222-8.5q-40 0-108.5 1t-67.5 1q-67 0-75.5 31.5T1621 1155q0 176 31.5 189t125.5 13q39 0 84-1l154-4q30 0 42-1 100 0 130-18.5t30-59.5q0-103-19-197z"},"children":[]}]};exports.u1F690=u1F690;var u1F691={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2281 1966q-75 123-212 123h-15q0-96-68.5-164t-161.5-68q-94 0-163 68t-69 164h-543q0-96-68.5-164T818 1857t-163 69-69 163h-43q-131 0-215.5-72T243 1813q0-73 24.5-149.5T365 1535l47-33q23-17 44.5-34.5T492 1433l32-42q12-17 22-33l47-77 58-92q63-99 132-156t176-65.5 315-8.5h192q60 0 118.5-1t118.5-1q251 0 396.5 77.5t201 220.5 55.5 364q0 224-75 347zm-166-496q69 0 84-18.5t15-62.5q0-68-58.5-156.5t-150-124.5-281.5-36q-79 0-99.5 10t-20.5 66q0 17 1 34t1 34v165q0 7-1 14t-1 13q0 29 14.5 46.5t59.5 17.5q14 0 27-1t25-1h385zM999 924q-13 0-21.5-8t-8.5-22v-70q0-12 9-21t24-9q0-106 37.5-157.5T1145 585t105.5 50.5T1291 794q15 0 23 9t8 21v70q0 14-8 22t-21 8H999zm-59 1287q-51 50-122 50t-122-50-51-122 50.5-122.5T818 1916t122.5 50.5T991 2089t-51 122zm1004 0q-51 50-120 50-71 0-122-50t-51-122 50.5-122.5T1824 1916q70 0 120.5 51t50.5 122q0 72-51 122zM984 1175l1-16v-20q0-17-4-31t-21-14q-7 0-15 2l-15 4q-61 14-116.5 69T711 1319l-13 27q-10 20-19.5 47t-9.5 40q0 17 11 27t30 10h218q23 0 39.5-16t16.5-39v-240zm471 127q0-9-6.5-16t-16.5-7h-62v-61q0-10-6.5-16t-15.5-6h-97q-23 0-23 22v61h-62q-9 0-15.5 7t-6.5 16v98q0 9 6.5 15.5t15.5 6.5h62v61q0 11 6 17.5t17 6.5h97q9 0 15.5-6.5t6.5-17.5v-61h62q10 0 16.5-6.5t6.5-15.5v-98zm-62-556q-8 0-15-7.5t-7-16.5q0-8 4-15t11-10l222-101q5-2 11-2 10 0 17 6.5t9 15.5l20 138v6q0 11-8.5 18t-17.5 7zm-741 39q-8 0-16-7t-8-18v-6l19-138q0-8 7.5-15t18.5-7h5q2 0 4 2l224 101q6 4 10.5 10.5T921 722q0 9-7 16t-15 8z"},"children":[]}]};exports.u1F691=u1F691;var u1F692={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2377 1005l-32 66v1130q0 23-16.5 39t-39.5 16h-108q0-93-68-161.5t-164-68.5q-95 0-163 67.5t-68 162.5H851q0-92-68-161t-164-69q-95 0-163 67.5T388 2256h-89q-23 0-49.5-27.5T223 2174v-530l60-347q10-62 53-99.5t93-37.5h98q-7-7-7-18v-71q0-12 9.5-20.5t23.5-8.5q0-104 36.5-157.5T697 831t108 53 37 158q15 0 23.5 8.5t8.5 20.5v71q0 10-6 18h269q23 0 39.5 16.5t16.5 39.5v99h323v-299L364 464l166-345zm-693 409.5q-85 84.5-85 203.5 0 54 19 102.5t53 87.5h-437v98h654q119 0 203-84.5t84-203.5q0-117-84.5-202.5T1888 1330q-119 0-204 84.5zm337.5 69Q2077 1540 2077 1618q0 77-55.5 133.5T1888 1808q-79 0-135-56.5t-56-133.5q0-79 56-135t135-56q78 0 133.5 56.5zM679 1318q0-24-16-40t-40-16H460q-23 0-41.5 15.5T397 1316l-40 266v7q0 21 14 34.5t34 13.5h218q24 0 40-16t16-39v-264zm1392.5 1060.5Q2021 2429 1949 2429t-122-51-50-122q0-69 50-120t122-51q71 0 122 50.5t51 120.5q0 72-50.5 122.5zm-1330 0Q691 2429 619 2429q-71 0-122-51.5T446 2256q0-68 51-119.5t122-51.5 122 50.5 51 120.5q0 72-50.5 122.5zM1040 1541q17 0 32.5-13.5t15.5-34.5v-185q0-20-15-34t-33-14H862q-21 0-35.5 14t-14.5 34v185q0 20 14.5 34t35.5 14h178zM904 978q-6 0-11-6t-5-13 9-18l129-85q4-4 12-4 7 0 12.5 6t5.5 12l18 112q0 23-23 23zm-563 27q-21 0-21-23l18-112q2-6 6-12t12-6q7 0 12 4l129 85q10 7 10 17 0 7-4.5 13t-12.5 7zm1581-131l-171-82-76 159zm-543-66l247-77-171-82zm329 214l170 82 77-159zM820 596l170 82 76-159zm-32-71l245-77-170-82zM566 225l-76 157 247-77zm-43 230l171 81 76-158zm1524 479l-76 158 247-77zm-963-268l246-77-171-81zm328 213l170 83 77-158zm762 366l77-157-247 76zM1116 738l170 81 77-157z"},"children":[]}]};exports.u1F692=u1F692;var u1F693={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2312.5 2030.5Q2241 2112 2132 2112h-14q0-94-68.5-162.5T1886 1881q-97 0-164 68.5t-67 162.5H945q0-96-67-163.5T715 1881q-95 0-163.5 67T483 2111q-60-7-135-56.5t-103.5-99T216 1805q0-196 88.5-267t212.5-89l40-5 24-40q136-231 218.5-304t188-111.5T1323 950q191 0 303 26t190 76.5 137.5 124.5 121.5 230l14 37 30 7q63 16 131 59.5t101 129 33 182.5q0 127-71.5 208.5zM2285 1693q-25-89-91-125t-114-46-63-50l-19-47q-61-145-112-205.5t-113.5-102-165-64.5-284.5-23q-89 0-161 5.5t-135 25-117 54.5-99 87.5T710 1345t-81 132.5-69 46-106 25-97.5 47T308 1693h1977zm-435.5-231.5Q1833 1479 1796 1479h-396q-42 0-72.5-14t-30.5-50v-202q0-52 23.5-68.5t91.5-16.5q127 0 221.5 24t163.5 111.5 69 151.5q0 29-16.5 46.5zM1174 1130q20 4 30.5 20.5t10.5 62.5v202q0 36-21 50t-49 14H871q-26 0-38.5-13.5T820 1428q0-57 62.5-145t139-120.5T1162 1130h12zm-30-211q-13 0-21.5-9t-8.5-21v-72q0-11 9-20.5t24-9.5q0-104 37-156.5t106-52.5q72 0 109 52t37 157q14 0 23.5 9.5t9.5 20.5v72q0 12-9 21t-22 9h-294zm863.5 1314.5Q1956 2283 1886 2283q-71 0-121.5-50t-50.5-121q0-73 51.5-123t120.5-50q71 0 122 52t51 121q0 72-51.5 121.5zM836 2233q-50 50-121 50-70 0-121.5-49.5T542 2112q0-70 51-121.5t122-51.5q70 0 120.5 51.5T886 2112q0 71-50 121zM797 779q-9 0-16.5-9t-7.5-21l19-140q0-7 7.5-14.5T818 587q2 0 5 1l228 103q6 5 10.5 11t4.5 14q0 9-7 16t-15 9zm741-38q-9-2-15.5-9.5T1516 715q0-14 17-24l226-103q2 0 5-1 8 0 16 7t10 15l20 140q0 15-8.5 22.5T1784 779z"},"children":[]}]};exports.u1F693=u1F693;var u1F694={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1441 681h-289q0-105 36.5-157.5T1296 471t108 52 37 158zm-639-39q-11 0-18-8t-7-18v-3l20-140q0-9 7-15.5t19-6.5q3 0 9 2l223 103q15 6 15 23 0 10-6 16.5t-15 8.5l-243 38h-4zm742-38q-10-2-16-9t-6-17q0-16 16-22l222-103q6-2 10-2 23 0 26 22l19 140v4q0 13-9 19t-20 6zm428 726q57 19 95.5 64t38.5 102v349q0 42-31 73.5t-75 31.5h-70v131q0 46-33 78.5t-77 32.5q-45 0-78-33t-33-78v-131H897v131q0 46-33 78.5t-77 32.5q-45 0-78-33t-33-78v-131h-78q-44 0-74-31t-30-74v-349q0-56 36.5-101t97.5-65l101-374q16-61 72-103.5T920 810h196v-34q0-20 14.5-35t35.5-15h261q20 0 35 15t15 35v34h203q61 0 116.5 42t73.5 104zM868 1724.5q31-31.5 31-73.5 0-44-31.5-75.5T792 1544t-75 32-31 75q0 42 30 73.5t76 31.5q45 0 76-31.5zm1029 0q30-31.5 30-73.5 0-43-31-75t-75-32q-43 0-74.5 32t-31.5 75q0 42 31 73.5t75 31.5q46 0 76-31.5zM593 1486h1413q-5-23-27-41.5t-54.5-25.5-40.5-36l-109-401q-8-31-36.5-52.5T1680 908H920q-31 0-59.5 21.5T824 982l-109 401q-8 29-39 35t-54.5 25-28.5 43zm289-125q-20 0-31.5-12t-11.5-30q0-7 1-11l59-269q5-22 24-37.5t42-15.5h670q21 0 40.5 15.5t24.5 37.5l59 269q0 4 1 12 0 17-12 29t-32 12H882z"},"children":[]}]};exports.u1F694=u1F694;var u1F695={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2309 1916q-71 81-180 81h-15q0-94-68-162.5t-164-68.5q-95 0-163 68t-68 163H943q0-94-68-162.5T711 1766q-95 0-163 68t-68 162q-58-7-128-51t-101.5-88.5T219 1723q0-82 32-176t120-144 184-74q141-241 215.5-317T944 891t247-52q0-8 5-13.5t12-5.5h14V686q0-11 7-18t18-7h76q11 0 18 7t7 18v134h14q7 0 12.5 4.5t5.5 12.5q188 6 295 40t167 81.5 109.5 106T2087 1329q164 40 228.5 137t64.5 242q0 127-71 208zm-1168-551q28 0 50-14t22-51v-202q0-50-15-66.5t-42-16.5q-72 0-149 37.5T874 1175t-56 140q0 23 12 36.5t39 13.5h272zm-78 236h69l4-4v-36l-4-4H943l-4 4v36l4 4h68v159l4 4h43l5-4v-159zm251 158l-74-198-4-2h-45l-5 2-75 198 1 4 3 1h50l4-3 11-34h67l9 34 4 3h50l4-1v-4zm225 4l-2-6-66-94 66-97v-5l-4-2h-55l-39 54-36-52-4-2h-55l-4 2v5l64 97-64 94v6l4 1h58l2-1 35-51 32 51 7 1h56zm82-200l-6-4h-48l-4 4v198l4 3h48l6-3v-198zm171-198q37 0 54-17.5t17-46.5q0-78-97.5-183T1444 1013q-67 0-90.5 16.5T1330 1098v202q0 37 30 51t72 14h360zm-579 264l19 57h-39zm-379.5 490.5Q783 2170 711 2170t-122.5-50.5T538 1997t50.5-122.5T711 1824t122.5 50.5T884 1997t-50.5 122.5zm1171 0Q1954 2170 1882 2170q-71 0-121.5-51t-50.5-122 50.5-122 121.5-51q72 0 122.5 50.5T2055 1997t-50.5 122.5z"},"children":[]}]};exports.u1F695=u1F695;var u1F696={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1932 1435q54 12 89.5 47t35.5 79v349q0 23-16.5 39.5T2001 1966h-71v128q0 46-32 78.5t-78 32.5-78-32.5-32-78.5v-128H897v128q0 46-32 78.5t-78 32.5q-47 0-79-33t-32-78v-128h-78q-23 0-39.5-16.5T542 1910v-349q0-44 35.5-79t90.5-47l109-401q12-45 53.5-77t89.5-32h149l-1-7q0-3-1-7V761q0-23 16.5-39.5T1123 705h353q23 0 39.5 16.5T1532 761v150q0 9-2 14h150q48 0 89.5 32t53.5 77zm-497-560q0 2 2 2h25q2 0 2-2V774q0-2-2-2h-25q-2 0-2 2v101zm-114-1q0 2 1 3h30l2-1 17-26 18 26 2 1h29q2 0 2-3l-33-49 32-50v-2l-1-1h-28l-2 1-19 27-18-27-2-1h-28q-3 0-3 1l1 2 33 50zm-72-102q-2 0-2 1l-38 101q0 3 4 3h23l3-3 5-16h33l6 16q0 3 3 3h24q2 0 2-3l-36-99q0-3-3-3h-24zm22 65h-20l10-30zm-135-45q0 2 3 2h24v81q0 2 3 2h22q2 0 2-2v-81h25q2 0 2-2v-19q0-2-2-2h-76q-3 0-3 2v19zm-269 813.5q-32-30.5-75-30.5-41 0-73 30t-32 75q0 46 31.5 76t73.5 30q43 0 75-31t32-75-32-74.5zm865-179.5q20 0 33-12.5t13-31.5q0-8-1-12l-62-289q-5-23-25-39.5t-44-16.5H953q-24 0-44 16.5t-25 39.5l-62 289q0 4-1 11 0 20 13 32.5t33 12.5h865zm164 179.5q-32-30.5-75-30.5-42 0-74 31t-32 74q0 44 32 75t74 31q43 0 75-31t32-75-32-74.5z"},"children":[]}]};exports.u1F696=u1F696;var u1F697={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2296.5 1814.5Q2224 1895 2117 1895h-14q0-93-68-161.5t-164-68.5q-95 0-163 67.5t-68 162.5H931q0-95-68-162.5T700 1665q-96 0-164 68.5T468 1895q-76 0-156.5-68.5T231 1631q0-86 33.5-159T416 1349t176.5-74.5T713 1125l35-69q69-134 173-197.5t245-63.5h381q142 0 256.5 62.5T2010 1065l35 55q43 68 96 121t117 115.5 87.5 130T2369 1620q0 114-72.5 194.5zM1219 997q0-48-12.5-66t-39.5-18q-69 0-148 37.5t-136 122-57 140.5q0 23 12 37t39 14h274q29 0 48.5-15t19.5-51V997zm608 267q38 0 55-18t17-47q0-66-73-155t-170.5-110.5T1449 912q-56 0-78.5 8.5t-30.5 22-8 54.5v201q0 37 29.5 51.5t71.5 14.5h394zM820.5 2017q-50.5 51-120.5 51-72 0-122.5-50.5T527 1895q0-70 51-120.5t122-50.5q70 0 120.5 50.5T871 1895q0 71-50.5 122zm1173 .5Q1943 2068 1871 2068t-122-51-50-122q0-69 50-120t122-51q71 0 122 50.5t51 120.5q0 72-50.5 122.5z"},"children":[]}]};exports.u1F697=u1F697;var u1F699={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M792 687h1263v1174h-144q-24-103-109.5-171t-194.5-68-194.5 68-109.5 171h-292q-27-104-111.5-171.5T707 1622t-193.5 67T401 1861H279v-85q-23-2-38-17.5t-15-37.5v-69q0-21 15-37.5t38-18.5v-241q0-79 52-130.5t136-51.5h182zm-11 539h519V789H903zm1504-257q35 0 62 26t27 63v533q0 36-26.5 62.5T2285 1680h-108q-36 0-62.5-26.5T2088 1591v-533q0-37 27-63t62-26h108zM882.5 2111.5Q809 2185 707 2185q-104 0-177-73.5T457 1936q0-103 73.5-176t176.5-73q102 0 175.5 73t73.5 176q0 102-73.5 175.5zm900 0Q1709 2185 1607 2185q-104 0-176.5-74t-72.5-175q0-103 73.5-176t175.5-73 175.5 73 73.5 176q0 102-73.5 175.5zM1551 1226h365V789h-365v437zm129.5 633.5Q1649 1829 1607 1829q-44 0-75.5 31.5T1500 1936t31.5 75.5 75.5 31.5q42 0 73.5-31t31.5-76q0-46-31.5-76.5zM781 1861q-31-32-74-32-44 0-75.5 31.5T600 1936t31.5 75.5T707 2043q42 0 73.5-31t31.5-76q0-43-31-75z"},"children":[]}]};exports.u1F699=u1F699;var u1F69A={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2340 750q23 0 39.5 16t16.5 39v1115q0 23-16.5 39t-39.5 16h-291q0-95-68-162.5t-163-67.5q-96 0-164 67.5t-68 162.5H881q0-93-68-161.5T649 1745q-95 0-163 67.5T418 1975H279q-24 0-49.5-28.5T204 1892v-261q0-66 32.5-108.5T309 1465l274-102 59-347q11-63 54-100t93-37h307v-74q0-23 16-39t39-16h1189zm-1317 287q0-24-16-40.5T967 980H804q-23 0-42 16t-22 39l-39 266v7q0 20 14 34t34 14h218q24 0 40-16t16-39v-264zM771.5 2097.5Q721 2148 649 2148t-122-51-50-122q0-69 50-120t122-51q71 0 122 50.5t51 120.5q0 72-50.5 122.5zm1167.5 0q-51 50.5-121 50.5-72 0-122.5-50.5T1645 1975q0-70 51-120.5t122-50.5q70 0 121 50.5t51 120.5q0 72-51 122.5z"},"children":[]}]};exports.u1F69A=u1F69A;var u1F69B={"viewBox":"0 0 2648 2760.837","children":[{"name":"path","attribs":{"d":"M2648 692v1013h-59v208h-14q-21-56-70-91t-110-35q-44 0-81.5 18.5T2250 1855q-27-31-64-49.5t-81-18.5q-79 0-134.5 56t-59.5 137h-158v-275h-221v43h123v156q-23-52-70.5-84.5T1477 1787q-45 0-82 18.5t-63 49.5q-27-31-64.5-49.5T1186 1787q-78 0-133.5 56.5T993 1980H583q0-78-57-135.5T388 1787q-78 0-133.5 56.5T195 1980H71q-23 0-47-26.5T0 1902v-340q0-68 37-109t90-48l267-36 55-321q10-58 50-92.5t85-34.5h339v-88q0-59 40-94t106-35v91q-22 0-38.5 6.5T1014 831v90h64v827h238v-43h-133V692h1465zM1377 2084.5q-43-40.5-45-98.5-2 59-45.5 99t-100.5 40q-59 0-102.5-42.5T1040 1980q0-61 43.5-103.5T1186 1834q57 0 100.5 41t45.5 99q2-57 44.5-98.5T1477 1834q59 0 102.5 42.5T1623 1980q0 60-43.5 102.5T1477 2125q-57 0-100-40.5zm918 0q-43-40.5-45-98.5-2 58-45 98.5t-100 40.5q-59 0-103-42t-44-103 43.5-103.5T2105 1834q59 0 101 43t44 103q2-60 43.5-103t101.5-43q59 0 102.5 42.5T2541 1980q0 60-43.5 102.5T2395 2125q-57 0-100-40.5zM765 1067q0-22-15-37t-36-15H599q-22 0-39.5 15t-20.5 36l-36 254q0 19 12.5 31t32.5 12h166q21 0 36-15t15-36v-245zM285.5 2082.5Q242 2040 242 1980q0-61 43.5-103.5T388 1834q60 0 102.5 43t42.5 103-42.5 102.5T388 2125q-59 0-102.5-42.5zM1502 788h-56v822h56V788zm297 0h-56v822h56V788zm298 0h-56v822h56V788zm297 0h-55v822h55V788z"},"children":[]}]};exports.u1F69B=u1F69B;var u1F69C={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M725.5 2141q-87.5 88-209.5 88t-210-88-88-209q0-122 88-209.5t210-87.5 209.5 87.5T813 1932q0 121-87.5 209zM600 1848q-35-35-84-35t-84 35-35 84q0 48 35 83.5t84 35.5 84-35.5 35-83.5q0-49-35-84zm670 7H864q-28-122-125.5-200.5T516 1576q-63 0-118 20t-101 55v-306q0-81 52.5-132t137.5-51h392V957h60v-81q0-37-51-37v-86q62 0 99.5 32.5T1025 875v82h54v205h180q2-2 3-5t3-5l100-101-66-66q-11-11-11-26t10.5-26 26.5-11 27 10l179 179q143-73 310-73V894q0-22 15.5-37.5T1894 841h53q22 0 37.5 15.5T2000 894v165q20 5 39.5 11.5t39.5 14.5V607h-36l-112-117h-591V385h875v222h-49v520q52 29 98.5 68t85.5 87l-62 50q-88-105-205.5-160t-247.5-55q-240 0-412.5 172.5T1250 1702q0 78 20 153zm78-607q26-28 55.5-52.5t60.5-45.5l-46-46-70 69v75zm858.5 825.5Q2052 2229 1835 2229t-371.5-155.5T1309 1702q0-214 153.5-369.5T1835 1177t372.5 155.5T2361 1702q0 216-154.5 371.5zm-194-549.5q-75.5-74-177.5-74-103 0-177.5 74.5T1583 1702q0 104 74.5 178.5T1835 1955q102 0 177.5-74t75.5-179q0-104-75.5-178z"},"children":[]}]};exports.u1F69C=u1F69C;var u1F69D={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2354 1066q17 23 17 57 0 22-7 36l-56 106q-11 20-34.5 35t-46.5 15h-45q-95 2-129 42.5t-59.5 106-40.5 81-127 15.5H773q-92 0-115-9.5t-40-56.5-47.5-101.5-81-66T376 1315q-25 0-49-15t-35-35l-55-106q-8-15-8-38 0-15 4.5-29.5T246 1066l321-399q14-17 40.5-30t49.5-13h1286q23 0 50 13t41 30zM791 826q0-28-16.5-48T735 758q-24 0-53.5 17.5T638 812l-160 213q-12 15-12 28 0 26 39 26h218q28 0 48-19.5t20-47.5V826zm437 8q0-32-22-54t-54-22h-152q-31 0-53.5 22T924 834v169q0 32 22.5 54t53.5 22h152q32 0 54-22t22-54V834zm438 0q0-32-22-54t-54-22h-152q-32 0-54 22t-22 54v169q0 32 22 54t54 22h152q32 0 54-22t22-54V834zm419 245q38 0 38-26 0-12-11-28l-160-213q-17-22-45-38t-51-16-39.5 20-16.5 48v186q0 28 19.5 47.5t47.5 19.5h218zM522 1430H72v-78h208q32 32 75.5 38.5t90.5 6.5 76 33zm2005-78v78h-451q23-23 53.5-30.5t78.5-7.5q38 0 65.5-10.5t46.5-29.5h207zm0 333h-425l21 531h-241l21-531h-503l21 531h-241l21-531H697l21 531H477l21-531H72v-208h478l16 31 27 65q24 56 89.5 60.5t90.5 4.5h1053q51 0 104.5-6.5t79-67.5 38.5-87h479v208z"},"children":[]}]};exports.u1F69D=u1F69D;var u1F69E={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1955 1356q0-269-192.5-463T1299 699q-175 0-328 88t-240.5 241-87.5 328v594h406l-160 254H343q-91 0-157-66t-66-157V963q233-403 535-620.5T1299 125q337 0 636.5 212.5T2479 963v1018q0 91-66 157t-157 66h-547l-159-254h405v-594zm-426-425q79 0 134.5 56.5T1719 1122v524q0 74-49 127.5t-121 61.5v95q0 17-12 29t-30 12q-17 0-29-12t-12-29v-93h-336v93q0 17-12.5 29t-29.5 12-29-12-12-29v-95q-72-8-121-61.5T877 1646v-524q0-79 56.5-135t134.5-56h461zm106 167q0-42-30-72.5t-72-30.5h-469q-43 0-73 30t-30 73v129q0 43 30 73t73 30h469q42 0 72-30.5t30-72.5v-129zm-68 1106h-536l104-254h328zm-486-606q-20-20-49-20t-49 20-20 49 20 49 49 20 49-20 20-49-20-49zm532 0q-20-20-49-20t-49 20-20 49 20 49 49 20 49-20 20-49-20-49z"},"children":[]}]};exports.u1F69E=u1F69E;var u1F69F={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2527 760v158h-563v86h236v123h2q27 0 46 19t19 46v683q0 26-17 53.5t-41 38.5l-122 58q-23 12-62 20t-62 8H635q-27 0-63-8t-61-20l-121-58q-25-12-42-38.5t-17-53.5v-683q0-27 19.5-46t45.5-19h3v-123h235v-86H72V760h515q-21-23-21-53 0-29 19.5-51t48.5-27v-22h183v22q29 5 48.5 27t19.5 51q0 30-21 53h296q-9-11-15-24t-6-29q0-29 19.5-51t48.5-27v-22h184v22q29 5 48 27t19 51q0 30-20 53h295q-9-11-14.5-24t-5.5-29q0-29 19-51t48-27v-22h184v22q29 5 48.5 27t19.5 51q0 30-21 53h516zM804 1302q0-19-13-32t-32-13H526q-19 0-32 13t-13 32v338q0 20 13 32.5t32 12.5h233q19 0 32-12.5t13-32.5v-338zm13-298h390v-86H817v86zm425 298q0-19-13.5-32t-31.5-13H964q-19 0-32 13t-13 32v338q0 20 13 32.5t32 12.5h233q18 0 31.5-12.5t13.5-32.5v-338zm437 0q0-19-13-32t-32-13h-232q-19 0-32 13t-13 32v338q0 20 13 32.5t32 12.5h232q19 0 32-12.5t13-32.5v-338zm160-45q-18 0-31.5 13t-13.5 32v338q0 20 13.5 32.5t31.5 12.5h233q19 0 32-12.5t13-32.5v-338q0-19-13-32t-32-13h-233zm-59-339h-389v86h389v-86z"},"children":[]}]};exports.u1F69F=u1F69F;var u1F6A0={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1265 633v373q0 23 8 54t19 51l50 89h217v103h235q44 0 81.5 32t43.5 78l54 442q3 26 3 59 0 41-5.5 84t-13.5 75l-22 87q-12 46-54.5 77t-86.5 31H807q-47 0-88-32t-52-76l-24-87q-9-32-13-76.5t-5-86.5q0-31 3-55l54-442q6-46 43.5-78t81.5-32h234v-103h84q-2-4-4-10l-6-15q-4-9-9-24l-13-37q-8-19-13.5-52t-5.5-56V633H131v-65h943q0-58 9.5-83t46.5-25h229q23 0 39.5 16t16.5 39q0 19-11 33.5t-28 19.5h1094v65H1265zm-211 834q0-14-10-23.5t-24-9.5H813q-14 0-24.5 9.5T776 1467l-34 376v4q0 12 8.5 20.5t21.5 8.5h248q14 0 24-9.5t10-23.5v-376zm493 376q0 14 10 23.5t24 9.5h247q14 0 22.5-8.5t8.5-20.5v-4l-35-376q-2-14-12-23.5t-24-9.5h-207q-14 0-24 9.5t-10 23.5v376zm-350-409q-14 0-23.5 9.5t-9.5 23.5v376q0 14 9.5 23.5t23.5 9.5h207q14 0 23.5-9.5t9.5-23.5v-376q0-14-9.5-23.5t-23.5-9.5h-207z"},"children":[]}]};exports.u1F6A0=u1F6A0;var u1F6A1={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1721 744q-8 17-23.5 27.5T1662 782h-185l179 556h305q26 0 47.5 19t26.5 45l72 463q0 8 1 17.5t1 20.5q0 20-2.5 45t-7.5 42l-57 211q-7 26-31 44t-50 18H653q-27 0-51.5-18t-32.5-43l-66-213q-5-16-7.5-38t-2.5-44q0-24 3-42l81-463q5-26 27-45t49-19h329l165-556H938q-20 0-35-10.5T880 744H131v-65h743v-13q0-26 19-45t45-19h110q27 0 45.5-19t18.5-46v-15q0-26 19.5-45t45.5-19h247q27 0 45.5 19t18.5 45v15q0 27 19.5 46t45.5 19h109q27 0 46 19t19 45v13h743v65h-749zm4 1084q0 17 11 28t28 11h213q14 0 23.5-8.5t9.5-22.5l-46-298q-3-17-15.5-28t-28.5-11h-156q-17 0-28 11.5t-11 27.5v290zM1252 650q20 20 49 20 28 0 48-20t20-48q0-29-20-49t-48-20q-29 0-49 20t-20 49q0 28 20 48zm-46 410h218l-91-278h-44zm-330 478q0-16-11-27.5t-27-11.5H691q-17 0-30 11t-16 28l-52 297q0 14 9.5 23t23.5 9h212q16 0 27-11t11-28v-290zm376 0q0-16-11.5-27.5T1213 1499h-200q-16 0-27.5 11.5T974 1538v290q0 17 11.5 28t27.5 11h200q16 0 27.5-11t11.5-28v-290zm374 0q0-16-11-27.5t-28-11.5h-199q-16 0-27 11.5t-11 27.5v290q0 17 11 28t27 11h199q17 0 28-11t11-28v-290zm-173-387h-273l-56 187h389z"},"children":[]}]};exports.u1F6A1=u1F6A1;var u1F6A2={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2103 1781q6 0 67.5 9t61.5 69q0 33-14 69t-32 72l-37 71q-20 39-24.5 61.5t-6.5 65.5H599q5-8 9-18t4-21q0-34-25.5-79.5t-36-74.5-105-164.5-103.5-168-9-46.5q0-29 21.5-42.5T407 1570q13 0 164 15.5t217 24.5q11-44 24-86.5t24-86.5l9-36q8-38 25-63t63-25h23q49 0 96 7t95 12l160 19q11-59 17-119.5t10-123.5q26-21 55.5-29.5t61.5-8.5q61 0 128 21t98 50l-8 210q0 14 1 27v26l127 20q61 9 127.5 24t78 23.5 25 70.5 13.5 131v27q0 19 3 37l4 37zm-600-940q-8 0-17 1.5t-19 1.5q-7 0-11-1 0-20 56.5-86t123.5-66l8 1q67 0 78-19t42.5-39.5T1871 613q50 0 71 9.5t27 9.5q8 0 13-5l11-9q22-12 50-18.5t56-6.5q72 0 119.5 45.5T2266 750q0 56-56 102t-122 46q-49 0-94-16t-65-16q-26 0-68.5 28t-73.5 28q-39 0-100-36t-172-45h-12zm-162 210q2-25 16-73.5t54-61 77-12.5q76 0 134 31.5t58 85.5q0 14-1 27.5t-1 27.5q-19-21-87.5-41.5T1473 1014q-51 0-82.5 9.5T1341 1051zm332 612q25 24 59 24 35 0 59-24t24-59-24-59-59-24q-34 0-59 24t-25 59 25 59zm-601-64q24 25 58 25 35 0 59.5-24.5t24.5-59.5q0-34-25-58t-59-24-58 24-24 58 24 59zm300-85q-24 25-24 59t25 58 59 24 58-24 24-58-23.5-59-58.5-25q-36 0-60 25z"},"children":[]}]};exports.u1F6A2=u1F6A2;var u1F6A3={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1642 1348l26-51q21-41 37-82.5t16-65.5q0-35-35-56t-59-68-24-101q0-96 58.5-171.5T1839 677q96 0 155.5 65.5t68 150.5 27 119 18.5 39q0 12-29.5 16t-29.5 13l1 6q0 10-10.5 16t-22.5 6q-21 0-28.5 13.5T1956 1136t-25 11 29.5 45.5T2001 1348h312q25 0 41 10t21 17.5 5 44.5q0 58-14.5 148t-42.5 164q-46-18-93-30t-97-12q-61 0-151.5 26.5T1820 1743q-51 0-147.5-23.5T1522 1696q-63 0-137.5 33.5T1274 1774q-2-3-2-6 0-4-9-37t-27-65l122-318h284zm822.5 575.5q-23.5 7.5-80.5 7.5h-52q-268 24-532.5 34.5T1266 1976q-60 0-134-2l-152-3q-59 0-168-3.5t-131-4.5l-120-3q-52 0-80-1-53 0-76.5-9t-23.5-25q0-15 14-30l30-31q59-62 144-97.5t185-35.5q50 0 95 10t113 40q10-23 25.5-48t32.5-39q2-4 2-7 0-12-15-12-11 0-19 5l-16 10q-9 6-18 11t-21 5-24-4l-23-8q-65-22-137-22-79 0-158 24.5T446 1779q-108-68-194-189.5T166 1415q0-30 26-44t515-19q4-45 9-89t5-86q0-39-6.5-74.5T681 1033l-20-23q-22-26-34.5-62T614 871q0-100 67-167.5T841 636q100 0 166.5 69t66.5 164q0 54-21 105.5t-58 89.5q38 28 74.5 40.5t81.5 12.5q42 0 78.5-14t61-45.5 65.5-43.5l16-40q5-11 15-18.5t22-7.5q17 0 28 12.5t11 27.5q0 7-3 14l-14 36q30 28 30 69 0 28-16.5 53.5T1374 1186l-184 476q19 38 31 78.5t12 88.5q0 10-1 15 37-6 73-21l73-29q36-15 73.5-26.5t78.5-11.5q60 0 151.5 23t147.5 23q71 0 162-26.5t150-26.5q96 0 221.5 57t125.5 95q0 15-23.5 22.5zM1035 1256q30 47 63 93 32 0 65-1h64l48-125q-44 29-78 35.5t-72 6.5q-45 0-90-9z"},"children":[]}]};exports.u1F6A3=u1F6A3;var u1F6A4={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1367 1865q-280-28-495-91t-352-144.5-215.5-175T226 1320q0-35 59-50.5t234-15.5q94 0 175.5 4t91.5 4q125-54 270.5-81t303.5-27h56q52 0 226 13.5t256.5 28 118.5 42 48 145.5q-225-38-579-69.5t-447-31.5q-18 0-38.5 2t-20.5 9q0 10 45 16t286 40.5 547 84.5l213 35 39 6q26 4 41 21t15 60q0 38-12 86-251 26-465.5 96T1367 1865zm918-57q-7 4-7 11 0 12 38 22.5t38 34.5q0 22-26 38t-26 29q0 8 6 17.5t6 26.5q0 35-33.5 50t-144.5 15q-31 0-61.5-1.5t-60.5-1.5q-136-5-313.5-6.5T1448 2039h-46q-24 0-47 2-25 0-44.5-10t-19.5-27q0-14 18.5-31.5t42.5-32.5l21-12q59-35 209-92t360.5-99.5T2262 1694q55 0 83 11t28 33q0 23-35.5 40.5T2296 1801zm-1220-769q-5-12-9.5-26t-6.5-30q0-13 3.5-23t17.5-14q7-73 53.5-115.5T1240 788q54 0 89.5 23.5T1391 880q34-30 83-30t101.5 28 52.5 72q0 26-42 44.5t-42 36.5q0 8 4 10.5t10 5.5l19 6q23 8 43.5 24.5t20.5 36.5q0 10-12 10-38-4-76-6t-77-2q-99 0-166 8t-80 8q-23 0-45.5-6.5T1141 1104q-10 2-16 2-23 0-35-18.5t-20-38.5zm13-66q2 15 5.5 29.5t8.5 25.5l5 10q5 14 12.5 27t15.5 13q4 0 13-4t18-9l26-13q23-11 34.5-26t11.5-35q0-28-12-45.5t-31-17.5q-11 0-23 5.5t-18 9.5z"},"children":[]}]};exports.u1F6A4=u1F6A4;var u1F6A5={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2179.5 1406Q2066 1514 1908 1514H931v659q0 59-41.5 101.5T787 2317h-93q-61 0-102.5-42.5T550 2173v-762q-85-50-134-133.5T367 1099q0-67 23.5-126.5T456 865q0-64 21.5-110t72.5-78v-7q0-59 42.5-102T694 525h93q59 0 101.5 43T931 670v62h25q31-44 83-69.5t118-25.5q69 0 124 21.5t115 73.5h24q32-44 83.5-69.5T1622 637q59 0 114.5 19.5T1845 720l17 13q57 5 106.5 23t92 47 73.5 47.5 76.5 70T2278 1045q15 49 15 102 0 151-113.5 259zM494 980q-28 58-28 119 0 105 81.5 187.5T752 1369h1082q116 0 201-79t85-191q0-75-39-135.5T1977 866q3 5 31.5 60.5t28.5 98.5-34 59q-8 90-75 151t-157 61q-82 0-145.5-50.5T1544 1118l-9-8q-16 79-80 132.5t-148 53.5q-82 0-146-51.5t-82-126.5l-8-8q-16 80-81 133t-148 53q-80 0-142-49t-85-129l-31-33-34-37q-16-17-29.5-32.5T494 980zm340 534h-8q-49 0-93.5-10.5T649 1473v700q0 19 13.5 33t31.5 14h93q20 0 33.5-14t13.5-33v-659zm113.5-337.5Q991 1135 997 1077q-62-28-110.5-73T818 911q-53 8-92 50.5T687 1063q0 62 46.5 108.5T842 1218t105.5-41.5zm461.5 3q45-38.5 51-102.5-78-42-114-76.5t-64-89.5q-54 8-92 51t-38 101q0 62 46.5 108.5T1307 1218q57 0 102-38.5zM1875 829q-23-23-47-45t-51-40-58-30q-32-12-70-15 31 12 52 26 21 15 36 33 15 19 26 42 11 24 23 55 10 29 29 57 19 29 45 53 25 25 55 43t63 24q0-19-9-46t-23-56q-14-28-33-55-19-26-38-46zm-486-23q-39-39-89.5-70.5T1185 699q58 27 85.5 55.5t41 71 39.5 87 79 78.5q-27-40-36-73t-9-75q0-8 2-18t2-19zm-465 0q-53-52-99.5-77.5T722 699q99 43 128.5 136.5T966 991q-31-46-38.5-74.5T920 843q0-8 2-18t2-19zM694 624q-20 0-35 17 9-2 17.5-3t16.5-1q70 0 141 29 0-15-13-28.5T782 624h-88z"},"children":[]}]};exports.u1F6A5=u1F6A5;var u1F6A6={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1532 1132v379h258q60 0 102.5 42.5T1935 1656v93q0 59-43 101.5t-102 42.5h-258v11q0 158-108 271.5T1164 2289q-64 0-113.5-19.5t-78-26.5-75.5-35-90.5-79.5T739 2008q-23-62-23-132v-123q-22-32-34.5-59.5T669 1634q0-61 47-111v-232q-19-27-33-55t-14-65q0-31 12.5-59.5T716 1060V828q-22-32-34.5-59T669 709q0-57 37-99.5t95-62.5q51-64 124.5-101.5T1084 408q66 0 112.5 19t69.5 24.5 64.5 26T1416 540t74 101q25 51 36 109h264q60 0 102.5 42.5T1935 895v92q0 60-42.5 102.5T1790 1132h-258zm304 524q0-19-13.5-33t-32.5-14h-258v186h258q19 0 32.5-13.5t13.5-32.5v-93zm-572-869q-50-71-153.5-133T906 592q-10 0-14.5 1.5T887 597q0 5 48.5 19.5t107.5 95 135.5 106T1276 843q12 0 16-4 0-5-4.5-14t-7.5-14zm28 977q0-24-58.5-88t-149-112-164.5-48q-10 0-21.5 1t-11.5 4q0 9 48 20t105 92.5 144 110.5l46 15q13 4 25.5 6.5t22.5 2.5q11 0 14-4zm-74-411l-29-9q-73-21-114.5-52.5T999 1212q-32 19-51.5 51.5T928 1336q0 55 42.5 100t103.5 45q55 0 96.5-37t47.5-91zm74-51q0-21-54.5-83t-148-113.5T897 1054q-10 0-10 5 0 6 47.5 18t107.5 95.5 142 108.5l56 17q23 8 38 8 8 0 14-4zm-478-297q28-9 67-10l29-1q-8-8-14.5-20T884 948l-35-18q-18-8-35-19v94zm0 462q15-5 32.5-7.5t34.5-2.5h29q-17-22-26-47-16-6-34-17l-36-20v94zm354 441q37-35 50-92l-32-10q-79-25-120-59.5t-67-72.5q-31 19-51 52t-20 72q0 58 44 101.5t102 43.5q57 0 94-35zm-354-32q0 119 80.5 202.5T1084 2162t189.5-83.5T1354 1876V793q0-116-79.5-201.5T1084 506q-32 0-62.5 8T964 536q171 37 279 140t108 164q0 31-22.5 46.5T1276 902q-9 59-45 101.5t-90 62.5q68 38 139.5 111t71.5 125q0 29-21 45.5t-52 16.5h-3q-8 59-44.5 101t-90.5 63q92 54 151.5 123.5T1352 1765q0 32-23.5 46.5T1276 1826q-10 74-69 125.5t-133 51.5q-66 0-116-36.5t-74-93.5q-35-17-70-38v41zm718-1028v186h258q19 0 32.5-13.5T1836 987v-92q0-20-13.5-33.5T1790 848h-258z"},"children":[]}]};exports.u1F6A6=u1F6A6;var u1F6A7={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2167 832q20 0 33.5 13t13.5 33v628q0 20-13.5 33t-33.5 13h-308l237 787h-219l-144-474-129 474h-219l212-787H985l237 787h-219l-143-474-130 474H511l214-787H433q-20 0-33.5-13t-13.5-33V878q0-20 13.5-33t33.5-13h105q-28-24-44-57.5T478 700q0-69 51-121.5T649 526h47q70 0 122 51.5T870 700q0 41-17 74.5T810 832h1002q-28-24-44-57.5t-16-74.5q0-69 51-121.5t120-52.5h47q70 0 122 51.5t52 122.5q0 41-16 74.5t-44 57.5h83zm-46 360l-192 267h192v-267zm-425 267l382-534h-246l-381 534h245zM575.5 776q31.5 32 73.5 32 48 0 79-32.5t31-75.5q0-44-32.5-75.5T652 593q-41 0-74.5 30.5T544 700q0 44 31.5 76zM479 1151l162-226H479v226zm13 308h246l383-534H874zm479 0h247l381-534h-246zm879-682.5q31 31.5 73 31.5 48 0 79-32t31-76q0-43-32-75t-75-32q-39 0-73 30t-34 77q0 45 31 76.5z"},"children":[]}]};exports.u1F6A7=u1F6A7;var u1F6A8={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1904 1813q24 0 41.5 18t17.5 41v433q0 25-17.5 42t-41.5 17H730q-23 0-41-17t-18-42v-433q0-23 18-41t41-18h37q6-483 133-705t400-222 400 222 133 705h71zm-556-359q-5 7-5 14 0 3 1.5 6.5t3.5 5.5l239 237q5 4 13 4l7-1q11-5 11-16v-472q0-8-5-13.5t-13-5.5q-7 0-13 6zm-366 250q0 11 11 16l7 1q3 0 6.5-1t5.5-3l239-237q3-2 4-5.5t1-6.5q0-9-5-14l-239-235q-2-3-5.5-4.5t-6.5-1.5q-18 0-18 19v472zm863 227H789v315h1056v-315zM563 586q-12-9-12-24 0-16 11-24l205-161q7-5 18-5 19 0 29 19l163 422q0 3 1 10 0 14-9 22t-20 8-17-6zm-248 496q-11-2-20-9.5t-9-19.5q0-3 1-6l91-249q5-20 28-20 4 0 8.5 1t8.5 4l362 271q12 11 12 25 0 12-8 20.5t-22 8.5zm1309-269l163-422q3-9 11.5-14t16.5-5q5 0 9.5 1t7.5 4l205 161q11 8 11 20 0 8-2.5 15.5T2037 586l-370 261q-3 4-7.5 5t-8.5 1q-11 0-20-8t-9-21q0-7 2-11zm687 229q2 3 2 10 0 25-28 30l-453 26q-13 0-21-9t-8-21q0-16 11-24l363-271q5-5 16-5 21 0 29 20z"},"children":[]}]};exports.u1F6A8=u1F6A8;var u1F6A9={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2029 1104q-98 136-262.5 222.5T1439 1413q-37 0-74-5l-152-19q-38-4-75-4-114 0-217 27.5T750 1493v842q0 33-23 55.5t-56 22.5q-32 0-55-22.5t-23-55.5V519q0-33 23-55.5t55-22.5q33 0 56 22.5t23 55.5v5l9-1q63-15 128-15 118 0 245.5 44.5t313 165T1787 838q47 0 96-9.5t85-23.5l31-12q16-6 32.5-10.5t31.5-4.5q37 0 50.5 24.5T2127 861q0 107-98 243z"},"children":[]}]};exports.u1F6A9=u1F6A9;var u1F6AA={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1917 317v2185H682V317h1235zM965.5 1529.5Q938 1502 897 1502q-39 0-67 28.5t-28 67.5q0 38 27.5 67t67.5 29 68-29 28-67q0-41-27.5-68.5zM1700 516H897v802h803V516z"},"children":[]}]};exports.u1F6AA=u1F6AA;var u1F6AB={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2149.5 1921.5q-131.5 227.5-359 359T1300 2412q-262 0-490-131t-360-359-132-491q0-262 131-490t359.5-360T1300 449t491 132 359 360 131 490q0 263-131.5 490.5zm-1071-1201Q974 754 884 815l1033 1033q61-91 94-196t33-221q0-200-100-372t-272-272-372-100q-117 0-221.5 33.5zM1715 2048L684 1015q-61 90-94.5 194.5T556 1431q0 200 100 372t272 272 372 100q116 0 221-33t194-94z"},"children":[]}]};exports.u1F6AB=u1F6AB;var u1F6AC={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2061.5 981.5Q1965 1060 1818 1060q-30 0-60.5-1.5t-60.5-1.5q-111 0-171 35.5t-60 66.5 61.5 63 195.5 32 196 52.5 62 138.5q0 68-44.5 114t-140.5 63l-50 9q-53 9-83 31.5t-30 61.5q0 27 32 45t32 32q0 16-12 22t-26 6q-56 0-132-38t-76-97q0-28 19-49t42-38l42-31q19-14 19-28 0-19-44.5-28.5T1429 1508l-66-1q-282-14-434-135.5T777 1063q0-126 80.5-239.5T1091 658t305-52q74 0 154 16t132 51l72 49q36 25 74 44t82 19q32 0 51-15.5t19-41.5q0-19-8.5-32.5T1963 671q0-14 13-18.5t25-4.5q61 0 109 49t48 108q0 98-96.5 176.5zM1447 1886q18 0 30.5 12.5t12.5 31.5v193q0 17-12.5 30t-30.5 13H485q-17 0-30-13t-13-30v-193q0-19 13-31.5t30-12.5h962zm320 104v92q0 16 1.5 27.5t1.5 19.5q0 15-8.5 18t-23.5 3h-16q-14 0-25 3.5t-23 3.5l-55-1-23 1q-8 0-13.5-3.5t-5.5-13.5l4-187q0-12-4-19.5t-4-20.5q0-12 4-16.5t15-4.5h14l9 1q13 0 17-3.5t16-3.5q17 0 35 5t32 5q5 0 12-3t13-3q13 3 20 15.5t7 84.5z"},"children":[]}]};exports.u1F6AC=u1F6AC;var u1F6AD={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2213 963q57 108 88 228.5t31 251.5q0 277-141 517.5t-379.5 377T1299 2474q-275 0-515-138t-378.5-378T267 1443q0-261 122.5-489t338-371T1200 414q-43 48-70 103t-37 116q-185 47-328 167l1176 1176q91-110 142.5-245.5T2135 1443q0-66-10-129t-29-122q56-28 88.5-75.5T2217 1007q0-11-1-22t-3-22zm-414 1147L630 943q-78 105-122.5 231.5T463 1443q0 222 112 415.5t306.5 306T1299 2277q142 0 268-44.5t232-122.5zM1302.5 955Q1166 859 1166 695q0-167 142-268.5T1666 325q56 0 123 12.5t110 42.5l56 39q28 20 58 35t67 15q26 0 41-12t15-34q0-17-6-25.5t-6-19.5 9.5-15 20.5-4q55 0 91 40.5t36 85.5q0 91-84 149t-191 58q-24 0-48.5-1.5T1908 689q-81 0-132.5 27t-51.5 54q0 31 56 53t104 22l85 5q79 4 123.5 45t44.5 107q0 68-50.5 103.5t-139.5 48-89 72.5q0 23 26 37t26 26q0 13-10.5 17.5t-21.5 4.5q-42 0-105-30.5t-63-78.5q0-36 49-69t49-48q0-16-45-25t-113-9q-211 0-347.5-96zM993 1389l207 207H697q-17 0-29.5-13t-12.5-31v-120q0-18 12.5-30.5T697 1389h296zm795 174q2-26 3-54.5t1-53.5q0-9-4-18t-4-20q0-8 3.5-15t14.5-7h14l10 1q8 0 18.5-3.5t18.5-3.5q17 0 32.5 4t28.5 4q6 0 12-2t12-2q16 0 25 17t9 148q0 17-11 20t-26 3h-12q-12 0-23 3.5t-25 3.5-26.5-1.5-26.5-1.5q-8 0-14 1t-11 1q-8 0-13.5-3.5t-5.5-14.5v-6zm-129-174q19 0 31 12.5t12 30.5v120q0 18-12 31t-31 13h-15l-205-207h220z"},"children":[]}]};exports.u1F6AD=u1F6AD;var u1F6AE={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2044.5 1781q-33.5 42-82.5 42-41 0-70-26.5t-29-60.5q0-46 9-86.5t9-83.5q0-53-22-104t-43-51q-15 0-24 6.5t-9 24.5 5 45l11 60q6 32 11 66t5 66q0 75-30 128t-30 208q0 60 7.5 109.5t28 66 37.5 37 17 49.5q0 42-29.5 61.5T1735 2358q-86 0-126.5-34.5T1568 2216q0-40 7-111t7-119q0-42-7-70.5t-25-28.5-24.5 27.5-6.5 69.5q0 27 2 57l9 121q2 29 2 52 0 73-40 108.5t-127 35.5q-51 0-80.5-19.5T1255 2277q0-30 18-50.5t37.5-36 27-66.5 7.5-108q0-155-29.5-208t-29.5-128q0-32 5-63.5t11-62.5l10-62q5-31 5-62 0-41-7-59.5t-24-18.5q-8 0-15 2l-16 6q-59 23-130 42.5T982 1422q-94 0-163.5-43T749 1261q0-57 37-89t87-32q38 0 107 23t125 23q121 0 197.5-46.5t76.5-91.5q0-22-45.5-61t-68.5-93.5-23-116.5q0-134 89.5-218.5T1550 474q130 0 219 84t89 210q0 98-39.5 158t-69 81.5-29.5 37.5l1 12q2 6 93 70.5t177.5 234T2078 1662q0 77-33.5 119zM799 1718l-71-35-21-81 58-66 103 20 25 72-30 61zm152-112q74 23 115.5 65t41.5 93q0 13-4 25l-62 444q-14 64-80.5 103T797 2375q-100 0-166-37.5T551 2235l-63-446-2-11q0-5-1-12 0-54 44-97t126-67l16 57q-58 16-92.5 44t-34.5 60q0 47 77 85t176 38 175-38 76-85q0-29-31-56.5t-84-44.5zm80 277q-42 29-102.5 45.5T797 1945q-72 0-132.5-16.5T561 1883l48 342q8 41 61.5 66.5T797 2317t126-26.5 61-67.5z"},"children":[]}]};exports.u1F6AE=u1F6AE;var u1F6AF={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2345.5 2000Q2180 2282 1900 2441.5T1300 2601t-600-159.5T254.5 2000 89 1389q0-326 162.5-606T694 340.5 1300 178t606 162.5T2348.5 783t162.5 606q0 329-165.5 611zM1146 449q-128 21-242 73.5T694 654l1378 1294q86-118 133.5-259.5T2253 1389q0-249-122.5-465.5T1801 579q-29-119-130-193t-229-74q-88 0-166.5 36T1146 449zm647 1756q29-18 56.5-37.5t53.5-40.5L526 833q-85 118-132 259t-47 297q0 344 220.5 608.5T1118 2324q20 21 51.5 34.5t79.5 13.5q40 0 78-8.5t66-26.5l41-5q20-2 41-6 27 22 67.5 34t91.5 12q78 0 121-35.5t43-97.5q0-17-5-34zM1212.5 450q91.5-89 229.5-89 134 0 227.5 87.5T1763 668q0 78-26 136t-72 97.5-46 54.5l2 12q2 8 74.5 57.5T1834 1170t111.5 215.5T1991 1599q0 51-15 87t-38 55l-162-151 8-46q3-23 3-47 0-47-22.5-103.5T1717 1337q-13 0-23 5.5t-10 26.5q0 26 8.5 68t16.5 89l-512-481q22-13 44-38.5t22-47.5q0-25-42.5-58.5t-71-92.5-28.5-131q0-138 91.5-227zm506 1852.5Q1688 2323 1635 2323q-94 0-134.5-38t-40.5-113q0-24 3-54l10-123q2-31 2-59 0-46-7-74.5t-26-28.5q-20 0-26.5 29t-6.5 74q0 50 7 123.5t7 114.5q0 76-41.5 112.5T1249 2323q-53 0-83.5-20.5T1135 2239q0-31 19-53.5t38.5-37 27.5-65.5 8-115q0-164-31-217t-31-136q0-23 2.5-45.5t7.5-45.5l480 452q0 61 8.5 110t28 63 38 37 18.5 53q0 43-30.5 63.5zM973 1334q-31 7-62 11t-62 4q-95 0-168.5-45.5T607 1182q0-41 20-74t58-44zm-81 704l-62 32-60-20-34-55 24-70 72-27 66 45zm-142-206l-62 31-58-20-33-54 23-68 70-27 66 44zm84-368l24 64-26 56-58 26-65-32-18-73 52-59z"},"children":[]}]};exports.u1F6AF=u1F6AF;var u1F6B0={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1060 1591q57 26 91 65.5t34 86.5q0 6-1.5 15.5t-3.5 17.5l-67 408q-10 64-84 107.5T849 2335t-180.5-42.5T584 2185l-67-409q-2-7-3-14t-1-14q0-53 37-95t105-70v31l-1 7q0 12 2 26-39 20-61.5 44.5T572 1742q0 55 83 96t194 41q113 0 194.5-41t81.5-96q0-23-18.5-45t-50.5-41q3-17 4-33v-32zm44 280q-46 31-111.5 48.5T849 1937t-144-17.5-112-48.5l49 303q6 43 66 72.5t141 29.5q80 0 138-28.5t68-74.5zm-135.5 127.5q57.5 19.5 57.5 58.5 0 11-2 21l-5 21-6 38q-7 43-21.5 55.5t-49 23.5-94.5 11q-65 0-106.5-15t-49.5-38l-6-29q-4-17-10-49t-6-43q0-40 59.5-57t114.5-17q67 0 124.5 19.5zm1083.5-767q-35 72.5-139 72.5-70 0-90-49.5t-57-49.5q-58 0-82 77t-91.5 118-171.5 41q-99 0-164-32.5t-100-32.5q-48 0-93 34t-45 123q0 19 1 37t1 36q0 57-12.5 71.5t-52 32T842 1727q-45 0-83-17.5t-51.5-33T694 1621q0-233 57.5-349T933 1092t160-145.5 94-81.5q19 0 26 8t7 28q0 14 20 53.5t67 65 160 25.5q80 0 137.5-35t70.5-83l5-19q2-9 6-15.5t10-6.5q11 0 31 10t37 10q50 0 71-53t101-53q81 0 116 85t35 180q0 94-35 166.5zM1867.5 685q-27.5 37-142.5 37-59 0-93 12t-34 31q0 7 5 16l9 21q5 12 9.5 26.5t4.5 30.5v13l-1 13q-2 47-47 74t-110 27q-131 0-162.5-40t-31.5-72q0-11 2-22.5t2-22.5q0-14-8.5-23t-28.5-9q-30 0-78.5 16.5T1059 830q-77 0-123.5-38.5T889 681q0-70 42.5-101.5T1054 548q22 0 39.5 3t34.5 8l28 7q14 4 32 4 16 0 32.5-6.5T1237 547q0-12-20-33t-20-60q0-63 49.5-102.5T1360 312q54 0 105.5 33.5T1517 457q0 45 8 62.5t40 17.5q51 0 99-33t106-33q52 0 88.5 38.5T1895 601q0 47-27.5 84zm-368-79q-29.5-22-73.5-22-50 0-91.5 24.5T1293 668t34.5 54.5T1411 742q53 0 85.5-23.5T1529 663q0-35-29.5-57z"},"children":[]}]};exports.u1F6B0=u1F6B0;var u1F6B1={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2347.5 1991Q2185 2271 1905 2433.5T1299 2596t-606-162.5T250.5 1991 88 1385t162.5-606T693 336.5 1299 174t606 162.5T2347.5 779t162.5 606-162.5 606zm-331.5 21L445 962q-48 96-73.5 202T346 1385q0 146 41 278t115 245l54 333q13 84 99 136.5t214 52.5q90 0 159.5-27.5T1138 2325q77 13 161 13 204 0 392.5-84.5T2016 2012zM1189 439q-182 22-336.5 105T583 758l1570 1050q48-97 73.5-202.5T2252 1385q0-201-80.5-382.5T1949 689q5-23 5-44 0-69-47.5-116.5T1792 477h-8q-62 0-109 33-48-20-101-37-6-64-59.5-109.5T1382 318q-66 0-120.5 35.5T1189 439zm687.5 300.5q-24.5 38.5-113 40t-119 13.5-30.5 30q0 7 4 16l9 22q5 12 9 26.5t4 32.5q0 56-34.5 89.5T1488 1043q-124 0-155.5-39.5T1301 931q0-11 1.5-22t1.5-22q0-14-7.5-23t-27.5-9q-29 0-76 16t-100 16q-78 0-121-39t-43-110q0-67 40-99.5t117-32.5h20q22 0 56 10.5t57 10.5q14 0 30-5.5t16-16.5q0-13-19.5-34t-19.5-61q0-61 49-101t109-40q67 0 109 40t42 105q0 39 6.5 59.5T1581 594q42 0 96.5-32.5T1779 529q51 0 86.5 39t35.5 91q0 42-24.5 80.5zM1079 1636q58 26 92 65.5t34 86.5q0 8-2 17l-4 17-66 407q-16 69-88.5 110.5T869 2381q-107 0-179.5-41T605 2231l-67-409-3-15q-2-6-2-14 0-53 37-95t106-70q0 16-1 32v11q0 11 1 22-39 20-61.5 44.5T592 1787q0 55 83 96t194 41q110 0 193-41t83-96q0-23-18.5-45t-50.5-40q2-13 2-27.5t1-38.5zm14-609q3-4 35-60.5t79-56.5q19 0 26 8t7 28q0 14 19.5 52.5t66 65.5 161.5 27q76 0 135.5-34t72.5-85l5-19q2-9 6-15.5t11-6.5q8 0 25 10t42 10q49 0 70.5-53t100.5-53q82 0 117 84.5t35 179.5q0 93-34 166.5t-137 73.5q-71 0-92-49.5t-58-49.5q-53 0-75 63t-52 93zm31 889q-46 31-111.5 49T869 1983t-144-18-112-49l50 304q8 46 65 73.5t141 27.5q80 0 138-28.5t68-74.5zm-42-458q-25 23-34 53t-9 70l1 71q0 59-13 72.5t-51.5 30.5-113.5 17q-45 0-80-16t-51-31.5-16-54.5q0-161 22-250.5t63-150.5zm-87 588.5q50 21.5 50 54.5 0 11-2 22l-4 21-6 39q-7 43-21.5 55.5t-49 23T868 2272q-39 0-74-6t-59.5-21-25.5-35-7-48l-8-34q-4-16-4-32 0-35 59.5-53t114.5-18q81 0 131 21.5zM1519 664q-29-22-71-22-49 0-89 25t-40 58q0 36 33 55t79 19q52 0 84.5-24t32.5-56q0-33-29-55z"},"children":[]}]};exports.u1F6B1=u1F6B1;var u1F6B2={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2251.5 1931Q2123 2059 1943 2059q-171 0-296.5-115.5T1507 1662h-122q-5 20-7.5 37.5t-7.5 35.5q31 0 51 12t20 44q0 28-23 41.5t-71 13.5q-16 0-30.5-1t-25.5-1h-21q-34 0-46.5-11.5T1211 1796q0-27 28-45.5t58-18.5h6l5 1q5-20 6.5-36t6.5-35h-14l-6-1h-9q-3-2-10.5-4.5T1263 1639l-301-448q-6 23-14 47l-16 47q74 61 117.5 148.5T1093 1624q0 178-128 306.5T656 2059t-309-128.5T219 1624q0-180 129-308.5T656 1187q50 0 96 10.5t88 30.5q23-66 38-134t28-135l4-22q21-123 62.5-149.5t63.5-41 140-14.5l61 1q24 0 44.5 21.5T1302 804q0 31-30 54.5t-96 23.5h-51q-14 0-28.5 1.5T1071 885q-10 0-19-2.5t-16-8.5q-8 10-12.5 28.5T1012 955l-15 81h443q-52-6-83.5-24t-31.5-45q0-25 18-46t46-23.5 70-10.5l75-13q37-6 73-10.5t69-4.5q34 0 59.5 26.5T1761 947q0 41-38 72.5t-82 31.5h-18q-9 0-19-1v21l126 170q48-26 101.5-40t111.5-14q178 0 307.5 128t129.5 309q0 179-128.5 307zM885 1399q-52 110-116.5 185.5T692 1669t-33 9q-22 0-39-15.5t-17-38.5q0-14 6.5-26t20.5-20l7-5q54-54 92.5-113t67.5-124q-32-16-67.5-24.5T656 1303q-130 0-225 94t-95 227q0 132 94 226t226 94q133 0 227-95t94-225q0-66-25-123t-67-102zm1283-1q-95-95-225-95-38 0-74 8.5t-67 24.5l179 242q10 14 10 32 0 22-15.5 37t-36.5 15h-314q14 121 105 201.5t213 80.5q132 0 226-95t94-225q0-131-95-226zm-1113-257l244 362 170-362h-414zm507 50l-171 365h120q11-74 45.5-138.5T1645 1303zm153 207q-33 32-55 72t-31 86h205z"},"children":[]}]};exports.u1F6B2=u1F6B2;var u1F6B3={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2347.5 2009Q2185 2289 1905 2451.5T1299 2614t-606-162.5T250.5 2009 88 1403t162.5-606T693 354.5 1299 192t606 162.5T2347.5 797t162.5 606-162.5 606zm-335.5 27L445 980q-35 71-58.5 147T353 1284q-37 54-57.5 117T275 1533q0 116 58 216.5T491 1908q128 205 343 326.5t465 121.5q204 0 390-83.5t323-236.5zM583 774l1602 1066q58-60 92-138t34-169q0-63-17-119t-47-106q-24-239-159.5-439T1743 559.5 1299 450q-203 0-390 84T583 774zm799 99q65-11 133-20l70-9q32-4 52-4 29 0 51.5 25t22.5 56q0 40-34 66.5t-73 26.5h-17q-9 0-18-1v19l115 155q43-24 91-37t101-13q163 0 279.5 116.5T2272 1533q0 69-22.5 131t-62.5 113l-87-59q31-38 48.5-85t17.5-100q0-120-86-205t-204-85q-35 0-67.5 8t-61.5 22l164 220q9 12 9 28 0 19-13 32.5t-32 14.5l-142-95h45l-108-145q-15 15-27.5 32.5T1619 1397l-87-59q31-54 75-95l-76-103-70 151-81-54 66-141h-277l-143-96h393q-44-7-73-21.5t-29-40.5q0-54 65-65zm-278 617l2 21v22q0 163-116.5 279.5T710 1929t-279.5-116.5T314 1533q0-132 80.5-238T600 1153l136 91q-6 0-19-1-128 0-212.5 86.5T420 1533q0 118 85 204.5t205 86.5q119 0 205-86t86-205q0-36-8.5-70t-24.5-64zM934 939l5-27q12-79 35-111t55-44q10-19 44-25.5t108-6.5l56 1q23 0 40.5 19.5T1295 788q0 36-27.5 55t-86.5 19h-40q-14 0-27.5 1.5T1089 865q-21 0-35-11-5 8-10.5 25.5T1033 927l-13 69zm-241 548q42-42 74-88t57-96l80 54q-47 91-101 152.5t-65 67.5-26 6q-18 0-34-14t-16-36q0-26 24-40zm725 214q-4 16-23 25t-61 9l-29-1h-39q-33 0-43-11.5t-10-32.5q0-25 23.5-41.5t50.5-16.5h14l2-8z"},"children":[]}]};exports.u1F6B3=u1F6B3;var u1F6B4={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2237.5 2283.5Q2114 2407 1943 2407q-163 0-284-112.5T1526 2018h-39q-25 35-62 53t-43.5 18-12.5 11q31 0 51 12t20 44q0 27-21.5 41t-69.5 14q-17 0-32-1t-27-1h-23q-21 0-38-7t-19-36q0-27 19.5-44t44.5-22q-42-11-60.5-37t-18.5-61q0-48 25-85t25-59q0-29-22.5-90t-22.5-129q0-54 10.5-100.5t25.5-87.5l-201-30q26-14 49.5-33.5t45.5-39.5l140 20q10-24 16-48t6-49q0-48-24.5-83.5T1239 1146l-20-28q-31 84-93 154.5t-136 110-117 39.5q-24 0-48 19t-83 19q-69 0-111-34.5t-42-92.5l1-11q-10-19-14.5-33.5T571 1256q0-68 45-104.5t111-36.5q25 0 54.5 7.5T866 1142q-14 22-43 37t-58 28l-20-4q-9 0-19-1-23 0-40.5 6.5T663 1229q22-8 45-8 20 0 40.5 5t41.5 5q36 0 99-45.5t94.5-110.5 34.5-140q-29-6-89.5-13.5t-123-61T718 718h-6q-23 0-37.5-19T660 632q0-119 74-211.5T971 328t262 59 99 110q0 13-10 21.5t-27 15.5l-22 8q-7 4-14 5 11 33 11 78.5t116 74 240 138 124 235.5q0 20-3.5 39t-8.5 38l28 12q12 4 25.5 27.5t13.5 47.5q0 42-35.5 69.5T1687 1334l-22-1q-13 0-22-3-110 149-141.5 235t-31.5 160q0 89 19 136.5t19 85.5v10l-2 11q6-9 10-18t7-19h5q11-76 46.5-140.5T1664 1677l-95-129q14-43 46-82l119 160q46-27 98.5-41.5T1943 1570q170 0 294 122.5t124 295.5q0 172-123.5 295.5zM1711 1740q-40 38-67 86t-37 105h246zm470.5 7.5Q2081 1648 1943 1648q-45 0-85.5 10.5T1781 1689l193 260q8 11 8 25 0 20-12.5 32t-30.5 12h-335q12 131 109.5 220.5T1943 2328q138 0 238.5-99.5T2282 1988t-100.5-240.5zM833 1610q107 50 174 152t67 226q0 172-123.5 295.5T656 2407q-173 0-296-124t-123-295q0-172 123.5-295T656 1570q25 0 48.5 3t46.5 8l10-39q5-20 11-41 30 0 53.5-8t42.5-20q-8 35-20 79.5t-15 57.5zm112.5 201.5Q896 1729 811 1686q-12 42-22 75l-19 61q-31 98-46 133t-28.5 56-38.5 21q-18 0-31.5-12t-13.5-32q0-10 31-74.5t87-256.5q-36-9-74-9-138 0-239 99.5T316 1988t101 240.5 239 99.5 238.5-99.5T995 1988q0-94-49.5-176.5zM1160 1700q4 63 17 96t13 47q0 17-9 33l-299-410q22-8 41.5-9.5t51.5-9.5z"},"children":[]}]};exports.u1F6B4=u1F6B4;var u1F6B5={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2351 2516.5q-15 4.5-27 4.5l-190 7q-30 0-60.5 1.5t-60.5 1.5q-35 6-69 6-13 0-25-1l-26-1-176 4q-158 4-273 5t-279 1l-306-1q-80 0-155-1l-138-2q-62 0-106-2.5t-61-4.5l-15-2q-15-2-28-5.5t-13-11.5q0-7 12.5-15.5T395 2479l24-11q6-3 43-23t63-22q-5-8-16-13.5t-21-5.5q-29 0-57.5 12.5T378 2439q-78-62-124-152.5T208 2089q0-183 132-315t317-132q36 0 74 6l80-306-56-14q-17 12-39 12-23 0-40-11.5t-27-29.5q-7 4-13 4-49 0-49-59 0-64 29.5-94.5T707 1119q79 0 119.5-19t91.5-48 99-73l76-69q-29-11-92.5-25.5T880 815t-77-154q-3 0-6 1h-7q-21 0-31-22t-10-52l-1-30q0-134 102-230t237-96q137 0 221.5 82.5T1393 530q0 26-6.5 51t-25.5 32v9q0 52 75.5 79.5t159 90.5 139 154.5T1790 1136q0 32-6 64t-19 61l5 4q17 14 26.5 33t9.5 40q0 42-35.5 69.5T1688 1435q-11 0-26.5-3.5T1628 1420q-87 76-120.5 121.5T1447 1656t-27 162q0 26 1.5 51t1.5 51q0 32-4.5 57t-16.5 46h99q11-78 47.5-145t92.5-118l-80-107-99 216q-3-18-3-36 0-82 27.5-163.5t75.5-138 69-56.5q7 0 11 1l-31 68 114 154q49-27 104-41.5t115-14.5q185 0 316 132.5t131 314.5q0 91-33 170t-91 140q-11-4-20.5-8t-20.5-4q-16 0-30 7l-24 11h-1q-29 13-42.5 23.5T2115 2450q3 0 8.5 1.5t8.5 1.5q18 0 43.5-14.5t43.5-14.5q19 0 83 34.5t64 47.5q0 6-15 10.5zM1808 1810l175 234q10 17 10 32 0 22-15.5 37t-37.5 15h-304q14 106 88.5 180.5T1900 2397q8-5 17.5-8t16.5-3q8 0 20.5 4t19.5 8q117-12 198.5-100t81.5-209q0-126-90.5-217.5T1944 1780q-75 0-136 30zm-86 62q-30 31-51 69t-30 82h195zm-542-749q-6 4-90 65.5T935 1285q5 12 5 22 0 12-6 23t-15 18l-16 59 320 46 27-49q26-46 39-83t13-70q0-41-31.5-102t-34.5-66zM875.5 2308.5Q967 2217 967 2089q0-86-46-161.5T796 1813l-78 298q-5 17-20 28t-32 11q-23 0-38-16.5t-15-37.5l2-13 80-301q-10-2-29-2-139 0-229.5 91.5T346 2089q0 128 91.5 219.5T657 2400q127 0 218.5-91.5zM1427 2437l51-18q23-8 44-8 25 0 52.5 9t73.5 17l42 7q21 4 38 6t25 2q17 0 35.5-7t35.5-15q0-5-9.5-8.5t-14.5-3.5q-9 0-18.5 2.5t-18.5 2.5q-4 0-21-3l-85-13q-23-4-36-8-52-54-84-123t-40-148h-68q-17 31-69 48t-56 19l-27 9q-13 5-25 5-11 0-26-11t-15-38q0-10 3.5-19t8.5-17q-5 0-10 1l-11 1q-38 0-67.5-26.5T1105 2027q0-57 34.5-95.5t34.5-70.5q0-31-11.5-66.5T1151 1708q0-39 7.5-79.5t19.5-75.5l-209-30 147 201 4 42q0 21 6 43l6 24q3 12 3 25 0 24-17 46l-254-348-32 121q123 53 198 165t75 247q0 78-25.5 148t-70.5 128q-24 10-100 34t-76 47q0 4 3 7 21-6 46-14l49-16q24-7 48-12.5t44-5.5q17 0 61 15t112 29.5 99 14.5q39 0 72-8.5t60-18.5z"},"children":[]}]};exports.u1F6B5=u1F6B5;var u1F6B6={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1841 2407.5q-65 59.5-138 59.5-70 0-109.5-68.5T1503 2249l-99-152q-7-11-39.5-76t-82.5-65q-12 0-20 6l-18 12q-85 47-176 170.5T977 2293q0 11 4 21l15 42q3 11 3 22 0 37-30 64t-66 27q-65 0-128-68t-63-130q0-83 81.5-164.5T921 1959l24-37q26-41 42-79.5t16-69.5q0-42-5.5-82.5T992 1608q0-37 4-55t10-28l9-14q4-7 7.5-14.5t3.5-15.5-4.5-13-10.5-5q-31 0-58 60t-27 103q0 9 4 19.5t4 60.5q0 47-29.5 69t-70.5 22q-70 0-105-38t-35-111q0-71 45-171t124-191 149-146.5 70-98.5q0-29-41.5-66T965 862.5 931 712q0-140 102.5-246T1285 360q152 0 245 99.5t93 241.5q0 35-6.5 69.5T1599 840q-14-3-27.5-6.5T1544 830q-34 0-52 4.5t-18 18.5q0 16 17.5 28t40.5 20l28 9q-13 31-35.5 56.5T1484 998l-24 10q-11 5-17 13.5t-6 29.5q0 37 30 70.5t70.5 98.5 107.5 153 103.5 110 62 56 25.5 71q0 41-32 67t-72 26q-31 0-57-12.5t-48.5-36-41.5-53-39-56-31.5-50.5-28.5-24q-8 0-10.5 9t-2.5 20q0 17 3 37t3 26q0 19 26 139t50.5 170 68 150.5 81 139.5 107.5 39q27 0 60.5 29.5t33.5 65.5q0 52-65 111.5zM1499 737q19-19 19-45 0-27-19-46t-46-19q-26 0-45 19t-19 46q0 26 19 45t45 19q27 0 46-19z"},"children":[]}]};exports.u1F6B6=u1F6B6;var u1F6B7={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1906 323.5Q2186 486 2348.5 766t162.5 606-162.5 606-442.5 442.5-606 162.5q-329 0-611-165.5T247.5 1972 88 1372t159.5-600T689 326.5 1300 161q326 0 606 162.5zM675 2091q-22 17-43.5 45t-21.5 70q0 75 81 148t173 73q48 0 87-22t63-65l29-51q62 17 125.5 26.5t131.5 9.5q110 0 217-26 4 53 46 91.5t100 38.5q89 0 164.5-85t75.5-170q0-26-8-58 17-14 33.5-28.5t32.5-29.5L491 867q-69 110-106.5 237.5T347 1372q0 205 84.5 392T675 2091zM906 503q-152 69-270 184l1471 1191q69-110 107.5-238t38.5-268q0-291-162.5-531.5T1662 490q-44-119-145.5-193T1282 223q-137 0-238.5 76T906 503zm1012 1106q-3 14-11 32l-242-197q-29-48-64.5-75.5T1544 1341q-4 0-6 1l-419-340q10-20 10-39 0-39-46-53t-77-87l28-10q25-8 42-20.5t17-25.5q0-14-15.5-19t-51.5-5q-17 0-31 3.5t-27 5.5q-11-34-18-69t-7-71q0-139 93.5-238.5T1282 274q157 0 254.5 108t97.5 242q0 78-37.5 157t-75 111-37.5 60q0 54 110.5 115t219.5 198 109 285q0 14-1 29zm-831-125l6-54 568 460q43 58 117 132t74 159q0 62-63 129.5t-126 67.5q-37 0-66.5-26t-29.5-64q0-16 11-42t11-43l-3-16q-3-10-74-112t-128-147-76-53.5-31-8.5q-42 0-72.5 62.5T1108 2091l-56 83q-23 35-42 70l-40 70q-19 32-46.5 47t-59.5 15q-75 0-139-59.5T661 2205q0-33 35-65.5t79-30 82.5-34 82-135.5 72-159 51.5-174zm-323.5 101q-32.5-28-32.5-66 0-36 26-69.5t63-57 99-104.5l137 113-14 27q-6 12-69 98.5T836 1613q-40 0-72.5-28zM1068 559.5q-19 18.5-19 45.5 0 26 19 44.5t45 18.5q27 0 45.5-18.5T1177 605q0-27-18.5-45.5T1113 541q-26 0-45 18.5z"},"children":[]}]};exports.u1F6B7=u1F6B7;var u1F6B8={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2165 1258q-2 0-5 1-8 0-17.5-9t-18.5-9q-10 0-20 17t-21 17q-13 0-21.5-9.5T2045 1253q-14 29-41 51.5t-61 38.5q24 22 47 55t42 64l75 124q58 94 82 97t56.5 32 32.5 62q0 28-26.5 50t-61.5 22q-22 0-48.5-11t-35.5-29-48-62q7 18 12.5 36.5t10.5 37.5l11 38q5 15 5 30 0 28-39 45.5t-84 32.5q-2 35-6.5 71.5t-4.5 72.5q0 50 8.5 74.5t45.5 45.5 37 60q0 40-33 62t-75 22q-101 0-111.5-131.5T1819 1995q-6 0-12 1h-29.5l-16.5-2q-10 17-57 94t-47 119q0 14 6 22l11 18q8 12 12.5 22.5t4.5 26.5q0 32-23.5 52t-57.5 20q-50 0-84-30t-34-73q0-29 10.5-59.5t22.5-59.5l34-81 44-101q-49-14-74.5-32.5T1503 1889q0-8 2-16l15-52q7-29 17-57t21-55l-8 1q-31 0-74.5-35.5T1409 1639q-12 35-41 50.5t-62 15.5q-59 0-120.5-53.5t-86-96.5-32.5-43q-3 0-4.5 3.5t-1.5 8.5q0 7 2 18l4 28 38 198q13 69 54 141.5t76.5 131.5 81.5 59h13q27 0 54 26t27 58q0 48-59 101.5t-124 53.5q-66 0-100-60.5t-89-142.5-96-151.5-92-69.5q-48 0-95.5 43.5T663 2072l-47 72q-8 11-13 19.5t-5 21.5q0 20 9.5 39t9.5 40q0 34-26.5 58t-60.5 24q-60 0-116-61t-56-119q0-83 78.5-156.5t134-166T626 1680q0-15-1-33t-1-35q0-64 15-84t15-36q0-10-4-13.5t-9-3.5q-28 0-52.5 54t-24.5 98q0 7 4 16.5t4 52.5q0 39-24.5 61t-66.5 22q-78 0-103-41.5t-25-96.5q0-69 49.5-169.5t121-177 106.5-105 35-47.5q0-23-43.5-44t-102-112.5T461 787q0-151 111-264.5T856 409q90 0 181 33.5t149.5 99T1245 663q0 5-1.5 9t-6.5 4q-3 0-7.5-2t-7.5-2q-4 0-4 5t4 14l5 13q5 23 7 47t2 48q0 93-38.5 185.5T1037 1144q8 14 45.5 55t65 91.5 58.5 92.5l23 30q23 32 52.5 62.5t51.5 42.5q6-27 33.5-42.5t71.5-15.5q39 0 65.5 19.5t31.5 55.5q13-18 48-93.5t68-98.5q-23-11-40.5-24.5T1573 1287q-10 5-20 15.5t-22 10.5q-10 0-20.5-13.5T1490 1286q-5 0-9 3l-18 15q-5 4-9 4-12 0-34-51.5t-22-126.5q0-170 120-298.5T1792 703q69 0 137 25.5t107 64.5l34 34q60 65 93 143t33 158q0 31-6 64t-19 59z"},"children":[]}]};exports.u1F6B8=u1F6B8;var u1F6B9={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1879 1844q-39 50-97 50-44 0-80-29.5t-36-72.5q0-46 4.5-83.5t4.5-75.5q0-60-26.5-139.5T1599 1414q-14 0-20 5.5t-6 26.5 6 53l13 69q7 38 13 78.5t6 77.5q0 63-16 107t-27.5 62-19 87.5-7.5 142.5q0 86 10.5 137t26.5 62 41.5 38 25.5 65q0 50-34 73t-93 23q-103 0-149.5-42t-46.5-128q0-27 3-60l10-139q2-35 2-66 0-52-7.5-84.5T1300 1969t-29.5 31.5-7.5 82.5q0 31 3 66l11 141q2 34 2 61 0 85-45.5 127.5T1082 2521q-59 0-93-23t-34-73q0-38 26.5-66t41.5-39 26-60 11-140q0-182-35-243.5T990 1724q0-37 6-77.5t13-78.5l12-69q6-32 6-53t-6-26.5-20-5.5q-23 0-49.5 79.5T925 1633q0 38 4.5 75.5t4.5 83.5q0 42-35.5 72t-80.5 30q-58 0-97-49.5T682 1705q0-156 103-377.5t255-299.5l45-22q16-8 16-25 0-16-52-59t-81.5-106.5T938 668q0-157 104.5-256t257.5-99q149 0 255.5 98.5T1662 661q0 87-29.5 151.5t-81.5 109-52 59.5q0 17 17 25l45 22q152 78 254.5 299.5T1918 1703q0 91-39 141zM1209.5 691q16.5-19 16.5-45 0-27-16.5-46t-39.5-19-39 19-16 46q0 26 16 45t39 19 39.5-19zm203.5 73.5q-10-9.5-23-9.5-4 0-8 2l-9 4q-31 19-73 19-19 0-37.5-4.5T1227 761l-8-4q-5-2-9-2-13 0-22.5 9.5T1178 788q0 25 39.5 41.5T1300 846q42 0 82.5-16t40.5-42q0-14-10-23.5zm56.5-164.5q-16.5-19-39.5-19t-39 19-16 46q0 26 16 45t39 19 39.5-19 16.5-45q0-27-16.5-46z"},"children":[]}]};exports.u1F6B9=u1F6B9;var u1F6BA={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1897 1814.5q-30 27.5-70 27.5-57 0-118.5-97T1603 1499t-70-149q-13 0-19 12.5t-6 32.5q0 46 26.5 127t62.5 140l34 57q16 27 27 50t11 41q0 55-64 81t-85.5 33-38.5 109.5-19.5 137.5-2.5 64q0 86 22 101.5t49.5 42 27.5 68.5-27.5 61.5-68.5 19.5q-72 0-105.5-29.5T1323 2390q0-25 2-60l5-74q2-38 4-78t2-76q0-67-9-96.5t-27-29.5-27 30-9 99q0 37 2 77.5t5 78.5l4 73q2 35 2 60 0 85-43 109.5t-96 24.5q-42 0-69-20t-27-62q0-27 13-48.5t38-40.5l28-21q11-9 16-36.5t5-63.5q0-33-3.5-74t-19.5-135.5-36.5-101-85-32.5-64.5-77q0-20 10.5-43.5T970 1722l34-58q34-57 61-138t27-132q0-20-5.5-32t-18.5-12q-27 0-72.5 151.5t-105.5 246-117 94.5q-40 0-70-27.5t-30-66.5q0-65 67.5-94.5t89.5-97 91-234 133-223 113-70 49-46.5q0-11-17.5-23.5T1151 932q-27 31-70 45.5T997 992q-36 0-61.5-11T910 950q0-21 30-50.5T970 796q0-23-2-50t-2-57q0-173 91-274t243-101 243 102 91 278q0 29-1 54t-1 48q0 79 29 106t29 48q0 20-25 31t-62 11q-41 0-84-14.5t-70-45.5q-28 15-46.5 27.5T1384 983q0 32 44.5 45t104 57 125 185.5 92 224 48 111.5 75.5 55 54 87q0 39-30 66.5zM1381.5 694q14.5 17 34.5 17t35-17 15-40q0-24-15-41t-35-17-34.5 17-14.5 41q0 23 14.5 40zm-162.5 0q14-17 14-40 0-24-14-41t-34-17-34.5 17-14.5 41q0 23 14.5 40t34.5 17 34-17zm165.5 81.5Q1374 766 1362 766q-6 0-11 2l-12 6q-7 4-16 6.5t-23 2.5-23-2.5-15-6.5l-12-6q-5-2-12-2-12 0-21.5 9.5T1207 799q0 21 29 35t64 14q33 0 64-13.5t31-35.5q0-14-10.5-23.5z"},"children":[]}]};exports.u1F6BA=u1F6BA;var u1F6BB={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1342 264v2200q0 17-12.5 30t-29.5 13-30.5-13-13.5-30V264q0-17 13.5-30t30.5-13 29.5 13 12.5 30zm-230.5 1540q-33.5 42-81.5 42-41 0-70-26.5t-29-60.5q0-47 9-87t9-83q0-56-22-105.5t-43-49.5q-14 0-23 5t-9 26q0 29 15 106t15 129q0 80-29.5 133T823 2038q0 65 8.5 113.5t27.5 63 37 34.5 18 51q0 42-28.5 60.5T807 2379q-92 0-131-36t-39-109q0-39 7-109.5t7-117.5q0-43-6.5-70.5T619 1909t-25 27.5-6 70.5q0 27 2 57l9 119q2 29 2 51 0 73-39 109t-131 36q-49 0-77.5-18.5T325 2300q0-31 17.5-52.5T379 2213t27-62.5 8-109.5q0-155-29.5-212T355 1704q0-31 5-65.5t11-66.5l10-60q5-28 5-47 0-21-9-26t-22-5q-27 0-47 56t-20 100q0 42 9.5 82.5t9.5 86.5q0 34-29.5 60.5T207 1846q-48 0-81.5-42T92 1686q0-129 86-299.5t176.5-235T447 1082t2-13q0-16-30-38.5t-69-80T311 801q0-133 89-218t219-85 219 84.5T927 794q0 77-26 131t-69 92-43 52l1 11q1 6 92.5 71.5t177 233T1145 1686q0 76-33.5 118zm1370.5-32.5q-26 22.5-57 22.5-50 0-101.5-81t-88.5-207-60-126q-11 0-15.5 10.5t-4.5 26.5q0 46 24.5 115.5T2230 1645l28 48q13 23 22 43t9 38q0 39-46.5 61t-71 27-41 100.5T2114 2126t12 79 41.5 36 29.5 63q0 34-22.5 51t-57.5 17q-64 0-90.5-25t-26.5-87q0-40 5.5-113t5.5-132q0-47-6.5-77t-23.5-30q-19 0-24.5 29.5t-5.5 74.5q0 31 2 64l6 128q0 29 1 51 0 68-27.5 92.5T1845 2372q-36 0-59-17.5t-23-52.5q0-32 22.5-54.5t42-33.5 19.5-86q0-66-16-162.5t-35-101-72-26-53-64.5q0-18 9-38t23-43l28-48q30-50 52.5-118.5T1806 1419q0-17-5-28t-16-11q-22 0-60 128.5t-88.5 207-99.5 78.5q-32 0-58.5-23.5T1452 1716q0-54 56-76.5t78-92.5 83.5-208.5 113.5-178 89.5-50 37.5-36.5q0-10-16-20l-39-24q-23 26-59 38t-70 12q-31 0-52.5-9t-21.5-26q0-16 24.5-40t24.5-89v-42q0-21-1-46 0-158 81-238t200-80q117 0 198 78.5t81 242.5v45l-1 40q0 63 25.5 87.5t25.5 41.5-22.5 26-53.5 9q-34 0-70.5-12t-57.5-38q-24 14-39.5 24t-15.5 20q0 27 38 37t93.5 53.5 118 194.5 79 203.5 72.5 75 56 78.5q0 33-26 55.5z"},"children":[]}]};exports.u1F6BB=u1F6BB;var u1F6BC={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2078 1415.5Q1949 1523 1786 1523q-54 0-96-13 5 22 5 33 0 8-1 15t-2 11q52 41 80.5 114t28.5 156q0 44-8.5 84t-23.5 78q56 43 87.5 93.5T1888 2197q0 80-40 129.5t-72.5 65-32.5 46.5q0 17 5 32.5t5 34.5q0 42-37.5 73t-79.5 31q-76 0-129.5-58.5T1453 2417q0-47 25-83t66-51 41-29-14-19-41-10q-54 22-118.5 34t-130.5 12q-65 0-120.5-11t-98.5-33q-24 5-35 10t-11 17q0 14 41 29.5t65.5 51 24.5 82.5q0 76-54 134t-129 58q-41 0-78.5-30t-37.5-74q0-19 4.5-34.5t4.5-31.5q0-32-32-47.5t-72.5-65T712 2197q0-54 35-107.5t94-94.5q-16-40-24.5-83.5T808 1823q0-80 27.5-158t79.5-105q5-14 8.5-28.5t3.5-26.5q-23 8-51.5 13t-60.5 5q-107 0-214.5-52.5t-157.5-143-50-161.5q0-64 40.5-100.5T548 1029q60 0 92 32.5t32 80.5q0 77 49 105t102 28q29 0 56.5-8.5T927 1250q-93-86-134.5-185.5T751 862q0-130 61.5-245.5T986 428q-29-27-45-60.5T925 305q0-24 13-45t41-21q18 0 50 27t95 48 168 21q233 0 387 159.5T1833 860q0 103-40.5 202T1667 1242l-5 4 52 18q31 11 64 11 53 0 102-29.5t49-96.5l-1-10q0-47 33-78.5t91-31.5q68 0 111.5 35t43.5 102q0 142-129 249.5zM1684 1745q-13-44-36-70-41 35-127 52.5t-247 17.5q-128 0-205.5-18.5T949 1672q-17 28-26 69t-9 82q0 153 101.5 247t261.5 94q196 0 308-90.5t112-231.5q0-53-13-97zm-670-938q-25 31-25 76t25 76 63 31q34 0 60-30.5t26-76.5-26-76.5-60-30.5q-38 0-63 31zm433 152.5q26 30.5 61 30.5 36 0 61.5-32t25.5-75-25.5-75-61.5-32q-35 0-61 30.5t-26 76.5 26 76.5zm-73.5 100Q1341 1077 1292 1077q-52 0-82.5-17.5T1167 1042q-14 0-27 10.5t-13 27.5q0 31 55 53t110 22q51 0 107.5-20.5t56.5-52.5q0-15-11.5-27.5T1416 1042q-10 0-42.5 17.5z"},"children":[]}]};exports.u1F6BC=u1F6BC;var u1F6BD={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2037 659q31 0 52.5 21t21.5 52v807q0 30-21.5 51.5T2037 1612h-292q0 107-49.5 212.5t-130 155T1485 2083q0 60 31 76t61 37 30 64q0 49-55 58t-137.5 17-155.5 8q-63 0-130-3t-155-8q-33 0-63-19t-30-51q0-50 67-82.5t67-81.5q0-33-18.5-54t-55-39-83.5-34-107-61-98-95-49-78-42-45l-22-12q-24-12-37.5-37t-13.5-59q0-58 33.5-83t92.5-25l17 1q35 0 83-4t237-4q63 0 119-1l106-2q24 0 86-1t103-1h62l61 2q-9-12-22-34t-94-214l-126-295q-46-106-81-186.5T1131 596q0-48 24-76.5t72-28.5q36 0 67 34t47 75l25 58 155 358 21 56q15 42 38.5 97t49.5 106V732q0-31 21.5-52t51.5-21h334z"},"children":[]}]};exports.u1F6BD=u1F6BD;var u1F6BE={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M920.5 601q75.5-96 189.5-96 108 0 174 69l1 9-59 144-5 4-6-2q-20-20-48-32.5t-57-12.5q-55 0-90 46.5T985 848t35.5 117 89.5 46q29 0 62.5-15.5T1228 957l6-3 5 5 53 140-1 7q-74 86-181 86-113 0-189-96t-76-248q0-151 75.5-247zM824 528q0 3 1 5l-117 635q0 2-2.5 5.5T695 1177h-92q-10 0-12-9l-66-347-67 347-3 6q-2 3-10 3h-93q-3 0-7-2.5t-5-6.5L226 546q-2-8-2-12l-1-5q0-4 4.5-7.5t9.5-3.5h115q5 0 8.5 3.5t3.5 7.5l44 298 62-298q5-11 12-11h84q2 0 7 2.5t5 8.5l62 296 42-296q2-4 5-7.5t8-3.5h116q5 0 11 6zm1478 131q31 0 52.5 21t21.5 52v807q0 30-21.5 51.5T2302 1612h-292q0 106-49 211t-130 155.5-81 104.5q0 61 30.5 76.5t60.5 36.5 30 64q0 49-55.5 58t-137 17-155.5 8q-62 0-129-3t-155-8q-34 0-64-19t-30-51q0-51 67.5-82.5t67.5-81.5q0-40-31-66.5t-119.5-58-159-101T880 1756t-53-64l-23-12q-25-13-37.5-38.5T754 1584q0-58 33.5-83t92.5-25l17 1q35 0 83-4t237-4q63 0 118-1l106-2q24 0 86-1t103-1h62l62 2q-9-12-22.5-33t-94.5-215l-60-140q-138-322-159.5-376T1396 596q0-48 24-76.5t72-28.5q31 0 63 31.5t55 84.5l52 123 71 164q47 108 82.5 201.5T1895 1275V732q0-31 21.5-52t50.5-21h335z"},"children":[]}]};exports.u1F6BE=u1F6BE;var u1F6BF={"viewBox":"0 0 2648 2760.837","children":[{"name":"path","attribs":{"d":"M1870 1518q-92 109-242 109t-307.5-110.5-257-294T964 855q0-171 91-281t243-110q150 0 306 110t257 293.5 101 369.5q0 172-92 281zm737.5 111q-5.5 11-14.5 19 19 80 28.5 160t9.5 163q0 204-75 271.5t-185 67.5q-51 0-69-17t-18-40q0-25 22-101t22-196q0-34-2-67t-6-65l-14-73q-41-2-55-30t-50-91.5-50-79-49-15.5q-28 0-54 7t-51 17l-51 20q-26 11-53 17 60-60 87-108t50-117 23-164q0-178-101.5-373T1687 529t-341-123q35-8 82.5-13t89.5-5q97 0 192 20.5t204 77T2121 626t182.5 192 161.5 266.5 112.5 315T2613 1603q0 15-5.5 26zM2 1567q1-8 66.5-81.5T226 1336t186-132.5 201-97.5 170-53l41-7q23 0 37 13t14 33q0 17-11 29.5t-28 15.5q-25 0-138.5 36T450 1290t-231 173.5-121 128-51 35.5q-20 0-33.5-14T0 1581zm392.5 228Q517 1627 667 1503t262-176l36-17q10-4 18-4 17 0 31 13t14 33q0 14-7 26t-21 18q-13 0-116 62.5T666.5 1628 472 1846t-101 153.5-53 42.5q-19 0-32.5-14.5T272 1996q0-33 122.5-201zm302 460q26.5-64 80.5-173.5t134-232 152.5-203 87.5-90 28-9.5q19 0 32.5 13t13.5 33q0 21-15 35l-21 19q-58 54-149.5 179T866 2114t-97 213.5-53 50.5q-21 0-33.5-14.5T670 2332q0-13 26.5-77zm512 23.5q38.5-179.5 108-365.5t83.5-200 34-14q22 0 33.5 15t11.5 32q0 19-11.5 36t-79.5 206-100 355-32 167.5-9 10.5q-13 12-31 12-19 0-32.5-13t-13.5-32q0-30 38.5-209.5zm28-1290Q1213 961 1188 961q-18 0-27.5 12.5t-9.5 29.5q0 31 24 58t49 27q13 0 24.5-10.5t11.5-31.5q0-30-23.5-57.5zm373-137.5q9.5-12 9.5-29 0-30-23.5-57.5T1546 737q-17 0-26.5 13t-9.5 30q0 29 23 56t49 27q18 0 27.5-12zm-199 406.5Q1387 1230 1362 1230q-18 0-27 13t-9 30q0 33 24 58.5t48 25.5q13 0 24.5-10.5t11.5-31.5q0-30-23.5-57.5zm81-246Q1468 984 1443 984q-17 0-26.5 13t-9.5 30q0 31 23.5 57.5t48.5 26.5q14 0 25-11t11-31q0-30-23.5-57.5zm-165-169q9.5-12.5 9.5-29.5 0-29-23.5-56.5T1264 729q-17 0-26.5 12.5T1228 771q0 31 23.5 57.5T1300 855q17 0 26.5-12.5zm346 443Q1649 1258 1623 1258q-17 0-26 12.5t-9 30.5q0 29 23 56t48 27q17 0 27-11.5t10-30.5q0-29-23.5-56.5zm107-252Q1756 1006 1731 1006q-17 0-26.5 12.5t-9.5 29.5q0 31 23 57.5t48 26.5q17 0 27-11t10-30q0-30-23.5-57.5z"},"children":[]}]};exports.u1F6BF=u1F6BF;var u1F6C0={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2289 1695.5q-71 35.5-86.5 111T2142 1972t-198 167q11 43 28 52t36 9q42 0 67.5 17.5t25.5 59.5q0 40-34 66.5t-82 26.5q-62 0-129-46t-105-111l-4-6q-100 23-198 29.5t-189 6.5q-51 0-101-2l-110-2q-66-2-141-9.5T853 2205q-31 62-101 113.5T615 2370q-47 0-81-26.5t-34-67.5q0-31 19.5-53.5T573 2200q35 0 55-10.5t28-50.5l-48-24q-38-19-71.5-48.5T477 2001t-37.5-59-35-107-30-89.5-10.5-14-17-14-35-19.5-33.5-26.5T256 1637q-16-29-16-80 0-66 43.5-103.5T425 1413q-74-39-123.5-116T252 1139q0-128 92-215t222-87q111 0 198.5 80.5T852 1128l-1 61q0 59 20.5 87.5T965 1321l53 12q39 9 89 32t77 48q113 2 226 2h226q46-58 100-92.5t109-34.5q59 0 117.5 34t99.5 93l101-1q98 0 147.5 38t49.5 106q0 102-71 137.5zm-37.5-177Q2233 1505 2162 1505q-20 0-103 1t-137 1l-133-1h-96q-81 0-160-1h-159q0 3 1.5 8.5t1.5 11.5q0 40-27.5 71t-113.5 33.5-148 63-122.5 83.5-118.5 23q-115 0-189.5-80.5T574 1506q-37 0-70-1.5t-64-1.5q-60 0-85 10.5t-25 41.5q0 52 28 64t66 45.5 70.5 162T628 2021t236.5 95 287.5 32h10q57 2 104.5 3.5t93.5 1.5q210 0 364.5-34.5t253-101.5 131-196.5 72-161 64.5-42 25-58.5q0-27-18.5-40.5zM960.5 522q79.5-72 113.5-72 8 0 13.5 4.5t5.5 15.5q0 28-28 80.5t-28 90.5q0 52 47 113.5t47 119.5q0 69-48.5 141.5T1004 1088q-5 0-17-8t-12-26 18.5-52 18.5-73q0-47-65.5-109.5T881 692q0-98 79.5-170zm335 4q76.5-76 116.5-76 8 0 14 4.5t6 15.5q0 26-28.5 75.5T1375 641q0 50 47.5 113.5T1470 873q0 67-48 141t-80 74q-6 0-18-8.5t-12-25.5q0-20 18.5-49.5T1349 929q0-49-65-110.5T1219 691q0-89 76.5-165zm340-3q77.5-73 113.5-73 8 0 14 4.5t6 15.5q0 28-28.5 81t-28.5 90q0 51 47.5 113t47.5 120q0 68-47.5 141t-80.5 73q-5 0-16.5-8t-11.5-25q0-18 18.5-50.5T1688 929q0-48-65-110.5T1558 689q0-93 77.5-166zM906 1503q-67 0-129 2 6 43 28.5 68t62.5 25q69 0 120-45.5t56-49.5H906z"},"children":[]}]};exports.u1F6C0=u1F6C0;var u1F6C1={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2408 1591.5q-33 39.5-75.5 54T2263 1781t-91.5 197-178.5 127l8 25q6 19 20.5 30t41.5 11q53 0 75.5 24.5t22.5 57.5q0 42-36 71t-88 29q-71 0-148-56.5T1781 2177q-108 25-212.5 32.5T1365 2217q-112 0-218-6h-9q-72-2-152-9t-166-26q-31 65-108 121t-149 56q-53 0-89-29.5t-36-70.5q0-33 21.5-57.5T519 2171q49 0 63-15t25-51q-110-49-175.5-125t-94-198-71.5-138-75-55.5-32-113.5 54-113 162-39q51 0 100 2.5t102 2.5q47 0 203.5-2.5t262.5-2.5q173 0 340 2t340 2h175l72 1q75 0 136-2t117-2q108 0 163 41t55 116q0 71-33 110.5zm-105-160q-40-9.5-76-9.5-24 0-111 1.5t-146 1.5l-72-1h-175q-177 0-343.5-1.5T1043 1421q-105 0-261.5 2t-202.5 2q-54 0-105-2.5t-99-2.5q-66 0-92.5 13t-26.5 45q0 55 40.5 73t73.5 53 56 123l18 72q37 145 216.5 225.5T1141 2115h10q53 2 106.5 3t107.5 1q235 0 397.5-37.5t265.5-105 140-214.5 84-179.5 69-42 22-58.5q0-41-40-50.5zM1039 500q0 16-7 30l-15 29q-14 27-26 56t-12 61q0 56 51 123.5t51 127.5q0 45-18 86.5t-43 77.5l-14 19q-15 19-31.5 32.5T943 1156q-6 0-19-8t-13-27q0-9 3.5-19t8.5-20l10-19q6-10 12.5-29t6.5-33q0-66-71-132t-71-139q0-60 32.5-115.5T939 512l24-17q12-8 28-16t28-8q20 0 20 29zm357-22.5q6 6.5 6 22.5 0 24-30 77t-30 99q0 56 51 123.5t51 127.5q0 45-18 86.5t-43 77.5l-14 19q-18 22-33 34t-28 12q-6 0-20-8t-14-26q0-9 4-19t9-20l10-20q8-14 13-32t5-34q0-63-71-128.5T1173 730q0-60 32.5-115.5T1302 512l24-17q16-11 31-17.5t25-6.5q8 0 14 6.5zm363-1.5q6 5 6 17 0 35-30 85t-30 98q0 56 51 123.5t51 127.5q0 45-18 86.5t-43 77.5l-14 19q-18 22-33 34t-28 12q-6 0-20-8t-14-26q0-9 4-19t9-20l10-20q6-10 12.5-29t6.5-33q0-66-71.5-132T1536 730q0-57 35-116t95-102l24-17q9-6 26.5-15t28.5-9q8 0 14 5z"},"children":[]}]};exports.u1F6C1=u1F6C1;var u1F6C2={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1283 2286l1 36q0 18 5 35l4 19q2 11 2 22 0 40-63.5 50.5t-117.5 21-155 10.5q-124 0-297.5-21T488 2365q0-24 8.5-46t16.5-45q30 8 73.5 15t100.5 13l46 5q55 6 111 6 72 0 169-7l209-14q10 0 27-1t34-5zm1185-954l2 45v92l-1 23q0 26-6 34.5t-26 27.5l-53 48q-32 29-70 62l-140 123q-43 38-49.5 42t-17.5 7q0 97-76 141.5t-162 44.5q-97 0-238.5-58T1403 1837.5t-110-68.5q-14 0-17.5 20.5t-9 64-5.5 92.5q0 44 3 87t8 87l2 12v12q-9 0-16.5-1t-15.5-1q-69 0-150 8.5t-164 8.5q-43 0-88-4.5t-83-4.5q233-146 439.5-367.5T1403 1432l35 23 76 68q63 57 169.5 117t172.5 60q20 0 35.5-7t33.5-12q-38-51-58-80.5t-20-46.5q0-36 46-83.5t70-75 77.5-78 96-90.5 80.5-40q25 0 44 21t65 76q43-45 61.5-59.5t33.5-14.5q18 0 29.5 14.5t13.5 35.5l2 24q0 13 1 26 0 13 1 22zm-109-8q16 18 31 37l29 36q0-15-1-28v-26l-2-32q0-18-3-43l-21 21q-15 15-33 35zM220.5 2241q-50.5-97-50.5-236 0-78 17-154t70.5-183.5 116.5-185T500 1360t95-59l56-23q25-10 42.5-22t17.5-31q0-15-6-27.5t-15-24.5l-18-23q-10-11-17-24l-34-65q-17-33-21-78.5t-4-73.5q0-42 6.5-84t26.5-83q-20-23-20-54l9-84q10-81 52-112.5t102.5-47T941 403t224-26q178 0 301 73t123 158q0 42-43 86.5t-43 88.5q0 23 33.5 48t33.5 52q0 24-36 37.5t-99 13.5q0 117-36 185.5t-82 111.5-46 69q0 5 1 9t3 9q-6 89-111.5 237T813 1891t-274 207l2-27v-26q0-67 5-131t5-134q-18 38-33.5 58t-31 79-15.5 89q0 36 42 73.5t42 88.5q0 65-54 117.5T386 2338q-115 0-165.5-97z"},"children":[]}]};exports.u1F6C2=u1F6C2;var u1F6C3={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1406.5 1757q-25.5 17-42.5 30l-56 40q-92 66-222 116.5T866 1994q-79 0-158-45t-79-135q0-78 43-120.5t119-42.5q20 0 44.5 10t45.5 10q57 0 158-52t181-122.5 117.5-110 37.5-75.5q0-39-56-90t-88.5-122.5T1198 919q-62 0-98-13t-36-39q0-24 35-53.5t35-46.5q0-44-45-89.5t-45-87.5q0-83 118.5-148.5T1444 376q113 0 259 35.5t211 65.5 79 114l6 35q2 21 6 34.5t4 26.5q0 19-8 35 21 43 28.5 85.5t7.5 87.5q0 88-26 150.5t-26 100.5q0 39 29 77.5t73 66.5q-100 62-195 156.5t-168 180-135.5 149.5-112.5 147q0-46-5-85.5t-8.5-68.5-19.5-29q-11 0-36.5 17zm646.5 517q51-6 91.5-12.5t78.5-15.5l17 44q8 23 8 46 0 75-182.5 95.5T1776 2452q-117 0-173.5-14t-109-20.5-52.5-47.5q0-12 2-21l5-21q2-11 4-27.5t2-42.5q17 4 34 4t26 1l46 6q23 4 46 4 70 2 140 7t139 5q60 0 119-6zm201-882q148 109 230 264.5t82 318.5q0 141-51 236t-148 95q-53 0-94-23t-58.5-52-17.5-87q0-63 42-114l18-22q8-10 8-29 0-30-6-56l-14-54q0-4-18-49t-42-74q0 4 1 11v24q0 61 5 118.5t5 117.5q0 42 3 87-10 2-17 2l-113 9q-21 2-127.5 9t-132.5 7q-69 0-136.5-5.5T1536 2115l94-118q118-149 307.5-342t246.5-223 70-40zm-907 692q28 0 35 27t7 101q0 135-60 183.5t-222 58.5-320 10q-219 0-359-16.5t-182.5-91T203 2137v-8.5l3-9.5q-93-34-134.5-84.5T30 1914q0-101 84.5-386t149-423T440 967q33 0 64 8t63 18l25 7q24 6 42.5 18.5T653 1049v6l-2 7q-12 37-22 73l-22 74q-73 245-132 445.5T342 2084h1005z"},"children":[]}]};exports.u1F6C3=u1F6C3;var u1F6C4={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M599 2013h-75q-91 0-157-66t-66-157V870q0-92 66-157t157-65h75v1365zM2076 648q91 0 157 65t66 157v920q0 91-66 157t-157 66h-75V648h75zm-395 0h157v1365H763V648h157V454q0-42 28-70.5t70-28.5h564q41 0 70 29.5t29 69.5v194zm-197 0v-96h-368v96h368zM271 2290q-22 22-53 22t-52.5-22-21.5-53 21.5-52.5T218 2163t53 21.5 22 52.5-22 53zm216.5 0q-21.5 22-52.5 22t-53-22-22-53 22-52.5 53-21.5 52.5 21.5T509 2237t-21.5 53zm216.5 0q-22 22-53 22t-52.5-22-21.5-53 21.5-52.5T651 2163t53 21.5 22 52.5-22 53zm216.5 0q-21.5 22-52.5 22-32 0-53.5-22t-21.5-53 21.5-52.5T868 2163q31 0 52.5 21.5T942 2237t-21.5 53zm216 0q-21.5 22-53.5 22-31 0-52.5-22t-21.5-53 21.5-52.5 52.5-21.5q32 0 53.5 21.5t21.5 52.5-21.5 53zm216 0q-21.5 22-52.5 22t-53-22-22-53 22-52.5 53-21.5 52.5 21.5 21.5 52.5-21.5 53zm216.5 0q-22 22-53 22t-52.5-22-21.5-53 21.5-52.5 52.5-21.5 53 21.5 22 52.5-22 53zm216.5 0q-21.5 22-52.5 22t-53-22-22-53 22-52.5 53-21.5 52.5 21.5 21.5 52.5-21.5 53zm216 0q-21.5 22-52.5 22t-52.5-22-21.5-53 21.5-52.5 52.5-21.5 52.5 21.5 21.5 52.5-21.5 53zm216.5 0q-22 22-53 22t-52.5-22-21.5-53 21.5-52.5 52.5-21.5 53 21.5 22 52.5-22 53zm216.5 0q-21.5 22-53.5 22-31 0-52.5-22t-21.5-53 21.5-52.5 52.5-21.5q32 0 53.5 21.5t21.5 52.5-21.5 53z"},"children":[]}]};exports.u1F6C4=u1F6C4;var u1F6C5={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M911 606l-77-77 77-78h52l51 52 52-52 52 52 51-52h195q24-77 92-127t150-50q103 0 179 76t76 179q0 102-76 178t-179 76q-82 0-150-50t-92-127H911zm747.5-26.5Q1680 601 1709 601q30 0 51.5-21.5T1782 529q0-30-21.5-51.5T1709 456t-51 21-21 52q0 29 21.5 50.5zM1987 843q83 0 143 60t60 143v1055q0 83-59.5 144t-143.5 61H614q-85 0-144.5-60.5T410 2101V1046q0-84 60-143.5T614 843h1373zm126 203q0-52-37-89t-89-37H614q-52 0-89.5 37t-37.5 89v1055q0 53 37 90t90 37h1373q52 0 89-37.5t37-89.5V1046zm-564 166h102v893H948v-893h103v-126q0-27 19-46t45-19h370q26 0 45 19t19 46v126zm-129-62h-240v62h240v-62zm-773 208q0-61 43.5-103.5T793 1212h49v893h-49q-60 0-103-43t-43-103v-601zm1160-146q60 0 103 43t43 103v601q0 59-42.5 102.5T1807 2105h-48v-893h48z"},"children":[]}]};exports.u1F6C5=u1F6C5;var u203C={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M819 1677q-16 0-16-14l-70-992q0-5 4-10t14-5h390q8 0 13 3.5t5 11.5l-68 992q-4 14-18 14H819zm276.5 373.5Q1151 2101 1151 2198q0 96-55 147.5T948 2397q-98 0-152.5-52T741 2198q0-100 54.5-149t152.5-49q92 0 147.5 50.5zM1526 1677q-6 0-11-4t-5-10l-70-992q0-5 4-10t14-5h390q8 0 13 3.5t5 11.5l-69 992q-2 14-17 14h-254zm276.5 373.5Q1858 2101 1858 2198q0 96-55 147.5t-148 51.5q-98 0-152.5-52t-54.5-147q0-100 54.5-149t152.5-49q92 0 147.5 50.5z"},"children":[]}]};exports.u203C=u203C;var u2049={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1368 1801v-85q0-120 52.5-205.5t162-168 141.5-136 32-129.5q0-70-47.5-111T1574 925q-81 0-174.5 33t-191.5 83l-119-258q140-76 262.5-111t226.5-35q240 0 377.5 114t137.5 311q0 123-51 214t-161 179.5-157 135.5-47 141v69h-309zm317 252.5q55 50.5 55 147.5 0 96-55.5 147.5T1536 2400q-95 0-150.5-50.5T1330 2201q0-101 53-149.5t153-48.5q94 0 149 50.5zM593 1679q-8 0-13-3.5t-5-9.5l-68-992q0-6 4-11.5t12-5.5h392q8 0 13 5.5t5 11.5l-70 992q0 6-5 9.5t-13 3.5H593zm278 375.5q54 51.5 54 146.5t-56.5 147-148.5 52q-95 0-150-51.5T515 2201q0-99 52-148.5t153-49.5q97 0 151 51.5z"},"children":[]}]};exports.u2049=u2049;var u20E3={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2222 383q46 0 79 33t33 79v1845q0 45-33.5 78t-78.5 33H377q-45 0-78-33t-33-78V495q0-45 33-78.5t78-33.5h1845zM563 2147q0 7 7 7h1459q8 0 8-7V688q0-7-8-7H570q-7 0-7 7v1459zM2232 463l-10-1H377q-14 0-23.5 9.5T344 495v1845q0 8 2.5 13.5t6.5 10.5l154-155q-11-13-18-28.5t-7-33.5V688q0-36 26-62t62-26h1459q29 0 51 17z"},"children":[]}]};exports.u20E3=u20E3;var u2122={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1177 527q11 0 18 7t7 18v219q0 11-7 18.5t-18 7.5H825v985q0 11-8 18t-18 7H574q-11 0-18-7t-7-18V797H197q-10 0-18-7.5t-8-18.5V552q0-11 8-18t18-7h980zm1251 1247q0 11-7 20t-19 9h-215q-10 0-17.5-7t-8.5-18l-42-508-163 514q-6 19-22 19h-161q-8 0-15.5-4.5T1747 1784l-162-514-42 508q0 11-8 18t-18 7h-214q-11 0-18.5-7.5t-7.5-21.5l86-1217q2-9 9-16.5t17-7.5h229q21 0 26 19l208 808 209-808q5-19 26-19h228q10 0 17.5 5t8.5 19z"},"children":[]}]};exports.u2122=u2122;var u2139={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2262 1946.5Q2113 2204 1855.5 2353T1300 2502q-299 0-556.5-149T337 1946.5 188 1390q0-298 149-555t406-406.5T1300 279q298 0 555.5 149T2262 834.5t149 555.5q0 299-149 556.5zm-140.5-1034Q1992 691 1772 565t-472-126q-254 0-475.5 128t-349 348.5T348 1390t127.5 475.5 349 349T1300 2342q252 0 472.5-126t349.5-348.5 129-477.5q0-256-129.5-477.5zM1186 1127h228v831h-228v-831zm205.5-132q-31.5 29-91.5 29t-91.5-28-31.5-83q0-56 30.5-83.5T1300 802q59 0 91 26.5t32 84.5q0 53-31.5 82z"},"children":[]}]};exports.u2139=u2139;var u2194={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1693 1189V787l877 643-877 644v-402H906v402L29 1430l877-643v402h787z"},"children":[]}]};exports.u2194=u2194;var u2195={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1541 1792h402l-643 877-644-877h402v-787H656l644-877 643 877h-402v787z"},"children":[]}]};exports.u2195=u2195;var u2196={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M615 719l1074 166-284 284 580 578-340 340-578-580-286 288z"},"children":[]}]};exports.u2196=u2196;var u2197={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1984 717l-166 1074-284-284-578 580-340-340 580-578-288-286z"},"children":[]}]};exports.u2197=u2197;var u2198={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1985 2087L911 1921l284-284-580-578 340-340 578 580 286-288z"},"children":[]}]};exports.u2198=u2198;var u2199={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M616 2088l166-1074 284 284 578-580 340 340-580 578 288 286z"},"children":[]}]};exports.u2199=u2199;var u21A9={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1214 1813q435 0 617-103t182-362q0-258-182.5-361T1214 884H427V554h787q583 0 856 196.5t273 597.5q0 402-275 598.5T1214 2143H865v279l-609-445 609-447v283h349z"},"children":[]}]};exports.u21A9=u21A9;var u21AA={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1734 1813v-283l609 447-609 445v-279h-349q-579 0-854-196.5T256 1348q0-401 273-597.5T1385 554h787v330h-787q-434 0-616.5 103T586 1348q0 259 182 362t617 103h349z"},"children":[]}]};exports.u21AA=u21AA;var u231A={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2177 1256v302h-125q-29 161-120.5 300T1706 2087v353H782v-353q-165-111-262.5-292T422 1407q0-203 94.5-382T782 729V374h924v353q137 94 227 232.5t119 296.5h125zM881 760.5q-172 96.5-276 270T501 1407q0 196 98 367.5T869 2048t375 102q198 0 372-101t272.5-273 98.5-369q0-199-101-372t-273.5-272-368.5-99q-191 0-363 96.5zm916 260.5l61 105-488 280q0 53-37.5 90t-88.5 37q-49 0-87.5-36.5T1118 1404l-286-166 60-104 288 166q14-8 30.5-13t33.5-5q19 0 35.5 5t30.5 13zm-518 354.5q-13-15.5-35-15.5-20 0-34 15t-14 32q0 20 14 34t34 14 34-14 14-34q0-16-13-31.5zm641-2q13 13.5 13 33.5t-13 34-33 14q-19 0-33.5-14t-14.5-34q0-19 14.5-33t33.5-14q20 0 33 13.5zM1532.5 818q14.5-14 33.5-14 20 0 33.5 14.5T1613 851q0 20-14 34t-33 14q-17 0-32.5-13t-15.5-34q0-20 14.5-34zM889 885q-14-14-14-34 0-18 13.5-32.5T922 804q19 0 33.5 13t14.5 35q0 19-14 33t-34 14q-19 0-33-14zm321-153.5q14-13.5 34-13.5t34 13.5 14 34.5q0 20-14 33t-34 13-34-13-14-33q0-21 14-34.5zM719.5 1121q-14.5 13-31.5 13-22 0-35-15.5t-13-32.5q0-21 15.5-34.5T688 1038t31.5 14 14.5 34q0 22-14.5 35zM635 1441q-14 14-34 14t-33-14-13-34 13-33.5 33-13.5 34 13.5 14 33.5-14 34zm84.5 253q14.5 13 14.5 35 0 17-12 32.5t-34 15.5q-19 0-33.5-13t-14.5-35q0-19 13.5-33.5T688 1681q17 0 31.5 13zM956 1997q-14 14-33 14-20 0-34-14t-14-32q0-20 14-34t33-14q17 0 32.5 13t15.5 33-14 34zm322 86.5q-14 13.5-34 13.5t-34-13.5-14-33.5 14-33.5 34-13.5 34 13.5 14 33.5-14 33.5zm321-152.5q14 14 14 34 0 18-14 32t-34 14q-18 0-32.5-12.5T1518 1965q0-19 14-33.5t34-14.5q19 0 33 14zm233.5-167q-15.5 13-32.5 13-22 0-35-15.5t-13-32.5q0-22 15.5-35t32.5-13q19 0 33.5 14t14.5 34q0 22-15.5 35z"},"children":[]}]};exports.u231A=u231A;var u231B={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1995 2214q42 9 69.5 42.5t27.5 78.5q0 52-36.5 88t-88.5 36H632q-52 0-88.5-37t-36.5-87q0-44 27-77t69-44q6-284 95.5-452t241-245.5T1105 1412t14-47q0-69-107.5-115t-200-130.5-149-237.5T603 503q-42-11-69-44t-27-77q0-51 37.5-87.5T632 258h1335q50 0 87.5 35.5T2092 382q0 45-27.5 78.5T1995 503q-6 293-95.5 462.5t-244.5 249-166 107.5-11 43q0 69 105.5 114t199 129 150 233.5T1995 2214zm-959-658q-122 64-166 106t-83 100.5-70.5 171T681 2211h1234q-6-268-89.5-420.5t-255-228.5-171.5-197q0-114 144-182.5t216.5-149.5T1872 825.5t45-314.5H681q3 174 40 302.5t109.5 214T1050 1182t147 183q0 51-28 93t-97 78zm485 66q124 63 173.5 117t88 147.5T1834 2141H762q14-191 75.5-307t172.5-177l66-35h445z"},"children":[]}]};exports.u231B=u231B;var u23E9={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M236 798l1012 585V798l1115 645-1115 644v-584L236 2087V798z"},"children":[]}]};exports.u23E9=u23E9;var u23EA={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2363 2087l-1012-584v584L236 1443l1115-645v585l1012-585v1289z"},"children":[]}]};exports.u23EA=u23EA;var u23EB={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M655 2506l585-1012H655l645-1115 644 1115h-584l584 1012H655z"},"children":[]}]};exports.u23EB=u23EB;var u23EC={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1944 379l-584 1012h584l-644 1115-645-1115h585L655 379h1289z"},"children":[]}]};exports.u23EC=u23EC;var u23F0={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1355 630q221 13 411.5 131.5t303 318T2182 1510q0 143-42.5 271.5T2021 2019l53 259q2 5 2 12t1 25q0 59-32.5 93t-96.5 34l-659-5-657 5q-64 0-97.5-33.5T501 2315q0-16 1.5-23t3.5-14l58-281q-70-106-108-228.5T418 1510q0-228 110.5-426.5t301.5-319T1244 630V505h-75V380h263v125h-77v125zm607.5 499.5Q1860 952 1681.5 849T1300 746q-204 0-382.5 102.5t-280 281T536 1510q0 207 104 384.5t280.5 279T1300 2275q205 0 382.5-103.5t280-282T2065 1510q0-203-102.5-380.5zM1359 1399q32 15 49.5 46t17.5 65q0 54-34.5 89.5T1295 1635l-140 244-106-60 143-246q-8-14-13-30.5t-5-33.5q0-34 18-62.5t47-45.5V860h120v539zm-26 145q14-14 14-34 0-18-15-33t-32-15q-20 0-34 14t-14 34q0 21 15 34.5t33 13.5q19 0 33-14zm643-1q-13 15-33 15-21 0-34.5-14t-13.5-34 13.5-34 34.5-14q17 0 31.5 14t14.5 34q0 18-13 33zm-323.5-554q-14.5 13-31.5 13-22 0-35-15.5t-13-32.5q0-23 16-34.5t33-11.5q19 0 32 13.5t13 34.5q0 20-14.5 33zm-639.5-2.5q-13 15.5-35 15.5-17 0-31.5-12.5T932 956q0-19 12.5-33.5T977 908q19 0 34 12t15 34q0 17-13 32.5zm810 236q-15-13.5-15-34.5 0-18 14-32t33-14q22 0 35 14.5t13 31.5q0 18-12.5 33t-34.5 15q-18 0-33-13.5zM776 1224q-15 12-33 12-22 0-34.5-15t-12.5-33q3-21 16-33.5t33-12.5q19 0 32.5 13.5T791 1190q0 22-15 34zm-84.5 319.5Q679 1557 660 1557q-21 0-35.5-13.5T610 1510q0-17 13.5-32.5T658 1462q20 0 33 14t13 34-12.5 33.5zm83.5 254q14 13.5 14 33.5 0 16-10 32t-35 16q-23 0-35.5-15t-12.5-30q0-19 12.5-34.5T743 1784q18 0 32 13.5zm236 304q-15 11.5-34 11.5-21 0-33-14.5t-12-33.5q0-22 14.5-34t31.5-12q18 0 33 14t15 34q0 23-15 34.5zm321 85q-15 13.5-32 13.5-20 0-34-13.5t-14-33.5 14-34 34-14 33.5 14 13.5 34-15 33.5zm320.5-154.5q14.5 13 14.5 33 0 19-12 33.5t-33 14.5q-17 0-33-11.5t-16-34.5q0-18 14-33t34-15q17 0 31.5 13zm236.5-166.5q-14 13.5-34 13.5-23 0-34-16.5t-11-35.5 14.5-31 31.5-12q19 0 33 14t14 34-14 33.5zM398.5 603.5Q428 542 485 488q-3-7-4-14t-1-14q0-32 23-56t55-24q30 0 54 21 85-40 163-40 114 0 190 67t76 88q0 4-1.5 8.5t-6.5 6.5L464 923q-8 6-12 7.5t-7 1.5q-19 0-47.5-66T369 734q0-69 29.5-130.5zM1567 531q-8-5-8-15 0-24 77-89.5t188-65.5q79 0 164 40 24-21 53-21 32 0 55 24t23 56q0 7-1 14t-4 14q57 55 86.5 116.5T2230 735q0 66-28.5 131.5T2154 932q-6 0-11-4z"},"children":[]}]};exports.u23F0=u23F0;var u23F3={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1993 2212q43 10 70.5 43.5t27.5 78.5q0 52-36 88t-88 36H633q-52 0-88.5-37t-36.5-87q0-45 27-77.5t69-42.5q7-287 98.5-454.5t241-243 162.5-103 13-47.5q0-70-106.5-115.5T813 1121 663.5 883.5 603 505q-41-10-68-42.5T508 385q0-50 36.5-87t88.5-37h1334q52 0 88 36t36 88q0 44-27.5 78t-70.5 42q-4 291-94.5 461T1655 1214t-165.5 106-12.5 46q0 68 107.5 114.5T1783 1610t147.5 232 62.5 370zm-1311-2h1233q-4-177-43-303.5T1762 1699t-217-150.5-146-182.5q0-121 171-197.5t255-229 90-425.5H682q4 270 85.5 421.5t220.5 216 174 109 35 105.5q0 119-174 196.5T768.5 1795 682 2210zm1121-292q16 46 26 103.5t15 129.5H754q4-72 14.5-129.5T795 1918h471v-552q0-68-38-128.5T1096 1129l-53-27q-27-14-55.5-31.5T930 1029h736q-47 39-191.5 116.5T1330 1366v552h473z"},"children":[]}]};exports.u23F3=u23F3;var u24C2={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2200 1945.5Q2059 2187 1818.5 2325T1300 2463q-284 0-526.5-143t-379-383.5T258 1421q0-272 134.5-512T771 524.5 1300 380q280 0 521 139.5T2201.5 900t139.5 521q0 283-141 524.5zm-85.5-995q-126.5-217.5-344-344T1300 480 829.5 606 485 950t-127 471q0 254 126.5 471.5t344 344T1300 2363q253 0 471-127t344-344.5 126-470.5-126.5-470.5zM1799 810q13 0 19 8t7 16l93 1109q0 9-7.5 16.5t-18.5 7.5h-230q-11 0-18-7t-8-16l-47-471-178 477q-3 7-10 12t-15 5h-172q-11 0-17-5t-8-12l-179-477-45 471q-2 9-9.5 16t-16.5 7H707q-11 0-18.5-7.5T681 1939l93-1105q0-9 7-16.5t19-7.5h247q21 0 24 18l229 742 228-742q2-8 8.5-13t15.5-5h247z"},"children":[]}]};exports.u24C2=u24C2;var u25AA={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1557 1662h-513v-516h513v516z"},"children":[]}]};exports.u25AA=u25AA;var u25AB={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1556 1148v513h-513v-513h513zm-97 98h-318v318h318v-318z"},"children":[]}]};exports.u25AB=u25AB;var u25B6={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2073 1432L526 2325V540z"},"children":[]}]};exports.u25B6=u25B6;var u25C0={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2073 539v1785L526 1431z"},"children":[]}]};exports.u25C0=u25C0;var u25CA={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1970 1424l-619 1010h-104L630 1427l617-1014h104zm-252 0l-418-701-418 701 418 704z"},"children":[]}]};exports.u25CA=u25CA;var u25FB={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2065 632v1531H534V632h1531zm-118 118H652v1295h1295V750z"},"children":[]}]};exports.u25FB=u25FB;var u25FC={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2065 2163H534V632h1531v1531z"},"children":[]}]};exports.u25FC=u25FC;var u25FD={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1741 971v883H859V971h882zm-118 117H977v649h646v-649z"},"children":[]}]};exports.u25FD=u25FD;var u25FE={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1741 1853H859V971h882v882z"},"children":[]}]};exports.u25FE=u25FE;var u2600={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1642 1753.5Q1499 1895 1300 1895q-201 0-343-142t-142-343 142-343 343-142q199 0 342 141.5t143 343.5-143 343.5zM1195 837q-13 0-21-9.5t-8-20.5q0-7 1-9l106-284q7-19 27-19t27 19l105 284 1 9q0 11-8 20.5t-21 9.5h-209zm437 94q-9-7-9-21 0-17 17-26l274-127q4-2 12-2 11 0 20 8t9 21q0 3-1 6l-2 6-126 274q-7 14-20 17-18 0-28-9zm564 452q19 7 19 27t-19 27l-284 106-9 1q-13 0-21.5-8t-8.5-22v-208q0-11 8-20t19-9q8 0 12 1zm-244 641l2 6q0 4 1 7 0 12-8 20.5t-21 8.5q-6 0-12-3l-274-126q-17-7-17-26 0-13 9-21l146-148q9-9 22-9 17 0 26 17zm-548-41q11 0 20 9.5t9 20.5q0 7-1 11l-105 282q-3 9-10.5 14t-16.5 5-16.5-5-10.5-14l-106-282q0-3-1-10 0-12 8-21t21-10h209zm-436-93q9 8 9 21 0 8-5.5 15.5T959 1937l-273 126q-6 3-12 3-14 0-22-8t-8-21l1-7q0-3 2-6l126-274q7-17 26-17 13 0 21 9zm-282-347l-282-106q-9-3-14-10.5t-5-16.5 5-16.5 14-10.5l288-107h5q13 0 21 9.5t8 20.5v208q0 13-8 21.5t-21 8.5zm-39-747q-3-4-3-12 0-14 9.5-21.5T674 755q8 0 12 2l273 127q7 3 12.5 10t5.5 16q0 14-9 21l-148 147q-8 9-20 9-19 0-27-17z"},"children":[]}]};exports.u2600=u2600;var u2601={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2048 1205q117 0 201 84t84 201q0 116-84 200t-201 84q-23 0-45-3t-43-11q-35 121-134 196t-222 75q-63 0-120-20t-103-55q-61 50-136.5 78t-160.5 28q-138 0-253-73.5T659 1793q-11 0-30 1-155 0-258.5-103.5T267 1442q0-140 98-242t236-108q12-120 104-207t218-87q41 0 78 10t70 27q52-65 127-103t165-38q115 0 210 65t137 167q23-4 54-4 116 0 200 83.5t84 199.5zm116.5 166.5Q2114 1323 2048 1323q-49 0-83.5-35t-34.5-83q0-68-49-116.5t-117-48.5q-13 0-27 2t-27 2q-77 0-111.5-76T1500 852t-137-40q-58 0-110 25t-89.5 70.5T1071 953q-27 0-66-18.5T923 916q-72 0-131 47.5t-74 141T616 1207t-138.5 48.5T402 1354q-17 42-17 88 0 97 68.5 166t171.5 69q13 0 20-2 92 0 126.5 77T893 1886.5t191 57.5q65 0 121.5-22t94.5-53 81-31q41 0 93.5 38t129.5 38 145-47 98-136 113-89q22 0 43.5 7t44.5 7q67 0 117-48t50-118-50.5-118.5z"},"children":[]}]};exports.u2601=u2601;var u260E={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2052 1756q16 45 20 91t4 92q0 40-1.5 79.5t-1.5 79.5q0 73-37 102t-122 29H679q-85 0-123-29t-38-102q0-40-1.5-79.5T515 1940q0-121 30.5-202.5T685 1291q127-34 202.5-99.5T963 1044q0-29-5.5-55T944 938q64-33 153-49.5t196-16.5q127 0 217.5 17.5T1655 938q-8 25-13.5 51t-5.5 55q0 80 73 145.5t198 99.5q35 118 72 234zm-807-457q12 10 47 10 46 0 60.5-8.5t14.5-39.5q0-26-15-36.5t-47-10.5q-51 0-61.5 10.5T1233 1257q0 32 12 42zm-1.5 152.5q12.5 12.5 68.5 12.5 33 0 45.5-11t12.5-41q0-27-15.5-39.5T1304 1360q-52 0-62.5 11t-10.5 33q0 35 12.5 47.5zm-3 167.5q13.5 13 64.5 13 40 0 54-11t14-44q0-28-16-43.5t-77-15.5q-26 0-39.5 12.5T1227 1571q0 35 13.5 48zm-166.5 77.5q-43-4.5-48-5.5-33 0-48 16.5t-15 59.5q0 26 12 37.5t42 11.5q60 0 80-12.5t20-60.5q0-42-43-46.5zm34.5-166.5q-16.5-12-65.5-12-30 0-47.5 13t-17.5 53q0 31 15.5 39.5t57.5 8.5q51 0 62.5-19t11.5-49q0-22-16.5-34zm22.5-114q0-6 1-14 0-26-19-34t-45-8q-45 0-61 12t-16 48q0 31 18.5 37.5t59.5 6.5q31 0 44.5-9.5t15.5-25.5zm-9.5-194q-16.5-8-42.5-8-39 0-57 8.5t-18 40.5q0 25 9.5 35.5t38.5 10.5q59 0 72.5-12t13.5-44q0-23-16.5-31zm255.5 541v-13q0-50-44-54t-49-5q-31 0-45 14t-14 40q0 41 11.5 56t46.5 15q66 0 80-13.5t14-39.5zm88-489q2 20 17.5 27.5t42.5 7.5q43 0 57.5-8t14.5-35q0-26-14.5-39t-51.5-13q-35 0-52 6t-17 29q0 8 1 14zm17 175q13 15 72 15 31 0 43-9.5t12-36.5-14-42.5-55-15.5q-43 0-57 7t-14 32q0 35 13 50zm8 167.5q13 15.5 68 15.5 36 0 51-9t15-40q0-37-17-51t-80-14q-13 0-31.5 7.5T1477 1560q0 41 13 56.5zm51 74.5q-26 0-41 11.5t-15 35.5q0 43 13.5 60.5t50.5 17.5q49 0 69.5-7.5t20.5-33.5q0-52-16.5-67t-43.5-15q-21 0-38-2zm753-678v18q0 97-60.5 149.5T2065 1233t-229.5-53.5T1714 1043q0-27 10.5-55t10.5-54q0-69-131-105t-313-36q-153 0-290 37T864 933q0 26 10 54.5t10 55.5q0 77-114.5 133.5T534 1233q-108 0-168.5-53T305 1031q0-255 285-410.5T1299 465q409 0 688 143.5T2292 995z"},"children":[]}]};exports.u260E=u260E;var u2611={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2290 342q20 0 34.5 14.5T2339 391v1980q0 20-14.5 34.5T2290 2420H310q-20 0-34.5-14.5T261 2371V391q0-20 14.5-34.5T310 342h1980zm-72 120H381v1837h1837V462zM1057 2010l-610-607 153-152 457 453 943-952 153 152z"},"children":[]}]};exports.u2611=u2611;var u2614={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1401 801q234 19 433 119.5t313.5 262T2262 1528q0 51-6.5 74t-35.5 23q-22 0-41-26.5t-85.5-65T1941 1495q-71 0-131 27.5t-99 68-51.5 67.5-38.5 27q-28 0-42-30.5t-61-75-115-66.5v584q0 142-102.5 244.5T1055 2444q-94 0-175-48t-123-122-42-117q0-39 28-68.5t71-29.5q31 0 58.5 19.5T911 2140t51.5 75 92.5 33q62 0 106.5-44.5T1206 2097v-587q-74 22-124 69.5t-62.5 76T979 1684q-27 0-38.5-26.5t-51-67-100.5-68-130-27.5q-83 0-148.5 36.5t-86.5 65-44 28.5-32.5-26-9.5-71q0-184 115-345t315.5-263T1208 801l15-211q2-31 25.5-51.5T1307 518q31 0 53.5 20.5T1385 590zm269.5 206q-14.5 19-51.5 105t-37 148q0 48 34.5 82.5t82.5 34.5 82.5-34.5 34.5-82.5q0-58-43.5-165T1699 988q-14 0-28.5 19zm124-561.5Q1838 340 1868 340q29 0 72.5 107.5T1984 612q0 48-34 82.5t-82 34.5q-49 0-83-34t-34-83q0-61 43.5-166.5zM615 481q30-76 49.5-108.5T702 340q30 0 73.5 107T819 612q0 46-33.5 81.5T702 729t-83.5-35.5T585 612q0-55 30-131z"},"children":[]}]};exports.u2614=u2614;var u2615={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1848 1346q197 21 276 94t79 208q0 71-25 131.5t-72.5 117T1993 1996t-137 69-131.5 32-82 26.5-34.5 28.5l-49 31q-100 60-194.5 84.5T1166 2292q-195 0-322.5-54T617 2081t-155-221.5-56-295.5q0-132 46-216t152.5-161 237-104.5T1156 1055q189 0 342 59.5t247 154.5l64 65q8 8 19 9zm211.5 168.5q-44.5-50.5-129-69.5t-135.5-21-77.5-46.5T1610 1276t-208.5-94.5T1121 1144q-289 0-449.5 105.5T511 1575q0 237 163 428.5t494 191.5q88 0 204.5-37t183.5-87.5 74.5-50.5 76-9 147.5-44 140.5-92.5T2080 1759t24-100q0-94-44.5-144.5zm-613 100Q1324 1691 1117 1691q-108 0-217-26.5t-173.5-87T662 1445q0-108 137.5-179t359.5-71q180 0 295 76t115 167q0 100-122.5 176.5zm454.5 222q-92 85.5-209 85.5-27 0-27-11 0-10 26.5-75.5t47-169T1759 1553q0-5 2-7 2-6 13-8t25-2q109 0 151.5 32.5t42.5 92.5q0 90-92 175.5zm-23-199.5q-19-15-38-15-5 0-13 2-2 19-9 53l-15 65q-4 17-10 33.5t-11 33.5l-2 5q-2 3-2 6 0 6 8 6t21.5-9 23.5-17l8-7q22-19 40-49t18-65q0-27-19-42zM1560 539q63 10 126 10 100 0 172.5-38t97.5-105 59-67q21 0 33.5 56t12.5 116q0 169-99 277.5T1688 897q-51 0-129.5-11.5T1429 874q-112 0-206 27t-145 75l-25 23q-14 14-30 14-22 0-31-18.5t-9-53.5q0-120 60.5-220.5t174-146T1434 529q63 0 126 10zm-503 368q45-45 118-87t212-42q52 0 145.5 14.5T1681 807q95 0 167-49t106-125 34-111q0-12-6-12t-25.5 29-82 61.5T1723 633q-69 0-136.5-10T1450 613q-127 0-213.5 40.5t-134 123.5-47.5 123q0 7 2 7z"},"children":[]}]};exports.u2615=u2615;var u261D={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2000.5 1582.5q-36.5 104.5-107 185.5t-148 123-102 65.5-32 40-11.5 78.5q45 0 61 24t16 119v34l-1 12v14l29 2q23 2 44.5 17t25.5 47.5 4 57.5l-1 28v43q0 23-1 49l-999-2 4-128q0-23 3-41l2-26q4-61 14.5-76t50.5-18h13q4-38 11.5-77.5T893 2079t46-35h8l21 3q-20-82-76-115.5t-106.5-97-90.5-189-61-177.5l-36-84q-16-37-25.5-71.5T563 1237q0-89 64-155.5t151-66.5l19 1q8 0 17-3t30.5-55 71-79 97.5-27q14 0 25.5 3t20.5 3q19 0 37-28t69-60.5 113-32.5q21 0 39.5 2.5t34.5 7.5l2-132 1-254q5-99 70-170.5t163-71.5q116 0 189.5 71t73.5 177q0 10-2 53l-5 106-7 134q-4 72-7 139l-9 202q0 22 31 53 80 30 132.5 100.5T2037 1369q0 109-36.5 213.5zM1475 941l12 39 11 43q37-6 79-6 25 0 43 1t33 2l54 7 1-41q0-32 4-79l5-103 10-228q0-30 3.5-90t4.5-83l1-34q0-63-40.5-99.5T1595 233q-50 0-81 37.5t-34 92.5zm-308.5 29.5q2.5 12.5 11.5 42.5l14 54q26 99 55.5 186t97.5 87q22 0 36.5-8.5t23.5-19.5q-32-23-45-59t-13-83q0-42 15-69t42-44q-2-8-22.5-108T1266 849q-49 0-75.5 27.5T1164 945q0 13 2.5 25.5zm-276 137Q893 1118 903 1145l19 47q10 26 22.5 54.5T970 1301l23 47q23 48 46.5 61.5t49.5 13.5q33 0 62.5-22.5t29.5-56.5q0-13-4-26l-35-119q-21-68-47-148t-102-80q-51 0-78 29.5t-27 78.5q0 18 2.5 28.5zM905 1502q32-22 32-57 0-13-6-28l-84-210q-14-34-38.5-48.5T758 1144q-47 0-71.5 28t-24.5 74 41.5 125.5 65 116T835 1524q38 0 70-22zm683 756q0-57-4.5-69t-23.5-12q-48 0-113-2t-128-5l-237-11q-47-2-61-3l-16-1q-20 0-25.5 18.5T971 2205l-7 29q-3 14-4 21l42 5q89 11 309.5 19t239.5 8l37 1v-30zm273.5-1078.5Q1799 1128 1728 1125q-15 0-35-3l-44-5q-24-3-50-5.5t-51-2.5q-58 0-88.5 23.5T1429 1202q0 62 65 100.5t125 38.5q8 0 11-1-3 8-12 49.5t-9 71.5q-70 17-130.5 42t-98.5 63l-28 28q-12 13-22.5 21.5t-21.5 8.5q-22 0-22-22 0-23 24-76t36-73l-9 2q-5 0-17 1-22 0-39-5t-29-11q-7 8-39.5 48t-103.5 40q-27 0-50.5-4.5t-31.5-9.5q-7 42-46.5 76T855 1624q-11 0-15-1 8 82 40 128.5t90.5 90 81 95T1080 2061q61 7 193 13.5t224 6.5l5-52q7-80 60.5-131t141-104 154-166 66.5-255-62.5-193.5z"},"children":[]}]};exports.u261D=u261D;var u263A={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2108.5 1900Q1983 2117 1766 2242.5T1300 2368t-466-125.5T491.5 1900 366 1434t125.5-466T834 625.5 1300 500t466 125.5T2108.5 968t125.5 466-125.5 466zM2007 1027q-110-190-300-300t-407-110q-213 0-402 106.5t-302 297T483 1434q0 220 110 408.5T891.5 2141t408.5 110q223 0 413.5-113t297-302 106.5-402q0-217-110-407zM876.5 1136q40.5-50 98.5-50t99 49.5 41 117.5q0 69-41.5 117.5T975 1419t-98-48.5-41-117.5q0-67 40.5-117zm648 0q40.5-50 98.5-50t99 49.5 41 117.5q0 69-41.5 117.5T1623 1419t-98-48.5-41-117.5q0-67 40.5-117zm211.5 640q-96 107-214 147t-222 40q-106 0-222.5-40T864 1777t-97-184q0-20 12.5-34t35.5-14q34 0 96 67.5t163 115 226 47.5q120 0 221-45t165-115 98-70q20 0 34 12.5t14 35.5q0 76-96 183z"},"children":[]}]};exports.u263A=u263A;var u2648={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2246 1202.5q-25 89.5-72 147.5l-212-174q10-12 22.5-53t12.5-81q0-114-83.5-194T1718 768q-115 0-197.5 81.5T1438 1046v1292h-275V1046q0-114-82-196t-196-82q-115 0-197.5 80.5T605 1042q0 43 12 81.5t24 52.5l-214 174q-47-58-72-144.5T330 1046q0-228 163.5-390.5T885 493q125 0 231.5 51T1301 682q77-87 184.5-138t232.5-51q236 0 394.5 156t158.5 397q0 67-25 156.5z"},"children":[]}]};exports.u2648=u2648;var u2649={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1739 1096q136 101 216 256t80 332q0 198-102 370.5t-272.5 268T1300 2418q-191 0-361-95t-272.5-267.5T564 1684q0-177 80-332t216-256Q724 994 644 839t-80-331h296q0 183 130 311.5T1300 948t310-128.5T1740 508h295q0 176-80 331t-216 257zm-129.5 276Q1479 1242 1300 1242t-309.5 130T860 1684q0 181 130 310t310 129 310-129 130-310q0-182-130.5-312z"},"children":[]}]};exports.u2649=u2649;var u264A={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2119 812q-56 14-130 28.5T1825 869v1112q90 14 164 28t130 28v304q-158-43-379-73.5t-440-30.5-440.5 30.5T480 2341v-304q57-14 130.5-28t163.5-28V869q-90-14-163.5-28.5T480 812V510q199 50 410.5 76t409.5 26 409-26 410-76v302zm-589 87q-54 4-112 6t-118 2q-61 0-118-2t-113-6v1052q56-5 113-6.5t118-1.5q60 0 118 1.5t112 6.5V899z"},"children":[]}]};exports.u264A=u264A;var u264B={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M884 2217q-209-45-432-144l130-264q172 75 355.5 117t362.5 42q69 0 138-10t136-27q-93-62-149-164.5t-56-219.5q0-190 136.5-326t324.5-136q190 0 326 136t136 326q0 200-130 362.5T1796.5 2167t-496.5 95q-207 0-416-45zm828-553q49 50 118 50 70 0 119-50t49-117q0-66-49-116.5t-119-50.5-118.5 50.5T1663 1547q0 67 49 117zM443.5 866.5q136.5-163.5 369-255T1300 520q211 0 432.5 50T2148 709l-131 264q-238-98-402-128.5T1300 814q-70 0-139 10t-135 27q95 64 149.5 166t54.5 218q0 190-136 326t-324 136q-189 0-326-136t-137-326q0-205 136.5-368.5zm443.5 250q-49-48.5-117-48.5-70 0-118.5 48.5T603 1235q0 68 48.5 117.5T770 1402q69 0 117.5-49.5T936 1235q0-70-49-118.5z"},"children":[]}]};exports.u264B=u264B;var u264C={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2229 2396q-113 75-249 75-196 0-323.5-145.5T1529 1956q0-123 26-266.5t96-325.5 70-334q0-153-89-237.5T1399 708q-132 0-227 95t-95 227l1 29q2 43 21.5 114.5t63.5 148 73 174.5 29 202q0 185-131.5 316.5T818 2146q-186 0-317-133t-131-315q0-183 132-314.5T815 1252q-16-58-24-110t-8-90l-1-24q0-253 182-434t435-181q270 0 443 172.5t173 444.5q0 216-95.5 457t-95.5 463q0 100 40 163t116 63q46 0 85-24zM925.5 1591.5Q881 1546 818 1546q-64 0-108.5 45.5T665 1698q0 63 44.5 108.5T818 1852q63 0 107.5-45.5T970 1698q0-61-44.5-106.5z"},"children":[]}]};exports.u264C=u264C;var u264D={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1784 2063q36 23 95.5 37t146.5 14v294q-146 0-249-29.5t-162-73.5-73-63l-10-12q-195 107-443 189l-92-279q128-43 231.5-88.5T1418 1957q-8-51-9-101.5t-1-93.5V807q0-46-32.5-77.5T1300 698q-45 0-77.5 31.5T1190 807v855H896V807q0-46-32.5-77.5T788 698q-46 0-77.5 31.5T679 807v855H385V807q0-166 119-284.5T788 404q73 0 138 24t118 68q53-44 118-68t138-24q153 0 269 104t132 259q52-15 111-15 183 0 293 111t110 292q0 281-107 507t-324 401zm-81-912v589q108-114 163-257t55-328q0-47-32.5-78t-76.5-31q-45 0-77 30t-32 75z"},"children":[]}]};exports.u264D=u264D;var u264E={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2133 1610v295h-692v-306q129-44 212.5-159t83.5-255q0-180-128.5-308.5T1300 748 991.5 876.5 863 1185q0 142 83.5 256.5T1158 1599v306H466v-295h238q-65-92-100-199.5T569 1185q0-195 97-363.5t266-268 368-99.5q300 0 516 216t216 515q0 118-36 225.5T1895 1610h238zm0 417v294H466v-294h1667z"},"children":[]}]};exports.u264E=u264E;var u264F={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1888 2444v-277h-110q-169 0-292-122.5T1363 1751V912q0-51-35.5-86.5T1241 790t-86.5 35.5T1119 912v896H825V912q0-50-35.5-86T704 790q-51 0-86.5 36T582 912v896H288V912q0-172 122-294t294-122q76 0 145 26t124 73q54-47 122-73t146-26q172 0 294.5 123T1658 912v839q0 50 35.5 86t84.5 36h110v-278l424 424z"},"children":[]}]};exports.u264F=u264F;var u2650={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2117 614v1092h-276v-622l-622 622 259 259-194 195-259-260-347 348-195-195 347-347-259-260 195-193 259 259 622-622h-622V614h1092z"},"children":[]}]};exports.u2650=u2650;var u2651={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2105.5 2068.5Q1962 2212 1763 2212q-75 0-142-21t-125-58q-60 121-179.5 194t-257.5 73v-276q88 0 152-64t64-152v-903q0-88-64-152t-152-64q-89 0-153 63.5T842 1005v721H567v-721q0-88-64-152t-152-64V513q104 0 195 41t158 111q68-70 158.5-111t196.5-41q202 0 347 145t145 347v282q48-23 101-35.5t111-12.5q200 0 343 143.5t143 343.5q0 199-143.5 342.5zm-193-492.5q-61.5-63-149.5-63-89 0-150.5 62.5T1551 1726q0 86 61.5 148.5T1763 1937q88 0 149.5-62.5T1974 1726q0-87-61.5-150z"},"children":[]}]};exports.u2651=u2651;var u2652={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1948 1513l252 173v320l-7 10-245-169-323 222-322-222-324 222-323-222-245 169-11-17v-309l256-177 323 223 324-223 322 223zm252-554v321l-7 10-245-170-323 223-322-223-324 223-323-223-245 170-11-17V962l256-175 323 222 324-222 322 222 323-222z"},"children":[]}]};exports.u2652=u2652;var u2653={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2166 1561h-336q16 199 71.5 401.5T2040 2336h-324q-74-181-122-382.5t-60-392.5h-483q-13 198-61 399t-122 376H546q78-160 135.5-365t73.5-410H434v-295h321q-16-198-71.5-400T546 491h322q78 188 124 385.5t59 389.5h483q12-185 58-382t124-393h324q-88 185-141.5 384t-68.5 391h336v295z"},"children":[]}]};exports.u2653=u2653;var u2660={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1319 480l48 28q200 120 403 302t314 375 111 377q0 191-138 329t-329 138q-87 0-164-29t-139-82q25 153 74 282.5t59 139.5q2 5 3.5 10.5t1.5 10.5q0 15-11.5 26.5T1523 2399h-447q-16 0-28-11.5t-12-26.5 15-40.5 56-139.5 67-263q-62 53-139 82t-162 29q-193 0-331-138t-138-329q0-190 117-386.5T839.5 801 1233 508l48-28 9-4q4-2 9-2t10 2z"},"children":[]}]};exports.u2660=u2660;var u2663={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2117.5 1945Q1980 2083 1786 2083q-104 0-194.5-42.5T1437 1926q21 103 50 187.5t56 140.5l15 32q2 4 3.5 9t1.5 10q0 17-11.5 27.5T1523 2343h-448q-14 0-26.5-10.5T1036 2305q0-13 18-46t50.5-124 58.5-209q-65 72-155 114.5T812 2083q-192 0-329.5-138T345 1615t138.5-330T812 1147q34 0 66 6-22-47-34.5-97.5T831 950q0-191 138-329.5T1300 482q191 0 329 137.5T1767 950q0 108-46 203 33-6 65-6 192 0 330.5 138t138.5 330-137.5 330z"},"children":[]}]};exports.u2663=u2663;var u2665={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2074.5 1479.5Q1973 1663 1775 1845t-409 309l-47 28q-8 6-19 6-12 0-19-6l-47-28q-201-119-402-302t-305-368.5T423 1123q0-187 135-322.5T882 665q134 0 249 74.5T1300 935q56-124 170.5-197t247.5-73q190 0 324 135.5t134 322.5q0 173-101.5 356.5z"},"children":[]}]};exports.u2665=u2665;var u2666={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2093 1400q8 11 8 25 0 6-1.5 12.5t-6.5 11.5l-763 976q-11 15-30 15t-32-15l-761-976q-5-5-6.5-11.5T499 1425q0-14 8-25l761-975q5-8 14-11t18-3q8 0 16.5 3t13.5 11z"},"children":[]}]};exports.u2666=u2666;var u2668={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M831 1817q12-25 21.5-74.5T862 1625q0-149-49.5-309.5T763 1034q0-131 53-230t136-153 107-54q8 0 14.5 4.5t6.5 14.5q0 14-11 19-11 0-38 53.5T1004 854q0 137 42 302t42 273q0 155-64.5 268.5T847 1865q-2 0-4.5 1t-4.5 1q-8 0-14-6t-6-14 4-13zm361-500q-49-159-49-282 0-130 52.5-230t135-154 108.5-54q9 0 14.5 6t5.5 14q0 13-18.5 25.5t-38.5 65-20 147.5q0 138 42 301.5t42 274.5q0 127-44 227.5T1308.5 1813t-90.5 54q-9 0-15.5-6.5t-6.5-15.5q0-6 9.5-20.5t22.5-67.5 13-132q0-149-49-308zm388 517q16-32 28.5-84t12.5-123q0-147-50-307t-50-286q0-130 52.5-229T1709 651.5t108-54.5q9 0 15.5 5.5t6.5 14.5q0 11-18 23t-38.5 64.5T1762 854q0 137 41.5 299.5T1845 1429q0 131-45.5 230.5T1686 1812t-82 53q-2 0-4 1t-4 1q-7 0-13.5-6t-6.5-14 4-13zm524 208.5Q1980 2173 1765.5 2249t-465.5 76-466-76.5-339-207T371 1761q0-79 33-150t92-131.5 72-65 23-4.5q14 0 24 9t10 24q0 16-31.5 72.5T562 1640q0 181 217 312t521 131q199 0 373.5-61.5t270-164T2039 1640q0-51-20-97.5t-31.5-62.5-11.5-37q0-15 9-24t23-9q41 0 130.5 111t89.5 240q0 151-124 281.5z"},"children":[]}]};exports.u2668=u2668;var u267B={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1196.5 728q11.5-6 31.5-6h17q4 0 25.5-1t53.5-1h172q44 2 68.5 17t63.5 76l43 65 20 30q21 35 37.5 50.5T1761 974q8 0 39-18.5t56-18.5q14 0 23 9t9 32q0 12-2 25l-4 24q-8 64-21.5 124t-22.5 110.5-80 50.5l-58-1q-112 0-205-15.5t-93-46.5q0-26 45.5-58t45.5-54q0-31-54-83t-148-169.5-100-120-6-16.5 11.5-20zm75 361q-41.5 48-91 120t-83.5 72q-12 0-56.5-29.5T943 1181l-27-19q-35-24-52.5-43t-18.5-37q0-39 32.5-82T969 860.5t98-96.5q34 0 99 64.5T1272 936t41 71q0 34-41.5 82zM761 1833l-26 73q-24 66-40 97t-26 31q-6 0-15-10t-18-25l-8-13q-38-50-71.5-113.5t-53-97T484 1708l2-22q2-19 38-94.5t37-77.5l16-30q8-15 13.5-28.5t5.5-25.5q0-13-15-22l-32-19q-18-10-33-22.5t-15-31.5q0-36 130-76t142-47 49-7q31 0 58.5 26t55.5 92l34 79q8 22 30.5 80.5t22.5 78.5q0 17-9 28t-28 11q-18 0-51.5-16t-48.5-16q-27 0-49.5 68t-28.5 74.5-47 122.5zm413 183q-15 99-26.5 123t-52.5 24q-67 0-136-4.5t-137-9.5q-34 0-58-10t-24-38q0-69 23.5-138.5t45.5-127 58-57.5q11 0 23 1l21 3q176 20 227 25t51 48q0 62-15 161zm885.5-178q-27.5 54-46.5 82.5t-41.5 75.5-46.5 69.5-87 26.5-95.5 6-84 9-63.5 19q-8 8-8 23l1 39v22q0 21-8 35t-22 14q-18 0-24.5-7.5t-112-98.5-123.5-120.5-18-49.5q0-25 58-103.5t105-139.5 80-61q17 0 23.5 10.5t6.5 26.5q0 9 1.5 16.5t1.5 30.5q0 31 9.5 47.5t34.5 16.5q43 0 122.5-13.5T1876 1787l73-12q35-6 64.5-10t44.5-4q11 0 20 2.5t9 11.5-27.5 63zm18-153q-37.5 21-94 33.5T1891 1743t-74 12q-26 0-63.5-58t-54.5-108.5-33-82.5q-14-28-14-61 0-31 101-71.5t105-42.5l48-18q25-9 41-9 42 0 80 90.5t63 148.5 25 91q0 30-37.5 51z"},"children":[]}]};exports.u267B=u267B;var u267F={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1541 1979l66-4q-24 209-182.5 350T1057 2466q-226 0-389-163t-163-389q0-200 130.5-354.5T962 1371q3 65 11 128t26 124q-104 22-171 104t-67 187q0 122 87.5 209.5T1057 2211q107 0 189.5-68.5T1349 1971q33 6 64.5 8t59.5 2q35 0 68-2zm327 270q-25-83-44-166.5t-49.5-155T1642 1856q-40 0-80.5 3.5t-86.5 3.5q-168 0-240-62.5T1120 1618t-43-395q0-131 41.5-205t117.5-74q70 0 110.5 28t94.5 100.5 134.5 114.5 169 61.5 137 32T1984 1332t54 91q0 31-17 49t-43 18q-49 0-86.5-26t-91.5-29-110-10.5-138-48.5l-30-14q-12-6-17-6-9 0-9 14 2 94 17 130t50 61.5 137 40.5 154 45.5 83.5 88.5 43.5 114l5 29q32 206 60 228t69.5 21 70 20.5 28.5 55.5q0 52-71 90t-144 38q-106 0-131-83zM1054.5 481q65.5-65 154.5-65 91 0 156.5 65t65.5 156q0 92-64.5 157T1209 859q-88 0-154-65t-66-157q0-91 65.5-156z"},"children":[]}]};exports.u267F=u267F;var u2693={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2204 1860q-18 0-41-23.5t-41-23.5q-24 0-29.5 26t-57 129.5T1896 2170t-206 157-250 84.5-260.5 3.5-242.5-74-200-135-146-189q-50-85-69.5-144.5T478 1813q-18 0-41 23.5t-41 23.5q-34 0-34-35 0-28 16.5-84t37.5-113l18-47q12-31 32.5-49t45.5-18q31 0 70.5 24.5t77.5 50 73 57.5 35 50q0 32-53 32-24 0-39.5 3.5T660 1752q0 50 130 184.5t250 134.5q57 0 83-36.5t30-89.5l7-72 29-245 4-30q2-15 2-31 0-67-82-90t-151-34-69-70q0-41 24-58.5t120-17.5q119 0 151.5-20t32.5-111q0-31-11-51.5t-33-33.5l-29-15q-93-48-145-127t-52-173q0-129 103.5-216.5T1300 462t245 87 103 215q0 126-62 198.5t-134.5 104-72.5 98.5q0 18 3 36l4 35q4 30 42 45.5t136 15.5q90 0 116 18.5t26 57.5q0 58-62.5 68.5T1529 1466t-88 32.5-36 70.5q0 18 2.5 31.5t3.5 27.5l27 245 7 71q5 51 31 89t83 38q64 0 143-48t135-115l22-25q28-33 53.5-71t25.5-60q0-15-13-19.5t-40-4.5q-25 0-40-7t-15-24q0-26 64.5-74.5t113-78.5 78.5-30q60 0 106 133t46 179q0 34-34 34zm-809-990q39-40 39-95 0-56-39-95t-95-39-95 39-39 95q0 55 39 95t95 40 95-40z"},"children":[]}]};exports.u2693=u2693;var u26A0={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2414 2338q8 14 8 30 0 24-17.5 41t-41.5 17H236q-23 0-41-16.5t-18-41.5q0-16 8-30L1249 495q8-14 22-21.5t29-7.5q33 0 51 29zm-152-30L1300 643 338 2308h1924zm-1048-548q-5 0-8.5-3.5t-3.5-6.5l-47-677q0-5 4-8t7-3h267q5 0 8.5 3.5t3.5 7.5l-48 677q0 3-3 6.5t-8 3.5h-172zm188 254q38 35 38 101 0 60-36 97.5t-102 37.5-104-35-38-100q0-67 36.5-101.5T1302 1979q62 0 100 35z"},"children":[]}]};exports.u26A0=u26A0;var u26A1={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2125 1393q5 0 10 5t5 10q0 14-10 20L511 2446q-3 3-10 3t-13.5-5-6.5-14q0-3 1-7t4-7l711-773-723-213q-5-2-9.5-7t-4.5-12q0-11 8-17l1617-986q4-3 11-3 6 0 12.5 5t6.5 14q0 3-1 7t-4 7l-710 773z"},"children":[]}]};exports.u26A1=u26A1;var u26AA={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1465 1566.5q-69 68.5-165 68.5t-165-68.5-69-165.5q0-96 69-165t165-69 165 69 69 165q0 97-69 165.5zm-83-247.5q-34-34-82-34t-82 34-34 82 34 82 82 34 82-34 34-82-34-82z"},"children":[]}]};exports.u26AA=u26AA;var u26AB={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1465 1565.5q-69 68.5-165 68.5t-165-68.5-69-165.5q0-96 69-165t165-69 165 69 69 165q0 97-69 165.5z"},"children":[]}]};exports.u26AB=u26AB;var u26BD={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2205 1960q-142 244-385 382.5T1300 2481q-278 0-521-139t-384.5-383T253 1434q0-278 139-521t382.5-385T1300 386q281 0 525 142t383 385 139 521q0 282-142 526zm-197-346q61-37 116.5-83.5T2229 1425q0-108-23.5-200.5t-34-111.5-72-76.5T1959 930q-39 36-89 69t-80.5 55.5-63.5 31.5q3 31 5 71.5t2 88.5q0 41-2 85.5t-6 94.5q64 18 158.5 79.5T2008 1614zM371 1437q0 171 58.5 323.5T590 2034q20-5 39-9t39-9q-26-59-47-138.5T596 1705q-49-32-98.5-101T419 1436h-23q-12 0-25 1zm284-671q-17 65-23 122.5T626 990v21q0 10 1 18 56 5 105 18t102 26l22 6q11 4 22 9 89-89 197-148.5t222-88.5q-2-13-2-25v-23q0-48 8.5-114t26.5-101q-67-30-135.5-49t-88.5-15-89.5 24T867 611q-117 63-212 155zm463 1478q100-29 179-71.5t141-93.5q-33-65-67-169.5t-38-146.5q-124-23-241.5-71.5T885 1582q-28 19-59 32.5t-58 29.5l-58 31q-30 16-55 26 5 97 29 179.5t52 141.5l22 16q19 15 95.5 63t264.5 143zm548-817q4-48 6-91.5t2-82.5q0-51-2.5-94.5t-5.5-76.5q-12-6-49-26l-84-46q-117-63-155-80t-41-19l-14-7q-112 27-214 84t-187 139q3 8 4 16v17q0 63-2 126t-2 126q0 30 2 60.5t2 65.5q81 55 193.5 101t227.5 66q81-113 187.5-190t131.5-88zm431-471q-67-111-164-201 16 19 34.5 58t18.5 64q25 15 53.5 34.5T2097 956zm-538-415q-62-17-126.5-27T1296 504q-9 0-14 1 30 11 55.5 21.5T1385 548q5-2 30.5-5t85.5-3h28q14 0 30 1zM578 849q-90 111-143 245t-62 284h20q9 0 19-1 5-80 60.5-185.5T568 1049q0-11-1-25v-27q0-31 2.5-67.5T578 849zm625 1509q23 3 47.5 4t49.5 1q178 0 333.5-61.5T1914 2132q-19-21-34.5-40t-26.5-34q-56 31-148.5 50t-192.5 19q-10 0-19-1h-19q-80 65-159.5 104.5T1170 2290zm755-269q112-112 182.5-258t85.5-315q-57 58-117.5 102t-97.5 61q-5 85-36.5 180t-75.5 159q10 14 25 33t34 38z"},"children":[]}]};exports.u26BD=u26BD;var u26BE={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2208 1952q-139 243-383 385t-525 142q-283 0-527-143.5T391 1950t-138-519q0-280 140.5-523T777 524.5 1300 384q277 0 520 138.5T2205 905t142 526q0 278-139 521zm17-606q-4-41-11-82-5-3-19-8t-31-5q-8 0-18.5 3.5t-18.5 3.5q-11 0-19-8t-8-19q0-22-9-40.5t-19-26.5l-8-7q-5-5-8-10.5t-3-11.5q0-11 8-18.5t19-7.5q17 0 39 28.5t30 60.5h14q22 0 37 4-8-23-15-49.5t-16-51.5q-5 2-12 5.5t-13 3.5q-21 0-28-22.5t-27-39-27-16.5q-18-7-18-26 0-11 8.5-18.5t18.5-7.5q11 0 29.5 12t29.5 22l-23-43q-9-17-18-29-11-3-19-3t-14 1.5-9 1.5q-11 0-19.5-7.5T2019 916q0-14 9-20t24-9q-24-33-51-66-3 4-13 4-11 0-19.5-7.5T1960 799q0-10 6-16-133-135-305.5-208T1300 502q-103 0-204 23-7 17-25 17-9 0-16-7l-56 18q2 3 4 9.5t2 10.5q0 10-7.5 18t-18.5 8q-9 0-15.5-4.5T948 572q-16 6-32.5 13.5T884 601q9 30 33.5 44t24.5 32q0 13-7.5 19.5T916 703l-11-2q-17-9-37-28t-31-46q-10 5-25.5 14T779 662l-34 24q-17 13-29 23 5 0 9 1h9q23 0 37-7.5t22-7.5q24 0 26.5 22t25.5 45.5 23 20.5q8 3 12 9.5t4 13.5q0 11-8 19t-19 8q-18 0-45.5-27.5T777 757q-24 7-44 7-26 0-42-6t-21-9q-144 132-221.5 311T371 1431q0 54 6 106.5t17 104.5q7-3 13-3 9 0 18.5 5.5t33.5 5.5 34.5-6 20.5-6q23 0 28 33.5t30 50.5 25 34q0 10-8.5 17t-17.5 7q-6 0-12-3-5 0-30-24t-35-54q-16 4-34 4-16 0-29.5-3t-21.5-6q5 19 12 37l12 35q8-2 12-2 11 0 18.5 7t7.5 16q3 29 22 49.5t23 20.5q7 3 10 9.5t3 12.5q0 11-6 19t-22 8q112 186 294 304.5t393 143.5q-15-12-31.5-16t-29.5-4h-9.5l-7.5 1q-11 0-18.5-8t-7.5-19q0-16 10-22t33-6q15 0 35.5 4.5t41.5 16.5q14-21 40.5-38.5t48.5-17.5q11 0 18.5 7.5t7.5 18.5q0 9-5.5 16.5t-14.5 9.5l-8 2q-25 7-42 32.5t-19 26.5q34 3 70 3 245 0 461-123.5t342-341 126-465.5q0-44-4-85zm-543 174q36 8 85 56 4 5 4 15 0 11-7.5 18.5t-18.5 7.5q-15 0-36-23t-60-25q-9 0-17.5-6.5t-8.5-20.5q0-11 3.5-21.5t3.5-19.5q0-22-5-35l-7-15q-6-8-6-15 0-10 8-18t18-8q22 0 34 29.5t12 59.5v10q0 6-2 11zm-411 608q13 0 19.5 7.5t6.5 18.5-8 19.5-19 8.5h-10q-31 2-52 23.5t-35 21.5-22-14.5-27-26.5-33-14l-9-1q-11-2-17-9t-6-16q0-12 7.5-20.5t19.5-8.5q15 0 42 11t49 33q17-15 39-22.5t44-9.5zm793-822q27 4 48.5 15.5t34.5 23.5l7 8q6 8 6 18 0 9-7.5 17.5t-20.5 8.5q-11 0-18-10-12-11-30.5-20t-38.5-9h-11q-11 0-18.5-7.5t-7.5-18.5q0-8 1.5-15t1.5-15q0-25-9-41l-10-17q-7-7-7-16 0-11 8.5-18.5t18.5-7.5q12 0 20 8l7 10q9 15 17 37.5t8 48.5zm-132 73q25 9 43.5 24t28.5 30l6 9q2 8 2 12 0 9-7.5 18.5t-18.5 9.5q-13 0-34.5-28t-58.5-30q-9 0-16-7t-7-18q0-12 6-25.5t6-26.5q0-12-2-20.5t-4-14.5l-5-11q-2-4-2-9 0-9 7-18t17-9q19 0 30 24t11 58v16q0 8-2 16zm-485 303q25 6 46 19.5t30 24.5l7 10q4 5 4 15 0 11-8 19.5t-18 8.5q-6 0-11.5-4t-10.5-9l-7-8q-10-10-27-19t-40-10q-11 0-18.5-8t-7.5-19 4.5-21.5 4.5-20.5q0-24-9-40t-9-22q0-11 7-19t17-8q22 0 34.5 32t12.5 61v8q0 5-1 10zm-721.5-161q-7.5 8-18.5 8-12 0-38-23t-39-57q-8 2-16 3t-15 1q-22 0-52.5-10t-30.5-29q0-10 8.5-18.5t19.5-8.5q9 0 19.5 6t33.5 6q20 0 33-6t19-6q11 0 18.5 7t7.5 16q2 22 15.5 41t28 27 14.5 24q0 11-7.5 19zm720 299q-7.5 7-16.5 7-10 0-20.5-5t-29.5-5q-20 0-35 7.5t-22 7.5q-25 0-27-22.5t-24.5-46-22.5-20.5q-15-6-15-22 0-12 8.5-19.5t17.5-7.5q8 0 11 1 52 38 68 76 21-7 43-7 26 0 49 7.5t23 30.5q0 11-7.5 18zm-630-864.5Q808 962 797 962q-17 0-42.5-24T718 887q-21 7-44 7-35 0-54-9.5T601 858q0-11 8.5-18.5T627 832q4 0 12 4t35 4q25 0 37-7t17-8h6q22 0 29 31t33.5 47.5T823 938q0 11-7.5 17.5zM763 1161q9 0 16 8.5t7 17.5q0 14-9.5 20t-20.5 6q-26-4-49-16.5t-39-30.5q-24 17-47.5 22.5T581 1194q-14 0-23.5-6t-9.5-20q0-11 7.5-19.5t18.5-8.5q2 0 3 1t6 1q32 0 54-20.5t33-20.5q17 0 25.5 15t27 28 32.5 15zm1044 288q31 10 54.5 34t23.5 29l2 6q0 3 1 6 0 9-7.5 18t-18.5 9q-17 0-33.5-26t-59.5-31q-10 0-17-7.5t-7-17.5q0-11 6.5-25t6.5-27q0-25-7-34.5t-7-18.5q0-11 7.5-20t18.5-9q16 0 28 23.5t12 58.5v16q0 8-3 16zm-243 152q32 8 58 30t26 26q4 7 4 15 0 11-7 18.5t-19 7.5q-13 0-22-11 0-5-21.5-21t-50.5-16q-12 0-19.5-7.5t-7.5-18.5 3.5-22 3.5-20q0-16-2.5-26t-5.5-16l-6-11q-3-5-3-11 0-11 8-19t19-8q19 0 31.5 29.5t12.5 61.5v9q0 5-2 10zm-912 4q14 12 14 24 0 13-9 19t-17 6q-17 0-41-23t-36-58q-9 2-18.5 3t-17.5 1q-33 0-48.5-7t-15.5-8q-15-6-15-23 0-11 8.5-18.5t18.5-7.5q5 0 10 2l9 4q5 2 13.5 4t19.5 2q23 0 32.5-6t21.5-6q25 0 30 32.5t32 52.5zm112-293q7 7 7 17 0 13-9 19.5t-20 6.5q-18 0-44-12.5t-45-34.5q-24 17-49.5 22.5T563 1336q-14 0-22-6.5t-8-20.5q0-11 7.5-18.5t18.5-7.5h6q4 0 9 1 35 0 51.5-21t34.5-21q14 2 29.5 26t54.5 34q13 3 20 10zm614 593q14 7 14 26 0 11-8.5 18t-17.5 7q-10 0-19-5t-29-5q-22 0-37 8t-21 8q-22 0-29.5-33t-35.5-52l-9-5q-15-7-15-22 0-11 7-19t18-8q4 0 12 2 5 0 30.5 21t38.5 53q11-3 21-4t20-1q24 0 41.5 5.5t18.5 5.5zm-600-887q9 2 16 9.5t7 16.5q0 14-9.5 20.5T771 1071q-28-5-50-17.5t-38-29.5q-23 17-46.5 22t-40.5 5q-14 0-24-6t-10-20q0-11 8-18.5t19-7.5q46 0 65-20.5t32-20.5q17 0 33.5 26t50.5 32zm537 1017q15 6 15 25 0 12-7.5 19t-18.5 7q-8 0-18.5-5.5t-29.5-5.5q-20 0-35.5 8t-21.5 8q-23 0-27-25t-21.5-44.5-25.5-19.5q-8-3-11.5-9.5t-3.5-13.5q0-11 7-19.5t17-8.5q3 0 6 1l7 2q-2-2 25 17t43 57q11-3 20.5-4t19.5-1q28 0 60 12z"},"children":[]}]};exports.u26BE=u26BE;var u26C4={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2247 1355l-258 200q38 73 56.5 148.5T2064 1853q0 182-102 339.5T1684.5 2435t-396.5 85-397.5-85-278-242.5T511 1853q0-81 22-162.5t67-159.5l-249-223q-18-18-18-38 0-22 15.5-37t36.5-15q19 0 34 12l101 90 21-74q5-17 18.5-27.5T590 1208q23 0 37.5 14.5T642 1259v7q0 3-1 8l-34 124 52 46q26-38 64.5-74.5T804 1301q-57-73-89-161.5T683 952q0-241 180.5-415T1299 363q253 0 434.5 173.5T1915 952q0 103-34.5 194.5T1785 1313q86 68 148 152l67-50-21-130-1-9q0-20 16-36t38-16q18 0 32.5 12t17.5 32l11 74 91-70q14-11 31-11 20 0 36 15.5t16 36.5q0 27-20 42zm-339 325q-32-88-85-156t-108-108-55-103q0-47 36-88.5t65-114.5 29-158q0-192-145.5-329T1299 486q-201 0-346 137T808 952q0 82 28 153.5t60.5 111T929 1302q0 62-58 106.5t-110.5 106-89.5 151-37 187.5q0 153 89.5 282T962 2330t326 66q175 0 323.5-65t238.5-193.5 90-282.5q0-87-32-175zm-476.5-502q-5.5 6-41.5 9.5t-89 3.5q-43 0-79.5-3t-59-4.5-22.5-42.5q0-13 2.5-24.5t13.5-11.5q41 0 81 1t81 1q23 0 46-1t48-1q14 0 19.5 6t5.5 26q0 35-5.5 41zm116.5-150.5q-23 29.5-55 29.5-33 0-59-27t-26-69q0-43 23-72t55-29 58.5 27 26.5 69-23 71.5zM1166 961q-2 41-26 68.5t-58 27.5q-31 0-55-28t-24-68q0-42 23.5-71.5T1085 860q34 0 57.5 30t23.5 71z"},"children":[]}]};exports.u26C4=u26C4;var u26C5={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1542 681q-8-2-14-7.5t-6-14.5q0-6 3-9l100-206q7-12 19-12 18 0 22 16l52 200q2 10 4.5 16t2.5 10q0 11-8 16.5t-17 5.5zm322 103q-5-5-5-14 0-16 15-22l215-74q3 0 8-1 8 0 15 7t7 15q0 5-2 11l-116 197q-6 11-17 11-7 0-11.5-1.5t-8.5-6.5zm154 300q0-8 6-14.5t16-6.5q7 0 11 3l205 100q13 7 13 19 0 8-5.5 14t-11.5 8l-220 58q-3 0-6 1-11 0-17-8.5t-6-16.5zm-885-474q-2-2-2-7 0-8 6-15t16-7q7 0 11 3l198 115q11 7 11 22 0 9-9 15l-122 100q-5 4-13 4-18 0-21-14zm1086 1227q-81 81-194 81-43 0-85-14-32 114-127.5 188t-217.5 74q-61 0-116.5-19t-100.5-53q-59 48-132 75t-156 27q-132 0-243-71.5T681 1936q-11 0-30 1-152 0-251.5-100.5T300 1598q0-120 83.5-222T592 1262q34-101 121.5-165t196.5-64l24-7q48-62 118.5-99.5T1208 889q43 0 80 10 51-67 127-106t164-39q150 0 258 107.5t108 257.5q0 41-8.5 80t-24.5 75q20 25 34 54.5t21 62.5l47-9q21-4 46-4 95 0 167.5 80t72.5 185q0 113-81 194zm-73-293.5q-36-47.5-84-47.5-26 0-46.5 6.5t-48.5 6.5q-36 0-71-26t-46-74-54.5-86-105.5-38q-31 0-71.5 18t-66.5 18q-41 0-77-28t-44.5-99-71.5-129-151-58q-61 0-102 20t-80.5 72.5T922 1152l-12-1q-69 0-128 42.5t-79 105-97.5 77.5-132.5 85.5-55 136.5q0 92 66 157t157 65q6 0 22-1t30-1q66 0 99.5 74.5t114 130T1090 2078q66 0 121-22t89-51 78-29q42 0 92 36t125 36q70 0 134-41.5t96-130.5 115-89q22 0 42 6.5t43 6.5q64 0 110.5-46.5T2182 1643q0-52-36-99.5z"},"children":[]}]};exports.u26C5=u26C5;var u26CE={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1773 1687v277q0 46 33 79t79 33h97v295h-97q-167 0-287-120t-120-287v-352l-360-93v445q0 46 33 79t79 33h97v295h-97q-168 0-287.5-120.5T823 1964v-522q-23-6-40-7l-23-1q-64 0-98.5 34.5T627 1551q0 50 36 84l-204 212q-62-59-94-135t-32-161q0-165 120-288.5T738 1139q21 0 41.5 1t43.5 4V566h295v648l360 94V566h295v821q19 5 37.5 6.5t25.5 1.5q58 0 97.5-33t39.5-85q0-23-9.5-44.5T1937 1194l204-213q61 60 93.5 135.5T2267 1277q0 177-126.5 295.5T1830 1691q-12 0-26-1.5t-31-2.5z"},"children":[]}]};exports.u26CE=u26CE;var u26D4={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2126.5 1910.5q-128.5 220.5-349 349T1300 2388t-477.5-128.5-349-349T345 1433t128.5-477.5 349-349T1300 478t477.5 128.5 349 349T2255 1433t-128.5 477.5zM2029 1622v-377H570v377h1459z"},"children":[]}]};exports.u26D4=u26D4;var u26EA={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2173 1702q12 6 19.5 18t7.5 26v101q0 20-15.5 35.5T2149 1898q-6 0-11-2l-11-4-52-26v555q0 20-15 34.5t-35 14.5H574q-21 0-35-14.5t-14-34.5v-555l-52 26-11 4q-7 2-13 2-20 0-34.5-14.5T400 1847v-101q0-14 6.5-26t19.5-18l540-284v-53q0-13 4-22l255-556V470h-154V321h154V187h149v134h153v149h-153v317l256 556q2 5 3 11t1 11v53zm-721 468v200h82v-956h-468v956h86v-200q0-63 45-106t104-43q63 0 107 45t44 104zm-827 200h341v-727l-341 173v554zm1349-554l-340-173v727h340v-554zm-522 42q0 12-9 21t-21 9h-240q-12 0-21-9t-9-21v-170q0-63 45-106t104-43q62 0 106.5 45t44.5 104v170zm-241-29h62v-81h-62v81zm182-81h-61v81h61v-81zm-120-60v-85q-27 10-44.5 32.5T1211 1688h62zm119 0q0-29-17-52t-43-33v85h60z"},"children":[]}]};exports.u26EA=u26EA;var u26F2={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1817 1598q35 0 60 25t25 59q0 35-25 59t-60 24q-20 79-70 150t-116.5 120-116 68-49.5 53q0 39 47.5 58.5t47.5 56.5q0 23-17.5 38.5T1499 2325h-403q-26 0-44-15.5t-18-38.5q0-35 33-49t48-31 15-35q0-33-49.5-52T966 2037.5 851 1920t-73-155q-33-3-55-27t-22-56q0-35 24.5-59.5T785 1598h1032zm-752-178h478q26 0 45 19t19 47q0 26-19 45t-45 19h-478q-27 0-46-19t-19-45q0-28 19-47t46-19zm435-51h-393q0-80 57.5-138t139.5-58q81 0 138.5 58t57.5 138zm-957.5-54q-13.5-16-13.5-39l1-38q0-25-13-40t-36-15q-30 0-59.5 43t-66.5 43q-19 0-37-13t-18-39q0-14 3.5-30.5t3.5-32.5q0-17-8.5-29t-25.5-12q-20 0-52 32t-54 32q-23 0-36.5-20.5T117 1105q0-73 123-196.5t254.5-184T759 664q134 0 251 60t193.5 184.5T1280 1116q0 16-11 16-6 0-13.5-7.5T1241 1106l-14-21q-29-39-85-66t-117-27q-122 0-204.5 69t-130 169.5T582 1331q-26 0-39.5-16zM2469 1156q-13 21-36 21-21 0-53.5-32t-53.5-32q-17 0-25.5 12t-8.5 29q0 16 3.5 32.5t3.5 30.5q0 26-17.5 39t-37.5 13q-36 0-66.5-43t-59.5-43q-22 0-35.5 14t-13.5 39l1 40q0 23-13.5 39t-39.5 16q-59 0-107.5-99.5t-135-169.5-200.5-70q-65 0-119.5 28t-80.5 65l-15 21q-8 11-15 18.5t-14 7.5q-6 0-8.5-5t-2.5-11q0-63 66-184.5T1571.5 737t268.5-73q130 0 261.5 60t256 183 124.5 200q0 28-13 49z"},"children":[]}]};exports.u26F2=u26F2;var u26F3={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2133.5 2459.5Q2063 2531 1963 2531t-170.5-71.5T1722 2290q0-99 70.5-170.5T1963 2048t170.5 71.5T2204 2290q0 98-70.5 169.5zM1802 1613q-48 105-142.5 376T1391 2385t-436 125q-330 0-526.5-157T232 1917q0-212 154.5-320.5T828 1488q97 0 172.5 8.5T1137 1517l104 20q46 9 91 9 67 0 105-17t65.5-45.5T1595 1337l202-368q4-6 11-7l16-3 300-648h243l-334 728q3 3 5.5 7.5t2.5 10.5v4q0 3-1 5zm-461 188q-139-76-370-76-212 0-354 87.5T475 2057q0 102 79 192t190 119.5 218 29.5q222 0 370-118.5t148-262.5q0-140-139-216z"},"children":[]}]};exports.u26F3=u26F3;var u26F5={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2143 1928q47 0 71.5 23.5t24.5 83.5q0 55-19.5 165t-42.5 157H706q-91-58-218.5-183.5T360 1983q0-18 14-36.5t44-18.5h1725zm-984-139q60-132 83.5-283t23.5-306q0-200-46-372.5T1084 506v-6q523 119 775 422.5t252 866.5h-952zm-134 0l-491 50q54-291 178.5-602T1036 599h5z"},"children":[]}]};exports.u26F5=u26F5;var u26FA={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1359 862q173 25 319.5 102t264.5 189 223.5 274 171.5 336.5 66 218.5q0 38-21.5 68.5T2323 2093l-1072 363q-10 3-19 5t-20 2q-22 0-44-8l-898-364q-34-14-54-42t-20-61q0-22 5-45t51.5-145.5 83-199 89.5-166 102.5-156 106-126.5 108-101.5 118.5-81T978 907q85-34 155-44t108-10V456q0-25 17-42.5t42-17.5q20 0 35 12t20 29q17 2 32.5 6t107.5 18l379 58q68 11 122.5 21t54.5 37q0 9-7 16.5t-59.5 29.5T1661 737l-302 104v21zm-119 109q-169 0-348 116t-327 346.5T314 1982l138 56q69-237 179-408t225-171q89 0 133 84.5t44 249.5q0 85-12 186.5T993 2169l-16 80 176 72q0-495 26.5-849.5T1240 971zm1046 1011l-27-81q-131-380-363-631t-538-289q0 11-27 170t-43.5 460-16.5 714z"},"children":[]}]};exports.u26FA=u26FA;var u26FD={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2145.5 2288.5Q2074 2370 1958 2370q-113 0-182-50.5t-100-148-31-326.5q0-189-28.5-300.5T1544 1389v1047H382V788q0-120 87.5-207.5T677 493h574q119 0 206 86.5t87 208.5v430q126 45 188.5 198t62.5 427q0 141 8.5 216t42.5 119 113 44q53 0 81.5-37.5T2069 2081q0-151-36-368.5t-79-364.5q-8 0-23 1-149 0-199-84t-50-237q0-32 7-62.5t28-57.5 49-38l58-23 32-13q14-6 20-11 2-5 3-11t1-12q0-61-40.5-132.5T1757 555t-42-73q0-24 22-45.5t55-21.5q23 0 44 12t39 30l21 23q66 77 108.5 170t65 182 50.5 192 28 172q0 40-11 72t-38 46q43 147 80.5 375t37.5 389q0 129-71.5 210.5zm-231.5-1072q10-16.5 10-39.5 0-24-8-54t-18-55l-11-24q-11-22-26-31.5t-32-9.5q-20 0-36.5 14.5T1776 1059q0 84 26.5 129t75.5 45q26 0 36-16.5zM1351 859H577v358h774V859z"},"children":[]}]};exports.u26FD=u26FD;var u2702={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2220.5 2497q-37.5 38-86.5 38-53 0-93-13.5t-55-39.5l-15-22q-23-37-58-46.5t-75-9.5l-57 1q-115 0-207.5-108.5T1481 2017q0-45 4.5-80t4.5-69q0-47-16-73t-43.5-45.5-65-36.5-54.5-31l-37-32-34-27-33 27q-31 24-39 32t-44 24-68.5 37.5-50 51.5-17.5 73q0 34 4.5 70t4.5 87q0 171-99 281t-261 110q-145 0-220-82.5T342 2121q0-90 45.5-166t111-124.5T701 1739l25-8q71-20 90.5-91.5t97.5-131 149-154.5q-110-222-194.5-493.5T784 476q0-36 7-74t21-38q6 0 15 13.5t18 30.5l17 34q8 16 11 20l185 304q92 152 182 307 90-155 182-307l185-304q3-3 26-50.5t34-47.5q14 0 21.5 36.5t7.5 75.5q0 109-86.5 385T1416 1354q72 96 143 150t93 109l11 28q20 46 38.5 63.5t51.5 26.5l25 8q141 44 203 90.5t107 117.5 45 159q0 41-7 84t-7 82q0 25 18 36.5t38 13.5l22 2q35 3 48 27t13 50q0 58-37.5 96zM832 1927q-39-45-103-45-101 0-167 74.5T496 2120q0 75 44 118.5t113 43.5q94 0 156-69.5t62-173.5q0-67-39-112zm380.5-515q12.5 16 32.5 16 26 0 38.5-15.5t12.5-32.5q0-18-13.5-33.5T1245 1331q-18 0-31.5 11.5T1200 1376q0 20 12.5 36zm701 538q-79.5-68-162.5-68-65 0-104 46.5t-39 110.5q0 98 56 174t135 76q45 0 98.5-19.5t74.5-71 21-96.5q0-84-79.5-152z"},"children":[]}]};exports.u2702=u2702;var u2705={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1056 2013l-608-606 152-152 456 452 943-951 152 152z"},"children":[]}]};exports.u2705=u2705;var u2708={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2280 1410q27 40 51.5 92.5t24.5 86.5q0 20-10.5 34t-35.5 14q-33 0-83.5-33.5T2108 1499q-72 31-174.5 65t-240.5 66q95 278 126.5 412t31.5 217q0 87-34 132.5t-103 45.5q-132 0-303-202.5T1091 1713q-46 3-88 4t-84 1q-329 0-518-75.5T212 1454q0-55 50-104.5t118-82.5 78-33q7 55 42 105.5t91 92.5l28 21q23 19 47.5 32.5T710 1499q17 0 47.5-32t30.5-46q0-28-40.5-47.5t-104-87T571 1126q51-32 122.5-54.5T867 1049q-18-112-18-211 0-192 63.5-308T1081 414q97 0 216 183t231 522q125 22 257 48.5t280 58.5q67-73 138-126t132-53q21 0 36.5 10.5t15.5 33.5q0 21-17 60t-47 90l-30 50q17 14 24 28t7 25q0 22-13.5 37.5T2280 1410zm-1351.5 21q-14.5-9-31.5-9-25 0-46.5 29t-21.5 53q0 22 12.5 31t32.5 9q32 0 50.5-35.5T943 1459q0-19-14.5-28zm128.5 96.5q23-26.5 23-53.5 0-20-11.5-29t-28.5-9q-24 0-45.5 27.5T973 1521q0 14 8.5 23.5t24.5 9.5q28 0 51-26.5z"},"children":[]}]};exports.u2708=u2708;var u2709={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1299 1570l793-394v829H507v-829zm793-741v221l-793 393-792-393V829h1585z"},"children":[]}]};exports.u2709=u2709;var u270A={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2164.5 1876.5q-120.5 200.5-342 306T1300 2288q-167 0-304.5-41t-243-112.5-186-174.5-121-224-85.5-255.5-45-253.5q0-137 69.5-220T581 924q35 0 44-5t32.5-58.5T741 765t151-42q39 0 69.5 8t50.5 8q31 0 56-42t83-78 130-36q67 0 120.5 29t57.5 29q12 0 35-20.5t73-45.5 125-25q92 0 161 51t96 111.5 37.5 175.5 60 127.5 116.5 74 94.5 146.5 27.5 204q0 236-120.5 436.5zm-613-971.5q2.5 40 7.5 91 20-5 44-6t49-1q58 0 105.5 4.5t95.5 11.5l-5-160q-2-72-46.5-113.5T1679 690q-59 0-94.5 47T1549 846q0 19 2.5 59zM1150 867l2 14q2 17 7.5 50.5t13.5 74.5l16 88q0 10 30.5 154t133.5 144q22 0 36.5-4.5t25.5-14.5l14-12q-33-29-48-69.5t-15-90.5q0-73 23-116t70-66l-19-159q-9-65-50.5-102.5T1284 720q-66 0-100.5 35t-34.5 98q0 8 1 14zm-389 149l2 15q8 40 38.5 135.5t70 200.5 129.5 105q48 0 86-30t38-76q0-7-1-13l-2-12-80-374q-13-61-53.5-89T900 850q-68 0-104 42.5T760 1001q0 8 1 15zm-19.5 532.5Q782 1519 782 1474q0-6-1-14t-3-16l-89-292q-17-53-50.5-75t-74.5-22q-63 0-96.5 38.5T434 1203q0 46 42.5 152t72.5 164.5 100 58.5q52 0 92.5-29.5zm1299.5-373q-91-68.5-177-68.5-32-2-102.5-11.5T1640 1086q-93 0-136.5 32t-43.5 94q0 86 89 137t169 51q11 0 16-2-6 11-17 69t-11 94l-81 24q-72 21-142.5 58t-113 88.5-69.5 51.5q-33 0-33-34 0-41 38.5-117t42.5-78 4-8q0-7-12-10l-30-5q-18-3-37-7.5t-32-16.5q-66 63-105.5 82t-75.5 19q-40 0-87-13.5t-63-26.5q-12 43-56 78t-83 35q-31 0-60-4.5t-51-4.5q-26 0-35.5 12.5T615 1720q0 83 98.5 197T963 2093.5t340 62.5q385 0 607-202t222-510q0-200-91-268.5z"},"children":[]}]};exports.u270A=u270A;var u270B={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2400 1633.5q-18 48.5-43 78.5l-47 59-56 74q-32 43-69.5 90t-73.5 87l-115 133q-135 156-220.5 223t-193 108-237.5 41q-180 0-341-62.5t-284-194-177.5-327T450 1660l-13-29-87-181q-25-51-49-103l-45-97q-16-33-45.5-101T181 1007q0-118 77.5-202.5T473 720q7-116 82-193.5T752 449q46 0 91 14 32-81 98-130.5t155-49.5q53 0 103.5 17.5T1289 350q77-83 203-83 119 0 198.5 77t88.5 199.5 14 420.5l2 181q0 67 5.5 173t21.5 106q7 0 49-52t109.5-91.5T2136 1241q114 0 198 85t84 207q0 52-18 100.5zM1034.5 881q59.5 246 93.5 356 51-13 98-18t104-10l-51-349-20-130q-10-61-16-107l-10-66q-7-52-45-85t-89-33q-58 0-91 45.5T975 602q0 33 59.5 279zM632 790.5q4 17.5 48 137.5l128 357 30 82q47-32 97.5-58t103.5-45q-22-75-47-163L881 705q-14-52-50.5-75T752 607q-60 0-92 38t-32 107q0 21 4 38.5zm1592.5 649Q2187 1397 2139 1397q-39 0-68.5 11.5T2023 1438l-21 21q-7 7-24 28l-41 52q-50 64-107 141t-141 77q-20 0-39.5-2t-41.5-2q-26 0-44.5 4t-32.5 10l-23 9q-11 5-24 5-11 0-22.5-7t-11.5-21q0-27 65-54t110-28.5 45-65.5q0-67-9-140l-17-136-2-163q0-61-3-136l-4-155q-2-80-5-161l-6-155q-3-65-39.5-100.5T1485 423q-58 0-90.5 45T1362 575q0 12 2.5 52t7.5 98l10 125q7 94 17 204t18 165l13 2q15 2 49 13.5t34 28.5q0 14-22.5 22t-42.5 8q-180 19-349 72t-318 131l-19 12q-11 7-22 7t-16.5-6.5-5.5-14.5q0-12 12-29.5t25-30.5l14-14q-28-65-56.5-134.5T654 1137l-41-108h-1l-24-65q-16-43-51-65.5T462 876q-56 0-90 36t-34 95q0 17 4 40.5t23 66.5l32 70q19 42 43 91l47 100q24 51 48 99l42 86 30 71q23 52 46.5 132.5t39.5 132 35 91 39.5 74 43 62.5 42.5 48.5 56 47.5q161 123 427 123 116 0 212.5-32t164.5-86.5 121-128 74-96.5l85-93 25-28 65-81q32-40 60-74l48-59q7-8 39-47t32-84q0-51-37.5-93.5z"},"children":[]}]};exports.u270B=u270B;var u270C={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1979 2237.5q-122 159.5-299.5 231T1296 2540q-58 0-116-4.5t-112.5-15.5-94.5-24.5-68.5-27.5-60-37.5-65.5-63-64-96-45-110.5-13.5-53-26-38.5-60-95T515 1867t-34-99.5-11-92.5q0-100 74.5-172.5T725 1426q6-103 69-159t131-56l-41-116q-36-98-62.5-160t-48-159T752 615q0-132 80-213t208-81q122 0 200 79.5T1357 621l21 77q9 31 17 70l29 162q5 26 16.5 82t21.5 56q9 0 23.5-122t21.5-208 39.5-180T1652 401t170-63q145 0 226.5 83.5T2130 628q0 77-16.5 163.5T2076 944l-18 56-60 176q-27 81-42.5 146.5t-26.5 101-11 67.5q0 49 44 87t91.5 131 47.5 202q0 167-122 326.5zm-726-826q60-32.5 143-32.5 53 0 111 12t112 32l67 25q37 14 74 30 5-7 11-33.5t13-62.5l13-70q7-35 15-58l41-118q55-161 92-290t37-203q0-71-40.5-114T1838 486q-106 0-151 121t-67 292l-16 135-17 119q-10 75-37 121t-79 46q-85 0-113.5-116.5t-63-281-83-304.5T1066 478q-81 0-122 41t-41 126q0 94 78.5 301.5T1086 1204t51.5 145 47.5 95q8 0 68-32.5zM904 1647q55 116 90 177.5t98 61.5q42 0 75.5-28.5t33.5-66.5q0-7-1-14.5t-4-16.5l-107-312q-16-47-47.5-67t-68.5-20q-56 0-90 31.5t-34 92.5q0 46 55 162zm-24 338q39-27 39-66 0-15-8-36l-43-104-32-72h-1q0-3-29.5-70T703 1570q-52 0-81.5 30t-29.5 87q0 48 24.5 96t50.5 96 54 90.5 78 42.5q42 0 81-27zm999-287q-79-89-219-145t-242-56q-67 0-118.5 37t-51.5 99q0 65 62.5 111.5t200.5 90 138 117.5q0 15-4.5 26t-12.5 11q-11 0-78-29t-122-29q-71 0-116.5 61.5T1270 2144l1 18v28q0 14-2.5 25.5t-9.5 11.5q-22 0-40-59.5t-18-103.5q0-23 4-52t9-48q-22 22-55.5 36.5T1090 2015q-25 0-47.5-7.5T1010 1994q-51 73-87 91.5t-94 21.5q22 102 41.5 134.5t65.5 68 134.5 61.5 204.5 26q267 0 475-143.5t208-360.5q0-106-79-195z"},"children":[]}]};exports.u270C=u270C;var u270F={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2407.5 1069q-17.5 68-55.5 103L1240 2179l-31 26q-2 2-18.5 12T948 2294l-144 43q-218 63-379 105t-192 44q-25 0-41-16.5t-16-46.5q0-14 12.5-64t35.5-121l203-632q17-52 51-91t85-85l1082-992q40-37 111-57t186-20q108 0 190.5 80.5t159 150 105 113.5 28.5 211q0 85-17.5 153zM2271 834L1140 1871q6 27 10.5 88.5t4.5 123.5l1070-973q21-20 42-44t21-49q0-45-7-90t-10-93zm-360-332q-84 5-123.5 11t-90.5 52L642 1532q35 5 75 5t76 13zM839 1601v37q0 28 3.5 79t3.5 69q0 9 34.5 14.5t61.5 5.5q38 0 75.5 6.5t68.5 14.5L2241 769l-62-64-68-67q-34-33-65.5-63t-56.5-52zm-202 47l-36-2q-17 0-28-1h-13l-170 511q39 20 65.5 47.5T505 2269l537-132q2-21 2-45.5t1-49.5q0-72-8.5-92t-98.5-23h-25q-79 0-108.5-11.5t-43.5-25-21-66.5l-15-125q-4-27-9.5-37t-78.5-14z"},"children":[]}]};exports.u270F=u270F;var u2712={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2414 625.5q-11 43.5-31 88.5-20-12-44-28t-47-36l-41-36q-74-63-144.5-142.5T2007 339q45-20 88.5-31.5T2181 296q102 0 173 70.5t71 173.5q0 42-11 85.5zM2248 755q25 20 46.5 33.5T2334 810q-45 75-102.5 145T2112 1087l-355 355q-4 4-13 4-18 0-49-16.5t-73-48.5zm-747 524q-105-103-165.5-185T1275 977q0-9 6-13l353-354q63-63 134-120t144-102q22 48 78 116.5T2126 653zm41 182l28 19q32 23 54.5 34t39.5 11q3 0 7-1t6-3v2l-74 74q-6 5-14 5t-16-2.5-18-7.5l-484 484q-4 4-12 4-14 0-35.5-10.5T974 2039q-9 26-15 83t-63.5 153.5-191.5 154-234.5 70T289 2529l-54 11q-23 5-27 5-11 0-21.5-6t-10.5-20q0-4 5-26l11-53h-1q22-103 30-173t38.5-164.5 81-172 132-119 131.5-47 79-15.5q-20-28-30.5-50.5T642 1662q0-6 4-12l484-482q-5-11-7.5-19t-2.5-16q0-7 6-13l72-74 2 1q-2 3-2 11 0 36 60 116t164 184l-65 65 121 102zm-673 646l5-36q3-19 8.5-40t17.5-48q-41-34-83.5-77t-77.5-83q-41 19-94 24.5t-111 34-87.5 58.5-61 90.5T330 2187t-34 193l206-207q-8-19-8-39 0-39 28.5-66.5T587 2040q39 0 67 28t28 67q0 36-28 64.5t-65 28.5q-21 0-40-8l-207 207q39-7 81-11t82.5-14.5 80.5-23 77.5-29.5 74-39 61.5-53.5 44.5-71.5 25.5-78z"},"children":[]}]};exports.u2712=u2712;var u2714={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1057 2014l-608-606 152-152 456 452 943-951 152 152z"},"children":[]}]};exports.u2714=u2714;var u2716={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2021 1904q8 8 12 18.5t4 20.5q0 24-16 40l-169 167q-20 18-40 18-24 0-39-18l-473-472-473 472q-9 10-19.5 14t-21.5 4q-25 0-39-18l-168-167q-16-16-16-40 0-10 4-20.5t12-18.5l473-473-473-473q-16-16-16-39 0-11 4-21.5t12-18.5l168-169q15-16 39-16 11 0 21.5 4t19.5 12l473 473 473-473q16-16 39-16 11 0 21.5 4t18.5 12l169 169q8 8 12 18.5t4 21.5q0 23-16 39l-474 473z"},"children":[]}]};exports.u2716=u2716;var u2728={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M908 1927q-77-202-157-323t-190.5-230.5T294 1171l-112-67 112-68q209-124 363.5-305T910 280q100 275 251.5 454t360.5 302l114 68-114 67q-209 125-361.5 304T908 1927zm-429-823q136 98 243.5 212.5T908 1557q74-118 182.5-235.5T1338 1104q-132-93-242-211T908 650q-82 133-191.5 248T479 1104zm1939 475l-126 62q-130 63-227.5 155T1892 2060q-62-154-158-250.5T1493 1641l-125-62 125-62q138-67 235-165.5t165-253.5q66 153 161.5 251.5T2292 1517zm-525 207q34-44 90.5-99t139.5-108q-83-53-139.5-108t-90.5-99q-35 44-92 99.5T1662 1579q82 52 139 107.5t92 99.5zm-598-176q64 188 141.5 285.5T1626 2063l95 58-95 59q-111 69-188 166t-143 288q-63-183-140-282.5T963 2180l-95-59 95-58q112-70 191-170.5t141-282.5zm0 702q28-41 71.5-91.5T1470 2121q-59-47-102.5-96.5T1295 1932q-29 43-73 92t-104 97q61 49 105 99.5t72 91.5z"},"children":[]}]};exports.u2728=u2728;var u2733={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2307.5 1544q-48.5 35-142.5 35-14 0-56.5-4t-105.5-11l-288-31-282-32 104 82 238 190 188 152q78 65 99.5 109t21.5 76q0 53-37.5 86.5T1963 2230q-80 0-161.5-97.5T1714 2027l-87-107-189-237q-46-57-83-104l16 132 17 150 31 288q6 63 10 105.5t4 55.5q0 91-34.5 142.5T1300 2504t-98.5-51-34.5-143q0-13 4-55.5t11-105.5l31-288 32-282-272 341q-47 59-86 107l-67 81q-58 71-102 96.5t-82 25.5q-49 0-84-37.5t-35-83.5q0-40 26-84t95-100l81-66 226-182 118-94 104-82-282 32-288 31q-63 7-105.5 11t-55.5 4q-95 0-144-35t-49-98 49-98 144-35q13 0 55.5 4t105.5 10l288 31 150 17 132 16q-47-36-104-82l-237-189q-59-47-107-87l-81-67q-73-59-97-102.5T517 783q0-45 34-83t83-38q39 0 84.5 27t85.5 76l83 99 86 107 272 342-32-283-31-288q-7-62-11-104.5t-4-55.5q0-94 34.5-144t98.5-50 98.5 50 34.5 144q0 13-4 55.5T1419 742l-31 288-17 150-16 133 272-342 87-107q6-7 87-104.5t164-97.5q46 0 82.5 34.5T2084 783q0 32-21.5 75.5T1963 966l-82 67q-48 40-106 87l-238 189-104 82 132-16 150-17 288-31q63-6 105.5-10t56.5-4q94 0 142.5 35t48.5 98-48.5 98z"},"children":[]}]};exports.u2733=u2733;var u2734={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2402 1436.5q-8 7.5-18 7.5-229 0-435 24.5t-360 70.5q91 160 206.5 304.5t200 232.5 90.5 93.5 6 15.5q0 8-7 16.5t-19 8.5q-10 0-15.5-5.5t-104.5-100-236-201.5-291-195q-50 179-71.5 381.5T1326 2502q0 11-7.5 18.5t-18.5 7.5-18.5-7.5-7.5-18.5q0-226-24-429.5t-71-364.5q-146 83-284 190.5t-239.5 204-107 102-15.5 5.5q-11 0-18-7t-7-18q0-12 6-17t101.5-105 203-238.5T1010 1539q-161-47-364.5-71T216 1444q-11 0-18.5-7.5T190 1418t7.5-18.5 18.5-7.5q226 0 429.5-24t364.5-71q-87-153-196.5-292T612 770t-98-101-6-17q0-11 7-18.5t18-7.5q5 0 9 2l9 5q154 154 312 279.5t316 215.5q46-154 70.5-359t24.5-435q0-10 7.5-18t18.5-8 18.5 8 7.5 18q0 214 22.5 418.5T1419 1128q161-92 299.5-202t230-196.5 98.5-95 19-8.5q11 0 18.5 7.5t7.5 18.5q0 16-31 41.5t-192 210-280 393.5q154 46 360 70.5t435 24.5q10 0 18 7.5t8 18.5-8 18.5z"},"children":[]}]};exports.u2734=u2734;var u2744={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2291 1366q9 0 15.5 6t6.5 16v93q0 9-6.5 15.5t-15.5 6.5h-215l168 168q7 7 7 17 0 8-7 15l-66 65q-6 7-15 7t-16-7l-266-265h-415l293 293h377q9 0 15.5 6t6.5 17v92q0 9-6.5 15.5t-15.5 6.5h-238l152 152q5 6 5 16 0 5-1 9t-4 6l-66 66q-3 5-7.5 6t-9.5 1q-10 0-15-7l-152-152v240q0 8-7 15t-15 7h-93q-9 0-16-6.5t-7-15.5v-377l-293-293v415l265 266q6 6 6 16t-6 15l-65 66q-7 7-15 7-10 0-17-7l-168-168v215q0 9-6.5 15.5t-15.5 6.5h-93q-10 0-16-6.5t-6-15.5v-215l-170 168q-7 7-15 7-12 0-15-7l-67-66q-7-6-7-15t7-16l267-266v-415l-295 293v377q0 9-6 15.5t-16 6.5h-93q-9 0-15.5-7t-6.5-15v-240l-152 152q-6 7-16 7t-15-7l-66-66q-7-5-7-15t7-16l152-152H463q-9 0-15.5-5.5T441 1911v-92q0-11 6.5-17t15.5-6h377l293-293H718l-266 265q-6 7-15 7t-16-7l-66-65q-7-7-7-15 0-10 7-17l170-168H308q-9 0-15.5-6.5T286 1481v-93q0-10 6.5-16t15.5-6h217l-170-170q-7-7-7-15 0-10 7-17l66-65q5-6 15-6 11 0 16 6l266 267h415l-293-295H463q-8 0-15-7t-7-15v-93q0-9 6.5-15.5T463 934h240L551 782q-7-5-7-16 0-10 7-15l66-66q7-7 15-7 9 0 16 7l152 152V597q0-8 6.5-15t15.5-7h93q10 0 16 6.5t6 15.5v377l295 293V852L965 586q-7-6-7-16 0-9 7-15l67-66q3-6 13-6 11 0 17 6l170 168V442q0-9 6-15.5t16-6.5h93q9 0 15.5 6.5t6.5 15.5v215l168-168q7-7 17-7 8 0 15 7l65 66q6 5 6 15 0 11-6 16l-265 266v415l293-293V597q0-9 7-15.5t16-6.5h93q8 0 15 7t7 15v240l152-152q7-7 15-7 5 0 9 2l8 5 66 66q3 2 4 6t1 9q0 11-5 16l-152 152h238q22 0 22 22v93q0 10-6.5 16t-15.5 6h-377l-293 295h415l266-267q5-6 16-6 10 0 15 6l66 65q7 7 7 17 0 8-7 15l-168 170h215z"},"children":[]}]};exports.u2744=u2744;var u2747={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1413.5 1343.5Q1456 1385 1456 1445q0 64-43.5 105t-101.5 41q-63 0-105.5-45t-42.5-105q0-55 44-97t104-42 102.5 41.5zm-260-929Q1204 338 1301 338q90 0 142.5 80.5T1496 624q0 99-17 206t-57.5 261-116.5 154q-51 0-90-83t-75.5-250-36.5-284q0-137 50.5-213.5zM1469 1979q14 69 20.5 141.5t6.5 131.5q0 123-51.5 204.5T1301 2538q-97 0-147.5-76.5T1103 2248q0-75 14.5-166.5T1151 1917l20-78q24-92 58.5-150t75.5-58q47 0 84.5 74.5T1455 1911zm849-396q-82 52-208 52-58 0-141.5-8.5T1770 1590l-70-16q-121-29-164.5-58.5T1492 1445q0-81 234.5-142t383.5-61q132 0 211 50.5t79 146.5q0 92-82 144zm-1291-53.5q-78 37.5-198 62.5l-70 15q-67 14-139 21t-130 7q-124 0-207-51.5T200 1441q0-99 74-149t215-50q129 0 304 41.5t243.5 77 68.5 84.5q0 47-78 84.5zm562.5-388Q1591 1134 1697 988l83-114q81-112 155.5-210.5T2090 565q46 0 81 35t35 79q0 77-96.5 150.5T2009 906l-372 273q-8 6-18 6-14 0-22.5-10t-8.5-22q0-4 1.5-11.5zM428.5 600q34.5-35 79.5-35 48 0 83.5 25t66.5 65l43 57 56 76 125 172 100 140q14 20 22 31t8 22q0 12-9.5 22t-21.5 10q-11 0-18-6L592 906q-8-6-103-78.5T394 678q0-43 34.5-78zM2161 2094q18 21 31.5 49.5t13.5 53.5q0 44-35 78t-81 34q-81 0-151.5-93.5T1863 2114l-83-112q-44-60-82-114l-68-95q-34-47-38-53.5t-4-16.5q0-12 9.5-22t21.5-10q2 0 8 1.5t106 74.5l164 120 160 119q29 23 54.5 42.5t31.5 25.5zm-1158.5-393q9.5 10 9.5 22 0 11-8 22t-22 30l-100 140-125 173-56 76-43 57q-36 46-74.5 67t-75.5 21q-44 0-79-33.5t-35-77.5q0-33 23-72.5t56-65.5l70-54 161-119 164-120q99-73 104.5-74.5t8.5-1.5q12 0 21.5 10z"},"children":[]}]};exports.u2747=u2747;var u274C={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2021 1904q8 8 12 18.5t4 20.5q0 24-16 40l-169 167q-20 18-40 18-24 0-39-18l-473-472-473 472q-9 10-19.5 14t-21.5 4q-25 0-39-18l-168-167q-16-16-16-40 0-10 4-20.5t12-18.5l473-473-473-473q-16-16-16-39 0-11 4-21.5t12-18.5l168-169q15-16 39-16 11 0 21.5 4t19.5 12l473 473 473-473q16-16 39-16 11 0 21.5 4t18.5 12l169 169q8 8 12 18.5t4 21.5q0 23-16 39l-474 473z"},"children":[]}]};exports.u274C=u274C;var u274E={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2248 425q23 0 40 17.5t17 41.5v1893q0 23-17 40t-40 17H355q-24 0-41.5-17t-17.5-40V484q0-24 17.5-41.5T355 425h1893zm-700 1005l474-472q16-16 16-40 0-11-4-21.5t-12-18.5l-169-168q-17-17-39-17-23 0-40 17l-473 472-472-472q-20-17-42-17t-39 17L581 878q-17 17-17 40t17 40l472 472-472 473q-17 17-17 40 0 22 17 39l167 169q16 16 39 16t42-16l472-474 473 474q16 16 40 16 10 0 20.5-4t18.5-12l169-169q16-16 16-39 0-11-4-21.5t-12-18.5z"},"children":[]}]};exports.u274E=u274E;var u2753={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1077 1716v-86q0-131 64.5-223t194-186T1465 993q0-66-45.5-109.5T1282 840q-80 0-173.5 34T917 956L797 698q134-74 260-110t229-36q242 0 379 114t137 311q0 122-49 211.5T1603.5 1359 1444 1494t-59 153v69h-308zm316.5 253q54.5 51 54.5 147t-56.5 147.5T1245 2315q-97 0-151.5-52t-54.5-147 52-146.5 154-51.5q94 0 148.5 51z"},"children":[]}]};exports.u2753=u2753;var u2754={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1070 1937.5q65-62.5 179-62.5 112 0 178.5 61.5T1494 2112q0 110-66 174.5t-176 64.5q-113 0-180-62.5t-67-176.5q0-112 65-174.5zm56.5 294Q1168 2273 1249 2273q77 0 121.5-41t44.5-120q0-78-41.5-118.5T1252 1953q-86 0-126.5 39.5T1085 2112q0 78 41.5 119.5zM1431 1753h-387v-126q0-103 40.5-189.5t118-153.5 153-130 75.5-165q0-50-33.5-82T1289 875q-75 2-165 34t-183 78l-36 18-152-326 32-18q123-70 256.5-111t251.5-41q254 0 404.5 124T1848 972q0 95-26.5 170t-82 140.5T1582 1429t-126.5 115.5-24.5 99.5v109zm-308-79h229v-30q0-93 42.5-147t160-146.5T1720 1176t48-204q0-183-126-283t-349-100q-105 0-222 34.5T856 711l86 189q97-45 183-74t164-29q102 0 161 51.5t59 140.5-38 150.5-146 143-155 160-47 184.5v47z"},"children":[]}]};exports.u2754=u2754;var u2755={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1173 1628q-22 0-38.5-15.5T1116 1577l-68-993q0-26 17-42t39-16h392q25 0 40.5 18t15.5 40l-68 993q-2 20-19 35.5t-39 15.5h-253zm20-80h212l66-942h-344zm-71 384.5q66-61.5 177-61.5t178 62.5 67 174.5q0 111-66 175t-177 64q-113 0-179-62.5t-66-176.5 66-175.5zm54 296.5q42 40 123 40t124-41.5 43-119.5q0-83-44-120t-121-37q-86 0-126.5 40t-40.5 117q0 81 42 121z"},"children":[]}]};exports.u2755=u2755;var u2757={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1173 1585q-6 0-11.5-4t-5.5-10l-70-993q0-5 5-10t13-5h392q5 0 11 4.5t6 10.5l-69 993q-2 14-18 14h-253zm278.5 375q52.5 52 52.5 147t-53 146-149 51q-99 0-153-51t-54-146q0-101 54-150t153-49q97 0 149.5 52z"},"children":[]}]};exports.u2757=u2757;var u2764={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2275.5 1324q-36.5 97-96.5 173.5T2033 1644t-291.5 201.5-290 217.5-104.5 129-48 43q-7 0-16.5-3t-43-59-122-137.5-270-196.5T566 1643t-158-162-89-172.5-31-204.5q0-197 153.5-341T814 619q159 0 291.5 80T1300 915q62-135 193.5-215.5T1785 619q218 0 372.5 143.5T2312 1104q0 123-36.5 220z"},"children":[]}]};exports.u2764=u2764;var u2795={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2200 1550q0 24-16.5 40t-39.5 16h-614q-23 0-39.5 16.5T1474 1662v613q0 23-16.5 40t-39.5 17h-237q-24 0-40-17t-16-40v-613q0-23-16.5-39.5T1068 1606H456q-23 0-39.5-16t-16.5-40v-237q0-24 16.5-40t39.5-16h612q24 0 40.5-16.5t16.5-39.5V588q0-23 16-40t40-17h237q23 0 39.5 17t16.5 40v613q0 23 16.5 39.5t39.5 16.5h614q23 0 39.5 16t16.5 40v237z"},"children":[]}]};exports.u2795=u2795;var u2796={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2144 1255q23 0 39.5 16.5t16.5 39.5v237q0 24-16.5 40t-39.5 16H456q-23 0-39.5-16t-16.5-40v-237q0-23 16.5-39.5T456 1255h1688z"},"children":[]}]};exports.u2796=u2796;var u2797={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1147 611q63-65 153-65 91 0 154.5 64.5T1518 764q0 90-64 154t-154 64q-89 0-152.5-64T1084 764q0-88 63-153zm307.5 1638.5Q1391 2314 1300 2314q-90 0-153-65t-63-153q0-90 64.5-154t151.5-64q88 0 153 64t65 154q0 89-63.5 153.5zM2144 1256q23 0 39.5 16.5t16.5 39.5v237q0 23-16.5 39.5T2144 1605H456q-23 0-39.5-16.5T400 1549v-237q0-23 16.5-39.5T456 1256h1688z"},"children":[]}]};exports.u2797=u2797;var u27A1={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2147 1431l-877 643v-402H452v-479h818V787z"},"children":[]}]};exports.u27A1=u27A1;var u27B0={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1300 864q150-57 291-79t265-22q134 0 246.5 18.5T2287 819v277q-8-8-138.5-37.5T1855 1029q-58 0-119.5 4.5T1608 1051q105 97 158 221t53 269q0 241-142.5 391T1302 2082q-233 0-377-149t-144-392q0-145 53.5-269T991 1051q-66-13-127.5-17.5T744 1029q-163 0-294 30t-138 37V819q100-27 207-41.5T743 763q124 0 266 22t291 79zm0 289q-256 134-256 388 0 125 69.5 201t185.5 76 186-73.5 70-202.5q0-255-255-389z"},"children":[]}]};exports.u27B0=u27B0;var u27BF={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1845 909q142-54 275.5-74t250.5-20h38q18 0 35 1v256q-17 0-35-1h-35q-56 0-114.5 4.5T2138 1093q100 94 151 212t51 258q0 223-139 370.5T1841 2081q-218 0-359-146t-141-374q0-143 55-265.5t163-217.5q-56-16-121.5-25t-137.5-9q-73 0-138 9t-121 25q106 96 162 219t56 269q0 220-139 367.5T762 2081t-360.5-145.5T260 1563q0-140 51-258t151-212q-63-13-122-17.5t-115-4.5h-35q-17 0-34 1V816q17 0 36-1h37q117 0 250 20t274 74q147-65 284.5-93.5T1300 787q132 0 271 30t274 92zM759 1192q-244 125-244 369 0 121 65 193t177 72q114 0 180-69t66-196q0-242-244-369zm1081 0q-244 125-244 369 0 120 64.5 192.5T1838 1826q114 0 180-69t66-196q0-242-244-369z"},"children":[]}]};exports.u27BF=u27BF;var u2934={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1412 1614q-102 184-244 279.5T848 1989q-62 0-114.5-10t-84.5-21v-405q35 19 84.5 33t94.5 14q77 0 145.5-44t109.5-120l89-162-453-247 958-289 274 961-452-246z"},"children":[]}]};exports.u2934=u2934;var u2935={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1488 1456h513l-700 711-701-711h515v-185q0-96-49.5-172.5T936.5 991 790 960l192-356q222 43 364 213t142 455v184z"},"children":[]}]};exports.u2935=u2935;var u2B05={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1329 787v406h818v479h-818v402l-877-643z"},"children":[]}]};exports.u2B05=u2B05;var u2B06={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1943 1461h-406v818h-479v-818H656l643-877z"},"children":[]}]};exports.u2B06=u2B06;var u2B07={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M1299 2278l-643-877h402V583h479v818h406z"},"children":[]}]};exports.u2B07=u2B07;var u2B1B={"viewBox":"0 0 2639.837 2760.837","children":[{"name":"path","attribs":{"d":"M2465.837 239q24 0 40 16t16 40v2255q0 23-16 38.5t-40 15.5h-2255q-23 0-38.5-15.5t-15.5-38.5V295q0-24 15.5-40t38.5-16h2255z"},"children":[]}]};exports.u2B1B=u2B1B;var u2B1C={"viewBox":"0 0 2640.2811 2760.837","children":[{"name":"path","attribs":{"d":"M2466.28 238q23 0 39.5 16t16.5 40v2255q0 23-16.5 38.5t-39.5 15.5h-2255q-23 0-38.5-15.5t-15.5-38.5V294q0-24 15.5-40t38.5-16h2255zm-82 138h-2090v2090h2090V376z"},"children":[]}]};exports.u2B1C=u2B1C;var u2B50={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2181 1174v7q0 19-15 36l-444 368 140 569 1 11q0 17-14 31t-31 14q-14 0-25-8l-492-311-493 311q-11 8-24 8-18 0-32-13.5t-14-31.5q0-7 2-11l139-569-443-368q-17-15-17-36 0-19 12.5-30.5T462 1136l579-47 218-531q11-29 42-29 14 0 25 7.5t16 21.5l220 531 579 47q18 3 29 15t11 23zm-330 98l-400-32-150-366-150 366-399 32 306 254-96 392 339-215 340 215-97-392z"},"children":[]}]};exports.u2B50=u2B50;var u2B55={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2117.5 1909.5Q1988 2130 1768 2255t-469 125q-252 0-472.5-127T479 1906t-127-473q0-251 126.5-471.5t347.5-348T1299 486q250 0 470.5 125.5t349 346.5 128.5 475q0 256-129.5 476.5zM1983 1039q-106-183-289-289t-395-106-395 105.5-289.5 289T508 1433t106.5 395 289 289.5T1299 2223q212 0 394.5-106t289-290 106.5-394q0-211-106-394z"},"children":[]}]};exports.u2B55=u2B55;var u3030={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2377 1556q-98 69-179.5 97t-150.5 28q-104 0-199-61.5t-170-93.5-148-32q-151 0-280.5 77.5T1021 1649q-92 0-226-79.5T559 1490q-54 0-108.5 19T327 1573l-104-222q81-81 169.5-123t180.5-42q88 0 166 37t151.5 80.5T1023 1347q83 0 220.5-80.5T1530 1186q112 0 272.5 100t250.5 100q45 0 100.5-19.5T2285 1297z"},"children":[]}]};exports.u3030=u3030;var u303D={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2177 2100l-270 278q-6 6-14 6-25 0-168-165.5T1482 1830t-138-467q-16-98-23-186l-177 207q-23 26-54 40t-65 14q-56 0-98.5-34t-55.5-88l-82-347-172 165q-4 2-6 4t-7 2q-10 0-16-7L419 914q-4-8-4-13 0-7 6-13l334-314q30-28 65-45t69-17q55 0 88.5 36t48.5 96l80 303 244-268q74-83 147-83 67 0 103.5 48t36.5 130v92q0 272 63 481t182 389.5 294 336.5q8 4 8 13 0 7-7 14z"},"children":[]}]};exports.u303D=u303D;var u3297={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2228 1967.5Q2084 2217 1834.5 2361T1299 2505q-288 0-539.5-147t-392-395.5T227 1432t140.5-530.5 392-395.5T1299 359q286 0 535.5 144T2228 896.5t144 535.5-144 535.5zm-68.5-1033Q2026 704 1795 571.5T1299 439q-262 0-491 130.5T442.5 931 306 1432q0 266 133.5 496.5T803 2293t496 134 496.5-133.5 364-364.5 133.5-497q0-267-133.5-497.5zM1945 1887q11 0 18.5 7t7.5 18v157q0 20-18 24.5t-61 4.5q-103 0-176.5-53t-102-209.5T1582 1494h-46q-5 191-60 354t-128 261q-7 9-19 9-5 0-11-2l-147-77q-6-3-9.5-9.5t-3.5-12.5q0-9 7-15 70-105 111-228.5t47-279.5h-86q-11 0-17.5-7t-6.5-18V855q0-10 6.5-17t17.5-7h662q11 0 18 7t7 17v614q0 11-7 18t-18 7h-104q0 66 7 118l12 121q10 104 33.5 129.5t74.5 25.5q9 0 14-1h9zm-248-595q10 0 10-8v-242q0-10-10-10h-258q-10 0-10 10v242q0 8 10 8h258zm-468 214q3 3 4 7.5t1 8.5q0 12-6 18l-106 106q-6 8-16 8-12 0-18-8l-69-69v488q0 11-7 18t-17 7H800q-9 0-17-7t-8-18v-529l-102 100q-6 6-18 6-10 0-17-7l-120-126q-7-7-7-14 0-6 1-11.5t6-10.5l308-293H600q-9 0-16-7t-7-18V980q0-9 7-17t16-8h175V796q0-10 8-17t17-7h195q10 0 17 7t7 17v159h121q11 0 18.5 8t7.5 17v175q0 12-8 18l-132 125z"},"children":[]}]};exports.u3297=u3297;var u3299={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2228 1967.5Q2084 2217 1834.5 2361T1299 2505q-288 0-539.5-147t-392-395.5T227 1432t140.5-530.5 392-395.5T1299 359q286 0 535.5 144T2228 896.5t144 535.5-144 535.5zm-68.5-1033Q2026 704 1795 571.5T1299 439q-262 0-491 130.5T442.5 931 306 1432q0 266 133.5 496.5T803 2293t496 134 496.5-133.5 364-364.5 133.5-497q0-267-133.5-497.5zM1240 1680q0 4 1 10 0 7-3 13.5t-9 9.5l-101 51q-3 0-11 1-16 0-22-14l-33-72v394q0 11-7 18t-18 7H877q-11 0-18-7t-7-18v-375l-96 196q-3 8-10.5 10.5T733 1907q-7 0-10-2l-135-66q-14-7-14-22 0-7 3-11l225-459H648q-11 0-18-7t-7-18v-145q0-11 7-18.5t18-7.5h204v-72l-127 39q-3 2-8 2-17 0-24-17l-48-155q0-2-1-6 0-17 18-24l466-146q2 0 4-1t4-1q9 0 14.5 6t8.5 12l48 154 1 8q0 19-17 22l-129 41v138h142q11 0 18 7.5t7 18.5v145q0 11-7 18t-18 7h-118zm744 140q11 6 11 18l-2 6-3 15q-16 66-73.5 126.5T1770 2054l-27 2q-13 0-26 1-74 0-129-31t-86-86q-42 45-97.5 90.5T1334 2076q-9 0-19-8l-109-124q-6-6-6-16 0-17 26-31t88.5-71.5T1437 1683q-15-91-31-227t-32-330q0-10 5.5-17t16.5-9l162-13q26 0 27.5 24.5t10.5 94.5l10 85q11-53 22.5-122t22.5-160q0-10 8.5-16t16.5-6q4 0 6 1l157 44q9 3 13 10.5t4 15.5q-10 120-36.5 241.5T1769 1491l-15 44q-21 57-45 105t-50 92q8 59 26.5 87t65.5 28q36 0 53-28t22.5-54.5 27.5-26.5q8 0 13 4zm-652-894q-5-4-9.5-9t-4.5-11q0-3 1-7t3-7l60-111q3-6 9.5-9.5t12.5-3.5q7 0 11 2l209 114q13 7 13 23 0 8-3 11l-60 111q-3 6-9.5 10t-12.5 4-12-3zm697 725v6q0 6-5 13t-14 9l-126 22q-10 0-18-5t-10-16l-39-234q0-11 4.5-19t15.5-10l125-21q25 0 29 21zm-814-256q0-11 7-18t18-7h127q10 0 17 7t7 18v190q0 11-7 18t-17 7h-127q-11 0-18-7t-7-18v-190z"},"children":[]}]};exports.u3299=u3299;var uFE4E5={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2503 1767q3 9 4 17.5t1 18.5q0 27-16 57.5T2330.5 2013 2002 2202t-417 67q-147 0-310.5-22t-253.5-22q-193 0-350.5 61T446 2401t-112 54q-46 0-78-29t-36-73L93 1081q0-12-1-17 3-31 12.5-49.5t43-63T247 850t157-101.5T613.5 675 884 646q135 0 250 8t218 8q231 0 350-57.5T1884 484t86.5-67.5 33.5-4.5q41 0 69.5 22.5T2112 492zm-107 34L2004 526q-131 131-274 190t-378 59q-103 0-217-7.5T884 760q-230 0-404 78t-275 229l128 1275q125-104 306.5-167.5T1021 2111q85 0 251 22t313 22q253 0 440.5-84t370.5-270zm-857-627q158 114 158 290 0 137-113 233.5t-265 96.5q-212 0-361.5-115.5T808 1378q0-143 105.5-230.5T1184 1060q197 0 355 114z"},"children":[]}]};exports.uFE4E5=uFE4E5;var uFE4E6={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2503 1767q3 9 4 17.5t1 18.5q0 27-16 57.5T2330.5 2013 2002 2202t-417 67q-146 0-307.5-22t-255.5-22q-131 0-256.5 32.5t-218 81.5-130.5 82.5-84 33.5q-44 0-76.5-29.5T220 2353L93 1078q0-4-1-14 3-31 12.5-49.5t43-63T247 850t157-101.5T613.5 675 884 646q135 0 250 8t218 8q231 0 350-57.5T1884 484t86.5-67.5 33.5-4.5q41 0 69 22.5t39 57.5zm-107 34l-34-109q-191 152-376.5 219.5T1549 1979q-72 0-130-3.5t-145-10.5l-120-10q-60-4-129-4-173 0-323.5 45.5t-253.5 115T320 2215l14 127q162-123 334.5-177t353.5-54q95 0 256.5 22t306.5 22q250 0 438.5-83t372.5-271zM305 2070q140-114 325-175.5t395-61.5q96 0 256.5 14.5T1555 1862q239 0 412-68.5t358-223.5l-39-125q-162 145-344 213.5t-450 68.5q-81 0-143-3.5t-118-8.5l-103-8q-50-4-113-4-211 0-401 74t-318 190zm1910-859q-150 143-313 210t-397 67q-65 0-132.5-4t-139.5-9l25 125q62 4 119 7t112 3q259 0 431-70t328-221zm-70-228q-162 146-331.5 209t-440.5 63q-44 0-89.5-1t-93.5-3l21 105h9q4 0 9 1 76 5 144.5 9t131.5 4q231 0 380.5-70t289.5-217zm-915-211l-131-5 24 127q115 9 219 9 253 0 413-66t281-210l-32-102q-129 129-272.5 189.5T1352 775q-59 0-122-3zm847-13q-130 131-302 197t-430 66q-50 0-99.5-2t-100.5-5l23 116q58 4 111 5t100 1q265 0 419.5-64T2107 857zM393 1512l19 8q5 2 7.5 6t3.5 7l4 30q0 5 3 5t6-4l19-20q4-6 13-6h3l29 6q5 0 5-4l-1-1v-2l-14-26q-4-6-4-10 0-2 1-4l17-31q0-4-5-4l-29 5h-3q-10 0-14-4l-19-21-5-2q-4 0-4 5l-3 28q0 10-10 15l-26 12q-3 0-3 5 0 3 3 5zm596-178q3-3 3-4 0-4-6-4h-29q-10 0-15-8l-16-24q-2-2-4-2-4 0-4 4l-8 26q-2 4-5 7.5t-8 4.5l-27 8q-6 3-6 5 2 2 3 4l23 16q3 2 6 6.5t3 8.5l-3 29q0 5 4 5 3 0 4-1l23-16q5-5 11-5 4 0 6 2l27 11h2q4 0 4-3v-3l-9-28q0-2-1-6 0-7 4-11zm-740 76q-3 3-3 4 0 4 6 4l27 5q13 4 14 11l11 28q0 4 4 4 2 0 4-4l14-26q5-9 14-9l30-1q5 0 5-4 0-2-2-4l-21-22q-4-4-4-14v-3l8-27v-3q0-2-4-2h-3l-26 12q-3 0-7 1-7 0-11-3l-24-15h-2l-1-1q-4 0-4 6l4 28q0 10-7 17zm122-232q3 2 6.5 6.5t4.5 8.5l4 29q0 5 3 5 2 0 4-2l21-24q4-4 12-4h3l28 6q7 0 7-4l-1-1v-2l-15-26q-3-3-3-8t3-10l15-27q0-5-7-5l-29 6h-2q-9 0-13-6l-20-19-4-2q-5 0-5 5l-2 27q0 5-3.5 9t-6.5 5l-26 14q-4 0-4 5 0 3 4 3zm455 300q0-3-4-3t-4 4l-6 28q-2 10-12 12l-27 10q-5 2-5 4 0 4 3 5l25 14q8 6 8 15l1 30q0 6 3 6l4-3 22-19q4-4 13-4h4l28 9h2q4 0 4-2v-3l-11-28-1-6q0-4 2-10l17-23q0-2 1-4 0-5-5-5l-29 3q-9 0-15-8zm74-473q-5 0-8.5-2.5T885 997l-14-25q-2-2-5-2t-3 2l-11 28q-2 4-5 7.5t-7 3.5l-29 7q-4 0-4 4 0 3 3 4l21 18q4 2 5.5 6t1.5 9l-4 29q0 5 4 5 3 0 4-1l24-17q2 0 8-1 7 0 10 1l26 11q0 2 4 2 2 0 2-3v-3l-8-29q0-2-1-4 0-3 1.5-6.5t3.5-6.5l19-20q3 0 3-4t-5-4zM694 766q-2-3-5-3-4 0-4 4l-6 29q0 3-3 7t-8 5l-27 11q-4 0-4 4 0 3 4 4l25 14q8 6 8 14l1 30q0 5 3 5 2 0 4-2l22-20 5-3q3 0 6-1 4 2 5 2l28 8h3q4 0 4-4v-3l-13-27q0-2-1-6 0-6 3-11l16-23q2 0 2-4 0-3-5-3l-32 1q-10 0-14-6zm-191 582q0 5 4 5 2 0 4-2l22-21q9-4 12-4l32 10h2q4 0 4-3 0-2-1-4l-12-28q-2 0-2-7 0-2 1-5l2-4 17-23q0-2 1-5 0-2-6-2l-28 2q-5 0-9-1.5t-6-4.5l-18-22q-3-3-6-3-2 0-2 4l-7 27q-3 10-11 13l-28 11q-2 0-2 4 0 3 2 4l25 15q8 6 8 14zm-89 392l-14-13q-4-3-4-13v-3l7-27v-2q0-5-4-5h-2l-1 1-26 12q-5 3-10 3-4 0-7-3l-24-15h-3q-4 0-4 4v2l4 27v3q0 8-6 14l-21 20q-3 3-3 4 0 3 5 3l28 4 9 4q4 3 6 7l11 26q0 4 4 4 3 0 4-3l14-27q0-3 4.5-5.5t7.5-2.5l30-3q4 0 4-4 0-3-1-4zm161-677l3 1q8 6 8 15l-1 29q0 6 4 6 3 0 4-2l22-19 5-2q3 0 7-1h4l28 10 4 1q3 0 3-4v-3l-11-27q-2 0-2-5 0-7 4-11l17-24 1-4q0-3-4-3h-31q-10 0-14-6l-16-24q-4-2-5-2-4 0-4 4l-7 27q-2 10-12 12l-27 10q-4 0-4 4 0 3 2 4zm509 107q0-4-6-4l-29-3q-10 0-15-10l-13-24q-3-3-5-3-4 0-4 4l-11 25q-2 10-12 12l-29 6q-5 0-5 2 0 3 4 4l20 20q2 2 4.5 5.5t2.5 6.5v3l-4 28q0 7 3 7t4-1l25-17q2 0 8-1 5 0 8 1l30 14q3 0 3-4v-3l-7-28v-3q0-7 4-13zm-461 234l-2 2q-2 2-2 4l30 16q3 0 6 5l4 7 3 30q0 6 4 6l4-3 19-20q6-6 14-6h2l29 7h3q3 0 3-3v-4l-14-25-1-6q0-7 2-11l14-25v-4q0-3-4-3l-29 4h-3q-4 0-7.5-1t-5.5-4l-19-22q-2 0-5-1-2 0-2 4l-6 27q-2 10-9 15zm13 212q-5-3-5-9 0-4 3-7l14-26 1-3q0-3-4-3l-30 6q-4 0-9-1t-7-5l-21-20-4-1q-4 0-4 4l-3 28q0 9-10 14l-26 14q-2 0-2 4 0 3 2 4l28 11q8 6 9 14l5 28q0 6 4 6l4-3 19-22q2-2 5.5-3.5t8.5-1.5h2l29 4h3q3 0 3-1 0-3-2-5zm-387-611l-11-6-2-2q-5 0-5 7l5 27q0 10-7 17l-24 18v2l-1 2q0 4 4 4l28 5q8 3 13 11l11 28q0 4 4 4 3 0 4-3l14-26q2-4 6.5-7t7.5-3h30q5 0 5-4l-2-4-21-22q-4-3-4-13v-3l8-28 2-2q0-4-5-4-2 0-4 1l-26 12q0 2-7 2-2 0-4-1l-5-2zm151-97q-3 0-3 6 0 2 3 2l26 13q4 0 7.5 4.5t3.5 8.5l4 29q0 6 3 6 2-2 4-3l20-22q6-6 13-6h2l29 6h3q4 0 4-3t-1-4l-15-26q-2 0-2-8 0-6 2-8l13-25q2 0 2-4 0-3-4-3h-2l-29 6h-2q-10 0-14-6l-19-20q-3-3-4-3-4 0-4 5l-3 28q-2 10-11 15zm334 260q0 4-4 7.5t-7 5.5l-29 8q-4 2-4 4t4 4l24 15q8 8 8 15v30q0 6 3 6 2 0 4-1l23-20q2-4 10-4 4 0 5 2l29 9q0 2 2 2h1q2 0 2-5v-2l-11-28q0-2-1-4 0-8 4-12l18-23q0-2 1-4 0-3-4-3h-30q-10 0-15-7l-16-23h-2q-2-3-4-3-3 0-3 4zm341 296q-2-2-4-2-4 0-4 4l-8 27q0 3-4.5 6.5t-7.5 4.5l-29 8-6 4q0 2 4 4l24 17q7 5 7 15l-2 29q0 4 2 5 4 0 5-1l23-17 5-3q3 0 6-1 2 0 3 1t3 1l29 12h1q3 0 3-3v-4l-9-27q0-2-1-4 0-9 4-13l19-22q2 0 2-4t-4-4h-31q-9 0-15-8zM942 762l-1-5q-2-2-4-2-3 0-4 4l-12 24q-2 5-6 7.5t-8 3.5l-29 5q-4 0-4 4l3 4 22 19q2 2 3.5 7t1.5 9l-5 29v3q0 3 2 3 3 0 4-2l25-15 4-1h4q6 0 9 1l26 14 4 1q2 0 2-3v-2l-6-29q0-5 1-9.5t4-6.5l21-21q2-2 2-4 0-3-4-4l-30-3q-3 0-7.5-3t-6.5-7z"},"children":[]}]};exports.uFE4E6=uFE4E6;var uFE4E7={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2503 1767q3 9 4 17.5t1 18.5q0 27-16 57.5T2330.5 2013 2002 2202t-417 67q-147 0-310.5-22t-253.5-22q-193 0-350.5 61T446 2401t-112 54q-46 0-78-29t-36-73L93 1081q0-12-1-17 3-31 12.5-49.5t43-63T247 850t157-101.5T613.5 675 884 646q135 0 250 8t218 8q231 0 350-57.5T1884 484t86.5-67.5 33.5-4.5q41 0 69.5 22.5T2112 492zm-130-40l-111-361v557q29-21 55-45.5t56-54.5v-96zm-189-618l-111-361v1301q14-9 26-15l23-13q14-7 29-16t33-23v-873zm-189-574q-22 20-46.5 45t-64.5 50v1491q28-8 55.5-17t55.5-20V535zm-189 144l-18 8q-14 6-31 14l-34 16q-18 8-28 12v816q24 117 51.5 236.5T1806 2019V679zm-187 1475l48-3q25 0 49-2.5t40-4.5q-79-288-162-688.5T1464 772q-28 0-55.5 1.5T1352 775q-48 0-106-3l-231-10q-55-2-97-2-30 0-64.5 1t-57.5 3q33 319 85.5 705T984 2112l18-1h19q85 0 251 22t310 22q14 0 37-1zm-723-86H305l13 111h312q68-23 134-39.5t141-21.5zm-563 274q5-3 40-30t86-54H325zm-34-352h583l-19-111H288zm-20-190h572l-18-111H268zm543-189l-17-110H249l11 110h562zm-581-189h553l-13-111H230zm-19-189h548l-13-111H211zm103-300q-26 21-41 36t-34 39l-30 36h527l-13-111H325zm393-161q-43 2-138.5 30.5T448 855h278zm897-21q-19 4-37 7l-36 6 32 178q18 100 41 218V751z"},"children":[]}]};exports.uFE4E7=uFE4E7;var uFE4E8={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2503 1767q3 9 4 17.5t1 18.5q0 29-17 59t-161.5 151.5T2002 2202t-417 67q-94 0-169-6.5t-147-15.5l-121-15q-58-7-127-7-138 0-262 32t-218.5 84-128 83-78.5 31q-48 0-78.5-29.5T220 2353L93 1078l-1-15q0-27 12-48l22-35q43-66 145.5-148.5t261-134T884 646q135 0 250 8t218 8q228 0 349-58t182.5-120.5 86-67 34.5-4.5q39 0 68.5 22.5T2112 492zm-107 34l-56-179q-13-40-35-110.5t-29-93.5l-21-71q-2-7-3-13-113 142-287 224t-359 82q-168 0-332-16.5t-252-16.5q-205 0-397 78.5T290 1907l44 435 48-34q132-94 295-145.5t345-51.5q94 0 253 22t310 22q250 0 437.5-82.5T2396 1801zm-445-300q28-14 55.5-31.5t55.5-38.5V930q-28 27-55.5 50.5T1951 1025v476zm-189 63q28-5 55.5-12t55.5-18v-459q-27 17-55 30t-56 24v435zM436 1715q24-16 51.5-30.5T546 1655v-421q-31 14-58.5 29t-51.5 31v421zm189-93q52-21 111-36v-411q-29 5-57 12.5t-54 16.5v418zm948-41q28 0 56-2l53-4v-422q-26 8-53 13t-56 9v406zm-758-14l54-8q27-4 56-7v-395q-56 0-110 6v404zm567 7l111 5v-397q-26 2-53.5 3t-57.5 1v388zm-378-26q27 0 54.5 1t56.5 3v-381q-27-2-55-5.5t-56-3.5v386zm189 11q27 0 55.5 3.5t55.5 4.5v-384l-54-2q-28 0-57-3v381zm-911 272l33-28q19-16 42-33v-419q-43 34-70 63l-41 43v18l35 350zm1858-465q9-8 43.5-45t52.5-43l-96-310v398z"},"children":[]}]};exports.uFE4E8=uFE4E8;var uFE4E9={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2503 1768q5 18 5 34 0 33-17.5 62T2331 2013.5t-326.5 188T1585 2269q-147 0-315-22t-249-22q-132 0-255 32t-216.5 81.5-133 84T333 2457t-76.5-30.5T220 2354L93 1079q0-4-1-14 3-31 12.5-49.5t43-63T247 851t157-101.5T613.5 676 884 647q135 0 250 7.5t218 7.5q232 0 351.5-57.5t181-120 85.5-67 34-4.5q41 0 69 23t39 58zm-929-825q18 100 41 217V751q-20 5-38 8.5t-35 5.5zM718 772q-16 2-27.5 4t-22.5 6l57 56zm-252 74l293 294-21-179-157-159q-29 11-57.5 20.5T471 843zm-72 38l-20 12q-17 10-40 28t-31 27l496 496-25-182zm450 877l-28-186-567-569q-12 13-24 29.5t-20 32.5l6 60zm-499 573q13-11 36.5-27.5T440 2269l-126-126 17 176zm166-103q25-12 52.5-24.5T622 2183l-339-338 18 176zm193-75l29-8 72-16 29-5-581-580 18 177zm195-73l-35-192-641-641 18 175zm857 62q-76-277-155-650.5T1464 772q-26 0-54.5 2t-57.5 2q-99 0-205.5-7.5T918 761q-30 0-61.5 1.5T796 764q0 11 15 142t18 159l20 173q27 227 63 461t72 414l18-1h19q84 0 255.5 22t305.5 22q44 0 85.5-2.5t81.5-7.5zm50-1465l-52 24q-16 8-31.5 14.5T1695 729v817q24 117 51.5 236t59.5 238V680zm189-144q-12 11-47.5 43.5T1884 629v1492q28-7 55.5-16.5t55.5-20.5V536zm189 574l-111-363v1302q22-12 50.5-27t60.5-39v-873zm189 618l-111-361v557q20-14 49-40.5t62-59.5v-96z"},"children":[]}]};exports.uFE4E9=uFE4E9;var uFE4EA={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2503 1768q5 18 5 35-2 32-19.5 63.5t-160.5 150-326.5 185T1585 2268q-147 0-315-22t-249-22q-132 0-255 32t-216.5 81.5-133 84T333 2456t-76.5-30.5T220 2355L93 1078q0-4-1-13 3-32 13-51t44-64.5T247.5 849 402 749t209.5-74T884 646q135 0 250 8.5t218 8.5q170 0 270.5-30t177-82.5T1915 455t89-43q39 0 68.5 23.5T2112 493zm-1207 368q6 0 14 1-20-57-33-116t-23-119l-21-120q-10-60-23-119l-26-110q-5-14-16-14l-5 1q-9 0-18-2l-127-10q-62-5-126-5-204 0-403 87.5T282 1717t-8 28l5 62 26-31q21-26 173-92.5t315-85.5l-90 73q-85 68-192 208t-191 333l13 130q45-35 84-61t84-46q-4-2-5.5-8t-1.5-12q0-14 4-27l7-24q4-10 17.5-48.5T542 2066l10-18q84-163 204.5-280.5T1012 1597l44 3 21 94q-22 13-70 33.5t-152 123T670 2122l-15 29q-7 14-18 27l44-16q22-8 45-11 73-145 174.5-245.5T1092 1770l28 134q36 172 39 186.5t11 29.5q29 2 58 7t56 7zm72-783q209 0 350-40t243.5-104 198.5-175l-17-58q-15 0-27 17.5t-68 66-211 126.5l38-36q69-70 118.5-159.5T2077 802l7-19-70-229-4 17q-22 77-85.5 238.5T1769 1075t-199 182l-61 6q-30 3-61 5l-19-78q102-52 232-183.5T1851 713l16-42q8-21 15-41-14 11-29 20l-35 22q-55 136-165.5 259T1412 1126q-28-133-52-225t-26-126l-50-1h-51q6 29 11.5 59.5T1258 894l52 230q26 115 58 229zm858 599q30-20 79.5-65t90.5-86l-8-27q-14 16-78.5 27.5T2193 1813q-149 0-334.5-67t-287.5-67h-15l-15-56q3 0 11-1 104-10 210-41l100 33q77 26 156.5 42t151.5 16q77 0 102-13t41.5-14.5 31.5-7.5l-13-47-7-2q-4 0-8-1-12 0-24 4l-26 10q-13 5-24.5 10t-21.5 5q-11 2-22 2h-22q-79 0-168-18.5t-162-47.5q82-31 140-69t146-102 88-99q0-8-4-19.5t-9-29.5q-54 40-112 98t-191.5 126-316.5 90q-83 10-167 10 4 18 9 35l10 35q19 70 63 217t56 209 31 102l48-1q26 0 52-2-28-78-47-161.5t-44-167.5l12 2q6 2 14 2 100 10 268.5 68t281.5 58q20 0 31-1h20zM259 1516q12-14 28-24l28-16q136-73 276-115t297-42q54 0 108.5 3.5T1107 1333l19 1q-15-70-60-235.5T1000 763q-48-3-93-3 11 59 19 120.5t21 121.5l-13-9-71-47q-69-48-146-82.5T551 811q-40 12-98.5 41.5T353 909q79 0 217.5 32.5T827 1080t148 158q-26-2-51-3t-51-1q-38 0-74 3-92-111-246.5-147.5T327 1053q-36 0-69.5 11.5T215 1076q-6 0-10-4l10 87q25-10 52-17t55-7q48 0 97 9l95 17q51 10 100.5 33.5T711 1246q-106 21-204.5 57.5T309 1393l-20 12q-17 10-26.5 24.5T253 1464q0 14 2 27z"},"children":[]}]};exports.uFE4EA=uFE4EA;var uFE4EB={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2503 1768q3 9 4 18.5t1 17.5q0 28-16 57t-160 151.5-325.5 189.5-421.5 67q-89 0-162-6t-151-16l-123-15q-59-7-128-7-133 0-256 32.5t-216.5 82T416 2423t-82 34q-44 0-77-30.5t-37-72.5L93 1079q0-4-1-13 0-67 116.5-181T499 709t385-62q134 0 249.5 8.5T1352 664q172 0 271.5-30t175.5-82 114.5-95.5T2004 413q41 0 69 23t39 58zm-1137-28q111 10 213 10 238 0 398-76t303-239l-187-638q-175 175-328.5 240.5T1374 1103q-165 0-274.5-14T899 1075q-197 0-376 79.5T226 1377l71 648 43-40q122-116 306.5-192.5T1037 1716q22 0 44 1t45 3zm-176-130l2 10q0 5 1 7 0 4-5 4t-8-2-6-2q-6 0-9 1l-5 3q-3 2-6 3t-10 1q-3 0-8.5-2t-9.5-2q-2 0-9.5 3.5t-12.5 3.5q-3-3-6.5-11t-3.5-23q0-2 3.5-3.5t6.5-1.5l-1-3v-3q0-4 1.5-7.5t2.5-3.5q0-2-1-3.5t-1-3.5q0-3 1-3t5-1q-9-18-12.5-41t-8.5-44q-13-5-20-12t-7-21q0-8 4-8t14-5l-4-16q-17 0-33 7 5 23 10.5 45t8.5 45l1 7q3 17 3 34 0 40-38 67.5t-87 27.5q-90 0-141.5-39T731 1487l-9-42q-20-7-41-7l2 13q0 7 7 7 8 0 14.5 5t6.5 20q0 8-5 12t-13 7q3 20 8.5 40t5.5 38q0 6 4 10.5t4 7.5l2 2 7 15q2 4 3 4h9q2 0 5 11.5t3 22.5q0 4-2 4-5 0-9.5-2.5t-9.5-4.5q-8 0-14 3.5t-12 3.5q-7 0-12-3t-11-3q-11 0-13.5 3.5t-9.5 3.5q-5 0-6-12l-4-23q7 0 11-4l-1-9q0-3 2.5-4.5t2.5-3.5l-1-7q0-4 4-4-5-15-7-31t-5-33q-4 0-6 2t-5 2q6 11 6 18v5q0 4-4 4-2 0-12.5-13t-10.5-22q0-13 10-16t16-9q-2-9-5-16t-13-7-18.5-8-8.5-24q0-6 10.5-15t19.5-9q0-10-3.5-22t-3.5-21q0-7-8-11.5t-8-26.5q0-5 3-6l6-2q-6-5-10.5-7t-4.5-9q0-4 3-8t8-5q8 0 10.5-2.5t3.5-5.5l1-5q0-2 6-2 5 2 7 4l6 6q0 2 5 2 10 0 16.5 5t6.5 11q0 5-3.5 9.5t-3.5 6.5q8 0 10 3t2 9q0 5-2.5 7t-2.5 5l1 6q0 2-2 2-3 0-5 2 5 8 7.5 21t5.5 25q9 0 19 1.5t19 1.5q-5-19-8.5-42t-3.5-41q0-5 13-8.5t30-4.5h18q-15-12-11.5-17t-30-12-33.5-30q0-2 1-4-5-5-8-11t-3-15q0-23 18-30.5t39-7.5l16 1q16-16 44-16h10q5 0 9 2l-1-4q0-4-2-5l-4-3q-3 0-5-3.5t-2-12.5q0-5 7-9t15-4q10 0 17.5 5t7.5 17q0 7-3 7h-2q-2 0-2 4v5l1 2q5 0 10-1.5t10-1.5q12 0 24.5 3t23.5 12q0-3 10-4h16q23 0 42 16t19 34q0 4-1 8l-3 7v6q0 2-2 4.5t-10 7.5l-13 10-13 8q-5 3-6 3 0 5 2 8.5t2 9.5q0 5-11 7h20q12 0 30-1 23 0 33 43t11 47q8-3 20-4t14-3q-2-11-6-23t-6-23q-4-3-10.5-9.5t-6.5-15.5q0-5 4-5 3 0 6-2-5-5-9.5-8t-4.5-11q0-10 10-10 6 0 8.5-2.5t3.5-5.5l1-5q0-2 4-2 8 0 9 5.5t6 7.5q8 0 17 3t9 14q0 5-3 7t-3 4q13 4 13 18 0 3-2 4t-2 3q2 4 2 6t-3 2q0 2 4.5 18.5t7.5 35.5q21 0 30.5 12.5t9.5 20.5q0 23-26 23l4 20 29 16q8 5 8 19 0 5-3 7.5t-5 7.5q-2 0-2 4t-1 4q-4 0-7-6.5t-3-9.5q0-6 2-9-3 0-5.5-2.5t-5.5-2.5q0 8 3 18l4 19q0 10 2.5 17.5t4.5 9.5q9 0 13 14t14 14q4 8 5 13zm-483-374q5-2 12-3.5t15-1.5h14q-2-3-3.5-12.5t-4.5-9.5q-35 0-35 23 0 3 2 4zm94-20q5-2 10-2h8q0-8-3-13.5t-12-5.5q-20 0-27 7t-7 19q0 4 3 4 4 0 13-4zm102 7q0-18-14.5-23t-29.5-6l-4 2q-3 0-7 1 0 2 2 8t2 9q14 0 25.5 3.5t25.5 5.5zm26 2l9-1q8 0 17 2l16 5q0-11-10-18.5t-23-7.5h-15q3 5 4.5 9.5t1.5 10.5z"},"children":[]}]};exports.uFE4EB=uFE4EB;var uFE4EC={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2503 1768q5 18 5 35-2 34-20 64t-158 147.5-324.5 185.5-420.5 68q-162 0-328-22t-236-22q-132 0-255 32t-216.5 81.5-133 84T333 2456t-76.5-30.5T220 2355L93 1079q0-4-1-14 3-32 13-51t43-63 97.5-99 155-100.5T611 677t273-29q135 0 250 7.5t218 7.5q249 0 372.5-67.5t175-125.5 104.5-58q39 0 68.5 23.5T2112 493zM2004 526q-117 131-279.5 190.5T1353 776q-57 0-112-3l-114-5q-76-4-131-6t-117-2q-222 0-404.5 82T205 1067l35 340q120-132 295.5-210t380.5-78q86 0 228 14.5t249 14.5q237 0 384.5-64.5T2084 852q8-9 17-11zm247 868q-28 29-55.5 54t-55.5 48v515q12-7 26-17l59-42 26-19v-539zm-300 706q28-11 54.5-20.5t56.5-24.5v-503q-56 35-111 57v491zm-78-462q-58 19-111 26v481q13 0 43-5.5t68-16.5v-485zm-380 40q-26-2-54-3t-57-3v473l89 6q17 0 22 2v-475zm-300 446q25 4 55 7.5t56 5.5v-471l-111-9v467zm489-449q-26 2-53.5 3t-55.5 1v476l109-3v-477zm-567-25q-25 0-48-2t-45-2q-5 0-9 1t-9 1v464q30 0 58 1l53 3v-466zm-190 2q-29 2-56.5 6t-53.5 10v462q23-3 53-6t57-8v-464zm-189 35q-29 8-57 18.5t-54 21.5v455q35-11 59.5-19.5T736 2148v-461zm-190 79q-29 20-58 35.5t-52 32.5v437l55-29q28-15 55-28v-448zm-189 130q-15 14-32 31.5t-32 17.5l40 397 24-17v-429zm1973-30q16-16 32.5-31t33.5-34l-66-215v280z"},"children":[]}]};exports.uFE4EC=uFE4EC;var uFE4ED={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2503 1767q3 9 4 17.5t1 18.5q0 27-16 57.5T2330.5 2013 2002 2202t-417 67q-147 0-310.5-22t-253.5-22q-132 0-258 33t-217.5 82-129 82-82.5 33q-46 0-78-29t-36-73L93 1078q0-4-1-14 3-31 12.5-49.5t43-63T247 850t157-101.5T613.5 675 884 646q135 0 250 8t218 8q231 0 350-57.5T1884 484t86.5-67.5 33.5-4.5q41 0 69.5 22.5T2112 492zM631 1288q3 0 10 1 14 0 14-12 0-3-1-7.5t-3-9.5l-58-101q-7-14-7-29 0-18 8-29l48-76q3-3 3-10 0-11-12-11l-110 16q-12 0-23.5-4t-18.5-12l-51-52q-6-6-12-6-8 0-13 13l-24 72q-5 11-16.5 24t-23.5 18l-92 36q-15 7-15 16 0 6 8 11l76 42q12 8 18 22.5t6 28.5l-9 123q0 23 12 23 8 0 17-9l91-91q21-19 50-19 9 0 13 1zm281 50q3 0 3-5 0-3-4-6l-30-9q-10-3-13-14l-8-31q-2-5-4-5-3 0-4 3l-21 26q-7 10-16 10l-34-2q-7 0-7 5 0 2 1 4l19 26q3 6 3 12 0 5-1 7l-14 33-1 4q0 3 4 3h3l32-11q2-2 6-2 8 0 14 6l24 20q3 3 4 3 5 0 5-7l1-34q2-13 11-18zm109-238l1-4q0-4-7-4-8 0-16 2.5t-18 2.5-14-5l-20-21q-2-3-6-3-3 0-3 5l-5 30-4 7q-3 4-8 6l-29 13q-4 0-4 5 0 2 6 6l25 11q11 4 11 13l1 32q0 5 5 5l4-2 27-28 6-1 8 1q25 5 29 5l5 1q4 0 4-3l-1-4-14-28q-3-3-3-8 0-2 1-5l2-4zM848 968q0 2-1.5 2t-1.5 2q0 3 6 3l30-3q9 0 16 7l15 24 4 2q2 0 5-4l9-27q5-10 12-12l29-9q4 0 4-4 0-3-2-4l-25-14q-7-3-7-15l1-26q0-4-4-4-2 0-4 2l-23 17q-4 4-12 4-2 0-5-1l-28-8h-3q-3 0-3 5l11 27v4q0 2-1.5 4.5T866 945zm-81-105l22-18q3-3 3-4 0-3-4-3l-29-1q-3 0-6.5-2.5T747 827l-11-20q-3-3-5-3l-4 3-13 22q-6 8-14 11l-27 4q-6 0-6 4l21 19q2 2 3.5 5t1.5 6l-1 5-7 24-2 2q0 3 3 3t4-1l33-16q2 0 4-1 2 0 4 1t3 1q14 5 19.5 8.5t8.5 3.5q4 0 4-3l-2-12q-2-10-2-15 0-11 5-15z"},"children":[]}]};exports.uFE4ED=uFE4ED;var uFE4EE={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2502 1768q2 8 3.5 17t1.5 17q-2 33-18.5 62.5T2329 2014t-327 187-418 67q-147 0-315-22t-250-22q-198 0-355 62t-222 116-110 54-77-30.5-36-71.5L92 1078q0-29 5.5-49t44-71T249 848t160-102.5 207.5-71T882 647q135 0 250.5 8t218.5 8q182 0 281.5-32t174-85 109.5-93 87-40q40 0 69 22.5t39 57.5zm-107 33L2003 526q-131 131-274 190t-378 59q-103 0-217-7t-252-7q-226 0-399.5 74T204 1067l128 1276q119-88 205-127t206-71.5 276-32.5q94 0 253.5 21t311.5 21q260 0 447.5-86t363.5-267zm-817.5-95.5Q1466 1802 1315 1802q-205 0-351.5-115T817 1384q0-143 103.5-230t263.5-87q210 0 357.5 119.5T1689 1472q0 137-111.5 233.5zM747 1993l4 8q0 5-20.5 22.5T701 2041q-4 0-12-4l-7-7q-49-39-95-86.5t-91-87.5l-19-16q-15-12-29-26t-14-21q0-2 1-4l2-3q3-6 21-19.5t27-13.5q6 0 9 3l7 8q51 45 106.5 95.5T710 1960zm157-115l4 7q0 7-22.5 23t-29.5 16q-11-3-67-56l-94-88-43-41-17-15q-15-11-29-25t-14-21q0-10 21-25t30-15q8 0 80 70t144 135zm-189-852q4-3 10-3 8 0 32.5 11.5T782 1053q0 5-3 10l-82 141q-39 66-78 131l-4 8-8 6q-3 0-7 1-4 0-5-1-3 0-27-10.5t-24-15.5l1-8q25-42 49-84.5t50-84.5zm-164 82l31-53q16-27 32-55l7-11q3-3 11-3l10 2q16 5 31 13t15 15q0 5-3 10l-5 9q-35 56-74 125.5T525 1298l-4 7q-2 5-6.5 6t-8.5 1-29.5-9.5T449 1286l2-10q26-40 50.5-83t49.5-85zm1116-231q20-17 30-17 12 0 85.5 73.5T1959 1100l4 6q0 6-21.5 23t-30.5 17q-8 0-9-3l-7-6q-59-59-153.5-142t-94.5-97q0-4 20-21zM426 1268q0 3-4.5 5t-9.5 2q-4 0-5-1l-26-10q-9-3-16.5-7.5t-8.5-9.5l2-8 163-278 7-11q2 0 3-1.5t3-1.5l11 2q22 6 35 14t13 15q0 5-2 10l-60 103q-26 45-54 91zm704 255q13-3 25-7.5t23-9.5l-56-397q-12 0-25 4l-24 6zm-112 7q12 2 25 2h26l-55-391q-13 5-24.5 11.5T967 1167zm215-63q11-13 21-26.5t23-27.5l-44-305q-23-3-51-3zm498 348q-23-9-28-18l1-8 40-70 19-32q3-5 13-19.5t13-14.5q2 0 7.5 1t12.5 3l13 4q6 3 10 6l11 5q8 6 8 11t-31.5 56-40.5 68-16 17q-9 0-32-9zm-1-966l-5-10q0-3 20-20.5t32-17.5q9 0 10.5 3t59 55 57.5 60q0 2-1 4.5t-3 4.5l-8 9q-9 7-22 14t-18 7-24.5-17-39.5-37l-22-22zM825 1935l4 8q0 6-19 22.5t-33 16.5q-2 0-5-1l-5-2-15-16q-23-22-62-54.5t-39-43.5q0-4 4-11l10-6q6-8 19-15t19-7 17 9 24 21l25 25q16 17 32.5 31.5T825 1935zm1205-187q9 4 9 9 0 8-34.5 65t-38.5 63l-4 6-8 7h-6q-53-18-57-26l2-8q2-3 13.5-24.5t26.5-46.5l27-45q12-20 17-20 4 0 19 5t23 9zm-205 104q-23-9-29-17l3-9 15-27q19-34 42-71t29-37 19 5 22 9l10 4q9 5 9 11 0 7-31.5 56.5t-38 67-21.5 17.5q-6 0-29-9zm-91-800q-7 7-20 14.5t-18 7.5q-9 0-56-46t-67-64l-4-8q0-4 18.5-21.5T1621 917q2 0 5 1l4 2 7 7q15 13 34.5 32.5t45.5 41.5l14 12q7 7 12 13t5 9-5 8zm-835 422q24 24 56 37l-43-294q-12 17-23 35t-16 38zm929-272q-3 0-16-12l-30-28q-17-16-33.5-32.5T1722 1104l-4-7q0-6 18.5-23t33.5-17q8 0 10.5 4t7.5 6q3 3 49.5 44t46.5 53q0 2-1 4l-2 4q-2 5-20.5 18.5T1833 1204q-4 0-5-2zM572 1698l8 7q23 24 47.5 45.5T675 1795l5 7q0 7-20 24t-34 17q-4 0-8.5-4.5t-6.5-7.5l-22-19-32-29q-12-11-27.5-27t-15.5-21 3-8l6-7q7-7 19.5-16t20.5-9q5 0 9 3zm1469-646l-2 4q-2 6-22 18.5t-28 12.5q-5 0-7.5-3t-7.5-6l-96-91-2-7q0-6 19-22.5t34-16.5q4 0 58 46.5t54 61.5v3zm-709 315q11-5 22.5-9.5t25.5-8.5l-30-219q-14-5-27-8t-27-5zm471 260l1-7q15-29 30.5-54.5t32.5-54.5l7-11q4-3 8-3 8 0 33.5 11t25.5 19q0 3-3 9t-6 10l-35 63q-9 15-19.5 30t-15.5 15q-9 0-33.5-10t-25.5-17zm93 37l2-7 64-109 7-10 5-2q2 0 4-1 9 0 33 10.5t24 19.5q0 5-33.5 65.5T1955 1691q-8 0-31-9t-28-18zm96 30q14-26 31.5-53.5t31.5-54.5l7-11 6-2q2 0 5-1 5 0 30.5 11t25.5 19q0 4-4.5 12.5T2114 1633l-13 21q-15 23-28 49.5t-23 26.5q-13 0-36-11.5t-23-16.5zm-552-352q14 0 26 2t26 5l-23-169-27-14q-14-7-28-13zm116 29q15 8 29.5 18t27.5 24l-16-113q-24-39-61-70z"},"children":[]}]};exports.uFE4EE=uFE4EE;var uFE82C={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2222 384q46 0 79 33t33 79v1845q0 45-33.5 78t-78.5 33H377q-45 0-78-33t-33-78V496q0-45 33-78.5t78-33.5h1845zM563 2148q0 7 7 7h1459q8 0 8-7V689q0-7-8-7H570q-7 0-7 7v1459zm1322-1082q8 0 13 5t5 13v198q0 8-5 13t-13 5h-195l-31 218h144q7 0 12.5 5t5.5 13v198q0 8-5.5 12.5t-12.5 4.5h-177l-36 245q-2 14-15 14h-248q-6 0-10.5-5t-4.5-13l35-241h-200l-35 245q-2 14-16 14H849q-5 0-10.5-4.5T833 1992l34-241H714q-7 0-12-4.5t-5-12.5v-198q0-8 5-13t12-5h186l31-218H796q-8 0-12.5-5t-4.5-13v-198q0-8 4.5-13t12.5-5h168l30-214q2-5 6.5-9.5t10.5-4.5h247q5 0 10 4.5t5 11.5v4l-29 208h200l30-214q0-5 5-9.5t11-4.5h247q5 0 10 4.5t5 11.5v4l-29 208h162zm347-602l-10-1H377q-14 0-23.5 9.5T344 496v1845q0 8 2.5 13.5t6.5 10.5l154-155q-11-13-18-28.5t-7-33.5V689q0-36 26-62t62-26h1459q29 0 51 17zm-1021 836l-32 218h200l32-218h-200z"},"children":[]}]};exports.uFE82C=uFE82C;var uFE82E={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2222 383q47 0 79.5 33t32.5 78v1845q0 45-32.5 78t-79.5 33H377q-47 0-79-33t-32-78V494q0-45 32-78t79-33h1845zM563 2146q0 7 7 7h1459q8 0 8-7V687q0-7-8-7H570q-7 0-7 7v1459zM2232 462l-10-1H377q-14 0-23.5 9.5T344 494v1845q0 13 9 22l154-155q-11-11-18-27t-7-33V687q0-37 26-62.5t62-25.5h1459q29 0 51 17zm-690 1300q8 0 13 5.5t5 12.5v229q0 8-5 13t-13 5h-484q-8 0-13-5t-5-13v-229q0-7 5-12.5t13-5.5h93v-667l-125 37q-19 0-19-19V873q0-6 4.5-11t9.5-7l406-86q11 0 16 5t5 12v976h94z"},"children":[]}]};exports.uFE82E=uFE82E;var uFE82F={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2222 382q47 0 79.5 33t32.5 78v1845q0 45-32.5 78t-79.5 33H377q-47 0-79-33t-32-78V493q0-45 32-78t79-33h1845zM563 2145q0 7 7 7h1459q8 0 8-7V686q0-7-8-7H570q-7 0-7 7v1459zM2232 461l-10-1H377q-14 0-23.5 9.5T344 493v1845q0 14 9 23l154-154q-11-13-18-29t-7-33V686q0-36 26-62t62-26h1459q29 0 51 17zm-528 1247q8 0 13 5t5 13v226q0 7-5 13t-13 6H937q-8 0-13-6t-5-13v-236q0-15 29.5-28t150-101 198.5-179.5 78-169.5q0-58-42.5-97.5T1237 1101q-59 0-128 38.5t-96.5 64.5-41.5 26q-9-3-12-8l-111-181-2-4q0-2-1-4 0-8 6-14l20-20q80-80 199.5-143t237.5-63q148 0 273.5 107.5T1707 1167q0 82-36 165.5t-166 196-241 179.5h440z"},"children":[]}]};exports.uFE82F=uFE82F;var uFE830={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2222 382q47 0 79.5 33t32.5 78v1845q0 45-32.5 78t-79.5 33H377q-47 0-79-33t-32-78V493q0-45 32-78t79-33h1845zM563 2145q0 7 7 7h1459q8 0 8-7V686q0-8-8-8H570q-7 0-7 8v1459zM2232 461q-3 0-10-1H377q-14 0-23.5 9.5T344 493v1845q0 12 9 23l154-156q-11-11-18-27t-7-33V686q0-35 25.5-62t62.5-27h1459q28 0 51 18zm-681 931q90 50 136.5 125.5T1734 1683q0 162-130 265.5T1290 2052q-101 0-203.5-42.5t-181-107.5-78.5-84q0-9 3-11l114-166q5-7 12-7 13 0 40 24.5t107 65 149 40.5q58 0 101-41t43-94q0-37-30.5-69t-78-53-66-24-18.5-19v-145q0-15 22.5-20.5t72-31 79.5-59.5 30-71q0-51-38.5-90.5T1278 1007q-55 0-119.5 33t-88 53-36.5 20q-4 0-7-2t-5-4L908 941q-3-3-3-10 0-19 58.5-64t155.5-79.5 193-34.5q161 0 282 110t121 245q0 78-42.5 151T1551 1392z"},"children":[]}]};exports.uFE830=uFE830;var uFE831={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2222 382q46 0 79 33t33 79v1845q0 45-33.5 78t-78.5 33H377q-45 0-78-33t-33-78V494q0-45 33-78.5t78-33.5h1845zM563 2146l1 3q0 4 6 4h1459q8 0 8-7V687q0-8-8-8H570q-7 0-7 8v1459zM2232 462q-2 0-5-1t-5-1H377q-14 0-23.5 10t-9.5 24v1845q0 7 2.5 13t6.5 11l154-157q-11-11-18-26.5t-7-33.5V687q0-35 25.5-62t62.5-27h1459q28 0 51 18zm-442 1117q8 0 13 5t5 11v214q0 8-5 13t-13 5h-208v214q0 16-18 16h-264q-16 0-16-16v-214H796q-8 0-13-5t-5-13v-214l1-4q0-2 2-4l505-779v-1q0-2 4-4.5t10-2.5h264q8 0 13 5.5t5 11.5v762h208zm-697 0h191v-293z"},"children":[]}]};exports.uFE831=uFE831;var uFE832={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2222 383q47 0 79.5 33t32.5 78v1845q0 45-32.5 78t-79.5 33H377q-47 0-79-33t-32-78V494q0-45 32-78t79-33h1845zM563 2146q0 7 7 7h1459q8 0 8-7V687q0-8-8-8H570q-7 0-7 8v1459zm667-922q215 5 355 118.5t140 302.5q0 175-146.5 287.5T1264 2045q-98 0-204-34t-172-72l-39-22q-7-5-7-16l68-213q0-4 5-7.5t10-3.5q6 0 34 16.5t106 38.5 156 22q91 0 138.5-34.5t47.5-96.5-75.5-95.5T1112 1494q-33 0-63 2l-55 4q-25 2-43 4l-30 5q-21 0-21-19l62-698q0-6 4.5-11t12.5-5h691q7 0 12.5 5t5.5 13v218q0 6-5.5 11t-12.5 5h-422zm1002-762l-10-1H377q-14 0-23.5 9.5T344 494v1845q0 12 9 23l154-154q-11-13-18-29t-7-33V687q0-36 26-62t62-26h1459q29 0 51 17z"},"children":[]}]};exports.uFE832=uFE832;var uFE833={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2222 382q45 0 78.5 33t33.5 78v1845q0 46-33 79t-79 33H377q-45 0-78-33.5t-33-78.5V493q0-45 33-78t78-33h1845zM563 2145q0 7 7 7h1459q8 0 8-7V686q0-7-8-7H570q-7 0-7 7v1459zM2232 462q-6-2-10-2H377q-14 0-23.5 9.5T344 493v1845q0 6 2.5 12t6.5 11l154-156q-11-11-18-27t-7-33V686q0-36 26-62t62-26h1459q29 0 51 17zm-604 1483.5Q1490 2068 1278 2068q-233 0-364.5-137T782 1550q0-113 28.5-222.5T905 1098t160.5-213T1232 749l39-23q3-2 7-2 8 0 14 6l163 165q4 7 4 11 0 12-7 15 0 2-31.5 23.5t-110.5 99-136 176.5q25-4 50.5-6t53.5-2q210 0 349 121t139 306q0 184-138 306.5zM1140 1510q-54 52-54 129 0 76 54 128.5t138 52.5 138-52.5 54-128.5q0-77-54-129t-138-52-138 52z"},"children":[]}]};exports.uFE833=uFE833;var uFE834={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2222 381q45 0 78.5 33t33.5 78v1845q0 46-33 79t-79 33H377q-45 0-78-33.5t-33-78.5V492q0-45 33-78t78-33h1845zM563 2144q0 7 7 7h1459q8 0 8-7V685q0-7-8-7H570q-7 0-7 7v1459zM1784 841l-459 1201q-5 11-15 11h-306q-16 0-16-16 0-4 1-7l369-970H807q-17 0-17-16V834q0-16 17-16h960q7 0 12 4.5t5 18.5zm448-380q-6-2-10-2H377q-14 0-23.5 9.5T344 492v1845q0 8 2.5 13t6.5 10l154-156q-11-11-18-27t-7-33V685q0-36 26-62t62-26h1459q29 0 51 17z"},"children":[]}]};exports.uFE834=uFE834;var uFE835={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2222 383q47 0 79.5 33t32.5 78v1845q0 45-32.5 78t-79.5 33H377q-47 0-79-33t-32-78V494q0-45 32-78t79-33h1845zM563 2146q0 7 7 7h1459q8 0 8-7V687q0-7-8-7H570q-7 0-7 7v1459zM2232 462q-3 0-10-1H377q-14 0-23.5 9.5T344 494v1845q0 13 9 22l154-155q-11-11-18-27t-7-33V687q0-37 26-62.5t62-25.5h1459q29 0 51 17zm-639 895q72 55 111.5 132.5T1744 1662q0 172-129 287.5T1285 2065q-200 0-330-115.5T825 1662q0-95 40-172.5T977 1357q-51-48-78.5-111T871 1108q0-157 117.5-259.5T1285 746t296.5 102.5T1699 1108q0 75-28 138t-78 111zm-192.5-359q-46.5-43-115.5-43-70 0-116.5 43.5T1122 1108q0 62 43.5 107.5T1273 1261q76 0 125-42t49-111q0-67-46.5-110zM1155 1784.5q51 49.5 130 49.5 78 0 128.5-49.5T1464 1662q0-72-50-120.5t-129-48.5-130 48-51 121 51 122.5z"},"children":[]}]};exports.uFE835=uFE835;var uFE836={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2222 382q46 0 79 33t33 79v1845q0 45-33.5 78t-78.5 33H377q-45 0-78-33t-33-78V494q0-45 33-78.5t78-33.5h1845zM563 2146q0 7 7 7h1459q8 0 8-7V687q0-7-8-7H570q-7 0-7 7v1459zm612-55l-142-185q-4-3-4-9 0-13 9-15l39-21q38-19 126.5-90.5T1358 1606q-32 3-62 3-210 0-349-121t-139-306 138.5-306.5T1296 754q214 0 351 126.5t137 324.5q0 165-43.5 304.5t-155 282.5-241.5 224.5-155 81.5q-10 0-14-7zM2232 462q-3 0-10-1H377q-14 0-23.5 9.5T344 494v1845q0 13 9 22l154-155q-11-11-18-26.5t-7-33.5V687q0-37 26-62.5t62-25.5h1459q29 0 51 16zm-1073.5 590.5Q1104 1104 1104 1182q0 77 54 129t138 52 138-52 54-129q0-78-54.5-129.5T1296 1001t-137.5 51.5z"},"children":[]}]};exports.uFE836=uFE836;var uFE837={"viewBox":"0 0 2600 2760.837","children":[{"name":"path","attribs":{"d":"M2222 382q45 0 78.5 33t33.5 78v1845q0 46-33 79t-79 33H377q-45 0-78-33.5t-33-78.5V493q0-45 33-78t78-33h1845zM563 2145q0 2 2.5 5t4.5 3h1459q8 0 8-8V686q0-7-8-7H570q-7 0-7 7v1459zM2232 462q-6-2-10-2H377q-14 0-23.5 9.5T344 493v1845q0 14 9 23l154-156q-11-11-18-27t-7-33V686q0-36 26-62t62-26h1459q14 0 27 4.5t24 12.5zm-560.5 1398Q1525 2033 1286 2033q-240 0-385-173.5T756 1395t144.5-464.5T1286 757t386.5 172.5T1818 1395q0 292-146.5 465zm-231-706.5Q1385 1058 1286 1058t-153.5 95.5T1078 1395t55 241 153 95q99 0 154.5-94.5T1496 1395q0-146-55.5-241.5z"},"children":[]}]};exports.uFE837=uFE837; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u0023.js b/dist/noto_emoji_regular/u0023.js new file mode 100644 index 000000000..7a449f989 --- /dev/null +++ b/dist/noto_emoji_regular/u0023.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u0023 = void 0; +var u0023 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1740 1210l-86 449h383v188h-420l-113 586h-201l115-586h-399l-112 586H710l107-586H463v-188h391l89-449H567v-188h410l112-591h202l-113 591h402l115-591h197l-115 591h359v188h-396zm-685 449h399l87-449h-398z" + }, + "children": [] + }] +}; +exports.u0023 = u0023; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u0030.js b/dist/noto_emoji_regular/u0030.js new file mode 100644 index 000000000..4f4442200 --- /dev/null +++ b/dist/noto_emoji_regular/u0030.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u0030 = void 0; +var u0030 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M822 2195.5Q660 1931 660 1429q0-524 157-777t480-253q318 0 480.5 265.5T1940 1429q0 526-159 778.5T1297 2460q-313 0-475-264.5zm772.5-141.5q93.5-194 93.5-625 0-432-94.5-624.5T1297 612q-200 0-291.5 191T914 1429q0 433 91 626t292 193q204 0 297.5-194z" + }, + "children": [] + }] +}; +exports.u0030 = u0030; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u0031.js b/dist/noto_emoji_regular/u0031.js new file mode 100644 index 000000000..56d2bec6a --- /dev/null +++ b/dist/noto_emoji_regular/u0031.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u0031 = void 0; +var u0031 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1665 2432h-242V1182q0-63 1-130.5t3-129.5l4-127q2-61 3-108-23 25-40.5 42.5T1358 763l-89 79-203 166-132-169 525-409h206v2002z" + }, + "children": [] + }] +}; +exports.u0031 = u0031; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u0032.js b/dist/noto_emoji_regular/u0032.js new file mode 100644 index 000000000..9dfac707f --- /dev/null +++ b/dist/noto_emoji_regular/u0032.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u0032 = void 0; +var u0032 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1925 2436H675v-213l480-522q83-89 194-215t177.5-255.5T1593 950q0-156-87-245t-236-89q-130 0-235 52.5T836 803L696 640q137-122 282.5-178.5T1273 405q264 0 418 145t154 390q0 134-48 256t-132.5 242-298.5 350l-385 410v11h944v227z" + }, + "children": [] + }] +}; +exports.u0032 = u0032; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u0033.js b/dist/noto_emoji_regular/u0033.js new file mode 100644 index 000000000..505aad18c --- /dev/null +++ b/dist/noto_emoji_regular/u0033.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u0033 = void 0; +var u0033 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1438 1378v8q243 30 369 154t126 323q0 278-190 437.5T1197 2460q-149 0-281-23.5T667 2352v-233q119 63 258 97t267 34q236 0 360.5-98t124.5-297q0-174-131-264t-391-90H973v-207h182q217 0 338.5-103.5T1615 915q0-141-94-222t-248-81q-148 0-259.5 46.5T801 778L675 606q120-97 275-151t323-54q281 0 439.5 135T1871 898q0 190-113 317t-320 163z" + }, + "children": [] + }] +}; +exports.u0033 = u0033; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u0034.js b/dist/noto_emoji_regular/u0034.js new file mode 100644 index 000000000..6f3170a30 --- /dev/null +++ b/dist/noto_emoji_regular/u0034.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u0034 = void 0; +var u0034 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2029 1984h-292v449h-241v-449H571v-218l908-1347h258v1337h292v228zm-533-228v-488q0-87 3.5-230t9.5-245l5-116h-13q-18 55-55.5 128.5T1378 923l-563 833h681z" + }, + "children": [] + }] +}; +exports.u0034 = u0034; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u0035.js b/dist/noto_emoji_regular/u0035.js new file mode 100644 index 000000000..320b62115 --- /dev/null +++ b/dist/noto_emoji_regular/u0035.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u0035 = void 0; +var u0035 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1714.5 2282Q1525 2456 1182 2456q-138 0-268-27t-219-81v-236q84 60 228.5 96t265.5 36q228 0 343.5-110.5T1648 1814q0-196-120.5-299.5T1177 1411q-60 0-143.5 10T860 1446l-123-78 75-942h946v227h-729l-54 574q53-10 125.5-18.5t161.5-8.5q288 0 465 156.5t177 429.5q0 322-189.5 496z" + }, + "children": [] + }] +}; +exports.u0035 = u0035; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u0036.js b/dist/noto_emoji_regular/u0036.js new file mode 100644 index 000000000..f85c7f3af --- /dev/null +++ b/dist/noto_emoji_regular/u0036.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u0036 = void 0; +var u0036 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1676 408.5q68 7.5 104 18.5v212q-48-16-108.5-24.5T1552 606q-198 0-333 80.5T1010.5 936 923 1412h17q66-119 174-176t246-57q267 0 418.5 162t151.5 446q0 312-164.5 492.5T1322 2460q-298 0-475.5-232T669 1576q0-599 219.5-887T1544 401q64 0 132 7.5zM1594 1481q-95-106-266-106-175 0-292.5 112T918 1739q0 207 110.5 359t290.5 152q172 0 271-117t99-346q0-200-95-306z" + }, + "children": [] + }] +}; +exports.u0036 = u0036; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u0037.js b/dist/noto_emoji_regular/u0037.js new file mode 100644 index 000000000..5fd2b2a48 --- /dev/null +++ b/dist/noto_emoji_regular/u0037.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u0037 = void 0; +var u0037 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M918 2432l771-1775H656V430h1288v198l-760 1804H918z" + }, + "children": [] + }] +}; +exports.u0037 = u0037; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u0038.js b/dist/noto_emoji_regular/u0038.js new file mode 100644 index 000000000..ae21187e3 --- /dev/null +++ b/dist/noto_emoji_regular/u0038.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u0038 = void 0; +var u0038 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1780.5 1156.5Q1697 1276 1505 1373q221 116 322.5 248t101.5 290q0 246-171.5 397.5T1300 2460q-298 0-463.5-142.5T671 1922q0-170 95-307t293-231q-178-114-250-238t-72-268q0-219 159-349t404-130q250 0 407 129t157 353q0 156-83.5 275.5zm-198.5 1009q103-88.5 103-251.5 0-126-89-222t-291-193l-41-19q-172 82-260 188t-88 257q0 157 97 243t282 86q184 0 287-88.5zm-569-1123q32 63.5 91 113t199 115.5q180-83 249-174t69-207q0-137-86-210t-238-73q-145 0-230.5 72.5T981 890q0 89 32 152.5z" + }, + "children": [] + }] +}; +exports.u0038 = u0038; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u0039.js b/dist/noto_emoji_regular/u0039.js new file mode 100644 index 000000000..2c7c951a2 --- /dev/null +++ b/dist/noto_emoji_regular/u0039.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u0039 = void 0; +var u0039 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M922.5 2452q-70.5-8-102.5-17v-213q48 17 108.5 25.5t119.5 8.5q297 0 453.5-184t175.5-622h-18q-61 114-167.5 173.5T1238 1683q-266 0-418-163t-152-445q0-306 163-490t447-184q302 0 478 235t176 649q0 593-218 884t-658 291q-63 0-133.5-8zm82.5-1071.5q94 106.5 268 106.5 173 0 291-111.5t118-252.5q0-209-110-360t-291-151q-174 0-272 118.5T911 1075q0 199 94 305.5z" + }, + "children": [] + }] +}; +exports.u0039 = u0039; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u00A9.js b/dist/noto_emoji_regular/u00A9.js new file mode 100644 index 000000000..0c9f9ea18 --- /dev/null +++ b/dist/noto_emoji_regular/u00A9.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u00A9 = void 0; +var u00A9 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2201.5 1943Q2062 2184 1821 2323.5T1300 2463q-285 0-529-144.5T392.5 1934 258 1422q0-278 140-520t382-382 520-140q272 0 512 134.5T2196.5 893t144.5 529q0 280-139.5 521zM2115 951.5Q1989 734 1771 607t-471-127q-252 0-470.5 126.5T484.5 951 358 1422t127 471 345 344 470 126q253 0 470.5-126.5t344-344T2241 1422t-126-470.5zM1799 1889q0 2 1 6 0 16-78.5 66.5t-173 77.5-204.5 27q-288 0-475.5-183T681 1422q0-279 187.5-461.5T1344 778q134 0 242.5 33t191.5 99q6 5 6 11 0 4-2 7l-148 270q-3 6-9 6h-6q-6 0-24.5-15.5t-89.5-43-160-27.5q-136 0-225.5 84.5T1030 1422q0 134 89 219t226 85q75 0 158.5-31t112.5-53.5 39-22.5q6 0 10 7z" + }, + "children": [] + }] +}; +exports.u00A9 = u00A9; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u00AE.js b/dist/noto_emoji_regular/u00AE.js new file mode 100644 index 000000000..5fb93977f --- /dev/null +++ b/dist/noto_emoji_regular/u00AE.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u00AE = void 0; +var u00AE = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2201 1942q-140 242-381.5 381.5T1300 2463q-281 0-525-143t-380.5-384.5T258 1420t136.5-515.5T775 520t525-143q278 0 519.5 139.5T2201 898t140 522-140 522zm-86.5-992.5Q1988 731 1769.5 604T1300 477q-249 0-468.5 126.5T485 948.5 358 1420t127 471.5 346.5 345T1300 2363q251 0 469.5-127t345-345.5T2241 1420t-126.5-470.5zM1848 1993q6 6 6 16 0 11-8.5 19.5t-19.5 8.5h-259q-15 0-23-11l-297-396h-103v379q0 11-7.5 18.5t-18.5 7.5H859q-11 0-18.5-7.5T833 2009V816q0-11 7.5-19.5T859 788h529q175 0 300.5 124.5T1814 1209q0 126-71.5 232.5T1551 1598zm-486-611q65 0 112.5-51t47.5-122q0-76-46.5-125t-120.5-49h-206q-6 0-6 7v334q0 4 3 5t12 1h204z" + }, + "children": [] + }] +}; +exports.u00AE = u00AE; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F004.js b/dist/noto_emoji_regular/u1F004.js new file mode 100644 index 000000000..d2650cfe9 --- /dev/null +++ b/dist/noto_emoji_regular/u1F004.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F004 = void 0; +var u1F004 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2143 701q51 23 81.5 68.5T2255 876v436q0 80-3.5 125.5T2212 1528l-678 910q-32 46-93.5 75t-121.5 29q-59 0-108-25l-752-356q-53-25-83.5-70T345 1989v-539q0-30 10.5-60t30.5-56l681-910q36-48 94.5-76t122.5-28q58 0 106 23zM510 1521l752 358q12 6 27 8.5t30 2.5q36 0 68.5-15t52.5-41l681-910q19-26 19-53 0-22-12.5-37t-35.5-26l-751-358q-27-12-57-12-38 0-70 15t-51 41l-682 910q-11 14-14.5 25t-3.5 24q0 23 12.5 40.5T510 1521zm1628-422l-604 806q-36 48-90.5 76t-120.5 28q-29 0-58-6t-54-19l-748-354v226q0 21 12.5 38t34.5 27l752 358q12 6 27 9t30 3q36 0 68.5-15t52.5-41l678-909q11-14 15-27t4-27zm-1254 33q-9-3-9-13 0-2 1-5l2-4 234-316q4-6 11-6 4 0 7 2l243 116 164-215q4-5 11-5 4 0 7 1l149 71q2 2 4.5 6t2.5 8q0 5-3 8l-160 210 234 112 5 5q2 3 2 8t-3 8l-233 318q-3 5-12 5-4 0-5-1l-246-118-187 245q-6 6-11 6-2 0-3-1t-3-1l-149-71q-3-2-6.5-5.5t-3.5-8.5q0-3 1-5l187-243zm588 131q3 2 5 2t3-2l80-106q2 0 2-5t-4-7l-94-44-89 116zm-273-131l89-116-96-46q-2 0-3-1-2 0-3 1l-4 3-77 103-1 3q0 2-1 4 0 6 7 7z" + }, + "children": [] + }] +}; +exports.u1F004 = u1F004; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F0CF.js b/dist/noto_emoji_regular/u1F0CF.js new file mode 100644 index 000000000..7e9ecf1a7 --- /dev/null +++ b/dist/noto_emoji_regular/u1F0CF.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F0CF = void 0; +var u1F0CF = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1986 289q66 0 116.5 48.5T2153 456v1945q0 69-49.5 117.5T1986 2567H614q-68 0-117.5-48.5T447 2401V456q0-69 50-118t117-49h1372zm52 167q0-21-15.5-36.5T1986 404H614q-21 0-36.5 15.5T562 456v1945q0 20 15.5 35.5T614 2452h1372q21 0 36.5-15.5t15.5-35.5V456zm-287.5 1623q-18.5 19-44.5 19-27 0-46.5-19t-19.5-46q0-8 2-15t5-14q-99-37-137.5-117.5T1428 1768q-14 38-20 78t-6 91q0 53-25.5 103.5T1307 2127q14 17 14 38 0 26-19.5 45.5T1256 2230q-27 0-46.5-19.5T1190 2165t19-44.5 45-19.5q0-28-6.5-50t-16.5-45l-22-48q-14-29-25-72t-11-82v-13q0-6 1-12-49 34-90 121t-141 124q4 8 4 21 0 27-19 46t-46 19q-26 0-45-19t-19-46 19-46 45-19q12 0 24 5 30-38 36-124t46-148q-17 11-58.5 41T822 1784q-18 0-32.5-2.5T763 1776q-9 13-23.5 21t-31.5 8q-27 0-46-19t-19-46 19-46 46-19q26 0 44.5 17.5T773 1736q18-8 30.5-22.5T828 1681l23-36q18-28 45.5-50.5T975 1557q-15-42-19-77t-4-78q0-77 14.5-138.5T1010 1129t48.5-109 19.5-68q0-35-18.5-57t-53.5-22q-29 0-57.5 21T901 940q25 23 25 58 0 32-22.5 54.5T849 1075q-33 0-56-22.5T770 998t22.5-55 54.5-24q22-121 82-183.5t156-62.5q58 0 107 30.5t82 81.5q42-102 120.5-154.5T1582 578q20 0 36.5 1.5t28.5 3.5q10-18 28-29.5t40-11.5q32 0 55 23t23 56q0 32-23 55.5t-55 23.5q-24 0-43.5-13.5T1643 652q-66 30-102 95.5T1497 905q14-6 47.5-14t73.5-8q95 0 167 62.5t72 159.5q0 38-9 74t-17 57q14 11 22.5 27t8.5 35q0 32-23 55.5t-56 23.5q-32 0-54.5-23.5T1706 1298q0-30 19.5-52t49.5-25q0-5 1-18 0-42-31-74.5t-60-32.5q-32 0-51 38t-19 102q0 17 3 38l13 91q3 23 3 42 0 39-5.5 70.5T1615 1532q61 4 117 58t106 61q4-23 21.5-39t42.5-16q26 0 45.5 19.5t19.5 46.5q0 26-19.5 45.5T1902 1727t-45-19q-18 12-41 22t-49 10q-41 0-92-28.5t-85-35.5q22 31 36 64.5t18 65.5l7 60q3 30 10.5 56.5t26.5 47.5l9-2h9q26 0 44.5 19t18.5 46-18.5 46zm-633-451.5Q1197 1697 1290 1697q103 0 180.5-81.5T1548 1405q0-99-38-158.5t-85-59.5q-34 0-68 20t-67 76q-14-42-47-76t-72-34q-58 0-95.5 74t-37.5 151q0 160 79.5 229.5zM1182 1416q-23-2-40.5-16t-17.5-42q0-31 18.5-49t45.5-18q37 0 60.5 33t23.5 74q0 30-10.5 51t-10.5 36q0 18 20 18 16 0 27-8t25-8q5 0 5 6 0 24-76 58 0 5 15.5 9t27.5 4q33 0 61.5-15t47.5-31l10-8q5-3 12-3 5 0 9.5 3t4.5 16q0 45-49 75t-90 30q-52 0-103-35t-51-79q0-5 1.5-8.5t4.5-3.5q6 0 11 6.5t11 6.5q4 0 5-2t20-39l14-30q4-11 4-20t-7-9zm172.5-102q23.5-22 55.5-22 20 0 28 13.5t8 30.5q0 32-20.5 51.5T1379 1407q-23 0-35.5-12.5T1331 1364q0-28 23.5-50zM650 618.5q14-14.5 37-14.5t36.5 14.5T737 653q0 21-13.5 35.5T687 703t-37-14.5-14-35.5q0-20 14-34.5zM647 930q0-2 3-2h40q14 0 23.5 9t9.5 23q0 22-20 30l23 30v2l-2 1h-18q-3 0-4-1l-23-29h-8v28q0 2-2 2h-19q-3 0-3-2v-91zm23-216q2 0 2 2v35l24-36 4-1h20q2 0 2 1v2l-27 40 31 49q0 3-4 3h-18q-4 0-5-3l-27-43v44q0 2-2 2h-20q-2 0-2-2v-91q0-2 2-2h20zm7 126v18h32q2 0 2 2v15q0 2-2 2h-32v20h42q2 0 2 2v16q0 2-2 2h-64q-2 0-2-2v-93q0-2 2-2h64q2 0 2 2v16q0 2-2 2h-42zm-29-274q0-2 5-3l15-5q2 0 6 6t11 6q10 0 12-6.5t2-18.5v-47q0-2 2-2h22q3 0 3 2v49q0 46-40 46-15 0-25.5-7.5T648 566zm20 105.5q7 7.5 19 7.5t19-7.5 7-18.5-7-18-19-7-19 7-7 18 7 18.5zm3 302.5h17q5 0 9-3.5t4-10.5q0-6-4-9.5t-9-3.5h-17v27zm1293 1262.5q-14 14.5-37 14.5t-36.5-14.5-13.5-34.5q0-21 13.5-35.5t36.5-14.5 37 14.5 14 35.5q0 20-14 34.5zm3-311.5q0 2-3 2h-40q-14 0-23.5-9t-9.5-23q0-22 20-30l-23-30v-2l2-1h18q3 0 4 1l23 29h8v-28q0-2 2-2h19q3 0 3 2v91zm-23 216q-2 0-2-2v-35l-24 36-4 1h-20q-2 0-2-1v-2l27-40-31-49q0-3 4-3h18q3 0 5 3l27 43v-44q0-2 2-2h20q2 0 2 2v91q0 2-2 2h-20zm-7-126v-18h-32q-2 0-2-2v-15q0-2 2-2h32v-20h-42q-2 0-2-2v-16q0-2 2-2h64q2 0 2 2v93q0 2-2 2h-64q-2 0-2-2v-16q0-2 2-2h42zm29 274q0 2-5 3l-15 5q-2 0-6-6t-11-6q-10 0-12 6.5t-2 18.5v47q0 2-2 2h-22q-3 0-3-2v-49q0-46 40-46 15 0 25.5 7.5t12.5 19.5zm-20-105.5q-7-7.5-19-7.5t-19 7.5-7 18.5 7 18 19 7 19-7 7-18-7-18.5zm-3-302.5h-17q-5 0-9 3.5t-4 10.5q0 6 4 9.5t9 3.5h17v-27z" + }, + "children": [] + }] +}; +exports.u1F0CF = u1F0CF; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F170.js b/dist/noto_emoji_regular/u1F170.js new file mode 100644 index 000000000..abc2c4c8d --- /dev/null +++ b/dist/noto_emoji_regular/u1F170.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F170 = void 0; +var u1F170 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2222 394q46 0 79 33t33 79v1845q0 45-33.5 78t-78.5 33H377q-45 0-78-33t-33-78V506q0-45 33-78.5t78-33.5h1845zm-196 1808q13 0 23-8.5t10-22.5q0-7-3-13L1503 684q-9-22-32-22h-345q-9 0-18 5.5t-12 16.5L539 2164q0 3-1 5 0 14 10.5 23.5t24.5 9.5h363q10 0 19-6.5t12-15.5l85-253h496l84 253q3 9 11.5 15.5t19.5 6.5h363zm-727-1022l145 434h-289z" + }, + "children": [] + }] +}; +exports.u1F170 = u1F170; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F171.js b/dist/noto_emoji_regular/u1F171.js new file mode 100644 index 000000000..544253ec3 --- /dev/null +++ b/dist/noto_emoji_regular/u1F171.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F171 = void 0; +var u1F171 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2222 394q47 0 79.5 33t32.5 78v1845q0 45-32.5 78t-79.5 33H377q-47 0-79-33t-32-78V505q0-45 32-78t79-33h1845zm-800 1811q202 0 347.5-130t145.5-314q0-108-54-202.5T1710 1401q63-60 99-138.5t36-167.5q0-182-145-313.5T1352 650H793q-14 0-23.5 9.5T760 683v1489q0 14 9.5 23.5t23.5 9.5h629zm-81-651q66 0 116.5 54t50.5 128q0 76-50 129.5t-117 53.5h-218q-7 0-7-9v-348q0-8 7-8h218zm-219-292q-3 0-5-2t-2-4V956q0-2 2-5.5t5-3.5h207q62 0 105.5 47.5T1478 1105q0 62-43.5 109.5T1329 1262h-207z" + }, + "children": [] + }] +}; +exports.u1F171 = u1F171; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F17E.js b/dist/noto_emoji_regular/u1F17E.js new file mode 100644 index 000000000..489be4d3a --- /dev/null +++ b/dist/noto_emoji_regular/u1F17E.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F17E = void 0; +var u1F17E = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2222 393q46 0 79 33t33 79v1845q0 45-33.5 78t-78.5 33H377q-45 0-78-33t-33-78V505q0-45 33-78.5t78-33.5h1845zm-194.5 616.5Q1919 822 1727 718.5T1299 615q-235 0-427.5 104T571 1010t-108 417q0 227 107 415t300 292.5 429 104.5 428.5-104 300.5-292 108-416q0-230-108.5-417.5zm-435.5 701Q1478 1822 1299 1822q-180 0-293-111.5T893 1427q0-173 113.5-284t292.5-111 293 110.5 114 284.5q0 172-114 283.5z" + }, + "children": [] + }] +}; +exports.u1F17E = u1F17E; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F17F.js b/dist/noto_emoji_regular/u1F17F.js new file mode 100644 index 000000000..cc89eac54 --- /dev/null +++ b/dist/noto_emoji_regular/u1F17F.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F17F = void 0; +var u1F17F = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2222 393q45 0 78 32.5t33 79.5v1845q0 47-33 79t-78 32H377q-45 0-78-32t-33-79V505q0-47 33-79.5t78-32.5h1845zm-799 259H763q-14 0-23.5 9.5T730 684v1490q0 13 9.5 23t23.5 10h322q14 0 24-10t10-23v-474h304q219 0 375-155t156-370q0-214-156-368.5T1423 652zm-41 306q84 0 146.5 64.5T1591 1175t-61.5 152-147.5 64h-257q-2 0-6-2.5t-4-5.5V967q0-2 4-5.5t6-3.5h257z" + }, + "children": [] + }] +}; +exports.u1F17F = u1F17F; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F18E.js b/dist/noto_emoji_regular/u1F18E.js new file mode 100644 index 000000000..861ff6eb9 --- /dev/null +++ b/dist/noto_emoji_regular/u1F18E.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F18E = void 0; +var u1F18E = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2222 393q47 0 79 32t32 79v1845q0 47-32 79t-79 32H377q-47 0-79-32t-32-79V504q0-47 32-79t79-32h1845zm-211 1008q42-60 65-138.5t23-169.5q0-180-88.5-308.5T1799 656h-333q-11 0-18 7.5t-7 18.5v1489q0 11 7 18.5t18 7.5h375q122 0 211-128.5t89-309.5q0-112-35.5-205.5T2011 1401zm-993-718q-2-8-9.5-14t-16.5-6H788q-10 0-17 6t-9 14L432 2164q0 13 8 19t18 6h216q20 0 25-21l50-254h283l49 254q2 10 9.5 15.5t15.5 5.5h217q8 0 16-6t8-19v-5zm775 872q41 0 70.5 50.5T1893 1735t-29.5 129.5-70.5 50.5h-130q-5 0-5-6v-349q0-5 5-5h130zm-130-296q-7 0-7-6V953q0-5 7-5h122q36 0 63.5 45t27.5 111q0 65-27.5 110t-63.5 45h-122zm-772-58l82 414H808z" + }, + "children": [] + }] +}; +exports.u1F18E = u1F18E; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F191.js b/dist/noto_emoji_regular/u1F191.js new file mode 100644 index 000000000..f6dd858a8 --- /dev/null +++ b/dist/noto_emoji_regular/u1F191.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F191 = void 0; +var u1F191 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2222 393q45 0 78 32.5t33 79.5v1845q0 47-33 79t-78 32H377q-45 0-78-33t-33-78V505q0-45 33-78.5t78-33.5h1845zm33 112q0-14-9.5-23.5T2222 472H377q-14 0-23.5 9.5T344 505v1845q0 14 9.5 23t23.5 9h1845q14 0 23.5-9t9.5-23V505zm-919 1497v9l-3 4q-142 198-347 198-221 0-363.5-221.5T480 1417q0-351 142.5-572.5T986 623q98 0 172 34.5t120.5 83T1325 797q-2 3-2 4l-112 334q-5 10-15 10-9 0-22.5-21t-67-54-120.5-33q-100 0-167.5 107T751 1417q0 167 67 275t168 108q61 0 125-41.5t81.5-66.5 30.5-25q9 0 11 9zm741-113q11 0 18.5 7t7.5 17v246q0 10-7.5 18t-18.5 8h-627q-11 0-19-8t-8-18V678q0-11 8-18.5t19-7.5h197q10 0 18 7.5t8 18.5v1211h404z" + }, + "children": [] + }] +}; +exports.u1F191 = u1F191; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F192.js b/dist/noto_emoji_regular/u1F192.js new file mode 100644 index 000000000..642986404 --- /dev/null +++ b/dist/noto_emoji_regular/u1F192.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F192 = void 0; +var u1F192 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2222 393q45 0 78 32t33 79v1845q0 47-33 79.5t-78 32.5H377q-45 0-78-33.5t-33-78.5V504q0-45 33-78t78-33h1845zm33 111q0-14-9.5-23.5T2222 471H377q-14 0-23.5 9.5T344 504v1845q0 14 9.5 23.5t23.5 9.5h1845q14 0 23.5-9.5t9.5-23.5V504zM1242.5 1927.5Q1186 2124 1099 2124t-143.5-196.5T899 1427q0-303 56.5-501T1099 728t143.5 198 56.5 501q0 304-56.5 500.5zm442.5-1q-56 197.5-144 197.5-87 0-142.5-198t-55.5-499 55.5-500T1541 728q88 0 144 198.5t56 500.5-56 499.5zM841 1641q6 2 8 8l54 288v4q-76 176-188 176-118 0-194.5-194.5T444 1419q0-308 76-503.5T715 720q56 0 100.5 37.5T896 867v7l-59 293q-2 8-8 8-11 0-16-17.5t-36-61.5-60-44q-49 0-81.5 102.5T603 1419q0 160 32.5 263.5T717 1786q27 0 66-56t43.5-72.5T841 1641zm1295 207q18 0 18 16v222q0 8-5 13t-13 5h-333q-8 0-13-5t-5-13V750q0-7 5-11.5t13-4.5h105q17 0 17 16v1098h211zm-991-709.5q-18-111.5-46-111.5-27 0-46 109.5t-19 290.5 19 290.5 46 109.5q28 0 46-113t18-287q0-177-18-288.5zm443 0q-18-111.5-47-111.5-27 0-45 111.5t-18 288.5 18 288.5 45 111.5q29 0 47-111.5t18-288.5-18-288.5z" + }, + "children": [] + }] +}; +exports.u1F192 = u1F192; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F193.js b/dist/noto_emoji_regular/u1F193.js new file mode 100644 index 000000000..e3c0b273d --- /dev/null +++ b/dist/noto_emoji_regular/u1F193.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F193 = void 0; +var u1F193 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2222 393q45 0 78 32.5t33 79.5v1845q0 47-33 79t-78 32H377q-45 0-78-33t-33-78V505q0-45 33-78.5t78-33.5h1845zm33 112q0-14-9.5-23.5T2222 472H377q-14 0-23.5 9.5T344 505v1845q0 14 9.5 23t23.5 9h1845q14 0 23.5-9t9.5-23V505zm-952 1632v4q0 8-5 14t-14 6h-107q-8 0-13-3.5t-6-11.5l-124-468h-24v464q0 18-19 18H884q-19 0-19-18V723q0-19 19-19h219q81 0 132 144.5t51 342.5q0 154-31.5 277.5T1174 1643zm412-1433q8 0 13.5 5.5t5.5 13.5v235q0 8-5.5 13t-13.5 5h-215v304h163q8 0 13.5 5.5t5.5 12.5v236q0 19-19 19h-163v336h215q8 0 13.5 5t5.5 13v235q0 8-5.5 13.5t-13.5 5.5h-342q-8 0-13-5.5t-5-13.5V723q0-8 5-13.5t13-5.5h342zm432 0q7 0 12.5 5.5t5.5 13.5v235q0 8-5.5 13t-12.5 5h-217v304h165q8 0 13.5 5.5t5.5 12.5v236q0 19-19 19h-165v336h217q7 0 12.5 5t5.5 13v235q0 8-5.5 13.5t-12.5 5.5h-341q-19 0-19-19V723q0-19 19-19h341zm-1354 0q8 0 13 5.5t5 13.5v235q0 8-5 13t-13 5H595v319h164q8 0 13 6t5 14v235q0 8-5 13t-13 5H595v574q0 8-6 13.5t-14 5.5H469q-8 0-13-5.5t-5-13.5V723q0-8 5-13.5t13-5.5h324zm296 690q30 0 50.5-59t20.5-144q0-86-20.5-145t-50.5-59h-85q-5 0-5 6v396q0 5 5 5h85z" + }, + "children": [] + }] +}; +exports.u1F193 = u1F193; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F194.js b/dist/noto_emoji_regular/u1F194.js new file mode 100644 index 000000000..be0b10c0d --- /dev/null +++ b/dist/noto_emoji_regular/u1F194.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F194 = void 0; +var u1F194 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2222 393q45 0 78 32.5t33 79.5v1845q0 47-33 79t-78 32H377q-45 0-78-33t-33-78V505q0-45 33-78.5t78-33.5h1845zm33 112q0-14-9.5-24t-23.5-10H377q-14 0-23.5 10t-9.5 24v1845q0 13 9.5 22.5t23.5 9.5h1845q14 0 23.5-9.5t9.5-22.5V505zm-740 160q261 0 437 203.5t176 559.5-176 560.5-437 204.5H988q-13 0-21-9t-8-21V694q0-11 8-20t21-9h527zm-15 1169l23-1q62-2 130.5-45.5T1765 1651t43-223q0-185-88.5-294.5T1500 1024h-192q-11 0-19.5 9t-8.5 20v752q0 11 8.5 20t19.5 9h192zM819 665q13 0 22.5 9t9.5 21v1481q0 14-9.5 23t-22.5 9H522q-14 0-22.5-9t-8.5-23V695q0-12 8.5-21t22.5-9h297z" + }, + "children": [] + }] +}; +exports.u1F194 = u1F194; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F195.js b/dist/noto_emoji_regular/u1F195.js new file mode 100644 index 000000000..f0189aadd --- /dev/null +++ b/dist/noto_emoji_regular/u1F195.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F195 = void 0; +var u1F195 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2222 393q45 0 78 32.5t33 79.5v1845q0 47-32 79t-79 32H377q-47 0-79-33t-32-78V505q0-45 33-78.5t78-33.5h1845zm33 112q0-14-9.5-23.5T2222 472H377q-14 0-23.5 9.5T344 505v1845q0 14 9.5 23.5t23.5 9.5h1845q14 0 23.5-9.5t9.5-23.5V505zm-823 199q8 0 14 5.5t6 13.5v237q0 7-6 12.5t-14 5.5h-237v304h181q8 0 13.5 5.5t5.5 13.5v236q0 9-5.5 14.5t-13.5 5.5h-181v336h237q8 0 14 5.5t6 13.5v236q0 8-6 13.5t-14 5.5h-374q-8 0-14.5-5.5t-6.5-13.5V723q0-8 6.5-13.5t14.5-5.5h374zm-472-2q8 0 14.5 6.5T981 723v1425q0 8-6.5 14t-14.5 6H843q-16 0-20-16l-202-835v831q0 8-6.5 14t-15.5 6H482q-8 0-14-6t-6-14V723q0-8 6-14.5t14-6.5h117q8 0 13.5 4.5T619 717l203 836V723q0-8 6.5-14.5T843 702h117zm1183 8q9 0 14.5 6.5t5.5 15.5l-126 1410q0 9-6.5 14t-13.5 5h-102q-19 0-19-19l-67-705-64 705q0 3-4.5 11t-16.5 8h-101q-19-8-19-19L1497 732q0-8 4.5-15t15.5-7h126q8 0 14 5t6 13l43 589 59-589q0-7 5.5-12.5t13.5-5.5h92q7 0 13.5 4t6.5 14l59 589 41-589q3-18 21-18h126z" + }, + "children": [] + }] +}; +exports.u1F195 = u1F195; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F196.js b/dist/noto_emoji_regular/u1F196.js new file mode 100644 index 000000000..dd92f3803 --- /dev/null +++ b/dist/noto_emoji_regular/u1F196.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F196 = void 0; +var u1F196 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2222 393q46 0 78.5 32t32.5 80v1845q0 47-33 79t-78 32H377q-45 0-78-33t-33-78V505q0-46 32.5-79t78.5-33h1845zm33 112q0-14-9.5-24t-23.5-10H377q-14 0-23.5 10t-9.5 24v1845q0 13 9.5 22.5t23.5 9.5h1845q14 0 23.5-9.5t9.5-22.5V505zm-111 858q5 0 9.5 3.5t4.5 8.5q0 366-105.5 595.5T1744 2200q-198 0-324.5-213T1293 1438q0-337 126.5-550T1744 675q95 0 176 52t142 152l1 7-1 5-126 258q-2 3-4.5 4t-5.5 3q-11 0-26.5-26t-65.5-64-90-38q-91 0-153 121t-62 289q0 165 61.5 294t153.5 129q60 0 111.5-62.5T1913 1638h-107q-14 0-14-12v-251q0-12 14-12h338zm-940-661q11 0 18 7t7 18v1419q0 11-7 18.5t-18 7.5h-175q-16 0-23-16l-313-865v855q0 11-7 18.5t-17 7.5H495q-11 0-18.5-7.5T469 2146V727q0-11 7.5-18t18.5-7h174q16 0 23 17l312 864V727q0-11 7-18t18-7h175z" + }, + "children": [] + }] +}; +exports.u1F196 = u1F196; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F197.js b/dist/noto_emoji_regular/u1F197.js new file mode 100644 index 000000000..a61f3fa39 --- /dev/null +++ b/dist/noto_emoji_regular/u1F197.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F197 = void 0; +var u1F197 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2222 393q45 0 78 32.5t33 79.5v1845q0 47-33 79t-78 32H377q-45 0-78-33t-33-78V505q0-45 33-78.5t78-33.5h1845zm33 112q0-14-9.5-23.5T2222 472H377q-14 0-23.5 9.5T344 505v1845q0 14 9.5 23.5t23.5 9.5h1845q14 0 23.5-9.5t9.5-23.5V505zm-94 1615q0 3 1 8 0 11-7 18.5t-18 7.5h-205q-19 0-24-16l-248-653v645q0 9-6.5 16.5t-17.5 7.5h-184q-10 0-17-7.5t-7-16.5V723q0-11 7-18t17-7h184q11 0 17.5 7t6.5 18v527l216-537q7-15 23-15h205q11 0 18 7t7 18q0 5-1 8l-255 633zm-916-165q-131 215-338 215-206 0-336.5-213.5T440 1417q0-323 130.5-536.5T907 667q207 0 338 214.5t131 535.5q0 323-131 538zm-197.5-845Q993 989 907 989q-85 0-140 120.5T712 1417q0 189 55 310.5T907 1849q86 0 140.5-122t54.5-310q0-186-54.5-307z" + }, + "children": [] + }] +}; +exports.u1F197 = u1F197; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F198.js b/dist/noto_emoji_regular/u1F198.js new file mode 100644 index 000000000..0c7514011 --- /dev/null +++ b/dist/noto_emoji_regular/u1F198.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F198 = void 0; +var u1F198 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2222 393q46 0 78.5 32t32.5 80v1845q0 47-33 79t-78 32H377q-45 0-78-33t-33-78V505q0-46 32.5-79t78.5-33h1845zm33 112q0-14-9.5-24t-23.5-10H377q-14 0-23.5 10t-9.5 24v1845q0 13 9.5 22.5t23.5 9.5h1845q14 0 23.5-9.5t9.5-22.5V505zm-710 1451q-91 209-232 209-143 0-234-209t-91-532q0-322 91.5-531T1313 684q140 0 231.5 209t91.5 531q0 323-91 532zm355-734l49 50q104 106 151.5 216t47.5 258q0 187-72 311t-181 124q-67 0-120-44.5t-94-117-41-80.5q0-4 1-6l67-232q5-11 14-11 13 0 27.5 31.5t63 90.5 91.5 59l11-2q17-4 32.5-33t15.5-83q0-107-67.5-176.5t-130.5-141-88-153-25-187.5q0-158 53-292t183-134q75 0 139 53t64 72v4l-43 221q-2 12-15 12-6 0-51.5-44t-85.5-44q-28 0-46 29.5t-18 88.5q0 47 13.5 81.5t33.5 56.5zm-1117 49q115 123 158 234t43 241q0 184-72 309.5T730 2181q-72 0-133-55.5T477 1943q-2 0-2-4t2-6l68-232q3-11 13-11 12 0 26.5 31.5t63 90.5 92.5 59l11-2q18-4 33.5-33t15.5-84q0-42-14-86.5t-42-74.5l-55-59h-1q-102-109-133-156t-49-114.5-18-166.5q0-155 52-290.5T723 669q67 0 136 50t69 79l-46 221q-2 12-13 12-5 0-51-44t-86-44q-28 0-46.5 29.5T667 1061q0 43 15.5 83t53.5 78zm621-147.5q-36-119.5-91-119.5-57 0-93 119.5t-36 300.5q0 183 36 303.5t93 120.5q55 0 91-120.5t36-303.5q0-181-36-300.5z" + }, + "children": [] + }] +}; +exports.u1F198 = u1F198; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F199.js b/dist/noto_emoji_regular/u1F199.js new file mode 100644 index 000000000..ca7e55537 --- /dev/null +++ b/dist/noto_emoji_regular/u1F199.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F199 = void 0; +var u1F199 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2222 393q45 0 78 32t33 79v1845q0 47-33 79.5t-78 32.5H377q-45 0-78-33.5t-33-78.5V504q0-45 33-78t78-33h1845zm33 111q0-14-9.5-23.5T2222 471H377q-14 0-23.5 9.5T344 504v1845q0 14 9.5 23.5t23.5 9.5h1845q14 0 23.5-9.5t9.5-23.5V504zm-626 222q115 0 196 136t81 333q0 199-81.5 335.5T1629 1667h-151v440q0 9-7 15t-15 6h-165q-10 0-17-6t-7-15V747q0-9 7-15t17-6h338zm-22 665q44 0 77-58t33-138-33-137.5-77-57.5h-131q-6 0-6 6v379q0 6 6 6h131zm-423-671q9 0 16 6.5t7 15.5v745q-6 328-108 487.5T844 2134q-152 0-254.5-156T481 1484l-1-72V742q0-9 7-15.5t16-6.5h186q9 0 15.5 6.5T711 742v670q0 142 12.5 215t37.5 103.5 83 30.5q57 0 81.5-31t37-103.5T975 1412V742q0-9 6.5-15.5T997 720h187zm924 1378.5q-25 24.5-60 24.5-36 0-60.5-24.5T1963 2038q0-35 24.5-60t60.5-25q35 0 60 25t25 60q0 36-25 60.5zM2160 871q-1 6-1 12l-89 982q0 8-7 14t-15 6-14.5-6-8.5-14l-88-982-2-12q0-6-1-13 0-56 33.5-95t80.5-39q45 0 79 39t34 95q0 7-1 13z" + }, + "children": [] + }] +}; +exports.u1F199 = u1F199; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F19A.js b/dist/noto_emoji_regular/u1F19A.js new file mode 100644 index 000000000..032ac8aa9 --- /dev/null +++ b/dist/noto_emoji_regular/u1F19A.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F19A = void 0; +var u1F19A = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2222 393q45 0 78 32t33 79v1845q0 47-33 79.5t-78 32.5H377q-45 0-78-33.5t-33-78.5V504q0-45 33-78t78-33h1845zm33 111q0-13-9.5-22.5T2222 472H377q-14 0-23.5 9.5T344 504v1845q0 14 9.5 23.5t23.5 9.5h1845q14 0 23.5-9.5t9.5-23.5V504zm-232 1563q-107 129-276 129-98 0-178.5-44.5t-142-118-61.5-84.5q0-4 2-8l103-236q4-9 18-9 5 0 57.5 56t109.5 91 108 35q41 0 68-35t27-83q0-41-20.5-84t-61.5-72l-184-129q-128-88-168-173.5t-40-200.5q0-169 80.5-301.5T1737 667q100 0 203.5 50t103.5 78v3l-68 226q-5 13-18 13-3 0-5-1l-5-2q-50-38-101.5-61.5T1748 949q-43 0-71.5 29t-28.5 86q0 92 104.5 160.5t197 147.5 136.5 174 44 207q0 185-107 314zM1341 693q7 0 12 5.5t5 11.5v5l-329 1441q0 6-5 10t-13 4H802q-6 0-7.5-1t-2.5-3l-2-5q0-2-6-5L455 715q0-22 18-22h198q14 0 17 13l219 924 218-924q2-13 18-13h198z" + }, + "children": [] + }] +}; +exports.u1F19A = u1F19A; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F1E6.js b/dist/noto_emoji_regular/u1F1E6.js new file mode 100644 index 000000000..3e56e0f75 --- /dev/null +++ b/dist/noto_emoji_regular/u1F1E6.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F1E6 = void 0; +var u1F1E6 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2200 2288q3 6 3 14 0 17-12 28t-28 11h-431q-14 0-23.5-7.5T1695 2314l-102-301h-589l-98 301q-5 12-15 19.5t-24 7.5H436q-16 0-28-12t-12-27q0-8 3-14l659-1752q4-13 14-19.5t23-6.5h409q26 0 37 26zm-729-647l-172-516-171 516h343z" + }, + "children": [] + }] +}; +exports.u1F1E6 = u1F1E6; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F1E7.js b/dist/noto_emoji_regular/u1F1E7.js new file mode 100644 index 000000000..abce2d809 --- /dev/null +++ b/dist/noto_emoji_regular/u1F1E7.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F1E7 = void 0; +var u1F1E7 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1741 1386q118 77 181.5 190t63.5 239q0 216-172 372t-414 156H652q-17 0-27.5-11t-10.5-28V534q0-17 10.5-28.5T652 494h664q160 0 298 74t213.5 195.5T1903 1023q0 106-43.5 199T1741 1386zm-452-164q75 0 126.5-55.5T1467 1036q0-77-52.5-132.5T1289 848h-245q-5 0-7.5 3.5t-2.5 5.5v355q0 5 3.5 7.5t6.5 2.5h245zm15 779q81 0 139-62.5t58-152.5q0-89-58.5-152.5T1304 1570h-259q-3 0-6 1.5t-3 6.5v415q0 8 9 8h259z" + }, + "children": [] + }] +}; +exports.u1F1E7 = u1F1E7; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F1E8.js b/dist/noto_emoji_regular/u1F1E8.js new file mode 100644 index 000000000..82e770d9b --- /dev/null +++ b/dist/noto_emoji_regular/u1F1E8.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F1E8 = void 0; +var u1F1E8 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2127 2117q3 6 3 11t-2 9-6 6q-275 236-670 236-279 0-506.5-125T594 1909.5 470 1425q0-267 125.5-487t352-344T1452 470q203 0 361.5 47.5T2097 665q9 6 9 16 0 3-1 6l-2 5-221 399q-3 6-8 9t-10 3q-4 0-7-2l-6-3q-70-56-176-90.5T1455 973q-206 0-336 127.5T989 1425q0 195 129.5 323t336.5 128q107 0 228-43.5t168.5-79.5 58.5-36q13 0 19 11z" + }, + "children": [] + }] +}; +exports.u1F1E8 = u1F1E8; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F1E9.js b/dist/noto_emoji_regular/u1F1E9.js new file mode 100644 index 000000000..7c0a3eadf --- /dev/null +++ b/dist/noto_emoji_regular/u1F1E9.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F1E9 = void 0; +var u1F1E9 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1259 494q392 0 638 255t246 669q0 415-245.5 670T1259 2343H495q-17 0-28-11.5t-11-28.5V533q0-16 11-27.5t28-11.5h764zm19 1414q170 0 285-142.5t115-347.5q0-222-121-356.5T1237 927H959q-17 0-27.5 11T921 966v905q0 16 10.5 26.5T959 1908h319z" + }, + "children": [] + }] +}; +exports.u1F1E9 = u1F1E9; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F1EA.js b/dist/noto_emoji_regular/u1F1EA.js new file mode 100644 index 000000000..06e2cbcf5 --- /dev/null +++ b/dist/noto_emoji_regular/u1F1EA.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F1EA = void 0; +var u1F1EA = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1111 866v346h615q17 0 28.5 11.5t11.5 28.5v293q0 17-11.5 28.5T1726 1585h-615v386h800q17 0 28.5 11.5t11.5 26.5v294q0 17-11.5 28t-28.5 11H688q-17 0-28.5-11t-11.5-28V535q0-17 11.5-28t28.5-11h1223q17 0 28.5 11t11.5 28v291q0 17-11.5 28.5T1911 866h-800z" + }, + "children": [] + }] +}; +exports.u1F1EA = u1F1EA; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F1EB.js b/dist/noto_emoji_regular/u1F1EB.js new file mode 100644 index 000000000..39dbd16a1 --- /dev/null +++ b/dist/noto_emoji_regular/u1F1EB.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F1EB = void 0; +var u1F1EB = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1881 496q17 0 28.5 11t11.5 27v293q0 17-11.5 28.5T1881 867h-740v294h617q16 0 27 11.5t11 28.5v293q0 17-11 28.5t-27 11.5h-617v770q0 17-11.5 27.5T1103 2342H719q-17 0-28.5-10.5T679 2304V534q0-16 11.5-27t28.5-11h1162z" + }, + "children": [] + }] +}; +exports.u1F1EB = u1F1EB; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F1EC.js b/dist/noto_emoji_regular/u1F1EC.js new file mode 100644 index 000000000..84dd14038 --- /dev/null +++ b/dist/noto_emoji_regular/u1F1EC.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F1EC = void 0; +var u1F1EC = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2221 1318q9 0 15.5 6t6.5 14q0 279-104 525.5T1833.5 2240 1340 2370q-278 0-506.5-124t-353-344T356 1416t125-487 353-345 506-124q206 0 380.5 64.5T2029 714q7 7 7 15 0 7-6 12l-278 321q-3 8-13 8-11 0-55-36t-149.5-79.5T1340 911q-209 0-344.5 152T860 1416q0 205 137.5 363.5T1340 1938q140 0 250.5-77t126.5-190h-243q-8 0-14-5.5t-6-13.5v-314q0-8 6-14t14-6h747z" + }, + "children": [] + }] +}; +exports.u1F1EC = u1F1EC; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F1ED.js b/dist/noto_emoji_regular/u1F1ED.js new file mode 100644 index 000000000..52ba66c82 --- /dev/null +++ b/dist/noto_emoji_regular/u1F1ED.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F1ED = void 0; +var u1F1ED = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2096 506q17 0 29 11.5t12 28.5v1754q0 17-12 28.5t-29 11.5h-431q-18 0-29.5-11.5T1624 2300v-745H974v745q0 17-11.5 28.5T934 2340H501q-16 0-27.5-11.5T462 2300V546q0-17 11.5-28.5T501 506h433q17 0 28.5 11.5T974 546v637h650V546q0-17 11.5-28.5T1665 506h431z" + }, + "children": [] + }] +}; +exports.u1F1ED = u1F1ED; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F1EE.js b/dist/noto_emoji_regular/u1F1EE.js new file mode 100644 index 000000000..0ba9a031c --- /dev/null +++ b/dist/noto_emoji_regular/u1F1EE.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F1EE = void 0; +var u1F1EE = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1515 506q17 0 29 12t12 29v1753q0 17-12 29t-29 12h-431q-18 0-29.5-12t-11.5-29V547q0-17 11.5-29t29.5-12h431z" + }, + "children": [] + }] +}; +exports.u1F1EE = u1F1EE; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F1EF.js b/dist/noto_emoji_regular/u1F1EF.js new file mode 100644 index 000000000..926c00df4 --- /dev/null +++ b/dist/noto_emoji_regular/u1F1EF.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F1EF = void 0; +var u1F1EF = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2002 495q17 0 27.5 11t10.5 28v762q0 370-27 548.5t-138 291-262.5 166.5-327.5 54q-295 0-495.5-142.5T559 1843q0-25 7.5-35t18.5-13l359-113q4 0 11-1 29 0 41.5 37t54 84 106.5 79 134 32q125 0 182-75.5t57-293.5V534q0-17 11.5-28t28.5-11h432z" + }, + "children": [] + }] +}; +exports.u1F1EF = u1F1EF; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F1F0.js b/dist/noto_emoji_regular/u1F1F0.js new file mode 100644 index 000000000..ceb315417 --- /dev/null +++ b/dist/noto_emoji_regular/u1F1F0.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F1F0 = void 0; +var u1F1F0 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2045 2281q4 5 5 10.5t1 10.5q0 17-11.5 28.5T2013 2342h-429q-22 0-34-20l-540-863v843q0 17-11.5 28.5T970 2342H586q-17 0-27.5-11.5T548 2302V532q0-17 10.5-28t27.5-11h384q17 0 28.5 11t11.5 28v692l474-714q11-17 31-17h429q16 0 27 11t11 28q0 6-1 11.5t-5 10.5l-520 786z" + }, + "children": [] + }] +}; +exports.u1F1F0 = u1F1F0; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F1F1.js b/dist/noto_emoji_regular/u1F1F1.js new file mode 100644 index 000000000..32946da58 --- /dev/null +++ b/dist/noto_emoji_regular/u1F1F1.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F1F1 = void 0; +var u1F1F1 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1911 1969q17 0 28.5 11.5t11.5 28.5v293q0 16-11.5 28t-28.5 12H688q-17 0-28.5-12t-11.5-28V532q0-17 11.5-28.5T688 492h383q17 0 28.5 11.5T1111 532v1437h800z" + }, + "children": [] + }] +}; +exports.u1F1F1 = u1F1F1; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F1F2.js b/dist/noto_emoji_regular/u1F1F2.js new file mode 100644 index 000000000..2a6e89d31 --- /dev/null +++ b/dist/noto_emoji_regular/u1F1F2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F1F2 = void 0; +var u1F1F2 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2281 2297q0 17-11 30.5t-31 13.5h-366q-17 0-28-10t-13-27l-74-747-284 757q-5 12-15.5 19.5t-22.5 7.5h-273q-11 0-23-7t-17-20l-282-757-74 747q-2 17-13.5 27t-27.5 10H359q-17 0-29-12t-12-32L466 543q0-14 12-26t29-12h392q14 0 24.5 9.5T939 535l360 1178 361-1178q4-9 15-19.5t25-10.5h391q22 0 31.5 12t10.5 26z" + }, + "children": [] + }] +}; +exports.u1F1F2 = u1F1F2; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F1F3.js b/dist/noto_emoji_regular/u1F1F3.js new file mode 100644 index 000000000..c11171b7c --- /dev/null +++ b/dist/noto_emoji_regular/u1F1F3.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F1F3 = void 0; +var u1F1F3 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2081 491q17 0 29 12t12 29v1770q0 17-12 29t-29 12h-384q-10 0-19.5-5t-14.5-14L945 1199v1103q0 17-12 29t-29 12H520q-17 0-29.5-12t-12.5-29V532q0-17 12.5-29t29.5-12h384q23 0 34 19l718 1125V532q0-17 12-29t29-12h384z" + }, + "children": [] + }] +}; +exports.u1F1F3 = u1F1F3; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F1F4.js b/dist/noto_emoji_regular/u1F1F4.js new file mode 100644 index 000000000..364521a89 --- /dev/null +++ b/dist/noto_emoji_regular/u1F1F4.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F1F4 = void 0; +var u1F1F4 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2149.5 1903.5q-122.5 218.5-345 340T1299 2365t-505-121.5-344.5-340T327 1422q0-264 122.5-482T795 600t504-122q280 0 503.5 121.5t346.5 340 123 482.5q0 263-122.5 481.5zm-486.5-832Q1522 932 1299 932q-222 0-363 139t-141 351q0 210 140 350.5t364 140.5q225 0 365-140.5t140-350.5q0-211-141-350.5z" + }, + "children": [] + }] +}; +exports.u1F1F4 = u1F1F4; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F1F5.js b/dist/noto_emoji_regular/u1F1F5.js new file mode 100644 index 000000000..7bc12465a --- /dev/null +++ b/dist/noto_emoji_regular/u1F1F5.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F1F5 = void 0; +var u1F1F5 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1397 494q167 0 313.5 83T1942 805.5t85 312.5-85 312.5-231.5 228.5-313.5 83h-361v562q0 17-11.5 28.5T996 2344H612q-17 0-28-11.5t-11-28.5V534q0-17 11-28.5t28-11.5h785zm-30 880q97-8 163-83t66-173q0-107-73-182.5T1348 860h-306q-4 0-7.5 3.5t-3.5 7.5v493q0 3 3.5 7t7.5 4h306z" + }, + "children": [] + }] +}; +exports.u1F1F5 = u1F1F5; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F1F6.js b/dist/noto_emoji_regular/u1F1F6.js new file mode 100644 index 000000000..66ef0e9d5 --- /dev/null +++ b/dist/noto_emoji_regular/u1F1F6.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F1F6 = void 0; +var u1F1F6 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2121 2315q8 11 8 22 0 12-8 21.5t-19 12.5l-289 84h-6l-4 1q-20 0-30-15l-106-149q-82 29-174 44.5t-194 15.5q-281 0-502.5-120T451 1892.5 327 1408t123.5-483.5T795 585t504-121q281 0 503 120.5T2148 924t124 484q0 209-76.5 388.5T1976 2107zm-733-423l-162-233q-7-10-7-22 0-13 7.5-21.5t18.5-13.5l289-83q3 0 10-1 19 0 32 16l126 182q49-64 75.5-142t26.5-166q0-211-140.5-351T1299 917q-223 0-363.5 140T795 1408q0 212 141 351t363 139q45 0 89-6z" + }, + "children": [] + }] +}; +exports.u1F1F6 = u1F1F6; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F1F7.js b/dist/noto_emoji_regular/u1F1F7.js new file mode 100644 index 000000000..95064a7c2 --- /dev/null +++ b/dist/noto_emoji_regular/u1F1F7.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F1F7 = void 0; +var u1F1F7 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2048 2277q8 11 8 27 0 17-12.5 27.5T2015 2342h-383q-22 0-35-15l-441-586h-152v562q0 17-10.5 28t-27.5 11H582q-17 0-28-11t-11-28V535q0-17 11-28t28-11h784q259 0 444.5 181.5T1996 1116q0 189-105.5 345.5T1607 1693zM1492.5 935q-72.5-75-174.5-75h-307q-3 0-6 2.5t-3 7.5v494q0 5 3 7.5t6 2.5h316l59-11q58-11 118.5-79t60.5-168q0-106-72.5-181z" + }, + "children": [] + }] +}; +exports.u1F1F7 = u1F1F7; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F1F8.js b/dist/noto_emoji_regular/u1F1F8.js new file mode 100644 index 000000000..9c6abfc8a --- /dev/null +++ b/dist/noto_emoji_regular/u1F1F8.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F1F8 = void 0; +var u1F1F8 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1950.5 2162q-97.5 146-271 221t-380.5 75q-106 0-219-22t-235-87.5-200.5-132-85.5-76-7-19.5 4-15l206-316q9-12 24-12t15 4 100.5 79 217 118.5T1332 2023q74 0 132.5-42.5T1523 1871q0-53-41.5-110.5T1363 1667l-75-35q-42-19-86-41l-91-43q-46-22-89-44l-21-9q-174-90-245.5-149t-119-146T589 986q0-274 185.5-429.5T1279 401q140 0 277 33.5t219 73 92.5 49T1878 579q0 7-3 13l-132 298q-4 8-11.5 13t-16.5 5q-7 0-12-4l-67-31q-78-35-165.5-59T1301 790q-96 0-150 39.5T1097 940q0 119 190.5 199t389 194.5 285 245.5 86.5 281q0 156-97.5 302z" + }, + "children": [] + }] +}; +exports.u1F1F8 = u1F1F8; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F1F9.js b/dist/noto_emoji_regular/u1F1F9.js new file mode 100644 index 000000000..35755aa97 --- /dev/null +++ b/dist/noto_emoji_regular/u1F1F9.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F1F9 = void 0; +var u1F1F9 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2138 494q17 0 28.5 11.5T2178 534v315q0 17-11.5 28.5T2138 889h-606v1415q0 16-11.5 28t-28.5 12h-384q-17 0-28.5-12t-11.5-28V889H462q-17 0-28.5-11.5T422 849V534q0-17 11.5-28.5T462 494h1676z" + }, + "children": [] + }] +}; +exports.u1F1F9 = u1F1F9; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F1FA.js b/dist/noto_emoji_regular/u1F1FA.js new file mode 100644 index 000000000..7912128ee --- /dev/null +++ b/dist/noto_emoji_regular/u1F1FA.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F1FA = void 0; +var u1F1FA = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2089 492q17 0 28.5 11.5T2129 532v906q-4 172-25.5 290t-91 249-182.5 214-249 124-282 41q-191 0-350.5-65T693 2124t-156.5-252.5T471 1454l-1-49V532q0-17 11.5-28.5T510 492h431q17 0 28.5 11.5T981 532v873q0 109 5.5 179.5t39 135T1126 1817t173 33q93 0 154-25t93-65 50-93 21-184l1-75V532q0-17 11.5-28.5T1658 492h431z" + }, + "children": [] + }] +}; +exports.u1F1FA = u1F1FA; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F1FB.js b/dist/noto_emoji_regular/u1F1FB.js new file mode 100644 index 000000000..2ac6e816c --- /dev/null +++ b/dist/noto_emoji_regular/u1F1FB.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F1FB = void 0; +var u1F1FB = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2155 505q17 0 29 12t12 31q0 7-3 13l-646 1753q-3 10-13 18.5t-27 8.5h-415q-8 0-21-6t-19-21L406 561q-2-3-2-7l-1-6q0-19 12-31t29-12h390q14 0 24.5 7.5T874 533l425 1108 426-1108q5-13 15.5-20.5t22.5-7.5h392z" + }, + "children": [] + }] +}; +exports.u1F1FB = u1F1FB; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F1FC.js b/dist/noto_emoji_regular/u1F1FC.js new file mode 100644 index 000000000..9fb40cf32 --- /dev/null +++ b/dist/noto_emoji_regular/u1F1FC.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F1FC = void 0; +var u1F1FC = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2412 551.5q-1 2.5-1 4.5l-433 1752q0 7-10.5 19.5T1939 2340h-346q-9 0-21.5-6.5T1554 2308l-255-986-254 986q-2 10-11 21t-28 11H660q-20 0-29-9t-12-23L188 556q-2-3-2-10 0-17 12-29t29-12h433q15 0 26.5 9.5T701 538l168 850 234-853q0-4 11-17t29-13h313q13 0 25 9.5t15 20.5l234 853 168-850q3-14 14-23.5t27-9.5h431q20 0 31.5 13t11.5 28q0 3-1 5.5z" + }, + "children": [] + }] +}; +exports.u1F1FC = u1F1FC; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F1FD.js b/dist/noto_emoji_regular/u1F1FD.js new file mode 100644 index 000000000..a75c9b48c --- /dev/null +++ b/dist/noto_emoji_regular/u1F1FD.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F1FD = void 0; +var u1F1FD = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2182 2275q5 7 6 12t1 12q0 17-12 29t-29 12h-512q-11 0-20.5-4.5T1601 2322l-301-445-300 445q-12 18-34 18H452q-19 0-30-12.5t-11-30.5q0-10 7-22l582-846-578-859q-5-5-6-11t-1-13q0-18 12-29.5t29-11.5h488q21 0 34 18l322 469 322-469q13-18 34-18h489q17 0 29 12.5t12 30.5q0 12-6 22l-579 859z" + }, + "children": [] + }] +}; +exports.u1F1FD = u1F1FD; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F1FE.js b/dist/noto_emoji_regular/u1F1FE.js new file mode 100644 index 000000000..addb39bed --- /dev/null +++ b/dist/noto_emoji_regular/u1F1FE.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F1FE = void 0; +var u1F1FE = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2189 562l-641 957v782q0 17-12 29t-29 12h-416q-17 0-28.5-12t-11.5-29v-782L410 562q-5-5-6-11t-1-12q0-19 12-30t29-11h390q11 0 20.5 5t14.5 13l431 619 430-619q15-18 33-18h392q17 0 29 11.5t12 29.5q0 13-7 23z" + }, + "children": [] + }] +}; +exports.u1F1FE = u1F1FE; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F1FF.js b/dist/noto_emoji_regular/u1F1FF.js new file mode 100644 index 000000000..135c313ed --- /dev/null +++ b/dist/noto_emoji_regular/u1F1FF.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F1FF = void 0; +var u1F1FF = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2088 1968q17 0 28 11.5t11 27.5v294q0 17-11 28t-28 11H514q-16 0-29.5-11t-13.5-30q0-10 7-22l867-1397H514q-17 0-28.5-11.5T474 842V548q0-17 11.5-28t28.5-11h1574q17 0 29 12.5t12 29.5q0 12-6 21l-846 1396h811z" + }, + "children": [] + }] +}; +exports.u1F1FF = u1F1FF; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F201.js b/dist/noto_emoji_regular/u1F201.js new file mode 100644 index 000000000..864f62573 --- /dev/null +++ b/dist/noto_emoji_regular/u1F201.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F201 = void 0; +var u1F201 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2176 432q52 0 87.5 37.5T2299 555v1751q0 50-36.5 87.5T2176 2431H423q-50 0-86.5-37.5T300 2306V555q0-48 35.5-85.5T423 432h1753zm45 123q0-18-13.5-31.5T2176 510H423q-18 0-30.5 13.5T380 555v1751q0 19 12.5 33t30.5 14h1753q18 0 31.5-14t13.5-33V555zm-995 347q10 0 16.5 7t6.5 18v1089q0 11-6.5 17.5t-16.5 6.5H599q-10 0-17.5-6.5T574 2016v-241q0-8 7-16.5t18-8.5h348v-558H599q-11 0-18-8t-7-16V927q0-10 7-17.5t18-7.5h627zm776 0q10 0 17 7t7 18v1089q0 11-7 17.5t-17 6.5h-626q-25 0-25-24v-241q0-8 6-16.5t19-8.5h348v-558h-348q-13 0-19-8t-6-16V927q0-11 6.5-18t18.5-7h626z" + }, + "children": [] + }] +}; +exports.u1F201 = u1F201; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F202.js b/dist/noto_emoji_regular/u1F202.js new file mode 100644 index 000000000..258ab5e34 --- /dev/null +++ b/dist/noto_emoji_regular/u1F202.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F202 = void 0; +var u1F202 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2176 432q50 0 86.5 37.5T2299 557v1751q0 49-36 86t-87 37H423q-51 0-87-37t-36-86V557q0-50 36.5-87.5T423 432h1753zm45 125q0-19-13.5-32t-31.5-13H423q-18 0-30.5 13T380 557v1751q0 18 12.5 31.5T423 2353h1753q18 0 31.5-13.5t13.5-31.5V557zm-197 503q10 0 17 7.5t7 16.5v229q0 9-7.5 16t-16.5 7h-251q-3 190-52 348.5T1587.5 1954t-174 170-106.5 59q-3 0-8 1-6 0-12-3t-9-8l-126-191q-2-2-3-6t-1-7q0-9 6-15t57-34 118-101 114-197 50-286h-368v333q0 11-8 18t-17 7H871q-11 0-17.5-7.5T847 1669v-333H574q-8 0-16.5-7t-8.5-16v-229q0-9 8-16.5t17-7.5h273V827q0-11 7-18.5t17-7.5h229q8 0 16.5 6.5t8.5 19.5v233h370V827q0-11 7-18.5t17-7.5h229q8 0 16.5 7.5t8.5 18.5v233h251z" + }, + "children": [] + }] +}; +exports.u1F202 = u1F202; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F21A.js b/dist/noto_emoji_regular/u1F21A.js new file mode 100644 index 000000000..37ccfa306 --- /dev/null +++ b/dist/noto_emoji_regular/u1F21A.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F21A = void 0; +var u1F21A = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2176 432q52 0 87.5 37.5T2299 555v1751q0 50-36.5 87.5T2176 2431H423q-50 0-86.5-37.5T300 2306V555q0-48 35.5-85.5T423 432h1753zm45 123q0-18-13.5-31.5T2176 510H423q-18 0-30.5 13.5T380 555v1751q0 19 12.5 33t30.5 14h1753q18 0 31.5-14t13.5-33V555zm-258 691q11 0 18 6.5t7 18.5v135q0 11-7 18t-18 7h-149v156h104q11 0 18 6.5t7 16.5v136q0 9-7 17t-18 8H737q-12 0-19-8t-7-17v-136q0-8 7.5-15.5t18.5-7.5h104v-156H691q-11 0-18-8t-7-17v-135q0-10 7-17.5t18-7.5h150v-178l-46 112q-3 8-10 12.5t-15 4.5q-2 0-4-1l-4-2-156-66q-15-7-15-22 0-5 2-9l154-368q7-15 24-15 6 0 9 2l156 65q5 4 9 10t4 14v4q0 3-1 5l-27 66h997q11 0 18 7t7 18v135q0 11-8 18t-17 7h-104v181h149zm-996 625q6 3 10 10t4 14q0 6-1 8l-88 209q-7 16-23 16-6 0-10-3l-126-53q-6-3-10.5-8.5T718 2049q0-6 1-10l88-208q6-15 25-15 5 0 8 1zm980 176q0 3 1 7 0 8-4.5 14t-11.5 11l-130 42q-3 2-9 2-8 0-15-4.5t-8-12.5l-71-215q-2-3-2-7 0-18 17-23l131-44 7-1q8 0 14 4.5t10 11.5zm-648 18v6q0 18-19 24l-133 32-6 1q-8 0-15-5.5t-8-14.5l-53-220q-2-2-2-4 0-8 5-15t14-9l133-33h6q8 0 15 5t9 13zm320-8q2 3 2 8 0 8-5.5 14.5t-13.5 7.5l-132 36q-3 0-8 1-8 0-14.5-5t-7.5-13l-59-218v-4l-1-2q0-8 5-14.5t12-10.5l133-34q2 0 3.5-1t3.5-1q8 0 14.5 5t8.5 13zm-254-992h-80v181h80v-181zm261 0h-75v181h75v-181zm-598 181h69v-181h-69v181zm257 341h80v-156h-80v156zm341-156h-75v156h75v-156zm-598 156h69v-156h-69v156z" + }, + "children": [] + }] +}; +exports.u1F21A = u1F21A; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F22F.js b/dist/noto_emoji_regular/u1F22F.js new file mode 100644 index 000000000..09eb74b16 --- /dev/null +++ b/dist/noto_emoji_regular/u1F22F.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F22F = void 0; +var u1F22F = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2176 433q52 0 87.5 37.5T2299 557v1750q0 49-35.5 86.5T2176 2431H423q-52 0-87.5-37.5T300 2307V557q0-49 35.5-86.5T423 433h1753zm45 124q0-19-13.5-32.5T2176 511H423q-18 0-30.5 13.5T380 557v1750q0 19 12.5 32.5T423 2353h1753q18 0 31.5-13.5t13.5-32.5V557zm-313 927q8 0 16.5 6t8.5 19v587q0 11-8.5 17.5t-16.5 6.5h-643q-8 0-16.5-6.5t-8.5-17.5v-587q0-13 8.5-19t16.5-6h643zm-731 59q0 3 1 10 0 7-3.5 13.5t-11.5 9.5l-116 52v345q0 63-33.5 96.5T942 2107l-23 3H774q-8 0-15.5-5.5T749 2088l-24-183v-3q0-11 7-18.5t17-7.5h63v-144l-97 45q-6 3-11 3-8 0-13.5-4.5T682 1765l-56-123q0-3-1-11 0-16 15-22l172-78v-278H660q-8 0-16-8t-8-17v-136q0-9 8-16.5t16-7.5h152V807q0-9 8-16t17-7h185q11 0 18 7.5t7 15.5v261h107q7 0 15.5 6.5t8.5 17.5v136q0 11-8.5 18t-15.5 7h-107v174l41-20q2 0 7-1 20 0 26 14zm793-347q17 6 17 25v6q-49 113-77.5 148t-73.5 51.5-95 16.5h-368q-61 0-92.5-35t-31.5-80V837q0-9 8.5-16.5t16.5-7.5h163q8 0 16.5 6.5t8.5 17.5v121l400-115 7-1q8 0 14.5 5t8.5 12l38 130q0 2 1 4t1 3q0 19-19 24l-451 130v81h212l26-2q37 0 51.5-12t27.5-40l9-18q7-15 22-15 5 0 8 2zm-229 677l-7-3h-295l-7 3-2 7v73l2 6 7 2h295l7-2 2-6v-73zm2-145v-74l-2-6-7-2h-295l-7 2-2 6v74l2 5 7 3h295l7-3z" + }, + "children": [] + }] +}; +exports.u1F22F = u1F22F; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F232.js b/dist/noto_emoji_regular/u1F232.js new file mode 100644 index 000000000..e7b94330f --- /dev/null +++ b/dist/noto_emoji_regular/u1F232.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F232 = void 0; +var u1F232 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2176 432q50 0 86.5 36.5T2299 555v1753q0 49-36 86t-87 37H425q-52 0-88.5-37t-36.5-86V555q0-50 37.5-86.5T425 432h1751zm43 123q0-18-13-31.5t-30-13.5H425q-20 0-33.5 13.5T378 555v1753q0 18 13.5 31.5T425 2353h1751q17 0 30-13.5t13-31.5V555zM637 1334l-85-88q-7-6-7-17 0-10 7-17l185-194H614q-11 0-18-7t-7-17v-97q0-8 7-16.5t18-8.5h241v-96q0-8 6-15.5t20-7.5h133q14 0 20 7.5t6 15.5v96h196q10 0 17 7.5t7 17.5v97q0 11-7.5 17.5t-16.5 6.5h-67l108 111q5 8 5 18 0 13-5 18l-86 88q-9 7-18 7-10 0-17-7l-116-121v115q0 8-6 16t-20 8H881q-14 0-20-8t-6-16v-103l-182 190q-10 8-18 8-12 0-18-8zm1408-122q7 7 7 17 0 11-7 17l-84 88q-8 8-18 8t-18-8l-182-190v103q0 11-7 17.5t-18 6.5h-136q-12 0-17.5-8t-5.5-16v-115l-116 121q-7 7-18 7-8 0-18-7l-85-88q-7-6-7-18 0-10 7-18l108-111h-68q-8 0-16.5-6t-8.5-18v-97q0-10 7-17.5t18-7.5h197v-96q0-8 5.5-15.5t17.5-7.5h136q11 0 18 7t7 16v96h241q9 0 16.5 7.5t7.5 17.5v97q0 12-8 18t-16 6h-123zm-65 389q10 0 17 7t7 17v122q0 11-7.5 18t-16.5 7h-537v226q0 63-34.5 98t-89.5 35h-198q-10 0-17-6.5t-8-16.5l-14-142q0-10 7-18.5t18-8.5h110v-167H634q-9 0-16.5-7t-7.5-18v-122q0-10 7-17t17-7h1346zM774 1357h1066q11 0 18 7t7 17v122q0 10-7 17.5t-18 7.5H774q-11 0-18-7.5t-7-17.5v-122q0-10 7-17t18-7zm267 563q6 6 6 18 0 10-10 16l-194 158q-6 5-17 5-8 0-18-8l-87-107q-6-4-6-14 0-4 2.5-10t7.5-10l193-158q6-5 16-5 12 0 18 8zm866 26q11 6 11 20 0 9-4 14l-73 117q-4 5-9.5 8.5t-12.5 3.5-12-4l-236-145q-5-5-9-10t-4-11q0-3 1-7t3-7l74-116q4-6 10-9t12-3q7 0 12 4z" + }, + "children": [] + }] +}; +exports.u1F232 = u1F232; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F233.js b/dist/noto_emoji_regular/u1F233.js new file mode 100644 index 000000000..6d5e86810 --- /dev/null +++ b/dist/noto_emoji_regular/u1F233.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F233 = void 0; +var u1F233 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2176 433q50 0 86.5 37t36.5 87v1750q0 49-35.5 86.5T2176 2431H425q-52 0-88.5-37t-36.5-87V557q0-51 37.5-87.5T425 433h1751zm43 124q0-19-13-32.5t-30-13.5H425q-20 0-33.5 13.5T378 557v1750q0 19 13.5 32.5T425 2353h1751q17 0 30-13.5t13-32.5V557zm-350 1364q9 0 16.5 7t7.5 18v152q0 11-7.5 17.5t-16.5 6.5H732q-13 0-19.5-7.5T706 2098v-152q0-8 6.5-16.5t19.5-8.5h422v-114H891q-10 0-17-6.5t-7-17.5v-151q0-11 8-18.5t16-7.5h817q11 0 18 8.5t7 17.5v151q0 9-6.5 16.5t-18.5 7.5h-264v114h425zm64-1071q9 0 17.5 7.5t8.5 16.5v402q0 11-7.5 18.5t-18.5 7.5h-190q-10 0-17.5-7t-7.5-19v-221H880v221q0 12-8.5 19t-16.5 7H663q-7 0-15-7t-8-19V874q0-11 8.5-17.5T663 850h491V721q0-11 7.5-18t18.5-7h239q11 0 18 7t7 18v129h489zM834 1588q-2 2-8 2-12 0-19-11l-86-140q-4-5-4-12 0-17 16.5-23.5T797 1386t126.5-61 118-93 45.5-60 27-17q9 0 15 6l118 112q8 10 8 18 0 16-58 81t-152.5 124.5T834 1588zm486-361l-3-33q0-10 6-19t18-9l172-3q9 0 16 5t8 16q0 42 37.5 114t200.5 72q18 0 20-1 12 0 19.5 7t7.5 18v154q0 12-7.5 18.5t-17.5 6.5q-113 0-187.5-11t-142-53-104.5-123-43-159z" + }, + "children": [] + }] +}; +exports.u1F233 = u1F233; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F234.js b/dist/noto_emoji_regular/u1F234.js new file mode 100644 index 000000000..b14adb108 --- /dev/null +++ b/dist/noto_emoji_regular/u1F234.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F234 = void 0; +var u1F234 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2176 432q52 0 87.5 37.5T2299 555v1751q0 50-36.5 87.5T2176 2431H425q-51 0-88-37t-37-88V555q0-49 36-86t89-37h1751zm43 123q0-18-13-31.5t-30-13.5H425q-20 0-33.5 13.5T378 555v1751q0 19 13.5 32t33.5 13h1751q17 0 30-13t13-32V555zM955 1492q-8 0-12-5.5t-4-10.5v-153q0-5 4-11t12-6h740q9 0 13.5 6t4.5 11v153q0 5-5.5 10.5t-12.5 5.5H955zm900 88q6 0 11 6t5 12v484q0 16-16 16H796q-8 0-13-4t-5-12v-484q0-8 6-13t12-5h1059zm-204 191l-6-3h-639l-7 3-3 5v127l3 6 7 3h639l6-3 3-6v-127zm445-540l-111 179q-4 8-15 8-21 0-220.5-109T1325 1021q-222 178-423 287.5T680 1418q-10 0-14-8l-111-179-2-6q-2-3-2-7 0-3 9.5-9t22.5-12l42-20q102-51 204.5-112T1026 940t192.5-146 99.5-83l5-1q11 0 17 8t87.5 75 223 164.5 276 169 148.5 76 19 9 5 12.5q0 3-3 7z" + }, + "children": [] + }] +}; +exports.u1F234 = u1F234; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F235.js b/dist/noto_emoji_regular/u1F235.js new file mode 100644 index 000000000..7e12b2a6d --- /dev/null +++ b/dist/noto_emoji_regular/u1F235.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F235 = void 0; +var u1F235 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2176 432q52 0 87.5 37.5T2299 555v1753q0 50-36.5 86.5T2176 2431H425q-50 0-87.5-36.5T300 2308V555q0-49 36-86t89-37h1751zm43 123q0-17-13-30t-30-13H425q-20 0-33.5 13T378 555v1753q0 18 13.5 31.5T425 2353h1751q17 0 30-13.5t13-31.5V555zm-276 599q7 0 15 6t8 20v130q0 11-7 17.5t-16 6.5h-399v57h399q9 0 16 7t7 18v596q0 60-32 90t-72 32l-10 1h-159q-9 0-15.5-5.5t-8.5-15.5l-22-120q0-11 7-17t17-6h106v-400h-233v221h38v-112q0-11 8-18.5t17-7.5h111q8 0 16.5 7.5t8.5 18.5v248q0 11-8.5 18t-16.5 7h-503q-10 0-17-8t-7-17v-248q0-11 6.5-18.5t17.5-7.5h110q11 0 18 7.5t7 18.5v112h35v-221h-230v539q0 10-7 17.5t-18 7.5H991q-11 0-18-7t-7-18v-694q0-11 7-18t18-7h394v-57H991q-11 0-18-7t-7-17v-130q0-11 7.5-18.5t17.5-7.5h168v-92h-133q-7 0-15-6t-8-20V906q0-11 7-17t16-6h133v-86q0-12 7.5-19.5t15.5-7.5h141q8 0 16 6.5t8 20.5v86h238v-86q0-12 7-19.5t18-7.5h140q10 0 17 7.5t7 19.5v86h132q11 0 17.5 7t6.5 16v130q0 11-7 18.5t-17 7.5h-132v92h169zm-596 0h238v-92h-238v92zm-400 660l3 8q0 3 1 7 0 10-7 17l-226 236q-6 6-19 6-14-2-19-11l-74-105q-5-7-5-14 0-10 7-18l226-235q10-7 20-7 11 2 19 11zm-344-446q-5-3-6-8l-4-9q0-10 6-19l79-103q3-4 8.5-6t10.5-2q7 0 15 4l195 147q10 6 10 20 0 8-6 14l-79 102q-10 10-21 10-6 0-14-5zm22-406q-10-6-11-16 0-13 5-19l80-102q6-9 20-9 8 0 15 4l195 145q4 5 6 9.5t2 12.5q0 9-4 14l-81 102q-8 10-19 10-10 0-15-6z" + }, + "children": [] + }] +}; +exports.u1F235 = u1F235; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F236.js b/dist/noto_emoji_regular/u1F236.js new file mode 100644 index 000000000..dbebd6103 --- /dev/null +++ b/dist/noto_emoji_regular/u1F236.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F236 = void 0; +var u1F236 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2166 451q52 0 87 37t35 86v1733q0 50-35.5 86t-86.5 36H433q-51 0-86.5-35.5T311 2307V574q0-50 35.5-86.5T433 451h1733zm44 123q0-18-12.5-31.5T2166 529H433q-17 0-30.5 13.5T389 574v1733q0 18 13.5 31t30.5 13h1733q19 0 31.5-13t12.5-31V574zm-302 321q12 0 18.5 7.5t6.5 16.5v189q0 12-7 18.5t-18 6.5h-602l-28 47q-14 24-30 49h574q9 0 17.5 7t8.5 18v750q0 65-37 99t-75 34h-151q-9 0-16-5.5t-9-14.5l-24-141q0-15 7-22t17-7h61v-70h-444v236q0 10-7.5 17t-17.5 7H974q-11 0-18-7t-7-17v-550q-45 39-94.5 74t-55 37-15.5 2q-10-5-15-13l-98-164q-4-6-4-12 0-19 33-33.5t138.5-99T1037 1133H747q-10 0-17.5-6.5T722 1108V919q0-10 7-17t18-7h418q24-61 35-98l16-57q5-20 9.5-26.5t18.5-6.5h174q14 0 20 8.5t6 17.5q-2 2-7.5 42.5T1406 895h502zm-731 827h444v-74h-444v74zm444-303h-444v74h444v-74z" + }, + "children": [] + }] +}; +exports.u1F236 = u1F236; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F237.js b/dist/noto_emoji_regular/u1F237.js new file mode 100644 index 000000000..15aa603ef --- /dev/null +++ b/dist/noto_emoji_regular/u1F237.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F237 = void 0; +var u1F237 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2166 452q51 0 86.5 36t35.5 86v1733q0 50-35.5 86t-86.5 36H433q-51 0-86.5-35.5T311 2307V574q0-51 35.5-86.5T433 452h1733zm44 122q0-17-12.5-30.5T2166 530H433q-17 0-30.5 13.5T389 574v1733q0 17 13.5 30.5T433 2351h1733q19 0 31.5-13.5t12.5-30.5V574zm-323 204q10 0 17 7t7 18v1134l-1 16q-6 85-45.5 126t-93.5 46l-13 1h-228q-9 0-15.5-6t-7.5-14l-31-215v-5q0-9 6.5-16t17.5-7h141v-144h-631q-18 102-63.5 193T860 2058t-46.5 58-13.5 3q-10 0-15-5l-170-145q-3-3-5.5-7.5t-2.5-9.5q0-11 7-18 78-102 113.5-186t35.5-168V803q0-11 7-18t18-7h1099zm-246 262h-620v134h620v-134zm0 472v-132h-620v132h620z" + }, + "children": [] + }] +}; +exports.u1F237 = u1F237; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F238.js b/dist/noto_emoji_regular/u1F238.js new file mode 100644 index 000000000..0d75da18a --- /dev/null +++ b/dist/noto_emoji_regular/u1F238.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F238 = void 0; +var u1F238 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2176 433q52 0 87.5 37.5T2299 557v1750q0 49-35.5 86.5T2176 2431H423q-52 0-87.5-37.5T300 2307V557q0-49 35.5-86.5T423 433h1753zm45 124q0-19-13.5-32.5T2176 511H423q-18 0-31.5 13.5T378 557v1750q0 19 13.5 32.5T423 2353h1753q18 0 31.5-13.5t13.5-32.5V557zm-247 357q11 0 18 7.5t7 18.5v848q0 11-7 18t-18 7h-507v342q0 11-7 18t-17 7h-267q-11 0-18-7.5t-7-17.5v-342H644q-9 0-17-6t-8-19V940q0-11 8-18.5t17-7.5h507V705q0-11 7.5-18t17.5-7h267q8 0 16 6t8 19v209h507zm-823 212H869q-7 0-12 4t-5 12v113q0 8 5 11.5t12 3.5h282v-144zm-299 461q0 8 5 11.5t12 3.5h282v-144H869q-7 0-12 3.5t-5 11.5v114zm615 15h284q6 0 10.5-4t4.5-11v-114q0-6-4.5-10.5t-10.5-4.5h-284v144zm284-332q5 0 10-3.5t5-11.5v-113q0-7-4.5-11.5t-10.5-4.5h-284v144h284z" + }, + "children": [] + }] +}; +exports.u1F238 = u1F238; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F239.js b/dist/noto_emoji_regular/u1F239.js new file mode 100644 index 000000000..90956a9ea --- /dev/null +++ b/dist/noto_emoji_regular/u1F239.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F239 = void 0; +var u1F239 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2176 432q50 0 86.5 36.5T2299 555v1753q0 49-36 86t-87 37H423q-51 0-87-37t-36-86V555q0-50 36.5-86.5T423 432h1753zm45 123q0-17-13.5-30t-31.5-13H423q-18 0-31.5 13T378 555v1753q0 18 13.5 31.5T423 2353h1753q18 0 31.5-13.5t13.5-31.5V555zm-280 291q11 0 18.5 7.5t7.5 16.5v1125q0 59-30.5 88.5T1872 2117l-20 2h-202q-10 0-17-6t-8-15l-22-170q0-12 7-19.5t18-7.5h127V870q0-10 7-17t18-7h161zm-289 918h-161q-11 0-18-8t-7-18V870q0-9 7-16.5t18-7.5h161q11 0 18 7t7 17v868q0 10-7.5 18t-17.5 8zm-298-19q10 0 17 8t7 16v329q0 11-7.5 18t-16.5 7H689q-24 0-24-25v-329q0-8 6-16t18-8h665zm-169 137l-5-3H863l-7 3-2 6v91l2 7 7 2h317l5-2 3-7v-91zm208-965q11 0 18 8.5t7 16.5v259q0 10-7.5 17t-17.5 7h-112q-9 0-17-6.5t-8-17.5v-99h-144v60h76q12 0 18.5 8.5t6.5 16.5v97q0 11-7 18.5t-18 7.5h-76v43h153q8 0 16 6.5t8 17.5v98q0 12-8 18t-16 6h-153v44h242q10 0 17 8.5t7 16.5v97q0 11-7.5 18t-16.5 7H689q-24 0-24-25v-97q0-8 5.5-16.5t18.5-8.5h241v-44H777q-9 0-17-6t-8-18v-98q0-11 8.5-17.5t16.5-6.5h153v-43h-76q-10 0-17.5-6.5T829 1284v-97q0-9 6.5-17t18.5-8h76v-60H788v99q0 10-8 17t-17 7H651q-10 0-17.5-6.5T626 1201V942q0-8 7-16.5t19-8.5h278v-89q0-8 6.5-16.5T955 803h133q11 0 17.5 8.5t6.5 16.5v89h281z" + }, + "children": [] + }] +}; +exports.u1F239 = u1F239; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F23A.js b/dist/noto_emoji_regular/u1F23A.js new file mode 100644 index 000000000..399fa2084 --- /dev/null +++ b/dist/noto_emoji_regular/u1F23A.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F23A = void 0; +var u1F23A = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2176 432q50 0 86.5 36.5T2299 555v1753q0 50-36.5 86.5T2176 2431H423q-50 0-86.5-36.5T300 2308V555q0-50 36.5-86.5T423 432h1753zm45 123q0-18-13.5-31.5T2176 510H423q-18 0-31.5 13.5T378 555v1753q0 18 13.5 31.5T423 2353h1753q18 0 31.5-13.5t13.5-31.5V555zm-271 329q12 0 18 8.5t6 16.5v418q0 9-6.5 16.5t-17.5 7.5h-191q-11 0-18-7.5t-7-16.5v-258H896v258q0 9-7 16.5t-18 7.5H680q-11 0-18-7t-7-17V909q0-9 7-17t18-8h209V695q0-4 4.5-10t12.5-6h175q16 0 16 16v189h98V695q0-4 3.5-10t14.5-6h173q10 0 14 5.5t4 10.5v189h102l79-197q2-8 8-11.5t14-3.5l10 1 154 65q14 6 14 23 0 7-1 9l-47 114h213zm-77 806q11 0 18 7t7 17v422q0 11-8 18.5t-17 7.5H765q-10 0-17.5-7.5T740 2136v-422q0-10 7-17t18-7h308l35-104h-101q-9 0-17-6.5t-8-18.5v-374q0-11 7-18t18-7h623q11 0 18 7t7 18v374q0 12-8.5 18.5t-16.5 6.5h-291l-35 104h569zm-711-265l1 7 7 3h297l6-3 3-7v-102l-3-7-6-2h-297l-7 2-1 7v102zm516 446l-2-7-6-3H967l-7 3-2 7v111l2 5 7 3h703l6-3 2-5v-111z" + }, + "children": [] + }] +}; +exports.u1F23A = u1F23A; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F250.js b/dist/noto_emoji_regular/u1F250.js new file mode 100644 index 000000000..0239d4d15 --- /dev/null +++ b/dist/noto_emoji_regular/u1F250.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F250 = void 0; +var u1F250 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2231.5 1959.5Q2091 2208 1840.5 2355T1300 2502t-540.5-146.5T368 1960t-141-531 141-531 391.5-395.5T1300 356t540.5 147 391 395.5T2372 1429t-140.5 530.5zm-71.5-1027Q2027 702 1796.5 569T1300 436q-264 0-495 131T440 929.5 306 1429q0 269 134.5 500t365 363 494.5 132q267 0 496.5-134t363-364 133.5-497q0-266-133-496.5zM1203 1388q-9 0-17-7.5t-8-17.5V804q0-10 8-17t17-7h667q11 0 18 7t7 17v559q0 8-8 16.5t-17 8.5h-667zm521-375v-70l-3-6-7-3h-355l-7 3-2 6v70l2 6 7 3h355l7-3zm-3 138l-7-3h-355l-7 3-2 5v70l2 7 7 3h355l7-3 3-7v-70zm253 296q10 0 17.5 6.5t7.5 17.5v129q0 11-7.5 18t-17.5 7h-140v60h140q10 0 17.5 7t7.5 18v105q0 11-7 18t-18 7h-140v173q0 63-33 95t-68 36l-20 2h-140q-10 0-16.5-6.5t-8.5-14.5l-26-148q0-9 8.5-16t17.5-7h60v-114h-505q-11 0-18-7.5t-7-17.5v-105q0-11 7-18t18-7h505v-60h-505q-25 0-25-25v-129q0-10 7-17t18-7h871zm-535 449q8 0 16 7t8 18v127q0 11-7 18t-17 7h-202q-11 0-17.5-7.5t-6.5-17.5v-127q0-9 6.5-17t17.5-8h202zM593 966q-2-6-2-10 0-7 4-13.5t12-8.5l342-135q3-2 10-2 17 0 23 16l59 149q2 2 2 4v5q0 5-4 12.5t-11 9.5l-348 138q-3 0-6 1-8 0-13.5-5.5T652 1115zm491 315q0 3 1 8 0 8-3.5 15t-11.5 9l-89 35v743q0 10-7.5 17t-17.5 7H797q-10 0-17-7t-7-17v-659l-93 36q-3 0-6 1-8 0-13.5-5t-8.5-12l-59-149q-2-6-2-10 0-7 4-13.5t12-8.5l385-153q3 0 10-1 6 0 13 3.5t10 11.5z" + }, + "children": [] + }] +}; +exports.u1F250 = u1F250; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F251.js b/dist/noto_emoji_regular/u1F251.js new file mode 100644 index 000000000..f2d31ca54 --- /dev/null +++ b/dist/noto_emoji_regular/u1F251.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F251 = void 0; +var u1F251 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2231.5 1959.5Q2091 2208 1840.5 2355T1300 2502t-540.5-146.5T368 1960t-141-531q0-286 143.5-536T764 499.5 1300 356t535.5 144 393 393.5T2372 1429q0 282-140.5 530.5zm-72-1027.5q-133.5-231-364-364.5T1300 434q-264 0-494.5 132t-365 363T306 1429q0 265 132.5 496T802 2289t498 133 496.5-133 363-363.5T2293 1429t-133.5-497zM1925 956q9 0 17 8t8 17v189q0 11-8 18t-17 7h-170v779q0 80-43 122t-98 46l-14 1h-186q-20 0-25-21l-31-189q-2-4-2-5 0-11 7-17.5t19-6.5h88v-709H655q-25 0-25-25V981q0-11 7-18t18-7h1270zm-593 355q11 0 18.5 8.5t7.5 16.5v490q0 11-8 18t-18 7H803q-9 0-17-6t-8-19v-490q0-11 7-18t18-7h529zm-158 171l-7-4H967l-5 3-3 7v186l3 7 5 3h200l7-3 3-7v-186z" + }, + "children": [] + }] +}; +exports.u1F251 = u1F251; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F300.js b/dist/noto_emoji_regular/u1F300.js new file mode 100644 index 000000000..bcdb324c0 --- /dev/null +++ b/dist/noto_emoji_regular/u1F300.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F300 = void 0; +var u1F300 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1889.5 1876.5q-143.5 205.5-392 328T986 2327q-211 0-386-83.5T310 2008q96 54 192 79.5t201 25.5q83 0 138.5-12.5T897 2064q0-16-15-23.5t-98.5-83-151.5-216-68-306.5q0-236 143.5-441T1100 665.5 1611 542q209 0 384.5 82.5T2289 861q-89-49-191-77t-202-28q-87 0-140.5 13t-53.5 36q0 20 35 40.5t113 104 130.5 211.5 52.5 274q0 236-143.5 441.5zm-376-228Q1603 1559 1603 1435q0-125-89.5-214.5T1300 1131q-125 0-214.5 89.5T996 1435q0 124 89.5 213.5T1300 1738q124 0 213.5-89.5z" + }, + "children": [] + }] +}; +exports.u1F300 = u1F300; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F301.js b/dist/noto_emoji_regular/u1F301.js new file mode 100644 index 000000000..fdfd12997 --- /dev/null +++ b/dist/noto_emoji_regular/u1F301.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F301 = void 0; +var u1F301 = { + "viewBox": "0 0 2637.4458 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M103.946 427q-18.5-13-18.5-39 0-23 12.5-35.5t55.5-12.5q54 0 73 11.5t19 36.5q0 32-18 41t-45 9q-8 0-16.5 1t-17.5 1q-26 0-44.5-13zm2417.5 408.5q-15 13.5-67 13.5-32 0-55.5-9.5t-23.5-43.5q0-22 12.5-34.5t55.5-12.5h30q23 0 43 12t20 36q0 25-15 38.5zm-304.5 1692q-15.5 13.5-69.5 13.5-31 0-53.5-11.5t-22.5-40.5q0-24 14-36t59-12q53 0 70.5 13t17.5 35q0 25-15.5 38.5zm358-2102q-14.5 14.5-64.5 14.5-45 0-63-13.5t-18-38.5 15-36.5 70-11.5q38 0 56.5 12t18.5 36q0 23-14.5 37.5zm-144.5 641.5q-19 13-74 13-38 0-63.5-11.5t-25.5-42.5q0-24 16-36t58-12q61 0 84.5 11.5t23.5 36.5q0 28-19 41zm-1474.5-640.5q-24.5-13.5-24.5-38.5t19-36.5 69-11.5h39q36 0 63.5 11.5t27.5 36.5-20 37.5-66 12.5q-9 0-21.5 1t-25.5 1q-36 0-60.5-13.5zm522.5 1805.5q-21 14-96 14-42 0-71.5-12t-29.5-41q0-23 18-35t80-12h38q35 0 58.5 12.5t23.5 34.5q0 25-21 39zm-1301-1150q-27 0-44.5-13.5t-17.5-39.5q0-24 14.5-35.5t48.5-11.5h31q30 0 49 11.5t19 35.5q0 32-18.5 42t-46.5 10zm152-346.5q23 12.5 26 35.5 0 26-21.5 39t-95.5 13q-42 0-71.5-11.5t-29.5-40.5q0-22 19.5-34t40.5-12q11 0 26-1t29-1q54 0 77 12.5zm268 1007.5q-12 0-24 1-36 0-60-14t-24-39 19.5-36.5 85.5-11.5q63 0 86.5 12.5t26.5 36.5q0 31-26 41t-62 10h-22zm1751-1114q-12 0-26 1-36 0-60-14t-24-38 18.5-36 73.5-12q70 0 97.5 11.5t27.5 36.5q0 31-25 41t-61 10h-21zm-2009.5-271q24.5-14 86.5-14h24q26 0 46 13t20 39q0 27-26.5 43.5t-66.5 16.5q-77 0-92.5-18.5t-15.5-38.5q0-27 24.5-41zm613.5 1775q31 3 49 15.5t18 36.5q0 29-29.5 45t-64.5 16q-60 0-83.5-14t-23.5-44q0-29 27-42t66-13h41zm-837-1520.5q-25-13.5-25-42.5 0-27 23-41.5t88-14.5q51 0 71.5 14t20.5 39q0 28-28 43.5t-65 15.5q-60 0-85-13.5zm310 1513.5q32 3 50 16.5t18 37.5q0 28-30.5 43.5t-65.5 15.5q-65 0-86-14.5t-21-41.5q0-29 25-43t110-14zm194-1773q23-15 88-15h34q29 0 49 13.5t20 41.5q0 33-24.5 48t-66.5 15l-31-1q-45 0-68.5-14.5t-23.5-45.5q0-27 23-42zm-153.5 182.5q25.5-13.5 85.5-13.5h34q27 0 47 13.5t20 41.5q0 30-22 46t-77 16l-33 1q-36 0-58-17t-22-45q0-29 25.5-42.5zm281 2007.5q-27.5 14-62.5 14h-27q-53 0-75-16.5t-22-45.5q0-28 24.5-41.5t86.5-13.5h26q46 0 61.5 17t15.5 39q0 33-27.5 47zm-341.5-1277q21 3 36 16.5t15 38.5q0 32-25.5 46t-63.5 14h-30q-53 0-74-15.5t-21-44.5q0-27 22.5-41.5t86.5-14.5h27q13 0 27 1zm1530.5-908q24.5-14 86.5-14h25q25 0 45 13t20 39q0 27-26.5 43.5t-66.5 16.5q-77 0-92.5-19t-15.5-38q0-27 24.5-41zm411.5 1796q27 0 47 12.5t20 37.5q0 27-27.5 44t-65.5 17q-63 0-86-14t-23-44q0-29 27-42t97-13q9 0 11 2zm-995-1070q-22-2-36.5-17t-14.5-35q0-28 24.5-42t86.5-14q51 0 71.5 14t20.5 39q0 28-29 43.5t-64 15.5q-14 0-29-2zm319 841v7q0 28-29 44t-65 16q-61 0-84.5-13.5t-23.5-42.5q0-27 22-41.5t88-14.5h24q37 2 52.5 15.5t15.5 29.5zm35-1200q30 0 48.5 14t18.5 38q0 29-29.5 44t-64.5 15q-60 0-84.5-13.5t-24.5-42.5 28.5-43 96.5-14q9 0 11 2zm205 881q31 0 50 13.5t19 38.5q0 29-30.5 44t-64.5 15q-66 0-87-15t-21-41q0-28 23-42.5t100-14.5q10 0 11 2zm-380-1069q22 14 22 40 0 28-28.5 43.5t-62.5 15.5q-68 0-89.5-14.5t-21.5-40.5q0-25 21-41.5t81-16.5q56 0 78 14zm-308 744q31 0 50 13.5t19 38.5q0 28-29 43.5t-63 15.5q-67 0-89-14t-22-41q0-30 26-43t65-13h43zm1039-826q-49 0-70-15.5t-21-44.5 25-43 86-14h33q31 0 50 14t19 41q0 33-26.5 47.5t-63.5 14.5h-32zm-971 2077.5q-25 14.5-62 14.5h-32q-46 0-69.5-15t-23.5-45q0-29 25-43t86-14h26q41 0 58 15t17 40q0 33-25 47.5zm621-1452.5q-17 2-33 2-39 0-65-15t-26-48q0-28 26.5-42t78.5-14h35q33 0 53 13.5t20 42.5-22.5 45-66.5 16zm200 912l-48 1q-51 0-72.5-16t-21.5-45q0-28 24.5-41.5t86.5-13.5h34q29 0 49 13.5t20 41.5q0 24-19.5 42t-52.5 18zm6-1251h33q30 0 49 13.5t19 41.5q0 33-26.5 47.5t-63.5 14.5h-30q-45 0-69-15t-24-46q0-24 19.5-40t92.5-16zm140 958q-46 0-68.5-15t-22.5-45q0-27 21.5-42t81.5-15h36q31 0 52.5 14t21.5 43q0 34-27 47.5t-62 13.5zm-381-1054q-51 0-71.5-15.5t-20.5-44.5q0-27 23-42t82-15q70 0 89.5 15t19.5 42q0 33-23.5 46.5t-63.5 13.5h-35zm-302.5 656.5q25.5-13.5 85.5-13.5 64 0 83 14t19 41q0 33-25.5 47.5t-67.5 14.5l-33-1q-52 0-69.5-18.5t-17.5-41.5q0-29 25.5-42.5zm-300.5-944q26-13.5 86-13.5h22q26 0 47.5 13t21.5 39q0 28-27 44t-66 16q-76 0-93-18t-17-38q0-29 26-42.5zm633 1779.5q37 3 52.5 16.5t15.5 35.5q0 28-27.5 43.5t-66.5 15.5q-65 0-86.5-14.5t-21.5-41.5q0-26 22.5-41t100.5-15q10 0 11 1zm-1466-1063q-23-14-23-44 0-27 23.5-40.5t87.5-13.5q47 0 68.5 13t21.5 39q0 29-29 44.5t-64 15.5q-62 0-85-14zm253 796q36 3 52.5 16.5t16.5 35.5q0 28-29 43.5t-64 15.5q-67 0-88.5-13.5t-21.5-41.5q0-29 23.5-43t87.5-14zm-91.5-1054q-21.5-14-21.5-42 0-26 22-41t82-15h28q31 0 51 13.5t20 39.5q0 24-27.5 41.5t-68.5 17.5q-64 0-85.5-14zm397.5 813q27 0 47 14t20 39q0 29-29.5 43.5t-62.5 14.5q-69 0-90-14t-21-41q0-30 26-43t65-13h45zm-686 101.5q-28 16.5-65 16.5-60 0-84.5-13.5t-24.5-42.5q0-28 25.5-42t85.5-14h24q30 2 48.5 15t18.5 37q0 27-28 43.5zm1349-1275.5q-51 0-71.5-15.5t-20.5-44.5 25-43 86-14q64 0 83 14t19 41q0 33-26 47.5t-63 14.5h-32zm-604 604q-20 15-69 15l-26 1q-31 0-53-14t-22-47q0-28 22.5-43t72.5-15h26q38 0 53.5 16.5t15.5 41.5q0 30-20 45zm68 930q-42 0-62-15t-20-45q0-28 22.5-42t72.5-14h31q29 0 47.5 14t18.5 43q0 33-24.5 46.5t-57.5 13.5zm39.5-1260.5q24.5-13.5 86.5-13.5h34q29 0 49 13.5t20 41.5q0 35-30 49t-67 14l-30-1q-51 0-69-20t-18-42q0-28 24.5-41.5zm154 904q24.5-13.5 86.5-13.5 64 0 83.5 14t19.5 43q0 34-29.5 47.5t-65.5 13.5l-33-1q-50 0-68-20t-18-42q0-28 24.5-41.5zM956.446 651q-47 0-69.5-15t-22.5-45q0-29 26.5-43t79.5-14h36q30 0 50.5 13.5t20.5 41.5q0 33-27 47.5t-64 14.5h-30zm851 1785q23 0 37.5 15t14.5 38q0 33-27 48t-66 15l-28-1q-45 0-69-15.5t-24-46.5q0-28 26.5-42t79.5-14q14 0 28 1zm326-1036q-18 2-34 2-39 0-65-14.5t-26-47.5q0-28 24.5-41.5t86.5-13.5h33q33 0 51.5 13.5t18.5 41.5q0 21-16.5 40.5t-72.5 19.5zm-1285.5-124.5q19.5 13.5 19.5 41.5 0 30-21.5 45.5t-79.5 15.5h-29q-34 0-58-14t-24-46q0-26 19-41t92-15q62 0 81.5 13.5z" + }, + "children": [] + }] +}; +exports.u1F301 = u1F301; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F302.js b/dist/noto_emoji_regular/u1F302.js new file mode 100644 index 000000000..613f7bff0 --- /dev/null +++ b/dist/noto_emoji_regular/u1F302.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F302 = void 0; +var u1F302 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2331.5 1669q-10.5 16-30.5 24L516 2424l-148 119q-19 14-41 14-26 0-47-20t-21-48q0-12 4-23.5t13-21.5l126-137 876-1729q8-17 24-26t35-9q26 0 45 19t19 44q0 10-1.5 19.5T1398 645q0 86 62 147.5t148 61.5q17 0 34.5-4.5t34.5-4.5q26 0 45.5 18.5T1742 908q0 12-2 19l-6 16q-3 9-5.5 22.5t-2.5 36.5q0 55 26 101l330-292q24-22 36.5-48.5T2131 707q0-55-40.5-95.5T1997 571q-17 0-29.5 3.5T1941 583l-22 9q-11 4-26 4-39 0-68-29t-29-70q0-57 61-89.5t140-32.5q136 0 234 98t98 234q0 72-30 137t-88 116l-284 251q20 0 39-4t39-4q27 0 46.5 19t19.5 45q0 22-8 46t-8 48q0 87 61 147.5t148 60.5q31 0 54.5 15t23.5 49q0 20-10.5 36z" + }, + "children": [] + }] +}; +exports.u1F302 = u1F302; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F303.js b/dist/noto_emoji_regular/u1F303.js new file mode 100644 index 000000000..455e2f83b --- /dev/null +++ b/dist/noto_emoji_regular/u1F303.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F303 = void 0; +var u1F303 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2160 1109q69 0 117.5 49.5T2326 1276v1188H274v-726q0-68 49-117.5t118-49.5h466q71 0 119 50t48 117v96h477v-558q0-68 49-117.5t118-49.5h442zm-1486.5-75.5Q520 903 520 706q0-219 138.5-352T1030 221h33q37 0 71 10t34 30q0 8-15 20.5t-48 35.5l-54 37q-83 59-122.5 143T889 673q0 140 75.5 241t181.5 118.5 106 55.5q0 37-73.5 56.5T1030 1164q-203 0-356.5-130.5zM1378 790q-5-4-5-10 0-7 9-8l67-11q10 0 18.5-7.5T1479 736l28-59q2-8 8-8t11 8l29 58q4 8 13.5 15t19.5 8l65 7q11 2 11 10 0 5-5 9l-47 45q-12 14-12 33v4l15 66v6q0 9-8 9l-7-2-60-33q-5-4-18-4-5 0-10.5 1t-10.5 4l-57 34q-4 3-8 3-9 0-9-8 0-2 1-3t1-3l11-67v-5q0-8-4-17t-10-13zm314-373q-6-4-6-10 0-7 11-9l66-10q9-2 18-9t14-15l26-59q3-8 9-8t10 8l30 57q3 8 12.5 14.5t18.5 7.5l68 8q9 3 9 9 0 5-4 9l-48 45q-5 5-8.5 14.5T1914 487l1 7 14 66v5q0 8-7 8-6 0-8-2l-59-32q-8-4-21-4-11 0-18 4l-57 36q-6 2-8 2-8 0-8-11 0-4 3-19l7-50v-7q0-8-3-16.5t-9-13.5zm511 911q0-6-13.5-18t-31.5-12h-54q-20 0-33 14t-13 33v84q0 20 13 33.5t33 13.5h54q18 0 31.5-11t13.5-19v-118zM548 2145q0-20-13.5-33.5T503 2098h-55q-19 0-32 13.5t-13 33.5v85q0 20 13 33t32 13h55q18 0 31.5-13t13.5-33v-85zm1459-280q0-6-13.5-17.5T1962 1836h-55q-19 0-32 13.5t-13 32.5v85q0 20 13 33t32 13h55q18 0 31.5-11t13.5-18v-119zM752 2145q0-20-13.5-33.5T707 2098h-54q-20 0-33 13.5t-13 33.5v85q0 20 13 33t33 13h54q18 0 31.5-13t13.5-33v-85zm410 0q0-20-13.5-33.5T1115 2098h-53q-19 0-32.5 13.5T1016 2145v85q0 20 13.5 33t32.5 13h53q20 0 33.5-13t13.5-33v-85zm1041-536q0-6-13.5-17.5T2158 1580h-54q-20 0-33 13.5t-13 33.5v85q0 18 13 31.5t33 13.5h54q18 0 31.5-11.5t13.5-17.5v-119zM957 1883q0-19-14.5-32t-31.5-13h-54q-18 0-32 13t-14 32v86q0 19 14 32t32 13h54q17 0 31.5-13t14.5-32v-86zm887-538q0-19-13.5-33t-31.5-14h-54q-20 0-33 14t-13 33v84q0 20 13 33.5t33 13.5h54q18 0 31.5-13.5t13.5-33.5v-84zM548 1883q0-19-13.5-32t-31.5-13h-55q-19 0-32 13t-13 32v86q0 19 13 32t32 13h55q18 0 31.5-13t13.5-32v-86zm204 0q0-19-13.5-32t-31.5-13h-54q-20 0-33 13t-13 32v86q0 19 13 32t33 13h54q18 0 31.5-13t13.5-32v-86z" + }, + "children": [] + }] +}; +exports.u1F303 = u1F303; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F304.js b/dist/noto_emoji_regular/u1F304.js new file mode 100644 index 000000000..b19272ff6 --- /dev/null +++ b/dist/noto_emoji_regular/u1F304.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F304 = void 0; +var u1F304 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2478 1304v918q0 91-65 157t-157 66H345q-91 0-157-66t-66-157v-992q56-31 112.5-58t118.5-38l-44-48q-10-12-10-25 0-17 10-27.5t24-13.5l282-30-108-270q-3-6-3-12 0-17 11.5-29t28.5-12q6 0 12 3l275 93-4-289q0-15 10.5-27.5T867 434q6 0 13 2.5t12 6.5l241 209 127-280q5-10 15-16.5t21-6.5q25 0 36 22l145 293 260-196q11-8 23-8 19 0 29.5 12.5T1800 500q0 11-3 26l-30 259 265-81q2-2 11-2 17 0 28 12.5t11 27.5q0 8-1 12l-92 265 282 16q17 2 27 12.5t10 27.5-12 29l-112 103q71 0 142 21.5t152 75.5zm-897 243l83-69q42-35 84-69t86-65q-46-202-186.5-310T1290 926q-188 0-328 100.5T774 1279q41 34 104.5 94t148.5 144l113 114q42 42 86 68.5t86 26.5q46 0 134-69.5t135-109.5zM612 771l95 238 2 8q0 3 1 7 0 15-10.5 26t-24.5 13l-255 27 37 40q69 6 131 34t120 66q63-169 220.5-275.5T1290 848q230 0 400 121.5t214 328.5q33-20 66.5-36.5t67.5-27.5l137-126-242-14q-17 0-27.5-12t-10.5-29q0-3 2-11l84-241-248 77q-3 0-10 1-17 0-29-11t-12-29v-4l29-249-225 170q-11 7-26 7-10 0-19-6.5t-14-15.5l-128-261-115 251q-12 23-37 23-16 0-25-9L907 560l4 257q0 17-11.5 28.5T873 857q-8 0-14-3z" + }, + "children": [] + }] +}; +exports.u1F304 = u1F304; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F305.js b/dist/noto_emoji_regular/u1F305.js new file mode 100644 index 000000000..fd71a19d5 --- /dev/null +++ b/dist/noto_emoji_regular/u1F305.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F305 = void 0; +var u1F305 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2478 1635v562q0 91-65.5 156.5T2256 2419H345q-91 0-157-65t-66-157v-562h207l-76-56q-7-7-11.5-14.5T237 1547q0-12 7.5-22t18.5-15l216-79-170-182q-10-12-10-26 0-16 9-27t25-13l282-32-108-268q-3-6-3-13 0-18 12-29.5t29-11.5q7 0 11 2l275 93-4-288q0-15 11.5-27.5T867 596q6 0 13 3t12 7l241 207 127-278q11-24 36-24 11 0 21 6t15 16l145 292 260-196q12-7 23-7 18 0 29 11.5t11 28.5v4l-33 281 265-81q8-2 12-2 17 0 27.5 12.5T2082 903v6q0 4-1 7l-92 264 282 18q17 0 27 12t10 28q0 15-12 27l-193 178 218 75q10 4 18 14t8 22q0 21-18 34l-70 47h219zm-1728-21l2 21h1089q2-9 2-28 0-151-69.5-271.5t-205-184T1290 1088q-241 0-391 151.5T749 1594q0 10 1 20zm-393-54l102 75h214q0-11-1-21t-1-20q0-234 173.5-409.5T1290 1009q165 0 319 75t233.5 216.5T1922 1598q0 19-3 37h199l103-69-206-69q-12-4-19.5-14t-7.5-23q0-17 13-29l174-161-242-15q-16 0-27-11t-11-28q0-5 2-13l84-239-254 77q-3 0-6 1-16 0-27.5-12t-11.5-29v-5l29-249-225 170q-11 8-24 8-11 0-20.5-6t-14.5-16l-128-261-115 252q-5 10-15 16.5t-21 6.5q-14 0-26-10L907 722l4 257q0 17-11.5 29t-28.5 12q-3 0-6-1l-253-86 95 237 2 8q0 4 1 8 0 15-10.5 26t-24.5 12l-255 29 158 167q10 11 10 27 0 26-25 36zm1541 209.5q-25-11.5-83-11.5-99 0-195-2t-195-2l-359 1-261-1q-32 0-55.5 13.5T726 1810q0 16 24.5 42.5T863 1884t100 30 30.5 56.5 69.5 31.5l44-1q43 0 63.5 7.5t35.5 24.5l19 25q23 28 60 35.5t74 7.5q61 0 115-11t78-47.5 94.5-36.5 113.5-20.5 73-69 60-68 30-43.5-25-35.5zm459.5 19Q2329 1773 2234 1773q-48 0-68.5 14.5T2145 1831q0 28 21.5 42.5t91.5 14.5q74 0 101-12.5t27-37.5q0-34-28.5-49.5zm-1624 192Q705 1965 612 1965q-48 0-70 14t-22 44q0 28 21.5 42.5T633 2080q67 0 98-11t31-38q0-35-28.5-50.5zm1422.5-16q-29-15.5-122-15.5-53 0-71 15t-18 42q0 29 21.5 43.5t89.5 14.5 98.5-10.5 30.5-39.5q0-34-29-49.5zM447.5 1822q-29.5-16-120.5-16-49 0-69.5 14.5T237 1862q0 29 20 44t91 15 100-11.5 29-37.5q0-34-29.5-50z" + }, + "children": [] + }] +}; +exports.u1F305 = u1F305; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F306.js b/dist/noto_emoji_regular/u1F306.js new file mode 100644 index 000000000..7ef4b7ab0 --- /dev/null +++ b/dist/noto_emoji_regular/u1F306.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F306 = void 0; +var u1F306 = { + "viewBox": "0 0 2639.6437 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2295.644 104q69 0 126.5 40.5t81.5 105.5h-2329q24-63 81.5-104.5t127.5-41.5h1912zm219 185q3 18 3 38v126h-2356V327q0-20 3-38h2350zm-2353 223h2356v145h-2356V512zm0 222h2356v127h-2356V734zm0 223h2356v107h-2356V957zm2295 311q-4-45-31-89h92v89h-61zm-861-89q-11 21-19 43.5t-11 45.5h-1404v-89h1434zm862 224h60v68h-60v-68zm-893 68h-1403v-68h1403v68zm-1403 154h168q-17 25-27 50h-141v-50zm1029 50q-11-28-26-50h400v50h-374zm1267-50h60v50h-60v-50zm-58 857h-2053v-726q0-67 50-117t117-50h466q70 0 118.5 50.5t48.5 116.5v95h477v-557q0-67 49-117t118-50h442q67 0 116.5 49t49.5 118zm-124-1137q0-6-13.5-17.5t-32.5-11.5h-54q-19 0-32.5 13.5t-13.5 32.5v86q0 17 14.5 31t31.5 14h54q18 0 32-10.5t14-18.5v-119zm-504 103q0 17 14 31t31 14h55q16 0 30.5-14t14.5-31v-86q0-19-13.5-32.5t-31.5-13.5h-55q-19 0-32 13.5t-13 32.5v86zm358 282q0 19 13.5 32t32.5 13h54q19 0 32.5-11t13.5-18v-119q0-6-12.5-17t-33.5-11h-54q-19 0-32.5 13.5t-13.5 31.5v86zm-50 152q0-6-13.5-17.5t-33.5-11.5h-53q-19 0-33 13.5t-14 33.5v85q0 19 14 32.5t33 13.5h53q20 0 33.5-11.5t13.5-18.5v-119zm-946 234q-18 0-31.5 13.5t-13.5 33.5v85q0 19 13.5 32t31.5 13h54q20 0 33.5-13t13.5-32v-85q0-20-13.5-33.5t-33.5-13.5h-54zm-250-130q0 20 13 33.5t33 13.5h54q18 0 32-14.5t14-32.5v-85q0-18-13-31.5t-33-13.5h-54q-20 0-33 13.5t-13 31.5v85zm-59-85q0-18-13.5-31.5t-31.5-13.5h-54q-20 0-33 13.5t-13 31.5v85q0 20 13 33.5t33 13.5h54q18 0 31.5-13.5t13.5-33.5v-85zm-99 215q-20 0-33 13.5t-13 33.5v85q0 19 13 32t33 13h54q18 0 31.5-13t13.5-32v-85q0-20-13.5-33.5t-31.5-13.5h-54zm-105-215q0-18-13.5-31.5t-33.5-13.5h-53q-19 0-32 13.5t-13 31.5v85q0 20 13 33.5t32 13.5h53q20 0 33.5-13.5t13.5-33.5v-85zm-145 347q0 19 13 32t32 13h53q20 0 33.5-13t13.5-32v-85q0-20-13.5-33.5t-33.5-13.5h-53q-19 0-32 13.5t-13 33.5v85z" + }, + "children": [] + }] +}; +exports.u1F306 = u1F306; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F307.js b/dist/noto_emoji_regular/u1F307.js new file mode 100644 index 000000000..39c5d8225 --- /dev/null +++ b/dist/noto_emoji_regular/u1F307.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F307 = void 0; +var u1F307 = { + "viewBox": "0 0 2625.5234 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2385.523 2466q-13 9-28 12h-2025v-726q0-68 50-117.5t117-49.5h466q70 0 118.5 50.5t48.5 116.5v96h477v-557q0-68 49.5-118t117.5-50h442q68 0 117 50t49 118zm118-1981h-777q16 14 30 28.5t28 30.5h719v145h-627q8 19 15 38l14 39h598v126h-577q3 23 3 44 0 26-3 53h577v107h-171q-25-14-54-22.5t-60-8.5h-383q7-32 11.5-64t4.5-65q0-215-156-370.5t-370-155.5q-219 0-372 158t-153 368q0 107 38.5 199t108.5 165l4 4q90 82 180.5 120t193.5 38q61 0 118-13.5t107-38.5v93h-20q-48 17-99 27t-106 10-105.5-10-98.5-27h-974v-70h837q-41-27-75.5-60.5t-64.5-72.5h-697v-89h641q-14-27-25-56t-20-59h-596V989h577q-3-27-3-53 0-21 3-44h-577V766h598l14-39q7-19 15-38h-627V544h719q14-16 28-30.5t30-28.5h-777V359q0-20 3-38h2350q3 18 3 38v126zm-222-349q69 0 126.5 40.5t81.5 105.5h-2329q24-63 81.5-104.5t127.5-41.5h1912zm-216 1744q0-8-13.5-19t-33.5-11h-53q-19 0-33 13t-14 33v85q0 20 14 33.5t33 13.5h53q20 0 33.5-11.5t13.5-19.5v-117zm196-539q0-6-13.5-17.5t-32.5-11.5h-54q-19 0-32.5 13.5t-13.5 33.5v85q0 19 13.5 32t32.5 13h54q19 0 32.5-11t13.5-18v-119zm-146 385q0 19 13.5 32t32.5 13h54q19 0 32.5-11t13.5-17v-120q0-6-13.5-17t-32.5-11h-54q-19 0-32.5 13t-13.5 33v85zm-1100 171q0-17-13-31t-33-14h-54q-20 0-33 13.5t-13 31.5v85q0 20 13 33.5t33 13.5h54q18 0 32-14.5t14-32.5v-85zm-350 85q0 20 13 33.5t33 13.5h54q18 0 31.5-13.5t13.5-33.5v-85q0-18-13.5-31.5t-31.5-13.5h-54q-20 0-33 13.5t-13 31.5v85zm1092-538q0 19 13 32t32 13h55q18 0 31.5-13t13.5-32v-85q0-20-13.5-33.5t-31.5-13.5h-55q-20 0-32.5 15t-12.5 32v85zm-947 715q0-20-13.5-33t-31.5-13h-54q-20 0-33 13t-13 33v85q0 19 13 32t33 13h54q18 0 31.5-13t13.5-32v-85zm-349-177q0 20 13 33.5t32 13.5h53q20 0 33.5-13.5t13.5-33.5v-85q0-18-13.5-31.5t-33.5-13.5h-53q-19 0-32 13.5t-13 31.5v85zm759 177q0-20-13.5-33t-33.5-13h-54q-18 0-31.5 13t-13.5 33v85q0 19 13.5 32t31.5 13h54q20 0 33.5-13t13.5-32v-85zm-614 0q0-20-13.5-33t-33.5-13h-53q-19 0-32 13t-13 33v85q0 19 13 32t32 13h53q20 0 33.5-13t13.5-32v-85zm944-452h-363q-3-14-7.5-26t-10.5-25h381v51zm-1403-51h148l-10 25q-5 12-7 26h-131v-51zm2296-356q0-54-14-89h74v89h-60zm0 133h60v70h-60v-70zm0 223h60v51h-60v-51z" + }, + "children": [] + }] +}; +exports.u1F307 = u1F307; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F308.js b/dist/noto_emoji_regular/u1F308.js new file mode 100644 index 000000000..3571bb0ad --- /dev/null +++ b/dist/noto_emoji_regular/u1F308.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F308 = void 0; +var u1F308 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2538 1556q-2 39-6 79t-10 79q-33-65-87-97.5t-116-32.5q-54 0-98.5 27.5T2160 1677t-53 38q-27 0-45-19.5t-47-33.5-64-14q-43 0-89 24.5t-83 79-69 54.5q-22 0-41.5-9t-42.5-9q-31 0-61.5 34.5T1534 1940q0 46 32.5 76.5t77.5 30.5q17 0 32-6t32-6q35 0 57.5 42t69.5 69.5 110 27.5q62 0 113-23t67-23q9 0 16 2t13 6q68 47 139 47l17-1q9 0 17-2-29 33-59.5 61t-63.5 51q-20-3-41-13.5t-41-23.5q-32 22-77 31.5t-83 9.5q-84 0-161.5-37.5T1675 2154q-7 0-19 1-117 0-177.5-63t-60.5-159q0-99 61-175t162-76q15 0 23 2 3-21 3-44 0-168-119.5-287.5T1260 1233q-152 0-267.5 101.5T856 1589q5 5 8.5 9.5t8.5 9.5l24-4q12 0 24-1 95 0 155.5 77t60.5 175q0 96-61 158.5T901 2076q-14 0-20-2-48 69-125.5 106T594 2217q-42 0-83-10.5t-78-29.5q-35 23-78.5 37.5T266 2229q-35-34-59.5-69t-44.5-82q23 13 49.5 19t52.5 6q41 0 77.5-14t52.5-26.5 35-12.5 68 23 113 23q61 0 111-29t70.5-70.5T847 1955q16 0 31.5 7t32.5 7q45 0 77.5-33.5t32.5-89.5q0-55-24-96t-70-41q-21 0-40 9.5t-42 9.5q-16 0-29.5-11.5T790 1688l-25-33q-27-37-72-61.5t-89-24.5q-34 0-63.5 15t-46.5 33.5-45 18.5q-38 0-51.5-35.5t-58-66T236 1504q-48 0-93 21t-77 59q-2-36-3-71t-1-70q11-8 25.5-15.5T116 1415q51-264 215.5-481T741 595t519-122q285 0 539.5 132.5t417.5 366 200 513.5l25 10q28 11 51.5 25.5t44.5 35.5zM201 1395q19-3 37-3 31 0 66 8 79-325 347-536.5T1260 652q236 0 447.5 107.5t350 299T2234 1482q22-5 46-8t56-3q-42-258-195.5-470T1755 670t-495-119q-375 0-674.5 236.5T201 1395zm1706 145q20-4 45-4 23 0 40 3-36-269-244.5-454T1260 900q-256 0-456.5 159T542 1463q14-3 27.5-5t27.5-2q8 0 17 1l16 2q58-207 233-341t397-134q242 0 426.5 159t220.5 397zm167 26l10 5 8 6q28-37 68-60-30-222-159.5-404t-326-282.5T1260 730q-314 0-561 196t-321 500q22 13 41.5 28t36.5 35q55-288 282.5-477.5T1260 822q204 0 383.5 95t296 269.5T2074 1566zm-330 56q20-17 42.5-31.5t45.5-25.5q-28-214-192.5-358T1260 1063q-194 0-348 116.5T705 1478q22 10 43 21.5t41 25.5q38-160 170-265t301-105q193 0 334.5 135.5T1744 1622z" + }, + "children": [] + }] +}; +exports.u1F308 = u1F308; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F309.js b/dist/noto_emoji_regular/u1F309.js new file mode 100644 index 000000000..e7ef29110 --- /dev/null +++ b/dist/noto_emoji_regular/u1F309.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F309 = void 0; +var u1F309 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M890 2284h848v322q-93 8-186 9l-187 2-107 2q-56 0-117 1-61 0-124-1.5t-127-6.5v-328zm1533-662q28 11 55.5 20t56.5 17q-5 94-16 187t-37 183h-59v-407zM909 2029H664v-637q67-43 128-88.5t117-90.5v816zm1167-568q58 34 118.5 64.5T2320 1583v446h-244v-568zm-22 823h310q-66 94-144 154.5t-166 96.5v-251zM1012 1124q67-61 121.5-116t96.5-101v1122h-218v-905zm1534.5 226q-2.5 91-7.5 216-236-71-467-212.5T1643 1026t-290-313q-16-22-40-22-25 0-34 17t-128 150-301.5 285T463 1407 53 1576l1-133v-163q0-188 14-357.5T125.5 603t116-266 163-171.5 246-87T985 42t376-5q383 0 558 43.5T2195 190t176 175 126.5 292.5T2549 1158q0 101-2.5 192zm-2195-245.5Q332 1085 304 1085t-47.5 19.5T237 1151q0 29 19.5 48t47.5 19 47.5-19 19.5-48q0-27-19.5-46.5zm42.5-704q14 14.5 34 14.5 21 0 35.5-14.5T478 366t-14.5-34.5T428 317q-20 0-34 14.5T380 366t14 34.5zM516.5 710Q494 687 461 687t-55.5 23-22.5 56q0 32 22.5 55t55.5 23 55.5-23 22.5-55q0-33-22.5-56zm359-57Q861 639 841 639q-21 0-34.5 14T793 687t13.5 34.5T841 736q20 0 34.5-14.5T890 687t-14.5-34zM1034 232q-23-23-55-23-33 0-56 23t-23 56q0 32 23 55t56 23q31 0 54.5-22.5T1057 288t-23-56zm627 99.5q-14-14.5-34-14.5t-34.5 14.5T1578 366t14.5 34.5T1627 415t34-14.5 14-34.5-14-34.5zm229 370q-14-14.5-34-14.5-21 0-35 14.5t-14 34.5 14 34 35 14q20 0 34-14t14-34-14-34.5zM2049 271q-23-23-56-23-31 0-54.5 22.5T1915 326t23 56.5 55 23.5q33 0 56-23.5t23-56.5q0-32-23-55zm201 779.5q-14-14.5-34-14.5t-34.5 14.5-14.5 34.5 14.5 34 34.5 14 34-14 14-34-14-34.5zm98.5-397.5q-14.5-14-35.5-14-20 0-34 14t-14 34 14 34.5 34 14.5q21 0 35.5-14.5T2363 687t-14.5-34zM1398 907q43 47 100.5 105t127.5 121v896h-228V907zM317 1579q66-25 126-58l118-66v574H317v-450zm-102 450H89q-17-87-24-178t-9-182q40-11 80-24t79-27v411zm1513-808q56 45 117.5 90t128.5 88v630h-246v-808zM176 2284h396v278q-143-41-244.5-111.5T176 2284z" + }, + "children": [] + }] +}; +exports.u1F309 = u1F309; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F30A.js b/dist/noto_emoji_regular/u1F30A.js new file mode 100644 index 000000000..d23ea5f4f --- /dev/null +++ b/dist/noto_emoji_regular/u1F30A.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F30A = void 0; +var u1F30A = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2507 1941.5q3 3.5 3 14.5 0 59-78.5 153t-207 151.5T1943 2318q-134 0-268-38t-288.5-115.5-244.5-104-168-26.5q-131 0-313.5 105T338 2244q-100 0-174.5-78.5T89 1982q0-9 2.5-21t9.5-12q10 0 42.5 17t75.5 17q63 0 113.5-48.5t86.5-119 64-131.5l58-127q106-231 294-456.5t478.5-388T1898 550q70 0 131 8.5t111 21.5l36 10q127 35 223 109t96 155q0 43-29.5 72.5T2388 956q-35 0-74.5-24t-58.5-24q-14 0-14 14 0 10 10 17l16 13q25 17 36.5 43t11.5 53q0 45-28 76.5t-72 31.5h-5q-48 0-89-30l-13-11q-14-10-30.5-19.5t-27.5-9.5q-7 0-15.5 4.5t-8.5 14.5q0 16 41 48.5t41 88.5q0 46-31 78.5t-78 32.5q-33 0-97.5-38.5T1750 1276q-103 0-166 51.5t-63 139.5q0 178 226 366.5t460 188.5q77 0 153.5-24.5t104-42 34.5-17.5q5 0 8 3.5zm-884.5-728Q1673 1193 1750 1193q97 0 170.5 38.5t78.5 38.5l6-1q8 0 14-6.5t6-20.5q0-21-26-40.5t-41-43-15-53.5q0-45 32-74t75-29q44 0 90.5 36t72.5 36q7 0 13.5-4.5t6.5-20.5q0-8-3-15.5t-13-14.5l-15-12q-17-12-30.5-35t-13.5-52q0-40 29-68t68-28q36 0 80 25t53 25q12 0 18.5-6t6.5-14q0-30-54-80.5T2177 678t-279-45q-105 0-256 30t-151 89q0 33 49 40t49 39q0 29-41 54t-41 59q0 36 51.5 44.5t51.5 44.5q0 32-53.5 71.5T1503 1186q0 20 11 34t34 14q24 0 74.5-20.5z" + }, + "children": [] + }] +}; +exports.u1F30A = u1F30A; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F30B.js b/dist/noto_emoji_regular/u1F30B.js new file mode 100644 index 000000000..d48a08e49 --- /dev/null +++ b/dist/noto_emoji_regular/u1F30B.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F30B = void 0; +var u1F30B = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1824 2493q-312 85-553 85-209 0-395.5-38.5t-349-113.5T364 2250q0-31 13-56t38-48l29-27q203-176 346.5-371.5t180-295.5 91.5-100q15 0 25 5.5t20 12.5l15 13q7 6 18 6 18 0 44.5-23.5t49.5-23.5q33 0 54 26t39 26 42-26.5 58-26.5q70 0 129.5 133.5t195 327 260 299.5 124.5 177q0 130-312 215zM707 471.5q25-24.5 57-24.5 48 0 135 72t156.5 189 121.5 292 52 183q0 16-11.5 24.5t-25.5 8.5q-13 0-24.5-9t-46.5-116.5-85.5-191-115-145.5-127-98.5-87-66.5-24.5-62q0-31 25-55.5zm1309.5 168Q2045 656 2045 691q0 77-101.5 85t-255 72-235.5 164l-30 38q-16 21-29 32t-23 27.5-24 16.5q-13 0-20.5-6.5t-7.5-17.5l14-55q15-50 110-162.5t233.5-187T1947 623q41 0 69.5 16.5zM2172 1288q-24 18-54 18-36 0-83-37t-122-59.5-172-22.5q-95 0-154.5 18t-74.5 18q-10 0-24-4.5t-14-13.5q0-17 16-31.5t41-25.5l24-11q62-33 130-47.5t138-14.5q118 0 245.5 48t127.5 122q0 25-24 43zm-1866.5 69q-16.5-18-16.5-38 0-77 129.5-158.5T718 1079q127 0 228 53t101 88q0 14-9 24t-23 10q-12 0-29-13t-72-32.5-126-19.5q-155 0-262.5 93T360 1375q-38 0-54.5-18zM443 867l-62-1q-92 0-112-22.5T249 801q0-43 42.5-65.5T397 713q133 0 285.5 74.5t238.5 145 86 104.5q0 17-11.5 29t-27.5 12q-18 0-59.5-41T734 933t-291-66zm784 67q-6-7-6-21 0-147 101-295t239.5-227 211.5-79q40 0 67 16t27 46q0 50-47.5 82.5t-160 56.5-203 110.5T1290 878l-12 28q-6 13-15.5 24t-20.5 11q-9 0-15-7zm1088-58q14 6 25 17t11 23q0 31-23.5 47.5T2256 980q-60 0-111.5-5.5T2036 969q-83 0-157.5 10t-149.5 30l-13 3q-17 4-41.5 8t-38.5 4q-7 0-13.5-1t-6.5-6q0-41 115.5-80.5t222-56.5 273.5-17q18 0 36.5 1t35.5 5zM1025 429q-24-31-35-56t-11-50q0-30 17.5-49.5T1040 254q51 0 92 78.5t41 283.5q0 14-6 28t-16 14q-21 0-40.5-71.5T1048 460zm223-18q-26-49-26-98 0-38 23-60t58-22 53.5 23.5T1375 305q0 46-30.5 100.5T1293 460q-19 0-45-49zM754.5 243q25.5-19 57.5-19 34 0 61.5 32t41.5 81q0 14 5.5 27.5T926 391q0 14-5.5 22t-21.5 8q-41 0-105.5-38.5T729 300q0-38 25.5-57zM1985 530q-27-3-38-11t-11-19q0-28 58-73t96-45q29 0 50.5 20.5T2162 454q0 35-22 54t-58 19q-23 0-46.5 1.5T1985 530zM448 582q-47-13-73.5-35T348 491t21-56.5 54-22.5q59 0 104.5 57T573 569q0 19-11.5 25.5T533 601q-11 0-21-2l-18-4z" + }, + "children": [] + }] +}; +exports.u1F30B = u1F30B; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F30C.js b/dist/noto_emoji_regular/u1F30C.js new file mode 100644 index 000000000..6a7092757 --- /dev/null +++ b/dist/noto_emoji_regular/u1F30C.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F30C = void 0; +var u1F30C = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1289 1664q-3 17-14.5 26.5T1248 1705l-55 15-16 55q-5 18-19.5 29.5T1126 1816q-27 0-45-26l-32-50-65 3q-21 0-35.5-15t-14.5-35q0-10 4-19.5t10-17.5l37-46-19-53q-4-9-4-19 0-22 14.5-38t37.5-16q5 0 10 1t10 3l55 20 45-33q8-7 17-10t17-3q22 0 37.5 16t15.5 38l-3 60 48 33q11 8 17 20.5t7 24.5zm204-952q-23 0-39-14.5t-16-36.5q0-20 13-36l37-46-19-52q-5-12-5-22 0-23 16-37t36-14q10 0 21 3l55 20 45-34q16-12 34-12 23 0 37.5 15.5T1723 483l-2 61 48 35q11 8 17 20t7 25q0 17-12.5 31.5T1751 675l-55 13-17 56q-5 19-19 29.5t-31 10.5q-28 0-45-26l-32-46h-59zm344 409q-3 17-14.5 27.5T1795 1164l-54 13-18 57q-6 18-19 28.5t-30 10.5q-30 0-47-26l-30-48-63 2q-22 0-37-15t-15-35q0-9 4-19t10-18l36-46-20-52q-2-5-3-10.5t-1-10.5q0-22 14.5-37t37.5-15q5 0 11 1t11 3l55 19 45-34q16-12 34-12 22 0 36.5 16t14.5 37l-1 61 46 34q25 18 25 46v7zM386 2053l-31-48-64 1q-21 0-35.5-15t-14.5-35q0-21 14-36l35-45-19-54q-4-9-4-20 0-22 15-37t37-15q12 0 21 4l54 19 47-34q16-11 33-11 23 0 37.5 16t14.5 40l-1 57 46 33q11 8 17 20.5t8 25.5q0 20-12 32.5t-31 17.5l-53 15-18 55q-6 19-19.5 30t-31.5 11q-13 0-25-6.5t-20-20.5zm314 289q25 19 25 48 0 17-12.5 30t-29.5 18l-54 15-18 55q-6 18-19 29.5t-30 11.5q-30 0-47-28l-30-48-63 2q-20 0-36-13.5t-16-36.5q0-19 13-37l36-45-18-53q-2-5-3-11t-1-11q0-20 15-35.5t36-15.5q6 0 11.5 1t10.5 3l55 20 45-35q17-11 34-11 20 0 35.5 14.5T655 2247l-2 62zm1489-1065q11 8 18 20t7 24q0 20-12 33t-31 18l-53 15-18 55q-6 18-19 29.5t-30 11.5q-30 0-47-27l-31-48-62 1q-21 0-36.5-14t-15.5-37q0-20 14-35l35-46-19-53q-2-5-2-11l-1-10q0-23 14.5-37.5t36.5-14.5q5 0 10.5 1t10.5 3l54 20 47-35q8-5 16.5-8t17.5-3q22 0 36.5 16t14.5 38l-1 60zm-246-378q-21 0-34.5-12.5T1895 854q0-7 2-14.5t9-15.5l26-33-14-37q-2-4-2-9l-1-10q0-19 13.5-32t31.5-13q11 0 18 4l40 14 33-25q13-11 29-11 19 0 32 13.5t13 34.5l-2 44 35 23q21 19 20 45.5t-35 38.5l-40 10-13 39q-10 35-43 35-25 0-40-23l-22-33h-42zm38-374q-20 0-34-12.5t-14-32.5q0-14 12-31l26-32-13-38q-5-10-5-18 0-21 14-33t32-12h10l9 2 38 15 33-24q16-11 30-11 19 0 32 14t13 30l-2 46 34 25q22 16 22 38 0 17-11 29t-26 17l-38 9-13 40q-11 35-44 35-25 0-39-23l-22-34h-41zm-495 1381q21 18 21 39 0 17-10 28.5t-27 16.5l-38 11-13 38q-5 17-16 26.5t-28 9.5q-26 0-39-24l-22-34-47 2q-18 0-31.5-13.5T1222 1973q0-15 12-30l26-33-13-37q-2-4-2-9l-1-10q0-18 13-31.5t32-13.5q10 0 18 4l38 14 33-25q8-5 15.5-7t14.5-2q18 0 31.5 11.5t13.5 31.5l-1 47zm-575 173l-11 38q-5 17-16.5 26.5T856 2153q-26 0-41-23l-22-35-45 2q-18 0-31.5-13.5T703 2051q0-15 12-30l26-33-14-38q-4-10-4-18 0-20 13.5-32.5T768 1887q11 0 18 4l40 14 33-25q13-11 30-11t30.5 13.5T933 1916l-2 44 35 24q20 17 20 41 0 15-10.5 26.5T951 2068zM2434 994.5q-4 9.5-12 17.5l-23 20 5 33v8q0 21-12.5 34t-29.5 13q-8 0-14-2t-12-5l-28-18-28 17q-16 7-24 7-20 0-32.5-14t-12.5-33q0-7 1-10l7-33-23-21q-16-15-16-35 0-18 12.5-30t29.5-14l33-4 15-30q13-26 41-26t41 28l14 30 33 4q15 2 27 14.5t12 30.5q0 9-4 18.5zM1578 1613q-4 16-16 25t-26 9q-11 0-22-5.5t-18-16.5l-17-27-39 1q-16 0-29.5-13t-13.5-30q0-16 13-32l20-26-11-29q-2-4-2-8.5t-1-9.5q0-17 12-31t32-14q8 0 18 4l32 11 26-19q10-9 28-9 19 0 31.5 12t12.5 30l-1 38 27 20q21 15 21 37 0 16-10 27.5t-26 15.5l-31 9zM359 1961q8 0 16.5 4.5T389 1977l34 53q4 5 8 5 6 0 9-8l19-60q2-8 9.5-15.5t14.5-9.5l59-15q10-3 10-8t-7-10l-49-36q-8-4-11.5-12t-3.5-16l1-63q0-11-8-11l-7 2-48 36q-10 7-25 7-8 0-11-2l-64-21q-8 0-8 8 0 4 1 5l21 56 2 7q0 3 1 6 0 13-9 23l-38 49q-4 4-4 9 0 6 11 6zm1801-632q10-2 10-8 0-2-6-8l-50-36q-8-4-11.5-13t-3.5-17l1-63q0-11-7-11l-8 3-48 37q-12 7-25 7-8 0-11-3l-64-22q-8 0-8 8 0 5 1 6l21 57q0 3 1 11 0 13-7 25l-38 48q-4 5-4 10 0 6 11 6l64-2q8 0 16.5 4.5t13.5 11.5l33 52q5 7 10 7 4 0 7-10l19-58q2-8 10-16t16-9zm-923 333q8-2 8-8 0-4-5-8l-50-36q-7-5-11.5-15t-4.5-18l3-60q0-11-9-11l-8 3-48 37q-9 7-23 7-3 0-6-1l-69-24q-9 0-9 8 0 4 2 6l20 57q2 3 2 11 0 14-7 24l-40 49q-4 5-4 8 0 7 11 7l64-1q8 0 17 5t14 11l34 52q5 7 8 7 7 0 8-10l18-59q3-8 10.5-15t15.5-9zm-566 733q10-2 10-8 0-5-6-9l-50-36q-8-5-11.5-13t-3.5-16l1-63q0-11-7-11l-8 3-48 36q-5 4-11 5t-14 1q-7 0-11-1l-64-22q-7 0-7 8 0 4 1 6l21 56q0 4 1 12 0 16-7 24l-39 49q-4 4-4 8 0 7 11 7l64-1q8 0 17 4t13 12l33 52q7 7 10 7 5 0 8-10l18-60q3-8 10.5-15.5t15.5-9.5zm1113-1274q9-2 9-8 0-2-1.5-5t-3.5-5l-51-35q-8-5-11.5-13t-3.5-16l1-63q0-12-7-12l-8 4-48 35q-10 7-24 7h-6q-3 0-5-1l-65-22q-7 0-7 8 0 3 2 6l20 56q0 2 1 4.5t1 4.5q0 16-8 26l-39 50q-4 4-4 8 0 7 11 7l64-3q8 0 16.5 5t12.5 12l34 52q4 6 10 6 4 0 8-8l18-60q2-8 10-15.5t16-9.5zm-298-468q-4 4-4 8 0 7 11 7l63-3q8 0 17 5t13 11l35 54q2 5 8 5 7 0 8-8l18-60q3-8 10.5-15.5t15.5-9.5l59-15q9-2 9-8 0-5-6-10l-50-35q-7-5-11.5-14.5T1677 547l2-60q0-12-8-12l-8 4-47 35q-11 7-24 7-8 0-11-1l-65-22q-8 0-8 8 0 4 2 6l20 56q2 4 2 12 0 13-7 23zm489-180l-1 3q0 2-1 4 0 6 8 6l49-2q6 0 13 4t10 9l27 41 6 4q2 0 6-7l14-47q3-5 8.5-10.5t11.5-7.5l45-12q7-2 7-7 0-3-4-7l-38-27q-7-3-10-9.5t-3-12.5l2-49q0-8-6-8l-7 2-37 28q-3 2-7.5 3.5t-9.5 1.5l-10-1-44-17h-5q-6 0-6 6 0 3 2 4l15 44q0 3 1 9 0 13-5 18zm-515 1478q7 0 7-5 0-4-4-7l-38-27q-5-5-9-12t-4-14l2-46q0-9-6-9l-7 3-35 27q-9 6-19 6l-9-2-49-16q-7 0-7 7 0 2 2 4l16 44q0 2 1 3v3q0 11-6 20l-29 38q-3 3-3 7 0 5 7 5l49-3q16 0 23 13l26 41 7 4q6 0 7-5l14-47q5-14 19-19zm477-1102q-3 2-3 6 0 5 9 5l49-2q6 0 12.5 4t9.5 9l26 41 7 4q5 0 6-7l14-45q2-7 8-12.5t11-6.5l46-13q6 0 6-5 0-6-4-7l-38-29q-5-3-8.5-10t-3.5-15l1-48q0-6-5-6l-7 2-36 28q-6 5-19 5l-8-1-50-17q-7 0-7 7 0 3 2 4l16 43q0 2 1 3.5t1 3.5q0 11-7 20zM940 2030q7 0 7-6 0-3-5-8l-38-28q-11-6-11-21l1-50q0-8-5-8l-7 3-37 27q-6 6-18 6l-9-2-44-16h-6q-5 0-5 5 0 4 1 6l15 42q2 3 2 10 0 12-6 18l-30 38q-3 3-3 5 0 6 9 6l49-1q14 0 23 12l26 40 7 5q2 0 6-7l13-45q2-6 8.5-12t12.5-7zM2396 982q3-2 3-6 0-3-6-5l-41-7q-5 0-11-4.5t-8-9.5l-16-37-6-5-7 5-16 36q-3 5-9 9t-12 6l-40 4q-8 2-8 5 0 2 4 6l29 27q3 5 5.5 10.5t2.5 10.5v2l-9 42q0 8 5 8l40-22q6-3 12-3 8 0 13 4l35 21 6 1q4 0 4-8l-7-41v-4q0-11 7-18zm-843 580q2-5 7-10t10-6l40-10q5 0 5-5 0-6-4-7l-33-23q-5-3-8-10t-3-12l2-40q0-8-5-8l-38 26q-5 5-15 5l-8-1-43-15q-5 0-5 5 0 3 1 5l14 38 1 7q0 9-5 16l-26 32q-3 3-3 7t8 4l43-2q5 0 10.5 3.5t8.5 7.5l23 34 6 6q3 0 5-7zm169.5 631q-13.5 13-33.5 13t-33.5-13-13.5-33 13.5-33.5 33.5-13.5 33.5 13.5 13.5 33.5-13.5 33zM1153 1047q13-13 33-13t33.5 13 13.5 33-13.5 33.5-33.5 13.5-33-13.5-13-33.5 13-33zm46.5-605.5Q1213 428 1233 428t33 13.5 13 33.5-13 33-33 13-33.5-13-13.5-33 13.5-33.5zm1060.5 227q13-13.5 33-13.5t33.5 13.5T2340 702t-13.5 33.5T2293 749t-33-13.5-13-33.5 13-33.5zm-651 1149q-13-13.5-13-33.5 0-18 13-32t33-14 33.5 14 13.5 32q0 20-13.5 33.5T1642 1831t-33-13.5zm-1274-258q13-13.5 33-13.5 19 0 33 13.5t14 33.5-14 33-33 13q-20 0-33-13t-13-33 13-33.5zm1541 82.5q-13 14-33 14t-33.5-14-13.5-33q0-20 13.5-33.5t33.5-13.5 33 13.5 13 33.5q0 19-13 33zm-895.5 919q-13.5 14-32.5 14-20 0-33.5-14t-13.5-33q0-20 13.5-33t33.5-13q19 0 32.5 13t13.5 33q0 19-13.5 33zM694 1622.5q13-13.5 33-13.5t33.5 13.5T774 1656q0 18-13.5 31.5T727 1701t-33-13.5-13-31.5q0-20 13-33.5zm451.5 648.5q-13.5 13-33.5 13t-33-13-13-32q0-20 13-33t33-13 33.5 13 13.5 33q0 19-13.5 32zm154.5 57q-8 8-21 8-11 0-19-8t-8-20q0-11 8-19.5t19-8.5q13 0 21 8.5t8 19.5q0 12-8 20zM237 2587q-8 8-19 8-13 0-21-8t-8-19q0-12 8-20.5t21-8.5q11 0 19 8.5t8 20.5q0 11-8 19zm0-375q-8 8-19 8-13 0-21-8t-8-19q0-13 8-21t21-8q11 0 19 8t8 21q0 11-8 19zm671-893.5q8-8.5 19-8.5 13 0 21 8.5t8 19.5q0 12-8 20t-21 8q-11 0-19-8t-8-20q0-11 8-19.5zm954 518q-8 8.5-19 8.5-12 0-20.5-8.5t-8.5-20.5q0-11 8.5-19.5t20.5-8.5q11 0 19 8.5t8 19.5q0 12-8 20.5zM796 2615q-8 9-19 9-13 0-21-9t-8-20 8-19 21-8q11 0 19 8t8 19-8 20zm1563-1317q-8 8-19 8t-20-8-9-19q0-13 9-21t20-8 19 8 8 21q0 11-8 19zm-1048-191q8-9 21-9 11 0 19 9t8 20-8 19-19 8q-13 0-21-8t-8-19 8-20zm-59-491.5q8 8.5 8 20.5 0 11-8 19.5t-19 8.5-20-8.5-9-19.5q0-12 9-20.5t20-8.5 19 8.5zm-1082 1043q-8-8.5-8-19.5t8-20 19-9q12 0 20.5 9t8.5 20-8.5 19.5-20.5 8.5q-11 0-19-8.5zm402.5-86q8.5-8.5 20.5-8.5 11 0 19 8.5t8 20.5q0 11-8 19t-19 8q-12 0-20.5-8t-8.5-19q0-12 8.5-20.5zM1588 2356q-8 8-19 8-13 0-21-8t-8-20q0-11 8-19.5t21-8.5q11 0 19 8.5t8 19.5q0 12-8 20zm732-1833.5q9-8.5 20-8.5t19 8.5 8 19.5-8 20-19 9-20-9-9-20 9-19.5zM661.5 1769q8.5-8 19.5-8 12 0 20.5 8t8.5 19q0 12-8.5 20t-20.5 8q-11 0-19.5-8t-8.5-20q0-11 8.5-19zm537.5-538q8 8 8 19t-8 20-20 9q-11 0-19-9t-8-20 8-19 19-8q12 0 20 8z" + }, + "children": [] + }] +}; +exports.u1F30C = u1F30C; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F30D.js b/dist/noto_emoji_regular/u1F30D.js new file mode 100644 index 000000000..bab61263b --- /dev/null +++ b/dist/noto_emoji_regular/u1F30D.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F30D = void 0; +var u1F30D = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2064.5 1872.5q-118.5 204.5-323 323T1300 2314t-441.5-118.5-323-323T417 1431t118.5-442 323-323.5T1300 547q234 0 440 119.5T2064.5 990t118.5 441-118.5 441.5zm-362-887.5q12.5 28 34.5 28 13 0 20-11t7-23q0-14-9-23l-17-16q-4-4-9-18.5t-18-14.5q-9 0-15 5t-6 17q0 28 12.5 56zM1434 959q11 0 17.5-5t22.5-5q10 0 17 2l23 10q5 3 13 3 13 0 13-14 0-25-14-40.5t-25-15.5q-8 0-14.5 2t-14.5 2l-15 2q-13 2-24 19t-11 27q0 13 12 13zm-389-256q-26 8-50.5 19T945 745q9 9 14.5 17t5.5 20q0 9-3 14.5t-3 12.5q0 5 3 8.5t8 3.5 9-3 12-3q6 0 12.5 1t13.5 1q27 0 54.5-33t57.5-33q16 0 37 4.5t42 4.5q49 0 68-46t19-55l-44 1q-20 18-35.5 46t-52.5 28q-52-2-81.5-10t-36.5-21zm1026 744q-28-2-42-31t-24.5-86-34-86.5-68.5-29.5q-44 0-69.5-13t-52-34-41.5-21q-7 0-14 3t-7 11q0 13 15 32t38 25l31 9q14 5 23.5 11.5t9.5 21.5q0 33-50 74t-89 41q-37 0-69-49t-53-76-39.5-62.5-33.5-35.5q-8 0-13.5 7t-5.5 16q0 29 23.5 67.5t53.5 73.5 57 66 68 42 41 41-48 76.5-81 73-33 72.5q0 14 2 24l8 34q2 8 2 17 0 73-34.5 100t-46.5 73-52 97-109 51q-44 0-79-16t-58-52-43-76-20-78q0-20 2.5-39.5t2.5-39.5q0-38-16-67t-32-88-46.5-84.5T958 1516q-21 0-42.5 2.5T873 1521q-45 0-79.5-19t-58-60.5T712 1365q0-18 20.5-95t41.5-109 71-66.5 81.5-42T990 1033l18-6q9-2 19-2 28 0 46.5 25t68.5 46 85 21q21 0 37-3.5t31-9.5l24-8q12-4 27-4 22 0 44.5 6.5t44.5 6.5h15q8 0 17 1 22 0 35.5-6.5t13.5-23.5q0-20-15-32t-32-12q-18 0-36 4.5t-35 4.5l-9-1q-15-2-25-8t-10-17q0-5 2.5-8.5t2.5-8.5q0-13-12-21t-26-8q-13 0-26 11t-29 11q-28 0-33-17t-15-36-32-19q-19 0-19 15 0 11 10 21t10 16q0 4-16.5 23.5T1138 1014q-18 0-19-42.5t-35-42.5q-23 0-55.5 23T973 999t-65 24h-11q-6 0-10.5-1t-10.5-1l-8 1q-15 0-23-8.5t-8-26.5q0-22 10-48.5t25-26.5q3 0 7.5 3t8.5 3q7 2 16 2l16 1q32 0 32-46 0-5-2-11.5t-7-6.5q-10 0-17.5 9.5T907 876q-20 0-28.5-7t-8.5-25l1-8q0-8-2-15-5 0-12-1h-9q-8 0-10-7-148 112-229 274t-81 344q0 206 104 385t283 283 385 104q200 0 376-98.5t283.5-274T2071 1447zm-388.5 478q-20.5 35-49.5 35-17 0-22.5-14.5t-5.5-30.5q0-14 4.5-22.5t7.5-20.5l4-12q0-6 6-10l25-18q15-11 32-11 9 0 14 5.5t5 20.5q0 43-20.5 78z" + }, + "children": [] + }] +}; +exports.u1F30D = u1F30D; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F30E.js b/dist/noto_emoji_regular/u1F30E.js new file mode 100644 index 000000000..e88fec75e --- /dev/null +++ b/dist/noto_emoji_regular/u1F30E.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F30E = void 0; +var u1F30E = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M857 2195q-205-119-323.5-323.5T415 1431q0-238 117.5-442t323-324T1300 545q240 0 446.5 120t322 325 115.5 441-119 441.5-323.5 323.5-441.5 118q-238 0-443-119zm356-1533q-41 3-84 14 8 14 18 26.5t22 12.5q16 0 28-16.5t16-36.5zm857 843q-28-16-42.5-47t-14.5-64 12-65.5 33-55.5q-26-130-93.5-240T1800 840q-19 10-44 10-21 0-42-8t-34-25l-21-28q-21-26-76.5-43.5T1465 674q-19-5-39.5-8t-40.5-5q24 23 55 32l15 6q19 8 29.5 18.5T1495 739t-7.5 17.5-18.5 6.5q-9 0-19-3t-19-7l-18-8q-10-3-18-4t-13-1h-7q-16 0-25.5-19t-39.5-19h-24q-7 0-14.5 5t-7.5 12q0 5 1.5 9.5t1.5 9.5-5 13-9 8q-45 0-61 6.5t-16 32.5q0 20 16 28.5t33 8.5q9 0 18.5-1t18.5-1q29 0 45.5 21.5T1341 876q12 0 18-7.5t6-14.5q0-11-5.5-21.5T1354 811q0-13 6-28t26-15q33 0 124 62t118 71.5 27 34.5q0 20-9 33.5t-35 13.5q-17 0-20.5-16.5T1564 950l-12 1q-16 2-29.5 7.5T1509 974q0 12 18 17t18 19-12 18.5-24 4.5q-13 0-22-1t-20-1q-23 0-40.5 19t-48.5 58-33 75l1 16v18q0 23-7.5 35.5T1317 1265q-23 0-41.5-40t-70.5-40q-53 0-88 20.5t-37 59.5q0 4 2 13l3 20q2 11 3.5 22.5t1.5 21.5v6q11 2 24 7t25 5q19 0 37.5-23.5t40.5-23.5q11 0 23 6t12 12q0 4-3 8l-8 11q-4 6-7.5 13t-3.5 16q0 20 35.5 25t35.5 37q0 9-1.5 15.5t-1.5 13.5q0 20 11.5 28.5t30.5 8.5l9-1q31-2 46-19t41-17q14 0 28 4l28 8h82q68 24 105 61.5t44 63.5 37 26q44 0 78 29t34 55q0 25-27.5 73t-70.5 65.5-75.5 80.5-85.5 98.5-79 57.5l-18 15q-18 16-40 28.5t-39 12.5q-18 0-25.5-10.5t-7.5-21.5q0-17 9.5-37.5t12.5-34.5l10-50q5-24 5-49 0-80-68.5-129t-68.5-127q0-53 16-85.5t16-38.5q0-22-41.5-20t-56.5-39.5-50-41.5h-12q-7 0-14 1-16 0-22.5-5.5t-8.5-15.5l-5-16q-3-13-19.5-16t-52.5-15-52.5-20.5T985 1348q-38-19-48.5-57t-24.5-53l-10-9q-10-8-16-8-4 0-4 5 0 6 3.5 14.5t8.5 16.5l8 17q4 9 4 15t-4 9.5-8 3.5q-11 0-30-23.5t-31.5-51-61-72T723 1064q0-15 1-31t1-32q0-24-5-36t-21-23q-81 100-127 224.5T526 1431q0 205 102.5 383t282 283.5T1300 2203q297 0 519.5-203t250.5-495zm-607-175h23q18 0 33.5 5t15.5 24q0 15-18.5 25t-40.5 10q-18 0-32.5-5t-19.5-12l-7-12q-4-6-10.5-10.5t-19.5-4.5q-14 0-26 1.5t-29 1.5q-15 0-32.5-4t-17.5-23 23.5-27 48.5-8l22-1q16 0 23.5 4t12.5 10l9 12q3 4 12.5 9t29.5 5z" + }, + "children": [] + }] +}; +exports.u1F30E = u1F30E; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F30F.js b/dist/noto_emoji_regular/u1F30F.js new file mode 100644 index 000000000..0cd9144a6 --- /dev/null +++ b/dist/noto_emoji_regular/u1F30F.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F30F = void 0; +var u1F30F = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2061.5 1878q-122.5 206-326 321T1299 2314q-235 0-439-116.5T535.5 1875 415 1430q0-237 118-442.5T856.5 664 1299 546q235 0 440 117t325 322.5 120 444.5q0 242-122.5 448zm-57.5-751q-62-138-170-245l-7 2q-4 0-9 1-29 0-69.5-20t-74.5-20q-51 0-75 20.5t-35 53-28.5 45.5-42.5 26.5-33.5 51-56.5 69-54.5 51.5-22.5 40-16 42q0 53 39 79t39 71q0 27-19 54.5t-46.5 44.5-27.5 34q0 5 2 10.5t2 10.5q0 25-27 43t-55 18l-13-1q-15 0-26-6t-11-19q0-16-13-24.5t-33-11.5l-18-2q-27-4-55-39t-75-55-74-20q-61 0-100 60.5T760 1640v26q0 24-9.5 44t-28.5 20q-41 0-79.5-76.5t-38.5-119-11.5-88T534 1401q0 5-1 21 0 215 104.5 394t282 279.5T1299 2196t379.5-100.5T1961 1818t105-388q0-165-62-303zm-616 180l1-17q0-27 10.5-39.5t26.5-12.5q36 0 38-17t23-40.5 21-36.5q0-11-8-19t-8-17q0-16 24.5-32t33.5-16q14 0 26.5 19.5t12.5 42.5q0 22-19.5 25t-21 32.5-18.5 50-26 20.5q-1 0-1 9 0 5 2.5 9t2.5 9q0 23-34.5 28t-43 17.5-22.5 12.5q-20 0-20-28zm-4 329q-22 0-40-5t-18-15q0-15 17.5-23t37.5-8q29 0 42.5-1t24.5-1q23 0 40.5 9t17.5 26q0 14-10.5 21t-18.5 7q-10 0-16-2l-14-3q-9 0-19-2t-25-2zm210.5-68.5q15.5 7.5 15.5 24.5 0 23-32 23-23 0-40-12.5t-17-25.5q0-8 15-12.5t26-4.5q17 0 32.5 7.5zm74 374Q1640 1975 1592 1975q-59 0-107.5-26t-78.5-26q-11 0-21 1t-19 1q-44 0-70.5-17t-26.5-49q0-30 21-50.5t70.5-58.5 71.5-38q17 0 39.5 20.5t50.5 20.5q24 0 50-17.5t42-17.5q30 0 56.5 49.5t26.5 88.5q0 52-28.5 85.5zm-835-198.5q-14.5 16-30.5 16-9 0-13-7t-4-16q0-15 9-31t26-16q9 0 18 6t9 17q0 15-14.5 31z" + }, + "children": [] + }] +}; +exports.u1F30F = u1F30F; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F310.js b/dist/noto_emoji_regular/u1F310.js new file mode 100644 index 000000000..65fd4fedd --- /dev/null +++ b/dist/noto_emoji_regular/u1F310.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F310 = void 0; +var u1F310 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2205 1906q-136 241-378.5 384.5T1299 2434q-279 0-520-139.5t-380.5-381T259 1393t139.5-520.5 380.5-381T1299 352t523 141.5 381.5 384T2341 1393q0 272-136 513zm-452-572q-3-81-13.5-152.5T1712 1046q-77 23-164.5 37t-188.5 18v233h394zm-40 406q17-63 27.5-135t13.5-153h-395v233q101 4 189 18t165 37zm-867-288q3 81 13.5 152.5T887 1740q78-23 165.5-37t188.5-18v-233H846zm40-406q-17 63-27 135t-13 153h395v-233q-102-4-189.5-18T886 1046zm355-531q-103 73-184.5 179T923 933q69 21 148 34t170 16V515zm118 1756q108-78 187.5-183t129.5-235q-69-21-147.5-34t-169.5-16v468zm629-1491q-91-103-208.5-175T1525 498q93 88 156.5 187T1788 894q60-25 109-54t91-60zm-629 203q91-3 169-16t147-33q-49-125-128-231.5T1359 516v467zm-284-485q-137 35-254.5 107T611 780q42 31 91.5 60T812 894q42-111 106.5-210T1075 498zm-300 508q-70-29-129-62.5T538 873q-68 100-109 216.5T380 1334h347q4-93 16-174.5t32-153.5zm-395 446q8 128 49 244.5T538 1913q49-37 108-70.5t129-62.5q-20-72-32-153.5T727 1452H380zm432 440q-60 25-109.5 54t-91.5 60q92 103 209.5 175t254.5 107q-87-82-153-181t-110-215zm429-89q-91 3-169 16t-147 33q49 125 128 231.5t188 186.5v-467zm284 485q137-35 254.5-107t208.5-175q-42-31-91-60t-109-54q-54 138-124 235.5T1525 2288zm299-508q71 29 129.5 62.5T2061 1913q69-100 110-216.5t49-244.5h-348q-7 184-48 328zm396-446q-8-128-49-244.5T2061 873q-49 37-107.5 70.5T1824 1006q41 144 48 328h348z" + }, + "children": [] + }] +}; +exports.u1F310 = u1F310; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F311.js b/dist/noto_emoji_regular/u1F311.js new file mode 100644 index 000000000..84b564689 --- /dev/null +++ b/dist/noto_emoji_regular/u1F311.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F311 = void 0; +var u1F311 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2149.5 1920.5q-131.5 227.5-359 359T1300 2411t-490.5-131.5-359-359T319 1430t131.5-490.5 359-359T1300 449t490.5 131.5 359 359T2281 1430t-131.5 490.5z" + }, + "children": [] + }] +}; +exports.u1F311 = u1F311; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F312.js b/dist/noto_emoji_regular/u1F312.js new file mode 100644 index 000000000..ff8b4d057 --- /dev/null +++ b/dist/noto_emoji_regular/u1F312.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F312 = void 0; +var u1F312 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2149 1920q-132 228-359 359.5T1300 2411t-490-131.5T451 1920t-132-490q0-265 133-493.5t360.5-358T1300 449t487.5 129.5 360.5 358 133 493.5q0 262-132 490zm-849 374q231 0 431.5-116.5t317-317T2165 1429t-116.5-431.5-317-317T1300 564l-20 1q230 110 371.5 345t141.5 519-141.5 519-371.5 345z" + }, + "children": [] + }] +}; +exports.u1F312 = u1F312; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F313.js b/dist/noto_emoji_regular/u1F313.js new file mode 100644 index 000000000..2d8b3069a --- /dev/null +++ b/dist/noto_emoji_regular/u1F313.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F313 = void 0; +var u1F313 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2148 1923.5q-133 228.5-360.5 358T1300 2411t-487.5-129.5-360.5-358T319 1430q0-263 131.5-490.5t359-359T1300 449t490.5 131.5 359 359T2281 1430q0 265-133 493.5zM1300 2293q229 0 430.5-115.5t317-317T2163 1430t-115.5-430.5-317-317T1300 567v1726z" + }, + "children": [] + }] +}; +exports.u1F313 = u1F313; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F314.js b/dist/noto_emoji_regular/u1F314.js new file mode 100644 index 000000000..db97dd75f --- /dev/null +++ b/dist/noto_emoji_regular/u1F314.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F314 = void 0; +var u1F314 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2149 1920q-132 228-359 359.5T1300 2411t-490-131.5T451 1920t-132-490q0-265 133-493.5t360.5-358T1300 449t487.5 129.5 360.5 358 133 493.5q0 262-132 490zm-849 373q232-2 432.5-117.5t315.5-316 115-429.5-114.5-428.5-315.5-317T1296 567q-254 99-411.5 336T727 1430q0 287 156.5 522t416.5 341z" + }, + "children": [] + }] +}; +exports.u1F314 = u1F314; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F315.js b/dist/noto_emoji_regular/u1F315.js new file mode 100644 index 000000000..1532d7628 --- /dev/null +++ b/dist/noto_emoji_regular/u1F315.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F315 = void 0; +var u1F315 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2153 1922.5Q2021 2150 1793.5 2282T1302 2414t-491.5-132T451 1922.5 319 1431t132-491.5T810.5 580 1302 448t491.5 132T2153 939.5t132 491.5-132 491.5zm-1599.5-60q116.5 200.5 317 317T1302 2296t431.5-116.5 317-317T2167 1431t-116.5-431.5-317-317T1302 566 870.5 682.5t-317 317T437 1431t116.5 431.5z" + }, + "children": [] + }] +}; +exports.u1F315 = u1F315; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F316.js b/dist/noto_emoji_regular/u1F316.js new file mode 100644 index 000000000..5088f8a82 --- /dev/null +++ b/dist/noto_emoji_regular/u1F316.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F316 = void 0; +var u1F316 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1790.5 580.5q228.5 131.5 360 360T2282 1431q0 263-132 491t-360 359-490 131q-263 0-490.5-131.5t-359-359T319 1431q0-261 130.5-488.5T808 582t492-133q262 0 490.5 131.5zM1305 2294q252-100 410.5-336t158.5-527q0-290-157.5-526T1305 567q-234 0-435 115T553 997.5 437 1431t115 431.5 314.5 315T1300 2294h5z" + }, + "children": [] + }] +}; +exports.u1F316 = u1F316; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F317.js b/dist/noto_emoji_regular/u1F317.js new file mode 100644 index 000000000..66e3f605f --- /dev/null +++ b/dist/noto_emoji_regular/u1F317.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F317 = void 0; +var u1F317 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2148 1923.5q-133 228.5-360.5 358T1300 2411t-487.5-129.5-360.5-358T319 1430q0-263 131.5-490.5t359-359T1300 449t490.5 131.5 359 359T2281 1430q0 265-133 493.5zM1300 567q-229 0-430.5 115.5t-317 317T437 1430t115.5 430.5 317 317T1300 2293V567z" + }, + "children": [] + }] +}; +exports.u1F317 = u1F317; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F318.js b/dist/noto_emoji_regular/u1F318.js new file mode 100644 index 000000000..9fde2409a --- /dev/null +++ b/dist/noto_emoji_regular/u1F318.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F318 = void 0; +var u1F318 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2149 1920q-132 228-359 359.5T1300 2411t-490-131.5T451 1920t-132-490q0-265 133-493.5t360.5-358T1300 449t487.5 129.5 360.5 358 133 493.5q0 262-132 490zm-846 372l20-1q-230-110-371.5-345T810 1427t141.5-519T1323 563l-20-1q-231 0-431.5 116.5t-317 317T438 1427t116.5 431.5 317 317T1303 2292z" + }, + "children": [] + }] +}; +exports.u1F318 = u1F318; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F319.js b/dist/noto_emoji_regular/u1F319.js new file mode 100644 index 000000000..aaeecbc4b --- /dev/null +++ b/dist/noto_emoji_regular/u1F319.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F319 = void 0; +var u1F319 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1925.5 2105Q1632 2392 1233 2392q-197 0-380.5-75.5t-327.5-223T381 1870q0-49 35.5-83.5T499 1752q39 0 82.5 28.5T725 1842t220 33q206 0 380.5-103.5T1598 1495t98-370q0-127-37-233t-67-147-30-85q0-49 35-83.5t82-34.5q74 0 227 143t233 327 80 381q0 425-293.5 712zM1679 660q68 106 101.5 225t33.5 241q0 230-113.5 429.5T1383 1874t-438 119q-117 0-230-30.5T499 1870q118 189 315 296.5t419 107.5q232 0 435-117.5t318-318.5 115-431q0-229-112.5-428T1679 660z" + }, + "children": [] + }] +}; +exports.u1F319 = u1F319; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F31A.js b/dist/noto_emoji_regular/u1F31A.js new file mode 100644 index 000000000..e1e58eddc --- /dev/null +++ b/dist/noto_emoji_regular/u1F31A.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F31A = void 0; +var u1F31A = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2150.5 1896.5q-131.5 227.5-359 359T1301 2387q-261 0-488.5-130.5T452 1898t-133-492q0-262 131-490t359.5-360T1301 424t491 132 359 360 131 490q0 263-131.5 490.5zm-954-259Q1243 1675 1301 1675q50 0 87.5-27t37.5-53q0-9-7-15t-16-6q-12 0-37 25t-65 25q-34 0-65-21.5t-31-55.5q0-37 32.5-103.5T1270 1308q0-47-19.5-95.5T1205 1164q-9 0-14 7.5t-5 18.5q0 17 5 29l11 26q7 18 11 33.5t4 36.5q0 64-33.5 126.5T1150 1548q0 52 46.5 89.5zm-225.5-406q-32-37.5-79-37.5-48 0-80 37.5t-32 85.5q0 50 33.5 86.5T892 1440t78-36.5 33-86.5q0-48-32-85.5zm558.5 518.5q-6.5-11-21.5-11-18 0-72 30.5t-122 30.5q-74 0-133-31t-72-31-20.5 10-7.5 21q0 39 71.5 81t167.5 42q89 0 152.5-46t63.5-78q0-7-6.5-18zm255.5-519.5q-32-36.5-79-36.5-48 0-80 37.5t-32 85.5q0 50 33.5 86.5t78.5 36.5 78-35.5 33-87.5q0-50-32-86.5z" + }, + "children": [] + }] +}; +exports.u1F31A = u1F31A; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F31B.js b/dist/noto_emoji_regular/u1F31B.js new file mode 100644 index 000000000..8e4eea88c --- /dev/null +++ b/dist/noto_emoji_regular/u1F31B.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F31B = void 0; +var u1F31B = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2055.5 1898q-139.5 242-382 382T1152 2420q-248 0-498-125t-250-262q0-58 35-91.5t81-42.5q37-7 171.5-19.5T826 1830q13-100 91-152 5-27 15.5-44.5T958 1600q-61-49-94.5-103.5T830 1388q0-69 57-123.5t179.5-73.5 223.5-127.5T1391 804q0-81-29-147.5T1333 546q0-64 44.5-105.5T1477 399q63 0 216 89t267 229 174.5 313 60.5 351q0 275-139.5 517zm-55.5-888q-77-170-197-283t-199-155l-54-27q-17-9-40.5-18.5T1477 517q-6 0-16.5 8t-10.5 24q0 14 8 34.5t15 36.5l8 18q27 83 27 166 0 128-59.5 240T1282 1227t-188 80l-33 4q-57 7-84.5 29t-27.5 48q0 34 37.5 76.5t97 84 59.5 77.5q0 33-55 41.5t-55 35.5q0 14 12 30.5t22 28.5l12 14q5 7 12 12-15 0-32.5-9.5t-39.5-9.5q-64 0-76.5 82T841 1967t-204 35.5-115 31.5q0 18 28 50t90 68l38 23q115 67 233 96.5t242 29.5q244 0 457.5-120.5t340-336.5 126.5-465q0-199-77-369zm-254 458q11 10 13 26 0 21-14 33t-58 12q-114 0-186.5-58t-92.5-144l-6-23-1-6q0-16 11-27.5t28-11.5q16 0 26.5 9.5t13.5 23.5l3 13q13 64 66 104.5t138 40.5q8 0 15-1t18-1q15 0 26 10z" + }, + "children": [] + }] +}; +exports.u1F31B = u1F31B; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F31C.js b/dist/noto_emoji_regular/u1F31C.js new file mode 100644 index 000000000..53cecc326 --- /dev/null +++ b/dist/noto_emoji_regular/u1F31C.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F31C = void 0; +var u1F31C = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M584.5 793Q765 524 1057 412l26-9q17-5 40-5 54 0 99 42t45 104q0 50-29.5 113.5T1208 804q0 159 110 267.5t224.5 120 170 67.5 55.5 128q0 55-31.5 107t-94.5 105q11 11 23 31t17 47q52 36 72 84t19 69 61 36.5 103 15.5 105 8l22 3q60 11 95.5 45.5t35.5 94.5-48.5 116.5T1965 2278l-41 23q-115 60-235.5 88.5T1446 2418q-277 0-519-138.5t-382.5-382T404 1379q0-317 180.5-586zm62 1045.5Q771 2053 985 2176.5t462 123.5q104 0 214.5-25.5t240-95.5 152.5-100 23-47q0-16-26-22t-63-8l-80-5q-77-4-156.5-34.5t-94-112.5-73.5-82q-12 0-21.5 2.5t-17.5 5.5l-17 7q-9 3-19 4 8-5 12.5-12.5t10.5-14.5l21-26q13-16 13-32 0-27-55-36t-55-42q0-36 58.5-76.5t97-83.5 38.5-77q0-28-27-49.5t-84-28.5l-33-4q-82-10-189-80.5T1150 1041t-60-238q0-42 7-83.5t21-83.5l8-18q7-16 15-36.5t8-34.5q0-17-10.5-24t-17.5-7q-27 0-150 70T742.5 779t-163 277.5T522 1378q0 246 124.5 460.5zM907 1458q88 0 141.5-39.5T1116 1314l3-13q2-15 13.5-24.5t25.5-9.5q17 0 28 11.5t11 28.5q0 27-30.5 90t-95 101.5T916 1537l-25-1q-22 0-36-10t-14-30q0-17 11-28t28-11h15z" + }, + "children": [] + }] +}; +exports.u1F31C = u1F31C; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F31D.js b/dist/noto_emoji_regular/u1F31D.js new file mode 100644 index 000000000..45d72dc34 --- /dev/null +++ b/dist/noto_emoji_regular/u1F31D.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F31D = void 0; +var u1F31D = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2151 1894.5Q2019 2122 1791.5 2254T1300 2386t-491.5-132T449 1894.5 317 1403t132-491.5T808.5 552 1300 420t491.5 132T2151 911.5t132 491.5-132 491.5zm-1599.5-60q116.5 200.5 317 317T1300 2268q230 0 429.5-115t317-316.5T2164 1403t-117.5-433.5-317-316.5T1300 538q-231 0-431.5 116.5t-317 317T435 1403t116.5 431.5zm536-88q7.5-9.5 19.5-9.5 14 0 73 31t133 31q41 0 75.5-11.5t69.5-30.5l23-12q13-7 26-7 15 0 21.5 10.5t6.5 17.5q0 32-63.5 78t-152.5 46q-97 0-168-41.5t-71-81.5q0-11 7.5-20.5zm-276-345.5q-32.5-37-32.5-86 0-48 32-85.5t80-37.5q47 0 79 37.5t32 85.5q0 49-32.5 86t-78.5 37q-47 0-79.5-37zm972.5-171.5q32 37.5 32 85.5 0 49-32.5 86t-78.5 37-78.5-37-32.5-86q0-48 32-85.5t79-37.5 79 37.5zM1388.5 1646q-36.5 27-88.5 27-57 0-104-36.5t-47-89.5q0-40 33.5-104t33.5-129q0-21-4.5-37.5T1201 1243l-11-26q-5-13-5-30 0-10 5-17.5t14-7.5q19 0 42 44t23 100q0 29-7.5 64t-20.5 65l-17 38q-8 19-14 36.5t-6 34.5q0 32 29.5 55t66.5 23q40 0 65-25t37-25q8 0 15.5 5.5t7.5 16.5q0 25-36.5 52z" + }, + "children": [] + }] +}; +exports.u1F31D = u1F31D; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F31E.js b/dist/noto_emoji_regular/u1F31E.js new file mode 100644 index 000000000..453f499cd --- /dev/null +++ b/dist/noto_emoji_regular/u1F31E.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F31E = void 0; +var u1F31E = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1265 2612l-136-280-229 212q-13 11-27 11-16 0-26.5-10.5T834 2519l-26-311-290 115q-8 3-15 3-15 0-27-11.5t-12-28.5q0-3 2-11l88-299-312 3q-14-2-26.5-11t-12.5-28q0-13 8-24l190-247-292-111q-25-9-25-37 0-22 19-33l266-162-232-208q-13-12-13-30 0-14 9-24.5t23-12.5l307-55-141-278q-5-10-5-19 0-17 12.5-28t28.5-11l312 61-31-310v-5q0-15 11-26.5t28-11.5q10 0 21 6l264 167 82-301q3-12 14-20.5t25-8.5q18 0 31 16l185 250 186-250q11-16 31-16 14 0 24 8.5t15 20.5l82 301 264-167q9-6 20-6 20 0 30 14t10 29l-32 310 306-60h6q17 0 29 11t12 28q0 10-4 18l-142 278 307 55q14 2 23.5 13.5t9.5 25.5q0 17-13 28l-233 208 267 162q19 12 19 36 0 11-8 20.5t-17 13.5l-292 111 190 247q8 11 8 24 0 17-12.5 28t-26.5 11l-313-3 86 292q5 10 5 18 0 21-14.5 30t-32.5 9q-4 0-8-2l-290-115-25 311q-2 15-12.5 25.5T1728 2555t-27-11l-229-212-136 280q-11 22-36 22-24 0-35-22zm-89-362l124 255 124-255q5-11 15-16.5t21-5.5q17 0 27 10l208 194 24-284q2-14 13-25t25-11q7 0 15 3l264 105-80-272q0-3-1-11 0-17 12-28.5t27-11.5l284 3-173-226q-5-5-6.5-11t-1.5-12q0-13 7-23t18-14l266-101-243-147q-19-10-19-33 0-17 13-30l212-189-280-50q-14-2-23-13t-9-26q0-10 4-17l129-254-279 55q-3 0-7 1-16 0-28-11t-12-27l1-2v-3l28-283-240 151q-9 6-21 6-14 0-24.5-8t-13.5-20l-75-274-169 228q-12 15-32 15-9 0-17.5-3.5T1269 567l-169-228-76 274q-4 13-14 20.5t-23 7.5q-12 0-22-6L725 484l29 283v4q0 15-10.5 27T717 810q-7 0-10-1l-279-55 130 254q4 10 4 17 0 16-9.5 26.5T529 1064l-279 50 211 189q13 13 13 30 0 11-5.5 19.5T455 1366l-243 147 266 101q11 5 18.5 15t7.5 22q0 13-8 23l-174 226 285-3q17 2 28 12.5t11 27.5q0 8-1 11l-81 272 264-105q7-3 15-3 15 0 26 10.5t13 25.5l24 283 208-193q11-11 27-11 11 0 20.5 6.5t14.5 16.5zM655 1057.5Q751 887 924 784t376-103q199 0 371 99.5t271.5 271.5 99.5 371-99.5 371-271.5 271.5-371 99.5q-203 0-376-103t-269-273.5-96-365.5 96-365.5zm71 695Q815 1908 970.5 1997t329.5 89 328-87.5 244.5-242T1963 1423q0-180-90.5-334.5t-244.5-242-328-87.5q-175 0-330.5 89t-244 244.5T637 1423q0 174 89 329.5zm404.5-35q5.5-8.5 16.5-8.5 8 0 17 4l15 9q32 17 65.5 27.5t69.5 10.5q32 0 59.5-10.5t56.5-24.5l19-10q10-5 20-5 13 0 18 8.5t5 14.5q0 9-6.5 20t-19.5 23l-11 10q-29 24-64 35.5t-73 11.5q-80 0-136.5-33.5T1125 1734q0-8 5.5-16.5zM1403 1594q0 21-30 42.5t-71 21.5q-43 0-72-21.5t-29-42.5q0-8 5.5-13t13.5-5 15 6l14 14q8 8 21 14.5t32 6.5q32 0 52-20.5t30-20.5q8 0 13.5 5t5.5 13zm-503.5-99.5Q871 1463 871 1419q0-45 28.5-75.5T967 1313t68 30.5 29 75.5q0 44-28.5 75.5T967 1526q-39 0-67.5-31.5zM1633 1526q-39 0-68-31t-29-76q0-46 29.5-76t67.5-30 67.5 30 29.5 76q0 45-29 76t-68 31z" + }, + "children": [] + }] +}; +exports.u1F31E = u1F31E; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F31F.js b/dist/noto_emoji_regular/u1F31F.js new file mode 100644 index 000000000..da2d9abfd --- /dev/null +++ b/dist/noto_emoji_regular/u1F31F.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F31F = void 0; +var u1F31F = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M304 767q-20-11-30-21.5T264 720q2-29 35.5-79.5t65-79.5 54.5-50.5 48-21.5q31 0 62 32.5T624 665l79 138 57 109q6 11 6 23 0 17-14.5 34.5T718 987q-33 0-212.5-103.5T323 778zm331.5 1122q15.5 15 15.5 33 0 16-40 64.5t-147 155T343 2262t-32 14q-43 0-107-95.5T140 2052q0-34 44.5-59.5t121.5-46 179.5-46.5 117.5-26q17 0 32.5 15zM1888 987h-7q-19 0-33.5-17.5T1833 935q0-12 6-23l57-109q25-48 53.5-94.5T2003 616t59.5-86.5T2128 489q43 0 124 93t81 138q0 15-9.5 26t-28.5 21l-19 11-142 83q-64 38-149.5 82t-96.5 44zm318 937l74 19q66 16 122.5 44t56.5 63q0 33-62.5 129.5T2288 2276q-21 0-34-14t-110-111-146.5-154-49.5-75 15.5-33 32.5-15q15 0 67 12t91 23zm-287 385q2 3 2 6v7q0 20-15.5 35t-35.5 15q-15 0-26-8l-544-345-545 345q-6 5-13 6.5t-13 1.5q-21 0-36-15t-15-35v-7q0-3 2-6l154-628-491-409q-18-13-18-38 0-20 13-33.5t32-15.5l641-52 243-590q13-31 46-31 14 0 26.5 8.5T1345 543l243 590 641 52q19 2 32 15.5t13 33.5q0 25-18 38l-490 409zm-619-498l376 238-107-433 338-281-441-35-166-407-167 407-441 35 338 281-105 433z" + }, + "children": [] + }] +}; +exports.u1F31F = u1F31F; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F320.js b/dist/noto_emoji_regular/u1F320.js new file mode 100644 index 000000000..125082ffa --- /dev/null +++ b/dist/noto_emoji_regular/u1F320.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F320 = void 0; +var u1F320 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2309.5 537q5.5 2 5.5 6 0 6-12.5 14.5T2276 571l-10 4q-188 93-372.5 198.5T1540 1009q0-34-18-58t-36-34q270-184 513-283t300-99q5 0 10.5 2zM1636 1873q5 7 8.5 15t3.5 16q0 17-13 27t-27 10l-505-5-219 455q-5 10-15 16t-21 6q-14 0-23.5-7.5T811 2386l-158-482-494-69q-16-2-25-13t-9-27q0-18 15-30l406-298-84-499q0-16 11-28t28-12q12 0 24 7l404 293 448-230q7-4 18-4 17 0 27.5 12t10.5 26v6q0 4-1 7l-159 474zm-270-72l-251-244 110-327-309 158-278-201 58 340-280 205 341 47 109 333 152-314zm-507-791q-12-12-12-20 0-7 9.5-16.5T882 951l15-11q233-186 436.5-301T1718 457t219-67q3 0 9 2t6 7q0 16-63.5 40.5t-266.5 135-370.5 231-240 189.5-88.5 69q-10 0-22-10.5t-23-21.5zm1562.5-159q-53.5 28-271 158.5t-382 266-217 194-70.5 58.5q-19 0-49.5-30t-30.5-42q0-5 5-11.5t13-13.5l29-25q324-286 634.5-443T2462 806q7 0 10 1.5t3 5.5q0 10-53.5 38z" + }, + "children": [] + }] +}; +exports.u1F320 = u1F320; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F330.js b/dist/noto_emoji_regular/u1F330.js new file mode 100644 index 000000000..ca120f600 --- /dev/null +++ b/dist/noto_emoji_regular/u1F330.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F330 = void 0; +var u1F330 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2164.5 2055Q2047 2235 1819 2332t-519 97q-288 0-517-97t-347.5-276T317 1669q0-140 60.5-259T527 1199.5 749 998t217-187 165-218 166-156h6q79 14 155 140t128 185 200 183l117 97h-1q196 162 288 308t92 319q0 206-117.5 386zM1992 1864.5q-52-36.5-258.5-89T1300 1723q-241 0-444.5 54.5t-252.5 90-49 81.5q0 69 94.5 162.5t238.5 139 413 45.5q273 0 415-46t235.5-138 93.5-163q0-48-52-84.5z" + }, + "children": [] + }] +}; +exports.u1F330 = u1F330; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F331.js b/dist/noto_emoji_regular/u1F331.js new file mode 100644 index 000000000..e480fb2fd --- /dev/null +++ b/dist/noto_emoji_regular/u1F331.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F331 = void 0; +var u1F331 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2342 1159.5q-53 54.5-153 54.5-59 0-239.5-32t-271.5-32q-95 0-185 49t-90 148q0 26 28.5 157t28.5 295q0 137-25.5 247.5t-60 177T1217 2290q-48 0-87-19t-39-53q0-21 15-49l34-63q59-115 87.5-235.5T1256 1629q0-71-9.5-138t-16-103-38.5-67.5-81.5-47.5-113.5-16q-156 0-299.5 95T436 1447q-108 0-170-70t-62-187q0-128 63.5-240.5t189-183T741 696q156 0 289 77.5t239 247.5q43-243 202-386t369-143q233 0 394 154t161 356q0 103-53 157.5z" + }, + "children": [] + }] +}; +exports.u1F331 = u1F331; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F332.js b/dist/noto_emoji_regular/u1F332.js new file mode 100644 index 000000000..1b758a73f --- /dev/null +++ b/dist/noto_emoji_regular/u1F332.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F332 = void 0; +var u1F332 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2224 1873l-1 9-2 10q-10 46-72.5 83.5T1967 2013q-37 0-76-3-42 0-45 35t-36.5 71-92.5 36q-48 0-95-19.5t-73-36.5-49-17q-22 4-37.5 17t-41.5 23q3 25 8 57t13 53l13 34q6 18 11 35.5t5 32.5q0 46-56 57.5t-115 11.5q-61 0-116-12t-55-57q0-15 5-32.5t12-35.5l13-34q9-25 15-68t8-76l-6-6q-13-8-33-8-31 0-54 17t-74.5 39.5T912 2150q-65 0-95.5-39t-35.5-71-41-32q-28 0-54.5 2.5T633 2013q-106 0-163.5-27.5t-75-57T377 1883l-1-10q0-103 122-134t250-106l6-4q3-2 3-6 0-5-14-9t-32-7l-36-6q-65-9-108.5-40t-52.5-83l-1-9q0-99 105.5-128.5t182-66T877 1230q0-5-10.5-8t-31.5-5l-17-2q-55-10-86-36t-35-59l-1-4q0-3-1-12 0-71 84.5-106T947 916.5t83-57.5q0-5-4-6l-8-2-17 2q-3 0-7 1l-17 1q-49 0-83.5-27.5T859 749q0-62 72.5-99t130.5-92 109-126 77.5-123 47.5-52l3 1h2l3-1q24 0 63 77t121 171.5T1655.5 642t85.5 107q0 52-34 79t-84 27q-13 0-17-1-4 0-6-1l-18-2-7 2q-5 0-5 6 0 3 2 5l4 5q130 85 229.5 122t99.5 112v7l-1 5q0 3-1 5-5 37-42 64t-94 33l-20 2q-10 2-17.5 4.5t-7.5 6.5q0 6 73.5 42.5t182 67T2086 1462v7l-1 9q-4 45-46.5 80t-130.5 47l-53 8q-5 0-8.5 2.5t-3.5 7.5q0 4 3 6l6 4q130 74 251 106.5t121 127.5v6z" + }, + "children": [] + }] +}; +exports.u1F332 = u1F332; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F333.js b/dist/noto_emoji_regular/u1F333.js new file mode 100644 index 000000000..56ec7e015 --- /dev/null +++ b/dist/noto_emoji_regular/u1F333.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F333 = void 0; +var u1F333 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2068 1642q17 28 26 59.5t9 66.5q0 104-74 176.5t-175 72.5q-37 0-71-10t-63-29q-22 81-88.5 132t-151.5 51q-28 0-55-6l7 41q3 15 9 31l13 34q6 18 11 35.5t5 32.5q0 46-57 57.5t-114 11.5q-61 0-116-12t-55-57q0-26 17-68t22-65l8-50q-33 9-69 9-75 0-138-42.5T876 2000q-29 17-62 27t-68 10q-103 0-176-73t-73-176q0-58 25-110-68-25-110-85.5T370 1460q0-63 30.5-115.5T482 1262q-29-30-46.5-70.5T418 1106q0-75 47-136t123-80q-19-41-19-85 0-83 60-143t143-60h12l11 2q-3-12-5-23.5t-2-24.5q0-79 57.5-136.5T982 362q25 0 48.5 7t43.5 18q26-41 69-65.5t94-24.5 94 24 69 64q24-20 54-31t65-11q77 0 134 55t59 134q14-4 28-6.5t28-2.5q83 0 143 60t60 143q0 26-5.5 48.5T1949 818q91 2 155 67t64 156q0 51-21 94t-56 74q61 26 99.5 83.5T2229 1421q0 76-45.5 137.5T2068 1642z" + }, + "children": [] + }] +}; +exports.u1F333 = u1F333; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F334.js b/dist/noto_emoji_regular/u1F334.js new file mode 100644 index 000000000..30caaaf05 --- /dev/null +++ b/dist/noto_emoji_regular/u1F334.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F334 = void 0; +var u1F334 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2338 1414l4 29q0 15 1 29 0 26-6 56.5t-10 53.5q-12-6-31-14l-39-16-56-20q-14-4-26.5-12.5T2148 1509l-2-17q0-8-1-16 0-11 1-22.5t1-22.5q0-57-20-122l-12-26q-12 25-22.5 67t-27 75-24.5 33-50-13.5-44-13.5q0-24 3-49t3-53q0-35-7-68t-14-33q-16 0-26 50.5t-22.5 84.5-25.5 34q-9 0-17-5.5t-40.5-11-79.5-26-128-40.5l-81-19q8 11 15 22l14 26q32 54 52 107t35 115l17 77q28 127 43.5 252t15.5 255v63q0 79-6 121t-11 107-64 86-119 21q-79 0-157.5-38t-78.5-100q0-12 6-21l14-20q12-20 12-29.5t35.5-165T1371 1850q0-107-5-216t-33-217q-13 22-25 48l-23 52q-3 5-6 14l-6 18q-4 9-9.5 15.5t-12.5 6.5q-6 0-15.5-6.5T1216 1546l-8-8q-6-5-14.5-11t-12.5-13q3 20 6.5 33t15.5 32l10 18q5 9 8.5 17.5t3.5 14.5q0 13-6 24l-11 20q-4 7-28 62.5t-31 55.5q-9 0-26-20t-23-31l-19-34q-10-17-19-30.5t-17-15.5q0 5-1 15 0 32 15 63.5t37.5 66 22.5 42.5q0 15-12 38.5t-19 45.5l-11 35-7 18q-9 23-21 42.5t-22 19.5q-13 0-56.5-35t-77-110.5T860 1739q0-76 20-141t58-125q-12 12-25 22l-28 22q-14 11-26.5 22.5T836 1565l-9 12q-9 13-18.5 22t-19.5 9q-14 0-21.5-20.5T756 1542l-8-46q-4-20-8-20-3 0-6 12t-4 45l-1 24q0 23 5.5 41.5t5.5 39.5q0 15-27.5 50t-60.5 61q-10-8-24-43t-18-60l-2-45q0-8-2-24t-3-16q-16 0-23 25.5t-7 66.5q0 23 2.5 45.5t6.5 41.5l6 32q2 13 2 16 0 8-14 29t-32 44l-36 45q-30 37-37 53.5t-18 16.5q-24 0-51-79.5T375 1710q0-142 71-275.5T694 1220t310-81q-25-4-50-6l-52-4q-26-2-51.5-5t-49.5-10q0-2-1-5v-4q0-11 7-47t7-85q0-4-4-4-18 0-41 28.5t-32 51.5l-15 41-4 13q-5 2-10 2h-9q-11 0-21-1t-21-1-23.5 1-25.5 1h-11q-7 0-12-2 0-25 7.5-47.5T609 1014l17-35q7-15 7-26 0-2-4.5-3t-8.5-1q-54 0-100.5 70t-46.5 87q-2 5-12.5 6.5T430 1114q-21 0-49-2l-53-4q-27-2-46-4.5t-25-2.5q8-65 62-147.5t176.5-152T760 732q89 0 165 31.5t150 79.5q-26-45-43-94.5T1015 647q0-102 61-188.5T1255.5 307t181.5-65q5 0 6 2t1 9q0 18-7.5 58.5T1418 401l-7 27q-5 18-5 27t-27 15.5-73 19.5-54 21-8 11q0 6 17 9t46 5l46 3q23 2 28 5t5 24q0 15-2 34t-2 53l-1 128q0 13 1 26 60-144 189-238.5t278-94.5h39q66 2 101.5 16t55.5 19 87 53 67 72q0 10-43.5 31t-63 34.5T2060 717q-12 0-22.5-14t-52-40.5T1933 636q-3 0-4.5 4.5t-1.5 8.5q0 17 6.5 34.5T1948 717l14 31q7 15 9 27-18 6-33 17t-28 11q-5 0-39.5-21t-87.5-45.5-60-24.5q-5 0-5 8 0 28 36.5 71.5T1799 868q0 14-20.5 22.5t-88 51T1544 1054q76-29 157-46.5t162-17.5q209 0 335.5 111.5T2338 1414z" + }, + "children": [] + }] +}; +exports.u1F334 = u1F334; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F335.js b/dist/noto_emoji_regular/u1F335.js new file mode 100644 index 000000000..8a3c47c6b --- /dev/null +++ b/dist/noto_emoji_regular/u1F335.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F335 = void 0; +var u1F335 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2471.5 1027q-24.5 212-69.5 307t-107.5 161-253.5 156.5-349 156.5q-5 84-11 163l-11 143-9 92q-11 111-30.5 207.5t-104 163T1313 2643q-100 0-192-49.5T997.5 2493 947 2297t-33-222q-58 8-120 14t-125 6q-192 0-300.5-66t-187-233-78.5-329q0-132 70.5-228.5T354 1142q59 0 99.5 18.5T531 1227t67 167.5 39 157.5 49 63 89 25q12 0 29-1l33-2-41-252q-25-151-38.5-279T744 879q0-314 125.5-466T1240 261q162 0 268.5 72.5t160 228T1722 1004q0 57-1 113l-4 114q143-92 181-155t38-161q0-59-5-136t-5-167q0-141 37-204.5T2067.5 306t143.5-38q87 0 150.5 42.5t99 117T2496 652q0 163-24.5 375zM1326 2524q2 0 4 1 11 0 17-14.5t7-38.5v-27q0-184-21.5-444t-31-483-13-692-70.5-469q-22 0-27.5 12t-11 58.5T1174 551v47l14 366q14 358 54.5 859t60.5 658l3 24q0 12 15 17zm-153-7.5q3-10.5 3-24.5v-14q0 3-11.5-82.5T1153 2308l-22-155q-12-88-24-185l-25-198q-47-370-64.5-603T1000 840q0-166 29.5-286t42-144 12.5-39q0-8-3.5-15.5T1066 348q-42 0-98.5 135T911 827q0 156 49 569t89 677l11 71q6 42 15 89l16 93q30 172 44 186.5t24 14.5q11 0 14-10.5zM1578 1474l2-122q0-60 1-123 0-282-19.5-411t-61-236.5T1392 390l-10-13q-11-11-24-21t-25-10q-9 0-14 5.5t-5 12.5q0 18 15.5 38t79 184.5T1488 1000t16 441q0 309-26 984l1 24q0 13 5.5 24t14.5 11q25 0 33.5-56t18-147.5T1562 2081l8-344zm773-803.5q-1-29.5-4-59.5l-6-53q-10-69-30-111.5t-52-42.5q-12 0-16 11.5t-4 22.5q0 16 5 31l10 31q17 66 22.5 137.5T2282 781q0 231-28.5 341.5t-101 196-248 167.5-202 95.5-26.5 36.5q0 17 7.5 23.5t18.5 6.5q12 0 31.5-6.5t36.5-14.5l108-48q220-98 328-206t127-294.5 19-348.5q0-30-1-59.5zM895 1971l18-3q9 0 9-9 0-14-2-21l-5-13h-70l-52 1-90 1q-165 0-248.5-57.5t-130-171T278 1445q0-30 2.5-59.5t7.5-58.5q0-3 3-11l5-19q3-10 5-21.5t2-20.5q0-21-13-21-37 0-57.5 64T212 1459q0 127 37.5 238.5t94 172.5 136 88 237.5 27q44 0 89.5-3t88.5-11zm786-602q-11 7-11 24 0 11 5 18t16 7q7 0 41.5-12t125-59.5 139.5-79 76-72 43.5-98.5 16.5-130v-58l-1-101q0-45-1.5-89t-1.5-89q0-106 5-129t5-38q0-13-5.5-25.5T2117 425q-15 0-27.5 37t-18.5 83l-4 30q-5 45-6.5 88t-1.5 88v128q0 24 1 49t1 51q0 94-27.5 148t-89 99.5T1812 1304l-109 51zM426 1657q38 90 110.5 127t214.5 37q95 0 129.5-10.5T915 1785q0-16-7-32-34 0-99.5 5.5T719 1764q-95 0-156-41t-83.5-131.5-27.5-206-38-115.5q-13 0-19.5 21.5T388 1355q0 212 38 302z" + }, + "children": [] + }] +}; +exports.u1F335 = u1F335; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F337.js b/dist/noto_emoji_regular/u1F337.js new file mode 100644 index 000000000..2807a53a2 --- /dev/null +++ b/dist/noto_emoji_regular/u1F337.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F337 = void 0; +var u1F337 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2112 1748q-91 56-203.5 266T1663 2358t-326 185l-41 12q-51 15-102.5 25.5T1104 2591q-37 0-58-12t-21-44q0-39 36-138t116-170l22-19q17-89 27-178.5t10-180.5q0-44-1-87l-4-86q-32 13-66 19t-69 6q-220 0-360-159t-140-374q0-54 3.5-109.5T603 947q0-110-27-196.5T473 612t-76-91q0-37 36-56t107-19q119 0 211 41.5T868 607q-38 82-60.5 173.5T785 977q0 71 12 140t39 133q-13-59-13-132 0-134 44-339t122.5-352.5T1144 279q73 0 164.5 105.5T1487 648l29 54q56 94 103 207t59 204l1-19v-21q0-124-38.5-237T1561 660t-77-126q0-125 89.5-201t200.5-76q56 0 94 14.5t38 41.5q0 30-76.5 92.5T1753 601q0 100 49 267t49 283q0 217-120 368.5T1392 1671q-18 0-26-2v36q0 104-1.5 206.5T1355 2117q47-19 92-88.5t97-122 130-77.5 114-59l55-53q60-58 144.5-85t137.5-27q29 0 53.5 13t24.5 36q0 38-91 94z" + }, + "children": [] + }] +}; +exports.u1F337 = u1F337; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F338.js b/dist/noto_emoji_regular/u1F338.js new file mode 100644 index 000000000..7d5011dfa --- /dev/null +++ b/dist/noto_emoji_regular/u1F338.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F338 = void 0; +var u1F338 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2446 1283q14 7 14 18l-1 5q0 25-35.5 98t-97 134.5T2165 1641t-238 41q-71 0-146-12 117 87 194 217t77 267q0 60-13.5 113t-37.5 107.5-44 54.5q-3 0-9-2l-92-55 4 109q0 8-4.5 13t-10.5 7q-2 0-19 3t-47 3q-108 0-212.5-52t-182-147-118.5-190.5-41-238.5q-71 212-229.5 340T656 2347q-63 0-146-21t-83-44q0-2 2-8l41-101-110 19q-16 0-21.5-11t-15.5-50-10-90q0-118 64.5-229.5t178.5-200T870 1490q-312 0-491.5-124T199 1043q0-33 5-67.5t24-34.5h121l-66-88q-4-5-4-12 0-20 84.5-56.5T551 748q133 0 274.5 69.5T1076 1056q-23-72-34-139t-11-132q0-162 56-274t140.5-167 148.5-66l29-5q17 0 21 13l32 104 72-84q4-7 15-7 19 0 81.5 54T1728 497.5t39 198.5q0 97-30.5 205t-85.5 190q94-53 195-78t189-25q164 0 280.5 74t116.5 104q0 8-7 15l-84 69zm-1395.5 137.5q18.5 20.5 49.5 20.5 30 0 54-19t24-51q0-26-18.5-48t-46.5-22q-33 0-57 21t-24 52q0 26 18.5 46.5zM1233 1584l2-9v-8q0-28-19-49t-48-21q-31 0-55.5 22t-24.5 51q0 26 19 46.5t50 20.5q25 0 47-14.5t29-38.5zm110-306q24-21 24-49t-19.5-49-48.5-21q-33 0-56 22t-23 51q0 28 19 47.5t48 19.5q32 0 56-21zm114.5 258.5Q1439 1515 1409 1515q-31 0-55.5 22t-24.5 51q0 26 19.5 46.5t49.5 20.5 54-20.5 24-49.5q0-27-18.5-48.5zM1548 1369v-8q0-27-19.5-48t-49.5-21q-29 0-53 21t-24 51q0 26 18.5 46.5t49.5 20.5q25 0 47-14.5t29-38.5z" + }, + "children": [] + }] +}; +exports.u1F338 = u1F338; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F339.js b/dist/noto_emoji_regular/u1F339.js new file mode 100644 index 000000000..19abbcbb6 --- /dev/null +++ b/dist/noto_emoji_regular/u1F339.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F339 = void 0; +var u1F339 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2309 1399q-57 129-89.5 269.5t-131 292.5-239 244-214.5 92q-58 0-93.5-2.5t-59.5-2.5q-46 0-75.5 18t-101 44.5T1165 2381q-84 0-183.5-40.5t-169.5-105-93.5-119-66-69.5-140-73.5-170-143T270 1658q0-94 24-170t24-105q0-27-23-88.5T272 1139q0-104 22-194t49.5-121.5 103-99.5T593 617.5 740.5 553 895 527h31l25 1q12 0 20.5-1t14.5-6l33-26q97-75 145.5-98.5t133-42.5 179.5-19q130 0 231.5 32T1903 511t101 248l4 68 37 22 109 71 58 40q87 60 120.5 113.5T2366 1186q0 84-57 213zM1187 660q41 6 62 9l25 6q38 10 74 33t56.5 50.5 53.5 34 84 6.5q76 0 149 46.5t83 46.5q8 0 14.5-5t6.5-16q0-32-73-117t-186-131.5-263-46.5q-39 0-83 15.5t-44 38.5q0 24 41 30zm403 388q13 26 23.5 57.5t10.5 75.5q0 79-35 149.5t-35 77.5q0 8 5.5 10t9.5 2q35 0 99.5-83.5T1733 1156q0-58-31.5-105t-79.5-76-59-29q-9 0-11.5 6t-2.5 11q2 6 6 15.5t13 25.5zm-530 152l1-9q0-11-12-11-14 0-53 19.5t-39 49.5q0 41 40 62.5t95 21.5h19q22 0 69.5-23.5t47.5-61.5q0-4-3-7t-14-3q-8 0-23 3.5t-32 3.5q-38 0-67-11.5t-29-33.5zm-4-82q2 0 10-2l19-6q23-7 52-12.5t54-5.5q62 0 107 47t45 79q0 23 16 23 23 0 38-49.5t15-91.5q0-59-31-100t-88-41q-77 0-162.5 57t-85.5 92q0 10 11 10zm-19 308l-13-7q-9-5-15-5-5 0-5 5 0 46 99 105.5t171 62.5l24 1q60 0 91.5-54.5T1432 1357q0-32-16-32-13 0-21 19t-39 55.5-58.5 53.5-72.5 17q-34 0-78.5-9.5T1037 1426zm-168.5-328q2.5 6 8.5 6 22 0 48.5-54t87-110.5 114.5-81 54-36.5q0-10-12.5-15.5T1132 800h-25q-83 0-128 26.5T900 954t-34 130q0 8 2.5 14zm-284 152.5Q673 1332 711 1332q5 0 7-3t2-12q0-17-6-38l-15-48q-9-25-15.5-57.5T677 1101q0-76 33.5-156.5T788 808l29-36q4-6 19.5-26.5T852 719q0-10-12-10-18 0-120 55.5t-163 119-61 171.5q0 114 88.5 195.5zm403 537q41.5-25.5 41.5-43.5 0-8-6-10.5t-10-2.5q-63 0-152-32.5T697 1602t-110-116l-14-19q-4-5-12.5-14t-19.5-9q-18 0-18 25 0 91 57.5 184.5T723 1780t158 33q65 0 106.5-25.5zM1882 1660h-3l-41 51q-40 51-139.5 115.5t-219 98T1148 1958q-61 0-84.5-1.5t-25.5-1.5q-11 0-18 3t-7 10q0 21 116 50.5t239 29.5q124 0 254-57t198-147 68-168q0-16-6-16zm8.5-433.5Q1874 1187 1862 1187q-19 0-35 80.5t-60.5 145.5-107.5 116.5-147.5 95.5-84.5 59q0 7 9.5 8.5t15.5 1.5q59 0 211.5-63.5t198-143T1907 1327q0-61-16.5-100.5zM2094 1136q-44-93-81-93-6 0-7.5 9.5t-1.5 19.5q9 38 20 115t11 138q0 65-15 152.5t-31 148.5l-14 52q-3 9-3 14 0 8 4 10.5t8 2.5h5q6 0 48-53t71.5-131.5T2138 1337q0-108-44-201zM790 2304q-12 12-23 12-10 0-20.5-3t-26.5-3q-53 0-90 34t-59 34q-26 0-51.5-5t-52.5-5q-32 0-65.5 5.5T340 2387l-24 6q-13 3-26 3-21 0-26.5-10.5T258 2358q0-36 15-87t15-87q0-40-16-60.5t-16-34.5q0-6 5-17t12-21l23-31q11-15 19.5-32.5t8.5-37.5q0-14-10-23.5t-12-18.5q0-4 4-9.5t7-5.5q66 73 163.5 135t142 79 72 76.5T790 2304zm1671-82l1 8q0 10-8 13t-23 3q-17 0-39.5-2t-37.5-2q-54 0-92.5 13.5T2207 2285t-30 16q-8 0-15-3l-16-6-61-21q-32-11-64-11-42 0-67.5 21t-45.5 21q-17 0-29-12t-26-17q95-41 183-149t166-267l38-78q3 2 5 2t2 6v7q0 4-1 9 0 42 61.5 98t61.5 72q0 11-3.5 22t-3.5 22q0 49 46.5 109.5t52.5 95.5z" + }, + "children": [] + }] +}; +exports.u1F339 = u1F339; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F33A.js b/dist/noto_emoji_regular/u1F33A.js new file mode 100644 index 000000000..cd1c87b6f --- /dev/null +++ b/dist/noto_emoji_regular/u1F33A.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F33A = void 0; +var u1F33A = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2328 1520l1 24q0 95-42 162t-117 92.5-86 38.5l-13 15q-28 42-82 75.5t-91 33.5q-24 0-55.5-6.5T1788 1935l-22-15q-12-7-27-9 0 20 13.5 44t13.5 59q0 62-36 114.5t-73.5 68.5-51 62.5-76.5 82-143 35.5q-88 0-131.5-40.5T1206 2292q-16 0-28 2t-24 2q-70 0-134.5-65T955 1991q0-19-8-19-10 0-19.5 12t-16.5 30l-8 18q-20 40-74 66.5T714 2125q-67 0-129-34.5t-94-92.5q-12 0-26-4l-47-10q-64-14-106-63.5T270 1777q0-29 6-57.5t19-54.5l5-10q8-19 8-24 0-9-6-27.5t-6-48.5q0-85 53.5-154.5T457 1321l18-3q9-2 15.5-5.5t6.5-8.5q0-12-39-32.5t-53-54.5-14-59q0-55 31.5-96.5T454 1004q0-10-6-25l-13-33q-8-18-14-39.5t-6-45.5q0-60 50-116.5T580 676q13-51 47.5-82.5T718 562q17 0 32 3.5t31 8.5q6 0 12-1h14q50 0 90.5 27t58.5 70q33 6 55.5 30t36.5 47q0-5 1-9v-8q27-100 95.5-168.5T1299 493q28 0 54.5 8.5t54.5 8.5q18 0 34-6l33-13q16-6 33.5-12t38.5-6q66 0 114 33t70 80 86.5 72.5 97.5 69 33 94.5q0 65-44.5 122.5t-64.5 70-20 31.5q0 4 25 4 11 0 27-6.5t36-6.5q29 0 123.5 19t160 91 65.5 141q0 14-3 26t-3 27q0 29 13 35.5t36 46.5 29 97zM663 733q8 12 23 23-7 13-11 21.5t-4 22.5q0 41 19.5 64t80.5 27q7 36 30.5 53.5T855 962q14 0 25-4t17-4l10 1q8 5 13 11l10 12q56 65 85.5 109.5t62 129 44 133 64.5 48.5q49 0 68.5-22t19.5-51q0-55-45.5-141T1112 1019t-101-105.5-30-39.5l4-11q5-8 6-15t1-15q0-34-24-63.5T912 740h-7q-4 0-12 1 0-39-25-64.5T807 651q-9 0-18.5 3.5T773 658l-8-3q-8-6-22-10t-25-4q-30 0-46.5 17T655 706q0 15 8 27zm983 710l35 8q18 5 36 8.5t37 3.5q17 0 27-5t10-19q0-18-31.5-45t-59.5-40l-34-16q-36-15-66.5-20t-30.5-16q0-13 43-27t43-32q0-24-32.5-38t-70.5-14q-9 0-26.5 3.5t-34.5 3.5q-11 0-19.5-3t-8.5-12q0-20 25-45.5t46-37.5l20-12q21-12 31.5-25.5t10.5-27.5q0-15-21.5-26t-41.5-11q-28 0-51.5 9.5t-44.5 9.5q-11 0-17-6t-6-22q0-14 4-31t4-33-7-26-24-10q-46 0-76 29t-37 51.5-22 22.5q-23 0-23-46t-38-46q-14 0-30.5 10t-16.5 30q101 108 152.5 206t51.5 180q0 71-47 110.5t-119 39.5q-63 0-96-31t-50-93q0-9-4-23.5t-10-31.5l-27-67q-14-41-37-79.5t-66-91.5q-12 3-20.5 10.5T867 1092q0 16 17.5 38t17.5 37q0 23-8 29t-35 6q-15 0-32 11.5t-17 25.5q0 17 52 36.5t52 38.5q0 9-7 12.5t-15 3.5q-5 0-8-1h-7q-71 0-121 15.5t-50 44.5q0 15 15.5 18t32.5 3q16 0 32 3t16 19q0 11-10 19l-22 19q-13 10-23 23.5t-10 34.5q0 14 12.5 19t31.5 5q13 0 24.5-3.5t21.5-8.5l19-8q9-4 19-4 14 0 19 6t5 14q0 14-8 31.5t-8 27.5q0 18 13 33t33 15q27 0 60-38.5t55-38.5q15 0 15 10 0 11-19 50.5t-19 74.5q0 22 13.5 42.5t30.5 20.5q29 0 46-41t42-41q22 0 55.5 65t77.5 65q17 0 26-17t9-37-6-41-6-41q0-11 3.5-18t14.5-7q16 0 41.5 20.5t45.5 20.5q14 0 20-12t6-29q0-29-11-60.5t-25-42-14-23.5q0-10 12.5-14.5t32.5-4.5q72 0 140.5 35t93.5 35q11 0 17-4.5t6-17.5q0-34-46.5-63t-46.5-53q0-8 6.5-9.5t14.5-1.5q18 0 36 4z" + }, + "children": [] + }] +}; +exports.u1F33A = u1F33A; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F33B.js b/dist/noto_emoji_regular/u1F33B.js new file mode 100644 index 000000000..b45eb1c10 --- /dev/null +++ b/dist/noto_emoji_regular/u1F33B.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F33B = void 0; +var u1F33B = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1962 1378h48q24 0 48-1h44q64 0 111.5 45t47.5 105-48 96.5-126 36.5q-60 0-117.5-9.5T1851 1641q-15 0-15 4 0 5 26 14.5t76 22.5l92 26q41 12 86 58.5t45 110.5q0 50-37 79.5t-99 29.5q-29 0-75-11.5t-78-34.5l-71-51q-29-20-56.5-38t-34.5-18q4 6 24 31l90 116q38 52 47 90t9 55q0 74-32 106t-97 32q-74 0-136-52t-103-152-53-100q-3 0-3 4 0 14 18.5 85.5t21.5 78.5l12 59q5 27 5 54 0 57-33.5 98.5T1397 2380q-82 0-122-44t-60-85-24-143-17-102q-2 0-9.5 18.5T1149 2068l-15 45-28 81q-17 46-57 87.5T949 2323q-53 0-82.5-45.5T837 2162q0-16 2-31t5-32l5-17 30-88q8-24 23-66.5t19-57.5q-7 0-23.5 22.5T862 1944l-35 54q-20 33-40.5 48t-76.5 40-99 25q-66 0-85.5-16.5T506 2022q0-96 61-177.5t130-120 69-51.5q0-4-10-4-29 0-126 42t-167 42q-67 0-96-47.5T338 1599q0-46 23.5-75.5t52-43T482 1449t111-27l82-11q17-2 17-4 0-5-17-8t-38-5l-42-2q-81-4-160-59t-79-129q0-69 38.5-112.5T493 1048q50 0 172 52l75 29q19 8 44 17.5t33 9.5h1q0-6-66.5-50t-87.5-62-57-78-36-114q0-55 38.5-92t98.5-37q31 0 72.5 19t93.5 83l73 91q14 18 28.5 34t20.5 18q0-14-47-109t-47-147q0-79 34-127t94-48q66 0 117 55.5t62.5 173.5 24.5 118q3 0 7-13l19-77 10-47q12-51 19.5-65t34-57 61-68.5T1471 531q7 0 17 2l19 4 17 5q45 15 64 52t19 105q0 21-4 42.5t-14 44.5l-38 75q-5 11-21 43t-16 37q4 0 19-17.5t34-39.5l50-61q75-96 112.5-118.5T1802 682q23 0 54 11.5t47 49 16 54.5q0 32-19 74.5t-51 72-74 67.5-42 51q0 6 10 6 22 0 104.5-41t151.5-41q43 0 102.5 32t59.5 100q0 46-26.5 82t-132.5 78l-56 18q-46 15-85 33.5t-39 30.5q0 10 28.5 14.5t70.5 4.5zm-256.5-173q-60.5-113-178.5-172.5T1269 973q-99 0-207 43t-192 170-84 258q0 175 133.5 320.5T1276 1910q128 0 245-50t181-161 64-250q0-131-60.5-244zM1476 1626.5q-86 72.5-205 72.5-114 0-196-72t-82-185q0-79 40.5-151t99-102.5T1292 1158q106 0 188 91.5t82 202.5q0 102-86 174.5z" + }, + "children": [] + }] +}; +exports.u1F33B = u1F33B; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F33C.js b/dist/noto_emoji_regular/u1F33C.js new file mode 100644 index 000000000..66e270361 --- /dev/null +++ b/dist/noto_emoji_regular/u1F33C.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F33C = void 0; +var u1F33C = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2248.5 1830q-72.5 80-187.5 80-58 0-125-26.5t-156-87.5l-9-1q-8 0-8 7l19 47q20 43 35.5 109t15.5 118q0 127-85 219.5t-218 92.5q-160 0-257-128t-97-258q0-13-2-20.5t-7-12.5q-14 0-33.5 50.5T1060 2142t-136 109q-74 33-151 33-123 0-209.5-82.5T477 1981q0-86 44.5-177.5T666 1626l14-13q7-6 11.5-13t4.5-13q0-11-10-14l-28-6-46 4q-24 2-48 2-149 0-217.5-75T278 1328q0-116 102-214.5t268-98.5q11 0 27 1l32 2 56 6q25-3 25-20 0-12-17.5-38.5t-31.5-79T725 778q0-116 87-197.5t210-81.5q66 0 119 24t102.5 71 92.5 135.5 45.5 92 10.5 3.5q18 0 51-52t121.5-111.5T1781 602q141 0 244.5 83T2129 896q0 81-53 150.5T1970.5 1149t-52.5 42q0 13 57 24.5t145.5 74T2265 1447t56 199-72.5 184zm-742-657.5Q1405 1083 1265 1083q-131 0-220 90t-89 225q0 133 99 217.5t234 84.5q130 0 224.5-87t94.5-215q0-136-101.5-225.5z" + }, + "children": [] + }] +}; +exports.u1F33C = u1F33C; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F33D.js b/dist/noto_emoji_regular/u1F33D.js new file mode 100644 index 000000000..8fc980c22 --- /dev/null +++ b/dist/noto_emoji_regular/u1F33D.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F33D = void 0; +var u1F33D = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M912 1040l-15-35q5-7 13-7 17 0 37.5 26.5T970 1053l22 27q20 26 31 50t11 45q0 30-18 56t-45 29q-2 0-4-2-8-72-28-135.5t-27-82.5zm366 419q17 14 39.5 33.5t23.5 23.5q-78 4-151.5 13.5T1047 1556q-26-24-43.5-60.5T986 1424q0-50 37-91.5t62-41.5q27 0 49.5 34t35 44 37.5 35zm-51.5-345q35.5-38 72.5-38 42 0 94 54.5t107.5 103 55.5 91.5-38.5 78.5-84.5 35.5q-89 0-165.5-77.5T1191 1202q0-50 35.5-88zm509.5 77q-41 40-93 40-68 0-156-86t-88-154q0-46 45-85t93-39q40 0 79 25.5t69 61 61 76.5 31 74q0 47-41 87zm-721-172q-14-17-24.5-35.5T980 942q0-49 36.5-88.5T1100 814q53 0 100 69t47 97q0 16-36 48t-59 55-42 23q-20 0-38.5-14.5T1033 1046zm250.5-354.5Q1308 632 1362 632q40 0 80 47t40 79q0 27-29.5 46.5T1387 854t-65 30q-35 0-67-53t-32-85q0-49 42.5-81.5zM1825 1567q-61-23-128-31l-137-16q2-35 55-82t100-47q53 0 96 36.5t43 69.5q0 18-7.5 36t-21.5 34zm-11-212.5q-32-27.5-32-68.5 0-32 42.5-82.5t96.5-50.5q38 0 71.5 27t33.5 70q0 60-46.5 96t-91.5 36q-42 0-74-27.5zM1558 708q-21-2-43-40t-22-71q0-42 35-64.5t96-22.5q54 0 80 28t26 59-59.5 58-71.5 40-41 13zm127.5 20.5Q1724 694 1766 694q41 0 112.5 68t71.5 126q0 43-33 71t-76 28q-69 0-131.5-66.5T1647 804q0-41 38.5-75.5zM2081 916q27 11 38 32.5t11 46.5q0 50-31.5 89.5T2025 1124q-29 0-55-21t-26-53q0-47 36.5-93.5T2056 910q7 0 13 2zm-253.5-364.5Q1844 540 1873 540q82 0 156.5 74t74.5 157q0 23-10.5 32.5T2066 813q-43 0-111-47t-106-103.5-38-79.5q0-20 16.5-31.5zM592 977l-33-11q-16-5-28-14t-12-28q0-22 26-32t76-10q138 0 216 139t78 357q0 190-161 288.5T537 1832q0-26-1.5-40.5T534 1768q0-102 46-260t49-172l21-94q12-54 12-108 0-59-19.5-103T592 977zm1475 944.5q-13 21.5-34 21.5-17 0-31-13.5t-25-21.5l-39-30q-34-24-69.5-37.5T1792 1827q-111 0-248.5 128.5T1236 2200t-296 116q-57 0-140-16.5t-79-16.5q-19 0-36 23.5t-37 23.5q-54 0-116.5-62.5T469 2164q0-26 31.5-47t31.5-44q0-13-1-25.5t-1-36.5q0-160 274-299t607-139q307 0 488 84.5t181 217.5q0 25-13 46.5z" + }, + "children": [] + }] +}; +exports.u1F33D = u1F33D; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F33E.js b/dist/noto_emoji_regular/u1F33E.js new file mode 100644 index 000000000..6b26a1270 --- /dev/null +++ b/dist/noto_emoji_regular/u1F33E.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F33E = void 0; +var u1F33E = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2438 1059q-36 41-142.5 206T2092 1656t-139 419.5-47 256-30.5 86.5-61.5 24q-35 0-58.5-25.5T1732 2357l-7-74q-12-119-44.5-211.5t-87-185-134-162.5-122.5-96.5-43-49.5q0-18 18-27t43-10h25q88 0 193 44t181 120l11-79q8-67 14-137t6-126q0-175-62-290.5T1525 911l-10-3q-14-5-20.5-14.5T1488 865q0-33 15.5-45t35.5-12q40 0 139 55.5t159.5 190.5 60.5 300q0 22-2 48l-4 54q59-106 139-200.5t176-172.5l41-31q45-34 95.5-61t85.5-27q19 0 32 9.5t13 23.5q0 21-36 62zM1162.5 826.5Q1133 853 1085 853q-74 0-131.5-68.5T896 630q0-25 12.5-47t49.5-22q90 0 162 58t72 131q0 50-29.5 76.5zm-532 77Q558 846 558 782q0-33 59-51.5t93-18.5q79 0 134.5 43T900 865q0 29-13.5 43.5T842 942t-73 19q-66 0-138.5-57.5zm-276 235Q285 1101 285 1059q0-29 62.5-75T489 938q74 0 114 41t40 80q0 31-42 74t-116 43q-61 0-130.5-37.5zM427 1427q-58 44-139 44-67 0-105-19t-38-48q0-47 66.5-117t151.5-70q49 0 85.5 30.5T485 1308q0 75-58 119zm1.5 377.5Q380 1874 336 1874q-27 0-63-58.5T237 1687q0-66 35.5-117t97.5-51q37 0 72 43.5t35 101.5q0 71-48.5 140.5zM710 1583l-16 26q-15 25-34.5 40.5T621 1665q-30 0-74-62t-44-139q0-62 33.5-109t88.5-47q34 0 75 43t41 114q0 61-31 118zm190-236q-33 65-68 65t-87-64.5-52-149.5q0-55 31.5-98.5T802 1056q18 0 54 20t56.5 59.5T933 1223q0 59-33 124zm247.5-132.5Q1104 1283 1059 1283q-29 0-68-60t-39-134q0-67 35-114.5t93-47.5q30 0 70.5 43t40.5 109q0 67-43.5 135.5zm111-61.5q-19.5-59-19.5-97 0-77 41.5-132.5T1391 868q42 0 69 44t27 89q0 77-61.5 144t-112.5 67q-35 0-54.5-59zm4.5-425q-53-68-53-157 0-39 14.5-58.5T1269 493q74 0 150 59t76 138q0 37-21 71.5t-80 34.5q-78 0-131-68z" + }, + "children": [] + }] +}; +exports.u1F33E = u1F33E; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F33F.js b/dist/noto_emoji_regular/u1F33F.js new file mode 100644 index 000000000..76ceb4a64 --- /dev/null +++ b/dist/noto_emoji_regular/u1F33F.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F33F = void 0; +var u1F33F = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1991.5 2121.5Q1781 2187 1554 2187q-203 0-315.5-47t-149-127.5-89.5-80.5q-92 0-155.5 100T776 2206t-64 74q-37 0-75.5-20t-38.5-50q0-10 5-21t13-22l15-20q28-38 67.5-126t39.5-168q0-120-100.5-143T473 1545.5 409 1176q0-40 3-79l4-74q10-157 60-291t92-134q88 0 225 243t137 534q0 128-27.5 186T843 1668.5 811 1772q0 33 12 36 3 0 40.5-49t84-104.5T994 1531q0-10-4-34t-4-61q0-153 123-337.5t327.5-292T1881 660l106-17q28-4 53.5-5.5t66.5-1.5q59 0 91 13.5t32 41.5q0 44-50.5 140.5t-203.5 285-268 288.5-258.5 169.5T1197 1646l-78-1q-65 0-122.5 69t-75.5 95l-15 23q-3 4-12 18.5t-9 18.5q0 7 6 7 12 0 26.5-8.5t71.5-19 129-58.5l39-26q64-41 150.5-60.5T1497 1684q150 0 305 43t277.5 130 122.5 142q0 57-210.5 122.5z" + }, + "children": [] + }] +}; +exports.u1F33F = u1F33F; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F340.js b/dist/noto_emoji_regular/u1F340.js new file mode 100644 index 000000000..1c5ad8ac1 --- /dev/null +++ b/dist/noto_emoji_regular/u1F340.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F340 = void 0; +var u1F340 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2153 2536q-32 32-75 32-141 0-274.5-87T1591 2264t-79-216q0-37 18.5-63t48.5-26q42 0 90 77t115.5 145.5 149 115.5 166.5 70 85 90q0 47-32 79zm-801-435q-125 113-260 113-65 0-122.5-26t-77.5-51l-21-27q-28-34-54.5-45.5T768 2051l-54-4q-66-5-96-23.5t-59.5-48.5-50.5-79.5-21-109.5q0-39 5.5-70t16.5-62 29-63.5 43.5-63.5 62.5-64 91.5-66.5 132-65T1026 1285l88-16 45-9q24-4 50-7t48-3q36 0 47 8t23.5 26.5 81 196.5 68.5 313q0 194-125 307zm934-571q-26 43-58 59t-32 50q0 14 2.5 27.5t2.5 27.5q0 85-16.5 125t-50.5 82-84 72-105 30l-88-14q-83-14-156.5-82T1582 1666l-19-76q-22-86-55.5-183t-78.5-195q-2 0-2-7 0-44 153.5-83t283.5-39q221 0 334.5 100.5T2312 1426q0 61-26 104zM992 1210q-123 37-219.5 55T583 1283q-135 0-225.5-68.5T267 1030q0-92 65-178.5T494 727q5-35 6.5-72t21-70 48.5-55.5 62.5-37.5 69.5-23 73-8q16 0 29 2l27 4q75 13 133 52t101.5 96.5T1148 761t63 172l29 94 7 25q4 14 7 30t3 30q0 34-21.5 37.5t-52 8-57.5 12.5zm391-112q-12 0-27.5-16t-81-183.5T1209 585q0-139 70.5-230.5T1468 263q58 0 109.5 26t84 65 42.5 67 30 28q5 0 31-5.5t66-5.5q128 0 208.5 66t80.5 179q0 109-51.5 192T1810 993.5t-275 60.5l-50 19q-25 9-50.5 16t-51.5 9z" + }, + "children": [] + }] +}; +exports.u1F340 = u1F340; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F341.js b/dist/noto_emoji_regular/u1F341.js new file mode 100644 index 000000000..0365cb32a --- /dev/null +++ b/dist/noto_emoji_regular/u1F341.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F341 = void 0; +var u1F341 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2344 1321q-90 172-165 257.5T2011 1721q78 26 120 48.5t42 34.5q0 33-127.5 112t-279.5 79h-22q73 119 169.5 192.5t182 90.5 85.5 77q0 36-33 56.5t-68 20.5q-89 0-218.5-91T1630 2090q-23 72-66.5 135.5T1463 2338l-12 11q-16 14-37.5 28t-34.5 14-26-42-21-113q-84 69-193 112t-305 70l-18 3q-25 4-56 6.5t-59 2.5q-51 0-78-11t-27-34q0-32 50-164t153-246q-137-55-289.5-147.5t-239.5-178-87-131.5q0-58 120.5-95t216.5-40.5 181-3.5h43q22 0 44 2-122-153-186.5-361.5T537 581q0-90 18.5-116.5T611 438q48 0 185 61t287.5 163T1347 904q28-134 81-246.5T1567 451l14-14q13-13 29-22.5t30-9.5q46 0 105 112t105.5 295.5T1907 1151q83-38 173.5-56t182.5-18q102 0 128 8.5t26 41.5q0 30-17.5 76t-39.5 89z" + }, + "children": [] + }] +}; +exports.u1F341 = u1F341; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F342.js b/dist/noto_emoji_regular/u1F342.js new file mode 100644 index 000000000..83bf31abb --- /dev/null +++ b/dist/noto_emoji_regular/u1F342.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F342 = void 0; +var u1F342 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2265.5 1099.5q-26.5 145.5-93 294.5T2026 1689.5 1908 1836q-18 0-17-35t-29.5-85.5-93-81.5-147.5-31q-143 0-242.5 85t-99.5 218q0 72 40.5 119t72 51.5 31.5 30.5q0 18-39 20.5t-77 2.5q-98 0-210.5-19.5T867 2038t-159-53q-46 0-101 77t-91.5 151.5T425 2288q-48 0-82.5-43t-34.5-59q0-27 55.5-73T495 1975.5t76-179.5q0-50-10-99t-10-105q0-179 63-331t209-281.5 301-197 225-67.5q10 0 17.5 3.5t7.5 11.5q0 7-6 14l-13 15q-7 9-13 18.5t-6 21.5q0 31 32.5 53t73.5 22q57 0 112.5-44t55.5-101q0-10-3.5-17t-7.5-13l-7-9q-4-4-4-9 0-16 35-24t85-8q25 0 47 1t33 1q206-4 295-53.5t107.5-82.5 32.5-33q25 0 47 117.5t22 230.5q0 124-26.5 269.5z" + }, + "children": [] + }] +}; +exports.u1F342 = u1F342; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F343.js b/dist/noto_emoji_regular/u1F343.js new file mode 100644 index 000000000..f525793cb --- /dev/null +++ b/dist/noto_emoji_regular/u1F343.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F343 = void 0; +var u1F343 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1765 2103q4 0 8-1 24 0 43.5 24t19.5 53q0 33-15.5 50t-73.5 17q-64 0-161 24t-157 78-171 95.5-231 41.5q-224 0-386-135t-254.5-343.5T294 1602l1-34q0-43 5-62.5t14-19.5q11 0 19 13.5t57 37.5 127 24q35 0 71-4l71-7q35-4 71-7.5t72-3.5q297 0 504 154t222 396q0 40 12.5 60.5t38.5 20.5l81-21q53-13 66-25t31-19zm182-655q41-16 80-33.5t76-40.5q-17 113-97.5 230.5t-190 199.5-142.5 82q-12 0-21-5.5t-9-19.5l1-10q2-6 90-79.5t135.5-151T1947 1448zm100.5-119Q1770 1479 1332 1479q-230 0-394.5-77T773 1180q0-103 93.5-176T1112 895t261-36q207 0 347.5 35.5T1961 1016q-30 22-64.5 39.5T1824 1087q-81-57-198-88.5T1370 967l-31 1q-138 5-232.5 41.5T1012 1112q0 54 96 83t224 29q369 0 591-109t222-315q0-168-176.5-286T1526 359l-114-16-17-1q-20 0-29-5t-9-14q0-13 14-16t31-5q157 0 397.5 68.5t383 203T2325 896q0 283-277.5 433z" + }, + "children": [] + }] +}; +exports.u1F343 = u1F343; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F344.js b/dist/noto_emoji_regular/u1F344.js new file mode 100644 index 000000000..2761d4b11 --- /dev/null +++ b/dist/noto_emoji_regular/u1F344.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F344 = void 0; +var u1F344 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2186 1926.5Q2043 2093 1773 2093q-109 0-217-24.5t-212-66.5q-95 224-271 350.5T715 2479q-187 0-315.5-104T271 2105q0-135 91.5-254.5T553 1689t174-84q-124-130-197.5-303T456 965q0-179 85.5-304T786 466.5t373-95.5 344-26q226 0 368 73t234 204.5 158 382.5 66 451q0 304-143 470.5zm-753-480q8 13.5 9 32.5v18q0 44-13.5 159t-32.5 189q79 36 158.5 59t144.5 23 90-23 25-56q0-73-67-174t-218-248.5-301.5-237-273.5-125-176-35.5q-50 0-86 31t-36 83q0 67 61 161t168 198q68-58 97-87t65.5-91.5 73.5-62.5q14 0 20 7.5t6 19.5q0 36-49.5 120.5t-172 189-252 164.5-198 139.5T407 2060q0 95 73.5 149.5T668 2264q95 0 191.5-38t196-124 167.5-207 106.5-239.5 44-170.5 36.5-52q15 0 23 13.5zM1359 469q-191 15-316 41t-210 66q0 69 95 116t210 47q120 0 198-57.5t78-155.5q0-17-4-32t-10-27h-20zm850 924l-5-62q-87 9-149.5 90.5T1992 1600q0 66 30 129t92 105q51-72 74-170.5t23-207.5q0-32-2-63zm-529-756q-62 61-62 152 0 146 113.5 260.5T1984 1164q64 0 105.5-39t55.5-101q-50-202-118.5-305.5t-105.5-123-89-19.5q-90 0-152 61z" + }, + "children": [] + }] +}; +exports.u1F344 = u1F344; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F345.js b/dist/noto_emoji_regular/u1F345.js new file mode 100644 index 000000000..ade047379 --- /dev/null +++ b/dist/noto_emoji_regular/u1F345.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F345 = void 0; +var u1F345 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2046.5 1798.5q-151.5 218.5-376 322T1166 2224q-356 0-560.5-208T401 1443q0-218 127.5-419.5t344-323T1317 579q138 0 300.5 38.5t296 145.5 209 253 75.5 325q0 239-151.5 457.5zM1484 1145l-2-6q-15-3-30-5l-29-4q-29-4-49.5-15t-34.5-25l-24-22q-33-30-57.5-33t-24.5-19q0-10 14.5-25t42.5-33l17-11q75-52 103.5-100.5T1439 739q0-10-6-16-3 0-29.5 22.5t-122 49-121 50T1122 868q-14 0-25.5-23t-11.5-50q0-10 1-17l2-16 2-22q0-14 1-38 0-29-11-29-8 0-19 7l-16 11q-58 37-91.5 109T913 922t-85 50-120 29-80 29q-5 0-10.5-1t-10.5-1q-6 0-11 2.5t-5 8.5q0 27 51 56.5t113 29.5q5 0 11-1t12-1q10 0 14 4.5t4 10.5l-14 41q-13 37-24.5 107.5T706 1397l-14 14q-8 7-14 14t-7 14q18 11 40 11 47 0 119.5-47.5T944 1284t82-71q13 0 34 6l46 14q24 8 51 14t51 6q47 0 108-5.5t114.5-47 53.5-55.5zm-408.5-176.5Q1092 983 1092 1008q0 37-43.5 69t-85.5 32q-25 0-42.5-16.5T903 1054q0-39 44.5-69.5T1036 954q23 0 39.5 14.5z" + }, + "children": [] + }] +}; +exports.u1F345 = u1F345; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F346.js b/dist/noto_emoji_regular/u1F346.js new file mode 100644 index 000000000..aded2d9a1 --- /dev/null +++ b/dist/noto_emoji_regular/u1F346.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F346 = void 0; +var u1F346 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2234 1406q-27 22-76 22-92 0-158-66-67 225-212.5 452t-350 355.5T984 2298q-289 0-467.5-168.5T338 1705q0-129 46.5-239.5t134-189 201.5-117 297-43 269.5-34T1489 947q-81-34-128-86.5T1314 745q0-43 28.5-74.5T1415 639q19 0 31 3l46 12q13 3 34 3l13-1q28 0 110.5-34t164.5-34q33 0 64.5 3t61.5 3q19 0 49-18.5t59-18.5q33 0 102 47.5t69 112.5q0 27-10 49t-18 32q26 38 43.5 84t17.5 101q0 56-15 128.5t-15 102.5q0 43 19.5 69t19.5 59q0 42-27 64zm-71-104.5q-19-36.5-19-89.5 0-42 14.5-113.5T2173 984q0-72-32.5-117t-32.5-72q0-17 16-39t16-37q0-22-37-52.5t-55-30.5q-14 0-37 18t-52 18q-37 0-73-2t-72-2q-41 0-73.5 6t-50.5 14l-47 20q-23 10-51.5 18.5T1526 735q-40 0-69-9t-42-9q-12 0-17 8t-5 20q0 56 79 106t168 50q27 0 45-2.5t31-6.5l21-6q8-2 17-2 8 0 12 5t4 9q0 10-20.5 44.5T1729 1028q0 34 23.5 98.5t58.5 64.5q15 0 38-22.5t58-75.5l10-15q10-15 22-26t22-12q0 3 4 17l18 79q5 24 11 45l9 36q10 44 51 88t104 44q14 0 19-2t5-6q0-3-19-39.5z" + }, + "children": [] + }] +}; +exports.u1F346 = u1F346; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F347.js b/dist/noto_emoji_regular/u1F347.js new file mode 100644 index 000000000..4d3110f76 --- /dev/null +++ b/dist/noto_emoji_regular/u1F347.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F347 = void 0; +var u1F347 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M429 1073q-30-18-30-49 0-63 80.5-146.5t171.5-165T845.5 567 971 503q28 0 50 27.5t22 57.5q0 51-61.5 81t-103 71.5T837 795t62.5 66.5T962 956q0 21-16.5 58.5T904 1052q-61 0-119.5-67.5T693 917q-13 0-28.5 12T639 954l-14 16q-19 20-53.5 70.5T489 1091q-30 0-60-18zm1700 1185.5q-71 70.5-168 70.5-62 0-95.5-15t-33.5-45q0-8 4.5-23.5t8.5-27.5l10-34q5-16 8.5-33.5t3.5-37.5q0-8-3-26.5t-3-35.5 8-27 29-10q12 0 25.5 3t24.5 3q32 0 62.5-9t45.5-17l25-13q12-6 24.5-10.5t24.5-4.5q29 0 49.5 35t20.5 88q0 99-71 169.5zm-9-709q45 50.5 45 130.5 0 91-63.5 168.5T1907 1926q-17 0-21.5-10t-4.5-27q0-13 3-26.5t3-27.5q0-69-22-112.5t-22-55.5q0-13 8.5-20.5t22.5-14.5l31-15q20-10 51.5-41.5t46.5-54 37-22.5q35 0 80 50.5zm-415 724q-77 66.5-164 66.5-84 0-151-54.5t-67-134.5q0-38 24-78.5t50-40.5q16 0 57.5 29t84.5 43 90 14q52 0 85-17t47-17q13 0 17 11.5t4 25.5q0 86-77 152.5zm43.5-309Q1684 2026 1604 2026q-86 0-145.5-64t-59.5-96q0-20 25-28.5t65-60 54-100.5 42-49q15 0 29 4l29 10q14 5 29 9.5t31 4.5q34 0 72 47.5t38 121.5q0 78-64.5 139.5zM808 1669q15 0 25.5 7.5T844 1702q0 26-21.5 83.5t-59.5 80-89 22.5q-98 0-168-71t-70-169q0-46 19.5-98t44.5-52q21 0 38 34.5t88 86 148 51.5zm587-925q32-45 82-71t110-26q98 0 168.5 70.5T1826 885q0 42-12.5 79t-35.5 66l-20-2h-21q-48 0-90 13.5t-80 36.5q2-12 3-24.5t1-24.5q0-88-46-165t-130-120zm-140.5 1340q-71.5 68-166.5 68-100 0-170-70.5T848 1913q0-66 39-129t76-63q27 0 45 40.5t90.5 80T1254 1881q44 0 58 6.5t14 37.5q0 91-71.5 159zm651.5-907.5q71 70.5 71 168.5 0 102-73 171t-170 69q-101 0-168-73t-67-168 70-166.5 168-71.5 169 70.5zM1085.5 1395q71.5-71 168.5-71t168 71 71 168q0 95-72 167.5t-167 72.5q-96 0-168-71.5t-72-168.5 71.5-168zm337-534.5Q1493 932 1493 1029t-70.5 168.5T1254 1269t-169-71-71-169 70.5-169 169.5-71q98 0 168.5 71.5zm-457 659.5q-70.5 71-169.5 71-98 0-168-71t-70-169q0-97 70-168.5t168-71.5q99 0 169.5 71t70.5 169-70.5 169z" + }, + "children": [] + }] +}; +exports.u1F347 = u1F347; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F348.js b/dist/noto_emoji_regular/u1F348.js new file mode 100644 index 000000000..e204875c4 --- /dev/null +++ b/dist/noto_emoji_regular/u1F348.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F348 = void 0; +var u1F348 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1593 850q220 86 361.5 300t141.5 459q0 359-233 585.5T1254 2421q-248 0-436.5-108.5t-290-297T426 1595q0-351 250-573.5T1310 799q32 0 65 2.5t68 8.5q0-8 2-15.5t2-15.5q0-39-35.5-55T1294 664.5t-130.5-80T1067 511t-48-80q0-33 24.5-55.5T1100 353q14 0 29 5.5t26 16.5q0 7 100 80.5T1488.5 587t281.5 82.5 297 27.5l26 1q31 0 55.5 23t24.5 55q0 33-23.5 56t-57.5 23q-182 0-324-26t-129-26h-6q-18 0-29 19t-11 28zm77 148q-22-14-43.5-25.5T1581 951q-4 5-8 11.5t-8 10.5l-4 36q-2 23-17 45t-48 22q-45 0-74-18t-29-46q0-16 8.5-51.5T1419 903q-37 19-80 36t-103 47-100.5 46-49.5 25q-14-29-30.5-59t-32.5-58l-46 16q-24 9-47 19 60 104 112 205t113 208q-27 7-62.5 11.5t-66.5 6.5h-12l-14-8q-9-6-32.5-20.5T918 1345l-89-57q-42-29-81-61t-70-66q-17 19-30.5 39t-26.5 43q23 24 48 45.5t53 42.5q-27 20-74 46t-82 56l-29 23q-12 62-12 124 43-20 84.5-55.5t94-66T793 1399l11-8 125 80q-15 21-28.5 47.5T873 1567l-25 41q-12 19-25 42.5t-26 54.5q-44-2-87-3t-87-1q-23 0-45.5-2.5T529 1694q6 20 8.5 47.5t7.5 52.5q18 2 37.5 3.5t42.5 1.5q42 0 84 1l86 2q4 16 14.5 32.5T853 1928l51 112q-51 13-100.5 23.5T695 2094q21 23 40 41t42 38l85-20q43-10 87-23 19 33 38 72t36 91q61 14 121 21-9-23-18-38t-16-31l-27-67q-7-17-17-37l-18-36q27-6 86.5-20.5T1241 2060q2-2 14.5-5.5t18.5-3.5q13 36 25.5 83.5t39 102 35.5 83.5q26-2 50.5-6.5t48.5-9.5q-9-21-14.5-39t-25.5-60-31-75l-14-43q99-58 189-126 27 20 51 42l48 46q24 23 49.5 46t55.5 43q17-17 33-35.5t30-38.5l-11-10q-78-66-121.5-108.5T1662 1899q51-51 112.5-95.5T1900 1705l98-85q0-32-2-62t-7-63l-5 7q-33 30-69.5 60.5T1845 1623q-22-28-37-51l-28-42q-13-20-25-39.5t-27-40.5q24-21 50-40l51-37q25-18 49.5-37t46.5-41q-11-23-23.5-45t-24.5-42l-86 67q-10-5-24-16l-33-24q-48-34-84-53t-79-54q23-29 47.5-63t51.5-67zm-251 582l-79 68q-40 34-82 66l-4 5q-17 2-35 3t-37 1q-66 0-137-6.5t-142-6.5q9-22 36.5-62t45.5-79 38-64q74-4 159.5-24.5T1323 1435l25 35q22 30 38 57t33 53zm13-277q23-23 42.5-47.5t38.5-47.5q33 26 92.5 58.5T1711 1338q-53 41-104 82t-103 86l-9 8q-10-15-45-66t-59-88q5-11 19-29zm-218 517l16 70q7 33 18 67-2 0-4 1-52 11-133.5 31.5T1002 2016l-21-43q-23-43-38.5-85t-34.5-79q69 0 137 6t137 6zm29-477q-29-53-57-100t-54-98q9-7 20.5-13.5t14.5-6.5q38-15 76-33t74-37q13 14 28.5 26t31.5 23l31 23q14 11 25 22-18 24-78.5 92t-72.5 104l-30 16zm285 533q-19 13-56.5 41.5T1358 1990q-3-11-25-96t-22-93q13-15 32-31l81-65q21-17 39-34 14 54 31 103t31 94zm123-364q25 32 46.5 70t38 58 31.5 43l-75 59q-39 30-77 66l-5 4-29-83q-21-58-23-79.5t-11-50.5l52-43q26-21 52-44z" + }, + "children": [] + }] +}; +exports.u1F348 = u1F348; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F349.js b/dist/noto_emoji_regular/u1F349.js new file mode 100644 index 000000000..338650df7 --- /dev/null +++ b/dist/noto_emoji_regular/u1F349.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F349 = void 0; +var u1F349 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2173 897q28 95 48 211t20 223q0 273-130.5 464t-409 306-546.5 115q-147 0-280-34.5t-237-98-173-153-87.5-167T359 1478q0-61 16-105t69-68l1496-664q6-4 16.5-7t31.5-3q50 0 91.5 44.5T2147 808zm-507 236q30 24 63 24 18 0 35.5-13.5t17.5-31.5q0-26-28-43t-62-17q-25 0-40.5 8t-15.5 23q0 26 30 50zm-49.5 143.5Q1585 1249 1552 1249q-15 0-21 10t-6 24q0 32 24 63.5t54 31.5q17 0 31-10.5t14-32.5q0-31-31.5-58.5zm-332.5 104q-14 28.5-14 53.5 0 27 13.5 47.5t38.5 20.5q22 0 35-19t13-40q0-32-16.5-61.5T1319 1352q-21 0-35 28.5zm-161-53.5q-8-11-22-11-27 0-53.5 31t-26.5 62q0 19 11.5 34t30.5 15q29 0 48.5-29.5t19.5-64.5q0-26-8-37zm-641 442q27 63 72 115.5t106 94.5q-4-23-23-38.5t-19-38.5v-31q0-21-22.5-37.5T573 1753q0-22-21-48.5t-21-57.5v-15q0-7 2-15-23-29-41-55l-35-49q0 25 2.5 52.5t2.5 55.5q0 56 4.5 91t10.5 46zm431.5 199.5q1.5-7.5 2.5-15.5-54-29-103.5-64t-93.5-73q0 5-1 15 0 24 9 39.5t22 27.5l23 21q11 10 13 24t2 26q0 13 5 26.5t26 31.5l23 20q13 12 30 31 25 7 50.5 12.5T973 2101v-13q0-29-30.5-54.5T912 1983q0-7 1.5-14.5zM1118 2117q70 0 131-4.5t113-14.5q-69-9-144-30t-163-53q0 21 29 43t34 52v7zm998-1025q-25-119-56-228l-8-29q-15-55-33.5-80t-30.5-25h-6l-76 34q46 82 86.5 237.5T2033 1295q0 144-59 288t-186 225.5-317 81.5q-230 0-459-128.5T656 1436l-59-91-118 52q70 139 234 306t392.5 247 382.5 80q233 0 443-184t210-512q0-123-25-242z" + }, + "children": [] + }] +}; +exports.u1F349 = u1F349; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F34A.js b/dist/noto_emoji_regular/u1F34A.js new file mode 100644 index 000000000..b07c95dc5 --- /dev/null +++ b/dist/noto_emoji_regular/u1F34A.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F34A = void 0; +var u1F34A = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1841 899q211 112 331.5 304.5T2293 1619q0 225-111.5 402T1846 2298t-546 100q-323 0-547-101t-335-277.5T307 1619t123.5-420.5 352-310T1303 775q34-142 152-234t270-92q72 0 142.5 17.5T2004 512l20 7h-1q15 6 25.5 16t10.5 27q0 18-21 83t-72 133.5T1841 899zm212.5 336Q1930 1058 1716 968q-97 40-194 40-37 0-73-6-20 59-72 92t-117 33q-79 0-136.5-48.5T1066 960q0-13 2.5-25t6.5-23q-296 57-474 254.5T423 1619q0 309 232 486t645 177 645-177 232-486q0-207-123.5-384zM1318 926.5q-22-17.5-58-17.5-32 0-55 16.5t-23 34.5q0 15 20.5 32.5t57.5 17.5q30 0 55-14t25-36q0-16-22-33.5zM894.5 1374q-21.5 20-56.5 20-31 0-46-16.5t-15-38.5q0-25 18.5-46t48.5-21q28 0 50 16t22 40q0 26-21.5 46zm701.5 246.5q-23 16.5-51 16.5-25 0-44.5-17.5T1481 1574q0-26 20.5-42t46.5-16 48.5 18.5 22.5 44.5q0 25-23 41.5zm125.5-417q23.5 20.5 23.5 56.5 0 25-17 37t-40 12q-29 0-52.5-18t-23.5-50q0-30 18.5-44t40.5-14q27 0 50.5 20.5zm-969.5 507q22 20.5 22 54.5 0 28-16 41t-36 13q-29 0-53.5-20t-24.5-49q0-23 15.5-41.5T701 1690q29 0 51 20.5zM1891 1525q20-17 43-17 25 0 43.5 19.5t18.5 39.5q0 25-22 42.5t-47 17.5q-23 0-39.5-17t-16.5-42q0-26 20-43zm-701 446.5q20 18.5 20 47.5 0 25-20 37.5t-43 12.5-42.5-12.5-19.5-39.5q0-32 18.5-48t41.5-16q25 0 45 18.5zm439-76.5q19-17 44-17 24 0 42.5 19.5t18.5 39.5q0 24-22.5 42t-47.5 18q-23 0-38.5-17t-15.5-42q0-26 19-43zm-477-321.5q-22 17.5-47 17.5-23 0-38.5-17t-15.5-42q0-26 19-43t42-17q22 0 42 17t20 42-22 42.5z" + }, + "children": [] + }] +}; +exports.u1F34A = u1F34A; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F34B.js b/dist/noto_emoji_regular/u1F34B.js new file mode 100644 index 000000000..858969d2c --- /dev/null +++ b/dist/noto_emoji_regular/u1F34B.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F34B = void 0; +var u1F34B = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1579 671q102 12 225 12 29 0 57-1t54-1q93 0 179.5 92t86.5 192q0 32-20 95.5t-27.5 232-58.5 297-127 230.5-164 176.5-189 125.5q-87 45-182 68l-73 17q-56 14-108.5 22t-102.5 8q-77 0-217.5-25T726 2187l-45 1q-122 0-192.5-92T418 1910q0-24 4.5-47.5T433 1816l13-46q6-24 9.5-49.5t8.5-52.5l10-51q11-66 18-149t34.5-167 63.5-154 86-135 111.5-119.5 130.5-94 147.5-67T1221 683q91-24 190-24 66 0 168 12z" + }, + "children": [] + }] +}; +exports.u1F34B = u1F34B; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F34C.js b/dist/noto_emoji_regular/u1F34C.js new file mode 100644 index 000000000..d3f7cdde1 --- /dev/null +++ b/dist/noto_emoji_regular/u1F34C.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F34C = void 0; +var u1F34C = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2149.5 997.5Q1991 1101 1845 1219q116 41 207 133.5t91 192.5q0 40-23 69t-67 29q-24 0-47.5-8t-46.5-20l-45-23q-36-18-71.5-25t-78.5-9q102 46 164 140t62 213q0 123-63.5 224.5T1756 2237q-51 0-92.5-40.5t-55.5-177-56.5-179-95.5-42.5q-43 0-88 44t-77.5 90-130 124.5-166.5 106-105 31.5-56 47.5-55 43.5q-18 0-75.5-36T594 2168l-17-15q-7-6-9-10.5t-2-9.5q0-8 7.5-32.5t7.5-57.5q0-43-14.5-114.5T552 1813q0-217 103-410h-22q-11 0-23 1-154 0-236-42.5T292 1234q0-117 125.5-198.5T740 954q18 0 36 1t35 4q-17-23-39.5-43T724 877l-49-38q-39-30-63-65t-24-75q0-58 50-92t124-34q138 0 268 79t211 224q162-131 367.5-213t371.5-82q139 0 233.5 54t94.5 151q0 108-158.5 211.5zM2003 978l88-61q60-41 89.5-72t29.5-61q0-46-66.5-76T1980 678q-182 0-435 122.5T1144 1111q90 81 146 180t62 228l12 11 147-145q127-126 257-230t235-177zM674 1978q5 32 5 66 0 16-1 30.5t-4 29.5l27 24 32-48q110-197 274-372 46-49 65.5-82.5t19.5-66.5q0-78-64.5-117.5T768 1402q-56 84-87.5 190.5T649 1811q0 26 3 51t11 57zm-9-673q29-1 55-1 214 0 324 26.5t193 86.5q-26-81-91-166t-178-142-228-57q-157 0-253.5 56.5T390 1237q0 34 65 51.5t155 17.5q26 0 55-1zm1130.5 389.5Q1698 1611 1553 1611q-15 0-31 1t-32 3q99 58 153 174.5t63.5 233T1756 2139q62 0 99.5-72.5T1893 1910q0-132-97.5-215.5zM747 769l70 56q39 34 71.5 75t53.5 92q64 24 122 62 24-32 49-59.5t53-53.5q-46-87-122-156.5T890 693t-128-22q-28 0-52 7.5T686 699q0 14 17 32t44 38zm1265 762q18 9 32 12-15-83-91-150t-180-91q-33 36-42.5 71.5t-9.5 87.5q7-2 15-2h16q62 0 116.5 15t108.5 41z" + }, + "children": [] + }] +}; +exports.u1F34C = u1F34C; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F34D.js b/dist/noto_emoji_regular/u1F34D.js new file mode 100644 index 000000000..4d340ca11 --- /dev/null +++ b/dist/noto_emoji_regular/u1F34D.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F34D = void 0; +var u1F34D = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1977.5 831.5q-37.5 23.5-108.5 98t-88 119.5q0 14 18 14l13-1h47q36 0 64.5 8t28.5 24q0 13-21.5 31t-43.5 42l-37 42q-19 21-38.5 41.5T1770 1289q102 114 156.5 273.5T1981 1889q0 205-77 363.5T1676.5 2491t-337.5 80q-188 0-346-79.5T748.5 2256 662 1901q0-179 59.5-341.5T891 1278q-35-23-71-42.5t-76-32.5l-12-3q-15-4-25-9t-10-13q0-31 68.5-42t68.5-31q0-14-30.5-45t-98-58.5-94.5-35-27-22.5q0-29 54-47.5T755 878q25 0 49.5 1.5T855 881q9 0 12-6.5t3-15.5q0-68-86-142.5t-139-95-53-40.5q0-23 84-42t113-19q74 0 129 13t57 13q24 0 30.5-3t6.5-19v-12l-2-12q-22-79-70.5-153.5T891 253q0-14 10.5-22t27.5-8l11 1q108 17 187 55t109 69 55 31q27 0 61-37.5t122-78.5 207-41q16 0 30.5 3t14.5 15q0-3-33.5 65T1643 483q0 5 2 11t10 6q5 0 73-27.5t187-27.5q32 0 62 2.5t30 20.5q0 13-25 33.5t-89.5 81.5-87.5 113-23 57q0 10 8.5 12t19.5 2q8 0 25-1l38-3q21 0 42.5-1.5t39.5-1.5q26 0 43 5.5t17 20.5q0 22-37.5 45.5zm-158 760.5q-51.5-144-142.5-243-72 34-166.5 58t-196.5 24q-95 0-175-23t-151-68q-100 87-158.5 241T771 1904q0 261 160.5 408.5T1339 2460q160 0 287-68.5t186-201 59-301.5q0-153-51.5-297zM1540 1976q-10 6-21 6-33 0-83-52.5t-86-52.5q-47 0-96.5 52.5T1169 1982q-17 0-23.5-8t-6.5-16q0-29 70.5-107t137.5-78q29 0 61 20.5t63 53.5l31 34 27 31q9 11 15 24.5t6 21.5q0 12-10 18zm-559-390q70-64 118-64 40 0 74.5 33t69 69 34.5 58q0 16-11.5 24.5t-25.5 8.5q-19 0-72-39t-83-39q-21 0-67.5 33.5T941 1704q-14 0-22-6.5t-8-16.5q0-31 70-95zm271 598q19 23 26 36t7 25q0 13-9.5 18.5t-21.5 5.5q-31 0-84-52.5t-89-52.5q-29 0-74 38.5t-71 38.5q-11 0-22-6.5t-11-20.5q0-16 10.5-35t27.5-38l19-19q24-23 56.5-43t67.5-20q28 0 64 23.5t89 84.5zm-270.5-238.5Q964 1927 898 1886t-66-86q0-19 13.5-28t28.5-9q33 0 103.5 65t70.5 103q0 13-8.5 23t-20.5 10q-20 0-37.5-18.5zM1717 1600q19 19 36 42t17 39q0 8-6.5 15.5t-23.5 7.5q-27 0-73.5-33.5T1596 1637q-36 0-82.5 39t-73.5 39q-13 0-24.5-8t-11.5-22q0-24 31-57t68.5-69.5 78.5-36.5q35 0 63.5 21t53.5 42zm23 540q18 20 28 37.5t10 33.5q0 14-8 22t-22 8q-23 0-67.5-38.5T1600 2164t-89 52.5-85 52.5q-11 0-20.5-5t-9.5-19q0-32 75.5-109t125.5-77q35 0 68.5 19.5t56.5 43.5zm68-367q13 10 13 27 0 44-63 82.5t-82.5 60-41.5 21.5q-14 0-21-11.5t-7-22.5q0-37 71.5-102t103.5-65q14 0 27 10z" + }, + "children": [] + }] +}; +exports.u1F34D = u1F34D; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F34E.js b/dist/noto_emoji_regular/u1F34E.js new file mode 100644 index 000000000..6c405a022 --- /dev/null +++ b/dist/noto_emoji_regular/u1F34E.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F34E = void 0; +var u1F34E = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1963 2008.5Q1856 2207 1681 2299t-393 92q-276 0-463.5-120T548 1995.5 459 1635q0-166 63.5-312.5t189-253.5T1007 962q47 0 93 6l92 12q-9 48-15 100.5t-6 105.5l1 23q0 13 2 26-51-15-81.5-32t-45.5-17q-8 0-13.5 5.5t-5.5 20.5q0 44 77.5 89t178.5 45q92 0 165.5-49.5t73.5-84.5q0-10-6.5-13.5t-14.5-3.5q-11 0-21 4.5t-21 10.5l-25 14q-13 7-29 12-3-22-3-45 0-32 2-57t2-48l1-17 10-71q26 0 50.5-1t49.5-1q146 0 236 39.5t162 114.5 113 188.5 41 252.5q0 219-107 417.5zM2130 628q10 11 10 23 0 14-8 24l-17 21q-84 108-215 172.5T1639 933q-73 0-136.5-20t-95.5-52q-37 73-50 138t-13 193q0 19 1.5 36.5t1.5 26.5q0 16-17 24t-46 8q-14 0-29.5-6t-18.5-26l-2-9q-2-8-3-22.5t-1-44.5q0-47 5.5-93t13-93.5 24-88.5 21-82 50.5-41q19 0 32.5 3.5T1404 802l7-31q22-108 121.5-196t228.5-88q87 0 192 34t157 88z" + }, + "children": [] + }] +}; +exports.u1F34E = u1F34E; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F34F.js b/dist/noto_emoji_regular/u1F34F.js new file mode 100644 index 000000000..6b6bed1b7 --- /dev/null +++ b/dist/noto_emoji_regular/u1F34F.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F34F = void 0; +var u1F34F = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2144 682q-90 86-215.5 139T1679 874q-97 0-172-31t-86-50q-5 5-22 44.5t-31 92.5q0 7-2 15 12 0 23.5 1t22.5 1q34 0 70-1t73-1q158 0 254.5 43.5T1985 1113t126 207.5 47 285.5q0 242-119 464t-313 324-437 102q-166 0-326.5-45.5t-319.5-183-218-291-59-318.5q0-185 71-349.5t210-283T974 907q68 0 136 9l137 20 6-34q4-29 16.5-62t16.5-55l6-28q4-25 18.5-38t42.5-13q17 0 34.5 4.5T1418 728q29-150 140-250.5T1812 377q96 0 206.5 36t163 81.5T2234 560q0 36-90 122zm-762 374q-13 0-27-1-5 17-5 40l-1 44q0 20 2 43t2 46q29 0 73-18.5t60.5-31 39.5-12.5q9 0 16 3.5t7 14.5q0 40-79 95t-192 55q-98 0-189.5-49.5T997 1184q0-17 7-23t17-6q15 0 56.5 22.5T1229 1226q-3-12-4.5-34t-1.5-40q0-26 2-53.5t6-54.5q-68-8-132-17.5t-125-9.5q-120 0-201.5 51.5T624 1203t-108 201-41 251q0 320 231 526.5t583 206.5q209 0 374.5-83t275.5-276 110-419q0-136-39-245t-103-174-139.5-100.5T1555 1055h-73z" + }, + "children": [] + }] +}; +exports.u1F34F = u1F34F; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F350.js b/dist/noto_emoji_regular/u1F350.js new file mode 100644 index 000000000..871105932 --- /dev/null +++ b/dist/noto_emoji_regular/u1F350.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F350 = void 0; +var u1F350 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2030 1173.5q-49 157.5-49 385.5 0 197-76.5 401T1680 2258.5t-315 94.5q-287 0-577-215.5T498 1616q0-110 51.5-222t157-219.5 212.5-168 151-100 152.5-142 213.5-177 215-74.5q87 0 175 40 27-43 69.5-75t74-41.5 47-24T2047 398q17 0 36 29.5t19 57.5q0 12-8.5 22t-25.5 10q-5 0-10.5-1t-9.5-1q-39 0-75 22.5t-61 64.5q96 63 131.5 143t35.5 173q0 98-49 255.5z" + }, + "children": [] + }] +}; +exports.u1F350 = u1F350; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F351.js b/dist/noto_emoji_regular/u1F351.js new file mode 100644 index 000000000..3662893a6 --- /dev/null +++ b/dist/noto_emoji_regular/u1F351.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F351 = void 0; +var u1F351 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2210 2071q17 40 30.5 85.5t13.5 75.5q0 36-21 39.5t-100.5 10-159.5 6.5q-225 0-394.5-71T1355 1998q-26-4-52-7t-54-3q-49 153-221 226.5T627 2288q-88 0-163.5-8.5T383 2271q-20 0-28.5-8.5T346 2230q0-68 62-194t181-211q-87-83-136-201.5T404 1384q0-217 147.5-429T929 608l168-97q4-2 45-27t68-25q77 0 323.5 129.5t414 338.5 167.5 449q0 134-38 235t-115 182q77 50 135.5 109.5T2197 2043zM1763.5 872.5Q1510 638 1210 558q-55 31-113 65l-119 70q-210 124-342.5 312.5T503 1384q0 129 64 250t181.5 188 274.5 67q25 0 38.5-7t13.5-24q0-22-31.5-62T964 1640t-48-258q0-77 17-159l5-17q7-26 17.5-42.5T977 1147q17 0 17 23l-1 21q0 363 133 537t362 174q181 0 355-135t174-391q0-269-253.5-503.5z" + }, + "children": [] + }] +}; +exports.u1F351 = u1F351; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F352.js b/dist/noto_emoji_regular/u1F352.js new file mode 100644 index 000000000..eca21654d --- /dev/null +++ b/dist/noto_emoji_regular/u1F352.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F352 = void 0; +var u1F352 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2171.5 610.5Q2141 630 2108 630q-7 0-14-2t-14-2l-14 2q-8 1-79 63.5T1841 849t-138 207.5-115 248-88 298.5q138 53 215.5 154.5T1793 1996q0 186-114.5 307T1384 2424q-187 0-328.5-119.5T914 2002q0-175 129.5-302.5T1341 1572q20 0 42 1.5t42 6.5q9-52 55.5-199t124.5-301.5 164.5-266T1951 618q-302 59-545 234t-378 465q-17 36-22 55 56 23 105.5 59t87.5 84q-157 47-260 185.5T836 2002q0 99 34 178-193 0-333-119.5T397 1759q0-174 128-302t300-128q30 0 56 4.5t51 10.5q7-20 23-54 145-316 411-505.5T1989 532q2 0 3-1t4-1q16-4 29-12l24-15q12-7 25-12.5t30-5.5q38 0 68 22t30 54q0 30-30.5 49.5z" + }, + "children": [] + }] +}; +exports.u1F352 = u1F352; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F353.js b/dist/noto_emoji_regular/u1F353.js new file mode 100644 index 000000000..5067a6dec --- /dev/null +++ b/dist/noto_emoji_regular/u1F353.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F353 = void 0; +var u1F353 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2015 997q81 88 123.5 186.5T2181 1382q0 97-34 166.5t-95 69.5q-7 0-11-1-26 203-179 379t-371.5 264-464.5 88q-130 0-273.5-28T543 2213.5t-95-194-29-322.5q0-342 151.5-613.5T986 747q-6-13-10.5-27.5T971 688q0-64 66.5-102t203.5-38q99 0 193.5 31.5T1619 675q56-51 112.5-79.5T1851 567q96 0 172.5 78.5T2100 827q0 48-19.5 89t-65.5 81zM718.5 1800q-15.5-23-40.5-23-26 0-46 26.5t-20 65.5q0 32 16 55t40 23q27 0 46.5-27.5T734 1855q0-32-15.5-55zm38-413.5Q743 1366 719 1366q-28 0-51.5 30t-23.5 70q0 26 13.5 47t36.5 21q33 0 54.5-33t21.5-68q0-26-13.5-46.5zm137.5-367q-16-12.5-39-12.5-39 0-71 29.5t-32 60.5q0 24 16.5 36t39.5 12q36 0 69-27t33-63q0-23-16-35.5zM1045.5 2065q-21.5-14-51.5-14-38 0-67.5 22t-29.5 49q0 25 22.5 38.5T971 2174q37 0 66.5-20.5t29.5-49.5q0-25-21.5-39zm26.5-371q-13-14-36-14-34 0-65 32.5t-31 67.5q0 23 13.5 36t35.5 13q37 0 66.5-31t29.5-68q0-22-13-36zm33.5-342q-12.5-15-35.5-15-34 0-63.5 34t-29.5 70q0 22 13 36.5t35 14.5q35 0 64-32t29-70q0-23-12.5-38zm212.5 366.5q14 13.5 37 13.5 35 0 67.5-32t32.5-66q0-23-14.5-36t-37.5-13q-36 0-67.5 29.5T1304 1682q0 23 14 36.5zm170.5 241Q1470 1947 1444 1947q-39 0-70.5 25.5T1342 2028q0 23 18.5 35t43.5 12q37 0 70-23t33-56q0-24-18.5-36.5zm317.5-261q-13-18.5-36-18.5-29 0-54.5 31.5T1690 1781q0 27 13 45.5t38 18.5q32 0 55-32t23-69q0-27-13-45.5zm246-179.5q14-18 23-58t9-79q0-85-40-169.5T1933 1053q-26 16-81 66.5t-75 50.5q-14 0-24-9t-10-23q0-35 49.5-86t85.5-76l20-14q10-7 17.5-13.5t7.5-10.5q0-15-37.5-19t-82.5-53.5-45-112.5q0-13 1-20t1-17q0-9-2-14t-10-5q-109 89-163.5 161t-84.5 72q-17 0-26.5-10.5T1464 890q0-36 41.5-83t49.5-56q-66-47-142.5-76.5T1241 645q-57 0-114 13t-57 32q0 5 7.5 17t16.5 22l38 35q35 34 66.5 71t31.5 57q0 28-63.5 56.5t-98 56.5-34.5 55q0 16 25.5 26.5t53.5 13.5l24 3q8 0 102 10t94 54q0 31-14.5 80.5T1304 1348q0 25 7 44t33 19q35 0 112.5-39t103.5-39q34 0 66 114.5t71 114.5q28 0 59-58.5t42-101.5 39-43q17 0 44 15.5t58 40.5l30 26q9 8 19 20l19 24q10 12 21.5 21.5t23.5 12.5z" + }, + "children": [] + }] +}; +exports.u1F353 = u1F353; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F354.js b/dist/noto_emoji_regular/u1F354.js new file mode 100644 index 000000000..d515bc01c --- /dev/null +++ b/dist/noto_emoji_regular/u1F354.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F354 = void 0; +var u1F354 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2185 1744q-41 46-86 58 7 21 10 43t3 45q0 189-128 324.5T1642 2386t-400 36q-267 0-461.5-77.5t-269.5-198-82-261.5q-20-14-30-45.5t-10-70.5q0-60 24.5-100t69.5-72q-2-5-3-12l-3-11q-41-20-62-58.5t-21-81.5q0-65 52-118-39-35-55.5-85.5T374 1117q0-159 84-309.5T761 552t486-105q135 0 269 26.5t268 79.5 222.5 133 123 194 34.5 207q0 45-10 88t-33 77.5-39 52.5l-15 53q12 37 18 70 44 24 92.5 82t48.5 124q0 64-41 110zm-185 246l3-10q-20 14-40 19t-45 5q-84 0-98 22.5t-76 85-177 62.5q-38 0-66.5-12t-56.5-39q-19 0-31 2l-23 5q-17 3-64.5 37t-109.5 34q-90 0-151.5-50t-91.5-50q-15 0-30 8l-35 17q-19 9-43.5 17.5T808 2152q-72 0-122-39.5t-59-92.5-14.5-58-22.5-8l-23-4q-14-2-33-8 26 141 118.5 218T895 2280t347 43q146 0 329.5-25t293-107.5T2000 1990zM519 1252.5q48 44.5 138 88.5t226.5 72.5T1221 1442q402 0 623.5-89.5T2066 1089q0-80-27-172.5T1939.5 758 1753 645.5t-244.5-73T1247 546q-244 0-442.5 95.5t-266 221T471 1119q0 89 48 133.5zM1990 1495q-83 100-252 163.5t-459 63.5q-106 0-199-7t-169-20q-16 5-31 9t-29 4q-45 0-93.5-27t-87.5-60.5-87-33.5q0 5 5 14l8 16q38 97 151.5 154.5t269 71T1282 1856q341 0 512.5-95.5T1990 1495zM522 1379q-11 11-20.5 25t-9.5 33q0 24 12.5 38t37.5 14q67 0 97.5 7t105 60 106.5 53q17 0 34-8l34-15q29-14 67-27t80-13q43 0 75.5 14t52 28 62.5 14q16 0 40-18.5t52-46.5q-33 0-64 1t-63 1q-259 0-423.5-47.5T579 1412zm1558 170q-49 194-249.5 299T1282 1953q-263 0-385-26t-214-78.5T523 1690q-24 24-30.5 38.5T486 1769q0 69 85 81t112 43 38 96 87 65q31 0 77-26t85-26q36 0 63 12.5t44 23.5l35 25q25 20 47.5 29.5t51.5 9.5q45 0 84.5-34.5T1430 2026q51 0 77 23.5t47 24.5l13 1q92 0 137.5-62.5t82.5-85 131-22.5h19l19-12 8-14q8-16 21.5-79.5t77.5-88.5 64-77q0-37-47-85zm-908-845.5q-17-8.5-17-31.5 0-22 20-35.5t51-13.5q22 0 39 13t17 31q0 20-21 32.5t-50 12.5q-22 0-39-8.5zm185.5 115Q1377 832 1377 852q0 13-14.5 27t-50.5 14q-25 0-44.5-10t-19.5-36q0-20 18-31t46-11q26 0 45.5 13.5zm59-82Q1397 726 1397 708q0-25 20-36.5t43-11.5q26 0 46 14.5t20 34.5-20.5 29-41.5 9q-28 0-47.5-10.5zm-373.5 56q20-12.5 45-12.5 23 0 43 12t20 29q0 20-23.5 33.5T1078 868t-40.5-11-14.5-29q0-23 20-35.5zm464.5 27Q1523 808 1558 808q20 0 36 14t16 31q0 20-21.5 34t-37.5 14q-20 0-39.5-16t-19.5-39q0-15 15.5-26.5zm197.5-21q-26-16.5-26-35.5 0-21 13-28t30-7q25 0 44.5 12t19.5 33q0 13-8.5 27.5T1753 815q-22 0-48-16.5zm-148 238q-10 13.5-25 13.5-24 0-47-17t-25-36q0-19 13.5-26t29.5-7q25 0 44.5 12t19.5 33q0 14-10 27.5zM1231.5 997q12.5 13 12.5 30 0 20-20 31t-43 11q-19 0-35.5-8t-16.5-23q0-23 23-38.5t49-15.5q18 0 30.5 13zM894 929q-20 10-43 10-21 0-36.5-7.5T799 906q0-22 22-37t47-15q18 0 32 11t14 32q0 22-20 32zm114-195q-21 11-44 11-20 0-35-8t-15-25q0-24 21.5-38t49.5-14q17 0 30.5 11t13.5 31q0 21-21 32z" + }, + "children": [] + }] +}; +exports.u1F354 = u1F354; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F355.js b/dist/noto_emoji_regular/u1F355.js new file mode 100644 index 000000000..d9051537b --- /dev/null +++ b/dist/noto_emoji_regular/u1F355.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F355 = void 0; +var u1F355 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2360 1594q-18 71-114 108l-54 20q-148 56-296 106l-297 100-76 25q-54 17-96 44.5t-63 67.5-57.5 66.5-92.5 26.5q-32 0-58.5-11t-48.5-24l-45-23q-22-11-46-11-43 0-69.5 37t-67.5 59-95 22q-22 0-40.5-5t-33.5-11l-30-10q-15-5-28-5-32 0-53.5 34.5T571 2301t-51 99.5-101 43.5q-103 0-150-137t-47-257q0-175 104-351t314-446l283-364 22-28q47-60 49-100.5t20-100 54.5-107 94-75T1295 451q170 0 442 131t456.5 363 184.5 494q0 84-18 155zm-827 253l300-101q160-53 325-116l49-19q47-18 53-30t13.5-55 7.5-81q0-44-4.5-64.5t-30-55-75.5-34.5q-76 0-114.5 43t-38.5 113q0 96-84.5 128.5T1764 1624l-60 12q-41 9-95.5 31t-155.5 55l-197 63q-99 32-333.5 110T619 1991l-60 16q-76 20-95.5 32t-29.5 12q-14 0-26-11t-12-29q0-22 29.5-40t71.5-30l43-12q143-37 382-116.5t309-102.5l196-63q108-34 170-60.5t111-31.5 125-27 90-36q-13-59-34-111-29 47-87 73.5t-116 26.5q-80 0-133.5-40.5T1499 1330v-18q0-60 59-113.5t130-53.5q18 0 37 3t38 8q-100-128-216.5-195.5T1277 873q18 18 28.5 43t10.5 60q0 63-69.5 122.5T1088 1158q-62 0-109.5-27t-59.5-76l-106 137q-53 69-110 138 83 0 142.5 45.5T905 1491q0 78-70 126.5T686 1666q-46 0-94-19.5t-77-58.5l-40 60q-94 144-125 231.5T319 2050q0 93 32 194.5t68 101.5q45 0 61.5-84t61-134.5T652 2077q22 0 41.5 5t36.5 11l30 12q13 5 24 5 53 0 81-39.5t67-59.5 84-20q51 0 106 34t92 34q44 0 61-37.5t65-82 193-92.5zM1108 776l83 6q50 2 159.5 24.5t203 68.5 175 124.5 137.5 164 93 177.5q27-60 79.5-94t113.5-34q27 0 48 2t41 10q-62-172-221-327t-376-252.5-349-97.5q-89 0-142 57.5T1090 774zm-146 769q0-38 16-67t48-48l29-17q-8-15-10.5-26.5t-2.5-27.5q0-56 46-87.5t104-31.5q55 0 90.5 23t43.5 65q13-4 32-4 54 0 95.5 40t41.5 102q0 63-46 98.5t-112 35.5q-20 0-38.5-2.5t-34.5-6.5q-24 40-67 66.5t-94 26.5q-61 0-100-39.5t-41-99.5zm123-58q-20 9-32.5 23t-12.5 33q0 29 19.5 46t43.5 17q26 0 51.5-15t42.5-40l4-10q4-13 19.5-25t35.5-12q13 0 24 5t19 10q74 0 95-10.5t21-42.5q0-26-14.5-45t-42.5-19q-5 0-10.5 1t-14.5 4q-8 8-17.5 11.5t-27.5 3.5q-21 0-31-17t-10-32v-15.5l2-7.5q0-32-57-32-38 0-54.5 15t-16.5 26q0 8 1.5 15.5t4.5 12.5q13 3 23 16t10 38q0 23-13 35t-28 12l-11 1q-7 0-13.5-1t-9.5-1z" + }, + "children": [] + }] +}; +exports.u1F355 = u1F355; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F356.js b/dist/noto_emoji_regular/u1F356.js new file mode 100644 index 000000000..75941c449 --- /dev/null +++ b/dist/noto_emoji_regular/u1F356.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F356 = void 0; +var u1F356 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2288 898q40 94 59 180.5t19 168.5q0 118-39 226t-94 170-167 138-243 142-180.5 82.5T1383 2179l-164 122q-118 87-234 133.5T763 2481q-126 0-256-72t-172-171l-60-137q-23-53-32-100t-9-89q0-82 30-152.5t62.5-123T444 1512l77-65q127-108 190-251t125.5-292.5T1005 637t254.5-181.5T1571 391q141 0 298.5 61t236 131T2230 765zm-122.5-51.5Q2119 712 2045.5 649t-213-116-261.5-53q-93 0-179.5 23T1207 585.5t-179.5 166-145.5 271T752 1308t-174.5 209.5T437 1640t-73 111.5-41 159.5q0 32 7 69t24 79l13 23q21 41 84 86t153 61l36 10q21 6 58 6 90 0 192.5-42t211.5-122l165-123q217-163 292-189t218-104.5 234.5-148 126-131T2192 1251t20-152q0-118-46.5-252.5zm-90 463Q2024 1409 1867 1513l-36 23q-35 21-68 34t-62 13q-38 0-67.5-26t-29.5-64q0-16 3-29l5-27q3-16 5.5-36t2.5-48q0-26-13-39.5t-32-13.5q-37 0-56.5 39.5T1499 1471q0 26 1.5 51.5t1.5 51.5q0 75-27 113t-90 78-134.5 93-121.5 91-107.5 80.5-129 75T756 2137q-88 0-134.5-43.5T570 1998t-30-52q-20 0-37.5 40.5T465 2027q-11 0-32-17t-21-99q0-69 37.5-136T600 1610l72-61q78-66 130-149t103-200l46-110q23-55 44-103.5t41-85.5l15-27q11-20 28-33.5t40-13.5q25 0 39.5 31t27.5 49.5 23 59 10 72.5q0 89-45.5 166t-45.5 118q0 35 13 54.5t40 19.5q16 0 34-20.5t20-43 64-131.5 62-184q0-60-43-138t-43-131q0-87 77.5-133.5T1571 569q61 0 91.5 25t34.5 68l4 42q2 26 3 50.5t1 50.5q0 48 13.5 67t33.5 19q22 0 39-28.5t17-57.5q0-15-3-33.5t-3-35.5q0-24 15-40.5t57-16.5q37 0 105.5 57.5t108 149.5 39.5 203q0 121-51.5 220.5z" + }, + "children": [] + }] +}; +exports.u1F356 = u1F356; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F357.js b/dist/noto_emoji_regular/u1F357.js new file mode 100644 index 000000000..6a15b8038 --- /dev/null +++ b/dist/noto_emoji_regular/u1F357.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F357 = void 0; +var u1F357 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2349.5 1012q-20.5 43-45.5 57t-39 47l-11 25q-20 43-57.5 69t-73.5 26q-63 0-115.5-22.5T1922 1191q-45 0-168.5 27.5T1616 1246q-23 0-35.5-8.5T1549 1206q-84 33-137.5 100t-87.5 234l-22 112q-27 133-99.5 283.5t-167.5 250T841 2330t-173 45q-196 0-317-168t-121-399q0-256 187-485t460-334 521-105h90q7-48 33.5-71.5t112.5-33 135.5-27 83-107.5 81.5-116 95-26q79 0 117 50t43 49 63 36 58 109q0 57 30 88.5t30 85.5q0 48-20.5 91zm-1366 338.5q20.5 18.5 42.5 18.5 17 0 35-16.5t18-45.5q0-27-24.5-52.5T1005 1229q-21 0-31.5 18t-10.5 40q0 45 20.5 63.5zM826 2157q14-14 14-34 0-33-31-61t-57-28q-20 0-32.5 15t-12.5 37q0 30 29.5 57.5T793 2171q19 0 33-14zm137.5-587q17.5-16 17.5-45 0-27-28.5-50.5T893 1451q-17 0-32.5 12t-15.5 34q0 29 26 59t54 30q21 0 38.5-16zm84.5 423.5q14-12.5 14-31.5 0-40-27.5-65.5T979 1871q-20 0-35 12t-15 34q0 30 26.5 59.5t58.5 29.5q20 0 34-12.5zm117-245.5q14-12 14-32 0-40-25-68t-54-28q-19 0-33 11.5t-14 34.5q0 32 23.5 63t54.5 31q20 0 34-12zm83.5-398.5Q1231 1328 1207 1328q-23 0-40.5 17t-17.5 41q0 23 16.5 43.5t42.5 20.5q23 0 40.5-15t17.5-40q0-24-17.5-45.5zm40-242.5q-23.5-19-52.5-19-20 0-35 12t-15 40 20.5 46.5 45.5 18.5q22 0 41-16.5t19-41.5q0-21-23.5-40zm964-225q-20.5-21-44.5-21-20 0-40 7t-42 7q-6 0-12-2.5t-6-10.5q0-11 35.5-22.5t53-31.5 17.5-51q0-24-20.5-42.5T2149 696q-23 0-43.5 29.5T2067 755q-6 0-10.5-3t-4.5-9q0-4 16-30t16-56q0-29-14.5-42t-40.5-13q-63 0-82 68.5T1879.5 791 1759 857l-59 12q-34 8-63 11t-51 8q-4 19-6.5 39.5T1577 973q3 96 13 119t36 54q24-4 127.5-29t173.5-25q42 0 97 23.5t87 23.5q26-2 46.5-28t20.5-50q0-26-35.5-34.5T2107 1005q0-14 15-14 20 0 35.5 5.5t35.5 5.5q43 0 61.5-25t18.5-57q0-17-20.5-38z" + }, + "children": [] + }] +}; +exports.u1F357 = u1F357; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F358.js b/dist/noto_emoji_regular/u1F358.js new file mode 100644 index 000000000..0df270f6c --- /dev/null +++ b/dist/noto_emoji_regular/u1F358.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F358 = void 0; +var u1F358 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2167 1874q-129 216-382.5 346.5T1242 2351q-258 0-483.5-107t-340-312.5T304 1480q0-378 280.5-669T1288 520q159 0 341 40t333 164.5 242.5 303.5 91.5 356q0 274-129 490zm30-487q0-154-77-309.5t-218.5-273-309-152T1288 618q-379 0-632 258t-253 603q0 64 9 128t25.5 119 38 102.5 50 91 55.5 74 61 61.5 62 45.5 64 37.5l-1-17q0-29 11.5-48.5T810 2053q43 0 52.5 60t44.5 85l60 18q30 9 62 15-3-10-5-20.5t-2-20.5q0-31 15.5-47t33.5-16q35 0 44 58t34.5 63.5 92.5 5.5q87 0 173-15 0-3 1-8-3-18-17-39t-49-55.5-118-109-164-162-127.5-121-60-51-38-34T803 1622q-9-12-9-30 0-25 14.5-50.5T849 1490l28-28 14-23q9-14 29.5-27t30.5-23l32-30 37-31h-1q43-35 76.5-79t96-91 89.5-76 60-48.5 97.5-66T1540 921q20 0 49 14t54.5 31.5T1745 1040t108.5 73 47.5 32.5 63 54.5l69 56 63 56q29 25 52 45.5t49 55.5v-26zm-842-560q8 9 8 17 0 18-26 30.5t-62 12.5q-53 0-73.5-38t-20.5-48q0-11 8-16t16-5q19 0 38.5 22t38.5 22q11 0 22.5-3t25.5-3q17 0 25 9zm563.5 135.5Q1903 974 1878 974t-46-7-48-34l-3-4q-5-5-9.5-14t-4.5-19q0-8 5.5-16t19.5-8q10 0 17.5 4.5T1824 887l13 12q16 15 56.5 22t40.5 22q0 8-15.5 19.5zm-992 62.5q-35.5 33-71.5 33-32 0-51.5-9t-19.5-25q0-30 41.5-33t64.5-30.5 46-27.5q12 0 19 12t7 23q0 24-35.5 57zM654 1326q-10-18-10-34 0-8 10.5-18t34.5-10q23 0 35 22t12 57q0 39-13.5 64.5T686 1433q-11 0-21-10.5t-10-21.5q0-10 4.5-19t4.5-21q0-17-10-35zm120 450q9 0 21.5 7.5T808 1810q0 17-16.5 27t-38.5 10q-28 0-69.5-17.5T642 1781q0-13 8-22.5t18-9.5 22 4l46 19q11 5 19 5z" + }, + "children": [] + }] +}; +exports.u1F358 = u1F358; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F359.js b/dist/noto_emoji_regular/u1F359.js new file mode 100644 index 000000000..8075b5c80 --- /dev/null +++ b/dist/noto_emoji_regular/u1F359.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F359 = void 0; +var u1F359 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2143 1660q-84 140-336 354t-444 292.5-381 78.5q-280 0-444.5-178.5T373 1692q0-145 34.5-480T591 689.5 988 502q140 0 330 56t393 166.5T2011.5 929t156.5 209 59 236q0 146-84 286zm-136-591q-122-156-452.5-312.5T988 600q-212 0-332.5 165T511 1182l-28 285q-12 108-12 214 0 318 139.5 462T982 2287q75 0 159-15.5t170-47.5q26-32 26-74 0-86-96-213.5t-179.5-228T978 1563q0-34 49-65t55-36l220-159q111-80 227-145l37-20q19-10 40-10 40 0 96 66t118.5 140.5T1941 1512t58 176q68-85 99-157t31-157q0-149-122-305z" + }, + "children": [] + }] +}; +exports.u1F359 = u1F359; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F35A.js b/dist/noto_emoji_regular/u1F35A.js new file mode 100644 index 000000000..222495086 --- /dev/null +++ b/dist/noto_emoji_regular/u1F35A.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F35A = void 0; +var u1F35A = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2192 1225q42 47 57 106t15 131q0 119-77 256t-195 234.5-241 154.5v56q0 116-103.5 176.5T1333 2400q-161 0-289-55.5T916 2183q0-11 1-24l2-23q-135-50-274-154.5T421 1732t-85-270q0-81 21-148t77-116q8-35 23.5-65t35.5-51v-21q0-66 39.5-124.5T629 850q20-72 66.5-119.5T822 665l15-25q23-42 71-73.5t128-37.5l39-2q24 0 36.5-13t57.5-31 117-18q44 0 76.5 13t63.5 13l28-1q75 0 135 22.5t108 80.5q56 8 104.5 36t75.5 70 38 56q25 9 47 23t39 33 36 53.5 24 69.5l9 53q25 23 45.5 55t28.5 77l2 13q0 6 1 12 17 23 28.5 42t16.5 39zm-96 130v-26q-3-84-32.5-108.5T2034 1165q-2-65-38.5-94t-36.5-65.5-16.5-80.5-66.5-65l-18-8q-22-10-51.5-58.5t-57-67-71-23.5-68.5-39-66.5-46.5T1439 605t-92.5-14-60.5-14q-77 0-113.5 32t-118 30.5T932 700l-19 28q-8 11-22.5 24T839 778l-27 9q-22 8-40.5 25T742 868l-11 37h-1q-10 34-37.5 39T636 982.5t-32 80.5q0 65-32 97t-32 90q0 37-19.5 65t-19.5 52q0 58 68.5 126t277 144.5T1301 1714q36 0 72-2t71-5q5-7 13-12l13-7q12-8 20-19l15-21q3-5 19.5-38.5t39.5-33.5q21 0 33.5 20.5t12.5 49.5q0 9-2 22.5t-5 16.5l31-7q203-42 300.5-99.5T2064 1461t32-106zm-440.5-437q13.5 27 13.5 43 0 30-29.5 60.5T1569 1052q-16 0-33-13t-17-29q0-21 29-33.5t40.5-49T1622 891q20 0 33.5 27zm-40.5 417q-27 30-63 30-19 0-37-12t-18-29q0-26 27-41t33-33l9-24q4-12 11-21t22-9q23 0 33 17.5t10 40.5q0 51-27 81zm-302.5 281q-25.5 30-63.5 30-20 0-37-11.5t-17-28.5q0-23 16-34l30-20q13-8 21-41t34-33q23 0 32.5 17.5t9.5 39.5q0 51-25.5 81zm576.5-472.5q8 15.5 8 51.5 0 39-18 67.5t-52 28.5q-14 0-33.5-11.5T1774 1252q0-10 7-20t16-21l18-20q14-15 15.5-39t32.5-24q18 0 26 15.5zm-13 280q8 14.5 8 45.5 0 42-17.5 71.5T1815 1570q-17 0-35-11t-18-26q0-10 7-20.5t16-20.5l18-20q8-10 11-18t3-18q0-8 7.5-17.5t26.5-9.5q17 0 25 14.5z" + }, + "children": [] + }] +}; +exports.u1F35A = u1F35A; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F35B.js b/dist/noto_emoji_regular/u1F35B.js new file mode 100644 index 000000000..c5e677d5d --- /dev/null +++ b/dist/noto_emoji_regular/u1F35B.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F35B = void 0; +var u1F35B = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2332 1924q-156 174-433.5 276T1300 2302q-322 0-599.5-102.5t-433-275T112 1547q0-118 50.5-220.5T307 1134q22-33 48.5-58t52.5-41l6-3q19-80 97.5-135T670 842q6 0 11 1 37-44 86-65t110-21l64 1 10-7q16-57 115-92.5t201-35.5h29l29 2q34-18 69-23t58-5q81 0 144.5 30.5T1695 710q46 15 85.5 35.5T1859 793q22-3 44-3 117 0 199.5 63.5T2192 1027l28 21q13 11 24 27l9 13q4 7 71.5 75t115.5 169 48 215q0 203-156 377zm38-423.5q-3-23.5-10-46.5-11 74-32.5 118.5t-50 71-94 65.5-93 69.5-93 62T1880 1893t-149.5 39.5-139.5 31-91 22.5l-37 8q-18 4-38 4-41 0-84.5-5t-85.5-22l-8-4q-13 7-31 14t-41 12l-8 2q-20 4-43 7.5t-49 3.5q-51 0-93-17t-81-52q-10 0-22 1l-23 1q-86 0-144.5-29t-89.5-79q-121 0-194-69.5T352 1589q-48-36-68.5-79t-20.5-91q0-19 3-37-19 40-29 81t-10 84q0 166 143 315t390 237 540 88q284 0 530-85t394.5-233 148.5-322q0-23-3-46.5zM494 1118l-27 16q-39 25-63.5 60.5T379 1262q0 19 6.5 35t6.5 31q0 22-6.5 45t-6.5 44q0 49 44.5 78t44.5 63l-1 28q0 48 35 86.5t114 43 87.5 28.5 44 52 108.5 28q20 0 39.5-2.5t33.5-2.5q23 0 37.5 20t45.5 36 63 16q18 0 53.5-6.5t48.5-12.5l23-11q11-6 22-10.5t23-4.5q14 0 29 6t25 6q42 0 70-43t28-100q0-37-21-96t-21-187q0-79-39-124.5t-43-103.5l-2-27q-7-54-61.5-122T1148 936l-5-30q-7-33-25-57.5t-48-24.5q-21 0-32 5.5t-18 12.5l-15 15q-7 8-19.5 12.5T963 874l-23 1q-14 0-27-1l-28-2h-8q-71 0-106.5 44T705 960q-11 0-20-1.5t-19-1.5l-10 1q-36 5-79 34t-52.5 72-30.5 54zm1331 404.5q-19-19.5-55.5-37.5t-70.5-18q-35 0-59 36.5t-24 76.5q0 48 48 80.5t102 32.5q48 0 63-25.5t15-84.5q0-41-19-60.5zM1459 1206q0 44 15.5 70t46.5 26q19 0 110.5-24.5t91.5-72.5q0-51-30.5-86.5T1623 1083q-17 0-35.5 4.5t-34.5 9.5l-14 4q-41 12-57.5 30.5T1459 1206zm684.5 255.5q44.5-16.5 44.5-51.5 0-78-31-113t-109-35q-11 0-20 1l-20 2q-32 6-56.5 47.5T1927 1398q0 37 22 58.5t76 21.5q74 0 118.5-16.5zm-300-545.5q-19.5 11-36.5 41.5t-17 62.5q0 44 44.5 80t105.5 36q56 0 97-24.5t41-69.5q0-64-49.5-100.5T1903 905q-40 0-59.5 11zm-483-175q-37.5 29-37.5 91 0 32 68.5 65.5T1556 931q36 0 48-23t12-59q0-52-17-76.5t-57.5-42.5-89.5-18q-54 0-91.5 29zM773 1506.5q7-10.5 16-21.5l18-20q14-15 17.5-41t32.5-26q18 0 26.5 17t8.5 52q0 39-17 68.5t-55 29.5q-17 0-35.5-10.5T766 1527q0-10 7-20.5zm301-70q7-10.5 16-21.5l18-20q16-18 18-42.5t32-24.5q18 0 26.5 17t8.5 45q0 47-18.5 77t-51.5 30q-2 0-4-1t-4-1q-16 0-32-11t-16-27q0-10 7-20.5zm-68 285q7-10.5 16-21.5l18-20q15-18 17.5-41.5t30.5-23.5q18 0 27.5 16t9.5 52q0 40-19.5 68.5T1053 1780q-17 0-35.5-10.5T999 1742q0-10 7-20.5z" + }, + "children": [] + }] +}; +exports.u1F35B = u1F35B; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F35C.js b/dist/noto_emoji_regular/u1F35C.js new file mode 100644 index 000000000..9dafa7ab5 --- /dev/null +++ b/dist/noto_emoji_regular/u1F35C.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F35C = void 0; +var u1F35C = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2219 1750q-81 174-223 300t-280 186q0 12-1 23.5t-1 20.5q-2 92-116 142.5t-271 50.5q-147 0-264.5-50T945 2278v-15q-161-58-313-185t-242-297-90-339q0-243 135-405t396-250h20q11 4 16.5 13t5.5 19q0 30-30.5 38.5t-116 48-154 94.5-114 122.5-65 133T371 1400q25-184 282.5-308.5T1268 959q38-29 83.5-46t93.5-17q39 0 77.5 13.5T1592 952q57-23 116-23 72 0 129.5 37t77.5 101q70 30 84.5 33t89.5 63 93.5 84.5 31.5 47.5q-33-145-135.5-249T1775 861l-21-13q-10-5-10-18 0-21 11.5-30t23.5-9q39 0 197.5 89t241 231.5T2300 1420q0 156-81 330zm-98-452q-2 16-6.5 26t-8.5 24q19 0 42-8-5-11-13-23zm-31 130q-13 0-26 1h-27q-11 8-22 14l-22 13q10 0 18 5h6q157 0 157-11t1-15l-1-20q-20 5-41 9t-43 4zm57 107l-41 2 21 25q5-6 10-13zm-225 180l45-23q-44-44-91.5-74t-82.5-37-124-7q6 10 11 14l20 19q74 5 137.5 43t84.5 65zm-79 33q-25-20-51.5-35.5T1738 1691h-5q-3-2-11-2 8 22 12 45t6 46q26-6 53-15zm21-224q50 21 92.5 54.5t77.5 71.5l21-15q10-7 19-15-46-53-89-72.5t-121-23.5zm-346.5-25q14.5 11 38.5 11 31 0 60-5t62-16l110-37q63-21 122-43.5t96-58.5 37-69q0-59-47.5-92.5T1886 1155q-66 0-134.5 39.5T1624 1292t-90 96.5-31 77.5q0 22 14.5 33zm-18.5 78q37 43 58.5 100.5T1584 1814l79-15q-3-49-20-97t-61-114h-7l-6 1q-18 0-36.5-2t-33.5-10zm6 247q-2-38-10-77.5t-25-73.5q-8 20-20 38t-25 33q19 41 22 85l30-2q14 0 28-3zm-145-487q26 11 44 27t36 34q18-57 145.5-178t250.5-139q0-11-34-42.5t-94-31.5q-65 0-135 46.5t-138 150-75 133.5zm-226-15q23-6 46.5-9.5t48.5-3.5q14 0 28 1t28 4q16-54 65-129.5t80.5-110T1519 996q-31-20-74-20-90 0-171.5 85.5T1134 1322zm-3-277q14 18 25 42 0-3 3.5-9.5t9.5-13.5l20-24zm-131 730.5q45 33.5 110 33.5 113 0 210.5-74t97.5-180q0-71-52.5-119.5T1229 1387q-113 0-193.5 87.5T955 1688q0 54 45 87.5zm368 57.5q0-13-5-31l-27 17q-13 8-25 16 14 0 28.5-1t28.5-1zm-330-775q-20 2-38 5.5t-36 8.5q39 46 64.5 101.5T1062 1289l21-52q10-27 22-53-12-75-67-126zm-204 46q39 46 60.5 99.5T916 1310q0 32-7 61.5t-16 61.5l66 8q0-8 5-14t11-10q5-10 9-31t4-35q0-75-29.5-142T875 1092zm44 584l-1-19q0-30 5-58t14-56q-59 16-106.5 61T720 1724l36 14q17 7 36 13 38-41 86-63zm-227 0q23-60 65.5-109t101.5-77q-25-2-47.5-9t-45.5-15q-51 4-91.5 56T589 1651l30 19q15 10 32 18zm227 90l13 4q7 2 14 3-3-4-5-9l-4-9zm-126-645q-5 3-11 5l-11 5q0 47 26.5 85.5T836 1280q-11-42-31.5-81.5T752 1133zm-136 69q0 5-1 11l-1 11q0 72 56.5 127t140.5 70q13-23 22-62-75-12-119-58.5T655 1180q-11 5-20 11t-19 11zm-33 168q-31 15-67 54t-54 79q8 23 21.5 45t35.5 43q13-48 43-92.5t74-72.5q-30-24-53-56zm-75-79q-17 20-28.5 40t-19.5 41q21-22 41.5-40t46.5-32l-5-20q-3-9-5-19-8 7-15 14zm1698 300q-103 146-344 234t-550 88q-378 0-649.5-129.5T371 1467q2 118 69 255.5T603 1956t194.5 157.5 158.5 77 60 86.5q0 54 92.5 90t218.5 36q123 0 219-35.5t98-90.5l1-19v-22q0-50 67-75.5t187.5-121.5 198-216.5T2206 1591zm-1058.5 44.5Q1107 1602 1107 1557q0-47 39.5-78t93.5-31q49 0 80.5 29.5t31.5 80.5q0 46-30 78.5t-81 32.5q-53 0-93.5-33.5zM891 629q-24-42-31.5-71t-7.5-66q0-92 59.5-177.5T1029 229q29 0 29 30 0 20-8 29t-26.5 57-18.5 100q0 61 45.5 179t2.5 193.5-80 75.5q-8 0-17-8t-9-24q0-14 4.5-29t7.5-29q0-39-11.5-67T918 676zm626-316q61-84 116-84 29 0 29 30 0 20-14.5 43.5t-26 62T1610 448q0 56 34 145t34 142q0 58-36.5 108t-64.5 50q-8 0-16.5-8.5T1552 859q0-18 5.5-37t5.5-33v-15q-3-39-36-90.5t-52-92-19-100.5q0-94 61-178zm-315.5.5Q1262 229 1318 229q29 0 29 30 0 20-8 29.5t-26 56.5-18 100q0 60 34 150.5t34 147.5q-8 72-45 111t-56 39q-8 0-17-8t-9-24q0-15 5-30.5t7-27.5q0-69-53.5-147T1141 492q0-94 60.5-178.5z" + }, + "children": [] + }] +}; +exports.u1F35C = u1F35C; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F35D.js b/dist/noto_emoji_regular/u1F35D.js new file mode 100644 index 000000000..31adf31cb --- /dev/null +++ b/dist/noto_emoji_regular/u1F35D.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F35D = void 0; +var u1F35D = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1193 1017v200q39-6 84-6 30 0 59 3.5t54 8.5l45 11q22 6 44 10t44 4q98 0 175 22t132.5 59.5 62.5 36 59 28.5 93 73q23 25 40 52 102 72 163.5 160.5T2310 1874q0 153-133.5 282.5t-371 204T1297 2435q-266 0-501-72.5T423.5 2161 286 1874q0-66 22-118.5t57.5-99 37-55.5 24.5-41.5 51.5-51T526 1461t43-53 60.5-44 88.5-26V996q-53-53-76.5-116T618 742q0-85 46-144.5T786 538q14 0 31 2l28 5q14-8 35-16t47-9h7q17 0 32 3.5t24 6.5q13-8 37.5-16.5t53.5-8.5q58 0 106.5 28t75.5 75q36-4 66-14.5t72-37.5l43-28q52-31 156.5-57.5T1870 415l114-21q57-10 113-23l53-13q26-6 54-6 43 0 76.5 19t33.5 55q0 46-56.5 57.5T2140 505l-84 15q-52 10-163 26.5T1703 589t-126.5 54-129.5 95l-59 49q-30 24-63 43 0 73-34 124t-98 63zm-453 620q-64 25-92 80t-28 122q0 56 22.5 113.5T692 2025t104 23q-28-44-44-92.5T736 1855q0-71 21-106.5t29-43.5l-19-35q-10-18-27-33zm-232.5 149.5Q538 1822 542 1827q3-66 27-126.5t80-103.5q-18-12-30.5-28.5T590 1537q-21 30-50 47.5t-46 52.5-17 72q0 42 30.5 77.5zM1963 1709q38 19 74.5 45t58.5 61q15-10 24.5-35.5t9.5-44.5q0-38-27-68t-66-59q-14 18-30.5 46t-43.5 55zm-94 48q-5 2-11 2h-11q17 37 27.5 77.5t10.5 82.5q0 44-14 85 50-10 69-18.5t55.5-45.5 40.5-72q-8-18-29-36.5t-49-35.5l-44-25q-25-14-45-14zm-364 463q-41 0-68-5.5t-45-5.5l-7 2q-34 3-75 11t-81 8q-87 0-158.5-23t-98-36-137-19.5-170.5-30-97-58-56-71-25-64-40.5-62.5-49.5-66q-12 36-12 74 0 119 120.5 227t334 172 457.5 64q251 0 460.5-63t331.5-172.5 122-227.5q0-11-1-23.5t-4-23.5q-19 37-39 55.5t-41 30.5q-20 72-90.5 126t-136.5 60-92.5 29.5-83 57.5-218.5 34zm-637.5-722q-27.5 23-27.5 54 0 25 49.5 53.5T981 1634q29 0 55.5-23t26.5-51q0-30-42-57.5t-90-27.5q-36 0-63.5 23zM990 1246q13-2 29.5-3t48.5-1h23.5l22.5-3v-216q-27 17-58 23t-66 6v194zm-38 558l1-13q-29-3-57.5-8.5T841 1763q-14 18-20 41.5t-6 50.5q0 55 25 110t63 92q5 0 9 1t10 1l15-3q19-3 56.5-14.5t64.5-22.5q-47-34-77-90t-30-111q0-7 1-14zm190 167q40-28 62.5-61t22.5-65q0-16-5-30l-4-6q-45-10-91-11l-94-2q-4 8-4 22 0 50 39.5 101.5t73.5 51.5zm-230-919q-11 3-22.5 5t-22.5 2q-17 0-35-3.5t-36-9.5v281q32-11 59.5-26.5T912 1271v-219zm880 784.5q-14-41.5-36-82.5l-16-1q-22 0-39 7l-34 16q14 38 23 79t9 83q0 48-13 91t-42 82q59-17 110.5-66.5T1806 1919q0-41-14-82.5zM1587 1392q0 3-1 5 0 29 40.5 70t72.5 41q29 0 52.5-15.5t23.5-44.5q0-36-38-67.5t-79-31.5q-23 0-43.5 10t-25.5 27zm8 420q-25 8-53 13.5t-54 9.5l2 17v19q0 64-21 127t-69 114q26 0 50 5t50 5q67-27 93-74t26-110q0-31-6-63.5t-18-62.5zm-262-231.5q8 13.5 19 28.5l16 23q13 19 32.5 29.5t46.5 10.5q37 0 63.5-15.5t26.5-40.5q0-43-39.5-76t-79.5-33q-30 0-61.5 13t-31.5 34q0 13 8 26.5zm77 257.5q-28 0-54-4.5t-52-9.5l1 21q0 80-69.5 150T1063 2101q45 17 88 23.5t94 6.5q81-38 123.5-107.5T1411 1863q0-17-1-25zm-220-500q-44 3-84 17.5t-40 41.5q0 28 18 47t42 19q30 0 76-12.5t63-16.5 17-23q0-29-18-51.5t-46-22.5zm-23-416q28 0 43.5-25.5T1226 827q0-84-38-153.5T1081 604q-14 0-24.5 4.5T1036 618l-20 9q-10 5-22 5-15 0-29-7.5t-31-7.5-42 14.5-40 14.5q-12 0-30.5-4.5T789 637q-31 0-52 24.5T716 742q0 68 39.5 143T867 960q24 0 33.5-19t9.5-47q0-45-16-91t-16-65q0-11 5.5-19t13.5-8q29 0 59 64t30 130l-1 37q0 9 6.5 10.5t13.5 1.5q35 0 58-20t23-58q0-28-6-55t-11-42l-14-48q-3-10-3-15 0-11 5.5-18.5t16.5-7.5q3 0 8 1t8 6q31 20 54.5 81t23.5 127z" + }, + "children": [] + }] +}; +exports.u1F35D = u1F35D; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F35E.js b/dist/noto_emoji_regular/u1F35E.js new file mode 100644 index 000000000..7cf0f29ea --- /dev/null +++ b/dist/noto_emoji_regular/u1F35E.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F35E = void 0; +var u1F35E = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2209.5 2100.5Q2179 2135 2128 2143l-617 179q-7 5-27.5 8t-32.5 3l-11 1q-17 0-144.5-5.5T942 2305l-222-18q-111-9-221-16-51 0-79-36.5T392 2134q0-148 14-324t23-232 31-118l21-56q10-27 10-49 0-32-36.5-55.5t-66-72.5-29.5-117q0-102 68-189.5t194-141 288.5-107 328-85.5 276.5-32q308 0 506.5 138.5T2219 993q0 104-59.5 158t-59.5 57q2 28 33 84t42 106.5 11 98.5 15.5 213.5 27 212 11.5 84.5q0 59-30.5 93.5zm-728.5 21q-11-39.5-25-201.5t-19-240-22-108.5-40-81-23-94.5q0-27 12-48t36-43l19-16q35-28 43.5-47.5t8.5-55.5q0-74-83.5-161.5t-223-135.5T865 841q-168 0-288.5 75T456 1110q0 60 43.5 97.5T566 1280t23 75q0 49-28.5 116T523 1626l-16 145q-8 81-12 160.5t-4 160.5v49.5l5 31.5q113 7 226 16l224 19q111 9 222.5 16t222.5 10q12 0 24 1t25 1q31 0 41.5-7t10.5-33q0-35-11-74.5zM1601 893q-35-36-67-36-9 0-23.5 7.5T1496 886q0 6 13.5 24.5T1537 951t30 33.5 32 11.5q14 0 25.5-10t11.5-26q0-31-35-67zm182.5-37.5Q1749 820 1717 820q-13 0-25 8.5t-12 20.5q0 9 33.5 60t67.5 51q14 0 25.5-9.5T1818 923q0-32-34.5-67.5zm152-35Q1901 785 1869 785q-14 0-26.5 8t-12.5 22q0 6 14 25t27 40.5 29 33 32 11.5q14 0 26-9.5t12-27.5q0-32-34.5-67.5z" + }, + "children": [] + }] +}; +exports.u1F35E = u1F35E; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F35F.js b/dist/noto_emoji_regular/u1F35F.js new file mode 100644 index 000000000..6c1579451 --- /dev/null +++ b/dist/noto_emoji_regular/u1F35F.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F35F = void 0; +var u1F35F = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2163 431l20 13q20 14 34.5 39.5T2232 542v12q0 7-2 13v2q-9 84-49 190.5T2133 891q32 24 44 55t12 56q0 36-16.5 76.5T2120 1194l-36 73q12 9 19 17.5t7 14.5-15 79.5-31 130.5l-22 77q-14 48-64.5 264t-74 286-41.5 143.5-51 73.5q-21 0-40-10t-169-22.5-286-12.5q-129 0-274 12.5T879 2343t-39 10q-32 0-50.5-74.5t-38-132.5-61.5-228-60.5-251.5-42-157T552 1352q-2-11-6-23.5t-4-23.5q0-19 16-31.5t38-17.5q-34-74-108-216.5T379 783l-7-28q-4-16-4-33 0-63 50.5-103.5T544 578q47 0 85 26.5t58 62.5l28 47 11 17q-6-60-10.5-120T711 489v-10q0-6-1-22 0-98 49.5-140T905 275q69 0 109 65.5t60 260.5l4-69q2-34 7-69l1-10q5-97 50-139.5t126-42.5q68 0 105 28t47 79l1 2q11 49 14.5 96.5t3.5 95.5v130l11-4q7-50 19-95.5t26.5-102 30-96 55-71.5 111.5-32 111.5 40 39.5 104v20q-3 77-15 150.5T1795 767q21-59 45-117t52-115l5-9q31-72 66.5-98t77.5-28h7q33 0 63 10t52 21zm-899 1015q-4-30-23-262.5T1205 877t-24.5-81-22.5-7q-37 0-55.5 20.5T1084 880l-1 72q0 28 3 54.5t3 38.5v23l6 69q7 65 15 180.5t8 123.5q23 3 60.5 4t85.5 1zm571-479q0-10 1-18 0-19-26-34t-55-15q-6 0-8 1.5t-27.5 42.5-54.5 131l-36 108-93 256q15 0 31-4t28-4q58-14 86.5-39t41.5-65l6-22q6-21 13-35t17-22q22-65 37-126.5t37-136.5zm-283-114q0-5 1.5-11t1.5-12q0-19-17.5-25.5T1505 798q-33 0-47.5 18.5t-35 61.5-48.5 143l-29 102q4 38 7 78l6 82q3 41 6.5 81.5t8.5 77.5l23-1 37-129 34-107q32-97 49-169.5t24-112.5zm-547 558q-26-241-59-381t-45-161-38-21q-48 0-58.5 12T794 920q0 41 4.5 80t11.5 77l15 78q7 39 12 80 54 0 69 28.5t26.5 71.5 72.5 76zm-294-167q4-2 9-2h9q-6-41-24.5-140T686 912q0-19 2-29-48-80-80.5-138.5T544 686q-29 0-48 10t-19 26q0 6 2 13l4 15q40 123 118.5 275.5T711 1244zm112.5-649.5Q829 667 837 741q6 0 12-1t14-1q44 0 73.5 17.5T985 800l4-13-14-98-14-116q-12-104-25.5-143.5t-18-43T904 383q-50 0-68 13t-18 54q0 72 5.5 144.5zM1312 868q3-7 7.5-16t6.5-18q0-48-1.5-93t-1.5-92q0-19 1-37t1-37l-3-86q-2-28-7.5-62.5t-15-41-37.5-6.5q-60 0-64.5 49.5t-10.5 108-6 146.5q46 6 76.5 36.5T1306 835zm810-311l2-9q0-3 1-6 0-10-27.5-22t-51.5-12q-22 0-40 40t-53 117-68 172q21 13 36 35 12-12 33.5-23.5T2007 837h15l15 2q0-5 38.5-105.5T2122 557zm-567 123q0 5-1 8.5t-1 8.5q52 12 81 50.5t29 85.5l8-9q20-91 36.5-181.5T1729 460q0-32-10.5-41.5T1686 409q-56 0-71 50.5t-24 79.5-18 76l-10 33q-5 16-8 32zm501 287.5q-25-22.5-49-22.5-9 0-26.5 19t-32.5 43l-15 23-4 13q-11 50-24.5 98.5T1877 1238q20 5 44.5 6.5t49.5 1.5q33-60 71.5-141.5T2081 1004q0-14-25-36.5z" + }, + "children": [] + }] +}; +exports.u1F35F = u1F35F; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F360.js b/dist/noto_emoji_regular/u1F360.js new file mode 100644 index 000000000..5df80b0a0 --- /dev/null +++ b/dist/noto_emoji_regular/u1F360.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F360 = void 0; +var u1F360 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2260 2202.5q-76 18.5-65 14.5l-58 18q-81 25-128 28t-137 16-173 13q-428 0-779-188t-508-407l-33-45q-27-35-27-42t-13-18.5-35-57.5-32-114q-6-35-6-67v-20q0-9-1-19t-1-21q7-112 17.5-138.5t35-77 30.5-81 35.5-81.5 71-97T561 724q89-63 215-110t236-47l17 1q31 0 65 2.5t73 2.5q82 0 142.5 29t84 56 69.5 64 118.5 114.5 116 116.5 115.5 136.5 141 227 78.5 152.5 25 93 50 111.5 44.5 75.5q77 268 130.5 304t53.5 72q0 59-76 77.5zM1299 1906q-41-46-136-46-47 0-73 12t-26 34q0 16 28 26t65 14l28 3q27 5 52 42.5t53 37.5q18 0 34-12.5t16-34.5q0-30-41-76zm121-1009q-12-44-49-93t-49-64-56-35.5-107-20.5q-36 0-71.5-3t-72.5-3q-119 0-261 64.5T538.5 888t-85 139-45 114.5T375 1292q0 143 43.5 217.5T566 1632t198 48q78 0 219-42t257-152 154-286 38-221q0-38-12-82zm299.5 977.5Q1680 1836 1634 1836q-24 0-50 18.5t-26 42.5q0 38 50 44t66 21l17 17q9 9 17.5 15.5t17.5 6.5q10 0 21.5-11.5t11.5-31.5q0-45-39.5-83.5zm35.5-336q-11-13.5-26-25.5l-29-23q-24-18-34.5-65.5T1622 1377q-18 0-27 20t-9 55q0 78 34.5 116t101.5 38q17 0 30.5-8.5t13.5-28.5q0-17-11-30.5zm313 497.5q-24-16-37-72.5t-50-56.5q-14 0-26 10t-12 30q0 57 35 99t92 42q10 0 16-5.5t6-13.5q0-17-24-33z" + }, + "children": [] + }] +}; +exports.u1F360 = u1F360; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F361.js b/dist/noto_emoji_regular/u1F361.js new file mode 100644 index 000000000..30368134e --- /dev/null +++ b/dist/noto_emoji_regular/u1F361.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F361 = void 0; +var u1F361 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2115.5 2390.5Q2091 2409 2063 2409q-19 0-40.5-15.5T1968 2339l-31-35q-58 34-124 54t-132 20q-101 0-178-48t-117.5-138-40.5-165q-119 0-206.5-53.5t-135-156T956 1630q0-5 1-10v-6q-152 0-251-64.5t-150-180-51-204.5q0-112 35.5-205.5T636 798l-41-46q-21-25-78-83.5T460 566q0-33 27.5-61.5T552 476q31 0 57 18t49 49l25 34 87 113q60-33 134-55.5t152-22.5q195 0 340.5 132.5T1542 1065q0 20-1.5 46t-7.5 46q142 31 237.5 139t95.5 250q0 19-3.5 38t-3.5 37q124 30 202.5 124.5T2140 1958q0 59-25 133t-67 123l32 39q16 19 38 41t22 49q0 29-24.5 47.5zm-681-477q33.5-14.5 62.5-24t74-55 72.5-122.5 27.5-155q0-108-44.5-190T1505 1255q-40 107-103 169.5T1248.5 1535t-192.5 68v14q0 7-1 15 0 55 32.5 133t97 120.5T1341 1928q60 0 93.5-14.5zM701 873q-45 57-71 131.5T604 1168q0 52 29 132t79.5 129 108 67 95.5 20 123-33 153-99.5 104.5-149.5 36.5-181q0-120-82-231.5T1053 710q-60 0-119 17t-105 42q20 22 38.5 47.5T886 866q0 34-28.5 55.5T797 943q-33 0-63-33.5T701 873zm743 1162q0 40 25.5 105t78 102 133.5 37q116 0 199.5-88.5T1964 1990q0-76-38.5-148T1823 1735q-33 81-79 125.5t-123.5 89.5-176.5 66v19z" + }, + "children": [] + }] +}; +exports.u1F361 = u1F361; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F362.js b/dist/noto_emoji_regular/u1F362.js new file mode 100644 index 000000000..91e90844a --- /dev/null +++ b/dist/noto_emoji_regular/u1F362.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F362 = void 0; +var u1F362 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1889 1936q34 42 68.5 83t68.5 83l26 33q12 16 26 30l38 40q19 21 19 49 0 21-22.5 40.5T2063 2314q-23 0-47-19t-110-116.5-121-132.5l-109 121q-102 115-198 174t-194 59q-151 0-250.5-112T934 2068q0-75 38-142t95-126q-74-26-125.5-79T858 1599q-42 32-81 51.5t-84 19.5q-94 0-181-68t-104.5-142-36.5-251.5T352 821q0-156 40.5-232T509 481.5 747 450q61 0 252 12t297 55 186 108 80 153q0 47-27.5 97T1455 977q93 29 159.5 88t96.5 156q50-36 107.5-56.5T1936 1144q123 0 217 89t94 207q0 108-102.5 224.5T1889 1936zm63-207q43-46 119.5-131t76.5-155q0-67-57.5-133.5T1936 1243q-55 0-109 23.5t-98 66.5l2 25q0 12 1 25 0 149-55 239.5t-174 148-266 57.5q-14 0-26-1l-26-2q-77 68-115 128t-38 116q0 66 42.5 117.5t90 83.5 119.5 32q75 0 155-52t183-172zm-633-753l51-53q42-43 68.5-80t26.5-65q-19-22-71.5-34T1245 732q-36 0-72-1l-155-4q-42 0-90-1-122 0-173 13.5T681 794t-23 130q0 136 18 282t28 245 54 99l73-58q68-53 251.5-256.5T1319 976zm134 595q-9-6-32-6-35 0-61 12t-26 34q0 8 6.5 16t19.5 8q12 0 22-5t21-5l15 1h7q10 0 23.5-12t13.5-26q0-11-9-17zm24.5-218.5q22.5 25.5 55.5 25.5 19 0 28-10.5t9-21.5q0-22-17-33t-23-22l-13-22q-6-10-12.5-18t-16.5-8q-12 0-22.5 13.5T1455 1293q0 34 22.5 59.5zM450 860q1 33 1 65 6 0 13-3.5t13-3.5q20 0 34 14.5t14 32.5q0 12-11.5 25t-36.5 13q-6 0-12-1.5t-11-3.5q5 141 21.5 264.5t25 165 52 84T659 1567q-23-34-27-69l-9-63q-14-128-28.5-253.5T580 924q0-84 16-131t42-75 63-44 131-23l88-2q43 0 87-1 59 0 190.5 4t164.5 9q-66-47-165-73.5T992 561q0 20-13 34.5T940 610q-18 0-25.5-11t-7.5-22q0-6 1.5-11.5T912 555q-42-3-83.5-5t-81.5-2q-119 0-178 18.5T479.5 638 449 795q0 32 1 65zm668 630l-1 13q0 17 4 27.5t13 10.5q20 0 34-23t14-56q0-34-24-52.5t-72-18.5q-28 0-28 19 0 24 30 37.5t30 42.5zm75 562q56 9 103 45.5t47 83.5q0 28-16 47t-49 19q-32 0-57.5-18.5t-33-52.5-49-52.5-41.5-43.5q0-14 21.5-21.5t51.5-7.5h14zM786.5 849.5Q798 830 821 830q21 0 30 14t9 32q0 24-14 48t-32 24q-15 0-27-17t-12-39q0-23 11.5-42.5zM1034 935q-20-2-36-16.5T982 887q0-8 8.5-20.5T1019 854q18 0 34.5 13t16.5 31q0 20-8 28.5t-28 8.5zM559 715.5Q548 703 548 680q0-20 9.5-36t26.5-16q20 0 31 14.5t11 35.5q0 27-15.5 38.5T582 728q-12 0-23-12.5zm329.5 393Q902 1122 902 1139q0 13-11 26t-36 13q-20 0-34.5-12.5T806 1136q0-18 14-29.5t35-11.5q20 0 33.5 13.5zm105-21Q985 1071 985 1051q0-17 8-31t25-14q20 0 30 15.5t10 32.5q0 15-10.5 32.5T1018 1104q-16 0-24.5-16.5zM532 1323q-9-16-9-36 0-18 8-32.5t25-14.5q20 0 30 15.5t10 33.5q0 16-10 33t-30 17q-15 0-24-16zm671.5-484.5q10.5-6.5 24.5-6.5 20 0 37 12.5t17 32.5q0 16-11 32t-31 16q-16 0-31.5-24t-15.5-40 10.5-22.5zm-346 510.5q-12.5 12-31.5 12t-36-10.5-17-26.5q0-19 17-29t38-10q15 0 28.5 7t13.5 25q0 20-12.5 32z" + }, + "children": [] + }] +}; +exports.u1F362 = u1F362; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F363.js b/dist/noto_emoji_regular/u1F363.js new file mode 100644 index 000000000..79d37d492 --- /dev/null +++ b/dist/noto_emoji_regular/u1F363.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F363 = void 0; +var u1F363 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2301 1654q14 61 14 123 0 151-77 247.5t-282 223-355.5 178T1305 2477q-110 0-260-36t-203.5-124-53.5-217q0-22 1-42.5t5-42.5q-54-5-87.5-45.5T673 1869q0-51 22-103t61-96q-228-29-306.5-116.5T371 1295q0-17 2-25-69-23-101-75.5T240 1078q0-78 38.5-150.5T447 765l68-47q219-158 444-243.5t414-85.5q72 0 159.5 14t278.5 72l46 16q77 27 102.5 78.5T1985 692v71q0 31-19.5 58.5T1890 880q9 48 9 101 0 54-11.5 107.5T1848 1189q206 21 307.5 73.5t153 117T2360 1517q0 37-15 75t-44 62zm-85.5 93q-1.5-19-3.5-37-42 19-80.5 37t-75.5 36l-71 36q-103 52-114.5 55.5t-172.5 94-199 109-84 18.5q-92 0-212-40.5T894 2015q-9 42-9 85 0 72 22 130t64 81 142.5 46 191.5 23q208 0 436.5-123t352-224 123.5-249q0-18-1.5-37zM625 1541l47 11q46 12 89.5 19.5T842 1582q86-75 236-169t249-129q0-29-1-57t-4-57q-26 16-76.5 42.5t-94.5 55-97.5 51.5-96.5 34.5-102 11.5q-97 0-235.5-34.5T470 1293q-2 4-2 11 0 60 17 114t45 80 95 43zm420-992q92 7 222 46.5t162 57.5l34 17q64-28 139-59t156-49q-97-31-191.5-53.5T1373 486q-84 0-167 18.5T1045 549zm841 142l-2-42q-7 0-19-1-59 0-139.5 24.5T1538 744q16 21 27 59t19 111q175-92 238.5-114.5T1886 763v-72zM970.5 1813q43.5-1 87.5-1 74 0 206.5 41.5T1427 1895q84 0 200.5-93t300-170.5T2177 1550t66-31q0-18-17-25.5t-40-7.5q-65 0-180 35t-243.5 103.5-211 128T1440 1812q-46 0-107-22t-149-38-162-16q-83 0-126.5 13t-43.5 39q0 17 13.5 21.5t30.5 4.5q31 0 74.5-1zm774.5-646q27-32 41-79t14-100q0-17-1-35t-3-35l-10 4q-51 24-100 49.5t-97 51.5l-1 95q0 22 1 43.5t1 44.5q33-8 66.5-12t68.5-6zM716 703q-98 57-171.5 110T419 914l37 7 167 34q205 43 230 53.5t44 10.5q6 0 9-1l6-1q52-33 109.5-81t114.5-84l68-44q-41-26-116-42t-193.5-40.5T731 701q-4 0-7 1t-8 1zm224 554.5q32-8.5 91.5-35T1189 1137l121-73q-8-59-15.5-102t-24.5-78q-40 23-76 49t-72 53l-75 57q-34 25-73 50t-77 25q-35 0-80.5-17t-140-35-184.5-39-140-21q-8 18-11 36.5t-3 35.5q0 84 72 100.5t211.5 52T855 1266q53 0 85-8.5z" + }, + "children": [] + }] +}; +exports.u1F363 = u1F363; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F364.js b/dist/noto_emoji_regular/u1F364.js new file mode 100644 index 000000000..eb0f4188a --- /dev/null +++ b/dist/noto_emoji_regular/u1F364.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F364 = void 0; +var u1F364 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2321.5 980.5q-37.5 50.5-88 85T2129 1133l-50 31q-25 16-51 27 17 25 23.5 50t6.5 51q0 36-13.5 67t-38.5 50q-3 46-25 78t-60 48q-16 43-44.5 77.5T1814 1662q-3 19-22.5 76t-44.5 85-50.5 44.5-56.5 23.5q-8 57-60.5 106.5T1465 2054l-5 10q-26 53-76 79t-128 26q-29 35-65.5 54t-69.5 19q-10 0-18-1l-15-2-15-1q-24 31-67 48t-87 17q-26 0-47.5-5.5T834 2283q-14 9-35.5 18t-44.5 9q-52 0-96-16.5t-70-47.5l-21 1q-62 0-109.5-29t-64.5-86q-40-8-68.5-46t-28.5-85q0-8 1.5-16t1.5-19q-29-23-44-56.5t-15-70.5q0-63 31.5-115t75.5-73q6-64 52-110.5t109-46.5q45 0 87 15 21-22 51-33t60-11q40 0 75 19 29-26 68-43.5t79-17.5q26 0 49 8 16-29 55-49.5t78-20.5q20 0 33 1t27 6q6-10 14-17l15-13 5-6q27-27 65.5-38.5t71.5-16.5q10-38 41.5-68.5t75.5-39.5q10-35 35-63t67-45q17-44 52.5-70t78.5-26q8 0 20 2.5t26 2.5q0-10-1-32 0-176 60.5-284T1939 546q28 0 52 21t45 21q14 0 34.5-10t35.5-10q63 0 121 41.5t58 97.5q0 22-7.5 36.5T2270 766q0 13 27 17t44.5 29 17.5 61q0 57-37.5 107.5zM1876 840q-6 29-6 54 0 17 4 27.5t15 10.5q27 0 59-56.5t32-102.5q0-20-9-34t-26-14q-20 0-37.5 26.5T1885 799zm56 525q29-3 42.5-25t13.5-49q0-30-19-57.5t-19-47.5l1-32q0-41-30-53.5t-37.5-10.5-22-29.5-69.5-31.5q-21 0-32.5 10.5T1744 1050q-5 0-9-2l-9-5q-6-3-14-5t-21-2q-28 0-51 27.5t-23 54.5q-33 0-62.5 25.5t-32 59.5-33.5 34q-26 0-48 13.5t-29 45.5l-7 31q-5 21-62 23t-89.5 31.5-39.5 47.5l-9 14q-4 6-13 6-10 0-17-3l-15-6q-9-3-20-5.5t-30-2.5q-23 0-48 15.5t-37.5 42-24.5 26.5q-15 0-36.5-12t-35.5-12q-34 0-68.5 21t-44.5 40.5-24 19.5q-10 0-32-18.5t-53-18.5q-41 0-62 25t-32 25q-14 0-23-4l-20-7q-12-4-26-7.5t-35-3.5q-24 0-57.5 23.5T417 1680q-3 27-24.5 28t-51.5 40.5-30 91.5q0 32 17.5 55t30 26.5T371 1951q0 14-2 27.5t-2 26.5q0 50 45 58t46 36 29 52.5 80 24.5h8q8 0 18.5-5.5t21.5-5.5q4 0 8 5.5t9 12.5l9 15q12 18 41 29.5t66 11.5q20-2 47-17.5t37-15.5 18 4l18 9q10 5 22 9t29 4q34 0 62-12t39-31l8-12q4-6 9.5-10.5t13.5-4.5q22 0 36.5 4.5t33.5 4.5q22 0 54.5-22t38.5-48q122 0 156.5-34.5t33-58.5 47.5-24q38-2 78-35t40-65v-10q0-17 9.5-29.5t45.5-23 67-43 33.5-60 10.5-40.5 8-24-2-21-2-24q48 0 82.5-42t34.5-69l-1-5q0-19 40.5-26t40.5-76q0-6-2-12t-2-14zm236.5-499q-13.5-8-24.5-8-42 0-86.5 40t-44.5 82q0 6 7.5 9t14.5 3q34 0 90.5-36t56.5-65q0-17-13.5-25z" + }, + "children": [] + }] +}; +exports.u1F364 = u1F364; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F365.js b/dist/noto_emoji_regular/u1F365.js new file mode 100644 index 000000000..ab7e6be73 --- /dev/null +++ b/dist/noto_emoji_regular/u1F365.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F365 = void 0; +var u1F365 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2118 1743q14 47 14 77 0 58-43 94.5t-83.5 47.5-42 64-48 105.5T1784 2184q-17 0-32-1t-27-1q-27 0-47 9t-42 39l-4 7-14 19q-18 23-47.5 39.5T1503 2312q-65 0-119-39t-76-39q-12 0-23.5 6t-21.5 14l-21 17q-26 23-55 33.5t-58 10.5q-58 0-105.5-38t-71-87.5T851 2140q-133 0-210.5-57.5T563 1914q0-26 1-52.5t6-53.5q-87-58-121.5-114T414 1578q0-65 55-135t56-72q-2-7-7-20l-8-20q-5-15-30-61t-25-85q0-50 30.5-86t142.5-80q2-9 2-22v-40q0-111 50.5-166.5T825 735q17 0 31.5 1t29.5 1q0-49 44-113.5t124-64.5q32 0 69 13.5t73 33.5l40 24q14-3 71-44t125-41q49 0 87.5 27.5T1575 633l27 48q11 0 29.5-3t42.5-3q72 0 119.5 28t88.5 117l25 54q12 28 31 49.5t56 38.5l30 15q45 23 87.5 98t42.5 122q0 29-28 79.5t-28 86.5q0 40 43.5 83.5t43.5 90.5q0 39-21 72t-40.5 51-19.5 32q0 4 14 51zm-124-345q-14-15-32-29l-35-27q-19-15-25-31.5t-6-29.5q0-37 41-91.5t41-93.5q0-23-19.5-37t-54.5-24q-42-11-94-25t-52-110q0-20 1-38v-32q0-30-17-43t-68-13q-19 0-38 2t-39 2q-46 0-62-20.5t-40-67-63-46.5h-10q-26 3-87 44.5T1232 730q-14 0-34-12l-43-25q-23-13-49-24.5t-52-11.5q-24 0-43 21t-27.5 70.5-30.5 68-64 18.5l-31-1h-33q-51 0-72 18.5T732 928q0 93-15.5 134.5t-88.5 62-73 63.5q0 23 17 50t34 68.5 17 65.5q0 42-55.5 102.5T512 1577q0 32 42 53.5t81 52.5 39 79q0 18-5.5 47.5T663 1867l-1 51q0 20 17.5 27.5t42.5 7.5q42 0 82.5-1t69.5-1q59 0 90.5 82t83.5 82q34 0 87-44.5t82-44.5q34 0 100 42.5t106 42.5q29 0 43.5-25.5t48.5-69 84-43.5q26 0 53.5 4.5t53.5 4.5q46 0 64-23.5t18-88.5q0-58 26.5-74.5t84-32 57.5-52.5q0-12-6-31l-28-79q-7-19-7-31 0-27 46.5-67t46.5-72q0-18-14-33zm-405 353.5Q1448 1899 1200 1899q-180 0-306.5-117T767 1453q0-148 84.5-284T1077 961.5t308-71.5q136 0 202.5 38.5t66.5 72.5q0 10-5.5 13.5t-14.5 3.5q-24 0-100-13t-138-13q-179 0-324.5 128.5T926 1425q0 147 85 231.5t225 84.5q128 0 233-89.5t105-210.5q0-86-53-139t-144-53q-48 0-110.5 35t-62.5 88q0 27 22 46t48 19q27 0 46.5-25.5t49.5-25.5q29 0 55 27t26 58q0 56-62 94t-135 38q-72 0-135.5-39.5T1055 1423q0-145 96.5-230t243.5-85q83 0 176.5 44t126 125 32.5 156q0 171-141 318.5z" + }, + "children": [] + }] +}; +exports.u1F365 = u1F365; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F366.js b/dist/noto_emoji_regular/u1F366.js new file mode 100644 index 000000000..8263455f9 --- /dev/null +++ b/dist/noto_emoji_regular/u1F366.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F366 = void 0; +var u1F366 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1901.5 1609.5Q1851 1676 1756 1718l-13 199-2 21q-2 20-11 32.5t-29 12.5q-46 0-59.5 12t-18.5 33l-7 44q-5 33-11 77l-34 252q-4 29-5 33l-3 12q-4 15-16.5 24t-34.5 9h-88q-33 0-72 1h-82q-60 0-116-1h-90q-20 0-32.5-10.5T1015 2444l-3-10q0-4-4-32t-10-71l-38-259-7-44q-6-30-29-37.5t-54-7.5q-16 0-24-11t-10-31l-2-24-14-214q-89-48-130.5-109.5T648 1454q0-64 21-119t21-67q0-18-17-62.5t-17-92.5q0-84 33-137.5t56-71.5 23-29q0-19-13.5-46T741 758q0-108 97.5-201T1079 437.5t202.5-84T1341 224q0-16-3.5-32.5T1334 162q0-15 15.5-26.5T1407 124q121 0 207 123.5t86 244.5q0 26-5 49.5t-14 45.5q68 19 113.5 85t45.5 140q0 43-13 74.5t-31 57.5q62 32 105 95.5t43 128.5q0 29-17 83.5t-17 57.5q0 8 7.5 15t21 44 13.5 86q0 89-50.5 155.5zm-73.5-213q-6-10.5-22-10.5-11 0-66 26.5t-110 26.5l-17-1q-30-2-46-7.5t-16-14.5q0-19 74-44.5t138-89.5 64-128q0-49-38-91t-63-42q-14 0-90 34.5t-133 34.5q-24 0-48.5-7t-24.5-22q0-32 78-53.5t151-74 73-127.5q0-46-25.5-88t-50.5-42q-13 0-22.5 10t-44.5 27.5-78 17.5q-11 0-20.5-5t-9.5-17q0-20 34.5-53.5T1573 567t23-105q0-63-32-119l-18-31q-18-29-41-49t-47-20q-8 0-14 2l-10 3q2 7 3 14.5t1 14.5q0 72-47 136.5T1184.5 516 948 610t-77 140q0 47 25.5 75.5T922 864q0 26-73.5 98.5T775 1131q0 46 27.5 91t27.5 66q0 22-24 56t-24 84q0 118 122.5 185.5T1284 1681q208 0 331-44t171-111 48-108q0-11-6-21.5z" + }, + "children": [] + }] +}; +exports.u1F366 = u1F366; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F367.js b/dist/noto_emoji_regular/u1F367.js new file mode 100644 index 000000000..6cec4a10c --- /dev/null +++ b/dist/noto_emoji_regular/u1F367.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F367 = void 0; +var u1F367 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2337.5 1341q-107.5 42-195 125.5T2006 1621q12 42 12 84 0 141-125 306t-325 231q15 20 24.5 42.5t9.5 45.5q0 72-100 135t-264 63q-176 0-299-51.5T816 2313q0-23 11.5-44t29.5-38q-252-65-367.5-234.5T374 1678q0-46 11.5-89t38.5-81q0-78 30-167t79.5-173 78.5-150l60-138q30-68 63.5-135T816 617l67-88q62-81 158-130.5t203-49.5q124 0 245.5 58.5t190 160.5T1786 869l19 102q17 93 37 168.5t51 167.5l47 142q57-98 174-208t199-110q57 0 94.5 39t37.5 77q0 52-107.5 94zm-1589 403q191.5 97 506.5 97 144 0 261-28t196.5-76 103.5-90 24-97q0-73-44-176t-49-116q-44 0-61 13t-22.5 66.5-41.5 78.5-73 25q-45 0-77-29.5t-42.5-71.5-31.5-69.5-47-27.5q-13 0-23 7.5t-18 17.5l-16 20q-16 21-39 30.5t-48 9.5q-59 0-92.5-32.5t-52-107T998 1114q-36 0-81 44t-85 44q-54 0-68.5-54t-46.5-54q-10 0-31 43.5T611 1279t-54 182q0 186 191.5 283zm706 550.5Q1440 2280 1424 2280q-9 0-19 2l-18 4q-22 3-42.5 3t-42.5 1q-162 0-221-11.5t-61-11.5q-20 0-41 20t-21 37q0 43 86.5 67t179.5 24q151 0 198-31.5t47-59.5q0-15-14.5-29.5zM1848 1892q20-24 32-47t12-43q0-11-1.5-18.5t-9.5-7.5l-9 2q-5 1-25.5 24t-98 68.5-191 73.5-317.5 28q-263 0-450.5-57.5T534 1770l-12-14q-6-7-12.5-12t-13.5-5q-15 0-15 17 0 7 3 16t7 17l12 27q46 105 144.5 190.5t280.5 124 342 38.5q192 0 322.5-61t232.5-188z" + }, + "children": [] + }] +}; +exports.u1F367 = u1F367; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F368.js b/dist/noto_emoji_regular/u1F368.js new file mode 100644 index 000000000..abc801f7a --- /dev/null +++ b/dist/noto_emoji_regular/u1F368.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F368 = void 0; +var u1F368 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2416 638.5q-30 35.5-51 67.5t-60 76l-68 77-75 88q-39 45-67.5 85t-55 65.5-47.5 59.5l-9 14q-6 9-6 14l20 49q16 38 44.5 48t50 26 37 39 24 54 8.5 71q0 103-45 229t-140 216-213 141.5-154 57.5-36 21q0 10 24.5 43t24.5 87q0 107-118.5 180t-316.5 73q-160 0-286.5-68.5T774 2267q0-25 8-51.5t17-38.5l10-13q5-7 9-13.5t4-12.5q0-17-36.5-22.5t-154-57-210-139-140-214T234 1472q0-80 33.5-126t77-59 59.5-65.5 81-155.5 152-181l6-5q131-110 274-160.5t285-50.5q94 0 183 21t170 59q26-26 45.5-57t47.5-62.5 56-69.5l54-74h-1q80-110 165-201.5t129-91.5q46 5 103 52.5t174.5 157T2446 576q0 27-30 62.5zM2138 410l-27-19q10 28 15 56.5t13 56.5q20-5 39.5-7.5t42.5-6.5q-25-29-46.5-49t-36.5-31zm-273 485q-22 5-42.5 6.5T1780 906q29 28 54.5 59.5t49.5 64.5l-10-66q-5-33-9-69zm81-119q35-6 70-14t69-14q-3-32-10-62.5t-12-62.5q-37 6-72.5 13.5T1918 648q2 32 11 63.5t17 64.5zm79-405q-35 34-66 69.5t-67 75.5q2 9 5 17.5t5 16.5q37-5 72.5-12t69.5-17q-5-32-12-72.5t-7-77.5zm-252 293l-55 72q-28 36-55 73l26 19q39-9 78-16.5t79-11.5q-7-38-15-72t-12-71q-9 2-20 3zM634.5 1544.5q142.5 35.5 285 44.5t271.5 9q247 0 425-25t233-68.5 55-124.5q0-194-202.5-391.5T1193 791q-223 0-376 101.5T578 1130t-86 250q0 129 142.5 164.5zm826 649Q1417 2165 1365 2165q-43 0-85 3.5t-84 3.5-82.5-3.5-83.5-3.5q-51 0-94.5 28.5T892 2267q0 50 102 84t204 34q116 0 211-31.5t95-86.5q0-45-43.5-73.5zM818 1704q-129-20-238.5-58.5T442 1587l-23-16q-12-7-21.5-12.5T381 1553q-11 0-15 5t-4 13q0 12 34 94.5t133.5 172 277.5 147 382 57.5q223 0 407.5-61.5T1878 1828t126-168.5 29-89.5q0-7-3.5-12t-14.5-5q-13 0-36.5 20t-134.5 62.5-276.5 65.5-350.5 23q-270 0-399-20zm1159-745q20-25 41-50l44-52q-23 5-48.5 12t-48.5 7q4 22 6 42t6 41zm204-240q3-3 47-54t48-79q-29 4-59.5 11t-59.5 7q0 12 2 22.5t5 22.5z" + }, + "children": [] + }] +}; +exports.u1F368 = u1F368; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F369.js b/dist/noto_emoji_regular/u1F369.js new file mode 100644 index 000000000..ac8e62d98 --- /dev/null +++ b/dist/noto_emoji_regular/u1F369.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F369 = void 0; +var u1F369 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2363 1896.5q-55 139.5-202.5 288.5t-356 224.5T1288 2485q-236 0-437.5-62.5t-360-210-233.5-339-75-368.5q0-330 200.5-583.5t457-359.5T1378 456q158 0 305.5 41.5t321 144.5T2279 886.5t120 347.5 19 321q0 202-55 341.5zm-859-544q-51-33.5-125-33.5-90 0-166 31.5t-76 82.5q0 54 58.5 87t137.5 33q90 0 156-31t66-85q0-51-51-84.5zm171 93.5q0 11-1 17 36-42 60-98t24-110q0-78-53-140.5t-127-62.5q-51 0-115 42.5t-149 42.5q-46 0-106.5-32t-99.5-32q-71 0-119.5 66T940 1282q0 69 53 140.5t58 78.5q-7-15-11-31.5t-4-35.5q0-103 96-159t242-56q135 0 218 72.5t83 154.5zm589 357q-32 33-58 44t-55 11q-24 0-47-3.5t-49-3.5q-104 0-152 112t-114.5 140.5T1652 2132q-86 0-134.5-31.5T1412 2020t-115-49q-29 0-84 13t-121 62.5-105.5 64T910 2125q-94 0-149.5-67t-61-172-43.5-141.5-156-42T297 1562q7 104 63 253t154 258 229 169.5 280.5 90.5 303.5 30q245 0 458-74t321-202 158-284z" + }, + "children": [] + }] +}; +exports.u1F369 = u1F369; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F36A.js b/dist/noto_emoji_regular/u1F36A.js new file mode 100644 index 000000000..c3f851f16 --- /dev/null +++ b/dist/noto_emoji_regular/u1F36A.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F36A = void 0; +var u1F36A = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2260 1506q0 23 1 47 0 108-23 214.5t-78 208-138 165-180.5 129-199 89.5-251.5 24q-112 0-289.5-20.5t-320-100.5-241-196T390 1807t-52-297q0-163 45.5-350.5t186-352 323-242.5 403.5-78q274 0 482 90t325.5 305.5T2256 1460zm-197.5-412Q1986 845 1832 732q-22 10-45 23.5t-41.5 18.5-33.5 12l-27 12q-13 6-25 10t-24 4q-25 0-37-34.5t-12-79.5l2-40q0-10 1.5-18t4.5-12q-60-14-122.5-18t-120.5-4q-123 0-243.5 23.5t-227.5 76-186.5 146-134.5 198-72.5 228T470 1524q0 213 89.5 352.5t229.5 237 345 125.5q-49-35-75-69.5t-26-61.5q0-22 47-56.5t85-34.5q33 0 86 50t53 75q0 26-33.5 55t-79.5 49q54 6 108.5 11t110.5 5q175 0 302.5-69t223.5-150.5 149.5-223T2139 1502q0-159-76.5-408zm-73.5 159q0 27-28.5 40t-94.5 13q-36 0-54.5-13.5T1783 1224t-10-99q0-18 39.5-30.5t85.5-12.5q25 0 38 14t32 66.5 21 90.5zm-784.5-173q3.5 20 3.5 40 0 64-21 71t-67 20-125 13q-28 0-38-17.5t-10-67.5l1-31q2-74 19.5-82t87-24 88.5-16q31 0 44.5 18t13.5 37 3.5 39zM866 1583q14 3 22 21.5t8 30.5q-2 50-20 85.5t-92 35.5q-57 0-91-16.5t-34-49.5q0-23 10-42t23-48 51-29q29 0 58.5 3.5t58.5 7.5zm898.5 213.5q-22.5 42.5-51 50t-61.5 7.5l-25-1q-47 0-63.5-11.5t-49-54-32.5-70.5q0-24 33-51.5t59.5-51 61.5-23.5q53 0 102 56t49 84q0 23-22.5 65.5zm-95 354.5q-21.5 16-45.5 16t-47-10-23-29q0-23 25.5-39.5t54.5-16.5q23 0 40 11.5t17 28.5q0 23-21.5 39zm204.5-221q21 9 21 26 0 21-15.5 30t-35.5 9q-25 0-45.5-10t-20.5-27q0-10 9.5-23.5t36.5-13.5q29 0 50 9zm144-213q25 7 25 28 0 23-17 32t-35 9q-24 0-40.5-12t-16.5-27q0-18 17-26t37-8q8 0 16 1zm-676 202q-13 11-34 11-26 0-43.5-13t-17.5-31q0-22 20-31.5t44-9.5q26 0 35 10t9 28q0 25-13 36zm350-508q19-9 40-9 23 0 35.5 8.5t12.5 27.5q0 23-16 30t-34 7q-27 0-42-10t-15-27q0-18 19-27zm315.5 118.5Q1986 1547 1961 1547q-13 0-26.5-9t-13.5-30q0-23 20.5-36.5t43.5-13.5q20 0 32 10.5t12 24.5q0 19-21.5 36.5zM1483 1175q-13-8-13-22 0-18 18-32.5t40-14.5q20 0 31 11.5t11 24.5q0 17-15 29t-38 12q-21 0-34-8z" + }, + "children": [] + }] +}; +exports.u1F36A = u1F36A; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F36B.js b/dist/noto_emoji_regular/u1F36B.js new file mode 100644 index 000000000..920c137e2 --- /dev/null +++ b/dist/noto_emoji_regular/u1F36B.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F36B = void 0; +var u1F36B = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2411 1045q11 9 16 21.5t5 26.5q0 11-3 24.5t-251.5 271-340 359T1707 1884l64 124 59 113q7 16 38.5 72.5t31.5 74.5q0 20-20 53.5t-45.5 51-56.5 38-49 20.5q-31 0-59.5-28t-59.5-28q-10 0-18 1l-16 3q-32 5-60.5 6.5t-68.5 1.5q-14 0-28.5-1t-27.5-4q-4 2-12.5 11t-17.5 20l-17 20q-42 50-97 107.5t-104 57.5q-36 0-121-61.5T898 2431t-239.5-222T373 1930.5t-145.5-172T167 1650q0-17 9-31l21-35q39-58 110-137t98.5-119 79-86 99-93 96.5-47q13 0 26.5 1t27.5 3l9-8q241-261 499-530t275.5-286.5T1560 264t47 19zM1300 2292.5q-2-12.5-5-27.5l-10-45-11-61q-5-36-31.5-55t-88-27.5T1052 2061t-56-25-19.5-47-15.5-62-26.5-87-39.5-75-78-28-67-17.5-22-62.5l-10-67q-4-89-21-223.5T638 1232q-11 0-22.5 9t-26.5 25l-14 14q-41 42-69.5 79t-117 137.5T300 1642q0 43 100.5 159T640 2044.5 825 2221l62 65q65 69 138.5 127t104.5 58q41-2 73-33.5t65.5-72 33.5-57.5q0-3-2-15.5zm91-457.5h-26q-42 0-64-6.5t-49-63-49-96-76-66.5-105.5-45.5-61.5-59-23-64.5l-44-81q-16-30-55-70.5t-60-40.5q-11 0-11 11 0 5 3 11l5 14q19 31 26.5 83.5t8.5 82.5l1 42q2 61 10.5 110t22.5 51l38 8q51 10 80 23t47 37.5 27.5 68 19 93.5 18.5 72 17.5 25.5 51.5 8.5q88 0 128.5 9.5t51.5 9.5l6-1q25 0 30 49t26 107.5 32.5 93 33.5 34.5q84 0 125.5-8.5t53.5-8.5q20 0 42 16.5t39 16.5q24 0 44.5-18t20.5-34q0-23-37-65t-93-166-111.5-150.5T1391 1835zm746-933q11-13 11-27 0-16-11.5-27.5T2110 836q-17 0-30 13l-274 296-254-240 259-278q11-13 11-28t-11.5-27-28.5-12q-16 0-28 12l-259 279-181-171q-11-11-26-11-17 0-28.5 12t-11.5 29q0 8 3 15.5t9 12.5l181 171-305 330-167-157q-14-11-29-11-14 0-26 11.5t-12 26.5q0 17 12 29l168 159-70 75q10 19 22 37l21 33 84-90 253 239-70 74q6 9 17.5 31.5t34.5 29.5l76-81 137 130q30 9 49 20t41 40q14-5 22-14t8-23q0-15-12-29l-192-182 305-330 179 169q9 9 26 9t28-11.5 11-26.5q0-17-12-29l-178-169zm-638 62l253 238-307 332-253-240z" + }, + "children": [] + }] +}; +exports.u1F36B = u1F36B; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F36C.js b/dist/noto_emoji_regular/u1F36C.js new file mode 100644 index 000000000..476486c42 --- /dev/null +++ b/dist/noto_emoji_regular/u1F36C.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F36C = void 0; +var u1F36C = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2461 1036q-49 47-136 77l-69 24q-141 47-242.5 54t-101.5 34l1 6q40 146 40 239 0 168-79.5 301.5t-199 201T1360 2040q-117 0-187-18.5t-83-18.5q-14 0-20.5 8t-6.5 19v13q-9 144-124 337t-209 193q-37 0-73-29t-80-127.5-71-112-80-21-101-46.5-48-111q0-75-93.5-135.5T90 1856q0-71 87-133t301-65q34 0 68 2l68 4 34 5q20 4 40 4 17 0 30-5.5t13-22.5q0-10-3-21l-5-20q-8-44-12-78t-4-79q0-246 162.5-424.5T1344 844q86 0 158.5 17.5T1578 879q18 0 25-17.5t7-43.5q0-73 48.5-238.5t109.5-233 124-67.5q79 0 112 81.5t50.5 115T2152 533l46 14q72 22 99 111.5t47.5 108.5 93 69 72.5 106q0 47-49 94zM773.5 1913q74.5-49 74.5-80 0-11-12-19.5t-40-8.5q-79 0-132.5 26.5T610 1904q0 21 17.5 39.5T664 1962q35 0 109.5-49zm154 5.5Q919 1904 899 1904q-18 0-62.5 51t-44.5 86q0 25 14.5 42t34.5 17q38 0 66.5-55.5T936 1951q0-18-8.5-32.5zM1836 780q-19-20-44-20-38 0-62 43.5T1706 938q0 24 5 41t21 17q37 0 80-61.5t43-101.5q0-33-19-53zm175.5 185q-15.5-16-41.5-16-33 0-98 41.5t-65 71.5q0 11 12.5 19t43.5 8q62 0 113-20t51-59q0-29-15.5-45z" + }, + "children": [] + }] +}; +exports.u1F36C = u1F36C; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F36D.js b/dist/noto_emoji_regular/u1F36D.js new file mode 100644 index 000000000..c23ce4779 --- /dev/null +++ b/dist/noto_emoji_regular/u1F36D.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F36D = void 0; +var u1F36D = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2303.5 1545q-102.5 188-283 289.5T1600 1936q-210 0-424.5-94.5t-338-254.5T714 1232q0-49 16-89.5t41-40.5q27 0 32.5 41t55.5 147.5 164 214 275 163.5q117 42 243 42 163 0 308-73t231-202 86-278q0-147-82.5-291.5t-216-230T1587 550q-219 0-343.5 111.5T1119 975q0 167 112.5 291.5T1506 1391q111 0 192.5-69t81.5-171q0-79-59-150.5T1588 929q-34 0-49.5 13.5T1523 975q0 39 71 68t71 100q0 58-57 97t-127 39q-107 0-181.5-92.5T1225 976q0-149 99-240.5t253-91.5q118 0 230.5 69.5T1989 898t69 233q0 221-163 350t-396 129q-255 0-440-191.5T874 961q0-174 93-316t254-220.5 342-78.5q218 0 415.5 106T2291 744.5t115 410.5q0 202-102.5 390zM962 1857q9 7 9 19 0 16-13 29.5t-24 23.5l-54 57q-86 85-263 269t-222.5 230.5T295 2532q-46 0-74-30t-28-75q0-41 32.5-69t36.5-31l171-158q390-360 410.5-377t29.5-17q10 0 16 7l11 15z" + }, + "children": [] + }] +}; +exports.u1F36D = u1F36D; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F36E.js b/dist/noto_emoji_regular/u1F36E.js new file mode 100644 index 000000000..f1d83929a --- /dev/null +++ b/dist/noto_emoji_regular/u1F36E.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F36E = void 0; +var u1F36E = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2502 1686q0 234-179 415.5t-475.5 266T1240 2452q-300 0-574.5-86T244 2122.5 97 1749q0-147 77-271t300-240q11-49 24-98l25-97 24-97q19-77 38-107.5t34.5-56.5 47-61.5T742 652t90-58 97-45 111-35 127-22.5 135-7.5q121 0 243.5 26.5T1779 590t187 158 101 258l32 187q182 85 290 214.5t113 278.5zm-1306-513q-12 4-12 21 0 18 54.5 28t143.5 10q192 0 354-83.5T1898 967q0-13-4-24t-14-11q-15 0-27 19t-89 78.5-208.5 99.5-337.5 40q-10 0-22 4zm-601 9q-7 29-47 174.5T508 1605q0 142 120.5 246T962 2009t403 54q165 0 283-31t204.5-89.5 139-146T2044 1563q0-120-19-236t-44-233q-22 30-44 57l-46 55q-44 55-67.5 115.5T1788 1483t-86 101q-60 0-102-80t-86.5-102-225.5-32-286-44.5-217.5-90T615 1102zm1711 304.5q-59-95.5-182-176.5 14 69 25.5 141.5T2161 1595q0 209-119.5 328t-290 188-418.5 69q-200 0-426-59t-356.5-166.5T407 1700l-2-30q0-15-1-29 0-72 11.5-142t28.5-142q-9 8-18 14l-19 12q-92 69-133 154.5T233 1712q0 185 130 321t374.5 209.5T1248 2316q288 0 554.5-76.5t414.5-230 148-325.5q0-102-59-197.5z" + }, + "children": [] + }] +}; +exports.u1F36E = u1F36E; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F36F.js b/dist/noto_emoji_regular/u1F36F.js new file mode 100644 index 000000000..0c6eb1f81 --- /dev/null +++ b/dist/noto_emoji_regular/u1F36F.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F36F = void 0; +var u1F36F = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2170 2107q-118 202-348.5 308.5T1300 2522q-318 0-549-119t-335.5-327T311 1622q0-194 62-379t137-295q-25-29-39.5-83.5T456 761q0-110 81.5-212t202-171 260-104 281.5-35q248 0 442 58t328 170.5T2185 740q0 60-26 114t-71 92l22 36q72 119 125 288.5t53 351.5q0 283-118 485zM584 1015q-25 39-44 79l-39 83q20 44 59 67t147 29.5 144.5 88 80.5 111 98 29.5q37 0 122-26t133-26q65 0 98.5 52t33.5 164q0 164 35 215t107 51q66 0 103-60.5t37-168.5q0-37-1.5-76t-1.5-76q0-133 44-183.5t133-50.5q42 0 89.5 8t95.5 8q23 0 45-3.5t42-14.5q-23-86-60.5-169.5T2013 1011l-10-1-22 13q-27 16-45.5 23.5t-33.5 7.5q-11 0-23.5-7.5T1866 1025q0-25 46.5-58.5t92-100.5 45.5-133q0-82-78-173t-277-146-363-55q-189 0-371.5 51t-283 156T577 772q0 59 39 112.5T719.5 972t64.5 60q0 13-17 21.5t-39 8.5q-25 0-48.5-9t-46.5-17l-26-9q-12-4-23-12zm387-476.5q128-61.5 325-61.5 80 0 196.5 24.5t185.5 75 69 121.5q0 98-111 160.5T1329 921q-192 0-339-53T843 714q0-114 128-175.5zm51 209.5q49 31 119 47t170 16l32-1q112-5 182.5-20.5T1596 748q0-38-84.5-61.5T1307 663q-96 0-190.5 26t-94.5 59z" + }, + "children": [] + }] +}; +exports.u1F36F = u1F36F; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F370.js b/dist/noto_emoji_regular/u1F370.js new file mode 100644 index 000000000..ef66e9b1e --- /dev/null +++ b/dist/noto_emoji_regular/u1F370.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F370 = void 0; +var u1F370 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2337 1685v36q0 127-21.5 205t-64.5 115l-22 20q-166 135-440 230t-510 144.5-523 49.5q-45 0-68-1l-90-3q-150-4-225-56t-92.5-163.5T263 1929q0-268 76.5-426.5T584 1143t428-396q57-173 214.5-325.5T1545 269q155 0 249.5 162.5T1910 755q51 44 97 90l93 95q114 122 156 200.5t61 178 19 257.5q0 6-1 12.5t-1 13.5q0 12 1 24.5t1 25.5zm-612-713q0-19-7-33.5t-17-14.5q-29 0-59.5 43t-30.5 77q0 22 14 33t31 11q31 0 50-29.5t19-69.5v-17zm-125-335l-1 21q0 46 18 71t38 25 36-16 16-39q0-21-8-40t-20-35l-8-11q-9-11-21-20t-21-9q-14 0-21.5 16.5T1600 637zm-181.5 207.5Q1397 886 1397 914q0 27 15.5 44.5T1451 976t37.5-26 14.5-58q0-30-10.5-59.5T1466 803q-26 0-47.5 41.5zM1360 526q-14 13-28 35.5t-14 42.5q0 23 14.5 39t34.5 16q29 0 49-36t20-83v-13q0-13-6.5-22t-17.5-9q-8 0-18.5 5t-24.5 17zm-208 436q16 19 41 19 21 0 33-17t12-50q0-27-17.5-67t-34.5-40q-19 0-34.5 36.5T1136 908q0 35 16 54zm-675.5 638q45.5 14 104.5 14 34 0 353.5-30.5t547-93T2006 1311l36-15q29-13 49.5-34t20.5-51q0-50-50-120t-147-170q-19 177-137 266t-318 89q-175 0-322.5-97.5T990 922q-171 144-281.5 260.5T565 1345l-28 40q-11 17-44.5 53t-47.5 72-14 48q0 28 45.5 42zM466 2152h44q39 0 78.5 3t78.5 3q122 0 239.5-11.5T1141 2117l28-4q32-4 62-69t87.5-99.5T1452 1910q50 0 101 13t100 35l34 15q17 8 34 8 16 0 23-6t105.5-44 199.5-98l17-9 21-13q11-6 19-12.5t8-10.5q-15-3-27-4l-38-1q-17-2-31-7l-30-10q-22-8-43-20.5t-45-12.5q-23 0-64 18t-218 68.5-357 81-199 32-45.5 20.5-66.5 75-92 80.5-106 24.5q-71 0-129-39.5t-76.5-72.5-81.5-37h-16q-56 0-66 9.5t-10 58.5q0 44 21.5 72t71.5 28zm1718-266l4-16q0-7 1-13 0-7-1-8t-6-1q-26 6-81.5 42.5T1858 2010t-548.5 156-647.5 73q-25 0-49-1l-50-2q-31 0-63-5t-62-5q-14 0-26 6t-12 20q0 19 27.5 51t92 49 198.5 17q406 0 916-161.5t550-321.5zm18-487q-10-36-28-36-16 0-54.5 33.5t-270 121.5-559 145-689.5 57q-33 0-64.5-3t-74.5-3q-39 0-59.5 13.5T375 1796l-7 65q0 32 19.5 43t48.5 11q20 0 39-2t33-2q22 0 42.5 1t41.5 1q171 0 333.5-21.5t293-52 335-80.5 350-103 227-105.5 81.5-80.5q0-35-10-71z" + }, + "children": [] + }] +}; +exports.u1F370 = u1F370; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F371.js b/dist/noto_emoji_regular/u1F371.js new file mode 100644 index 000000000..afdd77dd0 --- /dev/null +++ b/dist/noto_emoji_regular/u1F371.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F371 = void 0; +var u1F371 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2444 1415q15 26 19 49t4 48q0 20-3 37.5t-6 28.5l-65 216q-9 33-40.5 61.5T2278 1902L834 2534q-18 8-35.5 10t-31.5 2q-41 0-70.5-16.5T655 2494l-10-16-464-907q-24-47-36.5-104T132 1361v-246q0-82 50.5-129.5t260.5-135T882 671l557-220 211-82q32-13 59-18.5t49-5.5q35 0 69 16.5t49 44.5zm-425-421h-9q-41 0-53.5 37.5T1919 1069q-24 0-60.5-37.5T1787 994q-18 0-32.5 12.5T1740 1048q0 11 2.5 22.5t2.5 22.5q0 9-2 11t-11 2q-18 0-34.5-5t-31.5-11l-31-10q-16-5-32-5-33 0-55.5 16.5T1525 1139q0 19 11.5 44t30.5 25q11 0 23-4l21-7q31-8 64-11.5t66-3.5q26 0 88 9.5t84 19.5l28 12q16 7 25 7 17 0 64.5-42.5t47.5-89.5q0-32-19-66.5t-40-37.5zm-267.5-219.5Q1706 860 1706 889q0 12 6 21t24 9q33 0 76.5-23t88-48.5T1945 774q0-35-23.5-60t-62.5-25q-62 0-107.5 85.5zm-153.5-15q18 53.5 54 53.5 20 0 33-19t20-52l5-27 6-36q3-18 3-36 0-31-16.5-54.5T1659 565q-32 0-55.5 27.5T1580 668q0 38 18 91.5zM1118 887q34 59 49 59 11 0 46.5-27.5T1304 891q21 0 62 16t41 36q0 10-22 17.5t-37 7.5q-59 6-98.5 19t-39.5 34q0 27 28 60.5t46 33.5q11 0 25-6.5t56-20.5 134-65 102-56.5 14-13 4-22.5q0-24-24-68t-81.5-51.5-61.5-42-21-68-60-33.5q-32 0-52.5 14.5t-29 50T1267 768q-10 0-15-2l-14-5q-9-3-23.5-5t-41.5-2q-25 0-57 17t-32 41q0 16 34 75zm344.5 915q-13.5-29-40.5-31t-27-23q0-19 4-36t4-36q0-34-18-56.5t-45-36.5l-12-5q-14-6-21.5-13t-7.5-16q0-13 11.5-29.5t11.5-41.5q0-44-24.5-88.5t-63-48.5-38.5-22q0-14 5.5-30.5t5.5-36.5q0-96-66.5-115.5T1074 1093q0-14 7-25t7-34q0-36-19.5-64t-49.5-28q-8 0-16 1.5t-15 1.5q-23 0-43.5-38T881 869q-35 0-66 14.5T765 929t-47 31q-20 0-41.5-6t-42.5-6h-8q-27 0-58.5 17t-42.5 37l-13 23q-6 12-13.5 20.5T480 1054q-18 0-43-6.5t-40-6.5q-41 0-74.5 34.5T289 1150q0 66 51.5 158.5t104 202.5 167 323T733 2065l10 26q7 18 16 28.5t26.5 44.5 36.5 34q23 0 122.5-52.5t207.5-97 191.5-89 108-64 24.5-46.5q0-18-13.5-47zm412.5-58q0-3 1-5 0-21-31-35t-60-14q-24 0-45 16.5t-37 16.5q-15 0-15-8 0-5 5.5-12t5.5-13q0-14-16.5-18.5t-28.5-4.5q-33 0-52.5 14t-19.5 41q0 8 32.5 62.5t55.5 54.5q15 0 41.5-9.5t48.5-20.5l28-15q10-5 24-11l26-12q12-5 22-11t13-11zm269-160q0-56-36-123t-106.5-117-126.5-69-146-19q-108 0-159 16.5t-94.5 58-43.5 86.5q0 28 14 54t30 57l12 25q11 24 26 42t31 18q8 0 49.5-15.5T1696 1582q63 0 116 22.5t79.5 58 59.5 35.5q25 0 48-9.5t45-20.5l26-11q36-16 55-32.5t19-40.5zm129-34q2 2 7 2 26 0 45-19t19-39q0-40-58-122.5t-81.5-117.5-49.5-35q-29 0-59.5 19.5T2065 1276q0 17 25.5 34t79.5 83.5 66.5 108 36.5 48.5zM862 1394h12q45 0 87 32.5t42 71.5q0 47-31.5 75t-80.5 28q-52 0-87-30.5t-35-77.5q0-42 32-69t61-30z" + }, + "children": [] + }] +}; +exports.u1F371 = u1F371; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F372.js b/dist/noto_emoji_regular/u1F372.js new file mode 100644 index 000000000..307fefdb5 --- /dev/null +++ b/dist/noto_emoji_regular/u1F372.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F372 = void 0; +var u1F372 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2484 1520q-66 64-145.5 73.5t-92 63.5-59 157-126.5 200-192 152-244.5 79.5T1332 2270q-271 0-469-68t-334-201l-4-2q-55-55-100-136t-65-153-80.5-77.5-115-40-85-94T49 1363q0-90 40.5-179.5t98.5-133T354 985v-23q0-67 53-110.5T534 808q5 0 10.5 1t11.5 1q140-108 325.5-168t388.5-60q248 0 447 61t320.5 153.5 156 141.5 96 52 121 42 99.5 117 40 185q0 122-66 186zM333.5 1109.5q-4.5-8.5-18.5-8.5-60 0-109.5 79.5T156 1336q0 61 36 116.5t85 55.5q17 0 29.5-9t12.5-29q0-28-2.5-56.5T314 1358q0-95 12-152.5t12-76.5q0-11-4.5-19.5zM1533 986q38-29 82-50.5t93-34.5l-26-30q-29-32-55-53.5t-43-21.5q-13 0-28.5 7.5T1512 831l-19 14q-82 57-82 73 0 5 5 7.5t12 3.5l15 2q19 2 40.5 17.5T1518 974zM677 852q43 34 73 34t63.5 16.5T863 938t36 19q9 0 15.5-9.5T927 925l13-27h-1q10-21 81.5-97t131.5-76q30 0 75 20.5t84 46.5l7 6 23 17q6 4 10 4l8 3q40-35 81-60t70-43q-117-15-228-15-185 0-333.5 37.5T677 852zm24 133q-23 0-37-13l-31-26q-17-14-40-25t-59-11q-40 0-60 19t-20 57q0 44 20.5 91.5T501 1141q30-12 61-12 53 0 89 24t46 36 74 15q-2-11-3-22t-1-22q0-70 37-127-12-25-29-35.5T732 986zm44 716q2-80 36.5-151.5T870 1447q-2-6-19-76.5t-85-70.5q-14 0-26 1.5t-25 1.5q-12 0-27.5-4.5T652 1276l-25-22q-13-11-26-19.5t-24-8.5q-50 0-78 35.5t-28 97.5q0 92 53 167t90.5 106 130.5 69zm198 58q20 5 42 9t44 7q4-20 32.5-73t34.5-62l15-19q17-22 24.5-36t7.5-27q0-11-14-11-48 0-102 63t-80 137zm265-463q-3-7-14-21t-22-42l-15-36q-27-68-65-83t-65-38-65-23q-48 0-74 31.5t-26 92.5q0 13 2 26t5 24v7q55 40 71 102.5t18 67.5q25-8 80-14.5t97-42 73-51.5zm-43-255l55-43q27-22 55.5-32.5T1304 948q0-28-35.5-51.5t-70.5-47-51-23.5q-18 0-37.5 22t-49.5 52-30 52q0 7 13.5 16.5T1079 989l44 25q23 13 42 27zm927 723q8-15 15.5-33.5t7.5-29.5q0-15-13-15-5 0-13 5.5t-17 12.5l-18 14q-16 14-101 61.5t-251 89-388 41.5q-226 0-451.5-51T519 1707l-14-11q-7-5-14.5-9.5T478 1682t-7 4.5-2 10.5q0 14 11 38t25 45l12 19q87 139 187 205t251 108.5 327 42.5q339 0 521.5-93t281.5-285zm-390-130q-5-8-15-8-15 0-32 10l-25 15q-61 43-77.5 81t-33.5 64q27-2 54-5.5t53-8.5q10-26 45.5-73t35.5-56q0-11-5-19zm404-87q50-57 79-129t29-147q0-173-140-309t-374-205q18 16 33 30l31 31q5 5 32 33t44 45q120 20 208.5 114.5T2137 1218q0 38-17 104t-36 66q-16 0-34-11t-73-22-106-11l-31 1-13-1h-25q-18 0-24.5-5.5t-6.5-16.5q0-41 16.5-74.5t45.5-33.5q27 0 67.5 17.5t73.5 17.5q8 0 13-2t5-10q0-18-45-48t-75.5-40.5-30.5-33.5q0-8 6.5-31.5t8.5-28.5l7-15q3-8 5.5-16t2.5-14q0-7-3.5-12t-12.5-5q-7 0-14.5 3.5t-14.5 8.5l-24 18q-8 7-16 19l-18 24q-9 12-18 21t-17 9q-15 0-35-5t-39-5h-19q-18 0-32.5 6.5T1593 1108q0 13 18 21l39 18q21 10 38.5 23.5t17.5 37.5q0 18-17 69.5t-34 51.5q-9 0-17-10l-14-16q-21-22-47.5-43t-58.5-29l-21-3q-24-2-41-10.5t-17-24.5q0-23 8-54.5t20-59.5q-12-17-31.5-31.5T1395 1033q-24 0-49.5 11.5T1295 1073l-49 35q-7 5-7 14 0 8 24.5 50t42.5 88l20-2q10 0 21-1 82 0 149 30.5t91 87.5l5 12q3 8 3 14 0 12-22 19l-57 17q-99 29-147 68t-93 124.5-57 170.5l83 4q22-101 69.5-166.5t107.5-98 107.5-43 72.5-40.5 67.5-50 116.5-20q95 0 160 43t103 118zm284.5-383.5Q2346 1104 2310 1104q-18 0-18 19 0 9 11 53.5t11 102.5q0 78-12.5 124.5T2289 1452q0 12 15 17t29 5q45 0 73.5-43.5T2435 1323q0-100-44.5-159.5z" + }, + "children": [] + }] +}; +exports.u1F372 = u1F372; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F373.js b/dist/noto_emoji_regular/u1F373.js new file mode 100644 index 000000000..d16fc2bbc --- /dev/null +++ b/dist/noto_emoji_regular/u1F373.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F373 = void 0; +var u1F373 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2379.5 886Q2261 936 2120 1019.5t-227.5 151-162.5 147-76 168.5q0 24 1 45.5t1 47.5q0 200-116 377.5t-299 273-400 95.5q-191 0-365.5-66.5T201 2052t-100-336q0-248 130.5-418.5t302-249T895 970q145 0 279.5 40t201.5 81.5 91 41.5q31 0 60-50t109.5-144.5T1840 744t235-166 192-66q66 0 111 44t82.5 103 37.5 101q0 76-118.5 126zm-1043 582q-36.5-66-103.5-118.5t-142-71-179-18.5q-264 0-432 136t-168 289q0 114 84 192.5t183.5 83T748 2005t153 40q87 0 200.5-57.5t192.5-163 79-217.5q0-73-36.5-139zM1104 1619q0 87-78.5 139T841 1810q-98 0-160.5-52T618 1623q0-94 72.5-155t168.5-61q97 0 168 54t77 158zm-129.5-97.5Q924 1485 859 1485t-114 38.5-49 95.5q0 52 36.5 81.5T834 1730q76 0 133.5-30.5t57.5-85.5q0-56-50.5-92.5z" + }, + "children": [] + }] +}; +exports.u1F373 = u1F373; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F374.js b/dist/noto_emoji_regular/u1F374.js new file mode 100644 index 000000000..4c40be66d --- /dev/null +++ b/dist/noto_emoji_regular/u1F374.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F374 = void 0; +var u1F374 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2302 2152q48 107 69 171t21 99q0 42-26.5 72t-69.5 30q-79 0-138.5-75.5T2036 2125t-83-337.5-78-89.5q-29 0-77.5 17.5T1718 1733q-127 0-203-155.5t-94-426.5-26.5-324-8.5-176q0-14 1-26t1-26q0-129 30-196t92-67q73 0 127.5 137.5T1725 698l70 192q81 223 146 376t148.5 370 159.5 400zM1014 663l16-56q25-92 43-140.5t28-48.5q21 0 29 34t8 87q0 107-26.5 281.5t-114 271.5-234.5 97q-25 0-37-2-78 301-137 594t-106 522.5T314 2533q-52 0-79-38t-27-100q0-54 29.5-162t53.5-176l64-181q21-60 48-142l58-176q31-95 64-199l65-208q-106-48-151.5-120T393 856q0-177 116-365.5T673 302q10 0 14.5 6.5T692 322q0 22-49 126t-49 210q0 45 20 64t45 19q35 0 56.5-34t36.5-76l12-36q6-23 45.5-119.5t52-110T888 352q16 0 23 12.5t7 24.5q0 7-1 11.5t-1 6.5q-4 29-10.5 64T892 539l-22 104q-7 24-10.5 43.5T856 735q0 31 15.5 49.5T918 803q27 0 53-39.5t43-100.5z" + }, + "children": [] + }] +}; +exports.u1F374 = u1F374; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F375.js b/dist/noto_emoji_regular/u1F375.js new file mode 100644 index 000000000..c31359f31 --- /dev/null +++ b/dist/noto_emoji_regular/u1F375.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F375 = void 0; +var u1F375 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M948 185.5q74-76.5 123-76.5 10 0 18 6t8 21q0 6-35.5 66.5T1026 320q0 50 53.5 137t53.5 158q0 72-58.5 143T945 829q-18 0-29.5-10.5T904 796q0-20 18-37t40-49.5 22-72.5q0-50-55-119t-55-150q0-106 74-182.5zm278 0q74-76.5 123-76.5 10 0 18 5.5t8 19.5q0 11-35.5 69T1304 320q0 51 53.5 136.5T1411 615q0 72-58.5 143T1223 829q-18 0-29.5-10.5T1182 796q0-20 18-37t40.5-50 22.5-72q0-47-55.5-118.5T1152 368q0-106 74-182.5zm277 4q73-80.5 124-80.5 10 0 18 5.5t8 19.5-35.5 69.5T1582 320q0 51 53.5 136.5T1689 615q0 74-58.5 144T1501 829q-18 0-28.5-9.5T1462 796q0-22 19-40t39.5-50 20.5-69q0-47-55.5-118.5T1430 368q0-98 73-178.5zm568 843.5v156q0 64-1 135l-2 143q-4 156-18.5 321t-84.5 305.5-222 213.5l2 14v12q0 63-128.5 110.5T1300 2491q-187 0-315.5-47.5T856 2333q0-11 3-26-100-48-168-129.5t-113-241-48-624.5l-1-135q0-41 1-126.5t1-156.5q0-105 79.5-188.5T827 589l7-1q11 0 18 9t7 19q0 16-20 24t-62.5 39.5-74 80.5T671 864t23.5 99.5T760 1042q22-64 169-112t357-48q214 0 357 48.5t161 103.5q69-37 102.5-81.5T1940 860q0-53-32.5-102t-75.5-76.5-71.5-36T1732 614q0-11 7-21t21-10q108 0 209 101.5T2070 903zm-1166 77q12 6 87 21.5t201 15.5q122 0 235.5-10t226.5-45q8-13 8-24 0-40-111.5-63T1314 982q-216 0-318.5 34.5T893 1092q0 12 12 18zm1047 102q0-31-10.5-50.5T1912 1142q-20 0-29.5 7.5t-96.5 47-216 63.5-269 24q-131 0-295-24t-281-89l-12-6q-8-3-25-3-19 0-29.5 18t-10.5 49l1 116q0 206 15.5 387t85.5 301.5 207 175 343 54.5q210 0 346.5-56t204-172 83-283 18.5-423v-117z" + }, + "children": [] + }] +}; +exports.u1F375 = u1F375; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F376.js b/dist/noto_emoji_regular/u1F376.js new file mode 100644 index 000000000..b5b38cb90 --- /dev/null +++ b/dist/noto_emoji_regular/u1F376.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F376 = void 0; +var u1F376 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2190 2177.5q-96 196.5-185.5 253T1799 2487q-92 0-169.5-33.5T1490 2357q-86 54-199 82.5t-217 28.5q-172 0-339-73.5T471 2139t-97-360q0-128 47.5-256T545 1275t137.5-219.5T744 804q0-68-13-134.5T688 512l-5-14q-2-6-3-13t-1-18q0-104 120.5-168.5T1068 234q170 0 290.5 58.5T1479 465q0 41-32.5 135T1414 804q0 158 63 257.5t149.5 237T1753 1568h10q230 6 376.5 79t146.5 216q0 118-96 314.5zm-85-85.5q-5-3-12-3-15 0-76.5 13.5T1831 2116q-190 0-272.5-15t-83.5-15q-8 0-16 4t-8 19q0 51 97.5 166t250.5 115q69 0 126.5-27t121-133 63.5-125q0-10-5-13zm-120.5-84.5q28.5-9.5 45.5-24t17-40.5q0-41-83.5-73.5T1757 1837q-95 0-182 34.5t-87 71.5q0 34 50.5 54t292.5 20q125 0 153.5-9.5zM2123 1967q33-18 49.5-45t16.5-62q0-51-31.5-80t-80.5-52.5-133-42-191-18.5q-151 0-279.5 57T1345 1867q0 23 17.5 48t46.5 39v-11q0-82 110.5-134t237.5-52q145 0 256.5 48t111.5 136q0 6-1 13t-1 13zM888 534.5q81 26.5 195 26.5l30-1q94-4 163.5-32t69.5-75q0-62-71-94t-215-32q-85 0-169 34t-84 92q0 55 81 81.5zM1416 2265l-26-39q-19-29-38.5-63.5T1316 2089l-20-48q-21-49-34.5-91.5T1248 1878q0-117 101-193t281-107q-46-137-169-319.5T1317 981t-21-176q0-40 3.5-77t9.5-71q0-4-5-4-56 17-116 22t-117 5q-47 0-106.5-6.5T848 647q6 35 9.5 74.5T861 804q0 107-24 192.5t-139 258-160.5 292T492 1778t46.5 226.5 111.5 188T834.5 2308t239.5 42q83 0 175-20.5t167-64.5z" + }, + "children": [] + }] +}; +exports.u1F376 = u1F376; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F377.js b/dist/noto_emoji_regular/u1F377.js new file mode 100644 index 000000000..97f3aa260 --- /dev/null +++ b/dist/noto_emoji_regular/u1F377.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F377 = void 0; +var u1F377 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1367 2152q0 109 173.5 169.5T1714 2449q0 56-136 93t-355 37q-155 0-272.5-38.5T833 2440q0-64 174-134t174-170l-1-64q-309-46-478-223.5T533 1381q0-237 73-481.5T785 471l25-44q41-77 170-122.5t320-45.5q185 0 304.5 38T1771 398.5t124 233 124 367 47 382.5q0 206-87.5 357t-254 237.5T1367 2078v74zm146 284q-91-30-152.5-76.5T1269 2249q-31 53-78.5 90t-112.5 64l-70 31q49 13 100.5 20.5t114.5 7.5q77 0 151.5-6t138.5-20zM919 468q20 30 122.5 59.5T1300 557q166 0 266-31t115-61q-14-25-116-57t-265-32q-162 0-265 31.5T919 468zm-56 106Q762 775 706.5 983T651 1381t86 321.5T981 1899t316 65q160 0 317-64t245.5-195 88.5-324q0-192-57-403.5T1737 575q-62 46-176 73t-261 27q-146 0-259.5-26.5T863 574zm-35.5 643q93.5-51 217.5-51 111 0 281 61.5t278 61.5q81 0 141-22.5t68-22.5q24 0 36.5 27.5t12.5 69.5q0 227-158 374t-391 147q-249 0-414-139.5T734 1357q0-89 93.5-140z" + }, + "children": [] + }] +}; +exports.u1F377 = u1F377; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F378.js b/dist/noto_emoji_regular/u1F378.js new file mode 100644 index 000000000..a920f146b --- /dev/null +++ b/dist/noto_emoji_regular/u1F378.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F378 = void 0; +var u1F378 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1404 1984.5q1 70.5 1 68.5 0 107 174 169t174 129q0 55-131.5 92t-358.5 37q-153 0-271.5-38.5T873 2342q0-28 30.5-55.5T975 2239l39-18 76-33q39-15 71.5-48t45-70.5 12.5-83.5v-76q-2-124-9.5-208t-14.5-132.5-60.5-105.5-92.5-91l-75-64q8 7-289-240T381 700q0-120 256.5-194t662.5-74q119 0 228 7t206 20q109-125 211-189t147-64q23 0 39 18t16 44q0 15-11 26.5t-29 20.5l-18 9q-63 29-118 69t-105 90q169 33 261 89.5t92 127.5q0 47-39 99.5T2076 924t-233.5 209.5-253.5 210-124.5 125-50.5 161-11 242.5q0 42 1 112.5zM857 822q55-28 170-44t254-16q79 0 139 3t109 9q31-56 59.5-105t63.5-101q-75-8-162-13t-190-5q-242 0-415 25.5T616 636t-116 64q14 26 106.5 62T857 822zm551 1449l-14-13q-18-15-46-46.5t-44-68.5q-33 67-89.5 108t-98.5 56.5-68 27.5q42 15 97.5 21t117.5 6q88 0 125-14.5t37-46.5q0-8-5-15.5t-12-14.5zm478-1328q21-18 40-37-124 32-284 48t-342 16q-184 0-345-16.5T670 906q90 80 167 146t152 126l111 90q44 35 96.5 54.5T1303 1342q87 0 192.5-74.5T1698 1106l143-125zm214-243q-19-27-106.5-59.5T1773 584q-41 51-74.5 102.5T1637 795q25 6 48 13l47 16q152-21 254.5-59t113.5-65zm-670 357q44 41 44 100t-44 100-104 41q-61 0-105-41t-44-100 44-100 105-41q60 0 104 41z" + }, + "children": [] + }] +}; +exports.u1F378 = u1F378; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F379.js b/dist/noto_emoji_regular/u1F379.js new file mode 100644 index 000000000..fd4663b32 --- /dev/null +++ b/dist/noto_emoji_regular/u1F379.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F379 = void 0; +var u1F379 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1850 1260q14 64 64.5 206.5T1965 1727q0 221-142.5 353.5T1407 2250l31 15q13 7 117 50.5t104 97.5q0 56-139 91.5t-335 35.5q-141 0-259.5-38T807 2404q0-27 28.5-52t70.5-45l38-18 52-23q26-12 52-27-232-39-363-169.5T554 1726q0-125 58-281t68-244q-5 7-60.5 94.5T498 1383q-56 0-139-142t-83-344q0-173 81.5-332t227-228.5T899 267q67 0 137 15t138.5 39 68.5 74q0 47-55.5 117T1017 742q50-6 102.5-10t108.5-4q0 26 6.5 52t12.5 55q-98 0-176.5 9T925 865q-17 28-37 55t-40 51l65 16q62 16 136.5 26t156.5 10q40 0 79-1h73q38 26 82 39.5t91 13.5q4 0 7-1h6q2 8 7 17t10 17q-67 11-143 16.5t-159 5.5q-149 0-274-18t-208-53l2 29q0 15 1 32 0 130-66 310t-66 297q0 232 176 335t413 103q314 0 473.5-114t159.5-324q0-110-55.5-258.5T1748 1226q6 0 36 17t66 17zm528.5-659.5Q2354 629 2317 649q12 19 16.5 38t4.5 39q0 17-1.5 33t-1.5 34l1 34q0 36-29.5 58t-65 61.5T2122 986q-17 0-35-3 0 82-69 141t-159 59q-23 0-55-16.5t-65-21.5q-51 0-92.5-53T1605 985q-18 5-36 8t-38 3q-44 0-79.5-13.5t-62.5-36-42.5-48-18-50.5-12.5-60.5-10-53.5q0-74 51.5-123.5T1495 550q-35-23-52-51.5t-17-75.5q0-34 12.5-65.5t31-50 39.5-27 34-24 51-30.5 82-15q54 0 90.5 25t64.5 87q0-13 49.5-41.5T1962 253q24 0 52.5 18t49.5 18q34 0 65.5 28t47.5 65q19-3 40-3 75 0 130.5 41.5T2403 527q0 45-24.5 73.5zm-835 680.5q97.5-20 95.5-20 13 0 19.5 8.5t8.5 20.5l2 12q5 66 48.5 183t43.5 206q0 119-62 205.5T1515.5 2027t-256.5 44q-211 0-356-95.5T758 1690q0-93 43.5-209t45.5-167 31-51q11 0 103.5 19t277.5 19q187 0 284.5-20zM566 1201q-58-31-89-89.5T446 985q0-42 26-63t100-21q36 0 71.5-1.5T721 898q19 0 39 1.5t38 5.5l6-11q3-6 7-11-60 0-135.5-20T552 822t-48-84q0-64 53-137.5T676 527q30 0 57.5 36.5t47 75 33 57T839 744t29 58l12-17q-20-39-33-100t-18-78l-13-42q-6-21-10-42.5t-4-43.5q0-36 33-54.5t90-18.5q49 0 106 22.5t83 61.5q15-22 15-45 0-20-15-32t-40-17l-26-6q-41-12-83-19.5t-85-7.5q-141 0-263.5 57.5t-190 190T359 887q0 133 51.5 250t88.5 117q15 0 36-21t31-32zm1617-747q-55 8-118.5 44T1946 541.5t-99 35-44 81.5q0 25 22.5 40t51.5 15q48 0 121-49t140-49q83 0 140.5-26t57.5-72-45-55-53-10h-28zm-659 1951q-110-41-160.5-72.5T1274 2259l-95-2q-41 47-114.5 80.5T983 2375l-55 28q33 14 105.5 27.5T1185 2444q104 0 191.5-9.5T1524 2405z" + }, + "children": [] + }] +}; +exports.u1F379 = u1F379; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F37A.js b/dist/noto_emoji_regular/u1F37A.js new file mode 100644 index 000000000..7f2e04751 --- /dev/null +++ b/dist/noto_emoji_regular/u1F37A.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F37A = void 0; +var u1F37A = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2287 893q-35 47-91 65-2 14-9.5 35.5T2162 1032q6 28 8.5 58t2.5 61q0 60-5 116.5t-5 101.5q0 91 2 184.5t2 192.5q0 277-20 423.5t-95.5 236.5-235.5 128-364 38q-43 0-86-2t-85-5l-94-7q-234-18-341-92.5t-103.5-201-143-134-226.5-107-90-313.5q-5-109-5-237 0-47 3-94t10-93.5 22-91.5 40-86 57.5-72 79-56.5T580 946l87-19q-38-65-38-137 0-21 5-48t18-66v-5q-21-65-21-105 0-93 74-169.5T875 320q43 0 54-2.5t19-8.5l26-20q26-21 66.5-35.5T1127 239q32 0 46 3.5t20 3.5l6-1q5 0 41-17.5t69.5-25.5 71.5-8q87 0 140.5 34.5T1581 265q3 0 48.5-14.5T1730 236q92 0 165 38.5t102.5 83.5 45.5 43.5 78.5 24.5 104 75.5T2267 627q0 13 2 19 53 73 53 134 0 66-35 113zm-102.5-176.5Q2158 686 2158 627v-21q0-8-16.5-36.5t-66-44-83-23.5-60.5-48l-10-15q-29-45-81-69t-111-24q-16 0-35 2t-33 7l-25 8q-14 5-28 8.5t-28 3.5q-23 0-42.5-8.5T1507 350l-33-21q-21-13-42-18.5t-51-5.5q-53 0-67.5 9.5t-52 25.5-68.5 16q-20 0-33-3t-26-3q-62 0-84.5 19.5T988 410t-78 21q-11 0-19-1t-16-1q-35 0-84.5 39T741 566q0 24 10.5 53t10.5 57q0 19-3.5 34.5T751 738l-7 26q-4 13-4 26 0 55 35 103.5t81 48.5q23 0 40-2t53-9l37-7q19-3 45-3 73 0 129 52t161 52q34 0 82.5-13.5T1490 998q77 0 124 55.5t63.5 172.5 95.5 117q55 0 77-37t30-123 39.5-131 84.5-57q12 0 46.5-16t39.5-45.5 23-50 48.5-29 40-31 9.5-43.5q0-33-26.5-63.5zM1355 2460l97 1q266 0 410.5-57t170-220.5T2058 1752q0-100-2.5-197.5T2053 1371q0-49 5-102.5t5-114.5q0-30-3-59-23 12-38 9t-24 49l-12 75q-5 29-12 57l-15 61v356l-1 81v160q0 150-33.5 222.5t-72.5 105-156.5 49.5-233.5 17q-52 0-102.5-3t-100.5-11l-54-11q-127-24-181.5-77T968 2072l-2-71q-2-45-3-111t-1-134l-2-282v-161q0-61 11-78.5t32-17.5q20 0 157.5 24t301.5 24q28 0 55.5-1t55.5-3q-2-8-17-80.5t-66-72.5q-20 0-34 4l-33 9q-20 6-52 10t-89 4q-46 0-97.5-19t-85.5-51.5-52-32.5q-27 0-47 3l-79 14q-21 4-50 4-35 0-65.5-10t-57.5-27q-26 11-50 16l-46 10q-134 26-199 116t-65 322q0 148 8 275t64 194 166 77 168.5 71.5T853 2268q0 38 13.5 58.5t52 46.5 89 42 107.5 25.5 118.5 14.5 121.5 5zm-506.5-877q-6.5 59-6.5 123 0 80-49 136.5T674 1899q-91 0-141.5-77.5T482 1553q0-219 60.5-291t138.5-72q85 0 129.5 73t44.5 213q0 48-6.5 107zM733 1704q0-24 5.5-90.5T744 1482q0-96-16-138.5t-47-42.5q-44 0-66.5 59T592 1556q0 127 20.5 180t61.5 53q23 0 40-24t19-61z" + }, + "children": [] + }] +}; +exports.u1F37A = u1F37A; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F37B.js b/dist/noto_emoji_regular/u1F37B.js new file mode 100644 index 000000000..37bbca381 --- /dev/null +++ b/dist/noto_emoji_regular/u1F37B.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F37B = void 0; +var u1F37B = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2452.5 2069.5q-42.5 56.5-114 74T2267 2220q0 14 2.5 29.5t2.5 32.5q0 70-58 120t-181 81l-57 14q-63 14-126.5 23.5T1721 2530q-95 0-158.5-24.5t-108-88-80.5-269-50.5-318-24.5-141-15-90.5l-49 323q-39 263-113 344t-244 81q-157 0-354-59t-197-189q0-15 3-30.5t3-29.5q0-58-67.5-74T151 1892.5 104 1735q0-57 23-210t58.5-221.5 88-101.5 147.5-38q-13-32-13-66 0-30 29-107l-1-7q-3-16-3-35 0-65 47.5-119.5T595 775q15 0 27 3t18 3q10 0 39-18.5t75-18.5q24 0 39.5 6.5T817 757q9 0 26.5-9.5T892 738q42 0 79 14t78 54q11-2 23.5-5t26.5-3q50 0 95 18.5t78.5 61.5 33.5 61q29 14 51.5 25.5t42.5 36.5q26-8 50-14.5t50-6.5q15 0 27 2.5t23 5.5l5-2q31-37 66.5-51.5T1708 920q26 0 46 8l28 12q7 0 23.5-6.5t41.5-6.5q35 0 70.5 17.5T1954 962q7 0 20-2.5t32-2.5q65 0 112.5 52.5T2166 1131q0 9-1.5 17.5t-1.5 17.5q0 13 14 41.5t14 72.5q0 33-11 66 11 2 24 2l10-1q81 0 152.5 71.5t100 253.5 28.5 242q0 99-42.5 155.5zM2386 1676q-29-164-78.5-207.5T2217 1427t-84-10q-20 21-47 28.5t-53 7.5q-14 0-26-1t-23-1q-34 0-53.5 29.5t-66 50-90.5 20.5q-18 0-34-2.5t-27-2.5q-31 0-38 19t-7 75q0 19-2 39 130-13 216-45.5t107-32.5q20 0 25.5 38t6.5 41l15 98 13 81 25 164 8 59q2 20 5.5 40t3.5 40q-3 93-121.5 137t-243.5 44q-165 0-192-143.5t-37-210.5l-32-212q-41-30-59.5-99.5T1381 1597l-19-3q5 64 19.5 118t17.5 88 29.5 203 51 264.5T1542 2401t94 45q38 5 85 5 109 0 237-31l11-3q134-33 179-63t45-72q0-11-2-27t-2-36q0-51 29.5-91.5t89-56 83.5-47 24-108.5q0-76-29-240zm-1164-171q-8-5-13-9l-12-10q-14 48-25 68t-38 43q-2 21-7.5 44t-5.5 45q-4 17-8 43l-28 181-15 88q-19 94-62 128.5T873 2161q-58 0-157-18.5T562.5 2083 508 1980q0-20 3.5-39.5t6.5-41.5l34-223q6-43 12-80l16-97q0-2 4-41.5t26-39.5q7 0 22 5l26 9q65 27 134.5 42t141.5 23q0-10-1-28.5t-1-32.5q0-44-10-58t-29-14q-12 0-29 2.5t-38 2.5q-42 0-89-19t-58-36-30-38l-8-4q-4-2-10.5-2t-13.5-1q-11 0-24 1t-27 1q-28 0-54-8.5t-46-27.5q-28 9-51 9l-7-1q-79 0-120 50t-57.5 113-29.5 156l-12 101q-5 35-5 69 0 77 25 110.5t84.5 49T382 1947t29 92q0 19-2.5 33t-2.5 25q0 82 178 127t294 45q108 0 148.5-25t72.5-91 74-357l21-138q14-96 21-122.5t7-30.5zm197-425q-12 5-24 19.5t-24 38.5l-10 23q-10 24-62 46.5t-52 61.5q0 5 1 14l3 26q0 30-10.5 42t-10.5 32q0 17 8.5 30.5t16.5 20.5l10 2q26 0 40.5 19t20.5 43q23 18 62 21t64 53 36.5 101.5 54.5 51.5q40 0 42-44t6.5-97.5 37-85.5 78.5-32q20 0 38 3t29 3h7q68-8 86-37t47.5-46 62.5-17q17 0 31 1.5t25 1.5q36 0 58-24t22-71q0-24-14.5-54.5T2084 1173q0-10 2-21.5t2-20.5q0-38-20.5-61t-56.5-34l-5-1q-6 0-19 3.5t-31 3.5q-28 0-56-18.5t-53-18.5q-16 0-30.5 6t-32.5 6q-17 0-27.5-2.5t-19.5-7.5l-16-6q-8-3-22-3-49 0-77.5 34t-69.5 34q-14 0-29-4t-23-4q-20 0-35.5 5t-34.5 12zm-904-99v10q0 29-13.5 56t-13.5 51q0 44 19.5 69t58.5 25l24-1h27q70 0 104.5 47t97.5 52l74-4q61 0 89 39.5t30 95.5v33q0 56 10.5 73.5t35.5 17.5q15 0 32.5-15t23.5-39 16-53l19-55q9-26 15.5-46.5t6.5-28.5q0-5-2-15.5t-2-23.5q0-51 36-90.5t65.5-47.5 31.5-26 37-58q-15-17-54.5-31.5t-52-56-49.5-62-82-20.5q-8 0-23 3.5t-29 3.5q-19 0-33-7.5T992 861l-24-21q-14-13-31.5-18.5T892 816q-7 0-14 3l-17 7q-9 4-20 7t-24 3q-11 0-20-2t-16-4l-13-4q-7-2-14-2-27 0-56 18t-54 18q-17 0-29.5-3.5T595 853l-6 1q-77 21-77 101 0 10 1.5 15.5T515 981zm1808.5 975q-28.5 43-80.5 43-37 0-71-28t-57-150.5-23-170.5q0-60 28-96.5t76-36.5q92 0 124 128t32 208q0 60-28.5 103zm-1838-326.5Q464 1737 436 1777t-80 40q-51 0-79.5-42T248 1672q0-133 40-235t116-102q47 0 75 36t28 97q0 54-21.5 161.5zM1026 576q-14-11-14-30 0-13 11-22l135-112q7-9 20-9 10 0 18 6t12 13l121 283 2 6q0 3 1 6 0 12-10 22t-25 10q-8 0-15-5zm608 194.5q1-5.5 6-9.5l203-230q8-11 22-11 19 0 28 15l94 149 4 9q0 4 1 9 0 11-6.5 19t-16.5 11l-296 81q-3 0-8 1-13 0-22.5-9t-9.5-24q0-5 1-10.5zM1460 672l-52-302v-5q0-12 8.5-22t22.5-10h5l175 21q11 2 19.5 10.5t8.5 21.5q0 4-1 7l-2 6-123 280q-10 19-33 19-11 0-18.5-7.5T1460 672zM422 1428q-5-15-18-15-33 0-55.5 93T326 1671q0 24 6.5 46t23.5 22q26 0 37-52.5t22.5-114.5 11.5-104q0-25-5-40zm1828 254.5q-23-87.5-54-87.5-12 0-18 15t-6 41q0 36 10 90.5t23 116.5 38 62q11 0 20.5-14.5t9.5-56.5q0-79-23-166.5z" + }, + "children": [] + }] +}; +exports.u1F37B = u1F37B; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F37C.js b/dist/noto_emoji_regular/u1F37C.js new file mode 100644 index 000000000..29549b107 --- /dev/null +++ b/dist/noto_emoji_regular/u1F37C.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F37C = void 0; +var u1F37C = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2218 1820q26 44 37.5 91t11.5 95q0 111-59.5 208.5T2050 2369l-371 216q-51 29-103.5 43t-106.5 14q-111 0-204.5-51.5T1123 2451l-443-806q-27-50-45-98.5t-20-99.5q19 3 41 3 136 0 321.5-85t332-214T1507 902q51 30 93 76t81 100zm-475 349l-27 16q-3 10-16 10l-31 18q-6 2-8 2-6 0-11-4.5t-5-10.5q0-8 8-13l25-15-209-353-25 15q-6 2-8 2-6 0-10.5-4t-4.5-11q0-9 7-13l25-15-125-211 36-2-92-157 21-12q7-5 7-13 0-6-4.5-10.5t-10.5-4.5q-5 0-8 2l-74 43q-8 5-8 14 0 6 4.5 10.5t11.5 4.5q2 0 8-2l24-15 84 141-504 3q3 32 14.5 63t27.5 61l341 642q35 67 109.5 108t167.5 41q45 0 89.5-12t86.5-37l294-174q80-48 123-127t43-167q0-40-9.5-79.5T2080 1826l-163-245h-553l117 195 22-13q4-2 7-2 5 0 10 4.5t5 11.5q0 8-7 13l-21 12 209 353 22-12q2-2 8-2t10.5 4 4.5 11q0 8-8 13zM1046 740.5Q958 836 825 904t-240 68q-64 0-97.5-26.5T454 859q0-56 28.5-117t53.5-92.5 25-57.5q0-40-40-73t-56-70-16-74q0-64 42.5-110T594 219q54 0 99 40t54 98l5 24q6 37 24.5 58t47.5 21q25 0 53.5-5t53.5-5q29 0 53.5 4t45.5 10q49-15 88-21.5t68-6.5q41 0 73.5 11t47.5 30l169 230q9 13 12.5 29t3.5 33q0 109-140 260t-356 261.5T621 1401q-57 0-98-16.5t-61-49.5l-118-251q-5-8-8-19.5t-3-31.5q0-29 16-75t68-107q-35 43-54 81.5t-19 69.5q0 43 33.5 63.5T468 1086q132 0 333-96.5T1148 756t146-228q0-42-33-62.5t-90-20.5q-59 0-137 21 45 14 72.5 40.5T1134 572q0 73-88 168.5z" + }, + "children": [] + }] +}; +exports.u1F37C = u1F37C; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F380.js b/dist/noto_emoji_regular/u1F380.js new file mode 100644 index 000000000..edd787ee1 --- /dev/null +++ b/dist/noto_emoji_regular/u1F380.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F380 = void 0; +var u1F380 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2492 1360q-37 79-129.5 124t-198.5 45q-38 0-72-3 131 100 210.5 247t79.5 299q0 20-16.5 37.5T2329 2127l-7-1q-21-2-85.5-38t-81.5-44l-38-16q-22-8-40-8-53 0-120 106.5t-87 126.5l-20 19q-18 17-40 29.5t-40 12.5q-30 0-54.5-37.5t-67.5-234-86.5-303.5-111.5-149-143-42q-85 0-155 40t-115.5 155-86.5 306-66.5 228-54.5 37q-31 0-73-35.5T672 2171t-78-111.5-69-39.5q-22 0-42 8l-38 16q-29 13-89.5 46.5T278 2126l-8 1q-22 0-38-17.5t-16-37.5q0-153 79.5-298.5T507 1526q-33 3-73 3-125 0-208.5-50t-119-122T71 1166q0-230 132-426.5T607 543q149 0 281 69t208 192q39-17 86-22t92-5q113 0 153.5 8.5T1501 818l12-17 36-57q17-26 37.5-45.5t54-44.5 73-45 85-35 98-23 96.5-8q269 0 402.5 196.5T2529 1165q0 116-37 195zM370 1114q82 0 166 20t226 73.5 158 64.5 31 12l3-9q0-3 1-7 0-21-4-43t-4-51q0-13 3-25.5t3-26.5q0-27-70.5-77T775 983.5 738 950q0-11 7-19.5t18-8.5q27 0 74.5 15.5T898 959l18 9q9 5 18.5 8.5T952 980q18 0 22-24t5-28l12-32q5-12 5-26 0-65-127.5-143.5T600 648q-152 0-256.5 96T205 1020l-9 45q-6 29-6 56 0 20 7 34.5t18 14.5q6 0 11.5-3.5t11.5-8.5l11-10q15-14 47-23.5t74-10.5zm589.5 399.5Q885 1508 881 1507l-25-2h-26q-170 0-285 110t-175 250l-12 29q-7 18-7 32 0 16 7.5 22.5t16.5 6.5q18 0 72.5-29.5T555 1896q54 0 81 36t63 107 87 71q16 0 29.5-35t25.5-103l7-41q11-68 64.5-181t87.5-153 34-51q0-27-74.5-32.5zm551.5-499q-23-58.5-48.5-80.5t-66.5-35.5-173-13.5q-23 0-47.5 2t-45.5 8q-53 42-71 145.5t-18 142.5q0 112 52 174.5t149 62.5q59 0 123.5-22t97-50.5 52-84.5 19.5-120q0-70-23-128.5zm138 497.5q-85 7-85 34 0 11 39.5 55.5t89.5 161 58 168.5 23.5 115.5 37.5 63.5q55 0 91.5-75t63.5-107 78-32q28 0 55 8.5t51 19.5l14 8q14 9 30.5 16t27.5 7 18-7 7-23q0-14-13-45-63-154-182.5-264.5T1769 1505q-35 0-120 7zm753-448l-9-44q-34-180-138.5-276T1999 648q-146 0-271 80t-125 144q0 12 5 24l11 32q2 5 6 28.5t22 23.5 39.5-13.5 69-29T1836 922q12 0 18 8.5t6 19.5q0 23-34.5 33.5T1719 1044t-72 77q0 14 2.5 27t2.5 26q0 23-3.5 47t-3.5 47q0 4 1 7l3 9q13 0 28-10t141-61.5 219-75 170-23.5q52 0 91 10t53 24l11 10q5 5 10.5 8.5t11.5 3.5q10 0 17-11.5t7-38.5-6-56z" + }, + "children": [] + }] +}; +exports.u1F380 = u1F380; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F381.js b/dist/noto_emoji_regular/u1F381.js new file mode 100644 index 000000000..c4de9297b --- /dev/null +++ b/dist/noto_emoji_regular/u1F381.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F381 = void 0; +var u1F381 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1756 738q45-8 90.5-11.5t90.5-3.5q190 0 294.5 71.5T2336 1003q0 46-8.5 86t-21.5 67.5-14.5 34T2280 1302l-14 130-16 133-32 274q-7 67-26.5 97t-19.5 28q-97 115-185 218l-223 258-57 61q-31 34-65.5 47t-68.5 13q-28 0-53.5-5.5T1322 2489l-354-123-174-62q-79-27-201-72t-143.5-131-72.5-275l-62-227-44-154q-4-15-6-28t-2-26q0-39 17-73t38-55l12-12q4-5 17.5-17t22.5-21q-39-23-69-49.5t-30-54.5q0-35 67.5-73.5T512 984q-60-35-90.5-99T391 718q0-205 136-310.5T802 302q102 0 215 80t180 190zm-489 1030q-14-24-25-49t-21-51q-11-3-18-6l-53-20-54-18 74-100q-10-35-23-70l-54-141q-14-36-24-73-68 44-159.5 135.5T759 1509l147 52q130 44 152 52.5t22 17.5q0 7-7.5 13.5t-7.5 21.5l1 13q0 13-14 13-18 0-136.5-46.5T703 1576q2 17 5 34l6 35q18 134 38 265l40 262q9 56 97.5 80.5T1004 2286l28 11q14 6 27 9.5t22 3.5q12 0 14-29.5t2-90.5q0-123-10-246t-13-245zm191.5-696q4.5 7 15.5 7 8 0 14.5-1.5t13.5-2.5q35 0 69.5-3.5t68.5-3.5q110 0 180.5 25t70.5 75q0 32-28.5 53t-60.5 21q-8 0-30-3.5t-49-9.5l-53-11q-27-5-44-9l-6-3q-3 0-6-1-8 0-8 7 0 3 4 7.5t10 7.5l17 12q58 32 126.5 56.5T1900 1320q101 0 218-98t117-198q0-101-89-155.5T1926 814q-138 0-259 34t-167 90-46 116q0 11 4.5 18zM662 935l4 2q2 0 4 1 51 17 100.5 22.5T871 966q21 0 29.5-8t8.5-26l-1-7q0-9 3-18-19-11-60.5-23T793 873.5t-60.5-9.5-76-38-31.5-69q0-38 21.5-54.5T700 686q28 0 62.5 15.5T831 741l39 28 36 30q10 8 20.5 13.5T947 818t22.5-9 26.5-22l27-25h-1q25-22 66-40t41-47q0-30-60-103.5t-139.5-119T773 407q-119 0-198.5 106T495 729q0 76 39 126.5T662 935zm1433 448q0-4 1-8-38 17-82.5 30t-92.5 15q-14 17-30 34.5t-30 35.5q17 26 26 51t9 42q0 29-18.5 44t-47.5 23q-6 135-7.5 263t-1.5 292q0 22 12 22 5 0 10-4.5t8-9.5l162-183q15-18 31.5-41.5t16.5-42.5q0-13 1-26l1-26q10-125 16-252t16-251v-8zm-373.5 156.5q15.5-6.5 15.5-18.5 0-11-9-23l-14-19q-61-75-130-140t-147-119l-35-25q-17-12-40-12-11 0-19 3l-17 6q-12 4-23.5 6.5t-29.5 2.5q-20 0-33-2t-24-6l-16-5q-8-2-20-2-8 0-16 6t-8 17q0 9 4 18l7 16q42 124 97.5 251.5t67.5 153 30 25.5q22 0 60-50t66-65.5 109-15.5q22 0 43.5 2t46.5 2q19 0 34.5-6.5zM416 1110q0 2-1 3 0 19 60.5 37t93.5 39 49 48 16 97q0 20-1 39t-1 36q0 20 4 28.5t13 8.5q12 0 32.5-13.5T730 1394l21-18q23-18 51-42l57-48 55-48q27-23 48-42l33-30q12-11 12-12 0-26-38.5-55.5T903 1069q-13 0-25 1.5t-26 1.5l-66-1q-54 0-106.5 2.5T573 1076h-35q-43 0-77 7.5t-43 22.5zm657-278q-69 62-69 123 0 60 77 96t158 36q39 0 69.5-25t62.5-93l24-44q13-25 13-46 0-38-81.5-73.5T1200 770q-58 0-127 62zm623 966q17-20 34-38l94-109q-25 5-53.5 7t-57.5 2q-33 36-72 83t-67 47q-10 0-23-4t-28-10l-30-12q-16-6-30-10-12 17-26 35t-29 30q27 5 62.5 20t63.5 24 28 57q0 124-3.5 248t-3.5 251q0 38 7.5 58t24.5 20q24 0 27-40t14-183.5 11-287.5l1-39q0-43 6-69.5t16-39.5zM537 1509q-3-13-4-27t-1-28l1-15v-15l-58-21q-29-10-60-24t-60-14q-11 0-18.5 5.5T329 1392q0 26 21 43.5t59 28.5l38 13zm834-795q43 18 81 40.5t61 48.5q26-11 57.5-21t66.5-20l-241-76z" + }, + "children": [] + }] +}; +exports.u1F381 = u1F381; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F382.js b/dist/noto_emoji_regular/u1F382.js new file mode 100644 index 000000000..d7b28acf6 --- /dev/null +++ b/dist/noto_emoji_regular/u1F382.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F382 = void 0; +var u1F382 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2339 1730v146q0 174-130 318t-337.5 221.5T1304 2493q-198 0-329-18.5t-236-57-191.5-96-143-119.5-82-113-40.5-96-15-156v-118q-49-29-75-82t-26-155q0-166 45.5-311.5t121-226T537 797l1-105q0-21-10-22t-50.5-46T437 508q0-91 75-174t131-83q59 0 109 89.5T802 497q0 61-32.5 110.5T680 675l1 57q35-13 69-23t69-17q45-64 86.5-95t76.5-31 62.5 27 47.5 63l99-5q0-18 1-37v-33q-47-23-74-68t-27-110q0-81 76.5-163t128.5-82q59 0 109 89t50 157q0 63-33.5 112t-88.5 68q0 8 1 20v47q42 0 82.5 1t79.5 6q20-20 45.5-37.5T1596 603q30 0 55.5 23t45.5 55q48 9 95.5 24t94.5 33v-17q-42-11-72-63t-30-115q0-65 71.5-155.5T1991 297q60 0 109.5 91t49.5 157q0 61-33 109.5t-89 68.5l2 88q130 76 234.5 179.5t136.5 213 32 267.5q0 98-23.5 163.5T2339 1730zM2046.5 625.5Q2074 592 2074 543q0-55-34-111t-49-59q-42 10-86 72.5T1861 554t26.5 75.5T1965 659q54 0 81.5-33.5zM1596 678q-38 8-84.5 70.5T1465 852q0 61 27.5 87t76.5 26q53 0 82-33.5t29-82.5q0-9-2-18l-4-19q-18-54-40.5-92t-37.5-42zm-244.5-191q28.5-31 28.5-84 0-57-35-112t-49-58q-43 10-86.5 72T1166 412q0 47 26.5 76.5T1270 518q53 0 81.5-31zM1038 895q28-33 28-81 0-53-34-110.5T982 641q-35 4-82.5 68T852 811q0 50 24 83.5t80 33.5q54 0 82-33zM699 578q27-33 27-79 0-53-32.5-110.5T643 325q-45 14-88 74t-43 108q0 45 27.5 74.5T617 611q55 0 82-33zm1522 1159q-20-7-40.5-15t-41.5-8q-60 0-101.5 80t-94 122-118.5 42q-41 0-80.5-8.5t-79.5-8.5q-90 0-158.5 55.5t-131 77.5-131.5 22q-117 0-204-69t-145-69q-14 0-29 4l-32 8q-17 5-34.5 8.5T765 1982q-69 0-134.5-36.5t-107-136T412 1710q-14 0-27 4 0 201 19.5 270t103 156.5 199.5 141 264 74 333 20.5q356 0 537-73.5t280.5-186.5 99.5-242v-137zm-3.5-593Q2143 1019 2030 944q0 40 1 74.5t1 62.5q0 93-16.5 117.5T1962 1223q-49 0-67-25.5t-18-69.5q0-80 2.5-144.5T1884 860q-33-15-66.5-27.5T1750 811q2 11 3 20.5t1 19.5q0 61-32 109.5t-89 68.5q0 26 1.5 50.5t1.5 50.5v326q0 40-21 56.5t-50 16.5q-45 0-64.5-22.5T1481 1433q0-46 3-76t3-65q0-62 2-129.5t2-136.5q-42-13-71-63.5T1391 856q0-49 22-93l-38-2q-19 0-38-1l-1 229 1 21q0 39-21 56.5t-50 17.5q-51 0-67.5-28t-16.5-68v-59.5l2-56.5 3-52 2-54-53 4q4 20 4 45 0 60-32 109t-89 68q3 22 4 49v87l-1 35 1 70-1 164q0 7 1 12v10q0 40-21 56.5t-50 16.5q-42 0-62-21t-20-75q0-94 4-197.5t4-209.5q-43-22-70-60.5T778 828q-49 9-94 26v249q0 39-22 56.5t-50 17.5q-51 0-67-28t-16-69q0-26 1-47l2-40q0-19 1-36.5t1-37.5q-127 74-189.5 206T282 1469q0 66 18.5 94t55.5 28q22 0 46-5t47-5q49 0 84 41.5t69.5 110 67 93T769 1850q37 0 73-8t72-8q54 0 101 32.5t76 63.5 74.5 48.5 93.5 17.5q83 0 154-66t135.5-82 168.5-16q23 0 45 2t42 2q60 0 90.5-31.5t60-89 70.5-93.5 105-36q27 0 54 10t48 10q30 0 45-38t15-92q0-207-74.5-332zM2031 1498q-117 80-311 137t-418 57q-218 0-418-57.5T534 1466l-38-29q-39-28-67-61t-32-64q0-6 2-17t15-11q7 0 17.5 7.5T453 1309l23 22q55 56 182 126t294 110.5 351 40.5q218 0 417-57t371-180l19-12q13-8 25-8 10 0 11.5 9.5t1.5 19.5q0 38-117 118z" + }, + "children": [] + }] +}; +exports.u1F382 = u1F382; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F383.js b/dist/noto_emoji_regular/u1F383.js new file mode 100644 index 000000000..ec5cd802a --- /dev/null +++ b/dist/noto_emoji_regular/u1F383.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F383 = void 0; +var u1F383 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2223.5 1941q-116.5 186-344 276t-576.5 90q-572 0-808-233t-236-543q0-205 104-392t282-292 568-113q0-45-26.5-85t-79-67.5T1055 515q0-34 30-64.5t62-30.5 107 66 98.5 121 29.5 127q311 6 472 65t268.5 176 162.5 259.5 55 291.5q0 229-116.5 415zM1189 1608q-7 10-7 18 0 15 24 15h208q22 0 22-14 0-7-8-18l-99-106q-12-13-27-13-18 0-29 14zm-464-129q-7 7-7 13 0 5 3.5 8.5t11.5 3.5l301 33q15 0 15-13l-2-9-110-236q-6-11-16-11-8 0-15 7zm1101 261q2-4 2-7v-4q0-9-7-9-3 0-11 4l-97 65q-12 7-24 7-19 0-29-10l-64-51q-11-8-27-8-13 0-25 7l-78 55q-10 7-26 7-15 0-26-8l-85-62q-5-5-10.5-6t-11.5-1q-8 0-15 2.5t-12 7.5l-66 56q-13 11-29 11-11 0-23-7l-103-66q-7-4-19-4-18 0-32 11l-53 51q-6 6-15 9t-18 3q-10 0-18-4l-133-67q-6-3-11-3-8 0-8 10 0 2 1 4l2 7 93 265q3 11 10.5 16t15.5 5 12-3l89-45q10-6 27-6t28 7l111 69q9 5 22 5 8 0 16-2t13-7l88-77q10-8 26-8 6 0 12 1t11 6l88 71q5 5 12 7t15 2q14 0 25-6l105-72q10-6 29-6 17 0 26 5l82 49q5 4 13 4 16 0 24-20zm48-240q15-3 15-13 0-5-5-12l-187-200q-7-7-15-7-10 0-16 13l-104 238q-3 6-3 10 0 12 19 12z" + }, + "children": [] + }] +}; +exports.u1F383 = u1F383; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F384.js b/dist/noto_emoji_regular/u1F384.js new file mode 100644 index 000000000..296f67fd3 --- /dev/null +++ b/dist/noto_emoji_regular/u1F384.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F384 = void 0; +var u1F384 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2300.5 2055q21.5 17 21.5 45 0 92-164.5 172t-362.5 80q-75 0-157.5-12t-155.5-39q-8 0-16.5-4t-16.5-4q-12 0-14.5 9.5t-2.5 20.5v18q0 38 1 64v7q0 38-8.5 52.5T1389 2479q-175 0-197-6t-22-40q0-32 1-63v-59q0-8-4-14t-15-6q-4 0-6.5 1.5t-5.5 1.5q-83 28-168 43t-167 15q-198 0-362.5-81T278 2101q0-29 22.5-46t50.5-17q26 0 54.5 7t56.5 7q41 0 83-11t77-35l20-14q25-17 35.5-29.5T688 1937q0-22-20-31l-56-20q-57-19-111.5-77T446 1697q0-21 14.5-38t43.5-17q26 0 49.5 5.5t45.5 5.5q43 0 82.5-13.5T753 1601l19-14q16-13 28-29.5t12-31.5q0-28-51-39t-91-58-40-83q0-24 14-36t49-12q110 0 208.5-52t98.5-145q0-24-5.5-30t-21.5-6q-58 0-98.5-27T834 967t74-52.5 144.5-63.5T1186 712l59-80q11-14 25-28t31-14q16 0 30 14t25 28l60 81q62 85 133 139t144.5 62.5T1767 967q0 41-33 66.5t-94 31.5h-19q-8 0-14 6t-6 30q0 90 97.5 143.5T1900 1298q43 0 57 12.5t14 35.5q0 29-29 69.5t-67 55.5l-40 16q-19 8-32.5 16t-13.5 21q0 34 65 81.5t149 47.5q22 0 44.5-5.5t48.5-5.5q30 0 44 17t14 39q0 53-52 110.5t-112 77.5l-56 20q-20 8-20 31 0 14 11 27.5t34 27.5l21 14q35 24 76.5 35t83.5 11q37 0 69.5-7t41.5-7q28 0 49.5 17zm-705.5 51q28 0 54.5 1.5t54.5 1.5h30q33 0 59-14.5t26-46.5q0-12-4.5-21t-15.5-18-204-9-392.5-35-268-75.5-79-55T820 1820q-20 0-35 15t-15 37q0 26 56.5 78.5T1005 2032l73 17q98 22 208.5 38.5T1474 2104zM1070 309q-8-7-8-15 0-11 17-14l109-16q15-2 29.5-12.5T1240 225l45-95q6-14 15-14t15 15l47 94q6 14 22 25.5t30 13.5l108 15q18 2 18 14 0 9-8 15l-80 72q-9 10-14.5 23.5T1432 431q0 7 1 10l20 109q0 2 1 4t1 4q0 14-13 14-6 0-13-4l-96-55q-14-7-32-7-19 0-31 9l-96 53q-8 4-14 4-12 0-12-14 0-5 1-8l21-108 1-10q0-14-6-27.5t-16-22.5zm-33 869q0 13 13 27l21 25q31 37 86 60t123 35l73 14q95 19 199 19 23 0 42.5-9t19.5-40q0-23-13.5-37t-130.5-23.5-210.5-41.5-121.5-58-49-26q-24 0-38 17t-14 38zm70 454q-2 29-41 62t-39 59q0 23 21.5 40.5t48.5 17.5q30 0 91-38t61-97q0-36-6-69.5t-12-74.5-49-41q-30 0-58 13.5t-28 29.5q0 22 5.5 48t5.5 50zm237-40.5q-6 13.5-6 35.5 0 51 62.5 65t129 25 140.5 11q22 0 41-9t19-39q0-19-11-33.5t-30.5-15.5-120-15-133.5-26-68-12q-17 0-23 13.5zM897 2083q-24-24-59-24-34 0-58 24t-24 58 24 58 58 24q35 0 59-24t24-58-24-58zm441-302q-24 24-24 58 0 35 24 59t58 24 57.5-24 23.5-59q0-34-23.5-58t-57.5-24-58 24zm53-636.5q24 23.5 58 23.5 35 0 59-23.5t24-57.5-24-58-59-24q-34 0-58 24t-24 58 24 57.5zM1882 2148q-24-24-59-24-34 0-57 24t-23 58q0 33 23 58t57 25q31 0 57-24t26-59q0-34-24-58zm-771-1138q23 24 57 24 35 0 59-24t24-57q0-35-24-58.5t-59-23.5q-34 0-57 23.5t-23 58.5q0 33 23 57zm-180.5 512q38.5 31 79.5 31 12 0 15.5-6.5t3.5-16.5v-21q0-11 3.5-19t3.5-18q0-16-32-32t-44.5-24-26.5-8q-17 0-29 15.5t-12 33.5q0 34 38.5 65z" + }, + "children": [] + }] +}; +exports.u1F384 = u1F384; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F385.js b/dist/noto_emoji_regular/u1F385.js new file mode 100644 index 000000000..1f114aaa3 --- /dev/null +++ b/dist/noto_emoji_regular/u1F385.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F385 = void 0; +var u1F385 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2416 994q-79 74-198 74-89 0-158-41.5T1962 910q-31 42-45 109.5t-14 170.5q0 55 3.5 108.5t3.5 108.5q0 54 7 70t24 71 17 92q0 100-46.5 163.5T1802 1884t-69 25.5-11 28.5l-8 29q-14 41-49 75.5t-60 48.5-67 21l-29 5q-46 9-57 36.5t-97.5 125-260.5 137-257 43.5-123 8l-63 6q-33 3-67 5.5t-66 2.5q-151 0-237.5-83.5T149 2182t-45-293q0-20 1-39l2-36q7-98 53-199.5T280 1408l83-116q6-9 34-44t28-60q0-18-19.5-54t-19.5-87q0-117 83-197t216-99l40-5q20-2 40-2 27 0 64.5-18.5T910 681l88-54q103-63 300-130t365-67q119 0 233 28t217 87q20-7 39.5-11t39.5-4q147 0 225 71.5t78 208.5q0 110-79 184zM458.5 1433.5Q479 1448 529 1448q22 0 34-13.5t28-27.5q-22-8-36-26t-14-43q0-29 21-50t50-21q32 0 52.5 21t20.5 50q0 9-1 13 12-3 28-8.5t33-5.5q29 0 29 22 0 28-83.5 76T607 1548q0 25 18.5 36.5T681 1596q17 0 35.5-2t35.5-2q135 0 183 80.5t162 80.5q83 0 111-90.5t29-93.5l10-30q5-15 8.5-31.5t3.5-30.5q0-20-8.5-37t-139-89.5-238-121T656 1181q-53 0-87 13t-55.5 49.5-48.5 83-27 70.5q0 22 20.5 36.5zM1371 1919q19-99 63-143t44-83q0-23-50-80t-69-57q-22 0-26 55t-24 119.5-68 101.5-129 37q-44 0-109.5-20.5T900 1788t-66-64-85-24l-27 1q-102 0-162.5-24.5T499 1600q0-11 3-20l6-22q-53-5-87.5-21t-57.5-51q-73 126-103.5 225T229 1908q0 184 78.5 314T523 2352l18-1q58-4 234-8.5t301.5-42 191-104T1360 1974zm240.5-114.5Q1590 1784 1562 1784q-42 0-71 78t-29 107q0 16 7 29.5t26 13.5q44 0 91-54t47-113q0-20-21.5-40.5zm149-398.5Q1660 1275 1561 1191.5T1294 1011 989 881l-55-13q-56-12-102-19t-85-7q-117 0-172.5 62.5T519 1041q0 30 12 40.5t31 10.5q23 0 48.5-5.5t48.5-5.5q104 0 219 45t280 137.5 267.5 186 153 176T1711 1752q26 14 52 14 43 0 70.5-40.5t27.5-96.5q0-92-100.5-223zM2336 689q-46-40-117-40-65 0-112.5 42T2059 801q0 67 48.5 109.5T2225 953q63 0 110-48.5t47-115.5q0-60-46-100zM782 1884l16 14q8 8 13.5 16.5t5.5 17.5q0 16-10.5 21.5T782 1959q-62 0-112.5-42t-65-75.5T567 1808q-10 0-21 3t-20 3q-54 0-99.5-17.5T381 1748q0-14 10-23.5t30-9.5q15 0 30.5 1.5t30.5 1.5q17 0 37.5-3t39.5-7l35-6q15-3 24-3 27 0 46 18t33.5 57.5T743 1846zm185.5-422.5Q991 1438 1025 1438q33 0 56 23.5t23 57.5q0 33-23 56.5t-56 23.5q-34 0-57.5-23.5T944 1519q0-34 23.5-57.5z" + }, + "children": [] + }] +}; +exports.u1F385 = u1F385; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F386.js b/dist/noto_emoji_regular/u1F386.js new file mode 100644 index 000000000..9f855e33c --- /dev/null +++ b/dist/noto_emoji_regular/u1F386.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F386 = void 0; +var u1F386 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1337 1206.5q16-21.5 44-21.5 26 0 41.5 18.5t15.5 42.5q0 29-29.5 61.5T1347 1340q-9 0-17.5-26t-8.5-49q0-37 16-58.5zM1063 1505q-21-13-21-44 0-25 19.5-42t45.5-17q28 0 62.5 22.5t34.5 43.5q0 9-31.5 29.5T1105 1518q-21 0-42-13zm344 76q32 10 57.5 34t25.5 51-18.5 42.5-37.5 15.5q-31 0-51-26.5t-20-68.5q0-21 4.5-36.5t11.5-15.5 15 1zm-282-505l1-7q11-24 29-34.5t38-10.5q30 0 57 22t27 93q0 41-10.5 89t-22.5 48q-15 0-70-56.5t-55-110.5q0-16 6-33zm-104 271q-33-6-61-25t-41-52l-3-5q-2-5-2-11v-11q0-33 23.5-53.5T990 1169q28 0 54 20h1q27 25 47 55t34 63l10 18q5 11 5 19 0 7-6.5 10.5t-17.5 3.5q-27 0-50-4zm-128 251q27-10 54.5-14t55.5-4l25-1q23 0 37 4.5t14 14.5q0 15-51 82.5T918 1748q-10 0-15-1l-7-1q-30-7-44.5-28t-14.5-45q0-23 13.5-44.5T890 1598h3zm455 365q-24 25-55 25-30 0-53.5-22.5T1216 1906q0-8 2-12v-2q8-44 40-103.5t46-59.5q17 0 44 59.5t27 99.5q0 20-5.5 38t-17.5 33zm284-256q-39-21-83.5-66.5T1504 1577q0-12 27-19t63-8h40q31 0 58.5 12t44.5 38l3 6q5 9 7 19t2 19q0 31-22.5 52.5T1673 1718q-19 0-39-11h-2zm-131-370q22-93 56-139t81-46q35 0 55.5 23.5t20.5 53.5q0 53-77.5 91t-118.5 38q-11 0-14-7.5t-3-13.5zM467.5 1756q68.5-29 183.5-31h71q15 0 24 6t9 16q0 21-31.5 49t-75.5 55l-47 28q-26 15-57 28t-63 13-57-21.5-25-55.5q0-58 68.5-87zm980.5 672q-11 17-27.5 25t-34.5 8q-41 0-64-36t-23-94q0-38 7.5-76t15.5-74l5-26q6-28 14-47.5t21-19.5q29 0 67 94.5t38 175.5q0 17-3.5 33.5T1452 2422zm590.5-544.5Q1998 1864 1961 1834l-64-48q-22-15-36-29t-14-25q0-12 12.5-19t28.5-8h16q102 0 180.5 19.5T2189 1783l4 5q10 17 10 38 0 33-23 55t-64 22q-37 0-77.5-19.5zM2008 820q22 22 22 52 0 35-26 69.5t-71.5 62-97.5 56.5-79 29q-10 0-14-7.5t-4-18.5q0-40 76-152.5T1955 798q31 0 53 22zM407 1162l-4-5q-9-16-9-35 0-34 24-56t61-22q60 0 164 79t104 103q0 13-15 19t-35 6q-69 0-164.5-20.5T407 1162zm603-531.5q30 47.5 42 120.5l12 74q2 17 4.5 33t2.5 33-3.5 27.5T1052 929q-32 0-84.5-63.5t-82.5-113-30-89.5q0-31 20.5-55.5T931 583q49 0 79 47.5zM1356.5 517q22.5 37 22.5 108l-1 32q-9 145-26.5 225.5T1315 963t-39.5-61-36.5-141l-17-87q-5-20-8.5-43.5T1210 584q0-45 22-74.5t60-29.5q42 0 64.5 37zm-769 244q21.5-22 52.5-22 76 0 191.5 159T947 1080q0 5-4.5 10.5T927 1096q-9 0-18-5l-16-8q-67-35-125.5-72t-130-88.5T566 814q0-31 21.5-53zm308 1242Q851 2078 789 2164l-23 31q-23 30-46 48t-50 23l-6 2q-4 0-11 1-31 0-53-21.5t-22-52.5q0-29 23-67.5T736.5 2008 889 1907l16-8q10-5 18-5 7 0 12 5t5 14q0 15-44.5 90zm244.5 1q8-10 18-10t14.5 9 4.5 23q0 67-13 132t-28 137l-8 39q-8 33-22.5 61t-35.5 44l-6 3q-9 6-19.5 8.5t-21.5 2.5q-34 0-55-24.5t-21-62.5q0-30 14-67.5t35-71.5l25-42q26-41 50-84t55-80zm-518.5-618.5Q779 1420 779 1446q0 9-8 15.5t-21 8.5l-13 3q-78 20-162.5 34T415 1521q-24 0-46-4.5t-40-18.5l-6-4q-14-11-20.5-26t-6.5-32q0-34 29.5-59.5T412 1351q52 0 209.5 34.5zm912-506.5q28.5-84 53-153.5T1643 618t73-38q32 0 54.5 22.5T1793 659q0 26-13.5 54t-30.5 50l-23 31q-39 51-79.5 99.5T1559 987l-17 15q-9 9-20 9-17 0-17-19 0-29 28.5-113zm622.5 212h11q38 0 63.5 22t25.5 56q0 25-13 42l-5 6q-17 21-44.5 33t-61.5 17l-40 7q-67 11-134 18t-136 7q-12 0-23-3.5t-11-15.5q0-13 29.5-34t113.5-63l58-29q68-37 108.5-50t58.5-13zm-478 1327l-7-2q-23-13-40.5-40t-28.5-58l-13-37q-33-90-54-176.5t-21-99.5q0-22 16-22 23 0 77.5 68.5t116 150.5 61.5 140q0 41-23 62t-54 21q-13 0-30-7zm374.5-177.5Q2030 2262 1997 2262h-7q-49-7-99.5-62.5t-97-112.5-87.5-119l-11-18q-7-9-7-18t5.5-13.5 12.5-4.5q25 0 114 51t132 76.5 83 64.5 40 81q0 32-22.5 53.5zM2264 1596l-5 3q-16 8-31.5 11.5t-32.5 3.5q-6 0-13 1-17 0-35-5l-46-10-50-10q-85-17-160.5-42.5T1815 1502q0-15 46-26.5t120-18.5l68-7q48-6 96-6 86 0 120 27.5t34 61.5q0 39-35 63zm-842.5-110q-14.5 14-35.5 14t-35.5-14-14.5-36q0-21 14.5-36t35.5-15 35.5 15 14.5 36q0 22-14.5 36zM1188 1632q-15-15-15-36 0-20 15-35t37-15q20 0 34.5 15t14.5 35q0 21-14.5 36t-34.5 15q-22 0-37-15zm689.5 1006.5Q1852 2664 1815 2664q-36 0-62-25.5t-26-61.5q0-37 26-62t62-25q37 0 62.5 25t25.5 62q0 36-25.5 61.5zm387-239.5q-26.5 26-61.5 26-34 0-60-25.5t-26-61.5q0-38 25-63t61-25q37 0 62.5 25t25.5 63q0 35-26.5 61zm183-434q-25.5 26-62.5 26-36 0-61-26t-25-62 25-61.5 61-25.5q37 0 62.5 25.5t25.5 61.5-25.5 62zm-94.5-936q26-26 62-26t62 26 26 62-26 61-62 25-62-25-26-61 26-62zm-556.5-673.5Q1822 330 1858 330q37 0 62 25.5t25 61.5q0 37-25 62t-62 25q-36 0-61.5-25t-25.5-62q0-36 25.5-61.5zM754 356q25-26 61-26 37 0 62.5 26t25.5 62-25.5 62-62.5 26q-36 0-61-26t-25-62 25-62zM179 962.5q26-25.5 62-25.5t61 25.5 25 62.5q0 36-25 61t-61 25-62-25-26-61q0-37 26-62.5zm126 1058q-25 25.5-61 25.5t-62-25.5-26-61.5q0-37 26-62t62-25 61 25 25 62q0 36-25 61.5zm702.5 639Q981 2685 947 2685q-36 0-62-25.5t-26-61.5 26-61.5 62-25.5q34 0 60.5 25.5t26.5 61.5-26.5 61.5zm1488.5-1058q-22 22.5-53 22.5-32 0-54-22.5t-22-53.5 22-53 54-22q31 0 53 22t22 53-22 53.5zM2098.5 668q21.5-22 53.5-22 31 0 53 22t22 53q0 32-22 53.5t-53 21.5q-32 0-53.5-21.5T2077 721q0-31 21.5-53zM1226 267.5q22-21.5 53-21.5 32 0 54 21.5t22 53.5q0 31-22 53t-54 22q-31 0-53-22t-22-53q0-32 22-53.5zM408 599q22-22 54-22t54 22 22 53q0 32-22 54t-54 22-54-22-22-54q0-31 22-53zm-303.5 897.5Q82 1475 82 1443q0-31 22.5-53t54.5-22q31 0 53 22t22 53q0 32-22 53.5t-53 21.5q-32 0-54.5-21.5zm440.5 920q-22 22.5-53 22.5-32 0-54-22.5t-22-54.5q0-31 22-52.5t54-21.5q31 0 53 21.5t22 52.5q0 32-22 54.5zm907.5 246.5q-21.5 22-53.5 22-31 0-53.5-22t-22.5-54q0-31 22.5-53.5t53.5-22.5q32 0 53.5 22.5t21.5 53.5q0 32-21.5 54z" + }, + "children": [] + }] +}; +exports.u1F386 = u1F386; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F387.js b/dist/noto_emoji_regular/u1F387.js new file mode 100644 index 000000000..6ed684ee6 --- /dev/null +++ b/dist/noto_emoji_regular/u1F387.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F387 = void 0; +var u1F387 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1929.5 454.5Q1958 427 1997 427q38 0 66.5 27.5T2092 521q0 40-28.5 68t-66.5 28q-40 0-68-27.5t-28-68.5q0-39 28.5-66.5zM804 434q23-24 56-24t55.5 24 22.5 56-22.5 55.5T860 569t-56-23.5-23-55.5 23-56zM298 2124.5q-24 22.5-57 22.5-32 0-55-22.5t-23-55.5 23-56 55-23q33 0 57 23t24 56-24 55.5zm1068.5 431Q1344 2579 1311 2579t-56.5-23.5-23.5-56.5q0-32 23.5-55t56.5-23 55.5 23 22.5 55q0 33-22.5 56.5zm1022.5-1067q-23 23.5-56 23.5t-55.5-23.5-22.5-56.5 22.5-56 55.5-23 56 23 23 56-23 56.5zm-2262.5-277Q99 1184 99 1145q0-40 27.5-67t66.5-27q40 0 67.5 27.5T288 1145q0 40-29 67t-66 27q-39 0-66.5-27.5zM2232 763q36-35 85-35 51 0 86 35t35 86q0 50-35 86t-86 36q-50 0-85.5-36t-35.5-86q0-51 36-86zM278 470q36-35 85-35 50 0 85 35t35 85q0 49-35 85t-85 36-85.5-35.5T242 555t36-85zm2137 2042.5q-26 26.5-61 26.5-38 0-64-26t-26-62q0-37 26-63t64-26q35 0 61 26.5t26 62.5q0 35-26 61.5zM556.5 2530q-28.5 28-70.5 28-40 0-69-29.5t-29-68.5q0-40 29-69.5t69-29.5q42 0 70.5 28.5T585 2460t-28.5 70zm938-598q-61.5 70-156.5 70-99 0-159-67t-60-178q0-100 77-256.5t77-427.5q0-61-2.5-119t-2.5-118q0-97 2.5-191t2.5-191V121h131v328q0 147-1.5 291t-1.5 299q0 303 77.5 457.5T1556 1761q0 101-61.5 171zM781 1150l-72-24q-127-42-164.5-85.5T507 940q0-67 48-108.5T677 790q158 0 271.5 211t113.5 315q0 11-6.5 22t-18.5 11q-13 0-35.5-26.5T919 1236t-138-86zm824-105q52-114 131-189t167-75q54 0 84.5 27.5T2018 873q0 95-143 147.5t-201 139-93 86.5q-11 0-19.5-8t-8.5-22q0-57 52-171zm-734 790q42 2 86 12.5t44 29.5q0 37-84.5 58T775 2000t-116 107.5-125 63.5q-37 0-65-21.5t-28-66.5q0-109 126.5-179t277.5-70zm258 245q10 2 22.5 6.5t12.5 18.5q0 10-6.5 20t-15.5 20l-17 19q-25 26-62 153.5T931 2445q-37 0-65-32t-28-86q0-101 90.5-174t200.5-73zm660.5 420q-29.5 28-71.5 28-28 0-52.5-10.5T1616 2479t-38-83-16-135-19-115.5-16-55.5q0-13 7-21t21-8q65 0 164.5 124.5T1819 2412q0 60-29.5 88zM578 1555q-71 20-128.5 52.5T334 1640q-55 0-92-36t-37-87q0-92 92.5-142t229.5-50q111 0 223 38t191.5 100.5T1021 1566q0 10-7 17.5t-22 7.5q-21 0-86.5-28T730 1535q-81 0-152 20zm1675.5 768q-32.5 39-82.5 39-86 0-141.5-114.5t-134.5-200-192-123.5l-18-5q-17-5-31-14t-14-21q0-24 33-36.5t83-12.5q161 0 345.5 126t184.5 271q0 52-32.5 91zm213.5-398q-34 35-82 35-58 0-129.5-63T2082 1782.5t-200-51.5q-22 0-40 2.5t-45 2.5q-15 0-28.5-4.5T1755 1712q0-12 10.5-26t26.5-26l15-10q55-31 115.5-44.5T2045 1592q218 0 337 77.5t119 172.5q0 48-34 83zm-190.5-849.5q53.5 36.5 53.5 97.5 0 53-43.5 88t-123.5 38l-53 2q-145 8-241.5 54t-136 94.5-62.5 48.5q-16 0-22-12t-6-28q0-40 39.5-115t133.5-152.5 176.5-114.5 160.5-37q71 0 124.5 36.5z" + }, + "children": [] + }] +}; +exports.u1F387 = u1F387; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F388.js b/dist/noto_emoji_regular/u1F388.js new file mode 100644 index 000000000..cb49172fe --- /dev/null +++ b/dist/noto_emoji_regular/u1F388.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F388 = void 0; +var u1F388 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1142 2179h-22q23 21 42 44l33 41q8 11 18 26t10 27q0 29-66 56.5t-123 27.5q-21 0-32-20t-11-73q0-29 2.5-50t2.5-41q0-13-1-27-51 57-105 85t-102.5 40-144.5 12l-34-1h-36q-197 0-277 81t-84 182-55 101q-26 0-35.5-11.5T112 2645q0-100 54.5-193.5t146.5-146 275-52.5h84q124 0 185.5-32.5T961 2120q-165-151-251-380.5T624 1238q0-259 113.5-479.5T1053 414t455-124q234 0 439 117.5T2270 730t118 441q0 291-157.5 519T1780 2049t-614 131q-13 0-24-1z" + }, + "children": [] + }] +}; +exports.u1F388 = u1F388; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F389.js b/dist/noto_emoji_regular/u1F389.js new file mode 100644 index 000000000..3c6167330 --- /dev/null +++ b/dist/noto_emoji_regular/u1F389.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F389 = void 0; +var u1F389 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1552 1804q20 0 38.5 4t32.5 13q-34 157-160 244t-322 160l-537 221-73 31-126 52-30 13q-27 12-51.5 21t-40.5 9q-29 0-48.5-19.5T215 2502q0-32 12.5-60t23.5-57l39-109q51-140 117-316.5t99-263.5l56-148q41-108 79.5-199.5t96-152T867 1111q5 25 16.5 49t27.5 44q-72 27-103 87.5T777 1445q0 127 70.5 248.5t191 195T1289 1962q92 0 156.5-42t86.5-114q5-2 11-2h9zm-286.5-375q13.5-33 32.5-98t38-120l25-73h-1q21-59 47-109t61.5-85 98.5-52.5 91-41 34.5-64.5 24.5-94.5 42-77.5 84-33l33-5q30-5 54-22.5t43-55.5l21-44q22-47 63-74t95-33l4-2q13 0 30.5 17t34.5 49.5 33 60.5 16 36q0 13-18.5 22t-21.5 11l-52 29q-38 22-69.5 77.5t-60 88.5-92.5 37l-33 2q-61 6-73 28.5t-46.5 92-75.5 108-105 57-120.5 79.5-104.5 160-63 122q-22 36-32 71t-25 35q-8 0-17-12t-9-32q0-22 13.5-55zm-367-1049q51.5-99 61-102t17.5-3q37 0 72 32.5t52.5 42T1119 374t-22 42.5-44.5 69T1030 559q0 19 11.5 35.5T1074 627l22 18q30 28 48 65t18 79q0 62-47.5 138.5T1067 1056q0 38 31 96t31 102q0 59-31.5 121.5T1025 1459l-13 4q-18 6-37.5 9.5T944 1476q-8 0-9.5-2t-1.5-5q0-9 13-17.5t35-56 22-108.5q0-39-22-76t-41-67-19-86q0-47 28-115.5T977 832q0-56-42-92.5t-65-79T847 560q0-81 51.5-180zM2442 1866l-16 21-24 39q-13 23-19 29.5t-21.5 32-35.5 25.5q-82 0-131-50t-97-75-108-25q-29 0-58.5 2t-58.5 2q-85 0-122-28t-85-60.5-114-32.5-128.5 23-116.5 57l-10 6q-7 4-15 4-6 0-8.5-7.5t-2.5-15.5q0-22 9.5-39t30.5-33l22-17q80-64 148.5-92t133.5-28q33 0 66.5 8t65.5 25l42 29q35 26 72.5 43t71.5 17q35 0 86-15t85-15h7q72 5 142.5 53t143.5 72l16 5q7 3 15 4h8q10 0 13 4.5t3 8.5q0 10-10 23zM1357.5 458q30.5-67 53.5-67 17 0 37 7t34 13l23 10q24 12 41 25.5t17 23.5q0 7-33.5 90.5T1470 644q-14 0-78.5-25t-64.5-41q0-53 30.5-120zM1821 2189q22 34 30 52.5t8 31.5q0 17-22 30t-29 18l-19 15q-19 16-36.5 25t-33.5 9q-26 0-32-13t-17-34l-20-37q-10-19-17-38t-7-35q0-31 33.5-51t53-32 42.5-12q22 0 35.5 23t15.5 26zM442 865q-7-11-36-49t-29-58q0-17 37.5-46.5T479 682q17 0 30.5 16t34.5 35 50 58.5 29 49.5q0 13-14 19.5t-48.5 43T508 940q-10 0-25.5-18T458 889zm1929-69q8 28 18 59.5t10 58.5q0 23-14.5 31.5T2341 959l-54 10q-26 5-54 7l-16 3q-8 2-13 2-17 0-27.5-38t-10.5-70q0-36 10.5-46t89.5-22.5 92-12.5q9 0 13 4zm-443 557q1-5 1-10v-30q0-14 1-27t6-25q21-5 43.5-6t45.5-1q21 0 42-2t44-2q20 0 23 10.5t3 38.5q0 23 5 44.5t5 44.5q0 14-10 17t-25 3q-8 0-15-1h-45q-45 0-85-5.5t-40-36.5q0-7 1-12zM402 328q17-13 39.5-35t39.5-22q14 0 38 31t40 44l18 16q8 8 14 14.5t6 11.5q0 6-34.5 49.5T496 481q-17 0-37.5-22t-47-50.5T385 358q0-17 17-30zm1827 2100.5q-19 18.5-38 48t-40 29.5q-13 0-64-33t-51-53q0-18 34.5-45t46.5-44 28-17q4 0 53.5 27.5t49.5 50.5q0 18-19 36.5zM1456 1319q54 61 87.5 116t56.5 112q-48 0-96 15-17-42-41-82t-52-77q17-31 26.5-49.5t18.5-34.5zm-1152-60q-2 17-12 30.5t-28 13.5q-15 0-32-7t-31-12l-16-5q-14-5-25.5-14t-11.5-22l3-17h-1q6-31 18-56.5t29-25.5q11 0 18.5 4.5t28.5 9.5l35 9q17 5 30.5 10t13.5 10-3 16l-13 43q-3 10-3 13zm881-41q-3-25-15-52.5t-23-47.5q38 11 71 26.5t66 33.5l-25 78q-36-23-74-38z" + }, + "children": [] + }] +}; +exports.u1F389 = u1F389; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F38A.js b/dist/noto_emoji_regular/u1F38A.js new file mode 100644 index 000000000..990474af3 --- /dev/null +++ b/dist/noto_emoji_regular/u1F38A.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F38A = void 0; +var u1F38A = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M777.5 495Q954 320 1196 320q177 0 326.5 98.5T1741 678q94-32 189-32 240 0 416.5 175t176.5 420q0 153-72.5 285T2263 1732.5t-170 74.5q-26 0-51-12t-55-53q-121-167-210.5-386T1655 862l-70 48q-232 156-474.5 232.5T759 1219q-76 0-117-89t-41-215q0-245 176.5-420zM1766 794q22 262 108.5 487.5T2093 1689q140-51 226.5-175t86.5-272q0-202-143-340t-333-138q-82 0-164 30zM759 1101l60-8q201-26 424.5-127.5T1634 727q-57-134-176.5-211.5T1196 438q-193 0-334.5 140.5T720 914q0 97 39 187zm795 148q0 9 1 24 0 69-46 119t-125 60.5-93 85.5l-9 48q-17 109-127.5 118T1044 1818v21.5l2 10.5 2 5v4q0 12-8 21t-21 9q-6 0-12-3l-71-31q-15-5-19.5-16.5T912 1786q0-73 43-117t84-50 73-12.5 42.5-81 48.5-113 97-48.5 91-39.5 32-83.5v-18l-1-8q0-11 7.5-20.5t21.5-9.5q6 0 12 3l71 31q17 7 18 21zm273.5 1064q-30.5 49-56.5 49-4 0-11-2l-70-12q-10-2-17-10.5t-7-19.5 9-22l7-7q14-14 26.5-37t12.5-48q0-49-54.5-94t-54.5-98q0-24 7.5-45t16.5-41l16-37q7-17 7-34 0-40-56-94.5t-56-130.5q0-43 24.5-87t47.5-44l13 1 71 14q9 0 16 8.5t7 19.5q0 13-21 38.5t-21 64.5q0 53 56 107.5t56 116.5q0 26-7.5 49t-15.5 42l-16 36q-8 17-8 30 0 31 31 51.5t54.5 59.5 23.5 81q0 46-30.5 95zm-591-74.5q3.5 20.5 3.5 43.5 0 63-37 101t-75.5 57.5-40.5 57.5l-2 35q-6 72-38.5 109.5T989 2680q-3 0-5-1l-74-30q-8-3-13-10.5t-7-15.5q0-21 28.5-34t33.5-73l5-51q2-28 22.5-58t42.5-45l43-28q21-14 33.5-32t12.5-53q0-17-3-35t-3-39q0-87 76.5-120t76.5-110q0-10-1-17t-2-10l-2-2-1-9q0-11 8-20.5t21-9.5q4 0 12 2l69 28q2 0 13 8.5t11 57.5-26.5 94.5-76.5 65-50 70.5q0 15 3.5 35.5zM274 1882q-18 0-26-11l-47-59q-7-7-7-17 0-13 10-21t27-8q49 0 80.5-53t63.5-71.5 109-23.5 99.5-71 60-91.5T719 1430q13 0 23 1.5t20 1.5q42-2 70-33t32.5-54 28.5-23q14 0 23 11l47 58q5 8 5 19v8q0 28-49 79t-111 51q-14 0-24-1h-18q-51 0-71.5 58t-59.5 94-110 36q-64 0-81 18.5t-56.5 73T274 1882zm492 124h-91q-14 0-22-9t-8-22v-90q0-12 9.5-21t20.5-9h91q11 0 19.5 9t8.5 21v90q0 16-10 23.5t-18 7.5zm-332-739q10-8 21-8t22 8l63 64q8 10 8 21t-8 21l-63 64q-5 4-10.5 7t-11.5 3q-5 0-10.5-3t-10.5-7l-64-64q-8-8-8-21t8-21zm-242 248q-9 8-22 8t-21-8l-64-64q-8-8-8-21t8-20l64-65q11-9 21-9 5 0 11 2.5t11 6.5l63 65q9 9 9 20 0 10-9 21zm457 618q5 3 6.5 8.5t1.5 11.5q0 14-8 21l-64 64q-9 9-21 9-13 0-20-9l-65-64q-5-4-7-10t-2-11 2-10.5 7-9.5l65-64q7-10 20-10 12 0 21 10zm791 360q8 10 8 21 0 12-8 20l-61 61q-10 8-21 8-13 0-21-8l-60-61q-9-7-9-20 0-6 2-12t7-9l60-61q4-5 10-7t11-2q12 0 21 9zm756-627q8-10 21-10 5 0 10.5 2.5t9.5 7.5l60 60q9 9 9 21 0 13-9 20l-60 60q-4 5-9.5 7.5t-10.5 2.5q-14 0-21-10l-62-60q-3-4-5.5-9t-2.5-11q0-7 3-12l5-9zm-127 640q8 8 8 20 0 11-8 21l-61 60q-11 8-22 8-5 0-10.5-2t-9.5-6l-60-60q-9-9-9-21t9-20l60-61q9-9 20-9 7 0 12 2.5t10 6.5zM914 2292q0 14-8.5 22t-20.5 8h-91q-13 0-21.5-9t-8.5-21v-91q0-10 8.5-19t21.5-9h91q12 0 20.5 8.5t8.5 19.5v91zm549-117q11 0 20 9t9 20v85q0 14-9 22t-20 8h-86q-13 0-21-8t-8-22v-85q0-11 8-20t21-9h86zm-896 221q12 0 21 9t9 20v92q0 11-9 19.5t-21 8.5h-90q-11 0-21-7.5t-10-20.5v-92q0-14 10-21.5t21-7.5h90zm-199-200q10 8 10 22 0 12-10 20l-63 65q-10 8-22 8-5 0-10.5-2t-9.5-6l-64-65q-9-7-9-20 0-14 9-22l64-63q4-5 9.5-7.5t10.5-2.5q12 0 22 10zM81 1000l33-55q3-6 10-10.5t14-4.5q6 0 11 2l10 6q14 14 29 21.5t37 7.5q11 0 24-4l28-7q13-4 30-7.5t37-3.5q62 0 105 60.5t102 60.5q10 0 20 8t10 22l-3 72q0 18-13.5 23.5T533 1197q-41 0-76.5-18.5T401 1134l-21-27q-12-15-24.5-22t-35.5-7q-21 0-48.5 10.5T207 1099q-50 0-90-31.5T77 1015q0-8 4-15zm2411 1436q14 9 14 23 0 8-5 16l-46 77q-9 15-25 15l-5-1h-3q-64 0-143-43.5T2164 2399q-73-11-124-54t-79.5-99-28.5-73q0-7 2.5-11.5t6.5-9.5l63-64q8-8 21-8 20 0 34.5 35.5t39 70.5 55.5 57q22-81 63.5-124.5T2325 2075q53 0 83 38.5t30 92.5q0 46-31 92.5t-84 74.5q57 44 105.5 51t57.5 9zm-229-169q43-19 58.5-32.5t15.5-27.5q0-11-8-18.5t-21-7.5q-22 0-34 21t-12 49q0 11 1 16z" + }, + "children": [] + }] +}; +exports.u1F38A = u1F38A; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F38B.js b/dist/noto_emoji_regular/u1F38B.js new file mode 100644 index 000000000..f21adf12c --- /dev/null +++ b/dist/noto_emoji_regular/u1F38B.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F38B = void 0; +var u1F38B = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1647 990q-33-36-66.5-69t-66.5-63q35-57 55-114 49 36 97 77.5t96 89.5q-22 26-51.5 48.5T1647 990zm696 1194q-22 19-46 26t-49 7q-28 0-56-6l-55-12q-11-110-29.5-210.5T2066 1795q14 5 28 6.5t29 1.5q36 0 71-9.5t58-28.5q29 96 52 200t39 219zM774 441q10-7 27-8h14q121 17 226.5 49.5T1237 554q-11 23-17.5 46.5T1210 647q-123-66-237.5-103.5t-161.5-45-47-36.5q0-14 10-21zm1371 1847q19 10 42.5 14t49.5 4q35 0 66.5-8.5t50.5-27.5q9 77 14.5 157t8.5 165q-19 15-47.5 24t-60.5 9q-33 0-64-9.5t-51-23.5l1-67q0-62-2.5-121t-7.5-116zM937 1124q20 10 30.5 29t10.5 41q0 16-4 27l-17 42q-73 176-210.5 336T440 1818l-13 4q-6 2-12 2-31 0-55-22l-207-199q-23-20-23-57 0-26 15.5-46.5T185 1472q17 0 121-59t201.5-167.5T633 1077t81-60q18 0 37 10zm-522 620q141-52 253.5-173.5T863 1274l37-80-186-99q-75 127-151.5 209t-153 138.5T208 1547zm2047.5-232.5q-7.5 16.5-21.5 28.5l-235 199q-13 11-27 15t-28 4q-56 0-167.5-88.5t-189-210.5-114-228-36.5-133q0-20 9-39t26-31l201-141q11-8 23-11t26-4q57 0 87 68.5t100.5 175.5 143.5 179 141.5 96 68.5 86q0 18-7.5 34.5zM2386 1476q-126-42-240.5-177T1956 1010l-27-55-202 143q52 201 152 338t221 209l51 30zm-757 404q23 11 36 32t13 46q0 10-1 15l-10 42q-23 99-73 221t-116 217-124 143.5-74 55-33 6.5q-14 0-26.5-3.5T1197 2643l-275-192q-17-12-26.5-31t-9.5-39q0-49 51.5-78.5t122-101.5 125.5-172 76.5-185 87.5-85q19 0 36 9zm-382 695q60-41 109-96.5t85-115.5 66-131.5 49-138.5l39-136-246-113q-47 175-140 305.5T1011 2352l-41 29 23 16q15 12 36 26l94 66q56 40 124 86zM170 809l-2-10 6-25q12-53 51.5-124t108-117T492 487q55 0 92.5 20.5T641 562q11-11 36.5-23.5T742 526q61 0 138 46t115 129.5 38 190.5q0 31-3 53t-3 23l-4 6-9 2q-200-81-300-202 0 82-42.5 160t-106 133-72.5 55l-4 3-4-1-6-6q-23-62-33-118t-10-108q0-38 5-72t18-66q-117 51-281 57zm1194 164q-9 0-64-92.5T1245 689q0-98 62.5-180.5T1451 426q5 0 9.5 1t9.5 1l-2-12q0-6-1-14 0-83 86-147t181-64q84 0 165.5 39t106.5 64l4 8-4 7q-126 102-244 142 123 83 176 307l-2 8q-5 2-25.5 5t-52.5 3q-94 0-176-27t-133-81q-10 67-54 145t-117 162l-7 4zm409.5 751q-12.5 50-31.5 90l-12 26-4 2-8-3q-173-120-233-248-26 46-74 86t-133.5 69.5T1152 1776l-8-1-3-9q0-110 22.5-192.5T1236 1436q-123-11-263-77l-6-5 1-8q7-13 58.5-62t115-78 126.5-29q87 0 159.5 47t77.5 122q9-3 23-6.5t30-3.5q76 0 152 80t76 204q0 54-12.5 104z" + }, + "children": [] + }] +}; +exports.u1F38B = u1F38B; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F38C.js b/dist/noto_emoji_regular/u1F38C.js new file mode 100644 index 000000000..d27a7ccb4 --- /dev/null +++ b/dist/noto_emoji_regular/u1F38C.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F38C = void 0; +var u1F38C = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2504 1017l-274 652q-5 11-16 18.5t-27 7.5q-123 0-235.5-43.5t-186-152.5-173-135.5T1391 1337l-39 81 362 687q7 16 7 30 0 24-19 44t-46 20q-17 0-33-10t-24-27l-299-634-297 634q-8 19-25 28t-34 9q-27 0-45.5-20t-18.5-46q0-7 1-14t5-14l362-687-37-81q-153 0-233.5 34.5T817 1516t-179 143-197 35l-27 1q-17 0-28-7.5t-16-18.5L96 1017q-4-5-4-17 0-17 12-29.5t29-12.5q90 0 160-26.5t159-127T652 658t240-50l37-1q11 0 22 7t18 18l331 692 333-692q5-11 15.5-18t22.5-7l38 1q141 5 252.5 55.5T2177 836t290 122q17 0 28.5 12.5t11.5 29.5q0 11-3 17zm-1351 202l-2-6-230-481q-8-13-20.5-23.5T867 698q-18 0-26.5 1t-12.5 1q-80 13-136.5 36.5t-93 51.5T483 897.5t-143.5 105T246 1031t-29 37q0 10 4 19.5t6 18.5l136 321q21 51 34 79l26 59q10 20 32 28.5t57 8.5q33 0 104-26t129-107 106.5-122 123.5-64 127-25.5 52-29.5q0-5-1-9zM794 994q43 47 43 111 0 85-61.5 150T632 1320q-62 0-106-43.5T482 1165q0-84 56.5-151T681 947q70 0 113 47zm1580 112q2-8 6.5-17t4.5-19-6-21.5-93-35.5-184-131-191.5-145.5T1733 698q-25 0-33.5 9t-19.5 25l-229 479-4 18q0 14 13 18l22 8q131 17 211.5 60t151 140.5 140.5 122 103 24.5q48 0 69-15t31-40zm-299.5 171.5Q2030 1320 1970 1320q-84 0-145.5-66t-61.5-149q0-64 43.5-111t112.5-47q88 0 144 69.5t56 148.5q0 70-44.5 112.5z" + }, + "children": [] + }] +}; +exports.u1F38C = u1F38C; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F38D.js b/dist/noto_emoji_regular/u1F38D.js new file mode 100644 index 000000000..88b08d048 --- /dev/null +++ b/dist/noto_emoji_regular/u1F38D.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F38D = void 0; +var u1F38D = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1843 1846q16 6 29.5 21.5t13.5 38.5v426q0 21-15.5 33t-87.5 42.5-203.5 52.5-290.5 22q-237 0-418-50.5T690 2332v-426q0-29 19-44t43-23V861q0-116 60.5-203T967 571q32 0 63.5 12t53.5 34V406q0-115 61-203.5t152-88.5 152.5 86.5T1511 406v336q29-23 56.5-35t59.5-12q89 0 152.5 85t63.5 207v859zm566.5-224q-50.5 12-107 32t-78 31-46.5 22.5-87 50.5-76 51-44 33q-5-17-12-26t-19-21v-675q44-52 104-83t110-31q12 0 21.5 4t9.5 18q0 9-5 21.5t-13 25.5l-7 12q-4 9-27 52.5t-23 68.5q0 19 13 19 3 0 53.5-15t146.5-15q48 0 70 7.5t22 22.5q0 22-28.5 41t-86.5 67.5-92 92.5l-5 11q-3 6-3 12t13.5 11.5 36.5 11.5l46 13q25 8 48 18l28 13q38 19 63 38t25 37q0 17-50.5 29zM482 1010q37 6 86.5 34.5T655 1112v668q-16 11-25.5 22.5T611 1831l-7-7q-165-129-359-188-16 0-60.5-13.5T140 1593q0-22 41.5-48.5t107.5-52 89-27 23-14.5q0-12-26-45.5T237 1284l-15-10q-20-13-28.5-24t-8.5-23q0-15 22-22.5t70-7.5q46 0 91 5t89 19l10 4q5 2 10 2 13 0 13-19 0-13-5.5-28.5T471 1148l-16-31q-4-8-7.5-15.5T441 1087q-3-4-7-12l-8-15q-5-8-8-16.5t-3-15.5q0-14 10-18t21-4q10 0 20 1zm1128 780q12-9 12-22 0-36-88-88.5t-245-52.5q-116 0-196.5 25t-123 56-42.5 39q-4 8-4 13 0 10 11 18l330 194q6 6 18 6t21-6zm-735-778.5q41 59.5 92 59.5 44 0 87-55.5t43-144.5q0-99-41-159.5T967 651q-59 0-96 66t-37 144q0 91 41 150.5zm660.5 124q39.5 61.5 91.5 61.5 46 0 89-58t43-152q0-89-40-149.5t-92-60.5q-60 0-95.5 65.5T1496 987q0 87 39.5 148.5zm-330.5-579q39 59.5 92 59.5 50 0 91-63t41-147q0-89-41.5-149t-90.5-60q-59 0-95 64t-36 140q0 96 39 155.5zM1553 2025l-107 10q-56 6-110 6v361q59 0 112.5-5t104.5-13v-359zm-295 17q-60-3-113.5-4.5T1040 2027v360q51 8 105.5 11t112.5 4v-360zm-296-26q-16 0-81.5-15.5T768 1967v343q35 18 83 34.5t111 28.5v-357zm846-49q-33 16-80 27t-96 19v356q55-12 97-27t79-32v-343zm-64.5-384q55.5-26 55.5-69 0-37-25-37-5 0-16 5.5t-14 5.5q-33 18-56 25.5t-52 7.5q-56 0-100-19t-57-19-18.5 10.5-5.5 20.5q0 43 50 69t120 26q63 0 118.5-26zM807 1428q-8 5-10.5 13.5T794 1458q0 46 50 69.5t120 23.5q64 0 117-25t56-69q0-13-3-25t-20-12q-8 0-17.5 5.5t-12.5 5.5q-30 17-55 25t-55 8q-61 0-104-19.5t-52-19.5q-3 0-6 1zm608-453q-27 17-53 25.5t-58 8.5q-30 0-64-7t-59-20v93q26 12 53.5 17t55.5 5q29 0 64-5.5t60-22.5v-51q0-18 1-27v-16z" + }, + "children": [] + }] +}; +exports.u1F38D = u1F38D; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F38E.js b/dist/noto_emoji_regular/u1F38E.js new file mode 100644 index 000000000..6c8a9312b --- /dev/null +++ b/dist/noto_emoji_regular/u1F38E.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F38E = void 0; +var u1F38E = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1134 2331q14 0 23.5 8.5t9.5 22.5v115q0 14-9.5 23.5t-23.5 9.5H292q-14 0-23.5-9.5T259 2477v-115q0-14 9.5-22.5t23.5-8.5h842zm1173 0q14 0 23.5 8.5t9.5 22.5v115q0 14-9.5 23.5t-23.5 9.5h-844q-14 0-22.5-9.5t-8.5-23.5v-115q0-14 8.5-22.5t22.5-8.5h844zm163.5-212.5q-44.5 54.5-102 65.5t-71 25.5-47.5 18.5l-31 4q-81 13-165.5 15.5T1884 2250q-84 0-168-2t-166-16l-31-4q-35-5-48-19t-76.5-26.5-95.5-62.5q-32 50-94.5 62t-76.5 27-48 19l-31 4q-81 13-165.5 15.5T714 2250q-84 0-169.5-2.5T380 2232l-32-4q-35-5-46.5-18.5t-72.5-26-103-67.5-42-130q0-110 78-186t103-105.5 77-136.5 144-159q-48-40-75-96.5T384 1179q0-26-4.5-45t-4.5-38q0-70 35-124t91-89l-1-9q2-42 32.5-67.5T622 773q-19-80-28.5-176.5T584 411q0-67 7-87.5t38-33.5 78-13q57 0 91 13.5t39.5 34.5 5.5 92q0 89-10 187t-27 169q65 11 91.5 36.5T926 874l-1 9q56 35 91 89t35 124q0 17-2 33.5t-6 36.5q0 143-102 233 57 32 95.5 81t67.5 111l28 55q26 50 83 102t84 88q31-43 88.5-91t101.5-144q0-5-1-14 0-51 38.5-91t91.5-71l19-14q9-7 19-12-24-22-44-47.5t-32-56.5q-87-31-139.5-89t-52.5-133q0-93 58.5-175.5T1625 748q6-26 18-48.5t28-42.5l-57-42q-34-26-61-75.5T1526 435q0-57 33.5-93.5T1655 305q10 0 22 3l22 7 20 7q9 4 15 4 16 0 22.5-26.5t43-56.5 85.5-30q45 0 80.5 25t42.5 56.5 8.5 34 11.5 2.5q11 0 37-13t48-13q62 0 95 35.5t33 92.5q0 72-39.5 127T2100 654q14 19 24.5 43t15.5 49q116 62 178.5 146t62.5 181q0 75-52.5 133.5T2191 1295q-14 31-34 56.5t-44 47.5l11 6q12 6 67 43.5t76 83.5l9 19q8 18 8 36 0 5-1 9l-2 10q21 47 45.5 79t47.5 52l41 38q65 63 82.5 116.5t17.5 95.5q0 77-44.5 131.5zM888 1332.5q71-61.5 71-153.5 0-18-3-35-24-20-50-36l-53-31q-87-52-106-82.5T712 964q-12 0-31.5 30.5T576 1076t-106 68l-2 16q0 9-1 19 0 92 70.5 153.5T712 1394q105 0 176-61.5zm-99-112q-16-12.5-16-35.5 0-18 12-30.5t37-12.5q28 0 39.5 14t11.5 31q0 20-13 33t-37 13q-18 0-34-12.5zM565 1156q11-14 39-14 25 0 37.5 12.5T654 1185q0 23-16.5 35.5T601 1233q-22 0-34.5-13.5T554 1187q0-17 11-31zm638.5 703.5q-41.5-59.5-98-107t-84-137-65.5-123-86-48.5q-35 16-74.5 24.5T712 1477q-42 0-81-8t-73-25q-52 16-88.5 50.5t-66 124.5-79.5 132-96 104.5-46 121.5q0 64 43.5 101.5T327 2116t129.5-40.5T557 1979t51-56q14 0 18.5 22t25.5 34 62 12q45 0 64.5-13.5t23.5-34 17-20.5q22 0 50 53t99.5 96.5T1100 2116q69 0 107-41.5t38-97.5q0-58-41.5-117.5zM786 1514q13 0 21 9t8 23l-45 334q-2 14-12.5 23t-24.5 9h-40q-14 0-24.5-9t-12.5-23l-45-334q0-14 8-23t21-9h146zm277 391q25 11 42.5 32t17.5 49q0 32-19.5 42.5T1059 2039q-77 0-146.5-80.5T843 1809q0-26 7-36.5t16-10.5q28 0 69.5 50t88.5 73zm-485-133.5q8 9.5 8 34.5 0 66-68.5 149.5T369 2039q-29 0-47-12t-18-43q0-54 65-82.5t97-61.5l22-24q27-30 44-42t30-12q8 0 16 9.5zM1725.5 690q-25.5 37-25.5 68 0 49 55 81.5t133 32.5q70 0 122-29.5t52-87.5q0-38-22-70.5t-22-48.5q0-17 27.5-30t72-61.5T2162 454q0-24-15-43t-39-19q-19 0-35.5 13t-27.5 31q-13 23-34.5 92.5T1959 598q-11 0-18-8.5t-7-19.5q0-15 4-33l7-37q4-20 7.5-42.5t3.5-47.5q0-46-19.5-72.5T1884 311t-50 26.5-17 79.5q0 28 4.5 57t10.5 55l5 16q2 8 2 16 0 17-7.5 25.5T1813 595q-18 0-31.5-19t-25.5-57l-11-34q-22-62-42-77.5t-44-15.5q-25 0-39 19t-14 43v10q0 26 41 75.5t72.5 64T1751 636q0 17-25.5 54zm29.5 674l8 3q8 4 37.5-1t60.5-5q40 0 73.5 2t65.5 7q58-29 95-75.5t37-115.5q0-66-34-123t-90-91q-26 9-55.5 14.5T1888 985q-34 0-66-5.5t-60-14.5q-56 34-89.5 91t-33.5 123q0 63 31.5 110.5t84.5 74.5zm-185 204q-4 5-4 13 0 11 10 18l301 207q7 4 18 4 10 0 18-4l280-193q11-9 11-25 0-7-1-9 0-7-30.5-42.5t-100-66.5-172.5-31-177 27-113.5 60.5-39.5 41.5zm815 310q-30-52-81-100l-31-29q-15-14-28-29.5t-21-32.5l-144 99q33 30 47 51.5t90 58 76 90.5q0 32-19.5 42.5T2229 2039q-72 0-136-68.5t-78-141.5l-59 41q-13 10-28.5 14t-32.5 4-32.5-4-29.5-14l-77-53q-7 68-73.5 145t-143.5 77q-29 0-47-12t-18-43q2-55 76.5-89t95.5-63.5 53-52.5l-148-102-16 29q-7 14-50 53t-77 84-45 74-11 60q0 64 43.5 101.5T1497 2116q60 0 131-41.5t99-96.5 51-55q14 0 18.5 22t25.5 34 62 12q45 0 64.5-13.5t23.5-34 17-20.5q22 0 51 54t100.5 96.5T2270 2116q69 0 107-41.5t38-97.5q0-47-30-99zm-424.5-657.5Q1944 1208 1944 1185q0-18 12.5-30.5t36.5-12.5q27 0 39.5 14t12.5 31q0 19-13.5 32.5T1996 1233q-19 0-35.5-12.5zM1725 1187q0-19 12.5-32t38.5-13 38 12.5 12 30.5q0 23-16 35.5t-36 12.5q-22 0-34.5-13t-14.5-33z" + }, + "children": [] + }] +}; +exports.u1F38E = u1F38E; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F38F.js b/dist/noto_emoji_regular/u1F38F.js new file mode 100644 index 000000000..7adf7cefe --- /dev/null +++ b/dist/noto_emoji_regular/u1F38F.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F38F = void 0; +var u1F38F = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M875 1495q-124 0-205.5-109.5T588 1126q0-61 17.5-120.5T668 894l16-20q104-124 334.5-222t548.5-98q91 0 181 4.5t181 6.5q66 0 118.5-3t84.5-10l37-7q21-4 43.5-7t43.5-3q33 0 56.5 10.5T2336 587q0 45-35.5 94.5T2258 743l-32 52q-18 29-18 57 0 33 36 54.5t81 31.5 69 26 24 42q0 87-164.5 169t-331.5 95l-167 14q-61 5-119.5 15t-117.5 24q-5 0-9.5-2.5t-4.5-9.5q0-5 13-32.5t13-83.5q0-81-22-123t-39-42q-7 0-9 3.5t-2 5.5q0 25 5.5 48.5t5.5 49.5q0 75-42 148.5t-99.5 91.5-113 45.5-141.5 51-173 23.5q-18 0-25-2zm1426.5 544q-150.5 102-332 127t-309.5 38.5-319 92.5-337 79q-124 0-204-112t-80-263q0-148 97-253t234.5-166.5T1338 1484t387-36h81q41 0 87 1 43 0 127-10.5t152-34.5 109-24q25 0 42 11.5t17 40.5q0 75-44.5 147.5T2251 1700q0 62 100.5 85t100.5 75q0 77-150.5 179zm46.5-159l-85-29q-42-15-72.5-55.5T2160 1702q0-55 36-125t47-99q-10 3-122 32t-228 29h-177q-258 0-428.5 52T1019 1701q97 32 156 135t59 235q0 48-10 95t-34 88q56-16 150-52.5t163.5-63.5 74.5-160l2-22q0-6 3-10t9-4q21 0 33.5 36.5t12.5 71.5q0 18-2 35t-7 32q56-11 257.5-33.5T2207 1988t141-108zM683 2419l14 85q7 44 7 82 0 17-12.5 32.5T656 2634q-20 0-36.5-15T590 2479.5 564 2290t-57.5-425-53.5-402-36-258l-31-244q-8-43-12-94l-1-7q0-7 5-7 8 0 14.5 2t14.5 2q31 0 39.5-5.5T467 846q4 0 4 7 2 9 2 14 0 6 3 21.5t12 85.5l48 358q16 116 35.5 261.5T595 1771zm306-1079.5q42-61.5 42-155.5 0-109-56.5-195.5T840 902q-65 0-112 65.5T681 1126q0 101 51.5 188t142.5 87q72 0 114-61.5zm98.5 531Q1033 1782 959 1782q-63 0-105 68t-42 151q0 111 53 196.5t132 85.5q69 0 107-63.5t38-148.5q0-112-54.5-200.5zm386 58Q1437 1969 1389 1969q-66 0-112.5-57.5T1230 1790q0-56 37-94.5t89-38.5q68 0 111 59t43 122q0 50-36.5 90.5zM1124.5 838q-32.5 33-32.5 82 0 57 41 108.5t103 51.5q42 0 74-36.5t32-78.5q0-61-41-110.5t-98-49.5q-46 0-78.5 33zM1470 1843q0-58-35.5-103t-78.5-45q-33 0-59.5 27.5T1270 1790q0 58 39 99t80 41q22 0 51.5-25t29.5-62zM300 560q0 16-19 37l-65 66q-8 8-17 8-20 0-35.5-45T148 547q0-23 6.5-47.5T172 451l5-13q7-14 20-14 11 0 19 8l65 65q9 9 14 19t5 18v26zm171-26q0-8 5.5-18t15.5-19l64-65q10-8 18-8 13 0 20 14l6 11q8 17 16.5 45.5T625 547q0 25-6.5 48.5T601 641l-7 15q-8 15-20 15-8 0-18-8l-64-66q-21-21-21-37v-26zM271 376q-8-8-8-18 0-12 14-20l16-7q20-10 44-16t49-6q30 0 76 15t46 36q0 10-7 16l-65 66q-14 13-27 16.5t-27 3.5q-27 0-45-20zm216 384q-23 11-50 18.5t-51 7.5q-32 0-77.5-15.5T263 735q0-8 8-18l66-64q8-9 18-14t18-5h26q16 0 37 19l65 64q7 7 7 18 0 6-2.5 11.5T499 754zm679.5 126q18.5-18 44.5-18 30 0 52 27t22 61q0 23-18 42t-41 19q-32 0-55-27t-23-59q0-27 18.5-45zm249 979q-16.5 18-36.5 18-29 0-50-26.5t-21-55.5q0-24 16-40t39-16q30 0 49.5 26t19.5 53q0 23-16.5 41z" + }, + "children": [] + }] +}; +exports.u1F38F = u1F38F; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F390.js b/dist/noto_emoji_regular/u1F390.js new file mode 100644 index 000000000..fe6ba7500 --- /dev/null +++ b/dist/noto_emoji_regular/u1F390.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F390 = void 0; +var u1F390 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1879.5 1279.5q-50.5 92.5-150 137.5t-248.5 45q-53 0-113.5-5.5T1237 1440q-3 26-5 52.5t-3 52.5l118 6q7 0 12 6.5t5 13.5q0 6-8.5 46t-8.5 131q0 90 16.5 174t52 161 84.5 146.5 119.5 127.5 73 60 2.5 8q0 14-13 19l-331 151-7 1q-7 0-12-4-6 0-53-42.5t-102-115-96-166-68-209.5-27-267q0-75 7.5-151.5t10.5-92 22-15.5l125 7q0-29 2.5-57t5.5-57q-228-50-358.5-160.5T670 1012q0-73 39-194.5t117-221T1019 443t256-54q26 0 53.5 2t53.5 6q18-40 32-70l25-51q20-41 30.5-60t33.5-19q17 0 28 11.5t11 26.5-22.5 56-57.5 120q223 52 345.5 210t122.5 394q0 172-50.5 264.5zm-111.5-564Q1691 591 1556 533t-281-58q-172 0-291.5 90T810 795t-54 216q0 158 221 261t504 103q142 0 224-42.5t111-119 29-197.5q0-176-77-300.5zM1054.5 784q-37.5 46-62.5 91l-29 52q0 2-23.5 39.5T893 1004q-15 0-25.5-18.5T857 944q4-66 62-177t131-111q16 0 29 16t13 35q0 31-37.5 77zM1233 598q0 29-21 44t-46 15q-23 0-40.5-11.5T1108 612q0-23 21-39.5t46-16.5q23 0 39 11t19 31zm501.5 457.5q10.5 19.5 10.5 41.5 0 92-68.5 151t-166.5 59q-23 0-40-5t-17-17q0-28 54.5-52.5t90-70 63.5-86 49-40.5q14 0 24.5 19.5z" + }, + "children": [] + }] +}; +exports.u1F390 = u1F390; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F391.js b/dist/noto_emoji_regular/u1F391.js new file mode 100644 index 000000000..79d622761 --- /dev/null +++ b/dist/noto_emoji_regular/u1F391.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F391 = void 0; +var u1F391 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1443 2192q7 10 20 24l26 27q4 5 17 20.5t13 20.5q0 13-80 21t-140 8q-179 0-341-55t-278.5-142T517 1970q-10 81-21 163t-11 169q0 45 2 87t2 85q0 14 2 24.5t2 21.5q0 27-17.5 41.5T425 2576q-25 0-36-12.5t-11-50.5v-110q0-164 17.5-318.5T426 1857q-82-122-128-264t-46-299q0-271 137.5-506T770 413.5 1299 274q277 0 520 134.5T2204.5 781t142.5 513q0 73-8.5 130.5t-25 126.5-29.5 69q-15 0-43.5-32t-36.5-55q16-57 24.5-116.5t8.5-122.5q0-244-126.5-456.5t-344.5-333T1299 384q-247 0-463.5 120t-345 331T362 1294q0 106 24 205.5t69 189.5q49-261 154-439t211.5-304 322-250.5T1566 552q14 0 25.5 9.5T1603 587q0 45-56 48t-172 46.5T1132 814q66-17 147-24t161-7q72 0 93 9t21 30q0 19-15 27.5t-61 8.5q-100 0-204.5 14T1066 915l-54 16q-28 9-54 20l-56 58q80-25 176-37.5t202-12.5q55 0 85 7t30 37q0 17-13.5 24.5t-36.5 7.5h-26q-189 6-323.5 35.5T810 1124q-80 110-142 242.5T571 1644q205-225 432.5-309.5T1380 1250h43q40 0 71.5 11t31.5 34q0 15-9.5 30t-28.5 15q-23-4-43-5.5t-41-1.5q-88 0-188 26t-206 77q75 0 152 10t155 34l22 7q20 7 31 17.5t11 24.5q0 9-7.5 21t-25.5 12q-11 0-97.5-20T991 1518q-35 0-69.5 2.5T849 1529l-31 22q-16 12-30 25 14-2 28-2h28q73 0 144.5 11t144.5 29.5 73 53.5q0 10-7 21t-26 11q-5 0-13-2l-31-6q-72-15-146.5-25T830 1657q-34 0-69 1t-72 7q-42 40-80 80.5t-65 85.5q123 172 325 272t430 100q37 0 72.5-3t71.5-8zm233-496q-4-9-6.5-21.5t-2.5-24.5q0-53 36.5-90.5t91.5-41.5q-11-25-11-52 0-56 40-94.5t95-38.5q54 0 95.5 38t41.5 95q0 14-5.5 28.5t-5.5 23.5q54 4 91 42.5t37 89.5q0 22-8 46 55 6 90.5 43.5t35.5 88.5q0 54-39.5 93.5T2154 1961q-38 0-68-18t-49-48q-17 28-48.5 47t-69.5 19q-37 0-68-18.5t-48-47.5q-19 29-49.5 47.5T1685 1961q-55 0-95-38.5t-40-94.5l1-11q4-49 37-80.5t88-40.5zm609 300q14 0 23.5 9.5t9.5 23.5v129q0 14-9.5 24t-23.5 10h-68v373q0 14-9.5 23.5t-23.5 9.5h-111q-26 0-33.5-25.5T2006 2547h-173q-25 0-32.5 25.5T1766 2598h-111q-14 0-23.5-9.5t-9.5-23.5v-373h-67q-14 0-23.5-10t-9.5-24v-129q0-14 9.5-23.5t23.5-9.5h730zm-290.5 274.5Q1963 2239 1919 2239q-42 0-73.5 31t-31.5 76 31.5 76 73.5 31q44 0 75.5-31.5t31.5-75.5-31.5-75.5z" + }, + "children": [] + }] +}; +exports.u1F391 = u1F391; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F392.js b/dist/noto_emoji_regular/u1F392.js new file mode 100644 index 000000000..efe3eccec --- /dev/null +++ b/dist/noto_emoji_regular/u1F392.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F392 = void 0; +var u1F392 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2328.5 1821Q2188 2079 1943 2202l-511 255-16 6q-8 3-25 3-27 0-41-19.5t-14-57.5v-685q0-100 22-196.5t79-144.5 225-109l162-58 4-55q2-28 2-56 0-77-27-112.5t-81-35.5q-69 0-155 53.5T1399.5 1181 1274 1512t-44 482q0 66 2 131l4 132q0 29 3.5 65t3.5 72q0 97-42 138.5t-125 41.5q-63 0-122-18l-117-36-216-68q-106-32-233.5-85.5t-174-112.5-56-150-18.5-212-9-248q0-301 22.5-457.5t87-307 228.5-275T867 480q46 0 92.5 4t94.5 12q31-71 129-127t183-56q97 0 190 62.5T1684 528q36-15 82.5-24t106.5-9q270 0 433 221.5t163 534.5q0 312-140.5 570zm-1968 215.5Q343 2003 317 2003q-29 0-44 27.5t-15 67.5q0 33 15.5 59.5T325 2184q29 0 41-21.5t12-49.5q0-43-17.5-76.5zm671 217.5q-19.5-36-47.5-36t-45.5 28.5T921 2321q0 41 18.5 68t53.5 27q30 0 44-23.5t14-53.5q0-49-19.5-85zM1541 640q5-9 16.5-23.5T1589 585q-17-34-41.5-59.5T1484 500q-36 0-64.5 25t-42.5 57l84 28q41 14 80 30zm402 1200q106-115 163-275.5t57-321.5q0-103-23-200.5T2069 892t-151-100q-14 8-23.5 21.5T1880 850q40 68 51.5 145t11.5 156v689zm366.5-932.5Q2230 780 2078 780q-11 0-19 2t-8 10q0 11 40 37.5t92 123.5 52 306q0 189-77.5 383.5T1943 1946v160q202-115 324-339t122-528q0-204-79.5-331.5z" + }, + "children": [] + }] +}; +exports.u1F392 = u1F392; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F393.js b/dist/noto_emoji_regular/u1F393.js new file mode 100644 index 000000000..c1e97243e --- /dev/null +++ b/dist/noto_emoji_regular/u1F393.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F393 = void 0; +var u1F393 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2419 1068l5 18q2 8 2 15 0 33-39.5 66t-116.5 66l-344 151q-200 88-337.5 154t-263.5 66q-112 0-264-72.5t-433.5-198T281 1179t-65-82q0-77 154.5-143.5T571 866l485-220q72-32 146-58t150-26q44 0 83.5 9t174 62 351 161T2286 951l33 17q34 18 63.5 46t36.5 54zm-290 454q0 48 5.5 106t5.5 117q0 111-29 174t-84.5 102-225.5 70-383 31q-285 0-578.5-44.5T542 1843l-1-61 1-392 165 75q207 94 353 160.5t265 66.5q147 0 319-84t485-219v133zM215 2090l-17-6q-9-3-9-15 0-56 15.5-93.5T249 1925l-1-658q0-11 3.5-20.5t15.5-9.5q35 0 53 22.5t18 54.5l-1 248q0 17 1 29l1 26 1 48v258q33 14 50.5 65t17.5 63q0 25-36.5 36.5T274 2099q-31 0-59-9zm292.5 298.5Q500 2397 488 2399q-11 0-17.5-7t-15.5-8q-7 0-7 5 0 2 1.5 5.5t1.5 6.5q0 11-13.5 20t-29.5 9q-17 0-24.5-10t-15.5-10q-3 0-12.5 14t-28.5 14q-18 0-28.5-6t-16.5-14l-10-13q-5-6-12-6-3 0-3 4l-1 8q0 5-4 8.5t-14 3.5q-29 0-46.5-49t-17.5-99l1-29q0-27 6.5-68t22.5-41q24 0 45.5 4t44.5 4 48-5.5 47-12.5l9-4q5-2 10-2 6 0 10.5 13.5T430 2176l12 48q12 49 42.5 85.5T515 2367q0 13-7.5 21.5z" + }, + "children": [] + }] +}; +exports.u1F393 = u1F393; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F3A0.js b/dist/noto_emoji_regular/u1F3A0.js new file mode 100644 index 000000000..00ba29e4d --- /dev/null +++ b/dist/noto_emoji_regular/u1F3A0.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F3A0 = void 0; +var u1F3A0 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2378 1666q-3 37-63 70t-131 33q-91 0-154.5-60.5t-83-133T1914 1465q2 14 3 28t1 28q0 32-2.5 61.5t-2.5 58.5q0 57 74.5 159.5T2062 1970q0 65-57 109.5t-156 82.5-121 82q0 46-55.5 86t-125.5 40q-32 0-48.5-18.5T1482 2302q0-57 30.5-99t93-79.5T1710 2048t42-56q0-10-60.5-59.5t-70-52-56.5-23-91-20.5q-30 0-56.5 2.5t-55.5 7.5v659h-215v-629q-42 0-85.5 7t-90.5 7q-22 0-42.5-3t-49.5-3q-58 0-127.5-11.5T640 1862q-55 0-81 37.5T533 2015q0 11 2 21l2 21q0 15 32 32.5t32 67.5q0 15-3 28l-6 26q0 2-9 36t-45 34q-35 0-53-7.5t-50-40-52.5-83.5-20.5-130q0-28 1.5-55t5.5-55l3-38q0-23 4.5-48t14.5-49.5 30-40 43-19.5 50-16l42-19-11-34q-8-24-8-76 0-88 18.5-163t75-168 83-158.5T740 992q0-22-12-31t-20-9q-14 0-25 13t-22 33l-25 42q-26 43-59.5 66t-79.5 23q-62 0-98.5-30.5T362 1015q0-45 17-105.5T409 781t37.5-144.5T511 534l5-32q2-12 2-17 0-32 7-53.5t39-21.5 48.5 15.5T637 466q5-5 17-13.5t33-8.5q36 0 67 13t31 31l3 4q2 2 20 5.5t30 9.5l26 16q13 8 43.5 22t70.5 59 40 61l7 1q30 8 46.5 49.5T1105 781l13 19q7 12 10.5 24.5t6.5 24.5l4 24q2 12 8 24V374h215v796q23 2 45 6t45 4q21 0 40-4l77-14q19-3 41-3 30 0 51 16.5t28 56.5q53 17 92 53 32-34 73.5-49t90.5-15q92 0 167 63t108 181.5 95.5 144.5 62.5 56zM568.5 759Q557 748 543 748q-17 0-28 11t-11 26q0 17 11 28t28 11q14 0 25.5-11t11.5-28q0-15-11.5-26zm1072 509q-4.5-5-17.5-5-54 2-103 77.5T1411.5 1446t-123.5 30q-89 0-134.5-19.5T1108 1399q0-14 3.5-30t3.5-30q0-9 8-27l18-41q9-22 17-46t8-45q0-15-6-28t-20-13q-11 0-30.5 30.5t-26 52-29.5 44-28 48.5l-12 58q-3 9-5.5 21t-2.5 26q0 81 70 125.5t167 44.5q116 0 203-44t143-141 56-123q0-8-4.5-13z" + }, + "children": [] + }] +}; +exports.u1F3A0 = u1F3A0; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F3A1.js b/dist/noto_emoji_regular/u1F3A1.js new file mode 100644 index 000000000..167017b02 --- /dev/null +++ b/dist/noto_emoji_regular/u1F3A1.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F3A1 = void 0; +var u1F3A1 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2166 1433q-29 113-84 213 64 17 103 67t39 113q0 76-54.5 130.5T2039 2011q-56 0-101-30.5t-67-78.5q-51 43-108 77t-119 60q56 16 94 66t38 111q0 75-54.5 129.5T1592 2400q-23 0-44-6v74q0 18-13.5 29t-27.5 11h-415q-14 0-27-10.5t-13-29.5v-85q-14 3-27 3-76 0-130.5-54T840 2201q0-54 29.5-99t75.5-67q-120-52-216-134-23 48-68 79t-101 31q-76 0-130.5-54.5T375 1826q0-63 39-113t103-67q-55-100-84-213-68-10-113.5-61.5T274 1250q0-63 41-114t103-65l1-11q20-112 59.5-199.5t67.5-127 34.5-60 31-49T673 579q113-114 261-182t321-76l22-4q11 0 23-1l105 10q100 10 198 46t174.5 86 108 82 61 49.5 50.5 46 25 45 34 57 66 126.5q39 92 58 195l1 12q63 14 103.5 65t40.5 116q0 69-46 120t-113 61zm-151-609q-23 47-67 76.5T1848 930t-100.5-30-66.5-78l-96 115q34 35 59 77.5t38 91.5l411-72q-12-56-32-108.5T2015 824zm-794 489l-6-4-170 98q24 31 50.5 52.5t58.5 38.5zm-162 680q14 4 28 7t28 7l62-339zm241-380l-33-1-22 118h109l-22-118zm-18-80l18 1 17-1-17-96zm191-587q-60-39-134-48v196l8 3zm-66 202l4 6 193-34q-10-35-28-65.5t-43-56.5zm-147-250q-74 9-134 48l126 151 8-3V898zm-194 100q-25 26-43 56.5t-28 65.5l193 34 4-6zm-85 200l-1 17q0 65 26 123l170-99v-6zm212 824q27 3 53 5t54 2q27 0 53.5-2t52.5-5l-39-211h-135zm252-524q32-17 58.5-38.5t50.5-52.5l-170-98-6 4zm148-160q11-29 18.5-59.5t7.5-63.5l-1-17-193 35-2 6zm187-678.5q-32 22.5-32 53.5 0 21 22.5 28.5t83.5 7.5q48 0 74-9.5t26-26.5q0-31-34-53.5t-75-22.5q-33 0-65 22.5zM1463 416q10 20 15.5 40.5t5.5 43.5q0 65-41 115.5T1339 680v137q51 5 97.5 23t88.5 45l142-170q8-51 40.5-89t80.5-55l4-4q-72-55-154.5-93T1463 416zm-241.5 81q21.5 7 85.5 7 41 0 70-9t29-26q0-28-30.5-53t-79.5-25q-33 0-64.5 22t-31.5 55q0 22 21.5 29zm-85.5-80q-92 19-174 57t-154 93l3 4q48 17 80.5 55t41.5 89l141 170q42-27 88.5-45t97.5-23V680q-63-14-104-64.5T1115 500q0-23 5.5-43.5T1136 417zM674 741.5q23 6.5 84 6.5 46 0 72-8.5t26-24.5q0-35-35.5-56.5T748 637q-36 0-66.5 22.5T651 713q0 22 23 28.5zM585 824q-55 100-79 210l411 72q13-49 38-91.5t59-77.5l-96-115q-22 48-66.5 78T751 930t-99.5-29.5T585 824zm-178 426q9 2 24 3t32 1q56 0 78.5-9t22.5-26q0-24-32-50.5t-77-26.5q-34 0-65 23t-31 54q0 14 15 22.5t33 8.5zm107 176q23 85 61 160l362-208q-17-38-27-79t-10-84q0-8 1-15.5t1-14.5l-305-54q22 25 34.5 55t12.5 64q0 63-36.5 110.5T514 1426zm117.5 315.5Q597 1718 560 1718t-68.5 21.5T460 1794q0 22 23 29t86 7q39 0 68-8t29-28q0-29-34.5-52.5zM743 1808q105 100 241 157l142-391q-45-22-83-54t-68-74l-354 206q49 17 83 59t39 97zm357 309.5q-30-24.5-77-24.5-33 0-65.5 23t-32.5 54q0 22 23 28.5t86 6.5q42 0 69-8t27-26q0-29-30-53.5zm339 200.5q-32-44-32-102 0-23 5-43t14-39l-7-34q-29 4-59 6t-60 2q-31 0-61-2t-59-6q30 47 30 101 0 34-11.5 63.5T1167 2318h272zm45-311q14-4 28-7t28-7l-118-323zm40 122.5q-32 22.5-32 53.5 0 25 36 30.5t71 5.5q49 0 73.5-9t24.5-25q0-31-35.5-54.5T1588 2107q-32 0-64 22.5zm332-321.5q5-55 39-97t83-59l-354-206q-30 42-68 74t-83 54l142 391q136-57 241-157zm114.5-67.5Q1939 1763 1939 1794q0 19 26 27.5t82 8.5q49 0 73.5-9t24.5-25q0-32-35.5-55t-72.5-23q-35 0-66.5 22.5zM2024 1586q38-75 61-160-55-18-92-65.5t-37-108.5q0-35 12-65.5t32-55.5l-303 54q0 8 1 15t1 15q0 43-10 84t-27 79zm107-332h20q40 0 68-9t28-26q0-30-34.5-53.5T2140 1142q-34 0-66.5 22t-32.5 55q0 24 29.5 29.5t60.5 5.5z" + }, + "children": [] + }] +}; +exports.u1F3A1 = u1F3A1; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F3A2.js b/dist/noto_emoji_regular/u1F3A2.js new file mode 100644 index 000000000..feee7d5c8 --- /dev/null +++ b/dist/noto_emoji_regular/u1F3A2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F3A2 = void 0; +var u1F3A2 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2540 164q0 3 1 6v69l-10 37q-15 55-53 154.5T2382 659v1972q0 5-4 10t-9 5h-110q-4 0-9.5-5t-5.5-10V933q-78 143-182 307.5T1822 1587v1044l-4 8-7 3h-110l-6-3-5-8v-874q-91 113-193 230.5T1277 2228v403l-3 5-4 1h-110l-4-1-3-5v-279q-84 86-198.5 194T834 2656l-8 2H282q-8 0-11-4.5t-3-9.5q0-7 4-9.5T429.5 2521 775 2250q38 0 70.5 2.5t66.5 2.5q78 0 143.5-24.5t122.5-79 116-119.5 115-131 61.5-108 79.5-115.5 125-142.5q53-71 107-147l17-19q46-51 54.5-97t51-75 103-102 106-175 45.5-201q0-28-5-54l-10-50q87-158 140-289t57.5-151 17.5-20h167q6 0 10 4zm-958 713l-14-24q-8-12-8-23 0-17 17-26t35-9q28 0 55 3.5t55 3.5q67 0 114.5-36.5T1930 618l11-26q6-13 6-27 0-19-9.5-28t-25.5-16l-24-10q-11-5-11-19 0-11 5.5-19t17.5-8q81 0 134.5 63.5T2099 698q0 70-23.5 128T2015 944l-12 23q-32 62-79.5 111.5T1825 1128q-10 0-22.5-2t-29.5-2l4 32q0 16 1 36l-4 29q-10 75-61.5 148.5t-135 175.5-158.5 102q0 78-39 150.5t-98 137.5-109 120-121 96-164 41l-43-1q-92-7-318.5-73T300 1862q0-105 47-204t118-194 149-95q9 0 18 9.5t10 20.5v5q-2 9-10.5 20.5T613 1447l-21 21q-14 16-25.5 42.5T555 1555q0 36 40 68t173 62l63 14 88 21q44 11 89 11 73 0 127.5-36.5t90.5-89.5l47-68q12-15 12-34 0-24-32-40.5t-32-37.5q0-11 7.5-29t7.5-37q0-12-3-23l-8-22q-4-11-7.5-23.5t-3.5-27.5q0-14 10-22t34-8q13 0 27 4t26 6l59 13q30 7 62 7 37 0 71.5-20t62.5-56.5 54.5-80 26.5-58.5q0-26-31.5-40t-31.5-31q0-8 6-22.5t6-29.5q0-12-3-24.5t-11-23.5zM67 1339q-5-5-5-10v-216q0-11 12.5-12.5T233 1037t313.5-175 286-234.5 135-148.5 25.5-27q5 0 8 4t3 7q0 18-84 145.5T746 833t-199.5 191.5-225 171.5T78 1339H67zm0-403l-4-8V784q0-9 8-11h2q39 0 170.5-46T501 608t205-134.5 79-64 8-2.5q10 0 10 11v3q-89 147-276 283.5T75 937zm861 589l18-22q8-11 14.5-22t6.5-22v-8q0-4-1-8 0-2-2.5-10.5T959 1413l-5-21q-3-11-3-20 0-39 35-67t80-28q41 0 74.5 26t33.5 69l-1 31q0 9-5 18l-9 17q-5 8-9 16.5t-5 17.5q0 26 9.5 45.5t9.5 41.5q0 29-36 62.5t-64 33.5q-15 0-31-3l-30-6q-19 0-63-14t-44-38q0-10 12.5-35t19.5-34zm-288-22q0-27 32-66.5t32-58.5q0-18-11-39t-11-44q0-51 35.5-79.5T812 1187q34 0 60.5 19t34.5 52l1 9q0 5 1 8t1 6q0 26-21 63.5t-21 65.5q0 13 3.5 23t8.5 18l8 16q4 8 4 16 0 20-30.5 56.5T796 1576q-49 0-102.5-21t-53.5-52zm-384 491q39 76 76 108t88 52q-92 69-175 129T81 2399l-4 2q-2 0-3 1-6 0-10.5-4.5T59 2387v-245q0-12 9.5-16.5T162 2061zM1348 992q-5-17-9.5-29t-4.5-26q0-37 34-63t73-26q41 0 69 22.5t28 68.5q0 30-10 49t-10 36 10 36.5 10 42.5q0 29-26.5 55t-33.5 30-42 4q-55 0-98-12.5t-43-33.5q0-18 9.5-35t20.5-33l21-31q9-14 9-28 0-9-2-15zm285-358.5q19-34.5 22-51.5 0-20-16-50t-16-48q0-41 32.5-69t77.5-28q37 0 66.5 26.5T1829 484q0 17-6.5 31.5T1816 545q0 22 14.5 43.5T1849 630q0 29-20 56t-35 37-71 10h-33q-39 0-57.5-8t-18.5-26q0-31 19-65.5zM1366 661q0-15 6-29.5t13-28.5l12-27q6-12 6-22 0-13-18-41.5t-18-46.5q0-57 31.5-86t86.5-29q36 0 61 26t25 62q0 20-8 40.5t-8 52.5q0 16 5 27t13 20l12 16q5 8 5 18 0 19-21 57t-98 38q-51 0-76.5-10t-27.5-29zm-262 283l-8-20q-4-10-7.5-21.5T1085 877q0-45 31.5-72t82.5-27q29 0 54 15t35 46l2 8q0 4 1 8t1 8q0 23-16 56.5t-16 58.5q0 12 3.5 21.5t9.5 19.5l8 15q4 7 4 14 0 15-25 51t-56 36q-53 0-100.5-15t-47.5-42q0-25 25.5-61.5T1107 963q0-10-3-19zm876-523q-54-27-90-40.5t-94-30.5q30-54 48-91l28-61q11-23 17-33t12-10h139q7 0 11 5t4 10v66q-6 20-22 63.5T1980 421zM884 1066q24-43 64-75t77-35q9 0 17.5 7t10.5 18v7q-7 13-18 23l-21 21q-10 10-17 20t-7 20q0 13 20 28t20 32q0 22-13.5 39t-28.5 17-25-8l-22-15q-9-7-23-11l-27-7q-13-3-22.5-9.5T859 1118q0-14 9-28zm349.5-452q45.5-62 88.5-62 9 0 16.5 6.5T1351 574l1 6q-5 14-28 42t-23 45q0 13 21.5 25.5T1344 724q0 14-7 24.5t-18 10.5q-5 0-33.5-12t-63-12-34.5-28q0-31 45.5-93zM894 1946.5q-20-22.5-52-22.5t-55 21-23 53 21 57.5 51 25.5q27 0 52.5-26t25.5-56-20-52.5zM495.5 1831q-18.5-20-44.5-20t-47.5 17-21.5 48q0 28 19.5 51.5T445 1951q26 0 47.5-24.5T514 1878q0-27-18.5-47z" + }, + "children": [] + }] +}; +exports.u1F3A2 = u1F3A2; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F3A3.js b/dist/noto_emoji_regular/u1F3A3.js new file mode 100644 index 000000000..3ba4d91de --- /dev/null +++ b/dist/noto_emoji_regular/u1F3A3.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F3A3 = void 0; +var u1F3A3 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2066 1856l-4 12q14 20 19.5 43t5.5 54q0 89-36.5 144.5T1948 2165h-11l-120 254q-11 22-36 22-7 0-11-2l-74-23q-14-4-20.5-15t-6.5-23q0-4 3.5-15.5T1721 2261l60-119q-35-6-63.5-16t-51.5-30q-38 103-70 138.5t-71 35.5q-5 0-9-1l-8-2q-24 11-41 17.5t-42 6.5q-66 0-101-23t-35-64q0-39 25.5-63.5t58.5-24.5q36 0 87.5 23.5t64.5 38.5q19-13 36-43.5t32-73.5l14-39q-12-30-12-61 0-70 55-125.5t123-55.5q39 0 74 9.5t81 18.5q127-299 201.5-568t74.5-453q0-139-32.5-210T2062 459.5 1887 413q-110 0-219 66t-191 170l-422 807q18 35 18 98 0 175-73 333 13 19 18 42.5t5 37.5q0 43-12.5 55.5t-40 21.5-74.5 15q-71 100-91 153.5t-20 96.5q0 25 11 52 32-4 75-45t74-41q19 0 26 9.5t7 26.5q0 14-2.5 30.5T973 2372q0 45 64.5 53t81.5 35q2 0 2 5 0 14-41.5 26.5T984 2512l-68 10q-30 5-55.5 7t-31.5 2q-17 0-34.5-1.5T751 2528q-141 0-247.5-75.5T366 2181q-5 2-16 4t-23 2q-14 0-20-8t-16-46.5-10-65.5l1-43q0-6-1-18 0-65 18-126t41-116l11-26q8-19 24-29.5t47-10.5q16 0 22.5-2.5T455 1684l5-10q87-128 208-204t244-76q22 0 43 3.5t37 7.5l418-799q100-135 229-209t260-74q201 0 310 130t109 377q0 193-65.5 456.5T2066 1856zM858 1508.5q-16-12.5-33-12.5-20 0-34 18t-14 36q0 14 16 27.5t29 13.5q19 0 35.5-15t16.5-38q0-17-16-29.5zm528-63.5l-32-1q-33 0-59-6t-26-18q0-9 9-21.5t17-22.5l33-39q29-35 58.5-52.5t63.5-17.5q36 0 63 23.5t27 58.5q0 49-41 72.5t-113 23.5zm-853.5-276.5Q554 1149 581 1149q43 0 87 66t44 98q0 5-5 9t-11 4q-76 0-130.5-29t-54.5-80q0-29 21.5-48.5zM764 969q24-31 61-31 35 0 61 25t26 67q0 33-14 74.5t-29 77.5l-5 11q-6 15-12 22.5t-11 7.5q-9 0-15.5-7t-46-66.5T740 1041q0-41 24-72z" + }, + "children": [] + }] +}; +exports.u1F3A3 = u1F3A3; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F3A4.js b/dist/noto_emoji_regular/u1F3A4.js new file mode 100644 index 000000000..8dc52c6fe --- /dev/null +++ b/dist/noto_emoji_regular/u1F3A4.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F3A4 = void 0; +var u1F3A4 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1628 1509L611 2413q-3 3-8 5.5t-10 2.5q-54 0-152-96t-98-148q0-11 5-16l865-1052q30 89 111 186.5t168.5 152T1628 1509zm-248-855q99 162 316 370t382 300q-74 63-140.5 87.5T1800 1436q-195 0-358.5-161.5T1278 922q0-85 29.5-154t72.5-114zm852.5 434q-23.5 71-65.5 133l-36-20q-28-16-77-50.5t-115-87T1772.5 913t-166-179-87.5-115.5-39-57.5q63-47 137.5-74.5T1773 459q182 0 332.5 146.5T2256 942q0 75-23.5 146zM468 920.5Q529 859 612 859h27l26 5-92-427-7-16q-4-8-4-22 0-36 29-55.5t68-19.5q57 0 140.5 63.5T943 451q14 0 24-2t18-4l11-4q5-2 11-2 5 0 9.5 5.5t4.5 16.5q0 27-55 78t-117 51q-32 0-66-10t-66-10q-19 0-37 6l79 367q5 11 6.5 24.5T767 996q0 78-65 138t-144 60q-61 0-106-39.5t-45-97.5q0-75 61-136.5z" + }, + "children": [] + }] +}; +exports.u1F3A4 = u1F3A4; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F3A5.js b/dist/noto_emoji_regular/u1F3A5.js new file mode 100644 index 000000000..2cdbb8a15 --- /dev/null +++ b/dist/noto_emoji_regular/u1F3A5.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F3A5 = void 0; +var u1F3A5 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1958 1079q21 6 35.5 25t14.5 42v537q0 29-20 49.5t-50 20.5h-369v179q0 29-20.5 50.5T1499 2004h-25l285 442q8 13 8 25 0 25-22 41l-35 22q-14 8-26 8-11 0-22-5.5t-18-16.5l-195-304v306q0 20-14 33.5t-34 13.5h-42q-19 0-33-13.5t-14-33.5v-306l-196 304q-13 22-39 22-13 0-26-8l-35-22q-11-8-16.5-19t-5.5-22q0-15 7-25l285-442h-24q-29 0-49.5-21.5T1192 1932v-179H822q-29 0-49.5-20.5T752 1683v-168l-281 138q-20 0-34-17.5t-14-42.5v-465q0-25 14-42t34-17l281 137v-60q0-38 32-57-108-51-173.5-154T545 710q0-173 123.5-295T963 293q133 0 244 79.5T1362 584q38-127 149.5-209t247.5-82q172 0 295 123.5T2177 710q0 117-60.5 217T1958 1079zm-269.5-296q29.5 29 70.5 29 42 0 71.5-30t29.5-72q0-41-30-70.5t-71-29.5-70.5 28.5T1659 710q0 44 29.5 73zm-797-1q29.5 30 71.5 30 41 0 70.5-30t29.5-72q0-41-29.5-70.5T963 610t-71 29.5-30 70.5q0 42 29.5 72zm666.5 294q-71-38-122-100t-74-138q-25 76-76 138t-122 100h394z" + }, + "children": [] + }] +}; +exports.u1F3A5 = u1F3A5; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F3A6.js b/dist/noto_emoji_regular/u1F3A6.js new file mode 100644 index 000000000..6c6ed6963 --- /dev/null +++ b/dist/noto_emoji_regular/u1F3A6.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F3A6 = void 0; +var u1F3A6 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2451.5 2065q-23.5 179-110 221.5t-303 54T1603 2352q-73 0-147.5-1.5T1300 2349q-74 0-150 1.5t-154 1.5q-230 0-451.5-12T246 2278t-99-221-22-397q0-81 3-160l5-160 8-296q8-284 70-408.5T456 502l76-4 114-5q130-4 306-6.5t323-2.5q566 0 717.5 7.5t221 19.5 120 53 85 139 45.5 470.5 11 482.5q0 230-23.5 409zM685 953q-7 5-7 18v756q0 22 23 22 8 0 20-3l62-13q104-20 246.5-36.5T1302 1680t273.5 16.5T1821 1733l61 13q12 3 20 3 14 0 19-6.5t5-15.5V971q0-23-24-23-11 0-61 14t-198.5 33.5T1287 1015q-205 0-343-19.5T760 962t-58-14q-10 0-17 5zm-123 176q59-218 81-366l5-28q2-17 2-33 0-23-10-29t-29-6q-31 0-60.5-1t-61.5-1q-152 0-165.5 16T291 820.5 259 1243l-12 317-1 24q0 18 18 18 19 0 43-66.5t27-82.5l5-14h-1q8-23 15-38.5t12-15.5q3 0 4 7l2 19q0 12 1 24v21q0 40-10 81.5t-10 55.5l1 4 24 2q9-3 22-25.5t34-69.5q70-157 129-375zm1795 418l-2-39-4-123q-14-409-37.5-552t-34-149-12.5-8-75-8q-38-3-78-3-29 0-58 1t-58 1q-26 0-35 6t-9 29q0 16 3 33l4 28q15 116 74 341t129 384l14 32q9 25 23.5 50.5t23.5 28.5l24-2 1-6q0-5-9.5-48t-9.5-86l1-17v-28q0-11 1-19t4-8q5 0 12 13.5t16 40.5l10 36q3 11 7 22l10 30q10 30 22.5 52.5t24.5 22.5q10 0 14.5-4t4.5-13q0-19-1-38zM752 666q0 66 47 114t110 48q45 0 80.5-23t55.5-61q20 38 55.5 61t80.5 23q42 0 76-20t55-54q21 34 55 54t75 20q40 0 74-19.5t55-51.5q21 32 55 51.5t74 19.5q65 0 111-48.5t46-113.5H752zM414 2176l36-2q19 0 35-3 0-5-2-22l-6-39-29-156q-14-64-35-128t-53-120l-2-3q-5-7-14-7-17 0-32.5 1t-31.5 1-22.5 36-6.5 125q0 65 8.5 191.5T373 2177q23 0 41-1zm1939-327v-20q0-9-1-19v-25q0-28-7.5-57.5T2323 1698q-16 0-32-1t-32-1q-9 0-14 7l-2 3q-34 59-61 143.5t-34 162.5l-9 94q-2 23-3 40t-1 23q0 2 12.5 3.5t32.5 2.5l57 2q100 0 108-128.5t8-199.5zm-747 347q35 10 92.5 15t144.5 5 144.5-5 92.5-15q-3-63-24-102t-58-39q-48 0-79 3.5t-77 3.5q-45 0-75-3.5t-79-3.5q-39 0-59 41t-22 90zm-527 0q35 11 99.5 15.5t136.5 4.5q87 0 144.5-5t92.5-15l-1-21q-4-44-24-82t-57-38q-48 0-78 3.5t-76 3.5-77-3.5-79-3.5q-38 0-58 40t-22 91zm-533 0q35 10 92.5 15t144.5 5 144.5-5 91.5-15q-3-66-23.5-103.5T938 2055q-48 0-79 3.5t-77 3.5-76-3.5-78-3.5q-35 0-58.5 38T546 2196zm127-202q27 8 77 11t106 3 106.5-3 78.5-11q-2-43-18.5-69t-45.5-27q-29 0-57.5 2t-63.5 2q-26 0-54.5-2t-66.5-2q-24 0-40 19t-22 77zm522-96q-31 0-46.5 27t-17.5 69q27 8 77.5 11t106.5 3 106-3 78-11q-2-42-18-68.5t-45-27.5q-29 0-57.5 2t-62.5 2q-26 0-54.5-2t-66.5-2zm390 96q27 8 77.5 11t106.5 3 106-3 78-11q0-38-18-67t-46-29q-29 0-57.5 2t-62.5 2q-26 0-54-2t-66-2q-30 0-47 28t-17 68zm14-205q-19 0-29.5 15.5T1557 1849q18 5 51.5 6.5t69.5 1.5q37 0 70.5-1.5t51.5-6.5q-2-28-12.5-44t-29.5-16h-24l-32 2q-8 0-23 1-15 0-23-1l-33-2h-24zm-774 60q18 5 51.5 6.5t69.5 1.5q37 0 70.5-1.5t51.5-6.5q-4-33-14-46.5t-27-13.5h-25l-32 2q-8 0-23 1-15 0-23-1l-32-2h-25q-18 0-28.5 15t-13.5 45zm369 0q18 5 51 6.5t70 1.5 70-1.5 51-6.5q-2-28-12.5-44t-28.5-16h-24l-32 2q-9 0-24 1-15 0-23-1l-32-2h-24q-24 0-32 19.5t-10 40.5z" + }, + "children": [] + }] +}; +exports.u1F3A6 = u1F3A6; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F3A7.js b/dist/noto_emoji_regular/u1F3A7.js new file mode 100644 index 000000000..c1c77e710 --- /dev/null +++ b/dist/noto_emoji_regular/u1F3A7.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F3A7 = void 0; +var u1F3A7 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2407 1499.5q-75 191.5-125.5 221.5t-106.5 30q-32 0-61-10-40 79-82 143t-69 103q5 23 7.5 47t2.5 47q0 203-146 360t-358 157q-2 0-3.5-1t-2.5-1q-2 2-19.5 4.5t-51.5 2.5q-215 0-368-135.5T871 2122q0-239 168-422t406-183q126 0 235.5 59t151.5 156q20-30 35-57t26-50q-34-26-47.5-60.5T1832 1496q0-66 84-221.5t84-281.5q0-153-118.5-269.5T1588 607q-115 0-226.5 48t-196 141T1050 908.5 982 928l-14-1q-7 0-13-2-18 17-33.5 37.5T894 1007l24 25 45 31q45 29 73 70.5t46.5 95T1101 1355q0 162-83.5 279.5t-192 191.5-228.5 74q-80 0-154.5-26t-123-68-64.5-73.5-49-76-60.5-124T118 1370q0-203 143-346t333-143q35 0 70.5 5.5T737 904l39-53q19-26 40-49-6-19-6-37 0-85 150.5-222t319-205 347.5-68q170 0 338.5 73.5t281.5 185T2421 770t61 334-75 395.5zM204 1448q0 6 1.5 11.5t2.5 11.5q0-61 48-159.5t123-173T543 1028t198-36q-32-17-69-25t-78-8q-159 0-278.5 121T196 1370q0 35 8 78zm356.5-111.5Q483 1419 483 1513q0 58 41 98t101 40q84 0 161-76.5t77-167.5q0-65-37.5-109t-99.5-44q-88 0-165.5 82.5zm1778-509q-45.5-106.5-129-200t-217-165T1697 371q215 97 309.5 242.5T2101 980q0 81-23 161t-62 156l-42 80q-19 37-31.5 67t-12.5 52q0 31 24 53t100 62.5 121 40.5q37 0 56-17t86-177.5 67-353.5q0-170-45.5-276.5zM1515 2513q-89-26-129-60.5t-70-101-30-149.5q0-157 107-257.5t248-100.5q47 0 91 12l47-54q-55-61-110.5-81.5T1540 1700q-181 0-313.5 147T1094 2182q0 164 96 248.5t279 84.5h23.5l22.5-2z" + }, + "children": [] + }] +}; +exports.u1F3A7 = u1F3A7; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F3A8.js b/dist/noto_emoji_regular/u1F3A8.js new file mode 100644 index 000000000..34a2bab03 --- /dev/null +++ b/dist/noto_emoji_regular/u1F3A8.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F3A8 = void 0; +var u1F3A8 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2380.5 842.5Q2295 1004 2262 1063l-73 130q-36 65-70 131t-64 135q11 24 11 48-4 55-55 120.5T1901 1855l-37 101q-5 13-21.5 56.5T1777 2079l1 10q-2 127-73 237.5t-187.5 173T1279 2562q-112 0-192-33.5t-80-90.5q0-28 16.5-44.5t58.5-16.5q33 0 43.5-26.5T1136 2240v-51q0-160 69.5-254.5T1386 1805q3-38 49-68.5t58-40.5q-9 2-18 3l-20 2q-56 3-107 3-123 0-188.5 22.5T1019 1820l-64 61q-83 80-165.5 114.5T625 2030q-131 0-245.5-70t-180-214.5T134 1418q0-296 170-554t461.5-412T1358 298q211 0 380 71t273.5 221T2123 915l139-204 27-43q26-40 57-67t66-27q18 0 36 14t18 45q0 48-85.5 209.5zM1336 1602l24 1q106 0 161.5-13t103.5-35q13-19 77-129t141-110q45-51 84-109l76-115q11-38 15.5-74.5t4.5-73.5q0-129-57.5-232.5t-129.5-167T1636.5 441 1366 401q-281 0-550.5 141.5T391 918t-155 500q0 219 105 364t284 145q79 0 141.5-33T926 1765.5t182.5-129.5 227.5-34zm200-276q-87 78-196 78-78 0-132.5-57t-54.5-128q0-97 83.5-172.5T1419 971q87 0 145.5 48.5T1623 1144q0 104-87 182zm-75.5-72.5Q1522 1204 1522 1144q0-31-28-50.5t-75-19.5q-52 0-108 46t-56 99q0 33 26 58.5t59 25.5q59 0 120.5-49.5zM781 812.5q33 27.5 33 70.5 0 51-47.5 96T664 1024q-44 0-70-30.5T568 920q0-51 43-93t100-42q37 0 70 27.5zM623 1694q-32 36-83 36-53 0-89.5-46T414 1578q0-56 31.5-89t80.5-33q55 0 92 43.5t37 101.5q0 57-32 93zm3.5-377.5Q589 1362 537 1362q-47 0-80.5-33t-33.5-84q0-55 39-98t93-43q44 0 76.5 33.5T664 1218q0 53-37.5 98.5zM1093 587q28 32 28 76 0 52-46.5 85T966 781q-40 0-69.5-28T867 687q0-48 49-90t106-42q43 0 71 32zm355 1309q-73 11-129 60t-56 110q0 16 8 31t33 15l30-1q16 0 24 12l11 28q6 17 18.5 24t38.5 7h27q20 0 34 6t14 31q0 8-1 14t-1 12q0 16 18.5 23t41.5 7q33 0 56-11.5t42.5-66T1677 2089q0-14-2-27t-5-25l-65-52q-42-32-87-52t-70-37zm300 75q11-19 18-41l15-44-8-9q-34-34-95.5-73.5T1579 1759l-43 31-20 15q-9 7-9 9 26 15 58 27.5t103.5 63 79.5 66.5zm161-518.5q-54-33.5-66-33.5-28 14-70.5 95T1645 1694q2 0 2 1t2 1q47 20 90.5 49.5t72.5 58.5l47-112q44-103 74-136.5t30-48.5q0-21-54-54.5z" + }, + "children": [] + }] +}; +exports.u1F3A8 = u1F3A8; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F3A9.js b/dist/noto_emoji_regular/u1F3A9.js new file mode 100644 index 000000000..8dbb3e7af --- /dev/null +++ b/dist/noto_emoji_regular/u1F3A9.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F3A9 = void 0; +var u1F3A9 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2128 2065q-101 121-246 216.5T1539 2439t-394 62q-356 0-565-127t-209-366q0-102 48-197.5T577 1644l41-25q19-12 34-27l-7-157q-8-164-52-412.5t-53-282-9-75.5q0-130 226-225t553-95q258 0 441 70.5T1934 602q0 22-2 32l-6 23q-4 15-8.5 46.5T1908 775l-10 85q-36 288-47 455.5t-13 356.5q41-29 90.5-52.5T2034 1596q87 0 141 55t54 149q0 144-101 265zM971 1802q-2-205-17-427.5T911 912q-64-9-121.5-26T671 841q2 14 5 26l6 26q25 132 43.5 265.5T752 1428l15 307q45 31 100.5 45t103.5 22zm387 568q166-36 298.5-94t228.5-130 166-158.5 70-187.5q0-48-22-71.5t-65-23.5q-40 0-96 32.5t-104 80.5l-36 35q-9 9-23 24l-42 45q-64 64-174 217.5T1358 2370zm-585-357q56 40 166 60.5t246 20.5q76 0 146.5-8.5T1479 2066q58-80 116-150.5t135-147.5l-1-24q-99 72-239 110.5t-305 38.5q-85 0-216.5-22T768 1818l4 116q0 48 1 79z" + }, + "children": [] + }] +}; +exports.u1F3A9 = u1F3A9; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F3AA.js b/dist/noto_emoji_regular/u1F3AA.js new file mode 100644 index 000000000..d3e5033dc --- /dev/null +++ b/dist/noto_emoji_regular/u1F3AA.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F3AA = void 0; +var u1F3AA = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2010.5 2460q-343.5 94-710.5 94-336 0-589.5-60.5t-359-133.5T246 2184q0-55 37-119t101.5-167T488 1700q-46-17-70-50.5t-24-82.5q0-17 3-33l4-27q10-90 21-131.5t39.5-74.5 94.5-71l45-25q176-98 391-188.5T1249 912V326q0-34 40-49.5t121-15.5q70 0 149.5 34.5t156.5 103 135 97.5 159 29q23 0 47-5.5t49-5.5q14 0 26.5 6.5T2145 541q0 25-60.5 76.5t-160.5 84-201 32.5q-45 0-81.5-10t-64.5-20l-58-21q-28-9-55-9-32 0-58 9l-57 21v216q63 13 293 120t343 173 146 98 33 148q0 60-18.5 110.5T2086 1640q39 99 106.5 215.5t114.5 192 47 136.5q0 182-343.5 276zm-24.5-801q-6 0-12-3l-11-4q-34 51-66.5 72t-67.5 21q-21 0-40-5t-33-11q-20 42-66.5 67t-97.5 25q-17 0-39-5 36 43 76.5 79.5t82.5 70.5l92 75q57 48 109.5 76t52.5 54q0 33-88 75t-88 102q0 21 23.5 33t55.5 12q174-35 279.5-90t105.5-119q0-36-34-90t-113.5-191-120.5-244zM470 2311q124 58 263 82 30 0 53.5-12t23.5-33q0-60-88.5-102.5T633 2171q0-26 43-47t168-122 179-158l9-9q3-4 6-9-36-3-72-22t-58-53q-26 15-53.5 21.5T800 1779q-54 0-89-22.5t-55-78.5q-19 11-33.5 17t-28.5 10q-52 123-142.5 269.5t-98 170.5-7.5 39q0 69 124 127zm64-969q22 15 65 33.5t105 35.5q14-16 31-29t31-26l62-52q36-29 78-70.5t107.5-96T1138 1029q-88 47-176 85.5t-249 126T534 1342zm1544 47q-27 14-58.5 31.5T1941 1456q3 23 5.5 47.5t9.5 45.5q0 18 15.5 27.5t24.5 9.5q38 0 63.5-41t25.5-85q0-17-2-34t-5-37zm-612 285q19 28 44.5 45.5t81.5 17.5q61 0 94-29.5t33-86.5q0-25 1.5-50t1.5-52q-52 11-109 19.5t-123 13.5l-27 1zm-14-199q66-5 124-12t108-16q-2-2-2-4 0-10-110-135t-155-188-75-91l8 39q3 20 8 39l24 91 39 151zm-195-448l3-26q-14 17-78.5 110.5t-128.5 181T953 1462q53 6 111 10.5t124 6.5q0-39 7.5-98.5T1212 1273l14-70q7-36 11.5-77t10.5-64zm-80 531q-60 0-120-5.5T934 1540q2 23 2 45v46q9 50 42 85.5t84 35.5q41 0 71.5-18t50.5-50q0-32-3.5-63.5t-3.5-62.5zm-54 263q-67 81-141 153.5T822 2110l-40 28q-10 8-16.5 15t-6.5 13q0 10 49.5 34t81 57.5T921 2334q0 14-3 22.5t-7 14.5l-7 10q-3 5-3 11 0 3 4.5 5t9.5 2q3 0 5.5-1t5.5-1q38-14 72-44.5t64-81 61-126.5 53-141 30.5-137.5 6-78-6.5-8.5l-7-5-19 17q-11 9-24 16t-33 13zm664 380l25-13q12-6 20.5-13t8.5-13q0-5-11.5-13t-19.5-13l-10-6q-19-12-34-26l-33-29q-73-65-144.5-133T1456 1796q-18 14-48.5 23.5T1348 1830q27 161 78 279.5t114.5 200T1697 2403q5 0 9.5-4.5t4.5-9.5q0-9-16.5-22t-16.5-31q0-42 36.5-79.5t72.5-55.5zm112-813q36-14 66.5-29t55.5-29q-140-93-273.5-149t-196.5-92-133-64q42 41 88 81t94 78l59 44q36 27 75 53t96 61l35 22q17 11 34 24zM481 1518l-4 27q-2 13-2 22 0 37 26.5 53.5T568 1637q53 0 77.5-29t27.5-74l4-48-18-5q-62-21-100-38t-62-31q-7 25-10.5 52.5T481 1518z" + }, + "children": [] + }] +}; +exports.u1F3AA = u1F3AA; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F3AB.js b/dist/noto_emoji_regular/u1F3AB.js new file mode 100644 index 000000000..8daf142f1 --- /dev/null +++ b/dist/noto_emoji_regular/u1F3AB.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F3AB = void 0; +var u1F3AB = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2537 1505.5q-3 9.5-11 16.5l-755 880q-8 11-19 15.5t-24 4.5q-37 0-234-76t-409.5-206-389-287T381 1523.5 151 1189t-92-187q0-29 23-46l670-531q16-12 39-12 17 0 30 8.5t20 22.5l4 8q31 59 84.5 131t134 159.5T1244 911t209.5 151.5T1669 1184t202 87.5 201 67.5 215.5 53 181.5 29 71 64q0 11-3 20.5zm-170 20.5q-155-26-292.5-64t-260.5-86q-3 14-19 28t-45 14q-23 0-38.5-13t-15.5-36q0-11 3-19.5t12-17.5q-307-133-554.5-342T771 559l-578 459q145 284 363 529.5t499 432.5q8-11 21-16.5t27-5.5q27 0 43 18t16 38q0 18-10 29 130 78 274 145t281 108zm-1126 55q-9 7-20 7-15 0-59.5-25.5T1084 1514l-41-29q-18-12-30-22l-25-20q-8-5-8-15 0-3 1-7t5-7l47-40q5-5 18-5t19 5q0 3 25 19l71 47q39 26 65 41l39 23q17 11 21 15t4 9q0 7-6 13zm-96 92l-57 49q-9 6-18 6-14 0-117.5-84.5T849 1546q0-8 7-15l43-36q7-6 18-6 10 0 19 6 2 3 17 14l37 28q21 16 47 34l86 60q8 5 18.5 12t10.5 16q0 7-7 14zM754 959q-6-5-6-13 0-11 10-18l31-26q3-2 7-3t7-1q11 0 19 6l18 20q5 5 5 15t-8 15l-34 26q-5 5-14 5-13 0-18-8zm168 173q-7-7-7-14 0-9 8-15l37-30q7-6 17-6t19 7l38 35q7 6 7 15 0 7-7 13l-39 30q-7 6-18 6-8 0-18-7zm106 93q-7-5-7-15 0-4 1.5-7.5t5.5-6.5l39-31q6-6 17-6t20 7l37 28q8 5 8 15 0 7-6 13l-44 32-9 5q-4 2-9 2-11 0-18-7zm108 85q-8-5-8-15 0-7 8-12l42-33q10-7 21-7 10 0 18 5l42 29q8 5 8 14 0 7-7 12l-45 36q-6 5-19 5t-19-5zM671 858q-5-5-5-12 0-9 9-20l29-23q3-3 7-4t7-1q13 0 18 8l29 35q5 6 5 14 0 9-8 17l-32 26q-8 4-13 4-11 0-17-10zm585 533q-9-7-9-14 0-3 1.5-6.5t6.5-5.5l47-37q7-6 20-6 9 0 19 4l87 47q11 6 11 15 0 7-6 11l-49 40q-8 7-22 7-8 0-18-5zm-426-350q-7-7-7-15 0-9 9-15l35-27q6-6 15-6 12 0 18 9l30 27q7 7 7 15 0 9-8 15l-37 29q-5 4-15 4-13 0-18-7zM537 940q3 0 9-8l14-14q7-7 15-12.5t13-5.5q8 0 34.5 41.5t126.5 156T954 1285l22 18q12 10 12 18 0 7-7 12t-12 9l-14 13q-8 7-16 13t-14 9l-8 1q-16-5-30.5-17.5t-109-103.5-156-175T546 979.5 532 951q0-6 5-11zm315 485q4 4 4 8 0 8-27.5 31t-40.5 23q-9 0-16-5.5t-81.5-83-159-185.5T426 1068q-12-19-12-29 0-3 22.5-26.5T469 989q5 0 7 2l5 7q40 68 116.5 162T726 1303t117 114zm392 418h7q26 0 42.5 18t16.5 38q0 19-15 33.5t-48 14.5q-22 0-40-12.5t-18-35.5q0-26 20.5-41t34.5-15zm184-105.5q16 17.5 16 38.5 0 18-14.5 33t-47.5 15q-21 0-39-12.5t-18-35.5q0-25 16.5-40.5t40.5-15.5q30 0 46 17.5zm69-148.5q4 0 7-1h6q28 0 44.5 18.5t16.5 39.5q0 18-15 33t-48 15q-20 0-38.5-12.5T1451 1646q0-21 14-36.5t32-20.5zm184.5-125.5q15.5 16.5 15.5 36.5 0 16-14.5 33.5T1632 1551q-22 0-38-12.5t-16-35.5q0-26 18.5-41t44.5-15q25 0 40.5 16.5z" + }, + "children": [] + }] +}; +exports.u1F3AB = u1F3AB; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F3AC.js b/dist/noto_emoji_regular/u1F3AC.js new file mode 100644 index 000000000..2afb9c629 --- /dev/null +++ b/dist/noto_emoji_regular/u1F3AC.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F3AC = void 0; +var u1F3AC = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2135 928q19 8 19 39l-43 266-13 262q-2 12-9.5 21.5T2069 1530l-28 9-12 563q0 12-8 22t-19 15L810 2555q-2 2-8 2l-13 1-218-40q-13-2-22-13t-9-25l-8-654-35-5q-13-2-22-12.5t-11-24.5l-19-311q0-9 7.5-22.5T477 1432l1214-249L538 685q-12-5-17.5-16.5T515 643v-11q0-6 2-11l34-330q2-16 12.5-26t25.5-10h351q6 0 12 1.5t8 3.5zm-185 686l1-42h-8q-23 5-251.5 73T1296 1762l-415 122-10 5v31q0 15-1 35 0 5 1.5 9.5t9.5 4.5q16 0 29.5-8.5t190-57.5 313.5-93l7-3q3 0 7-1 7 0 10 5t3 10v72.5l-4 71.5-282 88q-268 83-277 87.5t-9 13.5l1 32q0 7 1 14l2 14q0 7 4 7 20 0 56.5-16t430.5-134.5 539-178.5l23-7q13-4 17-9t4-17v-48q0-8-4-8-12 0-43 10.5t-54 20.5l-35 14q-74 19-148 44t-148 48l4-69q2-35 2-71 0-24 85-47.5t105-30.5l113-35q16-6 66.5-19t54-20 5.5-34zM756 1862l-139-23v608l139 25v-610zM625 333l-28 280 261 13 38-293H625zm-99 1184l15 231 265 43v-234zm441-858l148 71q44-48 92.5-95.5T1303 545l-162-91q-42 48-82 98t-81 96zm643 60l-130-74q-45 41-94.5 83t-86.5 89q148 71 216.5-6.5T1610 719zm-400 973q-41-40-78.5-85.5T1059 1511l-157 37q43 66 79.5 114t69.5 75zm693-805l-138-80-39 33q-36 31-67.5 63.5T1608 965l139 65 74-65q25-21 82-78zm-378 716q-18-18-71.5-81.5T1384 1433l-148 36q37 45 77 86t78 86zm305-86q-35-35-66.5-76t-66.5-83l-152 37 146 162zm241-535l-28-16q-12 10-29.5 23.5T1975 1025l-44 47q-13 14-31 32l125 59q0-3 7-8.5t15-13.5zm-43 354l-40-47-127 31q31 39 65 74.5t70 75.5l25-8v-16z" + }, + "children": [] + }] +}; +exports.u1F3AC = u1F3AC; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F3AD.js b/dist/noto_emoji_regular/u1F3AD.js new file mode 100644 index 000000000..30824d79d --- /dev/null +++ b/dist/noto_emoji_regular/u1F3AD.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F3AD = void 0; +var u1F3AD = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1572 769l2 9v9q0 24-8 65t-21 96l-15 59q56-17 112.5-25.5T1756 973q153 0 248.5 28t141.5 90.5 107 241.5 95 329.5 34 241.5q0 143-117 355t-295 212q-77 0-244.5-40.5t-247.5-90-129-118-96-203.5l-46-132q-23-65-43-132-77 56-191 100.5T783 1900q-118 0-228.5-93T383 1581t-61-255q0-94 27-243t76-322.5T522 522t164.5-96.5T936 394q119 0 233.5 35.5t206 101T1516 670t56 99zm-313 633l6-10q7-11 15-28.5t8-27.5q0-13-12-13-8 0-25 10.5t-118 43.5-215 33q-119 0-209.5-45.5t-157-122.5-69.5-82.5-13-5.5q-9 0-12 15.5t-3 32.5q0 159 108 292t284 133q132-2 243-69t170-156zm976 620l-1-6q-22-96-124.5-167t-209.5-71q-90 0-167 53t-132 161-55 181l1 17q0 16 5.5 25.5t15.5 9.5q20 0 88-91t151-133 171-42q60 0 119 19t85 38l14 10q7 5 14.5 8.5t13.5 3.5 8.5-5 2.5-11zm-969 132q-5 0-8 1h-8q-72 4-122.5 83t-110 112-125.5 33q-50 0-107-22.5t-57-34.5q0-2 4-3t7-1h16q8 0 18-1 21 0 75-11.5t54-27.5q0-3-3-4h-6q-56-2-110.5-40.5T728 2181q0-3 4-3 95 24 135 24 88 0 154.5-107t179.5-116zm-987-884q-3 32-3 64 0 30 2.5 59t9.5 57q-100-49-152.5-114T83 1194q0-95 70.5-185.5T352 877q-13 49-24 98.5t-21 99.5q-56 14-88.5 43t-32.5 68q0 29 27.5 49.5T279 1270zm159 477q-98 72-157 173l-12 22q-5 9-18 33.5t-15 24.5q-3 0-6-16t-3-33l-1-18q0-30 4-58.5t11-57.5l5-16q3-8 3-15 0-5-4-5-6 0-44 26.5t-59 63.5l-7 12q0 2-4.5 8t-5.5 6q-3 0-4-5t-1-11q0-82 43-149t108-115l63-47q17 42 39 83t45 70zm1137.5-40.5Q1629 1647 1629 1550q0-37-11.5-77t-29.5-40q-14 0-36 46t-84.5 101.5-111.5 79-49 39.5q0 15 35 41t90 26q90 0 143.5-59.5zM1818 1394q0 28 24 80t72 90.5 102 38.5q58 0 116.5-39.5t58.5-97.5q0-12-7.5-16t-20.5-4l-52 1q-76 0-140-16.5t-94-37.5-43-21q-16 0-16 22zm662.5 366.5Q2454 1824 2420 1869q-3-44-11-90t-21-103q20-19 34-42.5t14-51.5q0-40-26-59t-65-19l-26-87q-13-43-29-86 130 13 173.5 93t43.5 191q0 82-26.5 145.5zM1369 1107q0-75-48-131.5T1194 919q-74 0-127.5 48.5T1013 1041q0 11 17 11 15 0 31-4l32-7q16-4 33.5-7.5t37.5-3.5q52 0 103 33.5t65.5 57 23.5 23.5q6 0 9-7t3-14zM467.5 933.5Q470 937 478 937q7 0 15-3l14-5q20-5 40.5-8.5T589 917q53 0 92.5 19.5t64 42.5 33.5 23q10 0 13.5-16t3.5-29q0-59-46-105t-110-46q-66 0-120.5 47T465 925q0 5 2.5 8.5z" + }, + "children": [] + }] +}; +exports.u1F3AD = u1F3AD; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F3AE.js b/dist/noto_emoji_regular/u1F3AE.js new file mode 100644 index 000000000..2d1dac6fb --- /dev/null +++ b/dist/noto_emoji_regular/u1F3AE.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F3AE = void 0; +var u1F3AE = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2470 1932q0 110-60 188.5t-156 78.5q-121 0-241-139.5T1820 1885t-184.5-56.5T1285 1807q-230 0-334 22t-172.5 57-161 140T466 2165t-121 34q-96 0-155.5-79T130 1940q0-128 69-305t125-296.5 106-233T538.5 929t58.5-88q0-15-2.5-30t-2.5-29q2-58 46-84.5t142-58T973 608q37 0 45 25.5t14 42.5 47 17q22 0 90-5.5t121-5.5q30 0 63.5 2t65.5 4l61 5q29 2 49 2 48 0 57-43.5t50-43.5q92 0 197 33.5t144.5 61.5 39.5 76q0 15-3 29.5t-3 31.5q0 23 27.5 48.5T2139 1044t202 442.5 129 445.5zM859 1248l8 1 37-1q43 0 53.5-12t10.5-58l-1-35q0-36-22-40.5t-68-8.5-46-23q0-4 1-7t1-6v-38q-2-41-13.5-51.5T763 958l-38 1q-34 0-38.5 17.5T678 1043t-22 49q-90 0-104 13t-14 83q0 36 12.5 47.5T601 1247h52q13 0 17.5 5t4.5 18v33q0 62 17.5 70t80.5 8q28 0 42.5-10t14.5-41v-45q0-11 1.5-24t17.5-13h10zm489 264q-29-26-67-26-42 0-69 27.5t-27 72.5q0 35 28.5 59t68.5 24q39 0 67-25t28-67q0-39-29-65zm-311 13.5q-30-24.5-66-24.5-39 0-67.5 27t-28.5 72q0 38 29.5 61t68.5 23q40 0 67-25.5t27-67.5q0-41-30-65.5zm634.5 16.5q-28.5-25-67.5-25-38 0-67 25t-29 73q0 38 29 61t69 23q39 0 66.5-25.5t27.5-67.5q0-39-28.5-64zm35-596q-28.5 28-28.5 64 0 38 26.5 61.5t58.5 23.5q31 0 62-27.5t31-61.5-25-61-60-27q-36 0-64.5 28zm145 345.5Q1826 1264 1793 1264q-36 0-64.5 27t-28.5 64q0 38 25.5 62t58.5 24q32 0 62.5-27.5t30.5-62.5q0-32-25.5-59.5zm-329-173.5q-27.5 28-27.5 64 0 38 25.5 61t56.5 23 63.5-27.5 32.5-61.5-25.5-60.5-59.5-26.5q-38 0-65.5 28zm512 1.5Q2009 1093 1977 1093q-38 0-66.5 29t-28.5 63q0 37 26 60.5t59 23.5 63-27.5 30-61.5-25.5-60.5z" + }, + "children": [] + }] +}; +exports.u1F3AE = u1F3AE; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F3AF.js b/dist/noto_emoji_regular/u1F3AF.js new file mode 100644 index 000000000..486e1fd45 --- /dev/null +++ b/dist/noto_emoji_regular/u1F3AF.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F3AF = void 0; +var u1F3AF = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2268 632q-12 23-36 47l-7 7q-24 26-50.5 52t-55.5 59l-4 4q-30 35-64 64l-4 4q-24 28-53.5 40t-52.5 15q185 239 185 551 0 242-109 444t-309.5 317-455.5 115q-257 0-473-107.5T441 1945t-122-433q0-275 119.5-486.5t339-328T1281 581q96 0 177.5 19.5T1622 658q-4-20-4-40 0-50 38.5-105t79-110.5 80-110T1910 238q34 0 60 23t36 62l17 70 6 34q3 16 3 22 20 6 28.5 15t15.5 22l5 1 41-1h45q54 0 83.5 29t29.5 71q0 23-12 46zm-562 56l16 66 10-11 29-35 194-238q0-3-13-78.5t-32-75.5q-14 0-31.5 24.5t-100 131.5-82.5 145q0 33 10 71zm133 235q-21 0-41-1l-48-2-465 526q-10 12-18 15t-15 3q-17 0-29.5-12t-12.5-29q0-8 3.5-18t11.5-21l437-548q-9-14-12-36t-7-40q-98-57-182-78t-180-21q-394 0-638 234.5T399 1512q0 215 108.5 388.5t307.5 273 437 99.5q363 0 579-230t216-568q0-305-208-552zm-516 261q-63 77-113 136.5t-50 103.5q0 37 28.5 62.5t63.5 25.5q23 0 41-10t39-33l153-171q25 42 40 88.5t15 93.5q0 116-90.5 195t-209.5 79q-131 0-213.5-87T944 1457q0-120 83.5-202.5T1233 1172q48 0 90 12zm365-119q68 78 104 177t36 207q0 243-172.5 410.5T1229 2027q-263 0-429.5-157T633 1453q0-246 172-413t427-167q75 0 148.5 16.5T1521 938l-51 63q-55-24-115-36t-123-12q-235 0-377.5 146.5T712 1453q0 230 141 363t376 133q219 0 370-143t151-357q0-91-30-175t-84-150zm502-497.5q-12-2.5-23-2.5h-109l-224 259-17 19q20 0 38 2t42 2q53 0 70.5-13t91-86 93.5-98.5 35-38 15-27.5q0-14-12-16.5z" + }, + "children": [] + }] +}; +exports.u1F3AF = u1F3AF; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F3B0.js b/dist/noto_emoji_regular/u1F3B0.js new file mode 100644 index 000000000..ec90065ff --- /dev/null +++ b/dist/noto_emoji_regular/u1F3B0.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F3B0 = void 0; +var u1F3B0 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2459.5 1707.5q-31.5 122.5-79 207t-80 108.5-135.5 24H435q-82 0-113-12t-62-57l-16-22q-67-101-101-229t-34-281q0-177 24-293.5T185.5 965t62-114 62.5-56 79-13h1821q79 0 116.5 40.5T2396 925t63.5 194.5T2491 1446q0 139-31.5 261.5zM1650 1838q29-96 39.5-195t10.5-200v-18h-257q-23 75-31 142t-8 116q0 43 3 63l3 29h-236q0-5-1.5-15.5t-1.5-31.5q3-69 12.5-104.5t35-87.5 72.5-111H886l-1 18q0 118 15 234.5t57 224.5l12 29q8 22 22.5 35t37.5 13h490q10 0 21 1 31 0 47.5-11.5t27.5-33.5l11-26q7-17 13-35zm-764-427h138q0-5-2.5-28t-2.5-60q0-44 5-96.5t14-98.5h67v36q35-26 67.5-36t62.5-10q25 0 48.5 5.5t45.5 11.5l43 13q19 7 39 10t38 3q22 0 36.5-3.5t23.5-6.5l56 37q-42 55-70.5 111.5T1447 1411h253q-2-115-18-230t-44.5-207-41-108-65.5-16h-463l-32-1q-35 0-50 20.5t-55.5 174T886 1411zm1525 32v-18h-198q-15 69-20.5 131t-5.5 112q0 28 1 47l2 34 2 24 2 17h-235q0-67 22.5-175t79.5-190h-282v18q0 189-26 301.5t-44.5 152.5-18.5 56q0 13 11 19.5t30 6.5h451q74 0 122-86.5t77.5-197.5 29.5-252zM896 1931l-11-23q-39-88-57-207t-18-258l1-18H652q-13 59-17.5 113t-4.5 99q0 41 2.5 72.5t6.5 61.5l-244 3v-14q0-7-1-18 0-97 30-177.5t69-139.5H188l-1 18q0 128 25 236.5t66.5 183 65 95.5 111.5 21h420l12-1q7 0 11.5-5.5t4.5-13.5q0-13-7-28zm839-1081q-23 0-37 4.5t-14 20.5q0 14 12 37t45.5 165.5T1778 1411h108l1-18v-32q0-76-7-137t-21-99h71l3 9q2 7 5 21 28-22 56-30.5t56-8.5q24 0 46 5t42 10l37 11q17 5 33 5 32 0 45-6l24-10 46 31q-41 58-66.5 122t-40.5 127h195q0-12-1-37 0-190-63-357t-141-167h-471zM188 1411h81q0-11-1-32 0-80 6.5-123t26.5-132h66l-9 31q27-16 53-22t50-6q27 0 51.5 5t47.5 11l44 11q21 5 41 5 21 0 37.5-4.5t25.5-9.5l50 32q-39 55-63.5 114.5T656 1411h156q3-198 34-331.5T892 917t15-45q0-9-6-16t-20-7h-9l-9 1H423q-55 0-81 17t-63 84-62.5 182.5T188 1411zm917 0h198q14-17 25-29l18-20q8-8 15-14l15-13q-15 5-31 7t-33 2q-42 0-82-8.5t-68-8.5-42.5 22-14.5 48v14zm-602 0q14-21 25-34l19-22q8-9 15-15l12-11q-21 10-38.5 13.5T503 1346q-27 0-48.5-6.5T411 1331q-34 0-52.5 27.5T340 1411h163zm1462-75l1 31v22q0 11-2 22h107q18-24 34-41t33-31l17-14q-14 6-29 8.5t-30 2.5q-31 0-59-5.5t-47-5.5q-14 0-25 11z" + }, + "children": [] + }] +}; +exports.u1F3B0 = u1F3B0; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F3B1.js b/dist/noto_emoji_regular/u1F3B1.js new file mode 100644 index 000000000..b18ae56b6 --- /dev/null +++ b/dist/noto_emoji_regular/u1F3B1.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F3B1 = void 0; +var u1F3B1 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1578 1545.5Q1459 1663 1295 1663q-165 0-284-117.5T892 1260q0-166 119-283.5T1295 859q164 0 283 117.5t119 283.5q0 168-119 285.5zm-464.5-907Q1199 691 1248 782q-193 19-313.5 160.5T814 1277q-106-37-172.5-129.5T575 943q0-146 104-251.5T930 586q98 0 183.5 52.5zM1344 782q43-87 129.5-140.5T1659 588q146 0 250.5 104T2014 943q0 114-66.5 205.5T1775 1277q0-192-123-335t-308-160zm749 161q0-172-118.5-296T1692 511q46-75 119-115t153-40q132 0 226 94t94 225q0 96-53.5 176T2092 967zm196 1586.5q-28 24.5-68 24.5-24 0-53.5-11t-56.5-25l-560-283q-23-12-34.5-32.5T1505 2161q0-27 18-50.5t44-23.5q3 0 7.5 1t9.5 3l542 235q34 15 112.5 48t78.5 91q0 40-28 64.5zM497 929q-58-44-92-109.5T371 675q0-131 94-225t225-94q86 0 157.5 42.5T962 510q-8 0-16-1t-16-1q-174 0-300.5 123T497 929zm984.5 1135.5q-10.5 4.5-27 25T1438 2137q0 14 3.5 21.5t3.5 15.5q0 4-7 4l-38-19q-511-254-785-394t-303-156-29-33q0-13 7.5-24t21.5-11q27 2 83.5 31.5T951 1816t520 224 21 15-10.5 9.5zM1296 710q-44-69-107.5-116T1047 525q43-80 118.5-124.5T1327 356q88 0 160.5 43.5T1601 514q-97 12-175.5 64T1296 710z" + }, + "children": [] + }] +}; +exports.u1F3B1 = u1F3B1; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F3B2.js b/dist/noto_emoji_regular/u1F3B2.js new file mode 100644 index 000000000..9327a3118 --- /dev/null +++ b/dist/noto_emoji_regular/u1F3B2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F3B2 = void 0; +var u1F3B2 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2237.5 1753.5Q2220 1841 2170 1907t-141 148.5-175 158-162.5 112T1537 2362q-80 0-194.5-23t-199-38-245-64-217.5-79.5T576 2047t-90-200l-23-63q-20-57-69-189t-49-261q0-186 50.5-283T516 878t223-197.5 270.5-169T1247 464q173 0 453 73t401 223 137.5 406.5T2255 1549q0 117-17.5 204.5zM549 1218.5q53 35.5 330 110t351 74.5q8 0 16 1t16 1q85 0 131-22t125.5-81 203.5-166l94-83q12-10 79.5-70t67.5-136q0-133-238-212.5T1301 555q-184 0-331 80T659.5 874 496 1129q0 54 53 89.5zm862 864.5q-11-89-16.5-104.5T1373 1842t-41-193.5-52-97.5-45.5-32.5-71.5-23.5l-208-58-113-29q-55-14-101-25l-74-18q-45-11-80.5-17t-59.5-6q-39 0-56.5 23.5T453 1417q0 38 22.5 97.5T509 1612l15 57 14 59q7 29 15 54l31 105q26 90 75 153.5T828 2141l66 20q119 36 220.5 54.5T1219 2235l54 11q26 6 50 10t44 4q35 0 45-12.5t10-48.5q0-27-11-116zm759.5-637.5q-7.5-78.5-7.5-159.5 0-146-28.5-207t-83.5-61q-26 0-54 15t-58 39l-33 26q-69 53-121 95.5t-155.5 122-144 145.5-40.5 189q0 60 10 119l20 118q3 15 8.5 48t12.5 67l12 62q13 71 41 124.5t66 53.5q26 0 107.5-40t248.5-207l49-49q88-86 123-153.5t35-182.5q0-86-7.5-164.5zM1092 819.5q76-55.5 185-55.5 100 0 158 51t58 110q0 77-81 128.5t-183 51.5q-90 0-151.5-41.5T1016 958q0-83 76-138.5zm-485 671q21-17.5 48-17.5 48 0 89 35.5t41 81.5q0 31-23 46t-52 15q-49 0-86.5-36.5T586 1538q0-30 21-47.5zm466.5 106q20.5-16.5 49.5-16.5 49 0 89 34t40 81q0 31-22 46.5t-52 15.5q-50 0-87.5-37t-37.5-77q0-30 20.5-46.5zM1559 1665q-19-17-19-55 0-40 31.5-79.5t69.5-39.5q28 0 44 22t16 51q0 46-31 82t-71 36q-21 0-40-17zm352-327q-18-17-18-55 0-42 31.5-80t70.5-38q27 0 43.5 22.5t16.5 50.5q0 43-30.5 80t-72.5 37q-23 0-41-17zm81 410q-15-14-15-47 0-36 25.5-69t57.5-33q25 0 38 19t13 42q0 41-27 71.5t-58 30.5q-19 0-34-14zm-323 298q-16-15-16-49 0-39 28.5-74t62.5-35q26 0 39 21.5t13 44.5q0 43-28 75t-64 32q-19 0-35-15zm-825.5-306.5Q861 1724 888 1724q48 0 91.5 35.5t43.5 83.5q0 27-19 39t-45 12q-52 0-92.5-36.5T826 1782q0-27 17.5-42.5zm-123 190Q734 1916 756 1916q43 0 81 30.5t38 69.5q0 23-16.5 34t-39.5 11q-43 0-77.5-31.5T707 1964q0-21 13.5-34.5zM1139 2017q17-12 39-12 44 0 82.5 32.5t38.5 74.5q0 23-17 34t-41 11q-42 0-80.5-32.5T1122 2053q0-24 17-36z" + }, + "children": [] + }] +}; +exports.u1F3B2 = u1F3B2; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F3B3.js b/dist/noto_emoji_regular/u1F3B3.js new file mode 100644 index 000000000..f6b60daa4 --- /dev/null +++ b/dist/noto_emoji_regular/u1F3B3.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F3B3 = void 0; +var u1F3B3 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1678.5 2178.5Q1575 2354 1396.5 2457T1008 2560q-211 0-391-105t-281.5-279.5T234 1798q0-204 103-379.5t282.5-278T1008 1038t388 102 282.5 278 103.5 380q0 205-103.5 380.5zM883 1463q-22-15-47-15-32 0-54.5 21t-22.5 51q0 27 19 46.5t53 19.5q29 0 51.5-21t22.5-52q0-35-22-50zm260.5-76.5q22.5-18.5 22.5-51.5 0-29-20.5-44.5T1100 1275q-34 0-56 20.5t-22 49.5q0 25 22 42.5t48 17.5q29 0 51.5-18.5zM1270 1621q-23-21-58-21-33 0-60 24.5t-27 58.5q0 35 21 59.5t59 24.5q36 0 62-26t26-60q0-39-23-60zm100-608.5q-30-33.5-30-88.5l1-16q0-8 1-15l8-63q17-133 105-195.5t120-95.5q0 46 36 78t82 32q10 0 19-2l18-4q-10 35-12 93.5T1676 867t-92 109.5-80 53.5-55 16q-49 0-79-33.5zM1608 491q2-4 33.5-74.5T1749 346q38 0 65 27t27 64q0 43-22 77.5t-48 64.5q-20 8-46 8-45 0-76-25t-41-71zm484 462q-12 23-12 47 0 43 26 68.5t65 40.5q-29 29-54.5 73.5t-104.5 93-185 48.5l-20-1-10 1q-34 0-62.5-30t-28.5-66q0-24 10.5-47t24.5-42l35-48q74-103 174.5-112.5T2092 953zm234.5 71.5Q2287 1059 2234 1074q-41-7-71.5-37.5T2132 965q0-9 3-18l5-17q4-3 45-36t84-33q46 0 71.5 29t25.5 59q0 41-39.5 75.5zM727 543q22 13 50 13 44 0 81.5-32.5T904 445q29 25 93 64.5T1108.5 632t57.5 196q0 5-1 10t-1 10 1 10.5 1 10.5q0 41-34.5 74t-76.5 33q-49 0-131.5-56.5T805.5 815 759 695l-8-52q-4-26-9-51.5T727 543zm-82-284q30-32 70-32 43 0 82.5 40.5T862 374q-9 51-44 86t-81 35q-20 0-38-6-17-19-50.5-57.5T615 338q0-47 30-79z" + }, + "children": [] + }] +}; +exports.u1F3B3 = u1F3B3; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F3B4.js b/dist/noto_emoji_regular/u1F3B4.js new file mode 100644 index 000000000..400822f69 --- /dev/null +++ b/dist/noto_emoji_regular/u1F3B4.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F3B4 = void 0; +var u1F3B4 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2356 895q-14 34-46 103l-114 239-253 521q-31 64-93.5 190.5T1773 2104l-103 208q-56 115-96.5 163t-104.5 48q-25 0-48.5-9t-30.5-13L323 1949q-51-26-72-63t-21-76q0-38 12.5-63t31.5-50l905-1261q22-31 53-41.5t53-10.5q20 0 32 3l28 8q32 10 81 26l109 36 128 43 136 47 264 93q54 20 180.5 66T2370 834q0 27-14 61zm-133 59q17-34 33.5-71.5T2273 836q0-11-24.5-21t-150-59-266.5-95q51 50 76.5 115t25.5 134q0 105-54.5 189.5t-150 121.5-185.5 37q-185 0-308.5-105T1112 887q0-141 108-237t258-112l-67-23q-44-14-80-24t-46-10q-8 0-16.5 4.5T1248 508l-475 658h53l38-1q332 0 568 171t365 500l25-52 112-229q78-158 144-295.5T2207 988zm-929.5 141q100.5 84 250.5 84 130 0 220.5-75.5T1855 910q0-78-40.5-146t-135-108-168.5-40q-117 0-217.5 80T1193 887q0 124 100.5 208z" + }, + "children": [] + }] +}; +exports.u1F3B4 = u1F3B4; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F3B5.js b/dist/noto_emoji_regular/u1F3B5.js new file mode 100644 index 000000000..92fca1fd1 --- /dev/null +++ b/dist/noto_emoji_regular/u1F3B5.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F3B5 = void 0; +var u1F3B5 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2274.5 1460.5Q2243 1478 2202 1478q-77 0-138.5-51T1947 1277.5t-155-163-290-108.5l-205 970q-34 166-215 290t-367 124q-179 0-300.5-120T293 1985q0-176 164.5-294.5T828 1572q103 0 199 32t168 101l259-1237q6-28 28.5-45.5T1532 405q92 0 274.5 110.5t294.5 266 112 359.5q0 18-1.5 36.5t-1.5 39.5q0 98 48 134t48 66q0 26-31.5 43.5z" + }, + "children": [] + }] +}; +exports.u1F3B5 = u1F3B5; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F3B6.js b/dist/noto_emoji_regular/u1F3B6.js new file mode 100644 index 000000000..43b831675 --- /dev/null +++ b/dist/noto_emoji_regular/u1F3B6.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F3B6 = void 0; +var u1F3B6 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2366.5 1749.5Q2342 1761 2318 1761q-32 0-61.5-16.5T2202 1702l-31-31q-45-45-109-62.5t-124-17.5q-4 0-9 1t-10 1l6 533q0 111-100.5 200.5T1614 2416q-78 0-148.5-57.5T1395 2218q0-104 93.5-181t217.5-77q35 0 69.5 8.5t64.5 27.5l-8-681q0-26 19.5-36t45.5-10q7 0 14 1l14 2q175 35 271 123.5t111 182 49.5 108 34.5 33.5-24.5 30.5zm-1144.5 181q-20 11.5-48 11.5-64 0-121.5-74.5t-129-100T782 1742l-37 532q-6 97-106.5 181T430 2539q-83 0-152-60t-69-144q0-101 91-173t211-72q43 0 84 11t76 36l47-680q0-23 16.5-31.5t42.5-8.5q10 0 20 2l17 4q169 45 260.5 144.5T1171 1759t38 109 33 36q0 15-20 26.5zM1083 1026q91-77 209-77 40 0 77.5 8t70.5 29l5-681q0-25 19.5-33.5t42.5-8.5h16q66 5 175 56.5T1858 443t60.5 148.5 44 94T1997 720t-22 28.5-49 11.5q-32 0-61.5-16.5T1809 700l-31-32q-40-42-101.5-62T1527 586l-2 533q-2 108-103.5 196.5T1211 1404q-82 0-150.5-58.5T992 1204q0-101 91-178z" + }, + "children": [] + }] +}; +exports.u1F3B6 = u1F3B6; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F3B7.js b/dist/noto_emoji_regular/u1F3B7.js new file mode 100644 index 000000000..32425877c --- /dev/null +++ b/dist/noto_emoji_regular/u1F3B7.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F3B7 = void 0; +var u1F3B7 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2469 758q15 12 27 29.5t12 39.5q0 31-21.5 47.5T2443 891q-13 0-41-6t-117-28l-127-31q-20-5-33-19t-14-35q0-5-4-5-58-18-103-53.5t-73-75.5l-25-34-18 32q-17 29-41.5 88.5T1801 844l-26 71q-8 23-30 79l-124 312q-38 97-79 198l-81 202-142 348q-30 73-61 142t-84 129.5-117.5 102.5-140.5 63-153 21q-241 0-379.5-154T245 1938q0-91 29.5-240t29.5-203q0-81-76.5-170T151 1163q0-122 135-202.5T662 880q205 0 329 71.5t124 185.5q0 40-18 89.5t-33.5 80T1008 1521l-17 77q-9 40-24 98l73-129q-4-13-4-30 0-50 28-88t72-55l46-85q-8-24-8-49 0-54 33.5-94.5t84.5-50.5l26-47q-8-15-13.5-31.5t-5.5-36.5q0-55 39-95t95-42l14-25q-24-35-24-78 0-58 41-99.5t99-41.5l6 1 102-184q41-72 90.5-101.5T1886 305q67 0 135 42t107.5 131.5T2195 593l19-11q7-4 20-4 17 0 51.5 18.5T2366 639t70 68l26 45zm-1217 502q0 29 20.5 48.5t49.5 19.5 49.5-19.5 20.5-48.5-20.5-49.5-49.5-20.5-49.5 20.5-20.5 49.5zm-116 224.5q-21 20.5-21 52.5 0 29 21 50.5t52 21.5q29 0 50.5-21.5t21.5-50.5q0-32-21.5-52.5T1188 1464q-31 0-52 20.5zm384.5-680Q1540 821 1563 821q27 0 45-17.5t18-43.5-18.5-44-44.5-18q-25 0-43.5 18.5T1501 760q0 28 19.5 44.5zM1396 1043q18 17 42 17 25 0 43-17t18-43q0-27-19.5-43t-45.5-16q-23 0-39.5 18t-16.5 41q0 26 18 43zm-535.5 4q-88.5-34-211.5-34-134 0-221.5 41T340 1163q0 56 86 91t212 35q136 0 223.5-40t87.5-108q0-60-88.5-94z" + }, + "children": [] + }] +}; +exports.u1F3B7 = u1F3B7; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F3B8.js b/dist/noto_emoji_regular/u1F3B8.js new file mode 100644 index 000000000..d6237ba16 --- /dev/null +++ b/dist/noto_emoji_regular/u1F3B8.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F3B8 = void 0; +var u1F3B8 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2391 369q43 0 69.5 20t26.5 52q0 29-28.5 62t-48.5 64.5-60.5 69T2260 676t-82 42l-535 597-22 26q-32 36-59.5 86.5T1534 1522q0 30 18.5 51t52.5 21q27 0 57-27t53-27q31 0 42 20t11 46q0 56-44.5 136.5t-154.5 122-126 163.5-70 265-175 233-288 90q-185 0-359.5-105t-286-285.5T153 1869q0-143 73-250.5t166.5-155 265-63.5 285-113 135-236.5T1198 840t211-71q31 0 50 16.5t19 42.5q0 48-53 86t-75.5 85-22.5 93q0 45 21.5 70.5t63.5 25.5q14 0 35-4.5t40-21.5l625-541q3 0 7-17l10-35q15-56 21.5-62.5t6.5-13.5-6.5-13-29.5-6q-16 0-23.5-13t-7.5-25q0-19 12.5-33.5T2137 388q13 0 25.5 8t12.5 25l-1 20q0 11 5 17.5t11 6.5q5 0 9.5-3.5T2223 446l22-14q4-6 4-10 0-3-1-6l-2-6q-3-8-11-12l-18-7q-9-3-15.5-10.5T2195 358q0-16 12-30t32-14q14 0 29 7t15 27q0 11-4 19.5t-4 19.5 9 17l5 3q10-4 36-17t27-16v-4q0-7-6-13l-14-11q-8-6-14.5-13.5T2311 314q0-17 13.5-30t31.5-13q14 0 29.5 9.5T2401 308q0 13-9 23.5t-9 20.5q0 5 6 13zM1170.5 1795.5Q1158 1776 1133 1748l-23-24q-4-4-52-59.5t-78-55.5q-28 0-57.5 27t-29.5 45q0 23 32.5 63.5t90 101 85.5 60.5 55-28 27-49q0-14-12.5-33.5zm127.5-175q-34-33.5-37-36.5l-60-63q-16-14-33.5-31t-35.5-17-31.5 15-13.5 27q0 22 33.5 60.5t86.5 94 77 55.5q17 0 32.5-12t15.5-30q0-29-34-62.5z" + }, + "children": [] + }] +}; +exports.u1F3B8 = u1F3B8; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F3B9.js b/dist/noto_emoji_regular/u1F3B9.js new file mode 100644 index 000000000..8f633b4e8 --- /dev/null +++ b/dist/noto_emoji_regular/u1F3B9.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F3B9 = void 0; +var u1F3B9 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2480 2456l-5 60q-6 54-26 76t-81.5 27.5-101.5 5.5q-173 0-405.5-67.5t-611-202T538 2053t-370.5-216-41.5-157q0-29-4-64t-4-70q0-58 11-89.5t30-31.5q11 0 24 6l22 12q27 14 54.5 29.5T316 1501l851-929-164-55-132 134q-58 59-100 98.5T671 846t-85 57q-17 0-34-8l-36-16-291 235q-3 2-30.5 27t-42.5 25q-14 0-16-12.5t-2-22.5q0-30 4.5-51t23.5-36l268-209q-16-8-32-18.5T382 795q0-39 21-93t69.5-84 77.5-54 198-137l-58-22-2 4q-97 61-188 129.5T315 668l-27 17q-14 9-31 9t-47.5-19-35.5-22l-32-20q-9-6-16-12.5t-7-13.5v-2q9-58 33-94t61-58l44-25q47-26 97-53t106-55q-6-3-32.5-15T401 284q0-11 16-20t28-9q17 0 48 12t38 17q30-14 61-30t60-16q11 0 42 9.5t40 23 11 44.5v21q0 14-3 26l68 24q11-8 23-16l24-16q17-11 33.5-22.5T927 320q22 0 71 19t49 57q0 18-2 35.5t-5 34.5l313 107q58-72 79-72 19 0 82.5 17.5T1578 580q0 20-2 35.5t-5 26.5l63 20 14-25q13-23 26.5-37t26.5-14q35 0 74.5 11t67.5 20.5 28 42.5q0 18-4.5 37t-6.5 32l88 25q2-7 15-46t55-39q23 0 47 6.5t46 11.5l22 6q20 6 33.5 17.5T2180 738q0 20-3 39l-6 37 86 23q80 22 141 33.5t61 42.5q0 8-4 15.5t-15 7.5q-28 0-60.5-8t-68.5-16l-15 1346 78 20q75 20 91.5 28t16.5 89q0 31-2 61zM2233 892l-71-19-5 25-30 145q-27 137-52 234.5t-32 116.5-35 19q-10 0-23-2l-26-5q-13-2-23.5-5.5t-16.5-6.5l-146 709q127 41 233.5 73.5T2219 2238zm-534 1187l145-706q-34-12-50.5-17t-16.5-27q0-32 10.5-68t20.5-67l61-192q30-95 60-192l-84-24-94 258q-85 234-101 243.5t-29 9.5q-16 0-31.5-3t-30.5-7l-266 647q100 37 180 66t161 57zm-562-943q-41-10-63.5-20.5T1051 1092l1-38q0-65 16.5-94t45.5-69l56-77q32-44 70-94t75-97l-68-24-861 937 21 10 20 11q84 42 168.5 81t171.5 76zm-59 712l144 58 264-645-28-13q-24-10-38.5-22.5T1405 1197q0-21 10.5-67t64.5-158l39-80q20-41 39-77l32-63q13-27 18-36l-61-20q-226 463-247 469t-25 6q-15 0-31-4t-30-9l-376 588 48 21q7 4 75 32.5t117 48.5z" + }, + "children": [] + }] +}; +exports.u1F3B9 = u1F3B9; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F3BA.js b/dist/noto_emoji_regular/u1F3BA.js new file mode 100644 index 000000000..8759f20e5 --- /dev/null +++ b/dist/noto_emoji_regular/u1F3BA.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F3BA = void 0; +var u1F3BA = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2427.5 2446.5Q2382 2494 2329 2494q-30 0-60.5-16.5t-44-60-26.5-62.5-35-19q-23 0-70 61t-105.5 104-128.5 43q-37 0-79-11t-58-11-30.5 3.5-29.5 3.5q-68 0-90-32.5t-42-32.5q-11 0-22.5 4.5t-23.5 4.5q-26 0-58-16t-38-39l-7-25q-5-15-25-26t-45-29.5-51-18.5q-15 0-29.5 4t-29.5 4q-56 0-109.5-43t-53.5-98q0-17 4.5-34t4.5-37q0-31-10.5-63.5T1026 1986q0-63 25.5-148t82.5-134.5 96.5-62.5 39.5-30-109.5-79.5-198-97T777 1400q-29 0-63 4l-72 10q-38 6-80 10.5t-88 4.5q-164 0-255.5-86.5T127 1097q0-189 114.5-368T537 440.5 884 331q162 0 244.5 96.5T1211 744q0 38-1.5 76.5T1208 897q0 176 39.5 304t159.5 246 266 242l74 63q28 24 70.5 57t56.5 33q16 0 18.5-15.5t15.5-26.5 35-11q35 0 60.5 29t25.5 63q0 23-23.5 34.5T1982 1934q0 11 11 23.5t28 12.5q14 0 23-23.5t33-23.5q26 0 49 22.5t23 48.5q0 16-9.5 23t-18.5 11l-19 7q-9 4-9 14 0 13 14.5 23t28.5 10 21.5-13 26.5-13q24 0 45.5 19.5t21.5 39.5q0 19-16 25.5t-16 19.5q0 17 36 48.5t66 31.5q9 0 19-1.5t19-1.5q35 0 74.5 29t39.5 79q0 54-45.5 101.5zm-1452-1916Q935 493 874 493q-124 0-262 87T387 798.5 300 1053q0 78 42.5 120.5T463 1216q116 0 248.5-87.5t218.5-220 86-260.5q0-80-40.5-117.5zM1565 2195q5-6 5-16 0-28-65-64.5t-126-36.5q-32 0-68 9t-36 24q0 16 58.5 69.5t82.5 75.5 48 22q20 0 38.5-14t34.5-33zm157 84q0-10-9-17t-21-7q-22 0-41 16.5t-50 46.5-31 45q0 12 15 20.5t27 8.5q23 0 52-29.5t54-72.5q4-6 4-11zm10-249q8-11 19.5-28.5t11.5-29.5q0-13-10.5-23t-106.5-87-191-77q-102 0-165.5 53t-63.5 111q0 17 16 17 5 0 11-2l10-4q22-11 50-15t51-4q70 0 135.5 32.5t111 68.5 66.5 41q9 0 21-12t24-27zm119 324.5q-20-18.5-36-18.5-15 0-46 30.5t-31 53.5q0 8 8.5 11t17.5 3l18-1q25-2 57-12t32-32q0-16-20-34.5zm21-196q36-48.5 36-69.5 0-9-8-21t-29-12q-14 0-25.5 9t-22.5 20l-16 18q-18 18-28 35t-10 32q0 16 12 26.5t26 10.5q29 0 65-48.5zm131 112.5q15-16 15-37 0-16-11.5-34.5T1978 2181q-21 0-49 33t-28 52q0 17 16.5 33.5t34.5 16.5q10 0 22-13z" + }, + "children": [] + }] +}; +exports.u1F3BA = u1F3BA; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F3BB.js b/dist/noto_emoji_regular/u1F3BB.js new file mode 100644 index 000000000..7623212a1 --- /dev/null +++ b/dist/noto_emoji_regular/u1F3BB.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F3BB = void 0; +var u1F3BB = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2451 577.5q35 9.5 35 37.5 0 20-17 34t-37 14q-15 0-37-13t-27.5-25-17.5-12q-11 0-16.5 8t-5.5 19q0 9 9 15l19 14q10 8 19 18.5t9 25.5q0 20-16 32t-33 12q-36 0-47.5-31.5T2263 694q-7 0-13.5 2.5T2235 699q-16 0-27-10l-362 351q37 62 59.5 131t22.5 140q0 70-26.5 139.5t-118.5 156-109.5 148.5-23 69-15.5 7q-20 0-56.5-28.5T1508 1774q-68 0-122 63t-54 128q0 38 22 69.5t46 42 24 29.5q0 11-8.5 17.5T1397 2135l-22 12q-29 17-43.5 40t-30.5 61l-23 53q-33 73-66 106t-75.5 63.5T1021 2524t-153 23q-281 0-507.5-255.5T134 1781q0-105 36-196t104-159.5 181.5-97T592 1257t40-43q20 0 33.5 34.5t46.5 54 68 19.5q66 0 129.5-50t63.5-115q0-12-2.5-25t-11.5-29l-12-22q-6-11-11-22.5t-5-21.5q0-7 3.5-13t74.5-20.5 155-87 145.5-95.5 128.5-23q62 0 123 19t117 52l431-299-8-16q-4-6-4-14 0-5 2-10.5t2-11.5q0-16-34.5-30t-34.5-41q0-20 13-34t33-14q18 0 39 18t27.5 33 33.5 15q4-5 5-7t1-7q0-9-8-19l-17-20q-9-10-17-22t-8-27q0-14 12.5-27.5T2178 322q20 0 31.5 12.5T2228 362l13 27q6 13 16 13 15 0 27-13-14-18-23-40t-9-46q0-41 26-69t71-28q60 0 108.5 55.5T2506 380q0 41-23.5 76t-45 57.5T2416 551q0 17 35 26.5zM999 1428q16 0 28.5 17.5t30.5 17.5q19 0 35-13t16-33q0-30-30.5-46t-70.5-16q-14 0-26 1l-22 3q-51 8-119 55.5t-99 47.5q-29 0-41.5-23t-42.5-23q-25 0-35.5 15.5T612 1468q0 39 33 64t69 25q60 0 144-64.5t141-64.5zm294.5 194q-14.5-24-40.5-24-17 0-32 14.5t-15 34.5q0 13 12.5 26t12.5 26q0 46-90 132t-90 150q0 38 23.5 68t60.5 30q19 0 33.5-11.5t14.5-38.5q0-16-17-33t-17-37q0-35 59.5-89t79.5-102.5 20-91.5q0-30-14.5-54z" + }, + "children": [] + }] +}; +exports.u1F3BB = u1F3BB; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F3BC.js b/dist/noto_emoji_regular/u1F3BC.js new file mode 100644 index 000000000..d8fdb688d --- /dev/null +++ b/dist/noto_emoji_regular/u1F3BC.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F3BC = void 0; +var u1F3BC = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2485 1918l1 7q0 20-132 81t-264 87-239 32q-10-25-23-55t-25-54q119-3 245-26.5t231-70.5 132-66.5 33-19.5q8 0 13 4t6 9zm-597-265l76-12q59-8 168.5-48t155-68 53.5-28 12 4.5 7 10.5l19 63 3 13q0 8-5.5 14t-79 42.5-135 58.5-131 36-135.5 24q0-27-4-58.5t-4-51.5zm262.5-808q5.5 3 7.5 10l22 69q0 2 1 3v3q0 7-5.5 14T2071 985.5t-243.5 60.5-243.5 26q-69 0-127.5-5.5T1333 1056l-1-110q66 4 133.5 10.5T1585 963q116 0 260-28.5t215.5-60.5 79.5-32q5 0 10.5 3zm75.5 311l4-2q2 0 4-1 5 0 12 4t9 10l20 70q2 3 2 7t-5 12-150.5 73-392.5 91q-36-23-81-34.5t-92-11.5q-42 0-85.5 9t-82.5 31l-43-3-55-71 11-40q78 2 163.5 9t145.5 7q129 0 294-35.5t322-124.5zm-955-527l-7-17q73 4 141 10.5t122 6.5q109 0 249-24.5t262-67.5q2-2 7-2 8 0 12 4.5t7 9.5l20 63q0 5 1 7v4q0 7-3.5 13t-96.5 34-220 48-239 20q-62 0-116-5l-111-9-8-31q-3-10-11.5-36t-8.5-28zM956 2163q-100 41-205.5 126.5T636 2375q-15 0-18-12L116 1044q-2-6-2-9 0-20 145.5-154T631 671q7 34 13 58t11 52q-112 36-193 86t-135 99l87 224q57-51 137.5-99.5T741 1007l18 38q6 14 15 29.5t20 30.5q-96 29-182 79.5T455 1303l78 204q53-42 122.5-80.5T815 1359l-20 65q-12 37-18 68-64 27-113.5 59.5T575 1616l76 200q24-17 51-33t58-32q0-3 6.5 40t6.5 44l6 32q-24 14-45.5 28.5T692 1925l78 205q23-14 49-28t55-27q31 40 55 62.5t27 25.5zm776-155q39 60 63 129.5t24 135.5q0 113-57.5 187t-151.5 74q-66 0-119-43t-53-105q0-49 33.5-80t81.5-31q7 0 13 1l13 2q22 6 43.5 36t47.5 30q25 0 42-23.5t17-54.5q0-53-21.5-98.5T1658 2075q-81 69-179 111.5t-201 42.5q-116 0-208-56.5T933 2059t-82-153-37-229q0-111 27-212.5t95-241.5q-82-102-169.5-299T679 571q0-115 62.5-195T907 289q144 0 257 229.5T1277 983q0 116-12.5 207.5T1229 1351q4 6 16 22l28 37q16 21 35 45.5t39 48.5q45-36 99-55t110-19q131 0 206.5 90.5T1838 1770q0 72-30 131.5t-76 106.5zm-731-936q35-78 54.5-165t19.5-187q0-96-21-141.5T993 533q-37 0-59.5 52.5T911 711q0 91 25 200t65 161zm18-349l-51 3-1-14q0-8 2-21l3-28q2-14 5.5-27t7.5-21l22-2q4 7 7.5 26t3.5 44zm580 1273q-33-48-82-109l-105-130q-29 24-47 54t-18 64q0 24 9 45.5t26 38.5l13 15q6 8 6 19t-9 14.5-19 3.5q-68 0-115-68t-47-150q0-51 13-98.5t42-98.5q-22-23-43.5-46.5T1178 1500q-25 75-45.5 158t-20.5 167q0 116 66.5 192t161.5 76q51 0 125-27t134-70zm67-74q7-11 15-28.5t8-37.5q0-67-37.5-109.5T1553 1704q-10 0-21 1t-24 4q42 50 83 107z" + }, + "children": [] + }] +}; +exports.u1F3BC = u1F3BC; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F3BD.js b/dist/noto_emoji_regular/u1F3BD.js new file mode 100644 index 000000000..f18f9cb66 --- /dev/null +++ b/dist/noto_emoji_regular/u1F3BD.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F3BD = void 0; +var u1F3BD = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2110.5 2078q-30.5 42-165 150.5t-329.5 176-438 67.5q-154 0-297.5-24.5t-217-41-100.5-70-27-178.5q0-276-19.5-457.5T478 1448t-19-113q0-35 22.5-78.5t38.5-114T536 986q0-84-14.5-182T496 673l-13-36-11-33q-5-16-5-28 0-51 72-88.5T670 445l44-3q58 0 89.5 53t77 71T988 584q87 0 152.5-35.5T1211 453q0-10-1.5-19t-1.5-20q0-58 82-70.5t117-12.5q37 0 86 7t62 14.5 25.5 44 15 76 14.5 82 22 89.5 22 89 29 81 39.5 74 50.5 62.5 64 50.5q16 10 20.5 25t4.5 32v49l-1 8q0 71 27 205t84.5 273 113 234 55.5 162q0 47-30.5 89zM649 1923q91-39 188-122t259.5-226.5 268-258 180.5-204 96-136.5q-64-88-108.5-237T1475 454l-34-4q-17 0-34-1-19 0-35.5 2.5T1334 456q11 81 17.5 167.5T1358 791q0 160-74.5 237.5T1105 1106q-102-2-183.5-62.5T789 830l-39-117q-17-52-26-97.5T711 560q-42 0-69.5 12.5T594 593q27 72 43 179.5T653 986q0 114-23.5 203.5t-39 114.5-15.5 37q0 3 29.5 147t42.5 385zm1326-53q-48-82-98.5-198t-83.5-248q-41 62-203 247.5T1257 2001t-293 213.5-126.5 75.5-36.5 23q97 21 191.5 31t185.5 10q171 0 312-34.5t252-96 192.5-137.5 85-83.5 3.5-16.5q0-34-48-116z" + }, + "children": [] + }] +}; +exports.u1F3BD = u1F3BD; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F3BE.js b/dist/noto_emoji_regular/u1F3BE.js new file mode 100644 index 000000000..7be35a0af --- /dev/null +++ b/dist/noto_emoji_regular/u1F3BE.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F3BE = void 0; +var u1F3BE = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2228 1498q-220 212-665 249l-205 18q-128 13-250.5 75T947 1957q0 106-63.5 176t-114 133.5T667 2385l-85 94-39 46q-40 47-86.5 75t-99.5 28q-81 0-143-60.5T152 2427q0-81 67.5-151t72.5-75l261-278 38-38q35-36 71-57t76-28q24-24 34-49.5t37.5-130T837 1371q0-55 1-112l-1-74q0-387 96.5-576T1197 323t374-97q118 0 278 48.5t301.5 163 219.5 271 78 304.5q0 273-220 485zm-336 517q39 35 62 83.5t23 105.5q0 36-11 71-24-6-46-8t-46-2q-87 0-163 40.5T1585 2418q-53-35-84.5-90.5T1469 2204q0-50 17-93 33 14 64 21t66 7q74 0 156.5-34.5T1892 2015zm-1216.5 19.5Q646 1986 603 1986l-120 127q54 23 87.5 86t33.5 139q43-45 72-82.5t29-105.5q0-67-29.5-115.5zM497 2226q-29-47-75-47-41 42-82 82t-70 76q5 0 9.5-1t9.5-1q55 0 108.5 48.5T451 2493q0 10-2 15l41-43q4-9 3-9t16-28.5 17-83.5q0-71-29-118zm1546-807q38-29 71-61.5t61-68.5l-130-96-120 138zm-196 563q-41 48-100 74t-126 26q-57 0-109-21 35-51 89.5-81.5T1722 1949q35 0 66 8.5t59 24.5zM1164 549q-60 64-90 146l107 80 119-128zm526 934l124-141-114-85-125 138zm-287-218l112 85 123-138-111-84zm348-64l113 84 120-136-114-84zm-919.5 702q-36.5-28-67.5-28-20 0-44.5 12.5T668 1922q47 23 78 76.5t36 129.5l16-16q26-28 48-63.5t22-73.5q0-44-36.5-72zm632.5-497l-112-84-123 135q29 22 60.5 40.5t63.5 34.5zm-122-187l124-136-108-81-125 133zm566.5 1104.5q18.5 1.5 35.5 6.5-33 58-92 93.5t-130 35.5q-23 0-45-4.5t-43-12.5q37-51 101.5-85.5T1873 2322q17 0 35.5 1.5zM1689 1154l121-134-111-81-121 133zm345-63l117-133-113-80-116 131zm-845-215l-123 132 107 82 123-134zm-116 435q23 26 46.5 51t50.5 49l122-136-110-84zm456-496l-121 131 110 81 119-133zm220 68l111 81 117-130-111-80zm169-185l109 78 106-118q-20-26-43.5-50t-49.5-45zm-451 73l-105-78-121 128 107 79zm513-254q-28-18-57.5-33.5T1862 454l-113 122 107 77zm-768 1114q-65-30-117.5-69.5T1010 1476q-5 42-12.5 82t-18.5 81l-6 25q-3 12-3 25l-1 8q0 4 5 4 15 0 63.5-19t174.5-51zm592-921l-107-78-116 126 107 80zm-274-198l-116 125 105 78 117-126zm-307-15l129 96 117-125-70-49q-55 14-106 39t-70 39zm992 727q23-42 35-88t13-97l-51-35-116 133zm-574 315l-116-87-99 112q20 6 39 13l38 16 98-7zm140 13q50-16 99-38t95-51l-100-76-124 141zM1582 457l104 75 98-106q-73-22-146-29zm595 266l-88 98 111 80 37-40q-15-50-32.5-86.5T2177 723zm-1156 345q0 5-1 9t-1 9q0 35 1 76t1 83l4 5 97-104zm28-296q-10 42-16 84t-8 86l104-111zm454-372l18 12 15-17z" + }, + "children": [] + }] +}; +exports.u1F3BE = u1F3BE; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F3BF.js b/dist/noto_emoji_regular/u1F3BF.js new file mode 100644 index 000000000..a454a17a0 --- /dev/null +++ b/dist/noto_emoji_regular/u1F3BF.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F3BF = void 0; +var u1F3BF = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M533 1741q23 38 35.5 75.5T581 1887q0 45-23.5 73t-68.5 28q-37 0-79-21.5t-81-60.5l-109 87q-13 10-26 10-17 0-29-12t-12-29q0-9 4.5-18t12.5-15l107-86q-24-38-37-75t-13-69q0-45 24.5-74t68.5-29q36 0 79 21.5t82 59.5l1235-999q-2-6-3.5-13t-1.5-14l1-11q-14-5-26.5-15t-18.5-23l-4-7q-7-19-7-36 0-27 12-57.5t38-57 75-43 126.5-23.5 99.5-16.5 41-10.5q0-10 22.5-16t32.5-6q34 0 67.5 29t33.5 63q0 46-51 71t-84 55.5-92 74.5-81 70l-32 36q-16 17-39 17-11 0-23.5-3t-23.5-8zM1752 571q55-21 105.5-55t97.5-72l-71 7q-58 5-101 34t-43 58q0 19 12 28zm660.5 142.5q-34.5 24.5-91 103t-76 98.5-37.5 54l-14 25q-11 20-27 32.5t-38 12.5q-6 0-12-1l-13-2-977 1270q41 39 63 81.5t22 79.5q0 46-29.5 69t-74.5 23q-32 0-68.5-11t-72.5-34l-85 110q-12 16-33 16-18 0-28.5-12.5T810 2599q0-6 1.5-13t6.5-12l83-111q-40-38-62.5-81t-22.5-80q0-45 30-68t75-23q32 0 68.5 11t72.5 34l970-1259q-12-14-14-37-34-3-54-26l-4-5q-10-14-14.5-32.5T1941 859q0-25 5.5-47.5t23.5-47 56.5-50 112-50.5 99-42 39.5-22q9-17 27.5-26t38.5-9q43 0 73.5 25t30.5 59q0 40-34.5 64.5zm-204.5.5l-68 24q-54 17-86.5 50.5T2021 851q0 9 4.5 18t15.5 16l10-8q69-49 157-163z" + }, + "children": [] + }] +}; +exports.u1F3BF = u1F3BF; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F3C0.js b/dist/noto_emoji_regular/u1F3C0.js new file mode 100644 index 000000000..4f38bd70c --- /dev/null +++ b/dist/noto_emoji_regular/u1F3C0.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F3C0 = void 0; +var u1F3C0 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1807 1573q-114 182-192.5 411.5T1510 2462v1q0 34-99.5 68t-269.5 34q-180 0-270.5-34t-96-73.5-20-136-61.5-260T564.5 1734t-134-224.5T378 1384q0-100 115-185t303-127q8 29 18.5 57t22.5 56q-133 32-207.5 81.5T555 1372q0 89 171.5 154.5T1141 1592q54 0 95.5-2.5t47.5-3.5 50 11 94.5 19.5 105.5 7.5q68 0 137-11.5t136-39.5zm160-175q-88 72-192.5 107.5T1552 1547q-148-153-243.5-358T1206 780q226 8 438 213t323 405zm-733-879l11-32q5-16 11-31 148-8 330.5-81t293.5-73q156 89 247.5 240t93.5 328q-192-159-432.5-255.5T1278 518q-29 0-44 1zm-28 180q2-27 4.5-53t7.5-54h33q227 0 468 108.5t484 329.5q-17 74-50 140t-80 123q-101-151-222-268t-293.5-221.5T1206 699zm133 822q-145-43-254.5-135.5T915 1170q3-142 53.5-247.5T1111 791l-1 33q0 176 55 353.5t174 343.5zm-188 248q-29 37-64 87.5t-73 113.5q34 69 68.5 149.5T1151 2291q34-78 69.5-149t72.5-135q-39-76-76-135.5t-66-102.5zm-84 737q22-67 50-133-33-97-68.5-181.5T977 2033q-29 51-57.5 108.5T862 2265l39 112q19 55 35 112 25 5 58.5 10t72.5 7zm315-110q17-46 36-91-23-66-46.5-124t-46.5-109q-77 135-145 302l20 65q10 33 19 67 38-3 70.5-7.5t58.5-9.5zm-682-502q34 74 69 147.5t64 145.5q56-123 112-218-43-86-82.5-151.5T792 1707q-26 45-49 91.5t-43 95.5zm822 189q28-101 62-187-14-33-30-65.5t-33-64.5q-36 49-77 110t-84 133q23 48 46 101.5t46 115.5zM1117 708q-85 20-153 88.5T854 977q-4-24-6.5-48t-2.5-49q0-44 6.5-85.5T869 713q54-48 122-76t141-38q-5 28-9 55.5t-6 53.5zm172-312q38-59 95-106t138-79q119 0 226 33l-25 4q-37 7-186 71t-248 77zm193 1300q-66 14-137 24.5t-149 11.5q29 38 62.5 91.5T1329 1947q43-72 85-131.5t77-105.5zM1173 454q-8 17-14 34.5t-11 37.5q-78 11-136.5 30T911 598q31-66 74-121.5t97-100.5q10 33 33 52t58 26zm-69 1279q-64-2-123-8t-115-15q25 38 54 88t61 111q35-56 66-100t57-76zm-489-33l29 61q15 32 29 67 17-38 36-73.5t40-71.5q-15-4-35-10l-72-22q-14-4-17-4-8 0-13 3.5t-5 11.5q0 13 1.5 19.5t6.5 18.5zm1051-40q-8-6-21-6-21 0-35.5 8.5T1578 1692l-23 30 28 54q14 27 25 55l32-72q19-44 26.5-57t7.5-25q0-11-8-17zM1202 397q-38-6-50.5-22t-12.5-35v-7q48-33 102-58t113-39q-35 23-76.5 63t-75.5 98zM832 2450q5 8 37 22l-19-64q-10-31-21-62l-8 17q4 22 6.5 43.5t4.5 43.5zm624-32q-3-13-9-27l-29 79q14-5 23-10t11-10zm-297 89l-14-45-16 45h30z" + }, + "children": [] + }] +}; +exports.u1F3C0 = u1F3C0; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F3C1.js b/dist/noto_emoji_regular/u1F3C1.js new file mode 100644 index 000000000..d15df896e --- /dev/null +++ b/dist/noto_emoji_regular/u1F3C1.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F3C1 = void 0; +var u1F3C1 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2465 791q15 8 23 22t8 31v10q0 6-3 11l-454 1271q-7 17-21 28.5t-34 11.5q-27 0-36-10.5t-148.5-84.5-331-116.5-463-42.5-401-34-193.5-82l-153 342q-11 23-31 35.5t-43 12.5q-38 0-59.5-24.5T103 2115q0-8 1-16t6-16L744 666q11-23 34.5-36t49.5-13q13 0 31 5l53 14q56 15 159.5 35.5T1267 692q95 0 269-26t301-26q181 0 347 46.5t220.5 75.5 60.5 29zm-837 186q82 0 161 11.5t156 40.5l19-44q35-81 53.5-116.5T2040 820t15-38q-51-9-107.5-14.5T1837 762q-37 0-73 2t-72 6q-19 45-42 127.5t-22 79.5zm-631-8h6q29 7 58 8t58 1q22 0 42 1.5t41 1.5l12-1h18q11 0 19 2 14-46 35.5-89t35.5-80l-55 1q-46 0-94-5.5t-97-13.5l-2 4q-4 14-26.5 59.5T1006 948zm-369 797q35-61 64-122t55-127q-46 0-92.5-10.5T563 1485l-8-1-95 210 27 15q24 15 57 28.5t84 28.5zm126-552q14 3 30 4l32 2q16 0 30 2.5t24 5.5q4-4 9.5-16.5T891 1183l12-31q6-16 14.5-31.5t20-59T956 1005l7-17q-5 0-14 1-49 0-91.5-6.5T786 969l-106 237q18 3 37 4zm160 295l51 4q13 0 23.5 2t14.5 3q0-22 17.5-46.5t48-85.5 35.5-80.5 15-35.5q-6 2-17 2-57 0-112-4.5T882 1250q-4 23-41 103.5T780 1491q-3 2-3 7 15 0 71.5 5t65.5 6zm416 57q-21-2-29.5-5.5t-89-10.5-192.5-11q-13 56-38.5 127.5T922 1798l139 2q72 0 153 6l9-20q15-33 31-62t26-51zm141-290q8-18 14.5-35.5t14.5-34.5l3-10q23-56 43.5-102t41.5-91q-50 0-99-5t-97-5q-25 0-49.5 1.5T1293 996h-17q-9 0-17-1l1 9q0 18-11.5 41t-30.5 88.5-52 110.5q14 0 28.5 1.5t28.5 1.5q83 0 158.5 8.5t89.5 20.5zm-104 268l37 2q61 4 154 19t122 37q8-13 13.5-27.5t12.5-28.5l4-7 26-51q14-25 27.5-57t38.5-79l-19-6q-12-3-33.5-4t-51.5-7l-65-12q-33-6-66-11t-67-5h-16l-11-4q0 2-14 41.5t-38 86.5l-23 46q-12 23-20 47zm692 174q-82-31-219-54t-153-23q-8 20-18.5 38.5T1652 1718l-27 75-29 79q86 24 174 61t180 92zm211-589q-67-21-134-31t-98.5-18.5-55.5-8.5q-17 0-30-6 0 11-4 20l-9 18q-18 57-37.5 113t-45.5 109q79 5 163.5 19.5T2176 1392z" + }, + "children": [] + }] +}; +exports.u1F3C1 = u1F3C1; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F3C2.js b/dist/noto_emoji_regular/u1F3C2.js new file mode 100644 index 000000000..a3d2d5767 --- /dev/null +++ b/dist/noto_emoji_regular/u1F3C2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F3C2 = void 0; +var u1F3C2 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2091 2506.5q-157 85.5-373 85.5-188 0-386-110t-444-240.5-366.5-196T360 1884q-16-37-16-82 0-113 104.5-186t218.5-73q66 0 124 24t114 56v-10q0-51 34.5-88.5t107.5-87 115-105.5 42-126q0-51-5.5-99t-16.5-96q-26 0-51 6.5t-50 14.5l-49 18q-47 18-80 44t-33 56q0 8 1 16l2 17q0 57-44.5 100.5T779 1327q-52 0-81.5-43.5T668 1165q0-115 136-250t318-163q-55-96-55-202 0-139 93.5-239.5T1396 210q151 0 258.5 92T1762 537q0 68-25.5 134T1663 790q122 48 213.5 118t148.5 136 95.5 137 62 85 48.5 50.5 25 95.5q0 71-53 120.5t-132 49.5q-54 0-99-47t-45-118q0-20 3-40.5t3-42.5q0-45-51-99.5t-55-58.5q12 39 14.5 70.5t2.5 62.5q0 144-71 275.5T1602.5 1763t-99.5 131v15.5l2 14.5q48 19 95 33l92 29q36 12 216 35t260 83.5 80 166.5q0 150-157 235.5zM1844 2139l-70-9q-47-5-90-14.5t-78-22.5l-51-17q6 23 10.5 45.5t4.5 43.5q0 63-55.5 102.5T1381 2307q-47 0-89.5-30.5T1249 2202q0-28 31-59t31-56q0-20-9.5-45.5t-16-48-44.5-36.5l-44-16q3 12 3 27 0 52-47 80t-109 28q-61 0-108.5-30t-47.5-79q0-36 39-55t39-44q0-14-8-32t-13-35q-99-70-165.5-100T667 1671q-71 0-133.5 43.5T471 1807q0 36 35 69t101 68l71 39q142 81 314 169.5t369 199.5 357 111q161 0 282-55.5t121-136.5q0-62-87-90t-190-42zm-700-389q3 14 3 28l101 45q0-26 8-53t22-47l17-26q9-13 16-26.5t7-25.5q0-14-12-23.5t-28-9.5q-28 0-82.5 29t-54.5 81q0 14 3 28z" + }, + "children": [] + }] +}; +exports.u1F3C2 = u1F3C2; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F3C3.js b/dist/noto_emoji_regular/u1F3C3.js new file mode 100644 index 000000000..6129e39c7 --- /dev/null +++ b/dist/noto_emoji_regular/u1F3C3.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F3C3 = void 0; +var u1F3C3 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2278 1368.5Q2158 1481 1996 1481q-90 0-163-43.5t-119-43.5q-20 0-47 10t-91.5 113.5T1475 1719t-36 327q0 56 6.5 135t42.5 95.5 62.5 47 26.5 72.5q0 54-56 90t-133 36q-116 0-172-58t-73-236-27-275-79-97q-40 0-109.5 41t-131 62.5T681 1981q-63 0-128-33t-98.5-65-62.5-32q-21 0-44 6.5t-49 6.5q-47 0-72.5-27.5T201 1759q0-79 70.5-146.5T425 1545q53 0 83 45t65.5 68 67.5 23q51 0 117-60.5T908 1436l88-131q27-42 44.5-88t17.5-86q0-84-66-101t-117-17q-53 0-73.5 15t-20.5 43l1 10v12q0 58-35.5 98t-99.5 40q-58 0-99.5-42T506 1085q0-166 128-260t324-94q103 0 201.5 27t116.5 27q20 0 29.5-21t9.5-49q0-22-3.5-45.5T1308 616q0-144 96-240.5t237-96.5q151 0 256 98t105 245q0 59-20 121.5T1927 853t-90.5 81-55.5 64q0 25 43.5 88t105.5 96 102 33q34 0 60-21t26-81q0-61 48.5-87t81.5-26q52 0 101 43t49 102q0 111-120 223.5z" + }, + "children": [] + }] +}; +exports.u1F3C3 = u1F3C3; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F3C4.js b/dist/noto_emoji_regular/u1F3C4.js new file mode 100644 index 000000000..46e577847 --- /dev/null +++ b/dist/noto_emoji_regular/u1F3C4.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F3C4 = void 0; +var u1F3C4 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2163 2081q-82 98-263 198t-305.5 148-339.5 108-411 60q-218 0-327-52t-109-150q0-114 193.5-268t514.5-271q-23-25-64-44t-115-83-108.5-164.5T794 1395q0-99 18.5-185t18.5-109q0-16-7-35t-30-30l-113-52q-151-62-238.5-180.5T355 583q0-75 42-124t104-49q45 0 83 28t38 72q0 8-1.5 14.5T619 536q0 19 31.5 71t99.5 96.5T1036 814q-27-44-38.5-87.5T986 601q0-167 101-254t228-87q140 0 245.5 93T1666 576q0 66-28.5 136T1562 842q61-18 128-56.5t88-53.5 26-35l10-32q19-64 52.5-85.5T1949 558q58 0 92 35t34 95q0 67-45 121t-181 140.5-214.5 113.5-113.5 40-59 102.5-24 113.5q0 93 136.5 159.5T1711 1641q0 16-2.5 36t-5.5 39q51-6 104.5-10.5t107.5-4.5q160 0 245 47t85 141-82 192zm-97-240q-57-18-151-18-60 0-124.5 7t-123.5 15l-13 26q-9 16-9 30 0 8 7 8 36 8 55 29.5t19 52.5q0 45-47 74t-104 29q-66 0-118.5-26.5T1404 1993q0-26 13.5-53.5t27.5-53.5l-75 19q-5 28-15.5 55t-18.5 55l-11 33q-10 29-18 58t-8 47q0 15 15 19t33.5 22 18.5 44q0 43-39 62t-96 19q-52 0-112-31t-60-108q0-53 17.5-98.5t35.5-95.5q-254 97-417.5 226T531 2393q0 39 85 59t228 20q182 0 391.5-59t306.5-95.5 267-127.5 242-170 72-131q0-30-57-48zm-730-111q16 25 24 50 33-8 66-15t66-15q0-50-37.5-78.5T1353 1643q-29 0-39.5 6t-10.5 18q0 13 11 29z" + }, + "children": [] + }] +}; +exports.u1F3C4 = u1F3C4; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F3C6.js b/dist/noto_emoji_regular/u1F3C6.js new file mode 100644 index 000000000..611e8d034 --- /dev/null +++ b/dist/noto_emoji_regular/u1F3C6.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F3C6 = void 0; +var u1F3C6 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2410 933.5q-19 59.5-56 111t-93 92-114.5 58.5-69.5 24l-8 4 7 31q4 17 4 40 0 67-45.5 113t-110.5 46q-46 0-82-22t-64-60l-55 48q-47 42-83.5 80.5T1599 1550q97 42 143 96t46 126q0 11-3 18 33 6 43 40l102 378h105q21 0 38.5 17t17.5 39v155q0 23-16.5 39t-39.5 16H578q-23 0-39-16t-16-39v-155q0-22 16.5-39t38.5-17h106l101-378q5-16 16-26t25-14q0-5-1-17 0-56 20-91.5t50-62 119-69.5q-4-15-26-39t-51-51l-60-53q-30-26-51-46-26 44-65.5 68t-90.5 24q-64 0-107.5-47.5T519 1290q0-22 4-36.5t7-30.5l-7-4q-9-5-19-8l-22-6q-144-44-228-148.5T170 816q0-141 94-237t232-96q40 0 73.5 7t64.5 20q84-108 251-167t422-59 417.5 59T1976 505q29-11 61.5-16.5t65.5-5.5q144 0 235 97.5t91 235.5q0 58-19 117.5zm-149-280q-61-64.5-158-64.5-17 0-40 3.5t-44 11.5q5 20 6 39t1 37q0 26-2 51l-5 45-1 14q20-17 41.5-30t46.5-13q36 0 53.5 22.5T2177 821q0 49-38 88t-93 66l-62 31q-19 81-49 151.5t-81 133.5q11 21 29 38.5t45 17.5q23 0 34.5-17.5t11.5-38.5q0-23-7.5-42t-7.5-36q0-25 26.5-56t114-57.5 155-99T2322 819q0-101-61-165.5zm-368.5-79q-26.5-38.5-102.5-84t-191-73-292-27.5q-193 0-311 30.5t-194 81-92.5 90T693 683q0 84 30.5 254T837 1213.5t183.5 185.5 100.5 157q0 67-95.5 107.5T930 1771q0 4 1 12t3 10q9 27 37.5 38t67.5 11l21-1q20 0 45.5 2t63.5 2l80 1q56 0 113.5-1t122.5-4l58-3q59-2 98.5-18t39.5-48q0-43-32.5-71.5t-94-56-61.5-88.5q0-73 76.5-137.5t147.5-135 117-167 65.5-202.5 19.5-231q0-70-26.5-108.5zM1002 2191q0 14 8.5 24.5t23.5 10.5h546q9 0 21-8t12-27v-153q0-16-11-25t-22-9h-546q-13 0-22.5 10t-9.5 24v153zm-251-911q-45-56-73.5-123.5T632 1016l-76-38q-55-28-94.5-66.5T422 823q0-29 17.5-52.5T493 747q30 0 55.5 18t48.5 39l-6-59q-3-28-3-63 0-18 1-37t6-37q-25-11-50-15t-49-4q-97 0-158 64.5T277 819q0 100 65 177.5t155 102 116.5 57.5 26.5 57q0 18-7.5 38.5T625 1295q0 20 13 36t33 16q30 0 49.5-20.5T751 1280zm894.5-551.5Q1506 768 1307 768t-338.5-39.5T829 634q0-54 139-94.5t339-40.5 339 40.5 139 94.5q0 55-139.5 94.5zM1740 841q11 3 14.5 13t3.5 22q-2 35-9 62l-16 56q-44 159-97.5 251.5T1522 1386t-89 48q-9 0-16-3.5t-7-11.5q0-14 13.5-30.5t57-105.5 78.5-326l5-34q6-37 38.5-44.5T1647 867l17-8q14-7 35.5-13.5t33.5-6.5zm-205 858.5q36 28.5 36 64.5 0 25-22 37t-71 12q-12 0-26.5-2.5T1437 1798q0-6 16-18t16-37q0-23-10.5-39t-10.5-24q0-9 14-9 37 0 73 28.5z" + }, + "children": [] + }] +}; +exports.u1F3C6 = u1F3C6; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F3C7.js b/dist/noto_emoji_regular/u1F3C7.js new file mode 100644 index 000000000..679b8e734 --- /dev/null +++ b/dist/noto_emoji_regular/u1F3C7.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F3C7 = void 0; +var u1F3C7 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2426.5 2428q-16.5 9-36.5 9-100 0-179-121.5T2041 2176l-23-4q-16-3-64.5-5t-156.5-42-148.5-84-75.5-44q-17 0-41 4l-44 7q-49 9-181 48t-239 53.5-203 14.5H740q-100 0-129 37.5T582 2275q0 35 6.5 67t22.5 41l25 14q13 8 22.5 20.5t9.5 39.5q0 10-2.5 27.5T663 2520q0 20-10.5 29t-37.5 9q-28 0-47-17l-43-36q-44-40-62.5-107.5T444 2164q0-60 22.5-95t72-62 49.5-61q0-16-5-33.5t-8-40.5l-4-45q-2-22-2-46 0-103 33-189t33-154q0-40-9-79-26 4-53 5.5t-55 1.5q-41 0-81-6.5t-75-25.5l-8-4q-5-2-8-6-23 11-45.5 18.5T258 1350q-36 0-80-38t-44-81q0-21 14.5-43.5T180 1145q-2 0-2-4 0-5 13.5-23t23.5-18l4 1 3-3q18-24 33-45l88-131q13-18 25-36.5t28-33.5q-2 0-2-5t13.5-21 25.5-16q2 0 8 2l33-21q11-8 25-40.5t34-32.5q23 0 35 16t12 35q0 10-4 20 21 0 39.5 5t39.5 5h7q10 0 16 3t6 15q0 19 27.5 23.5T749 847q21 0 23.5 16.5T787 886l39 17q27 12 28.5 25t20.5 25l16 9q7 5 12.5 10t5.5 13l-1 13q0 6 30 20.5t30 34.5q0 18 32 33.5t40 47.5q15 0 27 1.5t23 1.5q40 0 81.5-35.5t41.5-78.5q0-50-25.5-80t-142-45T868 760q-20 18-39.5 32T789 806q-11 0-25-7.5T750 777q0-18 24-52.5t24-49.5l1-28-1-44q0-122 82.5-196.5T1069 332q72 0 131 34.5t92 93.5l18 32q10 18 10 32 0 11-11 19l10 25q5 15 7.5 28t2.5 29l-1 7q0 49 78 67t161.5 71.5 139.5 138 56 166.5q0 112-149.5 223T1464 1498q0 37 25.5 98t25.5 98q0 63-55 109.5t-123 46.5q-7 0-14.5-1t-15.5-3q15 20 37 29t46 9q53 0 100.5-31t60-72.5 38.5-41.5l5 1q31 0 93.5-30t62.5-88q0-15-6.5-33.5T1709 1525l-38-62q-10-15-27-15-9 0-15 4 0 28 20.5 71.5t20.5 68.5q0 24-24.5 44.5T1594 1657q-30 0-45.5-44t-28-65.5-12.5-46.5q0-28 19-60.5t57-62.5q16 6 23.5 14t15.5 23h10q23 0 81 8.5t82 25.5q41-47 91-68.5t106-21.5q78 0 142.5 34t113 70.5T2358 1500q24 0 49.5-5t34.5-5q13 0 18 7t5 17q0 28-30 80t-82.5 84-114.5 32q-37 0-66-11.5t-55-27.5l-53-33q-23-14-50.5-23.5t-59.5-9.5q-16 0-31.5 1.5t-30.5 3.5q7 54 8.5 89.5T1932 1810t71 116q13-3 29-3 40 0 76 32.5t68 84.5l32 53 39 71q36 67 85 72t80 63 31 96q0 24-16.5 33zM512 1305q5 0 10 1h10q20 0 38-2t37-5q-9-20-22.5-38t-31.5-31q-3 6-16 8t-24 2l-10-1v-3l-21 7q-14 5-30 18t-38 25q11 5 25 8l27 5q13 3 25 4zm108-352q5-4 13.5-9t8.5-10q0-8-13-22.5T604 897q-8 0-24 14t-29 24q-13-11-23.5-26T502 880l-26-24q-16-14-26-14-8 0-19 10t-11 18q0 6 4.5 11t7.5 9l87 98q-2 22-3 48l-4 52-170 110q-16-24-49.5-51.5T245 1119q-11 0-20.5 11.5T215 1150q0 13 14 22.5t23 17.5l28 27q37 38 48 53.5t20 15.5q10 0 21-8.5t11-16.5l-1-12q0-8 13-17.5t32-19.5l20-10q8-5 33-21t29-16q5 0 5 20 0 4 7.5 5t11.5 1q40 0 40-46 0-17 1-38t1-38q0-20 2-40l4-40 5-5 25-22zm534 350q-10 3-20 7 2 9 2 17l-1 8q0 8 2 16 0 2 1 5 8-8 22-8 10 0 21 3.5t22 7.5l22 9q10 5 20 6 15-31 49.5-83t42.5-84q-30 26-85.5 55.5T1175 1297zm-93 69q21-9 21-38-21 7-49 7-36 0-70-14t-51-43l-20 4q-12 3-12 13 0 19 34 49.5t94 30.5q32 0 53-9zm197 387q6-19 15-37t18-38q-54-2-81.5-29t-27.5-75q0-26-3-53l-7-52q-3-33-13.5-54.5T1131 1399q-5 0-9.5 4t-4.5 16q0 9 1.5 19.5t1.5 17.5q0 11-1 22l-4 59q0 19-1 46 0 98 33.5 133.5T1258 1759z" + }, + "children": [] + }] +}; +exports.u1F3C7 = u1F3C7; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F3C8.js b/dist/noto_emoji_regular/u1F3C8.js new file mode 100644 index 000000000..c952db32a --- /dev/null +++ b/dist/noto_emoji_regular/u1F3C8.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F3C8 = void 0; +var u1F3C8 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2096 1721.5q-174 328.5-523 506T854 2405q-215 0-313-58.5t-155-241-57-379.5q0-349 175.5-649.5t480-477T1645 423q163 0 296 35.5t197 84 98 176 34 291.5q0 383-174 711.5zM988 2299q71-8 146.5-22.5T1288 2237q-6 0-10-1-14 0-147-39.5t-294.5-140-275.5-223T435 1688l-6-11q-2 14-2 27v26q0 39 4.5 101.5T444 1929q54 73 124 142t142.5 115.5T871 2261zm403-1553.5q-63-43.5-132-43.5-27 0-61.5 15.5T1163 759q2 8 7.5 15t5.5 17q0 12-12 17.5t-30 7.5l-38 4q-43 4-62 17.5t-19 40.5q0 19 9.5 35.5t9.5 29.5q0 11-13.5 17.5T993 967l-28-1q-34 0-62.5 20.5T874 1033q0 14 5.5 26t5.5 25q0 28-33.5 28t-76 22.5T733 1202q0 15 8 24t8 19q0 8-7.5 12.5T722 1262l-19-1q-28 2-48.5 21.5T634 1329q0 44 67.5 95.5T825 1476q27 0 47-16t20-41q0-10-4-19l-20-37q-5-9-6-20 0-11 16-11t36 6l26 8q4 0 14 1 32 0 55-21.5t23-55.5q0-22-16.5-44.5T999 1185q0-6 4.5-11t17.5-5 25 3l23 8q11 4 23 7.5t25 3.5q37 0 56-20.5t19-48.5q0-35-22.5-60t-22.5-33q0-6 9.5-11t19.5-5 19 3l17 6q8 4 17.5 7t21.5 3q29 0 53-15t24-39q0-10-4-19l-8-18q-5-9-9-18.5t-4-19.5q0-14 10-19.5t23-5.5q14 0 26.5 7t32.5 7q28 0 43.5-12t15.5-29q0-62-63-105.5zm759 515.5q11-69 16.5-133t5.5-124v-39q-63-124-169.5-230.5T1721 524q-18-2-36-2h-38q-39 0-86 3t-101 11q49 17 93 38.5t89.5 50 97.5 70 101 91 91.5 102 91 126.5 72.5 126z" + }, + "children": [] + }] +}; +exports.u1F3C8 = u1F3C8; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F3C9.js b/dist/noto_emoji_regular/u1F3C9.js new file mode 100644 index 000000000..d62820a8c --- /dev/null +++ b/dist/noto_emoji_regular/u1F3C9.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F3C9 = void 0; +var u1F3C9 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2143.5 1698.5Q1945 2037 1606.5 2235T927 2433q-104 0-193.5-19.5t-156.5-52-112.5-70.5-45.5-137q0-105 56-266t178-360l20-29q-19-10-36.5-20t-34.5-22l-9 13-8 14q-118 190-180.5 360.5T342 2138q-42-78-62.5-172.5T259 1765q0-344 201-684t535-535.5T1674 350q84 0 161.5 13t146.5 40q-124 11-273.5 74.5T1384 655q20 11 37 24t31 30q159-107 315-169.5t270-62.5q77 0 110.5 25t82.5 91 80.5 177.5T2342 1017q0 343-198.5 681.5zM1391 729q-63-56-131-56-31 0-60 13t-29 34q0 8 3 14t3 14q0 13-9.5 18t-20.5 5q-18 0-37.5-2.5T1070 766q-31 0-55.5 17T990 827q0 14 5.5 25.5t5.5 25.5q0 20-15.5 25t-34.5 5q-10 0-19.5-1.5T912 905q-41 0-70 23t-29 63q0 18 6 33.5t6 32.5q0 23-19 28t-54 16.5-56 35.5-21 55q0 10 3.5 17t8.5 13l8 11q4 5 4 11 0 7-8 12t-25 7l-15 2q-25 4-42.5 24.5T591 1336q0 50 71.5 93t135.5 43q26 0 48-14.5t22-45.5q0-20-19.5-42t-19.5-42q0-8 7-10t17-2q15 0 33.5 3.5t23.5 3.5q35 0 60-20.5t25-60.5q0-34-14-53.5t-16-26.5q0-12 12-14 2 0 4 1 16 5 33 8.5t34 3.5q48 0 70-20t22-59q0-32-18-58.5t-18-32.5 3-7.5 7-1.5q11 0 45.5 17.5t71.5 17.5q29 0 49-15t20-38q0-15-6-31t-6-33 8-23 21-6q16 0 39 13.5t49 13.5q21 0 35-10.5t14-32.5q0-70-63-126z" + }, + "children": [] + }] +}; +exports.u1F3C9 = u1F3C9; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F3CA.js b/dist/noto_emoji_regular/u1F3CA.js new file mode 100644 index 000000000..7904cb044 --- /dev/null +++ b/dist/noto_emoji_regular/u1F3CA.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F3CA = void 0; +var u1F3CA = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M544 747l1-16h-1q4-59 54.5-126.5t156-108.5T995 455q113 0 207 34t181 105 135 143.5 81 167.5 60 203 109.5 174 100.5 82.5 170.5 112T2192 1611q0 22-33.5 33.5T2059 1656q-57 0-118.5-6t-132.5-6q-81 0-219.5 32t-215.5 32q-41 0-81-5l-80-11q-40-5-80.5-10t-80.5-5q-42 0-92.5 7.5T856 1692q-89 0-138.5-41t-82-112.5T603 1373q0-159 102-268.5T952 995q109 0 174.5 24.5T1228 1074t56 30q18 0 28.5-20.5t10.5-43.5q0-53-38.5-131t-112-113.5T991 760q-75 0-110 43.5t-85.5 70T693 900q-60 0-104.5-45T544 747zm1770.5 1173.5Q2251 1956 2176 1956q-58 0-152-19.5t-153-19.5q-83 0-201 55.5t-263 55.5q-78 0-211-34.5T986 1959t-210 31.5-210 31.5q-95 0-220-45.5T221 1870q0-29 16.5-41t36.5-12q15 0 32 4t33 9l30 11q22 8 48.5 11.5t64.5 3.5q54 0 106.5-8.5T694 1828l104-21q52-10 105-14l27-2h25q79 0 204.5 35.5T1366 1862q105 0 266-47.5t257-47.5q63 0 164.5 25.5T2219 1818q20 0 42.5-3t44.5-3q37 0 54.5 14.5t17.5 32.5q0 26-63.5 61.5zm-77 319.5q-69.5 45-179.5 45-45 0-110.5-11.5T1841 2262h-18q-8 0-37.5 5t-89.5 33l-53 24q-54 24-115 37t-135 13q-78 0-199-34t-198-34q-68 0-174 19.5T649 2345q-142 0-233-48.5t-91-93.5q0-22 16-30t36-8q15 0 32 2.5t33 5.5l29 7q14 3 22.5 4t19.5 1h21q48 0 96.5-6t96.5-14l97-15q35-6 81-10t61-4q74 0 194.5 35.5T1358 2207q102 0 256-46t249-46q70 0 139.5 14t99.5 14q41 0 77.5-5t79.5-5q30 0 39 9t9 23q0 30-69.5 75z" + }, + "children": [] + }] +}; +exports.u1F3CA = u1F3CA; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F3E0.js b/dist/noto_emoji_regular/u1F3E0.js new file mode 100644 index 000000000..ca5978c0a --- /dev/null +++ b/dist/noto_emoji_regular/u1F3E0.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F3E0 = void 0; +var u1F3E0 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2115 1180q27 25 46.5 69.5t19.5 80.5v926q0 37-26 63t-63 26h-833v-611q0-29-20-49t-48-20H919q-28 0-47.5 20t-19.5 49v611H507q-35 0-62-26t-27-63v-926q0-39 20-83t46-67l750-682q28-25 65-25 18 0 35.5 6.5T1366 498zm-430 569h-179v83q0 35 24 59t58 24h97v-166zm0-271h-97q-34 0-58 23.5t-24 58.5v111h179v-193zm258 271h-180v166h98q34 0 58-24t24-59v-83zm0-189q0-35-24-58.5t-58-23.5h-98v193h180v-111z" + }, + "children": [] + }] +}; +exports.u1F3E0 = u1F3E0; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F3E1.js b/dist/noto_emoji_regular/u1F3E1.js new file mode 100644 index 000000000..3e4ffff2f --- /dev/null +++ b/dist/noto_emoji_regular/u1F3E1.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F3E1 = void 0; +var u1F3E1 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1016 1223l-268 244q-30 26-50.5 72.5T677 1630v711H466q0-9 11.5-29t11.5-78v-143q0-64-59.5-90.5t-126-95.5T192 1714t-45-287q0-238 65.5-448T388 633t201-136q111 0 251 211.5t176 514.5zm1427 855q36 17 52.5 51.5t16.5 72.5q0 56-38.5 98t-92.5 42h-314v-588q14-7 29.5-11t31.5-4q60 0 93.5 41.5t35.5 71 34 29.5q42 0 82.5 39t40.5 99q0 7-2 14t-2 15q0 14 11 19zm-499-552q20 20 32.5 49.5t12.5 54.5v649q0 26-18 44t-45 18h-583v-428q0-20-13.5-34t-33.5-14h-190q-20 0-33.5 14t-13.5 34v428H816q-26 0-43.5-18t-17.5-44v-649q0-25 13-55.5t33-48.5l525-478q20-18 47-18 25 0 45 18zm-301 398h-126v59q0 24 17 41t40 17h69v-117zm0-190h-69q-23 0-40 17t-17 40v79h126v-136zm179 190h-125v117h67q24 0 41-17t17-41v-59zm0-133q0-23-17-40t-41-17h-67v136h125v-79z" + }, + "children": [] + }] +}; +exports.u1F3E1 = u1F3E1; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F3E2.js b/dist/noto_emoji_regular/u1F3E2.js new file mode 100644 index 000000000..96ec82d92 --- /dev/null +++ b/dist/noto_emoji_regular/u1F3E2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F3E2 = void 0; +var u1F3E2 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1984 318q60 0 106 43.5t46 107.5v1900h-582v-219q0-34-25-59.5t-60-25.5h-339q-35 0-60 25.5t-25 59.5v219H463V469q0-63 45-107t106-44h1370zM877 1459H663v256h214v-256zm0-408H663v256h214v-256zm0-410H663v258h214V641zm356 818h-214v256h214v-256zm0-408h-214v256h214v-256zm0-410h-214v258h214V641zm356 818h-212v256h212v-256zm0-408h-212v256h212v-256zm0-410h-212v258h212V641zm358 818h-214v256h214v-256zm0-408h-214v256h214v-256zm0-410h-214v258h214V641z" + }, + "children": [] + }] +}; +exports.u1F3E2 = u1F3E2; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F3E3.js b/dist/noto_emoji_regular/u1F3E3.js new file mode 100644 index 000000000..8260ea838 --- /dev/null +++ b/dist/noto_emoji_regular/u1F3E3.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F3E3 = void 0; +var u1F3E3 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2132 867q26 18 46 56t20 70v715q0 4-2 7v655h-625v-398q0-37-26.5-63.5T1481 1882h-363q-37 0-63.5 26.5T1028 1972v398H403v-652q-2-3-2-10V993q0-33 19-69.5t47-56.5l767-544q14-9 31-13.5t34-4.5q18 0 35 4.5t31 13.5zM981 1449q0-55-39.5-94t-92.5-39q-54 0-93 38.5t-39 94.5v184h264v-184zm451 0q0-55-39-94t-94-39q-54 0-93.5 39t-39.5 94v184h266v-184zm85-590q0-14-9.5-24.5T1484 824h-369q-14 0-24 10.5t-10 24.5v33q0 13 10 23.5t24 10.5h100q14 0 24 9.5t10 23.5v100q0 14 10 24t23 10h35q13 0 23-10t10-24V959q0-14 10-23.5t24-9.5h100q14 0 23.5-10.5t9.5-23.5v-33zm0-166q0-14-9.5-23.5T1484 660h-369q-14 0-24 9.5t-10 23.5v34q0 14 10 23.5t24 9.5h369q14 0 23.5-9.5t9.5-23.5v-34zm365 756q0-56-39-94.5t-93-38.5q-53 0-92.5 39t-39.5 94v184h264v-184z" + }, + "children": [] + }] +}; +exports.u1F3E3 = u1F3E3; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F3E4.js b/dist/noto_emoji_regular/u1F3E4.js new file mode 100644 index 000000000..cce568921 --- /dev/null +++ b/dist/noto_emoji_regular/u1F3E4.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F3E4 = void 0; +var u1F3E4 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2133 866q26 18 46 56t20 70v1378h-627v-397q0-38-26.5-64.5T1481 1882h-363q-38 0-64 26.5t-26 64.5v397H401V992q0-34 20.5-72t44.5-54l768-544q26-18 65.5-18t65.5 18zM982 1448q0-54-39.5-93t-93.5-39-93 39-39 93v185h265v-185zm450 0q0-54-39-93t-93-39-93.5 39-39.5 93v185h265v-185zm274.5-594q-23.5-21-37.5-21-6 0-7.5 6.5T1660 856q0 25-24 49t-43 39l2-16v-15q0-99-71-170t-170-71-170.5 70.5T1112 913l1 16q-21-18-27-45t-6-60q0-23 2-39l1-15q0-25-23-25-54 0-153 95t-99 147q0 11 7.5 16t23.5 5h17q27 0 61 6.5t76 28.5l55 30q116 64 181.5 75t99.5 11q78 0 136-32.5t121-97.5 83.5-94.5T1710 899t20-14q0-10-23.5-31zm176.5 594q0-53-39-92.5t-94-39.5q-54 0-93 39t-39 93v185h265v-185zm-421-425.5q-46 45.5-108 45.5-63 0-109-45.5T1199 913t45.5-109 109.5-45 109 45 45 109-46 109.5z" + }, + "children": [] + }] +}; +exports.u1F3E4 = u1F3E4; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F3E5.js b/dist/noto_emoji_regular/u1F3E5.js new file mode 100644 index 000000000..1a7281f37 --- /dev/null +++ b/dist/noto_emoji_regular/u1F3E5.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F3E5 = void 0; +var u1F3E5 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2115 876q65 0 113.5 48.5T2277 1038v1330h-706v-213q0-38-26.5-64t-63.5-26h-363q-37 0-63.5 26t-26.5 64v213H322V1038q0-65 48.5-113.5T484 876h294q54 0 80-21t26-67V487q0-67 48-114.5t113-47.5h509q65 0 113 47.5t48 114.5v301q0 46 26 67t80 21h294zM723 1572H522v257h201v-257zm0-408H522v256h201v-256zm339 408H860v257h202v-257zm0-408H860v256h202v-256zm338 408h-201v257h201v-257zm0-408h-201v256h201v-256zm80-499q0-14-10-23.5t-25-9.5h-53q-14 0-24-9.5t-10-23.5v-55q0-14-9.5-23.5T1325 511h-51q-14 0-24 9.5t-10 23.5v55q0 14-9.5 23.5T1207 632h-55q-14 0-23.5 9.5T1119 665v52q0 14 9.5 23.5t23.5 9.5h55q14 0 23.5 10t9.5 24v54q0 13 10 23.5t24 10.5h51q14 0 23.5-10.5t9.5-23.5v-54q0-14 10-24t24-10h53q15 0 25-9.5t10-23.5v-52zm259 907h-203v257h203v-257zm0-408h-203v256h203v-256zm338 408h-203v257h203v-257zm0-408h-203v256h203v-256z" + }, + "children": [] + }] +}; +exports.u1F3E5 = u1F3E5; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F3E6.js b/dist/noto_emoji_regular/u1F3E6.js new file mode 100644 index 000000000..dceb338db --- /dev/null +++ b/dist/noto_emoji_regular/u1F3E6.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F3E6 = void 0; +var u1F3E6 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2055 318q62 0 107 44.5t45 106.5v1900h-653v-322q0-34-25-59t-60-25h-339q-35 0-60 25t-25 59v322H392V469q0-61 44.5-106T544 318h1511zM891.5 774q-8.5-21-19.5-30l-14-11q-7-5-12.5-11.5T840 707q0-9 4-14l10-12q5-7 9-18.5t4-34.5q0-50-44-79.5T711 519q-50 0-77.5 19.5T606 596l1 32q0 12-1 23v25q0 12 1 76.5t1 106.5q0 41 13.5 61.5T681 944l49 2q84 0 127-40.5t43-91.5q0-19-8.5-40zm756.5 51l5-84q2-42 2-85 0-70-15-93.5t-45-23.5q-25 0-36 18.5t-13 46.5l-3 31q0 15-3.5 24.5T1528 669q-12 0-26-21l-32-44q-18-24-38-44.5t-43-20.5q-35 0-52.5 32T1319 673q0 43 3.5 85.5t3.5 84.5q0 37 14 69t41 32 40-20.5 13-64.5v-36l-1-30q0-7 1.5-13.5t9.5-6.5q17 0 40.5 40.5t47.5 81 64 40.5q27 0 39-25.5t13-58.5v-26zm365 75v-11q-3-28-41.5-84.5T1933 717q0-25 34.5-61.5T2002 588q0-17-14-30.5t-32-13.5q-39 0-68.5 52t-46.5 52q-9 0-12-8.5t-3-22.5l-2-28q-2-26-16-42.5t-46-16.5q-27 0-38 25t-11 119v79q0 41 2 82v20q0 10-1 21 0 40 15.5 55.5T1777 947q30 0 39.5-13.5t9.5-31.5q0-11-1-23.5t-1-23.5q0-14 6-27t18-13q10 0 20.5 11t18.5 26l19 41q9 21 21.5 36t34.5 15q16 0 32.5-13.5T2013 900zm-766.5-82.5Q1233 784 1219 712t-33.5-130-75.5-58q-46 0-71 48t-34.5 114.5-28 121T958 900q0 21 11 34.5t39 13.5q52 0 57.5-43.5T1117 861q35 0 43 42.5t57 42.5q12 0 27.5-9t15.5-39q0-47-13.5-80.5zM1213 1122H999v258h214v-258zm0 393H999v258h214v-258zm763 0h-213v258h213v-258zm-1146 0H618v258h212v-258zm763 0h-212v258h212v-258zm-763-393H618v258h212v-258zm763 0h-212v258h212v-258zm383 0h-213v258h213v-258zM765.5 845Q754 855 741 855q-22 0-28-8t-6-26q0-26 4.5-35t24.5-9q14 0 27.5 12t13.5 30q0 16-11.5 26zM723 681q-9 0-13-10t-4-23l1-15q0-8 4-12l3-4q6-3 12-4h12q5 0 11 1.5t11 6.5l3 4q6 11 6 22 0 20-13 27.5t-24 7.5zm405 67q0 8 3 16t3 16q0 4-2 7.5t-9 5.5h-15l-17-2q0-5 1-10.5t1-10.5l2-7 8-49q0-3 2.5-6.5t6.5-3.5q3 0 5 5l5 12 4 15z" + }, + "children": [] + }] +}; +exports.u1F3E6 = u1F3E6; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F3E7.js b/dist/noto_emoji_regular/u1F3E7.js new file mode 100644 index 000000000..4f151c843 --- /dev/null +++ b/dist/noto_emoji_regular/u1F3E7.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F3E7 = void 0; +var u1F3E7 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2055 318q62 0 107 44.5t45 106.5v1900H392V469q0-61 44.5-106T544 318h1511zm-504 594q0 32 12 51.5t39 19.5q31 0 44-24t15.5-64.5T1674 854q16 0 29 59.5t52 59.5q37 0 56-63t30-63q5 0 7.5 3.5t3.5 8.5v19q5 65 18.5 82.5T1910 978t40.5-20 14.5-74q0-14-1-27t-1-24q0-88-4.5-176t-55.5-88q-24 0-43 21t-47 88l-12 26q-11 26-24 46t-22 20q-11 0-19-17l-14-29q-2-5-30-82t-74-77q-28 0-43 22.5t-17 59.5l-3 38q-3 51-3 100t-1 99v28zm-839.5 61.5Q727 988 763 988q57 0 62.5-44t60.5-44q48 0 57 42.5t63 42.5q34 0 46.5-14.5T1065 936q0-17-5-33t-8-29l-16-47q-9-24-15-49l-16-67h-1q-10-42-35.5-95.5T882 562q-52 0-83 47t-45.5 115.5-36 132.5-21.5 82q0 20 15.5 34.5zM1332 1988q0-20-14-34.5t-34-14.5H640q-20 0-34 14.5t-14 34.5v78q0 20 14 34t34 14h644q20 0 34-14t14-34v-78zm0-738q0-32-22.5-54.5T1255 1173H669q-32 0-54.5 22.5T592 1250v449q0 32 23.5 55t53.5 23h586q32 0 54.5-23t22.5-55v-449zm106-672.5q-33-7.5-113-7.5-34 0-67 1l-69 2-18-1h-20q-38 0-51.5 18t-13.5 51q0 30 13.5 43.5T1182 698q20 0 24.5 8t4.5 20v6q0 4-1 8 0 33 1.5 67t1.5 69v37q0 43 18.5 57.5T1286 985q34 0 48-15.5t14-77.5q0-42-1.5-85t-1.5-86q0-14 8.5-20t31.5-6l32 1q30 0 42-15t12-57q0-39-33-46.5zM1593 1973q0-12-9.5-21.5t-23.5-9.5h-57q-14 0-23 9.5t-9 21.5v74q0 12 9 22t23 10h57q14 0 23.5-10t9.5-22v-74zm0-222q0-14-9.5-22.5t-23.5-8.5h-57q-14 0-23 8.5t-9 22.5v73q0 13 9 22t23 9h57q14 0 23.5-9t9.5-22v-73zm0-223q0-13-9.5-22.5t-23.5-9.5h-57q-14 0-23 9.5t-9 22.5v74q0 12 9 21.5t23 9.5h57q14 0 23.5-9.5t9.5-21.5v-74zm209 445q0-12-9-21.5t-23-9.5h-57q-14 0-23.5 9.5t-9.5 21.5v74q0 12 9.5 22t23.5 10h57q14 0 23-10t9-22v-74zm0-222q0-14-9-22.5t-23-8.5h-57q-14 0-23.5 8.5t-9.5 22.5v73q0 13 9.5 22t23.5 9h57q14 0 23-9t9-22v-73zm0-223q0-13-9-22.5t-23-9.5h-57q-14 0-23.5 9.5t-9.5 22.5v74q0 12 9.5 21.5t23.5 9.5h57q14 0 23-9.5t9-21.5v-74zm208 445q0-12-9-21.5t-23-9.5h-57q-13 0-22.5 9.5t-9.5 21.5v74q0 12 9.5 22t22.5 10h57q14 0 23-10t9-22v-74zm0-222q0-14-9-22.5t-23-8.5h-57q-13 0-22.5 8.5t-9.5 22.5v73q0 13 9.5 22t22.5 9h57q14 0 23-9t9-22v-73zm0-223q0-13-9-22.5t-23-9.5h-57q-13 0-22.5 9.5t-9.5 22.5v74q0 12 9.5 21.5t22.5 9.5h57q14 0 23-9.5t9-21.5v-74zm0-289q0-14-9-23t-23-9h-475q-14 0-23 9t-9 23v70q0 12 9 21.5t23 9.5h475q14 0 23-9.5t9-21.5v-70zM889 832q-9 0-19-3t-10-11q0-3 1-6t2-10l6-25q2-12 6-26 2-2 3.5-5t6.5-3q8 0 17 35.5t9 38.5q0 11-12 15h-10z" + }, + "children": [] + }] +}; +exports.u1F3E7 = u1F3E7; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F3E8.js b/dist/noto_emoji_regular/u1F3E8.js new file mode 100644 index 000000000..1f4705813 --- /dev/null +++ b/dist/noto_emoji_regular/u1F3E8.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F3E8 = void 0; +var u1F3E8 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2078 594q24 13 41 41.5t17 55.5v1700h-584v-218q0-35-24-60t-59-25h-339q-35 0-60 25t-25 60v218H463V691q0-27 17-55.5t41-41.5l720-403q13-8 27.5-10.5t31.5-3.5q16 0 30.5 4t27.5 10zM865 1591H652v257h213v-257zm0-451H652v258h213v-258zm356 451h-213v257h213v-257zm0-451h-213v258h213v-258zm131-385q0 69 8.5 90t47.5 21 59.5-13 20.5-54v-22l-1-19q0-38 1-75.5t1-75.5q0-102-14.5-127.5T1418 454q-31 0-48.5 16.5T1352 531q0 13 1 24t1 19q0 19-6.5 24.5T1333 604h-63q-11 0-18-6.5t-7-23.5q0-8 1-19t1-24q0-77-66-77-34 0-52 21t-18 60v23q0 12-1 26 0 42 1 85.5t1 88.5v19q0 11-1 22 0 41 20.5 54t59.5 13q35 0 45.5-16.5T1247 778v-39q0-10 5-16t22-6h45q16 0 24.5 3t8.5 12v23zm226 836h-213v257h213v-257zm0-451h-213v258h213v-258zm356 451h-212v257h212v-257zm0-451h-212v258h212v-258z" + }, + "children": [] + }] +}; +exports.u1F3E8 = u1F3E8; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F3E9.js b/dist/noto_emoji_regular/u1F3E9.js new file mode 100644 index 000000000..186d7019d --- /dev/null +++ b/dist/noto_emoji_regular/u1F3E9.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F3E9 = void 0; +var u1F3E9 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2078 593q24 14 41 42.5t17 56.5v1700h-584v-219q0-36-24.5-60.5T1469 2088h-339q-35 0-60 25.5t-25 59.5v219H463V692q0-28 17-56.5t41-42.5l720-402q13-8 27.5-10.5t31.5-3.5q32 0 58 14zM865 1591H652v257h213v-257zm0-451H652v258h213v-258zm356 451h-213v257h213v-257zm0-451h-213v258h213v-258zm357 451h-213v257h213v-257zm0-451h-213v258h213v-258zm64.5-687q-59.5-61-144.5-61-33 0-67.5 9.5T1372 429l-27 20q-14 10-26.5 17.5T1297 474q-4 0-11-4l-44-31q-44-30-77-38.5t-83-8.5q-80 0-138.5 61.5T885 607q0 71 32 135.5t170.5 131T1249 983t42 43q17 0 33-26.5t47-53 115-65.5 128.5-74.5 66-91T1702 607q0-93-59.5-154zM1934 1591h-212v257h212v-257zm0-451h-212v258h212v-258zm-582-411q0-9-8.5-12t-24.5-3h-45q-17 0-22 6t-5 16v40q0 51-10 69t-46 18q-39 0-59.5-13t-20.5-54q0-11 1-22v-59l-1-68q0-17-1-39 0-14 1-26v-23q0-40 19-60.5t51-20.5q66 0 66 77 0 14-1 25t-1 19q0 17 7 23.5t18 6.5h63q8 0 14.5-6t6.5-24q0-8-1-19t-1-25q0-44 17.5-60.5T1418 478q43 0 57 26.5t14 127.5v33l-1 56q0 15-1 34l1 19v22q0 41-20.5 54t-59.5 13-47.5-21-8.5-90v-23z" + }, + "children": [] + }] +}; +exports.u1F3E9 = u1F3E9; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F3EA.js b/dist/noto_emoji_regular/u1F3EA.js new file mode 100644 index 000000000..e98cf6505 --- /dev/null +++ b/dist/noto_emoji_regular/u1F3EA.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F3EA = void 0; +var u1F3EA = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2430 1796v611h-197v-349q0-48-36-83t-83-35h-74q-49 0-84 35.5t-35 82.5v349H905v-944l-72 1q-253 0-397.5-45t-205-148T170 922q0-329 11.5-446t54-180T341 182.5 561 103t433-29q326 0 486.5 35.5t223 101T1805 391t39 424q0 228-38 342t-100.5 172.5-190 94T1108 1462v167q26-53 77-86t114-33h919q82 0 143.5 57t67.5 140H1108v89h1322zM592 878.5q51-43.5 111.5-126T764 590q0-86-61.5-135.5T549 405q-72 0-143.5 51.5T334 570q0 30 16 53.5t46 23.5q23 0 62.5-26t70.5-26q15 0 32 12.5t17 43.5q0 20-14 44.5T529 745l-22 25q-7 7-81 88.5T352 1000q0 33 16.5 68t42 48.5T501 1130q22 0 44 1.5t47 1.5q34 0 97-12t63-69q0-34-21-56.5T675 973l-82 1q-24 0-38-10t-14-21q0-21 51-64.5zM931 964q63 0 62 46t12.5 84.5 64.5 38.5q50 0 71-23.5t21-67.5q0-50 9.5-67.5t56-24 62-30T1305 852q0-31-13.5-54t-36.5-23q-6 0-12.5 1t-12.5 1q-23 0-32.5-19t-9.5-44q0-29 6.5-59.5t6.5-54.5q0-91-26-131t-76-40q-67 0-141 77.5T825.5 674 767 849q0 53 37.5 84t94.5 31h32zm813 1083q0-44-32-75.5t-76-31.5h-320q-43 0-75.5 31.5T1208 2047v127q0 44 32.5 75.5t75.5 31.5h320q44 0 76-31.5t32-75.5v-127zM1001 806h-9q-22 0-41-10t-22-33q0-31 20.5-54t40.5-45.5 36-22.5q17 0 26.5 26t9.5 60q0 49-23.5 64t-37.5 15zm569 209q0 69 8.5 90t47.5 21 59.5-13 20.5-54q0-11-1-21.5t-1-19.5l3-136v-42q0-101-14-127.5t-57-26.5q-31 0-48.5 16.5T1570 763q0 14 1 25v19q0 19-6.5 31.5T1551 851h-50q-11 0-17.5-13.5T1477 807l1-19v-25q0-39-15.5-58t-50.5-19q-34 0-52 22.5t-18 58.5v23q0 12-1 26l3 154v48q0 9-1 19.5t-1 21.5q0 41 20.5 54t59.5 13q35 0 45.5-16.5t10.5-71.5v-39q0-10 5-16t22-6h32q16 0 24.5 3t8.5 12v23z" + }, + "children": [] + }] +}; +exports.u1F3EA = u1F3EA; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F3EB.js b/dist/noto_emoji_regular/u1F3EB.js new file mode 100644 index 000000000..d8faf0928 --- /dev/null +++ b/dist/noto_emoji_regular/u1F3EB.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F3EB = void 0; +var u1F3EB = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2117 838q65 0 113 47.5t48 115.5v1372h-705v-212q0-37-26.5-63.5T1482 2071h-363q-37 0-63.5 26.5T1029 2161v212H322V1001q0-66 48.5-114.5T485 838h294q48 0 74.5-16t30.5-61V551q0-12 8.5-27.5T912 502l359-200q10-5 29-5t29 5l359 200q12 8 20 22t8 27v206q4 43 28 62t78 19h295zM726 1588H523v258h203v-258zm0-408H523v258h203v-258zm337 408H862v258h201v-258zm0-408H862v258h201v-258zm338 408h-201v258h201v-258zm0-408h-201v258h201v-258zm64-624q-69-69-165-69t-164.5 69-68.5 165 68 164.5 165 68.5 165.5-68.5T1534 721t-69-165zm275 1032h-203v258h203v-258zm0-408h-203v258h203v-258zm337 408h-202v258h202v-258zm0-408h-202v258h202v-258zm-754-493q8 6 13.5 14.5t5.5 19.5q0 18-12.5 30.5T1300 764q-12 0-19-6l-103 61-23-42 104-58q0-10 5.5-18.5T1278 687V518h45v169z" + }, + "children": [] + }] +}; +exports.u1F3EB = u1F3EB; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F3EC.js b/dist/noto_emoji_regular/u1F3EC.js new file mode 100644 index 000000000..52842442d --- /dev/null +++ b/dist/noto_emoji_regular/u1F3EC.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F3EC = void 0; +var u1F3EC = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2277 572q35 0 60 24t25 59v1384q0 34-25 59.5t-60 25.5h-224q-32 0-57.5-19.5T1970 2071v-136h-59v408h-586v-241q0-20-71-32.5t-175-12.5q-114 0-179.5 12.5T834 2102v241H238V640q0-63 46-106.5T390 490h1370q62 0 106.5 44t44.5 106v46h59v-61q0-14 25.5-33.5T2053 572h224zM438 991h214V735H438v256zm0 410h214v-258H438v258zm0 408h214v-258H438v258zm302 155H438v219h302v-219zm268-413H796v258h212v-258zm0-408H796v258h212v-258zm0-408H796v256h212V735zm358 816h-214v258h214v-258zm0-408h-214v258h214v-258zm0-408h-214v256h214V735zm355 1229h-303v219h303v-219zm1-413h-214v258h214v-258zm0-408h-214v258h214v-258zm0-408h-214v256h214V735zm248 49h-59v1052h59V784z" + }, + "children": [] + }] +}; +exports.u1F3EC = u1F3EC; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F3ED.js b/dist/noto_emoji_regular/u1F3ED.js new file mode 100644 index 000000000..e3afc6f5e --- /dev/null +++ b/dist/noto_emoji_regular/u1F3ED.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F3ED = void 0; +var u1F3ED = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2215 2391H384v-609q0-19 17-31l70-38 25-770q0-12 7-16-20-26-34.5-62T454 783q0-76 53-133.5T636 586q13-104 82.5-173.5T908 343q25 0 49 3.5t47 11.5q42-70 111.5-105t157.5-35q75 0 135.5 19.5T1507 288q46-50 114-77.5t159-27.5q155 0 254 103t99 260q0 152-109.5 259T1752 912q-77 0-152.5-28T1473 816q-36 45-98 71.5T1233 914q-68 0-127-20.5T1006 840q-36 39-73 57.5T854 916q-41 0-85-19l-15 21q-8 11-17 22l1 3 20 611 231-129q5-2 9-3t9-1q17 0 25.5 11t8.5 25v264l535-296q10-4 17-4 16 0 26 11t10 25v264l534-296q5-2 9-3t9-1q17 0 25.5 11t8.5 25v934zM533 776q0 41 15.5 74.5T596 912h62q32-32 50.5-69.5T754 805q14 0 39.5 15.5T854 836q36 0 67.5-24t43-46.5T1000 743q18 0 40.5 23.5T1114 813t116 23q75 0 123-25.5t59-44.5l16-23q9-23 37-23 15 0 27 9 0 9 81 57t181 48q128 0 214-84t86-201q0-129-75.5-208.5T1781 261q-93 0-153.5 33t-75.5 62.5-41 29.5q-9 0-17-4.5t-13-11.5l-13-14q-22-21-72-39.5T1278 298q-86 0-140 35t-70 75.5-45 40.5q-6 0-38.5-14T908 421q-92 0-141.5 53T713 603l-1 21q0 17-11 28.5T673 664q-5 0-10-1t-9-1q-46 0-83.5 33.5T533 776z" + }, + "children": [] + }] +}; +exports.u1F3ED = u1F3ED; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F3EE.js b/dist/noto_emoji_regular/u1F3EE.js new file mode 100644 index 000000000..af594682b --- /dev/null +++ b/dist/noto_emoji_regular/u1F3EE.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F3EE = void 0; +var u1F3EE = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2097 1970q-104 238-308 361l-36 18v34q0 90-135 155.5t-318 65.5q-190 0-322.5-68T845 2375v-26q-219-110-332.5-355T399 1386q0-371 100.5-601T845 432v-31q0-93 132.5-162t322.5-69q189 0 321 68.5T1753 401v31q251 125 349.5 359t98.5 596q0 345-104 583zm-205 105l-6 1-77 28-45 15q-82 28-170 40.5t-164 12.5q-75 0-113-15.5t-38-42.5q0-51 102-65.5t248.5-49.5 253.5-101 107-125q0-19-10-36.5t-29-20.5l-107 42q-101 39-209 60t-202 21q-75 0-114.5-15.5T1279 1779q0-17 18-34.5t74-27.5l87-15q271-48 401.5-124t130.5-139q0-20-10-38t-29-18l-104 39q-138 52-240.5 67.5T1433 1505q-72 0-113-15t-41-44q0-51 104.5-65.5t247-49.5 251-101 108.5-125q0-25-12.5-41.5T1943 1047q-39 0-90 30t-168 62-252 32q-69 0-111.5-15t-42.5-46q0-52 118-67t192-35.5 150-55.5 124-92.5 48-129.5q0-12-1-18-17-22-55.5-60T1753 575v6q-6 90-137.5 155T1300 801q-188 0-319.5-66T847 575Q677 678 601 865.5T525 1382q0 314 79 506.5t234 309 444 116.5q151 0 279.5-31t207-91 123.5-117zM1006 396q1 3 1 5 6 50 92 86.5t201 36.5q120 0 207.5-39.5T1595 390t-87.5-95.5T1300 254q-125 0-210 41t-85 95q0 3 1 6z" + }, + "children": [] + }] +}; +exports.u1F3EE = u1F3EE; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F3EF.js b/dist/noto_emoji_regular/u1F3EF.js new file mode 100644 index 000000000..3ebeed086 --- /dev/null +++ b/dist/noto_emoji_regular/u1F3EF.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F3EF = void 0; +var u1F3EF = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2174 1672v298q24 0 27.5 19t45 142 91.5 224 76 126 26 41q0 11-9 19.5t-20 8.5H189q-14 0-22-8.5t-8-19.5q0-14 20.5-32t64-97 98.5-234.5 55-166.5q2-10 10-16t18-6v-298H307q-35 0-74.5-14.5T172 1628l-14-9q-13-9-13-25 0-11 9-19t20-8q75-4 149-64.5t100-99 46-38.5h211v-126H566q-32 0-79-18t-47-43q0-11 9-20.5t21-9.5q94 0 161.5-39t86-68 36.5-29h100V800h-17q-63 0-105-22.5T673 727l-10-15-2-6q0-3-1-6 0-13 9.5-21t22.5-8q11 0 20 3.5t20 3.5q49 0 98-59t87-155q-46-11-66.5-44T830 352q0-43 27-79t68-36q12 0 16 5.5t4 13.5q0 15-6 29t-6 32q0 27 39 36t53 38h224q21-37 26-50t25-13q19 0 25.5 15.5T1351 391h225q9-28 49.5-37t40.5-37q0-18-6-31t-6-30q0-8 4-13.5t16-5.5q39 0 67.5 35t28.5 80q0 36-21 68.5t-65 43.5q38 96 86.5 155t98.5 59q9 0 19-3.5t19-3.5q13 0 22.5 8t9.5 22q0 8-2 11l-9 16q-17 27-59 49.5T1763 800h-16v212h98q18 0 35 27t84.5 68 165.5 41q14 0 21.5 9.5t7.5 21.5q0 23-45 41.5t-81 18.5h-112v126h211q19 0 44 38t99 99 150 65q14 0 21.5 9t7.5 20q0 14-13 23l-13 9q-23 16-61.5 30t-73.5 14h-119zm-118 3H543v295h1513v-295zM1300 487q-19 47-74.5 109.5T1111 674h378q-55-6-109.5-69.5T1300 487zm-329 525h106v-88q0-28 19.5-46.5T1143 859q26 0 45.5 18.5T1208 924v88h184v-88q0-28 19.5-46.5T1458 859q26 0 45 18.5t19 46.5v88h107V800H971v212zm832 245h-181q76 43 181 82v-82zm-503-83q-63 75-145.5 125T981 1361h638q-95-11-185.5-71T1300 1174zm-503 165q103-40 181-82H797v82zm466 552h-78v-143h78v143zm151 0h-78v-143h78v143zm-589 0h-78v-143h78v143zm150 0h-78v-143h78v143zm879 0h-78v-143h78v143zm-151 0h-79v-143h79v143z" + }, + "children": [] + }] +}; +exports.u1F3EF = u1F3EF; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F3F0.js b/dist/noto_emoji_regular/u1F3F0.js new file mode 100644 index 000000000..191be84f2 --- /dev/null +++ b/dist/noto_emoji_regular/u1F3F0.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F3F0 = void 0; +var u1F3F0 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2293 2518h-859v-255q0-18-13-31t-32-13h-179q-19 0-31.5 13t-12.5 31v255H307l100-594v-90h67v-302q-12 0-17-10l-21-56q-2 0-2-6 0-2 1-4l185-352V781q0-8 6-14.5t14-6.5 15 7l207 84q11 6 11 16 0 11-11 18l-202 81v138l182 348q2 3 2 8t-2 6l-20 56q-5 10-17 10v359h58v-57h94v57h69v-135l-129-126v-293h95v65h79v-65h63V943h-8q-5 0-9-3.5t-6-7.5l-22-57-1-5q0-3 2-7l183-348V190q0-8 6-14t14-6q9 0 14 7l208 83q12 5 12 18 0 12-12 17l-203 82v138l186 351q0 2 1 4-2 4-2 5l-22 57q-2 4-6 7.5t-10 3.5h-8v394h60v65h78v-65h95v293l-129 126v135h81v-57h94v57h51v-359q-12 0-17-10l-21-56q-2 0-2-6 0-2 1-4l184-349V781q0-8 6.5-14.5t14.5-6.5q6 0 13 7l209 84q11 6 11 16 0 11-11 18l-203 81v141l183 345q2 3 2 7t-2 7l-22 56q-2 10-16 10v302h82v90zm-961-1403v-103h-79v103h79zm-654 591v-104h-77v104h77zm1230-104v104h77v-104h-77z" + }, + "children": [] + }] +}; +exports.u1F3F0 = u1F3F0; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F400.js b/dist/noto_emoji_regular/u1F400.js new file mode 100644 index 000000000..3ce0d61dd --- /dev/null +++ b/dist/noto_emoji_regular/u1F400.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F400 = void 0; +var u1F400 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2004 1644q106 32 179.5 108t73.5 168q0 181-204 310t-557 129q-103 0-206-15.5t-198-57.5l-38-16q-71-29-97-54.5t-26-35.5q0-8 12-8 8 0 15.5 7.5t81.5 38 169 49.5 194 19q269 0 418.5-48.5t237.5-128 88-173.5q0-73-46.5-125t-135.5-78q-18 76-71 144t-177 125l-94 43q-48 22-91 52l-44 31q-37 25-73.5 38.5T1333 2180q-47 0-76.5-22.5T1227 2091q0-45 60-79t119-60l20-10q12-5 12-16 0-12-18.5-32t-18.5-69q0-21 5-39.5t22-43.5l11-17q4-7 4-12 0-10-20-10-38 0-61.5 46t-23.5 89q0 23 6.5 47t6.5 36q0 16-41 35.5t-70 19.5q-13 0-26 3.5t-23 12.5l-19 15q-73 52-111.5 67t-71.5 15q-56 0-86.5-19t-30.5-58q0-54 77.5-92t77.5-62q0-7-21.5-39.5T979 1730t-24-56q-18 0-40.5 32.5t-53 48.5-58.5 16q-37 0-65-26.5t-28-62.5q0-32 39.5-71t55.5-89l-35 1q-111 0-177-17t-110-53q-11 12-26 19t-33 7q-32 0-56.5-23.5T343 1398q0-29 18.5-51.5T411 1320q-2-14-3-28t-1-30q0-111 53-233t132-211q-59-43-93-108t-34-140q0-136 92.5-212.5T763 281q129 0 214.5 81t85.5 209q0 47-12 92l26 7q12 4 25 9 41-126 131.5-198t205.5-72q146 0 264 112t118 266q0 118-67 205t-181 121q158 114 228 187t115 154.5 55 179.5q9 2 18 5zm-417-710q65-63 65-151 0-86-70-148t-157-62q-85 0-137 64.5T1236 743q0 24 27 47t55 75 28 83.5 19.5 40 69.5 8.5q87 0 152-63zM851 679l27-14q16-7 23-26.5t7-47.5q0-73-46.5-127.5T752 409q-67 0-112 52t-45 120q0 49 29.5 90.5t63 53.5 39.5 12q10 0 31.5-13.5T808 698zm167 371q-25-29-60-29-33 0-58.5 29t-25.5 72 24.5 72.5T958 1224t60-29 25-73q0-43-25-72zm253.5 629.5q-4.5-7.5-12.5-7.5-13 0-21 19.5t-31.5 43.5-56.5 24q-24 0-42-14.5t-18-37.5q0-31 24-70.5t24-77.5q0-10-3.5-16.5t-11.5-6.5q-14 0-16 10l-5 19q-4 25-30.5 67.5T1045 1707q0 43 32.5 74t79.5 31q64 0 91.5-48.5t27.5-68.5q0-8-4.5-15.5z" + }, + "children": [] + }] +}; +exports.u1F400 = u1F400; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F401.js b/dist/noto_emoji_regular/u1F401.js new file mode 100644 index 000000000..8b889b7d8 --- /dev/null +++ b/dist/noto_emoji_regular/u1F401.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F401 = void 0; +var u1F401 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1195.5 2067.5q3.5-16.5 11.5-30.5l-19 14q-60 45-106 63.5t-88 18.5q-72 0-114-31t-42-87q0-37 21.5-66.5T921 1898l48-26q12-7 18-12-5-7-12-20l-12-27q-7-14-12-33t-5-42q-29 35-63.5 54.5T805 1812q-54 0-92.5-38t-38.5-91q0-43 35-79t36-38q-86 0-158.5-18.5T466 1490q-12 4-30 4-39 0-69-28.5t-30-70.5q0-23 10-44t29-35q-3-24-3-51 0-104 46.5-223.5T543 827q-39-39-75.5-100T431 574q0-151 102.5-239.5T769 246q137 0 238 86.5T1108 583q58-104 145-157t191-53q163 0 292 123t129 295q0 106-53 196.5T1661 1128q195 148 272.5 271t82.5 251q105 36 176 110t71 163q0 130-109.5 238T1872 2316t-371 47q-103 0-205.5-16t-197.5-57l-38-16q-41-18-70-36t-45-39l-5-7q-3-4-3-8 0-8 11-8 8 0 16.5 7.5t80.5 37.5 167.5 49.5T1408 2290q272 0 421.5-49t236-127.5T2152 1941q0-58-28-98.5t-120-78.5q-26 95-101 172t-197 121l-5 2q-113 54-184.5 110.5T1360 2226q-77 0-122.5-35.5T1192 2098q0-14 3.5-30.5zM453 1299q35 7 57.5 33.5T533 1396q0 21-9 39 39 27 101 39.5t155 12.5h23q18 0 32 9.5t14 29.5q0 24-16 53t-53 66l-16 16q-6 7-9 12t-3 11q0 21 15.5 34.5T803 1732q49 0 84-47t73-47q32 0 47 28t16.5 61 20.5 74l3 7q7 14 16 26t9 29q0 29-27.5 51.5T973 1960l-13 7q-21 11-32 21t-11 27q0 22 18 30.5t59 8.5q40 0 75-21t74-47l12-8q12-9 32.5-24t72.5-15h70q4 0 9 1 22-2 22-15 0-4-9-26.5t-9-56.5q0-44 23.5-89.5t62.5-45.5q19 0 19 10 0 6-21 37.5t-21 75.5q0 50 22 74t22 43q0 32-57 62t-89.5 47-32.5 42 25.5 37.5 63.5 12.5q30 0 54.5-9t50.5-28l32-24q42-33 86.5-57.5t84.5-41.5l39-17q114-48 172.5-128t58.5-177q0-68-30.5-144.5T1811 1368t-154.5-144-103-76.5-14.5-29.5q0-32 42.5-43t94.5-50 81.5-99.5T1787 790q0-139-105.5-238.5T1444 452q-79 0-144 38.5T1198 586t-49 96.5-41 39.5q-6 0-48.5-13t-42.5-42q0-2 6-29t6-63q0-123-79.5-187T769 324t-180.5 66T509 574q0 91 51 151.5t64 68 13 28.5q0 16-6.5 21T578 910.5 492 1074t-40 201q0 16 1 24zm841-657.5q52-64.5 137-64.5 88 0 157 62t69 148q0 88-65 151t-152 63l-16-1q-35 0-54-9t-19-36.5-29-84.5-54.5-77-25.5-46q0-41 52-105.5zM884.5 669Q856 683 796 712l-62 29q-55-9-94.5-53.5T600 585q0-68 45-120t112-52q63 0 109.5 53.5T913 593q0 62-28.5 76zm19.5 530q-25-29-25-73 0-43 25-72t60-29q33 0 58.5 29t25.5 72-24.5 72.5T964 1228t-60-29zm218.5 582q-41.5-35-41.5-81 0-33 32.5-76.5t34-69 20.5-25.5q13 0 17.5 13.5t4.5 26.5q0 29-24.5 69.5T1141 1701t20 34 39 12q21 0 38.5-11.5t33.5-33.5l17-23q6-8 13-8 8 0 14.5 7t6.5 18q0 34-34 77t-85 43q-40 0-81.5-35z" + }, + "children": [] + }] +}; +exports.u1F401 = u1F401; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F402.js b/dist/noto_emoji_regular/u1F402.js new file mode 100644 index 000000000..91a0f2c4d --- /dev/null +++ b/dist/noto_emoji_regular/u1F402.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F402 = void 0; +var u1F402 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2274 1779q3 45 9 89.5t6 89.5q0 86-30.5 128.5T2170 2129q-36 0-48.5-11.5T2109 2088q0-19 6-37t6-37q0-77-36.5-130t-96.5-88l-33-21q-16-10-41-10h-10l-10 2q-8 45-24 90l-31 82q-11 29-38.5 49.5T1739 2009q-30 0-54-10.5t-24-33.5q0-25 29.5-44t29.5-77q0-9-1-19t-3-18l-63 14q-43 9-63.5 23.5T1569 1896q0 29 2 49t2 43v102q0 185 24.5 243.5t24.5 84.5q0 38-25 53.5t-58 15.5q-36 0-72.5-14t-48-30.5-11.5-58.5q0-12 1-24v-21q0-39-20-119t-52-151l-10-21q-8-18-20.5-29.5T1277 2007h-6l-7 2q-33 9-66.5 14.5t-68.5 5.5q-64 0-130.5-19.5T922 1990q-11 0-15.5 11t-14 59.5-18.5 118-22.5 95-44.5 39-74 13.5q-28 0-45.5-12t-17.5-33q0-20 20.5-46t20.5-74l-1-28q0-26 2-53t2-54v-24q0-73-50-143.5T596 1730t-18-125q0-29 6-59 53 11 108 11 94 0 152.5-32t92.5-101 127-147.5 93-139.5q0-12-4-22.5t-9-20.5q-44 84-145.5 165.5t-109 121-57 80T677 1501q-107 0-174.5-40t-93-83.5T384 1284q0-47 38-110.5t38-115.5q0-20-1.5-40t-1.5-38q0-61 4-119t21-112q-55-4-113-72t-58-124q0-39 18-64.5t52-45.5l39-23q16-10 34.5-24t18.5-30q0-20-18.5-36.5T436 296q0-13 17-13 14 0 27 9l22 16q27 19 42.5 45t16.5 59q0 45-20 73t-20 46q0 14 18.5 22.5T590 562q18 0 33.5-2.5T655 557q36-17 72-22t78-5q87 0 133.5 11.5T999 556l6-1q19 0 56 13t59 13q18 0 35-11.5t17-32.5q0-19-16.5-45t-16.5-57q0-54 30-91t48-37q13 0 13 16 0 18-8 31t-8 30q0 26 61 87t61 131q0 35-11.5 68t-33.5 60q27 4 46.5 14t19.5 34q0 15-8.5 26.5T1326 824q41 27 120 59.5t120.5 41.5 127.5 22l152 19q22 3 36 13.5t17 15 39 23.5l55 32q20 10 41 14.5t41 4.5q51 0 83.5-28t32.5-81q0-50-43.5-92.5t-110.5-76-67-73.5q0-18 13-38-6-12-6-25 0-32 27.5-56.5T2066 574q19 0 38 3.5t39 3.5q12 0 24-2t19-2 10.5 6 3.5 24q0 67-41.5 95.5T2075 731q-26 0-50-12 0 26 56 49.5t114 80 58 124.5q0 70-54 118.5t-134 52.5q42 52 72.5 109t51.5 160l11 56q18 84 46 132t28 178zM515 1330q-20-14-37-14-8 0-13 4t-5 12q0 11 15.5 34t37.5 23q10 0 16-9.5t6-18.5q0-17-20-31zm257 28.5q-12-5.5-27-5.5-31 0-53.5 12t-22.5 33q0 13 11 19t25 6q33 0 56-13.5t23-33.5q0-12-12-17.5zM964.5 954q-8.5-14-23.5-29l-101 63q0 30 18.5 54t48.5 24q26 0 46-20.5t20-55.5q0-22-8.5-36z" + }, + "children": [] + }] +}; +exports.u1F402 = u1F402; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F403.js b/dist/noto_emoji_regular/u1F403.js new file mode 100644 index 000000000..50db6c569 --- /dev/null +++ b/dist/noto_emoji_regular/u1F403.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F403 = void 0; +var u1F403 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2407.5 939q-54.5 53-139.5 53 57 84 89.5 169.5T2390 1344q0 15-1 31.5t-1 32.5q2 75 6.5 150.5t4.5 150.5q0 26 2 54.5t2 57.5q0 73-32 122.5t-85 49.5q-27 0-47.5-16.5T2218 1928q0-13 4.5-26t4.5-32q0-58-12.5-99.5t-29.5-61-45-25-57.5-23-44.5-17.5q-5 0-10 4.5t-11 11.5l-22 27q-83 90-172 140.5t-185 50.5q-11 0-18-1-2 42-5 83t-3 82q0 94 16 135t16 67q0 13-2 26l-4 24q-4 23-36 42t-68 19q-43 0-61-19.5t-18-69.5q0-18-4-34l-10-32q-6-18-6-35l1-11q0-50-19.5-127t-31.5-120l-11-36q-9 0-18 1h-20q-20 0-37.5-1t-37.5-4v20q0 11-1 22l1 84q0 17-1 33t-1 33q0 21 5.5 43t5.5 41q0 37-33 65t-84 28q-28 0-48-13.5t-20-38.5q0-19 6-40.5t6-35.5q0-56-9.5-116t-29.5-102-63-59-83-54.5-67-78.5q67 0 127.5-43.5T1054 1553t56.5-92 94-100 58.5-115q0-19-11-41-43 86-147.5 175T989 1517.5t-64 89.5-169 41l-52-2q-96-4-173-69.5T454 1422q0-45 37-110.5t37-113.5q0-29-2.5-59.5T523 1085q-66 24-128 24-107 0-181.5-71.5T139 854q0-93 51-173.5T315 600q20 0 31 12.5t11 26.5q0 24-24.5 41T308 754q0 29 18.5 43t38.5 14q51 0 79.5-63T555 626.5 715 568q24 0 43.5 3t35.5 6l32 7q15 3 32 3 50 0 104-25.5t118-25.5q53-19 101.5-29.5T1284 496q87 0 163 25.5t151 72.5q-3-14-9-26l-12-24q-6-11-10.5-22.5T1562 496q0-35 20.5-53.5T1628 424q23 0 46.5 13t43.5 32l23 24q42 42 63.5 101t21.5 119q0 24-3 48 55 37 147.5 38t140 30 91.5 78q17 6 34 11t36 5q52 0 85.5-37t33.5-89q0-50-34.5-90.5t-97-73.5-81.5-58q-32-4-56.5-26.5T2097 488q0-54 37-100.5t111-46.5q10 0 23.5 3t13.5 14q0 10-11.5 22t-11.5 32 8 41.5 8 42.5q0 23-11.5 40t-25.5 26q7 8 19.5 16t27.5 16l29 17q68 39 108 88.5t40 112.5q0 74-54.5 127zM1637 536q21 35 21 85 0 77-46 128.5T1491 801q-96 0-205-106t-237-106q-55 0-97.5 33.5T909 705q0 36 32.5 87T1126 929.5t312 86.5q142 0 237-81.5t95-217.5q0-56-19.5-108.5T1689 518l-27-25q-17-15-34-15-12 0-12 16 0 7 21 42zM498 1036q0-74 18.5-99t59-49.5 53-67.5 50-108.5T760 624q-9-2-20-2h-21q-65 0-128 43T486 786.5 365 865q-49 0-80-32t-31-79q0-29 6.5-49.5T275 670q-37 26-59.5 75.5T193 850q0 97 59 151t143 54q24 0 50.5-5t52.5-14zm97 438q-21-15-39-15-20 0-20 16 0 14 18 36.5t39 22.5q12 0 17.5-10t5.5-19q0-16-21-31zm283 46q0-3 1-5 0-13-10.5-18.5T844 1491q-36 0-61 12.5t-25 36.5q0 13 12 19.5t26 6.5q25 0 49.5-11.5T876 1527zm164.5-469.5Q1023 1027 996 1027q-24 0-43.5 20t-19.5 53q0 30 19.5 55t48.5 25q26 0 43.5-20.5t17.5-52.5q0-33-19.5-56.5z" + }, + "children": [] + }] +}; +exports.u1F403 = u1F403; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F404.js b/dist/noto_emoji_regular/u1F404.js new file mode 100644 index 000000000..77d09d2c5 --- /dev/null +++ b/dist/noto_emoji_regular/u1F404.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F404 = void 0; +var u1F404 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2515 982q4 16 4 37 0 51-32.5 91t-80.5 40q-20 0-45.5-11t-39.5-29q-46-3-78.5-35.5t-61.5-106T2058 855q92 132 138.5 341.5t74.5 341 32 276.5q0 12 1.5 24t1.5 25q0 51-40.5 81.5T2182 1975h-29q-60 0-87-20.5t-32-56.5l-10-59q-9-51-16-95.5t-97-80.5q-110 16-217 44l2 20v20q0 69-47.5 86.5T1554 1851q-28 0-42.5-14t-14.5-56v-12l-12 7q-20 12-39 18.5t-38 17.5q-6 77-6 153 0 18 1 36t1 37q0 18 3.5 48t3.5 63q0 96-34.5 146t-118.5 50q-102 0-131-34t-29-97q0-7 1-13v-10q0-41-4-79t-11-80l-5-31q-5-29-14-59.5t-20-60.5q-65-7-126-23-17 62-17 124 0 15 1 31t1 40q0 92-71 111.5T720 2184q-54 0-83-22t-29-68q0-24 4-41t4-30q0-50-8.5-101T591 1818l-4-28q-2-16-6.5-31.5T573 1728q-9 0-19 1t-19 1q-83 0-148.5-33t-88.5-85q-75-42-116.5-102T140 1371q0-59 26.5-118t65.5-105.5 60-147.5l21-107q-59-15-93.5-58.5T185 731t34.5-101T320 589l27 1 14 1q10 0 19 1h17q-9-20-17.5-44t-8.5-48q0-32 16-51t45-19 78 27 69 47q67-26 137-26h4q107 2 175 14t97 25l37 15q6-4 9-7l22-15q29-19 57.5-29.5T1163 470q27 0 43.5 17.5T1223 537q0 21-8 51 60-12 115.5-19.5T1443 561q158 0 292 49t234 143q104 13 171 59.5t97 134.5 73 99q0-20 26.5-48.5T2410 969l36 1q13 0 26-6.5t25-6.5q11 0 14 8zM1056.5 648.5Q1079 667 1105 669h3q27 0 47.5-52.5T1176 543q0-15-4.5-20.5T1158 517q-14 0-36 9.5t-37 20.5l-20 14q-19 13-25 23.5t-6 22.5q0 23 22.5 41.5zm-621.5-89q13 32.5 23 48.5t32 16q29 0 48.5-19t19.5-38q0-26-48-56t-70-30q-18 0-18 24 0 22 13 54.5zM544 925q-14-16-33-16-24 0-41.5 23T452 985q0 26 14.5 41t32.5 15q23 0 41-22.5t18-51.5q0-26-14-42zm-256 558q9-21 19-35.5t24-30.5q0-20 13-29.5t30-9.5q27 0 53.5 20.5T454 1444q0 20-11.5 28t-13.5 26l-2 17q0 22 30.5 39t70.5 17q36 0 66.5-14t30.5-40l-1-17q0-36 25.5-60.5T713 1415q23 0 40 11t19 37l-1 7q13 31 13 62 0 41-21 80 73-17 127-65t68-90l10-29q23-68 89.5-128.5t111-127.5 44.5-186q0-68-18-136 60 0 102-26.5t42-74.5q0-27-14-47t-37-20q-12 0-23 3l-24 6-28 6q-15 3-35 3h-25q-8 8-22 12.5t-24 4.5q-49 0-84.5-34T987 607q0-5 1-7-45-22-107.5-32.5T727 557q20 37 24.5 78.5T756 712q0 186-108.5 316T420 1169l-57 5q-29 3-58 4-5 7-45.5 69.5T219 1380q0 37 17.5 66t45.5 58q0-5 2-11zm99 156.5q60 41.5 146 41.5 81 0 141.5-40t60.5-107q0-16-5-33l-1-4q-2-9-7-18t-17-9-22 4.5-10 16.5q0 8 1 16.5t1 16.5q0 40-43.5 68T531 1620q-66 0-109.5-30.5T378 1516l2-22q2-14 10.5-26t8.5-20-4.5-10.5-8.5-2.5q-18 0-38.5 35t-20.5 68q0 60 60 101.5zM2105 1159q-11 5-23.5 6.5t-24.5 1.5q-77 0-118.5-21t-92.5-89-115-68l-102 1-50-1q-51 0-110.5-37T1381 850q-18 23-42.5 39.5T1288 915q2 18 3 35.5t1 35.5q0 107-36 186.5t-122.5 162T1039 1461t-58 104-124.5 97.5T662 1703l-6 3q-3 2-7 3 5 17 8 34t7 35l5 27q11 57 17.5 115.5T694 2038q11 2 24.5 3t27.5 1q20 0 49.5-4.5T825 2025q0-19-1-32 0-92 24-170-13-14-24.5-33.5T812 1751q0-25 19-25 22 0 44 23t55.5 31 75 15.5 68 9 36 27.5 26 71.5 21.5 85.5l15 107q5 38 5 78 17 11 32.5 12.5t35.5 1.5q24 0 45-4.5t42-10.5l1-12v-13q0-44-5-92.5t-5-94.5q0-56 4.5-119.5t4.5-65.5v-15q0-43 13.5-97t13.5-66v-7q0-25-17-56.5t-17-51.5q0-32 29-53t65-21q57 0 89 59t62 59 74.5 19 80.5 72q69-17 128-26t63-9q24 0 90.5 42t77.5 96l9 50 10 60q22 3 47 3 11 0 32-1.5t42-8.5q0-58-5.5-116.5T2199 1582q-92-10-128-46t-36-94q0-57 26-101.5t72-65.5q-6-30-13-58.5t-15-57.5zM888.5 961.5Q905 943 929 943q32 0 56.5 29t24.5 64q0 32-17.5 50.5T951 1105q-31 0-55-29t-24-65q0-31 16.5-49.5z" + }, + "children": [] + }] +}; +exports.u1F404 = u1F404; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F405.js b/dist/noto_emoji_regular/u1F405.js new file mode 100644 index 000000000..32084c7ed --- /dev/null +++ b/dist/noto_emoji_regular/u1F405.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F405 = void 0; +var u1F405 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2546 1449q19 43 25.5 73t6.5 56q0 83-62.5 137t-134.5 54q-53 0-87.5-24t-60.5-67q-70 29-159 29-38 0-76-9t-84-37q-21 42-74 81.5t-118 71.5q-38 19-74.5 36t-74.5 31q-12 29-34 102t-62 158l-6 13q-77 167-162 221.5t-178 54.5q-123 0-224-69.5T806 2190q0-93 72.5-168t96.5-126q-51-8-103.5-17.5T765 1848l-45 63q-38 55-102 119.5T469 2133q-59 27-132 27-123 0-206.5-80.5T47 1876q0-72 38-119t94.5-68T298 1578q-20-20-37-40l-32-36q-60-70-91-161.5T107 1148q0-158 74.5-321T382 558q-6-12-8.5-28.5T371 497q0-87 79-154t179-67q101 0 168 58t73 133q63 5 127.5 18t125.5 34q25-45 76-72.5t119-27.5q98 0 174.5 58.5T1600 630q92 7 181 36.5t170 29.5q100 0 171.5-39.5T2203 568l2-8q11-47 45-76t79-29q55 0 93.5 42.5T2461 607q0 86-77 180.5T2183 932q32 35 52 71l36 69q16 30 28 58.5t26 53.5q54 6 101.5 58.5T2511 1372zm-299-794q-5 5-10 11t-11 11q23 8 45 32t30 51q18-18 30-34 0-27-25-49.5t-48-22.5q-8 0-11 1zm-73 63q-13 8-25.5 14.5T2122 744q22 15 35.5 41.5T2171 839l-1 12 17-8q20-9 35-19.5t15-20.5q0-25-18-51.5t-45-33.5zm320 816.5q-6-21.5-15-42.5l-25-58q-40-90-82.5-134.5t-72.5-40-66-83-79.5-153.5T2035 891q13-2 26-5l25-5q6-16 6-33 0-23-11.5-49t-31.5-34q-24 5-49 7t-49 2l-11-1q0 2 2 2t31.5 33.5 50 90T2044 1017q0 29-5 43.5t-13 14.5q-24 0-50.5-90T1898 837t-98-74q49 61 72 137t23 150v30q0 30-8.5 48.5T1864 1147q-8 0-12-2.5t-33.5-124-92-194.5T1590 721l-2 7q62 66 90 139t28 158q0 32-4.5 64.5T1690 1154l-5 23q-7 24-17.5 40.5T1643 1234q-12 0-15.5-7.5t-3.5-14.5v-21q0-33-1.5-66.5t-1.5-67.5q0-60-26-131.5T1529 814q-13 10-13 18 0 4 19 50.5t19 122.5l-1 15q-4 29-10 51t-16 22q-5 0-6-8t-1-13q-8-79-35.5-146t-45-87.5T1422 811q0-10 10-10 46-18 69-54.5t23-84.5q0-62-69-113t-137-51q-43 0-77.5 15.5t-48 42T1179 594l1 11q0 9-5.5 12t-14.5 3q-10 0-21.5-3t-16.5-5l-31-6q-16-3-32-3-20 0-38.5 4T983 617q9 4 20 7l22 8q29 11 49.5 25t20.5 27q0 12-14 12-12 0-60-16.5T933 652q0 3-9 12l-12 12q34 10 71.5 28t37.5 33q0 9-16 9-11 0-22-3l-17-4q-42-13-87-22-15 18-36 18-9 0-17-4.5t-8-15.5q0-7 1-11l-30-3q-29-3-55-10.5T708 672q0-8 12-13t24-6h15q22 0 39 2l35 4 5-13q2-6 6-13-18-3-36-3l-17-1q-27 0-46-4t-19-14q0-15 25-20t81-5h18q8 0 16 2 2-4 2-6 0-13-11.5-19t-22.5-8l-14-2q-16-2-27-7.5T782 530q0-13 4.5-26t4.5-25q0-52-51-88.5T629 354q-64 0-122 43.5T449 503q0 20 11.5 39.5T472 575q0 11-10.5 18T406 643.5t-54 75-9 58.5q0 15 3.5 29t8.5 28l8 29q4 15 4 30 0 21-17 21-29 0-49-31t-22-70l-11 21q-6 10-11 21v33l-1 31q0 73 28 132t43.5 76.5T343 1160q0 13-6.5 18.5T323 1184q-23 0-66-41t-56-133l-10 60q14 99 48.5 143.5t51 55T307 1291q0 9-5.5 12.5T288 1307q-30 0-57-20t-33-24q17 80 64.5 150.5T369 1534l9 9q31 26 81.5 46.5T510 1636q0 14-15 18t-32 4q-25 0-53.5-7t-51.5-21q-48 69-77.5 90t-92.5 52-63 103q3 83 58.5 144.5T337 2081q87 0 173-61t149-159.5 95-98.5q13 0 57 19.5t140 31.5 104 24 8 31q0 36-34.5 92t-89 112-54.5 116q0 68 76.5 113.5T1103 2349l28 1q77 0 132.5-40t89.5-97.5 69-140 58.5-168 53.5-93.5 122-52 141.5-84 49.5-62q0-11-23.5-43t-35-64.5-11.5-66.5v-16q0-14 11.5-60.5t32.5-46.5q18 0 22.5 17.5t4.5 37.5v44q0 76 63.5 144t162.5 68q75 0 122.5-19t65.5-19q24 0 40.5 50.5t78.5 50.5q41 0 80-31.5t39-82.5q0-20-6-41.5zM1253 1118q-14 0-30-4.5t-16-17.5q0-12 10-19t23-12l14-4q49-18 77-54t44-72 25-36q11 0 18 17.5t7 39.5q0 59-51 108t-113 53zm167-12q9-12 18-19.5t16-7.5 9.5 8 2.5 16q0 35-27.5 85.5T1354 1271t-124 32q-38 0-69-10.5t-31-25.5q0-10 10-16.5t27-9.5l17-2q68-5 126.5-38t101.5-84zm-22 204q7-7 19.5-15t18.5-8 8 7 2 13q0 46-80 109.5t-183 63.5q-44 0-84.5-12.5T1058 1436q0-16 77-16 75 0 136.5-28.5T1390 1317zm-318.5-82.5Q1053 1274 980 1289q0 95-61.5 162T766 1518q-117 0-208-43t-91-126q0-29 7-53.5t7-44.5q0-16-4.5-32t-4.5-36q-38-23-60.5-58t-22.5-79q0-26 9-51t28-25q7 0 9 10t2 21q0 8 1 15 0 35 39 70t81 35q41 0 57-28t21-67q-44-33-64.5-66.5T551 891q0-15 7-21t17-6q29 0 81.5 38t99.5 38q36 0 69-1.5t65-1.5q55 0 55 29 0 18-21 43t-72.5 41-102.5 16q-10 20-10 38 0 49 58.5 77t116.5 28q53 0 90.5-19.5t49.5-45.5 27-26q12 0 18.5 9t6.5 22q0 32-26.5 78.5zM902 1291q-57 0-110.5-25t-82.5-54-51-29q-7 0-17 3l-23 8q-13 5-28.5 8.5T556 1206l4 21q0 11 1 24 0 30-8 56t-8 42q0 40 68.5 65.5T758 1440q61 0 100-40t44-109zM621 769q-8 24-32 40.5T539 826t-44-16.5-18-42.5q0-27 22-53.5t53-30.5zm418 176.5q-26-25.5-26-63.5l1-8 121-51q17 14 27 31.5t10 40.5q0 30-20 53t-53 23q-34 0-60-25.5z" + }, + "children": [] + }] +}; +exports.u1F405 = u1F405; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F406.js b/dist/noto_emoji_regular/u1F406.js new file mode 100644 index 000000000..27ac6548a --- /dev/null +++ b/dist/noto_emoji_regular/u1F406.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F406 = void 0; +var u1F406 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2516 1712q-62 54-135 54-50 0-88.5-24t-59.5-67q-4 4-20 8l-27 8q-29 8-58 10t-54 2q-39 0-77-8.5t-83-36.5q-21 42-74 81.5t-114 69.5l-78 37q-37 18-75 32-23 60-44.5 128t-51.5 132l-6 14q-60 138-146 206t-194 68q-122 0-223.5-68.5T806 2187q0-91 70.5-164.5T975 1894q-51-8-103.5-18T765 1845l-67 92q-63 87-155.5 153.5T337 2157q-123 0-206.5-80.5T47 1873q0-65 32.5-113t94-71.5T298 1576l-65-71q-32-35-56.5-79.5t-39.5-90-22.5-94-7.5-97.5q0-161 73.5-316.5T382 555q-6-14-8.5-30t-2.5-31q0-90 80.5-155.5T629 273q101 0 168 58t73 133q63 5 127.5 18t125.5 33q25-45 75.5-72t119.5-27q97 0 178 61t103 150q93 7 182 36.5t170 29.5q96 0 167.5-36.5t84-92.5 48-83.5T2329 453q56 0 94 42.5t38 108.5q0 88-76.5 180.5T2183 928q51 64 93.5 151.5T2325 1180q94 17 173.5 167t79.5 228q0 83-62 137zm-22-180.5q-6-21.5-15-42.5l-25-58q-31-69-69-117.5t-63-53.5l-19-4q-21-3-31.5-12t-66-131.5T2035 888q85-11 154-50 19-74 25.5-78.5t16.5-4.5q11 0 25.5 7.5T2271 783q26-21 46.5-42.5T2356 689q-4-25-28.5-44t-47.5-19q-17 0-20.5 7.5T2247 650q12 7 23 16.5t11 20.5q0 12-15.5 21t-30.5 9q-9 0-23.5-2.5T2189 705q-12 9-25 16l-27 14q13 10 13 26t-10.5 29-24.5 13q-18 0-41-13t-25-28q-25 5-45.5 7t-48.5 2q-51 0-100.5-8.5T1758 738q-4 23-28 41.5t-50 18.5q-21 0-41.5-14t-20.5-34q0-5 3-9t10-4q13 0 26.5 7.5t20.5 7.5q10 0 16.5-5t6.5-14q0-3-1-5.5t-1-5.5q-25-6-50.5-10.5T1599 707q-6 44-28 79 10 8 15 19t5 20q0 18-14 31t-34 13q-6 0-9-1 6 12 12.5 23t11.5 25q40 17 51.5 33.5T1621 987q0 20-11.5 34.5T1576 1037q-4 33-17 55.5t-28 22.5l-4-1q-3 0-3-2-5-63-21.5-123T1455 874l-8-14q-10-15-17.5-22t-7.5-13q0-3 12-7l16-6q38-18 57-55t19-77q0-74-65-129.5T1318 495q-71 0-105 34t-34 62l1 11q0 5-2 9.5t-9 4.5q-85-31-86-31 0 16-15.5 27.5T1031 624q-14 0-23-7.5t-9-21.5q0-9 4.5-17t9.5-12q-26-6-52-11l-52-8q-4 13-20 21.5t-29 8.5-18.5-6.5T836 555v-7q0-3 2-7h-42q-14 0-14-15 0-12 4.5-25t4.5-25q0-55-52-89.5T625 352q-65 0-120.5 42.5T449 493q0 14 3.5 24.5T461 537l8 16q3 8 3 18 0 15-16.5 24T397 651l-46 51q16 13 16 41 0 16-7.5 28T333 783t-29-16q-10 15-18 29t-16 30q14 2 21.5 18t7.5 33q0 19-11 29.5T264 917q-9 0-14.5-3.5T236 902q-40 91-48 194 21 4 35.5 26.5T238 1165q0 18-11 26.5t-23 8.5q-9 0-16-3 13 137 92.5 240.5T417 1569l43 21q21 11 36 22t15 25-14.5 18.5-31.5 4.5q-26 0-56-7.5t-53-23.5q-62 94-146.5 128T125 1872q0 87 60 147t152 60q90 0 171.5-62T641 1883l41-58q20-28 39-47t36-19q7 0 61.5 19t150.5 35l33 4q29 3 45 14.5t16 33.5q0 35-34 91.5T940 2069t-55 116q0 75 85 119t161 44q68 0 117.5-31t87.5-84.5 78-145 65.5-182 55.5-98 120-51 141-84.5 51-62q0-13-7-18.5t-35-55-28-101.5q0-23 10.5-72.5t32.5-49.5q19 0 23.5 20.5t4.5 52.5q0 74 17 104t39.5 59 69.5 52.5 100 23.5q75 0 119.5-19.5t70.5-19.5q20 0 31 33.5t31 50.5 52 17q46 0 84-32t38-82q0-20-6-41.5zM1847 917q-19-16-19-40 0-5 3-10t9-5q14 0 25 10.5t22 10.5q8 0 14-5t6-17q0-18-20-26t-20-18q0-5 7-10t19-5q29 0 48.5 19.5T1961 863q0 26-23.5 48t-51.5 22q-20 0-39-16zm45 292q-21-14-21-34 0-13 13-13 11 0 23.5 6t17.5 6q8 0 14-5t6-15q0-23-24.5-28t-24.5-16q0-8 11-14t25-6q34 0 50.5 19.5t16.5 39.5q0 28-22.5 51t-47.5 23q-16 0-37-14zm295.5-77q7.5 11 10.5 22l1 8q0 22-21 37t-40 15q-27 0-50.5-20.5T2064 1148q0-17 8.5-32.5t25.5-15.5q7 0 14.5 4t7.5 12-6.5 11.5-6.5 11.5q0 11 9 16.5t21 5.5q9 0 16-4.5t7-12.5l-1-11q0-5 3.5-8.5t7.5-3.5q10 0 17.5 11zm-362 11.5Q1808 1166 1774 1166t-63-23-29-58q0-9 4-16.5t15-7.5q6 0 20.5 23.5t39.5 23.5q14 0 21.5-7t7.5-18q0-15-19.5-27t-19.5-26q0-8 5-11t12-3q28 0 51.5 20t23.5 56q0 29-17.5 51.5zM1677 900q8 0 23 6t26 6 11-12-7.5-17-15.5-8l-16-5q-8-2-8-9 0-8 13-12.5t21-4.5q24 0 43.5 22t19.5 49q0 24-13 35.5t-34 11.5l-23 1q-21 0-38.5-15t-17.5-32q0-13 16-16zm28 469q-19 14-38 14-25 0-49.5-24t-24.5-46q0-11 4.5-22.5t15.5-11.5q15 0 21 23t23 23q8 0 13-6t5-14q0-10-9.5-19.5t-9.5-20.5q0-3 2.5-7t8.5-4q15 0 36 24t21 56q0 21-19 35zm-170-124q-7-2-15-7 2-17 3-33l2-32q8 10 18 10 11 0 17.5-7.5t6.5-17.5q0-7-6-15t-6-16q0-10 11-10 21 0 33.5 19.5t12.5 43.5q0 30-18 48.5t-42 18.5q-10 0-17-2zm-92 468q17 2 24 13.5t7 27.5q0 25-17.5 49t-39.5 24q-21 0-31-15t-10-34q0-28 18-46.5t49-18.5zm-38-190q6-8 12-14t11-6q31 0 31 48 0 23-10 41t-33 18q-14 0-25-8.5t-11-23.5q0-6 1-11l2-11zm-102 115q13 7 18 19t5 26q0 21-20.5 43.5T1260 1749q-19 0-29-15.5t-10-32.5q0-20 8.5-21.5t33.5-18.5 40-23zm302.5-29.5Q1595 1634 1579 1634q-13 0-24.5-13t-11.5-30q0-20 13.5-40.5t32.5-20.5q13 0 20 6.5t7 23.5q0 23-10.5 48.5zm496-237q15.5 13.5 15.5 32.5 0 20-12 28.5t-23 8.5q-17 0-31.5-13t-14.5-32q0-14 9.5-26t23.5-12q17 0 32.5 13.5zM1961 1449q22 0 36 18.5t14 39.5q0 14-7.5 23t-23.5 9q-21 0-35.5-17t-14.5-38q0-13 7-23t24-12zm16.5-78.5q-6.5 11.5-20.5 11.5-21 0-33.5-13.5T1911 1335q0-16 9-28.5t29-12.5q15 0 25 17.5t10 33.5q0 14-6.5 25.5zM1587 1434q0 17-15.5 30.5T1539 1478q-19 0-27-13t-8-28q0-22 12.5-40.5t32.5-18.5q17 0 27.5 17.5t10.5 38.5zm377.5-388.5Q1945 1035 1945 1015q0-4 1.5-11.5t7.5-7.5q11 0 23 5t23 5q6 0 12.5-4.5t6.5-12.5q0-12-25-17t-25-12q0-14 11-19.5t25-5.5q30 0 48 21t18 51q0 23-14 36t-43 13q-30 0-49.5-10.5zm-497 5q11.5 13.5 11.5 27.5 0 21-16.5 36.5T1425 1130q-14 0-24.5-8t-10.5-24q0-21 16.5-41t34.5-20q15 0 26.5 13.5zM1391 902q14 5 20.5 13.5t6.5 19.5q0 20-15.5 37.5T1367 990q-12 0-24-8.5t-12-24.5q0-22 16-39.5t33-17.5h6zM881.5 609.5Q895 596 912 596q14 0 25 11.5t11 21.5q0 14-13 23.5T905 664q-16 0-26.5-7.5T868 637q0-14 13.5-27.5zm452 669Q1317 1267 1317 1252q0-21 22.5-38t43.5-17q16 0 27 8t11 22q0 16-17.5 39.5T1363 1290q-13 0-29.5-11.5zM1509 1254q4 0 8 3-9 51-24 99-11 3-21 3-15 0-25-9t-10-25q0-23 20.5-47t43.5-24h8zM295 1057.5q-10 7.5-23 7.5-17 0-33-12.5t-16-39.5q0-18 8-26t21-8h7q13 0 29.5 18t16.5 39q0 14-10 21.5zm201.5-247Q479 794 479 769q0-30 26-56.5t60-26.5q25 0 42.5 16t17.5 41q0 33-26.5 58.5T539 827q-25 0-42.5-16.5zM1078 818h8q31 0 57.5 25t26.5 60q0 29-19.5 51.5T1100 977q-34 0-58.5-26t-24.5-60q0-25 14-45t38-26zm-10 422q-38 43-88 45 0 95-61.5 162.5T766 1515q-122 0-210.5-44T467 1346q0-29 7-53t7-44q0-15-4.5-32.5T472 1180q-34-16-58-54.5t-24-83.5q0-31 9-53.5t26-22.5q11 0 11 14 0 56 33.5 96.5T555 1117q38 0 59.5-27t21.5-67q-29-21-52-53t-23-68q0-14 6.5-19t14.5-5q12 0 26.5 6.5T632 896l28 18q24 16 47.5 24.5T757 947q29 0 56.5-1.5T870 944q23 0 36.5 6.5T920 971q0 37-53.5 63.5T762 1061q-10 0-16.5 9t-6.5 20l-1 11q0 45 55 75t120 30q51 0 89-18.5t50.5-45.5 33.5-27q12 0 16 10t4 21q0 51-38 94zm-166 48q-5 0-8-1h-9q-52-2-100.5-27t-78-53-49.5-28q-5 0-13 2l-38 13q-12 4-25 7t-25 3q2 11 3.5 21.5t1.5 23.5q0 29-8 55t-8 42q0 40 67 65t142 25q74 0 109.5-44t38.5-104zm57-550.5q7-11.5 20-11.5 10 0 26 13t16 30q0 11-10.5 23.5T982 805q-14 0-22-12.5t-8-28.5q0-15 7-26.5zm-282-26q-9-9.5-9-21.5 0-14 13-25t30-11q12 0 22 7.5t10 24.5q0 14-14 24.5T700 721q-14 0-23-9.5z" + }, + "children": [] + }] +}; +exports.u1F406 = u1F406; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F407.js b/dist/noto_emoji_regular/u1F407.js new file mode 100644 index 000000000..dd428687b --- /dev/null +++ b/dist/noto_emoji_regular/u1F407.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F407 = void 0; +var u1F407 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2104 1850q79 4 130 55t51 127q0 72-44.5 125t-112.5 65q-33 182-202.5 232.5T1549 2505q-46 0-84-20-30 26-71 41t-101 15q-46 0-82.5-9.5T1150 2503q-28 19-61.5 28.5t-69.5 9.5q-85 0-139-48.5T826 2369q0-29 6.5-59t6.5-46q0-42-4-84t-10-81q-161-59-247-165t-86-246q0-97 28-162.5t50-152 63-163 96-123.5l-1-1q-61-93-164.5-202T411 722t-74-122.5T312 458q0-93 76-161.5T574 228q76 0 147 29t132.5 73 113 99 93 118 70 134.5T1171 827l28 147h19l19 2 46-177q33-130 76.5-239.5t101-182.5T1595 260t168-44q108 0 172 68.5t64 184.5q0 99-45 205t-157 294-112 234q0 67 54 183.5t70 211.5q68 30 138 90t120 166q18-3 37-3zm-663.5 172q114.5-43 197-118.5T1720 1693q0-115-67-257.5t-67-234.5q0-36 32.5-108t81.5-155l37-61q61-100 112.5-209.5T1901 468q0-74-34.5-114T1766 314q-121 0-211.5 103.5t-148 305.5-75 277-69.5 75q-28 0-55.5-2.5t-55.5-2.5q-22 0-30.5-9T1083 883.5t-110.5-288-188-194.5T580 326q-67 0-118.5 37.5T410 458q0 116 66 189t149 158.5 151.5 178T845 1108q0 22-32 38t-72.5 72-72.5 172-55.5 169.5T589 1689q0 176 179.5 276t419.5 100q138 0 252.5-43zm537-130q-57.5-119-159.5-177-6 151-100 246t-226 148.5-276 53.5q-57 0-132-6t-155-26l6 66q3 33 3 65 0 18-6.5 49.5T925 2370q0 36 26.5 54.5t69.5 18.5q64 0 89-34t25-158v-9q0-4-1-9 0-16 9.5-21.5t21.5-5.5h22q30 0 38.5 15.5t8.5 57.5q0 49-7.5 75.5t-7.5 34.5q0 23 23 36.5t61 13.5q42 0 79-16t37-69l-1-15q2-76 65-96.5t70.5-66.5 48.5-86.5 82-40.5q10 0 19.5 6t9.5 18q0 10-7 18l-15 15q-27 27-41.5 60t-14.5 69q0 22-11.5 35t-37.5 13h-11q-35 0-60.5 20t-25.5 55q0 25 12 38.5t50 13.5q47 0 145.5-10.5t184.5-34 120-76 34-143.5q0-135-57.5-254zm154.5 227q27-12 41-35.5t14-49.5q0-34-22.5-59t-62.5-27q10 28 20 86t10 85zM830 1689.5q-23-27.5-23-64.5t23-63.5 56-26.5q32 0 54.5 26.5T963 1626q0 36-23.5 63.5T884 1717q-31 0-54-27.5zm577 27.5q-32 0-55-26.5t-23-64.5 22.5-64.5 55.5-26.5q32 0 55 26t23 64-23 64.5-55 27.5zm-382 162l14 13q6 6 17 12.5t27 6.5q27 0 38-12.5t11-45.5l-18-8q-20-7-34.5-20.5T1065 1794q0-6 5-16t13-10 24.5 15.5 46.5 15.5q33 0 52.5-15t31.5-15q15 3 15 22 0 17-21.5 36t-37.5 24q0 33 13.5 44t50.5 11q17 0 35.5-16t31.5-16q9 0 15 5.5t6 11.5q0 17-29 43t-77 26q-35 0-51.5-10.5T1167 1939q-10 0-28.5 13t-57.5 13q-37 0-67.5-20.5T983 1894q0-11 8.5-16t19.5-5q7 0 14 6zm474-1078.5q82-232.5 131.5-284T1728 465q25 0 39 16.5t14 44.5q0 23-6.5 49t-17.5 52l-10 25q-20 45-42.5 90.5T1659 831l-45 83q-35 64-56 111.5t-37.5 73-16.5 27-8 1.5q-14 0-33-8t-32.5-13.5-13.5-26.5q0-46 82-278.5zM928 1065l-14-28Q790 804 671.5 693.5T553 512q0-24 16-42t49-18q42 0 133.5 80T929 785l40 84q12 28 34.5 91t22.5 83q0 19-21 33t-50 14q-11 0-17-7.5t-10-17.5z" + }, + "children": [] + }] +}; +exports.u1F407 = u1F407; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F408.js b/dist/noto_emoji_regular/u1F408.js new file mode 100644 index 000000000..e45b8b45a --- /dev/null +++ b/dist/noto_emoji_regular/u1F408.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F408 = void 0; +var u1F408 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1931 1972q70 26 114 79.5t44 114.5q0 104-102 184.5t-306 80.5q-26 0-50-1t-60-1q-99 0-119-28t-20-48q0-24 20-39t46-15h32q16 0 33 1l31-1 89 1q137 0 201.5-43t64.5-99q0-25-14-39.5t-34-22.5q-40 70-168 90.5t-250 20.5q-38 0-57-10t-19-44q0-31 23-48.5t52-17.5l23 1q23 0 32.5-13t9.5-32q0-29 14-61.5t27-45.5l18-16q8-8 14-15.5t6-15.5q0-13-9.5-18.5t-20.5-5.5q-35 0-73.5 31t-49 77-40.5 58l-27 11q-26 10-45 29t-19 51l1 36q0 31-25.5 50t-58.5 19q-51 0-83.5-16t-32.5-57q0-12 5.5-37.5t5.5-64.5 3-73q0-35-8-50.5t-29-15.5h-18q-16 0-20.5 6.5t-4.5 20.5v10q0 5 1 9 0 22-1 44t-1 44q0 20 2 40.5t2 40.5q0 40-19.5 59.5T980 2207q-62 0-88.5-30t-26.5-80q0-35 4-62.5t4-53.5q0-46-2-90t-2-89v-21q0-11-1-25l-2-38q-2-24-3-63l-4-102q-94-36-166-92t-104-121l-85 24q-6 2-7 2-11 0-18-7.5t-7-18.5q0-8 5-15.5t13-9.5l78-22q-5-14-8.5-28t-5.5-28l-94 13q-12 0-20-6.5t-8-19.5q0-9 5.5-16t16.5-9l94-12-1-15q0-7-1-15v-10q0-5 1-10l-91-18q-10-2-16-9t-6-16q0-11 7.5-18.5t17.5-7.5l92 18 2-17q5-45 31.5-112.5T662 827q0-219 34.5-356.5T797 333q43 0 109.5 60T1033 534l63 88q10 0 30-1 112 0 213 27 90-90 186.5-156t150.5-66q41 0 63 47.5t22 140.5q0 57-8.5 130.5T1733 875l-12 63q26 55 41 113.5t15 115.5v20l75-8h3q11 0 18 7.5t7 18.5q0 22-22 24l-86 10q0 25-8 51l89 20q9 2 14.5 9t5.5 16q0 15-10 20t-21 5l-92-20q-9 26-23 52l80 30q16 8 16 24 0 13-7.5 19.5t-17.5 6.5q-3 0-9-2l-90-33q-18 26-42 48l89 57q42 26 77.5 70.5t60.5 104 36 119 11 119.5v17zm-631.5-570.5q-8.5-6.5-16.5-6.5-6 0-22.5 9t-34.5 9q-23 0-40.5-15.5T1168 1353v-7q38-3 54.5-22.5t16.5-42.5-25.5-40-69.5-17q-45 0-63.5 15t-18.5 38q0 20 14.5 37.5t41.5 25.5l-2 15q-8 20-24 31.5t-36 11.5q-22 0-35-15t-28-15q-13 0-18.5 6.5T969 1389q0 27 28.5 46t67.5 19q22 0 39-5t32-20q11 21 35.5 30.5t52.5 9.5q39 0 61.5-17.5t22.5-35.5q0-8-8.5-14.5zM937 679q38-19 38-42 0-16-53.5-76.5T836 500q-33 0-48.5 61.5T772 672q0 38 9 53.5t29 15.5q6 0 14-3l62-32q16-8 30-16zm654 138q9 6 20 6 22 0 33.5-33t11.5-91-8-88.5-35-30.5q-28 0-91.5 47t-63.5 70q0 14 22.5 36.5T1540 781zm-151 459q36 0 62.5-30.5t26.5-70.5q0-37-24.5-65t-59.5-28-62 29-27 70q0 36 21.5 63t54.5 31zm-567-60q37 0 62.5-29.5T961 1116q0-37-25-65t-59-28-61.5 28.5T788 1120q0 37 22 64t55 31z" + }, + "children": [] + }] +}; +exports.u1F408 = u1F408; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F409.js b/dist/noto_emoji_regular/u1F409.js new file mode 100644 index 000000000..380a69ef1 --- /dev/null +++ b/dist/noto_emoji_regular/u1F409.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F409 = void 0; +var u1F409 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2520 1581q-43 21-64 61t-28.5 124-49.5 127.5-99.5 66.5-118.5 23q-95 0-164-54.5t-69-161.5q0-54 16-108t38-99l24-48q6-14 10.5-29t4.5-28q0-14-8-23.5t-29-9.5q-59 0-103 82.5t-72 143.5-62 119q7 15 11 29t4 28q0 13-2.5 26.5t-2.5 26.5q0 17 8 34t8 37q0 2-1 5.5t-1 7.5q0 6 7.5 8.5t14.5 2.5q5 0 9-5.5t10-5.5q7 0 10 5.5t3 12.5q0 19-10 32.5t-42 17.5q-4 17-16 26.5t-29 9.5q-22 0-34.5 12.5T1667 2090q-28 0-45.5-28t-17.5-66q0-30 22-65t22-59q0-29-17.5-53.5T1591 1776q-8 0-10 6.5t-2 13.5q0 16 8.5 32t8.5 33q0 24-21.5 64t-21.5 76q0 11 2 25t8 25l-10 12q-47 56-141.5 132T1220 2309t-190 38-176.5-33.5T708 2226t-95-109.5-33-149.5q0-54 12.5-104t31.5-99q-5 0-9 1h-10q-20 0-39.5-3t-39.5-3q-15 0-15 5 0 2 1 4t1 4q0 17-9 26t-23 9q-38 0-50-4.5t-12-17.5v-6h5l4 1 8-1q7 0 7-3 0-4-6.5-14t-17.5-10q-8 0-13-1h-8q-7 0-14 1l-14 2q-6 0-6 4 0 5 1.5 9.5t1.5 9.5q0 8-7 11t-14 3q-17 0-29-16.5t-12-33.5q0-33 44-39t44-53q0-9-2-19t-7-10h-5q-11 0-15 5.5t-11 5.5q-11 0-11-11 0-21 14-42.5t38-21.5q57 0 70 53t93 53q53 0 100.5-36.5t84-86.5 75-97.5T855 1342q0-12-3-23l-4-19q-2-9-4-14-32 31-79.5 83.5t-88 73.5-102.5 21q-79 0-113-20.5t-34-35.5q0-10 17.5-12.5t43.5-2.5q14 0 28 2.5t28 2.5q32 0 56-10.5t24-25.5q0-3-6-23t-6-40q0-19 13-19 7 0 14.5 5t14.5 10l13 11q6 5 12 5 16 0 31.5-42.5t87-62.5 71.5-60q0-41-45.5-69t-93.5-28q-50 0-117 26.5t-109.5 65T437 1196l1 52q0 7-1.5 18.5T428 1278q-15 0-29-16.5t-23-33.5q-26 10-49.5 15.5T275 1249q-46 0-85-13-2 15-7 26.5t-13 11.5q-9 0-16.5-15.5T143 1228l-3-15q-18-13-35-31.5T88 1141q0-12 3-20l12-32q3-8 3-22 0-28 11-50.5t27.5-36 56-25 76-40 47-39T334 844q0-7-1-13.5t-1-14.5q0-35 29.5-73t31.5-64 61-31 59-66q0-15-10-57.5T492 478l-8-22q-4-12-7.5-24.5T473 409q0-13 7.5-18t16.5-5q21 0 32.5 49t36.5 49q33 0 65.5-97t53.5-97q13 0 17.5 11t4.5 25q0 17-17.5 65.5T660 470l-41 99 17-8q13-6 24-6 5 0 9 4.5t4 9.5q0 8-11 20l-17 18q5 0 10-3 17-2 34.5-3.5T724 599t33 1l33 4q0-2 22-37t24-64v-11q0-2 4.5-70.5T870 353q17 0 21.5 11.5T896 393l-1 38q0 19 6 32.5t26 13.5q26 0 51.5-22.5T1027 405l43-50q19-22 33-22 11 0 15 8.5t4 16.5q0 19-9 31l-21 26q-21 26-44 50l-48 50q-24 25-47 51t-43 55q32 8 67 10t64 2q58 0 99.5-15.5T1188 602q9 0 9 14 0 34-19.5 55.5T1133 707q0 14 17.5 16t37.5 2q19 0 35-8t33-8q6 0 11 2t5 7q0 26-27 47t-27 27q0 9 19.5 15.5t37.5 6.5q26 0 36-4.5t18-4.5 10 2.5 2 7.5q0 22-23.5 40.5t-46 21.5-22.5 13 24 18 34 8q5 0 12 1l13-1q15 0 24 4t9 13q0 11-14.5 21.5T1322 970l-18 7q31 57 45 116t14 122q0 155-132 321.5T1099 1756q0 22 17.5 36.5t37.5 14.5q61 0 167.5-122t189.5-300.5 205.5-285T1984 993q15 0 31 1l31 4q103 17 184.5 101.5T2312 1286q0 86-20 150.5t-59 119.5l-38 54q-18 26-29.5 52t-11.5 58q0 38 17 53.5t37 15.5q28 0 60-20.5t43-50.5l8-28q24-86 79-131.5t133-45.5q12 0 22 4t10 18q0 25-43 46zM323 1468q-7 16-14.5 24.5T293 1501q-11 0-14-14.5t-3-25.5q10-118 95.5-135.5t116-77.5 82-103 127.5-43q21 0 37.5 9.5T751 1137q0 26-44.5 36t-90.5 86-85 89-106 30.5-95 75.5zm723 352h-4q-8 5-39 22t-31 26q0 5 12.5 16.5T997 1916q0 23-17 38.5t-41 15.5q-8 0-17-2.5t-9-9.5q0-6 8-10t8-9q0-8-15-11t-27-3h-20q-26 0-39.5 3t-13.5 11q0 4 5 5t5 9q0 7-9.5 10.5T798 1967q-12 0-30.5-14t-18.5-31q0-24 42.5-31.5T834 1866q0-11-15.5-26.5T793 1824q-8 0-12 6t-12 6q-12 0-12-11 0-27 20-43t38-16 35 9.5 33 9.5q28 0 57.5-29.5T978 1691q0-14-5-23.5t-18-9.5q-8 0-12 5.5t-5 13.5l-3 16q-3 15-23 29.5t-57 14.5q-14 0-26.5-1t-24.5-1q-37 0-65 31t-28 67q0 14 12 20.5t17 6.5q4 0 4 2 0 9-18 19.5t-18 39.5q0 32 28.5 62t64.5 30q18 0 34-10.5t37-10.5q8 0 15 3l13 6q8 5 16.5 7.5t19.5 2.5q39 0 71.5-23t32.5-56q0-12-4.5-22.5t-4.5-21.5q0-16 15.5-31.5t15.5-25.5q0-11-16-11zM676 850l-114 66q9 21 28.5 33.5T632 962q19 0 41-17t22-46q0-25-19-49zm-334 250q17 0 25.5-10.5t8.5-21.5q0-12-10-24.5t-27-12.5q-20 0-37.5 13t-17.5 35q0 14 12 18t27 4zm77.5-175.5Q429 918 437 907l-56-80q-10 9-16 23.5t-6 28.5q0 26 14.5 39t25.5 13 20.5-6.5zm-218.5 113q-12-16.5-27-16.5-13 0-22 12t-9 23q0 17 14 27.5t31 10.5q14 0 19.5-6.5t5.5-16.5q0-17-12-33.5z" + }, + "children": [] + }] +}; +exports.u1F409 = u1F409; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F40A.js b/dist/noto_emoji_regular/u1F40A.js new file mode 100644 index 000000000..fdd137aea --- /dev/null +++ b/dist/noto_emoji_regular/u1F40A.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F40A = void 0; +var u1F40A = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2469 1304q0 12-6 16l-14 9q-13 9-13 17 0 12-7.5 20.5t-30.5 8.5q-14 0-26.5-2t-26.5-2q-20 0-33.5 7t-31.5 7q-13 0-19.5-6.5t-6.5-16.5q0-6 1-12t1-11q0-24-9-48.5t-24-24.5q-11 0-12 5l-4 12q-12 108-88 179t-116 71q-15 0-35-18.5t-41.5-27.5-47.5-9q-11 0-24.5 3t-13.5 14q0 4 3.5 6t8.5 3l18 2q40 5 70 32t48 80.5 27 96.5 24 56l15 14q7 7 7 18 0 16-13.5 22t-26.5 35l-6 13q-4 7-14.5 12t-28.5 5l-25-1q-33 0-66 12t-55 12q-34 0-34-31 0-10 2-20t2-20q0-48-15-74.5t-40-26.5q-18 0-52.5 13t-44.5 20-45.5 64-120 108.5T1233 2038t-286 99l-89 44q-70 35-141.5 56.5T576 2259q-90 0-159.5-35.5T347 2127q0-48 61-84t113.5-80 86.5-95q-40 12-80 20t-81 8q-86 0-184-51t-98-107l-1-17q0-63 36.5-100t119.5-37h25q29 0 57.5-18.5T533 1505t170.5-111 80-100 25.5-84.5 72-86.5q32-18 69-18 36 0 93 20t107 20q87 0 118-51t67-51q18 0 36 1.5t38 1.5q33 0 53.5-37.5T1521 971q11 0 23 1t24 1q31 0 54-30.5t44-30.5q14 0 28.5 2t28.5 2q26 0 38.5-8t19.5-18l12-18q5-8 18-8l54 1q8 0 12-3.5t4-14.5q0-55-112.5-87.5T1493 727q-43 0-85.5 1.5T1323 730q-11 0-26-4.5t-15-16.5q0-19 43.5-34.5T1438 646l66-12q66-12 134.5-21t137.5-9q165 0 302 60.5T2286 886l8 21q8 22 18 57.5t10 51.5q0 23-17.5 24t-17.5 12q0 12 42 19.5t66 48.5 32.5 95 21.5 61.5 20 27.5zM303 1733q7-9 7-20 0-12-8.5-21t-18.5-9q-14 0-21.5 10t-7.5 21q0 15 9.5 21.5t20.5 6.5q12 0 19-9zm123.5 51q9.5-9 9.5-21 0-11-8-22t-25-11q-13 0-21 10t-8 22q0 15 9.5 23t20.5 8q13 0 22.5-9zm879.5-139.5q-18-24.5-60-24.5-26 0-54 8.5t-54 22.5q0 28-7 61.5t-22 33.5q-10 0-27.5-16.5T1051 1695q-74 35-148.5 64.5T751 1817l-2 27q-2 25-8.5 41t-18.5 16q-10 0-28-18t-26-30l-11 21q-47 84-131.5 145.5T422 2092t-19 26q0 25 43.5 42t92.5 17q77 0 163.5-34T936 2011v-14q0-9-1-19 0-21 5-37.5t18-16.5 26.5 12.5 25.5 26.5l105-62q66-38 137.5-82t71.5-119q0-31-18-55.5zm12-344q-21-24.5-53-24.5-26 0-44 18.5t-18 49.5 21 56 53 25q27 0 44.5-20.5t17.5-48.5q0-31-21-55.5z" + }, + "children": [] + }] +}; +exports.u1F40A = u1F40A; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F40B.js b/dist/noto_emoji_regular/u1F40B.js new file mode 100644 index 000000000..e3eca7dfa --- /dev/null +++ b/dist/noto_emoji_regular/u1F40B.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F40B = void 0; +var u1F40B = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2370 1917l48 11q74 17 116.5 36.5t42.5 41.5q0 32-93.5 77.5T2242 2129q-76 0-144-20t-126-63q-158 92-357 144t-397 52q-208 0-402.5-56.5T476 2030q-49 59-119.5 90.5T210 2152q-59 0-121.5-21T26 2078q0-21 41.5-51t106.5-64l69-37q34-18 67-39-88-94-145.5-216.5T94 1415q57-41 139-66.5t167-25.5q124 0 290.5 76.5t259.5 101 206 24.5q29 0 58.5-8t55.5-22l18-11q17-11 26.5-21.5t9.5-19.5q0-6-3.5-9.5t-7.5-3.5q-6 0-12 3l-11 7q-22 13-45 18.5t-46 5.5q-147 0-357-160.5T419 1143q-110 0-195.5 37T90 1286q11-196 127-355.5T526 683t410-88q184 0 341 63.5t402 265 351 201.5q77 0 123.5-60t46.5-140q0-58-16.5-96t-49.5-38q-18 0-37 6l-34 12q-20 6-38 10.5t-40 4.5q-78 0-140.5-48.5T1782 689q0-14 8.5-18.5t19.5-4.5q8 0 15.5 1t13.5 1q18 0 39-12l44-26q24-14 52-26t62-12q51 0 90.5 22.5T2174 637q6 0 8.5-7.5t3.5-19.5l1-24q0-36 29-73t80-47l39-7q61-10 85.5-44t35.5-34q9 0 28.5 39t19.5 103q0 45-28.5 84.5t-96.5 66-68 62.5q0 30 58 85.5t93 170 35 235.5q0 184-76.5 343.5T2211 1862q37 17 77.5 31.5t81.5 23.5zm-1080.5-793q-30.5-30-67.5-30t-59 25-22 62q0 40 28.5 72.5t66.5 32.5q33 0 58.5-26.5t25.5-59.5q0-46-30.5-76z" + }, + "children": [] + }] +}; +exports.u1F40B = u1F40B; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F40C.js b/dist/noto_emoji_regular/u1F40C.js new file mode 100644 index 000000000..e067d4862 --- /dev/null +++ b/dist/noto_emoji_regular/u1F40C.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F40C = void 0; +var u1F40C = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2208 1538.5q-17 87.5-49 171.5t-76.5 155-103 134-99.5 90-54.5 45.5-68 61.5-159 94-185.5 77q-54 18-109.5 28.5T1193 2406q-318 0-544.5-263.5T422 1571q0-117 42.5-215T585 1201q-2-12-5-26.5t-6-27.5l-11-36q-23-61-106-176.5T374 720q0-90 59-156t147-66q74 0 127.5 42.5T782 659q32-64 89.5-101.5T1006 520q61 0 98 25.5t59 68.5q83-52 168.5-76t171.5-24q176 0 346 94t273 293 103 444q0 106-17 193.5zm-1315.5-667Q918 905 952 905q45 0 77.5-40.5T1062 768q0-71-46.5-105T918 673t-51 115q0 50 25.5 83.5zM724 1121q1 14 1 28 18-2 36.5-3t38.5-1h25l6-38q2-19 2-39 0-47-27.5-102.5T770 885l-15 39q-16 40-24 76.5t-8 92.5q0 14 1 28zm-78-270.5q24-31.5 24-76.5 0-56-29.5-94T574 642q-36 0-59.5 31.5T491 752q0 48 27.5 89t70.5 41q33 0 57-31.5zM931.5 1429q-11.5-14-35.5-14-25 0-64 16.5t-65 16.5q-39 0-74-16.5t-53-16.5q-21 0-30.5 14t-9.5 28q0 58 51.5 94.5T765 1588q70 0 124-43t54-81q0-21-11.5-35zm926.5 556q-99 0-193.5-81T1516 1678.5t-54-318.5q0-149 46-260t113-166 129-55q131 0 202.5 129t71.5 304q0 127-50 230t-120 103q-74 0-118-73t-44-169q0-33 5.5-64.5t16.5-57.5l7-16q8-16 21-31t25-15q17 0 17 19 0 7-1 12l-3 10q-8 28-11.5 59t-3.5 60q0 76 19 124t59 48q45 0 69.5-68t24.5-191q0-130-50.5-228T1750 966q-67 0-133.5 113.5T1550 1359q0 222 94 381.5t215 159.5q67 0 129-63.5t107-202 45-289.5q0-221-91.5-399.5t-240.5-263-304-84.5q-83 0-166 26.5T1191 699q2 14 3 28.5t1 28.5q0 59-19 108.5T1078 979t-88.5 100.5T954 1168q96 28 165.5 112t76 284.5 45 298 129 152.5 211.5 55q81 0 146-19.5t131-65.5z" + }, + "children": [] + }] +}; +exports.u1F40C = u1F40C; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F40D.js b/dist/noto_emoji_regular/u1F40D.js new file mode 100644 index 000000000..4c9472ead --- /dev/null +++ b/dist/noto_emoji_regular/u1F40D.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F40D = void 0; +var u1F40D = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2261.5 2147q-89.5 139-231.5 139-70 0-137-38.5t-99.5-103T1761 2008q0-56-5-80.5t-26-24.5q-37 0-72 63.5T1503.5 2144t-261 179-293.5 65q-206 0-356-102.5T443 2012q0-154 134.5-337t247-326T937 1149q0-32-28-54.5t-77-35.5l-58-16q-29-7-54.5-14.5T678 1010q-15 20-32 38t-34 35q-35 35-105.5 116T343 1286q-20 0-51.5-7t-31.5-21q0-16 17-21t37-5q41 0 84-27.5t43-58.5q0-23-48.5-24.5t-96.5-21-48-47.5q0-21 19-21 16 0 49 14t79 14q32-2 66-10.5t63-28.5 41.5-36 33.5-38q-21-25-34.5-52T551 833q0-94 61-196.5t190-169 282-66.5q209 0 350.5 138T1576 879q0 143-66 295.5T1334.5 1466 1125 1697t-100 143q0 28 13 39.5t27 11.5q37 0 104-56t180-192.5 219-214.5 203-78q99 0 181 77.5t112.5 190T2095 1821t23 91 68.5-66.5 63-110 52.5-43.5q23 0 36 56t13 98q0 162-89.5 301zM1206 617q-31 0-52 23.5t-21 55.5q0 35 21.5 58t52.5 23 52.5-25 21.5-56q0-37-23-58t-52-21z" + }, + "children": [] + }] +}; +exports.u1F40D = u1F40D; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F40E.js b/dist/noto_emoji_regular/u1F40E.js new file mode 100644 index 000000000..4dad522ba --- /dev/null +++ b/dist/noto_emoji_regular/u1F40E.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F40E = void 0; +var u1F40E = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2371 1381.5q-70 62.5-176 62.5-45 0-91-13t-85-37q4 9 6 21l20 100q37 198 80 286.5t119.5 221T2321 2210q0 47-34.5 76.5T2207 2316q-62 0-109.5-63T1979 2072.5 1859 1914t-107-41q-56 0-151.5 41.5T1470 2007t-47.5 143.5-30 156.5-29.5 128l-11 58q-11 55-41 86.5t-85 31.5q-62 0-98-36t-36-94q0-52 30-215.5t30-199.5q0-55-32-84.5t-118-56.5l-122 222-24 42-19 32q5-8-55.5 100T636 2429q-54 0-96.5-34.5T497 2316q0-35 17.5-67t34.5-59l78-126q70-114 115.5-230t45.5-216q0-77-29.5-163T680 1296q-18 14-90 75.5T427 1433q-112 0-190.5-64.5T158 1210q0-69 37.5-140T278 932t70.5-144.5 67-140.5T519 536q-7-7-25.5-57.5T475 410q0-36 29.5-74t62.5-38q40 0 70 78t34.5 92 93.5 42.5T899 539l32-26q40-33 90-60t90-27q41 0 57 19t16 44q0 24-12.5 54t-32 47-80.5 40q8 13 39 32t66 32.5 35 31.5q0 19-28 23t-28 14q0 26 60 31t60 36q0 8-8 13.5t-17 8.5l-17 7q-8 4-8 8 0 10 26 21.5t53 18.5l18 6q2 0 23.5 6t21.5 21q0 16-29 27t-29 20q0 7 16.5 12.5t37.5 8.5l40 7q25 4 33.5 9.5t8.5 14.5q0 26-39 44t-79 20q32 22 65.5 30t67.5 8q45 0 92-6.5t97-6.5q48 0 95.5 8t91.5 30q20-48 50.5-66.5t68.5-18.5q77 0 199 63t203 63l42-1q23 0 38.5 12.5t15.5 38.5q0 62-70 124.5zM804.5 952q17.5-24 17.5-53 0-34-23.5-61.5T736 810q-29 0-49.5 25T666 895q0 34 24 57.5t59 23.5q38 0 55.5-24z" + }, + "children": [] + }] +}; +exports.u1F40E = u1F40E; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F40F.js b/dist/noto_emoji_regular/u1F40F.js new file mode 100644 index 000000000..11a59d384 --- /dev/null +++ b/dist/noto_emoji_regular/u1F40F.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F40F = void 0; +var u1F40F = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2465.5 1536q-25.5 47-69.5 70 3 12 8 28.5t5 31.5q0 64-21 113.5t-62 75.5q11 33 44 110t43 133l1 12q0 32-31 54t-68 22q-40 0-81.5-30T2126 2031q-31 14-64.5 20t-66.5 6q-34 0-61-6 0 20-3 41l-4 41q-4 35-36.5 61t-72.5 26q-29 0-52.5-17t-45.5-74q-62 17-131 17-15 0-23-1l1 152q0 97-39 129.5t-81 32.5q-31 0-55.5-14.5t-47-42.5-28.5-50l-11-55-14-85q-29 9-59.5 13t-61.5 4q-129 0-217.5-54.5T812 2111l-56 83q-28 41-70.5 71t-93.5 30q-38 0-69-23.5t-31-62.5q0-13 3.5-28t9.5-30l20-51q17-39 31.5-78.5T588 1940q-3-8-5.5-17.5T579 1902v-6q0-4-1-10v-9l-2-5q-69-38-105.5-101T434 1635q0-62 27-116l-5-8q-22-22-33-47t-15-51q-17 5-35.5 7.5T337 1423q-95 0-161-82.5T110 1120q0-191 143.5-344T594 623q19 0 37.5 2t37.5 5q7-6 10.5-15.5T685 594l4-22q12-67 84.5-123T927 393q32 0 58 9t55 23q44-35 94.5-52t105.5-17q68 0 122.5 24t89.5 68q32-17 68.5-28t83.5-11q94 0 169 36t93 68.5 25 41.5l9-1 17-4q9-2 20-2 110 0 210.5 86T2248 822q0 22-4 48t-13 59q77 27 121 90.5t44 134.5q0 26-7 48.5t-15 39.5q41 11 79 64.5t38 125.5q0 57-25.5 104zM534 986q-22-41-70-41-42 0-79.5 36t-37.5 80q0 19 20.5 26.5T388 1109q0 13-15 23.5t-31 10.5q-21 0-32-21t-11-47q0-61 52-126t96-65q12-35 37-74t60-63l11-7h-1q15-8 25.5-16.5T590 710t-5-6.5-12-1.5h-13l-11 2q-151 11-258 142.5T184 1136q0 87 46.5 143t124.5 56q90 0 145.5-83.5T556 1081q0-54-22-95zm1852 378q-16-33-64.5-47.5T2273 1260q0-14 6-25l12-25q16-33 16-56 0-38-21-74.5t-71-60.5l-12-5q-34-14-50-33.5t-16-38.5q0-9 2-16t4-13l3-7q6-25 10-44.5t4-34.5q0-67-73.5-128.5T1937 637q-11 0-25 4t-30 4q-42 0-69-51t-88-74-119-23q-30 0-56.5 6.5T1502 521l-43 25q-11 6-22 6-30 0-45-33t-58-54-94-21q-64 0-110.5 29t-55 39-27.5 10q-16 0-50.5-20T928 482q-53 0-103.5 38.5T774 605q0 9-3 20 10 0 31.5 13t21.5 28-11.5 20.5T786 693l-29 1q-16 0-69.5 31.5T598 802t-36 82q0 9 32 56t32 141q0 108-42.5 176T481 1375l-1 8q0 29 37 66t37 66q0 20-15.5 49t-15.5 72q0 46 21 86t62 64q2-9 12-22.5t25-13.5q12 0 15 16.5t3 30.5q0 23 2 36t2 32q0 65 50.5 114t120.5 49l15-1q0-8-3.5-18.5T844 1990q0-16 9-16 15 0 55.5 52.5t112 83.5 149.5 31q56 0 103.5-16.5t81.5-45.5l8-8q36-41 59.5-71t41.5-30q10 0 13 9.5t3 20.5q0 8-2.5 18.5t-5.5 20.5l15 4 12 4q26 9 53.5 10.5t55.5 1.5q60 0 114.5-16.5t94.5-49.5l5-5q7-9 28.5-31t31.5-41l6-9q7-10 16.5-18.5t18.5-8.5q8 0 11.5 5t3.5 13q0 18-7 32l-15 31 31 11q17 6 34 6 59 0 103-29t65.5-97.5 38.5-68.5q13 0 15 14t7 28q46-7 78-56.5t32-99.5q0-14-4-23.5t-18-26.5l-5-8q-6-10-6-23 0-19 12.5-32t31.5-20l25-9q21-11 33.5-37t12.5-59q0-34-16-67zm-398 244.5Q1882 1717 1706 1717q-115 0-195.5-43.5T1387 1561q-58 76-154 116t-233 40q-156 0-281-104t-125-259q0-27 5-52t12-50l14-49q8-29 21.5-94.5T695 977l14-24q13-23 26-38t25-15q7 0 12 5.5t10 12.5l10 16q8 13 22 18.5t33 5.5q50 0 77-26.5t43-26.5q11 0 17.5 8t11.5 18l11 22q9 20 30.5 29.5t48.5 9.5q45 0 68-22t39-22q19 0 22.5 38.5t31 60 62.5 21.5q51 0 76-21.5t42-21.5q12 0 21.5 11.5t11.5 27.5q26-101 82.5-144t128.5-43q93 0 192 58t165 165 66 222q0 178-106 286.5zM755 1269h8q31 0 55.5-26.5T843 1174q0-32-18.5-55.5T775 1095t-55 28-24 66 21.5 59 37.5 21zm279 177q-18 0-43 13t-55 13q-42 0-64-32.5t-42-32.5q-12 0-16.5 6.5T809 1430q0 31 34 57t34 42q0 14-3 26.5t-3 26.5q0 22 12.5 31t29.5 9q14 0 14-12 0-8-1-18.5t-1-29.5q0-23 3.5-29.5t14.5-6.5q36 0 73.5-14.5t37.5-42.5q0-23-20-23zm210-255.5q-20-26.5-51-26.5t-54.5 27.5-23.5 67.5q0 35 20 60.5t52 25.5 54.5-28 22.5-65q0-35-20-61.5zm667-114.5q-108-119-236-119-70 0-109.5 46t-39.5 102q0 10 1 15 34-13 66-13 81 0 148 66t67 146q0 53-33.5 89t-88.5 36q-25 0-42.5-13t-17.5-36q0-12 6.5-22t18.5-10 19.5 6 18.5 6q23 0 33-19.5t10-42.5q0-52-42.5-94.5T1592 1176q-83 0-128 62.5t-45 135.5q0 112 76.5 185t205.5 73q138 0 228-80.5t90-228.5q0-128-108-247z" + }, + "children": [] + }] +}; +exports.u1F40F = u1F40F; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F410.js b/dist/noto_emoji_regular/u1F410.js new file mode 100644 index 000000000..fea4b93e3 --- /dev/null +++ b/dist/noto_emoji_regular/u1F410.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F410 = void 0; +var u1F410 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2281.5 1422q-48.5 55-104.5 61 8 47 11.5 99.5t4.5 105.5l2 107q0 52 2 82.5t2 40.5q0 109-47.5 153.5T2018 2116q-94 0-125-53-19 12-48.5 18.5t-55.5 6.5q-53 0-86.5-18.5T1654 2017q0 24-1 48.5t-1 49.5q0 29 2 62t2 66q0 72-46.5 116.5T1478 2404q-66 0-114.5-33t-48.5-101q0-29 1-58t1-59q0-80-9-138.5t-16-70.5v23q0 29 1.5 64.5t1.5 73.5v60q0 68-26 110.5t-78 52.5l-3 1-40 6q-23 4-48 4-76 0-116.5-45T943 2165v-99q0-73-5.5-147T912 1775l-52 44q-39 33-110.5 59T617 1904q-52 0-86-28.5t-34-76.5q0-20 3-43.5t3-40.5q0-76-33.5-97.5t-80.5-79-76.5-137T283 1231q0-111 49-210.5T471 854q-16-19-25.5-41t-9.5-47q0-57 45-98t118-51.5T701 598l58-18q-6-45-22-95t-45-88l-10-14q-7-10-15.5-25.5T658 332q0-11 9-17t32-6q83 0 154.5 67.5T955 533l13-2q22-2 43.5-3t42.5-1q47 0 92 6 48-106 127-166.5t171-60.5q31 0 55.5 9t24.5 24q0 24-58.5 68T1355 576q106 34 200.5 78t104.5 47l16 6q58 21 94.5 55.5T1807 855q0 53-32 98t-89 70q122 29 216.5 72.5T2056 1207q20 2 44.5 5.5t50.5 3.5q14 0 26-3l23-7q11-3 23-6t27-3q39 0 59.5 30.5t20.5 73.5q0 66-48.5 121zM2113 1292q14 26 25.5 54.5t20.5 60.5q36-6 64.5-37t28.5-69q0-9-2-16t-4-10q-38 13-55 15.5t-44 2.5h-17q-9 0-17-1zm8 636l-1-27q-3-55-5.5-218t-38-276.5-104.5-173-155.5-91T1555 1073q0 8 1 16v16q0 30-3 58-9 6-18 6-25 0-38-22t-17-52l-3-24q-4-17-4-40t-9-45l-4-12q-3-7-3-12 0-15 23-15 24 0 47.5 8.5t50.5 8.5q62 0 106-29.5t44-78.5q0-44-52-63t-140.5-60.5T1408 677l-68-23q-72-23-146.5-35.5T1056 606q-103 0-200 27.5t-126 38T608 696t-93 71q0 16 9.5 29t23.5 21q19-6 43.5-15t39.5-9q14 0 14 16 0 40-82.5 79T421 1018t-59 213q0 105 46.5 194t110 132 63.5 159q0 21-3 42.5t-3 35.5q0 18 11.5 24.5t31.5 6.5q64 0 139.5-36t108-84 36-79 27.5-35l26-4q63-13 119.5-27t115.5-38l35-14q20-8 35-8 8 0 12.5 4t4.5 16q0 15-6 30t-16 28q-93 47-171 62t-111 24q-2 5-4 12t-6 14q29 68 43.5 154.5T1022 2059v45l-1 44q0 69 17 90.5t78 21.5q53 0 76.5-19t23.5-74v-145q0-14-1.5-27.5t-1.5-27.5q0-75 8-106t35-31q28 0 63.5 23.5t56 93.5 20.5 211q0 26-1 51.5t-1 51.5q0 38 24 51t59 13q45 0 72.5-16t27.5-66q0-33-2-66.5t-2-66.5q0-34 2-68l3-67 5-70q4-71 26-115t73-44q18 0 22.5 8.5t8.5 31.5 4 56q0 20 1 26v21q0 13-1 29 0 35 6.5 62.5t46.5 27.5q60 0 77.5-8t17.5-52q0-23 1.5-46t1.5-46l-1-62q0-7 2-15 39 2 60 39.5t21 111.5q0 20 3 38l7 51q0 8 7.5 11t27.5 6h13q7 0 18 1 53 0 74-27.5t21-81.5zM701 1376.5q-9 7.5-23 7.5-30 0-59-19.5t-34-19.5q-13 0-33 20t-40 20q-8 0-18-7.5t-10-23.5q0-11 8-19t18-16l20-14q11-8 16.5-21.5t5.5-36.5q-37-6-58-28t-21-47q0-34 25.5-52.5T576 1101q51 0 80.5 19.5T686 1171q0 29-20 49t-58 28q0 33 12 44.5t51 26.5 39 37q0 13-9 20.5zm458-462q24 27.5 24 67.5 0 38-23.5 63.5T1101 1071t-58.5-27-23.5-60q0-39 22-68t59-29q35 0 59 27.5z" + }, + "children": [] + }] +}; +exports.u1F410 = u1F410; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F411.js b/dist/noto_emoji_regular/u1F411.js new file mode 100644 index 000000000..11d7acc02 --- /dev/null +++ b/dist/noto_emoji_regular/u1F411.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F411 = void 0; +var u1F411 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2401.5 1555q-26.5 46-69.5 67 6 17 9.5 31.5t3.5 34.5q0 38-14 81t-43 81v19l18 99q12 68 25 119t13 97q0 34-27.5 55.5T2250 2261q-51 0-95-50t-89-169q-31 20-68 31t-76 11l-14-1q-4 0-6-2-20 116-50 148.5t-79 32.5q-70 0-85.5-56t-16.5-60q-31 8-63.5 13t-70.5 5q-20 0-41-2l-42-4q-2 8-2 17v19q0 28 1.5 57t1.5 59q0 101-39.5 133t-79.5 32q-42 0-81-33t-52-82l-21-121q-17 3-36 5t-38 2q-60 0-118.5-15.5T882 2187q-40 94-103 152t-128 58q-38 0-69-23.5t-31-64.5q0-13 3.5-28t9.5-29l20-50q11-29 24-57t21-57q-51-34-81.5-85.5T515 1888q-69-37-105.5-100.5T373 1653q0-30 6.5-60t20.5-57l-5-7q-22-26-37-56t-22-62q-78-30-121.5-104T171 1135q0-121 72.5-230.5T433 757q33-49 82.5-82.5T622 633q0-30 23-83.5t84-96T866 411q31 0 57.5 9t54.5 23q41-33 92.5-51t107.5-18q69 0 123 23.5t88 68.5q33-18 70-28t85-10q101 0 176 39.5T1828 573l9-1 18-4q9-2 19-2 109 0 210 86t101 188q0 42-16 107l5 3q70 35 114 89t44 127q0 28-6.5 51.5T2311 1258q63 34 90 84t27 108q0 59-26.5 105zm-109.5-11q21-10 34.5-34t13.5-62q0-35-17-67t-65-47.5-48-54.5q0-15 5.5-27t10.5-19l3-6q15-33 15-57 0-36-20.5-72t-71.5-62l-12-4q-34-14-50-34t-16-39q0-5 12-47.5t12-65.5q0-68-75-129.5T1874 655q-10 0-23.5 3.5T1819 662q-46 0-72.5-51.5t-88.5-73-115-21.5q-42 0-71.5 11t-64.5 31l-11 7q-4 3-9.5 4t-10.5 1q-31 0-46-33t-58.5-54-93.5-21q-60 0-105 25.5t-57 40-32 14.5q-5 0-10-2l-9-4q-32-17-54.5-26.5T865 500q-51 0-103 38.5T710 643q9 0 31 14.5t22 27.5q0 14-16 20t-30 6q-92 8-157 74.5T495 937q0 29 9 59t32 59q22-12 48-12t52 15l-5-14q-2-5-2-15 0-32 9.5-55t24.5-23q9 0 13.5 7t7.5 16l5 18q5 20 23.5 30.5T763 1033q35 0 73.5-14.5T887 991l14-16q7-7 14.5-12.5T932 957t14.5 8.5T956 985l7 22q7 23 34.5 35.5t57.5 12.5q31 0 67.5-13.5t52.5-27.5 38-14q6 0 13 5.5t7 18.5q0 8-3.5 16.5t-3.5 17.5q0 31 17 43t43 12q64 0 117-31t63-31q16 0 16 19 0 12-4 21h14q11 0 27.5 3.5t32.5 14.5q24-54 78-89t115-35q104 0 177.5 99.5T1996 1307q0 147-104 241.5t-249 94.5q-81 0-157.5-32.5T1367 1521q-67 89-160.5 140T993 1712q-162 0-274.5-80.5T606 1374q-35 29-78 43t-92 14q15 30 36 52.5t21 47.5q0 19-15.5 48.5T462 1654t21 84 61 65q3-10 13.5-23.5T582 1766q7 0 11.5 7.5t6.5 24.5v15q0 23 1.5 37t1.5 33q0 65 50.5 113t121.5 48q9 0 14-1-3-3-5-16t-2-20q0-16 10-17 15 0 57.5 55.5T963 2129t145 28q56 0 103.5-16t81.5-46l7-8q14-14 26-29l25-29q11-12 22-27t29-15q10 0 13 9.5t3 20.5q0 16-8 40 7 0 14 3l13 4q24 8 50.5 9.5t52.5 1.5q63 0 120-16.5t95-48.5l6-5q13-22 29.5-37t36-43.5 35.5-28.5q14 3 14 18 0 18-6.5 33t-15.5 30q13 8 31 13t34 5q53 0 92.5-24t47-42.5 22.5-44.5q0-6 15.5-44.5t28.5-38.5q11 0 16.5 14t5.5 27q47-11 78-59t31-98q0-15-4.5-23.5T2236 1635l-6-7q-6-10-6-22 0-22 17.5-37t42.5-22zM384 883q-57 45-90.5 111.5T260 1139q0 91 50.5 147.5T444 1343q67 0 116.5-45t49.5-113q0-18-9-37t-17-19q-6 0-30 27.5t-62 27.5q-26 0-43-19t-17-45q0-20 11-36-28-35-41.5-88.5T388 896l1-19zm567 767q-9-14-10.5-33t-1.5-40q0-22 24.5-23t62-15.5 37.5-43.5q0-25-22-25-18 0-42 16t-56 16q-40 0-63.5-29.5T836 1443q-11 0-15 6.5t-4 15.5q0 17 10 31.5t29 28.5l19 15 10 7 4 10v8q0 11-1.5 22t-1.5 22q0 21 9 32.5t38 11.5zm-229-358q18 24 49 24 33 0 59-28.5t26-70.5q0-32-18.5-56t-49.5-24q-33 0-58.5 31t-25.5 68q0 32 18 56zm417 51q21 27 54 27 30 0 51.5-25t21.5-62q0-39-22-65.5t-55-26.5q-30 0-50.5 25t-20.5 61q0 39 21 66zm389-86q-2-78-43-78-46 0-71 43t-25 114q0 93 74.5 156t179.5 63q110 0 187-71t77-177q0-87-49-160t-113-73q-45 0-81 31t-40 76q0 23 21.5 50.5t21.5 49.5q0 24-19.5 39t-50.5 15q-67 0-69-78z" + }, + "children": [] + }] +}; +exports.u1F411 = u1F411; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F412.js b/dist/noto_emoji_regular/u1F412.js new file mode 100644 index 000000000..8b49bc032 --- /dev/null +++ b/dist/noto_emoji_regular/u1F412.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F412 = void 0; +var u1F412 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2283 1922q-28 47-73 78.5t-91.5 49.5-102 46.5-97.5 28.5q-44 0-81.5-23.5T1800 2041q0-15 8.5-28t25.5-13q5 0 15.5 1t23.5 1q17 0 30.5-3t13.5-12q0-5-10-17t-26-12l-22 1q-16 0-16-11 0-24 27.5-36.5t69.5-12.5q14 0 33.5 1.5t39.5 1.5q47 0 66.5-14.5t19.5-40.5q0-51-41.5-82t-109.5-31q-49 0-94.5 18.5t-66 71.5-20.5 110q0 51 20.5 118.5T1808 2163q0 69-43 127.5t-43 86.5q0 21 27.5 40t27.5 42q0 26-26 40t-55 14q-89 0-124-51t-35-99q0-29 20-69.5t20-74.5q0-45-38.5-69.5T1437 2125q-68 0-109.5 27.5T1286 2240q0 21 5 40l21 76q5 19 5 39 0 38-45 76.5t-83 38.5q-43 0-73.5-18t-30.5-48q0-22 30-43t30-35q0-25-51-71t-51-88q0-6 1-11v-7q0-4-1-7-120 38-188 47.5t-127 9.5q-174 0-284.5-67.5T333 1982q0-90 57.5-154.5T522 1763q56 0 91 36t35 100q0 40-11.5 60.5T603 1980q-21 0-29-15t-8-31v-19q0-25-14-35.5t-34-10.5q-37 0-59.5 29.5T436 1973q0 76 81.5 118.5T721 2134q109 0 211.5-35t152.5-85v-15q-2-47-15-106t-36-82q-370-46-558-201t-188-425q0-126 47-245t141.5-260.5 112.5-224 96-137T856 264q52 0 120.5 30t68.5 84q0 32-27 56.5T962 459q-26 0-54-9t-54-9q-24 0-48 18t-24 40q0 12 11 19.5t26 7.5q13 0 25-5t25-5q11 0 22.5 8t11.5 25q0 38-85 84.5T670 759 563 907t-64.5 138-20.5 140q0 141 78.5 235T817 1541q-23-29-39.5-61.5T748 1412l-19-1q-61-3-123.5-60T543 1173q0-94 51-158t139-64q42-166 142-296.5t243-192 303-61.5q157 0 300 61t242.5 189T2106 940q93 0 145 62t52 161q0 94-42 154.5t-130 81.5q-16 4-24 4-3 0-5-1h-4q-16 44-38 85.5t-53 77.5q21-3 43-3 93 0 177 74.5t84 174.5q0 64-28 111zm-153-827q2 17 2 32v31q0 38-2.5 75.5t-8.5 73.5q43 0 70.5-39.5T2219 1162q0-48-25-78t-69-39q2 13 3 25zM723 1318q-7-38-10-78.5t-3-81.5q0-26 1-50t4-50q-45 12-66 42t-21 74q0 56 25 98.5t70 45.5zm824 522.5q-37-59.5-125-59.5-65 0-106.5 42.5T1274 1936q0 50 26.5 76.5t80.5 26.5q41 0 106-6.5t81-25.5 16-56q0-51-37-110.5zm363-509q-4-18.5-9-37.5l-11-36q-4-15-7-31.5t-3-33.5v-30q0-46 13-106.5t13-97.5q0-80-56-155t-162-75q-52 0-132 46.5T1425 822q-54 0-136.5-46.5T1154 729q-72 0-112 25.5T968 836t-34 122q0 24 5 47l9 48q5 24 9.5 50.5t4.5 55.5q0 26-2.5 50t-9.5 49l-10 36q-5 19-8.5 37.5T928 1369q0 134 139 222.5t343 88.5q231 0 367.5-90.5T1914 1369q0-19-4-37.5zm-544.5-153q18.5-11.5 62.5-11.5 32 0 49.5 10t17.5 27q0 21-19.5 38.5T1421 1260q-29 0-51.5-15.5T1347 1206q0-16 18.5-27.5zm120 360.5q-25.5 34-66.5 34t-65-37-24-93q0-64 28-102t65-38q43 0 65.5 42.5T1511 1451q0 54-25.5 88zm222.5-408.5q-26 31.5-63 31.5-36 0-61.5-32t-25.5-75 25.5-75 61.5-32q37 0 63 31.5t26 75.5-26 75.5zm-450 0q-26 31.5-62 31.5t-62.5-31.5-26.5-75.5 26.5-75.5T1196 948t62 31.5 26 75.5-26 75.5z" + }, + "children": [] + }] +}; +exports.u1F412 = u1F412; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F413.js b/dist/noto_emoji_regular/u1F413.js new file mode 100644 index 000000000..da19f3d02 --- /dev/null +++ b/dist/noto_emoji_regular/u1F413.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F413 = void 0; +var u1F413 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2295 1280l-4 4 2 16v17q0 48-29 89l-1 2q6 15 10 32.5t4 36.5q0 15-3 30t-11 29l-5 8q4 9 8 28.5t4 37.5q0 11-1 21l-5 34q-12 105-101 167.5t-145.5 147-185.5 153-313 99.5q11 36 19.5 74t8.5 74q0 87-73.5 140.5T1337 2574q-23 0-39-15t-16-38q0-35 70.5-64.5t70.5-93.5q0-30-12-59t-19-59q-45 3-92 3v54q-2 97-20.5 153.5t-81.5 89-127 32.5q-55 0-71-13.5t-16-45.5q0-30 21.5-46.5t73-22.5 72-39.5 22.5-96.5l2-70q-318-28-495-202t-202-494q-65-24-105-86t-40-138q0-63 25-122.5t71-103.5q-8-3-14.5-6.5T400 1084l-28-9q-44-13-76-39t-32-66q0-49 57.5-94t138-66T563 789q4-15 9.5-28.5T582 733q-59-56-83.5-102T474 532q0-51 23-109t93-78l28-8q32-9 90.5-47T826 252q55 0 88 19t65 19q20 0 39-3t41-3q40 0 78 21t54.5 44 37.5 35l54 30q39 22 56 54.5t17 94.5q0 75-18 108t-22.5 49-12.5 31q57 83 129.5 250.5t144.5 247 104 79.5q10-10 16.5-49t44.5-110.5 83-108.5 101-54.5 125-17.5q110 0 197.5 50.5T2336 1173q0 52-41 107zm-69-63q17-28 17-46 0-35-64-62.5t-128-27.5q-44 0-83.5 9t-78.5 38-69.5 91.5-33.5 89-19 58.5q8 0 14 1l14 2q103 11 136 37.5t33 73.5q0 17-5.5 33t-5.5 30q0 4 13.5 23.5t13.5 53.5q0 6-1 12l-2 14q-2 7-7 13l-10 14q-5 7-8.5 13t-3.5 12q0 10 4 16.5t4 21.5q0 45-47.5 90t-55.5 74-77 57-179 28q-169 0-281-64t-156.5-164-44.5-140q0-9 2.5-15t9.5-6l6 1q5 1 19 48.5t61 112 136 105 210 40.5q127 0 173.5-20t46.5-41q0-7-10.5-13.5T1758 1814q0-16 60-30.5t60-55.5q0-19-27.5-23.5T1823 1685q0-7 11-13l22-13q12-7 22.5-18t10.5-29q0-24-33.5-30t-33.5-20q0-9 9-13l20-7q10-4 19.5-11.5t9.5-24.5q0-18-8.5-35t-38-25.5-102.5-13-104.5-20.5-37.5-24l-7-8q-126-90-227.5-330t-188-320T957 643q-47 0-83 9.5T800 688q84 24 131.5 75.5T979 882q0 74-51.5 140t-112 91.5T753 1265l-1 46q0 99-48 165.5T571 1556q31 310 215.5 455t509.5 145q216 0 399-65.5t254.5-173T2094 1766t79-111l2-18q2-7 2-14v-13q0-8-6.5-25t-6.5-47q0-16 5.5-27.5t11.5-18.5l3-4 1-11q0-24-15-51l-16-9-21-13q-11-6-18.5-13.5t-7.5-15.5q0-10 11.5-15t25.5-5q9 0 19 1.5t19 3.5l6-5q13-17 13-37 0-36-45.5-47.5T2110 1241t16-24 36-6q18 0 28 3l24 9 6-4zM359 969q6 6 17 10l22 8 35 12q16 4 48 19.5t57 15.5q13 0 16-13.5t3-28.5l-1-49q0-26-4-61-3 0-14 2-59 12-112.5 39T359 969zm351-34q17 20 41 20 23 0 40-20t17-50q0-29-17-49t-40-20q-24 0-41 20t-17 49q0 30 17 50z" + }, + "children": [] + }] +}; +exports.u1F413 = u1F413; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F414.js b/dist/noto_emoji_regular/u1F414.js new file mode 100644 index 000000000..2328ea796 --- /dev/null +++ b/dist/noto_emoji_regular/u1F414.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F414 = void 0; +var u1F414 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2109 1346q16 32 24.5 60t8.5 56q0 45-21 79t-22 39q10 26 10 66 0 14-3 25t-6 20l-7 17q-3 9-3 19 0 95-74.5 215.5t-204 190.5-291.5 92q11 46 26 93t15 95q0 59-31.5 109t-79.5 50q-21 0-35.5-12t-14.5-32q0-33 21-67t21-67q0-38-16.5-77.5T1396 2239q-20 2-38 2h-37q2 14 3 29t1 31q0 146-60 206t-130 60q-29 0-50.5-16.5T1063 2509q0-16 12-36.5t36-22 55.5-27.5 31.5-186q-321-25-495.5-217.5T528 1473q0-51 3.5-100t9.5-96q-35-13-53-51t-18-86q-15-3-77-27.5t-62-85.5q0-54 78-101t158-62l19-3q7 0 7-14 0-6-3-15l-7-20q-4-10-7-21t-3-22q0-61 25-97t55.5-44 54.5-32.5 56-24.5q13 0 25 4.5t20 4.5q20 0 38-6t36-6q12 0 21 5l15 7h-1q16 9 33 23t17 23l-1 3q103 0 175.5 32t128 97 99 153 73.5 159.5 87 103.5 115 32q72 0 118.5-42t108.5-61.5 119-19.5q84 0 127.5 41.5t43.5 91.5q0 35-16 68.5t-37 61.5zM752 994.5q16 19.5 39 19.5t39-19.5 16-47.5-16-47-39-19-39 19-16 47 16 47.5zm-144.5 22Q605 995 605 942q-49 0-114.5 34.5T416 1027q14 11 37.5 16.5t66.5 26 71 20.5q6 0 12.5-11.5t6.5-34.5q0-6-2.5-27.5zm1413 301.5q5.5-10 17.5-24l3-3q23-32 28.5-50t5.5-28q0-11-20-26t-67-15q-51 0-98.5 17.5T1813 1236q72 0 97 32.5t25 73.5q0 16-5 28t-5 24q0 6 17 21.5t17 54.5q0 36-23 73t-23 42q0 6 7 19.5t7 28.5q0 33-21.5 60.5T1869 1729t-15 22l1 14q0 47-82 92.5t-209 45.5q-124 0-227-42.5t-172-126-69-122.5q0-21 11-21h7q3 0 51 62t160.5 115.5T1566 1822q87 0 151.5-30.5t64.5-64.5q0-16-14.5-21t-14.5-10q0-6 40-26.5t40-54.5q0-17-19.5-25.5T1794 1575l3-9q23-6 42-30.5t19-48.5q0-34-33.5-37.5T1791 1435q0-6 6.5-7.5t29-23 22.5-48.5q0-19-16.5-30.5T1784 1314q-50 0-150-15t-165-59.5-96-113.5l-12-26-45-97q-35-79-80-145.5T1128 754t-156-37q-77 0-124.5 35T802 786q58 8 95.5 55.5T935 949q0 58-37 112.5T785 1125l-25 4q-48 8-54 40.5t-26.5 65.5-50.5 40q-6 47-10 97t-4 101q0 344 177.5 512t516.5 168q193 0 353-51t250-165 90-213q0-15 2-27.5t10-27.5l6-13q2-6 2-9 0-16-4.5-33.5t-4.5-36.5q0-32 21-59t21-54q0-32-20-68.5t-20-52.5q0-15 5.5-25z" + }, + "children": [] + }] +}; +exports.u1F414 = u1F414; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F415.js b/dist/noto_emoji_regular/u1F415.js new file mode 100644 index 000000000..eb1cc58f4 --- /dev/null +++ b/dist/noto_emoji_regular/u1F415.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F415 = void 0; +var u1F415 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M318 535.5Q419 431 544 431q105 0 167 52.5T773 613q0 49-29.5 81.5T672 750l-50 27q-98 53-126 130t-58.5 116.5T368 1063q-62 0-106.5-79.5T217 805q0-165 101-269.5zm1427.5 6Q1841 652 1841 804q0 93-44 176t-107 83q-59 0-97.5-89T1532 852.5 1397.5 758 1285 609q0-74 64.5-126t159.5-52q141 0 236.5 110.5zm602 747.5q-70.5 65-173.5 65-20 0-40.5-2.5t-40.5-8.5q31 100 40.5 205t9.5 204q0 37-2.5 73.5t-2.5 73.5q0 20 1.5 40t1.5 39q0 92-63.5 116t-132.5 24q-66 0-109.5-26t-43.5-88q0-44-5-89t-32-45l-24 1-35-1q-45 0-55 23t-10 92q0 23 3 45t5 44l8 128q0 21 3.5 41t3.5 39q0 66-74 92.5t-164 26.5q-76 0-117.5-24.5T1257 2303q0-35 5-69.5t5-69.5v-20l-10-95-83-76q-20 0-39.5 3t-38.5 3q-4 0-7-1h-6q-19 0-25.5 13t-6.5 33q0 11 1 22t1 19q0 38-1.5 76.5t-1.5 76.5q0 110-52 154.5T854 2417q-59 0-114-19.5t-69.5-51.5-14.5-84q0-26 6-90t6-240q0-24 3-35.5t14-11.5q13 0 23.5 4.5t21.5 4.5q9 0 23-7t14-19q0-7-4-10t-15.5-7.5-77-34-152.5-126T383 1449t-48-316q16 3 33 3 69 0 116-55t71-128.5T662.5 838 796 742.5 846 611q0-34-10-66t-27-59l42-10q38-8 85.5-14t88.5-6q47 0 95.5 6.5T1209 480l38 10q-34 57-34 124 0 64 37 115t119.5 97 100.5 65 42.5 86 69 113 108.5 46q23 0 51-13.5t49-49.5 37-36q11 0 22 5l20 10q38 20 68 43.5t56 53.5q23 5 45 8t43 3q63 0 120-20t120-50l27-14q15-7 30-7 19 0 29.5 15t10.5 42q0 98-70.5 163zm-1601-74.5Q721 1185 686 1185q-36 0-62.5 29t-26.5 71 26.5 71.5T685 1386q36 0 61.5-30t25.5-70q0-42-25.5-71.5zm451 470.5q-7.5-8-18.5-8-10 0-24.5 9.5t-37.5 9.5q-26 0-42.5-10.5T1058 1655v-14q60-5 89.5-29.5t29.5-69.5-46-74.5-107-29.5-103.5 30.5T878 1552q0 37 30.5 62.5T998 1643v7q0 26-17 35t-37 9q-12 0-20.5-2.5T907 1686l-13-6q-7-2-16-2-11 0-19 7.5t-8 19.5q0 19 25 34.5t59 15.5q31 0 62.5-11t33.5-11q3 0 11 4l4 2q14 7 32 11t36 4q32 0 61.5-14.5t29.5-35.5q0-11-7.5-19zm236.5-470.5q-26-29.5-61-29.5t-61.5 29.5-26.5 71.5q0 40 25.5 70t61.5 30q35 0 61.5-29.5t26.5-71.5q0-41-26-70.5z" + }, + "children": [] + }] +}; +exports.u1F415 = u1F415; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F416.js b/dist/noto_emoji_regular/u1F416.js new file mode 100644 index 000000000..4715d6d60 --- /dev/null +++ b/dist/noto_emoji_regular/u1F416.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F416 = void 0; +var u1F416 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2454 1277q-31 17-67 17-10 0-14-1-23 23-54 35t-65 13l2 34v35q0 78-11 164.5t-55 210.5-57.5 207-13.5 119q0 57-23.5 77t-86.5 20q-102 0-112-46.5t-28-93.5-70-47q-45 0-43 57.5t-22 77.5-78 20l-32-1q-47 0-57-10t-16-36l-7-28q-5-18-15-33t-36-15q-28 0-41.5 26.5T1438 2162q0 26 1 49.5t1 38.5q0 27-37.5 43.5T1323 2310q-51 0-86.5-12.5t-37-63.5-21-103-51-73.5-78.5-21.5h-24q-57 3-65 49.5t-11 95.5-81 49q-129 0-133-41.5t-10-71.5l-8-37q-8-42-18-84-223-54-347-182t-124-312q0-163 89-320t190-277q5 2 12 3t15 1q40 0 75-53.5t73-64.5 77.5-41.5T799 684v-7q78-32 157.5-42.5T1123 624h29q14 0 29 1-17 34-17 68 0 50 31 88t78.5 52.5T1343 876l27 35q14 18 30 30.5t39 12.5 48.5-17.5T1535 892l22-28q18-24 28.5-47t10.5-52q0-14-4-41t-16-49q60 14 117 32t114 47l105 53q117 60 204.5 176.5T2237 1234l10 1q4 0 9 1 7 0 8-1-2-6-8.5-13t-6.5-24q0-33 26-58.5t61-25.5q38 0 64 23t26 60q0 10-2.5 19t-6.5 13q2 2 6 2l7 1q12 0 23-5t22-5q6 0 8 4.5t2 7.5q0 26-31 43zM837 1396.5q-74-56.5-172-56.5-116 0-177 62.5T427 1545q0 73 72.5 114t184.5 41q111 0 169-35t58-121q0-91-74-147.5zm649.5-756Q1540 685 1540 754q0 46-29 93.5t-68 47.5q-28 0-53.5-40t-96-76.5T1223 693q0-39 29-68t91-29q90 0 143.5 44.5zM724 700q-12 11-33 23l-18 10q-18 12-48.5 31T580 809l-12 21q-6 10-14 17t-18 7q-26 0-47-32t-21-53q0-58 60.5-102.5T653 622q35 0 59 14t24 39q0 14-12 25zm424 515q-26-32-60-32-33 0-55.5 27t-22.5 67q0 43 26 73.5t60 30.5q31 0 54.5-26.5t23.5-66.5q0-41-26-73zm-673.5 106q18.5 24 50.5 24 34 0 63-31t29-72q0-31-19.5-55t-51.5-24q-35 0-62.5 32t-27.5 71q0 31 18.5 55zM624 1523q0 37-9.5 62t-32.5 25-30.5-23-7.5-57q0-40 8.5-68.5T586 1433q22 0 30 21.5t8 53.5v15zm131 93q-21 0-28.5-21.5T719 1542q0-42 8-72.5t34-30.5q23 0 30.5 24t7.5 58q0 41-9.5 68t-34.5 27zm1604-402q2-4 3.5-8.5t1.5-10.5q0-8-5.5-15t-14.5-7q-8 0-14 6t-6 14q0 11 10 16t25 5z" + }, + "children": [] + }] +}; +exports.u1F416 = u1F416; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F417.js b/dist/noto_emoji_regular/u1F417.js new file mode 100644 index 000000000..1e200f443 --- /dev/null +++ b/dist/noto_emoji_regular/u1F417.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F417 = void 0; +var u1F417 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2471.5 1328.5Q2451 1347 2418 1347q-17 0-33-6t-30-6q-37 0-86 65t-167 65l-61-1q-48 0-74-38.5t-26-101.5q0-28 4-54.5t9-49.5q0-3 3-10l5-15q3-8 5-17t2-16q0-6-2.5-10.5t-8.5-4.5q-18 0-49.5 71.5T1877 1358q0 49 14 101t41 77q-6 8-19 21l-231 230-24 26q-85 92-113 255t-60 224-192 61q-80 0-114-15.5t-34-46.5q0-21 6.5-44.5t15.5-48.5l17-51q3-11 16.5-79.5t13.5-83.5q0-49-97.5-56T922 1910l-31 82q-15 43-48 108t-75.5 82-98.5 17q-80 0-131.5-18t-51.5-49q0-9 24-67.5t49-114.5l29-65 9-28q-97-19-163.5-42.5t-148-62-130-106T107 1503q0-63 28-113.5t73.5-79.5 96.5-37 83.5-15.5 101.5-77 139-195T734 809q-4-8-31.5-58T675 662q0-31 22.5-47t54.5-16q34 0 57 19.5t40 50.5q82-92 197.5-143.5T1280 474q52 0 107 7.5t142 29 207.5 60.5 163.5 50l55 13 33 10q17 5 34 9t34 4q26 0 53.5-8t48.5-28l22-20q11-10 23-17.5t26-7.5 17.5 13.5 3.5 28.5q0 38-25.5 73t-81.5 71q39 50 59.5 116t20.5 145q0 53 11.5 90.5t56.5 38.5l28 1q51 2 112 51.5t61 82.5q0 23-20.5 41.5zm-1922.5 96q-99-61.5-193-61.5-66 0-109.5 38.5T203 1503q0 84 85 141.5t187 57.5q79 0 126-37t47-97q0-82-99-143.5zm59.5-186Q625 1261 655 1261q33 0 59.5-28.5T741 1165q0-29-17-51.5t-47-22.5q-33 0-59 29.5t-26 66.5q0 29 16.5 51.5zm435.5 441q-15-17.5-53-43t-70-66.5-39-62-24-21q-20 3-27.5 44.5T823 1613q0 82 31 151t91 69q47 0 80.5-32t33.5-80q0-24-15-41.5zm130-477q-25-29.5-57-29.5-33 0-53 25.5t-20 60.5q0 43 26 71t58 28q30 0 50.5-25t20.5-60q0-41-25-70.5zM1623 949q0-7 1-13 0-50-33-86t-87-36q-29 0-59.5 10t-53.5 27l-12 9q-12 10-25 22.5t-13 20.5q0 6 7 11.5t11 5.5q9 0 39.5-22t68.5-22q36 0 60.5 17t24.5 50q0 24-16.5 42t-36.5 32l-37 27q-17 12-17 25 0 10 17 10 53 0 101.5-34t57.5-83zM385.5 1443q9.5 16 9.5 33 0 38-24.5 72.5T321 1583q-10 0-22.5-11t-12.5-36q0-30 22.5-69.5T359 1427q17 0 26.5 16zm143.5 58.5q12 14.5 12 42.5 0 35-17.5 63.5T481 1636q-24 0-32.5-16t-8.5-36q0-34 17-65.5t44-31.5q16 0 28 14.5z" + }, + "children": [] + }] +}; +exports.u1F417 = u1F417; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F418.js b/dist/noto_emoji_regular/u1F418.js new file mode 100644 index 000000000..d5c6da3fd --- /dev/null +++ b/dist/noto_emoji_regular/u1F418.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F418 = void 0; +var u1F418 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1096 1718q-9 73-76 167.5t-227 153-352 58.5q-89 0-124.5-9.5T261 2050t-20-87q0-104 57.5-109.5T422 1848q198 0 279-58.5t81-123.5q0-55-64-84.5T600 1509t-85-106.5-32.5-138.5-30.5-75q-10 0-21 4t-21 9l-20 10q-19 10-42.5 14.5T297 1231q-66 0-111-31.5t-45-87.5q0-29 13.5-49t44-113 38-137.5 18.5-93 34.5-82T348 577t70-40 75-13q36 0 75 9.5t99 33.5l56 23q15 6 28 6 21 0 58.5-17.5t99-35T1037 526q103 0 170 41t118 41q44 0 117.5-26.5T1560 555q99 0 154 61t82 165 79.5 190.5T1928 1123q0 71-58 120.5t-134 49.5q-67 0-112-22t-66-22q-20 0-32 10t-17 28l-6 24q-17 76-62 141t-113 101.5-103 36.5q-61 0-126.5-46.5T1033 1490q-7-7-16-7-8 0-13 6.5t-5 14.5q0 61 23 115.5t74 98.5zm1317.5-37q-44.5 33-99.5 33-57 0-85.5-25.5T2199 1663q-3 0-3 5 0 4 1 7.5t1 5.5q-2 14-2 26v26q0 48 2 93.5t2 92.5q0 139-45.5 178.5T2024 2137q-75 0-119-22t-44-108l1-78q0-63-29-108.5t-77-47.5q-16 0-74.5 26.5T1563 1827t-77 38-17 106q0 67 6.5 127.5t6.5 123.5q0 50-42 74.5t-138 24.5q-75 0-116-24t-46-67l-2-25q0-12-1-24 0-26 1.5-51.5t1.5-51.5q0-61-12-101t-33-61q21-30 42-70.5t79.5-105T1333 1642t80.5-50 57-52.5 62-88T1577 1336q33 18 77.5 26.5t81.5 8.5q114 0 192-75.5t78-172.5q0-83-52.5-173t-85-197-79.5-176q99 12 188.5 72t149 141.5T2219 954t33 218q0 62-5.5 118.5T2241 1412q0 89 28 141t79 52q15 0 25.5-6.5t19.5-14.5l18-14q8-6 18-6 17 0 23 11t6 24q0 49-44.5 82zM915 2070q2 29 4.5 57.5t2.5 56.5q0 54-43.5 82.5T754 2295q-57 0-108-19t-62-36-11-73q101-11 185.5-34.5T915 2070zm822-208q0 24 3 47.5t3 47.5q0 5-1 11.5t-1 17.5q0 58-13 77.5t-47 33-78 13.5q-14 0-27-1t-25-1q-3-31-3-57l-1-48q0-23 2-51t6-47q60 0 118.5-18t63.5-25zm-1200-96q-5-42-7-83.5t-2-86.5l1-43q57 53 115.5 79t58.5 35q0 21-40.5 55.5T537 1766zm772.5-540.5Q1287 1201 1259 1201t-45 22-17 52q0 37 22 62.5t51 25.5q28 0 45-23.5t17-51.5q0-38-22.5-62.5zm-571-16.5q-17.5-21-45.5-21t-49.5 24.5T622 1274q0 31 17.5 52.5T685 1348q30 0 50.5-26.5T756 1260q0-30-17.5-51z" + }, + "children": [] + }] +}; +exports.u1F418 = u1F418; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F419.js b/dist/noto_emoji_regular/u1F419.js new file mode 100644 index 000000000..9b9fcf395 --- /dev/null +++ b/dist/noto_emoji_regular/u1F419.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F419 = void 0; +var u1F419 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2320.5 2028.5q13.5 9.5 13.5 27.5 0 9-8 25.5t-17 28.5l-10 15q-48 59-128.5 94.5T2008 2255q-99 0-186.5-53t-111.5-95-50-42q-14 0-18.5 11t-4.5 25q0 48 40.5 118t108 115 67.5 84q0 34-31.5 56.5T1762 2497q-54 0-130.5-61.5t-90-76-85-118T1332 2138q-24 0-49 13.5t-48 37.5l-27 29q-87 97-197 163l-53 30q-47 27-95 44.5t-88 17.5q-36 0-58.5-15.5T694 2412q0-61 90.5-120.5T892 2217l27-22q23-18 38.5-40.5T973 2107q0-23-13-33.5t-31-10.5q-27 0-123.5 50T633 2163q-105 0-184.5-82.5T298 1946t-71-87q0-23 13.5-35t37.5-12q46 0 95.5 29.5t95.5 70 119 40.5q48 0 85.5-18.5T748 1875q-212-73-347-256.5T266 1216q0-94 19.5-206T369 783t64-176q0-20-6.5-43t-6.5-41 18.5-34 51.5-16q47 0 71.5 55T586 693q0 14-2 24l-5 21q-7 47-19 93l-24 93q-12 47-20.5 94t-8.5 96q0 59 15 110.5t41 102.5l28 62q25 58 52 93.5t50 35.5q17 0 24.5-12t12.5-26q-28-77-42-151t-14-154q0-194 83.5-368.5T984 534t315-98q270 0 463.5 173.5T1956 1095q0 91-16.5 181t-47.5 169q0 5-1 10.5t-1 10.5q0 17 5.5 27.5t22.5 10.5q53 0 133.5-130.5T2132 1110q0-128-60.5-284.5T2011 592q0-64 30.5-108t80.5-44q32 0 49 19t17 51q0 16-9.5 35.5T2169 594q0 56 57 123t102 199 45 300q0 237-158 430t-399 251q68 82 139.5 125t141.5 43q50 0 114.5-23t80.5-23q15 0 28.5 9.5zM963 1274.5q25 31.5 60 31.5 39 0 68.5-35t29.5-82q0-43-25.5-73.5T1034 1085q-39 0-67.5 34.5T938 1199q0 44 25 75.5zm263 188.5q-58-63-137-63-67 0-113 53t-46 122q0 79 57.5 129.5T1123 1755q66 0 113.5-42.5T1284 1606q0-80-58-143zm293-298.5q-26-32.5-64-32.5t-64.5 32-26.5 77q0 49 26 80t66 31q34 0 61.5-32t27.5-79q0-44-26-76.5zm-342.5 491Q1152 1678 1116 1678q-42 0-73.5-30t-31.5-74q0-41 25.5-69t60.5-28q43 0 73.5 33t30.5 75q0 48-24.5 70.5z" + }, + "children": [] + }] +}; +exports.u1F419 = u1F419; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F41A.js b/dist/noto_emoji_regular/u1F41A.js new file mode 100644 index 000000000..d59c5763c --- /dev/null +++ b/dist/noto_emoji_regular/u1F41A.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F41A = void 0; +var u1F41A = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2195 1355q-46 52-117.5 81t-233.5 42l-94 8q-93 8-218 43.5t-241.5 99.5-176 120.5-86 112.5-26.5 150q0 128 78 199.5t217 71.5q185 0 315-139.5t165-357.5l1-20v-94q0-66 16-88.5t82-22.5q53 0 78 18t37.5 85.5T2004 1832q0 337-190 539.5T1296 2574q-242 0-461.5-111t-348-300T358 1776q0-96 31-195.5t95.5-196.5T638 1203t207-151.5 200.5-90T1273 939q49 0 115 1l284 6q72 0 135 1 171 0 254 26t131.5 73 48.5 144q0 113-46 165zm-914-477q-6 0-14 1-10 0-17-3t-7-14q0-25 11-45.5t72.5-63T1517 709l122-2q62 0 124-1 245 0 340.5 22.5T2199 830q0 23-15.5 39.5T2136 886q-76 0-152-4t-152-4h-51q-100 0-199.5-2.5T1378 873q-21 0-42 2.5t-44 2.5h-11zm250-239l3-7q35-56 82.5-77.5T1719 528l88-8q43-3 86-3 162 0 219.5 47t57.5 90q0 13-2 25t-10 12q-2 0-58-19.5T1914 652q-83 0-161.5 3t-159.5 3h-22q-25 0-33-3t-8-10q0-3 1-6zm302-163h-8q-5 0-10-1 0-33 45.5-59t70-28 54-21.5T2048 347q24 0 30 18.5t19.5 24T2122 423t11 68q0 11-2.5 14t-5.5 3-32.5-20.5T1963 467q-45 0-78.5 4.5T1833 476z" + }, + "children": [] + }] +}; +exports.u1F41A = u1F41A; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F41B.js b/dist/noto_emoji_regular/u1F41B.js new file mode 100644 index 000000000..43e3a9e1e --- /dev/null +++ b/dist/noto_emoji_regular/u1F41B.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F41B = void 0; +var u1F41B = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2232 2014q13 14 23.5 33.5t10.5 34.5q0 6-4 15t-14 9q-7 0-15-6.5t-16-15.5l-15-18q-14-16-35.5-29t-41.5-21q-35 43-96 64t-122 21l-1 10q0 43 23 82.5t55.5 65 32.5 46.5q0 20-15.5 28t-31.5 8q-44 0-95.5-50.5T1793 2106l-42-2q-17 104-53 175t-80 71q-28 0-38-7.5t-10-20.5q0-23 26-71.5t44-174.5q-11-4-20-8l-21-9q-44 76-98.5 122.5T1411 2228q-15 0-32-13.5t-17-28.5q0-8 3-16t54.5-54.5T1510 1997l-21-22q-10-10-19-21-43 32-95.5 56.5T1266 2035q-27 0-43.5-11t-16.5-30q0-43 71-56t134-67l-17-31q-8-15-14-32-9 4-89 38t-102 34q-18 0-34-16.5t-16-35.5q0-40 92.5-85.5T1337 1690q-6-22-11-43.5t-9-42.5l-25 11q-38 18-80 62.5t-87 44.5q-11 0-19.5-7.5t-8.5-24.5q0-43 58.5-99.5T1293 1504q-5-22-11-44l-12-43-36 24q-21 13-61.5 67.5T1095 1563q-20 0-30.5-9.5T1054 1515q0-13 5-23l11-21q28-53 70-90t93-66q-17-29-38-51t-46-37q-91 112-108 172.5t-64 60.5q-14 0-24-9t-10-32q0-53 25-117t69-118l-71-10-19 53q-21 61-72.5 115.5T767 1397q-18 0-37.5-10.5T710 1356q0-26 38.5-42.5t71-61T852 1164q-86-9-119.5-28t-50.5-50q-67 15-115.5 37.5t-101.5 62-72.5 55T348 1256q-15 0-15-17 0-41 67-117.5T638 975q0-30 7-55t24-48q-33-65-58.5-133T585 597l1-19q0-30 8.5-63t26.5-33q13 0 24 18t16 44l5 25q7 54 45 140t50 94l2 2q28-9 59.5-12t63.5-3q30 0 59 3 10-19 13.5-40t3.5-41q0-55-22-89t-22-55q0-19 9-28t20-9q30 0 73 51t43 145q0 25-3 43l-9 45q22 6 48.5 11.5t54.5 8.5q14-61 64-143.5t100-82.5q20 0 30 11.5t10 22.5q0 24-35 77t-58 140q23 7 43 17t43 23q44-61 103.5-102.5T1565 756q17 0 29.5 7t12.5 24q0 37-33 61t-56.5 34-83.5 83q34 33 59 69 51-43 102-66t90-23q17 0 33 8t16 29q0 17-18 33t-44 27l-28 12q-30 13-54 31t-45 41q10 20 17 40l12 40 44-40 45-39q21-17 37-27.5t44-10.5q14 0 24 16t10 32q0 20-16 46t-39 50l-24 24q-23 23-46.5 44.5T1606 1343q7 44 18 87 85-60 111.5-125.5t61.5-65.5q19 0 29 16.5t10 48.5q0 49-59 120t-123 113l24 55q12 29 30 58 66-61 112-148t73-87q13 0 22.5 17t9.5 40q0 50-36 119t-104 132q31 15 65 18.5t68 3.5h43q38 0 72 11t60 31q26-14 49-35t34-50l3-11q3-14 7-21t12-7q12 0 16 8.5t4 22.5q0 50-22.5 84.5T2144 1842q22 36 22 74 0 20-8 44 35 14 60 40z" + }, + "children": [] + }] +}; +exports.u1F41B = u1F41B; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F41C.js b/dist/noto_emoji_regular/u1F41C.js new file mode 100644 index 000000000..649f2f019 --- /dev/null +++ b/dist/noto_emoji_regular/u1F41C.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F41C = void 0; +var u1F41C = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2224 2110.5q-95 71.5-228 71.5-56 0-109.5-13t-98.5-39l8 22 34 315v6q0 19-11.5 33t-30.5 16h-6q-18 0-32.5-12.5T1733 2478l-33-300-67-204q-16 4-37 4l19 162v5q0 10-1 14l-89 288q-5 17-17.5 26t-29.5 9q-21 0-35-16t-14-33q0-6 3-15l85-278-21-175q-29-11-50.5-32t-38.5-49l-121 192-9 11-219 183q-15 12-32 12t-33-12.5-16-35.5q0-24 18-38l212-179 148-235q-55 21-90 28.5t-85 7.5q-63 0-126-20t-113-62q35-21 64-56.5t29-61.5q0-22-12-36.5t-26-14.5q-19 0-37.5 20.5T873 1649l-4 3q-38-60-58-131t-20-144q0-192 138-318L685 756l-322 306q-15 13-34 13t-34-14.5-15-34.5q0-9 4-18.5t12-16.5l360-343q7-6 15.5-10t17.5-4q22 0 40 18l279 349q23-13 46.5-25t48.5-20L969 518l-491 16q-20 0-35.5-13.5T427 486q0-48 63-50t207-7l151-5q59-2 91-4l47-2h21q21 0 31 9.5t14 24.5l148 481q14-2 29-3t29-1q172 0 306.5 141t134.5 307v18l16-32-11-227q0-19 12.5-35t33.5-16q20 0 35 12.5t17 32.5l12 245q0 5-2 10l-4 11-89 174 15 11 57-84 115-113q11-14 33-14 20 0 34.5 14.5t14.5 34.5q0 21-14 35l-104 102-74 109q3 4 6 9l4 10 130-115q10-10 26-13l246-37h9q20 0 34 14t14 36q0 17-11.5 30t-29.5 16l-233 36-28 25q8-2 25-2 135 0 233 73t98 183q0 109-95 180.5zm-1119-782q-21-25.5-50-25.5-30 0-50 25.5t-20 60.5q0 38 21 61.5t52 23.5q28 0 48-25.5t20-60.5q0-34-21-59.5z" + }, + "children": [] + }] +}; +exports.u1F41C = u1F41C; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F41D.js b/dist/noto_emoji_regular/u1F41D.js new file mode 100644 index 000000000..f7e7ddeee --- /dev/null +++ b/dist/noto_emoji_regular/u1F41D.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F41D = void 0; +var u1F41D = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2325 1622q34 65 34 137 0 149-141 275.5T1900 2170q-68 0-133-15.5t-119-57.5v92l-1 62q0 37-7.5 48.5T1599 2311q-23 0-31-13t-8-36q0-16 2.5-31t2.5-31v-73l1-49v-49q-8 0-13 5t-9 10l-8 11q-4 5-10 5t-13-11-14-11q0 18 1 35v104q0 106-6 120.5t-43 14.5q-23 0-30.5-12t-7.5-36q0-15 1-31t1-32v-72q0-23 1.5-46.5t1.5-46.5q-11 3-19 13t-19 10-15.5-12.5-4.5-23.5q-58 73-113.5 111.5T1170 2173q-16 0-28-13t-12-27q0-27 38.5-47.5t66.5-50.5l54-58-13 1q-10 0-16-1.5t-6-9.5q0-7 8.5-20t8.5-24q0-5-1-7-2 2-68 71t-142 69q-14 0-28.5-1.5t-28.5-1.5q-17 0-32.5 2.5T939 2058q-29 0-44-11t-15-32q0-20 13-32t40-12q28 0 56 3t56 3q24 0 50.5-13.5t74.5-68.5q-45 16-106.5 25.5T944 1930q-219 0-348.5-115.5T466 1500q0-117 48-230t133-184q-2-4-5-7l-6-6q-86-97-126.5-114.5T427 941q-41 0-75.5 11.5T295 964q-25 0-40-17.5T240 911q0-30 45-58t141-28q82 0 142 33.5T671 942l72 81q84-44 179-59l7-1-22-85q-20-76-68.5-116.5t-122-53T643 645q0-31 24.5-43t54.5-12q12 0 25 2l23 4q92 26 144 74.5t78 105 52 180.5q55 0 105 14 0-173 82-301.5T1459 540q89 0 169.5 53T1762 734q47-37 103.5-60t119.5-23q118 0 201.5 100.5T2270 999q0 124-63.5 236.5T2008 1458q5 0 9.5-1t8.5-1q63 0 120 19.5t104 54.5q12-2 32.5-2t41.5-1q7 0 12 4t5 20q0 21-6 36t-10 35zm-44 139q0-89-60-150.5t-159-73.5q74 50 125 134.5t68 192.5q13-29 19.5-56.5t6.5-46.5zM1228 967q0 18 1 27 86 40 151.5 106t104.5 153q33-151 87.5-267.5T1703 788q-48-85-112-128.5T1460 616q-101 0-166.5 99.5T1228 967zm750-238q-26 0-47.5 5.5T1882 752t-54 29.5-60.5 51.5-57 67.5-65.5 121-74.5 210.5-37.5 201l-7 90q0 6 2 10 9-11 20-11 8 0 11 5.5t3 12.5q0 3-1 6t-1 6q0 11 4 16.5t9 5.5q9 0 28-14.5t27-14.5 10.5 6.5 4.5 15.5v21q0 12 1 16 11-4 22.5-10t22.5-13l11-6 113-72h-1q201-129 291-251t90-253q0-115-60.5-192.5T1987 729h-9zm-333 1241q23 55 83 87.5t142 34.5v-34q0-88-38-171.5T1726 1752q0 4 8 9l16 13q8 7 14.5 15t6.5 15q0 14-28.5 16.5T1714 1834q0 10 9 18t9 21-6.5 17.5-18.5 4.5h-19q-8 0-13 2t-5 10q0 11 7 21.5t7 19.5-8.5 16-21.5 7q-6 0-9-1zm392 88q26-11 49.5-24t45.5-28q0-150-67.5-267T1876 1566q-22 9-43 20t-38 25q33 23 102 98.5t104.5 169.5 35.5 179zm-881-576.5q30 32.5 66 32.5 34 0 54-28t20-59q0-45-28.5-78t-64.5-33h-12q-17 2-41 24t-24 63q0 46 30 78.5zm-303.5-13Q825 1437 789 1437q-33 0-55 25.5t-22 64.5q0 45 27.5 77t62.5 32q28 0 53-25t25-67q0-44-27.5-75.5zM1198 1615q-13-18-36-18-24 0-33.5 29t-39 46.5-59.5 17.5q-14 0-37.5-13t-40.5-13q-12 0-26.5 10.5T911 1705q0 31 35 52t66 21q63 0 131-35.5t68-86.5q0-23-13-41z" + }, + "children": [] + }] +}; +exports.u1F41D = u1F41D; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F41E.js b/dist/noto_emoji_regular/u1F41E.js new file mode 100644 index 000000000..9811720fc --- /dev/null +++ b/dist/noto_emoji_regular/u1F41E.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F41E = void 0; +var u1F41E = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2331 1633q-17 17-40 17-31 0-54-32t-85-72.5-134-53.5q0 217-97 393t-268.5 270.5T1259 2250q-151 0-292-44v16q0 48 16 106.5t37 92 21 55.5q0 23-15.5 39.5T984 2532t-43.5-19.5-52-107T854 2222q0-37 4-60-98-48-172-110.5T549 1913q-12 29-21.5 70.5T518 2081q0 17 2 34t2 36q0 23-14 39.5t-37 18.5h-7q-29 0-44.5-27.5T404 2081q0-78 19-149t59-133q-39-81-59-161.5T403 1472q0-53 5.5-108t16.5-113l-115-40q-16-5-25.5-18.5T273 1163l-22-227v-6q0-23 16-39.5t40-16.5q22 0 38.5 14t18.5 37l18 190 81 29q2-5 5.5-10t8.5-9q-2-9-3-19t-1-21q0-87 40-164.5T629 781q-28-21-69.5-34.5T518 703q0-16 12-27t29-11q27 0 81.5 24t65.5 30q2 2 4 2 89-59 192-92 0-9-1.5-29t-1.5-34q0-51 11.5-82.5T951 452q20 0 28.5 19t8.5 37q0 12-1 23.5t-1 22.5q0 12 3 25t3 25q60-12 116-12 69 0 128 16t115 59l23-89-149-122q-21-16-21-43 0-25 16.5-41.5T1260 355q20 0 37 12l179 146q21 18 21 43 0 5-2 15l-35 125q87 19 197 83t206 209l30-4q15-2 35-2 92 0 185 36t107.5 55 14.5 40q0 26-18 41t-39 15q-18 0-53-20t-93-35.5-106-15.5l13 25q13 23 37 94.5t35 158.5q122 13 229.5 91.5T2348 1592q0 24-17 41zm-1123 500q13 2 26 2h25q85 0 161-16t145-47l-82-149q-36-64-87-157.5t-75-132.5q-45 15-92 15-95 0-158.5-54.5T1007 1448q0-56 26.5-102t73.5-80q-4-7-42-69.5t-55-109.5q-154 59-255 82.5T592 1193h-23q-9 3-11.5 16t-11.5 41l-12 38q-6 18-9 35.5t-3 38.5l1 21q35-32 80-52t90-20q63 0 107 47t44 120q0 92-71.5 170T611 1726q-22 0-38-4 42 97 113 175t168 134q6-78 83-144.5t167-66.5q62 0 107 46.5t45 122.5q0 79-48 144zm393-158l31 60q79-51 145-141t94-180q-7 0-20 1-79 0-138-44.5t-59-109.5q0-75 77-140.5t151-65.5h11q-22-125-75-218.5t-48-81.5q-33 55-93 88.5t-123 33.5q-77 0-125-46.5t-48-111.5q0-60 37.5-114.5T1513 833q-29-14-59-22.5t-58-8.5q-9 0-17 19t-86 93.5-228 147.5l5 5q15 19 53 83.5t48 81.5q40-17 80-17 87 0 159 65t72 150q0 53-27.5 97t-65.5 72q44 70 98.5 166t113.5 210zM1050.5 805q28.5 28 63.5 28 31 0 47.5-19t16.5-44q0-32-28-61t-65-29q-29 0-46 18.5t-17 44.5q0 34 28.5 62zM674 877q-22 8-33.5 28T629 951q0 39 24.5 65.5T708 1043q29 0 46-24t17-53q0-39-24-65.5T693 874q-5 0-9 1z" + }, + "children": [] + }] +}; +exports.u1F41E = u1F41E; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F41F.js b/dist/noto_emoji_regular/u1F41F.js new file mode 100644 index 000000000..8a979b6bf --- /dev/null +++ b/dist/noto_emoji_regular/u1F41F.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F41F = void 0; +var u1F41F = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2488.5 1679q-18.5 19-52.5 19-59 0-169.5-79t-142.5-87l-37 26q-115 82-171.5 126t-91.5 68q-17 32-36 94.5t-85 62.5q-32 0-67.5-8.5T1570 1884l-8 5q-128 51-249 73t-244 22l-55-1q7 7 20.5 28.5t13.5 34.5q0 8-6 13t-21 5q-54 0-119.5-31T785 1958q-112-18-214-49.5T382 1828l-13-8q-127-68-181.5-125.5T133 1598v-10l1-12-8-8q-8-8-21-25t-13-42q0-50 107-186t251-221 327-123q58-71 142.5-144t128.5-73q17 0 23 12t6 29q0 23-3 44.5t-3 43.5q0 17 2.5 34.5t7.5 32.5q109 6 213.5 26.5T1504 1025q15-10 64.5-61t89.5-51q44 0 80 74t50.5 90.5 30.5 52.5q110 45 175 77.5t76 32.5q5 0 13.5-9.5t20.5-27.5l10-15q37-52 73-98l72-93 24-32q22-30 46.5-46.5T2380 902q29 0 46.5 21t17.5 53q0 43-33 150.5t-33 201.5q0 30 22.5 71.5t26.5 56 19 36.5l21 33q23 38 31.5 62t8.5 41q0 32-18.5 51zM2111 1431l3-18q-62-43-99-58.5t-76-15.5q-33 0-70 6t-92 6q-96 0-164-65t-148-65q-43 0-94 25.5t-105 25.5q-82 0-157.5-45T973 1182q-67 0-133 37.5T675 1257q-47 0-95.5-16.5T491 1224q-43 0-72.5 19t-88 78.5T247 1424l-25 40q-6 9-10 12 24 0 47 6l38 10q43 12 73 29.5t30 40.5q0 26-31 26-14 0-25-5l-23-9q-12-5-25-9.5t-29-4.5q-20 0-30 13 0 4 1 6v4l-1 8q23 34 63.5 66.5T418 1730l14 8q85 45 186 75 19-36 25-75.5t6-83.5q0-94-18.5-185.5t-34-115T581 1316q0-10 6.5-14.5t13.5-4.5q39 0 58.5 48.5t31 80T708 1487l9-6q6-4 75.5-30t137.5-26q34 0 56 5.5t41.5 8.5 19.5 26q0 70-27.5 110.5t-60 74T902 1683q-44 0-83-13t-86-27v24q0 48-10 87t-27 81q96 22 189 33.5t186 11.5q106 0 205.5-17t195.5-51.5 191-85.5 193-127 152-113 67.5-45.5 35.5-9.5zm-1696-80q24 0 45.5 19t21.5 49q0 29-16.5 52t-44.5 23q-25 0-46-18t-21-49q0-30 16.5-52t44.5-24z" + }, + "children": [] + }] +}; +exports.u1F41F = u1F41F; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F420.js b/dist/noto_emoji_regular/u1F420.js new file mode 100644 index 000000000..e4675344a --- /dev/null +++ b/dist/noto_emoji_regular/u1F420.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F420 = void 0; +var u1F420 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2524 1352q2 9 3 18.5t1 18.5q0 35-8.5 69t-8.5 69q0 34 3.5 67t3.5 67q0 90-32 169.5t-60 128-44 132.5-64 120.5-123 36.5q-110 0-264-66.5t-274.5-217-174-270T1369 1575q-25 0-51 10l-52 20q31 19 48.5 44.5t17.5 54.5q0 43-24.5 66.5T1239 1794q-57 0-116-31.5t-86-68.5q-32 8-65.5 14.5T903 1719q19 24 26 46.5t7 54.5q0 73-27.5 114t-78.5 41q-25 0-53.5-13t-64.5-54.5-47.5-106.5-13.5-86q-237-37-408.5-164T71 1285q0-60 68-100t108.5-63.5 116-49.5 135-42.5T628 1009q13-127 100.5-232.5t212-164.5 195.5-59q47 0 86 20t51 53l7 17q11 27 57.5 81.5T1384 819q0 20-7.5 38t-7.5 40q0 17 17 48.5t17 89.5q0 35-20 61.5t-50 41.5q3 0 6 1t6 1q26 0 83.5-57.5T1647 895t271-173 223-43q132 0 247 89t115 218q0 45-7.5 90t-7.5 85q0 25 3.5 48t9.5 46zM426.5 1250q-22.5-24-52.5-24-35 0-56 27t-21 62q0 32 24 55.5t56 23.5q31 0 51.5-26t20.5-60-22.5-58zm1491-137.5q7.5 7.5 27.5 7.5 26 0 49-8l46-16q64-22 97-46t33-52q0-21-18-39t-49-18q-56 0-124.5 48.5T1910 1093q0 12 7.5 19.5zm165 662.5q-58.5-37-124.5-37-18 0-29.5 8.5T1917 1777q0 47 65 98.5t114 51.5q24 0 34.5-18t10.5-41q0-56-58.5-93zm149-292q26.5-18 26.5-52 0-39-30.5-58.5T2158 1353q-47 0-128.5 29t-81.5 55q0 31 58 47.5t142 16.5q57 0 83.5-18z" + }, + "children": [] + }] +}; +exports.u1F420 = u1F420; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F421.js b/dist/noto_emoji_regular/u1F421.js new file mode 100644 index 000000000..83afb5242 --- /dev/null +++ b/dist/noto_emoji_regular/u1F421.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F421 = void 0; +var u1F421 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2489.5 1467.5Q2428 1562 2306 1562q-37 0-70-6.5t-61-14.5l-56-14q-27-6-53-6h-17q-10 0-17 3-41 43-100.5 199t-165 275-277.5 185.5-393 66.5q-277 0-480-101t-304.5-257.5T210 1568q-64-6-111-53.5T52 1406q0-55 33-97-20-22-28.5-49t-8.5-58v-7q4-62 44.5-99t110.5-37q13 0 20 2 88-186 270-294.5T891 658q147 0 293 27t292 91q44-23 91.5-44t98.5-21q72 0 120 36t48 96q0 26-10 50t-31 36q97 49 189 89t110 40q21 0 77-35.5t141-35.5q58 0 110.5 29t91.5 87.5 39 136.5q0 133-61.5 227.5zM530 1150q29 31 67 31 41 0 68.5-31.5T693 1072t-27.5-77-68.5-31q-38 0-67 31t-29 77q0 47 29 78zm-159 148q0-63-18-99t-57-40q-12 0-24.5 1.5T247 1164h-6q-11 0-22.5-1.5T196 1161q-18 0-32.5 9t-14.5 35q0 32 23.5 45t62.5 16 39 17q0 21-20.5 39t-59.5 32-39 51q0 27 23.5 45t47.5 18q42 0 89.5-40t55.5-130zm1740-30q-18 0-36.5-1t-38.5-1q-26 0-62.5 15t-100.5 15q-19 0-38-2l-38-3q-20-3-38-9l-36-13q-18-6-36-11t-37-5-37 5l-75 21q-19 5-38 5-45 0-109-20t-106-20q-44 0-100.5 23t-98.5 23q-19 0-38-4l-80-15q-20-3-39-3-16 0-37.5 3t-37.5 9l-55 21q-27 11-58 11-41 0-103.5-20T536 1272q-17 0-31.5 3t-31.5 9q0 98-42.5 165.5T312 1550v14q0 7-1 15 0 126 90 261t269.5 222 425.5 87q121 0 234-24.5t213.5-79T1715 1903t130.5-238 99-198.5T2066 1418q8 0 14.5 1t12.5 1q7-11 14-32t7-67q0-27-3-53zm130-90l18-5 17-4q13-2 22-10.5t9-22.5-10-22-28-8q-16 0-44.5 16.5T2196 1158q0 9 6 16t17 7 22-3zm82 226q0-3 1-6 0-16-22-25t-54-9h-13q-14 0-21.5 7.5t-7.5 18.5q0 16 22 27t49 11q16 0 27.5-4.5t16.5-13.5zm0-159q-13-12-35-12-26 0-46.5 10.5T2221 1270q0 18 20.5 23t61.5 5q19 0 26-9t7-21q0-11-13-23zm-1217 373.5q-41 56.5-95 57.5l-30 1q-70 0-115-67t-45-103q0-12 6-19t15-13l17-11q10-7 17-23.5t12-64.5q12-2 25-3t27-1q86 0 146.5 39t60.5 88q0 63-41 119.5z" + }, + "children": [] + }] +}; +exports.u1F421 = u1F421; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F422.js b/dist/noto_emoji_regular/u1F422.js new file mode 100644 index 000000000..3f94ce678 --- /dev/null +++ b/dist/noto_emoji_regular/u1F422.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F422 = void 0; +var u1F422 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2292.5 2005.5q-47.5 13.5-95.5 22t-96 8.5q-56 0-87-13.5t-43.5-30.5-12.5-69l1-63q0-29 31-33.5t115-41.5l105-45q9-3 20.5-9t23.5-6l8 1q25 4 51.5 92.5T2340 1940q0 52-47.5 65.5zM719 2028q5 23 8 47.5t3 49.5q0 38-56 58t-154 20l-40-1q-68 0-99.5-19t-31.5-94q0-38 6.5-80.5T370 1933q50 27 123.5 51t225.5 44zm1558-781q-19 34-42 62t-51 53q-28-87-74.5-178.5T2012 1023q14-23 31-60t28-77q69 81 118.5 171t87.5 190zM874 775q-33 21-73.5 57T720 907q-23-8-47-12.5t-50-6.5q52-60 112.5-112T860 686zm297 610l-12-10q-8-3-18-26.5t-16-40.5l-10-26q-51-115-127.5-200T814 945q38-36 67-60.5t45-35.5l49 19q94 37 216.5 95t193.5 107q0 27-1 77l-4 240q0 67-1 128v56q-61-20-105-81t-103-105zm273-388q-67-47-176.5-101T1020 787l-54-21-19-125q84-40 176.5-57.5T1310 566q187 0 383 69.5T1996 803q-3 33-20.5 80.5T1932 978q-38-2-74.5-3t-71.5-1q-110 0-210 9t-132 14zm34 89q52-6 134-12.5t169-6.5q74 0 152 6 58 77 102 168.5t69 177.5q-102 64-279 114t-352 52l2-308q0-59 1-109zm-153 742l-83-2q0-67-8.5-135t-25.5-135q44 60 108.5 91t161.5 31q113 0 314-42.5t329.5-117.5 190.5-156q8 23 15 54t7 59-15 59.5-141.5 104-324 131.5-445.5 59q-42 0-83-1zm234 393q-16 9-63 22t-123 13l-42-1q-86 0-112-18.5t-26-80.5q0-52 15-109.5t26-89 99-31.5l107 4q82 4 92 48.5t26.5 105T1575 2186q0 26-16 35zm869.5-957.5Q2397 1330 2377 1330q-13 0-19.5-18t-13.5-32l-12-23q-6-11-10-20t-4-14q0-3 8.5-8t22.5-13l25-13q24-11 39-20t27-9q8 0 14 5t6 17q0 15-31.5 81.5zM1151 1653q0 5 3 28l5 56q3 32 5 69t2 69q0 79-14.5 85t-119.5 6q-358 0-533.5-62t-267-184.5T140 1415q0-136 53.5-245t156-158.5T566 962q164 0 291 100.5t194.5 265.5 99.5 325zm-473-310.5q26 28.5 60 28.5 35 0 57.5-26.5T818 1282q0-40-26.5-69t-60.5-29q-35 0-57 26t-22 63q0 41 26 69.5zm-388-2q22 26.5 56 26.5 35 0 62.5-30t27.5-70q0-37-23-62.5t-56-25.5q-38 0-63.5 31t-25.5 69q0 35 22 61.5zM516.5 1584q23.5-15 44.5-33l25-21q2 0 26.5-20t24.5-39q0-12-6.5-17t-14.5-5q-30 0-81.5 33t-72.5 33q-35 0-70.5-31t-51.5-31q-11 0-16.5 6t-5.5 15q0 30 59.5 77.5T478 1599q15 0 38.5-15z" + }, + "children": [] + }] +}; +exports.u1F422 = u1F422; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F423.js b/dist/noto_emoji_regular/u1F423.js new file mode 100644 index 000000000..067f180df --- /dev/null +++ b/dist/noto_emoji_regular/u1F423.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F423 = void 0; +var u1F423 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1944 1568q-5 47-15 91t-28 86l152-126q11-8 24-13.5t27-5.5q43 0 65.5 34.5T2192 1781q0 237-134 404.5t-351.5 237T1295 2492q-246 0-455-89t-325-245-116-348q0-113 25-162t73-49q11 0 23 3t21 10l145 95q-10-34-17-68.5t-12-70.5q-154-39-266-189t-112-311q0-59 20-90.5t63-31.5q21 0 45 9.5t51 25.5l28 18q61 37 141 63.5t98 26.5q69-194 174-304.5t197-148 204-37.5q236 0 367 142.5t206 348.5q160-38 240.5-91t126.5-53q41 0 61 32t20 90q0 161-111 311t-266 189zm-358 124l-286 163-311-163-225 163-267-177q-18 68-18 132 0 200 150.5 354.5T1001 2373l48 10q49 11 117 19.5t129 8.5 131-8.5 124-19.5l50-10q149-38 273-121t181-206 57-267q0-24-2-48.5t-5-49.5l-233 193zm-11.5-554.5q21.5 22.5 47.5 22.5 25 0 41-20t16-48q0-33-20.5-57.5T1611 1010q-26 0-42 21.5t-16 49.5q0 34 21.5 56.5zM1152 1257l12 14 61 74q5 6 27.5 39t48.5 35q19 0 29.5-14t67.5-79 57-86q0-23-50-81.5t-68.5-86.5-36.5-28q-15 0-63 64.5t-70 89.5-22 43q0 9 7 16zm-210-118q16 21 43 21 26 0 47-22.5t21-56.5q0-28-16-49.5t-43-21.5q-28 0-48 25.5t-20 54.5q0 28 16 49zm283 110l-11-9 1-11q73-84 84-84 12 0 21.5 12t38.5 39 29 40q0 3-5 9t-12 13l-15 14q-8 8-14 13l-6 8q-9 11-18 18t-14 7q-17 0-26-11l-20-23zm670-537l104-200q10-20 27.5-30.5T2067 471q35 0 66.5 33t78 102 46.5 103q0 29-18.5 51t-44.5 26l-218 39h-6q-3 0-8 1-32 0-54.5-23.5T1886 748q0-19 9-36zm286-3q-20-40-49-82t-65-79l-104 200zm-656-379q-4-11-4-26 0-45 43.5-68.5T1692 212q36 0 62 4.5t41 9.5l4 1q29 3 48.5 25t19.5 52v108q0 25-13 45t-36 28l-137 52q-11 4-28 4-24 0-44-14.5t-28-37.5zm72-26l56 160 137-52V304q-7 0-31-7.5t-67-7.5q-20 0-44 3.5t-51 11.5zM471 757q-26-8-41-28.5T415 682q0-34 36-95t102.5-107T655 434q21 0 40 11t30 32l54 109q9 17 9 36 0 18-9 34l-54 110q-11 20-30 31t-40 11q-11 0-21-3zm184-27l55-108-55-111q-55 24-101 70t-61 102z" + }, + "children": [] + }] +}; +exports.u1F423 = u1F423; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F424.js b/dist/noto_emoji_regular/u1F424.js new file mode 100644 index 000000000..94856fdbc --- /dev/null +++ b/dist/noto_emoji_regular/u1F424.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F424 = void 0; +var u1F424 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2290 1544.5q-134 192.5-263 290T1740 1989l34 27q16 13 34 24l25 14q24 14 35.5 30.5t11.5 41.5q0 29-25.5 64.5T1804 2258t-52.5 60.5-55.5 28.5q-25 0-47.5-18.5T1626 2285q0-34 50-82.5t50-82.5q0-21-18.5-44.5T1644 2020q-81 23-163.5 33t-166.5 10q-37 0-74-1t-73-5l-37 76q-29 58-41 136t-85 78q-19 0-105-28t-111-46.5-25-54.5q0-25 14-45.5t44-20.5q28 0 75.5 23t74.5 23q51 0 76-80.5t23-74.5q-325-62-494.5-289T406 1187q-44-15-84.5-33.5T238 1118l-19-7q-16-5-30-14t-14-19q0-13 23-23.5T426 967q19-119 108.5-258.5t224.5-202 327-62.5q83 0 185 26.5t199 80 154.5 129 137 170T1933 1001t170 57q37 0 94.5-14t98.5-14q58 0 93 42t35 110q0 170-134 362.5zm-1519.5-651Q748 866 718 866q-33 0-56.5 27T638 961q0 42 23.5 66.5T718 1052q32 0 53.5-28t21.5-65q0-38-22.5-65.5zM1987 1194q-69-38-225-38-34 0-67-2l-74-6-74-4q-13 0-29.5-2.5t-33.5-2.5q-19 0-32 7t-13 17q0 42 170.5 59.5T1784 1240l50 4q49 4 79.5 23.5t30.5 60.5q0 48-35 132t-140 141-250 57q-91 0-167-21.5t-119-53.5-63-32q-8 0-13 6.5t-5 14.5q0 39 126 107t278 68q141 0 267-66t179.5-165.5T2056 1328q0-96-69-134z" + }, + "children": [] + }] +}; +exports.u1F424 = u1F424; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F425.js b/dist/noto_emoji_regular/u1F425.js new file mode 100644 index 000000000..e6408c740 --- /dev/null +++ b/dist/noto_emoji_regular/u1F425.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F425 = void 0; +var u1F425 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2388 1751q-63 29-186 29-20 0-39-1l-38-2q0-3 5-33.5t5-76.5q0-47-12-122.5t-46-75.5q-18 0-22.5 9t-4.5 21q0 26 1 51.5t1 51.5q0 184-120.5 321T1604 2128q3 11 3 20l-1 33q0 74 74.5 118.5t74.5 85.5q0 27-34.5 42.5T1625 2443q-59 0-92-27t-33-101q0-17 1.5-32t1.5-31v-28q0-14-1-29v-22q0-11 2-19-43 8-97 15t-111 7q-54 0-104.5-7t-91.5-15q2 9 2 19.5t1 21.5q0 15-1 29v28q0 16 1 31t1 32q0 77-34 102.5t-90 25.5q-62 0-97-15.5t-35-42.5q0-39 75.5-86.5T999 2181q0-8-1-16.5t-1-16.5l1-10q0-5 2-10-198-60-325.5-206.5T547 1595q0-22 1-44t1-45q0-17-4-27t-22-10q-37 0-48 77t-11 112q0 29 2 59t9 60l-37 2q-20 0-41 1-124 0-186.5-29t-62.5-88q0-63 82.5-132T420 1325t186.5-352T801 624t231-190 271-56q178 0 297 62.5T1818 640t175.5 338 182 340.5T2366 1529t85 134q0 59-63 88zM963.5 974Q943 947 908 947q-33 0-59.5 30.5T822 1050q0 37 21.5 63t51.5 26q34 0 61.5-31t27.5-71q0-36-20.5-63zm449 179q-61.5-39-109.5-39-20 0-40 5.5t-37 14.5l-28 17q-27 16-46.5 37t-19.5 41q0 15 15 33t36 34l21 17q6 4 41 30.5t61 26.5q10 0 42-21t58.5-37 47-36 20.5-44q0-40-61.5-79zm348-176.5Q1734 947 1700 947t-54.5 26-20.5 60q0 42 26 74t62 32q30 0 52-26.5t22-64.5q0-42-26.5-71.5z" + }, + "children": [] + }] +}; +exports.u1F425 = u1F425; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F426.js b/dist/noto_emoji_regular/u1F426.js new file mode 100644 index 000000000..f577972db --- /dev/null +++ b/dist/noto_emoji_regular/u1F426.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F426 = void 0; +var u1F426 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2383 1247.5q-46 42.5-110 69t-143 76.5l-108 65-49 32q-45 30-87.5 56.5T1808 1602q12 7 19 14l6 5q21 18 27.5 28.5t6.5 26.5q0 30-18 56t-41 33l-7 3q-3 3-6 8t-7 10l-3 4q-20 31-54.5 47t-56 36-68 35-102.5 15q-125 0-247-69.5t-185-171-73-156.5-26-55q-7 0-12 11t-5 23q0 64 51.5 171t149.5 190 212 108q-11 5-21.5 9t-20.5 7l12 59q5 25 5 57 0 31-10.5 69l-21 76-68.5 38q-23 0-42.5-6t-19.5-23q0-9 5-18.5t12-20.5l13-20q14-22 27.5-66.5t13.5-89.5v-15q0-6-1-14-49 14-103 19l-7 45q-4 22-4 43 0 64-63 99t-159 35q-15 0-28-4.5t-13-20.5q0-46 61.5-55.5t98-38.5 36.5-97q-164 0-298.5-51t-221-142.5T443 1581l-11-94q-13-107-32-153.5t-23-57.5l-46-3q-34-2-67.5-19.5T230 1197q0-36 35.5-69t39.5-37l10-11 11-11q6-6 11-13 0-210 145-335.5T803 595q114 0 211.5 55.5t156 142.5 74.5 153 98 144.5 135 78.5q36 0 86-75t122-142.5 174-67.5q68 0 146.5 21.5T2181 956t172 83 76 114q0 52-46 94.5zM355 1204h16l15 2 14 3q20 3 41 5.5t41 2.5l18-1q-2-8-6-17l-6-13-9-18q-6-14-24.5-49.5T425 1083q-14 0-29 15l-39 40q-2 3-5 6l-8 8q-12 9-19 16l-15 16q-8 8-9 13 5 2 23 3.5t31 3.5zm438-215q-17-21-45-21-24 0-42 19.5t-18 48.5q0 26 17.5 48t43.5 22q27 0 44-21.5t17-48.5q0-26-17-47z" + }, + "children": [] + }] +}; +exports.u1F426 = u1F426; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F427.js b/dist/noto_emoji_regular/u1F427.js new file mode 100644 index 000000000..926592d5b --- /dev/null +++ b/dist/noto_emoji_regular/u1F427.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F427 = void 0; +var u1F427 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2222 1720q61 29 83.5 58t22.5 62q0 40-26 69t-65 45l-37 15q-56 20-110.5 25t-102.5 5h-40q-8 0-11-1 0 51 21 70t75 27q64 0 100.5 21t36.5 63q0 57-74 96t-168.5 92.5T1677 2458q-13 26-40 59t-52 55l-34 30q-18 16-44 16-10 0-27-16.5t-28-16.5q-6 0-14 4l-19 10q-11 5-23 9.5t-25 4.5q-16 0-27-9.5t-11-33.5q-8 0-20.5 1.5t-24.5 1.5q-17 0-26.5-5.5t-9.5-16.5q0-12 13.5-25t32.5-25l16-10-70-5q-35-2-70-6-3 4-41.5 44.5T1058 2565q-10 0-27-18t-28-18q-7 0-16 4l-19 10q-11 6-23 10.5t-24 4.5q-17 0-28.5-9.5T881 2516h-26q-11 0-22 1-17 0-25.5-6.5T799 2495q0-14 18-30.5t59-41.5l39-24q-14-8-26.5-16t-26.5-15l-11-7q-92-57-149-136.5T614 2048q-36 11-74.5 18t-91.5 7q-82 0-129.5-22.5T271 1987q0-15 7.5-36.5t56.5-89T435.5 1688t81.5-253 59.5-222.5 51.5-113 45-100T696 888q0-19-2-37t-2-37q-34 0-67 4.5T558 830l-27 7q-14 4-28 4-23 0-31.5-6.5T463 815q0-30 38-75t118-86l96-50q52-136 116.5-208.5t170.5-118 219-45.5q98 0 189 33.5t171.5 108 135 171T1806 751t84 349 108 358.5 120 180 87 73.5zm-572.5 640q129.5-29 238.5-87-94-75-148.5-157T1635 1888t-56-238-32.5-202.5T1473 1220l-2-6q-10-28-26-51l-6-11q-10-13-17.5-28t-7.5-31q0-17 10.5-28t32.5-18l23-6q82-20 130.5-73.5T1659 835q0-74-16-109t-49.5-70-65.5-35q-28 0-48.5 19t-36.5 81l-9 31q-20 74-34.5 90.5T1358 890l-33 38q-12 12-93.5 67.5T1017 1051q-66 0-125-16.5T782 988q-18 57-35.5 105.5T721 1192l-4 25q-18 102-33 227t-15 252q0 223 60 365.5T904 2272l11 8q36 19 71.5 41.5t136.5 45 251 22.5q146 0 275.5-29zM1239 540.5q-21-25.5-53-25.5-30 0-51 27t-21 61q0 33 20.5 61t51.5 28q32 0 53-26.5t21-62.5q0-37-21-62.5z" + }, + "children": [] + }] +}; +exports.u1F427 = u1F427; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F428.js b/dist/noto_emoji_regular/u1F428.js new file mode 100644 index 000000000..6fc8bb2eb --- /dev/null +++ b/dist/noto_emoji_regular/u1F428.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F428 = void 0; +var u1F428 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1240 2444q0 15-1 29v29l1 33q0 23-12 32t-58 35.5-126.5 46T870 2668q-143 0-262.5-31T419 2547l-11-13q-4-5-4-16v-57q0-86-1-172t-1-176V769q0-168 6-258.5t6-141.5q0-66 112-115.5T810 204q117 0 214.5 22t153 60.5T1235 357l2 32q-63-20-123-20-140 0-253.5 103.5T747 751q0 56 11.5 114T804 985l6 10q7 14 9.5 30t2.5 34q0 33-4 70.5t-4 76.5q0 52 12 100-69 16-110.5 68T674 1485q0 56 29.5 112.5t99 113.5 145 83 84.5 27q-34 17-64 49.5t-51 75.5q-15-8-35-14.5t-45-6.5q-72 0-114 54t-42 101q0 112 165 228t253 116q25 0 47-6t42-13q14 9 26 19t26 20zM2255.5 936q-22.5 68-57.5 110l-7 9-16 18q-9 9-12 22l-1 15 2 30q0 16 1 30 0 139-47 239.5t-131.5 162-168 79-83.5 32.5q0 10 25 16.5t59 6.5l32 1 56-2q25 57 36.5 121t11.5 132q0 193-143 326.5T1461 2418q-67 0-120.5-17t-89-50.5-60.5-33.5q-10 0-39 12.5t-53 12.5q-56 0-196-95.5T763 2081q0-22 21.5-48t52.5-26q21 0 50 15t50 15q31 0 44-37.5t55-81.5 160-44q7 0 9.5-1.5t2.5-7.5q0-11-21.5-25t-56.5-20q0-5 1-10.5t1-10.5q0-40-43.5-47.5T966 1713t-144.5-95.5T756 1487q0-41 28-68t66-34q36 115 171.5 203t281.5 88q11 0 22-2t11-8q0-5-16-12.5t-52-18.5l-28-7q-116-45-174.5-90.5t-114-133.5-55.5-197q0-35 4-72t4-73q0-28-4.5-55T881 954l-5-8q-24-47-35.5-95.5T829 752q0-142 89-221.5t196-79.5q48 0 97 17.5t107 55 129 37.5l9-1h12l19-1h31q41 0 78.5 4.5T1674 576l15 2q13 3 39 3 62 0 128-31.5t139-31.5q110 0 196.5 82t86.5 207q0 61-22.5 129zm-1171-75.5Q1098 848 1113 830l31-36q24-28 68-55.5t44-51.5q0-22-38-45t-77-23q-57 0-101 42t-44 102q0 41 20 75.5t45 34.5q10 0 23.5-12.5zm158.5 260q-18-21.5-48-21.5-26 0-45.5 19t-19.5 47q0 25 18.5 45.5t42.5 20.5 47-17.5 23-43.5q0-28-18-49.5zm370.5 12.5q-44.5-50-102.5-50-73 0-110.5 71.5T1363 1298q0 76 42.5 116.5T1519 1455q73 0 106-51.5t33-138.5q0-82-44.5-132zm289 128q19.5-19 19.5-46 0-26-19-45.5t-47-19.5q-26 0-44.5 18.5T1793 1215q0 24 17.5 44.5t45.5 20.5q27 0 46.5-19zm169-542q-42.5-42-99.5-42-39 0-72 16t-33 36q0 23 39 56t58 65l25 41q12 20 23.5 34t23.5 14q26 0 52-37t26-81q0-60-42.5-102z" + }, + "children": [] + }] +}; +exports.u1F428 = u1F428; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F429.js b/dist/noto_emoji_regular/u1F429.js new file mode 100644 index 000000000..afb99d6fc --- /dev/null +++ b/dist/noto_emoji_regular/u1F429.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F429 = void 0; +var u1F429 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2262.5 1036q36.5 39 36.5 83 0 38-29 66.5t-70 28.5q-8 0-12-2-13 31-28 61t-38 57q12 44 12 86 0 74-33 142.5t-93 108.5q4 11 9 29.5t11 40.5l11 47q5 25 8 49 58 18 93 58t35 91q0 34-17 67.5t-47 51.5l-15 9q-8 5-15.5 8.5t-11.5 4.5q-10 27-30 50t-50 23q-17 0-31-7.5t-14-24.5q0-9 5-16.5t10-13.5q-24-4-48-12.5t-41-25.5q-14 11-26.5 19.5T1816 2130l-10 25q-10 24-25.5 36.5T1744 2204q-16 0-28.5-7.5T1703 2171q0-9 3.5-15.5t9.5-14.5q-71-12-93-56t-22-84q0-42 17-75.5t45-61.5l-12-27q-46 38-120.5 62t-90.5 30l6 42q2 21 6 43 68 16 104.5 69t36.5 131q0 53-29 80t-76 42q-11 38-32.5 62.5T1393 2423q-20 0-34.5-11t-16.5-37q0-7 3.5-13t6.5-13q-47-5-83.5-29t-50.5-79q-8 55-41.5 78.5T1092 2348q-14 34-36.5 54t-55.5 20q-23 0-40.5-11t-17.5-37q0-12 4-18.5t10-15.5q-56-16-85.5-50.5T841 2199q0-72 43-119t109-64v-82q-158-29-235-119t-77-203q0-20 4.5-39t4.5-33q0-5-4-6h-8q-14 0-30.5 5t-35.5 5q-57 0-111-18t-103-69.5-73-88.5-24-97q0-64 39-140t113-150l48-49q9-9 19-20.5t10-15.5q0-11-22-44.5T486 755q0-156 137-252t310-96q112 0 214 21.5t184.5 83.5 149 138 79.5 188q0 58-9 114.5t-9 114.5q0 55 11.5 110.5T1584 1286l16 48q8 25 8 48 0 96-79.5 162t-184.5 66q-63 0-113-32t-102-152q-4 0-4 8 0 125 59 195.5t168 70.5q135 0 230.5-86.5T1678 1383q0-20-1-30l-2-8q-6-35-17-70l-21-69q-11-34-19-68.5t-8-69.5q0-26 3-50.5t3-47.5q51 4 109 34.5t95 80.5l24 32q11 15 21.5 25.5t18.5 10.5h23q47 0 100.5 28.5t82.5 78.5q16-15 22-31.5t17-34.5q-26-12-44.5-34.5T2066 1108q0-46 34.5-78.5T2178 997q48 0 84.5 39zm-1222 355q78.5-28 78.5-79 0-14-2-28.5t-2-28.5q0-55 12.5-107.5T1160 1046l4-8 12-30q2-7 2-9t-10-3h-38l-23 1q4 11 4 26 0 30-21.5 53.5T1040 1100q-27 0-45-20t-18-50q0-9 2-19t7-19q-42 0-82-8l-78-14q0 29-19.5 52t-47.5 23q-25 0-42.5-19T699 981q0-22 12-40-5-3-11-7.5t-11-6.5h-10q-9 4-34.5 82T612 1146q20-11 33.5-16t35.5-5q56 0 97.5 29t41.5 68q0 37-32 59.5t-81 22.5q-40 0-70-15 33 62 97 96t143 34q85 0 163.5-28zm293.5 632q-4-18-7-36l-6-36q-36 0-70 4t-69 4q-17 0-34-1t-34-3q0 18-1 36t-1 35q36 17 64 47t42 79q10-38 35.5-69t61.5-50zm487-320q-11 0-21.5 2t-21.5 10q0 24 2 40l3 30q0 13 2.5 25.5t3.5 27.5q23 7 43.5 19t37.5 31q9-11 17.5-19.5t19.5-16.5q-18-39-44-77.5t-42-71.5z" + }, + "children": [] + }] +}; +exports.u1F429 = u1F429; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F42B.js b/dist/noto_emoji_regular/u1F42B.js new file mode 100644 index 000000000..89ed1dae1 --- /dev/null +++ b/dist/noto_emoji_regular/u1F42B.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F42B = void 0; +var u1F42B = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2396 1768.5q-45 55.5-84 55.5-6 0-12-1.5t-6-8.5q0-8 5.5-19t5.5-31q0-19-13-52.5t-13-63.5q0-23 11.5-46.5t42.5-34.5q-2-64-35-119t-117-95l-43-19q12 45 19.5 90t7.5 88q0 104-20.5 229.5T2116 1970t-20 124.5-68 21.5q-18 0-33.5-5.5T1979 2083q0-25 13-64t13-64q0-11-1.5-25.5t-1.5-45.5q0-75-9.5-99.5t-32.5-45-81-38.5q-14 67-22.5 178.5t-19 141-71.5 29.5q-19 0-34-5.5t-15-27.5q0-28 15.5-80t15.5-123q0-49-10.5-91.5T1699 1657q-76 12-108 103t-32 160q0 62-2 123.5t-2 123.5q0 15 2.5 40t2.5 51q0 66-29.5 80.5T1466 2353q-26 0-43-12t-17-46q0-31 16-55t16-50q0-98-57.5-187t-89.5-114l-1 73q0 37-1 75 0 14 2.5 39t2.5 51q0 58-24 77t-68 19q-30 0-46.5-12.5T1139 2164q0-33 16.5-56t16.5-52q0-14-7.5-75t-13.5-83.5-44-89.5q-120-36-171.5-72T814 1628.5t-126-175-56-133.5q0-8 4-16t9-13l13-11q13-10 23.5-22.5T692 1234q0-14-10-14-11 0-23 9l-22 15q-63 39-109.5 56t-97.5 17q-93 0-181-59.5T161 1111q0-102 130-181.5T441 776t74-113q-23-23-23-56t20.5-57.5T563 525q27 0 45.5 22.5T636 601q51-14 99-14 38 0 72 8.5t63 24.5q17-28 36-41t44-13q36 0 64 24t28 58q0 28-17.5 48T981 729q23 40 35.5 84t12.5 90q0 53-6.5 78t-6.5 43q0 32 16.5 60t42.5 28q44 0 98-165.5T1282.5 700t123.5-81q39 0 67.5 22t53 62.5T1571 744q17 0 39-43t57-75 76-32q49 0 90 48.5t67 109.5l38 83 38 87q24 54 73 153t69 176q128 53 202 128.5t74 191.5q28 14 37.5 32.5t9.5 46.5q0 63-45 118.5zM810 858H688q-3 6-5.5 14t-2.5 18q0 26 17.5 45t43.5 19q30 0 52.5-19.5T816 883q0-13-6-25z" + }, + "children": [] + }] +}; +exports.u1F42B = u1F42B; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F42C.js b/dist/noto_emoji_regular/u1F42C.js new file mode 100644 index 000000000..14c7dabc6 --- /dev/null +++ b/dist/noto_emoji_regular/u1F42C.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F42C = void 0; +var u1F42C = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2043 1726q-63 155-172 268.5T1642 2163t-120 135q0 38 7.5 79t7.5 82q0 46-15.5 80.5T1479 2574q-50 0-100-88.5t-50-129.5q0-33-11-46.5t-40-13.5q-23 0-46.5 5t-46.5 5q-103 0-141.5-13t-38.5-40q0-48 67-74t143-26q26 0 56.5 7t58.5 7q75 0 140-56t105-157l14-38q12-32 21-74t9-75q0-53-23.5-85.5T1530 1649q-17 0-36 5l-38 10q-3 14-4 27t-1 26q0 47 13.5 108t13.5 99q0 27-10 41.5t-38 14.5q-46 0-105-45.5t-93.5-132.5-34.5-109q-187 12-280 90.5T751.5 1958 603 2054q-47 0-73.5-30.5T503 1928q0-35 6-69l25-137q6-34 6-69 0-65-23-166t-23-164q0-170 111-337t298.5-266 397.5-99h36q96-133 261.5-203.5T1893 347q79 0 117.5 25.5T2049 445q0 35-30.5 86T1951 674.5 1901 879q94 94 149.5 233t55.5 292q0 167-63 322zm-968-342q-35-37-78-37-37 0-61.5 29t-24.5 70q0 51 34 87t76 36q35 0 62-28.5t27-71.5q0-48-35-85z" + }, + "children": [] + }] +}; +exports.u1F42C = u1F42C; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F42D.js b/dist/noto_emoji_regular/u1F42D.js new file mode 100644 index 000000000..6a34ba29a --- /dev/null +++ b/dist/noto_emoji_regular/u1F42D.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F42D = void 0; +var u1F42D = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2381.5 1260q-65.5 118-173 173.5T1989 1489h-17.5l-1.5 4q0 5 22 78t22 147q0 145-85 277t-260.5 201-369.5 69q-191 0-368-69t-262-201-85-274q0-71 22.5-149t22.5-79q0-3-1.5-3t-17.5-1q-114 0-221.5-57t-172-174-64.5-247q0-190 131-311.5T597 578q112 0 211 47.5t160 127 72.5 157T1074 987q16 0 68-16.5t157-16.5q98 0 161.5 16.5T1525 987l12-2q8-3 17-66.5t63-147T1776 633t226-55q187 0 316 124t129 309q0 131-65.5 249zM823 1220l76-107 3-13q0-8 1-22 0-108-67.5-195T648 796q-108 0-196 77t-88 188 87 193 200 82q77 0 101-26t71-90zm191 341q-25-31-60-31t-59.5 30-24.5 72 24.5 72.5T954 1735t60-31 25-72q0-40-25-71zm404 412q27 0 65.5-21t38.5-48q0-8-5.5-14t-13.5-6q-11 0-34.5 15.5T1408 1915q-32 0-47.5-13.5T1340 1865q26-14 42.5-42.5t16.5-63.5q0-49-29-81.5t-66-32.5q-39 0-66.5 33.5T1210 1759q0 34 15.5 61.5t39.5 41.5q0 32-12.5 43.5T1215 1917q-14 0-27-4.5t-25-10.5l-22-10q-10-4-18-4-9 0-14 7t-5 14q0 24 30 41.5t66 23.5q2 60 24 102t58 42q13 0 20-8t12-8q7 0 15.5 8t22.5 8q23 0 37.5-28.5t21.5-73.5zm296.5-413q-24.5-30-59.5-30t-60 30-25 72q0 43 24.5 73t60.5 30q35 0 59.5-30.5t24.5-72.5-24.5-72zm442.5-306q87-82 87-189 0-111-86-190t-197-79q-122 0-188.5 87.5T1706 1078q0 25 4 35l42 59q92 134 119 149t85 15q114 0 201-82z" + }, + "children": [] + }] +}; +exports.u1F42D = u1F42D; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F42E.js b/dist/noto_emoji_regular/u1F42E.js new file mode 100644 index 000000000..031bd3fd4 --- /dev/null +++ b/dist/noto_emoji_regular/u1F42E.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F42E = void 0; +var u1F42E = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2167 1039.5q-56 54.5-196 75.5l-60 10q3 17 4 34t1 34v17q0 9-1 17l-4 44q-4 41-7 81t-3 80q0 119 39.5 223.5T1980 1858q0 196-176 325t-441 129q-335 0-545.5-133.5T607 1824q0-85 30-165.5t50-161 20-165.5q0-11-1-23t-1-23l1-77q0-39 5-79-30-7-119-20.5t-152-65T377 897q0-81 53-129.5T579 719q83 0 158.5 50T851 831q-4-36-5.5-63.5T844 703q0-84 31-126.5t92-42.5q49 0 84.5 34.5T1151 739q33-5 66.5-7t68.5-2q76 0 147 12l18-38q48-109 87.5-142.5T1621 528q59 0 90.5 41.5T1743 695q0 28-2.5 58.5T1737 834q40-10 121-62.5t163-52.5q91 0 146.5 48t55.5 130q0 88-56 142.5zM2098 838q-27-21-77-21-34 0-57 8t-43 21l-61 38q-31 20-66 35t-79 15q-43 0-70-19.5t-130.5-53T1270 828q82 97 82 245 0 133-58 239t-138.5 136.5-182.5 43T760 1609q-24 48-40 109.5T704 1824q0 151 135.5 252t355.5 126q-108-24-189-99.5T925 1928q0-38 15-82-17-2-34-14t-17-30q0-26 32-41.5t76-15.5q20 0 40 3t38 9q34 0 67 31.5t33 74.5q0 14-2.5 23t-9.5 22l-4 5q0 2-1 7 0 36 42.5 59t103.5 23q45 0 83-15t51-40l3-4q-20-9-28.5-28t-8.5-44q0-57 50-91.5t119-34.5q45 0 78 15t33 41q0 14-9 23t-20 14q14 26 22 54t8 51q0 114-98.5 189t-245.5 81h29q224 0 367.5-102.5T1881 1858q0-81-38.5-187t-38.5-240q0-42 3.5-84t6.5-85l2-42q0-8 1-14.5t1-14.5q0-33-7-65.5t-7-35.5q0-61 160.5-73.5T2125 897q0-38-27-59zM1092.5 2079.5Q1186 2142 1314 2142q127 0 211.5-55.5T1610 1945q0-49-29-83.5t-52-34.5q-11 0-22 9t-11 20q0 14 9.5 33t9.5 50q0 54-61.5 95.5T1304 2076q-92 0-155.5-42t-63.5-114q0-25 11-44l7-12q0-5-8.5-19t-21.5-14q-36 0-55 29t-19 71q0 86 93.5 148.5zM948 801q22-14 48.5-23t55.5-18l-30-61q-14-27-26.5-47.5T967 631q-17 0-21.5 18.5T941 702q0 24 2 48t5 51zm14 472v14q0 38 20 63.5t48 25.5q31 0 55.5-30.5t24.5-70.5q0-36-18.5-62.5T1041 1186q-33 0-56 31t-23 56zm570-512q28 8 54.5 17.5T1640 799v-8q0-15 2.5-36t2.5-61q0-31-5-50t-19-19q-11 0-26.5 17t-32.5 55zm113 451.5q25 29.5 25 74.5 0 34-19 59.5t-50 25.5q-29 0-55.5-30t-26.5-74q0-37 19.5-61t49.5-24q32 0 57 29.5z" + }, + "children": [] + }] +}; +exports.u1F42E = u1F42E; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F42F.js b/dist/noto_emoji_regular/u1F42F.js new file mode 100644 index 000000000..ba000a6e9 --- /dev/null +++ b/dist/noto_emoji_regular/u1F42F.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F42F = void 0; +var u1F42F = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2109.5 1966Q2000 2068 1892 2095l-85 21q-106 27-131.5 66t-80.5 85-137.5 77-183.5 31q-142 0-240-52.5T904 2210t-132-86-191.5-88.5-145.5-165-54-224.5q0-48 14.5-131.5t31-179T464 1170l16-54q3-12 3-22 0-20-21.5-50T424 966t-16-105q0-128 87-215t217-87q47 0 100 17.5T915 624l43 31q6 4 8 4 3 0 10-3l23-7q66-20 134.5-29t140.5-9q139 0 277 39l47 14q23 8 50 8 16 0 32-12t72-37 122-25q130 0 217 87.5t87 217.5q0 85-38.5 144.5T2101 1135q0 21 11.5 52.5T2144 1334t47.5 212.5T2219 1718q0 146-109.5 248zm7.5-210q-59 63-147.5 103t-181.5 40q-20 0-38-6.5t-18-25.5q0-23 69.5-35t169.5-74 132-151l-6-28q-50 75-152.5 122t-196.5 47q-19 0-33.5-4t-14.5-17q0-20 43.5-31t148-76.5T2059 1416q-5-15-6.5-31t-5.5-32q-17 18-44.5 32t-53.5 44l-29 34q-15 17-29 28.5t-29 11.5q-11 0-11-14 0-11 16.5-39.5t16.5-63.5q0-40-18-71t-18-36q0-3 3.5-7t11.5-4q17 0 42.5 30.5t49.5 30.5q22 0 34-40.5t12-72.5q0-18-4.5-38t-9.5-39l-9-35q-5-16-5-27 0-8 3-11t13-3q13 0 25 14 6-18 14-33l16-28q19-31 26.5-56.5t7.5-58.5q0-84-56-143.5T1875 698q-33 0-62.5 10.5T1764 729l-41 20q-19 10-37.5 16.5T1644 772l-33-2-5-2q-33-4-70.5-18.5T1382 718q-9 3-13.5 11t-4.5 26q-4 0 106.5 22.5T1581 838q0 11-13.5 15t-26.5 4h-8q-45-6-88.5-13t-88.5-11l-5 38q0 5 11 7.5t23 4.5l14 2 30 7q38 9 60.5 21.5T1512 942q0 10-11 14t-22 4q-35 0-70-8t-69-12q-6 24-18.5 44.5T1288 1011l-7 1q-24 0-38-19.5t-22-59.5l-29 2q-17 0-40 7t-34 7q-10 0-25.5-8t-15.5-21q0-16 32.5-28.5T1212 872l-2-42q-38 4-76.5 12.5T1056 851q-14 0-30-3t-16-14q0-13 16-23.5t50-21.5l27-8q25-8 50.5-14.5t53.5-9.5q-2-13-9.5-27t-22.5-14q-37 5-74.5 11.5T1027 745l-9 3q-11 4-25 6.5t-29 2.5q-28 0-49-12t-38-25l-28-18q-29-18-67-31.5T711 657q-90 0-146.5 59.5T508 860q0 75 36.5 129t37.5 93q6-9 14-17t18-8q8 0 8 11 0 14-5 33l-6 25q-8 17-10 29.5t-2 33.5q0 50 20.5 82.5T657 1304q5 0 12-6l14-12q8-7 16.5-12.5t18.5-5.5q11 0 11 10 0 13-19.5 32t-19.5 76q0 61 16.5 94t16.5 42q0 4-1.5 5.5t-5.5 1.5q-26 0-56-38t-34.5-63.5T591 1382t-57-74l-3 8q3 145 62.5 225T741 1653t88 66q0 13-10 21.5t-30 8.5q-93 0-175.5-40.5T485 1589q0 60 14.5 96.5t42 72.5 70 59 108 49 65.5 46q0 10-25 18t-61 8q-27 0-53-5t-52-14q20 28 91 63t159 61.5 132 97 126.5 102T1274 2274q114 0 198-46t129-111 193.5-100 229-106 93.5-155zm-517-90q-8 15-10 30.5t-2 30.5q0 24 5 48l11 49 10 50 5 49q0 90-98 140.5t-240 50.5q-116 0-230.5-47.5T936 1900q0-34 16-89.5t16-96.5q0-23-5.5-44.5T940 1631q-91-22-143.5-76.5T744 1422q0-31 12.5-58t37.5-27q23 0 28.5 52.5t83 96.5 169.5 44q71 0 109-29.5t38-86.5v-11q0-5-1-11-72-17-141.5-56T971 1240q-9-14-11.5-22t-2.5-13q0-14 12-19t30-5q17 0 36 4l33 7q54 11 110 26t112 15q47 0 123-18t124-18h19q17 0 26.5 6t9.5 16q0 11-8 25.5t-17 25.5l-9 12q-34 37-98 68.5t-113 42.5l-3 15q-2 7-2 15 0 43 19.5 67t97 36 119.5 12q65 0 119-24.5t67-93.5l3-16q2-15 8-28t15-13q17 0 28.5 20.5t11.5 42.5q0 91-56.5 153t-163.5 74q-3 3-5 6zm-149 310.5q48-31.5 48-87.5 0-79-60.5-143t-157.5-64q-87 0-152.5 59t-65.5 144q0 51 27.5 71t92 36 131.5 16q89 0 137-31.5zM1799.5 762q40.5-24 84.5-24 56 0 91.5 37.5T2011 872q0 42-22.5 89t-48.5 47q-24 0-56.5-55t-78.5-82.5-46-54.5q0-30 40.5-54zM606 956.5Q581 913 581 864q0-59 32.5-96.5T705 730q37 0 80.5 19t43.5 54q0 28-46 58t-75.5 84.5T655 1000q-24 0-49-43.5zm997.5 155.5q-32.5-30-32.5-71 0-32 23-57t62-25 71.5 30 32.5 71q0 34-23.5 58t-61.5 24q-39 0-71.5-30zM911 1140q-30-8-48.5-31t-18.5-54q0-41 30.5-69.5T942 957q39 0 63.5 24.5t24.5 59.5q0 42-30 71.5t-70 29.5zm-209.5 18.5Q663 1132 663 1094q0-36 25-67t48-31q10 0 12.5 4.5t2.5 10.5q0 8-3 18l-12 40q-3 9-3 13 0 19 13.5 29t30.5 16l30 12q13 6 13 16 0 12-10.5 21t-27.5 9q-42 0-80.5-26.5zm1242 17.5q-14.5 17-51.5 17-40 0-66.5-11.5T1799 1149v-7h46q25 0 41.5-9t16.5-39q0-12-1-19l-3-12q-2-5-3-10.5t-1-14.5q0-14 11-14 18 0 35 33t17 70q0 32-14.5 49z" + }, + "children": [] + }] +}; +exports.u1F42F = u1F42F; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F430.js b/dist/noto_emoji_regular/u1F430.js new file mode 100644 index 000000000..1a94964c6 --- /dev/null +++ b/dist/noto_emoji_regular/u1F430.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F430 = void 0; +var u1F430 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2064.5 958.5Q1866 1194 1837 1223l-24 25q-26 26-33 38.5t1 66.5 83.5 224 75.5 323q0 189-107.5 307t-277 187.5T1180 2464q-213 0-419-69.5T445.5 2197 336 1896q0-96 35.5-195t63.5-195.5 77-190.5 118-158l4-4 3-38q21-316 56-466t104.5-264.5T975 200t214-70q114 0 182 71t68 185q0 153-97.5 355T1230 1048h6q28-82 30-95t50.5-109.5 91.5-159 91.5-118 88-90.5 77-61.5 69-43 63-28.5 57-18 51.5-9.5 53-3.5q144 0 224.5 73.5T2263 567q0 156-198.5 391.5zM1667 1296q2-47 50.5-100.5t52.5-58.5l114-131q151-174 210.5-269.5T2154 570q0-70-54.5-110T1958 420q-126 0-260.5 106.5T1472 785t-114 233l-14 50q-12 40-22.5 58.5t-17 24.5-27.5 6q-31 0-47.5-1t-38.5-3l-36-3q-24-2-30-5t-6-56q0-138 105.5-350T1330 385q0-71-36-109t-105-38q-114 0-221.5 106.5t-166 312T743 1160q0 55-30 70.5t-81.5 89.5-90 208.5-68 203T444 1893q0 141 96.5 245t275 161 364.5 57q160 0 299.5-49.5t246-145T1832 1898q0-139-82.5-317t-82.5-285zm-793.5 600q-29.5 33-66.5 33-39 0-67.5-33.5T711 1816q0-45 28.5-78t68.5-33q38 0 66.5 32.5T903 1816q0 47-29.5 80zm642 0q-27.5 33-67.5 33-38 0-67-33t-29-80 28.5-79 66.5-32 67 31.5 29 79.5q0 47-27.5 80zm-172 292q-27.5 25-46 32t-56.5 7q-41 0-62-13t-27-13q-9 0-32 16t-73 16q-44 0-81.5-24t-37.5-63q0-10 7.5-18.5t27.5-8.5q12 0 31.5 24t54.5 24q36 0 48.5-16t12.5-57l-22-9q-24-9-42-25.5t-18-36.5q0-7 7-20t17-13q9 0 29 20t58 20q20 0 37-7t34-18l13-8q6-4 14-4 11 0 16 7.5t5 18.5q0 21-25 43.5t-47 29.5q0 8 1.5 14t1.5 14q0 19 19 29.5t57 10.5q15 0 40-19t42-19h7q4 0 10.5 5t6.5 15q0 21-27.5 46zm581-1407Q1868 836 1798 915.5t-116.5 148-85.5 127-81 58.5q-34 0-52.5-21.5T1444 1168q0-94 82-235.5T1714 707t211-84q22 0 39 11t17 40q0 52-56.5 107zM995 1155q0 17-24.5 27.5T915 1193q-38 0-52-41.5T849 987q0-216 91-377t188-161q24 0 33.5 15.5t9.5 39.5q0 66-81 245t-83 296q0 26-2 55.5t-10 54.5z" + }, + "children": [] + }] +}; +exports.u1F430 = u1F430; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F431.js b/dist/noto_emoji_regular/u1F431.js new file mode 100644 index 000000000..fcb4c4255 --- /dev/null +++ b/dist/noto_emoji_regular/u1F431.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F431 = void 0; +var u1F431 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2063 1244q57 91 88 193t31 215q0 233-119.5 374.5T1732 2234t-439 66q-219 0-428.5-67t-328-207.5T418 1652q0-107 28.5-209t91.5-199q-7-58-12.5-148.5T520 940q0-197 37-308t107-111q69 0 184 90.5T1071 828l54 60q43-8 86.5-11t88.5-3 88.5 3 86.5 11l54-60q106-123 221-215t184-92q70 0 108 111t38 311q0 89-6 170.5t-11 130.5zm-526.5 665.5q-4.5-6.5-10.5-6.5-3 0-7 2l-8 5q-22 14-46 22.5t-49 8.5q-34 0-60.5-17t-26.5-52v-13q23-8 42-26t19-41q0-32-20-47t-70-15-69.5 15-19.5 47q0 20 16.5 37t36.5 27v16q0 35-27 52t-60 17q-26 0-49.5-8.5T1082 1910l-8-5q-4-2-8-2-6 0-10 6.5t-4 11.5q0 25 35.5 45.5t75.5 25.5q6 8 35 93t102 85q42 0 69-29.5t40-75.5l13-50 5-22q48-4 81-29.5t33-42.5q0-5-4.5-11.5zm-575.5-399q-33-39.5-76-39.5-45 0-76.5 40.5T777 1610q0 55 31.5 96.5T885 1748q44 0 76.5-40.5T994 1610q0-60-33-99.5zm818 .5q-32-40-76-40t-77 40-33 99q0 56 32.5 97t77.5 41q44 0 76-41t32-97q0-59-32-99z" + }, + "children": [] + }] +}; +exports.u1F431 = u1F431; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F432.js b/dist/noto_emoji_regular/u1F432.js new file mode 100644 index 000000000..25a09b57a --- /dev/null +++ b/dist/noto_emoji_regular/u1F432.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F432 = void 0; +var u1F432 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2223 2431q-187 156-493 156-149 0-281-44.5T1317 2427q0-43 51.5-85.5t78-92T1473 2148q0-14-2-27t-5-27l-104 112q-90 97-156.5 126t-164.5 29q-137 0-193.5-36T760 2218q-48 16-87.5 48t-60.5 79l-13 27q-12 27-25.5 42t-26.5 15q-15 0-22-21t-7-52q0-109 48-164t142-78 137.5-72 89-131.5 136.5-133 184-50.5q36 0 65.5 16t29.5 44q-2 48-77 64.5t-147 132-114 146.5-161 62q11 23 45.5 39.5T984 2248q38 0 62.5-6t64.5-30l-7-22q-6-15-12-40.5t-6-40.5q0-14 5.5-24.5t19.5-10.5q11 0 25.5 11t27.5 24l10 11q59-111 176-159t158.5-92 41.5-82q0-63-88.5-108t-151.5-45q-118 0-243.5 63.5t-161 103.5-83.5 75q0 5-10.5 59t-34.5 54q-19 0-35-15t-35-32q-47 20-95.5 32T508 1986q-31 0-61-3.5t-59-11.5q-11 17-23.5 30.5T334 2015q-23 0-29-33.5t-9-48.5q-57-36-82-70t-25-67q0-28 16.5-63.5T222 1667q0-75 39.5-125.5t113.5-68 162.5-87 100-104.5 31-102.5 86-149.5T910 911q9-19 16-37.5t7-41.5q0-65-35.5-167T862 522q0-32 20.5-57.5T941 439q64 0 83 86t28 97q21-5 59.5-82t70.5-170.5 91-95.5q32 0 55 25.5t23 75.5q0 44-79 242.5T1174 860q36-5 72.5-8t67.5-3q20 0 41.5 2.5t41.5 5.5l32-34q21-32 23-96t8-90v-63q0-79 18-113t55-34q48 0 73.5 23t25.5 80q0 25-3 48t-3 49q0 6 1 11t6 5q21 0 64-33t125-120l26-29q26-30 52.5-48.5T1952 394q31 0 53.5 23.5T2028 475q0 39-26 77.5T1841 735l-160 169q20 0 39 5l35 11q38 11 78.5 18.5t79.5 7.5q72 0 120-28t74-28q11 0 14 6.5t3 16.5q0 22-11 38.5t-25 30.5l-19 18q-17 16-35 29t-30 13q0 11 23 16.5t55 5.5l25 1q65 0 82.5-6t25.5-9l18-6q8-2 15-2 8 0 11.5 6t3.5 11q0 9-8 23.5t-16 22.5l-9 10q-7 8-39 34t-32 45q0 15 27 17t51.5 7.5 46.5 5.5q14 0 26-1t25-6l14-6q8-3 16-3 10 0 14.5 5.5t4.5 12.5q0 26-39.5 63.5T2272 1333l-23 4q-11 2-19 6t-8 11q0 10 9.5 17t28.5 13l14 5q27 10 67 17t43.5 9 3.5 15q0 19-19.5 38.5T2306 1508q38 82 71 207t33 281q0 279-187 435zm-768-9q47 17 142 32.5t154 15.5h23q65-65 104-159.5t39-190.5q0-119-57-219t-161-157q0 73-26 131t-114 130q32 70 32 141 0 85-37.5 153t-98.5 123zm-213.5-1095.5q-9.5-20.5-24.5-39.5l-199 114q17 37 50.5 58.5t71.5 21.5q46 0 78.5-32t32.5-78q0-24-9.5-44.5zm-566 298Q659 1604 626 1604q-35 0-65.5 24.5T530 1687q0 25 22 32t51 7q43 0 66-14t23-44q0-23-16.5-43.5zM703 1245q-19 15-28.5 40.5T665 1338q0 37 18.5 63t48.5 26q18 0 36-10t31-30zm-394 450q24 20 53 20 23 0 33.5-11.5T406 1672q0-31-21.5-58.5T338 1586q-22 0-37.5 20.5T285 1649q0 26 24 46z" + }, + "children": [] + }] +}; +exports.u1F432 = u1F432; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F433.js b/dist/noto_emoji_regular/u1F433.js new file mode 100644 index 000000000..2e42b48ad --- /dev/null +++ b/dist/noto_emoji_regular/u1F433.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F433 = void 0; +var u1F433 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1673.5 2048Q1502 2175 1265 2241t-509 66q-115 0-227.5-17.5t-213.5-57-128.5-81.5-27.5-161q0-203 93-373t251.5-258 370.5-88q151 0 309.5 48t295.5 130 233 178.5 114.5 129 18.5 63.5q0 101-171.5 228zM454 1652.5q-20-24.5-55-24.5-37 0-68 32.5t-31 78.5q0 34 23.5 60.5T375 1826q39 0 69-36t30-78q0-35-20-59.5zm659 6q-30-31.5-70-31.5-36 0-60 27t-24 68 28 73.5 64 32.5 64-27.5 28-63.5q0-47-30-78.5zm1267-232q-60 43.5-143 48.5h-29q-14 0-30 6t-16 31q0 28 23 72t23 66q0 39-51 67t-118 28q-50 0-87-18t-37-48q0-17 27.5-71.5t27.5-95.5q0-35-50-61.5t-78-71.5-28-86q0-18 3.5-35.5t7.5-34.5l8-33q3-16 3-30 0-6-1-13t-1-15q0-17 18-17 40 0 105 49t82.5 113 51.5 64q11 0 55-24t109-24q25 0 49.5 1t47.5 1q19 0 33.5-3t36.5-3q11 0 14.5 8t3.5 18q0 68-60 111.5zM472 654q43-27 102-27 85 0 153.5 56.5t85 86.5 25.5 30q5 0 9.5-6.5T855 778l6-17q7-23 40-73.5t82-81 113-30.5q46 0 74.5 16.5T1199 639q0 25-12.5 31t-31.5 6h-27q-14 0-30.5 7t-16.5 18q0 19 33 19h22q39 0 66.5 19.5T1230 790q0 26-25.5 44.5T1154 853q-21 0-53.5-17t-82.5-17l-16 1q-8 0-38.5 12T933 854q0 3 6 9t19 6q11 0 25-4t27-4q28 0 61 25.5t33 50.5q0 14-15.5 31.5T1051 986q-19 0-36-5t-34-5q-54 0-82.5 33.5T861 1099l-9 60q-4 27-10 45.5t-21 18.5q-28 0-32-70t-16-131.5-40-85-97-28-69-44.5q0-27 16-36t36-9q24 0 47.5 6.5T700 832q15 0 15-17 0-22-20.5-35T644 767q-21 0-38.5 4.5T572 781l-32 9q-16 5-32 5-31 0-55-17.5T429 727q0-46 43-73zm-91.5 324.5Q395 965 417 965q23 0 40.5 14.5T475 1017q0 20-14 33.5t-38 13.5q-21 0-39-14.5t-18-37.5q0-20 14.5-33.5zm918-492Q1313 473 1334 473q23 0 40.5 14.5T1392 526q0 20-13.5 33t-38.5 13q-20 0-38-14.5t-18-37.5q0-20 14.5-33.5zm-1080 412Q203 882 203 861q0-22 14.5-36.5T254 810q29 0 45 17.5t16 35.5q0 21-17 36.5T258 915q-24 0-39.5-16.5zM1462 738q16 18 16 36t-16.5 34-42.5 16q-21 0-37-15t-16-38q0-21 14.5-36t37.5-15q28 0 44 18zm-167.5 240q-13.5-13-13.5-32t12-30.5 29-11.5q24 0 38 14t14 29q0 18-15 31t-33 13-31.5-13zM242 650q-13-13-13-30 0-20 12-32.5t29-12.5q23 0 37.5 15t14.5 29q0 17-14.5 30.5T273 663q-18 0-31-13z" + }, + "children": [] + }] +}; +exports.u1F433 = u1F433; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F434.js b/dist/noto_emoji_regular/u1F434.js new file mode 100644 index 000000000..70efc7a2f --- /dev/null +++ b/dist/noto_emoji_regular/u1F434.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F434 = void 0; +var u1F434 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2324 2343q-71 19-258.5 45.5T1719 2415q-342 0-479-25.5t-137-76.5q0-13 5-29l13-40q32-95 46.5-196.5T1182 1843q0-89-13.5-162t-41.5-141q-83 10-174.5 47.5T764 1717t-205 92q-128 0-241-99.5T205 1510q0-58 40-118t103.5-130T468 1134t99.5-110 65.5-88 32-111 79.5-117.5T848 639q-17-36-24.5-84.5T816 455q0-67 22-133.5t62-66.5q51 0 118 105t123 154q25-5 50.5-6.5t52.5-1.5h15q7 0 15 1 23-111 84.5-184t107.5-73q27 0 46.5 28.5t31 103.5 23.5 138 20.5 66 57.5 25.5 91.5 53.5 109 50.5 98 32.5 31.5 43q0 18-14 37t-39.5 27-42.5 18-17 23q0 43 141 72.5t141 74.5q0 32-60.5 61t-60.5 55q0 27 40.5 59t114.5 56 74 59q0 41-68.5 57.5T2115 1452q0 35 41.5 69t113 62.5 71.5 66.5q0 41-71 55.5t-71 67.5q0 27 19.5 51.5t45.5 43.5q17 12 68.5 33.5t51.5 50.5q0 30-27 51t-60 21q-4 0-8.5-1t-8.5-1q-24 0-38.5 12t-14.5 32q0 35 28 68.5t84 61.5 56 73q0 55-71 74zM517 1502q-21-14-46-14-35 0-60.5 19t-25.5 49 19.5 40 41.5 10q35 0 63.5-17.5T538 1543q0-27-21-41zm552-444.5q25-26.5 25-61.5t-25-60.5-62-25.5q-34 0-60 25t-26 63q0 35 25 60.5t62 25.5q36 0 61-26.5z" + }, + "children": [] + }] +}; +exports.u1F434 = u1F434; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F435.js b/dist/noto_emoji_regular/u1F435.js new file mode 100644 index 000000000..6108ea41a --- /dev/null +++ b/dist/noto_emoji_regular/u1F435.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F435 = void 0; +var u1F435 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2214.5 1677.5Q2145 1741 2069 1741q-5 0-9-1h-9q-55 169-183 268t-287 141l-47 10q-59 13-121 21t-120 8q-126 0-280-39.5t-284.5-142T547 1740l-18 1q-76 0-145-64t-69-195q0-102 55.5-171t151.5-69q5 0 9 1t9 1q46-179 155.5-322T962 710.5t330-68.5q185 0 344.5 69.5T1905 924t154 320q5 0 8.5-1t8.5-1q82 0 145 61.5t63 178.5q0 132-69.5 195.5zM523 1638q-12-73-12-153 0-33 1.5-65t6.5-65q-59 10-85.5 42t-26.5 90q0 55 25.5 104t77.5 49q8 0 13-2zm1305 27q-4-20-9-40l-11-40q-7-24-10-50t-3-56q0-50 14.5-113.5T1824 1264q0-57-25.5-111.5T1740 1068t-62-41.5-91-11.5q-54 0-141.5 50.5T1303 1116t-146-50.5-146-50.5q-61 0-90.5 12t-62.5 42.5-58 83-25 111.5q0 38 14.5 103.5T804 1481q0 28-2.5 53t-9.5 51l-11 39q-6 20-10 40t-4 41q0 140 144 238t377 98q261 0 402.5-100t141.5-234q0-22-4-42zm337.5-268q-26.5-32-85.5-42 2 33 4.5 65t2.5 65q0 39-2.5 77.5t-8.5 75.5q3 2 10 2 52 0 79-47.5t27-110.5q0-53-26.5-85zm-1176-111q27.5-34 66.5-34t67.5 33.5 28.5 80.5q0 48-28.5 81.5T1056 1481q-40 0-67-34t-27-81q0-46 27.5-80zm486-.5q28.5-33.5 67.5-33.5 37 0 66.5 33t29.5 81q0 49-29.5 82t-66.5 33q-39 0-67.5-33.5T1447 1366q0-47 28.5-80.5zM1573 1856q-92 59-274 59-141 0-253.5-50.5T933 1755q0-48 100.5-79.5T1323 1644q174 0 258 27t84 77q0 49-92 108zm-335.5-354q18.5-13 64.5-13 34 0 56 9.5t22 30.5q0 23-21.5 41.5T1300 1589q-29 0-55-17t-26-42q0-15 18.5-28z" + }, + "children": [] + }] +}; +exports.u1F435 = u1F435; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F436.js b/dist/noto_emoji_regular/u1F436.js new file mode 100644 index 000000000..613efa02d --- /dev/null +++ b/dist/noto_emoji_regular/u1F436.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F436 = void 0; +var u1F436 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2026 1399q0 243-91 437.5T1671 2127t-380 96q-210 0-383-96.5t-263.5-292T554 1396q8 2 17 3t18 1q77 0 128-62.5t74.5-138T905 1080t144-103.5 54-140.5q0-35-11.5-70t-28.5-65q43-12 107.5-22t124.5-10q57 0 123.5 10.5T1533 706q-17 29-27 62t-10 68q0 80 50 138.5t143.5 103 121.5 128 76 139 121 55.5q13 0 18-1zm-1030 86q-27-33-66-33t-66.5 31.5T836 1559q0 46 27 78t66 32 66.5-32 27.5-77q0-42-27-75zm484 503.5q-8-7.5-20-7.5-10 0-23 8l-4 3q-16 10-38 10-29 0-51-16l-10-6q-4-8-4-18l-1-19q71-9 100-34.5t29-71.5q0-50-49-81t-113-31q-67 0-113 32t-46 88q0 41 33.5 70t95.5 29v10q0 26-19.5 36t-40.5 10q-22 0-37-9t-32-9q-12 0-20.5 7.5t-8.5 21.5q0 26 26.5 40t62.5 14q35 0 69-12t36-12q50 22 89 22 18 0 35.5-4t32.5-12l16-12q5-4 9-11t4-16q0-12-8-19.5zm254.5-505Q1707 1452 1669 1452t-66.5 30.5-28.5 75.5q0 48 28.5 79.5t66.5 31.5q37 0 65-32.5t28-77.5q0-44-27.5-75.5zm-1204-724Q634 643 784 643q121 0 180 59.5t59 133.5q0 50-30.5 89T857 1020.5t-134.5 139-61 122.5-72.5 40q-65 0-113.5-86T427 1040q0-164 103.5-280.5zm1592 477.5q-49.5 85-114.5 85-41 0-72-40.5t-61-123-135-140-135.5-95.5-30.5-86q0-91 70-142.5t171-51.5q149 0 253 117t104 281q0 111-49.5 196z" + }, + "children": [] + }] +}; +exports.u1F436 = u1F436; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F437.js b/dist/noto_emoji_regular/u1F437.js new file mode 100644 index 000000000..2934fceed --- /dev/null +++ b/dist/noto_emoji_regular/u1F437.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F437 = void 0; +var u1F437 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2135 1045q60 134 93 267.5t33 235.5q0 329-240 531.5T1299 2282q-475 0-718-194t-243-528q0-109 35.5-250t85.5-258q30 40 86.5 68.5T651 1149q50 0 76-31.5t28-74.5v-6q26-112 76-180t50-131q0-17-5-36t-13-39q98-44 206.5-66.5T1291 562t223.5 20.5T1726 645q-20 46-20 84 0 54 54.5 133.5t71 183T1937 1149q47 0 106-30.5t92-73.5zm-1055.5 725q76.5 45 205.5 45 143 0 212.5-42.5T1567 1634q0-107-83-172t-204-65-199 66-78 177q0 85 76.5 130zm-152-291.5Q958 1442 958 1393q0-52-31-87.5t-72-35.5-72 35-31 87q0 51 30.5 87t72.5 36 72.5-36.5zM1426 1878q-34 6-69.5 10t-71.5 4q-29 0-63-3t-70-11q11 61 52.5 101t86.5 40q46 0 84.5-40t50.5-101zm391-572q-31-36-72-36-42 0-72 36.5t-30 86.5q0 51 30 86.5t72 35.5q41 0 72-35.5t31-87.5q0-50-31-86zm-667 384q-11-25-11-79 0-51 11-77t35-26q28 0 37.5 30.5t9.5 72.5q0 44-9.5 74t-37.5 30q-24 0-35-25zm203.5-155.5q10.5-26.5 34.5-26.5 28 0 38 30.5t10 72.5q0 44-10 74t-38 30q-24 0-34.5-25.5T1343 1611q0-50 10.5-76.5zm455.5-876q24-36.5 53-36.5 23 0 47 14l41 26q77 52 117.5 110.5T2108 886q0 54-29 100.5t-79 65.5l-12 5q-13 6-27 10t-24 4l-7-1q-12-4-16-12.5t-4-21.5q0-14-20-84t-62.5-129-42.5-96q0-32 24-68.5zM577.5 709Q677 622 725 622q27 0 52 34.5t25 68.5q0 37-41 95.5t-61.5 123-24.5 96-24 31.5q-26 0-76-24.5t-73.5-69T478 888q0-92 99.5-179z" + }, + "children": [] + }] +}; +exports.u1F437 = u1F437; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F438.js b/dist/noto_emoji_regular/u1F438.js new file mode 100644 index 000000000..81f68f5a5 --- /dev/null +++ b/dist/noto_emoji_regular/u1F438.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F438 = void 0; +var u1F438 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2093 1378q15 42 22 87.5t7 93.5q0 298-231 457t-595 159q-379 0-599-164t-220-451q0-62 11.5-120.5T529 1301t42-109 13-62q0-36-12.5-78T559 962q0-163 77-234.5T838 656q61 0 111.5 17.5t79.5 37 59 66.5l19 30q17 28 32 36t58.5 14.5T1299 864q56 0 100-6t60-14 33-37l19-30h-1q43-67 112-94t137-27q126 0 203 71t77 226q0 8-1 17t-1 17q-2 29-13 72t-11 71q0 34 13 61t39 104zm-649.5-228.5q13.5 10.5 30.5 10.5 16 0 26.5-8.5t10.5-27.5q0-21-13.5-31.5T1467 1082q-14 0-25.5 9t-11.5 28q0 20 13.5 30.5zm-351.5 2q12 8.5 26 8.5 17 0 30.5-10.5t13.5-30.5q0-19-11.5-28t-25.5-9q-17 0-31 10.5t-14 31.5q0 19 12 27.5zm-221-170q26-33.5 26-80.5 0-46-26.5-79T807 789q-35 0-62.5 32T717 901t27.5 81 62.5 33q38 0 64-33.5zm938.5 230q-11.5-7.5-29.5-7.5-31 0-80 14l-113 33q-63 18-136.5 32.5T1297 1298t-153.5-14.5T1007 1251l-112-33q-50-14-80-14-18 0-29.5 7.5T774 1237q0 41 69.5 105t191.5 111 262 47q141 0 262.5-47t191.5-111 70-105q0-18-11.5-25.5zm39-389.5q-27.5-33-63.5-33-35 0-62.5 32t-27.5 80 27.5 81 62.5 33q36 0 63.5-34t27.5-80-27.5-79z" + }, + "children": [] + }] +}; +exports.u1F438 = u1F438; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F439.js b/dist/noto_emoji_regular/u1F439.js new file mode 100644 index 000000000..a6fc5d11e --- /dev/null +++ b/dist/noto_emoji_regular/u1F439.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F439 = void 0; +var u1F439 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1923 2020.5Q1746 2169 1367 2169q-17 0-33.5-1t-33.5-1-33.5 1-33.5 1q-374 0-553.5-146T500 1676q0-114 53-211t93-198l33-84q16-42 35-83-87-12-145.5-79T510 873q0-84 68.5-152.5T734 652q61 0 113 43.5T941 823q81-45 173-68t186-23q95 0 186.5 23t173.5 68q48-92 98.5-131.5T1866 652q88 0 156 69.5t68 152.5q0 85-60 149.5t-142 76.5q46 106 69 171.5t83 174.5 60 230q0 196-177 344.5zM1206.5 1688q39.5 38 97.5 38 55 0 94-37.5t39-71.5q0-11-6-18.5t-20-7.5q-12 0-37.5 12t-88.5 12q-11 0-38-6.5t-50-6.5q-12 0-21 4.5t-9 15.5q0 28 39.5 66zM767 987q10 4 21 4 14 0 31.5-19t37.5-62q0-16-35.5-61T741 804q-28 0-53 24.5T663 885q0 26 17.5 49t67.5 46zm205 471.5q-27-36.5-65-36.5-37 0-64.5 35.5T815 1540q0 50 27 84t63 34q38 0 66-33.5t28-83.5q0-46-27-82.5zm581.5 395.5q-4.5-9-15.5-9-6 0-12 2l-15 6q-9 4-20 6.5t-27 2.5q-47 0-95-22.5t-69-22.5q-19 0-68 22.5t-95 22.5q-27 0-42-7.5t-29-7.5q-11 0-16.5 8t-5.5 21q0 31 32 47.5t82 16.5h16q0 27 12 75.5t23 66 55 17.5q22 0 30-17t13-17q7 0 12.5 17.5t38.5 17.5q50 0 61.5-74t14.5-86h11q55 0 84-17.5t29-46.5q0-13-4.5-22zm204.5-397q-27-35-65-35-37 0-63.5 35t-26.5 82q0 50 25.5 84.5t64.5 34.5q38 0 65-34t27-81q0-51-27-86zm154-500.5q43-34.5 43-71.5 0-33-26-57t-54-24q-31 0-72 36.5t-41 69.5q0 4 1 5l9 18q12 25 27 41.5t31 16.5q39 0 82-34.5z" + }, + "children": [] + }] +}; +exports.u1F439 = u1F439; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F43A.js b/dist/noto_emoji_regular/u1F43A.js new file mode 100644 index 000000000..6bc8d94c9 --- /dev/null +++ b/dist/noto_emoji_regular/u1F43A.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F43A = void 0; +var u1F43A = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2287.5 1652.5q-8.5 14.5-25.5 14.5-11 0-23-5t-24-12l-22-13q-11-6-20-9l-11-2h-11q-21 0-21 17 0 19 27.5 57.5t27.5 67.5q0 14-13 28.5t-36 14.5q-20 0-54-22t-53-22q-8 0-10 4t-2 13q0 19 13 49.5t13 50.5q0 29-15 41.5t-26 12.5q-17 0-73.5-30t-110.5-30q-36 0-62.5 19t-34.5 64l-13 62q-8 39-21 59.5t-35 73-53.5 97-95 70-85.5 36-85 10.5q-113 0-171.5-18t-136-105-79.5-101-14-43l-19-39q-17-35-28.5-91.5t-43-71T760 1886q-54 0-95.5 18t-70.5 39l-21 15q-11 7-22 12t-21 5q-12 0-27-14t-15-46q0-23 13-62t13-59q0-12-6-23-31 10-59 21.5t-60 11.5q-6 0-11.5-1t-7.5-1v-7q0-3-1-9 0-41 45.5-95t45.5-76q0-7-1-10-43 0-99.5-13t-56.5-38q0-27 56.5-78.5T481 1345t93.5-148 28.5-104q0-18-46.5-82.5T452.5 818 395 565q0-83 33-122t95-39q110 0 285.5 82.5T1036 597q65-20 133-31.5t137-11.5q68 0 137 11t133 32q23-11 209-102t304-91q63 0 95.5 38t32.5 115q0 129-57.5 261.5T2047 1021t-55 120q0 62 52 133.5t85 124.5 100 119 67 108q0 12-8.5 26.5zM874 758l21-13q31-18 28-27.5T894 695l-38-19q-106-47-164.5-65T617 593q-22 0-37.5 13.5T564 642q0 17 8 33l13 31q22 58 68.5 145t72.5 87q13 0 20-23.5t43.5-76.5 84.5-80zm163 508.5q-37-38.5-85-38.5-38 0-62.5 25t-24.5 63q0 45 37 84t84 39q35 0 61.5-24t26.5-63q0-47-37-85.5zm470 856.5q-9 0-25 10t-67 10q-41 0-64-17.5t-23-50.5q65-3 101.5-28.5t36.5-78.5q0-49-50.5-79.5T1302 1858q-65 0-111 33.5t-46 87.5q0 42 37.5 69.5T1285 2076q0 39-21.5 53t-63.5 14q-23 0-35-3t-19-7l-14-7q-7-3-18-3-9 0-15 5t-6 13q0 24 33 36.5t66 12.5q34 0 69-15t49-15q8 0 14 2l13 6q20 9 35 12t45 3q43 0 72.5-12t29.5-34q0-14-12-14zm199.5-870.5Q1681 1228 1644 1228q-49 0-85.5 38t-36.5 86q0 38 25 62.5t63 24.5q49 0 85.5-38t36.5-86q0-38-25.5-62.5zm224-354.5q27.5-40 64.5-119l21-45q9-19 20-47.5t11-44.5q0-20-15-34.5t-37-14.5q-16 0-70 16.5T1756 676l-37 19q-12 6-21 13t-9 12q0 6 8.5 12.5T1717 745l37 22q47 35 74.5 78t36.5 68 22 25q16 0 43.5-40z" + }, + "children": [] + }] +}; +exports.u1F43A = u1F43A; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F43B.js b/dist/noto_emoji_regular/u1F43B.js new file mode 100644 index 000000000..0abf3c56e --- /dev/null +++ b/dist/noto_emoji_regular/u1F43B.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F43B = void 0; +var u1F43B = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2253 1467q0 22 1 43 0 282-127.5 460T1767 2232.5t-474 84.5q-225 0-455-82t-361-258-131-469q0-115 22-223.5t72-213.5q-38-51-63-122.5T352 812q0-138 90.5-220.5T642 509q44 0 92 14t97 42.5T947 594h15q80-27 165.5-41t172.5-14q160 0 312 47l18 1q66 0 141.5-43t161.5-43q113 0 201.5 84t88.5 216q0 57-16.5 115t-48.5 109l-11 17q45 90 72 187t32 195zm-448.5-713.5Q1823 772 1845 787l21 16q16 15 32 37l29 42q14 20 27.5 34.5T1981 931q29 0 52-38t23-84q0-64-45-108.5T1904 656q-40 0-79 22t-39 41q0 16 18.5 34.5zM636 917q13-14 27-34l28-42q25-37 69-66t44-56q0-21-40-42t-79-21q-64 0-107.5 45.5T534 809q0 50 23.5 86t52.5 36q13 0 26-14zm201.5 494q-29.5-36-71.5-36t-72 35.5-30 84.5q0 51 30 86.5t72 35.5 71.5-36 29.5-86q0-48-29.5-84zm713.5 76q-108-118-255-118-149 0-257 118t-108 286q0 145 91.5 220t273.5 75q180 0 271.5-75t91.5-220q0-168-108-286zm345.5-76q-29.5-36-71.5-36t-72 35.5-30 84.5q0 51 30 86.5t72 35.5 71.5-36 29.5-86q0-48-29.5-84zm-722 120.5Q1226 1491 1296 1491t121.5 41 51.5 98-52 97.5-121 40.5q-70 0-121.5-40t-51.5-98 51.5-98.5zm325.5 320q10 9.5 10 23.5 0 5-2 9l-4 9q-13 26-71 60t-137 34q-90 0-152.5-42.5T1081 1873q0-12 10-21.5t24-9.5q16 0 27 14l18 17q22 20 56.5 33.5t79.5 13.5q51 0 87.5-16.5t56.5-39 35-22.5 25 9.5z" + }, + "children": [] + }] +}; +exports.u1F43B = u1F43B; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F43C.js b/dist/noto_emoji_regular/u1F43C.js new file mode 100644 index 000000000..48d471e54 --- /dev/null +++ b/dist/noto_emoji_regular/u1F43C.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F43C = void 0; +var u1F43C = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2123 1126q41 94 59 188.5t18 193.5q0 213-68 354.5T1923 2100t-309.5 133-306.5 37q-206 0-417-73.5t-338-238T425 1515q0-111 16.5-193t30-116 13.5-48q0-35-25.5-69t-51-97T383 859q0-122 87-200.5T668 580q84 0 159 40t137 40q36 0 58.5-9t105.5-25 186-16q132 0 207 21t116 21q64 0 136.5-39.5T1932 573q108 0 196.5 76.5T2217 852q0 52-17 111t-49 103q-11 15-18.5 24t-9.5 21v15zm-238-184q-215-232-575-232-229 0-407 103t-278 289.5T525 1510q0 251 124 407t370 215l47 10q51 12 115.5 19.5t125.5 7.5q184 0 377.5-60t304.5-209.5 111-384.5q0-341-215-573zm-722 535q-19 69-67 131.5t-125.5 151T792 1848q-91 0-148.5-65T586 1619q0-141 119.5-256T949 1248q90 0 153.5 56t63.5 140q0 8-1 16zm-122-101q-27-26-64-26-38 0-65 26t-27 64q0 37 27 63t65 26 64.5-26 26.5-63q0-38-27-64zm602 400.5q-81-88.5-145.5-174.5t-64.5-166q0-89 67.5-147.5T1663 1230q129 0 255.5 122t126.5 272q0 106-59.5 173.5T1827 1865q-103 0-184-88.5zm58-400.5q-28-26-65-26-38 0-65 26t-27 64q0 37 27 63t65 26q37 0 65-26.5t28-62.5q0-38-28-64zm-187.5 506q8.5 10 8.5 22 0 29-63 71.5t-151 42.5q-89 0-151.5-42t-62.5-72q0-12 9-22t24-10q19 0 33 19.5t53.5 39.5 94.5 20q53 0 94.5-20.5t54.5-39.5 33-19q15 0 23.5 10zM1205 1630q42-35 103-35 60 0 102 35t42 81q0 47-41.5 82t-102.5 35q-62 0-103.5-35t-41.5-82q0-46 42-81z" + }, + "children": [] + }] +}; +exports.u1F43C = u1F43C; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F43D.js b/dist/noto_emoji_regular/u1F43D.js new file mode 100644 index 000000000..1265ed2af --- /dev/null +++ b/dist/noto_emoji_regular/u1F43D.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F43D = void 0; +var u1F43D = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2161.5 1825.5Q2102 1947 2004 2014t-299 110-404 43q-385 0-653.5-146.5T379 1562q0-155 61.5-296t170-246.5T862 853t274-163l8-6q42-35 76-47t77-12q85 0 181 69t108 76.5 110.5 53.5 186 100 150.5 119.5 103.5 142 62.5 169 22 188.5q0 161-59.5 282.5zm-134-482q-30.5-98.5-111-186.5t-239-160-254-141.5T1299 786q-22 0-30 7t-24 18l-8 7q-150 118-318.5 189.5t-273 220.5T541 1556q0 132 64 222t254 158 442 68q154 0 295.5-24t249-65 160-141.5T2058 1540q0-98-30.5-196.5zM1106 1678q-49 62-147 62t-146.5-62.5T764 1480t48-198.5 147-63.5 147.5 63.5T1155 1480q0 136-49 198zm667 0q-49 62-146 62-98 0-146.5-62.5T1432 1480t48-198.5 147-63.5q98 0 146.5 63t48.5 199-49 198z" + }, + "children": [] + }] +}; +exports.u1F43D = u1F43D; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F43E.js b/dist/noto_emoji_regular/u1F43E.js new file mode 100644 index 000000000..3d0adf383 --- /dev/null +++ b/dist/noto_emoji_regular/u1F43E.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F43E = void 0; +var u1F43E = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1192.5 610.5Q1226 555 1281 555q63 0 102.5 51.5T1423 731q0 68-37.5 117.5T1295 898q-51 0-93.5-43T1159 741q0-75 33.5-130.5zM869 496.5q32-50.5 91-50.5 62 0 103 53.5t41 124.5q0 67-36 116.5T977 790t-97.5-44T837 626q0-79 32-129.5zM478.5 1043q-38.5 39-82.5 39-65 0-118-61.5T225 882q0-57 35.5-97t87.5-40q51 0 110 69t59 135q0 55-38.5 94zm60-243Q486 739 486 660q0-57 32.5-97.5T604 522q56 0 107.5 72T763 731q0 56-35 93t-77 37q-60 0-112.5-61zm673.5 469.5q-43 33.5-119 33.5-10 0-20-1l-30-3q-11-2-21-3h-19q-72 0-168.5 57.5T667 1411q-48 0-77.5-32t-29.5-86q0-70 48-167.5T745 973t187-55q117 0 220 70.5t103 188.5q0 59-43 92.5zm269 811.5q-34 35-78 35-66 0-123.5-60t-57.5-138q0-50 33.5-89.5t77.5-39.5q47 0 114.5 62.5T1515 1988q0 58-34 93zm3-294.5q-55-62.5-55-140.5 0-53 34.5-91.5t84.5-38.5q47 0 110 66.5t63 136.5q0 51-32.5 90.5T1606 1849q-67 0-122-62.5zm854.5-67.5q-35.5 49-90.5 49-65 0-104.5-49t-39.5-122q0-80 31-127t93-47q60 0 103 53.5t43 127.5q0 66-35.5 115zm-457.5-1q-50-16-78.5-63t-28.5-118q0-77 28.5-116.5t86.5-39.5q60 0 103 61t43 131q0 64-32.5 108t-83.5 44q-9 0-18-2zm369 462.5q-64 32.5-180.5 42.5t-177.5 66l-7 7q-31 26-68 46t-73 20q-63 0-98-62.5t-35-118.5q3-114 106-221.5t253-107.5q124 0 234 81.5t110 155.5q0 59-64 91.5z" + }, + "children": [] + }] +}; +exports.u1F43E = u1F43E; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F440.js b/dist/noto_emoji_regular/u1F440.js new file mode 100644 index 000000000..42972f51a --- /dev/null +++ b/dist/noto_emoji_regular/u1F440.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F440 = void 0; +var u1F440 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1063 1346l24 46q12 24 12 47 0 14-6.5 23t-24.5 9q-21 0-46-33.5t-55-33.5q-29 0-44.5 62T849 1567t-133 39q-98 0-163-60t-67-121-29-61q-17 0-40.5 23t-49.5 70.5-52 47.5q-13 0-21.5-14t-8.5-32q0-72 53.5-152.5t151-132.5 204.5-52q129 0 223.5 62.5T1063 1346zm-406-69.5q-20-17.5-46-17.5t-46 21-20 46 18 41 42 16q27 0 49.5-18.5T677 1319q0-25-20-42.5zM2307 1488q-8 17-22 17-17 0-30-15t-24-35l-23-38q-10-18-31-35.5t-36-17.5q-25 0-26.5 57.5t-64 121T1884 1606q-75 0-132-37.5t-75-101-45-63.5-54 33.5-48 33.5q-29 0-29-28 0-47 58-135t146-137 199-49q123 0 235 69t156 180l9 22q4 12 7.5 29.5t3.5 33.5q0 15-8 32zm-458-159v-9q0-26-19.5-43.5T1784 1259q-25 0-45.5 21.5T1718 1326q0 23 17 40t42 17q29 0 50.5-19t21.5-35z" + }, + "children": [] + }] +}; +exports.u1F440 = u1F440; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F442.js b/dist/noto_emoji_regular/u1F442.js new file mode 100644 index 000000000..651dd1b5c --- /dev/null +++ b/dist/noto_emoji_regular/u1F442.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F442 = void 0; +var u1F442 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M941 1622.5q56-89.5 56-177.5 0-56-34-117.5T929 1192q0-117 80-249t177.5-189.5T1386 696q140 0 225.5 103.5T1697 1085q0 18-10 26.5t-24 8.5q-38 0-41.5-47.5t-33.5-104-81-95-108-38.5q-98 0-172 82t-74 183q0 68 57 89t108.5 76 51.5 109q0 17-10.5 33t-27.5 16q-22 0-34.5-30t-34.5-47-51-17q-23 0-32.5 9t-9.5 24q0 11 5 24l10 28q5 15 9.5 33t4.5 39q0 79-65.5 169.5T1068 1829q0 66 30.5 100.5t93.5 34.5q64 0 92-21.5t43-21.5q18 0 31 15t13 35q0 37-86 90t-178 53q-99 0-160.5-65.5T885 1852q0-140 56-229.5zm948-152.5q-126 278-176.5 519T1502 2376.5 1133 2523q-154 0-273.5-77.5T681 2266l-15-26q-5-8-6-15.5t-1-14.5q0-27 18.5-48t48.5-21q20 0 37 10t26 28q0 12 49.5 70.5T965 2347t169 39q158 0 280.5-116.5t162-303T1675 1628t130.5-325.5T1877 962q0-200-128-337t-329-143h-38q-241 0-403.5 143.5T726 1120l-6 25q-5 25-23.5 40t-41.5 15q-30 0-50-19.5t-20-47.5q0-10 1-15l8-32h-1q48-199 143.5-371.5T999 443t409-99q235 0 421 165.5T2015 963q0 229-126 507z" + }, + "children": [] + }] +}; +exports.u1F442 = u1F442; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F443.js b/dist/noto_emoji_regular/u1F443.js new file mode 100644 index 000000000..ef89cb55c --- /dev/null +++ b/dist/noto_emoji_regular/u1F443.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F443 = void 0; +var u1F443 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2043 2036q-41 85-119.5 119.5T1784 2190q-25 0-46-3.5t-39-8.5l-35-8q-16-4-30-4-47 0-130.5 53t-204.5 53q-70 0-119-16t-86-37l-64-37q-29-16-63-16-17 0-33 4l-35 8q-17 5-38 8.5t-46 3.5q-58 0-134.5-31.5t-121-118.5-44.5-195q0-66 28-141.5t74-155.5l67-117q27-46 50.5-107t48.5-135l55-160h-1q59-171 108-265.5T1094.5 603t204.5-66q98 0 200.5 63t160 174 131.5 343 124 314l18 29q55 86 103 191t48 197q0 103-41 188zm-128.5-319q-32.5-78-100.5-186l-17-30q-30-52-54.5-114.5T1692 1249l-56-163q-59-172-96-243.5T1438.5 725 1316 675l-16-1-16 1q-54 4-117.5 46t-103 112T963 1085l-55 163q-26 75-50.5 138T803 1501l-18 30-44 76q-37 63-63 127t-26 112q0 94 39.5 149t123.5 55q17 0 34-4l34-7 38-7q19-3 42-3 90 0 168 53t168 53 169-53 164-53q22 0 38.5 2t47.5 8l33 7q16 4 33 4 54 0 91-23t54.5-74.5T1947 1848t-32.5-131z" + }, + "children": [] + }] +}; +exports.u1F443 = u1F443; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F444.js b/dist/noto_emoji_regular/u1F444.js new file mode 100644 index 000000000..60f8235b9 --- /dev/null +++ b/dist/noto_emoji_regular/u1F444.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F444 = void 0; +var u1F444 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1674.5 2169.5Q1547 2232 1360 2232q-74 0-145.5-10.5T1073 2187l-44-16q-49-17-89.5-45t-40.5-59 28-48.5 72-17.5 128.5 17 224.5 17q51 0 105.5-4t94.5-13l52-11q26-5 52.5-9.5t53.5-4.5q41 0 66.5 14.5t25.5 41.5q0 58-127.5 120.5zm334.5-451Q1751 1843 1325 1843q-472 0-732.5-121T332 1369q0-366 268.5-567T1300 601q430 0 698.5 200.5T2267 1369q0 225-258 349.5zM1266 812q0-23-6-37t-20-14q-53 0-166.5 14.5t-132.5 21-25 42-6 147.5q0 64 9.5 77t38.5 13q10 0 47-2l158-7 48-1q30 0 44-6.5t14-35.5zm-675 294q13 6 27 6h9q4 0 6.5-1t30.5-5l49-7q8 0 38.5-4t37.5-4l14-3q16-2 27-11t11-28l9-157q0-13 1-15v-12q0-11-3-18t-12-8q-8 0-17.5 5.5T803 854l-40 28q-70 49-127.5 112.5T578 1084q0 16 13 22zm1087 565q185-22 185-95 0-48-89.5-84t-174.5-36q-59 0-146 15t-143 15q-57 0-141-15t-141-15q-85 0-178.5 34.5T756 1576q0 72 183.5 94.5T1310 1693q183 0 368-22zm-338-647q2 28 13.5 35t45.5 7h27q6 0 102 4.5t99 4.5l24 1q33 0 40.5-14.5t7.5-63.5q0-106-5.5-152.5t-35-52-133.5-19-155-13.5q-12 0-19.5 12t-7.5 39zm579.5-83Q1809 839 1774 839q-9 0-12.5 7.5T1758 865l1 12 8 155v17q0 37 39 39.5t108 13.5l68 10h9q18 0 28.5-8t10.5-21q0-40-110.5-142z" + }, + "children": [] + }] +}; +exports.u1F444 = u1F444; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F445.js b/dist/noto_emoji_regular/u1F445.js new file mode 100644 index 000000000..c25ddeccc --- /dev/null +++ b/dist/noto_emoji_regular/u1F445.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F445 = void 0; +var u1F445 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M904.5 553q45.5-15 88.5-15 75 0 141.5 9.5T1269 557q43 0 85-7.5t122-9.5h47q119 0 156.5 20.5T1717 598t-23 24-53 7q-15 0-29.5-1t-30.5-1q-57 0-148 26t-151 26q-43 0-85.5-7.5T1112 654l-84-19q-32-7-65-11t-57-4q-17 0-32-7t-15-19q0-26 45.5-41zM2209 1157.5q-67 68.5-170 108.5l-10 4q-98 301-121 479t-108 298.5-218 182.5-282 62q-153 0-286.5-64t-217-184.5-106-299T571 1270l-11-4q-101-39-169-108t-68-146q0-88 77-161t226-73q76 0 168.5 25.5t226 42T1299 862q151 0 285.5-17.5t222.5-42 167-24.5q149 0 225.5 73t76.5 161q0 77-67 145.5zM1863 1344l16-58q6-24 6-33 0-36-16.5-49.5T1829 1190q-8 0-15 1l-15 2-146 33q-35 8-68 15l-63 13-81 17q-12 3-23.5 14.5t-17.5 22-19 70-20 130.5-16 140-16 88q-9 27-29 27-23 0-31-26.5t-13-77.5l-11-121q-7-70-23-144.5t-22.5-85-18-22-21-14.5-83.5-18l-62-13q-34-7-68-15l-145-33-15-2q-8 0-16-1-28 0-42 15.5t-14 60.5q0 9 7 32l15 57q29 108 65 305.5t85.5 290T1036 2098t264 55q169 0 268.5-58t147-151 82-287.5T1863 1344zM623 912q0 18 55 76.5t125 87 83 28.5q9 0 11.5-11.5t2.5-34.5v-72l-1-16q-2-18-8-27t-76.5-31.5T703 883q-5 0-19-2t-28-2-24 3.5-10 17.5q0 8 1 12zm1292-31q-14 2-19 2-13 2-42.5 9t-59.5 17l-40 13q-30 11-41 17.5t-12 39.5l-2 39q0 57 2.5 71.5t11.5 14.5q12 0 81-27.5t126.5-87T1978 901q0-15-10.5-18.5T1943 879t-28 2zm-586 245q0 31 36 31 262 0 269-52.5t7-78.5q0-45-3-55.5t-20-10.5q-12 0-29 3l-23 4q-24 4-49 7l-100 11q-45 5-62 15t-20 45zm-62-90q-4-32-25.5-40T1137 979l-51-5q-26-3-50-7l-22-4q-18-3-30-3-16 0-20 10t-4 52q0 18 2.5 39t2.5 35q0 29 62 45t210 16q36 0 36-28 0-11-2-39z" + }, + "children": [] + }] +}; +exports.u1F445 = u1F445; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F446.js b/dist/noto_emoji_regular/u1F446.js new file mode 100644 index 000000000..dddeaf0f8 --- /dev/null +++ b/dist/noto_emoji_regular/u1F446.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F446 = void 0; +var u1F446 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1996 1574q-32 109-103 206t-137.5 159-77.5 101l-5 24q48 0 65.5 18t23.5 69.5 7 103.5v38q91 0 110.5 41.5T1902 2534v32H715q0-17-1-37v-78q0-29 4-81t12-67 38-20l20-2q10 0 16-1 0-20 7.5-80t17.5-99 55-39h15l34 2q7 0 10 2-31-136-105.5-193t-130-139.5T637 1561l-24-158-6-41q-9-52-22.5-91t-13.5-94q0-105 55.5-170.5T782 941q30 0 58 9.5t63 35.5v-46q0-38-1-102l1-118q0-160 14.5-270t82.5-163 170-53q80 0 137.5 49.5t78.5 119 30 247.5l7 145q2 56 3.5 65t2.5 10q12-3 27-3 62 0 110.5 39.5T1630 984l22-6q14-4 40-4 49 0 80 23.5t58.5 54.5 36.5 97l42 15q30 9 50.5 28.5t33 38.5 24 52 11.5 96q0 86-32 195zm-98-171l1-17q0-43-16.5-83.5T1840 1262q-20 0-32.5 26.5T1774 1315q-6 0-10.5-3.5t-4.5-11.5q0-17 5.5-34t5.5-39q0-43-24-83t-65-40q-35 0-49.5 38.5T1591 1181q-24 0-24-37 0-70-32-113t-88-43q-28 0-56.5 15.5t-40 61-35.5 45.5q-18 0-27-38.5T1276 961l-3-50q-3-49-5-104l-8-216-4-84q-3-74-32.5-107t-68.5-33q-67 0-89.5 49T1041 592l-13 627-3 74q-4 78-16.5 129.5T977 1474q-28 0-28-46.5t-7-119-30-124-42.5-71.5-58.5-20q-40 0-68.5 25t-28.5 67q0 18 5 37t11 38l12 38q10 37 22.5 186.5t136 254.5 163 169.5T1103 2045q0 17-3 32 41 0 86.5 2.5t98.5 2.5q60 0 119.5-1t108.5-3q12-109 105-176t177-195.5 103-303.5zm-599 908q177 0 266-2l101-1q0-90-8.5-108t-31.5-18l-108 3-105 2q-59 0-118 1-128 0-232.5-6.5T962 2175q-25 0-32 11t-10 64l-2 51q11 2 86 6t226 4h69z" + }, + "children": [] + }] +}; +exports.u1F446 = u1F446; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F447.js b/dist/noto_emoji_regular/u1F447.js new file mode 100644 index 000000000..8b461a19c --- /dev/null +++ b/dist/noto_emoji_regular/u1F447.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F447 = void 0; +var u1F447 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M603 1228q32-109 103-206t137.5-159T921 762l5-24q-48 0-65.5-18T837 650.5 831 547l-1-38q-93 0-111.5-42.5T698 268l-1-32h1187q0 17 1 37v78q0 29-4 81t-12 67-38 19l-20 3q-10 0-16 1 0 22-7.5 81.5t-17.5 98-55 38.5l-49-3q-7 0-10-1 31 138 107 195t133 146 71 193.5 19 128.5l7 40q8 53 21.5 92t13.5 94q0 107-56.5 171.5T1817 1861q-30 0-58-9.5t-63-35.5l1 46v219q-2 158-16 269t-81.5 164.5T1429 2568q-80 0-137.5-49.5t-78.5-119-30-247.5l-6-146q-3-55-4.5-64t-2.5-10q-12 3-27 3-62 0-110.5-39.5T969 1818l-21 6q-15 4-41 4-49 0-80-23.5t-58.5-54.5-36.5-97q-69-14-115-67t-46-163q0-86 32-195zm98 171l-1 17q0 43 17 83.5t42 40.5q20 0 32.5-26.5T825 1487q6 0 10.5 3.5t4.5 11.5q0 17-5.5 34t-5.5 39q0 43 24 83t65 40q35 0 49.5-38.5t40.5-38.5q24 0 24 37 0 70 32 113t88 43q37 0 61-18t36-61 35-43q18 0 27 38.5t13 110.5l2 50q3 50 5 104l8 216 3 84q4 74 33.5 107t68.5 33q62 0 86-41.5t28-183.5l13-627 3-74q4-78 16.5-129.5t31.5-51.5q12 0 21 9.5t10.5 98T1679 1593t47 92.5 62 23.5q40 0 68.5-25t28.5-67q0-18-5-37t-11-39l-11-37q-13-40-24-193t-174.5-283.5T1496 757q0-17 3-32-41 0-86.5-2.5T1314 720q-60 0-119.5 1t-108.5 3q-15 106-86 160.5T867 1009t-107.5 168.5T701 1399zm599-908q-177 0-266 2l-101 1q0 90 8.5 108t31.5 18l109-3 105-2q58 0 117-1 128 0 232.5 6.5T1637 627q25 0 32-11t10-65l2-50q-11-2-86-6t-226-4h-69z" + }, + "children": [] + }] +}; +exports.u1F447 = u1F447; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F448.js b/dist/noto_emoji_regular/u1F448.js new file mode 100644 index 000000000..e49e05e06 --- /dev/null +++ b/dist/noto_emoji_regular/u1F448.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F448 = void 0; +var u1F448 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1049 1985q-66-9-97-36.5t-54.5-58.5-23.5-80q0-26 4-41l6-21q-38-15-77.5-63.5T767 1574q0-15 3-27-4-2-22-3.5t-52-3.5l-146-6q-178-9-247.5-30t-119-78.5T134 1288q0-103 53.5-170.5T352 1036t269-16h219l46 1q-26-35-35.5-63t-9.5-58q0-98 64.5-154.5T1077 689q55 0 94 13.5t92 21.5l40 7q24 5 128.5 19t193.5 71 146 133 195 107q0-3-1-10l-3-49q0-45 38.5-55t98-17.5 81.5-7.5q0-6 1-16l3-20q4-30 19-38t67-12 81-4h78q20 0 37 1v1187l-32-1q-156-2-198.5-20.5T2193 1887l-38-1q-52 0-103.5-6t-69.5-23.5-18-65.5l-24 5q-39 11-101 77.5T1680 2011t-206 103-195 32q-110 0-163-46t-67-115zm254 31q123-13 221.5-58.5T1693 1850t124.5-133 160.5-86q2-49 3-108.5t1-119.5q0-53-2.5-98.5t-2.5-86.5q-15 3-32 3-140 0-270.5-163.5T1391 883t-193-24l-37-11q-20-6-39-11t-37-5q-42 0-67 28.5T993 929q0 39 23.5 62t92.5 47 157.5 25.5 98 10.5 9.5 21q0 19-51.5 31.5T1193 1143l-74 3-627 13q-142 4-183.5 28t-41.5 86q0 39 33 68.5t107 33.5l84 3 216 8q54 2 104 5l50 2q72 4 110.5 13t38.5 27q0 23-43 35t-61 36-18 61q0 56 43 88t113 32q37 0 37 24 0 26-38.5 40.5T1004 1799q0 41 40 65t83 24q22 0 39-5.5t34-5.5q8 0 11.5 4.5t3.5 10.5q0 21-26.5 33.5T1162 1958q0 25 40.5 42t83.5 17zm908-668q0-151-4-226t-6-86l-50 2q-54 3-65 10t-11 32l2 41q3 32 7 112.5t4 179.5q0 59-1 117l-2 105-3 109q0 23 18 31.5t108 8.5l1-101q0-89 2-266v-69z" + }, + "children": [] + }] +}; +exports.u1F448 = u1F448; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F449.js b/dist/noto_emoji_regular/u1F449.js new file mode 100644 index 000000000..944bbce47 --- /dev/null +++ b/dist/noto_emoji_regular/u1F449.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F449 = void 0; +var u1F449 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1126 2114q-109-32-206-103t-159-137.5-101-77.5l-24-5q0 48-18 65.5t-69.5 23.5-103.5 6l-38 1q0 91-41.5 110.5T166 2019l-32 1V833q17 0 37-1h78q29 0 81 4t67 12 20 38l2 20q0 10 1 16 20 0 80 7.5t99 17.5 39 55v15l-2 34q0 7-2 10 64-14 112-39.5t82-67.5 95.5-96 134.5-79 137-33l75-10 68-12q52-8 91-21.5t94-13.5q107 0 171.5 56.5T1759 900q0 30-9.5 58t-35.5 63l46-1h220q155 2 266.5 15.5t165.5 81 54 171.5q0 80-49.5 137.5t-119 78.5-247.5 30l-145 6q-56 3-65 4.5t-10 2.5q3 12 3 27 0 62-39.5 110.5T1716 1748l6 21q4 15 4 41 0 49-23.5 80t-54.5 58.5-97 36.5l-15 43q-9 29-28.5 49.5t-38.5 33-52 24-96 11.5q-86 0-195-32zm171-98l17 1q43 0 83.5-16.5t40.5-42.5q0-20-26.5-32.5T1385 1892q0-6 3.5-10.5t11.5-4.5q17 0 34 5.5t39 5.5q43 0 83-24t40-65q0-35-38.5-49.5T1519 1709q0-24 37-24 70 0 113-32t43-88q0-28-15.5-56.5t-61-40-45.5-35.5q0-18 38.5-27t110.5-13l50-2q49-3 104-5l216-8 84-3q74-4 107-33.5t33-68.5q0-62-41.5-86t-183.5-28l-627-13-74-3q-78-4-129.5-16.5T1226 1095q0-28 46.5-28t119-7 124-30 71.5-42.5 20-58.5q0-40-25-68.5t-67-28.5q-18 0-37 5t-38 11l-38 11q-38 12-187 23.5t-254 136T791.5 1182 655 1221q-17 0-32-3 0 41-2.5 86.5T618 1403q0 60 1 119.5t3 108.5q106 15 160.5 86T907 1850t168.5 107.5T1297 2016zm-908-599q0 177 2 266l1 101q90 0 108-8.5t18-31.5l-3-109-2-105q0-58-1-117 0-128 6.5-232.5T525 1080q0-25-11-32t-64-10l-51-2q-2 11-6 86t-4 226v69z" + }, + "children": [] + }] +}; +exports.u1F449 = u1F449; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F44A.js b/dist/noto_emoji_regular/u1F44A.js new file mode 100644 index 000000000..672f18099 --- /dev/null +++ b/dist/noto_emoji_regular/u1F44A.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F44A = void 0; +var u1F44A = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2230 2045q-115 116-322 182.5t-335 66.5q-127 0-210.5-39T1241 2150.5t-38-118.5l-22 4q-26 6-64.5 11.5t-62.5 5.5q-209 0-394.5-88.5t-295.5-304T254 1247q0-229 96.5-382.5T619 711q14 0 26.5 1.5T670 716l11 1 8-10q36-46 86.5-68.5T908 616q39 0 88.5 7t50.5 9.5 4 2.5q4 0 28-22t80-38.5 121-16.5q54 0 106 9.5t102 37.5q38-20 98.5-35t116.5-15q258 0 383 232.5t125 499.5q0 40-3 81.5t-8 86.5q57 51 101 137t44 176q0 161-115 277zm-801-284.5q37-52.5 37-203.5 0-90-4-161.5t-4-131.5q0-107 18-157t52-50q23 0 34.5 18t11.5 43q0 14-1.5 53.5t-1.5 94.5q0 206 30.5 346.5T1718 1753q103 0 179-158t76-419q0-56-5.5-108.5T1950 961l-2-7q-6-24-14-45l-19-43q-36-86-109-131.5T1643 689q-64 0-116.5 13.5T1440 747l-76-23q-15-4-19-4-20-5-40.5-7.5T1262 710q-57 0-99.5 24.5T1080 795q-60-23-125-23-51 0-99 14.5T766 833l-14 12q-9 7-11 14-17-9-39-12t-46-3q-127 0-195.5 91.5T392 1265q0 180 77 343.5T632 1772q25 0 41-12t16-31q0-15-6-32t-8-28l-8-38q-12-50-21-120t-9-135q0-98 20-171t58-73q14 0 18 11.5t4 33.5q0 49-3.5 89.5T730 1347q0 131 45.5 272.5t93 174.5 98.5 33q39 0 74.5-21.5t35.5-55.5q0-23-15-57t-29-129-14-258 14.5-189.5 43.5-26.5q14 0 26 12.5t12 41.5q0 109 4.5 197.5T1141 1538t38.5 162 44 83.5 89.5 29.5q79 0 116-52.5zm708.5-67Q2098 1636 2063 1617q-41 114-101 182t-134.5 101-190.5 33q-59 0-91-5l-49-6q-40 15-70 45t-30 79q0 42 43.5 78.5T1556 2161l20-1q64-3 231-39.5t268.5-122T2177 1817q0-66-39.5-123.5z" + }, + "children": [] + }] +}; +exports.u1F44A = u1F44A; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F44B.js b/dist/noto_emoji_regular/u1F44B.js new file mode 100644 index 000000000..bb659bd10 --- /dev/null +++ b/dist/noto_emoji_regular/u1F44B.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F44B = void 0; +var u1F44B = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1945 2041l-2 48q47 0 63.5 34t19.5 158v38q91 0 111.5 36.5T2161 2556v37H966q0-20-1-43v-78q0-14 1-25l1-31q0-40 6-65t13-32 34-11l21-2q9 0 14-2l2-21q4-53 12-102t13.5-64.5 31.5-27.5l-10-29q-58-18-127-70.5t-136-147T732 1707l-154-147-72-71-119-119q-59-60-80.5-114.5T285 1148q0-72 47-137.5T456 921q-12-39-12-83 0-95 68-164.5T682 596q2-98 71.5-169.5T930 355q22 0 43.5 3t41.5 11q29-69 93.5-108.5T1249 221q78 0 138.5 42t93.5 122l54 129 107 268 75 192q14 37 35.5 74.5T1814 1174q14-22 30-46l31-44q14-21 26-38l18-24q40-47 103-79t126-32q103 0 175 80.5t72 175.5q0 79-38.5 133.5T2307 1370l-47 65q-25 33-58 80t-50 70q-31 132-82 232t-86.5 128.5-38.5 95.5zM829.5 659Q840 697 1035 978l65 93q31 44 54 74 37-25 76-44l81-39-149-272q-91-163-126.5-230.5T929 492q-44 0-77 28.5T819 600q0 21 10.5 59zm-207 288.5Q664 998 690 1028l146 174 118 139q35-43 66-77.5t68-67.5l-88-120q-48-64-90-123L788 784q-19-27-43-39t-50-12q-44 0-79 28t-35 77q0 59 41.5 109.5zM1709 2336l213-3q0-90-8-108t-30-18l-111 3-106 2q-59 0-119 1-142 0-229.5-5.5T1214 2200q-24 0-32.5 13t-10.5 96l-1 19q16 0 111.5 4.5t272.5 4.5q89 0 155-1zm305-760l11-48 122-171 50-69q13-19 37-50.5t24-70.5q0-42-33.5-80t-76.5-38q-34 0-69 19t-54 42l-19 26-33 48-91 135q-50 66-126.5 86.5T1649 1457t-50 31q-11 0-18-7t-7-15q0-16 16-36t44-42l26-19q8-6 33.5-18t25.5-33-8.5-37.5-35.5-77.5-68-132l-9-26-127-324-59-145q-21-51-56-134.5T1249 358q-55 0-85.5 30.5T1133 469q0 37 25.5 99t83.5 182l52 108q22 48 46.5 98t44.5 87l24-4q11-2 34-2 13 0 24 3.5t11 13.5q0 21-46 41t-135.5 73.5T1104 1310t-138.5 135-51.5 47q-21 0-21-21 0-17 8-36.5t13-28.5q-62-65-130.5-140.5T665 1131l-40-46q-19-22-42-31t-46-9q-47 0-80.5 31.5T423 1148q0 63 60.5 125.5T597 1388l69 68q90 89 134.5 127T930 1732l39 52q50 68 104.5 103t96 52 60 64.5 21.5 79.5l1 12q6 0 13 1h12l292 10q58 0 111-1t124-5l1-26q0-15 2-33l3-36q10-89 65-144t88-134 51-151zM781 1915q8 2 15.5 5.5t7.5 12.5q0 13-18 20.5t-43 7.5l-29 1q-131-8-197-46t-123-124.5-76-199.5l-1-8q0-17 15-17 11 0 12 7.5t49.5 92 121 146T713 1900zm-167 121q11 0 21 3.5t10 15.5-25.5 19-64.5 7q-174 0-262.5-113.5T204 1800q0-12 11-12 18 0 49 47t114 115.5 223 85.5h13zM1700.5 362q7.5-6 13.5-6 33 0 107 46.5T1933 519t38 162q0 51-17.5 130.5T1915 891q-6 0-9.5-5.5T1902 874q0-17 2.5-33t2.5-33q-2-79-10.5-144.5t-43-121-97.5-107-63-60.5q0-7 7.5-13zm325.5 44l-16-28q-11-18-25.5-31.5T1970 322q0-8 5-11.5t10-3.5q6 0 14 3.5t15 8.5l13 9q49 38 86.5 99.5T2151 563q0 42-26.5 132t-53.5 90q-8 0-10.5-8t-2.5-13 11.5-60.5T2081 603q0-108-55-197z" + }, + "children": [] + }] +}; +exports.u1F44B = u1F44B; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F44C.js b/dist/noto_emoji_regular/u1F44C.js new file mode 100644 index 000000000..823469bd3 --- /dev/null +++ b/dist/noto_emoji_regular/u1F44C.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F44C = void 0; +var u1F44C = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2188 1037q48 36 72.5 92t24.5 126q0 76-30.5 163t-91.5 163l-29 36q-37 47-100.5 102t-141.5 97l-51 25q-14 7-26 14t-18 13v81q56 4 64 67t10 124v39q100 0 116 47.5t19 191.5v35H810q0-23-1-50.5t-1-52.5q0-12 1-23.5t1-20.5l1-30q0-69 12-88t76-23l7-63q7-63 17.5-109.5T982 1946q8 0 18.5 1.5t21.5 1.5l-2-32q0-15-1-29l-21-23q-17-21-36.5-31.5T904 1792l-4-2q-85-67-152.5-152.5t-93-131.5-68-94.5-108-151.5T369 1048t-52-183q-3-22-3-43 0-116 74-184t175-68q55 0 107 25 0-144 68-230t184-86q65 0 120 30t90 85q51-95 117-146.5t147-51.5q104 0 174.5 74.5T1641 442q0 52-20.5 101.5T1571 654q45-21 91-32t96-11q177 0 309.5 111T2200 965q0 38-12 72zM1183 896.5q13 65.5 46 132.5 14-4 97.5-25.5T1410 853q0-26-2-50.5t-2-44.5q0-12 2-28l3-27q11-48 54-133.5t43-127.5q0-44-32.5-79t-78.5-35q-84 0-155.5 139.5T1170 770q0 61 13 126.5zM803 594q0 157 41 301.5T956 1158q49-32 100-58.5t107-46.5q-51-102-82.5-244.5t-35-235.5-39.5-127.5-84-34.5q-58 0-88.5 44.5T803 594zm300 1598q42 3 101.5 4.5t134.5 1.5h159l149-2q102-2 120-2 0-81-7-103.5t-32-22.5l-88 2q-41 0-91 1t-98 1q-95 0-202-3.5t-154-6.5l-36-2h-11q-20 2-25 25t-8 78l-1 24zm1019.5-1036q-29.5-35-86.5-35-85 0-111.5 87t-64.5 124-89 37q-72 0-112.5-42.5T1618 1217q0-79 38.5-153t117.5-74q35 0 82 43t98 43q44 0 78.5-36t34.5-76q0-73-94.5-146.5T1756 744q-110 0-188.5 72t-92 156-70.5 95-212 63-241 104l-25 15q-12 7-23 12t-20 5q-11 0-15-4t-4-8q0-11 12.5-27t24.5-26q-68-72-127-178t-93.5-213.5T562 702q-55 0-85 34t-30 86q0 50 22.5 116.5T517 1058t58 108.5 84 123.5 64 78.5 29.5 45 76 112 111 123 98.5 78.5 78.5 70.5 34.5 77.5l5 84 104 4q57 3 125 3 54 0 97-1l76-1q33 0 59.5-1.5t47.5-3.5v-109l2-12q2-21 26-51t70-56l62-29q133-71 230-197t97-250q0-64-29.5-99zm-320.5 2l-16-12q-8-6-16-14-3 5-6 17.5t-5 26.5l-8 49 1 6 19 5q3-4 7-13l15-39z" + }, + "children": [] + }] +}; +exports.u1F44C = u1F44C; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F44D.js b/dist/noto_emoji_regular/u1F44D.js new file mode 100644 index 000000000..2762377b2 --- /dev/null +++ b/dist/noto_emoji_regular/u1F44D.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F44D = void 0; +var u1F44D = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2264 1098l28 1q14 0 27 1l-2 1151-145-4q-29 0-50-3l-29-3q-31-2-64.5-9t-37.5-29l-4-22q-2-13-2-29-31-4-63-9l-58-11q-71-12-83-29t-12-37q0-13 1-18t3-10q-62 5-114.5 29t-91.5 66l-34 37q-75 82-173.5 137t-188.5 70.5-196.5 36T793 2434q-133 0-217.5-60T491 2207q0-19 3-35t3-27q0-24-37-41t-71.5-66.5T354 1918q0-41 15.5-89t15.5-57q0-15-35.5-53t-52.5-75-17-80q0-54 20-96t35.5-57.5T351 1383q0-13-12-26t-27.5-49-15.5-89q0-115 75.5-184.5T534 965q101 0 196.5 16.5T825 998q5 0 6-1t1-6q0-6-23.5-98.5T785 693q0-79 17-174t84-145.5 166-50.5q119 0 185 72t92 184 31.5 155 78.5 158.5 140.5 193.5 108.5 158l10 18q10 21 26.5 33t41.5 12q8 0 19-1l21-2q0-2-1-3t-1-3q2-49 30.5-65.5T1961 1216q32 0 48.5 1t29.5 1q0-99 56-109.5t134-10.5h35zm-579 824q3 0 4-2 29-4 54-6l45-2q9-88 17-230.5t8-199.5q0-14-1-25.5t-1-22.5q-6 0-19 1-141 0-194-88t-78.5-124-143-170-133-230-41.5-219.5T1077 480q-77 0-116.5 46T921 678q0 165 64.5 307.5T1165 1279q6 79 27.5 156t58.5 122l28 35q12 16 20.5 29t8.5 25q0 10-5.5 19.5t-20.5 9.5q-36 0-104-45.5t-68-50.5q-6 0-9 10l-7 25q-5 15-11 30.5t-18 25.5q2 0 19.5 27t32.5 60.5 15 57.5q0 39-19 85.5t-32 59.5q28 12 54.5 49.5t26.5 69.5q0 14-3 30l-15 62q-4 15-4 26 0 17 15 25t37 8q60 0 145-52.5t122.5-102 101-96T1685 1922zM515 1676l43-1q29 0 66-2l78-3q120-6 177-16t79.5-44 22.5-72q0-39-31.5-69.5T884 1438q-12 0-39-1l-309-10q-65 0-102 39t-37 101q0 52 34 80.5t84 28.5zm-98-465q0 99 132.5 112.5T733 1341t95 4q64 0 101.5-31t37.5-83q0-35-26-63t-60-37l-38-9-126-24q-46-8-97-15.5t-68-7.5q-77 0-106 45t-29 91zm47 712q5 47 45 74t88 27q21 0 109.5-13.5t196-38.5 107.5-116q0-43-25.5-73t-65.5-30h-8q-8 0-30 2l-247 19-53 5q-57 5-87 42t-30 91v11zm573 167q-22-33-63-33-4 0-7 1t-8 1l-260 42q-52 10-75.5 42.5T600 2216q0 52 40.5 81.5T738 2327q5 0 23-3t43-9l55-12q151-35 175.5-64t24.5-72q0-44-22-77zm1006-566l6-174q0-25 1-34-70 0-99 6t-29 28l-1 105q-2 108-8 241t-11 198l-6 91q0 21 11 28.5t52 16.5l54 11q20-189 30-517z" + }, + "children": [] + }] +}; +exports.u1F44D = u1F44D; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F44E.js b/dist/noto_emoji_regular/u1F44E.js new file mode 100644 index 000000000..70e916930 --- /dev/null +++ b/dist/noto_emoji_regular/u1F44E.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F44E = void 0; +var u1F44E = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M370 1779h-35q-16 0-28-1-14 0-27-1l2-1151h35l53 2 107 5 30 2q30 3 62.5 9.5T608 674l4 22q2 13 2 29 31 4 63 9l58 11q8 2 51.5 12.5T830 811q0 13-1 18t-3 10q62-5 114.5-29t91.5-66l34-37q74-82 172-136.5t195-71.5 198-36.5 175-19.5q133 0 217.5 60t84.5 167q0 19-3 35t-3 27q0 24 37 41t71.5 66.5T2245 959q0 41-15.5 89t-15.5 57q0 15 35.5 53t52.5 75 17 80q0 54-20 96t-35.5 57.5-15.5 27.5q0 13 12 26t27.5 49 15.5 89q0 115-75.5 184.5T2065 1912q-65 0-134-8t-130-20l-27-5q-5 0-6 1t-1 6q0 6 23.5 98.5T1814 2184q0 78-16.5 173.5t-82.5 146-168 50.5q-91 0-146.5-39.5t-89-103.5-51.5-152-23.5-124.5-71-142.5-146-202T916 1642.5t-50-65.5q-14-7-33-7-8 0-18 1l-22 2q0 2 1 3t1 3q-2 49-30.5 65.5T638 1661q-32 0-48.5-1t-29.5-1q0 99-56 109.5T370 1779zm544-824q-3 0-4 2-29 4-54 5l-45 3q-9 88-17 230.5t-8 199.5q0 14 1 25.5t1 22.5q6 0 19-1 141 0 194 87.5t76 121.5 143.5 171 135.5 238 42 219 124 118q77 0 116.5-46t39.5-152q0-165-64.5-307.5T1434 1598q-7-89-30.5-166t-68-128.5-44.5-72.5q0-10 5.5-19.5t20.5-9.5q36 0 104 45.5t68 50.5q6 0 9-11l8-25q4-14 10-29.5t18-25.5q-2 0-19.5-27t-32.5-60.5-15-57.5q0-39 19-85.5t32-59.5q-29-13-55-50t-26-69q0-14 4-30l15-63q3-14 3-25 0-17-15-25t-37-8q-60 0-145 52.5t-122.5 102-101 96T914 955zm1170 246h-43l-66 2-78 4q-7 0-143 11t-136 121q0 39 31.5 69.5t65.5 30.5q12 0 40 1l274 9q25 0 34 1 65 0 102-39t37-101q0-52-34-80.5t-84-28.5zm98 465q0-99-132.5-112.5T1866 1536t-95-4q-71 0-105 33.5t-34 80.5q0 35 26 63t60 37l39 8q25 6 58 12l68 12q45 9 96 16.5t68 7.5q77 0 106-45t29-91zm-47-712q-5-47-45-74t-88-27q-21 0-109.5 13.5t-196 38.5-107.5 116q0 43 25.5 73t65.5 30h8l30-3 300-23q57-5 87-41.5t30-91.5v-11zm-573-167q22 33 63 33 4 0 7-1t8-1l260-42q52-10 75.5-42.5T1999 661q0-53-41-82t-97-29q-5 0-23 3t-43 8l-55 13q-96 22-148 45.5t-52 90.5q0 44 22 77zM556 1353l-6 174q0 25-1 34 70 0 99-6t29-28l2-106q0-107 6.5-240T697 983l6-91q0-21-11-28.5T641 847l-55-11q-20 189-30 517z" + }, + "children": [] + }] +}; +exports.u1F44E = u1F44E; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F44F.js b/dist/noto_emoji_regular/u1F44F.js new file mode 100644 index 000000000..ef29e5d33 --- /dev/null +++ b/dist/noto_emoji_regular/u1F44F.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F44F = void 0; +var u1F44F = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2356.5 2044.5q-32.5 108.5-97 187.5T2118 2363.5t-151.5 81T1777 2473q-214 0-391.5-109.5t-331-293T886 1729q-19-4-58.5-9.5T738 1708l-105-13-104-14q-58-7-115.5-16.5t-107.5-39-81.5-78.5-31.5-108q0-36 12-68.5t29-61.5q-42-32-69.5-79T137 1129q0-50 24.5-97t61.5-77q-20-29-32.5-61.5T178 825q0-68 45.5-129T338 614q-3-14-5-27t-2-26q0-92 70-156.5T553 340q64 0 123.5 33.5T882 495l182 111q93 57 142.5 85t60.5 28q6 0 6-5 0-6-14.5-42t-14.5-91q0-112 62.5-179t164.5-67q73 0 131.5 39.5t83.5 109 54 145.5 49 151l39 132 24 88q20 73 21.5 102.5t6.5 49.5h15q117 0 244 106.5t188.5 276T2389 1844q0 92-32.5 200.5zm-132-463.5q-46.5-129-148-220t-180.5-91q-33 0-48.5 13t-15.5 34q0 30 35 61.5t117 142 82 136.5q0 13-9.5 23.5T2033 1691q-20 0-33-24t-56-85.5-107-133.5l-8-11-70-75q-61-61-123-115t-96-79l-24-17q-47-32-80-43.5t-59-11.5q-31 0-53.5 15t-22.5 33q0 10 7 22l42 41q51 50 130.5 136.5T1622 1506l16 17q14 17 23.5 31.5t9.5 25.5q0 14-10 22.5t-23 8.5q-22 0-36.5-24T1428 1389t-179-187-45-13-47.5 22.5-22.5 47.5q0 18 8 35t18 32l99 120q47 58 86.5 104.5t79.5 90.5l45 48q11 12 18.5 23t7.5 20q0 12-8.5 22.5T1462 1765q-10 0-17.5-4.5t-64-67.5-142-165.5T1121 1383l-6-9q-4-3-8.5-5.5t-10.5-2.5q-17 0-34 21.5t-17 47.5q0 57 88 197.5t151 196.5 63 74q0 14-10.5 24t-24.5 10q-21 0-87-70.5T1116.5 1731t-53-86-25.5-21q-16 0-26.5 17.5T1001 1699q0 61 35.5 136.5T1194 2049t265 220l38 21q43 25 118.5 45t159.5 20h36q115 0 239-86.5t172.5-198.5 48.5-226q0-134-46.5-263zM509 1555l74 10 155 20q35 5 59 7l49 5q22 3 54 10 8-23 22.5-41.5T949 1537q-10-25-16-51t-6-53q0-45 21.5-90t67.5-71v-10q0-73 54-131.5t133-58.5q21-36 55-59t79-30q3-14 11-27t8-27q0-24-85-67t-133-64q-39-26-83-54L852 619l-118-71-116-67q-18-11-34-15t-31-4q-37 0-68.5 31.5T453 562q0 29 22 58.5t51.5 47T618 718l87 46 95 49q39 21 83 43t81 40q4-3 24-24t39-21q5 0 9.5 3.5t4.5 11.5q0 11-5 23l-9 18q-73 135-107.5 281.5t-37 217.5-25.5 71q-12 0-21.5-21.5T823 1410q-61-11-122-22.5T588 1365l-143-29-12-2q-6 0-13-1-43 0-73.5 32t-30.5 74q0 39 37 68t83 37zm865.5-926q8.5 28 33.5 93l39 106q5 14 6.5 27.5t1.5 24.5q0 35-13.5 56t-31.5 45q71 6 152.5 59.5T1756 1196v-15q0-62-17-124.5T1697 935l-42-155q-29-84-57.5-176.5t-51.5-119-75-26.5q-51 0-78 35t-27 87q0 21 8.5 49zm-1053 253q20.5 29 51 45.5T578 1004l102 35q50 17 96 31l79 25q12-37 29.5-75t37.5-70q-26-11-67-30L499 759q-14-6-43-19.5T404 726q-43 0-73 32t-30 67q0 28 20.5 57zM261 1119q0 4-1 9 0 33 31 65.5t64.5 41.5 104.5 25l356 81q0-48 4.5-90.5T834 1166q-59-17-127-38l-130-39q-63-19-111-35l-67-21q-10-3-19-4t-17-1q-38 0-63.5 24.5T263 1110zm654 954q12 0 15 13t3 24v19q0 47-4.5 96t-9.5 93l-7 67q-4 36-7.5 55.5T901 2477q0 28-8 41.5t-29 13.5q-15 0-82.5-17.5t-102-40T645 2429q0-20 16-49.5t48-69.5l21-26q64-93 114.5-152t70.5-59zm-204.5-203.5Q691 1890 619 1949t-96 83-45 36.5-53 41.5-57 29q-50 0-85-85t-35-95q0-21 16.5-36.5T424 1876t191.5-44.5T710 1818q7 0 13.5 4.5t6.5 13.5q0 13-19.5 33.5zM1882 649.5q-4-16.5-4-28.5 0-62 4-83t10-183.5 51-162.5q20 0 40 5t40 11l39 14q8 3 49 15t41 39q0 23-33 66.5T2010 510t-84.5 140-24.5 16q-15 0-19-16.5zM2460 924q3 13 3 26 0 18-14 27t-136 22.5-213 13.5q-53 0-53-22 0-20 57.5-51.5T2217 875t102-64 78-31q9 0 24 20t23 43l6 28q3 15 5 31z" + }, + "children": [] + }] +}; +exports.u1F44F = u1F44F; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F450.js b/dist/noto_emoji_regular/u1F450.js new file mode 100644 index 000000000..bc068a895 --- /dev/null +++ b/dist/noto_emoji_regular/u1F450.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F450 = void 0; +var u1F450 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2497 1999q13 23 20.5 49.5t7.5 53.5q0 62-37.5 110.5t-79 68.5-129.5 36l-198 35q-32 6-54 9l-42 9q-59 14-122 38t-194 24q-236 0-373.5-133.5T1158 1948q0-52 11.5-113t37.5-125l-4-130q-83 116-193 181t-229 65q-98 0-196.5-42t-194-162T276 1425t-59-146q-8-13-24.5-43.5T166 1186l-43-84h-1q-8-17-43-86.5T44 887q0-74 44.5-130.5T215 688q12-79 65.5-125T418 517q15 0 23 1 24-51 69.5-81T615 407q56 0 107 28 26-24 58.5-35.5T851 388q86 0 141.5 52.5T1056 578l9 116 12 163 4 66q0 29 1 39l2 7q0 25 3 44l4 36q2 17 4.5 32.5t4.5 33.5q65-47 100-65t96-18q88 0 144.5 61.5T1497 1236q0 16-1.5 30t-6.5 28q34 13 81.5 67t47.5 200q67-36 82-46l45-31q37-25 123.5-83.5T1984 1323l85-55q28-19 58-27.5t59-8.5q78 0 140 59.5t62 140.5v12q52 21 89.5 72t37.5 112q0 44-22 88 29 29 46 66t17 77q0 79-59 140zM187.5 833Q167 855 167 887q0 21 6 36.5t15 32.5l73 142 25 46q94 176 102 227.5t65.5 124.5 92 106.5 100 56T789 1681q106 0 193-54t154-172l5-8q114-85 173-124t59-87q0-34-21.5-57.5T1296 1155q-48 0-85 29t-94.5 77.5T997 1310h-29q-40 0-60.5 11t-30.5 11q-5 0-12.5-4.5T857 1315q0-9 17-21t41-21l21-8q8-3 30-6t22-31q0-38-7-82.5t-17-86.5l-8-160-6-100-8-107q0-14-8-97.5T849 511q-35 0-54.5 27T775 606q0 7 3 31l6 59 9 75 16 116 16 107 12 1q14 2 30.5 8t16.5 15q0 8-13 13.5t-26 5.5q-122 15-231.5 59.5t-143 68T423 1188t-14-11 12-25l17-21q-21-44-40-88l-36-80q-19-42-42-97t-76-55q-36 0-56.5 22zm1162 1308.5Q1415 2228 1487 2267t247 39q48 0 128.5-29t133.5-38l102-17 184-33q73-13 95.5-38t22.5-49q0-31-22.5-56t-56.5-25q-12 0-22 3l-194 48q-47 12-95 22l-2 14q-3 15-9 27t-14 12-11.5-6.5-3.5-17.5l-1-9q-14-135-65-255.5t-66.5-142.5-15.5-35q0-9 11-9 14 0 28.5 12.5t20.5 20.5q24-13 57-32l68-38q30-17 65-37.5t71-42.5l50-31q37-22 54-45.5t17-47.5q0-28-24-52t-54-24q-21 0-50 17l-94 62q-33 22-68 46l-120 82q-29 19-69.5 45t-72.5 45l-36 21q-18 10-43 25l-15 9q-21 12-28.5 20.5t-7.5 16.5 16.5 40 16.5 71q0 8-3 15t-12 7q-22 0-26.5-32.5t-41-75T1493 1669q0-31 1-60t1-52q0-24-1-40t-1-22q-6-35-28-65t-53-30q-34 0-61.5 22t-27.5 62l6 166q0 42 1 82l-3 10q-27 69-35 113t-8 82q0 118 65.5 204.5zM2273 1563l-94 49-71 36-192 96q18 22 32.5 53t25.5 57q25-8 60-22l150-59 70-28q32-13 55-23l28-13q17-11 35.5-33t18.5-48v-11q-2-21-24.5-42t-54.5-21q-20 0-39 9zM697 599q-6-33-30-51t-51-18q-34 0-54 25.5T542 622q0 11 2 15 0 7 6 30l15 57q9 34 21 73l23 79 23 75q11 36 19 60 26-7 51-12t51-7l20-3-11-55q-7-33-14-73l-16-81q-4-21-14-69t-14-72zm-209 97q-8-29-30-42.5T411 640q-34 0-54 22t-20 64q0 17 2 25.5t11 29.5l110 268 19 49q27-20 57-37t61-29l-32-98q-18-52-33-100zm1920 1112q-25-24-53-24-18 0-32 5l-234 84q-52 19-97 34 9 33 13.5 65.5t6.5 67.5l329-90q26-7 37-13t33-29 22-47q0-29-25-53z" + }, + "children": [] + }] +}; +exports.u1F450 = u1F450; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F451.js b/dist/noto_emoji_regular/u1F451.js new file mode 100644 index 000000000..3c523163e --- /dev/null +++ b/dist/noto_emoji_regular/u1F451.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F451 = void 0; +var u1F451 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1175 581.5q52-52.5 124-52.5t124.5 52.5T1476 706t-52.5 124-124.5 52q-71 0-123.5-52.5T1123 706q0-72 52-124.5zm55.5 193.5q27.5 28 68.5 28 42 0 69.5-28t27.5-69q0-39-27.5-68t-69.5-29q-41 0-68.5 28.5T1203 706q0 41 27.5 69zm-983 134.5Q206 868 206 809q0-61 42.5-102.5T348 665q59 0 101.5 42.5T492 809q0 57-41.5 99.5T348 951q-59 0-100.5-41.5zm153-49Q422 839 422 809q0-31-21.5-52.5T348 735q-30 0-51.5 21.5T275 809q0 30 21.5 51.5T348 882q31 0 52.5-21.5zm326-136.5q35.5-36 84.5-36 50 0 85.5 35.5T932 809t-35.5 85.5T811 930q-49 0-84.5-36T691 809t35.5-85zm976 0q35.5-36 84.5-36 50 0 85 36t35 85-34.5 85-84.5 36q-51 0-86-36t-35-84q0-50 35.5-86zm649 185q-41.5 42-101.5 42-59 0-101-42.5t-42-99.5q0-59 43-101.5t100-42.5q58 0 100.5 42t42.5 102q0 58-41.5 100zm-49-152.5Q2281 735 2250 735q-30 0-51.5 21.5T2177 809q0 30 21.5 51.5T2250 882q31 0 52.5-21.5T2324 809q0-31-21.5-52.5zM2240 1082q16 7 26 22t10 32l-22 794q-5 154-279.5 249t-672.5 95q-396 0-672-95.5T349 1928l-22-794q0-22 18-40t41-18q11 0 22 4.5t19 12.5l264 246 93-290q5-16 19-28.5t31-12.5q18 0 34 7t24 23l160 294 202-298q17-26 49-26 14 0 27.5 6.5t21.5 19.5l196 294 159-290q8-14 21.5-22t29.5-8q20 0 35.5 10.5t21.5 30.5l93 294 268-250q17-17 39-17 7 0 13 2zm-101 745q-32-20-52.5-57.5T2066 1684q0-49 22.5-88.5t58.5-56.5l7-264-430 404q-17 15-42 15-30 0-48-26l-331-496-334 496q-20 27-51 27-20 0-38-16l-431-404 7 267q34 17 55.5 55.5T533 1684q0 47-19.5 83.5T464 1824l3 102q0 50 112 105t300.5 90 422.5 35q357 0 596-76t239-152zm-735.5 128.5Q1362 2005 1302 2005t-102-49-42-120q0-64 42-116.5t102-52.5q52 0 97.5 47t45.5 122q0 70-41.5 119.5zm-659-19.5q-20.5 24-49.5 24t-49.5-24-20.5-58q0-33 20.5-57t49.5-24q28 0 49 23.5t21 57.5-20.5 58zm275 48q-20.5 24-49.5 24t-49.5-24-20.5-58q0-35 20.5-59t49.5-24 49.5 24 20.5 59q0 34-20.5 58zm934-48q-20.5 24-49.5 24t-50-24-21-58q0-33 21-57t50-24 49.5 25 20.5 56q0 34-20.5 58zm-275.5 48q-21 24-50 24t-49-24-20-58q0-35 20-59t49-24 50 24 21 59q0 34-21 58z" + }, + "children": [] + }] +}; +exports.u1F451 = u1F451; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F452.js b/dist/noto_emoji_regular/u1F452.js new file mode 100644 index 000000000..57a9624d2 --- /dev/null +++ b/dist/noto_emoji_regular/u1F452.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F452 = void 0; +var u1F452 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2251 2381.5Q2113 2516 1873 2516q-342 0-746.5-249t-660-635T211 901q0-248 141-397.5T730 354q137 0 288 46t307 134q57-19 117.5-30.5T1569 492q271 0 476.5 208t205.5 475q0 64-11.5 124.5T2210 1417q85 154 132 305t47 291q0 234-138 368.5zm-10.5-584Q2210 1680 2151 1560q-84 158-163 218.5t-174 60.5q-178 0-394.5-151.5t-366-367T904 928q0-72 25-121.5t74.5-92T1078 656l21-13q11-7 28-19 5 0 12.5-4t15.5-10l16-10q8-5 14-8-121-59-236-89.5T730 472q-191 0-295 113.5T331 903q0 315 239 672t614 590 689 233q190 0 294-100.5t104-284.5q0-98-30.5-215.5zM1211 713q-2 9-2 18l-1 19q0 136 134 324t324 324.5 330 136.5h17l16-3q43-76 73-167.5t30-189.5q0-222-170.5-393.5T1569 610q-89 0-187 29t-171 74zm489 1480q16 4 28.5 14.5t12.5 26.5q0 23-17 30t-32 7q-37 0-74-15t-37-41q0-21 16-30.5t33-9.5q9 0 31 6zm232 11q17 0 30 11t13 28q0 25-23 38t-51 13q-24 0-44.5-11.5T1836 2246t24-29 43-8zm228-.5q-29 26.5-53 26.5-17 0-25.5-11t-8.5-25q0-10 4-18 0-4 29.5-35.5t48.5-31.5q15 0 24.5 14t9.5 26q0 28-29 54.5zM1938 2046q19 0 33 7t14 29q0 21-23 33t-59 12q-27 0-42.5-8.5T1845 2095q0-18 16-29t46-16zm229-44q-6 21-34 42t-53 21q-18 0-28.5-12.5T2041 2030q0-25 41-51t51-26q12 0 24 13.5t12 26.5q0 3-1 5t-1 4zm-79-111q-34 22-63 22-13 0-21.5-11t-8.5-22l2-13q0-4 33.5-31.5t62.5-27.5q15 0 22 11t7 23q0 27-34 49zm-265-539.5q13-11.5 24-11.5 7 0 39 11.5t56.5 20 24.5 27.5q0 18-16 25.5t-33 7.5q-30 0-69-18t-39-34q0-17 13-28.5zm152-28.5q-29-2-61.5-21t-32.5-40q0-14 11.5-24t25.5-10q19 0 33 8t49.5 17.5 35.5 33.5q0 17-14.5 27t-37.5 10zm-37.5-237q10.5-11 26.5-11 10 0 23 6l23 12q3 0 32 15.5t29 44.5q0 17-12.5 24t-29.5 7q-29 0-65.5-24.5T1927 1108q0-11 10.5-22zM1703 1330q-28-2-61.5-31t-33.5-56q0-11 9-23t24-12q18 0 57.5 34.5t39.5 55.5q0 14-10.5 23t-24.5 9zm5-229q9-13 28-13 7 0 14.5 5.5t14.5 13.5l13 16q4 5 22 24t18 33q0 17-12.5 23.5t-23.5 6.5q-32 0-57.5-28t-25.5-54q0-14 9-27z" + }, + "children": [] + }] +}; +exports.u1F452 = u1F452; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F453.js b/dist/noto_emoji_regular/u1F453.js new file mode 100644 index 000000000..9f3875f17 --- /dev/null +++ b/dist/noto_emoji_regular/u1F453.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F453 = void 0; +var u1F453 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2499 1311q-22 29-61 29-29 0-47-30.5t-18-67.5v-19q0-10-2.5-20t-12.5-10q-17 0-54.5 56.5T2212 1414t-66.5 123.5-12.5 36.5q0 11 3.5 21t3.5 21q0 42-30.5 89t-41 129-60.5 163-151 139.5-209 58.5q-107 0-210-32.5T1236 2061t-138.5-158.5-44-166T993 1660q-43 0-58 60.5t-66 122-123 90.5-157 29q-206 0-336-186.5T123 1344q0-11 1-20t1-19q0-28-23-69t-23-70q0-42 36-73.5t84.5-47.5 69.5-31 122-55 247.5-123.5 216-115.5T994 665q91-30 190-30 155 0 261.5 52T1552 838q0 49-26.5 83.5T1453 956q-66 0-99-64.5t-64.5-89T1185 778q-60 0-117 18.5T953 848l-72 42q-69 42-198.5 127T553 1112q0 24 55.5 37.5t120 38.5 135 85 101 84.5T1077 1382q40 0 120-25.5t248-25.5q128 0 256.5 28t180 52.5 70.5 24.5q34 0 75.5-59.5T2141 1231l63-75q73-88 123-124t87-36q53 0 80 77t27 154q0 55-22 84zM783.5 1471.5q-27.5-71.5-101-116T541 1294l-52-11q-18-4-38.5-7t-39.5-3q-58 0-84.5 12t-35.5 36-9 89q0 138 85.5 260T608 1792q92 0 147.5-57t55.5-145q0-47-27.5-118.5zm968 111Q1617 1522 1436 1522q-131 0-187.5 40t-56.5 124q0 95 59 184.5t164 128 226 38.5q120 0 182.5-85t62.5-179q0-130-134.5-190.5z" + }, + "children": [] + }] +}; +exports.u1F453 = u1F453; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F454.js b/dist/noto_emoji_regular/u1F454.js new file mode 100644 index 000000000..27dd3e7d5 --- /dev/null +++ b/dist/noto_emoji_regular/u1F454.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F454 = void 0; +var u1F454 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1502 1301l18 47q80 214 155 528t75 427q0 32-7 47t-51.5 62-154 125.5-162 96-75.5 17.5q-33 0-89.5-24t-127.5-74.5-137.5-107T864 2363t-15-59q0-95 73-412.5t157-543.5l18-47q17-37 73-60t125-23q71 0 130 22t77 61zm608-100q-34 33-81 33-59 0-171-63t-196-148q-38 59-77.5 99.5T1491 1200q-2 0-55-29t-136-29q-46 0-92 11.5t-100 46.5q-44-28-87-71t-84-106q-84 85-196 148t-171 63q-48 0-81.5-34.5T455 1120q0-19 8-41t8-102q0-20-2-50l-8-135q-2-37-2-73 0-246 126-348.5T795 268q20 0 20 18 0 10-6 20l-14 24q-8 12-14.5 29t-6.5 39q0 98 100.5 175.5t187 99T1259 694l41-1 40 1q114 0 184.5-17t153.5-67.5T1793 502t32-104q0-22-6.5-39t-13.5-29l-14-24q-7-10-7-20 0-18 20-18 81 0 208.5 102.5T2140 719q0 64-7 144t-7 114q0 70 9 97.5t9 47.5q0 46-34 79zM1007 782q-140-51-225.5-129T668 493l-10-29q-45 45-63 108.5T577 718q0 37 2 73l8 134q2 29 2 50 0 84-12 140 41-6 144-69t286-264zm1015 333q-14-57-14-140 0-36 7-114.5t7-144.5q0-76-14.5-137T1943 464q-13 47-40 89t-60.5 77.5-75 64.5-86.5 48l-89 39 60 65q96 104 192.5 174.5T2022 1115z" + }, + "children": [] + }] +}; +exports.u1F454 = u1F454; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F455.js b/dist/noto_emoji_regular/u1F455.js new file mode 100644 index 000000000..21f628de0 --- /dev/null +++ b/dist/noto_emoji_regular/u1F455.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F455 = void 0; +var u1F455 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2373.5 1068.5Q2315 1209 2253 1284t-91 75q-17 0-32-9l-30-16q-28-14-62.5-29.5T1971 1289q-12 0-16.5 26.5t-4.5 61.5q0 85 23.5 314.5T2003 2008l7 110q3 56 3 111 0 12-5 22l-12 22q-70 120-292 154.5t-405 34.5q-157 0-335.5-24.5T714 2374t-99.5-83-28.5-62l6-151q3-106 22-278.5t27-281.5q0-6 1-21l6-79q0-23 1-45 0-35-4-59.5t-16-24.5q-32 0-67 15.5t-63 29.5l-29 16q-16 9-32 9-28 0-89-71t-121.5-215T167 816q0-24 6.5-46t42.5-49.5T332 657t200-88 288-106 270-71 210-17q205 0 441 74.5T2191 623l57 25q81 35 132.5 69.5T2432 810q0 118-58.5 258.5zm-822-580.5Q1447 453 1292 453q-156 0-261 35.5T926 570t105.5 81 260.5 35q153 0 258.5-35t105.5-81q0-47-104.5-82z" + }, + "children": [] + }] +}; +exports.u1F455 = u1F455; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F456.js b/dist/noto_emoji_regular/u1F456.js new file mode 100644 index 000000000..174ab0758 --- /dev/null +++ b/dist/noto_emoji_regular/u1F456.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F456 = void 0; +var u1F456 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2046 1998q-8 155-28 272t-25.5 179-78 92.5T1763 2572q-109 0-198-51t-89-179q0-48 11.5-135.5T1499 1993q0-45-1-88.5t-1-88.5q0-26 1-52.5t1-53.5q0-54-52-288t-56-265l-9-45q-5-21-13-43l-14-35q-9-22-20-29t-36-7q-24 0-34 4.5t-25.5 40.5-31.5 114-39.5 175-46 221.5T1100 1746q0 17 1 35t1 35q0 45-1 88.5t-1 88.5q0 138 11.5 217t11.5 132q0 126-87 178t-200 52q-84 0-153.5-31t-75-95.5-26-174.5-28.5-273.5-8-239.5q0-126 12.5-218.5t28-248T630 981l28-156q9-53 29.5-135T708 535l-1-15q0-81 15-113.5t53.5-59 177-67.5 316.5-41q247 0 380 41t168 63.5 54.5 52T1891 512v27q0 70 21.5 145.5T1969 971t47.5 340 25 226.5T2054 1758q0 85-8 240zM1078 561q2 0 2-7 0-5-4-10t-9-5l-42-6q-13 0-24.5 24.5T930 620t-157 38q-17 0-26-1-14 0-17 12l-5 43q0 9 12 13t48 4q100 0 175-43.5T1078 561zm265 51q0-15-14-15h-59q-6 0-10.5 4t-4.5 11v309q0 6 4.5 10.5t10.5 4.5h59q6 0 10-4.5t4-10.5V612zm-14-135q45 0 98-1t116-7q37 0 103.5-12.5T1713 420q0-40-122-69.5T1306 321q-85 0-170 7.5T970 358l-26 7q-30 8-47 20t-17 29q0 28 90.5 44.5T1245 476zm523 248q5 0 9-4.5t4-8.5l-5-32q-2-7-2-11-3-12-15-12-10 0-28 1-94 0-148-32t-73-62.5-28-30.5q-5 0-21 2l-24 4q-5 0-9 3.5t-4 11.5q0 6 2 7 42 80 118 124t176 44h20l15-2z" + }, + "children": [] + }] +}; +exports.u1F456 = u1F456; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F457.js b/dist/noto_emoji_regular/u1F457.js new file mode 100644 index 000000000..e19121dcb --- /dev/null +++ b/dist/noto_emoji_regular/u1F457.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F457 = void 0; +var u1F457 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M248 1967q78-161 149-258.5T599 1497l100-88q53-46 85.5-97t58.5-114q45 26 120 53.5t185 41.5q-58 88-125 132.5T875 1485v9q0 7-1 19 0 28 7 52t16.5 33 37.5 25l20 12q32 18 57 52t103 47l27-26q42-40 89-125t69-192q23 97 67 183.5t117 159.5q79-14 102-46t58-53l19-12q27-16 37-24t17.5-31.5 7.5-54.5v-18l-1-10q-89-16-159-67.5T1451 1291q111-13 185.5-40.5T1756 1197q61 148 168 234.5t215.5 201T2351 1967q-86 7-157.5 45t-108.5 89.5-144 51.5q-18 0-33.5-2t-34.5-2q-59 0-114 27.5t-102.5 72.5-119.5 45q-48 0-110-24t-128-24-128 24-111 24q-39 0-64.5-11.5T948 2252l-47-39q-26-22-75.5-43t-99.5-21q-19 0-34.5 2t-33.5 2q-104 0-143.5-50T413 2014.5 248 1967zM700.5 400Q790 377 843 348.5T949 320q17 0 41 7t24 18q0 5-4 14t-4 21q0 55 68.5 96t225.5 41q154 0 223.5-40.5T1593 379q0-17-4-24t-4-12q0-9 24.5-16t40.5-7q54 0 109.5 30t142 51 86.5 71q0 38-15.5 90.5T1929 653t-57 59.5-50 27.5-56 10q0 2-26 95.5T1714 976q0 26 1.5 52t6.5 52q-70 49-181.5 77t-243.5 28q-125 0-233.5-25.5T877 1082q4-22 6-46t2-60q0-25-12-78t-28-108l-12-40q-45 0-100-35.5T644.5 611 611 472q0-49 89.5-72zM2398 2076q14 38 22.5 65.5t8.5 41.5q0 49-77 71t-129 66.5-109 67-110 25.5l-47 3q-83 6-130 28.5t-121.5 56T1559 2534q-36 0-72.5-4.5T1416 2519l-63-10q-29-4-50-4t-50 4l-64 10q-35 6-73.5 10.5t-75.5 4.5q-69 0-140.5-31.5t-121-56T642 2416l-46-3q-51-3-109.5-24.5t-114.5-70-127.5-65.5-74.5-67q0-12 8.5-40t22.5-70l40 2q41 2 84.5 16.5T407 2149l30 32q47 50 100 66t119 16q22 0 39-2t31-2q68 0 143.5 73t195.5 73q66 0 125.5-24.5T1299 2356q50 0 111 24.5t124 24.5q116 0 196-73t143-73q14 0 31 2t39 2q150 0 226.5-93.5T2380 2076h18z" + }, + "children": [] + }] +}; +exports.u1F457 = u1F457; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F458.js b/dist/noto_emoji_regular/u1F458.js new file mode 100644 index 000000000..27425af3c --- /dev/null +++ b/dist/noto_emoji_regular/u1F458.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F458 = void 0; +var u1F458 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2479.5 1777.5q-50.5 44.5-215 95.5t-266.5 51q-71 0-105-47t-48-135-32-88q-13 0-14 25l-20 191-34 290q-19 165-28 216.5t-72.5 83T1487 2504t-187 13q-129 0-225-20.5T937 2449t-50.5-50.5T868 2285l-31-271-37-335q0-25-14-25-19 0-42 135t-143 135q-47 0-122.5-14T344 1876l-58-20q-142-48-179.5-92.5T69 1584q0-67 14.5-190.5T144 1048l30-150q4-20 24.5-131.5T219 625v-25q0-13-1-27 0-50 15-71.5t47-21.5q22 0 60 14l80 30q43 17 85 31t72 14q35 0 98-39.5T831.5 416 969 322.5t58-19.5q35 0 99 44t79.5 60.5T1251 452q-85 90-163 194t-78 139q0 11 7.5 16.5t15.5 5.5 15.5-3.5T1082 766l89-117q35-45 81.5-95.5T1323 478l28-29 30-30q46-44 101-80t87-36h8q10 0 53 19.5t141.5 96T1929 532t92 37q45 0 154.5-44.5T2318 480q34 0 49 22t15 68q0 16-1 31.5t-1 28.5q0 29 22 144.5t24 123.5l30 149q39 194 56.5 325t17.5 211q0 150-50.5 194.5zM1762 1195q0-105-10-128t-39-23h-11q-88 8-174 11t-174 3q-231 0-343.5-9t-158.5-9q-14 0-21.5 8t-7.5 35q0 8 1 15.5t1 15.5v82q104 22 226 33t249 11q124 0 243.5-11t218.5-34zM818 924q0 4-1 15 0 23 6.5 26t53 9.5T1042 988t258 7q77 0 155-3l109-3q87-2 137-7.5t53.5-7.5 3.5-16q0-29-12-36t-99-30-155-23q-45 0-114.5 15t-77.5 16l-27-5q-24-6-84.5-16t-93.5-10q-113 0-196.5 27.5T818 924zm940 420l1-67q-53 10-147.5 22.5T1389 1317l39 45q4 6 6.5 12t2.5 14q0 16-11 27t-29 11q-17 0-30-13l-64-77-64 77q-13 13-31 13-17 0-28-11t-11-27 9-26l39-45q-142-5-241.5-18T826 1276v64l-1 71q0 53 37.5 69.5t167.5 34 281 17.5q108 0 209.5-9.5T1690 1494t68-88v-62z" + }, + "children": [] + }] +}; +exports.u1F458 = u1F458; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F459.js b/dist/noto_emoji_regular/u1F459.js new file mode 100644 index 000000000..66be128d5 --- /dev/null +++ b/dist/noto_emoji_regular/u1F459.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F459 = void 0; +var u1F459 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1911 1334.5q-130 87.5-288 87.5-93 0-179-39t-143-102q-67 67-147.5 104T978 1422q-168 0-293.5-92T559 1107q0-65 31.5-138.5t129.5-185 127-194T899 456l12-29h-1q12-31 28-50t37-19h14q15 0 24 6t9 15q0 8-1 15l-3 13q-21 56-38.5 115.5T962 641q0 105 69.5 173t138 125.5T1301 1067q61-69 130-127t139-125 70-173q0-75-30.5-160.5T1579 379q0-9 9-14.5t24-6.5h13q18 0 33.5 16t28.5 46l16 36q32 76 59 149.5t124 183 126 183 29 135.5q0 140-130 227.5zm76 634.5q16 31 16 63v12q0 2-11 2l-26 1-44 1q-67 4-137 54.5T1611 2266l-68 73q-45 49-118.5 116.5T1304 2523q-23 0-43-11l-38-21q-97-56-206.5-173T868 2162l-44-42q-34-31-73-50t-83-22l-43-1-25-1q-12 0-12-2-2-4-2-12 0-20 7-37l15-36q20-45 43-78t41-33q20 0 46.5 20.5T931 1943t336 54q157 0 323-36t225.5-72 64.5-38.5 17-2.5 30 20 26 38z" + }, + "children": [] + }] +}; +exports.u1F459 = u1F459; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F45A.js b/dist/noto_emoji_regular/u1F45A.js new file mode 100644 index 000000000..ff6497e6f --- /dev/null +++ b/dist/noto_emoji_regular/u1F45A.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F45A = void 0; +var u1F45A = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2269.5 1051.5q-27.5 12.5-66.5 33t-89.5 36.5-76 27.5-53.5 11.5q-45 0-47.5-34t-26.5-109.5-44-75.5q-11 0-16 15t-5 24q2 30 8 59t6 59q0 56-38.5 147.5T1782 1393q0 70 66.5 230.5t103 258 71.5 142 35 82.5q0 101-145 190.5t-290.5 131T1308 2469q-124 0-240.5-21.5t-208.5-60-205-113T541 2108q0-40 35-85t67.5-134T746 1636t70-245q0-54-38-145t-38-141q0-32 6.5-63.5T753 978q0-10-4.5-23.5T734 941q-21 0-45.5 74.5t-27 109.5-45.5 35q-27 0-52-11t-77-27.5-91-37-66-32.5-27-29q0-13 11.5-33.5T326 917q0-20-1.5-39t-1.5-37q0-73 48.5-162T506 556t170.5-36T808 493l64-34q74-39 161-58t259-23h15q295 7 405.5 74.5t200 67.5 176 33.5 136.5 121 50 170.5q0 18-1 36.5t-1 38.5q0 50 12 72t12 32q0 15-27.5 27.5zM1212.5 627q-39.5-6-115-34T985 532l-20-18q-10-8-20-13.5t-20-5.5q-30 0-45.5 36T864 623q0 85 59 143t145 58q70 0 127-60t57-96q0-35-39.5-41zM1349 2012.5q-22-22.5-54-22.5t-54.5 22.5-22.5 54.5 22.5 54 54.5 22 54-22 22-54-22-54.5zm0-396.5q-22-23-54-23t-54.5 23-22.5 55 22.5 54.5 54.5 22.5 54-22.5 22-54.5-22-55zm0-395.5q-22-22.5-54-22.5t-54.5 22.5-22.5 54.5 22.5 54.5 54.5 22.5 54-22.5 22-54.5-22-54.5zm0-396.5q-22-23-54-23t-54.5 23-22.5 55 22.5 54.5T1295 956t54-22.5 22-54.5-22-55zm358.5-293q-15.5-36-44.5-36-10 0-20 6t-19 14l-20 17q-31 27-111.5 59T1375 627.5t-41 37.5q0 33 56 96t129 63q66 0 135-50t69-153q0-54-15.5-90z" + }, + "children": [] + }] +}; +exports.u1F45A = u1F45A; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F45B.js b/dist/noto_emoji_regular/u1F45B.js new file mode 100644 index 000000000..d3847a6d1 --- /dev/null +++ b/dist/noto_emoji_regular/u1F45B.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F45B = void 0; +var u1F45B = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2242 2161.5Q2093 2292 1871 2320t-461 28q-28 0-55.5-1.5t-54.5-1.5q-28 0-55.5 1.5t-55.5 1.5q-207 0-437.5-25t-387-157.5T208 1830q0-92 27.5-193t62-181.5T332 1338q0-12-5-26l-10-29q-6-15-11-32t-5-37q0-64 73-161.5T525.5 890 725 779t183-51 62-28q0-11-7.5-31t-7.5-40q0-82 59-133.5t144-51.5q46 0 81 20.5t47 20.5q10 0 18.5-4t17.5-7l54-15q25-7 54-7 82 0 131 58t49 124q0 24-5.5 37.5T1599 696q0 18 34 20.5t156 34.5 231 101 187 177l31 41q30 40 45 75t15 70q0 20-5 36.5t-11 31.5l-11 28q-5 14-5 26 0 31 41 129.5t62.5 191T2391 1832q0 199-149 329.5zM2138 1084q-69-97-194-172.5T1640.5 810 1310 784q-339 0-528 71t-289.5 192.5T392 1229q0 14 7 24t24 10q10 0 16-5t12-13l53-69q119-157 283-209t417-52h191q157 0 262.5 16.5T1857 985t163.5 107 103 120.5 57.5 50.5q14 0 20-10t6-24q0-48-69-145zm-931.5-384q26.5-10 26.5-27 0-7-3.5-12.5T1226 644q0-21 5.5-39t5.5-24q0-25-28.5-40t-53.5-15q-44 0-75.5 26t-31.5 67 30.5 66 73.5 25q28 0 54.5-10zm145.5-16q29 24 65 24 41 0 71-26t30-71q0-40-28.5-60.5T1425 530q-43 0-72.5 26.5T1323 622q0 38 29 62z" + }, + "children": [] + }] +}; +exports.u1F45B = u1F45B; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F45C.js b/dist/noto_emoji_regular/u1F45C.js new file mode 100644 index 000000000..496beceda --- /dev/null +++ b/dist/noto_emoji_regular/u1F45C.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F45C = void 0; +var u1F45C = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2175 2271v34q0 78-27 100t-90 22H542q-62 0-89.5-22T425 2305l2-72q2-83 32.5-278.5T530 1554l18-94q54 20 108 43l107 46q86 37 169 66.5t173 51.5q0 8-1 25 0 78 46 116t162 38q88 0 120-10.5t48.5-39 16.5-94.5v-21l-2-22q52-13 108.5-35.5T1711 1585l88-28q107-33 146-49.5t62-23.5l48-16 19 96q39 207 70 404.5t31 302.5zM578 1378q27-34 71.5-51.5T738 1309h58l3-81q14-446 142-686.5T1300 301q142 0 245 87.5T1716.5 679t89.5 630h56q49 0 94 19t71 55q-135 48-280.5 89.5T1456 1559q-22-16-51-18l-53-4q-33-3-67-3h-39q-37 0-73 10t-46 28q-57-14-191.5-59T736 1440t-158-62zm374-69h697q-9-426-98.5-637.5T1299 460q-105 0-173.5 81T1009 795t-57 514zm456.5 444q-14.5 14-74.5 14-85 0-114.5-12.5T1190 1690q0-53 23-65.5t97-12.5 93.5 14 19.5 54q0 59-14.5 73z" + }, + "children": [] + }] +}; +exports.u1F45C = u1F45C; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F45D.js b/dist/noto_emoji_regular/u1F45D.js new file mode 100644 index 000000000..b178a9af0 --- /dev/null +++ b/dist/noto_emoji_regular/u1F45D.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F45D = void 0; +var u1F45D = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2250 1707q-41 79-147.5 168.5T1846 2044t-306 153.5-295.5 113.5-273.5 39q-18 0-39-3l-42-4q-156 0-299.5-75T378 2069t-69-362q0-154 42-328t158.5-320T793 812t354.5-153 363.5-52q68 0 132.5 10.5T1724 637t32 9q26 0 38.5-44t39-87 76-81 102.5-38 110.5 48.5T2180 543q0 27-25.5 58.5T2085 665l-47 35q-3 2-31.5 20t-28.5 35q0 9 5.5 16.5T1997 786l16 14q54 47 124.5 165.5t112 265T2291 1499q0 129-41 208zm-448-814q34-7 64-17.5t30-18.5q0-27-67.5-46.5T1690 791q-149 0-350.5 76.5t-366.5 197-234 246-79.5 226.5-28 110.5-27.5 9.5q-23 0-31.5-17.5T564 1602q0-22 18-133.5t116-256T979 946t389-177l76-21 67-18q-2-7-17-9.5t-32-2.5q-169 0-314.5 55t-293 142.5-243 203-140 278T427 1717q0 63 8.5 112t17.5 85.5 38 86 72 85 87 53.5 64 18q38 0 38-54 0-17-2-35.5t-2-32.5q0-287 44.5-455T958 1282.5t342.5-231.5T1778 898zm98-226q10 0 92-60t82-74q0-17-18-33t-37-16q-18 0-35 12t-43 45l-10 17q-18 29-28.5 55t-10.5 43q0 11 8 11z" + }, + "children": [] + }] +}; +exports.u1F45D = u1F45D; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F45E.js b/dist/noto_emoji_regular/u1F45E.js new file mode 100644 index 000000000..e73963ae7 --- /dev/null +++ b/dist/noto_emoji_regular/u1F45E.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F45E = void 0; +var u1F45E = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M445 1802l-45-15q-49-15-80-37.5t-31-51.5v-5l8-32q8-36 21-58t50-52.5 98-58 163-56.5 163-58.5 95-61.5 40.5-46.5 6.5-38.5l-1-29q2-51 52-107t102.5-95 97.5-39l23 1q16 0 26-14.5t24-28.5l93-95q42-43 100-66.5t118-23.5q79 0 132.5 34.5t69 63T1806 860q6 0 12-2l11-2q100-21 206-21 121 0 158 22t78.5 73.5 72 144T2374 1324q0 27-1 51t-3 50q-36 59-151 122.5t-242 86.5-266 97-315.5 114.5T1017 1886q-150 0-294-21t-278-63zm1959-87v19q0 64-27 82t-140.5 63-258.5 45q-16 0-23.5-10.5t-7.5-27.5l1-9q0-6-1-10-50 0-93 47t-124.5 95-188 80-219.5 43-252 11q-243 0-437-32t-304-76-122-65-12-51l2-43q0-35 5-52.5t13-17.5q14 0 31 12l29 20q113 62 268 96t504 34q129 0 252-15.5t232-45 193.5-66.5 145-75.5T2010 1721t164-33 132.5-60.5 51-38.5 14.5-5q15 0 23 34t8 79zm-1905.5-67.5q27.5 18.5 166 65.5t286.5 47q135 0 267.5-39.5t241.5-111 203-173.5l144-154 15-15q14-14 24-28.5t10-26.5-17.5-28-34.5-16-39 24.5-35 24.5q-25 0-77-45t-166-89.5-259-44.5q-73 0-148.5 66t-75.5 93q0 35 59.5 35t167.5 21 203 69 95 86q0 56-184 156t-397 100q-153 0-288.5-48.5T506 1567q-14 0-24.5 10t-10.5 25q0 27 27.5 45.5zM1837 914q0 11 5 31t5 45q0 68 8 85.5t64 17.5q121 0 192-25t71-73q0-49-53.5-75T1978 894q-52 0-95.5 5.5T1837 914z" + }, + "children": [] + }] +}; +exports.u1F45E = u1F45E; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F45F.js b/dist/noto_emoji_regular/u1F45F.js new file mode 100644 index 000000000..ad6eb6945 --- /dev/null +++ b/dist/noto_emoji_regular/u1F45F.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F45F = void 0; +var u1F45F = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2418 1411v237q0 74-72.5 137.5T2119 1909l-68 26q-136 54-527 181.5T849 2244q-190 0-365.5-51t-239-121-63.5-184q0-141 102.5-292.5t319-277T949 1053l90-97 70-71q66-66 82.5-128t63-95.5 102-48T1477 599q101 0 179 30.5t143 87.5q32-7 62-19l60-24q29-11 60-19t64-8q118 0 210 90t127.5 219.5T2418 1411zm-114-103v-19q0-23-1-45.5t-3-45.5q-35-21-155-27.5t-120-92.5v-18q-2-23-8-33t-17-10q-12 0-50.5 16.5T1856 1050q-23 0-41.5-9t-41.5-9q-15 0-38 12.5t-43.5 14.5-25.5 38l-3 19q-3 28-29 54t-60.5 29-34.5 40q0 29-35 66.5t-74 37.5q-3 0-7 1l-8-1q-24 0-26 19.5t-23.5 48-54.5 35.5-57.5 13.5-24.5 31.5q0 8 19 72.5t19 128.5q0 17-2 31t-2 36q0 21 5.5 31t27.5 10q31 0 98-23.5t164-68.5l55-25q27-12 112-42.5t250-102 225-109.5l51-33q28-17 40.5-34t12.5-54zM422 1597q-27 27-41.5 52.5T366 1703q0 91 125.5 140t316.5 49q81 0 192-12.5t131-31 20-130.5q0-73-6-145l-3-49q-3-42-17-69t-45-44l-57-29q-52-26-98.5-40t-91.5-14q-25 0-48 7t-142.5 83.5T451 1569zm1859 22l-1-16q0-11 2-25.5t2-27.5q0-16-4-26.5t-11-10.5q-5 0-10 3l-12 8q-63 35-131.5 60t-134.5 55l-287 130q-247 111-466 172.5T804 2003q-100 0-201.5-21T440 1929t-89.5-70-31-39.5-7.5-1.5q-7 0-13.5 13t-6.5 39q0 78 75 137t228.5 86 271.5 27q126-2 246.5-24.5t215-54 269-85T1873 1858t189-76.5 144.5-63 65.5-45.5 9-37v-17zm-993-757q8 0 16.5-1.5t17.5-1.5q122 0 201 38t94.5 67 29.5 29q7 0 43-21t49-37 13-48q0-74-87.5-126.5T1470 708q-103 0-151 50t-48 89q0 15 17 15zm-106 137h10q43 5 53 4t91 27.5 111 48.5 39.5 25.5 15.5 7.5l17 3q27 0 49.5-17.5t22.5-42.5q0-53-123-93.5T1271 921q-62 0-83 21.5t-21 39.5q0 17 15 17zm-121 127.5q28 2.5 83 12t95 29.5l46 24q8 4 52 33.5t71 29.5q13 0 26.5-11t13.5-36q0-47-94.5-102t-208.5-55h-29q-43 2-63 19.5t-20 33.5q0 20 28 22.5zM915.5 1245q13.5 4 62.5 17.5t100.5 41 105 41 61.5 13.5q25 0 44-11.5t19-29.5q0-42-109.5-91T995 1177h-18q-34 4-54.5 16.5T902 1226q0 15 13.5 19zm1178-236.5q2.5 5.5 5.5 16.5l6 21q11 40 52 40t66.5 3.5 45.5 3.5q13 0 19.5-5.5t6.5-24.5q0-56-12-112.5t-49-98.5l-28-31-7 32q-4 21-25.5 49t-32.5 35.5-30.5 23.5-19.5 32q0 10 2.5 15.5z" + }, + "children": [] + }] +}; +exports.u1F45F = u1F45F; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F460.js b/dist/noto_emoji_regular/u1F460.js new file mode 100644 index 000000000..ed1753a4d --- /dev/null +++ b/dist/noto_emoji_regular/u1F460.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F460 = void 0; +var u1F460 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2236 1123q-46 98-70 214t-27.5 287-83.5 171q-37 0-55.5-28.5T1981 1679l1-30v-33q0-136-22-194.5t-67-58.5q-53 0-113.5 114T1658 1783.5 1475.5 2104t-298 197-395.5 69q-134 0-266.5-31.5t-165-75T318 2169q0-96 136-240t246.5-290 272-287 240.5-254 182.5-281 244-296T1915 393q149 0 258 138.5T2282 888q0 137-46 235zm-248-481q0-48-32-74t-90-26q-86 0-178 82.5T1506.5 846t-147 239.5T1188 1312l-114 126q-7 7-85 90t-78 158q0 32 13 52.5t65 35.5q33-88 188-193t336.5-395.5 273.5-410T1962 656q14 0 26 3v-17zm-28 108q-9-8-23-8-18 0-38.5 14t-81.5 91.5-164 251.5l-101 170q-52 87-116.5 171.5t-161 164.5-142.5 112.5-46 63.5q0 11 14 11 67 0 125.5-17.5t116.5-55 118.5-108 130-188.5 217-361.5T1952 818t10-26q7-13 7-25 0-9-9-17z" + }, + "children": [] + }] +}; +exports.u1F460 = u1F460; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F461.js b/dist/noto_emoji_regular/u1F461.js new file mode 100644 index 000000000..d1f0984ff --- /dev/null +++ b/dist/noto_emoji_regular/u1F461.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F461 = void 0; +var u1F461 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2334 1391.5q-17 64.5-56.5 113t-128 88T1956 1632q-44 0-66.5-15t-22.5-47q0-17-1-35t-3-36q-30 25-54.5 56t-46.5 65l-46 68q-74 112-215 221t-334.5 162.5T791 2125q-237 0-390-92.5T248 1771q0-43 13-84t36-70l35-45q17-22 29.5-46.5T374 1471v-43q0-37 20.5-103t85.5-138.5T651.5 1054t178-92T955 930q59 0 119 38t135.5 109.5T1325 1149q33 0 115-67.5T1625 926t213.5-133 213.5-45q122 0 198 62.5t88.5 160T2351 1174q0 153-17 217.5zM1528 1626l24-23q22-22 37-44t15-38q0-27-60-46t-160-92.5-178-147.5l-136-131-23-21q-23-18-48-32.5t-44-14.5q-18 0-43 8.5t-48 19.5l-28 13q-6 3-83.5 39.5T675 1174q0 7 2 7t71 47.5 146.5 193 113 262.5 35.5 164q0 28 14.5 41t50.5 13q68 0 171.5-65t231.5-196zm622.5-722.5Q2094 869 2015 869q-105 0-197 51.5t-195.5 145T1451 1195l-28 15q-14 8-23 15.5t-9 13.5q0 13 15 21l24 14q109 73 177.5 104.5T1710 1410q13 0 16-4.5t56-47.5 265-178l48-31q57-36 84.5-74t27.5-80q0-57-56.5-91.5zM880 1780.5q-15-60.5-27-116.5t-34.5-114-60.5-90q-26-20-59-20-60 0-202.5 94.5T354 1751q0 92 89 140.5t327 48.5q81 0 103-21.5t22-57.5q0-20-15-80.5z" + }, + "children": [] + }] +}; +exports.u1F461 = u1F461; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F462.js b/dist/noto_emoji_regular/u1F462.js new file mode 100644 index 000000000..c83a15a10 --- /dev/null +++ b/dist/noto_emoji_regular/u1F462.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F462 = void 0; +var u1F462 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1888 2490q-138-66-177-203l-10-34q-5-16-11-28t-12-12q-13 0-13 16t-11.5 32-50.5 16q-45 0-73.5-17.5T1501 2212q0-77-22.5-189t-22.5-178q0-78 20.5-184.5T1497 1435q0-117-31.5-337.5t-58-337T1378 562q-8 72-21 143l-27 141q-19 98-33.5 206t-33 217.5T1245 1449q0 60 10 102.5t21 66.5l23 55q11 28 19 56t8 59q0 65-36 168.5t-37 166.5v67q0 23-28 34.5t-58 11.5q-38 0-51.5-8t-13.5-27l-2-24q0-9-4-60.5t-25-51.5q-19 0-45.5 51t-105 145.5-184 151T505 2469q-120 0-208-47t-88-135q0-30 18-61t144-104 211.5-172 131-220 45.5-350q0-148-15-294l-30-292q-5-47-12-96l-15-96q-7-48-11.5-96.5T671 410q0-109 131-135.5t239-26.5q92 0 181 18l42 8q77 16 91 48.5t23 98.5q8-90 33.5-114t120.5-41.5 187-17.5q139 0 254 30t115 127q0 86-21 222t-48 395.5-27 421.5q0 275 46.5 442t127.5 263 153 119 72 77q0 84-22.5 125.5t-86 63.5-131.5 22q-125 0-263-66z" + }, + "children": [] + }] +}; +exports.u1F462 = u1F462; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F463.js b/dist/noto_emoji_regular/u1F463.js new file mode 100644 index 000000000..116870126 --- /dev/null +++ b/dist/noto_emoji_regular/u1F463.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F463 = void 0; +var u1F463 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1527 957.5q43-49.5 103-49.5 66 0 119 62t53 138q0 63-43 111.5t-104 48.5q-66 0-118.5-58t-52.5-135q0-68 43-117.5zm342 15.5q28-43 68-43 34 0 61 35.5t27 80.5q0 50-26 84.5t-65 34.5q-42 0-67.5-29.5T1841 1064q0-48 28-91zm348.5 214.5Q2185 1233 2144 1233q-33 0-58-31.5t-25-73.5q0-51 31-85t78-34q38 0 59 26t21 59q0 48-32.5 93.5zm146.5 128q-35 38.5-80 38.5-35 0-52-16t-17-42q0-40 39-82t83-42q32 0 47 18.5t15 42.5q0 44-35 82.5zm94.5 69.5q19.5 18 19.5 49 0 42-28.5 68t-73.5 26q-25 0-47-15t-22-42q0-33 36.5-68.5t69.5-35.5q26 0 45.5 18zm-386-78q90.5 40 136 122.5T2254 1608q0 131-73 270.5t-230 302-265 223-213 60.5q-93 0-157.5-59.5T1251 2253q0-143 106-211.5t113-73.5l46-31q42-27 64.5-58.5t22.5-71.5q0-37-15-95t-15-99q0-92 37-168.5t103-127 172-50.5q97 0 187.5 40zM1243 716q-68 66-150 66-64 0-101-48t-37-122q0-63 49.5-137.5T1134 400q70 0 123.5 45.5T1311 563q0 87-68 153zM747 558q-22-33-22-83 0-65 33-108.5t86-43.5q51 0 75 31.5t24 72.5q0 65-42 114.5T807 591q-38 0-60-33zM498 360.5q31-36.5 75-36.5 47 0 76 37t29 91q0 55-27 95t-66 40q-42 0-80-41t-38-98q0-51 31-87.5zM305.5 624Q270 580 270 531q0-36 22.5-62t56.5-26q45 0 80 41.5t35 90.5q0 41-25.5 67T382 668q-41 0-76.5-44zM284 662q42 40 42 90 0 31-23.5 54.5T248 830q-45 0-86-42.5T121 697q0-35 19.5-55t48.5-20q53 0 95 40zm848 1368q-83 72-177 72-114 0-223-87t-221.5-321.5-148-410T327 1016q0-175 120-258.5T727 674q139 0 233.5 97t94.5 226q0 71-50.5 180T954 1356q0 62 26.5 119.5t95.5 131 104 134.5 35 122q0 95-83 167z" + }, + "children": [] + }] +}; +exports.u1F463 = u1F463; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F464.js b/dist/noto_emoji_regular/u1F464.js new file mode 100644 index 000000000..642ad2d7d --- /dev/null +++ b/dist/noto_emoji_regular/u1F464.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F464 = void 0; +var u1F464 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M447 2425v-249q0-101 89.5-225T758 1742t235-85h26v-81q-41-34-74.5-86.5T885 1375q-40-14-77.5-79.5T770 1158q0-34 10-56.5t30-22.5q0-24-3-47t-3-46q0-225 141.5-368T1300 475q219 0 358 148t139 369v45.5l-2 30.5q26 0 37.5 21t11.5 55q0 83-40 153.5t-83 78.5q-27 62-61 113.5t-75 86.5v81h21q104 0 237.5 87t221 209 87.5 218v254H447z" + }, + "children": [] + }] +}; +exports.u1F464 = u1F464; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F465.js b/dist/noto_emoji_regular/u1F465.js new file mode 100644 index 000000000..42193f4fb --- /dev/null +++ b/dist/noto_emoji_regular/u1F465.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F465 = void 0; +var u1F465 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2304 1884h-677q-57-72-131-131.5t-154-91.5q15-24 29-52 56-38 89.5-112.5T1494 1346q0-71-35-118 0-67-22-152.5t-68-150T1259 814q0-11-1-23t-1-25q0-176 110-286t276-110q165 0 275.5 120T2029 788q0 11-1 21.5t-1 21.5q20 0 28.5 17.5t8.5 43.5q0 62-31 116t-65 62q-20 48-46.5 88t-58.5 66v64h16q80 0 181.5 64.5t170.5 160 73 174.5v197zm-684 455H296v-197q0-79 72-176t173-160 180-63h19v-63q-32-26-58-67t-46-89q-33-11-61-63.5T547 1356q0-26 7.5-44t23.5-18q0-18-2.5-36t-2.5-36q0-177 110.5-287T960 825q171 0 278 115t107 304v20l-2 22q21 0 29.5 17t8.5 43q0 61-30 116t-66 64q-21 48-47.5 88t-58.5 66v63h17q78 0 176.5 61.5t171 158T1620 2142v197z" + }, + "children": [] + }] +}; +exports.u1F465 = u1F465; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F466.js b/dist/noto_emoji_regular/u1F466.js new file mode 100644 index 000000000..c842aefe4 --- /dev/null +++ b/dist/noto_emoji_regular/u1F466.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F466 = void 0; +var u1F466 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2172 1822q-66 50-142 50-11 0-16-1-58 207-259.5 327.5T1293 2319q-255 0-463.5-122T570 1872q-78 0-143-50t-65-147q0-81 48-136t138-60q-25-59-35-128t-10-134q0-196 107.5-354t300-249.5T1314 522q222 0 412 92t278.5 245 88.5 338q0 47-7.5 103.5T2041 1479q93 0 145 55.5t52 141.5q0 96-66 146zm-228-266q-4-48-12-95-53-76-87-96.5t-37-20.5q-7 0-8 9l-2 22q0 12-4 21.5t-15 9.5q-15 0-45.5-23.5t-47-31-68-48.5-77.5-41q-15 0-34 6.5t-39 15.5l-42 18q-14 7-60.5 24t-70.5 17q-13 0-22-4.5t-9-18.5q0-8 1.5-18t1.5-19q0-10-3-18t-13-8q-16 0-68.5 27.5t-112.5 52-85 24.5q-17 0-23-4.5t-6-12.5q0-9 5.5-21t5.5-21q0-8-5.5-11t-10.5-3q-32 0-75 36.5T764 1413t-120 112q-3 32-5 65t-2 67q0 218 83.5 327t236 176.5T1293 2228q191 0 348.5-72t232-189.5T1948 1657q0-53-4-101zm-938 254.5q-31 32.5-70 32.5-41 0-71.5-32.5T834 1731q0-46 30.5-78.5T936 1620q40 0 70.5 32.5t30.5 78.5q0 47-31 79.5zm709.5-.5q-29.5 33-70.5 33t-71-33-30-79q0-45 29.5-78t71.5-33q41 0 70.5 33.5t29.5 77.5q0 46-29.5 79zM1418 2062.5q-48 35.5-113 35.5-58 0-116.5-28t-58.5-67q0-7 5-15t14-8q8 0 16 4l14 8q26 15 54.5 25.5t58.5 10.5q33 0 60-8.5t56-24.5l17-9q11-6 20-6 8 0 14.5 7t6.5 15q0 25-48 60.5zm625-273.5q6 0 12 1 47 0 71.5-32t24.5-83q0-55-32-81t-83-26q0 22 1 44.5t1 45.5q0 34-1.5 66t-6.5 63zm-1499 1h9q-3-32-5-64.5t-2-67.5v-45l3-45q-53 6-77 34t-24 73q0 51 24.5 83t71.5 32zm668 80q4-5 11-5 16 0 33.5 6t36.5 6q17 0 28-2.5t19-5.5l13-6q6-2 13-2 11 0 15 3t4 8q0 24-31.5 39.5T1296 1927q-32 0-60-15.5t-28-31.5q0-5 4-10z" + }, + "children": [] + }] +}; +exports.u1F466 = u1F466; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F467.js b/dist/noto_emoji_regular/u1F467.js new file mode 100644 index 000000000..6ffc5d11f --- /dev/null +++ b/dist/noto_emoji_regular/u1F467.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F467 = void 0; +var u1F467 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2192.5 2326.5Q2133 2358 2048 2358q-106 0-192-48t-119-128q-101 60-220.5 88.5T1279 2299q-104 0-207.5-22.5T874 2209q-35 79-119.5 124.5T566 2379q-85 0-145.5-31.5T360 2287q0-20 33.5-33t33.5-89l-1-19q0-59 37-130.5t116-95.5q-14-35-23-67l-49-6q-24-3-52-17.5t-47.5-30.5-34-39.5-20-49.5-5.5-53q0-70 36.5-123t103.5-68q0-2-1-5l-2-4q-16-59-28.5-117T444 1221q0-196 112-356t313-255.5 420-95.5q216 0 411 84.5T2006.5 839t111.5 356q0 85-14.5 153.5T2063 1462q75 7 118.5 63.5T2225 1657q0 102-70.5 149t-127.5 47q-8 0-14-1l-12-2-13 40q100 14 149.5 85.5T2187 2136q0 49 7.5 69t24.5 27l13 6q9 4 14.5 9.5t5.5 18.5q0 29-59.5 60.5zM1923 1478q-11-58-33-58-17 0-42 15t-44 15q-29 0-69.5-31t-64.5-31q-22 0-79 31.5t-102 31.5q-38 0-85-32t-75-32q-29 0-81.5 31.5T1164 1450q-41 0-94-26t-60-26q-11 0-42.5 20.5t-53 35T870 1468q-17 0-32.5-6t-30.5-14l-30-14q-15-6-30-6-36 0-70 54t-51 72q0 20-1.5 41t-1.5 43q0 194 72 307t233.5 188.5T1279 2209q184 0 333-65t235.5-179 86.5-327q0-102-11-160zm-930 312q-30 33-71 33-40 0-71-32.5t-31-78.5 30-78.5 72-32.5q43 0 72 33t29 78-30 78zm710 0q-30 33-71 33-40 0-70-32t-30-79 29-79 71-32q43 0 72 33t29 78-30 78zm-296 251q-45 36-115 36-60 0-118-29.5t-58-64.5q0-8 5-15.5t15-7.5q8 0 52 24t100 24q47 0 89.5-23.5t54.5-23.5q8 0 14 6.5t6 15.5q0 22-45 58zm615-494l2 37q0 19 1 37 0 39-2 76t-6 69q13 3 26 3 46 0 70-31.5t24-82.5q0-50-27-77.5t-88-30.5zM535 1770q3-1 6-1-4-31-6-63.5t-2-67.5v-41l3-40-3-4q-2-2-4-3-48 6-71.5 32.5T434 1655q0 51 24.5 83.5T529 1771q3 0 6-1zm664 79.5q4-5.5 12-5.5 14 0 30.5 7t36.5 7q17 0 28.5-2.5t19.5-5.5l14-6q6-2 12-2 11 0 15 3t4 8q0 23-30 39t-59 16q-33 0-60-16t-27-31q0-6 4-11.5z" + }, + "children": [] + }] +}; +exports.u1F467 = u1F467; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F468.js b/dist/noto_emoji_regular/u1F468.js new file mode 100644 index 000000000..745b84600 --- /dev/null +++ b/dist/noto_emoji_regular/u1F468.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F468 = void 0; +var u1F468 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2237 1736q-74 52-144 52-7 0-14-1l-13-2q-58 189-176.5 315t-284 181-317.5 55q-150 0-311.5-57T694 2093t-174-307q-4 0-8 1t-9 1q-38 0-98.5-26.5t-88-75.5-27.5-111q0-85 46.5-140.5T467 1366q-21-78-21-165 6-244 118.5-390.5t303-235T1251 487q9 0 18 1t19 1q9 0 18-1t19-1q295 3 551 188t256 537q0 39-3.5 77.5T2118 1364q97 9 145 68.5t48 142.5q0 109-74 161zm-235-232q-1-23-3-49-74-144-160.5-231.5t-133-143.5-79.5-56q-19 0-143.5 76T1255 1204l-53 15q-26 8-54 8l-14-1q-16 0-26.5-6.5T1097 1200q0-17 28.5-44t36.5-36l22-21q27-26 36.5-40.5t9.5-27.5q0-11-14-11-30 0-84.5 41t-204 150T720 1368.5 588 1463q-2 14-4 38.5t-2 44.5q0 233 127 413.5t338 240.5l40 10q44 12 97.5 19.5t103.5 7.5q320 0 517.5-194t197.5-492q0-24-1-47zM500 1699q-15-76-15-155 0-21 2-41.5t2-40.5q-57 6-82 36t-25 77q0 55 26.5 90t79.5 35q7 0 12-1zm1602-1q6 0 13 1 50 0 76-34.5t26-89.5q0-52-28.5-82t-92.5-33q2 23 3 45t1 44q0 38-3.5 74.5t-8.5 72.5zm-658.5 288.5Q1386 2027 1310 2027q-71 0-141-32.5t-70-76.5q0-10 7-18t17-8q12 0 64 27t106 27q41 0 73-9.5t67-27.5l20-11q12-6 22-6 12 0 19 8.5t7 17.5q0 28-57.5 68.5zM1001 1631q-29 32-70 32-40 0-69-33t-29-77q0-42 29-75t69-33q41 0 70 32t29 76q0 46-29 78zm719.5 0q-28.5 32-69.5 32t-69.5-32-28.5-78q0-44 28.5-76t69.5-32 69.5 32 28.5 76q0 46-28.5 78zM1201 1745q9 0 17 7l17 15q10 10 23.5 16.5t34.5 6.5q36 0 58-22.5t33-22.5q8 0 14 6.5t6 14.5q0 23-33.5 46.5T1293 1836q-43 0-77-23.5t-34-48.5q0-19 19-19z" + }, + "children": [] + }] +}; +exports.u1F468 = u1F468; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F469.js b/dist/noto_emoji_regular/u1F469.js new file mode 100644 index 000000000..67b709af3 --- /dev/null +++ b/dist/noto_emoji_regular/u1F469.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F469 = void 0; +var u1F469 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2175 2068.5q-88 203.5-233.5 310.5T1740 2486q-34 0-34-45 0-17 4.5-35t10.5-36l12-34q7-21 24-87t23-92q-97 75-215 115t-255 40q-124 0-249.5-36.5T819 2153l25 98q19 78 34 115.5t15 74.5q0 23-7.5 34t-26.5 11q-59 0-205-110.5T422 2062t-86-490q0-127 20-262.5t72-274 150-250 206-176T1015.5 509t242.5-36q9 0 18 1t36 1q195 0 367 70t284 186l17 13 16 14q78 79 135.5 191t94.5 258 37 364q0 294-88 497.5zM751 1387q-5 42-6 82.5t-1 81.5q0 111 11 221.5t31 221.5q109 109 238 165t286 56q149 0 279-58.5t226-163.5q21-112 33.5-224t12.5-223q0-16-1-30.5t-1-29.5q-63-41-159-145.5t-126.5-163-47.5-58.5q-4 0-11.5 5t-24.5 20q-133 111-401.5 168T751 1387zm158 140.5q29-32.5 68-32.5 40 0 69.5 32t29.5 78q0 45-29 76t-70 31q-40 0-68.5-31.5T880 1605q0-45 29-77.5zm628.5-.5q29.5-32 68.5-32t68.5 32 29.5 78q0 45-29.5 76t-68.5 31-68.5-31-29.5-76q0-46 29.5-78zM1159 1934q7-6 18-6t48 14 92 14q21 0 38.5-3.5t32.5-8.5l27-8q12-4 25-4 20 0 20 15 0 10-10.5 23t-18.5 20l-10 9q-23 18-49 26.5t-55 8.5q-70 0-117.5-30t-47.5-57q0-7 7-13zm52-131q5-5 11-5 10 0 28.5 19t48.5 19 48.5-19 28.5-19q7 0 11.5 5t4.5 13q0 20-27.5 39.5T1299 1875q-40 0-66.5-20.5T1206 1814q0-6 5-11z" + }, + "children": [] + }] +}; +exports.u1F469 = u1F469; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F46A.js b/dist/noto_emoji_regular/u1F46A.js new file mode 100644 index 000000000..f66e63130 --- /dev/null +++ b/dist/noto_emoji_regular/u1F46A.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F46A = void 0; +var u1F46A = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2536 1769q0 25-16 34.5t-38 9.5q-29 0-42.5-13t-13.5-35q0-12 4.5-23.5t4.5-24.5q0-30-30-74t-42-44q-3 0-3 3l-1 6q3 29 3 54 0 40 9 76.5t9 55.5q0 22-3 41l-6 40q-5 24-7.5 49t-2.5 55v28q0 49 29 68.5t29 41.5q0 24-26.5 37.5T2336 2168q-44 0-64.5-27t-20.5-65q0-23 4-48t4-62v-25q0-68-3-81t-13-13q-12 0-14.5 18t-2.5 54q0 16 1 35l4 69q0 14 1 19 0 76-22.5 101t-62.5 25q-31 0-56.5-14t-25.5-37 29.5-40.5 29.5-66.5q0-94-9-147.5t-9-68.5q0-27 8-58.5t10-59.5q-8 17-19.5 31t-34.5 14q-48-2-99-74.5t-80.5-175.5-47.5-103q-8 0-12.5 8t-4.5 22q0 33 16.5 84.5t42.5 94.5l22 37q10 18 17.5 33.5t8.5 28.5q0 31-28 47t-58 22.5-42 89.5-12 126q0 60 15.5 69.5t34 27.5 18.5 44q0 28-18.5 41.5T1796 2157q-48 0-70.5-19t-22.5-73q0-17 1-40l6-102q0-27 1-51 0-36-5-60.5t-19-24.5q-15 0-19.5 24t-4.5 61q0 24 1 50.5t3 52.5l3 49q0 24 1 41 0 54-22.5 73t-70.5 19q-28 0-46-13.5t-18-39.5q0-38 33.5-58t33.5-82q0-49-13.5-128.5t-26-83-56.5-21-44-51.5q0-14 7-29.5t18-33.5l22-38q23-38 41.5-92.5t18.5-88.5q0-14-4-22t-12-8-16 14.5-34.5 92.5-40 106.5-22 39-15.5 38.5-30 47-51 19q-29 0-53.5-20t-24.5-49q0-38 7.5-70t7.5-67q0-59-20.5-92t-31.5-33q-10 0-18 4.5t-8 21.5q0 14 4 36l9 48q5 26 9 54t4 54q0 56-23 101t-23 167q0 29 3.5 77.5t35 72 31.5 57.5-23 50-62 16q-70 0-101-28.5t-31-88.5q0-34 5.5-87.5t5.5-94.5q0-34-5-56t-19-22q-15 0-20 22t-5 56q0 22 2 47l6 97q0 23 1 41 0 57-32 85.5t-99 28.5q-39 0-62-16t-23-50q0-33 31.5-57.5t35-72 3.5-78.5q0-130-23.5-169.5T793 1608q0-25 4-52.5t9-53.5l9-47q4-22 4-36 0-17-7.5-21t-18.5-4-30.5 31.5T743 1519q0 35 6.5 67t6.5 70q0 29-24 48.5t-54 19.5q-14 0-29-5.5t-27-19.5h-5q-14 7-37.5 25.5T528 1743q4 14 10 30l12 33q5 16 8.5 30t3.5 24q0 6-3.5 13t-14.5 12l-19 8q-11 5-22 9l-22 7-3 26q-3 19-3 27 0 16-2.5 30.5T470 2021q0 41 26 55t26 44q0 25-21 38.5t-46 13.5q-37 0-55-25.5t-18-89.5v-133l-13 1v132q0 64-18 89.5t-55 25.5q-24 0-46.5-13.5T227 2121q0-30 26.5-43t26.5-50q0-15-2.5-30.5T275 1967l-4-55-33-10q-28-9-43-19t-15-23q0-8 2.5-19.5t6.5-24.5l9-25q4-13 8-23-13 11-29.5 38.5T117 1834q-22 0-38-14t-16-32q0-20 17-37t37-23l10-4q11-6 27.5-29.5T182 1654l30-50q15-25 31.5-50.5T281 1501q-9-2-23.5-14t-20.5-22q-6 2-12 7.5t-13 5.5q-8 0-12-8.5t-11-8.5q-6 0-11.5 5.5T167 1472q-10 0-17-28.5t-7-59.5q0-63 33.5-125.5t89-91.5 104.5-29q101 0 165 80.5t64 165.5q0 26-8 57t-17 31q-5 0-10.5-5.5T552 1461q-7 0-11 8.5t-12 8.5-13-5.5-10-7.5q-7 10-21 20t-25 17q17 14 36 43t23 40l8 19 8 17q3 8 6 10 2-14 13-28t35-17q2-105 69-235.5t137-182 72-54.5 2-12q0-12-24-30t-54.5-64T760 888q0-108 69.5-175t172.5-67q100 0 170.5 67t70.5 170q0 76-30.5 123.5T1158 1072t-24 30q0 17 51.5 49.5t111.5 119 92 190.5q29-85 63.5-157.5t73-105.5 71.5-42.5 33-31.5q0-8-11.5-16.5T1588 1088q-19 22-48.5 32t-55.5 10q-24 0-41.5-7.5T1425 1101q0-13 20.5-32.5T1466 998v-32q0-16-1-35l1-33q2-89 60.5-155.5T1687 676q104 0 163.5 67.5T1910 931q0 20-1 36.5t-1 30.5q0 49 20 69.5t20 33.5q0 14-17 21.5t-42 7.5q-26 0-55.5-10t-46.5-32l-30 19q-14 9-14 17 0 22 32.5 30.5t74.5 43.5 85.5 137 55 141.5 30.5 64.5q4-2 8-2h8q13 0 21 3.5t18 13.5q16-32 30.5-49.5t40.5-39.5q-54-32-80-77.5t-26-96.5q0-78 56.5-136t139.5-62h13q88 4 142.5 63t54.5 135q0 49-29 99.5t-75 72.5q4 9 37 34t70 70l17 21q35 48 42.5 86.5t16.5 51 10 28.5v13z" + }, + "children": [] + }] +}; +exports.u1F46A = u1F46A; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F46B.js b/dist/noto_emoji_regular/u1F46B.js new file mode 100644 index 000000000..94ba21d3f --- /dev/null +++ b/dist/noto_emoji_regular/u1F46B.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F46B = void 0; +var u1F46B = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2374.5 1797q-28.5 25-63.5 25-56 0-114-99.5t-93.5-224T2041 1374q-20 0-20 40 0 45 23.5 117.5T2102 1661l31 52q14 25 23.5 47t9.5 40q0 45-57.5 69t-77.5 29-37.5 110.5T1976 2182q0 81 21.5 94t45 36.5 23.5 62.5q0 36-25.5 54.5T1977 2448q-65 0-95-26.5t-30-98.5q0-43 5.5-122t5.5-143q0-50-6.5-82t-24.5-32q-20 0-27.5 33.5t-7.5 81.5q0 35 2 72t5 72l4 68q2 32 2 55 0 70-30.5 96t-94.5 26q-39 0-64-18.5t-25-55.5q0-39 24.5-62.5t45.5-37.5 21-92q0-71-18.5-174.5t-37-108.5-77-29.5-58.5-69.5q0-18 9.5-40t24.5-47l31-53q35-61 57.5-131t22.5-114q0-41-20-41-28 0-64.5 130.5t-93 224T1351 1822q-36 0-62-23-55-2-93-41t-48-73l-22-80-22-72q-21-68-40.5-104.5T1028 1392q-12 0-16.5 6.5t-4.5 23.5q0 19 6 48l11 64q6 35 11.5 71.5t5.5 69.5q0 79-31.5 139T978 2060q0 94 9.5 141.5t25.5 57.5 38.5 36 22.5 59q0 45-32 65.5t-87 20.5q-92 0-135-38t-43-116q0-23 3-55l10-142q2-37 2-70 0-51-6.5-85.5T759 1899t-27 34.5-7 84.5q0 33 3 70l10 139q2 32 2 55 0 79-42 118.5T562 2440q-54 0-86-20.5t-32-65.5q0-33 19.5-56.5t39-37 28.5-69 9-133.5q0-189-32.5-244.5T475 1673q0-33 5.5-69t12.5-70l12-63q5-29 5-48 0-20-5-25.5t-19-5.5q-20 0-44.5 71T417 1593q0 34 4 68t4 76q0 37-32.5 64.5T318 1829q-52 0-87-44.5T196 1658q0-137 93-342t232-274l41-21q15-7 15-22t-45.5-53.5-74-96T429 714q0-144 94.5-234.5T759 389q136 0 232.5 89t96.5 229q0 84-30 143t-74 96.5-44 52.5 15 22l41 21q64 32 113 86t96.5 135.5T1273 1439t53 133l41 49q29-29 45.5-87.5t79.5-202 116.5-189.5 100-58.5 46.5-43.5q0-10-17-21l-43-26q-24 29-63.5 42t-76.5 13q-33 0-56-10t-23-28 27-46 27-94q0-21-1-44.5t-1-51.5q0-160 81.5-252t222.5-92q140 0 221.5 93t81.5 251q0 27-1.5 50.5T2132 868q0 66 28 96t28 46q0 18-24 28t-57 10q-37 0-76.5-13t-63.5-42l-43 26q-17 11-17 21t5 20.5 62 30.5 112.5 87.5T2221 1458l37 100q24 70 84.5 95t60.5 84q0 35-28.5 60z" + }, + "children": [] + }] +}; +exports.u1F46B = u1F46B; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F46C.js b/dist/noto_emoji_regular/u1F46C.js new file mode 100644 index 000000000..75358d608 --- /dev/null +++ b/dist/noto_emoji_regular/u1F46C.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F46C = void 0; +var u1F46C = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1316 1563q30-44 55.5-152.5T1473 1194t167-154l41-21q15-7 15-22t-45-53-74-98-29-142q0-138 95-227.5t234-89.5q140 0 235 90t95 234q0 82-30.5 140t-74 94.5T2059 997t15 22l41 21q140 70 233 273.5t93 341.5q0 82-35 127.5t-88 45.5q-41 0-73.5-26.5T2212 1736q0-42 4-75.5t4-67.5q0-56-24.5-129.5T2150 1390q-12 0-18 6t-6 25q0 20 6 49l11 63q6 34 11.5 70.5t5.5 69.5q0 84-31.5 138.5T2097 2055q0 78 8.5 134t28.5 71 39.5 38 19.5 55q0 45-32 66t-87 21q-91 0-134-38t-43-116q0-39 7-123t7-143q0-52-7-87.5t-27-35.5-26.5 35-6.5 86q0 33 3 70l10 140q2 32 2 56 0 78-42 117t-136 39q-54 0-86.5-21t-32.5-66q0-32 19.5-54.5t39.5-38.5 28.5-72.5 8.5-132.5q0-190-32-244.5t-32-137.5q0-34 5.5-70.5t11.5-70.5l12-64q5-29 5-48 0-17-4.5-23t-16.5-6q-37 0-89 203.5T1347 1798q-28 0-48-10-20 10-47 10-119 0-171-203.5T992 1391q-12 0-16.5 6t-4.5 23q0 19 6 48l11 64q6 34 11.5 70.5t5.5 70.5q0 83-32 137.5T941 2055q0 76 8.5 132.5T978 2260t39.5 38.5 19.5 54.5q0 45-32.5 66t-86.5 21q-94 0-136-39t-42-117q0-24 3-56l10-140q2-37 2-70 0-51-6.5-86t-26.5-35-27 35.5-7 87.5q0 59 7 143t7 123q0 79-43 116.5T525 2440q-55 0-87-21t-32-66q0-32 19.5-55t39.5-38 28.5-71 8.5-134q0-189-31.5-243.5T439 1673q0-33 5.5-69.5T456 1533l12-63q5-29 5-49 0-19-6-25t-18-6q-21 0-45.5 73.5T379 1593q0 34 4 67.5t4 75.5q0 39-32.5 65.5T281 1828q-53 0-88-45.5T158 1655q0-136 92.5-340.5T484 1040l41-21q15-7 15-22t-43.5-51.5-74-94.5T392 711q0-144 95-234t235-90q137 0 233 89.5t96 227.5q0 82-29 142t-74 98-45 53 15 22l41 21q97 48 173.5 163t101 227.5T1299 1584q5-5 9-11z" + }, + "children": [] + }] +}; +exports.u1F46C = u1F46C; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F46D.js b/dist/noto_emoji_regular/u1F46D.js new file mode 100644 index 000000000..d4910423f --- /dev/null +++ b/dist/noto_emoji_regular/u1F46D.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F46D = void 0; +var u1F46D = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2372 1783q-28 24-62 24-55 0-113-97t-94.5-224.5T2039 1358q-11 0-16.5 11t-5.5 30q0 47 27.5 125t54.5 121l31 53q14 25 23.5 46.5t9.5 39.5q0 44-58 68.5t-77 29.5-37.5 109.5T1972 2167q0 76 21 91.5t45.5 38.5 24.5 62q0 38-25 56t-63 18q-54 0-90-24t-36-100q0-23 2-55l8-139q2-37 2-71 0-49-6.5-82t-26.5-33-26.5 33-6.5 82q0 34 2 71l8 141q2 32 2 55 0 77-36.5 99.5T1681 2433q-38 0-63-18.5t-25-56.5q0-37 24.5-60.5t45.5-39 21-92.5q0-34-4-76.5t-18.5-121.5-35-85.5-77-30.5-56.5-69q0-18 9.5-39.5t24.5-46.5l30-52q34-60 58-131.5t24-114.5q0-19-5.5-30t-16.5-11q-17 0-32 40t-46 135.5-64 151-63 89-66 33.5q-25 0-46-12-21 12-45 12-55 0-111-91t-94.5-224.5T984 1358q-11 0-16.5 11t-5.5 29q0 46 27 125t73.5 153.5T1109 1783q0 45-56.5 69t-77 30.5-35 87-18.5 122-4 75.5q0 79 21 93t45.5 38.5 24.5 59.5q0 38-25.5 56.5T920 2433q-53 0-89.5-23.5T794 2309q0-23 2-55l8-139q2-37 2-71 0-49-6.5-82t-25.5-33q-20 0-27 33.5t-7 85.5q0 34 2 71l8 138q2 32 2 54 0 76-35.5 99t-90.5 23q-38 0-63.5-18t-25.5-56q0-36 24.5-60.5t46-40T629 2166q0-34-4-76.5T606.5 1968t-35-85.5-77-30.5-56.5-69q0-18 10-39.5t24-46.5l31-52q35-60 58-131.5t23-114.5q0-19-5.5-30t-16.5-11q-26 0-63.5 129.5T403 1712t-111 95q-36 0-63.5-26t-27.5-60q0-59 61-84t80.5-87.5 84-217.5T549 1128.5t103-61 45-43.5q0-10-17.5-21T637 977q-24 29-63.5 42t-76.5 13q-33 0-56.5-10T417 993q0-17 27-44t27-96q0-20-1-43.5t-1-49.5q0-175 87.5-260.5T774 414q143 0 223.5 92t80.5 252q0 28-1.5 51.5T1075 854q0 69 27.5 95t27.5 44q0 19-23.5 29t-57.5 10q-37 0-76.5-13T909 977q-25 15-42 26t-17 21l3 18q3 11 59 30.5t115 87.5 137 281l36 100q13 36 31.5 57.5t43.5 33.5l25 13 25-13q57-28 80-102t85-216.5 117-188 100-58 45-43.5q0-10-17.5-21t-42.5-26q-24 29-63.5 42t-76.5 13q-33 0-56.5-10t-23.5-29q0-17 27-44t27-96q0-20-1-43.5t-1-49.5q0-158 81-252t223-94q139 0 222 93.5t83 250.5q0 28-1.5 52.5T2130 856q0 66 27 93t27 44q0 19-23 29t-57 10q-36 0-76-13t-64-42q-25 15-42 26t-17 21q0 24 17 31t63 27 90.5 72 87 149 64.5 159.5 40 104.5 61 63.5 53 35.5q19 29 19 56 0 37-28 61z" + }, + "children": [] + }] +}; +exports.u1F46D = u1F46D; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F46E.js b/dist/noto_emoji_regular/u1F46E.js new file mode 100644 index 000000000..a96c6c8ff --- /dev/null +++ b/dist/noto_emoji_regular/u1F46E.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F46E = void 0; +var u1F46E = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2227 1852.5q-72 51.5-141 51.5-7 0-14-1l-13-2q-48 162-161 291t-272.5 188-328.5 59q-152 0-307-54.5t-274.5-181T545 1902q-4 0-8 1t-8 1q-37 0-96-26t-87-73.5-28-106.5q0-79 42.5-137t118.5-67q-5-33-8.5-66.5T466 1360q-13-17-20.5-24.5T438 1309v-40q-63-36-100-105.5T301 1023q0-253 304.5-449T1304 378q263 0 485.5 87t364 228.5T2295 971q0 73-40.5 142.5T2154 1217v92q0 14-9 27l-20 28-4 64q-2 31-7 62 69 9 104 33t58 69.5 23 104.5q0 104-72 155.5zm-242-51.5q-8-14-12-34l-6-29q-9-51-25.5-99t-37.5-96q-51 26-112 48t-136 39q40 2 66.5 33.5t26.5 73.5q0 45-29 75.5t-68 30.5-67.5-30.5-28.5-75.5q0-33 16-59t43-39q-64 11-138.5 18.5T1316 1665q-191 0-348-35t-275-98q-47 102-61 170t-17 78q25 166 122 302t251.5 199 308.5 63q278 0 458.5-145t229.5-398zM408.5 1084.5Q418 1114 438 1141q0-13 12.5-27.5T654 1036t414-87q32-58 90-96t138-38q73 0 132.5 35t94.5 100q160 19 312 58.5t242 75.5l53 22 7 5q28-32 44-68t16-71q0-116-143.5-241.5T1715 539t-411-66q-356 0-630.5 171.5T399 1023q0 32 9.5 61.5zm774.5 72q46 44.5 113 44.5t113-44.5 46-102.5q0-60-47.5-103T1296 908q-62 0-110.5 42t-48.5 104q0 58 46 102.5zM727 1460q49 26 110 49t137 40l68-256q-73 6-147 9t-153 14l-45 127zm352 109q35 5 73 9.5t77 6.5l59-291q-14 0-27-2t-25-5q-22 0-45.5 1t-45.5 1zm-63.5 244q-29.5 30-67.5 30-41 0-68.5-30.5T852 1737q0-44 28.5-75.5T948 1630t68 31 29 76q0 46-29.5 76zm399.5 252q8 0 15.5-1t14.5-1q14 0 23.5 6.5t9.5 17.5q0 30-49 50t-122 20q-15 0-30-2l-29-3q-13 0-23-3l-14-3q-35-10-54.5-25.5T1137 2087q0-11 9.5-17.5t23.5-6.5q32 0 64.5 4.5t65.5 4.5h14q26 0 51-1.5t50-5.5zm665-252q13 3 27 3 48 0 74-33t26-87q0-51-28.5-80.5T2093 1583l-4 11q2 17 3 35v36q0 76-12 148zm-1555 3q-8-36-11-73.5t-3-74.5v-20q0-9 1-18l-12-44q-44 8-67.5 35.5T409 1696q0 54 26.5 87.5T514 1817q6 0 11-1zm677.5 80q5.5-6 13.5-6 11 0 33 22.5t58 22.5q20 0 34.5-7t24.5-16l17-15q7-7 16-7 8 0 13.5 6t5.5 13q0 23-33.5 46.5T1307 1979q-46 0-78-23.5t-32-46.5q0-7 5.5-13z" + }, + "children": [] + }] +}; +exports.u1F46E = u1F46E; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F46F.js b/dist/noto_emoji_regular/u1F46F.js new file mode 100644 index 000000000..082ab0b1b --- /dev/null +++ b/dist/noto_emoji_regular/u1F46F.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F46F = void 0; +var u1F46F = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2139 2177q-50 131-149.5 224.5T1781 2528t-162 33q-39 0-64.5-13t-25.5-35q0-17 16.5-35t39.5-36q-48 21-135 38.5t-158 17.5q-80 0-171-21t-144-49q8 9 39 38t31 48q0 20-21.5 32t-50.5 15q-111 0-249-61.5T487 2281t-101-405q0-201 69-434.5T667 1053q-50-55-89.5-120.5t-71-156.5-45-201-38-193.5T399 250q0-66 45-106.5T567 103q199 0 439 201t278 484h45q22-160 119-308.5T1720.5 217 2045 103q80 0 124.5 40.5T2214 250q0 57-24 133t-35.5 174-39 191-74.5 176-112 148q135 166 197.5 391t62.5 413q0 170-50 301zm-418 274q152-32 265-181t113-393q0-167-61.5-389T1860 1131q-67 48-148 83 58 42 80 78t22 73q0 14-10 27t-35 13q-16 0-31-6l-28-11q-99-36-198.5-55t-200.5-19q-117 0-217 23.5T946.5 1381t-99.5 20q-19 0-33.5-4.5T799 1372q0-33 27-68.5t92-81.5l-18-9-22-9q-23-9-72-39t-72-49q-132 142-195.5 362.5T475 1877q0 233 109 384.5T855 2451l23 6q-59-67-91-170.5T755 1980q0-46 3.5-96t17-97 38-85.5 65-58.5 81.5-23 95-5 124-31 84-47.5 52-51.5q22-19 48.5-34t59.5-15q69 0 114 72t130.5 164 120.5 182.5 35 214.5q0 110-32 213.5t-95 174.5zm-20-187q17-47 24.5-96t7.5-99q0-47-6-91.5t-20-85.5q-11 13-26 21.5t-29 8.5q0 45-24.5 76t-65.5 31q-37 0-64.5-29t-27.5-72 27.5-71.5 64.5-28.5q8 0 16 3 10 0 18.5-3.5t15.5-8.5l13-8q6-4 13-4t12 4 5 11q0 8-4.5 13.5t-9.5 9.5l-9 8q-5 4-5 6l5 6q28 0 37-3t21-5q-18-36-43-68.5t-52-63.5l-55-63q-58-66-77-101.5t-40-35.5q-11 0-26.5 12.5T1363 1567l-39 35q-51 46-140.5 75.5T1027 1707q-86 0-114.5 20t-48 77.5T845 1990q0 68 3.5 129.5T868 2243q84 87 200 125.5t224 38.5q101 0 211.5-32t197.5-111zM1293 879q0 12 1 24t1 23q0 46-6.5 88t-17.5 85l36-1 34 1q-9-43-15.5-87t-6.5-91v-22q0-10 2-20h-28zm185 194l1 45q22 5 42 12t42 12q70-34 134-87.5T1805.5 931t73-179.5 44-154T1938 517q0-23-11-41.5t-41-18.5q-64 0-180 104.5T1534 819t-56 254zm-420 74q18-8 36.5-14.5t38.5-11.5q3-21 3-27 0-109-53-262T911 568 726 457q-28 0-38.5 17T677 513q0 38 23.5 102T734 735.5t42 135 102.5 145 115 92 64.5 39.5zm154 930q5-4 11-4 7 0 13 5l12 11q7 7 17.5 12t27.5 5q16 0 26.5-5t17.5-12l13-11q5-5 12-5 6 0 11 4t5 10q0 18-26 35.5t-59 17.5q-34 0-60-17.5t-26-35.5q0-6 5-10zm189 104l11-7q6-4 13-4 13 0 13 17 0 42-42 68t-88 26h-16q-50 0-91-26.5t-41-70.5q0-14 14-14 5 0 40 18.5t86 18.5q52 0 101-26zm-309.5-181q-27.5 29-62.5 29-37 0-64.5-29t-27.5-72l1-6q-16 0-38.5-15t-22.5-30q0-6 4.5-13t11.5-7q14 0 21.5 4t30.5 4l10-1q7 0 7-5-28-25-28-38 0-7 6-10.5t11-3.5q10 0 26.5 12t33.5 12q7-3 18-3 35 0 62.5 28.5t27.5 71.5-27.5 72z" + }, + "children": [] + }] +}; +exports.u1F46F = u1F46F; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F470.js b/dist/noto_emoji_regular/u1F470.js new file mode 100644 index 000000000..17979c2f3 --- /dev/null +++ b/dist/noto_emoji_regular/u1F470.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F470 = void 0; +var u1F470 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2322.5 2154q-28.5 48-90.5 77l-4 3q2 22 3 43.5t1 42.5q0 76-13 90.5t-36 23-118 11.5h-10l-28 2q-14 0-28 1-31 0-67-4.5t-70-19.5h-12q-67-13-111-60t-58-152q-89 54-195.5 77.5T1295 2313q-86 0-187.5-24.5T925 2216q-17 105-60.5 150T756 2424h-9q-37 15-73 19.5t-66 4.5q-14 0-28-1l-29-2h-8q-90-2-114-9.5t-38-20-15-59.5l-1-32q0-21 1-43l2-44q-67-33-98.5-78.5T248 2045q0-40 9-78l17-70 6-22q66-267 112-432.5T537.5 1050 771 738q-3-9-4-19t-1-19q0-57 40.5-98t97.5-41q16 0 32 4t31 11q14-7 29.5-11t32.5-4q30 0 55 12t46 32q10-8 20-13.5t21-8.5q15-42 51-69t81-27 81.5 27 49.5 69q27 9 47 26 22-22 47-33.5t56-11.5q32 0 61 15 15-8 31-11t32-3q56 0 97.5 41t41.5 96q0 11-2 21.5t-5 21.5q121 89 224.5 314t159.5 449l50 196q11 42 20.5 86.5t24.5 84.5l6 22q0 11 13 53t13 94q0 62-28.5 110zM1765 2016q-13-8-18-30.5t-15-92-18-192.5q-9 17-27 27t-31 10q0 44-25.5 75.5T1565 1845q-36 0-63.5-29t-27.5-71q0-43 27-72t64-29q7 0 17 2 17 0 34-11.5t27-11.5q7 0 11.5 4.5t4.5 10.5q0 8-4.5 14t-9.5 10l-10 7q-5 3-5 6 5 5 9.5 6t10.5 1q13 0 24.5-5t25.5-5q3 0 5.5 1t5.5 3q-5-82-19.5-169t-31.5-166q-16-20-47-69t-43-49q-16 0-57.5 34.5T1344 1361t-255 114-187 75l-6 47q-2 19-3.5 43t-6.5 38q7-6 11-6 8 0 22 5t26 5q5 0 13-1t8-6q0-2-13.5-12t-13.5-26q0-7 5-10.5t11-3.5 12 3l14 8q7 5 15 8.5t18 3.5q10-2 18-2 37 0 64 29t27 72q0 42-27.5 71t-63.5 29q-38 0-64.5-29.5T941 1738q-9 0-24.5-7t-31.5-27q-5 28-12.5 110.5t-14 135.5-25.5 66l23 25q43 50 108 91.5t129 59.5l37 9q33 9 80 15.5t85 6.5q124 0 247-43.5t208-145.5zm489 76q7-29 7-50 0-28-6.5-63t-17.5-59l-5-22-32-125q-35-137-82.5-307.5t-119-335.5T1841 867q-13 43-49.5 70.5T1708 965q-11 0-25-2t-27-9l11 32q26 106 54.5 217t48.5 236l12 76q17 121 31.5 263t18.5 161q18 3 38 3 19 0 43-1l47-2q23 0 45-1t40-1q91 0 150 41.5t59 113.5zM617.5 1938q29.5 1 59.5 4l47-1q23 0 43-2l3-32q9-120 26.5-251t22-174.5 26.5-159T941 957q-8 2-16.5 3t-16.5 3q-51 0-89-28.5T770 856q-91 82-182 305.5T421 1686l-54 212-5 22-16 62q-8 32-8 62 0 20 7 48 0-61 51.5-108t155.5-47q36 0 65.5 1zm550-1180q18.5 13 45 23t26.5 30.5 19 38.5 45 18q24 0 42-15t22.5-43 31-31 42-22.5T1456 713q0-38-32.5-53t-39.5-15-22-42-59-42q-29 0-45 18.5t-19 38.5-32 31l-22 10q-15 7-25.5 22t-10.5 32q0 32 18.5 45zM2134 2046q-29-17-89-17-54 0-94.5 2.5t-84.5 2.5q-45 64-104 116 4 24 7.5 54.5t11.5 48.5q50-59 168-63.5t166-28.5 48-64q0-34-29-51zM1537 780l-14 30q-4 8-4 17 0 30 20 46.5t42 16.5q14 0 22.5-3t15.5-7l12-6q5-3 14-3 8 0 16 3l15 8q7 4 15 7.5t17 3.5q30 0 47.5-21t17.5-45q0-12-3-19.5t-8-14.5l-7-12q-4-6-4-14 0-5 1.5-10t3.5-9l12-24q3-7 3-24 0-25-17.5-43.5T1708 638q-18 0-32.5 10.5T1645 659q-8 0-14-4l-13-7q-11-5-18.5-7.5T1582 638q-17 0-33.5 9t-23.5 28q3 9 4 19.5t1 18.5v12q0 5-1 10 4 5 7.5 14t3.5 16q0 8-3 15zM844 2157l-37-34q-41-41-74-89-48 0-96.5-3.5T552 2027q-53 0-84.5 17t-31.5 53q0 44 55.5 64t149.5 28l47 4q40 3 76 17.5t61 42.5q2-5 4-12l3-14zm6-1425q10 17 10 29 0 16-10 31t-10 35q0 26 19 44t45 18q11 0 19.5-3.5T939 878l13-7q6-3 14-3 10 0 17 3l13 7q10 6 17 8.5t17 2.5q27 0 45-19t18-43q0-11-3.5-19.5T1082 791l-7-15q-4-7-4-15t7-20l-2-22q0-13 1.5-25.5t7.5-26.5q-3-3-5-7l-4-7q-10-9-23-12.5t-24-3.5q-13 0-22.5 3t-15.5 6l-12 7q-6 3-13 3-8 0-25.5-10.5T903 635q-26 0-44.5 17.5T840 698q0 17 10 34zM607 2357q54 0 89.5-11t58.5-34q-18-27-127.5-33.5T467 2263l-2 32q0 15-1 29 0 7 1 13t1 12l30 2 49 4h13q12 0 25 1zm1533-8l1-17v-44l-2-27q-30 8-64 10t-65 5l-56 5q-46 5-70.5 11.5T1851 2312q23 23 58.5 34t89.5 11l51-2h11zm-701-358.5q2 3.5 2 10.5 0 43-41 70t-97 27q-55 0-96.5-26.5T1165 2002q0-15 12-15 7 0 43.5 18t82.5 18q47 0 84.5-18t41.5-18q8 0 10 3.5zm-223-98q5-3.5 12-3.5 6 0 12 5l12 11q6 7 16.5 12t27.5 5q15 0 26-5t19-12l13-11q5-5 11-5 7 0 11.5 4t4.5 9q0 19-26 36.5t-59 17.5-59-17.5-26-36.5q0-6 5-9.5z" + }, + "children": [] + }] +}; +exports.u1F470 = u1F470; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F471.js b/dist/noto_emoji_regular/u1F471.js new file mode 100644 index 000000000..7ff854fa8 --- /dev/null +++ b/dist/noto_emoji_regular/u1F471.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F471 = void 0; +var u1F471 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2322 1439l-4 50q-9 116-45.5 180t-71.5 142-36 161l-2 76q-3 109-41 172t-123 108-178 45q-101 0-167-45.5t-88-130.5q-66 21-137 31.5t-133 10.5q-94 0-170.5-20t-94.5-24q-13 89-74 135t-156 46q-111 0-205-61t-121-148.5-34-199-69.5-222.5-79.5-200-17-178q0-284 143-538.5t355.5-384T1305 315q241 0 400 66.5T2012.5 608 2243 968.5t82 397.5q0 37-3 73zm-101-8q3-31 3-64 0-183-81-371t-205-320-256-195.5-377-63.5q-233 0-375 61.5T657.5 670t-206 320.5T376 1367q0 188 75.5 314.5T540 1924l10 97q9 94 35.5 141t87.5 80 128 33q48 0 81-18t44-55q-8 2-17.5 3t-23.5 1q-61 0-105-41t-44-101q0-36 19-84.5t19-80.5q0-64-51.5-135.5T671 1604q0-157 90.5-243t265.5-116.5 262.5-117.5 145.5-87q40 0 72 30l60 57q49 47 94 69t92 27 70.5 34.5 40.5 73.5l27 74q17 47 27.5 97t10.5 94q0 61-23 114t-51.5 96.5-28.5 96.5q0 21 6 39l13 36q6 18 12 39t6 47q0 61-43 101.5t-106 40.5q-14 0-22-1t-16-3q21 38 56 54t89 16q77 0 141-38.5t81-78.5 19-125l2-74q3-114 72-241t75-183zm-481 559q-16-42-16-90 0-35 9-70.5t27-63.5l31-50q15-24 26-52.5t11-65.5q0-48-18.5-115.5T1750 1325q-67-7-117-29.5t-84.5-48.5-113.5-105q-20 10-38.5 25.5T1360 1199l-36 33q-81 72-264.5 109T824 1442.5 772 1604q0 57 51.5 131.5T875 1902q0 45-15 85 94 82 218.5 116t217.5 34q91 0 217.5-31t226.5-116zm-39-397q0 3 1 7 0 46-30.5 79.5T1600 1713q-42 0-72.5-33.5T1497 1600q0-47 31-79.5t72-32.5h11l10 2q17 0 35.5-13t28.5-13q8 0 14 4t6 13q0 16-15.5 27t-16.5 14q5 7 15 7 16 0 25-1.5t15-3.5l10-4q4 0 11-1 8 0 14.5 7.5t6.5 15.5q0 15-23.5 33t-45.5 18zm-699-105q41 0 71.5 32.5t30.5 79.5q0 46-30.5 79.5T1002 1713t-71.5-33.5T900 1600q0-4 1-7-19 0-44-15.5t-25-35.5q0-8 6-15.5t14-7.5q7 0 19.5 5t41.5 5q6 0 8-1t7-6q0-3-16-14.5t-16-25.5q0-9 6-13.5t14-4.5q6 0 13 4l15 9q8 5 17 9t19 4l11-2h11zm146.5 336q-29.5-17-29.5-53 0-23 11-43l22-38 28-44q34-51 48.5-115t42.5-64q10 0 15.5 11t6.5 30v18q0 70-42 143.5t-42 85.5q0 11 12 13.5t26 2.5q13 0 26-1.5t27-1.5q19 0 32.5 8.5t13.5 23.5q0 17-11.5 28t-26.5 11q-14 0-32 1t-38 1q-60 0-89.5-17zm277.5 60q2 5 2 11 0 41-39.5 66.5T1298 1990l-8-1-9 1q-53-3-89-27.5t-41-63.5v-4q0-6 2.5-11t9.5-5q9 0 45 18t82 18q53 0 84-18t43-18q7 0 9 5z" + }, + "children": [] + }] +}; +exports.u1F471 = u1F471; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F472.js b/dist/noto_emoji_regular/u1F472.js new file mode 100644 index 000000000..1323d77ee --- /dev/null +++ b/dist/noto_emoji_regular/u1F472.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F472 = void 0; +var u1F472 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2237 1719q-58 59-155 59h-15l-13-2q-53 183-176.5 312T1594 2267t-306 50q-141 0-300.5-52t-280-179T534 1777q-5 0-13 1-98 0-157-59t-59-148q0-68 34-123.5t111-77.5q-4-6-5.5-13.5T443 1342v-168q0-18 13-36 20-169 121.5-338T861 536.5t435-94.5q251 0 432 93t284.5 262 124.5 341q13 18 13 36v168q0 7-2 13t-5 13l15 3q57 14 97 66.5t40 131.5q0 91-58 150zm-246-213v-32q-2-22-8-27t-28-29l-36-40q-140-18-304.5-28.5T1296 1339q-138 0-280 8t-347 31q-14 27-32 49l-39 45q-3 38-3 73 0 137 49.5 265T792 2034t230 141 266 45q313 0 508.5-189t195.5-496q0-19-1-29zM929 1004q80-11 172-18.5t195-7.5 195 7.5 172 18.5q-37-228-130.5-365.5T1296 501q-137 0-230.5 128T929 1004zm446.5 228q33.5-33 33.5-77t-36-77-79-33q-48 0-83.5 32.5T1175 1155q0 44 33.5 77t83.5 33 83.5-33zM512 1690q-13-71-13-148l1-43q0-22 3-43-53 6-79 34t-26 79q0 54 25 88t77 34q7 0 12-1zm1563-3q15 3 29 3 48 0 73.5-33.5t25.5-87.5q0-51-28.5-80.5T2084 1456q2 22 3 43t1 42q0 38-3 74t-10 72zm-882.5 21.5q5.5-7.5 14.5-7.5l6 1q22 5 43 10.5t44 5.5q33 0 54.5-10.5t39.5-10.5q7 0 12 5t5 13q0 19-35 42t-77 23-77-19-35-38q0-7 5.5-14.5zm266 250Q1397 2005 1311 2005q-93 0-161.5-41.5T1081 1882q0-10 7.5-20.5t18.5-10.5q13 0 70 31t128 31q63 0 117.5-30.5t69.5-30.5q11 0 19.5 8.5t8.5 20.5q0 31-61.5 77.5zm-471-359.5q-28.5 21-66.5 21t-67-21-29-51q0-28 28-49.5t68-21.5q41 0 68 21.5t27 49.5q0 30-28.5 51zm733.5 0q-29 21-67 21t-67-21-29-51q0-28 28-49.5t68-21.5 68 21.5 28 49.5q0 30-29 51z" + }, + "children": [] + }] +}; +exports.u1F472 = u1F472; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F473.js b/dist/noto_emoji_regular/u1F473.js new file mode 100644 index 000000000..1ce9f5a62 --- /dev/null +++ b/dist/noto_emoji_regular/u1F473.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F473 = void 0; +var u1F473 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2270.5 1595q-51.5 131-135.5 221l-25 27q-16 16-41 16-6 0-11-1.5t-7-1.5q-60 187-176 307t-273 172.5-314 52.5q-154 0-311-54.5t-274-179T533 1849q-36-9-75.5-51.5t-75-90T323 1596t-36-149q-10-72-10-151 0-277 122.5-507.5t354-355T1302 309q313 0 543 122.5T2198.5 783t123.5 500q0 181-51.5 312zM2137 931q-66-168-185-279-169 71-323 158t-292 190q190 100 412 299.5t333 395.5q76-102 98.5-200.5T2203 1288q0-189-66-357zm-154 829q-100-179-304-366t-442-315q-145 112-323 296t-307 410q45 185 161 308t281 170l44 11q42 11 94 18t101 7q165 0 316.5-60.5t249-189T1983 1760zm-336 293.5q-37 29.5-91 29.5-62 0-139-35t-129-35q-45 0-119 39t-124 39q-49 0-80.5-19.5T933 2018q0-28 35.5-32.5t81-50 87.5-66.5q-26-8-43.5-25t-17.5-49q0-40 48-109t90-160 73-91q19 0 25 12.5t6 26.5v11q-5 57-71 169t-66 123 14.5 14 31.5 3q14 0 27.5-1t27.5-1q29 0 45 9.5t16 27.5q0 5-1 8 91 16 171.5 75t125.5 59 45 34q0 19-37 48.5zm79.5-352Q1696 1735 1653 1735q-41 0-72.5-33t-31.5-82q0-48 31-81.5t73-33.5q44 0 74 34t30 81q0 48-30.5 81.5zm-880 0Q816 1668 816 1620q0-47 30-81t74-34q42 0 73 33.5t31 81.5q0 49-31.5 82t-72.5 33q-43 0-73.5-33.5zm-426-185.5Q447 1619 523 1695q12-23 29-49l36-55q108-162 251-308.5t234-221.5 186-150.5 250.5-169T1848 569q-216-141-546-141-444 0-676 249.5T394 1295q0 118 26.5 221z" + }, + "children": [] + }] +}; +exports.u1F473 = u1F473; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F474.js b/dist/noto_emoji_regular/u1F474.js new file mode 100644 index 000000000..7bff9c15f --- /dev/null +++ b/dist/noto_emoji_regular/u1F474.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F474 = void 0; +var u1F474 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2219 1728.5q-74 50.5-139 50.5-8 0-14-1l-14-2q-47 163-160.5 293t-274 188.5T1288 2316q-151 0-307.5-53T707 2087t-174-310q-4 0-8 1t-8 1q-62 0-136.5-49.5T306 1569q0-85 48.5-140.5T493 1362q-9-48-14.5-94.5T473 1173q0-215 115-353t296-216.5 368-78.5q11 0 21 1t19 1q11 0 20.5-1t20.5-1q299 0 544 181.5t245 479.5q0 45-5.5 89t-14.5 87q102 12 146.5 70.5T2293 1571q0 107-74 157.5zM1989.5 1515q-1.5-15-1.5-31-65-60-142.5-193T1723 1047l-60-148-19 12h-1q-73 47-247 99.5t-332 87T785 1212t-184 206l-4 64q-2 32-2 64 0 148 57 281t160 225 233.5 130 242.5 38q316 0 509.5-191t193.5-483q0-16-1.5-31zM570 1182q0 29 1 44l2 28q0 14 4 22 48-63 113.5-114t148-90.5 249-76.5 312-85.5 190-78T1663 802q33 0 56.5 17.5T1754 865l33 84q44 110 108.5 233.5T2004 1360q22-84 22-169-3-147-54.5-237T1825 788.5 1601 667t-277-46q-17 0-27 1h-9q-8 0-26-1-176 0-332.5 67.5T671.5 869 570 1182zm299.5 442.5Q841 1594 841 1549q0-44 28.5-75.5T937 1442q40 0 68.5 31.5t28.5 75.5q0 45-29 75.5t-68 30.5-67.5-30.5zm842 .5q-29.5 30-66.5 30-38 0-67.5-30t-29.5-76q0-45 29-76t68-31q37 0 66.5 31t29.5 76q0 46-29.5 76zM1439 1955.5q-57 39.5-129 39.5-84 0-146-36t-62-72q0-9 6-17.5t17-8.5q9 0 19 5l16 10q30 17 64 27.5t69 12.5q63 0 114.5-27t63.5-27q10 0 17.5 7t7.5 18q0 29-57 68.5zm634-267.5q13 3 27 3 48 0 75-33.5t27-88.5q0-57-34.5-84.5T2084 1457q0 22 1.5 43t1.5 44q0 36-4 72t-10 72zm-1561 3q-6-37-9.5-73t-3.5-74q0-21 1-43t3-44q-54 6-80 35.5t-26 76.5q0 55 26 89t78 34q7 0 11-1zm676.5 30.5q6.5-5.5 14.5-5.5 10 0 32.5 22t56.5 22q37 0 58.5-22t31.5-22q8 0 14.5 5.5t6.5 13.5q0 23-33.5 46.5T1292 1805t-77-24-33-46q0-8 6.5-13.5zm417.5 238q-7 17.5-21 17.5-7 0-12.5-4t-6.5-12l-15-64q-9-38-33.5-60t-24.5-34q0-17 20-17 29 0 64.5 38.5t35.5 95.5q0 22-7 39.5zm-518.5-169q5.5 4.5 5.5 12.5 0 11-9 20l-17 17q-33 37-39 87t-28 50q-12 0-19-15t-7-42q0-44 31-89t71-45q6 0 11.5 4.5z" + }, + "children": [] + }] +}; +exports.u1F474 = u1F474; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F475.js b/dist/noto_emoji_regular/u1F475.js new file mode 100644 index 000000000..23b4625d4 --- /dev/null +++ b/dist/noto_emoji_regular/u1F475.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F475 = void 0; +var u1F475 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2328.5 1742.5Q2306 1800 2262 1844t-76 54.5-71.5 23.5-64.5 13q-11 0-23-1t-23-4q-66 133-175 226.5t-253.5 137T1291 2337q-110 0-242-34t-248.5-118T606 1960q-18 11-47.5 15.5T504 1980q-72 0-131.5-43.5t-92-112T248 1624t69-243 66.5-202 48.5-172.5 100.5-110 64.5-100 116.5-158 242-115T1206 495q38 0 63 5.5t48.5 0 64.5-5.5q14 0 26.5 1.5t25.5 1.5q196 15 309 63t176 120.5 76 130.5 65 90l24 15q44 27 83 96t39 174v41q0 35 9 58.5t28 50.5l2 5 41 63q30 44 47.5 104.5T2351 1632q0 53-22.5 110.5zM1914 1896q-44-26-68.5-97t-24.5-108q0-43 13-111.5t13-114.5q0-83-23.5-131.5T1754 1245l-77-65q-18-15-59-59.5t-47.5-94.5-15.5-76q-22 24-30 44.5t-72 43-102 22.5q-21 0-41.5-3.5t-40.5-7.5l-39-8q-19-3-37-3-49 0-82 30t-72.5 121-141 133.5T763 1426t-37 163l-4 104q-3 52-12 102.5t-35 93.5q61 119 155.5 199.5t224 116.5 236.5 36q198 0 365-83.5t258-261.5zm321.5-369q-16.5-48-41-80.5T2139 1358t-31-84q0-23-1-39t-1-33l1-20q0-77-28.5-125.5t-86.5-81-87-122.5l-9-29q-17-55-90-115t-182.5-85-160.5-25l-10 1q-12 0-24-3h-14q-9-2-17-2h-16q-20 0-41.5 3.5T1293 602t-47.5-3.5-39.5-3.5h-16q-8 0-17 2h-14q-14 2-28 2-53 0-149.5 22.5t-147 52.5-90.5 70-52.5 81-29.5 77-52.5 60.5T569 993l-30 38q-57 71-58 139.5t-15 129-66.5 137T347 1624q0 163 57 210.5t100 47.5q17 0 32.5-5t26.5-5q20-8 40-66.5t20-131.5q0-172 31-249t86.5-123.5T863 1229t96-104.5 88-132.5 146-54q36 0 86.5 11.5T1351 961q17 0 44-9t53-17l3-5q28-48 53-64t51-16q30 0 51 12.5t35.5 38 22 72.5 10.5 57 44 52 95.5 87 87.5 99.5 42 139.5l3 36q0 11 1 21 0 45-7.5 81t-11.5 71l-2 7q-3 19-5 35.5t-2 31.5q0 14 12 54t20 51 35.5 26 63.5 15q14 0 73.5-21t94-74 34.5-110-16.5-105zm-519 116.5Q1688 1675 1648 1675q-39 0-68-31t-29-76q0-44 28.5-74.5t68.5-30.5q41 0 69 30t28 75q0 44-28.5 75.5zm-843.5.5q-29-31-29-76 0-44 28.5-74.5T941 1463q41 0 69.5 30t28.5 75-29.5 76-68.5 31-68-31zm586 260q0 47-44 77.5t-105 33.5h-15q-35 0-94.5-29.5T1141 1922q0-13 8.5-19t19.5-6q8 0 12 1l60 20q28 10 61 10 38 0 70-9.5t46-21 27-11.5q14 0 14 18zm-269-163q6-6 16-6t31.5 22 57.5 22q34 0 56.5-22t33.5-22q8 0 14.5 5.5t6.5 13.5q0 23-33.5 46.5T1295 1824t-77.5-23.5-33.5-46.5q0-7 6-13zm-88 125.5q-26 23.5-36.5 75.5t-17.5 57-14 5q-14 0-20.5-19t-6.5-39q0-46 32.5-89.5t68.5-43.5q7 0 13.5 4.5t6.5 12.5q0 13-26 36.5zm494 119.5q-7 18-20 18-19 0-22-24t-15-62.5-33.5-56.5-21.5-33q0-5 5.5-10t13.5-5q31 0 65.5 38.5t34.5 94.5q0 22-7 40z" + }, + "children": [] + }] +}; +exports.u1F475 = u1F475; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F476.js b/dist/noto_emoji_regular/u1F476.js new file mode 100644 index 000000000..432bf0386 --- /dev/null +++ b/dist/noto_emoji_regular/u1F476.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F476 = void 0; +var u1F476 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2224.5 1772q-68.5 53-142.5 53-7 0-14-1l-12-2q-60 220-273.5 347.5T1292 2297q-266 0-486-125t-280-347q-86 0-153-53.5T306 1617q0-92 56.5-150.5T514 1408q13-105 42.5-184.5t49-127.5 63-121 119-136.5T956 734t185-61.5 165-28 113-24.5q29-12 49.5-33t20.5-55q0-21 6-29t18-8q31 0 86 48t58.5 114 60 92.5T1857 856t141 205.5 58 239.5q0 39 3.5 45t10.5 62q116 0 169.5 60t53.5 149q0 102-68.5 155zM1971 1395q-16-83-26.5-108.5t-59.5-87-112-101.5-132-40q-68 0-160 67.5t-173 67.5q-25 0-48.5-10t-23.5-23q0-8 9-16l19-18q10-10 18.5-21.5t8.5-27.5q0-11-8-20.5t-27-9.5q-43 0-106.5 54t-113.5 54q-26 0-42-7t-16-18q0-12 18-28.5t18-27.5q0-12-16.5-21.5T959 1043q-108 0-204.5 99.5T651 1249q-54 153-54 348 0 231 88.5 347.5t251 187T1292 2202q203 0 369.5-77t246-200.5T1987 1597q0-119-16-202zM503.5 1738q3.5-1 6.5-1-9-66-9-140l1-47q0-23 2-46-56 6-81.5 35t-25.5 78q0 54 26 88t74 34q3 0 6.5-1zm1569.5-4q13 3 27 3 48 0 75-32.5t27-87.5-33.5-84.5-90.5-29.5q2 23 3 47t1 47q0 36-2.5 70.5t-6.5 66.5zm-865.5 134.5q5.5-6.5 13.5-6.5 9 0 16 2l14 4q9 3 19.5 4.5t25.5 1.5q28 0 48-8t32-8q5 0 10 4.5t5 10.5q0 21-31.5 38t-62.5 17q-38 0-66.5-17t-28.5-31q0-5 5.5-11.5zm215.5 187q-51 37.5-116 37.5-64 0-126-30t-62-70q0-8 6.5-17t15.5-9q8 0 55.5 25.5T1302 2018q31 0 58-9.5t55-24.5l17-9q11-6 20-6 8 0 15 7t7 16q0 26-51 63.5zM989 1822q-32 34-75 34t-75-34-32-83 31-83.5 76-34.5 76 34.5 31 83.5-32 83zm752 0q-32 34-75 34-45 0-76-34.5t-31-82.5q0-47 30-82.5t77-35.5q45 0 76 34.5t31 83.5-32 83z" + }, + "children": [] + }] +}; +exports.u1F476 = u1F476; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F477.js b/dist/noto_emoji_regular/u1F477.js new file mode 100644 index 000000000..6659fe8d9 --- /dev/null +++ b/dist/noto_emoji_regular/u1F477.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F477 = void 0; +var u1F477 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2174 1419q58 23 88.5 75t30.5 116q0 60-27 108.5t-85 74.5-97 26q-10 0-17-1l-15-2q-52 179-174.5 307.5t-279 181T1288 2357q-155 0-312-56t-274-183.5T533 1817q-4 0-8.5 1t-9.5 1q-63 0-136-50t-73-159q0-62 28.5-112t83.5-75q-60-17-83.5-38t-23.5-58q0-45 34.5-77t42-53.5 68.5-225T600.5 673 773 526t183-83q6-59 52-102t107-43h350q61 0 107 43t52 102q164 52 283 156t177.5 261 95.5 297l6 24q8 33 44.5 67t36.5 79q0 33-17 51.5t-76 40.5zM512 1731q-6-36-9.5-72.5T499 1584q0-21 1-41t3-46q-54 6-80 35t-26 78q0 54 26 88t78 34q7 0 11-1zm1476-97q-33-59-65.5-97t-55.5-58q-107 14-249.5 22t-328.5 8q-184 0-326-8t-251-22q-24 23-55 58.5t-61 87.5q13 219 136.5 381t318.5 218l39 10q43 12 95.5 19.5t102.5 7.5q156 0 316.5-62.5t266-216T1988 1634zm170-317q-4-6-29.5-29t-44.5-96-65.5-217.5-101.5-217T1788.5 634 1625 550v627q0 20-14.5 34t-34.5 14-34-14-14-34V458q0-28-19.5-45.5T1465 395h-350q-26 0-44.5 18.5T1052 458v719q0 20-14 34t-34 14-34.5-14-14.5-34V550q-92 34-166 86T660 762 558.5 977 496 1189t-42 95.5-32 32.5q89 36 313 63.5t554 27.5q334 0 562-29t307-62zm-85 411q7 2 14 2t15 1q48 0 74-33.5t26-87.5q0-52-29-81t-91-32q2 21 3.5 43.5t1.5 43.5q0 36-4 72t-10 72zm-1067-1.5q-28 30.5-69 30.5t-68.5-31-27.5-74q0-44 28.5-75.5T937 1545q40 0 68.5 31.5t28.5 75.5-28 74.5zm706.5 0Q1684 1757 1645 1757q-40 0-68.5-30.5T1548 1652q0-45 29-76t68-31q37 0 66.5 31t29.5 76q0 44-28.5 74.5zm-255 311.5q-60.5 46-146.5 46-96 0-163-40t-67-82q0-10 7-20.5t19-10.5q11 0 71 31.5t129 31.5q38 0 71-12.5t67-31.5l22-12q13-7 25-7 10 0 18 8.5t8 20.5q0 32-60.5 78zm-269-241.5q6.5-5.5 14.5-5.5 10 0 32.5 22t56.5 22q37 0 58.5-22t31.5-22q8 0 14.5 5.5t6.5 13.5q0 23-33 47.5t-78 24.5q-46 0-78-25t-32-47q0-8 6.5-13.5z" + }, + "children": [] + }] +}; +exports.u1F477 = u1F477; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F478.js b/dist/noto_emoji_regular/u1F478.js new file mode 100644 index 000000000..3105eaef5 --- /dev/null +++ b/dist/noto_emoji_regular/u1F478.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F478 = void 0; +var u1F478 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2274.5 2001q-10.5 37-25.5 56l-15 18q-8 9-14 18.5t-7 20.5q0 19 8.5 44t8.5 53q0 100-87 167t-206 67q-99 0-173-54.5T1656 2237q-71 38-172.5 59.5T1296 2318q-83 0-178.5-20.5T943 2236q-33 98-107.5 153.5T662 2445q-117 0-206.5-67T366 2211q0-25 9.5-47t9.5-45q0-22-24-50t-35.5-70-11.5-81q0-52 15-103t41-93l16-26q7-13 12-26.5t5-26.5q0-56-10.5-110.5T382 1422q0-180 73-355t207-309q-16-27-28-58t-12-66q0-54 35.5-90.5T743 507q64 0 102.5 37t58.5 42q5-80 38.5-120.5T1030 425q39 0 67 20.5t59 51.5q11-79 46-122t98-43q65 0 99 44.5t44 123.5q31-31 60.5-44t58.5-13q54 0 86 35.5t44 92.5l19 10q33-34 66.5-54t78.5-20q48 0 84 36.5t36 89.5q0 32-10.5 62t-24.5 56q132 143 203 320.5t71 357.5q0 55-10 107.5t-10 106.5q0 28 45 101t45 175q0 45-10.5 82zm-203 309q50.5-40 50.5-108 0-31-19-62.5t-51-31.5q-26 0-36.5 8t-14.5 18l-8 18q-4 8-19 8-14 0-21.5-11t-7.5-19q0-35 40-60t81-25q32 0 66 13 11-26 34-54.5t23-82.5q0-79-44.5-154t-44.5-134q0-63 10.5-114.5t10.5-95.5q0-149-57.5-300T1893 841q-56 115-87.5 143t-66.5 28q-54 0-162.5-48.5T1303 915q-97 0-164 14.5T989 977l-15 5q-22 9-44 19.5t-56 10.5q-46 0-78-26.5T738 907l-31-60q-104 114-166.5 271.5T478 1423q0 43 10.5 97.5T499 1644q0 50-44.5 125.5T410 1918q0 61 22 84.5t35 55.5q34-13 65-13 52 0 87 31t35 54q0 8-7.5 19t-23.5 11q-11 0-16-8l-11-18q-6-10-17.5-18t-33.5-8q-29 0-49.5 29t-20.5 66q0 68 53.5 107.5T662 2350q89 0 146-64.5t57-156.5q0-62-21-123t-59-103l-24-27q-25-26-42.5-57t-17.5-59q0-35 28.5-80.5T769 1527t53-158 125-51l45 1q94 0 182-42.5t154-104.5 113-62q51 0 85.5 49t98.5 88 108.5 56.5 70 59.5 25.5 166q0 70 33.5 131t33.5 100q0 29-17 60.5t-42 57.5l-23 25q-38 42-59 104t-21 123q0 92 56.5 156t146.5 64q84 0 134.5-40zM1639 2137q0-2-1-4t-1-4q0-94 35.5-175.5t81.5-127 46-66.5q0-9-34-72.5t-34-160-11-115.5-45-30-107-57-128-119q-19 12-37 27l-37 32q-66 58-114.5 81t-116 46-144.5 23l-45-1q-38 0-54 15.5t-25 81.5l-8 54q-11 76-18 97.5t-26 57.5l-13 25q-6 11-6 15 0 10 10 24.5t33 37.5l18 19q53 61 77.5 138t24.5 157q73 44 167.5 65t168.5 21q73 0 170-20t173-65zM743 708q24 44 28 52l22 47q21 47 43 79t38 32q20 0 49-17t137-49.5 243-32.5q95 0 182 18.5t175 55.5l32 16q16 9 32 9 12 0 26-12 17-35 36-68t36-69l17-31q19-33 30-59t11-45q0-10-6.5-20.5T1856 603q-30 0-54 25.5t-62.5 46T1676 695q-32 0-51-20.5t-28-85.5l-2-10q-4-15-12.5-28t-20.5-13q-28 0-62 38.5t-82 38.5q-58 0-68-94t-50-94q-42 0-50.5 94t-68.5 94q-46 0-87.5-46.5T1030 522q-15 0-23 18.5t-8 56.5q0 44-20.5 71T925 695q-50 0-101.5-46T743 603q-11 0-17.5 10t-6.5 24q0 27 24 71zm771 1053q-29-31-29-76 0-44 28.5-74.5t68.5-30.5q26 0 47.5 13t33.5 35q9 0 27-14t24-14 9 5.5 3 9.5q0 7-14.5 26.5T1677 1669l2 8q0 4 1 8 0 45-29.5 76t-68.5 31-68-31zm-429.5-1q-27.5 32-67.5 32-39 0-67.5-31.5T921 1681q0-8 1-11-18-9-34.5-24t-16.5-31q0-4 3-9.5t10-5.5 16 7l14 12q4 3 11 6l9 4q14-23 35.5-36t47.5-13q41 0 68 31.5t27 73.5q0 43-27.5 75zm340.5 221q8 5 8 16 0 26-36.5 51.5T1299 2074t-97.5-24.5-36.5-52.5q0-11 7-16t13-5q14 0 40 10t74 10q46 0 72-10t40-10q6 0 14 5zm-210-109.5q5-4.5 13-4.5 7 0 25 16t46 16 45-16 26-16q6 0 11 4.5t5 10.5q0 16-23.5 34t-63.5 18q-41 0-65-18t-24-34q0-6 5-10.5z" + }, + "children": [] + }] +}; +exports.u1F478 = u1F478; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F479.js b/dist/noto_emoji_regular/u1F479.js new file mode 100644 index 000000000..62e32158c --- /dev/null +++ b/dist/noto_emoji_regular/u1F479.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F479 = void 0; +var u1F479 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2184 2221l1 7q0 18-33.5 28t-56.5 10q-32 0-79.5-15t-78.5-15q-14 0-23.5 5t-9.5 22q0 14 7 21t7 16q0 15-44.5 23.5t-93.5 8.5q-74 0-122.5-29.5T1582 2273q-10 0-17 3.5t-7 12.5q0 16 26.5 32t26.5 30q0 15-30.5 24t-85.5 9q-24 0-45.5-7t-41.5-16l-39-18q-20-9-41-14l-59 3q-42 22-93.5 33t-99.5 11q-35 0-61.5-7.5T988 2346q0-10 3.5-22t3.5-22-6-15.5-23-5.5q-19 0-36 7l-35 14q-27 10-53 18.5t-54 8.5l-15-1q-2 0-46.5-5t-44.5-21q0-11 9.5-22.5t9.5-23.5q0-13-16-13-8 0-16 3l-14 5q-55 23-114 23-49 0-88-14t-39-42q0-7 8-7 26 0 50.5-28.5T497 2096q0-56-34-109.5T429 1880q0-22 5.5-42t11.5-40l12-39q5-19 5-40v-9q0-5-10-54t-10-91q0-76 35.5-131.5T514 1311q0-38-6.5-75t-6.5-73q0-96 35.5-178T634 833q-6-16-25.5-87T589 599q0-93 44-146t108-53q31 0 59.5 12.5T847 441l15 15q36 39 62.5 79.5T982 610q75-25 154-37.5t159-12.5q79 0 158 12.5t154 37.5q28-30 92-120t149-90q64 0 108 53t44 146q0 63-14.5 121.5T1952 840l21 29q96 143 99.5 295t43 241.5T2155 1556q0 59-20.5 104.5T2114 1730q0 33 26 80.5t26 82.5q0 44-32 110t-32 119q0 33 11 53.5t27 26.5l35 15q8 3 9 4zM783 1984q-1 20-1 40 0 89 36 132.5t123 43.5q21 0 44.5-8t54.5-8h7q40 2 77 39.5t138 37.5q65 0 133-17t101.5-38.5 79.5-21.5q20 0 40 2t38 2q46 0 90-43t48-114l3-57q5-101 37-136t35-40l3-5q37-52 55-104t18-109q0-34-10.5-83t-47.5-90l-26-27q-52-56-65-114t-37-109.5-97-70.5l-75-19q-39-10-82.5-28.5T1417 981l-9-7q-23-20-44.5-41.5T1328 889l-15 14-47.5 47.5L1160 1022q-73 33-146 33-96 0-141.5 18t-83.5 56.5-38 88.5q0 14 4 29t4 33q0 48-56 127t-56 170q0 118 68.5 207.5T784 1941q0 23-1 43zm42-380q30-34 77-34 37 0 88 43.5t134 77 171 33.5q86 0 169-33t135-77 89-44q46 0 75.5 34t29.5 78q0 46-33 119.5t-36 115.5l-4 41q-8 85-59 123t-125 38q-79 0-139.5-43t-101.5-43q-43 0-102 43t-139 43q-83 0-131.5-44t-53-122-39.5-148.5-35-122.5q0-44 30-78zm612-310q12-7 36-7 29 0 71.5-16.5t67.5-33.5l29-20q14-9 27.5-15.5t26.5-6.5q24 0 38 27t14 63q0 64-52.5 107.5T1577 1436q-78 0-115-41t-37-76q0-18 12-25zm-586.5-72.5Q864 1195 889 1195q14 0 27 7l23 13q66 45 107 58.5t67 13.5q23 0 34.5 7t11.5 25q0 42-40.5 79.5T1008 1436q-67 0-119-43t-52-108q0-37 13.5-63.5zM711 758q42-32 85-61t93-50q-7-9-60.5-80.5T741 495q-28 0-42 30t-14 82q0 38 7.5 75.5T711 758zm989-111q47 20 94.5 48.5T1877 759q8-16 17.5-70.5t9.5-81.5q0-52-14-82t-42-30q-36 0-86.5 69.5T1700 647zm-490.5 891.5q35.5 16.5 79.5 16.5 49 0 74.5-16.5t43.5-16.5q14 0 14 11 0 10-10.5 28.5T1389 1592l-9 10q-22 15-53 25t-54 10q-45 0-87-30t-42-70q0-5 1.5-10t9.5-5q19 0 54.5 16.5zM977 1722q-23 14-35.5 61.5T929 1866q0 25 5 34.5t13 9.5q11 0 68.5-47.5t57.5-73.5q0-23-30.5-45t-57.5-22h-8zm647-14q-5 0-8-1h-9q-30 0-64.5 17t-46.5 38q18 30 67 71t76 41q6 0 8.5-14.5t2.5-24.5q0-33-7-67t-19-60zm-279 416q27 5 50.5 19t23.5 34q0 6-5.5 14t-17.5 8q-5 0-9.5-1.5t-9.5-2.5l-43-4q-22-2-42-2t-32 1.5-21 3.5l-16 3q-7 2-17 2-15 0-25.5-7.5T1170 2170q0-24 34-37.5t93-13.5q13 0 25 1zm-8-170l95 24q11-17 11-54 0-34-9-58.5t-21-24.5q-21 0-47 43.5t-29 69.5zm-232 16.5q5 12.5 16 16.5l64-17q6 0 15.5-5.5t9.5-14.5q0-25-20.5-51.5T1144 1872q-26 0-35 24.5t-9 46.5q0 15 5 27.5z" + }, + "children": [] + }] +}; +exports.u1F479 = u1F479; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F47A.js b/dist/noto_emoji_regular/u1F47A.js new file mode 100644 index 000000000..c9fd0d6b4 --- /dev/null +++ b/dist/noto_emoji_regular/u1F47A.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F47A = void 0; +var u1F47A = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2334 1841q-57 201-137 320.5t-235 192-365 72.5q-118 0-248-25.5t-238-89.5l-36-21q-124-77-207.5-212.5T779 1733l-68 3q-34 2-69 2-200 0-316.5-67.5T209 1479q0-93 73.5-158t172.5-65q83 0 207.5 32.5T844 1330q50-172 145.5-326T1205 750l3-264q0-16 9.5-27t23.5-16l296-80q4-2 11-2 16 0 29 10l222 178q6 5 9.5 12.5t5.5 14.5l12 77q185 67 315.5 171.5t190 264.5 59.5 350q0 201-57 402zm-390.5 44q-45.5-24-98.5-67t-166-98q-13-16-15-52t-24-74-59-38q14 20 21.5 44.5t7.5 48.5q0 37-21.5 55.5T1529 1723q-67 0-99.5-39.5T1353 1644q-31 15-83.5 23.5t-166 30.5-222.5 29q-34 26-34 63 0 33 33.5 47t33.5 23q0 6-3 15l-7 20q-4 11-7 23t-3 23q0 17 11.5 29t31.5 12q50 0 147-98t213-98q112 0 221.5 129.5T1627 2044l34 36q36 39 65.5 60t52.5 21q19 0 27-9t12.5-30 45-30 53.5-25 13-27l-1-10q0-25 30-32t30-46q0-43-45.5-67zm339-705.5q-31.5-115.5-86.5-188t-71-72.5q-6 0-8.5 4t-2.5 8q0 11 8 22t11 16l8 19q3 9 3 20 0 13-11 23t-11 23q0 18 27.5 49t27.5 53q0 14-23.5 30.5T2130 1216q0 21 25 59t25 66q0 22-18 30.5t-18 36.5q0 33 40.5 107.5T2225 1647q0 24 3.5 48t16.5 35q37-41 46.5-108t16-109.5 6.5-100.5q0-117-31.5-232.5zM1689 575l-149-121-245 66v169l-2 11 270 74q-4-10-6.5-20.5T1551 734l-2-6q-14-52-31.5-99t-17.5-65q0-5 3-9.5t11-4.5q7 0 63.5 6.5T1689 575zm-230.5 1554q-26.5-21-51.5-21h-14l-11 1q-23 0-49.5-23t-59.5-23q-19 0-30 4l-27 12q-4 2-7 2l-6 1q-13 0-26.5-7.5t-28.5-7.5q-17 0-24.5 11.5t-7.5 25.5q0 29 51 110.5t96 81.5q23 0 59.5-13.5t44.5-16.5l30-11q35-12 61.5-32t26.5-48q0-25-26.5-46zm214.5-640q58 42 123 42 50 0 95.5-28.5T1937 1394q0-35-15.5-60t-58.5-25q-22 0-63.5 7t-77.5 7q-61 0-84 18t-23 53q0 53 58 95zm300.5-432.5Q1950 1035 1918 1035q-44 0-183 55t-139 110q0 16 17 24.5t54 8.5q57 0 111-11t136.5-27.5 82.5-83.5q0-33-23.5-54.5zm-955 256.5q24.5 30 62.5 48l68 6q34 3 69 3 33-11 55.5-31t22.5-54q0-30-49-56.5t-96.5-60-75.5-33.5q-35 0-58 45t-23 72q0 31 24.5 61zm131.5-271q29 24 65 52.5t73.5 52 63.5 23.5q23 0 29.5-13t6.5-30q-3-25-16-51l-25-48q-39-65-70-95.5t-56-30.5q-39 0-69.5 28.5T1121 996q0 22 29 46zm161-270l34 63 265 82 142-154-12-91-137 162q-9 11-25 11l-9-2z" + }, + "children": [] + }] +}; +exports.u1F47A = u1F47A; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F47B.js b/dist/noto_emoji_regular/u1F47B.js new file mode 100644 index 000000000..8d8189900 --- /dev/null +++ b/dist/noto_emoji_regular/u1F47B.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F47B = void 0; +var u1F47B = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2237 1252q-12 118-59.5 254.5t-120 281T1985 2008q0 59 29.5 85.5t95.5 32.5h23q42 0 67.5 18.5t25.5 56.5q0 84-214.5 134.5T1602 2386q-213 0-398.5-74t-319-201-204-285.5T606 1547v-13q0-6 1-12-17 5-28.5 14.5T555 1560l-22 23q-20 22-47 36t-58 14q-59 0-95-50t-36-125q0-136 99.5-237.5T619 1119h16q86-322 338-495t533-173q201 0 371 96t267.5 262.5T2242 1164q0 23-1 44zm-272.5 508.5Q2040 1612 2093 1459t53-292q0-251-186.5-436T1507 546q-256 0-484.5 160.5T721 1171l9 13 11 19q6 11 10 22t4 20q0 17-19 17-8 0-35.5-23.5T615 1215q-93 0-158 81t-65 160q0 33 9.5 57t24.5 24q23 0 74.5-56t113.5-56q43 0 66 25t23 62v17l-1 15q4 100 66 241t183 256.5 288.5 182.5 360.5 67q99 0 242.5-20.5T2077 2218q-89-11-138.5-67t-49.5-141q0-101 75.5-249.5zm-556-294.5q-97.5 52-205.5 52-114 0-194-84t-80-200q0-63 25.5-99t67.5-36q47 0 79 53t71.5 75 92.5 22q26 0 53.5-4t54.5-4q57 0 95 27t38 72q0 74-97.5 126zm413 330q-4.5 7-15.5 7-14 0-29-9.5t-29-9.5q-33 0-61 21.5t-52 49.5l-24 24q-22 22-51.5 37.5T1500 1932q-59 0-93-50.5t-34-122.5q0-132 93.5-233t210.5-101q52 0 98 26t46 67q0 8-5.5 14t-13.5 6q-11 0-19-5l-19-9q-12-5-27-9.5t-37-4.5q-93 0-165.5 76t-72.5 174q0 32 10.5 57.5t25.5 25.5q31-3 69.5-46.5t83-70.5 84.5-27q33 0 62 24.5t29 55.5q0 10-4.5 17zM1428 1134q-26-4-40.5-12t-14.5-21q0-60 72.5-111.5T1589 938q70 0 115.5 42t45.5 109q0 48-32.5 88.5T1640 1218q-34 0-76-34t-117-47zm-408.5-351.5Q1065 731 1121 731q49 0 80.5 43t31.5 100q0 67-25.5 117.5T1159 1042q-10 0-17-7l-16-15q-35-35-93.5-49T974 892q0-58 45.5-109.5z" + }, + "children": [] + }] +}; +exports.u1F47B = u1F47B; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F47C.js b/dist/noto_emoji_regular/u1F47C.js new file mode 100644 index 000000000..56e2245f3 --- /dev/null +++ b/dist/noto_emoji_regular/u1F47C.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F47C = void 0; +var u1F47C = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2292.5 2129.5Q2272 2161 2240 2175q-4 40-33 70.5t-77 43.5q-24 36-65.5 53.5T1965 2360q-29 19-60.5 31.5T1829 2404q-39 0-85-11-17 0-45 8t-63 8q-72 0-119.5-44.5T1469 2249q0-8 1-14l1-14q-43 10-86 14t-85 4-85.5-5-86.5-13q0 8 1 21 0 77-46.5 122T963 2409q-35 0-63-8t-45-8q-46 11-85 11-45 0-77-13t-59-31q-56 0-98-17.5t-67-53.5q-47-12-74.5-41.5T359 2175q-33-14-53-46t-20-67q0-82 90-133t219-51q42 0 86 6-5-13-9-27.5t-7-28.5h-11q-57 0-115.5-43.5T480 1649q0-30 7.5-59t24.5-54q-75-75-75-191 0-67 23-141.5t80.5-133.5T612 952t45.5-110 89.5-85q-19-34-19-75 0-125 164.5-199t407.5-74q241 0 406 74t165 199q0 24-6.5 45.5T1847 769q42 54 64 109.5t85 88.5 98.5 110 35.5 172q0 27-5 51t-11 44l-11 37q-5 17-5 28 0 27 6.5 54t6.5 62v13q0 6-1 12 11 22 17 47.5t6 51.5q0 88-57 133.5t-126 45.5q-10 0-14-1-5 15-9 29.5t-9 27.5q43-6 86-6 136 0 222.5 53.5T2313 2062q0 36-20.5 67.5zM541.5 1406q8.5 29 29.5 52l42 46q14 16 33.5 67.5T710 1623q8 0 8-19 0-30-3.5-41.5T711 1543q0-29 42-49.5t58.5-33.5 36.5-52l14-28q7-14 16-26-19-19-19-44 0-10 5.5-22t16.5-12q9 0 19 6l18 11q26 20 60 25.5t63 5.5h15q6 0 14-1h9q4 0 9 1l6-2q3 0 5-1 2-23 17.5-44t38.5-21q10 0 19 3l36 14q9 4 18 4 12 0 28.5-10.5t36.5-10.5q14 0 14 20 0 23-16.5 35.5T1249 1324q-15 0-31-4t-33-4q-14 0-14 11 0 22 38 59t104 37q68 0 126.5-40.5t97.5-40.5q37 0 66.5 35.5t96.5 35.5q73 0 95.5-21.5t34.5-27.5q13 0 17.5 4.5t4.5 17.5q0 26-13.5 43t-36.5 29q4 35 35 43.5t61 20.5 30 39q0 17-8.5 29t-8.5 26q0 7 8 13t17 6q27 0 52.5-40t25.5-74q0-23-6-52t-6-56q0-29 17-80.5t17-81.5q0-58-21.5-116t-53.5-78.5-66.5-42T1829 927l-22-45q-11-22-29-43-80 56-208 85.5T1300 954q-148 0-281.5-31T810 831q-47 25-69.5 58.5T708 963l-9 35q-21 77-73.5 123.5T553 1229t-20 116q0 32 8.5 61zM1548 2103.5q113-41.5 179-108t96.5-131T1861 1705q-15-7-30.5-31.5T1815 1620q0-6 1-12l2-11q-34-11-62-33.5t-39-54.5q-81 0-111-14t-74-56q-18 7-44.5 26.5T1413 1502t-102 17q-76 0-131.5-25.5T1093 1423l-1-2q-23 5-36.5 6t-26.5 1q-36 0-69-14l-8 2q-7 7-14 20l-15 30q-30 56-54.5 71.5T812 1571q2 7 2 15v16q0 37-17.5 68.5T741 1715q17 216 184 323t375 107q135 0 248-41.5zm90-1298Q1776 753 1776 682q0-72-139.5-124.5T1300 505q-196 0-336.5 52.5T823 682q0 71 138 123.5t339 52.5q200 0 338-52.5zM1015 2187q-79-29-149.5-78T744 1997q-37-11-74.5-17.5T595 1973q-77 0-144 24t-67 64q0 20 18 28.5t52 8.5q9 0 18-1h13q-14 10-23.5 23t-9.5 30q0 26 17.5 37t45.5 13l26 2q2 11 2 20 0 12 20.5 27t66.5 15q10 0 21-3l7-1q3 0 36.5 24t75.5 24q23 0 43-5.5t43-5.5q27 0 54 8t53 8q38 0 54.5-19t16.5-47q0-22-7-38.5t-12-21.5zm1122.5-67q-9.5-13-23.5-23h14q8 0 17 1 34 0 53-9t19-28q0-39-67.5-63.5T2004 1973q-38 0-75.5 6.5T1855 1997q-55 67-122.5 115.5T1581 2190q0 4-3 5-13 23-13 51t16.5 47.5 54.5 19.5q26 0 53-8t55-8q20 0 41 5.5t44 5.5q47 0 76-24t38-24l5 1q10 3 21 3 50 0 68.5-15.5t18.5-26.5q0-9 2-20l23-2q40-3 53-18.5t13-31.5q0-17-9.5-30zm-1029-1505q82.5-21 191.5-21 108 0 190.5 21t82.5 51q0 31-81 52t-192 21q-117 0-195.5-21.5T1026 666t82.5-51zM1038 1795.5q-28 29.5-65 29.5-38 0-65.5-30t-27.5-71 27-72 66-31q37 0 65 30.5t28 72.5-28 71.5zm521.5-144.5q27.5-30 65.5-30t65 30 27 73-27.5 72-64.5 29-65-28.5-28-72.5q0-43 27.5-73zM1205 2004q-54-27-54-59 0-8 5-15t13-7q7 0 15 4l12 7q24 12 51 22.5t53 10.5q49 0 89-22t51-22q9 0 14 7.5t5 12.5q0 24-44 56t-102 32q-54 0-108-27zm859 94.5q-13 16.5-27 24.5l-18 11q-20 11-22 32t-24.5 34.5-51.5 15.5q-40 0-50 20t-56 20h-12q-3 0-9-2l-13-3q-7 0-12.5-3.5t-6.5-8.5q0-8 14-10l30-3q16 0 30-6t14-23q0-2-1-5t-1-6q0-11 10-11 5 0 12.5 1.5t10.5 1.5q29 0 50-12.5t21-33.5q0-5-2.5-10t-2.5-10q0-6 33-16t33-35q0-11-6.5-16t-6.5-11q0-8 8-9l14-2q16 0 35.5 13t19.5 31q0 15-13 31.5zM800 2228l26 2q11 0 11 8t-12.5 12.5-27.5 4.5l-13 1q-44 0-55.5-20t-32-20-56.5-10.5-39-40.5q0-22-17.5-30.5t-39-27T523 2065q0-14 17.5-28t37.5-14l13 2q8 0 8 9 0 7-6.5 11.5T586 2058q0 30 33 39t33 15q0 5-3.5 10t-3.5 10q0 20 22 33t51 13q4 0 11-1.5t14-1.5q8 0 8 11 0 3-1 6t-1 5q0 8 10 18.5t41 12.5zm426.5-392.5q4.5-4.5 9.5-4.5 17 0 33 5.5t33 5.5q12 0 22-2t20-6l14-5q7-2 15-2 12 0 12 12 0 21-28 34.5t-54 13.5q-31 0-56-14.5t-25-27.5q0-5 4.5-9.5zM556 1649q2 46 22.5 75t62.5 29h10q-2-11-3-23.5t-3-24.5q-25-13-44.5-31t-29.5-38l-11-20q-2 7-3 15t-1 18zm1395 101q12 3 23 3 36 0 56.5-24.5t24.5-64.5l-14 17q-14 16-37 30.5t-49 18.5q-3 2-3 8z" + }, + "children": [] + }] +}; +exports.u1F47C = u1F47C; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F47D.js b/dist/noto_emoji_regular/u1F47D.js new file mode 100644 index 000000000..ec8652385 --- /dev/null +++ b/dist/noto_emoji_regular/u1F47D.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F47D = void 0; +var u1F47D = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2115.5 1816q-135.5 235-370 380T1300 2341q-205 0-438.5-147.5t-373-383T349 1310q0-223 118.5-411t337-295.5T1300 496q272 0 489 104t339.5 292.5T2251 1310q0 271-135.5 506zm-1010-56q39.5-32 39.5-113 0-99-52.5-195T954 1308t-175-48q-87 0-140.5 48.5T585 1451q0 89 48.5 172.5t140 126T967 1792q99 0 138.5-32zm386.5 238.5q-70-17.5-192-17.5t-191 17.5-69 41.5q0 30 87 52t173 22q95 0 178.5-22.5t83.5-51.5q0-24-70-41.5zm465.5-691Q1904 1260 1816 1260q-90 0-176 49t-137.5 144-51.5 192q0 84 40.5 115.5T1630 1792q102 0 193.5-43t139.5-126.5 48-173.5q0-94-53.5-141.5z" + }, + "children": [] + }] +}; +exports.u1F47D = u1F47D; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F47E.js b/dist/noto_emoji_regular/u1F47E.js new file mode 100644 index 000000000..8ea538d75 --- /dev/null +++ b/dist/noto_emoji_regular/u1F47E.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F47E = void 0; +var u1F47E = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1581 2179l-9 31q-9 35-27.5 56t-61.5 48l-31 18q-33 19-74 24.5t-78 5.5q-116 0-186.5-49.5t-79-86-22.5-75-75-57T814.5 1994 696 1899t-133.5-68T421 1683t-91-196.5-26-264.5q0-171 110-330t290-256 366-97q78 0 134.5 26t95.5 61q48-43 106.5-65t125.5-22q193 0 372 97.5T2189.5 893t106.5 334q0 231-61.5 363T2080 1800t-164 95-128 96.5-111 97.5-69.5 33.5-26.5 56.5zm382-1391q-73-57-157.5-94T1633 643q19 30 30 58.5t11 66.5q0 16-6.5 25t-16.5 9q-25 0-30.5-37t-29.5-76-64-46l-37-7q-41 3-78 25.5t-63 51.5v83q17-15 43.5-26t60.5-11q15 0 27.5 7t12.5 18q0 8-14 9l-24 3q-51 11-76 47.5t-30 88.5v114q27-25 71.5-38.5T1510 994q36 0 88 21.5t86 21.5q31 0 73-27t84-27q37 0 57.5 13t20.5 36-23 23q-14 0-28-5.5t-28-5.5q-27 0-57 36.5t-90 36.5q-42 0-90.5-28t-84.5-28q-52 0-93.5 22.5t-50 41-25.5 43.5v74q3 9 3 21l7-6q9-7 23-14.5t28-7.5q8 0 12 5t4 10q0 8-7 14l-12 12q-20 12-31.5 33.5T1353 1354q12 52 43.5 82t95.5 43q11-5 37.5-6t51.5-33.5 25-88.5v-22q0-15 6.5-25t25.5-10q21 0 33.5 19.5t12.5 55.5q0 40-15 67t-44 56q55 0 122.5 28t110.5 85l16 23q94-20 132.5-51t38.5-70q0-41-36.5-88.5t-79.5-81-43-83.5q0-24 10.5-45.5t30.5-21.5q8 0 14.5 6t6.5 18q0 14-4 22.5t-4 17.5q0 5 2 9l5 10q22 38 95 96.5t73 136.5v13l18-21q24-29 40.5-82.5T2197 1294q0-72-69-115.5t-69-64.5q0-8 9.5-15.5t26.5-7.5q20 0 52.5 14.5t38.5 22.5q-8-38-22-73t-31-68q-8-6-16-17t-15-22l-13-21q-23-32-75.5-57.5T1912 844q-29 0-53 12.5t-33 12.5q-8 0-13-5t-5-12q0-11 26-31.5t48-26.5 81-6zM512 927l-13 21q-7 11-15 22t-16 17q-17 33-31 68t-23 73q71-37 93-37 17 0 26 7.5t9 15.5q0 9-10 19.5t-20 17.5l-49 34q-79 57-51.5 170.5T486 1516v-7l-1-6q0-80 87.5-148t87.5-104q0-8-4-17t-4-23q0-12 7-18t15-6q18 0 29.5 21.5T715 1254q0 51-45.5 86.5T590 1422t-34 85q0 43 43 73.5t128 47.5l17-23h-1q44-59 112-86t122-27q-30-20-44.5-53.5T918 1370t11.5-55.5T962 1294q19 0 26.5 10.5t7.5 24.5q0 6-1 13.5t-1 14.5q0 53 26.5 84.5t51.5 31.5 38 6q63-13 95-43.5t42-82.5q-8-19-21-39.5t-31-37.5l-13-13q-8-7-8-13 0-5 5-10t13-5q17 0 32.5 10.5t24.5 17.5q0-6 1-11l2-10v-74l-20-36q-7-15-30-33t-55-28-65-10q-35 0-82.5 28t-92.5 28q-59 0-88.5-36.5T762 1044q-14 0-28.5 5.5T705 1055q-10 0-16.5-5.5T682 1032q0-22 20.5-35.5T759 983q44 0 85 27t74 27q34 0 84-21.5t88-21.5q44 0 89 13t73 39V932q-5-71-44-104t-70-33-31-11 13.5-18 27.5-7q34 0 60.5 11.5T1252 796v-83q-25-28-62-51t-79-26l-37 7q-39 7-62 45t-31 76-32 38q-9 0-16-9.5t-7-24.5q0-36 12-66t30-59q-88 14-172 51t-158 94q35 0 67.5 4t60.5 28l17 14q10 9 10 18 0 7-5.5 12t-13.5 5-14-4l-12-6q-17-8-31.5-11.5T688 844q-51 0-104 27t-72 56zm676.5 974q42.5-42 42.5-103l-254-134q-49 30-67 61t-18 67q0 65 52.5 108t129.5 43q72 0 114.5-42zm181.5-103q0 63 44.5 104t111.5 41q71 0 127.5-40.5T1710 1795q0-37-20-69t-65-62zm13 281.5q-43-25.5-75-25.5-37 0-78.5 29t-41.5 66q0 13 11 19.5t22 6.5q21 0 41.5-21t41.5-21q16 0 42.5 19.5t46.5 19.5q11 0 22-7.5t11-26.5q0-33-43-58.5z" + }, + "children": [] + }] +}; +exports.u1F47E = u1F47E; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F47F.js b/dist/noto_emoji_regular/u1F47F.js new file mode 100644 index 000000000..4e1d9d3fd --- /dev/null +++ b/dist/noto_emoji_regular/u1F47F.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F47F = void 0; +var u1F47F = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M884.5 2118Q705 2003 657 1822h-8q-47 0-111-42.5T474 1641q0-30 8-58.5t25-52.5q-77-74-77-190 0-66 25-144.5t80.5-133T604 953q-37-90-37-189 0-135 60.5-251T762 397q11 0 21 7t10 23q0 14-8 42t-8 65q0 45 12.5 91.5T825 713q48-16 86-14t77.5-39 103-65 133.5-24q43 0 77 9t61 21l52 22q24 11 49 14 20 0 44.5-2t54.5-2q53 0 107.5 17t99.5 48q20-38 30-80.5t10-86.5q0-45-9-66t-9-38 11-23.5 22-6.5q67 0 130.5 112.5T2019 764q0 47-7.5 97t-27.5 92q86 56 113.5 138t27.5 151q0 26-5 50t-11 44l-12 37q-5 17-5 28 0 22 6 49t6 62v15q0 8-1 15 12 23 18 48t6 51q0 96-63.5 139t-114.5 43q-9 0-19-3-45 187-224.5 300T1295 2233t-410.5-115zm-338-692q20.5 32 47 60t47.5 79 63 51q6 0 7-5.5t1-13.5q0-29-4-40.5t-4-21.5q0-26 39-46t57-31.5 42-55.5l14-28q7-14 17-26-20-20-20-44 0-11 5.5-22.5T877 1270q16 0 48 24t120 24q10 0 23.5-1t24.5-3q3-22 16.5-43.5t39.5-21.5q15 0 37.5 11t35.5 11q12 0 29-11t35-11q15 0 15 21t-15.5 34.5-41.5 13.5q-16 0-32-5t-33-5q-7 0-10 3.5t-3 8.5q0 23 37 59.5t104 36.5q66 0 125-40.5t100-40.5q34 0 65 35t71 35h25q76 0 100.5-24t36.5-24q10 0 13.5 6.5t3.5 17.5q0 28-15.5 44t-35.5 26q4 40 65 53t61 51q0 17-8 28.5t-8 25.5q0 8 6.5 13t16.5 5h7q14-3 22.5-12.5t16.5-20.5l16-21q9-12 13-26.5t4-31.5q0-28-6-55t-6-53q0-36 16.5-85.5t16.5-81.5q0-46-14-92t-29.5-68.5-52.5-44.5q-32 32-66 53t-79 21q-69 0-129-57t-60-117 53.5-106.5T1714 775q-31-20-74.5-33t-76.5-13q-20 0-41.5 2t-42.5 2q-50 0-125-33t-129-33q-36 0-82.5 11t-92 54-70 51-83.5 13l38 33q23 20 38 42t15 55q0 64-59 123.5T797 1109q-37 0-69-16t-58-42q-17 34-61.5 75.5T545 1229t-19 111q0 54 20.5 86zM2161 2176q5 16 5 23 0 21-61 34t-112 37.5-73 77-64 52.5q-23 0-55-13t-85-13q-24 0-50.5 5.5T1624 2394l-23 14q-12 7-24 12.5t-24 5.5q-24 0-29.5-9t-5.5-39q0-23 3-48.5t8-48.5q161-45 276.5-136.5T1974 1931l97-13q38-5 98.5-12t88.5-7q35 0 53 8.5t18 26.5q0 20-26.5 30t-66 34-60 55-20.5 76q0 31 5 47zm-1088 108q3 21 7 44t4 46q0 32-6 42t-30 10q-12 0-24-5t-24-12l-23-14q-19-11-43-16t-49-5q-53 0-85.5 13t-55.5 13q-41 0-62.5-52.5t-74.5-77-113-37.5-60-34q0-3 2-7l4-12q2-7 3.5-19t1.5-31q0-45-19.5-75.5T366 1999t-67.5-35-27.5-31 21.5-27.5 49.5-6.5q31 0 134.5 12.5T611 1929q53 125 175.5 219t286.5 136zm603-653l-2-11-289 88q7 35 49.5 65t91.5 30q61 0 106-46.5t45-114.5q0-5-1-11zm-728 125.5q44 46.5 107 46.5 49 0 91-30t49-65l-290-88q0 5-1 16 0 74 44 120.5zm519.5 161.5q-5.5-9-16.5-9t-56.5 25-95.5 25q-54 0-99-25t-53-25q-10 0-15.5 8t-5.5 16q0 41 61 69.5t121 28.5q67 0 116-37.5t49-60.5q0-6-5.5-15z" + }, + "children": [] + }] +}; +exports.u1F47F = u1F47F; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F480.js b/dist/noto_emoji_regular/u1F480.js new file mode 100644 index 000000000..2c0c37651 --- /dev/null +++ b/dist/noto_emoji_regular/u1F480.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F480 = void 0; +var u1F480 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1998 1384q-13 98-33 142.5t-62.5 123.5-125.5 93l-29 6q-40 8-56.5 21t-31.5 41l-14 24q-30 52-112.5 91t-274.5 39q-113 0-173-14.5t-94-73.5l-23-39h-1q-40-69-131.5-77T697 1688t-73-161-25-149q0-63 46-123.5t74.5-111T748 1028q0-11-3-20t-12-9-32.5 70-55.5 102.5-54 61.5q0-366 178.5-564T1299 471q354 0 531.5 198.5T2008 1239q-27-39-55.5-62.5T1891 1061l-16-44q-7-18-13-18-8 0-11.5 9t-3.5 20q0 68 29.5 118t75.5 113 46 125zm-875-156.5q-42-35.5-127-35.5-101 0-163.5 57T770 1388q0 67 43 113.5t119 46.5q106 0 169.5-71.5T1165 1325q0-62-42-97.5zm264.5 345.5q-15.5-43-21-62.5t-30-35.5-41.5-16q-50 0-88 75t-38 147q0 45 57.5 50t67.5 5l13 1q51 0 73.5-14.5t22.5-48.5q0-58-15.5-101zm393.5-71.5q44-46.5 44-113.5 0-82-62.5-139t-163.5-57q-85 0-127 35.5t-42 97.5q0 80 63.5 151.5T1663 1548q74 0 118-46.5zm29 566q-20 77.5-61.5 133t-92 77T1517 2339t-150 40q-29 0-59-5l-57-9-122-16q-101-12-179.5-67.5t-107-111-50-166.5-21.5-157q0-23 9-33.5t23-10.5q26 2 48.5 26.5t26.5 81 60 100 209 43.5l85-2q93-2 155-8.5t135-11 112.5-29.5 47.5-72 23.5-89 49.5-42q39 0 57 30t18 70q0 90-20 167.5z" + }, + "children": [] + }] +}; +exports.u1F480 = u1F480; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F481.js b/dist/noto_emoji_regular/u1F481.js new file mode 100644 index 000000000..8ec254900 --- /dev/null +++ b/dist/noto_emoji_regular/u1F481.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F481 = void 0; +var u1F481 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2187 1481q96 6 150 41t54 88q0 88-134.5 138.5T2057 1852l2 11q0 6 1 12-5 45-27.5 71.5t-53 60-65.5 66.5l-124 122q-68 68-130 98t-126 30q-24 0-43-1l-23-1q0 25-30 73t-88 79l-43 22q-46 24-124.5 40.5T1001 2552q-144 0-254-28t-166.5-70.5T461 2400t-107.5-40.5T309 2285q0-12 4.5-28t43.5-101l41-90q106-232 120-312.5t38.5-147.5 44.5-87q-63-48-108-112t-65-139q-22-28-37.5-71.5T375 1108q0-64 14-117.5T442 859v-47q0-240 148.5-387T992 278q162 0 278.5 74.5T1441 548t54 242q0 38-7.5 66t-18.5 48q27 55 41.5 114.5T1525 1141q0 119-52 217t-144 165q46 56 96 140.5t66 106.5l20 27q19 29 37.5 49t28.5 20q19 0 68.5-46.5t92-112 85-68.5 50.5-59 53-125 90-69q43 0 84 46t54 47zm-882.5 805q-29.5-35-33-67.5t-3.5-62.5q0-58 28.5-152.5T1325 1859q0-56-15-83.5t-18-33.5q-28 75-76 105.5t-85 30.5q-40 0-94-30t-68-30q-11 0-25 9l-33 20q-18 12-39.5 21.5T825 1878q-55 0-109.5-44T639 1731q-8 21-16.5 60t-8.5 72q0 56 40.5 147t40.5 174q0 38-14 79.5t-26 59.5l-6 11q-3 6-3 13 0 9 7 13l13 10q41 33 124 50t187 17q179 0 268-40.5t89-66.5q0-9-29.5-44zM550 1220q29 127 146 205.5t272 78.5q180 0 303.5-102.5T1395 1141q0-70-25.5-135T1301 883l-503 216q35 4 52.5 24.5T868 1174q0 37-26 59t-58 22q-35 0-57-23t-22-57q0-20 11-39zm23-512q72-57 183-88.5T977 588q143 0 246.5 49T1373 764q-23-175-117.5-269.5T992 400t-281.5 82T573 708zm1295 1256q5-5 38.5-36t33.5-54q0-16-15.5-30.5t-45-39.5-50.5-25q-12 0-35 31.5t-97 105.5-118 74q-18 0-36.5-12.5T1509 1949l-22-22q-9-8-34.5-36.5T1416 1860q-5 20-14.5 85t-8.5 62l-1 18q0 68 49 126.5t113 58.5q43 0 103.5-44.5T1796 2039zM695 1577q0 5-1 16 0 69 42 127.5t91 58.5q28 0 75-41t67-41q12 0 29 12l36 28q19 15 40.5 27.5t45.5 12.5q44 0 81.5-52.5T1239 1615v-19q0-9-5-17-60 27-126.5 42T968 1636q-75 0-143.5-15.5T695 1577zm1592 49q-11-47-62-47-12 0-27.5 1t-32.5 1q-93 0-104.5-44t-35.5-44q-29 0-53.5 90t-35.5 110v10q18 11 34.5 23.5t31.5 28.5q48-33 120.5-56.5T2232 1662t55-36zM567.5 2025q-15.5-49-27.5-57-3 19-52 137.5T416 2260q18 13 48.5 28.5T513 2304t44-50 26-121q0-59-15.5-108zm526-793q-25.5-23-25.5-59 0-32 21.5-54t60.5-22q38 0 59.5 23t21.5 55q0 35-22.5 57.5T1151 1255q-32 0-57.5-23z" + }, + "children": [] + }] +}; +exports.u1F481 = u1F481; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F482.js b/dist/noto_emoji_regular/u1F482.js new file mode 100644 index 000000000..70f9b4485 --- /dev/null +++ b/dist/noto_emoji_regular/u1F482.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F482 = void 0; +var u1F482 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2028.5 2444.5Q2006 2486 1910 2506t-171 27l-136 13q-54 5-106 7t-105 2q-103 0-250.5-12.5T911 2513l-31-7q-27-5-54-14t-44-22q-17 5-32 7t-32 2q-166 0-168-53t-2-130q0-156 5-259.5t8-128 15-54.5l27-69q10-28 12-108t2-114q0-40 1-77v-106q0-35 11.5-47t33.5-12q30 0 43 12t13 40q0 14-2 29.5t-2 26.5l3 170q0 97 5 153.5t27 98.5l30 59q13 29 18.5 74.5T804 2095l22-38q11-19 25-37-4-9-4-22 0-52 49.5-86.5T1012 1877q14 0 28.5 1t28.5 6q0-12 2-25.5t9-23.5q-59-54-92-125.5T955 1553q0-16 3-33-43-24-61-46t-35-73.5-40-263T799 706q0-208 69.5-307t193-150 326.5-51 328.5 53T1908 402t66 304q0 145-9 279.5t-32 316.5-107 211q3 21 3 40 0 85-33 156.5t-92 125.5q7 10 9 23.5t2 25.5q14-5 29-6t27-1q56 0 111 34.5t55 87.5v10q0 6-3 11 45 61 81 148t36 174q0 61-22.5 102.5zm-93.5-197q-12-45.5-24-68.5l-27-59q-14-28-33-54-8 0-17-3l-17-4-60-13q-42-9-68.5-30.5T1662 1951q-57 25-117.5 40.5T1466 2007q-24 0-31-13.5t-7-35.5v-11q-10 0-18 1h-35q-9 0-19-1v11q0 20-7 34.5t-31 14.5q-19 0-87.5-18t-107.5-38q0 42-27 64.5t-68 30.5l-59 13-17 4q-10 2-19 3-35 54-65.5 127.5T837 2327q0 40 26.5 61.5T930 2410q35 0 40-19t20-97 35.5-103.5 45.5-25.5q11 0 14 5.5t3 14.5q0 13-3 31l-8 41q-5 23-8.5 48t-3.5 50q0 51 30 75.5t116 24.5q40 0 80 1t83 1h82q39 0 81-2 11 0 23.5 1t26.5 1q74 0 103-25.5t29-77.5q0-25-3.5-49.5t-7.5-46.5l-8-41q-4-18-4-32 0-9 3.5-14.5t14.5-5.5q32 0 52.5 42t32.5 106l11 62q4 23 13 29t32 6q38 0 65-20t27-62q0-35-12-80.5zM1624 1757q94-81 94-204v-19l-3-18q-67-55-140.5-68t-227.5-13q-91 0-162.5 17t-114.5 53q-2 11-3 21.5t-1 26.5q0 121 94.5 203t231.5 82q138 0 232-81zm-133-147q-21-15-21-45 0-26 17-44t50-18q31 0 49 18.5t18 43.5q0 23-18 41.5t-50 18.5q-24 0-45-15zm-197.5-1q-20.5 16-45.5 16-28 0-47.5-17t-19.5-43q0-24 17-43t50-19q32 0 49 17t17 44q0 29-20.5 45zm95.5 722h10q20 0 38 11.5t18 33.5q0 15-14.5 27.5T1407 2416q-27 0-45-11t-18-30q0-17 13-29.5t32-14.5zm0-289h10q20 0 38 11t18 32q0 19-18 30.5t-38 11.5q-19 0-37-11.5t-18-31.5q0-16 13.5-28t31.5-14zm-1 145h9q20 0 39 10.5t19 33.5q0 15-14.5 27t-33.5 12q-27 0-45-11t-18-30q0-15 14-28.5t30-13.5z" + }, + "children": [] + }] +}; +exports.u1F482 = u1F482; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F483.js b/dist/noto_emoji_regular/u1F483.js new file mode 100644 index 000000000..9e605d169 --- /dev/null +++ b/dist/noto_emoji_regular/u1F483.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F483 = void 0; +var u1F483 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2020 1843q-46 48-98 48l-25-2q-23-5-46-5-44 0-69.5-20.5t-62.5-42-37-72.5q0-14 5-32t12-29l20-29q4-6 4-12 0-13-13-22t-13-23q0-20 1-39.5t1-39.5q0-105-25.5-134t-48.5-29q-18 0-25 26t-7 64q0 41 10 123.5t34.5 132 24.5 76.5q0 11-8 18l-19 15q-9 7-18 19t-9 31q0 70 51 105.5t118 48 109.5 32.5 57.5 98q0 13 8.5 14.5t32 24.5 23.5 53q0 14-4 25t-9 20l-10 18q-5 8-5 15-9 92-33.5 126.5t-62 54.5-135.5 20q-14 0-31.5 3t-36.5 3q-30 0-51.5-12t-21.5-32q0-16 12-34.5t23-21.5l13-3q6-2 11-4.5t6-7.5q0-6-9-14.5t-21-16.5l-40-26-58-31q-20-10-88-59.5t-102.5-84-55-63-35.5-58-27-61.5l-4-19q-12-45-23-70.5t-20-25.5q-14 0-70 60t-56 125q0 32 11 59l21 57q11 34 18.5 70t19.5 70l4 12q2 6 2 13 0 14-12.5 29t-49.5 24l-16 4q-6 2-8.5 5t-2.5 9v42q0 39-20 52t-68 13q-24 0-30-10.5t-12-11.5q-7 0-66.5 24T700 2552q-79 0-122.5-15t-43.5-42q0-32 48.5-49t66-28 41.5-21q-2-7-11-7h-8q-25-2-46.5-19.5T603 2332l2-30q5-36 13-80t18-89l20-87q11-51 25-100.5t58.5-101T784 1782q0-27-45-38.5t-45-48.5q0-71 68-171t68-172q0-23-16-81t-71-168l-57-112q-50-99-55.5-191T625 619q0-81 20-106t22-34q0-19-7-35t-7-41q0-56 50.5-99.5t67-54.5 56.5-67.5 89-56.5q44 0 80 37t40 89 4 118v27q0 13-2 27 35-36 79-51t94-15q78 0 173 33.5T1546.5 496t75.5 155l6 81q0 23 1 39 0 53-6.5 85.5T1612 893t-18 36-34 59q65 13 201 87t204 204 68 241q0 20-3 43.5t-3 46.5q0 34 19.5 66.5t19.5 65.5q0 53-46 101zm-523 15.5q-4 1.5-9 1.5l-56 10q-29 6-58 6-33 0-51-14t-25-38l-10-31-15-41q-8-21-13-52.5t-31-31.5q-10 0-19 1.5t-17 1.5q-37 0-72.5-4t-73.5-4q-54 0-94.5 43.5t-131 169.5-90.5 395q0 34 18 45.5t91 11.5q17 0 33.5-1t33.5-1q15 0 31 2t32 2q21 0 35-6t14-19-8-28.5-26.5-82T966 2082q0-85 56-161.5t89.5-93 33.5-29.5q0-5-2.5-9.5t-2.5-10.5q0-8 4-11t9-3q8 0 16 3l13 6q49 24 83 70t68.5 131 81.5 142.5 80.5 75 110 69.5 100.5 66 46 14q49 0 81.5-47t32.5-97q0-67-26-78.5t-86-28.5l-55-16q-88-25-121.5-63.5t-45-96-28.5-57.5q-3 0-7 1.5zm282.5-327.5q-1.5 10-1.5 21 0 20 13 25.5t50 5.5h93q2-8 4.5-21t2.5-27q0-98-63.5-220t-176-178.5T1537 1080q-14 0-20 8t-6 16q0 15 11 31t11 32q0 27-52.5 44.5T1392 1234t-36 37q-4 42-12 86.5t-8 84.5q0 58 5 116.5t12 137.5 47 79q35 0 99-20.5t64-33.5-17-39.5-33.5-118T1496 1421q0-89 12.5-129t39.5-40q82 0 139.5 30.5t75.5 75.5 18 155q0 8-1.5 18zM1523 857q-3-23-5-78t-25-89l-4-7q-19-23-50.5-30.5T1378 645t-57 3-57 3q-51 0-94.5-8.5T1110 634q-53 0-85.5 55.5T992 801q0 102 77 168.5t191 66.5q100 0 171-50t92-129zm-527 614l-4 24q-2 13-2 26 0 32 21.5 49t74.5 17l151 3q7 0 7-1 0-81 7.5-162t25.5-159v-7q0-7-4.5-10.5t-10.5-3.5q-21 0-35.5 10t-27.5 10q-17 0-42-21.5t-53-37.5-43.5-27.5-26.5-11.5q-9 0-12.5 7.5t-3.5 14.5l1 21q0 63-7 128zm-162-424l26 40q13 21 24.5 44t20.5 52l8 20q6 16 6 27 4-7 11-21.5t14-30.5l11-28q5-13 5-18 0-10-27.5-30.5T905 1062q0-13 19.5-31.5T970 999q-34-41-52.5-91T899 801q0-11 1-20t3-19q-5-20-7.5-40.5T893 680q0-11 1.5-22t1.5-24q0-11-3.5-21.5T878 602q-8 0-16 2t-13 2q-18 0-34.5 1t-36.5 1q-8 0-16-3t-17-3q-7 0-11 7t-4 15l1 18v51q0 108 33.5 203t69.5 151zm-54-558q23 14 54 14 47 0 69.5-17.5t30.5-42 8-94.5q0-13 2.5-31t2.5-35q0-26-8-44t-25-18q-12 0-21.5 14T878 270l-7 23q-5 17-16.5 26T830 334l-27 13q-19 9-32.5 38T757 438q0 37 23 51zm1163.5 1185q-27.5-18-62.5-18-36 0-52 5t-37 30-21 41q0 23 26 26.5t31.5 20.5 38.5 21l28 2q34 0 55-15.5t21-50.5q0-44-27.5-62zM1419 846.5q-17 14.5-40 14.5-20 0-37-14t-17-38q0-20 14-34.5t40-14.5q21 0 39 13.5t18 36.5q0 22-17 36.5zm-239.5.5q-16.5 14-38.5 14-23 0-39-14.5t-16-36.5q0-17 13-33.5t42-16.5q20 0 37.5 12t17.5 36q0 25-16.5 39zm87.5 323l26-26q13-13 26-20l-28 2q-15 2-31 2-52 0-98-12 0 5 9 46.5t34 41.5q17 0 32.5-10t29.5-24z" + }, + "children": [] + }] +}; +exports.u1F483 = u1F483; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F484.js b/dist/noto_emoji_regular/u1F484.js new file mode 100644 index 000000000..723850a20 --- /dev/null +++ b/dist/noto_emoji_regular/u1F484.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F484 = void 0; +var u1F484 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2176 1916q7 11 54.5 84t47.5 142l-1 21q-15 170-161 290t-321 120q-51 0-96-11.5t-100-45.5-108-85.5-98-108.5-98.5-113-122.5-146.5-89.5-114.5-20.5-67l1-47q0-62-43-113.5t-50-60.5l-132-161q-64-78-81.5-110.5T734 1329l-5-34q-7-42-20-58.5t-38-49.5l-60-77Q400 836 360.5 741T321 548q0-129 55.5-210T533 257q141 0 272 104t254.5 290.5T1207 868l6 9q14 15 50 21t94 54.5 166.5 204.5 125 168 62.5 22.5 107 82.5l98 112q48 55 92.5 119t85.5 128zm-948-191q103-4 215.5-86t112.5-162q0-57-76.5-169T1352 1115t-83-81q-20 0-30.5 56.5t-48.5 112-109.5 90T951 1327l-29-1q-25 0-36 12t-11 21q0 12 10.5 25t20.5 24l100 119q90 108 120 153t102 45zM787 484Q679 367 570 367q-59 0-94 40t-35 105q0 125 96.5 213.5T759 814q58 0 97-30.5t39-80.5q0-102-108-219zm994 1975q17 0 37.5-5t20.5-18q0-10-11-24l-341-385-28-29q-15-14-33-14-7 0-30 3l-55 9q-7 0-14 1h-27q-10 0-16 4t-6 10q0 21 73.5 99t76.5 82l74 91q68 84 136 130t143 46zm-295.5-596.5q128.5-53.5 192-139.5t63.5-170q0-33-12-65.5t-63-32.5q-8 0-16 4t-16.5 60.5T1568 1645t-146 114-162 52-83.5 17.5-10.5 30.5q0 22 16 39.5t65 17.5q110 0 238.5-53.5z" + }, + "children": [] + }] +}; +exports.u1F484 = u1F484; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F485.js b/dist/noto_emoji_regular/u1F485.js new file mode 100644 index 000000000..88cce8cf1 --- /dev/null +++ b/dist/noto_emoji_regular/u1F485.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F485 = void 0; +var u1F485 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2473 1820q-23 30-51 53l-131 113q-249 214-444 307t-374 93q-79 0-161.5-19.5T1218 2325q-24 3-51 3-99 0-190.5-82.5T885 2068q0-79 90-161.5t234-196.5 271-153q108-138 262-250t330-204l254-134 43-23q7-3 17-10.5t20-7.5q19 0 29.5 23.5t11.5 48.5v17q0 19-49.5 40.5t-297 152-367 223T1614 1547q84 37 121.5 88t37.5 140q0 117-88 245t-174 182l-34 21q-16 11-27 21t-11 18 9.5 9.5 20.5 1.5q92-2 221.5-51t311.5-189l243-183q10-8 87-76.5t125-68.5q16 0 27.5 11.5t11.5 36.5q0 37-23 67zM704 1658.5Q614 1597 602.5 1526t-58.5-71q-6 0-12 1t-13 1q-19 0-34-10.5t-28-32.5l-14-22q-78-116-140-238L177 910q-3-6-38.5-72T103 722q0-22 10-37.5t32-15.5q26 0 33.5 21.5t82 158T390 1097t81.5 174 71.5 62q35 0 65-24t30-58q0-25-15-60.5T462 880 282.5 548.5 249 451q0-22 11.5-31t25.5-9 25 6.5 24 24.5l12 17q37 53 70 108t63 112l60 114q174 337 204.5 391.5T775 1281q0 15-4 27t-8 22l-8 20q-4 9-4 18 0 17 15.5 30.5T802 1420l23 9q54 22 114.5 38.5T1059 1484q39 0 77.5-7t77.5-7q20 0 29 8.5t9 20.5q0 54-95.5 137.5T918 1720q-124 0-214-61.5zm877-4q-23-8.5-42-8.5-89 0-204 87t-235 179.5T980 2075q0 16 12 40.5t30 24.5q14 0 52-36.5t250-211.5 246-191 34-29q0-9-23-17.5z" + }, + "children": [] + }] +}; +exports.u1F485 = u1F485; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F486.js b/dist/noto_emoji_regular/u1F486.js new file mode 100644 index 000000000..f5fc2ced4 --- /dev/null +++ b/dist/noto_emoji_regular/u1F486.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F486 = void 0; +var u1F486 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2515 520l-1 35q-3 75-14.5 238.5T2483 1042l-7 122q-3 54-3 80 0 67 13 174.5t13 173.5q0 130-36 319t-165 325-249 136q-86 0-152-31.5t-89-83.5q-40 34-116.5 77.5t-188.5 70-204 26.5q-132 0-274-47.5T790 2259q-25 54-89 83.5T555 2372q-121 0-249.5-132T139 1917.5 101 1594q0-64 13-166t13-165q0-10-3-58l-16-268-10-157q-3-51-6.5-115T86 555l-1-35q0-30 16.5-49t44.5-19q46 0 60.5 41.5t26.5 243 23 336.5 11 238q0 67-16.5 172T234 1657q0 247 108.5 420.5T571 2251q51 0 80.5-25t29.5-60q0-48-52-117t-77-126-25-97q0-24 10-32.5t25-8.5q28 0 62 49.5t73 49.5q38 0 52.5-16.5T764 1833q0-11-7.5-35.5T634 1609t-146-275-34-576l-1-208q0-55 19-76.5t54-21.5q29 0 46.5 18.5T590 518v74l2 125q24-40 132-128.5t264.5-144T1319 389q198 0 378 72t313 201V518q0-22 15-44t50-22 54 23 19 86v95q0 171-7 380t-30 299.5-108 218-126 185.5-41 94q0 18 14.5 34.5t52.5 16.5q39 0 73-49.5t62-49.5q16 0 25.5 8.5t9.5 32.5q0 41-25 96.5t-77.5 127T1918 2166q0 35 30 60t79 25q119 0 229-173t110-416q0-68-16.5-172.5T2333 1318q0-115 12-249t23-333.5 25-241.5 61-42q18 0 39.5 15.5T2515 520zm-684 1528l11-21q5-10 9-19.5t4-15.5q0-8-14.5-8t-46-12-51.5-43-20-66q0-26 8.5-55.5t24.5-64.5l22-45q31-65 66-129t55-92l22-34q-141-116-287-165.5t-293-49.5q-161 0-328.5 57T685 1452l9 15q-2-3 30 48.5t70 125.5l29 57q37 71 44.5 102.5t7.5 57.5q0 61-38 92t-65.5 32-27.5 10l17 38 25 51q9 16 41.5 50.5t81 69T1012 2260q68 31 141.5 46.5T1299 2322q174 0 326.5-84t205.5-190zM877 689l40 42q152 161 295.5 256.5t225 112.5 190 47 293.5 158q32 22 53 38 18-42 25.5-168.5T2007 937v-43q-51-106-105.5-152.5t-130.5-95-198.5-85T1312 525q-164 0-306 52t-142 86q0 14 13 26zM593 970q0 14 1 39l2 56q0 31 3 64l8 118q2 47 8 67.5t26 62.5q73-66 223-136t247.5-88.5T1218 1134t9-10q0-18-55.5-51.5T1016 956 860.5 798.5 774 724q-32 0-73 40.5T631 852l-27 44q-5 9-8 26.5t-3 34.5v13zm867.5 1033q5.5 9 5.5 17 0 36-48.5 66t-117.5 30q-66 0-116-30t-50-65q0-9 5-18t16-9q16 0 39.5 21t66.5 32 84.5-1 62.5-32 37-20q10 0 15.5 9zm271-317.5Q1686 1717 1626 1717q-61 0-106.5-31.5T1474 1621q0-11 8-18.5t19-7.5q15 0 46 30t79 30 78-30 45-30h7q7 2 14 9t7 17q0 33-45.5 64.5zm-637-.5q-45.5 32-105.5 32t-105.5-32-45.5-64q0-11 8.5-18.5t19.5-7.5q15 0 45 30t78 30 78-30 45-30q13 0 20.5 6.5t7.5 18.5q0 33-45.5 65zm123 213.5q6.5-3.5 12.5-3.5t12 3l13 6q8 4 18.5 7t26.5 3q27 0 44-9.5t24-9.5q5 0 12.5 3.5t7.5 10.5q0 14-26 31t-62 17q-38 0-63.5-16.5T1211 1909q0-7 6.5-10.5z" + }, + "children": [] + }] +}; +exports.u1F486 = u1F486; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F487.js b/dist/noto_emoji_regular/u1F487.js new file mode 100644 index 000000000..61d446f1b --- /dev/null +++ b/dist/noto_emoji_regular/u1F487.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F487 = void 0; +var u1F487 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2407 2085l20 30q9 15 15.5 28.5t6.5 23.5q0 36-58 36-76 0-149-38t-90-53.5-30-15.5q-6 0-12 6.5t-6 19.5q0 14 13 36l28 46q15 25 28 47.5t13 36.5q0 17-21.5 25.5t-61.5 8.5q-26 0-49-3l-31-4q-35-6-70.5-15t-66.5-26q-83 117-252.5 190.5T1292 2538t-341-72.5T697 2275q-31 17-65.5 25.5T563 2315l-31 4q-23 3-49 3-41 0-62.5-8.5T399 2288q0-11 13-33l28-47q15-24 28-47.5t13-37.5q0-12-6-19.5t-12-7.5q-13 0-29 15.5t-89.5 53.5-150.5 38q-26 0-42.5-9.5T135 2167q0-27 39.5-74.5t90.5-170T368 1557t108-375 134.5-230.5 174.5-166 202-106 212-53.5q46-6 94-6 59 0 97 8.5t96 42.5 58 70q0 22-27 47.5t-66 46.5l-51 28q-56 30-88.5 64t-32.5 73q0 50 42 79.5t108 29.5q97 0 206-37t171-69.5 94-32.5q40 0 67 70.5t66 113.5 93 71q49 129 109.5 413t171.5 447zm-625 133l39-52q33-69 48-166.5t15-221.5q0-69-5-146t-11-133l-8-61q-20 18-57.5 36.5T1732 1493q-21 0-40-15t-19-33q0-57-6-67.5t-30-10.5q-60 0-168 61.5T1160 1549l-18 5q-18 6-40 10t-40 4q-22 0-36-6.5t-14-23.5q0-25 49-68.5t49-65.5q0-9-8.5-15t-22.5-6q-50 0-114.5 40.5t-134.5 71-114 30.5q-5 52-9 116.5t-4 136.5q0 223 46.5 349T952 2341t340 88q159 0 297-69t193-142zm646.5-1800q-35.5 17-35.5 78v27q0 70-59.5 113T2193 679q-17 0-30.5-1t-30.5-1q-33 0-57.5 32t-27.5 35l22 27q20 28 31 34.5t23 6.5q18 0 32-2t34-2q90 0 154.5 52t64.5 134q0 62-50 111.5t-111 49.5q-52 0-105-36.5T2041.5 975 1919 831q-187 105-293.5 139t-128.5 37.5-68 3.5q-16 0-33-1t-17-7q0-10 8.5-15t160.5-96 237-148l-136-85q-73-46-171.5-102t-98.5-70q0-4 10.5-6.5t40.5-2.5q98 0 225 48.5T1919 657q9-3 44.5-32t76.5-111l33-64q28-55 65-84t91-29q20 0 47.5 3.5t48.5 3.5q28 0 27-37t40-37q27 0 49.5 18.5T2464 338q0 63-35.5 80zm-975 1731.5q5.5 8.5 5.5 16.5 0 37-49 66.5t-117 29.5q-67 0-116.5-29.5T1127 2167q0-9 5-17.5t16-8.5q17 0 52.5 29t91.5 29q58 0 93.5-29t52.5-29q10 0 15.5 8.5zm717.5-1122q30 25.5 63 25.5t56.5-18 23.5-50q0-42-34-65.5t-84-23.5q-23 0-39 16.5t-16 42.5q0 47 30 72.5zm121-572q-22-20.5-48-20.5-44 0-73.5 28t-29.5 71q0 27 17.5 43t45.5 16q43 0 76.5-25t33.5-63q0-29-22-49.5zm-1204.5 1376Q1042 1863 982 1863t-105.5-32-45.5-64q0-11 9-18.5t20-7.5q15 0 44.5 30t77.5 30 77.5-30 44.5-30q9 0 19 6.5t10 19.5q0 33-45.5 64.5zm636 0Q1678 1863 1618 1863t-105.5-32-45.5-64q0-11 9-18.5t20-7.5q15 0 44.5 30t77.5 30q49 0 78.5-30t44.5-30q7 0 17.5 6t10.5 20q0 33-45.5 64.5zm-514 212.5q6.5-3 12.5-3t25 10.5 45 10.5q25 0 44-10.5t26-10.5q6 0 12.5 4t6.5 10q0 16-26.5 32t-62.5 16q-37 0-63-16t-26-32q0-8 6.5-11z" + }, + "children": [] + }] +}; +exports.u1F487 = u1F487; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F488.js b/dist/noto_emoji_regular/u1F488.js new file mode 100644 index 000000000..4cce9578a --- /dev/null +++ b/dist/noto_emoji_regular/u1F488.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F488 = void 0; +var u1F488 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1840 849l-37 1028q37 28 56 71.5t19 92.5q0 68-34.5 129.5T1748 2280l-30 78q-5 13-31 48.5t-55 61.5-66 48.5-58 30.5-80 20.5-138 12.5q-178 0-285.5-86T860 2319l-15-34-21-17q-73-57-98-116.5T701 2039q0-49 19-91t57-70L749 849q-53-32-75.5-70T651 692q0-54 26.5-92t67.5-59l47-23h-1q58-28 55-39t39-96.5T1032 236t265-61q75 0 133.5 16.5T1542 239t101.5 90.5 78.5 118 67.5 69 98.5 64 61 120.5q0 48-31.5 84t-77.5 64zm-155 59q-5 2-11 3t-12 3q-56 61-147 108.5t-233.5 103-232.5 121T916 1380l7 289q43-82 125.5-152t292.5-166l119-55q63-28 124.5-85t94.5-129zm-682-483q-18 23-29.5 48T962 519q0 33 26 44.5t96.5 29T1295 610q115 0 177-9.5t110-29.5l16-6q13-5 21-15.5t8-30.5q0-18-11-42.5t-29-50.5l-18-25q-44-54-109.5-81.5T1295 292q-98 0-164.5 27.5T1022 401zm760.5 1558.5Q1749 1958 1727 1958q-21 0-45.5 42.5T1553 2084t-264 41q-139 0-239.5-33.5T911 2011l-19-24q-10-12-20-20.5t-20-8.5q-22 0-36.5 25.5T801 2034q0 48 41 103.5t161 101.5 285 46q145 0 262.5-36.5t172.5-97 55-118.5q0-24-14.5-49.5zM1667 1419q-68 91-162.5 144t-165.5 93.5-152.5 115T1042 1949l-24 39q48 23 104.5 33.5T1255 2032h41q98-134 211-208.5t151-141.5zM840.5 772.5Q902 799 998 819.5t297 20.5q35 0 71-2l70-4q201-14 288-48t87-85q0-30-27.5-55.5T1723 614q-8 0-36 15.5t-128.5 37T1289 688q-162 0-259.5-21.5t-125.5-37-36-15.5q-32 0-60.5 30T779 701q0 45 61.5 71.5zM1601 2311q-64 39-142.5 53t-163.5 14-162.5-14-143.5-51q59 87 129.5 124t177.5 37q82 0 148-23.5t105-68.5 52-71zM903 910l2 131q26-26 67-54t101-53l-64-7q-32-3-64-9z" + }, + "children": [] + }] +}; +exports.u1F488 = u1F488; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F489.js b/dist/noto_emoji_regular/u1F489.js new file mode 100644 index 000000000..e04dcddb4 --- /dev/null +++ b/dist/noto_emoji_regular/u1F489.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F489 = void 0; +var u1F489 = { + "viewBox": "0 0 2686.2591 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2422.26 2410q-120 124-241 124-63 0-105-36t-42-93q0-14 1.5-25.5t1.5-23.5q-2-8-8.5-15t-21.5-18l-62-48-26 22-52 41q-47 37-96 59t-97 22q-56 0-93-31t-37-87q0-41 18-75t36-64l19-31q10-18 10-26 0-19-10-24t-247-204l-151-127h-1q-356-301-484.5-442t-128.5-266q0-73 24-143t72-135l-10-11q-13-16-16.5-27t-3.5-29q0-19 12-39l-442-477q-7-6-9-12.5t-2-14.5q0-16 11.5-28t26.5-12q16 0 30 14l443 477 18-6q9-2 19-2 15 0 25.5 4t16.5 9l32 32q54-27 112.5-41.5t115.5-14.5q70 0 122 17t87.5 43 122.5 126l26 30q120 139 368 469t255 343.5 26 13.5q7 0 75.5-46.5t126.5-46.5q50 0 82 37t32 93q0 47-20.5 99t-92.5 146l-19 25 48 49q25 28 34 28 14 0 29.5-3.5t35.5-3.5q50 0 87 42.5t37 110.5q0 128-120 252zm-759-539q-38 24-74 35l155 132q11 10 23 15.5t25 10.5q98-14 169-65.5t110-138.5q-6-44-48.5-103.5t-187.5-247.5l-126-163q-231-295-282-348.5t-53.5-61.5-12.5-8q-2 0-4.5 2t-4.5 5q-26 146-113 239t-162 115-97 22q-17 0-25.5 3t-8.5 11q0 4 7.5 12t19.5 18l25 24q14 13 28 27 12 3 31 3 44 0 83-15.5t57-34.5 30-19q11 0 20 9t9 22q0 23-52.5 56t-114.5 38l17 18q15 16 31.5 27t33.5 11q37 0 75-13.5t56.5-33.5 34.5-20q13 0 21.5 9t8.5 21q0 23-47.5 53.5t-108.5 39.5q17 15 32 29t32 28q51 0 88.5-16t54-33 31.5-17q12 0 21 9.5t9 20.5q0 21-45 50.5t-97 39.5l67 59q38-3 72.5-15.5t52.5-32 31-19.5q11 0 20.5 9.5t9.5 20.5q0 20-38 47t-89 41l71 60q32-4 62-18t45-30 30-16q12 0 21 9t9 20q0 24-38 48zm-878-1018q-23 33-38.5 70t-15.5 75q0 91 43 150.5t120 59.5q140 0 245-98t105-244q0-79-46-128.5t-134-49.5q-35 0-69.5 9.5t-67.5 26.5l111 118q19 19 19 48 0 45-35 76.5t-79 31.5q-11 0-19.5-4t-15.5-10zm1499.5 1420q30.5-31 30.5-71 0-21-7.5-34t-57.5-70-82-82q-31 36-64 70.5t-81 82.5q22 23 91 79t102 56q38 0 68.5-31z" + }, + "children": [] + }] +}; +exports.u1F489 = u1F489; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F48A.js b/dist/noto_emoji_regular/u1F48A.js new file mode 100644 index 000000000..ba78e7a25 --- /dev/null +++ b/dist/noto_emoji_regular/u1F48A.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F48A = void 0; +var u1F48A = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2360.5 1191.5Q2313 1311 2218 1406l-532 531q-21 22-45 29.5t-46 7.5l-362 362q-87 87-198 132.5T801 2514q-159 0-300.5-81t-225-224-83.5-305q0-123 46-233t133-197l354-355q0-23 7.5-45.5T760 1030l541-542q92-92 210-140.5t249-48.5q176 0 325 86.5t236 237 87 324.5q0 125-47.5 244.5zm-1385 1132Q1058 2289 1122 2225l415-416q-26-112-141.5-260.5t-255.5-252T897 1169l-415 416q-65 66-99 147.5T349 1906q0 189 135 320.5T801 2358q92 0 174.5-34.5zM1979 542q15 0 29-5t14-16q0-17-23.5-30t-56.5-20l-27-5q-23-4-47-6t-47-2q-94 0-179.5 35.5T1490 595l-434 434q35 7 74 20.5t106 52.5l380-381q88-88 187.5-133t156.5-45zm-679 1145q33 31 49.5 57.5t35.5 68.5l-297 297q-57 57-130.5 85.5T804 2224q-38 0-73-7l-21-4q-24-5-46-15.5t-22-24.5q0-10 12.5-14t31.5-5h15q81-13 152-52.5t129-96.5z" + }, + "children": [] + }] +}; +exports.u1F48A = u1F48A; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F48B.js b/dist/noto_emoji_regular/u1F48B.js new file mode 100644 index 000000000..5f7d69a84 --- /dev/null +++ b/dist/noto_emoji_regular/u1F48B.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F48B = void 0; +var u1F48B = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2215.5 1970.5q-124.5 31.5-199 89.5t-268 154-375.5 96q-113 0-227.5-26.5t-221.5-63-207.5-104-154.5-166-65.5-218-32.5-227-92-211.5l-26-37-32-44q-23-23-38.5-48.5T260 1110q0-57 57.5-86.5t99.5-41 110.5-59 95.5-67T732 756l54-52q91-87 181.5-132.5T1140 526q104 0 199.5 76t161 109 150 46 200 29 216.5 96 112.5 207.5T2195 1241l12 102q29 245 81 346.5t52 154.5q0 95-124.5 126.5zM1855 1704q21 1 42 3-58-68-104-191t-74.5-169-68.5-67.5-142-21.5q-127-3-194-21t-134-71.5-136-53.5q-52 0-161 49.5T681 1229q78 73 171 234.5t237.5 230.5 311.5 69q73 0 201-30t212-30q20 0 41 1z" + }, + "children": [] + }] +}; +exports.u1F48B = u1F48B; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F48C.js b/dist/noto_emoji_regular/u1F48C.js new file mode 100644 index 000000000..f84cfc533 --- /dev/null +++ b/dist/noto_emoji_regular/u1F48C.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F48C = void 0; +var u1F48C = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2479 1449q-16 28-106.5 99.5T2101 1730t-244.5 153-227.5 137.5-346.5 214T998 2400t-151 46q-72 0-128-70t-114-169-103.5-195-89-201-91-204.5-90.5-202-84.5-204.5-41.5-187q0-41 27.5-93.5t156-106T598 705l115-35 205-67q182-60 486-147t354-97 100-10q65 0 108 24t71.5 65.5 102 168 177.5 347 141 296 37 133.5q0 38-16 66zm-174-214.5q-22-57.5-49-116.5l-39-84q-14-29-56-131t-143-264l-15-25h-1q-21-34-34-49.5t-20-15.5q-5 0-7 5.5t-5 28.5l-28 241q0 3-8.5 69.5T1866 960q-26 0-40-24t-14-54q0-10 1-20t1-27q0-72 7.5-144.5T1829 549v-15h-1q0-12-6.5-22.5T1803 501q-37 6-235.5 59t-256 77-310 100T636 854.5t-189.5 75T370 989q0 17 14 24.5t100.5 38.5 223.5 71l139 41q90 27 139 45.5t108 42.5 59 79q0 11-8 16t-16 5q-39-2-75-13l-73-22-299-80q-219-59-257.5-75t-69.5-16q-8 0-16.5 3t-8.5 11q0 9 10 35.5t70.5 206.5T580 1813t143.5 279.5T799 2166t93 25q100 0 239.5-74.5t246-127.5 371.5-209 370.5-228 156.5-122 51-104q0-34-22-91.5zm-460.5 49.5q-10.5 55-36.5 149t-79 94l-34-1h-36q-253-23-340.5-89t-87.5-172q0-78 50.5-130.5T1416 1082q28 0 53.5 4t51.5 4q24 0 44-40.5t54-59 73-18.5q75 0 119 58.5t44 149.5q0 49-10.5 104z" + }, + "children": [] + }] +}; +exports.u1F48C = u1F48C; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F48D.js b/dist/noto_emoji_regular/u1F48D.js new file mode 100644 index 000000000..875b66174 --- /dev/null +++ b/dist/noto_emoji_regular/u1F48D.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F48D = void 0; +var u1F48D = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2337 847q6 15 6 32v9l-41 251q-5 28-25.5 46t-48.5 20l-158 7q-23 33-54.5 49.5T1947 1286l-104 23q-52 12-104 23 48 94 71.5 196.5T1834 1735q0 327-214.5 528.5T1056 2465q-227 0-410-102.5T359.5 2072 256 1658q0-204 100.5-376t277-268.5T1018 917q140 0 274 44l12-216q2-40 15-78.5t51-64.5l-12-170v-5q0-27 15-47.5t41-28.5l244-70q6-2 12-2h20q5 0 10 2l254 69q19 5 31 16l234 209q14 12 21 28zm-811 619q-77-146-224-228t-320-82q-149 0-287.5 73.5t-215 201.5-76.5 288q0 258 168.5 436.5T1010 2334q263 0 428-153.5t165-404.5q0-164-77-310zm203-1095l12 130 200 211 228 115 81 9-83-204-234-207zm110 654l-211-165-74 241zm-357 26l84-254-119-225zm221-232l181 142-4-171zm-49-277l-163-56 109 209zm538 544l-55-158-129 100 77 25zm-525-341l172-28-120-125zm414 387l-157-48-251 66 234-10zm1-261l-123-62 3 156zm-579-463l156 53-9-96zm755 509l-44-5 31 87z" + }, + "children": [] + }] +}; +exports.u1F48D = u1F48D; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F48E.js b/dist/noto_emoji_regular/u1F48E.js new file mode 100644 index 000000000..eeeef8670 --- /dev/null +++ b/dist/noto_emoji_regular/u1F48E.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F48E = void 0; +var u1F48E = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2381 1907v20q0 20-32 48t-58 35L782 2379q-6 2-13 3t-14 1q-39 0-71-23.5t-43-63.5L225 802q-4-8-5-16.5t-1-16.5q0-32 17.5-60.5T283 665l479-244q12-6 25.5-10t27.5-4l560 39q28 0 52 15l570 334q11 8 21.5 17t18.5 20l303 463q18 29 19 60zm-286-483l159 270-11-280zm-662-126q-42 81-97 154t-113 144l313 158zm808 567l-230-391q-13 66-21 176t-20 185zm-318-459l-389-107 99 441zm-559-190L968 936l-61 449zM859 889q-39 28-116.5 82.5T599 1076l215 264 61-448zm-45 1291l682-336-608-309zm72-1649l88 289 515 365 528 146 197-13-276-422-571-334zM418 728l445 63-77-251zm301 1411l75-665-397-489z" + }, + "children": [] + }] +}; +exports.u1F48E = u1F48E; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F48F.js b/dist/noto_emoji_regular/u1F48F.js new file mode 100644 index 000000000..6c7e79cd9 --- /dev/null +++ b/dist/noto_emoji_regular/u1F48F.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F48F = void 0; +var u1F48F = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2486.5 1773q-42.5 122-112 207T2249 2099.5t-56 76.5q0 29 28 86.5t28 84.5q0 40-58 63.5t-154.5 42.5-233.5 19q-73 0-146-8.5t-145-27.5l-52-10q-62-11-102-34t-40-60q0-25 70-99.5t70-141.5q0-8-1-15l-2-14q-11-27-120-61.5t-125-46.5l-14-8-13-8q-7-3-10-3-13 0-25 2.5t-26 2.5q-81-3-134.5-20t-82.5-17q-21 0-39 12t-18 34q0 9 13.5 50t77.5 131l31 46q4 6 49 65.5t45 99.5q0 71-180 106t-316 35q-174 0-335.5-54.5T71 2286q0-40 40-127t103-251.5 63-283.5q0-29-40.5-93T150 1365t-46-201q0-206 166.5-390T710 590q141 0 303 61t239 171.5 82 208.5l3 70q0 21 3.5 54t12.5 33q14 0 45-39.5t87.5-92T1606 970t134.5-49.5T1884 905q165 0 319 74.5t240 225.5 86 308q0 138-42.5 260zm-1239-577q-4.5-25-4.5-62 0-36-7.5-71t-27.5-35q-9 0-20.5 6.5T1164 1049l-22 17q-38 29-114 53.5t-98 24.5q-20 0-28-11t-8-28q0-11 1.5-20.5t1.5-16.5q0-14-3-19t-8-5q-9 0-24.5 15.5T831 1095l-13 18q-27 37-48.5 79.5T748 1281q0 14 1.5 29t1.5 28q0 8-13.5 17.5T707 1365q-29 0-64-54t-73-54-63.5 38.5T481 1375q0 48 34 86.5t72.5 41T626 1539q0 27-25.5 48.5T541 1623t-81.5 25.5-52.5 31-20.5 63.5-15.5 59q0 58 94.5 91.5T651 1927q73 0 82.5-48t47-75 81.5-27q45 0 119.5 28.5T1094 1834q41 0 57.5-55t16.5-84l-1-34q0-24 9.5-43.5t9.5-42.5v-21q0-17 13-37t13-35q0-21-28-47.5t-28-50.5q0-39 48-67t48-74q0-22-4.5-47zm1094 83.5q-65.5-127.5-190-201T1871 1005q-70 0-102.5 13.5T1736 1064q0 29 24 71t52 78l68 93q40 55 61.5 124.5T1963 1562q0 88-35 179.5T1816 1903t-95 78-20 21q0 14 9.5 19.5t25.5 5.5q17 0 42-6t43-13l17-6q25-8 88.5-31.5t76.5-23.5q9 0 13.5 6t4.5 12q0 24-65.5 56.5T1874 2064q8 14 22 18.5t31 4.5q83 0 206.5-67t198.5-190 75-273-65.5-277.5zm-572 53.5Q1665 1200 1641 1062q-72 37-152.5 143.5t-152.5 142-74 53.5q0 13 24.5 41t24.5 52q0 18-5.5 31t-12.5 23l-14 20q-7 10-8.5 24t-10 27-8.5 24q0 13 2 23.5t2 23.5q0 48-9 68t-9 30q0 5 2 6 7 21 18 34.5t31.5 23.5 105 36.5T1511 1936l37 22q26-12 176-136t150-256q0-100-104.5-233zM1401 790q-26-48-113.5-163T1200 406q0-96 62.5-160.5T1400 181q47 0 98 25.5t84.5 75.5 57.5 50l7-1q29-8 53.5-16t54.5-8q97 0 156.5 54.5T1971 509q0 72-56 148t-197.5 115.5T1530 832l-37 17q-8 4-18.5 11.5T1453 868q-14 0-22-20t-10-24zm-243 460q9 0 12.5 5t3.5 11q0 24-26.5 47t-54.5 23q-30 0-64.5-25.5T994 1260q0-5 3.5-10t10.5-5l8 1 30 8 17 6q6 3 13 4.5t17 1.5q22 0 37.5-8t27.5-8zm497 144q6 3 10 6t4 10q0 14-20 22t-41 10l-15 1q-40 0-65-24.5t-25-58.5q0-11 5-25t15-14q14 0 26 25.5t71 38.5z" + }, + "children": [] + }] +}; +exports.u1F48F = u1F48F; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F490.js b/dist/noto_emoji_regular/u1F490.js new file mode 100644 index 000000000..804460883 --- /dev/null +++ b/dist/noto_emoji_regular/u1F490.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F490 = void 0; +var u1F490 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2425 2349q-21 37-56 69l-46 42q-52 49-90 67.5t-72 18.5q-63 0-109.5-57t-64-102-51.5-45q-83 0-167.5-12t-192-18-144.5-10q-46 50-74.5 63.5T1299 2379q-47 0-90-26.5t-78-62-78-35.5q-18 0-38 4l-46 9-8 1-22 5q-29 8-53 12t-43 4q-56 0-85-32.5T726 2130l-1-21-71 1h-38q-71 0-103-21.5t-32-63.5q0-7 1-15t3-16v-6q3-10 3-19-26-26-34.5-52.5T436 1854q-37-32-53-73t-18-82q-26-20-46-46.5t-20-61.5q0-22 12-49-48-26-76.5-71.5T206 1373q0-14 3-29-18-21-27-46.5t-9-51.5q0-60 40-111 0-62 43.5-110.5T365 964h7q5-2 18-2 13-15 27.5-25.5T446 920q-2-11-4-18.5t-2-18.5q0-24 10.5-56.5T492 764q0-3-1-10 0-6 1-8v-6q4-61 50-109.5T653 576q23-23 53.5-35.5T769 528q25 0 48.5 7.5T861 557q19-4 40-4 0-5-1-11t-1-11q0-57 36-106.5t90-66.5l6-3 10-2h9q22-37 58.5-58.5T1188 273q25 0 48 7.5t41 19.5q10-3 19-4t18-1q30 0 65 12.5t68 38.5q17-7 34-7l10 1q22 3 38 15t26 25l5 4q16 20 29.5 41t27.5 41q41-23 99-23 46 0 87.5 16.5T1873 506q24 0 47-3.5t46-3.5q56 0 95 22.5t58 62 30.5 119.5 25 105 69.5 49l27 12 60 29q54 27 84.5 64t30.5 85q0 23-10.5 41.5T2417 1120l-3 4q-31 48-57.5 83.5T2296 1280l-19 21q0 21 1 42.5t1 43.5q10 20 19.5 51.5t9.5 62.5q0 21-6 43.5t-23 43.5q-2 14-2 29v29q0 14 1 28.5t1 28.5q0 52-3 102.5t-3 101.5q0 18 1 35t1 34q0 16-1.5 31.5t-1.5 31.5q0 87 87 134t87 93-21 83zM1187 918l-9 10q-5 5-13 5-6 0-10-3l-9-6q-13-11-28.5-16.5T1090 902q-27 0-56 18.5T999 972t-28 36.5-40 24.5-18 48l1 9q0 6 2 11 0 2 5 8l10 14q5 8 9 15.5t4 11.5q0 5-4 10.5t-9 10.5l-11 9q-12 10-18 23.5t-6 36.5q0 34 20.5 67t46 33 29.5 33 15 47l21 22q6-2 13-3t13-1h8l15-13 4-4q25-20 53.5-29t59.5-9q56 0 90.5 21.5t50.5 24.5q7-7 15.5-19t11.5-23q-2-8-3-17t-1-17q0-52 24.5-94.5t63.5-67.5q0-4 1-7-7-4-7-14 0-6 4-12l8-13q4-6 8-15t4-21q0-35-25.5-77.5T1380 985h-27q-23 0-27-27t-27.5-47.5T1251 890q-17 0-33.5 8t-30.5 20zm-99.5 1084q20.5-14 28.5-14 9 0 14 7l8 14q11 20 28 28.5t36 8.5q36 0 62.5-23.5t28-50 20.5-26.5q11 0 20.5 3.5t20.5 3.5q29 0 54-24t25-58q0-14-4.5-27.5t-4.5-27.5q0-8 3.5-12t8.5-8l9-7q7-5 12-21t5-34q0-32-16-57.5t-43.5-30.5-27.5-22q0-8 2.5-16.5t2.5-16.5q0-28-21.5-47t-45.5-19q-8 0-15.5 2t-14.5 2q-13 0-21-14.5t-27.5-24.5-40.5-10q-41 0-59 30t-26 34l-6 2q-11 0-24-5t-25-5q-32 0-51 20.5t-19 55.5q0 10 2 18.5t2 13.5q0 15-18 22.5t-33 27.5-15 61q0 25 9.5 47.5T953 1831l12 6q6 4 10.5 8.5t4.5 11.5q0 11-6 20t-6 28q0 49 21.5 80t57.5 31q20 0 40.5-14zm788.5-448q4 2 10 3t12 1q36 0 55-21t19-47q0-24-6-34t-6-21 18-17 30.5-26 12.5-43q0-50-25-64.5t-25-29.5l1-13v-13q0-28-19.5-48t-49.5-20q-7 0-16 3.5t-16 3.5l-7-2q-10-2-15.5-24.5t-27-40-57.5-17.5q-47 0-59.5 19.5T1684 1125l-9 2q-13 0-25-4.5t-25-4.5l-11 2q-25 6-47.5 24.5T1544 1198q0 14 4.5 24t4.5 22q0 15-30.5 23t-48 32-17.5 55q0 34 30.5 54.5t30.5 31.5q0 7-3 13l-17 32q-5 9-6 21 0 40 31.5 60t83.5 20q14 0 25-7t23-7q7 0 11 3.5t7 8.5l6 11q5 8 25.5 18.5t48.5 10.5q38 0 62-13t29.5-35 21.5-22h10zm-274.5-971q-15.5-7-32.5-7-34 0-50.5 23t-16.5 55q0 8 1.5 14.5t1.5 14.5q0 12-19.5 14t-41 23.5T1423 777v11.5l2 10.5q0 9 5 16t11 14l11 13q5 6 5 12 0 11-5.5 22t-5.5 19l1 11q17 11 33 26.5t32 32.5q20 0 28.5 5.5t8.5 20.5l-1 6q0 10 4 18.5t10 17.5q32-13 63-13h13q5 0 9 1 30-17 57-26.5t60-9.5q26 0 50 6.5t44 17.5q2-3 2-7v-7q0-11-3.5-23t-3.5-26l1-7h14l12 2q6 2 12 2 23 0 44.5-30.5T1958 853q0-37-12-55t-12-21q0-10 4-18l7-14q3-7 6.5-15.5t3.5-19.5q0-40-23.5-68.5T1868 613q-8 0-16 2.5t-16 2.5l-4-1q-7-2-10.5-7t-5.5-11l-3-11q-5-17-34.5-31.5T1716 542h-12q-41 0-52.5 24t-26.5 24q-8 0-23.5-7zM492 1772q5 2 7 7 5 3 22.5 8.5T539 1809q0 8-3 15t-3 15q10 55 34.5 70.5T632 1925q23 0 41.5-10t25.5-10q2 0 17 12t52 12q30 0 58-16t35-37q-20-28-28.5-59.5T824 1754q0-50 17.5-89.5T885 1602q2-20 7-41t15-41q-15-3-18.5-7t-3.5-14q0-6 1-12t1-11q0-23-22.5-41t-46.5-18l-9 1q-8 2-17 5.5t-16 3.5h-6q-5-2-19.5-17.5T701 1394q-55 0-72.5 34.5T611 1473l-8 3q-5 0-9-1.5t-14-1.5q-41 0-61.5 18t-20.5 52q0 17 6.5 30.5t6.5 23.5q0 14-24.5 26.5T462 1695q0 44 30 77zm1788 538q2-2 2-8 0-26-51.5-58t-62-76-10.5-160v-68q0-68-1.5-146.5T2154 1666q-14 8-30 13l-43 16q-16 6-25.5 11t-9.5 22q0 25 1 47t3 43l3 42q0 22 1 46 0 72-34.5 105.5T1934 2052t-132 12.5-132 5.5-83.5 48-58.5 79l189 10q137 6 231.5 19.5t109 38 50.5 84 56 59.5q16 0 37-19.5t45.5-37.5 33.5-41zm-341-400q0-45-4-88t-4-90q0-20 4.5-42t18.5-43q-11 3-20.5 5t-20.5 3q-24 32-68 50t-92 18q-38 0-69.5-11t-56.5-31q-5 2-10 2l-36-1q-13 0-27-2 3 14 5 27t2 27q0 29-7.5 54.5T1529 1842q3 12 3 26 0 7-1.5 14.5t-1.5 15.5q-13 66-55 104.5t-106 47.5q-25 42-69 68.5t-97 26.5q-30 0-57-10t-50-27q-9 3-17 4l-19 2q-58 0-109-33t-67-89q-18 12-35.5 19.5T810 2024q21 15 25.5 41t4.5 47v11l-1 11 3 16q0 3 1 10t3 15q10 0 22.5-2t25.5-5l52-13q29-5 55-9t52-4q89 0 152.5 61t93.5 61q14 0 55.5-44.5t68.5-75 55.5-73.5 67-72 66-35 119-11 100-6.5 57.5-4 51-18.5v-14zM321 1312l1 5q0 8-3 14l-6 13q-4 7-7 14t-3 15q0 30 21 55t50 34l7 2q5 0 12-2t12-2l9 2 3 3q19-36 55-60t75-29l15-21q26-29 62-44.5t77-15.5q21 0 45.5 5.5T791 1317l7-15q3-7 5-15-3-12-3-22 0-55-33.5-67.5T733 1169q0-8 3-14.5t3-12.5q0-32-34.5-65.5T639 1043l-11 1q-8 2-16 6t-16 4q-6 0-13-8l-17-18q-10-10-21.5-18t-26.5-8q-44 0-61 33t-22 34h-3q-9 0-18-4t-23-4h-10q-28 4-49.5 28t-21.5 50q0 8 3 15t3 15q0 9-12 15.5t-23 24.5-11 37q0 29 24.5 44.5T321 1312zm681-731l-11 13q-6 8-11 18t-5 23q0 27 12.5 43t31.5 20.5 19 18.5q0 9-5.5 20t-5.5 17l1 3-1 7q0 26 19 46 5-2 19.5-3.5t24.5-1.5q7 0 17 1t21 3l5 1q12 0 25 8 11-11 38.5-19t54.5-8q21 0 37 6t39 13q-3-13-3-30 0-40 15-76t45-62l6-4 7-7q3-2 8-4 5-36 19-61t31-41q-16-8-25-10t-9-21q2-3 2-10 0-34-37.5-62t-71.5-28q-17 0-27.5 9.5T1265 413q-7 0-30.5-21.5T1188 370l-5 2q-21 3-37 16t-23 36.5-13 26.5l-22-1-9-2q-33 0-58 25t-25 56q0 10 5.5 22t5.5 19q0 5-5 11zM541 898l3 8q23 5 43 15.5t35 24.5q5 0 8.5-1t8.5-1q45 0 104 37.5t73 79.5q6-45 29.5-78t61.5-55l2-1q17-42 50-70-16-22-23-46.5t-7-52.5q-46-41-52-103l-5 4-11 6-12 5q-6 3-9 3l-4-1q-9-2-21-23.5T769 627t-48.5 22.5T696 674l-6 2q-5 0-8.5-1.5T673 673h-8q-25 0-50 24t-25 51q0 15 5.5 27.5T601 799q0 10-11 13.5T559 836t-20 51q0 7 2 11zm1512-92q2 16 2 28v20q0 56-28.5 99.5t-47.5 56-25 26.5l-6 14q-3 8-8 18 53 10 89.5 51t41.5 98q23 24 36 61.5t13 67.5q0 28-8 55t-25 50l-4 6-14 15q0 5 1 9.5t1 9.5q0 33-11.5 58t-21.5 41l8-3q4-2 76-28t72-58q0-9-7-28l-15-42q-8-23-15-48t-7-45q0-71 52.5-126.5T2317 1062l6-8q2-2 4-6l4-6q-5-24-92.5-61T2111 908t-58-102zm-925 309q29-31 70-31 36 0 65 28t29 64q0 38-30.5 69.5T1186 1277q-40 0-63.5-25t-23.5-65q0-41 29-72zm686 185q26 24 26 61 0 35-27.5 61.5T1747 1449q-34 0-60.5-20t-26.5-54q0-44 28-71.5t66-27.5q34 0 60 24zM659 1735.5q-23-28.5-23-63.5 0-37 25-64t61-27q40 0 62.5 27t22.5 62q0 42-30.5 68t-60.5 26q-34 0-57-28.5zM1610 801q0-38 27.5-61.5T1702 716q38 0 64 23t26 55q0 37-29 65t-65 28q-33 0-59-21.5t-29-56.5v-8zm-435 1043q-31 0-53.5-24.5T1099 1761q0-39 23-68t62-29q37 0 61.5 25t24.5 61q0 42-28.5 67.5T1175 1844zm8-1280q26-25 57-25 41 0 62 25t21 57q0 34-27 63.5t-60 29.5q-32 0-55.5-27.5T1157 625q0-36 26-61zM737.5 950Q713 925 713 892q0-34 26.5-59.5T801 807q34 0 59 22t25 52q0 41-29 67.5T794 975q-32 0-56.5-25zM466 1202.5q23-26.5 51-26.5 31 0 51 25.5t20 60.5q0 41-23 70t-55 29q-29 0-48-29.5t-19-62.5q0-40 23-66.5z" + }, + "children": [] + }] +}; +exports.u1F490 = u1F490; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F491.js b/dist/noto_emoji_regular/u1F491.js new file mode 100644 index 000000000..163262127 --- /dev/null +++ b/dist/noto_emoji_regular/u1F491.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F491 = void 0; +var u1F491 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2503.5 2251q-39.5 107-119.5 180t-111 73q-13 0-17-11.5t-4-25.5q0-7 5.5-34t11.5-72l4-28q-66 56-152 92.5t-198 36.5q-69 0-131.5-16t-110.5-57l27 70q8 22 21.5 45t13.5 47q0 23-24 23-38 0-128-50.5T1440 2381t-92-214q-11 24-48.5 41t-80.5 17q-8 0-12-2-64 132-181 208t-299 76q-209 0-353-112.5T193 2095l-16-5q-46-14-83-52t-37-96q0-59 31.5-106.5T178 1775l8-1v-26q0-210 150.5-340T714 1278q232 0 414 133.5t182 361.5q0 35-4.5 70t-13.5 69q6 2 10.5 4t11.5 2v-17q0-180 72.5-325.5t222-226.5 320.5-81q169 0 316 90.5t222.5 270.5 75.5 387q0 128-39.5 235zM663.5 467.5q27.5-58.5 67-106t98-76.5T963 256q59 0 120.5 13.5T1218 332l34 24q20 14 35.5 23.5t30.5 9.5q17 0 35.5-11t32.5-22l34-24q61-43 124.5-59.5T1655 256q86 0 149 28.5t102.5 75.5 67 103.5T2001 614q0 139-78.5 253.5t-247 226.5-238.5 179l-51 46q-6 5-27 30.5t-40 25.5q-20 0-42-26t-26-30l-48-46q-73-70-245.5-183.5t-247-228T636 615q0-89 27.5-147.5zM337 2217.5q65 103.5 175 151t215 47.5q141 0 233.5-53t152.5-156.5 60-228.5q-34-95-80.5-155t-72-103-52.5-43q-4 0-112 45.5T667 1768l-8-1q-12 0-22-5t-10-14q0-13 21-27.5t27-20.5l14-10q16-12 26-21.5t10-19.5q0-7-13-7-18 0-36 10l-36 21-170 94-82 49q-67 41-91.5 49T272 1981q0 133 65 236.5zm1949-28.5q3-55 3-110 0-54-3.5-107t-11.5-106q-26-13-50-31l-43-32q-72-54-102.5-97t-42.5-43q-8 0-18 17t-77 63.5-199 90.5l-172 58q3 94 22 189.5t48 188.5q61 51 132.5 76t149.5 25q120 0 212-48.5t152-133.5zM483 2047q-26-4-43-24t-17-49q0-32 21-54.5t49-22.5q30 0 49.5 21.5T562 1973q0 32-22 53.5t-48 21.5zm453 57q-27-3-44-24t-17-48q0-32 21-54.5t49-22.5q29 0 48 20.5t19 51.5q0 33-21 55t-49 22h-6zm1189-199q28 0 46.5 22t18.5 54q0 28-17.5 48t-43.5 20q-27 0-48-21.5t-21-52.5q0-26 16.5-45.5t41.5-24.5h7zm-396 51q26 0 46.5 21t20.5 53q0 29-18 49t-45 20-47-20.5-20-51.5q0-28 15.5-48t40.5-23h7zM575 2188.5q4-6.5 11-6.5 6 0 12 4l12 9q20 17 48 27.5t56 10.5q17 0 33-4.5t34-10.5l13-5q7-2 13-2 8 0 12 5.5t4 9.5q0 23-37 40.5t-71 17.5q-53 0-98.5-28.5T571 2200q0-5 4-11.5zm658-170.5q-2 31-8 60t-15 58l14 3q7 2 13 2 29 0 46.5-22.5t17.5-59.5q0-25-13.5-44t-53.5-26zm803 164q7-3 15-3 5 0 7 3.5t2 6.5q0 14-29 40.5t-78 26.5q-28 0-57.5-13t-29.5-31q0-13 18-13 17 0 30.5 4t29.5 4q22 0 41.5-5.5t37.5-13.5zM162.5 1991q16.5 20 49.5 20 0-8-1-16v-16q0-29 4.5-58.5t9.5-58.5q-45 0-62 25t-17 53q0 31 16.5 51zM630 2112q0-20 18-20 8 0 13 6l11 12q6 8 14.5 13.5t24.5 5.5q10 0 17-3.5t13-7.5l10-8q5-3 12-3 8 0 12 5t4 13q0 20-22.5 30.5T703 2166q-28 0-49.5-18.5T630 2112zm1269-4q5 0 18 9t27 9q22 0 31.5-15t20.5-15q5 0 10 4.5t5 10.5q0 15-19.5 32t-48.5 17q-26 0-42-11.5t-16-23.5q0-17 14-17z" + }, + "children": [] + }] +}; +exports.u1F491 = u1F491; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F492.js b/dist/noto_emoji_regular/u1F492.js new file mode 100644 index 000000000..02db793bd --- /dev/null +++ b/dist/noto_emoji_regular/u1F492.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F492 = void 0; +var u1F492 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2170 1702q14 6 20.5 18t6.5 26v101q0 23-16 37t-33 14q-6 0-12-2l-11-4-52-26v554q0 21-14.5 35.5T2022 2470H573q-21 0-36-14.5t-15-35.5v-554l-52 26-10 4q-6 2-12 2-21 0-35-15.5t-14-35.5v-101q0-14 6.5-26t19.5-18l538-284v-53q0-5 2-11t2-11l256-558V470h-153V321h153V187h148v134h155v149h-155v315l256 558q2 4 3.5 10.5t1.5 11.5v53zm-721 668h84v-956h-470v956h88v-200q0-62 44.5-106t104.5-44q59 0 103 42t46 103v205zM275.5 433Q331 376 420 376q25 0 46 7.5t45 7.5q13 0 23-9.5t19-23.5l18-29q23-37 70.5-64.5T737 237q77 0 132.5 63T925 447q0 96-77.5 209.5T754 822t-32 52q-22 0-55-19.5t-149.5-41-175.5-57-90.5-85.5-31.5-99q0-82 55.5-139zM2307 1367.5q-73 68.5-218 68.5-34 0-68.5-2t-68.5-2h-30q-36 2-59 8.5t-42 6.5q-13 0-18-11t-5-24q0-8-1-14l-3-19q-2-9-8.5-37.5T1769 1283l-26-77q-14-38-23.5-76.5t-9.5-79.5q0-99 61-164.5t140-65.5q60 0 113 44.5t69 104 45.5 58 90 12.5 106 57 45.5 114q0 89-73 157.5zM1973 1816l-341-173v727h341v-554zM622 2370h341v-727l-341 173v554zM1807.5 314q44.5-44 93.5-44 37 0 73.5 24t53.5 61 36 37q16-2 29-4.5t28-2.5q58 0 99.5 38.5T2262 518q0 31-15 62t-38 53-62.5 36.5-112.5 23-102 21-42 12.5q-14 0-22.5-38T1811 569.5 1763 422q0-64 44.5-108zM640 1462q-41-15-70-21l-60-13q-113-24-151.5-73.5T320 1259q0-60 41-98.5t102-38.5q19 0 33.5 5t32.5 5q15 0 22.5-16t32-43.5 49.5-39 56-11.5q54 0 95 46t41 105q0 71-55.5 150.5t-66 116.5-24.5 37q-7 0-14-4l-13-7zm809 396q0 12-8.5 21t-19.5 9h-240q-14 0-22-9t-8-21v-170q0-63 45-106t104-43q61 0 105 43t44 102v174zm-239-29h61v-81h-61v81zm180-81h-60v81h60v-81zm-119-59v-86q-28 10-44.5 33.5T1210 1689h61zm119 0q0-29-17-52.5t-43-33.5v86h60z" + }, + "children": [] + }] +}; +exports.u1F492 = u1F492; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F493.js b/dist/noto_emoji_regular/u1F493.js new file mode 100644 index 000000000..63aaa3365 --- /dev/null +++ b/dist/noto_emoji_regular/u1F493.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F493 = void 0; +var u1F493 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1460 2100l-30 30q-31 33-32 31t-29.5 33-54.5 35-53-33.5-92-94.5-143-115l-157-109q-169-116-246-199.5T503 1497t-43-219q0-177 120-312.5T874 830q65 0 124.5 12.5t114 41.5 113.5 71 89 42q22 0 39-11l95-63q72-47 142-70t163-23q170 0 291.5 133t121.5 314q0 173-95 316t-307.5 282-304.5 225zM337.5 1133.5Q333 1120 333 1108l-1-9q0-120 45-208t133-137.5T669 704q23 0 47 7t24 19q0 11-4.5 13.5t-89 39-157 110.5-96 153.5-29 90T351 1147q-9 0-13.5-13.5zm1483 885.5q-5.5-3-5.5-11 0-16 40.5-38t149-111 152.5-166l28-51q13-26 24.5-43t19.5-17q9 0 14.5 12.5t6.5 25.5v13q0 58-42.5 137.5t-121 140.5-153.5 86-99 25q-8 0-13.5-3zm445.5-39.5q-75 75.5-185 90.5h-5q-10 0-22.5-2.5t-12.5-8.5q0-9 47.5-34.5t107-88.5 84.5-119.5 44-56.5q2 0 9.5 4.5t7.5 30.5q0 109-75 184.5zM491 667q-113 45-155.5 135T275 892q-8 0-12.5-17.5T258 837q0-81 55.5-151.5T496 615q18 0 33 5t15 17q0 6-7 11t-16 8z" + }, + "children": [] + }] +}; +exports.u1F493 = u1F493; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F494.js b/dist/noto_emoji_regular/u1F494.js new file mode 100644 index 000000000..fb464ec92 --- /dev/null +++ b/dist/noto_emoji_regular/u1F494.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F494 = void 0; +var u1F494 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1308 1837q-2 55-2 111l1 27v88q0 44-6 66.5t-15 22.5q-11 0-37.5-25.5T1213 2094l-73-55q-57-43-118.5-78T897 1893l-127-64q-277-141-392.5-311T262 1138q0-202 123-336t325-134q103 0 177 32t125.5 56 92.5 77l36 49q10 11 22.5 28t12.5 35q0 21-63.5 80.5T1049 1106q0 14 34.5 49.5t94.5 86.5l24 20q23 20 36.5 36t13.5 29q0 17-38.5 68.5t-56 73-17.5 41.5q0 33 48 77.5t85 75 37 64.5q0 55-2 110zm917-330.5Q2113 1673 1870.5 1815T1528 2042l-35 31q-18 16-31 25.5t-23 22.5l-19 21q-10 11-19.5 18.5t-19.5 7.5q-11 0-15-7.5t-4-17.5q0-16 8-35t35-131.5 40.5-152.5 13.5-71q0-50-40.5-109t-59.5-87-19-42q0-30 83.5-86t83.5-84q0-19-14-37l-26-32q-23-29-44.5-57.5T1381 1161l-23-30q-13-15-13-32 0-25 62.5-52.5t65.5-29.5l26-10q29-11 48-23.5t19-27.5q0-25-28-83.5t-28-74.5q0-9 4-11t57.5-38.5 135-71.5 182.5-35q195 0 321.5 140t126.5 342q0 216-112 382.5z" + }, + "children": [] + }] +}; +exports.u1F494 = u1F494; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F495.js b/dist/noto_emoji_regular/u1F495.js new file mode 100644 index 000000000..d77d29213 --- /dev/null +++ b/dist/noto_emoji_regular/u1F495.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F495 = void 0; +var u1F495 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1630.5 2047.5q-72.5 117.5-241 213t-402.5 161-409 65.5q-103 0-142-14.5t-39-48.5q0-20 23.5-53.5T444 2285q0-38-11-73.5T380.5 2099 322 1997.5t-45-80-43.5-114T218 1679q0-165 117.5-305T618 1234q90 0 181 44t152 120.5 75 81.5 28 5q5 0 10-1l9-2q22-7 96.5-32.5T1315 1424q163 0 275.5 107t112.5 267q0 132-72.5 249.5zm701-1024q-49.5 73.5-113 110T2111 1190t-187 54.5-262 34.5q-38 0-76-3.5t-75-12.5l-8-3q-29-6-48-18.5t-19-26.5q0-9 19-41.5t19-62.5q0-56-57-183.5T1360 709q0-126 87.5-223t210.5-97q69 0 141 44t105.5 113 68.5 69q33 0 63-7.5t62-7.5q118 0 200.5 75.5T2381 869q0 81-49.5 154.5z" + }, + "children": [] + }] +}; +exports.u1F495 = u1F495; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F496.js b/dist/noto_emoji_regular/u1F496.js new file mode 100644 index 000000000..1cea9dad2 --- /dev/null +++ b/dist/noto_emoji_regular/u1F496.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F496 = void 0; +var u1F496 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M657 813l-241 35 240 34-79 140 139-81 35 246 35-246 141 79-82-140 237-35-237-33 81-141-141 82-28-192q85 0 183.5 26.5T1141 683l54 38q35 24 57.5 38.5T1300 774q26 0 50.5-14.5T1407 722l53-38q90-65 192-94t181-29q51 0 97 5t88 19l-30 216-148-85 86 148-249 36 248 35-84 148 147-85 35 250h4l35-250 148 85-85-148 218-31 5 12q19 45 27.5 100t8.5 111q0 210-113 388.5T1893 1873l-140 96q-70 48-138 98t-129 107l-78 75q-10 9-43.5 48.5T1300 2337t-65.5-40.5-41.5-47.5l-39-38q-42-41-97.5-88T933 2028l-198-137q-218-151-315-257t-150.5-229-53.5-278q0-139 44.5-232.5t108-168 157.5-120T744 561l-28 192-139-81zm401 840l-121-68 70 119-202 31 202 28-69 120 120-70 30 203 28-201 121 68-70-120 204-30-204-29 69-121-120 70-30-200zm-417-97.5Q588 1489 534.5 1390T461 1214.5 438 1086t-31-52q-21 0-32 30t-11 95q0 97 44 201.5t134.5 200T673 1656q8 0 14.5-5.5t6.5-15.5q0-13-53-79.5zM2030 589q100 36 177 112.5T2337 893l-212-30 83-147-148 84zm112 837q-3-6-10-6-18 0-62 41.5t-66 61.5l-75 65q-64 55-117 108t-53 82q0 11 15 11 38 0 137.5-71t166.5-156.5 67-123.5q0-6-3-12zm-365-163l-71-40 41 71-122 18 122 18-41 71 71-41 19 122 16-122 73 41-42-73 124-16-124-19 42-71-73 41-17-122zm451 23q-5-10-16-10-19 0-35.5 28.5T2160 1354q0 15 6.5 21.5t14.5 6.5q23 0 37.5-25.5t14.5-49.5q0-11-5-21zm-1172-186l-71-40 41 71-122 18 122 18-41 71 71-41 19 122 17-122 72 41-42-73 125-16-125-19 42-71-72 41-18-122zm241 909l-71-39 41 71-122 18 122 17-41 72 71-41 19 122 17-122 72 41-42-73 125-16-125-20 42-71-72 41-18-122z" + }, + "children": [] + }] +}; +exports.u1F496 = u1F496; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F497.js b/dist/noto_emoji_regular/u1F497.js new file mode 100644 index 000000000..7d23e6661 --- /dev/null +++ b/dist/noto_emoji_regular/u1F497.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F497 = void 0; +var u1F497 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2249.5 1592q-124.5 192-359 345.5T1540 2207l-4 6-31 33q-33 36-83 62.5t-108 30.5h-28q-56-4-109-31t-111-95l-63-62q-79-74-300.5-219t-349-339T226 1163q0-172 82-326t228-247 323-93q127 0 236 34.5T1300 632q91-63 203.5-99t211.5-36q281 0 470 193t189 475q0 235-124.5 427zm-147-816Q1949 615 1718 615q-82 0-164.5 24.5T1422 694l-42 27q-20 12-39 20t-41 8q-42 0-87-32.5t-142.5-67T888 615q-232 0-389 157t-157 388q0 190 93 350t348 333l132 90q64 45 122 91t103 97l15 14q40 49 73 67t67 19h12q34 0 66.5-18.5t71.5-66.5l46-46q12-12 53.5-49.5t97.5-75.5l146-102q211-147 301-253.5t128.5-210.5 38.5-237q0-225-153.5-386zm-31.5 687.5q-81 135.5-326 303.5l-155 107q-78 54-143 114l-62 59q-7 6-34 37t-51 31q-25 0-52.5-33t-93.5-94-142-115l-156-109h-1q-171-118-247-201.5T490 1383t-42-217q0-182 120.5-313.5T862 721q78 0 154.5 19t158.5 75l43 30q42 30 52.5 35t28.5 5q38 0 103.5-53t149-82 188.5-29q171 0 291.5 132t120.5 313q0 162-81 297.5zM1030 891q-47-33-130-33-126 0-207 79.5T612 1142q0 63 21.5 127t59.5 64q15 0 27.5-15.5T742 1279l9-21 27-70q21-55 61.5-82t107-42.5 98.5-45.5 32-59q0-35-47-68zm608-42q-60 13-106 44t-46 65q0 21 12 34.5t32 13.5q35 0 62.5-33.5t60.5-56 33-51.5q0-11-11-14t-20-3h-9z" + }, + "children": [] + }] +}; +exports.u1F497 = u1F497; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F498.js b/dist/noto_emoji_regular/u1F498.js new file mode 100644 index 000000000..9245e7ebb --- /dev/null +++ b/dist/noto_emoji_regular/u1F498.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F498 = void 0; +var u1F498 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2166 1036q11 38 16.5 81t5.5 86q0 200-114.5 370T1713 1903.5 1356 2169l-72 70q-7 7-39 44t-60 37q-30 0-62-38t-38-43l-73-70q-104-100-360-272t-363.5-334.5T181 1198q0-205 142-363.5T667 676q105 0 205 31.5t185.5 95.5 101.5 67l26 2q36 0 78-33t117.5-80.5T1570 690l27 113q-52 10-103.5 29.5T1366 909l-40 28q-33 24-68.5 38.5T1185 990q-43 0-77.5-15t-86.5-53l-47-33q-81-57-155-76t-155-19q-152 0-258.5 122T299 1202t87 295 266.5 256.5 277 193T1185 2172q10-13 100-97t285-214 279.5-208.5 132-153.5 67.5-142q21-74 21-156 0-38-5-72.5t-13-60.5q59-5 82.5-16.5t31.5-15.5zm122-559q54 0 92.5 31.5T2419 592q0 27-11.5 51t-27.5 41l-17 17q-52 59-105 112t-117.5 115-163.5 62q-42 0-85-3.5t-91-3.5l-256 292q-3 3-30.5 35.5T1458 1343q-22 0-42.5-14t-20.5-38q0-22 14-40l290-365q-5-19-28-113.5T1648 631q0-29 13-62t28-55l181-250 18-23q17-22 43-38t57-16q41 0 71 26t40 74l30 147q24 7 35 19t17 24h107zm-548 163q4 35 13 73.5t17 76.5l270-332q-3-15-7-31t-6-33l-5-33q-6-38-14.5-61t-19.5-23q-6 0-13 6t-14 14l-24 31q-33 40-66 88t-82 110-49 114zm573.5-68q-13.5-4-25.5-4h-129l-278 325h1q21 0 44 2.5t51 2.5q46 0 68-8.5t81.5-72.5T2230 707.5t70.5-73T2327 592q0-16-13.5-20z" + }, + "children": [] + }] +}; +exports.u1F498 = u1F498; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F499.js b/dist/noto_emoji_regular/u1F499.js new file mode 100644 index 000000000..5b6ac0768 --- /dev/null +++ b/dist/noto_emoji_regular/u1F499.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F499 = void 0; +var u1F499 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2309.5 1517Q2186 1704 1925 1880l-141 95q-133 90-226.5 170.5t-144.5 146-116 65.5q-59 0-154-113.5T751 1936t-440.5-392.5T167 1098q0-246 164.5-430.5T738 483q109 0 217 28t252 129l22 16q18 15 39.5 28t31.5 13 26.5-9.5T1371 657l22-17q86-61 142-87.5t138-48 179-21.5q243 0 412 180t169 435q0 232-123.5 419zm20.5-348q2-15 2-37.5t1-74.5H267v21l-1 21q0 19 1 36t3 34h2060zM315 868q-14 28-24 53.5T277 980h2048q-8-32-17-59t-23-53H315zm1967 492q13-29 21.5-57t15.5-56H282q6 28 15.5 56t20.5 57h1964zm-120 189q21-26 43-55t36-58H359q17 30 37 58t42 55h1724zm-206 189q72-54 133-112H511q31 29 64.5 57t68.5 55h1312zm-271 189q19-13 73.5-50t90.5-62H752q39 29 80 56t83 56h770zM1511 679q-30 18-88.5 62t-97.5 50h916q-22-33-46-61t-52-51h-632zm-1054 0q-52 45-98 112h908q-47-18-90.5-50t-87.5-62H457zm988 1438q31-29 65-57t68-55h-556q35 27 69 54t65 58h289zm-145 141q11-4 26.5-20t27.5-31l10-13h-128q3 3 26 31.5t38 32.5zm392-1656h309q-32-11-73-15.5t-84-4.5q-41 0-75.5 4.5T1692 602zm-1091 0h307q-40-11-81-15.5t-85-4.5q-38 0-73.5 4.5T601 602z" + }, + "children": [] + }] +}; +exports.u1F499 = u1F499; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F49A.js b/dist/noto_emoji_regular/u1F49A.js new file mode 100644 index 000000000..eac6ce582 --- /dev/null +++ b/dist/noto_emoji_regular/u1F49A.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F49A = void 0; +var u1F49A = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2295 1537.5q-138 194.5-398.5 365T1519 2180q-18 20-38 38l-40 36q-3 3-47 51t-91 52h-6q-52-3-100.5-59.5T1075 2173t-261-197l-140-96q-261-179-384-366.5T167 1098q0-243 165.5-429T738 483q140 0 253.5 39t202 107 106.5 68 103-65 201-107 254-42q244 0 409.5 182.5T2433 1098q0 245-138 439.5zM1662 1942q23-17 47-33l47-31L516 638q-25 14-46.5 31T427 706zm-151 116l44-36q21-18 44-35L377 765q-34 44-61 99zm311-224l93-66L727 582q-36 0-69.5 5.5T592 603zm-388 291l18-16L285 942q-8 32-12.5 68t-6.5 72l1105 1104q2 0 8-6l27-26q5-5 11-12t17-17zm543-404q23-17 44.5-34.5t41.5-36.5l-964-966q-59-39-124-62t-131-35zm142-126q20-20 38-41t35-44l-770-770q-3 2-36 26t-72 24zm117-150q17-26 30-52t25-52l-705-705q-28 13-52 27.5t-48 31.5zm-936 813q7-3 19-15L272 1197q14 78 19.5 98.5T322 1364t63.5 101 137 152T693 1775t217.5 155 203.5 148 92 86l37 37 19 22q9 11 18.5 21t19.5 14zm1025-1038q7-48 9-103l-533-534q-34 2-67.5 8.5T1666 608l651 649zm2-219q-4-27-9-51-6-23-15-44-130-299-393-323z" + }, + "children": [] + }] +}; +exports.u1F49A = u1F49A; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F49B.js b/dist/noto_emoji_regular/u1F49B.js new file mode 100644 index 000000000..cb9b46b08 --- /dev/null +++ b/dist/noto_emoji_regular/u1F49B.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F49B = void 0; +var u1F49B = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2313 1512q-120 185-388 368l-141 95q-71 48-138 98t-127 107l-78 76q-6 5-47.5 52t-90.5 49h-6q-57-3-113-73t-163-156-264.5-190T490 1739t-180.5-198-107-206.5T167 1098q0-158 76.5-302.5t208-228.5T738 483q109 0 217 28t252 129l23 18q20 16 40.5 28t29.5 12q18 0 107.5-68T1611 522.5t247-39.5q244 0 409.5 183t165.5 432q0 229-120 414zm-412-929q-8 15-22.5 24t-31.5 9q-19 0-33.5-9t-21.5-23q-182 18-315.5 119T1300 804q-17 0-35-8t-31-18l-11-7q-34-22-141-96t-283-91q-8 14-23 23t-32 9q-18 0-32.5-9T689 584q-102 10-181.5 59T374 768t-81 148.5-27 182.5q0 201 106 364.5t352.5 333T1047 2023q0-27 18.5-46t45.5-19 45.5 19 18.5 46q0 23-15.5 40.5T1121 2086q14 10 54 49.5t58 54.5q5-20 22-34t41-14q25 0 43 17t20 41q30-30 61.5-59t57.5-55q-26 0-44.5-18.5T1415 2023q0-27 18.5-46t44.5-19q27 0 45.5 19t18.5 46l-1 11q103-83 330-235.5t344.5-319T2333 1105q0-141-36.5-216.5t-85-140-127.5-111-183-54.5zm-561 566q-19 19-45 19-27 0-46-19t-19-45q0-27 19-46t47-19q27 0 45 19t18 46q0 26-19 45zm-183.5 551.5Q1138 1719 1111 1719t-45.5-18.5-18.5-44.5q0-27 18.5-46t45.5-19 45.5 19 18.5 46q0 26-18.5 44.5zM1707 1516q-19 19-45 19t-44.5-19-18.5-45q0-27 18.5-46t44.5-19 45 19 19 46q0 26-19 45zm-550.5-183q-18.5 19-45.5 19t-45.5-19-18.5-46q0-26 18.5-44.5t45.5-18.5 45.5 18.5 18.5 44.5q0 27-18.5 46zm0-367.5Q1138 984 1111 984t-45.5-18.5T1047 920q0-26 18.5-44.5T1111 857t45.5 18.5T1175 920q0 27-18.5 45.5zm-185 550.5q-18.5 19-44.5 19t-45-19-19-45q0-27 19-46t45-19 44.5 19 18.5 46q0 26-18.5 45zM1707 782.5q-19 18.5-45 18.5t-44.5-18.5T1599 738q0-27 18.5-46t44.5-19 45 19 19 46q0 26-19 44.5zm-183.5 918Q1505 1719 1478 1719q-26 0-44.5-18.5T1415 1656q0-27 18.5-46t44.5-19q27 0 45.5 19t18.5 46q0 26-18.5 44.5zm368 0Q1873 1719 1847 1719q-27 0-46-18.5t-19-44.5q0-27 19-46t46-19q26 0 44.5 19t18.5 46q0 26-18.5 44.5zM1707 1149q-19 19-45 19t-44.5-19-18.5-45 18.5-44.5 44.5-18.5 45 18.5 19 44.5-19 45zm-183.5-183.5Q1505 984 1478 984q-26 0-44.5-18.5T1415 920q0-26 18.5-44.5T1478 857q27 0 45.5 18.5T1542 920q0 27-18.5 45.5zm-735 735Q770 1719 744 1719q-27 0-46-18.5t-19-44.5q0-27 19-46t46-19q26 0 44.5 19t18.5 46q0 26-18.5 44.5zM421 965.5Q402 984 375 984q-26 0-44.5-18.5T312 920q0-26 18.5-44.5T375 857q27 0 46 18.5t19 44.5q0 27-19 45.5zm0 367.5q-19 19-46 19-26 0-44.5-19t-18.5-46q0-26 18.5-44.5T375 1224q27 0 46 18.5t19 44.5q0 27-19 46zm1102.5 0q-18.5 19-45.5 19-26 0-44.5-19t-18.5-46q0-26 18.5-44.5t44.5-18.5q27 0 45.5 18.5t18.5 44.5q0 27-18.5 46zm-552-550.5Q953 801 927 801t-45-18.5-19-44.5q0-27 19-46t45-19 44.5 19 18.5 46q0 26-18.5 44.5zm-183 183Q770 984 744 984q-27 0-46-18.5T679 920q0-26 19-44.5t46-18.5q26 0 44.5 18.5T807 920q0 27-18.5 45.5zm1470 0Q2240 984 2214 984q-27 0-46-18.5t-19-45.5q0-26 19-44.5t46-18.5q26 0 44.5 18.5T2277 920q0 27-18.5 45.5zm-367 0Q1873 984 1847 984q-27 0-46-18.5t-19-45.5q0-26 19-44.5t46-18.5q26 0 44.5 18.5T1910 920q0 27-18.5 45.5zm367 367.5q-18.5 19-44.5 19-27 0-46-19t-19-46q0-26 19-44.5t46-18.5q26 0 44.5 18.5t18.5 44.5q0 27-18.5 46zm-1470 0q-18.5 19-44.5 19-27 0-46-19t-19-46q0-26 19-44.5t46-18.5q26 0 44.5 18.5T807 1287q0 27-18.5 46zm1103 0q-18.5 19-44.5 19-27 0-46-19t-19-46q0-26 19-44.5t46-18.5q26 0 44.5 18.5t18.5 44.5q0 27-18.5 46zm-920-184q-18.5 19-44.5 19t-45-19-19-45 19-44.5 45-18.5 44.5 18.5T990 1104t-18.5 45zm735.5 733.5q-19 18.5-45 18.5t-44.5-18.5-18.5-44.5q0-27 18.5-45t44.5-18 45 18 19 45q0 26-19 44.5zm-735.5 0Q953 1901 927 1901t-45-18.5-19-44.5q0-27 19-45t45-18 44.5 18 18.5 45q0 26-18.5 44.5zM1340 1516q-19 19-45 19-27 0-46-19t-19-45q0-27 19-46t47-19q27 0 45 19t18 46q0 26-19 45zm0 369q-19 19-45 19-27 0-46-19t-19-46q0-26 19-45t47-19q27 0 45 19t18 45q0 27-19 46zm734-1102.5q-19 18.5-45 18.5t-44.5-18.5T1966 738q0-27 18.5-46t44.5-19 45 19 19 46q0 26-19 44.5zm0 366.5q-19 19-45 19t-44.5-19-18.5-45 18.5-44.5 44.5-18.5 45 18.5 19 44.5-19 45zm0 366q-19 19-45 19t-44.5-19-18.5-46q0-26 18.5-44.5t44.5-18.5 45 18.5 19 44.5q0 27-19 46zm-1469.5.5Q586 1534 560 1534t-45-18.5-19-44.5q0-27 19-46t45-19 44.5 19 18.5 46q0 26-18.5 44.5zm0-735Q586 799 560 799t-45-18.5-19-45.5q0-26 19-44.5t45-18.5 44.5 18.5T623 735q0 27-18.5 45.5zm0 367.5q-18.5 19-44.5 19t-45-19-19-46q0-26 19-44.5t45-18.5 44.5 18.5T623 1102q0 27-18.5 46z" + }, + "children": [] + }] +}; +exports.u1F49B = u1F49B; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F49C.js b/dist/noto_emoji_regular/u1F49C.js new file mode 100644 index 000000000..6377e8716 --- /dev/null +++ b/dist/noto_emoji_regular/u1F49C.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F49C = void 0; +var u1F49C = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2307 1520q-126 189-379 360l-141 95q-185 126-272.5 210t-125 126-86.5 46h-6q-52-3-100.5-59.5t-125-127T814 1976l-140-96q-261-179-384-366.5T167 1098q0-147 48-251t119-186 175-130 239-48q103 0 213.5 29T1207 639l51 36q13 10 24.5 16.5t17.5 6.5q8 0 14-4l11-7q39-23 113.5-78.5T1624 518t234-35q132 0 235.5 49t174 131 118 185 47.5 250q0 233-126 422zM960 1958L2192 725q-20-21-41-39.5t-44-32.5L867 1893zm-159-109L2037 613q-30-11-61.5-19t-65.5-11L708 1784zm1495-959q-14-28-27.5-53.5T2240 787L1023 2005q22 17 44 35l43 35zm37 205q0-31-2.5-62t-7.5-60L1167 2127q19 14 41.5 36.5t39.5 42.5l1085-1086v-25zM557 1668q22 17 42.5 35t44.5 35L1799 583q-52 4-107 16t-104 37zm-132-136q17 22 36.5 42.5T501 1615l824-824q-7 0-12 1.5t-13 1.5q-32 0-64-18t-36-20zm712-822q-24-17-47.5-32t-49.5-29l-718 718q12 24 25.5 49.5T378 1468zm-175-93q-31-11-63.5-18T834 587l-566 566q2 37 7.5 69t16.5 65zm1357 628l-848 848q63-57 130-107t136-97l135-92q220-151 319.5-285t127.5-267zM268 1043l462-463q-123 5-216 59L352 801q-32 51-55 105.5T268 1043z" + }, + "children": [] + }] +}; +exports.u1F49C = u1F49C; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F49D.js b/dist/noto_emoji_regular/u1F49D.js new file mode 100644 index 000000000..0af4feba8 --- /dev/null +++ b/dist/noto_emoji_regular/u1F49D.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F49D = void 0; +var u1F49D = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2282 1503q-121 182-376 354l-140 95q-171 117-236 178.5t-69 64.5l-40 38q-8 6-45.5 49t-74.5 45h-2q-37-2-72.5-42.5t-121-122.5T835 1953l-140-95q-256-176-377-357t-121-404q0-236 159-410.5T748 512q91 0 173 21t131 44.5 137 85.5l26 19q24 20 45 30.5t40 10.5l20-1q14-2 99.5-67.5t198.5-104 240-38.5q227 0 386 172t159 413q0 224-121 406zm-65-40q12-14 29.5-40.5t25.5-37.5 8-28q-13 13-33 20.5t-40 7.5q-16 0-33-5-10 0-10 11 0 18 16.5 51.5t20.5 33.5q5 0 9-4zm77.5-204.5q38.5-43.5 38.5-98.5 0-61-56-99t-136-38q-14 0-30 6.5t-16 26.5q0 15 34.5 32t34.5 36q0 13-8 17.5t-19 4.5q-14 0-25.5-3.5t-20.5-7.5l-20-8q-10-3-22-3-10 0-25.5 11t-15.5 28q0 5 2 6 17 50 80.5 91.5T2200 1302q56 0 94.5-43.5zm-606-457q6.5-6.5 17.5-6.5 15 0 32.5 23t35.5 23q16 0 25-14t9-27q0-36-52.5-102.5T1647 631t-98 45-42 98q0 64 74.5 124t114.5 60q20 0 31-13.5t11-31.5q0-24-28-48t-28-46q0-11 6.5-17.5zm-334 354q-3.5 17.5-3.5 31.5 0 16 5 26t21 10q30 0 75-25.5t99-49.5l74-32q14-6 50.5-22.5t36.5-22.5q0-13-63.5-42t-88-52.5T1495 953q-30 0-61 9l-56 16-26 8q-29 9-59.5 27.5T1262 1050q0 20 26 25t48 16.5 22 32.5q0 14-3.5 31.5zm50-325Q1432 858 1442 858q6 0 6-5 0-14-4-26t-4-26l1-18q0-10 1-19 2-3 4-8.5t2-10.5q0-3-4-3-15 0-41 21.5t-26 31.5q0 8 27.5 35.5zm412.5 258q35 31.5 75 31.5 50 0 103-68.5t53-79.5q0-14-19.5-43.5t-58.5-54-67-24.5q-12 0-21 10l-9 8-48 56q-21 23-32 51.5t-11 47.5q0 34 35 65.5zm57 483q5 10.5 19 10.5 9 0 20-5l44-22q10-5 18-5 25 0 44.5 33.5t36.5 33.5q16 0 26-25t10-79v-45q0-110-52-141.5t-84-70.5-48-39q-5 0-9 24.5t-8 73.5l-7 79q-4 47-9.5 77t-5.5 63q0 27 5 37.5z" + }, + "children": [] + }] +}; +exports.u1F49D = u1F49D; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F49E.js b/dist/noto_emoji_regular/u1F49E.js new file mode 100644 index 000000000..1949a0c42 --- /dev/null +++ b/dist/noto_emoji_regular/u1F49E.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F49E = void 0; +var u1F49E = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M611.5 650.5Q689 577 816 577q27 0 52 5t53 7q36 0 70-70t104.5-118.5T1238 352q71 0 141 45.5t99.5 116.5 29.5 138q0 121-83.5 268T1316 1133l-16 48q0 2-9 32t-29 30q-14 0-28-7t-24-10l-24-8q-67-23-271-48.5t-292.5-125T534 842q0-118 77.5-191.5zm1698.5 776q-85 66.5-203 66.5-57 0-141.5-13.5T1822 1466q-22 0-41 2t-43 2q-17 0-22-10t-5-26v-16q0-23-4-59.5t-11-69.5l-19-81q-10-40-17.5-81t-7.5-82q0-120 71.5-198t168.5-78q79 0 138 63t69 123.5 24.5 70.5 79.5 16 128.5 65 63.5 140q0 113-85 179.5zm-1413.5 488Q870 1918 868 1918l-39 8q-47 11-92 29l-90 35q-45 18-90.5 31t-94.5 13q-111 0-184-69.5T205 1807q0-59 41-116t109-85 71.5-38 3.5-35v-33q0-37 9.5-74t31.5-70l6-8q29-44 69-64.5t91-20.5q50 0 94.5 20t85 60.5 62 114.5 21.5 207.5 11.5 163T923 1889q0 22-26.5 25.5zm626.5 277q-11 60.5-11 119.5 0 17 2 33.5t2 36.5q0 14-8 18t-19 4h-15q-11 0-20.5 1.5t-20.5 1.5q-35 3-69 11l-68 16q-34 9-68.5 15.5t-69.5 6.5q-102 0-167-60t-65-141q0-57 42-105l6-5q41-50 104-61t69-38l8-42q7-44 18-69t30-46l5-6q24-28 54-40.5t64-12.5q86 0 147 66.5t61 175.5q0 60-11 120.5zm732-253.5q41 43 41 98 0 82-60 132t-150 50q-29 0-57-5l-113-19q-29-5-57-6l-51 1q-24 0-24-23v-17q0-49-16-133.5t-16-133.5q0-89 53.5-148.5T1932 1674q60 0 101 45.5t48 86 13 56.5 63 25.5 91 45.5z" + }, + "children": [] + }] +}; +exports.u1F49E = u1F49E; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F49F.js b/dist/noto_emoji_regular/u1F49F.js new file mode 100644 index 000000000..b5816db65 --- /dev/null +++ b/dist/noto_emoji_regular/u1F49F.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F49F = void 0; +var u1F49F = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1051.5 750.5q86.5 30.5 150.5 83t101 52.5q34 0 105-55.5t156-83 180-27.5q171 0 290.5 131.5T2154 1166q0 122-42 218t-117 178.5-249 203.5l-155 107q-78 54-142 115l-61 59-45 47q-41 44-82-.5t-43-46.5l-62-59q-64-61-141-115l-155-109q-177-122-251.5-204t-116-177.5T451 1166q0-184 118-315t295-131q101 0 187.5 30.5zM823 1856l-53 93H663l-53-93 53-92h107zM545 725l-52-92 52-93h107l53 93-53 92H545zm1392 1039l53 92-53 93h-107l-52-93 52-92h107zm11-1039l-53-92 53-93h107l52 93-52 92h-107zm171 886l54 92-54 93h-107l-52-93 52-92h107zm-1479 92l-52 93H481l-54-93 54-92h107zm1603-778h106l54 91-54 92h-106l-54-92zm-681 1135l53 92-53 92h-107l-54-92 54-92h107zm845-797l-53 92h-106l-53-92 48-92h111zm-692-608l-53-92 53-92h107l53 92-53 92h-107zm-696 53l-53-92 53-91h107l52 91-52 92h-107zm-240-53l-53-92 53-92h107l52 92-52 92H779zm574 1520l54 92-54 92h-105l-53-92 53-92h105zm922-770l54 92-54 92h-105l-53-92 53-92h105zM357 882l-53-92 53-92h106l53 92-53 92H357zm1118-174l-53-92 53-91h106l53 91-53 92h-106zm-459 1282l-53 92H857l-53-92 53-91h106zm-585-401H326l-54-92 54-92h105l54 92zm-180-481l-52-92 52-91h106l52 91-52 92H251zm101 247H246l-53-92 53-92h106l53 92zm896-566l-53-92 53-92h105l54 92-54 92h-105zm-51 1363l-52 92h-107l-52-92 52-92h107zm887-1362l53-92h106l53 92-53 92h-106zm-341 1109l53 91-53 92h-106l-53-92 53-91h106z" + }, + "children": [] + }] +}; +exports.u1F49F = u1F49F; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4A0.js b/dist/noto_emoji_regular/u1F4A0.js new file mode 100644 index 000000000..141682d0d --- /dev/null +++ b/dist/noto_emoji_regular/u1F4A0.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4A0 = void 0; +var u1F4A0 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2287.5 1518Q2186 1635 2021 1682q52 66 87.5 141t35.5 161q0 180-130.5 318.5T1700 2441q-125 0-228-62t-172-173q-73 115-177 175t-223 60q-176 0-310-134t-134-312q0-90 33.5-167t88.5-146q-178-46-272.5-166.5T211 1248q0-178 129.5-317T649 792q53 0 104 11t100 31q0-10-1-31 0-213 130-344t318-131q186 0 316.5 131.5T1747 803q0 21-2 31 50-20 101-31t103-11q179 0 309.5 135.5T2389 1248q0 153-101.5 270zm-806-250.5Q1405 1191 1300 1191q-106 0-182 75t-76 182q0 106 76 181t182 75q101 0 179.5-76t78.5-178q0-106-76.5-182.5z" + }, + "children": [] + }] +}; +exports.u1F4A0 = u1F4A0; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4A1.js b/dist/noto_emoji_regular/u1F4A1.js new file mode 100644 index 000000000..7c1c27c27 --- /dev/null +++ b/dist/noto_emoji_regular/u1F4A1.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4A1 = void 0; +var u1F4A1 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2273 2080q-9 28-9 66 0 76-34.5 103.5T2163 2279t-47 9l-24 12q-11 6-25 11t-32 5q-28 0-52.5-13.5T1943 2289q-11 0-22.5 1.5t-22.5 1.5q-18 0-31-8.5t-24-19.5l-20-19q-10-8-20-8-39 0-53.5-3.5t-38-20-23.5-24.5q-27 6-55 6-20 0-39-2.5t-38-8.5l-112-35q-201-60-396-89t-342-117.5-248.5-265T356 1292q0-211 104.5-392T748 613.5 1140 508q117 0 224.5 32.5T1559 630t151 126 112 172 82.5 235 62 173.5 84.5 151 57 213.5l-1 21q27 15 40 41t15 58v8q0 4-1 9 0 20 29.5 34t29.5 47 31 52 31 61q0 20-9 48zm-485-75.5q81-72.5 142-152.5t61-151q0-97-83-230.5t-104-225-68-218-132-213T1396.5 677 1140 626q-181 0-333.5 89T564 958.5 474 1292q0 118 39.5 228t117 203 185 146 299 84 339 77.5T1633 2077q74 0 155-72.5zM1130 2332q7 24 14.5 55.5t7.5 52.5q0 15-17.5 22t-41.5 7l-27 1q-38 0-56-7t-18-30q0-12 7-47t20-68l33-89q4-12 9-19t21-7q13 0 24 28.5t17 63.5zm1194-1258q3 14 4 26.5t1 26.5q0 25-4.5 41.5T2303 1185q-5 0-10-1t-9-1l-108-8q-88-6-100.5-13t-12.5-21q0-4 2-7 2-13 71.5-50.5T2256 1031l16-4q7 0 15-1 12 0 19.5 7.5t13.5 24.5zm-573.5-453q-7.5-8-7.5-17 0-46 11.5-102t19-99 34.5-43q18 0 70 27t52 51q0 12-74 101.5t-89 89.5q-9 0-16.5-8zM767 2151q-5 54-25 124t-23 90.5-23 20.5q-23 0-75-23t-52-49q0-21 36-58t47-49l22-24q17-20 37.5-38t29.5-18q8 0 17 6.5t9 17.5zm-244.5-188.5q7.5 7.5 7.5 16.5 0 16-39.5 58t-41.5 44l-23 25q-21 24-39.5 41t-26.5 17q-18 0-54-45.5t-36-69.5 52.5-41.5 113.5-35 71-17.5q8 0 15.5 7.5zM1971 841q-12 0-19.5-8.5T1944 815q0-7 14-27t34-45l21-25q4-5 39.5-50t58.5-45q16 0 50 44.5t34 76.5q0 14-10 17.5t-90 35.5-124 44z" + }, + "children": [] + }] +}; +exports.u1F4A1 = u1F4A1; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4A2.js b/dist/noto_emoji_regular/u1F4A2.js new file mode 100644 index 000000000..d461cdd20 --- /dev/null +++ b/dist/noto_emoji_regular/u1F4A2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4A2 = void 0; +var u1F4A2 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1041 549.5q12-20.5 44-20.5 54 0 119.5 79.5t152 137.5 201.5 58q36 0 71-4.5t70-11.5l70-14q10-2 53-9.5t56-7.5q36 0 55.5 16t19.5 41q0 65-152 141t-300 76q-187 0-329.5-161T1029 594q0-24 12-44.5zM585 1629l-49 22q-26 12-58 12-23 0-43-13t-20-39q0-48 87-133t142.5-174 55.5-192q0-79-28-174t-28-120q0-32 17-55t40-23q39 0 91 58t93.5 174.5T927 1173q0 134-96 257.5T585 1629zm1495.5-234.5q-104.5 91.5-157.5 177t-53 195.5q0 68 20.5 152t20.5 111q0 31-17 56.5t-43 25.5q-65 0-134-137.5t-69-292.5q0-136 106-260.5t261-190.5l47-18q23-9 55-9 31 0 49.5 15.5t18.5 37.5q0 46-104.5 137.5zm-579 885Q1489 2301 1455 2301q-43 0-81.5-48T1273 2138.5 1138.5 2036 967 2000q-58 0-141 13.5T685 2027q-42 0-62-14t-20-42q0-61 139-127.5t291-66.5q209 0 345 169t136 284q0 28-12.5 49.5z" + }, + "children": [] + }] +}; +exports.u1F4A2 = u1F4A2; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4A3.js b/dist/noto_emoji_regular/u1F4A3.js new file mode 100644 index 000000000..40671ddaf --- /dev/null +++ b/dist/noto_emoji_regular/u1F4A3.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4A3 = void 0; +var u1F4A3 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2176 2054.5q-106 179.5-285.5 280T1507 2435q-206 0-386-101.5t-285-279T731 1669q0-207 105-384.5t285-279T1507 904q26 0 56 4t52 4q28 0 60-30.5t73.5-57T1831 798q23 0 47.5 5.5T1926 817q25-36 38-77.5t13-83.5q0-116-84.5-197T1685 378q-91 0-200 47t-214 132.5T1050.5 695 839 747q-13 0-20-1l-38-5q-51-6-81-21t-30-40 15-35 28-10q11 0 50.5 9.5T848 654q74 0 155-38.5t206.5-141T1454 329t228-43q171 0 283.5 109T2078 661q0 55-15.5 106.5T2019 867q54 40 79.5 83.5T2124 1053q0 23-5 49t-5 48q0 45 36 92.5t84 164 48 262.5q0 206-106 385.5zM1560 1169l46-5q84-10 118.5-23t34.5-31q0-47-70.5-72t-181.5-25q-176 0-332 90.5T930 1345t-89 322q0 106 43 197.5t86 91.5q27 0 41.5-27t14.5-61q0-17-1-30.5t-1-25.5q0-167 81.5-314.5T1319 1265t241-96zM596 690q-19 19-46 19-26 0-45-19t-19-45q0-27 19-46t45-19q27 0 46 19t19 46q0 26-19 45zm-42.5 92q9.5 30 9.5 85 0 50-15 77t-42 27-42.5-20-15.5-49q0-40 28-95t52-55q16 0 25.5 30zm94.5 82.5Q617 814 617 762q0-16 6-23t14-7q22 0 73 48.5t51 87.5q0 20-13 33.5T713 915q-34 0-65-50.5zM456 708q0 25-47 77.5T326 838q-20 0-33-14.5T280 789q0-36 54-67.5t96-31.5q26 0 26 18zm159-167q0-48 39.5-103.5T730 382q17 0 35 11.5t18 29.5q0 50-60.5 96T635 565q-20 0-20-24zm-339.5 65Q238 585 238 553q0-23 18.5-38.5T296 499q43 0 97.5 38.5T448 598q0 14-20.5 21.5T376 627q-63 0-100.5-21zM541 514q-5 22-21 22-19 0-53-51t-34-88q0-24 13.5-43.5T486 334q23 0 41.5 30T546 467q0 25-5 47z" + }, + "children": [] + }] +}; +exports.u1F4A3 = u1F4A3; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4A4.js b/dist/noto_emoji_regular/u1F4A4.js new file mode 100644 index 000000000..2c89dfdb6 --- /dev/null +++ b/dist/noto_emoji_regular/u1F4A4.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4A4 = void 0; +var u1F4A4 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2287 617l4 17q0 8 1 16 0 19-7 36.5t-29.5 39-58 40.5-69.5 34.5-45 23.5-31 18l-38 18q-162 78-217.5 99t-55.5 32q0 9 32 22.5t89.5 40.5 100.5 63 43 79q0 44-43.5 112t-106.5 68q-45 0-111.5-36.5T1665 1296l-152-76-97-48q-141-67-183-105t-42-76q0-74 116-134.5t196-98.5l160-74q81-37 81-51 0-11-81-50t-138.5-73-57.5-88q0-45 45.5-111.5T1618 244q49 0 126 44t202 102 221 112l37 21q30 18 51 41t32 53zm-664.5 1038q-35.5 25-78 41.5t-60 27-47.5 21.5q-27 10-53 21l-86 33q-12 5-40 17t-28 17q0 7 7.5 9t68.5 36 88.5 61 27.5 55q0 33-34.5 82t-80.5 49q-37 0-93.5-35.5t-124-70.5-100.5-53.5-102-63.5-69-88q0-44 58-79.5t90.5-48.5 98.5-40.5 120.5-47.5 61.5-32q0-5-15-13l-37-20q-86-45-117-75.5t-31-59.5q0-33 35.5-82.5t79.5-49.5q35 0 88 32t58 35l111 63q30 16 134.5 73t104.5 123q0 38-35.5 63zM874 2203q-44 26-85 50.5t-89 46.5l-36 18q-8 4-27 14.5t-19 15.5 28.5 16 77.5 36.5 49 58.5q0 27-24.5 64.5T689 2561q-32 0-95.5-33t-175-76.5T307 2362q0-23 15.5-39.5T355 2295l8-5q42-32 94-59l107-54 11-5q8-5 20.5-11t12.5-13q0-2-80-36.5t-80-76.5 27-73 55-31q27 0 54 14t53 25l88 39q12 5 102.5 42t90.5 92q0 34-44 60z" + }, + "children": [] + }] +}; +exports.u1F4A4 = u1F4A4; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4A5.js b/dist/noto_emoji_regular/u1F4A5.js new file mode 100644 index 000000000..d94fffe73 --- /dev/null +++ b/dist/noto_emoji_regular/u1F4A5.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4A5 = void 0; +var u1F4A5 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2413.5 1665q-27.5 8-65.5 10l-38 2-142 5q-17 0-91.5 12.5T2002 1746q0 34 30 74t83 85l50 43 126 116q10 10 65 57.5t55 74.5q0 14-12.5 20t-29.5 6q-45 0-142-38t-213-76.5-153.5-52.5-68.5-14q-45 0-72.5 40.5T1680 2180l-14 65q0 3-5.5 57.5T1624 2357t-94.5-71.5T1418 2157t-89-57q-66 0-115.5 102.5T1138 2358t-58 120-74 67q-51 0-59.5-150T933 2138t-90-107q-40 0-105.5 22t-237 65-203 52-52.5 9q-15 0-25-6t-10-20q0-33 59.5-90.5T333 2001l94-96q46-47 91-97l33-35q34-37 54-71.5t20-63.5q0-42-51-56t-108.5-16-114-17.5T295 1501q0-17 19.5-35t44.5-31l23-12q21-12 57-28t66.5-44 30.5-66q0-37-28-81t-81-97l-60-60q-71-70-140-149.5T158 785q0-18 14-28.5t31-10.5q7 0 11 2l165 58q104 38 147.5 51.5t67.5 25 51 11.5q16 0 22-8t6-20q0-14-2-29.5t-2-29.5q0-23 6-40.5t24-17.5 76.5 41 80.5 41q23 0 32-19t9-42q0-45-17-106t-27-148l-12-92q0-2-7.5-37.5T826 326q0-19 6-33.5t22-14.5q20 0 37 17l30 32 114 141q78 96 143 175t118 79q58 0 119.5-85.5T1510 470t79-81q40 0 40 64 0 35-3.5 69.5T1622 593q0 65 11.5 94t36.5 29q29 0 64-30.5t188.5-163 186-154.5 52.5-22q17 0 24.5 10.5t7.5 21.5q0 22-23.5 72.5T2123 546l-56 109q-57 110-88 182.5t-31 88.5q0 35 87.5 40t113.5 5l16-1q32 0 46.5 9t14.5 28q0 26-30 44.5t-33 20.5l-26 19q-27 19-46.5 42.5T2071 1178q0 46 71.5 54.5t160 32 88.5 43.5q0 26-80.5 53.5t-149.5 57-69 55.5q0 37 85.5 56.5T2352 1580t89 60q0 17-27.5 25zM1777 1405.5q-74-16.5-115-51t-41-87.5q0-35 22.5-88t22.5-74q0-19-15-19-8 0-15.5 4t-14.5 10l-15 12q-20 17-79.5 47t-107.5 30q-52 0-90.5-38t-59.5-104-51-66q-34 0-48.5 127T1044 1235q-29 0-72-11.5t-76-11.5q-16 0-28.5 6t-12.5 17q0 15 18.5 36.5T916 1314l18 15q58 47 76 77t18 60q0 53-52.5 120.5T919 1660l-9 12q-11 13-19.5 27.5T882 1723q0 13 11.5 19t27.5 6q20 0 41-7l98-28q31-8 62-8 51 0 76.5 26t40.5 89 45 63q25 0 52-51.5t65.5-89 93.5-37.5q57 0 134 45.5t111 45.5q8 0 13.5-5t5.5-16q0-14-30-44t-66.5-74.5-36.5-84.5q0-37 40-64.5t112.5-31 72.5-27.5q0-27-74-43.5z" + }, + "children": [] + }] +}; +exports.u1F4A5 = u1F4A5; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4A6.js b/dist/noto_emoji_regular/u1F4A6.js new file mode 100644 index 000000000..f16409efe --- /dev/null +++ b/dist/noto_emoji_regular/u1F4A6.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4A6 = void 0; +var u1F4A6 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M956 1494q-49 28-177 114t-213 86q-62 0-98.5-42.5T431 1542q0-77 76.5-285T688 885l38-63q143-228 325.5-349T1440 352q223 0 365.5 125.5T1948 807q0 88-30.5 167t-93.5 148-152.5 118-285.5 100l-85 22q-101 27-185 59t-128 55zm1099.5 805Q1942 2404 1779 2404q-68 0-128-14t-114-30l-105-29q-76-20-147-31.5t-141-11.5q-30 0-70 4t-82 4q-70 0-110.5-29.5T841 2181q0-83 84-167t162.5-142.5T1251 1771l22-11q100-55 206-87t206-32q201 0 342.5 112t141.5 285q0 156-113.5 261zM744 1377q23 0 63.5-17.5T876 1326l27-16q129-72 393-134t367-150.5T1766 804q0-119-87.5-195T1441 533q-178 0-340 128t-276.5 354T710 1342q0 35 34 35zm1164 492q-102-70-223-70-97 0-205 39t-212 110l-45 31q-43 30-76 65t-33 60q0 16 17 22.5t53 6.5l37-1q107 0 290.5 58t267.5 58q100 0 165.5-60t65.5-147q0-102-102-172z" + }, + "children": [] + }] +}; +exports.u1F4A6 = u1F4A6; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4A7.js b/dist/noto_emoji_regular/u1F4A7.js new file mode 100644 index 000000000..3ab75d7b8 --- /dev/null +++ b/dist/noto_emoji_regular/u1F4A7.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4A7 = void 0; +var u1F4A7 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1750.5 2288Q1591 2451 1318 2451q-161 0-321.5-75.5t-233.5-216-73-343.5q0-208 105-437.5t179-444 115.5-398T1241 353q70 0 142.5 112t183 385 161 380.5T1844 1511t66 342q0 272-159.5 435zM971 2124q133 119 339 119 182 0 315-123t133-299q0-174-126.5-447t-214-481.5T1266 684q-26 0-48 28.5t-57 131-83 240-120 292-96 252.5-24 188q0 189 133 308z" + }, + "children": [] + }] +}; +exports.u1F4A7 = u1F4A7; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4A8.js b/dist/noto_emoji_regular/u1F4A8.js new file mode 100644 index 000000000..56f1ef36a --- /dev/null +++ b/dist/noto_emoji_regular/u1F4A8.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4A8 = void 0; +var u1F4A8 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2368 1636q24 37 24 132 0 78-29.5 150t-87 123-134.5 70-112.5 90.5-90.5 125-130.5 77.5-153.5 24q-138 0-213.5-55.5T1311 2317q-35 0-69 9t-69 9q-96 0-189-36t-133.5-123-40.5-175q0-33 6.5-64.5T837 1873q-160-20-372.5-50t-248-32.5T181 1758q0-17 27.5-22t95.5-5q77 0 317.5 12t411 22 170.5 77q0 36-29.5 48.5T1099 1903q-29 0-63.5-3.5T968 1889l-32-5q-8 21-15 42t-7 45q0 91 91.5 151.5T1207 2183q62 0 102.5-15t55.5-15q25 0 47.5 33.5t79 54.5 132.5 21q120 0 213-63.5t105-148.5 54-85q11 0 21.5 3t19.5 3q82 0 141-64t59-146q0-48-16.5-90t-39-68.5-22.5-55.5q0-36 38-55t78-84.5 40-154.5q0-80-36.5-153.5t-100-116T1971 914l-29-6q-21-4-32-14t-11-29q0-17 9-31.5t9-23.5q0-41-34.5-113T1761 576.5 1562 528q-87 0-155 27.5T1301 633t-43.5 112-36.5 62q-26 0-46.5-4.5T1130 798q-111 0-182 66t-71 161q0 29 7 58.5t23 58.5q30-2 59.5-3t59.5-1q39 0 84.5 19.5t45.5 51.5q0 27-33 39.5t-82 14.5l-48 2q-202 11-403 24.5T188 1335h-6q-12 0-22.5-7t-10.5-18q0-27 79-49t142.5-39 181.5-36 239-32q-24-33-35-71t-11-77q0-98 47-167t118-107 136.5-55 93.5-84 89.5-116 151-75 192.5-26q180 0 302.5 79T2028 602.5t30 121.5q0 51 26 68.5t83.5 29.5 143.5 83 122.5 156 36.5 178q0 134-63 214t-63 122q0 24 24 61zm-2171-61h-20q-11 0-22 1-13 0-19.5-10t-6.5-22q0-27 26-30t286-31 476-28q37 0 120.5 6t100 21.5 16.5 40.5q0 26-21 40t-77 14q-17 0-33-1h-87q-72 0-142-2t-140-2q-88 0-175.5 2.5T304 1577q-26 0-53-1t-54-1z" + }, + "children": [] + }] +}; +exports.u1F4A8 = u1F4A8; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4A9.js b/dist/noto_emoji_regular/u1F4A9.js new file mode 100644 index 000000000..8b002e080 --- /dev/null +++ b/dist/noto_emoji_regular/u1F4A9.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4A9 = void 0; +var u1F4A9 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M899 589.5Q995 459 1162 380l22-9q23-9 55.5-17.5t55.5-8.5q20 0 34 8t14 30q0 43-50 95.5t-50 93.5q0 99 177.5 101.5T1675 748t77 176q0 125-106 214.5t-310 89.5q-199 0-366-97T803 869q0-149 96-279.5zM1156 1805q-233-18-402-141.5T585 1337q0-107 48-197.5t104-90.5q39 0 39 48t59 110.5 197 107.5 283 45q132 0 241.5-43t178.5-109 88.5-103.5 45.5-37.5q52 0 85.5 80.5T1988 1322q0 232-204.5 360.5T1274 1811q-30 0-59-2zm987 332q-124 149-356.5 234.5T1291 2457q-206 0-455-62t-376.5-218.5T332 1845q0-124 54.5-216t112.5-92q9 0 22 5.5t38.5 69.5T681 1748.5 931.5 1870t354.5 49q295 0 497-102t268-297l7-19q6-17 16-27t25-10q46 0 107 98.5t61 231.5q0 194-124 343z" + }, + "children": [] + }] +}; +exports.u1F4A9 = u1F4A9; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4AA.js b/dist/noto_emoji_regular/u1F4AA.js new file mode 100644 index 000000000..39caa4bbb --- /dev/null +++ b/dist/noto_emoji_regular/u1F4AA.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4AA = void 0; +var u1F4AA = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2314 1665q-87-130-224.5-214t-297.5-84q-194 0-334 86.5t-208 206-172 119.5q-28 0-47-15.5t-19-43.5v-7l59-653q2-22 18-38.5t41-16.5q28 0 57 8t58 8q56 0 80.5-34.5T1350 903q0-23-12.5-54.5T1325 791q0-17 7-33t27-31l67 116q37 63 48 79t30 16q17 0 32-10t15-26q0-6-4-14l-100-202q-2-3-4-8.5t-2-15.5q0-14 11.5-22t25.5-8q22 0 34.5 26t24.5 50l24 45q12 25 24 46l20 38q9 17 16.5 24.5t23.5 7.5q17 0 30-8.5t13-24.5v-5q0-3-1-6l-94-208q-2-2-2-15 0-14 10.5-24t27.5-10q13 0 20.5 7t10.5 15l46 108q36 85 45.5 99.5T1781 812q14 0 29.5-8t15.5-25q0-7-1-11l-82-208q-2-4-2-6.5t-1-10.5q0-14 10-22.5t27-8.5q15 0 23.5 10t12.5 18l41 106q12 41 30 73t38 32q17 0 32-8.5t15-25.5q0-5-2-8l-4-18-23-73-33-99q-27-81-79-111.5T1708 377q-132 0-335.5 109.5t-365 238.5T713 1081t-219.5 479.5T407 1949q0 78 31 157.5t60.5 103 73 46.5 344 71 671.5 79.5 727 34.5v122q-548-5-1059.5-67.5t-675-109-229-177T285 1947q0-160 99.5-444t238-510 308-362.5 394.5-256T1708 255q91 0 166 39.5t120 132 95 296.5l16 27q16 29 27 67t11 73q0 126-125.5 172.5T1806 1109q-49 0-81.5-10.5T1671 1073q-68 31-163 52.5t-195 21.5q-30 0-61-2t-64-7l-44 461q109-174 272-264t372-90q155 0 289 60t237 168v192zm-159.5 226q8.5 8 8.5 22 0 107-80.5 181t-238.5 74q-104 0-206.5-35t-160.5-75l-36-24q-6-5-9-12t-3-13q0-14 9.5-22t20.5-8h6l18 2q32 5 86.5 9.5t111.5 4.5q152 0 260.5-30t143-56 48.5-26q13 0 21.5 8zM1800 961.5q12 18.5 41 18.5 13 0 26.5-4.5T1915 957l62-25q20-8 38-26.5t18-47.5q0-27-9.5-42.5T2010 788l-45 20q-151 67-164 85t-13 31q0 19 12 37.5z" + }, + "children": [] + }] +}; +exports.u1F4AA = u1F4AA; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4AB.js b/dist/noto_emoji_regular/u1F4AB.js new file mode 100644 index 000000000..30690012a --- /dev/null +++ b/dist/noto_emoji_regular/u1F4AB.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4AB = void 0; +var u1F4AB = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1540 814q-7-10-7-21 0-16 11.5-28t26.5-12q3 0 5.5 1t4.5 1l197 45 129-155q10-12 29-12 14 0 26.5 9t14.5 25l16 200 188 77q11 4 18 13.5t7 21.5q0 13-7 22.5t-18 14.5l-186 76-13 202q0 16-12 26.5t-27 10.5q-18 0-31-13l-130-155-196 52q-4 0-9 1-16 0-28-11.5t-12-27.5q0-12 5-21l107-174zm270 76l-146-33 81 124-78 128 144-38 96 114 9-150 137-56-137-55-13-147zm-658 1135q5 5 6 11t1 11q0 17-12 29t-28 12q-2 0-3.5-1t-3.5-1l-198-38-120 163q-5 7-13.5 11.5T763 2227q-19 0-27.5-10t-10.5-24l-28-201-190-63q-25-7-28-35 0-11 5.5-22t16.5-16l182-88 3-201q0-16 11-27t26-11q16 0 30 12l139 144 193-59q2 0 7-1 19 0 31.5 10.5t12.5 27.5q0 11-6 20l-96 176zm-274-68l147 29-87-122 72-130-143 44-101-107-3 148-133 66 141 45 19 148zm513-1021q-14-1-53-1-263 0-499 50t-361.5 144.5T352 1315q0 55 42 115.5T510 1546t82 55q9 4 9 17 0 12-9 16l-107 63q-3 3-7 3-19 0-102-64.5t-128-137-45-146.5q0-122 127-233.5t337.5-172T1160 886q108 0 175 6t75 8q8 0 12.5 6t4.5 14-5 12.5-12 4.5q-5 0-19-1zm1006 558q0 171-216.5 299.5T1610 1922q-33 0-121.5-5t-92.5-9q-17-2-17-18 0-8 6-13.5t14-5.5q6 0 18.5 1t38.5 1q229 0 421-47t297.5-135.5T2280 1512q0-57-34.5-115.5t-98-119.5-63.5-57q-9-3-9-16 3-11 13-15l85-33 5-1q18 0 86.5 73t100.5 142.5 32 123.5z" + }, + "children": [] + }] +}; +exports.u1F4AB = u1F4AB; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4AC.js b/dist/noto_emoji_regular/u1F4AC.js new file mode 100644 index 000000000..8775876c8 --- /dev/null +++ b/dist/noto_emoji_regular/u1F4AC.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4AC = void 0; +var u1F4AC = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M582 2605v-493H475q-105 0-164-59.5T252 1887V734q0-86 65-148t158-62h1650q94 0 158.5 60t64.5 150v1153q0 102-61 163.5t-162 61.5H1084zM475 642q-42 0-73.5 25T370 734v1153q0 57 24.5 82t80.5 25h225v330l336-330h1089q105 0 105-107V734q0-42-31.5-67t-73.5-25H475z" + }, + "children": [] + }] +}; +exports.u1F4AC = u1F4AC; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4AD.js b/dist/noto_emoji_regular/u1F4AD.js new file mode 100644 index 000000000..15e406569 --- /dev/null +++ b/dist/noto_emoji_regular/u1F4AD.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4AD = void 0; +var u1F4AD = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2384 1320v21l-1 55q0 74-38.5 141t-84.5 107-78 57.5-32 34-7 34.5-7 27q-2 81-83.5 165t-208.5 84q-14 0-27-1l-27-1q-32-2-62-2-46 0-71-11.5t-42-11.5q-21 0-44 20.5t-83.5 48T1353 2115q-94 0-130-7t-53-16l-26-13q-13-6-26.5-10.5t-28.5-4.5q-21 0-55.5 16.5T913 2097q8 30 8 58 0 83-62.5 134T693 2340q-19 48-52 68.5t-87 20.5q-62 0-103-40t-41-99q0-40 21-71.5t51-43.5q-8-29-8-57 0-65 36-116.5t98-73.5q0-38-70.5-56t-113-68-45.5-90l-3-47q-5-62-44.5-92T259 1474.5 226 1317q0-99 37.5-174t72-102 45-98.5 36.5-126 89-102T642 662q49 0 82.5-11t50.5-47.5 76-72 96-54 116-18.5h27l26 2q29 3 75.5 26.5T1269 511q28 0 86.5-26.5T1520 458q115 0 213.5 61t124 99 71.5 38q18 0 35 1 102 0 198 119.5t96 225.5v18q0 10-1 21 0 35 30 65.5t60 87.5 35 106zM599.5 2263.5Q584 2246 558 2246q-21 0-37.5 13.5T504 2294q0 25 16.5 41t39.5 16q20 0 37.5-13t17.5-36q0-21-15.5-38.5zM771 2056q-37-32-85-32-40 0-70.5 25.5T585 2115q0 47 31 76t78 29q43 0 78.5-24.5T808 2129q0-41-37-73zm1463-840q-36-77-65.5-85.5T2139 1103q0-12 2.5-25.5t2.5-28.5q0-50-13.5-84.5t-41.5-71-56-63-69.5-41T1885 775q-15 0-29 2.5t-28 2.5q-18 0-66-66.5T1640 615t-153-32q-64 0-107 17.5t-59.5 34T1287 651q-12 0-75.5-31.5T1068 588q-85 0-149 47.5t-80.5 80T766 748l-47-1q-90 0-165.5 77.5T478 1000q0 11 14 13t14 14q0 13-19.5 20.5t-80.5 73-61 176.5q0 92 46 157.5t56 65.5q9 0 20-11t20-11 12.5 8 3.5 19q0 30-5.5 62t-5.5 63q0 66 44 93t72 27q6 0 10.5-3.5t9.5-8.5l9-8q4-4 10-4 17 0 20 36.5t33.5 88T793 1954t138 32q66 0 117.5-17.5t71.5-36 38-18.5q8 0 14.5 4.5t6.5 15.5q0 9-2 17t-2 14q0 23 45.5 35.5t98.5 12.5q95 0 177.5-45t105-80.5 35.5-35.5q18 0 21 28.5t59 39 92 10.5q62 0 115.5-33t86-87 32.5-79q0-9 6-37.5t6-63.5l-1-14q0-8 6.5-12.5t14.5-4.5q14 0 21 8.5t16 8.5q7 0 61-39t75.5-88 21.5-110q0-86-36-163z" + }, + "children": [] + }] +}; +exports.u1F4AD = u1F4AD; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4AE.js b/dist/noto_emoji_regular/u1F4AE.js new file mode 100644 index 000000000..f497bc09a --- /dev/null +++ b/dist/noto_emoji_regular/u1F4AE.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4AE = void 0; +var u1F4AE = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2434 1656.5q-62 97.5-154 147.5t-143 58.5-51 38.5q0 17 7 47t7 62q0 167-132.5 307.5T1559 2458q-143 0-228.5-54t-104-92.5-38.5-38.5q-10 0-22.5 10.5T1139 2308l-31 30q-42 42-118.5 70T827 2436q-209 0-313.5-124.5T409 2027q0-59 11.5-108t27-72.5T463 1802q0-30-59-44t-132-68-120.5-149.5T104 1335q0-101 60-220.5t167.5-192T571 850q14 0 27.5 1.5T626 853q13 0 21-5.5t8-20.5q0-24-3.5-46t-3.5-51q0-84 65-192t180.5-179.5T1133 287q78 0 141.5 27.5t102.5 77 49.5 91.5 44.5 42q15 0 32-5.5t34-13.5l31-14q37-17 122.5-38.5T1851 432q189 0 291 121t102 283q0 77-22 130t-22 63q0 12 3.5 21.5t76 32.5 144.5 116 72 226q0 134-62 231.5zm-91-253.5q0-135-57-185t-167-50h-34q-17 0-37 1-58 0-81-15.5t-23-43.5q0-36 46-66.5t83.5-95T2111 810q0-116-76-185.5T1834 555q-70 0-137.5 21.5T1587 628l-79 56-24 16q-23 15-50 26.5t-46 11.5q-65 0-72-105t-59.5-157-144.5-52q-133 0-240.5 112.5T764 779q0 35 8.5 69.5T801 917l4 8q5 7 6 13t1 13q0 19-15 33t-35 14q-8 0-51-15t-106-15q-149 0-258.5 95.5T237 1301q0 104 47 182t118 114.5 163 44.5 92 57q0 30-28 72.5t-47 98-19 102.5q0 120 80 204t198 84q93 0 168.5-51t104.5-99 67-48q58 0 73 43t45 90 81 74.5 128 27.5q214 0 323.5-104t109.5-216q0-59-26-102.5t-26-61.5q0-27 28.5-51t57.5-24q13 0 25 2.5t25 2.5q110 0 212-99t106-208v-33zm-509 62q-89 126-240.5 189t-311.5 63q-117 0-193.5-68t-76.5-173q0-80 51.5-157.5t147-126T1385 1144q68 0 105 36t37 77q0 30-23 55.5t-55 25.5q-22 0-51-18t-53-18q-69 0-120.5 46t-51.5 116q0 46 34 71t103 25q120 0 220.5-61.5T1682 1343t51-168q0-94-79-150.5T1455 968q-146 0-317.5 102.5t-252 247T805 1595q0 144 98.5 238t317.5 94q129 0 237.5-27.5T1603 1855t50-17q13 0 21 8.5t8 19.5q0 10-8 19.5t-90 50-187.5 66.5-218.5 26q-240 0-378-113t-138-316q0-188 115-377t306-306.5T1479 798q187 0 315.5 114t128.5 291q0 136-89 262z" + }, + "children": [] + }] +}; +exports.u1F4AE = u1F4AE; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4AF.js b/dist/noto_emoji_regular/u1F4AF.js new file mode 100644 index 000000000..a35c48e2c --- /dev/null +++ b/dist/noto_emoji_regular/u1F4AF.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4AF = void 0; +var u1F4AF = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M879 886q130-256 339-371l5-3 6-11q16-17 39-25.5t46-8.5q11 0 21 2l24 5q65 16 120 16 45 0 89.5-11.5T1659 451l93-33q44-15 83-22.5t60.5-16 52.5-8.5q16 0 29 4t27 9l43 9q125 37 194.5 155t69.5 281q0 153-60 304.5T2085.5 1370t-238.5 85q-157 0-248-84t-102-241q-61 244-193 403t-270 159q-114 0-199.5-89.5T749 1351q0-209 130-465zm-560.5 57.5Q289 917 289 874q0-24 12.5-45t33.5-37l21-15q16-13 72-45t152-119.5 109.5-109 36-43 42.5-33 47-11.5q47 0 75 37t28 96q0 80-68.5 210t-120 293T622 1596l-3 26q-9 61-15 116.5T593 1848q0 98-29.5 147.5T477 2045q-47 0-71.5-40T381 1903q0-17 15.5-169t56.5-388.5T549 929q-40 20-76 30.5T409 970q-61 0-90.5-26.5zM2225 1729q3 0 10-1 32 0 52.5 20t20.5 49q0 22-13.5 39.5T2259 1860l-107 31q-53 16-107 30l-20 5q-245 66-634 197t-626.5 240T510 2483.5t-48 11.5q-40 0-72.5-31.5T357 2392q0-37 26.5-64.5t231-125.5 497-195 556.5-156l417-92zm-310-164q30 0 50 20t20 49q0 21-13 37t-35 22l-137 39-86 23q-255 69-577.5 175T781 2047.5t-44 11.5q-39 0-64.5-27t-25.5-70q0-39 29-65t392-143 783-180l55-9h9zm-169-374q25 50 70 50 54 0 124-48t111-142 41-224q0-105-40-164.5T1938 603l-26 11q-13 6-30 24.5t-42 55.5l-21 31q-53 81-75.5 156.5T1721 1049t25 142zm-791 120q0 63 19 98t55 35q60 0 121.5-60.5t116-211.5 54.5-258q0-61-19.5-124t-35.5-63q-38 0-133.5 128T996 1108.5 955 1311zm549-600q11 31 17 66.5t8 73.5q10-38 23.5-76.5T1586 699l-38 6q-21 4-44 6z" + }, + "children": [] + }] +}; +exports.u1F4AF = u1F4AF; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4B0.js b/dist/noto_emoji_regular/u1F4B0.js new file mode 100644 index 000000000..b0c3e6e69 --- /dev/null +++ b/dist/noto_emoji_regular/u1F4B0.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4B0 = void 0; +var u1F4B0 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2086.5 2379Q1860 2518 1362 2518q-562 0-819-142t-257-419q0-156 75-358.5T598 1229t357.5-258.5T1340 879h22q-2-2-2-7 0-36 24.5-68.5T1437 757q-9-37-18-83.5t-9-95.5q0-108 61-197.5t157-89.5q46 0 94 25.5t78 62.5l7 7q14 0 28.5-2t34.5-2q111 0 178 57t67 154v9l13 6 5 4q52 33 81.5 80t29.5 95q0 82-51.5 140.5T1952 997h-5l-48 5v14q0 28-9 53t-31 42q64 72 108.5 160t56.5 154.5 80 120 116.5 125T2291 1817t22 158q0 265-226.5 404zm39.5-568q-37-83-91.5-141t-90.5-83-36-76q-6-94-141-298t-408-204q-201 0-425 103.5T567.5 1433 425 1887q0 254 211 380.5t700 126.5q221 0 415.5-35.5t303-140T2163 1989q0-95-37-178zm-564.5 293q-83.5 64-187.5 64-26 0-54-3.5t-57-11.5l-18 52q-7 13-17 13-2 0-3.5-1t-2.5-1l-133-49q-12-5-12-18l1-4 24-63q-106-63-176-139.5t-70-94.5q3-6 7-10l130-82 5-2q2 0 4-1 4 0 49.5 49.5T1169 1897l60-166q-14-10-26-21t-25-21l-9-8q-104-90-127.5-134.5T1018 1456q0-81 74-144t171-63q63 0 133 22l21-60q3-11 17-11h6l133 48q11 6 11 17v6l-30 79q60 41 110 85t76 73l2 3q0 2 1 4 0 10-6 13l-112 84q-3 3-10 3t-8-3q-23-22-52-45l-62-49-49 135q126 110 163.5 173.5T1645 1950q0 90-83.5 154zm-12-1446q8.5 40 17.5 77 27 5 61 15t67 22q12-14 30.5-32t33.5-30l10-9q8-5 26-15t35-10q26 0 26 28 0 22-23.5 73.5T1806 833q26 19 46 45 47-10 115-15.5t107-15.5 39-54q-9-48-71-81t-62-78q0-9 2.5-19t2.5-19q0-41-30.5-62.5T1885 512l-11 1q-17 0-34.5 2t-35.5 2q-50 0-97-47t-79-47-59.5 45-27.5 111q0 39 8.5 79zM1713 986l6 2q3 0 6 1 20 0 38.5-14t18.5-30q0-15-18-31t-47-29l-75-38q-38-19-83-19-28 0-53.5 12t-25.5 31q0 23 33 29t87.5 27.5T1713 986zm-383 982q5 0 8 1t7 1q28 0 48.5-15t20.5-39q0-14-12-30t-29-33zm6-534l-11-2q-6 0-12-1-19 0-38 11t-19 36q0 14 12 27t32 29z" + }, + "children": [] + }] +}; +exports.u1F4B0 = u1F4B0; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4B1.js b/dist/noto_emoji_regular/u1F4B1.js new file mode 100644 index 000000000..b5662ab6f --- /dev/null +++ b/dist/noto_emoji_regular/u1F4B1.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4B1 = void 0; +var u1F4B1 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2341 1785q23 50 35 103.5t12 111.5q0 213-153.5 367T1866 2521q-168 0-304-98.5T1374 2170H462q-25 0-42-17.5t-17-41.5v-762H271q-25 0-42-17t-17-42V412q0-25 17-42t42-17h1821q23 0 41 17t18 42v214q113 75 175 190t62 247q0 57-12 110.5t-35 103.5v508zM330 1232h1043q-13-44-20.5-84t-7.5-85q0-214 153-368t368-154q45 0 86 7t80 20v-97H330v761zm1017 820q-2-14-2-39 0-161 78-287t215-194q-130-64-206-183H520v703h827zm803-1274.5Q2030 659 1866 659q-163 0-283 118t-120 286q0 165 118.5 284.5T1866 1467q161 0 282.5-119.5T2270 1063q0-167-120-285.5zm1.5 938.5Q2033 1596 1866 1596q-163 0-283 118t-120 286q0 165 117.5 284t285.5 119q167 0 285.5-120.5T2270 2000q0-164-118.5-284zm-87-415.5Q2006 1349 1925 1356v36q0 12-13 12h-93q-12 0-12-12v-44q-77-16-119.5-37t-81.5-48l-5-5 3-7 62-83q0-2 5-2 6 0 46.5 21t89.5 31v-117l-48-19q-96-35-123.5-68t-27.5-76q0-70 56-114.5t143-48.5v-42q0-11 12-11h93q13 0 13 11v56q48 12 88.5 29t61.5 27l6 7-1 7-53 78q0 4-6 4-3 0-4-1l-92-33v96q53 23 100 46t72.5 57.5 25.5 77.5q0 68-58.5 116.5zM1142 1781l50 112-2 8q-85 73-206 73-104 0-182-54t-106-143h-93q-3 0-6-2.5t-3-5.5v-62q0-5 3-6.5t6-1.5h78q0-5-1-10.5t-1-10.5 1-9.5 1-9.5h-78q-3 0-6-2.5t-3-5.5v-63q0-3 3-6t6-3h93q28-89 106.5-142t181.5-53q122 0 200 60l1 8-58 115-4 3-5-1q-25-19-60.5-30.5T985 1527q-38 0-69 14t-52 38h99q4 0 7 3t3 6v63q0 8-10 8H830l-1 19 1 21h133q10 0 10 8v62q0 8-10 8h-99q21 25 51.5 38.5T985 1829q32 0 75.5-14t72.5-37l5-1zM451 575q-3 0-3-5 0-8 4.5-11t9.5-3h121q9 0 11 6l133 191 135-191q2-6 11-6h120q5 0 9.5 2.5t4.5 9.5q0 2-1 3l-2 4-141 211h107q4 0 6.5 3.5t2.5 7.5v66q0 11-9 11H805v41h165q4 0 6.5 3.5t2.5 7.5v67q0 10-9 10H805v113q0 13-13 13H663q-12 0-12-13v-113H485q-11 0-11-10v-67q0-4 3-7.5t8-3.5h166v-41H485q-11 0-11-11v-66q0-4 3-7.5t8-3.5h108zm1692 1611l1 11q0 14-50 54t-136 40q-43 0-114.5-18.5T1729 2254q-34 0-52 8t-29 8q-3 0-6.5-2t-4.5-5l-45-108v-8l5-4q46-15 71-38.5t38-49.5h-91q-5 0-7-3t-2-7v-85q0-9 9-9h97q-5-38-12.5-67.5t-7.5-58.5q0-71 46-117t122-46q67 0 116.5 48t49.5 65q0 6-3 9l-79 71-8 3-7-6q-9-17-25-33t-31-16q-18 0-27 12.5t-9 24.5q0 7 6.5 24.5t12.5 86.5h102q9 0 9 9v85q0 4-2 7t-7 3h-107q-3 19-8.5 38t-15.5 36q30 10 72.5 19.5t56.5 9.5q28 0 52.5-9.5t44.5-24.5l16-13 8-3 5 3 47 59zm80-745q-29 28-61 50.5t-67 40.5q35 17 67 39.5t61 49.5v-180zm-298-216q17-5 29-14t12-26q0-14-11.5-23t-29.5-18v81zm-118-335q-14 3-27.5 10.5T1766 923q0 16 10 24t31 15v-72z" + }, + "children": [] + }] +}; +exports.u1F4B1 = u1F4B1; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4B2.js b/dist/noto_emoji_regular/u1F4B2.js new file mode 100644 index 000000000..cffce9cfe --- /dev/null +++ b/dist/noto_emoji_regular/u1F4B2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4B2 = void 0; +var u1F4B2 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1971 2152.5Q1799 2326 1499 2350v118q0 16-11 26.5t-28 10.5h-302q-16 0-26.5-10.5T1121 2468v-142q-96-17-193.5-47.5t-184.5-68-180-95.5-99.5-68-6.5-21 6-17l201-263q9-11 24-11 10 0 40 19.5t153.5 71.5 239.5 79v-378l-158-59q-207-76-297.5-136.5T525 1192t-50-190q0-184 160.5-347T1121 478V342q0-15 10.5-26.5T1158 304h302q17 0 28 11.5t11 26.5v182q176 45 329.5 108.5t163 75 9.5 22.5q0 10-4 18l-167 252q-8 13-26 13-3 0-5-1l-6-1q-61-26-135-53.5T1499 904v309q233 92 370 173t205.5 187 68.5 221q0 185-172 358.5zM1499 1929q62-15 98.5-49t36.5-83q0-40-36-70.5t-99-58.5v261zM1121 850q-73 15-103 44.5T988 967q0 45 34.5 68.5t98.5 43.5V850z" + }, + "children": [] + }] +}; +exports.u1F4B2 = u1F4B2; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4B3.js b/dist/noto_emoji_regular/u1F4B3.js new file mode 100644 index 000000000..7b53c9416 --- /dev/null +++ b/dist/noto_emoji_regular/u1F4B3.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4B3 = void 0; +var u1F4B3 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2334 1605q-126 85-302 189t-420 230.5-480.5 250.5T794 2399q-67 0-104-22.5t-82.5-79.5T447 2002t-230-520l-25-60q-20-49-36-98t-16-103q0-62 27-115t75-99 122.5-87.5 376.5-173T1243.5 537t255.5-93.5 128-15.5q71 0 131.5 24t107.5 81l82 99 84 104q139 172 283.5 339t144.5 310q0 135-126 220zm-67-378q-43-67-164-223l-88-112-1573 745 66 137q33 68 61 124l48 97q36 72 80.5 136t132.5 64q42 0 85.5-14t95.5-42l55-29 89-45 87-43q285-139 521-265.5t391.5-215T2310 1344q0-50-43-117zm-1984 19.5q5 21.5 11 43.5l1499-675q-33-41-73.5-60.5T1626 535q-63 0-140 28l-180 71q-69 27-153 61l-172 70q-189 77-446 191t-257 250q0 19 5 40.5zm1915.5 151Q2176 1428 2067 1484l-46 23q-14 8-35.5 17t-47.5 9q-58 0-104-68t-46-114q0-32 21-56.5t53-41.5l76-40q41-21 73-32.5t59-11.5q61 0 106 64.5t45 101.5q0 32-22.5 62.5zM1972 1457l112-58q24-11 47-29t23-35q0-15-28-57t-56-42l-10 1q-36 8-65 23l-61 31-24 11q-28 13-42.5 26t-14.5 26q0 14 8 27l14 24 13 19q15 26 26 34t24 8q17 0 34-9z" + }, + "children": [] + }] +}; +exports.u1F4B3 = u1F4B3; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4B4.js b/dist/noto_emoji_regular/u1F4B4.js new file mode 100644 index 000000000..44d203c14 --- /dev/null +++ b/dist/noto_emoji_regular/u1F4B4.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4B4 = void 0; +var u1F4B4 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2373 764q25 0 42 17t17 42v1192q0 25-17 42t-42 17H226q-23 0-41-17t-18-42V823q0-25 18-42t41-17h2147zm-59 118H286v1074h2028V882zM438 1094q-2-4-2-8 0-7 5-11.5t11-4.5h143q10 0 13 7l158 242 156-242q6-7 14-7h144q5 0 10 3.5t5 11.5q0 2-1 4l-2 5-167 267h126q12 0 12 13v83q0 13-12 13H858v53h193q5 0 8.5 3.5t3.5 8.5v85q0 13-12 13H858v142q0 6-4.5 10.5T841 1790H689q-6 0-10.5-4.5T674 1775v-142H480q-13 0-13-13v-85q0-5 4-8.5t9-3.5h194v-53H480q-13 0-13-13v-83q0-13 13-13h126z" + }, + "children": [] + }] +}; +exports.u1F4B4 = u1F4B4; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4B5.js b/dist/noto_emoji_regular/u1F4B5.js new file mode 100644 index 000000000..863eab37b --- /dev/null +++ b/dist/noto_emoji_regular/u1F4B5.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4B5 = void 0; +var u1F4B5 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2373 763q25 0 42 17.5t17 41.5v1193q0 24-17 41.5t-42 17.5H226q-23 0-41-17.5t-18-41.5V822q0-24 18-41.5t41-17.5h2147zm-59 118H286v1075h2028V881zM418 1652l-4-8 3-8 72-96q4-4 10-4 3 0 50.5 24t106.5 39v-139q-3 0-119-47.5T421 1267q0-81 65.5-133.5T656 1077v-51q0-5 4.5-9.5t9.5-4.5h111q6 0 10 4.5t4 9.5v67q54 14 103 33t75 33l5 7-1 9-60 92-4 4q-2 2-5 2-4-2-5-2l-50-19-58-21v114q131 52 183 102.5t52 110.5q0 81-69.5 138.5T795 1760v44q0 5-4 9.5t-10 4.5H670q-5 0-9.5-4.5t-4.5-9.5v-52q-71-14-134-42t-104-58zm238-440q-18 3-33 12.5t-15 31.5q0 16 12.5 25t35.5 15v-84zm139 395q17-5 33-15.5t16-32.5q0-14-13-25.5t-36-22.5v96z" + }, + "children": [] + }] +}; +exports.u1F4B5 = u1F4B5; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4B6.js b/dist/noto_emoji_regular/u1F4B6.js new file mode 100644 index 000000000..cffb31baa --- /dev/null +++ b/dist/noto_emoji_regular/u1F4B6.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4B6 = void 0; +var u1F4B6 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2374 763q25 0 42 17t17 42v1193q0 25-17 42t-42 17H226q-25 0-42-17t-17-42V822q0-25 17-42t42-17h2148zm-59 118H285v1075h2030V881zm-1192 679l63 145q0 2 1 4 0 10-77.5 54T920 1807q-133 0-233-69.5T552 1556H433q-10 0-10-10v-80q0-4 2.5-7.5t7.5-3.5h100l-1-12q0-6-1-13l1-13q0-6 1-12H433q-10 0-10-11v-79q0-11 10-11h119q35-112 135-181.5t233-69.5q113 0 185.5 36.5t72.5 46.5q0 2-2 5l-73 147q-3 4-8 4-6 0-17-10t-56-27.5-101-17.5q-49 0-88.5 18t-65.5 49h127q11 0 11 11v79q0 11-11 11H724q0 6-1 12l-1 13q0 7 1 13l1 12h170q5 0 8 3.5t3 7.5v80q0 10-11 10H767q26 32 65 49.5t89 17.5q46 0 98-18.5t72-34 26-15.5q3 0 6 5z" + }, + "children": [] + }] +}; +exports.u1F4B6 = u1F4B6; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4B7.js b/dist/noto_emoji_regular/u1F4B7.js new file mode 100644 index 000000000..41357b74d --- /dev/null +++ b/dist/noto_emoji_regular/u1F4B7.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4B7 = void 0; +var u1F4B7 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2375 762q24 0 41 17t17 42v1193q0 25-17 42.5t-41 17.5H226q-24 0-41.5-17.5T167 2014V821q0-25 17.5-42t41.5-17h2149zm-59 118H286v1075h2030V880zm-1178 793q3 4 3 8 0 9-27.5 41t-82 58-130.5 26q-69 0-144.5-23.5T609 1759q-47 0-72 10t-33 10-11-8l-59-138q0-4-1-7 0-10 25.5-15.5t64-34T579 1505H464q-13 0-13-13v-108q0-12 13-12h124q-7-51-16.5-90t-9.5-73q0-89 60-147t155-58q65 0 116.5 36t79.5 80l15 24q2 4 2 6 0 6-5 9l-101 91q-5 3-9 3-8 0-14.5-15t-26-34.5T789 1184q-23 0-31.5 14t-8.5 29q0 13 9.5 50.5T771 1372h132q5 0 8.5 3.5t3.5 8.5v108q0 5-4 9t-8 4H765q-4 24-11.5 48.5T735 1600q14 3 77 20t87 17q36 0 74-15.5t71-45.5l4-2q2 0 6-1 4 0 8 4l59 75z" + }, + "children": [] + }] +}; +exports.u1F4B7 = u1F4B7; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4B8.js b/dist/noto_emoji_regular/u1F4B8.js new file mode 100644 index 000000000..7914ec4b3 --- /dev/null +++ b/dist/noto_emoji_regular/u1F4B8.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4B8 = void 0; +var u1F4B8 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2418 1412q-62 46-142 46-11 0-23-1l-23-2q-23 28-62.5 42t-71.5 14q-11 0-22.5-1t-22.5-3q-14 17-44.5 33t-80.5 16q-34 0-67-11-14 17-40.5 31.5T1748 1591q-34 0-74-8t-81-25q-76 171-192 314.5T1139 2137l-40 32q-34 27-67 42t-66 15q-83 0-357.5-126t-303-153-28.5-59l1-11q0-4 23.5-115.5T325 1563v-31q0-30 48-54.5t111-72.5 126-103q-23-16-36-34t-19-34q-58-9-96.5-40.5T410 1126q-8-2-16-5l-16-6q-24-8-55.5-37t-41.5-64q-72-22-117-72t-45-109q0-57 43-98.5T274 693q113 0 207.5-38T626 617q149 0 202.5 142.5T908 956q46-68 68-106l26-47q11-22 29.5-33t39.5-11q9 0 21 3l482 127q48 13 55.5 65t21.5 170q53-41 138-132.5t185-91.5q104 0 193.5 95.5T2354 1143l20 11q46 23 59.5 35.5t30 41.5 16.5 67q0 68-62 114zm-292-68l-1-6q0-2-1-5 0-4 2-6.5t10-2.5 14 2l12 6q25 11 54.5 20t59.5 9q35 0 70.5-18t35.5-47q0-31-37-48t-98-52.5-107.5-88-85-80.5-80.5-28q-60 0-119 66.5t-144 135-135 95-50 62.5q0 59 73.5 96.5T1748 1492q30 0 38.5-9t8.5-31q0-5-1.5-11.5t-1.5-12.5q0-10 12-10 7 0 14 3l12 5q23 14 46.5 23t49.5 9q21 0 37.5-7t16.5-21q0-4-1-7t-5-8l-8-9-7-10q-4-5-4-9 0-5 2-8t9-3q4 0 9 2l7 3q27 11 56 21.5t57 10.5q15 0 39-8.5t24-20.5q0-5-4.5-9.5l-9.5-9.5-11-9q-6-5-7-12zm-1437-9q-57 54-121 105t-138 99l585 228q43-30 100.5-85t120.5-131q-74-44-190.5-92.5T689 1335zm-5-106q48-48 87.5-94.5T844 1044q-61-109-94-219.5T626 714q-23 0-46.5 7.5T532 738l-49 20q-28 11-57.5 17.5T367 785l-67 6h-10q-41 0-56.5 11T218 832q0 33 45.5 66.5T392 932q9 0 19.5 2t10.5 10q0 15-24 20t-24 17q0 14 25 33.5t69 23.5l54 5q21 0 21 9 0 10-20 18.5t-20 21.5q0 21 33 34.5t67 13.5l33-1q8 0 17.5 2t9.5 10q0 5-9 16t-9 26 17 25.5 22 10.5zm387-392q-25 48-56.5 100.5T934 1056q214 57 318 100t180 89q32-62 63-131.5t59-148.5zm200 643l114-148 11-17q-91-55-219.5-103T897 1130l-132 147q38 14 217.5 74.5T1271 1480zm176 42l-18-111q-31 51-61.5 95t-60.5 82q0 5 1 9v9q2 33 3.5 66.5t1.5 67.5q0 25-2.5 48.5t-2.5 48.5v13.5l5 12.5 36-31q15-14 60.5-73t45.5-124q0-58-8-113zm-495 599q8-8 8-21 0-26-17.5-33.5T723 1978t-254-109l-21-11q-11-5-20-8.5t-14-3.5q-13 0-20.5 8.5T386 1876q0 11 16.5 23t42.5 24l24 12q38 20 76 36.5t77 32.5l8 5q202 85 251 102.5t52 17.5q11 0 19-8zm43-262.5q-1-10.5-9-18.5l-572-223q0 10-1.5 17.5T411 1648q0 13 7 20.5t22 12.5l20 7q30 10 471 191l25 11q11 5 20.5 9t12.5 4q5 0 6-7t1-15q0-12-1-22.5zm-21 102q-21-5.5-61-22.5l-65-28q-71-28-201-81.5T482 1761l-36-17q-11-5-20-8.5t-14-3.5q-8 0-10.5 9t-2.5 17q0 24 69 51.5t96.5 41T694 1904l181 72 55 24 26 10q11 5 18 5 11 0 16-8t5-19q0-22-21-27.5z" + }, + "children": [] + }] +}; +exports.u1F4B8 = u1F4B8; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4B9.js b/dist/noto_emoji_regular/u1F4B9.js new file mode 100644 index 000000000..29cabfea4 --- /dev/null +++ b/dist/noto_emoji_regular/u1F4B9.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4B9 = void 0; +var u1F4B9 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2367 2413q21 0 35.5 14.5t14.5 34.5q0 21-14.5 35.5T2367 2512H232q-20 0-35-14.5t-15-35.5V342q0-21 15-35.5t35-14.5 34.5 14.5T281 342v1644l236-241q10-11 22.5-15.5t26.5-5.5q25 0 44 16l212 177 434-1318q8-22 26-34t40-12q19 0 35 9t25 26l309 561 180-518q7-21 25-35l393-274q19-12 39-12 28 0 49 20.5t21 48.5q0 35-31 57l-374 260-223 643q-8 22-26 33.5t-40 11.5q-18 0-33.5-8.5T1645 1350l-306-558-418 1265q-8 20-25.5 34t-40.5 14q-25 0-44-17l-241-201-289 295v231h2086zM500 585q-13-24-48-73.5T417 429q0-25 27.5-37.5T521 379q42 0 69 47t61 112 50 65q21 0 58-66.5t62.5-112T891 379q51 0 78 12.5t27 37.5q0 21-36.5 88.5T878 644q5 0 8.5 1t8.5 1h16q33 0 54 13.5t21 39.5q0 28-18 40t-90 12l-68-1q-5 9-7 19l-4 21q7 0 21-1h28l37 2h21q39 0 59.5 13t20.5 39q0 28-19 40.5T878 896l-82-1v97q0 81-22 99.5t-70 18.5q-50 0-71.5-17t-21.5-88v-54q0-26 1-56h-82q-61 0-82-6.5T427 847q0-27 13-41.5t53-14.5h117q0-11-4-21.5t-9-19.5h-67q-65 0-84-7.5T427 703q0-28 13.5-42.5T489 646l44 1z" + }, + "children": [] + }] +}; +exports.u1F4B9 = u1F4B9; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4BA.js b/dist/noto_emoji_regular/u1F4BA.js new file mode 100644 index 000000000..ce9ffc341 --- /dev/null +++ b/dist/noto_emoji_regular/u1F4BA.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4BA = void 0; +var u1F4BA = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2044 1720q6 23 10.5 48t7.5 50l9 66 38 333q6 55 9.5 99.5t3.5 66.5q0 16-3.5 22t-21.5 17.5-37 11.5q-22 0-25-19t-6-39l-27-164q-8-50-17-102l-17-102q-18-103-28.5-140.5T1916 1803q-48 23-108.5 44t-134.5 35l4 387 6 278q0 29 1 34 0 28-33.5 46t-51.5 18q-12 0-20-4t-14-10q-8-104-20-238.5t-11-128.5l-9-107q-9-96-12.5-153.5T1501 1901q-20 2-39 2h-40q-48 0-99-3t-108-10l-18 239q-11 124-15 136.5t-24.5 23-40.5 10.5q-24 0-26-20.5t-4-72.5l-3-75q-2-29-3.5-133t-1.5-128q-92-16-180-37t-163-47q-26 59-50 132t-46 162l-23 89-27 112q-10 34-17.5 81t-50.5 67-68 20q-10 0-16.5-4t-6.5-12q0-6 4-33l10-64q4-32 11-71.5t14-75.5l58-302q5-29 13-75.5t30-100.5q-42-25-59.5-54t-17.5-61q0-8 1-15t3-14q-16-28-16-59 0-68 56.5-91.5t198-48.5 246.5-25q140 0 268 46.5t245 54.5q12-15 17-40t5-56q0-28-3-58t-8-59q-321-38-436-103.5T956 940l1-15-5-30q-3-14-3-31 0-145 105.5-352T1296 305q19 0 164 20.5t291 20.5q32 0 89-1t60-1q113 0 172 53t71 141.5 12 156.5q0 121-38.5 312T1842 1236q12 48 16.5 83t4.5 61-3 42q32-4 60-6t54-2q88 0 111.5 33.5t23.5 68.5q0 7-1 14t-3 14q16 31 16 58 0 37-22.5 64t-54.5 54z" + }, + "children": [] + }] +}; +exports.u1F4BA = u1F4BA; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4BB.js b/dist/noto_emoji_regular/u1F4BB.js new file mode 100644 index 000000000..08694fb28 --- /dev/null +++ b/dist/noto_emoji_regular/u1F4BB.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4BB = void 0; +var u1F4BB = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M992 1660H303q-42 0-70.5-28.5T204 1561V507q0-40 29.5-69t69.5-29h1585q39 0 68.5 29.5T1986 507v1054q0 40-29 69.5t-69 29.5h-691v116h259q30 0 51.5 19.5t21.5 46.5v66H660v-66q0-27 21.5-46.5T733 1776h259v-116zm789-255q32 0 53.5-22.5t21.5-53.5V627q0-32-21.5-54t-53.5-22H408q-31 0-53 22t-22 54v702q0 31 22 53.5t53 22.5h1373zm-15 589q14 0 25 9.5t15 23.5l76 372v7q0 13-7.5 19.5t-19.5 6.5H349q-11 0-19-6.5t-8-19.5q0-4 1-7l76-372q3-14 14.5-23.5t26.5-9.5h1326zm595 387.5q-35 30.5-97 30.5-90 0-177.5-70t-87.5-139q0-7 1-12-49-16-71.5-45t-22.5-66q0-17 3.5-33t8.5-31l8-27q4-13 4-24 0-36-42.5-53t-120.5-17q-12 0-21-8.5t-9-22.5q0-20 14.5-25t32.5-5q102 0 155.5 35t53.5 96q0 17-4 33t-9 31l-9 29q-4 14-4 24 0 23 20 36t46 18q17-15 40-22.5t49-7.5q111 0 192.5 58.5T2396 2305q0 46-35 76.5zm-629-62.5q13 0 22.5-9.5t9.5-23.5q0-15-9.5-25t-22.5-10H483q-14 0-24 10t-10 25q0 14 10 23.5t24 9.5h1249zM515 2090q-14 0-23.5 10t-9.5 24 9.5 23.5 23.5 9.5h1184q14 0 24-9.5t10-23.5-10-24-24-10H515z" + }, + "children": [] + }] +}; +exports.u1F4BB = u1F4BB; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4BC.js b/dist/noto_emoji_regular/u1F4BC.js new file mode 100644 index 000000000..0030967d3 --- /dev/null +++ b/dist/noto_emoji_regular/u1F4BC.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4BC = void 0; +var u1F4BC = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2369.5 1703q-3.5 78-9 207.5t-18 195-48 118T2144 2285l-170 12-190 12-221 13q-114 7-228 12l-215 11q-73 4-159 7t-139 3q-24 0-42.5-1t-38.5-1q-88 0-252-59.5t-207.5-111T227 2001l15-596 7-238q4-167 65.5-238.5t252-92T893 816q44 0 65-8t21-25q0-7-4-16l-10-18q-5-10-9.5-21t-4.5-22q0-85 58-159t180-74q76 0 102.5-2t39.5-2h35q56 0 111 3l112 8q61 6 96.5 37t55 69 19.5 125q0 16-8.5 33t-8.5 30q0 26 48 39.5t155 13.5q199 0 281 31.5t107.5 104 32 258 6.5 276.5q0 128-3.5 206zm-105.5 57l-6-439-3-130-3-86q-3-68-44.5-103t-97.5-35l-54-1-275-7-188-3q-94-2-195-3t-197-1q-263 0-359 11t-139 48.5-43 97.5q0 59-1 136l-2 162-10 462-3 87q-2 27-3 54t-1 53q0 104 42.5 143t129.5 39q8 0 15-1t146-7l209-9q362-16 668.5-39t338-45 53.5-64.5 22-215.5v-104zm-150-494.5q-72 12.5-161 15.5l-47 2q-211 7-431 10t-487 3q-52 0-102.5 2t-101.5 2q-17 0-30.5-9t-13.5-24q0-41 123.5-47.5T1088 1207t369-9l273-3q76 0 202.5-2.5t141.5-2.5h25q37 2 62 13t25 30q0 20-72 32.5zm1 481q-71 12.5-162 15.5l-47 2q-213 7-427.5 9.5T988 1776q-52 0-102.5 2.5T784 1781q-17 0-30.5-9t-13.5-24q0-40 103-45t222.5-12.5T1546 1680l457-6q14 0 33-1.5t39-1.5q54 0 82.5 11t28.5 31q0 21-71 33.5zm-82 117.5h36q58 0 86.5 11t28.5 33q0 26-47 31.5t-98 10-105 6.5l-209 8q-54 2-415.5 17.5T892 1997q-93 0-117-8.5t-24-35.5q0-33 81-34.5t490.5-27.5 683.5-26zM783.5 1444q31.5-9 132.5-9 254-9 508-23t508-14h75l26-1h31q62 0 91 12t29 35q0 26-57 31.5t-104 8.5l-89 4-209 6q-145 5-340 10t-374 11l-47 1q-24 0-48 1-95 0-129.5-8.5T752 1471q0-18 31.5-27zM1251 642q-50 5-79.5 30t-29.5 77q0 31 25.5 47t110.5 16q48 0 90 3.5t83 3.5q91 0 125-26t34-76q0-39-26-57.5t-88-18.5h-32l-28 1q-26 0-53.5-1.5T1329 639q-21 0-41 1z" + }, + "children": [] + }] +}; +exports.u1F4BC = u1F4BC; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4BD.js b/dist/noto_emoji_regular/u1F4BD.js new file mode 100644 index 000000000..c3f175de6 --- /dev/null +++ b/dist/noto_emoji_regular/u1F4BD.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4BD = void 0; +var u1F4BD = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2441.5 933.5Q2424 981 2414 1013l-102 327-35 111-128 396q-24 74-47 149l-46 145-41 127q-3 10-48 146.5T1800 2551q-40 0-89-12t-109-36l-719-272-192-72q-181-69-294.5-108t-185-79-71.5-111q0-29 10-65.5t23-67.5l15-39q68-178 142-356.5t145.5-354 139-359.5T725 389t107-46q45 0 308.5 53T1778 554l365 103q66 18 90.5 28t89 28.5 100.5 49 36 87.5q0 36-17.5 83.5zM1981 1002q-80-156-216-256-33 100-71 205.5t-64.5 182.5-88.5 77q-17 0-32.5-3.5t-32.5-8.5q31 56 31 118 0 105-77.5 177t-177.5 72q-103 0-172.5-70t-69.5-165q0-75 43-137.5t107-90.5q-36-13-50-32t-14-45q0-32 25.5-94t58.5-165l56-171q-195 16-367.5 125t-271 281-98.5 372q0 193 99.5 367.5T872 2016t388 100q217 0 405.5-110t292-294.5T2061 1332q0-174-80-330zm-319-397l-25-6-116-31q-56-15-114-28l-14-3q-9 0-17-1-13 0-21.5 9T1287 727l-58 173-15 39q-8 20-13.5 37.5t-5.5 27.5q0 21 33 31.5t101.5 33T1451 1105l25 6q13 4 27 4 18 0 29.5-11.5t18-26.5 68-190.5T1694 677t14-45q0-9-10.5-15t-35.5-12z" + }, + "children": [] + }] +}; +exports.u1F4BD = u1F4BD; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4BE.js b/dist/noto_emoji_regular/u1F4BE.js new file mode 100644 index 000000000..365495ff8 --- /dev/null +++ b/dist/noto_emoji_regular/u1F4BE.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4BE = void 0; +var u1F4BE = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2429 874q14 27 14 58 0 24-61 229.5T2265 1536l-100 314-93 294-71 222q-41 123-84.5 155.5T1815 2554q-71 0-187-45t-248.5-94-261-97-261-98.5T598 2122t-249-92.5-157.5-81T156 1863q0-24 6.5-51t26.5-80l15-39q17-49 37-97l40-95q88-220 175.5-433t166-425.5 121.5-255T849 345q18 0 37.5 2.5T926 354l253 49q175 35 470 115t509 142l91 28q96 30 118.5 72t32.5 60zM979.5 1026.5q9.5 6.5 23.5 11.5l144 46 5 2q61 18 171 54t225 67l154 41q32 9 53 14l25 6q15 5 28 5 39 0 55-54.5t66.5-182 57-156T2022 786q10-23 10-41 0-28-28-42t-90-35-177-51l-132-34q-70-17-132.5-36.5T1341 514l-78-14-30-4q-16-2-29-2-46 0-65 41.5t-94 249-75 221.5 9.5 20.5zM1934 1589q4-11 7.5-26t3.5-29q0-19-14.5-30t-35.5-16l-24-6-104-32q-247-78-499-157l-542-168q-19-6-34-6-35 0-56 58.5T548.5 1397 437 1670t-45 157 45 76 130 60 447.5 164 446.5 170 143 35q47 0 76-24t49-81l33-102 130-407zm-369-451q-19-5-35-14t-16-26q0-10 51-153t79-217l13-30q5-11 25-11 24 0 48.5 8.5T1778 709l79 17q19 5 36 10t29 11l6 6 1 12q0 17-10 43l-17 46q-25 70-51 140l-52 141q-4 8-13 31.5t-35 23.5q-12 0-48.5-10t-61.5-18z" + }, + "children": [] + }] +}; +exports.u1F4BE = u1F4BE; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4BF.js b/dist/noto_emoji_regular/u1F4BF.js new file mode 100644 index 000000000..6708c96bb --- /dev/null +++ b/dist/noto_emoji_regular/u1F4BF.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4BF = void 0; +var u1F4BF = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2057.5 1870.5Q1938 2075 1735 2191t-435 116-435-116-322.5-320.5T423 1430q0-232 117.5-436T862 672t438-118 438 118 321.5 322 117.5 436q0 236-119.5 440.5zM2055 1335q-3-36-10-71.5t-18-69.5l-472 143q7 23 12 48zm-619.5 213.5Q1493 1492 1493 1412q0-78-57.5-135t-135.5-57q-79 0-136 57.5t-57 134.5q0 78 57 135.5t136 57.5q78 0 135.5-56.5zM548 1322l486 56q18-93 93-155.5t173-62.5q67 0 123 29l244-440q-82-45-174.5-70T1300 654q-287 0-502.5 192.5T548 1322zm5 215q5 36 14.5 70.5T589 1675l451-166-6-25q-3-13-4-25zm1492 15l-476-88q-12 100-89.5 169t-179.5 69q-33 0-63.5-8t-58.5-22l-201 426q74 35 155 54t168 19q275 0 486-177t259-442zm-807-204q28-26 62-26 38 0 64 26.5t26 60.5q0 42-24 67.5t-66 25.5q-36 0-63-25.5t-27-64.5q0-38 28-64z" + }, + "children": [] + }] +}; +exports.u1F4BF = u1F4BF; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4C0.js b/dist/noto_emoji_regular/u1F4C0.js new file mode 100644 index 000000000..16f33a462 --- /dev/null +++ b/dist/noto_emoji_regular/u1F4C0.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4C0 = void 0; +var u1F4C0 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M490.5 703q123.5-188 341-297.5T1299 296q252 0 470.5 111T2110 705t122 398q0 212-122.5 398.5t-340.5 297-470 110.5q-249 0-466-108.5t-341.5-296T367 1103q0-212 123.5-400zm8.5 284l518 52q18-87 98.5-144.5T1299 837q70 0 131 28l259-406q-88-42-186-64t-204-22q-304 0-534 176.5T499 987zm1593 211l-507-80q-14 93-96.5 155.5T1299 1336q-35 0-68-7t-62-20l-214 391q79 32 165 49.5t179 17.5q290 0 515.5-161.5T2092 1198zM950.5 2442q-77.5 69-206.5 69-25 0-46-2t-43-2q-53 0-78-17.5t-25-68.5q0-12 1-24.5t1-24.5l-3-89q-2-43-2-85l1-65q0-32 5-61l3-21q2-20 13-30.5t33-14.5l4-1q11-5 26-6t29-1q145 0 215.5 24.5t110 88.5 39.5 144q0 118-77.5 187zm1076 1q-77.5 68-205.5 68-24 0-45-2t-44-2q-52 0-77.5-17.5T1629 2421q0-11 1-22v-20q0-47-2-91.5t-2-89.5q0-124 15-162t99-38q146 0 217.5 25.5t109 89T2104 2254q0 121-77.5 189zM1524 2143q-12 37-21 72l-22 76q-44 153-82 189.5t-89 36.5q-89 0-124.5-95.5t-70-208.5-34.5-140 23-41.5 70-14.5q25 0 41 15t24 39l8 29q4 15 22 102t39 87q20 0 29.5-64.5T1366 2106l9-29q7-26 21-41.5t38-15.5q57 0 79.5 16t22.5 36q0 34-12 71zm-80-949q60-53 60-124t-60.5-124.5T1299 892q-82 0-144 53t-62 125q0 73 63 125t143 52q85 0 145-53zm125-194q10 19 13 44l520-45q-3-33-10.5-65.5T2073 870zM504 1184q12 68 39 129l479-155q-7-23-11-45zm1409 981q-31-28-88-28-9 0-15.5 5t-6.5 18v78q0 25-1 50l1 52q0 14 9.5 21.5t25.5 7.5l18 1q41 0 64.5-32.5t23.5-83.5q0-61-31-89zm-1075 1q-29-29-91-29-13 0-17.5 8.5T725 2168l1 23v47q0 25-1 50 0 40 4 61t49 21q41 0 65-32.5t24-83.5q0-59-29-88zm392.5-1154.5Q1258 987 1299 987q40 0 68.5 25t28.5 58q0 35-29.5 59.5T1299 1154q-36 0-66-24t-30-60q0-34 27.5-58.5z" + }, + "children": [] + }] +}; +exports.u1F4C0 = u1F4C0; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4C1.js b/dist/noto_emoji_regular/u1F4C1.js new file mode 100644 index 000000000..4e7a2a8c3 --- /dev/null +++ b/dist/noto_emoji_regular/u1F4C1.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4C1 = void 0; +var u1F4C1 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2058.5 1169q-2.5 52-6.5 135l-33 605-10 194q-4 63-7 136t-3 101q0 35-29.5 64t-67.5 29q-16 0-29.5-4.5T1848 2417L732 1703q-17-9-29-28t-15-39L541 728q0-5-1.5-14.5T538 693q0-62 39.5-110.5T681 534q17 0 35.5 4t38.5 11q14-53 57.5-88.5T911 425q42 0 79 18t69 38l375 238q32-34 68-52t76-18q29 0 52.5 9t54.5 24l83 42q137 70 186.5 109.5t78 100T2061 1107q0 10-2.5 62zM638 711q0 2 6 37t17 102l97 605 27 166 1117 714-77-422q-15-79-28-159l-26-148q-26-149-32.5-206t-44-113-75.5-83l-116-74-115-72-136-84q-71-44-142-90l-136-86q-64-40-116-74l-83-53q-29-20-54-29.5t-40-9.5q-21 0-32.5 15T637 692v14q0 3 1 5zm1210 759l21 124 26 150q14 80 29 160l37-752 1-46q0-133-51-181t-236-139l-62-30q-18-8-35-8-43 0-75 45.5t-53 45.5q-10 0-20-4.5t-19-11.5l-35-24-370-236q-26-17-50-29t-45-12q-29 0-45 22.5T844 600l205 131q64 41 135 85l140 88q69 44 132 83l190 118q30 19 32 21l28 23q43 37 81.5 101.5T1833 1369z" + }, + "children": [] + }] +}; +exports.u1F4C1 = u1F4C1; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4C2.js b/dist/noto_emoji_regular/u1F4C2.js new file mode 100644 index 000000000..7b94275cd --- /dev/null +++ b/dist/noto_emoji_regular/u1F4C2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4C2 = void 0; +var u1F4C2 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2284 1181l-6 134-39 799-13 237q0 37-30.5 65t-66.5 28q-16 0-28.5-4.5T2075 2429L959 1714q-5-2-12.5-8.5T936 1695l-163-178q-24-27-69-81.5T596 1301l-70-88-84-109q-82-105-101.5-136.5T319 919l-3-14q-2-9-2-21 0-41 32-75.5t79-34.5q38 0 72 17t117 73l282 191q12 9 25 17.5t24 16.5l8-127q5-75 6.5-150.5T968 656q0-90 44-155t125-65q58 0 123.5 41.5T1349 533l145 92q23 16 90.5 57.5T1655 726l5 4q31-34 68-52t76-18q42 0 80 20l90 45q139 70 192.5 108.5T2253 934t33 184q0 10-2 63zm-1273 451l1118 714-192-261q-49-66-94-130l-84-118q-24-35-75-109.5T1518 1579l-40-25q-47-31-80-52l-143-90-109-70q-32-21-95-63.5T938 1203l-203-137q-50-33-94-64l-80-54-86-56q-20-11-32-15t-18-4q-13 0-13 12 0 5 1 9l2 8q2 6 71.5 99T705 1280.5 919 1532l47 49q11 11 21 23.5t21 23.5zm774 66l158 225 134 187q32 45 59 81l7-137q3-77 8-162l37-731 1-52q0-115-47.5-166.5T1902 797l-62-30q-10-4-18.5-6t-17.5-2q-30 0-53.5 21.5t-39 46T1677 851q-10 0-20-4.5t-19-11.5l-35-25q-19-11-62-39l-97-61-110-71q-62-39-113-72.5t-84-33.5q-56 0-66.5 84.5T1053 883t-13 269q45 31 88.5 60.5t82.5 54.5l60 39q27 18 54 34l117 74q175 111 239.5 168.5T1785 1698z" + }, + "children": [] + }] +}; +exports.u1F4C2 = u1F4C2; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4C3.js b/dist/noto_emoji_regular/u1F4C3.js new file mode 100644 index 000000000..31cc94777 --- /dev/null +++ b/dist/noto_emoji_regular/u1F4C3.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4C3 = void 0; +var u1F4C3 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2395 2058q-39 67-86 104t-55 37l-977 228q-14 3-23.5 3t-20.5 1q-177 0-300-203t-183-542l-17-95q-24-139-51-338t-42-257l-380 83-12 1q-40 0-61-54t-21-140q0-87 38-152t98-99 79-34q6-2 43-10l94-19 132-25 154-30 160-30 152-29q141-26 211-37t126-11q174 0 268.5 90T1851 755t62.5 290 50.5 258l29 156q14 79 33 157l210-43h11q53 0 120 107t67 226q0 85-39 152zM807 1290l32 229q18 132 72.5 342.5t138 331T1233 2313l12-2q18-4 39.5-31.5t31.5-81.5q-24 11-54 19t-47 8q-25 0-38.5-18.5T1163 2168q0-37 31-47.5t121-34.5q-4-30-13-54t-20-44q-40 11-75 17l-77 14-20 2q-25 0-38-17t-13-38q0-43 62.5-55t67.5-13q-20-6-32-21t-12-35q0-22 13.5-38.5t33.5-20.5l719-144q-27-112-54-265t-48-254l-45-207-35-149q-26-114-86.5-175.5T1456 527q-25 0-50.5 2.5T1352 536l-80 14q-52 9-118 21l-294 56-150 29-132 27q64 50 108.5 123.5T752 959t43 237zm1397 801q51-29 82-79t31-106q0-52-22-105t-66-106l-887 177q50 58 73 128t23 149q0 24-6 71.5t-13 52.5zM988.5 1679.5Q977 1664 977 1644q0-39 43-52.5t333-73.5 319-68l33-10q16-5 29.5-8.5t20.5-3.5q23 0 37.5 17.5t14.5 37.5q0 21-16.5 34t-182.5 49.5-367.5 82.5-218.5 46q-22 0-33.5-15.5zM984 1369q-28 0-43-16.5t-15-38.5q0-46 59-47.5t194-35.5l103-25q90-23 205-39.5t156-29.5 50-13q21 0 34.5 15.5t13.5 33.5q0 28-44.5 43.5T1558 1249l-80 15q-81 14-234.5 55.5T984 1369zm-22-301q-21 0-32-14t-11-31q0-41 44-45.5t163-28.5l170-33q84-16 168.5-31.5T1634 857h7q19 0 28.5 12.5t9.5 28.5q0 36-37 43t-255.5 52.5T968 1068h-6zM847 820.5Q836 806 836 787q0-25 15.5-41.5t188.5-53 463-72.5h7q20 0 31 12.5t11 29.5q0 37-39 48t-192 29-292 57-151 39q-20 0-31-14.5z" + }, + "children": [] + }] +}; +exports.u1F4C3 = u1F4C3; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4C4.js b/dist/noto_emoji_regular/u1F4C4.js new file mode 100644 index 000000000..c39ffdf0a --- /dev/null +++ b/dist/noto_emoji_regular/u1F4C4.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4C4 = void 0; +var u1F4C4 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2399.5 633q-4.5 9-18.5 50l-136 392q-34 104-64 208.5t-68 240.5l-60 221-46 163-46 156q-22 74-52.5 151t-33.5 87-29.5 70.5-45.5 77.5-32 24.5-58 7.5q-30 0-146.5-18t-266.5-55-298.5-64-423.5-87l-148-34q-64-14-127-34l-8-2q-48-10-72-31.5t-24-54.5q0-20 9-37.5t15-26.5l3-6q113-199 189-519.5T534 1050l34-101q48-144 95.5-205t46.5-63 10-11l49-35q78-55 207.5-125.5t243.5-117 132-48.5h15q16 0 33 3.5t36 9.5l8 1q23 8 47.5 10t50.5 7l28 4q100 15 198 36t188 43l34 8q48 12 162 45.5t183 40 69 61.5q0 11-4.5 20zM2133 1038l79-234q12-38 25.5-76t24.5-67q-87-18-133-34.5t-85-26.5l-115-27q-92-22-185.5-43T1553 495l-27-3q-66-6-134-26l-147 291q-7 14-22.5 22.5T1193 788l-405-12q-67 73-127.5 266T523 1553.5 334 2077q60 19 122 33l145 33q131 31 344.5 72t304.5 62l127 30q60 15 124 27.5t139 21.5q7 0 17 1l43 6q10 0 18 1l5-3q9-16 17-34.5t14-35.5l10-28 50-130q53-138 152-515t167-580zm-399.5 630.5Q1719 1687 1693 1687l-8-1-74-20q-71-21-333-68t-377-78.5-123-41.5-11.5-19.5-3.5-18.5q0-17 10-29.5t28-12.5h6q447 49 679 108t247 78 15 43q0 23-14.5 41.5zm-68 249.5q-15.5 20-42.5 20-7 0-29.5-5.5t-210-40.5-259.5-54.5-191.5-38T752 1761t-67.5-32-6.5-26q0-20 14-37t37-17q148 0 498 85t402 92 52 50q0 22-15.5 42zm183.5-503q-15 20-43 20-11 0-322.5-61.5t-467-103-165-54-9.5-26.5q0-17 12.5-30.5T888 1146h9q190 39 558 105t388.5 80 20.5 41q0 23-15 43zm77-262q-11 15-34 15-26 0-52-5l-52-8q-102-12-277.5-44t-215.5-42l-154-38q-38-10-78-19l-52-14-21-4q-38-6-58-15t-20-36q0-17 12.5-33t34.5-16q26 0 57 9t59 14h7l253 55q249 54 363.5 70t176.5 20 62 58q0 18-11 33zm-500 993q-14 18-41 18l-225-50q-223-50-228.5-53.5T830 2039t-152-46-56-62q0-25 22.5-36t48.5-11q22 0 51.5 5t59.5 13l25 7 244 69q214 61 290.5 65t76.5 62q0 23-14 41zM1236 514q-90 38-163 76.5T944 664l214 5 64-129z" + }, + "children": [] + }] +}; +exports.u1F4C4 = u1F4C4; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4C5.js b/dist/noto_emoji_regular/u1F4C5.js new file mode 100644 index 000000000..361ec38a0 --- /dev/null +++ b/dist/noto_emoji_regular/u1F4C5.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4C5 = void 0; +var u1F4C5 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2457 622q25 0 42 17.5t17 41.5v1561q0 24-17 41t-42 17H243q-24 0-41.5-17t-17.5-41V681q0-24 17.5-41.5T243 622h601l472-332q14-10 34-10t34 10l472 332h601zm-59 119H302v1441h1635v-247q0-24 17-41t41-17l28-1q156-6 229.5-29t145.5-89V741zM1049 622h602l-301-212zm382 244v158h-60v-21h-43v21h-59V866h59v23h43v-23h60zm625 1282q82-48 132-92t89-93q-39 10-108.5 18.5T2056 1992v156zm342-148q-37 48-78.5 94t-100.5 88h179v-182zm-1225-817h-162v-61h162v61zm258 0h-162v-61h162v61zm258 0h-162v-61h162v61zm-1032 0H495v-61h162v61zm1290 0h-162v-61h162v61zm258 0h-162v-61h162v61zm-1290 0H753v-61h162v61zm1250 216h-82v-80h82v80zm-516 0h-82v-80h82v80zm258 0h-82v-80h82v80zm-774 195h-82v-79h82v79zm258 0h-82v-79h82v79zm258 0h-82v-79h82v79zm258 0h-82v-79h82v79zm258 0h-82v-79h82v79zm-1549 0h-81v-79h81v79zm258 0h-81v-79h81v79zm259 390h-82v-78h82v78zm258-195h-82v-78h82v78zm516 0h-82v-78h82v78zm258 0h-82v-78h82v78zm-516 0h-82v-78h82v78zm-258 195h-82v-78h82v78zm-258-195h-82v-78h82v78zm-517 195h-81v-78h81v78zm258-195h-81v-78h81v78zm-258 0h-81v-78h81v78zm258 195h-81v-78h81v78z" + }, + "children": [] + }] +}; +exports.u1F4C5 = u1F4C5; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4C6.js b/dist/noto_emoji_regular/u1F4C6.js new file mode 100644 index 000000000..5ab23b370 --- /dev/null +++ b/dist/noto_emoji_regular/u1F4C6.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4C6 = void 0; +var u1F4C6 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2493 678l-5 225q-2 72-4.5 150.5T2478 1212l-8 176q-5 109-11 219l-23 408q-5 87-12 202.5t-7 141.5q0 57-14 84.5t-57 32.5l-31 4-106 7-172 10-81 3q-38 2-63 2h-23q-371-19-812.5-68t-507-69-72.5-40-7-77l1-45q0-22 1-41l2-33q0-13 2-18-21-6-119.5-25T183 2035t-76-75q0-15 7-26t126.5-191.5T428 1416t134.5-332T653 767q-5 0-14-5l-21-8q-28-11-37.5-24.5T565 683t-6-53q0-45 3-89l6-88q5-53 28-77t90-24q132 0 329.5 10t270.5 12q17-69 64-106t119-37q76 0 123 44.5t61 113.5q8 0 32 2l298 32 90 9q55 4 134.5 26.5t157 40.5 103 59.5T2493 678zm-911 1425.5q26-43.5 145.5-320t175.5-567 56-300.5q0-38-38-43t-214-17l-572-37q-98-6-172-12l-119-9q-46-3-52-3-58 0-68 69.5T642.5 1162 458 1593.5t-151.5 259T268 1923t21.5 26.5 265 61T1073 2097l304 41q48 9 93 9 86 0 112-43.5zM948 1901q-11 0-11-10 0-5 1-6l83-179q6-6 121.5-56.5T1385 1509t127-169q0-69-70-69-57 0-132 37t-72 37q-3 3-7 3t-8-3.5-4-8.5l-14-148q0-15 130-77.5t234-62.5q89 0 151 58t62 145q0 85-64 179.5T1513 1607t-255 129l301 38q6 0 8.5 4.5t2.5 7.5-1 5l-79 171q-2 7-12 7zm990.5-1373q-73.5-4-115.5-10l-170-15-152-12-351-26-162-11-130-7q-56-3-80-3-8 0-18-1t-20-1q-48 0-57.5 26.5T673 575q0 13 1 25v23q0 26 25.5 38t68.5 14l44 3 248 19q372 30 602 43t251 13q79 0 89-24t10-99q0-98-73.5-102zm28.5 1192l11-222 3-102q-2 5-12 39l-88 301-44 141-115 283q-23 57-55 82t-92 25q-13 0-20-1l-168-11q-79-5-164.5-15.5T1062 2218l-442-64v25q0 16-1 32l-2 32q0 15-2 23 60 10 191.5 25t262.5 27l198 19q188 18 370.5 31.5T1889 2382l10-64 14-106 18-130q14-105 21.5-176.5T1967 1720zm-1081-19q5 0 8 5t3 8l-1 4-74 159q-3 8-11 8l-285-37q-6 0-9-4t-3-7 2-5l73-159q5-7 10-7l58 7 217-470-70-3q-12 0-12-12 0-3 1-4l77-168q5-8 11-8l257-8q5 0 9 4t4 8q0 2-1 3t-1 3l-312 677zM2375.5 643q-9.5-9-49.5-20 0 12-4 109.5t-7 162.5l-28 613q-9 175-27.5 455.5T2230 2378l33-2q28-2 29-32.5t14-214.5l31-480q27-432 37.5-673t10.5-298q0-26-9.5-35zM2051 1874l-24 273-23 234h20q13 0 39 1l17-234q15-205 23.5-340.5T2122 1488l12-227q5-113 9-220l14-351 3-100q-2-2-9-2h-11q-21 0-28 11.5t-10 97.5l-4 97q0 40-3 131t-4 116l-6 189q-5 161-13.5 321.5T2051 1874zm89 272l-18 236q12 0 25-1h24l17-235q12-161 22.5-329.5T2229 1500l11-219 10-212 8-192 6-158 3-109-48-10-3 105-6 157-8 194-10 216-11 223q-8 158-19 326.5t-22 324.5zM1314 540q23 0 38.5 18t15.5 42q0 26-17.5 44t-39.5 18q-25 0-41.5-18.5T1253 600q0-27 19-43.5t42-16.5zm79-159l141 4q0-16-18.5-38t-51.5-22q-29 0-49 13t-22 43z" + }, + "children": [] + }] +}; +exports.u1F4C6 = u1F4C6; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4C7.js b/dist/noto_emoji_regular/u1F4C7.js new file mode 100644 index 000000000..930b2c816 --- /dev/null +++ b/dist/noto_emoji_regular/u1F4C7.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4C7 = void 0; +var u1F4C7 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2306 1235q10 9 25.5 29.5t15.5 47.5q0 20-10 38t-27 28l-33 19-63 31q0 34-3 65t-11 61q67 112 87.5 179t20.5 123q0 92-71.5 183t-225.5 91q-83 0-160-9t-155-24q11 32 16.5 66t5.5 68q0 102-80 202.5T1390 2534q-207 0-457-62t-342-106.5-92-109.5q0-47 33-81t79-55l63-30q-195-120-308-324t-113-441q0-260 148.5-479T951 492l170-57q37-13 74.5-24.5T1271 388q0-41 24-67t52-34l23-6 90-19q19-7 47-7 31 0 54.5 14.5T1607 322l292 532zM878 642q-249 57-398 245.5T331 1331q0 212 101.5 397T710 2022.5t376 109.5q78 0 157.5-21.5T1385 2045q-50-88-143-197.5T1110 1686q-77 40-154 62.5T792 1771q-123 0-210.5-100.5T494 1434q0-100 48.5-172.5T710 1122t232-67q80 0 146 39L894 681l-13-31q-2-4-3-8zm386-162l-189 56-45 14-27 6q-25 6-43.5 17.5T941 603q0 13 7 26l12 25q24 48 117.5 248.5T1173 1109l4 8 250-88q-11-11-50.5-23.5T1337 940q0-20 12.5-34.5T1390 891q45 0 88.5 28t66.5 69l121-42q-14-19-55.5-30t-41.5-66q0-22 12-35.5t41-13.5q43 0 90 29t69 76l55-19-3-6q0-3-56.5-108.5T1693 619l-120-210q-2-3-22-43.5t-44-40.5q-11 0-20.5 3t-17.5 5l-36 6-42 9q-21 5-35.5 18t-14.5 35.5-8 41.5-29 26zm944 874l18-8q20-8 34.5-16.5t17.5-16.5q0-11-22.5-31t-97.5-91l-272-255q-5 6-11.5 10.5T1860 954l-56 19q3 17 3 34 0 42-19.5 83.5T1738 1132q-71 0-71-56 0-14 6.5-28.5t10.5-31.5l-113 38 4 21q2 11 2 22 0 42-20.5 84t-49.5 42q-34 0-52-14.5t-18-40.5q0-17 8-34.5t8-38.5l-213 76q69 61 193 162.5t154 126 61 24.5q30 0 45-9t135.5-56.5T1969 1361t53-10q22 0 59.5 16t61.5 16q10 0 16.5-4.5t14.5-7.5zm-611 543q10 13 19 27l16 29 115-65q109-61 185-125.5t122-145.5 46-172q-12 0-23.5-4t-21.5-9l-20-8q-10-4-17-4h-9q-4 0-6 1l-122 50q-165 66-175 71t-42 9q0 11 1 21.5t1 21.5q0 102-24.5 188t-44.5 115zm-718-299.5q43-47.5 43-111.5 0-77-54-131t-121-54q-56 0-96.5 42.5T610 1450q0 77 50 136t117 59q59 0 102-47.5zm361-337.5q28 60 28 135 0 21-1.5 42t-6.5 43q14 13 28 27l26 29q74 83 147 175.5t86 108.5q21-59 29-130.5t8-140.5v-11q-19-9-38.5-22.5T1523 1498zm-174 1010q52 12 108 19.5t105 7.5q83 0 124-24.5t41-71.5q0-25-12-61-83 29-169.5 49t-185.5 20q-17 0-25-1l-82 41zm814-356q7 0 14 1t14 1q76 0 113.5-22t37.5-65q0-18-8-45-39 38-83 70t-88 60z" + }, + "children": [] + }] +}; +exports.u1F4C7 = u1F4C7; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4C8.js b/dist/noto_emoji_regular/u1F4C8.js new file mode 100644 index 000000000..7e5c8ce0a --- /dev/null +++ b/dist/noto_emoji_regular/u1F4C8.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4C8 = void 0; +var u1F4C8 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2367 2413q21 0 35.5 14.5t14.5 34.5q0 21-14.5 35.5T2367 2512H232q-21 0-35.5-14.5T182 2462V342q0-21 14.5-35.5T232 292q20 0 34.5 14.5T281 342v1644l236-241q19-21 47-21 26 0 46 16l211 177 435-1318q7-18 23-32t36-14q24 0 39.5 9t26.5 26l310 561 179-518q9-21 26-35l392-272q19-13 40-13 26 0 47 19.5t21 49.5q0 17-7 31t-22 25l-374 262-224 641q-6 19-22.5 33t-36.5 14q-28 0-42.5-9.5T1644 1350l-307-558-416 1265q-8 20-25.5 34t-40.5 14q-25 0-44-17l-241-201-289 295v231h2086z" + }, + "children": [] + }] +}; +exports.u1F4C8 = u1F4C8; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4C9.js b/dist/noto_emoji_regular/u1F4C9.js new file mode 100644 index 000000000..2a23a22e1 --- /dev/null +++ b/dist/noto_emoji_regular/u1F4C9.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4C9 = void 0; +var u1F4C9 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2367 2413q20 0 35 14.5t15 35.5q0 20-15 34.5t-35 14.5H232q-21 0-35.5-14.5T182 2463V340q0-20 14.5-34.5T232 291q20 0 34.5 14.5T281 340v62l290 289 191-146q17-14 41-14 23 0 39.5 12t24.5 32l509 1297 217-404q8-17 22.5-26.5t34.5-9.5q46 0 67 40l215 464 408 342q25 20 25 53 0 28-21 48.5t-49 20.5q-22 0-44-17l-418-351q-13-9-19-24l-164-354-224 414q-9 17-24 26.5t-33 9.5q-50 0-67-43L771 710 607 836q-18 15-43 15-28 0-47-20L281 595v1818h2086z" + }, + "children": [] + }] +}; +exports.u1F4C9 = u1F4C9; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4CA.js b/dist/noto_emoji_regular/u1F4CA.js new file mode 100644 index 000000000..7403eb31b --- /dev/null +++ b/dist/noto_emoji_regular/u1F4CA.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4CA = void 0; +var u1F4CA = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2367 2413q20 0 35 14.5t15 34.5q0 21-15 35.5t-35 14.5H232q-21 0-35.5-14.5T182 2462V342q0-21 14.5-35.5T232 292q20 0 34.5 14.5T281 342v2071h249V464q0-23 16.5-39t39.5-16h207q23 0 39 16t16 39v1949h318V1132q0-23 16.5-39.5t39.5-16.5h207q23 0 39.5 16.5t16.5 39.5v1281h317V779q0-24 16-40.5t40-16.5h207q23 0 39.5 16.5T2121 779v1634h246z" + }, + "children": [] + }] +}; +exports.u1F4CA = u1F4CA; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4CB.js b/dist/noto_emoji_regular/u1F4CB.js new file mode 100644 index 000000000..04a871da6 --- /dev/null +++ b/dist/noto_emoji_regular/u1F4CB.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4CB = void 0; +var u1F4CB = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2426 982q0 35-17 62t-34 51l-39 59q-27 41-64 96l-83 123q-136 204-258.5 363T1792 1916l-107 141q-54 71-103 137l-185 249q-41 45-72.5 65.5T1270 2529q-74 0-179-103.5T685.5 2032t-406-389T174 1491q0-47 52-105.5T331 1275l72-72 324-330 173-183q49-51 93-98l78-84q54-57 141.5-151t146.5-94q42 0 124.5 49.5T1582 371q18-17 38.5-27.5T1666 333q15 0 29 7.5t31 7.5q13 0 26-11l26-24q14-13 32-24t43-11q101 0 227.5 96.5T2207 559q0 35-20 69.5t-20 57.5q0 11 1.5 25t1.5 27l-1 17q142 101 195 139t62 79v9zm-288 13l-50-38-22-16q-6 6-11.5 12.5T2041 966l-9 9q-32 28-60 40t-57 12q-52 0-110-35t-141-86-131.5-101-85-79.5T1411 644q0-31 13-61t29-57q-6-4-42-33t-59-29q-12 0-29 13t-41 39l-22 24-28 32q-9 9-114 123T917 908l-86 89q-54 55-147.5 143.5T533 1300t-77 90.5-20 34.5q0 16 32 53.5T624.5 1612t276 246.5 248 228T1262 2183t33 19q12 0 17.5-6t44.5-43.5 289.5-373 276.5-372 99-144.5 107-153.5 34-79.5q0-16-25-35zm-397-528l-34-17q-18-8-36-8t-40 14.5-41 35.5l-24 26q-18 20-36 51t-18 63q0 13 5.5 25.5T1534 679l74 61q96 80 132.5 97t82 45.5T1903 911q12 0 24.5-3.5T1953 896l5-3q37-28 70.5-82.5T2062 726q0-18-11-36t-78.5-77.5T1752 473zm140-102q-6 0-11-1-14 0-26 6.5t-12 19.5q0 16 41 38.5t43 24.5l52 37q59 43 65.5 54.5T2051 556q13 0 23.5-15.5T2085 512q0-20-18-41.5t-40-37.5l-24-17q-25-16-52.5-29.5T1893 367z" + }, + "children": [] + }] +}; +exports.u1F4CB = u1F4CB; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4CC.js b/dist/noto_emoji_regular/u1F4CC.js new file mode 100644 index 000000000..bdd1f8391 --- /dev/null +++ b/dist/noto_emoji_regular/u1F4CC.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4CC = void 0; +var u1F4CC = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M865 1775q-132-139-215-281t-83-233q0-51 26-77l70-70q28-26 77-26 64 0 156 43t197 120l433-434q-63-85-98.5-153T1392 553q0-25 14-39l89-89q13-13 38-13 94 0 293 156.5t346 349 147 280.5q0 25-13 38l-89 89q-14 14-39 14-43 0-111-35.5t-153-98.5l-433 433q78 105 120.5 198t42.5 157q0 49-26 75l-71 70q-26 26-77 26-91 0-233-83t-281-215l-249 251-396 334-31-30 334-397z" + }, + "children": [] + }] +}; +exports.u1F4CC = u1F4CC; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4CD.js b/dist/noto_emoji_regular/u1F4CD.js new file mode 100644 index 000000000..c5836d34c --- /dev/null +++ b/dist/noto_emoji_regular/u1F4CD.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4CD = void 0; +var u1F4CD = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2098 1514.5q-91 159.5-251.5 254T1497 1863q-103 0-196.5-28.5T1126 1754q-64 60-130 121l-129 119q-268 249-324 289t-88 40q-16 0-30-11t-14-31q0-14 14.5-41T652 1957.5 953 1598q-69-89-108.5-197T805 1171q0-284 204-488t488-204q189 0 349.5 94.5t251.5 254 91 343.5-91 343.5zm-976.5-498Q1180 1075 1262 1075q84 0 141-59t57-140q0-80-57.5-139T1262 678q-82 0-140.5 58T1063 876t58.5 140.5zm934 74.5q-13.5-32-45.5-32-74 0-89 110.5t-90.5 231.5-207.5 198-283 77q-19 0-31.5 4.5T1296 1693q0 24 65 38t136 14q153 0 287.5-78t209.5-208.5 75-278.5q0-57-13.5-89z" + }, + "children": [] + }] +}; +exports.u1F4CD = u1F4CD; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4CE.js b/dist/noto_emoji_regular/u1F4CE.js new file mode 100644 index 000000000..695ed3568 --- /dev/null +++ b/dist/noto_emoji_regular/u1F4CE.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4CE = void 0; +var u1F4CE = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M474.5 1722.5Q509 1639 575 1573L1602 547q43-43 96-66t112-23q133 0 241 111t108 245q0 58-20.5 111.5T2076 1021l-862 862q-25 25-55.5 37t-62.5 12q-78 0-146-66.5T882 1716q0-33 11.5-64t35.5-54l704-706 95 95-706 704q-8 10-8 23 0 30 26 57.5t55 27.5q6 0 12.5-2t13.5-9l860-861q45-46 45-111 0-84-69.5-154T1808 592q-65 0-113 48L669 1666q-47 47-71.5 107.5T573 1899q0 135 96.5 232t232.5 97q66 0 125-24.5t106-71.5l889-889 93 95-887 887q-66 66-149.5 101T902 2361q-187 0-324.5-137T440 1899q0-93 34.5-176.5z" + }, + "children": [] + }] +}; +exports.u1F4CE = u1F4CE; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4CF.js b/dist/noto_emoji_regular/u1F4CF.js new file mode 100644 index 000000000..9a5e62141 --- /dev/null +++ b/dist/noto_emoji_regular/u1F4CF.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4CF = void 0; +var u1F4CF = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2384 617q17 18 24 39t7 44q0 21-7 41.5t-23 37.5L816 2519q-17 19-39 28.5t-47 9.5q-51 0-86-38l-426-456q-33-36-33-89 0-27 9-52.5t28-42.5L1914 291q17-15 37-23t46-8q24 0 45 10t38 27zm-165 173q28-30 45.5-49.5T2282 695q0-14-4.5-27t-19.5-29l-205-216q-16-17-33.5-34.5T1982 371q-17 0-36.5 16t-37.5 33l113 110q9 9 9 22t-9.5 22-21.5 9q-15 0-22-10l-115-110-61 60 106 104q4 5 6.5 11t2.5 11q0 12-8.5 21.5T1885 680t-22-8l-105-104-62 59 203 208q4 5 6.5 10.5t2.5 11.5q0 13-9 22.5t-24 9.5q-12 0-22-10l-204-210-53 52 110 110q4 5 6.5 11t2.5 12q0 11-9.5 20.5T1684 884q-13 0-22-9l-113-110-65 63 105 104q10 12 10 24t-9 21-23 9q-12 0-22-8l-107-107-65 63 204 214q9 11 9 21 0 14-10 23t-21 9q-13 0-23-10l-205-213-59 54 111 111q10 12 10 24t-9 21.5-22 9.5-22-9l-113-113-70 66 106 108q9 11 9 22 0 13-10 22.5t-21 9.5-23-10l-107-108-70 67 207 218q8 11 8 22 0 12-8.5 21.5t-22.5 9.5q-16 0-22-9l-209-218-61 59 112 113q10 12 10 24t-9.5 21-22.5 9q-12 0-22-10l-113-115-76 71 108 110q9 9 9 22 0 12-9 21.5t-23 9.5-22-9l-108-110-74 72 208 223q5 4 6.5 10t1.5 12q0 14-8.5 22.5T874 1861q-12 0-23-9l-209-224-65 62 113 116q9 11 9 22 0 13-9 22.5t-23 9.5q-12 0-22-8l-114-118-79 75 107 113q9 11 9 21 0 13-10 22.5t-21 9.5q-6 0-12.5-2.5T514 1965l-109-112q-5 5-45 38.5t-40 60.5q0 19 21.5 40T513 2173t167 181.5 35 21.5q28 0 65-42t40-45z" + }, + "children": [] + }] +}; +exports.u1F4CF = u1F4CF; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4D0.js b/dist/noto_emoji_regular/u1F4D0.js new file mode 100644 index 000000000..996bd2476 --- /dev/null +++ b/dist/noto_emoji_regular/u1F4D0.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4D0 = void 0; +var u1F4D0 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2430 559l-396 1759q-9 42-41.5 67t-73.5 25h-11q-6 0-11-2L264 2092q-40-8-68.5-39t-28.5-75q0-28 13.5-54t37.5-43L2247 435q15-10 33-16t35-6q48 0 83 35t35 85q0 13-3 26zm-145 15q0-6 3-13t3-13q0-8-4-13t-9-5-9.5 4.5-12.5 9.5l-134 96 75 104q6 8 6 19 0 12-8 21.5t-24 9.5-24-13l-76-106-46 33 26 36q5 6 5 19 0 12-8 21.5t-22 9.5q-16 0-26-13l-26-37-45 33 26 36q5 8 5 20t-8.5 21-21.5 9q-17 0-26-13l-26-37-45 32 75 105q6 9 6 20 0 12-9.5 21.5t-22.5 9.5q-16 0-24-14l-77-105-45 32 27 36 4 9q2 5 2 9 0 13-10 23t-22 10q-15 0-26-14l-26-37-45 33 26 37q5 8 5 18 0 13-8 22.5t-22 9.5q-18 0-26-14l-27-37-46 32 77 108q6 8 6 18 0 12-9 21.5t-23 9.5q-7 0-13.5-3t-10.5-11l-77-107-45 33 27 39q5 8 5 16 0 13-8.5 23t-22.5 10q-15 0-26-14l-27-38-46 33 28 38q5 8 5 18 0 14-9 23t-21 9q-16 0-26-13l-27-40-46 33 77 109q6 8 6 17 0 13-9 22.5t-23 9.5q-7 0-13.5-3t-11.5-11l-78-107-45 32 29 38q5 8 5 19t-8.5 21.5-22.5 10.5q-16 0-26-14l-28-38-45 31 28 40q5 8 5 18 0 14-9 22.5t-21 8.5q-8 0-15-3t-11-9l-29-40-45 32 78 109q6 9 6 18 0 13-8.5 22.5t-22.5 9.5q-18 0-26-14l-78-108-45 33 29 39q5 8 5 18 0 11-8.5 21.5T870 1622q-16 0-26-14l-29-40-45 32 30 41q5 8 5 18 0 12-8.5 21.5T774 1690q-16 0-26-12l-30-40-44 32 78 109q5 8 5 18 0 13-8 22.5t-22 9.5q-18 0-26-14l-79-110-45 33 30 40q5 6 5 19 0 11-8.5 21.5T581 1829q-16 0-26-14l-29-41-45 33 30 41q5 8 5 18 0 12-8.5 21.5T485 1897q-16 0-26-12l-29-41-79 53q-15 11-25.5 20.5T315 1933q0 9 13 15t30 8l21 3 80 15q332 64 798.5 148.5t504 96 89.5 11.5q54 0 65.5-49.5t15.5-70.5zm-436 820v14q0 6-2 14l-87 381q-9 41-42.5 66t-72.5 25l-11-1q-6 0-11-1l-353-66q-42-8-69.5-39t-27.5-76q0-29 12.5-54t36.5-42l442-315q31-22 69-22 48 0 82 34t34 82zm-134 80q0-8 5.5-22t5.5-25q0-13-11-13t-23 10-19 14l-314 224q-9 7-23.5 15t-14.5 22q0 25 148 48.5t147 23.5q14 0 22-5l9-10q8-11 10.5-27t5.5-30z" + }, + "children": [] + }] +}; +exports.u1F4D0 = u1F4D0; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4D1.js b/dist/noto_emoji_regular/u1F4D1.js new file mode 100644 index 000000000..414b82cb6 --- /dev/null +++ b/dist/noto_emoji_regular/u1F4D1.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4D1 = void 0; +var u1F4D1 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2148 1392q71 24 113 42.5t83 42.5l-63 177q-81-37-147-61t-165-53l-99-30 73-166 47 9q21 4 43 9 8-19 15-45.5t7-58.5q-18-43-32.5-92.5T2002 1044l-370 892q-11 27-35.5 56.5T1537 2040q-3 22-6 53.5t-3 67.5q0 54 8.5 113.5T1571 2388q9-5 23-23.5t77-158.5l60-133q33-74 68.5-156.5T1872 1747l72-172q48 12 114 35l-136 320q-161 378-218.5 481T1545 2514q-36 0-90.5-9.5T1342 2479l-80-21q-70-19-146-42l-151-45q-75-22-146-45l-134-42-177-57q-115-38-184-135t-69-239q0-58 6.5-87t7.5-30q0-13 137.5-337t261-580T859 460t244-103q42 0 79.5 5t66.5 10l14 2q217 40 470 119t285 102.5 43.5 39.5 24 36 16.5 79l12 213q9 156 34 207.5t25 94.5q0 44-8 73t-17 54zm-186-557q10-24 16-48.5t6-43.5q0-30-33.5-49.5t-272-94T1244 491l-15-3q-27-5-59.5-9.5T1103 474q-115 0-151.5 59t-93 167-151 314T544 1384l-61 144q-29 67-50 118 132 16 313 80t232 80l208 69q77 26 110 34t42 10l41 10q21 5 43 9t38 4q21 0 38.5-16.5t47.5-87.5l35-85q21-51 49-117l311-751zm-583 1532q26 7 54.5 13.5t54.5 10.5q-23-58-30.5-117.5T1450 2160q0-29 1.5-54.5t3.5-45.5q-39 0-99.5-14t-123.5-36l-175-57q-53-16-131.5-39.5T773 1864l-141-50q-64-22-116-36t-93-14q-15 0-22 3t-21 13l-4 30q-3 17-3 44 0 60 14.5 105t41.5 79 52 49.5 131 50.5l110 35q153 49 296 92t275 79z" + }, + "children": [] + }] +}; +exports.u1F4D1 = u1F4D1; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4D2.js b/dist/noto_emoji_regular/u1F4D2.js new file mode 100644 index 000000000..65417869b --- /dev/null +++ b/dist/noto_emoji_regular/u1F4D2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4D2 = void 0; +var u1F4D2 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2286 940q19 45 27.5 100t8.5 109q0 65-15 118t-48 112l-36 63-564 1013q-51 93-130 93-53 0-126.5-47.5t-303.5-189T690 2077l-148-77q-83-42-106.5-64.5t-48-80.5-24.5-151q-37-33-61-79t-24-96q0-67 48.5-117t109.5-50q32 0 61 12 22-29 45.5-58.5T588 1256l13-19-13-2q-7 0-13-1-28 0-47 16t-22.5 50-5.5 34l-41-1-11 2q-6 2-11 2-11 0-14-11t-3-23q0-74 49.5-123.5T582 1130q42 0 81 21l99-137h-13q-31 0-49 16.5t-18 39.5l1 14v9q0 9-3 15.5t-10 6.5q-6 0-12.5-2.5T645 1110q-4 0-26-4.5t-22-28.5q0-69 48-118t111-49q37 0 70 15l89-121-15-1q-24 0-42 11.5T834 852l-7 29h-3l-2 1q-9 0-19.5-3.5T784 873q-5 0-12 1t-12 1q-12 0-12-16 0-68 50-114t106-46q40 0 77 19l36-50q18-24 38-48-29 5-44.5 17T984 685q-11 0-25.5-6t-26.5-6q-9 0-15.5-2.5T910 659q0-17 16-52.5t55.5-62T1063 518q31 0 63 12l81-100h-7q-25 0-46.5 18t-24.5 46q-11-2-21-7t-20-5q-12 0-23.5-2t-11.5-13q0-6 3-12l4-10q13-52 55.5-85.5T1207 326q28 0 55.5 10.5T1314 364q10-2 19-2 42 0 78 14.5t67 30.5l4 1q244 115 350.5 176.5t266 156T2286 934v6zM577 1434q14 19 28 47.5t14 55.5q0 17-15.5 27.5T570 1575q-14 0-27.5-8.5T525 1538q0-5-3-12l-7-11q-14 20-27 41t-20 41q26 5 54 20l48 26 26 13q35 18 69.5 37t70.5 40l67 37q230 130 407.5 240.5T1435 2151t69 30q9 0 19-8t24-33l607-1090 16-30q8-15 13.5-28t5.5-21q0-30-38-67t-113-82l-54-32q-95-57-237-133.5T1438 499l-26-13q-12-5-23-9 0 7 2 13t2 14q0 17-14.5 27t-31.5 10q-16 0-29.5-9.5T1300 501l-7-16q-23 26-44.5 53.5T1205 593q16 20 29.5 49.5T1248 696q0 17-14.5 26t-32.5 9q-15 0-28.5-8.5T1155 693l-3-8q0-5-2.5-8.5t-4.5-8.5q-23 29-44.5 58t-42.5 59q11 17 22.5 42t11.5 48q0 17-15.5 28t-32.5 11q-16 0-29-9.5T997 875q0-6-3-9l-45 61-44 62q14 19 26.5 46t12.5 49q0 15-13 25.5t-30 12.5q-26 0-37-10.5t-20-40.5l-53 74q-26 37-53 73 13 17 22.5 41t9.5 44q0 17-15.5 27.5T722 1341q-14 0-29-8.5t-18-25.5zm635.5-583q11.5-23 34.5-53l23-30q33-42 62-64.5t58-22.5q41 0 135.5 46t228 118.5 169.5 101 36 54.5q0 18-21.5 49t-64.5 99.5-78 68.5q-28 0-41.5-11t-45-20.5-67.5-33-131-68-181-92.5-109-70q-8-7-13.5-16t-5.5-18q0-15 11.5-38zm632.5 172q3-3 3-8 0-20-49.5-46T1628 880.5 1479 798t-75-28h-4q-17 0-51 43t-34 61q0 12 36 29.5t52 29 142.5 71 170 79.5 61.5 20q16 0 29.5-14.5t27.5-42.5zM367 1585q8-34 24-63t34-55q-33 3-49.5 23t-16.5 51q0 20 8 44z" + }, + "children": [] + }] +}; +exports.u1F4D2 = u1F4D2; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4D3.js b/dist/noto_emoji_regular/u1F4D3.js new file mode 100644 index 000000000..cf1b21562 --- /dev/null +++ b/dist/noto_emoji_regular/u1F4D3.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4D3 = void 0; +var u1F4D3 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2261 2083.5q-31 38.5-128 68.5l-228 76q-230 77-454 133t-366.5 100.5T847 2506q-90 0-153.5-57.5t-225-603T307 1223q3-82 48.5-138.5T467 950l303-365 93-111 70-82q27-32 34-38l56-52q34-31 59-46t48-15q25 0 56 22.5t72 124 51 119.5 28 18q17 0 61-28t104-28q49 0 68 23.5t31 57.5l14 42q7 20 15.5 34t21.5 14q14 0 45.5-13t58.5-13q58 0 95.5 102t83 197 113.5 303 95.5 283 88 242.5T2292 1987q0 58-31 96.5zM891 2256q34-33 87-86l375-371q141-138 195.5-189t54.5-115q0-32-16-77t-137.5-344.5-211-500-101-207-19.5-6.5q-30 0-168 158.5T679 840l-179 219zm186-20q80-49 163-93t170-94 193.5-103 138-74.5 96-53 64.5-71.5q0-21-9.5-39.5T1841 1572l-226-639-86-242-16-43q-11-22-24.5-36.5T1455 597q-7 0-23.5 8t-42.5 25l-19 13 139 316 131 293 43 99q7 17 30 69t23 95q0 63-54 121t-143 146l-228 225zm1080-311q-12-29-20-52l-85-276q-149-484-229-672.5t-85-194-17-5.5q-8 0-20 5t-31 15q29 129 106.5 310t145 397 78.5 249.5 11 65.5q0 79-71 113.5t-95.5 53.5-101.5 61l-129 70q-130 69-268.5 147T1118 2339q138-50 431.5-126.5t444.5-126 163-67 12-37.5q0-28-12-57zM684.5 1177.5Q673 1163 671 1150q0-22 43.5-66.5T770 1025l86-98q41-47 80-76.5t81.5-64.5 74.5-35q12 3 21.5 9.5t9.5 20.5q0 30-49.5 67.5t-177 168.5-151 153-35.5 22q-14 0-25.5-14.5zm512.5-248q9 14.5 9 28.5 0 25-52.5 61.5t-120 112.5-114 107.5-73 69.5-49.5 38q-18 0-26-12.5t-8-24.5q0-45 62-94.5T932 1114t73-72 69-60l13-13q26-26 47.5-40t36.5-14q17 0 26 14.5z" + }, + "children": [] + }] +}; +exports.u1F4D3 = u1F4D3; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4D4.js b/dist/noto_emoji_regular/u1F4D4.js new file mode 100644 index 000000000..4ae0ce1d2 --- /dev/null +++ b/dist/noto_emoji_regular/u1F4D4.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4D4 = void 0; +var u1F4D4 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2270.5 1276.5Q2243 1336 2201 1418l-68 132q-39 74-83 156l-92 169h-1q-70 129-171.5 301.5t-163 259.5-82.5 105.5-52 18.5q-37 0-88-24.5t-97-57.5l-43-29q-47-30-104-68t-121-82l-264-180-323-222-53-37q-44-29-69-81t-25-113q0-27 12-70.5t132.5-245T698 952t281.5-399 168-214.5 32-18.5 39.5-6q24 0 45 5l35 8q50 10 304 143.5T2045 717t202 138.5 14 51.5q0 21-5.5 33.5t-2.5 83 16 105 21 43 8 23.5q0 22-27.5 81.5zM1552 2058l39-66 189-359q47-89 95-181l93-180q74-143 117.5-231.5t45.5-95 2-15.5q0-22-30.5-39.5T2052 860l-93-57q-64-39-134.5-81.5T1689 641l-46 77-484 12 51-78 478-12q-49-30-96-57t-90-50l-218 5 52-79h22l-45-19q-9-3-18-5t-21-2q-45 0-81.5 26t-57.5 64-276.5 403-324 489-81 142.5T441 1592q0 13 11.5 18t27.5 5q22 0 42 6.5t47 21.5l17-28 524-14-47 78-414 11 170 109 176-6-48 80h-11l135 87q272 178 305.5 210.5t53.5 32.5q35 0 54-30t68-115zm-137 360q0-25-3-54l-5-46-730-497q-3-2-85.5-57.5T466 1708q-11 0-20.5 8t-9.5 27q0 18 16.5 43.5T515 1838l159 103 703 464q37 25 38 25v-12zm99 12q44-67 154.5-256.5T1886 1790l110-200q75-136 133-250t66-144q-19-37-25-74-19 38-71.5 135.5T2004 1432l-89 162q-46 85-94 171l-177 319q-20 36-77 136.5t-61 102.5q0 10-1.5 24.5t-1.5 21.5v9q0 15 3 29.5t8 22.5zM711 1422l515-14-46 80-521 12zm125-192l507-14-48 80-510 12zm124-193l498-12-47 78-501 12zm568-126l-494 12 51-79 489-13z" + }, + "children": [] + }] +}; +exports.u1F4D4 = u1F4D4; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4D5.js b/dist/noto_emoji_regular/u1F4D5.js new file mode 100644 index 000000000..dd881a772 --- /dev/null +++ b/dist/noto_emoji_regular/u1F4D5.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4D5 = void 0; +var u1F4D5 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2175 1779q0 14 1 28 0 41-17 66t-49 25q-2 0-3.5 4t-1.5 10l-1 20q0 15 2 31l4 31q3 20 3 38l-1 7q0 20 12 39l21 42q10 22 10 45 0 47-38.5 66t-95.5 19l-26-1q-20 0-36 1l-45 1q-36 0-90 1l-123 2q-70 0-148 1l-332 2q-511 0-567-9t-109-43.5-87.5-102T423 1885q0-112 4.5-224t4.5-224q0-246 17-442t39-267 81-122.5T808.5 545t409.5-11h164q129 0 247.5 6.5t266.5 18 165.5 144 43 373.5 36.5 355 17 181l14 143zm-148 326l-6-20q-3-11-5.5-28.5t-2.5-49.5q0-15 2.5-33.5t2.5-36.5q0-16-11-24.5t-405-10.5l-412-2H796q-98 0-136.5 35.5T621 2037q0 45 17.5 72.5t43 41.5 392.5 14q94 0 197-1l204-2q100 0 192-3l162-4q91 0 145.5-3t54.5-24q0-14-2-23zM1007 977q0 14 9.5 24t23.5 10h611q12 0 20.5-8t8.5-21v-5l-15-148q-2-14-13-23.5t-24-9.5h-588q-14 0-23.5 9.5T1007 829v148zm-340 726l-1-59q0-197 5-364.5T682 892l4-101q2-50 2-104 0-16-3.5-28T667 647q-19 0-42.5 23T601 743l1 18q0 26-19 366.5T564 1767l1 29q0 22 5.5 38.5T584 1851q12 0 13.5-21.5T633 1789t34-86z" + }, + "children": [] + }] +}; +exports.u1F4D5 = u1F4D5; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4D6.js b/dist/noto_emoji_regular/u1F4D6.js new file mode 100644 index 000000000..58746a98e --- /dev/null +++ b/dist/noto_emoji_regular/u1F4D6.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4D6 = void 0; +var u1F4D6 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2389 1965q0 27 1 44.5t1 32.5q0 8-1 14.5t-1 12.5q2 4 2 6v5q0 16-18.5 33.5T2335 2131q-24 0-48.5-11t-126.5-31.5-236-20.5q-129 0-241.5 15.5t-183.5 39-92 27.5l-47 10q-21 5-38 7t-25 2q-58 0-211.5-50.5T675 2068q-133 0-233.5 20t-128 31.5T264 2131q-16 0-36.5-15.5T207 2080l1-13v-19q0-16 1-30.5t1-30.5v-22l-7-57q-3-16-4.5-29.5T197 1860q0-56 17-177t41-267l53-319q11-65 15-99l2-8 8-85q9-94 52.5-124.5t216.5-86T910 639q119 0 219.5 41T1300 806q63-78 162-122.5t227-44.5q140 3 317 59t214 87.5 46 119.5l8 85 2 8q4 34 15 99l25 147q48 278 66 415t20 201q0 5-2 18zm-1209-136l21 11q10 6 19.5 10t16.5 4q5 0 8-4t3-15v-90q0-36-1-83l2-442q0-248 5.5-294T1149 802.5 912 725q-78 0-210.5 30t-194 59-72.5 88l-6 28q-16 87-25 187.5T348 1484t-47 306q0 9 4.5 18t12.5 9q3 0 11-3l53-19q97-29 193-43t198-14q143 0 247 29.5t160 61.5zm1115.5-56.5q-2.5-9.5-2.5-16.5-15-130-48.5-308t-51-337.5-33.5-227-197-113-276-45.5q-109 0-192.5 50T1375 862t-31 80.5 7 287.5l1 521-1 84q0 13 2.5 16t8.5 3q13 0 51-22.5t148.5-58T1828 1738q110 0 215.5 17t190.5 46l37 13q7 3 10 3 9 0 13-8t4-18q0-9-2.5-18.5zM1500 1330l3-4q29-23 118.5-48.5T1824 1252q63 0 125 10.5t109.5 30 54 27 6.5 17.5q0 13-10 24t-25 11q-6 0-86.5-20t-175.5-20q-92 0-164.5 18t-91.5 26l-24 11q-13 6-24 6-14 0-21.5-10.5t-7.5-24.5q0-17 11-28zm-400 0q10 10 10 27 0 14-7 25t-21 11q-11 0-24-6l-25-11q-15-7-89-25.5T791 1332q-111 0-191 20t-86 20q-14 0-24-11t-10-24q0-10 6-17.5t54-27 110-30 125-10.5q115 0 206 26.5t115 47.5zm380-346q-13-14-13-31 0-38 103-65t200-27q102 0 179 24.5t93.5 35T2059 947q0 15-11.5 27.5T2019 987q-6 0-70-24t-164-24q-79 0-145 17t-89 29.5-38 12.5q-20 0-33-14zm-361.5 0q-13.5 14-32.5 14-15 0-38-12.5T959 956t-145-17q-100 0-164 24t-69 24q-17 0-29-12.5T540 946q0-15 17-26t93.5-35T829 861q106 0 193.5 27t98.5 39.5 11 25.5q0 17-13.5 31zm400.5 212q-3 0-6 1-16 0-26.5-14.5T1476 1153q0-13 7.5-23t115-44 222.5-34q95 0 181 26.5t86 55.5q0 12-11 23t-26 11l-6-1q-115-40-200-40-82 0-163.5 19.5T1525 1194zm-406.5-13.5Q1102 1197 1085 1197q-2 0-5-1l-6-2q-75-28-156.5-47.5T754 1127q-90 0-143.5 20.5T547 1168q-14 0-25-10t-11-24q0-28 86.5-55t180.5-27q115 0 222.5 34t115 44 7.5 23q0 15-10.5 29.5zM2122 1569q-8 10-22 10-10 0-99.5-26t-168.5-26q-69 0-140 18.5t-134 43.5l-8 3q-4 0-9 1-17 0-29-13.5t-12-27.5q0-17 15-28t98-37.5 190-26.5q104 0 208 27t111.5 37 7.5 22q0 13-8 23zm-1034.5 10.5Q1075 1593 1058 1593q-5 0-8-1l-9-3q-62-25-133.5-43.5T767 1527q-48 0-95 8t-98 23l-64 20q-4 0-11 1-14 0-22-10t-8-24q0-10 7-20.5t111-37.5 208-27q110 0 193 27t97.5 38 14.5 27q0 14-12.5 27.5z" + }, + "children": [] + }] +}; +exports.u1F4D6 = u1F4D6; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4D7.js b/dist/noto_emoji_regular/u1F4D7.js new file mode 100644 index 000000000..77ad5dad7 --- /dev/null +++ b/dist/noto_emoji_regular/u1F4D7.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4D7 = void 0; +var u1F4D7 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2291 1830.5q-53 51.5-107.5 73.5t-150 54.5T1776 2036l-212 59q-32 9-103 31t-135 22q-112 0-231-89.5T830 1855l-267-207q-226-175-243.5-194t-40.5-56-23-77q0-20 8-44l8-26q6-19 13-46l15-56q10-41 18.5-83t8.5-54q0-7-3-17l-6-22q-4-11-7-23t-3-23q0-92 134.5-137T822 717t316-28q98 0 169.5 28.5T1468 810l127 91q163 119 298 220.5t246 197.5 136.5 132 40.5 68.5 26 135.5q2 20 2 29 0 95-53 146.5zM1275 1989q8-23 15-48t7-51q0-38-4-72.5t-15-70.5q-12-4-92.5-60.5T993 1546l-153-114q-78-58-152-115l-135-102q-61-46-101-78l-49-38q-4 67-26 137t-22 82q0 38 55.5 89T690 1624l134 98q67 50 132 97l117 84q55 40 104.5 75t84.5 48q4-9 7-19zm927.5-383.5Q2173 1579 2122 1579q-75 0-249.5 47.5T1610 1694l-104 23q-17 4-63.5 14t-50.5 10q7 33 11.5 64.5t4.5 65.5q0 42-7 83.5t-24 78.5q11-2 47-11t89-23l116-30q64-17 130-36l130-36q227-64 263.5-90t58-63.5 21.5-73.5q0-38-29.5-64.5zM682 859q-33 6-62 13l-56 13 903 716 117-27zm207-36l-60 10q-31 5-63 11l897 711 115-26zm218-29q-37 4-65.5 6.5T975 810l883 700 117-26zm257.5 826q9.5-2 20.5-2L492 910q-21 9-33.5 20.5T446 956q0 7 7 18t109 93l111 89q62 50 129 102l132 103q66 52 123 95l100 75q84 64 118.5 77.5t68.5 13.5q11 0 20.5-2zm767.5-151q8 0 8-6t-6.5-16-14.5-20l-16-17q-10-10-35.5-30.5T1944 1286l-133-100q-348-260-451.5-321.5T1223 796q-8 0-12-2l851 677 25-2h45z" + }, + "children": [] + }] +}; +exports.u1F4D7 = u1F4D7; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4D8.js b/dist/noto_emoji_regular/u1F4D8.js new file mode 100644 index 000000000..4032b1a19 --- /dev/null +++ b/dist/noto_emoji_regular/u1F4D8.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4D8 = void 0; +var u1F4D8 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2337 1616l5 43q2 19 2 26 0 93-52.5 145t-109.5 74.5-152 55-254 76.5l-212 59q-32 9-103 31t-135 22q-62 0-119-24t-140-86l-371-286-251-196h-1q-99-78-117.5-95.5T282 1403t-26-82q0-20 8-44l8-26q6-19 13-46l15-56q10-41 18.5-83t8.5-54q0-7-3-18l-13-46q-3-11-3-21 0-92 130.5-136.5t378.5-73 321-28.5q98 0 169.5 28.5T1468 810l127 91q339 247 428.5 321t169 144 102 111.5 28.5 60 14 78.5zm-1044 201.5q-4-34.5-15-70.5-12-4-92.5-60.5T993 1546l-153-114q-78-58-152-115l-135-102q-61-46-101-78l-49-38q-4 67-26 137t-22 82q0 38 55.5 89T690 1624l134 98q67 50 132 97l117 84q55 40 104.5 75t84.5 48q5-12 20-59.5t15-76.5q0-38-4-72.5zm878-27.5q23-20 42-53t19-67q0-38-29.5-64.5T2122 1579q-75 0-247 46.5t-266 68.5l-104 23q-16 4-62.5 14t-50.5 10q7 33 11.5 64.5t4.5 65.5q0 42-7 82.5t-24 79.5q11-2 47-11t89-23l116-30q64-17 130-36l130-36q105-30 176.5-54t83.5-34 20-14zm-131-431l-111-85-884 173 111 83zm-185-140l-55-41q-28-21-57-42l-879 171 110 85zm-186-138l-116-84-868 170 108 85zm-250-178q-17-11-32-21.5t-32-19.5l-844 164q22 17 48 39t57 46l862-167q-17-11-31-22zm-188 681q27 17 54.5 27.5t58.5 10.5q11 0 61.5-8.5T1510 1592l189-46 108-24 180-39q33-7 47-9l40-4q19 0 40-1h18q9 0 9-7 0-8-11.5-22.5T2107 1414zm-65-792q-43 0-100 6t-110 14l-89 14q-236 38-328.5 66.5T446 955l1 8q0 5 4 7l812-159q-26-13-47-16t-50-3z" + }, + "children": [] + }] +}; +exports.u1F4D8 = u1F4D8; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4D9.js b/dist/noto_emoji_regular/u1F4D9.js new file mode 100644 index 000000000..4c99c7e47 --- /dev/null +++ b/dist/noto_emoji_regular/u1F4D9.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4D9 = void 0; +var u1F4D9 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2337 1616l5 43q2 19 2 26 0 49-15 90.5t-91 100.5-582 194l-92 25q-37 10-107.5 32t-130.5 22q-57 0-112.5-22t-146.5-89l-371-286-251-196q-101-78-119.5-95.5t-44-57.5-25.5-81q0-20 8-44l8-27q6-19 13-46l15-56q10-41 18.5-83t8.5-54q0-7-3-17l-6-22q-4-11-7-23t-3-23q0-92 132.5-136t379-73 314.5-29q92 0 163 25.5t172 96.5l126 90q352 255 496.5 378.5T2262 1435t40.5 59 21 45.5 13.5 76.5zm-1075 410q9-28 22-64t13-70q0-38-4-74t-15-72q-10-2-75.5-47T993 1545l-153-113q-65-49-138.5-104.5T553 1214l-101-77q-40-31-49-39-4 68-26 138.5t-22 82.5q0 21 22.5 55T690 1624l266 195q65 48 117 85l86 61q41 30 63 42t40 19zm940-421q-30-26-80-26-75 0-241.5 46t-271.5 70l-104 23q-16 4-62.5 14t-50.5 10q6 30 11 62.5t5 66.5q0 42-7 83t-24 79q11-2 47-11t89-23l116-30q64-17 130-36l130-36q227-64 263.5-90t58-63.5 21.5-73.5q0-39-30-65zM1025 930l-118 26 105 84 119-25zm30 344l107 85 117-26-105-84zM825 972l-118 26 105 84 119-25zm537 344l117-24-105-85-119 26zm-363-205l-118 26 107 83 117-24zm737 301l117-25-106-84-118 26zm-306-42l106 85 117-25-105-85zm74-259l-105-85-118 26 105 83zm-174-139l-105-83-118 24 105 85zm6 525l117-26-105-84-118 25zm237-331l-118 24 105 84 119-25zm-385 12l117-25-106-83-118 24zm-492-3l107 84 102-22-105-84zm-173-138l104 85 104-22-105-85zm348 277q28 21 55 42l53 41 100-22-105-83zm382 200l-105-84-97 21q32 23 59 44.5t50 38.5zm683-144l93-19-50-40q-28-21-60-44l-90 19zM682 859q-33 6-62.5 12.5T564 885l74 59 118-25zm1165 355l-54-42-57-41-81 17 105 83zM889 823q-29 5-60 9.5T766 844l72 57 118-25zm774 255q-31-22-59-43l-55-41-68 15 105 85zm-196 523q19-3 34-6l27-6 56-14-62-49-118 25zm-360-805q-37 2-65.5 6t-66.5 7l63 50 118-25zm751 713l64-14q30-6 53-10l-53-44-119 26zm-383-567q-29-21-48-34l-33-22q-14-9-23-14.5t-16-10.5l-50 10 107 84zm587 529q14-2 29.5-2t40.5-1q9 0 9-7 0-6-8-17.5t-23-27.5l-13-12-94 20zm-399 85q28-8 57-14t58-13l-56-46-118 25zM492 909q-21 11-33.5 22T446 956q0 6 3 11.5t11 14.5l97-22zm742 677q27 17 54 27t57 10q10 0 19.5-2.5t20.5-2.5l-63-50zm29-774q-20-11-31.5-13.5T1211 796l26 22z" + }, + "children": [] + }] +}; +exports.u1F4D9 = u1F4D9; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4DA.js b/dist/noto_emoji_regular/u1F4DA.js new file mode 100644 index 000000000..48a442469 --- /dev/null +++ b/dist/noto_emoji_regular/u1F4DA.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4DA = void 0; +var u1F4DA = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2473 1545l5 43q2 19 2 26 0 87-54 145.5T2229 1868l-78 27q31 48 43.5 96.5T2207 2097q0 136-111.5 204T1472 2506q-84 23-155 45t-131 22q-58 0-113.5-23T930 2462l-121-93-383-297q-95-73-201-157t-106-170q0-18 8-44l8-26q6-20 13-46l15-56q13-47 21-86.5t8-53.5q-6-14-14-38t-8-44q0-53 47-92t189-73l6-23q-8-6-105-82.5T210 919q0-21 5-35.5t11-35.5l27-104 14-58q6-27 10-49.5t4-32.5q-6-14-13.5-37.5T260 523q0-100 159-143.5T738 319l228-25 62-6q31-2 63-2 143 0 256 72t464.5 336.5 415 351.5 69.5 223q95 81 130 132t47 144zm-1348 904q21-58 27.5-85t6.5-49q0-37-2.5-74.5T1140 2170q-11-4-89-58.5T856 1969l-153-113q-78-58-153-115l-236-180q-41-31-50-39-4 64-24.5 136.5T219 1732l-1 11q0 32 34 68.5T432 1958l120 90q66 49 134 98l133 97q65 48 117 85l126 90q17 11 31.5 18t31.5 13zM309 905l-1 10q0 28 22.5 55t71.5 67l63 51q15 13 34 27l38 29q20 15 40 29l465 338 110 79q17 11 31.5 19t30.5 13q14-30 24.5-64.5t10.5-69.5q0-74-17-145-15-5-122-80t-192-140l-125-97-234-178-204-154q-2 65-24 136.5T309 905zm1030 700l-5 15q-3 7-5 9 25-5 80.5-19t127.5-33l152-41q377-100 416.5-132t59-66.5 19.5-71.5q0-35-28-62t-78-27q-81 0-267 50t-248 64l-103 23q-15 4-62.5 14t-53.5 10q8 33 12 63t4 62q0 58-7 91t-14 51zm726.5 426q-27.5-27-77.5-27-78 0-254.5 47.5T1472 2119l-104 23q-16 4-62.5 14t-51.5 10q17 63 17 127 0 42-8 84.5t-24 78.5q11-2 47-10.5t89-22.5l116-30 130-35q359-98 392-126t56.5-60 23.5-77q0-37-27.5-64zm273-495q-28.5-28-80.5-28-49 0-135 18t-250 66l-343 96q7 28 10.5 55t3.5 57q0 83-31 160 12 0 57-13l109-28q375-95 531.5-150.5T2367 1599q0-35-28.5-63zM1224 2046q8-1 18-3l24-5q13-3 34-6-23-14-46.5-29.5T1203 1967l-120-93q-16-12-108.5-83T832 1681l-133-104q-66-51-118-93l-86-68q-47-37-63-61.5t-24-40.5q-46 14-73 29t-27 36q0 9 6.5 18.5t108 93T663 1682l133 103q66 51 123 94l100 75q90 68 122 80.5t66 12.5q9 0 17-1zM997 687q142-14 177-25t104-21l15-3q14-2 23.5-8t9.5-14q0-9-14-24t-31-29l-21-16q-20-17-39.5-29.5T1173 505q-27 0-251.5 24T697 592q0 23 50 66t101 43zm-505 551q0 4-1 9 0 40 50 85t165 131l120 90 266 195 116 84q52 38 86 62l40 28q17 11 32 19t31 13q12-29 23.5-64.5t11.5-70.5q0-25-2-50.5t-5-49.5q-44 14-80.5 20t-68.5 6q-77 0-145-38.5T992 1612l-157-123-110-85-232-177z" + }, + "children": [] + }] +}; +exports.u1F4DA = u1F4DA; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4DB.js b/dist/noto_emoji_regular/u1F4DB.js new file mode 100644 index 000000000..b1357fb31 --- /dev/null +++ b/dist/noto_emoji_regular/u1F4DB.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4DB = void 0; +var u1F4DB = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2250.5 2017.5q-137.5 201.5-376 310T1270 2436q-444 0-751.5-239T211 1519q0-197 55-396.5t141-371T584 451t119-143.5 46-14.5q43 0 67.5 40T861 452.5 912.5 579t87.5 47q37 0 71.5-35t67-116.5 73-141T1292 274q37 0 67.5 27t63.5 103l31 71q29 67 65.5 112.5T1595 633q31 0 62.5-35t81.5-151l24-58q20-47 45.5-68t52.5-21q25 0 56.5 25t158 222T2295 990t93 520q0 306-137.5 507.5zM1959 1147q0-47-32.5-80t-78.5-33H752q-46 0-78.5 34t-32.5 79v493q0 45 33 78t78 33h1096q45 0 78-32t33-79v-493z" + }, + "children": [] + }] +}; +exports.u1F4DB = u1F4DB; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4DC.js b/dist/noto_emoji_regular/u1F4DC.js new file mode 100644 index 000000000..8750578eb --- /dev/null +++ b/dist/noto_emoji_regular/u1F4DC.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4DC = void 0; +var u1F4DC = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1045 2285q2 6 2 12 0 25-39 54.5t-86 29.5q-39 0-49-24l-50-116q-2-6-2-11 0-26 41-55t86-29q38 0 49 23zm1460-594q0 3 1 8 0 19-12.5 21t-111 34.5-240 146.5-230.5 159-184.5 65.5T1477 2146h-53q-37 0-96.5 8t-145.5 35l-80 26q-19 23-42 41l-23-53q19-17 29.5-35t10.5-33q0-24-23-36t-57-12q-89 0-177.5 56T731 2247q0 26 25 37.5t63 11.5l20 51q-10 2-19 2h-19q-48 0-82-15.5t-46-44.5L145 1036q-6-15-6-30 0-72 106.5-149T477 780q48 0 84.5 15.5T609 841l11 29q50-14 109-25t113-11h61q235 0 371-62t285-188 347-175l7-1q13 0 18 13zm-223-106l-432-962q-5-11-19-11h-4q-6 0-62.5 28.5t-179 127.5-212 142.5-178 60.5T966 988h-59q-54 0-112.5 11T686 1024l424 1008q49-14 113-28t129-14h48q158 0 247-18t183-65 224.5-151.5 176.5-124 49.5-24.5 3.5-14q0-4-2-8zM223 814q-2-6-2-11 0-26 40-55t86-29q18 0 30.5 6t17.5 17l7 15q-45 8-91 27t-82 45z" + }, + "children": [] + }] +}; +exports.u1F4DC = u1F4DC; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4DD.js b/dist/noto_emoji_regular/u1F4DD.js new file mode 100644 index 000000000..e907c8add --- /dev/null +++ b/dist/noto_emoji_regular/u1F4DD.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4DD = void 0; +var u1F4DD = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2433.5 655.5Q2418 688 2388 722l-37 42q-46 48-162.5 157T1946 1145l-237 214-99 86q-67 58-164.5 78t-127.5 27l-81 21q-39 11-66 11-22 0-31-16.5t-9-31.5q0-11 1.5-21.5t3.5-18.5q0-9 3-32l18-116 11-66q18-111 41.5-155.5t68.5-106T1500 769l112-119h-1q309-325 372-359t127-34q82 0 162.5 52T2401 442t48 145q0 36-15.5 68.5zm-262 1564.5q-147.5 50-315.5 79t-502 107-590 87h-13q-45 0-78-14t-90-108.5-100.5-229-72.5-279-78-317T228 1082t-66-340.5-11-58.5q0-34 39-44.5T343 621t194-16l134-15q118-13 291-26t321-56 175-43q23 0 35.5 17t33.5 68.5 21 60.5q0 13-23 38t-37 25q-15 0-29-51t-40-51q-10 0-117 27.5T1081.5 637t-303 33.5-223 22.5-100.5 7l-73 8q-38 4-74 7-17 0-26 2.5t-26 5.5q0 8-1.5 15.5T253 754q3 36 37.5 178.5t68 306.5 58.5 241 75.5 319 98.5 357 87.5 172 103.5 57q94 0 446-67t372-72.5 221-51.5l127-25q84-15 137-33t53-38q0-10-9-26l-18-28q-84-145-133.5-243T1834 1412l-3-15q-2-6-2-12 0-13 16.5-41.5t28.5-28.5q12 4 43 75t101 245 156 297.5 132 185.5q13 18 13 28 0 24-147.5 74zM1381 1208l12 82 70 14 626-600q-33-22-56.5-50.5T1993 587zm-95-44l67 15 625-633q-3-10-5-25l-4-30q-2-14-5-24t-9-10q-18 0-44.5 33t-163 165.5T1471 935t-185 229zm-56-355q20 0 30 13t10 30q0 46-54.5 55.5t-156 21.5T918 956.5 845 972q-14 0-28-1.5t-28-1.5q-24 0-84 23.5T600 1016q-37 0-79-23t-42-59q0-21 15-36.5t33-15.5q10 0 20 6l20 13q10 7 20.5 13t22.5 6q27 0 67-23t103-25l47-1q55-2 86-15t75-13h24q51 0 104-14t107-20h7zm1050-397.5q-76-74.5-163-74.5-40 0-55 22t-15 54q0 69 37 129t94.5 87.5T2275 657t60-24 21-66q0-81-76-155.5zM2193 755q-8-4-19-9l-25-10q-14-5-26-12l-631 606 23 70q38-30 357-326.5T2196 772t5-9-8-8zm-1174 402l9-2q3 0 8-1 20 0 32.5 15.5t12.5 35.5q0 29-32.5 48t-75.5 19l-15-1h-17q-12 0-22.5 3.5T898 1283l-20 10q-11 5-28.5 10t-57.5 5l-62-1q-60 0-85.5 13t-37.5 13q-24 0-39.5-19t-15.5-39q0-27 29-41.5t51-27.5 49-13q26 0 54.5 6.5t56.5 6.5q18 0 28-2.5t30-13.5l23-12q12-6 24.5-10t23.5-4 21 1.5 20 1.5q26 0 57-10zm262 321q38-5 100.5-23.5t99.5-35.5l-28-77-80-16q-7-2-11-6t-4-9l-16-94-71-16q-23 59-36.5 121t-15.5 81 16 42.5 46 32.5zm-235.5-.5q14.5 14.5 14.5 34.5 0 47-61.5 58.5T901 1599t-65 17q-18 0-38.5-6t-37.5-6q-22 0-40.5 5.5T678 1615q-19 0-32-12t-13-31q0-23 38.5-47t77.5-24q19 0 39.5 6t45.5 6q21 0 51-19t51-19h23q23 0 31-6t21-6q20 0 34.5 14.5zm1212.5-935q-11 7.5-22 7.5-37 0-66-28.5t-29-69.5q0-13 7-20.5t25-7.5q34 0 65 28.5t31 63.5q0 19-11 26.5z" + }, + "children": [] + }] +}; +exports.u1F4DD = u1F4DD; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4DE.js b/dist/noto_emoji_regular/u1F4DE.js new file mode 100644 index 000000000..2f94197d0 --- /dev/null +++ b/dist/noto_emoji_regular/u1F4DE.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4DE = void 0; +var u1F4DE = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2228.5 1295q-188.5 335-452 597.5t-595 447.5T697 2525q-46 0-90-14.5t-97.5-50.5-111.5-95-127-153-79-111.5-10-38.5q0-20 9.5-37.5T218 1995l479-343q22-16 50-16 32 0 52.5 19.5t66.5 91T996 2016q148-22 355.5-181t370-369 186.5-362q-136-57-185.5-85.5t-122-69.5-72.5-94q0-27 15-50l344-479q25-36 67-36l20 2q14 1 139 93.5T2301.5 553t89.5 134 26 120q0 153-188.5 488z" + }, + "children": [] + }] +}; +exports.u1F4DE = u1F4DE; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4DF.js b/dist/noto_emoji_regular/u1F4DF.js new file mode 100644 index 000000000..5ad69b3cb --- /dev/null +++ b/dist/noto_emoji_regular/u1F4DF.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4DF = void 0; +var u1F4DF = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2165 662q74 0 126.5 52.5T2344 841v1132q0 74-52.5 126.5T2165 2152H433q-72 0-125-52.5T255 1973V841q0-74 53-126.5T433 662h1732zm-46 289q0-47-32-79t-79-32H591q-47 0-80 32.5T478 951v515q0 46 33 78.5t80 32.5h1417q47 0 79-32t32-79V951zM773.5 1748.5Q740 1714 692 1714q-47 0-81 34t-34 81 34 81 81 34q48 0 81.5-34.5T807 1829t-33.5-80.5zm1213.5-.5q-34-34-81-34t-81 34-34 81 34 81 81 34 81-34 34-81-34-81zm-766.5 16q46.5 29 79.5 29 32 0 75-34t43-57-35.5-36.5-87.5-13.5q-64 0-92.5 16t-28.5 36q0 31 46.5 60zm156.5 167q-41-35-75-35-32 0-80 28t-48 60q0 26 32.5 39.5t88.5 13.5q42 0 82.5-12t40.5-34q0-25-41-60zm-198-33q38-39 38-58 0-28-49-54.5t-73-26.5q-21 0-31.5 13t-12.5 24l-2 8q0 11-1 22.5t-1 23.5q0 36 15 61.5t44 25.5q35 0 73-39zm369-94l-1-8q-2-12-13-24.5t-31-12.5q-29 0-75.5 27t-46.5 54q0 19 39.5 58t67.5 39q32 0 47.5-25t15.5-62q0-23-3-46zm-719.5-438q-7.5 19-21.5 19t-21.5-20-7.5-46q0-22 7.5-41.5T807 1258t21.5 20.5 7.5 43.5q0 25-7.5 44zm1182 0q-7.5 19-21.5 19-15 0-21.5-21t-6.5-47q0-23 6.5-41t21.5-18q14 0 21.5 20.5t7.5 43.5q0 25-7.5 44zm-466 0q-7.5 19-21.5 19t-21-20-7-46q0-21 7-41t21-20q17 0 23 20.5t6 43.5q0 25-7.5 44zm170 1q-7.5 18-21.5 18t-21-22.5-7-47.5q0-21 6.5-39t23.5-18q14 0 20.5 21t6.5 44q0 26-7.5 44zM827 1162.5q-9 17.5-20 17.5-14 0-21.5-20t-7.5-46q0-24 6.5-42t22.5-18 22.5 20 6.5 43q0 28-9 45.5zm1182 0q-9 17.5-20 17.5-15 0-21.5-21.5t-6.5-47.5q0-23 7-40t21-17q16 0 22.5 20t6.5 43q0 28-9 45.5zm-507-2.5q-7-20-7-46 0-22 7-41t21-19q16 0 22.5 20t6.5 43q0 31-8.5 47t-20.5 16q-14 0-21-20zM974.5 990q20.5-6 43.5-6t43 6.5 20 21.5q0 14-20.5 21t-49.5 7h-11q-8 0-27-7t-19-21q0-16 20.5-22zm739.5 173q-8 17-21 17-14 0-21-22.5t-7-47.5q0-23 8-39.5t22-16.5q15 0 21 21t6 44q0 27-8 44zm-678 237q16 0 30.5 7.5t14.5 20.5q0 15-20 21.5t-46 6.5q-23 0-42-7t-19-21q0-15 20-21.5t45-6.5h17zm887 0q16 0 30 7.5t14 20.5q0 15-19.5 21.5t-45.5 6.5q-24 0-43-7t-19-21q0-12 18-20t48-8h17zm-969.5-33q-6.5 18-20.5 18-16 0-22.5-21t-6.5-45 7-42.5 22-18.5 21 22.5 6 42.5q0 26-6.5 44zM740 1400q16 0 30.5 7.5T785 1428q0 15-20 21.5t-46 6.5q-23 0-42-7t-19-21q0-15 21-21.5t44-6.5h17zm679.5-33q-6.5 18-20.5 18-16 0-22.5-21t-6.5-45q0-22 7.5-41.5t21.5-19.5 20.5 21 6.5 44q0 26-6.5 44zm207.5 33q16 0 30 7.5t14 20.5q0 14-19 21t-45 7q-24 0-43.5-7t-19.5-21q0-12 18-20t48-8h17zm233.5-409q20.5-7 43.5-7t43 6.5 20 21.5q0 16-22 22t-47 6h-12q-7 0-26.5-6.5T1840 1012q0-14 20.5-21zm-1182 0q20.5-7 43.5-7t43 6.5 20 21.5q0 16-22 22t-48 6h-11q-8 0-27-7t-19-21 20.5-21zm571 374q-6.5 20-21.5 20-16 0-22-22.5t-6-47.5q0-22 6.5-39.5t21.5-17.5q16 0 22 22t6 42q0 23-6.5 43zm-591.5 1q-7 19-21 19t-21.5-20-7.5-46 8-43.5 21-17.5q15 0 21.5 20.5t6.5 43.5q0 25-7 44zm1291.5-167q17.5 7 17.5 20 0 16-19.5 22.5t-45.5 6.5q-24 0-43-7.5t-19-21.5q0-13 22-20t45-7q25 0 42.5 7zm-1182 0q17.5 7 17.5 20 0 16-20 22.5t-46 6.5q-22 0-41.5-7.5T658 1219q0-13 22-20t45-7q25 0 42.5 7zM1268 991q19-7 46-7 23 0 42.5 6.5t19.5 21.5q0 16-22 22t-47 6h-12q-9 0-27.5-7.5T1249 1012q0-14 19-21zm-357.5 168q-6.5-21-6.5-45 0-23 6.5-41.5T933 1054q14 0 20.5 21t6.5 44q0 30-7.5 45.5T933 1180q-16 0-22.5-21zm654-168q20.5-7 43.5-7t43 6.5 20 21.5q0 16-21.5 22t-46.5 6q-24 0-41.5-7.5T1544 1012q0-14 20.5-21zm-441 375q-6.5 19-20.5 19t-21.5-20-7.5-46q0-23 6-42t23-19q14 0 20.5 20.5t6.5 43.5q0 25-6.5 44zm-59.5-166q17 8 17 19 0 16-20 22.5t-46 6.5q-22 0-41.5-7.5T954 1219q0-13 20.5-20t46.5-7 43 8zm268 200q20 0 32 7.5t12 20.5q0 14-19.5 21t-45.5 7q-23 0-42.5-6.5T1249 1428t20-21.5 46-6.5h17zm508-34q-7 19-21 19t-21-20-7-46q0-21 7-41t21-20 21 19 7 45q0 25-7 44zm-186.5-167q17.5 7 17.5 20 0 14-19 21.5t-45 7.5-44.5-7.5-18.5-21.5q0-12 21-19.5t46-7.5 42.5 7zm-447.5-41.5q-6-22.5-6-47.5 0-22 6.5-39t21.5-17q16 0 22 20t6 43q0 36-9.5 49.5T1228 1180q-16 0-22-22.5zm212 6q-8 16.5-19 16.5-16 0-22.5-21t-6.5-45 5-42 24-18q13 0 20 20t7 45q0 28-8 44.5zm-802.5-3.5q-7.5-20-7.5-46 0-22 6-41t23-19q16 0 22 20.5t6 43.5q0 28-8 45t-20 17q-14 0-21.5-20zm507 2.5q-7.5 17.5-19.5 17.5-14 0-21.5-20t-7.5-46q0-25 6-42.5t23-17.5q15 0 21 20.5t6 43.5q0 27-7.5 44.5zm675.5-2.5q-7-20-7-46 0-22 7-41t21-19q16 0 22 20.5t6 43.5q0 33-8.5 47.5T1819 1180q-14 0-21-20zm-437.5 40q15.5 8 15.5 19 0 14-19.5 21.5t-45.5 7.5q-23 0-42.5-6.5T1249 1219q0-12 21-19.5t47-7.5q28 0 43.5 8z" + }, + "children": [] + }] +}; +exports.u1F4DF = u1F4DF; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4E0.js b/dist/noto_emoji_regular/u1F4E0.js new file mode 100644 index 000000000..c95bece37 --- /dev/null +++ b/dist/noto_emoji_regular/u1F4E0.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4E0 = void 0; +var u1F4E0 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2344.5 2158q-10.5 70-31.5 122.5t-52.5 85-61 48T2096 2438l-49 5q-24 3-36 3-65 2-150 2l-184 2q-99 0-206 1h-215q-711 0-770-18t-104-83.5-46.5-93-6.5-32.5l-4-3q-49-45-65-97t-16-108q0-95 46-387.5t133-394T611 1133q48 0 89.5 19.5t59.5 40 48 20.5q40 0 51-12t11-43q0-29-2-58t-2-58q0-149 27.5-278.5t94.5-245 127.5-147T1330 340l173 1 364-1q81 0 162.5 1t159.5 9l26 2q22 3 40.5 13.5T2274 396l-3 17q-2 10-69.5 58.5t-126 182.5-58.5 367l1 73v33q0 63 9 79t31 18 79.5 30.5T2249 1446t80 328 26 231q0 83-10.5 153zM2212 1709.5q-40-196.5-64.5-261T2071 1343t-168-41q-59 0-122 1.5t-129 1.5q-129 0-253.5 2t-250.5 2q-76 0-146-2t-146-2q-39 0-41.5 23t-18 71.5-40 77.5-32 48-16.5 75l-24 130q-6 34-6 68 0 30 5 57l9 58q3 21 3 42v20q0 20 2.5 35t2.5 30v41q0 24-5.5 34t-5.5 18q0 27 35 35.5t95 8.5q172 0 336-4t332-4q101 0 197 2t197 2q174 0 246.5-21t98.5-53 26-103q0-90-40-286.5zM965 1017v82q0 49 13.5 73.5t31.5 32 89 9.5l80 2q45 0 96 1h105q77 0 154-1l300-2q46 0 61-7.5t15-37.5q0-29-1.5-57.5t-1.5-56.5q0-165 26.5-290.5T2005 557t62.5-92.5T2085 440q0-5-8-6.5t-14-1.5q-51 0-99 2t-98 2l-474-5h-84q-92 0-120 8.5t-79.5 76-84 147.5-46 146.5T965 1017zm-265 243.5q-29-20.5-74-20.5-163 0-215.5 322.5T358 1996q0 63 26 94.5t80 31.5q78 0 114.5-37t36.5-109q0-37-13.5-77t-13.5-74q0-51 4-103.5t15-103.5l9-47q22-123 67.5-163t45.5-79q0-48-29-68.5zm583 279.5l2 26q2 28 2 55.5t1 55.5q0 101-15 137t-48 36q-39 0-77.5 2t-76.5 2l-51-1h-87q-67 0-86-21t-19-92q0-43 16-143.5t40.5-124.5 71.5-26l70-4q34-2 69-2h36q18 0 36 3l46 4q32 3 49.5 25.5t20.5 67.5zm-166.5-567.5Q1106 960 1106 944q0-22 29.5-34t75.5-12q27 0 53.5 7.5t53.5 7.5q33 0 65-5.5t67-5.5h27q33 0 67-3.5t67-3.5q30 0 58 5.5t56 5.5l22-1q17 0 26 11t9 26q0 26-19.5 39t-84.5 13q-48 0-95-4.5t-95-4.5q-36 0-75.5 7t-78.5 7q-40 0-73.5-9.5T1191 980q-19 0-29.5 2.5T1144 985q-17 0-27.5-12.5zm113-418Q1273 539 1319 539q32 0 64.5 3.5t64.5 3.5q11 0 21-1.5t20-1.5q17 0 36.5 7.5t37.5 7.5 34-3 33-3q38 0 82 6.5t85 6.5q7 0 13.5-1t13.5-1q20 0 30.5 13t10.5 30q0 15-10.5 29.5T1824 650q-40 0-78-9t-77-9q-25 0-53 5t-56 5q-16 0-31-4l-30-7q-16-4-32-7.5t-35-3.5q-43 0-107 8.5t-100 8.5q-16 0-27.5-12.5T1186 598q0-28 43.5-43.5zm-80 225.5q-9.5-12-9.5-26 0-17 15.5-26.5t54.5-9.5q26 0 50.5 3t49.5 3q26 0 52-5t49-5h16q3 0 46.5 7t113.5 7q51 0 100-5.5t95-5.5q18 0 26.5 11.5t8.5 25.5q0 45-66 45-24 0-47-2t-46-2q-31 0-64.5 6t-65.5 6q-21 0-41.5-3.5T1444 800t-43.5 1.5-42.5 1.5q-28 0-68-7t-79-7h-14q-6 0-10.5 1.5T1176 792q-17 0-26.5-12zm388.5 728.5q-21 12.5-56 12.5-43 0-64.5-9t-21.5-42q0-18 11.5-33.5t35.5-15.5h37q49 0 64 15.5t15 33.5q0 26-21 38.5zm233 0q-21 12.5-56 12.5-43 0-64.5-9t-21.5-42q0-18 11.5-33.5t35.5-15.5h37q48 0 63.5 15.5t15.5 33.5q0 26-21 38.5zm231 .5q-22 12-55 12-43 0-64-9t-21-42q0-18 11.5-33.5t34.5-15.5h37q48 0 63.5 14.5t15.5 34.5q0 27-22 39zm-465 322.5q-22 12.5-63 12.5-39 0-58.5-9t-19.5-40q0-33 21.5-42t64.5-9q41 0 59 14t18 37q0 24-22 36.5zm233 0q-22 12.5-63 12.5-39 0-58.5-9t-19.5-40q0-33 21.5-42t64.5-9q41 0 59 14t18 37q0 24-22 36.5zm1-161q-21 12.5-56 12.5-44 0-65-9t-21-41 22-41 64-9 59.5 14 17.5 36q0 25-21 37.5zm-233 0q-21 12.5-56 12.5-44 0-65-9t-21-41 22-41 64-9 59.5 14 17.5 36q0 25-21 37.5zm465 161.5q-21 12-64 12-38 0-57.5-9t-19.5-40q0-33 21-42t64-9q39 0 58 13.5t19 37.5q0 25-21 37zm-1.5-160.5Q1979 1683 1947 1683q-42 0-63.5-9t-21.5-41 21.5-41 63.5-9q40 0 58.5 13t18.5 37q0 27-22.5 38.5z" + }, + "children": [] + }] +}; +exports.u1F4E0 = u1F4E0; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4E1.js b/dist/noto_emoji_regular/u1F4E1.js new file mode 100644 index 000000000..ffddffb03 --- /dev/null +++ b/dist/noto_emoji_regular/u1F4E1.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4E1 = void 0; +var u1F4E1 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2149 1471q0 21-1 31v7q-24 246-182.5 380T1537 2028l19 66 10 31q11 36 20 81.5t9 80.5q0 48-28 81t-116 70-189 53.5-206 16.5q-191 0-334-50t-208.5-127.5T448 2190q0-30 9.5-58t20.5-50l208-421q-103-118-151.5-264T486 1095q0-191 67.5-385T768 427.5t342-88.5q183 0 355.5 81.5T1786 654l46-31q-8-17-14-36t-6-40q0-68 49.5-118t120.5-50q72 0 121 49t49 119q0 72-49.5 122T1982 719q-14 0-27.5-2.5T1929 709l-44 59q132 181 198 358t66 345zm-173.5-350Q1922 971 1829 843l-530 721q130 90 250.5 141t214.5 51q127 0 196-89t69-239q0-157-53.5-307zM1708 708q-79-77-177-137.5T1348.5 484 1236 458q-94 0-166.5 79.5t-114 219T914 1005q0 90 9 119.5t50 94.5zm-73 1134.5q-51-7.5-193-62T1162 1629t-250-240.5T746 1086t-54-280q0-26 2.5-48.5T697 709q0-8-3.5-15.5T682 686q-22 0-53 87t-39.5 139-8.5 138q0 176 66.5 341.5t216.5 287 293 182 364 60.5l36-1q44 0 84.5-10t43.5-28q0-2 1.5-5t1.5-5q-2-22-53-29.5zM1425.5 2258q-23.5-13-50.5-13l-43 1q-166 0-322-83.5T755 1937l-9-15q-10-17-18.5-25t-17.5-8q-21 0-40.5 48t-22.5 54l-22 44q-25 48-34.5 79.5T581 2174q0 104 170.5 176.5T1089 2423q108 0 212-29l37-10q57-14 84-37.5t27-50.5q0-25-23.5-38zM1190 1479q66-86 133-169l135-168q4-6 19-24l34-41 41-51q21-27 51-68.5t30-49.5q0-3-6-3-12 0-42 20.5t-84 65.5l-26 21q-112 81-231 169.5T1047 1327q32 42 67.5 79.5t75.5 72.5zm730.5-868.5Q1946 636 1982 636q38 0 63-25.5t25-63.5q0-36-25-61t-63-25q-36 0-61.5 25t-25.5 61q0 38 25.5 63.5z" + }, + "children": [] + }] +}; +exports.u1F4E1 = u1F4E1; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4E2.js b/dist/noto_emoji_regular/u1F4E2.js new file mode 100644 index 000000000..4431b2d17 --- /dev/null +++ b/dist/noto_emoji_regular/u1F4E2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4E2 = void 0; +var u1F4E2 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2376.5 1870q-64.5 209-181 333.5T1943 2328q-99 0-189-69t-139-106l-261-193q-74-54-191-101t-260-79v5l-219 162q-13 10-40.5 25.5T582 1988H401q-34 0-67.5-1t-62.5-1q-52 0-80-20t-28-57v-123l-3-291-1-223q0-39 2-65l2-35q2-39 16.5-69.5t134-122.5 150-109.5T558 853q24 0 57 1l67 2 65 4 51 5q51 5 78 26.5t27 61.5v138q97-25 182.5-56t133-57T1374 878l173-120q49-37 82-63l53-42 34-28q64-53 118-75.5t109-22.5q134 0 250 121t182 331.5 66 447.5q0 234-64.5 443zM548 1822.5q-1-8.5-1-15.5v-167l1-259v-161q0-14-6-22t-110-10h-56q-65 0-91.5 4.5T258 1266q0 67-1.5 130.5T255 1527q0 62 1.5 123t1.5 127q0 75 14.5 90t91.5 16l45 1 76-2q39-2 51.5-9.5T549 1839q0-8-1-16.5zm87-793.5l51-39q45-35 47-39.5t2-5.5q0-14-61-16t-127-2q-14 0-28.5 3T491 943l-49 35q-44 31-79.5 60t-35.5 39q0 2 5 3t21 1l44 1q28 0 75 1 28 0 49-1h22q13 0 24-5t68-48zm941 1004q-71-138-100.5-292.5T1446 1427q0-174 33.5-327t93.5-274q-200 178-390 255t-399 118q-40 40-62.5 103T699 1437q0 73 26.5 134.5T801 1678q199 37 332 86t209 95 234 174zm34-389l371-114q-14-25-22-57.5t-8-69.5q0-32 6.5-61t17.5-53l-372-22q-4 39-6 78.5t-2 81.5q0 57 4 111t11 106zm715-483.5q-23-130.5-65.5-233t-62-114.5-49.5-12q-60 0-140.5 46t-146 141.5T1762 1182l298 34q45 6 77 58t32 129q0 67-26.5 118t-68.5 66l-446 155q46 214 140 338t204 124q154 0 265-227.5t111-549.5q0-136-23-266.5z" + }, + "children": [] + }] +}; +exports.u1F4E2 = u1F4E2; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4E3.js b/dist/noto_emoji_regular/u1F4E3.js new file mode 100644 index 000000000..f80d47a82 --- /dev/null +++ b/dist/noto_emoji_regular/u1F4E3.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4E3 = void 0; +var u1F4E3 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2037 1748.5q-53 110.5-117.5 181t-163 122-307.5 112T951 2282t-304 58l-35 2q-23 70-80.5 106.5T400 2485q-130 0-217-81t-87-197q0-78 37-140t84-80.5 76-18.5l25-68 74-225q75-224 198-519.5T814 744l31-33q53-56 144.5-95t221.5-39q222 0 423 117.5t328.5 336T2090 1482q0 156-53 266.5zm-109.5-543Q1880 1077 1790 975q-267 0-494 111.5T911 1399q81 227 266.5 373t380.5 146q182 0 299.5-128.5T1975 1460q0-126-47.5-254.5zM418 1878q-4 12-29.5 80T363 2071q0 82 60 129t150 47q13 0 37-2.5t49-10.5l541-152q42-14 56.5-28t14.5-27q0-12-6-18l-10-9q-241-115-388-348t-147-482q0-56 9-110-103 232-189 473zm2069.5-212.5Q2471 1731 2441 1731q-19 0-74-26.5t-63-30.5l-41-18q-55-24-81.5-41.5T2155 1583q0-25 23.5-32t111-17.5T2441 1523q32 0 47.5 10t15.5 35q0 32-16.5 97.5zm-483-769.5q-8.5-11-8.5-22 0-10 17.5-37.5T2054 780l26-34q4-5 49.5-65.5T2206 620q21 0 66.5 56.5T2318 774q0 17-19 25t-21 9l-121 53q-56 25-93 35.5t-41 10.5q-10 0-18.5-11zM1437 479q-5-50-9.5-104t-4.5-115q0-13 2-21 0-33 11-48.5t34-15.5q34 0 98.5 21t64.5 48q0 10-5.5 18.5T1618 279l-49 102-20 39h-1q-23 44-43 74t-32 30q-16 0-26-10.5t-10-34.5zM416 2310q-70-30-112-85t-42-118q0-8 1-16t1-16q-33 0-53.5 37.5T190 2197q0 106 93 162l17 8q18 10 38 16.5t36 6.5q30 0 35.5-38.5t6.5-41.5z" + }, + "children": [] + }] +}; +exports.u1F4E3 = u1F4E3; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4E4.js b/dist/noto_emoji_regular/u1F4E4.js new file mode 100644 index 000000000..65b6a2e48 --- /dev/null +++ b/dist/noto_emoji_regular/u1F4E4.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4E4 = void 0; +var u1F4E4 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2340 1759q0 37-12 60.5T2094.5 2071 1766 2396l-19 17q-16 13-36 20.5t-44 7.5q-3 0-35-5l-164-22-69-8q-396-42-736.5-96.5t-355.5-65-31.5-21.5-16.5-184q0-100 5.5-199t6.5-200q0-49 63.5-95t136.5-98.5 286.5-183 257.5-158 82-27.5h7v110q0 6-2 14t-2 16q0 40 2 79l2 85q0 57 8 84t44 31l360 43 134 15q64 7 117 11t84 4h15q5 0 34.5-21.5t71.5-55.5l92-77q19-16 28-25l57-51 27-22q7-6 12-11.5t5-10.5q0-7-10-11t-35-6l-21-2-278-32q-139-15-279-27v-95l369 39q196 19 299 38t103 91zm-700 486q-3-69-3-142 0-54 2.5-105t2.5-110q0-17-8.5-25t-28.5-9h-20q-36-2-70.5-7.5t-72.5-5.5q-16 0-27.5 4t-21.5 17l-42 60q-33 46-69.5 68.5T1193 2013q-20 0-45-2t-53-6l-114-13-154-20q-81-11-118.5-35.5t-56-75T611 1765t-103.5-58-111.5-12-34 48-3 98q0 47-3 93.5t-3 93.5v28q0 14 2 28l3 42q0 23 12 34.5t342 56.5l405 53 343 43 110.5 13 28.5 3q25 0 34-11.5t9-29.5q0-11-1-22t-1-21zM1332 262l435 593h-272v553h-325V855H897zm441.5 1381q-3.5-2-66.5-9l-214-24q-47-5-167.5-19t-115.5-13l-48-5q-25-2-48-2-13 0-24.5 2.5T1067 1584l-285 222q-6 4-14 8.5t-8 11.5q0 16 38 32.5t101 20 135 16.5 133 13h21q42-2 84.5-56t73.5-90 116-36q42 0 93.5 9t82.5 9q30 0 47.5-7.5t54.5-42 37-45.5q0-4-3.5-6z" + }, + "children": [] + }] +}; +exports.u1F4E4 = u1F4E4; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4E5.js b/dist/noto_emoji_regular/u1F4E5.js new file mode 100644 index 000000000..d0825f8d1 --- /dev/null +++ b/dist/noto_emoji_regular/u1F4E5.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4E5 = void 0; +var u1F4E5 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2341 1736q0 20-8.5 51T2049 2095l-108 109q-168 168-202 191.5t-70 23.5q-3 0-19-3l-40-6-168-23-43-5q-234-25-463.5-56T475 2255l-49-10-62-10q-35-4-65-20t-32.5-38-5-66.5-2.5-89.5q0-102 6.5-202t6.5-203q0-30 14-50t151-117 323-211l136-83 292 397q-19 0-37.5-2.5t-36.5-2.5q-13 0-25.5 3t-21.5 10l-206 162q-31 24-53 40l-26 20q-7 5-13.5 9t-6.5 12q0 14 30.5 31t97.5 21 141 17 136 13h21q42-2 85-56t75-90 114-36q24 0 44 3l82 12q22 3 50 3 53 0 96-42.5t43-52.5q0-9-81.5-17.5T1464 1582l50-66 198 21q45 5 81 7.5t59 2.5h14q4 0 20-12l38-28q22-17 47.5-38t49.5-41l43-36q25-21 27.5-24.5t52-43.5 49.5-51q0-12-21-15l-45-5q-96-10-194.5-19t-196.5-23l65-88 312 35 58 8 57 6q50 6 81.5 28.5t31.5 65.5v470zm-701 486q-3-60-3-121 0-29 1-57l3-55q0-28 1.5-57.5t1.5-63.5q0-18-9-27.5t-29-10.5h-20q-37-2-73-8t-73-6q-32 0-44.5 19t-41 61.5-66.5 67.5-95 25q-20 0-45-2t-52-5l-57-7q-30-3-58-7l-139-17q-32-4-64-10.5t-60.5-22T672 1875t-28-58-24.5-60-39-50-58.5-22-64.5-8-63.5-6q-17 0-25 16.5t-8 43.5l-1 29v39q0 48-2.5 97t-2.5 97l1 38v57q0 37 19 49t339 56l403 53 343 43q115 14 125 15.5t14 1.5q25 0 34-12.5t9-30.5q0-11-1-21.5t-1-19.5zm-303-665L903 964h270V411h324v553h274z" + }, + "children": [] + }] +}; +exports.u1F4E5 = u1F4E5; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4E6.js b/dist/noto_emoji_regular/u1F4E6.js new file mode 100644 index 000000000..f83302b8f --- /dev/null +++ b/dist/noto_emoji_regular/u1F4E6.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4E6 = void 0; +var u1F4E6 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2459 806q26 13 26 41v1091q0 12-6.5 23t-16.5 16l-1244 693-10 4q-5 2-12 2-13 0-23-6L138 2070q-23-13-23-39V941q0-12 6-23.5t20-18.5l1243-609q10-5 20-5t20 5zM271 941l925 479 1142-573-924-466zm593 276l-202-104 1085-540 199 102zm-658 788l944 547V1499l-944-485v991zm570 317l-196-114v-169l196 117v166zm0-879l-196-99v-109l197 101v107h-1zm-11 51q29 17 45.5 43.5T827 1591q0 23-10 36.5t-30 14.5q-16 0-31-7l-187-98q-25-13-40-38.5t-15-51.5q0-25 13-38.5t32-13.5q12 0 30 8zm1629-574l-1153 579v1054l1153-642V920z" + }, + "children": [] + }] +}; +exports.u1F4E6 = u1F4E6; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4E7.js b/dist/noto_emoji_regular/u1F4E7.js new file mode 100644 index 000000000..814dd871c --- /dev/null +++ b/dist/noto_emoji_regular/u1F4E7.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4E7 = void 0; +var u1F4E7 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2206 2096H395v-947l316 156q8-32 17.5-62.5T752 1182l-359-177V749h1811v252l-359 178q14 30 24.5 61t18.5 63l316-158zm-557-1005q-133-135-350-135-209 0-345.5 134.5T817 1426q0 204 136.5 337.5T1296 1897q88 0 164-22.5t139-70.5l-85-115q-44 32-98 48t-116 16q-148 0-244-92t-96-234q0-141 95-234t244-93q159 0 249.5 93.5T1639 1440q0 26-8 45t-36 19q-33 0-49-36t-16-86v-163q0-10-11-10h-122q-9 0-9 10v14q-26-14-57-23t-66-9q-106 0-172.5 67t-66.5 166q0 100 66 166t174 66q61 0 107.5-22.5t77.5-60.5q27 32 64.5 48.5t80.5 16.5q84 0 135-57.5t51-145.5q0-219-133-354zm-302.5 418.5Q1317 1541 1266 1541q-52 0-81.5-31t-29.5-76 29-76 81-31q51 0 81 30t30 76q0 45-29.5 76.5z" + }, + "children": [] + }] +}; +exports.u1F4E7 = u1F4E7; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4E8.js b/dist/noto_emoji_regular/u1F4E8.js new file mode 100644 index 000000000..58d37f8b7 --- /dev/null +++ b/dist/noto_emoji_regular/u1F4E8.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4E8 = void 0; +var u1F4E8 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1300 1690l904-451v947H395v-947zm904-847v252l-904 450-905-450V843h1809zm-608-268l34-36q350-388 377.5-392t21.5-4q25 0 25 25-5 53-134 253.5T1755 679l-7 5q-12 13-35.5 15t-43.5 2l-41-1q-40 0-70-7t-30-22q0-13 13-32t55-64zm-380 36l33-37q73-82 152.5-166.5T1560 233t122-90q25 0 25 25 0 23-14 49l-27 48q-60 106-127 208.5T1408 679l-6 5q-13 13-36 15t-44 2q-49 0-95-8t-46-24q0-10 7.5-22.5T1216 611zm-323 84l-16-1q-20 0-31.5-6T834 669q0-22 51.5-78T1102 355.5t189-196 43-16.5q15 0 20.5 8t5.5 20q-6 49-125.5 235.5T1062 679l-7 5q-12 13-35.5 15t-44.5 2q-20 0-41-2z" + }, + "children": [] + }] +}; +exports.u1F4E8 = u1F4E8; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4E9.js b/dist/noto_emoji_regular/u1F4E9.js new file mode 100644 index 000000000..efcf7c70d --- /dev/null +++ b/dist/noto_emoji_regular/u1F4E9.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4E9 = void 0; +var u1F4E9 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1300 1716l904-451v947H395v-947zm904-847v252l-904 449-905-449V869h568l334 456 333-456h574zm-907 256L862 532h271V0h325v532h274z" + }, + "children": [] + }] +}; +exports.u1F4E9 = u1F4E9; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4EA.js b/dist/noto_emoji_regular/u1F4EA.js new file mode 100644 index 000000000..a448a8dc5 --- /dev/null +++ b/dist/noto_emoji_regular/u1F4EA.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4EA = void 0; +var u1F4EA = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2257.5 1597q-40.5 30-47.5 30t-321.5 155.5-329 159-14.5 67.5q0 16 2.5 144.5t2.5 150.5v30q0 13-2 19 0 13-30.5 36t-92.5 23q-49 0-83.5-11.5t-47-27-12.5-54.5q0-30 1-60.5t1-61.5q0-57-3.5-84t-13.5-27q-20 0-39.5 5.5t-41.5 5.5q-37 0-81.5-16t-122-44.5T636 1894t-291.5-143-30-59.5-7.5-38.5l-4-90q-2-48-2-102 0-374 78.5-545T613 704l52-14q29-8 64-17l130-31 47-10q64-12 297.5-49t399.5-37q429 0 562 194t133 643q0 184-40.5 214zm-122.5-44l15-10q15-9 25-33.5t10-62.5q0-154-20.5-325.5t-56-248.5-80-122-174-81-272.5-36q-98 0-215.5 14T1114 687l-148 28q-40 7-40 16 0 11 63.5 38.5t134 131 80 237.5 9.5 281q0 84-1 146l-4 228q0 55-1 123 0 23 8 39t28 16q18 0 230-92.5t414-196.5l126-65q63-32 122-64zm-1038 30q0-23 3-76.5t3-124.5q0-72-6-151.5t-26.5-168-82-155-127.5-88T715 798q-125 0-184 55.5T444.5 998 417 1205l-4 190q-2 94-2 191 0 99 51.5 118t243 103T985 1927l44 17q23 9 36 9 18 0 27.5-32t9.5-91q0-31-2.5-63t-2.5-62v-122zm952.5-441.5Q2065 1168 2065 1242q0 112-20 159t-61 67l-39 18q-23 11-45 11-51 0-63-88t-41-88q-25 0-104 26.5t-173 62.5l-62 23q-11 5-29 12t-32 7q-27 0-33.5-31t-6.5-83q0-57 45-75.5t221-61.5l247-60q37-9 74-17.5t57-8.5q34 0 49.5 26.5zM961.5 1476q-15.5 21-44.5 21-14 0-25-3l-44-12q-11-3-23-3-17 0-23 22t-6 71q0 80-16.5 106t-50.5 26q-42 0-61.5-31.5T648 1587q0-35 3-62t3-57q0-17-5.5-32t-23.5-23l-41-15h-1q-39-13-59.5-31.5T503 1319t24-52.5 54-23.5q38 0 107.5 28.5T811 1313t109.5 40.5T977 1427q0 28-15.5 49zm-381-423q22.5-22 57.5-22 37 0 57 8.5t80.5 20.5 118 40.5T951 1179q0 44-22.5 60.5T874 1256q-42 0-179-41t-137-109q0-31 22.5-53z" + }, + "children": [] + }] +}; +exports.u1F4EA = u1F4EA; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4EB.js b/dist/noto_emoji_regular/u1F4EB.js new file mode 100644 index 000000000..bcb5bd268 --- /dev/null +++ b/dist/noto_emoji_regular/u1F4EB.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4EB = void 0; +var u1F4EB = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2298 1447v39q-2 88-18 133.5t-43 57.5-311 151.5-321 155-48.5 27-11.5 61.5q0 16 2.5 145t2.5 151v30q0 13-2 19 0 13-30.5 36t-92.5 23q-49 0-83-11.5t-47-26.5-13-55q0-30 1-60.5t1-61.5q0-33-1-72t-16-39q-20 0-39.5 5.5t-41.5 5.5q-27 0-58-8.5T957 2090t-365-151.5-246-122-30-57-9-42.5l-4-90q-2-48-2-102 0-342 65.5-515.5T582 778l31-10q25-7 56-15t61-16l129-31 47-10q109-21 220-38.5t226-31.5q0 23-1 44v45q-119 14-267.5 40.5t-153 31.5-4.5 8q0 11 64 39t133.5 130 79.5 233 10 286q0 85-1 146l-4 225q0 55-1 126 0 23 8.5 39t28.5 16q18 0 202-81.5t279.5-125T2135 1617l15-10q15-9 25-33.5t10-62.5q0-155-21-326t-54.5-245.5-77-120-166-81.5-249.5-39q0-20-1-41.5t-1-35.5q0-8 5-9l16-3q280 9 417.5 91t191 281 53.5 465zm-1201 200q0-25 3-78t3-123q0-152-21.5-270.5T1005 991t-118.5-97.5T719 862q-129 0-187 55t-86.5 143.5T417 1269l-4 190q-2 94-2 191 0 98 49.5 116T701 1868.5 985 1991l42 17q22 9 36 9 20 0 29.5-32t9.5-91q0-31-2.5-63t-2.5-62v-122zm328.5-707.5Q1429 824 1429 706q0-127 1-224t6-197v-37q0-38 10.5-59.5t22-26 65.5-9.5l294-24q34 0 45.5 24t11.5 65q0 28-1 57l-1 56q0 27-1.5 50.5T1880 421q0 39-24.5 57.5t-85.5 28-124.5 22-86 25T1537 610v278q0 139 4 274 0 25-22.5 37t-56.5 12q-17 0-28.5-7t-11.5-32q0-117 3.5-232.5zm-464 599.5q-15.5 22-44.5 22-28 0-50-9t-45-9q-14 0-20 26t-6 67q0 78-17.5 105t-50.5 27q-40 0-60-30.5t-20-86.5q0-34 3-61.5t3-56.5q0-18-5.5-33t-23.5-23l-41-14q-36-11-58.5-30.5T503 1383t24.5-53 53.5-23q37 0 105.5 28t179.5 61 111 95q0 26-15.5 48zm-381-422q22.5-22 57.5-22 27 0 142 30t143 57 28 61q0 44-22.5 60.5T874 1320q-42 0-179-41t-137-109q0-31 22.5-53z" + }, + "children": [] + }] +}; +exports.u1F4EB = u1F4EB; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4EC.js b/dist/noto_emoji_regular/u1F4EC.js new file mode 100644 index 000000000..a09cca6e7 --- /dev/null +++ b/dist/noto_emoji_regular/u1F4EC.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4EC = void 0; +var u1F4EC = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1593.5 1110.5q1.5-29.5 1.5-58.5 2-307 6-492t5.5-254 8-109.5T1668 155t253-21l53-5 25-1q26 0 42 14.5t16 42.5l-3 106q0 37-2 73.5t-2 55.5q0 26-16 48t-42 27l-55 10-155 29q-42 8-58 29t-16 57q0 138 1.5 271.5t1.5 271.5q0 24-21.5 36.5T1636 1212q-20 0-32-8t-12-35q0-29 1.5-58.5zm856 520Q2431 1667 2393 1684t-250.5 124.5-307 150T1728 2009t-13 62q0 17 2.5 148t2.5 152v29q0 13-1 18 0 14-33.5 37t-100.5 23q-48 0-79-12.5t-42-28-11-53.5q0-29 1-59t1-60q0-35-2.5-60.5t-2.5-28.5q0-13-4-19t-13-6q-11 0-32 6t-41 6q-38 0-87.5-17t-129.5-48q-162 122-226.5 162t-103 68-85.5 28q-59 0-118.5-37t-265-191T127 1955t-12-30q0-15 20.5-36t58.5-37l97-40 78-30q45-18 111-43l-3-14q0-5-1-7-3-52-4-98t-1-90q0-168 15-307t60.5-236.5 88-134.5 89-61.5T967 721l108-24q109-22 221-39.5t226-31.5v44l-2 45q-29 2-57 6l-55 8q-91 13-181.5 28.5T1047 793l-17 3q-23 4-40 11t-17 16q0 6 7 14t54 19.5 135 97 149.5 264T1380 1734v68l-2 116q0 28-1 60 0 23 7.5 40.5t28.5 17.5q7 0 20-5l20-8q377-156 598.5-271.5t263-138.5 41.5-100q0-165-21.5-342.5t-77.5-280-193-147-275-44.5v-87q194 0 342.5 48.5t213 156.5 94 267 29.5 355q0 155-18.5 191.5zm-1907 299Q655 1937 766 1937l35-1q23 0 47 2.5t47 2.5q56 0 71.5-17.5t25-68 9.5-78.5q0-43-12-56t-53.5-29.5T862 1675q-24 0-44.5 9.5T778 1702l-5 2q-52 23-104 43l-103 41-70 26q-58 21-85 34.5t-89 30-62 33.5q0 4 16.5 7t44.5 3q109 0 221.5 7.5zm120 63.5q-6.5-2-17.5-4h-3q-19-4-37-4-13 0-84-5t-170-5q-22 0-44.5 2t-22.5 6q0 3 7.5 10.5T310 2009l21 18q75 65 139 105.5t74 48.5l26 20q12 10 22.5 17t16.5 7l3-2q5-1 21.5-66.5t20-90 9.5-36.5 6-23q0-12-6.5-14zm565.5-67l20-10q12-5 12-13 0-5-3.5-7.5T1182 1880l-34-6q-15-2-33-6.5t-35-4.5h-9l-10 2-8 33q-8 23-19.5 57t-84.5 34h-75q-37 0-75 1-9 0-19.5-1t-20.5-1q-20 0-27.5 12t-7.5 29l1 8q0 11-15.5 97.5T694 2242q0 12 2.5 22.5T709 2275q5 0 11-2l10-4q24-12 45.5-27t42.5-31l41-33q40-32 87-61.5t66-41.5l35-22q16-11 35.5-21.5t76-54 69.5-51.5zm25-73q8 0 8-3 0-14-74-48.5t-119-36.5q-4 5-4 15t1 18v16q0 9 18.5 15t38.5 8l23 3q23 2 44 5z" + }, + "children": [] + }] +}; +exports.u1F4EC = u1F4EC; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4ED.js b/dist/noto_emoji_regular/u1F4ED.js new file mode 100644 index 000000000..7638f801a --- /dev/null +++ b/dist/noto_emoji_regular/u1F4ED.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4ED = void 0; +var u1F4ED = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2291 1594.5q-18 36.5-58 54.5t-240.5 119-306.5 149.5-117.5 58.5-11.5 35l2 133 2 89v124.5l-2 25.5q0 12-32.5 36t-97.5 24q-51 0-93.5-17.5T1293 2348q0-29 1-59t1-59q0-21-2-42.5t-2-48.5q0-9-3-16.5t-14-7.5q-17 0-35.5 6t-39.5 6q-27 0-50-5.5T986 2063t-371-153-255-125-34-59-10-44q-3-51-4-96.5t-1-88.5q0-173 17-313t53.5-221.5 77.5-126 79-69T676 718l65-16q34-9 67-17t62-14l46-10q58-11 117-21l117-19q113-18 229.5-33t233.5-15q430 0 563 196t133 654q0 135-18 171.5zM2155 1017q-42-217-191.5-286T1585 662q-128 0-345 32t-352 64l-17 3q-31 5-44.5 11.5T813 787l2 10q3 8 67.5 27t149 113.5 137 263T1221 1708l-1 94q0 36-1.5 69t-1.5 73q0 24 8.5 40t28.5 16q7 0 19-4l24-8q13-4 25.5-9.5t22.5-10.5l217-95q140-61 344.5-166t247.5-130 43-102q0-241-42-458zm-91 154q12 29 12 98 0 121-20.5 165t-60.5 63l-39 18q-23 11-44 11-50 0-64-87.5t-41-87.5q-19 0-74 17t-124 41l-79 29q-43 16-75.5 29t-47.5 13q-26 0-33-27t-7-87q0-67 59.5-83t54.5-14l66-18 86-22 92-23 155-37q100-24 110.5-25.5t20.5-1.5q41 0 53 29z" + }, + "children": [] + }] +}; +exports.u1F4ED = u1F4ED; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4EE.js b/dist/noto_emoji_regular/u1F4EE.js new file mode 100644 index 000000000..5e09b8186 --- /dev/null +++ b/dist/noto_emoji_regular/u1F4EE.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4EE = void 0; +var u1F4EE = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2347 1029q0 45 1 88v88q0 70-2.5 139t-2.5 139l1 44v45q0 115-29.5 167T2186 1841l-41 21q-86 47-174 79t-172.5 66.5T1617 2042q-23 0-45.5-1t-45.5-5v3q134 32 208 84t74 118v135q0 82-114.5 132t-294.5 50q-138 0-251-26.5t-182-72-84.5-88T866 2213v-19q5-66 81.5-111.5T1154 2021v-64l-199-55q-185-51-249-73t-128-53-75-110l-2-16q0-67-1-124.5t-4-113.5l-111-66q-28-17-82.5-64t-54.5-84q0-43 76.5-102.5T491 969q0-26-1-50.5t-1-50.5l4-144q3-159 21.5-224t67-110.5 138.5-68 234.5-53T1225 238q106 0 326.5 42.5t325.5 70 245 68T2306.5 552t44.5 256q0 49-2 98t-2 97v26zm-700 787q-2-17-2-34v-33q0-113 5.5-221t5.5-223q0-88-4-175t-4-175v-45q0-133-49-174.5T1278 637l-142-30q-72-15-143-34l-74-21q-73-20-126-30t-97-10q-52 0-66 50t-17 81-3 144l1 46v51q17-14 36-26l38-22v-18q0-9 1.5-25t1.5-39q0-43 18.5-71t66.5-28q79 0 228.5 44t292.5 68 178 69.5 35 132.5v77q0 61-27.5 91.5T1397 1168q-17 0-36-2l-38-4q-8 19-22.5 43.5T1239 1299l-39 55q-21 30-102.5 161.5T955 1647t-162-59.5-133-77.5l-25-12q-13-6-25-14l1 36q0 21 2 41l2 39q2 40 11 50.5t28 25.5 136 61 380 112l15 4q78 19 155 34l155 30q6 2 25.5 6t39.5 4q47 0 67-27t20-84zm302.5-1235q137.5-35 137.5-57 0-6-6.5-11T1969 481t-204-46.5-264-55.5-290-36q-24 0-104 10t-155 21l-61 10q-49 8-79 17t-30 19q0 8 32 13.5t239 51 234 48.5 190 43 286 40q49 0 186.5-35zM457 1168l36-8q27-5 53.5-8.5t52.5-8.5l6-2q3 0 6-1 87-18 184-31.5t126.5-21.5 113-21 83.5-71q0-34-2.5-72t-9.5-74l-9-36q-8-31-53-45.5T966 753q-31 0-41 12.5T759 893l-152 111-4 4q-37 24-71.5 50.5t-85.5 57-51 49.5q0 5 7.5 6.5t15.5 1.5q20 0 39-5zm510-22q-5 2-36 6t-31 39q0 14 4 27.5t4 27.5q0 34 3.5 67t5.5 66l2 51q2 60 8.5 90.5T947 1551q14 0 46.5-44t55.5-87 59-96l66-95q34-49 58-72.5t60.5-89.5 56.5-86.5 20-30.5q0-8-7-11t-15-3h-17q-28 0-51.5-2t-55.5-2q-11 0-22 1.5t-19 6.5l2 42 1 43q0 69-53 81t-98 23zm559 974v74q0 31-47 50.5t-116 19.5q-84 0-146.5-26.5T1154 2172v-73q-97 14-151 42t-54 53q0 29 58 66.5t165.5 61T1399 2345q138 0 234.5-33t96.5-70q0-29-54-62t-150-60zm-905-727l51 28q25 14 41 21t39 22l30 21q15 10 28 17t20 7q10 0 10-19 0-8-1-17.5t-1-14.5l4-78q0-39 1-78 0-14-1.5-25.5T840 1253q0-11 2-23.5t2-23.5q0-16-5.5-21.5T817 1179q-49 0-107 11.5T542.5 1222 433 1256q0 9 88.5 71t99.5 66zm666-545.5q-68-26.5-110-26.5-5 0-9 1t-6 1q0 11 7 43t49 32q13 0 23-1l48-4q15 0 40-1h17l9-4q0-14-68-40.5z" + }, + "children": [] + }] +}; +exports.u1F4EE = u1F4EE; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4EF.js b/dist/noto_emoji_regular/u1F4EF.js new file mode 100644 index 000000000..13d2c72b2 --- /dev/null +++ b/dist/noto_emoji_regular/u1F4EF.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4EF = void 0; +var u1F4EF = { + "viewBox": "0 0 2723 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2718.5 1370q-4.5 10-12.5 17l-5 5q-26 26-71.5 35.5t-67 34-87.5 94-179.5 166.5-210.5 161.5-164 97.5q8 31 27 59.5t45 48.5q11-11 24.5-15t27.5-4q20 0 41 6l65 17q23 6 45 18.5t22 28.5q0 9-5.5 13.5t-5.5 9.5 4.5 7 4.5 11q0 8-3 13t-7 9l-7 9q-3 4-3 9v7q0 11-9 16.5t-28.5 30-47.5 24.5q-14 0-25-10l-22-19-32-25q-29-22-48-47.5t-19-52.5q0-6 1-9-36-14-60-53t-35-80q-65 24-137 37.5t-147 16.5q-14 34-29 59t-39 42q4 11 4 23 0 39-21.5 81t-32.5 68-41 26q-13 0-22-2.5t-16-6.5l-12-6q-10-5-20.5-6t-17-14.5-22.5-17.5-16-21q0-3 1.5-5t1.5-5-3-5l-8-5q-4-2-7.5-6.5t-3.5-11.5q0-15 13-31.5t32-31.5l20-15 22-19q17-15 38.5-27t40.5-12q8 0 15 2l15 6q29-24 47-59-137-3-286.5-46T982 1917t-302-186l-102-70q-115-78-163-100t-138-45.5-160-23.5q-54 0-85.5-26.5T0 1388q0-99 145.5-259T494 844t319-125q54 0 85 28t31 77q0 13-14.5 93T900 1088v24q0 12 1 24 62-240 259-392.5T1607 591q200 0 369 100t265.5 267.5T2338 1332q0 25-2 38 20-15 40-31l39-33 16-31q8-15 9-33.5t6-35 14.5-32.5 23-26 33.5-10q55 0 130.5 76.5T2723 1345q0 15-4.5 25zm-833 228.5Q2000 1483 2000 1319q0-159-116.5-275T1608 928q-162 0-277 115.5T1216 1321q0 157 113.5 275t279.5 118q162 0 276.5-115.5zM2627 1333q-21-31-44.5-54.5T2532 1237q-2 30-19 77.5t-91.5 105.5-101.5 79-45 21q-19 0-32.5-13.5T2229 1475q0-2 9.5-50.5t9.5-103.5q0-167-84-315.5t-234-236-323-87.5q-177 0-326.5 89.5t-230 236.5-80.5 293q0 18-13 31t-32 13q-14 0-28.5-8t-51.5-69-37-186q0-89 31-258 0-8-4.5-11.5T813 809q-93 0-275 113t-314 256-132 210q0 6 3.5 10t18.5 4q102 0 200 27.5t142 49T617 1579l103 70h-1q174 120 273 170t230.5 91 249.5 53q18-25 26.5-56.5t8.5-62.5q0-14-1-26l-4-26q-163-35-270.5-168T1124 1322q0-199 142-341.5T1606 838t341.5 144 143.5 340q0 109-47.5 209T1906 1702q30 28 47 65.5t17 80.5q103-56 270.5-201t223.5-213.5 104-84 55-15.5q2 0 4-1zM719 933q0 35-97 127.5t-218 172-163 79.5q-16 0-16-13 0-34 102-131.5T546 995t158-75q15 0 15 13z" + }, + "children": [] + }] +}; +exports.u1F4EF = u1F4EF; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4F0.js b/dist/noto_emoji_regular/u1F4F0.js new file mode 100644 index 000000000..eaca6c2c3 --- /dev/null +++ b/dist/noto_emoji_regular/u1F4F0.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4F0 = void 0; +var u1F4F0 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2268 2091l10 280q0 23-13.5 39.5T2229 2430l-49 8q-277 46-678 91.5T849 2575q-40 0-87-2t-77-6l-37-4-9-3q-23-5-38-32.5t-77.5-278-121-721T327 811l-5-68q0-21 16-41.5T470.5 609 751 468t414.5-137T1727 223q2 0 5-1t5-1q20 0 35 13.5t20 33.5l44 198q95-19 160-39.5t73-20.5h8q20 0 37 12.5t22 32.5l13 68q24 125 53.5 376.5T2268 2091zM690 2421q246-123 627.5-220t740.5-144L1689 346q-407 57-735 172.5T441 771l10 113q27 321 88 778.5T690 2421zm1072-1220.5q24 117.5 51 244t27 150.5q0 45-40.5 71.5t-179 67.5-183.5 41q-61 0-75.5-34.5t-48.5-141-49-206.5l-8-52q-4-27-4-54 0-74 52.5-101t187.5-65 172-38q74 0 98 117.5zM905 2457q204-4 540.5-41t585.5-76l127-19q0-26-2-66.5t-4-93.5l-260 43q-255 42-517 106.5T905 2457zM2033 539q-42 12-85 22l-88 20 283 1306-22-496q-11-232-32.5-447T2033 539zM598.5 1305.5Q582 1291 582 1277q0-25 43.5-56.5t137.5-58 118-39 110-49.5 116-42 68-30 105-29.5 95-19 133-42 114-27.5q19 0 30 13.5t11 29.5q0 36-93 68t-151 38.5-211 64.5l-264 95-118 52q-54 25-120.5 50t-74.5 25q-16 0-32.5-14.5zm1258.5 560q12 15.5 12 33.5 0 19-16.5 36t-317 81-482.5 128l-264 92q-6 3-12 3-15 0-25-12t-10-26q0-6 4.5-17.5T856 2122t258.5-95.5T1486 1933t274-65.5 65-17.5q20 0 32 15.5zM792 821q-25-2-38-19t-13-37q0-19 12-34t37-15 58-23.5 57.5-23.5 72-25 108.5-41 111-34l55-19h8q22 0 35 17t13 38q0 38-36 50.5T1154.5 700 1037 738.5 968 761l-54 26q-28 14-56 24t-57 10h-9zM692 1937.5q7-12.5 18-12.5 68-30 136.5-52.5T1015 1802t158-48q17 0 27 13.5t10 29.5q0 7-8.5 25.5T975 1922l-110 41q-68 26-90.5 37.5T736 2012q-22 0-36.5-17t-14.5-35q0-10 7-22.5zm-59.5-419Q622 1505 622 1490q0-42 69.5-62.5t99-39.5 62-23.5T964 1326t128-42h7q18 0 32 14.5t14 31.5q0 18-16 27t-104 45-141.5 52-75 29-74.5 31-71 18q-20 0-30.5-13.5zM928 942l-179 68q-80 31-126.5 49.5T567 1080l-7 3q-8 0-14-6.5t-6-14.5 13-18 370.5-145T1630 671h6q6 0 12.5 4t6.5 13q0 21-27.5 25.5t-242 70.5T928 942zm-245 823q-12 0-19-9.5t-7-20.5q0-3 1-6l2-6q8-22 28.5-40t67-32 92-36 99-40.5 91.5-33 61-14.5q20 0 31 12t11 26q0 22-17 33.5t-66.5 28.5-92 31.5-74 31.5-69 26.5-73 29T683 1765z" + }, + "children": [] + }] +}; +exports.u1F4F0 = u1F4F0; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4F1.js b/dist/noto_emoji_regular/u1F4F1.js new file mode 100644 index 000000000..9bed2f5d5 --- /dev/null +++ b/dist/noto_emoji_regular/u1F4F1.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4F1 = void 0; +var u1F4F1 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1874 480v1844q0 155-182.5 192.5T1300 2554t-391.5-37.5T726 2324V480q0-75 51.5-131t219-77.5T1300 250t303.5 21.5 219 77.5 51.5 131zm-224-65.5q11 10.5 27 10.5t27-10.5 11-26.5-11-27-27-11-27 11-11 27 11 26.5zM1195 353q-8 0-14 6t-6 14 6 13.5 14 5.5h210q8 0 14-5.5t6-13.5-6-14-14-6h-210zm-175 1960q25 0 39.5-7.5t14.5-30.5q0-21-14.5-29t-39.5-8h-16v-13l-29 21 29 21v-14h16q21 0 30 5t9 17q0 13-9 18t-30 5h-37v15h37zm335-60l-54-23-55 23v55h109v-55zm-54-6l38 17v28h-77v-28zm313 4h-91v57h91v-57zm-16 41h-59v-26h59v26zm42-66h-84v16h68v33h16v-49zm130-1606H831v1555h939V620z" + }, + "children": [] + }] +}; +exports.u1F4F1 = u1F4F1; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4F2.js b/dist/noto_emoji_regular/u1F4F2.js new file mode 100644 index 000000000..7471e3343 --- /dev/null +++ b/dist/noto_emoji_regular/u1F4F2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4F2 = void 0; +var u1F4F2 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1218 1420l-594 436v-272H69v-325h555V985zm1262-940v1844q0 155-182.5 192.5T1906 2554t-391.5-37.5T1332 2324V480q0-75 51.5-131t219-77.5T1906 250t303.5 21.5 219 77.5 51.5 131zm-224-65.5q11 10.5 27 10.5t27-10.5 11-26.5-11-27-27-11-27 11-11 27 11 26.5zM1801 353q-8 0-14 6t-6 14 6 13.5 14 5.5h210q8 0 14-5.5t6-13.5-6-14-14-6h-210zm-175 1960q25 0 39.5-7.5t14.5-30.5q0-21-14.5-29t-39.5-8h-16v-13l-29 21 29 21v-14h16q21 0 30 5t9 17q0 13-9 18t-30 5h-37v15h37zm335-60l-54-23-55 23v55h109v-55zm-54-6l38 17v28h-77v-28zm313 4h-91v57h91v-57zm-16 41h-59v-26h59v26zm42-66h-84v16h68v33h16v-49zm130-1606h-939v1555h939V620z" + }, + "children": [] + }] +}; +exports.u1F4F2 = u1F4F2; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4F3.js b/dist/noto_emoji_regular/u1F4F3.js new file mode 100644 index 000000000..dac834b22 --- /dev/null +++ b/dist/noto_emoji_regular/u1F4F3.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4F3 = void 0; +var u1F4F3 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2394.5 1769q-94.5 164-258.5 259t-354 95q-193 0-357-96t-257.5-258.5T1074 1416q0-188 93-351.5t258.5-260T1782 708q188 0 353 95.5t259.5 260.5 94.5 352q0 189-94.5 353zm-188.5-8q57-71 90-158t33-187q0-226-161.5-387T1782 868q-99 0-187 33t-159 91l357 356-2 17q0 9-3 21l-17 74q-83-63-181-71l-269-267q-42 64-64.5 138t-22.5 156q0 225 160.5 386.5T1782 1964q82 0 156.5-23t138.5-64l-182-181q15-45 31.5-86t32.5-97zm-40-330.5q-30 55.5-63 55.5-11 0-18.5-6.5t-7.5-20.5q0-16 7-34t7-35q0-41-45-86t-90-45q-20 0-25 17t-5 39q0 114-49 263t-111.5 191.5T1622 1812q-94 0-164-54t-70-142q0-75 52.5-121.5T1570 1448q51 0 100 21t86 55l14 11q7 6 15 6l10-4q28-18 45.5-113t17.5-174q0-65-9-131t-9-71q0-46 46-46 120 0 215 96.5t95 223.5q0 53-30 108.5zM964 745v1341q0 51-36 93t-159 58-223 16q-158 0-287.5-28T129 2086V745q0-51 35-93t157.5-58T546 578q100 0 223 16t159 58 36 93zm-163-47.5q8 8.5 19 8.5 12 0 20-8.5t8-19.5-8-19.5-20-8.5q-11 0-19 8.5t-8 19.5 8 19.5zM470 653q-6 0-10 4.5t-4 9.5q0 14 14 14h153q5 0 9.5-3.5T637 667q0-5-4.5-9.5T623 653H470zM343 2077q18 0 28.5-5t10.5-22q0-15-10.5-21t-28.5-6h-12v-9l-21 16 21 15v-11h12q28 0 28 16 0 17-28 17h-27v10h27zm243-43l-39-17-40 17v41h79v-41zm-39-4l28 12v20h-56v-20zm228 2h-67v43h67v-43zm-12 30h-42v-18h42v18zm31-47h-61v11h49v24h12v-35zm94-1168H205v1131h683V847z" + }, + "children": [] + }] +}; +exports.u1F4F3 = u1F4F3; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4F4.js b/dist/noto_emoji_regular/u1F4F4.js new file mode 100644 index 000000000..102e38aaa --- /dev/null +++ b/dist/noto_emoji_regular/u1F4F4.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4F4 = void 0; +var u1F4F4 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M374.5 1678Q260 1560 260 1378t114.5-300.5T663 959t288.5 118.5T1066 1378q0 174-114 296t-289 122q-174 0-288.5-118zm162-169q49.5 52 126.5 52t126.5-52 49.5-131q0-80-49.5-132T663 1194q-76 0-126 51t-50 133q0 79 49.5 131zM1892 1850v450q0 154-183 191.5t-391 37.5-391-37.5T744 2300v-433q53-7 104-29v312h940v-301l10 1h94zm-854 439q25 0 39.5-8.5t14.5-29.5-14.5-29.5-39.5-8.5h-16v-13l-30 21 30 22v-14h16q21 0 29.5 5t8.5 17-8.5 17-29.5 5h-37v16h37zm335-61l-54-22-55 22v55h109v-55zm258-2h-90v57h90v-57zm-15 42h-60v-26h60v26zm41-66h-83v15h68v34h15v-49zm-338 21l38 16v29h-77v-29zM848 916q-51-20-104-29V455q0-72 48-127.5t213-79 313-23.5q147 0 313 23t213.5 79 47.5 128v449h-94q-4 0-10 2V595H848v321zm820-526q11 11 27 11 15 0 26-11t11-27q0-15-11-26t-26-11q-16 0-27 11t-11 26q0 16 11 27zm-456-61q-8 0-14 5.5t-6 13.5 6 14 14 6h211q8 0 14-6t6-14-6-13.5-14-5.5h-211zm1098 813q0 8-5 12.5t-11 4.5h-293v152h239q8 0 12.5 5t4.5 12v142q0 7-4.5 12t-12.5 5h-239v267q0 17-17 17h-186q-17 0-17-17v-754q0-7 4.5-12t12.5-5h496q6 0 11 5t5 12v142zm-933 17v152h240q7 0 12 5t5 12v142q0 7-5 12t-12 5h-240v267q0 17-16 17h-187q-16 0-16-17v-754q0-7 4.5-12t11.5-5h496q7 0 12 5t5 12v142q0 8-5 12.5t-12 4.5h-293z" + }, + "children": [] + }] +}; +exports.u1F4F4 = u1F4F4; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4F5.js b/dist/noto_emoji_regular/u1F4F5.js new file mode 100644 index 000000000..ae96dabba --- /dev/null +++ b/dist/noto_emoji_regular/u1F4F5.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4F5 = void 0; +var u1F4F5 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2351.5 2001Q2192 2281 1910 2446.5T1299 2612q-326 0-606-162.5T250.5 2007 88 1401t162.5-606T693 352.5 1299 190q329 0 611 165.5T2351.5 801t159.5 600-159.5 600zm-1341-1507.5Q874 538 758 618l1319 1331q82-117 128-255.5t46-292.5q0-255-128-475.5T1774.5 577 1299 449q-152 0-288.5 44.5zM885 678q16-41 54.5-65.5t150-38T1296 561q153 0 286 27t133 141v789l-75-77V831h-603zm333-41q-5 0-9.5 4t-4.5 10 4.5 10 9.5 4h155q14 0 14-14t-14-14h-155zm334 44q8 8 19 8t19.5-8 8.5-20q0-11-8.5-19t-19.5-8-19 8-8 19q0 12 8 20zm52.5 1621.5Q1749 2253 1869 2163L542 825q-92 121-143 266.5T348 1401q0 254 127.5 475T824 2224.5t475 127.5q161 0 305.5-49.5zM1715 2077v2q0 51-35.5 93t-159 58-224.5 16q-102 0-225.5-16t-159-58-35.5-93v-851l76 76v665h657zm-148-79h-63v12h50v26h13v-38zm-20 18h-69v44h69v-44zm-12 33h-45v-20h45v20zm-183-31l-41-17-41 17v42h82v-42zm-41-4l28 13v22h-58v-22zm-213 50q19 0 30-6t11-22q0-17-11-23t-30-6h-12v-10l-22 16 22 16v-10h12q29 0 29 17t-29 17h-28v11h28z" + }, + "children": [] + }] +}; +exports.u1F4F5 = u1F4F5; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4F6.js b/dist/noto_emoji_regular/u1F4F6.js new file mode 100644 index 000000000..81162b377 --- /dev/null +++ b/dist/noto_emoji_regular/u1F4F6.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4F6 = void 0; +var u1F4F6 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1451 608q26 0 45 18.5t19 44.5v103l-1 10v9q0 14-5 35t-23 42l-459 566v744q0 33-23.5 55.5T949 2258H823q-32 0-55-23t-23-55v-744L286 870q-18-23-23.5-43t-5.5-32q0-14 1-20.5t1-10.5v-93q0-26 17.5-44.5T320 608h1131zm815 0q31 0 54 23.5t23 54.5v1494q0 32-23 55t-54 23h-126q-33 0-56.5-23t-23.5-55V686q0-32 23.5-55t56.5-23h126zm-423 467q31 0 54.5 23t23.5 54v1028q0 33-23.5 55.5T1843 2258h-127q-32 0-55-23t-23-55V1152q0-31 23-54t55-23h127zm-422 358q32 0 55 22.5t23 55.5v669q0 32-23 55t-55 23h-126q-31 0-55-23.5t-24-54.5v-669q0-33 23.5-55.5t55.5-22.5h126zm-676-360V837H553zm473-236h-191v236z" + }, + "children": [] + }] +}; +exports.u1F4F6 = u1F4F6; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4F7.js b/dist/noto_emoji_regular/u1F4F7.js new file mode 100644 index 000000000..b4a1f5d1e --- /dev/null +++ b/dist/noto_emoji_regular/u1F4F7.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4F7 = void 0; +var u1F4F7 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2185 665q93 7 147.5 80.5T2387 927v888q0 20-7.5 37t-20.5 31l-233 262q-13 18-34 29.5t-46 11.5h-7q-4 0-7-1l-391-44q63-86 94-184.5t31-204.5q0-178-90.5-331.5t-243-240T1104 1094q-226 0-408 142t-235 361q74-164 266-296t376-132q232 0 406.5 172.5T1684 1753q0 138-58.5 259T1461 2211l-118 87q-75 55-161.5 86T992 2415q-193 0-347.5-116.5T437 2004l-72-9q-74 0-113-65t-39-173v-637q0-158 17.5-237.5t73-162T487 563l38-22q26-15 66-28.5t98-13.5h16l29 2 53 5q41 4 104.5 11t123.5 13l200 24 176-118q8-4 13-4h6l434 46q13 0 22 9l159 160zm-867 1479q128-139 128-313 0-185-133-318t-317-133q-178 0-315 133.5T544 1832q0 184 133.5 317.5T995 2283q195 0 323-139zm23-298q-8 137-107 235t-236 98q-144 0-247.5-102.5T647 1832q0-110 62-197t165-129q-72 46-114 117.5T718 1775q0 134 93 226.5t224 92.5q106 0 195.5-71t110.5-177zM1114 819l495 56-113-137-250-26z" + }, + "children": [] + }] +}; +exports.u1F4F7 = u1F4F7; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4F9.js b/dist/noto_emoji_regular/u1F4F9.js new file mode 100644 index 000000000..2b477fa20 --- /dev/null +++ b/dist/noto_emoji_regular/u1F4F9.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4F9 = void 0; +var u1F4F9 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2321 1148q11 2 18.5 11t7.5 20v773q0 11-9.5 21.5T2314 1984h-7l-288-66v160q0 49-25 83.5t-66 50.5l-799 332-28 9q-14 5-30 5-8 0-16.5-1t-17.5-3l-385-87q-62-14-105-66.5T504 2285v-607l29 4q15 2 29 2 196 0 342.5-129t146.5-319q0-178-117.5-305T659 804q-39 0-78 8t-77 22v-29q0-44 22-79t59-51l770-319q33-14 63.5-18t50.5-4 31 1l17 2 100 23q45-21 107.5-40t105.5-19q93 0 172.5 56t118 140 38.5 150q0 111-31.5 181.5T2019 962v117zm-417 744l-574-129q-10-3-17-12.5t-7-20.5V959q0-11 8-22t23-11l8 1 559 126V600q0-23-17-44.5t-40-26.5l-355-80-6-1h-15q-12 0-32 3t-40 11L823 700l240 53q64 16 105.5 70t41.5 114v1451l683-285q8-5 9.5-11t1.5-14v-186zM356.5 1001.5Q461 911 649 882q132 0 228 102t96 238q0 107-42.5 191T772 1551.5 574 1606q-132 0-227-102t-95-240q0-172 104.5-262.5zM2150 1297l-648-146v461l648 147v-462zM682.5 1426.5Q733 1364 733 1282q0-98-62.5-168T519 1044q-9 0-16 1l-18 3q-60 15-100.5 71.5T344 1251q0 94 63.5 166t154.5 72q70 0 120.5-62.5zM847 1829q-22-25-51-25t-48.5 23.5T728 1882q0 41 23.5 64t54.5 23q26 0 44.5-25t18.5-56q0-34-22-59z" + }, + "children": [] + }] +}; +exports.u1F4F9 = u1F4F9; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4FA.js b/dist/noto_emoji_regular/u1F4FA.js new file mode 100644 index 000000000..d09f2dd0d --- /dev/null +++ b/dist/noto_emoji_regular/u1F4FA.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4FA = void 0; +var u1F4FA = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2102 803q76 0 131 54.5t55 131.5v996q0 76-55.5 131t-135.5 55q-11 0-28 2 0 38-3 62l-3 38q-2 15-3.5 23t-1.5 14q0 23-18 41.5t-49 18.5q-66 0-73.5-63.5T1907 2183l-136 6q-130 7-252 10.5t-220 3.5q-94 0-209.5-3.5T850 2189l-133-6q0 35-3 57l-3 35q-2 14-3.5 21.5T706 2310q0 23-18 41.5t-48 18.5q-65 0-73.5-61.5T555 2175l-40-4h-18q-75 0-130.5-55T311 1985V989q0-77 55-131.5T497 803q5 0 125-12t363-19q13-38 34.5-67t54.5-50L900 382q-9 3-19 5t-21 2q-43 0-73.5-30.5T756 285q0-45 31.5-75.5T860 179q43 0 74.5 31.5T966 285q0 18-7 35t-18 30l215 266q24-7 49-11t50-4q23 0 46.5 4t46.5 10l215-265q-24-27-24-65 0-44 30.5-75t73.5-31 74 32 31 74q0 40-30 72t-75 32q-11 0-20-2t-19-5l-176 275q29 23 53.5 52t35.5 61q156 3 324 13t261 20zm-261.5 301.5Q1811 998 1671 981l-57-6q-116-9-232-12.5t-234-3.5h-115q-75 0-225.5 8t-205 29-87.5 70.5-41 133.5l-15 173q-7 86-7 173 0 126 16 237t66.5 155 148 52.5 226 15 251.5 6.5q122 0 338-9t275.5-48 78-134.5T1870 1466q0-255-29.5-361.5zm309 272.5q-32.5-33-79.5-33t-79.5 33-32.5 79 33 80 79 34 79-34 33-80-32.5-79zm-.5-334q-33-34-79-34t-79 34-33 80 33 79 79 33 79-33 33-79-33-80z" + }, + "children": [] + }] +}; +exports.u1F4FA = u1F4FA; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4FB.js b/dist/noto_emoji_regular/u1F4FB.js new file mode 100644 index 000000000..29a2227d8 --- /dev/null +++ b/dist/noto_emoji_regular/u1F4FB.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4FB = void 0; +var u1F4FB = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2363 1903q-29 131-75.5 204T2108 2219q-3 28-7 48.5t-4 22.5q-5 22-31.5 40.5T1980 2349q-50 0-79.5-18.5T1870 2289q0-5-2-11t-4-17q-103 10-215.5 12t-225.5 2h-249q-115 0-231.5-2T720 2260l-4 17q-2 7-2 12-2 23-31 41.5t-79 18.5q-53 0-82-16t-34-43q0-3-4-19.5t-9-55.5q-105-35-157-97.5T236 1904q136 0 272 4t273 4q141 0 220.5-2.5t148-4 68.5-53.5q0-35-29.5-48.5T782 1790q-139 0-267.5 2.5T260 1797h-20q-5 0-10 1h-11q-2-16-3-34l-2-34q11-12 27-18t98.5-14.5T510 1689q48 0 97 2t97 2l100-1q65 0 126.5 1t122.5 1h63q52 0 79-14t27-40q0-23-21.5-36.5T1148 1590q-63 0-122.5-1.5T907 1587q-71 0-142.5 1t-146.5 1q-241 0-317.5 10t-92.5 23v-61q0-31 108.5-60.5T655 1471l194 1q74 0 143-1t139-1h48q25 0 38.5-15.5t13.5-34.5q0-21-17.5-40t-55.5-19q-22 0-42.5 1t-38.5 1q-39 0-108-1.5t-132-1.5h-72q-38 0-80 1l-147-1q-131 0-215.5 26T208 1450l3-76q63-57 152-86t249-29q98 0 194.5 2.5t194.5 2.5l10 2q34 3 67 3t67 1q36 0 54.5-12.5t18.5-39.5q0-42-71.5-50.5T945 1159q-50 0-98-1.5t-98-1.5q-62 0-130-1h-18q-109 0-206 19.5T226 1242q21-142 84-237t236-141q-3-5-4.5-13t-1.5-16q0-20 11-35t31-21l1600-459q4 0 11-1 14 0 25 9.5t11 24.5q0 13-7.5 23t-18.5 13L855 816q90-6 201.5-10.5T1299 801q374 0 577.5 28.5T2185 913t156 196.5 51 428.5q0 234-29 365zm-197-659q0-36-26.5-62t-62.5-26h-574q-37 0-63 26.5t-26 61.5v157q0 37 25.5 63t63.5 26h381l5-60q6-73 16.5-115.5t23.5-42.5q23 0 39 107t17 111h92q37 0 63-26t26-63v-157zm-56 473q-42-42-99-42t-99 42-42 99q0 59 41 100t100 41 100-41 41-100q0-57-42-99zm-456 0q-42-42-99-42t-99 42-42 99q0 59 41 100t100 41 100-41 41-100q0-57-42-99z" + }, + "children": [] + }] +}; +exports.u1F4FB = u1F4FB; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F4FC.js b/dist/noto_emoji_regular/u1F4FC.js new file mode 100644 index 000000000..8df0ab403 --- /dev/null +++ b/dist/noto_emoji_regular/u1F4FC.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F4FC = void 0; +var u1F4FC = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2301 754q55 0 95 40.5t40 94.5v1054q0 54-40 94.5t-95 40.5H297q-56 0-94.5-40t-38.5-95V889q0-55 38.5-95t94.5-40h2004zm-275 448q62 36 105 95t55 134q10-42 18.5-95.5T2218 1213q-5-9-10-11h-182zm-401 599q33 0 55.5-23t22.5-55v-443q0-32-23-55t-55-23H974q-31 0-54.5 22.5T896 1280v443q0 33 23.5 55.5T974 1801h651zm-840-425q-19-8-38-8-48 0-83 34.5t-35 83.5q0 50 34 84t84 34q9 0 19-2l19-4v-222zm1164 27q-35-35-83-35-8 0-16 2l-17 4v226q8 2 16.5 3t16.5 1q49 0 83.5-35t34.5-83-35-83zM397 1202l-8 9q-6 6-16 20 37 87 70 151t62 109q0-101 70-173.5t172-72.5q9 0 19 1t19 3v-47H397zm0 599h388v-77q-9 2-19 2l-19 1q-131 0-226.5-131T348 1276q-16 33-28 85t-12 124q0 107 25 185t64 131zm1811 0q53-83 70.5-157.5T2296 1485q0-75-12-127t-28-84q-22 233-99 363t-208 164h259z" + }, + "children": [] + }] +}; +exports.u1F4FC = u1F4FC; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F500.js b/dist/noto_emoji_regular/u1F500.js new file mode 100644 index 000000000..9ec20001e --- /dev/null +++ b/dist/noto_emoji_regular/u1F500.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F500 = void 0; +var u1F500 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M300 1990l-31-1q-18 0-56-2v-192l69 3h11q220 0 425-116t385.5-324 375.5-333.5T1874 854V523l513 415-513 415v-291q-111 36-252.5 133t-293 270.5-322 292.5T659 1933.5 300 1990zm1574-556l513 415-513 414v-329q-171-44-303-116.5T1322 1646q27-27 52.5-54.5t50.5-55.5l54-59q90 81 183 142.5t212 105.5v-291zM267 989l-54 3V800l55-3q17 0 30-1 228 0 443 87t406 256q-41 39-92 94.5t-53 58.5l-14 16q-169-161-341-240t-359-79h-21z" + }, + "children": [] + }] +}; +exports.u1F500 = u1F500; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F501.js b/dist/noto_emoji_regular/u1F501.js new file mode 100644 index 000000000..69b6fbf87 --- /dev/null +++ b/dist/noto_emoji_regular/u1F501.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F501 = void 0; +var u1F501 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M332 1498q-31-89-31-183 0-228 164.5-392.5T858 758h985V450l513 416-513 414V951H858q-148 0-256 107t-108 257q0 11 1 21l1 22zm1936-354q31 91 31 182 0 228-163.5 392.5T1742 1883H757v308l-512-415 512-415v330h985q148 0 256-107t108-258q0-20-3-43z" + }, + "children": [] + }] +}; +exports.u1F501 = u1F501; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F502.js b/dist/noto_emoji_regular/u1F502.js new file mode 100644 index 000000000..48fc1c4b6 --- /dev/null +++ b/dist/noto_emoji_regular/u1F502.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F502 = void 0; +var u1F502 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M498 1170q-73 39-129.5 98.5T277 1403q-2-18-3.5-37t-1.5-38q0-237 165-402.5T831 760h984V452l513 415-513 415V953H831q-109 0-199.5 60T498 1170zm522 731q-118 119-284 119t-283.5-119T335 1618q0-165 118-283.5T736 1216q166 0 284 118t118 284q0 164-118 283zm1221-755q31 87 31 182 0 228-164.5 392.5T1715 1885h-548q54-86 71-193h477q150 0 257-108t107-256q0-22-3-43zM872 1764q0-7-8-7h-59v-413q0-2-3-4.5t-6-2.5l-171 37q-7 0-7 7v102q0 2 2.5 4.5t7.5 2.5l51-15v282h-59q-8 0-8 7v96q0 8 8 8h244q8 0 8-8v-96z" + }, + "children": [] + }] +}; +exports.u1F502 = u1F502; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F503.js b/dist/noto_emoji_regular/u1F503.js new file mode 100644 index 000000000..d29c5654f --- /dev/null +++ b/dist/noto_emoji_regular/u1F503.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F503 = void 0; +var u1F503 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2274 1361q2 17 2 50 0 275-132 503t-356 356.5-486 128.5q-122 0-238.5-30T838 2282l-217 231-58-642 680-22-244 261q72 31 148.5 47t154.5 16q312 0 530.5-222t218.5-539q0-24-1-36zM552 1472l-226 15-2-33q0-16-1-33 0-252 126.5-478t352-361T1297 447q122 0 239.5 30t226.5 89l217-231 57 641-679 23 244-261q-72-31-148.5-47T1299 675q-192 0-363.5 95t-278 267T551 1434q0 26 1 38z" + }, + "children": [] + }] +}; +exports.u1F503 = u1F503; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F504.js b/dist/noto_emoji_regular/u1F504.js new file mode 100644 index 000000000..e23869e2c --- /dev/null +++ b/dist/noto_emoji_regular/u1F504.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F504 = void 0; +var u1F504 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M551 1374l-1 25q0 13-1 26 0 197 100.5 373t273 276 375.5 100q78 0 155-16.5t149-48.5l-245-261 680 23-57 643-218-232q-108 58-225 88t-238 30q-254 0-478-125t-361-351.5T323 1409q0-32 2-49zm447-637l245 261-681-22 58-643 217 231q109-59 226.5-88.5T1302 446q264 0 487.5 130T2145 934t132 488v32l-2 32-226-15 2-26v-24q0-199-100.5-373T1676 773.5 1302 673q-158 0-304 64z" + }, + "children": [] + }] +}; +exports.u1F504 = u1F504; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F505.js b/dist/noto_emoji_regular/u1F505.js new file mode 100644 index 000000000..9981b5825 --- /dev/null +++ b/dist/noto_emoji_regular/u1F505.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F505 = void 0; +var u1F505 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1643 1715q-143 143-343 143t-342.5-142.5T815 1373t143-343 342-143 342.5 143.5T1786 1373t-143 342zm-143.5-541.5Q1416 1090 1300 1090q-117 0-200 84t-83 199q0 116 83.5 199.5T1300 1656q115 0 199-83t84-200q0-116-83.5-199.5zM1186 2037q0-20 14-34t34-14h134q20 0 33.5 14t13.5 34v131q0 20-13.5 34t-33.5 14h-134q-20 0-34-14t-14-34v-131zm-435-275q13-13 34-13 20 0 33 13l95 95q13 13 13 34 0 20-13 33l-93 93q-14 14-34 14-19 0-33-14l-95-94q-7-7-10-16t-4-18q0-20 14-34zm1098-775q-14 14-33 14-9 0-18-3.5t-16-10.5l-94-95q-14-14-14-33t14-33l93-94q13-13 33-13 9 0 18 3t16 10l95 95q13 13 13 33 0 9-3 18t-10 16zM638 1260q20 0 33.5 14t13.5 34v134q0 20-13.5 33.5T638 1489H506q-20 0-33.5-13.5T459 1442v-134q0-20 13.5-34t33.5-14h132zm1050 663q-14-14-14-33t15-34l94-94q13-13 33-13 9 0 18 3t16 10l93 93q13 13 13 33 0 9-3 18t-10 16l-95 95q-14 14-33 14-9 0-18-3.5t-16-10.5zm275-435q-20 0-34-13.5t-14-33.5v-133q0-20 14-34t34-14h131q20 0 34 14t14 34v133q0 20-14 33.5t-34 13.5h-131zm-549-776q0 20-13.5 33.5T1367 759h-134q-20 0-33.5-13.5T1186 712V580q0-19 13.5-33t33.5-14h134q20 0 33.5 14t13.5 33v132zM912 826q7 7 10 16t3 17q0 20-13 33l-94 95q-14 14-33 14-21 0-34-14l-93-93q-14-14-14-33 0-20 14-34l95-94q14-14 34-14 19 0 33 14z" + }, + "children": [] + }] +}; +exports.u1F505 = u1F505; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F506.js b/dist/noto_emoji_regular/u1F506.js new file mode 100644 index 000000000..39faceb75 --- /dev/null +++ b/dist/noto_emoji_regular/u1F506.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F506 = void 0; +var u1F506 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1642.5 1715.5Q1499 1859 1300 1859t-342-142.5T815 1373q0-200 142.5-342.5T1300 888t343 143.5 143 341.5q0 199-143.5 342.5zm-142-540.5q-82.5-84-200.5-84-117 0-199.5 83t-82.5 199q0 117 82.5 200t199.5 83q118 0 200.5-84t82.5-199q0-114-82.5-198zM1415 712q0 20-14 34t-34 14h-134q-20 0-33.5-14t-13.5-34V405q0-20 13.5-33.5T1233 358h134q20 0 34 13.5t14 33.5v307zM913 826q13 13 13 33 0 9-3 18t-10 16l-94 94q-14 14-34 14-19 0-33-14L534 770q-14-14-14-33 0-20 14-34l95-94q14-14 34-14 19 0 33 14zm-274 435q20 0 33.5 13.5T686 1308v133q0 20-13.5 34t-33.5 14H331q-20 0-33.5-14t-13.5-34v-133q0-20 13.5-33.5T331 1261h308zm112 501q14-14 34-14 18 0 34 14l94 95q13 13 13 33t-13 33l-217 217q-14 14-33 14-21 0-34-14l-95-94q-14-14-14-33 0-20 14-34zm435 274q0-20 13.5-33.5t33.5-13.5h134q20 0 34 13.5t14 33.5v307q0 20-14 34t-34 14h-134q-20 0-33.5-14t-13.5-34v-307zm502-113q-8-7-11-16t-3-17q0-19 14-33l94-95q14-14 34-14 19 0 33 14l217 217q14 14 14 33 0 20-14 34l-94 94q-14 14-34 14-19 0-33-14zm274-434q-20 0-33.5-14t-13.5-34v-133q0-20 13.5-33.5t33.5-13.5h308q19 0 33 13.5t14 33.5v133q0 20-14 34t-33 14h-308zm-113-502q-14 14-33 14-21 0-34-14l-94-94q-15-15-15-34t14-33l218-217q14-14 33-14 18 0 34 14l94 94q14 14 14 33 0 20-14 34z" + }, + "children": [] + }] +}; +exports.u1F506 = u1F506; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F507.js b/dist/noto_emoji_regular/u1F507.js new file mode 100644 index 000000000..f01637125 --- /dev/null +++ b/dist/noto_emoji_regular/u1F507.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F507 = void 0; +var u1F507 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2348.5 1979Q2186 2259 1906 2421.5T1300 2584t-606-162.5T251.5 1979 89 1373t162.5-606T694 324.5 1300 162t606 162.5T2348.5 767t162.5 606-162.5 606zM736 608l1336 1323q85-118 132.5-259.5T2252 1373q0-252-126-472.5T1778.5 551 1300 422q-159 0-302 49T736 608zm1124 1535L526 820q-84 118-130.5 258T349 1373q0 257 129 478.5T827.5 2199t472.5 126q158 0 300-48t260-134zm-360-889q-18-60-50.5-96.5T1373 1120q26-274 95-426t161-152q71 0 155 252t84 575q0 62-3.5 120.5T1855 1605zm-282 362q27 223 93.5 376t151.5 204h-65q-23 0-85-93.5T1198 1867h-3l-241-303-74-22q-8 84-25 135.5t-48 56.5l-5 1H663q-57 0-97.5-101.5T525 1392q0-133 36.5-230.5T649 1052zm498 494q-23 42-45 64t-42 22q-76 0-137-105.5t-95-298.5zM1172 928q52-166 121.5-276T1407 542h56q-72 43-132.5 163.5T1238 994z" + }, + "children": [] + }] +}; +exports.u1F507 = u1F507; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F508.js b/dist/noto_emoji_regular/u1F508.js new file mode 100644 index 000000000..3f9c8b761 --- /dev/null +++ b/dist/noto_emoji_regular/u1F508.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F508 = void 0; +var u1F508 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1999 1779.5q-41 207.5-105.5 343.5T1776 2259q-96 0-170-153t-106-428q62-6 109.5-96t47.5-207q0-132-46.5-217.5T1494 1072q27-291 103-464.5T1776 434q52 0 116.5 134t106 343 41.5 436q0 225-41 432.5zM1593 2259h-71q-27 0-94.5-104T1302 1896l-6-1-264-334-82-23q-8 112-30.5 162t-62.5 50H711q-64 0-107.5-112.5T560 1373q0-153 43.5-265.5T711 995h154q31 0 52 46.5t33 159.5l42-10q20-4 40-7l231-289q56-198 137.5-329.5T1532 434h61q-122 73-204 328t-82 585 82 584.5 204 327.5z" + }, + "children": [] + }] +}; +exports.u1F508 = u1F508; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F509.js b/dist/noto_emoji_regular/u1F509.js new file mode 100644 index 000000000..429bc1f60 --- /dev/null +++ b/dist/noto_emoji_regular/u1F509.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F509 = void 0; +var u1F509 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1690 1777.5q-41 207.5-105.5 343.5T1467 2257q-96 0-170-153t-106-428q60-6 108.5-95.5T1348 1373q0-129-47-216t-116-87q28-300 104-469t178-169q52 0 116.5 134t106 343 41.5 436q0 225-41 432.5zM1284 2257h-71q-27 0-94.5-104T993 1894l-6-1-264-334-82-23q-13 126-34 169t-54 43H401q-62 0-106-112t-44-265q0-154 44-266t106-112h155q31 0 52 46.5t33 159.5q20-5 41-9.5t41-7.5l231-289q51-187 134-324t135-137h61q-122 73-204 328t-82 585 82 584.5 204 327.5zm650-1361q60 77 93 192.5t33 255.5q0 139-33 254.5t-93 193.5l-89-90q42-61 65.5-154t23.5-204-23.5-204.5T1845 986zm242-244q83 126 127.5 303.5T2348 1344q0 207-45 386.5T2176 2035l-91-92q65-106 101-262t36-337q0-182-36-338t-101-262z" + }, + "children": [] + }] +}; +exports.u1F509 = u1F509; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F50A.js b/dist/noto_emoji_regular/u1F50A.js new file mode 100644 index 000000000..a4c905bfb --- /dev/null +++ b/dist/noto_emoji_regular/u1F50A.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F50A = void 0; +var u1F50A = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1486 2053q-92 279-171 279-96 0-170.5-155.5T1040 1750q60-6 108-96t48-206q0-129-47.5-216.5T1033 1144q27-292 103.5-464T1315 508q79 0 171 277.5t92 633.5q0 355-92 634zm-353 279h-71q-26 0-93.5-102.5T841 1969l-5-2-263-334-83-23-5 51h-1q-6 63-24.5 107.5T411 1822H251q-63 0-107-112t-44-265 43.5-265.5T251 1067h154q31 0 51 46.5t28 107.5l6 53 41-10q20-5 42-8l230-289q52-192 134.5-325.5T1071 508h62q-124 74-205 328.5T847 1419q0 329 81.5 584t204.5 329zM2274 475q108 174 167 418.5t59 524.5-59.5 526-166.5 417l-92-92q90-152 141.5-375t51.5-476-51.5-476T2182 567zm-251 253q83 126 127.5 302.5T2195 1418t-45 388-127 302l-91-91q66-109 102-263.5t36-335.5q0-173-36-331t-102-268zm-242 242q60 78 93 193t33 255-33 255-93 193l-88-90q42-60 65-153t23-205q0-111-23-204t-65-154z" + }, + "children": [] + }] +}; +exports.u1F50A = u1F50A; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F50B.js b/dist/noto_emoji_regular/u1F50B.js new file mode 100644 index 000000000..253191a77 --- /dev/null +++ b/dist/noto_emoji_regular/u1F50B.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F50B = void 0; +var u1F50B = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1591 346q102 43 161 110t59 142l-86 1662q-6 107-129 181t-296 74-296-74-129-181L788 598q0-73 56.5-139.5T1011 346q27-53 107-90t182-37 181.5 36.5T1591 346zm-431 120.5q56 31.5 140 31.5 82 0 139.5-31t57.5-74q0-44-59-75.5T1300 286q-81 0-138.5 32t-57.5 75q0 42 56 73.5zM1582.5 740Q1702 677 1702 592q0-42-22.5-79t-76.5-71v96q0 74-90 127t-213 53q-127 0-215-54t-88-134v-88q-46 29-73 65t-27 76q0 89 119 154.5t284 65.5q163 0 282.5-63zm-78.5 394v-8q0-59-59-70.5t-64-12.5-13.5-62-70.5-61q-65 0-71.5 60t-14.5 66l-5 3q-51 0-84 21.5t-33 59.5q0 33 22 52t75 23q18 0 25 5t7 17q7 55 26.5 81t54.5 26q58 0 67.5-52t9.5-62.5 58-21 68-54.5zm-66 1019q-38-13-145-13-101 0-138 18.5t-37 55.5q0 39 37.5 55t150.5 16q95 0 132.5-18t37.5-57q0-44-38-57z" + }, + "children": [] + }] +}; +exports.u1F50B = u1F50B; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F50C.js b/dist/noto_emoji_regular/u1F50C.js new file mode 100644 index 000000000..bac7abc2f --- /dev/null +++ b/dist/noto_emoji_regular/u1F50C.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F50C = void 0; +var u1F50C = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1987.5 2264.5q47.5 80.5 101.5 118t54 89.5q0 40-30.5 69.5T2044 2571q-72 0-186-147.5T1744 2091q0-140 45.5-279.5t163-327.5 151-289.5T2137 1002q0-103-46.5-159.5T1964 786q-128 0-231.5 139T1618 1381.5t-75.5 557.5-215.5 386-367 146q-207 0-331-112t-124-292q0-98 36-216.5t42-209.5q-43-16-59-36.5t-16-50.5q0-17 2-34t2-34q0-19-3-30.5t-45.5-32.5-91.5-86-77-173.5T267 905l1-52q0-71 13.5-98t50.5-49 91-26q2-35 7-78t12-87l12-85q6-41 12-74l12-72q13-30 36-41t52-11q60 0 90 30t30 87q0 24-2 65t-5 88l-15 185q53 3 107.5 7.5T889 706q4-69 15.5-162.5T931 360l6-41q13-30 35.5-41.5T1027 266q66 0 93 32t27 94q0 40-4 114t-9 153l-7 86q64 22 83.5 50.5T1230 917q0 185-80 345t-203 207q-7 8-29 21t-24.5 93-114.5 89q-4 45-11 84t-18 80l-13 48q-13 32-24.5 83T701 2067q0 101 68.5 154.5T962 2275q114 0 204-68.5t147.5-205 80.5-321 28.5-341T1457 1069t94-225.5T1730.5 660t236.5-72q161 0 263.5 116.5T2333 1005q0 118-42 246t-160.5 321-154.5 303-36 216q0 93 47.5 173.5zM1007 343q-9 25-23.5 146T962 714q38 8 93 13l13-190q3-45 4.5-83t1.5-62q0-32-8.5-42t-38.5-10q-10 0-16 2zm-461-33q-9 23-25 145.5T496 680q26 0 47.5 1.5T590 683l8-100q4-50 7-96l5-82q2-36 2-56 0-27-8.5-35t-37.5-8q-8 0-13.5 1.5T546 310z" + }, + "children": [] + }] +}; +exports.u1F50C = u1F50C; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F50D.js b/dist/noto_emoji_regular/u1F50D.js new file mode 100644 index 000000000..4d48e6e2f --- /dev/null +++ b/dist/noto_emoji_regular/u1F50D.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F50D = void 0; +var u1F50D = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2400 2166q14 14 20 32t6 39q0 93-95.5 186.5T2145 2517q-21 0-39-6t-32-20l-425-425q-26-28-26-71 0-48 29-101l-186-185q-109 82-234 123t-255 41q-215 0-402-107t-294-294-107-402q0-216 108-402t294-294 402-108q217 0 402 107t293.5 293.5T1782 1067q0 131-41.5 256T1616 1557l185 185q26-14 51.5-20t48.5-6q22 0 41.5 6t32.5 20zm-1101-548.5q147-87.5 231-233t84-314.5q0-260-186.5-447.5T978 435q-171 0-316 83.5T429.5 749 342 1070q0 170 85.5 316.5t232 232.5 318.5 86q174 0 321-87.5z" + }, + "children": [] + }] +}; +exports.u1F50D = u1F50D; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F50E.js b/dist/noto_emoji_regular/u1F50E.js new file mode 100644 index 000000000..fb2ded843 --- /dev/null +++ b/dist/noto_emoji_regular/u1F50E.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F50E = void 0; +var u1F50E = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M625 1742q13-14 32.5-20t41.5-6q23 0 48.5 6t51.5 20l185-185q-83-109-124.5-234T818 1067q0-214 108.5-400.5T1220 373t402-107q216 0 400.5 107t294 292.5T2426 1070q0 217-107.5 402.5t-293 293T1623 1873q-130 0-255-41t-234-123l-186 185q29 53 29 101 0 43-26 71l-425 425q-14 14-32 20t-39 6q-91 0-186-94t-95-186q0-21 6-39t20-32zm1545.5-993Q2083 602 1938 518.5T1622 435q-263 0-449.5 187.5T986 1070q0 169 84 314.5t231 233 321 87.5q172 0 318.5-86t232-232.5T2258 1070q0-174-87.5-321z" + }, + "children": [] + }] +}; +exports.u1F50E = u1F50E; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F50F.js b/dist/noto_emoji_regular/u1F50F.js new file mode 100644 index 000000000..17e7743d0 --- /dev/null +++ b/dist/noto_emoji_regular/u1F50F.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F50F = void 0; +var u1F50F = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1360 1664q42 0 72 29.5t30 71.5v695q0 40-29 71.5t-73 31.5H354q-42 0-71-30.5t-29-72.5v-695q0-43 29.5-72t70.5-29h30v-253q0-196 139-335t335-139q194 0 333 139t139 335v253h30zm980 316l4 27q0 13 1 27 0 88-48 193t-98.5 169-114.5 163l-4 4q-16 24-50 24-38 0-55.5-35t-84-119.5-105-160.5-54.5-133-16-106q0-42 18.5-106t48.5-106l20-27q-5-5-5-9v-483q-13-5-20.5-11t-7.5-12v-119q11 22 90 35t203 13v111l123-11v-110q42-5 71-15.5t37-22.5v118q0 7-8 13t-22 11v483q0 4-4 9 38 50 54.5 92.5t26.5 93.5zm-1245-569q0-97-69-168t-168-71q-101 0-170 71t-69 168v253h476v-253zm935-290q-114 0-187.5-16t-73.5-37V720q0-70 6.5-140t23.5-134q37 14 106.5 20.5T2062 473v648h-32zm59 1225q60-73 100.5-161.5T2230 2033v-16l-2-15q-17-79-45.5-116.5T2141 1826q-25 2-53 3.5t-58 1.5q-29 0-56.5-1.5t-52.5-3.5q-59 77-74 121.5t-15 86.5q0 56 33 135t69 126l53 72 15 22v-247q-22-8-36.5-28t-14.5-46q0-33 23.5-56t55.5-23q33 0 56.5 23t23.5 56q0 26-14 46t-37 28v247zm96-1882l44-9q19-4 33-9 17 65 24 135.5t7 138.5v348q0 14-29 24.5t-79 18.5V464zm-81-80q-35 3-74 3-63 0-116.5-5.5T1825 367q35-89 86.5-131.5T2028 193q76 0 126.5 47t82.5 127q-17 5-38.5 8t-46.5 5zM893 2144q26-12 42.5-35.5T952 2056q0-39-27.5-67.5T858 1960q-41 0-68 27.5t-27 68.5q0 29 16 52.5t43 35.5l-33 139h136l-29-131z" + }, + "children": [] + }] +}; +exports.u1F50F = u1F50F; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F510.js b/dist/noto_emoji_regular/u1F510.js new file mode 100644 index 000000000..5b2aff069 --- /dev/null +++ b/dist/noto_emoji_regular/u1F510.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F510 = void 0; +var u1F510 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1301 1370q43 0 72.5 30.5t29.5 71.5v695q0 42-30 71.5t-72 29.5H296q-41 0-71.5-29.5T194 2167v-695q0-42 30-72t72-30h30v-254q0-195 140-334t333-139q191 0 331.5 138.5T1271 1116v254h30zm769 850l-147 147-146-147v-97l97-99-97-97 97-97-97-99v-368q-150-49-244.5-177.5T1438 904q0-196 142.5-340T1922 420q200 0 342 141.5T2406 904q0 149-93 279t-243 180v857zM1036 1116q0-99-71-168.5T799 878q-97 0-167 70t-70 168v254h474v-254zm983-311.5q41-41.5 41-96.5 0-58-41-98.5t-96-40.5q-54 0-96 41.5t-42 97.5q0 54 41 96t97 42q55 0 96-41.5zM834 1849q27-11 43.5-34.5T894 1761q0-39-27.5-66.5T799 1667q-41 0-68 28t-27 66q0 30 16.5 53.5T763 1849l-33 140h137l-30-130z" + }, + "children": [] + }] +}; +exports.u1F510 = u1F510; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F511.js b/dist/noto_emoji_regular/u1F511.js new file mode 100644 index 000000000..5df77fa5a --- /dev/null +++ b/dist/noto_emoji_regular/u1F511.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F511 = void 0; +var u1F511 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M451 2570H131v-319l107-105h213v-213h212v-212l403-403q-41-76-62.5-162T982 977q0-197 98-368t271-272.5T1725 235q202 0 375 101.5T2371 609t98 368q0 199-100 372t-272 272.5-372 99.5q-94 0-179-21.5t-162-62.5zM2087 915q62-62 62-150t-61.5-150.5T1937 552t-150.5 62.5T1725 765t62 150 150 62 150-62z" + }, + "children": [] + }] +}; +exports.u1F511 = u1F511; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F512.js b/dist/noto_emoji_regular/u1F512.js new file mode 100644 index 000000000..cd8a66831 --- /dev/null +++ b/dist/noto_emoji_regular/u1F512.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F512 = void 0; +var u1F512 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1957 1464q-3 363-17 499t-113.5 232-275 180-354.5 84q-107 0-180.5-45T893 2275.5t-127.5-301T688 1722t22.5-90.5T777 1542q-62-109-99-219.5T641 1087q0-200 99.5-354.5T1027 488t340-90q135 0 231.5 71.5t147 198.5 50.5 243q0 49-2 106.5t-6 113.5q71 11 120.5 59.5T1958 1305zM830 1629q-20 26-32 49t-12 46q0 50 52 80.5t122 30.5q39 0 82-7.5t103-28.5q10 0 138.5-58.5t353-194T1861 1317q0-39-23-60t-58-29q-3 37-7 63l-6 37q-10 54-47.5 77t-69.5 23q-34 0-65-14.5t-34.5-49-3.5-69.5l1-51q-129 36-252 95.5T1048 1469q27 58 46 88l23 39 7 16q4 12 4 32 0 51-48.5 80.5T988 1754q-36 0-69-21t-89-104zm142-377.5q16 66.5 38 125.5 191-106 309-156.5t229-79.5q0-225-50.5-322.5T1345 721q-74 0-174 49.5t-157.5 137T956 1117q0 68 16 134.5zm617 773.5q46-32 72.5-73.5t26.5-78.5q0-39-26.5-60t-64.5-21q-79 0-152.5 66.5T1371 1988q0 39 27 60t65 21q29 0 56-10l-8 137 121-64z" + }, + "children": [] + }] +}; +exports.u1F512 = u1F512; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F513.js b/dist/noto_emoji_regular/u1F513.js new file mode 100644 index 000000000..0e41f48e9 --- /dev/null +++ b/dist/noto_emoji_regular/u1F513.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F513 = void 0; +var u1F513 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2158 342q122 134 122 389 0 135-33 279t-67 213l-10 20q-11 24-36.5 39t-67.5 15q-41 0-73.5-25t-32.5-57q0-26 7-69l16-97q9-53 16-112.5t7-117.5q0-149-57.5-221T1777 526q-119 0-219.5 52.5t-146 148.5-45.5 226q0 52 6 102.5t16 95.5l9-2q122 0 186.5 54.5T1648 1334q0 4 1 14v72l-4 237q0 68-3 131l-4 115q-5 138-31 192t-63 101.5-156 126-246.5 122.5-252.5 44q-109 0-185.5-47.5T577 2293t-124-292-74-255q0-87 88.5-178t309-204 348.5-159q-22-73-36-150.5T1075 905q0-231 99.5-392.5t267-233T1803 208q233 0 355 134zm-744 907q7 26 12.5 43t10.5 30l5 20q2 8 2 15 0 47-33.5 76.5T1312 1463q-49 0-79.5-26.5t-44-53-33.5-85.5l-230 100q-139 61-293 165t-154 189q0 49 49.5 80.5T651 1864q134 0 339-101t383-217.5 178-199.5q0-42-27.5-67t-109.5-30zm-664 368q7 0 14-1 24 0 42.5 12t18.5 35q0 45-45.5 74.5T682 1767q-32 0-48-12.5t-16-34.5q0-34 34.5-63t84.5-38zm536 366q24-20 43.5-47.5t19.5-57.5q0-32-16.5-45.5T1286 1819q-66 0-144 55.5t-78 114.5q0 26 16.5 44t45.5 18q12 0 27-4.5t29-4.5q8 0 11.5 18.5t3.5 58.5 3.5 58.5 11.5 18.5q13 0 35.5-12t22.5-35l-1-111q0-21 2-31.5t7-15.5z" + }, + "children": [] + }] +}; +exports.u1F513 = u1F513; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F514.js b/dist/noto_emoji_regular/u1F514.js new file mode 100644 index 000000000..c03e1d6c1 --- /dev/null +++ b/dist/noto_emoji_regular/u1F514.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F514 = void 0; +var u1F514 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1978 1154q152 113 206.5 196t54.5 166q0 185-197 404.5t-521.5 365T893 2431q-241 0-381.5-106.5T371 1957q0-81 7-170t7-154q0-106-12.5-293.5T360 1046q0-95 26.5-185.5T485 683l30-35q-11-23-15.5-47.5T495 553q0-95 68-167t169-72q72 0 132 41t87 107q112 2 224 46t289 218l78 77q123 124 237.5 205.5T1955 1136zm-543 1063.5q287-114.5 496-324.5t209-373q0-86-72.5-130t-212.5-44q-107 0-233 27 50 46 79 113.5t29 137.5q0 140-101.5 247.5T1380 1979q-156 0-255-108.5t-99-243.5v-18q-213 124-355 277t-142 272q0 81 101 127.5t263 46.5q255 0 542-114.5zM471.5 1338q12.5 187 12.5 297 0 56-7 135t-7 174q2 16 12 16 5 0 15.5-12t28.5-38l30-42q15-21 51-61.5t36-162.5q0-155-49.5-403T544 813q0-9-1-15l-2-9q0-4-4-4-9 0-43.5 68T459 1046q0 105 12.5 292zm185-877Q619 490 619 527q0 15 11 15 3 0 15-5l25-10q29-12 38.5-18t25.5-11l30-9q15-5 26.5-11t11.5-12q0-14-22.5-24T732 432q-38 0-75.5 29z" + }, + "children": [] + }] +}; +exports.u1F514 = u1F514; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F515.js b/dist/noto_emoji_regular/u1F515.js new file mode 100644 index 000000000..1f08e0932 --- /dev/null +++ b/dist/noto_emoji_regular/u1F515.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F515 = void 0; +var u1F515 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2348.5 1978Q2186 2258 1906 2420.5T1300 2583t-606-162.5T251.5 1978 89 1372t162.5-606T694 323.5 1300 161t606 162.5T2348.5 766t162.5 606-162.5 606zm-1953-308Q443 1811 528 1929L1864 606q-119-88-262-136.5T1300 421q-258 0-479.5 130t-347 349.5T348 1372q0 157 47.5 298zm322-684Q739 923 776 868q-29-46-29-99 0-74 54-130t131-56q51 0 91 23.5t69 66.5q15-2 30.5-3t30.5-1q76 0 156 26t236 144l-602 597-45-134q-23-66-41-135l-21-79q-13-45-19-93l-1-13q-2-11-7-11t-20.5 37.5T773 1117q0 45 12.5 113.5T810 1356l37 175-67 66q-28-159-56-279t-28-207q0-62 21.5-125zM873 763l23-15q12-8 26-16l26-14q12-6 20-12.5t8-11.5q0-11-15-14.5t-26-3.5q-36 0-64 22.5T843 758q0 14 8 14 9 0 22-9zm1332 313.5Q2158 937 2073 819L739 2141q118 87 260.5 135t300.5 48q256 0 476-128t348-348 128-476q0-156-47-295.5zm-239 15.5q160 90 203 153t43 137q0 166-168.5 374t-419 332.5T1163 2213q-74 0-133-17.5t-96.5-54T886 2091l1033-1025zm134 289.5q-23-8.5-57-8.5-62 0-136.5 24t-112.5 43l-69 34q42 30 63 72t21 85q0 83-58 144t-142 61q-73 0-128-44.5t-71-135.5q-141 116-237.5 248t-96.5 183q0 25 26 37t90 12q111 0 266-61t228-109.5 184-150 182-220 71-173.5q0-32-23-40.5z" + }, + "children": [] + }] +}; +exports.u1F515 = u1F515; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F516.js b/dist/noto_emoji_regular/u1F516.js new file mode 100644 index 000000000..fec3c3a20 --- /dev/null +++ b/dist/noto_emoji_regular/u1F516.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F516 = void 0; +var u1F516 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2335 1732q0 4 1 8 0 16-10 30.5t-26 29.5l-249 255-110 112-174 179-20 22q-28 31-56 49t-55 18q-32 0-69.5-23.5T1356 2233t-307.5-312.5-245-321.5T606 1233l-29-68-21-51q-3-6-7-17t-4-20q0-28 21-45l111-89q-35-27-66.5-54.5T548 832l-43-40Q387 676 335.5 609.5T274 529t-10-31q0-15 38-60.5t66-45.5q22 0 49.5 48.5T520 580t170 186q-20-75-27.5-152.5T655 458q0-25 7.5-41.5t47-24T775 385q29 0 29 32 0 22-1.5 38t-1.5 33q0 79 11 162t32 161l141-111q5-4 10.5-6.5t15.5-2.5q33 0 70.5 53T1246 932t293 275 402.5 281.5 308 175 83.5 60.5zM985 952q-30-28-70-28h-11l-12 2 17 29q5 9 8.5 17.5T921 988q0 16-31 43t-52 27q-12-2-25-11.5t-21-17.5q-4 13-4 29 0 44 29 74.5t69 30.5q51 0 90-41.5t39-93.5q0-48-30-76z" + }, + "children": [] + }] +}; +exports.u1F516 = u1F516; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F517.js b/dist/noto_emoji_regular/u1F517.js new file mode 100644 index 000000000..af6497e32 --- /dev/null +++ b/dist/noto_emoji_regular/u1F517.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F517 = void 0; +var u1F517 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2090 1153.5Q1983 1307 1861.5 1448T1618 1689t-237 122q-14 20-27.5 38t-27.5 35l-7 8q-72 92-138.5 155t-127.5 97q-100 176-199 256t-198 80q-111 0-182-67.5T403 2257q0-99 57-214.5T626 1816q18-92 75.5-188T867 1424q4-108 75.5-271.5t146-306 164-266.5T1446 401.5t216-54.5q128 0 255.5 74.5t203.5 194 76 242.5q0 142-107 295.5zm-428.5-283Q1617 829 1559 829q-63 0-117 55.5T1283 1116l-44 75q-21 35-36 61l-22 39q58 0 128.5 48.5T1419 1454q24-24 45-51.5t40-56.5l38-57q5-8 84.5-124t79.5-197q0-56-44.5-97.5zM723 2001.5q33 44.5 110 82.5 23-30 39.5-64.5T889 1951q-17-17-29-33.5t-12-42.5q0-24 12-49.5t32-50.5l22-28q21-26 43-52t46-51l28-30q35-37 72.5-62t67.5-25q15 0 36 14t67 14q28 0 48-16t45-33q-29-64-95-106t-130-42q-129 0-290.5 185.5T690 1883q0 74 33 118.5zm36 170.5l26-32q-34-15-55.5-33.5T685 2062q-27 33-46 67t-19 61q0 18 12.5 32t40.5 14q18 0 41-18.5t45-45.5zm511-332q4-6 8-11l8-9q-31-2-55.5-9t-45.5-17l-31 37q-17 21-39 45 5 14 8.5 28t3.5 27q0 20-4 40.5t-11 42.5q48-42 88.5-89t63.5-78zm-191-31q13-14 24-29.5t22-22.5q-21-14-40.5-30.5T1047 1701l-40 45q20 7 38.5 24t33.5 39z" + }, + "children": [] + }] +}; +exports.u1F517 = u1F517; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F518.js b/dist/noto_emoji_regular/u1F518.js new file mode 100644 index 000000000..83028868b --- /dev/null +++ b/dist/noto_emoji_regular/u1F518.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F518 = void 0; +var u1F518 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2159 1913.5Q2036 2129 1817.5 2249T1325 2369q-283 0-517.5-116T445 1931t-128-468q0-278 128.5-511.5T804 587t517-131q268 0 489.5 127T2157 934.5t125 497.5q0 266-123 481.5zm-31.5-847Q2057 899 1932 778q-37 0-103.5 42.5T1704 915q115 79 188.5 219.5T1966 1420q0 179-89 333.5T1631 1996t-342 88q-138 0-266.5-51.5T803 1894q-45 57-71.5 105.5T696 2087q122 93 287 146t342 53q247 0 448-110.5t313-305.5 112-438q0-198-70.5-365.5zm-416 764Q1880 1661 1880 1420q0-219-168.5-380.5T1314 878q-263 0-433.5 163.5T710 1458q0 230 167 386t412 156q254 0 422.5-169.5zm-629.5-602q93-83.5 222-83.5 117 0 200.5 90.5T1588 1447q0 124-88 204.5t-212 80.5q-125 0-212-84.5T989 1436q0-124 93-207.5z" + }, + "children": [] + }] +}; +exports.u1F518 = u1F518; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F519.js b/dist/noto_emoji_regular/u1F519.js new file mode 100644 index 000000000..6332d6bd8 --- /dev/null +++ b/dist/noto_emoji_regular/u1F519.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F519 = void 0; +var u1F519 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1089 1895q6 0 10 7l190 507v11q-4 4-9 4h-126q-8 0-10-7l-29-87H944l-29 87q-2 7-11 7H780q-6 0-10-4l-1-11 190-507q5-7 11-7h119zm-9 328l-50-151-50 151h100zm-396-73q32 22 51.5 54t19.5 70q0 63-49.5 108T585 2427H370q-5 0-8.5-3.5t-3.5-7.5v-511q0-12 12-12h192q70 0 120 45t50 108q0 30-13.5 57t-34.5 47zm-130-48q21 0 36.5-15t15.5-38q0-22-15.5-38t-36.5-16h-72v107h72zm5 226q23 0 39.5-18t16.5-43q0-26-18-43.5t-46-17.5h-67v122h75zm1141-81l58 114-2 7q-40 34-88.5 50.5T1563 2435q-123 0-204-78t-81-197q0-118 80.5-197t204.5-79q114 0 187 57l1 8-63 115-6 3-4-2q-21-17-52-26t-63-9q-59 0-97 36.5t-38 93.5 37.5 94 97.5 37q31 0 67.5-13t60.5-32l5-1zm540 162l1 7q0 3-3 7t-8 4h-123q-8 0-9-6l-157-249v244q0 4-3.5 7.5t-8.5 3.5h-110q-5 0-8.5-3.5t-3.5-7.5v-511q0-5 3.5-8.5t8.5-3.5h110q12 0 12 12v199l136-206 4-4q2 0 7-1h123q11 0 11 11v3l-1 3-151 228zM393 973l877-642v400h936v479h-936v406z" + }, + "children": [] + }] +}; +exports.u1F519 = u1F519; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F51A.js b/dist/noto_emoji_regular/u1F51A.js new file mode 100644 index 000000000..53d603b58 --- /dev/null +++ b/dist/noto_emoji_regular/u1F51A.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F51A = void 0; +var u1F51A = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1796 1821q114 0 185 74t71 193q0 117-69.5 192t-186.5 75h-220q-13 0-13-11v-511q0-12 13-12h220zm-5 409q57 0 91.5-39t34.5-103q0-63-34.5-102t-91.5-39h-81q-11 0-11 9v262q0 12 11 12h81zm-879-409q11 0 11 12v85q0 11-11 11H682v100h177q12 0 12 11v85q0 4-3.5 7.5t-8.5 3.5H682v112h230q5 0 8 3.5t3 7.5v85q0 11-11 11H559q-4 0-7.5-3t-3.5-8v-511q0-5 3.5-8.5t7.5-3.5h353zm558 0q11 0 11 12v511q0 13-11 13h-111q-5 0-11-6l-205-326v319q0 5-4 9t-9 4h-112q-11 0-11-13v-511q0-12 11-12h112q6 0 10 5l207 325v-318q0-12 12-12h111zm736-840l-876 643v-402H393V744h937V338z" + }, + "children": [] + }] +}; +exports.u1F51A = u1F51A; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F51B.js b/dist/noto_emoji_regular/u1F51B.js new file mode 100644 index 000000000..71e3177d0 --- /dev/null +++ b/dist/noto_emoji_regular/u1F51B.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F51B = void 0; +var u1F51B = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1733 1865q12 0 12 12v511q0 11-12 11h-111q-8 0-10-5l-208-324v318q0 11-12 11h-110q-12 0-12-11v-511q0-12 12-12h110q8 0 11 5l208 325v-318q0-12 11-12h111zm-613.5 457q-79.5 77-201.5 77-124 0-202.5-77.5T637 2126q0-117 78.5-194.5T918 1854q122 0 201.5 77t79.5 195q0 119-79.5 196zm-97-297.5Q982 1984 918 1984q-66 0-106.5 40.5T771 2126q0 62 40.5 101.5T918 2267q64 0 104.5-39.5T1063 2126q0-61-40.5-101.5zm901 361Q1910 2399 1893 2399q-18 0-31.5-13.5T1848 2355q0-20 13.5-32.5t31.5-12.5q17 0 30.5 12.5t13.5 32.5q0 17-13.5 30.5zM1962 1936l-58 319q-2 10-11 10-4 0-8-2.5t-4-7.5l-58-319q0-4-1-12 0-30 20.5-51t50.5-21q29 0 49.5 21t20.5 51q0 8-1 12zM1634 734V333l877 644-877 642v-401H964v401L89 977l875-644v401h670z" + }, + "children": [] + }] +}; +exports.u1F51B = u1F51B; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F51C.js b/dist/noto_emoji_regular/u1F51C.js new file mode 100644 index 000000000..20045a6d2 --- /dev/null +++ b/dist/noto_emoji_regular/u1F51C.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F51C = void 0; +var u1F51C = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M544 2000q115 58 153.5 103.5T736 2200q0 63-51 114.5T542 2366q-56 0-103.5-22.5T353 2278l-1-9 52-88 5-4 7 3q22 22 61.5 44t74.5 22q17 0 33-11t16-32q0-35-56-63.5t-74-39.5l-5-2q-74-42-90-73t-16-68q0-65 42-114t135-49q37 0 81 12t71 30l3 10-35 83-4 4h-6q-3 0-38.5-15.5T542 1902q-23 0-36.5 11t-13.5 31q0 16 11 28.5t22 18.5zm1693-178q5 0 8 3.5t3 7.5v513q0 4-3 7.5t-8 3.5h-97q-5 0-11-6l-182-323v318q0 4-3 7.5t-8 3.5h-99q-5 0-8-3.5t-3-7.5v-513q0-4 3-7.5t8-3.5h99q5 0 9 6l182 323v-318q0-4 4-7.5t9-3.5h97zm-521.5 457q-69.5 78-179.5 78-111 0-181-77.5t-70-195.5 70-195.5 181-77.5q110 0 179.5 78t69.5 195-69.5 195zm-87-298.5Q1593 1939 1536 1939q-56 0-93.5 40.5T1405 2084t38 104 93 40q56 0 92-41.5t36-102.5q0-62-35.5-103.5zM1185 2279q-70 78-180 78t-179.5-78-69.5-195 69.5-195 179.5-78 180 78 70 195-70 195zm-86.5-299.5Q1061 1939 1005 1939t-93 41-37 104 37 103.5 93 40.5q55 0 93-40t38-104-37.5-104.5zM2207 978l-877 643v-400H394V740h936V336z" + }, + "children": [] + }] +}; +exports.u1F51C = u1F51C; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F51D.js b/dist/noto_emoji_regular/u1F51D.js new file mode 100644 index 000000000..c29ffca46 --- /dev/null +++ b/dist/noto_emoji_regular/u1F51D.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F51D = void 0; +var u1F51D = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1300 404l643 879h-400v307h-481v-307H658zm221.5 1867.5Q1443 2349 1319 2349q-123 0-201.5-77.5T1039 2076t78.5-195.5T1319 1803q124 0 202.5 77.5T1600 2076t-78.5 195.5zM1882 1809q75 0 129 53t54 126q0 74-54 127.5t-129 53.5h-104v163q0 11-11 11h-111q-5 0-8.5-3t-3.5-8v-512q0-5 3.5-8t8.5-3h226zm-839 102q0 5-3.5 8t-7.5 3H856v410q0 11-12 11H733q-11 0-11-11v-410H547q-5 0-9-3t-4-8v-91q0-5 4-8t9-3h485q4 0 7.5 3t3.5 8v91zm382.5 63.5Q1385 1935 1319 1935q-64 0-104.5 39.5T1174 2076t40.5 101.5T1319 2217q66 0 106.5-39.5T1466 2076t-40.5-101.5zM1871 2064q29-2 49.5-24t20.5-52-21.5-52-50.5-22h-89l-3 3v144l3 3h91z" + }, + "children": [] + }] +}; +exports.u1F51D = u1F51D; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F51E.js b/dist/noto_emoji_regular/u1F51E.js new file mode 100644 index 000000000..8b02817a8 --- /dev/null +++ b/dist/noto_emoji_regular/u1F51E.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F51E = void 0; +var u1F51E = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2176 1936.5Q2040 2171 1805.5 2307T1300 2443q-272 0-506-136t-370-370-136-506 136-506 370-370 506-136q271 0 505.5 136T2176 925.5t136 505.5-136 505.5zm-232 57.5q99-114 155-257.5t56-305.5q0-231-116.5-429.5T1725 689t-425-114q-162 0-305.5 56.5T737 787l137 138-97 17q-22 4-36 20t-14 39l-98-99q-87 109-136 243.5T444 1431q0 228 114 425t312.5 313.5T1300 2286q151 0 285.5-48.5T1829 2101l-118-118q37-15 70-39t59-54zm-725-725q12 73 54 130-36 42-58 90l-82-84v-222zm554 133q51 44 79.5 106.5T1881 1647q0 140-93 230.5t-233 90.5-234-90.5-94-230.5q0-76 29.5-138t79.5-107q-35-35-55.5-87t-20.5-113q0-125 84-207t211-82q128 0 211 82t83 207q0 60-20 111t-56 89zm-129 343.5q37-38.5 37-98.5t-37-98.5-89-38.5q-56 0-92 39t-36 98q0 58 37.5 97.5t90.5 39.5q52 0 89-38.5zm-159.5-145q10.5-22.5 31.5-33.5l114 113q-7 24-25.5 41t-49.5 17q-39 0-60-27t-21-64q0-24 10.5-46.5zm153-486.5q-32.5-35-82.5-35-51 0-83 35t-32 88q0 56 32 90t83 34q50 0 82.5-34t32.5-90q0-53-32.5-88zM1152 1734q5 0 9.5 4t4.5 9v183q0 6-4.5 9.5t-9.5 3.5H810q-13 0-13-13v-183q0-5 4-9t9-4h65v-539l-87 10q-5 0-9.5-3t-4.5-9V999q0-5 3-8.5t8-3.5l286-49q15 0 15 14v782h66z" + }, + "children": [] + }] +}; +exports.u1F51E = u1F51E; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F51F.js b/dist/noto_emoji_regular/u1F51F.js new file mode 100644 index 000000000..adc0b194c --- /dev/null +++ b/dist/noto_emoji_regular/u1F51F.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F51F = void 0; +var u1F51F = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2222 378q47 0 79.5 33t32.5 78v1845q0 46-33 79t-79 33H377q-45 0-78-33.5t-33-78.5V489q0-45 32-78t79-33h1845zM563 2142q4 7 7 7h1459q8 0 8-7V683q0-8-8-8H570q-7 0-7 8v1459zm753-1196.5Q1416 772 1581 772q164 0 264 174t100 461q0 289-100.5 462T1581 2042q-166 0-265.5-172t-99.5-463q0-288 100-461.5zM2232 458q-3 0-10-1H377q-14 0-23.5 9.5T344 489v1845q0 15 11 23l153-155q-26-24-26-60V683q0-36 26-62.5t62-26.5h1459q14 0 27.5 4.5T2081 611zM731 1108q-16 0-16-17V852q0-14 12-17l309-56q19 0 19 17v978h68q8 0 12.5 5t4.5 11v229q0 6-4.5 11t-12.5 5H756q-7 0-12.5-5t-5.5-11v-229q0-6 5.5-11t12.5-5h67v-674zm749 544q38 94 101 94 61 0 99.5-93.5T1719 1407t-38.5-245.5-99.5-93.5q-67 0-103 101t-36 238q0 151 38 245z" + }, + "children": [] + }] +}; +exports.u1F51F = u1F51F; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F520.js b/dist/noto_emoji_regular/u1F520.js new file mode 100644 index 000000000..9078acff8 --- /dev/null +++ b/dist/noto_emoji_regular/u1F520.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F520 = void 0; +var u1F520 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2239 1408v938h-939v-938h939zm-1879 0V470h939v938H360zm1420 804q144 0 232-92.5t88-242.5q0-148-88-241.5t-232-93.5h-277q-6 0-10.5 4t-4.5 10v641q0 6 4.5 10.5t10.5 4.5h277zm-247-938q-6 0-10.5-4t-4.5-10V619q0-6 4.5-10.5t10.5-4.5h241q88 0 150.5 57t62.5 135q0 38-16.5 71.5T1928 927q40 26 63.5 66.5t23.5 88.5q0 77-61 134.5t-150 57.5h-271zm-377-22L917 616q-3-8-13-8H755q-10 0-12 8l-239 636-2 3q0 2-1 4 0 5 5.5 8.5t10.5 3.5h156q11 0 13-10l36-109h215l36 109q3 10 13 10h157q6 0 10.5-5t4.5-9q-2-4-2-5zm-85 744l68 139-2 10q-103 89-249 89-158 0-263.5-101T519 1878q0-156 105.5-257T888 1520q74 0 133 18.5t107 54.5l1 11-75 144-6 4-7-1q-28-23-69-36.5t-84-13.5q-79 0-130 49t-51 128q0 78 50.5 126t130.5 48q41 0 89-16.5t82-42.5l8-3zm700-298q71 0 116 51t45 129q0 84-46.5 130.5T1765 2055h-94q-6 0-10.5-4t-4.5-10v-329q0-5 4.5-9.5t10.5-4.5h100zm-2-548q29 0 50.5-23.5t21.5-54.5q0-32-21.5-55.5T1769 993h-93l-5 4v149l5 4h93zm-6-282q27 0 46-20t19-48-19-47.5-46-19.5h-89l-3 2v129l3 4h89zm-933-38l62 188H767z" + }, + "children": [] + }] +}; +exports.u1F520 = u1F520; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F521.js b/dist/noto_emoji_regular/u1F521.js new file mode 100644 index 000000000..96c307eb5 --- /dev/null +++ b/dist/noto_emoji_regular/u1F521.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F521 = void 0; +var u1F521 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2239 1408v938h-939v-938h939zm-1879 0V471h939v937H360zm1135-91q-11 0-11-11V561q0-4 3-7.5t8-3.5h155q5 0 7.5 3.5t2.5 7.5v259q30-15 65.5-24t74.5-9q123 0 198.5 75.5T2074 1052t-76 189-198 75q-39 0-74.5-8.5T1660 1283v23q0 11-10 11h-155zm527 181q0-4-3-7.5t-8-3.5h-153q-5 0-8 3.5t-3 7.5v261q-30-17-65.5-26t-74.5-9q-119 0-196.5 75t-77.5 190 77.5 190 196.5 75q78 0 140-34v25q0 4 3 7.5t8 3.5h153q5 0 8-3.5t3-7.5v-747zm-903-786q0-14-12-14H958q-11 0-11 14v35q-65-35-151-35-130 0-211 81t-81 201q0 122 82 203t210 81q44 0 81.5-9.5T947 1242v23q0 14 11 14h149q12 0 12-14V712zm-71 1336l66 128-3 9q-90 76-219 76-140 0-231.5-88.5T569 1948q0-135 91.5-224.5T892 1634q130 0 211 66l3 8-73 131-4 3-7-1q-23-19-58-30t-71-11q-66 0-109.5 40.5T740 1948q0 66 43 107.5t110 41.5q35 0 77.5-15.5t66.5-35.5l7-3zm-153.5-961q-37.5 37-98.5 37-60 0-98-36.5T660 994q0-56 37.5-93.5T796 863q62 0 99 38t37 93q0 56-37.5 93zm819.5 47q33 34 86 34 54 0 87.5-33.5t33.5-82.5-32.5-83-88.5-34q-53 0-86 34t-33 83q0 48 33 82zm80 937q-32 34-87 34-54 0-88-33.5t-34-82.5 34-82 88-33q53 0 86 33.5t33 81.5-32 82z" + }, + "children": [] + }] +}; +exports.u1F521 = u1F521; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F522.js b/dist/noto_emoji_regular/u1F522.js new file mode 100644 index 000000000..5d2e3ce89 --- /dev/null +++ b/dist/noto_emoji_regular/u1F522.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F522 = void 0; +var u1F522 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2239 1408v938h-939v-938h939zm-1879 0V471h939v937H360zm1718 583q0-5-4-8t-8-3h-126v-465q0-3-4-6.5t-7-3.5h-162q-3 0-8 3v1l-309 476q-2 2-2 6v129q0 5 3.5 8t7.5 3h297v132q0 4 3.5 6.5t7.5 2.5h162q11 0 11-9v-132h126q4 0 8-3t4-8v-129zM1478 712q0-2-1-6 0-22 100.5-89t202.5-67q95 0 177.5 72t82.5 175q0 111-98.5 202T1751 1148h286q11 0 11 12v146q0 13-11 13h-500q-11 0-11-13v-153q0-11 65.5-48.5t148-118T1822 842q0-41-27.5-66.5T1733 750t-75 20-89 62l-10 3-8-5zm-478 1170q53 28 84 76.5t31 105.5q0 101-81.5 167.5T840 2298q-74 0-142.5-31T586 2198t-43-49l2-7 72-104 8-4 9 3q29 27 82 53t95 26q37 0 64-25.5t27-60.5q0-34-38-58.5t-60.5-28.5-22.5-16v-90q0-12 23-17t63.5-33 40.5-65q0-33-24-58t-56-25q-31 0-68.5 17.5T697 1693l-15 11-8 2-8-4-71-104q-3 0-3-5 0-18 78.5-65.5T849 1480q103 0 178.5 69.5T1103 1705q0 48-26.5 94t-76.5 83zm-5-713q0-5-2.5-8.5t-7.5-3.5h-56V573l-4-6-10-3-242 52q-8 2-8 11v142l4 10 9 1 73-20v397h-56q-5 0-8 3.5t-3 8.5v136q0 11 11 11h290q10 0 10-11v-136zm646 811l115-179v179h-115z" + }, + "children": [] + }] +}; +exports.u1F522 = u1F522; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F523.js b/dist/noto_emoji_regular/u1F523.js new file mode 100644 index 000000000..be2f834ff --- /dev/null +++ b/dist/noto_emoji_regular/u1F523.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F523 = void 0; +var u1F523 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M360 1409V471h939v938H360zm1879 0v937h-939v-937h939zm-1029 610.5q-42 56.5-122 56.5-38 0-70.5-14.5T962 2019q-28 33-68.5 52.5T799 2091q-91 0-149.5-57T591 1889q0-87 58-145t150-58q32 0 58.5 7t49.5 19v-11q0-8 8-8h107q10 0 10 8v142q0 49 14.5 78t41.5 29q19 0 28.5-14.5t9.5-42.5q0-133-78.5-214T829 1598q-130 0-213 80t-83 205 83 205 213 80q112 0 188-56l74 101q-54 41-120.5 61T829 2294q-184 0-302.5-117T408 1883t119.5-294.5T829 1471q191 0 307 117.5t116 302.5q0 72-42 128.5zm893.5-112.5q-48.5-50-127.5-50-44 0-80 17l178-280v-8l-8-6h-162l-8 6-151 229q0-5 1-8t1-6q0-76-49.5-123.5T1571 1630t-126.5 47.5T1395 1801t49.5 123.5T1571 1972q24 0 45.5-5.5t39.5-14.5l-161 246v11l7 4h171l8-4 119-186q0 78 49 126.5t127 48.5 127-49 49-121q0-71-48.5-121zm-598-871q66.5-54 160.5-54 29 0 55.5 6t49.5 18l-5-402q0-16 10.5-28t27.5-12q96 0 176 44t118.5 106.5 43 105T2171 877l13 8q6 5 11 10.5t5 12.5q0 13-16 22t-41 9q-49 0-105-65t-191-65l4 299q0 90-78.5 152.5T1610 1323q-68 0-119.5-44.5T1439 1167q0-77 66.5-131zM1152 902q0-9-11-9H519q-12 0-12 9v126q0 13 12 13h232v249q0 11 11 11h135q11 0 11-11v-249h233q11 0 11-13V902zm0-253q0-11-11-11H519q-12 0-12 11v126q0 9 12 9h622q11 0 11-9V649zM870 1823q-26-27-71-27t-70.5 27-25.5 66q0 38 25.5 65.5T799 1982t71-27.5 26-65.5q0-39-26-66zm751.5 25.5Q1603 1868 1571 1868t-50.5-19.5-18.5-47.5q0-29 18.5-48.5t50.5-19.5 50.5 19.5 18.5 48.5q0 28-18.5 47.5zm405 227.5q-18.5 20-50.5 20t-50.5-20-18.5-48q0-29 18.5-48.5t50.5-19.5 50.5 19.5 18.5 48.5q0 28-18.5 48z" + }, + "children": [] + }] +}; +exports.u1F523 = u1F523; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F524.js b/dist/noto_emoji_regular/u1F524.js new file mode 100644 index 000000000..e5335f894 --- /dev/null +++ b/dist/noto_emoji_regular/u1F524.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F524 = void 0; +var u1F524 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2429 1614v937h-939v-659H831v-659H171V294h939v659h659v661h660zm-1054 143q88 0 150.5-57t62.5-134q0-48-24-88.5t-65-66.5q28-26 43.5-60t15.5-72q0-80-63-135t-150-55h-241q-5 0-9.5 3.5t-4.5 10.5v639q0 8 4.5 11.5t9.5 3.5h271zm-422-663q5 0 9.5-4t4.5-9v-6L727 440q-2-9-12-9H566q-10 0-14 9l-238 635q0 2-1 2t-1 2q0 15 15 15h156q13 0 14-9l36-108h214l37 108q0 9 13 9h156zm1316 1247l-68-141-5-4-7 1q-30 24-79 42.5t-92 18.5q-79 0-130-49t-51-127 50.5-126 130.5-48q43 0 84 12.5t69 34.5l7 2 6-4 75-145-1-9q-48-38-107-55.5t-134-17.5q-159 0-263.5 102.5T1649 2082q0 154 104.5 255t263.5 101q143 0 250-87zm-927-863q29 0 49.5 22.5t20.5 55.5q0 32-20.5 55t-50.5 23h-94l-3-4v-149l3-3h95zm-95-127l-5-3v-129l5-3h89q26 0 45 19.5t19 47.5q0 29-19 48.5t-45 19.5h-89zM641 655l62 186H578z" + }, + "children": [] + }] +}; +exports.u1F524 = u1F524; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F525.js b/dist/noto_emoji_regular/u1F525.js new file mode 100644 index 000000000..39bf088fe --- /dev/null +++ b/dist/noto_emoji_regular/u1F525.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F525 = void 0; +var u1F525 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1965 1042q2 0 10-2l18-3q10 0 22-1.5t24-1.5q14 0 24.5 2.5t10.5 10.5l-2 10q-1 3-52 22.5t-87.5 76T1896 1307q0 107 56 282t56 289q0 170-104 315.5T1620.5 2427t-358.5 88q-171 0-332.5-85.5t-257-229.5-95.5-311q0-133 65-346t65-325q0-89-36-146t-109-80l-11-2q-10-2-18-7t-8-15q0-14 28-22.5t54-8.5q100 0 169.5 74t79 135 30.5 61q7 0 14.5-7.5T916 1178l5-10q122-191 287.5-334T1459 564.5t85-248.5q0-60-21.5-120.5t-43-86.5-21.5-38q0-8 11-8 46 0 133 94t122 212.5 35 244.5q0 133-32.5 264.5T1659 1101t-35 148q0 37 14 57.5t42 20.5q53 0 94.5-126.5T1965 1042zm-585.5 865.5q34.5-61.5 53.5-106t19-128.5q0-70-20-137t-58-116.5-49-49.5q-6 0-6 11 0 10 4 18l6 17q3 9 5 18.5t2 21.5v13q-2 26-29.5 83t-138 164.5T1019 1900t-39 160q0 135 89.5 237t229.5 102q128 0 240-88t112-212q0-53-29-102t-49-49q-4 0-4 8 0 10 3.5 19t3.5 18q0 41-47 82t-96 41q-37 0-62.5-26t-25.5-67q0-54 34.5-115.5z" + }, + "children": [] + }] +}; +exports.u1F525 = u1F525; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F526.js b/dist/noto_emoji_regular/u1F526.js new file mode 100644 index 000000000..b3cffd8f1 --- /dev/null +++ b/dist/noto_emoji_regular/u1F526.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F526 = void 0; +var u1F526 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M683.5 1453q-195.5-78-326-199.5T227 950q2-172 109-338.5t294.5-276T1014 226q165 0 285 81t190.5 278 70.5 393q0 43-3.5 84.5t-7.5 61.5-7.5 35.5-36.5 75-84.5 111.5-150.5 108-155 67l-57 10q-179 0-374.5-78zM423 1187q105 94 265 94 162 0 324.5-90.5t266-243T1382 650q0-149-103.5-240.5T1014 318q-168 0-329.5 91t-264 240T318 948q0 145 105 239zm1452 1164l-749-752q111-12 220.5-79t177-151.5T1606 1224l619 822q8 26 8 53 0 96-91.5 181.5T1947 2366q-41 0-72-15zm-875-1237q-77 37-153 37-93 0-151-54t-58-136q0-122 118-233t256-111q93 0 152 53.5t59 138.5q0 41-15 83.5t-44 84.5q-2-52-41-90.5t-92-38.5q-54 0-94.5 39.5T896 983q0 48 29.5 85t74.5 46zm1343 1089q30 38 30 88 0 87-80 165.5t-172 78.5q-32 0-59.5-12t-49.5-33l-75-76q112 0 212-75t132-219z" + }, + "children": [] + }] +}; +exports.u1F526 = u1F526; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F527.js b/dist/noto_emoji_regular/u1F527.js new file mode 100644 index 000000000..2b796cd19 --- /dev/null +++ b/dist/noto_emoji_regular/u1F527.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F527 = void 0; +var u1F527 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2273 2134.5q-7 27.5-19 27.5-17 0-79-54.5t-115-54.5h-19l-20 2q-3 0-35.5 4.5T1953 2102v23q0 60 10 81.5t73.5 63.5 63.5 65q0 30-39.5 47.5T1956 2402l-18 1q-45 0-88.5-18.5t-77-48-54.5-65-28-78-22-86.5-41-70l-52-55-185-191-101-103q-74-76-134-135t-133-59h-7q-25 6-66 8.5t-85 2.5q-277 0-410.5-151.5T320 985q0-91 17-120.5t33-29.5q12 0 27 11l26 19q54 46 94 77.5t98 78.5 90 47q23 0 98-23t106-33.5 31-43.5v-53q0-98-9.5-139.5T827 652l-64-59h-1q-66-60-80.5-74.5T667 488q0-31 67-47.5T882 424q130 0 255 72.5T1323.5 698t61.5 319q0 115 10.5 155.5t21 65T1522 1375l25 31 320 366q37 35 149 33.5t188 79 76 192.5q0 30-7 57.5zM1445 1669q39 36 136 133t106.5 102 18.5 5q16 0 36.5-22.5t20.5-39.5q0-22-39-64t-50-55l-60-70-62-70q-37-42-112.5-136.5T1334 1357q-28 0-55.5 37.5T1251 1448q0 32 45 73.5t49.5 48 44.5 45.5z" + }, + "children": [] + }] +}; +exports.u1F527 = u1F527; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F528.js b/dist/noto_emoji_regular/u1F528.js new file mode 100644 index 000000000..446410350 --- /dev/null +++ b/dist/noto_emoji_regular/u1F528.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F528 = void 0; +var u1F528 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1665 827q2 26 2 55 0 31-19 60t-53 46l583 1292q9 18 9 39 0 56-56 105t-128 49q-36 0-64.5-15t-42.5-43l-634-1259-4 3q-60 26-87 26-30 0-60-15t-47-15q-10 0-22 8t-26 35l-23 44q-26 50-35 60.5t-41 26.5l-60 31-113 57q-16 7-31 11.5t-31 4.5q-29 0-54-14t-38-39L332 869q-10-19-10-40 0-31 18.5-60.5T393 722l184-93q29-14 63.5-23t69.5-9q23 0 43 3.5t40 3.5q34 0 80.5-16.5T951 551l7-3q-18-23-25.5-43.5T925 470q0-30 34-60t83-53l50-23q38-17 77.5-29t81.5-12q41 0 58.5 16t27.5 49q69-31 154-50t186-19q134 0 250 34.5t189 81 87.5 59.5 14.5 36q0 35-44.5 68T2056 601q-36 0-96-13t-100-13q-95 0-146 45t-51 154q0 27 2 53z" + }, + "children": [] + }] +}; +exports.u1F528 = u1F528; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F529.js b/dist/noto_emoji_regular/u1F529.js new file mode 100644 index 000000000..8aec7724f --- /dev/null +++ b/dist/noto_emoji_regular/u1F529.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F529 = void 0; +var u1F529 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2429 822q7 6 13 16.5t6 21.5v444q0 12-8 25.5t-21 19.5l-590 288q-8 5-21 5-15 0-27-8l-144-85-129 59 4 6q3 4 4.5 8.5t1.5 14.5q0 6-1 11.5t-3 10.5l-198 445q-4 8-10 15t-14 11l-339 156q-2 2-10 4t-12 2l-483-60q-25-4-37-25l-251-421q-8-13-8-24 0-7 3-15l153-524q5-14 15-23t22-12l4-3 359-159q8-3 16-4h14l489 87 159-67-2-111q0-22 19-37l330-250 7-4 8-3 295-98q3 0 8-1 8 0 16.5 4t14.5 9zM566 2144l276 35q41 0 56-12t31-44l116-268q11-24 11-52 0-20-4.5-35t-11.5-30l-176-319q-20-39-46.5-51.5T756 1349l-326-50q-20 0-29 4t-20 27l-99 340q-11 35-11 55 0 23 6 46.5t19 44.5l153 259q19 35 43.5 49.5T566 2144zm1538-751V986l-340-238-279 212v41l113-48q28-11 59-18.5t58-7.5q120 0 199 79t79 195q0 99-55.5 168t-127.5 99l-63 29 63 37zm-912-171l-256 115 212 392 251-115zm97-30l167 316q8-23 13.5-45t5.5-45q0-82-28.5-131.5T1418 1229q0-7 4-12t14-5q45 0 82 65t37 130q0 7-1 18l-2 22q-2 12-4.5 22t-6.5 13l48-22q13-25 18-52.5t5-55.5q0-38-6.5-62t-6.5-28q-4-10-11-25l-26-53q-6-11-6-16 0-16 22-16 43 0 79 68t36 131q0 35-12 65l49-22q10-20 16-44t6-54q0-48-18-97t-28.5-65-10.5-27q0-6 4-10.5t15-4.5q49 0 83.5 67t34.5 130q0 14-3 26t-3 23q38-30 52.5-62.5t14.5-74.5q0-64-45-119t-115-55q-44 0-67.5 8.5T1618 1053zm585-491l288 202 137-55-258-203zM736 1125l-202 89 325 48 186-84z" + }, + "children": [] + }] +}; +exports.u1F529 = u1F529; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F52A.js b/dist/noto_emoji_regular/u1F52A.js new file mode 100644 index 000000000..343f4150a --- /dev/null +++ b/dist/noto_emoji_regular/u1F52A.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F52A = void 0; +var u1F52A = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2282 699q-51 54-173 65t-196 152-179.5 218-175.5 77q-47 0-73.5 10t-26.5 37l135 248q6 11 8.5 24t2.5 24q0 25-10.5 46t-30.5 35L423 2417q-27 18-56 18-48 0-74-30.5T267 2276q0-204 85-380t335-428 475-431l33-26q5-6 15-11l172-151 215-186 124-106q90-77 185-128t189-51q90 0 164 56.5t74 139.5q0 71-51 125zM366 2276q6 34 27 34 16 0 36.5-15t40.5-29l989-679q12-13 21.5-20.5t9.5-27.5q0-8-2-13.5t-3-11.5l-193-355-19-33q-9-16-28-17-10 0-18.5 2.5t-156.5 130-314 297T514 1817t-112 220-36 239zM1564 969.5q-15-17.5-46-17.5-19 0-34 13t-15 42q0 22 14.5 38.5t42.5 16.5q25 0 39-18t14-38q0-19-15-36.5zm368.5-326Q1917 626 1886 626q-18 0-33.5 13.5T1837 680q0 21 15 38t41 17 40.5-17.5T1948 680q0-19-15.5-36.5zm271.5-177q-56-33.5-134-33.5-18 0-46 7.5t-28 18.5q0 13 73.5 43.5T2169 599l4 16q4 17 11.5 26.5t18.5 9.5q18 0 37.5-29.5T2260 559q0-59-56-92.5z" + }, + "children": [] + }] +}; +exports.u1F52A = u1F52A; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F52B.js b/dist/noto_emoji_regular/u1F52B.js new file mode 100644 index 000000000..c7f91e2d8 --- /dev/null +++ b/dist/noto_emoji_regular/u1F52B.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F52B = void 0; +var u1F52B = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2395 1963q6 23 6 41 0 58-43 90t-63 32l-422 49q-25 0-38-23l-201-408q-35-71-86-109.5t-125-38.5h-218l-19-2q-96-8-165.5-76.5T951 1301q0-31-21-56.5t-58-39.5H253q-27 0-43.5-16.5T190 1149v-133q-12-25-22-62t-10-78q0-48 18.5-88.5T232 719v-23q0-8 6.5-14.5T253 675h131q8 0 13.5 6.5T403 696v15h1496v-29q0-8 6-13.5t14-5.5h67q19 0 19 19v29h77q9 0 16 8l14 19q7 11 16.5 20.5T2153 770q6 0 15-2l35-7q7 0 10-1 17 0 29 12t12 33q0 17-10 26t-17 29.5-23 49.5l-37 64 30 119 51 17q49 18 76.5 40.5t27.5 50.5-18.5 41.5-75.5 16.5q-29 0-58 28t-29 88q0 27 6 53.5t14 46.5zm-1190-454h177q107 0 150.5-31.5T1576 1368q0-58-9.5-85t-45-48-91.5-30q5 20 9 43t4 49q0 51-21.5 109t-57.5 58q-19 0-29.5-12.5T1324 1424q0-9 19-45t19-85q0-28-5.5-50.5T1343 1205h-175q-59 10-91 34.5t-38 47.5l-3 14q0 110 48 159t121 49z" + }, + "children": [] + }] +}; +exports.u1F52B = u1F52B; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F52C.js b/dist/noto_emoji_regular/u1F52C.js new file mode 100644 index 000000000..4d272e24a --- /dev/null +++ b/dist/noto_emoji_regular/u1F52C.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F52C = void 0; +var u1F52C = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1915.5 2454.5Q1789 2570 1655 2637t-269 67l-22-1q-61-2-89-35t-28-72q0-48 27-89t137.5-75 169.5-77.5 59-92.5q0-18-12-34t-29-16q-8 0-17 2t-17 2q-14 0-31-5t-30-13l-7 2q-20 100-111.5 166t-202.5 66q-63 0-119-21.5t-94-61.5q-4 2-7 3l-7 2q-24 8-44 22l-41 29q-21 14-42.5 24.5T781 2440q-46 0-77-31t-31-83q0-67 50-123t193-114q8-17 18.5-36t24.5-33l-238-89-87-32-51-18q-61-20-61-44l3-78q0-17 7-21l175-124q-24-14-49-53t-25-60q0-16 12-28l152-149q-6-30-6-58 0-26 3.5-50.5T809 1160l217-620q10-28 44-28 8 0 18 1l119-335q-3-10-3-18 0-26 22-40.5t60-14.5q89 0 224 55t135 116q0 20-11.5 31t-29.5 18l-116 325 19 11q18 12 29.5 26t11.5 29q0 6-2 14l-34 99q205 130 312 306t107 393q0 61-7.5 115.5T1905 1743q30 27 51 79.5t21 85.5q0 51 32.5 114.5T2042 2197q0 142-126.5 257.5zM1245 1016q40 43 98 43 61 0 102-46.5t41-108.5q0-57-41.5-100t-95.5-43q-59 0-101.5 46.5T1205 914q0 59 40 102zm-374 262q0 51 29 94.5t84 63 98 19.5q39 0 75-18t61-55q-92-2-177-28t-170-76zm509 900l-350-132q-23 23-35 51t-12 57q0 62 52 109t133 47q61 0 116.5-28.5t85.5-80.5zm266-313q5-5 5-10 0-19-35.5-31t-58.5-21l-96-36-110-40-106-37v14q0 29-40 47t-84 18q-48 0-76-13t-30-39l-9-111q-7-2-12-4l-9-4q-4-2-8-2-2 0-8-1.5t-13-1.5q-11 0-24.5 4t-30.5 16l-154 116q-3 2-5.5 5.5t-2.5 9.5q0 5 3.5 12.5T759 1769l657 248q25 9 45 9 19 0 31-5.5t19-12.5zm-173-209q37-62 52.5-119t15.5-109q0-85-35.5-165t-94.5-143l-88 251q-5 18-22 24-8 18-21 36.5t-30 35.5l-3 109 112 39zM1170 533l238 89 104-290-20-8q-49-10-108.5-30T1273 243zm-5 986q-18 8-39 11t-40 3l11 149q5 0 11 1t13 1q11 0 17.5-1t22.5-5zm-446-8q6 10 18 24.5t32 23.5l112-93q-17-14-30-29t-23-32z" + }, + "children": [] + }] +}; +exports.u1F52C = u1F52C; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F52D.js b/dist/noto_emoji_regular/u1F52D.js new file mode 100644 index 000000000..2295571af --- /dev/null +++ b/dist/noto_emoji_regular/u1F52D.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F52D = void 0; +var u1F52D = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2347.5 949q-53.5 101-150.5 149l-264 128q-28 14-57.5 18t-61.5 4q-43 0-87-11l-405 178q25 11 40.5 33.5t15.5 51.5v103q0 21-9 39t-24 31l334 550q5 8 6.5 15.5t1.5 15.5q0 22-12 37l191 315q7 11 7 26 0 19-14.5 34t-34.5 15q-28 0-42-24l-193-318q-37 0-54-29l-303-501v423q0 16-7.5 29t-19.5 21v297q0 21-14.5 35t-34.5 14-34.5-14-14.5-35v-293q-34-16-34-54v-411l-268 506q-8 15-21 21.5t-30 10.5l-174 330q-7 12-18.5 18.5T536 2714q-22 0-35.5-14.5T487 2665q0-12 6-23l172-326q-15-16-15-40 0-15 7-28l299-565q-21-12-34-33t-13-47v-7l-34 15q-20 8-41.5 11.5T790 1626l-116 51q-39 13-75 13-44 0-84.5-16.5T440 1625l-84 36q-15 6-30 6-41 0-73-36.5t-32-85.5q0-23 8.5-44.5T258 1462l80-58q0-5-1-10v-10q0-34 7.5-67t24.5-64q-32-17-51-49.5t-19-69.5q0-26 9.5-50.5T338 1043l417-333q23-18 47.5-24.5T850 679q45 0 78.5 24.5T976 770l351-255q20-74 58.5-126.5T1498 285l152-105q74-51 122-67.5T1875 96q128 0 252 87t199 233.5 75 300.5q0 131-53.5 232zM849 858q21-15 29-26t8-19q0-11-9-23.5T850 777q-9 0-18.5 2.5T816 787l-352 280q0 13 5.5 23t20.5 25zm725 309q-113-83-182.5-206.5T1309 683l-630 457q-29 26-43 61t-14 72q0 93 53 160t120 67q16 0 36-6zm574-791.5Q2020 222 1875 222q-106 0-169 83.5T1643 519q0 172 123 332t278 160q101 0 166.5-81t65.5-211q0-190-128-343.5zm25.5 508.5q-31.5 50-76.5 50-18 0-27.5-11t-9.5-22q0-13 25-53.5t25-103.5q0-50-13-91.5t-13-58.5q0-19 8.5-33.5T2124 546q37 0 59 69.5t22 141.5q0 77-31.5 127z" + }, + "children": [] + }] +}; +exports.u1F52D = u1F52D; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F52E.js b/dist/noto_emoji_regular/u1F52E.js new file mode 100644 index 000000000..1220f752f --- /dev/null +++ b/dist/noto_emoji_regular/u1F52E.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F52E = void 0; +var u1F52E = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2231.5 2307q-149.5 87-352.5 129t-553 42q-225 0-488.5-29t-441-126.5T219 2179q0-25 40.5-48t70.5-73 96-104.5T634 1837l19-10q9-4 18-7-119-119-186-278t-67-334q0-237 120.5-441t327-320T1307 331t441.5 116.5 326.5 320 120 440.5q0 173-67.5 333T1937 1824q184 81 244.5 135t89.5 100.5 69.5 71 40.5 48.5q0 41-149.5 128zm-271-839q-17.5-15-42.5-15-56 0-140 94t-122 128.5-129 78.5-229.5 48.5T1159 1841q0 23 71 38t141 15q145 0 281.5-54t231-148 94.5-176q0-33-17.5-48zm-948-212.5q97.5 58.5 199 77.5t195.5 19q128 0 270.5-50t223-138.5T1981 959q0-136-96.5-257t-260-196.5T1305 430q-313 0-527.5 224.5T563 1219q0 101 15.5 136t46.5 35q40 0 69-67t64.5-96.5T848 1197q67 0 164.5 58.5zm-551.5 894q24 14.5 70 14.5 55 0 98-4.5t91-4.5q26 0 51 1t51 5l217 38q108 19 220 19 202 0 408-47t289-47q38 0 78 5.5t76 5.5q18 0 35-11.5t17-29.5q0-25-49.5-63t-111-70.5T1853 1898q-86 66-183 110-8-2-16-3l-18-2q-78-11-155.5-16.5T1323 1981q-90 0-178.5 9T968 2019q-57-24-110.5-54.5T756 1896q-74 19-196.5 86.5T437 2109q0 26 24 40.5z" + }, + "children": [] + }] +}; +exports.u1F52E = u1F52E; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F52F.js b/dist/noto_emoji_regular/u1F52F.js new file mode 100644 index 000000000..a7f49da3a --- /dev/null +++ b/dist/noto_emoji_regular/u1F52F.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F52F = void 0; +var u1F52F = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2254 1882q6 9 8.5 19.5t2.5 21.5q0 33-23.5 55.5T2187 2001h-547l-273 456q-23 38-67 38-20 0-38.5-9.5T1232 2457l-272-456H412q-31 0-54.5-22.5T334 1923q0-22 11-41l273-458-273-458q-11-19-11-39 0-33 23-55.5t55-22.5h548l272-458q11-19 29.5-28.5t38.5-9.5q44 0 67 38l273 458h547q31 0 54.5 22.5T2265 927q0 10-2.5 20t-8.5 19l-272 458zm-522-876l159 265 157-265h-316zm-182 0h-501l-247 418 247 419h501l249-419zm-407-157h313l-156-265zm-433 422l157-265H551zm157 572l-157-266-159 266h316zm589 158h-313l157 263zm592-158l-157-266-159 266h316zm-582.5-244.5Q1397 1668 1300 1668t-166-69.5-69-164.5q0-97 69-166.5t166-69.5 165.5 69.5T1534 1434q0 95-68.5 164.5z" + }, + "children": [] + }] +}; +exports.u1F52F = u1F52F; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F530.js b/dist/noto_emoji_regular/u1F530.js new file mode 100644 index 000000000..e758b23b5 --- /dev/null +++ b/dist/noto_emoji_regular/u1F530.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F530 = void 0; +var u1F530 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2058 592v1126q0 62-31 132.5t-76 111.5l-517 471q-26 25-61 38t-73 13-73.5-13-61.5-38l-516-471q-46-42-77-113t-31-131V592q0-64 33.5-100.5T656 455q18 0 44 8t55 34l516 475q10 9 28 9t30-9l515-475q29-26 55-34t44-8q48 0 81.5 36.5T2058 592zm-758 547q-38 0-73.5-13t-61.5-38L699 661v1057q0 31 17.5 70t38.5 58l515 471q6 5 14 7t16 2V1139z" + }, + "children": [] + }] +}; +exports.u1F530 = u1F530; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F531.js b/dist/noto_emoji_regular/u1F531.js new file mode 100644 index 000000000..ec95e988b --- /dev/null +++ b/dist/noto_emoji_regular/u1F531.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F531 = void 0; +var u1F531 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2140 874l76 43q72 41 122 87.5t50 84.5q0 26-24.5 49.5T2296 1165l-28 2q-23 2-47.5 18t-24.5 46q0 8 2 16l4 18q15 73 28.5 142.5T2244 1557q0 211-119.5 372.5T1813 2133l-40 6q-44 6-78.5 20.5T1659 2227t-34 85.5-98 37-82.5 17-47.5 66.5l-15 30q-14 30-31.5 49.5T1314 2533l-15 2-15-2q-42-3-78-87t-99-91l-38-4q-29-2-52.5-11.5t-38-22.5-26-33.5T941 2243t-7-46.5-37-38-31-11.5l-47-8-35-6q-188-41-308.5-204T355 1555q0-106 24-202.5t24-120.5q0-31-24-47t-48-18l-28-2q-44-3-68-26.5t-24-47.5q0-75 224.5-202.5T656 763l53-29q29-16 57-16 22 0 39 12t17 32q0 33-69 162.5T647 1225t-37 355q0 99 72.5 169.5T851 1820q41 0 86.5-22t84-67 77.5-205.5 41-393.5q0-80-23.5-117.5T1049 977q-21 0-42.5 11T965 999q-21 0-35.5-11T915 958q0-127 127.5-315t163-247 93.5-59q53 0 96.5 64.5t165 254.5T1682 958q0 17-13.5 29t-36.5 12q-21 0-42-11t-43-11q-44 0-66.5 36t-22.5 119q0 174 40 376.5t113.5 257T1748 1820q96 0 169.5-72.5T1991 1580q0-135-31.5-317T1830 892l-17-31q-17-31-26.5-55.5T1777 761q0-19 17-31t39-12q29 0 84 29t102 56zm-625 1271.5q-28-13.5-113-13.5-50 0-76.5 2.5t-53.5 0-77-2.5q-89 0-115 15.5t-26 51.5q0 44 45.5 63t182.5 19h9.5l7.5-1q5 0 17 1 101 0 164-13t63-69q0-40-28-53.5z" + }, + "children": [] + }] +}; +exports.u1F531 = u1F531; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F532.js b/dist/noto_emoji_regular/u1F532.js new file mode 100644 index 000000000..f91d1ce90 --- /dev/null +++ b/dist/noto_emoji_regular/u1F532.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F532 = void 0; +var u1F532 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2222 400q47 0 79.5 33t32.5 78v1845q0 45-33.5 78t-78.5 33H377q-45 0-78-32t-33-79V511q0-47 32-79t79-32h1845zM751 1995q19 13 41 13h1015q28 0 48-19.5t20-47.5V925q0-14-4.5-26.5T1856 877l-179 182q14 14 21.5 32.5t7.5 38.5v606q0 43-31 72.5t-72 29.5H997q-18 0-35.5-6.5T931 1814zM2093 620q-12-9-27.5-14.5T2033 600H566q-42 0-70.5 28.5T467 698v1469q0 21 7.5 38.5T496 2237l214-216q-33-33-33-80V925q0-49 35-82.5t80-33.5h1015q22 0 39.5 7.5T1880 835z" + }, + "children": [] + }] +}; +exports.u1F532 = u1F532; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F533.js b/dist/noto_emoji_regular/u1F533.js new file mode 100644 index 000000000..b230429f8 --- /dev/null +++ b/dist/noto_emoji_regular/u1F533.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F533 = void 0; +var u1F533 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2223 400q47 0 79 33t32 78v1845q0 45-33 78t-78 33H377q-45 0-78-33t-33-78V511q0-45 32-78t79-33h1846zm33 111q0-14-10-23.5t-23-9.5H377q-14 0-23 9.5t-9 23.5v1845q0 14 9 23.5t23 9.5h1846q13 0 23-9.5t10-23.5V511zm-175 122q26 22 42.5 54t16.5 69v1354q0 65-47.5 113t-115.5 48H623q-34 0-63.5-12.5T507 2223l201-204q-30-32-30-78V925q0-46 34-81t81-35h1015q21 0 38.5 7t33.5 19zm-273 1377q28 0 48.5-20.5t20.5-48.5V925q0-29-21-48l-179 183q14 14 21.5 32t7.5 38v606q0 43-31 72.5t-72 29.5H997q-37 0-66-24l-180 181q9 6 20 10.5t22 4.5h1015zm-179-880q0-14-9-20t-17-6H997q-10 0-18 7.5t-8 18.5v606q0 11 8 18.5t18 7.5h606q11 0 18.5-7.5t7.5-18.5v-606z" + }, + "children": [] + }] +}; +exports.u1F533 = u1F533; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F534.js b/dist/noto_emoji_regular/u1F534.js new file mode 100644 index 000000000..ad5df84eb --- /dev/null +++ b/dist/noto_emoji_regular/u1F534.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F534 = void 0; +var u1F534 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2103 1872.5q-121 215.5-337 343T1299 2343q-236 0-448.5-115t-344-334.5T375 1418q0-246 126-463t338-339 460-122q253 0 472 131t336 347 117 446q0 239-121 454.5zM600 1825v-813q-54 91-82.5 193T489 1418q0 112 28.5 214t82.5 193zm77 111q51 62 111 111V790q-59 48-111 110v1036zm189 165q27 18 55 32.5t57 28.5V675q-29 13-57 27.5T866 734v1367zm189 89q28 10 55.5 16t56.5 11V619q-29 5-56.5 11.5T1055 647v1543zm303 36V611q-16 0-30-1.5t-29-1.5q-14 0-27 1.5t-27 1.5v1615q14 0 27 1.5t27 1.5q15 0 29-1.5t30-1.5zm75-9q29-5 57.5-12t54.5-16V647q-26-8-54.5-15t-57.5-12v1597zm191-57q59-26 112-61V737q-27-17-55-32.5t-57-27.5v1483zm189-116q31-25 58.5-53t53.5-59V905q-26-31-53.5-59t-58.5-53v1251zm190-225q51-90 78-190.5t27-210.5q0-109-27-210t-78-190v801z" + }, + "children": [] + }] +}; +exports.u1F534 = u1F534; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F535.js b/dist/noto_emoji_regular/u1F535.js new file mode 100644 index 000000000..73428a9bb --- /dev/null +++ b/dist/noto_emoji_regular/u1F535.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F535 = void 0; +var u1F535 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2223 1390q0 14 1 28 0 246-124.5 459.5t-340.5 339-460 125.5q-254 0-470-131.5T494 1872t-119-454q0-240 127-458t340-342.5T1299 493q234 0 443 115t337 315 142 440zM893 718h811q-90-53-191.5-81T1299 609t-214 28-192 81zm-111 77q-61 51-112 112h1258q-26-31-53-58.5t-58-53.5H782zM615 985q-33 54-60 111h1488q-13-29-28-56.5t-33-54.5H615zm-89 189q-8 27-14.5 55.5T500 1287h1598q-11-60-27-113H526zm1173 947H899q89 51 190 79t210 28q110 0 210.5-28t189.5-79zm114-77q61-51 112-112H673q51 61 112 112h1028zm167-190q17-27 32.5-55t28.5-57H558q12 29 27.5 57t32.5 55h1362zm90-189q9-27 16-55.5t12-57.5H501q5 29 12 57.5t16 55.5h1541zm36-189l2-29v-57l-2-27H492l-2 27q0 14-1 28 0 14 1 29l2 29h1614z" + }, + "children": [] + }] +}; +exports.u1F535 = u1F535; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F536.js b/dist/noto_emoji_regular/u1F536.js new file mode 100644 index 000000000..c186ea525 --- /dev/null +++ b/dist/noto_emoji_regular/u1F536.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F536 = void 0; +var u1F536 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2250 1388q17 19 17 41 0 23-17 40l-910 912q-17 15-41 15-25 0-40-15l-911-912q-16-15-16-40 0-24 16-41l911-911q15-16 40-16t41 16zM1170 728h258l-111-113h-36zM980 917h638l-112-113h-414zm-188 189h1015l-112-112H903zm-191 190h1395l-111-112H714zm827 835h-258l111 112h36zm190-189H980l112 111h414zm189-191H792l111 112h792zm189-189H601l113 112h1171zm133-133l-56-56H525l-56 56 56 56h1548z" + }, + "children": [] + }] +}; +exports.u1F536 = u1F536; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F537.js b/dist/noto_emoji_regular/u1F537.js new file mode 100644 index 000000000..bb73887c6 --- /dev/null +++ b/dist/noto_emoji_regular/u1F537.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F537 = void 0; +var u1F537 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2250 1389q17 17 17 40 0 24-17 41l-910 910q-16 17-41 17-11 0-21.5-4t-18.5-13l-911-910q-16-17-16-41 0-25 16-40l911-912q15-15 40-15t41 16zm-228-68l-79-79-54 54 80 78zm-589 53l80-78-80-80-79 80zm-134-25l-80 80 80 79 79-79zm79-187l-79-80-80 80 80 78zm-212 54l-80 80 80 78 78-78zm-134 133l-80 80 80 79 78-79zm54 214l80 80 78-80-78-79zm133 133l80 79 79-79-79-78zm214-53l80-80-80-79-79 79zm133-135l79-79-79-80-78 80zm134-134l80-78-80-80-78 80zm-55-212l-79-80-78 80 78 78zm-132-135l-80-79-79 79 79 80zm-135-134l-79-78-80 78 80 80zm-212 55l-80 79 80 80 78-80zm-134 134l-80 80 80 78 78-78zm-135 134l-79 80 79 78 80-78zm-134 133l-78 80 78 79 80-79zm55 214l79 80 80-80-80-79zm134 133l80 79 78-79-78-78zm134 134l80 80 78-80-78-78zm133 134l80 80 79-80-79-79zm214-54l80-80-80-78-79 78zm133-135l79-79-79-78-78 78zm134-132l80-80-80-79-78 79zm134-135l80-79-80-80-79 80zm54-322l-80-78-53 54 79 78zm-134-133l-78-79-54 53 78 80zm-135-134l-78-79-53 53 78 80zm-132-134l-80-80-53 54 79 79zm-135-133l-53-53-54 53 54 53zm-161 53l-79 80 54 53 78-79zm-135 135l-78 79 54 54 78-80zM923 974l-79 79 53 54 80-80zm-134 134l-79 78 53 54 80-78zm-133 134l-81 79 54 53 79-78zm-134 133l-53 54 53 53 53-53zm53 162l81 80 52-54-79-79zm135 134l79 78 54-53-80-78zm134 135l79 78 54-54-80-78zm134 132l78 80 54-54-78-79zm134 135l79 79 53-53-78-80zm133 133l54 53 53-53-53-52zm162-54l80-79-54-54-79 80zm134-134l78-80-53-53-78 79zm135-134l78-78-54-54-78 78zm132-135l80-78-54-53-79 78zm135-132l79-80-53-53-80 79zm133-135l53-53-53-54-52 54z" + }, + "children": [] + }] +}; +exports.u1F537 = u1F537; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F538.js b/dist/noto_emoji_regular/u1F538.js new file mode 100644 index 000000000..a20358124 --- /dev/null +++ b/dist/noto_emoji_regular/u1F538.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F538 = void 0; +var u1F538 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1771 1404q11 13 11 27 0 16-11 29l-445 442q-4 7-11 9t-15 2-15-2-14-9l-443-442q-11-13-11-29 0-8 3-15t8-12l443-444q14-11 29-11 8 0 15 3t11 8zm-121-10H949l-38 37 41 41h693l43-41zm-261 334l80-78h-340l79 78h181zm-131 50l42 41 41-41h-83zm260-177l79-80h-595l79 80h437zm-312-465l-80 80h347l-80-80h-187zm138-47l-44-46-45 46h89zm-267 176l-78 80h601l-79-80h-444z" + }, + "children": [] + }] +}; +exports.u1F538 = u1F538; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F539.js b/dist/noto_emoji_regular/u1F539.js new file mode 100644 index 000000000..8ca1eb444 --- /dev/null +++ b/dist/noto_emoji_regular/u1F539.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F539 = void 0; +var u1F539 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1771 1403q11 14 11 28 0 16-11 27l-445 445q-4 5-11 8t-15 3q-15 0-29-11l-443-445q-11-11-11-26 0-9 3-15.5t8-13.5l443-442q13-12 29-12 8 0 15 3t11 9zm-380-5l54-55-54-56-57 56zm-91-21l-56 57 56 54 55-54zm55-124l-55-56-56 56 56 55zm-147 34l-56 56 56 55 57-55zm-90 90l-56 57 56 54 56-54zm34 146l56 56 57-56-57-55zm92 91l56 57 55-57-55-56zm147-35l54-56-56-55-55 55zm89-91l56-56-56-55-55 57zm90-90l43-41-57-56-41 42zm-48-132l-56-56-41 43 55 55zm-90-90l-56-56-42 41 57 56zm-91-92l-41-41-42 41 42 43zm-118 36l-56 56 41 41 57-56zm-91 90l-56 56 42 42 56-55zm-91 91l-56 56 43 41 56-55zm-90 90l-40 41 41 41 41-39zm37 117l55 56 41-41-56-55zm90 90l56 56 40-40-56-56zm91 90l56 57 40-40-57-56zm90 92l41 40 39-40-39-41zm114-35l56-57-38-39-57 56zm92-91l56-56-41-40-55 56zm90-90l56-56-41-40-55 55zm90-91l43-41-41-41-41 41z" + }, + "children": [] + }] +}; +exports.u1F539 = u1F539; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F53A.js b/dist/noto_emoji_regular/u1F53A.js new file mode 100644 index 000000000..0ad550320 --- /dev/null +++ b/dist/noto_emoji_regular/u1F53A.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F53A = void 0; +var u1F53A = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2376 2240H223L1299 565zM401 2107l-34 54h34v-54zm190-294l-111 174v174h111v-348zm189-295l-113 174v469h113v-643zm189-294l-111 174v763h111v-937zm190-295l-112 174v1058h112V929zm189-142l-49-77-62 99v1352h111V787zm189 294l-112-174v1254h112V1081zm189 295l-111-174v959h111v-785zm191 294l-113-174v665h113v-491zm189 295l-113-174v370h113v-196zm76 196h50l-50-76v76z" + }, + "children": [] + }] +}; +exports.u1F53A = u1F53A; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F53B.js b/dist/noto_emoji_regular/u1F53B.js new file mode 100644 index 000000000..bc0241863 --- /dev/null +++ b/dist/noto_emoji_regular/u1F53B.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F53B = void 0; +var u1F53B = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M223 565h2153L1299 2239zm192 78h-48l48 77v-77zm78 196l113 175V643H493v196zm1705-143l34-53h-34v53zm-190 295l113-174V643h-113v348zm-190 295l112-174V643h-112v643zm-189 294l112-174V643h-112v937zm-189 295l112-174V643h-112v1232zm-189 144l48 75 64-99V643h-112v1376zm-191-295l113 174V643h-113v1081zm-189-295l113 174V643H871v786zm-76-786H682v490l113 176V643z" + }, + "children": [] + }] +}; +exports.u1F53B = u1F53B; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F53C.js b/dist/noto_emoji_regular/u1F53C.js new file mode 100644 index 000000000..6c1ab078a --- /dev/null +++ b/dist/noto_emoji_regular/u1F53C.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F53C = void 0; +var u1F53C = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M705 1822l595-926 595 926H705zm821-429l-79-123v474h79v-351zm49 351h80v-151l-80-123v274zm-176-551l-80-123v674h80v-551zm-129-104l-80 123v532h80v-655zm-128 199l-79 123v333h79v-456zm-128 200l-80 123v133h80v-256zm737 256l-48-75v75h48zm-902 0h37v-56z" + }, + "children": [] + }] +}; +exports.u1F53C = u1F53C; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F53D.js b/dist/noto_emoji_regular/u1F53D.js new file mode 100644 index 000000000..11fc4e761 --- /dev/null +++ b/dist/noto_emoji_regular/u1F53D.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F53D = void 0; +var u1F53D = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1895 896l-595 926-595-926h1190zm-820 429l78 123V974h-78v351zm-49-351h-79v151l79 123V974zm177 551l79 122V974h-79v551zm129 104l78-123V974h-78v655zm127-199l79-123V974h-79v456zm129-200l78-123V974h-78v256zM849 974l48 75v-75h-48zm902 0h-36v56z" + }, + "children": [] + }] +}; +exports.u1F53D = u1F53D; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F550.js b/dist/noto_emoji_regular/u1F550.js new file mode 100644 index 000000000..00c25065b --- /dev/null +++ b/dist/noto_emoji_regular/u1F550.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F550 = void 0; +var u1F550 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2255.5 1982q-148.5 256-405 404.5T1299 2535t-551-148.5T343.5 1982 195 1431t148.5-551.5 404.5-405T1299 326t551.5 148.5 405 405T2404 1431t-148.5 551zm-92-1050.5q-134.5-230.5-365-365T1299 432q-268 0-498.5 134t-365 365T301 1431q0 267 134 497.5T799.5 2294t499.5 135 499.5-134 365-364.5T2298 1431t-134.5-499.5zM1656 972l-213 370q12 20 19 42t7 47q0 69-50.5 119t-119.5 50-119-50-50-119q0-48 24.5-87t64.5-62V520h159v614l140-241zm-314 506.5q21-15.5 21-47.5 0-26-19-44.5t-45-18.5-44.5 18.5-18.5 44.5q0 21 17 42t46 21q22 0 43-15.5zm865.5-3Q2189 1494 2162 1494q-26 0-44.5-18.5T2099 1431t18.5-44.5 44.5-18.5q27 0 45.5 18.5t18.5 44.5-18.5 44.5zm-204.5-430q-19-17.5-19-45.5 0-24 16.5-44.5T2045 935q26 0 45.5 17.5T2110 998q0 27-18.5 46t-44.5 19q-25 0-44-17.5zM1775 730q-20 18-43 18-29 0-47-20.5t-18-44.5q0-28 20-45.5t43-17.5q26 0 45.5 17.5T1795 683q0 29-20 47zm-863-93q20 17 20 46 0 25-18 45t-47 20q-23 0-43-18t-20-47q0-26 18.5-44.5T867 620q25 0 45 17zm-317.5 409q-20.5 17-43.5 17-28 0-45.5-20t-17.5-43q0-27 19-46t45-19q28 0 45.5 19.5T615 1000q0 29-20.5 46zM481 1475.5q-19 18.5-45 18.5-27 0-45-18.5t-18-44.5 18-44.5 45-18.5q26 0 45 18.5t19 44.5-19 44.5zM595 1817q20 17 20 46 0 26-17.5 44.5T551 1926q-25 0-44-18.5t-19-46.5q0-24 16.5-42.5T549 1800q26 0 46 17zm317 408q-20 17-45 17-28 0-45.5-19.5T804 2179q0-29 20-46.5t43-17.5q28 0 46.5 18t18.5 46q0 29-20 46zm432 115q-19 19-45 19t-44.5-19-18.5-46q0-26 18-44.5t45-18.5q26 0 45 18.5t19 44.5q0 27-19 46zm431-207.5q20 17.5 20 46.5 0 24-18 43.5t-47 19.5q-23 0-43-17.5t-20-45.5q0-27 18-45.5t45-18.5q25 0 45 17.5zm315-223q-20 16.5-43 16.5-28 0-45.5-20t-17.5-43q0-28 19-45.5t45-17.5q32 0 47 21t15 43q0 29-20 45.5z" + }, + "children": [] + }] +}; +exports.u1F550 = u1F550; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F551.js b/dist/noto_emoji_regular/u1F551.js new file mode 100644 index 000000000..4fac2a348 --- /dev/null +++ b/dist/noto_emoji_regular/u1F551.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F551 = void 0; +var u1F551 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2257 1980.5q-147 255.5-404.5 405T1299 2535q-297 0-554-150t-403.5-405.5T195 1430q0-295 148.5-551T748 474.5 1299 326t551.5 148.5 405 404.5 148.5 551-147 550.5zm-93-1049q-134-230.5-365-365T1299 432q-268 0-498.5 134.5t-365 365T301 1430t133.5 499T799 2295t500 135q270 0 501-135t364.5-366 133.5-499-134-498.5zM1758 1074l79 138-370 214q2 0 2 4 0 69-50.5 119.5T1299 1600t-119-50.5-50-119.5q0-49 24.5-87.5t64.5-59.5V520h159v763l10 4zm449.5 402q-18.5 20-45.5 20-26 0-44.5-20t-18.5-46 18.5-44.5 44.5-18.5q27 0 45.5 18.5t18.5 44.5-18.5 46zM912 2225q-20 17-45 17-28 0-45.5-19.5T804 2178q0-28 20-45.5t43-17.5q28 0 46.5 18t18.5 46q0 29-20 46zm432-839.5q-19-18.5-45-18.5t-44.5 18.5-18.5 44.5q0 28 20 47t43 19q26 0 45-20t19-46-19-44.5zM482 1475q-18 19-44 19-28 0-46.5-18t-18.5-46q0-26 18-44.5t45-18.5q26 0 45 18.5t19 44.5-18 45zm1293 657.5q20 17.5 20 45.5 0 25-18 44.5t-47 19.5q-23 0-43-17.5t-20-45.5q0-27 18-45.5t45-18.5q25 0 45 17.5zM912 637q20 17 20 46 0 25-18 45t-47 20q-23 0-43-18t-20-47q0-27 18.5-45t46.5-18q23 0 43 17zM595 1816q20 16 20 45 0 25-17.5 45.5T551 1927q-25 0-44-18.5t-19-47.5q0-23 17-42t47-19q23 0 43 16zm749 523.5q-19 19.5-45 19.5t-44.5-19.5-18.5-45.5 18-44.5 45-18.5q26 0 45 18.5t19 44.5-19 45.5zM595.5 1046q-19.5 17-44.5 17-28 0-45.5-20t-17.5-43q0-28 19.5-46.5T552 935q26 0 44.5 18t18.5 47-19.5 46zM1687 637.5q20-17.5 43-17.5 28 0 46.5 20t18.5 43q0 29-20 47t-43 18q-21 0-43-17.5t-22-47.5q0-28 20-45.5zm315.5 407Q1984 1026 1984 1000q0-25 17.5-45t45.5-20q23 0 43 17t20 46q0 27-18.5 46t-44.5 19-44.5-18.5zm88 865.5q-19.5 17-42.5 17-29 0-46.5-20.5T1984 1863q0-27 19-45t44-18q30 0 46.5 19.5t16.5 44.5q0 29-19.5 46z" + }, + "children": [] + }] +}; +exports.u1F551 = u1F551; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F552.js b/dist/noto_emoji_regular/u1F552.js new file mode 100644 index 000000000..3f29bfb52 --- /dev/null +++ b/dist/noto_emoji_regular/u1F552.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F552 = void 0; +var u1F552 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2255.5 1982q-148.5 256-405 404.5T1299 2535t-551-148.5T343.5 1982 195 1431t148.5-551.5 404.5-405T1299 326t551.5 148.5 405 405T2404 1431t-148.5 551zm-92-1050.5q-134.5-230.5-365-365T1299 432q-268 0-498.5 134t-365 365T301 1431q0 270 135.5 501t366 364 496.5 133q267 0 497.5-132.5t366-364T2298 1431q0-269-134.5-499.5zM1378 1282q46 24 70 70h428v159h-428q-22 40-61.5 64.5T1299 1600q-69 0-119-50t-50-119q0-50 24.5-88.5t64.5-60.5V520h159v762zm-34 194q19-18 19-45 0-26-19-45t-45-19q-27 0-45 18t-18 46q0 25 16.5 44t46.5 19q26 0 45-18zm863.5 0q-18.5 18-45.5 18-26 0-44.5-18t-18.5-45q0-26 18.5-45t44.5-19q27 0 45.5 19t18.5 45q0 27-18.5 45zm-205-430.5Q1984 1028 1984 1000q0-25 17-45t46-20q23 0 43 17t20 46q0 28-19 46.5t-46 18.5q-24 0-42.5-17.5zm-315.5-408q20-17.5 43-17.5 27 0 46 18.5t19 44.5q0 28-20 45.5t-45 17.5q-26 0-44.5-18t-18.5-45q0-28 20-45.5zm-774-.5q19 17 19 46 0 24-18 43.5T867 746q-23 0-43-17.5T804 683t18.5-45.5T869 620q25 0 44 17zm-318 409q-20 17-43 17-28 0-46-20t-18-43q0-28 19-46.5t44-18.5q29 0 46.5 19.5T615 1000q0 29-20 46zm-114 430q-19 18-45 18-27 0-45-18t-18-45q0-26 18-45t45-19q26 0 45 19t19 45q0 27-19 45zm114 341q20 17 20 46 0 23-17.5 43t-46.5 20q-25 0-44-18.5t-19-46.5q0-26 18-43.5t46-17.5q23 0 43 17zm317 408q-20 17-45 17-29 0-46-19.5t-17-44.5q0-28 20.5-45.5T869 2115q25 0 44 18t19 46q0 29-20 46zm432 114q-19 18-45 18t-44.5-18-18.5-45q0-26 18-45t45-19q26 0 45 19t19 45q0 27-19 45zm431.5-204.5q19.5 19.5 19.5 43.5 0 25-17.5 44.5T1730 2242q-23 0-43-17.5t-20-45.5q0-27 18-45.5t45-18.5q26 0 45.5 19.5zm314.5-225q-20 16.5-43 16.5-28 0-45.5-20t-17.5-43q0-28 19-45.5t44-17.5q30 0 46.5 19t16.5 45q0 29-20 45.5z" + }, + "children": [] + }] +}; +exports.u1F552 = u1F552; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F553.js b/dist/noto_emoji_regular/u1F553.js new file mode 100644 index 000000000..05982f437 --- /dev/null +++ b/dist/noto_emoji_regular/u1F553.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F553 = void 0; +var u1F553 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2255.5 1982q-148.5 256-405 404.5T1299 2535t-551-148.5T343.5 1982 195 1431t148.5-551.5 404.5-405T1299 326t551.5 148.5 405 405T2404 1431t-148.5 551zm-92-1050.5q-134.5-230.5-365-365T1299 432q-268 0-498.5 134t-365 365T301 1431q0 267 134 497.5T799.5 2294t499.5 135 499.5-134 365-364.5T2298 1431t-134.5-499.5zM1467 1437l370 212-79 138-370-213q-19 12-41.5 19t-47.5 7q-69 0-119-50t-50-119q0-48 24.5-87.5t64.5-61.5V520h159v762q41 22 66 61.5t25 87.5q0 3-2 6zm219.5-800q19.5-18 45.5-18 28 0 45.5 19.5T1795 683q0 28-20 45.5t-45 17.5q-26 0-44.5-18t-18.5-45q0-28 19.5-46zm316.5 408.5q-19-17.5-19-45.5 0-25 17.5-45t45.5-20q23 0 43 17t20 46q0 27-18.5 46t-44.5 19q-25 0-44-17.5zm-1091-409q20 17.5 20 46.5 0 24-18 43.5T867 746q-23 0-43-17.5T804 683t18.5-46 43.5-18q26 0 46 17.5zm1178 1273q-20 16.5-43 16.5-28 0-45.5-20t-17.5-43q0-29 18.5-47t44.5-18q27 0 45 19t18 47q0 29-20 45.5zM1344 2339q-19 18-45 18t-44.5-18-18.5-45q0-26 18-45t45-19q26 0 45 19t19 45q0 27-19 45zm-863-863.5q-19 18.5-45 18.5-27 0-45-18.5t-18-44.5 18-45 45-19q26 0 45 19t19 45-19 44.5zm1294 657q20 17.5 20 46.5 0 25-19 44t-46 19q-23 0-43-17.5t-20-45.5q0-27 18-45.5t45-18.5q25 0 45 17.5zM594.5 1046q-20.5 17-43.5 17-28 0-45.5-20t-17.5-43q0-27 19-46t44-19q29 0 46.5 19.5T615 1000q0 29-20.5 46zM912 2225q-20 17-43 17-28 0-46.5-19.5T804 2178q0-28 20-45.5t43-17.5q28 0 46.5 18t18.5 46q0 29-20 46zm-316.5-409.5Q615 1833 615 1863q0 23-17.5 43t-46.5 20q-25 0-44-18.5t-19-46.5 19.5-45.5T551 1798q25 0 44.5 17.5zm1612-340Q2189 1494 2162 1494q-26 0-44.5-18.5T2099 1431t18.5-45 44.5-19q27 0 45.5 19t18.5 45-18.5 44.5zm-863.5.5q19-18 19-45 0-26-19-45t-45-19q-23 0-43 18t-20 46q0 25 17.5 44t45.5 19q26 0 45-18z" + }, + "children": [] + }] +}; +exports.u1F553 = u1F553; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F554.js b/dist/noto_emoji_regular/u1F554.js new file mode 100644 index 000000000..d466773a0 --- /dev/null +++ b/dist/noto_emoji_regular/u1F554.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F554 = void 0; +var u1F554 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2255.5 1981Q2107 2237 1851 2385.5T1300 2534t-551-148.5T344.5 1981 196 1430t148.5-551.5 404.5-405T1300 325t551 148.5 404.5 405T2404 1430t-148.5 551zM2165 934q-132-230-362.5-366.5T1300 431 797.5 567.5 435 934t-132 496q0 268 134 499.5t364.5 365T1300 2428t498.5-133.5 364.5-365 134-499.5q0-266-132-496zm-723 585l216 369-139 81-214-370q-71 0-123-49t-52-120q0-48 25-87.5t66-61.5V519h158v762q41 22 65.5 61.5t24.5 87.5q0 49-27 89zm-97-134q-18-19-45-19t-45 19-18 45q0 27 17.5 45t45.5 18 45.5-18.5 17.5-44.5-18-45zm863 90q-18 18-45 18-26 0-44.5-18t-18.5-45q0-26 18.5-45t44.5-19q27 0 45 19t18 45q0 27-18 45zm-205-431.5q-19-18.5-19-46.5 0-23 17-43t47-20q24 0 43.5 18t19.5 47q0 28-19.5 45.5T2048 1062q-26 0-45-18.5zM1775 730q-20 17-45 17-28 0-44.5-20t-16.5-45q0-28 18-45.5t43-17.5q30 0 47.5 18.5T1795 684q0 29-20 46zm-862.5-93.5Q931 654 931 682q0 26-18 44.5T868 745q-26 0-45-18t-19-46q0-29 19.5-45.5T868 619q26 0 44.5 17.5zm-316 407Q578 1062 552 1062q-28 0-45.5-20T489 999q0-29 18.5-47t44.5-18q27 0 45 18t18 45q0 28-18.5 46.5zm-115 431.5q-18.5 18-44.5 18-27 0-45.5-18t-18.5-45q0-26 18.5-45t45.5-19q26 0 44.5 19t18.5 45q0 27-18.5 45zm115 342q18.5 18 18.5 45 0 23-17.5 43t-45.5 20q-25 0-44-17.5t-19-45.5q0-26 17.5-44.5T553 1799q25 0 43.5 18zM912 2223.5q-19 17.5-44 17.5-29 0-46.5-19.5T804 2177q0-29 19-45.5t44-16.5q26 0 45 16.5t19 46.5q0 28-19 45.5zm433 114.5q-18 18-45 18t-45-18-18-45q0-26 18-45t45-19 45 19 18 45q0 27-18 45zm430.5-207q19.5 16 19.5 44 0 26-17 46t-46 20q-26 0-44.5-17.5T1669 2178q0-29 18.5-46t45.5-17q23 0 42.5 16zm316-223.5Q2072 1925 2048 1925q-29 0-46.5-19.5T1984 1863q0-28 19.5-46t43.5-18q29 0 46.5 18t17.5 45q0 28-19.5 45.5z" + }, + "children": [] + }] +}; +exports.u1F554 = u1F554; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F555.js b/dist/noto_emoji_regular/u1F555.js new file mode 100644 index 000000000..403e24c36 --- /dev/null +++ b/dist/noto_emoji_regular/u1F555.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F555 = void 0; +var u1F555 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2255.5 1982Q2107 2238 1851 2386.5T1300 2535t-551-148.5T344.5 1982 196 1431t148.5-551.5 404.5-405T1300 326t551 148.5 404.5 405T2404 1431t-148.5 551zM2165 935q-132-230-362.5-366.5T1300 432 797.5 568.5 435 935t-132 496q0 265 131.5 495T797 2292.5t503 136.5q271 0 501.5-136t363-366 132.5-496-132-496zm-786 347q41 22 65.5 61t24.5 87-24.5 87.5-65.5 61.5v428h-158v-428q-41-22-66-60.5t-25-88.5q0-48 25-87t66-61V520h158v762zm-34.5 104q-18.5-19-44.5-19t-44.5 19-18.5 45q0 27 18.5 45t44.5 18q25 0 44-18t19-45q0-26-18.5-45zm863.5 89.5q-18 18.5-45 18.5-26 0-44.5-18.5T2100 1431t18.5-45 44.5-19q27 0 45 19t18 45-18 44.5zm-205-431q-19-18.5-19-46.5 0-23 17.5-43t46.5-20q24 0 43.5 18t19.5 47q0 28-19.5 45.5T2048 1063q-26 0-45-18.5zM1775 730q-20 16-43 16-28 0-45.5-19.5T1669 683q0-28 18.5-46t45.5-18 44.5 19 17.5 47q0 29-20 45zm-863-93q19 18 19 46 0 24-17.5 43.5T868 746q-26 0-45-18t-19-46q0-27 18.5-45t44.5-18 45 18zm-315.5 407.5Q578 1063 552 1063q-28 0-45.5-20t-17.5-43q0-28 18.5-46.5T552 935q27 0 45 18t18 45q0 28-18.5 46.5zm-115 431Q463 1494 437 1494q-27 0-45.5-18.5T373 1431t18.5-45 45.5-19q26 0 44.5 19t18.5 45-18.5 44.5zm115 341.5q18.5 19 18.5 46 0 23-17.5 43t-45.5 20q-25 0-44-17.5t-19-45.5q0-27 18.5-46t44.5-19 44.5 19zm315 407q-19.5 18-44.5 18-28 0-45.5-19.5T804 2179q0-30 20-47t44-17q26 0 44.5 17.5T931 2179q0 27-19.5 45zm433.5 114.5q-18 18.5-45 18.5t-45-18.5-18-44.5 18-44.5 45-18.5 45 18.5 18 44.5-18 44.5zm430-206.5q20 17 20 46 0 26-17 45t-46 19q-24 0-43.5-18t-19.5-45q0-29 18.5-46.5t44.5-17.5q23 0 43 17zm316.5-223.5Q2072 1926 2048 1926q-29 0-46.5-20t-17.5-43q0-27 19-46t45-19 44.5 19 18.5 46q0 28-19.5 45.5z" + }, + "children": [] + }] +}; +exports.u1F555 = u1F555; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F556.js b/dist/noto_emoji_regular/u1F556.js new file mode 100644 index 000000000..01a879bf7 --- /dev/null +++ b/dist/noto_emoji_regular/u1F556.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F556 = void 0; +var u1F556 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2254.5 1983.5Q2105 2241 1849.5 2388T1300 2535q-295 0-551.5-148.5t-405-405T195 1430t148.5-551 405-404.5T1300 326t551.5 148T2256 878.5t148 551.5q0 296-149.5 553.5zm-89.5-1052q-134-230.5-365-365T1300 432 800 566.5t-365 365T301 1430q0 269 134.5 499.5t365 365T1300 2429t499.5-134.5 365-365T2299 1430q0-268-134-498.5zM1380 1282q39 22 64 60.5t25 87.5q0 73-51.5 121.5T1295 1600l-214 368-138-79 213-369q-11-20-17.5-42.5t-6.5-47.5q0-49 24-87.5t65-60.5V520h159v762zm-35 193q20-19 20-45 0-21-16.5-42t-48.5-21q-23 0-43.5 16t-20.5 47q0 25 18 44.5t46 19.5q25 0 45-19zm864 .5q-19 18.5-46 18.5-26 0-45-18.5t-19-44.5 19-45 45-19q27 0 46 19t19 45-19 44.5zm-205.5-430Q1984 1028 1984 1000q0-25 17.5-45t45.5-20q25 0 44.5 17.5T2111 998t-19 46.5-45 18.5q-24 0-43.5-17.5zM1775 728q-20 18-43 18-29 0-47-19.5t-18-43.5q0-28 20.5-46t44.5-18q26 0 44.5 18t18.5 45q0 28-20 46zm-863.5-91.5Q932 654 932 682q0 25-17.5 44.5T869 746q-26 0-45.5-18T804 682q0-25 19-44t44-19q24 0 44.5 17.5zm-315.5 408q-19 18.5-45 18.5-28 0-45.5-20t-17.5-43q0-27 20-46t44-19q26 0 44.5 18t18.5 47q0 26-19 44.5zM481 1475q-19 19-45 19t-44.5-19-18.5-45 18.5-44.5T436 1367t45 18.5 19 44.5-19 45zm114.5 341q19.5 18 19.5 47 0 23-17.5 43t-45.5 20q-25 0-44.5-18.5T488 1861t20.5-45.5T552 1798q24 0 43.5 18zM911 2224q-21 18-44 18-29 0-46-20t-17-43q0-29 20-46.5t43-17.5q28 0 46.5 18t18.5 46q0 27-21 45zm434 114.5q-18 18.5-45 18.5-26 0-45-18.5t-19-44.5 19-45 45-19q27 0 45 19t18 45-18 44.5zm430-206.5q20 17 20 46 0 25-17 44.5t-46 19.5q-24 0-44.5-17.5T1667 2178q0-25 19-44t46-19q23 0 43 17zm316.5-223.5Q2072 1926 2047 1926q-28 0-45.5-20t-17.5-43q0-29 19.5-47t43.5-18q26 0 45 18.5t19 46.5-19.5 45.5z" + }, + "children": [] + }] +}; +exports.u1F556 = u1F556; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F557.js b/dist/noto_emoji_regular/u1F557.js new file mode 100644 index 000000000..598f1c749 --- /dev/null +++ b/dist/noto_emoji_regular/u1F557.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F557 = void 0; +var u1F557 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2254 1984q-150 257-405 403.5T1300 2534q-295 0-551.5-148.5t-405-404.5T195 1430t148.5-551 405-404.5T1300 326t551.5 148T2256 878.5t148 551.5q0 297-150 554zm-91.5-1056.5Q2026 697 1796 565t-496-132-496 132-366.5 362.5T301 1430t136.5 502.5T804 2295t496 132 496-132 366.5-362.5T2299 1430t-136.5-502.5zM1380 1281q39 23 64 62t25 87q0 69-50 119t-119 50q-48 0-89-27l-370 214-79-137 370-214q0-51 23.5-91t65.5-63V519h159v762zm-125 104q-19 18-19 45t19 45 45 18q25 0 45-18t20-45-20-45-45-18q-26 0-45 18zm954 90q-19 18-46 18-26 0-45-18t-19-45 19-45 45-18q27 0 46 18t19 45-19 45zm-205.5-431.5Q1984 1026 1984 998q0-24 17-44t46-20q25 0 44.5 17.5T2111 998q0 27-17.5 45t-46.5 18q-24 0-43.5-17.5zm-228.5-315q-20 17.5-43 17.5-30 0-47.5-20t-17.5-43q0-28 20.5-46t44.5-18q26 0 44.5 17.5T1795 682q0 29-20 46.5zm-951-.5q-20-18-20-47 0-23 17.5-42.5T867 619q25 0 45 17.5t20 45.5q0 31-21 47.5T867 746t-43-18zm-228.5 315.5Q576 1061 552 1061q-28 0-46-19t-18-44q0-29 19.5-46.5T552 934q28 0 45.5 20t17.5 44q0 28-19.5 45.5zM481 1475q-19 18-45 18t-44.5-18-18.5-45 18.5-45 44.5-18 45 18 19 45-19 45zm115 341.5q19 17.5 19 45.5 0 23-16.5 43.5T554 1926q-26 0-46-18t-20-46q0-27 19-45t45-18q25 0 44 17.5zm316 407q-20 17.5-45 17.5-28 0-45.5-19.5T804 2178q0-28 19-45.5t44-17.5q27 0 46 17t19 46q0 28-20 45.5zm433 114.5q-18 18-45 18-26 0-45-18t-19-45q0-26 19-44.5t45-18.5q27 0 45 18.5t18 44.5q0 27-18 45zm431-206q19 17 19 46 0 24-17.5 43.5T1732 2241q-24 0-44.5-17.5T1667 2177q0-26 19-44t47-18q24 0 43 17zm315-223.5q-20 17.5-46 17.5-29 0-45-20.5t-16-43.5q0-28 19.5-45.5t43.5-17.5q29 0 46.5 18t17.5 45q0 29-20 46.5z" + }, + "children": [] + }] +}; +exports.u1F557 = u1F557; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F558.js b/dist/noto_emoji_regular/u1F558.js new file mode 100644 index 000000000..828f517d9 --- /dev/null +++ b/dist/noto_emoji_regular/u1F558.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F558 = void 0; +var u1F558 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2254 1985q-150 257-405 403.5T1300 2535q-295 0-551.5-148.5t-405-404.5T195 1431t148.5-551.5 405-405T1300 326q298 0 555 150t403 406.5 146 548.5q0 297-150 554zm-89.5-1053.5q-134.5-230.5-365-365T1300 432 800.5 566.5t-365 365T301 1431q0 268 134 498.5t365 365 500 134.5 499.5-134 365-364.5T2299 1431t-134.5-499.5zM1380 1282q39 22 64 60.5t25 87.5q0 69-50 119.5t-119 50.5q-50 0-88.5-25t-59.5-66H725v-159h427q23-44 69-68V520h159v762zm-34.5 104q-19.5-19-45.5-19t-45 19-19 45q0 27 19 45t45 18q23 0 44-19t21-44q0-26-19.5-45zm863.5 89.5q-19 18.5-46 18.5-26 0-45-18.5t-19-44.5 19-45 45-19q27 0 46 19t19 45-19 44.5zm-205.5-430Q1984 1028 1984 1000q0-25 17.5-45t45.5-20q25 0 44.5 17.5T2111 998t-19 46.5-45 18.5q-24 0-43.5-17.5zM1775 728q-20 18-43 18-29 0-47-19.5t-18-43.5q0-28 20-46t45-18q26 0 44.5 18t18.5 45q0 28-20 46zm-951.5 0Q804 710 804 682q0-23 17.5-43t45.5-20q25 0 45 17.5t20 46.5q0 27-18.5 45T869 746t-45.5-18zM596 1044.5q-19 18.5-45 18.5-28 0-45.5-20t-17.5-43q0-27 20-46t44-19q26 0 44.5 18t18.5 47q0 26-19 44.5zM481 1475q-19 19-45 19t-44.5-19-18.5-45 18.5-44.5T436 1367t45 18.5 19 44.5-19 45zm114.5 341q19.5 18 19.5 47 0 23-17.5 43t-45.5 20q-23 0-43.5-18t-20.5-47q0-28 20.5-45.5T552 1798q24 0 43.5 18zM912 2224.5q-20 17.5-43 17.5-28 0-46.5-19.5T804 2179q0-29 20-46.5t43-17.5q28 0 46.5 18t18.5 46-20 45.5zm433 114q-18 18.5-45 18.5-26 0-45-18.5t-19-44.5 19-45 45-19q27 0 45 19t18 45-18 44.5zm430-206q20 17.5 20 46.5 0 25-18.5 44t-46.5 19q-23 0-43-18t-20-46q0-25 19-44t46-19q23 0 43 17.5zm316.5-224Q2072 1926 2047 1926q-28 0-45.5-20t-17.5-43q0-29 19.5-47t43.5-18q26 0 45 18.5t19 46.5-19.5 45.5z" + }, + "children": [] + }] +}; +exports.u1F558 = u1F558; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F559.js b/dist/noto_emoji_regular/u1F559.js new file mode 100644 index 000000000..4732b36dd --- /dev/null +++ b/dist/noto_emoji_regular/u1F559.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F559 = void 0; +var u1F559 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2258 1982q-148 256-405 404.5T1300 2535t-553-148.5T342 1982t-148-551 148.5-551.5 405-405T1300 326q295 0 552 148t405.5 405 148.5 552-148 551zm-93.5-1050.5q-134.5-230.5-365-365T1300 432 800.5 566.5t-365 365T301 1431q0 268 134 498.5t365 365 500 134.5 499.5-134 365-364.5T2299 1431t-134.5-499.5zM1379 1283q41 21 65.5 60t24.5 87q0 69-50 119.5t-119 50.5q-72 0-120.5-51t-48.5-123l-369-214 79-138 370 213 10-4V520h158v763zm-33.5 1056.5Q1327 2359 1300 2359q-26 0-45-19.5t-19-45.5 19-44.5 45-18.5q27 0 45.5 18.5t18.5 44.5-18.5 45.5zm-863.5-864q-18 18.5-45 18.5t-45.5-18.5T373 1431t18.5-45 45.5-19 45 19 18 45-18 44.5zM596.5 1046q-19.5 17-44.5 17-28 0-45.5-20T489 998q0-28 19.5-45.5T552 935q27 0 45.5 19.5T616 1000q0 29-19.5 46zm-1 769.5Q616 1833 616 1863q0 23-17.5 43t-46.5 20q-24 0-43.5-17.5T489 1863q0-27 18.5-46t44.5-19q23 0 43.5 17.5zm750-429Q1327 1368 1300 1368t-45.5 18.5-18.5 44.5q0 27 19 45t45 18q25 0 44.5-18t19.5-45q0-26-18.5-44.5zm-434 838Q892 2242 868 2242q-29 0-46.5-19.5T804 2179q0-28 20-46t44-18q26 0 44.5 17.5T931 2178q0 29-19.5 46.5zm1092-1180Q1984 1026 1984 998q0-23 17.5-43t46.5-20q24 0 43.5 18.5t19.5 46.5-19.5 45.5-43.5 17.5q-25 0-44.5-18.5zM1775 2133q20 18 20 46 0 24-17.5 43.5T1732 2242q-24 0-44.5-17.5T1667 2178q0-27 19.5-45t45.5-18q23 0 43 18zM824 729.5Q804 711 804 683q0-23 18-43t46-20q24 0 43.5 18t19.5 47-22 46-42 17q-23 0-43-18.5zM2091.5 1908q-19.5 18-43.5 18-29 0-46.5-19.5T1984 1864q0-29 20.5-46.5t44.5-17.5q29 0 45.5 18.5t16.5 42.5q0 29-19.5 47zm117-432.5Q2190 1494 2163 1494q-26 0-44.5-18.5T2100 1431t18.5-44.5 44.5-18.5q27 0 45.5 18.5t18.5 44.5-18.5 44.5zm-433.5-746q-20 18.5-43 18.5-28 0-45.5-20.5T1669 683q0-28 19-45.5t42-17.5q26 0 45.5 17.5T1795 683t-20 46.5z" + }, + "children": [] + }] +}; +exports.u1F559 = u1F559; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F55A.js b/dist/noto_emoji_regular/u1F55A.js new file mode 100644 index 000000000..b1156c8f9 --- /dev/null +++ b/dist/noto_emoji_regular/u1F55A.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F55A = void 0; +var u1F55A = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2256 1985q-150 257-406.5 403T1300 2534q-292 0-548.5-145.5t-407-402.5T194 1430q0-294 146.5-549.5t404-405T1300 326q296 0 553.5 149t405 404.5T2406 1430q0 298-150 555zm-91.5-1054.5q-134.5-230.5-365-365T1300 431 800.5 565.5t-365 365T301 1430t134.5 499.5 365 365T1300 2429t499.5-134.5 365-365T2299 1430t-134.5-499.5zM1379 1281q41 21 65.5 61t24.5 88q0 69-50 119t-119 50-119-50-50-119q0-25 7-47.5t18-41.5L944 971l138-79 139 241V519h158v762zm-33.5 104q-18.5-19-45.5-19t-45.5 19-18.5 45q0 29 19 46t45 17q31 0 47.5-20.5t16.5-42.5q0-26-18.5-45zm863 90q-18.5 18-45.5 18-26 0-44.5-18t-18.5-45q0-26 18.5-45t44.5-19q27 0 45.5 19t18.5 45q0 27-18.5 45zm-204-431.5Q1984 1026 1984 997q0-23 18-42.5t47-19.5q24 0 43 17.5t19 45.5q0 26-17.5 44.5T2048 1061q-23 0-43.5-17.5zm-229-315.5q-19.5 18-45.5 18-28 0-44.5-20.5T1669 682q0-28 19.5-45.5T1732 619q25 0 44 17t19 46q0 28-19.5 46zm-864-91q19.5 18 19.5 46 0 23-16 43t-45 20q-26 0-46-18t-20-46 19.5-45.5T868 619q24 0 43.5 18zm-315 407q-19.5 17-44.5 17-28 0-45.5-19.5T489 998q0-29 19-46t43-17 44.5 18 20.5 45q0 29-19.5 46zM482 1475q-18 18-45 18t-45.5-18-18.5-45 18.5-45.5T437 1366t45 18.5 18 45.5-18 45zm114.5 341q19.5 17 19.5 46 0 23-17 43.5t-46 20.5q-23 0-43.5-17.5T489 1862q0-26 17.5-44.5T552 1799q25 0 44.5 17zm315 407.5Q892 2241 868 2241q-29 0-46.5-19.5T804 2179q0-29 20-46.5t43-17.5q25 0 44.5 16t19.5 46q0 29-19.5 46.5zm435 114.5q-17.5 18-43.5 18-27 0-47-17.5t-20-45.5q0-26 19-44.5t45-18.5q27 0 45.5 18.5t18.5 44.5q0 27-17.5 45zm428.5-205.5q20 17.5 20 46.5 0 23-17.5 42.5T1732 2241q-24 0-44.5-17.5T1667 2178q0-27 19.5-45t45.5-18q23 0 43 17.5zm315.5-224.5q-20.5 18-43.5 18-29 0-46-20t-17-43q0-28 20.5-46t43.5-18q28 0 45.5 18.5t17.5 44.5q0 28-20.5 46z" + }, + "children": [] + }] +}; +exports.u1F55A = u1F55A; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F55B.js b/dist/noto_emoji_regular/u1F55B.js new file mode 100644 index 000000000..3348a9f2d --- /dev/null +++ b/dist/noto_emoji_regular/u1F55B.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F55B = void 0; +var u1F55B = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2257.5 1982.5q-148.5 256.5-405 405T1300 2536q-295 0-551.5-147.5T343 1984t-149-554q0-295 147.5-551.5T746 473t554-149q296 0 552.5 148.5t405 405T2406 1430t-148.5 552.5zm-93-1052q-134.5-230.5-365-365T1300 431 800.5 565.5t-365 365T301 1430t134.5 499.5 365 365T1300 2429t499.5-134.5 365-365T2299 1430t-134.5-499.5zM1403 1297q31 23 48.5 57t17.5 76q0 69-50 119t-119 50-119-50-50-119q0-42 18.5-76t47.5-57V840h24V519h158v321h24v457zm-58 179.5q19-17.5 19-46.5 0-26-18.5-44.5T1300 1367q-26 0-45 18t-19 45q0 25 19 44.5t45 19.5 45-17.5zm863.5-1Q2190 1494 2163 1494q-26 0-44.5-18.5T2100 1430t18.5-45 44.5-18q27 0 45.5 18t18.5 45-18.5 45.5zm-204.5-431q-20-18.5-20-46.5 0-23 18-43t46-20q24 0 43.5 18t19.5 47q0 26-20.5 44.5T2047 1063t-43-18.5zm-229-316q-20 17.5-43 17.5-27 0-45-19t-18-44q0-29 19-46.5t42-17.5q26 0 45.5 17.5T1795 682q0 29-20 46.5zm-863.5-92Q931 654 931 683q0 24-18 43.5T867 746q-23 0-43-17.5T804 682q0-27 19.5-45t44.5-18q24 0 43.5 17.5zM596 1046q-20 17-43 17-28 0-46-20t-18-45q0-28 19.5-45.5T551 935q25 0 45 18.5t20 46.5q0 29-20 46zm-114 429.5q-18 18.5-45 18.5t-45.5-18.5T373 1430t18.5-45 45.5-18 45 18 18 45-18 45.5zM596.5 1816q19.5 17 19.5 46 0 23-18.5 43.5T551 1926q-23 0-42.5-17.5T489 1862q0-26 17.5-44.5T552 1799q25 0 44.5 17zm315 408q-19.5 18-43.5 18-28 0-46-20t-18-43q0-29 20-46.5t43-17.5q25 0 44.5 16t19.5 46q0 29-19.5 47zm434 114.5Q1327 2357 1300 2357q-26 0-45-18.5t-19-45.5 19-45 45-18q27 0 45.5 18t18.5 45-18.5 45.5zM1775 2133q20 18 20 46 0 23-18 43t-47 20q-23 0-43-18t-20-47q0-28 19.5-45t45.5-17q23 0 43 18zm316.5-225q-19.5 18-43.5 18-28 0-46-20t-18-43q0-28 20.5-46t43.5-18q28 0 45.5 18.5t17.5 44.5q0 28-19.5 46z" + }, + "children": [] + }] +}; +exports.u1F55B = u1F55B; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F55C.js b/dist/noto_emoji_regular/u1F55C.js new file mode 100644 index 000000000..9c4ed2c3e --- /dev/null +++ b/dist/noto_emoji_regular/u1F55C.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F55C = void 0; +var u1F55C = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2257.5 1983.5q-148.5 256.5-405 405T1300 2537q-295 0-551.5-147.5T343 1985t-149-554q0-295 147.5-551.5T746 474t554-149q296 0 552.5 148.5t405 405T2406 1431t-148.5 552.5zm-93-1052q-134.5-230.5-365-365T1300 432 800.5 566.5t-365 365T301 1431t134.5 499.5 365 365T1300 2430t499.5-134.5 365-365T2299 1431t-134.5-499.5zM1658 972l-214 370q12 20 19 42t7 47q0 49-25 88t-65 61v763h-159v-763q-41-22-65.5-61t-24.5-88q0-73 51-121t124-48l214-370zm-313 414q-19-19-45-19-24 0-44 18.5t-20 45.5q0 26 19 45t45 19 45-19 19-45-19-45zm747.5 523.5Q2072 1927 2048 1927q-29 0-46-20t-17-45q0-28 20-45.5t44-17.5q26 0 45 19t19 46q0 28-20.5 45.5zM1776 2134q20 18 20 46 0 24-18 44t-46 20q-25 0-44-17.5t-19-46.5q0-28 18.5-46t44.5-18q24 0 44 18zM1255 521.5q19-18.5 45-18.5t45 18.5 19 44.5q0 27-19 46t-45 19-45-19-19-46q0-26 19-44.5zM912.5 2226q-19.5 18-44.5 18-29 0-46.5-20.5T804 2179q0-29 20.5-46t43.5-17q27 0 45.5 18.5T932 2180q0 28-19.5 46zM596 1817q20 18 20 46 0 25-17.5 44.5T552 1927q-24 0-44-17t-20-46 19.5-47 43.5-18q25 0 45 18zm-115-341q-19 19-45 19t-45-19-19-45 19-45 45-19 45 19 19 45-19 45zm114.5-430.5Q575 1063 551 1063q-28 0-45.5-20T488 999q0-29 20-46.5t43-17.5q26 0 45.5 18.5T616 999q0 29-20.5 46.5zm317-409.5q19.5 18 19.5 46 0 25-17.5 45T868 747q-25 0-44.5-18T804 683q0-27 19-46t45-19q25 0 44.5 18zm864 92.5Q1757 747 1732 747q-28 0-45.5-20.5T1669 682q0-28 19-46t44-18 44.5 19 19.5 45q0 28-19.5 46.5zM2005 1046q-20-17-20-46 0-25 18-45t46-20q24 0 44 18t20 46q0 30-20.5 47t-43.5 17q-24 0-44-17zm204.5 430q-18.5 19-44.5 19-27 0-45.5-19t-18.5-45 18.5-45 45.5-19q26 0 44.5 19t18.5 45-18.5 45z" + }, + "children": [] + }] +}; +exports.u1F55C = u1F55C; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F55D.js b/dist/noto_emoji_regular/u1F55D.js new file mode 100644 index 000000000..5a787322c --- /dev/null +++ b/dist/noto_emoji_regular/u1F55D.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F55D = void 0; +var u1F55D = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2257.5 1984q-148.5 257-405 405.5T1300 2538t-552.5-149-405-405.5T194 1431q0-295 147.5-551.5T746 474t554-149q296 0 552.5 148.5t405 405T2406 1431t-148.5 553zm-93-1052.5q-134.5-230.5-365-365T1300 432q-272 0-504.5 137.5t-364 368T300 1431q0 266 134.5 498.5t366 366.5 499.5 134q266 0 495.5-131.5T2162 1935t137-504q0-269-134.5-499.5zm45 545Q2191 1495 2164 1495q-26 0-44.5-18.5T2101 1431q0-26 18.5-44.5t44.5-18.5q27 0 45.5 18.5t18.5 44.5q0 27-18.5 45.5zm-205-431Q1985 1028 1985 999q0-24 17-43.5t46-19.5q23 0 43.5 17t20.5 46q0 28-19 46t-45 18q-24 0-43.5-17.5zm-316-409Q1708 619 1732 619q28 0 46 19.5t18 43.5q0 28-19.5 46.5T1732 747q-24 0-43.5-18t-19.5-47q0-28 19.5-45.5zm-777 .5q20.5 18 20.5 46 0 24-18 44t-46 20q-24 0-44-17t-20-46 19.5-47 43.5-18 44.5 18zM596 1045.5q-20 17.5-44 17.5-29 0-46.5-20.5T488 998q0-28 20.5-45t43.5-17q27 0 45.5 18.5T616 999q0 29-20 46.5zm-115 431q-19 18.5-45 18.5t-45-18.5-19-45.5q0-26 19-44.5t45-18.5 45 18.5 19 44.5q0 27-19 45.5zm114.5 341Q616 1835 616 1863q0 24-18.5 44t-46.5 20q-23 0-43-17t-20-45 19.5-46.5T552 1800q23 0 43.5 17.5zM912 2226q-20 18-45 18-28 0-45.5-20.5T804 2179q0-29 20-46t43-17q25 0 45 17.5t20 45.5q0 29-20 47zm864.5-91.5q19.5 18.5 19.5 46.5 0 23-17.5 42.5T1732 2243q-25 0-44-17t-19-46q0-28 20-46t44-18 43.5 18.5zM2092 1910q-20 17-43 17-28 0-46-19.5t-18-43.5q0-29 19.5-46.5t43.5-17.5q26 0 45 18t19 46q0 29-20 46zm-333-836l80 138-370 214q0 51-23.5 91t-65.5 63v763h-159v-763q-41-22-65.5-61t-24.5-88q0-71 50-120t119-49q25 0 47 7t42 19zm-505 312.5q-18 18.5-18 44.5 0 25 18 44.5t46 19.5q26 0 45-18.5t19-45.5q0-26-18-44.5t-46-18.5-46 18.5zm1-864.5q19-19 45-19t45 19 19 45-19 44.5-45 18.5-45-18.5-19-44.5 19-45z" + }, + "children": [] + }] +}; +exports.u1F55D = u1F55D; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F55E.js b/dist/noto_emoji_regular/u1F55E.js new file mode 100644 index 000000000..4bb9319d6 --- /dev/null +++ b/dist/noto_emoji_regular/u1F55E.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F55E = void 0; +var u1F55E = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2257.5 1982.5q-148.5 256.5-405 405T1300 2536q-295 0-551.5-147.5T343 1984t-149-554q0-296 148.5-552.5t405-405T1300 324t552.5 148.5 405 405T2406 1430t-148.5 552.5zm-93-1052q-134.5-230.5-365-365T1300 431q-272 0-504.5 137.5t-364 368T300 1430q0 266 134.5 498.5t367 367T1300 2430q263 0 493.5-131.5t368-364T2299 1430q0-269-134.5-499.5zm45 545Q2191 1494 2164 1494q-26 0-44.5-18.5T2101 1430q0-26 18.5-44.5t44.5-18.5q27 0 45.5 18.5t18.5 44.5q0 27-18.5 45.5zm-205-431Q1985 1027 1985 999q0-24 17.5-44.5T2048 934q25 0 44.5 18.5T2112 999q0 27-20 45t-44 18-43.5-17.5zm-317-408.5q19.5-18 43.5-18 28 0 46.5 19.5T1796 681q0 29-19.5 46.5T1732 745q-27 0-45.5-18t-18.5-45q0-28 19.5-46zM912 636q20 18 20 47 0 24-18 43t-46 19q-24 0-44-16.5T804 683q0-28 19.5-46.5T868 618q24 0 44 18zm-317 408q-20 18-44 18-28 0-45.5-20T488 998q0-29 19.5-46.5T551 934q25 0 44.5 19t19.5 45q0 28-20 46zm-114.5 431.5Q462 1494 436 1494q-27 0-45.5-18t-18.5-44q0-27 18-46t46-19q26 0 44.5 18.5T499 1430q0 27-18.5 45.5zm115 341Q615 1835 615 1863q0 23-17.5 43t-46.5 20q-25 0-44-17t-19-46 19.5-47 43.5-18q25 0 44.5 18.5zm316 409Q891 2243 867 2243q-28 0-45.5-20t-17.5-45q0-29 20-46t43-17q26 0 45.5 18.5T932 2179q0 29-20.5 46.5zm865-92.5q19.5 18 19.5 46 0 25-18 44.5t-46 19.5q-25 0-44.5-18.5T1668 2179q0-28 19.5-46t45.5-18q24 0 43.5 18zm316-224.5Q2073 1926 2048 1926q-29 0-46-20t-17-44q0-28 19-46t44-18 44.5 19 19.5 45q0 29-19.5 46.5zM1449 1350h427v160h-427q-24 45-69 68v764h-160v-764q-40-21-64.5-60.5T1131 1430q0-71 50-120t119-49q49 0 88 24.5t61 64.5zm-194.5 35.5Q1236 1404 1236 1430t19 45 45 19 45-18.5 19-45.5q0-26-18.5-44.5T1300 1367t-45.5 18.5zm0-864.5q18.5-19 45.5-19 26 0 44.5 19t18.5 45-18.5 45-44.5 19q-27 0-45.5-19t-18.5-45 18.5-45z" + }, + "children": [] + }] +}; +exports.u1F55E = u1F55E; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F55F.js b/dist/noto_emoji_regular/u1F55F.js new file mode 100644 index 000000000..6a43adbe5 --- /dev/null +++ b/dist/noto_emoji_regular/u1F55F.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F55F = void 0; +var u1F55F = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2257.5 1983.5q-148.5 256.5-405 405T1300 2537t-552.5-148.5-405-405T194 1431q0-297 149-552.5T747.5 474 1300 325q296 0 552.5 148.5t405 405T2406 1431t-148.5 552.5zm-89-1046q-131.5-230.5-364-368T1300 432q-269 0-499.5 134.5t-365 365T301 1431q0 272 137.5 504.5t368 364T1300 2431q266 0 498.5-134.5t367-367T2300 1431q0-263-131.5-493.5zm41 539.5q-18.5 19-44.5 19-27 0-46-19t-19-46q0-26 19-44.5t46-18.5q26 0 44.5 18.5t18.5 44.5q0 27-18.5 46zM2005 1046q-20-17-20-46 0-24 17.5-44.5T2048 935q25 0 45 18t20 46-18.5 46-45.5 18q-24 0-44-17zm-317-409q20-18 44-18 29 0 46.5 20t17.5 45q0 28-20 45.5t-44 17.5q-23 0-43.5-17t-20.5-47q0-28 20-46zm-775.5 0q19.5 18 19.5 46 0 25-18 44.5T868 747q-24 0-44-18t-20-46 19.5-46 45.5-18q24 0 43.5 18zm-318 409q-20.5 17-44.5 17-29 0-45.5-20.5T488 999q0-29 19.5-46.5T551 935q25 0 44.5 18.5T615 1000q0 29-20.5 46zM482 1476.5q-18 18.5-44 18.5-27 0-46.5-18t-19.5-46q0-26 19-44.5t45-18.5 45 18.5 19 44.5q0 27-18 45.5zm113.5 340Q615 1834 615 1863q0 24-17.5 44.5T551 1928q-24 0-43.5-17.5T488 1864t19.5-47 43.5-18q25 0 44.5 17.5zm317 409.5q-19.5 18-44.5 18-28 0-46-19.5t-18-43.5q0-29 20-47t44-18q25 0 44.5 19t19.5 45q0 28-19.5 46zm863.5-92.5q20 17.5 20 46.5 0 25-17.5 44.5T1733 2244q-24 0-44.5-17.5T1668 2181q0-26 19-45.5t46-19.5q23 0 43 17.5zm317-223.5q-20 18-45 18-28 0-45.5-20.5T1985 1863q0-29 20-46t44-17q26 0 45 17.5t19 46.5q0 28-20 46zm-624-473l370 214-79 137-371-213q-6 4-9 5v763h-160v-763q-40-21-64.5-60.5T1131 1431q0-69 50-119t119-50 119.5 50 50.5 119q0 4-1 6zm-124-50.5q-19-18.5-45-18.5-24 0-43.5 18t-19.5 45 18.5 45 44.5 18q27 0 45.5-18t18.5-45q0-26-19-44.5zm-90-864q19-18.5 45-18.5t45 18 19 45q0 26-19 45t-45 19-45-18.5-19-45.5q0-26 19-44.5z" + }, + "children": [] + }] +}; +exports.u1F55F = u1F55F; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F560.js b/dist/noto_emoji_regular/u1F560.js new file mode 100644 index 000000000..ef1c9f761 --- /dev/null +++ b/dist/noto_emoji_regular/u1F560.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F560 = void 0; +var u1F560 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2257.5 1982.5q-148.5 256.5-405 405T1300 2536q-295 0-551.5-147.5T343 1984t-149-554q0-296 148.5-552.5t405-405T1300 324q297 0 552.5 149T2257 877.5t149 552.5q0 296-148.5 552.5zm-96-1056q-137.5-232.5-368-364T1300 431q-266 0-499 134.5t-367 367T300 1430q0 266 134.5 498.5t367 367T1300 2430q263 0 493.5-131.5t368-364T2299 1430q0-271-137.5-503.5zm47 549.5q-18.5 19-44.5 19-27 0-45.5-19t-18.5-46q0-26 18.5-44.5t45.5-18.5q26 0 44.5 18.5t18.5 44.5q0 27-18.5 46zm-204-431q-19.5-17-19.5-46 0-24 17.5-44.5T2048 934q24 0 44 18.5t20 46.5q0 25-18 44t-46 19q-24 0-43.5-17zM1775 728.5q-21 17.5-45 17.5-28 0-45-20t-17-43q0-28 19-46.5t44-18.5q26 0 45.5 19t19.5 46q0 28-21 45.5zm-864-93q20 17.5 20 46.5 0 24-17.5 44T867 746q-24 0-43.5-17.5T804 682q0-27 19-45.5t45-18.5q23 0 43 17.5zm-316.5 409Q574 1062 549 1062q-28 0-45-20t-17-44q0-28 19.5-46t44.5-18 44.5 19 19.5 45q0 29-20.5 46.5zm-113.5 431q-18 18.5-44 18.5-27 0-46.5-18t-19.5-46q0-26 19-44.5t45-18.5 45 18.5 19 44.5q0 27-18 45.5zm114 341q20 17.5 20 46.5 0 24-18 44t-46 20q-25 0-44.5-18t-19.5-46q0-27 18.5-45.5T550 1799q25 0 45 17.5zM910.5 2226q-20.5 17-44.5 17-29 0-45.5-20t-16.5-44q0-29 20-46.5t43-17.5q25 0 44.5 18.5T931 2180q0 29-20.5 46zm865-93.5q20.5 17.5 20.5 46.5 0 24-17.5 44t-45.5 20q-25 0-45-18t-20-46 20-46 44-18q23 0 43.5 17.5zM2092 1909q-20 18-44 18-28 0-45.5-20.5T1985 1862q0-28 19.5-45.5t43.5-17.5q27 0 45.5 18.5t18.5 44.5q0 29-20 47zm-649-389l214 370-138 80-139-242v614h-160v-763q-40-21-65-60.5t-25-88.5q0-69 50.5-119t119.5-50 119 50 50 119q0 25-7 47.5t-19 42.5zm-188.5-44q18.5 19 45.5 19 26 0 44.5-19t18.5-46q0-26-18.5-44t-44.5-18q-25 0-44.5 17t-19.5 45q0 27 18.5 46zm0-955q18.5-19 45.5-19 26 0 44.5 19t18.5 45-18.5 45-44.5 19q-27 0-45.5-19t-18.5-45 18.5-45z" + }, + "children": [] + }] +}; +exports.u1F560 = u1F560; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F561.js b/dist/noto_emoji_regular/u1F561.js new file mode 100644 index 000000000..fe6c1e0a5 --- /dev/null +++ b/dist/noto_emoji_regular/u1F561.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F561 = void 0; +var u1F561 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2257 1983.5Q2108 2239 1852.5 2388T1300 2537q-296 0-552.5-148.5t-405-405T194 1431t148-553 405-405.5T1300 324t552.5 148.5 405 405T2406 1431t-149 552.5zM2165.5 932Q2032 701 1801 566t-501-135q-273 0-506 138T430.5 938.5 300 1431q0 263 131.5 493.5t364 368T1300 2430q269 0 499.5-134.5t365-365T2299 1431q0-268-133.5-499zm43 543.5Q2190 1494 2164 1494q-27 0-45.5-18.5T2100 1431q0-27 18.5-45.5t45.5-18.5q26 0 44.5 18.5t18.5 45.5q0 26-18.5 44.5zm-204.5-431q-19-17.5-19-45.5 0-24 17-44t46-20q23 0 43.5 17.5T2112 999q0 28-20 45.5t-45 17.5q-24 0-43-17.5zm-1092.5-409Q931 653 931 682q0 23-17.5 43.5T867 746q-24 0-43.5-17.5T804 682q0-27 19-45.5t44-18.5 44.5 17.5zm-317 409Q574 1062 551 1062q-28 0-46-19.5T487 999q0-29 20-46.5t44-17.5q27 0 45.5 18t18.5 45q0 29-20.5 46.5zm-114.5 431q-19 18.5-45 18.5t-45-18.5-19-44.5q0-27 19-45.5t45-18.5 45 18.5 19 45.5q0 26-19 44.5zM595 1817q20 18 20 47 0 23-17.5 42.5T551 1926q-24 0-44-17.5t-20-45.5q0-26 19.5-45t44.5-19q24 0 44 18zm316.5 408.5Q892 2243 867 2243q-28 0-45.5-19.5T804 2179q0-29 19.5-46.5T867 2115t44 18 20 46q0 29-19.5 46.5zM1776 2133q20 18 20 46 0 25-18.5 44.5T1732 2243q-26 0-45-18.5t-19-46.5q0-29 20.5-46t42.5-17q25 0 45 18zm315.5-224.5Q2071 1926 2048 1926q-29 0-46-20t-17-43q0-28 19-46t43-18q25 0 45 17.5t20 45.5q0 29-20.5 46.5zm-641-402Q1432 1541 1403 1564v458h-24v320h-159v-320h-24v-458q-30-24-48-58t-18-76q0-69 50.5-119t119.5-50 119 50 50 119q0 42-18.5 76.5zM1255 1385q-19 18-19 46 0 26 18.5 44.5t45.5 18.5q26 0 44.5-18.5t18.5-44.5-18.5-45-44.5-19-45 18zm-.5-864q18.5-19 45.5-19 26 0 44.5 19t18.5 45-18.5 45-44.5 19q-27 0-45.5-19t-18.5-45 18.5-45zM1776 728.5q-20 17.5-44 17.5-28 0-46-20t-18-43q0-28 19.5-46.5T1732 618t44.5 19 19.5 45q0 29-20 46.5z" + }, + "children": [] + }] +}; +exports.u1F561 = u1F561; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F562.js b/dist/noto_emoji_regular/u1F562.js new file mode 100644 index 000000000..0eb7a043a --- /dev/null +++ b/dist/noto_emoji_regular/u1F562.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F562 = void 0; +var u1F562 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2257.5 1981.5q-148.5 256.5-405 405T1300 2535q-295 0-551.5-147.5T343 1983t-149-554q0-295 148.5-551.5t405-405T1300 324t552 148.5T2257 877t149 552-148.5 552.5zm-96-1056q-137.5-232.5-368-364T1300 430q-266 0-499 134.5t-367 367T300 1429q0 266 134.5 498.5t367 367T1300 2429q263 0 493.5-131.5t368-364T2299 1429q0-271-137.5-503.5zm47 549.5q-18.5 19-44.5 19-27 0-45.5-19t-18.5-46q0-26 18.5-44.5t45.5-18.5q26 0 44.5 18.5t18.5 44.5q0 27-18.5 46zm-204-431q-19.5-17-19.5-46 0-24 17.5-44.5T2048 933q24 0 44 18.5t20 46.5q0 25-18 44t-46 19q-24 0-43.5-17zM1775 727.5q-21 17.5-45 17.5-28 0-45-20t-17-43q0-28 19-46.5t44-18.5q26 0 45.5 19t19.5 46q0 28-21 45.5zm-864-93q20 17.5 20 46.5 0 23-17 43.5T868 745q-24 0-44-17t-20-46q0-27 18.5-46t45.5-19q23 0 43 17.5zm-316.5 409Q574 1061 549 1061q-28 0-45-20t-17-44q0-28 19.5-46t44.5-18 44.5 19 19.5 45q0 29-20.5 46.5zM480 1475q-19 19-45 19t-45-19-19-46q0-26 19-44.5t45-18.5 45 18.5 19 44.5q0 27-19 46zm115 340.5q20 17.5 20 46.5 0 24-18 44t-46 20q-25 0-44.5-18t-19.5-46q0-27 18.5-45.5T550 1798q25 0 45 17.5zM910.5 2225q-20.5 17-44.5 17-29 0-45.5-20t-16.5-44q0-29 19.5-46.5T867 2114q25 0 44.5 18.5T931 2179q0 29-20.5 46zm865.5-93q20 18 20 46 0 24-17.5 44t-45.5 20q-25 0-45-18t-20-46 20-46 43-18q25 0 45 18zm316-224q-20 18-44 18-28 0-45.5-20.5T1985 1861q0-28 19.5-45.5t43.5-17.5q27 0 45.5 18.5t18.5 44.5q0 29-20 47zm-648-387q-25 39-64 61v759h-160v-611l-139 242-138-80 213-370q-12-20-19-42t-7-47q0-69 49.5-119t120.5-50 120 50 49 119q0 49-25 88zm-188.5-134q-18.5 19-18.5 45t18.5 44.5 45.5 18.5q26 0 44.5-18.5t18.5-44.5-18.5-45-44.5-19q-27 0-45.5 19zm-1-866.5Q1273 502 1300 502q26 0 44.5 18t18.5 45q0 26-18.5 45t-44.5 19q-27 0-45.5-18.5T1236 565q0-26 18.5-44.5z" + }, + "children": [] + }] +}; +exports.u1F562 = u1F562; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F563.js b/dist/noto_emoji_regular/u1F563.js new file mode 100644 index 000000000..baf81b66f --- /dev/null +++ b/dist/noto_emoji_regular/u1F563.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F563 = void 0; +var u1F563 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2257 1984.5Q2108 2240 1852.5 2389T1300 2538q-296 0-552.5-148.5t-405-405T194 1432t148-553 405-405.5T1300 325t552.5 148.5 405 405T2406 1432t-149 552.5zm-95.5-1057q-137.5-232.5-368-364T1300 432q-266 0-498.5 134.5t-367 367T300 1432q0 263 131.5 493.5t364 368T1300 2431q269 0 499.5-134.5t365-365T2299 1432q0-272-137.5-504.5zm47 549Q2190 1495 2164 1495q-27 0-45.5-18.5T2100 1432q0-27 18.5-45.5t45.5-18.5q26 0 44.5 18.5t18.5 45.5q0 26-18.5 44.5zm-204-430.5q-19.5-17-19.5-46 0-23 17-43.5t46-20.5q23 0 43.5 17.5t20.5 46.5q0 25-18 44t-46 19q-24 0-43.5-17zM1776 729.5q-20 17.5-44 17.5-28 0-46-20t-18-43q0-28 19.5-46t44.5-18q27 0 45.5 18.5T1796 683q0 29-20 46.5zm-952.5 0Q804 712 804 683q0-25 17-44t46-19q24 0 44 17t20 46q0 28-20 46t-44 18-43.5-17.5zm-229 316Q574 1063 551 1063q-28 0-46-19.5t-18-43.5q0-29 20-46.5t44-17.5q27 0 45.5 18.5T615 999q0 29-20.5 46.5zm-114.5 431q-19 18.5-45 18.5t-45-18.5-19-44.5q0-27 19-45.5t45-18.5 45 18.5 19 45.5q0 26-19 44.5zM595 1818q20 18 20 47 0 23-17.5 42.5T551 1927q-24 0-44-17.5t-20-45.5q0-26 19.5-45t44.5-19q24 0 44 18zm316.5 408.5Q892 2244 867 2244q-28 0-45.5-19.5T804 2181q0-29 20-47t44-18q23 0 43 18t20 46q0 29-19.5 46.5zm864-92q20.5 17.5 20.5 46.5 0 24-18 43.5t-46 19.5q-26 0-45-18.5t-19-46.5q0-29 19.5-45.5t43.5-16.5 44.5 17.5zm316.5-225q-20 17.5-44 17.5-29 0-46-20t-17-43q0-28 19-46t44-18q24 0 44 18t20 45q0 29-20 46.5zM1444 1519q-25 39-64 61v763h-160v-763l-4-2q-3 0-6-3l-370 214-80-138 371-214-1-6q0-69 50.5-119t119.5-50 119 50 50 119q0 49-25 88zm-189-132.5q-19 18.5-19 45.5 0 26 18.5 44.5t45.5 18.5q26 0 44.5-18.5t18.5-44.5q0-23-17-43.5t-46-20.5q-26 0-45 18.5zm-.5-864.5q18.5-19 45.5-19 26 0 44.5 19t18.5 45-18.5 45-44.5 19q-27 0-45.5-19t-18.5-45 18.5-45z" + }, + "children": [] + }] +}; +exports.u1F563 = u1F563; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F564.js b/dist/noto_emoji_regular/u1F564.js new file mode 100644 index 000000000..5e8fd9722 --- /dev/null +++ b/dist/noto_emoji_regular/u1F564.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F564 = void 0; +var u1F564 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2257.5 1981.5q-148.5 256.5-405 405T1300 2535q-295 0-551.5-147.5T343 1983t-149-554q0-295 148.5-551.5t405-405T1300 324t552 148.5T2257 877t149 552-148.5 552.5zm-96-1056q-137.5-232.5-368-364T1300 430q-266 0-499 134.5t-367 367T300 1429q0 266 134.5 498.5t367 367T1300 2429q263 0 493.5-131.5t368-364T2299 1429q0-271-137.5-503.5zm47 549.5q-18.5 19-44.5 19-27 0-45.5-19t-18.5-46q0-26 18.5-44.5t45.5-18.5q26 0 44.5 18.5t18.5 44.5q0 27-18.5 46zm-204-431q-19.5-17-19.5-46 0-23 17-43.5t46-20.5q23 0 43.5 17.5T2112 998q0 25-18 44t-46 19q-24 0-43.5-17zM1775 727.5q-21 17.5-45 17.5-28 0-45-20t-17-43q0-28 19-46.5t44-18.5q26 0 45.5 19t19.5 46q0 28-21 45.5zm-951 .5q-20-17-20-46 0-25 17.5-45t46.5-20q23 0 43 17.5t20 46.5q0 27-18 45.5T868 745q-24 0-44-17zm-229.5 315.5Q574 1061 550 1061q-29 0-46-20t-17-44q0-28 19.5-46t44.5-18 44.5 19 19.5 45q0 29-20.5 46.5zM480 1475q-19 19-45 19t-45-19-19-46q0-26 19-44.5t45-18.5 45 18.5 19 44.5q0 27-19 46zm115 340.5q20 17.5 20 46.5 0 24-18 44t-46 20q-25 0-44.5-18t-19.5-46q0-27 18.5-45.5T550 1798q25 0 45 17.5zM910.5 2225q-20.5 17-44.5 17-29 0-45.5-20t-16.5-44q0-29 19.5-46.5T867 2114q25 0 44.5 18.5T931 2179q0 29-20.5 46zm865.5-93q20 18 20 46 0 24-17.5 44t-45.5 20q-25 0-45-18t-20-46 20-46 43-18q25 0 45 18zm316-224q-20 18-44 18-28 0-45.5-20.5T1985 1861q0-28 19-45.5t43-17.5q25 0 45 18t20 46-20 46zm-648-390.5q-25 39.5-64 60.5v763h-160v-763q-44-22-69-69H724v-159h427q22-40 61-65t88-25q69 0 119 50t50 119q0 49-25 88.5zm-99.5-133Q1326 1366 1300 1366t-45 18.5-19 44.5q0 27 18.5 46t45.5 19q26 0 44.5-18.5t18.5-46.5q0-26-18.5-44.5zm-90-864Q1273 502 1300 502q26 0 44.5 18t18.5 45q0 26-18.5 45t-44.5 19q-27 0-45.5-18.5T1236 565q0-26 18.5-44.5z" + }, + "children": [] + }] +}; +exports.u1F564 = u1F564; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F565.js b/dist/noto_emoji_regular/u1F565.js new file mode 100644 index 000000000..2c83b221b --- /dev/null +++ b/dist/noto_emoji_regular/u1F565.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F565 = void 0; +var u1F565 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2257 1983.5Q2108 2239 1852.5 2388T1300 2537q-296 0-552.5-148.5t-405-405T194 1431t148.5-552.5 405-405T1300 325t552.5 148.5 405 405T2406 1431q0 297-149 552.5zM2165.5 932Q2032 701 1801 566t-501-135q-273 0-506 138T430.5 938.5 300 1431q0 263 131.5 493.5t364 368T1300 2430q269 0 499.5-134.5t365-365T2299 1431q0-268-133.5-499zm43 543.5Q2190 1494 2164 1494q-27 0-45.5-18.5T2100 1431q0-27 18.5-45.5t45.5-18.5q26 0 44.5 18.5t18.5 45.5q0 26-18.5 44.5zm-204-430.5q-19.5-17-19.5-46 0-23 17-43.5t46-20.5q23 0 43.5 17.5T2112 999q0 25-18 44t-46 19q-24 0-43.5-17zm-1181-316.5Q804 711 804 682q0-25 17-44t46-19q24 0 44 18t20 46q0 25-19.5 44T867 746q-24 0-43.5-17.5zm-229 316Q574 1062 550 1062q-29 0-46-20t-17-43q0-29 20-46.5t44-17.5q27 0 45.5 18.5T615 998q0 29-20.5 46.5zm-114.5 431q-19 18.5-45 18.5t-45-18.5-19-44.5q0-27 19-45.5t45-18.5 45 18.5 19 45.5q0 26-19 44.5zM595 1817q20 18 20 47 0 23-17.5 42.5T551 1926q-25 0-44.5-17.5T487 1863q0-26 19.5-45t44.5-19q24 0 44 18zm316.5 407.5Q892 2243 868 2243q-29 0-46.5-19.5T804 2180q0-29 20-47t44-18q23 0 43 18t20 45q0 28-19.5 46.5zm864-91q20.5 17.5 20.5 45.5 0 24-18.5 44t-46.5 20q-25 0-44-18.5t-19-46.5q0-29 19.5-45.5t43.5-16.5 44.5 17.5zm316.5-225q-20 17.5-44 17.5-29 0-46.5-20t-17.5-43q0-28 19.5-46t44.5-18q24 0 44 18t20 45q0 29-20 46.5zM1444 1518q-25 39-65 61v763h-159v-763q-40-22-65-61t-25-88l1-2v-3l-370-213 79-139 370 214q20-12 42.5-19t47.5-7q69 0 119 50t50 119q0 49-25 88zm-189.5-132q-18.5 18-18.5 45 0 26 18.5 44.5t45.5 18.5q26 0 44.5-16t18.5-44q0-27-16.5-46.5T1299 1368q-26 0-44.5 18zM1775 728.5q-20 17.5-43 17.5-28 0-46-20t-18-44q0-28 20-45.5t44-17.5q26 0 44.5 17.5T1795 683q0 28-20 45.5zM1254.5 521q18.5-19 45.5-19 26 0 44.5 19t18.5 45-18.5 45-45.5 19q-26 0-44.5-19t-18.5-45 18.5-45z" + }, + "children": [] + }] +}; +exports.u1F565 = u1F565; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F566.js b/dist/noto_emoji_regular/u1F566.js new file mode 100644 index 000000000..e57ac99c5 --- /dev/null +++ b/dist/noto_emoji_regular/u1F566.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F566 = void 0; +var u1F566 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2257.5 1981.5q-148.5 256.5-405 405T1300 2535t-552.5-148.5-405-405T194 1429q0-295 148.5-551.5t405-405T1300 324t552 148.5T2257 877t149 552-148.5 552.5zm-96-1056q-137.5-232.5-368-364T1300 430q-266 0-499 134.5t-367 367T300 1429q0 261 130.5 492.5T794 2291t506 138q270 0 501-135t364.5-366 133.5-499q0-271-137.5-503.5zm47 549.5q-18.5 19-44.5 19-27 0-45.5-19t-18.5-46q0-26 18.5-44.5t45.5-18.5q26 0 44.5 18.5t18.5 44.5q0 27-18.5 46zm-204-431q-19.5-17-19.5-46 0-23 17-43.5t46-20.5q23 0 43.5 17.5T2112 998q0 25-18 44t-46 19q-24 0-43.5-17zm-1093-408.5Q931 654 931 682q0 23-17 43t-46 20q-24 0-44-17t-20-46q0-27 18.5-46t45.5-19q24 0 43.5 18.5zm-317 408Q574 1061 550 1061q-29 0-46-20t-17-44q0-28 19.5-45.5T551 934q27 0 45.5 18.5T615 997q0 29-20.5 46.5zM480 1475q-19 19-45 19t-45-19-19-46q0-26 19-44.5t45-18.5 45 18.5 19 44.5q0 27-19 46zm114.5 340.5Q615 1833 615 1862q0 24-18 44t-46 20q-25 0-44.5-18t-19.5-46q0-27 18.5-45.5T550 1798q24 0 44.5 17.5zM911 2224q-20 18-45 18-29 0-45.5-20t-16.5-44q0-29 19.5-46.5T867 2114q25 0 44.5 19t19.5 45q0 28-20 46zm865-92q20 18 20 46 0 24-17.5 44t-46.5 20q-24 0-44-18t-20-46 20-46 43-18q25 0 45 18zm316-224q-20 18-44 18-28 0-46-20.5t-18-43.5q0-28 19.5-46t43.5-18q25 0 45 18t20 46-20 46zm-648-390.5q-25 39.5-65 60.5v764h-159v-764q-40-21-65-60.5t-25-88.5q0-24 7-46t19-42L943 971l138-80 213 370 6-1q69 0 119 50t50 119q0 49-25 88.5zm-189.5-42.5q18.5 19 45.5 19 25 0 44-19t19-46q0-26-18.5-44.5T1300 1366t-45 18.5-19 44.5q0 27 18.5 46zm520-747.5Q1754 745 1730 745q-27 0-44.5-20t-17.5-44q0-27 19.5-45.5T1731 617t44 17 20 47q0 29-20.5 46.5zm-520-207Q1273 502 1300 502q26 0 44.5 18.5T1363 565q0 27-18.5 45.5T1299 629q-26 0-44.5-18.5T1236 565q0-26 18.5-44.5z" + }, + "children": [] + }] +}; +exports.u1F566 = u1F566; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F567.js b/dist/noto_emoji_regular/u1F567.js new file mode 100644 index 000000000..7824e164a --- /dev/null +++ b/dist/noto_emoji_regular/u1F567.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F567 = void 0; +var u1F567 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2257 1983.5Q2108 2239 1852.5 2388T1300 2537q-296 0-552.5-148.5t-405-405T194 1431q0-295 147.5-551.5T746 474t554-149q296 0 552.5 148.5t405 405T2406 1431q0 297-149 552.5zm-95.5-1057q-137.5-232.5-368-364T1300 431q-266 0-498.5 134.5t-367 367T300 1431q0 263 131.5 493.5t364 368T1300 2430q269 0 499.5-134.5t365-365T2299 1431q0-272-137.5-504.5zm47 549Q2190 1494 2164 1494q-27 0-45.5-18.5T2100 1431q0-27 18.5-45.5t45.5-18.5q26 0 44.5 18.5t18.5 45.5q0 26-18.5 44.5zM2004 1045q-19-17-19-46 0-23 17-43.5t46-20.5q23 0 43.5 17.5T2112 999q0 25-18 44t-46 19q-25 0-44-17zM911 637q20 18 20 46 0 23-18 43t-46 20q-24 0-43.5-17.5T804 682q0-27 18-45t45-18q24 0 44 18zm-316.5 407.5Q574 1062 550 1062q-29 0-46-20t-17-43q0-29 20-46.5t44-17.5q27 0 45.5 18.5T615 998q0 29-20.5 46.5zm-114.5 431q-19 18.5-45 18.5t-45-18.5-19-44.5q0-27 19-45.5t45-18.5 45 18.5 19 45.5q0 26-19 44.5zM595 1817q20 18 20 47 0 23-17.5 42.5T551 1926q-25 0-44.5-17.5T487 1863q0-26 19.5-45t44.5-19q24 0 44 18zm316.5 407.5Q892 2243 868 2243q-29 0-46.5-19.5T804 2180q0-29 20-46.5t44-17.5q25 0 44 17.5t19 44.5q0 28-19.5 46.5zm864-91q20.5 17.5 20.5 45.5 0 24-18.5 44t-46.5 20q-25 0-44-18.5t-19-46.5q0-29 19.5-45.5t43.5-16.5 44.5 17.5zm316.5-225q-20 17.5-44 17.5-29 0-46.5-20t-17.5-43q0-28 19.5-46t44.5-18q24 0 44 18t20 45q0 29-20 46.5zM1379 1282q41 20 65.5 60t24.5 89q0 48-25 87t-65 61v763h-159v-763q-40-22-65-61t-25-87 24.5-88.5 65.5-60.5V839h159v443zm-124 103q-19 18-19 46 0 26 18.5 44.5t45.5 18.5q26 0 44.5-18.5t18.5-44.5-18.5-45-44.5-19-45 18zm520-656.5q-20 17.5-43 17.5-28 0-46-20t-18-44q0-28 20-45.5t44-17.5q26 0 44.5 17.5T1795 683q0 28-20 45.5zM1254.5 521q18.5-19 45.5-19 26 0 44.5 19t18.5 46q0 26-18.5 44.5T1299 630q-26 0-44.5-18.5T1236 567q0-27 18.5-46z" + }, + "children": [] + }] +}; +exports.u1F567 = u1F567; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F5FB.js b/dist/noto_emoji_regular/u1F5FB.js new file mode 100644 index 000000000..1ec84a30e --- /dev/null +++ b/dist/noto_emoji_regular/u1F5FB.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F5FB = void 0; +var u1F5FB = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2405.5 1997.5Q2356 2035 2296 2035q-70 0-148-35.5t-131-35.5q-51 0-154 42.5t-175 42.5q-71 0-171-42.5t-161-42.5q-59 0-170 44.5T977 2053q-103 0-167-44.5T697 1964q-44 0-163 36t-255 36q-47 0-90.5-34t-43.5-82q0-63 87-132t212-203.5 221-271T832 1069t120.5-220.5T1067 736q32 0 61 24t50 24q24 0 56.5-30.5T1299 723q43 0 73 34.5t55 34.5q27 0 55-35.5t76-35.5q41 0 80.5 37t83 125.5T1858 1137t232 335.5 213 245.5 113 108 39 82q0 52-49.5 89.5zM1783 1399q9 2 18 2 19 0 33.5-7t14.5-28q0-20-74.5-121T1652 1046l-43-87q-19-38-34-59t-31-21q-27 0-56.5 29.5T1432 938q-28 0-58-27.5t-67-27.5q-16 0-43.5 26t-45.5 26q-27 0-58.5-28t-48.5-28q-39 0-60 58t-114 209.5-108 173-15 42.5q0 35 45 35t117-21 116-21q48 0 131 38.5t140 38.5q44 0 106-33.5t128-33.5q38 0 82.5 12t86.5 20z" + }, + "children": [] + }] +}; +exports.u1F5FB = u1F5FB; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F5FC.js b/dist/noto_emoji_regular/u1F5FC.js new file mode 100644 index 000000000..0a5c87cda --- /dev/null +++ b/dist/noto_emoji_regular/u1F5FC.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F5FC = void 0; +var u1F5FC = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2063 2562h-277l-8-11-72-82q-89-97-134.5-123.5T1488 2319q-42 0-72 28t-30 83q0 41 1 74.5t3 57.5h-180l3-58q0-33 1-74 0-54-29.5-82.5T1114 2319q-40 0-84.5 25.5T895 2469l-37 41-46 52H537l85-78q134-124 281-324.5t204-445.5q-30-7-51.5-43.5T1034 1588q0-53 29-76t89-28q28-176 43.5-369.5T1211 748h49l15-519q0-13 9.5-21t20.5-8q13 0 21 8t8 21l15 520h39q0 172 16 368.5t44 367.5q60 3 88 28t28 78q0 43-18 75t-54 45q57 242 199 439t289 335l26 25zm-949-1003q-5 5-7.5 10.5t-2.5 18.5q0 20 8 37t14 25q26 7 65.5 11t98.5 4q43 0 84-3t81.5-11.5 40.5-57.5q0-19-11-31t-156-12h-66l-79 1q-22 0-41 2.5t-29 5.5zm137-373l-6 59-8 63h45q21 0 44-2h17q9 0 20 1l-8-62q-4-30-6-59h-98zm13-226q19 0 37.5 1.5t32.5 1.5q0-32-1-89.5t-1-66.5h-62q0 5-1 11t-1 12q0 27-1 61t-3 69z" + }, + "children": [] + }] +}; +exports.u1F5FC = u1F5FC; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F5FD.js b/dist/noto_emoji_regular/u1F5FD.js new file mode 100644 index 000000000..bdf7a4e6d --- /dev/null +++ b/dist/noto_emoji_regular/u1F5FD.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F5FD = void 0; +var u1F5FD = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2276 1680q11 0 11 11 0 3-1.5 6t-4.5 4l-312 129q5 15 7 32.5t2 34.5q0 32-9.5 62t-9.5 60q0 32 23.5 78.5t23.5 85.5q0 16-4 29t-8 25l-9 23q-4 12-4 25 0 42 67 121t85 109H574q-14-14-25-31t-11-38q0-10 3.5-19t8.5-18l8-18q4-8 4-17 0-14-8.5-29t-18.5-30l-29-41q-15-21-25-43t-10-44q0-31 68.5-144.5T673 1857l-29-145-16-88q-13-66-28-132t-37-139q-45 0-66-12.5t-28-35.5-7-89q-8-6-20.5-19t-12.5-29l1-6v-10q0-17-13.5-25t-13.5-33q0-8 1.5-15.5t1.5-14.5q0-6-3-10l-6-8q-5-7-7-11.5t-2-11.5q0-16 6.5-24.5T401 976q0-18-6.5-30t-6.5-26q0-10 9-27-38-10-61.5-24T312 836V684q0-18 27-33t69-24q-17-20-29.5-48T366 516q0-51 34-114t94-90 150-37 99.5-18.5T834 221l7 3q11 25 11 49 0 25-7.5 48T826 361l-13 20q-9 13-9 27 0 71-17.5 127.5T736 623q48 10 79.5 25.5T847 684v152q0 22-34.5 39T710 902q11 21 16 48l10 58q0 6 6.5 54.5t6.5 79.5q0 17-1 27.5t-1 24.5q0 38 7 90.5t11 64.5q0 5 10 35l27 78q17 53 40.5 117.5T889 1708q14-5 28.5-9.5t26.5-4.5q28 0 39.5 62t12.5 65l215-64q6-56 32-105l-272-237q-4-4-4-7 0-10 15-10l329 158q19-20 47-38.5t45-26.5l-93-367q0-3 2-6t7-3q6 0 10 4l192 338 23-2q11 0 23-1 13 0 25 1l26 2 164-329q6-4 10-4 8 0 8 11l-70 354q28 12 51 28t44 36l283-174q2 0 5-1 4 0 7.5 3.5t3.5 7.5q0 2-3 5l-232 249q11 21 20 40t21 41zm-573 292q0-43-24-76t-68-33q-65 0-68.5 64.5T1511 2006q16 0 41.5 9.5t25.5 25.5q0 7-6.5 9t-13.5 2h-11q-13 0-27 4t-27 8l-25 8q-11 4-17 4-8 0-8-8 0-15 8-29t25-22q-14 0-26.5-5.5T1437 1986q0-45 13.5-45t23.5-21 10-80q0-50 26.5-66.5t72.5-20 60-6.5q-19-12-39-20t-40-15l-41-13q-21-7-42-16l-18-7q-6-2-11-2-23 4-55.5 47t-59 81-26.5 74q0 3 2 4 14-20 38.5-34.5t50.5-14.5h12q3 11 10.5 32t7.5 38q0 25-23.5 26t-42.5 16-19 40q0 43 26.5 99t52.5 79l10 7q3 0 24 16.5t63 16.5q66 0 114.5-57.5T1703 1972zm-697-97q8 36 20.5 60.5t32.5 47.5l26 30 136-72-5-37q-3-17-5-35zm289 364q4-17 6.5-33t2.5-27q0-22-23-31.5t-36-33.5-13-75l-114 26q4 14 6.5 28t4.5 33q6 0 10.5 1t9.5 1h13q14 0 49.5 17t83.5 94zm247-130.5q-17 7.5-40 7.5-8 0-14.5-2.5t-6.5-8.5q0-12 23-19t41-7q5 0 9.5 1.5t4.5 8.5q0 12-17 19.5z" + }, + "children": [] + }] +}; +exports.u1F5FD = u1F5FD; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F5FE.js b/dist/noto_emoji_regular/u1F5FE.js new file mode 100644 index 000000000..7512a8e65 --- /dev/null +++ b/dist/noto_emoji_regular/u1F5FE.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F5FE = void 0; +var u1F5FE = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M318 2430q2-2 8-2 8 0 12 8t4 14q0 13-19.5 52.5t-39.5 50-46 37-60 26.5q-11 0-20-5.5t-9-17.5q0-15 10-30.5t16-37 22-39 40-17.5q21 0 31-4t17-10l13-13q6-6 21-12zm220-300q-33 29-57 83t-29.5 76-34 44.5T360 2356q-31 0-51-29t-20-62q0-23 8-46t8-46q0-13-4.5-20.5T289 2139l-14-11q-14-11-22-26.5t-8-52.5q0-53 43-87t98-34q30 0 53.5 12.5t62.5 26 39 31.5q0 8-3.5 14t-3.5 13q0 15 18.5 27.5T571 2078q0 23-33 52zm1268-855l-20 48q-13 37-54.5 63t-41.5 59q0 13 1.5 29.5t1.5 31.5q0 44-30 76t-30 86q0 20 5.5 38.5t5.5 35.5q0 14-9 31.5t-29 35.5-34.5 19.5-56 8-70.5 22-63.5 20-66.5 12-48 7.5h-14q-39 0-51.5-24t-28.5-24q-11 0-18.5 9t-7.5 20 14 23.5 14 25.5q0 14-14.5 28.5T1126 1984l-19 13q-23 17-52.5 29.5T996 2039t-51-17.5-22-44.5q0-9 5-18l19-35q4-9 4-18 0-18-15-26t-32-8q-38 0-60 16t-57 17l-32 2q-55 3-83.5 24.5T610 1953q-73 0-106-13.5t-33-42.5q0-25 15.5-40.5t55-26T611 1797t47.5-50 45.5-27q14 0 31 5t40 5q35 0 72-8t71-8q51 0 64.5 17t21.5 18q50 0 53-42t42.5-64 42.5-48l4-37q3-35 23-57t62-22q10 0 17.5 1.5t7.5 10.5q0 16-16.5 35t-16.5 35q0 8 5 11.5t13 3.5q33 0 86-38t83-70.5 48.5-63 50.5-80.5 32-93q0-22-10-41.5t-10-39.5q0-19 19.5-55t25.5-53l9-30q4-18 31-34t58-16q32 0 49 17t20 43l4 32q2 32 40 77.5t38 92.5q0 30-9 51zm-969 653q27 2 46.5 22.5T903 1998q0 24-11 34l-50 46q-14 13-31 13-14 0-29-16.5t-33-16.5q-35 0-53 46.5t-44 46.5q-31 0-42-23.5t-11-52.5q0-57 31.5-87t47.5-30q11 0 24 6.5t25 6.5q33-5 46-24.5t38-19.5h14zM2140 639l16 7q7 4 12.5 8.5t5.5 11.5q0 15-29 33t-77.5 22-77.5 26-36 56.5-24 49.5-41 15q-34 0-78-29t-74-29q-16 0-29 7t-29 7q-6 0-18.5-5.5T1638 813q-5 0-9 2.5t-4 8.5q0 14 30 28t30 35q0 13-8 17t-20 4q-11 0-18.5 2t-13.5 6l-16 11q-9 6-18 10.5t-22 4.5q-15 0-20-9.5t-5-18.5q0-8 1.5-17.5t1.5-19.5q0-19-16.5-33.5T1514 801v-12q0-16 8-27t27-21l20-10q9-4 9-11 0-5-2-10.5t-2-10.5q0-19 10.5-25.5t26.5-7.5l29-1q35-2 56.5-67t21.5-117q0-16-3-34t-3-35q0-15 3-25.5t6-18.5q10-6 27.5-8.5t37.5-2.5q30 0 43.5 25t75 83.5T2036 536q2 2 8 2 16 0 37-15.5t36-15.5q13 0 20 7.5t7 19.5q0 15-12.5 29.5T2119 599q0 19 5.5 27t15.5 13zm67-140l11-3q5 0 11-1 11 0 17 7t6 16q0 12-9 20l-17 17q-9 14-22.5 27t-30.5 13q-3 0-4-1l-7-7q-7-10-7-18 0-18 17-39.5t35-30.5zm231-97q-14 14-40 28l-24 14q-11 8-35.5 31.5T2289 499q-11 0-17-5t-6-22q5-24 50.5-76.5T2403 343q18 0 33.5 6.5T2452 373q0 15-14 29z" + }, + "children": [] + }] +}; +exports.u1F5FE = u1F5FE; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F5FF.js b/dist/noto_emoji_regular/u1F5FF.js new file mode 100644 index 000000000..c5089a1cd --- /dev/null +++ b/dist/noto_emoji_regular/u1F5FF.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F5FF = void 0; +var u1F5FF = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2106 2049q-11 52-17.5 74.5t-17 90.5-31 105.5-46.5 52-72.5 28.5-89.5 22q-105 21-217 30.5t-240 9.5q-31 0-61-1l-62-2-83-5q-44-2-80-12-83 0-171.5-9T752 2415l-36-4q-78-12-187-17.5T407 2281l-4-33q-11-83-16.5-170t-5.5-181q0-414 38.5-622t210-409 375-330T1423 407q36 0 64.5 5.5T1542 427l37 15q28 9 50 22t42 27l40 28q18 13 75 47.5t116 88 82.5 110T2010 872t14.5 95 48.5 102 64.5 108.5T2181 1321t26.5 238 11.5 223q0 139-28.5 188t-84.5 79zm-21.5-532q-16.5-188-34-241t-58-116-59.5-107q-22 19-46 34t-36 15q-15 0-24.5-17t-13.5-45l-5-27q-3-17-13.5-43.5T1784 920q0-17 8-27t31-10q32 0 73 30-4-18-5-33l-3-29q-7-55-69-110.5t-153-112-150-56.5q-219 0-374.5 189.5T986 1198q0 329 26 475.5t44.5 302.5 53.5 228 88.5 106 179.5 34q141 0 284-15.5t205.5-35 68-26.5 9.5-22q-4 0-9 2l-10 4q-22 8-45.5 10t-46.5 2q-61 0-119.5 4.5T1597 2272q-42 0-83-3l-82-5q-82-6-102.5-108t-27.5-171.5-7-129.5q0-41 5-57t18-16q8 0 14 2.5t57.5 38 98 61 109 58.5 76 36.5 63.5 10.5 89 7q45 0 91-2.5t87-12.5q13-20 46-36t42.5-45 9.5-118q0-77-16.5-265zM1952 1698q14 8 14 31 0 24-22 36t-60 12h-14q-7 0-64-8t-57-34q0-23 49.5-28t71-11 48.5-6q20 0 34 8zm9-71q-35 11-97 11-69 0-159 17l-12 1q-9 0-18-6t-9-17q0-29 77.5-58.5T1881 1545h16q53 3 76 19.5t23 32.5q0 19-35 30zm-321-116q-24 4-34 4-27 0-46-35t-41-87l-26-63-48-111q-9-20-21.5-24t-85-14.5T1204 1170q-78 0-107.5-13.5T1067 1115q0-19 17-39.5t45-40.5l26-19 117-87q56-42 119-54t138-12q17 0 32.5 3t23.5 16l68 173 39 65q31 49 41.5 92t51.5 43q31 0 60 2l61 4q30 2 37.5 8t7.5 25q0 154-80.5 173t-230.5 44z" + }, + "children": [] + }] +}; +exports.u1F5FF = u1F5FF; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F600.js b/dist/noto_emoji_regular/u1F600.js new file mode 100644 index 000000000..89817ec63 --- /dev/null +++ b/dist/noto_emoji_regular/u1F600.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F600 = void 0; +var u1F600 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2415.5 1722.5q-40.5 107.5-90 169.5t-72 80-52.5 61-144 105-316.5 105-440.5 43q-239 0-444-44t-316.5-106.5-138-101.5-58.5-67.5-78-88.5-83-162-37-239q0-63 8-111t26-103 43.5-104.5 62-100 86-101T447 872t80.5-85 109-88.5 121-72.5 135-60 144.5-44q129-30 263-30 262 0 502 112.5T2179 903q165 165 221 297t56 277q0 138-40.5 245.5zM788 1196l-67-10q-26-4-43-8l-51-11q7 86 48 163t113 134v-268zm60.5-167.5Q875 1056 917 1056q45 0 77-38.5t32-89.5q0-41-27-67.5T937 834q-44 0-79.5 35.5T822 958q0 43 26.5 70.5zM1034 1217q-48-3-94.5-6.5T852 1203v304q37 21 82 39t100 31v-360zm246 7q-47 0-92.5-1t-89.5-3v371q41 7 86 11t96 5v-383zm247-4q-44 2-89.5 3t-93.5 1v383q51 0 96-4.5t87-11.5v-371zm245-17q-42 4-87.5 7.5t-93.5 6.5v361q54-13 99-30.5t82-38.5v-306zm-8-332.5q-36-36.5-78-36.5-36 0-63 27t-27 67q0 49 32 88.5t78 39.5q38 0 66-27t28-70q0-52-36-88.5zm72 596.5q81-63 123.5-147.5T2002 1167q-16 3-58 12t-108 17v271z" + }, + "children": [] + }] +}; +exports.u1F600 = u1F600; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F601.js b/dist/noto_emoji_regular/u1F601.js new file mode 100644 index 000000000..8d1873eae --- /dev/null +++ b/dist/noto_emoji_regular/u1F601.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F601 = void 0; +var u1F601 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2277.5 1824q-49.5 148-93 205T2025 2146.5t-306.5 101T1300 2288q-163 0-304.5-20T744 2215.5 560.5 2144 448 2068.5t-52-64-42.5-93.5-55.5-176.5-26-241.5q0-263 120.5-474.5t372.5-345T1300 540q287 0 540 135.5t370 347 117 470.5q0 183-49.5 331zM816 1259l-114-10-38-5q15 62 54.5 127t97.5 116v-228zm232 11q-48 0-90-3l-79-4v272q35 23 76.5 42t92.5 34v-341zm16-159q5 8 14 13t18 5q15 0 25-12.5t10-25.5q0-27-53.5-70T948 978q-58 0-103 25.5t-65 53.5l-12 16q-5 6-5 19 0 14 10 25.5t26 11.5q22 0 35-21.5t43-39 71-17.5q36 0 66 16t42 33zm217 163h-86.5l-82.5-2v354q75 16 169 18v-370zm233-2q-40 0-83 1t-87 1v370q46 0 89-4.5t81-11.5v-356zm231-9l-78 4q-42 2-90 3v341q51-14 92-33t76-41v-274zm24-152q5 8 13.5 13t17.5 5q16 0 26.5-11.5t10.5-25.5q0-10-5-19l-12-16q-20-28-65-53.5T1652 978q-57 0-102 25t-65 53l-12 17-4 8q-2 5-2 10 0 13 10 25.5t27 12.5q9 0 18-5t14-13q0-7 33-33.5t83-26.5q38 0 67.5 16.5t41.5 32.5zm41 378q59-50 99-116t54-129l-37 5-116 10v230z" + }, + "children": [] + }] +}; +exports.u1F601 = u1F601; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F602.js b/dist/noto_emoji_regular/u1F602.js new file mode 100644 index 000000000..f080686da --- /dev/null +++ b/dist/noto_emoji_regular/u1F602.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F602 = void 0; +var u1F602 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2018 2158.5Q1724 2277 1300 2277t-718-118.5T288 1880q0-390 115-696.5t340.5-469T1300 552t556.5 162.5 340.5 469 115 696.5q0 160-294 278.5zm-1524.5-344q-3.5-20.5-5.5-70t-18-49.5q-18 0-65.5 53.5T357 1860q0 36 20.5 65.5T433 1955q27 0 45.5-23t18.5-66q0-31-3.5-51.5zM639 1427q3-7 3-15 0-13-17-13-45 0-101.5 45T467 1545q0 29 16.5 53t47.5 24q61 0 77.5-83.5T634 1440zm223 117q-34-2-57-4l-63-6-15-2q7 44 40.5 103.5T862 1749v-205zm209 11q-39 0-76-2t-70-4v248q31 20 67 37t79 29v-308zm-15.5-307.5Q997 1200 915 1200q-70 0-123.5 35.5T722 1303l-4 8q-2 5-2 10 0 14 11 25.5t26 11.5q21 0 32-18 0-8 36-37.5t94-29.5q56 0 93 29.5t37 37.5q11 18 32 18 12 0 24.5-10t12.5-27q0-26-58.5-73.5zM1282 1559q-82 0-146-3v324q64 12 146 15v-336zm210-3q-66 3-147 3v336q81-3 147-15v-324zm63-216q0-8 36.5-37.5t93.5-29.5q56 0 93 29.5t37 37.5q11 18 32 18 15 0 25-11.5t10-25.5q0-31-59-76t-138-45q-83 0-141 47.5t-58 73.5q0 16 12 26.5t25 10.5q21 0 32-18zm148 209q-34 2-71 3.5t-76 2.5v310q44-14 80-30t67-36v-250zm63 203q59-54 89-105t37-78l11-37-137 13v207zm362-154q17-24 17-53 0-51-54.5-98.5T1986 1399q-17 0-17 13 0 8 4 15l5 13q9 17 26 99.5t76 82.5q31 0 48-24zm106 328q21-29 21-66 0-54-46.5-109.5T2143 1695q-17 0-19 53.5t-5.5 67.5-3.5 43q0 55 19.5 75.5t43.5 20.5q35 0 56-29z" + }, + "children": [] + }] +}; +exports.u1F602 = u1F602; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F603.js b/dist/noto_emoji_regular/u1F603.js new file mode 100644 index 000000000..414d4ae6b --- /dev/null +++ b/dist/noto_emoji_regular/u1F603.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F603 = void 0; +var u1F603 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2018 2160.5Q1724 2279 1300 2279t-718-118.5T288 1882q0-398 120.5-708.5t346-465.5T1300 553t545.5 155 346 465.5T2312 1882q0 160-294 278.5zm-1031.5-885Q955 1241 915 1241q-41 0-71 35t-30 85 29.5 86 71.5 36q41 0 72-35t31-87q0-51-31.5-85.5zM1607 1624q-11-12-26-12-21 0-37.5 25t-73.5 58-137 33q-83 0-145.5-25.5T1098 1648l-16-16q-14-15-30-15-17 0-27 11t-10 25q0 11 7 21 0 5 35.5 37.5t106 61T1333 1801q119 0 202-60.5t83-90.5q0-14-11-26zm149-348q-30-35-71-35-40 0-71.5 34.5T1582 1361q0 52 31 87t72 35q42 0 71.5-36t29.5-86-30-85z" + }, + "children": [] + }] +}; +exports.u1F603 = u1F603; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F604.js b/dist/noto_emoji_regular/u1F604.js new file mode 100644 index 000000000..b73bef107 --- /dev/null +++ b/dist/noto_emoji_regular/u1F604.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F604 = void 0; +var u1F604 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2018 2160.5Q1724 2279 1300 2279t-718-118.5T288 1882q0-398 120.5-708.5t346-465.5T1300 553t545.5 155 346 465.5T2312 1882q0 160-294 278.5zM739 1012l-1 7q0 14 9.5 25.5T774 1056q24 0 35.5-23t34.5-38.5 49-15.5q36 0 60.5 25t24.5 33q12 20 33 20 15 0 26-11.5t11-25.5q0-27-45.5-71T893 905t-108 42.5-46 64.5zm801.5 278q-32.5-27-87.5-27-32 0-95 10.5t-137 10.5q-158 0-251.5-51T834 1182q-51 0-81 33.5t-30 92.5q0 141 136.5 238t303.5 97 288.5-92.5T1573 1365q0-48-32.5-75zm101.5-147l-2-15q-8-57-53-105t-121-48q-37 0-73 16t-54 32l-12 11q-9 11-9 24 0 16 10.5 27.5t26.5 11.5q14 0 41.5-25t69.5-25q44 0 70.5 30t32 66 42.5 36q14 0 22.5-11t8.5-25z" + }, + "children": [] + }] +}; +exports.u1F604 = u1F604; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F605.js b/dist/noto_emoji_regular/u1F605.js new file mode 100644 index 000000000..34033c677 --- /dev/null +++ b/dist/noto_emoji_regular/u1F605.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F605 = void 0; +var u1F605 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2018 2160.5Q1724 2279 1300 2279t-718-118.5T288 1882q0-398 119.5-707.5T753 709t547-156 547 156 345.5 465.5T2312 1882q0 160-294 278.5zM741 1004q-2 4-2 7t-1 8q0 14 10 25.5t26 11.5q22 0 35-23.5t35.5-39T893 978q36 0 60.5 25.5T978 1035q10 21 33 21 17 0 27-11t10-26v-7q0-4-3-8l-13-21q-21-31-57.5-55T893 904q-48 0-86 26.5T752 986zm799 284.5q-33-27.5-87-27.5-27 0-94 11t-141 11q-155 0-248-51.5T834 1180q-51 0-81 33.5t-30 92.5q0 144 138.5 240.5T1164 1643q167 0 288-92.5t121-186.5q0-48-33-75.5zm102-145.5l-2-15q-9-59-54-107t-122-48q-36 0-69.5 15t-55.5 35l-12 11q-9 11-9 24 0 16 11.5 26.5t25.5 10.5q15 0 26-11l8-7q13-11 34-20.5t44-9.5q49 0 76 35.5t27 63.5q2 17 13 25t28 8q14 0 22.5-11t8.5-25zm374 208q-28-41-68-68l-15-10q-10-6-18-6-7 0-10.5 8.5t-3.5 18.5v10q0 17 1.5 33t1.5 32l-1 44q0 48 18.5 80.5t56.5 32.5q32 0 49-31.5t17-63.5q0-39-28-80z" + }, + "children": [] + }] +}; +exports.u1F605 = u1F605; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F606.js b/dist/noto_emoji_regular/u1F606.js new file mode 100644 index 000000000..d94f825b4 --- /dev/null +++ b/dist/noto_emoji_regular/u1F606.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F606 = void 0; +var u1F606 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2017 2161q-295 118-717 118t-717-118-295-279q0-390 115-696.5t340.5-469T1300 554t556.5 162.5 340.5 469 115 696.5q0 161-295 279zm-544-855q0-4 1-12 0-14-9.5-25t-26.5-11q-25 0-34 24l-13 27q-23 47-83.5 90t-145.5 43q-132 0-197.5-68.5T899 1208q0-17-8-31.5t-27-14.5q-23 0-30.5 15t-7.5 35q0 122 86 213t250 91q98 0 173.5-48.5T1442 1362zm145-250q15-2 25-12.5t10-26.5q0-14-10-24t-24-10l-27 1q-50 2-116.5 13t-100.5 21.5-34 38.5q0 21 16.5 29t73 28 99 45 55.5 25q14 0 25.5-9t11.5-26q0-16-21.5-33t-59.5-35l-33-15q23-3 43-5t35-3zm-841-13q31-5 66-7t67-2q34 0 57 1l26 1q14 0 25-10t11-25q0-27-51-67.5T896 878l-32-16q-8-2-13-2-16 0-26.5 10T814 897q0 25 21.5 34t56.5 30q-33 0-95.5 5.5T734 1009q0 15 11.5 25.5T771 1045z" + }, + "children": [] + }] +}; +exports.u1F606 = u1F606; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F607.js b/dist/noto_emoji_regular/u1F607.js new file mode 100644 index 000000000..c15a4911c --- /dev/null +++ b/dist/noto_emoji_regular/u1F607.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F607 = void 0; +var u1F607 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1913 760q195 167 297.5 464t102.5 659q0 160-294 278.5T1300 2280t-719-118.5T287 1883q0-364 101.5-659.5T687 760q88 66 254 104.5t359 38.5 359-38.5T1913 760zM784 1395l9-12q15-19 48-36.5t74-17.5q42 0 74.5 18t46.5 36l9 12q11 19 31 19 16 0 26.5-11.5t10.5-25.5q0-30-59-76t-139-46q-86 0-142.5 48t-56.5 73q0 14 10 25.5t27 11.5q20 0 31-18zm823.5 229q-10.5-11-26.5-11-20 0-36 25t-74 58-139 33q-88 0-147.5-26t-87-56-46.5-30q-16 0-26 11t-10 25q0 13 7 21 0 5 36 38t106 61.5 169 28.5q117 0 201-59t84-93q0-15-10.5-26zm270.5-266l-12-18q-21-29-70-57t-111-28q-83 0-141 48t-58 73q0 15 10 26t27 11q23 0 34-21t45.5-42 82.5-21q55 0 92.5 29t37.5 37q11 19 31 19 13 0 25-10.5t12-26.5q0-9-5-19zm-120-585.5Q1569 844 1300 844q-268 0-458-71.5T652 603q0-97 189.5-168.5T1300 363q270 0 458.5 72T1947 603q0 98-189 169.5zM1562 494q-104-30-262-30-159 0-263 30t-104 68q0 39 105 68t262 29q156 0 261-29t105-68q0-38-104-68zm-30 83q-41 10-99 17t-133 7-133.5-7-99.5-17q54-11 111.5-17.5T1300 553q63 0 120.5 6.5T1532 577z" + }, + "children": [] + }] +}; +exports.u1F607 = u1F607; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F608.js b/dist/noto_emoji_regular/u1F608.js new file mode 100644 index 000000000..a3a477605 --- /dev/null +++ b/dist/noto_emoji_regular/u1F608.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F608 = void 0; +var u1F608 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1967 808q172 176 259.5 457t87.5 617q0 108-140 201.5t-375.5 145T1301 2280q-263 0-499.5-52T426 2083t-139-201q0-344 91-626t259-450q-18-42-26.5-85t-8.5-87q0-121 52.5-221.5T770 312q10 0 19.5 6.5T799 339q0 15-7.5 35.5T784 429q0 61 22 117t63 96q90-42 196.5-66t235.5-24q132 0 240 24.5t198 68.5q37-33 57.5-91.5T1817 442q0-36-7-56t-7-38q0-14 9-20t19-6q57 0 112.5 96.5T1999 643q0 41-7 85t-25 80zm-917 647q77-55 88-115l-528-159q-2 10-3 21.5t-1 24.5q0 127 81.5 205t194.5 78q91 0 168-55zm487.5 246q-82.5-61-203.5-61-84 0-149.5 22t-113.5 62-51.5 47.5-3.5 16.5q0 15 10.5 26t26.5 11q19 0 30-15l13-14q27-29 90.5-56t148.5-27q69 0 123 26t80 57l14 17q11 17 31 17 14 0 25.5-10.5t11.5-26.5q0-31-82.5-92zm477.5-498.5q-1-11.5-3-21.5l-528 159q11 61 88 115.5t167 54.5q114 0 195.5-78t81.5-205q0-13-1-24.5z" + }, + "children": [] + }] +}; +exports.u1F608 = u1F608; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F609.js b/dist/noto_emoji_regular/u1F609.js new file mode 100644 index 000000000..abad6207f --- /dev/null +++ b/dist/noto_emoji_regular/u1F609.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F609 = void 0; +var u1F609 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2018 2158.5Q1724 2277 1300 2277t-718-118.5T288 1880q0-390 115-696.5t340.5-469T1300 552t556.5 162.5 340.5 469 115 696.5q0 160-294 278.5zM1608 1622q-10-11-27-11-22 0-40 27.5t-73.5 57.5-131.5 30q-87 0-149.5-25.5T1097 1646l-15-16q-12-15-30-15-17 0-27 11t-10 25q0 34 90.5 91t227.5 57q118 0 201.5-60t83.5-92q0-14-10-25zm81-262h-16q90-45 130-57t40-40q0-17-11-27t-25-10q-7 0-11 1l-33 12q-87 32-158.5 75.5t-90 60.5-18.5 35q0 15 10.5 26t26.5 11l7-2 41-6q19-2 44-3.5t53-1.5q30 0 62 2.5t61 10.5h6l4 1q12 0 24-9t12-29q0-25-42-37.5t-116-12.5zm-702-86.5q-31-35.5-72-35.5-42 0-71.5 36t-29.5 86 29.5 86 71.5 36q41 0 72-35t31-87q0-51-31-86.5z" + }, + "children": [] + }] +}; +exports.u1F609 = u1F609; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F60A.js b/dist/noto_emoji_regular/u1F60A.js new file mode 100644 index 000000000..0cc7ff853 --- /dev/null +++ b/dist/noto_emoji_regular/u1F60A.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F60A = void 0; +var u1F60A = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2018 2158.5Q1724 2277 1300 2277t-718-118.5T288 1880q0-390 115-696.5t340.5-469T1300 552t556.5 162.5 340.5 469 115 696.5q0 160-294 278.5zM785 1393q0-7 37.5-36t92.5-29q54 0 92 28.5t38 36.5q11 18 32 18 14 0 25.5-10.5t11.5-26.5q0-9-6-18l-13-18q-22-29-70.5-56.5T915 1254t-109.5 27.5T735 1338l-13 18-4 9q-2 5-2 9 0 14 11 25.5t28 11.5q20 0 30-18zm823 229q-10-11-27-11-22 0-39 26.5t-74 57.5-134 31q-85 0-147.5-25t-90.5-56l-17-17q-3-5-11-9t-16-4q-17 0-27 11t-10 25q0 34 90.5 91t228.5 57q118 0 201-60t83-92q0-14-10-25zm270-266l-13-18q-22-29-70.5-56.5T1685 1254q-63 0-111 27.5t-69 56.5l-13 18q-6 9-6 18 0 16 11 26.5t26 10.5q22 0 35-22t47.5-41.5 79.5-19.5q54 0 92 28.5t38 36.5q11 18 32 18 13 0 24-10t11-27q0-10-4-18z" + }, + "children": [] + }] +}; +exports.u1F60A = u1F60A; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F60B.js b/dist/noto_emoji_regular/u1F60B.js new file mode 100644 index 000000000..590b0f5c0 --- /dev/null +++ b/dist/noto_emoji_regular/u1F60B.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F60B = void 0; +var u1F60B = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2263.5 1908.5Q2315 1976 2315 2022q0 107-136.5 203t-372 149.5T1303 2428q-426 0-721.5-118T286 2031q0-6 1-12l2-12q-2-38-3-76t-1-75q0-440 152.5-752t413-495T1410 426q221 0 442.5 99.5t332 291.5 110.5 444q0 104-18 207.5t-41.5 176.5-23.5 120q0 76 51.5 143.5zm-619.5-663q-4-8.5-11-13.5-11-32-37.5-55t-55.5-23q-45 0-74.5 39t-29.5 86v29q-47 14-91 20t-86 6q-95 0-165-20t-72-20q-14 0-25.5 10t-11.5 26q0 22 21 33.5t97 28.5 159 17q94 0 175.5-23.5t140-58 64.5-44.5 6-22q0-7-4-15.5zM957 973q24 29 66 29 47 0 86.5-41.5T1149 867q0-41-26-69.5t-65-28.5q-49 0-87 42.5T933 905q0 39 24 68zm801-64q-11-11-26-11-32 0-129.5 25t-119 38-21.5 34q0 30 36 37.5t93 25 106 42.5l9 3q3 0 8 1 14 0 24.5-10t10.5-27q0-20-25.5-35.5T1670 1007l-41-14 42-10q29-6 63.5-12t34.5-36q0-15-11-26z" + }, + "children": [] + }] +}; +exports.u1F60B = u1F60B; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F60C.js b/dist/noto_emoji_regular/u1F60C.js new file mode 100644 index 000000000..b0414aa7e --- /dev/null +++ b/dist/noto_emoji_regular/u1F60C.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F60C = void 0; +var u1F60C = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2018 2160.5Q1724 2279 1300 2279t-718-118.5T288 1882q0-398 120.5-708.5t346-465.5T1300 553t545.5 155 346 465.5T2312 1882q0 160-294 278.5zm-986-829q-10-11.5-25-11.5-19 0-33.5 20t-44.5 35-66 15-64-13.5-42-30.5l-8-9q-11-17-31-17-16 0-26 11.5t-10 25.5q0 27 53.5 66.5T863 1463q72 0 125.5-39t53.5-67q0-14-10-25.5zm239.5 255Q1240 1528 1186 1528q-40 0-61 34.5t-21 93.5q0 92 38 162.5t81 70.5q33 0 56.5-40.5T1303 1732q0-87-31.5-145.5zm443.5-255q-10-11.5-27-11.5-16 0-32 20.5t-46 35-66 14.5q-39 0-68.5-14.5t-42-35-33.5-20.5q-16 0-26 11.5t-10 25.5q0 5 1.5 10t4.5 9l12 15q21 27 64 49.5t98 22.5q75 0 128-40t53-66q0-14-10-25.5z" + }, + "children": [] + }] +}; +exports.u1F60C = u1F60C; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F60D.js b/dist/noto_emoji_regular/u1F60D.js new file mode 100644 index 000000000..3d1cb5168 --- /dev/null +++ b/dist/noto_emoji_regular/u1F60D.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F60D = void 0; +var u1F60D = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2263.5 1908.5Q2315 1976 2315 2020q0 164-293 286t-719 122-721.5-118T286 2031q0-6 1.5-14.5t1.5-30.5q0-24-2-58.5t-2-71.5q0-644 338.5-1037T1410 426q223 0 444 100.5T2185 818t110 442q0 179-41.5 316t-41.5 189q0 76 51.5 143.5zM1993 893.5q-50-50.5-119-50.5-38 0-74.5 19t-59.5 51l-3-1q27-42 27-88 0-64-48-114t-119-50q-83 0-133 68.5T1414 901q0 82 30 183.5t63 168.5l24 2q13 0 38 1 214 0 344-69t130-178q0-65-50-115.5zM810 973q53 79 126 142 24-6 101.5-46t129-95 51.5-113q0-46-33-81t-82-35q-39 0-70.5 25.5T990 834h-2q0-5 1-13 0-50-33.5-84.5T874 702q-52 0-84.5 35T757 826q0 68 53 147zm611 384q-35-33-141-33l-20 1q-65 0-133-34.5t-111-34.5q-37 0-59.5 26t-22.5 64q0 76 96 136t206 60q91 0 155.5-31t64.5-89q0-32-35-65z" + }, + "children": [] + }] +}; +exports.u1F60D = u1F60D; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F60E.js b/dist/noto_emoji_regular/u1F60E.js new file mode 100644 index 000000000..b6be3fcbd --- /dev/null +++ b/dist/noto_emoji_regular/u1F60E.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F60E = void 0; +var u1F60E = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2173 1255q44 139 67.5 296.5T2264 1881q0 108-139 201t-375.5 145-499.5 52q-262 0-497.5-51.5t-375.5-145T237 1881q0-191 27.5-362t76.5-306q-13-59-17.5-102.5T319 1059q0-17 11.5-29.5T359 1017q7 0 13 2l50 12q125-235 333.5-357.5T1250 551q284 0 493 122.5t339 364.5l78-18 8-1q17 0 28.5 11.5t11.5 28.5l-1 16q-2 32-10.5 80.5T2173 1255zm-487 444q-10-11-26-11-17 0-23 8t-55.5 47.5-142.5 71-212 31.5q-16 0-36-2l-75-6q-16 0-22-1-15 0-25.5 10.5T1058 1874q0 32 42 36.5t68.5 6.5 60.5 2q108 0 206.5-26.5T1615 1810t81-85q0-15-10-26zm438-576q0-4 1-8v-6l-791 180-8 1h-160l-9-1-754-181q34 235 134 352t262 117q132 0 215-58t106-131l6-21q3-14 11.5-23t24.5-10l159 6q32 2 40.5 40t37 81.5 92 78.5 170.5 35q195 0 314-118t149-334z" + }, + "children": [] + }] +}; +exports.u1F60E = u1F60E; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F60F.js b/dist/noto_emoji_regular/u1F60F.js new file mode 100644 index 000000000..9b81a0d27 --- /dev/null +++ b/dist/noto_emoji_regular/u1F60F.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F60F = void 0; +var u1F60F = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2018 2160.5Q1724 2279 1300 2279t-718-118.5T288 1882q0-398 119.5-707.5T753 709t547-156 547 156 345.5 465.5T2312 1882q0 160-294 278.5zm6-923.5q-31-6-105-11.5t-176-5.5q-57 0-107 1.5t-88 3.5l-88 6q-14 2-24 12.5t-10 24.5q0 17 13 26.5t27 9.5l81-5q37-2 85.5-3.5t103.5-1.5h67q5 42 40 69.5t84 27.5q54 0 91-34.5t37-84.5q0-29-31-35zm-934-19.5q-39-5.5-108-10.5t-171-5q-56 0-105 1.5t-86 3.5l-86 6q-14 2-23.5 12.5T501 1250q0 17 12 26.5t28 9.5q6 0 28-2l58-4q35-2 82-3.5t102-1.5h67q4 41 40 70t85 29q56 0 91-34t35-86q0-31-39-36.5zm645 443q-10-11.5-25-11.5-18 0-23 8t-57.5 49-143 71.5T1278 1808q-35 0-69-5t-65-5q-14 0-25 10t-11 26q0 35 50 40.5t120 5.5q123 0 223-31.5t162.5-77.5 72-57.5 9.5-27.5q0-14-10-25.5z" + }, + "children": [] + }] +}; +exports.u1F60F = u1F60F; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F610.js b/dist/noto_emoji_regular/u1F610.js new file mode 100644 index 000000000..633f96bc9 --- /dev/null +++ b/dist/noto_emoji_regular/u1F610.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F610 = void 0; +var u1F610 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2292 1820.5q17 51.5 17 90.5 0 161-294 279.5T1296 2309q-262 0-497.5-51.5t-375.5-145T283 1911q-4-35-6-71t-2-73q0-323 144.5-616.5t401.5-457T1410 530q291 0 484.5 97.5t312 295T2325 1359q0 117-25 212t-25 153q0 45 17 96.5zm-1504-665q25 28.5 63 28.5 45 0 82.5-39.5T971 1051q0-39-23-68t-65-29q-49 0-84.5 41t-35.5 90q0 42 25 70.5zm498 434.5q14 0 26.5-9.5t12.5-24.5q0-16-9-27.5t-25-11.5q-108-7-231-28t-198-40l-42-10q-3 0-10-1-14 0-24.5 10t-10.5 27q0 12 7 21.5t20 13.5l46 11q73 19 199.5 40.5T1286 1590zm244-488.5q-27-33.5-68-33.5-43 0-77 38.5t-34 92.5q0 46 27.5 79t68.5 33q45 0 77.5-39.5t32.5-91.5q0-45-27-78.5z" + }, + "children": [] + }] +}; +exports.u1F610 = u1F610; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F611.js b/dist/noto_emoji_regular/u1F611.js new file mode 100644 index 000000000..2c16060d6 --- /dev/null +++ b/dist/noto_emoji_regular/u1F611.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F611 = void 0; +var u1F611 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2019.5 2160.5Q1725 2279 1300 2279t-719-118.5T287 1881q0-603 259-966t754-363q320 0 546 154.5t347 464 121 710.5q0 161-294.5 279.5zM795 1438h307q16 0 27.5-11.5t11.5-28.5q0-16-11.5-27.5T1102 1359H795q-16 0-27.5 11.5T756 1398q0 17 11.5 28.5T795 1438zm665 465q17 0 28-11t11-28-11-28.5-28-11.5h-331q-17 0-28.5 11.5T1089 1864t11.5 28 28.5 11h331zm328-466q16 0 27.5-11.5t11.5-27.5q0-17-11.5-28.5T1788 1358h-307q-16 0-27.5 11.5T1442 1398q0 16 11.5 27.5t27.5 11.5h307z" + }, + "children": [] + }] +}; +exports.u1F611 = u1F611; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F612.js b/dist/noto_emoji_regular/u1F612.js new file mode 100644 index 000000000..1c2c4c0e7 --- /dev/null +++ b/dist/noto_emoji_regular/u1F612.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F612 = void 0; +var u1F612 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2017 2159q-295 118-717 118t-717-118-295-279q0-390 115-696.5t340.5-469T1300 552t556.5 162.5 340.5 469 115 696.5q0 161-295 279zm-476.5-405.5Q1469 1722 1381 1722q-96 0-205 38.5t-109 82.5q0 19 14 29.5t35 10.5l21 1q38 0 96-16.5t96-16.5q62 0 127 22.5t92 22.5q23 0 43.5-14t20.5-41q0-56-71.5-87.5zM942 1348q4 41 40 70t85 29q55 0 90.5-34t35.5-87q0-30-33-35.5t-104.5-11T884 1274q-73 0-136 2.5t-122 7.5l-27 2q-15 2-24 11.5t-9 23.5q0 18 11 27.5t28 9.5q5 0 27-2l58-3q35-2 82-3.5t102-1.5h68zm753.5-53.5q-48.5 1.5-85.5 3.5l-87 6q-14 2-23.5 12.5t-9.5 24.5q0 16 11 26t26 10l90-6q38-2 89-3.5t109-1.5h52q4 41 40 70t85 29q54 0 90-35t36-85q0-31-34.5-36t-106.5-10.5-177-5.5q-56 0-104.5 1.5z" + }, + "children": [] + }] +}; +exports.u1F612 = u1F612; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F613.js b/dist/noto_emoji_regular/u1F613.js new file mode 100644 index 000000000..e5253ed97 --- /dev/null +++ b/dist/noto_emoji_regular/u1F613.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F613 = void 0; +var u1F613 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2291.5 1822.5q17.5 49.5 17.5 90.5 0 160-294 278.5T1296 2310q-424 0-718-118.5T284 1913q-9-70-9-143 0-324 145.5-618.5t402-457T1408 532q453 0 684.5 246t231.5 584q0 110-25 210.5t-25 152.5q0 48 17.5 97.5zM1930 1407q-1 34-56.5 106t-55.5 134q0 43 27.5 72t68.5 29q50 0 75.5-36t25.5-116q0-65-26-144t-44-79q-14 0-15 34zm-621.5 135q-12.5-15-226.5-56.5T814 1444q-17 0-28.5 10.5T774 1483q0 34 52.5 37.5T1019 1548t255 58l11 1q15 0 25.5-12t10.5-26q0-12-12.5-27zm245.5-329l2-15v-15q0-47-26.5-79t-69.5-32-76 36.5-33 91.5q0 46 26 79.5t68 33.5q38 0 68.5-27.5t40.5-72.5zm-765-56.5q24 28.5 63 28.5 45 0 82-38.5t37-92.5q0-41-23.5-69T882 957q-45 0-81 39.5t-36 91.5q0 40 24 68.5z" + }, + "children": [] + }] +}; +exports.u1F613 = u1F613; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F614.js b/dist/noto_emoji_regular/u1F614.js new file mode 100644 index 000000000..89dc71d86 --- /dev/null +++ b/dist/noto_emoji_regular/u1F614.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F614 = void 0; +var u1F614 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2273.5 1831q21.5 49 21.5 90 0 160-293.5 278.5T1282 2318q-424 0-718-118.5T270 1921q-5-38-6.5-76.5T262 1766q0-333 138.5-633.5t395-468.5T1399 496q163 0 341.5 39T2056 682.5t209.5 267T2338 1288q0 83-16 166.5t-43 154.5-27 127q0 46 21.5 95zM1270 1495l22 1q61 0 106.5-28t53.5-45q5-4 6-9.5t1-11.5q0-15-10-25.5t-27-10.5q-19 0-29 14l-8 8q-12 12-38 23t-58 11q-40 0-70-16.5t-43-35.5l-8-11q-8-19-31-19-17 0-27 11.5t-10 25.5q0 24 49 67.5t121 50.5zm510 235.5q-83-39.5-170-39.5-60 0-115 16.5t-120 52.5-65 65q0 14 10.5 24.5t26.5 10.5q17 0 38-19t84.5-48.5T1607 1763q58 0 112 21.5t73 38 35 16.5q15 0 25.5-10.5t10.5-25.5q0-33-83-72.5zm316-297.5q-11-11-26-11-19 0-29 14l-10 10q-12 12-36 21.5t-54 9.5q-39 0-70-18t-43.5-40-34.5-22q-15 0-26 11t-11 26q0 5 1 8 3 9 19 32t61 50 107 27 112.5-33 50.5-59q0-15-11-26z" + }, + "children": [] + }] +}; +exports.u1F614 = u1F614; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F615.js b/dist/noto_emoji_regular/u1F615.js new file mode 100644 index 000000000..e1890c72a --- /dev/null +++ b/dist/noto_emoji_regular/u1F615.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F615 = void 0; +var u1F615 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2268.5 1900q51.5 68 51.5 114 0 168-299.5 291.5T1303 2429q-136 0-270-14.5t-260-45-233-80T370 2180t-76.5-118.5T280 1841q0-644 339.5-1046T1410 393q215 0 440 101t337.5 296 112.5 454q0 111-19.5 219.5t-41.5 177-22 115.5q0 76 51.5 144zM1134 848q0 3-1 8 0 6 5 12.5t14 6.5q18 0 23-22.5t24.5-45.5 41-26 21.5-20q0-10-7-15t-16-5q-49 8-77 49.5t-28 57.5zm-431.5 225q24.5 29 64.5 29 44 0 82-40.5t38-94.5q0-41-24.5-69.5T799 869q-50 0-85.5 42t-35.5 92q0 41 24.5 70zm754.5 424l-100-65q-5-3-10-5t-11-2q-7 0-10 1l-695 170q-14 3-22 14t-8 25q0 16 11 27.5t28 11.5q3 0 9-2l679-165 86 56q10 7 21 7 16 0 27.5-11.5t11.5-28.5q0-21-17-33zm80-542l1-8-251-74q-7 11-9.5 25.5T1275 927q0 53 38 92.5t93 39.5q54 0 90-35t41-69z" + }, + "children": [] + }] +}; +exports.u1F615 = u1F615; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F616.js b/dist/noto_emoji_regular/u1F616.js new file mode 100644 index 000000000..b6bd8b5ec --- /dev/null +++ b/dist/noto_emoji_regular/u1F616.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F616 = void 0; +var u1F616 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1758.5 722q268.5 156 423 439t154.5 594q0 32-2 63.5t-5 62.5q0 160-294 278.5T1316 2278q-424 0-718-118.5T304 1881q0-41 21-90.5t21-94.5q0-58-26-126.5t-41-144-15-150.5q0-208 112-376t307-250.5 472-82.5q335 0 603.5 156zM641 1634q14 0 64-26t84-77.5 34-105.5q0-14-10.5-25t-24.5-11q-17 0-27 11.5t-10 26.5l-2 16q-6 32-37 66t-73 47.5-42 42.5q0 15 11.5 25t27.5 10h5zm757 198q13-9 13-29 0-49-72-81.5t-147-32.5q-57 0-95.5 27t-67.5 27q-25 0-68-16t-69-16q-35 0-81.5 34t-46.5 72q0 18 13 28t30 10q33 0 55-40.5t64-40.5q31 0 59 11t57 11q22 0 60.5-18.5t59.5-18.5q59 0 101 24t60 41 45 17q17 0 30-9zm29.5-425.5q-10.5-9.5-24.5-9.5-8 0-13 2l-26 7q-24 6-59 6-45 0-89.5-15.5t-67.5-40-41-24.5q-14 0-25.5 10.5T1070 1369q0 31 72.5 73.5T1304 1485q46 0 90-10.5t44-41.5q0-17-10.5-26.5z" + }, + "children": [] + }] +}; +exports.u1F616 = u1F616; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F617.js b/dist/noto_emoji_regular/u1F617.js new file mode 100644 index 000000000..3bc7f07f9 --- /dev/null +++ b/dist/noto_emoji_regular/u1F617.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F617 = void 0; +var u1F617 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2019 2160.5Q1724 2279 1300 2279q-425 0-719-118.5T287 1882q0-396 118.5-705T750 710t550-158q332 0 559 164.5t341 473.5 114 692q0 160-295 278.5zm-1052-1034q37-39.5 37-94.5 0-41-24-71t-66-30q-45 0-81 40t-36 93q0 44 25.5 73t63.5 29q44 0 81-39.5zm140 135.5q-10-7-18-7-115 12-130.5 41t-15.5 55q0 14 4 25.5t4 19.5q0 9-16 27.5t-16 46.5q0 30 22.5 60t29 55.5 44.5 25.5q13 0 23.5-3t10.5-13q0-13-14.5-32.5t-40-35.5-25.5-43q0-20 10-35t29-15l29 1q8 0 15-3.5t7-11.5q0-15-34-25t-34-49q0-21 12-36.5t38-15.5q11 0 22 1.5t20 1.5q17 0 25.5-4.5t8.5-12.5q0-11-10-18zm490-117v-12q0-47-28-81t-68-34q-43 0-76.5 37.5T1391 1149q0 46 27 81t70 35q40 0 72-33t37-87z" + }, + "children": [] + }] +}; +exports.u1F617 = u1F617; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F618.js b/dist/noto_emoji_regular/u1F618.js new file mode 100644 index 000000000..0609cd3a2 --- /dev/null +++ b/dist/noto_emoji_regular/u1F618.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F618 = void 0; +var u1F618 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2419.5 1230.5Q2354 1360 2239 1488l-24 27q-11 8-22 8l-38-9q-15-3-40-10 14 85 22 173.5t8 183.5l-2 100q-2 53-.5 53t1.5 17q0 161-296.5 279T1127 2428q-381 0-665.5-101T129 2080l-9-28q-5-13-5-30 0-46 51.5-113.5T218 1767q0-51-21.5-114.5T155 1481t-20-220q0-251 110.5-443.5t332-292T1019 426q233 0 442 110.5T1832 850q7 0 13-1h14q45 0 88 16.5t75 47.5q19-80 82-129t144-49q94 0 165.5 68.5T2485 991q0 110-65.5 239.5zM2184 1459q98-106 168.5-234.5T2423 993q0-86-48.5-141T2245 797q-70 0-120 51.5T2075 967q0 13 1.5 21t3.5 13l4 10q0 5 1 12 0 14-9 21.5t-20 7.5q-28 0-36-34.5t-53.5-72T1860 908q-68 0-121 50.5t-53 120.5q0 64 60.5 142t188.5 143 249 95zm-726-648.5q-38-41.5-85-41.5-43 0-67.5 29.5T1281 867q0 54 40 94.5t86 40.5q42 0 65.5-27.5T1496 905q0-53-38-94.5zM940 1031q11-2 19-11t9-22q0-19-13-32t-117.5-40.5T699 898q-15 0-26 11t-11 26q0 14 8.5 24t22.5 12l33 5q31 5 77 15l-35 12q-36 12-62.5 28t-26.5 36q0 17 12.5 26t24.5 9q5 0 9-1l8-1q43-23 94.5-39.5T921 1035zm532 254q-17-16-17-17 0-4 3.5-9.5t3.5-15.5q0-44-52-53.5t-68-14.5l-26-10q-13-4-27-4-8 0-17 3t-9 11q0 13 24 24t68.5 18 44.5 33q0 8-5.5 14.5T1383 1277l-11 12q-6 6-6 13 0 8 5.5 11t12.5 3q6 0 12.5-1.5t14.5-1.5 16.5 6.5 8.5 17.5q0 2-1 3.5t-1 2.5q-6 24-16 42t-10 41q0 11 5.5 19.5t19.5 8.5q18 0 28-32.5t19-53 9-41.5q0-26-17-42z" + }, + "children": [] + }] +}; +exports.u1F618 = u1F618; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F619.js b/dist/noto_emoji_regular/u1F619.js new file mode 100644 index 000000000..a6846c9c9 --- /dev/null +++ b/dist/noto_emoji_regular/u1F619.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F619 = void 0; +var u1F619 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2268.5 1899.5Q2320 1968 2320 2014q0 168-299.5 291.5T1303 2429q-136 0-269.5-14.5T774 2369t-234-80.5-170.5-109-76-118.5-13.5-220q0-444 157.5-763t416-502T1411 393q217 0 441 101t336 296 112 454q0 111-19.5 219.5t-41.5 177-22 115.5q0 75 51.5 143.5zM807 951l7-6q9-9 27.5-17t37.5-8q37 0 60.5 24t29 59 35.5 35q15 0 26-10t11-27q0-46-44.5-100.5T879 846q-34 0-65.5 14.5T765 890l-10 10q-11 11-11 26 0 14 12 25t25 11q15 0 26-11zm250 233q-13-8-25-8-22 0-46.5-4t-47.5-4q-39 0-66 24.5t-27 62.5l1 11v14q0 19-11 25t-25 25-14 46q0 29 24 67.5t24 61.5q0 20 19.5 31t43.5 11q14 0 19-4t5-13q0-33-40-78t-40-71q0-14 9.5-27.5T888 1340q11 0 22 4.5t25 4.5q10 0 13.5-4.5t3.5-10.5q0-12-28.5-27.5T895 1266q0-23 11.5-43t32.5-20q13 0 28 3.5t30 7.5l26 8q12 4 18 4 13 0 21-4.5t8-13.5q0-16-13-24zm631 62q0-85-53.5-141t-130.5-56q-42 0-90 20t-48 50q0 17 11.5 28t26.5 11q10 0 39-16t60-16q53 0 81 38t28 87q0 19 11 29.5t28 10.5q15 0 25.5-10t11.5-25v-10z" + }, + "children": [] + }] +}; +exports.u1F619 = u1F619; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F61A.js b/dist/noto_emoji_regular/u1F61A.js new file mode 100644 index 000000000..bad8ec115 --- /dev/null +++ b/dist/noto_emoji_regular/u1F61A.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F61A = void 0; +var u1F61A = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2018 2158.5Q1724 2277 1300 2277t-718-118.5T288 1880q0-390 115-696.5t340.5-469T1300 552t556.5 162.5 340.5 469 115 696.5q0 160-294 278.5zM723.5 1105q-33.5-35-86.5-35-56 0-100.5 42.5T492 1211q0 49 35 84t87 35q58 0 100.5-42t42.5-100q0-48-33.5-83zm32.5-101q0 5 18.5 31t58.5 51 96 25q52 0 93.5-27t41.5-35q9-9 9-23t-11.5-25-25.5-11q-18 0-39.5 23.5T929 1037q-36 0-63.5-17.5t-40.5-42-36-24.5q-17 0-26.5 12.5T753 992q0 3 1 6zm350.5 256.5q-9.5-6.5-17.5-6.5l-8 1q-27 4-53 5.5t-47.5 13.5-30 31-8.5 47q0 8 4.5 20t4.5 23q0 9-16 27t-16 48q0 18 7 32.5t16 27.5l17 26q7 12 13 33t43 21q12 0 23-3.5t11-13.5q0-29-40.5-55.5T968 1484q0-21 11.5-36.5t31.5-15.5h12q6 0 14 1 8 0 15-3t7-12-11-14l-23-11q-12-6-23.5-16.5T990 1345q0-20 12-36t38-16q11 0 22 1.5t22 1.5q18 0 25-5t7-13q0-11-9.5-17.5zM1547 1187q35-17 54-36l10-11q8-11 8-22 0-14-10.5-25.5T1582 1081q-15 0-43 24.5t-69 24.5q-51 0-81.5-29t-30.5-37q-11-21-35-21-17 0-26 12t-9 26q0 4 2 12l9 16q20 36 67.5 65.5T1470 1204q42 0 77-17zm262.5 100q-50.5-47-116.5-47-72 0-119.5 49.5T1526 1404q0 70 50 118t116 48q68 0 118-48.5t50-117.5q0-70-50.5-117z" + }, + "children": [] + }] +}; +exports.u1F61A = u1F61A; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F61B.js b/dist/noto_emoji_regular/u1F61B.js new file mode 100644 index 000000000..58548f9fe --- /dev/null +++ b/dist/noto_emoji_regular/u1F61B.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F61B = void 0; +var u1F61B = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2019 2160.5Q1724 2279 1300 2279q-425 0-719-118.5T287 1882q0-397 119-706t345-466.5T1300 552t549.5 157.5T2195 1176t119 706q0 160-295 278.5zM987.5 1447q29.5-36 29.5-85t-29-86-73-37q-42 0-72 36.5t-30 86.5 30.5 85.5T915 1483q43 0 72.5-36zm679.5 315q11 0 20-8t9-19q0-31-38-33.5t-130.5-8-197.5-5.5q-160 0-276 13t-129.5 22-13.5 25q0 13 9.5 21t20.5 8q5 0 7-1l42-7q40-7 121-14 10 24 22 114t53.5 136 118.5 46q78 0 120-47t54-138 23-115l79 4q40 3 83 7h3zm91-486.5q-30-36.5-73-36.5t-72 37-29 86 29.5 85 71.5 36 72.5-35.5 30.5-85.5-30-86.5z" + }, + "children": [] + }] +}; +exports.u1F61B = u1F61B; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F61C.js b/dist/noto_emoji_regular/u1F61C.js new file mode 100644 index 000000000..2c83aaa4e --- /dev/null +++ b/dist/noto_emoji_regular/u1F61C.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F61C = void 0; +var u1F61C = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2263.5 1908q51.5 67 51.5 112 0 164-293 286t-719 122-721.5-118T286 2031q0-6 1-12l2-12q-2-38-3-76t-1-75q0-440 152.5-752t413-495T1410 426q223 0 444.5 101t331 292.5T2295 1261q0 107-18.5 211.5T2235 1647t-23 118q0 76 51.5 143zm-796-654q-6.5-6-14.5-6-6 0-34.5 6.5t-97.5 6.5q-146 0-263.5-32.5T940 1187q-8-4-13-4-8 0-15 7t-7 16q0 14 23 25.5t61 22.5q-63 16-108 75t-45 125q0 55 30 93t79 38q33 0 70.5-21.5t80-65 48-50.5 43-45.5 89-69 84-30.5 69.5-6q13-3 29-6.5t16-21.5q0-9-6.5-15zm-509-279.5Q984 1004 1023 1004q47 0 86-41.5t39-95.5q0-42-25-70t-64-28q-49 0-87.5 42T933 905q0 40 25.5 69.5zM1758 909q-11-11-26-11-33 0-135.5 27T1478 964.5t-16 30.5q0 14 8 23.5t22 12.5l24 5q30 6 84 24.5t97 39.5l9 3q3 0 8 1 14 0 24.5-11t10.5-26q0-20-25.5-35.5T1670 1007l-41-14q53-13 96.5-19.5T1769 935q0-15-11-26z" + }, + "children": [] + }] +}; +exports.u1F61C = u1F61C; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F61D.js b/dist/noto_emoji_regular/u1F61D.js new file mode 100644 index 000000000..961384afb --- /dev/null +++ b/dist/noto_emoji_regular/u1F61D.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F61D = void 0; +var u1F61D = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2263.5 1908q51.5 67 51.5 112 0 166-295 287t-717 121q-426 0-721.5-118T286 2031q0-6 1-12l2-12q-2-38-3-76t-1-75q0-440 152.5-752t413-495T1410 426q223 0 444.5 101t331 292.5T2295 1261q0 107-18.5 211.5T2235 1647t-23 118q0 76 51.5 143zM861.5 902.5Q872 913 886 913q76 2 149.5 19t75.5 17q14 0 25.5-9.5T1148 913q0-9-5-19t-61-64.5T973 736l-20-15q-8-5-20-5-16 0-26.5 10.5T896 753q0 19 15 29 52 36 88 68-26-4-54-6.5t-57-2.5q-16 0-26.5 10T851 876q0 16 10.5 26.5zm608 406.5q4.5-6 4.5-14 0-9-7-14.5t-15-5.5h-2q-23 4-66 4-109 0-238.5-32T962 1182l-15-8q-6-6-14-6t-14.5 6.5-6.5 15.5q0 14 21 26.5t57 28.5q-69 10-119.5 71T820 1446q0 51 30.5 87t76.5 36q77 0 187.5-107t222.5-140q12 0 23 1h22q34 0 54.5-3t21.5-3q7-2 11.5-8zM1747 987q13 0 22.5-10.5t9.5-24.5q0-18-11-27.5t-27-9.5q-44 0-156.5 23.5t-126 37-13.5 29.5q2 14 8.5 22.5t76 29T1650 1104t64 27q15 0 26-10t11-26q0-19-29-38.5t-71-35.5l-39-15q55-10 94-15z" + }, + "children": [] + }] +}; +exports.u1F61D = u1F61D; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F61E.js b/dist/noto_emoji_regular/u1F61E.js new file mode 100644 index 000000000..c95204f06 --- /dev/null +++ b/dist/noto_emoji_regular/u1F61E.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F61E = void 0; +var u1F61E = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2277.5 1740q3.5 19 13.5 52l12 41q5 21 5 49 0 161-295 279t-717 118q-423 0-718-118t-295-279q-4-35-6-70.5t-2-72.5q0-324 145.5-618.5t402-456.5T1408 502q453 0 685 245.5t232 583.5q0 107-25.5 209t-25.5 155q0 26 3.5 45zM1251 1357q0 55 30 91t71 36q44 0 79-39.5t35-93.5q0-26-8.5-48t-21.5-39q-38 26-82 35t-92 9l-6 16q-2 7-3.5 15.5t-1.5 17.5zm651 411q-6-10-56-46t-111-54.5-117-18.5q-67 0-134 22.5t-133.5 70-66.5 55.5q-11 11-11 24 0 15 11 26t26 11 27-12l25-23q40-37 109.5-69.5T1615 1721q69 0 131 29t84.5 52 42.5 23q14 0 24.5-9.5t10.5-27.5q0-10-6-20zm145-318l1-9v-9l-1-19q-56-14-92.5-37.5T1896 1323q-28 17-45.5 47.5T1833 1442q0 50 30 86t71 36q42 0 73.5-33t39.5-81z" + }, + "children": [] + }] +}; +exports.u1F61E = u1F61E; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F61F.js b/dist/noto_emoji_regular/u1F61F.js new file mode 100644 index 000000000..1ca851579 --- /dev/null +++ b/dist/noto_emoji_regular/u1F61F.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F61F = void 0; +var u1F61F = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2268.5 1898.5Q2320 1967 2320 2013q0 170-297.5 292.5T1303 2428q-136 0-269.5-14.5T774 2368t-234-80.5-170.5-109-76-118.5-13.5-220q0-444 157.5-763t416-502T1411 392q218 0 441.5 101T2188 789.5t112 452.5q0 99-16.5 203.5T2233 1660q-16 52-16 94 0 76 51.5 144.5zm-949-996q4.5 6.5 15.5 6.5 8 0 13.5-5.5t5.5-13.5q0-41 14.5-65.5t30-31T1414 774q0-8-6-14t-14-6q-19 0-49 36t-30 96q0 10 4.5 16.5zM1138 763q14 25 14 52 0 18-6.5 30t-6.5 18q0 8 5.5 13.5t13.5 5.5q16 0 24.5-24.5t8.5-43.5q0-24-14-62t-34-38q-8 0-13.5 6t-5.5 14q0 4 14 29zm-303 70q-4 16-4 35 0 53 30 88t74 35q49 0 86-43t37-101q0-46-24-79-28 16-62 25t-82 9q-23 0-42-3-4 8-7 16zm669.5 724.5q-6.5-16.5-215-110T959 1354q-73 0-118.5 28.5T795 1474q0 22 11 41.5t37 19.5q15 0 29-11t14-30q0-16-12-28 0-11 19-22t64-11q82 0 218 53t250 114l28 15q10 5 19 5 17 0 28-12t11-27q0-7-6.5-23.5zM1632 973q-54-20-91-48t-59-60q-32 16-54.5 51t-22.5 81q0 51 29.5 87t73.5 36q49 0 86.5-43t37.5-104z" + }, + "children": [] + }] +}; +exports.u1F61F = u1F61F; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F620.js b/dist/noto_emoji_regular/u1F620.js new file mode 100644 index 000000000..142cffe69 --- /dev/null +++ b/dist/noto_emoji_regular/u1F620.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F620 = void 0; +var u1F620 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2018 2160.5Q1724 2279 1300 2279t-718-118.5T288 1882q0-398 120.5-708.5t346-465.5T1300 553t545.5 155 346 465.5T2312 1882q0 160-294 278.5zM1052 1455q75-56 85-116l-527-157q-5 22-5 45 0 119 79 201.5t201 82.5q92 0 167-56zm549 369q17-11 17-31 0-33-84-92t-200-59q-50 0-97 9t-90.5 26-84 50-40.5 41q-7 12-7 21 0 14 10.5 25.5t26.5 11.5q9 0 16.5-4.5t13.5-12.5l21-20q30-28 92-51t141-23q68 0 121.5 26t79.5 55l14 17q11 17 31 17 5 0 10-2zm412-620.5q-1-11.5-3-21.5l-528 157q10 59 87.5 115.5T1740 1511q115 0 194.5-80t79.5-203q0-13-1-24.5z" + }, + "children": [] + }] +}; +exports.u1F620 = u1F620; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F621.js b/dist/noto_emoji_regular/u1F621.js new file mode 100644 index 000000000..a1fec633c --- /dev/null +++ b/dist/noto_emoji_regular/u1F621.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F621 = void 0; +var u1F621 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2423 1706.5q-31 98.5-76.5 168.5t-87.5 112.5-64 72-92 74-193.5 86.5-289.5 65q-152 22-320 22-333 0-591.5-82T377 2021q-35-21-97-100t-98-187.5-36-234.5q0-158 73-303t171-236l28-27q137-188 379-303t503-115q111 0 215.5 20t205 59 185 91 146 106.5 94 95.5 74.5 83 87 105 76.5 130.5 51 140T2454 1499q0 109-31 207.5zm-290.5-453Q2072 1197 1992 1197q-85 0-142 59t-57 139q0 84 60.5 140.5T1993 1592q80 0 140-58.5t60-140.5q0-83-60.5-139.5zm-1354 2.5q-57.5-59-141.5-59-78 0-139.5 56T436 1393q0 80 57.5 139.5T636 1592q80 0 140-59t60-140q0-78-57.5-137zM1418 974q13 50 79.5 91.5T1640 1107q99 0 174-74t75-177q0-20-2.5-38.5T1880 785zM749 785q-8 29-8 70 0 102 72.5 177t175.5 75q76 0 143-42.5t80-90.5zm934 404q-9-10-21-10-23 0-49.5 41t-41.5 86q-52-24-113-35t-128-11q-91 0-163.5 14.5T1060 1310q-10-37-38.5-84t-53.5-47q-13 0-22 10.5t-9 21.5q0 15 20 36.5t36.5 66.5 16.5 89q0 35-7.5 59.5T993 1492l-2 6q0 3-1 6 0 14 9 23.5t23 9.5q27 0 39-43t12-90v-23q8 0 68-23.5t195-23.5q103 0 162.5 22t57.5 22q0 6-1 17 0 56 11.5 90.5t11.5 33.5q10 18 29 18 14 0 22.5-10t8.5-21q0-13-10-34.5t-10-67.5q0-44 17.5-88.5t37-66.5 19.5-38q0-12-9-22z" + }, + "children": [] + }] +}; +exports.u1F621 = u1F621; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F622.js b/dist/noto_emoji_regular/u1F622.js new file mode 100644 index 000000000..ea1b43f09 --- /dev/null +++ b/dist/noto_emoji_regular/u1F622.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F622 = void 0; +var u1F622 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1793 618q255 161 399.5 462t144.5 644q0 42-1.5 81t-6.5 77q0 160-293 278.5T1318 2279q-424 0-718-118.5T306 1882q0-42 21-91.5t21-95.5q0-55-28.5-131.5t-43-156T262 1247q0-177 70.5-334t207-267.5T857 496t346-39q335 0 590 161zm-964 810l11-18q4-7 4-16 0-14-10.5-25.5T807 1357q-20 0-36.5 25t-46 40.5T656 1438q-32 0-58.5-13t-38-27.5T530 1383q-17 0-27 11t-10 25q0 12 7 22l12 12q18 20 57 38.5t87 18.5q61 0 107-26.5t66-55.5zm362 273.5q-100-49.5-200-49.5-89 0-171.5 39.5T737 1764q0 14 11.5 25t25.5 11q16 0 35-16t71.5-38 112.5-22q75 0 140.5 30.5t84 48.5 36.5 18q15 0 26-11t11-26q0-33-100-82.5zm309-355.5v-8q0-14-10-25.5t-27-11.5q-20 0-32 20.5t-44.5 41-75.5 20.5q-35 0-63-13.5t-40-28-30-14.5q-15 0-26 10t-11 26q0 11 7 21l12 12q20 21 60 40.5t88 19.5q46 0 86-14.5t72-49 34-46.5zm32.5 172.5Q1470 1468 1450 1468q-14 0-14 16 0 29 7 54t7 52q0 52 21 89.5t62 37.5q37 0 49.5-29.5t12.5-56.5q0-62-62.5-112.5z" + }, + "children": [] + }] +}; +exports.u1F622 = u1F622; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F623.js b/dist/noto_emoji_regular/u1F623.js new file mode 100644 index 000000000..1f521a1bb --- /dev/null +++ b/dist/noto_emoji_regular/u1F623.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F623 = void 0; +var u1F623 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2294 1753.5q-36 135.5-79.5 230t-187 164T1729 2246t-254 35-175 6q-216 0-402.5-36t-311-96.5-170-121-96-218.5-50.5-327q0-272 124.5-482.5t376.5-341T1300 534q280 0 533.5 133t375 344 121.5 477q0 130-36 265.5zM1629 1414q-52-65-127-105t-160-40q-127 0-236 94t-109 128q0 14 11 25.5t28 11.5q22 0 49-40t100-93.5 157-53.5q83 0 153 48.5t108 111.5l9 17q5 9 13.5 15t19.5 6q16 0 26-11t10-26q0-23-52-88zm-778-263q26-8 55-10t57-2q52 0 77 3t34 5l12 2q7 2 10 2 15 0 26.5-11.5t11.5-26.5q0-40-127.5-104.5T857 944q-4 0-12-1-14 0-24.5 9T810 978q0 11 6.5 21t17.5 14l11 3 27 10q17 7 39 17t46 22q-80 0-116 12t-36 38q0 16 11.5 26.5T842 1152zm831-86q77-39 112-47.5t35-37.5q0-18-10-27.5t-24-9.5q-9 0-13 1-22 0-150 66t-128 104q0 17 12.5 27t25.5 10q8 0 39-6t94-6q28 0 57 2t56 10h5l4 1q13 0 24.5-9t11.5-28q0-25-36-37.5t-115-12.5z" + }, + "children": [] + }] +}; +exports.u1F623 = u1F623; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F624.js b/dist/noto_emoji_regular/u1F624.js new file mode 100644 index 000000000..7e82ea7e6 --- /dev/null +++ b/dist/noto_emoji_regular/u1F624.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F624 = void 0; +var u1F624 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2424 1698q-27 87-68 156t-88.5 117-69.5 78.5-89 75-184 86-279 67-346 25.5q-334 0-591-82t-330-203l-25-22q-85-73-145-204t-60-294q0-98 24.5-182.5T237 1160t89-130 68.5-73 59.5-67 123.5-121 195-126 248.5-92 279-34q82 0 162.5 11.5t163 35 156 56.5 139 75 118.5 86.5T2140 884t42 50 40.5 37.5 85.5 101 64.5 106 44.5 109 26.5 105 7.5 105.5q0 113-27 200zm-1546-41q-25-44-70-70 53-67 81.5-121.5T933 1356l15-56q-76 75-143 118t-122 63q-20-48-68.5-80.5T511 1368q-77 0-134 55t-57 132q0 24 6.5 47t17.5 44q-17 17-23.5 44.5T314 1743q0 75 54.5 131.5T504 1931q53 0 100-28 26 17 51.5 25.5t56.5 8.5q80 0 135.5-56t55.5-131q0-49-25-93zm177-710q-42-12-84-39t-75-56q-26 21-42 57t-16 80q0 64 33 110.5t78 46.5q44 0 77-45t33-112q0-23-4-42zm542 375q-53-48-117.5-74t-150.5-26q-95 0-165.5 26.5T1062 1304l-17 17q-8 11-8 23 0 14 10.5 25t26.5 11 27-12l14-13q25-21 78.5-40.5T1315 1295q73 0 129.5 19.5t81.5 41.5l15 14q11 13 29 13 12 0 24-10t12-27q0-13-9-24zm132-222.5q33-46.5 33-110.5 0-44-16-80t-42-57q-33 29-75 56t-84 39q-4 19-4 42 0 67 33 112t77 45q45 0 78-46.5zm578 589.5q-7-29-21-43 11-21 17.5-43.5t6.5-45.5q0-79-57.5-134t-133.5-55q-56 0-103.5 32t-70.5 81q-54-20-120-63t-143-118l12 46q11 49 42.5 111t85.5 130q-47 26-71 70t-24 93q0 77 57 132t134 55q54 0 107-34 47 28 101 28 77 0 132.5-54.5T2314 1743q0-25-7-54z" + }, + "children": [] + }] +}; +exports.u1F624 = u1F624; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F625.js b/dist/noto_emoji_regular/u1F625.js new file mode 100644 index 000000000..ca8b0acd8 --- /dev/null +++ b/dist/noto_emoji_regular/u1F625.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F625 = void 0; +var u1F625 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2255.5 1743.5q21.5 48.5 21.5 88.5 0 158-289 273.5T1284 2221q-416 0-704-116t-288-273q-3-31-5-61.5t-2-61.5q0-303 150-580t413.5-430.5T1442 545q435 0 654 200t219 493q0 71-14.5 146t-40.5 144-26 122q0 45 21.5 93.5zM832 951.5q-2-2.5-10-2.5-77 0-151 81t-74 158q0 31 20 56t54 25q35 0 53-19t26.5-52 10-71 21.5-74 36-57 16-32q0-10-2-12.5zm623.5 450q70.5-41.5 70.5-71.5 0-15-10.5-26t-26.5-11q-18 0-39 22.5t-64.5 39-90.5 16.5q-42 0-83-13-4 0-12-1-14 0-25.5 9.5T1163 1393q0 30 40.5 40t92.5 10q89 0 159.5-41.5zm296 206Q1692 1579 1612 1579q-165 0-233 48.5t-68 102.5q0 31 29 63.5t61 32.5l10-1q35-3 96-61.5t116-58.5q35 0 68 24.5t57 24.5q26 0 44.5-21t18.5-47q0-50-59.5-78.5zM1988 1558q0-32-39.5-44t-71-45.5-35.5-64.5l-2-17q0-17-12-27t-28-10-25 11-9 25q0 52 34 101.5t82 76.5 70 27q17 0 26.5-11.5t9.5-21.5z" + }, + "children": [] + }] +}; +exports.u1F625 = u1F625; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F626.js b/dist/noto_emoji_regular/u1F626.js new file mode 100644 index 000000000..34ca38625 --- /dev/null +++ b/dist/noto_emoji_regular/u1F626.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F626 = void 0; +var u1F626 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2268.5 1900q51.5 68 51.5 114 0 170-297.5 292.5T1303 2429q-136 0-269.5-14.5T774 2369t-234-80.5-170.5-109-76-118.5-13.5-220q0-645 340-1046.5T1410 393q216 0 442 102t337 296.5 111 452.5q0 111-19.5 219.5t-41.5 177-22 115.5q0 76 51.5 144zM1461 880q-33 16-55 52.5t-22 81.5q0 52 30.5 87t73.5 35q47 0 84.5-43.5T1610 989q-54-22-89-45.5t-60-63.5zm-162 10q0 7 5.5 13.5t14.5 6.5q17 0 23-23.5t24-45 40-25 22-19.5q0-11-7-16t-15-5q-50 8-78 51t-28 59zm-213-147q22 26 22 58 0 16-3 20t-3 12 5 13.5 14 5.5q12 0 18.5-12t7.5-25v-14q0-29-13.5-56.5T1106 702l-9-9q-7-5-13-5-7 0-13.5 5.5T1064 709q0 8 22 34zm-259 72q-16 32-16 71 0 50 29.5 85.5T913 1007q48 0 86-42.5t38-101.5q0-23-6.5-43t-17.5-36q-27 15-60 24t-79 9h-24.5l-22.5-2zm677 575.5Q1354 1247 1171 1247q-111 0-204 47.5t-147.5 136T765 1601q0 64 41.5 108t100.5 44q19 0 38-4l77-14q19-3 39-3 48 0 107.5 29t137.5 91.5 159 62.5q79 0 134-55t55-152q0-174-150-317.5z" + }, + "children": [] + }] +}; +exports.u1F626 = u1F626; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F627.js b/dist/noto_emoji_regular/u1F627.js new file mode 100644 index 000000000..33e17b5eb --- /dev/null +++ b/dist/noto_emoji_regular/u1F627.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F627 = void 0; +var u1F627 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2296 1812q17 53 17 92 0 164-296 284t-721 120q-268 0-504.5-53.5t-374.5-148T279 1904q-4-35-6-71t-2-73q0-330 146.5-629.5t404-464T1409 502q454 0 687 249t233 594q0 117-25 213t-25 156q0 45 17 98zM1210 936q0 2-1 5 0 7 5 13t14 6q18 0 22-20t23.5-44.5 42-28T1338 845q0-8-6-13t-13-5h-4q-49 8-77 51t-28 58zm-170.5-132q20.5 26 20.5 57 0 16-3.5 22.5T1053 896q0 8 6 14t14 6q12 0 19-19t7-38q0-25-11-50t-27-44l-8-9q-5-5-13-5-9 0-15 6t-6 13q0 8 20.5 34zM766 1025q30 35 73 35 49 0 86.5-43T963 914q0-44-25-78-26 17-59 25.5t-79 8.5h-24.5l-22.5-2q-9 16-13 33.5t-4 36.5q0 52 30 87zm571 793q4-22 6.5-45t2.5-49q0-163-111.5-271.5T958 1344q-138 0-251.5 86.5T575 1626l-2 23zm199-776q-54-20-91-48.5t-59-60.5q-32 16-54 52.5t-22 81.5q0 51 29 86t74 35q48 0 85.5-42t37.5-104zm411.5 744.5q22.5-33.5 22.5-79.5 0-89-28-173t-42-84q-16 0-66 85.5t-50 162.5q0 50 28 86t75 36q38 0 60.5-33.5z" + }, + "children": [] + }] +}; +exports.u1F627 = u1F627; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F628.js b/dist/noto_emoji_regular/u1F628.js new file mode 100644 index 000000000..9d03f1bdd --- /dev/null +++ b/dist/noto_emoji_regular/u1F628.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F628 = void 0; +var u1F628 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2291 1818q17 51 17 89 0 163-297.5 281T1296 2306q-419 0-716-118t-297-281q-4-35-6-70t-2-72q0-322 144-615.5T820 692t588-164q73 0 155 7.5t163 29.5v794q0 11 7 18t18 7q10 0 17-7t7-18V579q23 6 44.5 14.5T1862 611v748q0 11 7 18t17 7q11 0 18-7t7-18V636q23 13 44.5 26t41.5 28v669q0 11 7 18t18 7 17-7 6-18V729q25 20 46.5 42t41.5 46v542q0 11 7 18t18 7q9 0 16-7t7-18V883q69 102 106.5 222.5T2325 1358q0 106-25.5 208t-25.5 155q0 46 17 97zm-1020-407.5Q1154 1307 1003 1307q-142 0-238.5 92T668 1605q0 71 41.5 115.5T834 1765q23 0 45.5-1.5t45.5-1.5q31 0 62 6t58 19l56 27q28 14 56.5 24.5t60.5 10.5q75 0 122.5-60t47.5-145q0-130-117-233.5zm618 506.5q38 0 60-31.5t22-79.5q0-79-22-151t-36-94.5-52 35-59 114.5q-16 44-16 88 0 51 25.5 83t70.5 36h7zm-359.5-818.5Q1503 1066 1462 1066q-44 0-77.5 38t-33.5 94q0 45 27.5 78t68.5 33q44 0 76.5-38.5t32.5-94.5q0-45-26.5-77.5zM789 1152q25 29 64 29 45 0 81.5-38.5T971 1050q0-39-23-69t-64-30q-47 0-83.5 40t-36.5 93q0 39 25 68z" + }, + "children": [] + }] +}; +exports.u1F628 = u1F628; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F629.js b/dist/noto_emoji_regular/u1F629.js new file mode 100644 index 000000000..d6d0fb594 --- /dev/null +++ b/dist/noto_emoji_regular/u1F629.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F629 = void 0; +var u1F629 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1761 706q268 157 421.5 438.5T2336 1737q0 32-2 63t-5 63q0 161-294 279.5T1316 2261q-423 0-717.5-118.5T304 1863q0-41 21-90.5t21-94.5q0-59-26.5-127.5t-41-144T264 1257q0-208 112-375.5t307-250 472-82.5q338 0 606 157zm-618.5 670.5Q1215 1420 1304 1420q47 0 78-8l33-8q23-11 23-36 0-17-11-26.5t-26-9.5q-8 0-30.5 7.5t-65.5 7.5q-47 0-92-16.5t-65.5-39.5-40.5-23q-14 0-25.5 9.5T1070 1304q0 29 72.5 72.5zm-329.5-40q-10-10.5-27-10.5-15 0-25 10.5t-10 26.5q0 39-36.5 79.5t-76 51T599 1534q0 17 11 27t26 10q12 0 64-25.5t87.5-78T823 1361q0-14-10-24.5zm612 321.5q-49-52-125-52-66 0-144 50t-122 50q-18 0-81-26.5T849 1653q-46 0-86 31.5t-40 80.5q0 65 40 104t81 39q50 0 91-16.5t99-16.5q51 0 110.5 36.5T1270 1948q106 0 155-53.5t49-116.5q0-68-49-120z" + }, + "children": [] + }] +}; +exports.u1F629 = u1F629; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F62A.js b/dist/noto_emoji_regular/u1F62A.js new file mode 100644 index 000000000..0baef0d17 --- /dev/null +++ b/dist/noto_emoji_regular/u1F62A.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F62A = void 0; +var u1F62A = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2263.5 1908.5Q2315 1976 2315 2022q0 165-295 285.5T1303 2428q-428 0-722.5-117.5T286 2031q0-6 1-12l2-12q-2-38-3-76t-1-75q0-646 339.5-1038T1410 426q215 0 438 99.5t335 291 112 444.5q0 104-17.5 207t-41.5 176.5-24 120.5q0 76 51.5 143.5zm-750.5-54q65-41.5 65-123.5 0-132-121-225.5t-253-93.5q-115 0-199 74.5T921 1672q0 73 55 125t159 75.5 194 23.5q119 0 184-41.5zM928 1229l28-35q16-20 37.5-42t51.5-46q-66-2-137-70t-149-68-131 55-53 130q0 71 56.5 118.5T763 1319q48 0 87.5-22t77.5-68zm-20-425v4q0 3 2 5 12 48 63.5 92t129.5 44q31 0 61-10t43-20l9-7q7-5 10-12.5t3-15.5q0-14-11-25.5t-25-11.5q-13 0-23 9-2 0-20.5 10t-48.5 10q-44 0-76.5-24t-44-54-36.5-30q-19 0-27.5 11.5T908 804zm871 287q7-5 10-12t3-15q0-14-11-25.5t-25-11.5q-12 0-23 8-37 21-66 21-42 0-72-22.5t-42.5-53T1515 950q-15 0-26 11t-11 25q0 31 50.5 86.5T1667 1128q31 0 60-9.5t43-20.5z" + }, + "children": [] + }] +}; +exports.u1F62A = u1F62A; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F62B.js b/dist/noto_emoji_regular/u1F62B.js new file mode 100644 index 000000000..772111219 --- /dev/null +++ b/dist/noto_emoji_regular/u1F62B.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F62B = void 0; +var u1F62B = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2178 2088q-134 93-371 147.5t-507 54.5q-420 0-716-119t-296-283q0-662 259-1003t753-341 753 337.5T2312 1888q0 107-134 200zm-378.5-236.5Q1658 1805 1479 1805q-225 0-379.5 73.5T945 2042q0 48 63 76.5t195 36.5l71 4q39 2 84 2 260 0 421.5-43t161.5-132q0-88-141.5-134.5zM881 968q-9-44-17-44-23 0-96.5 86.5T694 1177q0 42 26.5 74t67.5 32q44 0 73-51t29-164q0-56-9-100zm59 712l11-1q42-14 87-19t83-5 62 3 35 3q15 0 25-11t10-25q0-21-24.5-39.5t-95.5-56-156-62.5l-33-10q-3-2-10-2-14 0-25.5 11t-11.5 26q0 33 46.5 42t133.5 50q-93 5-133.5 20t-40.5 40q0 14 11.5 25t25.5 11zm1022-71q14 0 26-9.5t12-26.5q0-24-25-34t-61-10h-65q65-36 102-50.5t37-40.5q0-17-11.5-27t-25.5-10h-6l-7 2-28 12q-69 30-151 86t-82 86q0 15 11.5 25.5t25.5 10.5h5q2 0 4-2l14-3q23-5 64.5-10.5t78.5-5.5q20 0 39 2t37 5h6z" + }, + "children": [] + }] +}; +exports.u1F62B = u1F62B; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F62C.js b/dist/noto_emoji_regular/u1F62C.js new file mode 100644 index 000000000..72bab190d --- /dev/null +++ b/dist/noto_emoji_regular/u1F62C.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F62C = void 0; +var u1F62C = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2335.5 1705.5q-31.5 115.5-98 221t-121 152-160 94.5-275.5 81-382 33q-260 0-468-52t-318.5-130.5-194.5-265-84-387.5q0-250 135.5-465.5t392-349T1299 504q287 0 547.5 138.5t390.5 356 130 461.5q0 130-31.5 245.5zM822 1376q-54 57-89.5 111.5T674 1616l21-6 27-6q21-4 47.5-9t52.5-9v-210zm-17-298.5q73 64.5 176 64.5 98 0 162-61t64-134q0-19-5-33t-17-14q-17 0-27.5 26t-44.5 26q-14 0-21-3l-15-6-276-126-8-3q-4 0-9-1-27 0-39.5 27T732 913q0 100 73 164.5zm246 155.5q-49 17-90 39.5t-75 48.5v257q35-5 77-9l88-8v-328zm229-41q-94 3-165 22v343q38-2 79-3l86-2v-360zm229 21q-38-9-79-14.5t-86-6.5v360l86 2q41 0 79 3v-344zm229 106q-35-26-76-48t-89-39v329q47 3 88 7t77 9v-258zm138-481.5q-14-24.5-39-24.5-5 0-8.5 1t-7.5 3l-276 126-14 5q-9 4-23 4-34 0-44.5-26t-27.5-26q-11 0-16.5 14t-5.5 33q0 76 65 135.5t161 59.5q106 0 178-66t72-163q0-51-14-75.5zm-74 748.5l61 10q23 4 39 7.5t28 6.5l23 6q-27-76-64-134.5t-87-108.5v213z" + }, + "children": [] + }] +}; +exports.u1F62C = u1F62C; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F62D.js b/dist/noto_emoji_regular/u1F62D.js new file mode 100644 index 000000000..750430b6c --- /dev/null +++ b/dist/noto_emoji_regular/u1F62D.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F62D = void 0; +var u1F62D = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2263.5 1908.5Q2315 1975 2315 2022q0 164-294.5 285T1303 2428q-426 0-721.5-118T286 2031q0-6 1-13l2-13q-2-38-3-75.5t-1-75.5q0-643 339.5-1035.5T1410 426q215 0 438 99.5t335 291 112 444.5q0 103-17.5 206t-41.5 177.5-24 122.5q0 75 51.5 141.5zM1536 1238q-82-118-200-118-17 0-31 3l-56 14q-14 4-28 4-49 0-109.5-52T993 1037q-89 0-172.5 104.5T737 1334q0 56 40.5 94.5T882 1467q24 0 48.5-3t47.5-3q66 0 125 37t104.5 99 97.5 82.5 106 20.5q99 0 153-57.5t54-160.5q0-126-82-244zm127-226q27-2 50-3h84q14 0 24.5-10t10.5-24q0-27-17-33.5t-68-6.5h-35q-89 2-161 19.5t-72 49.5q0 22 15 29.5t83 26 114 48 56 29.5q13 0 24-11t11-28q0-19-13-29t-43-26.5-63-30.5zM873.5 876q10.5 10 26.5 10 78 0 152 30t82 30q14 0 25.5-11.5T1171 909q0-15-36.5-60t-106-105.5T936 683q-15 0-26 10t-11 26q0 19 17 30l35 25q26 19 64 54-27-6-56-10.5t-59-4.5q-16 0-26.5 11T863 850q0 16 10.5 26zm1096 551.5q15.5-21.5 15.5-62.5 0-42-33.5-80.5T1855 1217l-15-6q-10-3-18-3t-9.5 5-1.5 11q0 27 9.5 52.5t13.5 51.5l7 31q8 40 29.5 65t54.5 25q29 0 44.5-21.5zM762 993l18-28q9-14 16-27t7-21q0-5-4.5-8.5T784 905q-74 0-136 40.5T586 1053q0 29 18.5 44t42.5 15h7q22 0 46.5-24t37.5-51.5 24-43.5zm-236 375q0-14-1.5-26t-1.5-25q0-17 1.5-32.5t1.5-32.5v-11q0-10-3.5-18t-10.5-8q-27 0-77 56.5T385 1380q0 34 17.5 64t49.5 30q33 0 52-26t22-66v-14zm1532.5 308.5Q2036 1638 1997 1604l-15-13q-9-8-16-8-16 0-17.5 53.5t-5 68-3.5 44.5q0 43 18 70t53 27q32 0 51-33.5t19-62.5q0-35-22.5-73.5z" + }, + "children": [] + }] +}; +exports.u1F62D = u1F62D; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F62E.js b/dist/noto_emoji_regular/u1F62E.js new file mode 100644 index 000000000..bcdf3ccda --- /dev/null +++ b/dist/noto_emoji_regular/u1F62E.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F62E = void 0; +var u1F62E = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2180 2076.5q-137 94.5-373.5 148T1300 2278q-265 0-500-52t-375.5-147T284 1875q0-613 259.5-981.5T1300 525q317 0 544 154.5t350 469 123 726.5q0 107-137 201.5zm-1217-741q32-39.5 32-88.5 0-41-27-67.5t-62-26.5q-44 0-80 37t-36 88q0 45 29 71t66 26q46 0 78-39.5zm429.5 329Q1353 1622 1300 1622q-54 0-92.5 43t-38.5 102q0 55 37 90t94 35q56 0 94-34.5t38-90.5q0-60-39.5-102.5zm287.5-581q-37-35.5-79-35.5-35 0-61.5 26.5T1513 1140q0 55 32 92.5t76 37.5q39 0 67.5-26.5t28.5-71.5q0-53-37-88.5z" + }, + "children": [] + }] +}; +exports.u1F62E = u1F62E; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F62F.js b/dist/noto_emoji_regular/u1F62F.js new file mode 100644 index 000000000..15b1f1820 --- /dev/null +++ b/dist/noto_emoji_regular/u1F62F.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F62F = void 0; +var u1F62F = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2268.5 1899q51.5 68 51.5 114 0 111-133.5 207t-371 152-512.5 56q-136 0-270-14.5t-260-45-233-80T370 2179t-76.5-118.5T280 1840q0-645 340-1046t790-401q218 0 441.5 100.5t336 295.5 112.5 454q0 111-19.5 219.5t-41.5 177-22 115.5q0 76 51.5 144zM1430 925.5q29 28.5 63 28.5 46 0 82.5-37.5T1612 830q0-40-25.5-66.5T1521 737q-44 0-82 38.5t-38 83.5q0 38 29 66.5zm-569-74q26 27.5 70 27.5 47 0 77.5-39t30.5-89q0-39-27-66.5T949 657q-44 0-79 36.5T835 781q0 43 26 70.5zM2039 1992q29-15 45.5-39.5t16.5-52.5q0-25-16-51l-282-427q-20-30-47.5-47.5T1703 1357q-11 0-23 5l-18 9-89-113q-6-8-15-11t-17-4q-8 0-14 3l-155 65-112-128q-12-14-30-14-9 0-16 3l-190 85-88-102q-12-14-30-14-9 0-19 5l-142 81-78-75q-13-11-27-11-10 0-18 4l-115 57q-11 5-16.5 15t-5.5 21q0 17 12.5 28t27.5 11q10 0 17-4l90-45 80 75q10 12 27 12 9 0 19-5l139-80 87 101q11 13 30 13 8 0 16-3l190-85 111 127q12 14 30 14 7 0 15-3l153-64 62 78q-11 11-17 28t-6 38q0 14 2.5 29t8.5 29l185 475q11 29 36.5 45.5t55.5 16.5q27 0 53-13zm-100-139q12-6 26-6 23 0 42.5 16t19.5 41q0 32-32 48l-92 45q-13 7-28 7-22 0-38-15t-16-41q0-16 8.5-30.5t23.5-22.5z" + }, + "children": [] + }] +}; +exports.u1F62F = u1F62F; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F630.js b/dist/noto_emoji_regular/u1F630.js new file mode 100644 index 000000000..85912326f --- /dev/null +++ b/dist/noto_emoji_regular/u1F630.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F630 = void 0; +var u1F630 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2291 1791q17 51 17 91 0 160-294 278.5T1296 2279q-425 0-719-118.5T283 1882q-4-35-6-70t-2-73q0-324 145.5-618.5t402-457T1408 501q453 0 685 245.5t232 583.5q0 107-25.5 209t-25.5 155q0 46 17 97zm-1163.5-443q-39.5-61-96.5-61-62 0-124.5 85T844 1552q0 73 55.5 129.5T1034 1738q65 0 99-56t34-151q0-122-39.5-183zm809 109.5Q1909 1374 1895 1372q-17 0-67 84.5t-50 160.5q0 51 25 85.5t78 34.5q38 0 60.5-32.5t22.5-78.5q0-85-27.5-168.5zM1553 1167q2-9 2-17-51-26-82.5-54.5T1423 1034q-36 13-61 51t-25 83q0 47 27 79t69 32q37 0 69.5-25.5t46.5-67.5zm-748.5-103q26.5 34 72.5 34t83-41.5 37-98.5q0-36-16-64-20 9-43.5 15t-51.5 6q-25 0-45-2.5t-40-6.5l-8 16q-8 16-11.5 33t-3.5 29q0 46 26.5 80z" + }, + "children": [] + }] +}; +exports.u1F630 = u1F630; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F631.js b/dist/noto_emoji_regular/u1F631.js new file mode 100644 index 000000000..b4f41ce58 --- /dev/null +++ b/dist/noto_emoji_regular/u1F631.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F631 = void 0; +var u1F631 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M623 2282q-125-33-205-85t-128-111l-2-26q0-769 273-1168.5T1363 492q474 0 711.5 357T2312 1920q-73 26-138 50t-126 48q8-55 64.5-160t92.5-203.5 36-193.5q0-104-48.5-161.5T2070 1242q-55 0-103.5 39t-67 127-117.5 203-128 194-29 179q0 52 2.5 105t4.5 108q-179 69-330.5 99.5T1005 2327q-4 0-7-1t-6-1v-42q0-75 4.5-149.5t4.5-149.5q0-93-24-169t-92-154.5T775.5 1518 721 1387.5t-60-106-105-39.5q-78 0-125.5 62T383 1476q0 97 31.5 207.5T484 1857t58 84l28 30q36 41 46 76.5t10 99.5v42zm295 42q-62-2-117-8.5T697 2299v-81q0-18 1.5-36.5t1.5-36.5q0-153-74.5-223.5t-121.5-198-47-242.5q0-86 25-125.5t74-39.5q30 0 58.5 22t38 75 45 118 105 145.5 97 147T927 1979q0 78-3.5 163t-4.5 140zm1055-274q-60 20-127.5 53.5T1703 2166q-2-46-3-92.5t-1-93.5q0-80 21-144t67-116 106-133.5 81-176 96-94.5q42 0 70.5 34t28.5 111q0 63-20 131.5t-53 136.5l-43 87q-49 97-64.5 144.5T1973 2050zm-829-186q44 61 127 61 56 0 108.5-28t71.5-65 19-111q0-139-53.5-260.5T1282 1339q-56 0-95.5 43.5t-63 158T1100 1709q0 94 44 155zm-348-772q6 8 16 11 2 0 22 5t56 5l22-1q11 0 24-2-2 5-2 16 0 59 28 96t67 37 66.5-37.5 27.5-89.5q0-51-26-88 35-29 51-65.5t14-34.5v-5q0-13-9-23.5t-23-10.5q-15 0-24 12t-17 38l-214 94q-17-2-28-4.5t-25-2.5q-11 0-21.5 8.5T790 1075q0 9 6 17zm644-148q0 10 18 43t45 57q-25 35-25 88 0 55 28 91t65 36q38 0 66.5-37t28.5-96q0-11-2-16 11 2 23 2l23 1q34 0 56-5t23-5q11-3 16.5-12t5.5-19q0-14-10-22t-22-8q-10 0-20.5 2.5t-33.5 4.5l-213-94q-3-6-11.5-28t-30.5-22q-11 0-21.5 9.5T1438 936q0 6 2 8z" + }, + "children": [] + }] +}; +exports.u1F631 = u1F631; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F632.js b/dist/noto_emoji_regular/u1F632.js new file mode 100644 index 000000000..9bfcbb164 --- /dev/null +++ b/dist/noto_emoji_regular/u1F632.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F632 = void 0; +var u1F632 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2263.5 1908.5Q2315 1976 2315 2022q0 109-137.5 204T1805 2374.5t-502 53.5q-426 0-721.5-118T286 2031q0-7 1-14l2-13q-2-38-3-76t-1-75q0-432 150.5-744.5T847 611t561-185q222 0 443.5 99.5t332.5 291 111 444.5q0 104-18 207.5t-41.5 176.5-23.5 120q0 76 51.5 143.5zm-744.5-579q-55-51.5-148-51.5-60 0-148 27t-126 27h-14q-28 0-87.5-54T882 1224q-59 0-100.5 44.5T740 1379q0 30 20 69.5t72 45.5l19 2q10 0 25 1h34q55 0 95.5 15t89.5 69.5 108 76 120 21.5q95 0 173-65t78-160q0-73-55-124.5zM827 975q45 53 120 53 85 0 157.5-75t72.5-173q0-75-47-127t-119-52q-91 0-160 77t-69 172q0 72 45 125zm860.5-104q-22.5-28-58.5-28-38 0-68.5 34.5T1530 958q0 38 22 65t59 27q40 0 69.5-34.5T1710 938q0-39-22.5-67z" + }, + "children": [] + }] +}; +exports.u1F632 = u1F632; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F633.js b/dist/noto_emoji_regular/u1F633.js new file mode 100644 index 000000000..5b6bb64c6 --- /dev/null +++ b/dist/noto_emoji_regular/u1F633.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F633 = void 0; +var u1F633 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1736.5 744Q2000 897 2153 1175t153 587q0 32-2 63t-5 62q0 160-291 276t-707 116-707-116-291-276q0-40 21-89.5t21-93.5q0-54-40.5-168T264 1290q0-213 117-379.5t310-243 450-76.5q332 0 595.5 153zM659 1716q0-58-33-93t-82-35q-54 0-97 41.5T404 1730q0 49 34 85t84 36q56 0 96.5-41.5T659 1716zm155-284q2-8 2-13 0-15-10.5-26t-26.5-11q-10 0-19 6t-13 17l-8 12q-12 17-36.5 31t-51.5 14q-44 0-71-24.5t-43-24.5-26.5 11-10.5 26q0 14 10 23 0 7 41.5 34.5T648 1535q57 0 97.5-27t52.5-50zm361.5 209.5q-9.5-2.5-23.5-2.5-28 3-57.5 14.5T1050 1678l-21 18q-11 9-20 16t-16 7q-9 0-18-6t-18-14l-17-14q-10-7-39.5-16t-49.5-9q-14 0-20 6.5t-6 13.5q0 23 30 27t53 20l29 20q14 11 29.5 18.5t33.5 7.5q23 0 43-15t36-28l21-15q19-14 52-25.5t33-29.5q0-16-9.5-18.5zM1426 1371l2-7q0-4 1-7 0-14-10-25.5t-27-11.5q-11 0-20.5 5.5t-11.5 11-11.5 20.5-34 30.5-61.5 15.5q-42 0-66-18t-23-18q-9-14-27-14-14 0-25.5 11.5T1100 1390q0 12 8 23l11 11q19 19 55 36t78 17q55 0 102-28.5t72-77.5zm243.5 189.5Q1621 1512 1554 1512q-70 0-118 49.5t-48 113.5q0 68 50.5 115.5T1554 1838t114.5-48.5T1718 1675t-48.5-114.5z" + }, + "children": [] + }] +}; +exports.u1F633 = u1F633; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F634.js b/dist/noto_emoji_regular/u1F634.js new file mode 100644 index 000000000..7b7b2247c --- /dev/null +++ b/dist/noto_emoji_regular/u1F634.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F634 = void 0; +var u1F634 = { + "viewBox": "0 0 2601 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1765.5 764.5Q2021 932 2161 1231.5t140 635.5q0 81-9 156 0 161-294 279.5T1279 2421t-719-118.5T266 2023q0-41 21-90.5t21-94.5q0-56-27-127.5T238 1556t-16-166q0-181 72.5-340T505 782.5t318-147 341-38.5q346 0 601.5 167.5zm-945 778Q810 1531 794 1531q-20 0-35 23t-46.5 40-69.5 17q-33 0-58-13t-38.5-28-30.5-15q-16 0-26 11.5t-10 25.5 7 22l12 12q19 21 57.5 39.5T643 1684q80 0 134-44.5t54-71.5q0-14-10.5-25.5zm535 396.5q-40.5-44-80.5-74t-100-30q-105 0-156.5 80T967 2024q0 10 6 15t14 6l6 1h208q21 10 33.5 37t17.5 55l3 26q6 81 17 116t41 35q19 0 34.5-23t17.5-112.5 16.5-122.5 14.5-43q0-31-40.5-75zm128.5-412q4-7 4-16 0-14-10.5-25.5T1450 1474q-19 0-34 23t-47.5 41.5-70.5 18.5q-29 0-54-10t-38-23l-12-11q-12-14-30-14-17 0-26 11.5t-9 25.5 7 22l12 12q19 22 59 40.5t89 18.5q62 0 109.5-27t67.5-57zm521-526.5q-9-13.5-54.5-29t-100-33T1787 921q-14 0-30 16t-16 45q0 26 49 39.5t49 17.5q0 8-79 57t-79 76q0 29 53 44t104.5 34 65.5 19 30-15.5 16-44.5q0-28-47-39.5t-47-16.5q0-3 12-11l61-40q12-8 48.5-33.5t36.5-45.5q0-9-9-22.5zM2320.5 734q-28.5 16-57.5 33t-49 26l-43 23q-9 5-9 7 0 3 4 4l6 3q3 1 45 20t42 43q0 25-17.5 44t-34.5 19-34-9l-33-16q-38-18-105-45.5t-67-55.5q0-26 59.5-58t101.5-56l20-11q8-4 8-9 0-2-50-23t-50-45q0-25 17.5-45t34.5-20q24 0 50 16t108 46.5 82 70.5q0 22-28.5 38zm219-436.5Q2478 337 2426 366l-29 16q-14 7-25 15t-11 12 7 6l12 5q4 1 59 22.5t55 54.5q0 20-18.5 52.5T2425 582q-23 0-52.5-14t-96-37.5T2172 490l-24-11q-18-8-31-20t-13-28q0-30 38.5-58.5T2223 320l109-64q13-8 13-13 0-7-40-19.5t-69-29.5-29-43q0-18 17.5-51.5T2275 66q23 0 94 30t151.5 58 80.5 74q0 30-61.5 69.5z" + }, + "children": [] + }] +}; +exports.u1F634 = u1F634; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F635.js b/dist/noto_emoji_regular/u1F635.js new file mode 100644 index 000000000..43a02b67a --- /dev/null +++ b/dist/noto_emoji_regular/u1F635.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F635 = void 0; +var u1F635 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2263.5 1908.5Q2315 1976 2315 2022q0 123-169.5 225.5T1697 2396q-10 2-15 2-174 30-379 30-426 0-721.5-118T286 2031q0-7 1-14l2-13q-2-38-3-76t-1-75q0-432 150.5-744.5T847 611t561-185q222 0 443.5 99.5t332.5 291 111 444.5q0 104-18 207.5t-41.5 176.5-23.5 120q0 76 51.5 143.5zm-700-665Q1501 1187 1397 1187q-56 0-136 18t-119 18q-51 0-76-26.5t-73-68.5-104-42q-34 0-74.5 21t-58.5 70-18 71q0 48 28 87.5t102 42 130.5 23 103.5 89 122.5 97.5 137.5 29q104 0 184-70t80-168q0-78-62.5-134.5zm-205-479.5q-31.5 1-63.5 4-85-50-194.5-92T975 634q-15 0-26 10.5T938 674q0 27 49 39.5t180 70.5q-121 21-220.5 58.5t-109.5 50-10 24.5q0 17 11.5 26.5T864 953q13 0 57.5-21.5t142-49T1279 843q116 70 224.5 185t127.5 140.5 40 25.5q14 0 25.5-11.5t11.5-25.5q0-9-3.5-17t-107-120T1400 838h30q153 0 265 24.5t115 24.5q12 0 24.5-10t12.5-24q0-23-14.5-32.5t-143-33.5-267.5-24q-32 0-63.5 1z" + }, + "children": [] + }] +}; +exports.u1F635 = u1F635; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F636.js b/dist/noto_emoji_regular/u1F636.js new file mode 100644 index 000000000..1e8b57cde --- /dev/null +++ b/dist/noto_emoji_regular/u1F636.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F636 = void 0; +var u1F636 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2174 2082.5q-140 93.5-375.5 145T1301 2279q-263 0-499.5-52T426 2082t-139-201q0-383 114-692t341-473.5T1301 551q323 0 549 157.5t345 466.5 119 706q0 108-140 201.5zM987.5 1274q-29.5-36-72.5-36-42 0-72 35.5t-30 86.5 30 87 72 36q43 0 72.5-36.5t29.5-86.5-29.5-86zm770.5-.5q-30-35.5-72-35.5t-72.5 35.5-30.5 86.5 30 87 73 36q42 0 72-36t30-87-30-86.5z" + }, + "children": [] + }] +}; +exports.u1F636 = u1F636; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F637.js b/dist/noto_emoji_regular/u1F637.js new file mode 100644 index 000000000..32c095175 --- /dev/null +++ b/dist/noto_emoji_regular/u1F637.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F637 = void 0; +var u1F637 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M597 1121q-31-50-44-102t-17-85q162-239 390-373.5T1410 426q222 0 444 100.5T2184.5 819t108.5 457q-54 54-195 99t-350 63q0-140-161.5-170t-349-76-312.5-87l-92-30q-44-14-70-19.5t-43-5.5q-78 0-123 71zm1335 2q0 4-1 7t-1 8q0 51 27 85t73 34q39 0 62-32.5t23-78.5q0-77-20-144t-36-97-52 25.5-56 108.5q-16 42-19 84zm-427-197q-34 17-54.5 51t-20.5 76q0 49 28.5 82.5t70.5 33.5q45 0 81.5-39.5t36.5-98.5q-50-17-86.5-45.5T1505 926zm-628-79q-8 15-13 32t-5 37q0 48 28 82t70 34q45 0 81.5-39.5T1075 894q0-41-22-74-23 14-52.5 23t-70.5 9q-14 0-27.5-1.5T877 847zm792 984q7-36 17-80l37-174q9-42 17-76 191-15 329.5-52t221.5-90q-2 21-5 42l-6 44q-52 104-210 214.5T1669 1831zM486 1016q10 40 28 84.5t50 86.5q-26 61-51 161t-39 234q-41-64-55.5-135.5T404 1309q0-47 7-103t21-87.5 54-102.5zm1777.5 892.5Q2315 1976 2315 2022q0 164-294.5 285T1303 2428q-426 0-721.5-118T286 2031q0-7 1-14l2-12q-2-38-3-75t-1-73q0-261 57-483 7 77 35 156t90 148q0 9-1.5 13.5T464 1711q0 123 368.5 238.5T1490 2065q66 0 106.5-42t56.5-122q200-47 352-127t246-183q-7 31-23 81.5t-16 92.5q0 76 51.5 143.5z" + }, + "children": [] + }] +}; +exports.u1F637 = u1F637; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F638.js b/dist/noto_emoji_regular/u1F638.js new file mode 100644 index 000000000..84997fd71 --- /dev/null +++ b/dist/noto_emoji_regular/u1F638.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F638 = void 0; +var u1F638 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2425 1772q14 3 22.5 13.5t8.5 24.5q0 23-15 31.5t-31 8.5l-145-26q-5 29-11.5 57t-16.5 55l119 38q13 5 19.5 15t6.5 22q0 18-11 29t-27 11q-8 0-12-1l-126-41q-94 189-344 295.5T1293 2411q-70 0-147.5-8t-137.5-20l-56-10q-198-42-345-138.5T393 2009l-126 41q-4 0-11 1-17 0-29-10.5t-12-27.5q0-13 8-23.5t21-15.5l119-37q-11-28-17-56t-10-57l-147 26q-19 0-32.5-10t-13.5-30q0-14 9-24.5t23-13.5l152-28q0-11-1-21v-51q0-14 1-29l-154-24q-15-2-25-13t-10-25q0-17 12-28.5t30-11.5h5l149 22q14-82 44.5-162.5T458 1245q-7-56-13.5-145.5T438 913q0-226 41.5-346T599 447q85 0 219 113t207 199l81 92q48-6 96-10.5t98-4.5q49 0 97.5 4.5T1495 851l57-67q116-133 243-235t205-102q76 0 117.5 116.5T2159 913q0 98-5.5 186.5T2141 1245q49 75 80 155.5t44 162.5l150-22h6q15 0 27.5 10.5t12.5 28.5q0 14-9.5 25.5T2426 1619l-153 24 1 52-1 49zm-947 135q-35-11-72.5-25.5T1329 1866v337q38 0 75-2.5t74-7.5v-286zm-356 289q27 3 55 5t56 2h38v-333q-39 8-75.5 24t-73.5 25v277zm366-594q-2 3-2 6l-1 7q0 16 11.5 28t28.5 12q26 0 42-34t55-61.5 95-27.5q36 0 67 13.5t47 28.5l9 10q12 15 29 15t28-12 11-28q0-33-62.5-69t-128.5-36q-74 0-126.5 32t-77.5 70-25 46zm-788-74q-9 10-9 26 0 15 11 27t28 12q18 0 29-12l10-9q16-15 44.5-27.5T878 1532q56 0 95 27.5t49 49.5l14 24q4 13 15 19.5t22 6.5q17 0 27.5-12t10.5-26v-7q0-4-1-7 0-8-30-52t-82.5-72.5T877 1454q-52 0-96 19.5t-67 41.5zm836 659q79-11 149-31v-230q-8 0-15.5 1t-15.5 1q-61 0-118-6v265zm-622-32q35 11 72.5 19t76.5 15v-259q-18 4-36.5 5t-38.5 1-37-2-37-5v226zm-207-104q31 25 68.5 45t80.5 37v-214q-38-9-78.5-17.5T707 1873v178zm1036 88q45-19 81-36t68-44v-174q-34 14-71 23.5t-78 13.5v217zM649 1993v-137q-5 0-13-1-21 0-28.5 9.5T600 1888q0 22 14.5 52t34.5 53zm1342.5-125q-7.5-5-18.5-5-5 0-10 1l-12 2v136q24-36 36-71.5t12-45.5q0-12-7.5-17z" + }, + "children": [] + }] +}; +exports.u1F638 = u1F638; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F639.js b/dist/noto_emoji_regular/u1F639.js new file mode 100644 index 000000000..6f130c63d --- /dev/null +++ b/dist/noto_emoji_regular/u1F639.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F639 = void 0; +var u1F639 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2425 1659q14 2 22.5 13t8.5 26q0 23-15 30.5t-31 7.5l-124-23q-2 62-12 122l82 26q13 4 19.5 14t6.5 23q0 17-11.5 28t-26.5 11q-8 0-12-1l-76-25q-76 253-343.5 376.5T1305 2411q-329 0-599.5-127T366 1904l-99 32q-4 0-11 1-17 0-29-10.5t-12-27.5q0-14 8-24t21-14l105-33q-5-30-7-60l-4-60-149 28q-20 0-33.5-9t-13.5-31q0-14 9.5-24t23.5-13l165-31q0-23 3.5-47t8.5-49l-180-26q-15-2-23.5-13t-8.5-27 11-27 28-11h6l186 27q35-112 99-210-6-55-12.5-145T451 914q0-221 40.5-344T612 447q87 0 224.5 117T1040 761l78 90q96-15 194-15 97 0 195 15l57-67q94-113 230-225t218-112q78 0 119.5 120.5T2173 911q0 98-6.5 188t-12.5 146q63 98 98 207l163-24h6q15 0 27 10.5t12 27.5q0 16-9 27t-25 13l-155 23q5 26 9 52t4 52zm-1750 71l9-19q5-11 5-22 0-19-25-19-60 0-145.5 65T433 1887q0 44 26 78t68 34q51 0 80-43.5t42-121.5 26-104zm1394 268l12 1q42 0 68-33.5t26-77.5q0-84-82-151t-149-67q-25 0-25 19 2 24 16.5 46t25 92 26.5 104.5 35 49 47 17.5zm-677-74q-30-13-63-18v335q38-2 75.5-5t73.5-10v-267l-14-3q-7 0-13-4zm-270 305q36 8 73 11t76 3v-333q-21 6-38 14l-35 17q-18 9-36 16.5t-40 11.5v260zm-364-635q8-4 15-10 0-5 35.5-28.5T894 1532q55 0 94.5 27t49.5 48l13 23q4 11 14 18t21 7q17 0 28.5-12t11.5-26q0-8-3-14 0-10-32-54.5t-83.5-70.5-114.5-26q-54 0-100 21.5t-67 44.5l-14 14q-5 6-7 13t-2 13q0 18 13 29t26 11q8 0 16-4zm1094-10q12 15 30 15 17 0 28-12t11-28q0-14-9-25-2 0-18-17t-62-40-103-23q-73 0-124.5 31.5t-78 70-26.5 46.5l-2 6q0 3-1 7 0 16 11.5 28t28.5 12q26 0 41.5-33.5t55-61.5 96.5-28q37 0 67 13.5t46 28.5zm-316 630l39-9q30-7 60.5-19.5t49.5-27.5v-204q-23 8-47.5 10t-48.5 2h-27q-13 0-26-1v249zm-622-63q32 20 70.5 36.5t78.5 27.5v-241q-3 0-6 1t-6 1q-32 0-68.5-9t-68.5-20v204zm-58-42v-184q-15-8-32-19t-39-11q-19 0-26 8t-7 23q0 33 28 87.5t76 95.5zm991-178v-6q0-12-6-17t-14-5q-17 0-41.5 12t-42.5 20v184q60-49 82-114.5t22-73.5z" + }, + "children": [] + }] +}; +exports.u1F639 = u1F639; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F63A.js b/dist/noto_emoji_regular/u1F63A.js new file mode 100644 index 000000000..369483a44 --- /dev/null +++ b/dist/noto_emoji_regular/u1F63A.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F63A = void 0; +var u1F63A = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2425 1754q14 3 22.5 14.5t8.5 25.5q0 21-14.5 29.5t-30.5 8.5l-138-26q-3 30-9 59t-16 57l108 35q12 4 19 15t7 23q0 17-12 27.5t-26 10.5q-8 0-12-1l-113-37q-67 139-220 238t-342 138.5-357 39.5q-71 0-145-8t-141-21l-55-10q-202-42-354-144t-212-237l-126 41q-4 0-11 1-17 0-29-10.5t-12-27.5q0-14 8-24t21-14l120-39q-8-29-14-56.5t-10-56.5l-151 27q-19 0-32.5-9.5T143 1792q0-14 9-24.5t23-13.5l159-29q0-11-1-21v-20q0-27 3-59l-163-23q-16-2-24.5-14t-8.5-26q0-17 11.5-27.5T178 1524h6l161 23q14-79 44-155t75-148q-6-55-12.5-145T445 913q0-227 42-347t120-120q82 0 219 113.5T1055 784l57 67q97-15 195-15 97 0 195 15 34-46 137-154.5T1842 517t165-71q78 0 119 121t41 344q0 99-6 189t-11 144q45 70 75 146t44 156l146-22h7q17 0 27 11t10 28q0 14-9 25.5t-24 13.5l-148 22q3 30 3 61l-1 43zm-760 249q0-4 1-7v-5q0-9-3.5-13.5t-8.5-4.5q-11 0-27 9l-30 17q-23 14-50.5 20t-55.5 6h-21q-10 0-20-1-29 0-69.5-25t-67.5-25q-12 0-23 4.5t-20 9.5l-27 16q-26 15-48.5 22t-50.5 7q-31 0-73.5-14t-63.5-34-40-20q-11 0-15 8t-4 21v6q15 112 112 183t224 71q176 0 270.5-65t110.5-186zm188-541.5q-40-44.5-95-44.5-56 0-95 45t-39 107q0 64 39.5 108.5t94.5 44.5 95-44 40-109q0-63-40-107.5zM950.5 1678q40.5-44 40.5-109 0-64-40.5-108t-95.5-44q-56 0-95 45t-39 107q0 64 39.5 108.5T855 1722t95.5-44z" + }, + "children": [] + }] +}; +exports.u1F63A = u1F63A; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F63B.js b/dist/noto_emoji_regular/u1F63B.js new file mode 100644 index 000000000..9b1eb60f0 --- /dev/null +++ b/dist/noto_emoji_regular/u1F63B.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F63B = void 0; +var u1F63B = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2425 1903q14 3 22.5 15t8.5 26q0 20-14.5 28.5t-30.5 8.5l-194-34q-11 26-24 50.5t-28 47.5l191 61q12 4 19 15t7 23q0 17-12 27.5t-26 10.5q-8 0-12-1l-219-70q-124 136-353 209t-476 73q-233 0-459.5-71T473 2115l-206 66q-4 0-11 1-17 0-29-10.5t-12-27.5q0-14 8-24t21-14l177-57q-18-23-31-48.5t-24-51.5l-177 32q-20 0-33-10t-13-30q0-14 9-24.5t23-13.5l166-29q-7-25-11.5-50t-7.5-51l-149-22q-16-2-24.5-13t-8.5-27q0-15 11.5-26.5T178 1673h6l133 20q0-83 10.5-156.5T367 1385q-70-157-122.5-329T192 773q0-90 31.5-129t93.5-39q76 0 195.5 47T740 761l59 34 70 42q31 19 57 34 87-26 179-39.5t186-13.5q92 0 182.5 13t176.5 39l105-78q126-93 262.5-161.5T2236 562q59 0 91 48.5t32 155.5q0 116-38.5 284T2218 1396q27 75 37 148.5t10 151.5l150-23h6q17 0 27.5 11.5t10.5 27.5-9 26.5-24 12.5l-168 24q-2 25-6 48.5t-11 46.5zm-468-365q0-7 1-13 0-52-38.5-90t-91.5-38q-45 0-79.5 27.5T1703 1495q0-5 1-15 0-56-36.5-94.5T1577 1347t-92 39.5-38 98.5q0 69 45.5 145.5T1594 1763l47 47 35-14q111-43 187.5-107.5T1955 1551zm-1331 13q18 86 115 155.5T939 1810q69-59 131.5-151.5T1133 1485q0-58-37-98t-92-40q-54 0-91.5 39t-37.5 96q0 3 2 15-11-43-45-71.5t-78-28.5q-55 0-93 39t-38 90q0 6 1 12zm1084 434l1-10q0-20-14.5-34.5T1660 1926q-16 0-29 10t-17 27l-9 21q-13 31-50 57t-95 26q-44 0-76.5-13.5T1332 2018t-41-22-35.5 17-48.5 35.5-86 18.5q-62 0-101-29t-51.5-71-50.5-42q-22 0-35 16t-13 33q0 62 72 127t180 65q59 0 101.5-17.5t67.5-36.5q24 19 66 36.5t103 17.5q96 0 163.5-52t86.5-129z" + }, + "children": [] + }] +}; +exports.u1F63B = u1F63B; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F63C.js b/dist/noto_emoji_regular/u1F63C.js new file mode 100644 index 000000000..b22897dd1 --- /dev/null +++ b/dist/noto_emoji_regular/u1F63C.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F63C = void 0; +var u1F63C = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2425 1880q14 3 22.5 14.5t8.5 25.5q0 20-14.5 28.5t-30.5 8.5l-196-36q-8 27-19 52.5t-24 49.5l184 59q12 4 19 15t7 23q0 19-12 28.5t-26 9.5q-8 0-12-1l-206-64q-119 150-349.5 233t-507.5 83q-257 0-483-78.5T433 2105l-166 52q-4 0-11 1-15 0-28-9.5t-13-28.5q0-12 8-23t21-15l141-44q-14-26-26.5-52.5T337 1930l-148 27q-19 0-32.5-9t-13.5-29q0-14 9-25t23-14l142-26q-5-26-8.5-53t-5.5-55l-130-19q-16-2-24.5-13t-8.5-25q0-18 11.5-28.5T178 1650h6l117 17q0-123 43.5-245.5T467 1193q28-360 94.5-550T722 453q66 0 167 100t223 292q41-5 81.5-8t82.5-3 84.5 3 84.5 8q115-182 219.5-286.5T1837 454q94 0 157.5 185.5T2084 1115l7 89q78 108 117.5 227t39.5 242l167-23h6q17 0 27.5 11.5t10.5 28.5q0 14-9 24.5t-24 12.5l-179 27q-2 23-5 45.5t-7 45.5zm-606 170v-8q0-38-44.5-50.5T1696 1939t-34-61q-2-18-15.5-29.5T1614 1837q-22 0-35.5 14t-13.5 37q0 8 5 25t19 44q-77 47-151 64.5t-136 17.5q-74 0-141-19t-87.5-32-36.5-13q-17 0-33 13t-16 35q0 24 17.5 39.5t105 46T1304 2139q77 0 165.5-22.5T1652 2034q23 20 58.5 39.5t60.5 19.5q15 0 28-9.5t18-25.5zm105.5-558q-5.5-20-14.5-39l-329 152q22 45 66.5 73t100.5 28q75 0 128.5-50.5T1930 1534q0-22-5.5-42zM958 1624l-326-152q-14 30-14 62 0 72 54.5 122t129.5 50q49 0 90-22.5t66-59.5z" + }, + "children": [] + }] +}; +exports.u1F63C = u1F63C; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F63D.js b/dist/noto_emoji_regular/u1F63D.js new file mode 100644 index 000000000..5533cd27d --- /dev/null +++ b/dist/noto_emoji_regular/u1F63D.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F63D = void 0; +var u1F63D = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2425 1642q14 3 22.5 14.5t8.5 24.5q0 22-14.5 30.5t-30.5 8.5l-149-28q0 30-2.5 60.5t-5.5 59.5l102 32q12 5 19 15.5t7 23.5q0 17-12 27.5t-26 10.5q-8 0-12-1l-93-30q-52 199-216.5 316.5T1636 2372l-58 10q-60 11-143 19.5t-154 8.5-149-8.5-137-19.5l-56-10q-218-46-382.5-162.5T338 1897l-71 23q-4 0-11 1-17 0-29-10.5t-12-27.5q0-14 8-24t21-15l78-26q-4-29-6-59.5t-2-61.5l-125 23q-19 0-32.5-10t-13.5-30q0-14 9-24.5t23-13.5l142-26q2-26 5-51.5t10-51.5l-159-23q-16-2-24.5-14t-8.5-26q0-17 11.5-27.5T178 1412h6l168 24q35-101 93-193-6-55-12.5-144.5T426 913q0-227 42-347t120-120q65 0 166 72.5t194 170T1093 850q97-15 195-15t193 15l59-66q125-143 249-240.5t199-97.5q76 0 117.5 116.5T2147 912q0 96-6 186t-12 145q30 48 53.5 97t41.5 100l191-28h6q17 0 27.5 11t10.5 28q0 14-9 25.5t-24 13.5l-182 26q5 25 8.5 48.5t5.5 47.5zm-1233 168l2-7q0-3 1-8 0-27-40-41t-78-14q-51 0-86 32t-35 83q0 17 5.5 34.5T980 1924q-41 14-59 41.5t-18 65.5q0 54 45 92.5t130 58.5l8 1q17 0 28.5-11.5t11.5-26.5q0-35-37-42.5t-72.5-27T981 2031q0-24 21.5-33.5t68.5-9.5q16 0 28-10.5t12-27.5q0-27-37.5-46t-37.5-50q0-17 9.5-26.5t30.5-9.5q10 0 26 3t39 13l6 1q3 0 8 1 12 0 22-6.5t15-19.5zm-127.5-440.5q63.5-50.5 63.5-81.5 0-14-11-26.5t-28-12.5q-24 0-37.5 23.5t-51 46.5-86.5 23q-59 0-99.5-32.5T774 1268q-6-10-15.5-14.5T738 1249q-17 0-27.5 12t-10.5 26q0 30 62.5 81.5T914 1420q87 0 150.5-50.5zm832-108.5q-10.5-12-27.5-12-26 0-38.5 23t-50 46.5-87.5 23.5q-51 0-89.5-25t-50-46.5-35.5-21.5q-17 0-27.5 12t-10.5 27q0 31 63 81.5t150 50.5q88 0 151-51t63-81q0-15-10.5-27z" + }, + "children": [] + }] +}; +exports.u1F63D = u1F63D; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F63E.js b/dist/noto_emoji_regular/u1F63E.js new file mode 100644 index 000000000..e187f2010 --- /dev/null +++ b/dist/noto_emoji_regular/u1F63E.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F63E = void 0; +var u1F63E = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2425 1884q31 10 31 41 0 17-12 28t-26 11q-2 0-3.5-1t-3.5-1l-196-34q-8 26-19 51.5t-24 50.5l184 57q12 5 19 15.5t7 22.5q0 18-11 29t-27 11q-6 0-12-3l-206-64q-85 108-233.5 183t-318 104.5T1269 2415q-248 0-479-78t-357-227l-166 52q-6 3-11 3-17 0-29-11t-12-29q2-12 8.5-22.5T244 2087l141-44q-14-26-26.5-53t-21.5-54l-148 26q-2 0-3.5 1t-3.5 1q-17 0-28-11.5t-11-28.5q0-14 9-24.5t23-15.5l142-24q-5-27-8.5-54t-5.5-55l-130-19q-16-2-24.5-13t-8.5-25q0-17 10.5-27.5T177 1656h7l117 16q0-122 42.5-243T464 1202q15-311 85-547.5T722 418q77 0 187.5 122T1075 751l61 96 70-6q34-2 70-2 35 0 72 2.5t74 7.5q98-166 216.5-297.5T1837 420q96 0 167 215.5t89 576.5q77 109 116 227.5t39 239.5l167-23h7q17 0 27 11t10 28q0 14-9 24.5t-24 12.5l-179 28q-2 23-5 45.5t-7 45.5zm-763.5 125.5Q1634 1993 1553 1966t-180-27q-69 0-148 18.5t-147.5 56-79 51T988 2095q0 22 15 35t34 13q22 0 56.5-25.5T1208 2065t166-27q71 0 131.5 16.5t90 33 45.5 16.5q21 0 34.5-15t13.5-35q0-28-27.5-44.5zm263-512.5q-5.5-20-14.5-39l-329 152q22 46 66.5 74t100.5 28q75 0 128.5-51t53.5-122q0-22-5.5-42zM958 1630l-326-153q-14 31-14 62 0 71 54 122t130 51q49 0 90-22.5t66-59.5z" + }, + "children": [] + }] +}; +exports.u1F63E = u1F63E; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F63F.js b/dist/noto_emoji_regular/u1F63F.js new file mode 100644 index 000000000..5c55aed08 --- /dev/null +++ b/dist/noto_emoji_regular/u1F63F.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F63F = void 0; +var u1F63F = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2425 1866q14 4 23.5 14.5t9.5 24.5q0 17-13 28t-27 11q-4 0-7-2l-181-31q-16 53-45 103l173 54q11 4 18.5 14.5t7.5 22.5q0 18-12.5 29t-26.5 11l-12-1-193-63q-118 149-349.5 230.5T1285 2393q-258 0-489-79.5T446 2086l-178 58-12 1q-15 0-27.5-11t-12.5-29q0-12 8.5-22.5T244 2068l156-50q-14-25-26.5-51.5T352 1914l-163 28q0 2-7 2-14 0-26-11t-12-28q0-13 8.5-24.5T175 1866l158-29q-5-25-8.5-50.5T319 1734l-145-22q-14-2-24-12.5t-10-24.5q0-17 12-29t27-12h6l133 21q0-69 13-135.5t37-133.5q-70-157-122.5-329T193 774q0-90 31.5-128.5T318 607t135.5 25.5 143.5 57T735 761l134 77 58 34q87-26 179-39.5t186-13.5q91 0 181.5 13t175.5 39l107-78q115-85 257-157.5t224-72.5q60 0 91 49t31 155q0 118-39.5 288T2218 1397q23 64 34.5 129.5T2264 1657l153-23h4q15 0 27 11.5t12 28.5q0 14-8.5 25t-23.5 13l-165 25q-5 52-12 97zm-378 59q-4-56-19.5-93.5t-56-87.5-70.5-50q-11 0-16 14.5t-5 42.5l1 19q0 15-3 28.5t-7 25.5l-12 43q-6 23-10.5 46.5t-4.5 45.5q0 42 26 73t67 31q39 0 74.5-37.5T2047 1925zm-227.5-263q43.5-19 67.5-42l13-13q10-10 10-26 0-17-11-28.5t-28-11.5q-18 0-30 12 0 7-35 27.5t-80 20.5q-76 0-118-43.5t-42-58.5q-5-13-15.5-19.5t-21.5-6.5q-19 0-29.5 12t-10.5 26q0 6 3 12 0 13 32.5 59t87 72.5T1726 1681q50 0 93.5-19zm-751-166q-10.5-13-27.5-13-12 0-22.5 7t-15.5 20q-2 0-11 20t-47.5 51-99.5 31q-36 0-65-12.5t-44-27.5l-9-9q-14-14-30-14-15 0-27.5 12t-12.5 28q0 29 58.5 65t128.5 36q104 0 169.5-64.5T1079 1523q0-14-10.5-27z" + }, + "children": [] + }] +}; +exports.u1F63F = u1F63F; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F640.js b/dist/noto_emoji_regular/u1F640.js new file mode 100644 index 000000000..3ad0fac22 --- /dev/null +++ b/dist/noto_emoji_regular/u1F640.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F640 = void 0; +var u1F640 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2425 1858q15 3 24 15t9 26q0 20-15 28.5t-32 8.5l-181-33q-16 53-45 103l173 55q11 4 18.5 15t7.5 23q0 17-12.5 28t-26.5 11q-8 0-12-2l-193-61q-78 96-210 169t-290 105l-58 10q-60 11-143 19.5t-154 8.5-150.5-8.5T998 2359l-56-10q-153-32-283-101.5T446 2080l-178 56q-4 2-12 2-14 0-27-11t-13-28q0-12 8.5-23t19.5-15l156-49q-14-26-26.5-52t-21.5-53l-163 29q-16 0-30.5-8.5T144 1899q0-14 8.5-26t22.5-15l158-27q-5-26-8.5-51.5T319 1728l-145-22q-14-2-24-12.5t-10-25.5q0-17 11-28.5t28-11.5h6l133 21q0-61 10-123.5t32-124.5q-78-182-122.5-337.5T193 806q0-90 31.5-128.5T318 639q75 0 197 47.5T800 829l84 51q95-34 198.5-51.5T1292 811q102 0 202 16.5t194 48.5l68-49q133-99 268-165.5t213-66.5q61 0 91.5 49t30.5 154q0 119-40.5 291.5T2225 1412q20 59 29.5 119t9.5 120l153-23h4q17 0 28 11.5t11 26.5q0 16-8.5 27t-23.5 13l-165 25q-2 25-5 48.5t-7 47.5zm-698.5 106.5Q1684 1921 1621 1921q-67 0-135.5 48.5T1360 2018q-38 0-95.5-21t-100.5-21q-73 0-117 45t-44 103q0 61 45.5 98.5T1164 2260q83 0 138.5-36.5T1413 2187h14q34 0 74 12.5t73 12.5 84-13.5 81-50.5 30-87q0-53-42.5-96.5zM1897 1664q13-13 13-31 0-16-11.5-27t-27.5-11q-13 0-46 22t-80 22q-57 0-95-25.5t-55.5-56-17.5-40.5q-3-14-14-22t-25-8q-17 0-28 11.5t-11 26.5q0 6 1 8 0 14 31.5 66.5t86 85T1744 1717q43 0 83-14.5t58-29.5zm-848-168q-11-12-28-12-15 0-25.5 10t-13.5 24q0 10-16.5 44.5t-54.5 63-97 28.5q-40 0-66.5-13.5T723 1627q-6-5-12-6t-12-1q-16 0-28 10.5t-12 27.5q0 8 4 16.5t12 13.5l12 8q20 14 54.5 25t72.5 11q69 0 127.5-34.5t88.5-88.5 30-85q0-16-11-28z" + }, + "children": [] + }] +}; +exports.u1F640 = u1F640; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F645.js b/dist/noto_emoji_regular/u1F645.js new file mode 100644 index 000000000..8a45d746d --- /dev/null +++ b/dist/noto_emoji_regular/u1F645.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F645 = void 0; +var u1F645 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1609.5 533Q1750 591 1855 699.5T2033.5 950t166 275.5 164.5 243 113 262.5q22 83 22 164 0 204-159.5 328T1912 2347q-122 0-251.5-28t-251-85.5-261-172.5-166-143-118-134T657 1603t-116-139q0-32 23.5-47.5T626 1401q73 0 155 35t161.5 73 206.5 155l95 88q208 193 346.5 237.5T1927 2034q118 0 180-31.5t62-95.5q0-6-1-13l-2-13q-14 39-56 60t-99 21q-5 0-10.5-1t-10.5-1q-14 2-29 3t-34 1q-48 0-108-6t-130-17q64-68 115.5-130t188-158.5T2129 1464q0-56-39-94t-116-38q-97 0-259.5 72T1464 1558l-164 150q-151-142-222-197t-216-117-236-62q-76 0-115.5 39t-39.5 93q0 93 132.5 186T792 1810t118 131q-69 11-128.5 17t-107.5 6q-41 0-64-4-5 0-10.5 1t-10.5 1q-57 0-99-21t-56-60l-2 13q0 7-1 13 0 64 62 95.5t181 31.5q50 0 128.5-5t165.5-30q58 57 124.5 109t138.5 103q-139 72-277.5 104T688 2347q-268 0-427.5-124T101 1895q0-109 38.5-224.5t108-220 161-238 153-253.5 141-213 172-152.5T1085 501q96-26 215-26 169 0 309.5 58zM1400 1058q6 41 58 78.5t113 37.5q88 0 136-58t48-132q0-10-1-18l-2-15zm-234 355.5q14 8.5 34 8.5 21 0 44-24.5t49-24.5q25 0 52.5 23t50.5 23q16 0 31-8.5t15-32.5q0-32-48-67.5t-91-35.5q-49 0-100 36.5t-51 67.5q0 26 14 34.5zM816 951q0 7-1 15t-1 18q0 73 46.5 131.5T997 1174q61 0 113-38t58-78zm796 970q-82-30-147-76.5t-113-89.5q156-146 218.5-192t176-95.5 152-58 75.5-8.5q38 0 61.5 15.5t23.5 47.5q0 66-115.5 139T1739 1781t-127 140z" + }, + "children": [] + }] +}; +exports.u1F645 = u1F645; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F646.js b/dist/noto_emoji_regular/u1F646.js new file mode 100644 index 000000000..cee52794c --- /dev/null +++ b/dist/noto_emoji_regular/u1F646.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F646 = void 0; +var u1F646 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2377 2020q-136 240-410.5 354.5T1307 2489q-367 0-657.5-112.5t-427-353T86 1495q0-85 11.5-168t43-162.5T214 1012t93-141 111-128 122.5-112.5T650 501l33-52q16-26 38-49l44-45q37-38 78-60t87-22q29 0 49.5 13t20.5 25q0 17-42.5 35T915 393q0 8 10 8 18 0 59.5-21t97.5-21q77 0 125.5 51t48.5 139q0 95-59 152.5T974 787 687.5 952.5t-186 271T438 1495q0 44 10.5 70t31.5 26q5 0 8-8l4-9q99-310 304.5-469.5T1307 945q298 0 502 149t306 464l7 14q3 8 7 15 15-5 22-22t8-38v-25q0-130-55-258.5t-183-279T1614.5 784t-226-93-47.5-142q0-85 48.5-137.5T1515 359q55 0 96 20t60 22q11 0 11-6 0-30-42.5-49.5T1597 311q0-12 20-25t49-13q46 0 88.5 22t79.5 60l43 45q21 24 38 50l34 52q16 26 33 50t40 44l81 71q181 161 295.5 368t114.5 462q0 283-136 523zm-789-249.5q-12-14.5-32-14.5-11 0-20 6t-17 15l-21 23q-22 26-63 43.5t-96 17.5q-71 0-125.5-22t-77.5-46l-13-13q-12-20-34-20-18 0-31.5 13t-13.5 31q0 12 8 25 2 0 21 23.5t91 59.5 173 36q109 0 186-56.5t77-89.5q0-17-12-31.5zm-557.5-304Q1003 1434 967 1434q-37 0-63.5 33t-26.5 77q0 45 26.5 76.5T967 1652t64-31 27-77q0-45-27.5-77.5zm680 0Q1684 1434 1648 1434q-37 0-63.5 33t-26.5 77q0 45 26.5 76.5t63.5 31.5q36 0 62.5-31t26.5-77q0-45-26.5-77.5z" + }, + "children": [] + }] +}; +exports.u1F646 = u1F646; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F647.js b/dist/noto_emoji_regular/u1F647.js new file mode 100644 index 000000000..b09e64ddb --- /dev/null +++ b/dist/noto_emoji_regular/u1F647.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F647 = void 0; +var u1F647 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1407 2077q-25 0-52.5 1.5t-54.5 1.5q-28 0-54.5-1.5t-53.5-1.5q-20-86-171-142.5t-308-66-225-40.5l-13-24q-11-18-11-73t-1-75q0-20-8-28.5t-22-8.5q-35 0-62 43.5t-27 89.5q0 77 87.5 124.5t224 55.5 242.5 37 161 60l21 13q18 12 32 29.5t14 37.5q0 30-28 45.5t-91 15.5q-75 0-153.5-11t-208-13.5-250.5-27-201-90T89 1843q-9-40-9-81 0-122 71-249t213-254l67-58q159-140 209.5-230T789 799.5 1014 677t286-41q196 0 341 63t228.5 154 108 144.5 199.5 206 258.5 282.5 83.5 276q0 91-36 169.5T2366 2059t-194.5 67.5-227 20.5-135 5.5T1680 2166q-44 4-87 4l-25-1q-34-2-64-16t-30-44q0-56 117.5-104.5t320-67T2185 1872t71-120q0-46-27-89.5t-60-43.5q-14 0-23 8t-9 28v37q0 54-3 76.5t-21 59.5q-91 35-240 43.5t-294 63-172 142.5zm217.5-876q21.5 46 63.5 46 35 0 56-25t21-61q0-42-23.5-85t-65-84.5T1624 950q-7 0-14 35t-7 84q0 86 21.5 132zM1480 1665q9 8 23 8 12 0 41-5.5t78-5.5q46 0 76.5 6t31.5 6q11 0 21-8.5t10-20.5q0-21-33.5-31t-98.5-10h-19q81-44 113.5-51t32.5-34q0-13-9-20.5t-19-7.5q-7 0-10 1l-26 10q-66 24-143.5 70.5T1471 1644q0 13 9 21zm-361.5.5q10.5-7.5 10.5-21.5 0-25-76-71t-143-71l-28-10q-2 0-4-1h-5q-11 0-20 7.5t-9 20.5q0 10 5.5 18t15.5 11l43 16q34 14 83 40h-57q-40 0-66.5 11t-26.5 32q0 11 9 19t20 8q4 0 33-6t75-6q52 0 85 5.5t34 5.5q11 0 21.5-7.5z" + }, + "children": [] + }] +}; +exports.u1F647 = u1F647; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F648.js b/dist/noto_emoji_regular/u1F648.js new file mode 100644 index 000000000..7b44b936e --- /dev/null +++ b/dist/noto_emoji_regular/u1F648.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F648 = void 0; +var u1F648 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2267.5 2142q-81.5 83-212.5 83-102 0-195.5-72.5T1688 1940q-86 42-197.5 63t-197.5 21q-84 0-190.5-21.5T911 1940q-85 137-173 199.5T556 2202q-115 0-210-56t-95-180q0-79 43-175.5T432 1567t175.5-186 110-118T821 1127.5t152-76.5q26 0 43.5 10t17.5 23q0 15-37.5 31t-37.5 44q0 7 8 7 16 0 51.5-19t88.5-19q73 0 114 45t41 123q0 82-50 131.5t-171.5 72T856 1565t-139 135-76 143q0 19 7 19 15 0 71.5-80T829 1654q34 113 162 175.5t307 62.5q187 0 314-65t158-179q62 56 114.5 135t71.5 79q5 0 6-4.5t1-10.5q0-59-71-142t-129-131.5-194-73-180.5-77T1344 1296q0-81 43.5-124.5T1500 1128q51 0 85 19t52 19q8 0 8-8 0-18-11.5-28t-25.5-17l-26-13q-12-6-12-16 0-13 18-23t45-10q56 0 120.5 49.5T1866 1227l35 58q17 28 44 52l65 57q50 44 95.5 92t82.5 99l38 53q45 63 84 147t39 151q0 123-81.5 206zM429 1489q-15-46-15-98 0-96 51.5-156.5T603 1174h12q64-249 245.5-395T1299 633q159 0 302 62t241 190.5 140 288.5h13q85 0 137 60t52 154q0 23-3 50.5t-11 43.5l-33-37q-17-18-37-38v-16q0-51-26-80t-74-35q2 11 3 22t3 21q-60-49-81-94.5t-69-95.5l-32-35q-51-52-77.5-67t-44-17.5T1652 988t-94-19q-50 0-127 45t-127 45q-64 0-139.5-45T1040 969t-78 11.5-41.5 21.5-45 22.5-84 60T711 1178l-29 45q-14 22-27 40.5t-29 33.5l-17 15q-9 8-17 16 0-14 2-26.5t3-25.5q-49 7-75 35.5t-26 79.5l1 23-34 38q-17 19-34 37zm935 264.5q-21 23.5-60 23.5-44 0-68-26t-24-71q0-51 26-97t61-46q34 0 60 42.5t26 105.5q0 45-21 68.5zm-52-357.5q14 36 44 67-8 9-21 16.5t-38 7.5q-17 0-29-6.5t-21-14.5q14-16 26-33t20-37h19z" + }, + "children": [] + }] +}; +exports.u1F648 = u1F648; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F649.js b/dist/noto_emoji_regular/u1F649.js new file mode 100644 index 000000000..f4e646512 --- /dev/null +++ b/dist/noto_emoji_regular/u1F649.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F649 = void 0; +var u1F649 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2312 2142.5q-74 76.5-178 76.5-83 0-194.5-80.5T1718 1923q-105 56-221 79t-205 23q-91 0-203-23.5T884 1929q-118 136-227 213t-191 77q-105 0-178.5-76.5T214 1951q0-97 48-210.5t90-169.5 49-123q-15-38-24.5-77.5T367 1293q0-83 58.5-155t111.5-72q23 0 45.5 15.5T605 1120q0 11-4 24l-9 30q-11 31-23.5 62.5T556 1304q0 47 21.5 115t21.5 112q0 43-20.5 72T512 1719.5 466 1859q0 22 9.5 36t29.5 14q55 0 124-73.5t63-68.5q-42-57-65-125 14-23 24.5-50t10.5-59q0-43-22-117t-22-112q0-8 1-14l1-12q3-13 11-31l16-39q8-21 14.5-43.5t6.5-45.5q0-30-16-56 85-203 253-316t385-113q225 0 395 111t260 326q-6 12-8.5 24.5t-2.5 24.5q0 29 9 57t19 52l2 4q10 23 14 39t4 35q0 37-21 106.5t-21 115.5q0 28 6.5 55t22.5 51q-24 70-65 128l19 16q9 9 18 19l30 34q32 35 63 56t61 21q21 0 31-14t10-36q0-35-27-92t-43-87l-36-66q-14-25-20.5-42.5t-6.5-40.5q0-38 20.5-111t20.5-117q0-25-7-49t-18-49l-17-49q-7-20-7-36 0-25 26-42t50-17q54 0 106.5 83t52.5 174q0 34-8 67.5t-22 67.5l5 22q2 12 7 26l12 24q13 27 7.5 18.5t34 57 61 114.5 36 95.5 19 78 4.5 63.5q0 114-74 190.5zM1644 1805q131-87 131-213 0-19-4-37t-9-36l-10-36q-4-15-6.5-33t-2.5-32v-28q0-45 13-104t13-94q0-75-54-148.5T1556 970q-49 0-127.5 45t-127.5 45q-57 0-135.5-45T1037 970q-69 0-107.5 24t-71.5 79-33 120q0 35 13 92.5t13 101.5q0 66-16.5 116.5T818 1592q0 125 130 212.5t349 87.5q216 0 347-87zm-336-267q36 9 56 53.5t20 94.5q0 42-21.5 67t-59.5 25q-43 0-67.5-26.5T1211 1679q0-54 26-98t60-44zm267.5-177.5Q1550 1390 1515 1390t-60.5-29.5-25.5-74.5q0-43 25-73.5t61-30.5 61 30.5 25 73.5q0 45-25.5 74.5zm-437.5-.5q-25 30-60 30t-60.5-29.5T992 1286q0-43 25-73.5t61-30.5 60.5 31 24.5 73q0 44-25 74zm103.5 47q16.5-11 58.5-11 30 0 49 8.5t19 26.5q0 20-18.5 37.5T1297 1486q-28 0-50-16t-22-37q0-15 16.5-26z" + }, + "children": [] + }] +}; +exports.u1F649 = u1F649; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F64A.js b/dist/noto_emoji_regular/u1F64A.js new file mode 100644 index 000000000..b08171a4f --- /dev/null +++ b/dist/noto_emoji_regular/u1F64A.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F64A = void 0; +var u1F64A = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2154 1521q-31 54-80 76.5t-81 22.5q-5 0-8.5-1t-7.5-1q-16 48-39 91.5t-56 82.5l-36-26q-25-18-47-37.5t-43-43.5q23-46 23-101 0-18-4-35.5t-9-35.5l-10-35q-5-18-8-43.5t-3-53.5q0-42 13-99t13-91q0-68-35.5-125.5T1664 987t-105-21q-50 0-128 45t-127 45q-50 0-130.5-45T1042 966q-68 0-103.5 20t-72.5 76.5-37 126.5q0 36 13 93.5t13 99.5q0 30-5 55t-11 47l-11 44q-6 22-8 46 0 35 7 63.5t21 54.5q-27 31-56.5 54.5T722 1796q-35-40-59-84.5t-38-93.5q-5 0-8.5 1t-8.5 1q-8 0-15-2l-18-3q-78-19-119-77.5T415 1387q0-94 51-155.5t135-61.5q5 0 8 1t7 1q67-252 247.5-397T1293 630q267 0 447.5 147.5T1984 1172q4 0 7-1t8-1q74 0 130 54.5t56 160.5q0 82-31 136zM523 2192.5q-52-42.5-52-112.5 0-85 102-139.5t189-109T922 1684l39-51q40-52 99.5-104.5T1188 1476q23 0 43 10t20 21q0 18-39 35t-39 41q0 8 9 8t22-6l29-12q16-7 37.5-12.5t48.5-5.5q73 0 113.5 47.5T1473 1720q0 95-59.5 142.5T1290 1917l-18 2-16 3-46 9q-42 8-102 36t-125 82.5-136.5 104-116 65.5-89.5 16q-66 0-118-42.5zM2052 1950q39 23 62.5 56t23.5 74q0 70-51.5 112.5T1970 2235q-62 0-127-33t-136-91l-78-63q-54-43-107.5-71t-118.5-44q57-28 89.5-87t32.5-124q0-86-45-144t-120-71q3-11 20-21t43-10q72 0 138.5 61t131 153.5T1965 1900zm-594-741.5q25-30.5 61-30.5t60.5 31 24.5 73q0 43-24.5 73t-60.5 30q-35 0-60.5-29.5T1433 1282q0-43 25-73.5zm-437 0q25-30.5 61-30.5t60.5 31 24.5 73q0 43-24.5 73t-60.5 30q-35 0-60.5-29.5T996 1282q0-43 25-73.5zM2101 1406q0-5 1-10t1-9q0-50-26-79.5t-74-35.5q2 29 3.5 59t1.5 60q0 34-2 67.5t-7 67.5q4 2 12 2 39 0 62-34t28-88zM603 1526q-7-34-10-68t-3-69q0-29 3.5-59t5.5-58q-50 6-76 35.5t-26 84.5q0 10 7.5 47.5t29 63T593 1528q7 0 10-2zm642.5-122.5q16.5-11.5 58.5-11.5 30 0 49.5 8t19.5 25q0 21-21 39.5t-48 18.5q-29 0-52-14.5t-23-39.5q0-14 16.5-25.5zM1305 1967q44 11 82 18t73 21q-37 5-79.5 9.5t-84.5 4.5q-41 0-79-4t-70-9q36-15 74.5-22t83.5-18z" + }, + "children": [] + }] +}; +exports.u1F64A = u1F64A; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F64B.js b/dist/noto_emoji_regular/u1F64B.js new file mode 100644 index 000000000..c4f5fcffb --- /dev/null +++ b/dist/noto_emoji_regular/u1F64B.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F64B = void 0; +var u1F64B = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2245 2107.5q46 61.5 46 101.5 0 35-33.5 95.5t-146 123-300 103.5-415.5 41q-159 0-301.5-20.5t-257-56.5-183.5-77-104.5-81.5-43-70-40-103-74-220.5-60.5-320-22-280q-2-49-2-98 0-206 25.5-356T359 695q0-41-11.5-108.5T336 477q0-138 82.5-243.5T626 128q93 0 155.5 56.5T844 291q0 42-33.5 96T777 468q0 14 10.5 29t35.5 15q15 0 28-8t30-8q28 0 48 22.5t20 49.5q0 26-23 50.5T862 667l-145 91q-35 22-51.5 52T644 912l-10 143q-5 72-5 144v37q0 31 2 80t6 49q12 0 33.5-47t113-169T1010 934q107-73 229-113t252-40q194 0 391 91t293.5 260.5T2272 1528q0 107-20 210t-36.5 151.5-16.5 90.5q0 66 46 127.5zM1541.5 1520q-39.5-36-93.5-36-25 0-49.5 3.5t-48.5 3.5q-27 0-45-5t-30-16l-27-23q-14-11-29.5-19.5t-37.5-8.5q-63 0-95 36t-32 99q0 106 85 166t202 60q102 0 171-51.5t69-120.5q0-52-39.5-88zm-449-246q23.5 25 56.5 25 42 0 76.5-37t34.5-85q0-35-21-60.5t-58-25.5q-43 0-77.5 36t-34.5 83q0 39 23.5 64zm654.5-27.5q-22-26.5-58-26.5-43 0-77 37.5t-34 84.5q0 35 21.5 61t59.5 26q43 0 76.5-37.5t33.5-83.5q0-35-22-61.5z" + }, + "children": [] + }] +}; +exports.u1F64B = u1F64B; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F64C.js b/dist/noto_emoji_regular/u1F64C.js new file mode 100644 index 000000000..00b4e8014 --- /dev/null +++ b/dist/noto_emoji_regular/u1F64C.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F64C = void 0; +var u1F64C = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2432 867q14 97 20 193.5t6 194.5q0 173-28 388t-92.5 402-114.5 242-164.5 112.5T1742 2499t-442 42q-244 0-447-43t-317.5-102-163-115-114-249.5T167 1621t-26-380q0-202 25.5-354T192 688q0-54-11-108t-11-109q0-138 83.5-242T460 125q70 0 144 51t74 112q0 46-33.5 98.5T611 467q0 14 10.5 28.5T655 510q15 0 28.5-7.5T711 495q30 0 51.5 20.5T784 564q0 49-79.5 96T558 748.5 484 851t-14 163.5-7 182.5v39q0 40 3.5 72t10.5 32q11 0 22-24.5t61-99.5 115-138 148.5-112 190.5-81q126-37 286-37 98 0 187 15t172.5 47 155.5 80 131.5 109 112.5 148 55.5 90 9.5 3 10-35.5 3-68.5v-39q0-63-6-168.5t-12-171-68-102.5l-55-34q-28-17-55-35l-38-22q-40-22-63-46.5t-23-53.5q0-28 21-48.5t50-20.5q15 0 28.5 7.5t27.5 7.5q24 0 34-15t10-29q0-28-33-82t-33-96q0-55 71.5-109t146.5-54q127 0 208.5 105t81.5 241q0 56-10.5 112T2409 693q0 45 8 86zM895 1444.5q9-15.5 31.5-32.5t54.5-17q25 0 45.5 11.5t35.5 27.5l7 9q5 8 13.5 12t16.5 4q15 0 24.5-11.5t9.5-24.5q0-11-5-19l-11-14q-21-25-56.5-46t-79.5-21q-40 0-72.5 15t-60 50.5T821 1436q-3 6-3 12 0 14 10 25t26 11q10 0 19-6.5t11-12 11-21zm738.5 166.5q-29.5-27-77.5-27-20 0-41.5 5t-42.5 11l-43 12q-30 9-66 12.5t-63 3.5q-28 0-64-4t-64-12l-42-12q-22-6-43.5-11t-42.5-5q-48 0-77.5 27t-29.5 67q0 93 115.5 170t231.5 77q152 0 265.5-77.5T1663 1678q0-40-29.5-67zm132.5-130q22-9 22-33v-10l-16-31q-16-30-53.5-57t-92.5-27q-44 0-80.5 21.5T1491 1390l-11 14q-6 9-6 19 0 14 9.5 25t24.5 11q10 0 17-4.5t14-11.5l8-11q12-15 33-26t48-11q30 0 53 16.5t30 31.5l10 17q4 11 13 17.5t20 6.5q3 0 6-1z" + }, + "children": [] + }] +}; +exports.u1F64C = u1F64C; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F64D.js b/dist/noto_emoji_regular/u1F64D.js new file mode 100644 index 000000000..f616db819 --- /dev/null +++ b/dist/noto_emoji_regular/u1F64D.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F64D = void 0; +var u1F64D = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2150.5 2192.5Q1802 2309 1300 2309t-850.5-116.5T101 1918q0-100 44.5-228T340 1351t217-344.5T714 771t199-163q76-43 172-69.5t215-26.5q131 0 237.5 33t191.5 88 165.5 147.5 147 222.5 175.5 287 155.5 229.5 86.5 187 40 211.5q0 158-348.5 274.5zm-1058-921.5q45.5-24 45.5-48 0-14-10-24t-24-10q-12 0-22 7l-9 5q-14 9-36.5 16.5T989 1225q-49 0-79.5-23.5T866 1178q-14 0-24.5 10t-10.5 25q0 26 52.5 54t105.5 28q58 0 103.5-24zm369 162.5Q1387 1410 1301 1410q-92 0-154 18.5t-62 51.5q0 11 10.5 21t33.5 10q17 0 67.5-15t111.5-15q66 0 121.5 18.5t71.5 18.5q18 0 26.5-10t8.5-20q0-31-74.5-54.5zm297-244.5q-10.5-11-24.5-11-13 0-46 23.5t-78 23.5q-41 0-72-18t-42-18q-13 0-23.5 10t-10.5 24q0 25 45 48.5t104 23.5q53 0 105.5-28t52.5-53q0-14-10.5-25z" + }, + "children": [] + }] +}; +exports.u1F64D = u1F64D; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F64E.js b/dist/noto_emoji_regular/u1F64E.js new file mode 100644 index 000000000..407018cd3 --- /dev/null +++ b/dist/noto_emoji_regular/u1F64E.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F64E = void 0; +var u1F64E = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2151 2192q-348 117-851 117t-851-117-348-274q0-98 39.5-213.5t98-204.5T397 1266.5 560 999t143-216.5T875.5 630t209.5-92q96-26 215-26 169 0 309.5 58.5t246 167 179 252T2204 1270t161.5 236.5T2476 1761q23 79 23 157 0 157-348 274zM1069 1191.5q-4-16.5-11-32.5l-17 1q-31 0-68.5-10t-72.5-42q-26 18-41 49t-15 69q0 57 33 98t80 41q46 0 81-40t35-99q0-18-4-34.5zm250.5 442.5q-7.5-9-15.5-15l-8-5q-10-7-39.5-18.5T1227 1552q0-19 11-27.5t26-11.5l25-4q11-2 11-12t-12-13l-28-6q-17-3-29-13t-12-33q0-26 17-34t37-11l37-4q17-2 17-16 0-8-9.5-13.5t-17.5-5.5q-3 0-6 1l-8 2q-5 2-58.5 17.5T1174 1439q0 12 2.5 19.5t7.5 14.5l6 11q3 6 3 13 0 5-9 18.5t-9 32.5q0 33 33 60t41 43 33 16q15 0 30-5.5t15-13.5q0-5-7.5-14zm421.5-477q-15-31-41-49-35 32-72.5 42t-68.5 10l-17-1q-6 16-10.5 32.5t-4.5 34.5q0 59 34.5 99t80.5 40q48 0 81-41t33-98q0-38-15-69z" + }, + "children": [] + }] +}; +exports.u1F64E = u1F64E; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F64F.js b/dist/noto_emoji_regular/u1F64F.js new file mode 100644 index 000000000..9315c128c --- /dev/null +++ b/dist/noto_emoji_regular/u1F64F.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F64F = void 0; +var u1F64F = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M492 1126l27-60q128-280 322-417t458-137q169 0 305 54.5t233.5 149T1999 918t99 190.5 186 224.5 198 254 47 216q0 187-82.5 288T2223 2243.5t-359 51.5q-210 0-314.5-31t-160-97-55.5-167q0-62 3-116.5t3-112.5q0-32-1-63.5t-3-63.5v-7q0-4-2-8 11-59 27.5-79t37.5-20q17 0 30 16.5t26 47.5l11 28q22 55 42.5 162.5t100.5 159 213 51.5q217 0 297-42t80-121q0-8-2.5-15t-11.5-7q-25 0-64 57.5t-299 57.5q-87 0-136.5-21t-72-47.5-37.5-98.5l-11-52q-6-26-13.5-53.5T1532 1596l-3-10-17-38q-17-38-46-63.5t-67-25.5q-29 0-56 16t-44 44q-17-25-44-42.5t-56-17.5q-38 0-70 27.5t-59 99.5l-4 10q-12 29-19.5 57t-13.5 54l-11 52q-16 70-39 97t-72.5 48-135.5 21l-16-2q-114 0-193.5-14.5t-105.5-54-44-39.5q-6 0-11.5 3t-5.5 12q0 8 2 18l6 36q9 45 96.5 78t259.5 33q148 0 227.5-53.5t97.5-158 42-161.5l12-28q13-32 26.5-48t30.5-16q22 0 38.5 24.5t25.5 74.5q0 4-1 8v7q-6 68-6 137 0 56 3.5 108t3.5 111q0 101-56 166.5t-162.5 97T733 2295q-312 0-487-115.5T71 1774q0-100 55.5-210t176-219.5T492 1126zm294 99q4 0 47 17.5t98 46.5h-17q-82 0-118.5 12.5T759 1338q0 15 10.5 25t24.5 10q2 0 4.5-1t4.5-1q29-7 59.5-9.5t59.5-2.5q53 0 94 5.5t42 5.5l5 1q14 0 25.5-10.5t11.5-24.5q0-31-93.5-85.5T841 1169l-31-11q-4-2-6-2h-5q-14 0-25 9.5t-11 24.5q0 11 6 20.5t17 14.5zm722 136q11 10 25 10l47-7q18-2 42.5-3.5t52.5-1.5q29 0 60 2.5t60 9.5q2 0 4 1t4 1q14 0 24.5-10t10.5-25q0-24-35.5-36.5T1682 1289h-18q57-31 96-46l50-18q11-5 17.5-14.5t6.5-20.5q0-15-11-24.5t-24-9.5q-7 0-11 2l-31 11h-1q-75 28-167 82.5t-92 85.5q0 14 11 24z" + }, + "children": [] + }] +}; +exports.u1F64F = u1F64F; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F680.js b/dist/noto_emoji_regular/u1F680.js new file mode 100644 index 000000000..ae2b4e21e --- /dev/null +++ b/dist/noto_emoji_regular/u1F680.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F680 = void 0; +var u1F680 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1608 1830l46 46q-30 17-61 27t-59 10q-18 0-29.5-3.5T1473 1898l-4-3q-35-20-60.5-30t-148-80-233.5-148.5T820 1473t-177.5-174.5-143-176.5-98-154.5T337 825q89-40 178-132t125-192q142 46 262 115t235.5 163 223 207.5 199.5 241 161 247 73.5 136.5 4.5 38q0 44-23 93-24-21-48.5-41t-47.5-43l-22-21q-25-22-43-30.5t-38-8.5q-34 0-54.5 20.5T1502 1668q0 49 50.5 102.5t55.5 59.5zm-159 141q24 11 39.5 26.5t15.5 34.5q0 16-9 33t-42 96l-51 119-25 54q-12 27-24 55.5t-25 62.5q17 12 29 24.5t12 28.5q0 14-11.5 30t-26.5 29l-17 14q-56-40-99.5-87T1095 2381t-92-112q8-15 13-23t17-8q25 0 56.5 26t36.5 29l3-10q4-19 23-135.5t20-145.5l3-85h-1q2-41 6-69t16-28q3 0 10 4l34 22q8 6 23.5 14t36.5 22l40 28q20 14 40.5 26.5t41.5 21.5l28 13h-1zm992-596l-13 18q-12 17-27.5 29.5T2372 1435q-16 0-29.5-11.5T2317 1398q-25 16-52 27l-41 18q-35 14-66.5 33t-64.5 36l-81 40q-52 26-71.5 37.5T1906 1601q-19 0-35-15t-27-36l-14-26q-21-42-53.5-79t-58.5-77l-36-53q-5-6-5-7 0-8 14-14.5t41-10.5l20-3q104-7 156-18t147.5-32.5 88.5-21.5q-5-6-32.5-37t-27.5-54q0-12 7-17t23-14q49 14 107.5 76.5t98 95 79.5 71.5zM584 483q-19 76-89 151.5T317 768q-18-54-28.5-104.5T278 566q0-31 11-59l-44-41q-24-24-37-35.5T188 411l-14-15q-7-8-11.5-16t-4.5-16q0-11 7.5-15.5T184 344q22 0 46 25t56 48 48 44q15-6 31-8.5t34-2.5q40 0 87 9.5t98 23.5zm1326 1459q-8 15-31.5 37.5T1839 2002q-27 0-58-42.5t-49.5-58.5-79-84-80.5-92-20-43q0-11 8-16t22-15q51 15 107.5 76t118.5 114 102 101zM845 865q-28-26-63-26t-62 26-27 63q0 36 27 63t62 27q38 0 64.5-26.5T873 928t-28-63zm476 447q-27-28-63-28-35 0-62 27.5t-27 61.5q0 37 27.5 64t62.5 27q38 0 63.5-26.5t25.5-64.5q0-33-27-61zm-238-224.5q-27-26.5-62-26.5-34 0-61.5 27t-27.5 65q0 36 25.5 61.5t63.5 25.5q39 0 64-26.5t25-62.5q0-37-27-63.5z" + }, + "children": [] + }] +}; +exports.u1F680 = u1F680; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F681.js b/dist/noto_emoji_regular/u1F681.js new file mode 100644 index 000000000..8c94d78c2 --- /dev/null +++ b/dist/noto_emoji_regular/u1F681.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F681 = void 0; +var u1F681 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2412.5 1233q-66.5 66-158.5 66-45 0-84-16t-69-45l177-51q40-8 67-41l-709 205-19 52q-41 106-119.5 226T1306 1798l72 267h224q17 0 28 11.5t11 28.5q0 16-11 27.5t-28 11.5H570q-65 0-114.5-49T406 1959q0-17 11.5-28.5T446 1919q16 0 27.5 11.5T485 1959q0 53 28 79.5t59 26.5h128l33-233h-38q-129 0-254.5-15T271 1749t-44-124q0-94 67.5-183t87.5-147l14-41q51-153 191-279t400-126h35l34 2v-63h52v-69q-400-2-667.5-44T173 582q0-54 285-95.5t699-41.5q413 0 698 41.5t285 95.5q0 50-261 92t-673 45v69h52v97q89 23 177 63t155 84l737-46q-32-27-74-27h-10l-10 2-179 11q29-54 81.5-88t118.5-34q92 0 158.5 65.5T2479 1074t-66.5 159zM919 1464q63 0 97-23.5t34-73.5v-300q0-80-32-103t-95-23q-115 0-214.5 59T539 1171.5 469 1368q0 43 21.5 69.5T561 1464h358zm312 358q-17 5-36 7.5t-33 2.5H812l-32 233h516z" + }, + "children": [] + }] +}; +exports.u1F681 = u1F681; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F682.js b/dist/noto_emoji_regular/u1F682.js new file mode 100644 index 000000000..7491f2a39 --- /dev/null +++ b/dist/noto_emoji_regular/u1F682.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F682 = void 0; +var u1F682 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1550 690h830v1115h-146q-28-99-111-164t-189-65q-93 0-173 53t-117 146h20q32-77 105-128t165-51q107 0 189 70t98 175h159v173h-183q-37 76-108 121t-155 45q-86 0-156.5-45T1670 2014h-57q-37 76-108 121t-155 45q-85 0-155.5-45.5T1087 2014h-60q-14 71-71 118.5T825 2180t-131-47-71-119h-4v161H80v-112h75l174-258h54q48-35 80-130.5t32-223.5q0-121-31-218t-81-136h89L321 609h576l-150 488q56 52 87 140.5t31 211.5q0 107-24 190.5T776 1774l24-4q12-2 25-2h2q35-49 56-131.5t21-184.5q0-128-32-223.5T792 1098h103V978q0-40 34-67.5t79-27.5q46 0 80 27.5t34 67.5v120h58V908q0-38 34-65.5t79-27.5q50 0 81.5 28.5T1406 908v190h144V690zm386 561q0 23 15.5 38t37.5 15h237q23 0 38-15t15-38V842q0-22-15-37.5t-38-15.5h-237q-22 0-37.5 15.5T1936 842v409zm558-731v131H1437V520h1057zM242.5 1215.5Q282 1117 329 1117t86.5 98.5T455 1451q0 139-39.5 237t-86.5 98-86.5-98-39.5-237q0-137 39.5-235.5zM1530 1904h-115q-20 0-34.5-14.5T1366 1855t14.5-34 34.5-14h96q-23-45-65-72.5t-96-27.5q-75 0-128 53.5t-53 127.5q0 75 53 128t128 53q69 0 121.5-48t58.5-117zm244-97h124q20 0 34 14t14 34-14 34.5-34 14.5h-143q6 71 58.5 118t121.5 47q75 0 127.5-53.5T2115 1888t-52.5-127.5T1935 1707q-54 0-96 27.5t-65 72.5zM889 481H328l57-133h445zm-612 39h665v50H277v-50zm1363 1255q-36-91-116-145t-174-54q-108 0-191 66t-109 163H942q11 8 20.5 16.5T981 1841h81q18-106 99-175.5t189-69.5q89 0 161.5 49t107.5 130h21zm-971 66q16-20 38-36h-88v36h50z" + }, + "children": [] + }] +}; +exports.u1F682 = u1F682; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F683.js b/dist/noto_emoji_regular/u1F683.js new file mode 100644 index 000000000..396f4eede --- /dev/null +++ b/dist/noto_emoji_regular/u1F683.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F683 = void 0; +var u1F683 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2256 1874q0 21-14 35.5t-35 14.5h-167q0-4 1-14 0-92-66.5-159t-161.5-67q-99 0-163.5 70t-64.5 170H969q0-100-64.5-170T741 1684q-98 0-162.5 69T514 1924H392q-21 0-35-14.5t-14-35.5v-823q0-116 87.5-168.5T685 830h1232q167 0 253 53t86 168v823zM867 1111q0-20-14-33t-34-13H663q-20 0-34 13t-14 33v254q0 20 14 34t34 14h156q20 0 34-14t14-34v-254zm429 0q0-20-13.5-33t-34.5-13h-156q-20 0-33.5 13t-13.5 33v254q0 20 13.5 34t33.5 14h156q21 0 34.5-14t13.5-34v-254zm348 0q0-20-13.5-33t-34.5-13h-156q-20 0-33.5 13t-13.5 33v254q0 20 13.5 34t33.5 14h156q21 0 34.5-14t13.5-34v-254zm337 0q0-20-14-33t-34-13h-155q-20 0-34 13t-14 33v254q0 20 14 34t34 14h155q20 0 34-14t14-34v-254zM859.5 2029q-50.5 50-118.5 50t-118-49.5-50-119.5q0-68 49-117.5t119-49.5 119.5 50 49.5 117q0 69-50.5 119zm1071.5.5q-50 49.5-118 49.5-69 0-118.5-50.5T1645 1910q0-66 48.5-116.5T1813 1743q70 0 119 49.5t49 117.5q0 70-50 119.5z" + }, + "children": [] + }] +}; +exports.u1F683 = u1F683; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F684.js b/dist/noto_emoji_regular/u1F684.js new file mode 100644 index 000000000..95ee0c81e --- /dev/null +++ b/dist/noto_emoji_regular/u1F684.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F684 = void 0; +var u1F684 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2244 1078q2 0 28 19t26 63v62l-56 41-91 68-253 192q-72 55-148 114l-151 119q-177 141-350 209.5T893 2034q-133 0-273-34.5t-222-100-94-157.5l2-7q11-91 52-170t163.5-195T676 1160t78.5-189 117-177.5 178-125T1284 626q118 0 234.5 36.5T1739 759t204 122zm-755-26v-18q0-50-17.5-79t-45.5-29q-13 0-31 8.5t-49 30.5l-28 20q-25 17-55.5 25.5T1133 1019q-47 0-92-3-36 0-70.5-9T929 962l-3-18q-2-8-5-13t-10-5q-23 0-64 37t-83 126.5-42 160.5q0 94 96.5 126t259.5 32q104 0 166.5-22t115.5-71 91-134 38-129zm-243.5 976.5Q1415 1964 1554 1854t273-220l471-388v28l-590 579-41 44q-23 26-66.5 66.5t-93 75-87 54.5-70 32.5-71 24-95.5 21.5-117.5 14.5T934 2190q-282 0-449-86.5T301 1852q55 119 235 180t361 61q179 0 348.5-64.5zM1882 1093q0-31-13.5-58t-35.5-35l-34-13q-5-2-9.5-3t-9.5-1q-23 0-38.5 21.5T1726 1060v215q0 37 17 59.5t42 22.5l14-2 34-11q22-8 35.5-33t13.5-58v-160zm-719 568.5q-17-19.5-46-19.5-48 0-87 42.5t-39 86.5q0 32 17.5 48t43.5 16q47 0 87.5-41.5t40.5-82.5q0-30-17-49.5zm-595.5-101Q551 1540 528 1540q-33 0-60.5 39t-27.5 78q0 31 15 53.5t40 22.5q35 0 62-35.5t27-81.5q0-35-16.5-55.5zM2043 1122q0-22-9-41t-23-24l-20-5q-2 0-3.5-1t-3.5-1q-14 0-23 16t-9 39v141q0 25 9.5 41t23.5 16q2 0 3-1t3-1l20-4q14-3 23-22t9-40v-113zm94 11q0-17-5.5-29.5T2118 1089l-16-4q-8 0-15 11.5t-7 30.5v104q0 18 6 29t14 11q3 0 4-1l14-6q8-3 13.5-16.5t5.5-29.5v-85zm56 6q0-12-3-22t-8-12l-9-1q-5 0-8 9t-3 22v77q0 14 3 22t9 8l8-3q5-2 8-12.5t3-22.5v-65zm36 3q0-9-2-17.5t-5-8.5l-5-1q-3 0-6 6.5t-3 19.5v60q0 13 3 19t6 6l5-3q3 0 5-8.5t2-18.5v-54z" + }, + "children": [] + }] +}; +exports.u1F684 = u1F684; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F685.js b/dist/noto_emoji_regular/u1F685.js new file mode 100644 index 000000000..dd47f8d79 --- /dev/null +++ b/dist/noto_emoji_regular/u1F685.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F685 = void 0; +var u1F685 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2304 1553l-8 68q-463 160-789.5 230.5T918 1922q-175 0-293-31t-179-79.5-107.5-138T292 1474q0-112 51.5-215.5T478 1093t232-102q70-124 167-174.5t237-50.5h27q68-84 101-84 23 0 41 8t18 17q0 8-13.5 16t-13.5 25q0 14 3 29 180 24 333.5 90.5T1896 1032l160 118q126 96 189 151.5t63 183.5q0 34-4 68zm-260 177l248-89q-16 94-75 125t-163 70l-282 105q-263 98-466 148t-395 50q-181 0-287.5-18T438 2072l-31-13q-33-14-66.5-36.5T307 1980q0-13 22-63.5t44-90.5q58 68 194 109t334 41q227 0 522-65t621-181zm-1591.5-83q71.5 70 187.5 70 118 0 189.5-70t71.5-180q0-106-79-185t-195-79q-112 0-179 76.5T381 1473q0 104 71.5 174zM880 880.5Q811 910 781 974q72-12 144-12 151 0 277 24.5t205 67.5q3-13 4-24t1-22q0-82-97.5-119.5T1056 851q-107 0-176 29.5zm623.5 117q-8.5 21.5-8.5 68.5 0 82 18.5 124t59.5 42q38 0 38-89 0-99-24.5-133t-54.5-34q-20 0-28.5 21.5zM1205 1460q-24-24-58-24-35 0-59.5 23t-24.5 59 25 59 60 23q34 0 57.5-24.5t23.5-57.5q0-34-24-58zm548.5-222q6.5-18 6.5-58 0-130-61-130-15 0-21.5 16.5t-6.5 54.5q0 80 18 107.5t41 27.5q17 0 23.5-18zm130.5-17q0-57-10.5-86t-36.5-29q-22 0-22 61 0 65 13.5 87t33.5 22q22 0 22-55zm100 20q0-43-8.5-66t-28.5-23q-17 0-17 48 0 56 11 72.5t23 16.5q20 0 20-48zm68 73l6 1q13 0 13-35 0-32-7-51t-23-19q-12 0-12 35 0 34 4.5 50t18.5 19zm78 20q2 2 4 2 14 0 14-30 0-25-6-39.5t-20-14.5q-12 0-12 29 0 50 20 53z" + }, + "children": [] + }] +}; +exports.u1F685 = u1F685; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F686.js b/dist/noto_emoji_regular/u1F686.js new file mode 100644 index 000000000..ed57ade2f --- /dev/null +++ b/dist/noto_emoji_regular/u1F686.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F686 = void 0; +var u1F686 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1723 347q144 0 247 103t103 247v964q0 134-90.5 233.5T1761 2008v172q0 32-22.5 54.5T1685 2257q-32 0-54.5-22.5T1608 2180v-170H992v170q0 32-22.5 54.5T915 2257t-54-22.5-22-54.5v-172q-133-14-222.5-113.5T527 1661V697q0-144 103-247t247-103h846zM901 1570.5q-38-36.5-89-36.5-53 0-90 37t-37 90q0 52 37 89.5t90 37.5q51 0 89-37t38-90q0-54-38-90.5zm976.5.5q-37.5-37-88.5-37-53 0-90 37t-37 90q0 52 37 89.5t90 37.5q52 0 89-37.5t37-89.5q0-53-37.5-90zm40.5-919q0-76-56-132t-132-56H870q-77 0-133 55.5T681 652v239q0 77 56 133t133 56h860q77 0 132.5-56t55.5-133V652z" + }, + "children": [] + }] +}; +exports.u1F686 = u1F686; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F687.js b/dist/noto_emoji_regular/u1F687.js new file mode 100644 index 000000000..992348862 --- /dev/null +++ b/dist/noto_emoji_regular/u1F687.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F687 = void 0; +var u1F687 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2119.5 1907Q1991 2128 1771 2254t-472 126q-253 0-474-127t-347.5-348T351 1431q0-252 127-473t348-348 473-127q251 0 471.5 126t349 346.5T2248 1431t-128.5 476zM1824 1120q0-99-70-168t-167-69h-575q-99 0-168.5 70T774 1120v653q0 93 62.5 161t149.5 76v102q0 21 15.5 35.5t37.5 14.5q21 0 35.5-14.5t14.5-35.5v-100h419v100q0 21 15.5 35.5t36.5 14.5q22 0 36.5-14.5t14.5-35.5v-102q87-8 150-76t63-161v-653zm-232-159q52 0 89.5 37.5t37.5 91.5v161q0 54-37.5 91.5T1592 1380h-585q-54 0-90.5-38t-36.5-91v-161q0-53 36.5-91t90.5-38h585zm-563.5 873.5Q1003 1861 967 1861q-35 0-60.5-25.5T881 1775q0-36 26.5-61.5T967 1688q36 0 61.5 25.5t25.5 61.5q0 33-25.5 59.5zm663 0Q1666 1861 1630 1861q-34 0-60-25.5t-26-60.5q0-36 25-61.5t61-25.5 61.5 25.5 25.5 61.5q0 33-25.5 59.5z" + }, + "children": [] + }] +}; +exports.u1F687 = u1F687; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F688.js b/dist/noto_emoji_regular/u1F688.js new file mode 100644 index 000000000..99d18eddd --- /dev/null +++ b/dist/noto_emoji_regular/u1F688.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F688 = void 0; +var u1F688 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2431 1477q2 8 3 17t1 19q0 19-3 38t-8 33l-58 167q17 6 31.5 20t14.5 32v106q0 23-11 39t-34 16h-213q-20 29-51 46.5t-69 17.5-69.5-17.5-50.5-46.5h-50q-20 29-51.5 46.5T1744 2028q-38 0-69.5-17.5T1623 1964H977q-20 29-51 46.5t-69 17.5-69-17.5-51-46.5h-50q-20 29-51.5 46.5T567 2028q-38 0-69.5-17.5T446 1964H227q-23 0-36.5-16t-13.5-39v-105q0-23 17-38.5t39-17.5l-58-164q-5-14-7.5-32t-2.5-36q0-11 1-21t3-18l97-447q21-94 96-163t169-69h907l131-130-167-168h-153v-88q0-23 16.5-39.5T1305 356h350q23 0 39.5 16.5T1711 412v88h-143l126 126q17 19 17 42 0 24-17 41l-89 89h464q94 0 169 69t96 163zm-707-457q0-23-17-39t-41-16h-245q-23 0-40.5 16t-17.5 39v384q0 23 17.5 39.5t40.5 16.5h245q24 0 41-16.5t17-39.5v-384zm-488 0q0-23-17-39t-41-16H933q-23 0-40.5 16t-17.5 39v384q0 23 17.5 39.5T933 1460h245q24 0 41-16.5t17-39.5v-384zm957 440q21 0 35-13t14-32q0-7-1-10l-69-345q-10-48-40.5-73.5T2063 961h-154q-23 0-40.5 16.5T1851 1017v387q0 23 17.5 39.5t40.5 16.5h284zM748 1017q0-23-17-39.5T690 961H537q-38 0-68 25.5t-40 73.5l-70 345q0 3-1 10 0 19 14 32t35 13h283q24 0 41-16.5t17-39.5v-387z" + }, + "children": [] + }] +}; +exports.u1F688 = u1F688; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F689.js b/dist/noto_emoji_regular/u1F689.js new file mode 100644 index 000000000..f8416247e --- /dev/null +++ b/dist/noto_emoji_regular/u1F689.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F689 = void 0; +var u1F689 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1364 932q109 0 187.5 78.5T1630 1198v733q0 100-68 176t-169 88v113q0 24-17 40.5t-40 16.5q-25 0-42-16.5t-17-40.5v-111H808v111q0 24-17 40.5t-40 16.5q-25 0-41.5-16.5T693 2308v-113q-102-12-170-88t-68-176v-733q0-109 78-187.5T720 932h644zm-767 430q0 55 40 95.5t96 40.5h618q57 0 97-40t40-96v-171q0-55-40-95.5t-97-40.5H733q-57 0-96.5 40.5T597 1191v171zm160 489.5q-27-27.5-65-27.5t-64.5 27-26.5 65q0 36 26.5 63t64.5 27 65-27.5 27-62.5q0-37-27-64.5zm701.5-1Q1432 1824 1393 1824q-38 0-64 27t-26 65q0 36 25.5 63t64.5 27 65.5-26.5 26.5-63.5q0-39-26.5-65.5zM2145 2365h-445v-415q0-34 24-58t58-24h196V939l-689-444q-19-11-28.5-30t-9.5-40q0-35 25-58.5t58-23.5q25 0 45 12l727 469q18 11 28 29.5t11 38.5v1473z" + }, + "children": [] + }] +}; +exports.u1F689 = u1F689; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F68A.js b/dist/noto_emoji_regular/u1F68A.js new file mode 100644 index 000000000..cb04dbbe6 --- /dev/null +++ b/dist/noto_emoji_regular/u1F68A.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F68A = void 0; +var u1F68A = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1713 607q140 0 241 101t101 241v941q0 130-87.5 228T1750 2230v169q0 31-21.5 52.5T1676 2473t-53-21.5-22-52.5v-167H998v167q0 31-21.5 52.5T924 2473t-52.5-21.5T850 2399v-169q-130-14-218-111.5T544 1890V949q0-140 101-241t241-101h130V348q-38 14-61 39.5T932 419q-8 16-22.5 24.5T878 452q-26 0-42.5-18T819 394q0-13 6-25l15-26q26-44 87.5-83.5T1075 220h450q84 0 146 39.5t89 83.5l15 26q5 13 5 24 0 23-16.5 41.5T1721 453q-17 0-31.5-9t-22.5-25q0-5-22.5-31t-61.5-40v259h130zm-580 0h333V338h-333v269zM909.5 1803q-36.5-36-86.5-36-52 0-88 36t-36 88q0 53 37.5 88.5T823 2015q48 0 85.5-35.5T946 1891q0-52-36.5-88zm955.5 0q-36-36-88-36-53 0-88.5 37.5T1653 1891q0 51 36.5 87.5t87.5 36.5q49 0 86.5-35.5t37.5-88.5q0-52-36-88zm40-898q0-75-54.5-129.5T1721 721H880q-76 0-130.5 54T695 905v437q0 76 54.5 130.5T880 1527h841q76 0 130-54.5t54-130.5V905z" + }, + "children": [] + }] +}; +exports.u1F68A = u1F68A; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F68B.js b/dist/noto_emoji_regular/u1F68B.js new file mode 100644 index 000000000..eeadde1ca --- /dev/null +++ b/dist/noto_emoji_regular/u1F68B.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F68B = void 0; +var u1F68B = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2358 1855q0 45-33 78t-78 33h-21q-4 61-46.5 100t-98.5 39q-57 0-99.5-40t-44.5-99h-1q-4 62-46.5 100.5T1791 2105q-57 0-99.5-40t-44.5-99H937q-2 59-44.5 99t-99.5 40q-58 0-100.5-41t-44.5-98h-1q-2 59-44.5 99t-99.5 40q-58 0-100.5-40t-44.5-99h-5q-45 0-79-32.5t-34-78.5v-723q0-91 66-157t157-66h675l131-130-168-168H949v-88q0-23 16-39.5t39-16.5h351q23 0 39.5 16.5T1411 523v88h-142l125 126q17 19 17 42 0 24-17 41l-88 89h831q90 0 156.5 65.5T2360 1130zM766 1183q0-20-14-34.5t-34-14.5H468q-20 0-34.5 14.5T419 1183v364q0 20 14.5 34t34.5 14h250q20 0 34-14t14-34v-364zm471 0q0-20-14.5-34.5T1188 1134H938q-20 0-34 14.5t-14 34.5v364q0 20 14 34t34 14h250q20 0 34.5-14t14.5-34v-364zm470 0q0-20-14.5-34.5T1658 1134h-249q-20 0-34.5 14.5T1360 1183v364q0 20 14.5 34t34.5 14h249q20 0 34.5-14t14.5-34v-364zm470 0q0-20-14-34.5t-34-14.5h-250q-20 0-34.5 14.5T1830 1183v364q0 20 14.5 34t34.5 14h250q20 0 34-14t14-34v-364z" + }, + "children": [] + }] +}; +exports.u1F68B = u1F68B; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F68C.js b/dist/noto_emoji_regular/u1F68C.js new file mode 100644 index 000000000..7a5b378f5 --- /dev/null +++ b/dist/noto_emoji_regular/u1F68C.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F68C = void 0; +var u1F68C = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2230 1581q0 32-21.5 67t-56.5 70q0 5 1 10.5t1 11.5q0 111-25.5 164.5T2056 1958q-28 0-51-22.5t-35-76.5q-75 51-134.5 89.5T1723 2007q-2 101-33 153t-90 52q-52 0-83.5-41.5T1478 2047H800q-7 83-38.5 124t-83.5 41q-54 0-85.5-44.5T556 2034q-81-24-133.5-94.5T370 1782V847q0-98 69.5-160T619 625h1408q110 0 156.5 55t46.5 165v736zM552 1281q0 35 26 62t63 27h743q37 0 63-27t26-62V881q0-38-26-63.5t-63-25.5H641q-37 0-63 25.5T552 881v400zm1332-421q0-28-14.5-48t-36.5-20h-108q-30 0-53 25.5t-23 63.5v400q0 26 12 40.5t32 14.5q16 0 32-10l108-60q22-13 36.5-41.5t14.5-56.5V860zm133 244q0 20 6 31.5t15 11.5q2 0 5-1l5-2 49-28q10-6 17-23.5t7-37.5V841q0-20-7-34.5t-17-14.5h-49q-12 0-21.5 17t-9.5 40v255zm-527 640q-29-29-71-29t-71 29-29 71q0 41 28.5 70.5t71.5 29.5 71.5-29.5 28.5-70.5q0-42-29-71zm-817.5 141.5Q701 1856 701 1815t-29.5-70.5T601 1715q-42 0-71 29t-29 71 29 71 71 29q43 0 71.5-29.5z" + }, + "children": [] + }] +}; +exports.u1F68C = u1F68C; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F68D.js b/dist/noto_emoji_regular/u1F68D.js new file mode 100644 index 000000000..f8b3fc6c1 --- /dev/null +++ b/dist/noto_emoji_regular/u1F68D.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F68D = void 0; +var u1F68D = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2054 1379l2 56v511q0 23-16 39.5t-39 16.5h-91v138q0 40-27 67.5t-67 27.5q-39 0-66.5-28t-27.5-67v-138H877v138q0 40-28 67.5t-66 27.5q-39 0-66.5-28t-27.5-67v-138h-91q-23 0-39-16.5t-16-39.5v-455l1-56q0-33 2-56l39-727q2-28 19-62t98.5-75 231-72 356.5-31q178 0 323.5 24.5T1865 506t126.5 80 23.5 66zM933 548q-26 0-44.5 18.5T870 611t18.5 44 44.5 18h715q26 0 44-18t18-44-18-44.5-44-18.5H933zm-249 899h1232l-19-689H702zm179.5 209.5Q832 1625 789 1625q-44 0-75 32t-31 74 31 74 75 32q43 0 74.5-31.5T895 1731t-31.5-74.5zm1028.5.5q-31-32-74-32-44 0-75 32t-31 74 31 74 75 32q43 0 74-32t31-74-31-74z" + }, + "children": [] + }] +}; +exports.u1F68D = u1F68D; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F68E.js b/dist/noto_emoji_regular/u1F68E.js new file mode 100644 index 000000000..a54b2bca2 --- /dev/null +++ b/dist/noto_emoji_regular/u1F68E.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F68E = void 0; +var u1F68E = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2257 1890q0 20-14.5 34.5T2208 1939h-92q-12-86-79.5-146.5T1879 1732q-91 0-158.5 60.5T1641 1939H948q-12-86-79.5-146.5T711 1732q-91 0-158.5 60.5T473 1939h-82q-21 0-34.5-14.5T343 1890v-779q0-114 85-168t255-54h451V775q0-13 8.5-21.5t20.5-8.5h157l489-302q7-5 20-5 16 0 28 11t12 28q0 10-5 19.5t-13 14.5l-382 235q11 0 19 8.5t8 20.5v114h420q170 0 255.5 53.5T2257 1111v779zM850 1171q0-21-15-35t-35-14H638q-20 0-34.5 14t-14.5 35v263q0 21 14.5 35.5T638 1484h162q20 0 35-14.5t15-35.5v-263zm446 0q0-21-15-35t-35-14h-162q-20 0-34.5 14t-14.5 35v263q0 21 14.5 35.5t34.5 14.5h162q20 0 35-14.5t15-35.5v-263zm361 0q0-21-14.5-35t-35.5-14h-161q-21 0-35.5 14t-14.5 35v263q0 21 14.5 35.5t35.5 14.5h161q21 0 35.5-14.5t14.5-35.5v-263zm350 0q0-21-14.5-35t-35.5-14h-161q-21 0-35.5 14t-14.5 35v263q0 21 14.5 35.5t35.5 14.5h161q21 0 35.5-14.5t14.5-35.5v-263zM582.5 2099.5Q530 2046 530 1972q0-73 52-127t129-54q76 0 128.5 54.5T892 1972q0 73-53 127t-128 54q-76 0-128.5-53.5zm1168 .5q-53.5-53-53.5-128 0-74 53-127.5t129-53.5 128.5 54.5T2060 1972q0 73-53 127t-128 54-128.5-53z" + }, + "children": [] + }] +}; +exports.u1F68E = u1F68E; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F68F.js b/dist/noto_emoji_regular/u1F68F.js new file mode 100644 index 000000000..7c7b07306 --- /dev/null +++ b/dist/noto_emoji_regular/u1F68F.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F68F = void 0; +var u1F68F = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1585 2313q33 0 55.5 22.5t22.5 54.5v188H927v-188q0-30 23-53.5t55-23.5h226v-204H992q-21 0-35.5-14.5T942 2060v-958q0-20 14.5-34t35.5-14h239v-51q-136-24-226-131.5T915 625q0-157 113.5-271T1300 240t271.5 113.5T1685 625q0 141-92 249.5T1360 1005v49h240q20 0 34 14t14 34v958q0 20-14 34.5t-34 14.5h-240v204h225zM1047 494h508q-39-74-108-114.5T1300 339q-84 0-151 43t-102 112zm528 207q11-38 11-76 0-13-1-26t-4-26h-562q-5 28-5 52 0 38 11 76h550zm-516 78q38 60 104 96.5t137 36.5q75 0 138.5-36.5T1541 779h-482zm-18 1231h510v-859h-510v859z" + }, + "children": [] + }] +}; +exports.u1F68F = u1F68F; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F690.js b/dist/noto_emoji_regular/u1F690.js new file mode 100644 index 000000000..4d64c8ff6 --- /dev/null +++ b/dist/noto_emoji_regular/u1F690.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F690 = void 0; +var u1F690 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M684.5 2098q-53.5-53-53.5-128 0-74 53-127.5t129-53.5 128.5 54.5T994 1970q0 73-53 127t-128 54-128.5-53zm1013.5 0q-53-53-53-128 0-74 53-127.5t128-53.5 128 53 53 128-53.5 128-127.5 53q-75 0-128-53zm659-532q0 74-27 176t-93.5 165-170.5 63q0-98-71-169t-169-71q-99 0-169.5 71t-70.5 169h-534q0-97-70-168.5T813 1730t-170 71-71 169h-27q-132 0-216.5-72.5T244 1694q0-70 25.5-148.5T366 1415l47-33q56-39 81.5-69t52.5-74l94-151q108-174 185-264.5t131-114 224-41.5 402-18q217 0 379 25.5t215 67.5 91 131 63.5 325.5T2357 1566zm-1287-348q0-21 1-45.5t1-48.5q0-79-7-106.5t-21-38-66-10.5q-126 0-157 37t-90.5 159-59.5 146q0 17 11 28t31 11h300q32 0 43.5-22.5t11.5-51.5zm419.5-239.5Q1447 963 1276 963q-98 0-103.5 99.5T1167 1225q0 90 14.5 106.5T1310 1348q32 0 60-1h43l29 1q73 0 81.5-49.5t8.5-143.5q0-161-42.5-176.5zM2199 1076q-19-94-96-102.5t-222-8.5q-40 0-108.5 1t-67.5 1q-67 0-75.5 31.5T1621 1155q0 176 31.5 189t125.5 13q39 0 84-1l154-4q30 0 42-1 100 0 130-18.5t30-59.5q0-103-19-197z" + }, + "children": [] + }] +}; +exports.u1F690 = u1F690; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F691.js b/dist/noto_emoji_regular/u1F691.js new file mode 100644 index 000000000..cbb41e9a2 --- /dev/null +++ b/dist/noto_emoji_regular/u1F691.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F691 = void 0; +var u1F691 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2281 1966q-75 123-212 123h-15q0-96-68.5-164t-161.5-68q-94 0-163 68t-69 164h-543q0-96-68.5-164T818 1857t-163 69-69 163h-43q-131 0-215.5-72T243 1813q0-73 24.5-149.5T365 1535l47-33q23-17 44.5-34.5T492 1433l32-42q12-17 22-33l47-77 58-92q63-99 132-156t176-65.5 315-8.5h192q60 0 118.5-1t118.5-1q251 0 396.5 77.5t201 220.5 55.5 364q0 224-75 347zm-166-496q69 0 84-18.5t15-62.5q0-68-58.5-156.5t-150-124.5-281.5-36q-79 0-99.5 10t-20.5 66q0 17 1 34t1 34v165q0 7-1 14t-1 13q0 29 14.5 46.5t59.5 17.5q14 0 27-1t25-1h385zM999 924q-13 0-21.5-8t-8.5-22v-70q0-12 9-21t24-9q0-106 37.5-157.5T1145 585t105.5 50.5T1291 794q15 0 23 9t8 21v70q0 14-8 22t-21 8H999zm-59 1287q-51 50-122 50t-122-50-51-122 50.5-122.5T818 1916t122.5 50.5T991 2089t-51 122zm1004 0q-51 50-120 50-71 0-122-50t-51-122 50.5-122.5T1824 1916q70 0 120.5 51t50.5 122q0 72-51 122zM984 1175l1-16v-20q0-17-4-31t-21-14q-7 0-15 2l-15 4q-61 14-116.5 69T711 1319l-13 27q-10 20-19.5 47t-9.5 40q0 17 11 27t30 10h218q23 0 39.5-16t16.5-39v-240zm471 127q0-9-6.5-16t-16.5-7h-62v-61q0-10-6.5-16t-15.5-6h-97q-23 0-23 22v61h-62q-9 0-15.5 7t-6.5 16v98q0 9 6.5 15.5t15.5 6.5h62v61q0 11 6 17.5t17 6.5h97q9 0 15.5-6.5t6.5-17.5v-61h62q10 0 16.5-6.5t6.5-15.5v-98zm-62-556q-8 0-15-7.5t-7-16.5q0-8 4-15t11-10l222-101q5-2 11-2 10 0 17 6.5t9 15.5l20 138v6q0 11-8.5 18t-17.5 7zm-741 39q-8 0-16-7t-8-18v-6l19-138q0-8 7.5-15t18.5-7h5q2 0 4 2l224 101q6 4 10.5 10.5T921 722q0 9-7 16t-15 8z" + }, + "children": [] + }] +}; +exports.u1F691 = u1F691; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F692.js b/dist/noto_emoji_regular/u1F692.js new file mode 100644 index 000000000..fbd0ba7e3 --- /dev/null +++ b/dist/noto_emoji_regular/u1F692.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F692 = void 0; +var u1F692 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2377 1005l-32 66v1130q0 23-16.5 39t-39.5 16h-108q0-93-68-161.5t-164-68.5q-95 0-163 67.5t-68 162.5H851q0-92-68-161t-164-69q-95 0-163 67.5T388 2256h-89q-23 0-49.5-27.5T223 2174v-530l60-347q10-62 53-99.5t93-37.5h98q-7-7-7-18v-71q0-12 9.5-20.5t23.5-8.5q0-104 36.5-157.5T697 831t108 53 37 158q15 0 23.5 8.5t8.5 20.5v71q0 10-6 18h269q23 0 39.5 16.5t16.5 39.5v99h323v-299L364 464l166-345zm-693 409.5q-85 84.5-85 203.5 0 54 19 102.5t53 87.5h-437v98h654q119 0 203-84.5t84-203.5q0-117-84.5-202.5T1888 1330q-119 0-204 84.5zm337.5 69Q2077 1540 2077 1618q0 77-55.5 133.5T1888 1808q-79 0-135-56.5t-56-133.5q0-79 56-135t135-56q78 0 133.5 56.5zM679 1318q0-24-16-40t-40-16H460q-23 0-41.5 15.5T397 1316l-40 266v7q0 21 14 34.5t34 13.5h218q24 0 40-16t16-39v-264zm1392.5 1060.5Q2021 2429 1949 2429t-122-51-50-122q0-69 50-120t122-51q71 0 122 50.5t51 120.5q0 72-50.5 122.5zm-1330 0Q691 2429 619 2429q-71 0-122-51.5T446 2256q0-68 51-119.5t122-51.5 122 50.5 51 120.5q0 72-50.5 122.5zM1040 1541q17 0 32.5-13.5t15.5-34.5v-185q0-20-15-34t-33-14H862q-21 0-35.5 14t-14.5 34v185q0 20 14.5 34t35.5 14h178zM904 978q-6 0-11-6t-5-13 9-18l129-85q4-4 12-4 7 0 12.5 6t5.5 12l18 112q0 23-23 23zm-563 27q-21 0-21-23l18-112q2-6 6-12t12-6q7 0 12 4l129 85q10 7 10 17 0 7-4.5 13t-12.5 7zm1581-131l-171-82-76 159zm-543-66l247-77-171-82zm329 214l170 82 77-159zM820 596l170 82 76-159zm-32-71l245-77-170-82zM566 225l-76 157 247-77zm-43 230l171 81 76-158zm1524 479l-76 158 247-77zm-963-268l246-77-171-81zm328 213l170 83 77-158zm762 366l77-157-247 76zM1116 738l170 81 77-157z" + }, + "children": [] + }] +}; +exports.u1F692 = u1F692; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F693.js b/dist/noto_emoji_regular/u1F693.js new file mode 100644 index 000000000..65858baed --- /dev/null +++ b/dist/noto_emoji_regular/u1F693.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F693 = void 0; +var u1F693 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2312.5 2030.5Q2241 2112 2132 2112h-14q0-94-68.5-162.5T1886 1881q-97 0-164 68.5t-67 162.5H945q0-96-67-163.5T715 1881q-95 0-163.5 67T483 2111q-60-7-135-56.5t-103.5-99T216 1805q0-196 88.5-267t212.5-89l40-5 24-40q136-231 218.5-304t188-111.5T1323 950q191 0 303 26t190 76.5 137.5 124.5 121.5 230l14 37 30 7q63 16 131 59.5t101 129 33 182.5q0 127-71.5 208.5zM2285 1693q-25-89-91-125t-114-46-63-50l-19-47q-61-145-112-205.5t-113.5-102-165-64.5-284.5-23q-89 0-161 5.5t-135 25-117 54.5-99 87.5T710 1345t-81 132.5-69 46-106 25-97.5 47T308 1693h1977zm-435.5-231.5Q1833 1479 1796 1479h-396q-42 0-72.5-14t-30.5-50v-202q0-52 23.5-68.5t91.5-16.5q127 0 221.5 24t163.5 111.5 69 151.5q0 29-16.5 46.5zM1174 1130q20 4 30.5 20.5t10.5 62.5v202q0 36-21 50t-49 14H871q-26 0-38.5-13.5T820 1428q0-57 62.5-145t139-120.5T1162 1130h12zm-30-211q-13 0-21.5-9t-8.5-21v-72q0-11 9-20.5t24-9.5q0-104 37-156.5t106-52.5q72 0 109 52t37 157q14 0 23.5 9.5t9.5 20.5v72q0 12-9 21t-22 9h-294zm863.5 1314.5Q1956 2283 1886 2283q-71 0-121.5-50t-50.5-121q0-73 51.5-123t120.5-50q71 0 122 52t51 121q0 72-51.5 121.5zM836 2233q-50 50-121 50-70 0-121.5-49.5T542 2112q0-70 51-121.5t122-51.5q70 0 120.5 51.5T886 2112q0 71-50 121zM797 779q-9 0-16.5-9t-7.5-21l19-140q0-7 7.5-14.5T818 587q2 0 5 1l228 103q6 5 10.5 11t4.5 14q0 9-7 16t-15 9zm741-38q-9-2-15.5-9.5T1516 715q0-14 17-24l226-103q2 0 5-1 8 0 16 7t10 15l20 140q0 15-8.5 22.5T1784 779z" + }, + "children": [] + }] +}; +exports.u1F693 = u1F693; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F694.js b/dist/noto_emoji_regular/u1F694.js new file mode 100644 index 000000000..5e670b421 --- /dev/null +++ b/dist/noto_emoji_regular/u1F694.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F694 = void 0; +var u1F694 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1441 681h-289q0-105 36.5-157.5T1296 471t108 52 37 158zm-639-39q-11 0-18-8t-7-18v-3l20-140q0-9 7-15.5t19-6.5q3 0 9 2l223 103q15 6 15 23 0 10-6 16.5t-15 8.5l-243 38h-4zm742-38q-10-2-16-9t-6-17q0-16 16-22l222-103q6-2 10-2 23 0 26 22l19 140v4q0 13-9 19t-20 6zm428 726q57 19 95.5 64t38.5 102v349q0 42-31 73.5t-75 31.5h-70v131q0 46-33 78.5t-77 32.5q-45 0-78-33t-33-78v-131H897v131q0 46-33 78.5t-77 32.5q-45 0-78-33t-33-78v-131h-78q-44 0-74-31t-30-74v-349q0-56 36.5-101t97.5-65l101-374q16-61 72-103.5T920 810h196v-34q0-20 14.5-35t35.5-15h261q20 0 35 15t15 35v34h203q61 0 116.5 42t73.5 104zM868 1724.5q31-31.5 31-73.5 0-44-31.5-75.5T792 1544t-75 32-31 75q0 42 30 73.5t76 31.5q45 0 76-31.5zm1029 0q30-31.5 30-73.5 0-43-31-75t-75-32q-43 0-74.5 32t-31.5 75q0 42 31 73.5t75 31.5q46 0 76-31.5zM593 1486h1413q-5-23-27-41.5t-54.5-25.5-40.5-36l-109-401q-8-31-36.5-52.5T1680 908H920q-31 0-59.5 21.5T824 982l-109 401q-8 29-39 35t-54.5 25-28.5 43zm289-125q-20 0-31.5-12t-11.5-30q0-7 1-11l59-269q5-22 24-37.5t42-15.5h670q21 0 40.5 15.5t24.5 37.5l59 269q0 4 1 12 0 17-12 29t-32 12H882z" + }, + "children": [] + }] +}; +exports.u1F694 = u1F694; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F695.js b/dist/noto_emoji_regular/u1F695.js new file mode 100644 index 000000000..982795241 --- /dev/null +++ b/dist/noto_emoji_regular/u1F695.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F695 = void 0; +var u1F695 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2309 1916q-71 81-180 81h-15q0-94-68-162.5t-164-68.5q-95 0-163 68t-68 163H943q0-94-68-162.5T711 1766q-95 0-163 68t-68 162q-58-7-128-51t-101.5-88.5T219 1723q0-82 32-176t120-144 184-74q141-241 215.5-317T944 891t247-52q0-8 5-13.5t12-5.5h14V686q0-11 7-18t18-7h76q11 0 18 7t7 18v134h14q7 0 12.5 4.5t5.5 12.5q188 6 295 40t167 81.5 109.5 106T2087 1329q164 40 228.5 137t64.5 242q0 127-71 208zm-1168-551q28 0 50-14t22-51v-202q0-50-15-66.5t-42-16.5q-72 0-149 37.5T874 1175t-56 140q0 23 12 36.5t39 13.5h272zm-78 236h69l4-4v-36l-4-4H943l-4 4v36l4 4h68v159l4 4h43l5-4v-159zm251 158l-74-198-4-2h-45l-5 2-75 198 1 4 3 1h50l4-3 11-34h67l9 34 4 3h50l4-1v-4zm225 4l-2-6-66-94 66-97v-5l-4-2h-55l-39 54-36-52-4-2h-55l-4 2v5l64 97-64 94v6l4 1h58l2-1 35-51 32 51 7 1h56zm82-200l-6-4h-48l-4 4v198l4 3h48l6-3v-198zm171-198q37 0 54-17.5t17-46.5q0-78-97.5-183T1444 1013q-67 0-90.5 16.5T1330 1098v202q0 37 30 51t72 14h360zm-579 264l19 57h-39zm-379.5 490.5Q783 2170 711 2170t-122.5-50.5T538 1997t50.5-122.5T711 1824t122.5 50.5T884 1997t-50.5 122.5zm1171 0Q1954 2170 1882 2170q-71 0-121.5-51t-50.5-122 50.5-122 121.5-51q72 0 122.5 50.5T2055 1997t-50.5 122.5z" + }, + "children": [] + }] +}; +exports.u1F695 = u1F695; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F696.js b/dist/noto_emoji_regular/u1F696.js new file mode 100644 index 000000000..f5e17ec8e --- /dev/null +++ b/dist/noto_emoji_regular/u1F696.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F696 = void 0; +var u1F696 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1932 1435q54 12 89.5 47t35.5 79v349q0 23-16.5 39.5T2001 1966h-71v128q0 46-32 78.5t-78 32.5-78-32.5-32-78.5v-128H897v128q0 46-32 78.5t-78 32.5q-47 0-79-33t-32-78v-128h-78q-23 0-39.5-16.5T542 1910v-349q0-44 35.5-79t90.5-47l109-401q12-45 53.5-77t89.5-32h149l-1-7q0-3-1-7V761q0-23 16.5-39.5T1123 705h353q23 0 39.5 16.5T1532 761v150q0 9-2 14h150q48 0 89.5 32t53.5 77zm-497-560q0 2 2 2h25q2 0 2-2V774q0-2-2-2h-25q-2 0-2 2v101zm-114-1q0 2 1 3h30l2-1 17-26 18 26 2 1h29q2 0 2-3l-33-49 32-50v-2l-1-1h-28l-2 1-19 27-18-27-2-1h-28q-3 0-3 1l1 2 33 50zm-72-102q-2 0-2 1l-38 101q0 3 4 3h23l3-3 5-16h33l6 16q0 3 3 3h24q2 0 2-3l-36-99q0-3-3-3h-24zm22 65h-20l10-30zm-135-45q0 2 3 2h24v81q0 2 3 2h22q2 0 2-2v-81h25q2 0 2-2v-19q0-2-2-2h-76q-3 0-3 2v19zm-269 813.5q-32-30.5-75-30.5-41 0-73 30t-32 75q0 46 31.5 76t73.5 30q43 0 75-31t32-75-32-74.5zm865-179.5q20 0 33-12.5t13-31.5q0-8-1-12l-62-289q-5-23-25-39.5t-44-16.5H953q-24 0-44 16.5t-25 39.5l-62 289q0 4-1 11 0 20 13 32.5t33 12.5h865zm164 179.5q-32-30.5-75-30.5-42 0-74 31t-32 74q0 44 32 75t74 31q43 0 75-31t32-75-32-74.5z" + }, + "children": [] + }] +}; +exports.u1F696 = u1F696; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F697.js b/dist/noto_emoji_regular/u1F697.js new file mode 100644 index 000000000..83c3334e2 --- /dev/null +++ b/dist/noto_emoji_regular/u1F697.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F697 = void 0; +var u1F697 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2296.5 1814.5Q2224 1895 2117 1895h-14q0-93-68-161.5t-164-68.5q-95 0-163 67.5t-68 162.5H931q0-95-68-162.5T700 1665q-96 0-164 68.5T468 1895q-76 0-156.5-68.5T231 1631q0-86 33.5-159T416 1349t176.5-74.5T713 1125l35-69q69-134 173-197.5t245-63.5h381q142 0 256.5 62.5T2010 1065l35 55q43 68 96 121t117 115.5 87.5 130T2369 1620q0 114-72.5 194.5zM1219 997q0-48-12.5-66t-39.5-18q-69 0-148 37.5t-136 122-57 140.5q0 23 12 37t39 14h274q29 0 48.5-15t19.5-51V997zm608 267q38 0 55-18t17-47q0-66-73-155t-170.5-110.5T1449 912q-56 0-78.5 8.5t-30.5 22-8 54.5v201q0 37 29.5 51.5t71.5 14.5h394zM820.5 2017q-50.5 51-120.5 51-72 0-122.5-50.5T527 1895q0-70 51-120.5t122-50.5q70 0 120.5 50.5T871 1895q0 71-50.5 122zm1173 .5Q1943 2068 1871 2068t-122-51-50-122q0-69 50-120t122-51q71 0 122 50.5t51 120.5q0 72-50.5 122.5z" + }, + "children": [] + }] +}; +exports.u1F697 = u1F697; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F699.js b/dist/noto_emoji_regular/u1F699.js new file mode 100644 index 000000000..191c989cf --- /dev/null +++ b/dist/noto_emoji_regular/u1F699.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F699 = void 0; +var u1F699 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M792 687h1263v1174h-144q-24-103-109.5-171t-194.5-68-194.5 68-109.5 171h-292q-27-104-111.5-171.5T707 1622t-193.5 67T401 1861H279v-85q-23-2-38-17.5t-15-37.5v-69q0-21 15-37.5t38-18.5v-241q0-79 52-130.5t136-51.5h182zm-11 539h519V789H903zm1504-257q35 0 62 26t27 63v533q0 36-26.5 62.5T2285 1680h-108q-36 0-62.5-26.5T2088 1591v-533q0-37 27-63t62-26h108zM882.5 2111.5Q809 2185 707 2185q-104 0-177-73.5T457 1936q0-103 73.5-176t176.5-73q102 0 175.5 73t73.5 176q0 102-73.5 175.5zm900 0Q1709 2185 1607 2185q-104 0-176.5-74t-72.5-175q0-103 73.5-176t175.5-73 175.5 73 73.5 176q0 102-73.5 175.5zM1551 1226h365V789h-365v437zm129.5 633.5Q1649 1829 1607 1829q-44 0-75.5 31.5T1500 1936t31.5 75.5 75.5 31.5q42 0 73.5-31t31.5-76q0-46-31.5-76.5zM781 1861q-31-32-74-32-44 0-75.5 31.5T600 1936t31.5 75.5T707 2043q42 0 73.5-31t31.5-76q0-43-31-75z" + }, + "children": [] + }] +}; +exports.u1F699 = u1F699; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F69A.js b/dist/noto_emoji_regular/u1F69A.js new file mode 100644 index 000000000..59fbf1767 --- /dev/null +++ b/dist/noto_emoji_regular/u1F69A.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F69A = void 0; +var u1F69A = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2340 750q23 0 39.5 16t16.5 39v1115q0 23-16.5 39t-39.5 16h-291q0-95-68-162.5t-163-67.5q-96 0-164 67.5t-68 162.5H881q0-93-68-161.5T649 1745q-95 0-163 67.5T418 1975H279q-24 0-49.5-28.5T204 1892v-261q0-66 32.5-108.5T309 1465l274-102 59-347q11-63 54-100t93-37h307v-74q0-23 16-39t39-16h1189zm-1317 287q0-24-16-40.5T967 980H804q-23 0-42 16t-22 39l-39 266v7q0 20 14 34t34 14h218q24 0 40-16t16-39v-264zM771.5 2097.5Q721 2148 649 2148t-122-51-50-122q0-69 50-120t122-51q71 0 122 50.5t51 120.5q0 72-50.5 122.5zm1167.5 0q-51 50.5-121 50.5-72 0-122.5-50.5T1645 1975q0-70 51-120.5t122-50.5q70 0 121 50.5t51 120.5q0 72-51 122.5z" + }, + "children": [] + }] +}; +exports.u1F69A = u1F69A; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F69B.js b/dist/noto_emoji_regular/u1F69B.js new file mode 100644 index 000000000..0989f68bd --- /dev/null +++ b/dist/noto_emoji_regular/u1F69B.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F69B = void 0; +var u1F69B = { + "viewBox": "0 0 2648 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2648 692v1013h-59v208h-14q-21-56-70-91t-110-35q-44 0-81.5 18.5T2250 1855q-27-31-64-49.5t-81-18.5q-79 0-134.5 56t-59.5 137h-158v-275h-221v43h123v156q-23-52-70.5-84.5T1477 1787q-45 0-82 18.5t-63 49.5q-27-31-64.5-49.5T1186 1787q-78 0-133.5 56.5T993 1980H583q0-78-57-135.5T388 1787q-78 0-133.5 56.5T195 1980H71q-23 0-47-26.5T0 1902v-340q0-68 37-109t90-48l267-36 55-321q10-58 50-92.5t85-34.5h339v-88q0-59 40-94t106-35v91q-22 0-38.5 6.5T1014 831v90h64v827h238v-43h-133V692h1465zM1377 2084.5q-43-40.5-45-98.5-2 59-45.5 99t-100.5 40q-59 0-102.5-42.5T1040 1980q0-61 43.5-103.5T1186 1834q57 0 100.5 41t45.5 99q2-57 44.5-98.5T1477 1834q59 0 102.5 42.5T1623 1980q0 60-43.5 102.5T1477 2125q-57 0-100-40.5zm918 0q-43-40.5-45-98.5-2 58-45 98.5t-100 40.5q-59 0-103-42t-44-103 43.5-103.5T2105 1834q59 0 101 43t44 103q2-60 43.5-103t101.5-43q59 0 102.5 42.5T2541 1980q0 60-43.5 102.5T2395 2125q-57 0-100-40.5zM765 1067q0-22-15-37t-36-15H599q-22 0-39.5 15t-20.5 36l-36 254q0 19 12.5 31t32.5 12h166q21 0 36-15t15-36v-245zM285.5 2082.5Q242 2040 242 1980q0-61 43.5-103.5T388 1834q60 0 102.5 43t42.5 103-42.5 102.5T388 2125q-59 0-102.5-42.5zM1502 788h-56v822h56V788zm297 0h-56v822h56V788zm298 0h-56v822h56V788zm297 0h-55v822h55V788z" + }, + "children": [] + }] +}; +exports.u1F69B = u1F69B; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F69C.js b/dist/noto_emoji_regular/u1F69C.js new file mode 100644 index 000000000..d4275c2d9 --- /dev/null +++ b/dist/noto_emoji_regular/u1F69C.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F69C = void 0; +var u1F69C = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M725.5 2141q-87.5 88-209.5 88t-210-88-88-209q0-122 88-209.5t210-87.5 209.5 87.5T813 1932q0 121-87.5 209zM600 1848q-35-35-84-35t-84 35-35 84q0 48 35 83.5t84 35.5 84-35.5 35-83.5q0-49-35-84zm670 7H864q-28-122-125.5-200.5T516 1576q-63 0-118 20t-101 55v-306q0-81 52.5-132t137.5-51h392V957h60v-81q0-37-51-37v-86q62 0 99.5 32.5T1025 875v82h54v205h180q2-2 3-5t3-5l100-101-66-66q-11-11-11-26t10.5-26 26.5-11 27 10l179 179q143-73 310-73V894q0-22 15.5-37.5T1894 841h53q22 0 37.5 15.5T2000 894v165q20 5 39.5 11.5t39.5 14.5V607h-36l-112-117h-591V385h875v222h-49v520q52 29 98.5 68t85.5 87l-62 50q-88-105-205.5-160t-247.5-55q-240 0-412.5 172.5T1250 1702q0 78 20 153zm78-607q26-28 55.5-52.5t60.5-45.5l-46-46-70 69v75zm858.5 825.5Q2052 2229 1835 2229t-371.5-155.5T1309 1702q0-214 153.5-369.5T1835 1177t372.5 155.5T2361 1702q0 216-154.5 371.5zm-194-549.5q-75.5-74-177.5-74-103 0-177.5 74.5T1583 1702q0 104 74.5 178.5T1835 1955q102 0 177.5-74t75.5-179q0-104-75.5-178z" + }, + "children": [] + }] +}; +exports.u1F69C = u1F69C; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F69D.js b/dist/noto_emoji_regular/u1F69D.js new file mode 100644 index 000000000..3c7a956d4 --- /dev/null +++ b/dist/noto_emoji_regular/u1F69D.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F69D = void 0; +var u1F69D = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2354 1066q17 23 17 57 0 22-7 36l-56 106q-11 20-34.5 35t-46.5 15h-45q-95 2-129 42.5t-59.5 106-40.5 81-127 15.5H773q-92 0-115-9.5t-40-56.5-47.5-101.5-81-66T376 1315q-25 0-49-15t-35-35l-55-106q-8-15-8-38 0-15 4.5-29.5T246 1066l321-399q14-17 40.5-30t49.5-13h1286q23 0 50 13t41 30zM791 826q0-28-16.5-48T735 758q-24 0-53.5 17.5T638 812l-160 213q-12 15-12 28 0 26 39 26h218q28 0 48-19.5t20-47.5V826zm437 8q0-32-22-54t-54-22h-152q-31 0-53.5 22T924 834v169q0 32 22.5 54t53.5 22h152q32 0 54-22t22-54V834zm438 0q0-32-22-54t-54-22h-152q-32 0-54 22t-22 54v169q0 32 22 54t54 22h152q32 0 54-22t22-54V834zm419 245q38 0 38-26 0-12-11-28l-160-213q-17-22-45-38t-51-16-39.5 20-16.5 48v186q0 28 19.5 47.5t47.5 19.5h218zM522 1430H72v-78h208q32 32 75.5 38.5t90.5 6.5 76 33zm2005-78v78h-451q23-23 53.5-30.5t78.5-7.5q38 0 65.5-10.5t46.5-29.5h207zm0 333h-425l21 531h-241l21-531h-503l21 531h-241l21-531H697l21 531H477l21-531H72v-208h478l16 31 27 65q24 56 89.5 60.5t90.5 4.5h1053q51 0 104.5-6.5t79-67.5 38.5-87h479v208z" + }, + "children": [] + }] +}; +exports.u1F69D = u1F69D; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F69E.js b/dist/noto_emoji_regular/u1F69E.js new file mode 100644 index 000000000..652ee7903 --- /dev/null +++ b/dist/noto_emoji_regular/u1F69E.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F69E = void 0; +var u1F69E = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1955 1356q0-269-192.5-463T1299 699q-175 0-328 88t-240.5 241-87.5 328v594h406l-160 254H343q-91 0-157-66t-66-157V963q233-403 535-620.5T1299 125q337 0 636.5 212.5T2479 963v1018q0 91-66 157t-157 66h-547l-159-254h405v-594zm-426-425q79 0 134.5 56.5T1719 1122v524q0 74-49 127.5t-121 61.5v95q0 17-12 29t-30 12q-17 0-29-12t-12-29v-93h-336v93q0 17-12.5 29t-29.5 12-29-12-12-29v-95q-72-8-121-61.5T877 1646v-524q0-79 56.5-135t134.5-56h461zm106 167q0-42-30-72.5t-72-30.5h-469q-43 0-73 30t-30 73v129q0 43 30 73t73 30h469q42 0 72-30.5t30-72.5v-129zm-68 1106h-536l104-254h328zm-486-606q-20-20-49-20t-49 20-20 49 20 49 49 20 49-20 20-49-20-49zm532 0q-20-20-49-20t-49 20-20 49 20 49 49 20 49-20 20-49-20-49z" + }, + "children": [] + }] +}; +exports.u1F69E = u1F69E; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F69F.js b/dist/noto_emoji_regular/u1F69F.js new file mode 100644 index 000000000..25150f4d1 --- /dev/null +++ b/dist/noto_emoji_regular/u1F69F.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F69F = void 0; +var u1F69F = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2527 760v158h-563v86h236v123h2q27 0 46 19t19 46v683q0 26-17 53.5t-41 38.5l-122 58q-23 12-62 20t-62 8H635q-27 0-63-8t-61-20l-121-58q-25-12-42-38.5t-17-53.5v-683q0-27 19.5-46t45.5-19h3v-123h235v-86H72V760h515q-21-23-21-53 0-29 19.5-51t48.5-27v-22h183v22q29 5 48.5 27t19.5 51q0 30-21 53h296q-9-11-15-24t-6-29q0-29 19.5-51t48.5-27v-22h184v22q29 5 48 27t19 51q0 30-20 53h295q-9-11-14.5-24t-5.5-29q0-29 19-51t48-27v-22h184v22q29 5 48.5 27t19.5 51q0 30-21 53h516zM804 1302q0-19-13-32t-32-13H526q-19 0-32 13t-13 32v338q0 20 13 32.5t32 12.5h233q19 0 32-12.5t13-32.5v-338zm13-298h390v-86H817v86zm425 298q0-19-13.5-32t-31.5-13H964q-19 0-32 13t-13 32v338q0 20 13 32.5t32 12.5h233q18 0 31.5-12.5t13.5-32.5v-338zm437 0q0-19-13-32t-32-13h-232q-19 0-32 13t-13 32v338q0 20 13 32.5t32 12.5h232q19 0 32-12.5t13-32.5v-338zm160-45q-18 0-31.5 13t-13.5 32v338q0 20 13.5 32.5t31.5 12.5h233q19 0 32-12.5t13-32.5v-338q0-19-13-32t-32-13h-233zm-59-339h-389v86h389v-86z" + }, + "children": [] + }] +}; +exports.u1F69F = u1F69F; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F6A0.js b/dist/noto_emoji_regular/u1F6A0.js new file mode 100644 index 000000000..5397259ab --- /dev/null +++ b/dist/noto_emoji_regular/u1F6A0.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F6A0 = void 0; +var u1F6A0 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1265 633v373q0 23 8 54t19 51l50 89h217v103h235q44 0 81.5 32t43.5 78l54 442q3 26 3 59 0 41-5.5 84t-13.5 75l-22 87q-12 46-54.5 77t-86.5 31H807q-47 0-88-32t-52-76l-24-87q-9-32-13-76.5t-5-86.5q0-31 3-55l54-442q6-46 43.5-78t81.5-32h234v-103h84q-2-4-4-10l-6-15q-4-9-9-24l-13-37q-8-19-13.5-52t-5.5-56V633H131v-65h943q0-58 9.5-83t46.5-25h229q23 0 39.5 16t16.5 39q0 19-11 33.5t-28 19.5h1094v65H1265zm-211 834q0-14-10-23.5t-24-9.5H813q-14 0-24.5 9.5T776 1467l-34 376v4q0 12 8.5 20.5t21.5 8.5h248q14 0 24-9.5t10-23.5v-376zm493 376q0 14 10 23.5t24 9.5h247q14 0 22.5-8.5t8.5-20.5v-4l-35-376q-2-14-12-23.5t-24-9.5h-207q-14 0-24 9.5t-10 23.5v376zm-350-409q-14 0-23.5 9.5t-9.5 23.5v376q0 14 9.5 23.5t23.5 9.5h207q14 0 23.5-9.5t9.5-23.5v-376q0-14-9.5-23.5t-23.5-9.5h-207z" + }, + "children": [] + }] +}; +exports.u1F6A0 = u1F6A0; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F6A1.js b/dist/noto_emoji_regular/u1F6A1.js new file mode 100644 index 000000000..af6da93af --- /dev/null +++ b/dist/noto_emoji_regular/u1F6A1.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F6A1 = void 0; +var u1F6A1 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1721 744q-8 17-23.5 27.5T1662 782h-185l179 556h305q26 0 47.5 19t26.5 45l72 463q0 8 1 17.5t1 20.5q0 20-2.5 45t-7.5 42l-57 211q-7 26-31 44t-50 18H653q-27 0-51.5-18t-32.5-43l-66-213q-5-16-7.5-38t-2.5-44q0-24 3-42l81-463q5-26 27-45t49-19h329l165-556H938q-20 0-35-10.5T880 744H131v-65h743v-13q0-26 19-45t45-19h110q27 0 45.5-19t18.5-46v-15q0-26 19.5-45t45.5-19h247q27 0 45.5 19t18.5 45v15q0 27 19.5 46t45.5 19h109q27 0 46 19t19 45v13h743v65h-749zm4 1084q0 17 11 28t28 11h213q14 0 23.5-8.5t9.5-22.5l-46-298q-3-17-15.5-28t-28.5-11h-156q-17 0-28 11.5t-11 27.5v290zM1252 650q20 20 49 20 28 0 48-20t20-48q0-29-20-49t-48-20q-29 0-49 20t-20 49q0 28 20 48zm-46 410h218l-91-278h-44zm-330 478q0-16-11-27.5t-27-11.5H691q-17 0-30 11t-16 28l-52 297q0 14 9.5 23t23.5 9h212q16 0 27-11t11-28v-290zm376 0q0-16-11.5-27.5T1213 1499h-200q-16 0-27.5 11.5T974 1538v290q0 17 11.5 28t27.5 11h200q16 0 27.5-11t11.5-28v-290zm374 0q0-16-11-27.5t-28-11.5h-199q-16 0-27 11.5t-11 27.5v290q0 17 11 28t27 11h199q17 0 28-11t11-28v-290zm-173-387h-273l-56 187h389z" + }, + "children": [] + }] +}; +exports.u1F6A1 = u1F6A1; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F6A2.js b/dist/noto_emoji_regular/u1F6A2.js new file mode 100644 index 000000000..e3da87571 --- /dev/null +++ b/dist/noto_emoji_regular/u1F6A2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F6A2 = void 0; +var u1F6A2 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2103 1781q6 0 67.5 9t61.5 69q0 33-14 69t-32 72l-37 71q-20 39-24.5 61.5t-6.5 65.5H599q5-8 9-18t4-21q0-34-25.5-79.5t-36-74.5-105-164.5-103.5-168-9-46.5q0-29 21.5-42.5T407 1570q13 0 164 15.5t217 24.5q11-44 24-86.5t24-86.5l9-36q8-38 25-63t63-25h23q49 0 96 7t95 12l160 19q11-59 17-119.5t10-123.5q26-21 55.5-29.5t61.5-8.5q61 0 128 21t98 50l-8 210q0 14 1 27v26l127 20q61 9 127.5 24t78 23.5 25 70.5 13.5 131v27q0 19 3 37l4 37zm-600-940q-8 0-17 1.5t-19 1.5q-7 0-11-1 0-20 56.5-86t123.5-66l8 1q67 0 78-19t42.5-39.5T1871 613q50 0 71 9.5t27 9.5q8 0 13-5l11-9q22-12 50-18.5t56-6.5q72 0 119.5 45.5T2266 750q0 56-56 102t-122 46q-49 0-94-16t-65-16q-26 0-68.5 28t-73.5 28q-39 0-100-36t-172-45h-12zm-162 210q2-25 16-73.5t54-61 77-12.5q76 0 134 31.5t58 85.5q0 14-1 27.5t-1 27.5q-19-21-87.5-41.5T1473 1014q-51 0-82.5 9.5T1341 1051zm332 612q25 24 59 24 35 0 59-24t24-59-24-59-59-24q-34 0-59 24t-25 59 25 59zm-601-64q24 25 58 25 35 0 59.5-24.5t24.5-59.5q0-34-25-58t-59-24-58 24-24 58 24 59zm300-85q-24 25-24 59t25 58 59 24 58-24 24-58-23.5-59-58.5-25q-36 0-60 25z" + }, + "children": [] + }] +}; +exports.u1F6A2 = u1F6A2; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F6A3.js b/dist/noto_emoji_regular/u1F6A3.js new file mode 100644 index 000000000..acbba7f42 --- /dev/null +++ b/dist/noto_emoji_regular/u1F6A3.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F6A3 = void 0; +var u1F6A3 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1642 1348l26-51q21-41 37-82.5t16-65.5q0-35-35-56t-59-68-24-101q0-96 58.5-171.5T1839 677q96 0 155.5 65.5t68 150.5 27 119 18.5 39q0 12-29.5 16t-29.5 13l1 6q0 10-10.5 16t-22.5 6q-21 0-28.5 13.5T1956 1136t-25 11 29.5 45.5T2001 1348h312q25 0 41 10t21 17.5 5 44.5q0 58-14.5 148t-42.5 164q-46-18-93-30t-97-12q-61 0-151.5 26.5T1820 1743q-51 0-147.5-23.5T1522 1696q-63 0-137.5 33.5T1274 1774q-2-3-2-6 0-4-9-37t-27-65l122-318h284zm822.5 575.5q-23.5 7.5-80.5 7.5h-52q-268 24-532.5 34.5T1266 1976q-60 0-134-2l-152-3q-59 0-168-3.5t-131-4.5l-120-3q-52 0-80-1-53 0-76.5-9t-23.5-25q0-15 14-30l30-31q59-62 144-97.5t185-35.5q50 0 95 10t113 40q10-23 25.5-48t32.5-39q2-4 2-7 0-12-15-12-11 0-19 5l-16 10q-9 6-18 11t-21 5-24-4l-23-8q-65-22-137-22-79 0-158 24.5T446 1779q-108-68-194-189.5T166 1415q0-30 26-44t515-19q4-45 9-89t5-86q0-39-6.5-74.5T681 1033l-20-23q-22-26-34.5-62T614 871q0-100 67-167.5T841 636q100 0 166.5 69t66.5 164q0 54-21 105.5t-58 89.5q38 28 74.5 40.5t81.5 12.5q42 0 78.5-14t61-45.5 65.5-43.5l16-40q5-11 15-18.5t22-7.5q17 0 28 12.5t11 27.5q0 7-3 14l-14 36q30 28 30 69 0 28-16.5 53.5T1374 1186l-184 476q19 38 31 78.5t12 88.5q0 10-1 15 37-6 73-21l73-29q36-15 73.5-26.5t78.5-11.5q60 0 151.5 23t147.5 23q71 0 162-26.5t150-26.5q96 0 221.5 57t125.5 95q0 15-23.5 22.5zM1035 1256q30 47 63 93 32 0 65-1h64l48-125q-44 29-78 35.5t-72 6.5q-45 0-90-9z" + }, + "children": [] + }] +}; +exports.u1F6A3 = u1F6A3; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F6A4.js b/dist/noto_emoji_regular/u1F6A4.js new file mode 100644 index 000000000..d66652f61 --- /dev/null +++ b/dist/noto_emoji_regular/u1F6A4.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F6A4 = void 0; +var u1F6A4 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1367 1865q-280-28-495-91t-352-144.5-215.5-175T226 1320q0-35 59-50.5t234-15.5q94 0 175.5 4t91.5 4q125-54 270.5-81t303.5-27h56q52 0 226 13.5t256.5 28 118.5 42 48 145.5q-225-38-579-69.5t-447-31.5q-18 0-38.5 2t-20.5 9q0 10 45 16t286 40.5 547 84.5l213 35 39 6q26 4 41 21t15 60q0 38-12 86-251 26-465.5 96T1367 1865zm918-57q-7 4-7 11 0 12 38 22.5t38 34.5q0 22-26 38t-26 29q0 8 6 17.5t6 26.5q0 35-33.5 50t-144.5 15q-31 0-61.5-1.5t-60.5-1.5q-136-5-313.5-6.5T1448 2039h-46q-24 0-47 2-25 0-44.5-10t-19.5-27q0-14 18.5-31.5t42.5-32.5l21-12q59-35 209-92t360.5-99.5T2262 1694q55 0 83 11t28 33q0 23-35.5 40.5T2296 1801zm-1220-769q-5-12-9.5-26t-6.5-30q0-13 3.5-23t17.5-14q7-73 53.5-115.5T1240 788q54 0 89.5 23.5T1391 880q34-30 83-30t101.5 28 52.5 72q0 26-42 44.5t-42 36.5q0 8 4 10.5t10 5.5l19 6q23 8 43.5 24.5t20.5 36.5q0 10-12 10-38-4-76-6t-77-2q-99 0-166 8t-80 8q-23 0-45.5-6.5T1141 1104q-10 2-16 2-23 0-35-18.5t-20-38.5zm13-66q2 15 5.5 29.5t8.5 25.5l5 10q5 14 12.5 27t15.5 13q4 0 13-4t18-9l26-13q23-11 34.5-26t11.5-35q0-28-12-45.5t-31-17.5q-11 0-23 5.5t-18 9.5z" + }, + "children": [] + }] +}; +exports.u1F6A4 = u1F6A4; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F6A5.js b/dist/noto_emoji_regular/u1F6A5.js new file mode 100644 index 000000000..b612f266b --- /dev/null +++ b/dist/noto_emoji_regular/u1F6A5.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F6A5 = void 0; +var u1F6A5 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2179.5 1406Q2066 1514 1908 1514H931v659q0 59-41.5 101.5T787 2317h-93q-61 0-102.5-42.5T550 2173v-762q-85-50-134-133.5T367 1099q0-67 23.5-126.5T456 865q0-64 21.5-110t72.5-78v-7q0-59 42.5-102T694 525h93q59 0 101.5 43T931 670v62h25q31-44 83-69.5t118-25.5q69 0 124 21.5t115 73.5h24q32-44 83.5-69.5T1622 637q59 0 114.5 19.5T1845 720l17 13q57 5 106.5 23t92 47 73.5 47.5 76.5 70T2278 1045q15 49 15 102 0 151-113.5 259zM494 980q-28 58-28 119 0 105 81.5 187.5T752 1369h1082q116 0 201-79t85-191q0-75-39-135.5T1977 866q3 5 31.5 60.5t28.5 98.5-34 59q-8 90-75 151t-157 61q-82 0-145.5-50.5T1544 1118l-9-8q-16 79-80 132.5t-148 53.5q-82 0-146-51.5t-82-126.5l-8-8q-16 80-81 133t-148 53q-80 0-142-49t-85-129l-31-33-34-37q-16-17-29.5-32.5T494 980zm340 534h-8q-49 0-93.5-10.5T649 1473v700q0 19 13.5 33t31.5 14h93q20 0 33.5-14t13.5-33v-659zm113.5-337.5Q991 1135 997 1077q-62-28-110.5-73T818 911q-53 8-92 50.5T687 1063q0 62 46.5 108.5T842 1218t105.5-41.5zm461.5 3q45-38.5 51-102.5-78-42-114-76.5t-64-89.5q-54 8-92 51t-38 101q0 62 46.5 108.5T1307 1218q57 0 102-38.5zM1875 829q-23-23-47-45t-51-40-58-30q-32-12-70-15 31 12 52 26 21 15 36 33 15 19 26 42 11 24 23 55 10 29 29 57 19 29 45 53 25 25 55 43t63 24q0-19-9-46t-23-56q-14-28-33-55-19-26-38-46zm-486-23q-39-39-89.5-70.5T1185 699q58 27 85.5 55.5t41 71 39.5 87 79 78.5q-27-40-36-73t-9-75q0-8 2-18t2-19zm-465 0q-53-52-99.5-77.5T722 699q99 43 128.5 136.5T966 991q-31-46-38.5-74.5T920 843q0-8 2-18t2-19zM694 624q-20 0-35 17 9-2 17.5-3t16.5-1q70 0 141 29 0-15-13-28.5T782 624h-88z" + }, + "children": [] + }] +}; +exports.u1F6A5 = u1F6A5; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F6A6.js b/dist/noto_emoji_regular/u1F6A6.js new file mode 100644 index 000000000..9c9e216ac --- /dev/null +++ b/dist/noto_emoji_regular/u1F6A6.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F6A6 = void 0; +var u1F6A6 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1532 1132v379h258q60 0 102.5 42.5T1935 1656v93q0 59-43 101.5t-102 42.5h-258v11q0 158-108 271.5T1164 2289q-64 0-113.5-19.5t-78-26.5-75.5-35-90.5-79.5T739 2008q-23-62-23-132v-123q-22-32-34.5-59.5T669 1634q0-61 47-111v-232q-19-27-33-55t-14-65q0-31 12.5-59.5T716 1060V828q-22-32-34.5-59T669 709q0-57 37-99.5t95-62.5q51-64 124.5-101.5T1084 408q66 0 112.5 19t69.5 24.5 64.5 26T1416 540t74 101q25 51 36 109h264q60 0 102.5 42.5T1935 895v92q0 60-42.5 102.5T1790 1132h-258zm304 524q0-19-13.5-33t-32.5-14h-258v186h258q19 0 32.5-13.5t13.5-32.5v-93zm-572-869q-50-71-153.5-133T906 592q-10 0-14.5 1.5T887 597q0 5 48.5 19.5t107.5 95 135.5 106T1276 843q12 0 16-4 0-5-4.5-14t-7.5-14zm28 977q0-24-58.5-88t-149-112-164.5-48q-10 0-21.5 1t-11.5 4q0 9 48 20t105 92.5 144 110.5l46 15q13 4 25.5 6.5t22.5 2.5q11 0 14-4zm-74-411l-29-9q-73-21-114.5-52.5T999 1212q-32 19-51.5 51.5T928 1336q0 55 42.5 100t103.5 45q55 0 96.5-37t47.5-91zm74-51q0-21-54.5-83t-148-113.5T897 1054q-10 0-10 5 0 6 47.5 18t107.5 95.5 142 108.5l56 17q23 8 38 8 8 0 14-4zm-478-297q28-9 67-10l29-1q-8-8-14.5-20T884 948l-35-18q-18-8-35-19v94zm0 462q15-5 32.5-7.5t34.5-2.5h29q-17-22-26-47-16-6-34-17l-36-20v94zm354 441q37-35 50-92l-32-10q-79-25-120-59.5t-67-72.5q-31 19-51 52t-20 72q0 58 44 101.5t102 43.5q57 0 94-35zm-354-32q0 119 80.5 202.5T1084 2162t189.5-83.5T1354 1876V793q0-116-79.5-201.5T1084 506q-32 0-62.5 8T964 536q171 37 279 140t108 164q0 31-22.5 46.5T1276 902q-9 59-45 101.5t-90 62.5q68 38 139.5 111t71.5 125q0 29-21 45.5t-52 16.5h-3q-8 59-44.5 101t-90.5 63q92 54 151.5 123.5T1352 1765q0 32-23.5 46.5T1276 1826q-10 74-69 125.5t-133 51.5q-66 0-116-36.5t-74-93.5q-35-17-70-38v41zm718-1028v186h258q19 0 32.5-13.5T1836 987v-92q0-20-13.5-33.5T1790 848h-258z" + }, + "children": [] + }] +}; +exports.u1F6A6 = u1F6A6; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F6A7.js b/dist/noto_emoji_regular/u1F6A7.js new file mode 100644 index 000000000..91b3af447 --- /dev/null +++ b/dist/noto_emoji_regular/u1F6A7.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F6A7 = void 0; +var u1F6A7 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2167 832q20 0 33.5 13t13.5 33v628q0 20-13.5 33t-33.5 13h-308l237 787h-219l-144-474-129 474h-219l212-787H985l237 787h-219l-143-474-130 474H511l214-787H433q-20 0-33.5-13t-13.5-33V878q0-20 13.5-33t33.5-13h105q-28-24-44-57.5T478 700q0-69 51-121.5T649 526h47q70 0 122 51.5T870 700q0 41-17 74.5T810 832h1002q-28-24-44-57.5t-16-74.5q0-69 51-121.5t120-52.5h47q70 0 122 51.5t52 122.5q0 41-16 74.5t-44 57.5h83zm-46 360l-192 267h192v-267zm-425 267l382-534h-246l-381 534h245zM575.5 776q31.5 32 73.5 32 48 0 79-32.5t31-75.5q0-44-32.5-75.5T652 593q-41 0-74.5 30.5T544 700q0 44 31.5 76zM479 1151l162-226H479v226zm13 308h246l383-534H874zm479 0h247l381-534h-246zm879-682.5q31 31.5 73 31.5 48 0 79-32t31-76q0-43-32-75t-75-32q-39 0-73 30t-34 77q0 45 31 76.5z" + }, + "children": [] + }] +}; +exports.u1F6A7 = u1F6A7; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F6A8.js b/dist/noto_emoji_regular/u1F6A8.js new file mode 100644 index 000000000..46b445430 --- /dev/null +++ b/dist/noto_emoji_regular/u1F6A8.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F6A8 = void 0; +var u1F6A8 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1904 1813q24 0 41.5 18t17.5 41v433q0 25-17.5 42t-41.5 17H730q-23 0-41-17t-18-42v-433q0-23 18-41t41-18h37q6-483 133-705t400-222 400 222 133 705h71zm-556-359q-5 7-5 14 0 3 1.5 6.5t3.5 5.5l239 237q5 4 13 4l7-1q11-5 11-16v-472q0-8-5-13.5t-13-5.5q-7 0-13 6zm-366 250q0 11 11 16l7 1q3 0 6.5-1t5.5-3l239-237q3-2 4-5.5t1-6.5q0-9-5-14l-239-235q-2-3-5.5-4.5t-6.5-1.5q-18 0-18 19v472zm863 227H789v315h1056v-315zM563 586q-12-9-12-24 0-16 11-24l205-161q7-5 18-5 19 0 29 19l163 422q0 3 1 10 0 14-9 22t-20 8-17-6zm-248 496q-11-2-20-9.5t-9-19.5q0-3 1-6l91-249q5-20 28-20 4 0 8.5 1t8.5 4l362 271q12 11 12 25 0 12-8 20.5t-22 8.5zm1309-269l163-422q3-9 11.5-14t16.5-5q5 0 9.5 1t7.5 4l205 161q11 8 11 20 0 8-2.5 15.5T2037 586l-370 261q-3 4-7.5 5t-8.5 1q-11 0-20-8t-9-21q0-7 2-11zm687 229q2 3 2 10 0 25-28 30l-453 26q-13 0-21-9t-8-21q0-16 11-24l363-271q5-5 16-5 21 0 29 20z" + }, + "children": [] + }] +}; +exports.u1F6A8 = u1F6A8; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F6A9.js b/dist/noto_emoji_regular/u1F6A9.js new file mode 100644 index 000000000..e4c8f455d --- /dev/null +++ b/dist/noto_emoji_regular/u1F6A9.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F6A9 = void 0; +var u1F6A9 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2029 1104q-98 136-262.5 222.5T1439 1413q-37 0-74-5l-152-19q-38-4-75-4-114 0-217 27.5T750 1493v842q0 33-23 55.5t-56 22.5q-32 0-55-22.5t-23-55.5V519q0-33 23-55.5t55-22.5q33 0 56 22.5t23 55.5v5l9-1q63-15 128-15 118 0 245.5 44.5t313 165T1787 838q47 0 96-9.5t85-23.5l31-12q16-6 32.5-10.5t31.5-4.5q37 0 50.5 24.5T2127 861q0 107-98 243z" + }, + "children": [] + }] +}; +exports.u1F6A9 = u1F6A9; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F6AA.js b/dist/noto_emoji_regular/u1F6AA.js new file mode 100644 index 000000000..c14293cc5 --- /dev/null +++ b/dist/noto_emoji_regular/u1F6AA.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F6AA = void 0; +var u1F6AA = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1917 317v2185H682V317h1235zM965.5 1529.5Q938 1502 897 1502q-39 0-67 28.5t-28 67.5q0 38 27.5 67t67.5 29 68-29 28-67q0-41-27.5-68.5zM1700 516H897v802h803V516z" + }, + "children": [] + }] +}; +exports.u1F6AA = u1F6AA; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F6AB.js b/dist/noto_emoji_regular/u1F6AB.js new file mode 100644 index 000000000..7bd605aed --- /dev/null +++ b/dist/noto_emoji_regular/u1F6AB.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F6AB = void 0; +var u1F6AB = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2149.5 1921.5q-131.5 227.5-359 359T1300 2412q-262 0-490-131t-360-359-132-491q0-262 131-490t359.5-360T1300 449t491 132 359 360 131 490q0 263-131.5 490.5zm-1071-1201Q974 754 884 815l1033 1033q61-91 94-196t33-221q0-200-100-372t-272-272-372-100q-117 0-221.5 33.5zM1715 2048L684 1015q-61 90-94.5 194.5T556 1431q0 200 100 372t272 272 372 100q116 0 221-33t194-94z" + }, + "children": [] + }] +}; +exports.u1F6AB = u1F6AB; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F6AC.js b/dist/noto_emoji_regular/u1F6AC.js new file mode 100644 index 000000000..107a80fce --- /dev/null +++ b/dist/noto_emoji_regular/u1F6AC.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F6AC = void 0; +var u1F6AC = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2061.5 981.5Q1965 1060 1818 1060q-30 0-60.5-1.5t-60.5-1.5q-111 0-171 35.5t-60 66.5 61.5 63 195.5 32 196 52.5 62 138.5q0 68-44.5 114t-140.5 63l-50 9q-53 9-83 31.5t-30 61.5q0 27 32 45t32 32q0 16-12 22t-26 6q-56 0-132-38t-76-97q0-28 19-49t42-38l42-31q19-14 19-28 0-19-44.5-28.5T1429 1508l-66-1q-282-14-434-135.5T777 1063q0-126 80.5-239.5T1091 658t305-52q74 0 154 16t132 51l72 49q36 25 74 44t82 19q32 0 51-15.5t19-41.5q0-19-8.5-32.5T1963 671q0-14 13-18.5t25-4.5q61 0 109 49t48 108q0 98-96.5 176.5zM1447 1886q18 0 30.5 12.5t12.5 31.5v193q0 17-12.5 30t-30.5 13H485q-17 0-30-13t-13-30v-193q0-19 13-31.5t30-12.5h962zm320 104v92q0 16 1.5 27.5t1.5 19.5q0 15-8.5 18t-23.5 3h-16q-14 0-25 3.5t-23 3.5l-55-1-23 1q-8 0-13.5-3.5t-5.5-13.5l4-187q0-12-4-19.5t-4-20.5q0-12 4-16.5t15-4.5h14l9 1q13 0 17-3.5t16-3.5q17 0 35 5t32 5q5 0 12-3t13-3q13 3 20 15.5t7 84.5z" + }, + "children": [] + }] +}; +exports.u1F6AC = u1F6AC; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F6AD.js b/dist/noto_emoji_regular/u1F6AD.js new file mode 100644 index 000000000..897317c76 --- /dev/null +++ b/dist/noto_emoji_regular/u1F6AD.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F6AD = void 0; +var u1F6AD = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2213 963q57 108 88 228.5t31 251.5q0 277-141 517.5t-379.5 377T1299 2474q-275 0-515-138t-378.5-378T267 1443q0-261 122.5-489t338-371T1200 414q-43 48-70 103t-37 116q-185 47-328 167l1176 1176q91-110 142.5-245.5T2135 1443q0-66-10-129t-29-122q56-28 88.5-75.5T2217 1007q0-11-1-22t-3-22zm-414 1147L630 943q-78 105-122.5 231.5T463 1443q0 222 112 415.5t306.5 306T1299 2277q142 0 268-44.5t232-122.5zM1302.5 955Q1166 859 1166 695q0-167 142-268.5T1666 325q56 0 123 12.5t110 42.5l56 39q28 20 58 35t67 15q26 0 41-12t15-34q0-17-6-25.5t-6-19.5 9.5-15 20.5-4q55 0 91 40.5t36 85.5q0 91-84 149t-191 58q-24 0-48.5-1.5T1908 689q-81 0-132.5 27t-51.5 54q0 31 56 53t104 22l85 5q79 4 123.5 45t44.5 107q0 68-50.5 103.5t-139.5 48-89 72.5q0 23 26 37t26 26q0 13-10.5 17.5t-21.5 4.5q-42 0-105-30.5t-63-78.5q0-36 49-69t49-48q0-16-45-25t-113-9q-211 0-347.5-96zM993 1389l207 207H697q-17 0-29.5-13t-12.5-31v-120q0-18 12.5-30.5T697 1389h296zm795 174q2-26 3-54.5t1-53.5q0-9-4-18t-4-20q0-8 3.5-15t14.5-7h14l10 1q8 0 18.5-3.5t18.5-3.5q17 0 32.5 4t28.5 4q6 0 12-2t12-2q16 0 25 17t9 148q0 17-11 20t-26 3h-12q-12 0-23 3.5t-25 3.5-26.5-1.5-26.5-1.5q-8 0-14 1t-11 1q-8 0-13.5-3.5t-5.5-14.5v-6zm-129-174q19 0 31 12.5t12 30.5v120q0 18-12 31t-31 13h-15l-205-207h220z" + }, + "children": [] + }] +}; +exports.u1F6AD = u1F6AD; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F6AE.js b/dist/noto_emoji_regular/u1F6AE.js new file mode 100644 index 000000000..1f87bcc21 --- /dev/null +++ b/dist/noto_emoji_regular/u1F6AE.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F6AE = void 0; +var u1F6AE = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2044.5 1781q-33.5 42-82.5 42-41 0-70-26.5t-29-60.5q0-46 9-86.5t9-83.5q0-53-22-104t-43-51q-15 0-24 6.5t-9 24.5 5 45l11 60q6 32 11 66t5 66q0 75-30 128t-30 208q0 60 7.5 109.5t28 66 37.5 37 17 49.5q0 42-29.5 61.5T1735 2358q-86 0-126.5-34.5T1568 2216q0-40 7-111t7-119q0-42-7-70.5t-25-28.5-24.5 27.5-6.5 69.5q0 27 2 57l9 121q2 29 2 52 0 73-40 108.5t-127 35.5q-51 0-80.5-19.5T1255 2277q0-30 18-50.5t37.5-36 27-66.5 7.5-108q0-155-29.5-208t-29.5-128q0-32 5-63.5t11-62.5l10-62q5-31 5-62 0-41-7-59.5t-24-18.5q-8 0-15 2l-16 6q-59 23-130 42.5T982 1422q-94 0-163.5-43T749 1261q0-57 37-89t87-32q38 0 107 23t125 23q121 0 197.5-46.5t76.5-91.5q0-22-45.5-61t-68.5-93.5-23-116.5q0-134 89.5-218.5T1550 474q130 0 219 84t89 210q0 98-39.5 158t-69 81.5-29.5 37.5l1 12q2 6 93 70.5t177.5 234T2078 1662q0 77-33.5 119zM799 1718l-71-35-21-81 58-66 103 20 25 72-30 61zm152-112q74 23 115.5 65t41.5 93q0 13-4 25l-62 444q-14 64-80.5 103T797 2375q-100 0-166-37.5T551 2235l-63-446-2-11q0-5-1-12 0-54 44-97t126-67l16 57q-58 16-92.5 44t-34.5 60q0 47 77 85t176 38 175-38 76-85q0-29-31-56.5t-84-44.5zm80 277q-42 29-102.5 45.5T797 1945q-72 0-132.5-16.5T561 1883l48 342q8 41 61.5 66.5T797 2317t126-26.5 61-67.5z" + }, + "children": [] + }] +}; +exports.u1F6AE = u1F6AE; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F6AF.js b/dist/noto_emoji_regular/u1F6AF.js new file mode 100644 index 000000000..73accc176 --- /dev/null +++ b/dist/noto_emoji_regular/u1F6AF.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F6AF = void 0; +var u1F6AF = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2345.5 2000Q2180 2282 1900 2441.5T1300 2601t-600-159.5T254.5 2000 89 1389q0-326 162.5-606T694 340.5 1300 178t606 162.5T2348.5 783t162.5 606q0 329-165.5 611zM1146 449q-128 21-242 73.5T694 654l1378 1294q86-118 133.5-259.5T2253 1389q0-249-122.5-465.5T1801 579q-29-119-130-193t-229-74q-88 0-166.5 36T1146 449zm647 1756q29-18 56.5-37.5t53.5-40.5L526 833q-85 118-132 259t-47 297q0 344 220.5 608.5T1118 2324q20 21 51.5 34.5t79.5 13.5q40 0 78-8.5t66-26.5l41-5q20-2 41-6 27 22 67.5 34t91.5 12q78 0 121-35.5t43-97.5q0-17-5-34zM1212.5 450q91.5-89 229.5-89 134 0 227.5 87.5T1763 668q0 78-26 136t-72 97.5-46 54.5l2 12q2 8 74.5 57.5T1834 1170t111.5 215.5T1991 1599q0 51-15 87t-38 55l-162-151 8-46q3-23 3-47 0-47-22.5-103.5T1717 1337q-13 0-23 5.5t-10 26.5q0 26 8.5 68t16.5 89l-512-481q22-13 44-38.5t22-47.5q0-25-42.5-58.5t-71-92.5-28.5-131q0-138 91.5-227zm506 1852.5Q1688 2323 1635 2323q-94 0-134.5-38t-40.5-113q0-24 3-54l10-123q2-31 2-59 0-46-7-74.5t-26-28.5q-20 0-26.5 29t-6.5 74q0 50 7 123.5t7 114.5q0 76-41.5 112.5T1249 2323q-53 0-83.5-20.5T1135 2239q0-31 19-53.5t38.5-37 27.5-65.5 8-115q0-164-31-217t-31-136q0-23 2.5-45.5t7.5-45.5l480 452q0 61 8.5 110t28 63 38 37 18.5 53q0 43-30.5 63.5zM973 1334q-31 7-62 11t-62 4q-95 0-168.5-45.5T607 1182q0-41 20-74t58-44zm-81 704l-62 32-60-20-34-55 24-70 72-27 66 45zm-142-206l-62 31-58-20-33-54 23-68 70-27 66 44zm84-368l24 64-26 56-58 26-65-32-18-73 52-59z" + }, + "children": [] + }] +}; +exports.u1F6AF = u1F6AF; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F6B0.js b/dist/noto_emoji_regular/u1F6B0.js new file mode 100644 index 000000000..3bcf6d36a --- /dev/null +++ b/dist/noto_emoji_regular/u1F6B0.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F6B0 = void 0; +var u1F6B0 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1060 1591q57 26 91 65.5t34 86.5q0 6-1.5 15.5t-3.5 17.5l-67 408q-10 64-84 107.5T849 2335t-180.5-42.5T584 2185l-67-409q-2-7-3-14t-1-14q0-53 37-95t105-70v31l-1 7q0 12 2 26-39 20-61.5 44.5T572 1742q0 55 83 96t194 41q113 0 194.5-41t81.5-96q0-23-18.5-45t-50.5-41q3-17 4-33v-32zm44 280q-46 31-111.5 48.5T849 1937t-144-17.5-112-48.5l49 303q6 43 66 72.5t141 29.5q80 0 138-28.5t68-74.5zm-135.5 127.5q57.5 19.5 57.5 58.5 0 11-2 21l-5 21-6 38q-7 43-21.5 55.5t-49 23.5-94.5 11q-65 0-106.5-15t-49.5-38l-6-29q-4-17-10-49t-6-43q0-40 59.5-57t114.5-17q67 0 124.5 19.5zm1083.5-767q-35 72.5-139 72.5-70 0-90-49.5t-57-49.5q-58 0-82 77t-91.5 118-171.5 41q-99 0-164-32.5t-100-32.5q-48 0-93 34t-45 123q0 19 1 37t1 36q0 57-12.5 71.5t-52 32T842 1727q-45 0-83-17.5t-51.5-33T694 1621q0-233 57.5-349T933 1092t160-145.5 94-81.5q19 0 26 8t7 28q0 14 20 53.5t67 65 160 25.5q80 0 137.5-35t70.5-83l5-19q2-9 6-15.5t10-6.5q11 0 31 10t37 10q50 0 71-53t101-53q81 0 116 85t35 180q0 94-35 166.5zM1867.5 685q-27.5 37-142.5 37-59 0-93 12t-34 31q0 7 5 16l9 21q5 12 9.5 26.5t4.5 30.5v13l-1 13q-2 47-47 74t-110 27q-131 0-162.5-40t-31.5-72q0-11 2-22.5t2-22.5q0-14-8.5-23t-28.5-9q-30 0-78.5 16.5T1059 830q-77 0-123.5-38.5T889 681q0-70 42.5-101.5T1054 548q22 0 39.5 3t34.5 8l28 7q14 4 32 4 16 0 32.5-6.5T1237 547q0-12-20-33t-20-60q0-63 49.5-102.5T1360 312q54 0 105.5 33.5T1517 457q0 45 8 62.5t40 17.5q51 0 99-33t106-33q52 0 88.5 38.5T1895 601q0 47-27.5 84zm-368-79q-29.5-22-73.5-22-50 0-91.5 24.5T1293 668t34.5 54.5T1411 742q53 0 85.5-23.5T1529 663q0-35-29.5-57z" + }, + "children": [] + }] +}; +exports.u1F6B0 = u1F6B0; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F6B1.js b/dist/noto_emoji_regular/u1F6B1.js new file mode 100644 index 000000000..50885ec07 --- /dev/null +++ b/dist/noto_emoji_regular/u1F6B1.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F6B1 = void 0; +var u1F6B1 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2347.5 1991Q2185 2271 1905 2433.5T1299 2596t-606-162.5T250.5 1991 88 1385t162.5-606T693 336.5 1299 174t606 162.5T2347.5 779t162.5 606-162.5 606zm-331.5 21L445 962q-48 96-73.5 202T346 1385q0 146 41 278t115 245l54 333q13 84 99 136.5t214 52.5q90 0 159.5-27.5T1138 2325q77 13 161 13 204 0 392.5-84.5T2016 2012zM1189 439q-182 22-336.5 105T583 758l1570 1050q48-97 73.5-202.5T2252 1385q0-201-80.5-382.5T1949 689q5-23 5-44 0-69-47.5-116.5T1792 477h-8q-62 0-109 33-48-20-101-37-6-64-59.5-109.5T1382 318q-66 0-120.5 35.5T1189 439zm687.5 300.5q-24.5 38.5-113 40t-119 13.5-30.5 30q0 7 4 16l9 22q5 12 9 26.5t4 32.5q0 56-34.5 89.5T1488 1043q-124 0-155.5-39.5T1301 931q0-11 1.5-22t1.5-22q0-14-7.5-23t-27.5-9q-29 0-76 16t-100 16q-78 0-121-39t-43-110q0-67 40-99.5t117-32.5h20q22 0 56 10.5t57 10.5q14 0 30-5.5t16-16.5q0-13-19.5-34t-19.5-61q0-61 49-101t109-40q67 0 109 40t42 105q0 39 6.5 59.5T1581 594q42 0 96.5-32.5T1779 529q51 0 86.5 39t35.5 91q0 42-24.5 80.5zM1079 1636q58 26 92 65.5t34 86.5q0 8-2 17l-4 17-66 407q-16 69-88.5 110.5T869 2381q-107 0-179.5-41T605 2231l-67-409-3-15q-2-6-2-14 0-53 37-95t106-70q0 16-1 32v11q0 11 1 22-39 20-61.5 44.5T592 1787q0 55 83 96t194 41q110 0 193-41t83-96q0-23-18.5-45t-50.5-40q2-13 2-27.5t1-38.5zm14-609q3-4 35-60.5t79-56.5q19 0 26 8t7 28q0 14 19.5 52.5t66 65.5 161.5 27q76 0 135.5-34t72.5-85l5-19q2-9 6-15.5t11-6.5q8 0 25 10t42 10q49 0 70.5-53t100.5-53q82 0 117 84.5t35 179.5q0 93-34 166.5t-137 73.5q-71 0-92-49.5t-58-49.5q-53 0-75 63t-52 93zm31 889q-46 31-111.5 49T869 1983t-144-18-112-49l50 304q8 46 65 73.5t141 27.5q80 0 138-28.5t68-74.5zm-42-458q-25 23-34 53t-9 70l1 71q0 59-13 72.5t-51.5 30.5-113.5 17q-45 0-80-16t-51-31.5-16-54.5q0-161 22-250.5t63-150.5zm-87 588.5q50 21.5 50 54.5 0 11-2 22l-4 21-6 39q-7 43-21.5 55.5t-49 23T868 2272q-39 0-74-6t-59.5-21-25.5-35-7-48l-8-34q-4-16-4-32 0-35 59.5-53t114.5-18q81 0 131 21.5zM1519 664q-29-22-71-22-49 0-89 25t-40 58q0 36 33 55t79 19q52 0 84.5-24t32.5-56q0-33-29-55z" + }, + "children": [] + }] +}; +exports.u1F6B1 = u1F6B1; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F6B2.js b/dist/noto_emoji_regular/u1F6B2.js new file mode 100644 index 000000000..9cb9f1895 --- /dev/null +++ b/dist/noto_emoji_regular/u1F6B2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F6B2 = void 0; +var u1F6B2 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2251.5 1931Q2123 2059 1943 2059q-171 0-296.5-115.5T1507 1662h-122q-5 20-7.5 37.5t-7.5 35.5q31 0 51 12t20 44q0 28-23 41.5t-71 13.5q-16 0-30.5-1t-25.5-1h-21q-34 0-46.5-11.5T1211 1796q0-27 28-45.5t58-18.5h6l5 1q5-20 6.5-36t6.5-35h-14l-6-1h-9q-3-2-10.5-4.5T1263 1639l-301-448q-6 23-14 47l-16 47q74 61 117.5 148.5T1093 1624q0 178-128 306.5T656 2059t-309-128.5T219 1624q0-180 129-308.5T656 1187q50 0 96 10.5t88 30.5q23-66 38-134t28-135l4-22q21-123 62.5-149.5t63.5-41 140-14.5l61 1q24 0 44.5 21.5T1302 804q0 31-30 54.5t-96 23.5h-51q-14 0-28.5 1.5T1071 885q-10 0-19-2.5t-16-8.5q-8 10-12.5 28.5T1012 955l-15 81h443q-52-6-83.5-24t-31.5-45q0-25 18-46t46-23.5 70-10.5l75-13q37-6 73-10.5t69-4.5q34 0 59.5 26.5T1761 947q0 41-38 72.5t-82 31.5h-18q-9 0-19-1v21l126 170q48-26 101.5-40t111.5-14q178 0 307.5 128t129.5 309q0 179-128.5 307zM885 1399q-52 110-116.5 185.5T692 1669t-33 9q-22 0-39-15.5t-17-38.5q0-14 6.5-26t20.5-20l7-5q54-54 92.5-113t67.5-124q-32-16-67.5-24.5T656 1303q-130 0-225 94t-95 227q0 132 94 226t226 94q133 0 227-95t94-225q0-66-25-123t-67-102zm1283-1q-95-95-225-95-38 0-74 8.5t-67 24.5l179 242q10 14 10 32 0 22-15.5 37t-36.5 15h-314q14 121 105 201.5t213 80.5q132 0 226-95t94-225q0-131-95-226zm-1113-257l244 362 170-362h-414zm507 50l-171 365h120q11-74 45.5-138.5T1645 1303zm153 207q-33 32-55 72t-31 86h205z" + }, + "children": [] + }] +}; +exports.u1F6B2 = u1F6B2; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F6B3.js b/dist/noto_emoji_regular/u1F6B3.js new file mode 100644 index 000000000..b4a1bdd62 --- /dev/null +++ b/dist/noto_emoji_regular/u1F6B3.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F6B3 = void 0; +var u1F6B3 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2347.5 2009Q2185 2289 1905 2451.5T1299 2614t-606-162.5T250.5 2009 88 1403t162.5-606T693 354.5 1299 192t606 162.5T2347.5 797t162.5 606-162.5 606zm-335.5 27L445 980q-35 71-58.5 147T353 1284q-37 54-57.5 117T275 1533q0 116 58 216.5T491 1908q128 205 343 326.5t465 121.5q204 0 390-83.5t323-236.5zM583 774l1602 1066q58-60 92-138t34-169q0-63-17-119t-47-106q-24-239-159.5-439T1743 559.5 1299 450q-203 0-390 84T583 774zm799 99q65-11 133-20l70-9q32-4 52-4 29 0 51.5 25t22.5 56q0 40-34 66.5t-73 26.5h-17q-9 0-18-1v19l115 155q43-24 91-37t101-13q163 0 279.5 116.5T2272 1533q0 69-22.5 131t-62.5 113l-87-59q31-38 48.5-85t17.5-100q0-120-86-205t-204-85q-35 0-67.5 8t-61.5 22l164 220q9 12 9 28 0 19-13 32.5t-32 14.5l-142-95h45l-108-145q-15 15-27.5 32.5T1619 1397l-87-59q31-54 75-95l-76-103-70 151-81-54 66-141h-277l-143-96h393q-44-7-73-21.5t-29-40.5q0-54 65-65zm-278 617l2 21v22q0 163-116.5 279.5T710 1929t-279.5-116.5T314 1533q0-132 80.5-238T600 1153l136 91q-6 0-19-1-128 0-212.5 86.5T420 1533q0 118 85 204.5t205 86.5q119 0 205-86t86-205q0-36-8.5-70t-24.5-64zM934 939l5-27q12-79 35-111t55-44q10-19 44-25.5t108-6.5l56 1q23 0 40.5 19.5T1295 788q0 36-27.5 55t-86.5 19h-40q-14 0-27.5 1.5T1089 865q-21 0-35-11-5 8-10.5 25.5T1033 927l-13 69zm-241 548q42-42 74-88t57-96l80 54q-47 91-101 152.5t-65 67.5-26 6q-18 0-34-14t-16-36q0-26 24-40zm725 214q-4 16-23 25t-61 9l-29-1h-39q-33 0-43-11.5t-10-32.5q0-25 23.5-41.5t50.5-16.5h14l2-8z" + }, + "children": [] + }] +}; +exports.u1F6B3 = u1F6B3; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F6B4.js b/dist/noto_emoji_regular/u1F6B4.js new file mode 100644 index 000000000..918876f98 --- /dev/null +++ b/dist/noto_emoji_regular/u1F6B4.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F6B4 = void 0; +var u1F6B4 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2237.5 2283.5Q2114 2407 1943 2407q-163 0-284-112.5T1526 2018h-39q-25 35-62 53t-43.5 18-12.5 11q31 0 51 12t20 44q0 27-21.5 41t-69.5 14q-17 0-32-1t-27-1h-23q-21 0-38-7t-19-36q0-27 19.5-44t44.5-22q-42-11-60.5-37t-18.5-61q0-48 25-85t25-59q0-29-22.5-90t-22.5-129q0-54 10.5-100.5t25.5-87.5l-201-30q26-14 49.5-33.5t45.5-39.5l140 20q10-24 16-48t6-49q0-48-24.5-83.5T1239 1146l-20-28q-31 84-93 154.5t-136 110-117 39.5q-24 0-48 19t-83 19q-69 0-111-34.5t-42-92.5l1-11q-10-19-14.5-33.5T571 1256q0-68 45-104.5t111-36.5q25 0 54.5 7.5T866 1142q-14 22-43 37t-58 28l-20-4q-9 0-19-1-23 0-40.5 6.5T663 1229q22-8 45-8 20 0 40.5 5t41.5 5q36 0 99-45.5t94.5-110.5 34.5-140q-29-6-89.5-13.5t-123-61T718 718h-6q-23 0-37.5-19T660 632q0-119 74-211.5T971 328t262 59 99 110q0 13-10 21.5t-27 15.5l-22 8q-7 4-14 5 11 33 11 78.5t116 74 240 138 124 235.5q0 20-3.5 39t-8.5 38l28 12q12 4 25.5 27.5t13.5 47.5q0 42-35.5 69.5T1687 1334l-22-1q-13 0-22-3-110 149-141.5 235t-31.5 160q0 89 19 136.5t19 85.5v10l-2 11q6-9 10-18t7-19h5q11-76 46.5-140.5T1664 1677l-95-129q14-43 46-82l119 160q46-27 98.5-41.5T1943 1570q170 0 294 122.5t124 295.5q0 172-123.5 295.5zM1711 1740q-40 38-67 86t-37 105h246zm470.5 7.5Q2081 1648 1943 1648q-45 0-85.5 10.5T1781 1689l193 260q8 11 8 25 0 20-12.5 32t-30.5 12h-335q12 131 109.5 220.5T1943 2328q138 0 238.5-99.5T2282 1988t-100.5-240.5zM833 1610q107 50 174 152t67 226q0 172-123.5 295.5T656 2407q-173 0-296-124t-123-295q0-172 123.5-295T656 1570q25 0 48.5 3t46.5 8l10-39q5-20 11-41 30 0 53.5-8t42.5-20q-8 35-20 79.5t-15 57.5zm112.5 201.5Q896 1729 811 1686q-12 42-22 75l-19 61q-31 98-46 133t-28.5 56-38.5 21q-18 0-31.5-12t-13.5-32q0-10 31-74.5t87-256.5q-36-9-74-9-138 0-239 99.5T316 1988t101 240.5 239 99.5 238.5-99.5T995 1988q0-94-49.5-176.5zM1160 1700q4 63 17 96t13 47q0 17-9 33l-299-410q22-8 41.5-9.5t51.5-9.5z" + }, + "children": [] + }] +}; +exports.u1F6B4 = u1F6B4; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F6B5.js b/dist/noto_emoji_regular/u1F6B5.js new file mode 100644 index 000000000..e76c7db86 --- /dev/null +++ b/dist/noto_emoji_regular/u1F6B5.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F6B5 = void 0; +var u1F6B5 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2351 2516.5q-15 4.5-27 4.5l-190 7q-30 0-60.5 1.5t-60.5 1.5q-35 6-69 6-13 0-25-1l-26-1-176 4q-158 4-273 5t-279 1l-306-1q-80 0-155-1l-138-2q-62 0-106-2.5t-61-4.5l-15-2q-15-2-28-5.5t-13-11.5q0-7 12.5-15.5T395 2479l24-11q6-3 43-23t63-22q-5-8-16-13.5t-21-5.5q-29 0-57.5 12.5T378 2439q-78-62-124-152.5T208 2089q0-183 132-315t317-132q36 0 74 6l80-306-56-14q-17 12-39 12-23 0-40-11.5t-27-29.5q-7 4-13 4-49 0-49-59 0-64 29.5-94.5T707 1119q79 0 119.5-19t91.5-48 99-73l76-69q-29-11-92.5-25.5T880 815t-77-154q-3 0-6 1h-7q-21 0-31-22t-10-52l-1-30q0-134 102-230t237-96q137 0 221.5 82.5T1393 530q0 26-6.5 51t-25.5 32v9q0 52 75.5 79.5t159 90.5 139 154.5T1790 1136q0 32-6 64t-19 61l5 4q17 14 26.5 33t9.5 40q0 42-35.5 69.5T1688 1435q-11 0-26.5-3.5T1628 1420q-87 76-120.5 121.5T1447 1656t-27 162q0 26 1.5 51t1.5 51q0 32-4.5 57t-16.5 46h99q11-78 47.5-145t92.5-118l-80-107-99 216q-3-18-3-36 0-82 27.5-163.5t75.5-138 69-56.5q7 0 11 1l-31 68 114 154q49-27 104-41.5t115-14.5q185 0 316 132.5t131 314.5q0 91-33 170t-91 140q-11-4-20.5-8t-20.5-4q-16 0-30 7l-24 11h-1q-29 13-42.5 23.5T2115 2450q3 0 8.5 1.5t8.5 1.5q18 0 43.5-14.5t43.5-14.5q19 0 83 34.5t64 47.5q0 6-15 10.5zM1808 1810l175 234q10 17 10 32 0 22-15.5 37t-37.5 15h-304q14 106 88.5 180.5T1900 2397q8-5 17.5-8t16.5-3q8 0 20.5 4t19.5 8q117-12 198.5-100t81.5-209q0-126-90.5-217.5T1944 1780q-75 0-136 30zm-86 62q-30 31-51 69t-30 82h195zm-542-749q-6 4-90 65.5T935 1285q5 12 5 22 0 12-6 23t-15 18l-16 59 320 46 27-49q26-46 39-83t13-70q0-41-31.5-102t-34.5-66zM875.5 2308.5Q967 2217 967 2089q0-86-46-161.5T796 1813l-78 298q-5 17-20 28t-32 11q-23 0-38-16.5t-15-37.5l2-13 80-301q-10-2-29-2-139 0-229.5 91.5T346 2089q0 128 91.5 219.5T657 2400q127 0 218.5-91.5zM1427 2437l51-18q23-8 44-8 25 0 52.5 9t73.5 17l42 7q21 4 38 6t25 2q17 0 35.5-7t35.5-15q0-5-9.5-8.5t-14.5-3.5q-9 0-18.5 2.5t-18.5 2.5q-4 0-21-3l-85-13q-23-4-36-8-52-54-84-123t-40-148h-68q-17 31-69 48t-56 19l-27 9q-13 5-25 5-11 0-26-11t-15-38q0-10 3.5-19t8.5-17q-5 0-10 1l-11 1q-38 0-67.5-26.5T1105 2027q0-57 34.5-95.5t34.5-70.5q0-31-11.5-66.5T1151 1708q0-39 7.5-79.5t19.5-75.5l-209-30 147 201 4 42q0 21 6 43l6 24q3 12 3 25 0 24-17 46l-254-348-32 121q123 53 198 165t75 247q0 78-25.5 148t-70.5 128q-24 10-100 34t-76 47q0 4 3 7 21-6 46-14l49-16q24-7 48-12.5t44-5.5q17 0 61 15t112 29.5 99 14.5q39 0 72-8.5t60-18.5z" + }, + "children": [] + }] +}; +exports.u1F6B5 = u1F6B5; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F6B6.js b/dist/noto_emoji_regular/u1F6B6.js new file mode 100644 index 000000000..a54894407 --- /dev/null +++ b/dist/noto_emoji_regular/u1F6B6.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F6B6 = void 0; +var u1F6B6 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1841 2407.5q-65 59.5-138 59.5-70 0-109.5-68.5T1503 2249l-99-152q-7-11-39.5-76t-82.5-65q-12 0-20 6l-18 12q-85 47-176 170.5T977 2293q0 11 4 21l15 42q3 11 3 22 0 37-30 64t-66 27q-65 0-128-68t-63-130q0-83 81.5-164.5T921 1959l24-37q26-41 42-79.5t16-69.5q0-42-5.5-82.5T992 1608q0-37 4-55t10-28l9-14q4-7 7.5-14.5t3.5-15.5-4.5-13-10.5-5q-31 0-58 60t-27 103q0 9 4 19.5t4 60.5q0 47-29.5 69t-70.5 22q-70 0-105-38t-35-111q0-71 45-171t124-191 149-146.5 70-98.5q0-29-41.5-66T965 862.5 931 712q0-140 102.5-246T1285 360q152 0 245 99.5t93 241.5q0 35-6.5 69.5T1599 840q-14-3-27.5-6.5T1544 830q-34 0-52 4.5t-18 18.5q0 16 17.5 28t40.5 20l28 9q-13 31-35.5 56.5T1484 998l-24 10q-11 5-17 13.5t-6 29.5q0 37 30 70.5t70.5 98.5 107.5 153 103.5 110 62 56 25.5 71q0 41-32 67t-72 26q-31 0-57-12.5t-48.5-36-41.5-53-39-56-31.5-50.5-28.5-24q-8 0-10.5 9t-2.5 20q0 17 3 37t3 26q0 19 26 139t50.5 170 68 150.5 81 139.5 107.5 39q27 0 60.5 29.5t33.5 65.5q0 52-65 111.5zM1499 737q19-19 19-45 0-27-19-46t-46-19q-26 0-45 19t-19 46q0 26 19 45t45 19q27 0 46-19z" + }, + "children": [] + }] +}; +exports.u1F6B6 = u1F6B6; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F6B7.js b/dist/noto_emoji_regular/u1F6B7.js new file mode 100644 index 000000000..a700a6721 --- /dev/null +++ b/dist/noto_emoji_regular/u1F6B7.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F6B7 = void 0; +var u1F6B7 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1906 323.5Q2186 486 2348.5 766t162.5 606-162.5 606-442.5 442.5-606 162.5q-329 0-611-165.5T247.5 1972 88 1372t159.5-600T689 326.5 1300 161q326 0 606 162.5zM675 2091q-22 17-43.5 45t-21.5 70q0 75 81 148t173 73q48 0 87-22t63-65l29-51q62 17 125.5 26.5t131.5 9.5q110 0 217-26 4 53 46 91.5t100 38.5q89 0 164.5-85t75.5-170q0-26-8-58 17-14 33.5-28.5t32.5-29.5L491 867q-69 110-106.5 237.5T347 1372q0 205 84.5 392T675 2091zM906 503q-152 69-270 184l1471 1191q69-110 107.5-238t38.5-268q0-291-162.5-531.5T1662 490q-44-119-145.5-193T1282 223q-137 0-238.5 76T906 503zm1012 1106q-3 14-11 32l-242-197q-29-48-64.5-75.5T1544 1341q-4 0-6 1l-419-340q10-20 10-39 0-39-46-53t-77-87l28-10q25-8 42-20.5t17-25.5q0-14-15.5-19t-51.5-5q-17 0-31 3.5t-27 5.5q-11-34-18-69t-7-71q0-139 93.5-238.5T1282 274q157 0 254.5 108t97.5 242q0 78-37.5 157t-75 111-37.5 60q0 54 110.5 115t219.5 198 109 285q0 14-1 29zm-831-125l6-54 568 460q43 58 117 132t74 159q0 62-63 129.5t-126 67.5q-37 0-66.5-26t-29.5-64q0-16 11-42t11-43l-3-16q-3-10-74-112t-128-147-76-53.5-31-8.5q-42 0-72.5 62.5T1108 2091l-56 83q-23 35-42 70l-40 70q-19 32-46.5 47t-59.5 15q-75 0-139-59.5T661 2205q0-33 35-65.5t79-30 82.5-34 82-135.5 72-159 51.5-174zm-323.5 101q-32.5-28-32.5-66 0-36 26-69.5t63-57 99-104.5l137 113-14 27q-6 12-69 98.5T836 1613q-40 0-72.5-28zM1068 559.5q-19 18.5-19 45.5 0 26 19 44.5t45 18.5q27 0 45.5-18.5T1177 605q0-27-18.5-45.5T1113 541q-26 0-45 18.5z" + }, + "children": [] + }] +}; +exports.u1F6B7 = u1F6B7; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F6B8.js b/dist/noto_emoji_regular/u1F6B8.js new file mode 100644 index 000000000..03fd13d18 --- /dev/null +++ b/dist/noto_emoji_regular/u1F6B8.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F6B8 = void 0; +var u1F6B8 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2165 1258q-2 0-5 1-8 0-17.5-9t-18.5-9q-10 0-20 17t-21 17q-13 0-21.5-9.5T2045 1253q-14 29-41 51.5t-61 38.5q24 22 47 55t42 64l75 124q58 94 82 97t56.5 32 32.5 62q0 28-26.5 50t-61.5 22q-22 0-48.5-11t-35.5-29-48-62q7 18 12.5 36.5t10.5 37.5l11 38q5 15 5 30 0 28-39 45.5t-84 32.5q-2 35-6.5 71.5t-4.5 72.5q0 50 8.5 74.5t45.5 45.5 37 60q0 40-33 62t-75 22q-101 0-111.5-131.5T1819 1995q-6 0-12 1h-29.5l-16.5-2q-10 17-57 94t-47 119q0 14 6 22l11 18q8 12 12.5 22.5t4.5 26.5q0 32-23.5 52t-57.5 20q-50 0-84-30t-34-73q0-29 10.5-59.5t22.5-59.5l34-81 44-101q-49-14-74.5-32.5T1503 1889q0-8 2-16l15-52q7-29 17-57t21-55l-8 1q-31 0-74.5-35.5T1409 1639q-12 35-41 50.5t-62 15.5q-59 0-120.5-53.5t-86-96.5-32.5-43q-3 0-4.5 3.5t-1.5 8.5q0 7 2 18l4 28 38 198q13 69 54 141.5t76.5 131.5 81.5 59h13q27 0 54 26t27 58q0 48-59 101.5t-124 53.5q-66 0-100-60.5t-89-142.5-96-151.5-92-69.5q-48 0-95.5 43.5T663 2072l-47 72q-8 11-13 19.5t-5 21.5q0 20 9.5 39t9.5 40q0 34-26.5 58t-60.5 24q-60 0-116-61t-56-119q0-83 78.5-156.5t134-166T626 1680q0-15-1-33t-1-35q0-64 15-84t15-36q0-10-4-13.5t-9-3.5q-28 0-52.5 54t-24.5 98q0 7 4 16.5t4 52.5q0 39-24.5 61t-66.5 22q-78 0-103-41.5t-25-96.5q0-69 49.5-169.5t121-177 106.5-105 35-47.5q0-23-43.5-44t-102-112.5T461 787q0-151 111-264.5T856 409q90 0 181 33.5t149.5 99T1245 663q0 5-1.5 9t-6.5 4q-3 0-7.5-2t-7.5-2q-4 0-4 5t4 14l5 13q5 23 7 47t2 48q0 93-38.5 185.5T1037 1144q8 14 45.5 55t65 91.5 58.5 92.5l23 30q23 32 52.5 62.5t51.5 42.5q6-27 33.5-42.5t71.5-15.5q39 0 65.5 19.5t31.5 55.5q13-18 48-93.5t68-98.5q-23-11-40.5-24.5T1573 1287q-10 5-20 15.5t-22 10.5q-10 0-20.5-13.5T1490 1286q-5 0-9 3l-18 15q-5 4-9 4-12 0-34-51.5t-22-126.5q0-170 120-298.5T1792 703q69 0 137 25.5t107 64.5l34 34q60 65 93 143t33 158q0 31-6 64t-19 59z" + }, + "children": [] + }] +}; +exports.u1F6B8 = u1F6B8; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F6B9.js b/dist/noto_emoji_regular/u1F6B9.js new file mode 100644 index 000000000..995ce1a88 --- /dev/null +++ b/dist/noto_emoji_regular/u1F6B9.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F6B9 = void 0; +var u1F6B9 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1879 1844q-39 50-97 50-44 0-80-29.5t-36-72.5q0-46 4.5-83.5t4.5-75.5q0-60-26.5-139.5T1599 1414q-14 0-20 5.5t-6 26.5 6 53l13 69q7 38 13 78.5t6 77.5q0 63-16 107t-27.5 62-19 87.5-7.5 142.5q0 86 10.5 137t26.5 62 41.5 38 25.5 65q0 50-34 73t-93 23q-103 0-149.5-42t-46.5-128q0-27 3-60l10-139q2-35 2-66 0-52-7.5-84.5T1300 1969t-29.5 31.5-7.5 82.5q0 31 3 66l11 141q2 34 2 61 0 85-45.5 127.5T1082 2521q-59 0-93-23t-34-73q0-38 26.5-66t41.5-39 26-60 11-140q0-182-35-243.5T990 1724q0-37 6-77.5t13-78.5l12-69q6-32 6-53t-6-26.5-20-5.5q-23 0-49.5 79.5T925 1633q0 38 4.5 75.5t4.5 83.5q0 42-35.5 72t-80.5 30q-58 0-97-49.5T682 1705q0-156 103-377.5t255-299.5l45-22q16-8 16-25 0-16-52-59t-81.5-106.5T938 668q0-157 104.5-256t257.5-99q149 0 255.5 98.5T1662 661q0 87-29.5 151.5t-81.5 109-52 59.5q0 17 17 25l45 22q152 78 254.5 299.5T1918 1703q0 91-39 141zM1209.5 691q16.5-19 16.5-45 0-27-16.5-46t-39.5-19-39 19-16 46q0 26 16 45t39 19 39.5-19zm203.5 73.5q-10-9.5-23-9.5-4 0-8 2l-9 4q-31 19-73 19-19 0-37.5-4.5T1227 761l-8-4q-5-2-9-2-13 0-22.5 9.5T1178 788q0 25 39.5 41.5T1300 846q42 0 82.5-16t40.5-42q0-14-10-23.5zm56.5-164.5q-16.5-19-39.5-19t-39 19-16 46q0 26 16 45t39 19 39.5-19 16.5-45q0-27-16.5-46z" + }, + "children": [] + }] +}; +exports.u1F6B9 = u1F6B9; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F6BA.js b/dist/noto_emoji_regular/u1F6BA.js new file mode 100644 index 000000000..3f40c0c9c --- /dev/null +++ b/dist/noto_emoji_regular/u1F6BA.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F6BA = void 0; +var u1F6BA = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1897 1814.5q-30 27.5-70 27.5-57 0-118.5-97T1603 1499t-70-149q-13 0-19 12.5t-6 32.5q0 46 26.5 127t62.5 140l34 57q16 27 27 50t11 41q0 55-64 81t-85.5 33-38.5 109.5-19.5 137.5-2.5 64q0 86 22 101.5t49.5 42 27.5 68.5-27.5 61.5-68.5 19.5q-72 0-105.5-29.5T1323 2390q0-25 2-60l5-74q2-38 4-78t2-76q0-67-9-96.5t-27-29.5-27 30-9 99q0 37 2 77.5t5 78.5l4 73q2 35 2 60 0 85-43 109.5t-96 24.5q-42 0-69-20t-27-62q0-27 13-48.5t38-40.5l28-21q11-9 16-36.5t5-63.5q0-33-3.5-74t-19.5-135.5-36.5-101-85-32.5-64.5-77q0-20 10.5-43.5T970 1722l34-58q34-57 61-138t27-132q0-20-5.5-32t-18.5-12q-27 0-72.5 151.5t-105.5 246-117 94.5q-40 0-70-27.5t-30-66.5q0-65 67.5-94.5t89.5-97 91-234 133-223 113-70 49-46.5q0-11-17.5-23.5T1151 932q-27 31-70 45.5T997 992q-36 0-61.5-11T910 950q0-21 30-50.5T970 796q0-23-2-50t-2-57q0-173 91-274t243-101 243 102 91 278q0 29-1 54t-1 48q0 79 29 106t29 48q0 20-25 31t-62 11q-41 0-84-14.5t-70-45.5q-28 15-46.5 27.5T1384 983q0 32 44.5 45t104 57 125 185.5 92 224 48 111.5 75.5 55 54 87q0 39-30 66.5zM1381.5 694q14.5 17 34.5 17t35-17 15-40q0-24-15-41t-35-17-34.5 17-14.5 41q0 23 14.5 40zm-162.5 0q14-17 14-40 0-24-14-41t-34-17-34.5 17-14.5 41q0 23 14.5 40t34.5 17 34-17zm165.5 81.5Q1374 766 1362 766q-6 0-11 2l-12 6q-7 4-16 6.5t-23 2.5-23-2.5-15-6.5l-12-6q-5-2-12-2-12 0-21.5 9.5T1207 799q0 21 29 35t64 14q33 0 64-13.5t31-35.5q0-14-10.5-23.5z" + }, + "children": [] + }] +}; +exports.u1F6BA = u1F6BA; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F6BB.js b/dist/noto_emoji_regular/u1F6BB.js new file mode 100644 index 000000000..c9f04a147 --- /dev/null +++ b/dist/noto_emoji_regular/u1F6BB.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F6BB = void 0; +var u1F6BB = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1342 264v2200q0 17-12.5 30t-29.5 13-30.5-13-13.5-30V264q0-17 13.5-30t30.5-13 29.5 13 12.5 30zm-230.5 1540q-33.5 42-81.5 42-41 0-70-26.5t-29-60.5q0-47 9-87t9-83q0-56-22-105.5t-43-49.5q-14 0-23 5t-9 26q0 29 15 106t15 129q0 80-29.5 133T823 2038q0 65 8.5 113.5t27.5 63 37 34.5 18 51q0 42-28.5 60.5T807 2379q-92 0-131-36t-39-109q0-39 7-109.5t7-117.5q0-43-6.5-70.5T619 1909t-25 27.5-6 70.5q0 27 2 57l9 119q2 29 2 51 0 73-39 109t-131 36q-49 0-77.5-18.5T325 2300q0-31 17.5-52.5T379 2213t27-62.5 8-109.5q0-155-29.5-212T355 1704q0-31 5-65.5t11-66.5l10-60q5-28 5-47 0-21-9-26t-22-5q-27 0-47 56t-20 100q0 42 9.5 82.5t9.5 86.5q0 34-29.5 60.5T207 1846q-48 0-81.5-42T92 1686q0-129 86-299.5t176.5-235T447 1082t2-13q0-16-30-38.5t-69-80T311 801q0-133 89-218t219-85 219 84.5T927 794q0 77-26 131t-69 92-43 52l1 11q1 6 92.5 71.5t177 233T1145 1686q0 76-33.5 118zm1370.5-32.5q-26 22.5-57 22.5-50 0-101.5-81t-88.5-207-60-126q-11 0-15.5 10.5t-4.5 26.5q0 46 24.5 115.5T2230 1645l28 48q13 23 22 43t9 38q0 39-46.5 61t-71 27-41 100.5T2114 2126t12 79 41.5 36 29.5 63q0 34-22.5 51t-57.5 17q-64 0-90.5-25t-26.5-87q0-40 5.5-113t5.5-132q0-47-6.5-77t-23.5-30q-19 0-24.5 29.5t-5.5 74.5q0 31 2 64l6 128q0 29 1 51 0 68-27.5 92.5T1845 2372q-36 0-59-17.5t-23-52.5q0-32 22.5-54.5t42-33.5 19.5-86q0-66-16-162.5t-35-101-72-26-53-64.5q0-18 9-38t23-43l28-48q30-50 52.5-118.5T1806 1419q0-17-5-28t-16-11q-22 0-60 128.5t-88.5 207-99.5 78.5q-32 0-58.5-23.5T1452 1716q0-54 56-76.5t78-92.5 83.5-208.5 113.5-178 89.5-50 37.5-36.5q0-10-16-20l-39-24q-23 26-59 38t-70 12q-31 0-52.5-9t-21.5-26q0-16 24.5-40t24.5-89v-42q0-21-1-46 0-158 81-238t200-80q117 0 198 78.5t81 242.5v45l-1 40q0 63 25.5 87.5t25.5 41.5-22.5 26-53.5 9q-34 0-70.5-12t-57.5-38q-24 14-39.5 24t-15.5 20q0 27 38 37t93.5 53.5 118 194.5 79 203.5 72.5 75 56 78.5q0 33-26 55.5z" + }, + "children": [] + }] +}; +exports.u1F6BB = u1F6BB; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F6BC.js b/dist/noto_emoji_regular/u1F6BC.js new file mode 100644 index 000000000..dd589bfdc --- /dev/null +++ b/dist/noto_emoji_regular/u1F6BC.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F6BC = void 0; +var u1F6BC = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2078 1415.5Q1949 1523 1786 1523q-54 0-96-13 5 22 5 33 0 8-1 15t-2 11q52 41 80.5 114t28.5 156q0 44-8.5 84t-23.5 78q56 43 87.5 93.5T1888 2197q0 80-40 129.5t-72.5 65-32.5 46.5q0 17 5 32.5t5 34.5q0 42-37.5 73t-79.5 31q-76 0-129.5-58.5T1453 2417q0-47 25-83t66-51 41-29-14-19-41-10q-54 22-118.5 34t-130.5 12q-65 0-120.5-11t-98.5-33q-24 5-35 10t-11 17q0 14 41 29.5t65.5 51 24.5 82.5q0 76-54 134t-129 58q-41 0-78.5-30t-37.5-74q0-19 4.5-34.5t4.5-31.5q0-32-32-47.5t-72.5-65T712 2197q0-54 35-107.5t94-94.5q-16-40-24.5-83.5T808 1823q0-80 27.5-158t79.5-105q5-14 8.5-28.5t3.5-26.5q-23 8-51.5 13t-60.5 5q-107 0-214.5-52.5t-157.5-143-50-161.5q0-64 40.5-100.5T548 1029q60 0 92 32.5t32 80.5q0 77 49 105t102 28q29 0 56.5-8.5T927 1250q-93-86-134.5-185.5T751 862q0-130 61.5-245.5T986 428q-29-27-45-60.5T925 305q0-24 13-45t41-21q18 0 50 27t95 48 168 21q233 0 387 159.5T1833 860q0 103-40.5 202T1667 1242l-5 4 52 18q31 11 64 11 53 0 102-29.5t49-96.5l-1-10q0-47 33-78.5t91-31.5q68 0 111.5 35t43.5 102q0 142-129 249.5zM1684 1745q-13-44-36-70-41 35-127 52.5t-247 17.5q-128 0-205.5-18.5T949 1672q-17 28-26 69t-9 82q0 153 101.5 247t261.5 94q196 0 308-90.5t112-231.5q0-53-13-97zm-670-938q-25 31-25 76t25 76 63 31q34 0 60-30.5t26-76.5-26-76.5-60-30.5q-38 0-63 31zm433 152.5q26 30.5 61 30.5 36 0 61.5-32t25.5-75-25.5-75-61.5-32q-35 0-61 30.5t-26 76.5 26 76.5zm-73.5 100Q1341 1077 1292 1077q-52 0-82.5-17.5T1167 1042q-14 0-27 10.5t-13 27.5q0 31 55 53t110 22q51 0 107.5-20.5t56.5-52.5q0-15-11.5-27.5T1416 1042q-10 0-42.5 17.5z" + }, + "children": [] + }] +}; +exports.u1F6BC = u1F6BC; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F6BD.js b/dist/noto_emoji_regular/u1F6BD.js new file mode 100644 index 000000000..d1d819a3c --- /dev/null +++ b/dist/noto_emoji_regular/u1F6BD.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F6BD = void 0; +var u1F6BD = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2037 659q31 0 52.5 21t21.5 52v807q0 30-21.5 51.5T2037 1612h-292q0 107-49.5 212.5t-130 155T1485 2083q0 60 31 76t61 37 30 64q0 49-55 58t-137.5 17-155.5 8q-63 0-130-3t-155-8q-33 0-63-19t-30-51q0-50 67-82.5t67-81.5q0-33-18.5-54t-55-39-83.5-34-107-61-98-95-49-78-42-45l-22-12q-24-12-37.5-37t-13.5-59q0-58 33.5-83t92.5-25l17 1q35 0 83-4t237-4q63 0 119-1l106-2q24 0 86-1t103-1h62l61 2q-9-12-22-34t-94-214l-126-295q-46-106-81-186.5T1131 596q0-48 24-76.5t72-28.5q36 0 67 34t47 75l25 58 155 358 21 56q15 42 38.5 97t49.5 106V732q0-31 21.5-52t51.5-21h334z" + }, + "children": [] + }] +}; +exports.u1F6BD = u1F6BD; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F6BE.js b/dist/noto_emoji_regular/u1F6BE.js new file mode 100644 index 000000000..44092a190 --- /dev/null +++ b/dist/noto_emoji_regular/u1F6BE.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F6BE = void 0; +var u1F6BE = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M920.5 601q75.5-96 189.5-96 108 0 174 69l1 9-59 144-5 4-6-2q-20-20-48-32.5t-57-12.5q-55 0-90 46.5T985 848t35.5 117 89.5 46q29 0 62.5-15.5T1228 957l6-3 5 5 53 140-1 7q-74 86-181 86-113 0-189-96t-76-248q0-151 75.5-247zM824 528q0 3 1 5l-117 635q0 2-2.5 5.5T695 1177h-92q-10 0-12-9l-66-347-67 347-3 6q-2 3-10 3h-93q-3 0-7-2.5t-5-6.5L226 546q-2-8-2-12l-1-5q0-4 4.5-7.5t9.5-3.5h115q5 0 8.5 3.5t3.5 7.5l44 298 62-298q5-11 12-11h84q2 0 7 2.5t5 8.5l62 296 42-296q2-4 5-7.5t8-3.5h116q5 0 11 6zm1478 131q31 0 52.5 21t21.5 52v807q0 30-21.5 51.5T2302 1612h-292q0 106-49 211t-130 155.5-81 104.5q0 61 30.5 76.5t60.5 36.5 30 64q0 49-55.5 58t-137 17-155.5 8q-62 0-129-3t-155-8q-34 0-64-19t-30-51q0-51 67.5-82.5t67.5-81.5q0-40-31-66.5t-119.5-58-159-101T880 1756t-53-64l-23-12q-25-13-37.5-38.5T754 1584q0-58 33.5-83t92.5-25l17 1q35 0 83-4t237-4q63 0 118-1l106-2q24 0 86-1t103-1h62l62 2q-9-12-22.5-33t-94.5-215l-60-140q-138-322-159.5-376T1396 596q0-48 24-76.5t72-28.5q31 0 63 31.5t55 84.5l52 123 71 164q47 108 82.5 201.5T1895 1275V732q0-31 21.5-52t50.5-21h335z" + }, + "children": [] + }] +}; +exports.u1F6BE = u1F6BE; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F6BF.js b/dist/noto_emoji_regular/u1F6BF.js new file mode 100644 index 000000000..8dc93e74f --- /dev/null +++ b/dist/noto_emoji_regular/u1F6BF.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F6BF = void 0; +var u1F6BF = { + "viewBox": "0 0 2648 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1870 1518q-92 109-242 109t-307.5-110.5-257-294T964 855q0-171 91-281t243-110q150 0 306 110t257 293.5 101 369.5q0 172-92 281zm737.5 111q-5.5 11-14.5 19 19 80 28.5 160t9.5 163q0 204-75 271.5t-185 67.5q-51 0-69-17t-18-40q0-25 22-101t22-196q0-34-2-67t-6-65l-14-73q-41-2-55-30t-50-91.5-50-79-49-15.5q-28 0-54 7t-51 17l-51 20q-26 11-53 17 60-60 87-108t50-117 23-164q0-178-101.5-373T1687 529t-341-123q35-8 82.5-13t89.5-5q97 0 192 20.5t204 77T2121 626t182.5 192 161.5 266.5 112.5 315T2613 1603q0 15-5.5 26zM2 1567q1-8 66.5-81.5T226 1336t186-132.5 201-97.5 170-53l41-7q23 0 37 13t14 33q0 17-11 29.5t-28 15.5q-25 0-138.5 36T450 1290t-231 173.5-121 128-51 35.5q-20 0-33.5-14T0 1581zm392.5 228Q517 1627 667 1503t262-176l36-17q10-4 18-4 17 0 31 13t14 33q0 14-7 26t-21 18q-13 0-116 62.5T666.5 1628 472 1846t-101 153.5-53 42.5q-19 0-32.5-14.5T272 1996q0-33 122.5-201zm302 460q26.5-64 80.5-173.5t134-232 152.5-203 87.5-90 28-9.5q19 0 32.5 13t13.5 33q0 21-15 35l-21 19q-58 54-149.5 179T866 2114t-97 213.5-53 50.5q-21 0-33.5-14.5T670 2332q0-13 26.5-77zm512 23.5q38.5-179.5 108-365.5t83.5-200 34-14q22 0 33.5 15t11.5 32q0 19-11.5 36t-79.5 206-100 355-32 167.5-9 10.5q-13 12-31 12-19 0-32.5-13t-13.5-32q0-30 38.5-209.5zm28-1290Q1213 961 1188 961q-18 0-27.5 12.5t-9.5 29.5q0 31 24 58t49 27q13 0 24.5-10.5t11.5-31.5q0-30-23.5-57.5zm373-137.5q9.5-12 9.5-29 0-30-23.5-57.5T1546 737q-17 0-26.5 13t-9.5 30q0 29 23 56t49 27q18 0 27.5-12zm-199 406.5Q1387 1230 1362 1230q-18 0-27 13t-9 30q0 33 24 58.5t48 25.5q13 0 24.5-10.5t11.5-31.5q0-30-23.5-57.5zm81-246Q1468 984 1443 984q-17 0-26.5 13t-9.5 30q0 31 23.5 57.5t48.5 26.5q14 0 25-11t11-31q0-30-23.5-57.5zm-165-169q9.5-12.5 9.5-29.5 0-29-23.5-56.5T1264 729q-17 0-26.5 12.5T1228 771q0 31 23.5 57.5T1300 855q17 0 26.5-12.5zm346 443Q1649 1258 1623 1258q-17 0-26 12.5t-9 30.5q0 29 23 56t48 27q17 0 27-11.5t10-30.5q0-29-23.5-56.5zm107-252Q1756 1006 1731 1006q-17 0-26.5 12.5t-9.5 29.5q0 31 23 57.5t48 26.5q17 0 27-11t10-30q0-30-23.5-57.5z" + }, + "children": [] + }] +}; +exports.u1F6BF = u1F6BF; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F6C0.js b/dist/noto_emoji_regular/u1F6C0.js new file mode 100644 index 000000000..c87cf323d --- /dev/null +++ b/dist/noto_emoji_regular/u1F6C0.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F6C0 = void 0; +var u1F6C0 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2289 1695.5q-71 35.5-86.5 111T2142 1972t-198 167q11 43 28 52t36 9q42 0 67.5 17.5t25.5 59.5q0 40-34 66.5t-82 26.5q-62 0-129-46t-105-111l-4-6q-100 23-198 29.5t-189 6.5q-51 0-101-2l-110-2q-66-2-141-9.5T853 2205q-31 62-101 113.5T615 2370q-47 0-81-26.5t-34-67.5q0-31 19.5-53.5T573 2200q35 0 55-10.5t28-50.5l-48-24q-38-19-71.5-48.5T477 2001t-37.5-59-35-107-30-89.5-10.5-14-17-14-35-19.5-33.5-26.5T256 1637q-16-29-16-80 0-66 43.5-103.5T425 1413q-74-39-123.5-116T252 1139q0-128 92-215t222-87q111 0 198.5 80.5T852 1128l-1 61q0 59 20.5 87.5T965 1321l53 12q39 9 89 32t77 48q113 2 226 2h226q46-58 100-92.5t109-34.5q59 0 117.5 34t99.5 93l101-1q98 0 147.5 38t49.5 106q0 102-71 137.5zm-37.5-177Q2233 1505 2162 1505q-20 0-103 1t-137 1l-133-1h-96q-81 0-160-1h-159q0 3 1.5 8.5t1.5 11.5q0 40-27.5 71t-113.5 33.5-148 63-122.5 83.5-118.5 23q-115 0-189.5-80.5T574 1506q-37 0-70-1.5t-64-1.5q-60 0-85 10.5t-25 41.5q0 52 28 64t66 45.5 70.5 162T628 2021t236.5 95 287.5 32h10q57 2 104.5 3.5t93.5 1.5q210 0 364.5-34.5t253-101.5 131-196.5 72-161 64.5-42 25-58.5q0-27-18.5-40.5zM960.5 522q79.5-72 113.5-72 8 0 13.5 4.5t5.5 15.5q0 28-28 80.5t-28 90.5q0 52 47 113.5t47 119.5q0 69-48.5 141.5T1004 1088q-5 0-17-8t-12-26 18.5-52 18.5-73q0-47-65.5-109.5T881 692q0-98 79.5-170zm335 4q76.5-76 116.5-76 8 0 14 4.5t6 15.5q0 26-28.5 75.5T1375 641q0 50 47.5 113.5T1470 873q0 67-48 141t-80 74q-6 0-18-8.5t-12-25.5q0-20 18.5-49.5T1349 929q0-49-65-110.5T1219 691q0-89 76.5-165zm340-3q77.5-73 113.5-73 8 0 14 4.5t6 15.5q0 28-28.5 81t-28.5 90q0 51 47.5 113t47.5 120q0 68-47.5 141t-80.5 73q-5 0-16.5-8t-11.5-25q0-18 18.5-50.5T1688 929q0-48-65-110.5T1558 689q0-93 77.5-166zM906 1503q-67 0-129 2 6 43 28.5 68t62.5 25q69 0 120-45.5t56-49.5H906z" + }, + "children": [] + }] +}; +exports.u1F6C0 = u1F6C0; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F6C1.js b/dist/noto_emoji_regular/u1F6C1.js new file mode 100644 index 000000000..d9debb9ee --- /dev/null +++ b/dist/noto_emoji_regular/u1F6C1.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F6C1 = void 0; +var u1F6C1 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2408 1591.5q-33 39.5-75.5 54T2263 1781t-91.5 197-178.5 127l8 25q6 19 20.5 30t41.5 11q53 0 75.5 24.5t22.5 57.5q0 42-36 71t-88 29q-71 0-148-56.5T1781 2177q-108 25-212.5 32.5T1365 2217q-112 0-218-6h-9q-72-2-152-9t-166-26q-31 65-108 121t-149 56q-53 0-89-29.5t-36-70.5q0-33 21.5-57.5T519 2171q49 0 63-15t25-51q-110-49-175.5-125t-94-198-71.5-138-75-55.5-32-113.5 54-113 162-39q51 0 100 2.5t102 2.5q47 0 203.5-2.5t262.5-2.5q173 0 340 2t340 2h175l72 1q75 0 136-2t117-2q108 0 163 41t55 116q0 71-33 110.5zm-105-160q-40-9.5-76-9.5-24 0-111 1.5t-146 1.5l-72-1h-175q-177 0-343.5-1.5T1043 1421q-105 0-261.5 2t-202.5 2q-54 0-105-2.5t-99-2.5q-66 0-92.5 13t-26.5 45q0 55 40.5 73t73.5 53 56 123l18 72q37 145 216.5 225.5T1141 2115h10q53 2 106.5 3t107.5 1q235 0 397.5-37.5t265.5-105 140-214.5 84-179.5 69-42 22-58.5q0-41-40-50.5zM1039 500q0 16-7 30l-15 29q-14 27-26 56t-12 61q0 56 51 123.5t51 127.5q0 45-18 86.5t-43 77.5l-14 19q-15 19-31.5 32.5T943 1156q-6 0-19-8t-13-27q0-9 3.5-19t8.5-20l10-19q6-10 12.5-29t6.5-33q0-66-71-132t-71-139q0-60 32.5-115.5T939 512l24-17q12-8 28-16t28-8q20 0 20 29zm357-22.5q6 6.5 6 22.5 0 24-30 77t-30 99q0 56 51 123.5t51 127.5q0 45-18 86.5t-43 77.5l-14 19q-18 22-33 34t-28 12q-6 0-20-8t-14-26q0-9 4-19t9-20l10-20q8-14 13-32t5-34q0-63-71-128.5T1173 730q0-60 32.5-115.5T1302 512l24-17q16-11 31-17.5t25-6.5q8 0 14 6.5zm363-1.5q6 5 6 17 0 35-30 85t-30 98q0 56 51 123.5t51 127.5q0 45-18 86.5t-43 77.5l-14 19q-18 22-33 34t-28 12q-6 0-20-8t-14-26q0-9 4-19t9-20l10-20q6-10 12.5-29t6.5-33q0-66-71.5-132T1536 730q0-57 35-116t95-102l24-17q9-6 26.5-15t28.5-9q8 0 14 5z" + }, + "children": [] + }] +}; +exports.u1F6C1 = u1F6C1; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F6C2.js b/dist/noto_emoji_regular/u1F6C2.js new file mode 100644 index 000000000..09e76781e --- /dev/null +++ b/dist/noto_emoji_regular/u1F6C2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F6C2 = void 0; +var u1F6C2 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1283 2286l1 36q0 18 5 35l4 19q2 11 2 22 0 40-63.5 50.5t-117.5 21-155 10.5q-124 0-297.5-21T488 2365q0-24 8.5-46t16.5-45q30 8 73.5 15t100.5 13l46 5q55 6 111 6 72 0 169-7l209-14q10 0 27-1t34-5zm1185-954l2 45v92l-1 23q0 26-6 34.5t-26 27.5l-53 48q-32 29-70 62l-140 123q-43 38-49.5 42t-17.5 7q0 97-76 141.5t-162 44.5q-97 0-238.5-58T1403 1837.5t-110-68.5q-14 0-17.5 20.5t-9 64-5.5 92.5q0 44 3 87t8 87l2 12v12q-9 0-16.5-1t-15.5-1q-69 0-150 8.5t-164 8.5q-43 0-88-4.5t-83-4.5q233-146 439.5-367.5T1403 1432l35 23 76 68q63 57 169.5 117t172.5 60q20 0 35.5-7t33.5-12q-38-51-58-80.5t-20-46.5q0-36 46-83.5t70-75 77.5-78 96-90.5 80.5-40q25 0 44 21t65 76q43-45 61.5-59.5t33.5-14.5q18 0 29.5 14.5t13.5 35.5l2 24q0 13 1 26 0 13 1 22zm-109-8q16 18 31 37l29 36q0-15-1-28v-26l-2-32q0-18-3-43l-21 21q-15 15-33 35zM220.5 2241q-50.5-97-50.5-236 0-78 17-154t70.5-183.5 116.5-185T500 1360t95-59l56-23q25-10 42.5-22t17.5-31q0-15-6-27.5t-15-24.5l-18-23q-10-11-17-24l-34-65q-17-33-21-78.5t-4-73.5q0-42 6.5-84t26.5-83q-20-23-20-54l9-84q10-81 52-112.5t102.5-47T941 403t224-26q178 0 301 73t123 158q0 42-43 86.5t-43 88.5q0 23 33.5 48t33.5 52q0 24-36 37.5t-99 13.5q0 117-36 185.5t-82 111.5-46 69q0 5 1 9t3 9q-6 89-111.5 237T813 1891t-274 207l2-27v-26q0-67 5-131t5-134q-18 38-33.5 58t-31 79-15.5 89q0 36 42 73.5t42 88.5q0 65-54 117.5T386 2338q-115 0-165.5-97z" + }, + "children": [] + }] +}; +exports.u1F6C2 = u1F6C2; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F6C3.js b/dist/noto_emoji_regular/u1F6C3.js new file mode 100644 index 000000000..77e4039db --- /dev/null +++ b/dist/noto_emoji_regular/u1F6C3.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F6C3 = void 0; +var u1F6C3 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1406.5 1757q-25.5 17-42.5 30l-56 40q-92 66-222 116.5T866 1994q-79 0-158-45t-79-135q0-78 43-120.5t119-42.5q20 0 44.5 10t45.5 10q57 0 158-52t181-122.5 117.5-110 37.5-75.5q0-39-56-90t-88.5-122.5T1198 919q-62 0-98-13t-36-39q0-24 35-53.5t35-46.5q0-44-45-89.5t-45-87.5q0-83 118.5-148.5T1444 376q113 0 259 35.5t211 65.5 79 114l6 35q2 21 6 34.5t4 26.5q0 19-8 35 21 43 28.5 85.5t7.5 87.5q0 88-26 150.5t-26 100.5q0 39 29 77.5t73 66.5q-100 62-195 156.5t-168 180-135.5 149.5-112.5 147q0-46-5-85.5t-8.5-68.5-19.5-29q-11 0-36.5 17zm646.5 517q51-6 91.5-12.5t78.5-15.5l17 44q8 23 8 46 0 75-182.5 95.5T1776 2452q-117 0-173.5-14t-109-20.5-52.5-47.5q0-12 2-21l5-21q2-11 4-27.5t2-42.5q17 4 34 4t26 1l46 6q23 4 46 4 70 2 140 7t139 5q60 0 119-6zm201-882q148 109 230 264.5t82 318.5q0 141-51 236t-148 95q-53 0-94-23t-58.5-52-17.5-87q0-63 42-114l18-22q8-10 8-29 0-30-6-56l-14-54q0-4-18-49t-42-74q0 4 1 11v24q0 61 5 118.5t5 117.5q0 42 3 87-10 2-17 2l-113 9q-21 2-127.5 9t-132.5 7q-69 0-136.5-5.5T1536 2115l94-118q118-149 307.5-342t246.5-223 70-40zm-907 692q28 0 35 27t7 101q0 135-60 183.5t-222 58.5-320 10q-219 0-359-16.5t-182.5-91T203 2137v-8.5l3-9.5q-93-34-134.5-84.5T30 1914q0-101 84.5-386t149-423T440 967q33 0 64 8t63 18l25 7q24 6 42.5 18.5T653 1049v6l-2 7q-12 37-22 73l-22 74q-73 245-132 445.5T342 2084h1005z" + }, + "children": [] + }] +}; +exports.u1F6C3 = u1F6C3; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F6C4.js b/dist/noto_emoji_regular/u1F6C4.js new file mode 100644 index 000000000..2698e14fb --- /dev/null +++ b/dist/noto_emoji_regular/u1F6C4.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F6C4 = void 0; +var u1F6C4 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M599 2013h-75q-91 0-157-66t-66-157V870q0-92 66-157t157-65h75v1365zM2076 648q91 0 157 65t66 157v920q0 91-66 157t-157 66h-75V648h75zm-395 0h157v1365H763V648h157V454q0-42 28-70.5t70-28.5h564q41 0 70 29.5t29 69.5v194zm-197 0v-96h-368v96h368zM271 2290q-22 22-53 22t-52.5-22-21.5-53 21.5-52.5T218 2163t53 21.5 22 52.5-22 53zm216.5 0q-21.5 22-52.5 22t-53-22-22-53 22-52.5 53-21.5 52.5 21.5T509 2237t-21.5 53zm216.5 0q-22 22-53 22t-52.5-22-21.5-53 21.5-52.5T651 2163t53 21.5 22 52.5-22 53zm216.5 0q-21.5 22-52.5 22-32 0-53.5-22t-21.5-53 21.5-52.5T868 2163q31 0 52.5 21.5T942 2237t-21.5 53zm216 0q-21.5 22-53.5 22-31 0-52.5-22t-21.5-53 21.5-52.5 52.5-21.5q32 0 53.5 21.5t21.5 52.5-21.5 53zm216 0q-21.5 22-52.5 22t-53-22-22-53 22-52.5 53-21.5 52.5 21.5 21.5 52.5-21.5 53zm216.5 0q-22 22-53 22t-52.5-22-21.5-53 21.5-52.5 52.5-21.5 53 21.5 22 52.5-22 53zm216.5 0q-21.5 22-52.5 22t-53-22-22-53 22-52.5 53-21.5 52.5 21.5 21.5 52.5-21.5 53zm216 0q-21.5 22-52.5 22t-52.5-22-21.5-53 21.5-52.5 52.5-21.5 52.5 21.5 21.5 52.5-21.5 53zm216.5 0q-22 22-53 22t-52.5-22-21.5-53 21.5-52.5 52.5-21.5 53 21.5 22 52.5-22 53zm216.5 0q-21.5 22-53.5 22-31 0-52.5-22t-21.5-53 21.5-52.5 52.5-21.5q32 0 53.5 21.5t21.5 52.5-21.5 53z" + }, + "children": [] + }] +}; +exports.u1F6C4 = u1F6C4; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u1F6C5.js b/dist/noto_emoji_regular/u1F6C5.js new file mode 100644 index 000000000..b59c8fce6 --- /dev/null +++ b/dist/noto_emoji_regular/u1F6C5.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u1F6C5 = void 0; +var u1F6C5 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M911 606l-77-77 77-78h52l51 52 52-52 52 52 51-52h195q24-77 92-127t150-50q103 0 179 76t76 179q0 102-76 178t-179 76q-82 0-150-50t-92-127H911zm747.5-26.5Q1680 601 1709 601q30 0 51.5-21.5T1782 529q0-30-21.5-51.5T1709 456t-51 21-21 52q0 29 21.5 50.5zM1987 843q83 0 143 60t60 143v1055q0 83-59.5 144t-143.5 61H614q-85 0-144.5-60.5T410 2101V1046q0-84 60-143.5T614 843h1373zm126 203q0-52-37-89t-89-37H614q-52 0-89.5 37t-37.5 89v1055q0 53 37 90t90 37h1373q52 0 89-37.5t37-89.5V1046zm-564 166h102v893H948v-893h103v-126q0-27 19-46t45-19h370q26 0 45 19t19 46v126zm-129-62h-240v62h240v-62zm-773 208q0-61 43.5-103.5T793 1212h49v893h-49q-60 0-103-43t-43-103v-601zm1160-146q60 0 103 43t43 103v601q0 59-42.5 102.5T1807 2105h-48v-893h48z" + }, + "children": [] + }] +}; +exports.u1F6C5 = u1F6C5; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u203C.js b/dist/noto_emoji_regular/u203C.js new file mode 100644 index 000000000..2cc5282ed --- /dev/null +++ b/dist/noto_emoji_regular/u203C.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u203C = void 0; +var u203C = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M819 1677q-16 0-16-14l-70-992q0-5 4-10t14-5h390q8 0 13 3.5t5 11.5l-68 992q-4 14-18 14H819zm276.5 373.5Q1151 2101 1151 2198q0 96-55 147.5T948 2397q-98 0-152.5-52T741 2198q0-100 54.5-149t152.5-49q92 0 147.5 50.5zM1526 1677q-6 0-11-4t-5-10l-70-992q0-5 4-10t14-5h390q8 0 13 3.5t5 11.5l-69 992q-2 14-17 14h-254zm276.5 373.5Q1858 2101 1858 2198q0 96-55 147.5t-148 51.5q-98 0-152.5-52t-54.5-147q0-100 54.5-149t152.5-49q92 0 147.5 50.5z" + }, + "children": [] + }] +}; +exports.u203C = u203C; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u2049.js b/dist/noto_emoji_regular/u2049.js new file mode 100644 index 000000000..5e673b5a9 --- /dev/null +++ b/dist/noto_emoji_regular/u2049.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u2049 = void 0; +var u2049 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1368 1801v-85q0-120 52.5-205.5t162-168 141.5-136 32-129.5q0-70-47.5-111T1574 925q-81 0-174.5 33t-191.5 83l-119-258q140-76 262.5-111t226.5-35q240 0 377.5 114t137.5 311q0 123-51 214t-161 179.5-157 135.5-47 141v69h-309zm317 252.5q55 50.5 55 147.5 0 96-55.5 147.5T1536 2400q-95 0-150.5-50.5T1330 2201q0-101 53-149.5t153-48.5q94 0 149 50.5zM593 1679q-8 0-13-3.5t-5-9.5l-68-992q0-6 4-11.5t12-5.5h392q8 0 13 5.5t5 11.5l-70 992q0 6-5 9.5t-13 3.5H593zm278 375.5q54 51.5 54 146.5t-56.5 147-148.5 52q-95 0-150-51.5T515 2201q0-99 52-148.5t153-49.5q97 0 151 51.5z" + }, + "children": [] + }] +}; +exports.u2049 = u2049; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u20E3.js b/dist/noto_emoji_regular/u20E3.js new file mode 100644 index 000000000..fff5a52a1 --- /dev/null +++ b/dist/noto_emoji_regular/u20E3.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u20E3 = void 0; +var u20E3 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2222 383q46 0 79 33t33 79v1845q0 45-33.5 78t-78.5 33H377q-45 0-78-33t-33-78V495q0-45 33-78.5t78-33.5h1845zM563 2147q0 7 7 7h1459q8 0 8-7V688q0-7-8-7H570q-7 0-7 7v1459zM2232 463l-10-1H377q-14 0-23.5 9.5T344 495v1845q0 8 2.5 13.5t6.5 10.5l154-155q-11-13-18-28.5t-7-33.5V688q0-36 26-62t62-26h1459q29 0 51 17z" + }, + "children": [] + }] +}; +exports.u20E3 = u20E3; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u2122.js b/dist/noto_emoji_regular/u2122.js new file mode 100644 index 000000000..b1e3bfa62 --- /dev/null +++ b/dist/noto_emoji_regular/u2122.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u2122 = void 0; +var u2122 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1177 527q11 0 18 7t7 18v219q0 11-7 18.5t-18 7.5H825v985q0 11-8 18t-18 7H574q-11 0-18-7t-7-18V797H197q-10 0-18-7.5t-8-18.5V552q0-11 8-18t18-7h980zm1251 1247q0 11-7 20t-19 9h-215q-10 0-17.5-7t-8.5-18l-42-508-163 514q-6 19-22 19h-161q-8 0-15.5-4.5T1747 1784l-162-514-42 508q0 11-8 18t-18 7h-214q-11 0-18.5-7.5t-7.5-21.5l86-1217q2-9 9-16.5t17-7.5h229q21 0 26 19l208 808 209-808q5-19 26-19h228q10 0 17.5 5t8.5 19z" + }, + "children": [] + }] +}; +exports.u2122 = u2122; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u2139.js b/dist/noto_emoji_regular/u2139.js new file mode 100644 index 000000000..994f8edac --- /dev/null +++ b/dist/noto_emoji_regular/u2139.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u2139 = void 0; +var u2139 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2262 1946.5Q2113 2204 1855.5 2353T1300 2502q-299 0-556.5-149T337 1946.5 188 1390q0-298 149-555t406-406.5T1300 279q298 0 555.5 149T2262 834.5t149 555.5q0 299-149 556.5zm-140.5-1034Q1992 691 1772 565t-472-126q-254 0-475.5 128t-349 348.5T348 1390t127.5 475.5 349 349T1300 2342q252 0 472.5-126t349.5-348.5 129-477.5q0-256-129.5-477.5zM1186 1127h228v831h-228v-831zm205.5-132q-31.5 29-91.5 29t-91.5-28-31.5-83q0-56 30.5-83.5T1300 802q59 0 91 26.5t32 84.5q0 53-31.5 82z" + }, + "children": [] + }] +}; +exports.u2139 = u2139; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u2194.js b/dist/noto_emoji_regular/u2194.js new file mode 100644 index 000000000..ae3279c70 --- /dev/null +++ b/dist/noto_emoji_regular/u2194.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u2194 = void 0; +var u2194 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1693 1189V787l877 643-877 644v-402H906v402L29 1430l877-643v402h787z" + }, + "children": [] + }] +}; +exports.u2194 = u2194; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u2195.js b/dist/noto_emoji_regular/u2195.js new file mode 100644 index 000000000..7d8034098 --- /dev/null +++ b/dist/noto_emoji_regular/u2195.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u2195 = void 0; +var u2195 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1541 1792h402l-643 877-644-877h402v-787H656l644-877 643 877h-402v787z" + }, + "children": [] + }] +}; +exports.u2195 = u2195; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u2196.js b/dist/noto_emoji_regular/u2196.js new file mode 100644 index 000000000..f221c8b57 --- /dev/null +++ b/dist/noto_emoji_regular/u2196.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u2196 = void 0; +var u2196 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M615 719l1074 166-284 284 580 578-340 340-578-580-286 288z" + }, + "children": [] + }] +}; +exports.u2196 = u2196; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u2197.js b/dist/noto_emoji_regular/u2197.js new file mode 100644 index 000000000..2a417f9a6 --- /dev/null +++ b/dist/noto_emoji_regular/u2197.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u2197 = void 0; +var u2197 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1984 717l-166 1074-284-284-578 580-340-340 580-578-288-286z" + }, + "children": [] + }] +}; +exports.u2197 = u2197; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u2198.js b/dist/noto_emoji_regular/u2198.js new file mode 100644 index 000000000..a516a97e0 --- /dev/null +++ b/dist/noto_emoji_regular/u2198.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u2198 = void 0; +var u2198 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1985 2087L911 1921l284-284-580-578 340-340 578 580 286-288z" + }, + "children": [] + }] +}; +exports.u2198 = u2198; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u2199.js b/dist/noto_emoji_regular/u2199.js new file mode 100644 index 000000000..ba3f71d7e --- /dev/null +++ b/dist/noto_emoji_regular/u2199.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u2199 = void 0; +var u2199 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M616 2088l166-1074 284 284 578-580 340 340-580 578 288 286z" + }, + "children": [] + }] +}; +exports.u2199 = u2199; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u21A9.js b/dist/noto_emoji_regular/u21A9.js new file mode 100644 index 000000000..bb48038bf --- /dev/null +++ b/dist/noto_emoji_regular/u21A9.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u21A9 = void 0; +var u21A9 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1214 1813q435 0 617-103t182-362q0-258-182.5-361T1214 884H427V554h787q583 0 856 196.5t273 597.5q0 402-275 598.5T1214 2143H865v279l-609-445 609-447v283h349z" + }, + "children": [] + }] +}; +exports.u21A9 = u21A9; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u21AA.js b/dist/noto_emoji_regular/u21AA.js new file mode 100644 index 000000000..c1282f91b --- /dev/null +++ b/dist/noto_emoji_regular/u21AA.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u21AA = void 0; +var u21AA = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1734 1813v-283l609 447-609 445v-279h-349q-579 0-854-196.5T256 1348q0-401 273-597.5T1385 554h787v330h-787q-434 0-616.5 103T586 1348q0 259 182 362t617 103h349z" + }, + "children": [] + }] +}; +exports.u21AA = u21AA; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u231A.js b/dist/noto_emoji_regular/u231A.js new file mode 100644 index 000000000..251f452fd --- /dev/null +++ b/dist/noto_emoji_regular/u231A.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u231A = void 0; +var u231A = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2177 1256v302h-125q-29 161-120.5 300T1706 2087v353H782v-353q-165-111-262.5-292T422 1407q0-203 94.5-382T782 729V374h924v353q137 94 227 232.5t119 296.5h125zM881 760.5q-172 96.5-276 270T501 1407q0 196 98 367.5T869 2048t375 102q198 0 372-101t272.5-273 98.5-369q0-199-101-372t-273.5-272-368.5-99q-191 0-363 96.5zm916 260.5l61 105-488 280q0 53-37.5 90t-88.5 37q-49 0-87.5-36.5T1118 1404l-286-166 60-104 288 166q14-8 30.5-13t33.5-5q19 0 35.5 5t30.5 13zm-518 354.5q-13-15.5-35-15.5-20 0-34 15t-14 32q0 20 14 34t34 14 34-14 14-34q0-16-13-31.5zm641-2q13 13.5 13 33.5t-13 34-33 14q-19 0-33.5-14t-14.5-34q0-19 14.5-33t33.5-14q20 0 33 13.5zM1532.5 818q14.5-14 33.5-14 20 0 33.5 14.5T1613 851q0 20-14 34t-33 14q-17 0-32.5-13t-15.5-34q0-20 14.5-34zM889 885q-14-14-14-34 0-18 13.5-32.5T922 804q19 0 33.5 13t14.5 35q0 19-14 33t-34 14q-19 0-33-14zm321-153.5q14-13.5 34-13.5t34 13.5 14 34.5q0 20-14 33t-34 13-34-13-14-33q0-21 14-34.5zM719.5 1121q-14.5 13-31.5 13-22 0-35-15.5t-13-32.5q0-21 15.5-34.5T688 1038t31.5 14 14.5 34q0 22-14.5 35zM635 1441q-14 14-34 14t-33-14-13-34 13-33.5 33-13.5 34 13.5 14 33.5-14 34zm84.5 253q14.5 13 14.5 35 0 17-12 32.5t-34 15.5q-19 0-33.5-13t-14.5-35q0-19 13.5-33.5T688 1681q17 0 31.5 13zM956 1997q-14 14-33 14-20 0-34-14t-14-32q0-20 14-34t33-14q17 0 32.5 13t15.5 33-14 34zm322 86.5q-14 13.5-34 13.5t-34-13.5-14-33.5 14-33.5 34-13.5 34 13.5 14 33.5-14 33.5zm321-152.5q14 14 14 34 0 18-14 32t-34 14q-18 0-32.5-12.5T1518 1965q0-19 14-33.5t34-14.5q19 0 33 14zm233.5-167q-15.5 13-32.5 13-22 0-35-15.5t-13-32.5q0-22 15.5-35t32.5-13q19 0 33.5 14t14.5 34q0 22-15.5 35z" + }, + "children": [] + }] +}; +exports.u231A = u231A; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u231B.js b/dist/noto_emoji_regular/u231B.js new file mode 100644 index 000000000..ceadb998a --- /dev/null +++ b/dist/noto_emoji_regular/u231B.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u231B = void 0; +var u231B = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1995 2214q42 9 69.5 42.5t27.5 78.5q0 52-36.5 88t-88.5 36H632q-52 0-88.5-37t-36.5-87q0-44 27-77t69-44q6-284 95.5-452t241-245.5T1105 1412t14-47q0-69-107.5-115t-200-130.5-149-237.5T603 503q-42-11-69-44t-27-77q0-51 37.5-87.5T632 258h1335q50 0 87.5 35.5T2092 382q0 45-27.5 78.5T1995 503q-6 293-95.5 462.5t-244.5 249-166 107.5-11 43q0 69 105.5 114t199 129 150 233.5T1995 2214zm-959-658q-122 64-166 106t-83 100.5-70.5 171T681 2211h1234q-6-268-89.5-420.5t-255-228.5-171.5-197q0-114 144-182.5t216.5-149.5T1872 825.5t45-314.5H681q3 174 40 302.5t109.5 214T1050 1182t147 183q0 51-28 93t-97 78zm485 66q124 63 173.5 117t88 147.5T1834 2141H762q14-191 75.5-307t172.5-177l66-35h445z" + }, + "children": [] + }] +}; +exports.u231B = u231B; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u23E9.js b/dist/noto_emoji_regular/u23E9.js new file mode 100644 index 000000000..6ccc1f11c --- /dev/null +++ b/dist/noto_emoji_regular/u23E9.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u23E9 = void 0; +var u23E9 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M236 798l1012 585V798l1115 645-1115 644v-584L236 2087V798z" + }, + "children": [] + }] +}; +exports.u23E9 = u23E9; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u23EA.js b/dist/noto_emoji_regular/u23EA.js new file mode 100644 index 000000000..c694a181b --- /dev/null +++ b/dist/noto_emoji_regular/u23EA.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u23EA = void 0; +var u23EA = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2363 2087l-1012-584v584L236 1443l1115-645v585l1012-585v1289z" + }, + "children": [] + }] +}; +exports.u23EA = u23EA; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u23EB.js b/dist/noto_emoji_regular/u23EB.js new file mode 100644 index 000000000..e01c7a000 --- /dev/null +++ b/dist/noto_emoji_regular/u23EB.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u23EB = void 0; +var u23EB = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M655 2506l585-1012H655l645-1115 644 1115h-584l584 1012H655z" + }, + "children": [] + }] +}; +exports.u23EB = u23EB; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u23EC.js b/dist/noto_emoji_regular/u23EC.js new file mode 100644 index 000000000..8bcbb77a9 --- /dev/null +++ b/dist/noto_emoji_regular/u23EC.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u23EC = void 0; +var u23EC = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1944 379l-584 1012h584l-644 1115-645-1115h585L655 379h1289z" + }, + "children": [] + }] +}; +exports.u23EC = u23EC; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u23F0.js b/dist/noto_emoji_regular/u23F0.js new file mode 100644 index 000000000..2c869e4f8 --- /dev/null +++ b/dist/noto_emoji_regular/u23F0.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u23F0 = void 0; +var u23F0 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1355 630q221 13 411.5 131.5t303 318T2182 1510q0 143-42.5 271.5T2021 2019l53 259q2 5 2 12t1 25q0 59-32.5 93t-96.5 34l-659-5-657 5q-64 0-97.5-33.5T501 2315q0-16 1.5-23t3.5-14l58-281q-70-106-108-228.5T418 1510q0-228 110.5-426.5t301.5-319T1244 630V505h-75V380h263v125h-77v125zm607.5 499.5Q1860 952 1681.5 849T1300 746q-204 0-382.5 102.5t-280 281T536 1510q0 207 104 384.5t280.5 279T1300 2275q205 0 382.5-103.5t280-282T2065 1510q0-203-102.5-380.5zM1359 1399q32 15 49.5 46t17.5 65q0 54-34.5 89.5T1295 1635l-140 244-106-60 143-246q-8-14-13-30.5t-5-33.5q0-34 18-62.5t47-45.5V860h120v539zm-26 145q14-14 14-34 0-18-15-33t-32-15q-20 0-34 14t-14 34q0 21 15 34.5t33 13.5q19 0 33-14zm643-1q-13 15-33 15-21 0-34.5-14t-13.5-34 13.5-34 34.5-14q17 0 31.5 14t14.5 34q0 18-13 33zm-323.5-554q-14.5 13-31.5 13-22 0-35-15.5t-13-32.5q0-23 16-34.5t33-11.5q19 0 32 13.5t13 34.5q0 20-14.5 33zm-639.5-2.5q-13 15.5-35 15.5-17 0-31.5-12.5T932 956q0-19 12.5-33.5T977 908q19 0 34 12t15 34q0 17-13 32.5zm810 236q-15-13.5-15-34.5 0-18 14-32t33-14q22 0 35 14.5t13 31.5q0 18-12.5 33t-34.5 15q-18 0-33-13.5zM776 1224q-15 12-33 12-22 0-34.5-15t-12.5-33q3-21 16-33.5t33-12.5q19 0 32.5 13.5T791 1190q0 22-15 34zm-84.5 319.5Q679 1557 660 1557q-21 0-35.5-13.5T610 1510q0-17 13.5-32.5T658 1462q20 0 33 14t13 34-12.5 33.5zm83.5 254q14 13.5 14 33.5 0 16-10 32t-35 16q-23 0-35.5-15t-12.5-30q0-19 12.5-34.5T743 1784q18 0 32 13.5zm236 304q-15 11.5-34 11.5-21 0-33-14.5t-12-33.5q0-22 14.5-34t31.5-12q18 0 33 14t15 34q0 23-15 34.5zm321 85q-15 13.5-32 13.5-20 0-34-13.5t-14-33.5 14-34 34-14 33.5 14 13.5 34-15 33.5zm320.5-154.5q14.5 13 14.5 33 0 19-12 33.5t-33 14.5q-17 0-33-11.5t-16-34.5q0-18 14-33t34-15q17 0 31.5 13zm236.5-166.5q-14 13.5-34 13.5-23 0-34-16.5t-11-35.5 14.5-31 31.5-12q19 0 33 14t14 34-14 33.5zM398.5 603.5Q428 542 485 488q-3-7-4-14t-1-14q0-32 23-56t55-24q30 0 54 21 85-40 163-40 114 0 190 67t76 88q0 4-1.5 8.5t-6.5 6.5L464 923q-8 6-12 7.5t-7 1.5q-19 0-47.5-66T369 734q0-69 29.5-130.5zM1567 531q-8-5-8-15 0-24 77-89.5t188-65.5q79 0 164 40 24-21 53-21 32 0 55 24t23 56q0 7-1 14t-4 14q57 55 86.5 116.5T2230 735q0 66-28.5 131.5T2154 932q-6 0-11-4z" + }, + "children": [] + }] +}; +exports.u23F0 = u23F0; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u23F3.js b/dist/noto_emoji_regular/u23F3.js new file mode 100644 index 000000000..8bbcb1bda --- /dev/null +++ b/dist/noto_emoji_regular/u23F3.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u23F3 = void 0; +var u23F3 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1993 2212q43 10 70.5 43.5t27.5 78.5q0 52-36 88t-88 36H633q-52 0-88.5-37t-36.5-87q0-45 27-77.5t69-42.5q7-287 98.5-454.5t241-243 162.5-103 13-47.5q0-70-106.5-115.5T813 1121 663.5 883.5 603 505q-41-10-68-42.5T508 385q0-50 36.5-87t88.5-37h1334q52 0 88 36t36 88q0 44-27.5 78t-70.5 42q-4 291-94.5 461T1655 1214t-165.5 106-12.5 46q0 68 107.5 114.5T1783 1610t147.5 232 62.5 370zm-1311-2h1233q-4-177-43-303.5T1762 1699t-217-150.5-146-182.5q0-121 171-197.5t255-229 90-425.5H682q4 270 85.5 421.5t220.5 216 174 109 35 105.5q0 119-174 196.5T768.5 1795 682 2210zm1121-292q16 46 26 103.5t15 129.5H754q4-72 14.5-129.5T795 1918h471v-552q0-68-38-128.5T1096 1129l-53-27q-27-14-55.5-31.5T930 1029h736q-47 39-191.5 116.5T1330 1366v552h473z" + }, + "children": [] + }] +}; +exports.u23F3 = u23F3; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u24C2.js b/dist/noto_emoji_regular/u24C2.js new file mode 100644 index 000000000..b61a801a0 --- /dev/null +++ b/dist/noto_emoji_regular/u24C2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u24C2 = void 0; +var u24C2 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2200 1945.5Q2059 2187 1818.5 2325T1300 2463q-284 0-526.5-143t-379-383.5T258 1421q0-272 134.5-512T771 524.5 1300 380q280 0 521 139.5T2201.5 900t139.5 521q0 283-141 524.5zm-85.5-995q-126.5-217.5-344-344T1300 480 829.5 606 485 950t-127 471q0 254 126.5 471.5t344 344T1300 2363q253 0 471-127t344-344.5 126-470.5-126.5-470.5zM1799 810q13 0 19 8t7 16l93 1109q0 9-7.5 16.5t-18.5 7.5h-230q-11 0-18-7t-8-16l-47-471-178 477q-3 7-10 12t-15 5h-172q-11 0-17-5t-8-12l-179-477-45 471q-2 9-9.5 16t-16.5 7H707q-11 0-18.5-7.5T681 1939l93-1105q0-9 7-16.5t19-7.5h247q21 0 24 18l229 742 228-742q2-8 8.5-13t15.5-5h247z" + }, + "children": [] + }] +}; +exports.u24C2 = u24C2; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u25AA.js b/dist/noto_emoji_regular/u25AA.js new file mode 100644 index 000000000..6b26c7208 --- /dev/null +++ b/dist/noto_emoji_regular/u25AA.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u25AA = void 0; +var u25AA = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1557 1662h-513v-516h513v516z" + }, + "children": [] + }] +}; +exports.u25AA = u25AA; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u25AB.js b/dist/noto_emoji_regular/u25AB.js new file mode 100644 index 000000000..95277fd47 --- /dev/null +++ b/dist/noto_emoji_regular/u25AB.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u25AB = void 0; +var u25AB = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1556 1148v513h-513v-513h513zm-97 98h-318v318h318v-318z" + }, + "children": [] + }] +}; +exports.u25AB = u25AB; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u25B6.js b/dist/noto_emoji_regular/u25B6.js new file mode 100644 index 000000000..4950c127f --- /dev/null +++ b/dist/noto_emoji_regular/u25B6.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u25B6 = void 0; +var u25B6 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2073 1432L526 2325V540z" + }, + "children": [] + }] +}; +exports.u25B6 = u25B6; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u25C0.js b/dist/noto_emoji_regular/u25C0.js new file mode 100644 index 000000000..8cc78f16d --- /dev/null +++ b/dist/noto_emoji_regular/u25C0.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u25C0 = void 0; +var u25C0 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2073 539v1785L526 1431z" + }, + "children": [] + }] +}; +exports.u25C0 = u25C0; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u25CA.js b/dist/noto_emoji_regular/u25CA.js new file mode 100644 index 000000000..441744ff3 --- /dev/null +++ b/dist/noto_emoji_regular/u25CA.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u25CA = void 0; +var u25CA = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1970 1424l-619 1010h-104L630 1427l617-1014h104zm-252 0l-418-701-418 701 418 704z" + }, + "children": [] + }] +}; +exports.u25CA = u25CA; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u25FB.js b/dist/noto_emoji_regular/u25FB.js new file mode 100644 index 000000000..f72924063 --- /dev/null +++ b/dist/noto_emoji_regular/u25FB.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u25FB = void 0; +var u25FB = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2065 632v1531H534V632h1531zm-118 118H652v1295h1295V750z" + }, + "children": [] + }] +}; +exports.u25FB = u25FB; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u25FC.js b/dist/noto_emoji_regular/u25FC.js new file mode 100644 index 000000000..88eac0084 --- /dev/null +++ b/dist/noto_emoji_regular/u25FC.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u25FC = void 0; +var u25FC = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2065 2163H534V632h1531v1531z" + }, + "children": [] + }] +}; +exports.u25FC = u25FC; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u25FD.js b/dist/noto_emoji_regular/u25FD.js new file mode 100644 index 000000000..0cd3aa56f --- /dev/null +++ b/dist/noto_emoji_regular/u25FD.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u25FD = void 0; +var u25FD = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1741 971v883H859V971h882zm-118 117H977v649h646v-649z" + }, + "children": [] + }] +}; +exports.u25FD = u25FD; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u25FE.js b/dist/noto_emoji_regular/u25FE.js new file mode 100644 index 000000000..25d5da0e8 --- /dev/null +++ b/dist/noto_emoji_regular/u25FE.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u25FE = void 0; +var u25FE = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1741 1853H859V971h882v882z" + }, + "children": [] + }] +}; +exports.u25FE = u25FE; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u2600.js b/dist/noto_emoji_regular/u2600.js new file mode 100644 index 000000000..2eb22f4f7 --- /dev/null +++ b/dist/noto_emoji_regular/u2600.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u2600 = void 0; +var u2600 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1642 1753.5Q1499 1895 1300 1895q-201 0-343-142t-142-343 142-343 343-142q199 0 342 141.5t143 343.5-143 343.5zM1195 837q-13 0-21-9.5t-8-20.5q0-7 1-9l106-284q7-19 27-19t27 19l105 284 1 9q0 11-8 20.5t-21 9.5h-209zm437 94q-9-7-9-21 0-17 17-26l274-127q4-2 12-2 11 0 20 8t9 21q0 3-1 6l-2 6-126 274q-7 14-20 17-18 0-28-9zm564 452q19 7 19 27t-19 27l-284 106-9 1q-13 0-21.5-8t-8.5-22v-208q0-11 8-20t19-9q8 0 12 1zm-244 641l2 6q0 4 1 7 0 12-8 20.5t-21 8.5q-6 0-12-3l-274-126q-17-7-17-26 0-13 9-21l146-148q9-9 22-9 17 0 26 17zm-548-41q11 0 20 9.5t9 20.5q0 7-1 11l-105 282q-3 9-10.5 14t-16.5 5-16.5-5-10.5-14l-106-282q0-3-1-10 0-12 8-21t21-10h209zm-436-93q9 8 9 21 0 8-5.5 15.5T959 1937l-273 126q-6 3-12 3-14 0-22-8t-8-21l1-7q0-3 2-6l126-274q7-17 26-17 13 0 21 9zm-282-347l-282-106q-9-3-14-10.5t-5-16.5 5-16.5 14-10.5l288-107h5q13 0 21 9.5t8 20.5v208q0 13-8 21.5t-21 8.5zm-39-747q-3-4-3-12 0-14 9.5-21.5T674 755q8 0 12 2l273 127q7 3 12.5 10t5.5 16q0 14-9 21l-148 147q-8 9-20 9-19 0-27-17z" + }, + "children": [] + }] +}; +exports.u2600 = u2600; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u2601.js b/dist/noto_emoji_regular/u2601.js new file mode 100644 index 000000000..a7d65c384 --- /dev/null +++ b/dist/noto_emoji_regular/u2601.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u2601 = void 0; +var u2601 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2048 1205q117 0 201 84t84 201q0 116-84 200t-201 84q-23 0-45-3t-43-11q-35 121-134 196t-222 75q-63 0-120-20t-103-55q-61 50-136.5 78t-160.5 28q-138 0-253-73.5T659 1793q-11 0-30 1-155 0-258.5-103.5T267 1442q0-140 98-242t236-108q12-120 104-207t218-87q41 0 78 10t70 27q52-65 127-103t165-38q115 0 210 65t137 167q23-4 54-4 116 0 200 83.5t84 199.5zm116.5 166.5Q2114 1323 2048 1323q-49 0-83.5-35t-34.5-83q0-68-49-116.5t-117-48.5q-13 0-27 2t-27 2q-77 0-111.5-76T1500 852t-137-40q-58 0-110 25t-89.5 70.5T1071 953q-27 0-66-18.5T923 916q-72 0-131 47.5t-74 141T616 1207t-138.5 48.5T402 1354q-17 42-17 88 0 97 68.5 166t171.5 69q13 0 20-2 92 0 126.5 77T893 1886.5t191 57.5q65 0 121.5-22t94.5-53 81-31q41 0 93.5 38t129.5 38 145-47 98-136 113-89q22 0 43.5 7t44.5 7q67 0 117-48t50-118-50.5-118.5z" + }, + "children": [] + }] +}; +exports.u2601 = u2601; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u260E.js b/dist/noto_emoji_regular/u260E.js new file mode 100644 index 000000000..41d44698c --- /dev/null +++ b/dist/noto_emoji_regular/u260E.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u260E = void 0; +var u260E = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2052 1756q16 45 20 91t4 92q0 40-1.5 79.5t-1.5 79.5q0 73-37 102t-122 29H679q-85 0-123-29t-38-102q0-40-1.5-79.5T515 1940q0-121 30.5-202.5T685 1291q127-34 202.5-99.5T963 1044q0-29-5.5-55T944 938q64-33 153-49.5t196-16.5q127 0 217.5 17.5T1655 938q-8 25-13.5 51t-5.5 55q0 80 73 145.5t198 99.5q35 118 72 234zm-807-457q12 10 47 10 46 0 60.5-8.5t14.5-39.5q0-26-15-36.5t-47-10.5q-51 0-61.5 10.5T1233 1257q0 32 12 42zm-1.5 152.5q12.5 12.5 68.5 12.5 33 0 45.5-11t12.5-41q0-27-15.5-39.5T1304 1360q-52 0-62.5 11t-10.5 33q0 35 12.5 47.5zm-3 167.5q13.5 13 64.5 13 40 0 54-11t14-44q0-28-16-43.5t-77-15.5q-26 0-39.5 12.5T1227 1571q0 35 13.5 48zm-166.5 77.5q-43-4.5-48-5.5-33 0-48 16.5t-15 59.5q0 26 12 37.5t42 11.5q60 0 80-12.5t20-60.5q0-42-43-46.5zm34.5-166.5q-16.5-12-65.5-12-30 0-47.5 13t-17.5 53q0 31 15.5 39.5t57.5 8.5q51 0 62.5-19t11.5-49q0-22-16.5-34zm22.5-114q0-6 1-14 0-26-19-34t-45-8q-45 0-61 12t-16 48q0 31 18.5 37.5t59.5 6.5q31 0 44.5-9.5t15.5-25.5zm-9.5-194q-16.5-8-42.5-8-39 0-57 8.5t-18 40.5q0 25 9.5 35.5t38.5 10.5q59 0 72.5-12t13.5-44q0-23-16.5-31zm255.5 541v-13q0-50-44-54t-49-5q-31 0-45 14t-14 40q0 41 11.5 56t46.5 15q66 0 80-13.5t14-39.5zm88-489q2 20 17.5 27.5t42.5 7.5q43 0 57.5-8t14.5-35q0-26-14.5-39t-51.5-13q-35 0-52 6t-17 29q0 8 1 14zm17 175q13 15 72 15 31 0 43-9.5t12-36.5-14-42.5-55-15.5q-43 0-57 7t-14 32q0 35 13 50zm8 167.5q13 15.5 68 15.5 36 0 51-9t15-40q0-37-17-51t-80-14q-13 0-31.5 7.5T1477 1560q0 41 13 56.5zm51 74.5q-26 0-41 11.5t-15 35.5q0 43 13.5 60.5t50.5 17.5q49 0 69.5-7.5t20.5-33.5q0-52-16.5-67t-43.5-15q-21 0-38-2zm753-678v18q0 97-60.5 149.5T2065 1233t-229.5-53.5T1714 1043q0-27 10.5-55t10.5-54q0-69-131-105t-313-36q-153 0-290 37T864 933q0 26 10 54.5t10 55.5q0 77-114.5 133.5T534 1233q-108 0-168.5-53T305 1031q0-255 285-410.5T1299 465q409 0 688 143.5T2292 995z" + }, + "children": [] + }] +}; +exports.u260E = u260E; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u2611.js b/dist/noto_emoji_regular/u2611.js new file mode 100644 index 000000000..5e181d862 --- /dev/null +++ b/dist/noto_emoji_regular/u2611.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u2611 = void 0; +var u2611 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2290 342q20 0 34.5 14.5T2339 391v1980q0 20-14.5 34.5T2290 2420H310q-20 0-34.5-14.5T261 2371V391q0-20 14.5-34.5T310 342h1980zm-72 120H381v1837h1837V462zM1057 2010l-610-607 153-152 457 453 943-952 153 152z" + }, + "children": [] + }] +}; +exports.u2611 = u2611; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u2614.js b/dist/noto_emoji_regular/u2614.js new file mode 100644 index 000000000..8f3f1aaf2 --- /dev/null +++ b/dist/noto_emoji_regular/u2614.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u2614 = void 0; +var u2614 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1401 801q234 19 433 119.5t313.5 262T2262 1528q0 51-6.5 74t-35.5 23q-22 0-41-26.5t-85.5-65T1941 1495q-71 0-131 27.5t-99 68-51.5 67.5-38.5 27q-28 0-42-30.5t-61-75-115-66.5v584q0 142-102.5 244.5T1055 2444q-94 0-175-48t-123-122-42-117q0-39 28-68.5t71-29.5q31 0 58.5 19.5T911 2140t51.5 75 92.5 33q62 0 106.5-44.5T1206 2097v-587q-74 22-124 69.5t-62.5 76T979 1684q-27 0-38.5-26.5t-51-67-100.5-68-130-27.5q-83 0-148.5 36.5t-86.5 65-44 28.5-32.5-26-9.5-71q0-184 115-345t315.5-263T1208 801l15-211q2-31 25.5-51.5T1307 518q31 0 53.5 20.5T1385 590zm269.5 206q-14.5 19-51.5 105t-37 148q0 48 34.5 82.5t82.5 34.5 82.5-34.5 34.5-82.5q0-58-43.5-165T1699 988q-14 0-28.5 19zm124-561.5Q1838 340 1868 340q29 0 72.5 107.5T1984 612q0 48-34 82.5t-82 34.5q-49 0-83-34t-34-83q0-61 43.5-166.5zM615 481q30-76 49.5-108.5T702 340q30 0 73.5 107T819 612q0 46-33.5 81.5T702 729t-83.5-35.5T585 612q0-55 30-131z" + }, + "children": [] + }] +}; +exports.u2614 = u2614; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u2615.js b/dist/noto_emoji_regular/u2615.js new file mode 100644 index 000000000..c59d1f416 --- /dev/null +++ b/dist/noto_emoji_regular/u2615.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u2615 = void 0; +var u2615 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1848 1346q197 21 276 94t79 208q0 71-25 131.5t-72.5 117T1993 1996t-137 69-131.5 32-82 26.5-34.5 28.5l-49 31q-100 60-194.5 84.5T1166 2292q-195 0-322.5-54T617 2081t-155-221.5-56-295.5q0-132 46-216t152.5-161 237-104.5T1156 1055q189 0 342 59.5t247 154.5l64 65q8 8 19 9zm211.5 168.5q-44.5-50.5-129-69.5t-135.5-21-77.5-46.5T1610 1276t-208.5-94.5T1121 1144q-289 0-449.5 105.5T511 1575q0 237 163 428.5t494 191.5q88 0 204.5-37t183.5-87.5 74.5-50.5 76-9 147.5-44 140.5-92.5T2080 1759t24-100q0-94-44.5-144.5zm-613 100Q1324 1691 1117 1691q-108 0-217-26.5t-173.5-87T662 1445q0-108 137.5-179t359.5-71q180 0 295 76t115 167q0 100-122.5 176.5zm454.5 222q-92 85.5-209 85.5-27 0-27-11 0-10 26.5-75.5t47-169T1759 1553q0-5 2-7 2-6 13-8t25-2q109 0 151.5 32.5t42.5 92.5q0 90-92 175.5zm-23-199.5q-19-15-38-15-5 0-13 2-2 19-9 53l-15 65q-4 17-10 33.5t-11 33.5l-2 5q-2 3-2 6 0 6 8 6t21.5-9 23.5-17l8-7q22-19 40-49t18-65q0-27-19-42zM1560 539q63 10 126 10 100 0 172.5-38t97.5-105 59-67q21 0 33.5 56t12.5 116q0 169-99 277.5T1688 897q-51 0-129.5-11.5T1429 874q-112 0-206 27t-145 75l-25 23q-14 14-30 14-22 0-31-18.5t-9-53.5q0-120 60.5-220.5t174-146T1434 529q63 0 126 10zm-503 368q45-45 118-87t212-42q52 0 145.5 14.5T1681 807q95 0 167-49t106-125 34-111q0-12-6-12t-25.5 29-82 61.5T1723 633q-69 0-136.5-10T1450 613q-127 0-213.5 40.5t-134 123.5-47.5 123q0 7 2 7z" + }, + "children": [] + }] +}; +exports.u2615 = u2615; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u261D.js b/dist/noto_emoji_regular/u261D.js new file mode 100644 index 000000000..c819134b6 --- /dev/null +++ b/dist/noto_emoji_regular/u261D.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u261D = void 0; +var u261D = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2000.5 1582.5q-36.5 104.5-107 185.5t-148 123-102 65.5-32 40-11.5 78.5q45 0 61 24t16 119v34l-1 12v14l29 2q23 2 44.5 17t25.5 47.5 4 57.5l-1 28v43q0 23-1 49l-999-2 4-128q0-23 3-41l2-26q4-61 14.5-76t50.5-18h13q4-38 11.5-77.5T893 2079t46-35h8l21 3q-20-82-76-115.5t-106.5-97-90.5-189-61-177.5l-36-84q-16-37-25.5-71.5T563 1237q0-89 64-155.5t151-66.5l19 1q8 0 17-3t30.5-55 71-79 97.5-27q14 0 25.5 3t20.5 3q19 0 37-28t69-60.5 113-32.5q21 0 39.5 2.5t34.5 7.5l2-132 1-254q5-99 70-170.5t163-71.5q116 0 189.5 71t73.5 177q0 10-2 53l-5 106-7 134q-4 72-7 139l-9 202q0 22 31 53 80 30 132.5 100.5T2037 1369q0 109-36.5 213.5zM1475 941l12 39 11 43q37-6 79-6 25 0 43 1t33 2l54 7 1-41q0-32 4-79l5-103 10-228q0-30 3.5-90t4.5-83l1-34q0-63-40.5-99.5T1595 233q-50 0-81 37.5t-34 92.5zm-308.5 29.5q2.5 12.5 11.5 42.5l14 54q26 99 55.5 186t97.5 87q22 0 36.5-8.5t23.5-19.5q-32-23-45-59t-13-83q0-42 15-69t42-44q-2-8-22.5-108T1266 849q-49 0-75.5 27.5T1164 945q0 13 2.5 25.5zm-276 137Q893 1118 903 1145l19 47q10 26 22.5 54.5T970 1301l23 47q23 48 46.5 61.5t49.5 13.5q33 0 62.5-22.5t29.5-56.5q0-13-4-26l-35-119q-21-68-47-148t-102-80q-51 0-78 29.5t-27 78.5q0 18 2.5 28.5zM905 1502q32-22 32-57 0-13-6-28l-84-210q-14-34-38.5-48.5T758 1144q-47 0-71.5 28t-24.5 74 41.5 125.5 65 116T835 1524q38 0 70-22zm683 756q0-57-4.5-69t-23.5-12q-48 0-113-2t-128-5l-237-11q-47-2-61-3l-16-1q-20 0-25.5 18.5T971 2205l-7 29q-3 14-4 21l42 5q89 11 309.5 19t239.5 8l37 1v-30zm273.5-1078.5Q1799 1128 1728 1125q-15 0-35-3l-44-5q-24-3-50-5.5t-51-2.5q-58 0-88.5 23.5T1429 1202q0 62 65 100.5t125 38.5q8 0 11-1-3 8-12 49.5t-9 71.5q-70 17-130.5 42t-98.5 63l-28 28q-12 13-22.5 21.5t-21.5 8.5q-22 0-22-22 0-23 24-76t36-73l-9 2q-5 0-17 1-22 0-39-5t-29-11q-7 8-39.5 48t-103.5 40q-27 0-50.5-4.5t-31.5-9.5q-7 42-46.5 76T855 1624q-11 0-15-1 8 82 40 128.5t90.5 90 81 95T1080 2061q61 7 193 13.5t224 6.5l5-52q7-80 60.5-131t141-104 154-166 66.5-255-62.5-193.5z" + }, + "children": [] + }] +}; +exports.u261D = u261D; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u263A.js b/dist/noto_emoji_regular/u263A.js new file mode 100644 index 000000000..f7d0902ed --- /dev/null +++ b/dist/noto_emoji_regular/u263A.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u263A = void 0; +var u263A = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2108.5 1900Q1983 2117 1766 2242.5T1300 2368t-466-125.5T491.5 1900 366 1434t125.5-466T834 625.5 1300 500t466 125.5T2108.5 968t125.5 466-125.5 466zM2007 1027q-110-190-300-300t-407-110q-213 0-402 106.5t-302 297T483 1434q0 220 110 408.5T891.5 2141t408.5 110q223 0 413.5-113t297-302 106.5-402q0-217-110-407zM876.5 1136q40.5-50 98.5-50t99 49.5 41 117.5q0 69-41.5 117.5T975 1419t-98-48.5-41-117.5q0-67 40.5-117zm648 0q40.5-50 98.5-50t99 49.5 41 117.5q0 69-41.5 117.5T1623 1419t-98-48.5-41-117.5q0-67 40.5-117zm211.5 640q-96 107-214 147t-222 40q-106 0-222.5-40T864 1777t-97-184q0-20 12.5-34t35.5-14q34 0 96 67.5t163 115 226 47.5q120 0 221-45t165-115 98-70q20 0 34 12.5t14 35.5q0 76-96 183z" + }, + "children": [] + }] +}; +exports.u263A = u263A; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u2648.js b/dist/noto_emoji_regular/u2648.js new file mode 100644 index 000000000..915b5d582 --- /dev/null +++ b/dist/noto_emoji_regular/u2648.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u2648 = void 0; +var u2648 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2246 1202.5q-25 89.5-72 147.5l-212-174q10-12 22.5-53t12.5-81q0-114-83.5-194T1718 768q-115 0-197.5 81.5T1438 1046v1292h-275V1046q0-114-82-196t-196-82q-115 0-197.5 80.5T605 1042q0 43 12 81.5t24 52.5l-214 174q-47-58-72-144.5T330 1046q0-228 163.5-390.5T885 493q125 0 231.5 51T1301 682q77-87 184.5-138t232.5-51q236 0 394.5 156t158.5 397q0 67-25 156.5z" + }, + "children": [] + }] +}; +exports.u2648 = u2648; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u2649.js b/dist/noto_emoji_regular/u2649.js new file mode 100644 index 000000000..b31b0635e --- /dev/null +++ b/dist/noto_emoji_regular/u2649.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u2649 = void 0; +var u2649 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1739 1096q136 101 216 256t80 332q0 198-102 370.5t-272.5 268T1300 2418q-191 0-361-95t-272.5-267.5T564 1684q0-177 80-332t216-256Q724 994 644 839t-80-331h296q0 183 130 311.5T1300 948t310-128.5T1740 508h295q0 176-80 331t-216 257zm-129.5 276Q1479 1242 1300 1242t-309.5 130T860 1684q0 181 130 310t310 129 310-129 130-310q0-182-130.5-312z" + }, + "children": [] + }] +}; +exports.u2649 = u2649; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u264A.js b/dist/noto_emoji_regular/u264A.js new file mode 100644 index 000000000..940bc6852 --- /dev/null +++ b/dist/noto_emoji_regular/u264A.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u264A = void 0; +var u264A = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2119 812q-56 14-130 28.5T1825 869v1112q90 14 164 28t130 28v304q-158-43-379-73.5t-440-30.5-440.5 30.5T480 2341v-304q57-14 130.5-28t163.5-28V869q-90-14-163.5-28.5T480 812V510q199 50 410.5 76t409.5 26 409-26 410-76v302zm-589 87q-54 4-112 6t-118 2q-61 0-118-2t-113-6v1052q56-5 113-6.5t118-1.5q60 0 118 1.5t112 6.5V899z" + }, + "children": [] + }] +}; +exports.u264A = u264A; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u264B.js b/dist/noto_emoji_regular/u264B.js new file mode 100644 index 000000000..673194ff1 --- /dev/null +++ b/dist/noto_emoji_regular/u264B.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u264B = void 0; +var u264B = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M884 2217q-209-45-432-144l130-264q172 75 355.5 117t362.5 42q69 0 138-10t136-27q-93-62-149-164.5t-56-219.5q0-190 136.5-326t324.5-136q190 0 326 136t136 326q0 200-130 362.5T1796.5 2167t-496.5 95q-207 0-416-45zm828-553q49 50 118 50 70 0 119-50t49-117q0-66-49-116.5t-119-50.5-118.5 50.5T1663 1547q0 67 49 117zM443.5 866.5q136.5-163.5 369-255T1300 520q211 0 432.5 50T2148 709l-131 264q-238-98-402-128.5T1300 814q-70 0-139 10t-135 27q95 64 149.5 166t54.5 218q0 190-136 326t-324 136q-189 0-326-136t-137-326q0-205 136.5-368.5zm443.5 250q-49-48.5-117-48.5-70 0-118.5 48.5T603 1235q0 68 48.5 117.5T770 1402q69 0 117.5-49.5T936 1235q0-70-49-118.5z" + }, + "children": [] + }] +}; +exports.u264B = u264B; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u264C.js b/dist/noto_emoji_regular/u264C.js new file mode 100644 index 000000000..8e4c6e619 --- /dev/null +++ b/dist/noto_emoji_regular/u264C.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u264C = void 0; +var u264C = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2229 2396q-113 75-249 75-196 0-323.5-145.5T1529 1956q0-123 26-266.5t96-325.5 70-334q0-153-89-237.5T1399 708q-132 0-227 95t-95 227l1 29q2 43 21.5 114.5t63.5 148 73 174.5 29 202q0 185-131.5 316.5T818 2146q-186 0-317-133t-131-315q0-183 132-314.5T815 1252q-16-58-24-110t-8-90l-1-24q0-253 182-434t435-181q270 0 443 172.5t173 444.5q0 216-95.5 457t-95.5 463q0 100 40 163t116 63q46 0 85-24zM925.5 1591.5Q881 1546 818 1546q-64 0-108.5 45.5T665 1698q0 63 44.5 108.5T818 1852q63 0 107.5-45.5T970 1698q0-61-44.5-106.5z" + }, + "children": [] + }] +}; +exports.u264C = u264C; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u264D.js b/dist/noto_emoji_regular/u264D.js new file mode 100644 index 000000000..6e5963435 --- /dev/null +++ b/dist/noto_emoji_regular/u264D.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u264D = void 0; +var u264D = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1784 2063q36 23 95.5 37t146.5 14v294q-146 0-249-29.5t-162-73.5-73-63l-10-12q-195 107-443 189l-92-279q128-43 231.5-88.5T1418 1957q-8-51-9-101.5t-1-93.5V807q0-46-32.5-77.5T1300 698q-45 0-77.5 31.5T1190 807v855H896V807q0-46-32.5-77.5T788 698q-46 0-77.5 31.5T679 807v855H385V807q0-166 119-284.5T788 404q73 0 138 24t118 68q53-44 118-68t138-24q153 0 269 104t132 259q52-15 111-15 183 0 293 111t110 292q0 281-107 507t-324 401zm-81-912v589q108-114 163-257t55-328q0-47-32.5-78t-76.5-31q-45 0-77 30t-32 75z" + }, + "children": [] + }] +}; +exports.u264D = u264D; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u264E.js b/dist/noto_emoji_regular/u264E.js new file mode 100644 index 000000000..7ca60fdc3 --- /dev/null +++ b/dist/noto_emoji_regular/u264E.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u264E = void 0; +var u264E = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2133 1610v295h-692v-306q129-44 212.5-159t83.5-255q0-180-128.5-308.5T1300 748 991.5 876.5 863 1185q0 142 83.5 256.5T1158 1599v306H466v-295h238q-65-92-100-199.5T569 1185q0-195 97-363.5t266-268 368-99.5q300 0 516 216t216 515q0 118-36 225.5T1895 1610h238zm0 417v294H466v-294h1667z" + }, + "children": [] + }] +}; +exports.u264E = u264E; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u264F.js b/dist/noto_emoji_regular/u264F.js new file mode 100644 index 000000000..de1978c7d --- /dev/null +++ b/dist/noto_emoji_regular/u264F.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u264F = void 0; +var u264F = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1888 2444v-277h-110q-169 0-292-122.5T1363 1751V912q0-51-35.5-86.5T1241 790t-86.5 35.5T1119 912v896H825V912q0-50-35.5-86T704 790q-51 0-86.5 36T582 912v896H288V912q0-172 122-294t294-122q76 0 145 26t124 73q54-47 122-73t146-26q172 0 294.5 123T1658 912v839q0 50 35.5 86t84.5 36h110v-278l424 424z" + }, + "children": [] + }] +}; +exports.u264F = u264F; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u2650.js b/dist/noto_emoji_regular/u2650.js new file mode 100644 index 000000000..bfbd27c16 --- /dev/null +++ b/dist/noto_emoji_regular/u2650.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u2650 = void 0; +var u2650 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2117 614v1092h-276v-622l-622 622 259 259-194 195-259-260-347 348-195-195 347-347-259-260 195-193 259 259 622-622h-622V614h1092z" + }, + "children": [] + }] +}; +exports.u2650 = u2650; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u2651.js b/dist/noto_emoji_regular/u2651.js new file mode 100644 index 000000000..06d8ef7c1 --- /dev/null +++ b/dist/noto_emoji_regular/u2651.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u2651 = void 0; +var u2651 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2105.5 2068.5Q1962 2212 1763 2212q-75 0-142-21t-125-58q-60 121-179.5 194t-257.5 73v-276q88 0 152-64t64-152v-903q0-88-64-152t-152-64q-89 0-153 63.5T842 1005v721H567v-721q0-88-64-152t-152-64V513q104 0 195 41t158 111q68-70 158.5-111t196.5-41q202 0 347 145t145 347v282q48-23 101-35.5t111-12.5q200 0 343 143.5t143 343.5q0 199-143.5 342.5zm-193-492.5q-61.5-63-149.5-63-89 0-150.5 62.5T1551 1726q0 86 61.5 148.5T1763 1937q88 0 149.5-62.5T1974 1726q0-87-61.5-150z" + }, + "children": [] + }] +}; +exports.u2651 = u2651; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u2652.js b/dist/noto_emoji_regular/u2652.js new file mode 100644 index 000000000..d4b89c2c6 --- /dev/null +++ b/dist/noto_emoji_regular/u2652.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u2652 = void 0; +var u2652 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1948 1513l252 173v320l-7 10-245-169-323 222-322-222-324 222-323-222-245 169-11-17v-309l256-177 323 223 324-223 322 223zm252-554v321l-7 10-245-170-323 223-322-223-324 223-323-223-245 170-11-17V962l256-175 323 222 324-222 322 222 323-222z" + }, + "children": [] + }] +}; +exports.u2652 = u2652; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u2653.js b/dist/noto_emoji_regular/u2653.js new file mode 100644 index 000000000..8358bd45f --- /dev/null +++ b/dist/noto_emoji_regular/u2653.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u2653 = void 0; +var u2653 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2166 1561h-336q16 199 71.5 401.5T2040 2336h-324q-74-181-122-382.5t-60-392.5h-483q-13 198-61 399t-122 376H546q78-160 135.5-365t73.5-410H434v-295h321q-16-198-71.5-400T546 491h322q78 188 124 385.5t59 389.5h483q12-185 58-382t124-393h324q-88 185-141.5 384t-68.5 391h336v295z" + }, + "children": [] + }] +}; +exports.u2653 = u2653; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u2660.js b/dist/noto_emoji_regular/u2660.js new file mode 100644 index 000000000..35b63bc71 --- /dev/null +++ b/dist/noto_emoji_regular/u2660.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u2660 = void 0; +var u2660 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1319 480l48 28q200 120 403 302t314 375 111 377q0 191-138 329t-329 138q-87 0-164-29t-139-82q25 153 74 282.5t59 139.5q2 5 3.5 10.5t1.5 10.5q0 15-11.5 26.5T1523 2399h-447q-16 0-28-11.5t-12-26.5 15-40.5 56-139.5 67-263q-62 53-139 82t-162 29q-193 0-331-138t-138-329q0-190 117-386.5T839.5 801 1233 508l48-28 9-4q4-2 9-2t10 2z" + }, + "children": [] + }] +}; +exports.u2660 = u2660; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u2663.js b/dist/noto_emoji_regular/u2663.js new file mode 100644 index 000000000..8ab9c8cdb --- /dev/null +++ b/dist/noto_emoji_regular/u2663.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u2663 = void 0; +var u2663 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2117.5 1945Q1980 2083 1786 2083q-104 0-194.5-42.5T1437 1926q21 103 50 187.5t56 140.5l15 32q2 4 3.5 9t1.5 10q0 17-11.5 27.5T1523 2343h-448q-14 0-26.5-10.5T1036 2305q0-13 18-46t50.5-124 58.5-209q-65 72-155 114.5T812 2083q-192 0-329.5-138T345 1615t138.5-330T812 1147q34 0 66 6-22-47-34.5-97.5T831 950q0-191 138-329.5T1300 482q191 0 329 137.5T1767 950q0 108-46 203 33-6 65-6 192 0 330.5 138t138.5 330-137.5 330z" + }, + "children": [] + }] +}; +exports.u2663 = u2663; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u2665.js b/dist/noto_emoji_regular/u2665.js new file mode 100644 index 000000000..84e4a3594 --- /dev/null +++ b/dist/noto_emoji_regular/u2665.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u2665 = void 0; +var u2665 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2074.5 1479.5Q1973 1663 1775 1845t-409 309l-47 28q-8 6-19 6-12 0-19-6l-47-28q-201-119-402-302t-305-368.5T423 1123q0-187 135-322.5T882 665q134 0 249 74.5T1300 935q56-124 170.5-197t247.5-73q190 0 324 135.5t134 322.5q0 173-101.5 356.5z" + }, + "children": [] + }] +}; +exports.u2665 = u2665; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u2666.js b/dist/noto_emoji_regular/u2666.js new file mode 100644 index 000000000..29f4524f3 --- /dev/null +++ b/dist/noto_emoji_regular/u2666.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u2666 = void 0; +var u2666 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2093 1400q8 11 8 25 0 6-1.5 12.5t-6.5 11.5l-763 976q-11 15-30 15t-32-15l-761-976q-5-5-6.5-11.5T499 1425q0-14 8-25l761-975q5-8 14-11t18-3q8 0 16.5 3t13.5 11z" + }, + "children": [] + }] +}; +exports.u2666 = u2666; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u2668.js b/dist/noto_emoji_regular/u2668.js new file mode 100644 index 000000000..95e52e3de --- /dev/null +++ b/dist/noto_emoji_regular/u2668.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u2668 = void 0; +var u2668 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M831 1817q12-25 21.5-74.5T862 1625q0-149-49.5-309.5T763 1034q0-131 53-230t136-153 107-54q8 0 14.5 4.5t6.5 14.5q0 14-11 19-11 0-38 53.5T1004 854q0 137 42 302t42 273q0 155-64.5 268.5T847 1865q-2 0-4.5 1t-4.5 1q-8 0-14-6t-6-14 4-13zm361-500q-49-159-49-282 0-130 52.5-230t135-154 108.5-54q9 0 14.5 6t5.5 14q0 13-18.5 25.5t-38.5 65-20 147.5q0 138 42 301.5t42 274.5q0 127-44 227.5T1308.5 1813t-90.5 54q-9 0-15.5-6.5t-6.5-15.5q0-6 9.5-20.5t22.5-67.5 13-132q0-149-49-308zm388 517q16-32 28.5-84t12.5-123q0-147-50-307t-50-286q0-130 52.5-229T1709 651.5t108-54.5q9 0 15.5 5.5t6.5 14.5q0 11-18 23t-38.5 64.5T1762 854q0 137 41.5 299.5T1845 1429q0 131-45.5 230.5T1686 1812t-82 53q-2 0-4 1t-4 1q-7 0-13.5-6t-6.5-14 4-13zm524 208.5Q1980 2173 1765.5 2249t-465.5 76-466-76.5-339-207T371 1761q0-79 33-150t92-131.5 72-65 23-4.5q14 0 24 9t10 24q0 16-31.5 72.5T562 1640q0 181 217 312t521 131q199 0 373.5-61.5t270-164T2039 1640q0-51-20-97.5t-31.5-62.5-11.5-37q0-15 9-24t23-9q41 0 130.5 111t89.5 240q0 151-124 281.5z" + }, + "children": [] + }] +}; +exports.u2668 = u2668; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u267B.js b/dist/noto_emoji_regular/u267B.js new file mode 100644 index 000000000..dbc8d47e5 --- /dev/null +++ b/dist/noto_emoji_regular/u267B.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u267B = void 0; +var u267B = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1196.5 728q11.5-6 31.5-6h17q4 0 25.5-1t53.5-1h172q44 2 68.5 17t63.5 76l43 65 20 30q21 35 37.5 50.5T1761 974q8 0 39-18.5t56-18.5q14 0 23 9t9 32q0 12-2 25l-4 24q-8 64-21.5 124t-22.5 110.5-80 50.5l-58-1q-112 0-205-15.5t-93-46.5q0-26 45.5-58t45.5-54q0-31-54-83t-148-169.5-100-120-6-16.5 11.5-20zm75 361q-41.5 48-91 120t-83.5 72q-12 0-56.5-29.5T943 1181l-27-19q-35-24-52.5-43t-18.5-37q0-39 32.5-82T969 860.5t98-96.5q34 0 99 64.5T1272 936t41 71q0 34-41.5 82zM761 1833l-26 73q-24 66-40 97t-26 31q-6 0-15-10t-18-25l-8-13q-38-50-71.5-113.5t-53-97T484 1708l2-22q2-19 38-94.5t37-77.5l16-30q8-15 13.5-28.5t5.5-25.5q0-13-15-22l-32-19q-18-10-33-22.5t-15-31.5q0-36 130-76t142-47 49-7q31 0 58.5 26t55.5 92l34 79q8 22 30.5 80.5t22.5 78.5q0 17-9 28t-28 11q-18 0-51.5-16t-48.5-16q-27 0-49.5 68t-28.5 74.5-47 122.5zm413 183q-15 99-26.5 123t-52.5 24q-67 0-136-4.5t-137-9.5q-34 0-58-10t-24-38q0-69 23.5-138.5t45.5-127 58-57.5q11 0 23 1l21 3q176 20 227 25t51 48q0 62-15 161zm885.5-178q-27.5 54-46.5 82.5t-41.5 75.5-46.5 69.5-87 26.5-95.5 6-84 9-63.5 19q-8 8-8 23l1 39v22q0 21-8 35t-22 14q-18 0-24.5-7.5t-112-98.5-123.5-120.5-18-49.5q0-25 58-103.5t105-139.5 80-61q17 0 23.5 10.5t6.5 26.5q0 9 1.5 16.5t1.5 30.5q0 31 9.5 47.5t34.5 16.5q43 0 122.5-13.5T1876 1787l73-12q35-6 64.5-10t44.5-4q11 0 20 2.5t9 11.5-27.5 63zm18-153q-37.5 21-94 33.5T1891 1743t-74 12q-26 0-63.5-58t-54.5-108.5-33-82.5q-14-28-14-61 0-31 101-71.5t105-42.5l48-18q25-9 41-9 42 0 80 90.5t63 148.5 25 91q0 30-37.5 51z" + }, + "children": [] + }] +}; +exports.u267B = u267B; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u267F.js b/dist/noto_emoji_regular/u267F.js new file mode 100644 index 000000000..5a9b8e4f6 --- /dev/null +++ b/dist/noto_emoji_regular/u267F.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u267F = void 0; +var u267F = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1541 1979l66-4q-24 209-182.5 350T1057 2466q-226 0-389-163t-163-389q0-200 130.5-354.5T962 1371q3 65 11 128t26 124q-104 22-171 104t-67 187q0 122 87.5 209.5T1057 2211q107 0 189.5-68.5T1349 1971q33 6 64.5 8t59.5 2q35 0 68-2zm327 270q-25-83-44-166.5t-49.5-155T1642 1856q-40 0-80.5 3.5t-86.5 3.5q-168 0-240-62.5T1120 1618t-43-395q0-131 41.5-205t117.5-74q70 0 110.5 28t94.5 100.5 134.5 114.5 169 61.5 137 32T1984 1332t54 91q0 31-17 49t-43 18q-49 0-86.5-26t-91.5-29-110-10.5-138-48.5l-30-14q-12-6-17-6-9 0-9 14 2 94 17 130t50 61.5 137 40.5 154 45.5 83.5 88.5 43.5 114l5 29q32 206 60 228t69.5 21 70 20.5 28.5 55.5q0 52-71 90t-144 38q-106 0-131-83zM1054.5 481q65.5-65 154.5-65 91 0 156.5 65t65.5 156q0 92-64.5 157T1209 859q-88 0-154-65t-66-157q0-91 65.5-156z" + }, + "children": [] + }] +}; +exports.u267F = u267F; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u2693.js b/dist/noto_emoji_regular/u2693.js new file mode 100644 index 000000000..4bf6c51e2 --- /dev/null +++ b/dist/noto_emoji_regular/u2693.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u2693 = void 0; +var u2693 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2204 1860q-18 0-41-23.5t-41-23.5q-24 0-29.5 26t-57 129.5T1896 2170t-206 157-250 84.5-260.5 3.5-242.5-74-200-135-146-189q-50-85-69.5-144.5T478 1813q-18 0-41 23.5t-41 23.5q-34 0-34-35 0-28 16.5-84t37.5-113l18-47q12-31 32.5-49t45.5-18q31 0 70.5 24.5t77.5 50 73 57.5 35 50q0 32-53 32-24 0-39.5 3.5T660 1752q0 50 130 184.5t250 134.5q57 0 83-36.5t30-89.5l7-72 29-245 4-30q2-15 2-31 0-67-82-90t-151-34-69-70q0-41 24-58.5t120-17.5q119 0 151.5-20t32.5-111q0-31-11-51.5t-33-33.5l-29-15q-93-48-145-127t-52-173q0-129 103.5-216.5T1300 462t245 87 103 215q0 126-62 198.5t-134.5 104-72.5 98.5q0 18 3 36l4 35q4 30 42 45.5t136 15.5q90 0 116 18.5t26 57.5q0 58-62.5 68.5T1529 1466t-88 32.5-36 70.5q0 18 2.5 31.5t3.5 27.5l27 245 7 71q5 51 31 89t83 38q64 0 143-48t135-115l22-25q28-33 53.5-71t25.5-60q0-15-13-19.5t-40-4.5q-25 0-40-7t-15-24q0-26 64.5-74.5t113-78.5 78.5-30q60 0 106 133t46 179q0 34-34 34zm-809-990q39-40 39-95 0-56-39-95t-95-39-95 39-39 95q0 55 39 95t95 40 95-40z" + }, + "children": [] + }] +}; +exports.u2693 = u2693; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u26A0.js b/dist/noto_emoji_regular/u26A0.js new file mode 100644 index 000000000..206d62bfb --- /dev/null +++ b/dist/noto_emoji_regular/u26A0.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u26A0 = void 0; +var u26A0 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2414 2338q8 14 8 30 0 24-17.5 41t-41.5 17H236q-23 0-41-16.5t-18-41.5q0-16 8-30L1249 495q8-14 22-21.5t29-7.5q33 0 51 29zm-152-30L1300 643 338 2308h1924zm-1048-548q-5 0-8.5-3.5t-3.5-6.5l-47-677q0-5 4-8t7-3h267q5 0 8.5 3.5t3.5 7.5l-48 677q0 3-3 6.5t-8 3.5h-172zm188 254q38 35 38 101 0 60-36 97.5t-102 37.5-104-35-38-100q0-67 36.5-101.5T1302 1979q62 0 100 35z" + }, + "children": [] + }] +}; +exports.u26A0 = u26A0; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u26A1.js b/dist/noto_emoji_regular/u26A1.js new file mode 100644 index 000000000..6a07978b6 --- /dev/null +++ b/dist/noto_emoji_regular/u26A1.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u26A1 = void 0; +var u26A1 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2125 1393q5 0 10 5t5 10q0 14-10 20L511 2446q-3 3-10 3t-13.5-5-6.5-14q0-3 1-7t4-7l711-773-723-213q-5-2-9.5-7t-4.5-12q0-11 8-17l1617-986q4-3 11-3 6 0 12.5 5t6.5 14q0 3-1 7t-4 7l-710 773z" + }, + "children": [] + }] +}; +exports.u26A1 = u26A1; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u26AA.js b/dist/noto_emoji_regular/u26AA.js new file mode 100644 index 000000000..a42a13f25 --- /dev/null +++ b/dist/noto_emoji_regular/u26AA.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u26AA = void 0; +var u26AA = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1465 1566.5q-69 68.5-165 68.5t-165-68.5-69-165.5q0-96 69-165t165-69 165 69 69 165q0 97-69 165.5zm-83-247.5q-34-34-82-34t-82 34-34 82 34 82 82 34 82-34 34-82-34-82z" + }, + "children": [] + }] +}; +exports.u26AA = u26AA; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u26AB.js b/dist/noto_emoji_regular/u26AB.js new file mode 100644 index 000000000..2e8b7241d --- /dev/null +++ b/dist/noto_emoji_regular/u26AB.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u26AB = void 0; +var u26AB = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1465 1565.5q-69 68.5-165 68.5t-165-68.5-69-165.5q0-96 69-165t165-69 165 69 69 165q0 97-69 165.5z" + }, + "children": [] + }] +}; +exports.u26AB = u26AB; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u26BD.js b/dist/noto_emoji_regular/u26BD.js new file mode 100644 index 000000000..f3dfd2f3e --- /dev/null +++ b/dist/noto_emoji_regular/u26BD.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u26BD = void 0; +var u26BD = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2205 1960q-142 244-385 382.5T1300 2481q-278 0-521-139t-384.5-383T253 1434q0-278 139-521t382.5-385T1300 386q281 0 525 142t383 385 139 521q0 282-142 526zm-197-346q61-37 116.5-83.5T2229 1425q0-108-23.5-200.5t-34-111.5-72-76.5T1959 930q-39 36-89 69t-80.5 55.5-63.5 31.5q3 31 5 71.5t2 88.5q0 41-2 85.5t-6 94.5q64 18 158.5 79.5T2008 1614zM371 1437q0 171 58.5 323.5T590 2034q20-5 39-9t39-9q-26-59-47-138.5T596 1705q-49-32-98.5-101T419 1436h-23q-12 0-25 1zm284-671q-17 65-23 122.5T626 990v21q0 10 1 18 56 5 105 18t102 26l22 6q11 4 22 9 89-89 197-148.5t222-88.5q-2-13-2-25v-23q0-48 8.5-114t26.5-101q-67-30-135.5-49t-88.5-15-89.5 24T867 611q-117 63-212 155zm463 1478q100-29 179-71.5t141-93.5q-33-65-67-169.5t-38-146.5q-124-23-241.5-71.5T885 1582q-28 19-59 32.5t-58 29.5l-58 31q-30 16-55 26 5 97 29 179.5t52 141.5l22 16q19 15 95.5 63t264.5 143zm548-817q4-48 6-91.5t2-82.5q0-51-2.5-94.5t-5.5-76.5q-12-6-49-26l-84-46q-117-63-155-80t-41-19l-14-7q-112 27-214 84t-187 139q3 8 4 16v17q0 63-2 126t-2 126q0 30 2 60.5t2 65.5q81 55 193.5 101t227.5 66q81-113 187.5-190t131.5-88zm431-471q-67-111-164-201 16 19 34.5 58t18.5 64q25 15 53.5 34.5T2097 956zm-538-415q-62-17-126.5-27T1296 504q-9 0-14 1 30 11 55.5 21.5T1385 548q5-2 30.5-5t85.5-3h28q14 0 30 1zM578 849q-90 111-143 245t-62 284h20q9 0 19-1 5-80 60.5-185.5T568 1049q0-11-1-25v-27q0-31 2.5-67.5T578 849zm625 1509q23 3 47.5 4t49.5 1q178 0 333.5-61.5T1914 2132q-19-21-34.5-40t-26.5-34q-56 31-148.5 50t-192.5 19q-10 0-19-1h-19q-80 65-159.5 104.5T1170 2290zm755-269q112-112 182.5-258t85.5-315q-57 58-117.5 102t-97.5 61q-5 85-36.5 180t-75.5 159q10 14 25 33t34 38z" + }, + "children": [] + }] +}; +exports.u26BD = u26BD; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u26BE.js b/dist/noto_emoji_regular/u26BE.js new file mode 100644 index 000000000..26c914584 --- /dev/null +++ b/dist/noto_emoji_regular/u26BE.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u26BE = void 0; +var u26BE = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2208 1952q-139 243-383 385t-525 142q-283 0-527-143.5T391 1950t-138-519q0-280 140.5-523T777 524.5 1300 384q277 0 520 138.5T2205 905t142 526q0 278-139 521zm17-606q-4-41-11-82-5-3-19-8t-31-5q-8 0-18.5 3.5t-18.5 3.5q-11 0-19-8t-8-19q0-22-9-40.5t-19-26.5l-8-7q-5-5-8-10.5t-3-11.5q0-11 8-18.5t19-7.5q17 0 39 28.5t30 60.5h14q22 0 37 4-8-23-15-49.5t-16-51.5q-5 2-12 5.5t-13 3.5q-21 0-28-22.5t-27-39-27-16.5q-18-7-18-26 0-11 8.5-18.5t18.5-7.5q11 0 29.5 12t29.5 22l-23-43q-9-17-18-29-11-3-19-3t-14 1.5-9 1.5q-11 0-19.5-7.5T2019 916q0-14 9-20t24-9q-24-33-51-66-3 4-13 4-11 0-19.5-7.5T1960 799q0-10 6-16-133-135-305.5-208T1300 502q-103 0-204 23-7 17-25 17-9 0-16-7l-56 18q2 3 4 9.5t2 10.5q0 10-7.5 18t-18.5 8q-9 0-15.5-4.5T948 572q-16 6-32.5 13.5T884 601q9 30 33.5 44t24.5 32q0 13-7.5 19.5T916 703l-11-2q-17-9-37-28t-31-46q-10 5-25.5 14T779 662l-34 24q-17 13-29 23 5 0 9 1h9q23 0 37-7.5t22-7.5q24 0 26.5 22t25.5 45.5 23 20.5q8 3 12 9.5t4 13.5q0 11-8 19t-19 8q-18 0-45.5-27.5T777 757q-24 7-44 7-26 0-42-6t-21-9q-144 132-221.5 311T371 1431q0 54 6 106.5t17 104.5q7-3 13-3 9 0 18.5 5.5t33.5 5.5 34.5-6 20.5-6q23 0 28 33.5t30 50.5 25 34q0 10-8.5 17t-17.5 7q-6 0-12-3-5 0-30-24t-35-54q-16 4-34 4-16 0-29.5-3t-21.5-6q5 19 12 37l12 35q8-2 12-2 11 0 18.5 7t7.5 16q3 29 22 49.5t23 20.5q7 3 10 9.5t3 12.5q0 11-6 19t-22 8q112 186 294 304.5t393 143.5q-15-12-31.5-16t-29.5-4h-9.5l-7.5 1q-11 0-18.5-8t-7.5-19q0-16 10-22t33-6q15 0 35.5 4.5t41.5 16.5q14-21 40.5-38.5t48.5-17.5q11 0 18.5 7.5t7.5 18.5q0 9-5.5 16.5t-14.5 9.5l-8 2q-25 7-42 32.5t-19 26.5q34 3 70 3 245 0 461-123.5t342-341 126-465.5q0-44-4-85zm-543 174q36 8 85 56 4 5 4 15 0 11-7.5 18.5t-18.5 7.5q-15 0-36-23t-60-25q-9 0-17.5-6.5t-8.5-20.5q0-11 3.5-21.5t3.5-19.5q0-22-5-35l-7-15q-6-8-6-15 0-10 8-18t18-8q22 0 34 29.5t12 59.5v10q0 6-2 11zm-411 608q13 0 19.5 7.5t6.5 18.5-8 19.5-19 8.5h-10q-31 2-52 23.5t-35 21.5-22-14.5-27-26.5-33-14l-9-1q-11-2-17-9t-6-16q0-12 7.5-20.5t19.5-8.5q15 0 42 11t49 33q17-15 39-22.5t44-9.5zm793-822q27 4 48.5 15.5t34.5 23.5l7 8q6 8 6 18 0 9-7.5 17.5t-20.5 8.5q-11 0-18-10-12-11-30.5-20t-38.5-9h-11q-11 0-18.5-7.5t-7.5-18.5q0-8 1.5-15t1.5-15q0-25-9-41l-10-17q-7-7-7-16 0-11 8.5-18.5t18.5-7.5q12 0 20 8l7 10q9 15 17 37.5t8 48.5zm-132 73q25 9 43.5 24t28.5 30l6 9q2 8 2 12 0 9-7.5 18.5t-18.5 9.5q-13 0-34.5-28t-58.5-30q-9 0-16-7t-7-18q0-12 6-25.5t6-26.5q0-12-2-20.5t-4-14.5l-5-11q-2-4-2-9 0-9 7-18t17-9q19 0 30 24t11 58v16q0 8-2 16zm-485 303q25 6 46 19.5t30 24.5l7 10q4 5 4 15 0 11-8 19.5t-18 8.5q-6 0-11.5-4t-10.5-9l-7-8q-10-10-27-19t-40-10q-11 0-18.5-8t-7.5-19 4.5-21.5 4.5-20.5q0-24-9-40t-9-22q0-11 7-19t17-8q22 0 34.5 32t12.5 61v8q0 5-1 10zm-721.5-161q-7.5 8-18.5 8-12 0-38-23t-39-57q-8 2-16 3t-15 1q-22 0-52.5-10t-30.5-29q0-10 8.5-18.5t19.5-8.5q9 0 19.5 6t33.5 6q20 0 33-6t19-6q11 0 18.5 7t7.5 16q2 22 15.5 41t28 27 14.5 24q0 11-7.5 19zm720 299q-7.5 7-16.5 7-10 0-20.5-5t-29.5-5q-20 0-35 7.5t-22 7.5q-25 0-27-22.5t-24.5-46-22.5-20.5q-15-6-15-22 0-12 8.5-19.5t17.5-7.5q8 0 11 1 52 38 68 76 21-7 43-7 26 0 49 7.5t23 30.5q0 11-7.5 18zm-630-864.5Q808 962 797 962q-17 0-42.5-24T718 887q-21 7-44 7-35 0-54-9.5T601 858q0-11 8.5-18.5T627 832q4 0 12 4t35 4q25 0 37-7t17-8h6q22 0 29 31t33.5 47.5T823 938q0 11-7.5 17.5zM763 1161q9 0 16 8.5t7 17.5q0 14-9.5 20t-20.5 6q-26-4-49-16.5t-39-30.5q-24 17-47.5 22.5T581 1194q-14 0-23.5-6t-9.5-20q0-11 7.5-19.5t18.5-8.5q2 0 3 1t6 1q32 0 54-20.5t33-20.5q17 0 25.5 15t27 28 32.5 15zm1044 288q31 10 54.5 34t23.5 29l2 6q0 3 1 6 0 9-7.5 18t-18.5 9q-17 0-33.5-26t-59.5-31q-10 0-17-7.5t-7-17.5q0-11 6.5-25t6.5-27q0-25-7-34.5t-7-18.5q0-11 7.5-20t18.5-9q16 0 28 23.5t12 58.5v16q0 8-3 16zm-243 152q32 8 58 30t26 26q4 7 4 15 0 11-7 18.5t-19 7.5q-13 0-22-11 0-5-21.5-21t-50.5-16q-12 0-19.5-7.5t-7.5-18.5 3.5-22 3.5-20q0-16-2.5-26t-5.5-16l-6-11q-3-5-3-11 0-11 8-19t19-8q19 0 31.5 29.5t12.5 61.5v9q0 5-2 10zm-912 4q14 12 14 24 0 13-9 19t-17 6q-17 0-41-23t-36-58q-9 2-18.5 3t-17.5 1q-33 0-48.5-7t-15.5-8q-15-6-15-23 0-11 8.5-18.5t18.5-7.5q5 0 10 2l9 4q5 2 13.5 4t19.5 2q23 0 32.5-6t21.5-6q25 0 30 32.5t32 52.5zm112-293q7 7 7 17 0 13-9 19.5t-20 6.5q-18 0-44-12.5t-45-34.5q-24 17-49.5 22.5T563 1336q-14 0-22-6.5t-8-20.5q0-11 7.5-18.5t18.5-7.5h6q4 0 9 1 35 0 51.5-21t34.5-21q14 2 29.5 26t54.5 34q13 3 20 10zm614 593q14 7 14 26 0 11-8.5 18t-17.5 7q-10 0-19-5t-29-5q-22 0-37 8t-21 8q-22 0-29.5-33t-35.5-52l-9-5q-15-7-15-22 0-11 7-19t18-8q4 0 12 2 5 0 30.5 21t38.5 53q11-3 21-4t20-1q24 0 41.5 5.5t18.5 5.5zm-600-887q9 2 16 9.5t7 16.5q0 14-9.5 20.5T771 1071q-28-5-50-17.5t-38-29.5q-23 17-46.5 22t-40.5 5q-14 0-24-6t-10-20q0-11 8-18.5t19-7.5q46 0 65-20.5t32-20.5q17 0 33.5 26t50.5 32zm537 1017q15 6 15 25 0 12-7.5 19t-18.5 7q-8 0-18.5-5.5t-29.5-5.5q-20 0-35.5 8t-21.5 8q-23 0-27-25t-21.5-44.5-25.5-19.5q-8-3-11.5-9.5t-3.5-13.5q0-11 7-19.5t17-8.5q3 0 6 1l7 2q-2-2 25 17t43 57q11-3 20.5-4t19.5-1q28 0 60 12z" + }, + "children": [] + }] +}; +exports.u26BE = u26BE; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u26C4.js b/dist/noto_emoji_regular/u26C4.js new file mode 100644 index 000000000..4d483e7fa --- /dev/null +++ b/dist/noto_emoji_regular/u26C4.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u26C4 = void 0; +var u26C4 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2247 1355l-258 200q38 73 56.5 148.5T2064 1853q0 182-102 339.5T1684.5 2435t-396.5 85-397.5-85-278-242.5T511 1853q0-81 22-162.5t67-159.5l-249-223q-18-18-18-38 0-22 15.5-37t36.5-15q19 0 34 12l101 90 21-74q5-17 18.5-27.5T590 1208q23 0 37.5 14.5T642 1259v7q0 3-1 8l-34 124 52 46q26-38 64.5-74.5T804 1301q-57-73-89-161.5T683 952q0-241 180.5-415T1299 363q253 0 434.5 173.5T1915 952q0 103-34.5 194.5T1785 1313q86 68 148 152l67-50-21-130-1-9q0-20 16-36t38-16q18 0 32.5 12t17.5 32l11 74 91-70q14-11 31-11 20 0 36 15.5t16 36.5q0 27-20 42zm-339 325q-32-88-85-156t-108-108-55-103q0-47 36-88.5t65-114.5 29-158q0-192-145.5-329T1299 486q-201 0-346 137T808 952q0 82 28 153.5t60.5 111T929 1302q0 62-58 106.5t-110.5 106-89.5 151-37 187.5q0 153 89.5 282T962 2330t326 66q175 0 323.5-65t238.5-193.5 90-282.5q0-87-32-175zm-476.5-502q-5.5 6-41.5 9.5t-89 3.5q-43 0-79.5-3t-59-4.5-22.5-42.5q0-13 2.5-24.5t13.5-11.5q41 0 81 1t81 1q23 0 46-1t48-1q14 0 19.5 6t5.5 26q0 35-5.5 41zm116.5-150.5q-23 29.5-55 29.5-33 0-59-27t-26-69q0-43 23-72t55-29 58.5 27 26.5 69-23 71.5zM1166 961q-2 41-26 68.5t-58 27.5q-31 0-55-28t-24-68q0-42 23.5-71.5T1085 860q34 0 57.5 30t23.5 71z" + }, + "children": [] + }] +}; +exports.u26C4 = u26C4; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u26C5.js b/dist/noto_emoji_regular/u26C5.js new file mode 100644 index 000000000..39dc65c2f --- /dev/null +++ b/dist/noto_emoji_regular/u26C5.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u26C5 = void 0; +var u26C5 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1542 681q-8-2-14-7.5t-6-14.5q0-6 3-9l100-206q7-12 19-12 18 0 22 16l52 200q2 10 4.5 16t2.5 10q0 11-8 16.5t-17 5.5zm322 103q-5-5-5-14 0-16 15-22l215-74q3 0 8-1 8 0 15 7t7 15q0 5-2 11l-116 197q-6 11-17 11-7 0-11.5-1.5t-8.5-6.5zm154 300q0-8 6-14.5t16-6.5q7 0 11 3l205 100q13 7 13 19 0 8-5.5 14t-11.5 8l-220 58q-3 0-6 1-11 0-17-8.5t-6-16.5zm-885-474q-2-2-2-7 0-8 6-15t16-7q7 0 11 3l198 115q11 7 11 22 0 9-9 15l-122 100q-5 4-13 4-18 0-21-14zm1086 1227q-81 81-194 81-43 0-85-14-32 114-127.5 188t-217.5 74q-61 0-116.5-19t-100.5-53q-59 48-132 75t-156 27q-132 0-243-71.5T681 1936q-11 0-30 1-152 0-251.5-100.5T300 1598q0-120 83.5-222T592 1262q34-101 121.5-165t196.5-64l24-7q48-62 118.5-99.5T1208 889q43 0 80 10 51-67 127-106t164-39q150 0 258 107.5t108 257.5q0 41-8.5 80t-24.5 75q20 25 34 54.5t21 62.5l47-9q21-4 46-4 95 0 167.5 80t72.5 185q0 113-81 194zm-73-293.5q-36-47.5-84-47.5-26 0-46.5 6.5t-48.5 6.5q-36 0-71-26t-46-74-54.5-86-105.5-38q-31 0-71.5 18t-66.5 18q-41 0-77-28t-44.5-99-71.5-129-151-58q-61 0-102 20t-80.5 72.5T922 1152l-12-1q-69 0-128 42.5t-79 105-97.5 77.5-132.5 85.5-55 136.5q0 92 66 157t157 65q6 0 22-1t30-1q66 0 99.5 74.5t114 130T1090 2078q66 0 121-22t89-51 78-29q42 0 92 36t125 36q70 0 134-41.5t96-130.5 115-89q22 0 42 6.5t43 6.5q64 0 110.5-46.5T2182 1643q0-52-36-99.5z" + }, + "children": [] + }] +}; +exports.u26C5 = u26C5; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u26CE.js b/dist/noto_emoji_regular/u26CE.js new file mode 100644 index 000000000..2d8347120 --- /dev/null +++ b/dist/noto_emoji_regular/u26CE.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u26CE = void 0; +var u26CE = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1773 1687v277q0 46 33 79t79 33h97v295h-97q-167 0-287-120t-120-287v-352l-360-93v445q0 46 33 79t79 33h97v295h-97q-168 0-287.5-120.5T823 1964v-522q-23-6-40-7l-23-1q-64 0-98.5 34.5T627 1551q0 50 36 84l-204 212q-62-59-94-135t-32-161q0-165 120-288.5T738 1139q21 0 41.5 1t43.5 4V566h295v648l360 94V566h295v821q19 5 37.5 6.5t25.5 1.5q58 0 97.5-33t39.5-85q0-23-9.5-44.5T1937 1194l204-213q61 60 93.5 135.5T2267 1277q0 177-126.5 295.5T1830 1691q-12 0-26-1.5t-31-2.5z" + }, + "children": [] + }] +}; +exports.u26CE = u26CE; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u26D4.js b/dist/noto_emoji_regular/u26D4.js new file mode 100644 index 000000000..732aecca0 --- /dev/null +++ b/dist/noto_emoji_regular/u26D4.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u26D4 = void 0; +var u26D4 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2126.5 1910.5q-128.5 220.5-349 349T1300 2388t-477.5-128.5-349-349T345 1433t128.5-477.5 349-349T1300 478t477.5 128.5 349 349T2255 1433t-128.5 477.5zM2029 1622v-377H570v377h1459z" + }, + "children": [] + }] +}; +exports.u26D4 = u26D4; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u26EA.js b/dist/noto_emoji_regular/u26EA.js new file mode 100644 index 000000000..797cf9adf --- /dev/null +++ b/dist/noto_emoji_regular/u26EA.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u26EA = void 0; +var u26EA = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2173 1702q12 6 19.5 18t7.5 26v101q0 20-15.5 35.5T2149 1898q-6 0-11-2l-11-4-52-26v555q0 20-15 34.5t-35 14.5H574q-21 0-35-14.5t-14-34.5v-555l-52 26-11 4q-7 2-13 2-20 0-34.5-14.5T400 1847v-101q0-14 6.5-26t19.5-18l540-284v-53q0-13 4-22l255-556V470h-154V321h154V187h149v134h153v149h-153v317l256 556q2 5 3 11t1 11v53zm-721 468v200h82v-956h-468v956h86v-200q0-63 45-106t104-43q63 0 107 45t44 104zm-827 200h341v-727l-341 173v554zm1349-554l-340-173v727h340v-554zm-522 42q0 12-9 21t-21 9h-240q-12 0-21-9t-9-21v-170q0-63 45-106t104-43q62 0 106.5 45t44.5 104v170zm-241-29h62v-81h-62v81zm182-81h-61v81h61v-81zm-120-60v-85q-27 10-44.5 32.5T1211 1688h62zm119 0q0-29-17-52t-43-33v85h60z" + }, + "children": [] + }] +}; +exports.u26EA = u26EA; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u26F2.js b/dist/noto_emoji_regular/u26F2.js new file mode 100644 index 000000000..161e63713 --- /dev/null +++ b/dist/noto_emoji_regular/u26F2.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u26F2 = void 0; +var u26F2 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1817 1598q35 0 60 25t25 59q0 35-25 59t-60 24q-20 79-70 150t-116.5 120-116 68-49.5 53q0 39 47.5 58.5t47.5 56.5q0 23-17.5 38.5T1499 2325h-403q-26 0-44-15.5t-18-38.5q0-35 33-49t48-31 15-35q0-33-49.5-52T966 2037.5 851 1920t-73-155q-33-3-55-27t-22-56q0-35 24.5-59.5T785 1598h1032zm-752-178h478q26 0 45 19t19 47q0 26-19 45t-45 19h-478q-27 0-46-19t-19-45q0-28 19-47t46-19zm435-51h-393q0-80 57.5-138t139.5-58q81 0 138.5 58t57.5 138zm-957.5-54q-13.5-16-13.5-39l1-38q0-25-13-40t-36-15q-30 0-59.5 43t-66.5 43q-19 0-37-13t-18-39q0-14 3.5-30.5t3.5-32.5q0-17-8.5-29t-25.5-12q-20 0-52 32t-54 32q-23 0-36.5-20.5T117 1105q0-73 123-196.5t254.5-184T759 664q134 0 251 60t193.5 184.5T1280 1116q0 16-11 16-6 0-13.5-7.5T1241 1106l-14-21q-29-39-85-66t-117-27q-122 0-204.5 69t-130 169.5T582 1331q-26 0-39.5-16zM2469 1156q-13 21-36 21-21 0-53.5-32t-53.5-32q-17 0-25.5 12t-8.5 29q0 16 3.5 32.5t3.5 30.5q0 26-17.5 39t-37.5 13q-36 0-66.5-43t-59.5-43q-22 0-35.5 14t-13.5 39l1 40q0 23-13.5 39t-39.5 16q-59 0-107.5-99.5t-135-169.5-200.5-70q-65 0-119.5 28t-80.5 65l-15 21q-8 11-15 18.5t-14 7.5q-6 0-8.5-5t-2.5-11q0-63 66-184.5T1571.5 737t268.5-73q130 0 261.5 60t256 183 124.5 200q0 28-13 49z" + }, + "children": [] + }] +}; +exports.u26F2 = u26F2; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u26F3.js b/dist/noto_emoji_regular/u26F3.js new file mode 100644 index 000000000..cc5639fde --- /dev/null +++ b/dist/noto_emoji_regular/u26F3.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u26F3 = void 0; +var u26F3 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2133.5 2459.5Q2063 2531 1963 2531t-170.5-71.5T1722 2290q0-99 70.5-170.5T1963 2048t170.5 71.5T2204 2290q0 98-70.5 169.5zM1802 1613q-48 105-142.5 376T1391 2385t-436 125q-330 0-526.5-157T232 1917q0-212 154.5-320.5T828 1488q97 0 172.5 8.5T1137 1517l104 20q46 9 91 9 67 0 105-17t65.5-45.5T1595 1337l202-368q4-6 11-7l16-3 300-648h243l-334 728q3 3 5.5 7.5t2.5 10.5v4q0 3-1 5zm-461 188q-139-76-370-76-212 0-354 87.5T475 2057q0 102 79 192t190 119.5 218 29.5q222 0 370-118.5t148-262.5q0-140-139-216z" + }, + "children": [] + }] +}; +exports.u26F3 = u26F3; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u26F5.js b/dist/noto_emoji_regular/u26F5.js new file mode 100644 index 000000000..1fcf58bc0 --- /dev/null +++ b/dist/noto_emoji_regular/u26F5.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u26F5 = void 0; +var u26F5 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2143 1928q47 0 71.5 23.5t24.5 83.5q0 55-19.5 165t-42.5 157H706q-91-58-218.5-183.5T360 1983q0-18 14-36.5t44-18.5h1725zm-984-139q60-132 83.5-283t23.5-306q0-200-46-372.5T1084 506v-6q523 119 775 422.5t252 866.5h-952zm-134 0l-491 50q54-291 178.5-602T1036 599h5z" + }, + "children": [] + }] +}; +exports.u26F5 = u26F5; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u26FA.js b/dist/noto_emoji_regular/u26FA.js new file mode 100644 index 000000000..66e9814ee --- /dev/null +++ b/dist/noto_emoji_regular/u26FA.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u26FA = void 0; +var u26FA = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1359 862q173 25 319.5 102t264.5 189 223.5 274 171.5 336.5 66 218.5q0 38-21.5 68.5T2323 2093l-1072 363q-10 3-19 5t-20 2q-22 0-44-8l-898-364q-34-14-54-42t-20-61q0-22 5-45t51.5-145.5 83-199 89.5-166 102.5-156 106-126.5 108-101.5 118.5-81T978 907q85-34 155-44t108-10V456q0-25 17-42.5t42-17.5q20 0 35 12t20 29q17 2 32.5 6t107.5 18l379 58q68 11 122.5 21t54.5 37q0 9-7 16.5t-59.5 29.5T1661 737l-302 104v21zm-119 109q-169 0-348 116t-327 346.5T314 1982l138 56q69-237 179-408t225-171q89 0 133 84.5t44 249.5q0 85-12 186.5T993 2169l-16 80 176 72q0-495 26.5-849.5T1240 971zm1046 1011l-27-81q-131-380-363-631t-538-289q0 11-27 170t-43.5 460-16.5 714z" + }, + "children": [] + }] +}; +exports.u26FA = u26FA; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u26FD.js b/dist/noto_emoji_regular/u26FD.js new file mode 100644 index 000000000..6cab785a0 --- /dev/null +++ b/dist/noto_emoji_regular/u26FD.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u26FD = void 0; +var u26FD = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2145.5 2288.5Q2074 2370 1958 2370q-113 0-182-50.5t-100-148-31-326.5q0-189-28.5-300.5T1544 1389v1047H382V788q0-120 87.5-207.5T677 493h574q119 0 206 86.5t87 208.5v430q126 45 188.5 198t62.5 427q0 141 8.5 216t42.5 119 113 44q53 0 81.5-37.5T2069 2081q0-151-36-368.5t-79-364.5q-8 0-23 1-149 0-199-84t-50-237q0-32 7-62.5t28-57.5 49-38l58-23 32-13q14-6 20-11 2-5 3-11t1-12q0-61-40.5-132.5T1757 555t-42-73q0-24 22-45.5t55-21.5q23 0 44 12t39 30l21 23q66 77 108.5 170t65 182 50.5 192 28 172q0 40-11 72t-38 46q43 147 80.5 375t37.5 389q0 129-71.5 210.5zm-231.5-1072q10-16.5 10-39.5 0-24-8-54t-18-55l-11-24q-11-22-26-31.5t-32-9.5q-20 0-36.5 14.5T1776 1059q0 84 26.5 129t75.5 45q26 0 36-16.5zM1351 859H577v358h774V859z" + }, + "children": [] + }] +}; +exports.u26FD = u26FD; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u2702.js b/dist/noto_emoji_regular/u2702.js new file mode 100644 index 000000000..cf5f5bf49 --- /dev/null +++ b/dist/noto_emoji_regular/u2702.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u2702 = void 0; +var u2702 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2220.5 2497q-37.5 38-86.5 38-53 0-93-13.5t-55-39.5l-15-22q-23-37-58-46.5t-75-9.5l-57 1q-115 0-207.5-108.5T1481 2017q0-45 4.5-80t4.5-69q0-47-16-73t-43.5-45.5-65-36.5-54.5-31l-37-32-34-27-33 27q-31 24-39 32t-44 24-68.5 37.5-50 51.5-17.5 73q0 34 4.5 70t4.5 87q0 171-99 281t-261 110q-145 0-220-82.5T342 2121q0-90 45.5-166t111-124.5T701 1739l25-8q71-20 90.5-91.5t97.5-131 149-154.5q-110-222-194.5-493.5T784 476q0-36 7-74t21-38q6 0 15 13.5t18 30.5l17 34q8 16 11 20l185 304q92 152 182 307 90-155 182-307l185-304q3-3 26-50.5t34-47.5q14 0 21.5 36.5t7.5 75.5q0 109-86.5 385T1416 1354q72 96 143 150t93 109l11 28q20 46 38.5 63.5t51.5 26.5l25 8q141 44 203 90.5t107 117.5 45 159q0 41-7 84t-7 82q0 25 18 36.5t38 13.5l22 2q35 3 48 27t13 50q0 58-37.5 96zM832 1927q-39-45-103-45-101 0-167 74.5T496 2120q0 75 44 118.5t113 43.5q94 0 156-69.5t62-173.5q0-67-39-112zm380.5-515q12.5 16 32.5 16 26 0 38.5-15.5t12.5-32.5q0-18-13.5-33.5T1245 1331q-18 0-31.5 11.5T1200 1376q0 20 12.5 36zm701 538q-79.5-68-162.5-68-65 0-104 46.5t-39 110.5q0 98 56 174t135 76q45 0 98.5-19.5t74.5-71 21-96.5q0-84-79.5-152z" + }, + "children": [] + }] +}; +exports.u2702 = u2702; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u2705.js b/dist/noto_emoji_regular/u2705.js new file mode 100644 index 000000000..2f0332aa6 --- /dev/null +++ b/dist/noto_emoji_regular/u2705.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u2705 = void 0; +var u2705 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1056 2013l-608-606 152-152 456 452 943-951 152 152z" + }, + "children": [] + }] +}; +exports.u2705 = u2705; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u2708.js b/dist/noto_emoji_regular/u2708.js new file mode 100644 index 000000000..fbc503248 --- /dev/null +++ b/dist/noto_emoji_regular/u2708.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u2708 = void 0; +var u2708 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2280 1410q27 40 51.5 92.5t24.5 86.5q0 20-10.5 34t-35.5 14q-33 0-83.5-33.5T2108 1499q-72 31-174.5 65t-240.5 66q95 278 126.5 412t31.5 217q0 87-34 132.5t-103 45.5q-132 0-303-202.5T1091 1713q-46 3-88 4t-84 1q-329 0-518-75.5T212 1454q0-55 50-104.5t118-82.5 78-33q7 55 42 105.5t91 92.5l28 21q23 19 47.5 32.5T710 1499q17 0 47.5-32t30.5-46q0-28-40.5-47.5t-104-87T571 1126q51-32 122.5-54.5T867 1049q-18-112-18-211 0-192 63.5-308T1081 414q97 0 216 183t231 522q125 22 257 48.5t280 58.5q67-73 138-126t132-53q21 0 36.5 10.5t15.5 33.5q0 21-17 60t-47 90l-30 50q17 14 24 28t7 25q0 22-13.5 37.5T2280 1410zm-1351.5 21q-14.5-9-31.5-9-25 0-46.5 29t-21.5 53q0 22 12.5 31t32.5 9q32 0 50.5-35.5T943 1459q0-19-14.5-28zm128.5 96.5q23-26.5 23-53.5 0-20-11.5-29t-28.5-9q-24 0-45.5 27.5T973 1521q0 14 8.5 23.5t24.5 9.5q28 0 51-26.5z" + }, + "children": [] + }] +}; +exports.u2708 = u2708; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u2709.js b/dist/noto_emoji_regular/u2709.js new file mode 100644 index 000000000..4ef883a59 --- /dev/null +++ b/dist/noto_emoji_regular/u2709.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u2709 = void 0; +var u2709 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1299 1570l793-394v829H507v-829zm793-741v221l-793 393-792-393V829h1585z" + }, + "children": [] + }] +}; +exports.u2709 = u2709; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u270A.js b/dist/noto_emoji_regular/u270A.js new file mode 100644 index 000000000..00ef24be1 --- /dev/null +++ b/dist/noto_emoji_regular/u270A.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u270A = void 0; +var u270A = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2164.5 1876.5q-120.5 200.5-342 306T1300 2288q-167 0-304.5-41t-243-112.5-186-174.5-121-224-85.5-255.5-45-253.5q0-137 69.5-220T581 924q35 0 44-5t32.5-58.5T741 765t151-42q39 0 69.5 8t50.5 8q31 0 56-42t83-78 130-36q67 0 120.5 29t57.5 29q12 0 35-20.5t73-45.5 125-25q92 0 161 51t96 111.5 37.5 175.5 60 127.5 116.5 74 94.5 146.5 27.5 204q0 236-120.5 436.5zm-613-971.5q2.5 40 7.5 91 20-5 44-6t49-1q58 0 105.5 4.5t95.5 11.5l-5-160q-2-72-46.5-113.5T1679 690q-59 0-94.5 47T1549 846q0 19 2.5 59zM1150 867l2 14q2 17 7.5 50.5t13.5 74.5l16 88q0 10 30.5 154t133.5 144q22 0 36.5-4.5t25.5-14.5l14-12q-33-29-48-69.5t-15-90.5q0-73 23-116t70-66l-19-159q-9-65-50.5-102.5T1284 720q-66 0-100.5 35t-34.5 98q0 8 1 14zm-389 149l2 15q8 40 38.5 135.5t70 200.5 129.5 105q48 0 86-30t38-76q0-7-1-13l-2-12-80-374q-13-61-53.5-89T900 850q-68 0-104 42.5T760 1001q0 8 1 15zm-19.5 532.5Q782 1519 782 1474q0-6-1-14t-3-16l-89-292q-17-53-50.5-75t-74.5-22q-63 0-96.5 38.5T434 1203q0 46 42.5 152t72.5 164.5 100 58.5q52 0 92.5-29.5zm1299.5-373q-91-68.5-177-68.5-32-2-102.5-11.5T1640 1086q-93 0-136.5 32t-43.5 94q0 86 89 137t169 51q11 0 16-2-6 11-17 69t-11 94l-81 24q-72 21-142.5 58t-113 88.5-69.5 51.5q-33 0-33-34 0-41 38.5-117t42.5-78 4-8q0-7-12-10l-30-5q-18-3-37-7.5t-32-16.5q-66 63-105.5 82t-75.5 19q-40 0-87-13.5t-63-26.5q-12 43-56 78t-83 35q-31 0-60-4.5t-51-4.5q-26 0-35.5 12.5T615 1720q0 83 98.5 197T963 2093.5t340 62.5q385 0 607-202t222-510q0-200-91-268.5z" + }, + "children": [] + }] +}; +exports.u270A = u270A; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u270B.js b/dist/noto_emoji_regular/u270B.js new file mode 100644 index 000000000..da06143ca --- /dev/null +++ b/dist/noto_emoji_regular/u270B.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u270B = void 0; +var u270B = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2400 1633.5q-18 48.5-43 78.5l-47 59-56 74q-32 43-69.5 90t-73.5 87l-115 133q-135 156-220.5 223t-193 108-237.5 41q-180 0-341-62.5t-284-194-177.5-327T450 1660l-13-29-87-181q-25-51-49-103l-45-97q-16-33-45.5-101T181 1007q0-118 77.5-202.5T473 720q7-116 82-193.5T752 449q46 0 91 14 32-81 98-130.5t155-49.5q53 0 103.5 17.5T1289 350q77-83 203-83 119 0 198.5 77t88.5 199.5 14 420.5l2 181q0 67 5.5 173t21.5 106q7 0 49-52t109.5-91.5T2136 1241q114 0 198 85t84 207q0 52-18 100.5zM1034.5 881q59.5 246 93.5 356 51-13 98-18t104-10l-51-349-20-130q-10-61-16-107l-10-66q-7-52-45-85t-89-33q-58 0-91 45.5T975 602q0 33 59.5 279zM632 790.5q4 17.5 48 137.5l128 357 30 82q47-32 97.5-58t103.5-45q-22-75-47-163L881 705q-14-52-50.5-75T752 607q-60 0-92 38t-32 107q0 21 4 38.5zm1592.5 649Q2187 1397 2139 1397q-39 0-68.5 11.5T2023 1438l-21 21q-7 7-24 28l-41 52q-50 64-107 141t-141 77q-20 0-39.5-2t-41.5-2q-26 0-44.5 4t-32.5 10l-23 9q-11 5-24 5-11 0-22.5-7t-11.5-21q0-27 65-54t110-28.5 45-65.5q0-67-9-140l-17-136-2-163q0-61-3-136l-4-155q-2-80-5-161l-6-155q-3-65-39.5-100.5T1485 423q-58 0-90.5 45T1362 575q0 12 2.5 52t7.5 98l10 125q7 94 17 204t18 165l13 2q15 2 49 13.5t34 28.5q0 14-22.5 22t-42.5 8q-180 19-349 72t-318 131l-19 12q-11 7-22 7t-16.5-6.5-5.5-14.5q0-12 12-29.5t25-30.5l14-14q-28-65-56.5-134.5T654 1137l-41-108h-1l-24-65q-16-43-51-65.5T462 876q-56 0-90 36t-34 95q0 17 4 40.5t23 66.5l32 70q19 42 43 91l47 100q24 51 48 99l42 86 30 71q23 52 46.5 132.5t39.5 132 35 91 39.5 74 43 62.5 42.5 48.5 56 47.5q161 123 427 123 116 0 212.5-32t164.5-86.5 121-128 74-96.5l85-93 25-28 65-81q32-40 60-74l48-59q7-8 39-47t32-84q0-51-37.5-93.5z" + }, + "children": [] + }] +}; +exports.u270B = u270B; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u270C.js b/dist/noto_emoji_regular/u270C.js new file mode 100644 index 000000000..c97f7ef8e --- /dev/null +++ b/dist/noto_emoji_regular/u270C.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u270C = void 0; +var u270C = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1979 2237.5q-122 159.5-299.5 231T1296 2540q-58 0-116-4.5t-112.5-15.5-94.5-24.5-68.5-27.5-60-37.5-65.5-63-64-96-45-110.5-13.5-53-26-38.5-60-95T515 1867t-34-99.5-11-92.5q0-100 74.5-172.5T725 1426q6-103 69-159t131-56l-41-116q-36-98-62.5-160t-48-159T752 615q0-132 80-213t208-81q122 0 200 79.5T1357 621l21 77q9 31 17 70l29 162q5 26 16.5 82t21.5 56q9 0 23.5-122t21.5-208 39.5-180T1652 401t170-63q145 0 226.5 83.5T2130 628q0 77-16.5 163.5T2076 944l-18 56-60 176q-27 81-42.5 146.5t-26.5 101-11 67.5q0 49 44 87t91.5 131 47.5 202q0 167-122 326.5zm-726-826q60-32.5 143-32.5 53 0 111 12t112 32l67 25q37 14 74 30 5-7 11-33.5t13-62.5l13-70q7-35 15-58l41-118q55-161 92-290t37-203q0-71-40.5-114T1838 486q-106 0-151 121t-67 292l-16 135-17 119q-10 75-37 121t-79 46q-85 0-113.5-116.5t-63-281-83-304.5T1066 478q-81 0-122 41t-41 126q0 94 78.5 301.5T1086 1204t51.5 145 47.5 95q8 0 68-32.5zM904 1647q55 116 90 177.5t98 61.5q42 0 75.5-28.5t33.5-66.5q0-7-1-14.5t-4-16.5l-107-312q-16-47-47.5-67t-68.5-20q-56 0-90 31.5t-34 92.5q0 46 55 162zm-24 338q39-27 39-66 0-15-8-36l-43-104-32-72h-1q0-3-29.5-70T703 1570q-52 0-81.5 30t-29.5 87q0 48 24.5 96t50.5 96 54 90.5 78 42.5q42 0 81-27zm999-287q-79-89-219-145t-242-56q-67 0-118.5 37t-51.5 99q0 65 62.5 111.5t200.5 90 138 117.5q0 15-4.5 26t-12.5 11q-11 0-78-29t-122-29q-71 0-116.5 61.5T1270 2144l1 18v28q0 14-2.5 25.5t-9.5 11.5q-22 0-40-59.5t-18-103.5q0-23 4-52t9-48q-22 22-55.5 36.5T1090 2015q-25 0-47.5-7.5T1010 1994q-51 73-87 91.5t-94 21.5q22 102 41.5 134.5t65.5 68 134.5 61.5 204.5 26q267 0 475-143.5t208-360.5q0-106-79-195z" + }, + "children": [] + }] +}; +exports.u270C = u270C; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u270F.js b/dist/noto_emoji_regular/u270F.js new file mode 100644 index 000000000..fdf6ee8ec --- /dev/null +++ b/dist/noto_emoji_regular/u270F.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u270F = void 0; +var u270F = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2407.5 1069q-17.5 68-55.5 103L1240 2179l-31 26q-2 2-18.5 12T948 2294l-144 43q-218 63-379 105t-192 44q-25 0-41-16.5t-16-46.5q0-14 12.5-64t35.5-121l203-632q17-52 51-91t85-85l1082-992q40-37 111-57t186-20q108 0 190.5 80.5t159 150 105 113.5 28.5 211q0 85-17.5 153zM2271 834L1140 1871q6 27 10.5 88.5t4.5 123.5l1070-973q21-20 42-44t21-49q0-45-7-90t-10-93zm-360-332q-84 5-123.5 11t-90.5 52L642 1532q35 5 75 5t76 13zM839 1601v37q0 28 3.5 79t3.5 69q0 9 34.5 14.5t61.5 5.5q38 0 75.5 6.5t68.5 14.5L2241 769l-62-64-68-67q-34-33-65.5-63t-56.5-52zm-202 47l-36-2q-17 0-28-1h-13l-170 511q39 20 65.5 47.5T505 2269l537-132q2-21 2-45.5t1-49.5q0-72-8.5-92t-98.5-23h-25q-79 0-108.5-11.5t-43.5-25-21-66.5l-15-125q-4-27-9.5-37t-78.5-14z" + }, + "children": [] + }] +}; +exports.u270F = u270F; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u2712.js b/dist/noto_emoji_regular/u2712.js new file mode 100644 index 000000000..41d01da23 --- /dev/null +++ b/dist/noto_emoji_regular/u2712.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u2712 = void 0; +var u2712 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2414 625.5q-11 43.5-31 88.5-20-12-44-28t-47-36l-41-36q-74-63-144.5-142.5T2007 339q45-20 88.5-31.5T2181 296q102 0 173 70.5t71 173.5q0 42-11 85.5zM2248 755q25 20 46.5 33.5T2334 810q-45 75-102.5 145T2112 1087l-355 355q-4 4-13 4-18 0-49-16.5t-73-48.5zm-747 524q-105-103-165.5-185T1275 977q0-9 6-13l353-354q63-63 134-120t144-102q22 48 78 116.5T2126 653zm41 182l28 19q32 23 54.5 34t39.5 11q3 0 7-1t6-3v2l-74 74q-6 5-14 5t-16-2.5-18-7.5l-484 484q-4 4-12 4-14 0-35.5-10.5T974 2039q-9 26-15 83t-63.5 153.5-191.5 154-234.5 70T289 2529l-54 11q-23 5-27 5-11 0-21.5-6t-10.5-20q0-4 5-26l11-53h-1q22-103 30-173t38.5-164.5 81-172 132-119 131.5-47 79-15.5q-20-28-30.5-50.5T642 1662q0-6 4-12l484-482q-5-11-7.5-19t-2.5-16q0-7 6-13l72-74 2 1q-2 3-2 11 0 36 60 116t164 184l-65 65 121 102zm-673 646l5-36q3-19 8.5-40t17.5-48q-41-34-83.5-77t-77.5-83q-41 19-94 24.5t-111 34-87.5 58.5-61 90.5T330 2187t-34 193l206-207q-8-19-8-39 0-39 28.5-66.5T587 2040q39 0 67 28t28 67q0 36-28 64.5t-65 28.5q-21 0-40-8l-207 207q39-7 81-11t82.5-14.5 80.5-23 77.5-29.5 74-39 61.5-53.5 44.5-71.5 25.5-78z" + }, + "children": [] + }] +}; +exports.u2712 = u2712; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u2714.js b/dist/noto_emoji_regular/u2714.js new file mode 100644 index 000000000..cfdb812e6 --- /dev/null +++ b/dist/noto_emoji_regular/u2714.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u2714 = void 0; +var u2714 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1057 2014l-608-606 152-152 456 452 943-951 152 152z" + }, + "children": [] + }] +}; +exports.u2714 = u2714; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u2716.js b/dist/noto_emoji_regular/u2716.js new file mode 100644 index 000000000..a9727e507 --- /dev/null +++ b/dist/noto_emoji_regular/u2716.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u2716 = void 0; +var u2716 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2021 1904q8 8 12 18.5t4 20.5q0 24-16 40l-169 167q-20 18-40 18-24 0-39-18l-473-472-473 472q-9 10-19.5 14t-21.5 4q-25 0-39-18l-168-167q-16-16-16-40 0-10 4-20.5t12-18.5l473-473-473-473q-16-16-16-39 0-11 4-21.5t12-18.5l168-169q15-16 39-16 11 0 21.5 4t19.5 12l473 473 473-473q16-16 39-16 11 0 21.5 4t18.5 12l169 169q8 8 12 18.5t4 21.5q0 23-16 39l-474 473z" + }, + "children": [] + }] +}; +exports.u2716 = u2716; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u2728.js b/dist/noto_emoji_regular/u2728.js new file mode 100644 index 000000000..b13d5cd6d --- /dev/null +++ b/dist/noto_emoji_regular/u2728.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u2728 = void 0; +var u2728 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M908 1927q-77-202-157-323t-190.5-230.5T294 1171l-112-67 112-68q209-124 363.5-305T910 280q100 275 251.5 454t360.5 302l114 68-114 67q-209 125-361.5 304T908 1927zm-429-823q136 98 243.5 212.5T908 1557q74-118 182.5-235.5T1338 1104q-132-93-242-211T908 650q-82 133-191.5 248T479 1104zm1939 475l-126 62q-130 63-227.5 155T1892 2060q-62-154-158-250.5T1493 1641l-125-62 125-62q138-67 235-165.5t165-253.5q66 153 161.5 251.5T2292 1517zm-525 207q34-44 90.5-99t139.5-108q-83-53-139.5-108t-90.5-99q-35 44-92 99.5T1662 1579q82 52 139 107.5t92 99.5zm-598-176q64 188 141.5 285.5T1626 2063l95 58-95 59q-111 69-188 166t-143 288q-63-183-140-282.5T963 2180l-95-59 95-58q112-70 191-170.5t141-282.5zm0 702q28-41 71.5-91.5T1470 2121q-59-47-102.5-96.5T1295 1932q-29 43-73 92t-104 97q61 49 105 99.5t72 91.5z" + }, + "children": [] + }] +}; +exports.u2728 = u2728; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u2733.js b/dist/noto_emoji_regular/u2733.js new file mode 100644 index 000000000..72a476c42 --- /dev/null +++ b/dist/noto_emoji_regular/u2733.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u2733 = void 0; +var u2733 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2307.5 1544q-48.5 35-142.5 35-14 0-56.5-4t-105.5-11l-288-31-282-32 104 82 238 190 188 152q78 65 99.5 109t21.5 76q0 53-37.5 86.5T1963 2230q-80 0-161.5-97.5T1714 2027l-87-107-189-237q-46-57-83-104l16 132 17 150 31 288q6 63 10 105.5t4 55.5q0 91-34.5 142.5T1300 2504t-98.5-51-34.5-143q0-13 4-55.5t11-105.5l31-288 32-282-272 341q-47 59-86 107l-67 81q-58 71-102 96.5t-82 25.5q-49 0-84-37.5t-35-83.5q0-40 26-84t95-100l81-66 226-182 118-94 104-82-282 32-288 31q-63 7-105.5 11t-55.5 4q-95 0-144-35t-49-98 49-98 144-35q13 0 55.5 4t105.5 10l288 31 150 17 132 16q-47-36-104-82l-237-189q-59-47-107-87l-81-67q-73-59-97-102.5T517 783q0-45 34-83t83-38q39 0 84.5 27t85.5 76l83 99 86 107 272 342-32-283-31-288q-7-62-11-104.5t-4-55.5q0-94 34.5-144t98.5-50 98.5 50 34.5 144q0 13-4 55.5T1419 742l-31 288-17 150-16 133 272-342 87-107q6-7 87-104.5t164-97.5q46 0 82.5 34.5T2084 783q0 32-21.5 75.5T1963 966l-82 67q-48 40-106 87l-238 189-104 82 132-16 150-17 288-31q63-6 105.5-10t56.5-4q94 0 142.5 35t48.5 98-48.5 98z" + }, + "children": [] + }] +}; +exports.u2733 = u2733; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u2734.js b/dist/noto_emoji_regular/u2734.js new file mode 100644 index 000000000..922406c42 --- /dev/null +++ b/dist/noto_emoji_regular/u2734.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u2734 = void 0; +var u2734 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2402 1436.5q-8 7.5-18 7.5-229 0-435 24.5t-360 70.5q91 160 206.5 304.5t200 232.5 90.5 93.5 6 15.5q0 8-7 16.5t-19 8.5q-10 0-15.5-5.5t-104.5-100-236-201.5-291-195q-50 179-71.5 381.5T1326 2502q0 11-7.5 18.5t-18.5 7.5-18.5-7.5-7.5-18.5q0-226-24-429.5t-71-364.5q-146 83-284 190.5t-239.5 204-107 102-15.5 5.5q-11 0-18-7t-7-18q0-12 6-17t101.5-105 203-238.5T1010 1539q-161-47-364.5-71T216 1444q-11 0-18.5-7.5T190 1418t7.5-18.5 18.5-7.5q226 0 429.5-24t364.5-71q-87-153-196.5-292T612 770t-98-101-6-17q0-11 7-18.5t18-7.5q5 0 9 2l9 5q154 154 312 279.5t316 215.5q46-154 70.5-359t24.5-435q0-10 7.5-18t18.5-8 18.5 8 7.5 18q0 214 22.5 418.5T1419 1128q161-92 299.5-202t230-196.5 98.5-95 19-8.5q11 0 18.5 7.5t7.5 18.5q0 16-31 41.5t-192 210-280 393.5q154 46 360 70.5t435 24.5q10 0 18 7.5t8 18.5-8 18.5z" + }, + "children": [] + }] +}; +exports.u2734 = u2734; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u2744.js b/dist/noto_emoji_regular/u2744.js new file mode 100644 index 000000000..5a48637ac --- /dev/null +++ b/dist/noto_emoji_regular/u2744.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u2744 = void 0; +var u2744 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2291 1366q9 0 15.5 6t6.5 16v93q0 9-6.5 15.5t-15.5 6.5h-215l168 168q7 7 7 17 0 8-7 15l-66 65q-6 7-15 7t-16-7l-266-265h-415l293 293h377q9 0 15.5 6t6.5 17v92q0 9-6.5 15.5t-15.5 6.5h-238l152 152q5 6 5 16 0 5-1 9t-4 6l-66 66q-3 5-7.5 6t-9.5 1q-10 0-15-7l-152-152v240q0 8-7 15t-15 7h-93q-9 0-16-6.5t-7-15.5v-377l-293-293v415l265 266q6 6 6 16t-6 15l-65 66q-7 7-15 7-10 0-17-7l-168-168v215q0 9-6.5 15.5t-15.5 6.5h-93q-10 0-16-6.5t-6-15.5v-215l-170 168q-7 7-15 7-12 0-15-7l-67-66q-7-6-7-15t7-16l267-266v-415l-295 293v377q0 9-6 15.5t-16 6.5h-93q-9 0-15.5-7t-6.5-15v-240l-152 152q-6 7-16 7t-15-7l-66-66q-7-5-7-15t7-16l152-152H463q-9 0-15.5-5.5T441 1911v-92q0-11 6.5-17t15.5-6h377l293-293H718l-266 265q-6 7-15 7t-16-7l-66-65q-7-7-7-15 0-10 7-17l170-168H308q-9 0-15.5-6.5T286 1481v-93q0-10 6.5-16t15.5-6h217l-170-170q-7-7-7-15 0-10 7-17l66-65q5-6 15-6 11 0 16 6l266 267h415l-293-295H463q-8 0-15-7t-7-15v-93q0-9 6.5-15.5T463 934h240L551 782q-7-5-7-16 0-10 7-15l66-66q7-7 15-7 9 0 16 7l152 152V597q0-8 6.5-15t15.5-7h93q10 0 16 6.5t6 15.5v377l295 293V852L965 586q-7-6-7-16 0-9 7-15l67-66q3-6 13-6 11 0 17 6l170 168V442q0-9 6-15.5t16-6.5h93q9 0 15.5 6.5t6.5 15.5v215l168-168q7-7 17-7 8 0 15 7l65 66q6 5 6 15 0 11-6 16l-265 266v415l293-293V597q0-9 7-15.5t16-6.5h93q8 0 15 7t7 15v240l152-152q7-7 15-7 5 0 9 2l8 5 66 66q3 2 4 6t1 9q0 11-5 16l-152 152h238q22 0 22 22v93q0 10-6.5 16t-15.5 6h-377l-293 295h415l266-267q5-6 16-6 10 0 15 6l66 65q7 7 7 17 0 8-7 15l-168 170h215z" + }, + "children": [] + }] +}; +exports.u2744 = u2744; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u2747.js b/dist/noto_emoji_regular/u2747.js new file mode 100644 index 000000000..fa69aef76 --- /dev/null +++ b/dist/noto_emoji_regular/u2747.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u2747 = void 0; +var u2747 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1413.5 1343.5Q1456 1385 1456 1445q0 64-43.5 105t-101.5 41q-63 0-105.5-45t-42.5-105q0-55 44-97t104-42 102.5 41.5zm-260-929Q1204 338 1301 338q90 0 142.5 80.5T1496 624q0 99-17 206t-57.5 261-116.5 154q-51 0-90-83t-75.5-250-36.5-284q0-137 50.5-213.5zM1469 1979q14 69 20.5 141.5t6.5 131.5q0 123-51.5 204.5T1301 2538q-97 0-147.5-76.5T1103 2248q0-75 14.5-166.5T1151 1917l20-78q24-92 58.5-150t75.5-58q47 0 84.5 74.5T1455 1911zm849-396q-82 52-208 52-58 0-141.5-8.5T1770 1590l-70-16q-121-29-164.5-58.5T1492 1445q0-81 234.5-142t383.5-61q132 0 211 50.5t79 146.5q0 92-82 144zm-1291-53.5q-78 37.5-198 62.5l-70 15q-67 14-139 21t-130 7q-124 0-207-51.5T200 1441q0-99 74-149t215-50q129 0 304 41.5t243.5 77 68.5 84.5q0 47-78 84.5zm562.5-388Q1591 1134 1697 988l83-114q81-112 155.5-210.5T2090 565q46 0 81 35t35 79q0 77-96.5 150.5T2009 906l-372 273q-8 6-18 6-14 0-22.5-10t-8.5-22q0-4 1.5-11.5zM428.5 600q34.5-35 79.5-35 48 0 83.5 25t66.5 65l43 57 56 76 125 172 100 140q14 20 22 31t8 22q0 12-9.5 22t-21.5 10q-11 0-18-6L592 906q-8-6-103-78.5T394 678q0-43 34.5-78zM2161 2094q18 21 31.5 49.5t13.5 53.5q0 44-35 78t-81 34q-81 0-151.5-93.5T1863 2114l-83-112q-44-60-82-114l-68-95q-34-47-38-53.5t-4-16.5q0-12 9.5-22t21.5-10q2 0 8 1.5t106 74.5l164 120 160 119q29 23 54.5 42.5t31.5 25.5zm-1158.5-393q9.5 10 9.5 22 0 11-8 22t-22 30l-100 140-125 173-56 76-43 57q-36 46-74.5 67t-75.5 21q-44 0-79-33.5t-35-77.5q0-33 23-72.5t56-65.5l70-54 161-119 164-120q99-73 104.5-74.5t8.5-1.5q12 0 21.5 10z" + }, + "children": [] + }] +}; +exports.u2747 = u2747; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u274C.js b/dist/noto_emoji_regular/u274C.js new file mode 100644 index 000000000..fbbb2b307 --- /dev/null +++ b/dist/noto_emoji_regular/u274C.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u274C = void 0; +var u274C = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2021 1904q8 8 12 18.5t4 20.5q0 24-16 40l-169 167q-20 18-40 18-24 0-39-18l-473-472-473 472q-9 10-19.5 14t-21.5 4q-25 0-39-18l-168-167q-16-16-16-40 0-10 4-20.5t12-18.5l473-473-473-473q-16-16-16-39 0-11 4-21.5t12-18.5l168-169q15-16 39-16 11 0 21.5 4t19.5 12l473 473 473-473q16-16 39-16 11 0 21.5 4t18.5 12l169 169q8 8 12 18.5t4 21.5q0 23-16 39l-474 473z" + }, + "children": [] + }] +}; +exports.u274C = u274C; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u274E.js b/dist/noto_emoji_regular/u274E.js new file mode 100644 index 000000000..41f34607f --- /dev/null +++ b/dist/noto_emoji_regular/u274E.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u274E = void 0; +var u274E = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2248 425q23 0 40 17.5t17 41.5v1893q0 23-17 40t-40 17H355q-24 0-41.5-17t-17.5-40V484q0-24 17.5-41.5T355 425h1893zm-700 1005l474-472q16-16 16-40 0-11-4-21.5t-12-18.5l-169-168q-17-17-39-17-23 0-40 17l-473 472-472-472q-20-17-42-17t-39 17L581 878q-17 17-17 40t17 40l472 472-472 473q-17 17-17 40 0 22 17 39l167 169q16 16 39 16t42-16l472-474 473 474q16 16 40 16 10 0 20.5-4t18.5-12l169-169q16-16 16-39 0-11-4-21.5t-12-18.5z" + }, + "children": [] + }] +}; +exports.u274E = u274E; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u2753.js b/dist/noto_emoji_regular/u2753.js new file mode 100644 index 000000000..258fc3d06 --- /dev/null +++ b/dist/noto_emoji_regular/u2753.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u2753 = void 0; +var u2753 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1077 1716v-86q0-131 64.5-223t194-186T1465 993q0-66-45.5-109.5T1282 840q-80 0-173.5 34T917 956L797 698q134-74 260-110t229-36q242 0 379 114t137 311q0 122-49 211.5T1603.5 1359 1444 1494t-59 153v69h-308zm316.5 253q54.5 51 54.5 147t-56.5 147.5T1245 2315q-97 0-151.5-52t-54.5-147 52-146.5 154-51.5q94 0 148.5 51z" + }, + "children": [] + }] +}; +exports.u2753 = u2753; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u2754.js b/dist/noto_emoji_regular/u2754.js new file mode 100644 index 000000000..4d33f6892 --- /dev/null +++ b/dist/noto_emoji_regular/u2754.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u2754 = void 0; +var u2754 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1070 1937.5q65-62.5 179-62.5 112 0 178.5 61.5T1494 2112q0 110-66 174.5t-176 64.5q-113 0-180-62.5t-67-176.5q0-112 65-174.5zm56.5 294Q1168 2273 1249 2273q77 0 121.5-41t44.5-120q0-78-41.5-118.5T1252 1953q-86 0-126.5 39.5T1085 2112q0 78 41.5 119.5zM1431 1753h-387v-126q0-103 40.5-189.5t118-153.5 153-130 75.5-165q0-50-33.5-82T1289 875q-75 2-165 34t-183 78l-36 18-152-326 32-18q123-70 256.5-111t251.5-41q254 0 404.5 124T1848 972q0 95-26.5 170t-82 140.5T1582 1429t-126.5 115.5-24.5 99.5v109zm-308-79h229v-30q0-93 42.5-147t160-146.5T1720 1176t48-204q0-183-126-283t-349-100q-105 0-222 34.5T856 711l86 189q97-45 183-74t164-29q102 0 161 51.5t59 140.5-38 150.5-146 143-155 160-47 184.5v47z" + }, + "children": [] + }] +}; +exports.u2754 = u2754; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u2755.js b/dist/noto_emoji_regular/u2755.js new file mode 100644 index 000000000..58c540d6e --- /dev/null +++ b/dist/noto_emoji_regular/u2755.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u2755 = void 0; +var u2755 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1173 1628q-22 0-38.5-15.5T1116 1577l-68-993q0-26 17-42t39-16h392q25 0 40.5 18t15.5 40l-68 993q-2 20-19 35.5t-39 15.5h-253zm20-80h212l66-942h-344zm-71 384.5q66-61.5 177-61.5t178 62.5 67 174.5q0 111-66 175t-177 64q-113 0-179-62.5t-66-176.5 66-175.5zm54 296.5q42 40 123 40t124-41.5 43-119.5q0-83-44-120t-121-37q-86 0-126.5 40t-40.5 117q0 81 42 121z" + }, + "children": [] + }] +}; +exports.u2755 = u2755; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u2757.js b/dist/noto_emoji_regular/u2757.js new file mode 100644 index 000000000..f5e7a585a --- /dev/null +++ b/dist/noto_emoji_regular/u2757.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u2757 = void 0; +var u2757 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1173 1585q-6 0-11.5-4t-5.5-10l-70-993q0-5 5-10t13-5h392q5 0 11 4.5t6 10.5l-69 993q-2 14-18 14h-253zm278.5 375q52.5 52 52.5 147t-53 146-149 51q-99 0-153-51t-54-146q0-101 54-150t153-49q97 0 149.5 52z" + }, + "children": [] + }] +}; +exports.u2757 = u2757; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u2764.js b/dist/noto_emoji_regular/u2764.js new file mode 100644 index 000000000..9e560033d --- /dev/null +++ b/dist/noto_emoji_regular/u2764.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u2764 = void 0; +var u2764 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2275.5 1324q-36.5 97-96.5 173.5T2033 1644t-291.5 201.5-290 217.5-104.5 129-48 43q-7 0-16.5-3t-43-59-122-137.5-270-196.5T566 1643t-158-162-89-172.5-31-204.5q0-197 153.5-341T814 619q159 0 291.5 80T1300 915q62-135 193.5-215.5T1785 619q218 0 372.5 143.5T2312 1104q0 123-36.5 220z" + }, + "children": [] + }] +}; +exports.u2764 = u2764; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u2795.js b/dist/noto_emoji_regular/u2795.js new file mode 100644 index 000000000..0c53da416 --- /dev/null +++ b/dist/noto_emoji_regular/u2795.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u2795 = void 0; +var u2795 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2200 1550q0 24-16.5 40t-39.5 16h-614q-23 0-39.5 16.5T1474 1662v613q0 23-16.5 40t-39.5 17h-237q-24 0-40-17t-16-40v-613q0-23-16.5-39.5T1068 1606H456q-23 0-39.5-16t-16.5-40v-237q0-24 16.5-40t39.5-16h612q24 0 40.5-16.5t16.5-39.5V588q0-23 16-40t40-17h237q23 0 39.5 17t16.5 40v613q0 23 16.5 39.5t39.5 16.5h614q23 0 39.5 16t16.5 40v237z" + }, + "children": [] + }] +}; +exports.u2795 = u2795; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u2796.js b/dist/noto_emoji_regular/u2796.js new file mode 100644 index 000000000..d136b3ac5 --- /dev/null +++ b/dist/noto_emoji_regular/u2796.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u2796 = void 0; +var u2796 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2144 1255q23 0 39.5 16.5t16.5 39.5v237q0 24-16.5 40t-39.5 16H456q-23 0-39.5-16t-16.5-40v-237q0-23 16.5-39.5T456 1255h1688z" + }, + "children": [] + }] +}; +exports.u2796 = u2796; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u2797.js b/dist/noto_emoji_regular/u2797.js new file mode 100644 index 000000000..b7f151998 --- /dev/null +++ b/dist/noto_emoji_regular/u2797.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u2797 = void 0; +var u2797 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1147 611q63-65 153-65 91 0 154.5 64.5T1518 764q0 90-64 154t-154 64q-89 0-152.5-64T1084 764q0-88 63-153zm307.5 1638.5Q1391 2314 1300 2314q-90 0-153-65t-63-153q0-90 64.5-154t151.5-64q88 0 153 64t65 154q0 89-63.5 153.5zM2144 1256q23 0 39.5 16.5t16.5 39.5v237q0 23-16.5 39.5T2144 1605H456q-23 0-39.5-16.5T400 1549v-237q0-23 16.5-39.5T456 1256h1688z" + }, + "children": [] + }] +}; +exports.u2797 = u2797; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u27A1.js b/dist/noto_emoji_regular/u27A1.js new file mode 100644 index 000000000..61d50b2b1 --- /dev/null +++ b/dist/noto_emoji_regular/u27A1.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u27A1 = void 0; +var u27A1 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2147 1431l-877 643v-402H452v-479h818V787z" + }, + "children": [] + }] +}; +exports.u27A1 = u27A1; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u27B0.js b/dist/noto_emoji_regular/u27B0.js new file mode 100644 index 000000000..a65ba0ef4 --- /dev/null +++ b/dist/noto_emoji_regular/u27B0.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u27B0 = void 0; +var u27B0 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1300 864q150-57 291-79t265-22q134 0 246.5 18.5T2287 819v277q-8-8-138.5-37.5T1855 1029q-58 0-119.5 4.5T1608 1051q105 97 158 221t53 269q0 241-142.5 391T1302 2082q-233 0-377-149t-144-392q0-145 53.5-269T991 1051q-66-13-127.5-17.5T744 1029q-163 0-294 30t-138 37V819q100-27 207-41.5T743 763q124 0 266 22t291 79zm0 289q-256 134-256 388 0 125 69.5 201t185.5 76 186-73.5 70-202.5q0-255-255-389z" + }, + "children": [] + }] +}; +exports.u27B0 = u27B0; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u27BF.js b/dist/noto_emoji_regular/u27BF.js new file mode 100644 index 000000000..53b983ef3 --- /dev/null +++ b/dist/noto_emoji_regular/u27BF.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u27BF = void 0; +var u27BF = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1845 909q142-54 275.5-74t250.5-20h38q18 0 35 1v256q-17 0-35-1h-35q-56 0-114.5 4.5T2138 1093q100 94 151 212t51 258q0 223-139 370.5T1841 2081q-218 0-359-146t-141-374q0-143 55-265.5t163-217.5q-56-16-121.5-25t-137.5-9q-73 0-138 9t-121 25q106 96 162 219t56 269q0 220-139 367.5T762 2081t-360.5-145.5T260 1563q0-140 51-258t151-212q-63-13-122-17.5t-115-4.5h-35q-17 0-34 1V816q17 0 36-1h37q117 0 250 20t274 74q147-65 284.5-93.5T1300 787q132 0 271 30t274 92zM759 1192q-244 125-244 369 0 121 65 193t177 72q114 0 180-69t66-196q0-242-244-369zm1081 0q-244 125-244 369 0 120 64.5 192.5T1838 1826q114 0 180-69t66-196q0-242-244-369z" + }, + "children": [] + }] +}; +exports.u27BF = u27BF; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u2934.js b/dist/noto_emoji_regular/u2934.js new file mode 100644 index 000000000..7bc9ebaa8 --- /dev/null +++ b/dist/noto_emoji_regular/u2934.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u2934 = void 0; +var u2934 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1412 1614q-102 184-244 279.5T848 1989q-62 0-114.5-10t-84.5-21v-405q35 19 84.5 33t94.5 14q77 0 145.5-44t109.5-120l89-162-453-247 958-289 274 961-452-246z" + }, + "children": [] + }] +}; +exports.u2934 = u2934; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u2935.js b/dist/noto_emoji_regular/u2935.js new file mode 100644 index 000000000..11ab7223a --- /dev/null +++ b/dist/noto_emoji_regular/u2935.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u2935 = void 0; +var u2935 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1488 1456h513l-700 711-701-711h515v-185q0-96-49.5-172.5T936.5 991 790 960l192-356q222 43 364 213t142 455v184z" + }, + "children": [] + }] +}; +exports.u2935 = u2935; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u2B05.js b/dist/noto_emoji_regular/u2B05.js new file mode 100644 index 000000000..f0195d2e1 --- /dev/null +++ b/dist/noto_emoji_regular/u2B05.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u2B05 = void 0; +var u2B05 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1329 787v406h818v479h-818v402l-877-643z" + }, + "children": [] + }] +}; +exports.u2B05 = u2B05; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u2B06.js b/dist/noto_emoji_regular/u2B06.js new file mode 100644 index 000000000..7c707977d --- /dev/null +++ b/dist/noto_emoji_regular/u2B06.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u2B06 = void 0; +var u2B06 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1943 1461h-406v818h-479v-818H656l643-877z" + }, + "children": [] + }] +}; +exports.u2B06 = u2B06; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u2B07.js b/dist/noto_emoji_regular/u2B07.js new file mode 100644 index 000000000..87ae631d7 --- /dev/null +++ b/dist/noto_emoji_regular/u2B07.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u2B07 = void 0; +var u2B07 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M1299 2278l-643-877h402V583h479v818h406z" + }, + "children": [] + }] +}; +exports.u2B07 = u2B07; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u2B1B.js b/dist/noto_emoji_regular/u2B1B.js new file mode 100644 index 000000000..793627c6e --- /dev/null +++ b/dist/noto_emoji_regular/u2B1B.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u2B1B = void 0; +var u2B1B = { + "viewBox": "0 0 2639.837 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2465.837 239q24 0 40 16t16 40v2255q0 23-16 38.5t-40 15.5h-2255q-23 0-38.5-15.5t-15.5-38.5V295q0-24 15.5-40t38.5-16h2255z" + }, + "children": [] + }] +}; +exports.u2B1B = u2B1B; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u2B1C.js b/dist/noto_emoji_regular/u2B1C.js new file mode 100644 index 000000000..54dc5fdd5 --- /dev/null +++ b/dist/noto_emoji_regular/u2B1C.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u2B1C = void 0; +var u2B1C = { + "viewBox": "0 0 2640.2811 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2466.28 238q23 0 39.5 16t16.5 40v2255q0 23-16.5 38.5t-39.5 15.5h-2255q-23 0-38.5-15.5t-15.5-38.5V294q0-24 15.5-40t38.5-16h2255zm-82 138h-2090v2090h2090V376z" + }, + "children": [] + }] +}; +exports.u2B1C = u2B1C; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u2B50.js b/dist/noto_emoji_regular/u2B50.js new file mode 100644 index 000000000..428baa883 --- /dev/null +++ b/dist/noto_emoji_regular/u2B50.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u2B50 = void 0; +var u2B50 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2181 1174v7q0 19-15 36l-444 368 140 569 1 11q0 17-14 31t-31 14q-14 0-25-8l-492-311-493 311q-11 8-24 8-18 0-32-13.5t-14-31.5q0-7 2-11l139-569-443-368q-17-15-17-36 0-19 12.5-30.5T462 1136l579-47 218-531q11-29 42-29 14 0 25 7.5t16 21.5l220 531 579 47q18 3 29 15t11 23zm-330 98l-400-32-150-366-150 366-399 32 306 254-96 392 339-215 340 215-97-392z" + }, + "children": [] + }] +}; +exports.u2B50 = u2B50; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u2B55.js b/dist/noto_emoji_regular/u2B55.js new file mode 100644 index 000000000..d812b7e6b --- /dev/null +++ b/dist/noto_emoji_regular/u2B55.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u2B55 = void 0; +var u2B55 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2117.5 1909.5Q1988 2130 1768 2255t-469 125q-252 0-472.5-127T479 1906t-127-473q0-251 126.5-471.5t347.5-348T1299 486q250 0 470.5 125.5t349 346.5 128.5 475q0 256-129.5 476.5zM1983 1039q-106-183-289-289t-395-106-395 105.5-289.5 289T508 1433t106.5 395 289 289.5T1299 2223q212 0 394.5-106t289-290 106.5-394q0-211-106-394z" + }, + "children": [] + }] +}; +exports.u2B55 = u2B55; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u3030.js b/dist/noto_emoji_regular/u3030.js new file mode 100644 index 000000000..4b8de28ec --- /dev/null +++ b/dist/noto_emoji_regular/u3030.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u3030 = void 0; +var u3030 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2377 1556q-98 69-179.5 97t-150.5 28q-104 0-199-61.5t-170-93.5-148-32q-151 0-280.5 77.5T1021 1649q-92 0-226-79.5T559 1490q-54 0-108.5 19T327 1573l-104-222q81-81 169.5-123t180.5-42q88 0 166 37t151.5 80.5T1023 1347q83 0 220.5-80.5T1530 1186q112 0 272.5 100t250.5 100q45 0 100.5-19.5T2285 1297z" + }, + "children": [] + }] +}; +exports.u3030 = u3030; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u303D.js b/dist/noto_emoji_regular/u303D.js new file mode 100644 index 000000000..29b775299 --- /dev/null +++ b/dist/noto_emoji_regular/u303D.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u303D = void 0; +var u303D = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2177 2100l-270 278q-6 6-14 6-25 0-168-165.5T1482 1830t-138-467q-16-98-23-186l-177 207q-23 26-54 40t-65 14q-56 0-98.5-34t-55.5-88l-82-347-172 165q-4 2-6 4t-7 2q-10 0-16-7L419 914q-4-8-4-13 0-7 6-13l334-314q30-28 65-45t69-17q55 0 88.5 36t48.5 96l80 303 244-268q74-83 147-83 67 0 103.5 48t36.5 130v92q0 272 63 481t182 389.5 294 336.5q8 4 8 13 0 7-7 14z" + }, + "children": [] + }] +}; +exports.u303D = u303D; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u3297.js b/dist/noto_emoji_regular/u3297.js new file mode 100644 index 000000000..9c0c3581e --- /dev/null +++ b/dist/noto_emoji_regular/u3297.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u3297 = void 0; +var u3297 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2228 1967.5Q2084 2217 1834.5 2361T1299 2505q-288 0-539.5-147t-392-395.5T227 1432t140.5-530.5 392-395.5T1299 359q286 0 535.5 144T2228 896.5t144 535.5-144 535.5zm-68.5-1033Q2026 704 1795 571.5T1299 439q-262 0-491 130.5T442.5 931 306 1432q0 266 133.5 496.5T803 2293t496 134 496.5-133.5 364-364.5 133.5-497q0-267-133.5-497.5zM1945 1887q11 0 18.5 7t7.5 18v157q0 20-18 24.5t-61 4.5q-103 0-176.5-53t-102-209.5T1582 1494h-46q-5 191-60 354t-128 261q-7 9-19 9-5 0-11-2l-147-77q-6-3-9.5-9.5t-3.5-12.5q0-9 7-15 70-105 111-228.5t47-279.5h-86q-11 0-17.5-7t-6.5-18V855q0-10 6.5-17t17.5-7h662q11 0 18 7t7 17v614q0 11-7 18t-18 7h-104q0 66 7 118l12 121q10 104 33.5 129.5t74.5 25.5q9 0 14-1h9zm-248-595q10 0 10-8v-242q0-10-10-10h-258q-10 0-10 10v242q0 8 10 8h258zm-468 214q3 3 4 7.5t1 8.5q0 12-6 18l-106 106q-6 8-16 8-12 0-18-8l-69-69v488q0 11-7 18t-17 7H800q-9 0-17-7t-8-18v-529l-102 100q-6 6-18 6-10 0-17-7l-120-126q-7-7-7-14 0-6 1-11.5t6-10.5l308-293H600q-9 0-16-7t-7-18V980q0-9 7-17t16-8h175V796q0-10 8-17t17-7h195q10 0 17 7t7 17v159h121q11 0 18.5 8t7.5 17v175q0 12-8 18l-132 125z" + }, + "children": [] + }] +}; +exports.u3297 = u3297; \ No newline at end of file diff --git a/dist/noto_emoji_regular/u3299.js b/dist/noto_emoji_regular/u3299.js new file mode 100644 index 000000000..7ac26b0a6 --- /dev/null +++ b/dist/noto_emoji_regular/u3299.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.u3299 = void 0; +var u3299 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2228 1967.5Q2084 2217 1834.5 2361T1299 2505q-288 0-539.5-147t-392-395.5T227 1432t140.5-530.5 392-395.5T1299 359q286 0 535.5 144T2228 896.5t144 535.5-144 535.5zm-68.5-1033Q2026 704 1795 571.5T1299 439q-262 0-491 130.5T442.5 931 306 1432q0 266 133.5 496.5T803 2293t496 134 496.5-133.5 364-364.5 133.5-497q0-267-133.5-497.5zM1240 1680q0 4 1 10 0 7-3 13.5t-9 9.5l-101 51q-3 0-11 1-16 0-22-14l-33-72v394q0 11-7 18t-18 7H877q-11 0-18-7t-7-18v-375l-96 196q-3 8-10.5 10.5T733 1907q-7 0-10-2l-135-66q-14-7-14-22 0-7 3-11l225-459H648q-11 0-18-7t-7-18v-145q0-11 7-18.5t18-7.5h204v-72l-127 39q-3 2-8 2-17 0-24-17l-48-155q0-2-1-6 0-17 18-24l466-146q2 0 4-1t4-1q9 0 14.5 6t8.5 12l48 154 1 8q0 19-17 22l-129 41v138h142q11 0 18 7.5t7 18.5v145q0 11-7 18t-18 7h-118zm744 140q11 6 11 18l-2 6-3 15q-16 66-73.5 126.5T1770 2054l-27 2q-13 0-26 1-74 0-129-31t-86-86q-42 45-97.5 90.5T1334 2076q-9 0-19-8l-109-124q-6-6-6-16 0-17 26-31t88.5-71.5T1437 1683q-15-91-31-227t-32-330q0-10 5.5-17t16.5-9l162-13q26 0 27.5 24.5t10.5 94.5l10 85q11-53 22.5-122t22.5-160q0-10 8.5-16t16.5-6q4 0 6 1l157 44q9 3 13 10.5t4 15.5q-10 120-36.5 241.5T1769 1491l-15 44q-21 57-45 105t-50 92q8 59 26.5 87t65.5 28q36 0 53-28t22.5-54.5 27.5-26.5q8 0 13 4zm-652-894q-5-4-9.5-9t-4.5-11q0-3 1-7t3-7l60-111q3-6 9.5-9.5t12.5-3.5q7 0 11 2l209 114q13 7 13 23 0 8-3 11l-60 111q-3 6-9.5 10t-12.5 4-12-3zm697 725v6q0 6-5 13t-14 9l-126 22q-10 0-18-5t-10-16l-39-234q0-11 4.5-19t15.5-10l125-21q25 0 29 21zm-814-256q0-11 7-18t18-7h127q10 0 17 7t7 18v190q0 11-7 18t-17 7h-127q-11 0-18-7t-7-18v-190z" + }, + "children": [] + }] +}; +exports.u3299 = u3299; \ No newline at end of file diff --git a/dist/noto_emoji_regular/uFE4E5.js b/dist/noto_emoji_regular/uFE4E5.js new file mode 100644 index 000000000..b5afef018 --- /dev/null +++ b/dist/noto_emoji_regular/uFE4E5.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.uFE4E5 = void 0; +var uFE4E5 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2503 1767q3 9 4 17.5t1 18.5q0 27-16 57.5T2330.5 2013 2002 2202t-417 67q-147 0-310.5-22t-253.5-22q-193 0-350.5 61T446 2401t-112 54q-46 0-78-29t-36-73L93 1081q0-12-1-17 3-31 12.5-49.5t43-63T247 850t157-101.5T613.5 675 884 646q135 0 250 8t218 8q231 0 350-57.5T1884 484t86.5-67.5 33.5-4.5q41 0 69.5 22.5T2112 492zm-107 34L2004 526q-131 131-274 190t-378 59q-103 0-217-7.5T884 760q-230 0-404 78t-275 229l128 1275q125-104 306.5-167.5T1021 2111q85 0 251 22t313 22q253 0 440.5-84t370.5-270zm-857-627q158 114 158 290 0 137-113 233.5t-265 96.5q-212 0-361.5-115.5T808 1378q0-143 105.5-230.5T1184 1060q197 0 355 114z" + }, + "children": [] + }] +}; +exports.uFE4E5 = uFE4E5; \ No newline at end of file diff --git a/dist/noto_emoji_regular/uFE4E6.js b/dist/noto_emoji_regular/uFE4E6.js new file mode 100644 index 000000000..900898ac1 --- /dev/null +++ b/dist/noto_emoji_regular/uFE4E6.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.uFE4E6 = void 0; +var uFE4E6 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2503 1767q3 9 4 17.5t1 18.5q0 27-16 57.5T2330.5 2013 2002 2202t-417 67q-146 0-307.5-22t-255.5-22q-131 0-256.5 32.5t-218 81.5-130.5 82.5-84 33.5q-44 0-76.5-29.5T220 2353L93 1078q0-4-1-14 3-31 12.5-49.5t43-63T247 850t157-101.5T613.5 675 884 646q135 0 250 8t218 8q231 0 350-57.5T1884 484t86.5-67.5 33.5-4.5q41 0 69 22.5t39 57.5zm-107 34l-34-109q-191 152-376.5 219.5T1549 1979q-72 0-130-3.5t-145-10.5l-120-10q-60-4-129-4-173 0-323.5 45.5t-253.5 115T320 2215l14 127q162-123 334.5-177t353.5-54q95 0 256.5 22t306.5 22q250 0 438.5-83t372.5-271zM305 2070q140-114 325-175.5t395-61.5q96 0 256.5 14.5T1555 1862q239 0 412-68.5t358-223.5l-39-125q-162 145-344 213.5t-450 68.5q-81 0-143-3.5t-118-8.5l-103-8q-50-4-113-4-211 0-401 74t-318 190zm1910-859q-150 143-313 210t-397 67q-65 0-132.5-4t-139.5-9l25 125q62 4 119 7t112 3q259 0 431-70t328-221zm-70-228q-162 146-331.5 209t-440.5 63q-44 0-89.5-1t-93.5-3l21 105h9q4 0 9 1 76 5 144.5 9t131.5 4q231 0 380.5-70t289.5-217zm-915-211l-131-5 24 127q115 9 219 9 253 0 413-66t281-210l-32-102q-129 129-272.5 189.5T1352 775q-59 0-122-3zm847-13q-130 131-302 197t-430 66q-50 0-99.5-2t-100.5-5l23 116q58 4 111 5t100 1q265 0 419.5-64T2107 857zM393 1512l19 8q5 2 7.5 6t3.5 7l4 30q0 5 3 5t6-4l19-20q4-6 13-6h3l29 6q5 0 5-4l-1-1v-2l-14-26q-4-6-4-10 0-2 1-4l17-31q0-4-5-4l-29 5h-3q-10 0-14-4l-19-21-5-2q-4 0-4 5l-3 28q0 10-10 15l-26 12q-3 0-3 5 0 3 3 5zm596-178q3-3 3-4 0-4-6-4h-29q-10 0-15-8l-16-24q-2-2-4-2-4 0-4 4l-8 26q-2 4-5 7.5t-8 4.5l-27 8q-6 3-6 5 2 2 3 4l23 16q3 2 6 6.5t3 8.5l-3 29q0 5 4 5 3 0 4-1l23-16q5-5 11-5 4 0 6 2l27 11h2q4 0 4-3v-3l-9-28q0-2-1-6 0-7 4-11zm-740 76q-3 3-3 4 0 4 6 4l27 5q13 4 14 11l11 28q0 4 4 4 2 0 4-4l14-26q5-9 14-9l30-1q5 0 5-4 0-2-2-4l-21-22q-4-4-4-14v-3l8-27v-3q0-2-4-2h-3l-26 12q-3 0-7 1-7 0-11-3l-24-15h-2l-1-1q-4 0-4 6l4 28q0 10-7 17zm122-232q3 2 6.5 6.5t4.5 8.5l4 29q0 5 3 5 2 0 4-2l21-24q4-4 12-4h3l28 6q7 0 7-4l-1-1v-2l-15-26q-3-3-3-8t3-10l15-27q0-5-7-5l-29 6h-2q-9 0-13-6l-20-19-4-2q-5 0-5 5l-2 27q0 5-3.5 9t-6.5 5l-26 14q-4 0-4 5 0 3 4 3zm455 300q0-3-4-3t-4 4l-6 28q-2 10-12 12l-27 10q-5 2-5 4 0 4 3 5l25 14q8 6 8 15l1 30q0 6 3 6l4-3 22-19q4-4 13-4h4l28 9h2q4 0 4-2v-3l-11-28-1-6q0-4 2-10l17-23q0-2 1-4 0-5-5-5l-29 3q-9 0-15-8zm74-473q-5 0-8.5-2.5T885 997l-14-25q-2-2-5-2t-3 2l-11 28q-2 4-5 7.5t-7 3.5l-29 7q-4 0-4 4 0 3 3 4l21 18q4 2 5.5 6t1.5 9l-4 29q0 5 4 5 3 0 4-1l24-17q2 0 8-1 7 0 10 1l26 11q0 2 4 2 2 0 2-3v-3l-8-29q0-2-1-4 0-3 1.5-6.5t3.5-6.5l19-20q3 0 3-4t-5-4zM694 766q-2-3-5-3-4 0-4 4l-6 29q0 3-3 7t-8 5l-27 11q-4 0-4 4 0 3 4 4l25 14q8 6 8 14l1 30q0 5 3 5 2 0 4-2l22-20 5-3q3 0 6-1 4 2 5 2l28 8h3q4 0 4-4v-3l-13-27q0-2-1-6 0-6 3-11l16-23q2 0 2-4 0-3-5-3l-32 1q-10 0-14-6zm-191 582q0 5 4 5 2 0 4-2l22-21q9-4 12-4l32 10h2q4 0 4-3 0-2-1-4l-12-28q-2 0-2-7 0-2 1-5l2-4 17-23q0-2 1-5 0-2-6-2l-28 2q-5 0-9-1.5t-6-4.5l-18-22q-3-3-6-3-2 0-2 4l-7 27q-3 10-11 13l-28 11q-2 0-2 4 0 3 2 4l25 15q8 6 8 14zm-89 392l-14-13q-4-3-4-13v-3l7-27v-2q0-5-4-5h-2l-1 1-26 12q-5 3-10 3-4 0-7-3l-24-15h-3q-4 0-4 4v2l4 27v3q0 8-6 14l-21 20q-3 3-3 4 0 3 5 3l28 4 9 4q4 3 6 7l11 26q0 4 4 4 3 0 4-3l14-27q0-3 4.5-5.5t7.5-2.5l30-3q4 0 4-4 0-3-1-4zm161-677l3 1q8 6 8 15l-1 29q0 6 4 6 3 0 4-2l22-19 5-2q3 0 7-1h4l28 10 4 1q3 0 3-4v-3l-11-27q-2 0-2-5 0-7 4-11l17-24 1-4q0-3-4-3h-31q-10 0-14-6l-16-24q-4-2-5-2-4 0-4 4l-7 27q-2 10-12 12l-27 10q-4 0-4 4 0 3 2 4zm509 107q0-4-6-4l-29-3q-10 0-15-10l-13-24q-3-3-5-3-4 0-4 4l-11 25q-2 10-12 12l-29 6q-5 0-5 2 0 3 4 4l20 20q2 2 4.5 5.5t2.5 6.5v3l-4 28q0 7 3 7t4-1l25-17q2 0 8-1 5 0 8 1l30 14q3 0 3-4v-3l-7-28v-3q0-7 4-13zm-461 234l-2 2q-2 2-2 4l30 16q3 0 6 5l4 7 3 30q0 6 4 6l4-3 19-20q6-6 14-6h2l29 7h3q3 0 3-3v-4l-14-25-1-6q0-7 2-11l14-25v-4q0-3-4-3l-29 4h-3q-4 0-7.5-1t-5.5-4l-19-22q-2 0-5-1-2 0-2 4l-6 27q-2 10-9 15zm13 212q-5-3-5-9 0-4 3-7l14-26 1-3q0-3-4-3l-30 6q-4 0-9-1t-7-5l-21-20-4-1q-4 0-4 4l-3 28q0 9-10 14l-26 14q-2 0-2 4 0 3 2 4l28 11q8 6 9 14l5 28q0 6 4 6l4-3 19-22q2-2 5.5-3.5t8.5-1.5h2l29 4h3q3 0 3-1 0-3-2-5zm-387-611l-11-6-2-2q-5 0-5 7l5 27q0 10-7 17l-24 18v2l-1 2q0 4 4 4l28 5q8 3 13 11l11 28q0 4 4 4 3 0 4-3l14-26q2-4 6.5-7t7.5-3h30q5 0 5-4l-2-4-21-22q-4-3-4-13v-3l8-28 2-2q0-4-5-4-2 0-4 1l-26 12q0 2-7 2-2 0-4-1l-5-2zm151-97q-3 0-3 6 0 2 3 2l26 13q4 0 7.5 4.5t3.5 8.5l4 29q0 6 3 6 2-2 4-3l20-22q6-6 13-6h2l29 6h3q4 0 4-3t-1-4l-15-26q-2 0-2-8 0-6 2-8l13-25q2 0 2-4 0-3-4-3h-2l-29 6h-2q-10 0-14-6l-19-20q-3-3-4-3-4 0-4 5l-3 28q-2 10-11 15zm334 260q0 4-4 7.5t-7 5.5l-29 8q-4 2-4 4t4 4l24 15q8 8 8 15v30q0 6 3 6 2 0 4-1l23-20q2-4 10-4 4 0 5 2l29 9q0 2 2 2h1q2 0 2-5v-2l-11-28q0-2-1-4 0-8 4-12l18-23q0-2 1-4 0-3-4-3h-30q-10 0-15-7l-16-23h-2q-2-3-4-3-3 0-3 4zm341 296q-2-2-4-2-4 0-4 4l-8 27q0 3-4.5 6.5t-7.5 4.5l-29 8-6 4q0 2 4 4l24 17q7 5 7 15l-2 29q0 4 2 5 4 0 5-1l23-17 5-3q3 0 6-1 2 0 3 1t3 1l29 12h1q3 0 3-3v-4l-9-27q0-2-1-4 0-9 4-13l19-22q2 0 2-4t-4-4h-31q-9 0-15-8zM942 762l-1-5q-2-2-4-2-3 0-4 4l-12 24q-2 5-6 7.5t-8 3.5l-29 5q-4 0-4 4l3 4 22 19q2 2 3.5 7t1.5 9l-5 29v3q0 3 2 3 3 0 4-2l25-15 4-1h4q6 0 9 1l26 14 4 1q2 0 2-3v-2l-6-29q0-5 1-9.5t4-6.5l21-21q2-2 2-4 0-3-4-4l-30-3q-3 0-7.5-3t-6.5-7z" + }, + "children": [] + }] +}; +exports.uFE4E6 = uFE4E6; \ No newline at end of file diff --git a/dist/noto_emoji_regular/uFE4E7.js b/dist/noto_emoji_regular/uFE4E7.js new file mode 100644 index 000000000..b65a836fc --- /dev/null +++ b/dist/noto_emoji_regular/uFE4E7.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.uFE4E7 = void 0; +var uFE4E7 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2503 1767q3 9 4 17.5t1 18.5q0 27-16 57.5T2330.5 2013 2002 2202t-417 67q-147 0-310.5-22t-253.5-22q-193 0-350.5 61T446 2401t-112 54q-46 0-78-29t-36-73L93 1081q0-12-1-17 3-31 12.5-49.5t43-63T247 850t157-101.5T613.5 675 884 646q135 0 250 8t218 8q231 0 350-57.5T1884 484t86.5-67.5 33.5-4.5q41 0 69.5 22.5T2112 492zm-130-40l-111-361v557q29-21 55-45.5t56-54.5v-96zm-189-618l-111-361v1301q14-9 26-15l23-13q14-7 29-16t33-23v-873zm-189-574q-22 20-46.5 45t-64.5 50v1491q28-8 55.5-17t55.5-20V535zm-189 144l-18 8q-14 6-31 14l-34 16q-18 8-28 12v816q24 117 51.5 236.5T1806 2019V679zm-187 1475l48-3q25 0 49-2.5t40-4.5q-79-288-162-688.5T1464 772q-28 0-55.5 1.5T1352 775q-48 0-106-3l-231-10q-55-2-97-2-30 0-64.5 1t-57.5 3q33 319 85.5 705T984 2112l18-1h19q85 0 251 22t310 22q14 0 37-1zm-723-86H305l13 111h312q68-23 134-39.5t141-21.5zm-563 274q5-3 40-30t86-54H325zm-34-352h583l-19-111H288zm-20-190h572l-18-111H268zm543-189l-17-110H249l11 110h562zm-581-189h553l-13-111H230zm-19-189h548l-13-111H211zm103-300q-26 21-41 36t-34 39l-30 36h527l-13-111H325zm393-161q-43 2-138.5 30.5T448 855h278zm897-21q-19 4-37 7l-36 6 32 178q18 100 41 218V751z" + }, + "children": [] + }] +}; +exports.uFE4E7 = uFE4E7; \ No newline at end of file diff --git a/dist/noto_emoji_regular/uFE4E8.js b/dist/noto_emoji_regular/uFE4E8.js new file mode 100644 index 000000000..5de3198fe --- /dev/null +++ b/dist/noto_emoji_regular/uFE4E8.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.uFE4E8 = void 0; +var uFE4E8 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2503 1767q3 9 4 17.5t1 18.5q0 29-17 59t-161.5 151.5T2002 2202t-417 67q-94 0-169-6.5t-147-15.5l-121-15q-58-7-127-7-138 0-262 32t-218.5 84-128 83-78.5 31q-48 0-78.5-29.5T220 2353L93 1078l-1-15q0-27 12-48l22-35q43-66 145.5-148.5t261-134T884 646q135 0 250 8t218 8q228 0 349-58t182.5-120.5 86-67 34.5-4.5q39 0 68.5 22.5T2112 492zm-107 34l-56-179q-13-40-35-110.5t-29-93.5l-21-71q-2-7-3-13-113 142-287 224t-359 82q-168 0-332-16.5t-252-16.5q-205 0-397 78.5T290 1907l44 435 48-34q132-94 295-145.5t345-51.5q94 0 253 22t310 22q250 0 437.5-82.5T2396 1801zm-445-300q28-14 55.5-31.5t55.5-38.5V930q-28 27-55.5 50.5T1951 1025v476zm-189 63q28-5 55.5-12t55.5-18v-459q-27 17-55 30t-56 24v435zM436 1715q24-16 51.5-30.5T546 1655v-421q-31 14-58.5 29t-51.5 31v421zm189-93q52-21 111-36v-411q-29 5-57 12.5t-54 16.5v418zm948-41q28 0 56-2l53-4v-422q-26 8-53 13t-56 9v406zm-758-14l54-8q27-4 56-7v-395q-56 0-110 6v404zm567 7l111 5v-397q-26 2-53.5 3t-57.5 1v388zm-378-26q27 0 54.5 1t56.5 3v-381q-27-2-55-5.5t-56-3.5v386zm189 11q27 0 55.5 3.5t55.5 4.5v-384l-54-2q-28 0-57-3v381zm-911 272l33-28q19-16 42-33v-419q-43 34-70 63l-41 43v18l35 350zm1858-465q9-8 43.5-45t52.5-43l-96-310v398z" + }, + "children": [] + }] +}; +exports.uFE4E8 = uFE4E8; \ No newline at end of file diff --git a/dist/noto_emoji_regular/uFE4E9.js b/dist/noto_emoji_regular/uFE4E9.js new file mode 100644 index 000000000..710b1fa27 --- /dev/null +++ b/dist/noto_emoji_regular/uFE4E9.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.uFE4E9 = void 0; +var uFE4E9 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2503 1768q5 18 5 34 0 33-17.5 62T2331 2013.5t-326.5 188T1585 2269q-147 0-315-22t-249-22q-132 0-255 32t-216.5 81.5-133 84T333 2457t-76.5-30.5T220 2354L93 1079q0-4-1-14 3-31 12.5-49.5t43-63T247 851t157-101.5T613.5 676 884 647q135 0 250 7.5t218 7.5q232 0 351.5-57.5t181-120 85.5-67 34-4.5q41 0 69 23t39 58zm-929-825q18 100 41 217V751q-20 5-38 8.5t-35 5.5zM718 772q-16 2-27.5 4t-22.5 6l57 56zm-252 74l293 294-21-179-157-159q-29 11-57.5 20.5T471 843zm-72 38l-20 12q-17 10-40 28t-31 27l496 496-25-182zm450 877l-28-186-567-569q-12 13-24 29.5t-20 32.5l6 60zm-499 573q13-11 36.5-27.5T440 2269l-126-126 17 176zm166-103q25-12 52.5-24.5T622 2183l-339-338 18 176zm193-75l29-8 72-16 29-5-581-580 18 177zm195-73l-35-192-641-641 18 175zm857 62q-76-277-155-650.5T1464 772q-26 0-54.5 2t-57.5 2q-99 0-205.5-7.5T918 761q-30 0-61.5 1.5T796 764q0 11 15 142t18 159l20 173q27 227 63 461t72 414l18-1h19q84 0 255.5 22t305.5 22q44 0 85.5-2.5t81.5-7.5zm50-1465l-52 24q-16 8-31.5 14.5T1695 729v817q24 117 51.5 236t59.5 238V680zm189-144q-12 11-47.5 43.5T1884 629v1492q28-7 55.5-16.5t55.5-20.5V536zm189 574l-111-363v1302q22-12 50.5-27t60.5-39v-873zm189 618l-111-361v557q20-14 49-40.5t62-59.5v-96z" + }, + "children": [] + }] +}; +exports.uFE4E9 = uFE4E9; \ No newline at end of file diff --git a/dist/noto_emoji_regular/uFE4EA.js b/dist/noto_emoji_regular/uFE4EA.js new file mode 100644 index 000000000..7e82ef32a --- /dev/null +++ b/dist/noto_emoji_regular/uFE4EA.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.uFE4EA = void 0; +var uFE4EA = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2503 1768q5 18 5 35-2 32-19.5 63.5t-160.5 150-326.5 185T1585 2268q-147 0-315-22t-249-22q-132 0-255 32t-216.5 81.5-133 84T333 2456t-76.5-30.5T220 2355L93 1078q0-4-1-13 3-32 13-51t44-64.5T247.5 849 402 749t209.5-74T884 646q135 0 250 8.5t218 8.5q170 0 270.5-30t177-82.5T1915 455t89-43q39 0 68.5 23.5T2112 493zm-1207 368q6 0 14 1-20-57-33-116t-23-119l-21-120q-10-60-23-119l-26-110q-5-14-16-14l-5 1q-9 0-18-2l-127-10q-62-5-126-5-204 0-403 87.5T282 1717t-8 28l5 62 26-31q21-26 173-92.5t315-85.5l-90 73q-85 68-192 208t-191 333l13 130q45-35 84-61t84-46q-4-2-5.5-8t-1.5-12q0-14 4-27l7-24q4-10 17.5-48.5T542 2066l10-18q84-163 204.5-280.5T1012 1597l44 3 21 94q-22 13-70 33.5t-152 123T670 2122l-15 29q-7 14-18 27l44-16q22-8 45-11 73-145 174.5-245.5T1092 1770l28 134q36 172 39 186.5t11 29.5q29 2 58 7t56 7zm72-783q209 0 350-40t243.5-104 198.5-175l-17-58q-15 0-27 17.5t-68 66-211 126.5l38-36q69-70 118.5-159.5T2077 802l7-19-70-229-4 17q-22 77-85.5 238.5T1769 1075t-199 182l-61 6q-30 3-61 5l-19-78q102-52 232-183.5T1851 713l16-42q8-21 15-41-14 11-29 20l-35 22q-55 136-165.5 259T1412 1126q-28-133-52-225t-26-126l-50-1h-51q6 29 11.5 59.5T1258 894l52 230q26 115 58 229zm858 599q30-20 79.5-65t90.5-86l-8-27q-14 16-78.5 27.5T2193 1813q-149 0-334.5-67t-287.5-67h-15l-15-56q3 0 11-1 104-10 210-41l100 33q77 26 156.5 42t151.5 16q77 0 102-13t41.5-14.5 31.5-7.5l-13-47-7-2q-4 0-8-1-12 0-24 4l-26 10q-13 5-24.5 10t-21.5 5q-11 2-22 2h-22q-79 0-168-18.5t-162-47.5q82-31 140-69t146-102 88-99q0-8-4-19.5t-9-29.5q-54 40-112 98t-191.5 126-316.5 90q-83 10-167 10 4 18 9 35l10 35q19 70 63 217t56 209 31 102l48-1q26 0 52-2-28-78-47-161.5t-44-167.5l12 2q6 2 14 2 100 10 268.5 68t281.5 58q20 0 31-1h20zM259 1516q12-14 28-24l28-16q136-73 276-115t297-42q54 0 108.5 3.5T1107 1333l19 1q-15-70-60-235.5T1000 763q-48-3-93-3 11 59 19 120.5t21 121.5l-13-9-71-47q-69-48-146-82.5T551 811q-40 12-98.5 41.5T353 909q79 0 217.5 32.5T827 1080t148 158q-26-2-51-3t-51-1q-38 0-74 3-92-111-246.5-147.5T327 1053q-36 0-69.5 11.5T215 1076q-6 0-10-4l10 87q25-10 52-17t55-7q48 0 97 9l95 17q51 10 100.5 33.5T711 1246q-106 21-204.5 57.5T309 1393l-20 12q-17 10-26.5 24.5T253 1464q0 14 2 27z" + }, + "children": [] + }] +}; +exports.uFE4EA = uFE4EA; \ No newline at end of file diff --git a/dist/noto_emoji_regular/uFE4EB.js b/dist/noto_emoji_regular/uFE4EB.js new file mode 100644 index 000000000..c7b85b711 --- /dev/null +++ b/dist/noto_emoji_regular/uFE4EB.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.uFE4EB = void 0; +var uFE4EB = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2503 1768q3 9 4 18.5t1 17.5q0 28-16 57t-160 151.5-325.5 189.5-421.5 67q-89 0-162-6t-151-16l-123-15q-59-7-128-7-133 0-256 32.5t-216.5 82T416 2423t-82 34q-44 0-77-30.5t-37-72.5L93 1079q0-4-1-13 0-67 116.5-181T499 709t385-62q134 0 249.5 8.5T1352 664q172 0 271.5-30t175.5-82 114.5-95.5T2004 413q41 0 69 23t39 58zm-1137-28q111 10 213 10 238 0 398-76t303-239l-187-638q-175 175-328.5 240.5T1374 1103q-165 0-274.5-14T899 1075q-197 0-376 79.5T226 1377l71 648 43-40q122-116 306.5-192.5T1037 1716q22 0 44 1t45 3zm-176-130l2 10q0 5 1 7 0 4-5 4t-8-2-6-2q-6 0-9 1l-5 3q-3 2-6 3t-10 1q-3 0-8.5-2t-9.5-2q-2 0-9.5 3.5t-12.5 3.5q-3-3-6.5-11t-3.5-23q0-2 3.5-3.5t6.5-1.5l-1-3v-3q0-4 1.5-7.5t2.5-3.5q0-2-1-3.5t-1-3.5q0-3 1-3t5-1q-9-18-12.5-41t-8.5-44q-13-5-20-12t-7-21q0-8 4-8t14-5l-4-16q-17 0-33 7 5 23 10.5 45t8.5 45l1 7q3 17 3 34 0 40-38 67.5t-87 27.5q-90 0-141.5-39T731 1487l-9-42q-20-7-41-7l2 13q0 7 7 7 8 0 14.5 5t6.5 20q0 8-5 12t-13 7q3 20 8.5 40t5.5 38q0 6 4 10.5t4 7.5l2 2 7 15q2 4 3 4h9q2 0 5 11.5t3 22.5q0 4-2 4-5 0-9.5-2.5t-9.5-4.5q-8 0-14 3.5t-12 3.5q-7 0-12-3t-11-3q-11 0-13.5 3.5t-9.5 3.5q-5 0-6-12l-4-23q7 0 11-4l-1-9q0-3 2.5-4.5t2.5-3.5l-1-7q0-4 4-4-5-15-7-31t-5-33q-4 0-6 2t-5 2q6 11 6 18v5q0 4-4 4-2 0-12.5-13t-10.5-22q0-13 10-16t16-9q-2-9-5-16t-13-7-18.5-8-8.5-24q0-6 10.5-15t19.5-9q0-10-3.5-22t-3.5-21q0-7-8-11.5t-8-26.5q0-5 3-6l6-2q-6-5-10.5-7t-4.5-9q0-4 3-8t8-5q8 0 10.5-2.5t3.5-5.5l1-5q0-2 6-2 5 2 7 4l6 6q0 2 5 2 10 0 16.5 5t6.5 11q0 5-3.5 9.5t-3.5 6.5q8 0 10 3t2 9q0 5-2.5 7t-2.5 5l1 6q0 2-2 2-3 0-5 2 5 8 7.5 21t5.5 25q9 0 19 1.5t19 1.5q-5-19-8.5-42t-3.5-41q0-5 13-8.5t30-4.5h18q-15-12-11.5-17t-30-12-33.5-30q0-2 1-4-5-5-8-11t-3-15q0-23 18-30.5t39-7.5l16 1q16-16 44-16h10q5 0 9 2l-1-4q0-4-2-5l-4-3q-3 0-5-3.5t-2-12.5q0-5 7-9t15-4q10 0 17.5 5t7.5 17q0 7-3 7h-2q-2 0-2 4v5l1 2q5 0 10-1.5t10-1.5q12 0 24.5 3t23.5 12q0-3 10-4h16q23 0 42 16t19 34q0 4-1 8l-3 7v6q0 2-2 4.5t-10 7.5l-13 10-13 8q-5 3-6 3 0 5 2 8.5t2 9.5q0 5-11 7h20q12 0 30-1 23 0 33 43t11 47q8-3 20-4t14-3q-2-11-6-23t-6-23q-4-3-10.5-9.5t-6.5-15.5q0-5 4-5 3 0 6-2-5-5-9.5-8t-4.5-11q0-10 10-10 6 0 8.5-2.5t3.5-5.5l1-5q0-2 4-2 8 0 9 5.5t6 7.5q8 0 17 3t9 14q0 5-3 7t-3 4q13 4 13 18 0 3-2 4t-2 3q2 4 2 6t-3 2q0 2 4.5 18.5t7.5 35.5q21 0 30.5 12.5t9.5 20.5q0 23-26 23l4 20 29 16q8 5 8 19 0 5-3 7.5t-5 7.5q-2 0-2 4t-1 4q-4 0-7-6.5t-3-9.5q0-6 2-9-3 0-5.5-2.5t-5.5-2.5q0 8 3 18l4 19q0 10 2.5 17.5t4.5 9.5q9 0 13 14t14 14q4 8 5 13zm-483-374q5-2 12-3.5t15-1.5h14q-2-3-3.5-12.5t-4.5-9.5q-35 0-35 23 0 3 2 4zm94-20q5-2 10-2h8q0-8-3-13.5t-12-5.5q-20 0-27 7t-7 19q0 4 3 4 4 0 13-4zm102 7q0-18-14.5-23t-29.5-6l-4 2q-3 0-7 1 0 2 2 8t2 9q14 0 25.5 3.5t25.5 5.5zm26 2l9-1q8 0 17 2l16 5q0-11-10-18.5t-23-7.5h-15q3 5 4.5 9.5t1.5 10.5z" + }, + "children": [] + }] +}; +exports.uFE4EB = uFE4EB; \ No newline at end of file diff --git a/dist/noto_emoji_regular/uFE4EC.js b/dist/noto_emoji_regular/uFE4EC.js new file mode 100644 index 000000000..916dc527a --- /dev/null +++ b/dist/noto_emoji_regular/uFE4EC.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.uFE4EC = void 0; +var uFE4EC = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2503 1768q5 18 5 35-2 34-20 64t-158 147.5-324.5 185.5-420.5 68q-162 0-328-22t-236-22q-132 0-255 32t-216.5 81.5-133 84T333 2456t-76.5-30.5T220 2355L93 1079q0-4-1-14 3-32 13-51t43-63 97.5-99 155-100.5T611 677t273-29q135 0 250 7.5t218 7.5q249 0 372.5-67.5t175-125.5 104.5-58q39 0 68.5 23.5T2112 493zM2004 526q-117 131-279.5 190.5T1353 776q-57 0-112-3l-114-5q-76-4-131-6t-117-2q-222 0-404.5 82T205 1067l35 340q120-132 295.5-210t380.5-78q86 0 228 14.5t249 14.5q237 0 384.5-64.5T2084 852q8-9 17-11zm247 868q-28 29-55.5 54t-55.5 48v515q12-7 26-17l59-42 26-19v-539zm-300 706q28-11 54.5-20.5t56.5-24.5v-503q-56 35-111 57v491zm-78-462q-58 19-111 26v481q13 0 43-5.5t68-16.5v-485zm-380 40q-26-2-54-3t-57-3v473l89 6q17 0 22 2v-475zm-300 446q25 4 55 7.5t56 5.5v-471l-111-9v467zm489-449q-26 2-53.5 3t-55.5 1v476l109-3v-477zm-567-25q-25 0-48-2t-45-2q-5 0-9 1t-9 1v464q30 0 58 1l53 3v-466zm-190 2q-29 2-56.5 6t-53.5 10v462q23-3 53-6t57-8v-464zm-189 35q-29 8-57 18.5t-54 21.5v455q35-11 59.5-19.5T736 2148v-461zm-190 79q-29 20-58 35.5t-52 32.5v437l55-29q28-15 55-28v-448zm-189 130q-15 14-32 31.5t-32 17.5l40 397 24-17v-429zm1973-30q16-16 32.5-31t33.5-34l-66-215v280z" + }, + "children": [] + }] +}; +exports.uFE4EC = uFE4EC; \ No newline at end of file diff --git a/dist/noto_emoji_regular/uFE4ED.js b/dist/noto_emoji_regular/uFE4ED.js new file mode 100644 index 000000000..fd1dd47d5 --- /dev/null +++ b/dist/noto_emoji_regular/uFE4ED.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.uFE4ED = void 0; +var uFE4ED = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2503 1767q3 9 4 17.5t1 18.5q0 27-16 57.5T2330.5 2013 2002 2202t-417 67q-147 0-310.5-22t-253.5-22q-132 0-258 33t-217.5 82-129 82-82.5 33q-46 0-78-29t-36-73L93 1078q0-4-1-14 3-31 12.5-49.5t43-63T247 850t157-101.5T613.5 675 884 646q135 0 250 8t218 8q231 0 350-57.5T1884 484t86.5-67.5 33.5-4.5q41 0 69.5 22.5T2112 492zM631 1288q3 0 10 1 14 0 14-12 0-3-1-7.5t-3-9.5l-58-101q-7-14-7-29 0-18 8-29l48-76q3-3 3-10 0-11-12-11l-110 16q-12 0-23.5-4t-18.5-12l-51-52q-6-6-12-6-8 0-13 13l-24 72q-5 11-16.5 24t-23.5 18l-92 36q-15 7-15 16 0 6 8 11l76 42q12 8 18 22.5t6 28.5l-9 123q0 23 12 23 8 0 17-9l91-91q21-19 50-19 9 0 13 1zm281 50q3 0 3-5 0-3-4-6l-30-9q-10-3-13-14l-8-31q-2-5-4-5-3 0-4 3l-21 26q-7 10-16 10l-34-2q-7 0-7 5 0 2 1 4l19 26q3 6 3 12 0 5-1 7l-14 33-1 4q0 3 4 3h3l32-11q2-2 6-2 8 0 14 6l24 20q3 3 4 3 5 0 5-7l1-34q2-13 11-18zm109-238l1-4q0-4-7-4-8 0-16 2.5t-18 2.5-14-5l-20-21q-2-3-6-3-3 0-3 5l-5 30-4 7q-3 4-8 6l-29 13q-4 0-4 5 0 2 6 6l25 11q11 4 11 13l1 32q0 5 5 5l4-2 27-28 6-1 8 1q25 5 29 5l5 1q4 0 4-3l-1-4-14-28q-3-3-3-8 0-2 1-5l2-4zM848 968q0 2-1.5 2t-1.5 2q0 3 6 3l30-3q9 0 16 7l15 24 4 2q2 0 5-4l9-27q5-10 12-12l29-9q4 0 4-4 0-3-2-4l-25-14q-7-3-7-15l1-26q0-4-4-4-2 0-4 2l-23 17q-4 4-12 4-2 0-5-1l-28-8h-3q-3 0-3 5l11 27v4q0 2-1.5 4.5T866 945zm-81-105l22-18q3-3 3-4 0-3-4-3l-29-1q-3 0-6.5-2.5T747 827l-11-20q-3-3-5-3l-4 3-13 22q-6 8-14 11l-27 4q-6 0-6 4l21 19q2 2 3.5 5t1.5 6l-1 5-7 24-2 2q0 3 3 3t4-1l33-16q2 0 4-1 2 0 4 1t3 1q14 5 19.5 8.5t8.5 3.5q4 0 4-3l-2-12q-2-10-2-15 0-11 5-15z" + }, + "children": [] + }] +}; +exports.uFE4ED = uFE4ED; \ No newline at end of file diff --git a/dist/noto_emoji_regular/uFE4EE.js b/dist/noto_emoji_regular/uFE4EE.js new file mode 100644 index 000000000..63718aa7e --- /dev/null +++ b/dist/noto_emoji_regular/uFE4EE.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.uFE4EE = void 0; +var uFE4EE = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2502 1768q2 8 3.5 17t1.5 17q-2 33-18.5 62.5T2329 2014t-327 187-418 67q-147 0-315-22t-250-22q-198 0-355 62t-222 116-110 54-77-30.5-36-71.5L92 1078q0-29 5.5-49t44-71T249 848t160-102.5 207.5-71T882 647q135 0 250.5 8t218.5 8q182 0 281.5-32t174-85 109.5-93 87-40q40 0 69 22.5t39 57.5zm-107 33L2003 526q-131 131-274 190t-378 59q-103 0-217-7t-252-7q-226 0-399.5 74T204 1067l128 1276q119-88 205-127t206-71.5 276-32.5q94 0 253.5 21t311.5 21q260 0 447.5-86t363.5-267zm-817.5-95.5Q1466 1802 1315 1802q-205 0-351.5-115T817 1384q0-143 103.5-230t263.5-87q210 0 357.5 119.5T1689 1472q0 137-111.5 233.5zM747 1993l4 8q0 5-20.5 22.5T701 2041q-4 0-12-4l-7-7q-49-39-95-86.5t-91-87.5l-19-16q-15-12-29-26t-14-21q0-2 1-4l2-3q3-6 21-19.5t27-13.5q6 0 9 3l7 8q51 45 106.5 95.5T710 1960zm157-115l4 7q0 7-22.5 23t-29.5 16q-11-3-67-56l-94-88-43-41-17-15q-15-11-29-25t-14-21q0-10 21-25t30-15q8 0 80 70t144 135zm-189-852q4-3 10-3 8 0 32.5 11.5T782 1053q0 5-3 10l-82 141q-39 66-78 131l-4 8-8 6q-3 0-7 1-4 0-5-1-3 0-27-10.5t-24-15.5l1-8q25-42 49-84.5t50-84.5zm-164 82l31-53q16-27 32-55l7-11q3-3 11-3l10 2q16 5 31 13t15 15q0 5-3 10l-5 9q-35 56-74 125.5T525 1298l-4 7q-2 5-6.5 6t-8.5 1-29.5-9.5T449 1286l2-10q26-40 50.5-83t49.5-85zm1116-231q20-17 30-17 12 0 85.5 73.5T1959 1100l4 6q0 6-21.5 23t-30.5 17q-8 0-9-3l-7-6q-59-59-153.5-142t-94.5-97q0-4 20-21zM426 1268q0 3-4.5 5t-9.5 2q-4 0-5-1l-26-10q-9-3-16.5-7.5t-8.5-9.5l2-8 163-278 7-11q2 0 3-1.5t3-1.5l11 2q22 6 35 14t13 15q0 5-2 10l-60 103q-26 45-54 91zm704 255q13-3 25-7.5t23-9.5l-56-397q-12 0-25 4l-24 6zm-112 7q12 2 25 2h26l-55-391q-13 5-24.5 11.5T967 1167zm215-63q11-13 21-26.5t23-27.5l-44-305q-23-3-51-3zm498 348q-23-9-28-18l1-8 40-70 19-32q3-5 13-19.5t13-14.5q2 0 7.5 1t12.5 3l13 4q6 3 10 6l11 5q8 6 8 11t-31.5 56-40.5 68-16 17q-9 0-32-9zm-1-966l-5-10q0-3 20-20.5t32-17.5q9 0 10.5 3t59 55 57.5 60q0 2-1 4.5t-3 4.5l-8 9q-9 7-22 14t-18 7-24.5-17-39.5-37l-22-22zM825 1935l4 8q0 6-19 22.5t-33 16.5q-2 0-5-1l-5-2-15-16q-23-22-62-54.5t-39-43.5q0-4 4-11l10-6q6-8 19-15t19-7 17 9 24 21l25 25q16 17 32.5 31.5T825 1935zm1205-187q9 4 9 9 0 8-34.5 65t-38.5 63l-4 6-8 7h-6q-53-18-57-26l2-8q2-3 13.5-24.5t26.5-46.5l27-45q12-20 17-20 4 0 19 5t23 9zm-205 104q-23-9-29-17l3-9 15-27q19-34 42-71t29-37 19 5 22 9l10 4q9 5 9 11 0 7-31.5 56.5t-38 67-21.5 17.5q-6 0-29-9zm-91-800q-7 7-20 14.5t-18 7.5q-9 0-56-46t-67-64l-4-8q0-4 18.5-21.5T1621 917q2 0 5 1l4 2 7 7q15 13 34.5 32.5t45.5 41.5l14 12q7 7 12 13t5 9-5 8zm-835 422q24 24 56 37l-43-294q-12 17-23 35t-16 38zm929-272q-3 0-16-12l-30-28q-17-16-33.5-32.5T1722 1104l-4-7q0-6 18.5-23t33.5-17q8 0 10.5 4t7.5 6q3 3 49.5 44t46.5 53q0 2-1 4l-2 4q-2 5-20.5 18.5T1833 1204q-4 0-5-2zM572 1698l8 7q23 24 47.5 45.5T675 1795l5 7q0 7-20 24t-34 17q-4 0-8.5-4.5t-6.5-7.5l-22-19-32-29q-12-11-27.5-27t-15.5-21 3-8l6-7q7-7 19.5-16t20.5-9q5 0 9 3zm1469-646l-2 4q-2 6-22 18.5t-28 12.5q-5 0-7.5-3t-7.5-6l-96-91-2-7q0-6 19-22.5t34-16.5q4 0 58 46.5t54 61.5v3zm-709 315q11-5 22.5-9.5t25.5-8.5l-30-219q-14-5-27-8t-27-5zm471 260l1-7q15-29 30.5-54.5t32.5-54.5l7-11q4-3 8-3 8 0 33.5 11t25.5 19q0 3-3 9t-6 10l-35 63q-9 15-19.5 30t-15.5 15q-9 0-33.5-10t-25.5-17zm93 37l2-7 64-109 7-10 5-2q2 0 4-1 9 0 33 10.5t24 19.5q0 5-33.5 65.5T1955 1691q-8 0-31-9t-28-18zm96 30q14-26 31.5-53.5t31.5-54.5l7-11 6-2q2 0 5-1 5 0 30.5 11t25.5 19q0 4-4.5 12.5T2114 1633l-13 21q-15 23-28 49.5t-23 26.5q-13 0-36-11.5t-23-16.5zm-552-352q14 0 26 2t26 5l-23-169-27-14q-14-7-28-13zm116 29q15 8 29.5 18t27.5 24l-16-113q-24-39-61-70z" + }, + "children": [] + }] +}; +exports.uFE4EE = uFE4EE; \ No newline at end of file diff --git a/dist/noto_emoji_regular/uFE82C.js b/dist/noto_emoji_regular/uFE82C.js new file mode 100644 index 000000000..f2859e776 --- /dev/null +++ b/dist/noto_emoji_regular/uFE82C.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.uFE82C = void 0; +var uFE82C = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2222 384q46 0 79 33t33 79v1845q0 45-33.5 78t-78.5 33H377q-45 0-78-33t-33-78V496q0-45 33-78.5t78-33.5h1845zM563 2148q0 7 7 7h1459q8 0 8-7V689q0-7-8-7H570q-7 0-7 7v1459zm1322-1082q8 0 13 5t5 13v198q0 8-5 13t-13 5h-195l-31 218h144q7 0 12.5 5t5.5 13v198q0 8-5.5 12.5t-12.5 4.5h-177l-36 245q-2 14-15 14h-248q-6 0-10.5-5t-4.5-13l35-241h-200l-35 245q-2 14-16 14H849q-5 0-10.5-4.5T833 1992l34-241H714q-7 0-12-4.5t-5-12.5v-198q0-8 5-13t12-5h186l31-218H796q-8 0-12.5-5t-4.5-13v-198q0-8 4.5-13t12.5-5h168l30-214q2-5 6.5-9.5t10.5-4.5h247q5 0 10 4.5t5 11.5v4l-29 208h200l30-214q0-5 5-9.5t11-4.5h247q5 0 10 4.5t5 11.5v4l-29 208h162zm347-602l-10-1H377q-14 0-23.5 9.5T344 496v1845q0 8 2.5 13.5t6.5 10.5l154-155q-11-13-18-28.5t-7-33.5V689q0-36 26-62t62-26h1459q29 0 51 17zm-1021 836l-32 218h200l32-218h-200z" + }, + "children": [] + }] +}; +exports.uFE82C = uFE82C; \ No newline at end of file diff --git a/dist/noto_emoji_regular/uFE82E.js b/dist/noto_emoji_regular/uFE82E.js new file mode 100644 index 000000000..f9f6e7584 --- /dev/null +++ b/dist/noto_emoji_regular/uFE82E.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.uFE82E = void 0; +var uFE82E = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2222 383q47 0 79.5 33t32.5 78v1845q0 45-32.5 78t-79.5 33H377q-47 0-79-33t-32-78V494q0-45 32-78t79-33h1845zM563 2146q0 7 7 7h1459q8 0 8-7V687q0-7-8-7H570q-7 0-7 7v1459zM2232 462l-10-1H377q-14 0-23.5 9.5T344 494v1845q0 13 9 22l154-155q-11-11-18-27t-7-33V687q0-37 26-62.5t62-25.5h1459q29 0 51 17zm-690 1300q8 0 13 5.5t5 12.5v229q0 8-5 13t-13 5h-484q-8 0-13-5t-5-13v-229q0-7 5-12.5t13-5.5h93v-667l-125 37q-19 0-19-19V873q0-6 4.5-11t9.5-7l406-86q11 0 16 5t5 12v976h94z" + }, + "children": [] + }] +}; +exports.uFE82E = uFE82E; \ No newline at end of file diff --git a/dist/noto_emoji_regular/uFE82F.js b/dist/noto_emoji_regular/uFE82F.js new file mode 100644 index 000000000..ce29ae27a --- /dev/null +++ b/dist/noto_emoji_regular/uFE82F.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.uFE82F = void 0; +var uFE82F = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2222 382q47 0 79.5 33t32.5 78v1845q0 45-32.5 78t-79.5 33H377q-47 0-79-33t-32-78V493q0-45 32-78t79-33h1845zM563 2145q0 7 7 7h1459q8 0 8-7V686q0-7-8-7H570q-7 0-7 7v1459zM2232 461l-10-1H377q-14 0-23.5 9.5T344 493v1845q0 14 9 23l154-154q-11-13-18-29t-7-33V686q0-36 26-62t62-26h1459q29 0 51 17zm-528 1247q8 0 13 5t5 13v226q0 7-5 13t-13 6H937q-8 0-13-6t-5-13v-236q0-15 29.5-28t150-101 198.5-179.5 78-169.5q0-58-42.5-97.5T1237 1101q-59 0-128 38.5t-96.5 64.5-41.5 26q-9-3-12-8l-111-181-2-4q0-2-1-4 0-8 6-14l20-20q80-80 199.5-143t237.5-63q148 0 273.5 107.5T1707 1167q0 82-36 165.5t-166 196-241 179.5h440z" + }, + "children": [] + }] +}; +exports.uFE82F = uFE82F; \ No newline at end of file diff --git a/dist/noto_emoji_regular/uFE830.js b/dist/noto_emoji_regular/uFE830.js new file mode 100644 index 000000000..c13376a70 --- /dev/null +++ b/dist/noto_emoji_regular/uFE830.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.uFE830 = void 0; +var uFE830 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2222 382q47 0 79.5 33t32.5 78v1845q0 45-32.5 78t-79.5 33H377q-47 0-79-33t-32-78V493q0-45 32-78t79-33h1845zM563 2145q0 7 7 7h1459q8 0 8-7V686q0-8-8-8H570q-7 0-7 8v1459zM2232 461q-3 0-10-1H377q-14 0-23.5 9.5T344 493v1845q0 12 9 23l154-156q-11-11-18-27t-7-33V686q0-35 25.5-62t62.5-27h1459q28 0 51 18zm-681 931q90 50 136.5 125.5T1734 1683q0 162-130 265.5T1290 2052q-101 0-203.5-42.5t-181-107.5-78.5-84q0-9 3-11l114-166q5-7 12-7 13 0 40 24.5t107 65 149 40.5q58 0 101-41t43-94q0-37-30.5-69t-78-53-66-24-18.5-19v-145q0-15 22.5-20.5t72-31 79.5-59.5 30-71q0-51-38.5-90.5T1278 1007q-55 0-119.5 33t-88 53-36.5 20q-4 0-7-2t-5-4L908 941q-3-3-3-10 0-19 58.5-64t155.5-79.5 193-34.5q161 0 282 110t121 245q0 78-42.5 151T1551 1392z" + }, + "children": [] + }] +}; +exports.uFE830 = uFE830; \ No newline at end of file diff --git a/dist/noto_emoji_regular/uFE831.js b/dist/noto_emoji_regular/uFE831.js new file mode 100644 index 000000000..cecef0db7 --- /dev/null +++ b/dist/noto_emoji_regular/uFE831.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.uFE831 = void 0; +var uFE831 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2222 382q46 0 79 33t33 79v1845q0 45-33.5 78t-78.5 33H377q-45 0-78-33t-33-78V494q0-45 33-78.5t78-33.5h1845zM563 2146l1 3q0 4 6 4h1459q8 0 8-7V687q0-8-8-8H570q-7 0-7 8v1459zM2232 462q-2 0-5-1t-5-1H377q-14 0-23.5 10t-9.5 24v1845q0 7 2.5 13t6.5 11l154-157q-11-11-18-26.5t-7-33.5V687q0-35 25.5-62t62.5-27h1459q28 0 51 18zm-442 1117q8 0 13 5t5 11v214q0 8-5 13t-13 5h-208v214q0 16-18 16h-264q-16 0-16-16v-214H796q-8 0-13-5t-5-13v-214l1-4q0-2 2-4l505-779v-1q0-2 4-4.5t10-2.5h264q8 0 13 5.5t5 11.5v762h208zm-697 0h191v-293z" + }, + "children": [] + }] +}; +exports.uFE831 = uFE831; \ No newline at end of file diff --git a/dist/noto_emoji_regular/uFE832.js b/dist/noto_emoji_regular/uFE832.js new file mode 100644 index 000000000..3d4f8d000 --- /dev/null +++ b/dist/noto_emoji_regular/uFE832.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.uFE832 = void 0; +var uFE832 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2222 383q47 0 79.5 33t32.5 78v1845q0 45-32.5 78t-79.5 33H377q-47 0-79-33t-32-78V494q0-45 32-78t79-33h1845zM563 2146q0 7 7 7h1459q8 0 8-7V687q0-8-8-8H570q-7 0-7 8v1459zm667-922q215 5 355 118.5t140 302.5q0 175-146.5 287.5T1264 2045q-98 0-204-34t-172-72l-39-22q-7-5-7-16l68-213q0-4 5-7.5t10-3.5q6 0 34 16.5t106 38.5 156 22q91 0 138.5-34.5t47.5-96.5-75.5-95.5T1112 1494q-33 0-63 2l-55 4q-25 2-43 4l-30 5q-21 0-21-19l62-698q0-6 4.5-11t12.5-5h691q7 0 12.5 5t5.5 13v218q0 6-5.5 11t-12.5 5h-422zm1002-762l-10-1H377q-14 0-23.5 9.5T344 494v1845q0 12 9 23l154-154q-11-13-18-29t-7-33V687q0-36 26-62t62-26h1459q29 0 51 17z" + }, + "children": [] + }] +}; +exports.uFE832 = uFE832; \ No newline at end of file diff --git a/dist/noto_emoji_regular/uFE833.js b/dist/noto_emoji_regular/uFE833.js new file mode 100644 index 000000000..36bfd3385 --- /dev/null +++ b/dist/noto_emoji_regular/uFE833.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.uFE833 = void 0; +var uFE833 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2222 382q45 0 78.5 33t33.5 78v1845q0 46-33 79t-79 33H377q-45 0-78-33.5t-33-78.5V493q0-45 33-78t78-33h1845zM563 2145q0 7 7 7h1459q8 0 8-7V686q0-7-8-7H570q-7 0-7 7v1459zM2232 462q-6-2-10-2H377q-14 0-23.5 9.5T344 493v1845q0 6 2.5 12t6.5 11l154-156q-11-11-18-27t-7-33V686q0-36 26-62t62-26h1459q29 0 51 17zm-604 1483.5Q1490 2068 1278 2068q-233 0-364.5-137T782 1550q0-113 28.5-222.5T905 1098t160.5-213T1232 749l39-23q3-2 7-2 8 0 14 6l163 165q4 7 4 11 0 12-7 15 0 2-31.5 23.5t-110.5 99-136 176.5q25-4 50.5-6t53.5-2q210 0 349 121t139 306q0 184-138 306.5zM1140 1510q-54 52-54 129 0 76 54 128.5t138 52.5 138-52.5 54-128.5q0-77-54-129t-138-52-138 52z" + }, + "children": [] + }] +}; +exports.uFE833 = uFE833; \ No newline at end of file diff --git a/dist/noto_emoji_regular/uFE834.js b/dist/noto_emoji_regular/uFE834.js new file mode 100644 index 000000000..9dfa4e2d4 --- /dev/null +++ b/dist/noto_emoji_regular/uFE834.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.uFE834 = void 0; +var uFE834 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2222 381q45 0 78.5 33t33.5 78v1845q0 46-33 79t-79 33H377q-45 0-78-33.5t-33-78.5V492q0-45 33-78t78-33h1845zM563 2144q0 7 7 7h1459q8 0 8-7V685q0-7-8-7H570q-7 0-7 7v1459zM1784 841l-459 1201q-5 11-15 11h-306q-16 0-16-16 0-4 1-7l369-970H807q-17 0-17-16V834q0-16 17-16h960q7 0 12 4.5t5 18.5zm448-380q-6-2-10-2H377q-14 0-23.5 9.5T344 492v1845q0 8 2.5 13t6.5 10l154-156q-11-11-18-27t-7-33V685q0-36 26-62t62-26h1459q29 0 51 17z" + }, + "children": [] + }] +}; +exports.uFE834 = uFE834; \ No newline at end of file diff --git a/dist/noto_emoji_regular/uFE835.js b/dist/noto_emoji_regular/uFE835.js new file mode 100644 index 000000000..aafc5b14d --- /dev/null +++ b/dist/noto_emoji_regular/uFE835.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.uFE835 = void 0; +var uFE835 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2222 383q47 0 79.5 33t32.5 78v1845q0 45-32.5 78t-79.5 33H377q-47 0-79-33t-32-78V494q0-45 32-78t79-33h1845zM563 2146q0 7 7 7h1459q8 0 8-7V687q0-7-8-7H570q-7 0-7 7v1459zM2232 462q-3 0-10-1H377q-14 0-23.5 9.5T344 494v1845q0 13 9 22l154-155q-11-11-18-27t-7-33V687q0-37 26-62.5t62-25.5h1459q29 0 51 17zm-639 895q72 55 111.5 132.5T1744 1662q0 172-129 287.5T1285 2065q-200 0-330-115.5T825 1662q0-95 40-172.5T977 1357q-51-48-78.5-111T871 1108q0-157 117.5-259.5T1285 746t296.5 102.5T1699 1108q0 75-28 138t-78 111zm-192.5-359q-46.5-43-115.5-43-70 0-116.5 43.5T1122 1108q0 62 43.5 107.5T1273 1261q76 0 125-42t49-111q0-67-46.5-110zM1155 1784.5q51 49.5 130 49.5 78 0 128.5-49.5T1464 1662q0-72-50-120.5t-129-48.5-130 48-51 121 51 122.5z" + }, + "children": [] + }] +}; +exports.uFE835 = uFE835; \ No newline at end of file diff --git a/dist/noto_emoji_regular/uFE836.js b/dist/noto_emoji_regular/uFE836.js new file mode 100644 index 000000000..70f1c09f9 --- /dev/null +++ b/dist/noto_emoji_regular/uFE836.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.uFE836 = void 0; +var uFE836 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2222 382q46 0 79 33t33 79v1845q0 45-33.5 78t-78.5 33H377q-45 0-78-33t-33-78V494q0-45 33-78.5t78-33.5h1845zM563 2146q0 7 7 7h1459q8 0 8-7V687q0-7-8-7H570q-7 0-7 7v1459zm612-55l-142-185q-4-3-4-9 0-13 9-15l39-21q38-19 126.5-90.5T1358 1606q-32 3-62 3-210 0-349-121t-139-306 138.5-306.5T1296 754q214 0 351 126.5t137 324.5q0 165-43.5 304.5t-155 282.5-241.5 224.5-155 81.5q-10 0-14-7zM2232 462q-3 0-10-1H377q-14 0-23.5 9.5T344 494v1845q0 13 9 22l154-155q-11-11-18-26.5t-7-33.5V687q0-37 26-62.5t62-25.5h1459q29 0 51 16zm-1073.5 590.5Q1104 1104 1104 1182q0 77 54 129t138 52 138-52 54-129q0-78-54.5-129.5T1296 1001t-137.5 51.5z" + }, + "children": [] + }] +}; +exports.uFE836 = uFE836; \ No newline at end of file diff --git a/dist/noto_emoji_regular/uFE837.js b/dist/noto_emoji_regular/uFE837.js new file mode 100644 index 000000000..d201bc288 --- /dev/null +++ b/dist/noto_emoji_regular/uFE837.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.uFE837 = void 0; +var uFE837 = { + "viewBox": "0 0 2600 2760.837", + "children": [{ + "name": "path", + "attribs": { + "d": "M2222 382q45 0 78.5 33t33.5 78v1845q0 46-33 79t-79 33H377q-45 0-78-33.5t-33-78.5V493q0-45 33-78t78-33h1845zM563 2145q0 2 2.5 5t4.5 3h1459q8 0 8-8V686q0-7-8-7H570q-7 0-7 7v1459zM2232 462q-6-2-10-2H377q-14 0-23.5 9.5T344 493v1845q0 14 9 23l154-156q-11-11-18-27t-7-33V686q0-36 26-62t62-26h1459q14 0 27 4.5t24 12.5zm-560.5 1398Q1525 2033 1286 2033q-240 0-385-173.5T756 1395t144.5-464.5T1286 757t386.5 172.5T1818 1395q0 292-146.5 465zm-231-706.5Q1385 1058 1286 1058t-153.5 95.5T1078 1395t55 241 153 95q99 0 154.5-94.5T1496 1395q0-146-55.5-241.5z" + }, + "children": [] + }] +}; +exports.uFE837 = uFE837; \ No newline at end of file diff --git a/dist/oct/alert.js b/dist/oct/alert.js new file mode 100644 index 000000000..0b58e3d35 --- /dev/null +++ b/dist/oct/alert.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.alert = void 0; +var alert = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M8.893 1.5c-.183-.31-.52-.5-.887-.5s-.703.19-.886.5L.138 13.499a.98.98 0 000 1.001c.193.31.53.501.886.501h13.964c.367 0 .704-.19.877-.5a1.03 1.03 0 00.01-1.002L8.893 1.5zm.133 11.497H6.987v-2.003h2.039v2.003zm0-3.004H6.987V5.987h2.039v4.006z" + }, + "children": [] + }], + "attribs": {} +}; +exports.alert = alert; \ No newline at end of file diff --git a/dist/oct/archive.js b/dist/oct/archive.js new file mode 100644 index 000000000..4bb8a3642 --- /dev/null +++ b/dist/oct/archive.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.archive = void 0; +var archive = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M13 2H1v2h12V2zM0 4a1 1 0 001 1v9a1 1 0 001 1h10a1 1 0 001-1V5a1 1 0 001-1V2a1 1 0 00-1-1H1a1 1 0 00-1 1v2zm2 1h10v9H2V5zm2 3h6V7H4v1z" + }, + "children": [] + }], + "attribs": {} +}; +exports.archive = archive; \ No newline at end of file diff --git a/dist/oct/arrowBoth.js b/dist/oct/arrowBoth.js new file mode 100644 index 000000000..856ef82dc --- /dev/null +++ b/dist/oct/arrowBoth.js @@ -0,0 +1,18 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowBoth = void 0; +var arrowBoth = { + "viewBox": "0 0 20 16", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 8l6-5v3h8V3l6 5-6 5v-3H6v3L0 8z" + }, + "children": [] + }], + "attribs": {} +}; +exports.arrowBoth = arrowBoth; \ No newline at end of file diff --git a/dist/oct/arrowDown.js b/dist/oct/arrowDown.js new file mode 100644 index 000000000..d94b29cfa --- /dev/null +++ b/dist/oct/arrowDown.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowDown = void 0; +var arrowDown = { + "viewBox": "0 0 10 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M7 7V3H3v4H0l5 6 5-6H7z" + }, + "children": [] + }], + "attribs": {} +}; +exports.arrowDown = arrowDown; \ No newline at end of file diff --git a/dist/oct/arrowLeft.js b/dist/oct/arrowLeft.js new file mode 100644 index 000000000..e0368a981 --- /dev/null +++ b/dist/oct/arrowLeft.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowLeft = void 0; +var arrowLeft = { + "viewBox": "0 0 10 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M6 3L0 8l6 5v-3h4V6H6V3z" + }, + "children": [] + }], + "attribs": {} +}; +exports.arrowLeft = arrowLeft; \ No newline at end of file diff --git a/dist/oct/arrowRight.js b/dist/oct/arrowRight.js new file mode 100644 index 000000000..9b6014146 --- /dev/null +++ b/dist/oct/arrowRight.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowRight = void 0; +var arrowRight = { + "viewBox": "0 0 10 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M10 8L4 3v3H0v4h4v3l6-5z" + }, + "children": [] + }], + "attribs": {} +}; +exports.arrowRight = arrowRight; \ No newline at end of file diff --git a/dist/oct/arrowSmallDown.js b/dist/oct/arrowSmallDown.js new file mode 100644 index 000000000..9a3ee7ba0 --- /dev/null +++ b/dist/oct/arrowSmallDown.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowSmallDown = void 0; +var arrowSmallDown = { + "viewBox": "0 0 6 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M4 7V5H2v2H0l3 4 3-4H4z" + }, + "children": [] + }], + "attribs": {} +}; +exports.arrowSmallDown = arrowSmallDown; \ No newline at end of file diff --git a/dist/oct/arrowSmallLeft.js b/dist/oct/arrowSmallLeft.js new file mode 100644 index 000000000..c924fb6cc --- /dev/null +++ b/dist/oct/arrowSmallLeft.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowSmallLeft = void 0; +var arrowSmallLeft = { + "viewBox": "0 0 6 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M4 7V5L0 8l4 3V9h2V7H4z" + }, + "children": [] + }], + "attribs": {} +}; +exports.arrowSmallLeft = arrowSmallLeft; \ No newline at end of file diff --git a/dist/oct/arrowSmallRight.js b/dist/oct/arrowSmallRight.js new file mode 100644 index 000000000..5d44fd2a4 --- /dev/null +++ b/dist/oct/arrowSmallRight.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowSmallRight = void 0; +var arrowSmallRight = { + "viewBox": "0 0 6 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M6 8L2 5v2H0v2h2v2l4-3z" + }, + "children": [] + }], + "attribs": {} +}; +exports.arrowSmallRight = arrowSmallRight; \ No newline at end of file diff --git a/dist/oct/arrowSmallUp.js b/dist/oct/arrowSmallUp.js new file mode 100644 index 000000000..b2073280e --- /dev/null +++ b/dist/oct/arrowSmallUp.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowSmallUp = void 0; +var arrowSmallUp = { + "viewBox": "0 0 6 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M3 5L0 9h2v2h2V9h2L3 5z" + }, + "children": [] + }], + "attribs": {} +}; +exports.arrowSmallUp = arrowSmallUp; \ No newline at end of file diff --git a/dist/oct/arrowUp.js b/dist/oct/arrowUp.js new file mode 100644 index 000000000..f49024b16 --- /dev/null +++ b/dist/oct/arrowUp.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowUp = void 0; +var arrowUp = { + "viewBox": "0 0 10 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M5 3L0 9h3v4h4V9h3L5 3z" + }, + "children": [] + }], + "attribs": {} +}; +exports.arrowUp = arrowUp; \ No newline at end of file diff --git a/dist/oct/beaker.js b/dist/oct/beaker.js new file mode 100644 index 000000000..9f34e1163 --- /dev/null +++ b/dist/oct/beaker.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.beaker = void 0; +var beaker = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M14.38 14.59L11 7V3h1V2H3v1h1v4L.63 14.59A1 1 0 001.54 16h11.94c.72 0 1.2-.75.91-1.41h-.01zM3.75 10L5 7V3h5v4l1.25 3h-7.5zM8 8h1v1H8V8zM7 7H6V6h1v1zm0-3h1v1H7V4zm0-3H6V0h1v1z" + }, + "children": [] + }], + "attribs": {} +}; +exports.beaker = beaker; \ No newline at end of file diff --git a/dist/oct/bell.js b/dist/oct/bell.js new file mode 100644 index 000000000..c6c1a9f6d --- /dev/null +++ b/dist/oct/bell.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bell = void 0; +var bell = { + "viewBox": "0 0 15 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M14 12v1H0v-1l.73-.58c.77-.77.81-2.55 1.19-4.42C2.69 3.23 6 2 6 2c0-.55.45-1 1-1s1 .45 1 1c0 0 3.39 1.23 4.16 5 .38 1.88.42 3.66 1.19 4.42l.66.58H14zm-7 4c1.11 0 2-.89 2-2H5c0 1.11.89 2 2 2z" + }, + "children": [] + }], + "attribs": {} +}; +exports.bell = bell; \ No newline at end of file diff --git a/dist/oct/bold.js b/dist/oct/bold.js new file mode 100644 index 000000000..495ed8e9e --- /dev/null +++ b/dist/oct/bold.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bold = void 0; +var bold = { + "viewBox": "0 0 10 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M1 2h3.83c2.48 0 4.3.75 4.3 2.95 0 1.14-.63 2.23-1.67 2.61v.06c1.33.3 2.3 1.23 2.3 2.86 0 2.39-1.97 3.52-4.61 3.52H1V2zm3.66 4.95c1.67 0 2.38-.66 2.38-1.69 0-1.17-.78-1.61-2.34-1.61H3.13v3.3h1.53zm.27 5.39c1.77 0 2.75-.64 2.75-1.98 0-1.27-.95-1.81-2.75-1.81h-1.8v3.8h1.8v-.01z" + }, + "children": [] + }], + "attribs": {} +}; +exports.bold = bold; \ No newline at end of file diff --git a/dist/oct/book.js b/dist/oct/book.js new file mode 100644 index 000000000..2ff7f0e48 --- /dev/null +++ b/dist/oct/book.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.book = void 0; +var book = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M3 5h4v1H3V5zm0 3h4V7H3v1zm0 2h4V9H3v1zm11-5h-4v1h4V5zm0 2h-4v1h4V7zm0 2h-4v1h4V9zm2-6v9c0 .55-.45 1-1 1H9.5l-1 1-1-1H2c-.55 0-1-.45-1-1V3c0-.55.45-1 1-1h5.5l1 1 1-1H15c.55 0 1 .45 1 1zm-8 .5L7.5 3H2v9h6V3.5zm7-.5H9.5l-.5.5V12h6V3z" + }, + "children": [] + }], + "attribs": {} +}; +exports.book = book; \ No newline at end of file diff --git a/dist/oct/bookmark.js b/dist/oct/bookmark.js new file mode 100644 index 000000000..835ef2aaa --- /dev/null +++ b/dist/oct/bookmark.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bookmark = void 0; +var bookmark = { + "viewBox": "0 0 10 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M9 0H1C.27 0 0 .27 0 1v15l5-3.09L10 16V1c0-.73-.27-1-1-1zm-.78 4.25L6.36 5.61l.72 2.16c.06.22-.02.28-.2.17L5 6.6 3.12 7.94c-.19.11-.25.05-.2-.17l.72-2.16-1.86-1.36c-.17-.16-.14-.23.09-.23l2.3-.03.7-2.16h.25l.7 2.16 2.3.03c.23 0 .27.08.09.23h.01z" + }, + "children": [] + }], + "attribs": {} +}; +exports.bookmark = bookmark; \ No newline at end of file diff --git a/dist/oct/briefcase.js b/dist/oct/briefcase.js new file mode 100644 index 000000000..9b05bac0c --- /dev/null +++ b/dist/oct/briefcase.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.briefcase = void 0; +var briefcase = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M9 4V3c0-.55-.45-1-1-1H6c-.55 0-1 .45-1 1v1H1c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1H9zM6 3h2v1H6V3zm7 6H8v1H6V9H1V5h1v3h10V5h1v4z" + }, + "children": [] + }], + "attribs": {} +}; +exports.briefcase = briefcase; \ No newline at end of file diff --git a/dist/oct/broadcast.js b/dist/oct/broadcast.js new file mode 100644 index 000000000..2e7da0885 --- /dev/null +++ b/dist/oct/broadcast.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.broadcast = void 0; +var broadcast = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M9 9H8c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1H6c-.55 0-1 .45-1 1v2h1v3c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-3h1v-2c0-.55-.45-1-1-1zM7 7h1v1H7V7zm2 4H8v4H7v-4H6v-1h3v1zm2.09-3.5c0-1.98-1.61-3.59-3.59-3.59A3.593 3.593 0 004 8.31v1.98c-.61-.77-1-1.73-1-2.8 0-2.48 2.02-4.5 4.5-4.5S12 5.01 12 7.49c0 1.06-.39 2.03-1 2.8V8.31c.06-.27.09-.53.09-.81zm3.91 0c0 2.88-1.63 5.38-4 6.63v-1.05a6.553 6.553 0 003.09-5.58A6.59 6.59 0 007.5.91 6.59 6.59 0 00.91 7.5c0 2.36 1.23 4.42 3.09 5.58v1.05A7.497 7.497 0 017.5 0C11.64 0 15 3.36 15 7.5z" + }, + "children": [] + }], + "attribs": {} +}; +exports.broadcast = broadcast; \ No newline at end of file diff --git a/dist/oct/browser.js b/dist/oct/browser.js new file mode 100644 index 000000000..fcfbf4b02 --- /dev/null +++ b/dist/oct/browser.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.browser = void 0; +var browser = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M5 3h1v1H5V3zM3 3h1v1H3V3zM1 3h1v1H1V3zm12 10H1V5h12v8zm0-9H7V3h6v1zm1-1c0-.55-.45-1-1-1H1c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V3z" + }, + "children": [] + }], + "attribs": {} +}; +exports.browser = browser; \ No newline at end of file diff --git a/dist/oct/bug.js b/dist/oct/bug.js new file mode 100644 index 000000000..c5d3e8560 --- /dev/null +++ b/dist/oct/bug.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bug = void 0; +var bug = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M11 10h3V9h-3V8l3.17-1.03-.34-.94L11 7V6c0-.55-.45-1-1-1V4c0-.48-.36-.88-.83-.97L10.2 2H12V1H9.8l-2 2h-.59L5.2 1H3v1h1.8l1.03 1.03C5.36 3.12 5 3.51 5 4v1c-.55 0-1 .45-1 1v1l-2.83-.97-.34.94L4 8v1H1v1h3v1L.83 12.03l.34.94L4 12v1c0 .55.45 1 1 1h1l1-1V6h1v7l1 1h1c.55 0 1-.45 1-1v-1l2.83.97.34-.94L11 11v-1zM9 5H6V4h3v1z" + }, + "children": [] + }], + "attribs": {} +}; +exports.bug = bug; \ No newline at end of file diff --git a/dist/oct/calendar.js b/dist/oct/calendar.js new file mode 100644 index 000000000..0e3f75774 --- /dev/null +++ b/dist/oct/calendar.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.calendar = void 0; +var calendar = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M13 2h-1v1.5c0 .28-.22.5-.5.5h-2c-.28 0-.5-.22-.5-.5V2H6v1.5c0 .28-.22.5-.5.5h-2c-.28 0-.5-.22-.5-.5V2H2c-.55 0-1 .45-1 1v11c0 .55.45 1 1 1h11c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm0 12H2V5h11v9zM5 3H4V1h1v2zm6 0h-1V1h1v2zM6 7H5V6h1v1zm2 0H7V6h1v1zm2 0H9V6h1v1zm2 0h-1V6h1v1zM4 9H3V8h1v1zm2 0H5V8h1v1zm2 0H7V8h1v1zm2 0H9V8h1v1zm2 0h-1V8h1v1zm-8 2H3v-1h1v1zm2 0H5v-1h1v1zm2 0H7v-1h1v1zm2 0H9v-1h1v1zm2 0h-1v-1h1v1zm-8 2H3v-1h1v1zm2 0H5v-1h1v1zm2 0H7v-1h1v1zm2 0H9v-1h1v1z" + }, + "children": [] + }], + "attribs": {} +}; +exports.calendar = calendar; \ No newline at end of file diff --git a/dist/oct/check.js b/dist/oct/check.js new file mode 100644 index 000000000..b1e001c26 --- /dev/null +++ b/dist/oct/check.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.check = void 0; +var check = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5L12 5z" + }, + "children": [] + }], + "attribs": {} +}; +exports.check = check; \ No newline at end of file diff --git a/dist/oct/checklist.js b/dist/oct/checklist.js new file mode 100644 index 000000000..2f638ea79 --- /dev/null +++ b/dist/oct/checklist.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.checklist = void 0; +var checklist = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M16 8.5l-6 6-3-3L8.5 10l1.5 1.5L14.5 7 16 8.5zM5.7 12.2l.8.8H2c-.55 0-1-.45-1-1V3c0-.55.45-1 1-1h7c.55 0 1 .45 1 1v6.5l-.8-.8c-.39-.39-1.03-.39-1.42 0L5.7 10.8a.996.996 0 000 1.41v-.01zM4 4h5V3H4v1zm0 2h5V5H4v1zm0 2h3V7H4v1zM3 9H2v1h1V9zm0-2H2v1h1V7zm0-2H2v1h1V5zm0-2H2v1h1V3z" + }, + "children": [] + }], + "attribs": {} +}; +exports.checklist = checklist; \ No newline at end of file diff --git a/dist/oct/chevronDown.js b/dist/oct/chevronDown.js new file mode 100644 index 000000000..9fe9e2a31 --- /dev/null +++ b/dist/oct/chevronDown.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.chevronDown = void 0; +var chevronDown = { + "viewBox": "0 0 10 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M5 11L0 6l1.5-1.5L5 8.25 8.5 4.5 10 6l-5 5z" + }, + "children": [] + }], + "attribs": {} +}; +exports.chevronDown = chevronDown; \ No newline at end of file diff --git a/dist/oct/chevronLeft.js b/dist/oct/chevronLeft.js new file mode 100644 index 000000000..763a033b4 --- /dev/null +++ b/dist/oct/chevronLeft.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.chevronLeft = void 0; +var chevronLeft = { + "viewBox": "0 0 8 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M5.5 3L7 4.5 3.25 8 7 11.5 5.5 13l-5-5 5-5z" + }, + "children": [] + }], + "attribs": {} +}; +exports.chevronLeft = chevronLeft; \ No newline at end of file diff --git a/dist/oct/chevronRight.js b/dist/oct/chevronRight.js new file mode 100644 index 000000000..887cf6ff2 --- /dev/null +++ b/dist/oct/chevronRight.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.chevronRight = void 0; +var chevronRight = { + "viewBox": "0 0 8 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M7.5 8l-5 5L1 11.5 4.75 8 1 4.5 2.5 3l5 5z" + }, + "children": [] + }], + "attribs": {} +}; +exports.chevronRight = chevronRight; \ No newline at end of file diff --git a/dist/oct/chevronUp.js b/dist/oct/chevronUp.js new file mode 100644 index 000000000..ee75f3d11 --- /dev/null +++ b/dist/oct/chevronUp.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.chevronUp = void 0; +var chevronUp = { + "viewBox": "0 0 10 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M10 10l-1.5 1.5L5 7.75 1.5 11.5 0 10l5-5 5 5z" + }, + "children": [] + }], + "attribs": {} +}; +exports.chevronUp = chevronUp; \ No newline at end of file diff --git a/dist/oct/circleSlash.js b/dist/oct/circleSlash.js new file mode 100644 index 000000000..3cb911a0f --- /dev/null +++ b/dist/oct/circleSlash.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.circleSlash = void 0; +var circleSlash = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M7 1C3.14 1 0 4.14 0 8s3.14 7 7 7 7-3.14 7-7-3.14-7-7-7zm0 1.3c1.3 0 2.5.44 3.47 1.17l-8 8A5.755 5.755 0 011.3 8c0-3.14 2.56-5.7 5.7-5.7zm0 11.41c-1.3 0-2.5-.44-3.47-1.17l8-8c.73.97 1.17 2.17 1.17 3.47 0 3.14-2.56 5.7-5.7 5.7z" + }, + "children": [] + }], + "attribs": {} +}; +exports.circleSlash = circleSlash; \ No newline at end of file diff --git a/dist/oct/circuitBoard.js b/dist/oct/circuitBoard.js new file mode 100644 index 000000000..3afd13994 --- /dev/null +++ b/dist/oct/circuitBoard.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.circuitBoard = void 0; +var circuitBoard = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M3 5c0-.55.45-1 1-1s1 .45 1 1-.45 1-1 1-1-.45-1-1zm8 0c0-.55-.45-1-1-1s-1 .45-1 1 .45 1 1 1 1-.45 1-1zm0 6c0-.55-.45-1-1-1s-1 .45-1 1 .45 1 1 1 1-.45 1-1zm2-10H5v2.17c.36.19.64.47.83.83h2.34c.42-.78 1.33-1.28 2.34-1.05.75.19 1.36.8 1.53 1.55.31 1.38-.72 2.59-2.05 2.59-.8 0-1.48-.44-1.83-1.09H5.83c-.42.8-1.33 1.28-2.34 1.03-.73-.17-1.34-.78-1.52-1.52C1.72 4.49 2.2 3.59 3 3.17V1H1c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1l5-5h2.17c.42-.78 1.33-1.28 2.34-1.05.75.19 1.36.8 1.53 1.55.31 1.38-.72 2.59-2.05 2.59-.8 0-1.48-.44-1.83-1.09H6.99L4 15h9c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1z" + }, + "children": [] + }], + "attribs": {} +}; +exports.circuitBoard = circuitBoard; \ No newline at end of file diff --git a/dist/oct/clippy.js b/dist/oct/clippy.js new file mode 100644 index 000000000..92c50ffb4 --- /dev/null +++ b/dist/oct/clippy.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.clippy = void 0; +var clippy = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M2 13h4v1H2v-1zm5-6H2v1h5V7zm2 3V8l-3 3 3 3v-2h5v-2H9zM4.5 9H2v1h2.5V9zM2 12h2.5v-1H2v1zm9 1h1v2c-.02.28-.11.52-.3.7-.19.18-.42.28-.7.3H1c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h3c0-1.11.89-2 2-2 1.11 0 2 .89 2 2h3c.55 0 1 .45 1 1v5h-1V6H1v9h10v-2zM2 5h8c0-.55-.45-1-1-1H8c-.55 0-1-.45-1-1s-.45-1-1-1-1 .45-1 1-.45 1-1 1H3c-.55 0-1 .45-1 1z" + }, + "children": [] + }], + "attribs": {} +}; +exports.clippy = clippy; \ No newline at end of file diff --git a/dist/oct/clock.js b/dist/oct/clock.js new file mode 100644 index 000000000..3d3e9b627 --- /dev/null +++ b/dist/oct/clock.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.clock = void 0; +var clock = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M8 8h3v2H7c-.55 0-1-.45-1-1V4h2v4zM7 2.3c3.14 0 5.7 2.56 5.7 5.7s-2.56 5.7-5.7 5.7A5.71 5.71 0 011.3 8c0-3.14 2.56-5.7 5.7-5.7zM7 1C3.14 1 0 4.14 0 8s3.14 7 7 7 7-3.14 7-7-3.14-7-7-7z" + }, + "children": [] + }], + "attribs": {} +}; +exports.clock = clock; \ No newline at end of file diff --git a/dist/oct/cloudDownload.js b/dist/oct/cloudDownload.js new file mode 100644 index 000000000..08946d0bb --- /dev/null +++ b/dist/oct/cloudDownload.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cloudDownload = void 0; +var cloudDownload = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M9 12h2l-3 3-3-3h2V7h2v5zm3-8c0-.44-.91-3-4.5-3C5.08 1 3 2.92 3 5 1.02 5 0 6.52 0 8c0 1.53 1 3 3 3h3V9.7H3C1.38 9.7 1.3 8.28 1.3 8c0-.17.05-1.7 1.7-1.7h1.3V5c0-1.39 1.56-2.7 3.2-2.7 2.55 0 3.13 1.55 3.2 1.8v1.2H12c.81 0 2.7.22 2.7 2.2 0 2.09-2.25 2.2-2.7 2.2h-2V11h2c2.08 0 4-1.16 4-3.5C16 5.06 14.08 4 12 4z" + }, + "children": [] + }], + "attribs": {} +}; +exports.cloudDownload = cloudDownload; \ No newline at end of file diff --git a/dist/oct/cloudUpload.js b/dist/oct/cloudUpload.js new file mode 100644 index 000000000..3dbbca9b7 --- /dev/null +++ b/dist/oct/cloudUpload.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cloudUpload = void 0; +var cloudUpload = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M7 9H5l3-3 3 3H9v5H7V9zm5-4c0-.44-.91-3-4.5-3C5.08 2 3 3.92 3 6 1.02 6 0 7.52 0 9c0 1.53 1 3 3 3h3v-1.3H3c-1.62 0-1.7-1.42-1.7-1.7 0-.17.05-1.7 1.7-1.7h1.3V6c0-1.39 1.56-2.7 3.2-2.7 2.55 0 3.13 1.55 3.2 1.8v1.2H12c.81 0 2.7.22 2.7 2.2 0 2.09-2.25 2.2-2.7 2.2h-2V12h2c2.08 0 4-1.16 4-3.5C16 6.06 14.08 5 12 5z" + }, + "children": [] + }], + "attribs": {} +}; +exports.cloudUpload = cloudUpload; \ No newline at end of file diff --git a/dist/oct/code.js b/dist/oct/code.js new file mode 100644 index 000000000..51a73ee66 --- /dev/null +++ b/dist/oct/code.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.code = void 0; +var code = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M9.5 3L8 4.5 11.5 8 8 11.5 9.5 13 14 8 9.5 3zm-5 0L0 8l4.5 5L6 11.5 2.5 8 6 4.5 4.5 3z" + }, + "children": [] + }], + "attribs": {} +}; +exports.code = code; \ No newline at end of file diff --git a/dist/oct/comment.js b/dist/oct/comment.js new file mode 100644 index 000000000..c1a2c9eed --- /dev/null +++ b/dist/oct/comment.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.comment = void 0; +var comment = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M14 1H2c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1h2v3.5L7.5 11H14c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zm0 9H7l-2 2v-2H2V2h12v8z" + }, + "children": [] + }], + "attribs": {} +}; +exports.comment = comment; \ No newline at end of file diff --git a/dist/oct/commentDiscussion.js b/dist/oct/commentDiscussion.js new file mode 100644 index 000000000..17a9175a7 --- /dev/null +++ b/dist/oct/commentDiscussion.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.commentDiscussion = void 0; +var commentDiscussion = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M15 1H6c-.55 0-1 .45-1 1v2H1c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h1v3l3-3h4c.55 0 1-.45 1-1V9h1l3 3V9h1c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zM9 11H4.5L3 12.5V11H1V5h4v3c0 .55.45 1 1 1h3v2zm6-3h-2v1.5L11.5 8H6V2h9v6z" + }, + "children": [] + }], + "attribs": {} +}; +exports.commentDiscussion = commentDiscussion; \ No newline at end of file diff --git a/dist/oct/creditCard.js b/dist/oct/creditCard.js new file mode 100644 index 000000000..d748ee776 --- /dev/null +++ b/dist/oct/creditCard.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.creditCard = void 0; +var creditCard = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M12 9H2V8h10v1zm4-6v9c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V3c0-.55.45-1 1-1h14c.55 0 1 .45 1 1zm-1 3H1v6h14V6zm0-3H1v1h14V3zm-9 7H2v1h4v-1z" + }, + "children": [] + }], + "attribs": {} +}; +exports.creditCard = creditCard; \ No newline at end of file diff --git a/dist/oct/dash.js b/dist/oct/dash.js new file mode 100644 index 000000000..b8ed5ec67 --- /dev/null +++ b/dist/oct/dash.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.dash = void 0; +var dash = { + "viewBox": "0 0 8 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M0 7v2h8V7H0z" + }, + "children": [] + }], + "attribs": {} +}; +exports.dash = dash; \ No newline at end of file diff --git a/dist/oct/dashboard.js b/dist/oct/dashboard.js new file mode 100644 index 000000000..dc4beb135 --- /dev/null +++ b/dist/oct/dashboard.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.dashboard = void 0; +var dashboard = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M9 5H8V4h1v1zm4 3h-1v1h1V8zM6 5H5v1h1V5zM5 8H4v1h1V8zm11-5.5l-.5-.5L9 7c-.06-.02-1 0-1 0-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-.92l6-5.58zm-1.59 4.09c.19.61.3 1.25.3 1.91 0 3.42-2.78 6.2-6.2 6.2-3.42 0-6.21-2.78-6.21-6.2 0-3.42 2.78-6.2 6.2-6.2 1.2 0 2.31.34 3.27.94l.94-.94A7.459 7.459 0 008.51 1C4.36 1 1 4.36 1 8.5 1 12.64 4.36 16 8.5 16c4.14 0 7.5-3.36 7.5-7.5 0-1.03-.2-2.02-.59-2.91l-1 1z" + }, + "children": [] + }], + "attribs": {} +}; +exports.dashboard = dashboard; \ No newline at end of file diff --git a/dist/oct/database.js b/dist/oct/database.js new file mode 100644 index 000000000..a32358de6 --- /dev/null +++ b/dist/oct/database.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.database = void 0; +var database = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M6 15c-3.31 0-6-.9-6-2v-2c0-.17.09-.34.21-.5.67.86 3 1.5 5.79 1.5s5.12-.64 5.79-1.5c.13.16.21.33.21.5v2c0 1.1-2.69 2-6 2zm0-4c-3.31 0-6-.9-6-2V7c0-.11.04-.21.09-.31.03-.06.07-.13.12-.19C.88 7.36 3.21 8 6 8s5.12-.64 5.79-1.5c.05.06.09.13.12.19.05.1.09.21.09.31v2c0 1.1-2.69 2-6 2zm0-4c-3.31 0-6-.9-6-2V3c0-1.1 2.69-2 6-2s6 .9 6 2v2c0 1.1-2.69 2-6 2zm0-5c-2.21 0-4 .45-4 1s1.79 1 4 1 4-.45 4-1-1.79-1-4-1z" + }, + "children": [] + }], + "attribs": {} +}; +exports.database = database; \ No newline at end of file diff --git a/dist/oct/dependent.js b/dist/oct/dependent.js new file mode 100644 index 000000000..87d0e2067 --- /dev/null +++ b/dist/oct/dependent.js @@ -0,0 +1,18 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.dependent = void 0; +var dependent = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "d": "M1 1h7.5l2 2H9L8 2H1v12h10v-1h1v1c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V2c0-.55.45-1 1-1zm9 6h3v1h-3V7zm2 2h-2v1h2V9zM8.583 4h4.375L15 6v5.429a.58.58 0 01-.583.571H8.583A.58.58 0 018 11.429V10h1v1h5V6.5L12.5 5H9v1H8V4.571A.58.58 0 018.583 4zM9.5 7H6.667V5l-4 3 4 3V9H9.5V7z" + }, + "children": [] + }], + "attribs": {} +}; +exports.dependent = dependent; \ No newline at end of file diff --git a/dist/oct/desktopDownload.js b/dist/oct/desktopDownload.js new file mode 100644 index 000000000..9d55854bc --- /dev/null +++ b/dist/oct/desktopDownload.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.desktopDownload = void 0; +var desktopDownload = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M4 6h3V0h2v6h3l-4 4-4-4zm11-4h-4v1h4v8H1V3h4V2H1c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h5.34c-.25.61-.86 1.39-2.34 2h8c-1.48-.61-2.09-1.39-2.34-2H15c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1z" + }, + "children": [] + }], + "attribs": {} +}; +exports.desktopDownload = desktopDownload; \ No newline at end of file diff --git a/dist/oct/deviceCamera.js b/dist/oct/deviceCamera.js new file mode 100644 index 000000000..ee937656d --- /dev/null +++ b/dist/oct/deviceCamera.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.deviceCamera = void 0; +var deviceCamera = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M15 3H7c0-.55-.45-1-1-1H2c-.55 0-1 .45-1 1-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1zM6 5H2V4h4v1zm4.5 7C8.56 12 7 10.44 7 8.5S8.56 5 10.5 5 14 6.56 14 8.5 12.44 12 10.5 12zM13 8.5c0 1.38-1.13 2.5-2.5 2.5S8 9.87 8 8.5 9.13 6 10.5 6 13 7.13 13 8.5z" + }, + "children": [] + }], + "attribs": {} +}; +exports.deviceCamera = deviceCamera; \ No newline at end of file diff --git a/dist/oct/deviceCameraVideo.js b/dist/oct/deviceCameraVideo.js new file mode 100644 index 000000000..f8762a9e3 --- /dev/null +++ b/dist/oct/deviceCameraVideo.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.deviceCameraVideo = void 0; +var deviceCameraVideo = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M15.2 2.09L10 5.72V3c0-.55-.45-1-1-1H1c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h8c.55 0 1-.45 1-1V9.28l5.2 3.63c.33.23.8 0 .8-.41v-10c0-.41-.47-.64-.8-.41z" + }, + "children": [] + }], + "attribs": {} +}; +exports.deviceCameraVideo = deviceCameraVideo; \ No newline at end of file diff --git a/dist/oct/deviceDesktop.js b/dist/oct/deviceDesktop.js new file mode 100644 index 000000000..68d16523c --- /dev/null +++ b/dist/oct/deviceDesktop.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.deviceDesktop = void 0; +var deviceDesktop = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M15 2H1c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h5.34c-.25.61-.86 1.39-2.34 2h8c-1.48-.61-2.09-1.39-2.34-2H15c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm0 9H1V3h14v8z" + }, + "children": [] + }], + "attribs": {} +}; +exports.deviceDesktop = deviceDesktop; \ No newline at end of file diff --git a/dist/oct/deviceMobile.js b/dist/oct/deviceMobile.js new file mode 100644 index 000000000..5073a8cfe --- /dev/null +++ b/dist/oct/deviceMobile.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.deviceMobile = void 0; +var deviceMobile = { + "viewBox": "0 0 10 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M9 0H1C.45 0 0 .45 0 1v14c0 .55.45 1 1 1h8c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zM5 15.3c-.72 0-1.3-.58-1.3-1.3 0-.72.58-1.3 1.3-1.3.72 0 1.3.58 1.3 1.3 0 .72-.58 1.3-1.3 1.3zM9 12H1V2h8v10z" + }, + "children": [] + }], + "attribs": {} +}; +exports.deviceMobile = deviceMobile; \ No newline at end of file diff --git a/dist/oct/diff.js b/dist/oct/diff.js new file mode 100644 index 000000000..cd516cf4e --- /dev/null +++ b/dist/oct/diff.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.diff = void 0; +var diff = { + "viewBox": "0 0 13 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M6 7h2v1H6v2H5V8H3V7h2V5h1v2zm-3 6h5v-1H3v1zM7.5 2L11 5.5V15c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V3c0-.55.45-1 1-1h6.5zM10 6L7 3H1v12h9V6zM8.5 0H3v1h5l4 4v8h1V4.5L8.5 0z" + }, + "children": [] + }], + "attribs": {} +}; +exports.diff = diff; \ No newline at end of file diff --git a/dist/oct/diffAdded.js b/dist/oct/diffAdded.js new file mode 100644 index 000000000..db1ad8e73 --- /dev/null +++ b/dist/oct/diffAdded.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.diffAdded = void 0; +var diffAdded = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M13 1H1c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zm0 13H1V2h12v12zM6 9H3V7h3V4h2v3h3v2H8v3H6V9z" + }, + "children": [] + }], + "attribs": {} +}; +exports.diffAdded = diffAdded; \ No newline at end of file diff --git a/dist/oct/diffIgnored.js b/dist/oct/diffIgnored.js new file mode 100644 index 000000000..9a7d9e809 --- /dev/null +++ b/dist/oct/diffIgnored.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.diffIgnored = void 0; +var diffIgnored = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M13 1H1c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zm0 13H1V2h12v12zm-8.5-2H3v-1.5L9.5 4H11v1.5L4.5 12z" + }, + "children": [] + }], + "attribs": {} +}; +exports.diffIgnored = diffIgnored; \ No newline at end of file diff --git a/dist/oct/diffModified.js b/dist/oct/diffModified.js new file mode 100644 index 000000000..75cdaa907 --- /dev/null +++ b/dist/oct/diffModified.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.diffModified = void 0; +var diffModified = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M13 1H1c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zm0 13H1V2h12v12zM4 8c0-1.66 1.34-3 3-3s3 1.34 3 3-1.34 3-3 3-3-1.34-3-3z" + }, + "children": [] + }], + "attribs": {} +}; +exports.diffModified = diffModified; \ No newline at end of file diff --git a/dist/oct/diffRemoved.js b/dist/oct/diffRemoved.js new file mode 100644 index 000000000..913be0929 --- /dev/null +++ b/dist/oct/diffRemoved.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.diffRemoved = void 0; +var diffRemoved = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M13 1H1c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zm0 13H1V2h12v12zm-2-5H3V7h8v2z" + }, + "children": [] + }], + "attribs": {} +}; +exports.diffRemoved = diffRemoved; \ No newline at end of file diff --git a/dist/oct/diffRenamed.js b/dist/oct/diffRenamed.js new file mode 100644 index 000000000..557509eb0 --- /dev/null +++ b/dist/oct/diffRenamed.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.diffRenamed = void 0; +var diffRenamed = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M6 9H3V7h3V4l5 4-5 4V9zm8-7v12c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V2c0-.55.45-1 1-1h12c.55 0 1 .45 1 1zm-1 0H1v12h12V2z" + }, + "children": [] + }], + "attribs": {} +}; +exports.diffRenamed = diffRenamed; \ No newline at end of file diff --git a/dist/oct/ellipses.js b/dist/oct/ellipses.js new file mode 100644 index 000000000..0659391af --- /dev/null +++ b/dist/oct/ellipses.js @@ -0,0 +1,61 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ellipses = void 0; +var ellipses = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "title", + "attribs": {}, + "children": [] + }, { + "name": "desc", + "attribs": {}, + "children": [] + }, { + "name": "defs", + "attribs": {}, + "children": [] + }, { + "name": "g", + "attribs": { + "id": "Octicons", + "stroke": "none", + "stroke-width": "1", + "fill": "none", + "fill-rule": "evenodd" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "ellipses", + "fill": "#000000" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "ellipses", + "fill": "#000000" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M11,5 L1,5 C0.45,5 0,5.45 0,6 L0,10 C0,10.55 0.45,11 1,11 L11,11 C11.55,11 12,10.55 12,10 L12,6 C12,5.45 11.55,5 11,5 L11,5 Z M4,9 L2,9 L2,7 L4,7 L4,9 L4,9 Z M7,9 L5,9 L5,7 L7,7 L7,9 L7,9 Z M10,9 L8,9 L8,7 L10,7 L10,9 L10,9 Z", + "id": "Shape" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M11,5 L1,5 C0.45,5 0,5.45 0,6 L0,10 C0,10.55 0.45,11 1,11 L11,11 C11.55,11 12,10.55 12,10 L12,6 C12,5.45 11.55,5 11,5 L11,5 Z M4,9 L2,9 L2,7 L4,7 L4,9 L4,9 Z M7,9 L5,9 L5,7 L7,7 L7,9 L7,9 Z M10,9 L8,9 L8,7 L10,7 L10,9 L10,9 Z", + "id": "Shape" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.ellipses = ellipses; \ No newline at end of file diff --git a/dist/oct/ellipsis.js b/dist/oct/ellipsis.js new file mode 100644 index 000000000..db1ff4fdf --- /dev/null +++ b/dist/oct/ellipsis.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ellipsis = void 0; +var ellipsis = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M11 5H1c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h10c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zM4 9H2V7h2v2zm3 0H5V7h2v2zm3 0H8V7h2v2z" + }, + "children": [] + }], + "attribs": {} +}; +exports.ellipsis = ellipsis; \ No newline at end of file diff --git a/dist/oct/eye.js b/dist/oct/eye.js new file mode 100644 index 000000000..bc9ddcfea --- /dev/null +++ b/dist/oct/eye.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.eye = void 0; +var eye = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M8.06 2C3 2 0 8 0 8s3 6 8.06 6C13 14 16 8 16 8s-3-6-7.94-6zM8 12c-2.2 0-4-1.78-4-4 0-2.2 1.8-4 4-4 2.22 0 4 1.8 4 4 0 2.22-1.78 4-4 4zm2-4c0 1.11-.89 2-2 2-1.11 0-2-.89-2-2 0-1.11.89-2 2-2 1.11 0 2 .89 2 2z" + }, + "children": [] + }], + "attribs": {} +}; +exports.eye = eye; \ No newline at end of file diff --git a/dist/oct/eyeClosed.js b/dist/oct/eyeClosed.js new file mode 100644 index 000000000..929cc84ed --- /dev/null +++ b/dist/oct/eyeClosed.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.eyeClosed = void 0; +var eyeClosed = { + "viewBox": "0 0 16 14", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M14.822.854a.5.5 0 10-.707-.708l-2.11 2.11C10.89 1.483 9.565.926 8.06.926c-5.06 0-8.06 6-8.06 6s1.162 2.323 3.258 4.078l-2.064 2.065a.5.5 0 10.707.707L14.822.854zM4.86 9.403L6.292 7.97A1.999 1.999 0 016 6.925c0-1.11.89-2 2-2 .384 0 .741.106 1.045.292l1.433-1.433A3.98 3.98 0 008 2.925c-2.2 0-4 1.8-4 4 0 .938.321 1.798.859 2.478zm7.005-3.514l1.993-1.992A14.873 14.873 0 0116 6.925s-3 6-7.94 6a6.609 6.609 0 01-2.661-.57l1.565-1.566c.33.089.678.136 1.036.136 2.22 0 4-1.78 4-4 0-.358-.047-.705-.136-1.036zM9.338 8.415l.152-.151a1.996 1.996 0 01-.152.151z" + }, + "children": [] + }], + "attribs": {} +}; +exports.eyeClosed = eyeClosed; \ No newline at end of file diff --git a/dist/oct/file.js b/dist/oct/file.js new file mode 100644 index 000000000..c0f8dbf79 --- /dev/null +++ b/dist/oct/file.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.file = void 0; +var file = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M6 5H2V4h4v1zM2 8h7V7H2v1zm0 2h7V9H2v1zm0 2h7v-1H2v1zm10-7.5V14c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V2c0-.55.45-1 1-1h7.5L12 4.5zM11 5L8 2H1v12h10V5z" + }, + "children": [] + }], + "attribs": {} +}; +exports.file = file; \ No newline at end of file diff --git a/dist/oct/fileBinary.js b/dist/oct/fileBinary.js new file mode 100644 index 000000000..316d8b1be --- /dev/null +++ b/dist/oct/fileBinary.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.fileBinary = void 0; +var fileBinary = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M4 12h1v1H2v-1h1v-2H2V9h2v3zm8-7.5V14c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V2c0-.55.45-1 1-1h7.5L12 4.5zM11 5L8 2H1v12h10V5zM8 4H6v1h1v2H6v1h3V7H8V4zM2 4h3v4H2V4zm1 3h1V5H3v2zm3 2h3v4H6V9zm1 3h1v-2H7v2z" + }, + "children": [] + }], + "attribs": {} +}; +exports.fileBinary = fileBinary; \ No newline at end of file diff --git a/dist/oct/fileCode.js b/dist/oct/fileCode.js new file mode 100644 index 000000000..5dd4ecb82 --- /dev/null +++ b/dist/oct/fileCode.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.fileCode = void 0; +var fileCode = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M8.5 1H1c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h10c.55 0 1-.45 1-1V4.5L8.5 1zM11 14H1V2h7l3 3v9zM5 6.98L3.5 8.5 5 10l-.5 1L2 8.5 4.5 6l.5.98zM7.5 6L10 8.5 7.5 11l-.5-.98L8.5 8.5 7 7l.5-1z" + }, + "children": [] + }], + "attribs": {} +}; +exports.fileCode = fileCode; \ No newline at end of file diff --git a/dist/oct/fileDirectory.js b/dist/oct/fileDirectory.js new file mode 100644 index 000000000..764ad6fcd --- /dev/null +++ b/dist/oct/fileDirectory.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.fileDirectory = void 0; +var fileDirectory = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M13 4H7V3c0-.66-.31-1-1-1H1c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zM6 4H1V3h5v1z" + }, + "children": [] + }], + "attribs": {} +}; +exports.fileDirectory = fileDirectory; \ No newline at end of file diff --git a/dist/oct/fileMedia.js b/dist/oct/fileMedia.js new file mode 100644 index 000000000..4a1abeab5 --- /dev/null +++ b/dist/oct/fileMedia.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.fileMedia = void 0; +var fileMedia = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M6 5h2v2H6V5zm6-.5V14c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V2c0-.55.45-1 1-1h7.5L12 4.5zM11 5L8 2H1v11l3-5 2 4 2-2 3 3V5z" + }, + "children": [] + }], + "attribs": {} +}; +exports.fileMedia = fileMedia; \ No newline at end of file diff --git a/dist/oct/filePdf.js b/dist/oct/filePdf.js new file mode 100644 index 000000000..99749e8ac --- /dev/null +++ b/dist/oct/filePdf.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.filePdf = void 0; +var filePdf = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M8.5 1H1a1 1 0 00-1 1v12a1 1 0 001 1h10a1 1 0 001-1V4.5L8.5 1zM1 2h4a.68.68 0 00-.31.2 1.08 1.08 0 00-.23.47 4.22 4.22 0 00-.09 1.47c.06.609.173 1.211.34 1.8A21.78 21.78 0 013.6 8.6c-.5 1-.8 1.66-.91 1.84a7.156 7.156 0 00-.69.3c-.362.165-.699.38-1 .64V2zm4.42 4.8a5.65 5.65 0 001.17 2.09c.275.237.595.417.94.53-.64.09-1.23.2-1.81.33-.618.15-1.223.347-1.81.59s.22-.44.61-1.25c.365-.74.67-1.51.91-2.3l-.01.01zM11 14H1.5a.743.743 0 01-.17 0 2.12 2.12 0 00.73-.44 10.14 10.14 0 001.78-2.38c.31-.13.58-.23.81-.31l.42-.14c.45-.13.94-.23 1.44-.33s1-.16 1.48-.2c.447.216.912.394 1.39.53.403.11.814.188 1.23.23h.38V14H11zm0-4.86a3.743 3.743 0 00-.64-.28 4.221 4.221 0 00-.75-.11c-.411.003-.822.03-1.23.08a3 3 0 01-1-.64 6.07 6.07 0 01-1.29-2.33c.111-.661.178-1.33.2-2 .02-.25.02-.5 0-.75a1.05 1.05 0 00-.2-.88.82.82 0 00-.61-.23H8l3 3v4.14z" + }, + "children": [] + }], + "attribs": {} +}; +exports.filePdf = filePdf; \ No newline at end of file diff --git a/dist/oct/fileSubmodule.js b/dist/oct/fileSubmodule.js new file mode 100644 index 000000000..420932a49 --- /dev/null +++ b/dist/oct/fileSubmodule.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.fileSubmodule = void 0; +var fileSubmodule = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M10 7H4v7h9c.55 0 1-.45 1-1V8h-4V7zM9 9H5V8h4v1zm4-5H7V3c0-.66-.31-1-1-1H1c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h2V7c0-.55.45-1 1-1h6c.55 0 1 .45 1 1h3V5c0-.55-.45-1-1-1zM6 4H1V3h5v1z" + }, + "children": [] + }], + "attribs": {} +}; +exports.fileSubmodule = fileSubmodule; \ No newline at end of file diff --git a/dist/oct/fileSymlinkDirectory.js b/dist/oct/fileSymlinkDirectory.js new file mode 100644 index 000000000..d34121b51 --- /dev/null +++ b/dist/oct/fileSymlinkDirectory.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.fileSymlinkDirectory = void 0; +var fileSymlinkDirectory = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M13 4H7V3c0-.66-.31-1-1-1H1c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zM1 3h5v1H1V3zm6 9v-2c-.98-.02-1.84.22-2.55.7-.71.48-1.19 1.25-1.45 2.3.02-1.64.39-2.88 1.13-3.73C4.86 8.43 5.82 8 7.01 8V6l4 3-4 3H7z" + }, + "children": [] + }], + "attribs": {} +}; +exports.fileSymlinkDirectory = fileSymlinkDirectory; \ No newline at end of file diff --git a/dist/oct/fileSymlinkFile.js b/dist/oct/fileSymlinkFile.js new file mode 100644 index 000000000..1a0f1d6af --- /dev/null +++ b/dist/oct/fileSymlinkFile.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.fileSymlinkFile = void 0; +var fileSymlinkFile = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M8.5 1H1c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h10c.55 0 1-.45 1-1V4.5L8.5 1zM11 14H1V2h7l3 3v9zM6 4.5l4 3-4 3v-2c-.98-.02-1.84.22-2.55.7-.71.48-1.19 1.25-1.45 2.3.02-1.64.39-2.88 1.13-3.73.73-.84 1.69-1.27 2.88-1.27v-2H6z" + }, + "children": [] + }], + "attribs": {} +}; +exports.fileSymlinkFile = fileSymlinkFile; \ No newline at end of file diff --git a/dist/oct/fileText.js b/dist/oct/fileText.js new file mode 100644 index 000000000..cfe36aec5 --- /dev/null +++ b/dist/oct/fileText.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.fileText = void 0; +var fileText = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "d": "M6 5H2v-1h4v1zM2 8h7v-1H2v1z m0 2h7v-1H2v1z m0 2h7v-1H2v1z m10-7.5v9.5c0 0.55-0.45 1-1 1H1c-0.55 0-1-0.45-1-1V2c0-0.55 0.45-1 1-1h7.5l3.5 3.5z m-1 0.5L8 2H1v12h10V5z" + }, + "children": [] + }] +}; +exports.fileText = fileText; \ No newline at end of file diff --git a/dist/oct/fileZip.js b/dist/oct/fileZip.js new file mode 100644 index 000000000..7b49c7d4f --- /dev/null +++ b/dist/oct/fileZip.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.fileZip = void 0; +var fileZip = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M8.5 1H1a1 1 0 00-1 1v12a1 1 0 001 1h10a1 1 0 001-1V4.5L8.5 1zM11 14H1V2h3v1h1V2h3l3 3v9zM5 4V3h1v1H5zM4 4h1v1H4V4zm1 2V5h1v1H5zM4 6h1v1H4V6zm1 2V7h1v1H5zM4 9.28A2 2 0 003 11v1h4v-1a2 2 0 00-2-2V8H4v1.28zM6 10v1H4v-1h2z" + }, + "children": [] + }], + "attribs": {} +}; +exports.fileZip = fileZip; \ No newline at end of file diff --git a/dist/oct/flame.js b/dist/oct/flame.js new file mode 100644 index 000000000..99cb75b63 --- /dev/null +++ b/dist/oct/flame.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.flame = void 0; +var flame = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M5.05.31c.81 2.17.41 3.38-.52 4.31C3.55 5.67 1.98 6.45.9 7.98c-1.45 2.05-1.7 6.53 3.53 7.7-2.2-1.16-2.67-4.52-.3-6.61-.61 2.03.53 3.33 1.94 2.86 1.39-.47 2.3.53 2.27 1.67-.02.78-.31 1.44-1.13 1.81 3.42-.59 4.78-3.42 4.78-5.56 0-2.84-2.53-3.22-1.25-5.61-1.52.13-2.03 1.13-1.89 2.75.09 1.08-1.02 1.8-1.86 1.33-.67-.41-.66-1.19-.06-1.78C8.18 5.31 8.68 2.45 5.05.32L5.03.3l.02.01z" + }, + "children": [] + }], + "attribs": {} +}; +exports.flame = flame; \ No newline at end of file diff --git a/dist/oct/fold.js b/dist/oct/fold.js new file mode 100644 index 000000000..0e4ccbfe2 --- /dev/null +++ b/dist/oct/fold.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.fold = void 0; +var fold = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M7 9l3 3H8v3H6v-3H4l3-3zm3-6H8V0H6v3H4l3 3 3-3zm4 2c0-.55-.45-1-1-1h-2.5l-1 1h3l-2 2h-7l-2-2h3l-1-1H1c-.55 0-1 .45-1 1l2.5 2.5L0 10c0 .55.45 1 1 1h2.5l1-1h-3l2-2h7l2 2h-3l1 1H13c.55 0 1-.45 1-1l-2.5-2.5L14 5z" + }, + "children": [] + }], + "attribs": {} +}; +exports.fold = fold; \ No newline at end of file diff --git a/dist/oct/foldDown.js b/dist/oct/foldDown.js new file mode 100644 index 000000000..ea34578e8 --- /dev/null +++ b/dist/oct/foldDown.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.foldDown = void 0; +var foldDown = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M4 11l3 3 3-3H8V5H6v6H4zm-4 0c0 .55.45 1 1 1h2.5l-1-1h-1l2-2H5V8H3.5l-2-2H5V5H1c-.55 0-1 .45-1 1l2.5 2.5L0 11zm10.5-2H9V8h1.5l2-2H9V5h4c.55 0 1 .45 1 1l-2.5 2.5L14 11c0 .55-.45 1-1 1h-2.5l1-1h1l-2-2z" + }, + "children": [] + }], + "attribs": {} +}; +exports.foldDown = foldDown; \ No newline at end of file diff --git a/dist/oct/foldUp.js b/dist/oct/foldUp.js new file mode 100644 index 000000000..859a84c67 --- /dev/null +++ b/dist/oct/foldUp.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.foldUp = void 0; +var foldUp = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M10 6L7 3 4 6h2v6h2V6h2zm4 0c0-.55-.45-1-1-1h-2.5l1 1h1l-2 2H9v1h1.5l2 2H9v1h4c.55 0 1-.45 1-1l-2.5-2.5L14 6zM3.5 8H5v1H3.5l-2 2H5v1H1c-.55 0-1-.45-1-1l2.5-2.5L0 6c0-.55.45-1 1-1h2.5l-1 1h-1l2 2z" + }, + "children": [] + }], + "attribs": {} +}; +exports.foldUp = foldUp; \ No newline at end of file diff --git a/dist/oct/gear.js b/dist/oct/gear.js new file mode 100644 index 000000000..d5a1c3bdf --- /dev/null +++ b/dist/oct/gear.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.gear = void 0; +var gear = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M14 8.77v-1.6l-1.94-.64-.45-1.09.88-1.84-1.13-1.13-1.81.91-1.09-.45-.69-1.92h-1.6l-.63 1.94-1.11.45-1.84-.88-1.13 1.13.91 1.81-.45 1.09L0 7.23v1.59l1.94.64.45 1.09-.88 1.84 1.13 1.13 1.81-.91 1.09.45.69 1.92h1.59l.63-1.94 1.11-.45 1.84.88 1.13-1.13-.92-1.81.47-1.09L14 8.75v.02zM7 11c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z" + }, + "children": [] + }], + "attribs": {} +}; +exports.gear = gear; \ No newline at end of file diff --git a/dist/oct/gift.js b/dist/oct/gift.js new file mode 100644 index 000000000..a09b506b2 --- /dev/null +++ b/dist/oct/gift.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.gift = void 0; +var gift = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M13 4h-1.38c.19-.33.33-.67.36-.91.06-.67-.11-1.22-.52-1.61C11.1 1.1 10.65 1 10.1 1h-.11c-.53.02-1.11.25-1.53.58-.42.33-.73.72-.97 1.2-.23-.48-.55-.88-.97-1.2-.42-.32-1-.58-1.53-.58h-.03c-.56 0-1.06.09-1.44.48-.41.39-.58.94-.52 1.61.03.23.17.58.36.91H1.98c-.55 0-1 .45-1 1v3h1v5c0 .55.45 1 1 1h9c.55 0 1-.45 1-1V8h1V5c0-.55-.45-1-1-1H13zm-4.78-.88c.17-.36.42-.67.75-.92.3-.23.72-.39 1.05-.41h.09c.45 0 .66.11.8.25s.33.39.3.95c-.05.19-.25.61-.5 1h-2.9l.41-.88v.01zM4.09 2.04c.13-.13.31-.25.91-.25.31 0 .72.17 1.03.41.33.25.58.55.75.92L7.2 4H4.3c-.25-.39-.45-.81-.5-1-.03-.56.16-.81.3-.95l-.01-.01zM7 12.99H3V8h4v5-.01zm0-6H2V5h5v2-.01zm5 6H8V8h4v5-.01zm1-6H8V5h5v2-.01z" + }, + "children": [] + }], + "attribs": {} +}; +exports.gift = gift; \ No newline at end of file diff --git a/dist/oct/gist.js b/dist/oct/gist.js new file mode 100644 index 000000000..18132fc5e --- /dev/null +++ b/dist/oct/gist.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.gist = void 0; +var gist = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M7.5 5L10 7.5 7.5 10l-.75-.75L8.5 7.5 6.75 5.75 7.5 5zm-3 0L2 7.5 4.5 10l.75-.75L3.5 7.5l1.75-1.75L4.5 5zM0 13V2c0-.55.45-1 1-1h10c.55 0 1 .45 1 1v11c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1zm1 0h10V2H1v11z" + }, + "children": [] + }], + "attribs": {} +}; +exports.gist = gist; \ No newline at end of file diff --git a/dist/oct/gistSecret.js b/dist/oct/gistSecret.js new file mode 100644 index 000000000..ab499ea7d --- /dev/null +++ b/dist/oct/gistSecret.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.gistSecret = void 0; +var gistSecret = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M8 10.5L9 14H5l1-3.5L5.25 9h3.5L8 10.5zM10 6H4L2 7h10l-2-1zM9 2L7 3 5 2 4 5h6L9 2zm4.03 7.75L10 9l1 2-2 3h3.22c.45 0 .86-.31.97-.75l.56-2.28c.14-.53-.19-1.08-.72-1.22zM4 9l-3.03.75c-.53.14-.86.69-.72 1.22l.56 2.28c.11.44.52.75.97.75H5l-2-3 1-2z" + }, + "children": [] + }], + "attribs": {} +}; +exports.gistSecret = gistSecret; \ No newline at end of file diff --git a/dist/oct/gitBranch.js b/dist/oct/gitBranch.js new file mode 100644 index 000000000..0111028d3 --- /dev/null +++ b/dist/oct/gitBranch.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.gitBranch = void 0; +var gitBranch = { + "viewBox": "0 0 10 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M10 5c0-1.11-.89-2-2-2a1.993 1.993 0 00-1 3.72v.3c-.02.52-.23.98-.63 1.38-.4.4-.86.61-1.38.63-.83.02-1.48.16-2 .45V4.72a1.993 1.993 0 00-1-3.72C.88 1 0 1.89 0 3a2 2 0 001 1.72v6.56c-.59.35-1 .99-1 1.72 0 1.11.89 2 2 2 1.11 0 2-.89 2-2 0-.53-.2-1-.53-1.36.09-.06.48-.41.59-.47.25-.11.56-.17.94-.17 1.05-.05 1.95-.45 2.75-1.25S8.95 7.77 9 6.73h-.02C9.59 6.37 10 5.73 10 5zM2 1.8c.66 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2C1.35 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2zm0 12.41c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm6-8c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z" + }, + "children": [] + }], + "attribs": {} +}; +exports.gitBranch = gitBranch; \ No newline at end of file diff --git a/dist/oct/gitCommit.js b/dist/oct/gitCommit.js new file mode 100644 index 000000000..df367e736 --- /dev/null +++ b/dist/oct/gitCommit.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.gitCommit = void 0; +var gitCommit = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M10.86 7c-.45-1.72-2-3-3.86-3-1.86 0-3.41 1.28-3.86 3H0v2h3.14c.45 1.72 2 3 3.86 3 1.86 0 3.41-1.28 3.86-3H14V7h-3.14zM7 10.2c-1.22 0-2.2-.98-2.2-2.2 0-1.22.98-2.2 2.2-2.2 1.22 0 2.2.98 2.2 2.2 0 1.22-.98 2.2-2.2 2.2z" + }, + "children": [] + }], + "attribs": {} +}; +exports.gitCommit = gitCommit; \ No newline at end of file diff --git a/dist/oct/gitCompare.js b/dist/oct/gitCompare.js new file mode 100644 index 000000000..5942c1939 --- /dev/null +++ b/dist/oct/gitCompare.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.gitCompare = void 0; +var gitCompare = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M5 12H4c-.27-.02-.48-.11-.69-.31-.21-.2-.3-.42-.31-.69V4.72A1.993 1.993 0 002 1a1.993 1.993 0 00-1 3.72V11c.03.78.34 1.47.94 2.06.6.59 1.28.91 2.06.94h1v2l3-3-3-3v2zM2 1.8c.66 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2C1.35 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2zm11 9.48V5c-.03-.78-.34-1.47-.94-2.06-.6-.59-1.28-.91-2.06-.94H9V0L6 3l3 3V4h1c.27.02.48.11.69.31.21.2.3.42.31.69v6.28A1.993 1.993 0 0012 15a1.993 1.993 0 001-3.72zm-1 2.92c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z" + }, + "children": [] + }], + "attribs": {} +}; +exports.gitCompare = gitCompare; \ No newline at end of file diff --git a/dist/oct/gitMerge.js b/dist/oct/gitMerge.js new file mode 100644 index 000000000..8ac8fad26 --- /dev/null +++ b/dist/oct/gitMerge.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.gitMerge = void 0; +var gitMerge = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M10 7c-.73 0-1.38.41-1.73 1.02V8C7.22 7.98 6 7.64 5.14 6.98c-.75-.58-1.5-1.61-1.89-2.44A1.993 1.993 0 002 .99C.89.99 0 1.89 0 3a2 2 0 001 1.72v6.56c-.59.35-1 .99-1 1.72 0 1.11.89 2 2 2a1.993 1.993 0 001-3.72V7.67c.67.7 1.44 1.27 2.3 1.69.86.42 2.03.63 2.97.64v-.02c.36.61 1 1.02 1.73 1.02 1.11 0 2-.89 2-2 0-1.11-.89-2-2-2zm-6.8 6c0 .66-.55 1.2-1.2 1.2-.65 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm8 6c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z" + }, + "children": [] + }], + "attribs": {} +}; +exports.gitMerge = gitMerge; \ No newline at end of file diff --git a/dist/oct/gitPullRequest.js b/dist/oct/gitPullRequest.js new file mode 100644 index 000000000..4abf74555 --- /dev/null +++ b/dist/oct/gitPullRequest.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.gitPullRequest = void 0; +var gitPullRequest = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M11 11.28V5c-.03-.78-.34-1.47-.94-2.06C9.46 2.35 8.78 2.03 8 2H7V0L4 3l3 3V4h1c.27.02.48.11.69.31.21.2.3.42.31.69v6.28A1.993 1.993 0 0010 15a1.993 1.993 0 001-3.72zm-1 2.92c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zM4 3c0-1.11-.89-2-2-2a1.993 1.993 0 00-1 3.72v6.56A1.993 1.993 0 002 15a1.993 1.993 0 001-3.72V4.72c.59-.34 1-.98 1-1.72zm-.8 10c0 .66-.55 1.2-1.2 1.2-.65 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z" + }, + "children": [] + }], + "attribs": {} +}; +exports.gitPullRequest = gitPullRequest; \ No newline at end of file diff --git a/dist/oct/githubAction.js b/dist/oct/githubAction.js new file mode 100644 index 000000000..a07c20620 --- /dev/null +++ b/dist/oct/githubAction.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.githubAction = void 0; +var githubAction = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M9 2h6c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1H9a1 1 0 11-2 0H1c-.55 0-1-.45-1-1V3c0-.55.45-1 1-1h6a1 1 0 112 0zm6 1v10H1V3h14zm-2.5 4a1.5 1.5 0 100-3 1.5 1.5 0 000 3z" + }, + "children": [] + }], + "attribs": {} +}; +exports.githubAction = githubAction; \ No newline at end of file diff --git a/dist/oct/globe.js b/dist/oct/globe.js new file mode 100644 index 000000000..1941cb573 --- /dev/null +++ b/dist/oct/globe.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.globe = void 0; +var globe = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M7 1C3.14 1 0 4.14 0 8s3.14 7 7 7c.48 0 .94-.05 1.38-.14-.17-.08-.2-.73-.02-1.09.19-.41.81-1.45.2-1.8-.61-.35-.44-.5-.81-.91-.37-.41-.22-.47-.25-.58-.08-.34.36-.89.39-.94.02-.06.02-.27 0-.33 0-.08-.27-.22-.34-.23-.06 0-.11.11-.2.13-.09.02-.5-.25-.59-.33-.09-.08-.14-.23-.27-.34-.13-.13-.14-.03-.33-.11s-.8-.31-1.28-.48c-.48-.19-.52-.47-.52-.66-.02-.2-.3-.47-.42-.67-.14-.2-.16-.47-.2-.41-.04.06.25.78.2.81-.05.02-.16-.2-.3-.38-.14-.19.14-.09-.3-.95s.14-1.3.17-1.75c.03-.45.38.17.19-.13-.19-.3 0-.89-.14-1.11-.13-.22-.88.25-.88.25.02-.22.69-.58 1.16-.92.47-.34.78-.06 1.16.05.39.13.41.09.28-.05-.13-.13.06-.17.36-.13.28.05.38.41.83.36.47-.03.05.09.11.22s-.06.11-.38.3c-.3.2.02.22.55.61s.38-.25.31-.55c-.07-.3.39-.06.39-.06.33.22.27.02.5.08.23.06.91.64.91.64-.83.44-.31.48-.17.59.14.11-.28.3-.28.3-.17-.17-.19.02-.3.08-.11.06-.02.22-.02.22-.56.09-.44.69-.42.83 0 .14-.38.36-.47.58-.09.2.25.64.06.66-.19.03-.34-.66-1.31-.41-.3.08-.94.41-.59 1.08.36.69.92-.19 1.11-.09.19.1-.06.53-.02.55.04.02.53.02.56.61.03.59.77.53.92.55.17 0 .7-.44.77-.45.06-.03.38-.28 1.03.09.66.36.98.31 1.2.47.22.16.08.47.28.58.2.11 1.06-.03 1.28.31.22.34-.88 2.09-1.22 2.28-.34.19-.48.64-.84.92s-.81.64-1.27.91c-.41.23-.47.66-.66.8 3.14-.7 5.48-3.5 5.48-6.84 0-3.86-3.14-7-7-7L7 1zm1.64 6.56c-.09.03-.28.22-.78-.08-.48-.3-.81-.23-.86-.28 0 0-.05-.11.17-.14.44-.05.98.41 1.11.41.13 0 .19-.13.41-.05.22.08.05.13-.05.14zM6.34 1.7c-.05-.03.03-.08.09-.14.03-.03.02-.11.05-.14.11-.11.61-.25.52.03-.11.27-.58.3-.66.25zm1.23.89c-.19-.02-.58-.05-.52-.14.3-.28-.09-.38-.34-.38-.25-.02-.34-.16-.22-.19.12-.03.61.02.7.08.08.06.52.25.55.38.02.13 0 .25-.17.25zm1.47-.05c-.14.09-.83-.41-.95-.52-.56-.48-.89-.31-1-.41-.11-.1-.08-.19.11-.34.19-.15.69.06 1 .09.3.03.66.27.66.55.02.25.33.5.19.63h-.01z" + }, + "children": [] + }], + "attribs": {} +}; +exports.globe = globe; \ No newline at end of file diff --git a/dist/oct/grabber.js b/dist/oct/grabber.js new file mode 100644 index 000000000..829386649 --- /dev/null +++ b/dist/oct/grabber.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.grabber = void 0; +var grabber = { + "viewBox": "0 0 8 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M8 4v1H0V4h8zM0 8h8V7H0v1zm0 3h8v-1H0v1z" + }, + "children": [] + }], + "attribs": {} +}; +exports.grabber = grabber; \ No newline at end of file diff --git a/dist/oct/graph.js b/dist/oct/graph.js new file mode 100644 index 000000000..7c2b29236 --- /dev/null +++ b/dist/oct/graph.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.graph = void 0; +var graph = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M16 14v1H0V0h1v14h15zM5 13H3V8h2v5zm4 0H7V3h2v10zm4 0h-2V6h2v7z" + }, + "children": [] + }], + "attribs": {} +}; +exports.graph = graph; \ No newline at end of file diff --git a/dist/oct/heart.js b/dist/oct/heart.js new file mode 100644 index 000000000..ae3881fbb --- /dev/null +++ b/dist/oct/heart.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.heart = void 0; +var heart = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M8.727 3C7.091 3 6.001 4.65 6.001 4.65S4.909 3 3.273 3C1.636 3 0 4.1 0 6.3 0 9.6 6 14 6 14s6-4.4 6-7.7C12 4.1 10.364 3 8.727 3z" + }, + "children": [] + }], + "attribs": {} +}; +exports.heart = heart; \ No newline at end of file diff --git a/dist/oct/heartOutline.js b/dist/oct/heartOutline.js new file mode 100644 index 000000000..c9631f0da --- /dev/null +++ b/dist/oct/heartOutline.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.heartOutline = void 0; +var heartOutline = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M1.192 3.924C1.909 3.294 2.835 3 3.727 3 4.73 3 5.513 3.485 6 3.894 6.488 3.485 7.271 3 8.273 3c.892 0 1.818.293 2.535.924C11.545 4.572 12 5.525 12 6.7c0 .962-.435 1.891-.944 2.67-.522.8-1.2 1.558-1.852 2.203a24.563 24.563 0 01-1.793 1.6c-.451.365-1.39 1.045-1.39 1.045s-1.277-.921-1.431-1.046a24.57 24.57 0 01-1.793-1.599c-.652-.645-1.33-1.404-1.853-2.202C.434 8.59 0 7.662 0 6.7c0-1.175.455-2.128 1.192-2.776zm4.96 7.694l-.151.122a22.6 22.6 0 01-1.797-1.588c-.599-.593-1.17-1.24-1.586-1.876C2.19 7.621 2 7.088 2 6.7c0-.625.226-1.022.513-1.274.305-.27.743-.426 1.214-.426.344 0 .686.172.993.43.191.161.332.314.455.448.255.278.432.472.826.472a.868.868 0 00.497-.14c.146-.096.264-.232.394-.38.112-.13.234-.27.39-.4.306-.258.647-.43.99-.43.472 0 .91.157 1.215.426.287.252.513.649.513 1.274 0 .388-.19.922-.618 1.576-.416.636-.987 1.283-1.585 1.876-.595.589-1.193 1.1-1.645 1.466z" + }, + "children": [] + }], + "attribs": {} +}; +exports.heartOutline = heartOutline; \ No newline at end of file diff --git a/dist/oct/history.js b/dist/oct/history.js new file mode 100644 index 000000000..e1275f467 --- /dev/null +++ b/dist/oct/history.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.history = void 0; +var history = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M8 13H6V6h5v2H8v5zM7 1C4.81 1 2.87 2.02 1.59 3.59L0 2v4h4L2.5 4.5C3.55 3.17 5.17 2.3 7 2.3c3.14 0 5.7 2.56 5.7 5.7s-2.56 5.7-5.7 5.7A5.71 5.71 0 011.3 8c0-.34.03-.67.09-1H.08C.03 7.33 0 7.66 0 8c0 3.86 3.14 7 7 7s7-3.14 7-7-3.14-7-7-7z" + }, + "children": [] + }], + "attribs": {} +}; +exports.history = history; \ No newline at end of file diff --git a/dist/oct/home.js b/dist/oct/home.js new file mode 100644 index 000000000..e381f9c62 --- /dev/null +++ b/dist/oct/home.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.home = void 0; +var home = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M16 9l-3-3V2h-2v2L8 1 0 9h2l1 5c0 .55.45 1 1 1h8c.55 0 1-.45 1-1l1-5h2zm-4 5H9v-4H7v4H4L2.81 7.69 8 2.5l5.19 5.19L12 14z" + }, + "children": [] + }], + "attribs": {} +}; +exports.home = home; \ No newline at end of file diff --git a/dist/oct/horizontalRule.js b/dist/oct/horizontalRule.js new file mode 100644 index 000000000..04db12666 --- /dev/null +++ b/dist/oct/horizontalRule.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.horizontalRule = void 0; +var horizontalRule = { + "viewBox": "0 0 10 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M1 7h2v2h1V3H3v3H1V3H0v6h1V7zm9 2V7H9v2h1zm0-3V4H9v2h1zM7 6V4h2V3H6v6h1V7h2V6H7zm-7 7h10v-2H0v2z" + }, + "children": [] + }], + "attribs": {} +}; +exports.horizontalRule = horizontalRule; \ No newline at end of file diff --git a/dist/oct/hubot.js b/dist/oct/hubot.js new file mode 100644 index 000000000..b5eb2b71a --- /dev/null +++ b/dist/oct/hubot.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.hubot = void 0; +var hubot = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M3 6c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h8c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1H3zm8 1.75L9.75 9h-1.5L7 7.75 5.75 9h-1.5L3 7.75V7h.75L5 8.25 6.25 7h1.5L9 8.25 10.25 7H11v.75zM5 11h4v1H5v-1zm2-9C3.14 2 0 4.91 0 8.5V13c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V8.5C14 4.91 10.86 2 7 2zm6 11H1V8.5c0-3.09 2.64-5.59 6-5.59s6 2.5 6 5.59V13z" + }, + "children": [] + }], + "attribs": {} +}; +exports.hubot = hubot; \ No newline at end of file diff --git a/dist/oct/inbox.js b/dist/oct/inbox.js new file mode 100644 index 000000000..96ce18eea --- /dev/null +++ b/dist/oct/inbox.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.inbox = void 0; +var inbox = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M14 9l-1.13-7.14c-.08-.48-.5-.86-1-.86H2.13c-.5 0-.92.38-1 .86L0 9v5c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V9zm-3.28.55l-.44.89c-.17.34-.52.56-.91.56H4.61c-.38 0-.72-.22-.89-.55l-.44-.91c-.17-.33-.52-.55-.89-.55H1l1-7h10l1 7h-1.38c-.39 0-.73.22-.91.55l.01.01z" + }, + "children": [] + }], + "attribs": {} +}; +exports.inbox = inbox; \ No newline at end of file diff --git a/dist/oct/index.js b/dist/oct/index.js new file mode 100644 index 000000000..046339eca --- /dev/null +++ b/dist/oct/index.js @@ -0,0 +1,2651 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.key = exports.kebabVertical = exports.kebabHorizontal = exports.jersey = exports.italic = exports.issueReopened = exports.issueOpened = exports.issueClosed = exports.internalRepo = exports.info = exports.infinity = exports.inbox = exports.hubot = exports.horizontalRule = exports.home = exports.history = exports.heartOutline = exports.heart = exports.graph = exports.grabber = exports.globe = exports.githubAction = exports.gitPullRequest = exports.gitMerge = exports.gitCompare = exports.gitCommit = exports.gitBranch = exports.gistSecret = exports.gist = exports.gift = exports.gear = exports.foldUp = exports.foldDown = exports.fold = exports.flame = exports.fileZip = exports.fileSymlinkFile = exports.fileSymlinkDirectory = exports.fileSubmodule = exports.filePdf = exports.fileMedia = exports.fileDirectory = exports.fileCode = exports.fileBinary = exports.file = exports.eyeClosed = exports.eye = exports.ellipsis = exports.diffRenamed = exports.diffRemoved = exports.diffModified = exports.diffIgnored = exports.diffAdded = exports.diff = exports.deviceMobile = exports.deviceDesktop = exports.deviceCameraVideo = exports.deviceCamera = exports.desktopDownload = exports.dependent = exports.database = exports.dashboard = exports.dash = exports.creditCard = exports.commentDiscussion = exports.comment = exports.code = exports.cloudUpload = exports.cloudDownload = exports.clock = exports.clippy = exports.circuitBoard = exports.circleSlash = exports.chevronUp = exports.chevronRight = exports.chevronLeft = exports.chevronDown = exports.checklist = exports.check = exports.calendar = exports.bug = exports.browser = exports.broadcast = exports.briefcase = exports.bookmark = exports.book = exports.bold = exports.bell = exports.beaker = exports.arrowUp = exports.arrowSmallUp = exports.arrowSmallRight = exports.arrowSmallLeft = exports.arrowSmallDown = exports.arrowRight = exports.arrowLeft = exports.arrowDown = exports.arrowBoth = exports.archive = exports.alert = void 0; +exports.watch = exports.versions = exports.verified = exports.unverified = exports.unsaved = exports.unmute = exports.unfold = exports.triangleUp = exports.triangleRight = exports.triangleLeft = exports.triangleDown = exports.trashcan = exports.tools = exports.thumbsup = exports.thumbsdown = exports.threeBars = exports.textSize = exports.terminal = exports.telescope = exports.tasklist = exports.tag = exports.sync = exports.stop = exports.star = exports.squirrel = exports.smiley = exports.skip = exports.signOut = exports.signIn = exports.shieldX = exports.shieldLock = exports.shieldCheck = exports.shield = exports.settings = exports.server = exports.search = exports.screenNormal = exports.screenFull = exports.saved = exports.ruby = exports.rss = exports.rocket = exports.requestChanges = exports.report = exports.repoTemplatePrivate = exports.repoTemplate = exports.repoPush = exports.repoPull = exports.repoForked = exports.repoForcePush = exports.repoClone = exports.repo = exports.reply = exports.radioTower = exports.quote = exports.question = exports.pulse = exports.project = exports.primitiveSquare = exports.primitiveDotStroke = exports.primitiveDot = exports.plusSmall = exports.plus = exports.plug = exports.play = exports.pin = exports.person = exports.pencil = exports.paintcan = exports.packageIcon = exports.organization = exports.octoface = exports.note = exports.northStar = exports.noNewline = exports.mute = exports.mortarBoard = exports.mirror = exports.milestone = exports.mention = exports.megaphone = exports.markdown = exports.markGithub = exports.mailRead = exports.mail = exports.logoGithub = exports.logoGist = exports.lock = exports.location = exports.listUnordered = exports.listOrdered = exports.linkExternal = exports.link = exports.lineArrowUp = exports.lineArrowRight = exports.lineArrowLeft = exports.lineArrowDown = exports.lightBulb = exports.law = exports.keyboard = void 0; +exports.zap = exports.x = exports.workflowAll = exports.workflow = void 0; +var alert = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M8.893 1.5c-.183-.31-.52-.5-.887-.5s-.703.19-.886.5L.138 13.499a.98.98 0 000 1.001c.193.31.53.501.886.501h13.964c.367 0 .704-.19.877-.5a1.03 1.03 0 00.01-1.002L8.893 1.5zm.133 11.497H6.987v-2.003h2.039v2.003zm0-3.004H6.987V5.987h2.039v4.006z" + }, + "children": [] + }], + "attribs": {} +}; +exports.alert = alert; +var archive = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M13 2H1v2h12V2zM0 4a1 1 0 001 1v9a1 1 0 001 1h10a1 1 0 001-1V5a1 1 0 001-1V2a1 1 0 00-1-1H1a1 1 0 00-1 1v2zm2 1h10v9H2V5zm2 3h6V7H4v1z" + }, + "children": [] + }], + "attribs": {} +}; +exports.archive = archive; +var arrowBoth = { + "viewBox": "0 0 20 16", + "children": [{ + "name": "path", + "attribs": { + "d": "M0 8l6-5v3h8V3l6 5-6 5v-3H6v3L0 8z" + }, + "children": [] + }], + "attribs": {} +}; +exports.arrowBoth = arrowBoth; +var arrowDown = { + "viewBox": "0 0 10 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M7 7V3H3v4H0l5 6 5-6H7z" + }, + "children": [] + }], + "attribs": {} +}; +exports.arrowDown = arrowDown; +var arrowLeft = { + "viewBox": "0 0 10 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M6 3L0 8l6 5v-3h4V6H6V3z" + }, + "children": [] + }], + "attribs": {} +}; +exports.arrowLeft = arrowLeft; +var arrowRight = { + "viewBox": "0 0 10 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M10 8L4 3v3H0v4h4v3l6-5z" + }, + "children": [] + }], + "attribs": {} +}; +exports.arrowRight = arrowRight; +var arrowSmallDown = { + "viewBox": "0 0 6 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M4 7V5H2v2H0l3 4 3-4H4z" + }, + "children": [] + }], + "attribs": {} +}; +exports.arrowSmallDown = arrowSmallDown; +var arrowSmallLeft = { + "viewBox": "0 0 6 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M4 7V5L0 8l4 3V9h2V7H4z" + }, + "children": [] + }], + "attribs": {} +}; +exports.arrowSmallLeft = arrowSmallLeft; +var arrowSmallRight = { + "viewBox": "0 0 6 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M6 8L2 5v2H0v2h2v2l4-3z" + }, + "children": [] + }], + "attribs": {} +}; +exports.arrowSmallRight = arrowSmallRight; +var arrowSmallUp = { + "viewBox": "0 0 6 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M3 5L0 9h2v2h2V9h2L3 5z" + }, + "children": [] + }], + "attribs": {} +}; +exports.arrowSmallUp = arrowSmallUp; +var arrowUp = { + "viewBox": "0 0 10 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M5 3L0 9h3v4h4V9h3L5 3z" + }, + "children": [] + }], + "attribs": {} +}; +exports.arrowUp = arrowUp; +var beaker = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M14.38 14.59L11 7V3h1V2H3v1h1v4L.63 14.59A1 1 0 001.54 16h11.94c.72 0 1.2-.75.91-1.41h-.01zM3.75 10L5 7V3h5v4l1.25 3h-7.5zM8 8h1v1H8V8zM7 7H6V6h1v1zm0-3h1v1H7V4zm0-3H6V0h1v1z" + }, + "children": [] + }], + "attribs": {} +}; +exports.beaker = beaker; +var bell = { + "viewBox": "0 0 15 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M14 12v1H0v-1l.73-.58c.77-.77.81-2.55 1.19-4.42C2.69 3.23 6 2 6 2c0-.55.45-1 1-1s1 .45 1 1c0 0 3.39 1.23 4.16 5 .38 1.88.42 3.66 1.19 4.42l.66.58H14zm-7 4c1.11 0 2-.89 2-2H5c0 1.11.89 2 2 2z" + }, + "children": [] + }], + "attribs": {} +}; +exports.bell = bell; +var bold = { + "viewBox": "0 0 10 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M1 2h3.83c2.48 0 4.3.75 4.3 2.95 0 1.14-.63 2.23-1.67 2.61v.06c1.33.3 2.3 1.23 2.3 2.86 0 2.39-1.97 3.52-4.61 3.52H1V2zm3.66 4.95c1.67 0 2.38-.66 2.38-1.69 0-1.17-.78-1.61-2.34-1.61H3.13v3.3h1.53zm.27 5.39c1.77 0 2.75-.64 2.75-1.98 0-1.27-.95-1.81-2.75-1.81h-1.8v3.8h1.8v-.01z" + }, + "children": [] + }], + "attribs": {} +}; +exports.bold = bold; +var book = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M3 5h4v1H3V5zm0 3h4V7H3v1zm0 2h4V9H3v1zm11-5h-4v1h4V5zm0 2h-4v1h4V7zm0 2h-4v1h4V9zm2-6v9c0 .55-.45 1-1 1H9.5l-1 1-1-1H2c-.55 0-1-.45-1-1V3c0-.55.45-1 1-1h5.5l1 1 1-1H15c.55 0 1 .45 1 1zm-8 .5L7.5 3H2v9h6V3.5zm7-.5H9.5l-.5.5V12h6V3z" + }, + "children": [] + }], + "attribs": {} +}; +exports.book = book; +var bookmark = { + "viewBox": "0 0 10 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M9 0H1C.27 0 0 .27 0 1v15l5-3.09L10 16V1c0-.73-.27-1-1-1zm-.78 4.25L6.36 5.61l.72 2.16c.06.22-.02.28-.2.17L5 6.6 3.12 7.94c-.19.11-.25.05-.2-.17l.72-2.16-1.86-1.36c-.17-.16-.14-.23.09-.23l2.3-.03.7-2.16h.25l.7 2.16 2.3.03c.23 0 .27.08.09.23h.01z" + }, + "children": [] + }], + "attribs": {} +}; +exports.bookmark = bookmark; +var briefcase = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M9 4V3c0-.55-.45-1-1-1H6c-.55 0-1 .45-1 1v1H1c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1H9zM6 3h2v1H6V3zm7 6H8v1H6V9H1V5h1v3h10V5h1v4z" + }, + "children": [] + }], + "attribs": {} +}; +exports.briefcase = briefcase; +var broadcast = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M9 9H8c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1H6c-.55 0-1 .45-1 1v2h1v3c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-3h1v-2c0-.55-.45-1-1-1zM7 7h1v1H7V7zm2 4H8v4H7v-4H6v-1h3v1zm2.09-3.5c0-1.98-1.61-3.59-3.59-3.59A3.593 3.593 0 004 8.31v1.98c-.61-.77-1-1.73-1-2.8 0-2.48 2.02-4.5 4.5-4.5S12 5.01 12 7.49c0 1.06-.39 2.03-1 2.8V8.31c.06-.27.09-.53.09-.81zm3.91 0c0 2.88-1.63 5.38-4 6.63v-1.05a6.553 6.553 0 003.09-5.58A6.59 6.59 0 007.5.91 6.59 6.59 0 00.91 7.5c0 2.36 1.23 4.42 3.09 5.58v1.05A7.497 7.497 0 017.5 0C11.64 0 15 3.36 15 7.5z" + }, + "children": [] + }], + "attribs": {} +}; +exports.broadcast = broadcast; +var browser = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M5 3h1v1H5V3zM3 3h1v1H3V3zM1 3h1v1H1V3zm12 10H1V5h12v8zm0-9H7V3h6v1zm1-1c0-.55-.45-1-1-1H1c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V3z" + }, + "children": [] + }], + "attribs": {} +}; +exports.browser = browser; +var bug = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M11 10h3V9h-3V8l3.17-1.03-.34-.94L11 7V6c0-.55-.45-1-1-1V4c0-.48-.36-.88-.83-.97L10.2 2H12V1H9.8l-2 2h-.59L5.2 1H3v1h1.8l1.03 1.03C5.36 3.12 5 3.51 5 4v1c-.55 0-1 .45-1 1v1l-2.83-.97-.34.94L4 8v1H1v1h3v1L.83 12.03l.34.94L4 12v1c0 .55.45 1 1 1h1l1-1V6h1v7l1 1h1c.55 0 1-.45 1-1v-1l2.83.97.34-.94L11 11v-1zM9 5H6V4h3v1z" + }, + "children": [] + }], + "attribs": {} +}; +exports.bug = bug; +var calendar = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M13 2h-1v1.5c0 .28-.22.5-.5.5h-2c-.28 0-.5-.22-.5-.5V2H6v1.5c0 .28-.22.5-.5.5h-2c-.28 0-.5-.22-.5-.5V2H2c-.55 0-1 .45-1 1v11c0 .55.45 1 1 1h11c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm0 12H2V5h11v9zM5 3H4V1h1v2zm6 0h-1V1h1v2zM6 7H5V6h1v1zm2 0H7V6h1v1zm2 0H9V6h1v1zm2 0h-1V6h1v1zM4 9H3V8h1v1zm2 0H5V8h1v1zm2 0H7V8h1v1zm2 0H9V8h1v1zm2 0h-1V8h1v1zm-8 2H3v-1h1v1zm2 0H5v-1h1v1zm2 0H7v-1h1v1zm2 0H9v-1h1v1zm2 0h-1v-1h1v1zm-8 2H3v-1h1v1zm2 0H5v-1h1v1zm2 0H7v-1h1v1zm2 0H9v-1h1v1z" + }, + "children": [] + }], + "attribs": {} +}; +exports.calendar = calendar; +var check = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5L12 5z" + }, + "children": [] + }], + "attribs": {} +}; +exports.check = check; +var checklist = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M16 8.5l-6 6-3-3L8.5 10l1.5 1.5L14.5 7 16 8.5zM5.7 12.2l.8.8H2c-.55 0-1-.45-1-1V3c0-.55.45-1 1-1h7c.55 0 1 .45 1 1v6.5l-.8-.8c-.39-.39-1.03-.39-1.42 0L5.7 10.8a.996.996 0 000 1.41v-.01zM4 4h5V3H4v1zm0 2h5V5H4v1zm0 2h3V7H4v1zM3 9H2v1h1V9zm0-2H2v1h1V7zm0-2H2v1h1V5zm0-2H2v1h1V3z" + }, + "children": [] + }], + "attribs": {} +}; +exports.checklist = checklist; +var chevronDown = { + "viewBox": "0 0 10 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M5 11L0 6l1.5-1.5L5 8.25 8.5 4.5 10 6l-5 5z" + }, + "children": [] + }], + "attribs": {} +}; +exports.chevronDown = chevronDown; +var chevronLeft = { + "viewBox": "0 0 8 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M5.5 3L7 4.5 3.25 8 7 11.5 5.5 13l-5-5 5-5z" + }, + "children": [] + }], + "attribs": {} +}; +exports.chevronLeft = chevronLeft; +var chevronRight = { + "viewBox": "0 0 8 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M7.5 8l-5 5L1 11.5 4.75 8 1 4.5 2.5 3l5 5z" + }, + "children": [] + }], + "attribs": {} +}; +exports.chevronRight = chevronRight; +var chevronUp = { + "viewBox": "0 0 10 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M10 10l-1.5 1.5L5 7.75 1.5 11.5 0 10l5-5 5 5z" + }, + "children": [] + }], + "attribs": {} +}; +exports.chevronUp = chevronUp; +var circleSlash = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M7 1C3.14 1 0 4.14 0 8s3.14 7 7 7 7-3.14 7-7-3.14-7-7-7zm0 1.3c1.3 0 2.5.44 3.47 1.17l-8 8A5.755 5.755 0 011.3 8c0-3.14 2.56-5.7 5.7-5.7zm0 11.41c-1.3 0-2.5-.44-3.47-1.17l8-8c.73.97 1.17 2.17 1.17 3.47 0 3.14-2.56 5.7-5.7 5.7z" + }, + "children": [] + }], + "attribs": {} +}; +exports.circleSlash = circleSlash; +var circuitBoard = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M3 5c0-.55.45-1 1-1s1 .45 1 1-.45 1-1 1-1-.45-1-1zm8 0c0-.55-.45-1-1-1s-1 .45-1 1 .45 1 1 1 1-.45 1-1zm0 6c0-.55-.45-1-1-1s-1 .45-1 1 .45 1 1 1 1-.45 1-1zm2-10H5v2.17c.36.19.64.47.83.83h2.34c.42-.78 1.33-1.28 2.34-1.05.75.19 1.36.8 1.53 1.55.31 1.38-.72 2.59-2.05 2.59-.8 0-1.48-.44-1.83-1.09H5.83c-.42.8-1.33 1.28-2.34 1.03-.73-.17-1.34-.78-1.52-1.52C1.72 4.49 2.2 3.59 3 3.17V1H1c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1l5-5h2.17c.42-.78 1.33-1.28 2.34-1.05.75.19 1.36.8 1.53 1.55.31 1.38-.72 2.59-2.05 2.59-.8 0-1.48-.44-1.83-1.09H6.99L4 15h9c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1z" + }, + "children": [] + }], + "attribs": {} +}; +exports.circuitBoard = circuitBoard; +var clippy = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M2 13h4v1H2v-1zm5-6H2v1h5V7zm2 3V8l-3 3 3 3v-2h5v-2H9zM4.5 9H2v1h2.5V9zM2 12h2.5v-1H2v1zm9 1h1v2c-.02.28-.11.52-.3.7-.19.18-.42.28-.7.3H1c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h3c0-1.11.89-2 2-2 1.11 0 2 .89 2 2h3c.55 0 1 .45 1 1v5h-1V6H1v9h10v-2zM2 5h8c0-.55-.45-1-1-1H8c-.55 0-1-.45-1-1s-.45-1-1-1-1 .45-1 1-.45 1-1 1H3c-.55 0-1 .45-1 1z" + }, + "children": [] + }], + "attribs": {} +}; +exports.clippy = clippy; +var clock = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M8 8h3v2H7c-.55 0-1-.45-1-1V4h2v4zM7 2.3c3.14 0 5.7 2.56 5.7 5.7s-2.56 5.7-5.7 5.7A5.71 5.71 0 011.3 8c0-3.14 2.56-5.7 5.7-5.7zM7 1C3.14 1 0 4.14 0 8s3.14 7 7 7 7-3.14 7-7-3.14-7-7-7z" + }, + "children": [] + }], + "attribs": {} +}; +exports.clock = clock; +var cloudDownload = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M9 12h2l-3 3-3-3h2V7h2v5zm3-8c0-.44-.91-3-4.5-3C5.08 1 3 2.92 3 5 1.02 5 0 6.52 0 8c0 1.53 1 3 3 3h3V9.7H3C1.38 9.7 1.3 8.28 1.3 8c0-.17.05-1.7 1.7-1.7h1.3V5c0-1.39 1.56-2.7 3.2-2.7 2.55 0 3.13 1.55 3.2 1.8v1.2H12c.81 0 2.7.22 2.7 2.2 0 2.09-2.25 2.2-2.7 2.2h-2V11h2c2.08 0 4-1.16 4-3.5C16 5.06 14.08 4 12 4z" + }, + "children": [] + }], + "attribs": {} +}; +exports.cloudDownload = cloudDownload; +var cloudUpload = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M7 9H5l3-3 3 3H9v5H7V9zm5-4c0-.44-.91-3-4.5-3C5.08 2 3 3.92 3 6 1.02 6 0 7.52 0 9c0 1.53 1 3 3 3h3v-1.3H3c-1.62 0-1.7-1.42-1.7-1.7 0-.17.05-1.7 1.7-1.7h1.3V6c0-1.39 1.56-2.7 3.2-2.7 2.55 0 3.13 1.55 3.2 1.8v1.2H12c.81 0 2.7.22 2.7 2.2 0 2.09-2.25 2.2-2.7 2.2h-2V12h2c2.08 0 4-1.16 4-3.5C16 6.06 14.08 5 12 5z" + }, + "children": [] + }], + "attribs": {} +}; +exports.cloudUpload = cloudUpload; +var code = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M9.5 3L8 4.5 11.5 8 8 11.5 9.5 13 14 8 9.5 3zm-5 0L0 8l4.5 5L6 11.5 2.5 8 6 4.5 4.5 3z" + }, + "children": [] + }], + "attribs": {} +}; +exports.code = code; +var commentDiscussion = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M15 1H6c-.55 0-1 .45-1 1v2H1c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h1v3l3-3h4c.55 0 1-.45 1-1V9h1l3 3V9h1c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zM9 11H4.5L3 12.5V11H1V5h4v3c0 .55.45 1 1 1h3v2zm6-3h-2v1.5L11.5 8H6V2h9v6z" + }, + "children": [] + }], + "attribs": {} +}; +exports.commentDiscussion = commentDiscussion; +var comment = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M14 1H2c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1h2v3.5L7.5 11H14c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zm0 9H7l-2 2v-2H2V2h12v8z" + }, + "children": [] + }], + "attribs": {} +}; +exports.comment = comment; +var creditCard = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M12 9H2V8h10v1zm4-6v9c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V3c0-.55.45-1 1-1h14c.55 0 1 .45 1 1zm-1 3H1v6h14V6zm0-3H1v1h14V3zm-9 7H2v1h4v-1z" + }, + "children": [] + }], + "attribs": {} +}; +exports.creditCard = creditCard; +var dash = { + "viewBox": "0 0 8 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M0 7v2h8V7H0z" + }, + "children": [] + }], + "attribs": {} +}; +exports.dash = dash; +var dashboard = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M9 5H8V4h1v1zm4 3h-1v1h1V8zM6 5H5v1h1V5zM5 8H4v1h1V8zm11-5.5l-.5-.5L9 7c-.06-.02-1 0-1 0-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-.92l6-5.58zm-1.59 4.09c.19.61.3 1.25.3 1.91 0 3.42-2.78 6.2-6.2 6.2-3.42 0-6.21-2.78-6.21-6.2 0-3.42 2.78-6.2 6.2-6.2 1.2 0 2.31.34 3.27.94l.94-.94A7.459 7.459 0 008.51 1C4.36 1 1 4.36 1 8.5 1 12.64 4.36 16 8.5 16c4.14 0 7.5-3.36 7.5-7.5 0-1.03-.2-2.02-.59-2.91l-1 1z" + }, + "children": [] + }], + "attribs": {} +}; +exports.dashboard = dashboard; +var database = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M6 15c-3.31 0-6-.9-6-2v-2c0-.17.09-.34.21-.5.67.86 3 1.5 5.79 1.5s5.12-.64 5.79-1.5c.13.16.21.33.21.5v2c0 1.1-2.69 2-6 2zm0-4c-3.31 0-6-.9-6-2V7c0-.11.04-.21.09-.31.03-.06.07-.13.12-.19C.88 7.36 3.21 8 6 8s5.12-.64 5.79-1.5c.05.06.09.13.12.19.05.1.09.21.09.31v2c0 1.1-2.69 2-6 2zm0-4c-3.31 0-6-.9-6-2V3c0-1.1 2.69-2 6-2s6 .9 6 2v2c0 1.1-2.69 2-6 2zm0-5c-2.21 0-4 .45-4 1s1.79 1 4 1 4-.45 4-1-1.79-1-4-1z" + }, + "children": [] + }], + "attribs": {} +}; +exports.database = database; +var dependent = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "d": "M1 1h7.5l2 2H9L8 2H1v12h10v-1h1v1c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V2c0-.55.45-1 1-1zm9 6h3v1h-3V7zm2 2h-2v1h2V9zM8.583 4h4.375L15 6v5.429a.58.58 0 01-.583.571H8.583A.58.58 0 018 11.429V10h1v1h5V6.5L12.5 5H9v1H8V4.571A.58.58 0 018.583 4zM9.5 7H6.667V5l-4 3 4 3V9H9.5V7z" + }, + "children": [] + }], + "attribs": {} +}; +exports.dependent = dependent; +var desktopDownload = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M4 6h3V0h2v6h3l-4 4-4-4zm11-4h-4v1h4v8H1V3h4V2H1c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h5.34c-.25.61-.86 1.39-2.34 2h8c-1.48-.61-2.09-1.39-2.34-2H15c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1z" + }, + "children": [] + }], + "attribs": {} +}; +exports.desktopDownload = desktopDownload; +var deviceCameraVideo = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M15.2 2.09L10 5.72V3c0-.55-.45-1-1-1H1c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h8c.55 0 1-.45 1-1V9.28l5.2 3.63c.33.23.8 0 .8-.41v-10c0-.41-.47-.64-.8-.41z" + }, + "children": [] + }], + "attribs": {} +}; +exports.deviceCameraVideo = deviceCameraVideo; +var deviceCamera = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M15 3H7c0-.55-.45-1-1-1H2c-.55 0-1 .45-1 1-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1zM6 5H2V4h4v1zm4.5 7C8.56 12 7 10.44 7 8.5S8.56 5 10.5 5 14 6.56 14 8.5 12.44 12 10.5 12zM13 8.5c0 1.38-1.13 2.5-2.5 2.5S8 9.87 8 8.5 9.13 6 10.5 6 13 7.13 13 8.5z" + }, + "children": [] + }], + "attribs": {} +}; +exports.deviceCamera = deviceCamera; +var deviceDesktop = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M15 2H1c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h5.34c-.25.61-.86 1.39-2.34 2h8c-1.48-.61-2.09-1.39-2.34-2H15c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm0 9H1V3h14v8z" + }, + "children": [] + }], + "attribs": {} +}; +exports.deviceDesktop = deviceDesktop; +var deviceMobile = { + "viewBox": "0 0 10 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M9 0H1C.45 0 0 .45 0 1v14c0 .55.45 1 1 1h8c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zM5 15.3c-.72 0-1.3-.58-1.3-1.3 0-.72.58-1.3 1.3-1.3.72 0 1.3.58 1.3 1.3 0 .72-.58 1.3-1.3 1.3zM9 12H1V2h8v10z" + }, + "children": [] + }], + "attribs": {} +}; +exports.deviceMobile = deviceMobile; +var diffAdded = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M13 1H1c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zm0 13H1V2h12v12zM6 9H3V7h3V4h2v3h3v2H8v3H6V9z" + }, + "children": [] + }], + "attribs": {} +}; +exports.diffAdded = diffAdded; +var diffIgnored = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M13 1H1c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zm0 13H1V2h12v12zm-8.5-2H3v-1.5L9.5 4H11v1.5L4.5 12z" + }, + "children": [] + }], + "attribs": {} +}; +exports.diffIgnored = diffIgnored; +var diffModified = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M13 1H1c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zm0 13H1V2h12v12zM4 8c0-1.66 1.34-3 3-3s3 1.34 3 3-1.34 3-3 3-3-1.34-3-3z" + }, + "children": [] + }], + "attribs": {} +}; +exports.diffModified = diffModified; +var diffRemoved = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M13 1H1c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zm0 13H1V2h12v12zm-2-5H3V7h8v2z" + }, + "children": [] + }], + "attribs": {} +}; +exports.diffRemoved = diffRemoved; +var diffRenamed = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M6 9H3V7h3V4l5 4-5 4V9zm8-7v12c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V2c0-.55.45-1 1-1h12c.55 0 1 .45 1 1zm-1 0H1v12h12V2z" + }, + "children": [] + }], + "attribs": {} +}; +exports.diffRenamed = diffRenamed; +var diff = { + "viewBox": "0 0 13 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M6 7h2v1H6v2H5V8H3V7h2V5h1v2zm-3 6h5v-1H3v1zM7.5 2L11 5.5V15c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V3c0-.55.45-1 1-1h6.5zM10 6L7 3H1v12h9V6zM8.5 0H3v1h5l4 4v8h1V4.5L8.5 0z" + }, + "children": [] + }], + "attribs": {} +}; +exports.diff = diff; +var ellipsis = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M11 5H1c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h10c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zM4 9H2V7h2v2zm3 0H5V7h2v2zm3 0H8V7h2v2z" + }, + "children": [] + }], + "attribs": {} +}; +exports.ellipsis = ellipsis; +var eyeClosed = { + "viewBox": "0 0 16 14", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M14.822.854a.5.5 0 10-.707-.708l-2.11 2.11C10.89 1.483 9.565.926 8.06.926c-5.06 0-8.06 6-8.06 6s1.162 2.323 3.258 4.078l-2.064 2.065a.5.5 0 10.707.707L14.822.854zM4.86 9.403L6.292 7.97A1.999 1.999 0 016 6.925c0-1.11.89-2 2-2 .384 0 .741.106 1.045.292l1.433-1.433A3.98 3.98 0 008 2.925c-2.2 0-4 1.8-4 4 0 .938.321 1.798.859 2.478zm7.005-3.514l1.993-1.992A14.873 14.873 0 0116 6.925s-3 6-7.94 6a6.609 6.609 0 01-2.661-.57l1.565-1.566c.33.089.678.136 1.036.136 2.22 0 4-1.78 4-4 0-.358-.047-.705-.136-1.036zM9.338 8.415l.152-.151a1.996 1.996 0 01-.152.151z" + }, + "children": [] + }], + "attribs": {} +}; +exports.eyeClosed = eyeClosed; +var eye = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M8.06 2C3 2 0 8 0 8s3 6 8.06 6C13 14 16 8 16 8s-3-6-7.94-6zM8 12c-2.2 0-4-1.78-4-4 0-2.2 1.8-4 4-4 2.22 0 4 1.8 4 4 0 2.22-1.78 4-4 4zm2-4c0 1.11-.89 2-2 2-1.11 0-2-.89-2-2 0-1.11.89-2 2-2 1.11 0 2 .89 2 2z" + }, + "children": [] + }], + "attribs": {} +}; +exports.eye = eye; +var fileBinary = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M4 12h1v1H2v-1h1v-2H2V9h2v3zm8-7.5V14c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V2c0-.55.45-1 1-1h7.5L12 4.5zM11 5L8 2H1v12h10V5zM8 4H6v1h1v2H6v1h3V7H8V4zM2 4h3v4H2V4zm1 3h1V5H3v2zm3 2h3v4H6V9zm1 3h1v-2H7v2z" + }, + "children": [] + }], + "attribs": {} +}; +exports.fileBinary = fileBinary; +var fileCode = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M8.5 1H1c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h10c.55 0 1-.45 1-1V4.5L8.5 1zM11 14H1V2h7l3 3v9zM5 6.98L3.5 8.5 5 10l-.5 1L2 8.5 4.5 6l.5.98zM7.5 6L10 8.5 7.5 11l-.5-.98L8.5 8.5 7 7l.5-1z" + }, + "children": [] + }], + "attribs": {} +}; +exports.fileCode = fileCode; +var fileDirectory = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M13 4H7V3c0-.66-.31-1-1-1H1c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zM6 4H1V3h5v1z" + }, + "children": [] + }], + "attribs": {} +}; +exports.fileDirectory = fileDirectory; +var fileMedia = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M6 5h2v2H6V5zm6-.5V14c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V2c0-.55.45-1 1-1h7.5L12 4.5zM11 5L8 2H1v11l3-5 2 4 2-2 3 3V5z" + }, + "children": [] + }], + "attribs": {} +}; +exports.fileMedia = fileMedia; +var filePdf = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M8.5 1H1a1 1 0 00-1 1v12a1 1 0 001 1h10a1 1 0 001-1V4.5L8.5 1zM1 2h4a.68.68 0 00-.31.2 1.08 1.08 0 00-.23.47 4.22 4.22 0 00-.09 1.47c.06.609.173 1.211.34 1.8A21.78 21.78 0 013.6 8.6c-.5 1-.8 1.66-.91 1.84a7.156 7.156 0 00-.69.3c-.362.165-.699.38-1 .64V2zm4.42 4.8a5.65 5.65 0 001.17 2.09c.275.237.595.417.94.53-.64.09-1.23.2-1.81.33-.618.15-1.223.347-1.81.59s.22-.44.61-1.25c.365-.74.67-1.51.91-2.3l-.01.01zM11 14H1.5a.743.743 0 01-.17 0 2.12 2.12 0 00.73-.44 10.14 10.14 0 001.78-2.38c.31-.13.58-.23.81-.31l.42-.14c.45-.13.94-.23 1.44-.33s1-.16 1.48-.2c.447.216.912.394 1.39.53.403.11.814.188 1.23.23h.38V14H11zm0-4.86a3.743 3.743 0 00-.64-.28 4.221 4.221 0 00-.75-.11c-.411.003-.822.03-1.23.08a3 3 0 01-1-.64 6.07 6.07 0 01-1.29-2.33c.111-.661.178-1.33.2-2 .02-.25.02-.5 0-.75a1.05 1.05 0 00-.2-.88.82.82 0 00-.61-.23H8l3 3v4.14z" + }, + "children": [] + }], + "attribs": {} +}; +exports.filePdf = filePdf; +var fileSubmodule = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M10 7H4v7h9c.55 0 1-.45 1-1V8h-4V7zM9 9H5V8h4v1zm4-5H7V3c0-.66-.31-1-1-1H1c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h2V7c0-.55.45-1 1-1h6c.55 0 1 .45 1 1h3V5c0-.55-.45-1-1-1zM6 4H1V3h5v1z" + }, + "children": [] + }], + "attribs": {} +}; +exports.fileSubmodule = fileSubmodule; +var fileSymlinkDirectory = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M13 4H7V3c0-.66-.31-1-1-1H1c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zM1 3h5v1H1V3zm6 9v-2c-.98-.02-1.84.22-2.55.7-.71.48-1.19 1.25-1.45 2.3.02-1.64.39-2.88 1.13-3.73C4.86 8.43 5.82 8 7.01 8V6l4 3-4 3H7z" + }, + "children": [] + }], + "attribs": {} +}; +exports.fileSymlinkDirectory = fileSymlinkDirectory; +var fileSymlinkFile = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M8.5 1H1c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h10c.55 0 1-.45 1-1V4.5L8.5 1zM11 14H1V2h7l3 3v9zM6 4.5l4 3-4 3v-2c-.98-.02-1.84.22-2.55.7-.71.48-1.19 1.25-1.45 2.3.02-1.64.39-2.88 1.13-3.73.73-.84 1.69-1.27 2.88-1.27v-2H6z" + }, + "children": [] + }], + "attribs": {} +}; +exports.fileSymlinkFile = fileSymlinkFile; +var fileZip = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M8.5 1H1a1 1 0 00-1 1v12a1 1 0 001 1h10a1 1 0 001-1V4.5L8.5 1zM11 14H1V2h3v1h1V2h3l3 3v9zM5 4V3h1v1H5zM4 4h1v1H4V4zm1 2V5h1v1H5zM4 6h1v1H4V6zm1 2V7h1v1H5zM4 9.28A2 2 0 003 11v1h4v-1a2 2 0 00-2-2V8H4v1.28zM6 10v1H4v-1h2z" + }, + "children": [] + }], + "attribs": {} +}; +exports.fileZip = fileZip; +var file = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M6 5H2V4h4v1zM2 8h7V7H2v1zm0 2h7V9H2v1zm0 2h7v-1H2v1zm10-7.5V14c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V2c0-.55.45-1 1-1h7.5L12 4.5zM11 5L8 2H1v12h10V5z" + }, + "children": [] + }], + "attribs": {} +}; +exports.file = file; +var flame = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M5.05.31c.81 2.17.41 3.38-.52 4.31C3.55 5.67 1.98 6.45.9 7.98c-1.45 2.05-1.7 6.53 3.53 7.7-2.2-1.16-2.67-4.52-.3-6.61-.61 2.03.53 3.33 1.94 2.86 1.39-.47 2.3.53 2.27 1.67-.02.78-.31 1.44-1.13 1.81 3.42-.59 4.78-3.42 4.78-5.56 0-2.84-2.53-3.22-1.25-5.61-1.52.13-2.03 1.13-1.89 2.75.09 1.08-1.02 1.8-1.86 1.33-.67-.41-.66-1.19-.06-1.78C8.18 5.31 8.68 2.45 5.05.32L5.03.3l.02.01z" + }, + "children": [] + }], + "attribs": {} +}; +exports.flame = flame; +var foldDown = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M4 11l3 3 3-3H8V5H6v6H4zm-4 0c0 .55.45 1 1 1h2.5l-1-1h-1l2-2H5V8H3.5l-2-2H5V5H1c-.55 0-1 .45-1 1l2.5 2.5L0 11zm10.5-2H9V8h1.5l2-2H9V5h4c.55 0 1 .45 1 1l-2.5 2.5L14 11c0 .55-.45 1-1 1h-2.5l1-1h1l-2-2z" + }, + "children": [] + }], + "attribs": {} +}; +exports.foldDown = foldDown; +var foldUp = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M10 6L7 3 4 6h2v6h2V6h2zm4 0c0-.55-.45-1-1-1h-2.5l1 1h1l-2 2H9v1h1.5l2 2H9v1h4c.55 0 1-.45 1-1l-2.5-2.5L14 6zM3.5 8H5v1H3.5l-2 2H5v1H1c-.55 0-1-.45-1-1l2.5-2.5L0 6c0-.55.45-1 1-1h2.5l-1 1h-1l2 2z" + }, + "children": [] + }], + "attribs": {} +}; +exports.foldUp = foldUp; +var fold = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M7 9l3 3H8v3H6v-3H4l3-3zm3-6H8V0H6v3H4l3 3 3-3zm4 2c0-.55-.45-1-1-1h-2.5l-1 1h3l-2 2h-7l-2-2h3l-1-1H1c-.55 0-1 .45-1 1l2.5 2.5L0 10c0 .55.45 1 1 1h2.5l1-1h-3l2-2h7l2 2h-3l1 1H13c.55 0 1-.45 1-1l-2.5-2.5L14 5z" + }, + "children": [] + }], + "attribs": {} +}; +exports.fold = fold; +var gear = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M14 8.77v-1.6l-1.94-.64-.45-1.09.88-1.84-1.13-1.13-1.81.91-1.09-.45-.69-1.92h-1.6l-.63 1.94-1.11.45-1.84-.88-1.13 1.13.91 1.81-.45 1.09L0 7.23v1.59l1.94.64.45 1.09-.88 1.84 1.13 1.13 1.81-.91 1.09.45.69 1.92h1.59l.63-1.94 1.11-.45 1.84.88 1.13-1.13-.92-1.81.47-1.09L14 8.75v.02zM7 11c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z" + }, + "children": [] + }], + "attribs": {} +}; +exports.gear = gear; +var gift = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M13 4h-1.38c.19-.33.33-.67.36-.91.06-.67-.11-1.22-.52-1.61C11.1 1.1 10.65 1 10.1 1h-.11c-.53.02-1.11.25-1.53.58-.42.33-.73.72-.97 1.2-.23-.48-.55-.88-.97-1.2-.42-.32-1-.58-1.53-.58h-.03c-.56 0-1.06.09-1.44.48-.41.39-.58.94-.52 1.61.03.23.17.58.36.91H1.98c-.55 0-1 .45-1 1v3h1v5c0 .55.45 1 1 1h9c.55 0 1-.45 1-1V8h1V5c0-.55-.45-1-1-1H13zm-4.78-.88c.17-.36.42-.67.75-.92.3-.23.72-.39 1.05-.41h.09c.45 0 .66.11.8.25s.33.39.3.95c-.05.19-.25.61-.5 1h-2.9l.41-.88v.01zM4.09 2.04c.13-.13.31-.25.91-.25.31 0 .72.17 1.03.41.33.25.58.55.75.92L7.2 4H4.3c-.25-.39-.45-.81-.5-1-.03-.56.16-.81.3-.95l-.01-.01zM7 12.99H3V8h4v5-.01zm0-6H2V5h5v2-.01zm5 6H8V8h4v5-.01zm1-6H8V5h5v2-.01z" + }, + "children": [] + }], + "attribs": {} +}; +exports.gift = gift; +var gistSecret = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M8 10.5L9 14H5l1-3.5L5.25 9h3.5L8 10.5zM10 6H4L2 7h10l-2-1zM9 2L7 3 5 2 4 5h6L9 2zm4.03 7.75L10 9l1 2-2 3h3.22c.45 0 .86-.31.97-.75l.56-2.28c.14-.53-.19-1.08-.72-1.22zM4 9l-3.03.75c-.53.14-.86.69-.72 1.22l.56 2.28c.11.44.52.75.97.75H5l-2-3 1-2z" + }, + "children": [] + }], + "attribs": {} +}; +exports.gistSecret = gistSecret; +var gist = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M7.5 5L10 7.5 7.5 10l-.75-.75L8.5 7.5 6.75 5.75 7.5 5zm-3 0L2 7.5 4.5 10l.75-.75L3.5 7.5l1.75-1.75L4.5 5zM0 13V2c0-.55.45-1 1-1h10c.55 0 1 .45 1 1v11c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1zm1 0h10V2H1v11z" + }, + "children": [] + }], + "attribs": {} +}; +exports.gist = gist; +var gitBranch = { + "viewBox": "0 0 10 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M10 5c0-1.11-.89-2-2-2a1.993 1.993 0 00-1 3.72v.3c-.02.52-.23.98-.63 1.38-.4.4-.86.61-1.38.63-.83.02-1.48.16-2 .45V4.72a1.993 1.993 0 00-1-3.72C.88 1 0 1.89 0 3a2 2 0 001 1.72v6.56c-.59.35-1 .99-1 1.72 0 1.11.89 2 2 2 1.11 0 2-.89 2-2 0-.53-.2-1-.53-1.36.09-.06.48-.41.59-.47.25-.11.56-.17.94-.17 1.05-.05 1.95-.45 2.75-1.25S8.95 7.77 9 6.73h-.02C9.59 6.37 10 5.73 10 5zM2 1.8c.66 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2C1.35 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2zm0 12.41c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm6-8c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z" + }, + "children": [] + }], + "attribs": {} +}; +exports.gitBranch = gitBranch; +var gitCommit = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M10.86 7c-.45-1.72-2-3-3.86-3-1.86 0-3.41 1.28-3.86 3H0v2h3.14c.45 1.72 2 3 3.86 3 1.86 0 3.41-1.28 3.86-3H14V7h-3.14zM7 10.2c-1.22 0-2.2-.98-2.2-2.2 0-1.22.98-2.2 2.2-2.2 1.22 0 2.2.98 2.2 2.2 0 1.22-.98 2.2-2.2 2.2z" + }, + "children": [] + }], + "attribs": {} +}; +exports.gitCommit = gitCommit; +var gitCompare = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M5 12H4c-.27-.02-.48-.11-.69-.31-.21-.2-.3-.42-.31-.69V4.72A1.993 1.993 0 002 1a1.993 1.993 0 00-1 3.72V11c.03.78.34 1.47.94 2.06.6.59 1.28.91 2.06.94h1v2l3-3-3-3v2zM2 1.8c.66 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2C1.35 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2zm11 9.48V5c-.03-.78-.34-1.47-.94-2.06-.6-.59-1.28-.91-2.06-.94H9V0L6 3l3 3V4h1c.27.02.48.11.69.31.21.2.3.42.31.69v6.28A1.993 1.993 0 0012 15a1.993 1.993 0 001-3.72zm-1 2.92c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z" + }, + "children": [] + }], + "attribs": {} +}; +exports.gitCompare = gitCompare; +var gitMerge = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M10 7c-.73 0-1.38.41-1.73 1.02V8C7.22 7.98 6 7.64 5.14 6.98c-.75-.58-1.5-1.61-1.89-2.44A1.993 1.993 0 002 .99C.89.99 0 1.89 0 3a2 2 0 001 1.72v6.56c-.59.35-1 .99-1 1.72 0 1.11.89 2 2 2a1.993 1.993 0 001-3.72V7.67c.67.7 1.44 1.27 2.3 1.69.86.42 2.03.63 2.97.64v-.02c.36.61 1 1.02 1.73 1.02 1.11 0 2-.89 2-2 0-1.11-.89-2-2-2zm-6.8 6c0 .66-.55 1.2-1.2 1.2-.65 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm8 6c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z" + }, + "children": [] + }], + "attribs": {} +}; +exports.gitMerge = gitMerge; +var gitPullRequest = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M11 11.28V5c-.03-.78-.34-1.47-.94-2.06C9.46 2.35 8.78 2.03 8 2H7V0L4 3l3 3V4h1c.27.02.48.11.69.31.21.2.3.42.31.69v6.28A1.993 1.993 0 0010 15a1.993 1.993 0 001-3.72zm-1 2.92c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zM4 3c0-1.11-.89-2-2-2a1.993 1.993 0 00-1 3.72v6.56A1.993 1.993 0 002 15a1.993 1.993 0 001-3.72V4.72c.59-.34 1-.98 1-1.72zm-.8 10c0 .66-.55 1.2-1.2 1.2-.65 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z" + }, + "children": [] + }], + "attribs": {} +}; +exports.gitPullRequest = gitPullRequest; +var githubAction = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M9 2h6c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1H9a1 1 0 11-2 0H1c-.55 0-1-.45-1-1V3c0-.55.45-1 1-1h6a1 1 0 112 0zm6 1v10H1V3h14zm-2.5 4a1.5 1.5 0 100-3 1.5 1.5 0 000 3z" + }, + "children": [] + }], + "attribs": {} +}; +exports.githubAction = githubAction; +var globe = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M7 1C3.14 1 0 4.14 0 8s3.14 7 7 7c.48 0 .94-.05 1.38-.14-.17-.08-.2-.73-.02-1.09.19-.41.81-1.45.2-1.8-.61-.35-.44-.5-.81-.91-.37-.41-.22-.47-.25-.58-.08-.34.36-.89.39-.94.02-.06.02-.27 0-.33 0-.08-.27-.22-.34-.23-.06 0-.11.11-.2.13-.09.02-.5-.25-.59-.33-.09-.08-.14-.23-.27-.34-.13-.13-.14-.03-.33-.11s-.8-.31-1.28-.48c-.48-.19-.52-.47-.52-.66-.02-.2-.3-.47-.42-.67-.14-.2-.16-.47-.2-.41-.04.06.25.78.2.81-.05.02-.16-.2-.3-.38-.14-.19.14-.09-.3-.95s.14-1.3.17-1.75c.03-.45.38.17.19-.13-.19-.3 0-.89-.14-1.11-.13-.22-.88.25-.88.25.02-.22.69-.58 1.16-.92.47-.34.78-.06 1.16.05.39.13.41.09.28-.05-.13-.13.06-.17.36-.13.28.05.38.41.83.36.47-.03.05.09.11.22s-.06.11-.38.3c-.3.2.02.22.55.61s.38-.25.31-.55c-.07-.3.39-.06.39-.06.33.22.27.02.5.08.23.06.91.64.91.64-.83.44-.31.48-.17.59.14.11-.28.3-.28.3-.17-.17-.19.02-.3.08-.11.06-.02.22-.02.22-.56.09-.44.69-.42.83 0 .14-.38.36-.47.58-.09.2.25.64.06.66-.19.03-.34-.66-1.31-.41-.3.08-.94.41-.59 1.08.36.69.92-.19 1.11-.09.19.1-.06.53-.02.55.04.02.53.02.56.61.03.59.77.53.92.55.17 0 .7-.44.77-.45.06-.03.38-.28 1.03.09.66.36.98.31 1.2.47.22.16.08.47.28.58.2.11 1.06-.03 1.28.31.22.34-.88 2.09-1.22 2.28-.34.19-.48.64-.84.92s-.81.64-1.27.91c-.41.23-.47.66-.66.8 3.14-.7 5.48-3.5 5.48-6.84 0-3.86-3.14-7-7-7L7 1zm1.64 6.56c-.09.03-.28.22-.78-.08-.48-.3-.81-.23-.86-.28 0 0-.05-.11.17-.14.44-.05.98.41 1.11.41.13 0 .19-.13.41-.05.22.08.05.13-.05.14zM6.34 1.7c-.05-.03.03-.08.09-.14.03-.03.02-.11.05-.14.11-.11.61-.25.52.03-.11.27-.58.3-.66.25zm1.23.89c-.19-.02-.58-.05-.52-.14.3-.28-.09-.38-.34-.38-.25-.02-.34-.16-.22-.19.12-.03.61.02.7.08.08.06.52.25.55.38.02.13 0 .25-.17.25zm1.47-.05c-.14.09-.83-.41-.95-.52-.56-.48-.89-.31-1-.41-.11-.1-.08-.19.11-.34.19-.15.69.06 1 .09.3.03.66.27.66.55.02.25.33.5.19.63h-.01z" + }, + "children": [] + }], + "attribs": {} +}; +exports.globe = globe; +var grabber = { + "viewBox": "0 0 8 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M8 4v1H0V4h8zM0 8h8V7H0v1zm0 3h8v-1H0v1z" + }, + "children": [] + }], + "attribs": {} +}; +exports.grabber = grabber; +var graph = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M16 14v1H0V0h1v14h15zM5 13H3V8h2v5zm4 0H7V3h2v10zm4 0h-2V6h2v7z" + }, + "children": [] + }], + "attribs": {} +}; +exports.graph = graph; +var heartOutline = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M1.192 3.924C1.909 3.294 2.835 3 3.727 3 4.73 3 5.513 3.485 6 3.894 6.488 3.485 7.271 3 8.273 3c.892 0 1.818.293 2.535.924C11.545 4.572 12 5.525 12 6.7c0 .962-.435 1.891-.944 2.67-.522.8-1.2 1.558-1.852 2.203a24.563 24.563 0 01-1.793 1.6c-.451.365-1.39 1.045-1.39 1.045s-1.277-.921-1.431-1.046a24.57 24.57 0 01-1.793-1.599c-.652-.645-1.33-1.404-1.853-2.202C.434 8.59 0 7.662 0 6.7c0-1.175.455-2.128 1.192-2.776zm4.96 7.694l-.151.122a22.6 22.6 0 01-1.797-1.588c-.599-.593-1.17-1.24-1.586-1.876C2.19 7.621 2 7.088 2 6.7c0-.625.226-1.022.513-1.274.305-.27.743-.426 1.214-.426.344 0 .686.172.993.43.191.161.332.314.455.448.255.278.432.472.826.472a.868.868 0 00.497-.14c.146-.096.264-.232.394-.38.112-.13.234-.27.39-.4.306-.258.647-.43.99-.43.472 0 .91.157 1.215.426.287.252.513.649.513 1.274 0 .388-.19.922-.618 1.576-.416.636-.987 1.283-1.585 1.876-.595.589-1.193 1.1-1.645 1.466z" + }, + "children": [] + }], + "attribs": {} +}; +exports.heartOutline = heartOutline; +var heart = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M8.727 3C7.091 3 6.001 4.65 6.001 4.65S4.909 3 3.273 3C1.636 3 0 4.1 0 6.3 0 9.6 6 14 6 14s6-4.4 6-7.7C12 4.1 10.364 3 8.727 3z" + }, + "children": [] + }], + "attribs": {} +}; +exports.heart = heart; +var history = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M8 13H6V6h5v2H8v5zM7 1C4.81 1 2.87 2.02 1.59 3.59L0 2v4h4L2.5 4.5C3.55 3.17 5.17 2.3 7 2.3c3.14 0 5.7 2.56 5.7 5.7s-2.56 5.7-5.7 5.7A5.71 5.71 0 011.3 8c0-.34.03-.67.09-1H.08C.03 7.33 0 7.66 0 8c0 3.86 3.14 7 7 7s7-3.14 7-7-3.14-7-7-7z" + }, + "children": [] + }], + "attribs": {} +}; +exports.history = history; +var home = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M16 9l-3-3V2h-2v2L8 1 0 9h2l1 5c0 .55.45 1 1 1h8c.55 0 1-.45 1-1l1-5h2zm-4 5H9v-4H7v4H4L2.81 7.69 8 2.5l5.19 5.19L12 14z" + }, + "children": [] + }], + "attribs": {} +}; +exports.home = home; +var horizontalRule = { + "viewBox": "0 0 10 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M1 7h2v2h1V3H3v3H1V3H0v6h1V7zm9 2V7H9v2h1zm0-3V4H9v2h1zM7 6V4h2V3H6v6h1V7h2V6H7zm-7 7h10v-2H0v2z" + }, + "children": [] + }], + "attribs": {} +}; +exports.horizontalRule = horizontalRule; +var hubot = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M3 6c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h8c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1H3zm8 1.75L9.75 9h-1.5L7 7.75 5.75 9h-1.5L3 7.75V7h.75L5 8.25 6.25 7h1.5L9 8.25 10.25 7H11v.75zM5 11h4v1H5v-1zm2-9C3.14 2 0 4.91 0 8.5V13c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V8.5C14 4.91 10.86 2 7 2zm6 11H1V8.5c0-3.09 2.64-5.59 6-5.59s6 2.5 6 5.59V13z" + }, + "children": [] + }], + "attribs": {} +}; +exports.hubot = hubot; +var inbox = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M14 9l-1.13-7.14c-.08-.48-.5-.86-1-.86H2.13c-.5 0-.92.38-1 .86L0 9v5c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V9zm-3.28.55l-.44.89c-.17.34-.52.56-.91.56H4.61c-.38 0-.72-.22-.89-.55l-.44-.91c-.17-.33-.52-.55-.89-.55H1l1-7h10l1 7h-1.38c-.39 0-.73.22-.91.55l.01.01z" + }, + "children": [] + }], + "attribs": {} +}; +exports.inbox = inbox; +var infinity = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M4 6a2 2 0 100 4c.137 0 .402-.073.796-.318a7.49 7.49 0 001.138-.908c.285-.27.543-.542.753-.774a14.22 14.22 0 00-.753-.774 7.49 7.49 0 00-1.138-.908C4.402 6.073 4.137 6 4 6zm5.313 2c.21.232.468.504.753.774.37.35.764.676 1.138.908.394.245.659.318.796.318a2 2 0 100-4c-.137 0-.402.073-.796.318a7.483 7.483 0 00-1.138.908c-.285.27-.543.542-.753.774zM8 9.527a15.45 15.45 0 01-.691.7 9.587 9.587 0 01-1.457 1.154C5.34 11.698 4.69 12 4 12a4 4 0 010-8c.691 0 1.34.302 1.852.62.531.33 1.034.754 1.457 1.154.255.24.489.481.691.699.202-.218.436-.458.691-.7a9.587 9.587 0 011.457-1.154C10.66 4.302 11.31 4 12 4a4 4 0 010 8c-.691 0-1.34-.302-1.852-.62a9.464 9.464 0 01-1.457-1.154A14.47 14.47 0 018 9.527z" + }, + "children": [] + }], + "attribs": {} +}; +exports.infinity = infinity; +var info = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M6.3 5.69a.942.942 0 01-.28-.7c0-.28.09-.52.28-.7.19-.18.42-.28.7-.28.28 0 .52.09.7.28.18.19.28.42.28.7 0 .28-.09.52-.28.7a1 1 0 01-.7.3c-.28 0-.52-.11-.7-.3zM8 7.99c-.02-.25-.11-.48-.31-.69-.2-.19-.42-.3-.69-.31H6c-.27.02-.48.13-.69.31-.2.2-.3.44-.31.69h1v3c.02.27.11.5.31.69.2.2.42.31.69.31h1c.27 0 .48-.11.69-.31.2-.19.3-.42.31-.69H8V7.98v.01zM7 2.3c-3.14 0-5.7 2.54-5.7 5.68 0 3.14 2.56 5.7 5.7 5.7s5.7-2.55 5.7-5.7c0-3.15-2.56-5.69-5.7-5.69v.01zM7 .98c3.86 0 7 3.14 7 7s-3.14 7-7 7-7-3.12-7-7 3.14-7 7-7z" + }, + "children": [] + }], + "attribs": {} +}; +exports.info = info; +var internalRepo = { + "viewBox": "0 0 13 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M10 0H9v1a1 1 0 00-1 1H7a1 1 0 00-1 1v1H1c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h1v1l1-.5 1 .5v-1h4c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1H7V3h1a1 1 0 001-1h1a1 1 0 001 1h1v13h1V3a1 1 0 00-1-1h-1a1 1 0 00-1-1V0zM8 12H2V5h6v7zm-7 1h1v1H1v-1zm7 0v1H4v-1h4zm3-9h-1v2h1V4zm0 3h-1v2h1V7zm0 3h-1v2h1v-2zm0 3h-1v2h1v-2zm-7-2H3v-1h1v1zm0-5H3v1h1V6zm0 2H3v1h1V8z" + }, + "children": [] + }], + "attribs": {} +}; +exports.internalRepo = internalRepo; +var issueClosed = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M7 10h2v2H7v-2zm2-6H7v5h2V4zm1.5 1.5l-1 1L12 9l4-4.5-1-1L12 7l-1.5-1.5zM8 13.7A5.71 5.71 0 012.3 8c0-3.14 2.56-5.7 5.7-5.7 1.83 0 3.45.88 4.5 2.2l.92-.92A6.947 6.947 0 008 1C4.14 1 1 4.14 1 8s3.14 7 7 7 7-3.14 7-7l-1.52 1.52c-.66 2.41-2.86 4.19-5.48 4.19v-.01z" + }, + "children": [] + }], + "attribs": {} +}; +exports.issueClosed = issueClosed; +var issueOpened = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M7 2.3c3.14 0 5.7 2.56 5.7 5.7s-2.56 5.7-5.7 5.7A5.71 5.71 0 011.3 8c0-3.14 2.56-5.7 5.7-5.7zM7 1C3.14 1 0 4.14 0 8s3.14 7 7 7 7-3.14 7-7-3.14-7-7-7zm1 3H6v5h2V4zm0 6H6v2h2v-2z" + }, + "children": [] + }], + "attribs": {} +}; +exports.issueOpened = issueOpened; +var issueReopened = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M8 9H6V4h2v5zm-2 3h2v-2H6v2zm6.33-2H10l1.5 1.5c-1.05 1.33-2.67 2.2-4.5 2.2A5.71 5.71 0 011.3 8c0-.34.03-.67.09-1H.08C.03 7.33 0 7.66 0 8c0 3.86 3.14 7 7 7 2.19 0 4.13-1.02 5.41-2.59L14 14v-4h-1.67zM1.67 6H4L2.5 4.5C3.55 3.17 5.17 2.3 7 2.3c3.14 0 5.7 2.56 5.7 5.7 0 .34-.03.67-.09 1h1.31c.05-.33.08-.66.08-1 0-3.86-3.14-7-7-7-2.19 0-4.13 1.02-5.41 2.59L0 2v4h1.67z" + }, + "children": [] + }], + "attribs": {} +}; +exports.issueReopened = issueReopened; +var italic = { + "viewBox": "0 0 6 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M2.81 5h1.98L3 14H1l1.81-9zm.36-2.7c0-.7.58-1.3 1.33-1.3.56 0 1.13.38 1.13 1.03 0 .75-.59 1.3-1.33 1.3-.58 0-1.13-.38-1.13-1.03z" + }, + "children": [] + }], + "attribs": {} +}; +exports.italic = italic; +var jersey = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M4.5 6l-.5.5v5l.5.5h2l.5-.5v-5L6.5 6h-2zM6 11H5V7h1v4zm6.27-7.25C12.05 2.37 11.96 1.12 12 0H9.02c0 .27-.13.48-.39.69-.25.2-.63.3-1.13.3-.5 0-.88-.09-1.13-.3-.23-.2-.36-.42-.36-.69H3c.05 1.13-.03 2.38-.25 3.75C2.55 5.13 1.95 5.88 1 6v9c.02.27.11.48.31.69.2.21.42.3.69.31h11c.27-.02.48-.11.69-.31.21-.2.3-.42.31-.69V6c-.95-.13-1.53-.88-1.75-2.25h.02zM13 15H2V7c.89-.5 1.48-1.25 1.72-2.25S4.03 2.5 4 1h1c-.02.78.16 1.47.52 2.06.36.58 1.02.89 2 .94.98-.02 1.64-.33 2-.94.36-.59.5-1.28.48-2.06h1c.02 1.42.13 2.55.33 3.38.2.81.69 2 1.67 2.63v8V15zM8.5 6l-.5.5v5l.5.5h2l.5-.5v-5l-.5-.5h-2zm1.5 5H9V7h1v4z" + }, + "children": [] + }], + "attribs": {} +}; +exports.jersey = jersey; +var kebabHorizontal = { + "viewBox": "0 0 13 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M1.5 9a1.5 1.5 0 100-3 1.5 1.5 0 000 3zm5 0a1.5 1.5 0 100-3 1.5 1.5 0 000 3zM13 7.5a1.5 1.5 0 11-3 0 1.5 1.5 0 013 0z" + }, + "children": [] + }], + "attribs": {} +}; +exports.kebabHorizontal = kebabHorizontal; +var kebabVertical = { + "viewBox": "0 0 3 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M0 2.5a1.5 1.5 0 103 0 1.5 1.5 0 00-3 0zm0 5a1.5 1.5 0 103 0 1.5 1.5 0 00-3 0zM1.5 14a1.5 1.5 0 110-3 1.5 1.5 0 010 3z" + }, + "children": [] + }], + "attribs": {} +}; +exports.kebabVertical = kebabVertical; +var key = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M12.83 2.17C12.08 1.42 11.14 1.03 10 1c-1.13.03-2.08.42-2.83 1.17S6.04 3.86 6.01 5c0 .3.03.59.09.89L0 12v1l1 1h2l1-1v-1h1v-1h1v-1h2l1.09-1.11c.3.08.59.11.91.11 1.14-.03 2.08-.42 2.83-1.17S13.97 6.14 14 5c-.03-1.14-.42-2.08-1.17-2.83zM11 5.38c-.77 0-1.38-.61-1.38-1.38 0-.77.61-1.38 1.38-1.38.77 0 1.38.61 1.38 1.38 0 .77-.61 1.38-1.38 1.38z" + }, + "children": [] + }], + "attribs": {} +}; +exports.key = key; +var keyboard = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M10 5H9V4h1v1zM3 6H2v1h1V6zm5-2H7v1h1V4zM4 4H2v1h2V4zm8 7h2v-1h-2v1zM8 7h1V6H8v1zm-4 3H2v1h2v-1zm8-6h-1v1h1V4zm2 0h-1v1h1V4zm-2 5h2V6h-2v3zm4-6v9c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V3c0-.55.45-1 1-1h14c.55 0 1 .45 1 1zm-1 0H1v9h14V3zM6 7h1V6H6v1zm0-3H5v1h1V4zM4 7h1V6H4v1zm1 4h6v-1H5v1zm5-4h1V6h-1v1zM3 8H2v1h1V8zm5 0v1h1V8H8zM6 8v1h1V8H6zM5 8H4v1h1V8zm5 1h1V8h-1v1z" + }, + "children": [] + }], + "attribs": {} +}; +exports.keyboard = keyboard; +var law = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M7 4c-.83 0-1.5-.67-1.5-1.5S6.17 1 7 1s1.5.67 1.5 1.5S7.83 4 7 4zm7 6c0 1.11-.89 2-2 2h-1c-1.11 0-2-.89-2-2l2-4h-1c-.55 0-1-.45-1-1H8v8c.42 0 1 .45 1 1h1c.42 0 1 .45 1 1H3c0-.55.58-1 1-1h1c0-.55.58-1 1-1h.03L6 5H5c0 .55-.45 1-1 1H3l2 4c0 1.11-.89 2-2 2H2c-1.11 0-2-.89-2-2l2-4H1V5h3c0-.55.45-1 1-1h4c.55 0 1 .45 1 1h3v1h-1l2 4zM2.5 7L1 10h3L2.5 7zM13 10l-1.5-3-1.5 3h3z" + }, + "children": [] + }], + "attribs": {} +}; +exports.law = law; +var lightBulb = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M6.5 0C3.48 0 1 2.19 1 5c0 .92.55 2.25 1 3 1.34 2.25 1.78 2.78 2 4v1h5v-1c.22-1.22.66-1.75 2-4 .45-.75 1-2.08 1-3 0-2.81-2.48-5-5.5-5zm3.64 7.48c-.25.44-.47.8-.67 1.11-.86 1.41-1.25 2.06-1.45 3.23-.02.05-.02.11-.02.17H5c0-.06 0-.13-.02-.17-.2-1.17-.59-1.83-1.45-3.23-.2-.31-.42-.67-.67-1.11C2.44 6.78 2 5.65 2 5c0-2.2 2.02-4 4.5-4 1.22 0 2.36.42 3.22 1.19C10.55 2.94 11 3.94 11 5c0 .66-.44 1.78-.86 2.48zM4 14h5c-.23 1.14-1.3 2-2.5 2s-2.27-.86-2.5-2z" + }, + "children": [] + }], + "attribs": {} +}; +exports.lightBulb = lightBulb; +var lineArrowDown = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "d": "M4.5 7.5L3 9l5 5 5-5-1.5-1.5L9 10.179V2H7v8.179L4.5 7.5z" + }, + "children": [] + }], + "attribs": {} +}; +exports.lineArrowDown = lineArrowDown; +var lineArrowLeft = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "d": "M8.5 4.5L7 3 2 8l5 5 1.5-1.5L5.821 9H14V7H5.821L8.5 4.5z" + }, + "children": [] + }], + "attribs": {} +}; +exports.lineArrowLeft = lineArrowLeft; +var lineArrowRight = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "d": "M7.5 11.5L9 13l5-5-5-5-1.5 1.5L10.179 7H2v2h8.179L7.5 11.5z" + }, + "children": [] + }], + "attribs": {} +}; +exports.lineArrowRight = lineArrowRight; +var lineArrowUp = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "d": "M11.5 8.5L13 7 8 2 3 7l1.5 1.5L7 5.821V14h2V5.821L11.5 8.5z" + }, + "children": [] + }], + "attribs": {} +}; +exports.lineArrowUp = lineArrowUp; +var linkExternal = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M11 10h1v3c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V3c0-.55.45-1 1-1h3v1H1v10h10v-3zM6 2l2.25 2.25L5 7.5 6.5 9l3.25-3.25L12 8V2H6z" + }, + "children": [] + }], + "attribs": {} +}; +exports.linkExternal = linkExternal; +var link = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z" + }, + "children": [] + }], + "attribs": {} +}; +exports.link = link; +var listOrdered = { + "viewBox": "0 0 13 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M12.01 13c0 .59 0 1-.59 1H4.6c-.59 0-.59-.41-.59-1 0-.59 0-1 .59-1h6.81c.59 0 .59.41.59 1h.01zM4.6 4h6.81C12 4 12 3.59 12 3c0-.59 0-1-.59-1H4.6c-.59 0-.59.41-.59 1 0 .59 0 1 .59 1zm6.81 3H4.6c-.59 0-.59.41-.59 1 0 .59 0 1 .59 1h6.81C12 9 12 8.59 12 8c0-.59 0-1-.59-1zm-9.4-6h-.72c-.3.19-.58.25-1.03.34V2h.75v2.14H.17V5h2.84v-.86h-1V1zm.392 8.12c-.129 0-.592.04-.802.07.53-.56 1.14-1.25 1.14-1.89C2.72 6.52 2.18 6 1.38 6c-.59 0-.97.2-1.38.64l.58.58c.19-.19.38-.38.64-.38.28 0 .48.16.48.52 0 .53-.77 1.2-1.7 2.06V10h3v-.88h-.598zm-.222 3.79v-.03c.44-.19.64-.47.64-.86 0-.7-.56-1.11-1.44-1.11-.48 0-.89.19-1.28.52l.55.64c.25-.2.44-.31.69-.31.27 0 .42.13.42.36 0 .27-.2.44-.86.44v.75c.83 0 .98.17.98.47 0 .25-.23.38-.58.38-.28 0-.56-.14-.81-.38l-.48.66c.3.36.77.56 1.41.56.83 0 1.53-.41 1.53-1.16 0-.5-.31-.81-.77-.94v.01z" + }, + "children": [] + }], + "attribs": {} +}; +exports.listOrdered = listOrdered; +var listUnordered = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M2 13c0 .59 0 1-.59 1H.59C0 14 0 13.59 0 13c0-.59 0-1 .59-1h.81c.59 0 .59.41.59 1H2zm2.59-9h6.81c.59 0 .59-.41.59-1 0-.59 0-1-.59-1H4.59C4 2 4 2.41 4 3c0 .59 0 1 .59 1zM1.41 7H.59C0 7 0 7.41 0 8c0 .59 0 1 .59 1h.81c.59 0 .59-.41.59-1 0-.59 0-1-.59-1h.01zm0-5H.59C0 2 0 2.41 0 3c0 .59 0 1 .59 1h.81c.59 0 .59-.41.59-1 0-.59 0-1-.59-1h.01zm10 5H4.59C4 7 4 7.41 4 8c0 .59 0 1 .59 1h6.81c.59 0 .59-.41.59-1 0-.59 0-1-.59-1h.01zm0 5H4.59C4 12 4 12.41 4 13c0 .59 0 1 .59 1h6.81c.59 0 .59-.41.59-1 0-.59 0-1-.59-1h.01z" + }, + "children": [] + }], + "attribs": {} +}; +exports.listUnordered = listUnordered; +var location = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M6 0C2.69 0 0 2.5 0 5.5 0 10.02 6 16 6 16s6-5.98 6-10.5C12 2.5 9.31 0 6 0zm0 14.55C4.14 12.52 1 8.44 1 5.5 1 3.02 3.25 1 6 1c1.34 0 2.61.48 3.56 1.36.92.86 1.44 1.97 1.44 3.14 0 2.94-3.14 7.02-5 9.05zM8 5.5c0 1.11-.89 2-2 2-1.11 0-2-.89-2-2 0-1.11.89-2 2-2 1.11 0 2 .89 2 2z" + }, + "children": [] + }], + "attribs": {} +}; +exports.location = location; +var lock = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M4 13H3v-1h1v1zm8-6v7c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V7c0-.55.45-1 1-1h1V4c0-2.2 1.8-4 4-4s4 1.8 4 4v2h1c.55 0 1 .45 1 1zM3.8 6h4.41V4c0-1.22-.98-2.2-2.2-2.2-1.22 0-2.2.98-2.2 2.2v2H3.8zM11 7H2v7h9V7zM4 8H3v1h1V8zm0 2H3v1h1v-1z" + }, + "children": [] + }], + "attribs": {} +}; +exports.lock = lock; +var logoGist = { + "viewBox": "0 0 25 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M4.7 8.73h2.45v4.02c-.55.27-1.64.34-2.53.34-2.56 0-3.47-2.2-3.47-5.05 0-2.85.91-5.06 3.48-5.06 1.28 0 2.06.23 3.28.73V2.66C7.27 2.33 6.25 2 4.63 2 1.13 2 0 4.69 0 8.03c0 3.34 1.11 6.03 4.63 6.03 1.64 0 2.81-.27 3.59-.64V7.73H4.7v1zm6.39 3.72V6.06h-1.05v6.28c0 1.25.58 1.72 1.72 1.72v-.89c-.48 0-.67-.16-.67-.7v-.02zm.25-8.72c0-.44-.33-.78-.78-.78s-.77.34-.77.78.33.78.77.78.78-.34.78-.78zm4.34 5.69c-1.5-.13-1.78-.48-1.78-1.17 0-.77.33-1.34 1.88-1.34 1.05 0 1.66.16 2.27.36v-.94c-.69-.3-1.52-.39-2.25-.39-2.2 0-2.92 1.2-2.92 2.31 0 1.08.47 1.88 2.73 2.08 1.55.13 1.77.63 1.77 1.34 0 .73-.44 1.42-2.06 1.42-1.11 0-1.86-.19-2.33-.36v.94c.5.2 1.58.39 2.33.39 2.38 0 3.14-1.2 3.14-2.41 0-1.28-.53-2.03-2.75-2.23h-.03zm8.58-2.47v-.86h-2.42v-2.5l-1.08.31v2.11l-1.56.44v.48h1.56v5c0 1.53 1.19 2.13 2.5 2.13.19 0 .52-.02.69-.05v-.89c-.19.03-.41.03-.61.03-.97 0-1.5-.39-1.5-1.34V6.94h2.42v.02-.01z" + }, + "children": [] + }], + "attribs": {} +}; +exports.logoGist = logoGist; +var logoGithub = { + "viewBox": "0 0 45 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M18.53 12.03h-.02c.009 0 .015.01.024.011h.006l-.01-.01zm.004.011c-.093.001-.327.05-.574.05-.78 0-1.05-.36-1.05-.83V8.13h1.59c.09 0 .16-.08.16-.19v-1.7c0-.09-.08-.17-.16-.17h-1.59V3.96c0-.08-.05-.13-.14-.13h-2.16c-.09 0-.14.05-.14.13v2.17s-1.09.27-1.16.28c-.08.02-.13.09-.13.17v1.36c0 .11.08.19.17.19h1.11v3.28c0 2.44 1.7 2.69 2.86 2.69.53 0 1.17-.17 1.27-.22.06-.02.09-.09.09-.16v-1.5a.177.177 0 00-.146-.18zM42.23 9.84c0-1.81-.73-2.05-1.5-1.97-.6.04-1.08.34-1.08.34v3.52s.49.34 1.22.36c1.03.03 1.36-.34 1.36-2.25zm2.43-.16c0 3.43-1.11 4.41-3.05 4.41-1.64 0-2.52-.83-2.52-.83s-.04.46-.09.52c-.03.06-.08.08-.14.08h-1.48c-.1 0-.19-.08-.19-.17l.02-11.11c0-.09.08-.17.17-.17h2.13c.09 0 .17.08.17.17v3.77s.82-.53 2.02-.53l-.01-.02c1.2 0 2.97.45 2.97 3.88zm-8.72-3.61h-2.1c-.11 0-.17.08-.17.19v5.44s-.55.39-1.3.39-.97-.34-.97-1.09V6.25c0-.09-.08-.17-.17-.17h-2.14c-.09 0-.17.08-.17.17v5.11c0 2.2 1.23 2.75 2.92 2.75 1.39 0 2.52-.77 2.52-.77s.05.39.08.45c.02.05.09.09.16.09h1.34c.11 0 .17-.08.17-.17l.02-7.47c0-.09-.08-.17-.19-.17zm-23.7-.01h-2.13c-.09 0-.17.09-.17.2v7.34c0 .2.13.27.3.27h1.92c.2 0 .25-.09.25-.27V6.23c0-.09-.08-.17-.17-.17zm-1.05-3.38c-.77 0-1.38.61-1.38 1.38 0 .77.61 1.38 1.38 1.38.75 0 1.36-.61 1.36-1.38 0-.77-.61-1.38-1.36-1.38zm16.49-.25h-2.11c-.09 0-.17.08-.17.17v4.09h-3.31V2.6c0-.09-.08-.17-.17-.17h-2.13c-.09 0-.17.08-.17.17v11.11c0 .09.09.17.17.17h2.13c.09 0 .17-.08.17-.17V8.96h3.31l-.02 4.75c0 .09.08.17.17.17h2.13c.09 0 .17-.08.17-.17V2.6c0-.09-.08-.17-.17-.17zM8.81 7.35v5.74c0 .04-.01.11-.06.13 0 0-1.25.89-3.31.89-2.49 0-5.44-.78-5.44-5.92S2.58 1.99 5.1 2c2.18 0 3.06.49 3.2.58.04.05.06.09.06.14L7.94 4.5c0 .09-.09.2-.2.17-.36-.11-.9-.33-2.17-.33-1.47 0-3.05.42-3.05 3.73s1.5 3.7 2.58 3.7c.92 0 1.25-.11 1.25-.11v-2.3H4.88c-.11 0-.19-.08-.19-.17V7.35c0-.09.08-.17.19-.17h3.74c.11 0 .19.08.19.17z" + }, + "children": [] + }], + "attribs": {} +}; +exports.logoGithub = logoGithub; +var mailRead = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M6 5H4V4h2v1zm3 1H4v1h5V6zm5-.48V14c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V5.52c0-.33.16-.63.42-.81L2 3.58V3c0-.55.45-1 1-1h1.2L7 0l2.8 2H11c.55 0 1 .45 1 1v.58l1.58 1.13c.27.19.42.48.42.81zM3 7.5L7 10l4-2.5V3H3v4.5zm-2 6l4.5-3-4.5-3v6zm11 .5l-5-3-5 3h10zm1-6.5l-4.5 3 4.5 3v-6z" + }, + "children": [] + }], + "attribs": {} +}; +exports.mailRead = mailRead; +var mail = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M0 4v8c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1H1c-.55 0-1 .45-1 1zm13 0L7 9 1 4h12zM1 5.5l4 3-4 3v-6zM2 12l3.5-3L7 10.5 8.5 9l3.5 3H2zm11-.5l-4-3 4-3v6z" + }, + "children": [] + }], + "attribs": {} +}; +exports.mail = mail; +var markGithub = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0016 8c0-4.42-3.58-8-8-8z" + }, + "children": [] + }], + "attribs": {} +}; +exports.markGithub = markGithub; +var markdown = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M14.85 3H1.15C.52 3 0 3.52 0 4.15v7.69C0 12.48.52 13 1.15 13h13.69c.64 0 1.15-.52 1.15-1.15v-7.7C16 3.52 15.48 3 14.85 3zM9 11H7V8L5.5 9.92 4 8v3H2V5h2l1.5 2L7 5h2v6zm2.99.5L9.5 8H11V5h2v3h1.5l-2.51 3.5z" + }, + "children": [] + }], + "attribs": {} +}; +exports.markdown = markdown; +var megaphone = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M10 1c-.17 0-.36.05-.52.14C8.04 2.02 4.5 4.58 3 5c-1.38 0-3 .67-3 2.5S1.63 10 3 10c.3.08.64.23 1 .41V15h2v-3.45c1.34.86 2.69 1.83 3.48 2.31.16.09.34.14.52.14.52 0 1-.42 1-1V2c0-.58-.48-1-1-1zm0 12c-.38-.23-.89-.58-1.5-1-.16-.11-.33-.22-.5-.34V3.31c.16-.11.31-.2.47-.31.61-.41 1.16-.77 1.53-1v11zm2-6h4v1h-4V7zm0 2l4 2v1l-4-2V9zm4-6v1l-4 2V5l4-2z" + }, + "children": [] + }], + "attribs": {} +}; +exports.megaphone = megaphone; +var mention = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M6.58 15c1.25 0 2.52-.31 3.56-.94l-.42-.94c-.84.52-1.89.83-3.03.83-3.23 0-5.64-2.08-5.64-5.72 0-4.37 3.23-7.18 6.58-7.18 3.45 0 5.22 2.19 5.22 5.2 0 2.39-1.34 3.86-2.5 3.86-1.05 0-1.36-.73-1.05-2.19l.73-3.75H8.98l-.11.72c-.41-.63-.94-.83-1.56-.83-2.19 0-3.66 2.39-3.66 4.38 0 1.67.94 2.61 2.3 2.61.84 0 1.67-.53 2.3-1.25.11.94.94 1.45 1.98 1.45 1.67 0 3.77-1.67 3.77-5C14 2.61 11.59 0 7.83 0 3.66 0 0 3.33 0 8.33 0 12.71 2.92 15 6.58 15zm-.31-5c-.73 0-1.36-.52-1.36-1.67 0-1.45.94-3.22 2.41-3.22.52 0 .84.2 1.25.83l-.52 3.02c-.63.73-1.25 1.05-1.78 1.05V10z" + }, + "children": [] + }], + "attribs": {} +}; +exports.mention = mention; +var milestone = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M8 2H6V0h2v2zm4 5H2c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h10l2 2-2 2zM8 4H6v2h2V4zM6 16h2V8H6v8z" + }, + "children": [] + }], + "attribs": {} +}; +exports.milestone = milestone; +var mirror = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M15.5 4.7L8.5 0l-7 4.7c-.3.19-.5.45-.5.8V16l7.5-4 7.5 4V5.5c0-.34-.2-.61-.5-.8zm-.5 9.8l-6-3.25V10H8v1.25L2 14.5v-9l6-4V6h1V1.5l6 4v9zM6 7h5V5l3 3-3 3V9H6v2L3 8l3-3v2z" + }, + "children": [] + }], + "attribs": {} +}; +exports.mirror = mirror; +var mortarBoard = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M8.11 2.8a.34.34 0 00-.2 0L.27 5.18a.35.35 0 000 .67L2 6.4v1.77c-.3.17-.5.5-.5.86 0 .19.05.36.14.5-.08.14-.14.31-.14.5v2.58c0 .55 2 .55 2 0v-2.58c0-.19-.05-.36-.14-.5.08-.14.14-.31.14-.5 0-.38-.2-.69-.5-.86V6.72l4.89 1.53c.06.02.14.02.2 0l7.64-2.38a.35.35 0 000-.67L8.1 2.81l.01-.01zM4 8l3.83 1.19h-.02c.13.03.25.03.36 0L12 8v2.5c0 1-1.8 1.5-4 1.5s-4-.5-4-1.5V8zm3.02-2.5c0 .28.45.5 1 .5s1-.22 1-.5-.45-.5-1-.5-1 .22-1 .5z" + }, + "children": [] + }], + "attribs": {} +}; +exports.mortarBoard = mortarBoard; +var mute = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M8 2.81v10.38c0 .67-.81 1-1.28.53L3 10H1c-.55 0-1-.45-1-1V7c0-.55.45-1 1-1h2l3.72-3.72C7.19 1.81 8 2.14 8 2.81zm7.53 3.22l-1.06-1.06-1.97 1.97-1.97-1.97-1.06 1.06L11.44 8 9.47 9.97l1.06 1.06 1.97-1.97 1.97 1.97 1.06-1.06L13.56 8l1.97-1.97z" + }, + "children": [] + }], + "attribs": {} +}; +exports.mute = mute; +var noNewline = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M16 5v3c0 .55-.45 1-1 1h-3v2L9 8l3-3v2h2V5h2zM8 8c0 2.2-1.8 4-4 4s-4-1.8-4-4 1.8-4 4-4 4 1.8 4 4zM1.5 9.66L5.66 5.5C5.18 5.19 4.61 5 4 5 2.34 5 1 6.34 1 8c0 .61.19 1.17.5 1.66zM7 8c0-.61-.19-1.17-.5-1.66L2.34 10.5c.48.31 1.05.5 1.66.5 1.66 0 3-1.34 3-3z" + }, + "children": [] + }], + "attribs": {} +}; +exports.noNewline = noNewline; +var northStar = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "d": "M8.5 0.75C8.5 0.335786 8.16421 0 7.75 0C7.33579 0 7 0.335786 7 0.75V5.93933L4.39125 3.33058C4.09836 3.03768 3.62348 3.03768 3.33059 3.33058C3.03769 3.62347 3.0377 4.09835 3.33059 4.39124L5.93935 7H0.75C0.335787 7 0 7.33579 0 7.75C0 8.16421 0.335787 8.5 0.75 8.5H5.93936L3.33059 11.1088C3.0377 11.4017 3.0377 11.8765 3.33059 12.1694C3.62349 12.4623 4.09836 12.4623 4.39125 12.1694L7 9.56068V14.75C7 15.1642 7.33579 15.5 7.75 15.5C8.16421 15.5 8.5 15.1642 8.5 14.75V9.56065L11.1088 12.1694C11.4017 12.4623 11.8765 12.4623 12.1694 12.1694C12.4623 11.8765 12.4623 11.4016 12.1694 11.1088L9.56067 8.5H14.75C15.1642 8.5 15.5 8.16421 15.5 7.75C15.5 7.33579 15.1642 7 14.75 7H9.56068L12.1694 4.39125C12.4623 4.09836 12.4623 3.62349 12.1694 3.33059C11.8765 3.0377 11.4017 3.0377 11.1088 3.33059L8.5 5.93936V0.75Z" + }, + "children": [] + }], + "attribs": {} +}; +exports.northStar = northStar; +var note = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M3 10h4V9H3v1zm0-2h6V7H3v1zm0-2h8V5H3v1zm10 6H1V3h12v9zM1 2c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1H1z" + }, + "children": [] + }], + "attribs": {} +}; +exports.note = note; +var octoface = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M14.7 5.34c.13-.32.55-1.59-.13-3.31 0 0-1.05-.33-3.44 1.3-1-.28-2.07-.32-3.13-.32s-2.13.04-3.13.32c-2.39-1.64-3.44-1.3-3.44-1.3-.68 1.72-.26 2.99-.13 3.31C.49 6.21 0 7.33 0 8.69 0 13.84 3.33 15 7.98 15S16 13.84 16 8.69c0-1.36-.49-2.48-1.3-3.35zM8 14.02c-3.3 0-5.98-.15-5.98-3.35 0-.76.38-1.48 1.02-2.07 1.07-.98 2.9-.46 4.96-.46 2.07 0 3.88-.52 4.96.46.65.59 1.02 1.3 1.02 2.07 0 3.19-2.68 3.35-5.98 3.35zM5.49 9.01c-.66 0-1.2.8-1.2 1.78s.54 1.79 1.2 1.79c.66 0 1.2-.8 1.2-1.79s-.54-1.78-1.2-1.78zm5.02 0c-.66 0-1.2.79-1.2 1.78s.54 1.79 1.2 1.79c.66 0 1.2-.8 1.2-1.79s-.53-1.78-1.2-1.78z" + }, + "children": [] + }], + "attribs": {} +}; +exports.octoface = octoface; +var organization = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M16 12.999c0 .439-.45 1-1 1H7.995c-.539 0-.994-.447-.995-.999H1c-.54 0-1-.561-1-1 0-2.634 3-4 3-4s.229-.409 0-1c-.841-.621-1.058-.59-1-3 .058-2.419 1.367-3 2.5-3s2.442.58 2.5 3c.058 2.41-.159 2.379-1 3-.229.59 0 1 0 1s1.549.711 2.42 2.088C9.196 9.369 10 8.999 10 8.999s.229-.409 0-1c-.841-.62-1.058-.59-1-3 .058-2.419 1.367-3 2.5-3s2.437.581 2.495 3c.059 2.41-.158 2.38-1 3-.229.59 0 1 0 1s3.005 1.366 3.005 4z" + }, + "children": [] + }], + "attribs": {} +}; +exports.organization = organization; +var packageIcon = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M1 4.27v7.47c0 .45.3.84.75.97l6.5 1.73c.16.05.34.05.5 0l6.5-1.73c.45-.13.75-.52.75-.97V4.27c0-.45-.3-.84-.75-.97l-6.5-1.74a1.4 1.4 0 00-.5 0L1.75 3.3c-.45.13-.75.52-.75.97zm7 9.09l-6-1.59V5l6 1.61v6.75zM2 4l2.5-.67L11 5.06l-2.5.67L2 4zm13 7.77l-6 1.59V6.61l2-.55V8.5l2-.53V5.53L15 5v6.77zm-2-7.24L6.5 2.8l2-.53L15 4l-2 .53z" + }, + "children": [] + }], + "attribs": {} +}; +exports.packageIcon = packageIcon; +var paintcan = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M6 0C2.69 0 0 2.69 0 6v1c0 .55.45 1 1 1v5c0 1.1 2.24 2 5 2s5-.9 5-2V8c.55 0 1-.45 1-1V6c0-3.31-2.69-6-6-6zm3 10v.5c0 .28-.22.5-.5.5s-.5-.22-.5-.5V10c0-.28-.22-.5-.5-.5s-.5.22-.5.5v2.5c0 .28-.22.5-.5.5s-.5-.22-.5-.5v-2c0-.28-.22-.5-.5-.5s-.5.22-.5.5v.5c0 .55-.45 1-1 1s-1-.45-1-1v-1c-.55 0-1-.45-1-1V7.2c.91.49 2.36.8 4 .8 1.64 0 3.09-.31 4-.8V9c0 .55-.45 1-1 1zM6 7c-1.68 0-3.12-.41-3.71-1C2.88 5.41 4.32 5 6 5c1.68 0 3.12.41 3.71 1-.59.59-2.03 1-3.71 1zm0-3c-2.76 0-5 .89-5 2 0-2.76 2.24-5 5-5s5 2.24 5 5c0-1.1-2.24-2-5-2z" + }, + "children": [] + }], + "attribs": {} +}; +exports.paintcan = paintcan; +var pencil = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M0 12v3h3l8-8-3-3-8 8zm3 2H1v-2h1v1h1v1zm10.3-9.3L12 6 9 3l1.3-1.3a.996.996 0 011.41 0l1.59 1.59c.39.39.39 1.02 0 1.41z" + }, + "children": [] + }], + "attribs": {} +}; +exports.pencil = pencil; +var person = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M12 14.002a.998.998 0 01-.998.998H1.001A1 1 0 010 13.999V13c0-2.633 4-4 4-4s.229-.409 0-1c-.841-.62-.944-1.59-1-4 .173-2.413 1.867-3 3-3s2.827.586 3 3c-.056 2.41-.159 3.38-1 4-.229.59 0 1 0 1s4 1.367 4 4v1.002z" + }, + "children": [] + }], + "attribs": {} +}; +exports.person = person; +var pin = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M10 1.2V2l.5 1L6 6H2.2c-.44 0-.67.53-.34.86L5 10l-4 5 5-4 3.14 3.14a.5.5 0 00.86-.34V10l3-4.5 1 .5h.8c.44 0 .67-.53.34-.86L10.86.86a.5.5 0 00-.86.34z" + }, + "children": [] + }], + "attribs": {} +}; +exports.pin = pin; +var play = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M14 8A7 7 0 110 8a7 7 0 0114 0zm-8.223 3.482l4.599-3.066a.5.5 0 000-.832L5.777 4.518A.5.5 0 005 4.934v6.132a.5.5 0 00.777.416z" + }, + "children": [] + }], + "attribs": {} +}; +exports.play = play; +var plug = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M14 6V5h-4V3H8v1H6c-1.03 0-1.77.81-2 2L3 7c-1.66 0-3 1.34-3 3v2h1v-2c0-1.11.89-2 2-2l1 1c.25 1.16.98 2 2 2h2v1h2v-2h4V9h-4V6h4z" + }, + "children": [] + }], + "attribs": {} +}; +exports.plug = plug; +var plusSmall = { + "viewBox": "0 0 7 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M4 4H3v3H0v1h3v3h1V8h3V7H4V4z" + }, + "children": [] + }], + "attribs": {} +}; +exports.plusSmall = plusSmall; +var plus = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M12 9H7v5H5V9H0V7h5V2h2v5h5v2z" + }, + "children": [] + }], + "attribs": {} +}; +exports.plus = plus; +var primitiveDotStroke = { + "viewBox": "0 0 8 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M4 10.5a2.5 2.5 0 100-5 2.5 2.5 0 000 5zM4 12a4 4 0 100-8 4 4 0 000 8z" + }, + "children": [] + }], + "attribs": {} +}; +exports.primitiveDotStroke = primitiveDotStroke; +var primitiveDot = { + "viewBox": "0 0 8 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M0 8c0-2.2 1.8-4 4-4s4 1.8 4 4-1.8 4-4 4-4-1.8-4-4z" + }, + "children": [] + }], + "attribs": {} +}; +exports.primitiveDot = primitiveDot; +var primitiveSquare = { + "viewBox": "0 0 8 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M8 12H0V4h8v8z" + }, + "children": [] + }], + "attribs": {} +}; +exports.primitiveSquare = primitiveSquare; +var project = { + "viewBox": "0 0 15 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M10 12h3V2h-3v10zm-4-2h3V2H6v8zm-4 4h3V2H2v12zm-1 1h13V1H1v14zM14 0H1a1 1 0 00-1 1v14a1 1 0 001 1h13a1 1 0 001-1V1a1 1 0 00-1-1z" + }, + "children": [] + }], + "attribs": {} +}; +exports.project = project; +var pulse = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M11.5 8L8.8 5.4 6.6 8.5 5.5 1.6 2.38 8H0v2h3.6l.9-1.8.9 5.4L9 8.5l1.6 1.5H14V8h-2.5z" + }, + "children": [] + }], + "attribs": {} +}; +exports.pulse = pulse; +var question = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M6 10h2v2H6v-2zm4-3.5C10 8.64 8 9 8 9H6c0-.55.45-1 1-1h.5c.28 0 .5-.22.5-.5v-1c0-.28-.22-.5-.5-.5h-1c-.28 0-.5.22-.5.5V7H4c0-1.5 1.5-3 3-3s3 1 3 2.5zM7 2.3c3.14 0 5.7 2.56 5.7 5.7s-2.56 5.7-5.7 5.7A5.71 5.71 0 011.3 8c0-3.14 2.56-5.7 5.7-5.7zM7 1C3.14 1 0 4.14 0 8s3.14 7 7 7 7-3.14 7-7-3.14-7-7-7z" + }, + "children": [] + }], + "attribs": {} +}; +exports.question = question; +var quote = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M6.16 3.5C3.73 5.06 2.55 6.67 2.55 9.36c.16-.05.3-.05.44-.05 1.27 0 2.5.86 2.5 2.41 0 1.61-1.03 2.61-2.5 2.61-1.9 0-2.99-1.52-2.99-4.25 0-3.8 1.75-6.53 5.02-8.42L6.16 3.5zm7 0c-2.43 1.56-3.61 3.17-3.61 5.86.16-.05.3-.05.44-.05 1.27 0 2.5.86 2.5 2.41 0 1.61-1.03 2.61-2.5 2.61-1.89 0-2.98-1.52-2.98-4.25 0-3.8 1.75-6.53 5.02-8.42l1.14 1.84h-.01z" + }, + "children": [] + }], + "attribs": {} +}; +exports.quote = quote; +var radioTower = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M4.79 6.11c.25-.25.25-.67 0-.92-.32-.33-.48-.76-.48-1.19 0-.43.16-.86.48-1.19.25-.26.25-.67 0-.92a.613.613 0 00-.45-.19c-.16 0-.33.06-.45.19-.57.58-.85 1.35-.85 2.11 0 .76.29 1.53.85 2.11.25.25.66.25.9 0zM2.33.52a.651.651 0 00-.92 0C.48 1.48.01 2.74.01 3.99c0 1.26.47 2.52 1.4 3.48.25.26.66.26.91 0s.25-.68 0-.94c-.68-.7-1.02-1.62-1.02-2.54 0-.92.34-1.84 1.02-2.54a.66.66 0 00.01-.93zm5.69 5.1A1.62 1.62 0 106.4 4c-.01.89.72 1.62 1.62 1.62zM14.59.53a.628.628 0 00-.91 0c-.25.26-.25.68 0 .94.68.7 1.02 1.62 1.02 2.54 0 .92-.34 1.83-1.02 2.54-.25.26-.25.68 0 .94a.651.651 0 00.92 0c.93-.96 1.4-2.22 1.4-3.48A5.048 5.048 0 0014.59.53zM8.02 6.92c-.41 0-.83-.1-1.2-.3l-3.15 8.37h1.49l.86-1h4l.84 1h1.49L9.21 6.62c-.38.2-.78.3-1.19.3zm-.01.48L9.02 11h-2l.99-3.6zm-1.99 5.59l1-1h2l1 1h-4zm5.19-11.1c-.25.25-.25.67 0 .92.32.33.48.76.48 1.19 0 .43-.16.86-.48 1.19-.25.26-.25.67 0 .92a.63.63 0 00.9 0c.57-.58.85-1.35.85-2.11 0-.76-.28-1.53-.85-2.11a.634.634 0 00-.9 0z" + }, + "children": [] + }], + "attribs": {} +}; +exports.radioTower = radioTower; +var reply = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M6 3.5c3.92.44 8 3.125 8 10-2.312-5.062-4.75-6-8-6V11L.5 5.5 6 0v3.5z" + }, + "children": [] + }], + "attribs": {} +}; +exports.reply = reply; +var repoClone = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M15 0H9v7c0 .55.45 1 1 1h1v1h1V8h3c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-4 7h-1V6h1v1zm4 0h-3V6h3v1zm0-2h-4V1h4v4zM4 5H3V4h1v1zm0-2H3V2h1v1zM2 1h6V0H1C.45 0 0 .45 0 1v12c0 .55.45 1 1 1h2v2l1.5-1.5L6 16v-2h5c.55 0 1-.45 1-1v-3H2V1zm9 10v2H6v-1H3v1H1v-2h10zM3 8h1v1H3V8zm1-1H3V6h1v1z" + }, + "children": [] + }], + "attribs": {} +}; +exports.repoClone = repoClone; +var repoForcePush = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M10 9H8v7H6V9H4l2.25-3H4l3-4 3 4H7.75L10 9zm1-9H1C.45 0 0 .45 0 1v12c0 .55.45 1 1 1h4v-1H1v-2h4v-1H2V1h9v9H9v1h2v2H9v1h2c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1z" + }, + "children": [] + }], + "attribs": {} +}; +exports.repoForcePush = repoForcePush; +var repoForked = { + "viewBox": "0 0 10 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M8 1a1.993 1.993 0 00-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 002 1a1.993 1.993 0 00-1 3.72V6.5l3 3v1.78A1.993 1.993 0 005 15a1.993 1.993 0 001-3.72V9.5l3-3V4.72A1.993 1.993 0 008 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z" + }, + "children": [] + }], + "attribs": {} +}; +exports.repoForked = repoForked; +var repoPull = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M13 8V6H7V4h6V2l3 3-3 3zM4 2H3v1h1V2zm7 5h1v6c0 .55-.45 1-1 1H6v2l-1.5-1.5L3 16v-2H1c-.55 0-1-.45-1-1V1c0-.55.45-1 1-1h10c.55 0 1 .45 1 1v2h-1V1H2v9h9V7zm0 4H1v2h2v-1h3v1h5v-2zM4 6H3v1h1V6zm0-2H3v1h1V4zM3 9h1V8H3v1z" + }, + "children": [] + }], + "attribs": {} +}; +exports.repoPull = repoPull; +var repoPush = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M4 3H3V2h1v1zM3 5h1V4H3v1zm4 0L4 9h2v7h2V9h2L7 5zm4-5H1C.45 0 0 .45 0 1v12c0 .55.45 1 1 1h4v-1H1v-2h4v-1H2V1h9.02L11 10H9v1h2v2H9v1h2c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1z" + }, + "children": [] + }], + "attribs": {} +}; +exports.repoPush = repoPush; +var repoTemplatePrivate = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M12 6c0-.55-.45-1-1-1h-1V4c0-2.2-1.8-4-4-4S2 1.8 2 4v1H1c-.55 0-1 .45-1 1v7c0 .55.45 1 1 1h5v-1H2V6h9v2h1V6zM8.21 5V4c0-1.22-.98-2.2-2.2-2.2-1.22 0-2.2.98-2.2 2.2v1h4.4zM12 12h2v2h-2v2h-2v-2H8v-2h2v-2h2v2zm-9 0h1v-1H3v1zm0-5h1v1H3V7zm1 2H3v1h1V9z" + }, + "children": [] + }], + "attribs": {} +}; +exports.repoTemplatePrivate = repoTemplatePrivate; +var repoTemplate = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M12 8V1c0-.55-.45-1-1-1H1C.45 0 0 .45 0 1v12c0 .55.45 1 1 1h2v2l1.5-1.5L6 16v-4H3v1H1v-2h7v-1H2V1h9v7h1zM4 2H3v1h1V2zM3 4h1v1H3V4zm1 2H3v1h1V6zm0 3H3V8h1v1zm6 3H8v2h2v2h2v-2h2v-2h-2v-2h-2v2z" + }, + "children": [] + }], + "attribs": {} +}; +exports.repoTemplate = repoTemplate; +var repo = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M4 9H3V8h1v1zm0-3H3v1h1V6zm0-2H3v1h1V4zm0-2H3v1h1V2zm8-1v12c0 .55-.45 1-1 1H6v2l-1.5-1.5L3 16v-2H1c-.55 0-1-.45-1-1V1c0-.55.45-1 1-1h10c.55 0 1 .45 1 1zm-1 10H1v2h2v-1h3v1h5v-2zm0-10H2v9h9V1z" + }, + "children": [] + }], + "attribs": {} +}; +exports.repo = repo; +var report = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M0 2a1 1 0 011-1h14a1 1 0 011 1v9a1 1 0 01-1 1H7l-4 4v-4H1a1 1 0 01-1-1V2zm1 0h14v9H6.5L4 13.5V11H1V2zm6 6h2v2H7V8zm0-5h2v4H7V3z" + }, + "children": [] + }], + "attribs": {} +}; +exports.report = report; +var requestChanges = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M0 1a1 1 0 011-1h14a1 1 0 011 1v10a1 1 0 01-1 1H7.5L4 15.5V12H1a1 1 0 01-1-1V1zm1 0v10h4v2l2-2h8V1H1zm7.5 3h2v1h-2v2h-1V5h-2V4h2V2h1v2zm2 5h-5V8h5v1z" + }, + "children": [] + }], + "attribs": {} +}; +exports.requestChanges = requestChanges; +var rocket = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M12.17 3.83c-.27-.27-.47-.55-.63-.88-.16-.31-.27-.66-.34-1.02-.58.33-1.16.7-1.73 1.13-.58.44-1.14.94-1.69 1.48-.7.7-1.33 1.81-1.78 2.45H3L0 10h3l2-2c-.34.77-1.02 2.98-1 3l1 1c.02.02 2.23-.64 3-1l-2 2v3l3-3v-3c.64-.45 1.75-1.09 2.45-1.78.55-.55 1.05-1.13 1.47-1.7.44-.58.81-1.16 1.14-1.72-.36-.08-.7-.19-1.03-.34a3.39 3.39 0 01-.86-.63zM16 0s-.09.38-.3 1.06c-.2.7-.55 1.58-1.06 2.66-.7-.08-1.27-.33-1.66-.72-.39-.39-.63-.94-.7-1.64C13.36.84 14.23.48 14.92.28 15.62.08 16 0 16 0z" + }, + "children": [] + }], + "attribs": {} +}; +exports.rocket = rocket; +var rss = { + "viewBox": "0 0 10 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M2 13H0v-2c1.11 0 2 .89 2 2zM0 3v1a9 9 0 019 9h1C10 7.48 5.52 3 0 3zm0 4v1c2.75 0 5 2.25 5 5h1c0-3.31-2.69-6-6-6z" + }, + "children": [] + }], + "attribs": {} +}; +exports.rss = rss; +var ruby = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M13 6l-5 5V4h3l2 2zm3 0l-8 8-8-8 4-4h8l4 4zm-8 6.5L14.5 6l-3-3h-7l-3 3L8 12.5z" + }, + "children": [] + }], + "attribs": {} +}; +exports.ruby = ruby; +var saved = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M12 0H4c-.73 0-1 .27-1 1v15l5-3.09L13 16V1c0-.73-.27-1-1-1z" + }, + "children": [] + }], + "attribs": {} +}; +exports.saved = saved; +var screenFull = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M13 10h1v3c0 .547-.453 1-1 1h-3v-1h3v-3zM1 10H0v3c0 .547.453 1 1 1h3v-1H1v-3zm0-7h3V2H1c-.547 0-1 .453-1 1v3h1V3zm1 1h10v8H2V4zm2 6h6V6H4v4zm6-8v1h3v3h1V3c0-.547-.453-1-1-1h-3z" + }, + "children": [] + }], + "attribs": {} +}; +exports.screenFull = screenFull; +var screenNormal = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M2 4H0V3h2V1h1v2c0 .547-.453 1-1 1zm0 8H0v1h2v2h1v-2c0-.547-.453-1-1-1zm9-2c0 .547-.453 1-1 1H4c-.547 0-1-.453-1-1V6c0-.547.453-1 1-1h6c.547 0 1 .453 1 1v4zM9 7H5v2h4V7zm2 6v2h1v-2h2v-1h-2c-.547 0-1 .453-1 1zm1-10V1h-1v2c0 .547.453 1 1 1h2V3h-2z" + }, + "children": [] + }], + "attribs": {} +}; +exports.screenNormal = screenNormal; +var search = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M15.7 13.3l-3.81-3.83A5.93 5.93 0 0013 6c0-3.31-2.69-6-6-6S1 2.69 1 6s2.69 6 6 6c1.3 0 2.48-.41 3.47-1.11l3.83 3.81c.19.2.45.3.7.3.25 0 .52-.09.7-.3a.996.996 0 000-1.41v.01zM7 10.7c-2.59 0-4.7-2.11-4.7-4.7 0-2.59 2.11-4.7 4.7-4.7 2.59 0 4.7 2.11 4.7 4.7 0 2.59-2.11 4.7-4.7 4.7z" + }, + "children": [] + }], + "attribs": {} +}; +exports.search = search; +var server = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M11 6H1c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h10c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1zM2 9H1V7h1v2zm2 0H3V7h1v2zm2 0H5V7h1v2zm2 0H7V7h1v2zm3-8H1c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h10c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zM2 4H1V2h1v2zm2 0H3V2h1v2zm2 0H5V2h1v2zm2 0H7V2h1v2zm3-1h-1V2h1v1zm0 8H1c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h10c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1zm-9 3H1v-2h1v2zm2 0H3v-2h1v2zm2 0H5v-2h1v2zm2 0H7v-2h1v2z" + }, + "children": [] + }], + "attribs": {} +}; +exports.server = server; +var settings = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M4 7H3V2h1v5zm-1 7h1v-3H3v3zm5 0h1V8H8v6zm5 0h1v-2h-1v2zm1-12h-1v6h1V2zM9 2H8v2h1V2zM5 8H2c-.55 0-1 .45-1 1s.45 1 1 1h3c.55 0 1-.45 1-1s-.45-1-1-1zm5-3H7c-.55 0-1 .45-1 1s.45 1 1 1h3c.55 0 1-.45 1-1s-.45-1-1-1zm5 4h-3c-.55 0-1 .45-1 1s.45 1 1 1h3c.55 0 1-.45 1-1s-.45-1-1-1z" + }, + "children": [] + }], + "attribs": {} +}; +exports.settings = settings; +var shieldCheck = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "d": "M6.5 0L0 1.875v5.644C0 11.897 4.93 15 6.5 15c.741 0 2.232-.692 3.6-1.884l-.713-.61C8.275 13.453 7.099 14 6.5 14 5.172 14 1 11.31 1 7.516V2.625L6.5 1 12 2.625v4.891c0 .128-.005.255-.014.38L13 6.713V1.875L6.5 0zm5 10l-2-1.5L8 10l3.5 3L16 8l-1.5-1.5-3 3.5zM2 3.375L6.5 2v11C5.414 13 2 10.724 2 7.514V3.375z" + }, + "children": [] + }], + "attribs": {} +}; +exports.shieldCheck = shieldCheck; +var shieldLock = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M7 0L0 2v6.02C0 12.69 5.31 16 7 16c1.69 0 7-3.31 7-7.98V2L7 0zM5 11l1.14-2.8a.568.568 0 00-.25-.59C5.33 7.25 5 6.66 5 6c0-1.09.89-2 1.98-2C8.06 4 9 4.91 9 6c0 .66-.33 1.25-.89 1.61-.19.13-.3.36-.25.59L9 11H5z" + }, + "children": [] + }], + "attribs": {} +}; +exports.shieldLock = shieldLock; +var shieldX = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "d": "M6.5 0L0 1.875v5.644C0 11.897 4.93 15 6.5 15c.63 0 1.8-.5 2.976-1.38l-.663-.663C7.889 13.625 6.996 14 6.5 14 5.172 14 1 11.31 1 7.516V2.625L6.5 1 12 2.625v4.23l.48.48.52-.52v-4.94L6.5 0zm5.98 8.75L10.73 7 9.25 8.48 11 10.23l-1.75 1.75 1.48 1.48 1.75-1.75 1.75 1.75 1.48-1.48-1.75-1.75 1.75-1.75L14.23 7l-1.75 1.75zM2 3.375L6.5 2v11C5.414 13 2 10.724 2 7.514V3.375z" + }, + "children": [] + }], + "attribs": {} +}; +exports.shieldX = shieldX; +var shield = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M0 2l7-2 7 2v6.02C14 12.69 8.69 16 7 16c-1.69 0-7-3.31-7-7.98V2zm1 .75L7 1l6 1.75v5.268C13 12.104 8.449 15 7 15c-1.449 0-6-2.896-6-6.982V2.75zm1 .75L7 2v12c-1.207 0-5-2.482-5-5.985V3.5z" + }, + "children": [] + }], + "attribs": {} +}; +exports.shield = shield; +var signIn = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M7 6.75V12h4V8h1v4c0 .55-.45 1-1 1H7v3l-5.45-2.72c-.33-.17-.55-.52-.55-.91V1c0-.55.45-1 1-1h9c.55 0 1 .45 1 1v3h-1V1H3l4 2v2.25L10 3v2h4v2h-4v2L7 6.75z" + }, + "children": [] + }], + "attribs": {} +}; +exports.signIn = signIn; +var signOut = { + "viewBox": "0 0 16 17", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M12 9V7H8V5h4V3l4 3-4 3zm-2 3H6V3L2 1h8v3h1V1c0-.55-.45-1-1-1H1C.45 0 0 .45 0 1v11.38c0 .39.22.73.55.91L6 16.01V13h4c.55 0 1-.45 1-1V8h-1v4z" + }, + "children": [] + }], + "attribs": {} +}; +exports.signOut = signOut; +var skip = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M5.79 11.624l-1.326-.088-.088-1.326 5.834-5.834 1.326.088.088 1.326-5.834 5.834zM8 15A7 7 0 108 1a7 7 0 000 14zm5.5-7a5.5 5.5 0 11-11 0 5.5 5.5 0 0111 0z" + }, + "children": [] + }], + "attribs": {} +}; +exports.skip = skip; +var smiley = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M8 0C3.58 0 0 3.58 0 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm4.81 12.81a6.72 6.72 0 01-2.17 1.45c-.83.36-1.72.53-2.64.53-.92 0-1.81-.17-2.64-.53-.81-.34-1.55-.83-2.17-1.45a6.773 6.773 0 01-1.45-2.17A6.59 6.59 0 011.21 8c0-.92.17-1.81.53-2.64.34-.81.83-1.55 1.45-2.17.62-.62 1.36-1.11 2.17-1.45A6.59 6.59 0 018 1.21c.92 0 1.81.17 2.64.53.81.34 1.55.83 2.17 1.45.62.62 1.11 1.36 1.45 2.17.36.83.53 1.72.53 2.64 0 .92-.17 1.81-.53 2.64-.34.81-.83 1.55-1.45 2.17zM4 6.8v-.59c0-.66.53-1.19 1.2-1.19h.59c.66 0 1.19.53 1.19 1.19v.59c0 .67-.53 1.2-1.19 1.2H5.2C4.53 8 4 7.47 4 6.8zm5 0v-.59c0-.66.53-1.19 1.2-1.19h.59c.66 0 1.19.53 1.19 1.19v.59c0 .67-.53 1.2-1.19 1.2h-.59C9.53 8 9 7.47 9 6.8zm4 3.2c-.72 1.88-2.91 3-5 3s-4.28-1.13-5-3c-.14-.39.23-1 .66-1h8.59c.41 0 .89.61.75 1z" + }, + "children": [] + }], + "attribs": {} +}; +exports.smiley = smiley; +var squirrel = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M12 1C9.79 1 8 2.31 8 3.92c0 1.94.5 3.03 0 6.08 0-4.5-2.77-6.34-4-6.34.05-.5-.48-.66-.48-.66s-.22.11-.3.34c-.27-.31-.56-.27-.56-.27l-.13.58S.7 4.29.68 6.87c.2.33 1.53.6 2.47.43.89.05.67.79.47.99C2.78 9.13 2 8 1 8S0 9 1 9s1 1 3 1c-3.09 1.2 0 4 0 4H3c-1 0-1 1-1 1h6c3 0 5-1 5-3.47 0-.85-.43-1.79-1-2.53-1.11-1.46.23-2.68 1-2 .77.68 3 1 3-2 0-2.21-1.79-4-4-4zM2.5 6c-.28 0-.5-.22-.5-.5s.22-.5.5-.5.5.22.5.5-.22.5-.5.5z" + }, + "children": [] + }], + "attribs": {} +}; +exports.squirrel = squirrel; +var star = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z" + }, + "children": [] + }], + "attribs": {} +}; +exports.star = star; +var stop = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M10 1H4L0 5v6l4 4h6l4-4V5l-4-4zm3 9.5L9.5 14h-5L1 10.5v-5L4.5 2h5L13 5.5v5zM6 4h2v5H6V4zm0 6h2v2H6v-2z" + }, + "children": [] + }], + "attribs": {} +}; +exports.stop = stop; +var sync = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M10.24 7.4a4.15 4.15 0 01-1.2 3.6 4.346 4.346 0 01-5.41.54L4.8 10.4.5 9.8l.6 4.2 1.31-1.26c2.36 1.74 5.7 1.57 7.84-.54a5.876 5.876 0 001.74-4.46l-1.75-.34zM2.96 5a4.346 4.346 0 015.41-.54L7.2 5.6l4.3.6-.6-4.2-1.31 1.26c-2.36-1.74-5.7-1.57-7.85.54C.5 5.03-.06 6.65.01 8.26l1.75.35A4.17 4.17 0 012.96 5z" + }, + "children": [] + }], + "attribs": {} +}; +exports.sync = sync; +var tag = { + "viewBox": "0 0 15 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M7.73 1.73C7.26 1.26 6.62 1 5.96 1H3.5C2.13 1 1 2.13 1 3.5v2.47c0 .66.27 1.3.73 1.77l6.06 6.06c.39.39 1.02.39 1.41 0l4.59-4.59a.996.996 0 000-1.41L7.73 1.73zM2.38 7.09c-.31-.3-.47-.7-.47-1.13V3.5c0-.88.72-1.59 1.59-1.59h2.47c.42 0 .83.16 1.13.47l6.14 6.13-4.73 4.73-6.13-6.15zM3.01 3h2v2H3V3h.01z" + }, + "children": [] + }], + "attribs": {} +}; +exports.tag = tag; +var tasklist = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M15.41 9H7.59C7 9 7 8.59 7 8c0-.59 0-1 .59-1h7.81c.59 0 .59.41.59 1 0 .59 0 1-.59 1h.01zM9.59 4C9 4 9 3.59 9 3c0-.59 0-1 .59-1h5.81c.59 0 .59.41.59 1 0 .59 0 1-.59 1H9.59zM0 3.91l1.41-1.3L3 4.2 7.09 0 8.5 1.41 3 6.91l-3-3zM7.59 12h7.81c.59 0 .59.41.59 1 0 .59 0 1-.59 1H7.59C7 14 7 13.59 7 13c0-.59 0-1 .59-1z" + }, + "children": [] + }], + "attribs": {} +}; +exports.tasklist = tasklist; +var telescope = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M8 9l3 6h-1l-2-4v5H7v-6l-2 5H4l2-5 2-1zM7 0H6v1h1V0zM5 3H4v1h1V3zM2 1H1v1h1V1zM.63 9a.52.52 0 00-.16.67l.55.92c.13.23.41.31.64.2l1.39-.66-1.16-2-1.27.86.01.01zm7.89-5.39l-5.8 3.95L3.95 9.7l6.33-3.03-1.77-3.06h.01zm4.22 1.28l-1.47-2.52a.51.51 0 00-.72-.17l-1.2.83 1.84 3.2 1.33-.64c.27-.13.36-.44.22-.7z" + }, + "children": [] + }], + "attribs": {} +}; +exports.telescope = telescope; +var terminal = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M7 10h4v1H7v-1zm-3 1l3-3-3-3-.75.75L5.5 8l-2.25 2.25L4 11zm10-8v10c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V3c0-.55.45-1 1-1h12c.55 0 1 .45 1 1zm-1 0H1v10h12V3z" + }, + "children": [] + }], + "attribs": {} +}; +exports.terminal = terminal; +var textSize = { + "viewBox": "0 0 18 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M13.62 9.08L12.1 3.66h-.06l-1.5 5.42h3.08zM5.7 10.13S4.68 6.52 4.53 6.02h-.08l-1.13 4.11H5.7zM17.31 14h-2.25l-.95-3.25h-4.07L9.09 14H6.84l-.69-2.33H2.87L2.17 14H0l3.3-9.59h2.5l2.17 6.34L10.86 2h2.52l3.94 12h-.01z" + }, + "children": [] + }], + "attribs": {} +}; +exports.textSize = textSize; +var threeBars = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M11.41 9H.59C0 9 0 8.59 0 8c0-.59 0-1 .59-1H11.4c.59 0 .59.41.59 1 0 .59 0 1-.59 1h.01zm0-4H.59C0 5 0 4.59 0 4c0-.59 0-1 .59-1H11.4c.59 0 .59.41.59 1 0 .59 0 1-.59 1h.01zM.59 11H11.4c.59 0 .59.41.59 1 0 .59 0 1-.59 1H.59C0 13 0 12.59 0 12c0-.59 0-1 .59-1z" + }, + "children": [] + }], + "attribs": {} +}; +exports.threeBars = threeBars; +var thumbsdown = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M15.98 7.83l-.97-5.95C14.84.5 13.13 0 12 0H5.69c-.2 0-.38.05-.53.14L3.72 1H2C.94 1 0 1.94 0 3v4c0 1.06.94 2.02 2 2h2c.91 0 1.39.45 2.39 1.55.91 1 .88 1.8.63 3.27-.08.5.06 1 .42 1.42.39.47.98.76 1.56.76 1.83 0 3-3.71 3-5.01l-.02-.98h2.04c1.16 0 1.95-.8 1.98-1.97 0-.11-.02-.21-.02-.21zm-1.97 1.19h-1.99c-.7 0-1.03.28-1.03.97l.03 1.03c0 1.27-1.17 4-2 4-.5 0-1.08-.5-1-1 .25-1.58.34-2.78-.89-4.14C6.11 8.75 5.36 8 4 8V2l1.67-1H12c.73 0 1.95.31 2 1l.02.02 1 6c-.03.64-.38 1-1 1h-.01z" + }, + "children": [] + }], + "attribs": {} +}; +exports.thumbsdown = thumbsdown; +var thumbsup = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M15.98 8.17l-.97 5.95C14.84 15.5 13.13 16 12 16H5.69c-.2 0-.38-.05-.53-.14L3.72 15H2c-1.06 0-2-.94-2-2V9c0-1.06.94-2.02 2-2h2c.91 0 1.39-.45 2.39-1.55.91-1 .88-1.8.63-3.27-.08-.5.06-1 .42-1.42C7.83.29 8.42 0 9 0c1.83 0 3 3.71 3 5.01l-.02.98h2.04c1.16 0 1.95.8 1.98 1.97 0 .11-.02.21-.02.21zm-1.97-1.19h-1.99c-.7 0-1.03-.28-1.03-.97l.03-1.03c0-1.27-1.17-4-2-4-.5 0-1.08.5-1 1 .25 1.58.34 2.78-.89 4.14C6.11 7.25 5.36 8 4 8v6l1.67 1H12c.73 0 1.95-.31 2-1l.02-.02 1-6c-.03-.64-.38-1-1-1h-.01z" + }, + "children": [] + }], + "attribs": {} +}; +exports.thumbsup = thumbsup; +var tools = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M4.48 7.27c.26.26 1.28 1.33 1.28 1.33l.56-.58-.88-.91 1.69-1.8s-.76-.74-.43-.45c.32-1.19.03-2.51-.87-3.44C4.93.5 3.66.2 2.52.51l1.93 2-.51 1.96-1.89.52-1.93-2C-.19 4.17.1 5.48 1 6.4c.94.98 2.29 1.26 3.48.87zm6.44 1.94l-2.33 2.3 3.84 3.98c.31.33.73.49 1.14.49.41 0 .82-.16 1.14-.49.63-.65.63-1.7 0-2.35l-3.79-3.93zM16 2.53L13.55 0 6.33 7.46l.88.91-4.31 4.46-.99.53-1.39 2.27.35.37 2.2-1.44.51-1.02L7.9 9.08l.88.91L16 2.53z" + }, + "children": [] + }], + "attribs": {} +}; +exports.tools = tools; +var trashcan = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M11 2H9c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1H2c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1v9c0 .55.45 1 1 1h7c.55 0 1-.45 1-1V5c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm-1 12H3V5h1v8h1V5h1v8h1V5h1v8h1V5h1v9zm1-10H2V3h9v1z" + }, + "children": [] + }], + "attribs": {} +}; +exports.trashcan = trashcan; +var triangleDown = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M0 5l6 6 6-6H0z" + }, + "children": [] + }], + "attribs": {} +}; +exports.triangleDown = triangleDown; +var triangleLeft = { + "viewBox": "0 0 6 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M6 2L0 8l6 6V2z" + }, + "children": [] + }], + "attribs": {} +}; +exports.triangleLeft = triangleLeft; +var triangleRight = { + "viewBox": "0 0 6 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M0 14l6-6-6-6v12z" + }, + "children": [] + }], + "attribs": {} +}; +exports.triangleRight = triangleRight; +var triangleUp = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M12 11L6 5l-6 6h12z" + }, + "children": [] + }], + "attribs": {} +}; +exports.triangleUp = triangleUp; +var unfold = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M11.5 7.5L14 10c0 .55-.45 1-1 1H9v-1h3.5l-2-2h-7l-2 2H5v1H1c-.55 0-1-.45-1-1l2.5-2.5L0 5c0-.55.45-1 1-1h4v1H1.5l2 2h7l2-2H9V4h4c.55 0 1 .45 1 1l-2.5 2.5zM6 6h2V3h2L7 0 4 3h2v3zm2 3H6v3H4l3 3 3-3H8V9z" + }, + "children": [] + }], + "attribs": {} +}; +exports.unfold = unfold; +var unmute = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M12 8.02c0 1.09-.45 2.09-1.17 2.83l-.67-.67c.55-.56.89-1.31.89-2.16 0-.85-.34-1.61-.89-2.16l.67-.67A3.99 3.99 0 0112 8.02zM7.72 2.28L4 6H2c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h2l3.72 3.72c.47.47 1.28.14 1.28-.53V2.81c0-.67-.81-1-1.28-.53zm5.94.08l-.67.67a6.996 6.996 0 012.06 4.98c0 1.94-.78 3.7-2.06 4.98l.67.67A7.973 7.973 0 0016 8c0-2.22-.89-4.22-2.34-5.66v.02zm-1.41 1.41l-.69.67a5.05 5.05 0 011.48 3.58c0 1.39-.56 2.66-1.48 3.56l.69.67A5.971 5.971 0 0014 8.02c0-1.65-.67-3.16-1.75-4.25z" + }, + "children": [] + }], + "attribs": {} +}; +exports.unmute = unmute; +var unsaved = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 0H4c-.73 0-1 .27-1 1v1.982l10 5.774V1c0-.73-.27-1-1-1zm1 12.203l1.606.928.75-1.3-13.856-8-.75 1.3L3 6.43V16l5-3.09L13 16v-3.797z" + }, + "children": [] + }], + "attribs": {} +}; +exports.unsaved = unsaved; +var unverified = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M15.67 7.066l-1.08-1.34a1.5 1.5 0 01-.309-.77l-.19-1.698a1.51 1.51 0 00-1.329-1.33l-1.699-.19c-.3-.03-.56-.159-.78-.329L8.945.33a1.504 1.504 0 00-1.878 0l-1.34 1.08a1.5 1.5 0 01-.77.31l-1.698.19c-.7.08-1.25.63-1.33 1.329l-.19 1.699c-.03.3-.159.56-.329.78L.33 7.055a1.504 1.504 0 000 1.878l1.08 1.34c.17.22.28.48.31.77l.19 1.698c.08.7.63 1.25 1.329 1.33l1.699.19c.3.03.56.159.78.329l1.339 1.08c.55.439 1.329.439 1.878 0l1.34-1.08c.22-.17.48-.28.77-.31l1.698-.19c.7-.08 1.25-.63 1.33-1.329l.19-1.699c.03-.3.159-.56.329-.78l1.08-1.339a1.504 1.504 0 000-1.878zM9 11.5c0 .28-.22.5-.5.5h-1c-.27 0-.5-.22-.5-.5v-1c0-.28.23-.5.5-.5h1c.28 0 .5.22.5.5v1zm1.56-4.89c-.06.17-.17.33-.3.47-.13.16-.14.19-.33.38-.16.17-.31.3-.52.45-.11.09-.2.19-.28.27-.08.08-.14.17-.19.27-.05.1-.08.19-.11.3-.03.11-.03.13-.03.25H7.13c0-.22 0-.31.03-.48.03-.19.08-.36.14-.52.06-.14.14-.28.25-.42.11-.13.23-.25.41-.38.27-.19.36-.3.48-.52.12-.22.2-.38.2-.59 0-.27-.06-.45-.2-.58-.13-.13-.31-.19-.58-.19-.09 0-.19.02-.3.05-.11.03-.17.09-.25.16-.08.07-.14.11-.2.2a.41.41 0 00-.09.28h-2c0-.38.13-.56.27-.83.16-.27.36-.5.61-.67.25-.17.55-.3.88-.38.33-.08.7-.13 1.09-.13.44 0 .83.05 1.17.13.34.09.63.22.88.39.23.17.41.38.55.63.13.25.19.55.19.88 0 .22 0 .42-.08.59l-.02-.01z" + }, + "children": [] + }], + "attribs": {} +}; +exports.unverified = unverified; +var verified = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M15.67 7.066l-1.08-1.34a1.5 1.5 0 01-.309-.77l-.19-1.698a1.51 1.51 0 00-1.329-1.33l-1.699-.19c-.3-.03-.56-.159-.78-.329L8.945.33a1.504 1.504 0 00-1.878 0l-1.34 1.08a1.5 1.5 0 01-.77.31l-1.698.19c-.7.08-1.25.63-1.33 1.329l-.19 1.699c-.03.3-.159.56-.329.78L.33 7.055a1.504 1.504 0 000 1.878l1.08 1.34c.17.22.28.48.31.77l.19 1.698c.08.7.63 1.25 1.329 1.33l1.699.19c.3.03.56.159.78.329l1.339 1.08c.55.439 1.329.439 1.878 0l1.34-1.08c.22-.17.48-.28.77-.31l1.698-.19c.7-.08 1.25-.63 1.33-1.329l.19-1.699c.03-.3.159-.56.329-.78l1.08-1.339a1.504 1.504 0 000-1.878zM6.5 12.01L3 8.51l1.5-1.5 2 2 5-5L13 5.56l-6.5 6.45z" + }, + "children": [] + }], + "attribs": {} +}; +exports.verified = verified; +var versions = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M13 3H7c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1zm-1 8H8V5h4v6zM4 4h1v1H4v6h1v1H4c-.55 0-1-.45-1-1V5c0-.55.45-1 1-1zM1 5h1v1H1v4h1v1H1c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1z" + }, + "children": [] + }], + "attribs": {} +}; +exports.versions = versions; +var watch = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M6 8h2v1H5V5h1v3zm6 0c0 2.22-1.2 4.16-3 5.19V15c0 .55-.45 1-1 1H4c-.55 0-1-.45-1-1v-1.81C1.2 12.16 0 10.22 0 8s1.2-4.16 3-5.19V1c0-.55.45-1 1-1h4c.55 0 1 .45 1 1v1.81c1.8 1.03 3 2.97 3 5.19zm-1 0c0-2.77-2.23-5-5-5S1 5.23 1 8s2.23 5 5 5 5-2.23 5-5z" + }, + "children": [] + }], + "attribs": {} +}; +exports.watch = watch; +var workflowAll = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M10 8A5 5 0 110 8a5 5 0 0110 0zM3.5 5.5l4 2.5-4 2.5v-5zm3.75 7.444a5.001 5.001 0 000-9.888 5 5 0 110 9.888zm3 0a5.001 5.001 0 000-9.888 5 5 0 110 9.888z" + }, + "children": [] + }], + "attribs": {} +}; +exports.workflowAll = workflowAll; +var workflow = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M3 4.949a2.5 2.5 0 10-1 0v8.049c0 .547.453 1 1 1h2.05a2.5 2.5 0 004.9 0h1.1a2.5 2.5 0 100-1h-1.1a2.5 2.5 0 00-4.9 0H3v-5h2.05a2.5 2.5 0 004.9 0h1.1a2.5 2.5 0 100-1h-1.1a2.5 2.5 0 00-4.9 0H3v-2.05zm9 2.55a1.5 1.5 0 103 0 1.5 1.5 0 00-3 0zm-3 0a1.5 1.5 0 10-3 0 1.5 1.5 0 003 0zm4.5 7.499a1.5 1.5 0 110-3.001 1.5 1.5 0 010 3zm-6-3a1.5 1.5 0 110 3 1.5 1.5 0 010-3z" + }, + "children": [] + }], + "attribs": {} +}; +exports.workflow = workflow; +var x = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M7.48 8l3.75 3.75-1.48 1.48L6 9.48l-3.75 3.75-1.48-1.48L4.52 8 .77 4.25l1.48-1.48L6 6.52l3.75-3.75 1.48 1.48L7.48 8z" + }, + "children": [] + }], + "attribs": {} +}; +exports.x = x; +var zap = { + "viewBox": "0 0 10 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M10 7H6l3-7-9 9h4l-3 7 9-9z" + }, + "children": [] + }], + "attribs": {} +}; +exports.zap = zap; \ No newline at end of file diff --git a/dist/oct/infinity.js b/dist/oct/infinity.js new file mode 100644 index 000000000..1ede72f24 --- /dev/null +++ b/dist/oct/infinity.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.infinity = void 0; +var infinity = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M4 6a2 2 0 100 4c.137 0 .402-.073.796-.318a7.49 7.49 0 001.138-.908c.285-.27.543-.542.753-.774a14.22 14.22 0 00-.753-.774 7.49 7.49 0 00-1.138-.908C4.402 6.073 4.137 6 4 6zm5.313 2c.21.232.468.504.753.774.37.35.764.676 1.138.908.394.245.659.318.796.318a2 2 0 100-4c-.137 0-.402.073-.796.318a7.483 7.483 0 00-1.138.908c-.285.27-.543.542-.753.774zM8 9.527a15.45 15.45 0 01-.691.7 9.587 9.587 0 01-1.457 1.154C5.34 11.698 4.69 12 4 12a4 4 0 010-8c.691 0 1.34.302 1.852.62.531.33 1.034.754 1.457 1.154.255.24.489.481.691.699.202-.218.436-.458.691-.7a9.587 9.587 0 011.457-1.154C10.66 4.302 11.31 4 12 4a4 4 0 010 8c-.691 0-1.34-.302-1.852-.62a9.464 9.464 0 01-1.457-1.154A14.47 14.47 0 018 9.527z" + }, + "children": [] + }], + "attribs": {} +}; +exports.infinity = infinity; \ No newline at end of file diff --git a/dist/oct/info.js b/dist/oct/info.js new file mode 100644 index 000000000..43d052a39 --- /dev/null +++ b/dist/oct/info.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.info = void 0; +var info = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M6.3 5.69a.942.942 0 01-.28-.7c0-.28.09-.52.28-.7.19-.18.42-.28.7-.28.28 0 .52.09.7.28.18.19.28.42.28.7 0 .28-.09.52-.28.7a1 1 0 01-.7.3c-.28 0-.52-.11-.7-.3zM8 7.99c-.02-.25-.11-.48-.31-.69-.2-.19-.42-.3-.69-.31H6c-.27.02-.48.13-.69.31-.2.2-.3.44-.31.69h1v3c.02.27.11.5.31.69.2.2.42.31.69.31h1c.27 0 .48-.11.69-.31.2-.19.3-.42.31-.69H8V7.98v.01zM7 2.3c-3.14 0-5.7 2.54-5.7 5.68 0 3.14 2.56 5.7 5.7 5.7s5.7-2.55 5.7-5.7c0-3.15-2.56-5.69-5.7-5.69v.01zM7 .98c3.86 0 7 3.14 7 7s-3.14 7-7 7-7-3.12-7-7 3.14-7 7-7z" + }, + "children": [] + }], + "attribs": {} +}; +exports.info = info; \ No newline at end of file diff --git a/dist/oct/internalRepo.js b/dist/oct/internalRepo.js new file mode 100644 index 000000000..97fdaa434 --- /dev/null +++ b/dist/oct/internalRepo.js @@ -0,0 +1,20 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.internalRepo = void 0; +var internalRepo = { + "viewBox": "0 0 13 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "clip-rule": "evenodd", + "d": "M10 0H9v1a1 1 0 00-1 1H7a1 1 0 00-1 1v1H1c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h1v1l1-.5 1 .5v-1h4c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1H7V3h1a1 1 0 001-1h1a1 1 0 001 1h1v13h1V3a1 1 0 00-1-1h-1a1 1 0 00-1-1V0zM8 12H2V5h6v7zm-7 1h1v1H1v-1zm7 0v1H4v-1h4zm3-9h-1v2h1V4zm0 3h-1v2h1V7zm0 3h-1v2h1v-2zm0 3h-1v2h1v-2zm-7-2H3v-1h1v1zm0-5H3v1h1V6zm0 2H3v1h1V8z" + }, + "children": [] + }], + "attribs": {} +}; +exports.internalRepo = internalRepo; \ No newline at end of file diff --git a/dist/oct/issueClosed.js b/dist/oct/issueClosed.js new file mode 100644 index 000000000..bdfcc5f8a --- /dev/null +++ b/dist/oct/issueClosed.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.issueClosed = void 0; +var issueClosed = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M7 10h2v2H7v-2zm2-6H7v5h2V4zm1.5 1.5l-1 1L12 9l4-4.5-1-1L12 7l-1.5-1.5zM8 13.7A5.71 5.71 0 012.3 8c0-3.14 2.56-5.7 5.7-5.7 1.83 0 3.45.88 4.5 2.2l.92-.92A6.947 6.947 0 008 1C4.14 1 1 4.14 1 8s3.14 7 7 7 7-3.14 7-7l-1.52 1.52c-.66 2.41-2.86 4.19-5.48 4.19v-.01z" + }, + "children": [] + }], + "attribs": {} +}; +exports.issueClosed = issueClosed; \ No newline at end of file diff --git a/dist/oct/issueOpened.js b/dist/oct/issueOpened.js new file mode 100644 index 000000000..54eadc9c1 --- /dev/null +++ b/dist/oct/issueOpened.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.issueOpened = void 0; +var issueOpened = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M7 2.3c3.14 0 5.7 2.56 5.7 5.7s-2.56 5.7-5.7 5.7A5.71 5.71 0 011.3 8c0-3.14 2.56-5.7 5.7-5.7zM7 1C3.14 1 0 4.14 0 8s3.14 7 7 7 7-3.14 7-7-3.14-7-7-7zm1 3H6v5h2V4zm0 6H6v2h2v-2z" + }, + "children": [] + }], + "attribs": {} +}; +exports.issueOpened = issueOpened; \ No newline at end of file diff --git a/dist/oct/issueReopened.js b/dist/oct/issueReopened.js new file mode 100644 index 000000000..b19c9131e --- /dev/null +++ b/dist/oct/issueReopened.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.issueReopened = void 0; +var issueReopened = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M8 9H6V4h2v5zm-2 3h2v-2H6v2zm6.33-2H10l1.5 1.5c-1.05 1.33-2.67 2.2-4.5 2.2A5.71 5.71 0 011.3 8c0-.34.03-.67.09-1H.08C.03 7.33 0 7.66 0 8c0 3.86 3.14 7 7 7 2.19 0 4.13-1.02 5.41-2.59L14 14v-4h-1.67zM1.67 6H4L2.5 4.5C3.55 3.17 5.17 2.3 7 2.3c3.14 0 5.7 2.56 5.7 5.7 0 .34-.03.67-.09 1h1.31c.05-.33.08-.66.08-1 0-3.86-3.14-7-7-7-2.19 0-4.13 1.02-5.41 2.59L0 2v4h1.67z" + }, + "children": [] + }], + "attribs": {} +}; +exports.issueReopened = issueReopened; \ No newline at end of file diff --git a/dist/oct/italic.js b/dist/oct/italic.js new file mode 100644 index 000000000..042c342d4 --- /dev/null +++ b/dist/oct/italic.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.italic = void 0; +var italic = { + "viewBox": "0 0 6 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M2.81 5h1.98L3 14H1l1.81-9zm.36-2.7c0-.7.58-1.3 1.33-1.3.56 0 1.13.38 1.13 1.03 0 .75-.59 1.3-1.33 1.3-.58 0-1.13-.38-1.13-1.03z" + }, + "children": [] + }], + "attribs": {} +}; +exports.italic = italic; \ No newline at end of file diff --git a/dist/oct/jersey.js b/dist/oct/jersey.js new file mode 100644 index 000000000..b0ed021ab --- /dev/null +++ b/dist/oct/jersey.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.jersey = void 0; +var jersey = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M4.5 6l-.5.5v5l.5.5h2l.5-.5v-5L6.5 6h-2zM6 11H5V7h1v4zm6.27-7.25C12.05 2.37 11.96 1.12 12 0H9.02c0 .27-.13.48-.39.69-.25.2-.63.3-1.13.3-.5 0-.88-.09-1.13-.3-.23-.2-.36-.42-.36-.69H3c.05 1.13-.03 2.38-.25 3.75C2.55 5.13 1.95 5.88 1 6v9c.02.27.11.48.31.69.2.21.42.3.69.31h11c.27-.02.48-.11.69-.31.21-.2.3-.42.31-.69V6c-.95-.13-1.53-.88-1.75-2.25h.02zM13 15H2V7c.89-.5 1.48-1.25 1.72-2.25S4.03 2.5 4 1h1c-.02.78.16 1.47.52 2.06.36.58 1.02.89 2 .94.98-.02 1.64-.33 2-.94.36-.59.5-1.28.48-2.06h1c.02 1.42.13 2.55.33 3.38.2.81.69 2 1.67 2.63v8V15zM8.5 6l-.5.5v5l.5.5h2l.5-.5v-5l-.5-.5h-2zm1.5 5H9V7h1v4z" + }, + "children": [] + }], + "attribs": {} +}; +exports.jersey = jersey; \ No newline at end of file diff --git a/dist/oct/kebabHorizontal.js b/dist/oct/kebabHorizontal.js new file mode 100644 index 000000000..7e71a968f --- /dev/null +++ b/dist/oct/kebabHorizontal.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.kebabHorizontal = void 0; +var kebabHorizontal = { + "viewBox": "0 0 13 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M1.5 9a1.5 1.5 0 100-3 1.5 1.5 0 000 3zm5 0a1.5 1.5 0 100-3 1.5 1.5 0 000 3zM13 7.5a1.5 1.5 0 11-3 0 1.5 1.5 0 013 0z" + }, + "children": [] + }], + "attribs": {} +}; +exports.kebabHorizontal = kebabHorizontal; \ No newline at end of file diff --git a/dist/oct/kebabVertical.js b/dist/oct/kebabVertical.js new file mode 100644 index 000000000..5f404afd8 --- /dev/null +++ b/dist/oct/kebabVertical.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.kebabVertical = void 0; +var kebabVertical = { + "viewBox": "0 0 3 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M0 2.5a1.5 1.5 0 103 0 1.5 1.5 0 00-3 0zm0 5a1.5 1.5 0 103 0 1.5 1.5 0 00-3 0zM1.5 14a1.5 1.5 0 110-3 1.5 1.5 0 010 3z" + }, + "children": [] + }], + "attribs": {} +}; +exports.kebabVertical = kebabVertical; \ No newline at end of file diff --git a/dist/oct/key.js b/dist/oct/key.js new file mode 100644 index 000000000..6992f4404 --- /dev/null +++ b/dist/oct/key.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.key = void 0; +var key = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M12.83 2.17C12.08 1.42 11.14 1.03 10 1c-1.13.03-2.08.42-2.83 1.17S6.04 3.86 6.01 5c0 .3.03.59.09.89L0 12v1l1 1h2l1-1v-1h1v-1h1v-1h2l1.09-1.11c.3.08.59.11.91.11 1.14-.03 2.08-.42 2.83-1.17S13.97 6.14 14 5c-.03-1.14-.42-2.08-1.17-2.83zM11 5.38c-.77 0-1.38-.61-1.38-1.38 0-.77.61-1.38 1.38-1.38.77 0 1.38.61 1.38 1.38 0 .77-.61 1.38-1.38 1.38z" + }, + "children": [] + }], + "attribs": {} +}; +exports.key = key; \ No newline at end of file diff --git a/dist/oct/keyboard.js b/dist/oct/keyboard.js new file mode 100644 index 000000000..d92cb9c12 --- /dev/null +++ b/dist/oct/keyboard.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.keyboard = void 0; +var keyboard = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M10 5H9V4h1v1zM3 6H2v1h1V6zm5-2H7v1h1V4zM4 4H2v1h2V4zm8 7h2v-1h-2v1zM8 7h1V6H8v1zm-4 3H2v1h2v-1zm8-6h-1v1h1V4zm2 0h-1v1h1V4zm-2 5h2V6h-2v3zm4-6v9c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V3c0-.55.45-1 1-1h14c.55 0 1 .45 1 1zm-1 0H1v9h14V3zM6 7h1V6H6v1zm0-3H5v1h1V4zM4 7h1V6H4v1zm1 4h6v-1H5v1zm5-4h1V6h-1v1zM3 8H2v1h1V8zm5 0v1h1V8H8zM6 8v1h1V8H6zM5 8H4v1h1V8zm5 1h1V8h-1v1z" + }, + "children": [] + }], + "attribs": {} +}; +exports.keyboard = keyboard; \ No newline at end of file diff --git a/dist/oct/law.js b/dist/oct/law.js new file mode 100644 index 000000000..39c1c35bd --- /dev/null +++ b/dist/oct/law.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.law = void 0; +var law = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M7 4c-.83 0-1.5-.67-1.5-1.5S6.17 1 7 1s1.5.67 1.5 1.5S7.83 4 7 4zm7 6c0 1.11-.89 2-2 2h-1c-1.11 0-2-.89-2-2l2-4h-1c-.55 0-1-.45-1-1H8v8c.42 0 1 .45 1 1h1c.42 0 1 .45 1 1H3c0-.55.58-1 1-1h1c0-.55.58-1 1-1h.03L6 5H5c0 .55-.45 1-1 1H3l2 4c0 1.11-.89 2-2 2H2c-1.11 0-2-.89-2-2l2-4H1V5h3c0-.55.45-1 1-1h4c.55 0 1 .45 1 1h3v1h-1l2 4zM2.5 7L1 10h3L2.5 7zM13 10l-1.5-3-1.5 3h3z" + }, + "children": [] + }], + "attribs": {} +}; +exports.law = law; \ No newline at end of file diff --git a/dist/oct/lightBulb.js b/dist/oct/lightBulb.js new file mode 100644 index 000000000..a3f575337 --- /dev/null +++ b/dist/oct/lightBulb.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.lightBulb = void 0; +var lightBulb = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M6.5 0C3.48 0 1 2.19 1 5c0 .92.55 2.25 1 3 1.34 2.25 1.78 2.78 2 4v1h5v-1c.22-1.22.66-1.75 2-4 .45-.75 1-2.08 1-3 0-2.81-2.48-5-5.5-5zm3.64 7.48c-.25.44-.47.8-.67 1.11-.86 1.41-1.25 2.06-1.45 3.23-.02.05-.02.11-.02.17H5c0-.06 0-.13-.02-.17-.2-1.17-.59-1.83-1.45-3.23-.2-.31-.42-.67-.67-1.11C2.44 6.78 2 5.65 2 5c0-2.2 2.02-4 4.5-4 1.22 0 2.36.42 3.22 1.19C10.55 2.94 11 3.94 11 5c0 .66-.44 1.78-.86 2.48zM4 14h5c-.23 1.14-1.3 2-2.5 2s-2.27-.86-2.5-2z" + }, + "children": [] + }], + "attribs": {} +}; +exports.lightBulb = lightBulb; \ No newline at end of file diff --git a/dist/oct/lineArrowDown.js b/dist/oct/lineArrowDown.js new file mode 100644 index 000000000..3cd6db06e --- /dev/null +++ b/dist/oct/lineArrowDown.js @@ -0,0 +1,18 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.lineArrowDown = void 0; +var lineArrowDown = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "d": "M4.5 7.5L3 9l5 5 5-5-1.5-1.5L9 10.179V2H7v8.179L4.5 7.5z" + }, + "children": [] + }], + "attribs": {} +}; +exports.lineArrowDown = lineArrowDown; \ No newline at end of file diff --git a/dist/oct/lineArrowLeft.js b/dist/oct/lineArrowLeft.js new file mode 100644 index 000000000..ba23eb2be --- /dev/null +++ b/dist/oct/lineArrowLeft.js @@ -0,0 +1,18 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.lineArrowLeft = void 0; +var lineArrowLeft = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "d": "M8.5 4.5L7 3 2 8l5 5 1.5-1.5L5.821 9H14V7H5.821L8.5 4.5z" + }, + "children": [] + }], + "attribs": {} +}; +exports.lineArrowLeft = lineArrowLeft; \ No newline at end of file diff --git a/dist/oct/lineArrowRight.js b/dist/oct/lineArrowRight.js new file mode 100644 index 000000000..61fe0fb29 --- /dev/null +++ b/dist/oct/lineArrowRight.js @@ -0,0 +1,18 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.lineArrowRight = void 0; +var lineArrowRight = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "d": "M7.5 11.5L9 13l5-5-5-5-1.5 1.5L10.179 7H2v2h8.179L7.5 11.5z" + }, + "children": [] + }], + "attribs": {} +}; +exports.lineArrowRight = lineArrowRight; \ No newline at end of file diff --git a/dist/oct/lineArrowUp.js b/dist/oct/lineArrowUp.js new file mode 100644 index 000000000..f7f8b0a15 --- /dev/null +++ b/dist/oct/lineArrowUp.js @@ -0,0 +1,18 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.lineArrowUp = void 0; +var lineArrowUp = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "d": "M11.5 8.5L13 7 8 2 3 7l1.5 1.5L7 5.821V14h2V5.821L11.5 8.5z" + }, + "children": [] + }], + "attribs": {} +}; +exports.lineArrowUp = lineArrowUp; \ No newline at end of file diff --git a/dist/oct/link.js b/dist/oct/link.js new file mode 100644 index 000000000..0ee0e245d --- /dev/null +++ b/dist/oct/link.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.link = void 0; +var link = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z" + }, + "children": [] + }], + "attribs": {} +}; +exports.link = link; \ No newline at end of file diff --git a/dist/oct/linkExternal.js b/dist/oct/linkExternal.js new file mode 100644 index 000000000..d1145fb85 --- /dev/null +++ b/dist/oct/linkExternal.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.linkExternal = void 0; +var linkExternal = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M11 10h1v3c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V3c0-.55.45-1 1-1h3v1H1v10h10v-3zM6 2l2.25 2.25L5 7.5 6.5 9l3.25-3.25L12 8V2H6z" + }, + "children": [] + }], + "attribs": {} +}; +exports.linkExternal = linkExternal; \ No newline at end of file diff --git a/dist/oct/listOrdered.js b/dist/oct/listOrdered.js new file mode 100644 index 000000000..7875206d5 --- /dev/null +++ b/dist/oct/listOrdered.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.listOrdered = void 0; +var listOrdered = { + "viewBox": "0 0 13 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M12.01 13c0 .59 0 1-.59 1H4.6c-.59 0-.59-.41-.59-1 0-.59 0-1 .59-1h6.81c.59 0 .59.41.59 1h.01zM4.6 4h6.81C12 4 12 3.59 12 3c0-.59 0-1-.59-1H4.6c-.59 0-.59.41-.59 1 0 .59 0 1 .59 1zm6.81 3H4.6c-.59 0-.59.41-.59 1 0 .59 0 1 .59 1h6.81C12 9 12 8.59 12 8c0-.59 0-1-.59-1zm-9.4-6h-.72c-.3.19-.58.25-1.03.34V2h.75v2.14H.17V5h2.84v-.86h-1V1zm.392 8.12c-.129 0-.592.04-.802.07.53-.56 1.14-1.25 1.14-1.89C2.72 6.52 2.18 6 1.38 6c-.59 0-.97.2-1.38.64l.58.58c.19-.19.38-.38.64-.38.28 0 .48.16.48.52 0 .53-.77 1.2-1.7 2.06V10h3v-.88h-.598zm-.222 3.79v-.03c.44-.19.64-.47.64-.86 0-.7-.56-1.11-1.44-1.11-.48 0-.89.19-1.28.52l.55.64c.25-.2.44-.31.69-.31.27 0 .42.13.42.36 0 .27-.2.44-.86.44v.75c.83 0 .98.17.98.47 0 .25-.23.38-.58.38-.28 0-.56-.14-.81-.38l-.48.66c.3.36.77.56 1.41.56.83 0 1.53-.41 1.53-1.16 0-.5-.31-.81-.77-.94v.01z" + }, + "children": [] + }], + "attribs": {} +}; +exports.listOrdered = listOrdered; \ No newline at end of file diff --git a/dist/oct/listUnordered.js b/dist/oct/listUnordered.js new file mode 100644 index 000000000..fce9b378f --- /dev/null +++ b/dist/oct/listUnordered.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.listUnordered = void 0; +var listUnordered = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M2 13c0 .59 0 1-.59 1H.59C0 14 0 13.59 0 13c0-.59 0-1 .59-1h.81c.59 0 .59.41.59 1H2zm2.59-9h6.81c.59 0 .59-.41.59-1 0-.59 0-1-.59-1H4.59C4 2 4 2.41 4 3c0 .59 0 1 .59 1zM1.41 7H.59C0 7 0 7.41 0 8c0 .59 0 1 .59 1h.81c.59 0 .59-.41.59-1 0-.59 0-1-.59-1h.01zm0-5H.59C0 2 0 2.41 0 3c0 .59 0 1 .59 1h.81c.59 0 .59-.41.59-1 0-.59 0-1-.59-1h.01zm10 5H4.59C4 7 4 7.41 4 8c0 .59 0 1 .59 1h6.81c.59 0 .59-.41.59-1 0-.59 0-1-.59-1h.01zm0 5H4.59C4 12 4 12.41 4 13c0 .59 0 1 .59 1h6.81c.59 0 .59-.41.59-1 0-.59 0-1-.59-1h.01z" + }, + "children": [] + }], + "attribs": {} +}; +exports.listUnordered = listUnordered; \ No newline at end of file diff --git a/dist/oct/location.js b/dist/oct/location.js new file mode 100644 index 000000000..aa98c0680 --- /dev/null +++ b/dist/oct/location.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.location = void 0; +var location = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M6 0C2.69 0 0 2.5 0 5.5 0 10.02 6 16 6 16s6-5.98 6-10.5C12 2.5 9.31 0 6 0zm0 14.55C4.14 12.52 1 8.44 1 5.5 1 3.02 3.25 1 6 1c1.34 0 2.61.48 3.56 1.36.92.86 1.44 1.97 1.44 3.14 0 2.94-3.14 7.02-5 9.05zM8 5.5c0 1.11-.89 2-2 2-1.11 0-2-.89-2-2 0-1.11.89-2 2-2 1.11 0 2 .89 2 2z" + }, + "children": [] + }], + "attribs": {} +}; +exports.location = location; \ No newline at end of file diff --git a/dist/oct/lock.js b/dist/oct/lock.js new file mode 100644 index 000000000..f6f5db0e3 --- /dev/null +++ b/dist/oct/lock.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.lock = void 0; +var lock = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M4 13H3v-1h1v1zm8-6v7c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V7c0-.55.45-1 1-1h1V4c0-2.2 1.8-4 4-4s4 1.8 4 4v2h1c.55 0 1 .45 1 1zM3.8 6h4.41V4c0-1.22-.98-2.2-2.2-2.2-1.22 0-2.2.98-2.2 2.2v2H3.8zM11 7H2v7h9V7zM4 8H3v1h1V8zm0 2H3v1h1v-1z" + }, + "children": [] + }], + "attribs": {} +}; +exports.lock = lock; \ No newline at end of file diff --git a/dist/oct/logoGist.js b/dist/oct/logoGist.js new file mode 100644 index 000000000..3bd859461 --- /dev/null +++ b/dist/oct/logoGist.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.logoGist = void 0; +var logoGist = { + "viewBox": "0 0 25 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M4.7 8.73h2.45v4.02c-.55.27-1.64.34-2.53.34-2.56 0-3.47-2.2-3.47-5.05 0-2.85.91-5.06 3.48-5.06 1.28 0 2.06.23 3.28.73V2.66C7.27 2.33 6.25 2 4.63 2 1.13 2 0 4.69 0 8.03c0 3.34 1.11 6.03 4.63 6.03 1.64 0 2.81-.27 3.59-.64V7.73H4.7v1zm6.39 3.72V6.06h-1.05v6.28c0 1.25.58 1.72 1.72 1.72v-.89c-.48 0-.67-.16-.67-.7v-.02zm.25-8.72c0-.44-.33-.78-.78-.78s-.77.34-.77.78.33.78.77.78.78-.34.78-.78zm4.34 5.69c-1.5-.13-1.78-.48-1.78-1.17 0-.77.33-1.34 1.88-1.34 1.05 0 1.66.16 2.27.36v-.94c-.69-.3-1.52-.39-2.25-.39-2.2 0-2.92 1.2-2.92 2.31 0 1.08.47 1.88 2.73 2.08 1.55.13 1.77.63 1.77 1.34 0 .73-.44 1.42-2.06 1.42-1.11 0-1.86-.19-2.33-.36v.94c.5.2 1.58.39 2.33.39 2.38 0 3.14-1.2 3.14-2.41 0-1.28-.53-2.03-2.75-2.23h-.03zm8.58-2.47v-.86h-2.42v-2.5l-1.08.31v2.11l-1.56.44v.48h1.56v5c0 1.53 1.19 2.13 2.5 2.13.19 0 .52-.02.69-.05v-.89c-.19.03-.41.03-.61.03-.97 0-1.5-.39-1.5-1.34V6.94h2.42v.02-.01z" + }, + "children": [] + }], + "attribs": {} +}; +exports.logoGist = logoGist; \ No newline at end of file diff --git a/dist/oct/logoGithub.js b/dist/oct/logoGithub.js new file mode 100644 index 000000000..8474e7be5 --- /dev/null +++ b/dist/oct/logoGithub.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.logoGithub = void 0; +var logoGithub = { + "viewBox": "0 0 45 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M18.53 12.03h-.02c.009 0 .015.01.024.011h.006l-.01-.01zm.004.011c-.093.001-.327.05-.574.05-.78 0-1.05-.36-1.05-.83V8.13h1.59c.09 0 .16-.08.16-.19v-1.7c0-.09-.08-.17-.16-.17h-1.59V3.96c0-.08-.05-.13-.14-.13h-2.16c-.09 0-.14.05-.14.13v2.17s-1.09.27-1.16.28c-.08.02-.13.09-.13.17v1.36c0 .11.08.19.17.19h1.11v3.28c0 2.44 1.7 2.69 2.86 2.69.53 0 1.17-.17 1.27-.22.06-.02.09-.09.09-.16v-1.5a.177.177 0 00-.146-.18zM42.23 9.84c0-1.81-.73-2.05-1.5-1.97-.6.04-1.08.34-1.08.34v3.52s.49.34 1.22.36c1.03.03 1.36-.34 1.36-2.25zm2.43-.16c0 3.43-1.11 4.41-3.05 4.41-1.64 0-2.52-.83-2.52-.83s-.04.46-.09.52c-.03.06-.08.08-.14.08h-1.48c-.1 0-.19-.08-.19-.17l.02-11.11c0-.09.08-.17.17-.17h2.13c.09 0 .17.08.17.17v3.77s.82-.53 2.02-.53l-.01-.02c1.2 0 2.97.45 2.97 3.88zm-8.72-3.61h-2.1c-.11 0-.17.08-.17.19v5.44s-.55.39-1.3.39-.97-.34-.97-1.09V6.25c0-.09-.08-.17-.17-.17h-2.14c-.09 0-.17.08-.17.17v5.11c0 2.2 1.23 2.75 2.92 2.75 1.39 0 2.52-.77 2.52-.77s.05.39.08.45c.02.05.09.09.16.09h1.34c.11 0 .17-.08.17-.17l.02-7.47c0-.09-.08-.17-.19-.17zm-23.7-.01h-2.13c-.09 0-.17.09-.17.2v7.34c0 .2.13.27.3.27h1.92c.2 0 .25-.09.25-.27V6.23c0-.09-.08-.17-.17-.17zm-1.05-3.38c-.77 0-1.38.61-1.38 1.38 0 .77.61 1.38 1.38 1.38.75 0 1.36-.61 1.36-1.38 0-.77-.61-1.38-1.36-1.38zm16.49-.25h-2.11c-.09 0-.17.08-.17.17v4.09h-3.31V2.6c0-.09-.08-.17-.17-.17h-2.13c-.09 0-.17.08-.17.17v11.11c0 .09.09.17.17.17h2.13c.09 0 .17-.08.17-.17V8.96h3.31l-.02 4.75c0 .09.08.17.17.17h2.13c.09 0 .17-.08.17-.17V2.6c0-.09-.08-.17-.17-.17zM8.81 7.35v5.74c0 .04-.01.11-.06.13 0 0-1.25.89-3.31.89-2.49 0-5.44-.78-5.44-5.92S2.58 1.99 5.1 2c2.18 0 3.06.49 3.2.58.04.05.06.09.06.14L7.94 4.5c0 .09-.09.2-.2.17-.36-.11-.9-.33-2.17-.33-1.47 0-3.05.42-3.05 3.73s1.5 3.7 2.58 3.7c.92 0 1.25-.11 1.25-.11v-2.3H4.88c-.11 0-.19-.08-.19-.17V7.35c0-.09.08-.17.19-.17h3.74c.11 0 .19.08.19.17z" + }, + "children": [] + }], + "attribs": {} +}; +exports.logoGithub = logoGithub; \ No newline at end of file diff --git a/dist/oct/mail.js b/dist/oct/mail.js new file mode 100644 index 000000000..01cd6965d --- /dev/null +++ b/dist/oct/mail.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.mail = void 0; +var mail = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M0 4v8c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1H1c-.55 0-1 .45-1 1zm13 0L7 9 1 4h12zM1 5.5l4 3-4 3v-6zM2 12l3.5-3L7 10.5 8.5 9l3.5 3H2zm11-.5l-4-3 4-3v6z" + }, + "children": [] + }], + "attribs": {} +}; +exports.mail = mail; \ No newline at end of file diff --git a/dist/oct/mailRead.js b/dist/oct/mailRead.js new file mode 100644 index 000000000..4ee4b0191 --- /dev/null +++ b/dist/oct/mailRead.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.mailRead = void 0; +var mailRead = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M6 5H4V4h2v1zm3 1H4v1h5V6zm5-.48V14c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V5.52c0-.33.16-.63.42-.81L2 3.58V3c0-.55.45-1 1-1h1.2L7 0l2.8 2H11c.55 0 1 .45 1 1v.58l1.58 1.13c.27.19.42.48.42.81zM3 7.5L7 10l4-2.5V3H3v4.5zm-2 6l4.5-3-4.5-3v6zm11 .5l-5-3-5 3h10zm1-6.5l-4.5 3 4.5 3v-6z" + }, + "children": [] + }], + "attribs": {} +}; +exports.mailRead = mailRead; \ No newline at end of file diff --git a/dist/oct/mailReply.js b/dist/oct/mailReply.js new file mode 100644 index 000000000..7d2ebd46f --- /dev/null +++ b/dist/oct/mailReply.js @@ -0,0 +1,61 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.mailReply = void 0; +var mailReply = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "title", + "attribs": {}, + "children": [] + }, { + "name": "desc", + "attribs": {}, + "children": [] + }, { + "name": "defs", + "attribs": {}, + "children": [] + }, { + "name": "g", + "attribs": { + "id": "Octicons", + "stroke": "none", + "stroke-width": "1", + "fill": "none", + "fill-rule": "evenodd" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "mail-reply", + "fill": "#000000" + }, + "children": [{ + "name": "g", + "attribs": { + "id": "mail-reply", + "fill": "#000000" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M6,2.5 L0,7 L6,11.5 L6,8.5 C7.73,8.5 11.14,9.45 12,12.88 C12,8.33 8.94,5.83 6,5.5 L6,2.5 L6,2.5 Z", + "id": "Shape" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M6,2.5 L0,7 L6,11.5 L6,8.5 C7.73,8.5 11.14,9.45 12,12.88 C12,8.33 8.94,5.83 6,5.5 L6,2.5 L6,2.5 Z", + "id": "Shape" + }, + "children": [] + }] + }] + }] + }] + }] +}; +exports.mailReply = mailReply; \ No newline at end of file diff --git a/dist/oct/markGithub.js b/dist/oct/markGithub.js new file mode 100644 index 000000000..7f7a2c894 --- /dev/null +++ b/dist/oct/markGithub.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.markGithub = void 0; +var markGithub = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0016 8c0-4.42-3.58-8-8-8z" + }, + "children": [] + }], + "attribs": {} +}; +exports.markGithub = markGithub; \ No newline at end of file diff --git a/dist/oct/markdown.js b/dist/oct/markdown.js new file mode 100644 index 000000000..a821c9f3c --- /dev/null +++ b/dist/oct/markdown.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.markdown = void 0; +var markdown = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M14.85 3H1.15C.52 3 0 3.52 0 4.15v7.69C0 12.48.52 13 1.15 13h13.69c.64 0 1.15-.52 1.15-1.15v-7.7C16 3.52 15.48 3 14.85 3zM9 11H7V8L5.5 9.92 4 8v3H2V5h2l1.5 2L7 5h2v6zm2.99.5L9.5 8H11V5h2v3h1.5l-2.51 3.5z" + }, + "children": [] + }], + "attribs": {} +}; +exports.markdown = markdown; \ No newline at end of file diff --git a/dist/oct/megaphone.js b/dist/oct/megaphone.js new file mode 100644 index 000000000..60530bd93 --- /dev/null +++ b/dist/oct/megaphone.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.megaphone = void 0; +var megaphone = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M10 1c-.17 0-.36.05-.52.14C8.04 2.02 4.5 4.58 3 5c-1.38 0-3 .67-3 2.5S1.63 10 3 10c.3.08.64.23 1 .41V15h2v-3.45c1.34.86 2.69 1.83 3.48 2.31.16.09.34.14.52.14.52 0 1-.42 1-1V2c0-.58-.48-1-1-1zm0 12c-.38-.23-.89-.58-1.5-1-.16-.11-.33-.22-.5-.34V3.31c.16-.11.31-.2.47-.31.61-.41 1.16-.77 1.53-1v11zm2-6h4v1h-4V7zm0 2l4 2v1l-4-2V9zm4-6v1l-4 2V5l4-2z" + }, + "children": [] + }], + "attribs": {} +}; +exports.megaphone = megaphone; \ No newline at end of file diff --git a/dist/oct/mention.js b/dist/oct/mention.js new file mode 100644 index 000000000..375426d38 --- /dev/null +++ b/dist/oct/mention.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.mention = void 0; +var mention = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M6.58 15c1.25 0 2.52-.31 3.56-.94l-.42-.94c-.84.52-1.89.83-3.03.83-3.23 0-5.64-2.08-5.64-5.72 0-4.37 3.23-7.18 6.58-7.18 3.45 0 5.22 2.19 5.22 5.2 0 2.39-1.34 3.86-2.5 3.86-1.05 0-1.36-.73-1.05-2.19l.73-3.75H8.98l-.11.72c-.41-.63-.94-.83-1.56-.83-2.19 0-3.66 2.39-3.66 4.38 0 1.67.94 2.61 2.3 2.61.84 0 1.67-.53 2.3-1.25.11.94.94 1.45 1.98 1.45 1.67 0 3.77-1.67 3.77-5C14 2.61 11.59 0 7.83 0 3.66 0 0 3.33 0 8.33 0 12.71 2.92 15 6.58 15zm-.31-5c-.73 0-1.36-.52-1.36-1.67 0-1.45.94-3.22 2.41-3.22.52 0 .84.2 1.25.83l-.52 3.02c-.63.73-1.25 1.05-1.78 1.05V10z" + }, + "children": [] + }], + "attribs": {} +}; +exports.mention = mention; \ No newline at end of file diff --git a/dist/oct/milestone.js b/dist/oct/milestone.js new file mode 100644 index 000000000..3378f5f3a --- /dev/null +++ b/dist/oct/milestone.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.milestone = void 0; +var milestone = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M8 2H6V0h2v2zm4 5H2c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h10l2 2-2 2zM8 4H6v2h2V4zM6 16h2V8H6v8z" + }, + "children": [] + }], + "attribs": {} +}; +exports.milestone = milestone; \ No newline at end of file diff --git a/dist/oct/mirror.js b/dist/oct/mirror.js new file mode 100644 index 000000000..1d85c6c40 --- /dev/null +++ b/dist/oct/mirror.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.mirror = void 0; +var mirror = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M15.5 4.7L8.5 0l-7 4.7c-.3.19-.5.45-.5.8V16l7.5-4 7.5 4V5.5c0-.34-.2-.61-.5-.8zm-.5 9.8l-6-3.25V10H8v1.25L2 14.5v-9l6-4V6h1V1.5l6 4v9zM6 7h5V5l3 3-3 3V9H6v2L3 8l3-3v2z" + }, + "children": [] + }], + "attribs": {} +}; +exports.mirror = mirror; \ No newline at end of file diff --git a/dist/oct/mortarBoard.js b/dist/oct/mortarBoard.js new file mode 100644 index 000000000..35448bbd7 --- /dev/null +++ b/dist/oct/mortarBoard.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.mortarBoard = void 0; +var mortarBoard = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M8.11 2.8a.34.34 0 00-.2 0L.27 5.18a.35.35 0 000 .67L2 6.4v1.77c-.3.17-.5.5-.5.86 0 .19.05.36.14.5-.08.14-.14.31-.14.5v2.58c0 .55 2 .55 2 0v-2.58c0-.19-.05-.36-.14-.5.08-.14.14-.31.14-.5 0-.38-.2-.69-.5-.86V6.72l4.89 1.53c.06.02.14.02.2 0l7.64-2.38a.35.35 0 000-.67L8.1 2.81l.01-.01zM4 8l3.83 1.19h-.02c.13.03.25.03.36 0L12 8v2.5c0 1-1.8 1.5-4 1.5s-4-.5-4-1.5V8zm3.02-2.5c0 .28.45.5 1 .5s1-.22 1-.5-.45-.5-1-.5-1 .22-1 .5z" + }, + "children": [] + }], + "attribs": {} +}; +exports.mortarBoard = mortarBoard; \ No newline at end of file diff --git a/dist/oct/mute.js b/dist/oct/mute.js new file mode 100644 index 000000000..9fcd95185 --- /dev/null +++ b/dist/oct/mute.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.mute = void 0; +var mute = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M8 2.81v10.38c0 .67-.81 1-1.28.53L3 10H1c-.55 0-1-.45-1-1V7c0-.55.45-1 1-1h2l3.72-3.72C7.19 1.81 8 2.14 8 2.81zm7.53 3.22l-1.06-1.06-1.97 1.97-1.97-1.97-1.06 1.06L11.44 8 9.47 9.97l1.06 1.06 1.97-1.97 1.97 1.97 1.06-1.06L13.56 8l1.97-1.97z" + }, + "children": [] + }], + "attribs": {} +}; +exports.mute = mute; \ No newline at end of file diff --git a/dist/oct/noNewline.js b/dist/oct/noNewline.js new file mode 100644 index 000000000..55485f5b9 --- /dev/null +++ b/dist/oct/noNewline.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.noNewline = void 0; +var noNewline = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M16 5v3c0 .55-.45 1-1 1h-3v2L9 8l3-3v2h2V5h2zM8 8c0 2.2-1.8 4-4 4s-4-1.8-4-4 1.8-4 4-4 4 1.8 4 4zM1.5 9.66L5.66 5.5C5.18 5.19 4.61 5 4 5 2.34 5 1 6.34 1 8c0 .61.19 1.17.5 1.66zM7 8c0-.61-.19-1.17-.5-1.66L2.34 10.5c.48.31 1.05.5 1.66.5 1.66 0 3-1.34 3-3z" + }, + "children": [] + }], + "attribs": {} +}; +exports.noNewline = noNewline; \ No newline at end of file diff --git a/dist/oct/northStar.js b/dist/oct/northStar.js new file mode 100644 index 000000000..64ba3be22 --- /dev/null +++ b/dist/oct/northStar.js @@ -0,0 +1,18 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.northStar = void 0; +var northStar = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "d": "M8.5 0.75C8.5 0.335786 8.16421 0 7.75 0C7.33579 0 7 0.335786 7 0.75V5.93933L4.39125 3.33058C4.09836 3.03768 3.62348 3.03768 3.33059 3.33058C3.03769 3.62347 3.0377 4.09835 3.33059 4.39124L5.93935 7H0.75C0.335787 7 0 7.33579 0 7.75C0 8.16421 0.335787 8.5 0.75 8.5H5.93936L3.33059 11.1088C3.0377 11.4017 3.0377 11.8765 3.33059 12.1694C3.62349 12.4623 4.09836 12.4623 4.39125 12.1694L7 9.56068V14.75C7 15.1642 7.33579 15.5 7.75 15.5C8.16421 15.5 8.5 15.1642 8.5 14.75V9.56065L11.1088 12.1694C11.4017 12.4623 11.8765 12.4623 12.1694 12.1694C12.4623 11.8765 12.4623 11.4016 12.1694 11.1088L9.56067 8.5H14.75C15.1642 8.5 15.5 8.16421 15.5 7.75C15.5 7.33579 15.1642 7 14.75 7H9.56068L12.1694 4.39125C12.4623 4.09836 12.4623 3.62349 12.1694 3.33059C11.8765 3.0377 11.4017 3.0377 11.1088 3.33059L8.5 5.93936V0.75Z" + }, + "children": [] + }], + "attribs": {} +}; +exports.northStar = northStar; \ No newline at end of file diff --git a/dist/oct/note.js b/dist/oct/note.js new file mode 100644 index 000000000..6ab4420a1 --- /dev/null +++ b/dist/oct/note.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.note = void 0; +var note = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M3 10h4V9H3v1zm0-2h6V7H3v1zm0-2h8V5H3v1zm10 6H1V3h12v9zM1 2c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1H1z" + }, + "children": [] + }], + "attribs": {} +}; +exports.note = note; \ No newline at end of file diff --git a/dist/oct/octoface.js b/dist/oct/octoface.js new file mode 100644 index 000000000..191969dcd --- /dev/null +++ b/dist/oct/octoface.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.octoface = void 0; +var octoface = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M14.7 5.34c.13-.32.55-1.59-.13-3.31 0 0-1.05-.33-3.44 1.3-1-.28-2.07-.32-3.13-.32s-2.13.04-3.13.32c-2.39-1.64-3.44-1.3-3.44-1.3-.68 1.72-.26 2.99-.13 3.31C.49 6.21 0 7.33 0 8.69 0 13.84 3.33 15 7.98 15S16 13.84 16 8.69c0-1.36-.49-2.48-1.3-3.35zM8 14.02c-3.3 0-5.98-.15-5.98-3.35 0-.76.38-1.48 1.02-2.07 1.07-.98 2.9-.46 4.96-.46 2.07 0 3.88-.52 4.96.46.65.59 1.02 1.3 1.02 2.07 0 3.19-2.68 3.35-5.98 3.35zM5.49 9.01c-.66 0-1.2.8-1.2 1.78s.54 1.79 1.2 1.79c.66 0 1.2-.8 1.2-1.79s-.54-1.78-1.2-1.78zm5.02 0c-.66 0-1.2.79-1.2 1.78s.54 1.79 1.2 1.79c.66 0 1.2-.8 1.2-1.79s-.53-1.78-1.2-1.78z" + }, + "children": [] + }], + "attribs": {} +}; +exports.octoface = octoface; \ No newline at end of file diff --git a/dist/oct/organization.js b/dist/oct/organization.js new file mode 100644 index 000000000..fd12b0c33 --- /dev/null +++ b/dist/oct/organization.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.organization = void 0; +var organization = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M16 12.999c0 .439-.45 1-1 1H7.995c-.539 0-.994-.447-.995-.999H1c-.54 0-1-.561-1-1 0-2.634 3-4 3-4s.229-.409 0-1c-.841-.621-1.058-.59-1-3 .058-2.419 1.367-3 2.5-3s2.442.58 2.5 3c.058 2.41-.159 2.379-1 3-.229.59 0 1 0 1s1.549.711 2.42 2.088C9.196 9.369 10 8.999 10 8.999s.229-.409 0-1c-.841-.62-1.058-.59-1-3 .058-2.419 1.367-3 2.5-3s2.437.581 2.495 3c.059 2.41-.158 2.38-1 3-.229.59 0 1 0 1s3.005 1.366 3.005 4z" + }, + "children": [] + }], + "attribs": {} +}; +exports.organization = organization; \ No newline at end of file diff --git a/dist/oct/packageIcon.js b/dist/oct/packageIcon.js new file mode 100644 index 000000000..fd05a6d23 --- /dev/null +++ b/dist/oct/packageIcon.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.packageIcon = void 0; +var packageIcon = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M1 4.27v7.47c0 .45.3.84.75.97l6.5 1.73c.16.05.34.05.5 0l6.5-1.73c.45-.13.75-.52.75-.97V4.27c0-.45-.3-.84-.75-.97l-6.5-1.74a1.4 1.4 0 00-.5 0L1.75 3.3c-.45.13-.75.52-.75.97zm7 9.09l-6-1.59V5l6 1.61v6.75zM2 4l2.5-.67L11 5.06l-2.5.67L2 4zm13 7.77l-6 1.59V6.61l2-.55V8.5l2-.53V5.53L15 5v6.77zm-2-7.24L6.5 2.8l2-.53L15 4l-2 .53z" + }, + "children": [] + }], + "attribs": {} +}; +exports.packageIcon = packageIcon; \ No newline at end of file diff --git a/dist/oct/paintcan.js b/dist/oct/paintcan.js new file mode 100644 index 000000000..b1f6ab9be --- /dev/null +++ b/dist/oct/paintcan.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.paintcan = void 0; +var paintcan = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M6 0C2.69 0 0 2.69 0 6v1c0 .55.45 1 1 1v5c0 1.1 2.24 2 5 2s5-.9 5-2V8c.55 0 1-.45 1-1V6c0-3.31-2.69-6-6-6zm3 10v.5c0 .28-.22.5-.5.5s-.5-.22-.5-.5V10c0-.28-.22-.5-.5-.5s-.5.22-.5.5v2.5c0 .28-.22.5-.5.5s-.5-.22-.5-.5v-2c0-.28-.22-.5-.5-.5s-.5.22-.5.5v.5c0 .55-.45 1-1 1s-1-.45-1-1v-1c-.55 0-1-.45-1-1V7.2c.91.49 2.36.8 4 .8 1.64 0 3.09-.31 4-.8V9c0 .55-.45 1-1 1zM6 7c-1.68 0-3.12-.41-3.71-1C2.88 5.41 4.32 5 6 5c1.68 0 3.12.41 3.71 1-.59.59-2.03 1-3.71 1zm0-3c-2.76 0-5 .89-5 2 0-2.76 2.24-5 5-5s5 2.24 5 5c0-1.1-2.24-2-5-2z" + }, + "children": [] + }], + "attribs": {} +}; +exports.paintcan = paintcan; \ No newline at end of file diff --git a/dist/oct/pencil.js b/dist/oct/pencil.js new file mode 100644 index 000000000..9a85dfe6b --- /dev/null +++ b/dist/oct/pencil.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pencil = void 0; +var pencil = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M0 12v3h3l8-8-3-3-8 8zm3 2H1v-2h1v1h1v1zm10.3-9.3L12 6 9 3l1.3-1.3a.996.996 0 011.41 0l1.59 1.59c.39.39.39 1.02 0 1.41z" + }, + "children": [] + }], + "attribs": {} +}; +exports.pencil = pencil; \ No newline at end of file diff --git a/dist/oct/person.js b/dist/oct/person.js new file mode 100644 index 000000000..b7bd428fe --- /dev/null +++ b/dist/oct/person.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.person = void 0; +var person = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M12 14.002a.998.998 0 01-.998.998H1.001A1 1 0 010 13.999V13c0-2.633 4-4 4-4s.229-.409 0-1c-.841-.62-.944-1.59-1-4 .173-2.413 1.867-3 3-3s2.827.586 3 3c-.056 2.41-.159 3.38-1 4-.229.59 0 1 0 1s4 1.367 4 4v1.002z" + }, + "children": [] + }], + "attribs": {} +}; +exports.person = person; \ No newline at end of file diff --git a/dist/oct/pin.js b/dist/oct/pin.js new file mode 100644 index 000000000..afebb76b7 --- /dev/null +++ b/dist/oct/pin.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pin = void 0; +var pin = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M10 1.2V2l.5 1L6 6H2.2c-.44 0-.67.53-.34.86L5 10l-4 5 5-4 3.14 3.14a.5.5 0 00.86-.34V10l3-4.5 1 .5h.8c.44 0 .67-.53.34-.86L10.86.86a.5.5 0 00-.86.34z" + }, + "children": [] + }], + "attribs": {} +}; +exports.pin = pin; \ No newline at end of file diff --git a/dist/oct/play.js b/dist/oct/play.js new file mode 100644 index 000000000..a22236a85 --- /dev/null +++ b/dist/oct/play.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.play = void 0; +var play = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M14 8A7 7 0 110 8a7 7 0 0114 0zm-8.223 3.482l4.599-3.066a.5.5 0 000-.832L5.777 4.518A.5.5 0 005 4.934v6.132a.5.5 0 00.777.416z" + }, + "children": [] + }], + "attribs": {} +}; +exports.play = play; \ No newline at end of file diff --git a/dist/oct/plug.js b/dist/oct/plug.js new file mode 100644 index 000000000..d779a66f9 --- /dev/null +++ b/dist/oct/plug.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.plug = void 0; +var plug = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M14 6V5h-4V3H8v1H6c-1.03 0-1.77.81-2 2L3 7c-1.66 0-3 1.34-3 3v2h1v-2c0-1.11.89-2 2-2l1 1c.25 1.16.98 2 2 2h2v1h2v-2h4V9h-4V6h4z" + }, + "children": [] + }], + "attribs": {} +}; +exports.plug = plug; \ No newline at end of file diff --git a/dist/oct/plus.js b/dist/oct/plus.js new file mode 100644 index 000000000..1aaf413a4 --- /dev/null +++ b/dist/oct/plus.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.plus = void 0; +var plus = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M12 9H7v5H5V9H0V7h5V2h2v5h5v2z" + }, + "children": [] + }], + "attribs": {} +}; +exports.plus = plus; \ No newline at end of file diff --git a/dist/oct/plusSmall.js b/dist/oct/plusSmall.js new file mode 100644 index 000000000..7b7715645 --- /dev/null +++ b/dist/oct/plusSmall.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.plusSmall = void 0; +var plusSmall = { + "viewBox": "0 0 7 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M4 4H3v3H0v1h3v3h1V8h3V7H4V4z" + }, + "children": [] + }], + "attribs": {} +}; +exports.plusSmall = plusSmall; \ No newline at end of file diff --git a/dist/oct/primitiveDot.js b/dist/oct/primitiveDot.js new file mode 100644 index 000000000..a51a65918 --- /dev/null +++ b/dist/oct/primitiveDot.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.primitiveDot = void 0; +var primitiveDot = { + "viewBox": "0 0 8 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M0 8c0-2.2 1.8-4 4-4s4 1.8 4 4-1.8 4-4 4-4-1.8-4-4z" + }, + "children": [] + }], + "attribs": {} +}; +exports.primitiveDot = primitiveDot; \ No newline at end of file diff --git a/dist/oct/primitiveDotStroke.js b/dist/oct/primitiveDotStroke.js new file mode 100644 index 000000000..8ad384d8e --- /dev/null +++ b/dist/oct/primitiveDotStroke.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.primitiveDotStroke = void 0; +var primitiveDotStroke = { + "viewBox": "0 0 8 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M4 10.5a2.5 2.5 0 100-5 2.5 2.5 0 000 5zM4 12a4 4 0 100-8 4 4 0 000 8z" + }, + "children": [] + }], + "attribs": {} +}; +exports.primitiveDotStroke = primitiveDotStroke; \ No newline at end of file diff --git a/dist/oct/primitiveSquare.js b/dist/oct/primitiveSquare.js new file mode 100644 index 000000000..5d2c37408 --- /dev/null +++ b/dist/oct/primitiveSquare.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.primitiveSquare = void 0; +var primitiveSquare = { + "viewBox": "0 0 8 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M8 12H0V4h8v8z" + }, + "children": [] + }], + "attribs": {} +}; +exports.primitiveSquare = primitiveSquare; \ No newline at end of file diff --git a/dist/oct/project.js b/dist/oct/project.js new file mode 100644 index 000000000..bb0b602af --- /dev/null +++ b/dist/oct/project.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.project = void 0; +var project = { + "viewBox": "0 0 15 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M10 12h3V2h-3v10zm-4-2h3V2H6v8zm-4 4h3V2H2v12zm-1 1h13V1H1v14zM14 0H1a1 1 0 00-1 1v14a1 1 0 001 1h13a1 1 0 001-1V1a1 1 0 00-1-1z" + }, + "children": [] + }], + "attribs": {} +}; +exports.project = project; \ No newline at end of file diff --git a/dist/oct/pulse.js b/dist/oct/pulse.js new file mode 100644 index 000000000..e46e5b520 --- /dev/null +++ b/dist/oct/pulse.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pulse = void 0; +var pulse = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M11.5 8L8.8 5.4 6.6 8.5 5.5 1.6 2.38 8H0v2h3.6l.9-1.8.9 5.4L9 8.5l1.6 1.5H14V8h-2.5z" + }, + "children": [] + }], + "attribs": {} +}; +exports.pulse = pulse; \ No newline at end of file diff --git a/dist/oct/question.js b/dist/oct/question.js new file mode 100644 index 000000000..f2845b4e7 --- /dev/null +++ b/dist/oct/question.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.question = void 0; +var question = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M6 10h2v2H6v-2zm4-3.5C10 8.64 8 9 8 9H6c0-.55.45-1 1-1h.5c.28 0 .5-.22.5-.5v-1c0-.28-.22-.5-.5-.5h-1c-.28 0-.5.22-.5.5V7H4c0-1.5 1.5-3 3-3s3 1 3 2.5zM7 2.3c3.14 0 5.7 2.56 5.7 5.7s-2.56 5.7-5.7 5.7A5.71 5.71 0 011.3 8c0-3.14 2.56-5.7 5.7-5.7zM7 1C3.14 1 0 4.14 0 8s3.14 7 7 7 7-3.14 7-7-3.14-7-7-7z" + }, + "children": [] + }], + "attribs": {} +}; +exports.question = question; \ No newline at end of file diff --git a/dist/oct/quote.js b/dist/oct/quote.js new file mode 100644 index 000000000..be0699da6 --- /dev/null +++ b/dist/oct/quote.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.quote = void 0; +var quote = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M6.16 3.5C3.73 5.06 2.55 6.67 2.55 9.36c.16-.05.3-.05.44-.05 1.27 0 2.5.86 2.5 2.41 0 1.61-1.03 2.61-2.5 2.61-1.9 0-2.99-1.52-2.99-4.25 0-3.8 1.75-6.53 5.02-8.42L6.16 3.5zm7 0c-2.43 1.56-3.61 3.17-3.61 5.86.16-.05.3-.05.44-.05 1.27 0 2.5.86 2.5 2.41 0 1.61-1.03 2.61-2.5 2.61-1.89 0-2.98-1.52-2.98-4.25 0-3.8 1.75-6.53 5.02-8.42l1.14 1.84h-.01z" + }, + "children": [] + }], + "attribs": {} +}; +exports.quote = quote; \ No newline at end of file diff --git a/dist/oct/radioTower.js b/dist/oct/radioTower.js new file mode 100644 index 000000000..c19a6196d --- /dev/null +++ b/dist/oct/radioTower.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.radioTower = void 0; +var radioTower = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M4.79 6.11c.25-.25.25-.67 0-.92-.32-.33-.48-.76-.48-1.19 0-.43.16-.86.48-1.19.25-.26.25-.67 0-.92a.613.613 0 00-.45-.19c-.16 0-.33.06-.45.19-.57.58-.85 1.35-.85 2.11 0 .76.29 1.53.85 2.11.25.25.66.25.9 0zM2.33.52a.651.651 0 00-.92 0C.48 1.48.01 2.74.01 3.99c0 1.26.47 2.52 1.4 3.48.25.26.66.26.91 0s.25-.68 0-.94c-.68-.7-1.02-1.62-1.02-2.54 0-.92.34-1.84 1.02-2.54a.66.66 0 00.01-.93zm5.69 5.1A1.62 1.62 0 106.4 4c-.01.89.72 1.62 1.62 1.62zM14.59.53a.628.628 0 00-.91 0c-.25.26-.25.68 0 .94.68.7 1.02 1.62 1.02 2.54 0 .92-.34 1.83-1.02 2.54-.25.26-.25.68 0 .94a.651.651 0 00.92 0c.93-.96 1.4-2.22 1.4-3.48A5.048 5.048 0 0014.59.53zM8.02 6.92c-.41 0-.83-.1-1.2-.3l-3.15 8.37h1.49l.86-1h4l.84 1h1.49L9.21 6.62c-.38.2-.78.3-1.19.3zm-.01.48L9.02 11h-2l.99-3.6zm-1.99 5.59l1-1h2l1 1h-4zm5.19-11.1c-.25.25-.25.67 0 .92.32.33.48.76.48 1.19 0 .43-.16.86-.48 1.19-.25.26-.25.67 0 .92a.63.63 0 00.9 0c.57-.58.85-1.35.85-2.11 0-.76-.28-1.53-.85-2.11a.634.634 0 00-.9 0z" + }, + "children": [] + }], + "attribs": {} +}; +exports.radioTower = radioTower; \ No newline at end of file diff --git a/dist/oct/reply.js b/dist/oct/reply.js new file mode 100644 index 000000000..16bf566ae --- /dev/null +++ b/dist/oct/reply.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.reply = void 0; +var reply = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M6 3.5c3.92.44 8 3.125 8 10-2.312-5.062-4.75-6-8-6V11L.5 5.5 6 0v3.5z" + }, + "children": [] + }], + "attribs": {} +}; +exports.reply = reply; \ No newline at end of file diff --git a/dist/oct/repo.js b/dist/oct/repo.js new file mode 100644 index 000000000..b51916c00 --- /dev/null +++ b/dist/oct/repo.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.repo = void 0; +var repo = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M4 9H3V8h1v1zm0-3H3v1h1V6zm0-2H3v1h1V4zm0-2H3v1h1V2zm8-1v12c0 .55-.45 1-1 1H6v2l-1.5-1.5L3 16v-2H1c-.55 0-1-.45-1-1V1c0-.55.45-1 1-1h10c.55 0 1 .45 1 1zm-1 10H1v2h2v-1h3v1h5v-2zm0-10H2v9h9V1z" + }, + "children": [] + }], + "attribs": {} +}; +exports.repo = repo; \ No newline at end of file diff --git a/dist/oct/repoClone.js b/dist/oct/repoClone.js new file mode 100644 index 000000000..fdd7c8312 --- /dev/null +++ b/dist/oct/repoClone.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.repoClone = void 0; +var repoClone = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M15 0H9v7c0 .55.45 1 1 1h1v1h1V8h3c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-4 7h-1V6h1v1zm4 0h-3V6h3v1zm0-2h-4V1h4v4zM4 5H3V4h1v1zm0-2H3V2h1v1zM2 1h6V0H1C.45 0 0 .45 0 1v12c0 .55.45 1 1 1h2v2l1.5-1.5L6 16v-2h5c.55 0 1-.45 1-1v-3H2V1zm9 10v2H6v-1H3v1H1v-2h10zM3 8h1v1H3V8zm1-1H3V6h1v1z" + }, + "children": [] + }], + "attribs": {} +}; +exports.repoClone = repoClone; \ No newline at end of file diff --git a/dist/oct/repoForcePush.js b/dist/oct/repoForcePush.js new file mode 100644 index 000000000..e5da13562 --- /dev/null +++ b/dist/oct/repoForcePush.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.repoForcePush = void 0; +var repoForcePush = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M10 9H8v7H6V9H4l2.25-3H4l3-4 3 4H7.75L10 9zm1-9H1C.45 0 0 .45 0 1v12c0 .55.45 1 1 1h4v-1H1v-2h4v-1H2V1h9v9H9v1h2v2H9v1h2c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1z" + }, + "children": [] + }], + "attribs": {} +}; +exports.repoForcePush = repoForcePush; \ No newline at end of file diff --git a/dist/oct/repoForked.js b/dist/oct/repoForked.js new file mode 100644 index 000000000..e48e685d5 --- /dev/null +++ b/dist/oct/repoForked.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.repoForked = void 0; +var repoForked = { + "viewBox": "0 0 10 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M8 1a1.993 1.993 0 00-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 002 1a1.993 1.993 0 00-1 3.72V6.5l3 3v1.78A1.993 1.993 0 005 15a1.993 1.993 0 001-3.72V9.5l3-3V4.72A1.993 1.993 0 008 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z" + }, + "children": [] + }], + "attribs": {} +}; +exports.repoForked = repoForked; \ No newline at end of file diff --git a/dist/oct/repoPull.js b/dist/oct/repoPull.js new file mode 100644 index 000000000..50e850504 --- /dev/null +++ b/dist/oct/repoPull.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.repoPull = void 0; +var repoPull = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M13 8V6H7V4h6V2l3 3-3 3zM4 2H3v1h1V2zm7 5h1v6c0 .55-.45 1-1 1H6v2l-1.5-1.5L3 16v-2H1c-.55 0-1-.45-1-1V1c0-.55.45-1 1-1h10c.55 0 1 .45 1 1v2h-1V1H2v9h9V7zm0 4H1v2h2v-1h3v1h5v-2zM4 6H3v1h1V6zm0-2H3v1h1V4zM3 9h1V8H3v1z" + }, + "children": [] + }], + "attribs": {} +}; +exports.repoPull = repoPull; \ No newline at end of file diff --git a/dist/oct/repoPush.js b/dist/oct/repoPush.js new file mode 100644 index 000000000..532f0e611 --- /dev/null +++ b/dist/oct/repoPush.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.repoPush = void 0; +var repoPush = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M4 3H3V2h1v1zM3 5h1V4H3v1zm4 0L4 9h2v7h2V9h2L7 5zm4-5H1C.45 0 0 .45 0 1v12c0 .55.45 1 1 1h4v-1H1v-2h4v-1H2V1h9.02L11 10H9v1h2v2H9v1h2c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1z" + }, + "children": [] + }], + "attribs": {} +}; +exports.repoPush = repoPush; \ No newline at end of file diff --git a/dist/oct/repoTemplate.js b/dist/oct/repoTemplate.js new file mode 100644 index 000000000..d62ef0187 --- /dev/null +++ b/dist/oct/repoTemplate.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.repoTemplate = void 0; +var repoTemplate = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M12 8V1c0-.55-.45-1-1-1H1C.45 0 0 .45 0 1v12c0 .55.45 1 1 1h2v2l1.5-1.5L6 16v-4H3v1H1v-2h7v-1H2V1h9v7h1zM4 2H3v1h1V2zM3 4h1v1H3V4zm1 2H3v1h1V6zm0 3H3V8h1v1zm6 3H8v2h2v2h2v-2h2v-2h-2v-2h-2v2z" + }, + "children": [] + }], + "attribs": {} +}; +exports.repoTemplate = repoTemplate; \ No newline at end of file diff --git a/dist/oct/repoTemplatePrivate.js b/dist/oct/repoTemplatePrivate.js new file mode 100644 index 000000000..2b10aeb7c --- /dev/null +++ b/dist/oct/repoTemplatePrivate.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.repoTemplatePrivate = void 0; +var repoTemplatePrivate = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M12 6c0-.55-.45-1-1-1h-1V4c0-2.2-1.8-4-4-4S2 1.8 2 4v1H1c-.55 0-1 .45-1 1v7c0 .55.45 1 1 1h5v-1H2V6h9v2h1V6zM8.21 5V4c0-1.22-.98-2.2-2.2-2.2-1.22 0-2.2.98-2.2 2.2v1h4.4zM12 12h2v2h-2v2h-2v-2H8v-2h2v-2h2v2zm-9 0h1v-1H3v1zm0-5h1v1H3V7zm1 2H3v1h1V9z" + }, + "children": [] + }], + "attribs": {} +}; +exports.repoTemplatePrivate = repoTemplatePrivate; \ No newline at end of file diff --git a/dist/oct/report.js b/dist/oct/report.js new file mode 100644 index 000000000..c540cc6b0 --- /dev/null +++ b/dist/oct/report.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.report = void 0; +var report = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M0 2a1 1 0 011-1h14a1 1 0 011 1v9a1 1 0 01-1 1H7l-4 4v-4H1a1 1 0 01-1-1V2zm1 0h14v9H6.5L4 13.5V11H1V2zm6 6h2v2H7V8zm0-5h2v4H7V3z" + }, + "children": [] + }], + "attribs": {} +}; +exports.report = report; \ No newline at end of file diff --git a/dist/oct/requestChanges.js b/dist/oct/requestChanges.js new file mode 100644 index 000000000..19623eaf9 --- /dev/null +++ b/dist/oct/requestChanges.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.requestChanges = void 0; +var requestChanges = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M0 1a1 1 0 011-1h14a1 1 0 011 1v10a1 1 0 01-1 1H7.5L4 15.5V12H1a1 1 0 01-1-1V1zm1 0v10h4v2l2-2h8V1H1zm7.5 3h2v1h-2v2h-1V5h-2V4h2V2h1v2zm2 5h-5V8h5v1z" + }, + "children": [] + }], + "attribs": {} +}; +exports.requestChanges = requestChanges; \ No newline at end of file diff --git a/dist/oct/rocket.js b/dist/oct/rocket.js new file mode 100644 index 000000000..622887246 --- /dev/null +++ b/dist/oct/rocket.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.rocket = void 0; +var rocket = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M12.17 3.83c-.27-.27-.47-.55-.63-.88-.16-.31-.27-.66-.34-1.02-.58.33-1.16.7-1.73 1.13-.58.44-1.14.94-1.69 1.48-.7.7-1.33 1.81-1.78 2.45H3L0 10h3l2-2c-.34.77-1.02 2.98-1 3l1 1c.02.02 2.23-.64 3-1l-2 2v3l3-3v-3c.64-.45 1.75-1.09 2.45-1.78.55-.55 1.05-1.13 1.47-1.7.44-.58.81-1.16 1.14-1.72-.36-.08-.7-.19-1.03-.34a3.39 3.39 0 01-.86-.63zM16 0s-.09.38-.3 1.06c-.2.7-.55 1.58-1.06 2.66-.7-.08-1.27-.33-1.66-.72-.39-.39-.63-.94-.7-1.64C13.36.84 14.23.48 14.92.28 15.62.08 16 0 16 0z" + }, + "children": [] + }], + "attribs": {} +}; +exports.rocket = rocket; \ No newline at end of file diff --git a/dist/oct/rss.js b/dist/oct/rss.js new file mode 100644 index 000000000..f2987e243 --- /dev/null +++ b/dist/oct/rss.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.rss = void 0; +var rss = { + "viewBox": "0 0 10 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M2 13H0v-2c1.11 0 2 .89 2 2zM0 3v1a9 9 0 019 9h1C10 7.48 5.52 3 0 3zm0 4v1c2.75 0 5 2.25 5 5h1c0-3.31-2.69-6-6-6z" + }, + "children": [] + }], + "attribs": {} +}; +exports.rss = rss; \ No newline at end of file diff --git a/dist/oct/ruby.js b/dist/oct/ruby.js new file mode 100644 index 000000000..99bb725e0 --- /dev/null +++ b/dist/oct/ruby.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ruby = void 0; +var ruby = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M13 6l-5 5V4h3l2 2zm3 0l-8 8-8-8 4-4h8l4 4zm-8 6.5L14.5 6l-3-3h-7l-3 3L8 12.5z" + }, + "children": [] + }], + "attribs": {} +}; +exports.ruby = ruby; \ No newline at end of file diff --git a/dist/oct/saved.js b/dist/oct/saved.js new file mode 100644 index 000000000..2dd9a2f0c --- /dev/null +++ b/dist/oct/saved.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.saved = void 0; +var saved = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M12 0H4c-.73 0-1 .27-1 1v15l5-3.09L13 16V1c0-.73-.27-1-1-1z" + }, + "children": [] + }], + "attribs": {} +}; +exports.saved = saved; \ No newline at end of file diff --git a/dist/oct/screenFull.js b/dist/oct/screenFull.js new file mode 100644 index 000000000..104908529 --- /dev/null +++ b/dist/oct/screenFull.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.screenFull = void 0; +var screenFull = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M13 10h1v3c0 .547-.453 1-1 1h-3v-1h3v-3zM1 10H0v3c0 .547.453 1 1 1h3v-1H1v-3zm0-7h3V2H1c-.547 0-1 .453-1 1v3h1V3zm1 1h10v8H2V4zm2 6h6V6H4v4zm6-8v1h3v3h1V3c0-.547-.453-1-1-1h-3z" + }, + "children": [] + }], + "attribs": {} +}; +exports.screenFull = screenFull; \ No newline at end of file diff --git a/dist/oct/screenNormal.js b/dist/oct/screenNormal.js new file mode 100644 index 000000000..97ebe922e --- /dev/null +++ b/dist/oct/screenNormal.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.screenNormal = void 0; +var screenNormal = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M2 4H0V3h2V1h1v2c0 .547-.453 1-1 1zm0 8H0v1h2v2h1v-2c0-.547-.453-1-1-1zm9-2c0 .547-.453 1-1 1H4c-.547 0-1-.453-1-1V6c0-.547.453-1 1-1h6c.547 0 1 .453 1 1v4zM9 7H5v2h4V7zm2 6v2h1v-2h2v-1h-2c-.547 0-1 .453-1 1zm1-10V1h-1v2c0 .547.453 1 1 1h2V3h-2z" + }, + "children": [] + }], + "attribs": {} +}; +exports.screenNormal = screenNormal; \ No newline at end of file diff --git a/dist/oct/search.js b/dist/oct/search.js new file mode 100644 index 000000000..5eea4587c --- /dev/null +++ b/dist/oct/search.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.search = void 0; +var search = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M15.7 13.3l-3.81-3.83A5.93 5.93 0 0013 6c0-3.31-2.69-6-6-6S1 2.69 1 6s2.69 6 6 6c1.3 0 2.48-.41 3.47-1.11l3.83 3.81c.19.2.45.3.7.3.25 0 .52-.09.7-.3a.996.996 0 000-1.41v.01zM7 10.7c-2.59 0-4.7-2.11-4.7-4.7 0-2.59 2.11-4.7 4.7-4.7 2.59 0 4.7 2.11 4.7 4.7 0 2.59-2.11 4.7-4.7 4.7z" + }, + "children": [] + }], + "attribs": {} +}; +exports.search = search; \ No newline at end of file diff --git a/dist/oct/server.js b/dist/oct/server.js new file mode 100644 index 000000000..c363542fa --- /dev/null +++ b/dist/oct/server.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.server = void 0; +var server = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M11 6H1c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h10c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1zM2 9H1V7h1v2zm2 0H3V7h1v2zm2 0H5V7h1v2zm2 0H7V7h1v2zm3-8H1c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h10c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zM2 4H1V2h1v2zm2 0H3V2h1v2zm2 0H5V2h1v2zm2 0H7V2h1v2zm3-1h-1V2h1v1zm0 8H1c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h10c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1zm-9 3H1v-2h1v2zm2 0H3v-2h1v2zm2 0H5v-2h1v2zm2 0H7v-2h1v2z" + }, + "children": [] + }], + "attribs": {} +}; +exports.server = server; \ No newline at end of file diff --git a/dist/oct/settings.js b/dist/oct/settings.js new file mode 100644 index 000000000..17d48b69a --- /dev/null +++ b/dist/oct/settings.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.settings = void 0; +var settings = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M4 7H3V2h1v5zm-1 7h1v-3H3v3zm5 0h1V8H8v6zm5 0h1v-2h-1v2zm1-12h-1v6h1V2zM9 2H8v2h1V2zM5 8H2c-.55 0-1 .45-1 1s.45 1 1 1h3c.55 0 1-.45 1-1s-.45-1-1-1zm5-3H7c-.55 0-1 .45-1 1s.45 1 1 1h3c.55 0 1-.45 1-1s-.45-1-1-1zm5 4h-3c-.55 0-1 .45-1 1s.45 1 1 1h3c.55 0 1-.45 1-1s-.45-1-1-1z" + }, + "children": [] + }], + "attribs": {} +}; +exports.settings = settings; \ No newline at end of file diff --git a/dist/oct/shield.js b/dist/oct/shield.js new file mode 100644 index 000000000..b9fa12506 --- /dev/null +++ b/dist/oct/shield.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.shield = void 0; +var shield = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M0 2l7-2 7 2v6.02C14 12.69 8.69 16 7 16c-1.69 0-7-3.31-7-7.98V2zm1 .75L7 1l6 1.75v5.268C13 12.104 8.449 15 7 15c-1.449 0-6-2.896-6-6.982V2.75zm1 .75L7 2v12c-1.207 0-5-2.482-5-5.985V3.5z" + }, + "children": [] + }], + "attribs": {} +}; +exports.shield = shield; \ No newline at end of file diff --git a/dist/oct/shieldCheck.js b/dist/oct/shieldCheck.js new file mode 100644 index 000000000..55d3f3563 --- /dev/null +++ b/dist/oct/shieldCheck.js @@ -0,0 +1,18 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.shieldCheck = void 0; +var shieldCheck = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "d": "M6.5 0L0 1.875v5.644C0 11.897 4.93 15 6.5 15c.741 0 2.232-.692 3.6-1.884l-.713-.61C8.275 13.453 7.099 14 6.5 14 5.172 14 1 11.31 1 7.516V2.625L6.5 1 12 2.625v4.891c0 .128-.005.255-.014.38L13 6.713V1.875L6.5 0zm5 10l-2-1.5L8 10l3.5 3L16 8l-1.5-1.5-3 3.5zM2 3.375L6.5 2v11C5.414 13 2 10.724 2 7.514V3.375z" + }, + "children": [] + }], + "attribs": {} +}; +exports.shieldCheck = shieldCheck; \ No newline at end of file diff --git a/dist/oct/shieldLock.js b/dist/oct/shieldLock.js new file mode 100644 index 000000000..a772a7271 --- /dev/null +++ b/dist/oct/shieldLock.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.shieldLock = void 0; +var shieldLock = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M7 0L0 2v6.02C0 12.69 5.31 16 7 16c1.69 0 7-3.31 7-7.98V2L7 0zM5 11l1.14-2.8a.568.568 0 00-.25-.59C5.33 7.25 5 6.66 5 6c0-1.09.89-2 1.98-2C8.06 4 9 4.91 9 6c0 .66-.33 1.25-.89 1.61-.19.13-.3.36-.25.59L9 11H5z" + }, + "children": [] + }], + "attribs": {} +}; +exports.shieldLock = shieldLock; \ No newline at end of file diff --git a/dist/oct/shieldX.js b/dist/oct/shieldX.js new file mode 100644 index 000000000..8a0c7d194 --- /dev/null +++ b/dist/oct/shieldX.js @@ -0,0 +1,18 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.shieldX = void 0; +var shieldX = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "d": "M6.5 0L0 1.875v5.644C0 11.897 4.93 15 6.5 15c.63 0 1.8-.5 2.976-1.38l-.663-.663C7.889 13.625 6.996 14 6.5 14 5.172 14 1 11.31 1 7.516V2.625L6.5 1 12 2.625v4.23l.48.48.52-.52v-4.94L6.5 0zm5.98 8.75L10.73 7 9.25 8.48 11 10.23l-1.75 1.75 1.48 1.48 1.75-1.75 1.75 1.75 1.48-1.48-1.75-1.75 1.75-1.75L14.23 7l-1.75 1.75zM2 3.375L6.5 2v11C5.414 13 2 10.724 2 7.514V3.375z" + }, + "children": [] + }], + "attribs": {} +}; +exports.shieldX = shieldX; \ No newline at end of file diff --git a/dist/oct/signIn.js b/dist/oct/signIn.js new file mode 100644 index 000000000..4bd30a513 --- /dev/null +++ b/dist/oct/signIn.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.signIn = void 0; +var signIn = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M7 6.75V12h4V8h1v4c0 .55-.45 1-1 1H7v3l-5.45-2.72c-.33-.17-.55-.52-.55-.91V1c0-.55.45-1 1-1h9c.55 0 1 .45 1 1v3h-1V1H3l4 2v2.25L10 3v2h4v2h-4v2L7 6.75z" + }, + "children": [] + }], + "attribs": {} +}; +exports.signIn = signIn; \ No newline at end of file diff --git a/dist/oct/signOut.js b/dist/oct/signOut.js new file mode 100644 index 000000000..4809de554 --- /dev/null +++ b/dist/oct/signOut.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.signOut = void 0; +var signOut = { + "viewBox": "0 0 16 17", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M12 9V7H8V5h4V3l4 3-4 3zm-2 3H6V3L2 1h8v3h1V1c0-.55-.45-1-1-1H1C.45 0 0 .45 0 1v11.38c0 .39.22.73.55.91L6 16.01V13h4c.55 0 1-.45 1-1V8h-1v4z" + }, + "children": [] + }], + "attribs": {} +}; +exports.signOut = signOut; \ No newline at end of file diff --git a/dist/oct/skip.js b/dist/oct/skip.js new file mode 100644 index 000000000..f8626c822 --- /dev/null +++ b/dist/oct/skip.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.skip = void 0; +var skip = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M5.79 11.624l-1.326-.088-.088-1.326 5.834-5.834 1.326.088.088 1.326-5.834 5.834zM8 15A7 7 0 108 1a7 7 0 000 14zm5.5-7a5.5 5.5 0 11-11 0 5.5 5.5 0 0111 0z" + }, + "children": [] + }], + "attribs": {} +}; +exports.skip = skip; \ No newline at end of file diff --git a/dist/oct/smiley.js b/dist/oct/smiley.js new file mode 100644 index 000000000..7e64ff79c --- /dev/null +++ b/dist/oct/smiley.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.smiley = void 0; +var smiley = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M8 0C3.58 0 0 3.58 0 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm4.81 12.81a6.72 6.72 0 01-2.17 1.45c-.83.36-1.72.53-2.64.53-.92 0-1.81-.17-2.64-.53-.81-.34-1.55-.83-2.17-1.45a6.773 6.773 0 01-1.45-2.17A6.59 6.59 0 011.21 8c0-.92.17-1.81.53-2.64.34-.81.83-1.55 1.45-2.17.62-.62 1.36-1.11 2.17-1.45A6.59 6.59 0 018 1.21c.92 0 1.81.17 2.64.53.81.34 1.55.83 2.17 1.45.62.62 1.11 1.36 1.45 2.17.36.83.53 1.72.53 2.64 0 .92-.17 1.81-.53 2.64-.34.81-.83 1.55-1.45 2.17zM4 6.8v-.59c0-.66.53-1.19 1.2-1.19h.59c.66 0 1.19.53 1.19 1.19v.59c0 .67-.53 1.2-1.19 1.2H5.2C4.53 8 4 7.47 4 6.8zm5 0v-.59c0-.66.53-1.19 1.2-1.19h.59c.66 0 1.19.53 1.19 1.19v.59c0 .67-.53 1.2-1.19 1.2h-.59C9.53 8 9 7.47 9 6.8zm4 3.2c-.72 1.88-2.91 3-5 3s-4.28-1.13-5-3c-.14-.39.23-1 .66-1h8.59c.41 0 .89.61.75 1z" + }, + "children": [] + }], + "attribs": {} +}; +exports.smiley = smiley; \ No newline at end of file diff --git a/dist/oct/squirrel.js b/dist/oct/squirrel.js new file mode 100644 index 000000000..819cb3e21 --- /dev/null +++ b/dist/oct/squirrel.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.squirrel = void 0; +var squirrel = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M12 1C9.79 1 8 2.31 8 3.92c0 1.94.5 3.03 0 6.08 0-4.5-2.77-6.34-4-6.34.05-.5-.48-.66-.48-.66s-.22.11-.3.34c-.27-.31-.56-.27-.56-.27l-.13.58S.7 4.29.68 6.87c.2.33 1.53.6 2.47.43.89.05.67.79.47.99C2.78 9.13 2 8 1 8S0 9 1 9s1 1 3 1c-3.09 1.2 0 4 0 4H3c-1 0-1 1-1 1h6c3 0 5-1 5-3.47 0-.85-.43-1.79-1-2.53-1.11-1.46.23-2.68 1-2 .77.68 3 1 3-2 0-2.21-1.79-4-4-4zM2.5 6c-.28 0-.5-.22-.5-.5s.22-.5.5-.5.5.22.5.5-.22.5-.5.5z" + }, + "children": [] + }], + "attribs": {} +}; +exports.squirrel = squirrel; \ No newline at end of file diff --git a/dist/oct/star.js b/dist/oct/star.js new file mode 100644 index 000000000..d2606e805 --- /dev/null +++ b/dist/oct/star.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.star = void 0; +var star = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z" + }, + "children": [] + }], + "attribs": {} +}; +exports.star = star; \ No newline at end of file diff --git a/dist/oct/stop.js b/dist/oct/stop.js new file mode 100644 index 000000000..52806476f --- /dev/null +++ b/dist/oct/stop.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.stop = void 0; +var stop = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M10 1H4L0 5v6l4 4h6l4-4V5l-4-4zm3 9.5L9.5 14h-5L1 10.5v-5L4.5 2h5L13 5.5v5zM6 4h2v5H6V4zm0 6h2v2H6v-2z" + }, + "children": [] + }], + "attribs": {} +}; +exports.stop = stop; \ No newline at end of file diff --git a/dist/oct/sync.js b/dist/oct/sync.js new file mode 100644 index 000000000..c2d0f9e4e --- /dev/null +++ b/dist/oct/sync.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.sync = void 0; +var sync = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M10.24 7.4a4.15 4.15 0 01-1.2 3.6 4.346 4.346 0 01-5.41.54L4.8 10.4.5 9.8l.6 4.2 1.31-1.26c2.36 1.74 5.7 1.57 7.84-.54a5.876 5.876 0 001.74-4.46l-1.75-.34zM2.96 5a4.346 4.346 0 015.41-.54L7.2 5.6l4.3.6-.6-4.2-1.31 1.26c-2.36-1.74-5.7-1.57-7.85.54C.5 5.03-.06 6.65.01 8.26l1.75.35A4.17 4.17 0 012.96 5z" + }, + "children": [] + }], + "attribs": {} +}; +exports.sync = sync; \ No newline at end of file diff --git a/dist/oct/tag.js b/dist/oct/tag.js new file mode 100644 index 000000000..3a58e38bb --- /dev/null +++ b/dist/oct/tag.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.tag = void 0; +var tag = { + "viewBox": "0 0 15 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M7.73 1.73C7.26 1.26 6.62 1 5.96 1H3.5C2.13 1 1 2.13 1 3.5v2.47c0 .66.27 1.3.73 1.77l6.06 6.06c.39.39 1.02.39 1.41 0l4.59-4.59a.996.996 0 000-1.41L7.73 1.73zM2.38 7.09c-.31-.3-.47-.7-.47-1.13V3.5c0-.88.72-1.59 1.59-1.59h2.47c.42 0 .83.16 1.13.47l6.14 6.13-4.73 4.73-6.13-6.15zM3.01 3h2v2H3V3h.01z" + }, + "children": [] + }], + "attribs": {} +}; +exports.tag = tag; \ No newline at end of file diff --git a/dist/oct/tasklist.js b/dist/oct/tasklist.js new file mode 100644 index 000000000..e13f87d68 --- /dev/null +++ b/dist/oct/tasklist.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.tasklist = void 0; +var tasklist = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M15.41 9H7.59C7 9 7 8.59 7 8c0-.59 0-1 .59-1h7.81c.59 0 .59.41.59 1 0 .59 0 1-.59 1h.01zM9.59 4C9 4 9 3.59 9 3c0-.59 0-1 .59-1h5.81c.59 0 .59.41.59 1 0 .59 0 1-.59 1H9.59zM0 3.91l1.41-1.3L3 4.2 7.09 0 8.5 1.41 3 6.91l-3-3zM7.59 12h7.81c.59 0 .59.41.59 1 0 .59 0 1-.59 1H7.59C7 14 7 13.59 7 13c0-.59 0-1 .59-1z" + }, + "children": [] + }], + "attribs": {} +}; +exports.tasklist = tasklist; \ No newline at end of file diff --git a/dist/oct/telescope.js b/dist/oct/telescope.js new file mode 100644 index 000000000..1a05f7bba --- /dev/null +++ b/dist/oct/telescope.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.telescope = void 0; +var telescope = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M8 9l3 6h-1l-2-4v5H7v-6l-2 5H4l2-5 2-1zM7 0H6v1h1V0zM5 3H4v1h1V3zM2 1H1v1h1V1zM.63 9a.52.52 0 00-.16.67l.55.92c.13.23.41.31.64.2l1.39-.66-1.16-2-1.27.86.01.01zm7.89-5.39l-5.8 3.95L3.95 9.7l6.33-3.03-1.77-3.06h.01zm4.22 1.28l-1.47-2.52a.51.51 0 00-.72-.17l-1.2.83 1.84 3.2 1.33-.64c.27-.13.36-.44.22-.7z" + }, + "children": [] + }], + "attribs": {} +}; +exports.telescope = telescope; \ No newline at end of file diff --git a/dist/oct/terminal.js b/dist/oct/terminal.js new file mode 100644 index 000000000..d6bdebc85 --- /dev/null +++ b/dist/oct/terminal.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.terminal = void 0; +var terminal = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M7 10h4v1H7v-1zm-3 1l3-3-3-3-.75.75L5.5 8l-2.25 2.25L4 11zm10-8v10c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V3c0-.55.45-1 1-1h12c.55 0 1 .45 1 1zm-1 0H1v10h12V3z" + }, + "children": [] + }], + "attribs": {} +}; +exports.terminal = terminal; \ No newline at end of file diff --git a/dist/oct/textSize.js b/dist/oct/textSize.js new file mode 100644 index 000000000..9dea9da1d --- /dev/null +++ b/dist/oct/textSize.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.textSize = void 0; +var textSize = { + "viewBox": "0 0 18 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M13.62 9.08L12.1 3.66h-.06l-1.5 5.42h3.08zM5.7 10.13S4.68 6.52 4.53 6.02h-.08l-1.13 4.11H5.7zM17.31 14h-2.25l-.95-3.25h-4.07L9.09 14H6.84l-.69-2.33H2.87L2.17 14H0l3.3-9.59h2.5l2.17 6.34L10.86 2h2.52l3.94 12h-.01z" + }, + "children": [] + }], + "attribs": {} +}; +exports.textSize = textSize; \ No newline at end of file diff --git a/dist/oct/threeBars.js b/dist/oct/threeBars.js new file mode 100644 index 000000000..3119ae602 --- /dev/null +++ b/dist/oct/threeBars.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.threeBars = void 0; +var threeBars = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M11.41 9H.59C0 9 0 8.59 0 8c0-.59 0-1 .59-1H11.4c.59 0 .59.41.59 1 0 .59 0 1-.59 1h.01zm0-4H.59C0 5 0 4.59 0 4c0-.59 0-1 .59-1H11.4c.59 0 .59.41.59 1 0 .59 0 1-.59 1h.01zM.59 11H11.4c.59 0 .59.41.59 1 0 .59 0 1-.59 1H.59C0 13 0 12.59 0 12c0-.59 0-1 .59-1z" + }, + "children": [] + }], + "attribs": {} +}; +exports.threeBars = threeBars; \ No newline at end of file diff --git a/dist/oct/thumbsdown.js b/dist/oct/thumbsdown.js new file mode 100644 index 000000000..a02089c7b --- /dev/null +++ b/dist/oct/thumbsdown.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.thumbsdown = void 0; +var thumbsdown = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M15.98 7.83l-.97-5.95C14.84.5 13.13 0 12 0H5.69c-.2 0-.38.05-.53.14L3.72 1H2C.94 1 0 1.94 0 3v4c0 1.06.94 2.02 2 2h2c.91 0 1.39.45 2.39 1.55.91 1 .88 1.8.63 3.27-.08.5.06 1 .42 1.42.39.47.98.76 1.56.76 1.83 0 3-3.71 3-5.01l-.02-.98h2.04c1.16 0 1.95-.8 1.98-1.97 0-.11-.02-.21-.02-.21zm-1.97 1.19h-1.99c-.7 0-1.03.28-1.03.97l.03 1.03c0 1.27-1.17 4-2 4-.5 0-1.08-.5-1-1 .25-1.58.34-2.78-.89-4.14C6.11 8.75 5.36 8 4 8V2l1.67-1H12c.73 0 1.95.31 2 1l.02.02 1 6c-.03.64-.38 1-1 1h-.01z" + }, + "children": [] + }], + "attribs": {} +}; +exports.thumbsdown = thumbsdown; \ No newline at end of file diff --git a/dist/oct/thumbsup.js b/dist/oct/thumbsup.js new file mode 100644 index 000000000..87b91d9d5 --- /dev/null +++ b/dist/oct/thumbsup.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.thumbsup = void 0; +var thumbsup = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M15.98 8.17l-.97 5.95C14.84 15.5 13.13 16 12 16H5.69c-.2 0-.38-.05-.53-.14L3.72 15H2c-1.06 0-2-.94-2-2V9c0-1.06.94-2.02 2-2h2c.91 0 1.39-.45 2.39-1.55.91-1 .88-1.8.63-3.27-.08-.5.06-1 .42-1.42C7.83.29 8.42 0 9 0c1.83 0 3 3.71 3 5.01l-.02.98h2.04c1.16 0 1.95.8 1.98 1.97 0 .11-.02.21-.02.21zm-1.97-1.19h-1.99c-.7 0-1.03-.28-1.03-.97l.03-1.03c0-1.27-1.17-4-2-4-.5 0-1.08.5-1 1 .25 1.58.34 2.78-.89 4.14C6.11 7.25 5.36 8 4 8v6l1.67 1H12c.73 0 1.95-.31 2-1l.02-.02 1-6c-.03-.64-.38-1-1-1h-.01z" + }, + "children": [] + }], + "attribs": {} +}; +exports.thumbsup = thumbsup; \ No newline at end of file diff --git a/dist/oct/tools.js b/dist/oct/tools.js new file mode 100644 index 000000000..79e6741f8 --- /dev/null +++ b/dist/oct/tools.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.tools = void 0; +var tools = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M4.48 7.27c.26.26 1.28 1.33 1.28 1.33l.56-.58-.88-.91 1.69-1.8s-.76-.74-.43-.45c.32-1.19.03-2.51-.87-3.44C4.93.5 3.66.2 2.52.51l1.93 2-.51 1.96-1.89.52-1.93-2C-.19 4.17.1 5.48 1 6.4c.94.98 2.29 1.26 3.48.87zm6.44 1.94l-2.33 2.3 3.84 3.98c.31.33.73.49 1.14.49.41 0 .82-.16 1.14-.49.63-.65.63-1.7 0-2.35l-3.79-3.93zM16 2.53L13.55 0 6.33 7.46l.88.91-4.31 4.46-.99.53-1.39 2.27.35.37 2.2-1.44.51-1.02L7.9 9.08l.88.91L16 2.53z" + }, + "children": [] + }], + "attribs": {} +}; +exports.tools = tools; \ No newline at end of file diff --git a/dist/oct/trashcan.js b/dist/oct/trashcan.js new file mode 100644 index 000000000..e2678f2e5 --- /dev/null +++ b/dist/oct/trashcan.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.trashcan = void 0; +var trashcan = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M11 2H9c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1H2c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1v9c0 .55.45 1 1 1h7c.55 0 1-.45 1-1V5c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm-1 12H3V5h1v8h1V5h1v8h1V5h1v8h1V5h1v9zm1-10H2V3h9v1z" + }, + "children": [] + }], + "attribs": {} +}; +exports.trashcan = trashcan; \ No newline at end of file diff --git a/dist/oct/triangleDown.js b/dist/oct/triangleDown.js new file mode 100644 index 000000000..120a499b2 --- /dev/null +++ b/dist/oct/triangleDown.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.triangleDown = void 0; +var triangleDown = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M0 5l6 6 6-6H0z" + }, + "children": [] + }], + "attribs": {} +}; +exports.triangleDown = triangleDown; \ No newline at end of file diff --git a/dist/oct/triangleLeft.js b/dist/oct/triangleLeft.js new file mode 100644 index 000000000..20a214adc --- /dev/null +++ b/dist/oct/triangleLeft.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.triangleLeft = void 0; +var triangleLeft = { + "viewBox": "0 0 6 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M6 2L0 8l6 6V2z" + }, + "children": [] + }], + "attribs": {} +}; +exports.triangleLeft = triangleLeft; \ No newline at end of file diff --git a/dist/oct/triangleRight.js b/dist/oct/triangleRight.js new file mode 100644 index 000000000..f54a34fe1 --- /dev/null +++ b/dist/oct/triangleRight.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.triangleRight = void 0; +var triangleRight = { + "viewBox": "0 0 6 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M0 14l6-6-6-6v12z" + }, + "children": [] + }], + "attribs": {} +}; +exports.triangleRight = triangleRight; \ No newline at end of file diff --git a/dist/oct/triangleUp.js b/dist/oct/triangleUp.js new file mode 100644 index 000000000..9f5c57c7d --- /dev/null +++ b/dist/oct/triangleUp.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.triangleUp = void 0; +var triangleUp = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M12 11L6 5l-6 6h12z" + }, + "children": [] + }], + "attribs": {} +}; +exports.triangleUp = triangleUp; \ No newline at end of file diff --git a/dist/oct/unfold.js b/dist/oct/unfold.js new file mode 100644 index 000000000..074018097 --- /dev/null +++ b/dist/oct/unfold.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.unfold = void 0; +var unfold = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M11.5 7.5L14 10c0 .55-.45 1-1 1H9v-1h3.5l-2-2h-7l-2 2H5v1H1c-.55 0-1-.45-1-1l2.5-2.5L0 5c0-.55.45-1 1-1h4v1H1.5l2 2h7l2-2H9V4h4c.55 0 1 .45 1 1l-2.5 2.5zM6 6h2V3h2L7 0 4 3h2v3zm2 3H6v3H4l3 3 3-3H8V9z" + }, + "children": [] + }], + "attribs": {} +}; +exports.unfold = unfold; \ No newline at end of file diff --git a/dist/oct/unmute.js b/dist/oct/unmute.js new file mode 100644 index 000000000..d6431b9df --- /dev/null +++ b/dist/oct/unmute.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.unmute = void 0; +var unmute = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M12 8.02c0 1.09-.45 2.09-1.17 2.83l-.67-.67c.55-.56.89-1.31.89-2.16 0-.85-.34-1.61-.89-2.16l.67-.67A3.99 3.99 0 0112 8.02zM7.72 2.28L4 6H2c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h2l3.72 3.72c.47.47 1.28.14 1.28-.53V2.81c0-.67-.81-1-1.28-.53zm5.94.08l-.67.67a6.996 6.996 0 012.06 4.98c0 1.94-.78 3.7-2.06 4.98l.67.67A7.973 7.973 0 0016 8c0-2.22-.89-4.22-2.34-5.66v.02zm-1.41 1.41l-.69.67a5.05 5.05 0 011.48 3.58c0 1.39-.56 2.66-1.48 3.56l.69.67A5.971 5.971 0 0014 8.02c0-1.65-.67-3.16-1.75-4.25z" + }, + "children": [] + }], + "attribs": {} +}; +exports.unmute = unmute; \ No newline at end of file diff --git a/dist/oct/unsaved.js b/dist/oct/unsaved.js new file mode 100644 index 000000000..970c2adab --- /dev/null +++ b/dist/oct/unsaved.js @@ -0,0 +1,18 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.unsaved = void 0; +var unsaved = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 0H4c-.73 0-1 .27-1 1v1.982l10 5.774V1c0-.73-.27-1-1-1zm1 12.203l1.606.928.75-1.3-13.856-8-.75 1.3L3 6.43V16l5-3.09L13 16v-3.797z" + }, + "children": [] + }], + "attribs": {} +}; +exports.unsaved = unsaved; \ No newline at end of file diff --git a/dist/oct/unverified.js b/dist/oct/unverified.js new file mode 100644 index 000000000..004472f10 --- /dev/null +++ b/dist/oct/unverified.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.unverified = void 0; +var unverified = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M15.67 7.066l-1.08-1.34a1.5 1.5 0 01-.309-.77l-.19-1.698a1.51 1.51 0 00-1.329-1.33l-1.699-.19c-.3-.03-.56-.159-.78-.329L8.945.33a1.504 1.504 0 00-1.878 0l-1.34 1.08a1.5 1.5 0 01-.77.31l-1.698.19c-.7.08-1.25.63-1.33 1.329l-.19 1.699c-.03.3-.159.56-.329.78L.33 7.055a1.504 1.504 0 000 1.878l1.08 1.34c.17.22.28.48.31.77l.19 1.698c.08.7.63 1.25 1.329 1.33l1.699.19c.3.03.56.159.78.329l1.339 1.08c.55.439 1.329.439 1.878 0l1.34-1.08c.22-.17.48-.28.77-.31l1.698-.19c.7-.08 1.25-.63 1.33-1.329l.19-1.699c.03-.3.159-.56.329-.78l1.08-1.339a1.504 1.504 0 000-1.878zM9 11.5c0 .28-.22.5-.5.5h-1c-.27 0-.5-.22-.5-.5v-1c0-.28.23-.5.5-.5h1c.28 0 .5.22.5.5v1zm1.56-4.89c-.06.17-.17.33-.3.47-.13.16-.14.19-.33.38-.16.17-.31.3-.52.45-.11.09-.2.19-.28.27-.08.08-.14.17-.19.27-.05.1-.08.19-.11.3-.03.11-.03.13-.03.25H7.13c0-.22 0-.31.03-.48.03-.19.08-.36.14-.52.06-.14.14-.28.25-.42.11-.13.23-.25.41-.38.27-.19.36-.3.48-.52.12-.22.2-.38.2-.59 0-.27-.06-.45-.2-.58-.13-.13-.31-.19-.58-.19-.09 0-.19.02-.3.05-.11.03-.17.09-.25.16-.08.07-.14.11-.2.2a.41.41 0 00-.09.28h-2c0-.38.13-.56.27-.83.16-.27.36-.5.61-.67.25-.17.55-.3.88-.38.33-.08.7-.13 1.09-.13.44 0 .83.05 1.17.13.34.09.63.22.88.39.23.17.41.38.55.63.13.25.19.55.19.88 0 .22 0 .42-.08.59l-.02-.01z" + }, + "children": [] + }], + "attribs": {} +}; +exports.unverified = unverified; \ No newline at end of file diff --git a/dist/oct/verified.js b/dist/oct/verified.js new file mode 100644 index 000000000..328b3c5d0 --- /dev/null +++ b/dist/oct/verified.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.verified = void 0; +var verified = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M15.67 7.066l-1.08-1.34a1.5 1.5 0 01-.309-.77l-.19-1.698a1.51 1.51 0 00-1.329-1.33l-1.699-.19c-.3-.03-.56-.159-.78-.329L8.945.33a1.504 1.504 0 00-1.878 0l-1.34 1.08a1.5 1.5 0 01-.77.31l-1.698.19c-.7.08-1.25.63-1.33 1.329l-.19 1.699c-.03.3-.159.56-.329.78L.33 7.055a1.504 1.504 0 000 1.878l1.08 1.34c.17.22.28.48.31.77l.19 1.698c.08.7.63 1.25 1.329 1.33l1.699.19c.3.03.56.159.78.329l1.339 1.08c.55.439 1.329.439 1.878 0l1.34-1.08c.22-.17.48-.28.77-.31l1.698-.19c.7-.08 1.25-.63 1.33-1.329l.19-1.699c.03-.3.159-.56.329-.78l1.08-1.339a1.504 1.504 0 000-1.878zM6.5 12.01L3 8.51l1.5-1.5 2 2 5-5L13 5.56l-6.5 6.45z" + }, + "children": [] + }], + "attribs": {} +}; +exports.verified = verified; \ No newline at end of file diff --git a/dist/oct/versions.js b/dist/oct/versions.js new file mode 100644 index 000000000..2145eceb8 --- /dev/null +++ b/dist/oct/versions.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.versions = void 0; +var versions = { + "viewBox": "0 0 14 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M13 3H7c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1zm-1 8H8V5h4v6zM4 4h1v1H4v6h1v1H4c-.55 0-1-.45-1-1V5c0-.55.45-1 1-1zM1 5h1v1H1v4h1v1H1c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1z" + }, + "children": [] + }], + "attribs": {} +}; +exports.versions = versions; \ No newline at end of file diff --git a/dist/oct/watch.js b/dist/oct/watch.js new file mode 100644 index 000000000..3b162dc4a --- /dev/null +++ b/dist/oct/watch.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.watch = void 0; +var watch = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M6 8h2v1H5V5h1v3zm6 0c0 2.22-1.2 4.16-3 5.19V15c0 .55-.45 1-1 1H4c-.55 0-1-.45-1-1v-1.81C1.2 12.16 0 10.22 0 8s1.2-4.16 3-5.19V1c0-.55.45-1 1-1h4c.55 0 1 .45 1 1v1.81c1.8 1.03 3 2.97 3 5.19zm-1 0c0-2.77-2.23-5-5-5S1 5.23 1 8s2.23 5 5 5 5-2.23 5-5z" + }, + "children": [] + }], + "attribs": {} +}; +exports.watch = watch; \ No newline at end of file diff --git a/dist/oct/workflow.js b/dist/oct/workflow.js new file mode 100644 index 000000000..9c9aab5b4 --- /dev/null +++ b/dist/oct/workflow.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.workflow = void 0; +var workflow = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M3 4.949a2.5 2.5 0 10-1 0v8.049c0 .547.453 1 1 1h2.05a2.5 2.5 0 004.9 0h1.1a2.5 2.5 0 100-1h-1.1a2.5 2.5 0 00-4.9 0H3v-5h2.05a2.5 2.5 0 004.9 0h1.1a2.5 2.5 0 100-1h-1.1a2.5 2.5 0 00-4.9 0H3v-2.05zm9 2.55a1.5 1.5 0 103 0 1.5 1.5 0 00-3 0zm-3 0a1.5 1.5 0 10-3 0 1.5 1.5 0 003 0zm4.5 7.499a1.5 1.5 0 110-3.001 1.5 1.5 0 010 3zm-6-3a1.5 1.5 0 110 3 1.5 1.5 0 010-3z" + }, + "children": [] + }], + "attribs": {} +}; +exports.workflow = workflow; \ No newline at end of file diff --git a/dist/oct/workflowAll.js b/dist/oct/workflowAll.js new file mode 100644 index 000000000..1befd27c1 --- /dev/null +++ b/dist/oct/workflowAll.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.workflowAll = void 0; +var workflowAll = { + "viewBox": "0 0 16 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M10 8A5 5 0 110 8a5 5 0 0110 0zM3.5 5.5l4 2.5-4 2.5v-5zm3.75 7.444a5.001 5.001 0 000-9.888 5 5 0 110 9.888zm3 0a5.001 5.001 0 000-9.888 5 5 0 110 9.888z" + }, + "children": [] + }], + "attribs": {} +}; +exports.workflowAll = workflowAll; \ No newline at end of file diff --git a/dist/oct/x.js b/dist/oct/x.js new file mode 100644 index 000000000..d7013625c --- /dev/null +++ b/dist/oct/x.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.x = void 0; +var x = { + "viewBox": "0 0 12 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M7.48 8l3.75 3.75-1.48 1.48L6 9.48l-3.75 3.75-1.48-1.48L4.52 8 .77 4.25l1.48-1.48L6 6.52l3.75-3.75 1.48 1.48L7.48 8z" + }, + "children": [] + }], + "attribs": {} +}; +exports.x = x; \ No newline at end of file diff --git a/dist/oct/zap.js b/dist/oct/zap.js new file mode 100644 index 000000000..0993263ae --- /dev/null +++ b/dist/oct/zap.js @@ -0,0 +1,19 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.zap = void 0; +var zap = { + "viewBox": "0 0 10 16", + "children": [{ + "name": "path", + "attribs": { + "fill-rule": "evenodd", + "d": "M10 7H6l3-7-9 9h4l-3 7 9-9z" + }, + "children": [] + }], + "attribs": {} +}; +exports.zap = zap; \ No newline at end of file diff --git a/dist/package.json b/dist/package.json new file mode 100644 index 000000000..56f4522e3 --- /dev/null +++ b/dist/package.json @@ -0,0 +1,60 @@ +{ + "name": "react-icons-kit", + "version": "2.0.0", + "description": "React Icons Kit using various Svg Icon set", + "main": "index.js", + "types": "index.d.ts", + "keywords": [ + "react", + "react icons", + "react svg icons", + "fontawesome", + "material design icons", + "icons", + "icons react", + "react-icons", + "react-icons-kit" + ], + "author": "Warren Mira ", + "license": "MIT", + "scripts": { + "predist": "rimraf dist/", + "dist": "babel src --out-dir dist && cp package.json README.md index.d.ts dist", + "test": "jest", + "test:watch": "jest --watch", + "update:octicons": "npm update @primer/octicons && cd scripts && ./extract-octicons.js" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/wmira/react-icons-kit.git" + }, + "peerDependencies": { + "react": ">=15" + }, + "devDependencies": { + "@babel/cli": "^7.2.3", + "@babel/core": "^7.4.0", + "@babel/preset-env": "^7.4.2", + "@babel/preset-react": "^7.0.0", + "@primer/octicons": "^9.6.0", + "cheerio": "^0.22.0", + "cross-env": "^3.1.3", + "css-loader": "^2.1.1", + "fstream": "^1.0.10", + "jest": "^24.5.0", + "node-zip": "^1.1.1", + "react": "^16.8.6", + "react-dom": "^16.8.6", + "react-test-renderer": "^16.3.2", + "rimraf": "^2.5.4", + "style-loader": "^0.13.1", + "svgfont2js": "^0.1.2", + "webpack": "^4.29.6", + "webpack-cli": "^3.3.0", + "webpack-dev-server": "^3.2.1" + }, + "dependencies": { + "camel-case": "^4.1.2", + "prop-types": "^15.5.8" + } +} diff --git a/dist/typicons/adjustBrightness.js b/dist/typicons/adjustBrightness.js new file mode 100644 index 000000000..46c921766 --- /dev/null +++ b/dist/typicons/adjustBrightness.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.adjustBrightness = void 0; +var adjustBrightness = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 6.934l1-2.934c.072-.213.078-.452 0-.682-.188-.553-.789-.848-1.341-.659-.553.189-.847.788-.659 1.341l1 2.934zM4 11c-.213-.072-.452-.078-.682 0-.553.188-.848.789-.659 1.341.189.553.788.847 1.341.659l2.934-1-2.934-1zM12 17.066l-1 2.934c-.072.213-.078.452 0 .682.188.553.789.848 1.341.659.553-.189.847-.788.659-1.341l-1-2.934zM21.341 11.657c-.188-.553-.788-.848-1.341-.659l-2.934 1 2.934 1c.213.072.452.078.682 0 .552-.188.847-.789.659-1.341zM5.636 7.05l2.781 1.367-1.367-2.781c-.1-.202-.265-.375-.482-.482-.524-.258-1.157-.042-1.415.482-.257.523-.041 1.157.483 1.414zM5.153 17.432c-.257.523-.041 1.156.482 1.414.523.257 1.157.041 1.414-.482l1.367-2.781-2.781 1.367c-.201.099-.374.263-.482.482zM18.363 16.949l-2.781-1.367 1.367 2.781c.1.202.264.375.482.482.523.257 1.156.041 1.414-.482s.042-1.157-.482-1.414zM18.844 6.566c.258-.524.042-1.157-.481-1.415-.523-.257-1.157-.041-1.414.482l-1.369 2.783 2.782-1.368c.202-.1.375-.264.482-.482zM12 7.5c-2.481 0-4.5 2.019-4.5 4.5s2.019 4.5 4.5 4.5 4.5-2.019 4.5-4.5-2.019-4.5-4.5-4.5z" + }, + "children": [] + }] +}; +exports.adjustBrightness = adjustBrightness; \ No newline at end of file diff --git a/dist/typicons/adjustContrast.js b/dist/typicons/adjustContrast.js new file mode 100644 index 000000000..d1b01daaf --- /dev/null +++ b/dist/typicons/adjustContrast.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.adjustContrast = void 0; +var adjustContrast = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12 4c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zm0 14c-3.314 0-6-2.686-6-6s2.686-6 6-6 6 2.686 6 6-2.686 6-6 6zM12 7v10c2.757 0 5-2.243 5-5s-2.243-5-5-5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12 4c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zm0 14c-3.314 0-6-2.686-6-6s2.686-6 6-6 6 2.686 6 6-2.686 6-6 6zM12 7v10c2.757 0 5-2.243 5-5s-2.243-5-5-5z" + }, + "children": [] + }] + }] + }] +}; +exports.adjustContrast = adjustContrast; \ No newline at end of file diff --git a/dist/typicons/anchor.js b/dist/typicons/anchor.js new file mode 100644 index 000000000..ed604e919 --- /dev/null +++ b/dist/typicons/anchor.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.anchor = void 0; +var anchor = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18 13.5c-.553 0-1 .447-1 1 0 2.414-1.721 4.434-4 4.898v-7.398h4c.553 0 1-.447 1-1s-.447-1-1-1h-4v-1.184c1.162-.413 2-1.511 2-2.816 0-1.657-1.343-3-3-3s-3 1.343-3 3c0 1.305.838 2.403 2 2.816v1.184h-4c-.553 0-1 .447-1 1s.447 1 1 1h4v7.398c-2.279-.465-4-2.484-4-4.898 0-.553-.447-1-1-1s-1 .447-1 1c0 3.859 3.141 7 7 7s7-3.141 7-7c0-.553-.447-1-1-1zm-6-8.5c.551 0 1 .449 1 1s-.449 1-1 1-1-.449-1-1 .449-1 1-1z" + }, + "children": [] + }] +}; +exports.anchor = anchor; \ No newline at end of file diff --git a/dist/typicons/anchorOutline.js b/dist/typicons/anchorOutline.js new file mode 100644 index 000000000..262f42623 --- /dev/null +++ b/dist/typicons/anchorOutline.js @@ -0,0 +1,59 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.anchorOutline = void 0; +var anchorOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "6", + "r": "1" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "6", + "r": "1" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19.793 12.096c.134-.34.207-.709.207-1.096 0-1.654-1.346-3-3-3h-.422c.273-.619.422-1.297.422-2 0-2.757-2.243-5-5-5s-5 2.243-5 5c0 .703.149 1.381.422 2h-.422c-1.654 0-3 1.346-3 3 0 .387.073.756.207 1.096-.732.548-1.207 1.422-1.207 2.404 0 4.963 4.037 9 9 9s9-4.037 9-9c0-.982-.475-1.856-1.207-2.404zm-7.793 9.404c-3.859 0-7-3.141-7-7 0-.553.447-1 1-1s1 .447 1 1c0 2.414 1.721 4.434 4 4.898v-7.398h-4c-.553 0-1-.447-1-1s.447-1 1-1h4v-1.184c-1.162-.413-2-1.511-2-2.816 0-1.657 1.343-3 3-3s3 1.343 3 3c0 1.305-.838 2.403-2 2.816v1.184h4c.553 0 1 .447 1 1s-.447 1-1 1h-4v7.398c2.279-.465 4-2.484 4-4.898 0-.553.447-1 1-1s1 .447 1 1c0 3.859-3.141 7-7 7zm-4.679-8.5h2.679v4.962c-1.207-.701-2-2.009-2-3.462 0-.597-.263-1.133-.679-1.5zm9.358 0c-.416.367-.679.903-.679 1.5 0 1.453-.793 2.761-2 3.462v-4.962h2.679z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19.793 12.096c.134-.34.207-.709.207-1.096 0-1.654-1.346-3-3-3h-.422c.273-.619.422-1.297.422-2 0-2.757-2.243-5-5-5s-5 2.243-5 5c0 .703.149 1.381.422 2h-.422c-1.654 0-3 1.346-3 3 0 .387.073.756.207 1.096-.732.548-1.207 1.422-1.207 2.404 0 4.963 4.037 9 9 9s9-4.037 9-9c0-.982-.475-1.856-1.207-2.404zm-7.793 9.404c-3.859 0-7-3.141-7-7 0-.553.447-1 1-1s1 .447 1 1c0 2.414 1.721 4.434 4 4.898v-7.398h-4c-.553 0-1-.447-1-1s.447-1 1-1h4v-1.184c-1.162-.413-2-1.511-2-2.816 0-1.657 1.343-3 3-3s3 1.343 3 3c0 1.305-.838 2.403-2 2.816v1.184h4c.553 0 1 .447 1 1s-.447 1-1 1h-4v7.398c2.279-.465 4-2.484 4-4.898 0-.553.447-1 1-1s1 .447 1 1c0 3.859-3.141 7-7 7zm-4.679-8.5h2.679v4.962c-1.207-.701-2-2.009-2-3.462 0-.597-.263-1.133-.679-1.5zm9.358 0c-.416.367-.679.903-.679 1.5 0 1.453-.793 2.761-2 3.462v-4.962h2.679z" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "6", + "r": "1" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "6", + "r": "1" + }, + "children": [] + }] + }] + }] +}; +exports.anchorOutline = anchorOutline; \ No newline at end of file diff --git a/dist/typicons/archive.js b/dist/typicons/archive.js new file mode 100644 index 000000000..184c4bd4f --- /dev/null +++ b/dist/typicons/archive.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.archive = void 0; +var archive = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M13 12h-3c-.276 0-.5.224-.5.5s.224.5.5.5h3c.276 0 .5-.224.5-.5s-.224-.5-.5-.5zM20 5h-17c-.553 0-1 .448-1 1s.447 1 1 1h17c.553 0 1-.448 1-1s-.447-1-1-1zM18 8h-13c-.553 0-1 .448-1 1v8c0 1.654 1.346 3 3 3h9c1.654 0 3-1.346 3-3v-8c0-.552-.447-1-1-1zm-2 10h-9c-.552 0-1-.449-1-1v-7h11v7c0 .551-.448 1-1 1z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M13 12h-3c-.276 0-.5.224-.5.5s.224.5.5.5h3c.276 0 .5-.224.5-.5s-.224-.5-.5-.5zM20 5h-17c-.553 0-1 .448-1 1s.447 1 1 1h17c.553 0 1-.448 1-1s-.447-1-1-1zM18 8h-13c-.553 0-1 .448-1 1v8c0 1.654 1.346 3 3 3h9c1.654 0 3-1.346 3-3v-8c0-.552-.447-1-1-1zm-2 10h-9c-.552 0-1-.449-1-1v-7h11v7c0 .551-.448 1-1 1z" + }, + "children": [] + }] + }] + }] +}; +exports.archive = archive; \ No newline at end of file diff --git a/dist/typicons/arrowBack.js b/dist/typicons/arrowBack.js new file mode 100644 index 000000000..b5d5b4600 --- /dev/null +++ b/dist/typicons/arrowBack.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowBack = void 0; +var arrowBack = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 9.059v-2.559c0-.256-.098-.512-.293-.708-.195-.195-.451-.292-.707-.292s-.512.097-.707.292l-6.293 6.208 6.293 6.207c.195.195.451.293.707.293s.512-.098.707-.293.293-.452.293-.707v-2.489c2.75.068 5.755.566 8 3.989v-1c0-4.633-3.5-8.443-8-8.941z" + }, + "children": [] + }] +}; +exports.arrowBack = arrowBack; \ No newline at end of file diff --git a/dist/typicons/arrowBackOutline.js b/dist/typicons/arrowBackOutline.js new file mode 100644 index 000000000..ea05b5c26 --- /dev/null +++ b/dist/typicons/arrowBackOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowBackOutline = void 0; +var arrowBackOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M19.164 19.547c-1.641-2.5-3.669-3.285-6.164-3.484v1.437c0 .534-.208 1.036-.586 1.414-.756.756-2.077.751-2.823.005l-6.293-6.207c-.191-.189-.298-.444-.298-.713s.107-.524.298-.712l6.288-6.203c.754-.755 2.073-.756 2.829.001.377.378.585.88.585 1.414v1.704c4.619.933 8 4.997 8 9.796v1c0 .442-.29.832-.714.958-.095.027-.19.042-.286.042-.331 0-.646-.165-.836-.452zm-7.141-5.536c2.207.056 4.638.394 6.758 2.121-.768-3.216-3.477-5.702-6.893-6.08-.504-.056-.888-.052-.888-.052v-3.497l-5.576 5.496 5.576 5.5v-3.499l1.023.011z" + }, + "children": [] + }] +}; +exports.arrowBackOutline = arrowBackOutline; \ No newline at end of file diff --git a/dist/typicons/arrowDown.js b/dist/typicons/arrowDown.js new file mode 100644 index 000000000..002859b7b --- /dev/null +++ b/dist/typicons/arrowDown.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowDown = void 0; +var arrowDown = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M16.707 13.293c-.391-.391-1.023-.391-1.414 0l-2.293 2.293v-7.586c0-.552-.447-1-1-1s-1 .448-1 1v7.586l-2.293-2.293c-.391-.391-1.023-.391-1.414 0s-.391 1.023 0 1.414l4.707 4.707 4.707-4.707c.391-.391.391-1.023 0-1.414z" + }, + "children": [] + }] +}; +exports.arrowDown = arrowDown; \ No newline at end of file diff --git a/dist/typicons/arrowDownOutline.js b/dist/typicons/arrowDownOutline.js new file mode 100644 index 000000000..17dd686de --- /dev/null +++ b/dist/typicons/arrowDownOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowDownOutline = void 0; +var arrowDownOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 21.312l-7.121-7.121c-1.17-1.17-1.17-3.073 0-4.242 1.094-1.094 2.978-1.138 4.121-.115v-4.834c0-1.654 1.346-3 3-3s3 1.346 3 3v4.834c1.143-1.023 3.027-.979 4.121.115 1.17 1.169 1.17 3.072 0 4.242l-7.121 7.121zm-5-10.242c-.268 0-.518.104-.707.293-.391.39-.391 1.023 0 1.414l5.707 5.707 5.707-5.707c.391-.391.391-1.024 0-1.414-.379-.379-1.035-.379-1.414 0l-3.293 3.293v-9.656c0-.551-.448-1-1-1s-1 .449-1 1v9.656l-3.293-3.293c-.189-.189-.439-.293-.707-.293z" + }, + "children": [] + }] +}; +exports.arrowDownOutline = arrowDownOutline; \ No newline at end of file diff --git a/dist/typicons/arrowDownThick.js b/dist/typicons/arrowDownThick.js new file mode 100644 index 000000000..c1792d776 --- /dev/null +++ b/dist/typicons/arrowDownThick.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowDownThick = void 0; +var arrowDownThick = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.414 10.656c-.781-.781-2.047-.781-2.828 0l-1.586 1.586v-7.242c0-1.105-.896-2-2-2-1.105 0-2 .895-2 2v7.242l-1.586-1.586c-.781-.781-2.047-.781-2.828 0s-.781 2.047 0 2.828l6.414 6.414 6.414-6.414c.781-.781.781-2.046 0-2.828z" + }, + "children": [] + }] +}; +exports.arrowDownThick = arrowDownThick; \ No newline at end of file diff --git a/dist/typicons/arrowForward.js b/dist/typicons/arrowForward.js new file mode 100644 index 000000000..b1dc648f2 --- /dev/null +++ b/dist/typicons/arrowForward.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowForward = void 0; +var arrowForward = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M13 5.499c-.256 0-.512.097-.707.292-.195.196-.293.452-.293.708v2.559c-4.5.498-8 4.309-8 8.941v1c2.245-3.423 5.25-3.92 8-3.989v2.489c0 .255.098.512.293.707s.451.293.707.293.512-.098.707-.293l6.293-6.207-6.293-6.208c-.195-.195-.451-.292-.707-.292z" + }, + "children": [] + }] +}; +exports.arrowForward = arrowForward; \ No newline at end of file diff --git a/dist/typicons/arrowForwardOutline.js b/dist/typicons/arrowForwardOutline.js new file mode 100644 index 000000000..04c5807d7 --- /dev/null +++ b/dist/typicons/arrowForwardOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowForwardOutline = void 0; +var arrowForwardOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 19.999c-.096 0-.191-.015-.286-.042-.424-.126-.714-.516-.714-.958v-1c0-4.8 3.381-8.864 8-9.796v-1.704c0-.534.208-1.036.585-1.414.756-.757 2.075-.756 2.829-.001l6.288 6.203c.191.188.298.443.298.712s-.107.524-.298.712l-6.293 6.207c-.746.746-2.067.751-2.823-.005-.378-.378-.586-.88-.586-1.414v-1.437c-2.495.201-4.523.985-6.164 3.484-.19.288-.505.453-.836.453zm8-5.989l1-.01v3.499l5.576-5.5-5.576-5.496v3.497s-.384-.004-.891.052c-3.416.378-6.125 2.864-6.892 6.08 2.121-1.728 4.551-2.066 6.783-2.122z" + }, + "children": [] + }] +}; +exports.arrowForwardOutline = arrowForwardOutline; \ No newline at end of file diff --git a/dist/typicons/arrowLeft.js b/dist/typicons/arrowLeft.js new file mode 100644 index 000000000..354aad2ca --- /dev/null +++ b/dist/typicons/arrowLeft.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowLeft = void 0; +var arrowLeft = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M17 11h-7.586l2.293-2.293c.391-.391.391-1.023 0-1.414s-1.023-.391-1.414 0l-4.707 4.707 4.707 4.707c.195.195.451.293.707.293s.512-.098.707-.293c.391-.391.391-1.023 0-1.414l-2.293-2.293h7.586c.552 0 1-.448 1-1s-.448-1-1-1z" + }, + "children": [] + }] +}; +exports.arrowLeft = arrowLeft; \ No newline at end of file diff --git a/dist/typicons/arrowLeftOutline.js b/dist/typicons/arrowLeftOutline.js new file mode 100644 index 000000000..c6d742193 --- /dev/null +++ b/dist/typicons/arrowLeftOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowLeftOutline = void 0; +var arrowLeftOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M10.928 21c-.801 0-1.555-.312-2.121-.879l-7.121-7.121 7.121-7.121c1.133-1.134 3.109-1.134 4.242 0 .566.564.879 1.317.879 2.119 0 .746-.27 1.451-.764 2.002h4.836c1.654 0 3 1.346 3 3s-1.346 3-3 3h-4.836c.493.549.764 1.252.764 1.998.002.802-.312 1.557-.879 2.124-.567.566-1.32.878-2.121.878zm-6.414-8l5.707 5.707c.379.378 1.035.378 1.414 0 .189-.189.293-.441.293-.708s-.104-.517-.291-.705l-3.295-3.294h9.658c.552 0 1-.449 1-1s-.448-1-1-1h-9.658l3.293-3.293c.189-.189.293-.441.293-.708s-.104-.517-.292-.705c-.381-.38-1.036-.379-1.415-.001l-5.707 5.707z" + }, + "children": [] + }] +}; +exports.arrowLeftOutline = arrowLeftOutline; \ No newline at end of file diff --git a/dist/typicons/arrowLeftThick.js b/dist/typicons/arrowLeftThick.js new file mode 100644 index 000000000..11a7df0d2 --- /dev/null +++ b/dist/typicons/arrowLeftThick.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowLeftThick = void 0; +var arrowLeftThick = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18 11h-7.244l1.586-1.586c.781-.781.781-2.049 0-2.828-.781-.781-2.047-.781-2.828 0l-6.414 6.414 6.414 6.414c.39.391.902.586 1.414.586s1.023-.195 1.414-.586c.781-.781.781-2.049 0-2.828l-1.586-1.586h7.244c1.104 0 2-.896 2-2 0-1.105-.896-2-2-2z" + }, + "children": [] + }] +}; +exports.arrowLeftThick = arrowLeftThick; \ No newline at end of file diff --git a/dist/typicons/arrowLoop.js b/dist/typicons/arrowLoop.js new file mode 100644 index 000000000..9d27e9636 --- /dev/null +++ b/dist/typicons/arrowLoop.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowLoop = void 0; +var arrowLoop = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M16.5 8h-2.086l1.293-1.293c.391-.391.391-1.023 0-1.414s-1.023-.391-1.414 0l-3.707 3.707 3.707 3.707c.195.195.451.293.707.293s.512-.098.707-.293c.391-.391.391-1.023 0-1.414l-1.293-1.293h2.086c1.379 0 2.5 1.346 2.5 3s-1.346 3-3 3h-8c-1.654 0-3-1.346-3-3s1.346-3 3-3c.553 0 1-.448 1-1s-.447-1-1-1c-2.757 0-5 2.243-5 5s2.243 5 5 5h8c2.757 0 5-2.243 5-5s-2.019-5-4.5-5z" + }, + "children": [] + }] +}; +exports.arrowLoop = arrowLoop; \ No newline at end of file diff --git a/dist/typicons/arrowLoopOutline.js b/dist/typicons/arrowLoopOutline.js new file mode 100644 index 000000000..6e386c775 --- /dev/null +++ b/dist/typicons/arrowLoopOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowLoopOutline = void 0; +var arrowLoopOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.994 7.187l.006-.187c0-.801-.312-1.555-.879-2.121-.566-.567-1.32-.879-2.121-.879s-1.555.312-2.121.879l-2.883 2.883c-.531-.474-1.23-.762-1.996-.762h-1c-3.859 0-7 3.14-7 7s3.141 7 7 7h9c3.859 0 7-3.14 7-7 0-3.306-2.14-6.084-5.006-6.813zm-1.994 11.813h-9c-2.757 0-5-2.243-5-5s2.243-5 5-5h1c.553 0 1 .448 1 1s-.447 1-1 1h-1c-1.654 0-3 1.346-3 3s1.346 3 3 3h9c1.654 0 3-1.346 3-3s-1.121-3-2.5-3h-2.086l1.293 1.293c.391.391.391 1.023 0 1.414-.195.195-.451.293-.707.293s-.512-.098-.707-.293l-3.707-3.707 3.707-3.707c.195-.195.451-.293.707-.293s.512.098.707.293c.391.391.391 1.023 0 1.414l-1.293 1.293h2.086c2.481 0 4.5 2.243 4.5 5s-2.243 5-5 5zm.749-6.971c.7.164 1.251 1 1.251 1.971 0 1.103-.897 2-2 2h-9c-1.103 0-2-.897-2-2s.897-2 2-2h1c.856 0 1.588-.541 1.873-1.299l3.713 3.713c.378.378.88.586 1.414.586s1.036-.208 1.414-.586.586-.88.586-1.414c0-.345-.087-.677-.251-.971z" + }, + "children": [] + }] +}; +exports.arrowLoopOutline = arrowLoopOutline; \ No newline at end of file diff --git a/dist/typicons/arrowMaximise.js b/dist/typicons/arrowMaximise.js new file mode 100644 index 000000000..be3b86f04 --- /dev/null +++ b/dist/typicons/arrowMaximise.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowMaximise = void 0; +var arrowMaximise = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M15 4c-.553 0-1 .448-1 1s.447 1 1 1h1.586l-3.293 3.293c-.391.391-.391 1.023 0 1.414.195.195.451.293.707.293s.512-.098.707-.293l3.293-3.293v1.586c0 .552.447 1 1 1s1-.448 1-1v-5h-5zM9.293 13.293l-3.293 3.293v-1.586c0-.552-.447-1-1-1s-1 .448-1 1v4.999h.996l4.004.001c.552 0 1-.448 1-1s-.447-1-1-1h-1.586l3.293-3.292c.391-.391.391-1.023 0-1.414s-1.023-.392-1.414-.001zM7 12c.552 0 1-.448 1-1v-3h3c.553 0 1-.448 1-1s-.447-1-1-1h-4.999l-.001 5c0 .552.447 1 1 1zM17 12c-.553 0-1 .448-1 1v3h-3c-.553 0-1 .448-1 1s.447 1 1 1h5v-5c0-.552-.447-1-1-1z" + }, + "children": [] + }] +}; +exports.arrowMaximise = arrowMaximise; \ No newline at end of file diff --git a/dist/typicons/arrowMaximiseOutline.js b/dist/typicons/arrowMaximiseOutline.js new file mode 100644 index 000000000..6feca0173 --- /dev/null +++ b/dist/typicons/arrowMaximiseOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowMaximiseOutline = void 0; +var arrowMaximiseOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M19 3h-5.243c-1.302 0-2.401.838-2.815 2h-6.942v7.061l.012.12c-1.167.41-2.012 1.512-2.012 2.819v7h7c1.311 0 2.593-.826 3-2h7v-7.061l-.012-.12c1.167-.41 2.012-1.512 2.012-2.819v-7h-2zm-2 15h-5c-.553 0-1-.448-1-1s.447-1 1-1h3v-3.061c0-.552.447-1 1-1s1 .448 1 1v5.061zm-11-11h5.061c.553 0 1 .448 1 1s-.447 1-1 1h-3.061v3.061c0 .552-.448 1-1 1-.553 0-1-.448-1-1v-5.061zm13 3c0 .552-.447 1-1 1s-1-.448-1-1v-1.586l-3.293 3.293c-.195.195-.451.293-.707.293s-.512-.098-.707-.293c-.391-.391-.391-1.023 0-1.414l3.293-3.293h-1.586c-.553 0-1-.448-1-1s.447-1 1-1h5v5zm-10 10h-5v-5c0-.552.447-1 1-1s1 .448 1 1v1.586l3.293-3.293c.195-.195.451-.293.707-.293s.512.098.707.293c.391.391.391 1.023 0 1.414l-3.293 3.293h1.586c.553 0 1 .448 1 1s-.448 1-1 1zm2.414-7.414c-.378-.378-.88-.586-1.414-.586-.367 0-.716.105-1.023.289l.023-.228v-2.061h2.061l.229-.023c-.186.307-.29.656-.29 1.023 0 .534.208 1.036.586 1.414s.88.586 1.414.586c.367 0 .716-.105 1.023-.289l-.023.228v2.061h-1.939c-.122 0-.24.015-.356.036.189-.31.295-.664.295-1.036 0-.534-.208-1.036-.586-1.414z" + }, + "children": [] + }] +}; +exports.arrowMaximiseOutline = arrowMaximiseOutline; \ No newline at end of file diff --git a/dist/typicons/arrowMinimise.js b/dist/typicons/arrowMinimise.js new file mode 100644 index 000000000..fc016b91f --- /dev/null +++ b/dist/typicons/arrowMinimise.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowMinimise = void 0; +var arrowMinimise = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M6.121 13c-.553 0-1 .448-1 1s.447 1 1 1h1.465l-3.293 3.293c-.391.391-.391 1.023 0 1.414.195.195.451.293.707.293s.512-.098.707-.293l3.414-3.414v1.707c0 .552.447 1 1 1s.879-.448.879-1v-5h-4.879zM7 11c.552 0 1-.448 1-1v-2h2c.553 0 1-.448 1-1s-.447-1-1-1h-3.999l-.001 4c0 .552.447 1 1 1zM17 13c-.553 0-1 .448-1 1v2h-2c-.553 0-1 .448-1 1s.447 1 1 1h4v-4c0-.552-.447-1-1-1zM18.293 4.293l-3.293 3.293v-1.586c0-.552-.447-1-1-1s-1 .448-1 1v5h5c.552 0 1-.448 1-1s-.447-1-1-1h-1.586l3.293-3.292c.391-.391.391-1.023 0-1.414s-1.023-.392-1.414-.001z" + }, + "children": [] + }] +}; +exports.arrowMinimise = arrowMinimise; \ No newline at end of file diff --git a/dist/typicons/arrowMinimiseOutline.js b/dist/typicons/arrowMinimiseOutline.js new file mode 100644 index 000000000..7f4476fce --- /dev/null +++ b/dist/typicons/arrowMinimiseOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowMinimiseOutline = void 0; +var arrowMinimiseOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M22 6c0-.801-.312-1.555-.879-2.121-.566-.567-1.32-.879-2.121-.879s-1.555.312-2.121.879l-.883.883c-.531-.474-1.23-.762-1.996-.762-.919 0-1.732.424-2.283 1.077-.212-.047-.431-.077-.656-.077h-6.061v6.06c0 .255.042.499.102.736-.598.549-.98 1.33-.98 2.204 0 .735.266 1.409.705 1.931l-.947.948c-.568.566-.88 1.32-.88 2.121s.312 1.555.879 2.121c.566.567 1.32.879 2.121.879.539 0 1.334-.152 2.061-.879l.903-.919c.535.495 1.251.798 2.036.798.934 0 1.758-.437 2.309-1.107.241.063.49.107.752.107h5.939v-6.061c0-.226-.029-.444-.077-.656.653-.55 1.077-1.364 1.077-2.283 0-.766-.288-1.465-.762-1.996l.883-.883c.567-.566.879-1.32.879-2.121zm-15 1h4c.553 0 1 .448 1 1s-.447 1-1 1h-2v2c0 .552-.448 1-1 1-.553 0-1-.448-1-1v-4zm12.707-.293l-3.293 3.293h1.586c.553 0 1 .448 1 1s-.448 1-1 1h-5v-5c0-.552.447-1 1-1s1 .448 1 1v1.586l3.293-3.293c.195-.195.451-.293.707-.293s.512.098.707.293c.391.391.391 1.023 0 1.414zm-7.707 11.293c0 .552-.447 1-1 1s-1-.448-1-1v-1.707l-3.354 3.414c-.195.195-.39.293-.646.293s-.512-.098-.707-.293c-.391-.391-.391-1.023 0-1.414l3.293-3.293h-1.465c-.553 0-1-.448-1-1s.447-1 1-1h4.879v5zm0-6h-2.278c.173-.295.278-.634.278-1v-1h1.061c.342 0 .658-.094.939-.245v2.245zm1 1h2.713c-.433.094-.713.33-.713.939v1.061h-.939c-.391 0-.752.117-1.061.311v-2.311zm.061 4c0-.552.447-1 1-1h1.939v-2c0-.552.447-1 1-1s1 .448 1 1v4h-3.939c-.553 0-1-.448-1-1z" + }, + "children": [] + }] +}; +exports.arrowMinimiseOutline = arrowMinimiseOutline; \ No newline at end of file diff --git a/dist/typicons/arrowMove.js b/dist/typicons/arrowMove.js new file mode 100644 index 000000000..ade4c447e --- /dev/null +++ b/dist/typicons/arrowMove.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowMove = void 0; +var arrowMove = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M17.707 8.293c-.391-.391-1.023-.391-1.414 0s-.391 1.023 0 1.414l1.293 1.293h-4.586v-4.586l1.293 1.293c.195.195.451.293.707.293s.512-.098.707-.293c.391-.391.391-1.023 0-1.414l-3.707-3.707-3.707 3.707c-.391.391-.391 1.023 0 1.414s1.023.391 1.414 0l1.293-1.293v4.586h-4.586l1.293-1.293c.391-.391.391-1.023 0-1.414s-1.023-.391-1.414 0l-3.707 3.707 3.707 3.707c.195.195.451.293.707.293s.512-.098.707-.293c.391-.391.391-1.023 0-1.414l-1.293-1.293h4.586v4.586l-1.293-1.293c-.391-.391-1.023-.391-1.414 0s-.391 1.023 0 1.414l3.707 3.707 3.707-3.707c.391-.391.391-1.023 0-1.414s-1.023-.391-1.414 0l-1.293 1.293v-4.586h4.586l-1.293 1.293c-.391.391-.391 1.023 0 1.414.195.195.451.293.707.293s.512-.098.707-.293l3.707-3.707-3.707-3.707z" + }, + "children": [] + }] +}; +exports.arrowMove = arrowMove; \ No newline at end of file diff --git a/dist/typicons/arrowMoveOutline.js b/dist/typicons/arrowMoveOutline.js new file mode 100644 index 000000000..84b460adb --- /dev/null +++ b/dist/typicons/arrowMoveOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowMoveOutline = void 0; +var arrowMoveOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M22.828 10.586l-9.414-9.414c-.391-.391-.902-.586-1.414-.586s-1.023.195-1.414.586l-9.414 9.414c-.781.779-.781 2.047 0 2.828l9.414 9.414c.391.391.902.586 1.414.586s1.023-.195 1.414-.586l9.414-9.414c.781-.781.781-2.049 0-2.828zm-5.828 5.414c-.256 0-.512-.098-.707-.293-.391-.391-.391-1.023 0-1.414l1.293-1.293h-4.586v4.586l1.293-1.293c.195-.195.451-.293.707-.293s.512.098.707.293c.391.391.391 1.023 0 1.414l-3.707 3.707-3.707-3.707c-.391-.391-.391-1.023 0-1.414.195-.195.451-.293.707-.293s.512.098.707.293l1.293 1.293v-4.586h-4.586l1.293 1.293c.391.391.391 1.023 0 1.414-.195.195-.451.293-.707.293s-.512-.098-.707-.293l-3.707-3.707 3.707-3.707c.195-.195.451-.293.707-.293s.512.098.707.293c.391.391.391 1.023 0 1.414l-1.293 1.293h4.586v-4.586l-1.293 1.293c-.195.195-.451.293-.707.293s-.512-.098-.707-.293c-.391-.391-.391-1.023 0-1.414l3.707-3.707 3.707 3.707c.391.391.391 1.023 0 1.414-.195.195-.451.293-.707.293s-.512-.098-.707-.293l-1.293-1.293v4.586h4.586l-1.293-1.293c-.391-.391-.391-1.023 0-1.414.195-.195.451-.293.707-.293s.512.098.707.293l3.707 3.707-3.707 3.707c-.195.195-.451.293-.707.293zm-1.732-2c-.175.301-.268.643-.268 1-.357 0-.699.093-1 .268v-1.268h1.268zm-6.536 0h1.268v1.268c-.301-.175-.643-.268-1-.268 0-.357-.093-.699-.268-1zm0-4c.175-.301.268-.643.268-1 .357 0 .699-.093 1-.268v1.268h-1.268zm6.536 0h-1.268v-1.268c.301.175.643.268 1 .268 0 .357.093.699.268 1z" + }, + "children": [] + }] +}; +exports.arrowMoveOutline = arrowMoveOutline; \ No newline at end of file diff --git a/dist/typicons/arrowRepeat.js b/dist/typicons/arrowRepeat.js new file mode 100644 index 000000000..a2e7091a8 --- /dev/null +++ b/dist/typicons/arrowRepeat.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowRepeat = void 0; +var arrowRepeat = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M16.5 7h-2.086l1.293-1.293c.391-.391.391-1.023 0-1.414s-1.023-.391-1.414 0l-3.707 3.707 3.707 3.707c.195.195.451.293.707.293s.512-.098.707-.293c.391-.391.391-1.023 0-1.414l-1.293-1.293h2.086c1.379 0 2.5 1.346 2.5 3s-1.346 3-3 3c-.553 0-1 .448-1 1s.447 1 1 1c2.757 0 5-2.243 5-5s-2.019-5-4.5-5zM8.293 12.293c-.391.391-.391 1.023 0 1.414l1.293 1.293h-2.086c-1.379 0-2.5-1.346-2.5-3s1.346-3 3-3c.553 0 1-.448 1-1s-.447-1-1-1c-2.757 0-5 2.243-5 5s2.019 5 4.5 5h2.086l-1.293 1.293c-.391.391-.391 1.023 0 1.414.195.195.451.293.707.293s.512-.098.707-.293l3.707-3.707-3.707-3.707c-.391-.391-1.023-.391-1.414 0z" + }, + "children": [] + }] +}; +exports.arrowRepeat = arrowRepeat; \ No newline at end of file diff --git a/dist/typicons/arrowRepeatOutline.js b/dist/typicons/arrowRepeatOutline.js new file mode 100644 index 000000000..07396f3d9 --- /dev/null +++ b/dist/typicons/arrowRepeatOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowRepeatOutline = void 0; +var arrowRepeatOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.994 7.187l.006-.187c0-.801-.312-1.555-.879-2.121-.566-.567-1.32-.879-2.121-.879s-1.555.312-2.121.879l-2.892 2.891c-.53-.473-1.221-.77-1.987-.77h-1c-3.859 0-7 3.14-7 7 0 3.306 2.14 6.084 5.006 6.813l-.006.187c0 .801.312 1.555.879 2.121.566.567 1.32.879 2.121.879s1.555-.312 2.121-.879l2.892-2.891c.53.473 1.221.77 1.987.77h1c3.859 0 7-3.14 7-7 0-3.306-2.14-6.084-5.006-6.813zm-1.994 11.813h-1c-.553 0-1-.448-1-1s.447-1 1-1h1c1.654 0 3-1.346 3-3s-1.121-3-2.5-3h-2.086l1.293 1.293c.391.391.391 1.023 0 1.414-.195.195-.451.293-.707.293s-.512-.098-.707-.293l-3.707-3.707 3.707-3.707c.195-.195.451-.293.707-.293s.512.098.707.293c.391.391.391 1.023 0 1.414l-1.293 1.293h2.086c2.481 0 4.5 2.243 4.5 5s-2.243 5-5 5zm.749-6.971c.7.164 1.251 1 1.251 1.971 0 1.103-.897 2-2 2h-1c-.857 0-1.584.544-1.868 1.304l-3.718-3.718c-.378-.378-.88-.586-1.414-.586s-1.036.208-1.414.586-.586.88-.586 1.414c0 .345.087.677.251.971-.7-.164-1.251-1-1.251-1.971 0-1.103.897-2 2-2h1c.857 0 1.584-.544 1.868-1.304l3.718 3.718c.378.378.88.586 1.414.586s1.036-.208 1.414-.586.586-.88.586-1.414c0-.345-.087-.677-.251-.971zm-7.749-2.029c0 .552-.447 1-1 1h-1c-1.654 0-3 1.346-3 3s1.121 3 2.5 3h2.086l-1.293-1.293c-.391-.391-.391-1.023 0-1.414.195-.195.451-.293.707-.293s.512.098.707.293l3.707 3.707-3.707 3.707c-.195.195-.451.293-.707.293s-.512-.098-.707-.293c-.391-.391-.391-1.023 0-1.414l1.293-1.293h-2.086c-2.481 0-4.5-2.243-4.5-5s2.243-5 5-5h1c.553 0 1 .448 1 1z" + }, + "children": [] + }] +}; +exports.arrowRepeatOutline = arrowRepeatOutline; \ No newline at end of file diff --git a/dist/typicons/arrowRight.js b/dist/typicons/arrowRight.js new file mode 100644 index 000000000..4d5c72109 --- /dev/null +++ b/dist/typicons/arrowRight.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowRight = void 0; +var arrowRight = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M13.293 7.293c-.391.391-.391 1.023 0 1.414l2.293 2.293h-7.586c-.552 0-1 .448-1 1s.448 1 1 1h7.586l-2.293 2.293c-.391.391-.391 1.023 0 1.414.195.195.451.293.707.293s.512-.098.707-.293l4.707-4.707-4.707-4.707c-.391-.391-1.023-.391-1.414 0z" + }, + "children": [] + }] +}; +exports.arrowRight = arrowRight; \ No newline at end of file diff --git a/dist/typicons/arrowRightOutline.js b/dist/typicons/arrowRightOutline.js new file mode 100644 index 000000000..83b9d1957 --- /dev/null +++ b/dist/typicons/arrowRightOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowRightOutline = void 0; +var arrowRightOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 21c-.801 0-1.555-.312-2.121-.879s-.88-1.321-.879-2.123c0-.746.271-.998.764-1.998h-4.836c-1.654 0-3-1.347-3-3 0-1.654 1.346-3 3-3h4.836c-.494-1-.764-1.255-.764-2.001.001-.802.312-1.554.88-2.121 1.132-1.132 3.108-1.133 4.241.001l7.121 7.121-7.121 7.121c-.566.567-1.32.879-2.121.879zm-7.072-9c-.552 0-1 .449-1 1s.448 1 1 1h9.658l-3.293 3.293c-.189.189-.293.439-.293.706 0 .269.104.519.293.708.379.378 1.035.378 1.414 0l5.707-5.707-5.707-5.707c-.379-.378-1.035-.378-1.414 0-.189.189-.293.439-.293.706 0 .268.104.519.293.708l3.293 3.293h-9.658z" + }, + "children": [] + }] +}; +exports.arrowRightOutline = arrowRightOutline; \ No newline at end of file diff --git a/dist/typicons/arrowRightThick.js b/dist/typicons/arrowRightThick.js new file mode 100644 index 000000000..6b99c92ad --- /dev/null +++ b/dist/typicons/arrowRightThick.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowRightThick = void 0; +var arrowRightThick = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M10.586 6.586c-.781.779-.781 2.047 0 2.828l1.586 1.586h-7.244c-1.104 0-2 .895-2 2 0 1.104.896 2 2 2h7.244l-1.586 1.586c-.781.779-.781 2.047 0 2.828.391.391.902.586 1.414.586s1.023-.195 1.414-.586l6.414-6.414-6.414-6.414c-.781-.781-2.047-.781-2.828 0z" + }, + "children": [] + }] +}; +exports.arrowRightThick = arrowRightThick; \ No newline at end of file diff --git a/dist/typicons/arrowShuffle.js b/dist/typicons/arrowShuffle.js new file mode 100644 index 000000000..cd59c64cc --- /dev/null +++ b/dist/typicons/arrowShuffle.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowShuffle = void 0; +var arrowShuffle = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 9h3.5c.736 0 1.393.391 1.851 1.001.325-.604.729-1.163 1.191-1.662-.803-.823-1.866-1.339-3.042-1.339h-3.5c-.553 0-1 .448-1 1s.447 1 1 1zM11.685 12.111c.551-1.657 2.256-3.111 3.649-3.111h1.838l-1.293 1.293c-.391.391-.391 1.023 0 1.414.195.195.451.293.707.293s.512-.098.707-.293l3.707-3.707-3.707-3.707c-.391-.391-1.023-.391-1.414 0s-.391 1.023 0 1.414l1.293 1.293h-1.838c-2.274 0-4.711 1.967-5.547 4.479l-.472 1.411c-.641 1.926-2.072 3.11-2.815 3.11h-2.5c-.553 0-1 .448-1 1s.447 1 1 1h2.5c1.837 0 3.863-1.925 4.713-4.479l.472-1.41zM15.879 13.293c-.391.391-.391 1.023 0 1.414l1.293 1.293h-2.338c-1.268 0-2.33-.891-2.691-2.108-.256.75-.627 1.499-1.09 2.185.886 1.162 2.243 1.923 3.781 1.923h2.338l-1.293 1.293c-.391.391-.391 1.023 0 1.414.195.195.451.293.707.293s.512-.098.707-.293l3.707-3.707-3.707-3.707c-.391-.391-1.023-.391-1.414 0z" + }, + "children": [] + }] +}; +exports.arrowShuffle = arrowShuffle; \ No newline at end of file diff --git a/dist/typicons/arrowSortedDown.js b/dist/typicons/arrowSortedDown.js new file mode 100644 index 000000000..e1f8b9ecd --- /dev/null +++ b/dist/typicons/arrowSortedDown.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowSortedDown = void 0; +var arrowSortedDown = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M5.8 9.7l6.2 6.3 6.2-6.3c.2-.2.3-.5.3-.7s-.1-.5-.3-.7c-.2-.2-.4-.3-.7-.3h-11c-.3 0-.5.1-.7.3-.2.2-.3.4-.3.7s.1.5.3.7z" + }, + "children": [] + }] +}; +exports.arrowSortedDown = arrowSortedDown; \ No newline at end of file diff --git a/dist/typicons/arrowSortedUp.js b/dist/typicons/arrowSortedUp.js new file mode 100644 index 000000000..ef19382d1 --- /dev/null +++ b/dist/typicons/arrowSortedUp.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowSortedUp = void 0; +var arrowSortedUp = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.2 13.3l-6.2-6.3-6.2 6.3c-.2.2-.3.5-.3.7s.1.5.3.7c.2.2.4.3.7.3h11c.3 0 .5-.1.7-.3.2-.2.3-.5.3-.7s-.1-.5-.3-.7z" + }, + "children": [] + }] +}; +exports.arrowSortedUp = arrowSortedUp; \ No newline at end of file diff --git a/dist/typicons/arrowSync.js b/dist/typicons/arrowSync.js new file mode 100644 index 000000000..918f34bd2 --- /dev/null +++ b/dist/typicons/arrowSync.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowSync = void 0; +var arrowSync = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M19.5 12.473c0-1.948-.618-3.397-2.066-4.844-.391-.39-1.023-.39-1.414 0-.391.391-.391 1.024 0 1.415 1.079 1.078 1.48 2.007 1.48 3.429 0 1.469-.572 2.85-1.611 3.888-1.004 1.003-2.078 1.502-3.428 1.593l1.246-1.247c.391-.391.391-1.023 0-1.414s-1.023-.391-1.414 0l-3.707 3.707 3.707 3.707c.195.195.451.293.707.293s.512-.098.707-.293c.391-.391.391-1.023 0-1.414l-1.337-1.336c1.923-.082 3.542-.792 4.933-2.181 1.417-1.416 2.197-3.299 2.197-5.303zM6.5 12.5c0-1.469.572-2.85 1.611-3.889 1.009-1.009 2.092-1.508 3.457-1.594l-1.275 1.275c-.391.391-.391 1.023 0 1.414.195.196.451.294.707.294s.512-.098.707-.293l3.707-3.707-3.707-3.707c-.391-.391-1.023-.391-1.414 0s-.391 1.023 0 1.414l1.311 1.311c-1.914.086-3.525.796-4.907 2.179-1.417 1.416-2.197 3.299-2.197 5.303 0 1.948.618 3.397 2.066 4.844.195.195.451.292.707.292s.512-.098.707-.293c.391-.391.391-1.024 0-1.415-1.079-1.077-1.48-2.006-1.48-3.428z" + }, + "children": [] + }] +}; +exports.arrowSync = arrowSync; \ No newline at end of file diff --git a/dist/typicons/arrowSyncOutline.js b/dist/typicons/arrowSyncOutline.js new file mode 100644 index 000000000..49f214bcb --- /dev/null +++ b/dist/typicons/arrowSyncOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowSyncOutline = void 0; +var arrowSyncOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M21.5 12.473c0-2.495-.818-4.426-2.653-6.259-.309-.309-.676-.533-1.073-.682l-.946-.946-3.707-3.707c-.566-.567-1.32-.879-2.121-.879s-1.555.312-2.121.879c-.567.566-.879 1.32-.879 2.121 0 .277.037.549.11.809-1.029.461-1.974 1.12-2.827 1.974-1.795 1.793-2.783 4.178-2.783 6.717 0 2.495.818 4.426 2.653 6.259.299.298.652.521 1.034.669l.985.986 3.707 3.707c.566.567 1.32.879 2.121.879s1.555-.312 2.121-.879c.567-.566.879-1.32.879-2.121 0-.286-.04-.566-.117-.834 1.031-.461 1.978-1.121 2.833-1.975 1.796-1.794 2.784-4.18 2.784-6.718zm-9.13 7.484l1.337 1.336c.391.391.391 1.023 0 1.414-.195.195-.451.293-.707.293s-.512-.098-.707-.293l-3.707-3.707 3.707-3.707c.195-.195.451-.293.707-.293s.512.098.707.293c.391.391.391 1.023 0 1.414l-1.247 1.247c1.351-.091 2.425-.59 3.428-1.593 1.039-1.038 1.611-2.419 1.611-3.888 0-1.422-.401-2.351-1.48-3.429-.391-.391-.391-1.023 0-1.415.195-.195.451-.293.708-.293.256 0 .512.098.707.292 1.448 1.447 2.066 2.896 2.066 4.844 0 2.004-.78 3.887-2.197 5.303-1.39 1.39-3.01 2.1-4.933 2.182zm-.766-14.939l-1.311-1.311c-.391-.391-.391-1.023 0-1.414.195-.195.451-.293.707-.293s.512.098.707.293l3.707 3.707-3.707 3.707c-.195.195-.451.293-.707.293s-.512-.098-.707-.293c-.391-.391-.391-1.023 0-1.414l1.275-1.275c-1.365.086-2.448.584-3.456 1.593-1.04 1.039-1.612 2.42-1.612 3.889 0 1.422.401 2.351 1.48 3.429.391.391.391 1.023 0 1.415-.195.195-.452.293-.708.293s-.512-.098-.707-.292c-1.447-1.448-2.065-2.897-2.065-4.845 0-2.004.78-3.887 2.197-5.303 1.382-1.383 2.993-2.093 4.907-2.179zm-2.916 10.204c-.888-.887-1.188-1.574-1.188-2.722 0-1.202.468-2.332 1.318-3.181l.187-.179c.033.481.236.93.581 1.274.378.378.88.586 1.414.586s1.036-.208 1.414-.586l2.339-2.339c-.078.596.104 1.219.56 1.675.888.887 1.188 1.574 1.188 2.722 0 1.202-.468 2.332-1.318 3.181l-.188.181c-.039-.472-.241-.91-.579-1.248-.38-.378-.882-.586-1.416-.586s-1.036.208-1.414.586l-2.342 2.342c.089-.605-.093-1.242-.556-1.706z" + }, + "children": [] + }] +}; +exports.arrowSyncOutline = arrowSyncOutline; \ No newline at end of file diff --git a/dist/typicons/arrowUnsorted.js b/dist/typicons/arrowUnsorted.js new file mode 100644 index 000000000..ef80f80c6 --- /dev/null +++ b/dist/typicons/arrowUnsorted.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowUnsorted = void 0; +var arrowUnsorted = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.2 9.3l-6.2-6.3-6.2 6.3c-.2.2-.3.4-.3.7s.1.5.3.7c.2.2.4.3.7.3h11c.3 0 .5-.1.7-.3.2-.2.3-.5.3-.7s-.1-.5-.3-.7zM5.8 14.7l6.2 6.3 6.2-6.3c.2-.2.3-.5.3-.7s-.1-.5-.3-.7c-.2-.2-.4-.3-.7-.3h-11c-.3 0-.5.1-.7.3-.2.2-.3.5-.3.7s.1.5.3.7z" + }, + "children": [] + }] +}; +exports.arrowUnsorted = arrowUnsorted; \ No newline at end of file diff --git a/dist/typicons/arrowUp.js b/dist/typicons/arrowUp.js new file mode 100644 index 000000000..b4347463c --- /dev/null +++ b/dist/typicons/arrowUp.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowUp = void 0; +var arrowUp = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M13 5.586l-4.707 4.707c-.391.391-.391 1.023 0 1.414s1.023.391 1.414 0l2.293-2.293v7.586c0 .552.447 1 1 1s1-.448 1-1v-7.586l2.293 2.293c.195.195.451.293.707.293s.512-.098.707-.293c.391-.391.391-1.023 0-1.414l-4.707-4.707z" + }, + "children": [] + }] +}; +exports.arrowUp = arrowUp; \ No newline at end of file diff --git a/dist/typicons/arrowUpOutline.js b/dist/typicons/arrowUpOutline.js new file mode 100644 index 000000000..516784653 --- /dev/null +++ b/dist/typicons/arrowUpOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowUpOutline = void 0; +var arrowUpOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 21c-1.654 0-3-1.346-3-3v-4.764c-1.143 1.024-3.025.979-4.121-.115-1.17-1.169-1.17-3.073 0-4.242l7.121-7.121 7.121 7.121c1.17 1.169 1.17 3.073 0 4.242-1.094 1.095-2.979 1.14-4.121.115v4.764c0 1.654-1.346 3-3 3zm-1-12.586v9.586c0 .551.448 1 1 1s1-.449 1-1v-9.586l3.293 3.293c.379.378 1.035.378 1.414 0 .391-.391.391-1.023 0-1.414l-5.707-5.707-5.707 5.707c-.391.391-.391 1.023 0 1.414.379.378 1.035.378 1.414 0l3.293-3.293z" + }, + "children": [] + }] +}; +exports.arrowUpOutline = arrowUpOutline; \ No newline at end of file diff --git a/dist/typicons/arrowUpThick.js b/dist/typicons/arrowUpThick.js new file mode 100644 index 000000000..c57871435 --- /dev/null +++ b/dist/typicons/arrowUpThick.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.arrowUpThick = void 0; +var arrowUpThick = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 3.172l-6.414 6.414c-.781.781-.781 2.047 0 2.828s2.047.781 2.828 0l1.586-1.586v7.242c0 1.104.895 2 2 2 1.104 0 2-.896 2-2v-7.242l1.586 1.586c.391.391.902.586 1.414.586s1.023-.195 1.414-.586c.781-.781.781-2.047 0-2.828l-6.414-6.414z" + }, + "children": [] + }] +}; +exports.arrowUpThick = arrowUpThick; \ No newline at end of file diff --git a/dist/typicons/at.js b/dist/typicons/at.js new file mode 100644 index 000000000..ea2679324 --- /dev/null +++ b/dist/typicons/at.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.at = void 0; +var at = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 4c-4.411 0-8 3.589-8 8s3.589 8 8 8c1.616 0 3.172-.479 4.499-1.384.456-.312.574-.934.263-1.39-.311-.457-.932-.572-1.39-.263-.994.679-2.16 1.037-3.372 1.037-3.309 0-6-2.691-6-6s2.691-6 6-6 6 2.691 6 6v.5c0 .552-.448 1-1 1s-1-.448-1-1v-3c0-.553-.447-1-1-1-.441 0-.805.29-.938.688-.58-.427-1.289-.688-2.062-.688-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5c1.045 0 1.975-.47 2.616-1.199.548.723 1.408 1.199 2.384 1.199 1.654 0 3-1.346 3-3v-.5c0-4.411-3.589-8-8-8zm0 9.5c-.827 0-1.5-.673-1.5-1.5s.673-1.5 1.5-1.5 1.5.673 1.5 1.5-.673 1.5-1.5 1.5z" + }, + "children": [] + }] +}; +exports.at = at; \ No newline at end of file diff --git a/dist/typicons/attachment.js b/dist/typicons/attachment.js new file mode 100644 index 000000000..c00d4c125 --- /dev/null +++ b/dist/typicons/attachment.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.attachment = void 0; +var attachment = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.364 6.635c-1.561-1.559-4.1-1.559-5.658 0l-4.534 4.535c-.473.473-.733 1.1-.733 1.77 0 .668.261 1.295.732 1.768.487.486 1.128.73 1.769.73.64 0 1.279-.242 1.767-.73l2.122-2.121c.391-.395.586-.904.586-1.414 0-.512-.195-1.023-.586-1.414l-3.536 3.535c-.193.195-.511.195-.708-.002-.127-.127-.146-.275-.146-.352 0-.078.019-.227.146-.354l4.535-4.537c.778-.779 2.048-.779 2.83 0 .779.779.779 2.049 0 2.828l-4.537 4.537-2.535 2.535c-.779.779-2.049.779-2.828 0-.78-.779-.78-2.049 0-2.828l.095-.096c-.451-.6-.702-1.359-.702-2.125l-.807.807c-1.56 1.559-1.56 4.098 0 5.656.779.779 1.804 1.17 2.828 1.17s2.049-.391 2.828-1.17l7.072-7.072c1.56-1.559 1.56-4.096 0-5.656z" + }, + "children": [] + }] +}; +exports.attachment = attachment; \ No newline at end of file diff --git a/dist/typicons/attachmentOutline.js b/dist/typicons/attachmentOutline.js new file mode 100644 index 000000000..926d06683 --- /dev/null +++ b/dist/typicons/attachmentOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.attachmentOutline = void 0; +var attachmentOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M15.534 4.466c1.024 0 2.05.39 2.829 1.169 1.561 1.561 1.561 4.098 0 5.656l-7.071 7.072c-.778.779-1.804 1.17-2.828 1.17s-2.049-.391-2.828-1.17c-1.56-1.559-1.56-4.098 0-5.656l.807-.807c-.004.805.25 1.524.701 2.125l-.094.096c-.78.779-.78 2.049 0 2.828.39.39.901.584 1.414.584s1.024-.195 1.414-.584l2.535-2.535 4.537-4.537c.778-.779.778-2.049 0-2.828-.392-.39-.904-.584-1.417-.584-.512 0-1.023.195-1.413.584l-4.535 4.537c-.128.127-.146.275-.146.354 0 .076.019.226.146.353.099.099.228.147.356.147.127 0 .254-.049.352-.146l2.122-2.121 1.414-1.414c.392.392.586.902.586 1.414 0 .511-.194 1.021-.584 1.41l-2.124 2.125c-.486.487-1.127.729-1.768.729s-1.28-.244-1.769-.729c-.472-.474-.731-1.101-.731-1.769 0-.67.261-1.297.732-1.77l4.534-4.535c.779-.779 1.805-1.168 2.829-1.168m0-2c-1.604 0-3.11.623-4.242 1.755l-7.069 7.073c-1.133 1.131-1.757 2.638-1.757 4.242s.624 3.11 1.757 4.243c1.131 1.132 2.639 1.755 4.241 1.755s3.11-.624 4.242-1.757l7.071-7.071c1.133-1.131 1.757-2.638 1.757-4.242 0-1.603-.623-3.11-1.755-4.241-1.133-1.134-2.64-1.757-4.245-1.757z" + }, + "children": [] + }] +}; +exports.attachmentOutline = attachmentOutline; \ No newline at end of file diff --git a/dist/typicons/backspace.js b/dist/typicons/backspace.js new file mode 100644 index 000000000..3708ebdea --- /dev/null +++ b/dist/typicons/backspace.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.backspace = void 0; +var backspace = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M19.5 5h-10c-1.266 0-2.834.807-3.57 1.837l-2.61 3.653-1.199 1.679c-.121.175-.122.492.003.664l1.188 1.664 2.619 3.667c.735 1.029 2.302 1.836 3.569 1.836h10c1.379 0 2.5-1.122 2.5-2.5v-10c0-1.378-1.121-2.5-2.5-2.5zm-2.293 9.793c.391.391.391 1.023 0 1.414-.195.195-.451.293-.707.293s-.512-.098-.707-.293l-2.293-2.293-2.293 2.293c-.195.195-.451.293-.707.293s-.512-.098-.707-.293c-.391-.391-.391-1.023 0-1.414l2.293-2.293-2.293-2.293c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l2.293 2.293 2.293-2.293c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-2.293 2.293 2.293 2.293z" + }, + "children": [] + }] +}; +exports.backspace = backspace; \ No newline at end of file diff --git a/dist/typicons/backspaceOutline.js b/dist/typicons/backspaceOutline.js new file mode 100644 index 000000000..151a0ea0f --- /dev/null +++ b/dist/typicons/backspaceOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.backspaceOutline = void 0; +var backspaceOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M19 21h-10c-1.436 0-3.145-.88-3.977-2.046l-2.619-3.667-1.188-1.661c-.246-.344-.249-.894-.008-1.241l1.204-1.686 2.608-3.653c.835-1.167 2.546-2.046 3.98-2.046h10c1.654 0 3 1.346 3 3v10c0 1.654-1.346 3-3 3zm-15.771-8.001l.806 1.125 2.618 3.667c.451.633 1.57 1.209 2.348 1.209h10c.552 0 1-.45 1-1.001v-9.999c0-.551-.448-1-1-1h-10c-.776 0-1.897.576-2.351 1.209l-2.608 3.652-.813 1.138zM13.707 13l2.646-2.646c.194-.194.194-.512 0-.707-.195-.194-.513-.194-.707 0l-2.646 2.646-2.646-2.646c-.195-.194-.513-.194-.707 0-.195.195-.195.513 0 .707l2.646 2.646-2.646 2.646c-.195.195-.195.513 0 .707.097.098.225.147.353.147s.256-.049.354-.146l2.646-2.647 2.646 2.646c.098.098.226.147.354.147s.256-.049.354-.146c.194-.194.194-.512 0-.707l-2.647-2.647z" + }, + "children": [] + }] +}; +exports.backspaceOutline = backspaceOutline; \ No newline at end of file diff --git a/dist/typicons/batteryCharge.js b/dist/typicons/batteryCharge.js new file mode 100644 index 000000000..121ae5066 --- /dev/null +++ b/dist/typicons/batteryCharge.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.batteryCharge = void 0; +var batteryCharge = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M5 10v6h11v-6h-11zm5.83 4.908l-1.21-1.908-2.62.428 3.223-2.324 1.175 1.896 2.602-.43-3.17 2.338zM19 10c0-1.654-1.346-3-3-3h-11c-1.654 0-3 1.346-3 3v6c0 1.654 1.346 3 3 3h11c1.654 0 3-1.346 3-3 1.104 0 2-.896 2-2v-2c0-1.104-.896-2-2-2zm-2 6c0 .552-.449 1-1 1h-11c-.551 0-1-.448-1-1v-6c0-.552.449-1 1-1h11c.551 0 1 .448 1 1v6z" + }, + "children": [] + }] +}; +exports.batteryCharge = batteryCharge; \ No newline at end of file diff --git a/dist/typicons/batteryFull.js b/dist/typicons/batteryFull.js new file mode 100644 index 000000000..6254f9e90 --- /dev/null +++ b/dist/typicons/batteryFull.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.batteryFull = void 0; +var batteryFull = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M9 16c-.552 0-1-.447-1-1v-4c0-.553.448-1 1-1s1 .447 1 1v4c0 .553-.448 1-1 1zM6 16c-.552 0-1-.447-1-1v-4c0-.553.448-1 1-1s1 .447 1 1v4c0 .553-.448 1-1 1zM15 16c-.552 0-1-.447-1-1v-4c0-.553.448-1 1-1s1 .447 1 1v4c0 .553-.448 1-1 1zM12 16c-.552 0-1-.447-1-1v-4c0-.553.448-1 1-1s1 .447 1 1v4c0 .553-.448 1-1 1zM19 10c0-1.654-1.346-3-3-3h-11c-1.654 0-3 1.346-3 3v6c0 1.654 1.346 3 3 3h11c1.654 0 3-1.346 3-3 1.104 0 2-.896 2-2v-2c0-1.104-.896-2-2-2zm-2 6c0 .552-.449 1-1 1h-11c-.551 0-1-.448-1-1v-6c0-.552.449-1 1-1h11c.551 0 1 .448 1 1v6z" + }, + "children": [] + }] +}; +exports.batteryFull = batteryFull; \ No newline at end of file diff --git a/dist/typicons/batteryHigh.js b/dist/typicons/batteryHigh.js new file mode 100644 index 000000000..e17aaf435 --- /dev/null +++ b/dist/typicons/batteryHigh.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.batteryHigh = void 0; +var batteryHigh = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M9 16c-.552 0-1-.447-1-1v-4c0-.553.448-1 1-1s1 .447 1 1v4c0 .553-.448 1-1 1zM6 16c-.552 0-1-.447-1-1v-4c0-.553.448-1 1-1s1 .447 1 1v4c0 .553-.448 1-1 1zM12 16c-.552 0-1-.447-1-1v-4c0-.553.448-1 1-1s1 .447 1 1v4c0 .553-.448 1-1 1zM19 10c0-1.654-1.346-3-3-3h-11c-1.654 0-3 1.346-3 3v6c0 1.654 1.346 3 3 3h11c1.654 0 3-1.346 3-3 1.104 0 2-.896 2-2v-2c0-1.104-.896-2-2-2zm-2 6c0 .552-.449 1-1 1h-11c-.551 0-1-.448-1-1v-6c0-.552.449-1 1-1h11c.551 0 1 .448 1 1v6z" + }, + "children": [] + }] +}; +exports.batteryHigh = batteryHigh; \ No newline at end of file diff --git a/dist/typicons/batteryLow.js b/dist/typicons/batteryLow.js new file mode 100644 index 000000000..726ca7878 --- /dev/null +++ b/dist/typicons/batteryLow.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.batteryLow = void 0; +var batteryLow = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M6 16c-.552 0-1-.447-1-1v-4c0-.553.448-1 1-1s1 .447 1 1v4c0 .553-.448 1-1 1zM19 10c0-1.654-1.346-3-3-3h-11c-1.654 0-3 1.346-3 3v6c0 1.654 1.346 3 3 3h11c1.654 0 3-1.346 3-3 1.104 0 2-.896 2-2v-2c0-1.104-.896-2-2-2zm-2 6c0 .552-.449 1-1 1h-11c-.551 0-1-.448-1-1v-6c0-.552.449-1 1-1h11c.551 0 1 .448 1 1v6z" + }, + "children": [] + }] +}; +exports.batteryLow = batteryLow; \ No newline at end of file diff --git a/dist/typicons/batteryMid.js b/dist/typicons/batteryMid.js new file mode 100644 index 000000000..8a6964ca6 --- /dev/null +++ b/dist/typicons/batteryMid.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.batteryMid = void 0; +var batteryMid = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M9 16c-.552 0-1-.447-1-1v-4c0-.553.448-1 1-1s1 .447 1 1v4c0 .553-.448 1-1 1zM6 16c-.552 0-1-.447-1-1v-4c0-.553.448-1 1-1s1 .447 1 1v4c0 .553-.448 1-1 1zM19 10c0-1.654-1.346-3-3-3h-11c-1.654 0-3 1.346-3 3v6c0 1.654 1.346 3 3 3h11c1.654 0 3-1.346 3-3 1.104 0 2-.896 2-2v-2c0-1.104-.896-2-2-2zm-2 6c0 .552-.449 1-1 1h-11c-.551 0-1-.448-1-1v-6c0-.552.449-1 1-1h11c.551 0 1 .448 1 1v6z" + }, + "children": [] + }] +}; +exports.batteryMid = batteryMid; \ No newline at end of file diff --git a/dist/typicons/beaker.js b/dist/typicons/beaker.js new file mode 100644 index 000000000..fec2da699 --- /dev/null +++ b/dist/typicons/beaker.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.beaker = void 0; +var beaker = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M19.445 16.809l-2.64-9.809h1.195c.552 0 1-.448 1-1s-.448-1-1-1h-12c-.552 0-1 .448-1 1s.448 1 1 1h1.135c-.013.176-.048.402-.121.671l-2.459 9.138c-.218.809-.074 1.623.393 2.231.466.61 1.214.96 2.052.96h10c.838 0 1.586-.35 2.055-.959.466-.609.609-1.423.39-2.232zm-4.713-9.809l1.352 5.018-.084-.018h-8l-.084.018 1.029-3.826c.084-.312.173-.744.192-1.192h5.595zm2.734 10.824c-.087.114-.252.176-.466.176h-10c-.214 0-.379-.062-.466-.176-.086-.113-.104-.289-.048-.496l1.197-4.45c.088.073.195.122.317.122h8c.122 0 .229-.049.316-.121l1.197 4.45c.057.206.04.382-.047.495z" + }, + "children": [] + }] +}; +exports.beaker = beaker; \ No newline at end of file diff --git a/dist/typicons/beer.js b/dist/typicons/beer.js new file mode 100644 index 000000000..0c1465ccf --- /dev/null +++ b/dist/typicons/beer.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.beer = void 0; +var beer = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M10 16.5c0 .275-.225.5-.5.5s-.5-.225-.5-.5v-6c0-.275.225-.5.5-.5s.5.225.5.5v6zM12 16.5c0 .275-.225.5-.5.5s-.5-.225-.5-.5v-6c0-.275.225-.5.5-.5s.5.225.5.5v6zM14 16.5c0 .275-.225.5-.5.5s-.5-.225-.5-.5v-6c0-.275.225-.5.5-.5s.5.225.5.5v6zM18.5 6h-.5v-1c0-1.104-.896-2-2-2h-9c-1.104 0-2 .896-2 2v13c0 1.656 1.344 3 3 3h7c1.656 0 3-1.344 3-3h.5c1.93 0 3.5-1.57 3.5-3.5v-5c0-1.93-1.57-3.5-3.5-3.5zm-11.5-1h9v1h-4.444l-.118.332c-.164.458-.663.73-1.117.648l-.348-.058-.173.307c-.267.475-.765.771-1.3.771-.827 0-1.5-.673-1.5-1.5v-1.5zm9 13c0 .552-.448 1-1 1h-7c-.552 0-1-.448-1-1v-9.51c.419.317.936.51 1.5.51.784 0 1.521-.376 1.989-1 .728 0 1.383-.391 1.736-1h3.775v11zm4-3.5c0 .827-.673 1.5-1.5 1.5h-1.5v-8h1.5c.827 0 1.5.673 1.5 1.5v5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M10 16.5c0 .275-.225.5-.5.5s-.5-.225-.5-.5v-6c0-.275.225-.5.5-.5s.5.225.5.5v6zM12 16.5c0 .275-.225.5-.5.5s-.5-.225-.5-.5v-6c0-.275.225-.5.5-.5s.5.225.5.5v6zM14 16.5c0 .275-.225.5-.5.5s-.5-.225-.5-.5v-6c0-.275.225-.5.5-.5s.5.225.5.5v6zM18.5 6h-.5v-1c0-1.104-.896-2-2-2h-9c-1.104 0-2 .896-2 2v13c0 1.656 1.344 3 3 3h7c1.656 0 3-1.344 3-3h.5c1.93 0 3.5-1.57 3.5-3.5v-5c0-1.93-1.57-3.5-3.5-3.5zm-11.5-1h9v1h-4.444l-.118.332c-.164.458-.663.73-1.117.648l-.348-.058-.173.307c-.267.475-.765.771-1.3.771-.827 0-1.5-.673-1.5-1.5v-1.5zm9 13c0 .552-.448 1-1 1h-7c-.552 0-1-.448-1-1v-9.51c.419.317.936.51 1.5.51.784 0 1.521-.376 1.989-1 .728 0 1.383-.391 1.736-1h3.775v11zm4-3.5c0 .827-.673 1.5-1.5 1.5h-1.5v-8h1.5c.827 0 1.5.673 1.5 1.5v5z" + }, + "children": [] + }] + }] + }] +}; +exports.beer = beer; \ No newline at end of file diff --git a/dist/typicons/bell.js b/dist/typicons/bell.js new file mode 100644 index 000000000..4f45ca367 --- /dev/null +++ b/dist/typicons/bell.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bell = void 0; +var bell = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M19.715 17.301c-.017-.018-1.717-1.854-1.73-6.32-.009-2.607-1.69-4.824-4.019-5.641l.034-.34c0-1.103-.896-2-2-2s-2 .897-2 2l.034.338c-2.336.816-4.019 3.036-4.019 5.646 0 4.462-1.711 6.296-1.721 6.306-.287.286-.374.716-.22 1.091s.521.619.926.619h3.143c.447 1.72 1.999 3 3.857 3s3.41-1.28 3.857-3h3.143c.4 0 .758-.243.915-.61s.076-.799-.2-1.089zm-7.715-10.301c2.189 0 3.978 1.789 3.984 3.987.002.728.046 1.396.118 2.013h-8.2c.071-.617.113-1.286.113-2.016.001-2.196 1.788-3.984 3.985-3.984zm0 13c-.737 0-1.375-.405-1.722-1h3.443c-.346.595-.984 1-1.721 1zm-5.186-3c.352-.736.705-1.731.938-3h8.502c.234 1.269.588 2.264.938 3h-10.378z" + }, + "children": [] + }] +}; +exports.bell = bell; \ No newline at end of file diff --git a/dist/typicons/book.js b/dist/typicons/book.js new file mode 100644 index 000000000..df98b8add --- /dev/null +++ b/dist/typicons/book.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.book = void 0; +var book = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18 3h-11c-.265 0-.52.105-.707.293l-3 3-.057.062c-.139.165-.225.373-.235.6l-.001.053v10.992c0 1.654 1.346 3 3 3h9c1.304 0 2.416-.836 2.829-2h.671c1.402 0 2.5-1.317 2.5-3v-10c0-1.654-1.346-3-3-3zm-12 16c-.551 0-1-.448-1-1v-10h2v11h-1zm10-1c0 .552-.449 1-1 1h-7v-11h7c.551 0 1 .448 1 1v9zm3-2c0 .62-.324 1-.5 1h-.5v-8c0-1.654-1.346-3-3-3h-8.586l1-1h10.586c.551 0 1 .448 1 1v10z" + }, + "children": [] + }] +}; +exports.book = book; \ No newline at end of file diff --git a/dist/typicons/bookmark.js b/dist/typicons/bookmark.js new file mode 100644 index 000000000..8cba14daa --- /dev/null +++ b/dist/typicons/bookmark.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.bookmark = void 0; +var bookmark = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M17 2h-8c-1.654 0-3 1.346-3 3v14c0 .514.104.946.308 1.285.564.935 1.815 1.008 2.813.008l3.172-3.172c.375-.374 1.039-.374 1.414 0l3.172 3.172c.491.491 1.002.74 1.52.74.797 0 1.601-.629 1.601-2.033v-14c0-1.654-1.346-3-3-3zm-8 2h8c.551 0 1 .449 1 1v9.905l-2.451-2.247c-1.406-1.289-3.693-1.288-5.099 0l-2.45 2.247v-9.905c0-.551.449-1 1-1zm6.121 11.707c-.565-.565-1.318-.876-2.121-.876s-1.556.312-2.121.876l-2.879 2.879v-2.324l3.126-2.866c1.033-.947 2.714-.947 3.747 0l3.127 2.866v2.324l-2.879-2.879z" + }, + "children": [] + }] +}; +exports.bookmark = bookmark; \ No newline at end of file diff --git a/dist/typicons/briefcase.js b/dist/typicons/briefcase.js new file mode 100644 index 000000000..91413797b --- /dev/null +++ b/dist/typicons/briefcase.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.briefcase = void 0; +var briefcase = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M18 7c0-1.654-1.346-3-3-3h-6c-1.654 0-3 1.346-3 3-1.654 0-3 1.346-3 3v7c0 1.654 1.346 3 3 3h12c1.654 0 3-1.346 3-3v-7c0-1.654-1.346-3-3-3zm-9-1h6c.551 0 1 .449 1 1h-8c0-.551.449-1 1-1zm10 11c0 .551-.449 1-1 1h-12c-.551 0-1-.449-1-1v-1h14v1zm-14-2v-5c0-.551.449-1 1-1h12c.551 0 1 .449 1 1v5h-14zM13 12h-2c-.55 0-1 .45-1 1s.45 1 1 1h2c.55 0 1-.45 1-1s-.45-1-1-1z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18 7c0-1.654-1.346-3-3-3h-6c-1.654 0-3 1.346-3 3-1.654 0-3 1.346-3 3v7c0 1.654 1.346 3 3 3h12c1.654 0 3-1.346 3-3v-7c0-1.654-1.346-3-3-3zm-9-1h6c.551 0 1 .449 1 1h-8c0-.551.449-1 1-1zm10 11c0 .551-.449 1-1 1h-12c-.551 0-1-.449-1-1v-1h14v1zm-14-2v-5c0-.551.449-1 1-1h12c.551 0 1 .449 1 1v5h-14zM13 12h-2c-.55 0-1 .45-1 1s.45 1 1 1h2c.55 0 1-.45 1-1s-.45-1-1-1z" + }, + "children": [] + }] + }] + }] +}; +exports.briefcase = briefcase; \ No newline at end of file diff --git a/dist/typicons/brush.js b/dist/typicons/brush.js new file mode 100644 index 000000000..45563b46e --- /dev/null +++ b/dist/typicons/brush.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.brush = void 0; +var brush = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M20.177 3.823c-.382-.383-.894-.586-1.415-.586-.25 0-.503.047-.744.144-4.449 1.787-7.792 4.76-10.517 9.357-.102.172-.163.355-.209.542-1.38.215-2.6.903-3.442 1.993-.916 1.185-1.295 2.695-1.066 4.254l.216 1.473 1.473.217c.293.043.589.064.88.064 2.743 0 4.949-1.909 5.367-4.564.188-.047.371-.115.544-.218 4.598-2.728 7.571-6.069 9.355-10.517.298-.743.123-1.593-.442-2.159zm-14.824 15.458c-.192 0-.389-.016-.59-.044-.309-2.104 1.055-3.81 3-4.021l1.021 1.021c-.192 1.76-1.605 3.044-3.431 3.044zm4.89-4.502l-1.021-1.021c.38-.641.774-1.233 1.178-1.804.027.041 1.639 1.653 1.639 1.653-.568.401-1.158.794-1.796 1.172zm2.608-1.773s-1.821-1.801-1.879-1.824c2.147-2.784 4.651-4.685 7.791-5.943-1.255 3.127-3.144 5.623-5.912 7.767z" + }, + "children": [] + }] +}; +exports.brush = brush; \ No newline at end of file diff --git a/dist/typicons/businessCard.js b/dist/typicons/businessCard.js new file mode 100644 index 000000000..0b9a5aa82 --- /dev/null +++ b/dist/typicons/businessCard.js @@ -0,0 +1,55 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.businessCard = void 0; +var businessCard = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M20 20h-16c-1.654 0-3-1.346-3-3v-10c0-1.654 1.346-3 3-3h16c1.654 0 3 1.346 3 3v10c0 1.654-1.346 3-3 3zm-16-14c-.551 0-1 .449-1 1v10c0 .551.449 1 1 1h16c.551 0 1-.449 1-1v-10c0-.551-.449-1-1-1h-16zM10 15h-4c-.553 0-1-.448-1-1s.447-1 1-1h4c.553 0 1 .448 1 1s-.447 1-1 1zM10 11h-4c-.553 0-1-.448-1-1s.447-1 1-1h4c.553 0 1 .448 1 1s-.447 1-1 1z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20 20h-16c-1.654 0-3-1.346-3-3v-10c0-1.654 1.346-3 3-3h16c1.654 0 3 1.346 3 3v10c0 1.654-1.346 3-3 3zm-16-14c-.551 0-1 .449-1 1v10c0 .551.449 1 1 1h16c.551 0 1-.449 1-1v-10c0-.551-.449-1-1-1h-16zM10 15h-4c-.553 0-1-.448-1-1s.447-1 1-1h4c.553 0 1 .448 1 1s-.447 1-1 1zM10 11h-4c-.553 0-1-.448-1-1s.447-1 1-1h4c.553 0 1 .448 1 1s-.447 1-1 1z" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "16", + "cy": "10.5", + "r": "2" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "16", + "cy": "10.5", + "r": "2" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M16 13.356c-1.562 0-2.5.715-2.5 1.429 0 .357.938.715 2.5.715 1.466 0 2.5-.357 2.5-.715 0-.714-.98-1.429-2.5-1.429z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M16 13.356c-1.562 0-2.5.715-2.5 1.429 0 .357.938.715 2.5.715 1.466 0 2.5-.357 2.5-.715 0-.714-.98-1.429-2.5-1.429z" + }, + "children": [] + }] + }] + }] +}; +exports.businessCard = businessCard; \ No newline at end of file diff --git a/dist/typicons/calculator.js b/dist/typicons/calculator.js new file mode 100644 index 000000000..36083b26b --- /dev/null +++ b/dist/typicons/calculator.js @@ -0,0 +1,95 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.calculator = void 0; +var calculator = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M17 21h-8c-1.7 0-3-1.3-3-3v-12c0-1.7 1.3-3 3-3h8c1.7 0 3 1.3 3 3v12c0 1.7-1.3 3-3 3zm-8-16c-.6 0-1 .4-1 1v12c0 .6.4 1 1 1h8c.6 0 1-.4 1-1v-12c0-.6-.4-1-1-1h-8z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "10", + "cy": "11", + "r": "1" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "13", + "cy": "11", + "r": "1" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "16", + "cy": "11", + "r": "1" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "10", + "cy": "14", + "r": "1" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "13", + "cy": "14", + "r": "1" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "16", + "cy": "14", + "r": "1" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "10", + "cy": "17", + "r": "1" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "13", + "cy": "17", + "r": "1" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "16", + "cy": "17", + "r": "1" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 7v1h-6v-1h6m1-1h-8v3h8v-3z" + }, + "children": [] + }] +}; +exports.calculator = calculator; \ No newline at end of file diff --git a/dist/typicons/calendar.js b/dist/typicons/calendar.js new file mode 100644 index 000000000..89092527f --- /dev/null +++ b/dist/typicons/calendar.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.calendar = void 0; +var calendar = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M19 6.184v-.184c0-1.657-1.343-3-3-3s-3 1.343-3 3h-2c0-1.657-1.343-3-3-3s-3 1.343-3 3v.184c-1.161.415-2 1.514-2 2.816v9c0 1.654 1.346 3 3 3h12c1.654 0 3-1.346 3-3v-9c0-1.302-.839-2.401-2-2.816zm-4-.184c0-.552.447-1 1-1s1 .448 1 1v2c0 .552-.447 1-1 1s-1-.448-1-1v-2zm-8 0c0-.552.447-1 1-1s1 .448 1 1v2c0 .552-.447 1-1 1s-1-.448-1-1v-2zm12 12c0 .551-.448 1-1 1h-12c-.552 0-1-.449-1-1v-6h14v6z" + }, + "children": [] + }] +}; +exports.calendar = calendar; \ No newline at end of file diff --git a/dist/typicons/calendarOutline.js b/dist/typicons/calendarOutline.js new file mode 100644 index 000000000..2cc5c945f --- /dev/null +++ b/dist/typicons/calendarOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.calendarOutline = void 0; +var calendarOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M19 6.184v-.184c0-1.657-1.343-3-3-3s-3 1.343-3 3h-2c0-1.657-1.343-3-3-3s-3 1.343-3 3v.184c-1.161.415-2 1.514-2 2.816v9c0 1.654 1.346 3 3 3h12c1.654 0 3-1.346 3-3v-9c0-1.302-.839-2.401-2-2.816zm-4-.184c0-.552.447-1 1-1s1 .448 1 1v2c0 .552-.447 1-1 1s-1-.448-1-1v-2zm-8 0c0-.552.447-1 1-1s1 .448 1 1v2c0 .552-.447 1-1 1s-1-.448-1-1v-2zm12 12c0 .551-.448 1-1 1h-12c-.552 0-1-.449-1-1v-6h14v6zm0-7h-14v-2c0-.551.448-1 1-1 0 1.104.896 2 2 2s2-.896 2-2h4c0 1.104.896 2 2 2s2-.896 2-2c.552 0 1 .449 1 1v2z" + }, + "children": [] + }] +}; +exports.calendarOutline = calendarOutline; \ No newline at end of file diff --git a/dist/typicons/camera.js b/dist/typicons/camera.js new file mode 100644 index 000000000..cc63f4220 --- /dev/null +++ b/dist/typicons/camera.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.camera = void 0; +var camera = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M19 6h-1.586l-1-1c-.579-.579-1.595-1-2.414-1h-4c-.819 0-1.835.421-2.414 1l-1 1h-1.586c-1.654 0-3 1.346-3 3v8c0 1.654 1.346 3 3 3h14c1.654 0 3-1.346 3-3v-8c0-1.654-1.346-3-3-3zm-7 10c-1.933 0-3.5-1.568-3.5-3.5 0-1.934 1.567-3.5 3.5-3.5s3.5 1.566 3.5 3.5c0 1.932-1.567 3.5-3.5 3.5zm6-4.701c-.719 0-1.3-.58-1.3-1.299s.581-1.301 1.3-1.301 1.3.582 1.3 1.301-.581 1.299-1.3 1.299z" + }, + "children": [] + }] +}; +exports.camera = camera; \ No newline at end of file diff --git a/dist/typicons/cameraOutline.js b/dist/typicons/cameraOutline.js new file mode 100644 index 000000000..5b261e6c0 --- /dev/null +++ b/dist/typicons/cameraOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cameraOutline = void 0; +var cameraOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M19 20h-14c-1.654 0-3-1.346-3-3v-8c0-1.654 1.346-3 3-3h1.586l1-1c.579-.579 1.596-1 2.414-1h4c.818 0 1.835.421 2.414 1l1 1h1.586c1.654 0 3 1.346 3 3v8c0 1.654-1.346 3-3 3zm-14-12c-.552 0-1 .448-1 1v8c0 .552.448 1 1 1h14c.552 0 1-.448 1-1v-8c0-.552-.448-1-1-1h-2c-.266 0-.52-.105-.707-.293l-1.293-1.293c-.201-.201-.715-.414-1-.414h-4c-.285 0-.799.213-1 .414l-1.293 1.293c-.187.188-.441.293-.707.293h-2zM12 10c1.379 0 2.5 1.121 2.5 2.5s-1.121 2.5-2.5 2.5-2.5-1.121-2.5-2.5 1.121-2.5 2.5-2.5m0-1c-1.934 0-3.5 1.566-3.5 3.5 0 1.932 1.566 3.5 3.5 3.5s3.5-1.568 3.5-3.5c0-1.934-1.566-3.5-3.5-3.5zM18 8.699c-.719 0-1.3.582-1.3 1.301s.581 1.299 1.3 1.299 1.3-.58 1.3-1.299-.581-1.301-1.3-1.301z" + }, + "children": [] + }] +}; +exports.cameraOutline = cameraOutline; \ No newline at end of file diff --git a/dist/typicons/cancel.js b/dist/typicons/cancel.js new file mode 100644 index 000000000..f251ab829 --- /dev/null +++ b/dist/typicons/cancel.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cancel = void 0; +var cancel = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 4c-4.411 0-8 3.589-8 8s3.589 8 8 8 8-3.589 8-8-3.589-8-8-8zm-5 8c0-.832.224-1.604.584-2.295l6.711 6.711c-.691.36-1.463.584-2.295.584-2.757 0-5-2.243-5-5zm9.416 2.295l-6.711-6.711c.691-.36 1.463-.584 2.295-.584 2.757 0 5 2.243 5 5 0 .832-.224 1.604-.584 2.295z" + }, + "children": [] + }] +}; +exports.cancel = cancel; \ No newline at end of file diff --git a/dist/typicons/cancelOutline.js b/dist/typicons/cancelOutline.js new file mode 100644 index 000000000..74803d8a4 --- /dev/null +++ b/dist/typicons/cancelOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cancelOutline = void 0; +var cancelOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 20.5c-4.688 0-8.5-3.812-8.5-8.5s3.812-8.5 8.497-8.5c4.69 0 8.503 3.812 8.503 8.5s-3.812 8.5-8.5 8.5zm0-15c-3.586 0-6.5 2.916-6.5 6.5s2.916 6.5 6.5 6.5 6.5-2.916 6.5-6.5-2.916-6.5-6.5-6.5zM12.003 8.5c1.929 0 3.497 1.57 3.497 3.5 0 .206-.02.412-.057.615l-4.057-4.059c.203-.036.408-.056.614-.056m.003-1c-.882 0-1.696.262-2.39.697l6.188 6.188c.438-.692.699-1.508.699-2.387 0-2.48-2.014-4.498-4.497-4.498zM8.557 11.384l4.059 4.06c-.204.036-.409.056-.616.056-1.93 0-3.5-1.57-3.5-3.502 0-.206.02-.412.057-.614m-.358-1.773c-.435.694-.699 1.508-.699 2.387 0 2.486 2.016 4.502 4.5 4.502.879 0 1.693-.264 2.387-.699l-6.188-6.19z" + }, + "children": [] + }] +}; +exports.cancelOutline = cancelOutline; \ No newline at end of file diff --git a/dist/typicons/chartArea.js b/dist/typicons/chartArea.js new file mode 100644 index 000000000..5bcc95db0 --- /dev/null +++ b/dist/typicons/chartArea.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.chartArea = void 0; +var chartArea = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M20 6c0-.587-.257-1.167-.75-1.562-.863-.69-2.121-.551-2.812.312l-2.789 3.486-2.449-1.836c-.864-.648-2.087-.493-2.762.351l-4 5c-.294.368-.438.811-.438 1.249v3h16v-10zM20 19h-16c-.552 0-1 .447-1 1s.448 1 1 1h16c.552 0 1-.447 1-1s-.448-1-1-1z" + }, + "children": [] + }] +}; +exports.chartArea = chartArea; \ No newline at end of file diff --git a/dist/typicons/chartAreaOutline.js b/dist/typicons/chartAreaOutline.js new file mode 100644 index 000000000..c7e48bbb9 --- /dev/null +++ b/dist/typicons/chartAreaOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.chartAreaOutline = void 0; +var chartAreaOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M20 17h-16c-.552 0-1-.447-1-1v-3c0-.68.234-1.346.658-1.874l4-5c.98-1.226 2.885-1.469 4.143-.524l1.674 1.254 2.185-2.729c.57-.717 1.424-1.127 2.341-1.127.679 0 1.343.232 1.873.657.716.572 1.126 1.426 1.126 2.343v10c0 .553-.448 1-1 1zm-15-2h14v-9c0-.307-.137-.59-.375-.779-.227-.183-.465-.221-.624-.221-.306 0-.591.137-.782.376l-2.789 3.485c-.337.423-.949.5-1.381.176l-2.449-1.837c-.422-.316-1.055-.233-1.381.176l-4 5c-.181.228-.219.464-.219.624v2zM20 21h-16c-.552 0-1-.447-1-1s.448-1 1-1h16c.552 0 1 .447 1 1s-.448 1-1 1z" + }, + "children": [] + }] +}; +exports.chartAreaOutline = chartAreaOutline; \ No newline at end of file diff --git a/dist/typicons/chartBar.js b/dist/typicons/chartBar.js new file mode 100644 index 000000000..d15a71996 --- /dev/null +++ b/dist/typicons/chartBar.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.chartBar = void 0; +var chartBar = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M14 4c0-1.105-.896-2-2-2s-2 .895-2 2v12h4v-12zM19 8c0-1.105-.896-2-2-2s-2 .895-2 2v8h4v-8zM9 11c0-1.105-.896-2-2-2s-2 .895-2 2v5h4v-5zM19 19h-14c-.553 0-1 .447-1 1s.447 1 1 1h14c.553 0 1-.447 1-1s-.447-1-1-1z" + }, + "children": [] + }] +}; +exports.chartBar = chartBar; \ No newline at end of file diff --git a/dist/typicons/chartBarOutline.js b/dist/typicons/chartBarOutline.js new file mode 100644 index 000000000..1fb848288 --- /dev/null +++ b/dist/typicons/chartBarOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.chartBarOutline = void 0; +var chartBarOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M17 5c-.771 0-1.468.301-2 .779v-1.779c0-1.654-1.346-3-3-3s-3 1.346-3 3v4.779c-.532-.478-1.229-.779-2-.779-1.654 0-3 1.346-3 3v6h16v-9c0-1.654-1.346-3-3-3zm-5-2c.551 0 1 .448 1 1v11h-2v-11c0-.552.449-1 1-1zm-4 12h-2v-4c0-.552.449-1 1-1s1 .448 1 1v4zm10 0h-2v-7c0-.552.449-1 1-1s1 .448 1 1v7zM19 21h-14c-.552 0-1-.447-1-1s.448-1 1-1h14c.552 0 1 .447 1 1s-.448 1-1 1z" + }, + "children": [] + }] +}; +exports.chartBarOutline = chartBarOutline; \ No newline at end of file diff --git a/dist/typicons/chartLine.js b/dist/typicons/chartLine.js new file mode 100644 index 000000000..ba3ab39f6 --- /dev/null +++ b/dist/typicons/chartLine.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.chartLine = void 0; +var chartLine = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M4.75 15.561c.369.294.811.439 1.248.439.588 0 1.168-.258 1.563-.752l2.789-3.486 2.45 1.838c.864.648 2.088.492 2.762-.352l4-5c.69-.861.55-2.121-.312-2.811-.863-.689-2.121-.551-2.812.312l-2.789 3.486-2.449-1.835c-.864-.648-2.087-.494-2.762.35l-4 5c-.69.863-.549 2.121.312 2.811zM5 21h14c.553 0 1-.447 1-1s-.447-1-1-1h-14c-.553 0-1 .447-1 1s.447 1 1 1z" + }, + "children": [] + }] +}; +exports.chartLine = chartLine; \ No newline at end of file diff --git a/dist/typicons/chartLineOutline.js b/dist/typicons/chartLineOutline.js new file mode 100644 index 000000000..923a21c26 --- /dev/null +++ b/dist/typicons/chartLineOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.chartLineOutline = void 0; +var chartLineOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M5.999 17c-.677 0-1.342-.234-1.873-.658-.626-.501-1.019-1.215-1.107-2.011-.089-.796.138-1.58.639-2.206l4-5c.978-1.225 2.883-1.471 4.143-.523l1.674 1.254 2.184-2.729c.571-.716 1.425-1.127 2.342-1.127.679 0 1.343.232 1.873.657.626.501 1.021 1.216 1.108 2.013s-.14 1.58-.641 2.204l-4 5c-.977 1.226-2.882 1.471-4.143.526l-1.674-1.256-2.184 2.729c-.57.716-1.424 1.127-2.341 1.127zm4.001-9c-.306 0-.591.137-.781.374l-4 5.001c-.167.208-.243.471-.213.734.03.266.161.504.369.67.228.183.465.221.624.221.306 0 .591-.137.782-.376l3.395-4.244 3.224 2.42c.42.316 1.056.231 1.381-.176l4-5.001c.167-.208.242-.469.213-.734-.03-.266-.161-.504-.369-.67-.227-.182-.464-.22-.624-.22-.306 0-.591.137-.782.376l-3.395 4.242-3.224-2.417c-.175-.132-.382-.2-.6-.2zM19 21h-14c-.552 0-1-.447-1-1s.448-1 1-1h14c.552 0 1 .447 1 1s-.448 1-1 1z" + }, + "children": [] + }] +}; +exports.chartLineOutline = chartLineOutline; \ No newline at end of file diff --git a/dist/typicons/chartPie.js b/dist/typicons/chartPie.js new file mode 100644 index 000000000..a13d0b54e --- /dev/null +++ b/dist/typicons/chartPie.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.chartPie = void 0; +var chartPie = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M11.614 13.98l4.908 4.922c.39.391.99.36 1.286-.106.88-1.394 1.393-3.044 1.393-4.815 0-2.131-.741-4.086-1.972-5.631l-5.615 5.63zM9 14.396v-7.355c-3.391.487-6 3.405-6 6.939 0 3.876 3.134 7.02 7 7.02 1.572 0 3.018-.526 4.186-1.403l-5.186-5.201zM16.331 6.213c.39-.391.365-.999-.089-1.313-1.253-.868-2.695-1.479-4.251-1.765-.544-.1-.991.312-.991.865v7.56l5.331-5.347z" + }, + "children": [] + }] +}; +exports.chartPie = chartPie; \ No newline at end of file diff --git a/dist/typicons/chartPieOutline.js b/dist/typicons/chartPieOutline.js new file mode 100644 index 000000000..43819fe32 --- /dev/null +++ b/dist/typicons/chartPieOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.chartPieOutline = void 0; +var chartPieOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.227 7.609l.557-.559c.396-.396.607-.943.582-1.504-.026-.561-.286-1.084-.717-1.443-2.129-1.775-4.711-2.848-7.469-3.097l-.18-.006c-.497 0-.979.186-1.35.523-.414.379-.65.915-.65 1.477v2.229c-3.657.865-6.333 4.188-6.333 8.006 0 4.547 3.688 8.244 8.224 8.244 1.594 0 3.11-.479 4.441-1.345.277.142.583.226.9.226l.109-.004c.569-.03 1.098-.305 1.453-.75 1.421-1.781 2.204-4.019 2.204-6.297.002-2.032-.625-4.027-1.771-5.7zm-7.336 11.87c-3.438 0-6.224-2.793-6.224-6.244 0-3.137 2.317-5.729 5.333-6.164v6.408l4.609 4.754c-1.037.779-2.322 1.246-3.718 1.246zm.109-7.454v-9.025c2.411.218 4.607 1.173 6.366 2.641l-6.366 6.384zm.214 1.269l5.019-5.028c1.104 1.385 1.769 3.141 1.769 5.043 0 1.914-.664 3.666-1.769 5.051l-5.019-5.066z" + }, + "children": [] + }] +}; +exports.chartPieOutline = chartPieOutline; \ No newline at end of file diff --git a/dist/typicons/chevronLeft.js b/dist/typicons/chevronLeft.js new file mode 100644 index 000000000..c93163b69 --- /dev/null +++ b/dist/typicons/chevronLeft.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.chevronLeft = void 0; +var chevronLeft = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M14.414 5.586c-.78-.781-2.048-.781-2.828 0l-6.415 6.414 6.415 6.414c.39.391.902.586 1.414.586s1.024-.195 1.414-.586c.781-.781.781-2.047 0-2.828l-3.585-3.586 3.585-3.586c.781-.781.781-2.047 0-2.828z" + }, + "children": [] + }] +}; +exports.chevronLeft = chevronLeft; \ No newline at end of file diff --git a/dist/typicons/chevronLeftOutline.js b/dist/typicons/chevronLeftOutline.js new file mode 100644 index 000000000..f1bfa3097 --- /dev/null +++ b/dist/typicons/chevronLeftOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.chevronLeftOutline = void 0; +var chevronLeftOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M13 20c-.802 0-1.555-.312-2.122-.879l-7.121-7.121 7.122-7.121c1.133-1.133 3.11-1.133 4.243 0 .566.566.878 1.32.878 2.121s-.312 1.555-.879 2.122l-2.878 2.878 2.878 2.879c.567.566.879 1.32.879 2.121s-.312 1.555-.879 2.122c-.566.566-1.319.878-2.121.878zm-6.415-8l5.708 5.707c.378.378 1.037.377 1.414 0 .189-.189.293-.439.293-.707s-.104-.518-.293-.707l-4.292-4.293 4.292-4.293c.189-.189.293-.44.293-.707s-.104-.518-.293-.707c-.378-.379-1.037-.378-1.414-.001l-5.708 5.708z" + }, + "children": [] + }] +}; +exports.chevronLeftOutline = chevronLeftOutline; \ No newline at end of file diff --git a/dist/typicons/chevronRight.js b/dist/typicons/chevronRight.js new file mode 100644 index 000000000..aaf5848e3 --- /dev/null +++ b/dist/typicons/chevronRight.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.chevronRight = void 0; +var chevronRight = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M8.586 5.586c-.781.781-.781 2.047 0 2.828l3.585 3.586-3.585 3.586c-.781.781-.781 2.047 0 2.828.39.391.902.586 1.414.586s1.024-.195 1.414-.586l6.415-6.414-6.415-6.414c-.78-.781-2.048-.781-2.828 0z" + }, + "children": [] + }] +}; +exports.chevronRight = chevronRight; \ No newline at end of file diff --git a/dist/typicons/chevronRightOutline.js b/dist/typicons/chevronRightOutline.js new file mode 100644 index 000000000..84f72471a --- /dev/null +++ b/dist/typicons/chevronRightOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.chevronRightOutline = void 0; +var chevronRightOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M10 20c-.802 0-1.555-.312-2.122-.879-.566-.566-.878-1.32-.878-2.121s.312-1.555.879-2.122l2.878-2.878-2.878-2.879c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.122c1.133-1.132 3.109-1.133 4.243.001l7.121 7.121-7.122 7.121c-.566.567-1.319.879-2.121.879zm0-14c-.268 0-.518.104-.707.292-.189.19-.293.441-.293.708s.104.518.293.707l4.292 4.293-4.292 4.293c-.189.189-.293.439-.293.707s.104.518.293.707c.378.379 1.037.378 1.414.001l5.708-5.708-5.708-5.707c-.189-.189-.439-.293-.707-.293z" + }, + "children": [] + }] +}; +exports.chevronRightOutline = chevronRightOutline; \ No newline at end of file diff --git a/dist/typicons/clipboard.js b/dist/typicons/clipboard.js new file mode 100644 index 000000000..ac5c81831 --- /dev/null +++ b/dist/typicons/clipboard.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.clipboard = void 0; +var clipboard = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M17 3h-10c-1.654 0-3 1.346-3 3v12c0 1.654 1.346 3 3 3h10c1.654 0 3-1.346 3-3v-12c0-1.654-1.346-3-3-3zm-8 2h6v1c0 .551-.449 1-1 1h-4c-.551 0-1-.449-1-1v-1zm9 13c0 .551-.449 1-1 1h-10c-.551 0-1-.449-1-1v-12c0-.551.449-1 1-1h1v1c0 1.1.9 2 2 2h4c1.1 0 2-.9 2-2v-1h1c.551 0 1 .449 1 1v12zM16 17h-8c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h8c.276 0 .5.224.5.5s-.224.5-.5.5zM16 14h-8c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h8c.276 0 .5.224.5.5s-.224.5-.5.5zM16 11h-8c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h8c.276 0 .5.224.5.5s-.224.5-.5.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17 3h-10c-1.654 0-3 1.346-3 3v12c0 1.654 1.346 3 3 3h10c1.654 0 3-1.346 3-3v-12c0-1.654-1.346-3-3-3zm-8 2h6v1c0 .551-.449 1-1 1h-4c-.551 0-1-.449-1-1v-1zm9 13c0 .551-.449 1-1 1h-10c-.551 0-1-.449-1-1v-12c0-.551.449-1 1-1h1v1c0 1.1.9 2 2 2h4c1.1 0 2-.9 2-2v-1h1c.551 0 1 .449 1 1v12zM16 17h-8c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h8c.276 0 .5.224.5.5s-.224.5-.5.5zM16 14h-8c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h8c.276 0 .5.224.5.5s-.224.5-.5.5zM16 11h-8c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h8c.276 0 .5.224.5.5s-.224.5-.5.5z" + }, + "children": [] + }] + }] + }] +}; +exports.clipboard = clipboard; \ No newline at end of file diff --git a/dist/typicons/cloudStorage.js b/dist/typicons/cloudStorage.js new file mode 100644 index 000000000..5b29f264e --- /dev/null +++ b/dist/typicons/cloudStorage.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cloudStorage = void 0; +var cloudStorage = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M17 9l-.351.015c-.825-2.377-3.062-4.015-5.649-4.015-3.309 0-6 2.691-6 6l.001.126c-1.724.445-3.001 2.013-3.001 3.874 0 2.206 1.794 4 4 4h5v-4.586l-1.293 1.293c-.195.195-.451.293-.707.293s-.512-.098-.707-.293c-.391-.391-.391-1.023 0-1.414l2.999-2.999c.093-.093.203-.166.326-.217.244-.101.52-.101.764 0 .123.051.233.124.326.217l2.999 2.999c.391.391.391 1.023 0 1.414-.195.195-.451.293-.707.293s-.512-.098-.707-.293l-1.293-1.293v4.586h4c2.757 0 5-2.243 5-5s-2.243-5-5-5z" + }, + "children": [] + }] +}; +exports.cloudStorage = cloudStorage; \ No newline at end of file diff --git a/dist/typicons/cloudStorageOutline.js b/dist/typicons/cloudStorageOutline.js new file mode 100644 index 000000000..d7d4ac5ef --- /dev/null +++ b/dist/typicons/cloudStorageOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cloudStorageOutline = void 0; +var cloudStorageOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M16.5 8.999l-.352.015c-.824-2.375-3.312-4.015-5.898-4.015-3.309 0-6.25 2.69-6.25 6v.126c-1 .445-2.75 2.014-2.75 3.875 0 2.206 2.044 4 4.25 4h11c2.757 0 5-2.244 5-5s-2.243-5.001-5-5.001zm0 8.001h-4.5v-3.794l2.146 2.146c.098.099.226.146.354.146s.256-.049.354-.146c.195-.194.195-.512 0-.707l-2.998-3-.164-.107c-.123-.051-.26-.051-.383 0l-.162.107-3 3c-.194.195-.194.513 0 .707.099.099.227.146.354.146s.256-.049.354-.146l2.145-2.146v3.794h-5.5c-1.104 0-2-.896-2-2s.896-2 1.908-2.005l1.422.015-.248-1.201c-.055-.264-.082-.536-.082-.809 0-2.206 1.794-4 4-4 1.951 0 3.604 1.402 3.93 3.334l.187 1.102 1.073-.306c.312-.089.569-.13.812-.13 1.653 0 3 1.346 3 3s-1.348 3-3.002 3z" + }, + "children": [] + }] +}; +exports.cloudStorageOutline = cloudStorageOutline; \ No newline at end of file diff --git a/dist/typicons/code.js b/dist/typicons/code.js new file mode 100644 index 000000000..60757a7d0 --- /dev/null +++ b/dist/typicons/code.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.code = void 0; +var code = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M8.171 18c-.512 0-1.023-.195-1.414-.586l-4.414-4.414 4.414-4.414c.781-.781 2.049-.781 2.828 0 .781.781.781 2.047 0 2.828l-1.585 1.586 1.585 1.586c.781.781.781 2.047 0 2.828-.39.391-.902.586-1.414.586zM15.829 18c-.512 0-1.024-.195-1.414-.586-.781-.781-.781-2.047 0-2.828l1.585-1.586-1.585-1.586c-.781-.781-.781-2.047 0-2.828.779-.781 2.047-.781 2.828 0l4.414 4.414-4.414 4.414c-.39.391-.902.586-1.414.586z" + }, + "children": [] + }] +}; +exports.code = code; \ No newline at end of file diff --git a/dist/typicons/codeOutline.js b/dist/typicons/codeOutline.js new file mode 100644 index 000000000..b1890a43a --- /dev/null +++ b/dist/typicons/codeOutline.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.codeOutline = void 0; +var codeOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M7.828 19c-.801 0-1.555-.312-2.121-.879l-5.121-5.121 5.121-5.121c1.133-1.134 3.112-1.134 4.243.001 1.169 1.168 1.169 3.072-.001 4.241l-.878.879.878.879c1.17 1.169 1.17 3.073 0 4.242-.564.567-1.318.879-2.121.879zm-4.414-6l3.707 3.707c.38.379 1.039.377 1.413.001.391-.391.391-1.025.001-1.415l-2.292-2.293 2.292-2.293c.39-.39.39-1.024 0-1.414-.378-.379-1.036-.377-1.414 0l-3.707 3.707zM16.172 19c-.803 0-1.557-.312-2.122-.88-1.169-1.168-1.169-3.072.001-4.241l.878-.879-.878-.879c-1.17-1.169-1.17-3.073 0-4.242 1.129-1.133 3.109-1.134 4.242 0l5.121 5.121-5.121 5.121c-.566.567-1.32.879-2.121.879zm-.001-10c-.267 0-.518.104-.705.292-.391.391-.391 1.025-.001 1.415l2.292 2.293-2.292 2.293c-.39.39-.39 1.024 0 1.414.377.378 1.035.379 1.414 0l3.707-3.707-3.707-3.707c-.19-.189-.441-.293-.708-.293z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M7.828 19c-.801 0-1.555-.312-2.121-.879l-5.121-5.121 5.121-5.121c1.133-1.134 3.112-1.134 4.243.001 1.169 1.168 1.169 3.072-.001 4.241l-.878.879.878.879c1.17 1.169 1.17 3.073 0 4.242-.564.567-1.318.879-2.121.879zm-4.414-6l3.707 3.707c.38.379 1.039.377 1.413.001.391-.391.391-1.025.001-1.415l-2.292-2.293 2.292-2.293c.39-.39.39-1.024 0-1.414-.378-.379-1.036-.377-1.414 0l-3.707 3.707zM16.172 19c-.803 0-1.557-.312-2.122-.88-1.169-1.168-1.169-3.072.001-4.241l.878-.879-.878-.879c-1.17-1.169-1.17-3.073 0-4.242 1.129-1.133 3.109-1.134 4.242 0l5.121 5.121-5.121 5.121c-.566.567-1.32.879-2.121.879zm-.001-10c-.267 0-.518.104-.705.292-.391.391-.391 1.025-.001 1.415l2.292 2.293-2.292 2.293c-.39.39-.39 1.024 0 1.414.377.378 1.035.379 1.414 0l3.707-3.707-3.707-3.707c-.19-.189-.441-.293-.708-.293z" + }, + "children": [] + }] + }] + }] +}; +exports.codeOutline = codeOutline; \ No newline at end of file diff --git a/dist/typicons/coffee.js b/dist/typicons/coffee.js new file mode 100644 index 000000000..727e45a8b --- /dev/null +++ b/dist/typicons/coffee.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.coffee = void 0; +var coffee = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M17 19h-12c-.553 0-1-.447-1-1s.447-1 1-1h12c.553 0 1 .447 1 1s-.447 1-1 1zM17.5 5h-12.5v9c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2v-2h.5c1.93 0 3.5-1.57 3.5-3.5s-1.57-3.5-3.5-3.5zm-2.5 9h-8v-7h8v7zm2.5-4h-1.5v-3h1.5c.827 0 1.5.673 1.5 1.5s-.673 1.5-1.5 1.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17 19h-12c-.553 0-1-.447-1-1s.447-1 1-1h12c.553 0 1 .447 1 1s-.447 1-1 1zM17.5 5h-12.5v9c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2v-2h.5c1.93 0 3.5-1.57 3.5-3.5s-1.57-3.5-3.5-3.5zm-2.5 9h-8v-7h8v7zm2.5-4h-1.5v-3h1.5c.827 0 1.5.673 1.5 1.5s-.673 1.5-1.5 1.5z" + }, + "children": [] + }] + }] + }] +}; +exports.coffee = coffee; \ No newline at end of file diff --git a/dist/typicons/cog.js b/dist/typicons/cog.js new file mode 100644 index 000000000..c87ac024a --- /dev/null +++ b/dist/typicons/cog.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cog = void 0; +var cog = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M9.387 17.548l.371 1.482c.133.533.692.97 1.242.97h1c.55 0 1.109-.437 1.242-.97l.371-1.482c.133-.533.675-.846 1.203-.694l1.467.42c.529.151 1.188-.114 1.462-.591l.5-.867c.274-.477.177-1.179-.219-1.562l-1.098-1.061c-.396-.383-.396-1.008.001-1.39l1.096-1.061c.396-.382.494-1.084.22-1.561l-.501-.867c-.275-.477-.933-.742-1.461-.591l-1.467.42c-.529.151-1.07-.161-1.204-.694l-.37-1.48c-.133-.532-.692-.969-1.242-.969h-1c-.55 0-1.109.437-1.242.97l-.37 1.48c-.134.533-.675.846-1.204.695l-1.467-.42c-.529-.152-1.188.114-1.462.59l-.5.867c-.274.477-.177 1.179.22 1.562l1.096 1.059c.395.383.395 1.008 0 1.391l-1.098 1.061c-.395.383-.494 1.085-.219 1.562l.501.867c.274.477.933.742 1.462.591l1.467-.42c.528-.153 1.07.16 1.203.693zm2.113-7.048c1.104 0 2 .895 2 2 0 1.104-.896 2-2 2s-2-.896-2-2c0-1.105.896-2 2-2z" + }, + "children": [] + }] +}; +exports.cog = cog; \ No newline at end of file diff --git a/dist/typicons/cogOutline.js b/dist/typicons/cogOutline.js new file mode 100644 index 000000000..d559f3ba9 --- /dev/null +++ b/dist/typicons/cogOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.cogOutline = void 0; +var cogOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M13 5l.855 3.42 3.389-.971 1.501 2.6-2.535 2.449 2.535 2.451-1.5 2.6-3.39-.971-.855 3.422h-3l-.855-3.422-3.39.971-1.501-2.6 2.535-2.451-2.534-2.449 1.5-2.6 3.39.971.855-3.42h3m0-2h-3c-.918 0-1.718.625-1.939 1.516l-.354 1.412-1.4-.4c-.184-.053-.369-.078-.552-.078-.7 0-1.368.37-1.731 1l-1.5 2.6c-.459.796-.317 1.802.342 2.438l1.047 1.011-1.048 1.015c-.66.637-.802 1.643-.343 2.438l1.502 2.6c.363.631 1.031 1 1.731 1 .183 0 .368-.025.552-.076l1.399-.401.354 1.415c.222.885 1.022 1.51 1.94 1.51h3c.918 0 1.718-.625 1.939-1.516l.354-1.414 1.399.4c.184.053.369.077.552.077.7 0 1.368-.37 1.731-1l1.5-2.6c.459-.796.317-1.8-.342-2.438l-1.047-1.013 1.047-1.013c.66-.637.801-1.644.342-2.438l-1.5-2.6c-.365-.631-1.031-1-1.732-1-.184 0-.368.025-.551.076l-1.4.401-.354-1.413c-.22-.884-1.02-1.509-1.938-1.509zM11.5 10.5c1.104 0 2 .895 2 2 0 1.104-.896 2-2 2s-2-.896-2-2c0-1.105.896-2 2-2m0-1c-1.654 0-3 1.346-3 3s1.346 3 3 3 3-1.346 3-3-1.346-3-3-3z" + }, + "children": [] + }] +}; +exports.cogOutline = cogOutline; \ No newline at end of file diff --git a/dist/typicons/compass.js b/dist/typicons/compass.js new file mode 100644 index 000000000..7a5a344e0 --- /dev/null +++ b/dist/typicons/compass.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.compass = void 0; +var compass = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12 5c3.859.001 7 3.142 7 7.001 0 3.858-3.141 6.998-7 6.999-3.859 0-7-3.14-7-6.999s3.141-7 7-7.001m0-2c-4.971.001-9 4.03-9 9.001 0 4.97 4.029 8.999 9 8.999 4.97-.001 9-4.03 9-8.999 0-4.971-4.029-9-9-9.001zM16.182 7.819c-.129-.128-.315-.178-.491-.127l-5.951 1.706c-.166.048-.295.177-.342.343l-1.707 5.951c-.051.175-.002.363.127.491.095.095.223.146.354.146l.138-.02 5.95-1.708c.165-.047.295-.177.342-.343l1.707-5.949c.05-.173.002-.361-.127-.49zm-7.282 7.282l1.383-4.817 3.434 3.435-4.817 1.382z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12 5c3.859.001 7 3.142 7 7.001 0 3.858-3.141 6.998-7 6.999-3.859 0-7-3.14-7-6.999s3.141-7 7-7.001m0-2c-4.971.001-9 4.03-9 9.001 0 4.97 4.029 8.999 9 8.999 4.97-.001 9-4.03 9-8.999 0-4.971-4.029-9-9-9.001zM16.182 7.819c-.129-.128-.315-.178-.491-.127l-5.951 1.706c-.166.048-.295.177-.342.343l-1.707 5.951c-.051.175-.002.363.127.491.095.095.223.146.354.146l.138-.02 5.95-1.708c.165-.047.295-.177.342-.343l1.707-5.949c.05-.173.002-.361-.127-.49zm-7.282 7.282l1.383-4.817 3.434 3.435-4.817 1.382z" + }, + "children": [] + }] + }] + }] +}; +exports.compass = compass; \ No newline at end of file diff --git a/dist/typicons/contacts.js b/dist/typicons/contacts.js new file mode 100644 index 000000000..3cd298be7 --- /dev/null +++ b/dist/typicons/contacts.js @@ -0,0 +1,55 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.contacts = void 0; +var contacts = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M19 3h-11c-1.654 0-3 1.346-3 3v1h-1c-.553 0-1 .448-1 1s.447 1 1 1h1v2h-1c-.553 0-1 .448-1 1s.447 1 1 1h1v2h-1c-.553 0-1 .448-1 1s.447 1 1 1h1v1c0 1.654 1.346 3 3 3h11c1.654 0 3-1.346 3-3v-12c0-1.654-1.346-3-3-3zm-12 3c0-.551.449-1 1-1v2h-1v-1zm0 3h1v2h-1v-2zm0 4h1v2h-1v-2zm0 5v-1h1v2c-.551 0-1-.449-1-1zm13 0c0 .551-.449 1-1 1h-10v-14h10c.551 0 1 .449 1 1v12z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19 3h-11c-1.654 0-3 1.346-3 3v1h-1c-.553 0-1 .448-1 1s.447 1 1 1h1v2h-1c-.553 0-1 .448-1 1s.447 1 1 1h1v2h-1c-.553 0-1 .448-1 1s.447 1 1 1h1v1c0 1.654 1.346 3 3 3h11c1.654 0 3-1.346 3-3v-12c0-1.654-1.346-3-3-3zm-12 3c0-.551.449-1 1-1v2h-1v-1zm0 3h1v2h-1v-2zm0 4h1v2h-1v-2zm0 5v-1h1v2c-.551 0-1-.449-1-1zm13 0c0 .551-.449 1-1 1h-10v-14h10c.551 0 1 .449 1 1v12z" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "14", + "cy": "10.5", + "r": "2" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "14", + "cy": "10.5", + "r": "2" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M14 13.356c-1.562 0-2.5.715-2.5 1.429 0 .357.938.715 2.5.715 1.466 0 2.5-.357 2.5-.715 0-.714-.98-1.429-2.5-1.429z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14 13.356c-1.562 0-2.5.715-2.5 1.429 0 .357.938.715 2.5.715 1.466 0 2.5-.357 2.5-.715 0-.714-.98-1.429-2.5-1.429z" + }, + "children": [] + }] + }] + }] +}; +exports.contacts = contacts; \ No newline at end of file diff --git a/dist/typicons/creditCard.js b/dist/typicons/creditCard.js new file mode 100644 index 000000000..65040433a --- /dev/null +++ b/dist/typicons/creditCard.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.creditCard = void 0; +var creditCard = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M17 7h-11c-1.654 0-3 1.346-3 3v7c0 1.654 1.346 3 3 3h11c1.654 0 3-1.346 3-3v-7c0-1.654-1.346-3-3-3zm1 10c0 .552-.448 1-1 1h-11c-.552 0-1-.448-1-1v-4h13v4zm0-6h-13v-1c0-.552.448-1 1-1h11c.552 0 1 .448 1 1v1zM14 16h2c.276 0 .5-.224.5-.5s-.224-.5-.5-.5h-2c-.276 0-.5.224-.5.5s.224.5.5.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17 7h-11c-1.654 0-3 1.346-3 3v7c0 1.654 1.346 3 3 3h11c1.654 0 3-1.346 3-3v-7c0-1.654-1.346-3-3-3zm1 10c0 .552-.448 1-1 1h-11c-.552 0-1-.448-1-1v-4h13v4zm0-6h-13v-1c0-.552.448-1 1-1h11c.552 0 1 .448 1 1v1zM14 16h2c.276 0 .5-.224.5-.5s-.224-.5-.5-.5h-2c-.276 0-.5.224-.5.5s.224.5.5.5z" + }, + "children": [] + }] + }] + }] +}; +exports.creditCard = creditCard; \ No newline at end of file diff --git a/dist/typicons/css3.js b/dist/typicons/css3.js new file mode 100644 index 000000000..c2dd8e620 --- /dev/null +++ b/dist/typicons/css3.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.css3 = void 0; +var css3 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M5.7 3.4l-.6 3.2h12.3l-.4 2.1h-12.3l-.6 3.2h12.3l-.7 3.6-5 1.7-4.3-1.7.3-1.6h-3l-.7 3.8 7.1 2.9 8.2-2.9 1.1-5.8.2-1.2 1.4-7.3h-15.3z" + }, + "children": [] + }] +}; +exports.css3 = css3; \ No newline at end of file diff --git a/dist/typicons/database.js b/dist/typicons/database.js new file mode 100644 index 000000000..208b87837 --- /dev/null +++ b/dist/typicons/database.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.database = void 0; +var database = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.983 8.791c-.176-3.704-3.236-6.666-6.983-6.666s-6.807 2.962-6.983 6.666l-.017.084v6.25c0 3.86 3.141 7 7 7s7-3.14 7-7v-6.25l-.017-.084zm-6.983 8.834c-2.22 0-4.132-1.324-5-3.222v-.388c1.271 1.3 3.042 2.11 5 2.11s3.729-.811 5-2.11v.388c-.868 1.898-2.78 3.222-5 3.222zm0-13.5c2.757 0 5 2.243 5 5s-2.243 5-5 5-5-2.243-5-5 2.243-5 5-5zm0 16c-2.271 0-4.172-1.532-4.778-3.609 1.188 1.293 2.888 2.109 4.778 2.109s3.59-.816 4.778-2.109c-.606 2.077-2.507 3.609-4.778 3.609z" + }, + "children": [] + }] +}; +exports.database = database; \ No newline at end of file diff --git a/dist/typicons/deleteIconic.js b/dist/typicons/deleteIconic.js new file mode 100644 index 000000000..dd4a709bf --- /dev/null +++ b/dist/typicons/deleteIconic.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.deleteIconic = void 0; +var deleteIconic = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 4c-4.419 0-8 3.582-8 8s3.581 8 8 8 8-3.582 8-8-3.581-8-8-8zm3.707 10.293c.391.391.391 1.023 0 1.414-.195.195-.451.293-.707.293s-.512-.098-.707-.293l-2.293-2.293-2.293 2.293c-.195.195-.451.293-.707.293s-.512-.098-.707-.293c-.391-.391-.391-1.023 0-1.414l2.293-2.293-2.293-2.293c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l2.293 2.293 2.293-2.293c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-2.293 2.293 2.293 2.293z" + }, + "children": [] + }] +}; +exports.deleteIconic = deleteIconic; \ No newline at end of file diff --git a/dist/typicons/deleteOutline.js b/dist/typicons/deleteOutline.js new file mode 100644 index 000000000..3ccc7c490 --- /dev/null +++ b/dist/typicons/deleteOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.deleteOutline = void 0; +var deleteOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 3c-4.963 0-9 4.038-9 9s4.037 9 9 9 9-4.038 9-9-4.037-9-9-9zm0 16c-3.859 0-7-3.14-7-7s3.141-7 7-7 7 3.14 7 7-3.141 7-7 7zM12.707 12l2.646-2.646c.194-.194.194-.512 0-.707-.195-.194-.513-.194-.707 0l-2.646 2.646-2.646-2.647c-.195-.194-.513-.194-.707 0-.195.195-.195.513 0 .707l2.646 2.647-2.646 2.646c-.195.195-.195.513 0 .707.097.098.225.147.353.147s.256-.049.354-.146l2.646-2.647 2.646 2.646c.098.098.226.147.354.147s.256-.049.354-.146c.194-.194.194-.512 0-.707l-2.647-2.647z" + }, + "children": [] + }] +}; +exports.deleteOutline = deleteOutline; \ No newline at end of file diff --git a/dist/typicons/deviceDesktop.js b/dist/typicons/deviceDesktop.js new file mode 100644 index 000000000..984b60d5e --- /dev/null +++ b/dist/typicons/deviceDesktop.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.deviceDesktop = void 0; +var deviceDesktop = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M21 1h-18c-1.654 0-3 1.346-3 3v11c0 1.654 1.346 3 3 3h6v2h-3c-.552 0-1 .448-1 1s.448 1 1 1h12c.552 0 1-.448 1-1s-.448-1-1-1h-3v-2h6c1.654 0 3-1.346 3-3v-11c0-1.654-1.346-3-3-3zm-7 19h-4v-2h4v2zm8-5c0 .551-.449 1-1 1h-18c-.551 0-1-.449-1-1v-11c0-.551.449-1 1-1h18c.551 0 1 .449 1 1v11zM20 4h-16c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1h16c.55 0 1-.45 1-1v-8c0-.55-.45-1-1-1zm0 9h-16v-8h16v8z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21 1h-18c-1.654 0-3 1.346-3 3v11c0 1.654 1.346 3 3 3h6v2h-3c-.552 0-1 .448-1 1s.448 1 1 1h12c.552 0 1-.448 1-1s-.448-1-1-1h-3v-2h6c1.654 0 3-1.346 3-3v-11c0-1.654-1.346-3-3-3zm-7 19h-4v-2h4v2zm8-5c0 .551-.449 1-1 1h-18c-.551 0-1-.449-1-1v-11c0-.551.449-1 1-1h18c.551 0 1 .449 1 1v11zM20 4h-16c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1h16c.55 0 1-.45 1-1v-8c0-.55-.45-1-1-1zm0 9h-16v-8h16v8z" + }, + "children": [] + }] + }] + }] +}; +exports.deviceDesktop = deviceDesktop; \ No newline at end of file diff --git a/dist/typicons/deviceLaptop.js b/dist/typicons/deviceLaptop.js new file mode 100644 index 000000000..b6f0fd936 --- /dev/null +++ b/dist/typicons/deviceLaptop.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.deviceLaptop = void 0; +var deviceLaptop = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M21.989 16.049c.009-.315.011-.657.011-1.049v-9c0-1.654-1.346-3-3-3h-14c-1.654 0-3 1.346-3 3v9c0 .385.002.73.012 1.049-1.145.228-2.012 1.24-2.012 2.451 0 1.378 1.122 2.5 2.5 2.5h19c1.378 0 2.5-1.122 2.5-2.5 0-1.211-.866-2.222-2.011-2.451zm-17.989-10.049c0-.551.449-1 1-1h14c.551 0 1 .449 1 1v9c0 .388-.005.726-.014 1h-.986v-9c0-.55-.45-1-1-1h-12c-.55 0-1 .45-1 1v9h-.98c-.012-.264-.02-.599-.02-1v-9zm14 10h-12v-9h12v9zm3.5 3h-19c-.271 0-.5-.229-.5-.5s.229-.5.5-.5h19c.271 0 .5.229.5.5s-.229.5-.5.5z" + }, + "children": [] + }] +}; +exports.deviceLaptop = deviceLaptop; \ No newline at end of file diff --git a/dist/typicons/devicePhone.js b/dist/typicons/devicePhone.js new file mode 100644 index 000000000..b292df35e --- /dev/null +++ b/dist/typicons/devicePhone.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.devicePhone = void 0; +var devicePhone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M15 3h-7c-1.654 0-3 1.346-3 3v12c0 1.654 1.346 3 3 3h7c1.654 0 3-1.346 3-3v-12c0-1.654-1.346-3-3-3zm1 15c0 .551-.449 1-1 1h-7c-.551 0-1-.449-1-1v-12c0-.551.449-1 1-1h7c.551 0 1 .449 1 1v12zM14 6h-5c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h1.5c0 .553.448 1 1 1s1-.447 1-1h1.5c.55 0 1-.45 1-1v-9c0-.55-.45-1-1-1zm0 10h-5v-9h5v9z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15 3h-7c-1.654 0-3 1.346-3 3v12c0 1.654 1.346 3 3 3h7c1.654 0 3-1.346 3-3v-12c0-1.654-1.346-3-3-3zm1 15c0 .551-.449 1-1 1h-7c-.551 0-1-.449-1-1v-12c0-.551.449-1 1-1h7c.551 0 1 .449 1 1v12zM14 6h-5c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h1.5c0 .553.448 1 1 1s1-.447 1-1h1.5c.55 0 1-.45 1-1v-9c0-.55-.45-1-1-1zm0 10h-5v-9h5v9z" + }, + "children": [] + }] + }] + }] +}; +exports.devicePhone = devicePhone; \ No newline at end of file diff --git a/dist/typicons/deviceTablet.js b/dist/typicons/deviceTablet.js new file mode 100644 index 000000000..03485f2e4 --- /dev/null +++ b/dist/typicons/deviceTablet.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.deviceTablet = void 0; +var deviceTablet = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M17 4h-9c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h3.5c0 .553.448 1 1 1s1-.447 1-1h3.5c.55 0 1-.45 1-1v-12c0-.55-.45-1-1-1zm0 13h-9v-12h9v12zM18 1h-11c-1.654 0-3 1.346-3 3v15c0 1.654 1.346 3 3 3h11c1.654 0 3-1.346 3-3v-15c0-1.654-1.346-3-3-3zm1 18c0 .551-.449 1-1 1h-11c-.551 0-1-.449-1-1v-15c0-.551.449-1 1-1h11c.551 0 1 .449 1 1v15z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17 4h-9c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h3.5c0 .553.448 1 1 1s1-.447 1-1h3.5c.55 0 1-.45 1-1v-12c0-.55-.45-1-1-1zm0 13h-9v-12h9v12zM18 1h-11c-1.654 0-3 1.346-3 3v15c0 1.654 1.346 3 3 3h11c1.654 0 3-1.346 3-3v-15c0-1.654-1.346-3-3-3zm1 18c0 .551-.449 1-1 1h-11c-.551 0-1-.449-1-1v-15c0-.551.449-1 1-1h11c.551 0 1 .449 1 1v15z" + }, + "children": [] + }] + }] + }] +}; +exports.deviceTablet = deviceTablet; \ No newline at end of file diff --git a/dist/typicons/directions.js b/dist/typicons/directions.js new file mode 100644 index 000000000..21133a845 --- /dev/null +++ b/dist/typicons/directions.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.directions = void 0; +var directions = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M20.908 9.5l-2.754-2.607c-.568-.541-1.447-.893-2.237-.893h-2.917v-.5c0-.828-.672-1.5-1.5-1.5s-1.5.672-1.5 1.5v.5h-3.5c-1.93 0-3.5 1.57-3.5 3.5 0 1.396.828 2.596 2.016 3.157l-1.844 1.843 2.561 2.561c.57.57 1.46.939 2.268.939h2.2l.8 4h1l.8-4h2.7c1.931 0 3.5-1.57 3.5-3.5 0-.902-.353-1.718-.915-2.339l.072-.056 2.75-2.605zm-5.408 6.5h-7.5c-.275 0-.658-.158-.854-.354l-1.146-1.146 1.146-1.146c.195-.195.577-.354.854-.354h7.5c.828 0 1.5.672 1.5 1.5s-.672 1.5-1.5 1.5zm1.279-5.344c-.199.19-.586.344-.862.344h-9.417c-.828 0-1.5-.672-1.5-1.5s.672-1.5 1.5-1.5h9.417c.276 0 .663.154.862.344l1.221 1.156-1.221 1.156z" + }, + "children": [] + }] +}; +exports.directions = directions; \ No newline at end of file diff --git a/dist/typicons/divide.js b/dist/typicons/divide.js new file mode 100644 index 000000000..861f23074 --- /dev/null +++ b/dist/typicons/divide.js @@ -0,0 +1,33 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.divide = void 0; +var divide = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "6", + "r": "2.25" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "18", + "r": "2.25" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 10h-12c-1.104 0-2 .896-2 2s.896 2 2 2h12c1.104 0 2-.896 2-2s-.896-2-2-2z" + }, + "children": [] + }] +}; +exports.divide = divide; \ No newline at end of file diff --git a/dist/typicons/divideOutline.js b/dist/typicons/divideOutline.js new file mode 100644 index 000000000..0bfaf14fc --- /dev/null +++ b/dist/typicons/divideOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.divideOutline = void 0; +var divideOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 8.5c-1.654 0-3-1.346-3-3s1.346-3 3-3 3 1.346 3 3-1.346 3-3 3zm0-4c-.552 0-1 .449-1 1s.448 1 1 1 1-.449 1-1-.448-1-1-1zM12 21.5c-1.654 0-3-1.346-3-3s1.346-3 3-3 3 1.346 3 3-1.346 3-3 3zm0-4c-.552 0-1 .449-1 1s.448 1 1 1 1-.449 1-1-.448-1-1-1zM18 15h-12c-1.654 0-3-1.346-3-3s1.346-3 3-3h12c1.654 0 3 1.346 3 3s-1.346 3-3 3zm-12-4c-.552 0-1 .449-1 1s.448 1 1 1h12c.552 0 1-.449 1-1s-.448-1-1-1h-12z" + }, + "children": [] + }] +}; +exports.divideOutline = divideOutline; \ No newline at end of file diff --git a/dist/typicons/documentAdd.js b/dist/typicons/documentAdd.js new file mode 100644 index 000000000..ad6032552 --- /dev/null +++ b/dist/typicons/documentAdd.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.documentAdd = void 0; +var documentAdd = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M15 12h-2v-2c0-.553-.447-1-1-1s-1 .447-1 1v2h-2c-.553 0-1 .447-1 1s.447 1 1 1h2v2c0 .553.447 1 1 1s1-.447 1-1v-2h2c.553 0 1-.447 1-1s-.447-1-1-1zM19.707 7.293l-4-4c-.187-.188-.441-.293-.707-.293h-8c-1.654 0-3 1.346-3 3v12c0 1.654 1.346 3 3 3h10c1.654 0 3-1.346 3-3v-10c0-.266-.105-.52-.293-.707zm-2.121.707h-1.086c-.827 0-1.5-.673-1.5-1.5v-1.086l2.586 2.586zm-.586 11h-10c-.552 0-1-.448-1-1v-12c0-.552.448-1 1-1h7v1.5c0 1.379 1.121 2.5 2.5 2.5h1.5v9c0 .552-.448 1-1 1z" + }, + "children": [] + }] +}; +exports.documentAdd = documentAdd; \ No newline at end of file diff --git a/dist/typicons/documentDelete.js b/dist/typicons/documentDelete.js new file mode 100644 index 000000000..1f1cbbfb9 --- /dev/null +++ b/dist/typicons/documentDelete.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.documentDelete = void 0; +var documentDelete = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M19.707 7.293l-4-4c-.187-.188-.441-.293-.707-.293h-8c-1.654 0-3 1.346-3 3v12c0 1.654 1.346 3 3 3h10c1.654 0 3-1.346 3-3v-10c0-.266-.105-.52-.293-.707zm-2.121.707h-1.086c-.827 0-1.5-.673-1.5-1.5v-1.086l2.586 2.586zm-.586 11h-10c-.552 0-1-.448-1-1v-12c0-.552.448-1 1-1h7v1.5c0 1.379 1.121 2.5 2.5 2.5h1.5v9c0 .552-.448 1-1 1zM15 14h-6c-.553 0-1-.447-1-1s.447-1 1-1h6c.553 0 1 .447 1 1s-.447 1-1 1z" + }, + "children": [] + }] +}; +exports.documentDelete = documentDelete; \ No newline at end of file diff --git a/dist/typicons/documentIcon.js b/dist/typicons/documentIcon.js new file mode 100644 index 000000000..61cdbc267 --- /dev/null +++ b/dist/typicons/documentIcon.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.documentIcon = void 0; +var documentIcon = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M19.707 7.293l-4-4c-.187-.188-.441-.293-.707-.293h-8c-1.654 0-3 1.346-3 3v12c0 1.654 1.346 3 3 3h10c1.654 0 3-1.346 3-3v-10c0-.266-.105-.52-.293-.707zm-2.121.707h-1.086c-.827 0-1.5-.673-1.5-1.5v-1.086l2.586 2.586zm-.586 11h-10c-.552 0-1-.448-1-1v-12c0-.552.448-1 1-1h7v1.5c0 1.379 1.121 2.5 2.5 2.5h1.5v9c0 .552-.448 1-1 1z" + }, + "children": [] + }] +}; +exports.documentIcon = documentIcon; \ No newline at end of file diff --git a/dist/typicons/documentText.js b/dist/typicons/documentText.js new file mode 100644 index 000000000..a65f845e2 --- /dev/null +++ b/dist/typicons/documentText.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.documentText = void 0; +var documentText = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M17 21h-10c-1.654 0-3-1.346-3-3v-12c0-1.654 1.346-3 3-3h10c1.654 0 3 1.346 3 3v12c0 1.654-1.346 3-3 3zm-10-16c-.551 0-1 .449-1 1v12c0 .551.449 1 1 1h10c.551 0 1-.449 1-1v-12c0-.551-.449-1-1-1h-10zM16 11h-8c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h8c.276 0 .5.224.5.5s-.224.5-.5.5zM16 8h-8c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h8c.276 0 .5.224.5.5s-.224.5-.5.5zM16 14h-8c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h8c.276 0 .5.224.5.5s-.224.5-.5.5zM16 17h-8c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h8c.276 0 .5.224.5.5s-.224.5-.5.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17 21h-10c-1.654 0-3-1.346-3-3v-12c0-1.654 1.346-3 3-3h10c1.654 0 3 1.346 3 3v12c0 1.654-1.346 3-3 3zm-10-16c-.551 0-1 .449-1 1v12c0 .551.449 1 1 1h10c.551 0 1-.449 1-1v-12c0-.551-.449-1-1-1h-10zM16 11h-8c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h8c.276 0 .5.224.5.5s-.224.5-.5.5zM16 8h-8c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h8c.276 0 .5.224.5.5s-.224.5-.5.5zM16 14h-8c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h8c.276 0 .5.224.5.5s-.224.5-.5.5zM16 17h-8c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h8c.276 0 .5.224.5.5s-.224.5-.5.5z" + }, + "children": [] + }] + }] + }] +}; +exports.documentText = documentText; \ No newline at end of file diff --git a/dist/typicons/download.js b/dist/typicons/download.js new file mode 100644 index 000000000..88267ce06 --- /dev/null +++ b/dist/typicons/download.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.download = void 0; +var download = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M16.707 7.404c-.189-.188-.448-.283-.707-.283s-.518.095-.707.283l-2.293 2.293v-6.697c0-.552-.448-1-1-1s-1 .448-1 1v6.697l-2.293-2.293c-.189-.188-.44-.293-.707-.293s-.518.105-.707.293c-.39.39-.39 1.024 0 1.414l4.707 4.682 4.709-4.684c.388-.387.388-1.022-.002-1.412zM20.987 16c0-.105-.004-.211-.039-.316l-2-6c-.136-.409-.517-.684-.948-.684h-.219c-.094.188-.21.368-.367.525l-1.482 1.475h1.348l1.667 5h-13.893l1.667-5h1.348l-1.483-1.475c-.157-.157-.274-.337-.367-.525h-.219c-.431 0-.812.275-.948.684l-2 6c-.035.105-.039.211-.039.316-.013 0-.013 5-.013 5 0 .553.447 1 1 1h16c.553 0 1-.447 1-1 0 0 0-5-.013-5z" + }, + "children": [] + }] +}; +exports.download = download; \ No newline at end of file diff --git a/dist/typicons/downloadOutline.js b/dist/typicons/downloadOutline.js new file mode 100644 index 000000000..dacde3281 --- /dev/null +++ b/dist/typicons/downloadOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.downloadOutline = void 0; +var downloadOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M20.986 17c0-.105-.004-.211-.038-.316l-2-6c-.136-.409-.516-.684-.948-.684h-.561l.682-.678c1.17-1.17 1.17-3.072 0-4.242-.81-.812-2.068-1.078-3.121-.709v-1.371c0-1.654-1.346-3-3-3s-3 1.346-3 3v1.371c-1.052-.369-2.311-.103-3.121.709-1.17 1.17-1.17 3.072.002 4.244l.68.676h-.561c-.432 0-.812.275-.948.684l-2 6c-.034.105-.038.211-.038.316-.014 0-.014 5-.014 5 0 .553.447 1 1 1h16c.553 0 1-.447 1-1 0 0 0-5-.014-5zm-13.693-10.506c.189-.187.439-.293.707-.293s.518.104.707.293l2.293 2.293v-5.787c0-.552.448-1 1-1s1 .448 1 1v5.787l2.293-2.293c.379-.377 1.035-.377 1.414 0 .391.39.391 1.023.002 1.412l-4.709 4.684-4.707-4.682c-.391-.388-.391-1.024 0-1.414zm-.572 5.506h1.852l3.429 3.41 3.428-3.41h1.852l1.667 5h-13.894l1.666-5zm12.279 9h-14v-3h14v3z" + }, + "children": [] + }] +}; +exports.downloadOutline = downloadOutline; \ No newline at end of file diff --git a/dist/typicons/dropbox.js b/dist/typicons/dropbox.js new file mode 100644 index 000000000..508c478a4 --- /dev/null +++ b/dist/typicons/dropbox.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.dropbox = void 0; +var dropbox = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M3 12.9l5.3 3.5 3.7-3.1-5.3-3.3zM8.3 3.6l-5.3 3.5 3.7 2.9 5.3-3.3zM21 7.1l-5.3-3.5-3.7 3.1 5.3 3.3zM12 13.3l3.7 3.1 5.3-3.5-3.7-2.9zM12 14.5l-3.7 3.1-1.6-1.1v1.2l5.3 3.2 5.3-3.2v-1.2l-1.6 1.1z" + }, + "children": [] + }] +}; +exports.dropbox = dropbox; \ No newline at end of file diff --git a/dist/typicons/edit.js b/dist/typicons/edit.js new file mode 100644 index 000000000..68d135d45 --- /dev/null +++ b/dist/typicons/edit.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.edit = void 0; +var edit = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M21.561 5.318l-2.879-2.879c-.293-.293-.677-.439-1.061-.439-.385 0-.768.146-1.061.439l-3.56 3.561h-9c-.552 0-1 .447-1 1v13c0 .553.448 1 1 1h13c.552 0 1-.447 1-1v-9l3.561-3.561c.293-.293.439-.677.439-1.061s-.146-.767-.439-1.06zm-10.061 9.354l-2.172-2.172 6.293-6.293 2.172 2.172-6.293 6.293zm-2.561-1.339l1.756 1.728-1.695-.061-.061-1.667zm7.061 5.667h-11v-11h6l-3.18 3.18c-.293.293-.478.812-.629 1.289-.16.5-.191 1.056-.191 1.47v3.061h3.061c.414 0 1.108-.1 1.571-.29.464-.19.896-.347 1.188-.64l3.18-3.07v6zm2.5-11.328l-2.172-2.172 1.293-1.293 2.171 2.172-1.292 1.293z" + }, + "children": [] + }] +}; +exports.edit = edit; \ No newline at end of file diff --git a/dist/typicons/eject.js b/dist/typicons/eject.js new file mode 100644 index 000000000..aa94b2eb8 --- /dev/null +++ b/dist/typicons/eject.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.eject = void 0; +var eject = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M13 17.5c-2.481 0-4.5-2.019-4.5-4.5 0-.553-.447-1-1-1s-1 .447-1 1c0 3.584 2.916 6.5 6.5 6.5s6.5-2.916 6.5-6.5-2.916-6.5-6.5-6.5c-.553 0-1 .447-1 1s.447 1 1 1c2.481 0 4.5 2.019 4.5 4.5s-2.019 4.5-4.5 4.5zM10.656 4c.552 0 1 .448 1 1s-.448 1-1 1h-3.243l1.708 1.707 4.093 4.092c.391.391.391 1.025.001 1.415-.189.188-.44.292-.708.292s-.519-.104-.707-.291l-4.093-4.094-1.707-1.708v3.243c0 .552-.448 1-1 1s-1-.448-1-1v-6.656h6.656" + }, + "children": [] + }] +}; +exports.eject = eject; \ No newline at end of file diff --git a/dist/typicons/ejectOutline.js b/dist/typicons/ejectOutline.js new file mode 100644 index 000000000..520c82246 --- /dev/null +++ b/dist/typicons/ejectOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ejectOutline = void 0; +var ejectOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M16 8.551v-1.551c0-1.105-.896-2-2-2h-10v10c0 1.104.896 2 2 2h1.066c.893 2.887 3.646 5 6.809 5 3.859 0 7.062-3.016 7.062-6.875.001-3.161-2.068-5.74-4.937-6.574zm-8 1.862v3.243c0 .552-.448 1-1 1s-1-.448-1-1v-6.656h6.656c.552 0 1 .448 1 1s-.448 1-1 1h-3.243l4.801 4.799c.392.391.392 1.025.001 1.415-.189.188-.439.292-.708.292-.268 0-.519-.104-.707-.291l-4.8-4.802zm6 9.618c-2.757 0-5-2.26-5-5.016 0-.705-.004-1.371.21-1.979l2.883 2.884c.39.39.901.584 1.414.584s1.022-.194 1.414-.584c.781-.78.781-2.049 0-2.83l-2.567-2.567c.517-.226 1.065-.398 1.646-.398 2.757 0 5 2.182 5 4.938 0 2.757-2.243 4.968-5 4.968z" + }, + "children": [] + }] +}; +exports.ejectOutline = ejectOutline; \ No newline at end of file diff --git a/dist/typicons/equals.js b/dist/typicons/equals.js new file mode 100644 index 000000000..4dcef9265 --- /dev/null +++ b/dist/typicons/equals.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.equals = void 0; +var equals = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18 7h-12c-1.104 0-2 .896-2 2s.896 2 2 2h12c1.104 0 2-.896 2-2s-.896-2-2-2zM18 14h-12c-1.104 0-2 .896-2 2s.896 2 2 2h12c1.104 0 2-.896 2-2s-.896-2-2-2z" + }, + "children": [] + }] +}; +exports.equals = equals; \ No newline at end of file diff --git a/dist/typicons/equalsOutline.js b/dist/typicons/equalsOutline.js new file mode 100644 index 000000000..6030f583b --- /dev/null +++ b/dist/typicons/equalsOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.equalsOutline = void 0; +var equalsOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18 12h-12c-1.654 0-3-1.346-3-3s1.346-3 3-3h12c1.654 0 3 1.346 3 3s-1.346 3-3 3zm-12-4c-.552 0-1 .449-1 1s.448 1 1 1h12c.552 0 1-.449 1-1s-.448-1-1-1h-12zM18 19h-12c-1.654 0-3-1.346-3-3s1.346-3 3-3h12c1.654 0 3 1.346 3 3s-1.346 3-3 3zm-12-4c-.552 0-1 .449-1 1s.448 1 1 1h12c.552 0 1-.449 1-1s-.448-1-1-1h-12z" + }, + "children": [] + }] +}; +exports.equalsOutline = equalsOutline; \ No newline at end of file diff --git a/dist/typicons/exportIcon.js b/dist/typicons/exportIcon.js new file mode 100644 index 000000000..c73a1f30b --- /dev/null +++ b/dist/typicons/exportIcon.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.exportIcon = void 0; +var exportIcon = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M8 16.5v.5c1.691-2.578 3.6-3.953 6-4v3c0 .551.511 1 1.143 1 .364 0 .675-.158.883-.391 1.933-2.029 5.974-6.109 5.974-6.109s-4.041-4.082-5.975-6.137c-.208-.205-.518-.363-.882-.363-.632 0-1.143.447-1.143 1v3c-4.66 0-6 4.871-6 8.5zM5 21h14c.553 0 1-.448 1-1v-6.046c-.664.676-1.364 1.393-2 2.047v2.999h-12v-12h7v-2h-8c-.553 0-1 .448-1 1v14c0 .552.447 1 1 1z" + }, + "children": [] + }] +}; +exports.exportIcon = exportIcon; \ No newline at end of file diff --git a/dist/typicons/exportOutline.js b/dist/typicons/exportOutline.js new file mode 100644 index 000000000..5c56015cf --- /dev/null +++ b/dist/typicons/exportOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.exportOutline = void 0; +var exportOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M22.711 9.796c-.041-.041-4.055-4.096-5.982-6.146-.42-.414-.999-.65-1.586-.65-1.182 0-2.143.896-2.143 2h-8c-.553 0-1 .448-1 1v14c0 .552.447 1 1 1h14c.553 0 1-.448 1-1v-6.045c1.434-1.461 2.688-2.729 2.711-2.751.387-.39.387-1.018 0-1.408zm-7.432 6.145l-.136.059-.144-.04v-3.96h-1c-1.771.034-3.336.68-4.753 1.958.43-2.215 1.6-4.958 4.753-4.958h1v-3.958l.144-.042.154.05c1.436 1.525 4.051 4.187 5.297 5.45-.253.257-4.342 4.422-5.315 5.441zm-9.279 3.059v-12h8v1c-4.66 0-6 4.871-6 8.5v.5c1.691-2.578 3.6-3.953 6-4v3c0 .551.512 1 1.143 1 .364 0 .676-.158.883-.391.539-.565 1.242-1.291 1.976-2.043v4.434h-12.002z" + }, + "children": [] + }] +}; +exports.exportOutline = exportOutline; \ No newline at end of file diff --git a/dist/typicons/eye.js b/dist/typicons/eye.js new file mode 100644 index 000000000..f865dd876 --- /dev/null +++ b/dist/typicons/eye.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.eye = void 0; +var eye = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M21.821 12.43c-.083-.119-2.062-2.944-4.793-4.875-1.416-1.003-3.202-1.555-5.028-1.555-1.825 0-3.611.552-5.03 1.555-2.731 1.931-4.708 4.756-4.791 4.875-.238.343-.238.798 0 1.141.083.119 2.06 2.944 4.791 4.875 1.419 1.002 3.205 1.554 5.03 1.554 1.826 0 3.612-.552 5.028-1.555 2.731-1.931 4.71-4.756 4.793-4.875.239-.342.239-.798 0-1.14zm-9.821 4.07c-1.934 0-3.5-1.57-3.5-3.5 0-1.934 1.566-3.5 3.5-3.5 1.93 0 3.5 1.566 3.5 3.5 0 1.93-1.57 3.5-3.5 3.5zM14 13c0 1.102-.898 2-2 2-1.105 0-2-.898-2-2 0-1.105.895-2 2-2 1.102 0 2 .895 2 2z" + }, + "children": [] + }] +}; +exports.eye = eye; \ No newline at end of file diff --git a/dist/typicons/eyeOutline.js b/dist/typicons/eyeOutline.js new file mode 100644 index 000000000..22f7d3670 --- /dev/null +++ b/dist/typicons/eyeOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.eyeOutline = void 0; +var eyeOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 9c1.211 0 2.381.355 3.297 1.004 1.301.92 2.43 2.124 3.165 2.996-.735.872-1.864 2.077-3.166 2.996-.915.649-2.085 1.004-3.296 1.004s-2.382-.355-3.299-1.004c-1.301-.92-2.43-2.124-3.164-2.996.734-.872 1.863-2.076 3.164-2.995.917-.65 2.088-1.005 3.299-1.005m0-2c-1.691 0-3.242.516-4.453 1.371-2.619 1.852-4.547 4.629-4.547 4.629s1.928 2.777 4.547 4.629c1.211.855 2.762 1.371 4.453 1.371s3.242-.516 4.451-1.371c2.619-1.852 4.549-4.629 4.549-4.629s-1.93-2.777-4.549-4.629c-1.209-.855-2.76-1.371-4.451-1.371zM12 12c-.553 0-1 .447-1 1 0 .551.447 1 1 1 .551 0 1-.449 1-1 0-.553-.449-1-1-1zM12 16c-1.654 0-3-1.346-3-3s1.346-3 3-3 3 1.346 3 3-1.346 3-3 3zm0-5c-1.104 0-2 .896-2 2s.896 2 2 2 2-.896 2-2-.896-2-2-2z" + }, + "children": [] + }] +}; +exports.eyeOutline = eyeOutline; \ No newline at end of file diff --git a/dist/typicons/feather.js b/dist/typicons/feather.js new file mode 100644 index 000000000..dafcc1720 --- /dev/null +++ b/dist/typicons/feather.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.feather = void 0; +var feather = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M11.68 1.017l-.18-.034-.18.033c-4.821.884-8.32 5.084-8.32 9.984 0 4.617 3.108 8.61 7.5 9.795v1.205c0 .553.448 1 1 1s1-.447 1-1v-1.205c4.392-1.185 7.5-5.178 7.5-9.795 0-4.9-3.499-9.1-8.32-9.983zm.82 17.683v-11.7c0-.553-.448-1-1-1s-1 .447-1 1v11.7c-3.18-1.093-5.4-4.054-5.49-7.483l3.137 3.137c.097.097.225.146.353.146s.256-.049.354-.146c.195-.195.195-.512 0-.707l-3.769-3.769c.133-.964.434-1.877.877-2.709l2.184 2.185c.098.097.226.146.354.146s.256-.049.354-.146c.195-.195.195-.512 0-.707l-2.353-2.353c1.162-1.641 2.919-2.846 4.999-3.275 2.08.43 3.837 1.635 4.999 3.275l-2.353 2.353c-.195.195-.195.512 0 .707.098.097.226.146.354.146s.256-.049.354-.146l2.184-2.185c.444.832.744 1.745.877 2.709l-3.769 3.769c-.195.195-.195.512 0 .707.098.098.226.146.354.146s.256-.049.354-.146l3.137-3.137c-.091 3.429-2.311 6.39-5.491 7.483z" + }, + "children": [] + }] +}; +exports.feather = feather; \ No newline at end of file diff --git a/dist/typicons/film.js b/dist/typicons/film.js new file mode 100644 index 000000000..af4b70cdc --- /dev/null +++ b/dist/typicons/film.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.film = void 0; +var film = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M8 8v7h8v-7h-8zm7 6h-6v-5h6v5zM17 2h-3v2h-4v-2h-3c-1.654 0-3 1.346-3 3v13c0 1.654 1.346 3 3 3h3v-2h4v2h3c1.654 0 3-1.346 3-3v-13c0-1.654-1.346-3-3-3zm1 4c-.553 0-1 .447-1 1s.447 1 1 1v1c-.553 0-1 .447-1 1s.447 1 1 1v1c-.553 0-1 .447-1 1s.447 1 1 1v1c-.553 0-1 .447-1 1s.447 1 1 1v1c0 .551-.448 1-1 1h-1v-2h-8v2h-1c-.552 0-1-.449-1-1v-1c.553 0 1-.447 1-1s-.447-1-1-1v-1c.553 0 1-.447 1-1s-.447-1-1-1v-1c.553 0 1-.447 1-1s-.447-1-1-1v-1c.553 0 1-.447 1-1s-.447-1-1-1v-1c0-.551.448-1 1-1h1v2h8v-2h1c.552 0 1 .449 1 1v1z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M8 8v7h8v-7h-8zm7 6h-6v-5h6v5zM17 2h-3v2h-4v-2h-3c-1.654 0-3 1.346-3 3v13c0 1.654 1.346 3 3 3h3v-2h4v2h3c1.654 0 3-1.346 3-3v-13c0-1.654-1.346-3-3-3zm1 4c-.553 0-1 .447-1 1s.447 1 1 1v1c-.553 0-1 .447-1 1s.447 1 1 1v1c-.553 0-1 .447-1 1s.447 1 1 1v1c-.553 0-1 .447-1 1s.447 1 1 1v1c0 .551-.448 1-1 1h-1v-2h-8v2h-1c-.552 0-1-.449-1-1v-1c.553 0 1-.447 1-1s-.447-1-1-1v-1c.553 0 1-.447 1-1s-.447-1-1-1v-1c.553 0 1-.447 1-1s-.447-1-1-1v-1c.553 0 1-.447 1-1s-.447-1-1-1v-1c0-.551.448-1 1-1h1v2h8v-2h1c.552 0 1 .449 1 1v1z" + }, + "children": [] + }] + }] + }] +}; +exports.film = film; \ No newline at end of file diff --git a/dist/typicons/filter.js b/dist/typicons/filter.js new file mode 100644 index 000000000..228a51732 --- /dev/null +++ b/dist/typicons/filter.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.filter = void 0; +var filter = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M19 6h-14c-1.1 0-1.4.6-.6 1.4l4.2 4.2c.8.8 1.4 2.3 1.4 3.4v5l4-2v-3.5c0-.8.6-2.1 1.4-2.9l4.2-4.2c.8-.8.5-1.4-.6-1.4z" + }, + "children": [] + }] +}; +exports.filter = filter; \ No newline at end of file diff --git a/dist/typicons/flag.js b/dist/typicons/flag.js new file mode 100644 index 000000000..8724c3662 --- /dev/null +++ b/dist/typicons/flag.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.flag = void 0; +var flag = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.383 4.318c-.374-.155-.804-.069-1.09.217-1.264 1.263-3.321 1.264-4.586 0-2.045-2.043-5.37-2.043-7.414 0-.188.187-.293.442-.293.707v13c0 .552.447 1 1 1s1-.448 1-1v-4.553c1.271-.997 3.121-.911 4.293.26 2.045 2.043 5.371 2.043 7.414 0 .188-.188.293-.442.293-.707v-8c0-.405-.244-.769-.617-.924z" + }, + "children": [] + }] +}; +exports.flag = flag; \ No newline at end of file diff --git a/dist/typicons/flagOutline.js b/dist/typicons/flagOutline.js new file mode 100644 index 000000000..2e180b9f9 --- /dev/null +++ b/dist/typicons/flagOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.flagOutline = void 0; +var flagOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.383 4.318c-.374-.155-.804-.069-1.09.217-1.264 1.263-3.321 1.264-4.586 0-2.045-2.043-5.37-2.043-7.414 0-.188.187-.293.442-.293.707v13c0 .552.448 1 1 1s1-.448 1-1v-4.553c1.271-.997 3.121-.911 4.293.26 2.045 2.043 5.371 2.043 7.414 0 .188-.188.293-.442.293-.707v-8c0-.405-.244-.769-.617-.924zm-7.09 1.631c1.54 1.539 3.808 1.918 5.707 1.138v2.311c-1.446.916-3.387.749-4.646-.51-1.448-1.447-3.598-1.743-5.354-.927v-2.272c1.271-.997 3.121-.912 4.293.26zm1.414 6.585c-1.022-1.021-2.365-1.532-3.707-1.532-.681 0-1.361.131-2 .394v-2.311c1.446-.916 3.387-.749 4.646.51.925.924 2.139 1.386 3.354 1.386.687 0 1.366-.164 2-.459v2.272c-1.272.997-3.122.911-4.293-.26z" + }, + "children": [] + }] +}; +exports.flagOutline = flagOutline; \ No newline at end of file diff --git a/dist/typicons/flash.js b/dist/typicons/flash.js new file mode 100644 index 000000000..3f9a15cde --- /dev/null +++ b/dist/typicons/flash.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.flash = void 0; +var flash = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M17.502 12.033l-4.241-2.458 2.138-5.131c.066-.134.103-.285.103-.444 0-.552-.445-1-.997-1-.249.004-.457.083-.622.214l-.07.06-7.5 7.1c-.229.217-.342.529-.306.842.036.313.219.591.491.75l4.242 2.46-2.163 5.19c-.183.436-.034.94.354 1.208.173.118.372.176.569.176.248 0 .496-.093.688-.274l7.5-7.102c.229-.217.342-.529.306-.842-.037-.313-.22-.591-.492-.749z" + }, + "children": [] + }] +}; +exports.flash = flash; \ No newline at end of file diff --git a/dist/typicons/flashOutline.js b/dist/typicons/flashOutline.js new file mode 100644 index 000000000..3eba97651 --- /dev/null +++ b/dist/typicons/flashOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.flashOutline = void 0; +var flashOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M14.5 4h.005m-.005 0l-2.5 6 5 2.898-7.5 7.102 2.5-6-5-2.9 7.5-7.1m0-2c-.562.012-1.029.219-1.379.551l-7.497 7.095c-.458.435-.685 1.059-.61 1.686.072.626.437 1.182.982 1.498l3.482 2.021-1.826 4.381c-.362.871-.066 1.879.712 2.416.344.236.739.354 1.135.354.498 0 .993-.186 1.375-.548l7.5-7.103c.458-.434.685-1.058.61-1.685-.073-.627-.438-1.183-.982-1.498l-3.482-2.018 1.789-4.293c.123-.26.192-.551.192-.857 0-1.102-.89-1.996-2.001-2z" + }, + "children": [] + }] +}; +exports.flashOutline = flashOutline; \ No newline at end of file diff --git a/dist/typicons/flowChildren.js b/dist/typicons/flowChildren.js new file mode 100644 index 000000000..0d6f817e8 --- /dev/null +++ b/dist/typicons/flowChildren.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.flowChildren = void 0; +var flowChildren = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M17 16c-1.305 0-2.403.837-2.816 2h-3.184c-1.654 0-3-1.346-3-3v-3.025c.838.634 1.87 1.025 3 1.025h3.184c.413 1.163 1.512 2 2.816 2 1.657 0 3-1.343 3-3s-1.343-3-3-3c-1.305 0-2.403.837-2.816 2h-3.184c-1.654 0-3-1.346-3-3v-.184c1.163-.413 2-1.512 2-2.816 0-1.657-1.343-3-3-3s-3 1.343-3 3c0 1.304.837 2.403 2 2.816v7.184c0 2.757 2.243 5 5 5h3.184c.413 1.163 1.512 2 2.816 2 1.657 0 3-1.343 3-3s-1.343-3-3-3zm0-5c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm-10-7c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm10 16c-.552 0-1-.449-1-1s.448-1 1-1 1 .449 1 1-.448 1-1 1z" + }, + "children": [] + }] +}; +exports.flowChildren = flowChildren; \ No newline at end of file diff --git a/dist/typicons/flowMerge.js b/dist/typicons/flowMerge.js new file mode 100644 index 000000000..9a499e6ec --- /dev/null +++ b/dist/typicons/flowMerge.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.flowMerge = void 0; +var flowMerge = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18 16.184v-1.851c0-1.93-1.57-3.5-3.5-3.5-.827 0-1.5-.673-1.5-1.5v-1.517c1.161-.415 2-1.514 2-2.816 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.401 2 2.815v1.518c0 .827-.673 1.5-1.5 1.5-1.93 0-3.5 1.57-3.5 3.5v1.851c-1.161.415-2 1.514-2 2.816 0 1.654 1.346 3 3 3s3-1.346 3-3c0-1.302-.839-2.401-2-2.816v-1.851c0-.827.673-1.5 1.5-1.5.979 0 1.864-.407 2.5-1.058.636.651 1.521 1.058 2.5 1.058.827 0 1.5.673 1.5 1.5v1.851c-1.161.415-2 1.514-2 2.816 0 1.654 1.346 3 3 3s3-1.346 3-3c0-1.302-.839-2.401-2-2.816zm-11 3.816c-.552 0-1-.449-1-1s.448-1 1-1 1 .449 1 1-.448 1-1 1zm5-16c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm5 16c-.552 0-1-.449-1-1s.448-1 1-1 1 .449 1 1-.448 1-1 1z" + }, + "children": [] + }] +}; +exports.flowMerge = flowMerge; \ No newline at end of file diff --git a/dist/typicons/flowParallel.js b/dist/typicons/flowParallel.js new file mode 100644 index 000000000..a22340e0c --- /dev/null +++ b/dist/typicons/flowParallel.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.flowParallel = void 0; +var flowParallel = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M18 16.184v-8.368c1.161-.415 2-1.514 2-2.816 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.401 2 2.815v8.369c-1.161.415-2 1.514-2 2.816 0 1.654 1.346 3 3 3s3-1.346 3-3c0-1.302-.839-2.401-2-2.816zm-1-12.184c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm0 16c-.552 0-1-.449-1-1s.448-1 1-1 1 .449 1 1-.448 1-1 1zM10 5c0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.401 2 2.815v8.369c-1.161.415-2 1.514-2 2.816 0 1.654 1.346 3 3 3s3-1.346 3-3c0-1.302-.839-2.401-2-2.816v-8.368c1.161-.415 2-1.514 2-2.816zm-3-1c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm0 16c-.552 0-1-.449-1-1s.448-1 1-1 1 .449 1 1-.448 1-1 1z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18 16.184v-8.368c1.161-.415 2-1.514 2-2.816 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.401 2 2.815v8.369c-1.161.415-2 1.514-2 2.816 0 1.654 1.346 3 3 3s3-1.346 3-3c0-1.302-.839-2.401-2-2.816zm-1-12.184c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm0 16c-.552 0-1-.449-1-1s.448-1 1-1 1 .449 1 1-.448 1-1 1zM10 5c0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.401 2 2.815v8.369c-1.161.415-2 1.514-2 2.816 0 1.654 1.346 3 3 3s3-1.346 3-3c0-1.302-.839-2.401-2-2.816v-8.368c1.161-.415 2-1.514 2-2.816zm-3-1c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm0 16c-.552 0-1-.449-1-1s.448-1 1-1 1 .449 1 1-.448 1-1 1z" + }, + "children": [] + }] + }] + }] +}; +exports.flowParallel = flowParallel; \ No newline at end of file diff --git a/dist/typicons/flowSwitch.js b/dist/typicons/flowSwitch.js new file mode 100644 index 000000000..2b1ba984b --- /dev/null +++ b/dist/typicons/flowSwitch.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.flowSwitch = void 0; +var flowSwitch = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M8 16.184v-.684c0-.848.512-1.595 1.287-2.047-.667-.282-1.279-.667-1.822-1.131-.904.814-1.465 1.938-1.465 3.178v.684c-1.161.415-2 1.514-2 2.816 0 1.654 1.346 3 3 3s3-1.346 3-3c0-1.302-.839-2.401-2-2.816zm-1 3.816c-.552 0-1-.449-1-1s.448-1 1-1 1 .449 1 1-.448 1-1 1zM16 7.815v.351c0 .985-.535 1.852-1.345 2.36.665.274 1.279.646 1.823 1.1.936-.878 1.522-2.102 1.522-3.459v-.351c1.161-.415 2-1.514 2-2.816 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.401 2 2.815zm1-3.815c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zM17.935 16.164c-.41-2.913-2.911-5.164-5.935-5.164-1.936 0-3.552-1.381-3.92-3.209 1.12-.436 1.92-1.519 1.92-2.791 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.326.87 2.44 2.065 2.836.41 2.913 2.911 5.164 5.935 5.164 1.936 0 3.552 1.381 3.92 3.209-1.12.436-1.92 1.519-1.92 2.791 0 1.654 1.346 3 3 3s3-1.346 3-3c0-1.326-.87-2.44-2.065-2.836zm-10.935-12.164c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm10 16c-.552 0-1-.449-1-1s.448-1 1-1 1 .449 1 1-.448 1-1 1z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M8 16.184v-.684c0-.848.512-1.595 1.287-2.047-.667-.282-1.279-.667-1.822-1.131-.904.814-1.465 1.938-1.465 3.178v.684c-1.161.415-2 1.514-2 2.816 0 1.654 1.346 3 3 3s3-1.346 3-3c0-1.302-.839-2.401-2-2.816zm-1 3.816c-.552 0-1-.449-1-1s.448-1 1-1 1 .449 1 1-.448 1-1 1zM16 7.815v.351c0 .985-.535 1.852-1.345 2.36.665.274 1.279.646 1.823 1.1.936-.878 1.522-2.102 1.522-3.459v-.351c1.161-.415 2-1.514 2-2.816 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.401 2 2.815zm1-3.815c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zM17.935 16.164c-.41-2.913-2.911-5.164-5.935-5.164-1.936 0-3.552-1.381-3.92-3.209 1.12-.436 1.92-1.519 1.92-2.791 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.326.87 2.44 2.065 2.836.41 2.913 2.911 5.164 5.935 5.164 1.936 0 3.552 1.381 3.92 3.209-1.12.436-1.92 1.519-1.92 2.791 0 1.654 1.346 3 3 3s3-1.346 3-3c0-1.326-.87-2.44-2.065-2.836zm-10.935-12.164c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm10 16c-.552 0-1-.449-1-1s.448-1 1-1 1 .449 1 1-.448 1-1 1z" + }, + "children": [] + }] + }] + }] +}; +exports.flowSwitch = flowSwitch; \ No newline at end of file diff --git a/dist/typicons/folder.js b/dist/typicons/folder.js new file mode 100644 index 000000000..1890a4a8b --- /dev/null +++ b/dist/typicons/folder.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.folder = void 0; +var folder = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18 6h-6c0-1.104-.896-2-2-2h-4c-1.654 0-3 1.346-3 3v10c0 1.654 1.346 3 3 3h12c1.654 0 3-1.346 3-3v-8c0-1.654-1.346-3-3-3zm-12 0h4c0 1.104.896 2 2 2h6c.552 0 1 .448 1 1h-14v-2c0-.552.448-1 1-1zm12 12h-12c-.552 0-1-.448-1-1v-7h14v7c0 .552-.448 1-1 1z" + }, + "children": [] + }] +}; +exports.folder = folder; \ No newline at end of file diff --git a/dist/typicons/folderAdd.js b/dist/typicons/folderAdd.js new file mode 100644 index 000000000..5efd846ca --- /dev/null +++ b/dist/typicons/folderAdd.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.folderAdd = void 0; +var folderAdd = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18 6h-6c0-1.104-.896-2-2-2h-4c-1.654 0-3 1.346-3 3v10c0 1.654 1.346 3 3 3h12c1.654 0 3-1.346 3-3v-8c0-1.654-1.346-3-3-3zm0 12h-12c-.552 0-1-.448-1-1v-7h4c.275 0 .5-.225.5-.5s-.225-.5-.5-.5h-4v-2c0-.552.448-1 1-1h4c0 1.104.896 2 2 2h6c.552 0 1 .448 1 1h-4c-.275 0-.5.225-.5.5s.225.5.5.5h4v7c0 .552-.448 1-1 1zM15 12h-2v-2c0-.553-.447-1-1-1s-1 .447-1 1v2h-2c-.553 0-1 .447-1 1s.447 1 1 1h2v2c0 .553.447 1 1 1s1-.447 1-1v-2h2c.553 0 1-.447 1-1s-.447-1-1-1z" + }, + "children": [] + }] +}; +exports.folderAdd = folderAdd; \ No newline at end of file diff --git a/dist/typicons/folderDelete.js b/dist/typicons/folderDelete.js new file mode 100644 index 000000000..9dcc0ff79 --- /dev/null +++ b/dist/typicons/folderDelete.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.folderDelete = void 0; +var folderDelete = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18 6h-6c0-1.104-.896-2-2-2h-4c-1.654 0-3 1.346-3 3v10c0 1.654 1.346 3 3 3h12c1.654 0 3-1.346 3-3v-8c0-1.654-1.346-3-3-3zm-12 0h4c0 1.104.896 2 2 2h6c.552 0 1 .448 1 1h-14v-2c0-.552.448-1 1-1zm12 12h-12c-.552 0-1-.448-1-1v-7h14v7c0 .552-.448 1-1 1zM15 14h-6c-.553 0-1-.447-1-1s.447-1 1-1h6c.553 0 1 .447 1 1s-.447 1-1 1z" + }, + "children": [] + }] +}; +exports.folderDelete = folderDelete; \ No newline at end of file diff --git a/dist/typicons/folderOpen.js b/dist/typicons/folderOpen.js new file mode 100644 index 000000000..f269d96dd --- /dev/null +++ b/dist/typicons/folderOpen.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.folderOpen = void 0; +var folderOpen = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M22.3 8h-2.4c-.4-1.2-1.5-2-2.8-2h-6c0-1.1-.9-2-2-2h-4.1c-1.7 0-3 1.3-3 3v10c0 1.7 1.3 3 3 3h12c1.7 0 3.4-1.3 3.8-3l2.2-8c.1-.6-.2-1-.7-1zm-18.3 1v-2c0-.6.4-1 1-1h4c0 1.1.9 2 2 2h6c.6 0 1 .4 1 1h-11.1c-.6 0-1.1.4-1.3 1l-1.6 6.3v-7.3zm14.9 7.5c-.2.8-1.1 1.5-1.9 1.5h-12s-.4-.2-.2-.8l1.9-7c0-.1.2-.2.3-.2h13.7l-1.8 6.5z" + }, + "children": [] + }] +}; +exports.folderOpen = folderOpen; \ No newline at end of file diff --git a/dist/typicons/gift.js b/dist/typicons/gift.js new file mode 100644 index 000000000..b84f0bd2e --- /dev/null +++ b/dist/typicons/gift.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.gift = void 0; +var gift = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M19 8h-2.352c.219-.457.352-.961.352-1.5 0-1.93-1.57-3.5-3.5-3.5-.979 0-1.864.407-2.5 1.058-.636-.651-1.521-1.058-2.5-1.058-1.93 0-3.5 1.57-3.5 3.5 0 .539.133 1.043.352 1.5h-2.352c-.553 0-1 .448-1 1v4c0 .552.447 1 1 1v5c0 1.654 1.346 3 3 3h10c1.654 0 3-1.346 3-3v-5c.553 0 1-.448 1-1v-4c0-.552-.447-1-1-1zm-1 4h-5v-2h5v2zm-8-5h2v1h-2v-1zm2 3v2h-2v-2h2zm1.5-5c.827 0 1.5.673 1.5 1.5s-.673 1.5-1.5 1.5c-.177 0-.344-.039-.5-.097v-.903c0-.521-.404-.937-.913-.982.202-.59.756-1.018 1.413-1.018zm-6.5 1.5c0-.827.673-1.5 1.5-1.5.657 0 1.211.428 1.413 1.018-.509.045-.913.461-.913.982v.903c-.156.058-.323.097-.5.097-.827 0-1.5-.673-1.5-1.5zm2 3.5v2h-5v-2h5zm-3 10c-.551 0-1-.449-1-1v-6h4v7h-3zm4 0v-7h2v7h-2zm6 0h-3v-7h4v6c0 .551-.449 1-1 1z" + }, + "children": [] + }] +}; +exports.gift = gift; \ No newline at end of file diff --git a/dist/typicons/globe.js b/dist/typicons/globe.js new file mode 100644 index 000000000..d2607456f --- /dev/null +++ b/dist/typicons/globe.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.globe = void 0; +var globe = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M11 20h-4c-.553 0-1 .447-1 1s.447 1 1 1h10c.553 0 1-.447 1-1s-.447-1-1-1h-4v-1.23c1.64-.371 3.146-1.188 4.363-2.406 1.7-1.7 2.637-3.96 2.637-6.364 0-2.067-.692-4.029-1.968-5.619l.675-.673c.391-.391.391-1.023.001-1.415-.391-.391-1.024-.39-1.415-.001l-2.052 2.049.708.708c1.322 1.322 2.051 3.081 2.051 4.951s-.729 3.627-2.051 4.949-3.079 2.051-4.949 2.051-3.627-.729-4.949-2.051c-.391-.391-1.023-.391-1.414 0-.391.39-.391 1.023 0 1.414 1.699 1.7 3.959 2.637 6.363 2.637v1zM11 4c1.657 0 3.157.672 4.243 1.757 1.085 1.086 1.757 2.586 1.757 4.243 0 1.656-.672 3.156-1.757 4.242-1.086 1.086-2.586 1.758-4.243 1.758-1.658 0-3.157-.672-4.242-1.757-1.085-1.086-1.756-2.586-1.756-4.243s.671-3.157 1.756-4.243c1.085-1.085 2.584-1.757 4.242-1.757z" + }, + "children": [] + }] +}; +exports.globe = globe; \ No newline at end of file diff --git a/dist/typicons/globeOutline.js b/dist/typicons/globeOutline.js new file mode 100644 index 000000000..6671dd6fd --- /dev/null +++ b/dist/typicons/globeOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.globeOutline = void 0; +var globeOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M11 6c2.206 0 4 1.794 4 4s-1.794 4-4 4c-2.204 0-3.998-1.794-3.998-4s1.794-4 3.998-4m0-2c-3.314 0-5.998 2.686-5.998 6s2.684 6 5.998 6c3.312 0 6-2.688 6-6 0-3.314-2.688-6-6-6zM17 20h-4v-1.23c1.641-.371 3.146-1.188 4.363-2.406 1.699-1.699 2.637-3.96 2.637-6.363 0-2.067-.691-4.028-1.968-5.619l.675-.673c.391-.391.391-1.023.001-1.415-.392-.392-1.024-.39-1.415-.001l-2.052 2.049.708.708c1.322 1.321 2.051 3.08 2.051 4.95s-.729 3.627-2.051 4.949-3.079 2.051-4.949 2.051-3.627-.729-4.949-2.051c-.391-.391-1.023-.391-1.414 0-.391.39-.391 1.023 0 1.414 1.699 1.699 3.959 2.637 6.363 2.637v1h-4c-.553 0-1 .447-1 1s.447 1 1 1h10c.553 0 1-.447 1-1s-.447-1-1-1z" + }, + "children": [] + }] +}; +exports.globeOutline = globeOutline; \ No newline at end of file diff --git a/dist/typicons/group.js b/dist/typicons/group.js new file mode 100644 index 000000000..8a1724e2a --- /dev/null +++ b/dist/typicons/group.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.group = void 0; +var group = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 14c1.381 0 2.631-.56 3.536-1.465.904-.904 1.464-2.154 1.464-3.535s-.56-2.631-1.464-3.535c-.905-.905-2.155-1.465-3.536-1.465s-2.631.56-3.536 1.465c-.904.904-1.464 2.154-1.464 3.535s.56 2.631 1.464 3.535c.905.905 2.155 1.465 3.536 1.465zM20 15c.69 0 1.315-.279 1.768-.731.453-.452.732-1.077.732-1.769 0-.69-.279-1.315-.732-1.768-.453-.453-1.078-.732-1.768-.732-.691 0-1.316.279-1.769.732-.452.453-.731 1.078-.731 1.768 0 .691.279 1.316.731 1.769s1.078.731 1.769.731zM20 15.59c-1.331 0-2.332.406-2.917.968-1.115-.917-2.878-1.558-5.083-1.558-2.266 0-3.995.648-5.092 1.564-.596-.565-1.608-.974-2.908-.974-2.188 0-3.5 1.09-3.5 2.182 0 .545 1.312 1.092 3.5 1.092.604 0 1.146-.051 1.623-.133l-.04.27c0 1 2.406 2 6.417 2 3.762 0 6.417-1 6.417-2l-.02-.255c.463.073.995.118 1.603.118 2.051 0 3.5-.547 3.5-1.092 0-1.092-1.373-2.182-3.5-2.182zM4 15c.69 0 1.315-.279 1.768-.732.453-.453.732-1.078.732-1.768 0-.689-.279-1.314-.732-1.768-.453-.452-1.078-.732-1.768-.732-.691 0-1.316.28-1.769.732-.452.454-.731 1.079-.731 1.768 0 .69.279 1.315.731 1.768.453.453 1.078.732 1.769.732z" + }, + "children": [] + }] +}; +exports.group = group; \ No newline at end of file diff --git a/dist/typicons/groupOutline.js b/dist/typicons/groupOutline.js new file mode 100644 index 000000000..304380d2a --- /dev/null +++ b/dist/typicons/groupOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.groupOutline = void 0; +var groupOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 14c2.764 0 5-2.238 5-5s-2.236-5-5-5-5 2.238-5 5 2.236 5 5 5zm0-8c1.654 0 3 1.346 3 3s-1.346 3-3 3-3-1.346-3-3 1.346-3 3-3zM20 15c1.381 0 2.5-1.117 2.5-2.5 0-1.381-1.119-2.5-2.5-2.5-1.382 0-2.5 1.119-2.5 2.5 0 1.383 1.118 2.5 2.5 2.5zm0-4c.827 0 1.5.673 1.5 1.5s-.673 1.5-1.5 1.5-1.5-.673-1.5-1.5.673-1.5 1.5-1.5zM20 15.59c-1.331 0-2.332.406-2.917.969-1.115-.918-2.878-1.559-5.083-1.559-2.266 0-3.995.648-5.092 1.564-.596-.565-1.608-.975-2.908-.975-2.188 0-3.5 1.091-3.5 2.183 0 .545 1.312 1.092 3.5 1.092.604 0 1.146-.051 1.623-.133l-.04.27c0 1 2.405 2 6.417 2 3.762 0 6.417-1 6.417-2l-.021-.255c.463.073.996.118 1.604.118 2.051 0 3.5-.547 3.5-1.092 0-1.092-1.373-2.182-3.5-2.182zm-16 2.273c-1.309 0-2.068-.207-2.417-.354.239-.405 1.003-.92 2.417-.92 1.107 0 1.837.351 2.208.706l-.235.344c-.452.119-1.108.224-1.973.224zm8 1.137c-2.163 0-3.501-.312-4.184-.561.521-.678 1.918-1.439 4.184-1.439 2.169 0 3.59.761 4.148 1.425-.755.27-2.162.575-4.148.575zm8-1.137c-.914 0-1.546-.103-1.973-.213-.072-.127-.155-.252-.248-.375.356-.345 1.071-.685 2.221-.685 1.324 0 2.141.501 2.404.911-.39.163-1.205.362-2.404.362zM4 15c1.381 0 2.5-1.119 2.5-2.5 0-1.379-1.119-2.5-2.5-2.5-1.382 0-2.5 1.121-2.5 2.5 0 1.381 1.118 2.5 2.5 2.5zm0-4c.827 0 1.5.673 1.5 1.5s-.673 1.5-1.5 1.5-1.5-.673-1.5-1.5.673-1.5 1.5-1.5z" + }, + "children": [] + }] +}; +exports.groupOutline = groupOutline; \ No newline at end of file diff --git a/dist/typicons/headphones.js b/dist/typicons/headphones.js new file mode 100644 index 000000000..fa8607c54 --- /dev/null +++ b/dist/typicons/headphones.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.headphones = void 0; +var headphones = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M21 13c0-4.963-4.037-9-9-9s-9 4.037-9 9v2.6l.023.113c-.013.243-.023.5-.023.787v2c0 1.93 1.57 3.5 3.5 3.5s3.5-1.57 3.5-3.5v-2c0-1.511-.83-2.79-1.982-3.278.095-2.122 1.837-3.823 3.982-3.823s3.887 1.7 3.982 3.822c-1.152.49-1.982 1.768-1.982 3.279v2c0 1.93 1.57 3.5 3.5 3.5s3.5-1.57 3.5-3.5v-2c0-.287-.01-.544-.023-.787l.023-.113v-2.6zm-16 0c0-1.586.538-3.046 1.432-4.221l.89.889c-.742.928-1.218 2.075-1.302 3.332-.02 0-.02 1-.02 1h-1v-1zm3 5.5c0 .827-.673 1.5-1.5 1.5s-1.5-.673-1.5-1.5v-2c0-.666.057-1.176.114-1.5h1.886c.473 0 1 .616 1 1.5v2zm7.77-9.338l-.354.354c-.912-.913-2.125-1.416-3.416-1.416s-2.504.503-3.417 1.416l-.354-.354-1.141-1.141-.627-.626c1.479-1.48 3.447-2.295 5.539-2.295 2.093 0 4.06.815 5.539 2.295l-.627.626-1.142 1.141zm3.23 9.338c0 .827-.673 1.5-1.5 1.5s-1.5-.673-1.5-1.5v-2c0-.884.527-1.5 1-1.5h1.886c.057.324.114.834.114 1.5v2zm0-4.5h-1v-1c-.104-1.257-.58-2.404-1.322-3.332l.891-.889c.893 1.175 1.431 2.634 1.431 4.221v1z" + }, + "children": [] + }] +}; +exports.headphones = headphones; \ No newline at end of file diff --git a/dist/typicons/heart.js b/dist/typicons/heart.js new file mode 100644 index 000000000..4b38f1adb --- /dev/null +++ b/dist/typicons/heart.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.heart = void 0; +var heart = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 10.375c0-2.416-1.959-4.375-4.375-4.375s-4.375 1.959-4.375 4.375c0 1.127.159 2.784 1.75 4.375l7 5.25s5.409-3.659 7-5.25 1.75-3.248 1.75-4.375c0-2.416-1.959-4.375-4.375-4.375s-4.375 1.959-4.375 4.375" + }, + "children": [] + }] +}; +exports.heart = heart; \ No newline at end of file diff --git a/dist/typicons/heartFullOutline.js b/dist/typicons/heartFullOutline.js new file mode 100644 index 000000000..1f42aa0a0 --- /dev/null +++ b/dist/typicons/heartFullOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.heartFullOutline = void 0; +var heartFullOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M2.2 9.4c0 1.3.2 3.3 2 5.1 1.6 1.6 6.9 5.2 7.1 5.4.2.1.4.2.6.2s.4-.1.6-.2c.2-.2 5.5-3.7 7.1-5.4 1.8-1.8 2-3.8 2-5.1 0-3-2.4-5.4-5.4-5.4-1.6 0-3.2.9-4.2 2.3-1-1.4-2.6-2.3-4.4-2.3-2.9 0-5.4 2.4-5.4 5.4z" + }, + "children": [] + }] +}; +exports.heartFullOutline = heartFullOutline; \ No newline at end of file diff --git a/dist/typicons/heartHalfOutline.js b/dist/typicons/heartHalfOutline.js new file mode 100644 index 000000000..4d751869f --- /dev/null +++ b/dist/typicons/heartHalfOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.heartHalfOutline = void 0; +var heartHalfOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M2.2 9.4c0 1.3.2 3.3 2 5.1 1.6 1.6 6.9 5.2 7.1 5.4.2.1.4.2.6.2s.4-.1.6-.2c.2-.2 5.5-3.7 7.1-5.4 1.8-1.8 2-3.8 2-5.1 0-3-2.4-5.4-5.4-5.4-1.6 0-3.2.9-4.2 2.3-1-1.4-2.6-2.3-4.4-2.3-2.9 0-5.4 2.4-5.4 5.4zm9.8 1c.6 0 1-.4 1-1 0-1.9 1.5-3.4 3.4-3.4s3.4 1.5 3.4 3.4c0 1.1-.2 2.4-1.5 3.7-1.2 1.2-4.9 3.8-6.3 4.7v-7.4z" + }, + "children": [] + }] +}; +exports.heartHalfOutline = heartHalfOutline; \ No newline at end of file diff --git a/dist/typicons/heartOutline.js b/dist/typicons/heartOutline.js new file mode 100644 index 000000000..7af0a5f29 --- /dev/null +++ b/dist/typicons/heartOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.heartOutline = void 0; +var heartOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 20c-.195 0-.391-.057-.561-.172-.225-.151-5.508-3.73-7.146-5.371-1.831-1.831-2.043-3.777-2.043-5.082 0-2.964 2.411-5.375 5.375-5.375 1.802 0 3.398.891 4.375 2.256.977-1.365 2.573-2.256 4.375-2.256 2.964 0 5.375 2.411 5.375 5.375 0 1.305-.212 3.251-2.043 5.082-1.641 1.641-6.923 5.22-7.146 5.371-.17.115-.366.172-.561.172zm-4.375-14c-1.861 0-3.375 1.514-3.375 3.375 0 1.093.173 2.384 1.457 3.668 1.212 1.212 4.883 3.775 6.293 4.746 1.41-.971 5.081-3.534 6.293-4.746 1.284-1.284 1.457-2.575 1.457-3.668 0-1.861-1.514-3.375-3.375-3.375s-3.375 1.514-3.375 3.375c0 .552-.447 1-1 1s-1-.448-1-1c0-1.861-1.514-3.375-3.375-3.375z" + }, + "children": [] + }] +}; +exports.heartOutline = heartOutline; \ No newline at end of file diff --git a/dist/typicons/home.js b/dist/typicons/home.js new file mode 100644 index 000000000..5c712e071 --- /dev/null +++ b/dist/typicons/home.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.home = void 0; +var home = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 3s-6.186 5.34-9.643 8.232c-.203.184-.357.452-.357.768 0 .553.447 1 1 1h2v7c0 .553.447 1 1 1h3c.553 0 1-.448 1-1v-4h4v4c0 .552.447 1 1 1h3c.553 0 1-.447 1-1v-7h2c.553 0 1-.447 1-1 0-.316-.154-.584-.383-.768-3.433-2.892-9.617-8.232-9.617-8.232z" + }, + "children": [] + }] +}; +exports.home = home; \ No newline at end of file diff --git a/dist/typicons/homeOutline.js b/dist/typicons/homeOutline.js new file mode 100644 index 000000000..b594e00d4 --- /dev/null +++ b/dist/typicons/homeOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.homeOutline = void 0; +var homeOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M22.262 10.468c-3.39-2.854-9.546-8.171-9.607-8.225l-.655-.563-.652.563c-.062.053-6.221 5.368-9.66 8.248-.438.394-.688.945-.688 1.509 0 1.104.896 2 2 2h1v6c0 1.104.896 2 2 2h12c1.104 0 2-.896 2-2v-6h1c1.104 0 2-.896 2-2 0-.598-.275-1.161-.738-1.532zm-8.262 9.532h-4v-5h4v5zm4-8l.002 8h-3.002v-6h-6v6h-3v-8h-3.001c2.765-2.312 7.315-6.227 9.001-7.68 1.686 1.453 6.234 5.367 9 7.681l-3-.001z" + }, + "children": [] + }] +}; +exports.homeOutline = homeOutline; \ No newline at end of file diff --git a/dist/typicons/html5.js b/dist/typicons/html5.js new file mode 100644 index 000000000..3dd56786a --- /dev/null +++ b/dist/typicons/html5.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.html5 = void 0; +var html5 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M13.1 3.5l.7 1.1.7-1.1v1.5h1v-3h-1l-.7 1.1-.6-1.1h-1.1v3h1zM18.4 5v-1h-1.4v-2h-1v3zM9.8 5h1v-2h.9v-1h-2.8v1h.9zM6.6 4h.9v1h1v-3h-1v1h-.9v-1h-1v3h1zM5 6l1.2 14.4 5.8 1.6 5.8-1.6 1.2-14.4h-14zm11.3 4.6h-6.8l.2 1.8h6.3999999999999995l-.5 5.5-3.6 1-3.6-1-.3-2.9h1.8l.1 1.5 2 .5 2-.5.2-2.3h-6.2l-.5-5.3h9l-.2 1.7z" + }, + "children": [] + }] +}; +exports.html5 = html5; \ No newline at end of file diff --git a/dist/typicons/image.js b/dist/typicons/image.js new file mode 100644 index 000000000..404070777 --- /dev/null +++ b/dist/typicons/image.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.image = void 0; +var image = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "8.5", + "cy": "8.501", + "r": "2.5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 10c-2 0-3 3-4.5 3s-1.499-1-3.5-1c-2 0-3.001 4-3.001 4h14.001s-1-6-3-6zM20 3h-16c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2v-12c0-1.103-.897-2-2-2zm0 14h-16v-12h16v12z" + }, + "children": [] + }] +}; +exports.image = image; \ No newline at end of file diff --git a/dist/typicons/imageOutline.js b/dist/typicons/imageOutline.js new file mode 100644 index 000000000..50d1ebd09 --- /dev/null +++ b/dist/typicons/imageOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.imageOutline = void 0; +var imageOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M8.5 7.999c.827 0 1.5.673 1.5 1.5s-.673 1.5-1.5 1.5-1.5-.673-1.5-1.5.673-1.5 1.5-1.5m0-1c-1.381 0-2.5 1.119-2.5 2.5s1.119 2.5 2.5 2.5 2.5-1.119 2.5-2.5-1.119-2.5-2.5-2.5zM16 11.999c.45.051 1.27 1.804 1.779 4.001h-11.392c.434-1.034 1.055-2.001 1.612-2.001.806 0 1.125.185 1.53.42.447.258 1.006.58 1.97.58 1.138 0 1.942-.885 2.653-1.666.627-.687 1.218-1.334 1.848-1.334m0-1c-2 0-3 3-4.5 3s-1.499-1-3.5-1c-2 0-3.001 4-3.001 4h14.001s-1-6-3-6zM22 6c0-1.104-.896-2-2-2h-16c-1.104 0-2 .896-2 2v12c0 1.104.896 2 2 2h16c1.104 0 2-.896 2-2v-12zm-2 12h-16v-12h16.003l-.003 12z" + }, + "children": [] + }] +}; +exports.imageOutline = imageOutline; \ No newline at end of file diff --git a/dist/typicons/index.js b/dist/typicons/index.js new file mode 100644 index 000000000..3eaddef64 --- /dev/null +++ b/dist/typicons/index.js @@ -0,0 +1,4664 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.documentText = exports.documentIcon = exports.documentDelete = exports.documentAdd = exports.divideOutline = exports.divide = exports.directions = exports.deviceTablet = exports.devicePhone = exports.deviceLaptop = exports.deviceDesktop = exports.deleteOutline = exports.deleteIconic = exports.database = exports.css3 = exports.creditCard = exports.contacts = exports.compass = exports.cogOutline = exports.cog = exports.coffee = exports.codeOutline = exports.code = exports.cloudStorageOutline = exports.cloudStorage = exports.clipboard = exports.chevronRightOutline = exports.chevronRight = exports.chevronLeftOutline = exports.chevronLeft = exports.chartPieOutline = exports.chartPie = exports.chartLineOutline = exports.chartLine = exports.chartBarOutline = exports.chartBar = exports.chartAreaOutline = exports.chartArea = exports.cancelOutline = exports.cancel = exports.cameraOutline = exports.camera = exports.calendarOutline = exports.calendar = exports.calculator = exports.businessCard = exports.brush = exports.briefcase = exports.bookmark = exports.book = exports.bell = exports.beer = exports.beaker = exports.batteryMid = exports.batteryLow = exports.batteryHigh = exports.batteryFull = exports.batteryCharge = exports.backspaceOutline = exports.backspace = exports.attachmentOutline = exports.attachment = exports.at = exports.arrowUpThick = exports.arrowUpOutline = exports.arrowUp = exports.arrowUnsorted = exports.arrowSyncOutline = exports.arrowSync = exports.arrowSortedUp = exports.arrowSortedDown = exports.arrowShuffle = exports.arrowRightThick = exports.arrowRightOutline = exports.arrowRight = exports.arrowRepeatOutline = exports.arrowRepeat = exports.arrowMoveOutline = exports.arrowMove = exports.arrowMinimiseOutline = exports.arrowMinimise = exports.arrowMaximiseOutline = exports.arrowMaximise = exports.arrowLoopOutline = exports.arrowLoop = exports.arrowLeftThick = exports.arrowLeftOutline = exports.arrowLeft = exports.arrowForwardOutline = exports.arrowForward = exports.arrowDownThick = exports.arrowDownOutline = exports.arrowDown = exports.arrowBackOutline = exports.arrowBack = exports.archive = exports.anchorOutline = exports.anchor = exports.adjustContrast = exports.adjustBrightness = void 0; +exports.piOutline = exports.pi = exports.phoneOutline = exports.phone = exports.pencil = exports.pen = exports.notesOutline = exports.notes = exports.news = exports.mortarBoard = exports.minusOutline = exports.minus = exports.microphoneOutline = exports.microphone = exports.messages = exports.messageTyping = exports.message = exports.mediaStopOutline = exports.mediaStop = exports.mediaRewindOutline = exports.mediaRewind = exports.mediaRecordOutline = exports.mediaRecord = exports.mediaPlayReverseOutline = exports.mediaPlayReverse = exports.mediaPlayOutline = exports.mediaPlay = exports.mediaPauseOutline = exports.mediaPause = exports.mediaFastForwardOutline = exports.mediaFastForward = exports.mediaEjectOutline = exports.mediaEject = exports.map = exports.mail = exports.lockOpenOutline = exports.lockOpen = exports.lockClosedOutline = exports.lockClosed = exports.locationOutline = exports.locationArrowOutline = exports.locationArrow = exports.location = exports.linkOutline = exports.link = exports.lightbulb = exports.leaf = exports.keyboard = exports.keyOutline = exports.key = exports.inputCheckedOutline = exports.inputChecked = exports.infoOutline = exports.infoLargeOutline = exports.infoLarge = exports.info = exports.infinityOutline = exports.infinity = exports.imageOutline = exports.image = exports.html5 = exports.homeOutline = exports.home = exports.heartOutline = exports.heartHalfOutline = exports.heartFullOutline = exports.heart = exports.headphones = exports.groupOutline = exports.group = exports.globeOutline = exports.globe = exports.gift = exports.folderOpen = exports.folderDelete = exports.folderAdd = exports.folder = exports.flowSwitch = exports.flowParallel = exports.flowMerge = exports.flowChildren = exports.flashOutline = exports.flash = exports.flagOutline = exports.flag = exports.filter = exports.film = exports.feather = exports.eyeOutline = exports.eye = exports.exportOutline = exports.exportIcon = exports.equalsOutline = exports.equals = exports.ejectOutline = exports.eject = exports.edit = exports.dropbox = exports.downloadOutline = exports.download = void 0; +exports.userDeleteOutline = exports.userDelete = exports.userAddOutline = exports.userAdd = exports.user = exports.uploadOutline = exports.upload = exports.tree = exports.trash = exports.timesOutline = exports.times = exports.time = exports.ticket = exports.tickOutline = exports.tick = exports.thumbsUp = exports.thumbsOk = exports.thumbsDown = exports.thermometer = exports.thSmallOutline = exports.thSmall = exports.thMenuOutline = exports.thMenu = exports.thListOutline = exports.thList = exports.thLargeOutline = exports.thLarge = exports.tags = exports.tag = exports.tabsOutline = exports.support = exports.stopwatch = exports.starburstOutline = exports.starburst = exports.starOutline = exports.starHalfOutline = exports.starHalf = exports.starFullOutline = exports.star = exports.spiral = exports.spannerOutline = exports.spanner = exports.sortNumericallyOutline = exports.sortNumerically = exports.sortAlphabeticallyOutline = exports.sortAlphabetically = exports.socialYoutubeCircular = exports.socialYoutube = exports.socialVimeoCircular = exports.socialVimeo = exports.socialTwitterCircular = exports.socialTwitter = exports.socialTumblerCircular = exports.socialTumbler = exports.socialSkypeOutline = exports.socialSkype = exports.socialPinterestCircular = exports.socialPinterest = exports.socialLinkedinCircular = exports.socialLinkedin = exports.socialLastFmCircular = exports.socialLastFm = exports.socialInstagramCircular = exports.socialInstagram = exports.socialGooglePlusCircular = exports.socialGooglePlus = exports.socialGithubCircular = exports.socialGithub = exports.socialFlickrCircular = exports.socialFlickr = exports.socialFacebookCircular = exports.socialFacebook = exports.socialDribbbleCircular = exports.socialDribbble = exports.socialAtCircular = exports.shoppingCart = exports.shoppingBag = exports.scissorsOutline = exports.scissors = exports.rssOutline = exports.rss = exports.refreshOutline = exports.refresh = exports.radarOutline = exports.radar = exports.puzzleOutline = exports.puzzle = exports.printer = exports.powerOutline = exports.power = exports.pointOfInterestOutline = exports.pointOfInterest = exports.plusOutline = exports.plus = exports.plug = exports.planeOutline = exports.plane = exports.pipette = exports.pinOutline = exports.pin = void 0; +exports.zoomOutline = exports.zoomOutOutline = exports.zoomOut = exports.zoomInOutline = exports.zoomIn = exports.zoom = exports.worldOutline = exports.world = exports.wine = exports.wiFiOutline = exports.wiFi = exports.weatherWindyCloudy = exports.weatherWindy = exports.weatherSunny = exports.weatherStormy = exports.weatherSnow = exports.weatherShower = exports.weatherPartlySunny = exports.weatherNight = exports.weatherDownpour = exports.weatherCloudy = exports.wavesOutline = exports.waves = exports.watch = exports.warningOutline = exports.warning = exports.volumeUp = exports.volumeMute = exports.volumeDown = exports.volume = exports.videoOutline = exports.video = exports.vendorMicrosoft = exports.vendorApple = exports.vendorAndroid = exports.userOutline = void 0; +var adjustBrightness = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 6.934l1-2.934c.072-.213.078-.452 0-.682-.188-.553-.789-.848-1.341-.659-.553.189-.847.788-.659 1.341l1 2.934zM4 11c-.213-.072-.452-.078-.682 0-.553.188-.848.789-.659 1.341.189.553.788.847 1.341.659l2.934-1-2.934-1zM12 17.066l-1 2.934c-.072.213-.078.452 0 .682.188.553.789.848 1.341.659.553-.189.847-.788.659-1.341l-1-2.934zM21.341 11.657c-.188-.553-.788-.848-1.341-.659l-2.934 1 2.934 1c.213.072.452.078.682 0 .552-.188.847-.789.659-1.341zM5.636 7.05l2.781 1.367-1.367-2.781c-.1-.202-.265-.375-.482-.482-.524-.258-1.157-.042-1.415.482-.257.523-.041 1.157.483 1.414zM5.153 17.432c-.257.523-.041 1.156.482 1.414.523.257 1.157.041 1.414-.482l1.367-2.781-2.781 1.367c-.201.099-.374.263-.482.482zM18.363 16.949l-2.781-1.367 1.367 2.781c.1.202.264.375.482.482.523.257 1.156.041 1.414-.482s.042-1.157-.482-1.414zM18.844 6.566c.258-.524.042-1.157-.481-1.415-.523-.257-1.157-.041-1.414.482l-1.369 2.783 2.782-1.368c.202-.1.375-.264.482-.482zM12 7.5c-2.481 0-4.5 2.019-4.5 4.5s2.019 4.5 4.5 4.5 4.5-2.019 4.5-4.5-2.019-4.5-4.5-4.5z" + }, + "children": [] + }] +}; +exports.adjustBrightness = adjustBrightness; +var adjustContrast = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12 4c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zm0 14c-3.314 0-6-2.686-6-6s2.686-6 6-6 6 2.686 6 6-2.686 6-6 6zM12 7v10c2.757 0 5-2.243 5-5s-2.243-5-5-5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12 4c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zm0 14c-3.314 0-6-2.686-6-6s2.686-6 6-6 6 2.686 6 6-2.686 6-6 6zM12 7v10c2.757 0 5-2.243 5-5s-2.243-5-5-5z" + }, + "children": [] + }] + }] + }] +}; +exports.adjustContrast = adjustContrast; +var anchorOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "6", + "r": "1" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "6", + "r": "1" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M19.793 12.096c.134-.34.207-.709.207-1.096 0-1.654-1.346-3-3-3h-.422c.273-.619.422-1.297.422-2 0-2.757-2.243-5-5-5s-5 2.243-5 5c0 .703.149 1.381.422 2h-.422c-1.654 0-3 1.346-3 3 0 .387.073.756.207 1.096-.732.548-1.207 1.422-1.207 2.404 0 4.963 4.037 9 9 9s9-4.037 9-9c0-.982-.475-1.856-1.207-2.404zm-7.793 9.404c-3.859 0-7-3.141-7-7 0-.553.447-1 1-1s1 .447 1 1c0 2.414 1.721 4.434 4 4.898v-7.398h-4c-.553 0-1-.447-1-1s.447-1 1-1h4v-1.184c-1.162-.413-2-1.511-2-2.816 0-1.657 1.343-3 3-3s3 1.343 3 3c0 1.305-.838 2.403-2 2.816v1.184h4c.553 0 1 .447 1 1s-.447 1-1 1h-4v7.398c2.279-.465 4-2.484 4-4.898 0-.553.447-1 1-1s1 .447 1 1c0 3.859-3.141 7-7 7zm-4.679-8.5h2.679v4.962c-1.207-.701-2-2.009-2-3.462 0-.597-.263-1.133-.679-1.5zm9.358 0c-.416.367-.679.903-.679 1.5 0 1.453-.793 2.761-2 3.462v-4.962h2.679z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19.793 12.096c.134-.34.207-.709.207-1.096 0-1.654-1.346-3-3-3h-.422c.273-.619.422-1.297.422-2 0-2.757-2.243-5-5-5s-5 2.243-5 5c0 .703.149 1.381.422 2h-.422c-1.654 0-3 1.346-3 3 0 .387.073.756.207 1.096-.732.548-1.207 1.422-1.207 2.404 0 4.963 4.037 9 9 9s9-4.037 9-9c0-.982-.475-1.856-1.207-2.404zm-7.793 9.404c-3.859 0-7-3.141-7-7 0-.553.447-1 1-1s1 .447 1 1c0 2.414 1.721 4.434 4 4.898v-7.398h-4c-.553 0-1-.447-1-1s.447-1 1-1h4v-1.184c-1.162-.413-2-1.511-2-2.816 0-1.657 1.343-3 3-3s3 1.343 3 3c0 1.305-.838 2.403-2 2.816v1.184h4c.553 0 1 .447 1 1s-.447 1-1 1h-4v7.398c2.279-.465 4-2.484 4-4.898 0-.553.447-1 1-1s1 .447 1 1c0 3.859-3.141 7-7 7zm-4.679-8.5h2.679v4.962c-1.207-.701-2-2.009-2-3.462 0-.597-.263-1.133-.679-1.5zm9.358 0c-.416.367-.679.903-.679 1.5 0 1.453-.793 2.761-2 3.462v-4.962h2.679z" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "6", + "r": "1" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "6", + "r": "1" + }, + "children": [] + }] + }] + }] +}; +exports.anchorOutline = anchorOutline; +var anchor = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18 13.5c-.553 0-1 .447-1 1 0 2.414-1.721 4.434-4 4.898v-7.398h4c.553 0 1-.447 1-1s-.447-1-1-1h-4v-1.184c1.162-.413 2-1.511 2-2.816 0-1.657-1.343-3-3-3s-3 1.343-3 3c0 1.305.838 2.403 2 2.816v1.184h-4c-.553 0-1 .447-1 1s.447 1 1 1h4v7.398c-2.279-.465-4-2.484-4-4.898 0-.553-.447-1-1-1s-1 .447-1 1c0 3.859 3.141 7 7 7s7-3.141 7-7c0-.553-.447-1-1-1zm-6-8.5c.551 0 1 .449 1 1s-.449 1-1 1-1-.449-1-1 .449-1 1-1z" + }, + "children": [] + }] +}; +exports.anchor = anchor; +var archive = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M13 12h-3c-.276 0-.5.224-.5.5s.224.5.5.5h3c.276 0 .5-.224.5-.5s-.224-.5-.5-.5zM20 5h-17c-.553 0-1 .448-1 1s.447 1 1 1h17c.553 0 1-.448 1-1s-.447-1-1-1zM18 8h-13c-.553 0-1 .448-1 1v8c0 1.654 1.346 3 3 3h9c1.654 0 3-1.346 3-3v-8c0-.552-.447-1-1-1zm-2 10h-9c-.552 0-1-.449-1-1v-7h11v7c0 .551-.448 1-1 1z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M13 12h-3c-.276 0-.5.224-.5.5s.224.5.5.5h3c.276 0 .5-.224.5-.5s-.224-.5-.5-.5zM20 5h-17c-.553 0-1 .448-1 1s.447 1 1 1h17c.553 0 1-.448 1-1s-.447-1-1-1zM18 8h-13c-.553 0-1 .448-1 1v8c0 1.654 1.346 3 3 3h9c1.654 0 3-1.346 3-3v-8c0-.552-.447-1-1-1zm-2 10h-9c-.552 0-1-.449-1-1v-7h11v7c0 .551-.448 1-1 1z" + }, + "children": [] + }] + }] + }] +}; +exports.archive = archive; +var arrowBackOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M19.164 19.547c-1.641-2.5-3.669-3.285-6.164-3.484v1.437c0 .534-.208 1.036-.586 1.414-.756.756-2.077.751-2.823.005l-6.293-6.207c-.191-.189-.298-.444-.298-.713s.107-.524.298-.712l6.288-6.203c.754-.755 2.073-.756 2.829.001.377.378.585.88.585 1.414v1.704c4.619.933 8 4.997 8 9.796v1c0 .442-.29.832-.714.958-.095.027-.19.042-.286.042-.331 0-.646-.165-.836-.452zm-7.141-5.536c2.207.056 4.638.394 6.758 2.121-.768-3.216-3.477-5.702-6.893-6.08-.504-.056-.888-.052-.888-.052v-3.497l-5.576 5.496 5.576 5.5v-3.499l1.023.011z" + }, + "children": [] + }] +}; +exports.arrowBackOutline = arrowBackOutline; +var arrowBack = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 9.059v-2.559c0-.256-.098-.512-.293-.708-.195-.195-.451-.292-.707-.292s-.512.097-.707.292l-6.293 6.208 6.293 6.207c.195.195.451.293.707.293s.512-.098.707-.293.293-.452.293-.707v-2.489c2.75.068 5.755.566 8 3.989v-1c0-4.633-3.5-8.443-8-8.941z" + }, + "children": [] + }] +}; +exports.arrowBack = arrowBack; +var arrowDownOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 21.312l-7.121-7.121c-1.17-1.17-1.17-3.073 0-4.242 1.094-1.094 2.978-1.138 4.121-.115v-4.834c0-1.654 1.346-3 3-3s3 1.346 3 3v4.834c1.143-1.023 3.027-.979 4.121.115 1.17 1.169 1.17 3.072 0 4.242l-7.121 7.121zm-5-10.242c-.268 0-.518.104-.707.293-.391.39-.391 1.023 0 1.414l5.707 5.707 5.707-5.707c.391-.391.391-1.024 0-1.414-.379-.379-1.035-.379-1.414 0l-3.293 3.293v-9.656c0-.551-.448-1-1-1s-1 .449-1 1v9.656l-3.293-3.293c-.189-.189-.439-.293-.707-.293z" + }, + "children": [] + }] +}; +exports.arrowDownOutline = arrowDownOutline; +var arrowDownThick = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.414 10.656c-.781-.781-2.047-.781-2.828 0l-1.586 1.586v-7.242c0-1.105-.896-2-2-2-1.105 0-2 .895-2 2v7.242l-1.586-1.586c-.781-.781-2.047-.781-2.828 0s-.781 2.047 0 2.828l6.414 6.414 6.414-6.414c.781-.781.781-2.046 0-2.828z" + }, + "children": [] + }] +}; +exports.arrowDownThick = arrowDownThick; +var arrowDown = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M16.707 13.293c-.391-.391-1.023-.391-1.414 0l-2.293 2.293v-7.586c0-.552-.447-1-1-1s-1 .448-1 1v7.586l-2.293-2.293c-.391-.391-1.023-.391-1.414 0s-.391 1.023 0 1.414l4.707 4.707 4.707-4.707c.391-.391.391-1.023 0-1.414z" + }, + "children": [] + }] +}; +exports.arrowDown = arrowDown; +var arrowForwardOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 19.999c-.096 0-.191-.015-.286-.042-.424-.126-.714-.516-.714-.958v-1c0-4.8 3.381-8.864 8-9.796v-1.704c0-.534.208-1.036.585-1.414.756-.757 2.075-.756 2.829-.001l6.288 6.203c.191.188.298.443.298.712s-.107.524-.298.712l-6.293 6.207c-.746.746-2.067.751-2.823-.005-.378-.378-.586-.88-.586-1.414v-1.437c-2.495.201-4.523.985-6.164 3.484-.19.288-.505.453-.836.453zm8-5.989l1-.01v3.499l5.576-5.5-5.576-5.496v3.497s-.384-.004-.891.052c-3.416.378-6.125 2.864-6.892 6.08 2.121-1.728 4.551-2.066 6.783-2.122z" + }, + "children": [] + }] +}; +exports.arrowForwardOutline = arrowForwardOutline; +var arrowForward = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M13 5.499c-.256 0-.512.097-.707.292-.195.196-.293.452-.293.708v2.559c-4.5.498-8 4.309-8 8.941v1c2.245-3.423 5.25-3.92 8-3.989v2.489c0 .255.098.512.293.707s.451.293.707.293.512-.098.707-.293l6.293-6.207-6.293-6.208c-.195-.195-.451-.292-.707-.292z" + }, + "children": [] + }] +}; +exports.arrowForward = arrowForward; +var arrowLeftOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M10.928 21c-.801 0-1.555-.312-2.121-.879l-7.121-7.121 7.121-7.121c1.133-1.134 3.109-1.134 4.242 0 .566.564.879 1.317.879 2.119 0 .746-.27 1.451-.764 2.002h4.836c1.654 0 3 1.346 3 3s-1.346 3-3 3h-4.836c.493.549.764 1.252.764 1.998.002.802-.312 1.557-.879 2.124-.567.566-1.32.878-2.121.878zm-6.414-8l5.707 5.707c.379.378 1.035.378 1.414 0 .189-.189.293-.441.293-.708s-.104-.517-.291-.705l-3.295-3.294h9.658c.552 0 1-.449 1-1s-.448-1-1-1h-9.658l3.293-3.293c.189-.189.293-.441.293-.708s-.104-.517-.292-.705c-.381-.38-1.036-.379-1.415-.001l-5.707 5.707z" + }, + "children": [] + }] +}; +exports.arrowLeftOutline = arrowLeftOutline; +var arrowLeftThick = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18 11h-7.244l1.586-1.586c.781-.781.781-2.049 0-2.828-.781-.781-2.047-.781-2.828 0l-6.414 6.414 6.414 6.414c.39.391.902.586 1.414.586s1.023-.195 1.414-.586c.781-.781.781-2.049 0-2.828l-1.586-1.586h7.244c1.104 0 2-.896 2-2 0-1.105-.896-2-2-2z" + }, + "children": [] + }] +}; +exports.arrowLeftThick = arrowLeftThick; +var arrowLeft = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M17 11h-7.586l2.293-2.293c.391-.391.391-1.023 0-1.414s-1.023-.391-1.414 0l-4.707 4.707 4.707 4.707c.195.195.451.293.707.293s.512-.098.707-.293c.391-.391.391-1.023 0-1.414l-2.293-2.293h7.586c.552 0 1-.448 1-1s-.448-1-1-1z" + }, + "children": [] + }] +}; +exports.arrowLeft = arrowLeft; +var arrowLoopOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.994 7.187l.006-.187c0-.801-.312-1.555-.879-2.121-.566-.567-1.32-.879-2.121-.879s-1.555.312-2.121.879l-2.883 2.883c-.531-.474-1.23-.762-1.996-.762h-1c-3.859 0-7 3.14-7 7s3.141 7 7 7h9c3.859 0 7-3.14 7-7 0-3.306-2.14-6.084-5.006-6.813zm-1.994 11.813h-9c-2.757 0-5-2.243-5-5s2.243-5 5-5h1c.553 0 1 .448 1 1s-.447 1-1 1h-1c-1.654 0-3 1.346-3 3s1.346 3 3 3h9c1.654 0 3-1.346 3-3s-1.121-3-2.5-3h-2.086l1.293 1.293c.391.391.391 1.023 0 1.414-.195.195-.451.293-.707.293s-.512-.098-.707-.293l-3.707-3.707 3.707-3.707c.195-.195.451-.293.707-.293s.512.098.707.293c.391.391.391 1.023 0 1.414l-1.293 1.293h2.086c2.481 0 4.5 2.243 4.5 5s-2.243 5-5 5zm.749-6.971c.7.164 1.251 1 1.251 1.971 0 1.103-.897 2-2 2h-9c-1.103 0-2-.897-2-2s.897-2 2-2h1c.856 0 1.588-.541 1.873-1.299l3.713 3.713c.378.378.88.586 1.414.586s1.036-.208 1.414-.586.586-.88.586-1.414c0-.345-.087-.677-.251-.971z" + }, + "children": [] + }] +}; +exports.arrowLoopOutline = arrowLoopOutline; +var arrowLoop = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M16.5 8h-2.086l1.293-1.293c.391-.391.391-1.023 0-1.414s-1.023-.391-1.414 0l-3.707 3.707 3.707 3.707c.195.195.451.293.707.293s.512-.098.707-.293c.391-.391.391-1.023 0-1.414l-1.293-1.293h2.086c1.379 0 2.5 1.346 2.5 3s-1.346 3-3 3h-8c-1.654 0-3-1.346-3-3s1.346-3 3-3c.553 0 1-.448 1-1s-.447-1-1-1c-2.757 0-5 2.243-5 5s2.243 5 5 5h8c2.757 0 5-2.243 5-5s-2.019-5-4.5-5z" + }, + "children": [] + }] +}; +exports.arrowLoop = arrowLoop; +var arrowMaximiseOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M19 3h-5.243c-1.302 0-2.401.838-2.815 2h-6.942v7.061l.012.12c-1.167.41-2.012 1.512-2.012 2.819v7h7c1.311 0 2.593-.826 3-2h7v-7.061l-.012-.12c1.167-.41 2.012-1.512 2.012-2.819v-7h-2zm-2 15h-5c-.553 0-1-.448-1-1s.447-1 1-1h3v-3.061c0-.552.447-1 1-1s1 .448 1 1v5.061zm-11-11h5.061c.553 0 1 .448 1 1s-.447 1-1 1h-3.061v3.061c0 .552-.448 1-1 1-.553 0-1-.448-1-1v-5.061zm13 3c0 .552-.447 1-1 1s-1-.448-1-1v-1.586l-3.293 3.293c-.195.195-.451.293-.707.293s-.512-.098-.707-.293c-.391-.391-.391-1.023 0-1.414l3.293-3.293h-1.586c-.553 0-1-.448-1-1s.447-1 1-1h5v5zm-10 10h-5v-5c0-.552.447-1 1-1s1 .448 1 1v1.586l3.293-3.293c.195-.195.451-.293.707-.293s.512.098.707.293c.391.391.391 1.023 0 1.414l-3.293 3.293h1.586c.553 0 1 .448 1 1s-.448 1-1 1zm2.414-7.414c-.378-.378-.88-.586-1.414-.586-.367 0-.716.105-1.023.289l.023-.228v-2.061h2.061l.229-.023c-.186.307-.29.656-.29 1.023 0 .534.208 1.036.586 1.414s.88.586 1.414.586c.367 0 .716-.105 1.023-.289l-.023.228v2.061h-1.939c-.122 0-.24.015-.356.036.189-.31.295-.664.295-1.036 0-.534-.208-1.036-.586-1.414z" + }, + "children": [] + }] +}; +exports.arrowMaximiseOutline = arrowMaximiseOutline; +var arrowMaximise = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M15 4c-.553 0-1 .448-1 1s.447 1 1 1h1.586l-3.293 3.293c-.391.391-.391 1.023 0 1.414.195.195.451.293.707.293s.512-.098.707-.293l3.293-3.293v1.586c0 .552.447 1 1 1s1-.448 1-1v-5h-5zM9.293 13.293l-3.293 3.293v-1.586c0-.552-.447-1-1-1s-1 .448-1 1v4.999h.996l4.004.001c.552 0 1-.448 1-1s-.447-1-1-1h-1.586l3.293-3.292c.391-.391.391-1.023 0-1.414s-1.023-.392-1.414-.001zM7 12c.552 0 1-.448 1-1v-3h3c.553 0 1-.448 1-1s-.447-1-1-1h-4.999l-.001 5c0 .552.447 1 1 1zM17 12c-.553 0-1 .448-1 1v3h-3c-.553 0-1 .448-1 1s.447 1 1 1h5v-5c0-.552-.447-1-1-1z" + }, + "children": [] + }] +}; +exports.arrowMaximise = arrowMaximise; +var arrowMinimiseOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M22 6c0-.801-.312-1.555-.879-2.121-.566-.567-1.32-.879-2.121-.879s-1.555.312-2.121.879l-.883.883c-.531-.474-1.23-.762-1.996-.762-.919 0-1.732.424-2.283 1.077-.212-.047-.431-.077-.656-.077h-6.061v6.06c0 .255.042.499.102.736-.598.549-.98 1.33-.98 2.204 0 .735.266 1.409.705 1.931l-.947.948c-.568.566-.88 1.32-.88 2.121s.312 1.555.879 2.121c.566.567 1.32.879 2.121.879.539 0 1.334-.152 2.061-.879l.903-.919c.535.495 1.251.798 2.036.798.934 0 1.758-.437 2.309-1.107.241.063.49.107.752.107h5.939v-6.061c0-.226-.029-.444-.077-.656.653-.55 1.077-1.364 1.077-2.283 0-.766-.288-1.465-.762-1.996l.883-.883c.567-.566.879-1.32.879-2.121zm-15 1h4c.553 0 1 .448 1 1s-.447 1-1 1h-2v2c0 .552-.448 1-1 1-.553 0-1-.448-1-1v-4zm12.707-.293l-3.293 3.293h1.586c.553 0 1 .448 1 1s-.448 1-1 1h-5v-5c0-.552.447-1 1-1s1 .448 1 1v1.586l3.293-3.293c.195-.195.451-.293.707-.293s.512.098.707.293c.391.391.391 1.023 0 1.414zm-7.707 11.293c0 .552-.447 1-1 1s-1-.448-1-1v-1.707l-3.354 3.414c-.195.195-.39.293-.646.293s-.512-.098-.707-.293c-.391-.391-.391-1.023 0-1.414l3.293-3.293h-1.465c-.553 0-1-.448-1-1s.447-1 1-1h4.879v5zm0-6h-2.278c.173-.295.278-.634.278-1v-1h1.061c.342 0 .658-.094.939-.245v2.245zm1 1h2.713c-.433.094-.713.33-.713.939v1.061h-.939c-.391 0-.752.117-1.061.311v-2.311zm.061 4c0-.552.447-1 1-1h1.939v-2c0-.552.447-1 1-1s1 .448 1 1v4h-3.939c-.553 0-1-.448-1-1z" + }, + "children": [] + }] +}; +exports.arrowMinimiseOutline = arrowMinimiseOutline; +var arrowMinimise = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M6.121 13c-.553 0-1 .448-1 1s.447 1 1 1h1.465l-3.293 3.293c-.391.391-.391 1.023 0 1.414.195.195.451.293.707.293s.512-.098.707-.293l3.414-3.414v1.707c0 .552.447 1 1 1s.879-.448.879-1v-5h-4.879zM7 11c.552 0 1-.448 1-1v-2h2c.553 0 1-.448 1-1s-.447-1-1-1h-3.999l-.001 4c0 .552.447 1 1 1zM17 13c-.553 0-1 .448-1 1v2h-2c-.553 0-1 .448-1 1s.447 1 1 1h4v-4c0-.552-.447-1-1-1zM18.293 4.293l-3.293 3.293v-1.586c0-.552-.447-1-1-1s-1 .448-1 1v5h5c.552 0 1-.448 1-1s-.447-1-1-1h-1.586l3.293-3.292c.391-.391.391-1.023 0-1.414s-1.023-.392-1.414-.001z" + }, + "children": [] + }] +}; +exports.arrowMinimise = arrowMinimise; +var arrowMoveOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M22.828 10.586l-9.414-9.414c-.391-.391-.902-.586-1.414-.586s-1.023.195-1.414.586l-9.414 9.414c-.781.779-.781 2.047 0 2.828l9.414 9.414c.391.391.902.586 1.414.586s1.023-.195 1.414-.586l9.414-9.414c.781-.781.781-2.049 0-2.828zm-5.828 5.414c-.256 0-.512-.098-.707-.293-.391-.391-.391-1.023 0-1.414l1.293-1.293h-4.586v4.586l1.293-1.293c.195-.195.451-.293.707-.293s.512.098.707.293c.391.391.391 1.023 0 1.414l-3.707 3.707-3.707-3.707c-.391-.391-.391-1.023 0-1.414.195-.195.451-.293.707-.293s.512.098.707.293l1.293 1.293v-4.586h-4.586l1.293 1.293c.391.391.391 1.023 0 1.414-.195.195-.451.293-.707.293s-.512-.098-.707-.293l-3.707-3.707 3.707-3.707c.195-.195.451-.293.707-.293s.512.098.707.293c.391.391.391 1.023 0 1.414l-1.293 1.293h4.586v-4.586l-1.293 1.293c-.195.195-.451.293-.707.293s-.512-.098-.707-.293c-.391-.391-.391-1.023 0-1.414l3.707-3.707 3.707 3.707c.391.391.391 1.023 0 1.414-.195.195-.451.293-.707.293s-.512-.098-.707-.293l-1.293-1.293v4.586h4.586l-1.293-1.293c-.391-.391-.391-1.023 0-1.414.195-.195.451-.293.707-.293s.512.098.707.293l3.707 3.707-3.707 3.707c-.195.195-.451.293-.707.293zm-1.732-2c-.175.301-.268.643-.268 1-.357 0-.699.093-1 .268v-1.268h1.268zm-6.536 0h1.268v1.268c-.301-.175-.643-.268-1-.268 0-.357-.093-.699-.268-1zm0-4c.175-.301.268-.643.268-1 .357 0 .699-.093 1-.268v1.268h-1.268zm6.536 0h-1.268v-1.268c.301.175.643.268 1 .268 0 .357.093.699.268 1z" + }, + "children": [] + }] +}; +exports.arrowMoveOutline = arrowMoveOutline; +var arrowMove = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M17.707 8.293c-.391-.391-1.023-.391-1.414 0s-.391 1.023 0 1.414l1.293 1.293h-4.586v-4.586l1.293 1.293c.195.195.451.293.707.293s.512-.098.707-.293c.391-.391.391-1.023 0-1.414l-3.707-3.707-3.707 3.707c-.391.391-.391 1.023 0 1.414s1.023.391 1.414 0l1.293-1.293v4.586h-4.586l1.293-1.293c.391-.391.391-1.023 0-1.414s-1.023-.391-1.414 0l-3.707 3.707 3.707 3.707c.195.195.451.293.707.293s.512-.098.707-.293c.391-.391.391-1.023 0-1.414l-1.293-1.293h4.586v4.586l-1.293-1.293c-.391-.391-1.023-.391-1.414 0s-.391 1.023 0 1.414l3.707 3.707 3.707-3.707c.391-.391.391-1.023 0-1.414s-1.023-.391-1.414 0l-1.293 1.293v-4.586h4.586l-1.293 1.293c-.391.391-.391 1.023 0 1.414.195.195.451.293.707.293s.512-.098.707-.293l3.707-3.707-3.707-3.707z" + }, + "children": [] + }] +}; +exports.arrowMove = arrowMove; +var arrowRepeatOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.994 7.187l.006-.187c0-.801-.312-1.555-.879-2.121-.566-.567-1.32-.879-2.121-.879s-1.555.312-2.121.879l-2.892 2.891c-.53-.473-1.221-.77-1.987-.77h-1c-3.859 0-7 3.14-7 7 0 3.306 2.14 6.084 5.006 6.813l-.006.187c0 .801.312 1.555.879 2.121.566.567 1.32.879 2.121.879s1.555-.312 2.121-.879l2.892-2.891c.53.473 1.221.77 1.987.77h1c3.859 0 7-3.14 7-7 0-3.306-2.14-6.084-5.006-6.813zm-1.994 11.813h-1c-.553 0-1-.448-1-1s.447-1 1-1h1c1.654 0 3-1.346 3-3s-1.121-3-2.5-3h-2.086l1.293 1.293c.391.391.391 1.023 0 1.414-.195.195-.451.293-.707.293s-.512-.098-.707-.293l-3.707-3.707 3.707-3.707c.195-.195.451-.293.707-.293s.512.098.707.293c.391.391.391 1.023 0 1.414l-1.293 1.293h2.086c2.481 0 4.5 2.243 4.5 5s-2.243 5-5 5zm.749-6.971c.7.164 1.251 1 1.251 1.971 0 1.103-.897 2-2 2h-1c-.857 0-1.584.544-1.868 1.304l-3.718-3.718c-.378-.378-.88-.586-1.414-.586s-1.036.208-1.414.586-.586.88-.586 1.414c0 .345.087.677.251.971-.7-.164-1.251-1-1.251-1.971 0-1.103.897-2 2-2h1c.857 0 1.584-.544 1.868-1.304l3.718 3.718c.378.378.88.586 1.414.586s1.036-.208 1.414-.586.586-.88.586-1.414c0-.345-.087-.677-.251-.971zm-7.749-2.029c0 .552-.447 1-1 1h-1c-1.654 0-3 1.346-3 3s1.121 3 2.5 3h2.086l-1.293-1.293c-.391-.391-.391-1.023 0-1.414.195-.195.451-.293.707-.293s.512.098.707.293l3.707 3.707-3.707 3.707c-.195.195-.451.293-.707.293s-.512-.098-.707-.293c-.391-.391-.391-1.023 0-1.414l1.293-1.293h-2.086c-2.481 0-4.5-2.243-4.5-5s2.243-5 5-5h1c.553 0 1 .448 1 1z" + }, + "children": [] + }] +}; +exports.arrowRepeatOutline = arrowRepeatOutline; +var arrowRepeat = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M16.5 7h-2.086l1.293-1.293c.391-.391.391-1.023 0-1.414s-1.023-.391-1.414 0l-3.707 3.707 3.707 3.707c.195.195.451.293.707.293s.512-.098.707-.293c.391-.391.391-1.023 0-1.414l-1.293-1.293h2.086c1.379 0 2.5 1.346 2.5 3s-1.346 3-3 3c-.553 0-1 .448-1 1s.447 1 1 1c2.757 0 5-2.243 5-5s-2.019-5-4.5-5zM8.293 12.293c-.391.391-.391 1.023 0 1.414l1.293 1.293h-2.086c-1.379 0-2.5-1.346-2.5-3s1.346-3 3-3c.553 0 1-.448 1-1s-.447-1-1-1c-2.757 0-5 2.243-5 5s2.019 5 4.5 5h2.086l-1.293 1.293c-.391.391-.391 1.023 0 1.414.195.195.451.293.707.293s.512-.098.707-.293l3.707-3.707-3.707-3.707c-.391-.391-1.023-.391-1.414 0z" + }, + "children": [] + }] +}; +exports.arrowRepeat = arrowRepeat; +var arrowRightOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 21c-.801 0-1.555-.312-2.121-.879s-.88-1.321-.879-2.123c0-.746.271-.998.764-1.998h-4.836c-1.654 0-3-1.347-3-3 0-1.654 1.346-3 3-3h4.836c-.494-1-.764-1.255-.764-2.001.001-.802.312-1.554.88-2.121 1.132-1.132 3.108-1.133 4.241.001l7.121 7.121-7.121 7.121c-.566.567-1.32.879-2.121.879zm-7.072-9c-.552 0-1 .449-1 1s.448 1 1 1h9.658l-3.293 3.293c-.189.189-.293.439-.293.706 0 .269.104.519.293.708.379.378 1.035.378 1.414 0l5.707-5.707-5.707-5.707c-.379-.378-1.035-.378-1.414 0-.189.189-.293.439-.293.706 0 .268.104.519.293.708l3.293 3.293h-9.658z" + }, + "children": [] + }] +}; +exports.arrowRightOutline = arrowRightOutline; +var arrowRightThick = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M10.586 6.586c-.781.779-.781 2.047 0 2.828l1.586 1.586h-7.244c-1.104 0-2 .895-2 2 0 1.104.896 2 2 2h7.244l-1.586 1.586c-.781.779-.781 2.047 0 2.828.391.391.902.586 1.414.586s1.023-.195 1.414-.586l6.414-6.414-6.414-6.414c-.781-.781-2.047-.781-2.828 0z" + }, + "children": [] + }] +}; +exports.arrowRightThick = arrowRightThick; +var arrowRight = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M13.293 7.293c-.391.391-.391 1.023 0 1.414l2.293 2.293h-7.586c-.552 0-1 .448-1 1s.448 1 1 1h7.586l-2.293 2.293c-.391.391-.391 1.023 0 1.414.195.195.451.293.707.293s.512-.098.707-.293l4.707-4.707-4.707-4.707c-.391-.391-1.023-.391-1.414 0z" + }, + "children": [] + }] +}; +exports.arrowRight = arrowRight; +var arrowShuffle = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 9h3.5c.736 0 1.393.391 1.851 1.001.325-.604.729-1.163 1.191-1.662-.803-.823-1.866-1.339-3.042-1.339h-3.5c-.553 0-1 .448-1 1s.447 1 1 1zM11.685 12.111c.551-1.657 2.256-3.111 3.649-3.111h1.838l-1.293 1.293c-.391.391-.391 1.023 0 1.414.195.195.451.293.707.293s.512-.098.707-.293l3.707-3.707-3.707-3.707c-.391-.391-1.023-.391-1.414 0s-.391 1.023 0 1.414l1.293 1.293h-1.838c-2.274 0-4.711 1.967-5.547 4.479l-.472 1.411c-.641 1.926-2.072 3.11-2.815 3.11h-2.5c-.553 0-1 .448-1 1s.447 1 1 1h2.5c1.837 0 3.863-1.925 4.713-4.479l.472-1.41zM15.879 13.293c-.391.391-.391 1.023 0 1.414l1.293 1.293h-2.338c-1.268 0-2.33-.891-2.691-2.108-.256.75-.627 1.499-1.09 2.185.886 1.162 2.243 1.923 3.781 1.923h2.338l-1.293 1.293c-.391.391-.391 1.023 0 1.414.195.195.451.293.707.293s.512-.098.707-.293l3.707-3.707-3.707-3.707c-.391-.391-1.023-.391-1.414 0z" + }, + "children": [] + }] +}; +exports.arrowShuffle = arrowShuffle; +var arrowSortedDown = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M5.8 9.7l6.2 6.3 6.2-6.3c.2-.2.3-.5.3-.7s-.1-.5-.3-.7c-.2-.2-.4-.3-.7-.3h-11c-.3 0-.5.1-.7.3-.2.2-.3.4-.3.7s.1.5.3.7z" + }, + "children": [] + }] +}; +exports.arrowSortedDown = arrowSortedDown; +var arrowSortedUp = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.2 13.3l-6.2-6.3-6.2 6.3c-.2.2-.3.5-.3.7s.1.5.3.7c.2.2.4.3.7.3h11c.3 0 .5-.1.7-.3.2-.2.3-.5.3-.7s-.1-.5-.3-.7z" + }, + "children": [] + }] +}; +exports.arrowSortedUp = arrowSortedUp; +var arrowSyncOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M21.5 12.473c0-2.495-.818-4.426-2.653-6.259-.309-.309-.676-.533-1.073-.682l-.946-.946-3.707-3.707c-.566-.567-1.32-.879-2.121-.879s-1.555.312-2.121.879c-.567.566-.879 1.32-.879 2.121 0 .277.037.549.11.809-1.029.461-1.974 1.12-2.827 1.974-1.795 1.793-2.783 4.178-2.783 6.717 0 2.495.818 4.426 2.653 6.259.299.298.652.521 1.034.669l.985.986 3.707 3.707c.566.567 1.32.879 2.121.879s1.555-.312 2.121-.879c.567-.566.879-1.32.879-2.121 0-.286-.04-.566-.117-.834 1.031-.461 1.978-1.121 2.833-1.975 1.796-1.794 2.784-4.18 2.784-6.718zm-9.13 7.484l1.337 1.336c.391.391.391 1.023 0 1.414-.195.195-.451.293-.707.293s-.512-.098-.707-.293l-3.707-3.707 3.707-3.707c.195-.195.451-.293.707-.293s.512.098.707.293c.391.391.391 1.023 0 1.414l-1.247 1.247c1.351-.091 2.425-.59 3.428-1.593 1.039-1.038 1.611-2.419 1.611-3.888 0-1.422-.401-2.351-1.48-3.429-.391-.391-.391-1.023 0-1.415.195-.195.451-.293.708-.293.256 0 .512.098.707.292 1.448 1.447 2.066 2.896 2.066 4.844 0 2.004-.78 3.887-2.197 5.303-1.39 1.39-3.01 2.1-4.933 2.182zm-.766-14.939l-1.311-1.311c-.391-.391-.391-1.023 0-1.414.195-.195.451-.293.707-.293s.512.098.707.293l3.707 3.707-3.707 3.707c-.195.195-.451.293-.707.293s-.512-.098-.707-.293c-.391-.391-.391-1.023 0-1.414l1.275-1.275c-1.365.086-2.448.584-3.456 1.593-1.04 1.039-1.612 2.42-1.612 3.889 0 1.422.401 2.351 1.48 3.429.391.391.391 1.023 0 1.415-.195.195-.452.293-.708.293s-.512-.098-.707-.292c-1.447-1.448-2.065-2.897-2.065-4.845 0-2.004.78-3.887 2.197-5.303 1.382-1.383 2.993-2.093 4.907-2.179zm-2.916 10.204c-.888-.887-1.188-1.574-1.188-2.722 0-1.202.468-2.332 1.318-3.181l.187-.179c.033.481.236.93.581 1.274.378.378.88.586 1.414.586s1.036-.208 1.414-.586l2.339-2.339c-.078.596.104 1.219.56 1.675.888.887 1.188 1.574 1.188 2.722 0 1.202-.468 2.332-1.318 3.181l-.188.181c-.039-.472-.241-.91-.579-1.248-.38-.378-.882-.586-1.416-.586s-1.036.208-1.414.586l-2.342 2.342c.089-.605-.093-1.242-.556-1.706z" + }, + "children": [] + }] +}; +exports.arrowSyncOutline = arrowSyncOutline; +var arrowSync = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M19.5 12.473c0-1.948-.618-3.397-2.066-4.844-.391-.39-1.023-.39-1.414 0-.391.391-.391 1.024 0 1.415 1.079 1.078 1.48 2.007 1.48 3.429 0 1.469-.572 2.85-1.611 3.888-1.004 1.003-2.078 1.502-3.428 1.593l1.246-1.247c.391-.391.391-1.023 0-1.414s-1.023-.391-1.414 0l-3.707 3.707 3.707 3.707c.195.195.451.293.707.293s.512-.098.707-.293c.391-.391.391-1.023 0-1.414l-1.337-1.336c1.923-.082 3.542-.792 4.933-2.181 1.417-1.416 2.197-3.299 2.197-5.303zM6.5 12.5c0-1.469.572-2.85 1.611-3.889 1.009-1.009 2.092-1.508 3.457-1.594l-1.275 1.275c-.391.391-.391 1.023 0 1.414.195.196.451.294.707.294s.512-.098.707-.293l3.707-3.707-3.707-3.707c-.391-.391-1.023-.391-1.414 0s-.391 1.023 0 1.414l1.311 1.311c-1.914.086-3.525.796-4.907 2.179-1.417 1.416-2.197 3.299-2.197 5.303 0 1.948.618 3.397 2.066 4.844.195.195.451.292.707.292s.512-.098.707-.293c.391-.391.391-1.024 0-1.415-1.079-1.077-1.48-2.006-1.48-3.428z" + }, + "children": [] + }] +}; +exports.arrowSync = arrowSync; +var arrowUnsorted = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.2 9.3l-6.2-6.3-6.2 6.3c-.2.2-.3.4-.3.7s.1.5.3.7c.2.2.4.3.7.3h11c.3 0 .5-.1.7-.3.2-.2.3-.5.3-.7s-.1-.5-.3-.7zM5.8 14.7l6.2 6.3 6.2-6.3c.2-.2.3-.5.3-.7s-.1-.5-.3-.7c-.2-.2-.4-.3-.7-.3h-11c-.3 0-.5.1-.7.3-.2.2-.3.5-.3.7s.1.5.3.7z" + }, + "children": [] + }] +}; +exports.arrowUnsorted = arrowUnsorted; +var arrowUpOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 21c-1.654 0-3-1.346-3-3v-4.764c-1.143 1.024-3.025.979-4.121-.115-1.17-1.169-1.17-3.073 0-4.242l7.121-7.121 7.121 7.121c1.17 1.169 1.17 3.073 0 4.242-1.094 1.095-2.979 1.14-4.121.115v4.764c0 1.654-1.346 3-3 3zm-1-12.586v9.586c0 .551.448 1 1 1s1-.449 1-1v-9.586l3.293 3.293c.379.378 1.035.378 1.414 0 .391-.391.391-1.023 0-1.414l-5.707-5.707-5.707 5.707c-.391.391-.391 1.023 0 1.414.379.378 1.035.378 1.414 0l3.293-3.293z" + }, + "children": [] + }] +}; +exports.arrowUpOutline = arrowUpOutline; +var arrowUpThick = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 3.172l-6.414 6.414c-.781.781-.781 2.047 0 2.828s2.047.781 2.828 0l1.586-1.586v7.242c0 1.104.895 2 2 2 1.104 0 2-.896 2-2v-7.242l1.586 1.586c.391.391.902.586 1.414.586s1.023-.195 1.414-.586c.781-.781.781-2.047 0-2.828l-6.414-6.414z" + }, + "children": [] + }] +}; +exports.arrowUpThick = arrowUpThick; +var arrowUp = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M13 5.586l-4.707 4.707c-.391.391-.391 1.023 0 1.414s1.023.391 1.414 0l2.293-2.293v7.586c0 .552.447 1 1 1s1-.448 1-1v-7.586l2.293 2.293c.195.195.451.293.707.293s.512-.098.707-.293c.391-.391.391-1.023 0-1.414l-4.707-4.707z" + }, + "children": [] + }] +}; +exports.arrowUp = arrowUp; +var at = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 4c-4.411 0-8 3.589-8 8s3.589 8 8 8c1.616 0 3.172-.479 4.499-1.384.456-.312.574-.934.263-1.39-.311-.457-.932-.572-1.39-.263-.994.679-2.16 1.037-3.372 1.037-3.309 0-6-2.691-6-6s2.691-6 6-6 6 2.691 6 6v.5c0 .552-.448 1-1 1s-1-.448-1-1v-3c0-.553-.447-1-1-1-.441 0-.805.29-.938.688-.58-.427-1.289-.688-2.062-.688-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5c1.045 0 1.975-.47 2.616-1.199.548.723 1.408 1.199 2.384 1.199 1.654 0 3-1.346 3-3v-.5c0-4.411-3.589-8-8-8zm0 9.5c-.827 0-1.5-.673-1.5-1.5s.673-1.5 1.5-1.5 1.5.673 1.5 1.5-.673 1.5-1.5 1.5z" + }, + "children": [] + }] +}; +exports.at = at; +var attachmentOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M15.534 4.466c1.024 0 2.05.39 2.829 1.169 1.561 1.561 1.561 4.098 0 5.656l-7.071 7.072c-.778.779-1.804 1.17-2.828 1.17s-2.049-.391-2.828-1.17c-1.56-1.559-1.56-4.098 0-5.656l.807-.807c-.004.805.25 1.524.701 2.125l-.094.096c-.78.779-.78 2.049 0 2.828.39.39.901.584 1.414.584s1.024-.195 1.414-.584l2.535-2.535 4.537-4.537c.778-.779.778-2.049 0-2.828-.392-.39-.904-.584-1.417-.584-.512 0-1.023.195-1.413.584l-4.535 4.537c-.128.127-.146.275-.146.354 0 .076.019.226.146.353.099.099.228.147.356.147.127 0 .254-.049.352-.146l2.122-2.121 1.414-1.414c.392.392.586.902.586 1.414 0 .511-.194 1.021-.584 1.41l-2.124 2.125c-.486.487-1.127.729-1.768.729s-1.28-.244-1.769-.729c-.472-.474-.731-1.101-.731-1.769 0-.67.261-1.297.732-1.77l4.534-4.535c.779-.779 1.805-1.168 2.829-1.168m0-2c-1.604 0-3.11.623-4.242 1.755l-7.069 7.073c-1.133 1.131-1.757 2.638-1.757 4.242s.624 3.11 1.757 4.243c1.131 1.132 2.639 1.755 4.241 1.755s3.11-.624 4.242-1.757l7.071-7.071c1.133-1.131 1.757-2.638 1.757-4.242 0-1.603-.623-3.11-1.755-4.241-1.133-1.134-2.64-1.757-4.245-1.757z" + }, + "children": [] + }] +}; +exports.attachmentOutline = attachmentOutline; +var attachment = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.364 6.635c-1.561-1.559-4.1-1.559-5.658 0l-4.534 4.535c-.473.473-.733 1.1-.733 1.77 0 .668.261 1.295.732 1.768.487.486 1.128.73 1.769.73.64 0 1.279-.242 1.767-.73l2.122-2.121c.391-.395.586-.904.586-1.414 0-.512-.195-1.023-.586-1.414l-3.536 3.535c-.193.195-.511.195-.708-.002-.127-.127-.146-.275-.146-.352 0-.078.019-.227.146-.354l4.535-4.537c.778-.779 2.048-.779 2.83 0 .779.779.779 2.049 0 2.828l-4.537 4.537-2.535 2.535c-.779.779-2.049.779-2.828 0-.78-.779-.78-2.049 0-2.828l.095-.096c-.451-.6-.702-1.359-.702-2.125l-.807.807c-1.56 1.559-1.56 4.098 0 5.656.779.779 1.804 1.17 2.828 1.17s2.049-.391 2.828-1.17l7.072-7.072c1.56-1.559 1.56-4.096 0-5.656z" + }, + "children": [] + }] +}; +exports.attachment = attachment; +var backspaceOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M19 21h-10c-1.436 0-3.145-.88-3.977-2.046l-2.619-3.667-1.188-1.661c-.246-.344-.249-.894-.008-1.241l1.204-1.686 2.608-3.653c.835-1.167 2.546-2.046 3.98-2.046h10c1.654 0 3 1.346 3 3v10c0 1.654-1.346 3-3 3zm-15.771-8.001l.806 1.125 2.618 3.667c.451.633 1.57 1.209 2.348 1.209h10c.552 0 1-.45 1-1.001v-9.999c0-.551-.448-1-1-1h-10c-.776 0-1.897.576-2.351 1.209l-2.608 3.652-.813 1.138zM13.707 13l2.646-2.646c.194-.194.194-.512 0-.707-.195-.194-.513-.194-.707 0l-2.646 2.646-2.646-2.646c-.195-.194-.513-.194-.707 0-.195.195-.195.513 0 .707l2.646 2.646-2.646 2.646c-.195.195-.195.513 0 .707.097.098.225.147.353.147s.256-.049.354-.146l2.646-2.647 2.646 2.646c.098.098.226.147.354.147s.256-.049.354-.146c.194-.194.194-.512 0-.707l-2.647-2.647z" + }, + "children": [] + }] +}; +exports.backspaceOutline = backspaceOutline; +var backspace = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M19.5 5h-10c-1.266 0-2.834.807-3.57 1.837l-2.61 3.653-1.199 1.679c-.121.175-.122.492.003.664l1.188 1.664 2.619 3.667c.735 1.029 2.302 1.836 3.569 1.836h10c1.379 0 2.5-1.122 2.5-2.5v-10c0-1.378-1.121-2.5-2.5-2.5zm-2.293 9.793c.391.391.391 1.023 0 1.414-.195.195-.451.293-.707.293s-.512-.098-.707-.293l-2.293-2.293-2.293 2.293c-.195.195-.451.293-.707.293s-.512-.098-.707-.293c-.391-.391-.391-1.023 0-1.414l2.293-2.293-2.293-2.293c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l2.293 2.293 2.293-2.293c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-2.293 2.293 2.293 2.293z" + }, + "children": [] + }] +}; +exports.backspace = backspace; +var batteryCharge = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M5 10v6h11v-6h-11zm5.83 4.908l-1.21-1.908-2.62.428 3.223-2.324 1.175 1.896 2.602-.43-3.17 2.338zM19 10c0-1.654-1.346-3-3-3h-11c-1.654 0-3 1.346-3 3v6c0 1.654 1.346 3 3 3h11c1.654 0 3-1.346 3-3 1.104 0 2-.896 2-2v-2c0-1.104-.896-2-2-2zm-2 6c0 .552-.449 1-1 1h-11c-.551 0-1-.448-1-1v-6c0-.552.449-1 1-1h11c.551 0 1 .448 1 1v6z" + }, + "children": [] + }] +}; +exports.batteryCharge = batteryCharge; +var batteryFull = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M9 16c-.552 0-1-.447-1-1v-4c0-.553.448-1 1-1s1 .447 1 1v4c0 .553-.448 1-1 1zM6 16c-.552 0-1-.447-1-1v-4c0-.553.448-1 1-1s1 .447 1 1v4c0 .553-.448 1-1 1zM15 16c-.552 0-1-.447-1-1v-4c0-.553.448-1 1-1s1 .447 1 1v4c0 .553-.448 1-1 1zM12 16c-.552 0-1-.447-1-1v-4c0-.553.448-1 1-1s1 .447 1 1v4c0 .553-.448 1-1 1zM19 10c0-1.654-1.346-3-3-3h-11c-1.654 0-3 1.346-3 3v6c0 1.654 1.346 3 3 3h11c1.654 0 3-1.346 3-3 1.104 0 2-.896 2-2v-2c0-1.104-.896-2-2-2zm-2 6c0 .552-.449 1-1 1h-11c-.551 0-1-.448-1-1v-6c0-.552.449-1 1-1h11c.551 0 1 .448 1 1v6z" + }, + "children": [] + }] +}; +exports.batteryFull = batteryFull; +var batteryHigh = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M9 16c-.552 0-1-.447-1-1v-4c0-.553.448-1 1-1s1 .447 1 1v4c0 .553-.448 1-1 1zM6 16c-.552 0-1-.447-1-1v-4c0-.553.448-1 1-1s1 .447 1 1v4c0 .553-.448 1-1 1zM12 16c-.552 0-1-.447-1-1v-4c0-.553.448-1 1-1s1 .447 1 1v4c0 .553-.448 1-1 1zM19 10c0-1.654-1.346-3-3-3h-11c-1.654 0-3 1.346-3 3v6c0 1.654 1.346 3 3 3h11c1.654 0 3-1.346 3-3 1.104 0 2-.896 2-2v-2c0-1.104-.896-2-2-2zm-2 6c0 .552-.449 1-1 1h-11c-.551 0-1-.448-1-1v-6c0-.552.449-1 1-1h11c.551 0 1 .448 1 1v6z" + }, + "children": [] + }] +}; +exports.batteryHigh = batteryHigh; +var batteryLow = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M6 16c-.552 0-1-.447-1-1v-4c0-.553.448-1 1-1s1 .447 1 1v4c0 .553-.448 1-1 1zM19 10c0-1.654-1.346-3-3-3h-11c-1.654 0-3 1.346-3 3v6c0 1.654 1.346 3 3 3h11c1.654 0 3-1.346 3-3 1.104 0 2-.896 2-2v-2c0-1.104-.896-2-2-2zm-2 6c0 .552-.449 1-1 1h-11c-.551 0-1-.448-1-1v-6c0-.552.449-1 1-1h11c.551 0 1 .448 1 1v6z" + }, + "children": [] + }] +}; +exports.batteryLow = batteryLow; +var batteryMid = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M9 16c-.552 0-1-.447-1-1v-4c0-.553.448-1 1-1s1 .447 1 1v4c0 .553-.448 1-1 1zM6 16c-.552 0-1-.447-1-1v-4c0-.553.448-1 1-1s1 .447 1 1v4c0 .553-.448 1-1 1zM19 10c0-1.654-1.346-3-3-3h-11c-1.654 0-3 1.346-3 3v6c0 1.654 1.346 3 3 3h11c1.654 0 3-1.346 3-3 1.104 0 2-.896 2-2v-2c0-1.104-.896-2-2-2zm-2 6c0 .552-.449 1-1 1h-11c-.551 0-1-.448-1-1v-6c0-.552.449-1 1-1h11c.551 0 1 .448 1 1v6z" + }, + "children": [] + }] +}; +exports.batteryMid = batteryMid; +var beaker = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M19.445 16.809l-2.64-9.809h1.195c.552 0 1-.448 1-1s-.448-1-1-1h-12c-.552 0-1 .448-1 1s.448 1 1 1h1.135c-.013.176-.048.402-.121.671l-2.459 9.138c-.218.809-.074 1.623.393 2.231.466.61 1.214.96 2.052.96h10c.838 0 1.586-.35 2.055-.959.466-.609.609-1.423.39-2.232zm-4.713-9.809l1.352 5.018-.084-.018h-8l-.084.018 1.029-3.826c.084-.312.173-.744.192-1.192h5.595zm2.734 10.824c-.087.114-.252.176-.466.176h-10c-.214 0-.379-.062-.466-.176-.086-.113-.104-.289-.048-.496l1.197-4.45c.088.073.195.122.317.122h8c.122 0 .229-.049.316-.121l1.197 4.45c.057.206.04.382-.047.495z" + }, + "children": [] + }] +}; +exports.beaker = beaker; +var beer = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M10 16.5c0 .275-.225.5-.5.5s-.5-.225-.5-.5v-6c0-.275.225-.5.5-.5s.5.225.5.5v6zM12 16.5c0 .275-.225.5-.5.5s-.5-.225-.5-.5v-6c0-.275.225-.5.5-.5s.5.225.5.5v6zM14 16.5c0 .275-.225.5-.5.5s-.5-.225-.5-.5v-6c0-.275.225-.5.5-.5s.5.225.5.5v6zM18.5 6h-.5v-1c0-1.104-.896-2-2-2h-9c-1.104 0-2 .896-2 2v13c0 1.656 1.344 3 3 3h7c1.656 0 3-1.344 3-3h.5c1.93 0 3.5-1.57 3.5-3.5v-5c0-1.93-1.57-3.5-3.5-3.5zm-11.5-1h9v1h-4.444l-.118.332c-.164.458-.663.73-1.117.648l-.348-.058-.173.307c-.267.475-.765.771-1.3.771-.827 0-1.5-.673-1.5-1.5v-1.5zm9 13c0 .552-.448 1-1 1h-7c-.552 0-1-.448-1-1v-9.51c.419.317.936.51 1.5.51.784 0 1.521-.376 1.989-1 .728 0 1.383-.391 1.736-1h3.775v11zm4-3.5c0 .827-.673 1.5-1.5 1.5h-1.5v-8h1.5c.827 0 1.5.673 1.5 1.5v5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M10 16.5c0 .275-.225.5-.5.5s-.5-.225-.5-.5v-6c0-.275.225-.5.5-.5s.5.225.5.5v6zM12 16.5c0 .275-.225.5-.5.5s-.5-.225-.5-.5v-6c0-.275.225-.5.5-.5s.5.225.5.5v6zM14 16.5c0 .275-.225.5-.5.5s-.5-.225-.5-.5v-6c0-.275.225-.5.5-.5s.5.225.5.5v6zM18.5 6h-.5v-1c0-1.104-.896-2-2-2h-9c-1.104 0-2 .896-2 2v13c0 1.656 1.344 3 3 3h7c1.656 0 3-1.344 3-3h.5c1.93 0 3.5-1.57 3.5-3.5v-5c0-1.93-1.57-3.5-3.5-3.5zm-11.5-1h9v1h-4.444l-.118.332c-.164.458-.663.73-1.117.648l-.348-.058-.173.307c-.267.475-.765.771-1.3.771-.827 0-1.5-.673-1.5-1.5v-1.5zm9 13c0 .552-.448 1-1 1h-7c-.552 0-1-.448-1-1v-9.51c.419.317.936.51 1.5.51.784 0 1.521-.376 1.989-1 .728 0 1.383-.391 1.736-1h3.775v11zm4-3.5c0 .827-.673 1.5-1.5 1.5h-1.5v-8h1.5c.827 0 1.5.673 1.5 1.5v5z" + }, + "children": [] + }] + }] + }] +}; +exports.beer = beer; +var bell = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M19.715 17.301c-.017-.018-1.717-1.854-1.73-6.32-.009-2.607-1.69-4.824-4.019-5.641l.034-.34c0-1.103-.896-2-2-2s-2 .897-2 2l.034.338c-2.336.816-4.019 3.036-4.019 5.646 0 4.462-1.711 6.296-1.721 6.306-.287.286-.374.716-.22 1.091s.521.619.926.619h3.143c.447 1.72 1.999 3 3.857 3s3.41-1.28 3.857-3h3.143c.4 0 .758-.243.915-.61s.076-.799-.2-1.089zm-7.715-10.301c2.189 0 3.978 1.789 3.984 3.987.002.728.046 1.396.118 2.013h-8.2c.071-.617.113-1.286.113-2.016.001-2.196 1.788-3.984 3.985-3.984zm0 13c-.737 0-1.375-.405-1.722-1h3.443c-.346.595-.984 1-1.721 1zm-5.186-3c.352-.736.705-1.731.938-3h8.502c.234 1.269.588 2.264.938 3h-10.378z" + }, + "children": [] + }] +}; +exports.bell = bell; +var book = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18 3h-11c-.265 0-.52.105-.707.293l-3 3-.057.062c-.139.165-.225.373-.235.6l-.001.053v10.992c0 1.654 1.346 3 3 3h9c1.304 0 2.416-.836 2.829-2h.671c1.402 0 2.5-1.317 2.5-3v-10c0-1.654-1.346-3-3-3zm-12 16c-.551 0-1-.448-1-1v-10h2v11h-1zm10-1c0 .552-.449 1-1 1h-7v-11h7c.551 0 1 .448 1 1v9zm3-2c0 .62-.324 1-.5 1h-.5v-8c0-1.654-1.346-3-3-3h-8.586l1-1h10.586c.551 0 1 .448 1 1v10z" + }, + "children": [] + }] +}; +exports.book = book; +var bookmark = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M17 2h-8c-1.654 0-3 1.346-3 3v14c0 .514.104.946.308 1.285.564.935 1.815 1.008 2.813.008l3.172-3.172c.375-.374 1.039-.374 1.414 0l3.172 3.172c.491.491 1.002.74 1.52.74.797 0 1.601-.629 1.601-2.033v-14c0-1.654-1.346-3-3-3zm-8 2h8c.551 0 1 .449 1 1v9.905l-2.451-2.247c-1.406-1.289-3.693-1.288-5.099 0l-2.45 2.247v-9.905c0-.551.449-1 1-1zm6.121 11.707c-.565-.565-1.318-.876-2.121-.876s-1.556.312-2.121.876l-2.879 2.879v-2.324l3.126-2.866c1.033-.947 2.714-.947 3.747 0l3.127 2.866v2.324l-2.879-2.879z" + }, + "children": [] + }] +}; +exports.bookmark = bookmark; +var briefcase = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M18 7c0-1.654-1.346-3-3-3h-6c-1.654 0-3 1.346-3 3-1.654 0-3 1.346-3 3v7c0 1.654 1.346 3 3 3h12c1.654 0 3-1.346 3-3v-7c0-1.654-1.346-3-3-3zm-9-1h6c.551 0 1 .449 1 1h-8c0-.551.449-1 1-1zm10 11c0 .551-.449 1-1 1h-12c-.551 0-1-.449-1-1v-1h14v1zm-14-2v-5c0-.551.449-1 1-1h12c.551 0 1 .449 1 1v5h-14zM13 12h-2c-.55 0-1 .45-1 1s.45 1 1 1h2c.55 0 1-.45 1-1s-.45-1-1-1z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18 7c0-1.654-1.346-3-3-3h-6c-1.654 0-3 1.346-3 3-1.654 0-3 1.346-3 3v7c0 1.654 1.346 3 3 3h12c1.654 0 3-1.346 3-3v-7c0-1.654-1.346-3-3-3zm-9-1h6c.551 0 1 .449 1 1h-8c0-.551.449-1 1-1zm10 11c0 .551-.449 1-1 1h-12c-.551 0-1-.449-1-1v-1h14v1zm-14-2v-5c0-.551.449-1 1-1h12c.551 0 1 .449 1 1v5h-14zM13 12h-2c-.55 0-1 .45-1 1s.45 1 1 1h2c.55 0 1-.45 1-1s-.45-1-1-1z" + }, + "children": [] + }] + }] + }] +}; +exports.briefcase = briefcase; +var brush = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M20.177 3.823c-.382-.383-.894-.586-1.415-.586-.25 0-.503.047-.744.144-4.449 1.787-7.792 4.76-10.517 9.357-.102.172-.163.355-.209.542-1.38.215-2.6.903-3.442 1.993-.916 1.185-1.295 2.695-1.066 4.254l.216 1.473 1.473.217c.293.043.589.064.88.064 2.743 0 4.949-1.909 5.367-4.564.188-.047.371-.115.544-.218 4.598-2.728 7.571-6.069 9.355-10.517.298-.743.123-1.593-.442-2.159zm-14.824 15.458c-.192 0-.389-.016-.59-.044-.309-2.104 1.055-3.81 3-4.021l1.021 1.021c-.192 1.76-1.605 3.044-3.431 3.044zm4.89-4.502l-1.021-1.021c.38-.641.774-1.233 1.178-1.804.027.041 1.639 1.653 1.639 1.653-.568.401-1.158.794-1.796 1.172zm2.608-1.773s-1.821-1.801-1.879-1.824c2.147-2.784 4.651-4.685 7.791-5.943-1.255 3.127-3.144 5.623-5.912 7.767z" + }, + "children": [] + }] +}; +exports.brush = brush; +var businessCard = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M20 20h-16c-1.654 0-3-1.346-3-3v-10c0-1.654 1.346-3 3-3h16c1.654 0 3 1.346 3 3v10c0 1.654-1.346 3-3 3zm-16-14c-.551 0-1 .449-1 1v10c0 .551.449 1 1 1h16c.551 0 1-.449 1-1v-10c0-.551-.449-1-1-1h-16zM10 15h-4c-.553 0-1-.448-1-1s.447-1 1-1h4c.553 0 1 .448 1 1s-.447 1-1 1zM10 11h-4c-.553 0-1-.448-1-1s.447-1 1-1h4c.553 0 1 .448 1 1s-.447 1-1 1z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20 20h-16c-1.654 0-3-1.346-3-3v-10c0-1.654 1.346-3 3-3h16c1.654 0 3 1.346 3 3v10c0 1.654-1.346 3-3 3zm-16-14c-.551 0-1 .449-1 1v10c0 .551.449 1 1 1h16c.551 0 1-.449 1-1v-10c0-.551-.449-1-1-1h-16zM10 15h-4c-.553 0-1-.448-1-1s.447-1 1-1h4c.553 0 1 .448 1 1s-.447 1-1 1zM10 11h-4c-.553 0-1-.448-1-1s.447-1 1-1h4c.553 0 1 .448 1 1s-.447 1-1 1z" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "16", + "cy": "10.5", + "r": "2" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "16", + "cy": "10.5", + "r": "2" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M16 13.356c-1.562 0-2.5.715-2.5 1.429 0 .357.938.715 2.5.715 1.466 0 2.5-.357 2.5-.715 0-.714-.98-1.429-2.5-1.429z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M16 13.356c-1.562 0-2.5.715-2.5 1.429 0 .357.938.715 2.5.715 1.466 0 2.5-.357 2.5-.715 0-.714-.98-1.429-2.5-1.429z" + }, + "children": [] + }] + }] + }] +}; +exports.businessCard = businessCard; +var calculator = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M17 21h-8c-1.7 0-3-1.3-3-3v-12c0-1.7 1.3-3 3-3h8c1.7 0 3 1.3 3 3v12c0 1.7-1.3 3-3 3zm-8-16c-.6 0-1 .4-1 1v12c0 .6.4 1 1 1h8c.6 0 1-.4 1-1v-12c0-.6-.4-1-1-1h-8z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "10", + "cy": "11", + "r": "1" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "13", + "cy": "11", + "r": "1" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "16", + "cy": "11", + "r": "1" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "10", + "cy": "14", + "r": "1" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "13", + "cy": "14", + "r": "1" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "16", + "cy": "14", + "r": "1" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "10", + "cy": "17", + "r": "1" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "13", + "cy": "17", + "r": "1" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "16", + "cy": "17", + "r": "1" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 7v1h-6v-1h6m1-1h-8v3h8v-3z" + }, + "children": [] + }] +}; +exports.calculator = calculator; +var calendarOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M19 6.184v-.184c0-1.657-1.343-3-3-3s-3 1.343-3 3h-2c0-1.657-1.343-3-3-3s-3 1.343-3 3v.184c-1.161.415-2 1.514-2 2.816v9c0 1.654 1.346 3 3 3h12c1.654 0 3-1.346 3-3v-9c0-1.302-.839-2.401-2-2.816zm-4-.184c0-.552.447-1 1-1s1 .448 1 1v2c0 .552-.447 1-1 1s-1-.448-1-1v-2zm-8 0c0-.552.447-1 1-1s1 .448 1 1v2c0 .552-.447 1-1 1s-1-.448-1-1v-2zm12 12c0 .551-.448 1-1 1h-12c-.552 0-1-.449-1-1v-6h14v6zm0-7h-14v-2c0-.551.448-1 1-1 0 1.104.896 2 2 2s2-.896 2-2h4c0 1.104.896 2 2 2s2-.896 2-2c.552 0 1 .449 1 1v2z" + }, + "children": [] + }] +}; +exports.calendarOutline = calendarOutline; +var calendar = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M19 6.184v-.184c0-1.657-1.343-3-3-3s-3 1.343-3 3h-2c0-1.657-1.343-3-3-3s-3 1.343-3 3v.184c-1.161.415-2 1.514-2 2.816v9c0 1.654 1.346 3 3 3h12c1.654 0 3-1.346 3-3v-9c0-1.302-.839-2.401-2-2.816zm-4-.184c0-.552.447-1 1-1s1 .448 1 1v2c0 .552-.447 1-1 1s-1-.448-1-1v-2zm-8 0c0-.552.447-1 1-1s1 .448 1 1v2c0 .552-.447 1-1 1s-1-.448-1-1v-2zm12 12c0 .551-.448 1-1 1h-12c-.552 0-1-.449-1-1v-6h14v6z" + }, + "children": [] + }] +}; +exports.calendar = calendar; +var cameraOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M19 20h-14c-1.654 0-3-1.346-3-3v-8c0-1.654 1.346-3 3-3h1.586l1-1c.579-.579 1.596-1 2.414-1h4c.818 0 1.835.421 2.414 1l1 1h1.586c1.654 0 3 1.346 3 3v8c0 1.654-1.346 3-3 3zm-14-12c-.552 0-1 .448-1 1v8c0 .552.448 1 1 1h14c.552 0 1-.448 1-1v-8c0-.552-.448-1-1-1h-2c-.266 0-.52-.105-.707-.293l-1.293-1.293c-.201-.201-.715-.414-1-.414h-4c-.285 0-.799.213-1 .414l-1.293 1.293c-.187.188-.441.293-.707.293h-2zM12 10c1.379 0 2.5 1.121 2.5 2.5s-1.121 2.5-2.5 2.5-2.5-1.121-2.5-2.5 1.121-2.5 2.5-2.5m0-1c-1.934 0-3.5 1.566-3.5 3.5 0 1.932 1.566 3.5 3.5 3.5s3.5-1.568 3.5-3.5c0-1.934-1.566-3.5-3.5-3.5zM18 8.699c-.719 0-1.3.582-1.3 1.301s.581 1.299 1.3 1.299 1.3-.58 1.3-1.299-.581-1.301-1.3-1.301z" + }, + "children": [] + }] +}; +exports.cameraOutline = cameraOutline; +var camera = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M19 6h-1.586l-1-1c-.579-.579-1.595-1-2.414-1h-4c-.819 0-1.835.421-2.414 1l-1 1h-1.586c-1.654 0-3 1.346-3 3v8c0 1.654 1.346 3 3 3h14c1.654 0 3-1.346 3-3v-8c0-1.654-1.346-3-3-3zm-7 10c-1.933 0-3.5-1.568-3.5-3.5 0-1.934 1.567-3.5 3.5-3.5s3.5 1.566 3.5 3.5c0 1.932-1.567 3.5-3.5 3.5zm6-4.701c-.719 0-1.3-.58-1.3-1.299s.581-1.301 1.3-1.301 1.3.582 1.3 1.301-.581 1.299-1.3 1.299z" + }, + "children": [] + }] +}; +exports.camera = camera; +var cancelOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 20.5c-4.688 0-8.5-3.812-8.5-8.5s3.812-8.5 8.497-8.5c4.69 0 8.503 3.812 8.503 8.5s-3.812 8.5-8.5 8.5zm0-15c-3.586 0-6.5 2.916-6.5 6.5s2.916 6.5 6.5 6.5 6.5-2.916 6.5-6.5-2.916-6.5-6.5-6.5zM12.003 8.5c1.929 0 3.497 1.57 3.497 3.5 0 .206-.02.412-.057.615l-4.057-4.059c.203-.036.408-.056.614-.056m.003-1c-.882 0-1.696.262-2.39.697l6.188 6.188c.438-.692.699-1.508.699-2.387 0-2.48-2.014-4.498-4.497-4.498zM8.557 11.384l4.059 4.06c-.204.036-.409.056-.616.056-1.93 0-3.5-1.57-3.5-3.502 0-.206.02-.412.057-.614m-.358-1.773c-.435.694-.699 1.508-.699 2.387 0 2.486 2.016 4.502 4.5 4.502.879 0 1.693-.264 2.387-.699l-6.188-6.19z" + }, + "children": [] + }] +}; +exports.cancelOutline = cancelOutline; +var cancel = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 4c-4.411 0-8 3.589-8 8s3.589 8 8 8 8-3.589 8-8-3.589-8-8-8zm-5 8c0-.832.224-1.604.584-2.295l6.711 6.711c-.691.36-1.463.584-2.295.584-2.757 0-5-2.243-5-5zm9.416 2.295l-6.711-6.711c.691-.36 1.463-.584 2.295-.584 2.757 0 5 2.243 5 5 0 .832-.224 1.604-.584 2.295z" + }, + "children": [] + }] +}; +exports.cancel = cancel; +var chartAreaOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M20 17h-16c-.552 0-1-.447-1-1v-3c0-.68.234-1.346.658-1.874l4-5c.98-1.226 2.885-1.469 4.143-.524l1.674 1.254 2.185-2.729c.57-.717 1.424-1.127 2.341-1.127.679 0 1.343.232 1.873.657.716.572 1.126 1.426 1.126 2.343v10c0 .553-.448 1-1 1zm-15-2h14v-9c0-.307-.137-.59-.375-.779-.227-.183-.465-.221-.624-.221-.306 0-.591.137-.782.376l-2.789 3.485c-.337.423-.949.5-1.381.176l-2.449-1.837c-.422-.316-1.055-.233-1.381.176l-4 5c-.181.228-.219.464-.219.624v2zM20 21h-16c-.552 0-1-.447-1-1s.448-1 1-1h16c.552 0 1 .447 1 1s-.448 1-1 1z" + }, + "children": [] + }] +}; +exports.chartAreaOutline = chartAreaOutline; +var chartArea = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M20 6c0-.587-.257-1.167-.75-1.562-.863-.69-2.121-.551-2.812.312l-2.789 3.486-2.449-1.836c-.864-.648-2.087-.493-2.762.351l-4 5c-.294.368-.438.811-.438 1.249v3h16v-10zM20 19h-16c-.552 0-1 .447-1 1s.448 1 1 1h16c.552 0 1-.447 1-1s-.448-1-1-1z" + }, + "children": [] + }] +}; +exports.chartArea = chartArea; +var chartBarOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M17 5c-.771 0-1.468.301-2 .779v-1.779c0-1.654-1.346-3-3-3s-3 1.346-3 3v4.779c-.532-.478-1.229-.779-2-.779-1.654 0-3 1.346-3 3v6h16v-9c0-1.654-1.346-3-3-3zm-5-2c.551 0 1 .448 1 1v11h-2v-11c0-.552.449-1 1-1zm-4 12h-2v-4c0-.552.449-1 1-1s1 .448 1 1v4zm10 0h-2v-7c0-.552.449-1 1-1s1 .448 1 1v7zM19 21h-14c-.552 0-1-.447-1-1s.448-1 1-1h14c.552 0 1 .447 1 1s-.448 1-1 1z" + }, + "children": [] + }] +}; +exports.chartBarOutline = chartBarOutline; +var chartBar = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M14 4c0-1.105-.896-2-2-2s-2 .895-2 2v12h4v-12zM19 8c0-1.105-.896-2-2-2s-2 .895-2 2v8h4v-8zM9 11c0-1.105-.896-2-2-2s-2 .895-2 2v5h4v-5zM19 19h-14c-.553 0-1 .447-1 1s.447 1 1 1h14c.553 0 1-.447 1-1s-.447-1-1-1z" + }, + "children": [] + }] +}; +exports.chartBar = chartBar; +var chartLineOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M5.999 17c-.677 0-1.342-.234-1.873-.658-.626-.501-1.019-1.215-1.107-2.011-.089-.796.138-1.58.639-2.206l4-5c.978-1.225 2.883-1.471 4.143-.523l1.674 1.254 2.184-2.729c.571-.716 1.425-1.127 2.342-1.127.679 0 1.343.232 1.873.657.626.501 1.021 1.216 1.108 2.013s-.14 1.58-.641 2.204l-4 5c-.977 1.226-2.882 1.471-4.143.526l-1.674-1.256-2.184 2.729c-.57.716-1.424 1.127-2.341 1.127zm4.001-9c-.306 0-.591.137-.781.374l-4 5.001c-.167.208-.243.471-.213.734.03.266.161.504.369.67.228.183.465.221.624.221.306 0 .591-.137.782-.376l3.395-4.244 3.224 2.42c.42.316 1.056.231 1.381-.176l4-5.001c.167-.208.242-.469.213-.734-.03-.266-.161-.504-.369-.67-.227-.182-.464-.22-.624-.22-.306 0-.591.137-.782.376l-3.395 4.242-3.224-2.417c-.175-.132-.382-.2-.6-.2zM19 21h-14c-.552 0-1-.447-1-1s.448-1 1-1h14c.552 0 1 .447 1 1s-.448 1-1 1z" + }, + "children": [] + }] +}; +exports.chartLineOutline = chartLineOutline; +var chartLine = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M4.75 15.561c.369.294.811.439 1.248.439.588 0 1.168-.258 1.563-.752l2.789-3.486 2.45 1.838c.864.648 2.088.492 2.762-.352l4-5c.69-.861.55-2.121-.312-2.811-.863-.689-2.121-.551-2.812.312l-2.789 3.486-2.449-1.835c-.864-.648-2.087-.494-2.762.35l-4 5c-.69.863-.549 2.121.312 2.811zM5 21h14c.553 0 1-.447 1-1s-.447-1-1-1h-14c-.553 0-1 .447-1 1s.447 1 1 1z" + }, + "children": [] + }] +}; +exports.chartLine = chartLine; +var chartPieOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.227 7.609l.557-.559c.396-.396.607-.943.582-1.504-.026-.561-.286-1.084-.717-1.443-2.129-1.775-4.711-2.848-7.469-3.097l-.18-.006c-.497 0-.979.186-1.35.523-.414.379-.65.915-.65 1.477v2.229c-3.657.865-6.333 4.188-6.333 8.006 0 4.547 3.688 8.244 8.224 8.244 1.594 0 3.11-.479 4.441-1.345.277.142.583.226.9.226l.109-.004c.569-.03 1.098-.305 1.453-.75 1.421-1.781 2.204-4.019 2.204-6.297.002-2.032-.625-4.027-1.771-5.7zm-7.336 11.87c-3.438 0-6.224-2.793-6.224-6.244 0-3.137 2.317-5.729 5.333-6.164v6.408l4.609 4.754c-1.037.779-2.322 1.246-3.718 1.246zm.109-7.454v-9.025c2.411.218 4.607 1.173 6.366 2.641l-6.366 6.384zm.214 1.269l5.019-5.028c1.104 1.385 1.769 3.141 1.769 5.043 0 1.914-.664 3.666-1.769 5.051l-5.019-5.066z" + }, + "children": [] + }] +}; +exports.chartPieOutline = chartPieOutline; +var chartPie = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M11.614 13.98l4.908 4.922c.39.391.99.36 1.286-.106.88-1.394 1.393-3.044 1.393-4.815 0-2.131-.741-4.086-1.972-5.631l-5.615 5.63zM9 14.396v-7.355c-3.391.487-6 3.405-6 6.939 0 3.876 3.134 7.02 7 7.02 1.572 0 3.018-.526 4.186-1.403l-5.186-5.201zM16.331 6.213c.39-.391.365-.999-.089-1.313-1.253-.868-2.695-1.479-4.251-1.765-.544-.1-.991.312-.991.865v7.56l5.331-5.347z" + }, + "children": [] + }] +}; +exports.chartPie = chartPie; +var chevronLeftOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M13 20c-.802 0-1.555-.312-2.122-.879l-7.121-7.121 7.122-7.121c1.133-1.133 3.11-1.133 4.243 0 .566.566.878 1.32.878 2.121s-.312 1.555-.879 2.122l-2.878 2.878 2.878 2.879c.567.566.879 1.32.879 2.121s-.312 1.555-.879 2.122c-.566.566-1.319.878-2.121.878zm-6.415-8l5.708 5.707c.378.378 1.037.377 1.414 0 .189-.189.293-.439.293-.707s-.104-.518-.293-.707l-4.292-4.293 4.292-4.293c.189-.189.293-.44.293-.707s-.104-.518-.293-.707c-.378-.379-1.037-.378-1.414-.001l-5.708 5.708z" + }, + "children": [] + }] +}; +exports.chevronLeftOutline = chevronLeftOutline; +var chevronLeft = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M14.414 5.586c-.78-.781-2.048-.781-2.828 0l-6.415 6.414 6.415 6.414c.39.391.902.586 1.414.586s1.024-.195 1.414-.586c.781-.781.781-2.047 0-2.828l-3.585-3.586 3.585-3.586c.781-.781.781-2.047 0-2.828z" + }, + "children": [] + }] +}; +exports.chevronLeft = chevronLeft; +var chevronRightOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M10 20c-.802 0-1.555-.312-2.122-.879-.566-.566-.878-1.32-.878-2.121s.312-1.555.879-2.122l2.878-2.878-2.878-2.879c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.122c1.133-1.132 3.109-1.133 4.243.001l7.121 7.121-7.122 7.121c-.566.567-1.319.879-2.121.879zm0-14c-.268 0-.518.104-.707.292-.189.19-.293.441-.293.708s.104.518.293.707l4.292 4.293-4.292 4.293c-.189.189-.293.439-.293.707s.104.518.293.707c.378.379 1.037.378 1.414.001l5.708-5.708-5.708-5.707c-.189-.189-.439-.293-.707-.293z" + }, + "children": [] + }] +}; +exports.chevronRightOutline = chevronRightOutline; +var chevronRight = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M8.586 5.586c-.781.781-.781 2.047 0 2.828l3.585 3.586-3.585 3.586c-.781.781-.781 2.047 0 2.828.39.391.902.586 1.414.586s1.024-.195 1.414-.586l6.415-6.414-6.415-6.414c-.78-.781-2.048-.781-2.828 0z" + }, + "children": [] + }] +}; +exports.chevronRight = chevronRight; +var clipboard = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M17 3h-10c-1.654 0-3 1.346-3 3v12c0 1.654 1.346 3 3 3h10c1.654 0 3-1.346 3-3v-12c0-1.654-1.346-3-3-3zm-8 2h6v1c0 .551-.449 1-1 1h-4c-.551 0-1-.449-1-1v-1zm9 13c0 .551-.449 1-1 1h-10c-.551 0-1-.449-1-1v-12c0-.551.449-1 1-1h1v1c0 1.1.9 2 2 2h4c1.1 0 2-.9 2-2v-1h1c.551 0 1 .449 1 1v12zM16 17h-8c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h8c.276 0 .5.224.5.5s-.224.5-.5.5zM16 14h-8c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h8c.276 0 .5.224.5.5s-.224.5-.5.5zM16 11h-8c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h8c.276 0 .5.224.5.5s-.224.5-.5.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17 3h-10c-1.654 0-3 1.346-3 3v12c0 1.654 1.346 3 3 3h10c1.654 0 3-1.346 3-3v-12c0-1.654-1.346-3-3-3zm-8 2h6v1c0 .551-.449 1-1 1h-4c-.551 0-1-.449-1-1v-1zm9 13c0 .551-.449 1-1 1h-10c-.551 0-1-.449-1-1v-12c0-.551.449-1 1-1h1v1c0 1.1.9 2 2 2h4c1.1 0 2-.9 2-2v-1h1c.551 0 1 .449 1 1v12zM16 17h-8c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h8c.276 0 .5.224.5.5s-.224.5-.5.5zM16 14h-8c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h8c.276 0 .5.224.5.5s-.224.5-.5.5zM16 11h-8c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h8c.276 0 .5.224.5.5s-.224.5-.5.5z" + }, + "children": [] + }] + }] + }] +}; +exports.clipboard = clipboard; +var cloudStorageOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M16.5 8.999l-.352.015c-.824-2.375-3.312-4.015-5.898-4.015-3.309 0-6.25 2.69-6.25 6v.126c-1 .445-2.75 2.014-2.75 3.875 0 2.206 2.044 4 4.25 4h11c2.757 0 5-2.244 5-5s-2.243-5.001-5-5.001zm0 8.001h-4.5v-3.794l2.146 2.146c.098.099.226.146.354.146s.256-.049.354-.146c.195-.194.195-.512 0-.707l-2.998-3-.164-.107c-.123-.051-.26-.051-.383 0l-.162.107-3 3c-.194.195-.194.513 0 .707.099.099.227.146.354.146s.256-.049.354-.146l2.145-2.146v3.794h-5.5c-1.104 0-2-.896-2-2s.896-2 1.908-2.005l1.422.015-.248-1.201c-.055-.264-.082-.536-.082-.809 0-2.206 1.794-4 4-4 1.951 0 3.604 1.402 3.93 3.334l.187 1.102 1.073-.306c.312-.089.569-.13.812-.13 1.653 0 3 1.346 3 3s-1.348 3-3.002 3z" + }, + "children": [] + }] +}; +exports.cloudStorageOutline = cloudStorageOutline; +var cloudStorage = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M17 9l-.351.015c-.825-2.377-3.062-4.015-5.649-4.015-3.309 0-6 2.691-6 6l.001.126c-1.724.445-3.001 2.013-3.001 3.874 0 2.206 1.794 4 4 4h5v-4.586l-1.293 1.293c-.195.195-.451.293-.707.293s-.512-.098-.707-.293c-.391-.391-.391-1.023 0-1.414l2.999-2.999c.093-.093.203-.166.326-.217.244-.101.52-.101.764 0 .123.051.233.124.326.217l2.999 2.999c.391.391.391 1.023 0 1.414-.195.195-.451.293-.707.293s-.512-.098-.707-.293l-1.293-1.293v4.586h4c2.757 0 5-2.243 5-5s-2.243-5-5-5z" + }, + "children": [] + }] +}; +exports.cloudStorage = cloudStorage; +var codeOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M7.828 19c-.801 0-1.555-.312-2.121-.879l-5.121-5.121 5.121-5.121c1.133-1.134 3.112-1.134 4.243.001 1.169 1.168 1.169 3.072-.001 4.241l-.878.879.878.879c1.17 1.169 1.17 3.073 0 4.242-.564.567-1.318.879-2.121.879zm-4.414-6l3.707 3.707c.38.379 1.039.377 1.413.001.391-.391.391-1.025.001-1.415l-2.292-2.293 2.292-2.293c.39-.39.39-1.024 0-1.414-.378-.379-1.036-.377-1.414 0l-3.707 3.707zM16.172 19c-.803 0-1.557-.312-2.122-.88-1.169-1.168-1.169-3.072.001-4.241l.878-.879-.878-.879c-1.17-1.169-1.17-3.073 0-4.242 1.129-1.133 3.109-1.134 4.242 0l5.121 5.121-5.121 5.121c-.566.567-1.32.879-2.121.879zm-.001-10c-.267 0-.518.104-.705.292-.391.391-.391 1.025-.001 1.415l2.292 2.293-2.292 2.293c-.39.39-.39 1.024 0 1.414.377.378 1.035.379 1.414 0l3.707-3.707-3.707-3.707c-.19-.189-.441-.293-.708-.293z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M7.828 19c-.801 0-1.555-.312-2.121-.879l-5.121-5.121 5.121-5.121c1.133-1.134 3.112-1.134 4.243.001 1.169 1.168 1.169 3.072-.001 4.241l-.878.879.878.879c1.17 1.169 1.17 3.073 0 4.242-.564.567-1.318.879-2.121.879zm-4.414-6l3.707 3.707c.38.379 1.039.377 1.413.001.391-.391.391-1.025.001-1.415l-2.292-2.293 2.292-2.293c.39-.39.39-1.024 0-1.414-.378-.379-1.036-.377-1.414 0l-3.707 3.707zM16.172 19c-.803 0-1.557-.312-2.122-.88-1.169-1.168-1.169-3.072.001-4.241l.878-.879-.878-.879c-1.17-1.169-1.17-3.073 0-4.242 1.129-1.133 3.109-1.134 4.242 0l5.121 5.121-5.121 5.121c-.566.567-1.32.879-2.121.879zm-.001-10c-.267 0-.518.104-.705.292-.391.391-.391 1.025-.001 1.415l2.292 2.293-2.292 2.293c-.39.39-.39 1.024 0 1.414.377.378 1.035.379 1.414 0l3.707-3.707-3.707-3.707c-.19-.189-.441-.293-.708-.293z" + }, + "children": [] + }] + }] + }] +}; +exports.codeOutline = codeOutline; +var code = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M8.171 18c-.512 0-1.023-.195-1.414-.586l-4.414-4.414 4.414-4.414c.781-.781 2.049-.781 2.828 0 .781.781.781 2.047 0 2.828l-1.585 1.586 1.585 1.586c.781.781.781 2.047 0 2.828-.39.391-.902.586-1.414.586zM15.829 18c-.512 0-1.024-.195-1.414-.586-.781-.781-.781-2.047 0-2.828l1.585-1.586-1.585-1.586c-.781-.781-.781-2.047 0-2.828.779-.781 2.047-.781 2.828 0l4.414 4.414-4.414 4.414c-.39.391-.902.586-1.414.586z" + }, + "children": [] + }] +}; +exports.code = code; +var coffee = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M17 19h-12c-.553 0-1-.447-1-1s.447-1 1-1h12c.553 0 1 .447 1 1s-.447 1-1 1zM17.5 5h-12.5v9c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2v-2h.5c1.93 0 3.5-1.57 3.5-3.5s-1.57-3.5-3.5-3.5zm-2.5 9h-8v-7h8v7zm2.5-4h-1.5v-3h1.5c.827 0 1.5.673 1.5 1.5s-.673 1.5-1.5 1.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17 19h-12c-.553 0-1-.447-1-1s.447-1 1-1h12c.553 0 1 .447 1 1s-.447 1-1 1zM17.5 5h-12.5v9c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2v-2h.5c1.93 0 3.5-1.57 3.5-3.5s-1.57-3.5-3.5-3.5zm-2.5 9h-8v-7h8v7zm2.5-4h-1.5v-3h1.5c.827 0 1.5.673 1.5 1.5s-.673 1.5-1.5 1.5z" + }, + "children": [] + }] + }] + }] +}; +exports.coffee = coffee; +var cogOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M13 5l.855 3.42 3.389-.971 1.501 2.6-2.535 2.449 2.535 2.451-1.5 2.6-3.39-.971-.855 3.422h-3l-.855-3.422-3.39.971-1.501-2.6 2.535-2.451-2.534-2.449 1.5-2.6 3.39.971.855-3.42h3m0-2h-3c-.918 0-1.718.625-1.939 1.516l-.354 1.412-1.4-.4c-.184-.053-.369-.078-.552-.078-.7 0-1.368.37-1.731 1l-1.5 2.6c-.459.796-.317 1.802.342 2.438l1.047 1.011-1.048 1.015c-.66.637-.802 1.643-.343 2.438l1.502 2.6c.363.631 1.031 1 1.731 1 .183 0 .368-.025.552-.076l1.399-.401.354 1.415c.222.885 1.022 1.51 1.94 1.51h3c.918 0 1.718-.625 1.939-1.516l.354-1.414 1.399.4c.184.053.369.077.552.077.7 0 1.368-.37 1.731-1l1.5-2.6c.459-.796.317-1.8-.342-2.438l-1.047-1.013 1.047-1.013c.66-.637.801-1.644.342-2.438l-1.5-2.6c-.365-.631-1.031-1-1.732-1-.184 0-.368.025-.551.076l-1.4.401-.354-1.413c-.22-.884-1.02-1.509-1.938-1.509zM11.5 10.5c1.104 0 2 .895 2 2 0 1.104-.896 2-2 2s-2-.896-2-2c0-1.105.896-2 2-2m0-1c-1.654 0-3 1.346-3 3s1.346 3 3 3 3-1.346 3-3-1.346-3-3-3z" + }, + "children": [] + }] +}; +exports.cogOutline = cogOutline; +var cog = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M9.387 17.548l.371 1.482c.133.533.692.97 1.242.97h1c.55 0 1.109-.437 1.242-.97l.371-1.482c.133-.533.675-.846 1.203-.694l1.467.42c.529.151 1.188-.114 1.462-.591l.5-.867c.274-.477.177-1.179-.219-1.562l-1.098-1.061c-.396-.383-.396-1.008.001-1.39l1.096-1.061c.396-.382.494-1.084.22-1.561l-.501-.867c-.275-.477-.933-.742-1.461-.591l-1.467.42c-.529.151-1.07-.161-1.204-.694l-.37-1.48c-.133-.532-.692-.969-1.242-.969h-1c-.55 0-1.109.437-1.242.97l-.37 1.48c-.134.533-.675.846-1.204.695l-1.467-.42c-.529-.152-1.188.114-1.462.59l-.5.867c-.274.477-.177 1.179.22 1.562l1.096 1.059c.395.383.395 1.008 0 1.391l-1.098 1.061c-.395.383-.494 1.085-.219 1.562l.501.867c.274.477.933.742 1.462.591l1.467-.42c.528-.153 1.07.16 1.203.693zm2.113-7.048c1.104 0 2 .895 2 2 0 1.104-.896 2-2 2s-2-.896-2-2c0-1.105.896-2 2-2z" + }, + "children": [] + }] +}; +exports.cog = cog; +var compass = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12 5c3.859.001 7 3.142 7 7.001 0 3.858-3.141 6.998-7 6.999-3.859 0-7-3.14-7-6.999s3.141-7 7-7.001m0-2c-4.971.001-9 4.03-9 9.001 0 4.97 4.029 8.999 9 8.999 4.97-.001 9-4.03 9-8.999 0-4.971-4.029-9-9-9.001zM16.182 7.819c-.129-.128-.315-.178-.491-.127l-5.951 1.706c-.166.048-.295.177-.342.343l-1.707 5.951c-.051.175-.002.363.127.491.095.095.223.146.354.146l.138-.02 5.95-1.708c.165-.047.295-.177.342-.343l1.707-5.949c.05-.173.002-.361-.127-.49zm-7.282 7.282l1.383-4.817 3.434 3.435-4.817 1.382z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12 5c3.859.001 7 3.142 7 7.001 0 3.858-3.141 6.998-7 6.999-3.859 0-7-3.14-7-6.999s3.141-7 7-7.001m0-2c-4.971.001-9 4.03-9 9.001 0 4.97 4.029 8.999 9 8.999 4.97-.001 9-4.03 9-8.999 0-4.971-4.029-9-9-9.001zM16.182 7.819c-.129-.128-.315-.178-.491-.127l-5.951 1.706c-.166.048-.295.177-.342.343l-1.707 5.951c-.051.175-.002.363.127.491.095.095.223.146.354.146l.138-.02 5.95-1.708c.165-.047.295-.177.342-.343l1.707-5.949c.05-.173.002-.361-.127-.49zm-7.282 7.282l1.383-4.817 3.434 3.435-4.817 1.382z" + }, + "children": [] + }] + }] + }] +}; +exports.compass = compass; +var contacts = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M19 3h-11c-1.654 0-3 1.346-3 3v1h-1c-.553 0-1 .448-1 1s.447 1 1 1h1v2h-1c-.553 0-1 .448-1 1s.447 1 1 1h1v2h-1c-.553 0-1 .448-1 1s.447 1 1 1h1v1c0 1.654 1.346 3 3 3h11c1.654 0 3-1.346 3-3v-12c0-1.654-1.346-3-3-3zm-12 3c0-.551.449-1 1-1v2h-1v-1zm0 3h1v2h-1v-2zm0 4h1v2h-1v-2zm0 5v-1h1v2c-.551 0-1-.449-1-1zm13 0c0 .551-.449 1-1 1h-10v-14h10c.551 0 1 .449 1 1v12z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19 3h-11c-1.654 0-3 1.346-3 3v1h-1c-.553 0-1 .448-1 1s.447 1 1 1h1v2h-1c-.553 0-1 .448-1 1s.447 1 1 1h1v2h-1c-.553 0-1 .448-1 1s.447 1 1 1h1v1c0 1.654 1.346 3 3 3h11c1.654 0 3-1.346 3-3v-12c0-1.654-1.346-3-3-3zm-12 3c0-.551.449-1 1-1v2h-1v-1zm0 3h1v2h-1v-2zm0 4h1v2h-1v-2zm0 5v-1h1v2c-.551 0-1-.449-1-1zm13 0c0 .551-.449 1-1 1h-10v-14h10c.551 0 1 .449 1 1v12z" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "14", + "cy": "10.5", + "r": "2" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "14", + "cy": "10.5", + "r": "2" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M14 13.356c-1.562 0-2.5.715-2.5 1.429 0 .357.938.715 2.5.715 1.466 0 2.5-.357 2.5-.715 0-.714-.98-1.429-2.5-1.429z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14 13.356c-1.562 0-2.5.715-2.5 1.429 0 .357.938.715 2.5.715 1.466 0 2.5-.357 2.5-.715 0-.714-.98-1.429-2.5-1.429z" + }, + "children": [] + }] + }] + }] +}; +exports.contacts = contacts; +var creditCard = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M17 7h-11c-1.654 0-3 1.346-3 3v7c0 1.654 1.346 3 3 3h11c1.654 0 3-1.346 3-3v-7c0-1.654-1.346-3-3-3zm1 10c0 .552-.448 1-1 1h-11c-.552 0-1-.448-1-1v-4h13v4zm0-6h-13v-1c0-.552.448-1 1-1h11c.552 0 1 .448 1 1v1zM14 16h2c.276 0 .5-.224.5-.5s-.224-.5-.5-.5h-2c-.276 0-.5.224-.5.5s.224.5.5.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17 7h-11c-1.654 0-3 1.346-3 3v7c0 1.654 1.346 3 3 3h11c1.654 0 3-1.346 3-3v-7c0-1.654-1.346-3-3-3zm1 10c0 .552-.448 1-1 1h-11c-.552 0-1-.448-1-1v-4h13v4zm0-6h-13v-1c0-.552.448-1 1-1h11c.552 0 1 .448 1 1v1zM14 16h2c.276 0 .5-.224.5-.5s-.224-.5-.5-.5h-2c-.276 0-.5.224-.5.5s.224.5.5.5z" + }, + "children": [] + }] + }] + }] +}; +exports.creditCard = creditCard; +var css3 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M5.7 3.4l-.6 3.2h12.3l-.4 2.1h-12.3l-.6 3.2h12.3l-.7 3.6-5 1.7-4.3-1.7.3-1.6h-3l-.7 3.8 7.1 2.9 8.2-2.9 1.1-5.8.2-1.2 1.4-7.3h-15.3z" + }, + "children": [] + }] +}; +exports.css3 = css3; +var database = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.983 8.791c-.176-3.704-3.236-6.666-6.983-6.666s-6.807 2.962-6.983 6.666l-.017.084v6.25c0 3.86 3.141 7 7 7s7-3.14 7-7v-6.25l-.017-.084zm-6.983 8.834c-2.22 0-4.132-1.324-5-3.222v-.388c1.271 1.3 3.042 2.11 5 2.11s3.729-.811 5-2.11v.388c-.868 1.898-2.78 3.222-5 3.222zm0-13.5c2.757 0 5 2.243 5 5s-2.243 5-5 5-5-2.243-5-5 2.243-5 5-5zm0 16c-2.271 0-4.172-1.532-4.778-3.609 1.188 1.293 2.888 2.109 4.778 2.109s3.59-.816 4.778-2.109c-.606 2.077-2.507 3.609-4.778 3.609z" + }, + "children": [] + }] +}; +exports.database = database; +var deleteOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 3c-4.963 0-9 4.038-9 9s4.037 9 9 9 9-4.038 9-9-4.037-9-9-9zm0 16c-3.859 0-7-3.14-7-7s3.141-7 7-7 7 3.14 7 7-3.141 7-7 7zM12.707 12l2.646-2.646c.194-.194.194-.512 0-.707-.195-.194-.513-.194-.707 0l-2.646 2.646-2.646-2.647c-.195-.194-.513-.194-.707 0-.195.195-.195.513 0 .707l2.646 2.647-2.646 2.646c-.195.195-.195.513 0 .707.097.098.225.147.353.147s.256-.049.354-.146l2.646-2.647 2.646 2.646c.098.098.226.147.354.147s.256-.049.354-.146c.194-.194.194-.512 0-.707l-2.647-2.647z" + }, + "children": [] + }] +}; +exports.deleteOutline = deleteOutline; +var deleteIconic = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 4c-4.419 0-8 3.582-8 8s3.581 8 8 8 8-3.582 8-8-3.581-8-8-8zm3.707 10.293c.391.391.391 1.023 0 1.414-.195.195-.451.293-.707.293s-.512-.098-.707-.293l-2.293-2.293-2.293 2.293c-.195.195-.451.293-.707.293s-.512-.098-.707-.293c-.391-.391-.391-1.023 0-1.414l2.293-2.293-2.293-2.293c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l2.293 2.293 2.293-2.293c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-2.293 2.293 2.293 2.293z" + }, + "children": [] + }] +}; +exports.deleteIconic = deleteIconic; +var deviceDesktop = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M21 1h-18c-1.654 0-3 1.346-3 3v11c0 1.654 1.346 3 3 3h6v2h-3c-.552 0-1 .448-1 1s.448 1 1 1h12c.552 0 1-.448 1-1s-.448-1-1-1h-3v-2h6c1.654 0 3-1.346 3-3v-11c0-1.654-1.346-3-3-3zm-7 19h-4v-2h4v2zm8-5c0 .551-.449 1-1 1h-18c-.551 0-1-.449-1-1v-11c0-.551.449-1 1-1h18c.551 0 1 .449 1 1v11zM20 4h-16c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1h16c.55 0 1-.45 1-1v-8c0-.55-.45-1-1-1zm0 9h-16v-8h16v8z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21 1h-18c-1.654 0-3 1.346-3 3v11c0 1.654 1.346 3 3 3h6v2h-3c-.552 0-1 .448-1 1s.448 1 1 1h12c.552 0 1-.448 1-1s-.448-1-1-1h-3v-2h6c1.654 0 3-1.346 3-3v-11c0-1.654-1.346-3-3-3zm-7 19h-4v-2h4v2zm8-5c0 .551-.449 1-1 1h-18c-.551 0-1-.449-1-1v-11c0-.551.449-1 1-1h18c.551 0 1 .449 1 1v11zM20 4h-16c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1h16c.55 0 1-.45 1-1v-8c0-.55-.45-1-1-1zm0 9h-16v-8h16v8z" + }, + "children": [] + }] + }] + }] +}; +exports.deviceDesktop = deviceDesktop; +var deviceLaptop = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M21.989 16.049c.009-.315.011-.657.011-1.049v-9c0-1.654-1.346-3-3-3h-14c-1.654 0-3 1.346-3 3v9c0 .385.002.73.012 1.049-1.145.228-2.012 1.24-2.012 2.451 0 1.378 1.122 2.5 2.5 2.5h19c1.378 0 2.5-1.122 2.5-2.5 0-1.211-.866-2.222-2.011-2.451zm-17.989-10.049c0-.551.449-1 1-1h14c.551 0 1 .449 1 1v9c0 .388-.005.726-.014 1h-.986v-9c0-.55-.45-1-1-1h-12c-.55 0-1 .45-1 1v9h-.98c-.012-.264-.02-.599-.02-1v-9zm14 10h-12v-9h12v9zm3.5 3h-19c-.271 0-.5-.229-.5-.5s.229-.5.5-.5h19c.271 0 .5.229.5.5s-.229.5-.5.5z" + }, + "children": [] + }] +}; +exports.deviceLaptop = deviceLaptop; +var devicePhone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M15 3h-7c-1.654 0-3 1.346-3 3v12c0 1.654 1.346 3 3 3h7c1.654 0 3-1.346 3-3v-12c0-1.654-1.346-3-3-3zm1 15c0 .551-.449 1-1 1h-7c-.551 0-1-.449-1-1v-12c0-.551.449-1 1-1h7c.551 0 1 .449 1 1v12zM14 6h-5c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h1.5c0 .553.448 1 1 1s1-.447 1-1h1.5c.55 0 1-.45 1-1v-9c0-.55-.45-1-1-1zm0 10h-5v-9h5v9z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15 3h-7c-1.654 0-3 1.346-3 3v12c0 1.654 1.346 3 3 3h7c1.654 0 3-1.346 3-3v-12c0-1.654-1.346-3-3-3zm1 15c0 .551-.449 1-1 1h-7c-.551 0-1-.449-1-1v-12c0-.551.449-1 1-1h7c.551 0 1 .449 1 1v12zM14 6h-5c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h1.5c0 .553.448 1 1 1s1-.447 1-1h1.5c.55 0 1-.45 1-1v-9c0-.55-.45-1-1-1zm0 10h-5v-9h5v9z" + }, + "children": [] + }] + }] + }] +}; +exports.devicePhone = devicePhone; +var deviceTablet = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M17 4h-9c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h3.5c0 .553.448 1 1 1s1-.447 1-1h3.5c.55 0 1-.45 1-1v-12c0-.55-.45-1-1-1zm0 13h-9v-12h9v12zM18 1h-11c-1.654 0-3 1.346-3 3v15c0 1.654 1.346 3 3 3h11c1.654 0 3-1.346 3-3v-15c0-1.654-1.346-3-3-3zm1 18c0 .551-.449 1-1 1h-11c-.551 0-1-.449-1-1v-15c0-.551.449-1 1-1h11c.551 0 1 .449 1 1v15z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17 4h-9c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h3.5c0 .553.448 1 1 1s1-.447 1-1h3.5c.55 0 1-.45 1-1v-12c0-.55-.45-1-1-1zm0 13h-9v-12h9v12zM18 1h-11c-1.654 0-3 1.346-3 3v15c0 1.654 1.346 3 3 3h11c1.654 0 3-1.346 3-3v-15c0-1.654-1.346-3-3-3zm1 18c0 .551-.449 1-1 1h-11c-.551 0-1-.449-1-1v-15c0-.551.449-1 1-1h11c.551 0 1 .449 1 1v15z" + }, + "children": [] + }] + }] + }] +}; +exports.deviceTablet = deviceTablet; +var directions = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M20.908 9.5l-2.754-2.607c-.568-.541-1.447-.893-2.237-.893h-2.917v-.5c0-.828-.672-1.5-1.5-1.5s-1.5.672-1.5 1.5v.5h-3.5c-1.93 0-3.5 1.57-3.5 3.5 0 1.396.828 2.596 2.016 3.157l-1.844 1.843 2.561 2.561c.57.57 1.46.939 2.268.939h2.2l.8 4h1l.8-4h2.7c1.931 0 3.5-1.57 3.5-3.5 0-.902-.353-1.718-.915-2.339l.072-.056 2.75-2.605zm-5.408 6.5h-7.5c-.275 0-.658-.158-.854-.354l-1.146-1.146 1.146-1.146c.195-.195.577-.354.854-.354h7.5c.828 0 1.5.672 1.5 1.5s-.672 1.5-1.5 1.5zm1.279-5.344c-.199.19-.586.344-.862.344h-9.417c-.828 0-1.5-.672-1.5-1.5s.672-1.5 1.5-1.5h9.417c.276 0 .663.154.862.344l1.221 1.156-1.221 1.156z" + }, + "children": [] + }] +}; +exports.directions = directions; +var divideOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 8.5c-1.654 0-3-1.346-3-3s1.346-3 3-3 3 1.346 3 3-1.346 3-3 3zm0-4c-.552 0-1 .449-1 1s.448 1 1 1 1-.449 1-1-.448-1-1-1zM12 21.5c-1.654 0-3-1.346-3-3s1.346-3 3-3 3 1.346 3 3-1.346 3-3 3zm0-4c-.552 0-1 .449-1 1s.448 1 1 1 1-.449 1-1-.448-1-1-1zM18 15h-12c-1.654 0-3-1.346-3-3s1.346-3 3-3h12c1.654 0 3 1.346 3 3s-1.346 3-3 3zm-12-4c-.552 0-1 .449-1 1s.448 1 1 1h12c.552 0 1-.449 1-1s-.448-1-1-1h-12z" + }, + "children": [] + }] +}; +exports.divideOutline = divideOutline; +var divide = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "6", + "r": "2.25" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "18", + "r": "2.25" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 10h-12c-1.104 0-2 .896-2 2s.896 2 2 2h12c1.104 0 2-.896 2-2s-.896-2-2-2z" + }, + "children": [] + }] +}; +exports.divide = divide; +var documentAdd = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M15 12h-2v-2c0-.553-.447-1-1-1s-1 .447-1 1v2h-2c-.553 0-1 .447-1 1s.447 1 1 1h2v2c0 .553.447 1 1 1s1-.447 1-1v-2h2c.553 0 1-.447 1-1s-.447-1-1-1zM19.707 7.293l-4-4c-.187-.188-.441-.293-.707-.293h-8c-1.654 0-3 1.346-3 3v12c0 1.654 1.346 3 3 3h10c1.654 0 3-1.346 3-3v-10c0-.266-.105-.52-.293-.707zm-2.121.707h-1.086c-.827 0-1.5-.673-1.5-1.5v-1.086l2.586 2.586zm-.586 11h-10c-.552 0-1-.448-1-1v-12c0-.552.448-1 1-1h7v1.5c0 1.379 1.121 2.5 2.5 2.5h1.5v9c0 .552-.448 1-1 1z" + }, + "children": [] + }] +}; +exports.documentAdd = documentAdd; +var documentDelete = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M19.707 7.293l-4-4c-.187-.188-.441-.293-.707-.293h-8c-1.654 0-3 1.346-3 3v12c0 1.654 1.346 3 3 3h10c1.654 0 3-1.346 3-3v-10c0-.266-.105-.52-.293-.707zm-2.121.707h-1.086c-.827 0-1.5-.673-1.5-1.5v-1.086l2.586 2.586zm-.586 11h-10c-.552 0-1-.448-1-1v-12c0-.552.448-1 1-1h7v1.5c0 1.379 1.121 2.5 2.5 2.5h1.5v9c0 .552-.448 1-1 1zM15 14h-6c-.553 0-1-.447-1-1s.447-1 1-1h6c.553 0 1 .447 1 1s-.447 1-1 1z" + }, + "children": [] + }] +}; +exports.documentDelete = documentDelete; +var documentText = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M17 21h-10c-1.654 0-3-1.346-3-3v-12c0-1.654 1.346-3 3-3h10c1.654 0 3 1.346 3 3v12c0 1.654-1.346 3-3 3zm-10-16c-.551 0-1 .449-1 1v12c0 .551.449 1 1 1h10c.551 0 1-.449 1-1v-12c0-.551-.449-1-1-1h-10zM16 11h-8c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h8c.276 0 .5.224.5.5s-.224.5-.5.5zM16 8h-8c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h8c.276 0 .5.224.5.5s-.224.5-.5.5zM16 14h-8c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h8c.276 0 .5.224.5.5s-.224.5-.5.5zM16 17h-8c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h8c.276 0 .5.224.5.5s-.224.5-.5.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17 21h-10c-1.654 0-3-1.346-3-3v-12c0-1.654 1.346-3 3-3h10c1.654 0 3 1.346 3 3v12c0 1.654-1.346 3-3 3zm-10-16c-.551 0-1 .449-1 1v12c0 .551.449 1 1 1h10c.551 0 1-.449 1-1v-12c0-.551-.449-1-1-1h-10zM16 11h-8c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h8c.276 0 .5.224.5.5s-.224.5-.5.5zM16 8h-8c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h8c.276 0 .5.224.5.5s-.224.5-.5.5zM16 14h-8c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h8c.276 0 .5.224.5.5s-.224.5-.5.5zM16 17h-8c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h8c.276 0 .5.224.5.5s-.224.5-.5.5z" + }, + "children": [] + }] + }] + }] +}; +exports.documentText = documentText; +var documentIcon = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M19.707 7.293l-4-4c-.187-.188-.441-.293-.707-.293h-8c-1.654 0-3 1.346-3 3v12c0 1.654 1.346 3 3 3h10c1.654 0 3-1.346 3-3v-10c0-.266-.105-.52-.293-.707zm-2.121.707h-1.086c-.827 0-1.5-.673-1.5-1.5v-1.086l2.586 2.586zm-.586 11h-10c-.552 0-1-.448-1-1v-12c0-.552.448-1 1-1h7v1.5c0 1.379 1.121 2.5 2.5 2.5h1.5v9c0 .552-.448 1-1 1z" + }, + "children": [] + }] +}; +exports.documentIcon = documentIcon; +var downloadOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M20.986 17c0-.105-.004-.211-.038-.316l-2-6c-.136-.409-.516-.684-.948-.684h-.561l.682-.678c1.17-1.17 1.17-3.072 0-4.242-.81-.812-2.068-1.078-3.121-.709v-1.371c0-1.654-1.346-3-3-3s-3 1.346-3 3v1.371c-1.052-.369-2.311-.103-3.121.709-1.17 1.17-1.17 3.072.002 4.244l.68.676h-.561c-.432 0-.812.275-.948.684l-2 6c-.034.105-.038.211-.038.316-.014 0-.014 5-.014 5 0 .553.447 1 1 1h16c.553 0 1-.447 1-1 0 0 0-5-.014-5zm-13.693-10.506c.189-.187.439-.293.707-.293s.518.104.707.293l2.293 2.293v-5.787c0-.552.448-1 1-1s1 .448 1 1v5.787l2.293-2.293c.379-.377 1.035-.377 1.414 0 .391.39.391 1.023.002 1.412l-4.709 4.684-4.707-4.682c-.391-.388-.391-1.024 0-1.414zm-.572 5.506h1.852l3.429 3.41 3.428-3.41h1.852l1.667 5h-13.894l1.666-5zm12.279 9h-14v-3h14v3z" + }, + "children": [] + }] +}; +exports.downloadOutline = downloadOutline; +var download = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M16.707 7.404c-.189-.188-.448-.283-.707-.283s-.518.095-.707.283l-2.293 2.293v-6.697c0-.552-.448-1-1-1s-1 .448-1 1v6.697l-2.293-2.293c-.189-.188-.44-.293-.707-.293s-.518.105-.707.293c-.39.39-.39 1.024 0 1.414l4.707 4.682 4.709-4.684c.388-.387.388-1.022-.002-1.412zM20.987 16c0-.105-.004-.211-.039-.316l-2-6c-.136-.409-.517-.684-.948-.684h-.219c-.094.188-.21.368-.367.525l-1.482 1.475h1.348l1.667 5h-13.893l1.667-5h1.348l-1.483-1.475c-.157-.157-.274-.337-.367-.525h-.219c-.431 0-.812.275-.948.684l-2 6c-.035.105-.039.211-.039.316-.013 0-.013 5-.013 5 0 .553.447 1 1 1h16c.553 0 1-.447 1-1 0 0 0-5-.013-5z" + }, + "children": [] + }] +}; +exports.download = download; +var dropbox = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M3 12.9l5.3 3.5 3.7-3.1-5.3-3.3zM8.3 3.6l-5.3 3.5 3.7 2.9 5.3-3.3zM21 7.1l-5.3-3.5-3.7 3.1 5.3 3.3zM12 13.3l3.7 3.1 5.3-3.5-3.7-2.9zM12 14.5l-3.7 3.1-1.6-1.1v1.2l5.3 3.2 5.3-3.2v-1.2l-1.6 1.1z" + }, + "children": [] + }] +}; +exports.dropbox = dropbox; +var edit = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M21.561 5.318l-2.879-2.879c-.293-.293-.677-.439-1.061-.439-.385 0-.768.146-1.061.439l-3.56 3.561h-9c-.552 0-1 .447-1 1v13c0 .553.448 1 1 1h13c.552 0 1-.447 1-1v-9l3.561-3.561c.293-.293.439-.677.439-1.061s-.146-.767-.439-1.06zm-10.061 9.354l-2.172-2.172 6.293-6.293 2.172 2.172-6.293 6.293zm-2.561-1.339l1.756 1.728-1.695-.061-.061-1.667zm7.061 5.667h-11v-11h6l-3.18 3.18c-.293.293-.478.812-.629 1.289-.16.5-.191 1.056-.191 1.47v3.061h3.061c.414 0 1.108-.1 1.571-.29.464-.19.896-.347 1.188-.64l3.18-3.07v6zm2.5-11.328l-2.172-2.172 1.293-1.293 2.171 2.172-1.292 1.293z" + }, + "children": [] + }] +}; +exports.edit = edit; +var ejectOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M16 8.551v-1.551c0-1.105-.896-2-2-2h-10v10c0 1.104.896 2 2 2h1.066c.893 2.887 3.646 5 6.809 5 3.859 0 7.062-3.016 7.062-6.875.001-3.161-2.068-5.74-4.937-6.574zm-8 1.862v3.243c0 .552-.448 1-1 1s-1-.448-1-1v-6.656h6.656c.552 0 1 .448 1 1s-.448 1-1 1h-3.243l4.801 4.799c.392.391.392 1.025.001 1.415-.189.188-.439.292-.708.292-.268 0-.519-.104-.707-.291l-4.8-4.802zm6 9.618c-2.757 0-5-2.26-5-5.016 0-.705-.004-1.371.21-1.979l2.883 2.884c.39.39.901.584 1.414.584s1.022-.194 1.414-.584c.781-.78.781-2.049 0-2.83l-2.567-2.567c.517-.226 1.065-.398 1.646-.398 2.757 0 5 2.182 5 4.938 0 2.757-2.243 4.968-5 4.968z" + }, + "children": [] + }] +}; +exports.ejectOutline = ejectOutline; +var eject = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M13 17.5c-2.481 0-4.5-2.019-4.5-4.5 0-.553-.447-1-1-1s-1 .447-1 1c0 3.584 2.916 6.5 6.5 6.5s6.5-2.916 6.5-6.5-2.916-6.5-6.5-6.5c-.553 0-1 .447-1 1s.447 1 1 1c2.481 0 4.5 2.019 4.5 4.5s-2.019 4.5-4.5 4.5zM10.656 4c.552 0 1 .448 1 1s-.448 1-1 1h-3.243l1.708 1.707 4.093 4.092c.391.391.391 1.025.001 1.415-.189.188-.44.292-.708.292s-.519-.104-.707-.291l-4.093-4.094-1.707-1.708v3.243c0 .552-.448 1-1 1s-1-.448-1-1v-6.656h6.656" + }, + "children": [] + }] +}; +exports.eject = eject; +var equalsOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18 12h-12c-1.654 0-3-1.346-3-3s1.346-3 3-3h12c1.654 0 3 1.346 3 3s-1.346 3-3 3zm-12-4c-.552 0-1 .449-1 1s.448 1 1 1h12c.552 0 1-.449 1-1s-.448-1-1-1h-12zM18 19h-12c-1.654 0-3-1.346-3-3s1.346-3 3-3h12c1.654 0 3 1.346 3 3s-1.346 3-3 3zm-12-4c-.552 0-1 .449-1 1s.448 1 1 1h12c.552 0 1-.449 1-1s-.448-1-1-1h-12z" + }, + "children": [] + }] +}; +exports.equalsOutline = equalsOutline; +var equals = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18 7h-12c-1.104 0-2 .896-2 2s.896 2 2 2h12c1.104 0 2-.896 2-2s-.896-2-2-2zM18 14h-12c-1.104 0-2 .896-2 2s.896 2 2 2h12c1.104 0 2-.896 2-2s-.896-2-2-2z" + }, + "children": [] + }] +}; +exports.equals = equals; +var exportOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M22.711 9.796c-.041-.041-4.055-4.096-5.982-6.146-.42-.414-.999-.65-1.586-.65-1.182 0-2.143.896-2.143 2h-8c-.553 0-1 .448-1 1v14c0 .552.447 1 1 1h14c.553 0 1-.448 1-1v-6.045c1.434-1.461 2.688-2.729 2.711-2.751.387-.39.387-1.018 0-1.408zm-7.432 6.145l-.136.059-.144-.04v-3.96h-1c-1.771.034-3.336.68-4.753 1.958.43-2.215 1.6-4.958 4.753-4.958h1v-3.958l.144-.042.154.05c1.436 1.525 4.051 4.187 5.297 5.45-.253.257-4.342 4.422-5.315 5.441zm-9.279 3.059v-12h8v1c-4.66 0-6 4.871-6 8.5v.5c1.691-2.578 3.6-3.953 6-4v3c0 .551.512 1 1.143 1 .364 0 .676-.158.883-.391.539-.565 1.242-1.291 1.976-2.043v4.434h-12.002z" + }, + "children": [] + }] +}; +exports.exportOutline = exportOutline; +var exportIcon = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M8 16.5v.5c1.691-2.578 3.6-3.953 6-4v3c0 .551.511 1 1.143 1 .364 0 .675-.158.883-.391 1.933-2.029 5.974-6.109 5.974-6.109s-4.041-4.082-5.975-6.137c-.208-.205-.518-.363-.882-.363-.632 0-1.143.447-1.143 1v3c-4.66 0-6 4.871-6 8.5zM5 21h14c.553 0 1-.448 1-1v-6.046c-.664.676-1.364 1.393-2 2.047v2.999h-12v-12h7v-2h-8c-.553 0-1 .448-1 1v14c0 .552.447 1 1 1z" + }, + "children": [] + }] +}; +exports.exportIcon = exportIcon; +var eyeOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 9c1.211 0 2.381.355 3.297 1.004 1.301.92 2.43 2.124 3.165 2.996-.735.872-1.864 2.077-3.166 2.996-.915.649-2.085 1.004-3.296 1.004s-2.382-.355-3.299-1.004c-1.301-.92-2.43-2.124-3.164-2.996.734-.872 1.863-2.076 3.164-2.995.917-.65 2.088-1.005 3.299-1.005m0-2c-1.691 0-3.242.516-4.453 1.371-2.619 1.852-4.547 4.629-4.547 4.629s1.928 2.777 4.547 4.629c1.211.855 2.762 1.371 4.453 1.371s3.242-.516 4.451-1.371c2.619-1.852 4.549-4.629 4.549-4.629s-1.93-2.777-4.549-4.629c-1.209-.855-2.76-1.371-4.451-1.371zM12 12c-.553 0-1 .447-1 1 0 .551.447 1 1 1 .551 0 1-.449 1-1 0-.553-.449-1-1-1zM12 16c-1.654 0-3-1.346-3-3s1.346-3 3-3 3 1.346 3 3-1.346 3-3 3zm0-5c-1.104 0-2 .896-2 2s.896 2 2 2 2-.896 2-2-.896-2-2-2z" + }, + "children": [] + }] +}; +exports.eyeOutline = eyeOutline; +var eye = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M21.821 12.43c-.083-.119-2.062-2.944-4.793-4.875-1.416-1.003-3.202-1.555-5.028-1.555-1.825 0-3.611.552-5.03 1.555-2.731 1.931-4.708 4.756-4.791 4.875-.238.343-.238.798 0 1.141.083.119 2.06 2.944 4.791 4.875 1.419 1.002 3.205 1.554 5.03 1.554 1.826 0 3.612-.552 5.028-1.555 2.731-1.931 4.71-4.756 4.793-4.875.239-.342.239-.798 0-1.14zm-9.821 4.07c-1.934 0-3.5-1.57-3.5-3.5 0-1.934 1.566-3.5 3.5-3.5 1.93 0 3.5 1.566 3.5 3.5 0 1.93-1.57 3.5-3.5 3.5zM14 13c0 1.102-.898 2-2 2-1.105 0-2-.898-2-2 0-1.105.895-2 2-2 1.102 0 2 .895 2 2z" + }, + "children": [] + }] +}; +exports.eye = eye; +var feather = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M11.68 1.017l-.18-.034-.18.033c-4.821.884-8.32 5.084-8.32 9.984 0 4.617 3.108 8.61 7.5 9.795v1.205c0 .553.448 1 1 1s1-.447 1-1v-1.205c4.392-1.185 7.5-5.178 7.5-9.795 0-4.9-3.499-9.1-8.32-9.983zm.82 17.683v-11.7c0-.553-.448-1-1-1s-1 .447-1 1v11.7c-3.18-1.093-5.4-4.054-5.49-7.483l3.137 3.137c.097.097.225.146.353.146s.256-.049.354-.146c.195-.195.195-.512 0-.707l-3.769-3.769c.133-.964.434-1.877.877-2.709l2.184 2.185c.098.097.226.146.354.146s.256-.049.354-.146c.195-.195.195-.512 0-.707l-2.353-2.353c1.162-1.641 2.919-2.846 4.999-3.275 2.08.43 3.837 1.635 4.999 3.275l-2.353 2.353c-.195.195-.195.512 0 .707.098.097.226.146.354.146s.256-.049.354-.146l2.184-2.185c.444.832.744 1.745.877 2.709l-3.769 3.769c-.195.195-.195.512 0 .707.098.098.226.146.354.146s.256-.049.354-.146l3.137-3.137c-.091 3.429-2.311 6.39-5.491 7.483z" + }, + "children": [] + }] +}; +exports.feather = feather; +var film = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M8 8v7h8v-7h-8zm7 6h-6v-5h6v5zM17 2h-3v2h-4v-2h-3c-1.654 0-3 1.346-3 3v13c0 1.654 1.346 3 3 3h3v-2h4v2h3c1.654 0 3-1.346 3-3v-13c0-1.654-1.346-3-3-3zm1 4c-.553 0-1 .447-1 1s.447 1 1 1v1c-.553 0-1 .447-1 1s.447 1 1 1v1c-.553 0-1 .447-1 1s.447 1 1 1v1c-.553 0-1 .447-1 1s.447 1 1 1v1c0 .551-.448 1-1 1h-1v-2h-8v2h-1c-.552 0-1-.449-1-1v-1c.553 0 1-.447 1-1s-.447-1-1-1v-1c.553 0 1-.447 1-1s-.447-1-1-1v-1c.553 0 1-.447 1-1s-.447-1-1-1v-1c.553 0 1-.447 1-1s-.447-1-1-1v-1c0-.551.448-1 1-1h1v2h8v-2h1c.552 0 1 .449 1 1v1z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M8 8v7h8v-7h-8zm7 6h-6v-5h6v5zM17 2h-3v2h-4v-2h-3c-1.654 0-3 1.346-3 3v13c0 1.654 1.346 3 3 3h3v-2h4v2h3c1.654 0 3-1.346 3-3v-13c0-1.654-1.346-3-3-3zm1 4c-.553 0-1 .447-1 1s.447 1 1 1v1c-.553 0-1 .447-1 1s.447 1 1 1v1c-.553 0-1 .447-1 1s.447 1 1 1v1c-.553 0-1 .447-1 1s.447 1 1 1v1c0 .551-.448 1-1 1h-1v-2h-8v2h-1c-.552 0-1-.449-1-1v-1c.553 0 1-.447 1-1s-.447-1-1-1v-1c.553 0 1-.447 1-1s-.447-1-1-1v-1c.553 0 1-.447 1-1s-.447-1-1-1v-1c.553 0 1-.447 1-1s-.447-1-1-1v-1c0-.551.448-1 1-1h1v2h8v-2h1c.552 0 1 .449 1 1v1z" + }, + "children": [] + }] + }] + }] +}; +exports.film = film; +var filter = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M19 6h-14c-1.1 0-1.4.6-.6 1.4l4.2 4.2c.8.8 1.4 2.3 1.4 3.4v5l4-2v-3.5c0-.8.6-2.1 1.4-2.9l4.2-4.2c.8-.8.5-1.4-.6-1.4z" + }, + "children": [] + }] +}; +exports.filter = filter; +var flagOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.383 4.318c-.374-.155-.804-.069-1.09.217-1.264 1.263-3.321 1.264-4.586 0-2.045-2.043-5.37-2.043-7.414 0-.188.187-.293.442-.293.707v13c0 .552.448 1 1 1s1-.448 1-1v-4.553c1.271-.997 3.121-.911 4.293.26 2.045 2.043 5.371 2.043 7.414 0 .188-.188.293-.442.293-.707v-8c0-.405-.244-.769-.617-.924zm-7.09 1.631c1.54 1.539 3.808 1.918 5.707 1.138v2.311c-1.446.916-3.387.749-4.646-.51-1.448-1.447-3.598-1.743-5.354-.927v-2.272c1.271-.997 3.121-.912 4.293.26zm1.414 6.585c-1.022-1.021-2.365-1.532-3.707-1.532-.681 0-1.361.131-2 .394v-2.311c1.446-.916 3.387-.749 4.646.51.925.924 2.139 1.386 3.354 1.386.687 0 1.366-.164 2-.459v2.272c-1.272.997-3.122.911-4.293-.26z" + }, + "children": [] + }] +}; +exports.flagOutline = flagOutline; +var flag = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.383 4.318c-.374-.155-.804-.069-1.09.217-1.264 1.263-3.321 1.264-4.586 0-2.045-2.043-5.37-2.043-7.414 0-.188.187-.293.442-.293.707v13c0 .552.447 1 1 1s1-.448 1-1v-4.553c1.271-.997 3.121-.911 4.293.26 2.045 2.043 5.371 2.043 7.414 0 .188-.188.293-.442.293-.707v-8c0-.405-.244-.769-.617-.924z" + }, + "children": [] + }] +}; +exports.flag = flag; +var flashOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M14.5 4h.005m-.005 0l-2.5 6 5 2.898-7.5 7.102 2.5-6-5-2.9 7.5-7.1m0-2c-.562.012-1.029.219-1.379.551l-7.497 7.095c-.458.435-.685 1.059-.61 1.686.072.626.437 1.182.982 1.498l3.482 2.021-1.826 4.381c-.362.871-.066 1.879.712 2.416.344.236.739.354 1.135.354.498 0 .993-.186 1.375-.548l7.5-7.103c.458-.434.685-1.058.61-1.685-.073-.627-.438-1.183-.982-1.498l-3.482-2.018 1.789-4.293c.123-.26.192-.551.192-.857 0-1.102-.89-1.996-2.001-2z" + }, + "children": [] + }] +}; +exports.flashOutline = flashOutline; +var flash = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M17.502 12.033l-4.241-2.458 2.138-5.131c.066-.134.103-.285.103-.444 0-.552-.445-1-.997-1-.249.004-.457.083-.622.214l-.07.06-7.5 7.1c-.229.217-.342.529-.306.842.036.313.219.591.491.75l4.242 2.46-2.163 5.19c-.183.436-.034.94.354 1.208.173.118.372.176.569.176.248 0 .496-.093.688-.274l7.5-7.102c.229-.217.342-.529.306-.842-.037-.313-.22-.591-.492-.749z" + }, + "children": [] + }] +}; +exports.flash = flash; +var flowChildren = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M17 16c-1.305 0-2.403.837-2.816 2h-3.184c-1.654 0-3-1.346-3-3v-3.025c.838.634 1.87 1.025 3 1.025h3.184c.413 1.163 1.512 2 2.816 2 1.657 0 3-1.343 3-3s-1.343-3-3-3c-1.305 0-2.403.837-2.816 2h-3.184c-1.654 0-3-1.346-3-3v-.184c1.163-.413 2-1.512 2-2.816 0-1.657-1.343-3-3-3s-3 1.343-3 3c0 1.304.837 2.403 2 2.816v7.184c0 2.757 2.243 5 5 5h3.184c.413 1.163 1.512 2 2.816 2 1.657 0 3-1.343 3-3s-1.343-3-3-3zm0-5c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm-10-7c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm10 16c-.552 0-1-.449-1-1s.448-1 1-1 1 .449 1 1-.448 1-1 1z" + }, + "children": [] + }] +}; +exports.flowChildren = flowChildren; +var flowMerge = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18 16.184v-1.851c0-1.93-1.57-3.5-3.5-3.5-.827 0-1.5-.673-1.5-1.5v-1.517c1.161-.415 2-1.514 2-2.816 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.401 2 2.815v1.518c0 .827-.673 1.5-1.5 1.5-1.93 0-3.5 1.57-3.5 3.5v1.851c-1.161.415-2 1.514-2 2.816 0 1.654 1.346 3 3 3s3-1.346 3-3c0-1.302-.839-2.401-2-2.816v-1.851c0-.827.673-1.5 1.5-1.5.979 0 1.864-.407 2.5-1.058.636.651 1.521 1.058 2.5 1.058.827 0 1.5.673 1.5 1.5v1.851c-1.161.415-2 1.514-2 2.816 0 1.654 1.346 3 3 3s3-1.346 3-3c0-1.302-.839-2.401-2-2.816zm-11 3.816c-.552 0-1-.449-1-1s.448-1 1-1 1 .449 1 1-.448 1-1 1zm5-16c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm5 16c-.552 0-1-.449-1-1s.448-1 1-1 1 .449 1 1-.448 1-1 1z" + }, + "children": [] + }] +}; +exports.flowMerge = flowMerge; +var flowParallel = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M18 16.184v-8.368c1.161-.415 2-1.514 2-2.816 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.401 2 2.815v8.369c-1.161.415-2 1.514-2 2.816 0 1.654 1.346 3 3 3s3-1.346 3-3c0-1.302-.839-2.401-2-2.816zm-1-12.184c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm0 16c-.552 0-1-.449-1-1s.448-1 1-1 1 .449 1 1-.448 1-1 1zM10 5c0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.401 2 2.815v8.369c-1.161.415-2 1.514-2 2.816 0 1.654 1.346 3 3 3s3-1.346 3-3c0-1.302-.839-2.401-2-2.816v-8.368c1.161-.415 2-1.514 2-2.816zm-3-1c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm0 16c-.552 0-1-.449-1-1s.448-1 1-1 1 .449 1 1-.448 1-1 1z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M18 16.184v-8.368c1.161-.415 2-1.514 2-2.816 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.401 2 2.815v8.369c-1.161.415-2 1.514-2 2.816 0 1.654 1.346 3 3 3s3-1.346 3-3c0-1.302-.839-2.401-2-2.816zm-1-12.184c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm0 16c-.552 0-1-.449-1-1s.448-1 1-1 1 .449 1 1-.448 1-1 1zM10 5c0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.401 2 2.815v8.369c-1.161.415-2 1.514-2 2.816 0 1.654 1.346 3 3 3s3-1.346 3-3c0-1.302-.839-2.401-2-2.816v-8.368c1.161-.415 2-1.514 2-2.816zm-3-1c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm0 16c-.552 0-1-.449-1-1s.448-1 1-1 1 .449 1 1-.448 1-1 1z" + }, + "children": [] + }] + }] + }] +}; +exports.flowParallel = flowParallel; +var flowSwitch = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M8 16.184v-.684c0-.848.512-1.595 1.287-2.047-.667-.282-1.279-.667-1.822-1.131-.904.814-1.465 1.938-1.465 3.178v.684c-1.161.415-2 1.514-2 2.816 0 1.654 1.346 3 3 3s3-1.346 3-3c0-1.302-.839-2.401-2-2.816zm-1 3.816c-.552 0-1-.449-1-1s.448-1 1-1 1 .449 1 1-.448 1-1 1zM16 7.815v.351c0 .985-.535 1.852-1.345 2.36.665.274 1.279.646 1.823 1.1.936-.878 1.522-2.102 1.522-3.459v-.351c1.161-.415 2-1.514 2-2.816 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.401 2 2.815zm1-3.815c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zM17.935 16.164c-.41-2.913-2.911-5.164-5.935-5.164-1.936 0-3.552-1.381-3.92-3.209 1.12-.436 1.92-1.519 1.92-2.791 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.326.87 2.44 2.065 2.836.41 2.913 2.911 5.164 5.935 5.164 1.936 0 3.552 1.381 3.92 3.209-1.12.436-1.92 1.519-1.92 2.791 0 1.654 1.346 3 3 3s3-1.346 3-3c0-1.326-.87-2.44-2.065-2.836zm-10.935-12.164c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm10 16c-.552 0-1-.449-1-1s.448-1 1-1 1 .449 1 1-.448 1-1 1z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M8 16.184v-.684c0-.848.512-1.595 1.287-2.047-.667-.282-1.279-.667-1.822-1.131-.904.814-1.465 1.938-1.465 3.178v.684c-1.161.415-2 1.514-2 2.816 0 1.654 1.346 3 3 3s3-1.346 3-3c0-1.302-.839-2.401-2-2.816zm-1 3.816c-.552 0-1-.449-1-1s.448-1 1-1 1 .449 1 1-.448 1-1 1zM16 7.815v.351c0 .985-.535 1.852-1.345 2.36.665.274 1.279.646 1.823 1.1.936-.878 1.522-2.102 1.522-3.459v-.351c1.161-.415 2-1.514 2-2.816 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.401 2 2.815zm1-3.815c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zM17.935 16.164c-.41-2.913-2.911-5.164-5.935-5.164-1.936 0-3.552-1.381-3.92-3.209 1.12-.436 1.92-1.519 1.92-2.791 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.326.87 2.44 2.065 2.836.41 2.913 2.911 5.164 5.935 5.164 1.936 0 3.552 1.381 3.92 3.209-1.12.436-1.92 1.519-1.92 2.791 0 1.654 1.346 3 3 3s3-1.346 3-3c0-1.326-.87-2.44-2.065-2.836zm-10.935-12.164c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm10 16c-.552 0-1-.449-1-1s.448-1 1-1 1 .449 1 1-.448 1-1 1z" + }, + "children": [] + }] + }] + }] +}; +exports.flowSwitch = flowSwitch; +var folderAdd = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18 6h-6c0-1.104-.896-2-2-2h-4c-1.654 0-3 1.346-3 3v10c0 1.654 1.346 3 3 3h12c1.654 0 3-1.346 3-3v-8c0-1.654-1.346-3-3-3zm0 12h-12c-.552 0-1-.448-1-1v-7h4c.275 0 .5-.225.5-.5s-.225-.5-.5-.5h-4v-2c0-.552.448-1 1-1h4c0 1.104.896 2 2 2h6c.552 0 1 .448 1 1h-4c-.275 0-.5.225-.5.5s.225.5.5.5h4v7c0 .552-.448 1-1 1zM15 12h-2v-2c0-.553-.447-1-1-1s-1 .447-1 1v2h-2c-.553 0-1 .447-1 1s.447 1 1 1h2v2c0 .553.447 1 1 1s1-.447 1-1v-2h2c.553 0 1-.447 1-1s-.447-1-1-1z" + }, + "children": [] + }] +}; +exports.folderAdd = folderAdd; +var folderDelete = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18 6h-6c0-1.104-.896-2-2-2h-4c-1.654 0-3 1.346-3 3v10c0 1.654 1.346 3 3 3h12c1.654 0 3-1.346 3-3v-8c0-1.654-1.346-3-3-3zm-12 0h4c0 1.104.896 2 2 2h6c.552 0 1 .448 1 1h-14v-2c0-.552.448-1 1-1zm12 12h-12c-.552 0-1-.448-1-1v-7h14v7c0 .552-.448 1-1 1zM15 14h-6c-.553 0-1-.447-1-1s.447-1 1-1h6c.553 0 1 .447 1 1s-.447 1-1 1z" + }, + "children": [] + }] +}; +exports.folderDelete = folderDelete; +var folderOpen = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M22.3 8h-2.4c-.4-1.2-1.5-2-2.8-2h-6c0-1.1-.9-2-2-2h-4.1c-1.7 0-3 1.3-3 3v10c0 1.7 1.3 3 3 3h12c1.7 0 3.4-1.3 3.8-3l2.2-8c.1-.6-.2-1-.7-1zm-18.3 1v-2c0-.6.4-1 1-1h4c0 1.1.9 2 2 2h6c.6 0 1 .4 1 1h-11.1c-.6 0-1.1.4-1.3 1l-1.6 6.3v-7.3zm14.9 7.5c-.2.8-1.1 1.5-1.9 1.5h-12s-.4-.2-.2-.8l1.9-7c0-.1.2-.2.3-.2h13.7l-1.8 6.5z" + }, + "children": [] + }] +}; +exports.folderOpen = folderOpen; +var folder = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18 6h-6c0-1.104-.896-2-2-2h-4c-1.654 0-3 1.346-3 3v10c0 1.654 1.346 3 3 3h12c1.654 0 3-1.346 3-3v-8c0-1.654-1.346-3-3-3zm-12 0h4c0 1.104.896 2 2 2h6c.552 0 1 .448 1 1h-14v-2c0-.552.448-1 1-1zm12 12h-12c-.552 0-1-.448-1-1v-7h14v7c0 .552-.448 1-1 1z" + }, + "children": [] + }] +}; +exports.folder = folder; +var gift = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M19 8h-2.352c.219-.457.352-.961.352-1.5 0-1.93-1.57-3.5-3.5-3.5-.979 0-1.864.407-2.5 1.058-.636-.651-1.521-1.058-2.5-1.058-1.93 0-3.5 1.57-3.5 3.5 0 .539.133 1.043.352 1.5h-2.352c-.553 0-1 .448-1 1v4c0 .552.447 1 1 1v5c0 1.654 1.346 3 3 3h10c1.654 0 3-1.346 3-3v-5c.553 0 1-.448 1-1v-4c0-.552-.447-1-1-1zm-1 4h-5v-2h5v2zm-8-5h2v1h-2v-1zm2 3v2h-2v-2h2zm1.5-5c.827 0 1.5.673 1.5 1.5s-.673 1.5-1.5 1.5c-.177 0-.344-.039-.5-.097v-.903c0-.521-.404-.937-.913-.982.202-.59.756-1.018 1.413-1.018zm-6.5 1.5c0-.827.673-1.5 1.5-1.5.657 0 1.211.428 1.413 1.018-.509.045-.913.461-.913.982v.903c-.156.058-.323.097-.5.097-.827 0-1.5-.673-1.5-1.5zm2 3.5v2h-5v-2h5zm-3 10c-.551 0-1-.449-1-1v-6h4v7h-3zm4 0v-7h2v7h-2zm6 0h-3v-7h4v6c0 .551-.449 1-1 1z" + }, + "children": [] + }] +}; +exports.gift = gift; +var globeOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M11 6c2.206 0 4 1.794 4 4s-1.794 4-4 4c-2.204 0-3.998-1.794-3.998-4s1.794-4 3.998-4m0-2c-3.314 0-5.998 2.686-5.998 6s2.684 6 5.998 6c3.312 0 6-2.688 6-6 0-3.314-2.688-6-6-6zM17 20h-4v-1.23c1.641-.371 3.146-1.188 4.363-2.406 1.699-1.699 2.637-3.96 2.637-6.363 0-2.067-.691-4.028-1.968-5.619l.675-.673c.391-.391.391-1.023.001-1.415-.392-.392-1.024-.39-1.415-.001l-2.052 2.049.708.708c1.322 1.321 2.051 3.08 2.051 4.95s-.729 3.627-2.051 4.949-3.079 2.051-4.949 2.051-3.627-.729-4.949-2.051c-.391-.391-1.023-.391-1.414 0-.391.39-.391 1.023 0 1.414 1.699 1.699 3.959 2.637 6.363 2.637v1h-4c-.553 0-1 .447-1 1s.447 1 1 1h10c.553 0 1-.447 1-1s-.447-1-1-1z" + }, + "children": [] + }] +}; +exports.globeOutline = globeOutline; +var globe = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M11 20h-4c-.553 0-1 .447-1 1s.447 1 1 1h10c.553 0 1-.447 1-1s-.447-1-1-1h-4v-1.23c1.64-.371 3.146-1.188 4.363-2.406 1.7-1.7 2.637-3.96 2.637-6.364 0-2.067-.692-4.029-1.968-5.619l.675-.673c.391-.391.391-1.023.001-1.415-.391-.391-1.024-.39-1.415-.001l-2.052 2.049.708.708c1.322 1.322 2.051 3.081 2.051 4.951s-.729 3.627-2.051 4.949-3.079 2.051-4.949 2.051-3.627-.729-4.949-2.051c-.391-.391-1.023-.391-1.414 0-.391.39-.391 1.023 0 1.414 1.699 1.7 3.959 2.637 6.363 2.637v1zM11 4c1.657 0 3.157.672 4.243 1.757 1.085 1.086 1.757 2.586 1.757 4.243 0 1.656-.672 3.156-1.757 4.242-1.086 1.086-2.586 1.758-4.243 1.758-1.658 0-3.157-.672-4.242-1.757-1.085-1.086-1.756-2.586-1.756-4.243s.671-3.157 1.756-4.243c1.085-1.085 2.584-1.757 4.242-1.757z" + }, + "children": [] + }] +}; +exports.globe = globe; +var groupOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 14c2.764 0 5-2.238 5-5s-2.236-5-5-5-5 2.238-5 5 2.236 5 5 5zm0-8c1.654 0 3 1.346 3 3s-1.346 3-3 3-3-1.346-3-3 1.346-3 3-3zM20 15c1.381 0 2.5-1.117 2.5-2.5 0-1.381-1.119-2.5-2.5-2.5-1.382 0-2.5 1.119-2.5 2.5 0 1.383 1.118 2.5 2.5 2.5zm0-4c.827 0 1.5.673 1.5 1.5s-.673 1.5-1.5 1.5-1.5-.673-1.5-1.5.673-1.5 1.5-1.5zM20 15.59c-1.331 0-2.332.406-2.917.969-1.115-.918-2.878-1.559-5.083-1.559-2.266 0-3.995.648-5.092 1.564-.596-.565-1.608-.975-2.908-.975-2.188 0-3.5 1.091-3.5 2.183 0 .545 1.312 1.092 3.5 1.092.604 0 1.146-.051 1.623-.133l-.04.27c0 1 2.405 2 6.417 2 3.762 0 6.417-1 6.417-2l-.021-.255c.463.073.996.118 1.604.118 2.051 0 3.5-.547 3.5-1.092 0-1.092-1.373-2.182-3.5-2.182zm-16 2.273c-1.309 0-2.068-.207-2.417-.354.239-.405 1.003-.92 2.417-.92 1.107 0 1.837.351 2.208.706l-.235.344c-.452.119-1.108.224-1.973.224zm8 1.137c-2.163 0-3.501-.312-4.184-.561.521-.678 1.918-1.439 4.184-1.439 2.169 0 3.59.761 4.148 1.425-.755.27-2.162.575-4.148.575zm8-1.137c-.914 0-1.546-.103-1.973-.213-.072-.127-.155-.252-.248-.375.356-.345 1.071-.685 2.221-.685 1.324 0 2.141.501 2.404.911-.39.163-1.205.362-2.404.362zM4 15c1.381 0 2.5-1.119 2.5-2.5 0-1.379-1.119-2.5-2.5-2.5-1.382 0-2.5 1.121-2.5 2.5 0 1.381 1.118 2.5 2.5 2.5zm0-4c.827 0 1.5.673 1.5 1.5s-.673 1.5-1.5 1.5-1.5-.673-1.5-1.5.673-1.5 1.5-1.5z" + }, + "children": [] + }] +}; +exports.groupOutline = groupOutline; +var group = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 14c1.381 0 2.631-.56 3.536-1.465.904-.904 1.464-2.154 1.464-3.535s-.56-2.631-1.464-3.535c-.905-.905-2.155-1.465-3.536-1.465s-2.631.56-3.536 1.465c-.904.904-1.464 2.154-1.464 3.535s.56 2.631 1.464 3.535c.905.905 2.155 1.465 3.536 1.465zM20 15c.69 0 1.315-.279 1.768-.731.453-.452.732-1.077.732-1.769 0-.69-.279-1.315-.732-1.768-.453-.453-1.078-.732-1.768-.732-.691 0-1.316.279-1.769.732-.452.453-.731 1.078-.731 1.768 0 .691.279 1.316.731 1.769s1.078.731 1.769.731zM20 15.59c-1.331 0-2.332.406-2.917.968-1.115-.917-2.878-1.558-5.083-1.558-2.266 0-3.995.648-5.092 1.564-.596-.565-1.608-.974-2.908-.974-2.188 0-3.5 1.09-3.5 2.182 0 .545 1.312 1.092 3.5 1.092.604 0 1.146-.051 1.623-.133l-.04.27c0 1 2.406 2 6.417 2 3.762 0 6.417-1 6.417-2l-.02-.255c.463.073.995.118 1.603.118 2.051 0 3.5-.547 3.5-1.092 0-1.092-1.373-2.182-3.5-2.182zM4 15c.69 0 1.315-.279 1.768-.732.453-.453.732-1.078.732-1.768 0-.689-.279-1.314-.732-1.768-.453-.452-1.078-.732-1.768-.732-.691 0-1.316.28-1.769.732-.452.454-.731 1.079-.731 1.768 0 .69.279 1.315.731 1.768.453.453 1.078.732 1.769.732z" + }, + "children": [] + }] +}; +exports.group = group; +var headphones = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M21 13c0-4.963-4.037-9-9-9s-9 4.037-9 9v2.6l.023.113c-.013.243-.023.5-.023.787v2c0 1.93 1.57 3.5 3.5 3.5s3.5-1.57 3.5-3.5v-2c0-1.511-.83-2.79-1.982-3.278.095-2.122 1.837-3.823 3.982-3.823s3.887 1.7 3.982 3.822c-1.152.49-1.982 1.768-1.982 3.279v2c0 1.93 1.57 3.5 3.5 3.5s3.5-1.57 3.5-3.5v-2c0-.287-.01-.544-.023-.787l.023-.113v-2.6zm-16 0c0-1.586.538-3.046 1.432-4.221l.89.889c-.742.928-1.218 2.075-1.302 3.332-.02 0-.02 1-.02 1h-1v-1zm3 5.5c0 .827-.673 1.5-1.5 1.5s-1.5-.673-1.5-1.5v-2c0-.666.057-1.176.114-1.5h1.886c.473 0 1 .616 1 1.5v2zm7.77-9.338l-.354.354c-.912-.913-2.125-1.416-3.416-1.416s-2.504.503-3.417 1.416l-.354-.354-1.141-1.141-.627-.626c1.479-1.48 3.447-2.295 5.539-2.295 2.093 0 4.06.815 5.539 2.295l-.627.626-1.142 1.141zm3.23 9.338c0 .827-.673 1.5-1.5 1.5s-1.5-.673-1.5-1.5v-2c0-.884.527-1.5 1-1.5h1.886c.057.324.114.834.114 1.5v2zm0-4.5h-1v-1c-.104-1.257-.58-2.404-1.322-3.332l.891-.889c.893 1.175 1.431 2.634 1.431 4.221v1z" + }, + "children": [] + }] +}; +exports.headphones = headphones; +var heartFullOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M2.2 9.4c0 1.3.2 3.3 2 5.1 1.6 1.6 6.9 5.2 7.1 5.4.2.1.4.2.6.2s.4-.1.6-.2c.2-.2 5.5-3.7 7.1-5.4 1.8-1.8 2-3.8 2-5.1 0-3-2.4-5.4-5.4-5.4-1.6 0-3.2.9-4.2 2.3-1-1.4-2.6-2.3-4.4-2.3-2.9 0-5.4 2.4-5.4 5.4z" + }, + "children": [] + }] +}; +exports.heartFullOutline = heartFullOutline; +var heartHalfOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M2.2 9.4c0 1.3.2 3.3 2 5.1 1.6 1.6 6.9 5.2 7.1 5.4.2.1.4.2.6.2s.4-.1.6-.2c.2-.2 5.5-3.7 7.1-5.4 1.8-1.8 2-3.8 2-5.1 0-3-2.4-5.4-5.4-5.4-1.6 0-3.2.9-4.2 2.3-1-1.4-2.6-2.3-4.4-2.3-2.9 0-5.4 2.4-5.4 5.4zm9.8 1c.6 0 1-.4 1-1 0-1.9 1.5-3.4 3.4-3.4s3.4 1.5 3.4 3.4c0 1.1-.2 2.4-1.5 3.7-1.2 1.2-4.9 3.8-6.3 4.7v-7.4z" + }, + "children": [] + }] +}; +exports.heartHalfOutline = heartHalfOutline; +var heartOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 20c-.195 0-.391-.057-.561-.172-.225-.151-5.508-3.73-7.146-5.371-1.831-1.831-2.043-3.777-2.043-5.082 0-2.964 2.411-5.375 5.375-5.375 1.802 0 3.398.891 4.375 2.256.977-1.365 2.573-2.256 4.375-2.256 2.964 0 5.375 2.411 5.375 5.375 0 1.305-.212 3.251-2.043 5.082-1.641 1.641-6.923 5.22-7.146 5.371-.17.115-.366.172-.561.172zm-4.375-14c-1.861 0-3.375 1.514-3.375 3.375 0 1.093.173 2.384 1.457 3.668 1.212 1.212 4.883 3.775 6.293 4.746 1.41-.971 5.081-3.534 6.293-4.746 1.284-1.284 1.457-2.575 1.457-3.668 0-1.861-1.514-3.375-3.375-3.375s-3.375 1.514-3.375 3.375c0 .552-.447 1-1 1s-1-.448-1-1c0-1.861-1.514-3.375-3.375-3.375z" + }, + "children": [] + }] +}; +exports.heartOutline = heartOutline; +var heart = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 10.375c0-2.416-1.959-4.375-4.375-4.375s-4.375 1.959-4.375 4.375c0 1.127.159 2.784 1.75 4.375l7 5.25s5.409-3.659 7-5.25 1.75-3.248 1.75-4.375c0-2.416-1.959-4.375-4.375-4.375s-4.375 1.959-4.375 4.375" + }, + "children": [] + }] +}; +exports.heart = heart; +var homeOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M22.262 10.468c-3.39-2.854-9.546-8.171-9.607-8.225l-.655-.563-.652.563c-.062.053-6.221 5.368-9.66 8.248-.438.394-.688.945-.688 1.509 0 1.104.896 2 2 2h1v6c0 1.104.896 2 2 2h12c1.104 0 2-.896 2-2v-6h1c1.104 0 2-.896 2-2 0-.598-.275-1.161-.738-1.532zm-8.262 9.532h-4v-5h4v5zm4-8l.002 8h-3.002v-6h-6v6h-3v-8h-3.001c2.765-2.312 7.315-6.227 9.001-7.68 1.686 1.453 6.234 5.367 9 7.681l-3-.001z" + }, + "children": [] + }] +}; +exports.homeOutline = homeOutline; +var home = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 3s-6.186 5.34-9.643 8.232c-.203.184-.357.452-.357.768 0 .553.447 1 1 1h2v7c0 .553.447 1 1 1h3c.553 0 1-.448 1-1v-4h4v4c0 .552.447 1 1 1h3c.553 0 1-.447 1-1v-7h2c.553 0 1-.447 1-1 0-.316-.154-.584-.383-.768-3.433-2.892-9.617-8.232-9.617-8.232z" + }, + "children": [] + }] +}; +exports.home = home; +var html5 = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M13.1 3.5l.7 1.1.7-1.1v1.5h1v-3h-1l-.7 1.1-.6-1.1h-1.1v3h1zM18.4 5v-1h-1.4v-2h-1v3zM9.8 5h1v-2h.9v-1h-2.8v1h.9zM6.6 4h.9v1h1v-3h-1v1h-.9v-1h-1v3h1zM5 6l1.2 14.4 5.8 1.6 5.8-1.6 1.2-14.4h-14zm11.3 4.6h-6.8l.2 1.8h6.3999999999999995l-.5 5.5-3.6 1-3.6-1-.3-2.9h1.8l.1 1.5 2 .5 2-.5.2-2.3h-6.2l-.5-5.3h9l-.2 1.7z" + }, + "children": [] + }] +}; +exports.html5 = html5; +var imageOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M8.5 7.999c.827 0 1.5.673 1.5 1.5s-.673 1.5-1.5 1.5-1.5-.673-1.5-1.5.673-1.5 1.5-1.5m0-1c-1.381 0-2.5 1.119-2.5 2.5s1.119 2.5 2.5 2.5 2.5-1.119 2.5-2.5-1.119-2.5-2.5-2.5zM16 11.999c.45.051 1.27 1.804 1.779 4.001h-11.392c.434-1.034 1.055-2.001 1.612-2.001.806 0 1.125.185 1.53.42.447.258 1.006.58 1.97.58 1.138 0 1.942-.885 2.653-1.666.627-.687 1.218-1.334 1.848-1.334m0-1c-2 0-3 3-4.5 3s-1.499-1-3.5-1c-2 0-3.001 4-3.001 4h14.001s-1-6-3-6zM22 6c0-1.104-.896-2-2-2h-16c-1.104 0-2 .896-2 2v12c0 1.104.896 2 2 2h16c1.104 0 2-.896 2-2v-12zm-2 12h-16v-12h16.003l-.003 12z" + }, + "children": [] + }] +}; +exports.imageOutline = imageOutline; +var image = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "8.5", + "cy": "8.501", + "r": "2.5" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16 10c-2 0-3 3-4.5 3s-1.499-1-3.5-1c-2 0-3.001 4-3.001 4h14.001s-1-6-3-6zM20 3h-16c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2v-12c0-1.103-.897-2-2-2zm0 14h-16v-12h16v12z" + }, + "children": [] + }] +}; +exports.image = image; +var infinityOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M16.434 8.596c1.152 0 2.237.449 3.053 1.264.815.816 1.266 1.9 1.266 3.056s-.45 2.239-1.268 3.056c-.813.815-1.898 1.266-3.053 1.266s-2.238-.449-3.055-1.266l-1.376-1.32-1.395 1.338c-.797.799-1.882 1.248-3.036 1.248-1.154 0-2.239-.449-3.054-1.267-.815-.813-1.265-1.899-1.265-3.053s.45-2.237 1.267-3.056c.814-.813 1.898-1.266 3.053-1.266 1.154 0 2.239.449 3.055 1.266l1.375 1.32 1.396-1.34c.798-.797 1.882-1.246 3.037-1.246m0-2c-1.679 0-3.25.645-4.433 1.813-1.163-1.159-2.746-1.813-4.43-1.813-1.688 0-3.274.657-4.467 1.853-1.194 1.192-1.852 2.78-1.852 4.469s.658 3.274 1.852 4.468c1.191 1.192 2.779 1.852 4.468 1.852 1.679 0 3.251-.645 4.431-1.814 1.163 1.16 2.746 1.814 4.431 1.814 1.689 0 3.276-.658 4.469-1.854 1.193-1.188 1.852-2.776 1.852-4.467 0-1.688-.658-3.274-1.852-4.47-1.197-1.195-2.783-1.851-4.469-1.851zM7.571 12.096c.225 0 .426.088.612.271l.57.548-.603.579c-.141.142-.352.223-.578.223-.227 0-.438-.08-.58-.223-.155-.155-.24-.36-.24-.578 0-.221.084-.422.243-.581.156-.155.355-.239.576-.239m0-1c-.486 0-.942.189-1.285.533-.345.346-.535.801-.535 1.287 0 .484.189.941.533 1.285.344.344.815.516 1.287.516.471 0 .942-.172 1.285-.516l1.339-1.285-1.321-1.27c-.36-.361-.817-.55-1.303-.55zM16.434 12.113c.228 0 .438.08.576.219.158.159.242.359.242.582s-.083.422-.243.581c-.144.146-.352.228-.571.228-.23 0-.444-.088-.617-.261l-.571-.548.603-.578c.141-.143.353-.223.581-.223m0-1c-.472 0-.943.172-1.287.516l-1.34 1.285 1.322 1.27c.362.361.838.539 1.311.539.472 0 .937-.177 1.279-.521.346-.344.534-.801.534-1.287s-.188-.941-.532-1.287c-.346-.344-.817-.515-1.287-.515z" + }, + "children": [] + }] +}; +exports.infinityOutline = infinityOutline; +var infinity = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M16.433 8.596c-1.153 0-2.237.449-3.036 1.246l-1.396 1.34-1.375-1.32c-.815-.817-1.901-1.266-3.055-1.266-1.154 0-2.239.451-3.053 1.266-.817.816-1.267 1.9-1.267 3.055 0 1.152.449 2.238 1.266 3.053.814.816 1.899 1.266 3.054 1.266 1.153 0 2.239-.449 3.036-1.248l1.395-1.338 1.376 1.32c.815.816 1.901 1.266 3.055 1.266s2.238-.449 3.053-1.266c.817-.814 1.267-1.9 1.267-3.055s-.449-2.238-1.266-3.055c-.817-.815-1.901-1.264-3.054-1.264zm-7.576 5.605c-.687.688-1.884.688-2.572 0-.344-.344-.533-.801-.533-1.285 0-.486.189-.941.535-1.287.342-.344.799-.533 1.284-.533s.942.189 1.305.551l1.321 1.27-1.34 1.284zm8.861 0c-.687.689-1.866.705-2.59-.018l-1.321-1.27 1.339-1.285c.688-.688 1.886-.688 2.573-.002.344.346.533.801.533 1.287s-.19.944-.534 1.288z" + }, + "children": [] + }] +}; +exports.infinity = infinity; +var infoLargeOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M14.234 16.014l.554-1.104c.808-1.61.897-3.228.253-4.552-.122-.252-.277-.479-.443-.693 1.411-.619 2.402-2.026 2.402-3.664 0-2.206-1.794-4-4-4s-4 1.794-4 4c0 .783.234 1.508.624 2.126-1.696.33-2.806 1.248-2.947 1.375-.716.631-.885 1.68-.405 2.504.324.559.886.909 1.494.98l-.554 1.104c-.808 1.61-.897 3.228-.254 4.552.565 1.164 1.621 1.955 2.972 2.229.413.084.836.127 1.254.127 2.368 0 3.965-1.347 4.14-1.501.716-.63.887-1.678.407-2.503-.325-.556-.887-.909-1.497-.98zm-1.234-12.013c1.104 0 2 .896 2 2s-.896 2-2 2c-1.105 0-2-.896-2-2s.895-2 2-2zm-1.816 14.999c-.271 0-.559-.025-.854-.087-1.642-.334-2.328-1.933-1.328-3.927l1-1.995c.5-.996.47-1.63-.108-2.035-.181-.125-.431-.169-.689-.169-.577 0-1.201.214-1.201.214s1.133-1.001 2.812-1.001c.271 0 .56.025.856.087 1.64.334 2.328 1.933 1.328 3.927l-1 1.993c-.5.998-.472 1.632.106 2.035.181.126.433.169.692.169.577 0 1.2-.212 1.2-.212s-1.133 1.001-2.814 1.001z" + }, + "children": [] + }] +}; +exports.infoLargeOutline = infoLargeOutline; +var infoLarge = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M13.839 17.525c-.006.002-.559.186-1.039.186-.265 0-.372-.055-.406-.079-.168-.117-.48-.336.054-1.4l1-1.994c.593-1.184.681-2.329.245-3.225-.356-.733-1.039-1.236-1.92-1.416-.317-.065-.639-.097-.958-.097-1.849 0-3.094 1.08-3.146 1.126-.179.158-.221.42-.102.626.12.206.367.3.595.222.005-.002.559-.187 1.039-.187.263 0 .369.055.402.078.169.118.482.34-.051 1.402l-1 1.995c-.594 1.185-.681 2.33-.245 3.225.356.733 1.038 1.236 1.921 1.416.314.063.636.097.954.097 1.85 0 3.096-1.08 3.148-1.126.179-.157.221-.42.102-.626-.12-.205-.369-.297-.593-.223z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "13", + "cy": "6.001", + "r": "2.5" + }, + "children": [] + }] +}; +exports.infoLarge = infoLarge; +var infoOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12,5.51c0.56,0,1.12,0.35,1.54,1.06l5.91,9.85C20.31,17.84,19.65,19,18,19H6c-1.65,0-2.31-1.16-1.46-2.57l5.91-9.85\r\n\tC10.88,5.86,11.44,5.51,12,5.51 M12,3.51c-1.3,0-2.48,0.74-3.26,2.03L2.83,15.4c-0.44,0.74-0.66,1.5-0.66,2.23\r\n\tc0,0.56,0.14,1.11,0.42,1.6C3.23,20.35,4.47,21,6,21h12c1.53,0,2.77-0.65,3.41-1.77c0.29-0.51,0.43-1.07,0.42-1.65\r\n\tc-0.01-0.71-0.23-1.46-0.66-2.18l-5.91-9.85C14.48,4.25,13.3,3.51,12,3.51z M13.5,16.75c0,0-0.71,0.36-1.07,0.18\r\n\tc-0.36-0.18-0.43-0.54-0.23-1.15l0.41-1.22c0.4-1.22-0.12-2.08-1.08-2.13c-1.26-0.07-2.02,0.83-2.02,0.83s0.71-0.36,1.07-0.18\r\n\tc0.36,0.18,0.43,0.54,0.23,1.15l-0.41,1.22c-0.4,1.22,0.12,2.07,1.08,2.13C12.74,17.64,13.5,16.75,13.5,16.75z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "10", + "r": "1.3" + }, + "children": [] + }] +}; +exports.infoOutline = infoOutline; +var info = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M21.17,15.4l-5.91-9.85C14.48,4.25,13.3,3.51,12,3.51S9.52,4.25,8.74,5.54L2.83,15.4c-0.44,0.73-0.66,1.49-0.66,2.21\r\n\tc0,0.57,0.14,1.13,0.42,1.62C3.23,20.35,4.47,21,6,21h12c1.53,0,2.77-0.65,3.41-1.77c0.28-0.49,0.42-1.02,0.42-1.58\r\n\tC21.84,16.91,21.62,16.14,21.17,15.4z M12,8.45c0.85,0,1.55,0.7,1.55,1.55c0,0.85-0.69,1.55-1.55,1.55c-0.85,0-1.55-0.7-1.55-1.55\r\n\tC10.45,9.14,11.14,8.45,12,8.45z M13.69,16.91c-0.03,0.04-0.8,0.92-2.07,0.92l-0.15,0c-0.51-0.03-0.93-0.25-1.18-0.63\r\n\tc-0.31-0.47-0.36-1.11-0.12-1.82l0.41-1.22c0.23-0.68,0.01-0.79-0.11-0.85l-0.14-0.02c-0.25,0-0.6,0.15-0.71,0.21\r\n\tc-0.1,0.05-0.23,0.03-0.31-0.07c-0.07-0.1-0.07-0.23,0.01-0.32c0.03-0.04,0.87-0.99,2.22-0.91c0.51,0.03,0.93,0.25,1.18,0.63\r\n\tc0.32,0.47,0.36,1.11,0.12,1.83l-0.41,1.22c-0.23,0.68-0.01,0.79,0.11,0.85l0.14,0.02c0.25,0,0.6-0.15,0.71-0.2\r\n\tc0.11-0.06,0.23-0.03,0.31,0.07C13.77,16.69,13.77,16.82,13.69,16.91z" + }, + "children": [] + }] +}; +exports.info = info; +var inputCheckedOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M19.885 6.177c-.221-.771-.728-1.409-1.427-1.798-.445-.248-.949-.379-1.457-.379-.862 0-1.661.381-2.219 1h-6.782c-1.654 0-3 1.346-3 3v8c0 1.654 1.346 3 3 3h8c1.654 0 3-1.346 3-3v-6.454l.622-1.088c.39-.7.482-1.51.263-2.281zm-3.758.338c.104-.189.27-.328.459-.416.301-.113.623-.127.9.027.232.13.402.343.476.6.033.117.039.236.03.353-.012.115-.043.227-.092.332l-.021.065-4.006 7.011c-.151.273-.427.461-.742.506l-.132.009c-.267 0-.518-.104-.707-.293l-3-3c-.39-.39-.39-1.024 0-1.414.189-.189.44-.293.707-.293s.518.104.707.293l1.125 1.125.92.92.652-1.125 2.724-4.7zm-.127 10.485h-8c-.552 0-1-.449-1-1v-8c0-.551.448-1 1-1h6.689l-2.15 3.712-1.125-1.125c-.391-.391-.902-.586-1.414-.586s-1.023.195-1.414.586c-.781.781-.781 2.047 0 2.828l3 3c.378.378.888.586 1.414.586l.277-.02c.621-.087 1.166-.461 1.471-1.01l2.252-3.94v4.969c0 .551-.448 1-1 1z" + }, + "children": [] + }] +}; +exports.inputCheckedOutline = inputCheckedOutline; +var inputChecked = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M16 19h-8c-1.654 0-3-1.346-3-3v-8c0-1.654 1.346-3 3-3h5c.553 0 1 .448 1 1s-.447 1-1 1h-5c-.552 0-1 .449-1 1v8c0 .551.448 1 1 1h8c.552 0 1-.449 1-1v-3c0-.552.447-1 1-1s1 .448 1 1v3c0 1.654-1.346 3-3 3zM13.166 14.833c-.35 0-.689-.139-.941-.391l-2.668-2.667c-.52-.521-.52-1.365 0-1.885.521-.521 1.365-.521 1.887 0l1.416 1.417 3.475-5.455c.357-.644 1.17-.877 1.814-.519.643.358.875 1.17.518 1.813l-4.334 7c-.203.366-.566.615-.98.673l-.187.014z" + }, + "children": [] + }] +}; +exports.inputChecked = inputChecked; +var keyOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M10 21h-6v-4.414l3.783-3.783c-.187-.587-.283-1.192-.283-1.803 0-3.309 2.691-6 6-6s6 2.691 6 6-2.691 6-6 6h-1.5v2h-2v2zm-4-2h2v-2h2v-2h3.5c2.206 0 4-1.794 4-4s-1.794-4-4-4-4 1.794-4 4c0 .559.121 1.109.359 1.639l.285.631-4.144 4.144v1.586zM13.5 9.998c.551 0 1 .449 1 1.002 0 .552-.449 1-1 1s-1-.448-1-1c0-.553.449-1.002 1-1.002m0-1c-1.104 0-2 .896-2 2.002 0 1.104.896 2 2 2 1.105 0 2-.896 2-2 0-1.105-.895-2.002-2-2.002z" + }, + "children": [] + }] +}; +exports.keyOutline = keyOutline; +var key = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M8.5 11c0 .732.166 1.424.449 2.051l-3.949 3.949v1.5s.896 1.5 2 1.5h2v-2h2v-2h2.5c2.762 0 5-2.238 5-5s-2.238-5-5-5-5 2.238-5 5zm5 2c-1.104 0-2-.896-2-2 0-1.105.896-2.002 2-2.002 1.105 0 2 .896 2 2.002 0 1.104-.895 2-2 2z" + }, + "children": [] + }] +}; +exports.key = key; +var keyboard = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M8 13h7v2h-7zM5 13h2v2h-2zM5 9h2v1h-2zM8 12v-1h-3v1h2zM8 9h1v1h-1zM9 11h1v1h-1zM10 9h1v1h-1zM11 11h1v1h-1zM12 9h1v1h-1zM13 11h1v1h-1zM14 9h1v1h-1zM15 11h1v1h-1zM16 9h1v1h-1zM17 12h2v-3h-1v2h-1zM18 13h-1v1h-1v1h3v-1h-1zM20 6h-16c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-8c0-1.1-.9-2-2-2zm0 10h-16v-8h16v8z" + }, + "children": [] + }] +}; +exports.keyboard = keyboard; +var leaf = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M20 11c0-4.9-3.499-9.1-8.32-9.983l-.18-.034-.18.033c-4.821.884-8.32 5.084-8.32 9.984 0 4.617 3.108 8.61 7.5 9.795v1.205c0 .553.448 1 1 1s1-.447 1-1v-1.205c4.392-1.185 7.5-5.178 7.5-9.795zm-7.5 7.7v-2.993l4.354-4.354c.195-.195.195-.512 0-.707s-.512-.195-.707 0l-3.647 3.647v-3.586l2.354-2.354c.195-.195.195-.512 0-.707s-.512-.195-.707 0l-1.647 1.647v-3.293c0-.553-.448-1-1-1s-1 .447-1 1v3.293l-1.646-1.647c-.195-.195-.512-.195-.707 0s-.195.512 0 .707l2.354 2.354v3.586l-3.646-3.646c-.195-.195-.512-.195-.707 0s-.195.512 0 .707l4.354 4.354v2.992c-3.249-1.116-5.502-4.179-5.502-7.7 0-3.874 2.723-7.201 6.5-7.981 3.777.78 6.5 4.107 6.5 7.981 0 3.521-2.253 6.584-5.5 7.7z" + }, + "children": [] + }] +}; +exports.leaf = leaf; +var lightbulb = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12.5 5.5c-.276 0-.5.224-.5.5s.224.5.5.5c1.083 0 1.964.881 1.964 1.964 0 .276.224.5.5.5s.5-.224.5-.5c0-1.634-1.33-2.964-2.964-2.964zM12.5 1c-4.136 0-7.5 3.364-7.5 7.5 0 1.486.44 2.922 1.274 4.165l.08.135c1.825 2.606 2.146 3.43 2.146 4.2v3c0 .552.448 1 1 1h2c0 .26.11.52.29.71.19.18.45.29.71.29.26 0 .52-.11.71-.29.18-.19.29-.45.29-.71h2c.552 0 1-.448 1-1v-3c0-.782.319-1.61 2.132-4.199.895-1.275 1.368-2.762 1.368-4.301 0-4.136-3.364-7.5-7.5-7.5zm2 18h-4v-1h4v1zm2.495-7.347c-1.466 2.093-2.143 3.289-2.385 4.347h-1.11v-2c0-.552-.448-1-1-1s-1 .448-1 1v2h-1.113c-.24-1.03-.898-2.2-2.306-4.22l-.077-.129c-.657-.934-1.004-2.024-1.004-3.151 0-3.033 2.467-5.5 5.5-5.5s5.5 2.467 5.5 5.5c0 1.126-.347 2.216-1.005 3.153z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12.5 5.5c-.276 0-.5.224-.5.5s.224.5.5.5c1.083 0 1.964.881 1.964 1.964 0 .276.224.5.5.5s.5-.224.5-.5c0-1.634-1.33-2.964-2.964-2.964zM12.5 1c-4.136 0-7.5 3.364-7.5 7.5 0 1.486.44 2.922 1.274 4.165l.08.135c1.825 2.606 2.146 3.43 2.146 4.2v3c0 .552.448 1 1 1h2c0 .26.11.52.29.71.19.18.45.29.71.29.26 0 .52-.11.71-.29.18-.19.29-.45.29-.71h2c.552 0 1-.448 1-1v-3c0-.782.319-1.61 2.132-4.199.895-1.275 1.368-2.762 1.368-4.301 0-4.136-3.364-7.5-7.5-7.5zm2 18h-4v-1h4v1zm2.495-7.347c-1.466 2.093-2.143 3.289-2.385 4.347h-1.11v-2c0-.552-.448-1-1-1s-1 .448-1 1v2h-1.113c-.24-1.03-.898-2.2-2.306-4.22l-.077-.129c-.657-.934-1.004-2.024-1.004-3.151 0-3.033 2.467-5.5 5.5-5.5s5.5 2.467 5.5 5.5c0 1.126-.347 2.216-1.005 3.153z" + }, + "children": [] + }] + }] + }] +}; +exports.lightbulb = lightbulb; +var linkOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M17.5 5.999c.282 0 .562.106.777.321.431.431.431 1.127 0 1.557l-1.72 1.723.307.308c.585.584.906 1.362.906 2.192s-.321 1.607-.906 2.191l-4.172 4.172c-.584.584-1.361.906-2.191.906s-1.607-.322-2.191-.906l-.31-.309-1.723 1.723c-.215.215-.495.322-.777.322s-.562-.107-.777-.322c-.431-.43-.431-1.126 0-1.557l1.72-1.72-.308-.309c-.583-.584-.905-1.361-.905-2.191s.321-1.608.905-2.192l4.173-4.173c.584-.584 1.387-.875 2.191-.875s1.607.291 2.191.875l.31.308 1.723-1.723c.215-.215.495-.321.777-.321m0-2c-.828 0-1.605.321-2.191.908l-.492.491c-.707-.351-1.504-.539-2.316-.539-1.363 0-2.677.533-3.605 1.461l-4.172 4.173c-.964.962-1.494 2.241-1.494 3.607 0 .822.192 1.616.558 2.327l-.479.48c-.586.585-.909 1.364-.909 2.193 0 .827.322 1.605.908 2.191.584.586 1.363.908 2.191.908s1.605-.322 2.191-.908l.48-.48c.711.365 1.504.559 2.328.559 1.363 0 2.645-.53 3.605-1.492l4.172-4.172c.963-.962 1.492-2.242 1.492-3.605 0-.824-.192-1.617-.558-2.328l.479-.48c.589-.587.912-1.366.912-2.193 0-.828-.322-1.606-.908-2.192-.587-.588-1.364-.909-2.192-.909zM11.4 11.168c.017.535.233 1.036.613 1.416.381.38.881.598 1.416.614l-1.832 1.831c-.017-.534-.234-1.035-.613-1.415-.381-.38-.881-.597-1.416-.614l1.832-1.832m1.1-2.139c-.242 0-.468.094-.637.262l-4.172 4.172c-.168.168-.26.395-.26.637 0 .24.092.467.26.635l.309.308.723-.723c.215-.215.495-.321.777-.321s.562.106.777.321c.431.431.431 1.127 0 1.557l-.72.723.308.308c.168.168.401.253.636.253s.468-.084.637-.253l4.172-4.173c.168-.168.26-.395.26-.635 0-.242-.092-.469-.26-.637l-.31-.309-.723.723c-.215.215-.495.322-.777.322s-.562-.107-.777-.322c-.431-.43-.431-1.126 0-1.557l.72-.72-.307-.309c-.169-.168-.395-.262-.636-.262z" + }, + "children": [] + }] +}; +exports.linkOutline = linkOutline; +var link = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.277 6.321c-.43-.43-1.126-.43-1.556 0l-1.721 1.722-.308-.308c-1.168-1.168-3.216-1.168-4.384 0l-4.172 4.172c-.584.584-.906 1.363-.906 2.192s.322 1.608.906 2.192l.308.308-1.722 1.722c-.43.43-.43 1.126 0 1.556.215.215.496.322.778.322s.563-.107.778-.322l1.722-1.722.308.308c.584.584 1.362.906 2.192.906s1.608-.322 2.192-.906l4.172-4.172c.584-.584.906-1.362.906-2.192s-.322-1.608-.906-2.192l-.308-.308 1.722-1.722c.429-.43.429-1.126-.001-1.556zm-2.969 6.414l-4.172 4.172c-.168.168-.402.253-.636.253s-.468-.084-.636-.253l-.308-.308.722-.722c.43-.43.43-1.126 0-1.556-.215-.215-.496-.322-.778-.322s-.563.107-.778.322l-.722.722-.308-.308c-.168-.168-.261-.395-.261-.636s.093-.468.261-.636l4.172-4.172c.168-.168.394-.261.636-.261s.468.093.636.261l.308.308-.722.722c-.43.43-.43 1.126 0 1.556.215.215.496.322.778.322s.563-.107.778-.322l.722-.722.308.308c.168.168.261.395.261.636s-.093.468-.261.636z" + }, + "children": [] + }] +}; +exports.link = link; +var locationArrowOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M11.087 20.914c-.353 0-1.219-.146-1.668-1.496l-1.209-3.627-3.628-1.209c-1.244-.415-1.469-1.172-1.493-1.587s.114-1.193 1.302-1.747l11.375-5.309c1.031-.479 1.922-.309 2.348.362.224.351.396.97-.053 1.933l-5.309 11.375c-.529 1.135-1.272 1.305-1.665 1.305zm-5.39-8.068l4.094 1.363 1.365 4.093 4.775-10.233-10.234 4.777z" + }, + "children": [] + }] +}; +exports.locationArrowOutline = locationArrowOutline; +var locationArrow = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M10.368 19.102c.349 1.049 1.011 1.086 1.478.086l5.309-11.375c.467-1.002.034-1.434-.967-.967l-11.376 5.308c-1.001.467-.963 1.129.085 1.479l4.103 1.367 1.368 4.102z" + }, + "children": [] + }] +}; +exports.locationArrow = locationArrow; +var locationOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 5c1.609 0 3.12.614 4.254 1.73 1.126 1.107 1.746 2.579 1.746 4.14s-.62 3.03-1.745 4.139l-4.255 4.184-4.254-4.186c-1.125-1.107-1.745-2.576-1.745-4.139s.62-3.032 1.745-4.141c1.135-1.113 2.647-1.727 4.254-1.727m0-2c-2.047 0-4.096.768-5.657 2.305-3.124 3.074-3.124 8.057 0 11.131l5.657 5.563 5.657-5.565c3.124-3.072 3.124-8.056 0-11.129-1.561-1.537-3.609-2.305-5.657-2.305zM12 8.499c.668 0 1.296.26 1.768.731.976.976.976 2.562 0 3.537-.473.472-1.1.731-1.768.731s-1.295-.26-1.768-.731c-.976-.976-.976-2.562 0-3.537.473-.471 1.101-.731 1.768-.731m0-1c-.896 0-1.792.342-2.475 1.024-1.367 1.367-1.367 3.584 0 4.951.684.684 1.578 1.024 2.475 1.024s1.792-.342 2.475-1.024c1.366-1.367 1.366-3.584 0-4.951-.683-.683-1.579-1.024-2.475-1.024z" + }, + "children": [] + }] +}; +exports.locationOutline = locationOutline; +var location = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M17.657 5.304c-3.124-3.073-8.189-3.073-11.313 0-3.124 3.074-3.124 8.057 0 11.13l5.656 5.565 5.657-5.565c3.124-3.073 3.124-8.056 0-11.13zm-5.657 8.195c-.668 0-1.295-.26-1.768-.732-.975-.975-.975-2.561 0-3.536.472-.472 1.1-.732 1.768-.732s1.296.26 1.768.732c.975.975.975 2.562 0 3.536-.472.472-1.1.732-1.768.732z" + }, + "children": [] + }] +}; +exports.location = location; +var lockClosedOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "17", + "r": "1.3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 10h-1v-2c0-2.206-1.794-4-4-4s-4 1.794-4 4v2h-1c-1.104 0-2 .896-2 2v7c0 1.104.896 2 2 2h10c1.104 0 2-.896 2-2v-7c0-1.104-.896-2-2-2zm-7-2c0-1.104.896-2 2-2s2 .896 2 2v3h-4v-3zm7 11h-10v-7h10.003l-.003 7z" + }, + "children": [] + }] +}; +exports.lockClosedOutline = lockClosedOutline; +var lockClosed = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M17 10h-1v-2c0-2.205-1.794-4-4-4s-4 1.795-4 4v2h-1c-1.103 0-2 .896-2 2v7c0 1.104.897 2 2 2h10c1.103 0 2-.896 2-2v-7c0-1.104-.897-2-2-2zm-5 8.299c-.719 0-1.3-.58-1.3-1.299s.581-1.301 1.3-1.301 1.3.582 1.3 1.301-.581 1.299-1.3 1.299zm2-7.299h-4v-3c0-1.104.897-2 2-2s2 .896 2 2v3z" + }, + "children": [] + }] +}; +exports.lockClosed = lockClosed; +var lockOpenOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "17", + "r": "1.3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 4c-2.206 0-4 1.794-4 4v3h-4v-1h-3c-1.104 0-2 .896-2 2v7c0 1.104.896 2 2 2h10c1.104 0 2-.896 2-2v-7c0-1.104-.896-2-2-2h-1v-2c0-1.104.896-2 2-2s2 .896 2 2v3c0 .552.448 1 1 1s1-.448 1-1v-3c0-2.206-1.794-4-4-4zm-1 15h-10v-7h10.003l-.003 7z" + }, + "children": [] + }] +}; +exports.lockOpenOutline = lockOpenOutline; +var lockOpen = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18 4c-2.206 0-4 1.795-4 4v3h-4v-1h-3c-1.103 0-2 .896-2 2v7c0 1.104.897 2 2 2h10c1.103 0 2-.896 2-2v-7c0-1.104-.897-2-2-2h-1v-2c0-1.104.897-2 2-2s2 .896 2 2v3c0 .553.448 1 1 1s1-.447 1-1v-3c0-2.205-1.794-4-4-4zm-6 14.299c-.719 0-1.3-.58-1.3-1.299s.581-1.301 1.3-1.301 1.3.582 1.3 1.301-.581 1.299-1.3 1.299z" + }, + "children": [] + }] +}; +exports.lockOpen = lockOpen; +var mail = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M19 7h-14c-1.104 0-2 .896-2 2v9c0 1.104.896 2 2 2h14c1.104 0 2-.896 2-2v-9c0-1.104-.896-2-2-2zm-9.684 7.316l1.602 1.4c.305.266.691.398 1.082.398s.777-.133 1.082-.398l1.602-1.4-.037.037 3.646 3.646h-12.586l3.646-3.646-.037-.037zm-4.316 2.977v-6.753l3.602 3.151-3.602 3.602zm10.398-3.602l3.602-3.151v6.75l-3.602-3.599zm3.602-4.691v.21l-6.576 5.754c-.227.198-.621.198-.848 0l-6.576-5.754v-.21h14z" + }, + "children": [] + }] +}; +exports.mail = mail; +var map = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M20.383 3.076c-.373-.155-.804-.069-1.09.217l-3.867 3.867-4.301-3.441c-.396-.316-.973-.287-1.332.074l-4.5 4.5c-.188.187-.293.441-.293.707v10c0 .404.243.77.617.924.124.053.254.076.383.076.26 0 .516-.102.707-.293l3.867-3.867 4.301 3.441c.396.316.971.285 1.332-.074l4.5-4.5c.188-.187.293-.441.293-.707v-10c0-.404-.243-.77-.617-.924zm-13.383 13.51v-7.172l3-3v7.24c-.07.043-3 2.932-3 2.932zm4.125-2.867l-.125-.068v-7.469s3.959 3.143 4 3.166v7.473l-3.875-3.102zm7.875-.133l-3 3v-7.236c.07-.043 3-2.936 3-2.936v7.172z" + }, + "children": [] + }] +}; +exports.map = map; +var mediaEjectOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M16 21h-8c-1.654 0-3-1.346-3-3s1.346-3 3-3h8c1.654 0 3 1.346 3 3s-1.346 3-3 3zm-8-4c-.551 0-1 .448-1 1s.449 1 1 1h8c.551 0 1-.448 1-1s-.449-1-1-1h-8zM12 6.866l4.964 5.096.036.038-10 .004.08-.087 4.92-5.051m0-2.866s-3.859 3.963-6.433 6.604c-.349.363-.567.853-.567 1.396 0 1.104.896 2 2 2h10c1.104 0 2-.896 2-2 0-.543-.218-1.033-.568-1.393-2.573-2.644-6.432-6.607-6.432-6.607z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M16 21h-8c-1.654 0-3-1.346-3-3s1.346-3 3-3h8c1.654 0 3 1.346 3 3s-1.346 3-3 3zm-8-4c-.551 0-1 .448-1 1s.449 1 1 1h8c.551 0 1-.448 1-1s-.449-1-1-1h-8zM12 6.866l4.964 5.096.036.038-10 .004.08-.087 4.92-5.051m0-2.866s-3.859 3.963-6.433 6.604c-.349.363-.567.853-.567 1.396 0 1.104.896 2 2 2h10c1.104 0 2-.896 2-2 0-.543-.218-1.033-.568-1.393-2.573-2.644-6.432-6.607-6.432-6.607z" + }, + "children": [] + }] + }] + }] +}; +exports.mediaEjectOutline = mediaEjectOutline; +var mediaEject = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M17 16h-10c-1.104 0-2 .895-2 2 0 1.104.896 2 2 2h10c1.104 0 2-.896 2-2 0-1.105-.896-2-2-2zM18.433 10.604c-2.574-2.641-6.433-6.604-6.433-6.604s-3.859 3.963-6.433 6.604c-.349.363-.567.853-.567 1.396 0 1.104.896 2 2 2h10c1.104 0 2-.896 2-2 0-.543-.218-1.033-.567-1.396z" + }, + "children": [] + }] +}; +exports.mediaEject = mediaEject; +var mediaFastForwardOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M14 8.676l4.133 4.025-4.133 4.026v-8.051m-.2-2.276c-.994 0-1.8.807-1.8 1.801v9c0 .994.806 1.799 1.8 1.799.488 0 .93-.195 1.253-.512 2.381-2.314 5.947-5.787 5.947-5.787s-3.566-3.475-5.944-5.789c-.327-.314-.768-.512-1.256-.512zM5 8.676l4.133 4.025-4.133 4.026v-8.051m-.2-2.276c-.994 0-1.8.807-1.8 1.801v9c0 .994.806 1.799 1.8 1.799.488 0 .93-.195 1.253-.512 2.381-2.314 5.947-5.787 5.947-5.787s-3.566-3.474-5.944-5.789c-.327-.314-.768-.512-1.256-.512z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14 8.676l4.133 4.025-4.133 4.026v-8.051m-.2-2.276c-.994 0-1.8.807-1.8 1.801v9c0 .994.806 1.799 1.8 1.799.488 0 .93-.195 1.253-.512 2.381-2.314 5.947-5.787 5.947-5.787s-3.566-3.475-5.944-5.789c-.327-.314-.768-.512-1.256-.512zM5 8.676l4.133 4.025-4.133 4.026v-8.051m-.2-2.276c-.994 0-1.8.807-1.8 1.801v9c0 .994.806 1.799 1.8 1.799.488 0 .93-.195 1.253-.512 2.381-2.314 5.947-5.787 5.947-5.787s-3.566-3.474-5.944-5.789c-.327-.314-.768-.512-1.256-.512z" + }, + "children": [] + }] + }] + }] +}; +exports.mediaFastForwardOutline = mediaFastForwardOutline; +var mediaFastForward = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M15.053 6.912c-.324-.314-.765-.512-1.253-.512-.994 0-1.8.807-1.8 1.801v9c0 .994.806 1.799 1.8 1.799.488 0 .93-.195 1.253-.512 2.381-2.314 5.947-5.787 5.947-5.787s-3.566-3.474-5.947-5.789zM6.053 6.912c-.324-.314-.765-.512-1.253-.512-.994 0-1.8.807-1.8 1.801v9c0 .994.806 1.799 1.8 1.799.488 0 .93-.195 1.253-.512 2.381-2.314 5.947-5.787 5.947-5.787s-3.566-3.474-5.947-5.789z" + }, + "children": [] + }] +}; +exports.mediaFastForward = mediaFastForward; +var mediaPauseOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M8 20c-1.654 0-3-1.346-3-3v-9c0-1.654 1.346-3 3-3s3 1.346 3 3v9c0 1.654-1.346 3-3 3zm0-13c-.552 0-1 .449-1 1v9c0 .551.448 1 1 1s1-.449 1-1v-9c0-.551-.448-1-1-1zM15 20c-1.654 0-3-1.346-3-3v-9c0-1.654 1.346-3 3-3s3 1.346 3 3v9c0 1.654-1.346 3-3 3zm0-13c-.552 0-1 .449-1 1v9c0 .551.448 1 1 1s1-.449 1-1v-9c0-.551-.448-1-1-1z" + }, + "children": [] + }] +}; +exports.mediaPauseOutline = mediaPauseOutline; +var mediaPause = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M8 6c-1.104 0-2 .896-2 2v8c0 1.104.896 2 2 2s2-.896 2-2v-8c0-1.104-.896-2-2-2zM15 6c-1.104 0-2 .896-2 2v8c0 1.104.896 2 2 2s2-.896 2-2v-8c0-1.104-.896-2-2-2z" + }, + "children": [] + }] +}; +exports.mediaPause = mediaPause; +var mediaPlayOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M8.998 7.002l.085.078 5.051 4.92-5.096 4.964-.038.036-.002-9.998m.002-2.002c-1.104 0-2 .896-2 2v10c0 1.104.896 2 2 2 .543 0 1.033-.218 1.393-.568 2.644-2.573 6.607-6.432 6.607-6.432s-3.963-3.859-6.604-6.433c-.363-.349-.853-.567-1.396-.567z" + }, + "children": [] + }] +}; +exports.mediaPlayOutline = mediaPlayOutline; +var mediaPlayReverseOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M14 7v10l-5.1-5 5.1-5m-1.4-1.4c-2.6 2.5-6.6 6.4-6.6 6.4s4 3.9 6.6 6.4c.4.4.9.6 1.4.6 1.1 0 2-.9 2-2v-10c0-1.1-.9-2-2-2-.5 0-1 .2-1.4.6z" + }, + "children": [] + }] +}; +exports.mediaPlayReverseOutline = mediaPlayReverseOutline; +var mediaPlayReverse = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M14 19c1.1 0 2-.9 2-2v-10c0-1.1-.9-2-2-2-.5 0-1 .2-1.4.6-2.6 2.5-6.6 6.4-6.6 6.4s4 3.9 6.6 6.4c.4.4.9.6 1.4.6z" + }, + "children": [] + }] +}; +exports.mediaPlayReverse = mediaPlayReverse; +var mediaPlay = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M10.396 18.433c2.641-2.574 6.604-6.433 6.604-6.433s-3.963-3.859-6.604-6.433c-.363-.349-.853-.567-1.396-.567-1.104 0-2 .896-2 2v10c0 1.104.896 2 2 2 .543 0 1.033-.218 1.396-.567z" + }, + "children": [] + }] +}; +exports.mediaPlay = mediaPlay; +var mediaRecordOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 8c2.205 0 4 1.794 4 4s-1.795 4-4 4-4-1.794-4-4 1.795-4 4-4m0-2c-3.314 0-6 2.686-6 6 0 3.312 2.686 6 6 6 3.312 0 6-2.688 6-6 0-3.314-2.688-6-6-6z" + }, + "children": [] + }] +}; +exports.mediaRecordOutline = mediaRecordOutline; +var mediaRecord = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18 12c0-1.657-.672-3.157-1.757-4.243-1.086-1.085-2.586-1.757-4.243-1.757-1.656 0-3.156.672-4.242 1.757-1.086 1.086-1.758 2.586-1.758 4.243 0 1.656.672 3.156 1.758 4.242s2.586 1.758 4.242 1.758c1.657 0 3.157-.672 4.243-1.758 1.085-1.086 1.757-2.586 1.757-4.242z" + }, + "children": [] + }] +}; +exports.mediaRecord = mediaRecord; +var mediaRewindOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M10 8.676v8.05l-4.133-4.025 4.133-4.025m.2-2.276c-.488 0-.931.197-1.253.512-2.381 2.315-5.947 5.789-5.947 5.789l5.944 5.789c.326.315.768.51 1.256.51.994 0 1.8-.805 1.8-1.799v-9c0-.994-.806-1.801-1.8-1.801zM19 8.676v8.051l-4.133-4.025 4.133-4.026m.2-2.276c-.488 0-.931.197-1.253.512-2.381 2.315-5.947 5.789-5.947 5.789l5.944 5.789c.326.315.768.51 1.256.51.994 0 1.8-.805 1.8-1.799v-9c0-.994-.806-1.801-1.8-1.801z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M10 8.676v8.05l-4.133-4.025 4.133-4.025m.2-2.276c-.488 0-.931.197-1.253.512-2.381 2.315-5.947 5.789-5.947 5.789l5.944 5.789c.326.315.768.51 1.256.51.994 0 1.8-.805 1.8-1.799v-9c0-.994-.806-1.801-1.8-1.801zM19 8.676v8.051l-4.133-4.025 4.133-4.026m.2-2.276c-.488 0-.931.197-1.253.512-2.381 2.315-5.947 5.789-5.947 5.789l5.944 5.789c.326.315.768.51 1.256.51.994 0 1.8-.805 1.8-1.799v-9c0-.994-.806-1.801-1.8-1.801z" + }, + "children": [] + }] + }] + }] +}; +exports.mediaRewindOutline = mediaRewindOutline; +var mediaRewind = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M10.2 6.4c-.488 0-.931.197-1.253.512-2.381 2.315-5.947 5.789-5.947 5.789l5.944 5.789c.326.315.768.51 1.256.51.994 0 1.8-.805 1.8-1.799v-9c0-.994-.806-1.801-1.8-1.801zM19.2 6.4c-.488 0-.931.197-1.253.512-2.381 2.315-5.947 5.789-5.947 5.789l5.944 5.789c.326.315.768.51 1.256.51.994 0 1.8-.805 1.8-1.799v-9c0-.994-.806-1.801-1.8-1.801z" + }, + "children": [] + }] +}; +exports.mediaRewind = mediaRewind; +var mediaStopOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M16 8v8h-8v-8h8m0-2h-8c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2v-8c0-1.1-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.mediaStopOutline = mediaStopOutline; +var mediaStop = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M16 6h-8c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2v-8c0-1.1-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.mediaStop = mediaStop; +var messageTyping = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18 6h-13c-1.65 0-3 1.35-3 3v7c0 1.65 1.35 3 3 3h1v3l3-3h9c1.65 0 3-1.35 3-3v-7c0-1.65-1.35-3-3-3zm1 10c0 .542-.458 1-1 1h-13c-.542 0-1-.458-1-1v-7c0-.542.458-1 1-1h13c.542 0 1 .458 1 1v7zM7 14.5c-1.104 0-2-.896-2-2s.896-2 2-2 2 .896 2 2-.896 2-2 2zm0-3c-.552 0-1 .448-1 1s.448 1 1 1 1-.448 1-1-.448-1-1-1zM11.5 14.5c-1.104 0-2-.896-2-2s.896-2 2-2 2 .896 2 2-.896 2-2 2zm0-3c-.552 0-1 .448-1 1s.448 1 1 1 1-.448 1-1-.448-1-1-1zM16 14.5c-1.104 0-2-.896-2-2s.896-2 2-2 2 .896 2 2-.896 2-2 2zm0-3c-.552 0-1 .448-1 1s.448 1 1 1 1-.448 1-1-.448-1-1-1z" + }, + "children": [] + }] +}; +exports.messageTyping = messageTyping; +var message = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18 7c.542 0 1 .458 1 1v7c0 .542-.458 1-1 1h-8.829l-.171.171v-.171h-3c-.542 0-1-.458-1-1v-7c0-.542.458-1 1-1h12m0-2h-12c-1.65 0-3 1.35-3 3v7c0 1.65 1.35 3 3 3h1v3l3-3h8c1.65 0 3-1.35 3-3v-7c0-1.65-1.35-3-3-3z" + }, + "children": [] + }] +}; +exports.message = message; +var messages = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M21 7h-3c0-1.65-1.35-3-3-3h-12c-1.65 0-3 1.35-3 3v7c0 1.65 1.35 3 3 3v3l3-3c0 1.65 1.35 3 3 3h8l3 3v-3h1c1.65 0 3-1.35 3-3v-7c0-1.65-1.35-3-3-3zm-18 8c-.542 0-1-.458-1-1v-7c0-.542.458-1 1-1h12c.542 0 1 .458 1 1v1h-6.5c-1.379 0-2.5 1.121-2.5 2.5v4.5h-4zm19 2c0 .542-.458 1-1 1h-12c-.542 0-1-.458-1-1v-6.5c0-.827.673-1.5 1.5-1.5h11.5c.542 0 1 .458 1 1v7z" + }, + "children": [] + }] +}; +exports.messages = messages; +var microphoneOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12 16c-2.206 0-4-1.795-4-4v-6c0-2.205 1.794-4 4-4s4 1.795 4 4v6c0 2.205-1.794 4-4 4zm0-12c-1.103 0-2 .896-2 2v6c0 1.104.897 2 2 2s2-.896 2-2v-6c0-1.104-.897-2-2-2zM19 12v-2c0-.553-.447-1-1-1s-1 .447-1 1v2c0 2.757-2.243 5-5 5s-5-2.243-5-5v-2c0-.553-.447-1-1-1s-1 .447-1 1v2c0 3.52 2.613 6.432 6 6.92v1.08h-3c-.553 0-1 .447-1 1s.447 1 1 1h8c.553 0 1-.447 1-1s-.447-1-1-1h-3v-1.08c3.387-.488 6-3.4 6-6.92z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12 16c-2.206 0-4-1.795-4-4v-6c0-2.205 1.794-4 4-4s4 1.795 4 4v6c0 2.205-1.794 4-4 4zm0-12c-1.103 0-2 .896-2 2v6c0 1.104.897 2 2 2s2-.896 2-2v-6c0-1.104-.897-2-2-2zM19 12v-2c0-.553-.447-1-1-1s-1 .447-1 1v2c0 2.757-2.243 5-5 5s-5-2.243-5-5v-2c0-.553-.447-1-1-1s-1 .447-1 1v2c0 3.52 2.613 6.432 6 6.92v1.08h-3c-.553 0-1 .447-1 1s.447 1 1 1h8c.553 0 1-.447 1-1s-.447-1-1-1h-3v-1.08c3.387-.488 6-3.4 6-6.92z" + }, + "children": [] + }] + }] + }] +}; +exports.microphoneOutline = microphoneOutline; +var microphone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 16c2.206 0 4-1.795 4-4v-6c0-2.206-1.794-4-4-4s-4 1.794-4 4v6c0 2.205 1.794 4 4 4zM19 12v-2c0-.552-.447-1-1-1s-1 .448-1 1v2c0 2.757-2.243 5-5 5s-5-2.243-5-5v-2c0-.552-.447-1-1-1s-1 .448-1 1v2c0 3.52 2.613 6.432 6 6.92v1.08h-3c-.553 0-1 .447-1 1s.447 1 1 1h8c.553 0 1-.447 1-1s-.447-1-1-1h-3v-1.08c3.387-.488 6-3.4 6-6.92z" + }, + "children": [] + }] +}; +exports.microphone = microphone; +var minusOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18 16h-12c-1.654 0-3-1.346-3-3s1.346-3 3-3h12c1.654 0 3 1.346 3 3s-1.346 3-3 3zm-12-4c-.551 0-1 .449-1 1s.449 1 1 1h12c.551 0 1-.449 1-1s-.449-1-1-1h-12z" + }, + "children": [] + }] +}; +exports.minusOutline = minusOutline; +var minus = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18 11h-12c-1.104 0-2 .896-2 2s.896 2 2 2h12c1.104 0 2-.896 2-2s-.896-2-2-2z" + }, + "children": [] + }] +}; +exports.minus = minus; +var mortarBoard = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M20.5 7.9s-5.8-2.9-6.9-3.5-1.7-.7-3 0c-1.3.6-6.7 3.3-6.7 3.3-.8.4-1.5 1.2-1.5 2s.2 1.2.2 1.2-.1.3-.3 1.5c-.3 1.2-.3 2.7-.3 3.3 0 1.5 1.3 2.6 2.2 2.7.9.1 1.6-.1 1.6-.1 1.4 1.3 3.7 2.1 6.4 2.1 4.4 0 7.8-2.2 7.8-5 0-1.1-.4-2.7-.4-2.7l1.1-.6c.9-.5 1.3-1.4 1.3-2.3-.1-.8-.6-1.5-1.5-1.9zm-8.2 10.4c-3.2 0-5.8-1.3-5.8-3l.5-2.8 4.2 2.1c.6.3 1.5.3 2.2 0l4.3-2.1.4 2.8c0 1.6-2.5 3-5.8 3zm7.3-8.1l-6.6 3.4c-.4.2-1 .2-1.4 0l-5.7-2.9c-.2.5-.3 1.2-.3 2 0 1.4.2 2.4.2 2.9s-.3.8-.7.8h-.1c-.4 0-.8-.3-.8-.8s0-1.6.3-3.1c.2-.9.4-1.7.6-2.2l-.2-.1c-.4-.2-.4-.5 0-.7l6.7-3.4c.4-.2.9-.2 1.3 0s6.7 3.4 6.7 3.4c.4.2.4.5 0 .7z" + }, + "children": [] + }] +}; +exports.mortarBoard = mortarBoard; +var news = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M21 4h-18c-1.104 0-2 .896-2 2v12c0 1.104.896 2 2 2h18c1.104 0 2-.896 2-2v-12c0-1.104-.896-2-2-2zm-18 2h8v12h-8v-12zm18 12h-9v-12h9.003l-.003 12zM20 13.5c0-.275-.225-.5-.5-.5h-1c-.275 0-.5.225-.5.5v3c0 .275.225.5.5.5h1c.275 0 .5-.225.5-.5v-3zM17 7.5c0-.275-.225-.5-.5-.5h-3c-.275 0-.5.225-.5.5v5c0 .275.225.5.5.5h3c.275 0 .5-.225.5-.5v-5zM18.5 10h1c.275 0 .5-.225.5-.5s-.225-.5-.5-.5h-1c-.275 0-.5.225-.5.5s.225.5.5.5zM18.5 12h1c.275 0 .5-.225.5-.5s-.225-.5-.5-.5h-1c-.275 0-.5.225-.5.5s.225.5.5.5zM13.5 15h3c.275 0 .5-.225.5-.5s-.225-.5-.5-.5h-3c-.275 0-.5.225-.5.5s.225.5.5.5zM16.5 16h-3c-.275 0-.5.225-.5.5s.225.5.5.5h3c.275 0 .5-.225.5-.5s-.225-.5-.5-.5zM18.5 8h1c.275 0 .5-.225.5-.5s-.225-.5-.5-.5h-1c-.275 0-.5.225-.5.5s.225.5.5.5zM10 7.5c0-.275-.225-.5-.5-.5h-5c-.275 0-.5.225-.5.5v3c0 .275.225.5.5.5h5c.275 0 .5-.225.5-.5v-3zM9.501 14h-5c-.274 0-.5.225-.5.5s.226.5.5.5h5c.274 0 .499-.225.499-.5s-.225-.5-.499-.5zM9.501 12h-5c-.274 0-.5.225-.5.5s.226.5.5.5h5c.274 0 .499-.225.499-.5s-.225-.5-.499-.5zM9.501 16h-5c-.274 0-.5.225-.5.5s.226.5.5.5h5c.274 0 .499-.225.499-.5s-.225-.5-.499-.5z" + }, + "children": [] + }] +}; +exports.news = news; +var notesOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.324 4.367c-.368-.324-.84-.5-1.324-.5l-.248.016-9 1.25c-1.001.125-1.752.975-1.752 1.984v6.111c-1.746.551-3 2.034-3 3.772 0 2.205 2.019 4 4.5 4 1.695 0 3.169-.842 3.937-2.078.803.667 1.879 1.078 3.063 1.078 2.481 0 4.5-1.795 4.5-4v-10.133c0-.574-.246-1.119-.676-1.5zm-7.324 11.633v-4.256l3-.45v1.737c-1.693.208-3 1.46-3 2.969zm6 0c0 1.104-1.119 2-2.5 2s-2.5-.896-2.5-2 1.119-2 2.5-2c.172 0 .338.014.5.041v-3.908l-5 .75v6.117c0 1.104-1.119 2-2.5 2s-2.5-.896-2.5-2 1.119-2 2.5-2c.172 0 .338.014.5.041v-7.924l9-1.25v10.133z" + }, + "children": [] + }] +}; +exports.notesOutline = notesOutline; +var notes = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.831 4.059c-.107-.095-.243-.139-.394-.121l-11 1.25c-.249.031-.437.244-.437.496v10.316c-1.654 0-3 1.122-3 2.5s1.346 2.5 3 2.5 3-1.122 3-2.5v-7.609l6-.625v3.734c-1.654 0-3 1.122-3 2.5s1.346 2.5 3 2.5 3-1.122 3-2.5v-12.066c0-.144-.062-.28-.169-.375z" + }, + "children": [] + }] +}; +exports.notes = notes; +var pen = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M21.329 7.207c0-1.212-.472-2.352-1.329-3.207s-1.996-1.329-3.207-1.329c-1.199 0-2.327.463-3.18 1.304-.027.025-7.967 7.964-7.967 7.964-.373.373-.717.91-.967 1.514-.195.473-1.979 5.863-2.336 6.939-.119.358-.025.754.242 1.021.189.189.445.293.707.293.105 0 .211-.018.314-.051 1.076-.355 6.465-2.141 6.938-2.336.603-.248 1.14-.592 1.515-.967l2.157-2.156.076.01c.64 0 1.28-.244 1.769-.732l4.5-4.5c.696-.695.887-1.699.588-2.572.107-.386.18-.783.18-1.195zm-11.864 10.379c-.406.143-1.145.393-2.038.691l-1.704-1.704c.301-.894.551-1.634.691-2.038l3.051 3.051zm-4.097.047l.999.999-1.498.499.499-1.498zm7.698-3.113l-2.42 2.42-.235.18-3.53-3.529.18-.234 7.131-7.131 2.731 2.731-3.69 3.69c-.513.512-.549 1.289-.167 1.873zm6.08-4.959l-4.5 4.5c-.098.099-.226.146-.354.146s-.256-.049-.354-.146c-.195-.194-.195-.512 0-.707l4.5-4.5c.194-.194.512-.194.707 0 .196.195.197.511.001.707zm.107-1.764c-.519-.168-1.108-.062-1.521.35l-.102.102-2.731-2.731.078-.078c.984-.98 2.652-.981 3.608-.023.479.479.743 1.116.743 1.793.001.199-.03.394-.075.587z" + }, + "children": [] + }] +}; +exports.pen = pen; +var pencil = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M21 6.879l-3.879-3.879c-.293-.293-.678-.439-1.061-.439-.384 0-.767.146-1.06.439l-10.939 10.939c-.293.293-.558.727-.75 1.188-.192.463-.311.959-.311 1.373v4.5h4.5c.414 0 .908-.119 1.371-.311.463-.192.896-.457 1.189-.75l10.94-10.939c.293-.293.439-.678.439-1.061 0-.384-.146-.767-.439-1.06zm-15.232 8.182l8.293-8.293 1.232 1.232-8.293 8.293-1.232-1.232zm1.732 3.939h-1.5l-1-1v-1.5c0-.077.033-.305.158-.605.01-.02 2.967 2.938 2.967 2.938-.322.134-.548.167-.625.167zm1.439-.768l-1.232-1.232 8.293-8.293 1.232 1.232-8.293 8.293zm9-9l-3.172-3.172 1.293-1.293 3.17 3.172-1.291 1.293z" + }, + "children": [] + }] +}; +exports.pencil = pencil; +var phoneOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M19.502 3.672l-1.795-1.793c-.566-.567-1.32-.879-2.121-.879s-1.555.312-2.121.879l-1.586 1.586c-1.17 1.17-1.17 3.072 0 4.242l1.379 1.379-4.172 4.172-1.379-1.379c-.566-.567-1.32-.879-2.121-.879s-1.555.312-2.121.879l-1.586 1.586c-1.17 1.17-1.17 3.072 0 4.242l1.794 1.793c.465.465 1.796 1.545 4.116 1.545 2.764 0 5.694-1.529 8.711-4.545 6.245-6.246 4.825-11.002 3.002-12.828zm-6.209 1.207l1.586-1.586c.195-.195.451-.293.707-.293s.512.098.707.293l1.083 1.082-3.001 3-1.082-1.082c-.391-.391-.391-1.023 0-1.414zm-10 11.414c-.391-.391-.391-1.023 0-1.414l1.586-1.586c.195-.195.451-.293.707-.293s.512.098.707.293l1.082 1.082-2.999 3-1.083-1.082zm11.793-1.207c-3.083 3.082-5.551 3.959-7.297 3.959-1.349 0-2.267-.523-2.702-.959-.004-.004 2.995-3.004 2.995-3.004l.297.297c.195.195.451.293.707.293s.512-.098.707-.293l5.586-5.586c.391-.391.391-1.023 0-1.414l-.297-.297 3.001-3c1.003 1.004 2.467 4.539-2.997 10.004z" + }, + "children": [] + }] +}; +exports.phoneOutline = phoneOutline; +var phone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M13.374 7.083l3.711-3.71-.438-.434c-.566-.566-1.555-.566-2.121 0l-1.586 1.586c-.284.284-.44.661-.44 1.061s.156.777.438 1.06l.436.437zM6.646 12.939c-.566-.566-1.555-.566-2.121 0l-1.586 1.586c-.283.284-.439.661-.439 1.061s.156.777.441 1.062l.437.432 3.703-3.703-.435-.438zM18.437 4.729l-.354-.354-3.708 3.708.65.649c.095.095.146.22.146.354s-.052.259-.146.354l-5.586 5.586c-.189.188-.518.189-.707 0l-.65-.65-3.702 3.71.354.354c.26.26 1.246 1.105 3.056 1.105 1.616 0 4.256-.712 7.65-4.105 6.773-6.775 3.158-10.55 2.997-10.711z" + }, + "children": [] + }] +}; +exports.phone = phone; +var piOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M20.121 7.121c-.566-.567-1.32-.879-2.121-.879s-1.555.312-2.121.879c-.233.233-.546.362-.879.362s-.646-.129-.879-.362c-1.366-1.366-3.185-2.118-5.121-2.118s-3.755.752-5.121 2.118c-.567.567-.879 1.32-.879 2.121s.312 1.555.879 2.121c.566.567 1.32.879 2.121.879v4.758c0 1.654 1.346 3 3 3s3-1.346 3-3c0 1.654 1.346 3 3 3s3-1.346 3-3v-4.166c.784-.356 1.501-.851 2.12-1.47.568-.567.88-1.321.88-2.122s-.312-1.554-.879-2.121zm-1.414 2.828c-.768.767-1.715 1.245-2.707 1.437v5.614c0 .553-.447 1-1 1s-1-.447-1-1v-5.614c-.992-.191-1.939-.67-2.707-1.437-.374-.374-.821-.623-1.293-.775v7.826c0 .553-.447 1-1 1s-1-.447-1-1v-7.827c-.473.152-.919.402-1.293.776-.195.196-.451.293-.707.293s-.512-.098-.707-.293c-.391-.391-.391-1.023 0-1.414 1.021-1.021 2.364-1.532 3.707-1.532s2.685.511 3.707 1.532c.633.632 1.463.948 2.293.948.831 0 1.661-.316 2.293-.948.195-.195.451-.293.707-.293s.512.098.707.293c.391.391.391 1.024 0 1.414z" + }, + "children": [] + }] +}; +exports.piOutline = piOutline; +var pi = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.707 8.535c-.391-.391-1.023-.391-1.414 0-1.264 1.264-3.321 1.264-4.586 0-2.045-2.044-5.371-2.042-7.414 0-.391.391-.391 1.023 0 1.414s1.023.391 1.414 0c.374-.374.82-.624 1.293-.776v7.827c0 .553.447 1 1 1s1-.447 1-1v-7.826c.472.152.919.401 1.293.775.768.767 1.715 1.245 2.707 1.437v5.614c0 .553.447 1 1 1s1-.447 1-1v-5.614c.992-.191 1.939-.67 2.707-1.437.391-.39.391-1.023 0-1.414z" + }, + "children": [] + }] +}; +exports.pi = pi; +var pinOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M21.436 7.586l-3.998-4.02c-.752-.756-2.063-.764-2.83-.006-.196.196-.35.436-.418.629-.653 1.362-1.354 2.215-2.254 2.727l-.217.105c-.968.485-2.285.979-4.719.979-.266 0-.521.052-.766.152-.484.202-.879.595-1.082 1.084-.199.484-.199 1.041 0 1.525.104.249.25.471.435.651l3.235 3.235-3.822 5.353 5.352-3.822 3.227 3.227c.186.189.406.339.656.441.247.103.503.154.766.154s.519-.052.765-.154c.498-.205.883-.592 1.08-1.078.103-.242.155-.507.155-.768 0-2.436.494-3.752.978-4.721.496-.992 1.369-1.748 2.754-2.414.271-.104.51-.256.711-.457.772-.782.768-2.051-.008-2.822zm-5.248 4.801c-.819 1.643-1.188 3.37-1.195 5.604l-7.993-7.991c2.139 0 3.814-.335 5.396-1.084l.235-.105c1.399-.699 2.468-1.893 3.388-3.834l3.924 4.051c-1.863.893-3.056 1.96-3.755 3.359z" + }, + "children": [] + }] +}; +exports.pinOutline = pinOutline; +var pin = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M16.729 4.271c-.389-.391-1.021-.393-1.414-.004-.104.104-.176.227-.225.355-.832 1.736-1.748 2.715-2.904 3.293-1.297.64-2.786 1.085-5.186 1.085-.13 0-.26.025-.382.076-.245.102-.439.297-.541.541-.101.244-.101.52 0 .764.051.123.124.234.217.326l3.243 3.243-4.537 6.05 6.05-4.537 3.242 3.242c.092.094.203.166.326.217.122.051.252.078.382.078s.26-.027.382-.078c.245-.102.44-.295.541-.541.051-.121.077-.252.077-.381 0-2.4.444-3.889 1.083-5.166.577-1.156 1.556-2.072 3.293-2.904.129-.049.251-.121.354-.225.389-.393.387-1.025-.004-1.414l-3.997-4.02z" + }, + "children": [] + }] +}; +exports.pin = pin; +var pipette = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M21.384 7.331c.073-1.199-.354-2.388-1.146-3.179-.732-.731-1.793-1.152-2.912-1.152-1.176 0-2.206.453-2.825 1.243-.692.883-1.392 2.625-1.769 3.647l-1.616-1.617c-.392-.391-1.023-.391-1.414 0-.392.392-.392 1.023 0 1.414l.293.293-5.231 5.232c-.375.375-.719.912-.968 1.516-.019.043-1.726 4.328-.093 5.959.527.526 1.33.707 2.178.707 1.778-.002 3.753-.787 3.783-.801.602-.248 1.141-.592 1.514-.967l5.232-5.232.293.293c.195.195.451.293.707.293s.512-.098.707-.293c.391-.391.391-1.022 0-1.414l-1.617-1.616c1.023-.376 2.766-1.075 3.648-1.769.721-.562 1.17-1.493 1.236-2.557zm-16.265 11.944c-.247-.295-.105-1.508.154-2.58l2.422 2.423c-1.071.261-2.283.403-2.576.157zm4.645-1.061c-.188.188-.511.388-.865.533l-.116.042-3.181-3.18.043-.117c.146-.354.346-.678.533-.864l5.232-5.231 3.586 3.586-5.232 5.231z" + }, + "children": [] + }] +}; +exports.pipette = pipette; +var planeOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M20.988 12.396l-4.988-2.851v-4.795c0-1.93-1.57-3.5-3.5-3.5s-3.5 1.57-3.5 3.5v4.795l-4.988 2.851c-1.317.752-1.865 2.371-1.276 3.769.589 1.399 2.132 2.135 3.589 1.72l2.675-.765v.838l-.874.699c-1.198.959-1.48 2.667-.653 3.959.827 1.293 2.494 1.753 3.869 1.066.004-.001.5-.183 1.158-.183l1.158.183c1.375.687 3.042.227 3.869-1.066.827-1.292.545-3-.653-3.959l-.874-.699v-.838l2.676.765c1.457.415 3-.321 3.589-1.72s.041-3.017-1.277-3.769zm-.566 2.992c-.197.466-.711.713-1.196.573l-5.226-1.492v4.451l1.625 1.3c.399.319.493.889.218 1.32-.275.43-.828.583-1.29.355-.008-.004-.824-.395-2.053-.395s-2.045.391-2.053.395c-.462.227-1.015.074-1.29-.355-.275-.431-.182-1 .218-1.32l1.625-1.3v-4.451l-5.226 1.493c-.485.14-.999-.107-1.196-.573-.196-.466-.014-1.005.426-1.256l5.996-3.427v-5.956c0-.827.673-1.5 1.5-1.5s1.5.673 1.5 1.5v5.956l5.996 3.426c.44.251.622.79.426 1.256z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20.988 12.396l-4.988-2.851v-4.795c0-1.93-1.57-3.5-3.5-3.5s-3.5 1.57-3.5 3.5v4.795l-4.988 2.851c-1.317.752-1.865 2.371-1.276 3.769.589 1.399 2.132 2.135 3.589 1.72l2.675-.765v.838l-.874.699c-1.198.959-1.48 2.667-.653 3.959.827 1.293 2.494 1.753 3.869 1.066.004-.001.5-.183 1.158-.183l1.158.183c1.375.687 3.042.227 3.869-1.066.827-1.292.545-3-.653-3.959l-.874-.699v-.838l2.676.765c1.457.415 3-.321 3.589-1.72s.041-3.017-1.277-3.769zm-.566 2.992c-.197.466-.711.713-1.196.573l-5.226-1.492v4.451l1.625 1.3c.399.319.493.889.218 1.32-.275.43-.828.583-1.29.355-.008-.004-.824-.395-2.053-.395s-2.045.391-2.053.395c-.462.227-1.015.074-1.29-.355-.275-.431-.182-1 .218-1.32l1.625-1.3v-4.451l-5.226 1.493c-.485.14-.999-.107-1.196-.573-.196-.466-.014-1.005.426-1.256l5.996-3.427v-5.956c0-.827.673-1.5 1.5-1.5s1.5.673 1.5 1.5v5.956l5.996 3.426c.44.251.622.79.426 1.256z" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "12.5", + "cy": "4.5", + "r": ".5" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "12.5", + "cy": "4.5", + "r": ".5" + }, + "children": [] + }] + }] + }] +}; +exports.planeOutline = planeOutline; +var plane = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M19.996 13.507l-5.996-3.426v-5.956c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v5.956l-5.996 3.426c-.439.251-.622.79-.426 1.256.197.466.711.713 1.196.573l5.226-1.492v4.451l-1.625 1.3c-.387.31-.488.856-.239 1.284s.776.608 1.235.425l2.129-.852 2.129.852c.121.048.247.071.371.071.347 0 .681-.181.864-.497.249-.428.147-.975-.239-1.284l-1.625-1.3v-4.451l5.226 1.493.274.039c.394 0 .762-.233.922-.612.196-.466.014-1.005-.426-1.256zm-7.496-9.132c-.276 0-.5-.224-.5-.5s.224-.5.5-.5.5.224.5.5-.224.5-.5.5z" + }, + "children": [] + }] +}; +exports.plane = plane; +var plug = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18,6h-1V3c0-0.6-0.4-1-1-1h-2c-0.6,0-1,0.4-1,1v3h-2V3c0-0.6-0.4-1-1-1H8C7.4,2,7,2.4,7,3v3H6C5.4,6,5,6.4,5,7v4\r\n\tc0,0.1,0,0.1,0,0.2c0.2,2.5,1.8,4.6,4,5.6V20c0,1.1,0.9,2,2,2h2c1.1,0,2-0.9,2-2v-3.2c2.2-1,3.7-3.1,4-5.6c0-0.1,0-0.1,0-0.2V7\r\n\tC19,6.4,18.6,6,18,6z M14,3h2v3h-2V3z M8,3h2v3H8V3z M13,20h-2v-2h2V20z M12,15.5c-2.2,0-4.1-1.5-4.7-3.5h9.5\r\n\tC16.1,14,14.2,15.5,12,15.5z M17,10.5c0,0.2,0,0.3-0.1,0.5H7.1C7,10.8,7,10.7,7,10.5V8h10V10.5z" + }, + "children": [] + }] +}; +exports.plug = plug; +var plusOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 21c-1.654 0-3-1.346-3-3l.053-3.053-3.035.053c-1.672 0-3.018-1.346-3.018-3s1.346-3 3-3l3.053-.054-.053-2.928c0-1.672 1.346-3.018 3-3.018s3 1.346 3 3l.055 2.946 2.963.054c1.636 0 2.982 1.346 2.982 3s-1.346 3-3 3l-2.945-.053-.055 3.071c0 1.636-1.346 2.982-3 2.982zm-1-8v5.018c0 .533.449.982 1 .982s1-.449 1-1v-5h5.018c.533 0 .982-.449.982-1s-.449-1-1-1h-5v-5c0-.569-.449-1-1-1s-1 .449-1 1v5h-5c-.569 0-1 .449-1 1s.449 1 1 1h5z" + }, + "children": [] + }] +}; +exports.plusOutline = plusOutline; +var plus = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18 10h-4v-4c0-1.104-.896-2-2-2s-2 .896-2 2l.071 4h-4.071c-1.104 0-2 .896-2 2s.896 2 2 2l4.071-.071-.071 4.071c0 1.104.896 2 2 2s2-.896 2-2v-4.071l4 .071c1.104 0 2-.896 2-2s-.896-2-2-2z" + }, + "children": [] + }] +}; +exports.plus = plus; +var pointOfInterestOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M16.5 4c1.93 0 3.5 1.57 3.5 3.5s-1.57 3.5-3.5 3.5h-1.5v2h1.5c1.93 0 3.5 1.57 3.5 3.5s-1.57 3.5-3.5 3.5-3.5-1.57-3.5-3.5v-1.5h-2v1.5c0 1.93-1.57 3.5-3.5 3.5s-3.5-1.57-3.5-3.5 1.57-3.5 3.5-3.5h1.5v-2h-1.5c-1.93 0-3.5-1.57-3.5-3.5s1.57-3.5 3.5-3.5 3.5 1.57 3.5 3.5v1.5h2v-1.5c0-1.93 1.57-3.5 3.5-3.5m-1.5 5h1.5c.827 0 1.5-.674 1.5-1.5 0-.828-.673-1.5-1.5-1.5s-1.5.672-1.5 1.5v1.5m-7.5 0h1.5v-1.5c0-.828-.673-1.5-1.5-1.5s-1.5.672-1.5 1.5c0 .826.673 1.5 1.5 1.5m9 9c.827 0 1.5-.674 1.5-1.5 0-.828-.673-1.5-1.5-1.5h-1.5v1.5c0 .826.673 1.5 1.5 1.5m-9 0c.827 0 1.5-.674 1.5-1.5v-1.5h-1.5c-.827 0-1.5.672-1.5 1.5 0 .826.673 1.5 1.5 1.5m9-16c-1.857 0-3.504.926-4.5 2.341-.996-1.415-2.643-2.341-4.5-2.341-3.033 0-5.5 2.468-5.5 5.5 0 1.857.926 3.504 2.341 4.5-1.415.996-2.341 2.643-2.341 4.5 0 3.032 2.467 5.5 5.5 5.5 1.857 0 3.504-.926 4.5-2.341.996 1.415 2.643 2.341 4.5 2.341 3.033 0 5.5-2.468 5.5-5.5 0-1.857-.926-3.504-2.341-4.5 1.415-.996 2.341-2.643 2.341-4.5 0-3.032-2.467-5.5-5.5-5.5zM13 11h-2v2h2z" + }, + "children": [] + }] +}; +exports.pointOfInterestOutline = pointOfInterestOutline; +var pointOfInterest = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M16.5 11c1.93 0 3.5-1.57 3.5-3.5s-1.57-3.5-3.5-3.5-3.5 1.57-3.5 3.5v1.5h-2v-1.5c0-1.93-1.57-3.5-3.5-3.5s-3.5 1.57-3.5 3.5 1.57 3.5 3.5 3.5h1.5v2h-1.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5v-1.5h2v1.5c0 1.93 1.57 3.5 3.5 3.5s3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5h-1.5v-2h1.5zm-1.5-3.5c0-.828.673-1.5 1.5-1.5s1.5.672 1.5 1.5c0 .826-.673 1.5-1.5 1.5h-1.5v-1.5zm-6 9c0 .826-.673 1.5-1.5 1.5s-1.5-.674-1.5-1.5c0-.828.673-1.5 1.5-1.5h1.5v1.5zm0-7.5h-1.5c-.827 0-1.5-.674-1.5-1.5 0-.828.673-1.5 1.5-1.5s1.5.672 1.5 1.5v1.5zm4 4h-2v-2h2v2zm3.5 2c.827 0 1.5.672 1.5 1.5 0 .826-.673 1.5-1.5 1.5s-1.5-.674-1.5-1.5v-1.5h1.5z" + }, + "children": [] + }] +}; +exports.pointOfInterest = pointOfInterest; +var powerOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M17.51 6.062c-.814-.815-1.98-1.05-3.01-.729v-.333c0-1.656-1.344-3-3-3s-3 1.344-3 3v.332c-1.029-.319-2.195-.085-3.01.73-1.605 1.606-2.49 3.741-2.49 6.011s.885 4.405 2.49 6.011c1.604 1.605 3.739 2.489 6.01 2.489s4.405-.884 6.01-2.489c1.605-1.605 2.49-3.74 2.49-6.011s-.885-4.405-2.49-6.011zm-7.01-1.062c0-.552.447-1 1-1s1 .448 1 1v5c0 .552-.447 1-1 1s-1-.448-1-1v-5zm-1 3.803v1.197c0 1.104.896 2 2 2s2-.896 2-2v-1.182c.095.284.248.554.475.78.661.661 1.025 1.54 1.025 2.475s-.364 1.814-1.025 2.476c-1.322 1.321-3.627 1.321-4.949 0-.662-.662-1.026-1.541-1.026-2.476s.364-1.814 1.025-2.476c.231-.23.383-.504.475-.794zm6.596 7.867c-1.228 1.228-2.859 1.903-4.596 1.903s-3.368-.676-4.596-1.903c-1.227-1.228-1.904-2.86-1.904-4.597s.677-3.369 1.904-4.597c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414c-.85.851-1.318 1.981-1.318 3.183s.468 2.333 1.318 3.183c.85.85 1.979 1.317 3.182 1.317s2.332-.468 3.182-1.317c.851-.85 1.318-1.98 1.318-3.183s-.468-2.333-1.318-3.183c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0c1.227 1.229 1.904 2.861 1.904 4.597s-.677 3.369-1.904 4.597z" + }, + "children": [] + }] +}; +exports.powerOutline = powerOutline; +var power = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M11.5 18.573c-1.736 0-3.368-.676-4.596-1.903-1.227-1.228-1.904-2.86-1.904-4.597s.677-3.369 1.904-4.597c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414c-.85.851-1.318 1.981-1.318 3.183s.468 2.333 1.318 3.183c.85.85 1.979 1.317 3.182 1.317s2.332-.468 3.182-1.317c.851-.85 1.318-1.98 1.318-3.183s-.468-2.333-1.318-3.183c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0c1.227 1.229 1.904 2.861 1.904 4.597s-.677 3.369-1.904 4.597c-1.228 1.227-2.86 1.903-4.596 1.903zM11.5 11c-.553 0-1-.448-1-1v-5c0-.552.447-1 1-1s1 .448 1 1v5c0 .552-.447 1-1 1z" + }, + "children": [] + }] +}; +exports.power = power; +var printer = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M17 5v-2c0-.552-.448-1-1-1h-9c-.552 0-1 .448-1 1v2c-1.654 0-3 1.346-3 3v10c0 1.654 1.346 3 3 3h11c1.654 0 3-1.346 3-3v-10c0-1.654-1.346-3-3-3zm-9-1h7v5h-7v-5zm-2 3v3c0 .552.448 1 1 1h9c.552 0 1-.448 1-1v-3c.551 0 1 .449 1 1v2.5c0 .827-.673 1.5-1.5 1.5h-10c-.827 0-1.5-.673-1.5-1.5v-2.5c0-.551.449-1 1-1zm11 12h-11c-.551 0-1-.449-1-1v-5.513c.419.318.935.513 1.5.513h10c.565 0 1.081-.195 1.5-.513v5.513c0 .551-.449 1-1 1zM13.5 7h-4c-.276 0-.5.224-.5.5s.224.5.5.5h4c.276 0 .5-.224.5-.5s-.224-.5-.5-.5zM15 16h-7c-.276 0-.5.224-.5.5s.224.5.5.5h7c.276 0 .5-.224.5-.5s-.224-.5-.5-.5zM13.5 5h-4c-.276 0-.5.224-.5.5s.224.5.5.5h4c.276 0 .5-.224.5-.5s-.224-.5-.5-.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17 5v-2c0-.552-.448-1-1-1h-9c-.552 0-1 .448-1 1v2c-1.654 0-3 1.346-3 3v10c0 1.654 1.346 3 3 3h11c1.654 0 3-1.346 3-3v-10c0-1.654-1.346-3-3-3zm-9-1h7v5h-7v-5zm-2 3v3c0 .552.448 1 1 1h9c.552 0 1-.448 1-1v-3c.551 0 1 .449 1 1v2.5c0 .827-.673 1.5-1.5 1.5h-10c-.827 0-1.5-.673-1.5-1.5v-2.5c0-.551.449-1 1-1zm11 12h-11c-.551 0-1-.449-1-1v-5.513c.419.318.935.513 1.5.513h10c.565 0 1.081-.195 1.5-.513v5.513c0 .551-.449 1-1 1zM13.5 7h-4c-.276 0-.5.224-.5.5s.224.5.5.5h4c.276 0 .5-.224.5-.5s-.224-.5-.5-.5zM15 16h-7c-.276 0-.5.224-.5.5s.224.5.5.5h7c.276 0 .5-.224.5-.5s-.224-.5-.5-.5zM13.5 5h-4c-.276 0-.5.224-.5.5s.224.5.5.5h4c.276 0 .5-.224.5-.5s-.224-.5-.5-.5z" + }, + "children": [] + }] + }] + }] +}; +exports.printer = printer; +var puzzleOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M20 11.25v-1.75c0-1.93-1.57-3.5-3.5-3.5h-.759c-.141-1.982-1.953-3.5-4.241-3.5s-4.1 1.518-4.241 3.5h-.759c-1.93 0-3.5 1.57-3.5 3.5v1.75c0 1.012.514 1.847 1.295 2.246-.358.188-.668.469-.894.825-.262.414-.401.908-.401 1.429v2.75c0 1.93 1.57 3.5 3.5 3.5h2.75c.976 0 1.831-.497 2.242-1.299l.036.066c.435.772 1.266 1.233 2.222 1.233h2.75c1.93 0 3.5-1.57 3.5-3.5v-2.75c0-1.013-.515-1.849-1.297-2.247.776-.411 1.297-1.256 1.297-2.253zm-2 7.25c0 .825-.675 1.5-1.5 1.5h-2.75c-.356 0-.724-.216-.391-.766.246-.28.391-.619.391-.984 0-.967-1.007-1.75-2.25-1.75s-2.25.783-2.25 1.75c0 .3.095.576.255.823.507.673.136.927-.255.927h-2.75c-.825 0-1.5-.675-1.5-1.5v-2.75c0-.258.113-.521.384-.521.104 0 .229.039.382.13.28.246.62.391.984.391.966 0 1.75-1.008 1.75-2.25s-.784-2.25-1.75-2.25c-.3 0-.576.095-.822.255-.237.171-.422.243-.562.243-.26 0-.366-.245-.366-.498v-1.75c0-.825.675-1.5 1.5-1.5h2.75c.391 0 .762-.254.243-.927-.148-.247-.243-.523-.243-.823 0-.967 1.007-1.75 2.25-1.75s2.25.783 2.25 1.75c0 .365-.145.704-.391.984-.333.55.035.766.391.766h2.75c.825 0 1.5.675 1.5 1.5v1.75c0 .258-.113.521-.384.521-.104 0-.229-.039-.382-.13-.28-.246-.62-.391-.984-.391-.966 0-1.75 1.008-1.75 2.25s.784 2.25 1.75 2.25c.3 0 .576-.095.822-.255.237-.171.422-.244.562-.243.259 0 .365.245.365.498v2.75zm-13-5.806c.116.032.236.054.365.054.342 0 .683-.119 1.038-.364l.069-.041c.097-.063.188-.093.278-.093.354 0 .75.535.75 1.25s-.396 1.25-.75 1.25c-.108 0-.217-.048-.324-.142l-.143-.104c-.301-.183-.604-.275-.899-.275-.134 0-.261.023-.384.059v-1.594zm12.635 1.558c-.342 0-.683.119-1.038.364l-.069.041c-.097.063-.188.093-.277.093-.354 0-.75-.535-.75-1.25s.396-1.25.75-1.25c.108 0 .217.048.324.142l.143.104c.302.183.604.275.899.275.136 0 .262-.025.384-.062v1.597c-.117-.032-.237-.054-.366-.054zm-6.943 5.748c.101-.346.093-.816-.305-1.396l-.044-.074c-.062-.098-.094-.189-.094-.279 0-.354.534-.75 1.25-.75s1.25.396 1.25.75c0 .108-.048.217-.143.325l-.104.142c-.325.537-.311.979-.22 1.284h-1.59z" + }, + "children": [] + }] +}; +exports.puzzleOutline = puzzleOutline; +var puzzle = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M16.25 11.25c.364 0 .704.145.984.391.549.332.766-.034.766-.391v-1.75c0-.825-.675-1.5-1.5-1.5h-2.75c-.356 0-.724-.216-.391-.766.246-.28.391-.619.391-.984 0-.967-1.007-1.75-2.25-1.75s-2.25.783-2.25 1.75c0 .3.095.576.255.823.507.673.136.927-.255.927h-2.75c-.825 0-1.5.675-1.5 1.5v1.75c0 .391.254.762.928.244.246-.149.522-.244.822-.244.966 0 1.75 1.008 1.75 2.25s-.784 2.25-1.75 2.25c-.364 0-.704-.145-.984-.391-.549-.332-.766.034-.766.391v2.75c0 .825.675 1.5 1.5 1.5h2.75c.391 0 .762-.254.243-.927-.148-.247-.243-.523-.243-.823 0-.967 1.007-1.75 2.25-1.75s2.25.783 2.25 1.75c0 .365-.145.704-.391.984-.333.55.035.766.391.766h2.75c.825 0 1.5-.675 1.5-1.5v-2.75c0-.391-.254-.762-.928-.244-.246.149-.522.244-.822.244-.966 0-1.75-1.008-1.75-2.25s.784-2.25 1.75-2.25z" + }, + "children": [] + }] +}; +exports.puzzle = puzzle; +var radarOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M11.997 4.5c-4.685 0-8.497 3.812-8.497 8.5s3.813 8.5 8.5 8.5c4.688 0 8.5-3.812 8.5-8.5s-3.812-8.5-8.503-8.5zm.003 15c-3.584 0-6.5-2.916-6.5-6.5s2.914-6.5 6.5-6.5c3.584 0 6.5 2.916 6.5 6.5s-2.916 6.5-6.5 6.5zM15.348 12.031l.152-.031h.879c-.383-1.677-1.699-2.995-3.379-3.378v.878c0 .551-.449 1-1 1-.497 0-.892-.371-.969-.846l-.031-.154v-.88c-1.678.382-2.997 1.702-3.38 3.38h.88l.153.031c.476.076.847.472.847.969s-.371.893-.846.969l-.154.031h-.878c.384 1.677 1.702 2.995 3.378 3.379v-.879l.031-.154c.077-.476.472-.846.969-.846s.893.371.969.848l.031.152v.879c1.677-.383 2.996-1.702 3.379-3.379h-.879l-.152-.031c-.477-.076-.848-.472-.848-.969s.371-.893.848-.969zm-.446 2.867c-.264.399-.604.74-1.004 1.002-.256-.81-1.004-1.401-1.897-1.401s-1.642.592-1.898 1.401c-.4-.262-.74-.603-1.003-1.002.81-.256 1.401-1.006 1.401-1.898 0-.895-.592-1.643-1.402-1.898.263-.399.603-.74 1.004-1.002.256.81 1.005 1.401 1.898 1.401.894 0 1.644-.593 1.899-1.403.399.264.74.604 1.002 1.004-.81.256-1.401 1.006-1.401 1.898-.001.893.591 1.643 1.401 1.898z" + }, + "children": [] + }] +}; +exports.radarOutline = radarOutline; +var radar = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 20c3.86 0 7-3.141 7-7s-3.14-7-7.003-7c-3.858 0-6.997 3.141-6.997 7s3.14 7 7 7zm-1-11.898v1.898c0 .553.448 1 1 1s1-.447 1-1v-1.898c1.956.398 3.5 1.942 3.899 3.898h-1.899c-.552 0-1 .447-1 1s.448 1 1 1h1.899c-.399 1.956-1.943 3.5-3.899 3.898v-1.898c0-.553-.448-1-1-1s-1 .447-1 1v1.898c-1.956-.398-3.5-1.942-3.899-3.898h1.899c.552 0 1-.447 1-1s-.448-1-1-1h-1.899c.399-1.956 1.942-3.5 3.899-3.898z" + }, + "children": [] + }] +}; +exports.radar = radar; +var refreshOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M17.368 4.998c-.488 0-1.2.145-1.956.773-1.036-.489-2.189-.771-3.412-.771-4.418 0-8 3.582-8 8s3.582 8 8 8c4.312 0 8-3.316 8-8v-4.936c-.016-2.111-1.375-3.066-2.632-3.066zm.632 8.002h-5.128c-1.134 0-1.407-.561-.604-1.363l1.448-1.402c-.562-.371-1.22-.549-1.909-.549-.93 0-1.805.375-2.464 1.033-.657.656-1.02 1.537-1.02 2.467 0 .933.362 1.811 1.02 2.469.659.658 1.534 1.021 2.464 1.021s1.805-.36 2.465-1.019c.177-.18.334-.372.468-.579.222-.345.596-.533.979-.533.216 0 .433.06.625.185.54.346.697 1.063.351 1.604-.223.344-.484.668-.78.965-1.097 1.099-2.556 1.703-4.106 1.703-1.55 0-3.009-.604-4.104-1.701-1.097-1.096-1.701-2.555-1.701-4.106 0-1.551.604-3.012 1.702-4.104 1.096-1.098 2.554-1.7 4.104-1.7 1.311 0 2.551.436 3.566 1.229l1.154-1.158c.311-.312.602-.461.841-.461.377 0 .627.372.632 1.065v4.934zm-7.08.05c.162.392.63.95 1.952.95h1.299s-.21.504-.614.907-1.086.745-1.75.745-1.289-.246-1.758-.715c-.468-.47-.727-1.088-.727-1.752s.258-1.139.726-1.604c.472-.472 1.097-.581 1.759-.581l-.246.123c-.935.934-.803 1.536-.641 1.927z" + }, + "children": [] + }] +}; +exports.refreshOutline = refreshOutline; +var refresh = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12.872 13.191h5.128v-5.127c-.008-1.135-.671-1.408-1.473-.605l-1.154 1.158c-1.015-.795-2.257-1.23-3.566-1.23-1.55 0-3.009.604-4.104 1.701-1.099 1.092-1.703 2.553-1.703 4.103 0 1.553.604 3.012 1.701 4.107 1.097 1.097 2.555 1.702 4.106 1.702 1.55 0 3.009-.605 4.106-1.703.296-.297.558-.621.78-.965.347-.541.19-1.26-.35-1.605-.539-.346-1.258-.189-1.604.35-.133.207-.292.4-.468.58-.659.658-1.534 1.02-2.464 1.02-.93 0-1.805-.361-2.464-1.02-.657-.658-1.02-1.533-1.02-2.465 0-.93.362-1.805 1.02-2.461.659-.658 1.534-1.021 2.464-1.021.688 0 1.346.201 1.909.572l-1.448 1.451c-.803.802-.53 1.458.604 1.458z" + }, + "children": [] + }] +}; +exports.refresh = refresh; +var rssOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M8 4.999c-1.657 0-3.011 1.344-3.011 3l.005 9c0 2.209 1.793 4 4.002 4l9.003.001c1.655 0 3-1.346 3-3.001.001-7.179-5.819-13-12.999-13zm1.001 14c-1.105.002-2.001-.894-2.001-1.999-.002-1.105.894-2.001 2.001-2.001 1.105-.002 2.001.894 1.999 2.001.002 1.105-.894 2.001-1.999 1.999zm4.499 0c-.829 0-1.5-.671-1.5-1.5 0-1.931-1.57-3.5-3.5-3.5-.829 0-1.5-.671-1.5-1.5s.671-1.5 1.5-1.5c3.584 0 6.5 2.916 6.5 6.5 0 .829-.671 1.5-1.5 1.5zm4 0c-.829 0-1.5-.671-1.5-1.5 0-4.136-3.364-7.5-7.5-7.5-.829 0-1.5-.671-1.5-1.5s.671-1.5 1.5-1.5c5.79 0 10.5 4.71 10.5 10.5 0 .829-.671 1.5-1.5 1.5z" + }, + "children": [] + }] +}; +exports.rssOutline = rssOutline; +var rss = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M6.002 15.999c-1.107 0-2.004.897-2.002 2.001 0 1.104.896 2.001 2.002 1.999 1.103.002 2-.894 1.998-1.999.002-1.107-.895-2.003-1.998-2.001zM6 4c-1.104 0-2 .896-2 2s.896 2 2 2c5.514 0 10 4.486 10 10 0 1.104.896 2 2 2s2-.896 2-2c0-7.72-6.28-14-14-14zM6 10c-1.104 0-2 .896-2 2s.896 2 2 2c2.205 0 4 1.794 4 4 0 1.104.896 2 2 2s2-.896 2-2c0-4.411-3.589-8-8-8z" + }, + "children": [] + }] +}; +exports.rss = rss; +var scissorsOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.124 5.27l.25.013c.163.022.319.02.468.077.146.05.292.084.42.146.254.131.471.262.631.422.174.137.248.279.321.371l.108.146-.166-.074c-.105-.043-.258-.139-.442-.16-.129-.037-.282-.047-.442-.047l-.15.002-.318.061c-.103.01-.201.078-.295.113-.186.088-.35.203-.461.34l-.057.076c.451.477.732 1.115.732 1.824 0 1.471-1.195 2.668-2.666 2.668-.908 0-1.707-.457-2.189-1.15l-1.657 2.625c1.712 1.92 3.22 4.348 3.22 4.348 1.037 1.429-.789 3.947-.789 3.947l-3.552-6.522-3.551 6.522s-1.826-2.52-.789-3.947c0 0 1.507-2.428 3.22-4.348l-1.656-2.625c-.482.693-1.283 1.15-2.188 1.15-1.472 0-2.667-1.197-2.667-2.668 0-1.469 1.195-2.666 2.667-2.666.925 0 1.739.475 2.218 1.193.955 1.428 1.739 3.156 2.748 4.334 1.008-1.178 1.792-2.906 2.746-4.336.48-.717 1.295-1.191 2.221-1.191l.186.018.326-.188.383-.211c.132-.072.297-.107.449-.158.224-.07.475-.105.721-.105m-2.069 4.376c.273 0 .547-.104.756-.312.416-.416.416-1.092 0-1.508-.209-.208-.481-.312-.754-.312s-.545.104-.754.312l-.24.377c-.144.381-.066.826.24 1.131.207.209.479.312.752.312m-9.931 0c.272 0 .545-.104.752-.312.308-.305.382-.75.237-1.131l-.237-.377c-.207-.208-.48-.312-.753-.312s-.547.104-.755.312c-.417.416-.417 1.092 0 1.508.208.208.482.312.756.312m4.965 3.762c.218 0 .396-.178.396-.395 0-.22-.176-.396-.396-.396-.219 0-.394.176-.394.396 0 .217.176.395.394.395m7.035-10.138c-.448 0-.901.066-1.312.191l-.117.036c-.168.051-.426.126-.707.28l-.271.148c-1.388.102-2.656.815-3.467 1.961l-.079.108c-.39.584-.741 1.192-1.082 1.784-.339-.592-.69-1.199-1.081-1.784l-.078-.107c-.877-1.239-2.289-1.974-3.807-1.974-2.574 0-4.667 2.093-4.667 4.666s2.094 4.668 4.667 4.668c.309 0 .611-.03.908-.09-1.016 1.338-1.777 2.53-1.948 2.803-1.714 2.467.392 5.619.835 6.229.377.521.98.826 1.619.826l.129-.004c.686-.044 1.3-.437 1.628-1.039l1.795-3.298 1.795 3.298c.328.604.943.995 1.628 1.039l.129.004c.639 0 1.241-.306 1.619-.826.443-.61 2.549-3.764.834-6.229-.17-.271-.932-1.465-1.947-2.803.295.06.601.09.908.09 2.573 0 4.668-2.095 4.668-4.668l-.004-.179c.467-.096.898-.356 1.2-.758.547-.729.536-1.733-.032-2.445l-.049-.067-.039-.053c-.102-.146-.279-.394-.572-.644-.35-.326-.738-.547-1.045-.705-.275-.136-.488-.201-.628-.244l-.062-.02c-.333-.117-.622-.146-.784-.16l-.054-.006-.086-.01-.444-.018z" + }, + "children": [] + }] +}; +exports.scissorsOutline = scissorsOutline; +var scissors = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M20.625 5.515c-1-1.522-2.915-1.67-4.397-.824l-.186.107-.076-.003c-1.042 0-2.01.511-2.604 1.369l-.034.045c-.43.645-.723 1.236-1.005 1.809-.255.516-.5 1.01-.824 1.483-.325-.475-.57-.97-.826-1.486-.283-.571-.575-1.162-1.004-1.806l-.033-.044c-.593-.859-1.562-1.37-2.603-1.37-1.747 0-3.167 1.42-3.167 3.166 0 1.747 1.421 3.168 3.167 3.168.775 0 1.515-.287 2.087-.791l.652 1.198c-1.621 1.876-2.979 4.054-3.019 4.121-1.236 1.702.705 4.42.789 4.534.094.131.245.207.405.207.204-.012.357-.11.439-.261l3.112-5.717 3.113 5.717c.082.15.235.249.407.26.174.019.336-.066.437-.206.083-.114 2.024-2.832.809-4.504l-.323-.521c-1.076-1.736-1.187-1.916-2.715-3.634l.651-1.195c.572.504 1.313.791 2.088.791 1.746 0 3.167-1.421 3.167-3.168 0-.634-.191-1.246-.547-1.768.472-.27.997-.123 1.456.095.466.191.897-.377.584-.772zm-13.625 3.485c-.552 0-1-.447-1-1s.448-1 1-1 1 .447 1 1-.448 1-1 1zm4.5 3.395c-.277 0-.5-.225-.5-.5 0-.277.223-.5.5-.5s.5.223.5.5c0 .275-.223.5-.5.5zm4.5-3.395c-.552 0-1-.447-1-1s.448-1 1-1 1 .447 1 1-.448 1-1 1z" + }, + "children": [] + }] +}; +exports.scissors = scissors; +var shoppingBag = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M17 4h-10c-1.654 0-3 1.346-3 3v11c0 1.654 1.346 3 3 3h10c1.654 0 3-1.346 3-3v-11c0-1.654-1.346-3-3-3zm1 14c0 .551-.448 1-1 1h-10c-.552 0-1-.449-1-1v-7.28c.296.174.635.28 1 .28h1.5c0 1.93 1.57 3.5 3.5 3.5s3.5-1.57 3.5-3.5h1.5c.365 0 .704-.106 1-.279v7.279zm-8.5-7h5c0 1.378-1.121 2.5-2.5 2.5s-2.5-1.122-2.5-2.5zm8.5-2c0 .551-.448 1-1 1h-10c-.552 0-1-.449-1-1v-2c0-.551.448-1 1-1h10c.552 0 1 .449 1 1v2z" + }, + "children": [] + }] +}; +exports.shoppingBag = shoppingBag; +var shoppingCart = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M20.756 5.345c-.191-.219-.466-.345-.756-.345h-13.819l-.195-1.164c-.08-.482-.497-.836-.986-.836h-2.25c-.553 0-1 .447-1 1s.447 1 1 1h1.403l1.86 11.164.045.124.054.151.12.179.095.112.193.13.112.065c.116.047.238.075.367.075h11.001c.553 0 1-.447 1-1s-.447-1-1-1h-10.153l-.166-1h11.319c.498 0 .92-.366.99-.858l1-7c.041-.288-.045-.579-.234-.797zm-1.909 1.655l-.285 2h-3.562v-2h3.847zm-4.847 0v2h-3v-2h3zm0 3v2h-3v-2h3zm-4-3v2h-3l-.148.03-.338-2.03h3.486zm-2.986 3h2.986v2h-2.653l-.333-2zm7.986 2v-2h3.418l-.285 2h-3.133z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20.756 5.345c-.191-.219-.466-.345-.756-.345h-13.819l-.195-1.164c-.08-.482-.497-.836-.986-.836h-2.25c-.553 0-1 .447-1 1s.447 1 1 1h1.403l1.86 11.164.045.124.054.151.12.179.095.112.193.13.112.065c.116.047.238.075.367.075h11.001c.553 0 1-.447 1-1s-.447-1-1-1h-10.153l-.166-1h11.319c.498 0 .92-.366.99-.858l1-7c.041-.288-.045-.579-.234-.797zm-1.909 1.655l-.285 2h-3.562v-2h3.847zm-4.847 0v2h-3v-2h3zm0 3v2h-3v-2h3zm-4-3v2h-3l-.148.03-.338-2.03h3.486zm-2.986 3h2.986v2h-2.653l-.333-2zm7.986 2v-2h3.418l-.285 2h-3.133z" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "8.5", + "cy": "19.5", + "r": "1.5" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "8.5", + "cy": "19.5", + "r": "1.5" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "17.5", + "cy": "19.5", + "r": "1.5" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "17.5", + "cy": "19.5", + "r": "1.5" + }, + "children": [] + }] + }] + }] +}; +exports.shoppingCart = shoppingCart; +var socialAtCircular = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M11.844 7.5c-2.481 0-4.438 2.019-4.438 4.5s2.05 4.5 4.531 4.5c.908 0 1.799-.27 2.547-.778.228-.155.295-.466.139-.694-.155-.229-.462-.287-.691-.132-.58.396-1.258.604-1.965.604-1.93 0-3.499-1.57-3.499-3.5s1.446-3.5 3.376-3.5 3.375 1.57 3.375 3.5v.25c0 .414-.336.75-.75.75s-.75-.336-.75-.75v-1.75c0-.276-.099-.5-.375-.5-.205 0-.318.124-.396.301-.303-.188-.628-.301-1.01-.301-1.104 0-1.984.896-1.984 2s.904 2 2.008 2c.562 0 1.073-.235 1.438-.609.319.369.664.609 1.192.609.965 0 1.627-.785 1.627-1.75v-.25c0-2.481-1.894-4.5-4.375-4.5zm.125 5.5c-.551 0-1-.449-1-1s.449-1 1-1 1 .449 1 1-.449 1-1 1zM12 21c-4.963 0-9-4.037-9-9s4.037-9 9-9 9 4.037 9 9-4.037 9-9 9zm0-16c-3.859 0-7 3.141-7 7s3.141 7 7 7 7-3.141 7-7-3.141-7-7-7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M11.844 7.5c-2.481 0-4.438 2.019-4.438 4.5s2.05 4.5 4.531 4.5c.908 0 1.799-.27 2.547-.778.228-.155.295-.466.139-.694-.155-.229-.462-.287-.691-.132-.58.396-1.258.604-1.965.604-1.93 0-3.499-1.57-3.499-3.5s1.446-3.5 3.376-3.5 3.375 1.57 3.375 3.5v.25c0 .414-.336.75-.75.75s-.75-.336-.75-.75v-1.75c0-.276-.099-.5-.375-.5-.205 0-.318.124-.396.301-.303-.188-.628-.301-1.01-.301-1.104 0-1.984.896-1.984 2s.904 2 2.008 2c.562 0 1.073-.235 1.438-.609.319.369.664.609 1.192.609.965 0 1.627-.785 1.627-1.75v-.25c0-2.481-1.894-4.5-4.375-4.5zm.125 5.5c-.551 0-1-.449-1-1s.449-1 1-1 1 .449 1 1-.449 1-1 1zM12 21c-4.963 0-9-4.037-9-9s4.037-9 9-9 9 4.037 9 9-4.037 9-9 9zm0-16c-3.859 0-7 3.141-7 7s3.141 7 7 7 7-3.141 7-7-3.141-7-7-7z" + }, + "children": [] + }] + }] + }] +}; +exports.socialAtCircular = socialAtCircular; +var socialDribbbleCircular = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12 21c-4.962 0-9-4.037-9-9s4.038-9 9-9 9 4.037 9 9-4.038 9-9 9zm0-16c-3.86 0-7 3.141-7 7s3.14 7 7 7 7-3.141 7-7-3.14-7-7-7zM12 6.5c-3.033 0-5.5 2.468-5.5 5.5s2.467 5.5 5.5 5.5 5.5-2.468 5.5-5.5-2.467-5.5-5.5-5.5zm4.49 5.402c-1.048-.186-2.1-.18-3.103.042-.127-.326-.267-.647-.417-.965.875-.524 1.652-1.221 2.284-2.07.746.785 1.211 1.834 1.236 2.993zm-2-3.646c-.546.748-1.215 1.367-1.975 1.832-.479-.856-1.046-1.663-1.692-2.412.378-.103.767-.176 1.177-.176.921 0 1.776.28 2.49.756zm-4.641-.184c.687.758 1.278 1.59 1.776 2.473-1.238.531-2.622.691-3.998.437.293-1.259 1.118-2.302 2.222-2.91zm-2.349 3.928c.468.064.936.121 1.399.121 1.106 0 2.187-.244 3.185-.683.123.261.238.524.344.793-1.469.526-2.769 1.489-3.728 2.805-.738-.802-1.2-1.862-1.2-3.036zm1.948 3.699c.842-1.189 2.004-2.057 3.318-2.527.314 1.001.518 2.039.596 3.095-.433.138-.884.233-1.362.233-.948 0-1.826-.298-2.552-.801zm4.872.137c-.099-1-.296-1.983-.593-2.937.87-.176 1.778-.172 2.683.001-.256 1.247-1.035 2.296-2.09 2.936z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12 21c-4.962 0-9-4.037-9-9s4.038-9 9-9 9 4.037 9 9-4.038 9-9 9zm0-16c-3.86 0-7 3.141-7 7s3.14 7 7 7 7-3.141 7-7-3.14-7-7-7zM12 6.5c-3.033 0-5.5 2.468-5.5 5.5s2.467 5.5 5.5 5.5 5.5-2.468 5.5-5.5-2.467-5.5-5.5-5.5zm4.49 5.402c-1.048-.186-2.1-.18-3.103.042-.127-.326-.267-.647-.417-.965.875-.524 1.652-1.221 2.284-2.07.746.785 1.211 1.834 1.236 2.993zm-2-3.646c-.546.748-1.215 1.367-1.975 1.832-.479-.856-1.046-1.663-1.692-2.412.378-.103.767-.176 1.177-.176.921 0 1.776.28 2.49.756zm-4.641-.184c.687.758 1.278 1.59 1.776 2.473-1.238.531-2.622.691-3.998.437.293-1.259 1.118-2.302 2.222-2.91zm-2.349 3.928c.468.064.936.121 1.399.121 1.106 0 2.187-.244 3.185-.683.123.261.238.524.344.793-1.469.526-2.769 1.489-3.728 2.805-.738-.802-1.2-1.862-1.2-3.036zm1.948 3.699c.842-1.189 2.004-2.057 3.318-2.527.314 1.001.518 2.039.596 3.095-.433.138-.884.233-1.362.233-.948 0-1.826-.298-2.552-.801zm4.872.137c-.099-1-.296-1.983-.593-2.937.87-.176 1.778-.172 2.683.001-.256 1.247-1.035 2.296-2.09 2.936z" + }, + "children": [] + }] + }] + }] +}; +exports.socialDribbbleCircular = socialDribbbleCircular; +var socialDribbble = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 3c-4.962 0-9 4.037-9 9s4.038 9 9 9 9-4.037 9-9-4.038-9-9-9zm6.962 8.275c-1.765-.289-3.534-.187-5.205.262-.18-.436-.383-.859-.59-1.283 1.422-.81 2.685-1.912 3.713-3.262 1.143 1.113 1.909 2.611 2.082 4.283zm-2.832-4.914c-.939 1.243-2.1 2.259-3.401 3.009-.782-1.445-1.729-2.8-2.807-4.056.657-.204 1.355-.314 2.078-.314 1.545 0 2.971.51 4.13 1.361zm-7.183-.65c1.119 1.265 2.093 2.645 2.892 4.117-2.061.957-4.396 1.294-6.717.899.408-2.212 1.86-4.058 3.825-5.016zm-3.947 6.289l.015-.294c.676.111 1.353.188 2.024.188 1.827 0 3.607-.426 5.237-1.187.182.373.365.744.525 1.127-2.429.866-4.583 2.486-6.101 4.726-1.056-1.227-1.7-2.818-1.7-4.56zm2.393 5.257c1.43-2.129 3.465-3.673 5.764-4.487.683 1.854 1.123 3.795 1.292 5.779-.763.287-1.587.451-2.449.451-1.765 0-3.375-.661-4.607-1.743zm8.014.852c-.196-1.932-.631-3.822-1.293-5.632 1.564-.404 3.222-.486 4.871-.19-.102 2.502-1.516 4.668-3.578 5.822z" + }, + "children": [] + }] +}; +exports.socialDribbble = socialDribbble; +var socialFacebookCircular = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.354 5.624c-1.75-1.741-3.888-2.624-6.354-2.624-2.489 0-4.633.884-6.373 2.625-1.743 1.741-2.627 3.887-2.627 6.375 0 2.465.883 4.603 2.624 6.354 1.741 1.756 3.886 2.646 6.376 2.646 2.467 0 4.605-.89 6.356-2.643 1.755-1.753 2.644-3.892 2.644-6.357 0-2.488-.89-4.634-2.646-6.376zm-1.412 11.319c-1.137 1.139-2.436 1.788-3.942 1.985v-4.928h2v-2h-2v-1.4c0-.331.269-.6.601-.6h1.399v-2h-1.397c-.742 0-1.361.273-1.857.822-.496.547-.746 1.215-.746 2.008v1.17h-2v2h2v4.93c-1.522-.195-2.826-.845-3.957-1.984-1.375-1.384-2.043-3.002-2.043-4.946 0-1.966.667-3.588 2.042-4.96 1.37-1.373 2.992-2.04 4.958-2.04 1.945 0 3.562.668 4.945 2.043 1.383 1.372 2.055 2.994 2.055 4.957 0 1.941-.673 3.559-2.058 4.943z" + }, + "children": [] + }] +}; +exports.socialFacebookCircular = socialFacebookCircular; +var socialFacebook = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M13 10h3v3h-3v7h-3v-7h-3v-3h3v-1.255c0-1.189.374-2.691 1.118-3.512.744-.823 1.673-1.233 2.786-1.233h2.096v3h-2.1c-.498 0-.9.402-.9.899v2.101z" + }, + "children": [] + }] +}; +exports.socialFacebook = socialFacebook; +var socialFlickrCircular = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12 21c-2.489 0-4.635-.89-6.376-2.646-1.741-1.751-2.624-3.889-2.624-6.354 0-2.488.884-4.634 2.627-6.375 1.74-1.741 3.885-2.625 6.373-2.625 2.466 0 4.604.883 6.354 2.624 1.755 1.742 2.646 3.888 2.646 6.376 0 2.465-.89 4.604-2.644 6.357-1.751 1.753-3.889 2.643-6.356 2.643zm0-16c-1.966 0-3.588.667-4.958 2.04-1.374 1.372-2.042 2.994-2.042 4.96 0 1.944.668 3.562 2.043 4.945 1.372 1.383 2.993 2.055 4.957 2.055 1.943 0 3.56-.673 4.941-2.057 1.386-1.384 2.059-3.002 2.059-4.943 0-1.963-.672-3.585-2.055-4.957-1.383-1.375-3-2.043-4.945-2.043zM9 14.5c-1.379 0-2.5-1.121-2.5-2.5s1.121-2.5 2.5-2.5 2.5 1.121 2.5 2.5-1.121 2.5-2.5 2.5zm0-4c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zM15 14.5c-1.379 0-2.5-1.121-2.5-2.5s1.121-2.5 2.5-2.5 2.5 1.121 2.5 2.5-1.121 2.5-2.5 2.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12 21c-2.489 0-4.635-.89-6.376-2.646-1.741-1.751-2.624-3.889-2.624-6.354 0-2.488.884-4.634 2.627-6.375 1.74-1.741 3.885-2.625 6.373-2.625 2.466 0 4.604.883 6.354 2.624 1.755 1.742 2.646 3.888 2.646 6.376 0 2.465-.89 4.604-2.644 6.357-1.751 1.753-3.889 2.643-6.356 2.643zm0-16c-1.966 0-3.588.667-4.958 2.04-1.374 1.372-2.042 2.994-2.042 4.96 0 1.944.668 3.562 2.043 4.945 1.372 1.383 2.993 2.055 4.957 2.055 1.943 0 3.56-.673 4.941-2.057 1.386-1.384 2.059-3.002 2.059-4.943 0-1.963-.672-3.585-2.055-4.957-1.383-1.375-3-2.043-4.945-2.043zM9 14.5c-1.379 0-2.5-1.121-2.5-2.5s1.121-2.5 2.5-2.5 2.5 1.121 2.5 2.5-1.121 2.5-2.5 2.5zm0-4c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zM15 14.5c-1.379 0-2.5-1.121-2.5-2.5s1.121-2.5 2.5-2.5 2.5 1.121 2.5 2.5-1.121 2.5-2.5 2.5z" + }, + "children": [] + }] + }] + }] +}; +exports.socialFlickrCircular = socialFlickrCircular; +var socialFlickr = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M7.5 16c-2.206 0-4-1.794-4-4s1.794-4 4-4 4 1.794 4 4-1.794 4-4 4zm0-6c-1.103 0-2 .897-2 2s.897 2 2 2 2-.897 2-2-.897-2-2-2zM16.5 8c-2.206 0-4 1.794-4 4s1.794 4 4 4 4-1.794 4-4-1.794-4-4-4z" + }, + "children": [] + }] +}; +exports.socialFlickr = socialFlickr; +var socialGithubCircular = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12 21c-4.963 0-9-4.038-9-9s4.037-9 9-9 9 4.038 9 9-4.037 9-9 9zm0-16c-3.859 0-7 3.14-7 7s3.141 7 7 7 7-3.14 7-7-3.141-7-7-7zM13.565 12.626c.171 0 .316.084.441.255.124.169.187.378.187.625 0 .248-.062.457-.187.626-.125.169-.271.254-.441.254-.181 0-.337-.084-.461-.254-.124-.169-.187-.378-.187-.626s.062-.456.187-.625c.125-.171.281-.255.461-.255m2.21-2.289c.482.522.725 1.155.725 1.898 0 .482-.057.915-.166 1.301-.111.384-.252.698-.42.939-.171.242-.378.454-.627.635-.249.184-.478.316-.685.401-.208.085-.446.15-.716.196-.266.047-.467.072-.606.079l-.44.009-.352.01-.488.011-.488-.011-.352-.01-.44-.009c-.14-.007-.341-.032-.606-.079-.271-.045-.508-.11-.716-.196-.207-.084-.436-.217-.684-.401-.25-.182-.457-.394-.628-.635-.168-.241-.309-.555-.42-.939-.109-.386-.166-.819-.166-1.301 0-.743.242-1.376.725-1.898-.053-.026-.056-.286-.008-.782.043-.496.148-.953.319-1.37.602.064 1.343.404 2.23 1.017.3-.078.71-.118 1.233-.118.549 0 .959.04 1.234.118.404-.273.791-.496 1.16-.666.374-.168.644-.267.814-.293l.254-.058c.172.417.277.875.32 1.37.05.496.047.756-.006.782m-3.754 5.027c1.083 0 1.899-.129 2.454-.39.553-.26.833-.796.833-1.605 0-.469-.176-.861-.529-1.174-.181-.17-.394-.273-.638-.313-.238-.039-.607-.039-1.104 0-.495.04-.834.058-1.016.058-.248 0-.517-.013-.851-.039l-.783-.049c-.191-.006-.395.018-.616.069-.223.053-.404.143-.55.273-.336.3-.507.691-.507 1.174 0 .809.274 1.345.821 1.605.547.261 1.361.39 2.444.39m-1.524-2.737c.17 0 .316.084.44.255.124.169.187.378.187.625 0 .248-.062.457-.187.626-.124.169-.271.254-.44.254-.182 0-.337-.084-.462-.254-.124-.169-.187-.378-.187-.626s.062-.456.187-.625c.125-.171.28-.255.462-.255" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12 21c-4.963 0-9-4.038-9-9s4.037-9 9-9 9 4.038 9 9-4.037 9-9 9zm0-16c-3.859 0-7 3.14-7 7s3.141 7 7 7 7-3.14 7-7-3.141-7-7-7zM13.565 12.626c.171 0 .316.084.441.255.124.169.187.378.187.625 0 .248-.062.457-.187.626-.125.169-.271.254-.441.254-.181 0-.337-.084-.461-.254-.124-.169-.187-.378-.187-.626s.062-.456.187-.625c.125-.171.281-.255.461-.255m2.21-2.289c.482.522.725 1.155.725 1.898 0 .482-.057.915-.166 1.301-.111.384-.252.698-.42.939-.171.242-.378.454-.627.635-.249.184-.478.316-.685.401-.208.085-.446.15-.716.196-.266.047-.467.072-.606.079l-.44.009-.352.01-.488.011-.488-.011-.352-.01-.44-.009c-.14-.007-.341-.032-.606-.079-.271-.045-.508-.11-.716-.196-.207-.084-.436-.217-.684-.401-.25-.182-.457-.394-.628-.635-.168-.241-.309-.555-.42-.939-.109-.386-.166-.819-.166-1.301 0-.743.242-1.376.725-1.898-.053-.026-.056-.286-.008-.782.043-.496.148-.953.319-1.37.602.064 1.343.404 2.23 1.017.3-.078.71-.118 1.233-.118.549 0 .959.04 1.234.118.404-.273.791-.496 1.16-.666.374-.168.644-.267.814-.293l.254-.058c.172.417.277.875.32 1.37.05.496.047.756-.006.782m-3.754 5.027c1.083 0 1.899-.129 2.454-.39.553-.26.833-.796.833-1.605 0-.469-.176-.861-.529-1.174-.181-.17-.394-.273-.638-.313-.238-.039-.607-.039-1.104 0-.495.04-.834.058-1.016.058-.248 0-.517-.013-.851-.039l-.783-.049c-.191-.006-.395.018-.616.069-.223.053-.404.143-.55.273-.336.3-.507.691-.507 1.174 0 .809.274 1.345.821 1.605.547.261 1.361.39 2.444.39m-1.524-2.737c.17 0 .316.084.44.255.124.169.187.378.187.625 0 .248-.062.457-.187.626-.124.169-.271.254-.44.254-.182 0-.337-.084-.462-.254-.124-.169-.187-.378-.187-.626s.062-.456.187-.625c.125-.171.28-.255.462-.255" + }, + "children": [] + }] + }] + }] +}; +exports.socialGithubCircular = socialGithubCircular; +var socialGithub = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M14.435 12.973c.269 0 .492.133.686.396.192.265.294.588.294.975 0 .385-.102.711-.294.973-.193.265-.417.396-.686.396-.278 0-.522-.131-.715-.396-.192-.262-.294-.588-.294-.973 0-.387.102-.71.294-.975.192-.264.436-.396.715-.396m3.44-3.559c.746.811 1.125 1.795 1.125 2.953 0 .748-.086 1.423-.259 2.023-.175.597-.394 1.084-.654 1.459-.264.376-.588.705-.974.989-.386.286-.741.492-1.065.623-.325.132-.695.233-1.111.306-.417.071-.726.111-.943.123l-.685.014-.547.015c-.301.013-.56.016-.762.016s-.461-.003-.762-.016l-.547-.015-.685-.014c-.218-.012-.526-.052-.943-.123-.423-.072-.786-.174-1.111-.306-.324-.131-.68-.337-1.064-.623-.387-.284-.711-.613-.975-.989-.261-.375-.479-.862-.654-1.459-.173-.6-.259-1.275-.259-2.023 0-1.158.379-2.143 1.125-2.953-.082-.041-.085-.447-.008-1.217.063-.771.227-1.482.495-2.132.934.099 2.09.629 3.471 1.581.466-.119 1.101-.183 1.917-.183.852 0 1.491.064 1.918.184.629-.425 1.23-.771 1.805-1.034.584-.261 1.005-.416 1.269-.457l.396-.09c.27.649.434 1.36.496 2.132.076.769.073 1.175-.009 1.216m-5.845 7.82c1.688 0 2.954-.202 3.821-.607.855-.404 1.292-1.238 1.292-2.496 0-.73-.273-1.34-.822-1.828-.278-.263-.613-.425-.989-.486-.375-.061-.949-.061-1.72 0-.769.062-1.298.09-1.582.09-.385 0-.8-.018-1.319-.059-.52-.04-.928-.065-1.223-.078-.294-.009-.609.027-.958.108-.345.082-.629.224-.853.425-.521.469-.79 1.077-.79 1.828 0 1.258.426 2.092 1.28 2.496.85.405 2.113.607 3.802.607h.061m-2.434-4.261c.268 0 .492.133.685.396.192.265.294.588.294.975 0 .385-.102.711-.294.973-.192.265-.417.396-.685.396-.279 0-.522-.131-.716-.396-.192-.262-.294-.588-.294-.973 0-.387.102-.71.294-.975.193-.264.436-.396.716-.396" + }, + "children": [] + }] +}; +exports.socialGithub = socialGithub; +var socialGooglePlusCircular = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12.8 13.1l-.4-.3c-.1-.1-.3-.2-.3-.5l.3-.6c.5-.4 1-.8 1-1.7s-.6-1.4-.8-1.6h.7l.7-.4h-2.4c-.6 0-1.4.1-2.1.6-.5.4-.8 1-.8 1.6 0 .9.7 1.9 2 1.9h.4c-.1.1-.1.2-.1.4 0 .4.2.6.4.8-.5 0-1.5.1-2.3.5-.7.4-.9 1-.9 1.4 0 .9.8 1.7 2.5 1.7 2 0 3.1-1.1 3.1-2.2 0-.7-.5-1.1-1-1.6zm-1.6-1.3c-1 0-1.5-1.3-1.5-2.1.1-.4.1-.7.3-.9s.5-.4.8-.4c1 0 1.5 1.3 1.5 2.2 0 .2 0 .6-.3.9-.1.1-.5.3-.8.3zm.1 4.7c-1.3 0-2.1-.6-2.1-1.4 0-.8.8-1.1 1-1.2.5-.2 1.1-.2 1.2-.2h.3c.9.6 1.3 1 1.3 1.6 0 .7-.6 1.2-1.7 1.2zM15 12h-1v-1h1v-1h1v1h1v1h-1v1h-1zM12 21c-5 0-9-4-9-9s4-9 9-9 9 4 9 9-4 9-9 9zm0-16c-3.9 0-7 3.1-7 7s3.1 7 7 7 7-3.1 7-7-3.1-7-7-7z" + }, + "children": [] + }] +}; +exports.socialGooglePlusCircular = socialGooglePlusCircular; +var socialGooglePlus = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12.9 13.5l-.7-.5c-.2-.2-.5-.4-.5-.8s.3-.7.6-1c.8-.6 1.7-1.3 1.7-2.8 0-1.5-.9-2.3-1.4-2.7h1.2l1.2-.7h-4.1c-1 0-2.4.2-3.5 1.1-.8.7-1.2 1.7-1.2 2.6 0 1.5 1.2 3.1 3.3 3.1h.6c-.1.2-.2.4-.2.7 0 .6.3 1 .6 1.3-.9.1-2.5.2-3.8.9-1.2.7-1.5 1.7-1.5 2.4 0 1.5 1.4 2.8 4.2 2.8 3.4 0 5.2-1.9 5.2-3.7 0-1.3-.8-1.9-1.7-2.7zm-2.5-2.2c-1.7 0-2.5-2.2-2.5-3.5 0-.5.1-1 .4-1.5.3-.4.9-.7 1.4-.7 1.6 0 2.5 2.2 2.5 3.6 0 .4 0 1-.5 1.4-.3.4-.9.7-1.3.7zm0 7.9c-2.1 0-3.5-1-3.5-2.4s1.3-1.9 1.7-2c.8-.3 1.9-.3 2.1-.3h.5c1.5 1.1 2.1 1.6 2.1 2.6 0 1.2-1 2.1-2.9 2.1zM17 12h-2v-1h2v-1.9l1-.1v2h2v1h-2v2h-1z" + }, + "children": [] + }] +}; +exports.socialGooglePlus = socialGooglePlus; +var socialInstagramCircular = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 3c-5 0-9 4-9 9s4 9 9 9 9-4 9-9-4-9-9-9zm0 7c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm2.8-2c0-.7.6-1.2 1.2-1.2s1.2.6 1.2 1.2-.5 1.2-1.2 1.2-1.2-.5-1.2-1.2zm-2.8 11c-3.9 0-7-3.1-7-7h3c0 2.2 1.8 4 4 4s4-1.8 4-4h3c0 3.9-3.1 7-7 7z" + }, + "children": [] + }] +}; +exports.socialInstagramCircular = socialInstagramCircular; +var socialInstagram = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18 3h-12c-1.7 0-3 1.3-3 3v12c0 1.7 1.3 3 3 3h12c1.7 0 3-1.3 3-3v-12c0-1.7-1.3-3-3-3zm-6 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3zm3.8-2c0-.7.6-1.2 1.2-1.2s1.2.6 1.2 1.2-.5 1.2-1.2 1.2-1.2-.5-1.2-1.2zm2.2 12h-12c-.6 0-1-.4-1-1v-6h2c0 2.8 2.2 5 5 5s5-2.2 5-5h2v6c0 .6-.4 1-1 1z" + }, + "children": [] + }] +}; +exports.socialInstagram = socialInstagram; +var socialLastFmCircular = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12 21c-2.489 0-4.635-.89-6.376-2.646-1.741-1.751-2.624-3.89-2.624-6.354 0-2.489.884-4.633 2.627-6.375 1.74-1.741 3.885-2.625 6.373-2.625 2.466 0 4.604.883 6.354 2.624 1.755 1.742 2.646 3.887 2.646 6.376 0 2.464-.89 4.604-2.644 6.357-1.751 1.754-3.889 2.643-6.356 2.643zm0-16c-1.966 0-3.588.667-4.958 2.04-1.374 1.372-2.042 2.994-2.042 4.96 0 1.944.668 3.562 2.043 4.945 1.372 1.383 2.993 2.055 4.957 2.055 1.943 0 3.56-.673 4.941-2.056 1.386-1.385 2.059-3.002 2.059-4.944 0-1.963-.672-3.585-2.055-4.957-1.383-1.375-3-2.043-4.945-2.043zM14.199 14.333c1.335 0 2-.444 2-1.333 0-.733-.422-1.199-1.267-1.4l-.632-.133c-.354-.089-.534-.277-.534-.566 0-.334.224-.5.666-.5.49 0 .746.188.767.565l.967-.1c-.063-.822-.622-1.233-1.666-1.233-1.134 0-1.699.467-1.699 1.401 0 .665.365 1.088 1.099 1.267l.668.133c.443.11.666.312.666.601 0 .354-.345.532-1.034.532-.844 0-1.398-.411-1.666-1.233l-.334-.967c-.199-.644-.449-1.095-.75-1.35-.3-.255-.771-.384-1.416-.384-.601 0-1.128.223-1.584.667-.456.445-.683 1.033-.683 1.767 0 .688.216 1.239.649 1.649.435.413.95.617 1.55.617.602 0 1.078-.144 1.434-.433l-.299-.834c-.311.312-.679.468-1.101.468-.354 0-.662-.14-.916-.417-.257-.277-.385-.64-.385-1.084 0-.556.139-.961.417-1.217s.594-.383.951-.383c.379 0 .648.1.816.299.167.201.315.512.45.935l.3.967c.356 1.133 1.212 1.699 2.566 1.699" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12 21c-2.489 0-4.635-.89-6.376-2.646-1.741-1.751-2.624-3.89-2.624-6.354 0-2.489.884-4.633 2.627-6.375 1.74-1.741 3.885-2.625 6.373-2.625 2.466 0 4.604.883 6.354 2.624 1.755 1.742 2.646 3.887 2.646 6.376 0 2.464-.89 4.604-2.644 6.357-1.751 1.754-3.889 2.643-6.356 2.643zm0-16c-1.966 0-3.588.667-4.958 2.04-1.374 1.372-2.042 2.994-2.042 4.96 0 1.944.668 3.562 2.043 4.945 1.372 1.383 2.993 2.055 4.957 2.055 1.943 0 3.56-.673 4.941-2.056 1.386-1.385 2.059-3.002 2.059-4.944 0-1.963-.672-3.585-2.055-4.957-1.383-1.375-3-2.043-4.945-2.043zM14.199 14.333c1.335 0 2-.444 2-1.333 0-.733-.422-1.199-1.267-1.4l-.632-.133c-.354-.089-.534-.277-.534-.566 0-.334.224-.5.666-.5.49 0 .746.188.767.565l.967-.1c-.063-.822-.622-1.233-1.666-1.233-1.134 0-1.699.467-1.699 1.401 0 .665.365 1.088 1.099 1.267l.668.133c.443.11.666.312.666.601 0 .354-.345.532-1.034.532-.844 0-1.398-.411-1.666-1.233l-.334-.967c-.199-.644-.449-1.095-.75-1.35-.3-.255-.771-.384-1.416-.384-.601 0-1.128.223-1.584.667-.456.445-.683 1.033-.683 1.767 0 .688.216 1.239.649 1.649.435.413.95.617 1.55.617.602 0 1.078-.144 1.434-.433l-.299-.834c-.311.312-.679.468-1.101.468-.354 0-.662-.14-.916-.417-.257-.277-.385-.64-.385-1.084 0-.556.139-.961.417-1.217s.594-.383.951-.383c.379 0 .648.1.816.299.167.201.315.512.45.935l.3.967c.356 1.133 1.212 1.699 2.566 1.699" + }, + "children": [] + }] + }] + }] +}; +exports.socialLastFmCircular = socialLastFmCircular; +var socialLastFm = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M15.942 16.182c2.374 0 3.558-.791 3.558-2.373 0-1.304-.749-2.132-2.254-2.49l-1.119-.235c-.637-.159-.951-.495-.951-1.009 0-.594.396-.889 1.186-.889.869 0 1.323.334 1.363 1.006l1.717-.178c-.114-1.463-1.109-2.195-2.962-2.195-2.019 0-3.026.832-3.026 2.495 0 1.182.654 1.935 1.958 2.251l1.188.236c.79.196 1.186.555 1.186 1.068 0 .631-.614.949-1.842.949-1.498 0-2.489-.732-2.962-2.195l-.597-1.721c-.354-1.145-.796-1.947-1.334-2.401-.53-.45-1.367-.683-2.519-.683-1.069 0-2.007.396-2.815 1.188-.811.791-1.217 1.838-1.217 3.142 0 1.223.383 2.203 1.156 2.935.774.733 1.688 1.099 2.756 1.099 1.069 0 1.918-.256 2.55-.77l-.53-1.485c-.554.556-1.211.833-1.96.833-.63 0-1.175-.248-1.628-.744-.455-.492-.686-1.137-.686-1.927 0-.989.247-1.708.743-2.163.497-.455 1.056-.681 1.689-.681.674 0 1.155.177 1.457.53.296.357.56.912.797 1.662l.537 1.721c.632 2.014 2.154 3.024 4.561 3.024" + }, + "children": [] + }] +}; +exports.socialLastFm = socialLastFm; +var socialLinkedinCircular = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M10.033 15.3h-1.6v-5.199h1.6v5.199zm-.8-5.866c-.577 0-.866-.267-.866-.8 0-.223.082-.412.25-.567.166-.155.371-.233.616-.233.577 0 .866.268.866.801s-.288.799-.866.799zm6.734 5.866h-1.633v-2.9c0-.755-.268-1.133-.801-1.133-.422 0-.699.211-.834.633-.043.067-.066.201-.066.4v3h-1.633v-3.533c0-.8-.012-1.355-.033-1.666h1.4l.1.699c.367-.556.9-.833 1.633-.833.557 0 1.006.194 1.35.583.346.389.518.95.518 1.684v3.066zM12 21c-4.963 0-9-4.037-9-9s4.037-9 9-9 9 4.037 9 9-4.037 9-9 9zm0-16c-3.859 0-7 3.141-7 7s3.141 7 7 7 7-3.141 7-7-3.141-7-7-7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M10.033 15.3h-1.6v-5.199h1.6v5.199zm-.8-5.866c-.577 0-.866-.267-.866-.8 0-.223.082-.412.25-.567.166-.155.371-.233.616-.233.577 0 .866.268.866.801s-.288.799-.866.799zm6.734 5.866h-1.633v-2.9c0-.755-.268-1.133-.801-1.133-.422 0-.699.211-.834.633-.043.067-.066.201-.066.4v3h-1.633v-3.533c0-.8-.012-1.355-.033-1.666h1.4l.1.699c.367-.556.9-.833 1.633-.833.557 0 1.006.194 1.35.583.346.389.518.95.518 1.684v3.066zM12 21c-4.963 0-9-4.037-9-9s4.037-9 9-9 9 4.037 9 9-4.037 9-9 9zm0-16c-3.859 0-7 3.141-7 7s3.141 7 7 7 7-3.141 7-7-3.141-7-7-7z" + }, + "children": [] + }] + }] + }] +}; +exports.socialLinkedinCircular = socialLinkedinCircular; +var socialLinkedin = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M8 19h-3v-10h3v10zm11 0h-3v-5.342c0-1.392-.496-2.085-1.479-2.085-.779 0-1.273.388-1.521 1.165v6.262h-3s.04-9 0-10h2.368l.183 2h.062c.615-1 1.598-1.678 2.946-1.678 1.025 0 1.854.285 2.487 1.001.637.717.954 1.679.954 3.03v5.647z" + }, + "children": [] + }, { + "name": "ellipse", + "attribs": { + "cx": "6.5", + "cy": "6.5", + "rx": "1.55", + "ry": "1.5" + }, + "children": [] + }] +}; +exports.socialLinkedin = socialLinkedin; +var socialPinterestCircular = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12 21c-4.963 0-9-4.037-9-9s4.037-9 9-9 9 4.037 9 9-4.037 9-9 9zm0-16c-3.859 0-7 3.141-7 7s3.141 7 7 7 7-3.141 7-7-3.141-7-7-7zM12.335 8c-2.468 0-3.712 1.77-3.712 3.244 0 .895.338 1.688 1.063 1.984.119.049.226.002.261-.129l.105-.418c.035-.129.021-.175-.074-.289-.209-.246-.344-.566-.344-1.019 0-1.312.982-2.487 2.558-2.487 1.396 0 2.161.853 2.161 1.99 0 1.498-.662 2.762-1.646 2.762-.543 0-.95-.449-.82-1.001.156-.658.459-1.368.459-1.843 0-.426-.229-.779-.7-.779-.556 0-1.002.574-1.002 1.344 0 .49.166.822.166.822l-.669 2.83c-.198.84-.029 1.87-.015 1.974.008.062.087.077.123.03.052-.067.713-.885.938-1.7.064-.23.366-1.427.366-1.427.18.344.707.646 1.268.646 1.67 0 2.803-1.521 2.803-3.56-.001-1.538-1.306-2.974-3.289-2.974z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12 21c-4.963 0-9-4.037-9-9s4.037-9 9-9 9 4.037 9 9-4.037 9-9 9zm0-16c-3.859 0-7 3.141-7 7s3.141 7 7 7 7-3.141 7-7-3.141-7-7-7zM12.335 8c-2.468 0-3.712 1.77-3.712 3.244 0 .895.338 1.688 1.063 1.984.119.049.226.002.261-.129l.105-.418c.035-.129.021-.175-.074-.289-.209-.246-.344-.566-.344-1.019 0-1.312.982-2.487 2.558-2.487 1.396 0 2.161.853 2.161 1.99 0 1.498-.662 2.762-1.646 2.762-.543 0-.95-.449-.82-1.001.156-.658.459-1.368.459-1.843 0-.426-.229-.779-.7-.779-.556 0-1.002.574-1.002 1.344 0 .49.166.822.166.822l-.669 2.83c-.198.84-.029 1.87-.015 1.974.008.062.087.077.123.03.052-.067.713-.885.938-1.7.064-.23.366-1.427.366-1.427.18.344.707.646 1.268.646 1.67 0 2.803-1.521 2.803-3.56-.001-1.538-1.306-2.974-3.289-2.974z" + }, + "children": [] + }] + }] + }] +}; +exports.socialPinterestCircular = socialPinterestCircular; +var socialPinterest = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12.486 4.771c-4.23 0-6.363 3.033-6.363 5.562 0 1.533.581 2.894 1.823 3.401.205.084.387.004.446-.221l.182-.717c.061-.221.037-.3-.127-.495-.359-.422-.588-.972-.588-1.747 0-2.25 1.683-4.264 4.384-4.264 2.392 0 3.706 1.463 3.706 3.412 0 2.568-1.137 4.734-2.824 4.734-.932 0-1.629-.77-1.405-1.715.268-1.13.786-2.347.786-3.16 0-.729-.392-1.336-1.2-1.336-.952 0-1.718.984-1.718 2.304 0 .841.286 1.409.286 1.409l-1.146 4.852c-.34 1.44-.051 3.206-.025 3.385.013.104.149.131.21.051.088-.115 1.223-1.517 1.607-2.915.111-.396.627-2.445.627-2.445.311.589 1.213 1.108 2.175 1.108 2.863 0 4.804-2.608 4.804-6.103-.003-2.64-2.24-5.1-5.64-5.1z" + }, + "children": [] + }] +}; +exports.socialPinterest = socialPinterest; +var socialSkypeOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M8.865 5c.751 0 1.44.202 2.069.609.324-.08.711-.121 1.157-.121 1.846 0 3.418.67 4.717 2.008 1.299 1.339 1.948 2.962 1.948 4.87 0 .466-.051.953-.152 1.461.264.589.396 1.187.396 1.794 0 1.097-.38 2.036-1.142 2.815-.761.781-1.668 1.173-2.725 1.173-.629 0-1.237-.162-1.825-.488-.527.081-.933.122-1.217.122-1.847 0-3.425-.67-4.733-2.009s-1.963-2.962-1.963-4.868c0-.447.051-.902.152-1.37-.364-.609-.547-1.288-.547-2.039 0-1.096.376-2.029 1.126-2.799.75-.772 1.664-1.158 2.739-1.158m3.135 10.53c-.406 0-.729-.061-.975-.183-.263-.142-.445-.284-.547-.425-.243-.447-.376-.681-.396-.7-.081-.243-.202-.447-.364-.609-.203-.14-.406-.213-.61-.213-.284 0-.517.091-.7.274-.183.182-.274.396-.274.639 0 .386.144.801.428 1.248.263.405.629.741 1.096 1.003.648.346 1.45.519 2.404.519.79 0 1.49-.122 2.1-.365.609-.284 1.055-.639 1.339-1.065.304-.467.456-.975.456-1.522 0-.445-.08-.852-.242-1.217-.163-.304-.416-.578-.762-.82-.365-.225-.75-.407-1.156-.548-.689-.204-1.178-.336-1.461-.396-.143-.021-.32-.055-.533-.107l-.41-.106c-.243-.08-.416-.152-.518-.212-.163-.081-.294-.193-.396-.336-.103-.1-.152-.233-.152-.396 0-.243.142-.455.426-.639.265-.203.649-.305 1.156-.305.508 0 .884.092 1.127.273.263.225.456.478.577.762.163.264.295.446.396.547.162.123.355.184.578.184.264 0 .498-.102.699-.306.184-.181.275-.404.275-.669 0-.202-.072-.467-.214-.791-.162-.243-.376-.486-.639-.729-.284-.224-.659-.417-1.127-.579-.485-.143-1.004-.213-1.552-.213-.73 0-1.38.11-1.948.335-.566.2-1.003.505-1.307.911-.305.406-.457.872-.457 1.4 0 .527.143.984.426 1.37.346.405.73.688 1.156.851.488.224 1.076.407 1.766.548.121.021.27.056.441.106l.457.123.319.075c.284.103.517.243.699.427.183.141.274.354.274.639 0 .346-.162.629-.486.853-.364.243-.821.364-1.369.364m-3.135-12.53c-1.609 0-3.053.61-4.174 1.765-1.105 1.134-1.691 2.585-1.691 4.192 0 .832.156 1.619.466 2.348-.047.357-.07.713-.07 1.062 0 2.438.853 4.547 2.532 6.267 1.693 1.732 3.768 2.61 6.164 2.61.254 0 .547-.02.896-.06.69.283 1.409.426 2.146.426 1.588 0 3.025-.614 4.157-1.777 1.117-1.143 1.709-2.6 1.709-4.211 0-.677-.111-1.349-.332-2.004.059-.427.089-.846.089-1.251 0-2.437-.846-4.544-2.513-6.263-1.685-1.735-3.755-2.615-6.152-2.615-.279 0-.546.013-.801.038-.756-.35-1.568-.527-2.426-.527z" + }, + "children": [] + }] +}; +exports.socialSkypeOutline = socialSkypeOutline; +var socialSkype = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M20.668 13.312c.059-.427.089-.846.089-1.251 0-2.437-.846-4.544-2.513-6.263-1.685-1.735-3.755-2.615-6.152-2.615-.279 0-.546.013-.801.038-.756-.35-1.568-.526-2.426-.526-1.609 0-3.053.61-4.174 1.765-1.105 1.135-1.691 2.585-1.691 4.192 0 .832.156 1.619.466 2.348-.047.357-.07.713-.07 1.062 0 2.438.853 4.547 2.532 6.267 1.693 1.732 3.768 2.61 6.164 2.61.254 0 .547-.02.896-.06.69.283 1.409.426 2.146.426 1.588 0 3.025-.614 4.157-1.777 1.117-1.143 1.709-2.6 1.709-4.211 0-.677-.111-1.349-.332-2.005zm-5.168 2.036c-.284.427-.729.781-1.339 1.065-.609.243-1.31.365-2.1.365-.954 0-1.756-.173-2.404-.519-.467-.262-.833-.598-1.096-1.003-.284-.447-.428-.862-.428-1.248 0-.243.092-.457.274-.639.184-.184.416-.274.7-.274.203 0 .406.072.609.213.162.162.283.366.364.609.021.02.153.253.396.7.102.141.284.283.547.425.245.122.568.183.975.183.548 0 1.005-.121 1.37-.364.324-.224.486-.507.486-.853 0-.284-.092-.498-.274-.639-.183-.184-.415-.324-.699-.427l-.319-.075-.457-.123c-.172-.051-.32-.086-.441-.106-.689-.141-1.277-.324-1.766-.548-.426-.162-.811-.445-1.156-.851-.283-.386-.426-.843-.426-1.37 0-.528.152-.994.457-1.4.304-.406.74-.711 1.308-.913.569-.224 1.219-.334 1.949-.334.548 0 1.066.07 1.552.213.468.162.843.355 1.127.579.263.243.477.486.639.729.142.324.214.589.214.791 0 .265-.092.488-.275.669-.201.204-.436.306-.699.306-.223 0-.416-.061-.578-.184-.102-.101-.233-.283-.396-.547-.121-.284-.314-.537-.577-.762-.243-.182-.619-.273-1.127-.273-.507 0-.892.102-1.156.305-.284.184-.426.396-.426.639 0 .162.05.296.152.396.102.143.232.255.396.336.102.06.274.132.518.212l.41.106c.213.053.391.087.533.107.283.061.771.192 1.461.396.406.141.791.323 1.156.548.346.242.599.517.762.82.162.365.242.771.242 1.217-.002.548-.154 1.056-.458 1.523z" + }, + "children": [] + }] +}; +exports.socialSkype = socialSkype; +var socialTumblerCircular = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M14.377 15.59v-1.234c-.399.268-.788.4-1.166.4-.178 0-.377-.057-.6-.166-.134-.09-.211-.189-.234-.301-.066-.133-.1-.422-.1-.867v-1.966h1.834v-1.233h-1.834v-1.967h-1.066c-.089.467-.178.8-.267 1-.11.244-.288.467-.533.666-.245.201-.5.345-.767.434v1.101h.833v2.7c0 .311.044.576.134.799.066.178.199.355.4.533.154.156.377.289.666.4.355.09.666.133.934.133.311 0 .6-.033.866-.1.312-.067.612-.178.9-.332" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14.377 15.59v-1.234c-.399.268-.788.4-1.166.4-.178 0-.377-.057-.6-.166-.134-.09-.211-.189-.234-.301-.066-.133-.1-.422-.1-.867v-1.966h1.834v-1.233h-1.834v-1.967h-1.066c-.089.467-.178.8-.267 1-.11.244-.288.467-.533.666-.245.201-.5.345-.767.434v1.101h.833v2.7c0 .311.044.576.134.799.066.178.199.355.4.533.154.156.377.289.666.4.355.09.666.133.934.133.311 0 .6-.033.866-.1.312-.067.612-.178.9-.332" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M12 21c-4.963 0-9-4.037-9-9s4.037-9 9-9 9 4.037 9 9-4.037 9-9 9zm0-16c-3.859 0-7 3.141-7 7s3.141 7 7 7 7-3.141 7-7-3.141-7-7-7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12 21c-4.963 0-9-4.037-9-9s4.037-9 9-9 9 4.037 9 9-4.037 9-9 9zm0-16c-3.859 0-7 3.141-7 7s3.141 7 7 7 7-3.141 7-7-3.141-7-7-7z" + }, + "children": [] + }] + }] + }] +}; +exports.socialTumblerCircular = socialTumblerCircular; +var socialTumbler = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M15.527 17.921v-2.066c-.669.448-1.32.67-1.952.67-.298 0-.631-.094-1.004-.277-.223-.151-.354-.317-.393-.503-.11-.224-.178-.708-.178-1.454v-3.291h3v-2h-3v-3.356h-1.772c-.149.782-.298 1.338-.448 1.673-.184.41-.482.782-.891 1.116-.411.337-.837.577-1.285.725v1.842h1.396v4.521c0 .52.073.964.223 1.337.111.298.334.595.671.893.259.262.631.484 1.115.67.595.15 1.114.223 1.562.223.52 0 1.004-.056 1.45-.167.521-.112 1.023-.298 1.506-.556" + }, + "children": [] + }] +}; +exports.socialTumbler = socialTumbler; +var socialTwitterCircular = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M15.279 10.283c.358-.221.597-.521.713-.904-.349.186-.697.312-1.045.383-.312-.336-.708-.507-1.182-.507-.464 0-.855.163-1.175.479-.317.318-.478.706-.478 1.158 0 .137.017.26.052.364-1.368-.048-2.499-.614-3.391-1.706-.151.267-.227.539-.227.82 0 .578.244 1.036.73 1.373-.277-.023-.521-.094-.73-.209 0 .413.121.758.365 1.062.243.3.557.492.939.573-.139.036-.285.053-.435.053-.14 0-.237-.012-.296-.037.104.337.296.609.574.818.277.21.597.32.957.33-.591.465-1.269.694-2.035.694-.188 0-.32-.002-.4-.017.754.489 1.594.733 2.521.733.951 0 1.792-.241 2.522-.723.73-.479 1.271-1.07 1.617-1.767.348-.695.521-1.419.521-2.174v-.209c.336-.253.609-.538.818-.854-.298.133-.611.222-.935.267zM12 21c-2.49 0-4.635-.89-6.376-2.646-1.741-1.751-2.624-3.889-2.624-6.354 0-2.488.884-4.634 2.627-6.375 1.74-1.741 3.884-2.625 6.373-2.625 2.466 0 4.604.883 6.354 2.624 1.756 1.742 2.646 3.888 2.646 6.376 0 2.465-.889 4.604-2.644 6.357-1.751 1.753-3.889 2.643-6.356 2.643zm0-16c-1.966 0-3.588.667-4.958 2.04-1.375 1.372-2.042 2.994-2.042 4.96 0 1.944.668 3.562 2.043 4.945 1.372 1.383 2.993 2.055 4.957 2.055 1.943 0 3.56-.673 4.942-2.057 1.385-1.384 2.058-3.002 2.058-4.943 0-1.963-.672-3.585-2.055-4.957-1.383-1.375-3-2.043-4.945-2.043z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15.279 10.283c.358-.221.597-.521.713-.904-.349.186-.697.312-1.045.383-.312-.336-.708-.507-1.182-.507-.464 0-.855.163-1.175.479-.317.318-.478.706-.478 1.158 0 .137.017.26.052.364-1.368-.048-2.499-.614-3.391-1.706-.151.267-.227.539-.227.82 0 .578.244 1.036.73 1.373-.277-.023-.521-.094-.73-.209 0 .413.121.758.365 1.062.243.3.557.492.939.573-.139.036-.285.053-.435.053-.14 0-.237-.012-.296-.037.104.337.296.609.574.818.277.21.597.32.957.33-.591.465-1.269.694-2.035.694-.188 0-.32-.002-.4-.017.754.489 1.594.733 2.521.733.951 0 1.792-.241 2.522-.723.73-.479 1.271-1.07 1.617-1.767.348-.695.521-1.419.521-2.174v-.209c.336-.253.609-.538.818-.854-.298.133-.611.222-.935.267zM12 21c-2.49 0-4.635-.89-6.376-2.646-1.741-1.751-2.624-3.889-2.624-6.354 0-2.488.884-4.634 2.627-6.375 1.74-1.741 3.884-2.625 6.373-2.625 2.466 0 4.604.883 6.354 2.624 1.756 1.742 2.646 3.888 2.646 6.376 0 2.465-.889 4.604-2.644 6.357-1.751 1.753-3.889 2.643-6.356 2.643zm0-16c-1.966 0-3.588.667-4.958 2.04-1.375 1.372-2.042 2.994-2.042 4.96 0 1.944.668 3.562 2.043 4.945 1.372 1.383 2.993 2.055 4.957 2.055 1.943 0 3.56-.673 4.942-2.057 1.385-1.384 2.058-3.002 2.058-4.943 0-1.963-.672-3.585-2.055-4.957-1.383-1.375-3-2.043-4.945-2.043z" + }, + "children": [] + }] + }] + }] +}; +exports.socialTwitterCircular = socialTwitterCircular; +var socialTwitter = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.89 7.012c.808-.496 1.343-1.173 1.605-2.034-.786.417-1.569.703-2.351.861-.703-.756-1.593-1.14-2.66-1.14-1.043 0-1.924.366-2.643 1.078-.715.717-1.076 1.588-1.076 2.605 0 .309.039.585.117.819-3.076-.105-5.622-1.381-7.628-3.837-.34.601-.51 1.213-.51 1.846 0 1.301.549 2.332 1.645 3.089-.625-.053-1.176-.211-1.645-.47 0 .929.273 1.705.82 2.388.549.676 1.254 1.107 2.115 1.291-.312.08-.641.118-.979.118-.312 0-.533-.026-.664-.083.23.757.664 1.371 1.291 1.841.625.472 1.344.721 2.152.743-1.332 1.045-2.855 1.562-4.578 1.562-.422 0-.721-.006-.902-.038 1.697 1.102 3.586 1.649 5.676 1.649 2.139 0 4.029-.542 5.674-1.626 1.645-1.078 2.859-2.408 3.639-3.974.784-1.564 1.172-3.192 1.172-4.892v-.468c.758-.57 1.371-1.212 1.84-1.921-.68.293-1.383.492-2.11.593z" + }, + "children": [] + }] +}; +exports.socialTwitter = socialTwitter; +var socialVimeoCircular = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M14.463 9.141c-.512 0-.988.238-1.43.715-.311.312-.5.678-.566 1.101.207-.131.387-.196.541-.196.159 0 .29.07.393.212.199.278.188.629-.033 1.051-.489.934-.846 1.4-1.066 1.4-.156 0-.356-.522-.602-1.567-.043-.155-.088-.378-.133-.667-.045-.288-.088-.538-.133-.75-.045-.211-.111-.428-.2-.649s-.2-.384-.333-.483c-.094-.069-.202-.104-.327-.104l-.173.021c-.289.067-.623.245-1 .534-.379.288-.689.566-.934.833l-.334.4.301.399.166-.133c.066-.045.189-.101.367-.167l.191-.043c.069 0 .116.025.143.076.066.089.271.717.615 1.884.346 1.167.562 1.839.65 2.017.156.311.367.55.633.717.13.08.271.121.427.121.165 0 .346-.047.54-.139.601-.399 1.289-1.066 2.067-2 .778-.933 1.255-1.922 1.433-2.966.156-.911-.11-1.434-.799-1.567-.138-.035-.272-.05-.404-.05zM12 21c-4.963 0-9-4.037-9-9s4.037-9 9-9 9 4.037 9 9-4.037 9-9 9zm0-16c-3.859 0-7 3.141-7 7s3.141 7 7 7 7-3.141 7-7-3.141-7-7-7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14.463 9.141c-.512 0-.988.238-1.43.715-.311.312-.5.678-.566 1.101.207-.131.387-.196.541-.196.159 0 .29.07.393.212.199.278.188.629-.033 1.051-.489.934-.846 1.4-1.066 1.4-.156 0-.356-.522-.602-1.567-.043-.155-.088-.378-.133-.667-.045-.288-.088-.538-.133-.75-.045-.211-.111-.428-.2-.649s-.2-.384-.333-.483c-.094-.069-.202-.104-.327-.104l-.173.021c-.289.067-.623.245-1 .534-.379.288-.689.566-.934.833l-.334.4.301.399.166-.133c.066-.045.189-.101.367-.167l.191-.043c.069 0 .116.025.143.076.066.089.271.717.615 1.884.346 1.167.562 1.839.65 2.017.156.311.367.55.633.717.13.08.271.121.427.121.165 0 .346-.047.54-.139.601-.399 1.289-1.066 2.067-2 .778-.933 1.255-1.922 1.433-2.966.156-.911-.11-1.434-.799-1.567-.138-.035-.272-.05-.404-.05zM12 21c-4.963 0-9-4.037-9-9s4.037-9 9-9 9 4.037 9 9-4.037 9-9 9zm0-16c-3.859 0-7 3.141-7 7s3.141 7 7 7 7-3.141 7-7-3.141-7-7-7z" + }, + "children": [] + }] + }] + }] +}; +exports.socialVimeoCircular = socialVimeoCircular; +var socialVimeo = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.92 8.776c-.329 1.929-1.211 3.758-2.649 5.48-1.436 1.725-2.71 2.957-3.819 3.695-.699.331-1.293.34-1.786.034-.493-.31-.883-.751-1.169-1.325-.165-.328-.565-1.569-1.202-3.728-.636-2.155-1.017-3.315-1.139-3.479-.083-.163-.288-.184-.616-.061-.33.122-.555.226-.678.309-.123.081-.226.165-.308.245l-.554-.737.616-.74c.452-.492 1.026-1.007 1.724-1.54.7-.534 1.314-.862 1.848-.987.371-.08.679-.028.924.156.247.184.452.484.616.894.165.409.289.811.369 1.199.083.392.165.854.248 1.387.081.534.164.945.246 1.232.451 1.93.821 2.896 1.109 2.896.41 0 1.067-.863 1.971-2.59.41-.779.432-1.426.062-1.941-.369-.512-.943-.522-1.724-.029.123-.78.472-1.456 1.046-2.031 1.026-1.109 2.157-1.521 3.388-1.234 1.273.247 1.765 1.213 1.477 2.895z" + }, + "children": [] + }] +}; +exports.socialVimeo = socialVimeo; +var socialYoutubeCircular = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polygon", + "attribs": { + "points": "8.48,13.14 9.21,13.14 9.21,16.75 9.91,16.75 9.91,13.14 10.64,13.14 10.64,12.53 8.48,12.53 " + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12.17,16c-0.12,0.14-0.53,0.42-0.53,0.02v-2.39h-0.62v2.61c0,0.79,0.79,0.58,1.16,0.17v0.34h0.62v-3.12h-0.62V16H12.17z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14.48,13.61c-0.36,0-0.59,0.27-0.59,0.27v-1.36h-0.63v4.23h0.63v-0.24c0,0,0.21,0.28,0.59,0.28c0.33,0,0.58-0.29,0.58-0.69\r\n\tc0,0,0-1.26,0-1.73S14.84,13.61,14.48,13.61z M14.41,16.02c0,0.23-0.16,0.34-0.37,0.25c-0.05-0.02-0.1-0.06-0.15-0.11v-1.94\r\n\tc0.04-0.04,0.09-0.07,0.13-0.1c0.22-0.11,0.39,0.06,0.39,0.29L14.41,16.02L14.41,16.02z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16.72,15.86c0,0.24-0.13,0.4-0.28,0.41c-0.16,0.01-0.32-0.12-0.32-0.41v-0.59h1.19v-0.8c0-0.29-0.11-0.51-0.26-0.66\r\n\tc-0.17-0.16-0.4-0.24-0.63-0.24c-0.22,0-0.45,0.07-0.63,0.21c-0.19,0.15-0.31,0.38-0.31,0.69v1.4c0,0.28,0.09,0.5,0.23,0.66\r\n\tc0.17,0.18,0.4,0.28,0.64,0.29c0.29,0.01,0.6-0.11,0.78-0.36c0.11-0.15,0.18-0.35,0.18-0.59v-0.16h-0.59\r\n\tC16.72,15.71,16.72,15.76,16.72,15.86z M16.12,14.47c0-0.17,0.1-0.37,0.29-0.37s0.31,0.18,0.31,0.37s0,0.32,0,0.32h-0.6\r\n\tC16.12,14.78,16.12,14.64,16.12,14.47z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12.97,3c-4.97,0-9,4.03-9,9s4.03,9,9,9s9-4.03,9-9S17.94,3,12.97,3z M14.55,6.37h0.8v2.68c0,0.17,0.08,0.17,0.11,0.17\r\n\tc0.12,0,0.3-0.13,0.39-0.22V6.36h0.8V9.9h-0.8V9.59c-0.11,0.1-0.22,0.18-0.33,0.24c-0.15,0.08-0.29,0.11-0.43,0.11\r\n\tc-0.18,0-0.31-0.06-0.41-0.17c-0.09-0.11-0.13-0.28-0.13-0.49V6.37z M12,7.3c0-0.55,0.45-1,1-1s1,0.45,1,1V9c0,0.55-0.45,1-1,1\r\n\ts-1-0.45-1-1V7.3z M9.92,5.15l0.48,1.76l0.49-1.76h0.91l-0.94,2.78V9.9H9.97V7.93L9.01,5.15H9.92z M17.82,17.69\r\n\tc-0.51,0.5-4.83,0.51-4.83,0.51s-4.31-0.01-4.83-0.51c-0.51-0.5-0.51-2.99-0.51-3.01c0-0.01,0-2.5,0.51-3.01\r\n\tc0.51-0.5,4.83-0.51,4.83-0.51s4.31,0.01,4.83,0.51c0.51,0.5,0.52,2.99,0.52,3.01C18.34,14.68,18.34,17.18,17.82,17.69z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12.98,9.35c0.17,0,0.25-0.1,0.26-0.26v-1.9c0-0.13-0.13-0.24-0.25-0.24s-0.25,0.1-0.25,0.24v1.9\r\n\tC12.74,9.24,12.81,9.34,12.98,9.35z" + }, + "children": [] + }] +}; +exports.socialYoutubeCircular = socialYoutubeCircular; +var socialYoutube = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M22.8 8.6c-.2-1.5-.4-2.6-1-3-.6-.5-5.8-.6-9.8-.6s-9.2.1-9.8.6c-.6.4-.8 1.5-1 3s-.2 2.4-.2 3.4 0 1.9.2 3.4.4 2.6 1 3c.6.5 5.8.6 9.8.6 4 0 9.2-.1 9.8-.6.6-.4.8-1.5 1-3s.2-2.4.2-3.4 0-1.9-.2-3.4zm-12.8 7v-7.2l6 3.6-6 3.6z" + }, + "children": [] + }] +}; +exports.socialYoutube = socialYoutube; +var sortAlphabeticallyOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M5.618 14h2.764l-1.382-2.764zM21 14l2.4-3.2c.686-.915.795-2.119.284-3.142-.512-1.023-1.54-1.658-2.684-1.658h-6c-1.654 0-3 1.346-3 3 0 .77.295 1.469.774 2h-.274c-.368 0-.708.107-1.005.281l-1.811-3.623c-.498-.995-1.527-1.614-2.684-1.614s-2.186.619-2.684 1.614l-4 8c-.358.717-.416 1.53-.163 2.291s.788 1.376 1.504 1.735c.414.207.879.316 1.342.316 1.143 0 2.171-.635 2.684-1.657l.171-.343h2.291l.171.342c.512 1.023 1.54 1.658 2.684 1.658.464 0 .928-.109 1.342-.316.243-.122.455-.282.652-.458.54.488 1.246.774 2.006.774h6c1.654 0 3-1.346 3-3s-1.346-3-3-3zm-9.553 3.895c-.143.071-.296.105-.446.105-.368 0-.721-.203-.896-.553l-.723-1.447h-4.764l-.724 1.447c-.175.35-.528.553-.895.553-.15 0-.303-.034-.446-.106-.494-.247-.694-.848-.447-1.342l4-8c.169-.338.532-.508.894-.508s.725.169.895.508l4 8c.247.495.046 1.095-.448 1.343zm1.053-3.895c-.552 0-1-.448-1-1s.448-1 1-1h1c.552 0 1 .448 1 1s-.448 1-1 1h-1zm8.5 4h-6c-.379 0-.725-.214-.895-.553s-.132-.744.095-1.047l4.8-6.4h-4c-.552 0-1-.448-1-1s.448-1 1-1h6c.379 0 .725.214.895.553s.132.744-.095 1.047l-4.8 6.4h4c.552 0 1 .448 1 1s-.448 1-1 1z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M5.618 14h2.764l-1.382-2.764zM21 14l2.4-3.2c.686-.915.795-2.119.284-3.142-.512-1.023-1.54-1.658-2.684-1.658h-6c-1.654 0-3 1.346-3 3 0 .77.295 1.469.774 2h-.274c-.368 0-.708.107-1.005.281l-1.811-3.623c-.498-.995-1.527-1.614-2.684-1.614s-2.186.619-2.684 1.614l-4 8c-.358.717-.416 1.53-.163 2.291s.788 1.376 1.504 1.735c.414.207.879.316 1.342.316 1.143 0 2.171-.635 2.684-1.657l.171-.343h2.291l.171.342c.512 1.023 1.54 1.658 2.684 1.658.464 0 .928-.109 1.342-.316.243-.122.455-.282.652-.458.54.488 1.246.774 2.006.774h6c1.654 0 3-1.346 3-3s-1.346-3-3-3zm-9.553 3.895c-.143.071-.296.105-.446.105-.368 0-.721-.203-.896-.553l-.723-1.447h-4.764l-.724 1.447c-.175.35-.528.553-.895.553-.15 0-.303-.034-.446-.106-.494-.247-.694-.848-.447-1.342l4-8c.169-.338.532-.508.894-.508s.725.169.895.508l4 8c.247.495.046 1.095-.448 1.343zm1.053-3.895c-.552 0-1-.448-1-1s.448-1 1-1h1c.552 0 1 .448 1 1s-.448 1-1 1h-1zm8.5 4h-6c-.379 0-.725-.214-.895-.553s-.132-.744.095-1.047l4.8-6.4h-4c-.552 0-1-.448-1-1s.448-1 1-1h6c.379 0 .725.214.895.553s.132.744-.095 1.047l-4.8 6.4h4c.552 0 1 .448 1 1s-.448 1-1 1z" + }, + "children": [] + }] + }] + }] +}; +exports.sortAlphabeticallyOutline = sortAlphabeticallyOutline; +var sortAlphabetically = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M10.895 16.553l-4-8c-.339-.678-1.45-.678-1.789 0l-4 8c-.247.494-.047 1.095.447 1.342.495.248 1.095.046 1.342-.447l.723-1.448h4.764l.724 1.447c.175.351.528.553.895.553.15 0 .303-.034.446-.105.494-.248.695-.848.448-1.342zm-6.277-2.553l1.382-2.764 1.382 2.764h-2.764zM22 18h-6c-.379 0-.725-.214-.895-.553s-.132-.744.095-1.047l4.8-6.4h-4c-.552 0-1-.448-1-1s.448-1 1-1h6c.379 0 .725.214.895.553s.132.744-.095 1.047l-4.8 6.4h4c.552 0 1 .448 1 1s-.448 1-1 1zM14 14h-2c-.552 0-1-.448-1-1s.448-1 1-1h2c.552 0 1 .448 1 1s-.448 1-1 1z" + }, + "children": [] + }] +}; +exports.sortAlphabetically = sortAlphabetically; +var sortNumericallyOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M23.292 12.134c.138-.445.208-.91.208-1.384 0-2.619-2.131-4.75-4.75-4.75-1.396 0-2.685.61-3.573 1.632l-.056-.067c-.973-.974-2.349-1.533-3.776-1.533-1.422 0-2.794.556-3.77 1.525-.264-.431-.644-.813-1.122-1.108-.474-.294-1.032-.449-1.613-.449-.482 0-.955.109-1.369.316l-1.406.747c-1.442.721-2.051 2.526-1.313 4.002.272.543.714.982 1.248 1.272v4.663c0 1.654 1.346 3 3 3 .766 0 1.458-.297 1.989-.771.54.487 1.25.771 2.011.771h5c.778 0 1.479-.305 2.01-.795.796.5 1.731.795 2.74.795 2.895 0 5.25-2.355 5.25-5.25 0-.922-.25-1.825-.708-2.616zm-17.292 4.866c0 .552-.448 1-1 1s-1-.448-1-1v-6.382c-.144.072-.306.106-.471.106-.401 0-.813-.203-.988-.553-.247-.494-.031-1.095.463-1.342l1.361-.724c.141-.07.307-.105.475-.105.199 0 .4.05.561.149.294.183.599.504.599.851v8zm8 1h-5c-.404 0-.769-.244-.924-.617-.155-.374-.069-.804.217-1.09l4-4c.254-.254.394-.591.394-.95 0-.358-.14-.695-.394-.949s-.601-.381-.949-.381-.696.127-.952.382c-.252.252-.392.589-.392.948 0 .552-.448 1-1 1s-1-.448-1-1c0-.894.348-1.733.98-2.364.632-.631 1.498-.947 2.364-.947s1.731.316 2.363.948c.632.631.979 1.471.979 2.363 0 .893-.348 1.733-.979 2.364l-2.293 2.293h2.586c.552 0 1 .448 1 1s-.448 1-1 1zm4.75 0c-1.792 0-3.25-1.458-3.25-3.25 0-.552.448-1 1-1s1 .448 1 1c0 .689.561 1.25 1.25 1.25s1.25-.561 1.25-1.25-.561-1.25-1.25-1.25c-.552 0-1-.448-1-1s.448-1 1-1c.414 0 .75-.336.75-.75s-.336-.75-.75-.75c-.281 0-.536.155-.665.404-.178.343-.527.54-.889.54-.155 0-.312-.036-.459-.112-.491-.254-.682-.857-.428-1.348.475-.915 1.41-1.484 2.441-1.484 1.516 0 2.75 1.233 2.75 2.75 0 .611-.207 1.17-.545 1.627.639.594 1.045 1.434 1.045 2.373 0 1.792-1.458 3.25-3.25 3.25z" + }, + "children": [] + }] +}; +exports.sortNumericallyOutline = sortNumericallyOutline; +var sortNumerically = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 18c-.552 0-1-.448-1-1v-6.382l-.553.276c-.495.248-1.095.046-1.342-.447-.247-.494-.046-1.094.448-1.342l2-1c.31-.155.678-.139.973.044.294.183.474.504.474.851v8c0 .552-.448 1-1 1zM13 18h-5c-.404 0-.769-.244-.924-.617-.155-.374-.069-.804.217-1.09l4-4c.254-.254.394-.591.394-.95 0-.358-.14-.695-.394-.949-.508-.508-1.39-.508-1.9.001-.253.252-.393.589-.393.948 0 .552-.448 1-1 1s-1-.448-1-1c0-.894.348-1.733.98-2.364 1.265-1.263 3.464-1.263 4.727.001.632.631.979 1.471.979 2.363 0 .893-.348 1.733-.979 2.364l-2.293 2.293h2.586c.552 0 1 .448 1 1s-.448 1-1 1zM20.955 12.377c.338-.457.545-1.016.545-1.627 0-1.517-1.234-2.75-2.75-2.75-1.031 0-1.966.569-2.44 1.484-.254.49-.063 1.094.428 1.348.49.254 1.094.062 1.348-.428.128-.249.383-.404.664-.404.414 0 .75.336.75.75s-.336.75-.75.75c-.552 0-1 .448-1 1s.448 1 1 1c.689 0 1.25.561 1.25 1.25s-.561 1.25-1.25 1.25-1.25-.561-1.25-1.25c0-.552-.448-1-1-1s-1 .448-1 1c0 1.792 1.458 3.25 3.25 3.25s3.25-1.458 3.25-3.25c0-.939-.406-1.779-1.045-2.373z" + }, + "children": [] + }] +}; +exports.sortNumerically = sortNumerically; +var spannerOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "cx": "8", + "cy": "16", + "r": "1" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "8", + "cy": "16", + "r": "1" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20.733 4.657c-.392-.378-1.013-.377-1.399.009.387-.386.388-1.008.01-1.4-1.078-.792-2.405-1.266-3.844-1.266-3.59 0-6.5 2.91-6.5 6.5l.031.379c-.337.239-2.893 2.147-4.258 3.301-1.135.99-1.773 2.375-1.773 3.82 0 2.757 2.243 5 5 5 1.465 0 2.854-.65 3.811-1.784 1.173-1.375 3.08-3.923 3.317-4.229l.372.013c3.59 0 6.5-2.91 6.5-6.5 0-1.44-.474-2.766-1.267-3.843zm-12.733 14.343c-1.656 0-3-1.343-3-3 0-.92.423-1.732 1.064-2.292 2.368-2.002 3.617-2.748 5.115-4.015-.105-.382-.179-.777-.179-1.193 0-2.485 2.015-4.5 4.5-4.5.47 0 .914.092 1.339.226l-2.839 2.774.5 2.5 2.5.5 2.805-2.741c.115.396.195.807.195 1.241 0 2.485-2.015 4.5-4.5 4.5-.416 0-.811-.074-1.193-.18-1.267 1.498-2.013 2.748-4.024 5.105-.551.652-1.363 1.075-2.283 1.075zm11.384-12.729l-2.705 2.645-1.329-.266-.263-1.314 2.726-2.663c.651.393 1.19.939 1.571 1.598z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20.733 4.657c-.392-.378-1.013-.377-1.399.009.387-.386.388-1.008.01-1.4-1.078-.792-2.405-1.266-3.844-1.266-3.59 0-6.5 2.91-6.5 6.5l.031.379c-.337.239-2.893 2.147-4.258 3.301-1.135.99-1.773 2.375-1.773 3.82 0 2.757 2.243 5 5 5 1.465 0 2.854-.65 3.811-1.784 1.173-1.375 3.08-3.923 3.317-4.229l.372.013c3.59 0 6.5-2.91 6.5-6.5 0-1.44-.474-2.766-1.267-3.843zm-12.733 14.343c-1.656 0-3-1.343-3-3 0-.92.423-1.732 1.064-2.292 2.368-2.002 3.617-2.748 5.115-4.015-.105-.382-.179-.777-.179-1.193 0-2.485 2.015-4.5 4.5-4.5.47 0 .914.092 1.339.226l-2.839 2.774.5 2.5 2.5.5 2.805-2.741c.115.396.195.807.195 1.241 0 2.485-2.015 4.5-4.5 4.5-.416 0-.811-.074-1.193-.18-1.267 1.498-2.013 2.748-4.024 5.105-.551.652-1.363 1.075-2.283 1.075zm11.384-12.729l-2.705 2.645-1.329-.266-.263-1.314 2.726-2.663c.651.393 1.19.939 1.571 1.598z" + }, + "children": [] + }] + }] + }] +}; +exports.spannerOutline = spannerOutline; +var spanner = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M20.285 7.119c-.05-.168-.184-.299-.354-.344-.172-.047-.352.003-.477.126l-2.616 2.557-1.914-.383-.381-1.907 2.645-2.585c.126-.123.178-.303.137-.474s-.168-.308-.336-.361c-.531-.166-1.018-.248-1.489-.248-2.757 0-5 2.243-5 5 0 .323.038.65.118 1.01-.562.463-1.096.862-1.701 1.314-.865.646-1.845 1.377-3.182 2.506-.785.686-1.235 1.659-1.235 2.67 0 1.93 1.57 3.5 3.5 3.5 1.021 0 1.993-.456 2.662-1.25 1.149-1.347 1.891-2.336 2.544-3.209.442-.591.832-1.111 1.283-1.66.36.081.688.119 1.011.119 2.757 0 5-2.243 5-5 0-.437-.068-.875-.215-1.381zm-12.285 9.881c-.553 0-1-.447-1-1s.447-1 1-1 1 .447 1 1-.447 1-1 1z" + }, + "children": [] + }] +}; +exports.spanner = spanner; +var spiral = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 11.8c1-.4.7-1.8 0-2.4-1.1-.9-2.7-.4-3.4.8-1.5 2.4.9 5 3.4 4.9 2.7-.2 4.3-2.9 3.7-5.4-.7-3-3.9-4.5-6.7-3.6-2.6.8-4.2 3.5-4 6.2.3 3 2.6 5.4 5.5 5.9 2.8.5 5.7-.8 7.2-3.2.7-1.1 1.2-2.4 1.2-3.8 0-.5.5-1 1.1-.9.8 0 1 .8.9 1.4-.4 4.7-4.5 8.6-9.3 8.6-5.9 0-10.5-6.2-8-11.8 2.5-5.4 10.3-6.5 13.3-1.2 1.5 2.5 1.2 5.8-.9 7.9-2 2-5.3 2.4-7.7.7-2.2-1.6-2.9-4.9-1.1-7.2 1.7-2.3 5.5-2.4 7 .2 1.1 1.9 0 5.2-2.5 4.9-1.6 0-3-1.7-2.1-3.2.6-.9 1.9-.6 2.3.1.2.8.1 1.1.1 1.1z" + }, + "children": [] + }] +}; +exports.spiral = spiral; +var starFullOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M3.1 11.3l3.6 3.3-1 4.6c-.1.6.1 1.2.6 1.5.2.2.5.3.8.3.2 0 .4 0 .6-.1 0 0 .1 0 .1-.1l4.1-2.3 4.1 2.3s.1 0 .1.1c.5.2 1.1.2 1.5-.1.5-.3.7-.9.6-1.5l-1-4.6c.4-.3 1-.9 1.6-1.5l1.9-1.7.1-.1c.4-.4.5-1 .3-1.5s-.6-.9-1.2-1h-.1l-4.7-.5-1.9-4.3s0-.1-.1-.1c-.1-.7-.6-1-1.1-1-.5 0-1 .3-1.3.8 0 0 0 .1-.1.1l-1.9 4.3-4.7.5h-.1c-.5.1-1 .5-1.2 1-.1.6 0 1.2.4 1.6z" + }, + "children": [] + }] +}; +exports.starFullOutline = starFullOutline; +var starHalfOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M3.1 11.3l3.6 3.3-1 4.6c-.1.6.1 1.2.6 1.5.2.2.5.3.8.3.2 0 .4 0 .6-.1 0 0 .1 0 .1-.1l4.1-2.3 4.1 2.3s.1 0 .1.1c.5.2 1.1.2 1.5-.1.5-.3.7-.9.6-1.5l-1-4.6c.4-.3 1-.9 1.6-1.5l1.9-1.7.1-.1c.4-.4.5-1 .3-1.5s-.6-.9-1.2-1h-.1l-4.7-.5-1.9-4.3s0-.1-.1-.1c-.1-.7-.6-1-1.1-1-.5 0-1 .3-1.3.8 0 0 0 .1-.1.1l-1.9 4.3-4.7.5h-.1c-.5.1-1 .5-1.2 1-.1.6 0 1.2.4 1.6zm8.9 5v-10.5l1.7 3.8c.1.3.5.5.8.6l4.2.5-3.1 2.8c-.3.2-.4.6-.3 1 0 .2.5 2.2.8 4.1l-3.6-2.1c-.2-.2-.3-.2-.5-.2z" + }, + "children": [] + }] +}; +exports.starHalfOutline = starHalfOutline; +var starHalf = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M11.5 4.3c-.9 1.9-2.2 4.8-2.2 4.8s-3.1.4-5.2.6c-.2 0-.4.2-.4.3-.1.2 0 .4.1.5 1.6 1.4 3.9 3.6 3.9 3.6s-.6 3.1-1.1 5.2c0 .2 0 .4.2.5.2.2.4.2.6.1 1.8-1 4.6-2.6 4.6-2.6v-13.3c-.2 0-.4.2-.5.3z" + }, + "children": [] + }] +}; +exports.starHalf = starHalf; +var starOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M16.855 20.966c-.224 0-.443-.05-.646-.146l-.104-.051-4.107-2.343-4.107 2.344-.106.053c-.488.228-1.085.174-1.521-.143-.469-.34-.701-.933-.586-1.509l.957-4.642-1.602-1.457-1.895-1.725-.078-.082c-.375-.396-.509-.97-.34-1.492.173-.524.62-.912 1.16-1.009l.102-.018 4.701-.521 1.946-4.31.06-.11c.262-.473.764-.771 1.309-.771.543 0 1.044.298 1.309.77l.06.112 1.948 4.312 4.701.521.104.017c.539.1.986.486 1.158 1.012.17.521.035 1.098-.34 1.494l-.078.078-3.498 3.184.957 4.632c.113.587-.118 1.178-.59 1.519-.252.182-.556.281-.874.281zm-8.149-6.564c-.039.182-.466 2.246-.845 4.082l3.643-2.077c.307-.175.684-.175.99 0l3.643 2.075-.849-4.104c-.071-.346.045-.705.308-.942l3.1-2.822-4.168-.461c-.351-.039-.654-.26-.801-.584l-1.728-3.821-1.726 3.821c-.146.322-.45.543-.801.584l-4.168.461 3.1 2.822c.272.246.384.617.302.966z" + }, + "children": [] + }] +}; +exports.starOutline = starOutline; +var star = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M9.362 9.158l-5.268.584c-.19.023-.358.15-.421.343s0 .394.14.521c1.566 1.429 3.919 3.569 3.919 3.569-.002 0-.646 3.113-1.074 5.19-.036.188.032.387.196.506.163.119.373.121.538.028 1.844-1.048 4.606-2.624 4.606-2.624l4.604 2.625c.168.092.378.09.541-.029.164-.119.232-.318.195-.505l-1.071-5.191 3.919-3.566c.14-.131.202-.332.14-.524s-.23-.319-.42-.341c-2.108-.236-5.269-.586-5.269-.586l-2.183-4.83c-.082-.173-.254-.294-.456-.294s-.375.122-.453.294l-2.183 4.83z" + }, + "children": [] + }] +}; +exports.star = star; +var starburstOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M21.556 11.169l-1.849-1.232.984-1.993c.148-.3.137-.654-.03-.943-.168-.29-.468-.477-.802-.498l-2.218-.143-.144-2.218c-.02-.334-.208-.635-.497-.802-.29-.167-.645-.18-.943-.03l-1.991.985-1.233-1.849c-.371-.557-1.293-.557-1.664 0l-1.234 1.848-1.992-.984c-.299-.15-.654-.137-.943.03-.29.167-.477.468-.498.802l-.143 2.217-2.218.143c-.334.022-.635.209-.802.498s-.179.644-.03.943l.984 1.993-1.849 1.233c-.278.186-.445.498-.445.832s.167.646.445.832l1.85 1.233-.985 1.992c-.148.3-.137.654.03.943s.468.477.802.498l2.218.143.143 2.218c.021.333.208.634.498.801s.642.179.943.031l1.992-.985 1.233 1.849c.186.278.498.445.832.445s.646-.167.832-.445l1.233-1.849 1.991.985c.299.148.653.136.943-.03.29-.167.477-.468.498-.802l.143-2.217 2.219-.144c.334-.021.635-.208.802-.498s.179-.644.03-.943l-.984-1.992 1.849-1.233c.278-.186.445-.498.445-.832 0-.334-.167-.647-.445-.832zm-4.032 2.997l.71 1.435-1.6.104c-.502.033-.901.432-.934.934l-.103 1.598-1.435-.709c-.45-.224-.996-.077-1.275.342l-.887 1.33-.889-1.333c-.191-.287-.508-.445-.833-.445-.149 0-.3.033-.442.104l-1.436.709-.103-1.598c-.032-.501-.432-.901-.934-.934l-1.596-.103.71-1.435c.223-.451.076-.997-.342-1.275l-1.333-.889 1.332-.888c.418-.279.564-.825.342-1.275l-.71-1.436 1.6-.103c.502-.033.901-.432.934-.934l.103-1.598 1.435.709c.448.221.996.076 1.275-.342l.887-1.331.889 1.333c.279.418.826.563 1.275.342l1.436-.71.104 1.599c.033.501.433.9.934.933l1.598.103-.709 1.437c-.223.451-.076.996.342 1.275l1.332.888-1.333.889c-.42.277-.566.823-.344 1.274z" + }, + "children": [] + }] +}; +exports.starburstOutline = starburstOutline; +var starburst = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M19.064 10.109l1.179-2.387c.074-.149.068-.327-.015-.471-.083-.145-.234-.238-.401-.249l-2.656-.172-.172-2.656c-.011-.167-.104-.317-.249-.401-.145-.084-.322-.09-.472-.015l-2.385 1.18-1.477-2.215c-.186-.278-.646-.278-.832 0l-1.477 2.215-2.385-1.18c-.151-.075-.327-.069-.472.015-.145.083-.238.234-.249.401l-.171 2.656-2.657.171c-.167.011-.318.104-.401.249-.084.145-.089.322-.015.472l1.179 2.386-2.214 1.477c-.139.093-.223.249-.223.416s.083.323.223.416l2.215 1.477-1.18 2.386c-.074.15-.068.327.015.472.083.144.234.238.401.248l2.656.171.171 2.657c.011.167.104.317.249.401.144.083.32.088.472.015l2.386-1.179 1.477 2.214c.093.139.249.223.416.223s.323-.083.416-.223l1.477-2.214 2.386 1.179c.15.073.327.068.472-.015s.238-.234.249-.401l.171-2.656 2.656-.172c.167-.011.317-.104.401-.249.083-.145.089-.322.015-.472l-1.179-2.385 2.214-1.478c.139-.093.223-.249.223-.416s-.083-.323-.223-.416l-2.214-1.475z" + }, + "children": [] + }] +}; +exports.starburst = starburst; +var stopwatch = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M19.414 8.902c.104-.048.206-.108.293-.195l.5-.5c.391-.391.391-1.023 0-1.414s-1.023-.391-1.414 0l-.5.5-.115.173c-1.387-1.312-3.188-2.19-5.189-2.41l.011-.056v-1h1c.55 0 1-.45 1-1s-.45-1-1-1h-4c-.55 0-1 .45-1 1s.45 1 1 1h1v1l.012.057c-4.506.492-8.012 4.307-8.012 8.943 0 4.971 4.029 9 9 9s9-4.029 9-9c0-1.894-.588-3.648-1.586-5.098zm-7.414 12.098c-3.859 0-7-3.14-7-7s3.141-7 7-7 7 3.14 7 7-3.141 7-7 7zM13 13v-2c0-.55-.45-1-1-1s-1 .45-1 1v3c0 .55.45 1 1 1h3c.55 0 1-.45 1-1s-.45-1-1-1h-2zM12 8c-3.312 0-6 2.688-6 6s2.688 6 6 6 6-2.688 6-6-2.688-6-6-6zm0 11c-2.757 0-5-2.243-5-5s2.243-5 5-5 5 2.243 5 5-2.243 5-5 5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19.414 8.902c.104-.048.206-.108.293-.195l.5-.5c.391-.391.391-1.023 0-1.414s-1.023-.391-1.414 0l-.5.5-.115.173c-1.387-1.312-3.188-2.19-5.189-2.41l.011-.056v-1h1c.55 0 1-.45 1-1s-.45-1-1-1h-4c-.55 0-1 .45-1 1s.45 1 1 1h1v1l.012.057c-4.506.492-8.012 4.307-8.012 8.943 0 4.971 4.029 9 9 9s9-4.029 9-9c0-1.894-.588-3.648-1.586-5.098zm-7.414 12.098c-3.859 0-7-3.14-7-7s3.141-7 7-7 7 3.14 7 7-3.141 7-7 7zM13 13v-2c0-.55-.45-1-1-1s-1 .45-1 1v3c0 .55.45 1 1 1h3c.55 0 1-.45 1-1s-.45-1-1-1h-2zM12 8c-3.312 0-6 2.688-6 6s2.688 6 6 6 6-2.688 6-6-2.688-6-6-6zm0 11c-2.757 0-5-2.243-5-5s2.243-5 5-5 5 2.243 5 5-2.243 5-5 5z" + }, + "children": [] + }] + }] + }] +}; +exports.stopwatch = stopwatch; +var support = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 3.5c-4.688 0-8.5 3.812-8.5 8.5s3.812 8.5 8.5 8.5 8.5-3.812 8.5-8.5-3.812-8.5-8.5-8.5zm6.5 8.5c0 1.064-.264 2.066-.718 2.956l-1.931-1.931c.088-.332.147-.674.147-1.025 0-.355-.062-.693-.147-1.021l1.932-1.932c.455.889.717 1.891.717 2.953zm-13 0c0-1.064.264-2.066.718-2.956l1.933 1.933c-.086.33-.147.668-.147 1.022 0 .353.062.69.147 1.021l-1.934 1.934c-.455-.89-.717-1.892-.717-2.954zm3.068-2.02l-1.775-1.775 1.414-1.414 1.775 1.775c-.584.345-1.068.83-1.414 1.414zm-1.777 5.813l1.773-1.773c.17.289.362.564.605.809s.52.438.807.607l-1.771 1.771-1.414-1.414zm3.795-2.379c-.377-.378-.585-.88-.584-1.414 0-1.104.896-2 1.998-2 1.104 0 2 .896 2 2.001.001.533-.207 1.035-.584 1.412-.755.757-2.073.757-2.83.001zm6.623-5.207l-1.775 1.775c-.345-.586-.828-1.069-1.412-1.416l1.773-1.773 1.414 1.414zm-2.378 6.619c.241-.242.435-.518.604-.803l1.771 1.771-1.414 1.414-1.772-1.772c.291-.17.567-.366.811-.61zm.125-8.608l-1.933 1.932c-.328-.088-.668-.15-1.023-.15s-.693.062-1.021.148l-1.932-1.932c.889-.455 1.891-.717 2.953-.717 1.064.001 2.066.265 2.956.719zm-5.912 11.564l1.933-1.933c.332.088.672.149 1.023.149s.691-.062 1.021-.147l1.932 1.932c-.889.455-1.891.717-2.953.717-1.064 0-2.066-.264-2.956-.718z" + }, + "children": [] + }] +}; +exports.support = support; +var tabsOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18 4h-10c-1.104 0-2 .896-2 2v2h-1c-1.104 0-2 .896-2 2v9c0 1.104.896 2 2 2h9c1.104 0 2-.896 2-2v-1h2c1.104 0 2-.896 2-2v-10c0-1.104-.896-2-2-2zm-13 15v-9h8.5c.275 0 .5.225.5.5v8.5h-9zm13-3h-3v-5.5c0-.827-.673-1.5-1.5-1.5h-5.5v-3h10v10z" + }, + "children": [] + }] +}; +exports.tabsOutline = tabsOutline; +var tag = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M9 4c1.279 0 2.559.488 3.535 1.465l3.465 3.535 5 5-7 7-5.498-5.498c-.037.033-3.037-2.967-3.037-2.967-1.953-1.953-1.953-5.119 0-7.07.976-.977 2.256-1.465 3.535-1.465m0-2c-1.87 0-3.628.729-4.949 2.051-1.322 1.32-2.051 3.078-2.051 4.948s.729 3.628 2.051 4.95l3 3c.107.107.227.201.35.279l5.187 5.186c.391.391.9.586 1.413.586s1.022-.195 1.414-.586l7-7c.78-.781.78-2.047 0-2.828l-5-5-3.45-3.521c-1.337-1.336-3.095-2.065-4.965-2.065zM9 7.498c.829 0 1.5.672 1.5 1.502s-.671 1.498-1.5 1.498-1.5-.668-1.5-1.498.671-1.502 1.5-1.502m0-1c-1.379 0-2.5 1.122-2.5 2.502 0 1.377 1.121 2.498 2.5 2.498s2.5-1.121 2.5-2.498c0-1.38-1.121-2.502-2.5-2.502z" + }, + "children": [] + }] +}; +exports.tag = tag; +var tags = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M21.422 9.594l-6.465-6.535c-1.329-1.33-3.087-2.059-4.957-2.059s-3.628.729-4.95 2.051c-1.416 1.414-2.127 3.356-2.027 5.314-.662 1.085-1.023 2.33-1.023 3.634 0 1.87.729 3.628 2.051 4.95l3.053 2.984 3.482 3.48c.391.392.902.587 1.414.587s1.023-.195 1.414-.586l7-7c.778-.778.782-2.038.008-2.82l-.093-.094 1.085-1.086c.778-.778.782-2.038.008-2.82zm-9.422 12.406l-3.498-3.497-3.037-2.968c-1.953-1.953-1.953-5.119 0-7.07.976-.977 2.256-1.465 3.535-1.465s2.559.488 3.535 1.465l6.465 6.535-7 7zm1.957-14.941c-1.329-1.33-3.087-2.059-4.957-2.059-1.276 0-2.497.347-3.565.982.241-.55.579-1.067 1.03-1.518.976-.976 2.256-1.464 3.535-1.464s2.559.488 3.535 1.465l6.465 6.535-1.078 1.078-4.965-5.019zM9 10.499c.83 0 1.5.672 1.5 1.501 0 .83-.67 1.499-1.5 1.499s-1.5-.669-1.5-1.499c0-.829.67-1.501 1.5-1.501m0-1c-1.378 0-2.5 1.122-2.5 2.501 0 1.378 1.122 2.499 2.5 2.499s2.5-1.121 2.5-2.499c0-1.379-1.122-2.501-2.5-2.501z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21.422 9.594l-6.465-6.535c-1.329-1.33-3.087-2.059-4.957-2.059s-3.628.729-4.95 2.051c-1.416 1.414-2.127 3.356-2.027 5.314-.662 1.085-1.023 2.33-1.023 3.634 0 1.87.729 3.628 2.051 4.95l3.053 2.984 3.482 3.48c.391.392.902.587 1.414.587s1.023-.195 1.414-.586l7-7c.778-.778.782-2.038.008-2.82l-.093-.094 1.085-1.086c.778-.778.782-2.038.008-2.82zm-9.422 12.406l-3.498-3.497-3.037-2.968c-1.953-1.953-1.953-5.119 0-7.07.976-.977 2.256-1.465 3.535-1.465s2.559.488 3.535 1.465l6.465 6.535-7 7zm1.957-14.941c-1.329-1.33-3.087-2.059-4.957-2.059-1.276 0-2.497.347-3.565.982.241-.55.579-1.067 1.03-1.518.976-.976 2.256-1.464 3.535-1.464s2.559.488 3.535 1.465l6.465 6.535-1.078 1.078-4.965-5.019zM9 10.499c.83 0 1.5.672 1.5 1.501 0 .83-.67 1.499-1.5 1.499s-1.5-.669-1.5-1.499c0-.829.67-1.501 1.5-1.501m0-1c-1.378 0-2.5 1.122-2.5 2.501 0 1.378 1.122 2.499 2.5 2.499s2.5-1.121 2.5-2.499c0-1.379-1.122-2.501-2.5-2.501z" + }, + "children": [] + }] + }] + }] +}; +exports.tags = tags; +var thLargeOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M9 2h-5c-1.103 0-2 .896-2 2v5c0 1.104.897 2 2 2h5c1.103 0 2-.896 2-2v-5c0-1.104-.897-2-2-2zm0 7h-5v-5h5v5zM20 2h-5c-1.104 0-2 .896-2 2v5c0 1.104.896 2 2 2h5c1.104 0 2-.896 2-2v-5c0-1.104-.896-2-2-2zm0 7h-5v-5h5v5zM9 13h-5c-1.103 0-2 .896-2 2v5c0 1.104.897 2 2 2h5c1.103 0 2-.896 2-2v-5c0-1.104-.897-2-2-2zm0 7h-5v-5h5v5zM20 13h-5c-1.104 0-2 .896-2 2v5c0 1.104.896 2 2 2h5c1.104 0 2-.896 2-2v-5c0-1.104-.896-2-2-2zm0 7h-5v-5h5v5z" + }, + "children": [] + }] +}; +exports.thLargeOutline = thLargeOutline; +var thLarge = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M8 3h-2c-.825 0-1.575.337-2.119.881-.544.544-.881 1.294-.881 2.119v2c0 .825.337 1.575.881 2.119.544.544 1.294.881 2.119.881h2c.825 0 1.575-.337 2.119-.881.544-.544.881-1.294.881-2.119v-2c0-.825-.337-1.575-.881-2.119-.544-.544-1.294-.881-2.119-.881zM18 3h-2c-.825 0-1.575.337-2.119.881-.544.544-.881 1.294-.881 2.119v2c0 .825.337 1.575.881 2.119.544.544 1.294.881 2.119.881h2c.825 0 1.575-.337 2.119-.881.544-.544.881-1.294.881-2.119v-2c0-.825-.337-1.575-.881-2.119-.544-.544-1.294-.881-2.119-.881zM8 13h-2c-.825 0-1.575.337-2.119.881-.544.544-.881 1.294-.881 2.119v2c0 .825.337 1.575.881 2.119.544.544 1.294.881 2.119.881h2c.825 0 1.575-.337 2.119-.881.544-.544.881-1.294.881-2.119v-2c0-.825-.337-1.575-.881-2.119-.544-.544-1.294-.881-2.119-.881zM18 13h-2c-.825 0-1.575.337-2.119.881-.544.544-.881 1.294-.881 2.119v2c0 .825.337 1.575.881 2.119.544.544 1.294.881 2.119.881h2c.825 0 1.575-.337 2.119-.881.544-.544.881-1.294.881-2.119v-2c0-.825-.337-1.575-.881-2.119-.544-.544-1.294-.881-2.119-.881z" + }, + "children": [] + }] +}; +exports.thLarge = thLarge; +var thListOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M19 18c.55 0 1 .45 1 1s-.45 1-1 1h-7c-.55 0-1-.45-1-1s.45-1 1-1h7m0-2h-7c-1.654 0-3 1.346-3 3s1.346 3 3 3h7c1.654 0 3-1.346 3-3s-1.346-3-3-3zM19 11c.55 0 1 .45 1 1s-.45 1-1 1h-7c-.55 0-1-.45-1-1s.45-1 1-1h7m0-2h-7c-1.654 0-3 1.346-3 3s1.346 3 3 3h7c1.654 0 3-1.346 3-3s-1.346-3-3-3zM19 4c.55 0 1 .45 1 1s-.45 1-1 1h-7c-.55 0-1-.45-1-1s.45-1 1-1h7m0-2h-7c-1.654 0-3 1.346-3 3s1.346 3 3 3h7c1.654 0 3-1.346 3-3s-1.346-3-3-3zM6 16h-2c-1.104 0-2 .896-2 2v2c0 1.104.896 2 2 2h2c1.104 0 2-.896 2-2v-2c0-1.104-.896-2-2-2zm0 4h-2v-2h2v2zM6 9h-2c-1.104 0-2 .896-2 2v2c0 1.104.896 2 2 2h2c1.104 0 2-.896 2-2v-2c0-1.104-.896-2-2-2zm0 4h-2v-2h2v2zM6 2h-2c-1.104 0-2 .896-2 2v2c0 1.104.896 2 2 2h2c1.104 0 2-.896 2-2v-2c0-1.104-.896-2-2-2zm0 4h-2v-2h2v2z" + }, + "children": [] + }] +}; +exports.thListOutline = thListOutline; +var thList = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M19 17h-7c-1.103 0-2 .897-2 2s.897 2 2 2h7c1.103 0 2-.897 2-2s-.897-2-2-2zM19 10h-7c-1.103 0-2 .897-2 2s.897 2 2 2h7c1.103 0 2-.897 2-2s-.897-2-2-2zM19 3h-7c-1.103 0-2 .897-2 2s.897 2 2 2h7c1.103 0 2-.897 2-2s-.897-2-2-2z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "5", + "cy": "19", + "r": "2.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "5", + "cy": "12", + "r": "2.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "5", + "cy": "5", + "r": "2.5" + }, + "children": [] + }] +}; +exports.thList = thList; +var thMenuOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M19 18c.55 0 1 .45 1 1s-.45 1-1 1h-14c-.55 0-1-.45-1-1s.45-1 1-1h14m0-2h-14c-1.654 0-3 1.346-3 3s1.346 3 3 3h14c1.654 0 3-1.346 3-3s-1.346-3-3-3zM19 11c.55 0 1 .45 1 1s-.45 1-1 1h-14c-.55 0-1-.45-1-1s.45-1 1-1h14m0-2h-14c-1.654 0-3 1.346-3 3s1.346 3 3 3h14c1.654 0 3-1.346 3-3s-1.346-3-3-3zM19 4c.55 0 1 .45 1 1s-.45 1-1 1h-14c-.55 0-1-.45-1-1s.45-1 1-1h14m0-2h-14c-1.654 0-3 1.346-3 3s1.346 3 3 3h14c1.654 0 3-1.346 3-3s-1.346-3-3-3z" + }, + "children": [] + }] +}; +exports.thMenuOutline = thMenuOutline; +var thMenu = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M19 17h-14c-1.103 0-2 .897-2 2s.897 2 2 2h14c1.103 0 2-.897 2-2s-.897-2-2-2zM19 10h-14c-1.103 0-2 .897-2 2s.897 2 2 2h14c1.103 0 2-.897 2-2s-.897-2-2-2zM19 3h-14c-1.103 0-2 .897-2 2s.897 2 2 2h14c1.103 0 2-.897 2-2s-.897-2-2-2z" + }, + "children": [] + }] +}; +exports.thMenu = thMenu; +var thSmallOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M6 16h-2c-1.104 0-2 .896-2 2v2c0 1.104.896 2 2 2h2c1.104 0 2-.896 2-2v-2c0-1.104-.896-2-2-2zm0 4h-2v-2h2v2zM6 9h-2c-1.104 0-2 .896-2 2v2c0 1.104.896 2 2 2h2c1.104 0 2-.896 2-2v-2c0-1.104-.896-2-2-2zm0 4h-2v-2h2v2zM6 2h-2c-1.104 0-2 .896-2 2v2c0 1.104.896 2 2 2h2c1.104 0 2-.896 2-2v-2c0-1.104-.896-2-2-2zm0 4h-2v-2h2v2zM13 16h-2c-1.104 0-2 .896-2 2v2c0 1.104.896 2 2 2h2c1.104 0 2-.896 2-2v-2c0-1.104-.896-2-2-2zm0 4h-2v-2h2v2zM13 9h-2c-1.104 0-2 .896-2 2v2c0 1.104.896 2 2 2h2c1.104 0 2-.896 2-2v-2c0-1.104-.896-2-2-2zm0 4h-2v-2h2v2zM13 2h-2c-1.104 0-2 .896-2 2v2c0 1.104.896 2 2 2h2c1.104 0 2-.896 2-2v-2c0-1.104-.896-2-2-2zm0 4h-2v-2h2v2zM20 16h-2c-1.104 0-2 .896-2 2v2c0 1.104.896 2 2 2h2c1.104 0 2-.896 2-2v-2c0-1.104-.896-2-2-2zm0 4h-2v-2h2v2zM20 9h-2c-1.104 0-2 .896-2 2v2c0 1.104.896 2 2 2h2c1.104 0 2-.896 2-2v-2c0-1.104-.896-2-2-2zm0 4h-2v-2h2v2zM20 2h-2c-1.104 0-2 .896-2 2v2c0 1.104.896 2 2 2h2c1.104 0 2-.896 2-2v-2c0-1.104-.896-2-2-2zm0 4h-2v-2h2v2z" + }, + "children": [] + }] +}; +exports.thSmallOutline = thSmallOutline; +var thSmall = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "5", + "cy": "19", + "r": "2.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "5", + "cy": "12", + "r": "2.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "5", + "cy": "5", + "r": "2.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "19", + "r": "2.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "2.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "5", + "r": "2.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "19", + "cy": "19", + "r": "2.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "19", + "cy": "12", + "r": "2.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "19", + "cy": "5", + "r": "2.5" + }, + "children": [] + }] +}; +exports.thSmall = thSmall; +var thermometer = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M13 15.071v-5.571c0-.275-.225-.5-.5-.5s-.5.225-.5.5v5.571c-.86.224-1.5 1-1.5 1.929 0 1.103.896 2 2 2s2-.897 2-2c0-.929-.64-1.705-1.5-1.929zM16 13.459v-7.959c0-1.93-1.57-3.5-3.5-3.5s-3.5 1.57-3.5 3.5v7.959c-.922.902-1.5 2.151-1.5 3.541 0 2.757 2.243 5 5 5s5-2.243 5-5c0-1.39-.578-2.639-1.5-3.541zm-3.5 6.541c-1.654 0-3-1.346-3-3 0-1.105.607-2.062 1.5-2.583v-8.917c0-.827.673-1.5 1.5-1.5s1.5.673 1.5 1.5v8.917c.893.521 1.5 1.478 1.5 2.583 0 1.654-1.346 3-3 3z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M13 15.071v-5.571c0-.275-.225-.5-.5-.5s-.5.225-.5.5v5.571c-.86.224-1.5 1-1.5 1.929 0 1.103.896 2 2 2s2-.897 2-2c0-.929-.64-1.705-1.5-1.929zM16 13.459v-7.959c0-1.93-1.57-3.5-3.5-3.5s-3.5 1.57-3.5 3.5v7.959c-.922.902-1.5 2.151-1.5 3.541 0 2.757 2.243 5 5 5s5-2.243 5-5c0-1.39-.578-2.639-1.5-3.541zm-3.5 6.541c-1.654 0-3-1.346-3-3 0-1.105.607-2.062 1.5-2.583v-8.917c0-.827.673-1.5 1.5-1.5s1.5.673 1.5 1.5v8.917c.893.521 1.5 1.478 1.5 2.583 0 1.654-1.346 3-3 3z" + }, + "children": [] + }] + }] + }] +}; +exports.thermometer = thermometer; +var thumbsDown = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M17 5c-.755 0-1.438.289-1.965.751l-.188-.192c-.96-.737-3.665-1.559-5.847-1.559-1.879 0-2.607.293-3.252.552l-.316.124c-.834.305-1.578 1.229-1.738 2.2l-.664 5.972c-.174 1.039.441 2.127 1.4 2.478.394.144 2.512.405 3.883.56-.215 1.256-.312 2.405-.312 3.616 0 1.379 1.121 2.5 2.5 2.5s2.5-1.121 2.5-2.5c0-1.875.667-2.737 1.616-3.699.548.724 1.408 1.199 2.384 1.199 1.653 0 2.999-1.347 2.999-3v-6c-.001-1.656-1.346-3.002-3-3.002zm-6 14.5c0 .275-.225.5-.5.5s-.5-.225-.5-.5c0-1.805.256-3.241.479-4.293l.297-1.398-1.321.188c-.605-.05-3.934-.447-4.335-.552-.058-.028-.132-.18-.108-.321l.663-5.976c.037-.223.291-.539.443-.594l.377-.146c.544-.219 1.015-.408 2.506-.408 1.914 0 4.118.753 4.633 1.146.156.12.366.564.366.854v4.977c-.001.026-.04.649-.707 1.316-.913.913-2.293 2.293-2.293 5.207zm7-5.5c0 .552-.448 1-1 1s-1-.448-1-1v-6c0-.552.448-1 1-1s1 .448 1 1v6z" + }, + "children": [] + }] +}; +exports.thumbsDown = thumbsDown; +var thumbsOk = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M20.7 12.6c-.1-.3-.2-.6-.4-.9.3-.6.5-1 .3-1.9-.2-.8-.8-1.7-1.6-2.5l-1.7-.9.8-1.8c.4-.8.4-1.8-.1-2.5-.5-.8-1.4-1.3-2.3-1.3-1 0-1.8.6-2.3 1.5 0 0-.8-.2-1.8.1l-1.3 1.2s-1.7.5-2 2-.4 3.4-.8 4.1-2.5 3.3-3.7 4.7c-.9 1.1-.7 2.3.1 3.2l5 5c.8.8 2.7 1.1 4-.3 1.4-1.4.5-3.3.5-3.3.4-.3 1.5-1.2 2.6-1.5s2.8-.9 3.7-2.1c.8-1 1.2-1.8 1-2.8zm-9.3 8.3c-.4.4-1 .4-1.4 0l-4.2-4.2c-.2-.2-.3-.4-.3-.7s.1-.5.3-.7l.7-.7 4.9 4.9c.2.2.3.4.3.7 0 .3-.1.5-.3.7zm6.6-9.9c-.5 0-.7-.5-1.1-.9s-1.3-.5-2-.2-1 1-1 1.7c0 1 .7 1.9 1.7 1.9.7 0 .9-.1 1.3-.3.6-.4.8-.8 1.2-.8s.7.2.7.8-.6 1.3-1.2 1.7-1.1.5-1.7.6c-.6.1-1 .1-1.8.6-.7.4-1.4.9-1.8 1.3l-4.6-4.6c.9-1.1 1.7-2.3 1.8-2.9l.7-3.9c.1-.4.4-.5.6-.5.3 0 .6.2.7.4l.4-1.3c.1-.3.4-.5.6-.5.4 0 .8.3.7.8l-.5 2.4c.6-1.2 1.5-2.7 2.1-3.8.2-.3.4-.6.9-.6s.9.6.7 1.1c-.2.4-2 3.5-2.8 4.8-.1.1 0 .2.2.1.3-.2 1-.7 1.7-.7 1.2-.1 1.8.4 2.1.6.4.3.8.8 1.1 1.3.2.5-.2.9-.7.9zm-.2.7c-.4 0-.7.1-.9.4s-.6.7-1.1.7c-.7 0-1.1-.5-1.1-1.1s.4-1 1.1-1c.5 0 .9.4 1.1.7s.5.3.9.3z" + }, + "children": [] + }] +}; +exports.thumbsOk = thumbsOk; +var thumbsUp = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M19.57 8.676c-.391-.144-2.512-.406-3.883-.56.215-1.255.313-2.405.313-3.616 0-1.379-1.122-2.5-2.5-2.5s-2.5 1.121-2.5 2.5c0 1.875-.666 2.738-1.616 3.699-.548-.722-1.407-1.199-2.384-1.199-1.654 0-3 1.346-3 3v6c0 1.654 1.346 3 3 3 .755 0 1.438-.29 1.965-.752l.188.193c.96.736 3.667 1.559 5.848 1.559 1.879 0 2.608-.293 3.253-.553l.316-.123c.834-.305 1.576-1.227 1.736-2.2l.666-5.974c.173-1.037-.443-2.125-1.402-2.474zm-12.57 8.324c-.551 0-1-.448-1-1v-6c0-.552.449-1 1-1s1 .448 1 1v6c0 .552-.449 1-1 1zm11.327-.15c-.037.224-.292.541-.443.596l-.376.146c-.545.219-1.016.408-2.508.408-1.914 0-4.118-.753-4.632-1.146-.158-.12-.368-.564-.368-.854v-4.98c.003-.047.051-.656.707-1.312.913-.914 2.293-2.294 2.293-5.208 0-.275.225-.5.5-.5s.5.225.5.5c0 1.407-.146 2.73-.479 4.293l-.297 1.396 1.321-.188c.603.05 3.933.447 4.334.55.058.03.132.183.111.323l-.663 5.976z" + }, + "children": [] + }] +}; +exports.thumbsUp = thumbsUp; +var tickOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M11 20c-.801 0-1.555-.312-2.121-.879l-4-4c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.122c1.133-1.133 3.109-1.133 4.242 0l1.188 1.188 3.069-5.523c.526-.952 1.533-1.544 2.624-1.544.507 0 1.012.131 1.456.378.7.39 1.206 1.028 1.427 1.798.221.771.127 1.581-.263 2.282l-5 9c-.454.818-1.279 1.384-2.206 1.514-.139.019-.277.029-.416.029zm-4-8c-.268 0-.518.104-.707.293s-.293.439-.293.707.104.518.293.707l4 4c.223.221.523.33.844.283.312-.043.586-.232.737-.504l5-9c.13-.233.161-.503.088-.76-.073-.257-.243-.47-.478-.6-.473-.264-1.101-.078-1.357.388l-4.357 7.841-3.062-3.062c-.19-.189-.44-.293-.708-.293z" + }, + "children": [] + }] +}; +exports.tickOutline = tickOutline; +var tick = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M16.972 6.251c-.967-.538-2.185-.188-2.72.777l-3.713 6.682-2.125-2.125c-.781-.781-2.047-.781-2.828 0-.781.781-.781 2.047 0 2.828l4 4c.378.379.888.587 1.414.587l.277-.02c.621-.087 1.166-.46 1.471-1.009l5-9c.537-.966.189-2.183-.776-2.72z" + }, + "children": [] + }] +}; +exports.tick = tick; +var ticket = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M21.485 8.071l-5.364-5.364c-1.128-1.128-3.111-1.136-4.248-.018l-9.148 9.002c-.571.562-.887 1.313-.891 2.115-.003.803.307 1.556.873 2.121l5.365 5.365c.567.567 1.325.88 2.133.88.799 0 1.551-.307 2.115-.862l9.147-9.003c.571-.562.888-1.313.891-2.115.003-.802-.307-1.555-.873-2.121zm-1.421 2.811l-9.146 9.003c-.381.373-1.056.37-1.432-.006l-1.275-1.275c.71-.785.693-1.994-.062-2.752-.758-.757-1.968-.773-2.752-.063l-1.275-1.274c-.186-.187-.288-.435-.287-.699s.105-.513.293-.697l9.148-9.002c.189-.186.441-.288.713-.288.273 0 .529.104.719.294l1.275 1.275c-.711.785-.694 1.994.062 2.751.758.757 1.967.773 2.752.063l1.274 1.274c.187.187.288.435.287.699s-.105.512-.294.697zM11.601 17.042l-4.657-4.656 5.649-5.429 4.657 4.656-5.649 5.429zm-3.23-4.643l3.243 3.242 4.206-4.041-3.241-3.242-4.208 4.041z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21.485 8.071l-5.364-5.364c-1.128-1.128-3.111-1.136-4.248-.018l-9.148 9.002c-.571.562-.887 1.313-.891 2.115-.003.803.307 1.556.873 2.121l5.365 5.365c.567.567 1.325.88 2.133.88.799 0 1.551-.307 2.115-.862l9.147-9.003c.571-.562.888-1.313.891-2.115.003-.802-.307-1.555-.873-2.121zm-1.421 2.811l-9.146 9.003c-.381.373-1.056.37-1.432-.006l-1.275-1.275c.71-.785.693-1.994-.062-2.752-.758-.757-1.968-.773-2.752-.063l-1.275-1.274c-.186-.187-.288-.435-.287-.699s.105-.513.293-.697l9.148-9.002c.189-.186.441-.288.713-.288.273 0 .529.104.719.294l1.275 1.275c-.711.785-.694 1.994.062 2.751.758.757 1.967.773 2.752.063l1.274 1.274c.187.187.288.435.287.699s-.105.512-.294.697zM11.601 17.042l-4.657-4.656 5.649-5.429 4.657 4.656-5.649 5.429zm-3.23-4.643l3.243 3.242 4.206-4.041-3.241-3.242-4.208 4.041z" + }, + "children": [] + }] + }] + }] +}; +exports.ticket = ticket; +var time = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M16 13c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1s.45 1 1 1h3c.55 0 1-.45 1-1zM12 6c3.859 0 7 3.141 7 7s-3.141 7-7 7-7-3.141-7-7 3.141-7 7-7m0-2c-4.971 0-9 4.029-9 9s4.029 9 9 9 9-4.029 9-9-4.029-9-9-9zM13 10c0-.55-.45-1-1-1s-1 .45-1 1v3c0 .55.45 1 1 1s1-.45 1-1v-3zM12 8c2.757 0 5 2.243 5 5s-2.243 5-5 5-5-2.243-5-5 2.243-5 5-5m0-1c-3.312 0-6 2.686-6 6 0 3.312 2.688 6 6 6s6-2.688 6-6c0-3.314-2.688-6-6-6z" + }, + "children": [] + }] +}; +exports.time = time; +var timesOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M16 19c-.802 0-1.555-.312-2.122-.879l-1.878-1.879-1.879 1.879c-1.133 1.133-3.109 1.133-4.243 0-.566-.566-.878-1.32-.878-2.121s.312-1.555.879-2.122l1.878-1.878-1.878-1.879c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.122c1.133-1.132 3.109-1.133 4.243.001l1.878 1.879 1.879-1.879c1.133-1.133 3.109-1.133 4.243 0 .566.566.878 1.32.878 2.121s-.312 1.555-.879 2.122l-1.878 1.878 1.878 1.879c.567.566.879 1.32.879 2.121s-.312 1.555-.879 2.122c-.566.566-1.319.878-2.121.878zm-4-5.586l3.293 3.293c.378.378 1.037.377 1.414 0 .189-.189.293-.439.293-.707s-.104-.518-.293-.707l-3.292-3.293 3.292-3.293c.189-.189.293-.44.293-.707s-.104-.518-.293-.707c-.378-.379-1.037-.378-1.414-.001l-3.293 3.294-3.293-3.293c-.378-.378-1.037-.377-1.414 0-.189.189-.293.44-.293.707s.104.518.293.707l3.292 3.293-3.292 3.293c-.189.189-.293.439-.293.707s.104.518.293.707c.378.379 1.037.378 1.414.001l3.293-3.294z" + }, + "children": [] + }] +}; +exports.timesOutline = timesOutline; +var times = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M17.414 6.586c-.78-.781-2.048-.781-2.828 0l-2.586 2.586-2.586-2.586c-.78-.781-2.048-.781-2.828 0-.781.781-.781 2.047 0 2.828l2.585 2.586-2.585 2.586c-.781.781-.781 2.047 0 2.828.39.391.902.586 1.414.586s1.024-.195 1.414-.586l2.586-2.586 2.586 2.586c.39.391.902.586 1.414.586s1.024-.195 1.414-.586c.781-.781.781-2.047 0-2.828l-2.585-2.586 2.585-2.586c.781-.781.781-2.047 0-2.828z" + }, + "children": [] + }] +}; +exports.times = times; +var trash = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18 7h-1v-1c0-1.104-.896-2-2-2h-7c-1.104 0-2 .896-2 2v1h-1c-.552 0-1 .448-1 1s.448 1 1 1v8c0 2.206 1.794 4 4 4h5c2.206 0 4-1.794 4-4v-8c.552 0 1-.448 1-1s-.448-1-1-1zm-10-1h7v1h-7v-1zm8 11c0 1.104-.896 2-2 2h-5c-1.104 0-2-.896-2-2v-8h9v8zM8.5 10.5c-.275 0-.5.225-.5.5v6c0 .275.225.5.5.5s.5-.225.5-.5v-6c0-.275-.225-.5-.5-.5zM10.5 10.5c-.275 0-.5.225-.5.5v6c0 .275.225.5.5.5s.5-.225.5-.5v-6c0-.275-.225-.5-.5-.5zM12.5 10.5c-.275 0-.5.225-.5.5v6c0 .275.225.5.5.5s.5-.225.5-.5v-6c0-.275-.225-.5-.5-.5zM14.5 10.5c-.275 0-.5.225-.5.5v6c0 .275.225.5.5.5s.5-.225.5-.5v-6c0-.275-.225-.5-.5-.5z" + }, + "children": [] + }] +}; +exports.trash = trash; +var tree = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M20.781 17.375l-2.7-3.375h.919c.373 0 .715-.207.887-.538.172-.331.146-.729-.068-1.035l-7-10c-.317-.452-.94-.562-1.393-.246-.091.063-.158.146-.221.231-.025.015-7.025 10.015-7.025 10.015-.214.306-.24.704-.068 1.035.173.331.515.538.888.538h.919l-2.7 3.375c-.24.301-.287.712-.121 1.059.167.345.518.566.902.566h7v3c0 .553.448 1 1 1s1-.447 1-1v-3h7c.384 0 .735-.221.901-.566.167-.347.12-.758-.12-1.059zm-7.781-.375v-5c0-.553-.448-1-1-1s-1 .447-1 1v5h-4.919l2.7-3.375c.24-.301.287-.712.121-1.059-.167-.345-.518-.566-.902-.566h-1.08l5.08-7.256 5.08 7.256h-1.08c-.384 0-.735.221-.901.566-.167.347-.12.758.121 1.059l2.7 3.375h-4.92z" + }, + "children": [] + }] +}; +exports.tree = tree; +var uploadOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M20.986 17c0-.105-.004-.211-.038-.316l-2-6c-.093-.276-.302-.483-.56-.594.881-1.175.799-2.847-.269-3.914l-6.119-6.121-6.121 6.121c-1.067 1.067-1.149 2.739-.27 3.914-.256.109-.467.316-.559.594l-2 6c-.034.105-.038.211-.038.316-.012 0-.012 5-.012 5 0 .553.447 1 1 1h16c.553 0 1-.447 1-1 0 0 0-5-.014-5zm-13.693-9.41l4.707-4.707 4.707 4.707c.391.391.391 1.023 0 1.414-.379.377-1.035.377-1.414 0l-2.293-2.293v5.789c0 .552-.448 1-1 1s-1-.448-1-1v-5.789l-2.293 2.293c-.379.377-1.035.377-1.414 0-.391-.391-.391-1.025 0-1.414zm-.572 4.41h2.279v.5c0 1.654 1.346 3 3 3s3-1.346 3-3v-.5h2.279l1.666 5h-13.892l1.668-5zm-1.721 9v-3h14v3h-14z" + }, + "children": [] + }] +}; +exports.uploadOutline = uploadOutline; +var upload = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M20.987 16c0-.105-.004-.211-.039-.316l-2-6c-.136-.409-.517-.684-.948-.684h-4v2h3.279l1.667 5h-13.892l1.667-5h3.279v-2h-4c-.431 0-.812.275-.948.684l-2 6c-.035.105-.039.211-.039.316-.013 0-.013 5-.013 5 0 .553.447 1 1 1h16c.553 0 1-.447 1-1 0 0 0-5-.013-5zM16 7.904c.259 0 .518-.095.707-.283.39-.39.39-1.024 0-1.414l-4.707-4.707-4.707 4.707c-.39.39-.39 1.024 0 1.414.189.189.448.283.707.283s.518-.094.707-.283l2.293-2.293v6.672c0 .552.448 1 1 1s1-.448 1-1v-6.672l2.293 2.293c.189.189.448.283.707.283z" + }, + "children": [] + }] +}; +exports.upload = upload; +var userAddOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M21 14h-6c-.553 0-1-.448-1-1s.447-1 1-1h6c.553 0 1 .448 1 1s-.447 1-1 1zM18 17c-.553 0-1-.448-1-1v-6c0-.552.447-1 1-1s1 .448 1 1v6c0 .552-.447 1-1 1zM9 6c1.654 0 3 1.346 3 3s-1.346 3-3 3-3-1.346-3-3 1.346-3 3-3m0-2c-2.764 0-5 2.238-5 5s2.236 5 5 5 5-2.238 5-5-2.236-5-5-5zM9 17c2.021 0 3.301.771 3.783 1.445-.683.26-1.969.555-3.783.555-1.984 0-3.206-.305-3.818-.542.459-.715 1.777-1.458 3.818-1.458m0-2c-3.75 0-6 2-6 4 0 1 2.25 2 6 2 3.518 0 6-1 6-2 0-2-2.354-4-6-4z" + }, + "children": [] + }] +}; +exports.userAddOutline = userAddOutline; +var userAdd = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M9 14c1.381 0 2.631-.56 3.536-1.465.904-.904 1.464-2.154 1.464-3.535s-.56-2.631-1.464-3.535c-.905-.905-2.155-1.465-3.536-1.465s-2.631.56-3.536 1.465c-.904.904-1.464 2.154-1.464 3.535s.56 2.631 1.464 3.535c.905.905 2.155 1.465 3.536 1.465zM9 21c3.518 0 6-1 6-2 0-2-2.354-4-6-4-3.75 0-6 2-6 4 0 1 2.25 2 6 2zM21 12h-2v-2c0-.553-.447-1-1-1s-1 .447-1 1v2h-2c-.553 0-1 .447-1 1s.447 1 1 1h2v2c0 .553.447 1 1 1s1-.447 1-1v-2h2c.553 0 1-.447 1-1s-.447-1-1-1z" + }, + "children": [] + }] +}; +exports.userAdd = userAdd; +var userDeleteOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M21 14h-6c-.553 0-1-.448-1-1s.447-1 1-1h6c.553 0 1 .448 1 1s-.447 1-1 1zM9 6c1.654 0 3 1.346 3 3s-1.346 3-3 3-3-1.346-3-3 1.346-3 3-3m0-2c-2.764 0-5 2.238-5 5s2.236 5 5 5 5-2.238 5-5-2.236-5-5-5zM9 17c2.021 0 3.301.771 3.783 1.445-.683.26-1.969.555-3.783.555-1.984 0-3.206-.305-3.818-.542.459-.715 1.777-1.458 3.818-1.458m0-2c-3.75 0-6 2-6 4 0 1 2.25 2 6 2 3.518 0 6-1 6-2 0-2-2.354-4-6-4z" + }, + "children": [] + }] +}; +exports.userDeleteOutline = userDeleteOutline; +var userDelete = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M21 14h-6c-.553 0-1-.447-1-1s.447-1 1-1h6c.553 0 1 .447 1 1s-.447 1-1 1zM14 9c0 1.381-.56 2.631-1.464 3.535-.905.905-2.155 1.465-3.536 1.465s-2.631-.56-3.536-1.465c-.904-.904-1.464-2.154-1.464-3.535s.56-2.631 1.464-3.535c.905-.905 2.155-1.465 3.536-1.465s2.631.56 3.536 1.465c.904.904 1.464 2.154 1.464 3.535zM9 15c-3.75 0-6 2-6 4 0 1 2.25 2 6 2 3.518 0 6-1 6-2 0-2-2.354-4-6-4z" + }, + "children": [] + }] +}; +exports.userDelete = userDelete; +var userOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 6c1.654 0 3 1.346 3 3s-1.346 3-3 3-3-1.346-3-3 1.346-3 3-3m0-2c-2.764 0-5 2.238-5 5s2.236 5 5 5 5-2.238 5-5-2.236-5-5-5zM12 17c2.021 0 3.301.771 3.783 1.445-.683.26-1.969.555-3.783.555-1.984 0-3.206-.305-3.818-.542.459-.715 1.777-1.458 3.818-1.458m0-2c-3.75 0-6 2-6 4 0 1 2.25 2 6 2 3.518 0 6-1 6-2 0-2-2.354-4-6-4z" + }, + "children": [] + }] +}; +exports.userOutline = userOutline; +var user = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M17 9c0-1.381-.56-2.631-1.464-3.535-.905-.905-2.155-1.465-3.536-1.465s-2.631.56-3.536 1.465c-.904.904-1.464 2.154-1.464 3.535s.56 2.631 1.464 3.535c.905.905 2.155 1.465 3.536 1.465s2.631-.56 3.536-1.465c.904-.904 1.464-2.154 1.464-3.535zM6 19c0 1 2.25 2 6 2 3.518 0 6-1 6-2 0-2-2.354-4-6-4-3.75 0-6 2-6 4z" + }, + "children": [] + }] +}; +exports.user = user; +var vendorAndroid = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M7.1 8h9.799999999999999c.1 0 .1 0 .1-.1-.1-.5-.2-.9-.4-1.3-.4-.9-1.1-1.5-1.9-2l-.4-.2s0-.1.1-.1c.3-.4.6-.8.9-1.3.1-.1.1-.2 0-.3-.1-.1-.2 0-.3.1l-.9 1.3s-.1.1-.1 0c-.8-.3-1.6-.4-2.4-.4-.6 0-1.1.2-1.6.4h-.1l-.9-1.2s0-.1-.1-.1c-.1-.1-.2-.1-.2 0-.1 0-.1.1 0 .2 0 0 0 .1.1.1.2.4.5.8.8 1.2l.1.1h-.1c-.6.3-1.1.7-1.5 1.2-.6.6-1 1.4-1.1 2.3 0 .1 0 .1.1.1zm7.1-2.8c.4 0 .8.3.8.8 0 .4-.3.8-.7.8-.4 0-.8-.3-.8-.8-.1-.4.3-.8.7-.8zm-4.3 0c.4 0 .8.3.8.8 0 .4-.3.8-.7.8-.5 0-.9-.4-.9-.8s.4-.8.8-.8zM5 9c-.5 0-1 .5-1 1v5c0 .5.5 1 1 1s1-.5 1-1v-5c0-.5-.5-1-1-1zM19 9c-.5 0-1 .5-1 1v5c0 .5.5 1 1 1s1-.5 1-1v-5c0-.5-.5-1-1-1zM7 17c0 .5.5 1 1 1h1v3c0 .5.5 1 1 1s1-.5 1-1v-3h2v3c0 .5.5 1 1 1s1-.5 1-1v-3h1c.5 0 1-.5 1-1v-8h-10v8z" + }, + "children": [] + }] +}; +exports.vendorAndroid = vendorAndroid; +var vendorApple = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M11.9 6.6s-.1-1.6.9-3l2.8-1.6s.1 1.6-.9 3l-2.8 1.6zM17.3 12.2c0-1.5.8-2.8 2-3.6l-.9-.9c-.5-.3-1.1-.7-2.4-.7-1.4 0-2.4.9-3.7.9-1.3 0-2.2-.8-3.1-.9-.7 0-1.4 0-2.1.3-.5.2-1.2.7-1.6 1.2-.6.6-1.2 1.9-1.3 3.1-.1 1.2-.1 2.1.2 3.2.2.9.6 1.8 1 2.6.3.6.6 1.2 1 1.8.3.4.7.8 1.1 1.1.3.2.6.4 1 .6.2 0 .5.1.8.1.6-.1 1.6-.9 2.4-1.1.4-.1.8-.1 1.3 0 .7.1 1.4.9 2.2 1 .6.1 1.2 0 1.7-.3.4-.2.7-.5 1-.9.4-.4.7-.9 1-1.3.4-.7.9-1.5 1.1-2.3-1.6-.6-2.7-2.1-2.7-3.9z" + }, + "children": [] + }] +}; +exports.vendorApple = vendorApple; +var vendorMicrosoft = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M10 12.5c0-.3-.2-.5-.5-.5h-6c-.3 0-.5.2-.5.5v5c0 .3.2.5.5.6l6 .7c.3 0 .5-.2.5-.4v-5.9zM11.5 12c-.3 0-.5.2-.5.5v5.9c0 .3.2.5.5.6l9 1c.3 0 .5-.2.5-.4v-7c0-.3-.2-.5-.5-.5l-9-.1zM10 4.7c0-.3-.2-.5-.5-.4l-6 .7c-.3 0-.5.2-.5.5v5c0 .3.2.5.5.5h6c.3 0 .5-.2.5-.5v-5.8zM11.5 4.1c-.3 0-.5.3-.5.6v5.9c0 .3.2.5.5.5h9c.3 0 .5-.2.5-.5v-7c0-.3-.2-.5-.5-.4l-9 .9z" + }, + "children": [] + }] +}; +exports.vendorMicrosoft = vendorMicrosoft; +var videoOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "7", + "cy": "11", + "r": "1" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21.585 7.188c-.262-.188-.599-.241-.901-.137l-1.707.568c-.188-1.477-1.451-2.62-2.977-2.62h-11c-1.654 0-3 1.347-3 3v6c0 1.653 1.346 3 3 3h3v1.111l.008.09c.066.738.381 1.423.887 1.928.562.562 1.311.872 2.104.872s1.542-.31 2.104-.87c.574-.577.898-1.346.896-2.113v-1.017h2c1.524 0 2.789-1.145 2.978-2.62l1.707.568c.303.104.64.051.9-.138.262-.188.415-.49.415-.812v-6c.001-.318-.153-.621-.414-.81zm-9.585 10.835c.001.248-.119.5-.309.689-.191.189-.441.286-.692.286-.25 0-.501-.097-.69-.286-.19-.189-.285-.441-.309-.691v-2.021h2v2.023zm5-4.023c0 .552-.448 1-1 1h-11c-.552 0-1-.448-1-1v-6c0-.552.448-1 1-1h11c.552 0 1 .448 1 1v6zm3-1.389s-1.895-.605-2-.605v-2.012c.105 0 2-.605 2-.605v3.222z" + }, + "children": [] + }] +}; +exports.videoOutline = videoOutline; +var video = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M22.525 7.149c-.16-.099-.342-.149-.525-.149-.153 0-.306.035-.447.105l-2.553 1.277v-.382c0-1.654-1.346-3-3-3h-11c-1.654 0-3 1.346-3 3v8c0 1.654 1.346 3 3 3h11c1.654 0 3-1.346 3-3v-.382l2.553 1.276c.141.071.294.106.447.106.183 0 .365-.05.525-.149.295-.183.475-.504.475-.851v-8c0-.347-.18-.668-.475-.851zm-15.525 6.351c-.829 0-1.5-.671-1.5-1.5s.671-1.5 1.5-1.5 1.5.671 1.5 1.5-.671 1.5-1.5 1.5z" + }, + "children": [] + }] +}; +exports.video = video; +var volumeDown = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M15.138 5.824c-.449 0-.905.152-1.356.453l-2.672 1.781c-.753.503-2.206.942-3.11.942-1.654 0-3 1.346-3 3v2c0 1.654 1.346 3 3 3 .904 0 2.357.439 3.109.941l2.672 1.781c.451.301.907.453 1.356.453.898.001 1.863-.68 1.863-2.175v-10c0-1.495-.965-2.176-1.862-2.176zm-7.138 9.176c-.552 0-1-.448-1-1v-2c0-.552.448-1 1-1 1.211 0 2.907-.495 4-1.146v6.293c-1.093-.652-2.789-1.147-4-1.147zm7 3l-.006.12-.104-.062-1.89-1.26v-7.596l1.891-1.261.104-.062.005.121v10zM18.292 10.294c-.39.391-.39 1.023.002 1.414.345.345.535.803.535 1.291 0 .489-.19.948-.536 1.294-.391.39-.391 1.023 0 1.414.195.195.451.293.707.293s.512-.098.707-.293c.724-.723 1.122-1.685 1.122-2.708s-.398-1.984-1.123-2.707c-.389-.389-1.023-.391-1.414.002z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15.138 5.824c-.449 0-.905.152-1.356.453l-2.672 1.781c-.753.503-2.206.942-3.11.942-1.654 0-3 1.346-3 3v2c0 1.654 1.346 3 3 3 .904 0 2.357.439 3.109.941l2.672 1.781c.451.301.907.453 1.356.453.898.001 1.863-.68 1.863-2.175v-10c0-1.495-.965-2.176-1.862-2.176zm-7.138 9.176c-.552 0-1-.448-1-1v-2c0-.552.448-1 1-1 1.211 0 2.907-.495 4-1.146v6.293c-1.093-.652-2.789-1.147-4-1.147zm7 3l-.006.12-.104-.062-1.89-1.26v-7.596l1.891-1.261.104-.062.005.121v10zM18.292 10.294c-.39.391-.39 1.023.002 1.414.345.345.535.803.535 1.291 0 .489-.19.948-.536 1.294-.391.39-.391 1.023 0 1.414.195.195.451.293.707.293s.512-.098.707-.293c.724-.723 1.122-1.685 1.122-2.708s-.398-1.984-1.123-2.707c-.389-.389-1.023-.391-1.414.002z" + }, + "children": [] + }] + }] + }] +}; +exports.volumeDown = volumeDown; +var volumeMute = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M19.707 5.293c-.391-.391-1.023-.391-1.414 0l-1.551 1.551c-.345-.688-.987-1.02-1.604-1.02-.449 0-.905.152-1.356.453l-2.672 1.781c-.753.503-2.206.942-3.11.942-1.654 0-3 1.346-3 3v2c0 1.237.754 2.302 1.826 2.76l-1.533 1.533c-.391.391-.391 1.023 0 1.414.195.195.451.293.707.293s.512-.098.707-.293l2.527-2.527c.697.174 1.416.455 1.875.762l2.672 1.781c.451.301.907.453 1.356.453.898 0 1.863-.681 1.863-2.176v-8.586l2.707-2.707c.391-.391.391-1.023 0-1.414zm-4.816 2.648l.104-.062.005.121v1.293l-2 2v-2.091l1.891-1.261zm-7.891 4.059c0-.552.448-1 1-1 1.211 0 2.907-.495 4-1.146v2.439l-2.83 2.83c-.413-.077-.814-.123-1.17-.123-.552 0-1-.448-1-1v-2zm3.301 3.406l1.699-1.699v2.439c-.481-.287-1.075-.542-1.699-.74zm4.693 2.714l-.104-.062-1.89-1.26v-4.091l2-2v7.293l-.006.12z" + }, + "children": [] + }] +}; +exports.volumeMute = volumeMute; +var volumeUp = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M16.706 10.292c-.389-.389-1.023-.391-1.414.002-.39.391-.39 1.023.002 1.414.345.345.535.803.535 1.291 0 .489-.19.948-.536 1.294-.391.39-.391 1.023 0 1.414.195.195.451.293.707.293s.512-.098.707-.293c.724-.723 1.122-1.685 1.122-2.708s-.398-1.984-1.123-2.707zM18.706 8.292c-.391-.389-1.023-.39-1.414.002-.39.391-.39 1.024.002 1.414.879.877 1.363 2.044 1.364 3.287.001 1.246-.484 2.417-1.365 3.298-.391.391-.391 1.023 0 1.414.195.195.451.293.707.293s.512-.098.707-.293c1.259-1.259 1.952-2.933 1.951-4.713-.001-1.777-.694-3.447-1.952-4.702zM20.706 6.292c-.391-.389-1.023-.39-1.414.002-.39.391-.39 1.024.002 1.414 1.412 1.409 2.191 3.285 2.192 5.284.002 2.002-.777 3.885-2.193 5.301-.391.391-.391 1.023 0 1.414.195.195.451.293.707.293s.512-.098.707-.293c1.794-1.794 2.781-4.18 2.779-6.717-.001-2.533-.989-4.912-2.78-6.698zM12.138 5.824c-.449 0-.905.152-1.356.453l-2.673 1.782c-.752.502-2.205.941-3.109.941-1.654 0-3 1.346-3 3v2c0 1.654 1.346 3 3 3 .904 0 2.357.439 3.109.941l2.672 1.781c.451.301.907.453 1.356.453.898.001 1.863-.68 1.863-2.175v-10c0-1.495-.965-2.176-1.862-2.176zm-7.138 9.176c-.552 0-1-.448-1-1v-2c0-.552.448-1 1-1 1.211 0 2.907-.495 4-1.146v6.293c-1.093-.652-2.789-1.147-4-1.147zm7 3l-.006.12-.104-.062-1.89-1.26v-7.596l1.891-1.261.104-.062.005.121v10z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M16.706 10.292c-.389-.389-1.023-.391-1.414.002-.39.391-.39 1.023.002 1.414.345.345.535.803.535 1.291 0 .489-.19.948-.536 1.294-.391.39-.391 1.023 0 1.414.195.195.451.293.707.293s.512-.098.707-.293c.724-.723 1.122-1.685 1.122-2.708s-.398-1.984-1.123-2.707zM18.706 8.292c-.391-.389-1.023-.39-1.414.002-.39.391-.39 1.024.002 1.414.879.877 1.363 2.044 1.364 3.287.001 1.246-.484 2.417-1.365 3.298-.391.391-.391 1.023 0 1.414.195.195.451.293.707.293s.512-.098.707-.293c1.259-1.259 1.952-2.933 1.951-4.713-.001-1.777-.694-3.447-1.952-4.702zM20.706 6.292c-.391-.389-1.023-.39-1.414.002-.39.391-.39 1.024.002 1.414 1.412 1.409 2.191 3.285 2.192 5.284.002 2.002-.777 3.885-2.193 5.301-.391.391-.391 1.023 0 1.414.195.195.451.293.707.293s.512-.098.707-.293c1.794-1.794 2.781-4.18 2.779-6.717-.001-2.533-.989-4.912-2.78-6.698zM12.138 5.824c-.449 0-.905.152-1.356.453l-2.673 1.782c-.752.502-2.205.941-3.109.941-1.654 0-3 1.346-3 3v2c0 1.654 1.346 3 3 3 .904 0 2.357.439 3.109.941l2.672 1.781c.451.301.907.453 1.356.453.898.001 1.863-.68 1.863-2.175v-10c0-1.495-.965-2.176-1.862-2.176zm-7.138 9.176c-.552 0-1-.448-1-1v-2c0-.552.448-1 1-1 1.211 0 2.907-.495 4-1.146v6.293c-1.093-.652-2.789-1.147-4-1.147zm7 3l-.006.12-.104-.062-1.89-1.26v-7.596l1.891-1.261.104-.062.005.121v10z" + }, + "children": [] + }] + }] + }] +}; +exports.volumeUp = volumeUp; +var volume = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M17.138 5.824c-.449 0-.905.152-1.356.453l-2.672 1.781c-.753.503-2.206.942-3.11.942-1.654 0-3 1.346-3 3v2c0 1.654 1.346 3 3 3 .904 0 2.357.439 3.109.941l2.672 1.781c.451.301.907.453 1.356.453.898.001 1.863-.68 1.863-2.175v-10c0-1.495-.965-2.176-1.862-2.176zm-3.138 10.322c-1.093-.651-2.789-1.146-4-1.146-.552 0-1-.448-1-1v-2c0-.552.448-1 1-1 1.211 0 2.907-.495 4-1.146v6.292zm3 1.854l-.006.12-.104-.062-1.89-1.26v-7.596l1.891-1.261.104-.062.005.121v10z" + }, + "children": [] + }] +}; +exports.volume = volume; +var warningOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 5.511c.561 0 1.119.354 1.544 1.062l5.912 9.854c.851 1.415.194 2.573-1.456 2.573h-12c-1.65 0-2.307-1.159-1.456-2.573l5.912-9.854c.425-.708.983-1.062 1.544-1.062m0-2c-1.296 0-2.482.74-3.259 2.031l-5.912 9.856c-.786 1.309-.872 2.705-.235 3.83s1.879 1.772 3.406 1.772h12c1.527 0 2.77-.646 3.406-1.771s.551-2.521-.235-3.83l-5.912-9.854c-.777-1.294-1.963-2.034-3.259-2.034z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "16", + "r": "1.3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13.5 10c0-.83-.671-1.5-1.5-1.5s-1.5.67-1.5 1.5c0 .199.041.389.111.562.554 1.376 1.389 3.438 1.389 3.438l1.391-3.438c.068-.173.109-.363.109-.562z" + }, + "children": [] + }] +}; +exports.warningOutline = warningOutline; +var warning = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M21.171 15.398l-5.912-9.854c-.776-1.293-1.963-2.033-3.259-2.033s-2.483.74-3.259 2.031l-5.912 9.856c-.786 1.309-.872 2.705-.235 3.83.636 1.126 1.878 1.772 3.406 1.772h12c1.528 0 2.77-.646 3.406-1.771.637-1.125.551-2.521-.235-3.831zm-9.171 2.151c-.854 0-1.55-.695-1.55-1.549 0-.855.695-1.551 1.55-1.551s1.55.696 1.55 1.551c0 .854-.696 1.549-1.55 1.549zm1.633-7.424c-.011.031-1.401 3.468-1.401 3.468-.038.094-.13.156-.231.156s-.193-.062-.231-.156l-1.391-3.438c-.09-.233-.129-.443-.129-.655 0-.965.785-1.75 1.75-1.75s1.75.785 1.75 1.75c0 .212-.039.422-.117.625z" + }, + "children": [] + }] +}; +exports.warning = warning; +var watch = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 13h2c.55 0 1-.45 1-1s-.45-1-1-1h-1v-1c0-.55-.45-1-1-1s-1 .45-1 1v2c0 .55.45 1 1 1zM17 7.105v-2.105c0-1.654-1.346-3-3-3h-4c-1.654 0-3 1.346-3 3v2.105c-1.236 1.263-2 2.989-2 4.895s.764 3.632 2 4.895v2.105c0 1.654 1.346 3 3 3h4c1.654 0 3-1.346 3-3v-2.105c1.236-1.262 2-2.988 2-4.895s-.764-3.632-2-4.895zm-8-2.105c0-.551.449-1 1-1h4c.551 0 1 .449 1 1v1.809c-.883-.512-1.906-.809-3-.809s-2.117.297-3 .809v-1.809zm6 14c0 .551-.449 1-1 1h-4c-.551 0-1-.449-1-1v-1.811c.883.513 1.906.811 3 .811s2.117-.298 3-.811v1.811zm-3-2c-2.757 0-5-2.243-5-5s2.243-5 5-5 5 2.243 5 5-2.243 5-5 5z" + }, + "children": [] + }] +}; +exports.watch = watch; +var wavesOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M20.221 10.761c.498-.552.779-1.252.779-2 0-.801-.312-1.555-.879-2.121-.566-.567-1.32-.879-2.121-.879s-1.555.312-2.121.879c-.233.232-.546.361-.879.361-.333 0-.646-.129-.879-.362-1.366-1.366-3.185-2.118-5.121-2.118s-3.755.752-5.121 2.118c-.567.567-.879 1.321-.879 2.122 0 .748.281 1.448.779 2-.498.551-.779 1.252-.779 2s.281 1.448.779 2c-.498.551-.779 1.252-.779 2 0 .801.312 1.555.879 2.121.566.566 1.32.879 2.121.879s1.555-.312 2.121-.879c.234-.233.545-.362.878-.362.333 0 .646.129.88.363 1.367 1.365 3.185 2.117 5.121 2.117 1.937 0 3.755-.752 5.121-2.118.567-.567.879-1.32.879-2.121 0-.748-.281-1.448-.779-2 .498-.552.779-1.252.779-2s-.281-1.449-.779-2zm-1.514 6.707c-1.021 1.021-2.364 1.532-3.707 1.532-1.342 0-2.685-.511-3.707-1.532-.633-.632-1.463-.948-2.293-.948-.831 0-1.661.316-2.292.948-.196.195-.452.293-.708.293s-.512-.098-.707-.293c-.391-.391-.391-1.023 0-1.414 1.021-1.021 2.364-1.532 3.706-1.532 1.343 0 2.686.511 3.708 1.532.632.632 1.463.947 2.293.947.831 0 1.661-.315 2.293-.947.195-.195.451-.293.707-.293s.512.098.707.293c.391.39.391 1.023 0 1.414zm-13.414-9.414c1.021-1.022 2.365-1.533 3.707-1.533 1.343 0 2.685.511 3.707 1.532.632.633 1.463.948 2.293.948.831 0 1.661-.315 2.293-.947.195-.196.451-.293.707-.293s.512.098.707.293c.391.391.391 1.023 0 1.414-1.021 1.021-2.364 1.532-3.707 1.532-1.342 0-2.685-.511-3.707-1.532-.633-.632-1.463-.948-2.293-.948-.831 0-1.661.316-2.292.948-.196.195-.452.293-.708.293s-.512-.098-.707-.293c-.391-.391-.391-1.024 0-1.414zm13.414 5.414c-1.021 1.021-2.364 1.532-3.707 1.532-1.342 0-2.685-.511-3.707-1.532-.633-.632-1.463-.948-2.293-.948-.831 0-1.661.316-2.292.948-.196.195-.452.293-.708.293s-.512-.098-.707-.293c-.391-.391-.391-1.023 0-1.414 1.021-1.021 2.364-1.532 3.706-1.532 1.343 0 2.686.511 3.708 1.532.632.632 1.463.947 2.293.947.831 0 1.661-.315 2.293-.947.195-.195.451-.293.707-.293s.512.098.707.293c.391.39.391 1.023 0 1.414z" + }, + "children": [] + }] +}; +exports.wavesOutline = wavesOutline; +var waves = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M15 19c-1.342 0-2.685-.511-3.707-1.532-1.266-1.265-3.323-1.264-4.586 0-.391.391-1.023.391-1.414 0s-.391-1.023 0-1.414c2.043-2.043 5.369-2.043 7.414 0 1.265 1.264 3.322 1.263 4.586 0 .391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414c-1.021 1.021-2.364 1.532-3.707 1.532zM15 15c-1.342 0-2.685-.511-3.707-1.532-1.266-1.265-3.323-1.264-4.586 0-.391.391-1.023.391-1.414 0s-.391-1.023 0-1.414c2.043-2.043 5.369-2.043 7.414 0 1.265 1.264 3.322 1.263 4.586 0 .391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414c-1.021 1.021-2.364 1.532-3.707 1.532zM15 11c-1.342 0-2.685-.511-3.707-1.532-1.266-1.265-3.323-1.264-4.586 0-.391.391-1.023.391-1.414 0s-.391-1.023 0-1.414c2.043-2.042 5.369-2.044 7.414 0 1.265 1.264 3.322 1.263 4.586 0 .391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414c-1.021 1.021-2.364 1.532-3.707 1.532z" + }, + "children": [] + }] +}; +exports.waves = waves; +var weatherCloudy = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M17 19h-11c-2.206 0-4-1.794-4-4 0-1.861 1.277-3.429 3.001-3.874l-.001-.126c0-3.309 2.691-6 6-6 2.587 0 4.824 1.638 5.65 4.015 2.942-.246 5.35 2.113 5.35 4.985 0 2.757-2.243 5-5 5zm-11.095-6.006c-1.008.006-1.905.903-1.905 2.006s.897 2 2 2h11c1.654 0 3-1.346 3-3s-1.346-3-3-3c-.243 0-.5.041-.81.13l-1.075.307-.186-1.103c-.325-1.932-1.977-3.334-3.929-3.334-2.206 0-4 1.794-4 4 0 .272.027.545.082.811l.244 1.199-1.421-.016z" + }, + "children": [] + }] +}; +exports.weatherCloudy = weatherCloudy; +var weatherDownpour = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M15 22c-.552 0-1-.447-1-1v-6c0-.553.448-1 1-1s1 .447 1 1v6c0 .553-.448 1-1 1zM9 22c-.552 0-1-.447-1-1v-6c0-.553.448-1 1-1s1 .447 1 1v6c0 .553-.448 1-1 1zM12 24c-.552 0-1-.447-1-1v-6c0-.553.448-1 1-1s1 .447 1 1v6c0 .553-.448 1-1 1zM6 18c-2.206 0-4-1.794-4-4 0-1.861 1.277-3.429 3.001-3.874l-.001-.126c0-3.309 2.691-6 6-6 2.587 0 4.824 1.639 5.65 4.015 2.936-.244 5.35 2.113 5.35 4.985 0 2.241-1.507 4.223-3.666 4.819-.535.146-1.083-.166-1.23-.697-.147-.532.165-1.083.698-1.23 1.294-.358 2.198-1.547 2.198-2.892 0-1.654-1.346-3-3-3-.242 0-.499.041-.811.13l-1.074.306-.185-1.102c-.326-1.932-1.978-3.334-3.93-3.334-2.206 0-4 1.794-4 4 0 .272.027.545.082.808l.248 1.202-1.422-.016c-1.011.006-1.908.903-1.908 2.006s.897 2 2 2c.552 0 1 .447 1 1s-.448 1-1 1z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15 22c-.552 0-1-.447-1-1v-6c0-.553.448-1 1-1s1 .447 1 1v6c0 .553-.448 1-1 1zM9 22c-.552 0-1-.447-1-1v-6c0-.553.448-1 1-1s1 .447 1 1v6c0 .553-.448 1-1 1zM12 24c-.552 0-1-.447-1-1v-6c0-.553.448-1 1-1s1 .447 1 1v6c0 .553-.448 1-1 1zM6 18c-2.206 0-4-1.794-4-4 0-1.861 1.277-3.429 3.001-3.874l-.001-.126c0-3.309 2.691-6 6-6 2.587 0 4.824 1.639 5.65 4.015 2.936-.244 5.35 2.113 5.35 4.985 0 2.241-1.507 4.223-3.666 4.819-.535.146-1.083-.166-1.23-.697-.147-.532.165-1.083.698-1.23 1.294-.358 2.198-1.547 2.198-2.892 0-1.654-1.346-3-3-3-.242 0-.499.041-.811.13l-1.074.306-.185-1.102c-.326-1.932-1.978-3.334-3.93-3.334-2.206 0-4 1.794-4 4 0 .272.027.545.082.808l.248 1.202-1.422-.016c-1.011.006-1.908.903-1.908 2.006s.897 2 2 2c.552 0 1 .447 1 1s-.448 1-1 1z" + }, + "children": [] + }] + }] + }] +}; +exports.weatherDownpour = weatherDownpour; +var weatherNight = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M10.5 20c-.861 0-1.71-.151-2.523-.451l-1.317-.485.89-1.087c1.275-1.56 1.95-3.454 1.95-5.477s-.675-3.917-1.951-5.477l-.89-1.087 1.317-.485c.814-.3 1.663-.451 2.524-.451 4.136 0 7.5 3.364 7.5 7.5s-3.364 7.5-7.5 7.5zm-.509-2.024c.169.016.339.024.509.024 3.032 0 5.5-2.468 5.5-5.5s-2.468-5.5-5.5-5.5c-.17 0-.34.008-.509.024.991 1.645 1.509 3.511 1.509 5.476s-.518 3.831-1.509 5.476z" + }, + "children": [] + }] +}; +exports.weatherNight = weatherNight; +var weatherPartlySunny = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M14.5 3l-1 3-1-3c-.184-.553.114-1.149.666-1.333.553-.185 1.15.114 1.334.666.075.226.07.458 0 .667zM19.864 6.05l-2.829 1.415 1.415-2.829c.261-.521.894-.731 1.414-.472.521.261.731.894.472 1.415-.107.212-.274.372-.472.471zM21.5 12l-3-1 3-1c.553-.185 1.149.114 1.334.667.184.552-.115 1.148-.668 1.333-.225.075-.457.069-.666 0zM8.55 4.636l1.415 2.829-2.829-1.415c-.521-.261-.732-.894-.472-1.414.261-.521.895-.731 1.414-.472.213.107.373.274.472.472zM17.776 12.342c.139-.424.224-.871.224-1.342 0-2.481-2.019-4.5-4.5-4.5-1.34 0-2.537.594-3.357 1.528l-.143-.028c-1.776 0-3.369.78-4.469 2.011-.24-.08-.472-.086-.697-.011-.553.185-.852.781-.668 1.333.057.167.158.299.277.411-.283.697-.443 1.458-.443 2.256l.002.126c-1.725.445-3.002 2.013-3.002 3.874 0 2.206 1.795 4 4 4h11c2.757 0 5-2.243 5-5 0-2.129-1.344-3.939-3.224-4.658zm-4.276-3.842c1.379 0 2.5 1.121 2.5 2.5 0 .366-.096.706-.238 1.019-.354.021-.72.074-1.118.188-.521-1.353-1.604-2.415-2.967-2.905.456-.49 1.102-.802 1.823-.802zm2.5 11.5h-11c-1.104 0-2-.897-2-2s.896-2 1.908-2.006l1.422.016-.248-1.202c-.055-.263-.082-.536-.082-.808 0-2.206 1.795-4 4-4l.069-.014c1.904.055 3.495 1.406 3.847 3.27l.038.186c.123.436.517.706.946.712l.289-.023c.312-.09.569-.131.811-.131 1.654 0 3 1.346 3 3s-1.346 3-3 3z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14.5 3l-1 3-1-3c-.184-.553.114-1.149.666-1.333.553-.185 1.15.114 1.334.666.075.226.07.458 0 .667zM19.864 6.05l-2.829 1.415 1.415-2.829c.261-.521.894-.731 1.414-.472.521.261.731.894.472 1.415-.107.212-.274.372-.472.471zM21.5 12l-3-1 3-1c.553-.185 1.149.114 1.334.667.184.552-.115 1.148-.668 1.333-.225.075-.457.069-.666 0zM8.55 4.636l1.415 2.829-2.829-1.415c-.521-.261-.732-.894-.472-1.414.261-.521.895-.731 1.414-.472.213.107.373.274.472.472zM17.776 12.342c.139-.424.224-.871.224-1.342 0-2.481-2.019-4.5-4.5-4.5-1.34 0-2.537.594-3.357 1.528l-.143-.028c-1.776 0-3.369.78-4.469 2.011-.24-.08-.472-.086-.697-.011-.553.185-.852.781-.668 1.333.057.167.158.299.277.411-.283.697-.443 1.458-.443 2.256l.002.126c-1.725.445-3.002 2.013-3.002 3.874 0 2.206 1.795 4 4 4h11c2.757 0 5-2.243 5-5 0-2.129-1.344-3.939-3.224-4.658zm-4.276-3.842c1.379 0 2.5 1.121 2.5 2.5 0 .366-.096.706-.238 1.019-.354.021-.72.074-1.118.188-.521-1.353-1.604-2.415-2.967-2.905.456-.49 1.102-.802 1.823-.802zm2.5 11.5h-11c-1.104 0-2-.897-2-2s.896-2 1.908-2.006l1.422.016-.248-1.202c-.055-.263-.082-.536-.082-.808 0-2.206 1.795-4 4-4l.069-.014c1.904.055 3.495 1.406 3.847 3.27l.038.186c.123.436.517.706.946.712l.289-.023c.312-.09.569-.131.811-.131 1.654 0 3 1.346 3 3s-1.346 3-3 3z" + }, + "children": [] + }] + }] + }] +}; +exports.weatherPartlySunny = weatherPartlySunny; +var weatherShower = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M17 18c-.552 0-1-.447-1-1s.448-1 1-1c1.654 0 3-1.346 3-3s-1.346-3-3-3c-.243 0-.5.041-.81.13l-1.075.307-.185-1.103c-.326-1.932-1.978-3.334-3.93-3.334-2.206 0-4 1.794-4 4 0 .272.027.545.082.811l.244 1.199-1.42-.016c-1.009.006-1.906.903-1.906 2.006s.897 2 2 2c.552 0 1 .447 1 1s-.448 1-1 1c-2.206 0-4-1.794-4-4 0-1.861 1.277-3.429 3.001-3.874l-.001-.126c0-3.309 2.691-6 6-6 2.587 0 4.824 1.638 5.65 4.015 2.939-.244 5.35 2.113 5.35 4.985 0 2.757-2.243 5-5 5zM10.5 18l1-3 1 3c.184.553-.114 1.149-.667 1.333-.552.185-1.149-.114-1.333-.666-.075-.226-.07-.458 0-.667zM13.5 20l1-3 1 3c.184.553-.114 1.149-.667 1.333-.552.185-1.149-.114-1.333-.666-.075-.226-.07-.458 0-.667zM7.5 20l1-3 1 3c.184.553-.114 1.149-.667 1.333-.552.185-1.149-.114-1.333-.666-.075-.226-.07-.458 0-.667z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17 18c-.552 0-1-.447-1-1s.448-1 1-1c1.654 0 3-1.346 3-3s-1.346-3-3-3c-.243 0-.5.041-.81.13l-1.075.307-.185-1.103c-.326-1.932-1.978-3.334-3.93-3.334-2.206 0-4 1.794-4 4 0 .272.027.545.082.811l.244 1.199-1.42-.016c-1.009.006-1.906.903-1.906 2.006s.897 2 2 2c.552 0 1 .447 1 1s-.448 1-1 1c-2.206 0-4-1.794-4-4 0-1.861 1.277-3.429 3.001-3.874l-.001-.126c0-3.309 2.691-6 6-6 2.587 0 4.824 1.638 5.65 4.015 2.939-.244 5.35 2.113 5.35 4.985 0 2.757-2.243 5-5 5zM10.5 18l1-3 1 3c.184.553-.114 1.149-.667 1.333-.552.185-1.149-.114-1.333-.666-.075-.226-.07-.458 0-.667zM13.5 20l1-3 1 3c.184.553-.114 1.149-.667 1.333-.552.185-1.149-.114-1.333-.666-.075-.226-.07-.458 0-.667zM7.5 20l1-3 1 3c.184.553-.114 1.149-.667 1.333-.552.185-1.149-.114-1.333-.666-.075-.226-.07-.458 0-.667z" + }, + "children": [] + }] + }] + }] +}; +exports.weatherShower = weatherShower; +var weatherSnow = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M20.5 15.134l-2.457-.503 1.483-.396c.533-.143.85-.69.707-1.225-.142-.533-.689-.85-1.225-.707l-1.508.403c.037-.231.071-.464.071-.706s-.034-.476-.071-.707l1.51.404.26.034c.441 0 .846-.295.965-.741.143-.533-.174-1.082-.707-1.225l-1.483-.397 2.455-.502c.216-.044.42-.156.577-.333.386-.436.347-1.102-.089-1.488-.436-.386-1.102-.347-1.488.089l-1.663 1.874.398-1.479c.144-.533-.173-1.082-.706-1.226-.531-.142-1.082.173-1.226.706l-.407 1.517c-.366-.299-.771-.544-1.219-.717l1.102-1.102c.391-.391.391-1.023 0-1.414s-1.023-.391-1.414 0l-1.086 1.086.793-2.379c.069-.209.075-.441 0-.667-.184-.552-.781-.851-1.333-.666-.552.184-.85.78-.667 1.333l.793 2.379-1.086-1.086c-.391-.391-1.023-.391-1.414 0s-.391 1.023 0 1.414l1.102 1.102c-.447.173-.853.419-1.219.717l-.405-1.515c-.143-.534-.697-.852-1.224-.708-.534.143-.851.69-.708 1.224l.396 1.485-1.662-1.877c-.146-.164-.345-.285-.578-.333-.57-.117-1.127.25-1.244.82s.251 1.128.822 1.245l2.454.503-1.48.396c-.533.143-.85.691-.707 1.225.119.447.523.741.965.741l.26-.034 1.508-.404c-.039.231-.073.465-.073.706 0 .242.034.475.071.707l-1.508-.404c-.532-.142-1.081.173-1.225.707-.144.533.174 1.082.707 1.225l1.483.397-2.455.502c-.216.044-.42.156-.577.334-.387.436-.347 1.102.089 1.487.436.387 1.103.347 1.488-.089l1.665-1.878-.398 1.484c-.144.533.173 1.082.707 1.225l.26.034c.441 0 .845-.294.965-.741l.406-1.515c.366.298.771.544 1.22.716l-1.104 1.102c-.391.39-.391 1.023 0 1.414s1.023.391 1.414 0l.706-.707h.252l-.666 1.999c-.069.209-.075.441 0 .667.184.552.781.851 1.333.666.553-.184.851-.78.667-1.333l-.666-1.999h.252l.707.707c.196.195.451.293.707.293s.512-.098.707-.293c.391-.39.391-1.023 0-1.414l-1.102-1.103c.448-.172.854-.418 1.22-.717l.406 1.517c.12.447.523.741.965.741l.26-.034c.533-.143.851-.691.707-1.225l-.397-1.48 1.662 1.874c.146.165.345.285.577.333.57.117 1.128-.251 1.244-.821.117-.57-.251-1.127-.821-1.244zm-7.428-.634c-1.379 0-2.5-1.121-2.5-2.5s1.121-2.5 2.5-2.5 2.5 1.121 2.5 2.5-1.121 2.5-2.5 2.5z" + }, + "children": [] + }] +}; +exports.weatherSnow = weatherSnow; +var weatherStormy = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M17 18c-.553 0-1-.447-1-1s.447-1 1-1c1.654 0 3-1.346 3-3s-1.346-3-3-3c-.238 0-.496.042-.813.131l-1.071.301-.186-1.098c-.326-1.932-1.979-3.334-3.93-3.334-2.205 0-4 1.794-4 4 0 .274.027.545.082.806l.26 1.24-1.436-.052c-1.01.006-1.906.903-1.906 2.006s.896 2 2 2c.553 0 1 .447 1 1s-.447 1-1 1c-2.205 0-4-1.794-4-4 0-1.861 1.277-3.429 3.002-3.874l-.002-.126c0-3.309 2.691-6 6-6 2.587 0 4.824 1.638 5.649 4.015 2.925-.241 5.351 2.112 5.351 4.985 0 2.757-2.243 5-5 5zM12.639 14l-4.5 4.051 3 1.449-1.5 3.5 4.5-4.05-3-1.45z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17 18c-.553 0-1-.447-1-1s.447-1 1-1c1.654 0 3-1.346 3-3s-1.346-3-3-3c-.238 0-.496.042-.813.131l-1.071.301-.186-1.098c-.326-1.932-1.979-3.334-3.93-3.334-2.205 0-4 1.794-4 4 0 .274.027.545.082.806l.26 1.24-1.436-.052c-1.01.006-1.906.903-1.906 2.006s.896 2 2 2c.553 0 1 .447 1 1s-.447 1-1 1c-2.205 0-4-1.794-4-4 0-1.861 1.277-3.429 3.002-3.874l-.002-.126c0-3.309 2.691-6 6-6 2.587 0 4.824 1.638 5.649 4.015 2.925-.241 5.351 2.112 5.351 4.985 0 2.757-2.243 5-5 5zM12.639 14l-4.5 4.051 3 1.449-1.5 3.5 4.5-4.05-3-1.45z" + }, + "children": [] + }] + }] + }] +}; +exports.weatherStormy = weatherStormy; +var weatherSunny = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M13 4l-1 2.934-1-2.934c-.188-.553.106-1.152.659-1.341.552-.188 1.153.107 1.341.659.078.23.072.469 0 .682zM4 11l2.934 1-2.934 1c-.553.188-1.152-.106-1.341-.659-.188-.552.107-1.153.659-1.341.23-.078.469-.072.682 0zM11 20l1-2.934 1 2.934c.188.553-.106 1.152-.659 1.341-.552.188-1.152-.106-1.341-.659-.078-.23-.072-.469 0-.682zM20 12.998l-2.934-1 2.934-1c.553-.188 1.152.106 1.341.659.188.552-.106 1.152-.659 1.341-.23.078-.469.072-.682 0zM7.05 5.636l1.367 2.781-2.781-1.367c-.524-.257-.74-.891-.483-1.414.258-.523.891-.739 1.414-.482.218.107.383.28.483.482zM5.636 16.949l2.781-1.367-1.367 2.781c-.257.523-.891.739-1.414.482-.523-.258-.739-.891-.482-1.414.107-.218.28-.382.482-.482zM16.949 18.363l-1.367-2.781 2.781 1.367c.523.257.739.891.482 1.414-.258.523-.891.739-1.414.482-.218-.107-.382-.28-.482-.482zM18.362 7.048l-2.782 1.368 1.368-2.782c.257-.523.891-.739 1.414-.482.523.258.739.891.481 1.415-.106.217-.279.381-.481.481zM12 16.5c-2.481 0-4.5-2.019-4.5-4.5s2.019-4.5 4.5-4.5 4.5 2.019 4.5 4.5-2.019 4.5-4.5 4.5zm0-7c-1.379 0-2.5 1.121-2.5 2.5s1.121 2.5 2.5 2.5 2.5-1.121 2.5-2.5-1.121-2.5-2.5-2.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M13 4l-1 2.934-1-2.934c-.188-.553.106-1.152.659-1.341.552-.188 1.153.107 1.341.659.078.23.072.469 0 .682zM4 11l2.934 1-2.934 1c-.553.188-1.152-.106-1.341-.659-.188-.552.107-1.153.659-1.341.23-.078.469-.072.682 0zM11 20l1-2.934 1 2.934c.188.553-.106 1.152-.659 1.341-.552.188-1.152-.106-1.341-.659-.078-.23-.072-.469 0-.682zM20 12.998l-2.934-1 2.934-1c.553-.188 1.152.106 1.341.659.188.552-.106 1.152-.659 1.341-.23.078-.469.072-.682 0zM7.05 5.636l1.367 2.781-2.781-1.367c-.524-.257-.74-.891-.483-1.414.258-.523.891-.739 1.414-.482.218.107.383.28.483.482zM5.636 16.949l2.781-1.367-1.367 2.781c-.257.523-.891.739-1.414.482-.523-.258-.739-.891-.482-1.414.107-.218.28-.382.482-.482zM16.949 18.363l-1.367-2.781 2.781 1.367c.523.257.739.891.482 1.414-.258.523-.891.739-1.414.482-.218-.107-.382-.28-.482-.482zM18.362 7.048l-2.782 1.368 1.368-2.782c.257-.523.891-.739 1.414-.482.523.258.739.891.481 1.415-.106.217-.279.381-.481.481zM12 16.5c-2.481 0-4.5-2.019-4.5-4.5s2.019-4.5 4.5-4.5 4.5 2.019 4.5 4.5-2.019 4.5-4.5 4.5zm0-7c-1.379 0-2.5 1.121-2.5 2.5s1.121 2.5 2.5 2.5 2.5-1.121 2.5-2.5-1.121-2.5-2.5-2.5z" + }, + "children": [] + }] + }] + }] +}; +exports.weatherSunny = weatherSunny; +var weatherWindyCloudy = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M4.798 15.75c-.134 0-.27-.026-.4-.084-1.457-.639-2.398-2.077-2.398-3.666 0-1.861 1.277-3.429 3.001-3.874l-.001-.126c0-3.309 2.691-6 6-6 2.932 0 5.413 2.104 5.902 5.001.092.544-.275 1.061-.82 1.152-.544.083-1.06-.276-1.152-.82-.326-1.931-1.979-3.333-3.93-3.333-2.206 0-4 1.794-4 4 0 .272.027.546.081.812l.259 1.27-1.431-.088c-1.012.006-1.909.903-1.909 2.006 0 .795.471 1.515 1.2 1.834.506.222.736.812.515 1.317-.164.375-.531.599-.917.599zM19 7c-.553 0-1 .447-1 1s.447 1 1 1c.552 0 1 .448 1 1s-.448 1-1 1h-9.6c-.553 0-1 .447-1 1s.447 1 1 1h4.6c.552 0 1 .448 1 1s-.448 1-1 1h-5c-1.654 0-3 1.346-3 3s1.346 3 3 3c.553 0 1-.447 1-1s-.447-1-1-1c-.552 0-1-.448-1-1s.448-1 1-1h5c1.654 0 3-1.346 3-3 0-.353-.072-.686-.185-1h2.185c1.654 0 3-1.346 3-3s-1.346-3-3-3z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M4.798 15.75c-.134 0-.27-.026-.4-.084-1.457-.639-2.398-2.077-2.398-3.666 0-1.861 1.277-3.429 3.001-3.874l-.001-.126c0-3.309 2.691-6 6-6 2.932 0 5.413 2.104 5.902 5.001.092.544-.275 1.061-.82 1.152-.544.083-1.06-.276-1.152-.82-.326-1.931-1.979-3.333-3.93-3.333-2.206 0-4 1.794-4 4 0 .272.027.546.081.812l.259 1.27-1.431-.088c-1.012.006-1.909.903-1.909 2.006 0 .795.471 1.515 1.2 1.834.506.222.736.812.515 1.317-.164.375-.531.599-.917.599zM19 7c-.553 0-1 .447-1 1s.447 1 1 1c.552 0 1 .448 1 1s-.448 1-1 1h-9.6c-.553 0-1 .447-1 1s.447 1 1 1h4.6c.552 0 1 .448 1 1s-.448 1-1 1h-5c-1.654 0-3 1.346-3 3s1.346 3 3 3c.553 0 1-.447 1-1s-.447-1-1-1c-.552 0-1-.448-1-1s.448-1 1-1h5c1.654 0 3-1.346 3-3 0-.353-.072-.686-.185-1h2.185c1.654 0 3-1.346 3-3s-1.346-3-3-3z" + }, + "children": [] + }] + }] + }] +}; +exports.weatherWindyCloudy = weatherWindyCloudy; +var weatherWindy = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M19 5c-.553 0-1 .447-1 1s.447 1 1 1c.552 0 1 .448 1 1s-.448 1-1 1h-11c-.553 0-1 .447-1 1s.447 1 1 1h6c.552 0 1 .448 1 1s-.448 1-1 1h-6.4c-1.654 0-3 1.346-3 3s1.346 3 3 3c.553 0 1-.447 1-1s-.447-1-1-1c-.552 0-1-.448-1-1s.448-1 1-1h6.4c1.654 0 3-1.346 3-3 0-.353-.072-.686-.185-1h2.185c1.654 0 3-1.346 3-3s-1.346-3-3-3z" + }, + "children": [] + }] +}; +exports.weatherWindy = weatherWindy; +var wiFiOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M21.157 10.764c0-.785-.269-1.464-.706-2.048-.045-.094-.131-.149-.21-.226-.163-.18-.341-.338-.536-.48-4.45-3.739-10.965-3.735-15.414.006-.193.142-.742.738-.742.738-.437.584-.706 1.305-.706 2.09 0 .816.362 1.758.759 2.155l5.775 5.796c.642.732 1.572 1.204 2.622 1.204.996 0 1.709-.167 2.526-1 .004 0 5.565-5.646 5.565-5.646.706-.703 1.067-1.699 1.067-2.589zm-9.156 7.234c-.829.002-1.501-.668-1.501-1.498-.002-.828.67-1.502 1.501-1.502.829-.002 1.501.67 1.499 1.502.002.828-.67 1.5-1.499 1.498zm3.888-3.268c-.293.293-.677.438-1.061.438-.385 0-.768-.146-1.061-.438-.976-.976-2.562-.976-3.536 0-.586.586-1.536.584-2.122 0-.586-.586-.586-1.537 0-2.123 2.144-2.144 5.632-2.144 7.779 0 .587.586.587 1.538.001 2.123zm2.829-2.828c-.293.293-.677.438-1.061.438s-.769-.146-1.062-.438c-2.533-2.534-6.658-2.534-9.192 0-.586.584-1.536.584-2.122 0-.585-.586-.585-1.536 0-2.123 3.704-3.701 9.729-3.701 13.435 0 .587.588.587 1.537.002 2.123z" + }, + "children": [] + }] +}; +exports.wiFiOutline = wiFiOutline; +var wiFi = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M13.414 19.412c.783-.779.783-2.047 0-2.826-.781-.785-2.049-.785-2.828-.002-.783.783-.783 2.051 0 2.831.781.78 2.049.781 2.828-.003zM20.485 11.515c-.512 0-1.024-.195-1.414-.586-3.899-3.899-10.243-3.898-14.143 0-.782.781-2.048.78-2.829 0-.781-.781-.781-2.047 0-2.829 5.459-5.458 14.341-5.458 19.799 0 .781.781.781 2.047 0 2.828-.389.391-.901.587-1.413.587zM7.757 15.757c-.512 0-1.024-.195-1.414-.586-.781-.781-.781-2.047 0-2.828 3.118-3.119 8.194-3.119 11.313 0 .781.781.781 2.047 0 2.829-.781.781-2.047.781-2.829 0-1.559-1.56-4.097-1.559-5.657 0-.389.39-.901.585-1.413.585z" + }, + "children": [] + }] +}; +exports.wiFi = wiFi; +var wine = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M17.568 9.432c0-2.55-.906-5.592-.944-5.72-.128-.423-.517-.712-.958-.712h-7.332c-.441 0-.83.289-.958.712-.038.128-.944 3.17-.944 5.72 0 2.735 1.984 5.011 4.587 5.477l-.019.091v4h-1c-.553 0-1 .447-1 1s.447 1 1 1h4c.553 0 1-.447 1-1s-.447-1-1-1h-1v-4l-.019-.092c2.603-.466 4.587-2.741 4.587-5.476zm-5.568 3.568c-1.773 0-3.236-1.303-3.511-3h7.021c-.274 1.697-1.737 3-3.51 3zm-3.555-4c.062-1.468.422-3.093.653-4h5.803c.231.907.591 2.532.653 4h-7.109z" + }, + "children": [] + }] +}; +exports.wine = wine; +var worldOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 2c-4.971 0-9 4.029-9 9s4.029 9 9 9 9-4.029 9-9-4.029-9-9-9zm0 6c0-.553.447-1 1-1s1 .447 1 1v3c-.552 0-1 .448-1 1s.448 1 1 1c.553 0 1-.448 1-1h1v-2l1 1-1 1c0 3 0 3-2 4 0-1-1-1-3-1v-2l-2-2v-2c-1 0-1 1-1 1l-.561-.561-1.652-1.651c1.167-2.247 3.512-3.788 6.213-3.788.688 0 1.353.104 1.981.29-.086.895-.579 1.71-1.481 1.71-1 0-1.5 1-1.5 2v3s1 0 1-3zm0 10c-3.859 0-7-3.14-7-7 0-.776.133-1.521.367-2.219l1.926 1.926 1 1 1.707 1.707v1.586c0 .552.447 1 1 1 .779 0 1.651 0 2.006.091.038.301.209.582.468.742.168.104.36.16.552.16.145 0 .289-.032.422-.098 2.348-1.174 2.539-1.644 2.552-4.479l.708-.708c.391-.391.391-1.023 0-1.414l-1-1c-.192-.192-.448-.294-.708-.294-.129 0-.259.025-.383.076-.373.155-.617.52-.617.924v-2c0-.689-.351-1.298-.883-1.658.421-.411.712-.995.826-1.685 2.392 1.115 4.057 3.535 4.057 6.343 0 3.86-3.141 7-7 7z" + }, + "children": [] + }] +}; +exports.worldOutline = worldOutline; +var world = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 2c-4.971 0-9 4.029-9 9s4.029 9 9 9 9-4.029 9-9-4.029-9-9-9zm2 2c0 1-.5 2-1.5 2s-1.5 1-1.5 2v3s1 0 1-3c0-.553.447-1 1-1s1 .447 1 1v3c-.552 0-1 .448-1 1s.448 1 1 1c.553 0 1-.448 1-1h1v-2l1 1-1 1c0 3 0 3-2 4 0-1-1-1-3-1v-2l-2-2v-2c-1 0-1 1-1 1l-.561-.561-2.39-2.39c.11-.192.225-.382.35-.564l.523-.678c1.468-1.716 3.644-2.807 6.078-2.807.691 0 1.359.098 2 .262v.738z" + }, + "children": [] + }] +}; +exports.world = world; +var zoomInOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M13 11h-2v-2c0-.275-.225-.5-.5-.5s-.5.225-.5.5v2h-2c-.275 0-.5.225-.5.5s.225.5.5.5h2v2c0 .275.225.5.5.5s.5-.225.5-.5v-2h2c.275 0 .5-.225.5-.5s-.225-.5-.5-.5zM19.381 15.956l-2.244-2.283c.227-.687.363-1.412.363-2.173 0-3.859-3.141-7-7-7s-7 3.141-7 7 3.141 7 7 7c.762 0 1.488-.137 2.173-.364l2.397 2.386c.601.506 1.348.783 2.104.783 1.727 0 3.131-1.404 3.131-3.131 0-.84-.328-1.628-.924-2.218zm-3.901-1.11l2.492 2.531c.205.203.332.486.332.797 0 .625-.507 1.131-1.131 1.131-.312 0-.594-.127-.816-.313l-2.512-2.511c.646-.436 1.201-.991 1.635-1.635zm-9.98-3.346c0-2.757 2.243-5 5-5s5 2.243 5 5-2.243 5-5 5-5-2.243-5-5z" + }, + "children": [] + }] +}; +exports.zoomInOutline = zoomInOutline; +var zoomIn = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M13 11h-2v-2c0-.276-.224-.5-.5-.5s-.5.224-.5.5v2h-2c-.276 0-.5.224-.5.5s.224.5.5.5h2v2c0 .276.224.5.5.5s.5-.224.5-.5v-2h2c.276 0 .5-.224.5-.5s-.224-.5-.5-.5zM18.432 14.97l-.536-.537-.749-.75c.227-.688.354-1.42.354-2.183 0-3.859-3.141-7-7-7s-7 3.141-7 7 3.141 7 7 7c.763 0 1.496-.127 2.184-.354l.75.749 1.512 1.51.061.061.064.055c.601.506 1.348.784 2.104.784 1.726 0 3.13-1.404 3.13-3.131 0-.84-.328-1.628-.924-2.218l-.95-.986zm-12.932-3.47c0-2.757 2.243-5 5-5s5 2.243 5 5-2.243 5-5 5-5-2.243-5-5z" + }, + "children": [] + }] +}; +exports.zoomIn = zoomIn; +var zoomOutOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M13 12h-5c-.275 0-.5-.225-.5-.5s.225-.5.5-.5h5c.275 0 .5.225.5.5s-.225.5-.5.5zM19.381 15.956l-2.245-2.283c.228-.687.364-1.412.364-2.173 0-3.859-3.141-7-7-7s-7 3.141-7 7 3.141 7 7 7c.761 0 1.488-.137 2.173-.364l2.397 2.386c.601.506 1.348.783 2.104.783 1.727 0 3.131-1.404 3.131-3.131 0-.84-.328-1.628-.924-2.218zm-3.901-1.11l2.492 2.531c.205.203.332.486.332.797 0 .625-.507 1.131-1.131 1.131-.312 0-.594-.127-.816-.313l-2.512-2.511c.646-.436 1.201-.991 1.635-1.635zm-9.98-3.346c0-2.757 2.243-5 5-5s5 2.243 5 5-2.243 5-5 5-5-2.243-5-5z" + }, + "children": [] + }] +}; +exports.zoomOutOutline = zoomOutOutline; +var zoomOut = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M13 11h-5c-.276 0-.5.224-.5.5s.224.5.5.5h5c.276 0 .5-.224.5-.5s-.224-.5-.5-.5zM19.381 15.956l-.949-.986-.537-.537-.749-.75c.227-.688.354-1.42.354-2.183 0-3.859-3.14-7-7-7s-7 3.141-7 7 3.14 7 7 7c.763 0 1.496-.127 2.184-.354l.75.749 1.512 1.51.06.061.065.055c.601.506 1.348.784 2.104.784 1.726 0 3.13-1.404 3.13-3.131 0-.84-.328-1.628-.924-2.218zm-13.881-4.456c0-2.757 2.243-5 5-5s5 2.243 5 5-2.243 5-5 5-5-2.243-5-5z" + }, + "children": [] + }] +}; +exports.zoomOut = zoomOut; +var zoomOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M14 8c1.656 0 3 1.344 3 3s-1.344 3-3 3-3-1.344-3-3 1.344-3 3-3m0-1c-2.206 0-4 1.794-4 4s1.794 4 4 4 4-1.794 4-4-1.794-4-4-4zM4.195 17.674c0 1.727 1.404 3.131 3.131 3.131.756 0 1.503-.277 2.104-.783l2.397-2.386c.685.227 1.412.364 2.173.364 3.86 0 7-3.141 7-7s-3.14-7-7-7c-3.859 0-7 3.141-7 7 0 .761.136 1.486.364 2.173l-2.245 2.283c-.596.59-.924 1.378-.924 2.218zm6.459-1.694l-2.512 2.511c-.223.187-.504.313-.816.313-.624 0-1.131-.506-1.131-1.131 0-.311.127-.594.332-.797l2.492-2.531c.435.645.99 1.2 1.635 1.635zm3.346.02c-2.757 0-5-2.243-5-5s2.243-5 5-5 5 2.243 5 5-2.243 5-5 5z" + }, + "children": [] + }] +}; +exports.zoomOutline = zoomOutline; +var zoom = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M13 4c-3.859 0-7 3.141-7 7 0 .763.127 1.495.354 2.183l-.749.75-.511.512-1.008 1.045c-.562.557-.891 1.345-.891 2.185 0 1.727 1.404 3.131 3.13 3.131.757 0 1.504-.278 2.104-.784l.064-.055.061-.061 1.512-1.51.75-.749c.688.226 1.421.353 2.184.353 3.859 0 7-3.141 7-7s-3.141-7-7-7zm0 12c-2.757 0-5-2.243-5-5s2.243-5 5-5 5 2.243 5 5-2.243 5-5 5zM13 7c-2.205 0-4 1.794-4 4s1.795 4 4 4 4-1.794 4-4-1.795-4-4-4zm0 7c-1.656 0-3-1.344-3-3s1.344-3 3-3 3 1.344 3 3-1.344 3-3 3z" + }, + "children": [] + }] +}; +exports.zoom = zoom; \ No newline at end of file diff --git a/dist/typicons/infinity.js b/dist/typicons/infinity.js new file mode 100644 index 000000000..94145c014 --- /dev/null +++ b/dist/typicons/infinity.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.infinity = void 0; +var infinity = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M16.433 8.596c-1.153 0-2.237.449-3.036 1.246l-1.396 1.34-1.375-1.32c-.815-.817-1.901-1.266-3.055-1.266-1.154 0-2.239.451-3.053 1.266-.817.816-1.267 1.9-1.267 3.055 0 1.152.449 2.238 1.266 3.053.814.816 1.899 1.266 3.054 1.266 1.153 0 2.239-.449 3.036-1.248l1.395-1.338 1.376 1.32c.815.816 1.901 1.266 3.055 1.266s2.238-.449 3.053-1.266c.817-.814 1.267-1.9 1.267-3.055s-.449-2.238-1.266-3.055c-.817-.815-1.901-1.264-3.054-1.264zm-7.576 5.605c-.687.688-1.884.688-2.572 0-.344-.344-.533-.801-.533-1.285 0-.486.189-.941.535-1.287.342-.344.799-.533 1.284-.533s.942.189 1.305.551l1.321 1.27-1.34 1.284zm8.861 0c-.687.689-1.866.705-2.59-.018l-1.321-1.27 1.339-1.285c.688-.688 1.886-.688 2.573-.002.344.346.533.801.533 1.287s-.19.944-.534 1.288z" + }, + "children": [] + }] +}; +exports.infinity = infinity; \ No newline at end of file diff --git a/dist/typicons/infinityOutline.js b/dist/typicons/infinityOutline.js new file mode 100644 index 000000000..3f2bc2fca --- /dev/null +++ b/dist/typicons/infinityOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.infinityOutline = void 0; +var infinityOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M16.434 8.596c1.152 0 2.237.449 3.053 1.264.815.816 1.266 1.9 1.266 3.056s-.45 2.239-1.268 3.056c-.813.815-1.898 1.266-3.053 1.266s-2.238-.449-3.055-1.266l-1.376-1.32-1.395 1.338c-.797.799-1.882 1.248-3.036 1.248-1.154 0-2.239-.449-3.054-1.267-.815-.813-1.265-1.899-1.265-3.053s.45-2.237 1.267-3.056c.814-.813 1.898-1.266 3.053-1.266 1.154 0 2.239.449 3.055 1.266l1.375 1.32 1.396-1.34c.798-.797 1.882-1.246 3.037-1.246m0-2c-1.679 0-3.25.645-4.433 1.813-1.163-1.159-2.746-1.813-4.43-1.813-1.688 0-3.274.657-4.467 1.853-1.194 1.192-1.852 2.78-1.852 4.469s.658 3.274 1.852 4.468c1.191 1.192 2.779 1.852 4.468 1.852 1.679 0 3.251-.645 4.431-1.814 1.163 1.16 2.746 1.814 4.431 1.814 1.689 0 3.276-.658 4.469-1.854 1.193-1.188 1.852-2.776 1.852-4.467 0-1.688-.658-3.274-1.852-4.47-1.197-1.195-2.783-1.851-4.469-1.851zM7.571 12.096c.225 0 .426.088.612.271l.57.548-.603.579c-.141.142-.352.223-.578.223-.227 0-.438-.08-.58-.223-.155-.155-.24-.36-.24-.578 0-.221.084-.422.243-.581.156-.155.355-.239.576-.239m0-1c-.486 0-.942.189-1.285.533-.345.346-.535.801-.535 1.287 0 .484.189.941.533 1.285.344.344.815.516 1.287.516.471 0 .942-.172 1.285-.516l1.339-1.285-1.321-1.27c-.36-.361-.817-.55-1.303-.55zM16.434 12.113c.228 0 .438.08.576.219.158.159.242.359.242.582s-.083.422-.243.581c-.144.146-.352.228-.571.228-.23 0-.444-.088-.617-.261l-.571-.548.603-.578c.141-.143.353-.223.581-.223m0-1c-.472 0-.943.172-1.287.516l-1.34 1.285 1.322 1.27c.362.361.838.539 1.311.539.472 0 .937-.177 1.279-.521.346-.344.534-.801.534-1.287s-.188-.941-.532-1.287c-.346-.344-.817-.515-1.287-.515z" + }, + "children": [] + }] +}; +exports.infinityOutline = infinityOutline; \ No newline at end of file diff --git a/dist/typicons/info.js b/dist/typicons/info.js new file mode 100644 index 000000000..2ba8fe71c --- /dev/null +++ b/dist/typicons/info.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.info = void 0; +var info = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M21.17,15.4l-5.91-9.85C14.48,4.25,13.3,3.51,12,3.51S9.52,4.25,8.74,5.54L2.83,15.4c-0.44,0.73-0.66,1.49-0.66,2.21\r\n\tc0,0.57,0.14,1.13,0.42,1.62C3.23,20.35,4.47,21,6,21h12c1.53,0,2.77-0.65,3.41-1.77c0.28-0.49,0.42-1.02,0.42-1.58\r\n\tC21.84,16.91,21.62,16.14,21.17,15.4z M12,8.45c0.85,0,1.55,0.7,1.55,1.55c0,0.85-0.69,1.55-1.55,1.55c-0.85,0-1.55-0.7-1.55-1.55\r\n\tC10.45,9.14,11.14,8.45,12,8.45z M13.69,16.91c-0.03,0.04-0.8,0.92-2.07,0.92l-0.15,0c-0.51-0.03-0.93-0.25-1.18-0.63\r\n\tc-0.31-0.47-0.36-1.11-0.12-1.82l0.41-1.22c0.23-0.68,0.01-0.79-0.11-0.85l-0.14-0.02c-0.25,0-0.6,0.15-0.71,0.21\r\n\tc-0.1,0.05-0.23,0.03-0.31-0.07c-0.07-0.1-0.07-0.23,0.01-0.32c0.03-0.04,0.87-0.99,2.22-0.91c0.51,0.03,0.93,0.25,1.18,0.63\r\n\tc0.32,0.47,0.36,1.11,0.12,1.83l-0.41,1.22c-0.23,0.68-0.01,0.79,0.11,0.85l0.14,0.02c0.25,0,0.6-0.15,0.71-0.2\r\n\tc0.11-0.06,0.23-0.03,0.31,0.07C13.77,16.69,13.77,16.82,13.69,16.91z" + }, + "children": [] + }] +}; +exports.info = info; \ No newline at end of file diff --git a/dist/typicons/infoLarge.js b/dist/typicons/infoLarge.js new file mode 100644 index 000000000..e732da744 --- /dev/null +++ b/dist/typicons/infoLarge.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.infoLarge = void 0; +var infoLarge = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M13.839 17.525c-.006.002-.559.186-1.039.186-.265 0-.372-.055-.406-.079-.168-.117-.48-.336.054-1.4l1-1.994c.593-1.184.681-2.329.245-3.225-.356-.733-1.039-1.236-1.92-1.416-.317-.065-.639-.097-.958-.097-1.849 0-3.094 1.08-3.146 1.126-.179.158-.221.42-.102.626.12.206.367.3.595.222.005-.002.559-.187 1.039-.187.263 0 .369.055.402.078.169.118.482.34-.051 1.402l-1 1.995c-.594 1.185-.681 2.33-.245 3.225.356.733 1.038 1.236 1.921 1.416.314.063.636.097.954.097 1.85 0 3.096-1.08 3.148-1.126.179-.157.221-.42.102-.626-.12-.205-.369-.297-.593-.223z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "13", + "cy": "6.001", + "r": "2.5" + }, + "children": [] + }] +}; +exports.infoLarge = infoLarge; \ No newline at end of file diff --git a/dist/typicons/infoLargeOutline.js b/dist/typicons/infoLargeOutline.js new file mode 100644 index 000000000..6fbd168b7 --- /dev/null +++ b/dist/typicons/infoLargeOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.infoLargeOutline = void 0; +var infoLargeOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M14.234 16.014l.554-1.104c.808-1.61.897-3.228.253-4.552-.122-.252-.277-.479-.443-.693 1.411-.619 2.402-2.026 2.402-3.664 0-2.206-1.794-4-4-4s-4 1.794-4 4c0 .783.234 1.508.624 2.126-1.696.33-2.806 1.248-2.947 1.375-.716.631-.885 1.68-.405 2.504.324.559.886.909 1.494.98l-.554 1.104c-.808 1.61-.897 3.228-.254 4.552.565 1.164 1.621 1.955 2.972 2.229.413.084.836.127 1.254.127 2.368 0 3.965-1.347 4.14-1.501.716-.63.887-1.678.407-2.503-.325-.556-.887-.909-1.497-.98zm-1.234-12.013c1.104 0 2 .896 2 2s-.896 2-2 2c-1.105 0-2-.896-2-2s.895-2 2-2zm-1.816 14.999c-.271 0-.559-.025-.854-.087-1.642-.334-2.328-1.933-1.328-3.927l1-1.995c.5-.996.47-1.63-.108-2.035-.181-.125-.431-.169-.689-.169-.577 0-1.201.214-1.201.214s1.133-1.001 2.812-1.001c.271 0 .56.025.856.087 1.64.334 2.328 1.933 1.328 3.927l-1 1.993c-.5.998-.472 1.632.106 2.035.181.126.433.169.692.169.577 0 1.2-.212 1.2-.212s-1.133 1.001-2.814 1.001z" + }, + "children": [] + }] +}; +exports.infoLargeOutline = infoLargeOutline; \ No newline at end of file diff --git a/dist/typicons/infoOutline.js b/dist/typicons/infoOutline.js new file mode 100644 index 000000000..d3e6ec2e6 --- /dev/null +++ b/dist/typicons/infoOutline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.infoOutline = void 0; +var infoOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12,5.51c0.56,0,1.12,0.35,1.54,1.06l5.91,9.85C20.31,17.84,19.65,19,18,19H6c-1.65,0-2.31-1.16-1.46-2.57l5.91-9.85\r\n\tC10.88,5.86,11.44,5.51,12,5.51 M12,3.51c-1.3,0-2.48,0.74-3.26,2.03L2.83,15.4c-0.44,0.74-0.66,1.5-0.66,2.23\r\n\tc0,0.56,0.14,1.11,0.42,1.6C3.23,20.35,4.47,21,6,21h12c1.53,0,2.77-0.65,3.41-1.77c0.29-0.51,0.43-1.07,0.42-1.65\r\n\tc-0.01-0.71-0.23-1.46-0.66-2.18l-5.91-9.85C14.48,4.25,13.3,3.51,12,3.51z M13.5,16.75c0,0-0.71,0.36-1.07,0.18\r\n\tc-0.36-0.18-0.43-0.54-0.23-1.15l0.41-1.22c0.4-1.22-0.12-2.08-1.08-2.13c-1.26-0.07-2.02,0.83-2.02,0.83s0.71-0.36,1.07-0.18\r\n\tc0.36,0.18,0.43,0.54,0.23,1.15l-0.41,1.22c-0.4,1.22,0.12,2.07,1.08,2.13C12.74,17.64,13.5,16.75,13.5,16.75z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "10", + "r": "1.3" + }, + "children": [] + }] +}; +exports.infoOutline = infoOutline; \ No newline at end of file diff --git a/dist/typicons/inputChecked.js b/dist/typicons/inputChecked.js new file mode 100644 index 000000000..5eb773098 --- /dev/null +++ b/dist/typicons/inputChecked.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.inputChecked = void 0; +var inputChecked = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M16 19h-8c-1.654 0-3-1.346-3-3v-8c0-1.654 1.346-3 3-3h5c.553 0 1 .448 1 1s-.447 1-1 1h-5c-.552 0-1 .449-1 1v8c0 .551.448 1 1 1h8c.552 0 1-.449 1-1v-3c0-.552.447-1 1-1s1 .448 1 1v3c0 1.654-1.346 3-3 3zM13.166 14.833c-.35 0-.689-.139-.941-.391l-2.668-2.667c-.52-.521-.52-1.365 0-1.885.521-.521 1.365-.521 1.887 0l1.416 1.417 3.475-5.455c.357-.644 1.17-.877 1.814-.519.643.358.875 1.17.518 1.813l-4.334 7c-.203.366-.566.615-.98.673l-.187.014z" + }, + "children": [] + }] +}; +exports.inputChecked = inputChecked; \ No newline at end of file diff --git a/dist/typicons/inputCheckedOutline.js b/dist/typicons/inputCheckedOutline.js new file mode 100644 index 000000000..204d1cdc5 --- /dev/null +++ b/dist/typicons/inputCheckedOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.inputCheckedOutline = void 0; +var inputCheckedOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M19.885 6.177c-.221-.771-.728-1.409-1.427-1.798-.445-.248-.949-.379-1.457-.379-.862 0-1.661.381-2.219 1h-6.782c-1.654 0-3 1.346-3 3v8c0 1.654 1.346 3 3 3h8c1.654 0 3-1.346 3-3v-6.454l.622-1.088c.39-.7.482-1.51.263-2.281zm-3.758.338c.104-.189.27-.328.459-.416.301-.113.623-.127.9.027.232.13.402.343.476.6.033.117.039.236.03.353-.012.115-.043.227-.092.332l-.021.065-4.006 7.011c-.151.273-.427.461-.742.506l-.132.009c-.267 0-.518-.104-.707-.293l-3-3c-.39-.39-.39-1.024 0-1.414.189-.189.44-.293.707-.293s.518.104.707.293l1.125 1.125.92.92.652-1.125 2.724-4.7zm-.127 10.485h-8c-.552 0-1-.449-1-1v-8c0-.551.448-1 1-1h6.689l-2.15 3.712-1.125-1.125c-.391-.391-.902-.586-1.414-.586s-1.023.195-1.414.586c-.781.781-.781 2.047 0 2.828l3 3c.378.378.888.586 1.414.586l.277-.02c.621-.087 1.166-.461 1.471-1.01l2.252-3.94v4.969c0 .551-.448 1-1 1z" + }, + "children": [] + }] +}; +exports.inputCheckedOutline = inputCheckedOutline; \ No newline at end of file diff --git a/dist/typicons/key.js b/dist/typicons/key.js new file mode 100644 index 000000000..4ba30aef6 --- /dev/null +++ b/dist/typicons/key.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.key = void 0; +var key = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M8.5 11c0 .732.166 1.424.449 2.051l-3.949 3.949v1.5s.896 1.5 2 1.5h2v-2h2v-2h2.5c2.762 0 5-2.238 5-5s-2.238-5-5-5-5 2.238-5 5zm5 2c-1.104 0-2-.896-2-2 0-1.105.896-2.002 2-2.002 1.105 0 2 .896 2 2.002 0 1.104-.895 2-2 2z" + }, + "children": [] + }] +}; +exports.key = key; \ No newline at end of file diff --git a/dist/typicons/keyOutline.js b/dist/typicons/keyOutline.js new file mode 100644 index 000000000..41642a919 --- /dev/null +++ b/dist/typicons/keyOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.keyOutline = void 0; +var keyOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M10 21h-6v-4.414l3.783-3.783c-.187-.587-.283-1.192-.283-1.803 0-3.309 2.691-6 6-6s6 2.691 6 6-2.691 6-6 6h-1.5v2h-2v2zm-4-2h2v-2h2v-2h3.5c2.206 0 4-1.794 4-4s-1.794-4-4-4-4 1.794-4 4c0 .559.121 1.109.359 1.639l.285.631-4.144 4.144v1.586zM13.5 9.998c.551 0 1 .449 1 1.002 0 .552-.449 1-1 1s-1-.448-1-1c0-.553.449-1.002 1-1.002m0-1c-1.104 0-2 .896-2 2.002 0 1.104.896 2 2 2 1.105 0 2-.896 2-2 0-1.105-.895-2.002-2-2.002z" + }, + "children": [] + }] +}; +exports.keyOutline = keyOutline; \ No newline at end of file diff --git a/dist/typicons/keyboard.js b/dist/typicons/keyboard.js new file mode 100644 index 000000000..b3a512de5 --- /dev/null +++ b/dist/typicons/keyboard.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.keyboard = void 0; +var keyboard = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M8 13h7v2h-7zM5 13h2v2h-2zM5 9h2v1h-2zM8 12v-1h-3v1h2zM8 9h1v1h-1zM9 11h1v1h-1zM10 9h1v1h-1zM11 11h1v1h-1zM12 9h1v1h-1zM13 11h1v1h-1zM14 9h1v1h-1zM15 11h1v1h-1zM16 9h1v1h-1zM17 12h2v-3h-1v2h-1zM18 13h-1v1h-1v1h3v-1h-1zM20 6h-16c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-8c0-1.1-.9-2-2-2zm0 10h-16v-8h16v8z" + }, + "children": [] + }] +}; +exports.keyboard = keyboard; \ No newline at end of file diff --git a/dist/typicons/leaf.js b/dist/typicons/leaf.js new file mode 100644 index 000000000..25ff96c67 --- /dev/null +++ b/dist/typicons/leaf.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.leaf = void 0; +var leaf = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M20 11c0-4.9-3.499-9.1-8.32-9.983l-.18-.034-.18.033c-4.821.884-8.32 5.084-8.32 9.984 0 4.617 3.108 8.61 7.5 9.795v1.205c0 .553.448 1 1 1s1-.447 1-1v-1.205c4.392-1.185 7.5-5.178 7.5-9.795zm-7.5 7.7v-2.993l4.354-4.354c.195-.195.195-.512 0-.707s-.512-.195-.707 0l-3.647 3.647v-3.586l2.354-2.354c.195-.195.195-.512 0-.707s-.512-.195-.707 0l-1.647 1.647v-3.293c0-.553-.448-1-1-1s-1 .447-1 1v3.293l-1.646-1.647c-.195-.195-.512-.195-.707 0s-.195.512 0 .707l2.354 2.354v3.586l-3.646-3.646c-.195-.195-.512-.195-.707 0s-.195.512 0 .707l4.354 4.354v2.992c-3.249-1.116-5.502-4.179-5.502-7.7 0-3.874 2.723-7.201 6.5-7.981 3.777.78 6.5 4.107 6.5 7.981 0 3.521-2.253 6.584-5.5 7.7z" + }, + "children": [] + }] +}; +exports.leaf = leaf; \ No newline at end of file diff --git a/dist/typicons/lightbulb.js b/dist/typicons/lightbulb.js new file mode 100644 index 000000000..572c46834 --- /dev/null +++ b/dist/typicons/lightbulb.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.lightbulb = void 0; +var lightbulb = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12.5 5.5c-.276 0-.5.224-.5.5s.224.5.5.5c1.083 0 1.964.881 1.964 1.964 0 .276.224.5.5.5s.5-.224.5-.5c0-1.634-1.33-2.964-2.964-2.964zM12.5 1c-4.136 0-7.5 3.364-7.5 7.5 0 1.486.44 2.922 1.274 4.165l.08.135c1.825 2.606 2.146 3.43 2.146 4.2v3c0 .552.448 1 1 1h2c0 .26.11.52.29.71.19.18.45.29.71.29.26 0 .52-.11.71-.29.18-.19.29-.45.29-.71h2c.552 0 1-.448 1-1v-3c0-.782.319-1.61 2.132-4.199.895-1.275 1.368-2.762 1.368-4.301 0-4.136-3.364-7.5-7.5-7.5zm2 18h-4v-1h4v1zm2.495-7.347c-1.466 2.093-2.143 3.289-2.385 4.347h-1.11v-2c0-.552-.448-1-1-1s-1 .448-1 1v2h-1.113c-.24-1.03-.898-2.2-2.306-4.22l-.077-.129c-.657-.934-1.004-2.024-1.004-3.151 0-3.033 2.467-5.5 5.5-5.5s5.5 2.467 5.5 5.5c0 1.126-.347 2.216-1.005 3.153z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12.5 5.5c-.276 0-.5.224-.5.5s.224.5.5.5c1.083 0 1.964.881 1.964 1.964 0 .276.224.5.5.5s.5-.224.5-.5c0-1.634-1.33-2.964-2.964-2.964zM12.5 1c-4.136 0-7.5 3.364-7.5 7.5 0 1.486.44 2.922 1.274 4.165l.08.135c1.825 2.606 2.146 3.43 2.146 4.2v3c0 .552.448 1 1 1h2c0 .26.11.52.29.71.19.18.45.29.71.29.26 0 .52-.11.71-.29.18-.19.29-.45.29-.71h2c.552 0 1-.448 1-1v-3c0-.782.319-1.61 2.132-4.199.895-1.275 1.368-2.762 1.368-4.301 0-4.136-3.364-7.5-7.5-7.5zm2 18h-4v-1h4v1zm2.495-7.347c-1.466 2.093-2.143 3.289-2.385 4.347h-1.11v-2c0-.552-.448-1-1-1s-1 .448-1 1v2h-1.113c-.24-1.03-.898-2.2-2.306-4.22l-.077-.129c-.657-.934-1.004-2.024-1.004-3.151 0-3.033 2.467-5.5 5.5-5.5s5.5 2.467 5.5 5.5c0 1.126-.347 2.216-1.005 3.153z" + }, + "children": [] + }] + }] + }] +}; +exports.lightbulb = lightbulb; \ No newline at end of file diff --git a/dist/typicons/link.js b/dist/typicons/link.js new file mode 100644 index 000000000..0759026f6 --- /dev/null +++ b/dist/typicons/link.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.link = void 0; +var link = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.277 6.321c-.43-.43-1.126-.43-1.556 0l-1.721 1.722-.308-.308c-1.168-1.168-3.216-1.168-4.384 0l-4.172 4.172c-.584.584-.906 1.363-.906 2.192s.322 1.608.906 2.192l.308.308-1.722 1.722c-.43.43-.43 1.126 0 1.556.215.215.496.322.778.322s.563-.107.778-.322l1.722-1.722.308.308c.584.584 1.362.906 2.192.906s1.608-.322 2.192-.906l4.172-4.172c.584-.584.906-1.362.906-2.192s-.322-1.608-.906-2.192l-.308-.308 1.722-1.722c.429-.43.429-1.126-.001-1.556zm-2.969 6.414l-4.172 4.172c-.168.168-.402.253-.636.253s-.468-.084-.636-.253l-.308-.308.722-.722c.43-.43.43-1.126 0-1.556-.215-.215-.496-.322-.778-.322s-.563.107-.778.322l-.722.722-.308-.308c-.168-.168-.261-.395-.261-.636s.093-.468.261-.636l4.172-4.172c.168-.168.394-.261.636-.261s.468.093.636.261l.308.308-.722.722c-.43.43-.43 1.126 0 1.556.215.215.496.322.778.322s.563-.107.778-.322l.722-.722.308.308c.168.168.261.395.261.636s-.093.468-.261.636z" + }, + "children": [] + }] +}; +exports.link = link; \ No newline at end of file diff --git a/dist/typicons/linkOutline.js b/dist/typicons/linkOutline.js new file mode 100644 index 000000000..77484d723 --- /dev/null +++ b/dist/typicons/linkOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.linkOutline = void 0; +var linkOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M17.5 5.999c.282 0 .562.106.777.321.431.431.431 1.127 0 1.557l-1.72 1.723.307.308c.585.584.906 1.362.906 2.192s-.321 1.607-.906 2.191l-4.172 4.172c-.584.584-1.361.906-2.191.906s-1.607-.322-2.191-.906l-.31-.309-1.723 1.723c-.215.215-.495.322-.777.322s-.562-.107-.777-.322c-.431-.43-.431-1.126 0-1.557l1.72-1.72-.308-.309c-.583-.584-.905-1.361-.905-2.191s.321-1.608.905-2.192l4.173-4.173c.584-.584 1.387-.875 2.191-.875s1.607.291 2.191.875l.31.308 1.723-1.723c.215-.215.495-.321.777-.321m0-2c-.828 0-1.605.321-2.191.908l-.492.491c-.707-.351-1.504-.539-2.316-.539-1.363 0-2.677.533-3.605 1.461l-4.172 4.173c-.964.962-1.494 2.241-1.494 3.607 0 .822.192 1.616.558 2.327l-.479.48c-.586.585-.909 1.364-.909 2.193 0 .827.322 1.605.908 2.191.584.586 1.363.908 2.191.908s1.605-.322 2.191-.908l.48-.48c.711.365 1.504.559 2.328.559 1.363 0 2.645-.53 3.605-1.492l4.172-4.172c.963-.962 1.492-2.242 1.492-3.605 0-.824-.192-1.617-.558-2.328l.479-.48c.589-.587.912-1.366.912-2.193 0-.828-.322-1.606-.908-2.192-.587-.588-1.364-.909-2.192-.909zM11.4 11.168c.017.535.233 1.036.613 1.416.381.38.881.598 1.416.614l-1.832 1.831c-.017-.534-.234-1.035-.613-1.415-.381-.38-.881-.597-1.416-.614l1.832-1.832m1.1-2.139c-.242 0-.468.094-.637.262l-4.172 4.172c-.168.168-.26.395-.26.637 0 .24.092.467.26.635l.309.308.723-.723c.215-.215.495-.321.777-.321s.562.106.777.321c.431.431.431 1.127 0 1.557l-.72.723.308.308c.168.168.401.253.636.253s.468-.084.637-.253l4.172-4.173c.168-.168.26-.395.26-.635 0-.242-.092-.469-.26-.637l-.31-.309-.723.723c-.215.215-.495.322-.777.322s-.562-.107-.777-.322c-.431-.43-.431-1.126 0-1.557l.72-.72-.307-.309c-.169-.168-.395-.262-.636-.262z" + }, + "children": [] + }] +}; +exports.linkOutline = linkOutline; \ No newline at end of file diff --git a/dist/typicons/location.js b/dist/typicons/location.js new file mode 100644 index 000000000..6907c84e0 --- /dev/null +++ b/dist/typicons/location.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.location = void 0; +var location = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M17.657 5.304c-3.124-3.073-8.189-3.073-11.313 0-3.124 3.074-3.124 8.057 0 11.13l5.656 5.565 5.657-5.565c3.124-3.073 3.124-8.056 0-11.13zm-5.657 8.195c-.668 0-1.295-.26-1.768-.732-.975-.975-.975-2.561 0-3.536.472-.472 1.1-.732 1.768-.732s1.296.26 1.768.732c.975.975.975 2.562 0 3.536-.472.472-1.1.732-1.768.732z" + }, + "children": [] + }] +}; +exports.location = location; \ No newline at end of file diff --git a/dist/typicons/locationArrow.js b/dist/typicons/locationArrow.js new file mode 100644 index 000000000..09db67caf --- /dev/null +++ b/dist/typicons/locationArrow.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.locationArrow = void 0; +var locationArrow = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M10.368 19.102c.349 1.049 1.011 1.086 1.478.086l5.309-11.375c.467-1.002.034-1.434-.967-.967l-11.376 5.308c-1.001.467-.963 1.129.085 1.479l4.103 1.367 1.368 4.102z" + }, + "children": [] + }] +}; +exports.locationArrow = locationArrow; \ No newline at end of file diff --git a/dist/typicons/locationArrowOutline.js b/dist/typicons/locationArrowOutline.js new file mode 100644 index 000000000..801402876 --- /dev/null +++ b/dist/typicons/locationArrowOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.locationArrowOutline = void 0; +var locationArrowOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M11.087 20.914c-.353 0-1.219-.146-1.668-1.496l-1.209-3.627-3.628-1.209c-1.244-.415-1.469-1.172-1.493-1.587s.114-1.193 1.302-1.747l11.375-5.309c1.031-.479 1.922-.309 2.348.362.224.351.396.97-.053 1.933l-5.309 11.375c-.529 1.135-1.272 1.305-1.665 1.305zm-5.39-8.068l4.094 1.363 1.365 4.093 4.775-10.233-10.234 4.777z" + }, + "children": [] + }] +}; +exports.locationArrowOutline = locationArrowOutline; \ No newline at end of file diff --git a/dist/typicons/locationOutline.js b/dist/typicons/locationOutline.js new file mode 100644 index 000000000..0739e093e --- /dev/null +++ b/dist/typicons/locationOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.locationOutline = void 0; +var locationOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 5c1.609 0 3.12.614 4.254 1.73 1.126 1.107 1.746 2.579 1.746 4.14s-.62 3.03-1.745 4.139l-4.255 4.184-4.254-4.186c-1.125-1.107-1.745-2.576-1.745-4.139s.62-3.032 1.745-4.141c1.135-1.113 2.647-1.727 4.254-1.727m0-2c-2.047 0-4.096.768-5.657 2.305-3.124 3.074-3.124 8.057 0 11.131l5.657 5.563 5.657-5.565c3.124-3.072 3.124-8.056 0-11.129-1.561-1.537-3.609-2.305-5.657-2.305zM12 8.499c.668 0 1.296.26 1.768.731.976.976.976 2.562 0 3.537-.473.472-1.1.731-1.768.731s-1.295-.26-1.768-.731c-.976-.976-.976-2.562 0-3.537.473-.471 1.101-.731 1.768-.731m0-1c-.896 0-1.792.342-2.475 1.024-1.367 1.367-1.367 3.584 0 4.951.684.684 1.578 1.024 2.475 1.024s1.792-.342 2.475-1.024c1.366-1.367 1.366-3.584 0-4.951-.683-.683-1.579-1.024-2.475-1.024z" + }, + "children": [] + }] +}; +exports.locationOutline = locationOutline; \ No newline at end of file diff --git a/dist/typicons/lockClosed.js b/dist/typicons/lockClosed.js new file mode 100644 index 000000000..2ae2907bf --- /dev/null +++ b/dist/typicons/lockClosed.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.lockClosed = void 0; +var lockClosed = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M17 10h-1v-2c0-2.205-1.794-4-4-4s-4 1.795-4 4v2h-1c-1.103 0-2 .896-2 2v7c0 1.104.897 2 2 2h10c1.103 0 2-.896 2-2v-7c0-1.104-.897-2-2-2zm-5 8.299c-.719 0-1.3-.58-1.3-1.299s.581-1.301 1.3-1.301 1.3.582 1.3 1.301-.581 1.299-1.3 1.299zm2-7.299h-4v-3c0-1.104.897-2 2-2s2 .896 2 2v3z" + }, + "children": [] + }] +}; +exports.lockClosed = lockClosed; \ No newline at end of file diff --git a/dist/typicons/lockClosedOutline.js b/dist/typicons/lockClosedOutline.js new file mode 100644 index 000000000..6e00210b4 --- /dev/null +++ b/dist/typicons/lockClosedOutline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.lockClosedOutline = void 0; +var lockClosedOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "17", + "r": "1.3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M17 10h-1v-2c0-2.206-1.794-4-4-4s-4 1.794-4 4v2h-1c-1.104 0-2 .896-2 2v7c0 1.104.896 2 2 2h10c1.104 0 2-.896 2-2v-7c0-1.104-.896-2-2-2zm-7-2c0-1.104.896-2 2-2s2 .896 2 2v3h-4v-3zm7 11h-10v-7h10.003l-.003 7z" + }, + "children": [] + }] +}; +exports.lockClosedOutline = lockClosedOutline; \ No newline at end of file diff --git a/dist/typicons/lockOpen.js b/dist/typicons/lockOpen.js new file mode 100644 index 000000000..f0e8333c8 --- /dev/null +++ b/dist/typicons/lockOpen.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.lockOpen = void 0; +var lockOpen = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18 4c-2.206 0-4 1.795-4 4v3h-4v-1h-3c-1.103 0-2 .896-2 2v7c0 1.104.897 2 2 2h10c1.103 0 2-.896 2-2v-7c0-1.104-.897-2-2-2h-1v-2c0-1.104.897-2 2-2s2 .896 2 2v3c0 .553.448 1 1 1s1-.447 1-1v-3c0-2.205-1.794-4-4-4zm-6 14.299c-.719 0-1.3-.58-1.3-1.299s.581-1.301 1.3-1.301 1.3.582 1.3 1.301-.581 1.299-1.3 1.299z" + }, + "children": [] + }] +}; +exports.lockOpen = lockOpen; \ No newline at end of file diff --git a/dist/typicons/lockOpenOutline.js b/dist/typicons/lockOpenOutline.js new file mode 100644 index 000000000..c132bee47 --- /dev/null +++ b/dist/typicons/lockOpenOutline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.lockOpenOutline = void 0; +var lockOpenOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "12", + "cy": "17", + "r": "1.3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M18 4c-2.206 0-4 1.794-4 4v3h-4v-1h-3c-1.104 0-2 .896-2 2v7c0 1.104.896 2 2 2h10c1.104 0 2-.896 2-2v-7c0-1.104-.896-2-2-2h-1v-2c0-1.104.896-2 2-2s2 .896 2 2v3c0 .552.448 1 1 1s1-.448 1-1v-3c0-2.206-1.794-4-4-4zm-1 15h-10v-7h10.003l-.003 7z" + }, + "children": [] + }] +}; +exports.lockOpenOutline = lockOpenOutline; \ No newline at end of file diff --git a/dist/typicons/mail.js b/dist/typicons/mail.js new file mode 100644 index 000000000..509ba57c3 --- /dev/null +++ b/dist/typicons/mail.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.mail = void 0; +var mail = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M19 7h-14c-1.104 0-2 .896-2 2v9c0 1.104.896 2 2 2h14c1.104 0 2-.896 2-2v-9c0-1.104-.896-2-2-2zm-9.684 7.316l1.602 1.4c.305.266.691.398 1.082.398s.777-.133 1.082-.398l1.602-1.4-.037.037 3.646 3.646h-12.586l3.646-3.646-.037-.037zm-4.316 2.977v-6.753l3.602 3.151-3.602 3.602zm10.398-3.602l3.602-3.151v6.75l-3.602-3.599zm3.602-4.691v.21l-6.576 5.754c-.227.198-.621.198-.848 0l-6.576-5.754v-.21h14z" + }, + "children": [] + }] +}; +exports.mail = mail; \ No newline at end of file diff --git a/dist/typicons/map.js b/dist/typicons/map.js new file mode 100644 index 000000000..33f44127f --- /dev/null +++ b/dist/typicons/map.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.map = void 0; +var map = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M20.383 3.076c-.373-.155-.804-.069-1.09.217l-3.867 3.867-4.301-3.441c-.396-.316-.973-.287-1.332.074l-4.5 4.5c-.188.187-.293.441-.293.707v10c0 .404.243.77.617.924.124.053.254.076.383.076.26 0 .516-.102.707-.293l3.867-3.867 4.301 3.441c.396.316.971.285 1.332-.074l4.5-4.5c.188-.187.293-.441.293-.707v-10c0-.404-.243-.77-.617-.924zm-13.383 13.51v-7.172l3-3v7.24c-.07.043-3 2.932-3 2.932zm4.125-2.867l-.125-.068v-7.469s3.959 3.143 4 3.166v7.473l-3.875-3.102zm7.875-.133l-3 3v-7.236c.07-.043 3-2.936 3-2.936v7.172z" + }, + "children": [] + }] +}; +exports.map = map; \ No newline at end of file diff --git a/dist/typicons/mediaEject.js b/dist/typicons/mediaEject.js new file mode 100644 index 000000000..57b87d564 --- /dev/null +++ b/dist/typicons/mediaEject.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.mediaEject = void 0; +var mediaEject = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M17 16h-10c-1.104 0-2 .895-2 2 0 1.104.896 2 2 2h10c1.104 0 2-.896 2-2 0-1.105-.896-2-2-2zM18.433 10.604c-2.574-2.641-6.433-6.604-6.433-6.604s-3.859 3.963-6.433 6.604c-.349.363-.567.853-.567 1.396 0 1.104.896 2 2 2h10c1.104 0 2-.896 2-2 0-.543-.218-1.033-.567-1.396z" + }, + "children": [] + }] +}; +exports.mediaEject = mediaEject; \ No newline at end of file diff --git a/dist/typicons/mediaEjectOutline.js b/dist/typicons/mediaEjectOutline.js new file mode 100644 index 000000000..faa29a7fc --- /dev/null +++ b/dist/typicons/mediaEjectOutline.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.mediaEjectOutline = void 0; +var mediaEjectOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M16 21h-8c-1.654 0-3-1.346-3-3s1.346-3 3-3h8c1.654 0 3 1.346 3 3s-1.346 3-3 3zm-8-4c-.551 0-1 .448-1 1s.449 1 1 1h8c.551 0 1-.448 1-1s-.449-1-1-1h-8zM12 6.866l4.964 5.096.036.038-10 .004.08-.087 4.92-5.051m0-2.866s-3.859 3.963-6.433 6.604c-.349.363-.567.853-.567 1.396 0 1.104.896 2 2 2h10c1.104 0 2-.896 2-2 0-.543-.218-1.033-.568-1.393-2.573-2.644-6.432-6.607-6.432-6.607z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M16 21h-8c-1.654 0-3-1.346-3-3s1.346-3 3-3h8c1.654 0 3 1.346 3 3s-1.346 3-3 3zm-8-4c-.551 0-1 .448-1 1s.449 1 1 1h8c.551 0 1-.448 1-1s-.449-1-1-1h-8zM12 6.866l4.964 5.096.036.038-10 .004.08-.087 4.92-5.051m0-2.866s-3.859 3.963-6.433 6.604c-.349.363-.567.853-.567 1.396 0 1.104.896 2 2 2h10c1.104 0 2-.896 2-2 0-.543-.218-1.033-.568-1.393-2.573-2.644-6.432-6.607-6.432-6.607z" + }, + "children": [] + }] + }] + }] +}; +exports.mediaEjectOutline = mediaEjectOutline; \ No newline at end of file diff --git a/dist/typicons/mediaFastForward.js b/dist/typicons/mediaFastForward.js new file mode 100644 index 000000000..4b22215ea --- /dev/null +++ b/dist/typicons/mediaFastForward.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.mediaFastForward = void 0; +var mediaFastForward = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M15.053 6.912c-.324-.314-.765-.512-1.253-.512-.994 0-1.8.807-1.8 1.801v9c0 .994.806 1.799 1.8 1.799.488 0 .93-.195 1.253-.512 2.381-2.314 5.947-5.787 5.947-5.787s-3.566-3.474-5.947-5.789zM6.053 6.912c-.324-.314-.765-.512-1.253-.512-.994 0-1.8.807-1.8 1.801v9c0 .994.806 1.799 1.8 1.799.488 0 .93-.195 1.253-.512 2.381-2.314 5.947-5.787 5.947-5.787s-3.566-3.474-5.947-5.789z" + }, + "children": [] + }] +}; +exports.mediaFastForward = mediaFastForward; \ No newline at end of file diff --git a/dist/typicons/mediaFastForwardOutline.js b/dist/typicons/mediaFastForwardOutline.js new file mode 100644 index 000000000..3d497f605 --- /dev/null +++ b/dist/typicons/mediaFastForwardOutline.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.mediaFastForwardOutline = void 0; +var mediaFastForwardOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M14 8.676l4.133 4.025-4.133 4.026v-8.051m-.2-2.276c-.994 0-1.8.807-1.8 1.801v9c0 .994.806 1.799 1.8 1.799.488 0 .93-.195 1.253-.512 2.381-2.314 5.947-5.787 5.947-5.787s-3.566-3.475-5.944-5.789c-.327-.314-.768-.512-1.256-.512zM5 8.676l4.133 4.025-4.133 4.026v-8.051m-.2-2.276c-.994 0-1.8.807-1.8 1.801v9c0 .994.806 1.799 1.8 1.799.488 0 .93-.195 1.253-.512 2.381-2.314 5.947-5.787 5.947-5.787s-3.566-3.474-5.944-5.789c-.327-.314-.768-.512-1.256-.512z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14 8.676l4.133 4.025-4.133 4.026v-8.051m-.2-2.276c-.994 0-1.8.807-1.8 1.801v9c0 .994.806 1.799 1.8 1.799.488 0 .93-.195 1.253-.512 2.381-2.314 5.947-5.787 5.947-5.787s-3.566-3.475-5.944-5.789c-.327-.314-.768-.512-1.256-.512zM5 8.676l4.133 4.025-4.133 4.026v-8.051m-.2-2.276c-.994 0-1.8.807-1.8 1.801v9c0 .994.806 1.799 1.8 1.799.488 0 .93-.195 1.253-.512 2.381-2.314 5.947-5.787 5.947-5.787s-3.566-3.474-5.944-5.789c-.327-.314-.768-.512-1.256-.512z" + }, + "children": [] + }] + }] + }] +}; +exports.mediaFastForwardOutline = mediaFastForwardOutline; \ No newline at end of file diff --git a/dist/typicons/mediaPause.js b/dist/typicons/mediaPause.js new file mode 100644 index 000000000..f344af888 --- /dev/null +++ b/dist/typicons/mediaPause.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.mediaPause = void 0; +var mediaPause = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M8 6c-1.104 0-2 .896-2 2v8c0 1.104.896 2 2 2s2-.896 2-2v-8c0-1.104-.896-2-2-2zM15 6c-1.104 0-2 .896-2 2v8c0 1.104.896 2 2 2s2-.896 2-2v-8c0-1.104-.896-2-2-2z" + }, + "children": [] + }] +}; +exports.mediaPause = mediaPause; \ No newline at end of file diff --git a/dist/typicons/mediaPauseOutline.js b/dist/typicons/mediaPauseOutline.js new file mode 100644 index 000000000..4bd8f0ec0 --- /dev/null +++ b/dist/typicons/mediaPauseOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.mediaPauseOutline = void 0; +var mediaPauseOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M8 20c-1.654 0-3-1.346-3-3v-9c0-1.654 1.346-3 3-3s3 1.346 3 3v9c0 1.654-1.346 3-3 3zm0-13c-.552 0-1 .449-1 1v9c0 .551.448 1 1 1s1-.449 1-1v-9c0-.551-.448-1-1-1zM15 20c-1.654 0-3-1.346-3-3v-9c0-1.654 1.346-3 3-3s3 1.346 3 3v9c0 1.654-1.346 3-3 3zm0-13c-.552 0-1 .449-1 1v9c0 .551.448 1 1 1s1-.449 1-1v-9c0-.551-.448-1-1-1z" + }, + "children": [] + }] +}; +exports.mediaPauseOutline = mediaPauseOutline; \ No newline at end of file diff --git a/dist/typicons/mediaPlay.js b/dist/typicons/mediaPlay.js new file mode 100644 index 000000000..253246a77 --- /dev/null +++ b/dist/typicons/mediaPlay.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.mediaPlay = void 0; +var mediaPlay = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M10.396 18.433c2.641-2.574 6.604-6.433 6.604-6.433s-3.963-3.859-6.604-6.433c-.363-.349-.853-.567-1.396-.567-1.104 0-2 .896-2 2v10c0 1.104.896 2 2 2 .543 0 1.033-.218 1.396-.567z" + }, + "children": [] + }] +}; +exports.mediaPlay = mediaPlay; \ No newline at end of file diff --git a/dist/typicons/mediaPlayOutline.js b/dist/typicons/mediaPlayOutline.js new file mode 100644 index 000000000..95416b19a --- /dev/null +++ b/dist/typicons/mediaPlayOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.mediaPlayOutline = void 0; +var mediaPlayOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M8.998 7.002l.085.078 5.051 4.92-5.096 4.964-.038.036-.002-9.998m.002-2.002c-1.104 0-2 .896-2 2v10c0 1.104.896 2 2 2 .543 0 1.033-.218 1.393-.568 2.644-2.573 6.607-6.432 6.607-6.432s-3.963-3.859-6.604-6.433c-.363-.349-.853-.567-1.396-.567z" + }, + "children": [] + }] +}; +exports.mediaPlayOutline = mediaPlayOutline; \ No newline at end of file diff --git a/dist/typicons/mediaPlayReverse.js b/dist/typicons/mediaPlayReverse.js new file mode 100644 index 000000000..693d1fc64 --- /dev/null +++ b/dist/typicons/mediaPlayReverse.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.mediaPlayReverse = void 0; +var mediaPlayReverse = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M14 19c1.1 0 2-.9 2-2v-10c0-1.1-.9-2-2-2-.5 0-1 .2-1.4.6-2.6 2.5-6.6 6.4-6.6 6.4s4 3.9 6.6 6.4c.4.4.9.6 1.4.6z" + }, + "children": [] + }] +}; +exports.mediaPlayReverse = mediaPlayReverse; \ No newline at end of file diff --git a/dist/typicons/mediaPlayReverseOutline.js b/dist/typicons/mediaPlayReverseOutline.js new file mode 100644 index 000000000..2bce95fe0 --- /dev/null +++ b/dist/typicons/mediaPlayReverseOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.mediaPlayReverseOutline = void 0; +var mediaPlayReverseOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M14 7v10l-5.1-5 5.1-5m-1.4-1.4c-2.6 2.5-6.6 6.4-6.6 6.4s4 3.9 6.6 6.4c.4.4.9.6 1.4.6 1.1 0 2-.9 2-2v-10c0-1.1-.9-2-2-2-.5 0-1 .2-1.4.6z" + }, + "children": [] + }] +}; +exports.mediaPlayReverseOutline = mediaPlayReverseOutline; \ No newline at end of file diff --git a/dist/typicons/mediaRecord.js b/dist/typicons/mediaRecord.js new file mode 100644 index 000000000..6b013b58b --- /dev/null +++ b/dist/typicons/mediaRecord.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.mediaRecord = void 0; +var mediaRecord = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18 12c0-1.657-.672-3.157-1.757-4.243-1.086-1.085-2.586-1.757-4.243-1.757-1.656 0-3.156.672-4.242 1.757-1.086 1.086-1.758 2.586-1.758 4.243 0 1.656.672 3.156 1.758 4.242s2.586 1.758 4.242 1.758c1.657 0 3.157-.672 4.243-1.758 1.085-1.086 1.757-2.586 1.757-4.242z" + }, + "children": [] + }] +}; +exports.mediaRecord = mediaRecord; \ No newline at end of file diff --git a/dist/typicons/mediaRecordOutline.js b/dist/typicons/mediaRecordOutline.js new file mode 100644 index 000000000..1860e92d4 --- /dev/null +++ b/dist/typicons/mediaRecordOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.mediaRecordOutline = void 0; +var mediaRecordOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 8c2.205 0 4 1.794 4 4s-1.795 4-4 4-4-1.794-4-4 1.795-4 4-4m0-2c-3.314 0-6 2.686-6 6 0 3.312 2.686 6 6 6 3.312 0 6-2.688 6-6 0-3.314-2.688-6-6-6z" + }, + "children": [] + }] +}; +exports.mediaRecordOutline = mediaRecordOutline; \ No newline at end of file diff --git a/dist/typicons/mediaRewind.js b/dist/typicons/mediaRewind.js new file mode 100644 index 000000000..02aa297d9 --- /dev/null +++ b/dist/typicons/mediaRewind.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.mediaRewind = void 0; +var mediaRewind = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M10.2 6.4c-.488 0-.931.197-1.253.512-2.381 2.315-5.947 5.789-5.947 5.789l5.944 5.789c.326.315.768.51 1.256.51.994 0 1.8-.805 1.8-1.799v-9c0-.994-.806-1.801-1.8-1.801zM19.2 6.4c-.488 0-.931.197-1.253.512-2.381 2.315-5.947 5.789-5.947 5.789l5.944 5.789c.326.315.768.51 1.256.51.994 0 1.8-.805 1.8-1.799v-9c0-.994-.806-1.801-1.8-1.801z" + }, + "children": [] + }] +}; +exports.mediaRewind = mediaRewind; \ No newline at end of file diff --git a/dist/typicons/mediaRewindOutline.js b/dist/typicons/mediaRewindOutline.js new file mode 100644 index 000000000..22e546ef7 --- /dev/null +++ b/dist/typicons/mediaRewindOutline.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.mediaRewindOutline = void 0; +var mediaRewindOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M10 8.676v8.05l-4.133-4.025 4.133-4.025m.2-2.276c-.488 0-.931.197-1.253.512-2.381 2.315-5.947 5.789-5.947 5.789l5.944 5.789c.326.315.768.51 1.256.51.994 0 1.8-.805 1.8-1.799v-9c0-.994-.806-1.801-1.8-1.801zM19 8.676v8.051l-4.133-4.025 4.133-4.026m.2-2.276c-.488 0-.931.197-1.253.512-2.381 2.315-5.947 5.789-5.947 5.789l5.944 5.789c.326.315.768.51 1.256.51.994 0 1.8-.805 1.8-1.799v-9c0-.994-.806-1.801-1.8-1.801z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M10 8.676v8.05l-4.133-4.025 4.133-4.025m.2-2.276c-.488 0-.931.197-1.253.512-2.381 2.315-5.947 5.789-5.947 5.789l5.944 5.789c.326.315.768.51 1.256.51.994 0 1.8-.805 1.8-1.799v-9c0-.994-.806-1.801-1.8-1.801zM19 8.676v8.051l-4.133-4.025 4.133-4.026m.2-2.276c-.488 0-.931.197-1.253.512-2.381 2.315-5.947 5.789-5.947 5.789l5.944 5.789c.326.315.768.51 1.256.51.994 0 1.8-.805 1.8-1.799v-9c0-.994-.806-1.801-1.8-1.801z" + }, + "children": [] + }] + }] + }] +}; +exports.mediaRewindOutline = mediaRewindOutline; \ No newline at end of file diff --git a/dist/typicons/mediaStop.js b/dist/typicons/mediaStop.js new file mode 100644 index 000000000..ecbbde3c5 --- /dev/null +++ b/dist/typicons/mediaStop.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.mediaStop = void 0; +var mediaStop = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M16 6h-8c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2v-8c0-1.1-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.mediaStop = mediaStop; \ No newline at end of file diff --git a/dist/typicons/mediaStopOutline.js b/dist/typicons/mediaStopOutline.js new file mode 100644 index 000000000..2849ac7ff --- /dev/null +++ b/dist/typicons/mediaStopOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.mediaStopOutline = void 0; +var mediaStopOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M16 8v8h-8v-8h8m0-2h-8c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2v-8c0-1.1-.9-2-2-2z" + }, + "children": [] + }] +}; +exports.mediaStopOutline = mediaStopOutline; \ No newline at end of file diff --git a/dist/typicons/message.js b/dist/typicons/message.js new file mode 100644 index 000000000..26843abcc --- /dev/null +++ b/dist/typicons/message.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.message = void 0; +var message = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18 7c.542 0 1 .458 1 1v7c0 .542-.458 1-1 1h-8.829l-.171.171v-.171h-3c-.542 0-1-.458-1-1v-7c0-.542.458-1 1-1h12m0-2h-12c-1.65 0-3 1.35-3 3v7c0 1.65 1.35 3 3 3h1v3l3-3h8c1.65 0 3-1.35 3-3v-7c0-1.65-1.35-3-3-3z" + }, + "children": [] + }] +}; +exports.message = message; \ No newline at end of file diff --git a/dist/typicons/messageTyping.js b/dist/typicons/messageTyping.js new file mode 100644 index 000000000..4847ecd35 --- /dev/null +++ b/dist/typicons/messageTyping.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.messageTyping = void 0; +var messageTyping = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18 6h-13c-1.65 0-3 1.35-3 3v7c0 1.65 1.35 3 3 3h1v3l3-3h9c1.65 0 3-1.35 3-3v-7c0-1.65-1.35-3-3-3zm1 10c0 .542-.458 1-1 1h-13c-.542 0-1-.458-1-1v-7c0-.542.458-1 1-1h13c.542 0 1 .458 1 1v7zM7 14.5c-1.104 0-2-.896-2-2s.896-2 2-2 2 .896 2 2-.896 2-2 2zm0-3c-.552 0-1 .448-1 1s.448 1 1 1 1-.448 1-1-.448-1-1-1zM11.5 14.5c-1.104 0-2-.896-2-2s.896-2 2-2 2 .896 2 2-.896 2-2 2zm0-3c-.552 0-1 .448-1 1s.448 1 1 1 1-.448 1-1-.448-1-1-1zM16 14.5c-1.104 0-2-.896-2-2s.896-2 2-2 2 .896 2 2-.896 2-2 2zm0-3c-.552 0-1 .448-1 1s.448 1 1 1 1-.448 1-1-.448-1-1-1z" + }, + "children": [] + }] +}; +exports.messageTyping = messageTyping; \ No newline at end of file diff --git a/dist/typicons/messages.js b/dist/typicons/messages.js new file mode 100644 index 000000000..4ccfea17b --- /dev/null +++ b/dist/typicons/messages.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.messages = void 0; +var messages = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M21 7h-3c0-1.65-1.35-3-3-3h-12c-1.65 0-3 1.35-3 3v7c0 1.65 1.35 3 3 3v3l3-3c0 1.65 1.35 3 3 3h8l3 3v-3h1c1.65 0 3-1.35 3-3v-7c0-1.65-1.35-3-3-3zm-18 8c-.542 0-1-.458-1-1v-7c0-.542.458-1 1-1h12c.542 0 1 .458 1 1v1h-6.5c-1.379 0-2.5 1.121-2.5 2.5v4.5h-4zm19 2c0 .542-.458 1-1 1h-12c-.542 0-1-.458-1-1v-6.5c0-.827.673-1.5 1.5-1.5h11.5c.542 0 1 .458 1 1v7z" + }, + "children": [] + }] +}; +exports.messages = messages; \ No newline at end of file diff --git a/dist/typicons/microphone.js b/dist/typicons/microphone.js new file mode 100644 index 000000000..dfc2e6e6d --- /dev/null +++ b/dist/typicons/microphone.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.microphone = void 0; +var microphone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 16c2.206 0 4-1.795 4-4v-6c0-2.206-1.794-4-4-4s-4 1.794-4 4v6c0 2.205 1.794 4 4 4zM19 12v-2c0-.552-.447-1-1-1s-1 .448-1 1v2c0 2.757-2.243 5-5 5s-5-2.243-5-5v-2c0-.552-.447-1-1-1s-1 .448-1 1v2c0 3.52 2.613 6.432 6 6.92v1.08h-3c-.553 0-1 .447-1 1s.447 1 1 1h8c.553 0 1-.447 1-1s-.447-1-1-1h-3v-1.08c3.387-.488 6-3.4 6-6.92z" + }, + "children": [] + }] +}; +exports.microphone = microphone; \ No newline at end of file diff --git a/dist/typicons/microphoneOutline.js b/dist/typicons/microphoneOutline.js new file mode 100644 index 000000000..279986826 --- /dev/null +++ b/dist/typicons/microphoneOutline.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.microphoneOutline = void 0; +var microphoneOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12 16c-2.206 0-4-1.795-4-4v-6c0-2.205 1.794-4 4-4s4 1.795 4 4v6c0 2.205-1.794 4-4 4zm0-12c-1.103 0-2 .896-2 2v6c0 1.104.897 2 2 2s2-.896 2-2v-6c0-1.104-.897-2-2-2zM19 12v-2c0-.553-.447-1-1-1s-1 .447-1 1v2c0 2.757-2.243 5-5 5s-5-2.243-5-5v-2c0-.553-.447-1-1-1s-1 .447-1 1v2c0 3.52 2.613 6.432 6 6.92v1.08h-3c-.553 0-1 .447-1 1s.447 1 1 1h8c.553 0 1-.447 1-1s-.447-1-1-1h-3v-1.08c3.387-.488 6-3.4 6-6.92z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12 16c-2.206 0-4-1.795-4-4v-6c0-2.205 1.794-4 4-4s4 1.795 4 4v6c0 2.205-1.794 4-4 4zm0-12c-1.103 0-2 .896-2 2v6c0 1.104.897 2 2 2s2-.896 2-2v-6c0-1.104-.897-2-2-2zM19 12v-2c0-.553-.447-1-1-1s-1 .447-1 1v2c0 2.757-2.243 5-5 5s-5-2.243-5-5v-2c0-.553-.447-1-1-1s-1 .447-1 1v2c0 3.52 2.613 6.432 6 6.92v1.08h-3c-.553 0-1 .447-1 1s.447 1 1 1h8c.553 0 1-.447 1-1s-.447-1-1-1h-3v-1.08c3.387-.488 6-3.4 6-6.92z" + }, + "children": [] + }] + }] + }] +}; +exports.microphoneOutline = microphoneOutline; \ No newline at end of file diff --git a/dist/typicons/minus.js b/dist/typicons/minus.js new file mode 100644 index 000000000..bf74a2dd3 --- /dev/null +++ b/dist/typicons/minus.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.minus = void 0; +var minus = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18 11h-12c-1.104 0-2 .896-2 2s.896 2 2 2h12c1.104 0 2-.896 2-2s-.896-2-2-2z" + }, + "children": [] + }] +}; +exports.minus = minus; \ No newline at end of file diff --git a/dist/typicons/minusOutline.js b/dist/typicons/minusOutline.js new file mode 100644 index 000000000..1cf6fb95e --- /dev/null +++ b/dist/typicons/minusOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.minusOutline = void 0; +var minusOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18 16h-12c-1.654 0-3-1.346-3-3s1.346-3 3-3h12c1.654 0 3 1.346 3 3s-1.346 3-3 3zm-12-4c-.551 0-1 .449-1 1s.449 1 1 1h12c.551 0 1-.449 1-1s-.449-1-1-1h-12z" + }, + "children": [] + }] +}; +exports.minusOutline = minusOutline; \ No newline at end of file diff --git a/dist/typicons/mortarBoard.js b/dist/typicons/mortarBoard.js new file mode 100644 index 000000000..f8688c4c8 --- /dev/null +++ b/dist/typicons/mortarBoard.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.mortarBoard = void 0; +var mortarBoard = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M20.5 7.9s-5.8-2.9-6.9-3.5-1.7-.7-3 0c-1.3.6-6.7 3.3-6.7 3.3-.8.4-1.5 1.2-1.5 2s.2 1.2.2 1.2-.1.3-.3 1.5c-.3 1.2-.3 2.7-.3 3.3 0 1.5 1.3 2.6 2.2 2.7.9.1 1.6-.1 1.6-.1 1.4 1.3 3.7 2.1 6.4 2.1 4.4 0 7.8-2.2 7.8-5 0-1.1-.4-2.7-.4-2.7l1.1-.6c.9-.5 1.3-1.4 1.3-2.3-.1-.8-.6-1.5-1.5-1.9zm-8.2 10.4c-3.2 0-5.8-1.3-5.8-3l.5-2.8 4.2 2.1c.6.3 1.5.3 2.2 0l4.3-2.1.4 2.8c0 1.6-2.5 3-5.8 3zm7.3-8.1l-6.6 3.4c-.4.2-1 .2-1.4 0l-5.7-2.9c-.2.5-.3 1.2-.3 2 0 1.4.2 2.4.2 2.9s-.3.8-.7.8h-.1c-.4 0-.8-.3-.8-.8s0-1.6.3-3.1c.2-.9.4-1.7.6-2.2l-.2-.1c-.4-.2-.4-.5 0-.7l6.7-3.4c.4-.2.9-.2 1.3 0s6.7 3.4 6.7 3.4c.4.2.4.5 0 .7z" + }, + "children": [] + }] +}; +exports.mortarBoard = mortarBoard; \ No newline at end of file diff --git a/dist/typicons/news.js b/dist/typicons/news.js new file mode 100644 index 000000000..d416da319 --- /dev/null +++ b/dist/typicons/news.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.news = void 0; +var news = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M21 4h-18c-1.104 0-2 .896-2 2v12c0 1.104.896 2 2 2h18c1.104 0 2-.896 2-2v-12c0-1.104-.896-2-2-2zm-18 2h8v12h-8v-12zm18 12h-9v-12h9.003l-.003 12zM20 13.5c0-.275-.225-.5-.5-.5h-1c-.275 0-.5.225-.5.5v3c0 .275.225.5.5.5h1c.275 0 .5-.225.5-.5v-3zM17 7.5c0-.275-.225-.5-.5-.5h-3c-.275 0-.5.225-.5.5v5c0 .275.225.5.5.5h3c.275 0 .5-.225.5-.5v-5zM18.5 10h1c.275 0 .5-.225.5-.5s-.225-.5-.5-.5h-1c-.275 0-.5.225-.5.5s.225.5.5.5zM18.5 12h1c.275 0 .5-.225.5-.5s-.225-.5-.5-.5h-1c-.275 0-.5.225-.5.5s.225.5.5.5zM13.5 15h3c.275 0 .5-.225.5-.5s-.225-.5-.5-.5h-3c-.275 0-.5.225-.5.5s.225.5.5.5zM16.5 16h-3c-.275 0-.5.225-.5.5s.225.5.5.5h3c.275 0 .5-.225.5-.5s-.225-.5-.5-.5zM18.5 8h1c.275 0 .5-.225.5-.5s-.225-.5-.5-.5h-1c-.275 0-.5.225-.5.5s.225.5.5.5zM10 7.5c0-.275-.225-.5-.5-.5h-5c-.275 0-.5.225-.5.5v3c0 .275.225.5.5.5h5c.275 0 .5-.225.5-.5v-3zM9.501 14h-5c-.274 0-.5.225-.5.5s.226.5.5.5h5c.274 0 .499-.225.499-.5s-.225-.5-.499-.5zM9.501 12h-5c-.274 0-.5.225-.5.5s.226.5.5.5h5c.274 0 .499-.225.499-.5s-.225-.5-.499-.5zM9.501 16h-5c-.274 0-.5.225-.5.5s.226.5.5.5h5c.274 0 .499-.225.499-.5s-.225-.5-.499-.5z" + }, + "children": [] + }] +}; +exports.news = news; \ No newline at end of file diff --git a/dist/typicons/notes.js b/dist/typicons/notes.js new file mode 100644 index 000000000..c83fa4f1f --- /dev/null +++ b/dist/typicons/notes.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.notes = void 0; +var notes = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.831 4.059c-.107-.095-.243-.139-.394-.121l-11 1.25c-.249.031-.437.244-.437.496v10.316c-1.654 0-3 1.122-3 2.5s1.346 2.5 3 2.5 3-1.122 3-2.5v-7.609l6-.625v3.734c-1.654 0-3 1.122-3 2.5s1.346 2.5 3 2.5 3-1.122 3-2.5v-12.066c0-.144-.062-.28-.169-.375z" + }, + "children": [] + }] +}; +exports.notes = notes; \ No newline at end of file diff --git a/dist/typicons/notesOutline.js b/dist/typicons/notesOutline.js new file mode 100644 index 000000000..8d7c23972 --- /dev/null +++ b/dist/typicons/notesOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.notesOutline = void 0; +var notesOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.324 4.367c-.368-.324-.84-.5-1.324-.5l-.248.016-9 1.25c-1.001.125-1.752.975-1.752 1.984v6.111c-1.746.551-3 2.034-3 3.772 0 2.205 2.019 4 4.5 4 1.695 0 3.169-.842 3.937-2.078.803.667 1.879 1.078 3.063 1.078 2.481 0 4.5-1.795 4.5-4v-10.133c0-.574-.246-1.119-.676-1.5zm-7.324 11.633v-4.256l3-.45v1.737c-1.693.208-3 1.46-3 2.969zm6 0c0 1.104-1.119 2-2.5 2s-2.5-.896-2.5-2 1.119-2 2.5-2c.172 0 .338.014.5.041v-3.908l-5 .75v6.117c0 1.104-1.119 2-2.5 2s-2.5-.896-2.5-2 1.119-2 2.5-2c.172 0 .338.014.5.041v-7.924l9-1.25v10.133z" + }, + "children": [] + }] +}; +exports.notesOutline = notesOutline; \ No newline at end of file diff --git a/dist/typicons/pen.js b/dist/typicons/pen.js new file mode 100644 index 000000000..9ca0cfbd9 --- /dev/null +++ b/dist/typicons/pen.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pen = void 0; +var pen = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M21.329 7.207c0-1.212-.472-2.352-1.329-3.207s-1.996-1.329-3.207-1.329c-1.199 0-2.327.463-3.18 1.304-.027.025-7.967 7.964-7.967 7.964-.373.373-.717.91-.967 1.514-.195.473-1.979 5.863-2.336 6.939-.119.358-.025.754.242 1.021.189.189.445.293.707.293.105 0 .211-.018.314-.051 1.076-.355 6.465-2.141 6.938-2.336.603-.248 1.14-.592 1.515-.967l2.157-2.156.076.01c.64 0 1.28-.244 1.769-.732l4.5-4.5c.696-.695.887-1.699.588-2.572.107-.386.18-.783.18-1.195zm-11.864 10.379c-.406.143-1.145.393-2.038.691l-1.704-1.704c.301-.894.551-1.634.691-2.038l3.051 3.051zm-4.097.047l.999.999-1.498.499.499-1.498zm7.698-3.113l-2.42 2.42-.235.18-3.53-3.529.18-.234 7.131-7.131 2.731 2.731-3.69 3.69c-.513.512-.549 1.289-.167 1.873zm6.08-4.959l-4.5 4.5c-.098.099-.226.146-.354.146s-.256-.049-.354-.146c-.195-.194-.195-.512 0-.707l4.5-4.5c.194-.194.512-.194.707 0 .196.195.197.511.001.707zm.107-1.764c-.519-.168-1.108-.062-1.521.35l-.102.102-2.731-2.731.078-.078c.984-.98 2.652-.981 3.608-.023.479.479.743 1.116.743 1.793.001.199-.03.394-.075.587z" + }, + "children": [] + }] +}; +exports.pen = pen; \ No newline at end of file diff --git a/dist/typicons/pencil.js b/dist/typicons/pencil.js new file mode 100644 index 000000000..b153979e1 --- /dev/null +++ b/dist/typicons/pencil.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pencil = void 0; +var pencil = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M21 6.879l-3.879-3.879c-.293-.293-.678-.439-1.061-.439-.384 0-.767.146-1.06.439l-10.939 10.939c-.293.293-.558.727-.75 1.188-.192.463-.311.959-.311 1.373v4.5h4.5c.414 0 .908-.119 1.371-.311.463-.192.896-.457 1.189-.75l10.94-10.939c.293-.293.439-.678.439-1.061 0-.384-.146-.767-.439-1.06zm-15.232 8.182l8.293-8.293 1.232 1.232-8.293 8.293-1.232-1.232zm1.732 3.939h-1.5l-1-1v-1.5c0-.077.033-.305.158-.605.01-.02 2.967 2.938 2.967 2.938-.322.134-.548.167-.625.167zm1.439-.768l-1.232-1.232 8.293-8.293 1.232 1.232-8.293 8.293zm9-9l-3.172-3.172 1.293-1.293 3.17 3.172-1.291 1.293z" + }, + "children": [] + }] +}; +exports.pencil = pencil; \ No newline at end of file diff --git a/dist/typicons/phone.js b/dist/typicons/phone.js new file mode 100644 index 000000000..ebe49f23d --- /dev/null +++ b/dist/typicons/phone.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.phone = void 0; +var phone = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M13.374 7.083l3.711-3.71-.438-.434c-.566-.566-1.555-.566-2.121 0l-1.586 1.586c-.284.284-.44.661-.44 1.061s.156.777.438 1.06l.436.437zM6.646 12.939c-.566-.566-1.555-.566-2.121 0l-1.586 1.586c-.283.284-.439.661-.439 1.061s.156.777.441 1.062l.437.432 3.703-3.703-.435-.438zM18.437 4.729l-.354-.354-3.708 3.708.65.649c.095.095.146.22.146.354s-.052.259-.146.354l-5.586 5.586c-.189.188-.518.189-.707 0l-.65-.65-3.702 3.71.354.354c.26.26 1.246 1.105 3.056 1.105 1.616 0 4.256-.712 7.65-4.105 6.773-6.775 3.158-10.55 2.997-10.711z" + }, + "children": [] + }] +}; +exports.phone = phone; \ No newline at end of file diff --git a/dist/typicons/phoneOutline.js b/dist/typicons/phoneOutline.js new file mode 100644 index 000000000..6dc8fb209 --- /dev/null +++ b/dist/typicons/phoneOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.phoneOutline = void 0; +var phoneOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M19.502 3.672l-1.795-1.793c-.566-.567-1.32-.879-2.121-.879s-1.555.312-2.121.879l-1.586 1.586c-1.17 1.17-1.17 3.072 0 4.242l1.379 1.379-4.172 4.172-1.379-1.379c-.566-.567-1.32-.879-2.121-.879s-1.555.312-2.121.879l-1.586 1.586c-1.17 1.17-1.17 3.072 0 4.242l1.794 1.793c.465.465 1.796 1.545 4.116 1.545 2.764 0 5.694-1.529 8.711-4.545 6.245-6.246 4.825-11.002 3.002-12.828zm-6.209 1.207l1.586-1.586c.195-.195.451-.293.707-.293s.512.098.707.293l1.083 1.082-3.001 3-1.082-1.082c-.391-.391-.391-1.023 0-1.414zm-10 11.414c-.391-.391-.391-1.023 0-1.414l1.586-1.586c.195-.195.451-.293.707-.293s.512.098.707.293l1.082 1.082-2.999 3-1.083-1.082zm11.793-1.207c-3.083 3.082-5.551 3.959-7.297 3.959-1.349 0-2.267-.523-2.702-.959-.004-.004 2.995-3.004 2.995-3.004l.297.297c.195.195.451.293.707.293s.512-.098.707-.293l5.586-5.586c.391-.391.391-1.023 0-1.414l-.297-.297 3.001-3c1.003 1.004 2.467 4.539-2.997 10.004z" + }, + "children": [] + }] +}; +exports.phoneOutline = phoneOutline; \ No newline at end of file diff --git a/dist/typicons/pi.js b/dist/typicons/pi.js new file mode 100644 index 000000000..126182f56 --- /dev/null +++ b/dist/typicons/pi.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pi = void 0; +var pi = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.707 8.535c-.391-.391-1.023-.391-1.414 0-1.264 1.264-3.321 1.264-4.586 0-2.045-2.044-5.371-2.042-7.414 0-.391.391-.391 1.023 0 1.414s1.023.391 1.414 0c.374-.374.82-.624 1.293-.776v7.827c0 .553.447 1 1 1s1-.447 1-1v-7.826c.472.152.919.401 1.293.775.768.767 1.715 1.245 2.707 1.437v5.614c0 .553.447 1 1 1s1-.447 1-1v-5.614c.992-.191 1.939-.67 2.707-1.437.391-.39.391-1.023 0-1.414z" + }, + "children": [] + }] +}; +exports.pi = pi; \ No newline at end of file diff --git a/dist/typicons/piOutline.js b/dist/typicons/piOutline.js new file mode 100644 index 000000000..cac9bd2dd --- /dev/null +++ b/dist/typicons/piOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.piOutline = void 0; +var piOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M20.121 7.121c-.566-.567-1.32-.879-2.121-.879s-1.555.312-2.121.879c-.233.233-.546.362-.879.362s-.646-.129-.879-.362c-1.366-1.366-3.185-2.118-5.121-2.118s-3.755.752-5.121 2.118c-.567.567-.879 1.32-.879 2.121s.312 1.555.879 2.121c.566.567 1.32.879 2.121.879v4.758c0 1.654 1.346 3 3 3s3-1.346 3-3c0 1.654 1.346 3 3 3s3-1.346 3-3v-4.166c.784-.356 1.501-.851 2.12-1.47.568-.567.88-1.321.88-2.122s-.312-1.554-.879-2.121zm-1.414 2.828c-.768.767-1.715 1.245-2.707 1.437v5.614c0 .553-.447 1-1 1s-1-.447-1-1v-5.614c-.992-.191-1.939-.67-2.707-1.437-.374-.374-.821-.623-1.293-.775v7.826c0 .553-.447 1-1 1s-1-.447-1-1v-7.827c-.473.152-.919.402-1.293.776-.195.196-.451.293-.707.293s-.512-.098-.707-.293c-.391-.391-.391-1.023 0-1.414 1.021-1.021 2.364-1.532 3.707-1.532s2.685.511 3.707 1.532c.633.632 1.463.948 2.293.948.831 0 1.661-.316 2.293-.948.195-.195.451-.293.707-.293s.512.098.707.293c.391.391.391 1.024 0 1.414z" + }, + "children": [] + }] +}; +exports.piOutline = piOutline; \ No newline at end of file diff --git a/dist/typicons/pin.js b/dist/typicons/pin.js new file mode 100644 index 000000000..7c7e7dc68 --- /dev/null +++ b/dist/typicons/pin.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pin = void 0; +var pin = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M16.729 4.271c-.389-.391-1.021-.393-1.414-.004-.104.104-.176.227-.225.355-.832 1.736-1.748 2.715-2.904 3.293-1.297.64-2.786 1.085-5.186 1.085-.13 0-.26.025-.382.076-.245.102-.439.297-.541.541-.101.244-.101.52 0 .764.051.123.124.234.217.326l3.243 3.243-4.537 6.05 6.05-4.537 3.242 3.242c.092.094.203.166.326.217.122.051.252.078.382.078s.26-.027.382-.078c.245-.102.44-.295.541-.541.051-.121.077-.252.077-.381 0-2.4.444-3.889 1.083-5.166.577-1.156 1.556-2.072 3.293-2.904.129-.049.251-.121.354-.225.389-.393.387-1.025-.004-1.414l-3.997-4.02z" + }, + "children": [] + }] +}; +exports.pin = pin; \ No newline at end of file diff --git a/dist/typicons/pinOutline.js b/dist/typicons/pinOutline.js new file mode 100644 index 000000000..c16bf9a12 --- /dev/null +++ b/dist/typicons/pinOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pinOutline = void 0; +var pinOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M21.436 7.586l-3.998-4.02c-.752-.756-2.063-.764-2.83-.006-.196.196-.35.436-.418.629-.653 1.362-1.354 2.215-2.254 2.727l-.217.105c-.968.485-2.285.979-4.719.979-.266 0-.521.052-.766.152-.484.202-.879.595-1.082 1.084-.199.484-.199 1.041 0 1.525.104.249.25.471.435.651l3.235 3.235-3.822 5.353 5.352-3.822 3.227 3.227c.186.189.406.339.656.441.247.103.503.154.766.154s.519-.052.765-.154c.498-.205.883-.592 1.08-1.078.103-.242.155-.507.155-.768 0-2.436.494-3.752.978-4.721.496-.992 1.369-1.748 2.754-2.414.271-.104.51-.256.711-.457.772-.782.768-2.051-.008-2.822zm-5.248 4.801c-.819 1.643-1.188 3.37-1.195 5.604l-7.993-7.991c2.139 0 3.814-.335 5.396-1.084l.235-.105c1.399-.699 2.468-1.893 3.388-3.834l3.924 4.051c-1.863.893-3.056 1.96-3.755 3.359z" + }, + "children": [] + }] +}; +exports.pinOutline = pinOutline; \ No newline at end of file diff --git a/dist/typicons/pipette.js b/dist/typicons/pipette.js new file mode 100644 index 000000000..c7dea68f5 --- /dev/null +++ b/dist/typicons/pipette.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pipette = void 0; +var pipette = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M21.384 7.331c.073-1.199-.354-2.388-1.146-3.179-.732-.731-1.793-1.152-2.912-1.152-1.176 0-2.206.453-2.825 1.243-.692.883-1.392 2.625-1.769 3.647l-1.616-1.617c-.392-.391-1.023-.391-1.414 0-.392.392-.392 1.023 0 1.414l.293.293-5.231 5.232c-.375.375-.719.912-.968 1.516-.019.043-1.726 4.328-.093 5.959.527.526 1.33.707 2.178.707 1.778-.002 3.753-.787 3.783-.801.602-.248 1.141-.592 1.514-.967l5.232-5.232.293.293c.195.195.451.293.707.293s.512-.098.707-.293c.391-.391.391-1.022 0-1.414l-1.617-1.616c1.023-.376 2.766-1.075 3.648-1.769.721-.562 1.17-1.493 1.236-2.557zm-16.265 11.944c-.247-.295-.105-1.508.154-2.58l2.422 2.423c-1.071.261-2.283.403-2.576.157zm4.645-1.061c-.188.188-.511.388-.865.533l-.116.042-3.181-3.18.043-.117c.146-.354.346-.678.533-.864l5.232-5.231 3.586 3.586-5.232 5.231z" + }, + "children": [] + }] +}; +exports.pipette = pipette; \ No newline at end of file diff --git a/dist/typicons/plane.js b/dist/typicons/plane.js new file mode 100644 index 000000000..5188e7002 --- /dev/null +++ b/dist/typicons/plane.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.plane = void 0; +var plane = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M19.996 13.507l-5.996-3.426v-5.956c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v5.956l-5.996 3.426c-.439.251-.622.79-.426 1.256.197.466.711.713 1.196.573l5.226-1.492v4.451l-1.625 1.3c-.387.31-.488.856-.239 1.284s.776.608 1.235.425l2.129-.852 2.129.852c.121.048.247.071.371.071.347 0 .681-.181.864-.497.249-.428.147-.975-.239-1.284l-1.625-1.3v-4.451l5.226 1.493.274.039c.394 0 .762-.233.922-.612.196-.466.014-1.005-.426-1.256zm-7.496-9.132c-.276 0-.5-.224-.5-.5s.224-.5.5-.5.5.224.5.5-.224.5-.5.5z" + }, + "children": [] + }] +}; +exports.plane = plane; \ No newline at end of file diff --git a/dist/typicons/planeOutline.js b/dist/typicons/planeOutline.js new file mode 100644 index 000000000..95684d69a --- /dev/null +++ b/dist/typicons/planeOutline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.planeOutline = void 0; +var planeOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M20.988 12.396l-4.988-2.851v-4.795c0-1.93-1.57-3.5-3.5-3.5s-3.5 1.57-3.5 3.5v4.795l-4.988 2.851c-1.317.752-1.865 2.371-1.276 3.769.589 1.399 2.132 2.135 3.589 1.72l2.675-.765v.838l-.874.699c-1.198.959-1.48 2.667-.653 3.959.827 1.293 2.494 1.753 3.869 1.066.004-.001.5-.183 1.158-.183l1.158.183c1.375.687 3.042.227 3.869-1.066.827-1.292.545-3-.653-3.959l-.874-.699v-.838l2.676.765c1.457.415 3-.321 3.589-1.72s.041-3.017-1.277-3.769zm-.566 2.992c-.197.466-.711.713-1.196.573l-5.226-1.492v4.451l1.625 1.3c.399.319.493.889.218 1.32-.275.43-.828.583-1.29.355-.008-.004-.824-.395-2.053-.395s-2.045.391-2.053.395c-.462.227-1.015.074-1.29-.355-.275-.431-.182-1 .218-1.32l1.625-1.3v-4.451l-5.226 1.493c-.485.14-.999-.107-1.196-.573-.196-.466-.014-1.005.426-1.256l5.996-3.427v-5.956c0-.827.673-1.5 1.5-1.5s1.5.673 1.5 1.5v5.956l5.996 3.426c.44.251.622.79.426 1.256z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20.988 12.396l-4.988-2.851v-4.795c0-1.93-1.57-3.5-3.5-3.5s-3.5 1.57-3.5 3.5v4.795l-4.988 2.851c-1.317.752-1.865 2.371-1.276 3.769.589 1.399 2.132 2.135 3.589 1.72l2.675-.765v.838l-.874.699c-1.198.959-1.48 2.667-.653 3.959.827 1.293 2.494 1.753 3.869 1.066.004-.001.5-.183 1.158-.183l1.158.183c1.375.687 3.042.227 3.869-1.066.827-1.292.545-3-.653-3.959l-.874-.699v-.838l2.676.765c1.457.415 3-.321 3.589-1.72s.041-3.017-1.277-3.769zm-.566 2.992c-.197.466-.711.713-1.196.573l-5.226-1.492v4.451l1.625 1.3c.399.319.493.889.218 1.32-.275.43-.828.583-1.29.355-.008-.004-.824-.395-2.053-.395s-2.045.391-2.053.395c-.462.227-1.015.074-1.29-.355-.275-.431-.182-1 .218-1.32l1.625-1.3v-4.451l-5.226 1.493c-.485.14-.999-.107-1.196-.573-.196-.466-.014-1.005.426-1.256l5.996-3.427v-5.956c0-.827.673-1.5 1.5-1.5s1.5.673 1.5 1.5v5.956l5.996 3.426c.44.251.622.79.426 1.256z" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "12.5", + "cy": "4.5", + "r": ".5" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "12.5", + "cy": "4.5", + "r": ".5" + }, + "children": [] + }] + }] + }] +}; +exports.planeOutline = planeOutline; \ No newline at end of file diff --git a/dist/typicons/plug.js b/dist/typicons/plug.js new file mode 100644 index 000000000..c31c2dcf7 --- /dev/null +++ b/dist/typicons/plug.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.plug = void 0; +var plug = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18,6h-1V3c0-0.6-0.4-1-1-1h-2c-0.6,0-1,0.4-1,1v3h-2V3c0-0.6-0.4-1-1-1H8C7.4,2,7,2.4,7,3v3H6C5.4,6,5,6.4,5,7v4\r\n\tc0,0.1,0,0.1,0,0.2c0.2,2.5,1.8,4.6,4,5.6V20c0,1.1,0.9,2,2,2h2c1.1,0,2-0.9,2-2v-3.2c2.2-1,3.7-3.1,4-5.6c0-0.1,0-0.1,0-0.2V7\r\n\tC19,6.4,18.6,6,18,6z M14,3h2v3h-2V3z M8,3h2v3H8V3z M13,20h-2v-2h2V20z M12,15.5c-2.2,0-4.1-1.5-4.7-3.5h9.5\r\n\tC16.1,14,14.2,15.5,12,15.5z M17,10.5c0,0.2,0,0.3-0.1,0.5H7.1C7,10.8,7,10.7,7,10.5V8h10V10.5z" + }, + "children": [] + }] +}; +exports.plug = plug; \ No newline at end of file diff --git a/dist/typicons/plus.js b/dist/typicons/plus.js new file mode 100644 index 000000000..494a0e34d --- /dev/null +++ b/dist/typicons/plus.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.plus = void 0; +var plus = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18 10h-4v-4c0-1.104-.896-2-2-2s-2 .896-2 2l.071 4h-4.071c-1.104 0-2 .896-2 2s.896 2 2 2l4.071-.071-.071 4.071c0 1.104.896 2 2 2s2-.896 2-2v-4.071l4 .071c1.104 0 2-.896 2-2s-.896-2-2-2z" + }, + "children": [] + }] +}; +exports.plus = plus; \ No newline at end of file diff --git a/dist/typicons/plusOutline.js b/dist/typicons/plusOutline.js new file mode 100644 index 000000000..24b7a8495 --- /dev/null +++ b/dist/typicons/plusOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.plusOutline = void 0; +var plusOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 21c-1.654 0-3-1.346-3-3l.053-3.053-3.035.053c-1.672 0-3.018-1.346-3.018-3s1.346-3 3-3l3.053-.054-.053-2.928c0-1.672 1.346-3.018 3-3.018s3 1.346 3 3l.055 2.946 2.963.054c1.636 0 2.982 1.346 2.982 3s-1.346 3-3 3l-2.945-.053-.055 3.071c0 1.636-1.346 2.982-3 2.982zm-1-8v5.018c0 .533.449.982 1 .982s1-.449 1-1v-5h5.018c.533 0 .982-.449.982-1s-.449-1-1-1h-5v-5c0-.569-.449-1-1-1s-1 .449-1 1v5h-5c-.569 0-1 .449-1 1s.449 1 1 1h5z" + }, + "children": [] + }] +}; +exports.plusOutline = plusOutline; \ No newline at end of file diff --git a/dist/typicons/pointOfInterest.js b/dist/typicons/pointOfInterest.js new file mode 100644 index 000000000..d18aa27f6 --- /dev/null +++ b/dist/typicons/pointOfInterest.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pointOfInterest = void 0; +var pointOfInterest = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M16.5 11c1.93 0 3.5-1.57 3.5-3.5s-1.57-3.5-3.5-3.5-3.5 1.57-3.5 3.5v1.5h-2v-1.5c0-1.93-1.57-3.5-3.5-3.5s-3.5 1.57-3.5 3.5 1.57 3.5 3.5 3.5h1.5v2h-1.5c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5v-1.5h2v1.5c0 1.93 1.57 3.5 3.5 3.5s3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5h-1.5v-2h1.5zm-1.5-3.5c0-.828.673-1.5 1.5-1.5s1.5.672 1.5 1.5c0 .826-.673 1.5-1.5 1.5h-1.5v-1.5zm-6 9c0 .826-.673 1.5-1.5 1.5s-1.5-.674-1.5-1.5c0-.828.673-1.5 1.5-1.5h1.5v1.5zm0-7.5h-1.5c-.827 0-1.5-.674-1.5-1.5 0-.828.673-1.5 1.5-1.5s1.5.672 1.5 1.5v1.5zm4 4h-2v-2h2v2zm3.5 2c.827 0 1.5.672 1.5 1.5 0 .826-.673 1.5-1.5 1.5s-1.5-.674-1.5-1.5v-1.5h1.5z" + }, + "children": [] + }] +}; +exports.pointOfInterest = pointOfInterest; \ No newline at end of file diff --git a/dist/typicons/pointOfInterestOutline.js b/dist/typicons/pointOfInterestOutline.js new file mode 100644 index 000000000..dc10ffb83 --- /dev/null +++ b/dist/typicons/pointOfInterestOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.pointOfInterestOutline = void 0; +var pointOfInterestOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M16.5 4c1.93 0 3.5 1.57 3.5 3.5s-1.57 3.5-3.5 3.5h-1.5v2h1.5c1.93 0 3.5 1.57 3.5 3.5s-1.57 3.5-3.5 3.5-3.5-1.57-3.5-3.5v-1.5h-2v1.5c0 1.93-1.57 3.5-3.5 3.5s-3.5-1.57-3.5-3.5 1.57-3.5 3.5-3.5h1.5v-2h-1.5c-1.93 0-3.5-1.57-3.5-3.5s1.57-3.5 3.5-3.5 3.5 1.57 3.5 3.5v1.5h2v-1.5c0-1.93 1.57-3.5 3.5-3.5m-1.5 5h1.5c.827 0 1.5-.674 1.5-1.5 0-.828-.673-1.5-1.5-1.5s-1.5.672-1.5 1.5v1.5m-7.5 0h1.5v-1.5c0-.828-.673-1.5-1.5-1.5s-1.5.672-1.5 1.5c0 .826.673 1.5 1.5 1.5m9 9c.827 0 1.5-.674 1.5-1.5 0-.828-.673-1.5-1.5-1.5h-1.5v1.5c0 .826.673 1.5 1.5 1.5m-9 0c.827 0 1.5-.674 1.5-1.5v-1.5h-1.5c-.827 0-1.5.672-1.5 1.5 0 .826.673 1.5 1.5 1.5m9-16c-1.857 0-3.504.926-4.5 2.341-.996-1.415-2.643-2.341-4.5-2.341-3.033 0-5.5 2.468-5.5 5.5 0 1.857.926 3.504 2.341 4.5-1.415.996-2.341 2.643-2.341 4.5 0 3.032 2.467 5.5 5.5 5.5 1.857 0 3.504-.926 4.5-2.341.996 1.415 2.643 2.341 4.5 2.341 3.033 0 5.5-2.468 5.5-5.5 0-1.857-.926-3.504-2.341-4.5 1.415-.996 2.341-2.643 2.341-4.5 0-3.032-2.467-5.5-5.5-5.5zM13 11h-2v2h2z" + }, + "children": [] + }] +}; +exports.pointOfInterestOutline = pointOfInterestOutline; \ No newline at end of file diff --git a/dist/typicons/power.js b/dist/typicons/power.js new file mode 100644 index 000000000..a84a0655a --- /dev/null +++ b/dist/typicons/power.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.power = void 0; +var power = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M11.5 18.573c-1.736 0-3.368-.676-4.596-1.903-1.227-1.228-1.904-2.86-1.904-4.597s.677-3.369 1.904-4.597c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414c-.85.851-1.318 1.981-1.318 3.183s.468 2.333 1.318 3.183c.85.85 1.979 1.317 3.182 1.317s2.332-.468 3.182-1.317c.851-.85 1.318-1.98 1.318-3.183s-.468-2.333-1.318-3.183c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0c1.227 1.229 1.904 2.861 1.904 4.597s-.677 3.369-1.904 4.597c-1.228 1.227-2.86 1.903-4.596 1.903zM11.5 11c-.553 0-1-.448-1-1v-5c0-.552.447-1 1-1s1 .448 1 1v5c0 .552-.447 1-1 1z" + }, + "children": [] + }] +}; +exports.power = power; \ No newline at end of file diff --git a/dist/typicons/powerOutline.js b/dist/typicons/powerOutline.js new file mode 100644 index 000000000..fb16ba6a1 --- /dev/null +++ b/dist/typicons/powerOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.powerOutline = void 0; +var powerOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M17.51 6.062c-.814-.815-1.98-1.05-3.01-.729v-.333c0-1.656-1.344-3-3-3s-3 1.344-3 3v.332c-1.029-.319-2.195-.085-3.01.73-1.605 1.606-2.49 3.741-2.49 6.011s.885 4.405 2.49 6.011c1.604 1.605 3.739 2.489 6.01 2.489s4.405-.884 6.01-2.489c1.605-1.605 2.49-3.74 2.49-6.011s-.885-4.405-2.49-6.011zm-7.01-1.062c0-.552.447-1 1-1s1 .448 1 1v5c0 .552-.447 1-1 1s-1-.448-1-1v-5zm-1 3.803v1.197c0 1.104.896 2 2 2s2-.896 2-2v-1.182c.095.284.248.554.475.78.661.661 1.025 1.54 1.025 2.475s-.364 1.814-1.025 2.476c-1.322 1.321-3.627 1.321-4.949 0-.662-.662-1.026-1.541-1.026-2.476s.364-1.814 1.025-2.476c.231-.23.383-.504.475-.794zm6.596 7.867c-1.228 1.228-2.859 1.903-4.596 1.903s-3.368-.676-4.596-1.903c-1.227-1.228-1.904-2.86-1.904-4.597s.677-3.369 1.904-4.597c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414c-.85.851-1.318 1.981-1.318 3.183s.468 2.333 1.318 3.183c.85.85 1.979 1.317 3.182 1.317s2.332-.468 3.182-1.317c.851-.85 1.318-1.98 1.318-3.183s-.468-2.333-1.318-3.183c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0c1.227 1.229 1.904 2.861 1.904 4.597s-.677 3.369-1.904 4.597z" + }, + "children": [] + }] +}; +exports.powerOutline = powerOutline; \ No newline at end of file diff --git a/dist/typicons/printer.js b/dist/typicons/printer.js new file mode 100644 index 000000000..3c3df3b3d --- /dev/null +++ b/dist/typicons/printer.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.printer = void 0; +var printer = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M17 5v-2c0-.552-.448-1-1-1h-9c-.552 0-1 .448-1 1v2c-1.654 0-3 1.346-3 3v10c0 1.654 1.346 3 3 3h11c1.654 0 3-1.346 3-3v-10c0-1.654-1.346-3-3-3zm-9-1h7v5h-7v-5zm-2 3v3c0 .552.448 1 1 1h9c.552 0 1-.448 1-1v-3c.551 0 1 .449 1 1v2.5c0 .827-.673 1.5-1.5 1.5h-10c-.827 0-1.5-.673-1.5-1.5v-2.5c0-.551.449-1 1-1zm11 12h-11c-.551 0-1-.449-1-1v-5.513c.419.318.935.513 1.5.513h10c.565 0 1.081-.195 1.5-.513v5.513c0 .551-.449 1-1 1zM13.5 7h-4c-.276 0-.5.224-.5.5s.224.5.5.5h4c.276 0 .5-.224.5-.5s-.224-.5-.5-.5zM15 16h-7c-.276 0-.5.224-.5.5s.224.5.5.5h7c.276 0 .5-.224.5-.5s-.224-.5-.5-.5zM13.5 5h-4c-.276 0-.5.224-.5.5s.224.5.5.5h4c.276 0 .5-.224.5-.5s-.224-.5-.5-.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17 5v-2c0-.552-.448-1-1-1h-9c-.552 0-1 .448-1 1v2c-1.654 0-3 1.346-3 3v10c0 1.654 1.346 3 3 3h11c1.654 0 3-1.346 3-3v-10c0-1.654-1.346-3-3-3zm-9-1h7v5h-7v-5zm-2 3v3c0 .552.448 1 1 1h9c.552 0 1-.448 1-1v-3c.551 0 1 .449 1 1v2.5c0 .827-.673 1.5-1.5 1.5h-10c-.827 0-1.5-.673-1.5-1.5v-2.5c0-.551.449-1 1-1zm11 12h-11c-.551 0-1-.449-1-1v-5.513c.419.318.935.513 1.5.513h10c.565 0 1.081-.195 1.5-.513v5.513c0 .551-.449 1-1 1zM13.5 7h-4c-.276 0-.5.224-.5.5s.224.5.5.5h4c.276 0 .5-.224.5-.5s-.224-.5-.5-.5zM15 16h-7c-.276 0-.5.224-.5.5s.224.5.5.5h7c.276 0 .5-.224.5-.5s-.224-.5-.5-.5zM13.5 5h-4c-.276 0-.5.224-.5.5s.224.5.5.5h4c.276 0 .5-.224.5-.5s-.224-.5-.5-.5z" + }, + "children": [] + }] + }] + }] +}; +exports.printer = printer; \ No newline at end of file diff --git a/dist/typicons/puzzle.js b/dist/typicons/puzzle.js new file mode 100644 index 000000000..7a1e562bc --- /dev/null +++ b/dist/typicons/puzzle.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.puzzle = void 0; +var puzzle = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M16.25 11.25c.364 0 .704.145.984.391.549.332.766-.034.766-.391v-1.75c0-.825-.675-1.5-1.5-1.5h-2.75c-.356 0-.724-.216-.391-.766.246-.28.391-.619.391-.984 0-.967-1.007-1.75-2.25-1.75s-2.25.783-2.25 1.75c0 .3.095.576.255.823.507.673.136.927-.255.927h-2.75c-.825 0-1.5.675-1.5 1.5v1.75c0 .391.254.762.928.244.246-.149.522-.244.822-.244.966 0 1.75 1.008 1.75 2.25s-.784 2.25-1.75 2.25c-.364 0-.704-.145-.984-.391-.549-.332-.766.034-.766.391v2.75c0 .825.675 1.5 1.5 1.5h2.75c.391 0 .762-.254.243-.927-.148-.247-.243-.523-.243-.823 0-.967 1.007-1.75 2.25-1.75s2.25.783 2.25 1.75c0 .365-.145.704-.391.984-.333.55.035.766.391.766h2.75c.825 0 1.5-.675 1.5-1.5v-2.75c0-.391-.254-.762-.928-.244-.246.149-.522.244-.822.244-.966 0-1.75-1.008-1.75-2.25s.784-2.25 1.75-2.25z" + }, + "children": [] + }] +}; +exports.puzzle = puzzle; \ No newline at end of file diff --git a/dist/typicons/puzzleOutline.js b/dist/typicons/puzzleOutline.js new file mode 100644 index 000000000..f500f24b9 --- /dev/null +++ b/dist/typicons/puzzleOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.puzzleOutline = void 0; +var puzzleOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M20 11.25v-1.75c0-1.93-1.57-3.5-3.5-3.5h-.759c-.141-1.982-1.953-3.5-4.241-3.5s-4.1 1.518-4.241 3.5h-.759c-1.93 0-3.5 1.57-3.5 3.5v1.75c0 1.012.514 1.847 1.295 2.246-.358.188-.668.469-.894.825-.262.414-.401.908-.401 1.429v2.75c0 1.93 1.57 3.5 3.5 3.5h2.75c.976 0 1.831-.497 2.242-1.299l.036.066c.435.772 1.266 1.233 2.222 1.233h2.75c1.93 0 3.5-1.57 3.5-3.5v-2.75c0-1.013-.515-1.849-1.297-2.247.776-.411 1.297-1.256 1.297-2.253zm-2 7.25c0 .825-.675 1.5-1.5 1.5h-2.75c-.356 0-.724-.216-.391-.766.246-.28.391-.619.391-.984 0-.967-1.007-1.75-2.25-1.75s-2.25.783-2.25 1.75c0 .3.095.576.255.823.507.673.136.927-.255.927h-2.75c-.825 0-1.5-.675-1.5-1.5v-2.75c0-.258.113-.521.384-.521.104 0 .229.039.382.13.28.246.62.391.984.391.966 0 1.75-1.008 1.75-2.25s-.784-2.25-1.75-2.25c-.3 0-.576.095-.822.255-.237.171-.422.243-.562.243-.26 0-.366-.245-.366-.498v-1.75c0-.825.675-1.5 1.5-1.5h2.75c.391 0 .762-.254.243-.927-.148-.247-.243-.523-.243-.823 0-.967 1.007-1.75 2.25-1.75s2.25.783 2.25 1.75c0 .365-.145.704-.391.984-.333.55.035.766.391.766h2.75c.825 0 1.5.675 1.5 1.5v1.75c0 .258-.113.521-.384.521-.104 0-.229-.039-.382-.13-.28-.246-.62-.391-.984-.391-.966 0-1.75 1.008-1.75 2.25s.784 2.25 1.75 2.25c.3 0 .576-.095.822-.255.237-.171.422-.244.562-.243.259 0 .365.245.365.498v2.75zm-13-5.806c.116.032.236.054.365.054.342 0 .683-.119 1.038-.364l.069-.041c.097-.063.188-.093.278-.093.354 0 .75.535.75 1.25s-.396 1.25-.75 1.25c-.108 0-.217-.048-.324-.142l-.143-.104c-.301-.183-.604-.275-.899-.275-.134 0-.261.023-.384.059v-1.594zm12.635 1.558c-.342 0-.683.119-1.038.364l-.069.041c-.097.063-.188.093-.277.093-.354 0-.75-.535-.75-1.25s.396-1.25.75-1.25c.108 0 .217.048.324.142l.143.104c.302.183.604.275.899.275.136 0 .262-.025.384-.062v1.597c-.117-.032-.237-.054-.366-.054zm-6.943 5.748c.101-.346.093-.816-.305-1.396l-.044-.074c-.062-.098-.094-.189-.094-.279 0-.354.534-.75 1.25-.75s1.25.396 1.25.75c0 .108-.048.217-.143.325l-.104.142c-.325.537-.311.979-.22 1.284h-1.59z" + }, + "children": [] + }] +}; +exports.puzzleOutline = puzzleOutline; \ No newline at end of file diff --git a/dist/typicons/radar.js b/dist/typicons/radar.js new file mode 100644 index 000000000..5a93a55b4 --- /dev/null +++ b/dist/typicons/radar.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.radar = void 0; +var radar = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 20c3.86 0 7-3.141 7-7s-3.14-7-7.003-7c-3.858 0-6.997 3.141-6.997 7s3.14 7 7 7zm-1-11.898v1.898c0 .553.448 1 1 1s1-.447 1-1v-1.898c1.956.398 3.5 1.942 3.899 3.898h-1.899c-.552 0-1 .447-1 1s.448 1 1 1h1.899c-.399 1.956-1.943 3.5-3.899 3.898v-1.898c0-.553-.448-1-1-1s-1 .447-1 1v1.898c-1.956-.398-3.5-1.942-3.899-3.898h1.899c.552 0 1-.447 1-1s-.448-1-1-1h-1.899c.399-1.956 1.942-3.5 3.899-3.898z" + }, + "children": [] + }] +}; +exports.radar = radar; \ No newline at end of file diff --git a/dist/typicons/radarOutline.js b/dist/typicons/radarOutline.js new file mode 100644 index 000000000..c6f8a2634 --- /dev/null +++ b/dist/typicons/radarOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.radarOutline = void 0; +var radarOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M11.997 4.5c-4.685 0-8.497 3.812-8.497 8.5s3.813 8.5 8.5 8.5c4.688 0 8.5-3.812 8.5-8.5s-3.812-8.5-8.503-8.5zm.003 15c-3.584 0-6.5-2.916-6.5-6.5s2.914-6.5 6.5-6.5c3.584 0 6.5 2.916 6.5 6.5s-2.916 6.5-6.5 6.5zM15.348 12.031l.152-.031h.879c-.383-1.677-1.699-2.995-3.379-3.378v.878c0 .551-.449 1-1 1-.497 0-.892-.371-.969-.846l-.031-.154v-.88c-1.678.382-2.997 1.702-3.38 3.38h.88l.153.031c.476.076.847.472.847.969s-.371.893-.846.969l-.154.031h-.878c.384 1.677 1.702 2.995 3.378 3.379v-.879l.031-.154c.077-.476.472-.846.969-.846s.893.371.969.848l.031.152v.879c1.677-.383 2.996-1.702 3.379-3.379h-.879l-.152-.031c-.477-.076-.848-.472-.848-.969s.371-.893.848-.969zm-.446 2.867c-.264.399-.604.74-1.004 1.002-.256-.81-1.004-1.401-1.897-1.401s-1.642.592-1.898 1.401c-.4-.262-.74-.603-1.003-1.002.81-.256 1.401-1.006 1.401-1.898 0-.895-.592-1.643-1.402-1.898.263-.399.603-.74 1.004-1.002.256.81 1.005 1.401 1.898 1.401.894 0 1.644-.593 1.899-1.403.399.264.74.604 1.002 1.004-.81.256-1.401 1.006-1.401 1.898-.001.893.591 1.643 1.401 1.898z" + }, + "children": [] + }] +}; +exports.radarOutline = radarOutline; \ No newline at end of file diff --git a/dist/typicons/refresh.js b/dist/typicons/refresh.js new file mode 100644 index 000000000..6e8285acf --- /dev/null +++ b/dist/typicons/refresh.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.refresh = void 0; +var refresh = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12.872 13.191h5.128v-5.127c-.008-1.135-.671-1.408-1.473-.605l-1.154 1.158c-1.015-.795-2.257-1.23-3.566-1.23-1.55 0-3.009.604-4.104 1.701-1.099 1.092-1.703 2.553-1.703 4.103 0 1.553.604 3.012 1.701 4.107 1.097 1.097 2.555 1.702 4.106 1.702 1.55 0 3.009-.605 4.106-1.703.296-.297.558-.621.78-.965.347-.541.19-1.26-.35-1.605-.539-.346-1.258-.189-1.604.35-.133.207-.292.4-.468.58-.659.658-1.534 1.02-2.464 1.02-.93 0-1.805-.361-2.464-1.02-.657-.658-1.02-1.533-1.02-2.465 0-.93.362-1.805 1.02-2.461.659-.658 1.534-1.021 2.464-1.021.688 0 1.346.201 1.909.572l-1.448 1.451c-.803.802-.53 1.458.604 1.458z" + }, + "children": [] + }] +}; +exports.refresh = refresh; \ No newline at end of file diff --git a/dist/typicons/refreshOutline.js b/dist/typicons/refreshOutline.js new file mode 100644 index 000000000..779d7ee91 --- /dev/null +++ b/dist/typicons/refreshOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.refreshOutline = void 0; +var refreshOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M17.368 4.998c-.488 0-1.2.145-1.956.773-1.036-.489-2.189-.771-3.412-.771-4.418 0-8 3.582-8 8s3.582 8 8 8c4.312 0 8-3.316 8-8v-4.936c-.016-2.111-1.375-3.066-2.632-3.066zm.632 8.002h-5.128c-1.134 0-1.407-.561-.604-1.363l1.448-1.402c-.562-.371-1.22-.549-1.909-.549-.93 0-1.805.375-2.464 1.033-.657.656-1.02 1.537-1.02 2.467 0 .933.362 1.811 1.02 2.469.659.658 1.534 1.021 2.464 1.021s1.805-.36 2.465-1.019c.177-.18.334-.372.468-.579.222-.345.596-.533.979-.533.216 0 .433.06.625.185.54.346.697 1.063.351 1.604-.223.344-.484.668-.78.965-1.097 1.099-2.556 1.703-4.106 1.703-1.55 0-3.009-.604-4.104-1.701-1.097-1.096-1.701-2.555-1.701-4.106 0-1.551.604-3.012 1.702-4.104 1.096-1.098 2.554-1.7 4.104-1.7 1.311 0 2.551.436 3.566 1.229l1.154-1.158c.311-.312.602-.461.841-.461.377 0 .627.372.632 1.065v4.934zm-7.08.05c.162.392.63.95 1.952.95h1.299s-.21.504-.614.907-1.086.745-1.75.745-1.289-.246-1.758-.715c-.468-.47-.727-1.088-.727-1.752s.258-1.139.726-1.604c.472-.472 1.097-.581 1.759-.581l-.246.123c-.935.934-.803 1.536-.641 1.927z" + }, + "children": [] + }] +}; +exports.refreshOutline = refreshOutline; \ No newline at end of file diff --git a/dist/typicons/rss.js b/dist/typicons/rss.js new file mode 100644 index 000000000..67886fdc3 --- /dev/null +++ b/dist/typicons/rss.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.rss = void 0; +var rss = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M6.002 15.999c-1.107 0-2.004.897-2.002 2.001 0 1.104.896 2.001 2.002 1.999 1.103.002 2-.894 1.998-1.999.002-1.107-.895-2.003-1.998-2.001zM6 4c-1.104 0-2 .896-2 2s.896 2 2 2c5.514 0 10 4.486 10 10 0 1.104.896 2 2 2s2-.896 2-2c0-7.72-6.28-14-14-14zM6 10c-1.104 0-2 .896-2 2s.896 2 2 2c2.205 0 4 1.794 4 4 0 1.104.896 2 2 2s2-.896 2-2c0-4.411-3.589-8-8-8z" + }, + "children": [] + }] +}; +exports.rss = rss; \ No newline at end of file diff --git a/dist/typicons/rssOutline.js b/dist/typicons/rssOutline.js new file mode 100644 index 000000000..80a9a2a1f --- /dev/null +++ b/dist/typicons/rssOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.rssOutline = void 0; +var rssOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M8 4.999c-1.657 0-3.011 1.344-3.011 3l.005 9c0 2.209 1.793 4 4.002 4l9.003.001c1.655 0 3-1.346 3-3.001.001-7.179-5.819-13-12.999-13zm1.001 14c-1.105.002-2.001-.894-2.001-1.999-.002-1.105.894-2.001 2.001-2.001 1.105-.002 2.001.894 1.999 2.001.002 1.105-.894 2.001-1.999 1.999zm4.499 0c-.829 0-1.5-.671-1.5-1.5 0-1.931-1.57-3.5-3.5-3.5-.829 0-1.5-.671-1.5-1.5s.671-1.5 1.5-1.5c3.584 0 6.5 2.916 6.5 6.5 0 .829-.671 1.5-1.5 1.5zm4 0c-.829 0-1.5-.671-1.5-1.5 0-4.136-3.364-7.5-7.5-7.5-.829 0-1.5-.671-1.5-1.5s.671-1.5 1.5-1.5c5.79 0 10.5 4.71 10.5 10.5 0 .829-.671 1.5-1.5 1.5z" + }, + "children": [] + }] +}; +exports.rssOutline = rssOutline; \ No newline at end of file diff --git a/dist/typicons/scissors.js b/dist/typicons/scissors.js new file mode 100644 index 000000000..a9f88f24a --- /dev/null +++ b/dist/typicons/scissors.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.scissors = void 0; +var scissors = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M20.625 5.515c-1-1.522-2.915-1.67-4.397-.824l-.186.107-.076-.003c-1.042 0-2.01.511-2.604 1.369l-.034.045c-.43.645-.723 1.236-1.005 1.809-.255.516-.5 1.01-.824 1.483-.325-.475-.57-.97-.826-1.486-.283-.571-.575-1.162-1.004-1.806l-.033-.044c-.593-.859-1.562-1.37-2.603-1.37-1.747 0-3.167 1.42-3.167 3.166 0 1.747 1.421 3.168 3.167 3.168.775 0 1.515-.287 2.087-.791l.652 1.198c-1.621 1.876-2.979 4.054-3.019 4.121-1.236 1.702.705 4.42.789 4.534.094.131.245.207.405.207.204-.012.357-.11.439-.261l3.112-5.717 3.113 5.717c.082.15.235.249.407.26.174.019.336-.066.437-.206.083-.114 2.024-2.832.809-4.504l-.323-.521c-1.076-1.736-1.187-1.916-2.715-3.634l.651-1.195c.572.504 1.313.791 2.088.791 1.746 0 3.167-1.421 3.167-3.168 0-.634-.191-1.246-.547-1.768.472-.27.997-.123 1.456.095.466.191.897-.377.584-.772zm-13.625 3.485c-.552 0-1-.447-1-1s.448-1 1-1 1 .447 1 1-.448 1-1 1zm4.5 3.395c-.277 0-.5-.225-.5-.5 0-.277.223-.5.5-.5s.5.223.5.5c0 .275-.223.5-.5.5zm4.5-3.395c-.552 0-1-.447-1-1s.448-1 1-1 1 .447 1 1-.448 1-1 1z" + }, + "children": [] + }] +}; +exports.scissors = scissors; \ No newline at end of file diff --git a/dist/typicons/scissorsOutline.js b/dist/typicons/scissorsOutline.js new file mode 100644 index 000000000..b2c7162e1 --- /dev/null +++ b/dist/typicons/scissorsOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.scissorsOutline = void 0; +var scissorsOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.124 5.27l.25.013c.163.022.319.02.468.077.146.05.292.084.42.146.254.131.471.262.631.422.174.137.248.279.321.371l.108.146-.166-.074c-.105-.043-.258-.139-.442-.16-.129-.037-.282-.047-.442-.047l-.15.002-.318.061c-.103.01-.201.078-.295.113-.186.088-.35.203-.461.34l-.057.076c.451.477.732 1.115.732 1.824 0 1.471-1.195 2.668-2.666 2.668-.908 0-1.707-.457-2.189-1.15l-1.657 2.625c1.712 1.92 3.22 4.348 3.22 4.348 1.037 1.429-.789 3.947-.789 3.947l-3.552-6.522-3.551 6.522s-1.826-2.52-.789-3.947c0 0 1.507-2.428 3.22-4.348l-1.656-2.625c-.482.693-1.283 1.15-2.188 1.15-1.472 0-2.667-1.197-2.667-2.668 0-1.469 1.195-2.666 2.667-2.666.925 0 1.739.475 2.218 1.193.955 1.428 1.739 3.156 2.748 4.334 1.008-1.178 1.792-2.906 2.746-4.336.48-.717 1.295-1.191 2.221-1.191l.186.018.326-.188.383-.211c.132-.072.297-.107.449-.158.224-.07.475-.105.721-.105m-2.069 4.376c.273 0 .547-.104.756-.312.416-.416.416-1.092 0-1.508-.209-.208-.481-.312-.754-.312s-.545.104-.754.312l-.24.377c-.144.381-.066.826.24 1.131.207.209.479.312.752.312m-9.931 0c.272 0 .545-.104.752-.312.308-.305.382-.75.237-1.131l-.237-.377c-.207-.208-.48-.312-.753-.312s-.547.104-.755.312c-.417.416-.417 1.092 0 1.508.208.208.482.312.756.312m4.965 3.762c.218 0 .396-.178.396-.395 0-.22-.176-.396-.396-.396-.219 0-.394.176-.394.396 0 .217.176.395.394.395m7.035-10.138c-.448 0-.901.066-1.312.191l-.117.036c-.168.051-.426.126-.707.28l-.271.148c-1.388.102-2.656.815-3.467 1.961l-.079.108c-.39.584-.741 1.192-1.082 1.784-.339-.592-.69-1.199-1.081-1.784l-.078-.107c-.877-1.239-2.289-1.974-3.807-1.974-2.574 0-4.667 2.093-4.667 4.666s2.094 4.668 4.667 4.668c.309 0 .611-.03.908-.09-1.016 1.338-1.777 2.53-1.948 2.803-1.714 2.467.392 5.619.835 6.229.377.521.98.826 1.619.826l.129-.004c.686-.044 1.3-.437 1.628-1.039l1.795-3.298 1.795 3.298c.328.604.943.995 1.628 1.039l.129.004c.639 0 1.241-.306 1.619-.826.443-.61 2.549-3.764.834-6.229-.17-.271-.932-1.465-1.947-2.803.295.06.601.09.908.09 2.573 0 4.668-2.095 4.668-4.668l-.004-.179c.467-.096.898-.356 1.2-.758.547-.729.536-1.733-.032-2.445l-.049-.067-.039-.053c-.102-.146-.279-.394-.572-.644-.35-.326-.738-.547-1.045-.705-.275-.136-.488-.201-.628-.244l-.062-.02c-.333-.117-.622-.146-.784-.16l-.054-.006-.086-.01-.444-.018z" + }, + "children": [] + }] +}; +exports.scissorsOutline = scissorsOutline; \ No newline at end of file diff --git a/dist/typicons/shoppingBag.js b/dist/typicons/shoppingBag.js new file mode 100644 index 000000000..c31fd6469 --- /dev/null +++ b/dist/typicons/shoppingBag.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.shoppingBag = void 0; +var shoppingBag = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M17 4h-10c-1.654 0-3 1.346-3 3v11c0 1.654 1.346 3 3 3h10c1.654 0 3-1.346 3-3v-11c0-1.654-1.346-3-3-3zm1 14c0 .551-.448 1-1 1h-10c-.552 0-1-.449-1-1v-7.28c.296.174.635.28 1 .28h1.5c0 1.93 1.57 3.5 3.5 3.5s3.5-1.57 3.5-3.5h1.5c.365 0 .704-.106 1-.279v7.279zm-8.5-7h5c0 1.378-1.121 2.5-2.5 2.5s-2.5-1.122-2.5-2.5zm8.5-2c0 .551-.448 1-1 1h-10c-.552 0-1-.449-1-1v-2c0-.551.448-1 1-1h10c.552 0 1 .449 1 1v2z" + }, + "children": [] + }] +}; +exports.shoppingBag = shoppingBag; \ No newline at end of file diff --git a/dist/typicons/shoppingCart.js b/dist/typicons/shoppingCart.js new file mode 100644 index 000000000..fa8ab04c5 --- /dev/null +++ b/dist/typicons/shoppingCart.js @@ -0,0 +1,59 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.shoppingCart = void 0; +var shoppingCart = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M20.756 5.345c-.191-.219-.466-.345-.756-.345h-13.819l-.195-1.164c-.08-.482-.497-.836-.986-.836h-2.25c-.553 0-1 .447-1 1s.447 1 1 1h1.403l1.86 11.164.045.124.054.151.12.179.095.112.193.13.112.065c.116.047.238.075.367.075h11.001c.553 0 1-.447 1-1s-.447-1-1-1h-10.153l-.166-1h11.319c.498 0 .92-.366.99-.858l1-7c.041-.288-.045-.579-.234-.797zm-1.909 1.655l-.285 2h-3.562v-2h3.847zm-4.847 0v2h-3v-2h3zm0 3v2h-3v-2h3zm-4-3v2h-3l-.148.03-.338-2.03h3.486zm-2.986 3h2.986v2h-2.653l-.333-2zm7.986 2v-2h3.418l-.285 2h-3.133z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20.756 5.345c-.191-.219-.466-.345-.756-.345h-13.819l-.195-1.164c-.08-.482-.497-.836-.986-.836h-2.25c-.553 0-1 .447-1 1s.447 1 1 1h1.403l1.86 11.164.045.124.054.151.12.179.095.112.193.13.112.065c.116.047.238.075.367.075h11.001c.553 0 1-.447 1-1s-.447-1-1-1h-10.153l-.166-1h11.319c.498 0 .92-.366.99-.858l1-7c.041-.288-.045-.579-.234-.797zm-1.909 1.655l-.285 2h-3.562v-2h3.847zm-4.847 0v2h-3v-2h3zm0 3v2h-3v-2h3zm-4-3v2h-3l-.148.03-.338-2.03h3.486zm-2.986 3h2.986v2h-2.653l-.333-2zm7.986 2v-2h3.418l-.285 2h-3.133z" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "8.5", + "cy": "19.5", + "r": "1.5" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "8.5", + "cy": "19.5", + "r": "1.5" + }, + "children": [] + }] + }, { + "name": "circle", + "attribs": { + "cx": "17.5", + "cy": "19.5", + "r": "1.5" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "17.5", + "cy": "19.5", + "r": "1.5" + }, + "children": [] + }] + }] + }] +}; +exports.shoppingCart = shoppingCart; \ No newline at end of file diff --git a/dist/typicons/socialAtCircular.js b/dist/typicons/socialAtCircular.js new file mode 100644 index 000000000..37adbf1e5 --- /dev/null +++ b/dist/typicons/socialAtCircular.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialAtCircular = void 0; +var socialAtCircular = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M11.844 7.5c-2.481 0-4.438 2.019-4.438 4.5s2.05 4.5 4.531 4.5c.908 0 1.799-.27 2.547-.778.228-.155.295-.466.139-.694-.155-.229-.462-.287-.691-.132-.58.396-1.258.604-1.965.604-1.93 0-3.499-1.57-3.499-3.5s1.446-3.5 3.376-3.5 3.375 1.57 3.375 3.5v.25c0 .414-.336.75-.75.75s-.75-.336-.75-.75v-1.75c0-.276-.099-.5-.375-.5-.205 0-.318.124-.396.301-.303-.188-.628-.301-1.01-.301-1.104 0-1.984.896-1.984 2s.904 2 2.008 2c.562 0 1.073-.235 1.438-.609.319.369.664.609 1.192.609.965 0 1.627-.785 1.627-1.75v-.25c0-2.481-1.894-4.5-4.375-4.5zm.125 5.5c-.551 0-1-.449-1-1s.449-1 1-1 1 .449 1 1-.449 1-1 1zM12 21c-4.963 0-9-4.037-9-9s4.037-9 9-9 9 4.037 9 9-4.037 9-9 9zm0-16c-3.859 0-7 3.141-7 7s3.141 7 7 7 7-3.141 7-7-3.141-7-7-7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M11.844 7.5c-2.481 0-4.438 2.019-4.438 4.5s2.05 4.5 4.531 4.5c.908 0 1.799-.27 2.547-.778.228-.155.295-.466.139-.694-.155-.229-.462-.287-.691-.132-.58.396-1.258.604-1.965.604-1.93 0-3.499-1.57-3.499-3.5s1.446-3.5 3.376-3.5 3.375 1.57 3.375 3.5v.25c0 .414-.336.75-.75.75s-.75-.336-.75-.75v-1.75c0-.276-.099-.5-.375-.5-.205 0-.318.124-.396.301-.303-.188-.628-.301-1.01-.301-1.104 0-1.984.896-1.984 2s.904 2 2.008 2c.562 0 1.073-.235 1.438-.609.319.369.664.609 1.192.609.965 0 1.627-.785 1.627-1.75v-.25c0-2.481-1.894-4.5-4.375-4.5zm.125 5.5c-.551 0-1-.449-1-1s.449-1 1-1 1 .449 1 1-.449 1-1 1zM12 21c-4.963 0-9-4.037-9-9s4.037-9 9-9 9 4.037 9 9-4.037 9-9 9zm0-16c-3.859 0-7 3.141-7 7s3.141 7 7 7 7-3.141 7-7-3.141-7-7-7z" + }, + "children": [] + }] + }] + }] +}; +exports.socialAtCircular = socialAtCircular; \ No newline at end of file diff --git a/dist/typicons/socialDribbble.js b/dist/typicons/socialDribbble.js new file mode 100644 index 000000000..5751deb49 --- /dev/null +++ b/dist/typicons/socialDribbble.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialDribbble = void 0; +var socialDribbble = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 3c-4.962 0-9 4.037-9 9s4.038 9 9 9 9-4.037 9-9-4.038-9-9-9zm6.962 8.275c-1.765-.289-3.534-.187-5.205.262-.18-.436-.383-.859-.59-1.283 1.422-.81 2.685-1.912 3.713-3.262 1.143 1.113 1.909 2.611 2.082 4.283zm-2.832-4.914c-.939 1.243-2.1 2.259-3.401 3.009-.782-1.445-1.729-2.8-2.807-4.056.657-.204 1.355-.314 2.078-.314 1.545 0 2.971.51 4.13 1.361zm-7.183-.65c1.119 1.265 2.093 2.645 2.892 4.117-2.061.957-4.396 1.294-6.717.899.408-2.212 1.86-4.058 3.825-5.016zm-3.947 6.289l.015-.294c.676.111 1.353.188 2.024.188 1.827 0 3.607-.426 5.237-1.187.182.373.365.744.525 1.127-2.429.866-4.583 2.486-6.101 4.726-1.056-1.227-1.7-2.818-1.7-4.56zm2.393 5.257c1.43-2.129 3.465-3.673 5.764-4.487.683 1.854 1.123 3.795 1.292 5.779-.763.287-1.587.451-2.449.451-1.765 0-3.375-.661-4.607-1.743zm8.014.852c-.196-1.932-.631-3.822-1.293-5.632 1.564-.404 3.222-.486 4.871-.19-.102 2.502-1.516 4.668-3.578 5.822z" + }, + "children": [] + }] +}; +exports.socialDribbble = socialDribbble; \ No newline at end of file diff --git a/dist/typicons/socialDribbbleCircular.js b/dist/typicons/socialDribbbleCircular.js new file mode 100644 index 000000000..f68ac2920 --- /dev/null +++ b/dist/typicons/socialDribbbleCircular.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialDribbbleCircular = void 0; +var socialDribbbleCircular = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12 21c-4.962 0-9-4.037-9-9s4.038-9 9-9 9 4.037 9 9-4.038 9-9 9zm0-16c-3.86 0-7 3.141-7 7s3.14 7 7 7 7-3.141 7-7-3.14-7-7-7zM12 6.5c-3.033 0-5.5 2.468-5.5 5.5s2.467 5.5 5.5 5.5 5.5-2.468 5.5-5.5-2.467-5.5-5.5-5.5zm4.49 5.402c-1.048-.186-2.1-.18-3.103.042-.127-.326-.267-.647-.417-.965.875-.524 1.652-1.221 2.284-2.07.746.785 1.211 1.834 1.236 2.993zm-2-3.646c-.546.748-1.215 1.367-1.975 1.832-.479-.856-1.046-1.663-1.692-2.412.378-.103.767-.176 1.177-.176.921 0 1.776.28 2.49.756zm-4.641-.184c.687.758 1.278 1.59 1.776 2.473-1.238.531-2.622.691-3.998.437.293-1.259 1.118-2.302 2.222-2.91zm-2.349 3.928c.468.064.936.121 1.399.121 1.106 0 2.187-.244 3.185-.683.123.261.238.524.344.793-1.469.526-2.769 1.489-3.728 2.805-.738-.802-1.2-1.862-1.2-3.036zm1.948 3.699c.842-1.189 2.004-2.057 3.318-2.527.314 1.001.518 2.039.596 3.095-.433.138-.884.233-1.362.233-.948 0-1.826-.298-2.552-.801zm4.872.137c-.099-1-.296-1.983-.593-2.937.87-.176 1.778-.172 2.683.001-.256 1.247-1.035 2.296-2.09 2.936z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12 21c-4.962 0-9-4.037-9-9s4.038-9 9-9 9 4.037 9 9-4.038 9-9 9zm0-16c-3.86 0-7 3.141-7 7s3.14 7 7 7 7-3.141 7-7-3.14-7-7-7zM12 6.5c-3.033 0-5.5 2.468-5.5 5.5s2.467 5.5 5.5 5.5 5.5-2.468 5.5-5.5-2.467-5.5-5.5-5.5zm4.49 5.402c-1.048-.186-2.1-.18-3.103.042-.127-.326-.267-.647-.417-.965.875-.524 1.652-1.221 2.284-2.07.746.785 1.211 1.834 1.236 2.993zm-2-3.646c-.546.748-1.215 1.367-1.975 1.832-.479-.856-1.046-1.663-1.692-2.412.378-.103.767-.176 1.177-.176.921 0 1.776.28 2.49.756zm-4.641-.184c.687.758 1.278 1.59 1.776 2.473-1.238.531-2.622.691-3.998.437.293-1.259 1.118-2.302 2.222-2.91zm-2.349 3.928c.468.064.936.121 1.399.121 1.106 0 2.187-.244 3.185-.683.123.261.238.524.344.793-1.469.526-2.769 1.489-3.728 2.805-.738-.802-1.2-1.862-1.2-3.036zm1.948 3.699c.842-1.189 2.004-2.057 3.318-2.527.314 1.001.518 2.039.596 3.095-.433.138-.884.233-1.362.233-.948 0-1.826-.298-2.552-.801zm4.872.137c-.099-1-.296-1.983-.593-2.937.87-.176 1.778-.172 2.683.001-.256 1.247-1.035 2.296-2.09 2.936z" + }, + "children": [] + }] + }] + }] +}; +exports.socialDribbbleCircular = socialDribbbleCircular; \ No newline at end of file diff --git a/dist/typicons/socialFacebook.js b/dist/typicons/socialFacebook.js new file mode 100644 index 000000000..9277236b4 --- /dev/null +++ b/dist/typicons/socialFacebook.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialFacebook = void 0; +var socialFacebook = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M13 10h3v3h-3v7h-3v-7h-3v-3h3v-1.255c0-1.189.374-2.691 1.118-3.512.744-.823 1.673-1.233 2.786-1.233h2.096v3h-2.1c-.498 0-.9.402-.9.899v2.101z" + }, + "children": [] + }] +}; +exports.socialFacebook = socialFacebook; \ No newline at end of file diff --git a/dist/typicons/socialFacebookCircular.js b/dist/typicons/socialFacebookCircular.js new file mode 100644 index 000000000..3c5b5bddd --- /dev/null +++ b/dist/typicons/socialFacebookCircular.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialFacebookCircular = void 0; +var socialFacebookCircular = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.354 5.624c-1.75-1.741-3.888-2.624-6.354-2.624-2.489 0-4.633.884-6.373 2.625-1.743 1.741-2.627 3.887-2.627 6.375 0 2.465.883 4.603 2.624 6.354 1.741 1.756 3.886 2.646 6.376 2.646 2.467 0 4.605-.89 6.356-2.643 1.755-1.753 2.644-3.892 2.644-6.357 0-2.488-.89-4.634-2.646-6.376zm-1.412 11.319c-1.137 1.139-2.436 1.788-3.942 1.985v-4.928h2v-2h-2v-1.4c0-.331.269-.6.601-.6h1.399v-2h-1.397c-.742 0-1.361.273-1.857.822-.496.547-.746 1.215-.746 2.008v1.17h-2v2h2v4.93c-1.522-.195-2.826-.845-3.957-1.984-1.375-1.384-2.043-3.002-2.043-4.946 0-1.966.667-3.588 2.042-4.96 1.37-1.373 2.992-2.04 4.958-2.04 1.945 0 3.562.668 4.945 2.043 1.383 1.372 2.055 2.994 2.055 4.957 0 1.941-.673 3.559-2.058 4.943z" + }, + "children": [] + }] +}; +exports.socialFacebookCircular = socialFacebookCircular; \ No newline at end of file diff --git a/dist/typicons/socialFlickr.js b/dist/typicons/socialFlickr.js new file mode 100644 index 000000000..a49d34184 --- /dev/null +++ b/dist/typicons/socialFlickr.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialFlickr = void 0; +var socialFlickr = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M7.5 16c-2.206 0-4-1.794-4-4s1.794-4 4-4 4 1.794 4 4-1.794 4-4 4zm0-6c-1.103 0-2 .897-2 2s.897 2 2 2 2-.897 2-2-.897-2-2-2zM16.5 8c-2.206 0-4 1.794-4 4s1.794 4 4 4 4-1.794 4-4-1.794-4-4-4z" + }, + "children": [] + }] +}; +exports.socialFlickr = socialFlickr; \ No newline at end of file diff --git a/dist/typicons/socialFlickrCircular.js b/dist/typicons/socialFlickrCircular.js new file mode 100644 index 000000000..54ee8d5ca --- /dev/null +++ b/dist/typicons/socialFlickrCircular.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialFlickrCircular = void 0; +var socialFlickrCircular = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12 21c-2.489 0-4.635-.89-6.376-2.646-1.741-1.751-2.624-3.889-2.624-6.354 0-2.488.884-4.634 2.627-6.375 1.74-1.741 3.885-2.625 6.373-2.625 2.466 0 4.604.883 6.354 2.624 1.755 1.742 2.646 3.888 2.646 6.376 0 2.465-.89 4.604-2.644 6.357-1.751 1.753-3.889 2.643-6.356 2.643zm0-16c-1.966 0-3.588.667-4.958 2.04-1.374 1.372-2.042 2.994-2.042 4.96 0 1.944.668 3.562 2.043 4.945 1.372 1.383 2.993 2.055 4.957 2.055 1.943 0 3.56-.673 4.941-2.057 1.386-1.384 2.059-3.002 2.059-4.943 0-1.963-.672-3.585-2.055-4.957-1.383-1.375-3-2.043-4.945-2.043zM9 14.5c-1.379 0-2.5-1.121-2.5-2.5s1.121-2.5 2.5-2.5 2.5 1.121 2.5 2.5-1.121 2.5-2.5 2.5zm0-4c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zM15 14.5c-1.379 0-2.5-1.121-2.5-2.5s1.121-2.5 2.5-2.5 2.5 1.121 2.5 2.5-1.121 2.5-2.5 2.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12 21c-2.489 0-4.635-.89-6.376-2.646-1.741-1.751-2.624-3.889-2.624-6.354 0-2.488.884-4.634 2.627-6.375 1.74-1.741 3.885-2.625 6.373-2.625 2.466 0 4.604.883 6.354 2.624 1.755 1.742 2.646 3.888 2.646 6.376 0 2.465-.89 4.604-2.644 6.357-1.751 1.753-3.889 2.643-6.356 2.643zm0-16c-1.966 0-3.588.667-4.958 2.04-1.374 1.372-2.042 2.994-2.042 4.96 0 1.944.668 3.562 2.043 4.945 1.372 1.383 2.993 2.055 4.957 2.055 1.943 0 3.56-.673 4.941-2.057 1.386-1.384 2.059-3.002 2.059-4.943 0-1.963-.672-3.585-2.055-4.957-1.383-1.375-3-2.043-4.945-2.043zM9 14.5c-1.379 0-2.5-1.121-2.5-2.5s1.121-2.5 2.5-2.5 2.5 1.121 2.5 2.5-1.121 2.5-2.5 2.5zm0-4c-.827 0-1.5.673-1.5 1.5s.673 1.5 1.5 1.5 1.5-.673 1.5-1.5-.673-1.5-1.5-1.5zM15 14.5c-1.379 0-2.5-1.121-2.5-2.5s1.121-2.5 2.5-2.5 2.5 1.121 2.5 2.5-1.121 2.5-2.5 2.5z" + }, + "children": [] + }] + }] + }] +}; +exports.socialFlickrCircular = socialFlickrCircular; \ No newline at end of file diff --git a/dist/typicons/socialGithub.js b/dist/typicons/socialGithub.js new file mode 100644 index 000000000..b64aed81c --- /dev/null +++ b/dist/typicons/socialGithub.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialGithub = void 0; +var socialGithub = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M14.435 12.973c.269 0 .492.133.686.396.192.265.294.588.294.975 0 .385-.102.711-.294.973-.193.265-.417.396-.686.396-.278 0-.522-.131-.715-.396-.192-.262-.294-.588-.294-.973 0-.387.102-.71.294-.975.192-.264.436-.396.715-.396m3.44-3.559c.746.811 1.125 1.795 1.125 2.953 0 .748-.086 1.423-.259 2.023-.175.597-.394 1.084-.654 1.459-.264.376-.588.705-.974.989-.386.286-.741.492-1.065.623-.325.132-.695.233-1.111.306-.417.071-.726.111-.943.123l-.685.014-.547.015c-.301.013-.56.016-.762.016s-.461-.003-.762-.016l-.547-.015-.685-.014c-.218-.012-.526-.052-.943-.123-.423-.072-.786-.174-1.111-.306-.324-.131-.68-.337-1.064-.623-.387-.284-.711-.613-.975-.989-.261-.375-.479-.862-.654-1.459-.173-.6-.259-1.275-.259-2.023 0-1.158.379-2.143 1.125-2.953-.082-.041-.085-.447-.008-1.217.063-.771.227-1.482.495-2.132.934.099 2.09.629 3.471 1.581.466-.119 1.101-.183 1.917-.183.852 0 1.491.064 1.918.184.629-.425 1.23-.771 1.805-1.034.584-.261 1.005-.416 1.269-.457l.396-.09c.27.649.434 1.36.496 2.132.076.769.073 1.175-.009 1.216m-5.845 7.82c1.688 0 2.954-.202 3.821-.607.855-.404 1.292-1.238 1.292-2.496 0-.73-.273-1.34-.822-1.828-.278-.263-.613-.425-.989-.486-.375-.061-.949-.061-1.72 0-.769.062-1.298.09-1.582.09-.385 0-.8-.018-1.319-.059-.52-.04-.928-.065-1.223-.078-.294-.009-.609.027-.958.108-.345.082-.629.224-.853.425-.521.469-.79 1.077-.79 1.828 0 1.258.426 2.092 1.28 2.496.85.405 2.113.607 3.802.607h.061m-2.434-4.261c.268 0 .492.133.685.396.192.265.294.588.294.975 0 .385-.102.711-.294.973-.192.265-.417.396-.685.396-.279 0-.522-.131-.716-.396-.192-.262-.294-.588-.294-.973 0-.387.102-.71.294-.975.193-.264.436-.396.716-.396" + }, + "children": [] + }] +}; +exports.socialGithub = socialGithub; \ No newline at end of file diff --git a/dist/typicons/socialGithubCircular.js b/dist/typicons/socialGithubCircular.js new file mode 100644 index 000000000..c1c528d9a --- /dev/null +++ b/dist/typicons/socialGithubCircular.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialGithubCircular = void 0; +var socialGithubCircular = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12 21c-4.963 0-9-4.038-9-9s4.037-9 9-9 9 4.038 9 9-4.037 9-9 9zm0-16c-3.859 0-7 3.14-7 7s3.141 7 7 7 7-3.14 7-7-3.141-7-7-7zM13.565 12.626c.171 0 .316.084.441.255.124.169.187.378.187.625 0 .248-.062.457-.187.626-.125.169-.271.254-.441.254-.181 0-.337-.084-.461-.254-.124-.169-.187-.378-.187-.626s.062-.456.187-.625c.125-.171.281-.255.461-.255m2.21-2.289c.482.522.725 1.155.725 1.898 0 .482-.057.915-.166 1.301-.111.384-.252.698-.42.939-.171.242-.378.454-.627.635-.249.184-.478.316-.685.401-.208.085-.446.15-.716.196-.266.047-.467.072-.606.079l-.44.009-.352.01-.488.011-.488-.011-.352-.01-.44-.009c-.14-.007-.341-.032-.606-.079-.271-.045-.508-.11-.716-.196-.207-.084-.436-.217-.684-.401-.25-.182-.457-.394-.628-.635-.168-.241-.309-.555-.42-.939-.109-.386-.166-.819-.166-1.301 0-.743.242-1.376.725-1.898-.053-.026-.056-.286-.008-.782.043-.496.148-.953.319-1.37.602.064 1.343.404 2.23 1.017.3-.078.71-.118 1.233-.118.549 0 .959.04 1.234.118.404-.273.791-.496 1.16-.666.374-.168.644-.267.814-.293l.254-.058c.172.417.277.875.32 1.37.05.496.047.756-.006.782m-3.754 5.027c1.083 0 1.899-.129 2.454-.39.553-.26.833-.796.833-1.605 0-.469-.176-.861-.529-1.174-.181-.17-.394-.273-.638-.313-.238-.039-.607-.039-1.104 0-.495.04-.834.058-1.016.058-.248 0-.517-.013-.851-.039l-.783-.049c-.191-.006-.395.018-.616.069-.223.053-.404.143-.55.273-.336.3-.507.691-.507 1.174 0 .809.274 1.345.821 1.605.547.261 1.361.39 2.444.39m-1.524-2.737c.17 0 .316.084.44.255.124.169.187.378.187.625 0 .248-.062.457-.187.626-.124.169-.271.254-.44.254-.182 0-.337-.084-.462-.254-.124-.169-.187-.378-.187-.626s.062-.456.187-.625c.125-.171.28-.255.462-.255" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12 21c-4.963 0-9-4.038-9-9s4.037-9 9-9 9 4.038 9 9-4.037 9-9 9zm0-16c-3.859 0-7 3.14-7 7s3.141 7 7 7 7-3.14 7-7-3.141-7-7-7zM13.565 12.626c.171 0 .316.084.441.255.124.169.187.378.187.625 0 .248-.062.457-.187.626-.125.169-.271.254-.441.254-.181 0-.337-.084-.461-.254-.124-.169-.187-.378-.187-.626s.062-.456.187-.625c.125-.171.281-.255.461-.255m2.21-2.289c.482.522.725 1.155.725 1.898 0 .482-.057.915-.166 1.301-.111.384-.252.698-.42.939-.171.242-.378.454-.627.635-.249.184-.478.316-.685.401-.208.085-.446.15-.716.196-.266.047-.467.072-.606.079l-.44.009-.352.01-.488.011-.488-.011-.352-.01-.44-.009c-.14-.007-.341-.032-.606-.079-.271-.045-.508-.11-.716-.196-.207-.084-.436-.217-.684-.401-.25-.182-.457-.394-.628-.635-.168-.241-.309-.555-.42-.939-.109-.386-.166-.819-.166-1.301 0-.743.242-1.376.725-1.898-.053-.026-.056-.286-.008-.782.043-.496.148-.953.319-1.37.602.064 1.343.404 2.23 1.017.3-.078.71-.118 1.233-.118.549 0 .959.04 1.234.118.404-.273.791-.496 1.16-.666.374-.168.644-.267.814-.293l.254-.058c.172.417.277.875.32 1.37.05.496.047.756-.006.782m-3.754 5.027c1.083 0 1.899-.129 2.454-.39.553-.26.833-.796.833-1.605 0-.469-.176-.861-.529-1.174-.181-.17-.394-.273-.638-.313-.238-.039-.607-.039-1.104 0-.495.04-.834.058-1.016.058-.248 0-.517-.013-.851-.039l-.783-.049c-.191-.006-.395.018-.616.069-.223.053-.404.143-.55.273-.336.3-.507.691-.507 1.174 0 .809.274 1.345.821 1.605.547.261 1.361.39 2.444.39m-1.524-2.737c.17 0 .316.084.44.255.124.169.187.378.187.625 0 .248-.062.457-.187.626-.124.169-.271.254-.44.254-.182 0-.337-.084-.462-.254-.124-.169-.187-.378-.187-.626s.062-.456.187-.625c.125-.171.28-.255.462-.255" + }, + "children": [] + }] + }] + }] +}; +exports.socialGithubCircular = socialGithubCircular; \ No newline at end of file diff --git a/dist/typicons/socialGooglePlus.js b/dist/typicons/socialGooglePlus.js new file mode 100644 index 000000000..f2a52f8a6 --- /dev/null +++ b/dist/typicons/socialGooglePlus.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialGooglePlus = void 0; +var socialGooglePlus = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12.9 13.5l-.7-.5c-.2-.2-.5-.4-.5-.8s.3-.7.6-1c.8-.6 1.7-1.3 1.7-2.8 0-1.5-.9-2.3-1.4-2.7h1.2l1.2-.7h-4.1c-1 0-2.4.2-3.5 1.1-.8.7-1.2 1.7-1.2 2.6 0 1.5 1.2 3.1 3.3 3.1h.6c-.1.2-.2.4-.2.7 0 .6.3 1 .6 1.3-.9.1-2.5.2-3.8.9-1.2.7-1.5 1.7-1.5 2.4 0 1.5 1.4 2.8 4.2 2.8 3.4 0 5.2-1.9 5.2-3.7 0-1.3-.8-1.9-1.7-2.7zm-2.5-2.2c-1.7 0-2.5-2.2-2.5-3.5 0-.5.1-1 .4-1.5.3-.4.9-.7 1.4-.7 1.6 0 2.5 2.2 2.5 3.6 0 .4 0 1-.5 1.4-.3.4-.9.7-1.3.7zm0 7.9c-2.1 0-3.5-1-3.5-2.4s1.3-1.9 1.7-2c.8-.3 1.9-.3 2.1-.3h.5c1.5 1.1 2.1 1.6 2.1 2.6 0 1.2-1 2.1-2.9 2.1zM17 12h-2v-1h2v-1.9l1-.1v2h2v1h-2v2h-1z" + }, + "children": [] + }] +}; +exports.socialGooglePlus = socialGooglePlus; \ No newline at end of file diff --git a/dist/typicons/socialGooglePlusCircular.js b/dist/typicons/socialGooglePlusCircular.js new file mode 100644 index 000000000..5c843f0ac --- /dev/null +++ b/dist/typicons/socialGooglePlusCircular.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialGooglePlusCircular = void 0; +var socialGooglePlusCircular = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12.8 13.1l-.4-.3c-.1-.1-.3-.2-.3-.5l.3-.6c.5-.4 1-.8 1-1.7s-.6-1.4-.8-1.6h.7l.7-.4h-2.4c-.6 0-1.4.1-2.1.6-.5.4-.8 1-.8 1.6 0 .9.7 1.9 2 1.9h.4c-.1.1-.1.2-.1.4 0 .4.2.6.4.8-.5 0-1.5.1-2.3.5-.7.4-.9 1-.9 1.4 0 .9.8 1.7 2.5 1.7 2 0 3.1-1.1 3.1-2.2 0-.7-.5-1.1-1-1.6zm-1.6-1.3c-1 0-1.5-1.3-1.5-2.1.1-.4.1-.7.3-.9s.5-.4.8-.4c1 0 1.5 1.3 1.5 2.2 0 .2 0 .6-.3.9-.1.1-.5.3-.8.3zm.1 4.7c-1.3 0-2.1-.6-2.1-1.4 0-.8.8-1.1 1-1.2.5-.2 1.1-.2 1.2-.2h.3c.9.6 1.3 1 1.3 1.6 0 .7-.6 1.2-1.7 1.2zM15 12h-1v-1h1v-1h1v1h1v1h-1v1h-1zM12 21c-5 0-9-4-9-9s4-9 9-9 9 4 9 9-4 9-9 9zm0-16c-3.9 0-7 3.1-7 7s3.1 7 7 7 7-3.1 7-7-3.1-7-7-7z" + }, + "children": [] + }] +}; +exports.socialGooglePlusCircular = socialGooglePlusCircular; \ No newline at end of file diff --git a/dist/typicons/socialInstagram.js b/dist/typicons/socialInstagram.js new file mode 100644 index 000000000..1b55bb304 --- /dev/null +++ b/dist/typicons/socialInstagram.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialInstagram = void 0; +var socialInstagram = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18 3h-12c-1.7 0-3 1.3-3 3v12c0 1.7 1.3 3 3 3h12c1.7 0 3-1.3 3-3v-12c0-1.7-1.3-3-3-3zm-6 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3zm3.8-2c0-.7.6-1.2 1.2-1.2s1.2.6 1.2 1.2-.5 1.2-1.2 1.2-1.2-.5-1.2-1.2zm2.2 12h-12c-.6 0-1-.4-1-1v-6h2c0 2.8 2.2 5 5 5s5-2.2 5-5h2v6c0 .6-.4 1-1 1z" + }, + "children": [] + }] +}; +exports.socialInstagram = socialInstagram; \ No newline at end of file diff --git a/dist/typicons/socialInstagramCircular.js b/dist/typicons/socialInstagramCircular.js new file mode 100644 index 000000000..51e724ede --- /dev/null +++ b/dist/typicons/socialInstagramCircular.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialInstagramCircular = void 0; +var socialInstagramCircular = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 3c-5 0-9 4-9 9s4 9 9 9 9-4 9-9-4-9-9-9zm0 7c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm2.8-2c0-.7.6-1.2 1.2-1.2s1.2.6 1.2 1.2-.5 1.2-1.2 1.2-1.2-.5-1.2-1.2zm-2.8 11c-3.9 0-7-3.1-7-7h3c0 2.2 1.8 4 4 4s4-1.8 4-4h3c0 3.9-3.1 7-7 7z" + }, + "children": [] + }] +}; +exports.socialInstagramCircular = socialInstagramCircular; \ No newline at end of file diff --git a/dist/typicons/socialLastFm.js b/dist/typicons/socialLastFm.js new file mode 100644 index 000000000..d3f2ab2e7 --- /dev/null +++ b/dist/typicons/socialLastFm.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialLastFm = void 0; +var socialLastFm = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M15.942 16.182c2.374 0 3.558-.791 3.558-2.373 0-1.304-.749-2.132-2.254-2.49l-1.119-.235c-.637-.159-.951-.495-.951-1.009 0-.594.396-.889 1.186-.889.869 0 1.323.334 1.363 1.006l1.717-.178c-.114-1.463-1.109-2.195-2.962-2.195-2.019 0-3.026.832-3.026 2.495 0 1.182.654 1.935 1.958 2.251l1.188.236c.79.196 1.186.555 1.186 1.068 0 .631-.614.949-1.842.949-1.498 0-2.489-.732-2.962-2.195l-.597-1.721c-.354-1.145-.796-1.947-1.334-2.401-.53-.45-1.367-.683-2.519-.683-1.069 0-2.007.396-2.815 1.188-.811.791-1.217 1.838-1.217 3.142 0 1.223.383 2.203 1.156 2.935.774.733 1.688 1.099 2.756 1.099 1.069 0 1.918-.256 2.55-.77l-.53-1.485c-.554.556-1.211.833-1.96.833-.63 0-1.175-.248-1.628-.744-.455-.492-.686-1.137-.686-1.927 0-.989.247-1.708.743-2.163.497-.455 1.056-.681 1.689-.681.674 0 1.155.177 1.457.53.296.357.56.912.797 1.662l.537 1.721c.632 2.014 2.154 3.024 4.561 3.024" + }, + "children": [] + }] +}; +exports.socialLastFm = socialLastFm; \ No newline at end of file diff --git a/dist/typicons/socialLastFmCircular.js b/dist/typicons/socialLastFmCircular.js new file mode 100644 index 000000000..10adf9422 --- /dev/null +++ b/dist/typicons/socialLastFmCircular.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialLastFmCircular = void 0; +var socialLastFmCircular = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12 21c-2.489 0-4.635-.89-6.376-2.646-1.741-1.751-2.624-3.89-2.624-6.354 0-2.489.884-4.633 2.627-6.375 1.74-1.741 3.885-2.625 6.373-2.625 2.466 0 4.604.883 6.354 2.624 1.755 1.742 2.646 3.887 2.646 6.376 0 2.464-.89 4.604-2.644 6.357-1.751 1.754-3.889 2.643-6.356 2.643zm0-16c-1.966 0-3.588.667-4.958 2.04-1.374 1.372-2.042 2.994-2.042 4.96 0 1.944.668 3.562 2.043 4.945 1.372 1.383 2.993 2.055 4.957 2.055 1.943 0 3.56-.673 4.941-2.056 1.386-1.385 2.059-3.002 2.059-4.944 0-1.963-.672-3.585-2.055-4.957-1.383-1.375-3-2.043-4.945-2.043zM14.199 14.333c1.335 0 2-.444 2-1.333 0-.733-.422-1.199-1.267-1.4l-.632-.133c-.354-.089-.534-.277-.534-.566 0-.334.224-.5.666-.5.49 0 .746.188.767.565l.967-.1c-.063-.822-.622-1.233-1.666-1.233-1.134 0-1.699.467-1.699 1.401 0 .665.365 1.088 1.099 1.267l.668.133c.443.11.666.312.666.601 0 .354-.345.532-1.034.532-.844 0-1.398-.411-1.666-1.233l-.334-.967c-.199-.644-.449-1.095-.75-1.35-.3-.255-.771-.384-1.416-.384-.601 0-1.128.223-1.584.667-.456.445-.683 1.033-.683 1.767 0 .688.216 1.239.649 1.649.435.413.95.617 1.55.617.602 0 1.078-.144 1.434-.433l-.299-.834c-.311.312-.679.468-1.101.468-.354 0-.662-.14-.916-.417-.257-.277-.385-.64-.385-1.084 0-.556.139-.961.417-1.217s.594-.383.951-.383c.379 0 .648.1.816.299.167.201.315.512.45.935l.3.967c.356 1.133 1.212 1.699 2.566 1.699" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12 21c-2.489 0-4.635-.89-6.376-2.646-1.741-1.751-2.624-3.89-2.624-6.354 0-2.489.884-4.633 2.627-6.375 1.74-1.741 3.885-2.625 6.373-2.625 2.466 0 4.604.883 6.354 2.624 1.755 1.742 2.646 3.887 2.646 6.376 0 2.464-.89 4.604-2.644 6.357-1.751 1.754-3.889 2.643-6.356 2.643zm0-16c-1.966 0-3.588.667-4.958 2.04-1.374 1.372-2.042 2.994-2.042 4.96 0 1.944.668 3.562 2.043 4.945 1.372 1.383 2.993 2.055 4.957 2.055 1.943 0 3.56-.673 4.941-2.056 1.386-1.385 2.059-3.002 2.059-4.944 0-1.963-.672-3.585-2.055-4.957-1.383-1.375-3-2.043-4.945-2.043zM14.199 14.333c1.335 0 2-.444 2-1.333 0-.733-.422-1.199-1.267-1.4l-.632-.133c-.354-.089-.534-.277-.534-.566 0-.334.224-.5.666-.5.49 0 .746.188.767.565l.967-.1c-.063-.822-.622-1.233-1.666-1.233-1.134 0-1.699.467-1.699 1.401 0 .665.365 1.088 1.099 1.267l.668.133c.443.11.666.312.666.601 0 .354-.345.532-1.034.532-.844 0-1.398-.411-1.666-1.233l-.334-.967c-.199-.644-.449-1.095-.75-1.35-.3-.255-.771-.384-1.416-.384-.601 0-1.128.223-1.584.667-.456.445-.683 1.033-.683 1.767 0 .688.216 1.239.649 1.649.435.413.95.617 1.55.617.602 0 1.078-.144 1.434-.433l-.299-.834c-.311.312-.679.468-1.101.468-.354 0-.662-.14-.916-.417-.257-.277-.385-.64-.385-1.084 0-.556.139-.961.417-1.217s.594-.383.951-.383c.379 0 .648.1.816.299.167.201.315.512.45.935l.3.967c.356 1.133 1.212 1.699 2.566 1.699" + }, + "children": [] + }] + }] + }] +}; +exports.socialLastFmCircular = socialLastFmCircular; \ No newline at end of file diff --git a/dist/typicons/socialLinkedin.js b/dist/typicons/socialLinkedin.js new file mode 100644 index 000000000..c54f98aa1 --- /dev/null +++ b/dist/typicons/socialLinkedin.js @@ -0,0 +1,26 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialLinkedin = void 0; +var socialLinkedin = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M8 19h-3v-10h3v10zm11 0h-3v-5.342c0-1.392-.496-2.085-1.479-2.085-.779 0-1.273.388-1.521 1.165v6.262h-3s.04-9 0-10h2.368l.183 2h.062c.615-1 1.598-1.678 2.946-1.678 1.025 0 1.854.285 2.487 1.001.637.717.954 1.679.954 3.03v5.647z" + }, + "children": [] + }, { + "name": "ellipse", + "attribs": { + "cx": "6.5", + "cy": "6.5", + "rx": "1.55", + "ry": "1.5" + }, + "children": [] + }] +}; +exports.socialLinkedin = socialLinkedin; \ No newline at end of file diff --git a/dist/typicons/socialLinkedinCircular.js b/dist/typicons/socialLinkedinCircular.js new file mode 100644 index 000000000..7c18b34a2 --- /dev/null +++ b/dist/typicons/socialLinkedinCircular.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialLinkedinCircular = void 0; +var socialLinkedinCircular = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M10.033 15.3h-1.6v-5.199h1.6v5.199zm-.8-5.866c-.577 0-.866-.267-.866-.8 0-.223.082-.412.25-.567.166-.155.371-.233.616-.233.577 0 .866.268.866.801s-.288.799-.866.799zm6.734 5.866h-1.633v-2.9c0-.755-.268-1.133-.801-1.133-.422 0-.699.211-.834.633-.043.067-.066.201-.066.4v3h-1.633v-3.533c0-.8-.012-1.355-.033-1.666h1.4l.1.699c.367-.556.9-.833 1.633-.833.557 0 1.006.194 1.35.583.346.389.518.95.518 1.684v3.066zM12 21c-4.963 0-9-4.037-9-9s4.037-9 9-9 9 4.037 9 9-4.037 9-9 9zm0-16c-3.859 0-7 3.141-7 7s3.141 7 7 7 7-3.141 7-7-3.141-7-7-7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M10.033 15.3h-1.6v-5.199h1.6v5.199zm-.8-5.866c-.577 0-.866-.267-.866-.8 0-.223.082-.412.25-.567.166-.155.371-.233.616-.233.577 0 .866.268.866.801s-.288.799-.866.799zm6.734 5.866h-1.633v-2.9c0-.755-.268-1.133-.801-1.133-.422 0-.699.211-.834.633-.043.067-.066.201-.066.4v3h-1.633v-3.533c0-.8-.012-1.355-.033-1.666h1.4l.1.699c.367-.556.9-.833 1.633-.833.557 0 1.006.194 1.35.583.346.389.518.95.518 1.684v3.066zM12 21c-4.963 0-9-4.037-9-9s4.037-9 9-9 9 4.037 9 9-4.037 9-9 9zm0-16c-3.859 0-7 3.141-7 7s3.141 7 7 7 7-3.141 7-7-3.141-7-7-7z" + }, + "children": [] + }] + }] + }] +}; +exports.socialLinkedinCircular = socialLinkedinCircular; \ No newline at end of file diff --git a/dist/typicons/socialPinterest.js b/dist/typicons/socialPinterest.js new file mode 100644 index 000000000..aa920da24 --- /dev/null +++ b/dist/typicons/socialPinterest.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialPinterest = void 0; +var socialPinterest = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12.486 4.771c-4.23 0-6.363 3.033-6.363 5.562 0 1.533.581 2.894 1.823 3.401.205.084.387.004.446-.221l.182-.717c.061-.221.037-.3-.127-.495-.359-.422-.588-.972-.588-1.747 0-2.25 1.683-4.264 4.384-4.264 2.392 0 3.706 1.463 3.706 3.412 0 2.568-1.137 4.734-2.824 4.734-.932 0-1.629-.77-1.405-1.715.268-1.13.786-2.347.786-3.16 0-.729-.392-1.336-1.2-1.336-.952 0-1.718.984-1.718 2.304 0 .841.286 1.409.286 1.409l-1.146 4.852c-.34 1.44-.051 3.206-.025 3.385.013.104.149.131.21.051.088-.115 1.223-1.517 1.607-2.915.111-.396.627-2.445.627-2.445.311.589 1.213 1.108 2.175 1.108 2.863 0 4.804-2.608 4.804-6.103-.003-2.64-2.24-5.1-5.64-5.1z" + }, + "children": [] + }] +}; +exports.socialPinterest = socialPinterest; \ No newline at end of file diff --git a/dist/typicons/socialPinterestCircular.js b/dist/typicons/socialPinterestCircular.js new file mode 100644 index 000000000..dd6237b58 --- /dev/null +++ b/dist/typicons/socialPinterestCircular.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialPinterestCircular = void 0; +var socialPinterestCircular = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M12 21c-4.963 0-9-4.037-9-9s4.037-9 9-9 9 4.037 9 9-4.037 9-9 9zm0-16c-3.859 0-7 3.141-7 7s3.141 7 7 7 7-3.141 7-7-3.141-7-7-7zM12.335 8c-2.468 0-3.712 1.77-3.712 3.244 0 .895.338 1.688 1.063 1.984.119.049.226.002.261-.129l.105-.418c.035-.129.021-.175-.074-.289-.209-.246-.344-.566-.344-1.019 0-1.312.982-2.487 2.558-2.487 1.396 0 2.161.853 2.161 1.99 0 1.498-.662 2.762-1.646 2.762-.543 0-.95-.449-.82-1.001.156-.658.459-1.368.459-1.843 0-.426-.229-.779-.7-.779-.556 0-1.002.574-1.002 1.344 0 .49.166.822.166.822l-.669 2.83c-.198.84-.029 1.87-.015 1.974.008.062.087.077.123.03.052-.067.713-.885.938-1.7.064-.23.366-1.427.366-1.427.18.344.707.646 1.268.646 1.67 0 2.803-1.521 2.803-3.56-.001-1.538-1.306-2.974-3.289-2.974z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12 21c-4.963 0-9-4.037-9-9s4.037-9 9-9 9 4.037 9 9-4.037 9-9 9zm0-16c-3.859 0-7 3.141-7 7s3.141 7 7 7 7-3.141 7-7-3.141-7-7-7zM12.335 8c-2.468 0-3.712 1.77-3.712 3.244 0 .895.338 1.688 1.063 1.984.119.049.226.002.261-.129l.105-.418c.035-.129.021-.175-.074-.289-.209-.246-.344-.566-.344-1.019 0-1.312.982-2.487 2.558-2.487 1.396 0 2.161.853 2.161 1.99 0 1.498-.662 2.762-1.646 2.762-.543 0-.95-.449-.82-1.001.156-.658.459-1.368.459-1.843 0-.426-.229-.779-.7-.779-.556 0-1.002.574-1.002 1.344 0 .49.166.822.166.822l-.669 2.83c-.198.84-.029 1.87-.015 1.974.008.062.087.077.123.03.052-.067.713-.885.938-1.7.064-.23.366-1.427.366-1.427.18.344.707.646 1.268.646 1.67 0 2.803-1.521 2.803-3.56-.001-1.538-1.306-2.974-3.289-2.974z" + }, + "children": [] + }] + }] + }] +}; +exports.socialPinterestCircular = socialPinterestCircular; \ No newline at end of file diff --git a/dist/typicons/socialSkype.js b/dist/typicons/socialSkype.js new file mode 100644 index 000000000..509229a74 --- /dev/null +++ b/dist/typicons/socialSkype.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialSkype = void 0; +var socialSkype = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M20.668 13.312c.059-.427.089-.846.089-1.251 0-2.437-.846-4.544-2.513-6.263-1.685-1.735-3.755-2.615-6.152-2.615-.279 0-.546.013-.801.038-.756-.35-1.568-.526-2.426-.526-1.609 0-3.053.61-4.174 1.765-1.105 1.135-1.691 2.585-1.691 4.192 0 .832.156 1.619.466 2.348-.047.357-.07.713-.07 1.062 0 2.438.853 4.547 2.532 6.267 1.693 1.732 3.768 2.61 6.164 2.61.254 0 .547-.02.896-.06.69.283 1.409.426 2.146.426 1.588 0 3.025-.614 4.157-1.777 1.117-1.143 1.709-2.6 1.709-4.211 0-.677-.111-1.349-.332-2.005zm-5.168 2.036c-.284.427-.729.781-1.339 1.065-.609.243-1.31.365-2.1.365-.954 0-1.756-.173-2.404-.519-.467-.262-.833-.598-1.096-1.003-.284-.447-.428-.862-.428-1.248 0-.243.092-.457.274-.639.184-.184.416-.274.7-.274.203 0 .406.072.609.213.162.162.283.366.364.609.021.02.153.253.396.7.102.141.284.283.547.425.245.122.568.183.975.183.548 0 1.005-.121 1.37-.364.324-.224.486-.507.486-.853 0-.284-.092-.498-.274-.639-.183-.184-.415-.324-.699-.427l-.319-.075-.457-.123c-.172-.051-.32-.086-.441-.106-.689-.141-1.277-.324-1.766-.548-.426-.162-.811-.445-1.156-.851-.283-.386-.426-.843-.426-1.37 0-.528.152-.994.457-1.4.304-.406.74-.711 1.308-.913.569-.224 1.219-.334 1.949-.334.548 0 1.066.07 1.552.213.468.162.843.355 1.127.579.263.243.477.486.639.729.142.324.214.589.214.791 0 .265-.092.488-.275.669-.201.204-.436.306-.699.306-.223 0-.416-.061-.578-.184-.102-.101-.233-.283-.396-.547-.121-.284-.314-.537-.577-.762-.243-.182-.619-.273-1.127-.273-.507 0-.892.102-1.156.305-.284.184-.426.396-.426.639 0 .162.05.296.152.396.102.143.232.255.396.336.102.06.274.132.518.212l.41.106c.213.053.391.087.533.107.283.061.771.192 1.461.396.406.141.791.323 1.156.548.346.242.599.517.762.82.162.365.242.771.242 1.217-.002.548-.154 1.056-.458 1.523z" + }, + "children": [] + }] +}; +exports.socialSkype = socialSkype; \ No newline at end of file diff --git a/dist/typicons/socialSkypeOutline.js b/dist/typicons/socialSkypeOutline.js new file mode 100644 index 000000000..66e2c2e70 --- /dev/null +++ b/dist/typicons/socialSkypeOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialSkypeOutline = void 0; +var socialSkypeOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M8.865 5c.751 0 1.44.202 2.069.609.324-.08.711-.121 1.157-.121 1.846 0 3.418.67 4.717 2.008 1.299 1.339 1.948 2.962 1.948 4.87 0 .466-.051.953-.152 1.461.264.589.396 1.187.396 1.794 0 1.097-.38 2.036-1.142 2.815-.761.781-1.668 1.173-2.725 1.173-.629 0-1.237-.162-1.825-.488-.527.081-.933.122-1.217.122-1.847 0-3.425-.67-4.733-2.009s-1.963-2.962-1.963-4.868c0-.447.051-.902.152-1.37-.364-.609-.547-1.288-.547-2.039 0-1.096.376-2.029 1.126-2.799.75-.772 1.664-1.158 2.739-1.158m3.135 10.53c-.406 0-.729-.061-.975-.183-.263-.142-.445-.284-.547-.425-.243-.447-.376-.681-.396-.7-.081-.243-.202-.447-.364-.609-.203-.14-.406-.213-.61-.213-.284 0-.517.091-.7.274-.183.182-.274.396-.274.639 0 .386.144.801.428 1.248.263.405.629.741 1.096 1.003.648.346 1.45.519 2.404.519.79 0 1.49-.122 2.1-.365.609-.284 1.055-.639 1.339-1.065.304-.467.456-.975.456-1.522 0-.445-.08-.852-.242-1.217-.163-.304-.416-.578-.762-.82-.365-.225-.75-.407-1.156-.548-.689-.204-1.178-.336-1.461-.396-.143-.021-.32-.055-.533-.107l-.41-.106c-.243-.08-.416-.152-.518-.212-.163-.081-.294-.193-.396-.336-.103-.1-.152-.233-.152-.396 0-.243.142-.455.426-.639.265-.203.649-.305 1.156-.305.508 0 .884.092 1.127.273.263.225.456.478.577.762.163.264.295.446.396.547.162.123.355.184.578.184.264 0 .498-.102.699-.306.184-.181.275-.404.275-.669 0-.202-.072-.467-.214-.791-.162-.243-.376-.486-.639-.729-.284-.224-.659-.417-1.127-.579-.485-.143-1.004-.213-1.552-.213-.73 0-1.38.11-1.948.335-.566.2-1.003.505-1.307.911-.305.406-.457.872-.457 1.4 0 .527.143.984.426 1.37.346.405.73.688 1.156.851.488.224 1.076.407 1.766.548.121.021.27.056.441.106l.457.123.319.075c.284.103.517.243.699.427.183.141.274.354.274.639 0 .346-.162.629-.486.853-.364.243-.821.364-1.369.364m-3.135-12.53c-1.609 0-3.053.61-4.174 1.765-1.105 1.134-1.691 2.585-1.691 4.192 0 .832.156 1.619.466 2.348-.047.357-.07.713-.07 1.062 0 2.438.853 4.547 2.532 6.267 1.693 1.732 3.768 2.61 6.164 2.61.254 0 .547-.02.896-.06.69.283 1.409.426 2.146.426 1.588 0 3.025-.614 4.157-1.777 1.117-1.143 1.709-2.6 1.709-4.211 0-.677-.111-1.349-.332-2.004.059-.427.089-.846.089-1.251 0-2.437-.846-4.544-2.513-6.263-1.685-1.735-3.755-2.615-6.152-2.615-.279 0-.546.013-.801.038-.756-.35-1.568-.527-2.426-.527z" + }, + "children": [] + }] +}; +exports.socialSkypeOutline = socialSkypeOutline; \ No newline at end of file diff --git a/dist/typicons/socialTumbler.js b/dist/typicons/socialTumbler.js new file mode 100644 index 000000000..e900e3ed2 --- /dev/null +++ b/dist/typicons/socialTumbler.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialTumbler = void 0; +var socialTumbler = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M15.527 17.921v-2.066c-.669.448-1.32.67-1.952.67-.298 0-.631-.094-1.004-.277-.223-.151-.354-.317-.393-.503-.11-.224-.178-.708-.178-1.454v-3.291h3v-2h-3v-3.356h-1.772c-.149.782-.298 1.338-.448 1.673-.184.41-.482.782-.891 1.116-.411.337-.837.577-1.285.725v1.842h1.396v4.521c0 .52.073.964.223 1.337.111.298.334.595.671.893.259.262.631.484 1.115.67.595.15 1.114.223 1.562.223.52 0 1.004-.056 1.45-.167.521-.112 1.023-.298 1.506-.556" + }, + "children": [] + }] +}; +exports.socialTumbler = socialTumbler; \ No newline at end of file diff --git a/dist/typicons/socialTumblerCircular.js b/dist/typicons/socialTumblerCircular.js new file mode 100644 index 000000000..0d6e2aba3 --- /dev/null +++ b/dist/typicons/socialTumblerCircular.js @@ -0,0 +1,39 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialTumblerCircular = void 0; +var socialTumblerCircular = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M14.377 15.59v-1.234c-.399.268-.788.4-1.166.4-.178 0-.377-.057-.6-.166-.134-.09-.211-.189-.234-.301-.066-.133-.1-.422-.1-.867v-1.966h1.834v-1.233h-1.834v-1.967h-1.066c-.089.467-.178.8-.267 1-.11.244-.288.467-.533.666-.245.201-.5.345-.767.434v1.101h.833v2.7c0 .311.044.576.134.799.066.178.199.355.4.533.154.156.377.289.666.4.355.09.666.133.934.133.311 0 .6-.033.866-.1.312-.067.612-.178.9-.332" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14.377 15.59v-1.234c-.399.268-.788.4-1.166.4-.178 0-.377-.057-.6-.166-.134-.09-.211-.189-.234-.301-.066-.133-.1-.422-.1-.867v-1.966h1.834v-1.233h-1.834v-1.967h-1.066c-.089.467-.178.8-.267 1-.11.244-.288.467-.533.666-.245.201-.5.345-.767.434v1.101h.833v2.7c0 .311.044.576.134.799.066.178.199.355.4.533.154.156.377.289.666.4.355.09.666.133.934.133.311 0 .6-.033.866-.1.312-.067.612-.178.9-.332" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M12 21c-4.963 0-9-4.037-9-9s4.037-9 9-9 9 4.037 9 9-4.037 9-9 9zm0-16c-3.859 0-7 3.141-7 7s3.141 7 7 7 7-3.141 7-7-3.141-7-7-7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M12 21c-4.963 0-9-4.037-9-9s4.037-9 9-9 9 4.037 9 9-4.037 9-9 9zm0-16c-3.859 0-7 3.141-7 7s3.141 7 7 7 7-3.141 7-7-3.141-7-7-7z" + }, + "children": [] + }] + }] + }] +}; +exports.socialTumblerCircular = socialTumblerCircular; \ No newline at end of file diff --git a/dist/typicons/socialTwitter.js b/dist/typicons/socialTwitter.js new file mode 100644 index 000000000..6450eba0d --- /dev/null +++ b/dist/typicons/socialTwitter.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialTwitter = void 0; +var socialTwitter = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.89 7.012c.808-.496 1.343-1.173 1.605-2.034-.786.417-1.569.703-2.351.861-.703-.756-1.593-1.14-2.66-1.14-1.043 0-1.924.366-2.643 1.078-.715.717-1.076 1.588-1.076 2.605 0 .309.039.585.117.819-3.076-.105-5.622-1.381-7.628-3.837-.34.601-.51 1.213-.51 1.846 0 1.301.549 2.332 1.645 3.089-.625-.053-1.176-.211-1.645-.47 0 .929.273 1.705.82 2.388.549.676 1.254 1.107 2.115 1.291-.312.08-.641.118-.979.118-.312 0-.533-.026-.664-.083.23.757.664 1.371 1.291 1.841.625.472 1.344.721 2.152.743-1.332 1.045-2.855 1.562-4.578 1.562-.422 0-.721-.006-.902-.038 1.697 1.102 3.586 1.649 5.676 1.649 2.139 0 4.029-.542 5.674-1.626 1.645-1.078 2.859-2.408 3.639-3.974.784-1.564 1.172-3.192 1.172-4.892v-.468c.758-.57 1.371-1.212 1.84-1.921-.68.293-1.383.492-2.11.593z" + }, + "children": [] + }] +}; +exports.socialTwitter = socialTwitter; \ No newline at end of file diff --git a/dist/typicons/socialTwitterCircular.js b/dist/typicons/socialTwitterCircular.js new file mode 100644 index 000000000..93167c1f9 --- /dev/null +++ b/dist/typicons/socialTwitterCircular.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialTwitterCircular = void 0; +var socialTwitterCircular = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M15.279 10.283c.358-.221.597-.521.713-.904-.349.186-.697.312-1.045.383-.312-.336-.708-.507-1.182-.507-.464 0-.855.163-1.175.479-.317.318-.478.706-.478 1.158 0 .137.017.26.052.364-1.368-.048-2.499-.614-3.391-1.706-.151.267-.227.539-.227.82 0 .578.244 1.036.73 1.373-.277-.023-.521-.094-.73-.209 0 .413.121.758.365 1.062.243.3.557.492.939.573-.139.036-.285.053-.435.053-.14 0-.237-.012-.296-.037.104.337.296.609.574.818.277.21.597.32.957.33-.591.465-1.269.694-2.035.694-.188 0-.32-.002-.4-.017.754.489 1.594.733 2.521.733.951 0 1.792-.241 2.522-.723.73-.479 1.271-1.07 1.617-1.767.348-.695.521-1.419.521-2.174v-.209c.336-.253.609-.538.818-.854-.298.133-.611.222-.935.267zM12 21c-2.49 0-4.635-.89-6.376-2.646-1.741-1.751-2.624-3.889-2.624-6.354 0-2.488.884-4.634 2.627-6.375 1.74-1.741 3.884-2.625 6.373-2.625 2.466 0 4.604.883 6.354 2.624 1.756 1.742 2.646 3.888 2.646 6.376 0 2.465-.889 4.604-2.644 6.357-1.751 1.753-3.889 2.643-6.356 2.643zm0-16c-1.966 0-3.588.667-4.958 2.04-1.375 1.372-2.042 2.994-2.042 4.96 0 1.944.668 3.562 2.043 4.945 1.372 1.383 2.993 2.055 4.957 2.055 1.943 0 3.56-.673 4.942-2.057 1.385-1.384 2.058-3.002 2.058-4.943 0-1.963-.672-3.585-2.055-4.957-1.383-1.375-3-2.043-4.945-2.043z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15.279 10.283c.358-.221.597-.521.713-.904-.349.186-.697.312-1.045.383-.312-.336-.708-.507-1.182-.507-.464 0-.855.163-1.175.479-.317.318-.478.706-.478 1.158 0 .137.017.26.052.364-1.368-.048-2.499-.614-3.391-1.706-.151.267-.227.539-.227.82 0 .578.244 1.036.73 1.373-.277-.023-.521-.094-.73-.209 0 .413.121.758.365 1.062.243.3.557.492.939.573-.139.036-.285.053-.435.053-.14 0-.237-.012-.296-.037.104.337.296.609.574.818.277.21.597.32.957.33-.591.465-1.269.694-2.035.694-.188 0-.32-.002-.4-.017.754.489 1.594.733 2.521.733.951 0 1.792-.241 2.522-.723.73-.479 1.271-1.07 1.617-1.767.348-.695.521-1.419.521-2.174v-.209c.336-.253.609-.538.818-.854-.298.133-.611.222-.935.267zM12 21c-2.49 0-4.635-.89-6.376-2.646-1.741-1.751-2.624-3.889-2.624-6.354 0-2.488.884-4.634 2.627-6.375 1.74-1.741 3.884-2.625 6.373-2.625 2.466 0 4.604.883 6.354 2.624 1.756 1.742 2.646 3.888 2.646 6.376 0 2.465-.889 4.604-2.644 6.357-1.751 1.753-3.889 2.643-6.356 2.643zm0-16c-1.966 0-3.588.667-4.958 2.04-1.375 1.372-2.042 2.994-2.042 4.96 0 1.944.668 3.562 2.043 4.945 1.372 1.383 2.993 2.055 4.957 2.055 1.943 0 3.56-.673 4.942-2.057 1.385-1.384 2.058-3.002 2.058-4.943 0-1.963-.672-3.585-2.055-4.957-1.383-1.375-3-2.043-4.945-2.043z" + }, + "children": [] + }] + }] + }] +}; +exports.socialTwitterCircular = socialTwitterCircular; \ No newline at end of file diff --git a/dist/typicons/socialVimeo.js b/dist/typicons/socialVimeo.js new file mode 100644 index 000000000..e42b43d77 --- /dev/null +++ b/dist/typicons/socialVimeo.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialVimeo = void 0; +var socialVimeo = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18.92 8.776c-.329 1.929-1.211 3.758-2.649 5.48-1.436 1.725-2.71 2.957-3.819 3.695-.699.331-1.293.34-1.786.034-.493-.31-.883-.751-1.169-1.325-.165-.328-.565-1.569-1.202-3.728-.636-2.155-1.017-3.315-1.139-3.479-.083-.163-.288-.184-.616-.061-.33.122-.555.226-.678.309-.123.081-.226.165-.308.245l-.554-.737.616-.74c.452-.492 1.026-1.007 1.724-1.54.7-.534 1.314-.862 1.848-.987.371-.08.679-.028.924.156.247.184.452.484.616.894.165.409.289.811.369 1.199.083.392.165.854.248 1.387.081.534.164.945.246 1.232.451 1.93.821 2.896 1.109 2.896.41 0 1.067-.863 1.971-2.59.41-.779.432-1.426.062-1.941-.369-.512-.943-.522-1.724-.029.123-.78.472-1.456 1.046-2.031 1.026-1.109 2.157-1.521 3.388-1.234 1.273.247 1.765 1.213 1.477 2.895z" + }, + "children": [] + }] +}; +exports.socialVimeo = socialVimeo; \ No newline at end of file diff --git a/dist/typicons/socialVimeoCircular.js b/dist/typicons/socialVimeoCircular.js new file mode 100644 index 000000000..e8f6d4de7 --- /dev/null +++ b/dist/typicons/socialVimeoCircular.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialVimeoCircular = void 0; +var socialVimeoCircular = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M14.463 9.141c-.512 0-.988.238-1.43.715-.311.312-.5.678-.566 1.101.207-.131.387-.196.541-.196.159 0 .29.07.393.212.199.278.188.629-.033 1.051-.489.934-.846 1.4-1.066 1.4-.156 0-.356-.522-.602-1.567-.043-.155-.088-.378-.133-.667-.045-.288-.088-.538-.133-.75-.045-.211-.111-.428-.2-.649s-.2-.384-.333-.483c-.094-.069-.202-.104-.327-.104l-.173.021c-.289.067-.623.245-1 .534-.379.288-.689.566-.934.833l-.334.4.301.399.166-.133c.066-.045.189-.101.367-.167l.191-.043c.069 0 .116.025.143.076.066.089.271.717.615 1.884.346 1.167.562 1.839.65 2.017.156.311.367.55.633.717.13.08.271.121.427.121.165 0 .346-.047.54-.139.601-.399 1.289-1.066 2.067-2 .778-.933 1.255-1.922 1.433-2.966.156-.911-.11-1.434-.799-1.567-.138-.035-.272-.05-.404-.05zM12 21c-4.963 0-9-4.037-9-9s4.037-9 9-9 9 4.037 9 9-4.037 9-9 9zm0-16c-3.859 0-7 3.141-7 7s3.141 7 7 7 7-3.141 7-7-3.141-7-7-7z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14.463 9.141c-.512 0-.988.238-1.43.715-.311.312-.5.678-.566 1.101.207-.131.387-.196.541-.196.159 0 .29.07.393.212.199.278.188.629-.033 1.051-.489.934-.846 1.4-1.066 1.4-.156 0-.356-.522-.602-1.567-.043-.155-.088-.378-.133-.667-.045-.288-.088-.538-.133-.75-.045-.211-.111-.428-.2-.649s-.2-.384-.333-.483c-.094-.069-.202-.104-.327-.104l-.173.021c-.289.067-.623.245-1 .534-.379.288-.689.566-.934.833l-.334.4.301.399.166-.133c.066-.045.189-.101.367-.167l.191-.043c.069 0 .116.025.143.076.066.089.271.717.615 1.884.346 1.167.562 1.839.65 2.017.156.311.367.55.633.717.13.08.271.121.427.121.165 0 .346-.047.54-.139.601-.399 1.289-1.066 2.067-2 .778-.933 1.255-1.922 1.433-2.966.156-.911-.11-1.434-.799-1.567-.138-.035-.272-.05-.404-.05zM12 21c-4.963 0-9-4.037-9-9s4.037-9 9-9 9 4.037 9 9-4.037 9-9 9zm0-16c-3.859 0-7 3.141-7 7s3.141 7 7 7 7-3.141 7-7-3.141-7-7-7z" + }, + "children": [] + }] + }] + }] +}; +exports.socialVimeoCircular = socialVimeoCircular; \ No newline at end of file diff --git a/dist/typicons/socialYoutube.js b/dist/typicons/socialYoutube.js new file mode 100644 index 000000000..fd2db6d04 --- /dev/null +++ b/dist/typicons/socialYoutube.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialYoutube = void 0; +var socialYoutube = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M22.8 8.6c-.2-1.5-.4-2.6-1-3-.6-.5-5.8-.6-9.8-.6s-9.2.1-9.8.6c-.6.4-.8 1.5-1 3s-.2 2.4-.2 3.4 0 1.9.2 3.4.4 2.6 1 3c.6.5 5.8.6 9.8.6 4 0 9.2-.1 9.8-.6.6-.4.8-1.5 1-3s.2-2.4.2-3.4 0-1.9-.2-3.4zm-12.8 7v-7.2l6 3.6-6 3.6z" + }, + "children": [] + }] +}; +exports.socialYoutube = socialYoutube; \ No newline at end of file diff --git a/dist/typicons/socialYoutubeCircular.js b/dist/typicons/socialYoutubeCircular.js new file mode 100644 index 000000000..c7754a7f1 --- /dev/null +++ b/dist/typicons/socialYoutubeCircular.js @@ -0,0 +1,47 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.socialYoutubeCircular = void 0; +var socialYoutubeCircular = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "polygon", + "attribs": { + "points": "8.48,13.14 9.21,13.14 9.21,16.75 9.91,16.75 9.91,13.14 10.64,13.14 10.64,12.53 8.48,12.53 " + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12.17,16c-0.12,0.14-0.53,0.42-0.53,0.02v-2.39h-0.62v2.61c0,0.79,0.79,0.58,1.16,0.17v0.34h0.62v-3.12h-0.62V16H12.17z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M14.48,13.61c-0.36,0-0.59,0.27-0.59,0.27v-1.36h-0.63v4.23h0.63v-0.24c0,0,0.21,0.28,0.59,0.28c0.33,0,0.58-0.29,0.58-0.69\r\n\tc0,0,0-1.26,0-1.73S14.84,13.61,14.48,13.61z M14.41,16.02c0,0.23-0.16,0.34-0.37,0.25c-0.05-0.02-0.1-0.06-0.15-0.11v-1.94\r\n\tc0.04-0.04,0.09-0.07,0.13-0.1c0.22-0.11,0.39,0.06,0.39,0.29L14.41,16.02L14.41,16.02z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M16.72,15.86c0,0.24-0.13,0.4-0.28,0.41c-0.16,0.01-0.32-0.12-0.32-0.41v-0.59h1.19v-0.8c0-0.29-0.11-0.51-0.26-0.66\r\n\tc-0.17-0.16-0.4-0.24-0.63-0.24c-0.22,0-0.45,0.07-0.63,0.21c-0.19,0.15-0.31,0.38-0.31,0.69v1.4c0,0.28,0.09,0.5,0.23,0.66\r\n\tc0.17,0.18,0.4,0.28,0.64,0.29c0.29,0.01,0.6-0.11,0.78-0.36c0.11-0.15,0.18-0.35,0.18-0.59v-0.16h-0.59\r\n\tC16.72,15.71,16.72,15.76,16.72,15.86z M16.12,14.47c0-0.17,0.1-0.37,0.29-0.37s0.31,0.18,0.31,0.37s0,0.32,0,0.32h-0.6\r\n\tC16.12,14.78,16.12,14.64,16.12,14.47z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12.97,3c-4.97,0-9,4.03-9,9s4.03,9,9,9s9-4.03,9-9S17.94,3,12.97,3z M14.55,6.37h0.8v2.68c0,0.17,0.08,0.17,0.11,0.17\r\n\tc0.12,0,0.3-0.13,0.39-0.22V6.36h0.8V9.9h-0.8V9.59c-0.11,0.1-0.22,0.18-0.33,0.24c-0.15,0.08-0.29,0.11-0.43,0.11\r\n\tc-0.18,0-0.31-0.06-0.41-0.17c-0.09-0.11-0.13-0.28-0.13-0.49V6.37z M12,7.3c0-0.55,0.45-1,1-1s1,0.45,1,1V9c0,0.55-0.45,1-1,1\r\n\ts-1-0.45-1-1V7.3z M9.92,5.15l0.48,1.76l0.49-1.76h0.91l-0.94,2.78V9.9H9.97V7.93L9.01,5.15H9.92z M17.82,17.69\r\n\tc-0.51,0.5-4.83,0.51-4.83,0.51s-4.31-0.01-4.83-0.51c-0.51-0.5-0.51-2.99-0.51-3.01c0-0.01,0-2.5,0.51-3.01\r\n\tc0.51-0.5,4.83-0.51,4.83-0.51s4.31,0.01,4.83,0.51c0.51,0.5,0.52,2.99,0.52,3.01C18.34,14.68,18.34,17.18,17.82,17.69z" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M12.98,9.35c0.17,0,0.25-0.1,0.26-0.26v-1.9c0-0.13-0.13-0.24-0.25-0.24s-0.25,0.1-0.25,0.24v1.9\r\n\tC12.74,9.24,12.81,9.34,12.98,9.35z" + }, + "children": [] + }] +}; +exports.socialYoutubeCircular = socialYoutubeCircular; \ No newline at end of file diff --git a/dist/typicons/sortAlphabetically.js b/dist/typicons/sortAlphabetically.js new file mode 100644 index 000000000..9f75d61ae --- /dev/null +++ b/dist/typicons/sortAlphabetically.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.sortAlphabetically = void 0; +var sortAlphabetically = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M10.895 16.553l-4-8c-.339-.678-1.45-.678-1.789 0l-4 8c-.247.494-.047 1.095.447 1.342.495.248 1.095.046 1.342-.447l.723-1.448h4.764l.724 1.447c.175.351.528.553.895.553.15 0 .303-.034.446-.105.494-.248.695-.848.448-1.342zm-6.277-2.553l1.382-2.764 1.382 2.764h-2.764zM22 18h-6c-.379 0-.725-.214-.895-.553s-.132-.744.095-1.047l4.8-6.4h-4c-.552 0-1-.448-1-1s.448-1 1-1h6c.379 0 .725.214.895.553s.132.744-.095 1.047l-4.8 6.4h4c.552 0 1 .448 1 1s-.448 1-1 1zM14 14h-2c-.552 0-1-.448-1-1s.448-1 1-1h2c.552 0 1 .448 1 1s-.448 1-1 1z" + }, + "children": [] + }] +}; +exports.sortAlphabetically = sortAlphabetically; \ No newline at end of file diff --git a/dist/typicons/sortAlphabeticallyOutline.js b/dist/typicons/sortAlphabeticallyOutline.js new file mode 100644 index 000000000..359b27879 --- /dev/null +++ b/dist/typicons/sortAlphabeticallyOutline.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.sortAlphabeticallyOutline = void 0; +var sortAlphabeticallyOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M5.618 14h2.764l-1.382-2.764zM21 14l2.4-3.2c.686-.915.795-2.119.284-3.142-.512-1.023-1.54-1.658-2.684-1.658h-6c-1.654 0-3 1.346-3 3 0 .77.295 1.469.774 2h-.274c-.368 0-.708.107-1.005.281l-1.811-3.623c-.498-.995-1.527-1.614-2.684-1.614s-2.186.619-2.684 1.614l-4 8c-.358.717-.416 1.53-.163 2.291s.788 1.376 1.504 1.735c.414.207.879.316 1.342.316 1.143 0 2.171-.635 2.684-1.657l.171-.343h2.291l.171.342c.512 1.023 1.54 1.658 2.684 1.658.464 0 .928-.109 1.342-.316.243-.122.455-.282.652-.458.54.488 1.246.774 2.006.774h6c1.654 0 3-1.346 3-3s-1.346-3-3-3zm-9.553 3.895c-.143.071-.296.105-.446.105-.368 0-.721-.203-.896-.553l-.723-1.447h-4.764l-.724 1.447c-.175.35-.528.553-.895.553-.15 0-.303-.034-.446-.106-.494-.247-.694-.848-.447-1.342l4-8c.169-.338.532-.508.894-.508s.725.169.895.508l4 8c.247.495.046 1.095-.448 1.343zm1.053-3.895c-.552 0-1-.448-1-1s.448-1 1-1h1c.552 0 1 .448 1 1s-.448 1-1 1h-1zm8.5 4h-6c-.379 0-.725-.214-.895-.553s-.132-.744.095-1.047l4.8-6.4h-4c-.552 0-1-.448-1-1s.448-1 1-1h6c.379 0 .725.214.895.553s.132.744-.095 1.047l-4.8 6.4h4c.552 0 1 .448 1 1s-.448 1-1 1z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M5.618 14h2.764l-1.382-2.764zM21 14l2.4-3.2c.686-.915.795-2.119.284-3.142-.512-1.023-1.54-1.658-2.684-1.658h-6c-1.654 0-3 1.346-3 3 0 .77.295 1.469.774 2h-.274c-.368 0-.708.107-1.005.281l-1.811-3.623c-.498-.995-1.527-1.614-2.684-1.614s-2.186.619-2.684 1.614l-4 8c-.358.717-.416 1.53-.163 2.291s.788 1.376 1.504 1.735c.414.207.879.316 1.342.316 1.143 0 2.171-.635 2.684-1.657l.171-.343h2.291l.171.342c.512 1.023 1.54 1.658 2.684 1.658.464 0 .928-.109 1.342-.316.243-.122.455-.282.652-.458.54.488 1.246.774 2.006.774h6c1.654 0 3-1.346 3-3s-1.346-3-3-3zm-9.553 3.895c-.143.071-.296.105-.446.105-.368 0-.721-.203-.896-.553l-.723-1.447h-4.764l-.724 1.447c-.175.35-.528.553-.895.553-.15 0-.303-.034-.446-.106-.494-.247-.694-.848-.447-1.342l4-8c.169-.338.532-.508.894-.508s.725.169.895.508l4 8c.247.495.046 1.095-.448 1.343zm1.053-3.895c-.552 0-1-.448-1-1s.448-1 1-1h1c.552 0 1 .448 1 1s-.448 1-1 1h-1zm8.5 4h-6c-.379 0-.725-.214-.895-.553s-.132-.744.095-1.047l4.8-6.4h-4c-.552 0-1-.448-1-1s.448-1 1-1h6c.379 0 .725.214.895.553s.132.744-.095 1.047l-4.8 6.4h4c.552 0 1 .448 1 1s-.448 1-1 1z" + }, + "children": [] + }] + }] + }] +}; +exports.sortAlphabeticallyOutline = sortAlphabeticallyOutline; \ No newline at end of file diff --git a/dist/typicons/sortNumerically.js b/dist/typicons/sortNumerically.js new file mode 100644 index 000000000..284524c0a --- /dev/null +++ b/dist/typicons/sortNumerically.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.sortNumerically = void 0; +var sortNumerically = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M4 18c-.552 0-1-.448-1-1v-6.382l-.553.276c-.495.248-1.095.046-1.342-.447-.247-.494-.046-1.094.448-1.342l2-1c.31-.155.678-.139.973.044.294.183.474.504.474.851v8c0 .552-.448 1-1 1zM13 18h-5c-.404 0-.769-.244-.924-.617-.155-.374-.069-.804.217-1.09l4-4c.254-.254.394-.591.394-.95 0-.358-.14-.695-.394-.949-.508-.508-1.39-.508-1.9.001-.253.252-.393.589-.393.948 0 .552-.448 1-1 1s-1-.448-1-1c0-.894.348-1.733.98-2.364 1.265-1.263 3.464-1.263 4.727.001.632.631.979 1.471.979 2.363 0 .893-.348 1.733-.979 2.364l-2.293 2.293h2.586c.552 0 1 .448 1 1s-.448 1-1 1zM20.955 12.377c.338-.457.545-1.016.545-1.627 0-1.517-1.234-2.75-2.75-2.75-1.031 0-1.966.569-2.44 1.484-.254.49-.063 1.094.428 1.348.49.254 1.094.062 1.348-.428.128-.249.383-.404.664-.404.414 0 .75.336.75.75s-.336.75-.75.75c-.552 0-1 .448-1 1s.448 1 1 1c.689 0 1.25.561 1.25 1.25s-.561 1.25-1.25 1.25-1.25-.561-1.25-1.25c0-.552-.448-1-1-1s-1 .448-1 1c0 1.792 1.458 3.25 3.25 3.25s3.25-1.458 3.25-3.25c0-.939-.406-1.779-1.045-2.373z" + }, + "children": [] + }] +}; +exports.sortNumerically = sortNumerically; \ No newline at end of file diff --git a/dist/typicons/sortNumericallyOutline.js b/dist/typicons/sortNumericallyOutline.js new file mode 100644 index 000000000..cc3da1e47 --- /dev/null +++ b/dist/typicons/sortNumericallyOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.sortNumericallyOutline = void 0; +var sortNumericallyOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M23.292 12.134c.138-.445.208-.91.208-1.384 0-2.619-2.131-4.75-4.75-4.75-1.396 0-2.685.61-3.573 1.632l-.056-.067c-.973-.974-2.349-1.533-3.776-1.533-1.422 0-2.794.556-3.77 1.525-.264-.431-.644-.813-1.122-1.108-.474-.294-1.032-.449-1.613-.449-.482 0-.955.109-1.369.316l-1.406.747c-1.442.721-2.051 2.526-1.313 4.002.272.543.714.982 1.248 1.272v4.663c0 1.654 1.346 3 3 3 .766 0 1.458-.297 1.989-.771.54.487 1.25.771 2.011.771h5c.778 0 1.479-.305 2.01-.795.796.5 1.731.795 2.74.795 2.895 0 5.25-2.355 5.25-5.25 0-.922-.25-1.825-.708-2.616zm-17.292 4.866c0 .552-.448 1-1 1s-1-.448-1-1v-6.382c-.144.072-.306.106-.471.106-.401 0-.813-.203-.988-.553-.247-.494-.031-1.095.463-1.342l1.361-.724c.141-.07.307-.105.475-.105.199 0 .4.05.561.149.294.183.599.504.599.851v8zm8 1h-5c-.404 0-.769-.244-.924-.617-.155-.374-.069-.804.217-1.09l4-4c.254-.254.394-.591.394-.95 0-.358-.14-.695-.394-.949s-.601-.381-.949-.381-.696.127-.952.382c-.252.252-.392.589-.392.948 0 .552-.448 1-1 1s-1-.448-1-1c0-.894.348-1.733.98-2.364.632-.631 1.498-.947 2.364-.947s1.731.316 2.363.948c.632.631.979 1.471.979 2.363 0 .893-.348 1.733-.979 2.364l-2.293 2.293h2.586c.552 0 1 .448 1 1s-.448 1-1 1zm4.75 0c-1.792 0-3.25-1.458-3.25-3.25 0-.552.448-1 1-1s1 .448 1 1c0 .689.561 1.25 1.25 1.25s1.25-.561 1.25-1.25-.561-1.25-1.25-1.25c-.552 0-1-.448-1-1s.448-1 1-1c.414 0 .75-.336.75-.75s-.336-.75-.75-.75c-.281 0-.536.155-.665.404-.178.343-.527.54-.889.54-.155 0-.312-.036-.459-.112-.491-.254-.682-.857-.428-1.348.475-.915 1.41-1.484 2.441-1.484 1.516 0 2.75 1.233 2.75 2.75 0 .611-.207 1.17-.545 1.627.639.594 1.045 1.434 1.045 2.373 0 1.792-1.458 3.25-3.25 3.25z" + }, + "children": [] + }] +}; +exports.sortNumericallyOutline = sortNumericallyOutline; \ No newline at end of file diff --git a/dist/typicons/spanner.js b/dist/typicons/spanner.js new file mode 100644 index 000000000..390cff845 --- /dev/null +++ b/dist/typicons/spanner.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.spanner = void 0; +var spanner = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M20.285 7.119c-.05-.168-.184-.299-.354-.344-.172-.047-.352.003-.477.126l-2.616 2.557-1.914-.383-.381-1.907 2.645-2.585c.126-.123.178-.303.137-.474s-.168-.308-.336-.361c-.531-.166-1.018-.248-1.489-.248-2.757 0-5 2.243-5 5 0 .323.038.65.118 1.01-.562.463-1.096.862-1.701 1.314-.865.646-1.845 1.377-3.182 2.506-.785.686-1.235 1.659-1.235 2.67 0 1.93 1.57 3.5 3.5 3.5 1.021 0 1.993-.456 2.662-1.25 1.149-1.347 1.891-2.336 2.544-3.209.442-.591.832-1.111 1.283-1.66.36.081.688.119 1.011.119 2.757 0 5-2.243 5-5 0-.437-.068-.875-.215-1.381zm-12.285 9.881c-.553 0-1-.447-1-1s.447-1 1-1 1 .447 1 1-.447 1-1 1z" + }, + "children": [] + }] +}; +exports.spanner = spanner; \ No newline at end of file diff --git a/dist/typicons/spannerOutline.js b/dist/typicons/spannerOutline.js new file mode 100644 index 000000000..29934218c --- /dev/null +++ b/dist/typicons/spannerOutline.js @@ -0,0 +1,43 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.spannerOutline = void 0; +var spannerOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "circle", + "attribs": { + "cx": "8", + "cy": "16", + "r": "1" + }, + "children": [{ + "name": "circle", + "attribs": { + "cx": "8", + "cy": "16", + "r": "1" + }, + "children": [] + }] + }, { + "name": "path", + "attribs": { + "d": "M20.733 4.657c-.392-.378-1.013-.377-1.399.009.387-.386.388-1.008.01-1.4-1.078-.792-2.405-1.266-3.844-1.266-3.59 0-6.5 2.91-6.5 6.5l.031.379c-.337.239-2.893 2.147-4.258 3.301-1.135.99-1.773 2.375-1.773 3.82 0 2.757 2.243 5 5 5 1.465 0 2.854-.65 3.811-1.784 1.173-1.375 3.08-3.923 3.317-4.229l.372.013c3.59 0 6.5-2.91 6.5-6.5 0-1.44-.474-2.766-1.267-3.843zm-12.733 14.343c-1.656 0-3-1.343-3-3 0-.92.423-1.732 1.064-2.292 2.368-2.002 3.617-2.748 5.115-4.015-.105-.382-.179-.777-.179-1.193 0-2.485 2.015-4.5 4.5-4.5.47 0 .914.092 1.339.226l-2.839 2.774.5 2.5 2.5.5 2.805-2.741c.115.396.195.807.195 1.241 0 2.485-2.015 4.5-4.5 4.5-.416 0-.811-.074-1.193-.18-1.267 1.498-2.013 2.748-4.024 5.105-.551.652-1.363 1.075-2.283 1.075zm11.384-12.729l-2.705 2.645-1.329-.266-.263-1.314 2.726-2.663c.651.393 1.19.939 1.571 1.598z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M20.733 4.657c-.392-.378-1.013-.377-1.399.009.387-.386.388-1.008.01-1.4-1.078-.792-2.405-1.266-3.844-1.266-3.59 0-6.5 2.91-6.5 6.5l.031.379c-.337.239-2.893 2.147-4.258 3.301-1.135.99-1.773 2.375-1.773 3.82 0 2.757 2.243 5 5 5 1.465 0 2.854-.65 3.811-1.784 1.173-1.375 3.08-3.923 3.317-4.229l.372.013c3.59 0 6.5-2.91 6.5-6.5 0-1.44-.474-2.766-1.267-3.843zm-12.733 14.343c-1.656 0-3-1.343-3-3 0-.92.423-1.732 1.064-2.292 2.368-2.002 3.617-2.748 5.115-4.015-.105-.382-.179-.777-.179-1.193 0-2.485 2.015-4.5 4.5-4.5.47 0 .914.092 1.339.226l-2.839 2.774.5 2.5 2.5.5 2.805-2.741c.115.396.195.807.195 1.241 0 2.485-2.015 4.5-4.5 4.5-.416 0-.811-.074-1.193-.18-1.267 1.498-2.013 2.748-4.024 5.105-.551.652-1.363 1.075-2.283 1.075zm11.384-12.729l-2.705 2.645-1.329-.266-.263-1.314 2.726-2.663c.651.393 1.19.939 1.571 1.598z" + }, + "children": [] + }] + }] + }] +}; +exports.spannerOutline = spannerOutline; \ No newline at end of file diff --git a/dist/typicons/spiral.js b/dist/typicons/spiral.js new file mode 100644 index 000000000..ff53bdabd --- /dev/null +++ b/dist/typicons/spiral.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.spiral = void 0; +var spiral = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 11.8c1-.4.7-1.8 0-2.4-1.1-.9-2.7-.4-3.4.8-1.5 2.4.9 5 3.4 4.9 2.7-.2 4.3-2.9 3.7-5.4-.7-3-3.9-4.5-6.7-3.6-2.6.8-4.2 3.5-4 6.2.3 3 2.6 5.4 5.5 5.9 2.8.5 5.7-.8 7.2-3.2.7-1.1 1.2-2.4 1.2-3.8 0-.5.5-1 1.1-.9.8 0 1 .8.9 1.4-.4 4.7-4.5 8.6-9.3 8.6-5.9 0-10.5-6.2-8-11.8 2.5-5.4 10.3-6.5 13.3-1.2 1.5 2.5 1.2 5.8-.9 7.9-2 2-5.3 2.4-7.7.7-2.2-1.6-2.9-4.9-1.1-7.2 1.7-2.3 5.5-2.4 7 .2 1.1 1.9 0 5.2-2.5 4.9-1.6 0-3-1.7-2.1-3.2.6-.9 1.9-.6 2.3.1.2.8.1 1.1.1 1.1z" + }, + "children": [] + }] +}; +exports.spiral = spiral; \ No newline at end of file diff --git a/dist/typicons/star.js b/dist/typicons/star.js new file mode 100644 index 000000000..b7c57877e --- /dev/null +++ b/dist/typicons/star.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.star = void 0; +var star = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M9.362 9.158l-5.268.584c-.19.023-.358.15-.421.343s0 .394.14.521c1.566 1.429 3.919 3.569 3.919 3.569-.002 0-.646 3.113-1.074 5.19-.036.188.032.387.196.506.163.119.373.121.538.028 1.844-1.048 4.606-2.624 4.606-2.624l4.604 2.625c.168.092.378.09.541-.029.164-.119.232-.318.195-.505l-1.071-5.191 3.919-3.566c.14-.131.202-.332.14-.524s-.23-.319-.42-.341c-2.108-.236-5.269-.586-5.269-.586l-2.183-4.83c-.082-.173-.254-.294-.456-.294s-.375.122-.453.294l-2.183 4.83z" + }, + "children": [] + }] +}; +exports.star = star; \ No newline at end of file diff --git a/dist/typicons/starFullOutline.js b/dist/typicons/starFullOutline.js new file mode 100644 index 000000000..baffdb355 --- /dev/null +++ b/dist/typicons/starFullOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.starFullOutline = void 0; +var starFullOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M3.1 11.3l3.6 3.3-1 4.6c-.1.6.1 1.2.6 1.5.2.2.5.3.8.3.2 0 .4 0 .6-.1 0 0 .1 0 .1-.1l4.1-2.3 4.1 2.3s.1 0 .1.1c.5.2 1.1.2 1.5-.1.5-.3.7-.9.6-1.5l-1-4.6c.4-.3 1-.9 1.6-1.5l1.9-1.7.1-.1c.4-.4.5-1 .3-1.5s-.6-.9-1.2-1h-.1l-4.7-.5-1.9-4.3s0-.1-.1-.1c-.1-.7-.6-1-1.1-1-.5 0-1 .3-1.3.8 0 0 0 .1-.1.1l-1.9 4.3-4.7.5h-.1c-.5.1-1 .5-1.2 1-.1.6 0 1.2.4 1.6z" + }, + "children": [] + }] +}; +exports.starFullOutline = starFullOutline; \ No newline at end of file diff --git a/dist/typicons/starHalf.js b/dist/typicons/starHalf.js new file mode 100644 index 000000000..9d762f75b --- /dev/null +++ b/dist/typicons/starHalf.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.starHalf = void 0; +var starHalf = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M11.5 4.3c-.9 1.9-2.2 4.8-2.2 4.8s-3.1.4-5.2.6c-.2 0-.4.2-.4.3-.1.2 0 .4.1.5 1.6 1.4 3.9 3.6 3.9 3.6s-.6 3.1-1.1 5.2c0 .2 0 .4.2.5.2.2.4.2.6.1 1.8-1 4.6-2.6 4.6-2.6v-13.3c-.2 0-.4.2-.5.3z" + }, + "children": [] + }] +}; +exports.starHalf = starHalf; \ No newline at end of file diff --git a/dist/typicons/starHalfOutline.js b/dist/typicons/starHalfOutline.js new file mode 100644 index 000000000..a647d2e4f --- /dev/null +++ b/dist/typicons/starHalfOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.starHalfOutline = void 0; +var starHalfOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M3.1 11.3l3.6 3.3-1 4.6c-.1.6.1 1.2.6 1.5.2.2.5.3.8.3.2 0 .4 0 .6-.1 0 0 .1 0 .1-.1l4.1-2.3 4.1 2.3s.1 0 .1.1c.5.2 1.1.2 1.5-.1.5-.3.7-.9.6-1.5l-1-4.6c.4-.3 1-.9 1.6-1.5l1.9-1.7.1-.1c.4-.4.5-1 .3-1.5s-.6-.9-1.2-1h-.1l-4.7-.5-1.9-4.3s0-.1-.1-.1c-.1-.7-.6-1-1.1-1-.5 0-1 .3-1.3.8 0 0 0 .1-.1.1l-1.9 4.3-4.7.5h-.1c-.5.1-1 .5-1.2 1-.1.6 0 1.2.4 1.6zm8.9 5v-10.5l1.7 3.8c.1.3.5.5.8.6l4.2.5-3.1 2.8c-.3.2-.4.6-.3 1 0 .2.5 2.2.8 4.1l-3.6-2.1c-.2-.2-.3-.2-.5-.2z" + }, + "children": [] + }] +}; +exports.starHalfOutline = starHalfOutline; \ No newline at end of file diff --git a/dist/typicons/starOutline.js b/dist/typicons/starOutline.js new file mode 100644 index 000000000..ec27bad26 --- /dev/null +++ b/dist/typicons/starOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.starOutline = void 0; +var starOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M16.855 20.966c-.224 0-.443-.05-.646-.146l-.104-.051-4.107-2.343-4.107 2.344-.106.053c-.488.228-1.085.174-1.521-.143-.469-.34-.701-.933-.586-1.509l.957-4.642-1.602-1.457-1.895-1.725-.078-.082c-.375-.396-.509-.97-.34-1.492.173-.524.62-.912 1.16-1.009l.102-.018 4.701-.521 1.946-4.31.06-.11c.262-.473.764-.771 1.309-.771.543 0 1.044.298 1.309.77l.06.112 1.948 4.312 4.701.521.104.017c.539.1.986.486 1.158 1.012.17.521.035 1.098-.34 1.494l-.078.078-3.498 3.184.957 4.632c.113.587-.118 1.178-.59 1.519-.252.182-.556.281-.874.281zm-8.149-6.564c-.039.182-.466 2.246-.845 4.082l3.643-2.077c.307-.175.684-.175.99 0l3.643 2.075-.849-4.104c-.071-.346.045-.705.308-.942l3.1-2.822-4.168-.461c-.351-.039-.654-.26-.801-.584l-1.728-3.821-1.726 3.821c-.146.322-.45.543-.801.584l-4.168.461 3.1 2.822c.272.246.384.617.302.966z" + }, + "children": [] + }] +}; +exports.starOutline = starOutline; \ No newline at end of file diff --git a/dist/typicons/starburst.js b/dist/typicons/starburst.js new file mode 100644 index 000000000..aa3eeb342 --- /dev/null +++ b/dist/typicons/starburst.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.starburst = void 0; +var starburst = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M19.064 10.109l1.179-2.387c.074-.149.068-.327-.015-.471-.083-.145-.234-.238-.401-.249l-2.656-.172-.172-2.656c-.011-.167-.104-.317-.249-.401-.145-.084-.322-.09-.472-.015l-2.385 1.18-1.477-2.215c-.186-.278-.646-.278-.832 0l-1.477 2.215-2.385-1.18c-.151-.075-.327-.069-.472.015-.145.083-.238.234-.249.401l-.171 2.656-2.657.171c-.167.011-.318.104-.401.249-.084.145-.089.322-.015.472l1.179 2.386-2.214 1.477c-.139.093-.223.249-.223.416s.083.323.223.416l2.215 1.477-1.18 2.386c-.074.15-.068.327.015.472.083.144.234.238.401.248l2.656.171.171 2.657c.011.167.104.317.249.401.144.083.32.088.472.015l2.386-1.179 1.477 2.214c.093.139.249.223.416.223s.323-.083.416-.223l1.477-2.214 2.386 1.179c.15.073.327.068.472-.015s.238-.234.249-.401l.171-2.656 2.656-.172c.167-.011.317-.104.401-.249.083-.145.089-.322.015-.472l-1.179-2.385 2.214-1.478c.139-.093.223-.249.223-.416s-.083-.323-.223-.416l-2.214-1.475z" + }, + "children": [] + }] +}; +exports.starburst = starburst; \ No newline at end of file diff --git a/dist/typicons/starburstOutline.js b/dist/typicons/starburstOutline.js new file mode 100644 index 000000000..6f2a03bb2 --- /dev/null +++ b/dist/typicons/starburstOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.starburstOutline = void 0; +var starburstOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M21.556 11.169l-1.849-1.232.984-1.993c.148-.3.137-.654-.03-.943-.168-.29-.468-.477-.802-.498l-2.218-.143-.144-2.218c-.02-.334-.208-.635-.497-.802-.29-.167-.645-.18-.943-.03l-1.991.985-1.233-1.849c-.371-.557-1.293-.557-1.664 0l-1.234 1.848-1.992-.984c-.299-.15-.654-.137-.943.03-.29.167-.477.468-.498.802l-.143 2.217-2.218.143c-.334.022-.635.209-.802.498s-.179.644-.03.943l.984 1.993-1.849 1.233c-.278.186-.445.498-.445.832s.167.646.445.832l1.85 1.233-.985 1.992c-.148.3-.137.654.03.943s.468.477.802.498l2.218.143.143 2.218c.021.333.208.634.498.801s.642.179.943.031l1.992-.985 1.233 1.849c.186.278.498.445.832.445s.646-.167.832-.445l1.233-1.849 1.991.985c.299.148.653.136.943-.03.29-.167.477-.468.498-.802l.143-2.217 2.219-.144c.334-.021.635-.208.802-.498s.179-.644.03-.943l-.984-1.992 1.849-1.233c.278-.186.445-.498.445-.832 0-.334-.167-.647-.445-.832zm-4.032 2.997l.71 1.435-1.6.104c-.502.033-.901.432-.934.934l-.103 1.598-1.435-.709c-.45-.224-.996-.077-1.275.342l-.887 1.33-.889-1.333c-.191-.287-.508-.445-.833-.445-.149 0-.3.033-.442.104l-1.436.709-.103-1.598c-.032-.501-.432-.901-.934-.934l-1.596-.103.71-1.435c.223-.451.076-.997-.342-1.275l-1.333-.889 1.332-.888c.418-.279.564-.825.342-1.275l-.71-1.436 1.6-.103c.502-.033.901-.432.934-.934l.103-1.598 1.435.709c.448.221.996.076 1.275-.342l.887-1.331.889 1.333c.279.418.826.563 1.275.342l1.436-.71.104 1.599c.033.501.433.9.934.933l1.598.103-.709 1.437c-.223.451-.076.996.342 1.275l1.332.888-1.333.889c-.42.277-.566.823-.344 1.274z" + }, + "children": [] + }] +}; +exports.starburstOutline = starburstOutline; \ No newline at end of file diff --git a/dist/typicons/stopwatch.js b/dist/typicons/stopwatch.js new file mode 100644 index 000000000..cf0c3cc71 --- /dev/null +++ b/dist/typicons/stopwatch.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.stopwatch = void 0; +var stopwatch = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M19.414 8.902c.104-.048.206-.108.293-.195l.5-.5c.391-.391.391-1.023 0-1.414s-1.023-.391-1.414 0l-.5.5-.115.173c-1.387-1.312-3.188-2.19-5.189-2.41l.011-.056v-1h1c.55 0 1-.45 1-1s-.45-1-1-1h-4c-.55 0-1 .45-1 1s.45 1 1 1h1v1l.012.057c-4.506.492-8.012 4.307-8.012 8.943 0 4.971 4.029 9 9 9s9-4.029 9-9c0-1.894-.588-3.648-1.586-5.098zm-7.414 12.098c-3.859 0-7-3.14-7-7s3.141-7 7-7 7 3.14 7 7-3.141 7-7 7zM13 13v-2c0-.55-.45-1-1-1s-1 .45-1 1v3c0 .55.45 1 1 1h3c.55 0 1-.45 1-1s-.45-1-1-1h-2zM12 8c-3.312 0-6 2.688-6 6s2.688 6 6 6 6-2.688 6-6-2.688-6-6-6zm0 11c-2.757 0-5-2.243-5-5s2.243-5 5-5 5 2.243 5 5-2.243 5-5 5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M19.414 8.902c.104-.048.206-.108.293-.195l.5-.5c.391-.391.391-1.023 0-1.414s-1.023-.391-1.414 0l-.5.5-.115.173c-1.387-1.312-3.188-2.19-5.189-2.41l.011-.056v-1h1c.55 0 1-.45 1-1s-.45-1-1-1h-4c-.55 0-1 .45-1 1s.45 1 1 1h1v1l.012.057c-4.506.492-8.012 4.307-8.012 8.943 0 4.971 4.029 9 9 9s9-4.029 9-9c0-1.894-.588-3.648-1.586-5.098zm-7.414 12.098c-3.859 0-7-3.14-7-7s3.141-7 7-7 7 3.14 7 7-3.141 7-7 7zM13 13v-2c0-.55-.45-1-1-1s-1 .45-1 1v3c0 .55.45 1 1 1h3c.55 0 1-.45 1-1s-.45-1-1-1h-2zM12 8c-3.312 0-6 2.688-6 6s2.688 6 6 6 6-2.688 6-6-2.688-6-6-6zm0 11c-2.757 0-5-2.243-5-5s2.243-5 5-5 5 2.243 5 5-2.243 5-5 5z" + }, + "children": [] + }] + }] + }] +}; +exports.stopwatch = stopwatch; \ No newline at end of file diff --git a/dist/typicons/support.js b/dist/typicons/support.js new file mode 100644 index 000000000..7c412d232 --- /dev/null +++ b/dist/typicons/support.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.support = void 0; +var support = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 3.5c-4.688 0-8.5 3.812-8.5 8.5s3.812 8.5 8.5 8.5 8.5-3.812 8.5-8.5-3.812-8.5-8.5-8.5zm6.5 8.5c0 1.064-.264 2.066-.718 2.956l-1.931-1.931c.088-.332.147-.674.147-1.025 0-.355-.062-.693-.147-1.021l1.932-1.932c.455.889.717 1.891.717 2.953zm-13 0c0-1.064.264-2.066.718-2.956l1.933 1.933c-.086.33-.147.668-.147 1.022 0 .353.062.69.147 1.021l-1.934 1.934c-.455-.89-.717-1.892-.717-2.954zm3.068-2.02l-1.775-1.775 1.414-1.414 1.775 1.775c-.584.345-1.068.83-1.414 1.414zm-1.777 5.813l1.773-1.773c.17.289.362.564.605.809s.52.438.807.607l-1.771 1.771-1.414-1.414zm3.795-2.379c-.377-.378-.585-.88-.584-1.414 0-1.104.896-2 1.998-2 1.104 0 2 .896 2 2.001.001.533-.207 1.035-.584 1.412-.755.757-2.073.757-2.83.001zm6.623-5.207l-1.775 1.775c-.345-.586-.828-1.069-1.412-1.416l1.773-1.773 1.414 1.414zm-2.378 6.619c.241-.242.435-.518.604-.803l1.771 1.771-1.414 1.414-1.772-1.772c.291-.17.567-.366.811-.61zm.125-8.608l-1.933 1.932c-.328-.088-.668-.15-1.023-.15s-.693.062-1.021.148l-1.932-1.932c.889-.455 1.891-.717 2.953-.717 1.064.001 2.066.265 2.956.719zm-5.912 11.564l1.933-1.933c.332.088.672.149 1.023.149s.691-.062 1.021-.147l1.932 1.932c-.889.455-1.891.717-2.953.717-1.064 0-2.066-.264-2.956-.718z" + }, + "children": [] + }] +}; +exports.support = support; \ No newline at end of file diff --git a/dist/typicons/tabsOutline.js b/dist/typicons/tabsOutline.js new file mode 100644 index 000000000..c34dada2e --- /dev/null +++ b/dist/typicons/tabsOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.tabsOutline = void 0; +var tabsOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18 4h-10c-1.104 0-2 .896-2 2v2h-1c-1.104 0-2 .896-2 2v9c0 1.104.896 2 2 2h9c1.104 0 2-.896 2-2v-1h2c1.104 0 2-.896 2-2v-10c0-1.104-.896-2-2-2zm-13 15v-9h8.5c.275 0 .5.225.5.5v8.5h-9zm13-3h-3v-5.5c0-.827-.673-1.5-1.5-1.5h-5.5v-3h10v10z" + }, + "children": [] + }] +}; +exports.tabsOutline = tabsOutline; \ No newline at end of file diff --git a/dist/typicons/tag.js b/dist/typicons/tag.js new file mode 100644 index 000000000..e316e6721 --- /dev/null +++ b/dist/typicons/tag.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.tag = void 0; +var tag = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M9 4c1.279 0 2.559.488 3.535 1.465l3.465 3.535 5 5-7 7-5.498-5.498c-.037.033-3.037-2.967-3.037-2.967-1.953-1.953-1.953-5.119 0-7.07.976-.977 2.256-1.465 3.535-1.465m0-2c-1.87 0-3.628.729-4.949 2.051-1.322 1.32-2.051 3.078-2.051 4.948s.729 3.628 2.051 4.95l3 3c.107.107.227.201.35.279l5.187 5.186c.391.391.9.586 1.413.586s1.022-.195 1.414-.586l7-7c.78-.781.78-2.047 0-2.828l-5-5-3.45-3.521c-1.337-1.336-3.095-2.065-4.965-2.065zM9 7.498c.829 0 1.5.672 1.5 1.502s-.671 1.498-1.5 1.498-1.5-.668-1.5-1.498.671-1.502 1.5-1.502m0-1c-1.379 0-2.5 1.122-2.5 2.502 0 1.377 1.121 2.498 2.5 2.498s2.5-1.121 2.5-2.498c0-1.38-1.121-2.502-2.5-2.502z" + }, + "children": [] + }] +}; +exports.tag = tag; \ No newline at end of file diff --git a/dist/typicons/tags.js b/dist/typicons/tags.js new file mode 100644 index 000000000..571923dbe --- /dev/null +++ b/dist/typicons/tags.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.tags = void 0; +var tags = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M21.422 9.594l-6.465-6.535c-1.329-1.33-3.087-2.059-4.957-2.059s-3.628.729-4.95 2.051c-1.416 1.414-2.127 3.356-2.027 5.314-.662 1.085-1.023 2.33-1.023 3.634 0 1.87.729 3.628 2.051 4.95l3.053 2.984 3.482 3.48c.391.392.902.587 1.414.587s1.023-.195 1.414-.586l7-7c.778-.778.782-2.038.008-2.82l-.093-.094 1.085-1.086c.778-.778.782-2.038.008-2.82zm-9.422 12.406l-3.498-3.497-3.037-2.968c-1.953-1.953-1.953-5.119 0-7.07.976-.977 2.256-1.465 3.535-1.465s2.559.488 3.535 1.465l6.465 6.535-7 7zm1.957-14.941c-1.329-1.33-3.087-2.059-4.957-2.059-1.276 0-2.497.347-3.565.982.241-.55.579-1.067 1.03-1.518.976-.976 2.256-1.464 3.535-1.464s2.559.488 3.535 1.465l6.465 6.535-1.078 1.078-4.965-5.019zM9 10.499c.83 0 1.5.672 1.5 1.501 0 .83-.67 1.499-1.5 1.499s-1.5-.669-1.5-1.499c0-.829.67-1.501 1.5-1.501m0-1c-1.378 0-2.5 1.122-2.5 2.501 0 1.378 1.122 2.499 2.5 2.499s2.5-1.121 2.5-2.499c0-1.379-1.122-2.501-2.5-2.501z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21.422 9.594l-6.465-6.535c-1.329-1.33-3.087-2.059-4.957-2.059s-3.628.729-4.95 2.051c-1.416 1.414-2.127 3.356-2.027 5.314-.662 1.085-1.023 2.33-1.023 3.634 0 1.87.729 3.628 2.051 4.95l3.053 2.984 3.482 3.48c.391.392.902.587 1.414.587s1.023-.195 1.414-.586l7-7c.778-.778.782-2.038.008-2.82l-.093-.094 1.085-1.086c.778-.778.782-2.038.008-2.82zm-9.422 12.406l-3.498-3.497-3.037-2.968c-1.953-1.953-1.953-5.119 0-7.07.976-.977 2.256-1.465 3.535-1.465s2.559.488 3.535 1.465l6.465 6.535-7 7zm1.957-14.941c-1.329-1.33-3.087-2.059-4.957-2.059-1.276 0-2.497.347-3.565.982.241-.55.579-1.067 1.03-1.518.976-.976 2.256-1.464 3.535-1.464s2.559.488 3.535 1.465l6.465 6.535-1.078 1.078-4.965-5.019zM9 10.499c.83 0 1.5.672 1.5 1.501 0 .83-.67 1.499-1.5 1.499s-1.5-.669-1.5-1.499c0-.829.67-1.501 1.5-1.501m0-1c-1.378 0-2.5 1.122-2.5 2.501 0 1.378 1.122 2.499 2.5 2.499s2.5-1.121 2.5-2.499c0-1.379-1.122-2.501-2.5-2.501z" + }, + "children": [] + }] + }] + }] +}; +exports.tags = tags; \ No newline at end of file diff --git a/dist/typicons/thLarge.js b/dist/typicons/thLarge.js new file mode 100644 index 000000000..7ca000a5a --- /dev/null +++ b/dist/typicons/thLarge.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.thLarge = void 0; +var thLarge = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M8 3h-2c-.825 0-1.575.337-2.119.881-.544.544-.881 1.294-.881 2.119v2c0 .825.337 1.575.881 2.119.544.544 1.294.881 2.119.881h2c.825 0 1.575-.337 2.119-.881.544-.544.881-1.294.881-2.119v-2c0-.825-.337-1.575-.881-2.119-.544-.544-1.294-.881-2.119-.881zM18 3h-2c-.825 0-1.575.337-2.119.881-.544.544-.881 1.294-.881 2.119v2c0 .825.337 1.575.881 2.119.544.544 1.294.881 2.119.881h2c.825 0 1.575-.337 2.119-.881.544-.544.881-1.294.881-2.119v-2c0-.825-.337-1.575-.881-2.119-.544-.544-1.294-.881-2.119-.881zM8 13h-2c-.825 0-1.575.337-2.119.881-.544.544-.881 1.294-.881 2.119v2c0 .825.337 1.575.881 2.119.544.544 1.294.881 2.119.881h2c.825 0 1.575-.337 2.119-.881.544-.544.881-1.294.881-2.119v-2c0-.825-.337-1.575-.881-2.119-.544-.544-1.294-.881-2.119-.881zM18 13h-2c-.825 0-1.575.337-2.119.881-.544.544-.881 1.294-.881 2.119v2c0 .825.337 1.575.881 2.119.544.544 1.294.881 2.119.881h2c.825 0 1.575-.337 2.119-.881.544-.544.881-1.294.881-2.119v-2c0-.825-.337-1.575-.881-2.119-.544-.544-1.294-.881-2.119-.881z" + }, + "children": [] + }] +}; +exports.thLarge = thLarge; \ No newline at end of file diff --git a/dist/typicons/thLargeOutline.js b/dist/typicons/thLargeOutline.js new file mode 100644 index 000000000..d3025f9df --- /dev/null +++ b/dist/typicons/thLargeOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.thLargeOutline = void 0; +var thLargeOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M9 2h-5c-1.103 0-2 .896-2 2v5c0 1.104.897 2 2 2h5c1.103 0 2-.896 2-2v-5c0-1.104-.897-2-2-2zm0 7h-5v-5h5v5zM20 2h-5c-1.104 0-2 .896-2 2v5c0 1.104.896 2 2 2h5c1.104 0 2-.896 2-2v-5c0-1.104-.896-2-2-2zm0 7h-5v-5h5v5zM9 13h-5c-1.103 0-2 .896-2 2v5c0 1.104.897 2 2 2h5c1.103 0 2-.896 2-2v-5c0-1.104-.897-2-2-2zm0 7h-5v-5h5v5zM20 13h-5c-1.104 0-2 .896-2 2v5c0 1.104.896 2 2 2h5c1.104 0 2-.896 2-2v-5c0-1.104-.896-2-2-2zm0 7h-5v-5h5v5z" + }, + "children": [] + }] +}; +exports.thLargeOutline = thLargeOutline; \ No newline at end of file diff --git a/dist/typicons/thList.js b/dist/typicons/thList.js new file mode 100644 index 000000000..7ca0730d9 --- /dev/null +++ b/dist/typicons/thList.js @@ -0,0 +1,41 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.thList = void 0; +var thList = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M19 17h-7c-1.103 0-2 .897-2 2s.897 2 2 2h7c1.103 0 2-.897 2-2s-.897-2-2-2zM19 10h-7c-1.103 0-2 .897-2 2s.897 2 2 2h7c1.103 0 2-.897 2-2s-.897-2-2-2zM19 3h-7c-1.103 0-2 .897-2 2s.897 2 2 2h7c1.103 0 2-.897 2-2s-.897-2-2-2z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "5", + "cy": "19", + "r": "2.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "5", + "cy": "12", + "r": "2.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "5", + "cy": "5", + "r": "2.5" + }, + "children": [] + }] +}; +exports.thList = thList; \ No newline at end of file diff --git a/dist/typicons/thListOutline.js b/dist/typicons/thListOutline.js new file mode 100644 index 000000000..7f20734da --- /dev/null +++ b/dist/typicons/thListOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.thListOutline = void 0; +var thListOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M19 18c.55 0 1 .45 1 1s-.45 1-1 1h-7c-.55 0-1-.45-1-1s.45-1 1-1h7m0-2h-7c-1.654 0-3 1.346-3 3s1.346 3 3 3h7c1.654 0 3-1.346 3-3s-1.346-3-3-3zM19 11c.55 0 1 .45 1 1s-.45 1-1 1h-7c-.55 0-1-.45-1-1s.45-1 1-1h7m0-2h-7c-1.654 0-3 1.346-3 3s1.346 3 3 3h7c1.654 0 3-1.346 3-3s-1.346-3-3-3zM19 4c.55 0 1 .45 1 1s-.45 1-1 1h-7c-.55 0-1-.45-1-1s.45-1 1-1h7m0-2h-7c-1.654 0-3 1.346-3 3s1.346 3 3 3h7c1.654 0 3-1.346 3-3s-1.346-3-3-3zM6 16h-2c-1.104 0-2 .896-2 2v2c0 1.104.896 2 2 2h2c1.104 0 2-.896 2-2v-2c0-1.104-.896-2-2-2zm0 4h-2v-2h2v2zM6 9h-2c-1.104 0-2 .896-2 2v2c0 1.104.896 2 2 2h2c1.104 0 2-.896 2-2v-2c0-1.104-.896-2-2-2zm0 4h-2v-2h2v2zM6 2h-2c-1.104 0-2 .896-2 2v2c0 1.104.896 2 2 2h2c1.104 0 2-.896 2-2v-2c0-1.104-.896-2-2-2zm0 4h-2v-2h2v2z" + }, + "children": [] + }] +}; +exports.thListOutline = thListOutline; \ No newline at end of file diff --git a/dist/typicons/thMenu.js b/dist/typicons/thMenu.js new file mode 100644 index 000000000..840624ad9 --- /dev/null +++ b/dist/typicons/thMenu.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.thMenu = void 0; +var thMenu = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M19 17h-14c-1.103 0-2 .897-2 2s.897 2 2 2h14c1.103 0 2-.897 2-2s-.897-2-2-2zM19 10h-14c-1.103 0-2 .897-2 2s.897 2 2 2h14c1.103 0 2-.897 2-2s-.897-2-2-2zM19 3h-14c-1.103 0-2 .897-2 2s.897 2 2 2h14c1.103 0 2-.897 2-2s-.897-2-2-2z" + }, + "children": [] + }] +}; +exports.thMenu = thMenu; \ No newline at end of file diff --git a/dist/typicons/thMenuOutline.js b/dist/typicons/thMenuOutline.js new file mode 100644 index 000000000..f0fb7539f --- /dev/null +++ b/dist/typicons/thMenuOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.thMenuOutline = void 0; +var thMenuOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M19 18c.55 0 1 .45 1 1s-.45 1-1 1h-14c-.55 0-1-.45-1-1s.45-1 1-1h14m0-2h-14c-1.654 0-3 1.346-3 3s1.346 3 3 3h14c1.654 0 3-1.346 3-3s-1.346-3-3-3zM19 11c.55 0 1 .45 1 1s-.45 1-1 1h-14c-.55 0-1-.45-1-1s.45-1 1-1h14m0-2h-14c-1.654 0-3 1.346-3 3s1.346 3 3 3h14c1.654 0 3-1.346 3-3s-1.346-3-3-3zM19 4c.55 0 1 .45 1 1s-.45 1-1 1h-14c-.55 0-1-.45-1-1s.45-1 1-1h14m0-2h-14c-1.654 0-3 1.346-3 3s1.346 3 3 3h14c1.654 0 3-1.346 3-3s-1.346-3-3-3z" + }, + "children": [] + }] +}; +exports.thMenuOutline = thMenuOutline; \ No newline at end of file diff --git a/dist/typicons/thSmall.js b/dist/typicons/thSmall.js new file mode 100644 index 000000000..de8bfa98e --- /dev/null +++ b/dist/typicons/thSmall.js @@ -0,0 +1,83 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.thSmall = void 0; +var thSmall = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "5", + "cy": "19", + "r": "2.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "5", + "cy": "12", + "r": "2.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "5", + "cy": "5", + "r": "2.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "19", + "r": "2.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "12", + "r": "2.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "5", + "r": "2.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "19", + "cy": "19", + "r": "2.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "19", + "cy": "12", + "r": "2.5" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "19", + "cy": "5", + "r": "2.5" + }, + "children": [] + }] +}; +exports.thSmall = thSmall; \ No newline at end of file diff --git a/dist/typicons/thSmallOutline.js b/dist/typicons/thSmallOutline.js new file mode 100644 index 000000000..f2325cf2a --- /dev/null +++ b/dist/typicons/thSmallOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.thSmallOutline = void 0; +var thSmallOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M6 16h-2c-1.104 0-2 .896-2 2v2c0 1.104.896 2 2 2h2c1.104 0 2-.896 2-2v-2c0-1.104-.896-2-2-2zm0 4h-2v-2h2v2zM6 9h-2c-1.104 0-2 .896-2 2v2c0 1.104.896 2 2 2h2c1.104 0 2-.896 2-2v-2c0-1.104-.896-2-2-2zm0 4h-2v-2h2v2zM6 2h-2c-1.104 0-2 .896-2 2v2c0 1.104.896 2 2 2h2c1.104 0 2-.896 2-2v-2c0-1.104-.896-2-2-2zm0 4h-2v-2h2v2zM13 16h-2c-1.104 0-2 .896-2 2v2c0 1.104.896 2 2 2h2c1.104 0 2-.896 2-2v-2c0-1.104-.896-2-2-2zm0 4h-2v-2h2v2zM13 9h-2c-1.104 0-2 .896-2 2v2c0 1.104.896 2 2 2h2c1.104 0 2-.896 2-2v-2c0-1.104-.896-2-2-2zm0 4h-2v-2h2v2zM13 2h-2c-1.104 0-2 .896-2 2v2c0 1.104.896 2 2 2h2c1.104 0 2-.896 2-2v-2c0-1.104-.896-2-2-2zm0 4h-2v-2h2v2zM20 16h-2c-1.104 0-2 .896-2 2v2c0 1.104.896 2 2 2h2c1.104 0 2-.896 2-2v-2c0-1.104-.896-2-2-2zm0 4h-2v-2h2v2zM20 9h-2c-1.104 0-2 .896-2 2v2c0 1.104.896 2 2 2h2c1.104 0 2-.896 2-2v-2c0-1.104-.896-2-2-2zm0 4h-2v-2h2v2zM20 2h-2c-1.104 0-2 .896-2 2v2c0 1.104.896 2 2 2h2c1.104 0 2-.896 2-2v-2c0-1.104-.896-2-2-2zm0 4h-2v-2h2v2z" + }, + "children": [] + }] +}; +exports.thSmallOutline = thSmallOutline; \ No newline at end of file diff --git a/dist/typicons/thermometer.js b/dist/typicons/thermometer.js new file mode 100644 index 000000000..0b691451c --- /dev/null +++ b/dist/typicons/thermometer.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.thermometer = void 0; +var thermometer = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M13 15.071v-5.571c0-.275-.225-.5-.5-.5s-.5.225-.5.5v5.571c-.86.224-1.5 1-1.5 1.929 0 1.103.896 2 2 2s2-.897 2-2c0-.929-.64-1.705-1.5-1.929zM16 13.459v-7.959c0-1.93-1.57-3.5-3.5-3.5s-3.5 1.57-3.5 3.5v7.959c-.922.902-1.5 2.151-1.5 3.541 0 2.757 2.243 5 5 5s5-2.243 5-5c0-1.39-.578-2.639-1.5-3.541zm-3.5 6.541c-1.654 0-3-1.346-3-3 0-1.105.607-2.062 1.5-2.583v-8.917c0-.827.673-1.5 1.5-1.5s1.5.673 1.5 1.5v8.917c.893.521 1.5 1.478 1.5 2.583 0 1.654-1.346 3-3 3z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M13 15.071v-5.571c0-.275-.225-.5-.5-.5s-.5.225-.5.5v5.571c-.86.224-1.5 1-1.5 1.929 0 1.103.896 2 2 2s2-.897 2-2c0-.929-.64-1.705-1.5-1.929zM16 13.459v-7.959c0-1.93-1.57-3.5-3.5-3.5s-3.5 1.57-3.5 3.5v7.959c-.922.902-1.5 2.151-1.5 3.541 0 2.757 2.243 5 5 5s5-2.243 5-5c0-1.39-.578-2.639-1.5-3.541zm-3.5 6.541c-1.654 0-3-1.346-3-3 0-1.105.607-2.062 1.5-2.583v-8.917c0-.827.673-1.5 1.5-1.5s1.5.673 1.5 1.5v8.917c.893.521 1.5 1.478 1.5 2.583 0 1.654-1.346 3-3 3z" + }, + "children": [] + }] + }] + }] +}; +exports.thermometer = thermometer; \ No newline at end of file diff --git a/dist/typicons/thumbsDown.js b/dist/typicons/thumbsDown.js new file mode 100644 index 000000000..b3b60a0e6 --- /dev/null +++ b/dist/typicons/thumbsDown.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.thumbsDown = void 0; +var thumbsDown = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M17 5c-.755 0-1.438.289-1.965.751l-.188-.192c-.96-.737-3.665-1.559-5.847-1.559-1.879 0-2.607.293-3.252.552l-.316.124c-.834.305-1.578 1.229-1.738 2.2l-.664 5.972c-.174 1.039.441 2.127 1.4 2.478.394.144 2.512.405 3.883.56-.215 1.256-.312 2.405-.312 3.616 0 1.379 1.121 2.5 2.5 2.5s2.5-1.121 2.5-2.5c0-1.875.667-2.737 1.616-3.699.548.724 1.408 1.199 2.384 1.199 1.653 0 2.999-1.347 2.999-3v-6c-.001-1.656-1.346-3.002-3-3.002zm-6 14.5c0 .275-.225.5-.5.5s-.5-.225-.5-.5c0-1.805.256-3.241.479-4.293l.297-1.398-1.321.188c-.605-.05-3.934-.447-4.335-.552-.058-.028-.132-.18-.108-.321l.663-5.976c.037-.223.291-.539.443-.594l.377-.146c.544-.219 1.015-.408 2.506-.408 1.914 0 4.118.753 4.633 1.146.156.12.366.564.366.854v4.977c-.001.026-.04.649-.707 1.316-.913.913-2.293 2.293-2.293 5.207zm7-5.5c0 .552-.448 1-1 1s-1-.448-1-1v-6c0-.552.448-1 1-1s1 .448 1 1v6z" + }, + "children": [] + }] +}; +exports.thumbsDown = thumbsDown; \ No newline at end of file diff --git a/dist/typicons/thumbsOk.js b/dist/typicons/thumbsOk.js new file mode 100644 index 000000000..4bf4450f9 --- /dev/null +++ b/dist/typicons/thumbsOk.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.thumbsOk = void 0; +var thumbsOk = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M20.7 12.6c-.1-.3-.2-.6-.4-.9.3-.6.5-1 .3-1.9-.2-.8-.8-1.7-1.6-2.5l-1.7-.9.8-1.8c.4-.8.4-1.8-.1-2.5-.5-.8-1.4-1.3-2.3-1.3-1 0-1.8.6-2.3 1.5 0 0-.8-.2-1.8.1l-1.3 1.2s-1.7.5-2 2-.4 3.4-.8 4.1-2.5 3.3-3.7 4.7c-.9 1.1-.7 2.3.1 3.2l5 5c.8.8 2.7 1.1 4-.3 1.4-1.4.5-3.3.5-3.3.4-.3 1.5-1.2 2.6-1.5s2.8-.9 3.7-2.1c.8-1 1.2-1.8 1-2.8zm-9.3 8.3c-.4.4-1 .4-1.4 0l-4.2-4.2c-.2-.2-.3-.4-.3-.7s.1-.5.3-.7l.7-.7 4.9 4.9c.2.2.3.4.3.7 0 .3-.1.5-.3.7zm6.6-9.9c-.5 0-.7-.5-1.1-.9s-1.3-.5-2-.2-1 1-1 1.7c0 1 .7 1.9 1.7 1.9.7 0 .9-.1 1.3-.3.6-.4.8-.8 1.2-.8s.7.2.7.8-.6 1.3-1.2 1.7-1.1.5-1.7.6c-.6.1-1 .1-1.8.6-.7.4-1.4.9-1.8 1.3l-4.6-4.6c.9-1.1 1.7-2.3 1.8-2.9l.7-3.9c.1-.4.4-.5.6-.5.3 0 .6.2.7.4l.4-1.3c.1-.3.4-.5.6-.5.4 0 .8.3.7.8l-.5 2.4c.6-1.2 1.5-2.7 2.1-3.8.2-.3.4-.6.9-.6s.9.6.7 1.1c-.2.4-2 3.5-2.8 4.8-.1.1 0 .2.2.1.3-.2 1-.7 1.7-.7 1.2-.1 1.8.4 2.1.6.4.3.8.8 1.1 1.3.2.5-.2.9-.7.9zm-.2.7c-.4 0-.7.1-.9.4s-.6.7-1.1.7c-.7 0-1.1-.5-1.1-1.1s.4-1 1.1-1c.5 0 .9.4 1.1.7s.5.3.9.3z" + }, + "children": [] + }] +}; +exports.thumbsOk = thumbsOk; \ No newline at end of file diff --git a/dist/typicons/thumbsUp.js b/dist/typicons/thumbsUp.js new file mode 100644 index 000000000..d7c95ffd2 --- /dev/null +++ b/dist/typicons/thumbsUp.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.thumbsUp = void 0; +var thumbsUp = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M19.57 8.676c-.391-.144-2.512-.406-3.883-.56.215-1.255.313-2.405.313-3.616 0-1.379-1.122-2.5-2.5-2.5s-2.5 1.121-2.5 2.5c0 1.875-.666 2.738-1.616 3.699-.548-.722-1.407-1.199-2.384-1.199-1.654 0-3 1.346-3 3v6c0 1.654 1.346 3 3 3 .755 0 1.438-.29 1.965-.752l.188.193c.96.736 3.667 1.559 5.848 1.559 1.879 0 2.608-.293 3.253-.553l.316-.123c.834-.305 1.576-1.227 1.736-2.2l.666-5.974c.173-1.037-.443-2.125-1.402-2.474zm-12.57 8.324c-.551 0-1-.448-1-1v-6c0-.552.449-1 1-1s1 .448 1 1v6c0 .552-.449 1-1 1zm11.327-.15c-.037.224-.292.541-.443.596l-.376.146c-.545.219-1.016.408-2.508.408-1.914 0-4.118-.753-4.632-1.146-.158-.12-.368-.564-.368-.854v-4.98c.003-.047.051-.656.707-1.312.913-.914 2.293-2.294 2.293-5.208 0-.275.225-.5.5-.5s.5.225.5.5c0 1.407-.146 2.73-.479 4.293l-.297 1.396 1.321-.188c.603.05 3.933.447 4.334.55.058.03.132.183.111.323l-.663 5.976z" + }, + "children": [] + }] +}; +exports.thumbsUp = thumbsUp; \ No newline at end of file diff --git a/dist/typicons/tick.js b/dist/typicons/tick.js new file mode 100644 index 000000000..c44f4029a --- /dev/null +++ b/dist/typicons/tick.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.tick = void 0; +var tick = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M16.972 6.251c-.967-.538-2.185-.188-2.72.777l-3.713 6.682-2.125-2.125c-.781-.781-2.047-.781-2.828 0-.781.781-.781 2.047 0 2.828l4 4c.378.379.888.587 1.414.587l.277-.02c.621-.087 1.166-.46 1.471-1.009l5-9c.537-.966.189-2.183-.776-2.72z" + }, + "children": [] + }] +}; +exports.tick = tick; \ No newline at end of file diff --git a/dist/typicons/tickOutline.js b/dist/typicons/tickOutline.js new file mode 100644 index 000000000..980b7e81f --- /dev/null +++ b/dist/typicons/tickOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.tickOutline = void 0; +var tickOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M11 20c-.801 0-1.555-.312-2.121-.879l-4-4c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.122c1.133-1.133 3.109-1.133 4.242 0l1.188 1.188 3.069-5.523c.526-.952 1.533-1.544 2.624-1.544.507 0 1.012.131 1.456.378.7.39 1.206 1.028 1.427 1.798.221.771.127 1.581-.263 2.282l-5 9c-.454.818-1.279 1.384-2.206 1.514-.139.019-.277.029-.416.029zm-4-8c-.268 0-.518.104-.707.293s-.293.439-.293.707.104.518.293.707l4 4c.223.221.523.33.844.283.312-.043.586-.232.737-.504l5-9c.13-.233.161-.503.088-.76-.073-.257-.243-.47-.478-.6-.473-.264-1.101-.078-1.357.388l-4.357 7.841-3.062-3.062c-.19-.189-.44-.293-.708-.293z" + }, + "children": [] + }] +}; +exports.tickOutline = tickOutline; \ No newline at end of file diff --git a/dist/typicons/ticket.js b/dist/typicons/ticket.js new file mode 100644 index 000000000..d5fc9e77a --- /dev/null +++ b/dist/typicons/ticket.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ticket = void 0; +var ticket = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M21.485 8.071l-5.364-5.364c-1.128-1.128-3.111-1.136-4.248-.018l-9.148 9.002c-.571.562-.887 1.313-.891 2.115-.003.803.307 1.556.873 2.121l5.365 5.365c.567.567 1.325.88 2.133.88.799 0 1.551-.307 2.115-.862l9.147-9.003c.571-.562.888-1.313.891-2.115.003-.802-.307-1.555-.873-2.121zm-1.421 2.811l-9.146 9.003c-.381.373-1.056.37-1.432-.006l-1.275-1.275c.71-.785.693-1.994-.062-2.752-.758-.757-1.968-.773-2.752-.063l-1.275-1.274c-.186-.187-.288-.435-.287-.699s.105-.513.293-.697l9.148-9.002c.189-.186.441-.288.713-.288.273 0 .529.104.719.294l1.275 1.275c-.711.785-.694 1.994.062 2.751.758.757 1.967.773 2.752.063l1.274 1.274c.187.187.288.435.287.699s-.105.512-.294.697zM11.601 17.042l-4.657-4.656 5.649-5.429 4.657 4.656-5.649 5.429zm-3.23-4.643l3.243 3.242 4.206-4.041-3.241-3.242-4.208 4.041z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M21.485 8.071l-5.364-5.364c-1.128-1.128-3.111-1.136-4.248-.018l-9.148 9.002c-.571.562-.887 1.313-.891 2.115-.003.803.307 1.556.873 2.121l5.365 5.365c.567.567 1.325.88 2.133.88.799 0 1.551-.307 2.115-.862l9.147-9.003c.571-.562.888-1.313.891-2.115.003-.802-.307-1.555-.873-2.121zm-1.421 2.811l-9.146 9.003c-.381.373-1.056.37-1.432-.006l-1.275-1.275c.71-.785.693-1.994-.062-2.752-.758-.757-1.968-.773-2.752-.063l-1.275-1.274c-.186-.187-.288-.435-.287-.699s.105-.513.293-.697l9.148-9.002c.189-.186.441-.288.713-.288.273 0 .529.104.719.294l1.275 1.275c-.711.785-.694 1.994.062 2.751.758.757 1.967.773 2.752.063l1.274 1.274c.187.187.288.435.287.699s-.105.512-.294.697zM11.601 17.042l-4.657-4.656 5.649-5.429 4.657 4.656-5.649 5.429zm-3.23-4.643l3.243 3.242 4.206-4.041-3.241-3.242-4.208 4.041z" + }, + "children": [] + }] + }] + }] +}; +exports.ticket = ticket; \ No newline at end of file diff --git a/dist/typicons/time.js b/dist/typicons/time.js new file mode 100644 index 000000000..18baff569 --- /dev/null +++ b/dist/typicons/time.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.time = void 0; +var time = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M16 13c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1s.45 1 1 1h3c.55 0 1-.45 1-1zM12 6c3.859 0 7 3.141 7 7s-3.141 7-7 7-7-3.141-7-7 3.141-7 7-7m0-2c-4.971 0-9 4.029-9 9s4.029 9 9 9 9-4.029 9-9-4.029-9-9-9zM13 10c0-.55-.45-1-1-1s-1 .45-1 1v3c0 .55.45 1 1 1s1-.45 1-1v-3zM12 8c2.757 0 5 2.243 5 5s-2.243 5-5 5-5-2.243-5-5 2.243-5 5-5m0-1c-3.312 0-6 2.686-6 6 0 3.312 2.688 6 6 6s6-2.688 6-6c0-3.314-2.688-6-6-6z" + }, + "children": [] + }] +}; +exports.time = time; \ No newline at end of file diff --git a/dist/typicons/times.js b/dist/typicons/times.js new file mode 100644 index 000000000..ebe9759b5 --- /dev/null +++ b/dist/typicons/times.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.times = void 0; +var times = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M17.414 6.586c-.78-.781-2.048-.781-2.828 0l-2.586 2.586-2.586-2.586c-.78-.781-2.048-.781-2.828 0-.781.781-.781 2.047 0 2.828l2.585 2.586-2.585 2.586c-.781.781-.781 2.047 0 2.828.39.391.902.586 1.414.586s1.024-.195 1.414-.586l2.586-2.586 2.586 2.586c.39.391.902.586 1.414.586s1.024-.195 1.414-.586c.781-.781.781-2.047 0-2.828l-2.585-2.586 2.585-2.586c.781-.781.781-2.047 0-2.828z" + }, + "children": [] + }] +}; +exports.times = times; \ No newline at end of file diff --git a/dist/typicons/timesOutline.js b/dist/typicons/timesOutline.js new file mode 100644 index 000000000..ea84493cb --- /dev/null +++ b/dist/typicons/timesOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.timesOutline = void 0; +var timesOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M16 19c-.802 0-1.555-.312-2.122-.879l-1.878-1.879-1.879 1.879c-1.133 1.133-3.109 1.133-4.243 0-.566-.566-.878-1.32-.878-2.121s.312-1.555.879-2.122l1.878-1.878-1.878-1.879c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.122c1.133-1.132 3.109-1.133 4.243.001l1.878 1.879 1.879-1.879c1.133-1.133 3.109-1.133 4.243 0 .566.566.878 1.32.878 2.121s-.312 1.555-.879 2.122l-1.878 1.878 1.878 1.879c.567.566.879 1.32.879 2.121s-.312 1.555-.879 2.122c-.566.566-1.319.878-2.121.878zm-4-5.586l3.293 3.293c.378.378 1.037.377 1.414 0 .189-.189.293-.439.293-.707s-.104-.518-.293-.707l-3.292-3.293 3.292-3.293c.189-.189.293-.44.293-.707s-.104-.518-.293-.707c-.378-.379-1.037-.378-1.414-.001l-3.293 3.294-3.293-3.293c-.378-.378-1.037-.377-1.414 0-.189.189-.293.44-.293.707s.104.518.293.707l3.292 3.293-3.292 3.293c-.189.189-.293.439-.293.707s.104.518.293.707c.378.379 1.037.378 1.414.001l3.293-3.294z" + }, + "children": [] + }] +}; +exports.timesOutline = timesOutline; \ No newline at end of file diff --git a/dist/typicons/trash.js b/dist/typicons/trash.js new file mode 100644 index 000000000..007e5ab93 --- /dev/null +++ b/dist/typicons/trash.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.trash = void 0; +var trash = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M18 7h-1v-1c0-1.104-.896-2-2-2h-7c-1.104 0-2 .896-2 2v1h-1c-.552 0-1 .448-1 1s.448 1 1 1v8c0 2.206 1.794 4 4 4h5c2.206 0 4-1.794 4-4v-8c.552 0 1-.448 1-1s-.448-1-1-1zm-10-1h7v1h-7v-1zm8 11c0 1.104-.896 2-2 2h-5c-1.104 0-2-.896-2-2v-8h9v8zM8.5 10.5c-.275 0-.5.225-.5.5v6c0 .275.225.5.5.5s.5-.225.5-.5v-6c0-.275-.225-.5-.5-.5zM10.5 10.5c-.275 0-.5.225-.5.5v6c0 .275.225.5.5.5s.5-.225.5-.5v-6c0-.275-.225-.5-.5-.5zM12.5 10.5c-.275 0-.5.225-.5.5v6c0 .275.225.5.5.5s.5-.225.5-.5v-6c0-.275-.225-.5-.5-.5zM14.5 10.5c-.275 0-.5.225-.5.5v6c0 .275.225.5.5.5s.5-.225.5-.5v-6c0-.275-.225-.5-.5-.5z" + }, + "children": [] + }] +}; +exports.trash = trash; \ No newline at end of file diff --git a/dist/typicons/tree.js b/dist/typicons/tree.js new file mode 100644 index 000000000..547da41c6 --- /dev/null +++ b/dist/typicons/tree.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.tree = void 0; +var tree = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M20.781 17.375l-2.7-3.375h.919c.373 0 .715-.207.887-.538.172-.331.146-.729-.068-1.035l-7-10c-.317-.452-.94-.562-1.393-.246-.091.063-.158.146-.221.231-.025.015-7.025 10.015-7.025 10.015-.214.306-.24.704-.068 1.035.173.331.515.538.888.538h.919l-2.7 3.375c-.24.301-.287.712-.121 1.059.167.345.518.566.902.566h7v3c0 .553.448 1 1 1s1-.447 1-1v-3h7c.384 0 .735-.221.901-.566.167-.347.12-.758-.12-1.059zm-7.781-.375v-5c0-.553-.448-1-1-1s-1 .447-1 1v5h-4.919l2.7-3.375c.24-.301.287-.712.121-1.059-.167-.345-.518-.566-.902-.566h-1.08l5.08-7.256 5.08 7.256h-1.08c-.384 0-.735.221-.901.566-.167.347-.12.758.121 1.059l2.7 3.375h-4.92z" + }, + "children": [] + }] +}; +exports.tree = tree; \ No newline at end of file diff --git a/dist/typicons/upload.js b/dist/typicons/upload.js new file mode 100644 index 000000000..649b1fe31 --- /dev/null +++ b/dist/typicons/upload.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.upload = void 0; +var upload = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M20.987 16c0-.105-.004-.211-.039-.316l-2-6c-.136-.409-.517-.684-.948-.684h-4v2h3.279l1.667 5h-13.892l1.667-5h3.279v-2h-4c-.431 0-.812.275-.948.684l-2 6c-.035.105-.039.211-.039.316-.013 0-.013 5-.013 5 0 .553.447 1 1 1h16c.553 0 1-.447 1-1 0 0 0-5-.013-5zM16 7.904c.259 0 .518-.095.707-.283.39-.39.39-1.024 0-1.414l-4.707-4.707-4.707 4.707c-.39.39-.39 1.024 0 1.414.189.189.448.283.707.283s.518-.094.707-.283l2.293-2.293v6.672c0 .552.448 1 1 1s1-.448 1-1v-6.672l2.293 2.293c.189.189.448.283.707.283z" + }, + "children": [] + }] +}; +exports.upload = upload; \ No newline at end of file diff --git a/dist/typicons/uploadOutline.js b/dist/typicons/uploadOutline.js new file mode 100644 index 000000000..5925292ac --- /dev/null +++ b/dist/typicons/uploadOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.uploadOutline = void 0; +var uploadOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M20.986 17c0-.105-.004-.211-.038-.316l-2-6c-.093-.276-.302-.483-.56-.594.881-1.175.799-2.847-.269-3.914l-6.119-6.121-6.121 6.121c-1.067 1.067-1.149 2.739-.27 3.914-.256.109-.467.316-.559.594l-2 6c-.034.105-.038.211-.038.316-.012 0-.012 5-.012 5 0 .553.447 1 1 1h16c.553 0 1-.447 1-1 0 0 0-5-.014-5zm-13.693-9.41l4.707-4.707 4.707 4.707c.391.391.391 1.023 0 1.414-.379.377-1.035.377-1.414 0l-2.293-2.293v5.789c0 .552-.448 1-1 1s-1-.448-1-1v-5.789l-2.293 2.293c-.379.377-1.035.377-1.414 0-.391-.391-.391-1.025 0-1.414zm-.572 4.41h2.279v.5c0 1.654 1.346 3 3 3s3-1.346 3-3v-.5h2.279l1.666 5h-13.892l1.668-5zm-1.721 9v-3h14v3h-14z" + }, + "children": [] + }] +}; +exports.uploadOutline = uploadOutline; \ No newline at end of file diff --git a/dist/typicons/user.js b/dist/typicons/user.js new file mode 100644 index 000000000..a2f40ef9f --- /dev/null +++ b/dist/typicons/user.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.user = void 0; +var user = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M17 9c0-1.381-.56-2.631-1.464-3.535-.905-.905-2.155-1.465-3.536-1.465s-2.631.56-3.536 1.465c-.904.904-1.464 2.154-1.464 3.535s.56 2.631 1.464 3.535c.905.905 2.155 1.465 3.536 1.465s2.631-.56 3.536-1.465c.904-.904 1.464-2.154 1.464-3.535zM6 19c0 1 2.25 2 6 2 3.518 0 6-1 6-2 0-2-2.354-4-6-4-3.75 0-6 2-6 4z" + }, + "children": [] + }] +}; +exports.user = user; \ No newline at end of file diff --git a/dist/typicons/userAdd.js b/dist/typicons/userAdd.js new file mode 100644 index 000000000..6822725ab --- /dev/null +++ b/dist/typicons/userAdd.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.userAdd = void 0; +var userAdd = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M9 14c1.381 0 2.631-.56 3.536-1.465.904-.904 1.464-2.154 1.464-3.535s-.56-2.631-1.464-3.535c-.905-.905-2.155-1.465-3.536-1.465s-2.631.56-3.536 1.465c-.904.904-1.464 2.154-1.464 3.535s.56 2.631 1.464 3.535c.905.905 2.155 1.465 3.536 1.465zM9 21c3.518 0 6-1 6-2 0-2-2.354-4-6-4-3.75 0-6 2-6 4 0 1 2.25 2 6 2zM21 12h-2v-2c0-.553-.447-1-1-1s-1 .447-1 1v2h-2c-.553 0-1 .447-1 1s.447 1 1 1h2v2c0 .553.447 1 1 1s1-.447 1-1v-2h2c.553 0 1-.447 1-1s-.447-1-1-1z" + }, + "children": [] + }] +}; +exports.userAdd = userAdd; \ No newline at end of file diff --git a/dist/typicons/userAddOutline.js b/dist/typicons/userAddOutline.js new file mode 100644 index 000000000..85b4f5b97 --- /dev/null +++ b/dist/typicons/userAddOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.userAddOutline = void 0; +var userAddOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M21 14h-6c-.553 0-1-.448-1-1s.447-1 1-1h6c.553 0 1 .448 1 1s-.447 1-1 1zM18 17c-.553 0-1-.448-1-1v-6c0-.552.447-1 1-1s1 .448 1 1v6c0 .552-.447 1-1 1zM9 6c1.654 0 3 1.346 3 3s-1.346 3-3 3-3-1.346-3-3 1.346-3 3-3m0-2c-2.764 0-5 2.238-5 5s2.236 5 5 5 5-2.238 5-5-2.236-5-5-5zM9 17c2.021 0 3.301.771 3.783 1.445-.683.26-1.969.555-3.783.555-1.984 0-3.206-.305-3.818-.542.459-.715 1.777-1.458 3.818-1.458m0-2c-3.75 0-6 2-6 4 0 1 2.25 2 6 2 3.518 0 6-1 6-2 0-2-2.354-4-6-4z" + }, + "children": [] + }] +}; +exports.userAddOutline = userAddOutline; \ No newline at end of file diff --git a/dist/typicons/userDelete.js b/dist/typicons/userDelete.js new file mode 100644 index 000000000..ba8bdb001 --- /dev/null +++ b/dist/typicons/userDelete.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.userDelete = void 0; +var userDelete = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M21 14h-6c-.553 0-1-.447-1-1s.447-1 1-1h6c.553 0 1 .447 1 1s-.447 1-1 1zM14 9c0 1.381-.56 2.631-1.464 3.535-.905.905-2.155 1.465-3.536 1.465s-2.631-.56-3.536-1.465c-.904-.904-1.464-2.154-1.464-3.535s.56-2.631 1.464-3.535c.905-.905 2.155-1.465 3.536-1.465s2.631.56 3.536 1.465c.904.904 1.464 2.154 1.464 3.535zM9 15c-3.75 0-6 2-6 4 0 1 2.25 2 6 2 3.518 0 6-1 6-2 0-2-2.354-4-6-4z" + }, + "children": [] + }] +}; +exports.userDelete = userDelete; \ No newline at end of file diff --git a/dist/typicons/userDeleteOutline.js b/dist/typicons/userDeleteOutline.js new file mode 100644 index 000000000..9f6314f72 --- /dev/null +++ b/dist/typicons/userDeleteOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.userDeleteOutline = void 0; +var userDeleteOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M21 14h-6c-.553 0-1-.448-1-1s.447-1 1-1h6c.553 0 1 .448 1 1s-.447 1-1 1zM9 6c1.654 0 3 1.346 3 3s-1.346 3-3 3-3-1.346-3-3 1.346-3 3-3m0-2c-2.764 0-5 2.238-5 5s2.236 5 5 5 5-2.238 5-5-2.236-5-5-5zM9 17c2.021 0 3.301.771 3.783 1.445-.683.26-1.969.555-3.783.555-1.984 0-3.206-.305-3.818-.542.459-.715 1.777-1.458 3.818-1.458m0-2c-3.75 0-6 2-6 4 0 1 2.25 2 6 2 3.518 0 6-1 6-2 0-2-2.354-4-6-4z" + }, + "children": [] + }] +}; +exports.userDeleteOutline = userDeleteOutline; \ No newline at end of file diff --git a/dist/typicons/userOutline.js b/dist/typicons/userOutline.js new file mode 100644 index 000000000..caa2afd74 --- /dev/null +++ b/dist/typicons/userOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.userOutline = void 0; +var userOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 6c1.654 0 3 1.346 3 3s-1.346 3-3 3-3-1.346-3-3 1.346-3 3-3m0-2c-2.764 0-5 2.238-5 5s2.236 5 5 5 5-2.238 5-5-2.236-5-5-5zM12 17c2.021 0 3.301.771 3.783 1.445-.683.26-1.969.555-3.783.555-1.984 0-3.206-.305-3.818-.542.459-.715 1.777-1.458 3.818-1.458m0-2c-3.75 0-6 2-6 4 0 1 2.25 2 6 2 3.518 0 6-1 6-2 0-2-2.354-4-6-4z" + }, + "children": [] + }] +}; +exports.userOutline = userOutline; \ No newline at end of file diff --git a/dist/typicons/vendorAndroid.js b/dist/typicons/vendorAndroid.js new file mode 100644 index 000000000..1f4daa37a --- /dev/null +++ b/dist/typicons/vendorAndroid.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.vendorAndroid = void 0; +var vendorAndroid = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M7.1 8h9.799999999999999c.1 0 .1 0 .1-.1-.1-.5-.2-.9-.4-1.3-.4-.9-1.1-1.5-1.9-2l-.4-.2s0-.1.1-.1c.3-.4.6-.8.9-1.3.1-.1.1-.2 0-.3-.1-.1-.2 0-.3.1l-.9 1.3s-.1.1-.1 0c-.8-.3-1.6-.4-2.4-.4-.6 0-1.1.2-1.6.4h-.1l-.9-1.2s0-.1-.1-.1c-.1-.1-.2-.1-.2 0-.1 0-.1.1 0 .2 0 0 0 .1.1.1.2.4.5.8.8 1.2l.1.1h-.1c-.6.3-1.1.7-1.5 1.2-.6.6-1 1.4-1.1 2.3 0 .1 0 .1.1.1zm7.1-2.8c.4 0 .8.3.8.8 0 .4-.3.8-.7.8-.4 0-.8-.3-.8-.8-.1-.4.3-.8.7-.8zm-4.3 0c.4 0 .8.3.8.8 0 .4-.3.8-.7.8-.5 0-.9-.4-.9-.8s.4-.8.8-.8zM5 9c-.5 0-1 .5-1 1v5c0 .5.5 1 1 1s1-.5 1-1v-5c0-.5-.5-1-1-1zM19 9c-.5 0-1 .5-1 1v5c0 .5.5 1 1 1s1-.5 1-1v-5c0-.5-.5-1-1-1zM7 17c0 .5.5 1 1 1h1v3c0 .5.5 1 1 1s1-.5 1-1v-3h2v3c0 .5.5 1 1 1s1-.5 1-1v-3h1c.5 0 1-.5 1-1v-8h-10v8z" + }, + "children": [] + }] +}; +exports.vendorAndroid = vendorAndroid; \ No newline at end of file diff --git a/dist/typicons/vendorApple.js b/dist/typicons/vendorApple.js new file mode 100644 index 000000000..aac9141e1 --- /dev/null +++ b/dist/typicons/vendorApple.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.vendorApple = void 0; +var vendorApple = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M11.9 6.6s-.1-1.6.9-3l2.8-1.6s.1 1.6-.9 3l-2.8 1.6zM17.3 12.2c0-1.5.8-2.8 2-3.6l-.9-.9c-.5-.3-1.1-.7-2.4-.7-1.4 0-2.4.9-3.7.9-1.3 0-2.2-.8-3.1-.9-.7 0-1.4 0-2.1.3-.5.2-1.2.7-1.6 1.2-.6.6-1.2 1.9-1.3 3.1-.1 1.2-.1 2.1.2 3.2.2.9.6 1.8 1 2.6.3.6.6 1.2 1 1.8.3.4.7.8 1.1 1.1.3.2.6.4 1 .6.2 0 .5.1.8.1.6-.1 1.6-.9 2.4-1.1.4-.1.8-.1 1.3 0 .7.1 1.4.9 2.2 1 .6.1 1.2 0 1.7-.3.4-.2.7-.5 1-.9.4-.4.7-.9 1-1.3.4-.7.9-1.5 1.1-2.3-1.6-.6-2.7-2.1-2.7-3.9z" + }, + "children": [] + }] +}; +exports.vendorApple = vendorApple; \ No newline at end of file diff --git a/dist/typicons/vendorMicrosoft.js b/dist/typicons/vendorMicrosoft.js new file mode 100644 index 000000000..a80ab4b35 --- /dev/null +++ b/dist/typicons/vendorMicrosoft.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.vendorMicrosoft = void 0; +var vendorMicrosoft = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M10 12.5c0-.3-.2-.5-.5-.5h-6c-.3 0-.5.2-.5.5v5c0 .3.2.5.5.6l6 .7c.3 0 .5-.2.5-.4v-5.9zM11.5 12c-.3 0-.5.2-.5.5v5.9c0 .3.2.5.5.6l9 1c.3 0 .5-.2.5-.4v-7c0-.3-.2-.5-.5-.5l-9-.1zM10 4.7c0-.3-.2-.5-.5-.4l-6 .7c-.3 0-.5.2-.5.5v5c0 .3.2.5.5.5h6c.3 0 .5-.2.5-.5v-5.8zM11.5 4.1c-.3 0-.5.3-.5.6v5.9c0 .3.2.5.5.5h9c.3 0 .5-.2.5-.5v-7c0-.3-.2-.5-.5-.4l-9 .9z" + }, + "children": [] + }] +}; +exports.vendorMicrosoft = vendorMicrosoft; \ No newline at end of file diff --git a/dist/typicons/video.js b/dist/typicons/video.js new file mode 100644 index 000000000..68f4e7d64 --- /dev/null +++ b/dist/typicons/video.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.video = void 0; +var video = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M22.525 7.149c-.16-.099-.342-.149-.525-.149-.153 0-.306.035-.447.105l-2.553 1.277v-.382c0-1.654-1.346-3-3-3h-11c-1.654 0-3 1.346-3 3v8c0 1.654 1.346 3 3 3h11c1.654 0 3-1.346 3-3v-.382l2.553 1.276c.141.071.294.106.447.106.183 0 .365-.05.525-.149.295-.183.475-.504.475-.851v-8c0-.347-.18-.668-.475-.851zm-15.525 6.351c-.829 0-1.5-.671-1.5-1.5s.671-1.5 1.5-1.5 1.5.671 1.5 1.5-.671 1.5-1.5 1.5z" + }, + "children": [] + }] +}; +exports.video = video; \ No newline at end of file diff --git a/dist/typicons/videoOutline.js b/dist/typicons/videoOutline.js new file mode 100644 index 000000000..69437f85d --- /dev/null +++ b/dist/typicons/videoOutline.js @@ -0,0 +1,25 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.videoOutline = void 0; +var videoOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "circle", + "attribs": { + "cx": "7", + "cy": "11", + "r": "1" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M21.585 7.188c-.262-.188-.599-.241-.901-.137l-1.707.568c-.188-1.477-1.451-2.62-2.977-2.62h-11c-1.654 0-3 1.347-3 3v6c0 1.653 1.346 3 3 3h3v1.111l.008.09c.066.738.381 1.423.887 1.928.562.562 1.311.872 2.104.872s1.542-.31 2.104-.87c.574-.577.898-1.346.896-2.113v-1.017h2c1.524 0 2.789-1.145 2.978-2.62l1.707.568c.303.104.64.051.9-.138.262-.188.415-.49.415-.812v-6c.001-.318-.153-.621-.414-.81zm-9.585 10.835c.001.248-.119.5-.309.689-.191.189-.441.286-.692.286-.25 0-.501-.097-.69-.286-.19-.189-.285-.441-.309-.691v-2.021h2v2.023zm5-4.023c0 .552-.448 1-1 1h-11c-.552 0-1-.448-1-1v-6c0-.552.448-1 1-1h11c.552 0 1 .448 1 1v6zm3-1.389s-1.895-.605-2-.605v-2.012c.105 0 2-.605 2-.605v3.222z" + }, + "children": [] + }] +}; +exports.videoOutline = videoOutline; \ No newline at end of file diff --git a/dist/typicons/volume.js b/dist/typicons/volume.js new file mode 100644 index 000000000..14015302e --- /dev/null +++ b/dist/typicons/volume.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.volume = void 0; +var volume = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M17.138 5.824c-.449 0-.905.152-1.356.453l-2.672 1.781c-.753.503-2.206.942-3.11.942-1.654 0-3 1.346-3 3v2c0 1.654 1.346 3 3 3 .904 0 2.357.439 3.109.941l2.672 1.781c.451.301.907.453 1.356.453.898.001 1.863-.68 1.863-2.175v-10c0-1.495-.965-2.176-1.862-2.176zm-3.138 10.322c-1.093-.651-2.789-1.146-4-1.146-.552 0-1-.448-1-1v-2c0-.552.448-1 1-1 1.211 0 2.907-.495 4-1.146v6.292zm3 1.854l-.006.12-.104-.062-1.89-1.26v-7.596l1.891-1.261.104-.062.005.121v10z" + }, + "children": [] + }] +}; +exports.volume = volume; \ No newline at end of file diff --git a/dist/typicons/volumeDown.js b/dist/typicons/volumeDown.js new file mode 100644 index 000000000..a70f9208b --- /dev/null +++ b/dist/typicons/volumeDown.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.volumeDown = void 0; +var volumeDown = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M15.138 5.824c-.449 0-.905.152-1.356.453l-2.672 1.781c-.753.503-2.206.942-3.11.942-1.654 0-3 1.346-3 3v2c0 1.654 1.346 3 3 3 .904 0 2.357.439 3.109.941l2.672 1.781c.451.301.907.453 1.356.453.898.001 1.863-.68 1.863-2.175v-10c0-1.495-.965-2.176-1.862-2.176zm-7.138 9.176c-.552 0-1-.448-1-1v-2c0-.552.448-1 1-1 1.211 0 2.907-.495 4-1.146v6.293c-1.093-.652-2.789-1.147-4-1.147zm7 3l-.006.12-.104-.062-1.89-1.26v-7.596l1.891-1.261.104-.062.005.121v10zM18.292 10.294c-.39.391-.39 1.023.002 1.414.345.345.535.803.535 1.291 0 .489-.19.948-.536 1.294-.391.39-.391 1.023 0 1.414.195.195.451.293.707.293s.512-.098.707-.293c.724-.723 1.122-1.685 1.122-2.708s-.398-1.984-1.123-2.707c-.389-.389-1.023-.391-1.414.002z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15.138 5.824c-.449 0-.905.152-1.356.453l-2.672 1.781c-.753.503-2.206.942-3.11.942-1.654 0-3 1.346-3 3v2c0 1.654 1.346 3 3 3 .904 0 2.357.439 3.109.941l2.672 1.781c.451.301.907.453 1.356.453.898.001 1.863-.68 1.863-2.175v-10c0-1.495-.965-2.176-1.862-2.176zm-7.138 9.176c-.552 0-1-.448-1-1v-2c0-.552.448-1 1-1 1.211 0 2.907-.495 4-1.146v6.293c-1.093-.652-2.789-1.147-4-1.147zm7 3l-.006.12-.104-.062-1.89-1.26v-7.596l1.891-1.261.104-.062.005.121v10zM18.292 10.294c-.39.391-.39 1.023.002 1.414.345.345.535.803.535 1.291 0 .489-.19.948-.536 1.294-.391.39-.391 1.023 0 1.414.195.195.451.293.707.293s.512-.098.707-.293c.724-.723 1.122-1.685 1.122-2.708s-.398-1.984-1.123-2.707c-.389-.389-1.023-.391-1.414.002z" + }, + "children": [] + }] + }] + }] +}; +exports.volumeDown = volumeDown; \ No newline at end of file diff --git a/dist/typicons/volumeMute.js b/dist/typicons/volumeMute.js new file mode 100644 index 000000000..96f01f41a --- /dev/null +++ b/dist/typicons/volumeMute.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.volumeMute = void 0; +var volumeMute = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M19.707 5.293c-.391-.391-1.023-.391-1.414 0l-1.551 1.551c-.345-.688-.987-1.02-1.604-1.02-.449 0-.905.152-1.356.453l-2.672 1.781c-.753.503-2.206.942-3.11.942-1.654 0-3 1.346-3 3v2c0 1.237.754 2.302 1.826 2.76l-1.533 1.533c-.391.391-.391 1.023 0 1.414.195.195.451.293.707.293s.512-.098.707-.293l2.527-2.527c.697.174 1.416.455 1.875.762l2.672 1.781c.451.301.907.453 1.356.453.898 0 1.863-.681 1.863-2.176v-8.586l2.707-2.707c.391-.391.391-1.023 0-1.414zm-4.816 2.648l.104-.062.005.121v1.293l-2 2v-2.091l1.891-1.261zm-7.891 4.059c0-.552.448-1 1-1 1.211 0 2.907-.495 4-1.146v2.439l-2.83 2.83c-.413-.077-.814-.123-1.17-.123-.552 0-1-.448-1-1v-2zm3.301 3.406l1.699-1.699v2.439c-.481-.287-1.075-.542-1.699-.74zm4.693 2.714l-.104-.062-1.89-1.26v-4.091l2-2v7.293l-.006.12z" + }, + "children": [] + }] +}; +exports.volumeMute = volumeMute; \ No newline at end of file diff --git a/dist/typicons/volumeUp.js b/dist/typicons/volumeUp.js new file mode 100644 index 000000000..a1fdf4bd7 --- /dev/null +++ b/dist/typicons/volumeUp.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.volumeUp = void 0; +var volumeUp = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M16.706 10.292c-.389-.389-1.023-.391-1.414.002-.39.391-.39 1.023.002 1.414.345.345.535.803.535 1.291 0 .489-.19.948-.536 1.294-.391.39-.391 1.023 0 1.414.195.195.451.293.707.293s.512-.098.707-.293c.724-.723 1.122-1.685 1.122-2.708s-.398-1.984-1.123-2.707zM18.706 8.292c-.391-.389-1.023-.39-1.414.002-.39.391-.39 1.024.002 1.414.879.877 1.363 2.044 1.364 3.287.001 1.246-.484 2.417-1.365 3.298-.391.391-.391 1.023 0 1.414.195.195.451.293.707.293s.512-.098.707-.293c1.259-1.259 1.952-2.933 1.951-4.713-.001-1.777-.694-3.447-1.952-4.702zM20.706 6.292c-.391-.389-1.023-.39-1.414.002-.39.391-.39 1.024.002 1.414 1.412 1.409 2.191 3.285 2.192 5.284.002 2.002-.777 3.885-2.193 5.301-.391.391-.391 1.023 0 1.414.195.195.451.293.707.293s.512-.098.707-.293c1.794-1.794 2.781-4.18 2.779-6.717-.001-2.533-.989-4.912-2.78-6.698zM12.138 5.824c-.449 0-.905.152-1.356.453l-2.673 1.782c-.752.502-2.205.941-3.109.941-1.654 0-3 1.346-3 3v2c0 1.654 1.346 3 3 3 .904 0 2.357.439 3.109.941l2.672 1.781c.451.301.907.453 1.356.453.898.001 1.863-.68 1.863-2.175v-10c0-1.495-.965-2.176-1.862-2.176zm-7.138 9.176c-.552 0-1-.448-1-1v-2c0-.552.448-1 1-1 1.211 0 2.907-.495 4-1.146v6.293c-1.093-.652-2.789-1.147-4-1.147zm7 3l-.006.12-.104-.062-1.89-1.26v-7.596l1.891-1.261.104-.062.005.121v10z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M16.706 10.292c-.389-.389-1.023-.391-1.414.002-.39.391-.39 1.023.002 1.414.345.345.535.803.535 1.291 0 .489-.19.948-.536 1.294-.391.39-.391 1.023 0 1.414.195.195.451.293.707.293s.512-.098.707-.293c.724-.723 1.122-1.685 1.122-2.708s-.398-1.984-1.123-2.707zM18.706 8.292c-.391-.389-1.023-.39-1.414.002-.39.391-.39 1.024.002 1.414.879.877 1.363 2.044 1.364 3.287.001 1.246-.484 2.417-1.365 3.298-.391.391-.391 1.023 0 1.414.195.195.451.293.707.293s.512-.098.707-.293c1.259-1.259 1.952-2.933 1.951-4.713-.001-1.777-.694-3.447-1.952-4.702zM20.706 6.292c-.391-.389-1.023-.39-1.414.002-.39.391-.39 1.024.002 1.414 1.412 1.409 2.191 3.285 2.192 5.284.002 2.002-.777 3.885-2.193 5.301-.391.391-.391 1.023 0 1.414.195.195.451.293.707.293s.512-.098.707-.293c1.794-1.794 2.781-4.18 2.779-6.717-.001-2.533-.989-4.912-2.78-6.698zM12.138 5.824c-.449 0-.905.152-1.356.453l-2.673 1.782c-.752.502-2.205.941-3.109.941-1.654 0-3 1.346-3 3v2c0 1.654 1.346 3 3 3 .904 0 2.357.439 3.109.941l2.672 1.781c.451.301.907.453 1.356.453.898.001 1.863-.68 1.863-2.175v-10c0-1.495-.965-2.176-1.862-2.176zm-7.138 9.176c-.552 0-1-.448-1-1v-2c0-.552.448-1 1-1 1.211 0 2.907-.495 4-1.146v6.293c-1.093-.652-2.789-1.147-4-1.147zm7 3l-.006.12-.104-.062-1.89-1.26v-7.596l1.891-1.261.104-.062.005.121v10z" + }, + "children": [] + }] + }] + }] +}; +exports.volumeUp = volumeUp; \ No newline at end of file diff --git a/dist/typicons/warning.js b/dist/typicons/warning.js new file mode 100644 index 000000000..a40b24499 --- /dev/null +++ b/dist/typicons/warning.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.warning = void 0; +var warning = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M21.171 15.398l-5.912-9.854c-.776-1.293-1.963-2.033-3.259-2.033s-2.483.74-3.259 2.031l-5.912 9.856c-.786 1.309-.872 2.705-.235 3.83.636 1.126 1.878 1.772 3.406 1.772h12c1.528 0 2.77-.646 3.406-1.771.637-1.125.551-2.521-.235-3.831zm-9.171 2.151c-.854 0-1.55-.695-1.55-1.549 0-.855.695-1.551 1.55-1.551s1.55.696 1.55 1.551c0 .854-.696 1.549-1.55 1.549zm1.633-7.424c-.011.031-1.401 3.468-1.401 3.468-.038.094-.13.156-.231.156s-.193-.062-.231-.156l-1.391-3.438c-.09-.233-.129-.443-.129-.655 0-.965.785-1.75 1.75-1.75s1.75.785 1.75 1.75c0 .212-.039.422-.117.625z" + }, + "children": [] + }] +}; +exports.warning = warning; \ No newline at end of file diff --git a/dist/typicons/warningOutline.js b/dist/typicons/warningOutline.js new file mode 100644 index 000000000..73a464d46 --- /dev/null +++ b/dist/typicons/warningOutline.js @@ -0,0 +1,31 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.warningOutline = void 0; +var warningOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 5.511c.561 0 1.119.354 1.544 1.062l5.912 9.854c.851 1.415.194 2.573-1.456 2.573h-12c-1.65 0-2.307-1.159-1.456-2.573l5.912-9.854c.425-.708.983-1.062 1.544-1.062m0-2c-1.296 0-2.482.74-3.259 2.031l-5.912 9.856c-.786 1.309-.872 2.705-.235 3.83s1.879 1.772 3.406 1.772h12c1.527 0 2.77-.646 3.406-1.771s.551-2.521-.235-3.83l-5.912-9.854c-.777-1.294-1.963-2.034-3.259-2.034z" + }, + "children": [] + }, { + "name": "circle", + "attribs": { + "cx": "12", + "cy": "16", + "r": "1.3" + }, + "children": [] + }, { + "name": "path", + "attribs": { + "d": "M13.5 10c0-.83-.671-1.5-1.5-1.5s-1.5.67-1.5 1.5c0 .199.041.389.111.562.554 1.376 1.389 3.438 1.389 3.438l1.391-3.438c.068-.173.109-.363.109-.562z" + }, + "children": [] + }] +}; +exports.warningOutline = warningOutline; \ No newline at end of file diff --git a/dist/typicons/watch.js b/dist/typicons/watch.js new file mode 100644 index 000000000..476537aba --- /dev/null +++ b/dist/typicons/watch.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.watch = void 0; +var watch = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 13h2c.55 0 1-.45 1-1s-.45-1-1-1h-1v-1c0-.55-.45-1-1-1s-1 .45-1 1v2c0 .55.45 1 1 1zM17 7.105v-2.105c0-1.654-1.346-3-3-3h-4c-1.654 0-3 1.346-3 3v2.105c-1.236 1.263-2 2.989-2 4.895s.764 3.632 2 4.895v2.105c0 1.654 1.346 3 3 3h4c1.654 0 3-1.346 3-3v-2.105c1.236-1.262 2-2.988 2-4.895s-.764-3.632-2-4.895zm-8-2.105c0-.551.449-1 1-1h4c.551 0 1 .449 1 1v1.809c-.883-.512-1.906-.809-3-.809s-2.117.297-3 .809v-1.809zm6 14c0 .551-.449 1-1 1h-4c-.551 0-1-.449-1-1v-1.811c.883.513 1.906.811 3 .811s2.117-.298 3-.811v1.811zm-3-2c-2.757 0-5-2.243-5-5s2.243-5 5-5 5 2.243 5 5-2.243 5-5 5z" + }, + "children": [] + }] +}; +exports.watch = watch; \ No newline at end of file diff --git a/dist/typicons/waves.js b/dist/typicons/waves.js new file mode 100644 index 000000000..b850a080e --- /dev/null +++ b/dist/typicons/waves.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.waves = void 0; +var waves = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M15 19c-1.342 0-2.685-.511-3.707-1.532-1.266-1.265-3.323-1.264-4.586 0-.391.391-1.023.391-1.414 0s-.391-1.023 0-1.414c2.043-2.043 5.369-2.043 7.414 0 1.265 1.264 3.322 1.263 4.586 0 .391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414c-1.021 1.021-2.364 1.532-3.707 1.532zM15 15c-1.342 0-2.685-.511-3.707-1.532-1.266-1.265-3.323-1.264-4.586 0-.391.391-1.023.391-1.414 0s-.391-1.023 0-1.414c2.043-2.043 5.369-2.043 7.414 0 1.265 1.264 3.322 1.263 4.586 0 .391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414c-1.021 1.021-2.364 1.532-3.707 1.532zM15 11c-1.342 0-2.685-.511-3.707-1.532-1.266-1.265-3.323-1.264-4.586 0-.391.391-1.023.391-1.414 0s-.391-1.023 0-1.414c2.043-2.042 5.369-2.044 7.414 0 1.265 1.264 3.322 1.263 4.586 0 .391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414c-1.021 1.021-2.364 1.532-3.707 1.532z" + }, + "children": [] + }] +}; +exports.waves = waves; \ No newline at end of file diff --git a/dist/typicons/wavesOutline.js b/dist/typicons/wavesOutline.js new file mode 100644 index 000000000..947cb58b8 --- /dev/null +++ b/dist/typicons/wavesOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.wavesOutline = void 0; +var wavesOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M20.221 10.761c.498-.552.779-1.252.779-2 0-.801-.312-1.555-.879-2.121-.566-.567-1.32-.879-2.121-.879s-1.555.312-2.121.879c-.233.232-.546.361-.879.361-.333 0-.646-.129-.879-.362-1.366-1.366-3.185-2.118-5.121-2.118s-3.755.752-5.121 2.118c-.567.567-.879 1.321-.879 2.122 0 .748.281 1.448.779 2-.498.551-.779 1.252-.779 2s.281 1.448.779 2c-.498.551-.779 1.252-.779 2 0 .801.312 1.555.879 2.121.566.566 1.32.879 2.121.879s1.555-.312 2.121-.879c.234-.233.545-.362.878-.362.333 0 .646.129.88.363 1.367 1.365 3.185 2.117 5.121 2.117 1.937 0 3.755-.752 5.121-2.118.567-.567.879-1.32.879-2.121 0-.748-.281-1.448-.779-2 .498-.552.779-1.252.779-2s-.281-1.449-.779-2zm-1.514 6.707c-1.021 1.021-2.364 1.532-3.707 1.532-1.342 0-2.685-.511-3.707-1.532-.633-.632-1.463-.948-2.293-.948-.831 0-1.661.316-2.292.948-.196.195-.452.293-.708.293s-.512-.098-.707-.293c-.391-.391-.391-1.023 0-1.414 1.021-1.021 2.364-1.532 3.706-1.532 1.343 0 2.686.511 3.708 1.532.632.632 1.463.947 2.293.947.831 0 1.661-.315 2.293-.947.195-.195.451-.293.707-.293s.512.098.707.293c.391.39.391 1.023 0 1.414zm-13.414-9.414c1.021-1.022 2.365-1.533 3.707-1.533 1.343 0 2.685.511 3.707 1.532.632.633 1.463.948 2.293.948.831 0 1.661-.315 2.293-.947.195-.196.451-.293.707-.293s.512.098.707.293c.391.391.391 1.023 0 1.414-1.021 1.021-2.364 1.532-3.707 1.532-1.342 0-2.685-.511-3.707-1.532-.633-.632-1.463-.948-2.293-.948-.831 0-1.661.316-2.292.948-.196.195-.452.293-.708.293s-.512-.098-.707-.293c-.391-.391-.391-1.024 0-1.414zm13.414 5.414c-1.021 1.021-2.364 1.532-3.707 1.532-1.342 0-2.685-.511-3.707-1.532-.633-.632-1.463-.948-2.293-.948-.831 0-1.661.316-2.292.948-.196.195-.452.293-.708.293s-.512-.098-.707-.293c-.391-.391-.391-1.023 0-1.414 1.021-1.021 2.364-1.532 3.706-1.532 1.343 0 2.686.511 3.708 1.532.632.632 1.463.947 2.293.947.831 0 1.661-.315 2.293-.947.195-.195.451-.293.707-.293s.512.098.707.293c.391.39.391 1.023 0 1.414z" + }, + "children": [] + }] +}; +exports.wavesOutline = wavesOutline; \ No newline at end of file diff --git a/dist/typicons/weatherCloudy.js b/dist/typicons/weatherCloudy.js new file mode 100644 index 000000000..3416ff896 --- /dev/null +++ b/dist/typicons/weatherCloudy.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weatherCloudy = void 0; +var weatherCloudy = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M17 19h-11c-2.206 0-4-1.794-4-4 0-1.861 1.277-3.429 3.001-3.874l-.001-.126c0-3.309 2.691-6 6-6 2.587 0 4.824 1.638 5.65 4.015 2.942-.246 5.35 2.113 5.35 4.985 0 2.757-2.243 5-5 5zm-11.095-6.006c-1.008.006-1.905.903-1.905 2.006s.897 2 2 2h11c1.654 0 3-1.346 3-3s-1.346-3-3-3c-.243 0-.5.041-.81.13l-1.075.307-.186-1.103c-.325-1.932-1.977-3.334-3.929-3.334-2.206 0-4 1.794-4 4 0 .272.027.545.082.811l.244 1.199-1.421-.016z" + }, + "children": [] + }] +}; +exports.weatherCloudy = weatherCloudy; \ No newline at end of file diff --git a/dist/typicons/weatherDownpour.js b/dist/typicons/weatherDownpour.js new file mode 100644 index 000000000..7b0b9a190 --- /dev/null +++ b/dist/typicons/weatherDownpour.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weatherDownpour = void 0; +var weatherDownpour = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M15 22c-.552 0-1-.447-1-1v-6c0-.553.448-1 1-1s1 .447 1 1v6c0 .553-.448 1-1 1zM9 22c-.552 0-1-.447-1-1v-6c0-.553.448-1 1-1s1 .447 1 1v6c0 .553-.448 1-1 1zM12 24c-.552 0-1-.447-1-1v-6c0-.553.448-1 1-1s1 .447 1 1v6c0 .553-.448 1-1 1zM6 18c-2.206 0-4-1.794-4-4 0-1.861 1.277-3.429 3.001-3.874l-.001-.126c0-3.309 2.691-6 6-6 2.587 0 4.824 1.639 5.65 4.015 2.936-.244 5.35 2.113 5.35 4.985 0 2.241-1.507 4.223-3.666 4.819-.535.146-1.083-.166-1.23-.697-.147-.532.165-1.083.698-1.23 1.294-.358 2.198-1.547 2.198-2.892 0-1.654-1.346-3-3-3-.242 0-.499.041-.811.13l-1.074.306-.185-1.102c-.326-1.932-1.978-3.334-3.93-3.334-2.206 0-4 1.794-4 4 0 .272.027.545.082.808l.248 1.202-1.422-.016c-1.011.006-1.908.903-1.908 2.006s.897 2 2 2c.552 0 1 .447 1 1s-.448 1-1 1z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M15 22c-.552 0-1-.447-1-1v-6c0-.553.448-1 1-1s1 .447 1 1v6c0 .553-.448 1-1 1zM9 22c-.552 0-1-.447-1-1v-6c0-.553.448-1 1-1s1 .447 1 1v6c0 .553-.448 1-1 1zM12 24c-.552 0-1-.447-1-1v-6c0-.553.448-1 1-1s1 .447 1 1v6c0 .553-.448 1-1 1zM6 18c-2.206 0-4-1.794-4-4 0-1.861 1.277-3.429 3.001-3.874l-.001-.126c0-3.309 2.691-6 6-6 2.587 0 4.824 1.639 5.65 4.015 2.936-.244 5.35 2.113 5.35 4.985 0 2.241-1.507 4.223-3.666 4.819-.535.146-1.083-.166-1.23-.697-.147-.532.165-1.083.698-1.23 1.294-.358 2.198-1.547 2.198-2.892 0-1.654-1.346-3-3-3-.242 0-.499.041-.811.13l-1.074.306-.185-1.102c-.326-1.932-1.978-3.334-3.93-3.334-2.206 0-4 1.794-4 4 0 .272.027.545.082.808l.248 1.202-1.422-.016c-1.011.006-1.908.903-1.908 2.006s.897 2 2 2c.552 0 1 .447 1 1s-.448 1-1 1z" + }, + "children": [] + }] + }] + }] +}; +exports.weatherDownpour = weatherDownpour; \ No newline at end of file diff --git a/dist/typicons/weatherNight.js b/dist/typicons/weatherNight.js new file mode 100644 index 000000000..65db5e526 --- /dev/null +++ b/dist/typicons/weatherNight.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weatherNight = void 0; +var weatherNight = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M10.5 20c-.861 0-1.71-.151-2.523-.451l-1.317-.485.89-1.087c1.275-1.56 1.95-3.454 1.95-5.477s-.675-3.917-1.951-5.477l-.89-1.087 1.317-.485c.814-.3 1.663-.451 2.524-.451 4.136 0 7.5 3.364 7.5 7.5s-3.364 7.5-7.5 7.5zm-.509-2.024c.169.016.339.024.509.024 3.032 0 5.5-2.468 5.5-5.5s-2.468-5.5-5.5-5.5c-.17 0-.34.008-.509.024.991 1.645 1.509 3.511 1.509 5.476s-.518 3.831-1.509 5.476z" + }, + "children": [] + }] +}; +exports.weatherNight = weatherNight; \ No newline at end of file diff --git a/dist/typicons/weatherPartlySunny.js b/dist/typicons/weatherPartlySunny.js new file mode 100644 index 000000000..d23429817 --- /dev/null +++ b/dist/typicons/weatherPartlySunny.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weatherPartlySunny = void 0; +var weatherPartlySunny = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M14.5 3l-1 3-1-3c-.184-.553.114-1.149.666-1.333.553-.185 1.15.114 1.334.666.075.226.07.458 0 .667zM19.864 6.05l-2.829 1.415 1.415-2.829c.261-.521.894-.731 1.414-.472.521.261.731.894.472 1.415-.107.212-.274.372-.472.471zM21.5 12l-3-1 3-1c.553-.185 1.149.114 1.334.667.184.552-.115 1.148-.668 1.333-.225.075-.457.069-.666 0zM8.55 4.636l1.415 2.829-2.829-1.415c-.521-.261-.732-.894-.472-1.414.261-.521.895-.731 1.414-.472.213.107.373.274.472.472zM17.776 12.342c.139-.424.224-.871.224-1.342 0-2.481-2.019-4.5-4.5-4.5-1.34 0-2.537.594-3.357 1.528l-.143-.028c-1.776 0-3.369.78-4.469 2.011-.24-.08-.472-.086-.697-.011-.553.185-.852.781-.668 1.333.057.167.158.299.277.411-.283.697-.443 1.458-.443 2.256l.002.126c-1.725.445-3.002 2.013-3.002 3.874 0 2.206 1.795 4 4 4h11c2.757 0 5-2.243 5-5 0-2.129-1.344-3.939-3.224-4.658zm-4.276-3.842c1.379 0 2.5 1.121 2.5 2.5 0 .366-.096.706-.238 1.019-.354.021-.72.074-1.118.188-.521-1.353-1.604-2.415-2.967-2.905.456-.49 1.102-.802 1.823-.802zm2.5 11.5h-11c-1.104 0-2-.897-2-2s.896-2 1.908-2.006l1.422.016-.248-1.202c-.055-.263-.082-.536-.082-.808 0-2.206 1.795-4 4-4l.069-.014c1.904.055 3.495 1.406 3.847 3.27l.038.186c.123.436.517.706.946.712l.289-.023c.312-.09.569-.131.811-.131 1.654 0 3 1.346 3 3s-1.346 3-3 3z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M14.5 3l-1 3-1-3c-.184-.553.114-1.149.666-1.333.553-.185 1.15.114 1.334.666.075.226.07.458 0 .667zM19.864 6.05l-2.829 1.415 1.415-2.829c.261-.521.894-.731 1.414-.472.521.261.731.894.472 1.415-.107.212-.274.372-.472.471zM21.5 12l-3-1 3-1c.553-.185 1.149.114 1.334.667.184.552-.115 1.148-.668 1.333-.225.075-.457.069-.666 0zM8.55 4.636l1.415 2.829-2.829-1.415c-.521-.261-.732-.894-.472-1.414.261-.521.895-.731 1.414-.472.213.107.373.274.472.472zM17.776 12.342c.139-.424.224-.871.224-1.342 0-2.481-2.019-4.5-4.5-4.5-1.34 0-2.537.594-3.357 1.528l-.143-.028c-1.776 0-3.369.78-4.469 2.011-.24-.08-.472-.086-.697-.011-.553.185-.852.781-.668 1.333.057.167.158.299.277.411-.283.697-.443 1.458-.443 2.256l.002.126c-1.725.445-3.002 2.013-3.002 3.874 0 2.206 1.795 4 4 4h11c2.757 0 5-2.243 5-5 0-2.129-1.344-3.939-3.224-4.658zm-4.276-3.842c1.379 0 2.5 1.121 2.5 2.5 0 .366-.096.706-.238 1.019-.354.021-.72.074-1.118.188-.521-1.353-1.604-2.415-2.967-2.905.456-.49 1.102-.802 1.823-.802zm2.5 11.5h-11c-1.104 0-2-.897-2-2s.896-2 1.908-2.006l1.422.016-.248-1.202c-.055-.263-.082-.536-.082-.808 0-2.206 1.795-4 4-4l.069-.014c1.904.055 3.495 1.406 3.847 3.27l.038.186c.123.436.517.706.946.712l.289-.023c.312-.09.569-.131.811-.131 1.654 0 3 1.346 3 3s-1.346 3-3 3z" + }, + "children": [] + }] + }] + }] +}; +exports.weatherPartlySunny = weatherPartlySunny; \ No newline at end of file diff --git a/dist/typicons/weatherShower.js b/dist/typicons/weatherShower.js new file mode 100644 index 000000000..2603c3cdf --- /dev/null +++ b/dist/typicons/weatherShower.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weatherShower = void 0; +var weatherShower = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M17 18c-.552 0-1-.447-1-1s.448-1 1-1c1.654 0 3-1.346 3-3s-1.346-3-3-3c-.243 0-.5.041-.81.13l-1.075.307-.185-1.103c-.326-1.932-1.978-3.334-3.93-3.334-2.206 0-4 1.794-4 4 0 .272.027.545.082.811l.244 1.199-1.42-.016c-1.009.006-1.906.903-1.906 2.006s.897 2 2 2c.552 0 1 .447 1 1s-.448 1-1 1c-2.206 0-4-1.794-4-4 0-1.861 1.277-3.429 3.001-3.874l-.001-.126c0-3.309 2.691-6 6-6 2.587 0 4.824 1.638 5.65 4.015 2.939-.244 5.35 2.113 5.35 4.985 0 2.757-2.243 5-5 5zM10.5 18l1-3 1 3c.184.553-.114 1.149-.667 1.333-.552.185-1.149-.114-1.333-.666-.075-.226-.07-.458 0-.667zM13.5 20l1-3 1 3c.184.553-.114 1.149-.667 1.333-.552.185-1.149-.114-1.333-.666-.075-.226-.07-.458 0-.667zM7.5 20l1-3 1 3c.184.553-.114 1.149-.667 1.333-.552.185-1.149-.114-1.333-.666-.075-.226-.07-.458 0-.667z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17 18c-.552 0-1-.447-1-1s.448-1 1-1c1.654 0 3-1.346 3-3s-1.346-3-3-3c-.243 0-.5.041-.81.13l-1.075.307-.185-1.103c-.326-1.932-1.978-3.334-3.93-3.334-2.206 0-4 1.794-4 4 0 .272.027.545.082.811l.244 1.199-1.42-.016c-1.009.006-1.906.903-1.906 2.006s.897 2 2 2c.552 0 1 .447 1 1s-.448 1-1 1c-2.206 0-4-1.794-4-4 0-1.861 1.277-3.429 3.001-3.874l-.001-.126c0-3.309 2.691-6 6-6 2.587 0 4.824 1.638 5.65 4.015 2.939-.244 5.35 2.113 5.35 4.985 0 2.757-2.243 5-5 5zM10.5 18l1-3 1 3c.184.553-.114 1.149-.667 1.333-.552.185-1.149-.114-1.333-.666-.075-.226-.07-.458 0-.667zM13.5 20l1-3 1 3c.184.553-.114 1.149-.667 1.333-.552.185-1.149-.114-1.333-.666-.075-.226-.07-.458 0-.667zM7.5 20l1-3 1 3c.184.553-.114 1.149-.667 1.333-.552.185-1.149-.114-1.333-.666-.075-.226-.07-.458 0-.667z" + }, + "children": [] + }] + }] + }] +}; +exports.weatherShower = weatherShower; \ No newline at end of file diff --git a/dist/typicons/weatherSnow.js b/dist/typicons/weatherSnow.js new file mode 100644 index 000000000..cd86b30c2 --- /dev/null +++ b/dist/typicons/weatherSnow.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weatherSnow = void 0; +var weatherSnow = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M20.5 15.134l-2.457-.503 1.483-.396c.533-.143.85-.69.707-1.225-.142-.533-.689-.85-1.225-.707l-1.508.403c.037-.231.071-.464.071-.706s-.034-.476-.071-.707l1.51.404.26.034c.441 0 .846-.295.965-.741.143-.533-.174-1.082-.707-1.225l-1.483-.397 2.455-.502c.216-.044.42-.156.577-.333.386-.436.347-1.102-.089-1.488-.436-.386-1.102-.347-1.488.089l-1.663 1.874.398-1.479c.144-.533-.173-1.082-.706-1.226-.531-.142-1.082.173-1.226.706l-.407 1.517c-.366-.299-.771-.544-1.219-.717l1.102-1.102c.391-.391.391-1.023 0-1.414s-1.023-.391-1.414 0l-1.086 1.086.793-2.379c.069-.209.075-.441 0-.667-.184-.552-.781-.851-1.333-.666-.552.184-.85.78-.667 1.333l.793 2.379-1.086-1.086c-.391-.391-1.023-.391-1.414 0s-.391 1.023 0 1.414l1.102 1.102c-.447.173-.853.419-1.219.717l-.405-1.515c-.143-.534-.697-.852-1.224-.708-.534.143-.851.69-.708 1.224l.396 1.485-1.662-1.877c-.146-.164-.345-.285-.578-.333-.57-.117-1.127.25-1.244.82s.251 1.128.822 1.245l2.454.503-1.48.396c-.533.143-.85.691-.707 1.225.119.447.523.741.965.741l.26-.034 1.508-.404c-.039.231-.073.465-.073.706 0 .242.034.475.071.707l-1.508-.404c-.532-.142-1.081.173-1.225.707-.144.533.174 1.082.707 1.225l1.483.397-2.455.502c-.216.044-.42.156-.577.334-.387.436-.347 1.102.089 1.487.436.387 1.103.347 1.488-.089l1.665-1.878-.398 1.484c-.144.533.173 1.082.707 1.225l.26.034c.441 0 .845-.294.965-.741l.406-1.515c.366.298.771.544 1.22.716l-1.104 1.102c-.391.39-.391 1.023 0 1.414s1.023.391 1.414 0l.706-.707h.252l-.666 1.999c-.069.209-.075.441 0 .667.184.552.781.851 1.333.666.553-.184.851-.78.667-1.333l-.666-1.999h.252l.707.707c.196.195.451.293.707.293s.512-.098.707-.293c.391-.39.391-1.023 0-1.414l-1.102-1.103c.448-.172.854-.418 1.22-.717l.406 1.517c.12.447.523.741.965.741l.26-.034c.533-.143.851-.691.707-1.225l-.397-1.48 1.662 1.874c.146.165.345.285.577.333.57.117 1.128-.251 1.244-.821.117-.57-.251-1.127-.821-1.244zm-7.428-.634c-1.379 0-2.5-1.121-2.5-2.5s1.121-2.5 2.5-2.5 2.5 1.121 2.5 2.5-1.121 2.5-2.5 2.5z" + }, + "children": [] + }] +}; +exports.weatherSnow = weatherSnow; \ No newline at end of file diff --git a/dist/typicons/weatherStormy.js b/dist/typicons/weatherStormy.js new file mode 100644 index 000000000..5cae79c4f --- /dev/null +++ b/dist/typicons/weatherStormy.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weatherStormy = void 0; +var weatherStormy = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M17 18c-.553 0-1-.447-1-1s.447-1 1-1c1.654 0 3-1.346 3-3s-1.346-3-3-3c-.238 0-.496.042-.813.131l-1.071.301-.186-1.098c-.326-1.932-1.979-3.334-3.93-3.334-2.205 0-4 1.794-4 4 0 .274.027.545.082.806l.26 1.24-1.436-.052c-1.01.006-1.906.903-1.906 2.006s.896 2 2 2c.553 0 1 .447 1 1s-.447 1-1 1c-2.205 0-4-1.794-4-4 0-1.861 1.277-3.429 3.002-3.874l-.002-.126c0-3.309 2.691-6 6-6 2.587 0 4.824 1.638 5.649 4.015 2.925-.241 5.351 2.112 5.351 4.985 0 2.757-2.243 5-5 5zM12.639 14l-4.5 4.051 3 1.449-1.5 3.5 4.5-4.05-3-1.45z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M17 18c-.553 0-1-.447-1-1s.447-1 1-1c1.654 0 3-1.346 3-3s-1.346-3-3-3c-.238 0-.496.042-.813.131l-1.071.301-.186-1.098c-.326-1.932-1.979-3.334-3.93-3.334-2.205 0-4 1.794-4 4 0 .274.027.545.082.806l.26 1.24-1.436-.052c-1.01.006-1.906.903-1.906 2.006s.896 2 2 2c.553 0 1 .447 1 1s-.447 1-1 1c-2.205 0-4-1.794-4-4 0-1.861 1.277-3.429 3.002-3.874l-.002-.126c0-3.309 2.691-6 6-6 2.587 0 4.824 1.638 5.649 4.015 2.925-.241 5.351 2.112 5.351 4.985 0 2.757-2.243 5-5 5zM12.639 14l-4.5 4.051 3 1.449-1.5 3.5 4.5-4.05-3-1.45z" + }, + "children": [] + }] + }] + }] +}; +exports.weatherStormy = weatherStormy; \ No newline at end of file diff --git a/dist/typicons/weatherSunny.js b/dist/typicons/weatherSunny.js new file mode 100644 index 000000000..573ea730d --- /dev/null +++ b/dist/typicons/weatherSunny.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weatherSunny = void 0; +var weatherSunny = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M13 4l-1 2.934-1-2.934c-.188-.553.106-1.152.659-1.341.552-.188 1.153.107 1.341.659.078.23.072.469 0 .682zM4 11l2.934 1-2.934 1c-.553.188-1.152-.106-1.341-.659-.188-.552.107-1.153.659-1.341.23-.078.469-.072.682 0zM11 20l1-2.934 1 2.934c.188.553-.106 1.152-.659 1.341-.552.188-1.152-.106-1.341-.659-.078-.23-.072-.469 0-.682zM20 12.998l-2.934-1 2.934-1c.553-.188 1.152.106 1.341.659.188.552-.106 1.152-.659 1.341-.23.078-.469.072-.682 0zM7.05 5.636l1.367 2.781-2.781-1.367c-.524-.257-.74-.891-.483-1.414.258-.523.891-.739 1.414-.482.218.107.383.28.483.482zM5.636 16.949l2.781-1.367-1.367 2.781c-.257.523-.891.739-1.414.482-.523-.258-.739-.891-.482-1.414.107-.218.28-.382.482-.482zM16.949 18.363l-1.367-2.781 2.781 1.367c.523.257.739.891.482 1.414-.258.523-.891.739-1.414.482-.218-.107-.382-.28-.482-.482zM18.362 7.048l-2.782 1.368 1.368-2.782c.257-.523.891-.739 1.414-.482.523.258.739.891.481 1.415-.106.217-.279.381-.481.481zM12 16.5c-2.481 0-4.5-2.019-4.5-4.5s2.019-4.5 4.5-4.5 4.5 2.019 4.5 4.5-2.019 4.5-4.5 4.5zm0-7c-1.379 0-2.5 1.121-2.5 2.5s1.121 2.5 2.5 2.5 2.5-1.121 2.5-2.5-1.121-2.5-2.5-2.5z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M13 4l-1 2.934-1-2.934c-.188-.553.106-1.152.659-1.341.552-.188 1.153.107 1.341.659.078.23.072.469 0 .682zM4 11l2.934 1-2.934 1c-.553.188-1.152-.106-1.341-.659-.188-.552.107-1.153.659-1.341.23-.078.469-.072.682 0zM11 20l1-2.934 1 2.934c.188.553-.106 1.152-.659 1.341-.552.188-1.152-.106-1.341-.659-.078-.23-.072-.469 0-.682zM20 12.998l-2.934-1 2.934-1c.553-.188 1.152.106 1.341.659.188.552-.106 1.152-.659 1.341-.23.078-.469.072-.682 0zM7.05 5.636l1.367 2.781-2.781-1.367c-.524-.257-.74-.891-.483-1.414.258-.523.891-.739 1.414-.482.218.107.383.28.483.482zM5.636 16.949l2.781-1.367-1.367 2.781c-.257.523-.891.739-1.414.482-.523-.258-.739-.891-.482-1.414.107-.218.28-.382.482-.482zM16.949 18.363l-1.367-2.781 2.781 1.367c.523.257.739.891.482 1.414-.258.523-.891.739-1.414.482-.218-.107-.382-.28-.482-.482zM18.362 7.048l-2.782 1.368 1.368-2.782c.257-.523.891-.739 1.414-.482.523.258.739.891.481 1.415-.106.217-.279.381-.481.481zM12 16.5c-2.481 0-4.5-2.019-4.5-4.5s2.019-4.5 4.5-4.5 4.5 2.019 4.5 4.5-2.019 4.5-4.5 4.5zm0-7c-1.379 0-2.5 1.121-2.5 2.5s1.121 2.5 2.5 2.5 2.5-1.121 2.5-2.5-1.121-2.5-2.5-2.5z" + }, + "children": [] + }] + }] + }] +}; +exports.weatherSunny = weatherSunny; \ No newline at end of file diff --git a/dist/typicons/weatherWindy.js b/dist/typicons/weatherWindy.js new file mode 100644 index 000000000..a65af1410 --- /dev/null +++ b/dist/typicons/weatherWindy.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weatherWindy = void 0; +var weatherWindy = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M19 5c-.553 0-1 .447-1 1s.447 1 1 1c.552 0 1 .448 1 1s-.448 1-1 1h-11c-.553 0-1 .447-1 1s.447 1 1 1h6c.552 0 1 .448 1 1s-.448 1-1 1h-6.4c-1.654 0-3 1.346-3 3s1.346 3 3 3c.553 0 1-.447 1-1s-.447-1-1-1c-.552 0-1-.448-1-1s.448-1 1-1h6.4c1.654 0 3-1.346 3-3 0-.353-.072-.686-.185-1h2.185c1.654 0 3-1.346 3-3s-1.346-3-3-3z" + }, + "children": [] + }] +}; +exports.weatherWindy = weatherWindy; \ No newline at end of file diff --git a/dist/typicons/weatherWindyCloudy.js b/dist/typicons/weatherWindyCloudy.js new file mode 100644 index 000000000..214a4f014 --- /dev/null +++ b/dist/typicons/weatherWindyCloudy.js @@ -0,0 +1,27 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.weatherWindyCloudy = void 0; +var weatherWindyCloudy = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "g", + "attribs": {}, + "children": [{ + "name": "path", + "attribs": { + "d": "M4.798 15.75c-.134 0-.27-.026-.4-.084-1.457-.639-2.398-2.077-2.398-3.666 0-1.861 1.277-3.429 3.001-3.874l-.001-.126c0-3.309 2.691-6 6-6 2.932 0 5.413 2.104 5.902 5.001.092.544-.275 1.061-.82 1.152-.544.083-1.06-.276-1.152-.82-.326-1.931-1.979-3.333-3.93-3.333-2.206 0-4 1.794-4 4 0 .272.027.546.081.812l.259 1.27-1.431-.088c-1.012.006-1.909.903-1.909 2.006 0 .795.471 1.515 1.2 1.834.506.222.736.812.515 1.317-.164.375-.531.599-.917.599zM19 7c-.553 0-1 .447-1 1s.447 1 1 1c.552 0 1 .448 1 1s-.448 1-1 1h-9.6c-.553 0-1 .447-1 1s.447 1 1 1h4.6c.552 0 1 .448 1 1s-.448 1-1 1h-5c-1.654 0-3 1.346-3 3s1.346 3 3 3c.553 0 1-.447 1-1s-.447-1-1-1c-.552 0-1-.448-1-1s.448-1 1-1h5c1.654 0 3-1.346 3-3 0-.353-.072-.686-.185-1h2.185c1.654 0 3-1.346 3-3s-1.346-3-3-3z" + }, + "children": [{ + "name": "path", + "attribs": { + "d": "M4.798 15.75c-.134 0-.27-.026-.4-.084-1.457-.639-2.398-2.077-2.398-3.666 0-1.861 1.277-3.429 3.001-3.874l-.001-.126c0-3.309 2.691-6 6-6 2.932 0 5.413 2.104 5.902 5.001.092.544-.275 1.061-.82 1.152-.544.083-1.06-.276-1.152-.82-.326-1.931-1.979-3.333-3.93-3.333-2.206 0-4 1.794-4 4 0 .272.027.546.081.812l.259 1.27-1.431-.088c-1.012.006-1.909.903-1.909 2.006 0 .795.471 1.515 1.2 1.834.506.222.736.812.515 1.317-.164.375-.531.599-.917.599zM19 7c-.553 0-1 .447-1 1s.447 1 1 1c.552 0 1 .448 1 1s-.448 1-1 1h-9.6c-.553 0-1 .447-1 1s.447 1 1 1h4.6c.552 0 1 .448 1 1s-.448 1-1 1h-5c-1.654 0-3 1.346-3 3s1.346 3 3 3c.553 0 1-.447 1-1s-.447-1-1-1c-.552 0-1-.448-1-1s.448-1 1-1h5c1.654 0 3-1.346 3-3 0-.353-.072-.686-.185-1h2.185c1.654 0 3-1.346 3-3s-1.346-3-3-3z" + }, + "children": [] + }] + }] + }] +}; +exports.weatherWindyCloudy = weatherWindyCloudy; \ No newline at end of file diff --git a/dist/typicons/wiFi.js b/dist/typicons/wiFi.js new file mode 100644 index 000000000..dd0220e2b --- /dev/null +++ b/dist/typicons/wiFi.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.wiFi = void 0; +var wiFi = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M13.414 19.412c.783-.779.783-2.047 0-2.826-.781-.785-2.049-.785-2.828-.002-.783.783-.783 2.051 0 2.831.781.78 2.049.781 2.828-.003zM20.485 11.515c-.512 0-1.024-.195-1.414-.586-3.899-3.899-10.243-3.898-14.143 0-.782.781-2.048.78-2.829 0-.781-.781-.781-2.047 0-2.829 5.459-5.458 14.341-5.458 19.799 0 .781.781.781 2.047 0 2.828-.389.391-.901.587-1.413.587zM7.757 15.757c-.512 0-1.024-.195-1.414-.586-.781-.781-.781-2.047 0-2.828 3.118-3.119 8.194-3.119 11.313 0 .781.781.781 2.047 0 2.829-.781.781-2.047.781-2.829 0-1.559-1.56-4.097-1.559-5.657 0-.389.39-.901.585-1.413.585z" + }, + "children": [] + }] +}; +exports.wiFi = wiFi; \ No newline at end of file diff --git a/dist/typicons/wiFiOutline.js b/dist/typicons/wiFiOutline.js new file mode 100644 index 000000000..8a82b69c2 --- /dev/null +++ b/dist/typicons/wiFiOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.wiFiOutline = void 0; +var wiFiOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M21.157 10.764c0-.785-.269-1.464-.706-2.048-.045-.094-.131-.149-.21-.226-.163-.18-.341-.338-.536-.48-4.45-3.739-10.965-3.735-15.414.006-.193.142-.742.738-.742.738-.437.584-.706 1.305-.706 2.09 0 .816.362 1.758.759 2.155l5.775 5.796c.642.732 1.572 1.204 2.622 1.204.996 0 1.709-.167 2.526-1 .004 0 5.565-5.646 5.565-5.646.706-.703 1.067-1.699 1.067-2.589zm-9.156 7.234c-.829.002-1.501-.668-1.501-1.498-.002-.828.67-1.502 1.501-1.502.829-.002 1.501.67 1.499 1.502.002.828-.67 1.5-1.499 1.498zm3.888-3.268c-.293.293-.677.438-1.061.438-.385 0-.768-.146-1.061-.438-.976-.976-2.562-.976-3.536 0-.586.586-1.536.584-2.122 0-.586-.586-.586-1.537 0-2.123 2.144-2.144 5.632-2.144 7.779 0 .587.586.587 1.538.001 2.123zm2.829-2.828c-.293.293-.677.438-1.061.438s-.769-.146-1.062-.438c-2.533-2.534-6.658-2.534-9.192 0-.586.584-1.536.584-2.122 0-.585-.586-.585-1.536 0-2.123 3.704-3.701 9.729-3.701 13.435 0 .587.588.587 1.537.002 2.123z" + }, + "children": [] + }] +}; +exports.wiFiOutline = wiFiOutline; \ No newline at end of file diff --git a/dist/typicons/wine.js b/dist/typicons/wine.js new file mode 100644 index 000000000..b07a4cc0d --- /dev/null +++ b/dist/typicons/wine.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.wine = void 0; +var wine = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M17.568 9.432c0-2.55-.906-5.592-.944-5.72-.128-.423-.517-.712-.958-.712h-7.332c-.441 0-.83.289-.958.712-.038.128-.944 3.17-.944 5.72 0 2.735 1.984 5.011 4.587 5.477l-.019.091v4h-1c-.553 0-1 .447-1 1s.447 1 1 1h4c.553 0 1-.447 1-1s-.447-1-1-1h-1v-4l-.019-.092c2.603-.466 4.587-2.741 4.587-5.476zm-5.568 3.568c-1.773 0-3.236-1.303-3.511-3h7.021c-.274 1.697-1.737 3-3.51 3zm-3.555-4c.062-1.468.422-3.093.653-4h5.803c.231.907.591 2.532.653 4h-7.109z" + }, + "children": [] + }] +}; +exports.wine = wine; \ No newline at end of file diff --git a/dist/typicons/world.js b/dist/typicons/world.js new file mode 100644 index 000000000..3f8e05f0f --- /dev/null +++ b/dist/typicons/world.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.world = void 0; +var world = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 2c-4.971 0-9 4.029-9 9s4.029 9 9 9 9-4.029 9-9-4.029-9-9-9zm2 2c0 1-.5 2-1.5 2s-1.5 1-1.5 2v3s1 0 1-3c0-.553.447-1 1-1s1 .447 1 1v3c-.552 0-1 .448-1 1s.448 1 1 1c.553 0 1-.448 1-1h1v-2l1 1-1 1c0 3 0 3-2 4 0-1-1-1-3-1v-2l-2-2v-2c-1 0-1 1-1 1l-.561-.561-2.39-2.39c.11-.192.225-.382.35-.564l.523-.678c1.468-1.716 3.644-2.807 6.078-2.807.691 0 1.359.098 2 .262v.738z" + }, + "children": [] + }] +}; +exports.world = world; \ No newline at end of file diff --git a/dist/typicons/worldOutline.js b/dist/typicons/worldOutline.js new file mode 100644 index 000000000..91a3ddc4c --- /dev/null +++ b/dist/typicons/worldOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.worldOutline = void 0; +var worldOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M12 2c-4.971 0-9 4.029-9 9s4.029 9 9 9 9-4.029 9-9-4.029-9-9-9zm0 6c0-.553.447-1 1-1s1 .447 1 1v3c-.552 0-1 .448-1 1s.448 1 1 1c.553 0 1-.448 1-1h1v-2l1 1-1 1c0 3 0 3-2 4 0-1-1-1-3-1v-2l-2-2v-2c-1 0-1 1-1 1l-.561-.561-1.652-1.651c1.167-2.247 3.512-3.788 6.213-3.788.688 0 1.353.104 1.981.29-.086.895-.579 1.71-1.481 1.71-1 0-1.5 1-1.5 2v3s1 0 1-3zm0 10c-3.859 0-7-3.14-7-7 0-.776.133-1.521.367-2.219l1.926 1.926 1 1 1.707 1.707v1.586c0 .552.447 1 1 1 .779 0 1.651 0 2.006.091.038.301.209.582.468.742.168.104.36.16.552.16.145 0 .289-.032.422-.098 2.348-1.174 2.539-1.644 2.552-4.479l.708-.708c.391-.391.391-1.023 0-1.414l-1-1c-.192-.192-.448-.294-.708-.294-.129 0-.259.025-.383.076-.373.155-.617.52-.617.924v-2c0-.689-.351-1.298-.883-1.658.421-.411.712-.995.826-1.685 2.392 1.115 4.057 3.535 4.057 6.343 0 3.86-3.141 7-7 7z" + }, + "children": [] + }] +}; +exports.worldOutline = worldOutline; \ No newline at end of file diff --git a/dist/typicons/zoom.js b/dist/typicons/zoom.js new file mode 100644 index 000000000..68b7284ff --- /dev/null +++ b/dist/typicons/zoom.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.zoom = void 0; +var zoom = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M13 4c-3.859 0-7 3.141-7 7 0 .763.127 1.495.354 2.183l-.749.75-.511.512-1.008 1.045c-.562.557-.891 1.345-.891 2.185 0 1.727 1.404 3.131 3.13 3.131.757 0 1.504-.278 2.104-.784l.064-.055.061-.061 1.512-1.51.75-.749c.688.226 1.421.353 2.184.353 3.859 0 7-3.141 7-7s-3.141-7-7-7zm0 12c-2.757 0-5-2.243-5-5s2.243-5 5-5 5 2.243 5 5-2.243 5-5 5zM13 7c-2.205 0-4 1.794-4 4s1.795 4 4 4 4-1.794 4-4-1.795-4-4-4zm0 7c-1.656 0-3-1.344-3-3s1.344-3 3-3 3 1.344 3 3-1.344 3-3 3z" + }, + "children": [] + }] +}; +exports.zoom = zoom; \ No newline at end of file diff --git a/dist/typicons/zoomIn.js b/dist/typicons/zoomIn.js new file mode 100644 index 000000000..eff51de11 --- /dev/null +++ b/dist/typicons/zoomIn.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.zoomIn = void 0; +var zoomIn = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M13 11h-2v-2c0-.276-.224-.5-.5-.5s-.5.224-.5.5v2h-2c-.276 0-.5.224-.5.5s.224.5.5.5h2v2c0 .276.224.5.5.5s.5-.224.5-.5v-2h2c.276 0 .5-.224.5-.5s-.224-.5-.5-.5zM18.432 14.97l-.536-.537-.749-.75c.227-.688.354-1.42.354-2.183 0-3.859-3.141-7-7-7s-7 3.141-7 7 3.141 7 7 7c.763 0 1.496-.127 2.184-.354l.75.749 1.512 1.51.061.061.064.055c.601.506 1.348.784 2.104.784 1.726 0 3.13-1.404 3.13-3.131 0-.84-.328-1.628-.924-2.218l-.95-.986zm-12.932-3.47c0-2.757 2.243-5 5-5s5 2.243 5 5-2.243 5-5 5-5-2.243-5-5z" + }, + "children": [] + }] +}; +exports.zoomIn = zoomIn; \ No newline at end of file diff --git a/dist/typicons/zoomInOutline.js b/dist/typicons/zoomInOutline.js new file mode 100644 index 000000000..f71fddc96 --- /dev/null +++ b/dist/typicons/zoomInOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.zoomInOutline = void 0; +var zoomInOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M13 11h-2v-2c0-.275-.225-.5-.5-.5s-.5.225-.5.5v2h-2c-.275 0-.5.225-.5.5s.225.5.5.5h2v2c0 .275.225.5.5.5s.5-.225.5-.5v-2h2c.275 0 .5-.225.5-.5s-.225-.5-.5-.5zM19.381 15.956l-2.244-2.283c.227-.687.363-1.412.363-2.173 0-3.859-3.141-7-7-7s-7 3.141-7 7 3.141 7 7 7c.762 0 1.488-.137 2.173-.364l2.397 2.386c.601.506 1.348.783 2.104.783 1.727 0 3.131-1.404 3.131-3.131 0-.84-.328-1.628-.924-2.218zm-3.901-1.11l2.492 2.531c.205.203.332.486.332.797 0 .625-.507 1.131-1.131 1.131-.312 0-.594-.127-.816-.313l-2.512-2.511c.646-.436 1.201-.991 1.635-1.635zm-9.98-3.346c0-2.757 2.243-5 5-5s5 2.243 5 5-2.243 5-5 5-5-2.243-5-5z" + }, + "children": [] + }] +}; +exports.zoomInOutline = zoomInOutline; \ No newline at end of file diff --git a/dist/typicons/zoomOut.js b/dist/typicons/zoomOut.js new file mode 100644 index 000000000..146407143 --- /dev/null +++ b/dist/typicons/zoomOut.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.zoomOut = void 0; +var zoomOut = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M13 11h-5c-.276 0-.5.224-.5.5s.224.5.5.5h5c.276 0 .5-.224.5-.5s-.224-.5-.5-.5zM19.381 15.956l-.949-.986-.537-.537-.749-.75c.227-.688.354-1.42.354-2.183 0-3.859-3.14-7-7-7s-7 3.141-7 7 3.14 7 7 7c.763 0 1.496-.127 2.184-.354l.75.749 1.512 1.51.06.061.065.055c.601.506 1.348.784 2.104.784 1.726 0 3.13-1.404 3.13-3.131 0-.84-.328-1.628-.924-2.218zm-13.881-4.456c0-2.757 2.243-5 5-5s5 2.243 5 5-2.243 5-5 5-5-2.243-5-5z" + }, + "children": [] + }] +}; +exports.zoomOut = zoomOut; \ No newline at end of file diff --git a/dist/typicons/zoomOutOutline.js b/dist/typicons/zoomOutOutline.js new file mode 100644 index 000000000..d867c479d --- /dev/null +++ b/dist/typicons/zoomOutOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.zoomOutOutline = void 0; +var zoomOutOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M13 12h-5c-.275 0-.5-.225-.5-.5s.225-.5.5-.5h5c.275 0 .5.225.5.5s-.225.5-.5.5zM19.381 15.956l-2.245-2.283c.228-.687.364-1.412.364-2.173 0-3.859-3.141-7-7-7s-7 3.141-7 7 3.141 7 7 7c.761 0 1.488-.137 2.173-.364l2.397 2.386c.601.506 1.348.783 2.104.783 1.727 0 3.131-1.404 3.131-3.131 0-.84-.328-1.628-.924-2.218zm-3.901-1.11l2.492 2.531c.205.203.332.486.332.797 0 .625-.507 1.131-1.131 1.131-.312 0-.594-.127-.816-.313l-2.512-2.511c.646-.436 1.201-.991 1.635-1.635zm-9.98-3.346c0-2.757 2.243-5 5-5s5 2.243 5 5-2.243 5-5 5-5-2.243-5-5z" + }, + "children": [] + }] +}; +exports.zoomOutOutline = zoomOutOutline; \ No newline at end of file diff --git a/dist/typicons/zoomOutline.js b/dist/typicons/zoomOutline.js new file mode 100644 index 000000000..fc804b3d0 --- /dev/null +++ b/dist/typicons/zoomOutline.js @@ -0,0 +1,17 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.zoomOutline = void 0; +var zoomOutline = { + "viewBox": "0 0 24 24", + "children": [{ + "name": "path", + "attribs": { + "d": "M14 8c1.656 0 3 1.344 3 3s-1.344 3-3 3-3-1.344-3-3 1.344-3 3-3m0-1c-2.206 0-4 1.794-4 4s1.794 4 4 4 4-1.794 4-4-1.794-4-4-4zM4.195 17.674c0 1.727 1.404 3.131 3.131 3.131.756 0 1.503-.277 2.104-.783l2.397-2.386c.685.227 1.412.364 2.173.364 3.86 0 7-3.141 7-7s-3.14-7-7-7c-3.859 0-7 3.141-7 7 0 .761.136 1.486.364 2.173l-2.245 2.283c-.596.59-.924 1.378-.924 2.218zm6.459-1.694l-2.512 2.511c-.223.187-.504.313-.816.313-.624 0-1.131-.506-1.131-1.131 0-.311.127-.594.332-.797l2.492-2.531c.435.645.99 1.2 1.635 1.635zm3.346.02c-2.757 0-5-2.243-5-5s2.243-5 5-5 5 2.243 5 5-2.243 5-5 5z" + }, + "children": [] + }] +}; +exports.zoomOutline = zoomOutline; \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index ac62dc61a..225490f1c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,3290 +1,15418 @@ { "name": "react-icons-kit", - "version": "1.3.1", - "lockfileVersion": 1, + "version": "2.0.0", + "lockfileVersion": 2, "requires": true, - "dependencies": { - "@babel/cli": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/@babel/cli/-/cli-7.2.3.tgz", - "integrity": "sha512-bfna97nmJV6nDJhXNPeEfxyMjWnt6+IjUAaDPiYRTBlm8L41n8nvw6UAqUCbvpFfU246gHPxW7sfWwqtF4FcYA==", + "packages": { + "": { + "name": "react-icons-kit", + "version": "2.0.0", + "license": "MIT", + "dependencies": { + "camel-case": "^4.1.2", + "prop-types": "^15.5.8" + }, + "devDependencies": { + "@babel/cli": "^7.2.3", + "@babel/core": "^7.4.0", + "@babel/preset-env": "^7.4.2", + "@babel/preset-react": "^7.0.0", + "@primer/octicons": "^9.6.0", + "cheerio": "^0.22.0", + "cross-env": "^3.1.3", + "css-loader": "^2.1.1", + "fstream": "^1.0.10", + "jest": "^24.5.0", + "node-zip": "^1.1.1", + "react": "^16.8.6", + "react-dom": "^16.8.6", + "react-test-renderer": "^16.3.2", + "rimraf": "^2.5.4", + "style-loader": "^0.13.1", + "svgfont2js": "^0.1.2", + "webpack": "^4.29.6", + "webpack-cli": "^3.3.0", + "webpack-dev-server": "^3.2.1" + }, + "peerDependencies": { + "react": ">=15" + } + }, + "node_modules/@ampproject/remapping": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz", + "integrity": "sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==", "dev": true, - "requires": { - "chokidar": "^2.0.3", - "commander": "^2.8.1", + "dependencies": { + "@jridgewell/gen-mapping": "^0.1.0", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/cli": { + "version": "7.19.3", + "resolved": "https://registry.npmjs.org/@babel/cli/-/cli-7.19.3.tgz", + "integrity": "sha512-643/TybmaCAe101m2tSVHi9UKpETXP9c/Ff4mD2tAwkdP6esKIfaauZFc67vGEM6r9fekbEGid+sZhbEnSe3dg==", + "dev": true, + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.8", + "commander": "^4.0.1", "convert-source-map": "^1.1.0", "fs-readdir-recursive": "^1.1.0", - "glob": "^7.0.0", - "lodash": "^4.17.10", - "mkdirp": "^0.5.1", - "output-file-sync": "^2.0.0", - "slash": "^2.0.0", - "source-map": "^0.5.0" + "glob": "^7.2.0", + "make-dir": "^2.1.0", + "slash": "^2.0.0" + }, + "bin": { + "babel": "bin/babel.js", + "babel-external-helpers": "bin/babel-external-helpers.js" + }, + "engines": { + "node": ">=6.9.0" + }, + "optionalDependencies": { + "@nicolo-ribaudo/chokidar-2": "2.1.8-no-fsevents.3", + "chokidar": "^3.4.0" }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", + "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", + "dev": true, "dependencies": { - "output-file-sync": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/output-file-sync/-/output-file-sync-2.0.1.tgz", - "integrity": "sha512-mDho4qm7WgIXIGf4eYU1RHN2UU5tPfVYVSRwDJw0uTmj35DQUt/eNp19N7v6T3SrR0ESTEf2up2CGO73qI35zQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.11", - "is-plain-obj": "^1.1.0", - "mkdirp": "^0.5.1" - } - }, - "slash": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", - "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", - "dev": true - } + "@babel/highlight": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" } }, - "@babel/code-frame": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.0.0.tgz", - "integrity": "sha512-OfC2uemaknXr87bdLUkWog7nYuliM9Ij5HUcajsVcMCpQrcLmtxRbVFTIqmcSkSeYRBFBRxs2FiUqFJDLdiebA==", + "node_modules/@babel/compat-data": { + "version": "7.19.3", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.19.3.tgz", + "integrity": "sha512-prBHMK4JYYK+wDjJF1q99KK4JLL+egWS4nmNqdlMUgCExMZ+iZW0hGhyC3VEbsPjvaN0TBhW//VIFwBrk8sEiw==", "dev": true, - "requires": { - "@babel/highlight": "^7.0.0" + "engines": { + "node": ">=6.9.0" } }, - "@babel/core": { - "version": "7.4.0", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.4.0.tgz", - "integrity": "sha512-Dzl7U0/T69DFOTwqz/FJdnOSWS57NpjNfCwMKHABr589Lg8uX1RrlBIJ7L5Dubt/xkLsx0xH5EBFzlBVes1ayA==", + "node_modules/@babel/core": { + "version": "7.19.3", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.19.3.tgz", + "integrity": "sha512-WneDJxdsjEvyKtXKsaBGbDeiyOjR5vYq4HcShxnIbG0qixpoHjI3MqeZM9NDvsojNCEBItQE4juOo/bU6e72gQ==", "dev": true, - "requires": { - "@babel/code-frame": "^7.0.0", - "@babel/generator": "^7.4.0", - "@babel/helpers": "^7.4.0", - "@babel/parser": "^7.4.0", - "@babel/template": "^7.4.0", - "@babel/traverse": "^7.4.0", - "@babel/types": "^7.4.0", - "convert-source-map": "^1.1.0", + "dependencies": { + "@ampproject/remapping": "^2.1.0", + "@babel/code-frame": "^7.18.6", + "@babel/generator": "^7.19.3", + "@babel/helper-compilation-targets": "^7.19.3", + "@babel/helper-module-transforms": "^7.19.0", + "@babel/helpers": "^7.19.0", + "@babel/parser": "^7.19.3", + "@babel/template": "^7.18.10", + "@babel/traverse": "^7.19.3", + "@babel/types": "^7.19.3", + "convert-source-map": "^1.7.0", "debug": "^4.1.0", - "json5": "^2.1.0", - "lodash": "^4.17.11", - "resolve": "^1.3.2", - "semver": "^5.4.1", - "source-map": "^0.5.0" + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.1", + "semver": "^6.3.0" }, - "dependencies": { - "debug": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", - "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", - "dev": true, - "requires": { - "ms": "^2.1.1" - } - }, - "json5": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.1.0.tgz", - "integrity": "sha512-8Mh9h6xViijj36g7Dxi+Y4S6hNGV96vcJZr/SrlHh1LR/pEn/8j/+qIBbs44YKl69Lrfctp4QD+AdWLTMqEZAQ==", - "dev": true, - "requires": { - "minimist": "^1.2.0" - } - }, - "minimist": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", - "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", - "dev": true - }, - "ms": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", - "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==", - "dev": true - } + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" } }, - "@babel/generator": { - "version": "7.4.0", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.4.0.tgz", - "integrity": "sha512-/v5I+a1jhGSKLgZDcmAUZ4K/VePi43eRkUs3yePW1HB1iANOD5tqJXwGSG4BZhSksP8J9ejSlwGeTiiOFZOrXQ==", + "node_modules/@babel/generator": { + "version": "7.19.3", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.19.3.tgz", + "integrity": "sha512-fqVZnmp1ncvZU757UzDheKZpfPgatqY59XtW2/j/18H7u76akb8xqvjw82f+i2UKd/ksYsSick/BCLQUUtJ/qQ==", "dev": true, - "requires": { - "@babel/types": "^7.4.0", - "jsesc": "^2.5.1", - "lodash": "^4.17.11", - "source-map": "^0.5.0", - "trim-right": "^1.0.1" + "dependencies": { + "@babel/types": "^7.19.3", + "@jridgewell/gen-mapping": "^0.3.2", + "jsesc": "^2.5.1" }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/generator/node_modules/@jridgewell/gen-mapping": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", + "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", + "dev": true, "dependencies": { - "jsesc": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", - "dev": true - } + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" } }, - "@babel/helper-annotate-as-pure": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.0.0.tgz", - "integrity": "sha512-3UYcJUj9kvSLbLbUIfQTqzcy5VX7GRZ/CCDrnOaZorFFM01aXp1+GJwuFGV4NDDoAS+mOUyHcO6UD/RfqOks3Q==", + "node_modules/@babel/helper-annotate-as-pure": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz", + "integrity": "sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==", "dev": true, - "requires": { - "@babel/types": "^7.0.0" + "dependencies": { + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" } }, - "@babel/helper-builder-binary-assignment-operator-visitor": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.1.0.tgz", - "integrity": "sha512-qNSR4jrmJ8M1VMM9tibvyRAHXQs2PmaksQF7c1CGJNipfe3D8p+wgNwgso/P2A2r2mdgBWAXljNWR0QRZAMW8w==", + "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.18.9.tgz", + "integrity": "sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==", "dev": true, - "requires": { - "@babel/helper-explode-assignable-expression": "^7.1.0", - "@babel/types": "^7.0.0" + "dependencies": { + "@babel/helper-explode-assignable-expression": "^7.18.6", + "@babel/types": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" } }, - "@babel/helper-builder-react-jsx": { - "version": "7.3.0", - "resolved": "https://registry.npmjs.org/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.3.0.tgz", - "integrity": "sha512-MjA9KgwCuPEkQd9ncSXvSyJ5y+j2sICHyrI0M3L+6fnS4wMSNDc1ARXsbTfbb2cXHn17VisSnU/sHFTCxVxSMw==", + "node_modules/@babel/helper-compilation-targets": { + "version": "7.19.3", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.19.3.tgz", + "integrity": "sha512-65ESqLGyGmLvgR0mst5AdW1FkNlj9rQsCKduzEoEPhBCDFGXvz2jW6bXFG6i0/MrV2s7hhXjjb2yAzcPuQlLwg==", "dev": true, - "requires": { - "@babel/types": "^7.3.0", - "esutils": "^2.0.0" + "dependencies": { + "@babel/compat-data": "^7.19.3", + "@babel/helper-validator-option": "^7.18.6", + "browserslist": "^4.21.3", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" } }, - "@babel/helper-call-delegate": { - "version": "7.4.0", - "resolved": "https://registry.npmjs.org/@babel/helper-call-delegate/-/helper-call-delegate-7.4.0.tgz", - "integrity": "sha512-SdqDfbVdNQCBp3WhK2mNdDvHd3BD6qbmIc43CAyjnsfCmgHMeqgDcM3BzY2lchi7HBJGJ2CVdynLWbezaE4mmQ==", + "node_modules/@babel/helper-create-class-features-plugin": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.19.0.tgz", + "integrity": "sha512-NRz8DwF4jT3UfrmUoZjd0Uph9HQnP30t7Ash+weACcyNkiYTywpIjDBgReJMKgr+n86sn2nPVVmJ28Dm053Kqw==", "dev": true, - "requires": { - "@babel/helper-hoist-variables": "^7.4.0", - "@babel/traverse": "^7.4.0", - "@babel/types": "^7.4.0" + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-function-name": "^7.19.0", + "@babel/helper-member-expression-to-functions": "^7.18.9", + "@babel/helper-optimise-call-expression": "^7.18.6", + "@babel/helper-replace-supers": "^7.18.9", + "@babel/helper-split-export-declaration": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" } }, - "@babel/helper-define-map": { - "version": "7.4.0", - "resolved": "https://registry.npmjs.org/@babel/helper-define-map/-/helper-define-map-7.4.0.tgz", - "integrity": "sha512-wAhQ9HdnLIywERVcSvX40CEJwKdAa1ID4neI9NXQPDOHwwA+57DqwLiPEVy2AIyWzAk0CQ8qx4awO0VUURwLtA==", + "node_modules/@babel/helper-create-regexp-features-plugin": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.19.0.tgz", + "integrity": "sha512-htnV+mHX32DF81amCDrwIDr8nrp1PTm+3wfBN9/v8QJOLEioOCOG7qNyq0nHeFiWbT3Eb7gsPwEmV64UCQ1jzw==", "dev": true, - "requires": { - "@babel/helper-function-name": "^7.1.0", - "@babel/types": "^7.4.0", - "lodash": "^4.17.11" + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "regexpu-core": "^5.1.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" } }, - "@babel/helper-explode-assignable-expression": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.1.0.tgz", - "integrity": "sha512-NRQpfHrJ1msCHtKjbzs9YcMmJZOg6mQMmGRB+hbamEdG5PNpaSm95275VD92DvJKuyl0s2sFiDmMZ+EnnvufqA==", + "node_modules/@babel/helper-define-polyfill-provider": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.3.tgz", + "integrity": "sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==", "dev": true, - "requires": { - "@babel/traverse": "^7.1.0", - "@babel/types": "^7.0.0" + "dependencies": { + "@babel/helper-compilation-targets": "^7.17.7", + "@babel/helper-plugin-utils": "^7.16.7", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2", + "semver": "^6.1.2" + }, + "peerDependencies": { + "@babel/core": "^7.4.0-0" } }, - "@babel/helper-function-name": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.1.0.tgz", - "integrity": "sha512-A95XEoCpb3TO+KZzJ4S/5uW5fNe26DjBGqf1o9ucyLyCmi1dXq/B3c8iaWTfBk3VvetUxl16e8tIrd5teOCfGw==", + "node_modules/@babel/helper-environment-visitor": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz", + "integrity": "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==", "dev": true, - "requires": { - "@babel/helper-get-function-arity": "^7.0.0", - "@babel/template": "^7.1.0", - "@babel/types": "^7.0.0" + "engines": { + "node": ">=6.9.0" } }, - "@babel/helper-get-function-arity": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0.tgz", - "integrity": "sha512-r2DbJeg4svYvt3HOS74U4eWKsUAMRH01Z1ds1zx8KNTPtpTL5JAsdFv8BNyOpVqdFhHkkRDIg5B4AsxmkjAlmQ==", + "node_modules/@babel/helper-explode-assignable-expression": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.18.6.tgz", + "integrity": "sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==", "dev": true, - "requires": { - "@babel/types": "^7.0.0" + "dependencies": { + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" } }, - "@babel/helper-hoist-variables": { - "version": "7.4.0", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.4.0.tgz", - "integrity": "sha512-/NErCuoe/et17IlAQFKWM24qtyYYie7sFIrW/tIQXpck6vAu2hhtYYsKLBWQV+BQZMbcIYPU/QMYuTufrY4aQw==", + "node_modules/@babel/helper-function-name": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz", + "integrity": "sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==", "dev": true, - "requires": { - "@babel/types": "^7.4.0" + "dependencies": { + "@babel/template": "^7.18.10", + "@babel/types": "^7.19.0" + }, + "engines": { + "node": ">=6.9.0" } }, - "@babel/helper-member-expression-to-functions": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.0.0.tgz", - "integrity": "sha512-avo+lm/QmZlv27Zsi0xEor2fKcqWG56D5ae9dzklpIaY7cQMK5N8VSpaNVPPagiqmy7LrEjK1IWdGMOqPu5csg==", + "node_modules/@babel/helper-hoist-variables": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", + "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", "dev": true, - "requires": { - "@babel/types": "^7.0.0" + "dependencies": { + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" } }, - "@babel/helper-module-imports": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.0.0.tgz", - "integrity": "sha512-aP/hlLq01DWNEiDg4Jn23i+CXxW/owM4WpDLFUbpjxe4NS3BhLVZQ5i7E0ZrxuQ/vwekIeciyamgB1UIYxxM6A==", + "node_modules/@babel/helper-member-expression-to-functions": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.18.9.tgz", + "integrity": "sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg==", "dev": true, - "requires": { - "@babel/types": "^7.0.0" + "dependencies": { + "@babel/types": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" } }, - "@babel/helper-module-transforms": { - "version": "7.2.2", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.2.2.tgz", - "integrity": "sha512-YRD7I6Wsv+IHuTPkAmAS4HhY0dkPobgLftHp0cRGZSdrRvmZY8rFvae/GVu3bD00qscuvK3WPHB3YdNpBXUqrA==", + "node_modules/@babel/helper-module-imports": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz", + "integrity": "sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==", "dev": true, - "requires": { - "@babel/helper-module-imports": "^7.0.0", - "@babel/helper-simple-access": "^7.1.0", - "@babel/helper-split-export-declaration": "^7.0.0", - "@babel/template": "^7.2.2", - "@babel/types": "^7.2.2", - "lodash": "^4.17.10" + "dependencies": { + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" } }, - "@babel/helper-optimise-call-expression": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.0.0.tgz", - "integrity": "sha512-u8nd9NQePYNQV8iPWu/pLLYBqZBa4ZaY1YWRFMuxrid94wKI1QNt67NEZ7GAe5Kc/0LLScbim05xZFWkAdrj9g==", + "node_modules/@babel/helper-module-transforms": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.19.0.tgz", + "integrity": "sha512-3HBZ377Fe14RbLIA+ac3sY4PTgpxHVkFrESaWhoI5PuyXPBBX8+C34qblV9G89ZtycGJCmCI/Ut+VUDK4bltNQ==", "dev": true, - "requires": { - "@babel/types": "^7.0.0" + "dependencies": { + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-module-imports": "^7.18.6", + "@babel/helper-simple-access": "^7.18.6", + "@babel/helper-split-export-declaration": "^7.18.6", + "@babel/helper-validator-identifier": "^7.18.6", + "@babel/template": "^7.18.10", + "@babel/traverse": "^7.19.0", + "@babel/types": "^7.19.0" + }, + "engines": { + "node": ">=6.9.0" } }, - "@babel/helper-plugin-utils": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.0.0.tgz", - "integrity": "sha512-CYAOUCARwExnEixLdB6sDm2dIJ/YgEAKDM1MOeMeZu9Ld/bDgVo8aiWrXwcY7OBh+1Ea2uUcVRcxKk0GJvW7QA==", - "dev": true + "node_modules/@babel/helper-optimise-call-expression": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz", + "integrity": "sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==", + "dev": true, + "dependencies": { + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } }, - "@babel/helper-regex": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/@babel/helper-regex/-/helper-regex-7.0.0.tgz", - "integrity": "sha512-TR0/N0NDCcUIUEbqV6dCO+LptmmSQFQ7q70lfcEB4URsjD0E1HzicrwUH+ap6BAQ2jhCX9Q4UqZy4wilujWlkg==", + "node_modules/@babel/helper-plugin-utils": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.19.0.tgz", + "integrity": "sha512-40Ryx7I8mT+0gaNxm8JGTZFUITNqdLAgdg0hXzeVZxVD6nFsdhQvip6v8dqkRHzsz1VFpFAaOCHNn0vKBL7Czw==", "dev": true, - "requires": { - "lodash": "^4.17.10" + "engines": { + "node": ">=6.9.0" } }, - "@babel/helper-remap-async-to-generator": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.1.0.tgz", - "integrity": "sha512-3fOK0L+Fdlg8S5al8u/hWE6vhufGSn0bN09xm2LXMy//REAF8kDCrYoOBKYmA8m5Nom+sV9LyLCwrFynA8/slg==", + "node_modules/@babel/helper-remap-async-to-generator": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz", + "integrity": "sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==", "dev": true, - "requires": { - "@babel/helper-annotate-as-pure": "^7.0.0", - "@babel/helper-wrap-function": "^7.1.0", - "@babel/template": "^7.1.0", - "@babel/traverse": "^7.1.0", - "@babel/types": "^7.0.0" + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-wrap-function": "^7.18.9", + "@babel/types": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" } }, - "@babel/helper-replace-supers": { - "version": "7.4.0", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.4.0.tgz", - "integrity": "sha512-PVwCVnWWAgnal+kJ+ZSAphzyl58XrFeSKSAJRiqg5QToTsjL+Xu1f9+RJ+d+Q0aPhPfBGaYfkox66k86thxNSg==", + "node_modules/@babel/helper-replace-supers": { + "version": "7.19.1", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.19.1.tgz", + "integrity": "sha512-T7ahH7wV0Hfs46SFh5Jz3s0B6+o8g3c+7TMxu7xKfmHikg7EAZ3I2Qk9LFhjxXq8sL7UkP5JflezNwoZa8WvWw==", "dev": true, - "requires": { - "@babel/helper-member-expression-to-functions": "^7.0.0", - "@babel/helper-optimise-call-expression": "^7.0.0", - "@babel/traverse": "^7.4.0", - "@babel/types": "^7.4.0" + "dependencies": { + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-member-expression-to-functions": "^7.18.9", + "@babel/helper-optimise-call-expression": "^7.18.6", + "@babel/traverse": "^7.19.1", + "@babel/types": "^7.19.0" + }, + "engines": { + "node": ">=6.9.0" } }, - "@babel/helper-simple-access": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.1.0.tgz", - "integrity": "sha512-Vk+78hNjRbsiu49zAPALxTb+JUQCz1aolpd8osOF16BGnLtseD21nbHgLPGUwrXEurZgiCOUmvs3ExTu4F5x6w==", + "node_modules/@babel/helper-simple-access": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.18.6.tgz", + "integrity": "sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==", "dev": true, - "requires": { - "@babel/template": "^7.1.0", - "@babel/types": "^7.0.0" + "dependencies": { + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" } }, - "@babel/helper-split-export-declaration": { - "version": "7.4.0", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.4.0.tgz", - "integrity": "sha512-7Cuc6JZiYShaZnybDmfwhY4UYHzI6rlqhWjaIqbsJGsIqPimEYy5uh3akSRLMg65LSdSEnJ8a8/bWQN6u2oMGw==", + "node_modules/@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.18.9.tgz", + "integrity": "sha512-imytd2gHi3cJPsybLRbmFrF7u5BIEuI2cNheyKi3/iOBC63kNn3q8Crn2xVuESli0aM4KYsyEqKyS7lFL8YVtw==", "dev": true, - "requires": { - "@babel/types": "^7.4.0" + "dependencies": { + "@babel/types": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" } }, - "@babel/helper-wrap-function": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.2.0.tgz", - "integrity": "sha512-o9fP1BZLLSrYlxYEYyl2aS+Flun5gtjTIG8iln+XuEzQTs0PLagAGSXUcqruJwD5fM48jzIEggCKpIfWTcR7pQ==", + "node_modules/@babel/helper-split-export-declaration": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", + "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", "dev": true, - "requires": { - "@babel/helper-function-name": "^7.1.0", - "@babel/template": "^7.1.0", - "@babel/traverse": "^7.1.0", - "@babel/types": "^7.2.0" + "dependencies": { + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" } }, - "@babel/helpers": { - "version": "7.4.2", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.4.2.tgz", - "integrity": "sha512-gQR1eQeroDzFBikhrCccm5Gs2xBjZ57DNjGbqTaHo911IpmSxflOQWMAHPw/TXk8L3isv7s9lYzUkexOeTQUYg==", + "node_modules/@babel/helper-string-parser": { + "version": "7.18.10", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.18.10.tgz", + "integrity": "sha512-XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw==", "dev": true, - "requires": { - "@babel/template": "^7.4.0", - "@babel/traverse": "^7.4.0", - "@babel/types": "^7.4.0" + "engines": { + "node": ">=6.9.0" } }, - "@babel/highlight": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.0.0.tgz", - "integrity": "sha512-UFMC4ZeFC48Tpvj7C8UgLvtkaUuovQX+5xNWrsIoMG8o2z+XFKjKaN9iVmS84dPwVN00W4wPmqvYoZF3EGAsfw==", + "node_modules/@babel/helper-validator-identifier": { + "version": "7.19.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz", + "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==", "dev": true, - "requires": { - "chalk": "^2.0.0", - "esutils": "^2.0.2", - "js-tokens": "^4.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "requires": { - "color-convert": "^1.9.0" - } - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", - "dev": true - }, - "js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", - "dev": true - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - } + "engines": { + "node": ">=6.9.0" } }, - "@babel/parser": { - "version": "7.4.2", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.4.2.tgz", - "integrity": "sha512-9fJTDipQFvlfSVdD/JBtkiY0br9BtfvW2R8wo6CX/Ej2eMuV0gWPk1M67Mt3eggQvBqYW1FCEk8BN7WvGm/g5g==", - "dev": true + "node_modules/@babel/helper-validator-option": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz", + "integrity": "sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } }, - "@babel/plugin-proposal-async-generator-functions": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.2.0.tgz", - "integrity": "sha512-+Dfo/SCQqrwx48ptLVGLdE39YtWRuKc/Y9I5Fy0P1DDBB9lsAHpjcEJQt+4IifuSOSTLBKJObJqMvaO1pIE8LQ==", + "node_modules/@babel/helper-wrap-function": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.19.0.tgz", + "integrity": "sha512-txX8aN8CZyYGTwcLhlk87KRqncAzhh5TpQamZUa0/u3an36NtDpUP6bQgBCBcLeBs09R/OwQu3OjK0k/HwfNDg==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/helper-remap-async-to-generator": "^7.1.0", - "@babel/plugin-syntax-async-generators": "^7.2.0" + "dependencies": { + "@babel/helper-function-name": "^7.19.0", + "@babel/template": "^7.18.10", + "@babel/traverse": "^7.19.0", + "@babel/types": "^7.19.0" + }, + "engines": { + "node": ">=6.9.0" } }, - "@babel/plugin-proposal-json-strings": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.2.0.tgz", - "integrity": "sha512-MAFV1CA/YVmYwZG0fBQyXhmj0BHCB5egZHCKWIFVv/XCxAeVGIHfos3SwDck4LvCllENIAg7xMKOG5kH0dzyUg==", + "node_modules/@babel/helpers": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.19.0.tgz", + "integrity": "sha512-DRBCKGwIEdqY3+rPJgG/dKfQy9+08rHIAJx8q2p+HSWP87s2HCrQmaAMMyMll2kIXKCW0cO1RdQskx15Xakftg==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/plugin-syntax-json-strings": "^7.2.0" + "dependencies": { + "@babel/template": "^7.18.10", + "@babel/traverse": "^7.19.0", + "@babel/types": "^7.19.0" + }, + "engines": { + "node": ">=6.9.0" } }, - "@babel/plugin-proposal-object-rest-spread": { - "version": "7.4.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.4.0.tgz", - "integrity": "sha512-uTNi8pPYyUH2eWHyYWWSYJKwKg34hhgl4/dbejEjL+64OhbHjTX7wEVWMQl82tEmdDsGeu77+s8HHLS627h6OQ==", + "node_modules/@babel/highlight": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", + "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/plugin-syntax-object-rest-spread": "^7.2.0" + "dependencies": { + "@babel/helper-validator-identifier": "^7.18.6", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + }, + "engines": { + "node": ">=6.9.0" } }, - "@babel/plugin-proposal-optional-catch-binding": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.2.0.tgz", - "integrity": "sha512-mgYj3jCcxug6KUcX4OBoOJz3CMrwRfQELPQ5560F70YQUBZB7uac9fqaWamKR1iWUzGiK2t0ygzjTScZnVz75g==", + "node_modules/@babel/parser": { + "version": "7.19.3", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.19.3.tgz", + "integrity": "sha512-pJ9xOlNWHiy9+FuFP09DEAFbAn4JskgRsVcc169w2xRBC3FRGuQEwjeIMMND9L2zc0iEhO/tGv4Zq+km+hxNpQ==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/plugin-syntax-optional-catch-binding": "^7.2.0" + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" } }, - "@babel/plugin-proposal-unicode-property-regex": { - "version": "7.4.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.4.0.tgz", - "integrity": "sha512-h/KjEZ3nK9wv1P1FSNb9G079jXrNYR0Ko+7XkOx85+gM24iZbPn0rh4vCftk+5QKY7y1uByFataBTmX7irEF1w==", + "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6.tgz", + "integrity": "sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/helper-regex": "^7.0.0", - "regexpu-core": "^4.5.4" + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.9.tgz", + "integrity": "sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg==", + "dev": true, "dependencies": { - "jsesc": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", - "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=", - "dev": true - }, - "regenerate": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.0.tgz", - "integrity": "sha512-1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg==", - "dev": true - }, - "regexpu-core": { - "version": "4.5.4", - "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.5.4.tgz", - "integrity": "sha512-BtizvGtFQKGPUcTy56o3nk1bGRp4SZOTYrDtGNlqCQufptV5IkkLN6Emw+yunAJjzf+C9FQFtvq7IoA3+oMYHQ==", - "dev": true, - "requires": { - "regenerate": "^1.4.0", - "regenerate-unicode-properties": "^8.0.2", - "regjsgen": "^0.5.0", - "regjsparser": "^0.6.0", - "unicode-match-property-ecmascript": "^1.0.4", - "unicode-match-property-value-ecmascript": "^1.1.0" - } - }, - "regjsgen": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.0.tgz", - "integrity": "sha512-RnIrLhrXCX5ow/E5/Mh2O4e/oa1/jW0eaBKTSy3LaCj+M3Bqvm97GWDp2yUtzIs4LEn65zR2yiYGFqb2ApnzDA==", - "dev": true - }, - "regjsparser": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.0.tgz", - "integrity": "sha512-RQ7YyokLiQBomUJuUG8iGVvkgOLxwyZM8k6d3q5SAXpg4r5TZJZigKFvC6PpD+qQ98bCDC5YelPeA3EucDoNeQ==", - "dev": true, - "requires": { - "jsesc": "~0.5.0" - } - } + "@babel/helper-plugin-utils": "^7.18.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.18.9", + "@babel/plugin-proposal-optional-chaining": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.13.0" } }, - "@babel/plugin-syntax-async-generators": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.2.0.tgz", - "integrity": "sha512-1ZrIRBv2t0GSlcwVoQ6VgSLpLgiN/FVQUzt9znxo7v2Ov4jJrs8RY8tv0wvDmFN3qIdMKWrmMMW6yZ0G19MfGg==", + "node_modules/@babel/plugin-proposal-async-generator-functions": { + "version": "7.19.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.19.1.tgz", + "integrity": "sha512-0yu8vNATgLy4ivqMNBIwb1HebCelqN7YX8SL3FDXORv/RqT0zEEWUCH4GH44JsSrvCu6GqnAdR5EBFAPeNBB4Q==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0" + "dependencies": { + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-plugin-utils": "^7.19.0", + "@babel/helper-remap-async-to-generator": "^7.18.9", + "@babel/plugin-syntax-async-generators": "^7.8.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-syntax-json-strings": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.2.0.tgz", - "integrity": "sha512-5UGYnMSLRE1dqqZwug+1LISpA403HzlSfsg6P9VXU6TBjcSHeNlw4DxDx7LgpF+iKZoOG/+uzqoRHTdcUpiZNg==", + "node_modules/@babel/plugin-proposal-class-properties": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz", + "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0" + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-syntax-jsx": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.2.0.tgz", - "integrity": "sha512-VyN4QANJkRW6lDBmENzRszvZf3/4AXaj9YR7GwrWeeN9tEBPuXbmDYVU9bYBN0D70zCWVwUy0HWq2553VCb6Hw==", + "node_modules/@babel/plugin-proposal-class-static-block": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.18.6.tgz", + "integrity": "sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0" + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-class-static-block": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.12.0" } }, - "@babel/plugin-syntax-object-rest-spread": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.2.0.tgz", - "integrity": "sha512-t0JKGgqk2We+9may3t0xDdmneaXmyxq0xieYcKHxIsrJO64n1OiMWNUtc5gQK1PA0NpdCRrtZp4z+IUaKugrSA==", + "node_modules/@babel/plugin-proposal-dynamic-import": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.18.6.tgz", + "integrity": "sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0" + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-dynamic-import": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-syntax-optional-catch-binding": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.2.0.tgz", - "integrity": "sha512-bDe4xKNhb0LI7IvZHiA13kff0KEfaGX/Hv4lMA9+7TEc63hMNvfKo6ZFpXhKuEp+II/q35Gc4NoMeDZyaUbj9w==", + "node_modules/@babel/plugin-proposal-export-namespace-from": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz", + "integrity": "sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0" + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.9", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-arrow-functions": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.2.0.tgz", - "integrity": "sha512-ER77Cax1+8/8jCB9fo4Ud161OZzWN5qawi4GusDuRLcDbDG+bIGYY20zb2dfAFdTRGzrfq2xZPvF0R64EHnimg==", + "node_modules/@babel/plugin-proposal-json-strings": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.18.6.tgz", + "integrity": "sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0" + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-json-strings": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-async-to-generator": { - "version": "7.4.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.4.0.tgz", - "integrity": "sha512-EeaFdCeUULM+GPFEsf7pFcNSxM7hYjoj5fiYbyuiXobW4JhFnjAv9OWzNwHyHcKoPNpAfeRDuW6VyaXEDUBa7g==", + "node_modules/@babel/plugin-proposal-logical-assignment-operators": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.18.9.tgz", + "integrity": "sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q==", "dev": true, - "requires": { - "@babel/helper-module-imports": "^7.0.0", - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/helper-remap-async-to-generator": "^7.1.0" + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.9", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-block-scoped-functions": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.2.0.tgz", - "integrity": "sha512-ntQPR6q1/NKuphly49+QiQiTN0O63uOwjdD6dhIjSWBI5xlrbUFh720TIpzBhpnrLfv2tNH/BXvLIab1+BAI0w==", + "node_modules/@babel/plugin-proposal-nullish-coalescing-operator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz", + "integrity": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0" + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-block-scoping": { - "version": "7.4.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.4.0.tgz", - "integrity": "sha512-AWyt3k+fBXQqt2qb9r97tn3iBwFpiv9xdAiG+Gr2HpAZpuayvbL55yWrsV3MyHvXk/4vmSiedhDRl1YI2Iy5nQ==", + "node_modules/@babel/plugin-proposal-numeric-separator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz", + "integrity": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "lodash": "^4.17.11" + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-classes": { - "version": "7.4.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.4.0.tgz", - "integrity": "sha512-XGg1Mhbw4LDmrO9rSTNe+uI79tQPdGs0YASlxgweYRLZqo/EQktjaOV4tchL/UZbM0F+/94uOipmdNGoaGOEYg==", + "node_modules/@babel/plugin-proposal-object-rest-spread": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.18.9.tgz", + "integrity": "sha512-kDDHQ5rflIeY5xl69CEqGEZ0KY369ehsCIEbTGb4siHG5BE9sga/T0r0OUwyZNLMmZE79E1kbsqAjwFCW4ds6Q==", "dev": true, - "requires": { - "@babel/helper-annotate-as-pure": "^7.0.0", - "@babel/helper-define-map": "^7.4.0", - "@babel/helper-function-name": "^7.1.0", - "@babel/helper-optimise-call-expression": "^7.0.0", - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/helper-replace-supers": "^7.4.0", - "@babel/helper-split-export-declaration": "^7.4.0", - "globals": "^11.1.0" - }, "dependencies": { - "globals": { - "version": "11.11.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.11.0.tgz", - "integrity": "sha512-WHq43gS+6ufNOEqlrDBxVEbb8ntfXrfAUU2ZOpCxrBdGKW3gyv8mCxAfIBD0DroPKGrJ2eSsXsLtY9MPntsyTw==", - "dev": true - } + "@babel/compat-data": "^7.18.8", + "@babel/helper-compilation-targets": "^7.18.9", + "@babel/helper-plugin-utils": "^7.18.9", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.18.8" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-computed-properties": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.2.0.tgz", - "integrity": "sha512-kP/drqTxY6Xt3NNpKiMomfgkNn4o7+vKxK2DDKcBG9sHj51vHqMBGy8wbDS/J4lMxnqs153/T3+DmCEAkC5cpA==", + "node_modules/@babel/plugin-proposal-optional-catch-binding": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz", + "integrity": "sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0" + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-destructuring": { - "version": "7.4.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.4.0.tgz", - "integrity": "sha512-HySkoatyYTY3ZwLI8GGvkRWCFrjAGXUHur5sMecmCIdIharnlcWWivOqDJI76vvmVZfzwb6G08NREsrY96RhGQ==", + "node_modules/@babel/plugin-proposal-optional-chaining": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.18.9.tgz", + "integrity": "sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0" + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.18.9", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-dotall-regex": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.2.0.tgz", - "integrity": "sha512-sKxnyHfizweTgKZf7XsXu/CNupKhzijptfTM+bozonIuyVrLWVUvYjE2bhuSBML8VQeMxq4Mm63Q9qvcvUcciQ==", + "node_modules/@babel/plugin-proposal-private-methods": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz", + "integrity": "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/helper-regex": "^7.0.0", - "regexpu-core": "^4.1.3" - }, "dependencies": { - "jsesc": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", - "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=", - "dev": true - }, - "regenerate": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.0.tgz", - "integrity": "sha512-1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg==", - "dev": true - }, - "regexpu-core": { - "version": "4.5.4", - "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.5.4.tgz", - "integrity": "sha512-BtizvGtFQKGPUcTy56o3nk1bGRp4SZOTYrDtGNlqCQufptV5IkkLN6Emw+yunAJjzf+C9FQFtvq7IoA3+oMYHQ==", - "dev": true, - "requires": { - "regenerate": "^1.4.0", - "regenerate-unicode-properties": "^8.0.2", - "regjsgen": "^0.5.0", - "regjsparser": "^0.6.0", - "unicode-match-property-ecmascript": "^1.0.4", - "unicode-match-property-value-ecmascript": "^1.1.0" - } - }, - "regjsgen": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.0.tgz", - "integrity": "sha512-RnIrLhrXCX5ow/E5/Mh2O4e/oa1/jW0eaBKTSy3LaCj+M3Bqvm97GWDp2yUtzIs4LEn65zR2yiYGFqb2ApnzDA==", - "dev": true - }, - "regjsparser": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.0.tgz", - "integrity": "sha512-RQ7YyokLiQBomUJuUG8iGVvkgOLxwyZM8k6d3q5SAXpg4r5TZJZigKFvC6PpD+qQ98bCDC5YelPeA3EucDoNeQ==", - "dev": true, - "requires": { - "jsesc": "~0.5.0" - } - } + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-duplicate-keys": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.2.0.tgz", - "integrity": "sha512-q+yuxW4DsTjNceUiTzK0L+AfQ0zD9rWaTLiUqHA8p0gxx7lu1EylenfzjeIWNkPy6e/0VG/Wjw9uf9LueQwLOw==", + "node_modules/@babel/plugin-proposal-private-property-in-object": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.18.6.tgz", + "integrity": "sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0" + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-exponentiation-operator": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.2.0.tgz", - "integrity": "sha512-umh4hR6N7mu4Elq9GG8TOu9M0bakvlsREEC+ialrQN6ABS4oDQ69qJv1VtR3uxlKMCQMCvzk7vr17RHKcjx68A==", + "node_modules/@babel/plugin-proposal-unicode-property-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz", + "integrity": "sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==", "dev": true, - "requires": { - "@babel/helper-builder-binary-assignment-operator-visitor": "^7.1.0", - "@babel/helper-plugin-utils": "^7.0.0" + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-for-of": { - "version": "7.4.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.4.0.tgz", - "integrity": "sha512-vWdfCEYLlYSxbsKj5lGtzA49K3KANtb8qCPQ1em07txJzsBwY+cKJzBHizj5fl3CCx7vt+WPdgDLTHmydkbQSQ==", + "node_modules/@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0" + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-function-name": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.2.0.tgz", - "integrity": "sha512-kWgksow9lHdvBC2Z4mxTsvc7YdY7w/V6B2vy9cTIPtLEE9NhwoWivaxdNM/S37elu5bqlLP/qOY906LukO9lkQ==", + "node_modules/@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", "dev": true, - "requires": { - "@babel/helper-function-name": "^7.1.0", - "@babel/helper-plugin-utils": "^7.0.0" + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-literals": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.2.0.tgz", - "integrity": "sha512-2ThDhm4lI4oV7fVQ6pNNK+sx+c/GM5/SaML0w/r4ZB7sAneD/piDJtwdKlNckXeyGK7wlwg2E2w33C/Hh+VFCg==", + "node_modules/@babel/plugin-syntax-class-static-block": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", + "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0" + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-modules-amd": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.2.0.tgz", - "integrity": "sha512-mK2A8ucqz1qhrdqjS9VMIDfIvvT2thrEsIQzbaTdc5QFzhDjQv2CkJJ5f6BXIkgbmaoax3zBr2RyvV/8zeoUZw==", + "node_modules/@babel/plugin-syntax-dynamic-import": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", + "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", "dev": true, - "requires": { - "@babel/helper-module-transforms": "^7.1.0", - "@babel/helper-plugin-utils": "^7.0.0" + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-modules-commonjs": { - "version": "7.4.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.4.0.tgz", - "integrity": "sha512-iWKAooAkipG7g1IY0eah7SumzfnIT3WNhT4uYB2kIsvHnNSB6MDYVa5qyICSwaTBDBY2c4SnJ3JtEa6ltJd6Jw==", + "node_modules/@babel/plugin-syntax-export-namespace-from": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", + "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", "dev": true, - "requires": { - "@babel/helper-module-transforms": "^7.1.0", - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/helper-simple-access": "^7.1.0" + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-modules-systemjs": { - "version": "7.4.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.4.0.tgz", - "integrity": "sha512-gjPdHmqiNhVoBqus5qK60mWPp1CmYWp/tkh11mvb0rrys01HycEGD7NvvSoKXlWEfSM9TcL36CpsK8ElsADptQ==", + "node_modules/@babel/plugin-syntax-import-assertions": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.18.6.tgz", + "integrity": "sha512-/DU3RXad9+bZwrgWJQKbr39gYbJpLJHezqEzRzi/BHRlJ9zsQb4CK2CA/5apllXNomwA1qHwzvHl+AdEmC5krQ==", "dev": true, - "requires": { - "@babel/helper-hoist-variables": "^7.4.0", - "@babel/helper-plugin-utils": "^7.0.0" + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-modules-umd": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.2.0.tgz", - "integrity": "sha512-BV3bw6MyUH1iIsGhXlOK6sXhmSarZjtJ/vMiD9dNmpY8QXFFQTj+6v92pcfy1iqa8DeAfJFwoxcrS/TUZda6sw==", + "node_modules/@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", "dev": true, - "requires": { - "@babel/helper-module-transforms": "^7.1.0", - "@babel/helper-plugin-utils": "^7.0.0" + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-named-capturing-groups-regex": { - "version": "7.4.2", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.4.2.tgz", - "integrity": "sha512-NsAuliSwkL3WO2dzWTOL1oZJHm0TM8ZY8ZSxk2ANyKkt5SQlToGA4pzctmq1BEjoacurdwZ3xp2dCQWJkME0gQ==", + "node_modules/@babel/plugin-syntax-jsx": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.18.6.tgz", + "integrity": "sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==", "dev": true, - "requires": { - "regexp-tree": "^0.1.0" + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-new-target": { - "version": "7.4.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.4.0.tgz", - "integrity": "sha512-6ZKNgMQmQmrEX/ncuCwnnw1yVGoaOW5KpxNhoWI7pCQdA0uZ0HqHGqenCUIENAnxRjy2WwNQ30gfGdIgqJXXqw==", + "node_modules/@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0" + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-object-super": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.2.0.tgz", - "integrity": "sha512-VMyhPYZISFZAqAPVkiYb7dUe2AsVi2/wCT5+wZdsNO31FojQJa9ns40hzZ6U9f50Jlq4w6qwzdBB2uwqZ00ebg==", + "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/helper-replace-supers": "^7.1.0" + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-parameters": { - "version": "7.4.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.4.0.tgz", - "integrity": "sha512-Xqv6d1X+doyiuCGDoVJFtlZx0onAX0tnc3dY8w71pv/O0dODAbusVv2Ale3cGOwfiyi895ivOBhYa9DhAM8dUA==", + "node_modules/@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", "dev": true, - "requires": { - "@babel/helper-call-delegate": "^7.4.0", - "@babel/helper-get-function-arity": "^7.0.0", - "@babel/helper-plugin-utils": "^7.0.0" + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-react-display-name": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.2.0.tgz", - "integrity": "sha512-Htf/tPa5haZvRMiNSQSFifK12gtr/8vwfr+A9y69uF0QcU77AVu4K7MiHEkTxF7lQoHOL0F9ErqgfNEAKgXj7A==", + "node_modules/@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0" + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-react-jsx": { - "version": "7.3.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.3.0.tgz", - "integrity": "sha512-a/+aRb7R06WcKvQLOu4/TpjKOdvVEKRLWFpKcNuHhiREPgGRB4TQJxq07+EZLS8LFVYpfq1a5lDUnuMdcCpBKg==", + "node_modules/@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", "dev": true, - "requires": { - "@babel/helper-builder-react-jsx": "^7.3.0", - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/plugin-syntax-jsx": "^7.2.0" + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-react-jsx-self": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.2.0.tgz", - "integrity": "sha512-v6S5L/myicZEy+jr6ielB0OR8h+EH/1QFx/YJ7c7Ua+7lqsjj/vW6fD5FR9hB/6y7mGbfT4vAURn3xqBxsUcdg==", + "node_modules/@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/plugin-syntax-jsx": "^7.2.0" + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-react-jsx-source": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.2.0.tgz", - "integrity": "sha512-A32OkKTp4i5U6aE88GwwcuV4HAprUgHcTq0sSafLxjr6AW0QahrCRCjxogkbbcdtpbXkuTOlgpjophCxb6sh5g==", + "node_modules/@babel/plugin-syntax-private-property-in-object": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", + "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/plugin-syntax-jsx": "^7.2.0" + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-regenerator": { - "version": "7.4.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.4.0.tgz", - "integrity": "sha512-SZ+CgL4F0wm4npojPU6swo/cK4FcbLgxLd4cWpHaNXY/NJ2dpahODCqBbAwb2rDmVszVb3SSjnk9/vik3AYdBw==", + "node_modules/@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", "dev": true, - "requires": { - "regenerator-transform": "^0.13.4" - }, "dependencies": { - "regenerator-transform": { - "version": "0.13.4", - "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.13.4.tgz", - "integrity": "sha512-T0QMBjK3J0MtxjPmdIMXm72Wvj2Abb0Bd4HADdfijwMdoIsyQZ6fWC7kDFhk2YinBBEMZDL7Y7wh0J1sGx3S4A==", - "dev": true, - "requires": { - "private": "^0.1.6" - } - } + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-shorthand-properties": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.2.0.tgz", - "integrity": "sha512-QP4eUM83ha9zmYtpbnyjTLAGKQritA5XW/iG9cjtuOI8s1RuL/3V6a3DeSHfKutJQ+ayUfeZJPcnCYEQzaPQqg==", + "node_modules/@babel/plugin-transform-arrow-functions": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.18.6.tgz", + "integrity": "sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0" + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-spread": { - "version": "7.2.2", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.2.2.tgz", - "integrity": "sha512-KWfky/58vubwtS0hLqEnrWJjsMGaOeSBn90Ezn5Jeg9Z8KKHmELbP1yGylMlm5N6TPKeY9A2+UaSYLdxahg01w==", + "node_modules/@babel/plugin-transform-async-to-generator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.18.6.tgz", + "integrity": "sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0" + "dependencies": { + "@babel/helper-module-imports": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-remap-async-to-generator": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-sticky-regex": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.2.0.tgz", - "integrity": "sha512-KKYCoGaRAf+ckH8gEL3JHUaFVyNHKe3ASNsZ+AlktgHevvxGigoIttrEJb8iKN03Q7Eazlv1s6cx2B2cQ3Jabw==", + "node_modules/@babel/plugin-transform-block-scoped-functions": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.18.6.tgz", + "integrity": "sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/helper-regex": "^7.0.0" + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-template-literals": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.2.0.tgz", - "integrity": "sha512-FkPix00J9A/XWXv4VoKJBMeSkyY9x/TqIh76wzcdfl57RJJcf8CehQ08uwfhCDNtRQYtHQKBTwKZDEyjE13Lwg==", + "node_modules/@babel/plugin-transform-block-scoping": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.18.9.tgz", + "integrity": "sha512-5sDIJRV1KtQVEbt/EIBwGy4T01uYIo4KRB3VUqzkhrAIOGx7AoctL9+Ux88btY0zXdDyPJ9mW+bg+v+XEkGmtw==", "dev": true, - "requires": { - "@babel/helper-annotate-as-pure": "^7.0.0", - "@babel/helper-plugin-utils": "^7.0.0" + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-typeof-symbol": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.2.0.tgz", - "integrity": "sha512-2LNhETWYxiYysBtrBTqL8+La0jIoQQnIScUJc74OYvUGRmkskNY4EzLCnjHBzdmb38wqtTaixpo1NctEcvMDZw==", + "node_modules/@babel/plugin-transform-classes": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.19.0.tgz", + "integrity": "sha512-YfeEE9kCjqTS9IitkgfJuxjcEtLUHMqa8yUJ6zdz8vR7hKuo6mOy2C05P0F1tdMmDCeuyidKnlrw/iTppHcr2A==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0" + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-compilation-targets": "^7.19.0", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-function-name": "^7.19.0", + "@babel/helper-optimise-call-expression": "^7.18.6", + "@babel/helper-plugin-utils": "^7.19.0", + "@babel/helper-replace-supers": "^7.18.9", + "@babel/helper-split-export-declaration": "^7.18.6", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-unicode-regex": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.2.0.tgz", - "integrity": "sha512-m48Y0lMhrbXEJnVUaYly29jRXbQ3ksxPrS1Tg8t+MHqzXhtBYAvI51euOBaoAlZLPHsieY9XPVMf80a5x0cPcA==", + "node_modules/@babel/plugin-transform-computed-properties": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.18.9.tgz", + "integrity": "sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/helper-regex": "^7.0.0", - "regexpu-core": "^4.1.3" + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-destructuring": { + "version": "7.18.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.18.13.tgz", + "integrity": "sha512-TodpQ29XekIsex2A+YJPj5ax2plkGa8YYY6mFjCohk/IG9IY42Rtuj1FuDeemfg2ipxIFLzPeA83SIBnlhSIow==", + "dev": true, "dependencies": { - "jsesc": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", - "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=", - "dev": true - }, - "regenerate": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.0.tgz", - "integrity": "sha512-1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg==", - "dev": true - }, - "regexpu-core": { - "version": "4.5.4", - "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.5.4.tgz", - "integrity": "sha512-BtizvGtFQKGPUcTy56o3nk1bGRp4SZOTYrDtGNlqCQufptV5IkkLN6Emw+yunAJjzf+C9FQFtvq7IoA3+oMYHQ==", - "dev": true, - "requires": { - "regenerate": "^1.4.0", - "regenerate-unicode-properties": "^8.0.2", - "regjsgen": "^0.5.0", - "regjsparser": "^0.6.0", - "unicode-match-property-ecmascript": "^1.0.4", - "unicode-match-property-value-ecmascript": "^1.1.0" - } - }, - "regjsgen": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.0.tgz", - "integrity": "sha512-RnIrLhrXCX5ow/E5/Mh2O4e/oa1/jW0eaBKTSy3LaCj+M3Bqvm97GWDp2yUtzIs4LEn65zR2yiYGFqb2ApnzDA==", - "dev": true - }, - "regjsparser": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.0.tgz", - "integrity": "sha512-RQ7YyokLiQBomUJuUG8iGVvkgOLxwyZM8k6d3q5SAXpg4r5TZJZigKFvC6PpD+qQ98bCDC5YelPeA3EucDoNeQ==", - "dev": true, - "requires": { - "jsesc": "~0.5.0" - } - } + "@babel/helper-plugin-utils": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/preset-env": { - "version": "7.4.2", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.4.2.tgz", - "integrity": "sha512-OEz6VOZaI9LW08CWVS3d9g/0jZA6YCn1gsKIy/fut7yZCJti5Lm1/Hi+uo/U+ODm7g4I6gULrCP+/+laT8xAsA==", + "node_modules/@babel/plugin-transform-dotall-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.18.6.tgz", + "integrity": "sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==", "dev": true, - "requires": { - "@babel/helper-module-imports": "^7.0.0", - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/plugin-proposal-async-generator-functions": "^7.2.0", - "@babel/plugin-proposal-json-strings": "^7.2.0", - "@babel/plugin-proposal-object-rest-spread": "^7.4.0", - "@babel/plugin-proposal-optional-catch-binding": "^7.2.0", - "@babel/plugin-proposal-unicode-property-regex": "^7.4.0", - "@babel/plugin-syntax-async-generators": "^7.2.0", - "@babel/plugin-syntax-json-strings": "^7.2.0", - "@babel/plugin-syntax-object-rest-spread": "^7.2.0", - "@babel/plugin-syntax-optional-catch-binding": "^7.2.0", - "@babel/plugin-transform-arrow-functions": "^7.2.0", - "@babel/plugin-transform-async-to-generator": "^7.4.0", - "@babel/plugin-transform-block-scoped-functions": "^7.2.0", - "@babel/plugin-transform-block-scoping": "^7.4.0", - "@babel/plugin-transform-classes": "^7.4.0", - "@babel/plugin-transform-computed-properties": "^7.2.0", - "@babel/plugin-transform-destructuring": "^7.4.0", - "@babel/plugin-transform-dotall-regex": "^7.2.0", - "@babel/plugin-transform-duplicate-keys": "^7.2.0", - "@babel/plugin-transform-exponentiation-operator": "^7.2.0", - "@babel/plugin-transform-for-of": "^7.4.0", - "@babel/plugin-transform-function-name": "^7.2.0", - "@babel/plugin-transform-literals": "^7.2.0", - "@babel/plugin-transform-modules-amd": "^7.2.0", - "@babel/plugin-transform-modules-commonjs": "^7.4.0", - "@babel/plugin-transform-modules-systemjs": "^7.4.0", - "@babel/plugin-transform-modules-umd": "^7.2.0", - "@babel/plugin-transform-named-capturing-groups-regex": "^7.4.2", - "@babel/plugin-transform-new-target": "^7.4.0", - "@babel/plugin-transform-object-super": "^7.2.0", - "@babel/plugin-transform-parameters": "^7.4.0", - "@babel/plugin-transform-regenerator": "^7.4.0", - "@babel/plugin-transform-shorthand-properties": "^7.2.0", - "@babel/plugin-transform-spread": "^7.2.0", - "@babel/plugin-transform-sticky-regex": "^7.2.0", - "@babel/plugin-transform-template-literals": "^7.2.0", - "@babel/plugin-transform-typeof-symbol": "^7.2.0", - "@babel/plugin-transform-unicode-regex": "^7.2.0", - "@babel/types": "^7.4.0", - "browserslist": "^4.4.2", - "core-js-compat": "^3.0.0", - "invariant": "^2.2.2", - "js-levenshtein": "^1.1.3", - "semver": "^5.3.0" + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/preset-react": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.0.0.tgz", - "integrity": "sha512-oayxyPS4Zj+hF6Et11BwuBkmpgT/zMxyuZgFrMeZID6Hdh3dGlk4sHCAhdBCpuCKW2ppBfl2uCCetlrUIJRY3w==", + "node_modules/@babel/plugin-transform-duplicate-keys": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.9.tgz", + "integrity": "sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/plugin-transform-react-display-name": "^7.0.0", - "@babel/plugin-transform-react-jsx": "^7.0.0", - "@babel/plugin-transform-react-jsx-self": "^7.0.0", - "@babel/plugin-transform-react-jsx-source": "^7.0.0" + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/template": { - "version": "7.4.0", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.4.0.tgz", - "integrity": "sha512-SOWwxxClTTh5NdbbYZ0BmaBVzxzTh2tO/TeLTbF6MO6EzVhHTnff8CdBXx3mEtazFBoysmEM6GU/wF+SuSx4Fw==", + "node_modules/@babel/plugin-transform-exponentiation-operator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.18.6.tgz", + "integrity": "sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==", "dev": true, - "requires": { - "@babel/code-frame": "^7.0.0", - "@babel/parser": "^7.4.0", - "@babel/types": "^7.4.0" + "dependencies": { + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/traverse": { - "version": "7.4.0", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.4.0.tgz", - "integrity": "sha512-/DtIHKfyg2bBKnIN+BItaIlEg5pjAnzHOIQe5w+rHAw/rg9g0V7T4rqPX8BJPfW11kt3koyjAnTNwCzb28Y1PA==", + "node_modules/@babel/plugin-transform-for-of": { + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.18.8.tgz", + "integrity": "sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==", "dev": true, - "requires": { - "@babel/code-frame": "^7.0.0", - "@babel/generator": "^7.4.0", - "@babel/helper-function-name": "^7.1.0", - "@babel/helper-split-export-declaration": "^7.4.0", - "@babel/parser": "^7.4.0", - "@babel/types": "^7.4.0", - "debug": "^4.1.0", - "globals": "^11.1.0", - "lodash": "^4.17.11" - }, "dependencies": { - "debug": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", - "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", - "dev": true, - "requires": { - "ms": "^2.1.1" - } - }, - "globals": { - "version": "11.11.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.11.0.tgz", - "integrity": "sha512-WHq43gS+6ufNOEqlrDBxVEbb8ntfXrfAUU2ZOpCxrBdGKW3gyv8mCxAfIBD0DroPKGrJ2eSsXsLtY9MPntsyTw==", - "dev": true - }, - "ms": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", - "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==", - "dev": true - } + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/types": { - "version": "7.4.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.4.0.tgz", - "integrity": "sha512-aPvkXyU2SPOnztlgo8n9cEiXW755mgyvueUPcpStqdzoSPm0fjO0vQBjLkt3JKJW7ufikfcnMTTPsN1xaTsBPA==", + "node_modules/@babel/plugin-transform-function-name": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.9.tgz", + "integrity": "sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==", "dev": true, - "requires": { - "esutils": "^2.0.2", - "lodash": "^4.17.11", - "to-fast-properties": "^2.0.0" - }, "dependencies": { - "to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=", - "dev": true - } + "@babel/helper-compilation-targets": "^7.18.9", + "@babel/helper-function-name": "^7.18.9", + "@babel/helper-plugin-utils": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@cnakazawa/watch": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@cnakazawa/watch/-/watch-1.0.3.tgz", - "integrity": "sha512-r5160ogAvGyHsal38Kux7YYtodEKOj89RGb28ht1jh3SJb08VwRwAKKJL0bGb04Zd/3r9FL3BFIc3bBidYffCA==", + "node_modules/@babel/plugin-transform-literals": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz", + "integrity": "sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==", "dev": true, - "requires": { - "exec-sh": "^0.3.2", - "minimist": "^1.2.0" + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-member-expression-literals": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.18.6.tgz", + "integrity": "sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==", + "dev": true, "dependencies": { - "minimist": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", - "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", - "dev": true - } + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@jest/console": { - "version": "24.3.0", - "resolved": "https://registry.npmjs.org/@jest/console/-/console-24.3.0.tgz", - "integrity": "sha512-NaCty/OOei6rSDcbPdMiCbYCI0KGFGPgGO6B09lwWt5QTxnkuhKYET9El5u5z1GAcSxkQmSMtM63e24YabCWqA==", + "node_modules/@babel/plugin-transform-modules-amd": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.18.6.tgz", + "integrity": "sha512-Pra5aXsmTsOnjM3IajS8rTaLCy++nGM4v3YR4esk5PCsyg9z8NA5oQLwxzMUtDBd8F+UmVza3VxoAaWCbzH1rg==", "dev": true, - "requires": { - "@jest/source-map": "^24.3.0", - "@types/node": "*", - "chalk": "^2.0.1", - "slash": "^2.0.0" + "dependencies": { + "@babel/helper-module-transforms": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6", + "babel-plugin-dynamic-import-node": "^2.3.3" + }, + "engines": { + "node": ">=6.9.0" }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-commonjs": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.18.6.tgz", + "integrity": "sha512-Qfv2ZOWikpvmedXQJDSbxNqy7Xr/j2Y8/KfijM0iJyKkBTmWuvCA1yeH1yDM7NJhBW/2aXxeucLj6i80/LAJ/Q==", + "dev": true, "dependencies": { - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "requires": { - "color-convert": "^1.9.0" - } - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", - "dev": true - }, - "slash": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", - "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", - "dev": true - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - } + "@babel/helper-module-transforms": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-simple-access": "^7.18.6", + "babel-plugin-dynamic-import-node": "^2.3.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@jest/core": { - "version": "24.5.0", - "resolved": "https://registry.npmjs.org/@jest/core/-/core-24.5.0.tgz", - "integrity": "sha512-RDZArRzAs51YS7dXG1pbXbWGxK53rvUu8mCDYsgqqqQ6uSOaTjcVyBl2Jce0exT2rSLk38ca7az7t2f3b0/oYQ==", + "node_modules/@babel/plugin-transform-modules-systemjs": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.19.0.tgz", + "integrity": "sha512-x9aiR0WXAWmOWsqcsnrzGR+ieaTMVyGyffPVA7F8cXAGt/UxefYv6uSHZLkAFChN5M5Iy1+wjE+xJuPt22H39A==", "dev": true, - "requires": { - "@jest/console": "^24.3.0", - "@jest/reporters": "^24.5.0", - "@jest/test-result": "^24.5.0", - "@jest/transform": "^24.5.0", - "@jest/types": "^24.5.0", - "ansi-escapes": "^3.0.0", - "chalk": "^2.0.1", - "exit": "^0.1.2", - "graceful-fs": "^4.1.15", - "jest-changed-files": "^24.5.0", - "jest-config": "^24.5.0", - "jest-haste-map": "^24.5.0", - "jest-message-util": "^24.5.0", - "jest-regex-util": "^24.3.0", - "jest-resolve-dependencies": "^24.5.0", - "jest-runner": "^24.5.0", - "jest-runtime": "^24.5.0", - "jest-snapshot": "^24.5.0", - "jest-util": "^24.5.0", - "jest-validate": "^24.5.0", - "jest-watcher": "^24.5.0", - "micromatch": "^3.1.10", - "p-each-series": "^1.0.0", - "pirates": "^4.0.1", - "realpath-native": "^1.1.0", - "rimraf": "^2.5.4", - "strip-ansi": "^5.0.0" + "dependencies": { + "@babel/helper-hoist-variables": "^7.18.6", + "@babel/helper-module-transforms": "^7.19.0", + "@babel/helper-plugin-utils": "^7.19.0", + "@babel/helper-validator-identifier": "^7.18.6", + "babel-plugin-dynamic-import-node": "^2.3.3" + }, + "engines": { + "node": ">=6.9.0" }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-umd": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.18.6.tgz", + "integrity": "sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==", + "dev": true, "dependencies": { - "ansi-regex": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", - "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", - "dev": true - }, - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "requires": { - "color-convert": "^1.9.0" - } - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "graceful-fs": { - "version": "4.1.15", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.15.tgz", - "integrity": "sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA==", - "dev": true - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", - "dev": true - }, - "strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", - "dev": true, - "requires": { - "ansi-regex": "^4.1.0" - } - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - } + "@babel/helper-module-transforms": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@jest/environment": { - "version": "24.5.0", - "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-24.5.0.tgz", - "integrity": "sha512-tzUHR9SHjMXwM8QmfHb/EJNbF0fjbH4ieefJBvtwO8YErLTrecc1ROj0uo2VnIT6SlpEGZnvdCK6VgKYBo8LsA==", + "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.19.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.19.1.tgz", + "integrity": "sha512-oWk9l9WItWBQYS4FgXD4Uyy5kq898lvkXpXQxoJEY1RnvPk4R/Dvu2ebXU9q8lP+rlMwUQTFf2Ok6d78ODa0kw==", "dev": true, - "requires": { - "@jest/fake-timers": "^24.5.0", - "@jest/transform": "^24.5.0", - "@jest/types": "^24.5.0", - "@types/node": "*", - "jest-mock": "^24.5.0" + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.19.0", + "@babel/helper-plugin-utils": "^7.19.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" } }, - "@jest/fake-timers": { - "version": "24.5.0", - "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-24.5.0.tgz", - "integrity": "sha512-i59KVt3QBz9d+4Qr4QxsKgsIg+NjfuCjSOWj3RQhjF5JNy+eVJDhANQ4WzulzNCHd72srMAykwtRn5NYDGVraw==", + "node_modules/@babel/plugin-transform-new-target": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.18.6.tgz", + "integrity": "sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==", "dev": true, - "requires": { - "@jest/types": "^24.5.0", - "@types/node": "*", - "jest-message-util": "^24.5.0", - "jest-mock": "^24.5.0" + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@jest/reporters": { - "version": "24.5.0", - "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-24.5.0.tgz", - "integrity": "sha512-vfpceiaKtGgnuC3ss5czWOihKOUSyjJA4M4udm6nH8xgqsuQYcyDCi4nMMcBKsHXWgz9/V5G7iisnZGfOh1w6Q==", + "node_modules/@babel/plugin-transform-object-super": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.18.6.tgz", + "integrity": "sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==", "dev": true, - "requires": { - "@jest/environment": "^24.5.0", - "@jest/test-result": "^24.5.0", - "@jest/transform": "^24.5.0", - "@jest/types": "^24.5.0", - "chalk": "^2.0.1", - "exit": "^0.1.2", - "glob": "^7.1.2", - "istanbul-api": "^2.1.1", - "istanbul-lib-coverage": "^2.0.2", - "istanbul-lib-instrument": "^3.0.1", - "istanbul-lib-source-maps": "^3.0.1", - "jest-haste-map": "^24.5.0", - "jest-resolve": "^24.5.0", - "jest-runtime": "^24.5.0", - "jest-util": "^24.5.0", - "jest-worker": "^24.4.0", - "node-notifier": "^5.2.1", - "slash": "^2.0.0", - "source-map": "^0.6.0", - "string-length": "^2.0.0" + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-replace-supers": "^7.18.6" }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-parameters": { + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.18.8.tgz", + "integrity": "sha512-ivfbE3X2Ss+Fj8nnXvKJS6sjRG4gzwPMsP+taZC+ZzEGjAYlvENixmt1sZ5Ca6tWls+BlKSGKPJ6OOXvXCbkFg==", + "dev": true, "dependencies": { - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "requires": { - "color-convert": "^1.9.0" - } - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", - "dev": true - }, - "slash": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", - "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", - "dev": true - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - } + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@jest/source-map": { - "version": "24.3.0", - "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-24.3.0.tgz", - "integrity": "sha512-zALZt1t2ou8le/crCeeiRYzvdnTzaIlpOWaet45lNSqNJUnXbppUUFR4ZUAlzgDmKee4Q5P/tKXypI1RiHwgag==", + "node_modules/@babel/plugin-transform-property-literals": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.18.6.tgz", + "integrity": "sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==", "dev": true, - "requires": { - "callsites": "^3.0.0", - "graceful-fs": "^4.1.15", - "source-map": "^0.6.0" + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-display-name": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.18.6.tgz", + "integrity": "sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==", + "dev": true, "dependencies": { - "graceful-fs": { - "version": "4.1.15", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.15.tgz", - "integrity": "sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA==", - "dev": true - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - } + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@jest/test-result": { - "version": "24.5.0", - "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-24.5.0.tgz", - "integrity": "sha512-u66j2vBfa8Bli1+o3rCaVnVYa9O8CAFZeqiqLVhnarXtreSXG33YQ6vNYBogT7+nYiFNOohTU21BKiHlgmxD5A==", + "node_modules/@babel/plugin-transform-react-jsx": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.19.0.tgz", + "integrity": "sha512-UVEvX3tXie3Szm3emi1+G63jyw1w5IcMY0FSKM+CRnKRI5Mr1YbCNgsSTwoTwKphQEG9P+QqmuRFneJPZuHNhg==", "dev": true, - "requires": { - "@jest/console": "^24.3.0", - "@jest/types": "^24.5.0", - "@types/istanbul-lib-coverage": "^1.1.0" + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-module-imports": "^7.18.6", + "@babel/helper-plugin-utils": "^7.19.0", + "@babel/plugin-syntax-jsx": "^7.18.6", + "@babel/types": "^7.19.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@jest/transform": { - "version": "24.5.0", - "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-24.5.0.tgz", - "integrity": "sha512-XSsDz1gdR/QMmB8UCKlweAReQsZrD/DK7FuDlNo/pE8EcKMrfi2kqLRk8h8Gy/PDzgqJj64jNEzOce9pR8oj1w==", + "node_modules/@babel/plugin-transform-react-jsx-development": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.18.6.tgz", + "integrity": "sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==", "dev": true, - "requires": { - "@babel/core": "^7.1.0", - "@jest/types": "^24.5.0", - "babel-plugin-istanbul": "^5.1.0", - "chalk": "^2.0.1", - "convert-source-map": "^1.4.0", - "fast-json-stable-stringify": "^2.0.0", - "graceful-fs": "^4.1.15", - "jest-haste-map": "^24.5.0", - "jest-regex-util": "^24.3.0", - "jest-util": "^24.5.0", - "micromatch": "^3.1.10", - "realpath-native": "^1.1.0", - "slash": "^2.0.0", - "source-map": "^0.6.1", - "write-file-atomic": "2.4.1" + "dependencies": { + "@babel/plugin-transform-react-jsx": "^7.18.6" }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-pure-annotations": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.18.6.tgz", + "integrity": "sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==", + "dev": true, "dependencies": { - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "requires": { - "color-convert": "^1.9.0" - } - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "graceful-fs": { - "version": "4.1.15", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.15.tgz", - "integrity": "sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA==", - "dev": true - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", - "dev": true - }, - "slash": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", - "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", - "dev": true - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - } + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@jest/types": { - "version": "24.5.0", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-24.5.0.tgz", - "integrity": "sha512-kN7RFzNMf2R8UDadPOl6ReyI+MT8xfqRuAnuVL+i4gwjv/zubdDK+EDeLHYwq1j0CSSR2W/MmgaRlMZJzXdmVA==", + "node_modules/@babel/plugin-transform-regenerator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.18.6.tgz", + "integrity": "sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ==", "dev": true, - "requires": { - "@types/istanbul-lib-coverage": "^1.1.0", - "@types/yargs": "^12.0.9" + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "regenerator-transform": "^0.15.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@primer/octicons": { - "version": "9.6.0", - "resolved": "https://registry.npmjs.org/@primer/octicons/-/octicons-9.6.0.tgz", - "integrity": "sha512-B5Wzk5izRXXz0JqEXJkVUtqhCXSpUKgqYkVwegMkp5sziBW+ksd9LPbONlCWyyLODwf9GsI2sBXekR7m+JJDBw==", + "node_modules/@babel/plugin-transform-reserved-words": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.18.6.tgz", + "integrity": "sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==", "dev": true, - "requires": { - "object-assign": "^4.1.1" + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@types/babel__core": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.0.tgz", - "integrity": "sha512-wJTeJRt7BToFx3USrCDs2BhEi4ijBInTQjOIukj6a/5tEkwpFMVZ+1ppgmE+Q/FQyc5P/VWUbx7I9NELrKruHA==", + "node_modules/@babel/plugin-transform-shorthand-properties": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.18.6.tgz", + "integrity": "sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==", "dev": true, - "requires": { - "@babel/parser": "^7.1.0", - "@babel/types": "^7.0.0", - "@types/babel__generator": "*", - "@types/babel__template": "*", - "@types/babel__traverse": "*" + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@types/babel__generator": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.0.2.tgz", - "integrity": "sha512-NHcOfab3Zw4q5sEE2COkpfXjoE7o+PmqD9DQW4koUT3roNxwziUdXGnRndMat/LJNUtePwn1TlP4do3uoe3KZQ==", + "node_modules/@babel/plugin-transform-spread": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.19.0.tgz", + "integrity": "sha512-RsuMk7j6n+r752EtzyScnWkQyuJdli6LdO5Klv8Yx0OfPVTcQkIUfS8clx5e9yHXzlnhOZF3CbQ8C2uP5j074w==", "dev": true, - "requires": { - "@babel/types": "^7.0.0" + "dependencies": { + "@babel/helper-plugin-utils": "^7.19.0", + "@babel/helper-skip-transparent-expression-wrappers": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@types/babel__template": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.0.2.tgz", - "integrity": "sha512-/K6zCpeW7Imzgab2bLkLEbz0+1JlFSrUMdw7KoIIu+IUdu51GWaBZpd3y1VXGVXzynvGa4DaIaxNZHiON3GXUg==", + "node_modules/@babel/plugin-transform-sticky-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.18.6.tgz", + "integrity": "sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==", "dev": true, - "requires": { - "@babel/parser": "^7.1.0", - "@babel/types": "^7.0.0" + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@types/babel__traverse": { - "version": "7.0.6", - "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.0.6.tgz", - "integrity": "sha512-XYVgHF2sQ0YblLRMLNPB3CkFMewzFmlDsH/TneZFHUXDlABQgh88uOxuez7ZcXxayLFrqLwtDH1t+FmlFwNZxw==", + "node_modules/@babel/plugin-transform-template-literals": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.9.tgz", + "integrity": "sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==", "dev": true, - "requires": { - "@babel/types": "^7.3.0" + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@types/istanbul-lib-coverage": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.0.tgz", - "integrity": "sha512-ohkhb9LehJy+PA40rDtGAji61NCgdtKLAlFoYp4cnuuQEswwdK3vz9SOIkkyc3wrk8dzjphQApNs56yyXLStaQ==", - "dev": true - }, - "@types/node": { - "version": "11.12.1", - "resolved": "https://registry.npmjs.org/@types/node/-/node-11.12.1.tgz", - "integrity": "sha512-sKDlqv6COJrR7ar0+GqqhrXQDzQlMcqMnF2iEU6m9hLo8kxozoAGUazwPyELHlRVmjsbvlnGXjnzyptSXVmceA==", - "dev": true - }, - "@types/stack-utils": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-1.0.1.tgz", - "integrity": "sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw==", - "dev": true - }, - "@types/yargs": { - "version": "12.0.10", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-12.0.10.tgz", - "integrity": "sha512-WsVzTPshvCSbHThUduGGxbmnwcpkgSctHGHTqzWyFg4lYAuV5qXlyFPOsP3OWqCINfmg/8VXP+zJaa4OxEsBQQ==", - "dev": true - }, - "@webassemblyjs/ast": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.8.5.tgz", - "integrity": "sha512-aJMfngIZ65+t71C3y2nBBg5FFG0Okt9m0XEgWZ7Ywgn1oMAT8cNwx00Uv1cQyHtidq0Xn94R4TAywO+LCQ+ZAQ==", + "node_modules/@babel/plugin-transform-typeof-symbol": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.9.tgz", + "integrity": "sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==", "dev": true, - "requires": { - "@webassemblyjs/helper-module-context": "1.8.5", - "@webassemblyjs/helper-wasm-bytecode": "1.8.5", - "@webassemblyjs/wast-parser": "1.8.5" + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@webassemblyjs/floating-point-hex-parser": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.8.5.tgz", - "integrity": "sha512-9p+79WHru1oqBh9ewP9zW95E3XAo+90oth7S5Re3eQnECGq59ly1Ri5tsIipKGpiStHsUYmY3zMLqtk3gTcOtQ==", - "dev": true - }, - "@webassemblyjs/helper-api-error": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.8.5.tgz", - "integrity": "sha512-Za/tnzsvnqdaSPOUXHyKJ2XI7PDX64kWtURyGiJJZKVEdFOsdKUCPTNEVFZq3zJ2R0G5wc2PZ5gvdTRFgm81zA==", - "dev": true - }, - "@webassemblyjs/helper-buffer": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.8.5.tgz", - "integrity": "sha512-Ri2R8nOS0U6G49Q86goFIPNgjyl6+oE1abW1pS84BuhP1Qcr5JqMwRFT3Ah3ADDDYGEgGs1iyb1DGX+kAi/c/Q==", - "dev": true - }, - "@webassemblyjs/helper-code-frame": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.8.5.tgz", - "integrity": "sha512-VQAadSubZIhNpH46IR3yWO4kZZjMxN1opDrzePLdVKAZ+DFjkGD/rf4v1jap744uPVU6yjL/smZbRIIJTOUnKQ==", + "node_modules/@babel/plugin-transform-unicode-escapes": { + "version": "7.18.10", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.18.10.tgz", + "integrity": "sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==", "dev": true, - "requires": { - "@webassemblyjs/wast-printer": "1.8.5" + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@webassemblyjs/helper-fsm": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.8.5.tgz", - "integrity": "sha512-kRuX/saORcg8se/ft6Q2UbRpZwP4y7YrWsLXPbbmtepKr22i8Z4O3V5QE9DbZK908dh5Xya4Un57SDIKwB9eow==", - "dev": true - }, - "@webassemblyjs/helper-module-context": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.8.5.tgz", - "integrity": "sha512-/O1B236mN7UNEU4t9X7Pj38i4VoU8CcMHyy3l2cV/kIF4U5KoHXDVqcDuOs1ltkac90IM4vZdHc52t1x8Yfs3g==", + "node_modules/@babel/plugin-transform-unicode-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.18.6.tgz", + "integrity": "sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==", "dev": true, - "requires": { - "@webassemblyjs/ast": "1.8.5", - "mamacro": "^0.0.3" + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@webassemblyjs/helper-wasm-bytecode": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.8.5.tgz", - "integrity": "sha512-Cu4YMYG3Ddl72CbmpjU/wbP6SACcOPVbHN1dI4VJNJVgFwaKf1ppeFJrwydOG3NDHxVGuCfPlLZNyEdIYlQ6QQ==", - "dev": true - }, - "@webassemblyjs/helper-wasm-section": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.8.5.tgz", - "integrity": "sha512-VV083zwR+VTrIWWtgIUpqfvVdK4ff38loRmrdDBgBT8ADXYsEZ5mPQ4Nde90N3UYatHdYoDIFb7oHzMncI02tA==", + "node_modules/@babel/preset-env": { + "version": "7.19.3", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.19.3.tgz", + "integrity": "sha512-ziye1OTc9dGFOAXSWKUqQblYHNlBOaDl8wzqf2iKXJAltYiR3hKHUKmkt+S9PppW7RQpq4fFCrwwpIDj/f5P4w==", "dev": true, - "requires": { - "@webassemblyjs/ast": "1.8.5", - "@webassemblyjs/helper-buffer": "1.8.5", - "@webassemblyjs/helper-wasm-bytecode": "1.8.5", - "@webassemblyjs/wasm-gen": "1.8.5" + "dependencies": { + "@babel/compat-data": "^7.19.3", + "@babel/helper-compilation-targets": "^7.19.3", + "@babel/helper-plugin-utils": "^7.19.0", + "@babel/helper-validator-option": "^7.18.6", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.18.6", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.18.9", + "@babel/plugin-proposal-async-generator-functions": "^7.19.1", + "@babel/plugin-proposal-class-properties": "^7.18.6", + "@babel/plugin-proposal-class-static-block": "^7.18.6", + "@babel/plugin-proposal-dynamic-import": "^7.18.6", + "@babel/plugin-proposal-export-namespace-from": "^7.18.9", + "@babel/plugin-proposal-json-strings": "^7.18.6", + "@babel/plugin-proposal-logical-assignment-operators": "^7.18.9", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", + "@babel/plugin-proposal-numeric-separator": "^7.18.6", + "@babel/plugin-proposal-object-rest-spread": "^7.18.9", + "@babel/plugin-proposal-optional-catch-binding": "^7.18.6", + "@babel/plugin-proposal-optional-chaining": "^7.18.9", + "@babel/plugin-proposal-private-methods": "^7.18.6", + "@babel/plugin-proposal-private-property-in-object": "^7.18.6", + "@babel/plugin-proposal-unicode-property-regex": "^7.18.6", + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-class-properties": "^7.12.13", + "@babel/plugin-syntax-class-static-block": "^7.14.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3", + "@babel/plugin-syntax-import-assertions": "^7.18.6", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5", + "@babel/plugin-syntax-top-level-await": "^7.14.5", + "@babel/plugin-transform-arrow-functions": "^7.18.6", + "@babel/plugin-transform-async-to-generator": "^7.18.6", + "@babel/plugin-transform-block-scoped-functions": "^7.18.6", + "@babel/plugin-transform-block-scoping": "^7.18.9", + "@babel/plugin-transform-classes": "^7.19.0", + "@babel/plugin-transform-computed-properties": "^7.18.9", + "@babel/plugin-transform-destructuring": "^7.18.13", + "@babel/plugin-transform-dotall-regex": "^7.18.6", + "@babel/plugin-transform-duplicate-keys": "^7.18.9", + "@babel/plugin-transform-exponentiation-operator": "^7.18.6", + "@babel/plugin-transform-for-of": "^7.18.8", + "@babel/plugin-transform-function-name": "^7.18.9", + "@babel/plugin-transform-literals": "^7.18.9", + "@babel/plugin-transform-member-expression-literals": "^7.18.6", + "@babel/plugin-transform-modules-amd": "^7.18.6", + "@babel/plugin-transform-modules-commonjs": "^7.18.6", + "@babel/plugin-transform-modules-systemjs": "^7.19.0", + "@babel/plugin-transform-modules-umd": "^7.18.6", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.19.1", + "@babel/plugin-transform-new-target": "^7.18.6", + "@babel/plugin-transform-object-super": "^7.18.6", + "@babel/plugin-transform-parameters": "^7.18.8", + "@babel/plugin-transform-property-literals": "^7.18.6", + "@babel/plugin-transform-regenerator": "^7.18.6", + "@babel/plugin-transform-reserved-words": "^7.18.6", + "@babel/plugin-transform-shorthand-properties": "^7.18.6", + "@babel/plugin-transform-spread": "^7.19.0", + "@babel/plugin-transform-sticky-regex": "^7.18.6", + "@babel/plugin-transform-template-literals": "^7.18.9", + "@babel/plugin-transform-typeof-symbol": "^7.18.9", + "@babel/plugin-transform-unicode-escapes": "^7.18.10", + "@babel/plugin-transform-unicode-regex": "^7.18.6", + "@babel/preset-modules": "^0.1.5", + "@babel/types": "^7.19.3", + "babel-plugin-polyfill-corejs2": "^0.3.3", + "babel-plugin-polyfill-corejs3": "^0.6.0", + "babel-plugin-polyfill-regenerator": "^0.4.1", + "core-js-compat": "^3.25.1", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@webassemblyjs/ieee754": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.8.5.tgz", - "integrity": "sha512-aaCvQYrvKbY/n6wKHb/ylAJr27GglahUO89CcGXMItrOBqRarUMxWLJgxm9PJNuKULwN5n1csT9bYoMeZOGF3g==", + "node_modules/@babel/preset-modules": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz", + "integrity": "sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==", "dev": true, - "requires": { - "@xtuc/ieee754": "^1.2.0" + "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" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@webassemblyjs/leb128": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.8.5.tgz", - "integrity": "sha512-plYUuUwleLIziknvlP8VpTgO4kqNaH57Y3JnNa6DLpu/sGcP6hbVdfdX5aHAV716pQBKrfuU26BJK29qY37J7A==", + "node_modules/@babel/preset-react": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.18.6.tgz", + "integrity": "sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==", "dev": true, - "requires": { - "@xtuc/long": "4.2.2" + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-validator-option": "^7.18.6", + "@babel/plugin-transform-react-display-name": "^7.18.6", + "@babel/plugin-transform-react-jsx": "^7.18.6", + "@babel/plugin-transform-react-jsx-development": "^7.18.6", + "@babel/plugin-transform-react-pure-annotations": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@webassemblyjs/utf8": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.8.5.tgz", - "integrity": "sha512-U7zgftmQriw37tfD934UNInokz6yTmn29inT2cAetAsaU9YeVCveWEwhKL1Mg4yS7q//NGdzy79nlXh3bT8Kjw==", - "dev": true - }, - "@webassemblyjs/wasm-edit": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.8.5.tgz", - "integrity": "sha512-A41EMy8MWw5yvqj7MQzkDjU29K7UJq1VrX2vWLzfpRHt3ISftOXqrtojn7nlPsZ9Ijhp5NwuODuycSvfAO/26Q==", + "node_modules/@babel/runtime": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.19.0.tgz", + "integrity": "sha512-eR8Lo9hnDS7tqkO7NsV+mKvCmv5boaXFSZ70DnfhcgiEne8hv9oCEd36Klw74EtizEqLsy4YnW8UWwpBVolHZA==", "dev": true, - "requires": { - "@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" + "dependencies": { + "regenerator-runtime": "^0.13.4" + }, + "engines": { + "node": ">=6.9.0" } }, - "@webassemblyjs/wasm-gen": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.8.5.tgz", - "integrity": "sha512-BCZBT0LURC0CXDzj5FXSc2FPTsxwp3nWcqXQdOZE4U7h7i8FqtFK5Egia6f9raQLpEKT1VL7zr4r3+QX6zArWg==", + "node_modules/@babel/template": { + "version": "7.18.10", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.10.tgz", + "integrity": "sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==", "dev": true, - "requires": { - "@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" + "dependencies": { + "@babel/code-frame": "^7.18.6", + "@babel/parser": "^7.18.10", + "@babel/types": "^7.18.10" + }, + "engines": { + "node": ">=6.9.0" } }, - "@webassemblyjs/wasm-opt": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.8.5.tgz", - "integrity": "sha512-HKo2mO/Uh9A6ojzu7cjslGaHaUU14LdLbGEKqTR7PBKwT6LdPtLLh9fPY33rmr5wcOMrsWDbbdCHq4hQUdd37Q==", + "node_modules/@babel/traverse": { + "version": "7.19.3", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.19.3.tgz", + "integrity": "sha512-qh5yf6149zhq2sgIXmwjnsvmnNQC2iw70UFjp4olxucKrWd/dvlUsBI88VSLUsnMNF7/vnOiA+nk1+yLoCqROQ==", "dev": true, - "requires": { - "@webassemblyjs/ast": "1.8.5", - "@webassemblyjs/helper-buffer": "1.8.5", - "@webassemblyjs/wasm-gen": "1.8.5", - "@webassemblyjs/wasm-parser": "1.8.5" + "dependencies": { + "@babel/code-frame": "^7.18.6", + "@babel/generator": "^7.19.3", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-function-name": "^7.19.0", + "@babel/helper-hoist-variables": "^7.18.6", + "@babel/helper-split-export-declaration": "^7.18.6", + "@babel/parser": "^7.19.3", + "@babel/types": "^7.19.3", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" } }, - "@webassemblyjs/wasm-parser": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.8.5.tgz", - "integrity": "sha512-pi0SYE9T6tfcMkthwcgCpL0cM9nRYr6/6fjgDtL6q/ZqKHdMWvxitRi5JcZ7RI4SNJJYnYNaWy5UUrHQy998lw==", + "node_modules/@babel/types": { + "version": "7.19.3", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.19.3.tgz", + "integrity": "sha512-hGCaQzIY22DJlDh9CH7NOxgKkFjBk0Cw9xDO1Xmh2151ti7wiGfQ3LauXzL4HP1fmFlTX6XjpRETTpUcv7wQLw==", "dev": true, - "requires": { - "@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" + "dependencies": { + "@babel/helper-string-parser": "^7.18.10", + "@babel/helper-validator-identifier": "^7.19.1", + "to-fast-properties": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" } }, - "@webassemblyjs/wast-parser": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.8.5.tgz", - "integrity": "sha512-daXC1FyKWHF1i11obK086QRlsMsY4+tIOKgBqI1lxAnkp9xe9YMcgOxm9kLe+ttjs5aWV2KKE1TWJCN57/Btsg==", + "node_modules/@cnakazawa/watch": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@cnakazawa/watch/-/watch-1.0.4.tgz", + "integrity": "sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==", "dev": true, - "requires": { - "@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" + "dependencies": { + "exec-sh": "^0.3.2", + "minimist": "^1.2.0" + }, + "bin": { + "watch": "cli.js" + }, + "engines": { + "node": ">=0.1.95" } }, - "@webassemblyjs/wast-printer": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.8.5.tgz", - "integrity": "sha512-w0U0pD4EhlnvRyeJzBqaVSJAo9w/ce7/WPogeXLzGkO6hzhr4GnQIZ4W4uUt5b9ooAaXPtnXlj0gzsXEOUNYMg==", + "node_modules/@jest/console": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-24.9.0.tgz", + "integrity": "sha512-Zuj6b8TnKXi3q4ymac8EQfc3ea/uhLeCGThFqXeC8H9/raaH8ARPUTdId+XyGd03Z4In0/VjD2OYFcBF09fNLQ==", "dev": true, - "requires": { - "@webassemblyjs/ast": "1.8.5", - "@webassemblyjs/wast-parser": "1.8.5", - "@xtuc/long": "4.2.2" + "dependencies": { + "@jest/source-map": "^24.9.0", + "chalk": "^2.0.1", + "slash": "^2.0.0" + }, + "engines": { + "node": ">= 6" } }, - "@xtuc/ieee754": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", - "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", - "dev": true - }, - "@xtuc/long": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", - "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", - "dev": true - }, - "abab": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.0.tgz", - "integrity": "sha512-sY5AXXVZv4Y1VACTtR11UJCPHHudgY5i26Qj5TypE6DKlIApbwb5uqhXcJ5UUGbvZNRh7EeIoW+LrJumBsKp7w==", - "dev": true - }, - "accepts": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.5.tgz", - "integrity": "sha1-63d99gEXI6OxTopywIBcjoZ0a9I=", + "node_modules/@jest/core": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-24.9.0.tgz", + "integrity": "sha512-Fogg3s4wlAr1VX7q+rhV9RVnUv5tD7VuWfYy1+whMiWUrvl7U3QJSJyWcDio9Lq2prqYsZaeTv2Rz24pWGkJ2A==", "dev": true, - "requires": { - "mime-types": "~2.1.18", - "negotiator": "0.6.1" + "dependencies": { + "@jest/console": "^24.7.1", + "@jest/reporters": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "ansi-escapes": "^3.0.0", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "graceful-fs": "^4.1.15", + "jest-changed-files": "^24.9.0", + "jest-config": "^24.9.0", + "jest-haste-map": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-resolve": "^24.9.0", + "jest-resolve-dependencies": "^24.9.0", + "jest-runner": "^24.9.0", + "jest-runtime": "^24.9.0", + "jest-snapshot": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "jest-watcher": "^24.9.0", + "micromatch": "^3.1.10", + "p-each-series": "^1.0.0", + "realpath-native": "^1.1.0", + "rimraf": "^2.5.4", + "slash": "^2.0.0", + "strip-ansi": "^5.0.0" + }, + "engines": { + "node": ">= 6" } }, - "acorn": { - "version": "5.5.3", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-5.5.3.tgz", - "integrity": "sha512-jd5MkIUlbbmb07nXH0DT3y7rDVtkzDi4XZOUVWAer8ajmF/DTSSbl5oNFyDOl/OXA33Bl79+ypHhl2pN20VeOQ==", - "dev": true + "node_modules/@jest/environment": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-24.9.0.tgz", + "integrity": "sha512-5A1QluTPhvdIPFYnO3sZC3smkNeXPVELz7ikPbhUj0bQjB07EoE9qtLrem14ZUYWdVayYbsjVwIiL4WBIMV4aQ==", + "dev": true, + "dependencies": { + "@jest/fake-timers": "^24.9.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "engines": { + "node": ">= 6" + } }, - "acorn-dynamic-import": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/acorn-dynamic-import/-/acorn-dynamic-import-4.0.0.tgz", - "integrity": "sha512-d3OEjQV4ROpoflsnUA8HozoIR504TFxNivYEUi6uwz0IYhBkTDXGuWlNdMtybRt3nqVx/L6XqMt0FxkXuWKZhw==", - "dev": true + "node_modules/@jest/fake-timers": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-24.9.0.tgz", + "integrity": "sha512-eWQcNa2YSwzXWIMC5KufBh3oWRIijrQFROsIqt6v/NS9Io/gknw1jsAC9c+ih/RQX4A3O7SeWAhQeN0goKhT9A==", + "dev": true, + "dependencies": { + "@jest/types": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "engines": { + "node": ">= 6" + } }, - "acorn-globals": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-4.3.0.tgz", - "integrity": "sha512-hMtHj3s5RnuhvHPowpBYvJVj3rAar82JiDQHvGs1zO0l10ocX/xEdBShNHTJaboucJUsScghp74pH3s7EnHHQw==", + "node_modules/@jest/reporters": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-24.9.0.tgz", + "integrity": "sha512-mu4X0yjaHrffOsWmVLzitKmmmWSQ3GGuefgNscUSWNiUNcEOSEQk9k3pERKEQVBb0Cnn88+UESIsZEMH3o88Gw==", "dev": true, - "requires": { - "acorn": "^6.0.1", - "acorn-walk": "^6.0.1" + "dependencies": { + "@jest/environment": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "glob": "^7.1.2", + "istanbul-lib-coverage": "^2.0.2", + "istanbul-lib-instrument": "^3.0.1", + "istanbul-lib-report": "^2.0.4", + "istanbul-lib-source-maps": "^3.0.1", + "istanbul-reports": "^2.2.6", + "jest-haste-map": "^24.9.0", + "jest-resolve": "^24.9.0", + "jest-runtime": "^24.9.0", + "jest-util": "^24.9.0", + "jest-worker": "^24.6.0", + "node-notifier": "^5.4.2", + "slash": "^2.0.0", + "source-map": "^0.6.0", + "string-length": "^2.0.0" }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@jest/source-map": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-24.9.0.tgz", + "integrity": "sha512-/Xw7xGlsZb4MJzNDgB7PW5crou5JqWiBQaz6xyPd3ArOg2nfn/PunV8+olXbbEZzNl591o5rWKE9BRDaFAuIBg==", + "dev": true, "dependencies": { - "acorn": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.1.1.tgz", - "integrity": "sha512-jPTiwtOxaHNaAPg/dmrJ/beuzLRnXtB0kQPQ8JpotKJgTB6rX6c8mlf315941pyjBSaPg8NHXS9fhP4u17DpGA==", - "dev": true - } + "callsites": "^3.0.0", + "graceful-fs": "^4.1.15", + "source-map": "^0.6.0" + }, + "engines": { + "node": ">= 6" } }, - "acorn-walk": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-6.1.1.tgz", - "integrity": "sha512-OtUw6JUTgxA2QoqqmrmQ7F2NYqiBPi/L2jqHyFtllhOUvXYQXf0Z1CYUinIfyT4bTCGmrA7gX9FvHA81uzCoVw==", - "dev": true + "node_modules/@jest/test-result": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-24.9.0.tgz", + "integrity": "sha512-XEFrHbBonBJ8dGp2JmF8kP/nQI/ImPpygKHwQ/SY+es59Z3L5PI4Qb9TQQMAEeYsThG1xF0k6tmG0tIKATNiiA==", + "dev": true, + "dependencies": { + "@jest/console": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/istanbul-lib-coverage": "^2.0.0" + }, + "engines": { + "node": ">= 6" + } }, - "ajv": { - "version": "6.10.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.10.0.tgz", - "integrity": "sha512-nffhOpkymDECQyR0mnsUtoCE8RlX38G0rYP+wgLWFyZuUyuuojSSvi/+euOiQBIn63whYwYVIIH1TvE3tu4OEg==", + "node_modules/@jest/test-sequencer": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-24.9.0.tgz", + "integrity": "sha512-6qqsU4o0kW1dvA95qfNog8v8gkRN9ph6Lz7r96IvZpHdNipP2cBcb07J1Z45mz/VIS01OHJ3pY8T5fUY38tg4A==", "dev": true, - "requires": { - "fast-deep-equal": "^2.0.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" + "dependencies": { + "@jest/test-result": "^24.9.0", + "jest-haste-map": "^24.9.0", + "jest-runner": "^24.9.0", + "jest-runtime": "^24.9.0" + }, + "engines": { + "node": ">= 6" } }, - "ajv-errors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz", - "integrity": "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==", - "dev": true + "node_modules/@jest/transform": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-24.9.0.tgz", + "integrity": "sha512-TcQUmyNRxV94S0QpMOnZl0++6RMiqpbH/ZMccFB/amku6Uwvyb1cjYX7xkp5nGNkbX4QPH/FcB6q1HBTHynLmQ==", + "dev": true, + "dependencies": { + "@babel/core": "^7.1.0", + "@jest/types": "^24.9.0", + "babel-plugin-istanbul": "^5.1.0", + "chalk": "^2.0.1", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.1.15", + "jest-haste-map": "^24.9.0", + "jest-regex-util": "^24.9.0", + "jest-util": "^24.9.0", + "micromatch": "^3.1.10", + "pirates": "^4.0.1", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "2.4.1" + }, + "engines": { + "node": ">= 6" + } }, - "ajv-keywords": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.4.0.tgz", - "integrity": "sha512-aUjdRFISbuFOl0EIZc+9e4FfZp0bDZgAdOOf30bJmw8VM9v84SHyVyxDfbWxpGYbdZD/9XoKxfHVNmxPkhwyGw==", - "dev": true + "node_modules/@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-24.9.0.tgz", + "integrity": "sha512-XKK7ze1apu5JWQ5eZjHITP66AX+QsLlbaJRBGYr8pNzwcAE2JVkwnf0yqjHTsDRcjR0mujy/NmZMXw5kl+kGBw==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "engines": { + "node": ">= 6" + } }, - "ansi-colors": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.4.tgz", - "integrity": "sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==", - "dev": true + "node_modules/@jridgewell/gen-mapping": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz", + "integrity": "sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==", + "dev": true, + "dependencies": { + "@jridgewell/set-array": "^1.0.0", + "@jridgewell/sourcemap-codec": "^1.4.10" + }, + "engines": { + "node": ">=6.0.0" + } }, - "ansi-escapes": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz", - "integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==", - "dev": true + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", + "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } }, - "ansi-html": { - "version": "0.0.7", - "resolved": "https://registry.npmjs.org/ansi-html/-/ansi-html-0.0.7.tgz", - "integrity": "sha1-gTWEAhliqenm/QOflA0S9WynhZ4=", - "dev": true + "node_modules/@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } }, - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.14", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", + "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", "dev": true }, - "anymatch": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", - "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.15", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.15.tgz", + "integrity": "sha512-oWZNOULl+UbhsgB51uuZzglikfIKSUBO/M9W2OfEjn7cmqoAiCgmv9lyACTUacZwBz0ITnJ2NqjU8Tx0DHL88g==", "dev": true, - "requires": { - "micromatch": "^3.1.4", - "normalize-path": "^2.1.1" + "dependencies": { + "@jridgewell/resolve-uri": "^3.0.3", + "@jridgewell/sourcemap-codec": "^1.4.10" } }, - "append-transform": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/append-transform/-/append-transform-1.0.0.tgz", - "integrity": "sha512-P009oYkeHyU742iSZJzZZywj4QRJdnTWffaKuJQLablCZ1uz6/cW4yaRgcDaoQ+uwOxxnt0gRUcwfsNP2ri0gw==", + "node_modules/@nicolo-ribaudo/chokidar-2": { + "version": "2.1.8-no-fsevents.3", + "resolved": "https://registry.npmjs.org/@nicolo-ribaudo/chokidar-2/-/chokidar-2-2.1.8-no-fsevents.3.tgz", + "integrity": "sha512-s88O1aVtXftvp5bCPB7WnmXc5IwOZZ7YPuwNPt+GtOOXpPvad1LfbmjYv+qII7zP6RU2QGnqve27dnLycEnyEQ==", "dev": true, - "requires": { - "default-require-extensions": "^2.0.0" + "optional": true + }, + "node_modules/@primer/octicons": { + "version": "9.6.0", + "resolved": "https://registry.npmjs.org/@primer/octicons/-/octicons-9.6.0.tgz", + "integrity": "sha512-B5Wzk5izRXXz0JqEXJkVUtqhCXSpUKgqYkVwegMkp5sziBW+ksd9LPbONlCWyyLODwf9GsI2sBXekR7m+JJDBw==", + "dev": true, + "dependencies": { + "object-assign": "^4.1.1" } }, - "aproba": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", - "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==", - "dev": true + "node_modules/@types/babel__core": { + "version": "7.1.19", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.19.tgz", + "integrity": "sha512-WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw==", + "dev": true, + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } }, - "argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "node_modules/@types/babel__generator": { + "version": "7.6.4", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz", + "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==", "dev": true, - "requires": { - "sprintf-js": "~1.0.2" + "dependencies": { + "@babel/types": "^7.0.0" } }, - "arr-diff": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", - "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=", - "dev": true + "node_modules/@types/babel__template": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz", + "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", + "dev": true, + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } }, - "arr-flatten": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", - "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", - "dev": true + "node_modules/@types/babel__traverse": { + "version": "7.18.2", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.18.2.tgz", + "integrity": "sha512-FcFaxOr2V5KZCviw1TnutEMVUVsGt4D2hP1TAfXZAMKuHYW3xQhe3jTxNPWutgCJ3/X1c5yX8ZoGVEItxKbwBg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.3.0" + } }, - "arr-union": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", - "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=", - "dev": true + "node_modules/@types/glob": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==", + "dev": true, + "dependencies": { + "@types/minimatch": "*", + "@types/node": "*" + } }, - "array-equal": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/array-equal/-/array-equal-1.0.0.tgz", - "integrity": "sha1-jCpe8kcv2ep0KwTHenUJO6J1fJM=", + "node_modules/@types/istanbul-lib-coverage": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz", + "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==", "dev": true }, - "array-flatten": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", - "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==", - "dev": true + "node_modules/@types/istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-coverage": "*" + } }, - "array-union": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", - "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=", + "node_modules/@types/istanbul-reports": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-1.1.2.tgz", + "integrity": "sha512-P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw==", "dev": true, - "requires": { - "array-uniq": "^1.0.1" + "dependencies": { + "@types/istanbul-lib-coverage": "*", + "@types/istanbul-lib-report": "*" } }, - "array-uniq": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", - "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=", + "node_modules/@types/minimatch": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-5.1.2.tgz", + "integrity": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==", "dev": true }, - "array-unique": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", - "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=", + "node_modules/@types/node": { + "version": "18.7.23", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.23.tgz", + "integrity": "sha512-DWNcCHolDq0ZKGizjx2DZjR/PqsYwAcYUJmfMWqtVU2MBMG5Mo+xFZrhGId5r/O5HOuMPyQEcM6KUBp5lBZZBg==", "dev": true }, - "arrify": { + "node_modules/@types/stack-utils": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", - "integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-1.0.1.tgz", + "integrity": "sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw==", "dev": true }, - "asap": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", - "integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=" - }, - "asn1": { - "version": "0.2.4", - "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz", - "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==", + "node_modules/@types/yargs": { + "version": "13.0.12", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-13.0.12.tgz", + "integrity": "sha512-qCxJE1qgz2y0hA4pIxjBR+PelCH0U5CK1XJXFwCNqfmliatKp47UCXXE9Dyk1OXBDLvsCF57TqQEJaeLfDYEOQ==", "dev": true, - "requires": { - "safer-buffer": "~2.1.0" + "dependencies": { + "@types/yargs-parser": "*" } }, - "asn1.js": { - "version": "4.10.1", - "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-4.10.1.tgz", - "integrity": "sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==", - "dev": true, - "requires": { - "bn.js": "^4.0.0", - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0" - } + "node_modules/@types/yargs-parser": { + "version": "21.0.0", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz", + "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==", + "dev": true }, - "assert": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/assert/-/assert-1.4.1.tgz", - "integrity": "sha1-mZEtWRg2tab1s0XA8H7vwI/GXZE=", + "node_modules/@webassemblyjs/ast": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.9.0.tgz", + "integrity": "sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==", "dev": true, - "requires": { - "util": "0.10.3" - }, "dependencies": { - "inherits": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", - "integrity": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=", - "dev": true - }, - "util": { - "version": "0.10.3", - "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz", - "integrity": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=", - "dev": true, - "requires": { - "inherits": "2.0.1" - } - } + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0" } }, - "assert-plus": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", + "node_modules/@webassemblyjs/floating-point-hex-parser": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz", + "integrity": "sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==", "dev": true }, - "assign-symbols": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", - "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=", + "node_modules/@webassemblyjs/helper-api-error": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz", + "integrity": "sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==", "dev": true }, - "astral-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz", - "integrity": "sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==", + "node_modules/@webassemblyjs/helper-buffer": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz", + "integrity": "sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA==", "dev": true }, - "async": { - "version": "1.5.2", - "resolved": "https://registry.npmjs.org/async/-/async-1.5.2.tgz", - "integrity": "sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo=", - "dev": true + "node_modules/@webassemblyjs/helper-code-frame": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.0.tgz", + "integrity": "sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA==", + "dev": true, + "dependencies": { + "@webassemblyjs/wast-printer": "1.9.0" + } }, - "async-each": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.1.tgz", - "integrity": "sha1-GdOGodntxufByF04iu28xW0zYC0=", + "node_modules/@webassemblyjs/helper-fsm": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz", + "integrity": "sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw==", "dev": true }, - "async-limiter": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.0.tgz", - "integrity": "sha512-jp/uFnooOiO+L211eZOoSyzpOITMXx1rBITauYykG3BRYPu8h0UcxsPNB04RR5vo4Tyz3+ay17tR6JVf9qzYWg==", - "dev": true + "node_modules/@webassemblyjs/helper-module-context": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.0.tgz", + "integrity": "sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.9.0" + } }, - "asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=", + "node_modules/@webassemblyjs/helper-wasm-bytecode": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz", + "integrity": "sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==", "dev": true }, - "atob": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.0.tgz", - "integrity": "sha512-SuiKH8vbsOyCALjA/+EINmt/Kdl+TQPrtFgW7XZZcwtryFu9e5kQoX3bjCW6mIvGH1fbeAZZuvwGR5IlBRznGw==", - "dev": true + "node_modules/@webassemblyjs/helper-wasm-section": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz", + "integrity": "sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==", + "dev": true, + "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" + } }, - "aws-sign2": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", - "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=", - "dev": true + "node_modules/@webassemblyjs/ieee754": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz", + "integrity": "sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==", + "dev": true, + "dependencies": { + "@xtuc/ieee754": "^1.2.0" + } }, - "aws4": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.8.0.tgz", - "integrity": "sha512-ReZxvNHIOv88FlT7rxcXIIC0fPt4KZqZbOlivyWtXLt8ESx84zd3kMC6iK5jVeS2qt+g7ftS7ye4fi06X5rtRQ==", + "node_modules/@webassemblyjs/leb128": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.9.0.tgz", + "integrity": "sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==", + "dev": true, + "dependencies": { + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/utf8": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.9.0.tgz", + "integrity": "sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w==", "dev": true }, - "babel-jest": { - "version": "24.5.0", - "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-24.5.0.tgz", - "integrity": "sha512-0fKCXyRwxFTJL0UXDJiT2xYxO9Lu2vBd9n+cC+eDjESzcVG3s2DRGAxbzJX21fceB1WYoBjAh8pQ83dKcl003g==", + "node_modules/@webassemblyjs/wasm-edit": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz", + "integrity": "sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==", "dev": true, - "requires": { - "@jest/transform": "^24.5.0", - "@jest/types": "^24.5.0", - "@types/babel__core": "^7.1.0", - "babel-plugin-istanbul": "^5.1.0", - "babel-preset-jest": "^24.3.0", - "chalk": "^2.4.2", - "slash": "^2.0.0" - }, "dependencies": { - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "requires": { - "color-convert": "^1.9.0" - } - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", - "dev": true - }, - "slash": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", - "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", - "dev": true - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - } + "@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" } }, - "babel-plugin-istanbul": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-5.1.1.tgz", - "integrity": "sha512-RNNVv2lsHAXJQsEJ5jonQwrJVWK8AcZpG1oxhnjCUaAjL7xahYLANhPUZbzEQHjKy1NMYUwn+0NPKQc8iSY4xQ==", + "node_modules/@webassemblyjs/wasm-gen": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz", + "integrity": "sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==", "dev": true, - "requires": { - "find-up": "^3.0.0", - "istanbul-lib-instrument": "^3.0.0", - "test-exclude": "^5.0.0" - }, "dependencies": { - "find-up": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", - "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", - "dev": true, - "requires": { - "locate-path": "^3.0.0" - } - } + "@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" } }, - "babel-plugin-jest-hoist": { - "version": "24.3.0", - "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-24.3.0.tgz", - "integrity": "sha512-nWh4N1mVH55Tzhx2isvUN5ebM5CDUvIpXPZYMRazQughie/EqGnbR+czzoQlhUmJG9pPJmYDRhvocotb2THl1w==", + "node_modules/@webassemblyjs/wasm-opt": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz", + "integrity": "sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A==", "dev": true, - "requires": { - "@types/babel__traverse": "^7.0.6" + "dependencies": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0" } }, - "babel-preset-jest": { - "version": "24.3.0", - "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-24.3.0.tgz", - "integrity": "sha512-VGTV2QYBa/Kn3WCOKdfS31j9qomaXSgJqi65B6o05/1GsJyj9LVhSljM9ro4S+IBGj/ENhNBuH9bpqzztKAQSw==", + "node_modules/@webassemblyjs/wasm-parser": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz", + "integrity": "sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==", "dev": true, - "requires": { - "@babel/plugin-syntax-object-rest-spread": "^7.0.0", - "babel-plugin-jest-hoist": "^24.3.0" + "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" } }, - "balanced-match": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", - "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", - "dev": true - }, - "base": { - "version": "0.11.2", - "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", - "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", + "node_modules/@webassemblyjs/wast-parser": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.9.0.tgz", + "integrity": "sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw==", "dev": true, - "requires": { - "cache-base": "^1.0.1", - "class-utils": "^0.3.5", - "component-emitter": "^1.2.1", - "define-property": "^1.0.0", - "isobject": "^3.0.1", - "mixin-deep": "^1.2.0", - "pascalcase": "^0.1.1" - }, "dependencies": { - "define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", - "dev": true, - "requires": { - "is-descriptor": "^1.0.0" - } - }, - "is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - } - }, - "kind-of": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==", - "dev": true - } + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/floating-point-hex-parser": "1.9.0", + "@webassemblyjs/helper-api-error": "1.9.0", + "@webassemblyjs/helper-code-frame": "1.9.0", + "@webassemblyjs/helper-fsm": "1.9.0", + "@xtuc/long": "4.2.2" } }, - "base64-js": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.3.0.tgz", - "integrity": "sha512-ccav/yGvoa80BQDljCxsmmQ3Xvx60/UpBIij5QN21W3wBi/hhIC9OoO+KLpu9IJTS9j4DRVJ3aDDF9cMSoa2lw==", - "dev": true - }, - "batch": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", - "integrity": "sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=", - "dev": true - }, - "bcrypt-pbkdf": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", - "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", + "node_modules/@webassemblyjs/wast-printer": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz", + "integrity": "sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==", "dev": true, - "requires": { - "tweetnacl": "^0.14.3" + "dependencies": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0", + "@xtuc/long": "4.2.2" } }, - "big.js": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-3.2.0.tgz", - "integrity": "sha512-+hN/Zh2D08Mx65pZ/4g5bsmNiZUuChDiQfTUQ7qJr4/kuopCr88xZsAXv6mBoZEsUI4OuGHlX59qE94K2mMW8Q==", - "dev": true - }, - "binary-extensions": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.11.0.tgz", - "integrity": "sha1-RqoXUftqL5PuXmibsQh9SxTGwgU=", + "node_modules/@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", "dev": true }, - "bluebird": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.5.3.tgz", - "integrity": "sha512-/qKPUQlaW1OyR51WeCPBvRnAlnZFUJkCSG5HzGnuIqhgyJtF+T94lFnn33eiazjRm2LAHVy2guNnaq48X9SJuw==", + "node_modules/@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", "dev": true }, - "bn.js": { - "version": "4.11.8", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.8.tgz", - "integrity": "sha512-ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA==", + "node_modules/abab": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", + "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==", "dev": true }, - "body-parser": { - "version": "1.18.3", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.18.3.tgz", - "integrity": "sha1-WykhmP/dVTs6DyDe0FkrlWlVyLQ=", + "node_modules/accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", "dev": true, - "requires": { - "bytes": "3.0.0", - "content-type": "~1.0.4", - "debug": "2.6.9", - "depd": "~1.1.2", - "http-errors": "~1.6.3", - "iconv-lite": "0.4.23", - "on-finished": "~2.3.0", - "qs": "6.5.2", - "raw-body": "2.3.3", - "type-is": "~1.6.16" - }, - "dependencies": { - "iconv-lite": { - "version": "0.4.23", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.23.tgz", - "integrity": "sha512-neyTUVFtahjf0mB3dZT77u+8O0QB89jFdnBkd5P1JgYPbPaia3gXXOVL2fq8VyU2gMMD7SaN7QukTB/pmXYvDA==", - "dev": true, - "requires": { - "safer-buffer": ">= 2.1.2 < 3" - } - } + "dependencies": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" } }, - "bonjour": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/bonjour/-/bonjour-3.5.0.tgz", - "integrity": "sha1-jokKGD2O6aI5OzhExpGkK897yfU=", + "node_modules/acorn": { + "version": "5.7.4", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-5.7.4.tgz", + "integrity": "sha512-1D++VG7BhrtvQpNbBzovKNc1FLGGEE/oGe7b9xJm/RFHMBeUaUGpluV9RLjZa47YFdPcDAenEYuq9pQPcMdLJg==", "dev": true, - "requires": { - "array-flatten": "^2.1.0", - "deep-equal": "^1.0.1", - "dns-equal": "^1.0.0", - "dns-txt": "^2.0.2", - "multicast-dns": "^6.0.1", - "multicast-dns-service-types": "^1.1.0" + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" } }, - "boolbase": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", - "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=", - "dev": true - }, - "brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "node_modules/acorn-globals": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-4.3.4.tgz", + "integrity": "sha512-clfQEh21R+D0leSbUdWf3OcfqyaCSAQ8Ryq00bofSekfr9W8u1jyYZo6ir0xu9Gtcf7BjcHJpnbZH7JOCpP60A==", "dev": true, - "requires": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" + "dependencies": { + "acorn": "^6.0.1", + "acorn-walk": "^6.0.1" } }, - "braces": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", - "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "node_modules/acorn-globals/node_modules/acorn": { + "version": "6.4.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.2.tgz", + "integrity": "sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==", "dev": true, - "requires": { - "arr-flatten": "^1.1.0", - "array-unique": "^0.3.2", - "extend-shallow": "^2.0.1", - "fill-range": "^4.0.0", - "isobject": "^3.0.1", - "repeat-element": "^1.1.2", - "snapdragon": "^0.8.1", - "snapdragon-node": "^2.0.1", - "split-string": "^3.0.2", - "to-regex": "^3.0.1" + "bin": { + "acorn": "bin/acorn" }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - } + "engines": { + "node": ">=0.4.0" } }, - "brorand": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", - "integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=", - "dev": true - }, - "browser-process-hrtime": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-0.1.3.tgz", - "integrity": "sha512-bRFnI4NnjO6cnyLmOV/7PVoDEMJChlcfN0z4s1YMBY989/SvlfMI1lgCnkFUs53e9gQF+w7qu7XdllSTiSl8Aw==", - "dev": true - }, - "browser-resolve": { - "version": "1.11.3", - "resolved": "https://registry.npmjs.org/browser-resolve/-/browser-resolve-1.11.3.tgz", - "integrity": "sha512-exDi1BYWB/6raKHmDTCicQfTkqwN5fioMFV4j8BsfMU4R2DK/QfZfK7kOVkmWCNANf0snkBzqGqAJBao9gZMdQ==", + "node_modules/acorn-walk": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-6.2.0.tgz", + "integrity": "sha512-7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe//vS0QqfqqjCS2JkiIs0cA==", "dev": true, - "requires": { - "resolve": "1.1.7" - }, - "dependencies": { - "resolve": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz", - "integrity": "sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs=", - "dev": true - } + "engines": { + "node": ">=0.4.0" } }, - "browserify-aes": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", - "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", "dev": true, - "requires": { - "buffer-xor": "^1.0.3", - "cipher-base": "^1.0.0", - "create-hash": "^1.1.0", - "evp_bytestokey": "^1.0.3", - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" } }, - "browserify-cipher": { + "node_modules/ajv-errors": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", - "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", + "resolved": "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz", + "integrity": "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==", "dev": true, - "requires": { - "browserify-aes": "^1.0.4", - "browserify-des": "^1.0.0", - "evp_bytestokey": "^1.0.0" + "peerDependencies": { + "ajv": ">=5.0.0" } }, - "browserify-des": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", - "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", + "node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", "dev": true, - "requires": { - "cipher-base": "^1.0.1", - "des.js": "^1.0.0", - "inherits": "^2.0.1", - "safe-buffer": "^5.1.2" - }, - "dependencies": { - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - } + "peerDependencies": { + "ajv": "^6.9.1" } }, - "browserify-rsa": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.0.1.tgz", - "integrity": "sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ=", + "node_modules/ansi-colors": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.4.tgz", + "integrity": "sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==", "dev": true, - "requires": { - "bn.js": "^4.1.0", - "randombytes": "^2.0.1" + "engines": { + "node": ">=6" } }, - "browserify-sign": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.0.4.tgz", - "integrity": "sha1-qk62jl17ZYuqa/alfmMMvXqT0pg=", + "node_modules/ansi-escapes": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz", + "integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==", "dev": true, - "requires": { - "bn.js": "^4.1.1", - "browserify-rsa": "^4.0.0", - "create-hash": "^1.1.0", - "create-hmac": "^1.1.2", - "elliptic": "^6.0.0", - "inherits": "^2.0.1", - "parse-asn1": "^5.0.0" + "engines": { + "node": ">=4" } }, - "browserify-zlib": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz", - "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==", + "node_modules/ansi-html-community": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", + "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", "dev": true, - "requires": { - "pako": "~1.0.5" - }, - "dependencies": { - "pako": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.10.tgz", - "integrity": "sha512-0DTvPVU3ed8+HNXOu5Bs+o//Mbdj9VNQMUOe9oKCwh8l0GNwpTDMKCWbRjgtD291AWnkAgkqA/LOnQS8AmS1tw==", - "dev": true - } + "engines": [ + "node >= 0.8.0" + ], + "bin": { + "ansi-html": "bin/ansi-html" } }, - "browserslist": { - "version": "4.5.3", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.5.3.tgz", - "integrity": "sha512-Tx/Jtrmh6vFg24AelzLwCaCq1IUJiMDM1x/LPzqbmbktF8Zo7F9ONUpOWsFK6TtdON95mSMaQUWqi0ilc8xM6g==", + "node_modules/ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", "dev": true, - "requires": { - "caniuse-lite": "^1.0.30000955", - "electron-to-chromium": "^1.3.122", - "node-releases": "^1.1.12" + "engines": { + "node": ">=6" } }, - "bser": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/bser/-/bser-2.0.0.tgz", - "integrity": "sha1-mseNPtXZFYBP2HrLFYvHlxR6Fxk=", + "node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "dev": true, - "requires": { - "node-int64": "^0.4.0" + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" } }, - "buffer": { - "version": "4.9.1", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.1.tgz", - "integrity": "sha1-bRu2AbB6TvztlwlBMgkwJ8lbwpg=", + "node_modules/anymatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", + "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", "dev": true, - "requires": { - "base64-js": "^1.0.2", - "ieee754": "^1.1.4", - "isarray": "^1.0.0" + "optional": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" } }, - "buffer-from": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz", - "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==", + "node_modules/aproba": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", + "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==", "dev": true }, - "buffer-indexof": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/buffer-indexof/-/buffer-indexof-1.1.1.tgz", - "integrity": "sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==", - "dev": true + "node_modules/arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "buffer-xor": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", - "integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=", - "dev": true + "node_modules/arr-flatten": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", + "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "builtin-modules": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz", - "integrity": "sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8=", - "dev": true + "node_modules/arr-union": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "builtin-status-codes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", - "integrity": "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=", + "node_modules/array-equal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-equal/-/array-equal-1.0.0.tgz", + "integrity": "sha512-H3LU5RLiSsGXPhN+Nipar0iR0IofH+8r89G2y1tBKxQ/agagKyAjhkAFDRBfodP2caPrNKHpAWNIM/c9yeL7uA==", "dev": true }, - "bytes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=", + "node_modules/array-flatten": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", + "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==", "dev": true }, - "cacache": { - "version": "11.3.2", - "resolved": "https://registry.npmjs.org/cacache/-/cacache-11.3.2.tgz", - "integrity": "sha512-E0zP4EPGDOaT2chM08Als91eYnf8Z+eH1awwwVsngUmgppfM5jjJ8l3z5vO5p5w/I3LsiXawb1sW0VY65pQABg==", + "node_modules/array-union": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", + "integrity": "sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==", "dev": true, - "requires": { - "bluebird": "^3.5.3", - "chownr": "^1.1.1", - "figgy-pudding": "^3.5.1", - "glob": "^7.1.3", - "graceful-fs": "^4.1.15", - "lru-cache": "^5.1.1", - "mississippi": "^3.0.0", - "mkdirp": "^0.5.1", - "move-concurrently": "^1.0.1", - "promise-inflight": "^1.0.1", - "rimraf": "^2.6.2", - "ssri": "^6.0.1", - "unique-filename": "^1.1.1", - "y18n": "^4.0.0" + "dependencies": { + "array-uniq": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-uniq": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", + "integrity": "sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array.prototype.reduce": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/array.prototype.reduce/-/array.prototype.reduce-1.0.4.tgz", + "integrity": "sha512-WnM+AjG/DvLRLo4DDl+r+SvCzYtD2Jd9oeBYMcEaI7t3fFrHY9M53/wdLcTvmZNQ70IU6Htj0emFkZ5TS+lrdw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.2", + "es-array-method-boxes-properly": "^1.0.0", + "is-string": "^1.0.7" }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/asn1": { + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz", + "integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==", + "dev": true, "dependencies": { - "glob": { - "version": "7.1.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.3.tgz", - "integrity": "sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "graceful-fs": { - "version": "4.1.15", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.15.tgz", - "integrity": "sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA==", - "dev": true - }, - "lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", - "dev": true, - "requires": { - "yallist": "^3.0.2" - } - }, - "y18n": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz", - "integrity": "sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==", - "dev": true - }, - "yallist": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.0.3.tgz", - "integrity": "sha512-S+Zk8DEWE6oKpV+vI3qWkaK+jSbIK86pCwe2IF/xwIpQ8jEuxpw9NyaGjmp9+BoJv5FV2piqCDcoCtStppiq2A==", - "dev": true - } + "safer-buffer": "~2.1.0" } }, - "cache-base": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", - "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", + "node_modules/asn1.js": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz", + "integrity": "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==", "dev": true, - "requires": { - "collection-visit": "^1.0.0", - "component-emitter": "^1.2.1", - "get-value": "^2.0.6", - "has-value": "^1.0.0", - "isobject": "^3.0.1", - "set-value": "^2.0.0", - "to-object-path": "^0.3.0", - "union-value": "^1.0.0", - "unset-value": "^1.0.0" + "dependencies": { + "bn.js": "^4.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0", + "safer-buffer": "^2.1.0" } }, - "callsites": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.0.0.tgz", - "integrity": "sha512-tWnkwu9YEq2uzlBDI4RcLn8jrFvF9AOi8PxDNU3hZZjJcjkcRAq3vCI+vZcg1SuxISDYe86k9VZFwAxDiJGoAw==", + "node_modules/asn1.js/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", "dev": true }, - "camel-case": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-3.0.0.tgz", - "integrity": "sha1-yjw2iKTpzzpM2nd9xNy8cTJJz3M=", - "requires": { - "no-case": "^2.2.0", - "upper-case": "^1.1.1" + "node_modules/assert": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz", + "integrity": "sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==", + "dev": true, + "dependencies": { + "object-assign": "^4.1.1", + "util": "0.10.3" } }, - "camelcase": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.2.0.tgz", - "integrity": "sha512-IXFsBS2pC+X0j0N/GE7Dm7j3bsEBp+oTpb7F50dwEVX7rf3IgwO9XatnegTsDtniKCUtEJH4fSU6Asw7uoVLfQ==", + "node_modules/assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==", + "dev": true, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/assert/node_modules/inherits": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", + "integrity": "sha512-8nWq2nLTAwd02jTqJExUYFSD/fKq6VH9Y/oG2accc/kdI0V98Bag8d5a4gi3XHz73rDWa2PvTtvcWYquKqSENA==", "dev": true }, - "caniuse-lite": { - "version": "1.0.30000955", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000955.tgz", - "integrity": "sha512-6AwmIKgqCYfDWWadRkAuZSHMQP4Mmy96xAXEdRBlN/luQhlRYOKgwOlZ9plpCOsVbBuqbTmGqDK3JUM/nlr8CA==", + "node_modules/assert/node_modules/util": { + "version": "0.10.3", + "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz", + "integrity": "sha512-5KiHfsmkqacuKjkRkdV7SsfDJ2EGiPsK92s2MhNSY0craxjTdKTtqKsJaCWp4LW33ZZ0OPUv1WO/TFvNQRiQxQ==", + "dev": true, + "dependencies": { + "inherits": "2.0.1" + } + }, + "node_modules/assign-symbols": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", + "integrity": "sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/astral-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz", + "integrity": "sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/async": { + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz", + "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==", + "dev": true, + "dependencies": { + "lodash": "^4.17.14" + } + }, + "node_modules/async-each": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz", + "integrity": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==", "dev": true }, - "capture-exit": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/capture-exit/-/capture-exit-2.0.0.tgz", - "integrity": "sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==", + "node_modules/async-limiter": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", + "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==", + "dev": true + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "dev": true + }, + "node_modules/atob": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", + "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", "dev": true, - "requires": { - "rsvp": "^4.8.4" + "bin": { + "atob": "bin/atob.js" + }, + "engines": { + "node": ">= 4.5.0" } }, - "caseless": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", - "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=", + "node_modules/aws-sign2": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", + "integrity": "sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/aws4": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz", + "integrity": "sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==", "dev": true }, - "cheerio": { - "version": "0.22.0", - "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-0.22.0.tgz", - "integrity": "sha1-qbqoYKP5tZWmuBsahocxIe06Jp4=", + "node_modules/babel-jest": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-24.9.0.tgz", + "integrity": "sha512-ntuddfyiN+EhMw58PTNL1ph4C9rECiQXjI4nMMBKBaNjXvqLdkXpPRcMSr4iyBrJg/+wz9brFUD6RhOAT6r4Iw==", "dev": true, - "requires": { - "css-select": "~1.2.0", - "dom-serializer": "~0.1.0", - "entities": "~1.1.1", - "htmlparser2": "^3.9.1", - "lodash.assignin": "^4.0.9", - "lodash.bind": "^4.1.4", - "lodash.defaults": "^4.0.1", - "lodash.filter": "^4.4.0", - "lodash.flatten": "^4.2.0", - "lodash.foreach": "^4.3.0", - "lodash.map": "^4.4.0", - "lodash.merge": "^4.4.0", - "lodash.pick": "^4.2.1", - "lodash.reduce": "^4.4.0", - "lodash.reject": "^4.4.0", - "lodash.some": "^4.4.0" + "dependencies": { + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/babel__core": "^7.1.0", + "babel-plugin-istanbul": "^5.1.0", + "babel-preset-jest": "^24.9.0", + "chalk": "^2.4.2", + "slash": "^2.0.0" + }, + "engines": { + "node": ">= 6" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" } }, - "chokidar": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.5.tgz", - "integrity": "sha512-i0TprVWp+Kj4WRPtInjexJ8Q+BqTE909VpH8xVhXrJkoc5QC8VO9TryGOqTr+2hljzc1sC62t22h5tZePodM/A==", + "node_modules/babel-plugin-dynamic-import-node": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz", + "integrity": "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==", "dev": true, - "requires": { - "anymatch": "^2.0.0", - "async-each": "^1.0.1", - "braces": "^2.3.2", - "fsevents": "^1.2.7", - "glob-parent": "^3.1.0", - "inherits": "^2.0.3", - "is-binary-path": "^1.0.0", - "is-glob": "^4.0.0", - "normalize-path": "^3.0.0", - "path-is-absolute": "^1.0.0", - "readdirp": "^2.2.1", - "upath": "^1.1.1" + "dependencies": { + "object.assign": "^4.1.0" + } + }, + "node_modules/babel-plugin-istanbul": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-5.2.0.tgz", + "integrity": "sha512-5LphC0USA8t4i1zCtjbbNb6jJj/9+X6P37Qfirc/70EQ34xKlMW+a1RHGwxGI+SwWpNwZ27HqvzAobeqaXwiZw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "find-up": "^3.0.0", + "istanbul-lib-instrument": "^3.3.0", + "test-exclude": "^5.2.3" }, + "engines": { + "node": ">=6" + } + }, + "node_modules/babel-plugin-jest-hoist": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-24.9.0.tgz", + "integrity": "sha512-2EMA2P8Vp7lG0RAzr4HXqtYwacfMErOuv1U3wrvxHX6rD1sV6xS3WXG3r8TRQ2r6w8OhvSdWt+z41hQNwNm3Xw==", + "dev": true, "dependencies": { - "fsevents": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.7.tgz", - "integrity": "sha512-Pxm6sI2MeBD7RdD12RYsqaP0nMiwx8eZBXCa6z2L+mRHm2DYrOYwihmhjpkdjUHwQhslWQjRpEgNq4XvBmaAuw==", - "dev": true, - "optional": true, - "requires": { - "nan": "^2.9.2", - "node-pre-gyp": "^0.10.0" - }, - "dependencies": { - "abbrev": { - "version": "1.1.1", - "bundled": true, - "dev": true, - "optional": true - }, - "ansi-regex": { - "version": "2.1.1", - "bundled": true, - "dev": true, - "optional": true - }, - "aproba": { - "version": "1.2.0", - "bundled": true, - "dev": true, - "optional": true - }, - "are-we-there-yet": { - "version": "1.1.5", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "delegates": "^1.0.0", - "readable-stream": "^2.0.6" - } - }, - "balanced-match": { - "version": "1.0.0", - "bundled": true, - "dev": true, - "optional": true - }, - "brace-expansion": { - "version": "1.1.11", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "chownr": { - "version": "1.1.1", - "bundled": true, - "dev": true, - "optional": true - }, - "code-point-at": { - "version": "1.1.0", - "bundled": true, - "dev": true, - "optional": true - }, - "concat-map": { - "version": "0.0.1", - "bundled": true, - "dev": true, - "optional": true - }, - "console-control-strings": { - "version": "1.1.0", - "bundled": true, - "dev": true, - "optional": true - }, - "core-util-is": { - "version": "1.0.2", - "bundled": true, - "dev": true, - "optional": true - }, - "debug": { - "version": "2.6.9", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "ms": "2.0.0" - } - }, - "deep-extend": { - "version": "0.6.0", - "bundled": true, - "dev": true, - "optional": true - }, - "delegates": { - "version": "1.0.0", - "bundled": true, - "dev": true, - "optional": true - }, - "detect-libc": { - "version": "1.0.3", - "bundled": true, - "dev": true, - "optional": true - }, - "fs-minipass": { - "version": "1.2.5", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "minipass": "^2.2.1" - } - }, - "fs.realpath": { - "version": "1.0.0", - "bundled": true, - "dev": true, - "optional": true - }, - "gauge": { - "version": "2.7.4", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "aproba": "^1.0.3", - "console-control-strings": "^1.0.0", - "has-unicode": "^2.0.0", - "object-assign": "^4.1.0", - "signal-exit": "^3.0.0", - "string-width": "^1.0.1", - "strip-ansi": "^3.0.1", - "wide-align": "^1.1.0" - } - }, - "glob": { - "version": "7.1.3", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "has-unicode": { - "version": "2.0.1", - "bundled": true, - "dev": true, - "optional": true - }, - "iconv-lite": { - "version": "0.4.24", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "safer-buffer": ">= 2.1.2 < 3" - } - }, - "ignore-walk": { - "version": "3.0.1", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "minimatch": "^3.0.4" - } - }, - "inflight": { - "version": "1.0.6", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "inherits": { - "version": "2.0.3", - "bundled": true, - "dev": true, - "optional": true - }, - "ini": { - "version": "1.3.5", - "bundled": true, - "dev": true, - "optional": true - }, - "is-fullwidth-code-point": { - "version": "1.0.0", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "number-is-nan": "^1.0.0" - } - }, - "isarray": { - "version": "1.0.0", - "bundled": true, - "dev": true, - "optional": true - }, - "minimatch": { - "version": "3.0.4", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "brace-expansion": "^1.1.7" - } - }, - "minimist": { - "version": "0.0.8", - "bundled": true, - "dev": true, - "optional": true - }, - "minipass": { - "version": "2.3.5", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "safe-buffer": "^5.1.2", - "yallist": "^3.0.0" - } - }, - "minizlib": { - "version": "1.2.1", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "minipass": "^2.2.1" - } - }, - "mkdirp": { - "version": "0.5.1", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "minimist": "0.0.8" - } - }, - "ms": { - "version": "2.0.0", - "bundled": true, - "dev": true, - "optional": true - }, - "needle": { - "version": "2.2.4", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "debug": "^2.1.2", - "iconv-lite": "^0.4.4", - "sax": "^1.2.4" - } - }, - "node-pre-gyp": { - "version": "0.10.3", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "detect-libc": "^1.0.2", - "mkdirp": "^0.5.1", - "needle": "^2.2.1", - "nopt": "^4.0.1", - "npm-packlist": "^1.1.6", - "npmlog": "^4.0.2", - "rc": "^1.2.7", - "rimraf": "^2.6.1", - "semver": "^5.3.0", - "tar": "^4" - } - }, - "nopt": { - "version": "4.0.1", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "abbrev": "1", - "osenv": "^0.1.4" - } - }, - "npm-bundled": { - "version": "1.0.5", - "bundled": true, - "dev": true, - "optional": true - }, - "npm-packlist": { - "version": "1.2.0", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "ignore-walk": "^3.0.1", - "npm-bundled": "^1.0.1" - } - }, - "npmlog": { - "version": "4.1.2", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "are-we-there-yet": "~1.1.2", - "console-control-strings": "~1.1.0", - "gauge": "~2.7.3", - "set-blocking": "~2.0.0" - } - }, - "number-is-nan": { - "version": "1.0.1", - "bundled": true, - "dev": true, - "optional": true - }, - "object-assign": { - "version": "4.1.1", - "bundled": true, - "dev": true, - "optional": true - }, - "once": { - "version": "1.4.0", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "wrappy": "1" - } - }, - "os-homedir": { - "version": "1.0.2", - "bundled": true, - "dev": true, - "optional": true - }, - "os-tmpdir": { - "version": "1.0.2", - "bundled": true, - "dev": true, - "optional": true - }, - "osenv": { - "version": "0.1.5", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "os-homedir": "^1.0.0", - "os-tmpdir": "^1.0.0" - } - }, - "path-is-absolute": { - "version": "1.0.1", - "bundled": true, - "dev": true, - "optional": true - }, - "process-nextick-args": { - "version": "2.0.0", - "bundled": true, - "dev": true, - "optional": true - }, - "rc": { - "version": "1.2.8", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "deep-extend": "^0.6.0", - "ini": "~1.3.0", - "minimist": "^1.2.0", - "strip-json-comments": "~2.0.1" - }, - "dependencies": { - "minimist": { - "version": "1.2.0", - "bundled": true, - "dev": true, - "optional": true - } - } - }, - "readable-stream": { - "version": "2.3.6", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "rimraf": { - "version": "2.6.3", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "glob": "^7.1.3" - } - }, - "safe-buffer": { - "version": "5.1.2", - "bundled": true, - "dev": true, - "optional": true - }, - "safer-buffer": { - "version": "2.1.2", - "bundled": true, - "dev": true, - "optional": true - }, - "sax": { - "version": "1.2.4", - "bundled": true, - "dev": true, - "optional": true - }, - "semver": { - "version": "5.6.0", - "bundled": true, - "dev": true, - "optional": true - }, - "set-blocking": { - "version": "2.0.0", - "bundled": true, - "dev": true, - "optional": true - }, - "signal-exit": { - "version": "3.0.2", - "bundled": true, - "dev": true, - "optional": true - }, - "string-width": { - "version": "1.0.2", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "code-point-at": "^1.0.0", - "is-fullwidth-code-point": "^1.0.0", - "strip-ansi": "^3.0.0" - } - }, - "string_decoder": { - "version": "1.1.1", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "safe-buffer": "~5.1.0" - } - }, - "strip-ansi": { - "version": "3.0.1", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "ansi-regex": "^2.0.0" - } - }, - "strip-json-comments": { - "version": "2.0.1", - "bundled": true, - "dev": true, - "optional": true - }, - "tar": { - "version": "4.4.8", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "chownr": "^1.1.1", - "fs-minipass": "^1.2.5", - "minipass": "^2.3.4", - "minizlib": "^1.1.1", - "mkdirp": "^0.5.0", - "safe-buffer": "^5.1.2", - "yallist": "^3.0.2" - } - }, - "util-deprecate": { - "version": "1.0.2", - "bundled": true, - "dev": true, - "optional": true - }, - "wide-align": { - "version": "1.1.3", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "string-width": "^1.0.2 || 2" - } - }, - "wrappy": { - "version": "1.0.2", - "bundled": true, - "dev": true, - "optional": true - }, - "yallist": { - "version": "3.0.3", - "bundled": true, - "dev": true, - "optional": true - } + "@types/babel__traverse": "^7.0.6" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/babel-plugin-polyfill-corejs2": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.3.tgz", + "integrity": "sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.17.7", + "@babel/helper-define-polyfill-provider": "^0.3.3", + "semver": "^6.1.1" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-plugin-polyfill-corejs3": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.6.0.tgz", + "integrity": "sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==", + "dev": true, + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.3.3", + "core-js-compat": "^3.25.1" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-plugin-polyfill-regenerator": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.1.tgz", + "integrity": "sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==", + "dev": true, + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.3.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-preset-jest": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-24.9.0.tgz", + "integrity": "sha512-izTUuhE4TMfTRPF92fFwD2QfdXaZW08qvWTFCI51V8rW5x00UuPgc3ajRoWofXOuxjfcOM5zzSYsQS3H8KGCAg==", + "dev": true, + "dependencies": { + "@babel/plugin-syntax-object-rest-spread": "^7.0.0", + "babel-plugin-jest-hoist": "^24.9.0" + }, + "engines": { + "node": ">= 6" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "node_modules/base": { + "version": "0.11.2", + "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", + "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", + "dev": true, + "dependencies": { + "cache-base": "^1.0.1", + "class-utils": "^0.3.5", + "component-emitter": "^1.2.1", + "define-property": "^1.0.0", + "isobject": "^3.0.1", + "mixin-deep": "^1.2.0", + "pascalcase": "^0.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/base/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/batch": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", + "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==", + "dev": true + }, + "node_modules/bcrypt-pbkdf": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", + "integrity": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==", + "dev": true, + "dependencies": { + "tweetnacl": "^0.14.3" + } + }, + "node_modules/big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "dev": true, + "optional": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/bindings": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", + "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", + "dev": true, + "optional": true, + "dependencies": { + "file-uri-to-path": "1.0.0" + } + }, + "node_modules/bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", + "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==", + "dev": true + }, + "node_modules/bn.js": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz", + "integrity": "sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==", + "dev": true + }, + "node_modules/body-parser": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.0.tgz", + "integrity": "sha512-DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg==", + "dev": true, + "dependencies": { + "bytes": "3.1.2", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.10.3", + "raw-body": "2.5.1", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/body-parser/node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/body-parser/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/body-parser/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/body-parser/node_modules/qs": { + "version": "6.10.3", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.3.tgz", + "integrity": "sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==", + "dev": true, + "dependencies": { + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/bonjour": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/bonjour/-/bonjour-3.5.0.tgz", + "integrity": "sha512-RaVTblr+OnEli0r/ud8InrU7D+G0y6aJhlxaLa6Pwty4+xoxboF1BsUI45tujvRpbj9dQVoglChqonGAsjEBYg==", + "dev": true, + "dependencies": { + "array-flatten": "^2.1.0", + "deep-equal": "^1.0.1", + "dns-equal": "^1.0.0", + "dns-txt": "^2.0.2", + "multicast-dns": "^6.0.1", + "multicast-dns-service-types": "^1.1.0" + } + }, + "node_modules/boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", + "dev": true + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "optional": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/brorand": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", + "integrity": "sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==", + "dev": true + }, + "node_modules/browser-process-hrtime": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz", + "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==", + "dev": true + }, + "node_modules/browser-resolve": { + "version": "1.11.3", + "resolved": "https://registry.npmjs.org/browser-resolve/-/browser-resolve-1.11.3.tgz", + "integrity": "sha512-exDi1BYWB/6raKHmDTCicQfTkqwN5fioMFV4j8BsfMU4R2DK/QfZfK7kOVkmWCNANf0snkBzqGqAJBao9gZMdQ==", + "dev": true, + "dependencies": { + "resolve": "1.1.7" + } + }, + "node_modules/browser-resolve/node_modules/resolve": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz", + "integrity": "sha512-9znBF0vBcaSN3W2j7wKvdERPwqTxSpCq+if5C0WoTCyV9n24rua28jeuQ2pL/HOf+yUe/Mef+H/5p60K0Id3bg==", + "dev": true + }, + "node_modules/browserify-aes": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", + "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", + "dev": true, + "dependencies": { + "buffer-xor": "^1.0.3", + "cipher-base": "^1.0.0", + "create-hash": "^1.1.0", + "evp_bytestokey": "^1.0.3", + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "node_modules/browserify-cipher": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", + "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", + "dev": true, + "dependencies": { + "browserify-aes": "^1.0.4", + "browserify-des": "^1.0.0", + "evp_bytestokey": "^1.0.0" + } + }, + "node_modules/browserify-des": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", + "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", + "dev": true, + "dependencies": { + "cipher-base": "^1.0.1", + "des.js": "^1.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "node_modules/browserify-rsa": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.0.tgz", + "integrity": "sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==", + "dev": true, + "dependencies": { + "bn.js": "^5.0.0", + "randombytes": "^2.0.1" + } + }, + "node_modules/browserify-sign": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.1.tgz", + "integrity": "sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==", + "dev": true, + "dependencies": { + "bn.js": "^5.1.1", + "browserify-rsa": "^4.0.1", + "create-hash": "^1.2.0", + "create-hmac": "^1.1.7", + "elliptic": "^6.5.3", + "inherits": "^2.0.4", + "parse-asn1": "^5.1.5", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + } + }, + "node_modules/browserify-sign/node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/browserify-zlib": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz", + "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==", + "dev": true, + "dependencies": { + "pako": "~1.0.5" + } + }, + "node_modules/browserify-zlib/node_modules/pako": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", + "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==", + "dev": true + }, + "node_modules/browserslist": { + "version": "4.21.4", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.4.tgz", + "integrity": "sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + } + ], + "dependencies": { + "caniuse-lite": "^1.0.30001400", + "electron-to-chromium": "^1.4.251", + "node-releases": "^2.0.6", + "update-browserslist-db": "^1.0.9" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/bser": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", + "dev": true, + "dependencies": { + "node-int64": "^0.4.0" + } + }, + "node_modules/buffer": { + "version": "4.9.2", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz", + "integrity": "sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==", + "dev": true, + "dependencies": { + "base64-js": "^1.0.2", + "ieee754": "^1.1.4", + "isarray": "^1.0.0" + } + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true + }, + "node_modules/buffer-indexof": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/buffer-indexof/-/buffer-indexof-1.1.1.tgz", + "integrity": "sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==", + "dev": true + }, + "node_modules/buffer-xor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", + "integrity": "sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==", + "dev": true + }, + "node_modules/builtin-status-codes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", + "integrity": "sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==", + "dev": true + }, + "node_modules/bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/cacache": { + "version": "12.0.4", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-12.0.4.tgz", + "integrity": "sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ==", + "dev": true, + "dependencies": { + "bluebird": "^3.5.5", + "chownr": "^1.1.1", + "figgy-pudding": "^3.5.1", + "glob": "^7.1.4", + "graceful-fs": "^4.1.15", + "infer-owner": "^1.0.3", + "lru-cache": "^5.1.1", + "mississippi": "^3.0.0", + "mkdirp": "^0.5.1", + "move-concurrently": "^1.0.1", + "promise-inflight": "^1.0.1", + "rimraf": "^2.6.3", + "ssri": "^6.0.1", + "unique-filename": "^1.1.1", + "y18n": "^4.0.0" + } + }, + "node_modules/cacache/node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/cacache/node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true + }, + "node_modules/cache-base": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", + "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", + "dev": true, + "dependencies": { + "collection-visit": "^1.0.0", + "component-emitter": "^1.2.1", + "get-value": "^2.0.6", + "has-value": "^1.0.0", + "isobject": "^3.0.1", + "set-value": "^2.0.0", + "to-object-path": "^0.3.0", + "union-value": "^1.0.0", + "unset-value": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/camel-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", + "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", + "dependencies": { + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" + } + }, + "node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001412", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001412.tgz", + "integrity": "sha512-+TeEIee1gS5bYOiuf+PS/kp2mrXic37Hl66VY6EAfxasIk5fELTktK2oOezYed12H8w7jt3s512PpulQidPjwA==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + } + ] + }, + "node_modules/capture-exit": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/capture-exit/-/capture-exit-2.0.0.tgz", + "integrity": "sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==", + "dev": true, + "dependencies": { + "rsvp": "^4.8.4" + }, + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/caseless": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", + "integrity": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==", + "dev": true + }, + "node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/cheerio": { + "version": "0.22.0", + "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-0.22.0.tgz", + "integrity": "sha512-8/MzidM6G/TgRelkzDG13y3Y9LxBjCb+8yOEZ9+wwq5gVF2w2pV0wmHvjfT0RvuxGyR7UEuK36r+yYMbT4uKgA==", + "dev": true, + "dependencies": { + "css-select": "~1.2.0", + "dom-serializer": "~0.1.0", + "entities": "~1.1.1", + "htmlparser2": "^3.9.1", + "lodash.assignin": "^4.0.9", + "lodash.bind": "^4.1.4", + "lodash.defaults": "^4.0.1", + "lodash.filter": "^4.4.0", + "lodash.flatten": "^4.2.0", + "lodash.foreach": "^4.3.0", + "lodash.map": "^4.4.0", + "lodash.merge": "^4.4.0", + "lodash.pick": "^4.2.1", + "lodash.reduce": "^4.4.0", + "lodash.reject": "^4.4.0", + "lodash.some": "^4.4.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], + "optional": true, + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/chownr": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", + "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", + "dev": true + }, + "node_modules/chrome-trace-event": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", + "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", + "dev": true, + "engines": { + "node": ">=6.0" + } + }, + "node_modules/ci-info": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", + "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==", + "dev": true + }, + "node_modules/cipher-base": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", + "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", + "dev": true, + "dependencies": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "node_modules/class-utils": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", + "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", + "dev": true, + "dependencies": { + "arr-union": "^3.1.0", + "define-property": "^0.2.5", + "isobject": "^3.0.0", + "static-extend": "^0.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dev": true, + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/is-accessor-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/is-data-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cliui": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", + "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", + "dev": true, + "dependencies": { + "string-width": "^3.1.0", + "strip-ansi": "^5.2.0", + "wrap-ansi": "^5.1.0" + } + }, + "node_modules/co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", + "dev": true, + "engines": { + "iojs": ">= 1.0.0", + "node": ">= 0.12.0" + } + }, + "node_modules/collection-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", + "integrity": "sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==", + "dev": true, + "dependencies": { + "map-visit": "^1.0.0", + "object-visit": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dev": true, + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", + "dev": true + }, + "node_modules/component-emitter": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", + "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==", + "dev": true + }, + "node_modules/compressible": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "dev": true, + "dependencies": { + "mime-db": ">= 1.43.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/compression": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", + "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "dev": true, + "dependencies": { + "accepts": "~1.3.5", + "bytes": "3.0.0", + "compressible": "~2.0.16", + "debug": "2.6.9", + "on-headers": "~1.0.2", + "safe-buffer": "5.1.2", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/compression/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/compression/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true + }, + "node_modules/concat-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "dev": true, + "engines": [ + "node >= 0.8" + ], + "dependencies": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + } + }, + "node_modules/concat-stream/node_modules/readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/concat-stream/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/connect-history-api-fallback": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz", + "integrity": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==", + "dev": true, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/console-browserify": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz", + "integrity": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==", + "dev": true + }, + "node_modules/constants-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", + "integrity": "sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==", + "dev": true + }, + "node_modules/content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "dev": true, + "dependencies": { + "safe-buffer": "5.2.1" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/content-disposition/node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/content-type": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", + "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/convert-source-map": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz", + "integrity": "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.1.1" + } + }, + "node_modules/cookie": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", + "dev": true + }, + "node_modules/copy-concurrently": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz", + "integrity": "sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==", + "dev": true, + "dependencies": { + "aproba": "^1.1.1", + "fs-write-stream-atomic": "^1.0.8", + "iferr": "^0.1.5", + "mkdirp": "^0.5.1", + "rimraf": "^2.5.4", + "run-queue": "^1.0.0" + } + }, + "node_modules/copy-descriptor": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", + "integrity": "sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/core-js-compat": { + "version": "3.25.3", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.25.3.tgz", + "integrity": "sha512-xVtYpJQ5grszDHEUU9O7XbjjcZ0ccX3LgQsyqSvTnjX97ZqEgn9F5srmrwwwMtbKzDllyFPL+O+2OFMl1lU4TQ==", + "dev": true, + "dependencies": { + "browserslist": "^4.21.4" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==", + "dev": true + }, + "node_modules/create-ecdh": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz", + "integrity": "sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==", + "dev": true, + "dependencies": { + "bn.js": "^4.1.0", + "elliptic": "^6.5.3" + } + }, + "node_modules/create-ecdh/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "dev": true + }, + "node_modules/create-hash": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", + "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", + "dev": true, + "dependencies": { + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" + } + }, + "node_modules/create-hmac": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", + "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", + "dev": true, + "dependencies": { + "cipher-base": "^1.0.3", + "create-hash": "^1.1.0", + "inherits": "^2.0.1", + "ripemd160": "^2.0.0", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + } + }, + "node_modules/cross-env": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/cross-env/-/cross-env-3.2.4.tgz", + "integrity": "sha512-T8AFEAiuJ0w53ou6rnu3Fipaiu1W6ZO9GYfd33uxe1kAIiXM0fD8QnIm7orcJBOt7WQC5Ply63E7WZW/jSM+FA==", + "dev": true, + "dependencies": { + "cross-spawn": "^5.1.0", + "is-windows": "^1.0.0" + }, + "bin": { + "cross-env": "dist/bin/cross-env.js" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/cross-spawn": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", + "integrity": "sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==", + "dev": true, + "dependencies": { + "lru-cache": "^4.0.1", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "node_modules/crypto-browserify": { + "version": "3.12.0", + "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz", + "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==", + "dev": true, + "dependencies": { + "browserify-cipher": "^1.0.0", + "browserify-sign": "^4.0.0", + "create-ecdh": "^4.0.0", + "create-hash": "^1.1.0", + "create-hmac": "^1.1.0", + "diffie-hellman": "^5.0.0", + "inherits": "^2.0.1", + "pbkdf2": "^3.0.3", + "public-encrypt": "^4.0.0", + "randombytes": "^2.0.0", + "randomfill": "^1.0.3" + }, + "engines": { + "node": "*" + } + }, + "node_modules/css-loader": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-2.1.1.tgz", + "integrity": "sha512-OcKJU/lt232vl1P9EEDamhoO9iKY3tIjY5GU+XDLblAykTdgs6Ux9P1hTHve8nFKy5KPpOXOsVI/hIwi3841+w==", + "dev": true, + "dependencies": { + "camelcase": "^5.2.0", + "icss-utils": "^4.1.0", + "loader-utils": "^1.2.3", + "normalize-path": "^3.0.0", + "postcss": "^7.0.14", + "postcss-modules-extract-imports": "^2.0.0", + "postcss-modules-local-by-default": "^2.0.6", + "postcss-modules-scope": "^2.1.0", + "postcss-modules-values": "^2.0.0", + "postcss-value-parser": "^3.3.0", + "schema-utils": "^1.0.0" + }, + "engines": { + "node": ">= 6.9.0" + }, + "peerDependencies": { + "webpack": "^4.0.0" + } + }, + "node_modules/css-select": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-1.2.0.tgz", + "integrity": "sha512-dUQOBoqdR7QwV90WysXPLXG5LO7nhYBgiWVfxF80DKPF8zx1t/pUd2FYy73emg3zrjtM6dzmYgbHKfV2rxiHQA==", + "dev": true, + "dependencies": { + "boolbase": "~1.0.0", + "css-what": "2.1", + "domutils": "1.5.1", + "nth-check": "~1.0.1" + } + }, + "node_modules/css-what": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-2.1.3.tgz", + "integrity": "sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg==", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "dev": true, + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/cssom": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", + "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", + "dev": true + }, + "node_modules/cssstyle": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-1.4.0.tgz", + "integrity": "sha512-GBrLZYZ4X4x6/QEoBnIrqb8B/f5l4+8me2dkom/j1Gtbxy0kBv6OGzKuAsGM75bkGwGAFkt56Iwg28S3XTZgSA==", + "dev": true, + "dependencies": { + "cssom": "0.3.x" + } + }, + "node_modules/cyclist": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cyclist/-/cyclist-1.0.1.tgz", + "integrity": "sha512-NJGVKPS81XejHcLhaLJS7plab0fK3slPh11mESeeDq2W4ZI5kUKK/LRRdVDvjJseojbPB7ZwjnyOybg3Igea/A==", + "dev": true + }, + "node_modules/dashdash": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", + "integrity": "sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==", + "dev": true, + "dependencies": { + "assert-plus": "^1.0.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/data-urls": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-1.1.0.tgz", + "integrity": "sha512-YTWYI9se1P55u58gL5GkQHW4P6VJBJ5iBT+B5a7i2Tjadhv52paJG0qHX4A0OR6/t52odI64KP2YvFpkDOi3eQ==", + "dev": true, + "dependencies": { + "abab": "^2.0.0", + "whatwg-mimetype": "^2.2.0", + "whatwg-url": "^7.0.0" + } + }, + "node_modules/data-urls/node_modules/whatwg-url": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz", + "integrity": "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==", + "dev": true, + "dependencies": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + } + }, + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/decode-uri-component": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", + "integrity": "sha512-hjf+xovcEn31w/EUYdTXQh/8smFL/dzYjohQGEIgjyNavaJfBY2p5F527Bo1VPATxv0VYTUC2bOcXvqFwk78Og==", + "dev": true, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/deep-equal": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.1.tgz", + "integrity": "sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==", + "dev": true, + "dependencies": { + "is-arguments": "^1.0.4", + "is-date-object": "^1.0.1", + "is-regex": "^1.0.4", + "object-is": "^1.0.1", + "object-keys": "^1.1.1", + "regexp.prototype.flags": "^1.2.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true + }, + "node_modules/default-gateway": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-4.2.0.tgz", + "integrity": "sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==", + "dev": true, + "dependencies": { + "execa": "^1.0.0", + "ip-regex": "^2.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/define-properties": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz", + "integrity": "sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==", + "dev": true, + "dependencies": { + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/del": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/del/-/del-4.1.1.tgz", + "integrity": "sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==", + "dev": true, + "dependencies": { + "@types/glob": "^7.1.1", + "globby": "^6.1.0", + "is-path-cwd": "^2.0.0", + "is-path-in-cwd": "^2.0.0", + "p-map": "^2.0.0", + "pify": "^4.0.1", + "rimraf": "^2.6.3" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/des.js": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.1.tgz", + "integrity": "sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==", + "dev": true, + "dependencies": { + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0" + } + }, + "node_modules/destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "dev": true, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/detect-file": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz", + "integrity": "sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/detect-newline": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-2.1.0.tgz", + "integrity": "sha512-CwffZFvlJffUg9zZA0uqrjQayUTC8ob94pnr5sFwaVv3IOmkfUHcWH+jXaQK3askE51Cqe8/9Ql/0uXNwqZ8Zg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/detect-node": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", + "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", + "dev": true + }, + "node_modules/diff-sequences": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-24.9.0.tgz", + "integrity": "sha512-Dj6Wk3tWyTE+Fo1rW8v0Xhwk80um6yFYKbuAxc9c3EZxIHFDYwbi34Uk42u1CdnIiVorvt4RmlSDjIPyzGC2ew==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/diffie-hellman": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", + "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", + "dev": true, + "dependencies": { + "bn.js": "^4.1.0", + "miller-rabin": "^4.0.0", + "randombytes": "^2.0.0" + } + }, + "node_modules/diffie-hellman/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "dev": true + }, + "node_modules/dns-equal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", + "integrity": "sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==", + "dev": true + }, + "node_modules/dns-packet": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.4.tgz", + "integrity": "sha512-BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA==", + "dev": true, + "dependencies": { + "ip": "^1.1.0", + "safe-buffer": "^5.0.1" + } + }, + "node_modules/dns-txt": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/dns-txt/-/dns-txt-2.0.2.tgz", + "integrity": "sha512-Ix5PrWjphuSoUXV/Zv5gaFHjnaJtb02F2+Si3Ht9dyJ87+Z/lMmy+dpNHtTGraNK958ndXq2i+GLkWsWHcKaBQ==", + "dev": true, + "dependencies": { + "buffer-indexof": "^1.0.0" + } + }, + "node_modules/dom-serializer": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.1.tgz", + "integrity": "sha512-l0IU0pPzLWSHBcieZbpOKgkIn3ts3vAh7ZuFyXNwJxJXk/c4Gwj9xaTJwIDVQCXawWD0qb3IzMGH5rglQaO0XA==", + "dev": true, + "dependencies": { + "domelementtype": "^1.3.0", + "entities": "^1.1.1" + } + }, + "node_modules/domain-browser": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz", + "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==", + "dev": true, + "engines": { + "node": ">=0.4", + "npm": ">=1.2" + } + }, + "node_modules/domelementtype": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", + "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==", + "dev": true + }, + "node_modules/domexception": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/domexception/-/domexception-1.0.1.tgz", + "integrity": "sha512-raigMkn7CJNNo6Ihro1fzG7wr3fHuYVytzquZKX5n0yizGsTcYgzdIUwj1X9pK0VvjeihV+XiclP+DjwbsSKug==", + "dev": true, + "dependencies": { + "webidl-conversions": "^4.0.2" + } + }, + "node_modules/domhandler": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz", + "integrity": "sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==", + "dev": true, + "dependencies": { + "domelementtype": "1" + } + }, + "node_modules/domutils": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz", + "integrity": "sha512-gSu5Oi/I+3wDENBsOWBiRK1eoGxcywYSqg3rR960/+EfY0CF4EX1VPkgHOZ3WiS/Jg2DtliF6BhWcHlfpYUcGw==", + "dev": true, + "dependencies": { + "dom-serializer": "0", + "domelementtype": "1" + } + }, + "node_modules/duplexify": { + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz", + "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==", + "dev": true, + "dependencies": { + "end-of-stream": "^1.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.0.0", + "stream-shift": "^1.0.0" + } + }, + "node_modules/duplexify/node_modules/readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/duplexify/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/ecc-jsbn": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", + "integrity": "sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==", + "dev": true, + "dependencies": { + "jsbn": "~0.1.0", + "safer-buffer": "^2.1.0" + } + }, + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", + "dev": true + }, + "node_modules/electron-to-chromium": { + "version": "1.4.265", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.265.tgz", + "integrity": "sha512-38KaYBNs0oCzWCpr6j7fY/W9vF0vSp4tKFIshQTgdZMhUpkxgotkQgjJP6iGMdmlsgMs3i0/Hkko4UXLTrkYVQ==", + "dev": true + }, + "node_modules/elliptic": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz", + "integrity": "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==", + "dev": true, + "dependencies": { + "bn.js": "^4.11.9", + "brorand": "^1.1.0", + "hash.js": "^1.0.0", + "hmac-drbg": "^1.0.1", + "inherits": "^2.0.4", + "minimalistic-assert": "^1.0.1", + "minimalistic-crypto-utils": "^1.0.1" + } + }, + "node_modules/elliptic/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "dev": true + }, + "node_modules/emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", + "dev": true + }, + "node_modules/emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dev": true, + "dependencies": { + "once": "^1.4.0" + } + }, + "node_modules/enhanced-resolve": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.5.0.tgz", + "integrity": "sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.2", + "memory-fs": "^0.5.0", + "tapable": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/enhanced-resolve/node_modules/memory-fs": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.5.0.tgz", + "integrity": "sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==", + "dev": true, + "dependencies": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + }, + "engines": { + "node": ">=4.3.0 <5.0.0 || >=5.10" + } + }, + "node_modules/enhanced-resolve/node_modules/readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/enhanced-resolve/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/entities": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz", + "integrity": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==", + "dev": true + }, + "node_modules/errno": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", + "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", + "dev": true, + "dependencies": { + "prr": "~1.0.1" + }, + "bin": { + "errno": "cli.js" + } + }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dev": true, + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/es-abstract": { + "version": "1.20.3", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.20.3.tgz", + "integrity": "sha512-AyrnaKVpMzljIdwjzrj+LxGmj8ik2LckwXacHqrJJ/jxz6dDDBcZ7I7nlHM0FvEW8MfbWJwOd+yT2XzYW49Frw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "function.prototype.name": "^1.1.5", + "get-intrinsic": "^1.1.3", + "get-symbol-description": "^1.0.0", + "has": "^1.0.3", + "has-property-descriptors": "^1.0.0", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.3", + "is-callable": "^1.2.6", + "is-negative-zero": "^2.0.2", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.2", + "is-string": "^1.0.7", + "is-weakref": "^1.0.2", + "object-inspect": "^1.12.2", + "object-keys": "^1.1.1", + "object.assign": "^4.1.4", + "regexp.prototype.flags": "^1.4.3", + "safe-regex-test": "^1.0.0", + "string.prototype.trimend": "^1.0.5", + "string.prototype.trimstart": "^1.0.5", + "unbox-primitive": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-array-method-boxes-properly": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz", + "integrity": "sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==", + "dev": true + }, + "node_modules/es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "dev": true, + "dependencies": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", + "dev": true + }, + "node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/escodegen": { + "version": "1.14.3", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.14.3.tgz", + "integrity": "sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==", + "dev": true, + "dependencies": { + "esprima": "^4.0.1", + "estraverse": "^4.2.0", + "esutils": "^2.0.2", + "optionator": "^0.8.1" + }, + "bin": { + "escodegen": "bin/escodegen.js", + "esgenerate": "bin/esgenerate.js" + }, + "engines": { + "node": ">=4.0" + }, + "optionalDependencies": { + "source-map": "~0.6.1" + } + }, + "node_modules/eslint-scope": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.3.tgz", + "integrity": "sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==", + "dev": true, + "dependencies": { + "esrecurse": "^4.1.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true, + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esrecurse/node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/eventemitter3": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", + "dev": true + }, + "node_modules/events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "dev": true, + "engines": { + "node": ">=0.8.x" + } + }, + "node_modules/eventsource": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/eventsource/-/eventsource-2.0.2.tgz", + "integrity": "sha512-IzUmBGPR3+oUG9dUeXynyNmf91/3zUSJg1lCktzKw47OXuhco54U3r9B7O4XX+Rb1Itm9OZ2b0RkTs10bICOxA==", + "dev": true, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/evp_bytestokey": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", + "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", + "dev": true, + "dependencies": { + "md5.js": "^1.3.4", + "safe-buffer": "^5.1.1" + } + }, + "node_modules/exec-sh": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/exec-sh/-/exec-sh-0.3.6.tgz", + "integrity": "sha512-nQn+hI3yp+oD0huYhKwvYI32+JFeq+XkNcD1GAo3Y/MjxsfVGmrrzrnzjWiNY6f+pUCP440fThsFh5gZrRAU/w==", + "dev": true + }, + "node_modules/execa": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "dev": true, + "dependencies": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/execa/node_modules/cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "dev": true, + "dependencies": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "engines": { + "node": ">=4.8" + } + }, + "node_modules/execa/node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/exit": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/expand-brackets": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==", + "dev": true, + "dependencies": { + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/expand-brackets/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dev": true, + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/is-accessor-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/is-data-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/expand-tilde": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz", + "integrity": "sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==", + "dev": true, + "dependencies": { + "homedir-polyfill": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expect": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/expect/-/expect-24.9.0.tgz", + "integrity": "sha512-wvVAx8XIol3Z5m9zvZXiyZOQ+sRJqNTIm6sGjdWlaZIeupQGO3WbYI+15D/AmEwZywL6wtJkbAbJtzkOfBuR0Q==", + "dev": true, + "dependencies": { + "@jest/types": "^24.9.0", + "ansi-styles": "^3.2.0", + "jest-get-type": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-regex-util": "^24.9.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/express": { + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/express/-/express-4.18.1.tgz", + "integrity": "sha512-zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q==", + "dev": true, + "dependencies": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.0", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.5.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.2.0", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.7", + "qs": "6.10.3", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.18.0", + "serve-static": "1.15.0", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/express/node_modules/array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", + "dev": true + }, + "node_modules/express/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/express/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/express/node_modules/qs": { + "version": "6.10.3", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.3.tgz", + "integrity": "sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==", + "dev": true, + "dependencies": { + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/express/node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", + "dev": true + }, + "node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "dev": true, + "dependencies": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extsprintf": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", + "integrity": "sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==", + "dev": true, + "engines": [ + "node >=0.6.0" + ] + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true + }, + "node_modules/faye-websocket": { + "version": "0.11.4", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", + "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", + "dev": true, + "dependencies": { + "websocket-driver": ">=0.5.1" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/fb-watchman": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", + "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", + "dev": true, + "dependencies": { + "bser": "2.1.1" + } + }, + "node_modules/figgy-pudding": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/figgy-pudding/-/figgy-pudding-3.5.2.tgz", + "integrity": "sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw==", + "dev": true + }, + "node_modules/file-uri-to-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", + "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", + "dev": true, + "optional": true + }, + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "optional": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/finalhandler": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", + "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "dev": true, + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/finalhandler/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/finalhandler/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/find-cache-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz", + "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==", + "dev": true, + "dependencies": { + "commondir": "^1.0.1", + "make-dir": "^2.0.0", + "pkg-dir": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, + "dependencies": { + "locate-path": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/findup-sync": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-3.0.0.tgz", + "integrity": "sha512-YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg==", + "dev": true, + "dependencies": { + "detect-file": "^1.0.0", + "is-glob": "^4.0.0", + "micromatch": "^3.0.4", + "resolve-dir": "^1.0.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/flush-write-stream": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz", + "integrity": "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==", + "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "readable-stream": "^2.3.6" + } + }, + "node_modules/flush-write-stream/node_modules/readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/flush-write-stream/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/follow-redirects": { + "version": "1.15.2", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz", + "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "dev": true, + "dependencies": { + "is-callable": "^1.1.3" + } + }, + "node_modules/for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/forever-agent": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", + "integrity": "sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/form-data": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", + "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", + "dev": true, + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 0.12" + } + }, + "node_modules/forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", + "integrity": "sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==", + "dev": true, + "dependencies": { + "map-cache": "^0.2.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/from2": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", + "integrity": "sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==", + "dev": true, + "dependencies": { + "inherits": "^2.0.1", + "readable-stream": "^2.0.0" + } + }, + "node_modules/from2/node_modules/readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/from2/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/fs-readdir-recursive": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz", + "integrity": "sha512-GNanXlVr2pf02+sPN40XN8HG+ePaNcvM0q5mZBd668Obwb0yD5GiUbZOFgwn8kGMY6I3mdyDJzieUy3PTYyTRA==", + "dev": true + }, + "node_modules/fs-write-stream-atomic": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz", + "integrity": "sha512-gehEzmPn2nAwr39eay+x3X34Ra+M2QlVUTLhkXPjWdeO8RF9kszk116avgBJM3ZyNHgHXBNx+VmPaFC36k0PzA==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.2", + "iferr": "^0.1.5", + "imurmurhash": "^0.1.4", + "readable-stream": "1 || 2" + } + }, + "node_modules/fs-write-stream-atomic/node_modules/readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/fs-write-stream-atomic/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true + }, + "node_modules/fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/fstream": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/fstream/-/fstream-1.0.12.tgz", + "integrity": "sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.2", + "inherits": "~2.0.0", + "mkdirp": ">=0.5 0", + "rimraf": "2" + }, + "engines": { + "node": ">=0.6" + } + }, + "node_modules/function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "dev": true + }, + "node_modules/function.prototype.name": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", + "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.0", + "functions-have-names": "^1.2.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true, + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-intrinsic": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz", + "integrity": "sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "dev": true, + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/get-symbol-description": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", + "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-value": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", + "integrity": "sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/getpass": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", + "integrity": "sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==", + "dev": true, + "dependencies": { + "assert-plus": "^1.0.0" + } + }, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "optional": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/global-modules": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", + "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", + "dev": true, + "dependencies": { + "global-prefix": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/global-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", + "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", + "dev": true, + "dependencies": { + "ini": "^1.3.5", + "kind-of": "^6.0.2", + "which": "^1.3.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/globby": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz", + "integrity": "sha512-KVbFv2TQtbzCoxAnfD6JcHZTYCzyliEaaeM/gH8qQdkKr5s0OP9scEgvdcngyk7AVdY6YVW/TJHd+lQ/Df3Daw==", + "dev": true, + "dependencies": { + "array-union": "^1.0.1", + "glob": "^7.0.3", + "object-assign": "^4.0.1", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/globby/node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.10", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", + "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", + "dev": true + }, + "node_modules/growly": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/growly/-/growly-1.3.0.tgz", + "integrity": "sha512-+xGQY0YyAWCnqy7Cd++hc2JqMYzlm0dG30Jd0beaA64sROr8C4nt8Yc9V5Ro3avlSUDTN0ulqP/VBKi1/lLygw==", + "dev": true + }, + "node_modules/handle-thing": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", + "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==", + "dev": true + }, + "node_modules/har-schema": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", + "integrity": "sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/har-validator": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", + "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", + "deprecated": "this library is no longer supported", + "dev": true, + "dependencies": { + "ajv": "^6.12.3", + "har-schema": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/has-bigints": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", + "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.1.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "dev": true, + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", + "integrity": "sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==", + "dev": true, + "dependencies": { + "get-value": "^2.0.6", + "has-values": "^1.0.0", + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", + "integrity": "sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==", + "dev": true, + "dependencies": { + "is-number": "^3.0.0", + "kind-of": "^4.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values/node_modules/kind-of": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", + "integrity": "sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/hash-base": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz", + "integrity": "sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==", + "dev": true, + "dependencies": { + "inherits": "^2.0.4", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/hash-base/node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/hash.js": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", + "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", + "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "minimalistic-assert": "^1.0.1" + } + }, + "node_modules/hmac-drbg": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", + "integrity": "sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==", + "dev": true, + "dependencies": { + "hash.js": "^1.0.3", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.1" + } + }, + "node_modules/homedir-polyfill": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz", + "integrity": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==", + "dev": true, + "dependencies": { + "parse-passwd": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "dev": true + }, + "node_modules/hpack.js": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", + "integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==", + "dev": true, + "dependencies": { + "inherits": "^2.0.1", + "obuf": "^1.0.0", + "readable-stream": "^2.0.1", + "wbuf": "^1.1.0" + } + }, + "node_modules/hpack.js/node_modules/readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/hpack.js/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/html-encoding-sniffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz", + "integrity": "sha512-71lZziiDnsuabfdYiUeWdCVyKuqwWi23L8YeIgV9jSSZHCtb6wB1BKWooH7L3tn4/FuZJMVWyNaIDr4RGmaSYw==", + "dev": true, + "dependencies": { + "whatwg-encoding": "^1.0.1" + } + }, + "node_modules/html-entities": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-1.4.0.tgz", + "integrity": "sha512-8nxjcBcd8wovbeKx7h3wTji4e6+rhaVuPNpMqwWgnHh+N9ToqsCs6XztWRBPQ+UtzsoMAdKZtUENoVzU/EMtZA==", + "dev": true + }, + "node_modules/html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", + "dev": true + }, + "node_modules/htmlparser2": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz", + "integrity": "sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==", + "dev": true, + "dependencies": { + "domelementtype": "^1.3.1", + "domhandler": "^2.3.0", + "domutils": "^1.5.1", + "entities": "^1.1.1", + "inherits": "^2.0.1", + "readable-stream": "^3.1.1" + } + }, + "node_modules/http-deceiver": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", + "integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==", + "dev": true + }, + "node_modules/http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "dev": true, + "dependencies": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/http-parser-js": { + "version": "0.5.8", + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz", + "integrity": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==", + "dev": true + }, + "node_modules/http-proxy": { + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", + "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", + "dev": true, + "dependencies": { + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/http-proxy-middleware": { + "version": "0.19.1", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-0.19.1.tgz", + "integrity": "sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q==", + "dev": true, + "dependencies": { + "http-proxy": "^1.17.0", + "is-glob": "^4.0.0", + "lodash": "^4.17.11", + "micromatch": "^3.1.10" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/http-signature": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", + "integrity": "sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==", + "dev": true, + "dependencies": { + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" + }, + "engines": { + "node": ">=0.8", + "npm": ">=1.3.7" + } + }, + "node_modules/https-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", + "integrity": "sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg==", + "dev": true + }, + "node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dev": true, + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/icss-replace-symbols": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz", + "integrity": "sha512-chIaY3Vh2mh2Q3RGXttaDIzeiPvaVXJ+C4DAh/w3c37SKZ/U6PGMmuicR2EQQp9bKG8zLMCl7I+PtIoOOPp8Gg==", + "dev": true + }, + "node_modules/icss-utils": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-4.1.1.tgz", + "integrity": "sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==", + "dev": true, + "dependencies": { + "postcss": "^7.0.14" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/iferr": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz", + "integrity": "sha512-DUNFN5j7Tln0D+TxzloUjKB+CtVu6myn0JEFak6dG18mNt9YkQ6lzGCdafwofISZ1lLF3xRHJ98VKy9ynkcFaA==", + "dev": true + }, + "node_modules/import-local": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-2.0.0.tgz", + "integrity": "sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==", + "dev": true, + "dependencies": { + "pkg-dir": "^3.0.0", + "resolve-cwd": "^2.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/infer-owner": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz", + "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==", + "dev": true + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dev": true, + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "dev": true + }, + "node_modules/internal-ip": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/internal-ip/-/internal-ip-4.3.0.tgz", + "integrity": "sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==", + "dev": true, + "dependencies": { + "default-gateway": "^4.2.0", + "ipaddr.js": "^1.9.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/internal-slot": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz", + "integrity": "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.1.0", + "has": "^1.0.3", + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/interpret": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", + "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/invariant": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", + "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", + "dev": true, + "dependencies": { + "loose-envify": "^1.0.0" + } + }, + "node_modules/ip": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.8.tgz", + "integrity": "sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==", + "dev": true + }, + "node_modules/ip-regex": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz", + "integrity": "sha512-58yWmlHpp7VYfcdTwMTvwMmqx/Elfxjd9RXTDyMsbL7lLWmhMylLEqiYVLKuLzOZqVgiWXD9MfR62Vv89VRxkw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/is-absolute-url": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-3.0.3.tgz", + "integrity": "sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-arguments": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", + "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "dev": true + }, + "node_modules/is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "dev": true, + "dependencies": { + "has-bigints": "^1.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "optional": true, + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "dev": true + }, + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-ci": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", + "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", + "dev": true, + "dependencies": { + "ci-info": "^2.0.0" + }, + "bin": { + "is-ci": "bin.js" + } + }, + "node_modules/is-core-module": { + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.10.0.tgz", + "integrity": "sha512-Erxj2n/LDAZ7H8WNJXd9tw38GYM3dv8rk8Zcs+jJuxYTW7sozH+SS8NtrSjVL1/vpLvWi1hxy96IzjJ3EHTJJg==", + "dev": true, + "dependencies": { + "has": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/is-generator-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", + "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-negative-zero": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", + "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-number-object": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-path-cwd": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", + "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/is-path-in-cwd": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz", + "integrity": "sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==", + "dev": true, + "dependencies": { + "is-path-inside": "^2.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/is-path-inside": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-2.1.0.tgz", + "integrity": "sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==", + "dev": true, + "dependencies": { + "path-is-inside": "^1.0.2" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-shared-array-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", + "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "dev": true, + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==", + "dev": true + }, + "node_modules/is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-windows": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-wsl": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", + "integrity": "sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "dev": true + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/isstream": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", + "integrity": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==", + "dev": true + }, + "node_modules/istanbul-lib-coverage": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.5.tgz", + "integrity": "sha512-8aXznuEPCJvGnMSRft4udDRDtb1V3pkQkMMI5LI+6HuQz5oQ4J2UFn1H82raA3qJtyOLkkwVqICBQkjnGtn5mA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/istanbul-lib-instrument": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-3.3.0.tgz", + "integrity": "sha512-5nnIN4vo5xQZHdXno/YDXJ0G+I3dAm4XgzfSVTPLQpj/zAV2dV6Juy0yaf10/zrJOJeHoN3fraFe+XRq2bFVZA==", + "dev": true, + "dependencies": { + "@babel/generator": "^7.4.0", + "@babel/parser": "^7.4.3", + "@babel/template": "^7.4.0", + "@babel/traverse": "^7.4.3", + "@babel/types": "^7.4.0", + "istanbul-lib-coverage": "^2.0.5", + "semver": "^6.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/istanbul-lib-report": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-2.0.8.tgz", + "integrity": "sha512-fHBeG573EIihhAblwgxrSenp0Dby6tJMFR/HvlerBsrCTD5bkUuoNtn3gVh29ZCS824cGGBPn7Sg7cNk+2xUsQ==", + "dev": true, + "dependencies": { + "istanbul-lib-coverage": "^2.0.5", + "make-dir": "^2.1.0", + "supports-color": "^6.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/istanbul-lib-report/node_modules/supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/istanbul-lib-source-maps": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-3.0.6.tgz", + "integrity": "sha512-R47KzMtDJH6X4/YW9XTx+jrLnZnscW4VpNN+1PViSYTejLVPWv7oov+Duf8YQSPyVRUvueQqz1TcsC6mooZTXw==", + "dev": true, + "dependencies": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^2.0.5", + "make-dir": "^2.1.0", + "rimraf": "^2.6.3", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/istanbul-reports": { + "version": "2.2.7", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-2.2.7.tgz", + "integrity": "sha512-uu1F/L1o5Y6LzPVSVZXNOoD/KXpJue9aeLRd0sM9uMXfZvzomB0WxVamWb5ue8kA2vVWEmW7EG+A5n3f1kqHKg==", + "dev": true, + "dependencies": { + "html-escaper": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jest": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest/-/jest-24.9.0.tgz", + "integrity": "sha512-YvkBL1Zm7d2B1+h5fHEOdyjCG+sGMz4f8D86/0HiqJ6MB4MnDc8FgP5vdWsGnemOQro7lnYo8UakZ3+5A0jxGw==", + "dev": true, + "dependencies": { + "import-local": "^2.0.0", + "jest-cli": "^24.9.0" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-changed-files": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-24.9.0.tgz", + "integrity": "sha512-6aTWpe2mHF0DhL28WjdkO8LyGjs3zItPET4bMSeXU6T3ub4FPMw+mcOcbdGXQOAfmLcxofD23/5Bl9Z4AkFwqg==", + "dev": true, + "dependencies": { + "@jest/types": "^24.9.0", + "execa": "^1.0.0", + "throat": "^4.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-cli": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-24.9.0.tgz", + "integrity": "sha512-+VLRKyitT3BWoMeSUIHRxV/2g8y9gw91Jh5z2UmXZzkZKpbC08CSehVxgHUwTpy+HwGcns/tqafQDJW7imYvGg==", + "dev": true, + "dependencies": { + "@jest/core": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "import-local": "^2.0.0", + "is-ci": "^2.0.0", + "jest-config": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "prompts": "^2.0.1", + "realpath-native": "^1.1.0", + "yargs": "^13.3.0" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-config": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-24.9.0.tgz", + "integrity": "sha512-RATtQJtVYQrp7fvWg6f5y3pEFj9I+H8sWw4aKxnDZ96mob5i5SD6ZEGWgMLXQ4LE8UurrjbdlLWdUeo+28QpfQ==", + "dev": true, + "dependencies": { + "@babel/core": "^7.1.0", + "@jest/test-sequencer": "^24.9.0", + "@jest/types": "^24.9.0", + "babel-jest": "^24.9.0", + "chalk": "^2.0.1", + "glob": "^7.1.1", + "jest-environment-jsdom": "^24.9.0", + "jest-environment-node": "^24.9.0", + "jest-get-type": "^24.9.0", + "jest-jasmine2": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-resolve": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "micromatch": "^3.1.10", + "pretty-format": "^24.9.0", + "realpath-native": "^1.1.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-diff": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-24.9.0.tgz", + "integrity": "sha512-qMfrTs8AdJE2iqrTp0hzh7kTd2PQWrsFyj9tORoKmu32xjPjeE4NyjVRDz8ybYwqS2ik8N4hsIpiVTyFeo2lBQ==", + "dev": true, + "dependencies": { + "chalk": "^2.0.1", + "diff-sequences": "^24.9.0", + "jest-get-type": "^24.9.0", + "pretty-format": "^24.9.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-docblock": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-24.9.0.tgz", + "integrity": "sha512-F1DjdpDMJMA1cN6He0FNYNZlo3yYmOtRUnktrT9Q37njYzC5WEaDdmbynIgy0L/IvXvvgsG8OsqhLPXTpfmZAA==", + "dev": true, + "dependencies": { + "detect-newline": "^2.1.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-each": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-24.9.0.tgz", + "integrity": "sha512-ONi0R4BvW45cw8s2Lrx8YgbeXL1oCQ/wIDwmsM3CqM/nlblNCPmnC3IPQlMbRFZu3wKdQ2U8BqM6lh3LJ5Bsog==", + "dev": true, + "dependencies": { + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "jest-get-type": "^24.9.0", + "jest-util": "^24.9.0", + "pretty-format": "^24.9.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-environment-jsdom": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-24.9.0.tgz", + "integrity": "sha512-Zv9FV9NBRzLuALXjvRijO2351DRQeLYXtpD4xNvfoVFw21IOKNhZAEUKcbiEtjTkm2GsJ3boMVgkaR7rN8qetA==", + "dev": true, + "dependencies": { + "@jest/environment": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0", + "jest-util": "^24.9.0", + "jsdom": "^11.5.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-environment-node": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-24.9.0.tgz", + "integrity": "sha512-6d4V2f4nxzIzwendo27Tr0aFm+IXWa0XEUnaH6nU0FMaozxovt+sfRvh4J47wL1OvF83I3SSTu0XK+i4Bqe7uA==", + "dev": true, + "dependencies": { + "@jest/environment": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0", + "jest-util": "^24.9.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-get-type": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-24.9.0.tgz", + "integrity": "sha512-lUseMzAley4LhIcpSP9Jf+fTrQ4a1yHQwLNeeVa2cEmbCGeoZAtYPOIv8JaxLD/sUpKxetKGP+gsHl8f8TSj8Q==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-haste-map": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-24.9.0.tgz", + "integrity": "sha512-kfVFmsuWui2Sj1Rp1AJ4D9HqJwE4uwTlS/vO+eRUaMmd54BFpli2XhMQnPC2k4cHFVbB2Q2C+jtI1AGLgEnCjQ==", + "dev": true, + "dependencies": { + "@jest/types": "^24.9.0", + "anymatch": "^2.0.0", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.1.15", + "invariant": "^2.2.4", + "jest-serializer": "^24.9.0", + "jest-util": "^24.9.0", + "jest-worker": "^24.9.0", + "micromatch": "^3.1.10", + "sane": "^4.0.3", + "walker": "^1.0.7" + }, + "engines": { + "node": ">= 6" + }, + "optionalDependencies": { + "fsevents": "^1.2.7" + } + }, + "node_modules/jest-haste-map/node_modules/anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "dev": true, + "dependencies": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + } + }, + "node_modules/jest-haste-map/node_modules/fsevents": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "deprecated": "fsevents 1 will break on node v14+ and could be using insecure binaries. Upgrade to fsevents 2.", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "dependencies": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/jest-haste-map/node_modules/normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", + "dev": true, + "dependencies": { + "remove-trailing-separator": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/jest-jasmine2": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-24.9.0.tgz", + "integrity": "sha512-Cq7vkAgaYKp+PsX+2/JbTarrk0DmNhsEtqBXNwUHkdlbrTBLtMJINADf2mf5FkowNsq8evbPc07/qFO0AdKTzw==", + "dev": true, + "dependencies": { + "@babel/traverse": "^7.1.0", + "@jest/environment": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "co": "^4.6.0", + "expect": "^24.9.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-runtime": "^24.9.0", + "jest-snapshot": "^24.9.0", + "jest-util": "^24.9.0", + "pretty-format": "^24.9.0", + "throat": "^4.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-leak-detector": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-24.9.0.tgz", + "integrity": "sha512-tYkFIDsiKTGwb2FG1w8hX9V0aUb2ot8zY/2nFg087dUageonw1zrLMP4W6zsRO59dPkTSKie+D4rhMuP9nRmrA==", + "dev": true, + "dependencies": { + "jest-get-type": "^24.9.0", + "pretty-format": "^24.9.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-matcher-utils": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-24.9.0.tgz", + "integrity": "sha512-OZz2IXsu6eaiMAwe67c1T+5tUAtQyQx27/EMEkbFAGiw52tB9em+uGbzpcgYVpA8wl0hlxKPZxrly4CXU/GjHA==", + "dev": true, + "dependencies": { + "chalk": "^2.0.1", + "jest-diff": "^24.9.0", + "jest-get-type": "^24.9.0", + "pretty-format": "^24.9.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-message-util": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-24.9.0.tgz", + "integrity": "sha512-oCj8FiZ3U0hTP4aSui87P4L4jC37BtQwUMqk+zk/b11FR19BJDeZsZAvIHutWnmtw7r85UmR3CEWZ0HWU2mAlw==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.0.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/stack-utils": "^1.0.1", + "chalk": "^2.0.1", + "micromatch": "^3.1.10", + "slash": "^2.0.0", + "stack-utils": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-mock": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-24.9.0.tgz", + "integrity": "sha512-3BEYN5WbSq9wd+SyLDES7AHnjH9A/ROBwmz7l2y+ol+NtSFO8DYiEBzoO1CeFc9a8DYy10EO4dDFVv/wN3zl1w==", + "dev": true, + "dependencies": { + "@jest/types": "^24.9.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-pnp-resolver": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz", + "integrity": "sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==", + "dev": true, + "engines": { + "node": ">=6" + }, + "peerDependencies": { + "jest-resolve": "*" + }, + "peerDependenciesMeta": { + "jest-resolve": { + "optional": true + } + } + }, + "node_modules/jest-regex-util": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-24.9.0.tgz", + "integrity": "sha512-05Cmb6CuxaA+Ys6fjr3PhvV3bGQmO+2p2La4hFbU+W5uOc479f7FdLXUWXw4pYMAhhSZIuKHwSXSu6CsSBAXQA==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-resolve": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-24.9.0.tgz", + "integrity": "sha512-TaLeLVL1l08YFZAt3zaPtjiVvyy4oSA6CRe+0AFPPVX3Q/VI0giIWWoAvoS5L96vj9Dqxj4fB5p2qrHCmTU/MQ==", + "dev": true, + "dependencies": { + "@jest/types": "^24.9.0", + "browser-resolve": "^1.11.3", + "chalk": "^2.0.1", + "jest-pnp-resolver": "^1.2.1", + "realpath-native": "^1.1.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-resolve-dependencies": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-24.9.0.tgz", + "integrity": "sha512-Fm7b6AlWnYhT0BXy4hXpactHIqER7erNgIsIozDXWl5dVm+k8XdGVe1oTg1JyaFnOxarMEbax3wyRJqGP2Pq+g==", + "dev": true, + "dependencies": { + "@jest/types": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-snapshot": "^24.9.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-runner": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-24.9.0.tgz", + "integrity": "sha512-KksJQyI3/0mhcfspnxxEOBueGrd5E4vV7ADQLT9ESaCzz02WnbdbKWIf5Mkaucoaj7obQckYPVX6JJhgUcoWWg==", + "dev": true, + "dependencies": { + "@jest/console": "^24.7.1", + "@jest/environment": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "chalk": "^2.4.2", + "exit": "^0.1.2", + "graceful-fs": "^4.1.15", + "jest-config": "^24.9.0", + "jest-docblock": "^24.3.0", + "jest-haste-map": "^24.9.0", + "jest-jasmine2": "^24.9.0", + "jest-leak-detector": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-resolve": "^24.9.0", + "jest-runtime": "^24.9.0", + "jest-util": "^24.9.0", + "jest-worker": "^24.6.0", + "source-map-support": "^0.5.6", + "throat": "^4.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-runtime": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-24.9.0.tgz", + "integrity": "sha512-8oNqgnmF3v2J6PVRM2Jfuj8oX3syKmaynlDMMKQ4iyzbQzIG6th5ub/lM2bCMTmoTKM3ykcUYI2Pw9xwNtjMnw==", + "dev": true, + "dependencies": { + "@jest/console": "^24.7.1", + "@jest/environment": "^24.9.0", + "@jest/source-map": "^24.3.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/yargs": "^13.0.0", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.1.15", + "jest-config": "^24.9.0", + "jest-haste-map": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-resolve": "^24.9.0", + "jest-snapshot": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "strip-bom": "^3.0.0", + "yargs": "^13.3.0" + }, + "bin": { + "jest-runtime": "bin/jest-runtime.js" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-serializer": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-24.9.0.tgz", + "integrity": "sha512-DxYipDr8OvfrKH3Kel6NdED3OXxjvxXZ1uIY2I9OFbGg+vUkkg7AGvi65qbhbWNPvDckXmzMPbK3u3HaDO49bQ==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-snapshot": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-24.9.0.tgz", + "integrity": "sha512-uI/rszGSs73xCM0l+up7O7a40o90cnrk429LOiK3aeTvfC0HHmldbd81/B7Ix81KSFe1lwkbl7GnBGG4UfuDew==", + "dev": true, + "dependencies": { + "@babel/types": "^7.0.0", + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "expect": "^24.9.0", + "jest-diff": "^24.9.0", + "jest-get-type": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-resolve": "^24.9.0", + "mkdirp": "^0.5.1", + "natural-compare": "^1.4.0", + "pretty-format": "^24.9.0", + "semver": "^6.2.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-util": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-24.9.0.tgz", + "integrity": "sha512-x+cZU8VRmOJxbA1K5oDBdxQmdq0OIdADarLxk0Mq+3XS4jgvhG/oKGWcIDCtPG0HgjxOYvF+ilPJQsAyXfbNOg==", + "dev": true, + "dependencies": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-validate": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-24.9.0.tgz", + "integrity": "sha512-HPIt6C5ACwiqSiwi+OfSSHbK8sG7akG8eATl+IPKaeIjtPOeBUd/g3J7DghugzxrGjI93qS/+RPKe1H6PqvhRQ==", + "dev": true, + "dependencies": { + "@jest/types": "^24.9.0", + "camelcase": "^5.3.1", + "chalk": "^2.0.1", + "jest-get-type": "^24.9.0", + "leven": "^3.1.0", + "pretty-format": "^24.9.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-watcher": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-24.9.0.tgz", + "integrity": "sha512-+/fLOfKPXXYJDYlks62/4R4GoT+GU1tYZed99JSCOsmzkkF7727RqKrjNAxtfO4YpGv11wybgRvCjR73lK2GZw==", + "dev": true, + "dependencies": { + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/yargs": "^13.0.0", + "ansi-escapes": "^3.0.0", + "chalk": "^2.0.1", + "jest-util": "^24.9.0", + "string-length": "^2.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-worker": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-24.9.0.tgz", + "integrity": "sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw==", + "dev": true, + "dependencies": { + "merge-stream": "^2.0.0", + "supports-color": "^6.1.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-worker/node_modules/supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + }, + "node_modules/jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", + "integrity": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==", + "dev": true + }, + "node_modules/jsdom": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-11.12.0.tgz", + "integrity": "sha512-y8Px43oyiBM13Zc1z780FrfNLJCXTL40EWlty/LXUtcjykRBNgLlCjWXpfSPBl2iv+N7koQN+dvqszHZgT/Fjw==", + "dev": true, + "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" + } + }, + "node_modules/jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "dev": true, + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", + "dev": true + }, + "node_modules/json-schema": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", + "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==", + "dev": true + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "node_modules/json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==", + "dev": true + }, + "node_modules/json5": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz", + "integrity": "sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==", + "dev": true, + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jsprim": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz", + "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==", + "dev": true, + "dependencies": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.4.0", + "verror": "1.10.0" + }, + "engines": { + "node": ">=0.6.0" + } + }, + "node_modules/jszip": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/jszip/-/jszip-2.5.0.tgz", + "integrity": "sha512-IRoyf8JSYY3nx+uyh5xPc0qdy8pUDTp2UkHOWYNF/IO/3D8nx7899UlSAjD8rf8wUgOmm0lACWx/GbW3EaxIXQ==", + "dev": true, + "dependencies": { + "pako": "~0.2.5" + } + }, + "node_modules/killable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/killable/-/killable-1.0.1.tgz", + "integrity": "sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg==", + "dev": true + }, + "node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/left-pad": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/left-pad/-/left-pad-1.3.0.tgz", + "integrity": "sha512-XI5MPzVNApjAyhQzphX8BkmKsKUxD4LdyK24iZeQGinBN9yTQT3bFlCBy/aVx2HrNcqQGsdot8ghrjyrvMCoEA==", + "deprecated": "use String.prototype.padStart()", + "dev": true + }, + "node_modules/leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/levn": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", + "integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==", + "dev": true, + "dependencies": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/load-json-file": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", + "integrity": "sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.2", + "parse-json": "^4.0.0", + "pify": "^3.0.0", + "strip-bom": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/load-json-file/node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/loader-runner": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-2.4.0.tgz", + "integrity": "sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==", + "dev": true, + "engines": { + "node": ">=4.3.0 <5.0.0 || >=5.10" + } + }, + "node_modules/loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "dev": true, + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/loader-utils/node_modules/json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "dev": true, + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dev": true, + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "dev": true + }, + "node_modules/lodash.assignin": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/lodash.assignin/-/lodash.assignin-4.2.0.tgz", + "integrity": "sha512-yX/rx6d/UTVh7sSVWVSIMjfnz95evAgDFdb1ZozC35I9mSFCkmzptOzevxjgbQUsc78NR44LVHWjsoMQXy9FDg==", + "dev": true + }, + "node_modules/lodash.bind": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/lodash.bind/-/lodash.bind-4.2.1.tgz", + "integrity": "sha512-lxdsn7xxlCymgLYo1gGvVrfHmkjDiyqVv62FAeF2i5ta72BipE1SLxw8hPEPLhD4/247Ijw07UQH7Hq/chT5LA==", + "dev": true + }, + "node_modules/lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", + "dev": true + }, + "node_modules/lodash.defaults": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-4.2.0.tgz", + "integrity": "sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ==", + "dev": true + }, + "node_modules/lodash.filter": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/lodash.filter/-/lodash.filter-4.6.0.tgz", + "integrity": "sha512-pXYUy7PR8BCLwX5mgJ/aNtyOvuJTdZAo9EQFUvMIYugqmJxnrYaANvTbgndOzHSCSR0wnlBBfRXJL5SbWxo3FQ==", + "dev": true + }, + "node_modules/lodash.flatten": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/lodash.flatten/-/lodash.flatten-4.4.0.tgz", + "integrity": "sha512-C5N2Z3DgnnKr0LOpv/hKCgKdb7ZZwafIrsesve6lmzvZIRZRGaZ/l6Q8+2W7NaT+ZwO3fFlSCzCzrDCFdJfZ4g==", + "dev": true + }, + "node_modules/lodash.foreach": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.foreach/-/lodash.foreach-4.5.0.tgz", + "integrity": "sha512-aEXTF4d+m05rVOAUG3z4vZZ4xVexLKZGF0lIxuHZ1Hplpk/3B6Z1+/ICICYRLm7c41Z2xiejbkCkJoTlypoXhQ==", + "dev": true + }, + "node_modules/lodash.map": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/lodash.map/-/lodash.map-4.6.0.tgz", + "integrity": "sha512-worNHGKLDetmcEYDvh2stPCrrQRkP20E4l0iIS7F8EvzMqBBi7ltvFN5m1HvTf1P7Jk1txKhvFcmYsCr8O2F1Q==", + "dev": true + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true + }, + "node_modules/lodash.pick": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/lodash.pick/-/lodash.pick-4.4.0.tgz", + "integrity": "sha512-hXt6Ul/5yWjfklSGvLQl8vM//l3FtyHZeuelpzK6mm99pNvN9yTDruNZPEJZD1oWrqo+izBmB7oUfWgcCX7s4Q==", + "dev": true + }, + "node_modules/lodash.reduce": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/lodash.reduce/-/lodash.reduce-4.6.0.tgz", + "integrity": "sha512-6raRe2vxCYBhpBu+B+TtNGUzah+hQjVdu3E17wfusjyrXBka2nBS8OH/gjVZ5PvHOhWmIZTYri09Z6n/QfnNMw==", + "dev": true + }, + "node_modules/lodash.reject": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/lodash.reject/-/lodash.reject-4.6.0.tgz", + "integrity": "sha512-qkTuvgEzYdyhiJBx42YPzPo71R1aEr0z79kAv7Ixg8wPFEjgRgJdUsGMG3Hf3OYSF/kHI79XhNlt+5Ar6OzwxQ==", + "dev": true + }, + "node_modules/lodash.some": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/lodash.some/-/lodash.some-4.6.0.tgz", + "integrity": "sha512-j7MJE+TuT51q9ggt4fSgVqro163BEFjAt3u97IqU+JA2DkWl80nFTrowzLpZ/BnpN7rrl0JA/593NAdd8p/scQ==", + "dev": true + }, + "node_modules/lodash.sortby": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", + "integrity": "sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==", + "dev": true + }, + "node_modules/loglevel": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.8.0.tgz", + "integrity": "sha512-G6A/nJLRgWOuuwdNuA6koovfEV1YpqqAG4pRUlFaz3jj2QNZ8M4vBqnVA+HBTmU/AMNUtlOsMmSpF6NyOjztbA==", + "dev": true, + "engines": { + "node": ">= 0.6.0" + }, + "funding": { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/loglevel" + } + }, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "node_modules/lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/lru-cache": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", + "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", + "dev": true, + "dependencies": { + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" + } + }, + "node_modules/make-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "dev": true, + "dependencies": { + "pify": "^4.0.1", + "semver": "^5.6.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/make-dir/node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/makeerror": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", + "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", + "dev": true, + "dependencies": { + "tmpl": "1.0.5" + } + }, + "node_modules/map-cache": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", + "integrity": "sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/map-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", + "integrity": "sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==", + "dev": true, + "dependencies": { + "object-visit": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/md5.js": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", + "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", + "dev": true, + "dependencies": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "node_modules/media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/memory-fs": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz", + "integrity": "sha512-cda4JKCxReDXFXRqOHPQscuIYg1PvxbE2S2GP45rnwfEK+vZaXC8C1OFvdHIbgw0DLzowXGVoxLaAmlgRy14GQ==", + "dev": true, + "dependencies": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + } + }, + "node_modules/memory-fs/node_modules/readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/memory-fs/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==", + "dev": true + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true + }, + "node_modules/methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/micromatch/node_modules/braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "dependencies": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/micromatch/node_modules/braces/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/micromatch/node_modules/fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", + "dev": true, + "dependencies": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/micromatch/node_modules/fill-range/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/micromatch/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/micromatch/node_modules/to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", + "dev": true, + "dependencies": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/miller-rabin": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", + "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", + "dev": true, + "dependencies": { + "bn.js": "^4.0.0", + "brorand": "^1.0.1" + }, + "bin": { + "miller-rabin": "bin/miller-rabin" + } + }, + "node_modules/miller-rabin/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "dev": true + }, + "node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "dev": true, + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dev": true, + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", + "dev": true + }, + "node_modules/minimalistic-crypto-utils": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", + "integrity": "sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==", + "dev": true + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz", + "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==", + "dev": true + }, + "node_modules/mississippi": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mississippi/-/mississippi-3.0.0.tgz", + "integrity": "sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==", + "dev": true, + "dependencies": { + "concat-stream": "^1.5.0", + "duplexify": "^3.4.2", + "end-of-stream": "^1.1.0", + "flush-write-stream": "^1.0.0", + "from2": "^2.1.0", + "parallel-transform": "^1.1.0", + "pump": "^3.0.0", + "pumpify": "^1.3.3", + "stream-each": "^1.1.0", + "through2": "^2.0.0" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/mixin-deep": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", + "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", + "dev": true, + "dependencies": { + "for-in": "^1.0.2", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mkdirp": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", + "dev": true, + "dependencies": { + "minimist": "^1.2.6" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, + "node_modules/move-concurrently": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz", + "integrity": "sha512-hdrFxZOycD/g6A6SoI2bB5NA/5NEqD0569+S47WZhPvm46sD50ZHdYaFmnua5lndde9rCHGjmfK7Z8BuCt/PcQ==", + "dev": true, + "dependencies": { + "aproba": "^1.1.1", + "copy-concurrently": "^1.0.0", + "fs-write-stream-atomic": "^1.0.8", + "mkdirp": "^0.5.1", + "rimraf": "^2.5.4", + "run-queue": "^1.0.3" + } + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "node_modules/multicast-dns": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-6.2.3.tgz", + "integrity": "sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==", + "dev": true, + "dependencies": { + "dns-packet": "^1.3.1", + "thunky": "^1.0.2" + }, + "bin": { + "multicast-dns": "cli.js" + } + }, + "node_modules/multicast-dns-service-types": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz", + "integrity": "sha512-cnAsSVxIDsYt0v7HmC0hWZFwwXSh+E6PgCrREDuN/EsjgLwA5XRmlMHhSiDPrt6HxY1gTivEa/Zh7GtODoLevQ==", + "dev": true + }, + "node_modules/nan": { + "version": "2.16.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.16.0.tgz", + "integrity": "sha512-UdAqHyFngu7TfQKsCBgAA6pWDkT8MAO7d0jyOecVhN5354xbLqdn8mV9Tat9gepAupm0bt2DbeaSC8vS52MuFA==", + "dev": true, + "optional": true + }, + "node_modules/nanomatch": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", + "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", + "dev": true, + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true + }, + "node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "dev": true + }, + "node_modules/nice-try": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", + "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", + "dev": true + }, + "node_modules/no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "dependencies": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + }, + "node_modules/node-forge": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.10.0.tgz", + "integrity": "sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==", + "dev": true, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/node-int64": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", + "dev": true + }, + "node_modules/node-libs-browser": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.1.tgz", + "integrity": "sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==", + "dev": true, + "dependencies": { + "assert": "^1.1.1", + "browserify-zlib": "^0.2.0", + "buffer": "^4.3.0", + "console-browserify": "^1.1.0", + "constants-browserify": "^1.0.0", + "crypto-browserify": "^3.11.0", + "domain-browser": "^1.1.1", + "events": "^3.0.0", + "https-browserify": "^1.0.0", + "os-browserify": "^0.3.0", + "path-browserify": "0.0.1", + "process": "^0.11.10", + "punycode": "^1.2.4", + "querystring-es3": "^0.2.0", + "readable-stream": "^2.3.3", + "stream-browserify": "^2.0.1", + "stream-http": "^2.7.2", + "string_decoder": "^1.0.0", + "timers-browserify": "^2.0.4", + "tty-browserify": "0.0.0", + "url": "^0.11.0", + "util": "^0.11.0", + "vm-browserify": "^1.0.1" + } + }, + "node_modules/node-libs-browser/node_modules/punycode": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", + "integrity": "sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==", + "dev": true + }, + "node_modules/node-libs-browser/node_modules/readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/node-libs-browser/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/node-notifier": { + "version": "5.4.5", + "resolved": "https://registry.npmjs.org/node-notifier/-/node-notifier-5.4.5.tgz", + "integrity": "sha512-tVbHs7DyTLtzOiN78izLA85zRqB9NvEXkAf014Vx3jtSvn/xBl6bR8ZYifj+dFcFrKI21huSQgJZ6ZtL3B4HfQ==", + "dev": true, + "dependencies": { + "growly": "^1.3.0", + "is-wsl": "^1.1.0", + "semver": "^5.5.0", + "shellwords": "^0.1.1", + "which": "^1.3.0" + } + }, + "node_modules/node-notifier/node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/node-releases": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.6.tgz", + "integrity": "sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==", + "dev": true + }, + "node_modules/node-zip": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/node-zip/-/node-zip-1.1.1.tgz", + "integrity": "sha512-sXfGL65EcaAJqNSXxuyf//i4D4geUtJgZDYUd7IBo2/CH8XY8vcWh1+CBCxuVVyR+S4vAFc3hr//JkCi2+V5vg==", + "dev": true, + "dependencies": { + "jszip": "2.5.0" + }, + "bin": { + "nodezip": "bin/nodezip" + }, + "engines": { + "node": "*" + } + }, + "node_modules/normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "dev": true, + "dependencies": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "node_modules/normalize-package-data/node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", + "dev": true, + "dependencies": { + "path-key": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/nth-check": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz", + "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==", + "dev": true, + "dependencies": { + "boolbase": "~1.0.0" + } + }, + "node_modules/nwsapi": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.2.tgz", + "integrity": "sha512-90yv+6538zuvUMnN+zCr8LuV6bPFdq50304114vJYJ8RDyK8D5O9Phpbd6SZWgI7PwzmmfN1upeOJlvybDSgCw==", + "dev": true + }, + "node_modules/oauth-sign": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", + "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", + "integrity": "sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==", + "dev": true, + "dependencies": { + "copy-descriptor": "^0.1.0", + "define-property": "^0.2.5", + "kind-of": "^3.0.3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dev": true, + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/is-descriptor/node_modules/kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-inspect": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz", + "integrity": "sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-is": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", + "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object-visit": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", + "integrity": "sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==", + "dev": true, + "dependencies": { + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object.assign": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", + "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.getownpropertydescriptors": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.4.tgz", + "integrity": "sha512-sccv3L/pMModT6dJAYF3fzGMVcb38ysQ0tEE6ixv2yXJDtEIPph268OlAdJj5/qZMZDq2g/jqvwppt36uS/uQQ==", + "dev": true, + "dependencies": { + "array.prototype.reduce": "^1.0.4", + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.1" + }, + "engines": { + "node": ">= 0.8" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.pick": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", + "integrity": "sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==", + "dev": true, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/obuf": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", + "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==", + "dev": true + }, + "node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "dev": true, + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/on-headers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/opn": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/opn/-/opn-5.5.0.tgz", + "integrity": "sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==", + "dev": true, + "dependencies": { + "is-wsl": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/optionator": { + "version": "0.8.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", + "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", + "dev": true, + "dependencies": { + "deep-is": "~0.1.3", + "fast-levenshtein": "~2.0.6", + "levn": "~0.3.0", + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2", + "word-wrap": "~1.2.3" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/os-browserify": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", + "integrity": "sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==", + "dev": true + }, + "node_modules/p-each-series": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-each-series/-/p-each-series-1.0.0.tgz", + "integrity": "sha512-J/e9xiZZQNrt+958FFzJ+auItsBGq+UrQ7nE89AUP7UOTtjHnkISANXLdayhVzh538UnLMCSlf13lFfRIAKQOA==", + "dev": true, + "dependencies": { + "p-reduce": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, + "dependencies": { + "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/p-map": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz", + "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/p-reduce": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-reduce/-/p-reduce-1.0.0.tgz", + "integrity": "sha512-3Tx1T3oM1xO/Y8Gj0sWyE78EIJZ+t+aEmXUdvQgvGmSMri7aPTHoovbXEreWKkL5j21Er60XAWLTzKbAKYOujQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/p-retry": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-3.0.1.tgz", + "integrity": "sha512-XE6G4+YTTkT2a0UWb2kjZe8xNwf8bIbnqpc/IS/idOBVhyves0mK5OJgeocjx7q5pvX/6m23xuzVPYT1uGM73w==", + "dev": true, + "dependencies": { + "retry": "^0.12.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/pako": { + "version": "0.2.9", + "resolved": "https://registry.npmjs.org/pako/-/pako-0.2.9.tgz", + "integrity": "sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==", + "dev": true + }, + "node_modules/parallel-transform": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.2.0.tgz", + "integrity": "sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==", + "dev": true, + "dependencies": { + "cyclist": "^1.0.1", + "inherits": "^2.0.3", + "readable-stream": "^2.1.5" + } + }, + "node_modules/parallel-transform/node_modules/readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/parallel-transform/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/parse-asn1": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.6.tgz", + "integrity": "sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==", + "dev": true, + "dependencies": { + "asn1.js": "^5.2.0", + "browserify-aes": "^1.0.0", + "evp_bytestokey": "^1.0.0", + "pbkdf2": "^3.0.3", + "safe-buffer": "^5.1.1" + } + }, + "node_modules/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", + "dev": true, + "dependencies": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/parse-passwd": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz", + "integrity": "sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/parse5": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-4.0.0.tgz", + "integrity": "sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA==", + "dev": true + }, + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/pascal-case": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", + "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/pascalcase": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", + "integrity": "sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-browserify": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz", + "integrity": "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==", + "dev": true + }, + "node_modules/path-dirname": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", + "integrity": "sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==", + "dev": true + }, + "node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-is-inside": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", + "integrity": "sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==", + "dev": true + }, + "node_modules/path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "node_modules/path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==", + "dev": true + }, + "node_modules/path-type": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", + "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", + "dev": true, + "dependencies": { + "pify": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/path-type/node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/pbkdf2": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.2.tgz", + "integrity": "sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==", + "dev": true, + "dependencies": { + "create-hash": "^1.1.2", + "create-hmac": "^1.1.4", + "ripemd160": "^2.0.1", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + }, + "engines": { + "node": ">=0.12" + } + }, + "node_modules/performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==", + "dev": true + }, + "node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "dev": true + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "optional": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==", + "dev": true, + "dependencies": { + "pinkie": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pirates": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.5.tgz", + "integrity": "sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/pkg-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", + "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "dev": true, + "dependencies": { + "find-up": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/pn": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/pn/-/pn-1.1.0.tgz", + "integrity": "sha512-2qHaIQr2VLRFoxe2nASzsV6ef4yOOH+Fi9FBOVH6cqeSgUnoyySPZkxzLuzd+RYOQTRpROA0ztTMqxROKSb/nA==", + "dev": true + }, + "node_modules/portfinder": { + "version": "1.0.32", + "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.32.tgz", + "integrity": "sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==", + "dev": true, + "dependencies": { + "async": "^2.6.4", + "debug": "^3.2.7", + "mkdirp": "^0.5.6" + }, + "engines": { + "node": ">= 0.12.0" + } + }, + "node_modules/portfinder/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/posix-character-classes": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", + "integrity": "sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dev": true, + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-modules-extract-imports": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz", + "integrity": "sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==", + "dev": true, + "dependencies": { + "postcss": "^7.0.5" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/postcss-modules-local-by-default": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-2.0.6.tgz", + "integrity": "sha512-oLUV5YNkeIBa0yQl7EYnxMgy4N6noxmiwZStaEJUSe2xPMcdNc8WmBQuQCx18H5psYbVxz8zoHk0RAAYZXP9gA==", + "dev": true, + "dependencies": { + "postcss": "^7.0.6", + "postcss-selector-parser": "^6.0.0", + "postcss-value-parser": "^3.3.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/postcss-modules-scope": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-2.2.0.tgz", + "integrity": "sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ==", + "dev": true, + "dependencies": { + "postcss": "^7.0.6", + "postcss-selector-parser": "^6.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/postcss-modules-values": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-2.0.0.tgz", + "integrity": "sha512-Ki7JZa7ff1N3EIMlPnGTZfUMe69FFwiQPnVSXC9mnn3jozCRBYIxiZd44yJOV2AmabOo4qFf8s0dC/+lweG7+w==", + "dev": true, + "dependencies": { + "icss-replace-symbols": "^1.1.0", + "postcss": "^7.0.6" + } + }, + "node_modules/postcss-selector-parser": { + "version": "6.0.10", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz", + "integrity": "sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==", + "dev": true, + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + }, + "node_modules/prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", + "integrity": "sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/pretty-format": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-24.9.0.tgz", + "integrity": "sha512-00ZMZUiHaJrNfk33guavqgvfJS30sLYf0f8+Srklv0AMPodGGHcoHgksZ3OThYnIvOd+8yMCn0YiEOogjlgsnA==", + "dev": true, + "dependencies": { + "@jest/types": "^24.9.0", + "ansi-regex": "^4.0.0", + "ansi-styles": "^3.2.0", + "react-is": "^16.8.4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/process": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", + "dev": true, + "engines": { + "node": ">= 0.6.0" + } + }, + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "dev": true + }, + "node_modules/promise-inflight": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", + "integrity": "sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==", + "dev": true + }, + "node_modules/prompts": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", + "dev": true, + "dependencies": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "dependencies": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + } + }, + "node_modules/proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "dev": true, + "dependencies": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/prr": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", + "integrity": "sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==", + "dev": true + }, + "node_modules/pseudomap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", + "integrity": "sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==", + "dev": true + }, + "node_modules/psl": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", + "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==", + "dev": true + }, + "node_modules/public-encrypt": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz", + "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==", + "dev": true, + "dependencies": { + "bn.js": "^4.1.0", + "browserify-rsa": "^4.0.0", + "create-hash": "^1.1.0", + "parse-asn1": "^5.0.0", + "randombytes": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "node_modules/public-encrypt/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "dev": true + }, + "node_modules/pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dev": true, + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/pumpify": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz", + "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==", + "dev": true, + "dependencies": { + "duplexify": "^3.6.0", + "inherits": "^2.0.3", + "pump": "^2.0.0" + } + }, + "node_modules/pumpify/node_modules/pump": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", + "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", + "dev": true, + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/qs": { + "version": "6.5.3", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz", + "integrity": "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==", + "dev": true, + "engines": { + "node": ">=0.6" + } + }, + "node_modules/querystring": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", + "integrity": "sha512-X/xY82scca2tau62i9mDyU9K+I+djTMUsvwf7xnUX5GLvVzgJybOJf4Y6o9Zx3oJK/LSXg5tTZBjwzqVPaPO2g==", + "deprecated": "The querystring API is considered Legacy. new code should use the URLSearchParams API instead.", + "dev": true, + "engines": { + "node": ">=0.4.x" + } + }, + "node_modules/querystring-es3": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz", + "integrity": "sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA==", + "dev": true, + "engines": { + "node": ">=0.4.x" + } + }, + "node_modules/querystringify": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", + "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", + "dev": true + }, + "node_modules/randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dev": true, + "dependencies": { + "safe-buffer": "^5.1.0" + } + }, + "node_modules/randomfill": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz", + "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==", + "dev": true, + "dependencies": { + "randombytes": "^2.0.5", + "safe-buffer": "^5.1.0" + } + }, + "node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/raw-body": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", + "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", + "dev": true, + "dependencies": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/raw-body/node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/react": { + "version": "16.14.0", + "resolved": "https://registry.npmjs.org/react/-/react-16.14.0.tgz", + "integrity": "sha512-0X2CImDkJGApiAlcf0ODKIneSwBPhqJawOa5wCtKbu7ZECrmS26NvtSILynQ66cgkT/RJ4LidJOc3bUESwmU8g==", + "dev": true, + "dependencies": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1", + "prop-types": "^15.6.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-dom": { + "version": "16.14.0", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-16.14.0.tgz", + "integrity": "sha512-1gCeQXDLoIqMgqD3IO2Ah9bnf0w9kzhwN5q4FGnHZ67hBm9yePzB5JJAIQCc8x3pFnNlwFq4RidZggNAAkzWWw==", + "dev": true, + "dependencies": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1", + "prop-types": "^15.6.2", + "scheduler": "^0.19.1" + }, + "peerDependencies": { + "react": "^16.14.0" + } + }, + "node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + }, + "node_modules/react-test-renderer": { + "version": "16.14.0", + "resolved": "https://registry.npmjs.org/react-test-renderer/-/react-test-renderer-16.14.0.tgz", + "integrity": "sha512-L8yPjqPE5CZO6rKsKXRO/rVPiaCOy0tQQJbC+UjPNlobl5mad59lvPjwFsQHTvL03caVDIVr9x9/OSgDe6I5Eg==", + "dev": true, + "dependencies": { + "object-assign": "^4.1.1", + "prop-types": "^15.6.2", + "react-is": "^16.8.6", + "scheduler": "^0.19.1" + }, + "peerDependencies": { + "react": "^16.14.0" + } + }, + "node_modules/read-pkg": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz", + "integrity": "sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==", + "dev": true, + "dependencies": { + "load-json-file": "^4.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/read-pkg-up": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-4.0.0.tgz", + "integrity": "sha512-6etQSH7nJGsK0RbG/2TeDzZFa8shjQ1um+SwQQ5cwKy0dhSXdOncEhb1CPpvQG4h7FyOV6EB6YlV0yJvZQNAkA==", + "dev": true, + "dependencies": { + "find-up": "^3.0.0", + "read-pkg": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "optional": true, + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/realpath-native": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/realpath-native/-/realpath-native-1.1.0.tgz", + "integrity": "sha512-wlgPA6cCIIg9gKz0fgAPjnzh4yR/LnXovwuo9hvyGvx3h8nX4+/iLZplfUWasXpqD8BdnGnP5njOFjkUwPzvjA==", + "dev": true, + "dependencies": { + "util.promisify": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regenerate": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", + "dev": true + }, + "node_modules/regenerate-unicode-properties": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz", + "integrity": "sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==", + "dev": true, + "dependencies": { + "regenerate": "^1.4.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regenerator-runtime": { + "version": "0.13.9", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz", + "integrity": "sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==", + "dev": true + }, + "node_modules/regenerator-transform": { + "version": "0.15.0", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.0.tgz", + "integrity": "sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.8.4" + } + }, + "node_modules/regex-not": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", + "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", + "dev": true, + "dependencies": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/regexp.prototype.flags": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz", + "integrity": "sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "functions-have-names": "^1.2.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/regexpu-core": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.2.1.tgz", + "integrity": "sha512-HrnlNtpvqP1Xkb28tMhBUO2EbyUHdQlsnlAhzWcwHy8WJR53UWr7/MAvqrsQKMbV4qdpv03oTMG8iIhfsPFktQ==", + "dev": true, + "dependencies": { + "regenerate": "^1.4.2", + "regenerate-unicode-properties": "^10.1.0", + "regjsgen": "^0.7.1", + "regjsparser": "^0.9.1", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regjsgen": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.7.1.tgz", + "integrity": "sha512-RAt+8H2ZEzHeYWxZ3H2z6tF18zyyOnlcdaafLrm21Bguj7uZy6ULibiAFdXEtKQY4Sy7wDTwDiOazasMLc4KPA==", + "dev": true + }, + "node_modules/regjsparser": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", + "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", + "dev": true, + "dependencies": { + "jsesc": "~0.5.0" + }, + "bin": { + "regjsparser": "bin/parser" + } + }, + "node_modules/regjsparser/node_modules/jsesc": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", + "dev": true, + "bin": { + "jsesc": "bin/jsesc" + } + }, + "node_modules/remove-trailing-separator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", + "integrity": "sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==", + "dev": true + }, + "node_modules/repeat-element": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz", + "integrity": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==", + "dev": true, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/request": { + "version": "2.88.2", + "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", + "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", + "deprecated": "request has been deprecated, see https://github.com/request/request/issues/3142", + "dev": true, + "dependencies": { + "aws-sign2": "~0.7.0", + "aws4": "^1.8.0", + "caseless": "~0.12.0", + "combined-stream": "~1.0.6", + "extend": "~3.0.2", + "forever-agent": "~0.6.1", + "form-data": "~2.3.2", + "har-validator": "~5.1.3", + "http-signature": "~1.2.0", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.19", + "oauth-sign": "~0.9.0", + "performance-now": "^2.1.0", + "qs": "~6.5.2", + "safe-buffer": "^5.1.2", + "tough-cookie": "~2.5.0", + "tunnel-agent": "^0.6.0", + "uuid": "^3.3.2" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/request-promise-core": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.4.tgz", + "integrity": "sha512-TTbAfBBRdWD7aNNOoVOBH4pN/KigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw==", + "dev": true, + "dependencies": { + "lodash": "^4.17.19" + }, + "engines": { + "node": ">=0.10.0" + }, + "peerDependencies": { + "request": "^2.34" + } + }, + "node_modules/request-promise-native": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/request-promise-native/-/request-promise-native-1.0.9.tgz", + "integrity": "sha512-wcW+sIUiWnKgNY0dqCpOZkUbF/I+YPi+f09JZIDa39Ec+q82CpSYniDp+ISgTTbKmnpJWASeJBPZmoxH84wt3g==", + "deprecated": "request-promise-native has been deprecated because it extends the now deprecated request package, see https://github.com/request/request/issues/3142", + "dev": true, + "dependencies": { + "request-promise-core": "1.1.4", + "stealthy-require": "^1.1.1", + "tough-cookie": "^2.3.3" + }, + "engines": { + "node": ">=0.12.0" + }, + "peerDependencies": { + "request": "^2.34" + } + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-main-filename": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", + "dev": true + }, + "node_modules/requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", + "dev": true + }, + "node_modules/resolve": { + "version": "1.22.1", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz", + "integrity": "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==", + "dev": true, + "dependencies": { + "is-core-module": "^2.9.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-cwd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz", + "integrity": "sha512-ccu8zQTrzVr954472aUVPLEcB3YpKSYR3cg/3lo1okzobPBM+1INXBbBZlDbnI/hbEocnf8j0QVo43hQKrbchg==", + "dev": true, + "dependencies": { + "resolve-from": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/resolve-dir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz", + "integrity": "sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg==", + "dev": true, + "dependencies": { + "expand-tilde": "^2.0.0", + "global-modules": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve-dir/node_modules/global-modules": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz", + "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==", + "dev": true, + "dependencies": { + "global-prefix": "^1.0.1", + "is-windows": "^1.0.1", + "resolve-dir": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve-dir/node_modules/global-prefix": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz", + "integrity": "sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg==", + "dev": true, + "dependencies": { + "expand-tilde": "^2.0.2", + "homedir-polyfill": "^1.0.1", + "ini": "^1.3.4", + "is-windows": "^1.0.1", + "which": "^1.2.14" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/resolve-url": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", + "integrity": "sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==", + "deprecated": "https://github.com/lydell/resolve-url#deprecated", + "dev": true + }, + "node_modules/ret": { + "version": "0.1.15", + "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", + "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", + "dev": true, + "engines": { + "node": ">=0.12" + } + }, + "node_modules/retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", + "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dev": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/ripemd160": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", + "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", + "dev": true, + "dependencies": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1" + } + }, + "node_modules/rsvp": { + "version": "4.8.5", + "resolved": "https://registry.npmjs.org/rsvp/-/rsvp-4.8.5.tgz", + "integrity": "sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==", + "dev": true, + "engines": { + "node": "6.* || >= 7.*" + } + }, + "node_modules/run-queue": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz", + "integrity": "sha512-ntymy489o0/QQplUDnpYAYUsO50K9SBrIVaKCWDOJzYJts0f9WH9RFJkyagebkw5+y1oi00R7ynNW/d12GBumg==", + "dev": true, + "dependencies": { + "aproba": "^1.1.1" + } + }, + "node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "node_modules/safe-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", + "integrity": "sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==", + "dev": true, + "dependencies": { + "ret": "~0.1.10" + } + }, + "node_modules/safe-regex-test": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", + "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.3", + "is-regex": "^1.1.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true + }, + "node_modules/sane": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/sane/-/sane-4.1.0.tgz", + "integrity": "sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==", + "deprecated": "some dependency vulnerabilities fixed, support for node < 10 dropped, and newer ECMAScript syntax/features added", + "dev": true, + "dependencies": { + "@cnakazawa/watch": "^1.0.3", + "anymatch": "^2.0.0", + "capture-exit": "^2.0.0", + "exec-sh": "^0.3.2", + "execa": "^1.0.0", + "fb-watchman": "^2.0.0", + "micromatch": "^3.1.4", + "minimist": "^1.1.1", + "walker": "~1.0.5" + }, + "bin": { + "sane": "src/cli.js" + }, + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/sane/node_modules/anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "dev": true, + "dependencies": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + } + }, + "node_modules/sane/node_modules/normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", + "dev": true, + "dependencies": { + "remove-trailing-separator": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sax": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", + "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==", + "dev": true + }, + "node_modules/scheduler": { + "version": "0.19.1", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.19.1.tgz", + "integrity": "sha512-n/zwRWRYSUj0/3g/otKDRPMh6qv2SYMWNq85IEa8iZyAv8od9zDYpGSnpBEjNgcMNq6Scbu5KfIPxNF72R/2EA==", + "dev": true, + "dependencies": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1" + } + }, + "node_modules/schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", + "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "dev": true, + "dependencies": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + }, + "engines": { + "node": ">= 4" + } + }, + "node_modules/select-hose": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", + "integrity": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==", + "dev": true + }, + "node_modules/selfsigned": { + "version": "1.10.14", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-1.10.14.tgz", + "integrity": "sha512-lkjaiAye+wBZDCBsu5BGi0XiLRxeUlsGod5ZP924CRSEoGuZAw/f7y9RKu28rwTfiHVhdavhB0qH0INV6P1lEA==", + "dev": true, + "dependencies": { + "node-forge": "^0.10.0" + } + }, + "node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/send": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "dev": true, + "dependencies": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/send/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/send/node_modules/debug/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/send/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true + }, + "node_modules/serialize-javascript": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz", + "integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==", + "dev": true, + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/serve-index": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==", + "dev": true, + "dependencies": { + "accepts": "~1.3.4", + "batch": "0.6.1", + "debug": "2.6.9", + "escape-html": "~1.0.3", + "http-errors": "~1.6.2", + "mime-types": "~2.1.17", + "parseurl": "~1.3.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/serve-index/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/serve-index/node_modules/depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-index/node_modules/http-errors": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", + "integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==", + "dev": true, + "dependencies": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-index/node_modules/inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", + "dev": true + }, + "node_modules/serve-index/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/serve-index/node_modules/setprototypeof": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", + "dev": true + }, + "node_modules/serve-index/node_modules/statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-static": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "dev": true, + "dependencies": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.18.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", + "dev": true + }, + "node_modules/set-value": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", + "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", + "dev": true, + "dependencies": { + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.3", + "split-string": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/set-value/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/set-value/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/setimmediate": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", + "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==", + "dev": true + }, + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "dev": true + }, + "node_modules/sha.js": { + "version": "2.4.11", + "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", + "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", + "dev": true, + "dependencies": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "bin": { + "sha.js": "bin.js" + } + }, + "node_modules/shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "dev": true, + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/shellwords": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/shellwords/-/shellwords-0.1.1.tgz", + "integrity": "sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==", + "dev": true + }, + "node_modules/side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true + }, + "node_modules/sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", + "dev": true + }, + "node_modules/slash": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", + "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", + "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", + "dev": true, + "dependencies": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", + "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", + "dev": true, + "dependencies": { + "define-property": "^1.0.0", + "isobject": "^3.0.0", + "snapdragon-util": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-util": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", + "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", + "dev": true, + "dependencies": { + "kind-of": "^3.2.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-util/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/snapdragon/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dev": true, + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/is-accessor-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/is-data-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/snapdragon/node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sockjs": { + "version": "0.3.24", + "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz", + "integrity": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==", + "dev": true, + "dependencies": { + "faye-websocket": "^0.11.3", + "uuid": "^8.3.2", + "websocket-driver": "^0.7.4" + } + }, + "node_modules/sockjs-client": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.6.1.tgz", + "integrity": "sha512-2g0tjOR+fRs0amxENLi/q5TiJTqY+WXFOzb5UwXndlK6TO3U/mirZznpx6w34HVMoc3g7cY24yC/ZMIYnDlfkw==", + "dev": true, + "dependencies": { + "debug": "^3.2.7", + "eventsource": "^2.0.2", + "faye-websocket": "^0.11.4", + "inherits": "^2.0.4", + "url-parse": "^1.5.10" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://tidelift.com/funding/github/npm/sockjs-client" + } + }, + "node_modules/sockjs-client/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/sockjs/node_modules/uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "dev": true, + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/source-list-map": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", + "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==", + "dev": true + }, + "node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-resolve": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", + "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", + "deprecated": "See https://github.com/lydell/source-map-resolve#deprecated", + "dev": true, + "dependencies": { + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" + } + }, + "node_modules/source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "dev": true, + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/source-map-url": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz", + "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==", + "deprecated": "See https://github.com/lydell/source-map-url#deprecated", + "dev": true + }, + "node_modules/spdx-correct": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz", + "integrity": "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==", + "dev": true, + "dependencies": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-exceptions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", + "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", + "dev": true + }, + "node_modules/spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "dev": true, + "dependencies": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-license-ids": { + "version": "3.0.12", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.12.tgz", + "integrity": "sha512-rr+VVSXtRhO4OHbXUiAF7xW3Bo9DuuF6C5jH+q/x15j2jniycgKbxU09Hr0WqlSLUs4i4ltHGXqTe7VHclYWyA==", + "dev": true + }, + "node_modules/spdy": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz", + "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==", + "dev": true, + "dependencies": { + "debug": "^4.1.0", + "handle-thing": "^2.0.0", + "http-deceiver": "^1.2.7", + "select-hose": "^2.0.0", + "spdy-transport": "^3.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/spdy-transport": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz", + "integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==", + "dev": true, + "dependencies": { + "debug": "^4.1.0", + "detect-node": "^2.0.4", + "hpack.js": "^2.1.6", + "obuf": "^1.1.2", + "readable-stream": "^3.0.6", + "wbuf": "^1.7.3" + } + }, + "node_modules/split-string": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", + "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", + "dev": true, + "dependencies": { + "extend-shallow": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sshpk": { + "version": "1.17.0", + "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.17.0.tgz", + "integrity": "sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ==", + "dev": true, + "dependencies": { + "asn1": "~0.2.3", + "assert-plus": "^1.0.0", + "bcrypt-pbkdf": "^1.0.0", + "dashdash": "^1.12.0", + "ecc-jsbn": "~0.1.1", + "getpass": "^0.1.1", + "jsbn": "~0.1.0", + "safer-buffer": "^2.0.2", + "tweetnacl": "~0.14.0" + }, + "bin": { + "sshpk-conv": "bin/sshpk-conv", + "sshpk-sign": "bin/sshpk-sign", + "sshpk-verify": "bin/sshpk-verify" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ssri": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-6.0.2.tgz", + "integrity": "sha512-cepbSq/neFK7xB6A50KHN0xHDotYzq58wWCa5LeWqnPrHG8GzfEjO/4O8kpmcGW+oaxkvhEJCWgbgNk4/ZV93Q==", + "dev": true, + "dependencies": { + "figgy-pudding": "^3.5.1" + } + }, + "node_modules/stack-utils": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-1.0.5.tgz", + "integrity": "sha512-KZiTzuV3CnSnSvgMRrARVCj+Ht7rMbauGDK0LdVFRGyenwdylpajAp4Q0i6SX8rEmbTpMMf6ryq2gb8pPq2WgQ==", + "dev": true, + "dependencies": { + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/stack-utils/node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/static-extend": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", + "integrity": "sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==", + "dev": true, + "dependencies": { + "define-property": "^0.2.5", + "object-copy": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dev": true, + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/is-accessor-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/is-data-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/stealthy-require": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz", + "integrity": "sha512-ZnWpYnYugiOVEY5GkcuJK1io5V8QmNYChG62gSit9pQVGErXtrKuPC55ITaVSukmMta5qpMU7vqLt2Lnni4f/g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/stream-browserify": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz", + "integrity": "sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==", + "dev": true, + "dependencies": { + "inherits": "~2.0.1", + "readable-stream": "^2.0.2" + } + }, + "node_modules/stream-browserify/node_modules/readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/stream-browserify/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/stream-each": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/stream-each/-/stream-each-1.2.3.tgz", + "integrity": "sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==", + "dev": true, + "dependencies": { + "end-of-stream": "^1.1.0", + "stream-shift": "^1.0.0" + } + }, + "node_modules/stream-http": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz", + "integrity": "sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==", + "dev": true, + "dependencies": { + "builtin-status-codes": "^3.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.3.6", + "to-arraybuffer": "^1.0.0", + "xtend": "^4.0.0" + } + }, + "node_modules/stream-http/node_modules/readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/stream-http/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/stream-shift": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz", + "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==", + "dev": true + }, + "node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/string_decoder/node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/string-length": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-2.0.0.tgz", + "integrity": "sha512-Qka42GGrS8Mm3SZ+7cH8UXiIWI867/b/Z/feQSpQx/rbfB8UGknGEZVaUQMOUVj+soY6NpWAxily63HI1OckVQ==", + "dev": true, + "dependencies": { + "astral-regex": "^1.0.0", + "strip-ansi": "^4.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/string-length/node_modules/ansi-regex": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz", + "integrity": "sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/string-length/node_modules/strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==", + "dev": true, + "dependencies": { + "ansi-regex": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dev": true, + "dependencies": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/string.prototype.trimend": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.5.tgz", + "integrity": "sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.19.5" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimstart": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.5.tgz", + "integrity": "sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.19.5" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/strip-eof": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", + "integrity": "sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/style-loader": { + "version": "0.13.2", + "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-0.13.2.tgz", + "integrity": "sha512-0lN0o7DS1G/HRoYJQMEO3yP+tNCuAnNuX1mt/2Yw4edSok45vebtyJoHUyBREasuPYBtZpC3d8wvgY/WD68ZJg==", + "dev": true, + "dependencies": { + "loader-utils": "^1.0.2" + } + }, + "node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/svgfont2js": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/svgfont2js/-/svgfont2js-0.1.2.tgz", + "integrity": "sha512-zLuElVTalaU1caMGHvlOzinWBxPUWm3+soyF5yp8fWXQ3/qzcm1t6tGypNaVMoD37buJkJguHjB9Xcy4O3mkbw==", + "dev": true, + "dependencies": { + "svgpath": "^1.0.7", + "xml2js": "^0.4.5" + } + }, + "node_modules/svgpath": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/svgpath/-/svgpath-1.0.7.tgz", + "integrity": "sha512-l80jk+Hkhz9S4CFe+C3M4iem7ULN5/V1SOjfBhSEYIes9Evlq/0Mtio6mLSEfIsyAfgroGbtg+R6ddZQPGVqZQ==", + "dev": true + }, + "node_modules/symbol-tree": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", + "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==", + "dev": true + }, + "node_modules/tapable": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", + "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/terser": { + "version": "4.8.1", + "resolved": "https://registry.npmjs.org/terser/-/terser-4.8.1.tgz", + "integrity": "sha512-4GnLC0x667eJG0ewJTa6z/yXrbLGv80D9Ru6HIpCQmO+Q4PfEtBFi0ObSckqwL6VyQv/7ENJieXHo2ANmdQwgw==", + "dev": true, + "dependencies": { + "commander": "^2.20.0", + "source-map": "~0.6.1", + "source-map-support": "~0.5.12" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/terser-webpack-plugin": { + "version": "1.4.5", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-1.4.5.tgz", + "integrity": "sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw==", + "dev": true, + "dependencies": { + "cacache": "^12.0.2", + "find-cache-dir": "^2.1.0", + "is-wsl": "^1.1.0", + "schema-utils": "^1.0.0", + "serialize-javascript": "^4.0.0", + "source-map": "^0.6.1", + "terser": "^4.1.2", + "webpack-sources": "^1.4.0", + "worker-farm": "^1.7.0" + }, + "engines": { + "node": ">= 6.9.0" + }, + "peerDependencies": { + "webpack": "^4.0.0" + } + }, + "node_modules/terser/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true + }, + "node_modules/test-exclude": { + "version": "5.2.3", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-5.2.3.tgz", + "integrity": "sha512-M+oxtseCFO3EDtAaGH7iiej3CBkzXqFMbzqYAACdzKui4eZA+pq3tZEwChvOdNfa7xxy8BfbmgJSIr43cC/+2g==", + "dev": true, + "dependencies": { + "glob": "^7.1.3", + "minimatch": "^3.0.4", + "read-pkg-up": "^4.0.0", + "require-main-filename": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/throat": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/throat/-/throat-4.1.0.tgz", + "integrity": "sha512-wCVxLDcFxw7ujDxaeJC6nfl2XfHJNYs8yUYJnvMgtPEFlttP9tHSfRUv2vBe6C4hkVFPWoP1P6ZccbYjmSEkKA==", + "dev": true + }, + "node_modules/through2": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "dev": true, + "dependencies": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + }, + "node_modules/through2/node_modules/readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/through2/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/thunky": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", + "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==", + "dev": true + }, + "node_modules/timers-browserify": { + "version": "2.0.12", + "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.12.tgz", + "integrity": "sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==", + "dev": true, + "dependencies": { + "setimmediate": "^1.0.4" + }, + "engines": { + "node": ">=0.6.0" + } + }, + "node_modules/tmpl": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", + "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", + "dev": true + }, + "node_modules/to-arraybuffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz", + "integrity": "sha512-okFlQcoGTi4LQBG/PgSYblw9VOyptsz2KJZqc6qtgGdes8VktzUQkj4BI2blit072iS8VODNcMA+tvnS9dnuMA==", + "dev": true + }, + "node_modules/to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/to-object-path": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", + "integrity": "sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-object-path/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", + "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", + "dev": true, + "dependencies": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "optional": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/to-regex-range/node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "dev": true, + "engines": { + "node": ">=0.6" + } + }, + "node_modules/tough-cookie": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", + "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", + "dev": true, + "dependencies": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/tr46": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz", + "integrity": "sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==", + "dev": true, + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/tslib": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", + "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" + }, + "node_modules/tty-browserify": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz", + "integrity": "sha512-JVa5ijo+j/sOoHGjw0sxw734b1LhBkQ3bvUGNdxnVXDCX81Yx7TFgnZygxrIIWn23hbfTaMYLwRmAxFyDuFmIw==", + "dev": true + }, + "node_modules/tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==", + "dev": true, + "dependencies": { + "safe-buffer": "^5.0.1" + }, + "engines": { + "node": "*" + } + }, + "node_modules/tweetnacl": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", + "integrity": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==", + "dev": true + }, + "node_modules/type-check": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", + "integrity": "sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==", + "dev": true, + "dependencies": { + "prelude-ls": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "dev": true, + "dependencies": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/typedarray": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==", + "dev": true + }, + "node_modules/unbox-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", + "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-bigints": "^1.0.2", + "has-symbols": "^1.0.3", + "which-boxed-primitive": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/unicode-canonical-property-names-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", + "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", + "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", + "dev": true, + "dependencies": { + "unicode-canonical-property-names-ecmascript": "^2.0.0", + "unicode-property-aliases-ecmascript": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-value-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz", + "integrity": "sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-property-aliases-ecmascript": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", + "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/union-value": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", + "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", + "dev": true, + "dependencies": { + "arr-union": "^3.1.0", + "get-value": "^2.0.6", + "is-extendable": "^0.1.1", + "set-value": "^2.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/union-value/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unique-filename": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz", + "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==", + "dev": true, + "dependencies": { + "unique-slug": "^2.0.0" + } + }, + "node_modules/unique-slug": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz", + "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==", + "dev": true, + "dependencies": { + "imurmurhash": "^0.1.4" + } + }, + "node_modules/unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/unset-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", + "integrity": "sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==", + "dev": true, + "dependencies": { + "has-value": "^0.3.1", + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-value": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", + "integrity": "sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==", + "dev": true, + "dependencies": { + "get-value": "^2.0.3", + "has-values": "^0.1.4", + "isobject": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-value/node_modules/isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==", + "dev": true, + "dependencies": { + "isarray": "1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-values": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", + "integrity": "sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/upath": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", + "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", + "dev": true, + "engines": { + "node": ">=4", + "yarn": "*" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.9.tgz", + "integrity": "sha512-/xsqn21EGVdXI3EXSum1Yckj3ZVZugqyOZQ/CxYPBD/R+ko9NSUScf8tFF4dOKY+2pvSSJA/S+5B8s4Zr4kyvg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + } + ], + "dependencies": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + }, + "bin": { + "browserslist-lint": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/update-browserslist-db/node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "dev": true + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/urix": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", + "integrity": "sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==", + "deprecated": "Please see https://github.com/lydell/urix#deprecated", + "dev": true + }, + "node_modules/url": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", + "integrity": "sha512-kbailJa29QrtXnxgq+DdCEGlbTeYM2eJUxsz6vjZavrCYPMIFHMKQmSKYAIuUK2i7hgPm28a8piX5NTUtM/LKQ==", + "dev": true, + "dependencies": { + "punycode": "1.3.2", + "querystring": "0.2.0" + } + }, + "node_modules/url-parse": { + "version": "1.5.10", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", + "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", + "dev": true, + "dependencies": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + } + }, + "node_modules/url/node_modules/punycode": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", + "integrity": "sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw==", + "dev": true + }, + "node_modules/use": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", + "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/util": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/util/-/util-0.11.1.tgz", + "integrity": "sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==", + "dev": true, + "dependencies": { + "inherits": "2.0.3" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true + }, + "node_modules/util.promisify": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.1.1.tgz", + "integrity": "sha512-/s3UsZUrIfa6xDhr7zZhnE9SLQ5RIXyYfiVnMMyMDzOc8WhWN4Nbh36H842OyurKbCDAesZOJaVyvmSl6fhGQw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "for-each": "^0.3.3", + "has-symbols": "^1.0.1", + "object.getownpropertydescriptors": "^2.1.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/util/node_modules/inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", + "dev": true + }, + "node_modules/utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", + "dev": true, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", + "deprecated": "Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.", + "dev": true, + "bin": { + "uuid": "bin/uuid" + } + }, + "node_modules/v8-compile-cache": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", + "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==", + "dev": true + }, + "node_modules/validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "dev": true, + "dependencies": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/verror": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", + "integrity": "sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==", + "dev": true, + "engines": [ + "node >=0.6.0" + ], + "dependencies": { + "assert-plus": "^1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "^1.2.0" + } + }, + "node_modules/vm-browserify": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz", + "integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==", + "dev": true + }, + "node_modules/w3c-hr-time": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz", + "integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==", + "dev": true, + "dependencies": { + "browser-process-hrtime": "^1.0.0" + } + }, + "node_modules/walker": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", + "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", + "dev": true, + "dependencies": { + "makeerror": "1.0.12" + } + }, + "node_modules/watchpack": { + "version": "1.7.5", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-1.7.5.tgz", + "integrity": "sha512-9P3MWk6SrKjHsGkLT2KHXdQ/9SNkyoJbabxnKOoJepsvJjJG8uYTR3yTPxPQvNDI3w4Nz1xnE0TLHK4RIVe/MQ==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.2", + "neo-async": "^2.5.0" + }, + "optionalDependencies": { + "chokidar": "^3.4.1", + "watchpack-chokidar2": "^2.0.1" + } + }, + "node_modules/watchpack-chokidar2": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/watchpack-chokidar2/-/watchpack-chokidar2-2.0.1.tgz", + "integrity": "sha512-nCFfBIPKr5Sh61s4LPpy1Wtfi0HE8isJ3d2Yb5/Ppw2P2B/3eVSEBjKfN0fmHJSK14+31KwMKmcrzs2GM4P0Ww==", + "dev": true, + "optional": true, + "dependencies": { + "chokidar": "^2.1.8" + } + }, + "node_modules/watchpack-chokidar2/node_modules/anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "dev": true, + "optional": true, + "dependencies": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + } + }, + "node_modules/watchpack-chokidar2/node_modules/anymatch/node_modules/normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", + "dev": true, + "optional": true, + "dependencies": { + "remove-trailing-separator": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/binary-extensions": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", + "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "optional": true, + "dependencies": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/chokidar": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", + "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", + "deprecated": "Chokidar 2 does not receive security updates since 2019. Upgrade to chokidar 3 with 15x fewer dependencies", + "dev": true, + "optional": true, + "dependencies": { + "anymatch": "^2.0.0", + "async-each": "^1.0.1", + "braces": "^2.3.2", + "glob-parent": "^3.1.0", + "inherits": "^2.0.3", + "is-binary-path": "^1.0.0", + "is-glob": "^4.0.0", + "normalize-path": "^3.0.0", + "path-is-absolute": "^1.0.0", + "readdirp": "^2.2.1", + "upath": "^1.1.1" + }, + "optionalDependencies": { + "fsevents": "^1.2.7" + } + }, + "node_modules/watchpack-chokidar2/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "optional": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", + "dev": true, + "optional": true, + "dependencies": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/fsevents": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "deprecated": "fsevents 1 will break on node v14+ and could be using insecure binaries. Upgrade to fsevents 2.", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "dependencies": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==", + "dev": true, + "optional": true, + "dependencies": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/glob-parent/node_modules/is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", + "dev": true, + "optional": true, + "dependencies": { + "is-extglob": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/is-binary-path": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", + "integrity": "sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==", + "dev": true, + "optional": true, + "dependencies": { + "binary-extensions": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "optional": true, + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/watchpack-chokidar2/node_modules/readdirp": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", + "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", + "dev": true, + "optional": true, + "dependencies": { + "graceful-fs": "^4.1.11", + "micromatch": "^3.1.10", + "readable-stream": "^2.0.2" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/watchpack-chokidar2/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "optional": true, + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", + "dev": true, + "optional": true, + "dependencies": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/wbuf": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", + "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", + "dev": true, + "dependencies": { + "minimalistic-assert": "^1.0.0" + } + }, + "node_modules/webidl-conversions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz", + "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==", + "dev": true + }, + "node_modules/webpack": { + "version": "4.46.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.46.0.tgz", + "integrity": "sha512-6jJuJjg8znb/xRItk7bkT0+Q7AHCYjjFnvKIWQPkNIOyRqoCGvkOs0ipeQzrqz4l5FtN5ZI/ukEHroeX/o1/5Q==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/wasm-edit": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0", + "acorn": "^6.4.1", + "ajv": "^6.10.2", + "ajv-keywords": "^3.4.1", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^4.5.0", + "eslint-scope": "^4.0.3", + "json-parse-better-errors": "^1.0.2", + "loader-runner": "^2.4.0", + "loader-utils": "^1.2.3", + "memory-fs": "^0.4.1", + "micromatch": "^3.1.10", + "mkdirp": "^0.5.3", + "neo-async": "^2.6.1", + "node-libs-browser": "^2.2.1", + "schema-utils": "^1.0.0", + "tapable": "^1.1.3", + "terser-webpack-plugin": "^1.4.3", + "watchpack": "^1.7.4", + "webpack-sources": "^1.4.1" + }, + "bin": { + "webpack": "bin/webpack.js" + }, + "engines": { + "node": ">=6.11.5" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + }, + "webpack-command": { + "optional": true + } + } + }, + "node_modules/webpack-cli": { + "version": "3.3.12", + "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-3.3.12.tgz", + "integrity": "sha512-NVWBaz9k839ZH/sinurM+HcDvJOTXwSjYp1ku+5XKeOC03z8v5QitnK/x+lAxGXFyhdayoIf/GOpv85z3/xPag==", + "dev": true, + "dependencies": { + "chalk": "^2.4.2", + "cross-spawn": "^6.0.5", + "enhanced-resolve": "^4.1.1", + "findup-sync": "^3.0.0", + "global-modules": "^2.0.0", + "import-local": "^2.0.0", + "interpret": "^1.4.0", + "loader-utils": "^1.4.0", + "supports-color": "^6.1.0", + "v8-compile-cache": "^2.1.1", + "yargs": "^13.3.2" + }, + "bin": { + "webpack-cli": "bin/cli.js" + }, + "engines": { + "node": ">=6.11.5" + }, + "peerDependencies": { + "webpack": "4.x.x" + } + }, + "node_modules/webpack-cli/node_modules/cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "dev": true, + "dependencies": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "engines": { + "node": ">=4.8" + } + }, + "node_modules/webpack-cli/node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/webpack-cli/node_modules/supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-middleware": { + "version": "3.7.3", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-3.7.3.tgz", + "integrity": "sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ==", + "dev": true, + "dependencies": { + "memory-fs": "^0.4.1", + "mime": "^2.4.4", + "mkdirp": "^0.5.1", + "range-parser": "^1.2.1", + "webpack-log": "^2.0.0" + }, + "engines": { + "node": ">= 6" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/webpack-dev-middleware/node_modules/mime": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz", + "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==", + "dev": true, + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/webpack-dev-server": { + "version": "3.11.3", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-3.11.3.tgz", + "integrity": "sha512-3x31rjbEQWKMNzacUZRE6wXvUFuGpH7vr0lIEbYpMAG9BOxi0928QU1BBswOAP3kg3H1O4hiS+sq4YyAn6ANnA==", + "dev": true, + "dependencies": { + "ansi-html-community": "0.0.8", + "bonjour": "^3.5.0", + "chokidar": "^2.1.8", + "compression": "^1.7.4", + "connect-history-api-fallback": "^1.6.0", + "debug": "^4.1.1", + "del": "^4.1.1", + "express": "^4.17.1", + "html-entities": "^1.3.1", + "http-proxy-middleware": "0.19.1", + "import-local": "^2.0.0", + "internal-ip": "^4.3.0", + "ip": "^1.1.5", + "is-absolute-url": "^3.0.3", + "killable": "^1.0.1", + "loglevel": "^1.6.8", + "opn": "^5.5.0", + "p-retry": "^3.0.1", + "portfinder": "^1.0.26", + "schema-utils": "^1.0.0", + "selfsigned": "^1.10.8", + "semver": "^6.3.0", + "serve-index": "^1.9.1", + "sockjs": "^0.3.21", + "sockjs-client": "^1.5.0", + "spdy": "^4.0.2", + "strip-ansi": "^3.0.1", + "supports-color": "^6.1.0", + "url": "^0.11.0", + "webpack-dev-middleware": "^3.7.2", + "webpack-log": "^2.0.0", + "ws": "^6.2.1", + "yargs": "^13.3.2" + }, + "bin": { + "webpack-dev-server": "bin/webpack-dev-server.js" + }, + "engines": { + "node": ">= 6.11.5" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + } + } + }, + "node_modules/webpack-dev-server/node_modules/ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "dev": true, + "dependencies": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + } + }, + "node_modules/webpack-dev-server/node_modules/anymatch/node_modules/normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", + "dev": true, + "dependencies": { + "remove-trailing-separator": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/binary-extensions": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", + "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "dependencies": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/chokidar": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", + "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", + "deprecated": "Chokidar 2 does not receive security updates since 2019. Upgrade to chokidar 3 with 15x fewer dependencies", + "dev": true, + "dependencies": { + "anymatch": "^2.0.0", + "async-each": "^1.0.1", + "braces": "^2.3.2", + "glob-parent": "^3.1.0", + "inherits": "^2.0.3", + "is-binary-path": "^1.0.0", + "is-glob": "^4.0.0", + "normalize-path": "^3.0.0", + "path-is-absolute": "^1.0.0", + "readdirp": "^2.2.1", + "upath": "^1.1.1" + }, + "optionalDependencies": { + "fsevents": "^1.2.7" + } + }, + "node_modules/webpack-dev-server/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", + "dev": true, + "dependencies": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/fsevents": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "deprecated": "fsevents 1 will break on node v14+ and could be using insecure binaries. Upgrade to fsevents 2.", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "dependencies": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/webpack-dev-server/node_modules/glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==", + "dev": true, + "dependencies": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + } + }, + "node_modules/webpack-dev-server/node_modules/glob-parent/node_modules/is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/is-binary-path": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", + "integrity": "sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==", + "dev": true, + "dependencies": { + "binary-extensions": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/webpack-dev-server/node_modules/readdirp": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", + "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.11", + "micromatch": "^3.1.10", + "readable-stream": "^2.0.2" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/webpack-dev-server/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/webpack-dev-server/node_modules/strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", + "dev": true, + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", + "dev": true, + "dependencies": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/ws": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.2.tgz", + "integrity": "sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==", + "dev": true, + "dependencies": { + "async-limiter": "~1.0.0" + } + }, + "node_modules/webpack-log": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/webpack-log/-/webpack-log-2.0.0.tgz", + "integrity": "sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==", + "dev": true, + "dependencies": { + "ansi-colors": "^3.0.0", + "uuid": "^3.3.2" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/webpack-sources": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz", + "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==", + "dev": true, + "dependencies": { + "source-list-map": "^2.0.0", + "source-map": "~0.6.1" + } + }, + "node_modules/webpack/node_modules/acorn": { + "version": "6.4.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.2.tgz", + "integrity": "sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/websocket-driver": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", + "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", + "dev": true, + "dependencies": { + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", + "websocket-extensions": ">=0.1.1" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/websocket-extensions": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", + "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/whatwg-encoding": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz", + "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==", + "dev": true, + "dependencies": { + "iconv-lite": "0.4.24" + } + }, + "node_modules/whatwg-mimetype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz", + "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==", + "dev": true + }, + "node_modules/whatwg-url": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-6.5.0.tgz", + "integrity": "sha512-rhRZRqx/TLJQWUpQ6bmrt2UV4f0HCQ463yQuONJqC6fO2VoEb1pTYddbe59SkYq87aoM5A3bdhMZiUiVws+fzQ==", + "dev": true, + "dependencies": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + } + }, + "node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "dev": true, + "dependencies": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-module": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", + "integrity": "sha512-B+enWhmw6cjfVC7kS8Pj9pCrKSc5txArRyaYGe088shv/FGWH+0Rjx/xPgtsWfsUtS27FkP697E4DDhgrgoc0Q==", + "dev": true + }, + "node_modules/word-wrap": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", + "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/worker-farm": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/worker-farm/-/worker-farm-1.7.0.tgz", + "integrity": "sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==", + "dev": true, + "dependencies": { + "errno": "~0.1.7" + } + }, + "node_modules/wrap-ansi": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", + "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.0", + "string-width": "^3.0.0", + "strip-ansi": "^5.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true + }, + "node_modules/write-file-atomic": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.1.tgz", + "integrity": "sha512-TGHFeZEZMnv+gBFRfjAcxL5bPHrsGKtnb4qsFAws7/vlh+QfwAaySIw4AXP9ZskTTh5GWu3FLuJhsWVdiJPGvg==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.11", + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.2" + } + }, + "node_modules/ws": { + "version": "5.2.3", + "resolved": "https://registry.npmjs.org/ws/-/ws-5.2.3.tgz", + "integrity": "sha512-jZArVERrMsKUatIdnLzqvcfydI85dvd/Fp1u/VOpfdDWQ4c9qWXe+VIeAbQ5FrDwciAkr+lzofXLz3Kuf26AOA==", + "dev": true, + "dependencies": { + "async-limiter": "~1.0.0" + } + }, + "node_modules/xml-name-validator": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz", + "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==", + "dev": true + }, + "node_modules/xml2js": { + "version": "0.4.23", + "resolved": "https://registry.npmjs.org/xml2js/-/xml2js-0.4.23.tgz", + "integrity": "sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug==", + "dev": true, + "dependencies": { + "sax": ">=0.6.0", + "xmlbuilder": "~11.0.0" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/xmlbuilder": { + "version": "11.0.1", + "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-11.0.1.tgz", + "integrity": "sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "dev": true, + "engines": { + "node": ">=0.4" + } + }, + "node_modules/y18n": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", + "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==", + "dev": true + }, + "node_modules/yallist": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", + "integrity": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==", + "dev": true + }, + "node_modules/yargs": { + "version": "13.3.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz", + "integrity": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==", + "dev": true, + "dependencies": { + "cliui": "^5.0.0", + "find-up": "^3.0.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^3.0.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^13.1.2" + } + }, + "node_modules/yargs-parser": { + "version": "13.1.2", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz", + "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", + "dev": true, + "dependencies": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + } + } + }, + "dependencies": { + "@ampproject/remapping": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz", + "integrity": "sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==", + "dev": true, + "requires": { + "@jridgewell/gen-mapping": "^0.1.0", + "@jridgewell/trace-mapping": "^0.3.9" + } + }, + "@babel/cli": { + "version": "7.19.3", + "resolved": "https://registry.npmjs.org/@babel/cli/-/cli-7.19.3.tgz", + "integrity": "sha512-643/TybmaCAe101m2tSVHi9UKpETXP9c/Ff4mD2tAwkdP6esKIfaauZFc67vGEM6r9fekbEGid+sZhbEnSe3dg==", + "dev": true, + "requires": { + "@jridgewell/trace-mapping": "^0.3.8", + "@nicolo-ribaudo/chokidar-2": "2.1.8-no-fsevents.3", + "chokidar": "^3.4.0", + "commander": "^4.0.1", + "convert-source-map": "^1.1.0", + "fs-readdir-recursive": "^1.1.0", + "glob": "^7.2.0", + "make-dir": "^2.1.0", + "slash": "^2.0.0" + } + }, + "@babel/code-frame": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", + "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", + "dev": true, + "requires": { + "@babel/highlight": "^7.18.6" + } + }, + "@babel/compat-data": { + "version": "7.19.3", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.19.3.tgz", + "integrity": "sha512-prBHMK4JYYK+wDjJF1q99KK4JLL+egWS4nmNqdlMUgCExMZ+iZW0hGhyC3VEbsPjvaN0TBhW//VIFwBrk8sEiw==", + "dev": true + }, + "@babel/core": { + "version": "7.19.3", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.19.3.tgz", + "integrity": "sha512-WneDJxdsjEvyKtXKsaBGbDeiyOjR5vYq4HcShxnIbG0qixpoHjI3MqeZM9NDvsojNCEBItQE4juOo/bU6e72gQ==", + "dev": true, + "requires": { + "@ampproject/remapping": "^2.1.0", + "@babel/code-frame": "^7.18.6", + "@babel/generator": "^7.19.3", + "@babel/helper-compilation-targets": "^7.19.3", + "@babel/helper-module-transforms": "^7.19.0", + "@babel/helpers": "^7.19.0", + "@babel/parser": "^7.19.3", + "@babel/template": "^7.18.10", + "@babel/traverse": "^7.19.3", + "@babel/types": "^7.19.3", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.1", + "semver": "^6.3.0" + } + }, + "@babel/generator": { + "version": "7.19.3", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.19.3.tgz", + "integrity": "sha512-fqVZnmp1ncvZU757UzDheKZpfPgatqY59XtW2/j/18H7u76akb8xqvjw82f+i2UKd/ksYsSick/BCLQUUtJ/qQ==", + "dev": true, + "requires": { + "@babel/types": "^7.19.3", + "@jridgewell/gen-mapping": "^0.3.2", + "jsesc": "^2.5.1" + }, + "dependencies": { + "@jridgewell/gen-mapping": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", + "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", + "dev": true, + "requires": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + } + } + } + }, + "@babel/helper-annotate-as-pure": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz", + "integrity": "sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==", + "dev": true, + "requires": { + "@babel/types": "^7.18.6" + } + }, + "@babel/helper-builder-binary-assignment-operator-visitor": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.18.9.tgz", + "integrity": "sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==", + "dev": true, + "requires": { + "@babel/helper-explode-assignable-expression": "^7.18.6", + "@babel/types": "^7.18.9" + } + }, + "@babel/helper-compilation-targets": { + "version": "7.19.3", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.19.3.tgz", + "integrity": "sha512-65ESqLGyGmLvgR0mst5AdW1FkNlj9rQsCKduzEoEPhBCDFGXvz2jW6bXFG6i0/MrV2s7hhXjjb2yAzcPuQlLwg==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.19.3", + "@babel/helper-validator-option": "^7.18.6", + "browserslist": "^4.21.3", + "semver": "^6.3.0" + } + }, + "@babel/helper-create-class-features-plugin": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.19.0.tgz", + "integrity": "sha512-NRz8DwF4jT3UfrmUoZjd0Uph9HQnP30t7Ash+weACcyNkiYTywpIjDBgReJMKgr+n86sn2nPVVmJ28Dm053Kqw==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-function-name": "^7.19.0", + "@babel/helper-member-expression-to-functions": "^7.18.9", + "@babel/helper-optimise-call-expression": "^7.18.6", + "@babel/helper-replace-supers": "^7.18.9", + "@babel/helper-split-export-declaration": "^7.18.6" + } + }, + "@babel/helper-create-regexp-features-plugin": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.19.0.tgz", + "integrity": "sha512-htnV+mHX32DF81amCDrwIDr8nrp1PTm+3wfBN9/v8QJOLEioOCOG7qNyq0nHeFiWbT3Eb7gsPwEmV64UCQ1jzw==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "regexpu-core": "^5.1.0" + } + }, + "@babel/helper-define-polyfill-provider": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.3.tgz", + "integrity": "sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==", + "dev": true, + "requires": { + "@babel/helper-compilation-targets": "^7.17.7", + "@babel/helper-plugin-utils": "^7.16.7", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2", + "semver": "^6.1.2" + } + }, + "@babel/helper-environment-visitor": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz", + "integrity": "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==", + "dev": true + }, + "@babel/helper-explode-assignable-expression": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.18.6.tgz", + "integrity": "sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==", + "dev": true, + "requires": { + "@babel/types": "^7.18.6" + } + }, + "@babel/helper-function-name": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz", + "integrity": "sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==", + "dev": true, + "requires": { + "@babel/template": "^7.18.10", + "@babel/types": "^7.19.0" + } + }, + "@babel/helper-hoist-variables": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", + "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", + "dev": true, + "requires": { + "@babel/types": "^7.18.6" + } + }, + "@babel/helper-member-expression-to-functions": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.18.9.tgz", + "integrity": "sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg==", + "dev": true, + "requires": { + "@babel/types": "^7.18.9" + } + }, + "@babel/helper-module-imports": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz", + "integrity": "sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==", + "dev": true, + "requires": { + "@babel/types": "^7.18.6" + } + }, + "@babel/helper-module-transforms": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.19.0.tgz", + "integrity": "sha512-3HBZ377Fe14RbLIA+ac3sY4PTgpxHVkFrESaWhoI5PuyXPBBX8+C34qblV9G89ZtycGJCmCI/Ut+VUDK4bltNQ==", + "dev": true, + "requires": { + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-module-imports": "^7.18.6", + "@babel/helper-simple-access": "^7.18.6", + "@babel/helper-split-export-declaration": "^7.18.6", + "@babel/helper-validator-identifier": "^7.18.6", + "@babel/template": "^7.18.10", + "@babel/traverse": "^7.19.0", + "@babel/types": "^7.19.0" + } + }, + "@babel/helper-optimise-call-expression": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz", + "integrity": "sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==", + "dev": true, + "requires": { + "@babel/types": "^7.18.6" + } + }, + "@babel/helper-plugin-utils": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.19.0.tgz", + "integrity": "sha512-40Ryx7I8mT+0gaNxm8JGTZFUITNqdLAgdg0hXzeVZxVD6nFsdhQvip6v8dqkRHzsz1VFpFAaOCHNn0vKBL7Czw==", + "dev": true + }, + "@babel/helper-remap-async-to-generator": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz", + "integrity": "sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-wrap-function": "^7.18.9", + "@babel/types": "^7.18.9" + } + }, + "@babel/helper-replace-supers": { + "version": "7.19.1", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.19.1.tgz", + "integrity": "sha512-T7ahH7wV0Hfs46SFh5Jz3s0B6+o8g3c+7TMxu7xKfmHikg7EAZ3I2Qk9LFhjxXq8sL7UkP5JflezNwoZa8WvWw==", + "dev": true, + "requires": { + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-member-expression-to-functions": "^7.18.9", + "@babel/helper-optimise-call-expression": "^7.18.6", + "@babel/traverse": "^7.19.1", + "@babel/types": "^7.19.0" + } + }, + "@babel/helper-simple-access": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.18.6.tgz", + "integrity": "sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==", + "dev": true, + "requires": { + "@babel/types": "^7.18.6" + } + }, + "@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.18.9.tgz", + "integrity": "sha512-imytd2gHi3cJPsybLRbmFrF7u5BIEuI2cNheyKi3/iOBC63kNn3q8Crn2xVuESli0aM4KYsyEqKyS7lFL8YVtw==", + "dev": true, + "requires": { + "@babel/types": "^7.18.9" + } + }, + "@babel/helper-split-export-declaration": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", + "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", + "dev": true, + "requires": { + "@babel/types": "^7.18.6" + } + }, + "@babel/helper-string-parser": { + "version": "7.18.10", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.18.10.tgz", + "integrity": "sha512-XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw==", + "dev": true + }, + "@babel/helper-validator-identifier": { + "version": "7.19.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz", + "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==", + "dev": true + }, + "@babel/helper-validator-option": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz", + "integrity": "sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==", + "dev": true + }, + "@babel/helper-wrap-function": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.19.0.tgz", + "integrity": "sha512-txX8aN8CZyYGTwcLhlk87KRqncAzhh5TpQamZUa0/u3an36NtDpUP6bQgBCBcLeBs09R/OwQu3OjK0k/HwfNDg==", + "dev": true, + "requires": { + "@babel/helper-function-name": "^7.19.0", + "@babel/template": "^7.18.10", + "@babel/traverse": "^7.19.0", + "@babel/types": "^7.19.0" + } + }, + "@babel/helpers": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.19.0.tgz", + "integrity": "sha512-DRBCKGwIEdqY3+rPJgG/dKfQy9+08rHIAJx8q2p+HSWP87s2HCrQmaAMMyMll2kIXKCW0cO1RdQskx15Xakftg==", + "dev": true, + "requires": { + "@babel/template": "^7.18.10", + "@babel/traverse": "^7.19.0", + "@babel/types": "^7.19.0" + } + }, + "@babel/highlight": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", + "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", + "dev": true, + "requires": { + "@babel/helper-validator-identifier": "^7.18.6", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + } + }, + "@babel/parser": { + "version": "7.19.3", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.19.3.tgz", + "integrity": "sha512-pJ9xOlNWHiy9+FuFP09DEAFbAn4JskgRsVcc169w2xRBC3FRGuQEwjeIMMND9L2zc0iEhO/tGv4Zq+km+hxNpQ==", + "dev": true + }, + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6.tgz", + "integrity": "sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.9.tgz", + "integrity": "sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.18.9", + "@babel/plugin-proposal-optional-chaining": "^7.18.9" + } + }, + "@babel/plugin-proposal-async-generator-functions": { + "version": "7.19.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.19.1.tgz", + "integrity": "sha512-0yu8vNATgLy4ivqMNBIwb1HebCelqN7YX8SL3FDXORv/RqT0zEEWUCH4GH44JsSrvCu6GqnAdR5EBFAPeNBB4Q==", + "dev": true, + "requires": { + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-plugin-utils": "^7.19.0", + "@babel/helper-remap-async-to-generator": "^7.18.9", + "@babel/plugin-syntax-async-generators": "^7.8.4" + } + }, + "@babel/plugin-proposal-class-properties": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz", + "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==", + "dev": true, + "requires": { + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-proposal-class-static-block": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.18.6.tgz", + "integrity": "sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw==", + "dev": true, + "requires": { + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-class-static-block": "^7.14.5" + } + }, + "@babel/plugin-proposal-dynamic-import": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.18.6.tgz", + "integrity": "sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-dynamic-import": "^7.8.3" + } + }, + "@babel/plugin-proposal-export-namespace-from": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz", + "integrity": "sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.9", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + } + }, + "@babel/plugin-proposal-json-strings": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.18.6.tgz", + "integrity": "sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-json-strings": "^7.8.3" + } + }, + "@babel/plugin-proposal-logical-assignment-operators": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.18.9.tgz", + "integrity": "sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.9", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + } + }, + "@babel/plugin-proposal-nullish-coalescing-operator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz", + "integrity": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + } + }, + "@babel/plugin-proposal-numeric-separator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz", + "integrity": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + } + }, + "@babel/plugin-proposal-object-rest-spread": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.18.9.tgz", + "integrity": "sha512-kDDHQ5rflIeY5xl69CEqGEZ0KY369ehsCIEbTGb4siHG5BE9sga/T0r0OUwyZNLMmZE79E1kbsqAjwFCW4ds6Q==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.18.8", + "@babel/helper-compilation-targets": "^7.18.9", + "@babel/helper-plugin-utils": "^7.18.9", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.18.8" + } + }, + "@babel/plugin-proposal-optional-catch-binding": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz", + "integrity": "sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + } + }, + "@babel/plugin-proposal-optional-chaining": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.18.9.tgz", + "integrity": "sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.18.9", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + } + }, + "@babel/plugin-proposal-private-methods": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz", + "integrity": "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==", + "dev": true, + "requires": { + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-proposal-private-property-in-object": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.18.6.tgz", + "integrity": "sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5" + } + }, + "@babel/plugin-proposal-unicode-property-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz", + "integrity": "sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-syntax-class-static-block": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", + "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-syntax-dynamic-import": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", + "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-export-namespace-from": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", + "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.3" + } + }, + "@babel/plugin-syntax-import-assertions": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.18.6.tgz", + "integrity": "sha512-/DU3RXad9+bZwrgWJQKbr39gYbJpLJHezqEzRzi/BHRlJ9zsQb4CK2CA/5apllXNomwA1qHwzvHl+AdEmC5krQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-jsx": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.18.6.tgz", + "integrity": "sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-private-property-in-object": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", + "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-arrow-functions": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.18.6.tgz", + "integrity": "sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-async-to-generator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.18.6.tgz", + "integrity": "sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==", + "dev": true, + "requires": { + "@babel/helper-module-imports": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-remap-async-to-generator": "^7.18.6" + } + }, + "@babel/plugin-transform-block-scoped-functions": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.18.6.tgz", + "integrity": "sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-block-scoping": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.18.9.tgz", + "integrity": "sha512-5sDIJRV1KtQVEbt/EIBwGy4T01uYIo4KRB3VUqzkhrAIOGx7AoctL9+Ux88btY0zXdDyPJ9mW+bg+v+XEkGmtw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.9" + } + }, + "@babel/plugin-transform-classes": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.19.0.tgz", + "integrity": "sha512-YfeEE9kCjqTS9IitkgfJuxjcEtLUHMqa8yUJ6zdz8vR7hKuo6mOy2C05P0F1tdMmDCeuyidKnlrw/iTppHcr2A==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-compilation-targets": "^7.19.0", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-function-name": "^7.19.0", + "@babel/helper-optimise-call-expression": "^7.18.6", + "@babel/helper-plugin-utils": "^7.19.0", + "@babel/helper-replace-supers": "^7.18.9", + "@babel/helper-split-export-declaration": "^7.18.6", + "globals": "^11.1.0" + } + }, + "@babel/plugin-transform-computed-properties": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.18.9.tgz", + "integrity": "sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.9" + } + }, + "@babel/plugin-transform-destructuring": { + "version": "7.18.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.18.13.tgz", + "integrity": "sha512-TodpQ29XekIsex2A+YJPj5ax2plkGa8YYY6mFjCohk/IG9IY42Rtuj1FuDeemfg2ipxIFLzPeA83SIBnlhSIow==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.9" + } + }, + "@babel/plugin-transform-dotall-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.18.6.tgz", + "integrity": "sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-duplicate-keys": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.9.tgz", + "integrity": "sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.9" + } + }, + "@babel/plugin-transform-exponentiation-operator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.18.6.tgz", + "integrity": "sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==", + "dev": true, + "requires": { + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-for-of": { + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.18.8.tgz", + "integrity": "sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-function-name": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.9.tgz", + "integrity": "sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==", + "dev": true, + "requires": { + "@babel/helper-compilation-targets": "^7.18.9", + "@babel/helper-function-name": "^7.18.9", + "@babel/helper-plugin-utils": "^7.18.9" + } + }, + "@babel/plugin-transform-literals": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz", + "integrity": "sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.9" + } + }, + "@babel/plugin-transform-member-expression-literals": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.18.6.tgz", + "integrity": "sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-modules-amd": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.18.6.tgz", + "integrity": "sha512-Pra5aXsmTsOnjM3IajS8rTaLCy++nGM4v3YR4esk5PCsyg9z8NA5oQLwxzMUtDBd8F+UmVza3VxoAaWCbzH1rg==", + "dev": true, + "requires": { + "@babel/helper-module-transforms": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6", + "babel-plugin-dynamic-import-node": "^2.3.3" + } + }, + "@babel/plugin-transform-modules-commonjs": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.18.6.tgz", + "integrity": "sha512-Qfv2ZOWikpvmedXQJDSbxNqy7Xr/j2Y8/KfijM0iJyKkBTmWuvCA1yeH1yDM7NJhBW/2aXxeucLj6i80/LAJ/Q==", + "dev": true, + "requires": { + "@babel/helper-module-transforms": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-simple-access": "^7.18.6", + "babel-plugin-dynamic-import-node": "^2.3.3" + } + }, + "@babel/plugin-transform-modules-systemjs": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.19.0.tgz", + "integrity": "sha512-x9aiR0WXAWmOWsqcsnrzGR+ieaTMVyGyffPVA7F8cXAGt/UxefYv6uSHZLkAFChN5M5Iy1+wjE+xJuPt22H39A==", + "dev": true, + "requires": { + "@babel/helper-hoist-variables": "^7.18.6", + "@babel/helper-module-transforms": "^7.19.0", + "@babel/helper-plugin-utils": "^7.19.0", + "@babel/helper-validator-identifier": "^7.18.6", + "babel-plugin-dynamic-import-node": "^2.3.3" + } + }, + "@babel/plugin-transform-modules-umd": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.18.6.tgz", + "integrity": "sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==", + "dev": true, + "requires": { + "@babel/helper-module-transforms": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.19.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.19.1.tgz", + "integrity": "sha512-oWk9l9WItWBQYS4FgXD4Uyy5kq898lvkXpXQxoJEY1RnvPk4R/Dvu2ebXU9q8lP+rlMwUQTFf2Ok6d78ODa0kw==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.19.0", + "@babel/helper-plugin-utils": "^7.19.0" + } + }, + "@babel/plugin-transform-new-target": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.18.6.tgz", + "integrity": "sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-object-super": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.18.6.tgz", + "integrity": "sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-replace-supers": "^7.18.6" + } + }, + "@babel/plugin-transform-parameters": { + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.18.8.tgz", + "integrity": "sha512-ivfbE3X2Ss+Fj8nnXvKJS6sjRG4gzwPMsP+taZC+ZzEGjAYlvENixmt1sZ5Ca6tWls+BlKSGKPJ6OOXvXCbkFg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-property-literals": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.18.6.tgz", + "integrity": "sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-react-display-name": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.18.6.tgz", + "integrity": "sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-react-jsx": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.19.0.tgz", + "integrity": "sha512-UVEvX3tXie3Szm3emi1+G63jyw1w5IcMY0FSKM+CRnKRI5Mr1YbCNgsSTwoTwKphQEG9P+QqmuRFneJPZuHNhg==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-module-imports": "^7.18.6", + "@babel/helper-plugin-utils": "^7.19.0", + "@babel/plugin-syntax-jsx": "^7.18.6", + "@babel/types": "^7.19.0" + } + }, + "@babel/plugin-transform-react-jsx-development": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.18.6.tgz", + "integrity": "sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==", + "dev": true, + "requires": { + "@babel/plugin-transform-react-jsx": "^7.18.6" + } + }, + "@babel/plugin-transform-react-pure-annotations": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.18.6.tgz", + "integrity": "sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-regenerator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.18.6.tgz", + "integrity": "sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6", + "regenerator-transform": "^0.15.0" + } + }, + "@babel/plugin-transform-reserved-words": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.18.6.tgz", + "integrity": "sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-shorthand-properties": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.18.6.tgz", + "integrity": "sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-spread": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.19.0.tgz", + "integrity": "sha512-RsuMk7j6n+r752EtzyScnWkQyuJdli6LdO5Klv8Yx0OfPVTcQkIUfS8clx5e9yHXzlnhOZF3CbQ8C2uP5j074w==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.19.0", + "@babel/helper-skip-transparent-expression-wrappers": "^7.18.9" + } + }, + "@babel/plugin-transform-sticky-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.18.6.tgz", + "integrity": "sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-template-literals": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.9.tgz", + "integrity": "sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.9" + } + }, + "@babel/plugin-transform-typeof-symbol": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.9.tgz", + "integrity": "sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.9" + } + }, + "@babel/plugin-transform-unicode-escapes": { + "version": "7.18.10", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.18.10.tgz", + "integrity": "sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.9" + } + }, + "@babel/plugin-transform-unicode-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.18.6.tgz", + "integrity": "sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/preset-env": { + "version": "7.19.3", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.19.3.tgz", + "integrity": "sha512-ziye1OTc9dGFOAXSWKUqQblYHNlBOaDl8wzqf2iKXJAltYiR3hKHUKmkt+S9PppW7RQpq4fFCrwwpIDj/f5P4w==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.19.3", + "@babel/helper-compilation-targets": "^7.19.3", + "@babel/helper-plugin-utils": "^7.19.0", + "@babel/helper-validator-option": "^7.18.6", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.18.6", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.18.9", + "@babel/plugin-proposal-async-generator-functions": "^7.19.1", + "@babel/plugin-proposal-class-properties": "^7.18.6", + "@babel/plugin-proposal-class-static-block": "^7.18.6", + "@babel/plugin-proposal-dynamic-import": "^7.18.6", + "@babel/plugin-proposal-export-namespace-from": "^7.18.9", + "@babel/plugin-proposal-json-strings": "^7.18.6", + "@babel/plugin-proposal-logical-assignment-operators": "^7.18.9", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", + "@babel/plugin-proposal-numeric-separator": "^7.18.6", + "@babel/plugin-proposal-object-rest-spread": "^7.18.9", + "@babel/plugin-proposal-optional-catch-binding": "^7.18.6", + "@babel/plugin-proposal-optional-chaining": "^7.18.9", + "@babel/plugin-proposal-private-methods": "^7.18.6", + "@babel/plugin-proposal-private-property-in-object": "^7.18.6", + "@babel/plugin-proposal-unicode-property-regex": "^7.18.6", + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-class-properties": "^7.12.13", + "@babel/plugin-syntax-class-static-block": "^7.14.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3", + "@babel/plugin-syntax-import-assertions": "^7.18.6", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5", + "@babel/plugin-syntax-top-level-await": "^7.14.5", + "@babel/plugin-transform-arrow-functions": "^7.18.6", + "@babel/plugin-transform-async-to-generator": "^7.18.6", + "@babel/plugin-transform-block-scoped-functions": "^7.18.6", + "@babel/plugin-transform-block-scoping": "^7.18.9", + "@babel/plugin-transform-classes": "^7.19.0", + "@babel/plugin-transform-computed-properties": "^7.18.9", + "@babel/plugin-transform-destructuring": "^7.18.13", + "@babel/plugin-transform-dotall-regex": "^7.18.6", + "@babel/plugin-transform-duplicate-keys": "^7.18.9", + "@babel/plugin-transform-exponentiation-operator": "^7.18.6", + "@babel/plugin-transform-for-of": "^7.18.8", + "@babel/plugin-transform-function-name": "^7.18.9", + "@babel/plugin-transform-literals": "^7.18.9", + "@babel/plugin-transform-member-expression-literals": "^7.18.6", + "@babel/plugin-transform-modules-amd": "^7.18.6", + "@babel/plugin-transform-modules-commonjs": "^7.18.6", + "@babel/plugin-transform-modules-systemjs": "^7.19.0", + "@babel/plugin-transform-modules-umd": "^7.18.6", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.19.1", + "@babel/plugin-transform-new-target": "^7.18.6", + "@babel/plugin-transform-object-super": "^7.18.6", + "@babel/plugin-transform-parameters": "^7.18.8", + "@babel/plugin-transform-property-literals": "^7.18.6", + "@babel/plugin-transform-regenerator": "^7.18.6", + "@babel/plugin-transform-reserved-words": "^7.18.6", + "@babel/plugin-transform-shorthand-properties": "^7.18.6", + "@babel/plugin-transform-spread": "^7.19.0", + "@babel/plugin-transform-sticky-regex": "^7.18.6", + "@babel/plugin-transform-template-literals": "^7.18.9", + "@babel/plugin-transform-typeof-symbol": "^7.18.9", + "@babel/plugin-transform-unicode-escapes": "^7.18.10", + "@babel/plugin-transform-unicode-regex": "^7.18.6", + "@babel/preset-modules": "^0.1.5", + "@babel/types": "^7.19.3", + "babel-plugin-polyfill-corejs2": "^0.3.3", + "babel-plugin-polyfill-corejs3": "^0.6.0", + "babel-plugin-polyfill-regenerator": "^0.4.1", + "core-js-compat": "^3.25.1", + "semver": "^6.3.0" + } + }, + "@babel/preset-modules": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz", + "integrity": "sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", + "@babel/plugin-transform-dotall-regex": "^7.4.4", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" + } + }, + "@babel/preset-react": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.18.6.tgz", + "integrity": "sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-validator-option": "^7.18.6", + "@babel/plugin-transform-react-display-name": "^7.18.6", + "@babel/plugin-transform-react-jsx": "^7.18.6", + "@babel/plugin-transform-react-jsx-development": "^7.18.6", + "@babel/plugin-transform-react-pure-annotations": "^7.18.6" + } + }, + "@babel/runtime": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.19.0.tgz", + "integrity": "sha512-eR8Lo9hnDS7tqkO7NsV+mKvCmv5boaXFSZ70DnfhcgiEne8hv9oCEd36Klw74EtizEqLsy4YnW8UWwpBVolHZA==", + "dev": true, + "requires": { + "regenerator-runtime": "^0.13.4" + } + }, + "@babel/template": { + "version": "7.18.10", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.10.tgz", + "integrity": "sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.18.6", + "@babel/parser": "^7.18.10", + "@babel/types": "^7.18.10" + } + }, + "@babel/traverse": { + "version": "7.19.3", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.19.3.tgz", + "integrity": "sha512-qh5yf6149zhq2sgIXmwjnsvmnNQC2iw70UFjp4olxucKrWd/dvlUsBI88VSLUsnMNF7/vnOiA+nk1+yLoCqROQ==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.18.6", + "@babel/generator": "^7.19.3", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-function-name": "^7.19.0", + "@babel/helper-hoist-variables": "^7.18.6", + "@babel/helper-split-export-declaration": "^7.18.6", + "@babel/parser": "^7.19.3", + "@babel/types": "^7.19.3", + "debug": "^4.1.0", + "globals": "^11.1.0" + } + }, + "@babel/types": { + "version": "7.19.3", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.19.3.tgz", + "integrity": "sha512-hGCaQzIY22DJlDh9CH7NOxgKkFjBk0Cw9xDO1Xmh2151ti7wiGfQ3LauXzL4HP1fmFlTX6XjpRETTpUcv7wQLw==", + "dev": true, + "requires": { + "@babel/helper-string-parser": "^7.18.10", + "@babel/helper-validator-identifier": "^7.19.1", + "to-fast-properties": "^2.0.0" + } + }, + "@cnakazawa/watch": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@cnakazawa/watch/-/watch-1.0.4.tgz", + "integrity": "sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==", + "dev": true, + "requires": { + "exec-sh": "^0.3.2", + "minimist": "^1.2.0" + } + }, + "@jest/console": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-24.9.0.tgz", + "integrity": "sha512-Zuj6b8TnKXi3q4ymac8EQfc3ea/uhLeCGThFqXeC8H9/raaH8ARPUTdId+XyGd03Z4In0/VjD2OYFcBF09fNLQ==", + "dev": true, + "requires": { + "@jest/source-map": "^24.9.0", + "chalk": "^2.0.1", + "slash": "^2.0.0" + } + }, + "@jest/core": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-24.9.0.tgz", + "integrity": "sha512-Fogg3s4wlAr1VX7q+rhV9RVnUv5tD7VuWfYy1+whMiWUrvl7U3QJSJyWcDio9Lq2prqYsZaeTv2Rz24pWGkJ2A==", + "dev": true, + "requires": { + "@jest/console": "^24.7.1", + "@jest/reporters": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "ansi-escapes": "^3.0.0", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "graceful-fs": "^4.1.15", + "jest-changed-files": "^24.9.0", + "jest-config": "^24.9.0", + "jest-haste-map": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-resolve": "^24.9.0", + "jest-resolve-dependencies": "^24.9.0", + "jest-runner": "^24.9.0", + "jest-runtime": "^24.9.0", + "jest-snapshot": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "jest-watcher": "^24.9.0", + "micromatch": "^3.1.10", + "p-each-series": "^1.0.0", + "realpath-native": "^1.1.0", + "rimraf": "^2.5.4", + "slash": "^2.0.0", + "strip-ansi": "^5.0.0" + } + }, + "@jest/environment": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-24.9.0.tgz", + "integrity": "sha512-5A1QluTPhvdIPFYnO3sZC3smkNeXPVELz7ikPbhUj0bQjB07EoE9qtLrem14ZUYWdVayYbsjVwIiL4WBIMV4aQ==", + "dev": true, + "requires": { + "@jest/fake-timers": "^24.9.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0" + } + }, + "@jest/fake-timers": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-24.9.0.tgz", + "integrity": "sha512-eWQcNa2YSwzXWIMC5KufBh3oWRIijrQFROsIqt6v/NS9Io/gknw1jsAC9c+ih/RQX4A3O7SeWAhQeN0goKhT9A==", + "dev": true, + "requires": { + "@jest/types": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0" + } + }, + "@jest/reporters": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-24.9.0.tgz", + "integrity": "sha512-mu4X0yjaHrffOsWmVLzitKmmmWSQ3GGuefgNscUSWNiUNcEOSEQk9k3pERKEQVBb0Cnn88+UESIsZEMH3o88Gw==", + "dev": true, + "requires": { + "@jest/environment": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "glob": "^7.1.2", + "istanbul-lib-coverage": "^2.0.2", + "istanbul-lib-instrument": "^3.0.1", + "istanbul-lib-report": "^2.0.4", + "istanbul-lib-source-maps": "^3.0.1", + "istanbul-reports": "^2.2.6", + "jest-haste-map": "^24.9.0", + "jest-resolve": "^24.9.0", + "jest-runtime": "^24.9.0", + "jest-util": "^24.9.0", + "jest-worker": "^24.6.0", + "node-notifier": "^5.4.2", + "slash": "^2.0.0", + "source-map": "^0.6.0", + "string-length": "^2.0.0" + } + }, + "@jest/source-map": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-24.9.0.tgz", + "integrity": "sha512-/Xw7xGlsZb4MJzNDgB7PW5crou5JqWiBQaz6xyPd3ArOg2nfn/PunV8+olXbbEZzNl591o5rWKE9BRDaFAuIBg==", + "dev": true, + "requires": { + "callsites": "^3.0.0", + "graceful-fs": "^4.1.15", + "source-map": "^0.6.0" + } + }, + "@jest/test-result": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-24.9.0.tgz", + "integrity": "sha512-XEFrHbBonBJ8dGp2JmF8kP/nQI/ImPpygKHwQ/SY+es59Z3L5PI4Qb9TQQMAEeYsThG1xF0k6tmG0tIKATNiiA==", + "dev": true, + "requires": { + "@jest/console": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/istanbul-lib-coverage": "^2.0.0" + } + }, + "@jest/test-sequencer": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-24.9.0.tgz", + "integrity": "sha512-6qqsU4o0kW1dvA95qfNog8v8gkRN9ph6Lz7r96IvZpHdNipP2cBcb07J1Z45mz/VIS01OHJ3pY8T5fUY38tg4A==", + "dev": true, + "requires": { + "@jest/test-result": "^24.9.0", + "jest-haste-map": "^24.9.0", + "jest-runner": "^24.9.0", + "jest-runtime": "^24.9.0" + } + }, + "@jest/transform": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-24.9.0.tgz", + "integrity": "sha512-TcQUmyNRxV94S0QpMOnZl0++6RMiqpbH/ZMccFB/amku6Uwvyb1cjYX7xkp5nGNkbX4QPH/FcB6q1HBTHynLmQ==", + "dev": true, + "requires": { + "@babel/core": "^7.1.0", + "@jest/types": "^24.9.0", + "babel-plugin-istanbul": "^5.1.0", + "chalk": "^2.0.1", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.1.15", + "jest-haste-map": "^24.9.0", + "jest-regex-util": "^24.9.0", + "jest-util": "^24.9.0", + "micromatch": "^3.1.10", + "pirates": "^4.0.1", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "2.4.1" + } + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-24.9.0.tgz", + "integrity": "sha512-XKK7ze1apu5JWQ5eZjHITP66AX+QsLlbaJRBGYr8pNzwcAE2JVkwnf0yqjHTsDRcjR0mujy/NmZMXw5kl+kGBw==", + "dev": true, + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + } + }, + "@jridgewell/gen-mapping": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz", + "integrity": "sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==", + "dev": true, + "requires": { + "@jridgewell/set-array": "^1.0.0", + "@jridgewell/sourcemap-codec": "^1.4.10" + } + }, + "@jridgewell/resolve-uri": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", + "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", + "dev": true + }, + "@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "dev": true + }, + "@jridgewell/sourcemap-codec": { + "version": "1.4.14", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", + "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", + "dev": true + }, + "@jridgewell/trace-mapping": { + "version": "0.3.15", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.15.tgz", + "integrity": "sha512-oWZNOULl+UbhsgB51uuZzglikfIKSUBO/M9W2OfEjn7cmqoAiCgmv9lyACTUacZwBz0ITnJ2NqjU8Tx0DHL88g==", + "dev": true, + "requires": { + "@jridgewell/resolve-uri": "^3.0.3", + "@jridgewell/sourcemap-codec": "^1.4.10" + } + }, + "@nicolo-ribaudo/chokidar-2": { + "version": "2.1.8-no-fsevents.3", + "resolved": "https://registry.npmjs.org/@nicolo-ribaudo/chokidar-2/-/chokidar-2-2.1.8-no-fsevents.3.tgz", + "integrity": "sha512-s88O1aVtXftvp5bCPB7WnmXc5IwOZZ7YPuwNPt+GtOOXpPvad1LfbmjYv+qII7zP6RU2QGnqve27dnLycEnyEQ==", + "dev": true, + "optional": true + }, + "@primer/octicons": { + "version": "9.6.0", + "resolved": "https://registry.npmjs.org/@primer/octicons/-/octicons-9.6.0.tgz", + "integrity": "sha512-B5Wzk5izRXXz0JqEXJkVUtqhCXSpUKgqYkVwegMkp5sziBW+ksd9LPbONlCWyyLODwf9GsI2sBXekR7m+JJDBw==", + "dev": true, + "requires": { + "object-assign": "^4.1.1" + } + }, + "@types/babel__core": { + "version": "7.1.19", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.19.tgz", + "integrity": "sha512-WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw==", + "dev": true, + "requires": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "@types/babel__generator": { + "version": "7.6.4", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz", + "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==", + "dev": true, + "requires": { + "@babel/types": "^7.0.0" + } + }, + "@types/babel__template": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz", + "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", + "dev": true, + "requires": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "@types/babel__traverse": { + "version": "7.18.2", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.18.2.tgz", + "integrity": "sha512-FcFaxOr2V5KZCviw1TnutEMVUVsGt4D2hP1TAfXZAMKuHYW3xQhe3jTxNPWutgCJ3/X1c5yX8ZoGVEItxKbwBg==", + "dev": true, + "requires": { + "@babel/types": "^7.3.0" + } + }, + "@types/glob": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==", + "dev": true, + "requires": { + "@types/minimatch": "*", + "@types/node": "*" + } + }, + "@types/istanbul-lib-coverage": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz", + "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==", + "dev": true + }, + "@types/istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", + "dev": true, + "requires": { + "@types/istanbul-lib-coverage": "*" + } + }, + "@types/istanbul-reports": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-1.1.2.tgz", + "integrity": "sha512-P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw==", + "dev": true, + "requires": { + "@types/istanbul-lib-coverage": "*", + "@types/istanbul-lib-report": "*" + } + }, + "@types/minimatch": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-5.1.2.tgz", + "integrity": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==", + "dev": true + }, + "@types/node": { + "version": "18.7.23", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.23.tgz", + "integrity": "sha512-DWNcCHolDq0ZKGizjx2DZjR/PqsYwAcYUJmfMWqtVU2MBMG5Mo+xFZrhGId5r/O5HOuMPyQEcM6KUBp5lBZZBg==", + "dev": true + }, + "@types/stack-utils": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-1.0.1.tgz", + "integrity": "sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw==", + "dev": true + }, + "@types/yargs": { + "version": "13.0.12", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-13.0.12.tgz", + "integrity": "sha512-qCxJE1qgz2y0hA4pIxjBR+PelCH0U5CK1XJXFwCNqfmliatKp47UCXXE9Dyk1OXBDLvsCF57TqQEJaeLfDYEOQ==", + "dev": true, + "requires": { + "@types/yargs-parser": "*" + } + }, + "@types/yargs-parser": { + "version": "21.0.0", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz", + "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==", + "dev": true + }, + "@webassemblyjs/ast": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.9.0.tgz", + "integrity": "sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==", + "dev": true, + "requires": { + "@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": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz", + "integrity": "sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==", + "dev": true + }, + "@webassemblyjs/helper-api-error": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz", + "integrity": "sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==", + "dev": true + }, + "@webassemblyjs/helper-buffer": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz", + "integrity": "sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA==", + "dev": true + }, + "@webassemblyjs/helper-code-frame": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.0.tgz", + "integrity": "sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA==", + "dev": true, + "requires": { + "@webassemblyjs/wast-printer": "1.9.0" + } + }, + "@webassemblyjs/helper-fsm": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz", + "integrity": "sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw==", + "dev": true + }, + "@webassemblyjs/helper-module-context": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.0.tgz", + "integrity": "sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0" + } + }, + "@webassemblyjs/helper-wasm-bytecode": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz", + "integrity": "sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==", + "dev": true + }, + "@webassemblyjs/helper-wasm-section": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz", + "integrity": "sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==", + "dev": true, + "requires": { + "@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": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz", + "integrity": "sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==", + "dev": true, + "requires": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "@webassemblyjs/leb128": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.9.0.tgz", + "integrity": "sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==", + "dev": true, + "requires": { + "@xtuc/long": "4.2.2" + } + }, + "@webassemblyjs/utf8": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.9.0.tgz", + "integrity": "sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w==", + "dev": true + }, + "@webassemblyjs/wasm-edit": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz", + "integrity": "sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==", + "dev": true, + "requires": { + "@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": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz", + "integrity": "sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==", + "dev": true, + "requires": { + "@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": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz", + "integrity": "sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A==", + "dev": true, + "requires": { + "@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": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz", + "integrity": "sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==", + "dev": true, + "requires": { + "@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": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.9.0.tgz", + "integrity": "sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/floating-point-hex-parser": "1.9.0", + "@webassemblyjs/helper-api-error": "1.9.0", + "@webassemblyjs/helper-code-frame": "1.9.0", + "@webassemblyjs/helper-fsm": "1.9.0", + "@xtuc/long": "4.2.2" + } + }, + "@webassemblyjs/wast-printer": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz", + "integrity": "sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0", + "@xtuc/long": "4.2.2" + } + }, + "@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", + "dev": true + }, + "@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", + "dev": true + }, + "abab": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", + "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==", + "dev": true + }, + "accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "dev": true, + "requires": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + } + }, + "acorn": { + "version": "5.7.4", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-5.7.4.tgz", + "integrity": "sha512-1D++VG7BhrtvQpNbBzovKNc1FLGGEE/oGe7b9xJm/RFHMBeUaUGpluV9RLjZa47YFdPcDAenEYuq9pQPcMdLJg==", + "dev": true + }, + "acorn-globals": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-4.3.4.tgz", + "integrity": "sha512-clfQEh21R+D0leSbUdWf3OcfqyaCSAQ8Ryq00bofSekfr9W8u1jyYZo6ir0xu9Gtcf7BjcHJpnbZH7JOCpP60A==", + "dev": true, + "requires": { + "acorn": "^6.0.1", + "acorn-walk": "^6.0.1" + }, + "dependencies": { + "acorn": { + "version": "6.4.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.2.tgz", + "integrity": "sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==", + "dev": true + } + } + }, + "acorn-walk": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-6.2.0.tgz", + "integrity": "sha512-7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe//vS0QqfqqjCS2JkiIs0cA==", + "dev": true + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "ajv-errors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz", + "integrity": "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==", + "dev": true, + "requires": {} + }, + "ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "dev": true, + "requires": {} + }, + "ansi-colors": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.4.tgz", + "integrity": "sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==", + "dev": true + }, + "ansi-escapes": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz", + "integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==", + "dev": true + }, + "ansi-html-community": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", + "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", + "dev": true + }, + "ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "dev": true + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "anymatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", + "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", + "dev": true, + "optional": true, + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + } + }, + "aproba": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", + "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==", + "dev": true + }, + "arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==", + "dev": true + }, + "arr-flatten": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", + "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", + "dev": true + }, + "arr-union": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==", + "dev": true + }, + "array-equal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-equal/-/array-equal-1.0.0.tgz", + "integrity": "sha512-H3LU5RLiSsGXPhN+Nipar0iR0IofH+8r89G2y1tBKxQ/agagKyAjhkAFDRBfodP2caPrNKHpAWNIM/c9yeL7uA==", + "dev": true + }, + "array-flatten": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", + "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==", + "dev": true + }, + "array-union": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", + "integrity": "sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==", + "dev": true, + "requires": { + "array-uniq": "^1.0.1" + } + }, + "array-uniq": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", + "integrity": "sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==", + "dev": true + }, + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==", + "dev": true + }, + "array.prototype.reduce": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/array.prototype.reduce/-/array.prototype.reduce-1.0.4.tgz", + "integrity": "sha512-WnM+AjG/DvLRLo4DDl+r+SvCzYtD2Jd9oeBYMcEaI7t3fFrHY9M53/wdLcTvmZNQ70IU6Htj0emFkZ5TS+lrdw==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.2", + "es-array-method-boxes-properly": "^1.0.0", + "is-string": "^1.0.7" + } + }, + "asn1": { + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz", + "integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==", + "dev": true, + "requires": { + "safer-buffer": "~2.1.0" + } + }, + "asn1.js": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz", + "integrity": "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==", + "dev": true, + "requires": { + "bn.js": "^4.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0", + "safer-buffer": "^2.1.0" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "dev": true + } + } + }, + "assert": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz", + "integrity": "sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==", + "dev": true, + "requires": { + "object-assign": "^4.1.1", + "util": "0.10.3" + }, + "dependencies": { + "inherits": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", + "integrity": "sha512-8nWq2nLTAwd02jTqJExUYFSD/fKq6VH9Y/oG2accc/kdI0V98Bag8d5a4gi3XHz73rDWa2PvTtvcWYquKqSENA==", + "dev": true + }, + "util": { + "version": "0.10.3", + "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz", + "integrity": "sha512-5KiHfsmkqacuKjkRkdV7SsfDJ2EGiPsK92s2MhNSY0craxjTdKTtqKsJaCWp4LW33ZZ0OPUv1WO/TFvNQRiQxQ==", + "dev": true, + "requires": { + "inherits": "2.0.1" + } + } + } + }, + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==", + "dev": true + }, + "assign-symbols": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", + "integrity": "sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==", + "dev": true + }, + "astral-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz", + "integrity": "sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==", + "dev": true + }, + "async": { + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz", + "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==", + "dev": true, + "requires": { + "lodash": "^4.17.14" + } + }, + "async-each": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz", + "integrity": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==", + "dev": true + }, + "async-limiter": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", + "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==", + "dev": true + }, + "asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "dev": true + }, + "atob": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", + "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", + "dev": true + }, + "aws-sign2": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", + "integrity": "sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==", + "dev": true + }, + "aws4": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz", + "integrity": "sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==", + "dev": true + }, + "babel-jest": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-24.9.0.tgz", + "integrity": "sha512-ntuddfyiN+EhMw58PTNL1ph4C9rECiQXjI4nMMBKBaNjXvqLdkXpPRcMSr4iyBrJg/+wz9brFUD6RhOAT6r4Iw==", + "dev": true, + "requires": { + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/babel__core": "^7.1.0", + "babel-plugin-istanbul": "^5.1.0", + "babel-preset-jest": "^24.9.0", + "chalk": "^2.4.2", + "slash": "^2.0.0" + } + }, + "babel-plugin-dynamic-import-node": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz", + "integrity": "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==", + "dev": true, + "requires": { + "object.assign": "^4.1.0" + } + }, + "babel-plugin-istanbul": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-5.2.0.tgz", + "integrity": "sha512-5LphC0USA8t4i1zCtjbbNb6jJj/9+X6P37Qfirc/70EQ34xKlMW+a1RHGwxGI+SwWpNwZ27HqvzAobeqaXwiZw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "find-up": "^3.0.0", + "istanbul-lib-instrument": "^3.3.0", + "test-exclude": "^5.2.3" + } + }, + "babel-plugin-jest-hoist": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-24.9.0.tgz", + "integrity": "sha512-2EMA2P8Vp7lG0RAzr4HXqtYwacfMErOuv1U3wrvxHX6rD1sV6xS3WXG3r8TRQ2r6w8OhvSdWt+z41hQNwNm3Xw==", + "dev": true, + "requires": { + "@types/babel__traverse": "^7.0.6" + } + }, + "babel-plugin-polyfill-corejs2": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.3.tgz", + "integrity": "sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.17.7", + "@babel/helper-define-polyfill-provider": "^0.3.3", + "semver": "^6.1.1" + } + }, + "babel-plugin-polyfill-corejs3": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.6.0.tgz", + "integrity": "sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==", + "dev": true, + "requires": { + "@babel/helper-define-polyfill-provider": "^0.3.3", + "core-js-compat": "^3.25.1" + } + }, + "babel-plugin-polyfill-regenerator": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.1.tgz", + "integrity": "sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==", + "dev": true, + "requires": { + "@babel/helper-define-polyfill-provider": "^0.3.3" + } + }, + "babel-preset-jest": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-24.9.0.tgz", + "integrity": "sha512-izTUuhE4TMfTRPF92fFwD2QfdXaZW08qvWTFCI51V8rW5x00UuPgc3ajRoWofXOuxjfcOM5zzSYsQS3H8KGCAg==", + "dev": true, + "requires": { + "@babel/plugin-syntax-object-rest-spread": "^7.0.0", + "babel-plugin-jest-hoist": "^24.9.0" + } + }, + "balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "base": { + "version": "0.11.2", + "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", + "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", + "dev": true, + "requires": { + "cache-base": "^1.0.1", + "class-utils": "^0.3.5", + "component-emitter": "^1.2.1", + "define-property": "^1.0.0", + "isobject": "^3.0.1", + "mixin-deep": "^1.2.0", + "pascalcase": "^0.1.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "dev": true, + "requires": { + "is-descriptor": "^1.0.0" } + } + } + }, + "base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "dev": true + }, + "batch": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", + "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==", + "dev": true + }, + "bcrypt-pbkdf": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", + "integrity": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==", + "dev": true, + "requires": { + "tweetnacl": "^0.14.3" + } + }, + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "dev": true + }, + "binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "dev": true, + "optional": true + }, + "bindings": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", + "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", + "dev": true, + "optional": true, + "requires": { + "file-uri-to-path": "1.0.0" + } + }, + "bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", + "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==", + "dev": true + }, + "bn.js": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz", + "integrity": "sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==", + "dev": true + }, + "body-parser": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.0.tgz", + "integrity": "sha512-DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg==", + "dev": true, + "requires": { + "bytes": "3.1.2", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.10.3", + "raw-body": "2.5.1", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + }, + "dependencies": { + "bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "dev": true }, - "normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "dev": true }, - "readdirp": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", - "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", + "qs": { + "version": "6.10.3", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.3.tgz", + "integrity": "sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==", + "dev": true, + "requires": { + "side-channel": "^1.0.4" + } + } + } + }, + "bonjour": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/bonjour/-/bonjour-3.5.0.tgz", + "integrity": "sha512-RaVTblr+OnEli0r/ud8InrU7D+G0y6aJhlxaLa6Pwty4+xoxboF1BsUI45tujvRpbj9dQVoglChqonGAsjEBYg==", + "dev": true, + "requires": { + "array-flatten": "^2.1.0", + "deep-equal": "^1.0.1", + "dns-equal": "^1.0.0", + "dns-txt": "^2.0.2", + "multicast-dns": "^6.0.1", + "multicast-dns-service-types": "^1.1.0" + } + }, + "boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", + "dev": true + }, + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "optional": true, + "requires": { + "fill-range": "^7.0.1" + } + }, + "brorand": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", + "integrity": "sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==", + "dev": true + }, + "browser-process-hrtime": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz", + "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==", + "dev": true + }, + "browser-resolve": { + "version": "1.11.3", + "resolved": "https://registry.npmjs.org/browser-resolve/-/browser-resolve-1.11.3.tgz", + "integrity": "sha512-exDi1BYWB/6raKHmDTCicQfTkqwN5fioMFV4j8BsfMU4R2DK/QfZfK7kOVkmWCNANf0snkBzqGqAJBao9gZMdQ==", + "dev": true, + "requires": { + "resolve": "1.1.7" + }, + "dependencies": { + "resolve": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz", + "integrity": "sha512-9znBF0vBcaSN3W2j7wKvdERPwqTxSpCq+if5C0WoTCyV9n24rua28jeuQ2pL/HOf+yUe/Mef+H/5p60K0Id3bg==", + "dev": true + } + } + }, + "browserify-aes": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", + "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", + "dev": true, + "requires": { + "buffer-xor": "^1.0.3", + "cipher-base": "^1.0.0", + "create-hash": "^1.1.0", + "evp_bytestokey": "^1.0.3", + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "browserify-cipher": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", + "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", + "dev": true, + "requires": { + "browserify-aes": "^1.0.4", + "browserify-des": "^1.0.0", + "evp_bytestokey": "^1.0.0" + } + }, + "browserify-des": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", + "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", + "dev": true, + "requires": { + "cipher-base": "^1.0.1", + "des.js": "^1.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "browserify-rsa": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.0.tgz", + "integrity": "sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==", + "dev": true, + "requires": { + "bn.js": "^5.0.0", + "randombytes": "^2.0.1" + } + }, + "browserify-sign": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.1.tgz", + "integrity": "sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==", + "dev": true, + "requires": { + "bn.js": "^5.1.1", + "browserify-rsa": "^4.0.1", + "create-hash": "^1.2.0", + "create-hmac": "^1.1.7", + "elliptic": "^6.5.3", + "inherits": "^2.0.4", + "parse-asn1": "^5.1.5", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + }, + "dependencies": { + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true + } + } + }, + "browserify-zlib": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz", + "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==", + "dev": true, + "requires": { + "pako": "~1.0.5" + }, + "dependencies": { + "pako": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", + "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==", + "dev": true + } + } + }, + "browserslist": { + "version": "4.21.4", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.4.tgz", + "integrity": "sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==", + "dev": true, + "requires": { + "caniuse-lite": "^1.0.30001400", + "electron-to-chromium": "^1.4.251", + "node-releases": "^2.0.6", + "update-browserslist-db": "^1.0.9" + } + }, + "bser": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", + "dev": true, + "requires": { + "node-int64": "^0.4.0" + } + }, + "buffer": { + "version": "4.9.2", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz", + "integrity": "sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==", + "dev": true, + "requires": { + "base64-js": "^1.0.2", + "ieee754": "^1.1.4", + "isarray": "^1.0.0" + } + }, + "buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true + }, + "buffer-indexof": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/buffer-indexof/-/buffer-indexof-1.1.1.tgz", + "integrity": "sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==", + "dev": true + }, + "buffer-xor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", + "integrity": "sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==", + "dev": true + }, + "builtin-status-codes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", + "integrity": "sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==", + "dev": true + }, + "bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", + "dev": true + }, + "cacache": { + "version": "12.0.4", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-12.0.4.tgz", + "integrity": "sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ==", + "dev": true, + "requires": { + "bluebird": "^3.5.5", + "chownr": "^1.1.1", + "figgy-pudding": "^3.5.1", + "glob": "^7.1.4", + "graceful-fs": "^4.1.15", + "infer-owner": "^1.0.3", + "lru-cache": "^5.1.1", + "mississippi": "^3.0.0", + "mkdirp": "^0.5.1", + "move-concurrently": "^1.0.1", + "promise-inflight": "^1.0.1", + "rimraf": "^2.6.3", + "ssri": "^6.0.1", + "unique-filename": "^1.1.1", + "y18n": "^4.0.0" + }, + "dependencies": { + "lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", "dev": true, "requires": { - "graceful-fs": "^4.1.11", - "micromatch": "^3.1.10", - "readable-stream": "^2.0.2" + "yallist": "^3.0.2" } + }, + "yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true } } }, - "chownr": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.1.tgz", - "integrity": "sha512-j38EvO5+LHX84jlo6h4UzmOwi0UgW61WRyPtJz4qaadK5eY3BTS5TY/S1Stc3Uk2lIM6TPevAlULiEJwie860g==", + "cache-base": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", + "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", + "dev": true, + "requires": { + "collection-visit": "^1.0.0", + "component-emitter": "^1.2.1", + "get-value": "^2.0.6", + "has-value": "^1.0.0", + "isobject": "^3.0.1", + "set-value": "^2.0.0", + "to-object-path": "^0.3.0", + "union-value": "^1.0.0", + "unset-value": "^1.0.0" + } + }, + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "dev": true, + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + } + }, + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", "dev": true }, - "chrome-trace-event": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.0.tgz", - "integrity": "sha512-xDbVgyfDTT2piup/h8dK/y4QZfJRSa73bw1WZ8b4XM1o7fsFubUVGYcE+1ANtOzJJELGpYoG2961z0Z6OAld9A==", + "camel-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", + "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", + "requires": { + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" + } + }, + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true + }, + "caniuse-lite": { + "version": "1.0.30001412", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001412.tgz", + "integrity": "sha512-+TeEIee1gS5bYOiuf+PS/kp2mrXic37Hl66VY6EAfxasIk5fELTktK2oOezYed12H8w7jt3s512PpulQidPjwA==", + "dev": true + }, + "capture-exit": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/capture-exit/-/capture-exit-2.0.0.tgz", + "integrity": "sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==", + "dev": true, + "requires": { + "rsvp": "^4.8.4" + } + }, + "caseless": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", + "integrity": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==", + "dev": true + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "cheerio": { + "version": "0.22.0", + "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-0.22.0.tgz", + "integrity": "sha512-8/MzidM6G/TgRelkzDG13y3Y9LxBjCb+8yOEZ9+wwq5gVF2w2pV0wmHvjfT0RvuxGyR7UEuK36r+yYMbT4uKgA==", + "dev": true, + "requires": { + "css-select": "~1.2.0", + "dom-serializer": "~0.1.0", + "entities": "~1.1.1", + "htmlparser2": "^3.9.1", + "lodash.assignin": "^4.0.9", + "lodash.bind": "^4.1.4", + "lodash.defaults": "^4.0.1", + "lodash.filter": "^4.4.0", + "lodash.flatten": "^4.2.0", + "lodash.foreach": "^4.3.0", + "lodash.map": "^4.4.0", + "lodash.merge": "^4.4.0", + "lodash.pick": "^4.2.1", + "lodash.reduce": "^4.4.0", + "lodash.reject": "^4.4.0", + "lodash.some": "^4.4.0" + } + }, + "chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", "dev": true, + "optional": true, "requires": { - "tslib": "^1.9.0" + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "fsevents": "~2.3.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" } }, + "chownr": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", + "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", + "dev": true + }, + "chrome-trace-event": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", + "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", + "dev": true + }, "ci-info": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", @@ -3316,74 +15444,92 @@ "define-property": { "version": "0.2.5", "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", "dev": true, "requires": { "is-descriptor": "^0.1.0" } - } - } - }, - "cliui": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-4.1.0.tgz", - "integrity": "sha512-4FG+RSG9DL7uEwRUZXZn3SS34DiDPfzP0VOiEwtUWlE+AR2EIg+hSyvrIgUUfhdgR/UkAeW2QHgeP+hWrXs7jQ==", - "dev": true, - "requires": { - "string-width": "^2.1.1", - "strip-ansi": "^4.0.0", - "wrap-ansi": "^2.0.0" - }, - "dependencies": { - "ansi-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", - "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", - "dev": true }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", - "dev": true + "is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } }, - "string-width": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", - "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", + "is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", "dev": true, "requires": { - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^4.0.0" + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } } }, - "strip-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", "dev": true, "requires": { - "ansi-regex": "^3.0.0" + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" } + }, + "kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true } } }, + "cliui": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", + "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", + "dev": true, + "requires": { + "string-width": "^3.1.0", + "strip-ansi": "^5.2.0", + "wrap-ansi": "^5.1.0" + } + }, "co": { "version": "4.6.0", "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", - "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=", - "dev": true - }, - "code-point-at": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", - "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=", + "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", "dev": true }, "collection-visit": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", - "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=", + "integrity": "sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==", "dev": true, "requires": { "map-visit": "^1.0.0", @@ -3402,49 +15548,43 @@ "color-name": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", "dev": true }, "combined-stream": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.7.tgz", - "integrity": "sha512-brWl9y6vOB1xYPZcpZde3N9zDByXTosAeMDo4p1wzo6UMOX4vumB+TP1RZ76sfE6Md68Q0NJSrE/gbezd4Ul+w==", + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", "dev": true, "requires": { "delayed-stream": "~1.0.0" } }, "commander": { - "version": "2.19.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.19.0.tgz", - "integrity": "sha512-6tvAOO+D6OENvRAh524Dh9jcfKTYDQAqvqezbCW82xj5X0pSrcpxtvRKHLG0yBY6SD7PSDrJaj+0AiOcKVd1Xg==", + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", "dev": true }, "commondir": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", - "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=", - "dev": true - }, - "compare-versions": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/compare-versions/-/compare-versions-3.4.0.tgz", - "integrity": "sha512-tK69D7oNXXqUW3ZNo/z7NXTEz22TCF0pTE+YF9cxvaAM9XnkLo1fV621xCLrRR6aevJlKxExkss0vWqUCUpqdg==", + "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", "dev": true }, "component-emitter": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz", - "integrity": "sha1-E3kY1teCg/ffemt8WmPhQOaUJeY=", + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", + "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==", "dev": true }, "compressible": { - "version": "2.0.16", - "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.16.tgz", - "integrity": "sha512-JQfEOdnI7dASwCuSPWIeVYwc/zMsu/+tRhoUvEfXz2gxOA2DNjmG5vhtFdBlhWPPGo+RdT9S3tgc/uH5qgDiiA==", + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", "dev": true, "requires": { - "mime-db": ">= 1.38.0 < 2" + "mime-db": ">= 1.43.0 < 2" } }, "compression": { @@ -3462,10 +15602,19 @@ "vary": "~1.1.2" }, "dependencies": { - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "dev": true } } @@ -3473,7 +15622,7 @@ "concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", "dev": true }, "concat-stream": { @@ -3486,6 +15635,32 @@ "inherits": "^2.0.3", "readable-stream": "^2.2.2", "typedarray": "^0.0.6" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + } + } } }, "connect-history-api-fallback": { @@ -3495,25 +15670,33 @@ "dev": true }, "console-browserify": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.1.0.tgz", - "integrity": "sha1-8CQcRXMKn8YyOyBtvzjtx0HQuxA=", - "dev": true, - "requires": { - "date-now": "^0.1.4" - } + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz", + "integrity": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==", + "dev": true }, "constants-browserify": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", - "integrity": "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=", + "integrity": "sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==", "dev": true }, "content-disposition": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz", - "integrity": "sha1-DPaLud318r55YcOoUXjLhdunjLQ=", - "dev": true + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "dev": true, + "requires": { + "safe-buffer": "5.2.1" + }, + "dependencies": { + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true + } + } }, "content-type": { "version": "1.0.4", @@ -3522,21 +15705,24 @@ "dev": true }, "convert-source-map": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.5.1.tgz", - "integrity": "sha1-uCeAl7m8IpNl3lxiz1/K7YtVmeU=", - "dev": true + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz", + "integrity": "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.1" + } }, "cookie": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz", - "integrity": "sha1-5+Ch+e9DtMi6klxcWpboBtFoc7s=", + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", "dev": true }, "cookie-signature": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", - "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", "dev": true }, "copy-concurrently": { @@ -3556,60 +15742,40 @@ "copy-descriptor": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", - "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=", + "integrity": "sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==", "dev": true }, - "core-js": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-1.2.7.tgz", - "integrity": "sha1-ZSKUwUZR2yj6k70tX/KYOk8IxjY=" - }, "core-js-compat": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.0.0.tgz", - "integrity": "sha512-W/Ppz34uUme3LmXWjMgFlYyGnbo1hd9JvA0LNQ4EmieqVjg2GPYbj3H6tcdP2QGPGWdRKUqZVbVKLNIFVs/HiA==", + "version": "3.25.3", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.25.3.tgz", + "integrity": "sha512-xVtYpJQ5grszDHEUU9O7XbjjcZ0ccX3LgQsyqSvTnjX97ZqEgn9F5srmrwwwMtbKzDllyFPL+O+2OFMl1lU4TQ==", "dev": true, "requires": { - "browserslist": "^4.5.1", - "core-js": "3.0.0", - "core-js-pure": "3.0.0", - "semver": "^5.6.0" - }, - "dependencies": { - "core-js": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.0.0.tgz", - "integrity": "sha512-WBmxlgH2122EzEJ6GH8o9L/FeoUKxxxZ6q6VUxoTlsE4EvbTWKJb447eyVxTEuq0LpXjlq/kCB2qgBvsYRkLvQ==", - "dev": true - }, - "semver": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz", - "integrity": "sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==", - "dev": true - } + "browserslist": "^4.21.4" } }, - "core-js-pure": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.0.0.tgz", - "integrity": "sha512-yPiS3fQd842RZDgo/TAKGgS0f3p2nxssF1H65DIZvZv0Od5CygP8puHXn3IQiM/39VAvgCbdaMQpresrbGgt9g==", - "dev": true - }, "core-util-is": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "integrity": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==", "dev": true }, "create-ecdh": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.3.tgz", - "integrity": "sha512-GbEHQPMOswGpKXM9kCWVrremUcBmjteUaQ01T9rkKCPDXfUHX0IoP9LpHYo2NPFampa4e+/pFDc3jQdxrxQLaw==", + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz", + "integrity": "sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==", "dev": true, "requires": { "bn.js": "^4.1.0", - "elliptic": "^6.0.0" + "elliptic": "^6.5.3" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "dev": true + } } }, "create-hash": { @@ -3642,7 +15808,7 @@ "cross-env": { "version": "3.2.4", "resolved": "https://registry.npmjs.org/cross-env/-/cross-env-3.2.4.tgz", - "integrity": "sha1-ngWF8neGTtQhznVvgamA/w1piro=", + "integrity": "sha512-T8AFEAiuJ0w53ou6rnu3Fipaiu1W6ZO9GYfd33uxe1kAIiXM0fD8QnIm7orcJBOt7WQC5Ply63E7WZW/jSM+FA==", "dev": true, "requires": { "cross-spawn": "^5.1.0", @@ -3652,7 +15818,7 @@ "cross-spawn": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", - "integrity": "sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=", + "integrity": "sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==", "dev": true, "requires": { "lru-cache": "^4.0.1", @@ -3696,58 +15862,12 @@ "postcss-modules-values": "^2.0.0", "postcss-value-parser": "^3.3.0", "schema-utils": "^1.0.0" - }, - "dependencies": { - "big.js": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", - "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", - "dev": true - }, - "camelcase": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.2.0.tgz", - "integrity": "sha512-IXFsBS2pC+X0j0N/GE7Dm7j3bsEBp+oTpb7F50dwEVX7rf3IgwO9XatnegTsDtniKCUtEJH4fSU6Asw7uoVLfQ==", - "dev": true - }, - "json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", - "dev": true, - "requires": { - "minimist": "^1.2.0" - } - }, - "loader-utils": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz", - "integrity": "sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==", - "dev": true, - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^2.0.0", - "json5": "^1.0.1" - } - }, - "minimist": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", - "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", - "dev": true - }, - "normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "dev": true - } } }, "css-select": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/css-select/-/css-select-1.2.0.tgz", - "integrity": "sha1-KzoRBTnFNV8c2NMUYj6HCxIeyFg=", + "integrity": "sha512-dUQOBoqdR7QwV90WysXPLXG5LO7nhYBgiWVfxF80DKPF8zx1t/pUd2FYy73emg3zrjtM6dzmYgbHKfV2rxiHQA==", "dev": true, "requires": { "boolbase": "~1.0.0", @@ -3757,9 +15877,9 @@ } }, "css-what": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/css-what/-/css-what-2.1.0.tgz", - "integrity": "sha1-lGfQMsOM+u+58teVASUwYvh/ob0=", + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-2.1.3.tgz", + "integrity": "sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg==", "dev": true }, "cssesc": { @@ -3769,30 +15889,30 @@ "dev": true }, "cssom": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.6.tgz", - "integrity": "sha512-DtUeseGk9/GBW0hl0vVPpU22iHL6YB5BUX7ml1hB+GMpo0NX5G4voX3kdWiMSEguFtcW3Vh3djqNF4aIe6ne0A==", + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", + "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", "dev": true }, "cssstyle": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-1.2.2.tgz", - "integrity": "sha512-43wY3kl1CVQSvL7wUY1qXkxVGkStjpkDmVjiIKX8R97uhajy8Bybay78uOtqvh7Q5GK75dNPfW0geWjE6qQQow==", + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-1.4.0.tgz", + "integrity": "sha512-GBrLZYZ4X4x6/QEoBnIrqb8B/f5l4+8me2dkom/j1Gtbxy0kBv6OGzKuAsGM75bkGwGAFkt56Iwg28S3XTZgSA==", "dev": true, "requires": { "cssom": "0.3.x" } }, "cyclist": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/cyclist/-/cyclist-0.2.2.tgz", - "integrity": "sha1-GzN5LhHpFKL9bW7WRHRkRE5fpkA=", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cyclist/-/cyclist-1.0.1.tgz", + "integrity": "sha512-NJGVKPS81XejHcLhaLJS7plab0fK3slPh11mESeeDq2W4ZI5kUKK/LRRdVDvjJseojbPB7ZwjnyOybg3Igea/A==", "dev": true }, "dashdash": { "version": "1.14.1", "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", - "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", + "integrity": "sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==", "dev": true, "requires": { "assert-plus": "^1.0.0" @@ -3810,9 +15930,9 @@ }, "dependencies": { "whatwg-url": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.0.0.tgz", - "integrity": "sha512-37GeVSIJ3kn1JgKyjiYNmSLP1yzbpb29jdmwBSgkD9h40/hyrR/OifpVUndji3tmwGgD8qpw7iQu3RSbCrBpsQ==", + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz", + "integrity": "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==", "dev": true, "requires": { "lodash.sortby": "^4.7.0", @@ -3822,43 +15942,45 @@ } } }, - "date-now": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/date-now/-/date-now-0.1.4.tgz", - "integrity": "sha1-6vQ5/U1ISK105cx9vvIAZyueNFs=", - "dev": true - }, "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", "dev": true, "requires": { - "ms": "2.0.0" + "ms": "2.1.2" } }, "decamelize": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", - "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", + "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", "dev": true }, "decode-uri-component": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", - "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=", + "integrity": "sha512-hjf+xovcEn31w/EUYdTXQh/8smFL/dzYjohQGEIgjyNavaJfBY2p5F527Bo1VPATxv0VYTUC2bOcXvqFwk78Og==", "dev": true }, "deep-equal": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.0.1.tgz", - "integrity": "sha1-9dJgKStmDghO/0zbyfCK0yR0SLU=", - "dev": true + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.1.tgz", + "integrity": "sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==", + "dev": true, + "requires": { + "is-arguments": "^1.0.4", + "is-date-object": "^1.0.1", + "is-regex": "^1.0.4", + "object-is": "^1.0.1", + "object-keys": "^1.1.1", + "regexp.prototype.flags": "^1.2.0" + } }, "deep-is": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz", - "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=", + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", "dev": true }, "default-gateway": { @@ -3871,31 +15993,14 @@ "ip-regex": "^2.1.0" } }, - "default-require-extensions": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/default-require-extensions/-/default-require-extensions-2.0.0.tgz", - "integrity": "sha1-9fj7sYp9bVCyH2QfZJ67Uiz+JPc=", - "dev": true, - "requires": { - "strip-bom": "^3.0.0" - }, - "dependencies": { - "strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=", - "dev": true - } - } - }, "define-properties": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.2.tgz", - "integrity": "sha1-g6c/L+pWmJj7c3GTyPhzyvbUXJQ=", + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz", + "integrity": "sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==", "dev": true, "requires": { - "foreach": "^2.0.5", - "object-keys": "^1.0.8" + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" } }, "define-property": { @@ -3906,83 +16011,39 @@ "requires": { "is-descriptor": "^1.0.2", "isobject": "^3.0.1" - }, - "dependencies": { - "is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - } - }, - "kind-of": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==", - "dev": true - } } }, "del": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/del/-/del-3.0.0.tgz", - "integrity": "sha1-U+z2mf/LyzljdpGrE7rxYIGXZuU=", + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/del/-/del-4.1.1.tgz", + "integrity": "sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==", "dev": true, "requires": { + "@types/glob": "^7.1.1", "globby": "^6.1.0", - "is-path-cwd": "^1.0.0", - "is-path-in-cwd": "^1.0.0", - "p-map": "^1.1.1", - "pify": "^3.0.0", - "rimraf": "^2.2.8" - }, - "dependencies": { - "pify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", - "dev": true - } + "is-path-cwd": "^2.0.0", + "is-path-in-cwd": "^2.0.0", + "p-map": "^2.0.0", + "pify": "^4.0.1", + "rimraf": "^2.6.3" } }, "delayed-stream": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", "dev": true }, "depd": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", "dev": true }, "des.js": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.0.tgz", - "integrity": "sha1-wHTS4qpqipoH29YfmhXCzYPsjsw=", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.1.tgz", + "integrity": "sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==", "dev": true, "requires": { "inherits": "^2.0.1", @@ -3990,33 +16051,33 @@ } }, "destroy": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", - "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=", + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", "dev": true }, "detect-file": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz", - "integrity": "sha1-8NZtA2cqglyxtzvbP+YjEMjlUrc=", + "integrity": "sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q==", "dev": true }, "detect-newline": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-2.1.0.tgz", - "integrity": "sha1-9B8cEL5LAOh7XxPaaAdZ8sW/0+I=", + "integrity": "sha512-CwffZFvlJffUg9zZA0uqrjQayUTC8ob94pnr5sFwaVv3IOmkfUHcWH+jXaQK3askE51Cqe8/9Ql/0uXNwqZ8Zg==", "dev": true }, "detect-node": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.0.4.tgz", - "integrity": "sha512-ZIzRpLJrOj7jjP2miAtgqIfmzbxa4ZOr5jJc601zklsfEx9oTzmmj2nVpIPRpNlRTIh8lc1kyViIY7BWSGNmKw==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", + "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", "dev": true }, "diff-sequences": { - "version": "24.3.0", - "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-24.3.0.tgz", - "integrity": "sha512-xLqpez+Zj9GKSnPWS0WZw1igGocZ+uua8+y+5dDNTT934N3QuY1sp2LkHzwiaYQGz60hMq0pjAshdeXm5VUOEw==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-24.9.0.tgz", + "integrity": "sha512-Dj6Wk3tWyTE+Fo1rW8v0Xhwk80um6yFYKbuAxc9c3EZxIHFDYwbi34Uk42u1CdnIiVorvt4RmlSDjIPyzGC2ew==", "dev": true }, "diffie-hellman": { @@ -4028,18 +16089,26 @@ "bn.js": "^4.1.0", "miller-rabin": "^4.0.0", "randombytes": "^2.0.0" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "dev": true + } } }, "dns-equal": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", - "integrity": "sha1-s55/HabrCnW6nBcySzR1PEfgZU0=", + "integrity": "sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==", "dev": true }, "dns-packet": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.1.tgz", - "integrity": "sha512-0UxfQkMhYAUaZI+xrNZOz/as5KgDU0M/fQ9b6SpkyLbk3GEswDi6PADJVaYJradtRVsRIlF1zLyOodbcTCDzUg==", + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.4.tgz", + "integrity": "sha512-BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA==", "dev": true, "requires": { "ip": "^1.1.0", @@ -4049,28 +16118,20 @@ "dns-txt": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/dns-txt/-/dns-txt-2.0.2.tgz", - "integrity": "sha1-uR2Ab10nGI5Ks+fRB9iBocxGQrY=", + "integrity": "sha512-Ix5PrWjphuSoUXV/Zv5gaFHjnaJtb02F2+Si3Ht9dyJ87+Z/lMmy+dpNHtTGraNK958ndXq2i+GLkWsWHcKaBQ==", "dev": true, "requires": { "buffer-indexof": "^1.0.0" } }, "dom-serializer": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.0.tgz", - "integrity": "sha1-BzxpdUbOB4DOI75KKOKT5AvDDII=", + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.1.tgz", + "integrity": "sha512-l0IU0pPzLWSHBcieZbpOKgkIn3ts3vAh7ZuFyXNwJxJXk/c4Gwj9xaTJwIDVQCXawWD0qb3IzMGH5rglQaO0XA==", "dev": true, "requires": { - "domelementtype": "~1.1.1", - "entities": "~1.1.1" - }, - "dependencies": { - "domelementtype": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.1.3.tgz", - "integrity": "sha1-vSh3PiZCiBrsUVRJJCmcXNgiGFs=", - "dev": true - } + "domelementtype": "^1.3.0", + "entities": "^1.1.1" } }, "domain-browser": { @@ -4080,9 +16141,9 @@ "dev": true }, "domelementtype": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.0.tgz", - "integrity": "sha1-sXrtguirWeUt2cGbF1bg/BhyBMI=", + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", + "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==", "dev": true }, "domexception": { @@ -4095,9 +16156,9 @@ } }, "domhandler": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.4.1.tgz", - "integrity": "sha1-iS5HAAqZvlW783dP/qBWHYh5wlk=", + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz", + "integrity": "sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==", "dev": true, "requires": { "domelementtype": "1" @@ -4106,7 +16167,7 @@ "domutils": { "version": "1.5.1", "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz", - "integrity": "sha1-3NhIiib1Y9YQeeSMn3t+Mjc2gs8=", + "integrity": "sha512-gSu5Oi/I+3wDENBsOWBiRK1eoGxcywYSqg3rR960/+EfY0CF4EX1VPkgHOZ3WiS/Jg2DtliF6BhWcHlfpYUcGw==", "dev": true, "requires": { "dom-serializer": "0", @@ -4123,12 +16184,38 @@ "inherits": "^2.0.1", "readable-stream": "^2.0.0", "stream-shift": "^1.0.0" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + } + } } }, "ecc-jsbn": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", - "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", + "integrity": "sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==", "dev": true, "requires": { "jsbn": "~0.1.0", @@ -4138,156 +16225,214 @@ "ee-first": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", "dev": true }, "electron-to-chromium": { - "version": "1.3.122", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.122.tgz", - "integrity": "sha512-3RKoIyCN4DhP2dsmleuFvpJAIDOseWH88wFYBzb22CSwoFDSWRc4UAMfrtc9h8nBdJjTNIN3rogChgOy6eFInw==", + "version": "1.4.265", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.265.tgz", + "integrity": "sha512-38KaYBNs0oCzWCpr6j7fY/W9vF0vSp4tKFIshQTgdZMhUpkxgotkQgjJP6iGMdmlsgMs3i0/Hkko4UXLTrkYVQ==", "dev": true }, "elliptic": { - "version": "6.4.1", - "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.4.1.tgz", - "integrity": "sha512-BsXLz5sqX8OHcsh7CqBMztyXARmGQ3LWPtGjJi6DiJHq5C/qvi9P3OqgswKSDftbu8+IoI/QDTAm2fFnQ9SZSQ==", + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz", + "integrity": "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==", "dev": true, "requires": { - "bn.js": "^4.4.0", - "brorand": "^1.0.1", + "bn.js": "^4.11.9", + "brorand": "^1.1.0", "hash.js": "^1.0.0", - "hmac-drbg": "^1.0.0", - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0", - "minimalistic-crypto-utils": "^1.0.0" + "hmac-drbg": "^1.0.1", + "inherits": "^2.0.4", + "minimalistic-assert": "^1.0.1", + "minimalistic-crypto-utils": "^1.0.1" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "dev": true + } } }, + "emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", + "dev": true + }, "emojis-list": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz", - "integrity": "sha1-TapNnbAPmBmIDHn6RXrlsJof04k=", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", "dev": true }, "encodeurl": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", "dev": true }, - "encoding": { - "version": "0.1.12", - "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.12.tgz", - "integrity": "sha1-U4tm8+5izRq1HsMjgp0flIDHS+s=", - "requires": { - "iconv-lite": "~0.4.13" - } - }, "end-of-stream": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.1.tgz", - "integrity": "sha512-1MkrZNvWTKCaigbn+W15elq2BB/L22nqrSY5DKlo3X6+vclJm8Bb5djXJBmEX6fS3+zCh/F4VBK5Z2KxJt4s2Q==", + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", "dev": true, "requires": { "once": "^1.4.0" } }, "enhanced-resolve": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.1.0.tgz", - "integrity": "sha512-F/7vkyTtyc/llOIn8oWclcB25KdRaiPBpZYDgJHgh/UHtpgT2p2eldQgtQnLtUvfMKPKxbRaQM/hHkvLHt1Vng==", + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.5.0.tgz", + "integrity": "sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==", "dev": true, "requires": { "graceful-fs": "^4.1.2", - "memory-fs": "^0.4.0", + "memory-fs": "^0.5.0", "tapable": "^1.0.0" + }, + "dependencies": { + "memory-fs": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.5.0.tgz", + "integrity": "sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==", + "dev": true, + "requires": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + } + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + } + } } }, "entities": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.1.tgz", - "integrity": "sha1-blwtClYhtdra7O+AuQ7ftc13cvA=", + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz", + "integrity": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==", "dev": true }, "errno": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.7.tgz", - "integrity": "sha512-MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze/8V6kgyz7H3FF8Npzv78mZ7XLLflg==", + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", + "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", "dev": true, "requires": { "prr": "~1.0.1" } }, "error-ex": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.1.tgz", - "integrity": "sha1-+FWobOYa3E6GIcPNoh56dhLDqNw=", + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", "dev": true, "requires": { "is-arrayish": "^0.2.1" } }, "es-abstract": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.11.0.tgz", - "integrity": "sha512-ZnQrE/lXTTQ39ulXZ+J1DTFazV9qBy61x2bY071B+qGco8Z8q1QddsLdt/EF8Ai9hcWH72dWS0kFqXLxOxqslA==", + "version": "1.20.3", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.20.3.tgz", + "integrity": "sha512-AyrnaKVpMzljIdwjzrj+LxGmj8ik2LckwXacHqrJJ/jxz6dDDBcZ7I7nlHM0FvEW8MfbWJwOd+yT2XzYW49Frw==", "dev": true, "requires": { - "es-to-primitive": "^1.1.1", + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", "function-bind": "^1.1.1", - "has": "^1.0.1", - "is-callable": "^1.1.3", - "is-regex": "^1.0.4" - } + "function.prototype.name": "^1.1.5", + "get-intrinsic": "^1.1.3", + "get-symbol-description": "^1.0.0", + "has": "^1.0.3", + "has-property-descriptors": "^1.0.0", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.3", + "is-callable": "^1.2.6", + "is-negative-zero": "^2.0.2", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.2", + "is-string": "^1.0.7", + "is-weakref": "^1.0.2", + "object-inspect": "^1.12.2", + "object-keys": "^1.1.1", + "object.assign": "^4.1.4", + "regexp.prototype.flags": "^1.4.3", + "safe-regex-test": "^1.0.0", + "string.prototype.trimend": "^1.0.5", + "string.prototype.trimstart": "^1.0.5", + "unbox-primitive": "^1.0.2" + } + }, + "es-array-method-boxes-properly": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz", + "integrity": "sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==", + "dev": true }, "es-to-primitive": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.1.1.tgz", - "integrity": "sha1-RTVSSKiJeQNLZ5Lhm7gfK3l13Q0=", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", "dev": true, "requires": { - "is-callable": "^1.1.1", + "is-callable": "^1.1.4", "is-date-object": "^1.0.1", - "is-symbol": "^1.0.1" + "is-symbol": "^1.0.2" } }, + "escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "dev": true + }, "escape-html": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", "dev": true }, "escape-string-regexp": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", "dev": true }, "escodegen": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.11.1.tgz", - "integrity": "sha512-JwiqFD9KdGVVpeuRa68yU3zZnBEOcPs0nKW7wZzXky8Z7tffdYUHbe11bPCV5jYlK6DVdKLWLm0f5I/QlL0Kmw==", + "version": "1.14.3", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.14.3.tgz", + "integrity": "sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==", "dev": true, "requires": { - "esprima": "^3.1.3", + "esprima": "^4.0.1", "estraverse": "^4.2.0", "esutils": "^2.0.2", "optionator": "^0.8.1", "source-map": "~0.6.1" - }, - "dependencies": { - "esprima": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-3.1.3.tgz", - "integrity": "sha1-/cpRzuYTOJXjyI1TXOSdv/YqRjM=", - "dev": true - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true, - "optional": true - } } }, "eslint-scope": { @@ -4307,52 +16452,57 @@ "dev": true }, "esrecurse": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.2.1.tgz", - "integrity": "sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ==", + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", "dev": true, "requires": { - "estraverse": "^4.1.0" + "estraverse": "^5.2.0" + }, + "dependencies": { + "estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true + } } }, "estraverse": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz", - "integrity": "sha1-De4/7TH81GlhjOc0IJn8GvoL2xM=", + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", "dev": true }, "esutils": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz", - "integrity": "sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs=", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", "dev": true }, "etag": { "version": "1.8.1", "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", "dev": true }, "eventemitter3": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-3.1.0.tgz", - "integrity": "sha512-ivIvhpq/Y0uSjcHDcOIccjmYjGLcP09MFGE7ysAwkAvkXfpZlC985pH2/ui64DKazbTW/4kN3yqozUxlXzI6cA==", + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", "dev": true }, "events": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/events/-/events-3.0.0.tgz", - "integrity": "sha512-Dc381HFWJzEOhQ+d8pkNon++bk9h6cdAoAj4iE6Q4y6xgTzySWXlKn05/TVNpjnfRqi/X0EpJEJohPjNI3zpVA==", + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", "dev": true }, "eventsource": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/eventsource/-/eventsource-1.0.7.tgz", - "integrity": "sha512-4Ln17+vVT0k8aWq+t/bF5arcS3EpT9gYtW66EPacdj/mAFevznsnyoHLPy2BA8gbIQeIHoPsvwmfBftfcG//BQ==", - "dev": true, - "requires": { - "original": "^1.0.0" - } + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/eventsource/-/eventsource-2.0.2.tgz", + "integrity": "sha512-IzUmBGPR3+oUG9dUeXynyNmf91/3zUSJg1lCktzKw47OXuhco54U3r9B7O4XX+Rb1Itm9OZ2b0RkTs10bICOxA==", + "dev": true }, "evp_bytestokey": { "version": "1.0.3", @@ -4365,9 +16515,9 @@ } }, "exec-sh": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/exec-sh/-/exec-sh-0.3.2.tgz", - "integrity": "sha512-9sLAvzhI5nc8TpuQUh4ahMdCrWT00wPWz7j47/emR5+2qEfoZP5zzUXvx+vdx+H6ohhnsYC31iX04QLYJK8zTg==", + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/exec-sh/-/exec-sh-0.3.6.tgz", + "integrity": "sha512-nQn+hI3yp+oD0huYhKwvYI32+JFeq+XkNcD1GAo3Y/MjxsfVGmrrzrnzjWiNY6f+pUCP440fThsFh5gZrRAU/w==", "dev": true }, "execa": { @@ -4397,19 +16547,25 @@ "shebang-command": "^1.2.0", "which": "^1.2.9" } + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true } } }, "exit": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", - "integrity": "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=", + "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", "dev": true }, "expand-brackets": { "version": "2.1.4", "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", - "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", + "integrity": "sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==", "dev": true, "requires": { "debug": "^2.3.3", @@ -4421,10 +16577,19 @@ "to-regex": "^3.0.1" }, "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, "define-property": { "version": "0.2.5", "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", "dev": true, "requires": { "is-descriptor": "^0.1.0" @@ -4433,82 +16598,141 @@ "extend-shallow": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", "dev": true, "requires": { "is-extendable": "^0.1.0" } + }, + "is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + } + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "dev": true + }, + "kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true } } }, "expand-tilde": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz", - "integrity": "sha1-l+gBqgUt8CRU3kawK/YhZCzchQI=", + "integrity": "sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==", "dev": true, "requires": { "homedir-polyfill": "^1.0.1" } }, "expect": { - "version": "24.5.0", - "resolved": "https://registry.npmjs.org/expect/-/expect-24.5.0.tgz", - "integrity": "sha512-p2Gmc0CLxOgkyA93ySWmHFYHUPFIHG6XZ06l7WArWAsrqYVaVEkOU5NtT5i68KUyGKbkQgDCkiT65bWmdoL6Bw==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/expect/-/expect-24.9.0.tgz", + "integrity": "sha512-wvVAx8XIol3Z5m9zvZXiyZOQ+sRJqNTIm6sGjdWlaZIeupQGO3WbYI+15D/AmEwZywL6wtJkbAbJtzkOfBuR0Q==", "dev": true, "requires": { - "@jest/types": "^24.5.0", + "@jest/types": "^24.9.0", "ansi-styles": "^3.2.0", - "jest-get-type": "^24.3.0", - "jest-matcher-utils": "^24.5.0", - "jest-message-util": "^24.5.0", - "jest-regex-util": "^24.3.0" - }, - "dependencies": { - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "requires": { - "color-convert": "^1.9.0" - } - } + "jest-get-type": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-regex-util": "^24.9.0" } }, "express": { - "version": "4.16.4", - "resolved": "https://registry.npmjs.org/express/-/express-4.16.4.tgz", - "integrity": "sha512-j12Uuyb4FMrd/qQAm6uCHAkPtO8FDTRJZBDd5D2KOL2eLaz1yUNdUB/NOIyq0iU4q4cFarsUCrnFDPBcnksuOg==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/express/-/express-4.18.1.tgz", + "integrity": "sha512-zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q==", "dev": true, "requires": { - "accepts": "~1.3.5", + "accepts": "~1.3.8", "array-flatten": "1.1.1", - "body-parser": "1.18.3", - "content-disposition": "0.5.2", + "body-parser": "1.20.0", + "content-disposition": "0.5.4", "content-type": "~1.0.4", - "cookie": "0.3.1", + "cookie": "0.5.0", "cookie-signature": "1.0.6", "debug": "2.6.9", - "depd": "~1.1.2", + "depd": "2.0.0", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "etag": "~1.8.1", - "finalhandler": "1.1.1", + "finalhandler": "1.2.0", "fresh": "0.5.2", + "http-errors": "2.0.0", "merge-descriptors": "1.0.1", "methods": "~1.1.2", - "on-finished": "~2.3.0", - "parseurl": "~1.3.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", "path-to-regexp": "0.1.7", - "proxy-addr": "~2.0.4", - "qs": "6.5.2", - "range-parser": "~1.2.0", - "safe-buffer": "5.1.2", - "send": "0.16.2", - "serve-static": "1.13.2", - "setprototypeof": "1.1.0", - "statuses": "~1.4.0", - "type-is": "~1.6.16", + "proxy-addr": "~2.0.7", + "qs": "6.10.3", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.18.0", + "serve-static": "1.15.0", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", "utils-merge": "1.0.1", "vary": "~1.1.2" }, @@ -4516,13 +16740,37 @@ "array-flatten": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", - "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", + "dev": true + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "dev": true }, + "qs": { + "version": "6.10.3", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.3.tgz", + "integrity": "sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==", + "dev": true, + "requires": { + "side-channel": "^1.0.4" + } + }, "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", "dev": true } } @@ -4536,22 +16784,11 @@ "extend-shallow": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", "dev": true, "requires": { "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - }, - "dependencies": { - "is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "dev": true, - "requires": { - "is-plain-object": "^2.0.4" - } - } + "is-extendable": "^1.0.1" } }, "extglob": { @@ -4573,7 +16810,7 @@ "define-property": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", "dev": true, "requires": { "is-descriptor": "^1.0.0" @@ -4582,45 +16819,16 @@ "extend-shallow": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", "dev": true, "requires": { "is-extendable": "^0.1.0" } }, - "is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - } - }, - "kind-of": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==", + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", "dev": true } } @@ -4628,134 +16836,130 @@ "extsprintf": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", - "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=", + "integrity": "sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==", "dev": true }, "fast-deep-equal": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz", - "integrity": "sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk=", + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", "dev": true }, "fast-json-stable-stringify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz", - "integrity": "sha1-1RQsDK7msRifh9OnYREGT4bIu/I=", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", "dev": true }, "fast-levenshtein": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", "dev": true }, "faye-websocket": { - "version": "0.10.0", - "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.10.0.tgz", - "integrity": "sha1-TkkvjQTftviQA1B/btvy1QHnxvQ=", + "version": "0.11.4", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", + "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", "dev": true, "requires": { "websocket-driver": ">=0.5.1" } }, "fb-watchman": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.0.tgz", - "integrity": "sha1-VOmr99+i8mzZsWNsWIwa/AXeXVg=", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", + "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", "dev": true, "requires": { - "bser": "^2.0.0" - } - }, - "fbjs": { - "version": "0.8.16", - "resolved": "https://registry.npmjs.org/fbjs/-/fbjs-0.8.16.tgz", - "integrity": "sha1-XmdDL1UNxBtXK/VYR7ispk5TN9s=", - "requires": { - "core-js": "^1.0.0", - "isomorphic-fetch": "^2.1.1", - "loose-envify": "^1.0.0", - "object-assign": "^4.1.0", - "promise": "^7.1.1", - "setimmediate": "^1.0.5", - "ua-parser-js": "^0.7.9" + "bser": "2.1.1" } }, "figgy-pudding": { - "version": "3.5.1", - "resolved": "https://registry.npmjs.org/figgy-pudding/-/figgy-pudding-3.5.1.tgz", - "integrity": "sha512-vNKxJHTEKNThjfrdJwHc7brvM6eVevuO5nTj6ez8ZQ1qbXTvGthucRF7S4vf2cr71QVnT70V34v0S1DyQsti0w==", + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/figgy-pudding/-/figgy-pudding-3.5.2.tgz", + "integrity": "sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw==", "dev": true }, - "fileset": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/fileset/-/fileset-2.0.3.tgz", - "integrity": "sha1-jnVIqW08wjJ+5eZ0FocjozO7oqA=", + "file-uri-to-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", + "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", "dev": true, + "optional": true + }, + "fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "optional": true, "requires": { - "glob": "^7.0.3", - "minimatch": "^3.0.3" + "to-regex-range": "^5.0.1" } }, - "fill-range": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "finalhandler": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", + "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", "dev": true, "requires": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" }, "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, "requires": { - "is-extendable": "^0.1.0" + "ms": "2.0.0" } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true } } }, - "finalhandler": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.1.tgz", - "integrity": "sha512-Y1GUDo39ez4aHAw7MysnUD5JzYX+WaIj8I57kO3aEPT1fFRL4sr7mjei97FgnwhAyyzRYmQZaTHb2+9uZ1dPtg==", + "find-cache-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz", + "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==", "dev": true, "requires": { - "debug": "2.6.9", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "on-finished": "~2.3.0", - "parseurl": "~1.3.2", - "statuses": "~1.4.0", - "unpipe": "~1.0.0" + "commondir": "^1.0.1", + "make-dir": "^2.0.0", + "pkg-dir": "^3.0.0" + } + }, + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, + "requires": { + "locate-path": "^3.0.0" } }, "findup-sync": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-2.0.0.tgz", - "integrity": "sha1-kyaxSIwi0aYIhlCoaQGy2akKLLw=", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-3.0.0.tgz", + "integrity": "sha512-YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg==", "dev": true, "requires": { "detect-file": "^1.0.0", - "is-glob": "^3.1.0", + "is-glob": "^4.0.0", "micromatch": "^3.0.4", "resolve-dir": "^1.0.1" - }, - "dependencies": { - "is-glob": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", - "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", - "dev": true, - "requires": { - "is-extglob": "^2.1.0" - } - } } }, "flush-write-stream": { @@ -4766,50 +16970,59 @@ "requires": { "inherits": "^2.0.3", "readable-stream": "^2.3.6" - } - }, - "follow-redirects": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.7.0.tgz", - "integrity": "sha512-m/pZQy4Gj287eNy94nivy5wchN3Kp+Q5WgUPNy5lJSZ3sgkVKSYV/ZChMAQVIgx1SqfZ2zBZtPA2YlXIWxxJOQ==", - "dev": true, - "requires": { - "debug": "^3.2.6" }, "dependencies": { - "debug": { - "version": "3.2.6", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz", - "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==", + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", "dev": true, "requires": { - "ms": "^2.1.1" + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" } }, - "ms": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", - "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==", - "dev": true + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + } } } }, + "follow-redirects": { + "version": "1.15.2", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz", + "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==", + "dev": true + }, + "for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "dev": true, + "requires": { + "is-callable": "^1.1.3" + } + }, "for-in": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", - "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=", - "dev": true - }, - "foreach": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/foreach/-/foreach-2.0.5.tgz", - "integrity": "sha1-C+4AUBiusmDQo6865ljdATbsG5k=", + "integrity": "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==", "dev": true }, "forever-agent": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", - "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=", + "integrity": "sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==", "dev": true }, "form-data": { @@ -4824,15 +17037,15 @@ } }, "forwarded": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz", - "integrity": "sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ=", + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", "dev": true }, "fragment-cache": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", - "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=", + "integrity": "sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==", "dev": true, "requires": { "map-cache": "^0.2.2" @@ -4841,17 +17054,43 @@ "fresh": { "version": "0.5.2", "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", "dev": true }, "from2": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", - "integrity": "sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=", + "integrity": "sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==", "dev": true, "requires": { "inherits": "^2.0.1", "readable-stream": "^2.0.0" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + } + } } }, "fs-readdir-recursive": { @@ -4863,25 +17102,58 @@ "fs-write-stream-atomic": { "version": "1.0.10", "resolved": "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz", - "integrity": "sha1-tH31NJPvkR33VzHnCp3tAYnbQMk=", + "integrity": "sha512-gehEzmPn2nAwr39eay+x3X34Ra+M2QlVUTLhkXPjWdeO8RF9kszk116avgBJM3ZyNHgHXBNx+VmPaFC36k0PzA==", "dev": true, "requires": { "graceful-fs": "^4.1.2", "iferr": "^0.1.5", "imurmurhash": "^0.1.4", "readable-stream": "1 || 2" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + } + } } }, "fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", "dev": true }, + "fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "dev": true, + "optional": true + }, "fstream": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/fstream/-/fstream-1.0.11.tgz", - "integrity": "sha1-XB+x8RdHcRTwYyoOtLcbPLD9MXE=", + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/fstream/-/fstream-1.0.12.tgz", + "integrity": "sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg==", "dev": true, "requires": { "graceful-fs": "^4.1.2", @@ -4896,12 +17168,47 @@ "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", "dev": true }, + "function.prototype.name": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", + "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.0", + "functions-have-names": "^1.2.2" + } + }, + "functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "dev": true + }, + "gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true + }, "get-caller-file": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.2.tgz", - "integrity": "sha1-9wLmMSfn4jHBYKgMFVSstw1QR+U=", + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", "dev": true }, + "get-intrinsic": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz", + "integrity": "sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==", + "dev": true, + "requires": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.3" + } + }, "get-stream": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", @@ -4911,84 +17218,85 @@ "pump": "^3.0.0" } }, + "get-symbol-description": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", + "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + } + }, "get-value": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", - "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=", + "integrity": "sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==", "dev": true }, "getpass": { "version": "0.1.7", "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", - "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", + "integrity": "sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==", "dev": true, "requires": { "assert-plus": "^1.0.0" } }, "glob": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz", - "integrity": "sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==", + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", "dev": true, "requires": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", - "minimatch": "^3.0.4", + "minimatch": "^3.1.1", "once": "^1.3.0", "path-is-absolute": "^1.0.0" } }, "glob-parent": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", - "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", "dev": true, + "optional": true, "requires": { - "is-glob": "^3.1.0", - "path-dirname": "^1.0.0" - }, - "dependencies": { - "is-glob": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", - "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", - "dev": true, - "requires": { - "is-extglob": "^2.1.0" - } - } + "is-glob": "^4.0.1" } }, "global-modules": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz", - "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", + "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", "dev": true, "requires": { - "global-prefix": "^1.0.1", - "is-windows": "^1.0.1", - "resolve-dir": "^1.0.0" + "global-prefix": "^3.0.0" } }, "global-prefix": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz", - "integrity": "sha1-2/dDxsFJklk8ZVVoy2btMsASLr4=", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", + "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", "dev": true, "requires": { - "expand-tilde": "^2.0.2", - "homedir-polyfill": "^1.0.1", - "ini": "^1.3.4", - "is-windows": "^1.0.1", - "which": "^1.2.14" + "ini": "^1.3.5", + "kind-of": "^6.0.2", + "which": "^1.3.1" } }, + "globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true + }, "globby": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz", - "integrity": "sha1-9abXDoOV4hyFj7BInWTfAkJNUGw=", + "integrity": "sha512-KVbFv2TQtbzCoxAnfD6JcHZTYCzyliEaaeM/gH8qQdkKr5s0OP9scEgvdcngyk7AVdY6YVW/TJHd+lQ/Df3Daw==", "dev": true, "requires": { "array-union": "^1.0.1", @@ -5001,122 +17309,94 @@ "pify": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", "dev": true } } }, "graceful-fs": { - "version": "4.1.11", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", - "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=", + "version": "4.2.10", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", + "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", "dev": true }, "growly": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/growly/-/growly-1.3.0.tgz", - "integrity": "sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE=", + "integrity": "sha512-+xGQY0YyAWCnqy7Cd++hc2JqMYzlm0dG30Jd0beaA64sROr8C4nt8Yc9V5Ro3avlSUDTN0ulqP/VBKi1/lLygw==", "dev": true }, "handle-thing": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.0.tgz", - "integrity": "sha512-d4sze1JNC454Wdo2fkuyzCr6aHcbL6PGGuFAz0Li/NcOm1tCHGnWDRmJP85dh9IhQErTc2svWFEX5xHIOo//kQ==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", + "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==", "dev": true }, - "handlebars": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.1.1.tgz", - "integrity": "sha512-3Zhi6C0euYZL5sM0Zcy7lInLXKQ+YLcF/olbN010mzGQ4XVm50JeyBnMqofHh696GrciGruC7kCcApPDJvVgwA==", - "dev": true, - "requires": { - "neo-async": "^2.6.0", - "optimist": "^0.6.1", - "source-map": "^0.6.1", - "uglify-js": "^3.1.4" - }, - "dependencies": { - "commander": { - "version": "2.19.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.19.0.tgz", - "integrity": "sha512-6tvAOO+D6OENvRAh524Dh9jcfKTYDQAqvqezbCW82xj5X0pSrcpxtvRKHLG0yBY6SD7PSDrJaj+0AiOcKVd1Xg==", - "dev": true, - "optional": true - }, - "neo-async": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.0.tgz", - "integrity": "sha512-MFh0d/Wa7vkKO3Y3LlacqAEeHK0mckVqzDieUKTT+KGxi+zIpeVsFxymkIiRpbpDziHc290Xr9A1O4Om7otoRA==", - "dev": true - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - }, - "uglify-js": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.5.2.tgz", - "integrity": "sha512-imog1WIsi9Yb56yRt5TfYVxGmnWs3WSGU73ieSOlMVFwhJCA9W8fqFFMMj4kgDqiS/80LGdsYnWL7O9UcjEBlg==", - "dev": true, - "optional": true, - "requires": { - "commander": "~2.19.0", - "source-map": "~0.6.1" - } - } - } - }, "har-schema": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", - "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=", + "integrity": "sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==", "dev": true }, "har-validator": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.3.tgz", - "integrity": "sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g==", + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", + "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", "dev": true, "requires": { - "ajv": "^6.5.5", + "ajv": "^6.12.3", "har-schema": "^2.0.0" - }, - "dependencies": { - "ajv": { - "version": "6.10.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.10.0.tgz", - "integrity": "sha512-nffhOpkymDECQyR0mnsUtoCE8RlX38G0rYP+wgLWFyZuUyuuojSSvi/+euOiQBIn63whYwYVIIH1TvE3tu4OEg==", - "dev": true, - "requires": { - "fast-deep-equal": "^2.0.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - } } }, "has": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.1.tgz", - "integrity": "sha1-hGFzP1OLCDfJNh45qauelwTcLyg=", + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", "dev": true, "requires": { - "function-bind": "^1.0.2" + "function-bind": "^1.1.1" } }, + "has-bigints": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", + "dev": true + }, "has-flag": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true + }, + "has-property-descriptors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", + "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", + "dev": true, + "requires": { + "get-intrinsic": "^1.1.1" + } + }, + "has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", "dev": true }, + "has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "dev": true, + "requires": { + "has-symbols": "^1.0.2" + } + }, "has-value": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", - "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=", + "integrity": "sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==", "dev": true, "requires": { "get-value": "^2.0.6", @@ -5127,7 +17407,7 @@ "has-values": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", - "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=", + "integrity": "sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==", "dev": true, "requires": { "is-number": "^3.0.0", @@ -5137,7 +17417,7 @@ "kind-of": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", - "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", + "integrity": "sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==", "dev": true, "requires": { "is-buffer": "^1.1.5" @@ -5146,13 +17426,22 @@ } }, "hash-base": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.0.4.tgz", - "integrity": "sha1-X8hoaEfs1zSZQDMZprCj8/auSRg=", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz", + "integrity": "sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==", "dev": true, "requires": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" + "inherits": "^2.0.4", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + }, + "dependencies": { + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true + } } }, "hash.js": { @@ -5168,7 +17457,7 @@ "hmac-drbg": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", - "integrity": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=", + "integrity": "sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==", "dev": true, "requires": { "hash.js": "^1.0.3", @@ -5186,21 +17475,47 @@ } }, "hosted-git-info": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.6.0.tgz", - "integrity": "sha512-lIbgIIQA3lz5XaB6vxakj6sDHADJiZadYEJB+FgA+C4nubM1NwcuvUr9EJPmnH1skZqpqUzWborWo8EIUi0Sdw==", + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", "dev": true }, "hpack.js": { "version": "2.1.6", "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", - "integrity": "sha1-h3dMCUnlE/QuhFdbPEVoH63ioLI=", + "integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==", "dev": true, "requires": { "inherits": "^2.0.1", "obuf": "^1.0.0", "readable-stream": "^2.0.1", "wbuf": "^1.1.0" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + } + } } }, "html-encoding-sniffer": { @@ -5213,56 +17528,63 @@ } }, "html-entities": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-1.2.1.tgz", - "integrity": "sha1-DfKTUfByEWNRXfueVUPl9u7VFi8=", + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-1.4.0.tgz", + "integrity": "sha512-8nxjcBcd8wovbeKx7h3wTji4e6+rhaVuPNpMqwWgnHh+N9ToqsCs6XztWRBPQ+UtzsoMAdKZtUENoVzU/EMtZA==", + "dev": true + }, + "html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", "dev": true }, "htmlparser2": { - "version": "3.9.2", - "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.9.2.tgz", - "integrity": "sha1-G9+HrMoPP55T+k/M6w9LTLsAszg=", + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz", + "integrity": "sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==", "dev": true, "requires": { - "domelementtype": "^1.3.0", + "domelementtype": "^1.3.1", "domhandler": "^2.3.0", "domutils": "^1.5.1", "entities": "^1.1.1", "inherits": "^2.0.1", - "readable-stream": "^2.0.2" + "readable-stream": "^3.1.1" } }, "http-deceiver": { "version": "1.2.7", "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", - "integrity": "sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc=", + "integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==", "dev": true }, "http-errors": { - "version": "1.6.3", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", - "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", "dev": true, "requires": { - "depd": "~1.1.2", - "inherits": "2.0.3", - "setprototypeof": "1.1.0", - "statuses": ">= 1.4.0 < 2" + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" } }, "http-parser-js": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.0.tgz", - "integrity": "sha512-cZdEF7r4gfRIq7ezX9J0T+kQmJNOub71dWbgAXVHDct80TKP4MCETtZQ31xyv38UwgzkWPYF/Xc0ge55dW9Z9w==", + "version": "0.5.8", + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz", + "integrity": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==", "dev": true }, "http-proxy": { - "version": "1.17.0", - "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.17.0.tgz", - "integrity": "sha512-Taqn+3nNvYRfJ3bGvKfBSRwy1v6eePlm3oc/aWVxZp57DQr5Eq3xhKJi7Z4hZpS8PC3H4qI+Yly5EmFacGuA/g==", + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", + "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", "dev": true, "requires": { - "eventemitter3": "^3.0.0", + "eventemitter3": "^4.0.0", "follow-redirects": "^1.0.0", "requires-port": "^1.0.0" } @@ -5282,7 +17604,7 @@ "http-signature": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", - "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", + "integrity": "sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==", "dev": true, "requires": { "assert-plus": "^1.0.0", @@ -5293,42 +17615,43 @@ "https-browserify": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", - "integrity": "sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=", + "integrity": "sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg==", "dev": true }, "iconv-lite": { - "version": "0.4.21", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.21.tgz", - "integrity": "sha512-En5V9za5mBt2oUA03WGD3TwDv0MKAruqsuxstbMUZaj9W9k/m1CV/9py3l0L5kw9Bln8fdHQmzHSYtvpvTLpKw==", + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dev": true, "requires": { - "safer-buffer": "^2.1.0" + "safer-buffer": ">= 2.1.2 < 3" } }, "icss-replace-symbols": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz", - "integrity": "sha1-Bupvg2ead0njhs/h/oEq5dsiPe0=", + "integrity": "sha512-chIaY3Vh2mh2Q3RGXttaDIzeiPvaVXJ+C4DAh/w3c37SKZ/U6PGMmuicR2EQQp9bKG8zLMCl7I+PtIoOOPp8Gg==", "dev": true }, "icss-utils": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-4.1.0.tgz", - "integrity": "sha512-3DEun4VOeMvSczifM3F2cKQrDQ5Pj6WKhkOq6HD4QTnDUAq8MQRxy5TX6Sy1iY6WPBe4gQ3p5vTECjbIkglkkQ==", + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-4.1.1.tgz", + "integrity": "sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==", "dev": true, "requires": { "postcss": "^7.0.14" } }, "ieee754": { - "version": "1.1.13", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.13.tgz", - "integrity": "sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", "dev": true }, "iferr": { "version": "0.1.5", "resolved": "https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz", - "integrity": "sha1-xg7taebY/bazEEofy8ocGS3FtQE=", + "integrity": "sha512-DUNFN5j7Tln0D+TxzloUjKB+CtVu6myn0JEFak6dG18mNt9YkQ6lzGCdafwofISZ1lLF3xRHJ98VKy9ynkcFaA==", "dev": true }, "import-local": { @@ -5339,50 +17662,24 @@ "requires": { "pkg-dir": "^3.0.0", "resolve-cwd": "^2.0.0" - }, - "dependencies": { - "find-up": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", - "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", - "dev": true, - "requires": { - "locate-path": "^3.0.0" - } - }, - "pkg-dir": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", - "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", - "dev": true, - "requires": { - "find-up": "^3.0.0" - } - } } }, "imurmurhash": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", - "dev": true - }, - "indexes-of": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz", - "integrity": "sha1-8w9xbI4r00bHtn0985FVZqfAVgc=", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", "dev": true }, - "indexof": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/indexof/-/indexof-0.0.1.tgz", - "integrity": "sha1-gtwzbSMrkGIXnQWrMpOmYFn9Q10=", + "infer-owner": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz", + "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==", "dev": true }, "inflight": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", "dev": true, "requires": { "once": "^1.3.0", @@ -5390,39 +17687,42 @@ } }, "inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", "dev": true }, "ini": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz", - "integrity": "sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==", + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", "dev": true }, "internal-ip": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/internal-ip/-/internal-ip-4.2.0.tgz", - "integrity": "sha512-ZY8Rk+hlvFeuMmG5uH1MXhhdeMntmIaxaInvAmzMq/SHV8rv4Kh+6GiQNNDQd0wZFrcO+FiTBo8lui/osKOyJw==", + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/internal-ip/-/internal-ip-4.3.0.tgz", + "integrity": "sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==", "dev": true, "requires": { - "default-gateway": "^4.0.1", + "default-gateway": "^4.2.0", "ipaddr.js": "^1.9.0" - }, - "dependencies": { - "ipaddr.js": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.0.tgz", - "integrity": "sha512-M4Sjn6N/+O6/IXSJseKqHoFc+5FdGJ22sXqnjTpdZweHK64MzEPAyQZyEU3R/KRv2GLoa7nNtg/C2Ev6m7z+eA==", - "dev": true - } + } + }, + "internal-slot": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz", + "integrity": "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==", + "dev": true, + "requires": { + "get-intrinsic": "^1.1.0", + "has": "^1.0.3", + "side-channel": "^1.0.4" } }, "interpret": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.2.0.tgz", - "integrity": "sha512-mT34yGKMNceBQUoVn7iCDKDntA7SC6gycMAWzGx1z/CMCTV7b2AAtXlo3nRyHZ1FelRkQbQjprHSYGwzLtkVbw==", + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", + "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==", "dev": true }, "invariant": { @@ -5434,52 +17734,82 @@ "loose-envify": "^1.0.0" } }, - "invert-kv": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-2.0.0.tgz", - "integrity": "sha512-wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA==", - "dev": true - }, "ip": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz", - "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=", + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.8.tgz", + "integrity": "sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==", "dev": true }, "ip-regex": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz", - "integrity": "sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk=", + "integrity": "sha512-58yWmlHpp7VYfcdTwMTvwMmqx/Elfxjd9RXTDyMsbL7lLWmhMylLEqiYVLKuLzOZqVgiWXD9MfR62Vv89VRxkw==", "dev": true }, "ipaddr.js": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.8.0.tgz", - "integrity": "sha1-6qM9bd16zo9/b+DJygRA5wZzix4=", + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "dev": true + }, + "is-absolute-url": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-3.0.3.tgz", + "integrity": "sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==", "dev": true }, "is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", "dev": true, "requires": { - "kind-of": "^3.0.2" + "kind-of": "^6.0.0" + } + }, + "is-arguments": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", + "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" } }, "is-arrayish": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", "dev": true }, + "is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "dev": true, + "requires": { + "has-bigints": "^1.0.1" + } + }, "is-binary-path": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", - "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", "dev": true, + "optional": true, "requires": { - "binary-extensions": "^1.0.0" + "binary-extensions": "^2.0.0" + } + }, + "is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" } }, "is-buffer": { @@ -5488,19 +17818,10 @@ "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", "dev": true }, - "is-builtin-module": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz", - "integrity": "sha1-VAVy0096wxGfj3bDDLwbHgN6/74=", - "dev": true, - "requires": { - "builtin-modules": "^1.0.0" - } - }, "is-callable": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.1.3.tgz", - "integrity": "sha1-hut1OSgF3cM69xySoO7fdO52BLI=", + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", "dev": true }, "is-ci": { @@ -5512,132 +17833,139 @@ "ci-info": "^2.0.0" } }, + "is-core-module": { + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.10.0.tgz", + "integrity": "sha512-Erxj2n/LDAZ7H8WNJXd9tw38GYM3dv8rk8Zcs+jJuxYTW7sozH+SS8NtrSjVL1/vpLvWi1hxy96IzjJ3EHTJJg==", + "dev": true, + "requires": { + "has": "^1.0.3" + } + }, "is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", "dev": true, "requires": { - "kind-of": "^3.0.2" + "kind-of": "^6.0.0" } }, "is-date-object": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.1.tgz", - "integrity": "sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY=", - "dev": true + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "dev": true, + "requires": { + "has-tostringtag": "^1.0.0" + } }, "is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", "dev": true, "requires": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - }, - "dependencies": { - "kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", - "dev": true - } + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" } }, "is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", - "dev": true + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } }, "is-extglob": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", "dev": true }, "is-fullwidth-code-point": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", - "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", - "dev": true, - "requires": { - "number-is-nan": "^1.0.0" - } + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==", + "dev": true }, "is-generator-fn": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.0.0.tgz", - "integrity": "sha512-elzyIdM7iKoFHzcrndIqjYomImhxrFRnGP3galODoII4TB9gI7mZ+FnlLQmmjf27SxHS2gKEeyhX5/+YRS6H9g==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", + "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", "dev": true }, "is-glob": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", - "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", "dev": true, "requires": { "is-extglob": "^2.1.1" } }, + "is-negative-zero": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", + "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", + "dev": true + }, "is-number": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", "dev": true, "requires": { "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } } }, - "is-odd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-odd/-/is-odd-2.0.0.tgz", - "integrity": "sha512-OTiixgpZAT1M4NHgS5IguFp/Vz2VI3U7Goh4/HA1adtwyLtSBrxYlcSYkhpAE07s4fKEcjrFxyvtQBND4vFQyQ==", + "is-number-object": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", "dev": true, "requires": { - "is-number": "^4.0.0" - }, - "dependencies": { - "is-number": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", - "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==", - "dev": true - } + "has-tostringtag": "^1.0.0" } }, "is-path-cwd": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-1.0.0.tgz", - "integrity": "sha1-0iXsIxMuie3Tj9p2dHLmLmXxEG0=", + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", + "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==", "dev": true }, "is-path-in-cwd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-1.0.1.tgz", - "integrity": "sha512-FjV1RTW48E7CWM7eE/J2NJvAEEVektecDBVBE5Hh3nM1Jd0kvhHtX68Pr3xsDf857xt3Y4AkwVULK1Vku62aaQ==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz", + "integrity": "sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==", "dev": true, "requires": { - "is-path-inside": "^1.0.0" + "is-path-inside": "^2.1.0" } }, "is-path-inside": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.1.tgz", - "integrity": "sha1-jvW33lBDej/cprToZe96pVy0gDY=", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-2.1.0.tgz", + "integrity": "sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==", "dev": true, "requires": { - "path-is-inside": "^1.0.1" + "path-is-inside": "^1.0.2" } }, - "is-plain-obj": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", - "integrity": "sha1-caUMhCnfync8kqOQpKA7OfzVHT4=", - "dev": true - }, "is-plain-object": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", @@ -5648,31 +17976,63 @@ } }, "is-regex": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.0.4.tgz", - "integrity": "sha1-VRdIm1RwkbCTDglWVM7SXul+lJE=", + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-shared-array-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", + "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", "dev": true, "requires": { - "has": "^1.0.1" + "call-bind": "^1.0.2" } }, "is-stream": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", - "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=" + "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", + "dev": true + }, + "is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "dev": true, + "requires": { + "has-tostringtag": "^1.0.0" + } }, "is-symbol": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.1.tgz", - "integrity": "sha1-PMWfAAJRlLarLjjbrmaJJWtmBXI=", - "dev": true + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "dev": true, + "requires": { + "has-symbols": "^1.0.2" + } }, "is-typedarray": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", - "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=", + "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==", "dev": true }, + "is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "dev": true, + "requires": { + "call-bind": "^1.0.2" + } + }, "is-windows": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", @@ -5682,121 +18042,65 @@ "is-wsl": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", - "integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=", + "integrity": "sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==", "dev": true }, "isarray": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", "dev": true }, "isexe": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", "dev": true }, "isobject": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", "dev": true }, - "isomorphic-fetch": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz", - "integrity": "sha1-YRrhrPFPXoH3KVB0coGf6XM1WKk=", - "requires": { - "node-fetch": "^1.0.1", - "whatwg-fetch": ">=0.10.0" - } - }, "isstream": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", - "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=", + "integrity": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==", "dev": true }, - "istanbul-api": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/istanbul-api/-/istanbul-api-2.1.1.tgz", - "integrity": "sha512-kVmYrehiwyeBAk/wE71tW6emzLiHGjYIiDrc8sfyty4F8M02/lrgXSm+R1kXysmF20zArvmZXjlE/mg24TVPJw==", - "dev": true, - "requires": { - "async": "^2.6.1", - "compare-versions": "^3.2.1", - "fileset": "^2.0.3", - "istanbul-lib-coverage": "^2.0.3", - "istanbul-lib-hook": "^2.0.3", - "istanbul-lib-instrument": "^3.1.0", - "istanbul-lib-report": "^2.0.4", - "istanbul-lib-source-maps": "^3.0.2", - "istanbul-reports": "^2.1.1", - "js-yaml": "^3.12.0", - "make-dir": "^1.3.0", - "minimatch": "^3.0.4", - "once": "^1.4.0" - }, - "dependencies": { - "async": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/async/-/async-2.6.2.tgz", - "integrity": "sha512-H1qVYh1MYhEEFLsP97cVKqCGo7KfCyTt6uEWqsTBr9SO84oK9Uwbyd/yCW+6rKJLHksBNUVWZDAjfS+Ccx0Bbg==", - "dev": true, - "requires": { - "lodash": "^4.17.11" - } - } - } - }, "istanbul-lib-coverage": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz", - "integrity": "sha512-dKWuzRGCs4G+67VfW9pBFFz2Jpi4vSp/k7zBcJ888ofV5Mi1g5CUML5GvMvV6u9Cjybftu+E8Cgp+k0dI1E5lw==", + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.5.tgz", + "integrity": "sha512-8aXznuEPCJvGnMSRft4udDRDtb1V3pkQkMMI5LI+6HuQz5oQ4J2UFn1H82raA3qJtyOLkkwVqICBQkjnGtn5mA==", "dev": true }, - "istanbul-lib-hook": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/istanbul-lib-hook/-/istanbul-lib-hook-2.0.3.tgz", - "integrity": "sha512-CLmEqwEhuCYtGcpNVJjLV1DQyVnIqavMLFHV/DP+np/g3qvdxu3gsPqYoJMXm15sN84xOlckFB3VNvRbf5yEgA==", - "dev": true, - "requires": { - "append-transform": "^1.0.0" - } - }, "istanbul-lib-instrument": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-3.1.0.tgz", - "integrity": "sha512-ooVllVGT38HIk8MxDj/OIHXSYvH+1tq/Vb38s8ixt9GoJadXska4WkGY+0wkmtYCZNYtaARniH/DixUGGLZ0uA==", + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-3.3.0.tgz", + "integrity": "sha512-5nnIN4vo5xQZHdXno/YDXJ0G+I3dAm4XgzfSVTPLQpj/zAV2dV6Juy0yaf10/zrJOJeHoN3fraFe+XRq2bFVZA==", "dev": true, "requires": { - "@babel/generator": "^7.0.0", - "@babel/parser": "^7.0.0", - "@babel/template": "^7.0.0", - "@babel/traverse": "^7.0.0", - "@babel/types": "^7.0.0", - "istanbul-lib-coverage": "^2.0.3", - "semver": "^5.5.0" + "@babel/generator": "^7.4.0", + "@babel/parser": "^7.4.3", + "@babel/template": "^7.4.0", + "@babel/traverse": "^7.4.3", + "@babel/types": "^7.4.0", + "istanbul-lib-coverage": "^2.0.5", + "semver": "^6.0.0" } }, "istanbul-lib-report": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-2.0.4.tgz", - "integrity": "sha512-sOiLZLAWpA0+3b5w5/dq0cjm2rrNdAfHWaGhmn7XEFW6X++IV9Ohn+pnELAl9K3rfpaeBfbmH9JU5sejacdLeA==", + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-2.0.8.tgz", + "integrity": "sha512-fHBeG573EIihhAblwgxrSenp0Dby6tJMFR/HvlerBsrCTD5bkUuoNtn3gVh29ZCS824cGGBPn7Sg7cNk+2xUsQ==", "dev": true, "requires": { - "istanbul-lib-coverage": "^2.0.3", - "make-dir": "^1.3.0", - "supports-color": "^6.0.0" + "istanbul-lib-coverage": "^2.0.5", + "make-dir": "^2.1.0", + "supports-color": "^6.1.0" }, "dependencies": { - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", - "dev": true - }, "supports-color": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", @@ -5809,1115 +18113,417 @@ } }, "istanbul-lib-source-maps": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-3.0.2.tgz", - "integrity": "sha512-JX4v0CiKTGp9fZPmoxpu9YEkPbEqCqBbO3403VabKjH+NRXo72HafD5UgnjTEqHL2SAjaZK1XDuDOkn6I5QVfQ==", + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-3.0.6.tgz", + "integrity": "sha512-R47KzMtDJH6X4/YW9XTx+jrLnZnscW4VpNN+1PViSYTejLVPWv7oov+Duf8YQSPyVRUvueQqz1TcsC6mooZTXw==", "dev": true, "requires": { "debug": "^4.1.1", - "istanbul-lib-coverage": "^2.0.3", - "make-dir": "^1.3.0", - "rimraf": "^2.6.2", - "source-map": "^0.6.1" - }, - "dependencies": { - "debug": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", - "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", - "dev": true, - "requires": { - "ms": "^2.1.1" - } - }, - "ms": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", - "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==", - "dev": true - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - } + "istanbul-lib-coverage": "^2.0.5", + "make-dir": "^2.1.0", + "rimraf": "^2.6.3", + "source-map": "^0.6.1" } }, "istanbul-reports": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-2.1.1.tgz", - "integrity": "sha512-FzNahnidyEPBCI0HcufJoSEoKykesRlFcSzQqjH9x0+LC8tnnE/p/90PBLu8iZTxr8yYZNyTtiAujUqyN+CIxw==", + "version": "2.2.7", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-2.2.7.tgz", + "integrity": "sha512-uu1F/L1o5Y6LzPVSVZXNOoD/KXpJue9aeLRd0sM9uMXfZvzomB0WxVamWb5ue8kA2vVWEmW7EG+A5n3f1kqHKg==", "dev": true, "requires": { - "handlebars": "^4.1.0" + "html-escaper": "^2.0.0" } }, "jest": { - "version": "24.5.0", - "resolved": "https://registry.npmjs.org/jest/-/jest-24.5.0.tgz", - "integrity": "sha512-lxL+Fq5/RH7inxxmfS2aZLCf8MsS+YCUBfeiNO6BWz/MmjhDGaIEA/2bzEf9q4Q0X+mtFHiinHFvQ0u+RvW/qQ==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest/-/jest-24.9.0.tgz", + "integrity": "sha512-YvkBL1Zm7d2B1+h5fHEOdyjCG+sGMz4f8D86/0HiqJ6MB4MnDc8FgP5vdWsGnemOQro7lnYo8UakZ3+5A0jxGw==", "dev": true, "requires": { "import-local": "^2.0.0", - "jest-cli": "^24.5.0" - }, - "dependencies": { - "ansi-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", - "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", - "dev": true - }, - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "requires": { - "color-convert": "^1.9.0" - } - }, - "camelcase": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.2.0.tgz", - "integrity": "sha512-IXFsBS2pC+X0j0N/GE7Dm7j3bsEBp+oTpb7F50dwEVX7rf3IgwO9XatnegTsDtniKCUtEJH4fSU6Asw7uoVLfQ==", - "dev": true - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "cliui": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-4.1.0.tgz", - "integrity": "sha512-4FG+RSG9DL7uEwRUZXZn3SS34DiDPfzP0VOiEwtUWlE+AR2EIg+hSyvrIgUUfhdgR/UkAeW2QHgeP+hWrXs7jQ==", - "dev": true, - "requires": { - "string-width": "^2.1.1", - "strip-ansi": "^4.0.0", - "wrap-ansi": "^2.0.0" - } - }, - "find-up": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", - "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", - "dev": true, - "requires": { - "locate-path": "^3.0.0" - } - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", - "dev": true - }, - "invert-kv": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-2.0.0.tgz", - "integrity": "sha512-wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA==", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", - "dev": true - }, - "jest-cli": { - "version": "24.5.0", - "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-24.5.0.tgz", - "integrity": "sha512-P+Jp0SLO4KWN0cGlNtC7JV0dW1eSFR7eRpoOucP2UM0sqlzp/bVHeo71Omonvigrj9AvCKy7NtQANtqJ7FXz8g==", - "dev": true, - "requires": { - "@jest/core": "^24.5.0", - "@jest/test-result": "^24.5.0", - "@jest/types": "^24.5.0", - "chalk": "^2.0.1", - "exit": "^0.1.2", - "import-local": "^2.0.0", - "is-ci": "^2.0.0", - "jest-config": "^24.5.0", - "jest-util": "^24.5.0", - "jest-validate": "^24.5.0", - "prompts": "^2.0.1", - "realpath-native": "^1.1.0", - "yargs": "^12.0.2" - } - }, - "lcid": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/lcid/-/lcid-2.0.0.tgz", - "integrity": "sha512-avPEb8P8EGnwXKClwsNUgryVjllcRqtMYa49NTsbQagYuT1DcXnl1915oxWjoyGrXR6zH/Y0Zc96xWsPcoDKeA==", - "dev": true, - "requires": { - "invert-kv": "^2.0.0" - } - }, - "os-locale": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-3.1.0.tgz", - "integrity": "sha512-Z8l3R4wYWM40/52Z+S265okfFj8Kt2cC2MKY+xNi3kFs+XGI7WXu/I309QQQYbRW4ijiZ+yxs9pqEhJh0DqW3Q==", - "dev": true, - "requires": { - "execa": "^1.0.0", - "lcid": "^2.0.0", - "mem": "^4.0.0" - } - }, - "string-width": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", - "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", - "dev": true, - "requires": { - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^4.0.0" - } - }, - "strip-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", - "dev": true, - "requires": { - "ansi-regex": "^3.0.0" - } - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - }, - "which-module": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", - "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=", - "dev": true - }, - "yargs": { - "version": "12.0.5", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-12.0.5.tgz", - "integrity": "sha512-Lhz8TLaYnxq/2ObqHDql8dX8CJi97oHxrjUcYtzKbbykPtVW9WB+poxI+NM2UIzsMgNCZTIf0AQwsjK5yMAqZw==", - "dev": true, - "requires": { - "cliui": "^4.0.0", - "decamelize": "^1.2.0", - "find-up": "^3.0.0", - "get-caller-file": "^1.0.1", - "os-locale": "^3.0.0", - "require-directory": "^2.1.1", - "require-main-filename": "^1.0.1", - "set-blocking": "^2.0.0", - "string-width": "^2.0.0", - "which-module": "^2.0.0", - "y18n": "^3.2.1 || ^4.0.0", - "yargs-parser": "^11.1.1" - } - }, - "yargs-parser": { - "version": "11.1.1", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-11.1.1.tgz", - "integrity": "sha512-C6kB/WJDiaxONLJQnF8ccx9SEeoTTLek8RVbaOIsrAUS8VrBEXfmeSnCZxygc+XC2sNMBIwOOnfcxiynjHsVSQ==", - "dev": true, - "requires": { - "camelcase": "^5.0.0", - "decamelize": "^1.2.0" - } - } + "jest-cli": "^24.9.0" } }, "jest-changed-files": { - "version": "24.5.0", - "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-24.5.0.tgz", - "integrity": "sha512-Ikl29dosYnTsH9pYa1Tv9POkILBhN/TLZ37xbzgNsZ1D2+2n+8oEZS2yP1BrHn/T4Rs4Ggwwbp/x8CKOS5YJOg==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-24.9.0.tgz", + "integrity": "sha512-6aTWpe2mHF0DhL28WjdkO8LyGjs3zItPET4bMSeXU6T3ub4FPMw+mcOcbdGXQOAfmLcxofD23/5Bl9Z4AkFwqg==", "dev": true, "requires": { - "@jest/types": "^24.5.0", + "@jest/types": "^24.9.0", "execa": "^1.0.0", "throat": "^4.0.0" } }, + "jest-cli": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-24.9.0.tgz", + "integrity": "sha512-+VLRKyitT3BWoMeSUIHRxV/2g8y9gw91Jh5z2UmXZzkZKpbC08CSehVxgHUwTpy+HwGcns/tqafQDJW7imYvGg==", + "dev": true, + "requires": { + "@jest/core": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "import-local": "^2.0.0", + "is-ci": "^2.0.0", + "jest-config": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "prompts": "^2.0.1", + "realpath-native": "^1.1.0", + "yargs": "^13.3.0" + } + }, "jest-config": { - "version": "24.5.0", - "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-24.5.0.tgz", - "integrity": "sha512-t2UTh0Z2uZhGBNVseF8wA2DS2SuBiLOL6qpLq18+OZGfFUxTM7BzUVKyHFN/vuN+s/aslY1COW95j1Rw81huOQ==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-24.9.0.tgz", + "integrity": "sha512-RATtQJtVYQrp7fvWg6f5y3pEFj9I+H8sWw4aKxnDZ96mob5i5SD6ZEGWgMLXQ4LE8UurrjbdlLWdUeo+28QpfQ==", "dev": true, "requires": { "@babel/core": "^7.1.0", - "@jest/types": "^24.5.0", - "babel-jest": "^24.5.0", + "@jest/test-sequencer": "^24.9.0", + "@jest/types": "^24.9.0", + "babel-jest": "^24.9.0", "chalk": "^2.0.1", "glob": "^7.1.1", - "jest-environment-jsdom": "^24.5.0", - "jest-environment-node": "^24.5.0", - "jest-get-type": "^24.3.0", - "jest-jasmine2": "^24.5.0", + "jest-environment-jsdom": "^24.9.0", + "jest-environment-node": "^24.9.0", + "jest-get-type": "^24.9.0", + "jest-jasmine2": "^24.9.0", "jest-regex-util": "^24.3.0", - "jest-resolve": "^24.5.0", - "jest-util": "^24.5.0", - "jest-validate": "^24.5.0", + "jest-resolve": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", "micromatch": "^3.1.10", - "pretty-format": "^24.5.0", + "pretty-format": "^24.9.0", "realpath-native": "^1.1.0" - }, - "dependencies": { - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "requires": { - "color-convert": "^1.9.0" - } - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", - "dev": true - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - } } }, "jest-diff": { - "version": "24.5.0", - "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-24.5.0.tgz", - "integrity": "sha512-mCILZd9r7zqL9Uh6yNoXjwGQx0/J43OD2vvWVKwOEOLZliQOsojXwqboubAQ+Tszrb6DHGmNU7m4whGeB9YOqw==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-24.9.0.tgz", + "integrity": "sha512-qMfrTs8AdJE2iqrTp0hzh7kTd2PQWrsFyj9tORoKmu32xjPjeE4NyjVRDz8ybYwqS2ik8N4hsIpiVTyFeo2lBQ==", "dev": true, "requires": { "chalk": "^2.0.1", - "diff-sequences": "^24.3.0", - "jest-get-type": "^24.3.0", - "pretty-format": "^24.5.0" - }, - "dependencies": { - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "requires": { - "color-convert": "^1.9.0" - } - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", - "dev": true - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - } + "diff-sequences": "^24.9.0", + "jest-get-type": "^24.9.0", + "pretty-format": "^24.9.0" } }, "jest-docblock": { - "version": "24.3.0", - "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-24.3.0.tgz", - "integrity": "sha512-nlANmF9Yq1dufhFlKG9rasfQlrY7wINJbo3q01tu56Jv5eBU5jirylhF2O5ZBnLxzOVBGRDz/9NAwNyBtG4Nyg==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-24.9.0.tgz", + "integrity": "sha512-F1DjdpDMJMA1cN6He0FNYNZlo3yYmOtRUnktrT9Q37njYzC5WEaDdmbynIgy0L/IvXvvgsG8OsqhLPXTpfmZAA==", "dev": true, "requires": { "detect-newline": "^2.1.0" } }, "jest-each": { - "version": "24.5.0", - "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-24.5.0.tgz", - "integrity": "sha512-6gy3Kh37PwIT5sNvNY2VchtIFOOBh8UCYnBlxXMb5sr5wpJUDPTUATX2Axq1Vfk+HWTMpsYPeVYp4TXx5uqUBw==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-24.9.0.tgz", + "integrity": "sha512-ONi0R4BvW45cw8s2Lrx8YgbeXL1oCQ/wIDwmsM3CqM/nlblNCPmnC3IPQlMbRFZu3wKdQ2U8BqM6lh3LJ5Bsog==", "dev": true, "requires": { - "@jest/types": "^24.5.0", + "@jest/types": "^24.9.0", "chalk": "^2.0.1", - "jest-get-type": "^24.3.0", - "jest-util": "^24.5.0", - "pretty-format": "^24.5.0" - }, - "dependencies": { - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "requires": { - "color-convert": "^1.9.0" - } - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", - "dev": true - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - } + "jest-get-type": "^24.9.0", + "jest-util": "^24.9.0", + "pretty-format": "^24.9.0" } }, "jest-environment-jsdom": { - "version": "24.5.0", - "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-24.5.0.tgz", - "integrity": "sha512-62Ih5HbdAWcsqBx2ktUnor/mABBo1U111AvZWcLKeWN/n/gc5ZvDBKe4Og44fQdHKiXClrNGC6G0mBo6wrPeGQ==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-24.9.0.tgz", + "integrity": "sha512-Zv9FV9NBRzLuALXjvRijO2351DRQeLYXtpD4xNvfoVFw21IOKNhZAEUKcbiEtjTkm2GsJ3boMVgkaR7rN8qetA==", "dev": true, "requires": { - "@jest/environment": "^24.5.0", - "@jest/fake-timers": "^24.5.0", - "@jest/types": "^24.5.0", - "jest-mock": "^24.5.0", - "jest-util": "^24.5.0", + "@jest/environment": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0", + "jest-util": "^24.9.0", "jsdom": "^11.5.1" } }, "jest-environment-node": { - "version": "24.5.0", - "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-24.5.0.tgz", - "integrity": "sha512-du6FuyWr/GbKLsmAbzNF9mpr2Iu2zWSaq/BNHzX+vgOcts9f2ayXBweS7RAhr+6bLp6qRpMB6utAMF5Ygktxnw==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-24.9.0.tgz", + "integrity": "sha512-6d4V2f4nxzIzwendo27Tr0aFm+IXWa0XEUnaH6nU0FMaozxovt+sfRvh4J47wL1OvF83I3SSTu0XK+i4Bqe7uA==", "dev": true, "requires": { - "@jest/environment": "^24.5.0", - "@jest/fake-timers": "^24.5.0", - "@jest/types": "^24.5.0", - "jest-mock": "^24.5.0", - "jest-util": "^24.5.0" + "@jest/environment": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0", + "jest-util": "^24.9.0" } }, "jest-get-type": { - "version": "24.3.0", - "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-24.3.0.tgz", - "integrity": "sha512-HYF6pry72YUlVcvUx3sEpMRwXEWGEPlJ0bSPVnB3b3n++j4phUEoSPcS6GC0pPJ9rpyPSe4cb5muFo6D39cXow==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-24.9.0.tgz", + "integrity": "sha512-lUseMzAley4LhIcpSP9Jf+fTrQ4a1yHQwLNeeVa2cEmbCGeoZAtYPOIv8JaxLD/sUpKxetKGP+gsHl8f8TSj8Q==", "dev": true }, "jest-haste-map": { - "version": "24.5.0", - "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-24.5.0.tgz", - "integrity": "sha512-mb4Yrcjw9vBgSvobDwH8QUovxApdimGcOkp+V1ucGGw4Uvr3VzZQBJhNm1UY3dXYm4XXyTW2G7IBEZ9pM2ggRQ==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-24.9.0.tgz", + "integrity": "sha512-kfVFmsuWui2Sj1Rp1AJ4D9HqJwE4uwTlS/vO+eRUaMmd54BFpli2XhMQnPC2k4cHFVbB2Q2C+jtI1AGLgEnCjQ==", "dev": true, "requires": { - "@jest/types": "^24.5.0", + "@jest/types": "^24.9.0", + "anymatch": "^2.0.0", "fb-watchman": "^2.0.0", + "fsevents": "^1.2.7", "graceful-fs": "^4.1.15", "invariant": "^2.2.4", - "jest-serializer": "^24.4.0", - "jest-util": "^24.5.0", - "jest-worker": "^24.4.0", + "jest-serializer": "^24.9.0", + "jest-util": "^24.9.0", + "jest-worker": "^24.9.0", "micromatch": "^3.1.10", - "sane": "^4.0.3" - }, - "dependencies": { - "graceful-fs": { - "version": "4.1.15", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.15.tgz", - "integrity": "sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA==", - "dev": true - } - } - }, - "jest-jasmine2": { - "version": "24.5.0", - "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-24.5.0.tgz", - "integrity": "sha512-sfVrxVcx1rNUbBeyIyhkqZ4q+seNKyAG6iM0S2TYBdQsXjoFDdqWFfsUxb6uXSsbimbXX/NMkJIwUZ1uT9+/Aw==", - "dev": true, - "requires": { - "@babel/traverse": "^7.1.0", - "@jest/environment": "^24.5.0", - "@jest/test-result": "^24.5.0", - "@jest/types": "^24.5.0", - "chalk": "^2.0.1", - "co": "^4.6.0", - "expect": "^24.5.0", - "is-generator-fn": "^2.0.0", - "jest-each": "^24.5.0", - "jest-matcher-utils": "^24.5.0", - "jest-message-util": "^24.5.0", - "jest-runtime": "^24.5.0", - "jest-snapshot": "^24.5.0", - "jest-util": "^24.5.0", - "pretty-format": "^24.5.0", - "throat": "^4.0.0" + "sane": "^4.0.3", + "walker": "^1.0.7" }, "dependencies": { - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", "dev": true, "requires": { - "color-convert": "^1.9.0" + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" } }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "fsevents": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", "dev": true, + "optional": true, "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" + "bindings": "^1.5.0", + "nan": "^2.12.1" } }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", - "dev": true - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", "dev": true, "requires": { - "has-flag": "^3.0.0" + "remove-trailing-separator": "^1.0.1" } } } }, + "jest-jasmine2": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-24.9.0.tgz", + "integrity": "sha512-Cq7vkAgaYKp+PsX+2/JbTarrk0DmNhsEtqBXNwUHkdlbrTBLtMJINADf2mf5FkowNsq8evbPc07/qFO0AdKTzw==", + "dev": true, + "requires": { + "@babel/traverse": "^7.1.0", + "@jest/environment": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "co": "^4.6.0", + "expect": "^24.9.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-runtime": "^24.9.0", + "jest-snapshot": "^24.9.0", + "jest-util": "^24.9.0", + "pretty-format": "^24.9.0", + "throat": "^4.0.0" + } + }, "jest-leak-detector": { - "version": "24.5.0", - "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-24.5.0.tgz", - "integrity": "sha512-LZKBjGovFRx3cRBkqmIg+BZnxbrLqhQl09IziMk3oeh1OV81Hg30RUIx885mq8qBv1PA0comB9bjKcuyNO1bCQ==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-24.9.0.tgz", + "integrity": "sha512-tYkFIDsiKTGwb2FG1w8hX9V0aUb2ot8zY/2nFg087dUageonw1zrLMP4W6zsRO59dPkTSKie+D4rhMuP9nRmrA==", "dev": true, "requires": { - "pretty-format": "^24.5.0" + "jest-get-type": "^24.9.0", + "pretty-format": "^24.9.0" } }, "jest-matcher-utils": { - "version": "24.5.0", - "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-24.5.0.tgz", - "integrity": "sha512-QM1nmLROjLj8GMGzg5VBra3I9hLpjMPtF1YqzQS3rvWn2ltGZLrGAO1KQ9zUCVi5aCvrkbS5Ndm2evIP9yZg1Q==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-24.9.0.tgz", + "integrity": "sha512-OZz2IXsu6eaiMAwe67c1T+5tUAtQyQx27/EMEkbFAGiw52tB9em+uGbzpcgYVpA8wl0hlxKPZxrly4CXU/GjHA==", "dev": true, "requires": { "chalk": "^2.0.1", - "jest-diff": "^24.5.0", - "jest-get-type": "^24.3.0", - "pretty-format": "^24.5.0" - }, - "dependencies": { - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "requires": { - "color-convert": "^1.9.0" - } - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", - "dev": true - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - } + "jest-diff": "^24.9.0", + "jest-get-type": "^24.9.0", + "pretty-format": "^24.9.0" } }, "jest-message-util": { - "version": "24.5.0", - "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-24.5.0.tgz", - "integrity": "sha512-6ZYgdOojowCGiV0D8WdgctZEAe+EcFU+KrVds+0ZjvpZurUW2/oKJGltJ6FWY2joZwYXN5VL36GPV6pNVRqRnQ==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-24.9.0.tgz", + "integrity": "sha512-oCj8FiZ3U0hTP4aSui87P4L4jC37BtQwUMqk+zk/b11FR19BJDeZsZAvIHutWnmtw7r85UmR3CEWZ0HWU2mAlw==", "dev": true, "requires": { "@babel/code-frame": "^7.0.0", - "@jest/test-result": "^24.5.0", - "@jest/types": "^24.5.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", "@types/stack-utils": "^1.0.1", "chalk": "^2.0.1", "micromatch": "^3.1.10", "slash": "^2.0.0", "stack-utils": "^1.0.1" - }, - "dependencies": { - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "requires": { - "color-convert": "^1.9.0" - } - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", - "dev": true - }, - "slash": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", - "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", - "dev": true - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - } } }, "jest-mock": { - "version": "24.5.0", - "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-24.5.0.tgz", - "integrity": "sha512-ZnAtkWrKf48eERgAOiUxVoFavVBziO2pAi2MfZ1+bGXVkDfxWLxU0//oJBkgwbsv6OAmuLBz4XFFqvCFMqnGUw==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-24.9.0.tgz", + "integrity": "sha512-3BEYN5WbSq9wd+SyLDES7AHnjH9A/ROBwmz7l2y+ol+NtSFO8DYiEBzoO1CeFc9a8DYy10EO4dDFVv/wN3zl1w==", "dev": true, "requires": { - "@jest/types": "^24.5.0" + "@jest/types": "^24.9.0" } }, - "jest-pnp-resolver": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.1.tgz", - "integrity": "sha512-pgFw2tm54fzgYvc/OHrnysABEObZCUNFnhjoRjaVOCN8NYc032/gVjPaHD4Aq6ApkSieWtfKAFQtmDKAmhupnQ==", - "dev": true - }, - "jest-regex-util": { - "version": "24.3.0", - "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-24.3.0.tgz", - "integrity": "sha512-tXQR1NEOyGlfylyEjg1ImtScwMq8Oh3iJbGTjN7p0J23EuVX1MA8rwU69K4sLbCmwzgCUbVkm0FkSF9TdzOhtg==", - "dev": true - }, - "jest-resolve": { - "version": "24.5.0", - "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-24.5.0.tgz", - "integrity": "sha512-ZIfGqLX1Rg8xJpQqNjdoO8MuxHV1q/i2OO1hLXjgCWFWs5bsedS8UrOdgjUqqNae6DXA+pCyRmdcB7lQEEbXew==", - "dev": true, - "requires": { - "@jest/types": "^24.5.0", - "browser-resolve": "^1.11.3", - "chalk": "^2.0.1", - "jest-pnp-resolver": "^1.2.1", - "realpath-native": "^1.1.0" - }, - "dependencies": { - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "requires": { - "color-convert": "^1.9.0" - } - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", - "dev": true - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - } + "jest-pnp-resolver": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz", + "integrity": "sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==", + "dev": true, + "requires": {} + }, + "jest-regex-util": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-24.9.0.tgz", + "integrity": "sha512-05Cmb6CuxaA+Ys6fjr3PhvV3bGQmO+2p2La4hFbU+W5uOc479f7FdLXUWXw4pYMAhhSZIuKHwSXSu6CsSBAXQA==", + "dev": true + }, + "jest-resolve": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-24.9.0.tgz", + "integrity": "sha512-TaLeLVL1l08YFZAt3zaPtjiVvyy4oSA6CRe+0AFPPVX3Q/VI0giIWWoAvoS5L96vj9Dqxj4fB5p2qrHCmTU/MQ==", + "dev": true, + "requires": { + "@jest/types": "^24.9.0", + "browser-resolve": "^1.11.3", + "chalk": "^2.0.1", + "jest-pnp-resolver": "^1.2.1", + "realpath-native": "^1.1.0" } }, "jest-resolve-dependencies": { - "version": "24.5.0", - "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-24.5.0.tgz", - "integrity": "sha512-dRVM1D+gWrFfrq2vlL5P9P/i8kB4BOYqYf3S7xczZ+A6PC3SgXYSErX/ScW/469pWMboM1uAhgLF+39nXlirCQ==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-24.9.0.tgz", + "integrity": "sha512-Fm7b6AlWnYhT0BXy4hXpactHIqER7erNgIsIozDXWl5dVm+k8XdGVe1oTg1JyaFnOxarMEbax3wyRJqGP2Pq+g==", "dev": true, "requires": { - "@jest/types": "^24.5.0", + "@jest/types": "^24.9.0", "jest-regex-util": "^24.3.0", - "jest-snapshot": "^24.5.0" + "jest-snapshot": "^24.9.0" } }, "jest-runner": { - "version": "24.5.0", - "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-24.5.0.tgz", - "integrity": "sha512-oqsiS9TkIZV5dVkD+GmbNfWBRPIvxqmlTQ+AQUJUQ07n+4xTSDc40r+aKBynHw9/tLzafC00DIbJjB2cOZdvMA==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-24.9.0.tgz", + "integrity": "sha512-KksJQyI3/0mhcfspnxxEOBueGrd5E4vV7ADQLT9ESaCzz02WnbdbKWIf5Mkaucoaj7obQckYPVX6JJhgUcoWWg==", "dev": true, "requires": { - "@jest/console": "^24.3.0", - "@jest/environment": "^24.5.0", - "@jest/test-result": "^24.5.0", - "@jest/types": "^24.5.0", + "@jest/console": "^24.7.1", + "@jest/environment": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", "chalk": "^2.4.2", "exit": "^0.1.2", "graceful-fs": "^4.1.15", - "jest-config": "^24.5.0", + "jest-config": "^24.9.0", "jest-docblock": "^24.3.0", - "jest-haste-map": "^24.5.0", - "jest-jasmine2": "^24.5.0", - "jest-leak-detector": "^24.5.0", - "jest-message-util": "^24.5.0", - "jest-resolve": "^24.5.0", - "jest-runtime": "^24.5.0", - "jest-util": "^24.5.0", - "jest-worker": "^24.4.0", + "jest-haste-map": "^24.9.0", + "jest-jasmine2": "^24.9.0", + "jest-leak-detector": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-resolve": "^24.9.0", + "jest-runtime": "^24.9.0", + "jest-util": "^24.9.0", + "jest-worker": "^24.6.0", "source-map-support": "^0.5.6", "throat": "^4.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "requires": { - "color-convert": "^1.9.0" - } - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "graceful-fs": { - "version": "4.1.15", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.15.tgz", - "integrity": "sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA==", - "dev": true - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", - "dev": true - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - }, - "source-map-support": { - "version": "0.5.11", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.11.tgz", - "integrity": "sha512-//sajEx/fGL3iw6fltKMdPvy8kL3kJ2O3iuYlRoT3k9Kb4BjOoZ+BZzaNHeuaruSt+Kf3Zk9tnfAQg9/AJqUVQ==", - "dev": true, - "requires": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - } - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - } } }, "jest-runtime": { - "version": "24.5.0", - "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-24.5.0.tgz", - "integrity": "sha512-GTFHzfLdwpaeoDPilNpBrorlPoNZuZrwKKzKJs09vWwHo+9TOsIIuszK8cWOuKC7ss07aN1922Ge8fsGdsqCuw==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-24.9.0.tgz", + "integrity": "sha512-8oNqgnmF3v2J6PVRM2Jfuj8oX3syKmaynlDMMKQ4iyzbQzIG6th5ub/lM2bCMTmoTKM3ykcUYI2Pw9xwNtjMnw==", "dev": true, "requires": { - "@jest/console": "^24.3.0", - "@jest/environment": "^24.5.0", + "@jest/console": "^24.7.1", + "@jest/environment": "^24.9.0", "@jest/source-map": "^24.3.0", - "@jest/transform": "^24.5.0", - "@jest/types": "^24.5.0", - "@types/yargs": "^12.0.2", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/yargs": "^13.0.0", "chalk": "^2.0.1", "exit": "^0.1.2", "glob": "^7.1.3", "graceful-fs": "^4.1.15", - "jest-config": "^24.5.0", - "jest-haste-map": "^24.5.0", - "jest-message-util": "^24.5.0", - "jest-mock": "^24.5.0", + "jest-config": "^24.9.0", + "jest-haste-map": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0", "jest-regex-util": "^24.3.0", - "jest-resolve": "^24.5.0", - "jest-snapshot": "^24.5.0", - "jest-util": "^24.5.0", - "jest-validate": "^24.5.0", + "jest-resolve": "^24.9.0", + "jest-snapshot": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", "realpath-native": "^1.1.0", "slash": "^2.0.0", "strip-bom": "^3.0.0", - "yargs": "^12.0.2" - }, - "dependencies": { - "ansi-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", - "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", - "dev": true - }, - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "requires": { - "color-convert": "^1.9.0" - } - }, - "camelcase": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.2.0.tgz", - "integrity": "sha512-IXFsBS2pC+X0j0N/GE7Dm7j3bsEBp+oTpb7F50dwEVX7rf3IgwO9XatnegTsDtniKCUtEJH4fSU6Asw7uoVLfQ==", - "dev": true - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "cliui": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-4.1.0.tgz", - "integrity": "sha512-4FG+RSG9DL7uEwRUZXZn3SS34DiDPfzP0VOiEwtUWlE+AR2EIg+hSyvrIgUUfhdgR/UkAeW2QHgeP+hWrXs7jQ==", - "dev": true, - "requires": { - "string-width": "^2.1.1", - "strip-ansi": "^4.0.0", - "wrap-ansi": "^2.0.0" - } - }, - "find-up": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", - "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", - "dev": true, - "requires": { - "locate-path": "^3.0.0" - } - }, - "glob": { - "version": "7.1.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.3.tgz", - "integrity": "sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "graceful-fs": { - "version": "4.1.15", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.15.tgz", - "integrity": "sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA==", - "dev": true - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", - "dev": true - }, - "invert-kv": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-2.0.0.tgz", - "integrity": "sha512-wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA==", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", - "dev": true - }, - "lcid": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/lcid/-/lcid-2.0.0.tgz", - "integrity": "sha512-avPEb8P8EGnwXKClwsNUgryVjllcRqtMYa49NTsbQagYuT1DcXnl1915oxWjoyGrXR6zH/Y0Zc96xWsPcoDKeA==", - "dev": true, - "requires": { - "invert-kv": "^2.0.0" - } - }, - "os-locale": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-3.1.0.tgz", - "integrity": "sha512-Z8l3R4wYWM40/52Z+S265okfFj8Kt2cC2MKY+xNi3kFs+XGI7WXu/I309QQQYbRW4ijiZ+yxs9pqEhJh0DqW3Q==", - "dev": true, - "requires": { - "execa": "^1.0.0", - "lcid": "^2.0.0", - "mem": "^4.0.0" - } - }, - "slash": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", - "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", - "dev": true - }, - "string-width": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", - "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", - "dev": true, - "requires": { - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^4.0.0" - } - }, - "strip-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", - "dev": true, - "requires": { - "ansi-regex": "^3.0.0" - } - }, - "strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=", - "dev": true - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - }, - "which-module": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", - "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=", - "dev": true - }, - "yargs": { - "version": "12.0.5", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-12.0.5.tgz", - "integrity": "sha512-Lhz8TLaYnxq/2ObqHDql8dX8CJi97oHxrjUcYtzKbbykPtVW9WB+poxI+NM2UIzsMgNCZTIf0AQwsjK5yMAqZw==", - "dev": true, - "requires": { - "cliui": "^4.0.0", - "decamelize": "^1.2.0", - "find-up": "^3.0.0", - "get-caller-file": "^1.0.1", - "os-locale": "^3.0.0", - "require-directory": "^2.1.1", - "require-main-filename": "^1.0.1", - "set-blocking": "^2.0.0", - "string-width": "^2.0.0", - "which-module": "^2.0.0", - "y18n": "^3.2.1 || ^4.0.0", - "yargs-parser": "^11.1.1" - } - }, - "yargs-parser": { - "version": "11.1.1", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-11.1.1.tgz", - "integrity": "sha512-C6kB/WJDiaxONLJQnF8ccx9SEeoTTLek8RVbaOIsrAUS8VrBEXfmeSnCZxygc+XC2sNMBIwOOnfcxiynjHsVSQ==", - "dev": true, - "requires": { - "camelcase": "^5.0.0", - "decamelize": "^1.2.0" - } - } + "yargs": "^13.3.0" } }, "jest-serializer": { - "version": "24.4.0", - "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-24.4.0.tgz", - "integrity": "sha512-k//0DtglVstc1fv+GY/VHDIjrtNjdYvYjMlbLUed4kxrE92sIUewOi5Hj3vrpB8CXfkJntRPDRjCrCvUhBdL8Q==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-24.9.0.tgz", + "integrity": "sha512-DxYipDr8OvfrKH3Kel6NdED3OXxjvxXZ1uIY2I9OFbGg+vUkkg7AGvi65qbhbWNPvDckXmzMPbK3u3HaDO49bQ==", "dev": true }, "jest-snapshot": { - "version": "24.5.0", - "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-24.5.0.tgz", - "integrity": "sha512-eBEeJb5ROk0NcpodmSKnCVgMOo+Qsu5z9EDl3tGffwPzK1yV37mjGWF2YeIz1NkntgTzP+fUL4s09a0+0dpVWA==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-24.9.0.tgz", + "integrity": "sha512-uI/rszGSs73xCM0l+up7O7a40o90cnrk429LOiK3aeTvfC0HHmldbd81/B7Ix81KSFe1lwkbl7GnBGG4UfuDew==", "dev": true, "requires": { "@babel/types": "^7.0.0", - "@jest/types": "^24.5.0", + "@jest/types": "^24.9.0", "chalk": "^2.0.1", - "expect": "^24.5.0", - "jest-diff": "^24.5.0", - "jest-matcher-utils": "^24.5.0", - "jest-message-util": "^24.5.0", - "jest-resolve": "^24.5.0", + "expect": "^24.9.0", + "jest-diff": "^24.9.0", + "jest-get-type": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-resolve": "^24.9.0", "mkdirp": "^0.5.1", "natural-compare": "^1.4.0", - "pretty-format": "^24.5.0", - "semver": "^5.5.0" - }, - "dependencies": { - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "requires": { - "color-convert": "^1.9.0" - } - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", - "dev": true - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - } + "pretty-format": "^24.9.0", + "semver": "^6.2.0" } }, "jest-util": { - "version": "24.5.0", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-24.5.0.tgz", - "integrity": "sha512-Xy8JsD0jvBz85K7VsTIQDuY44s+hYJyppAhcsHsOsGisVtdhar6fajf2UOf2mEVEgh15ZSdA0zkCuheN8cbr1Q==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-24.9.0.tgz", + "integrity": "sha512-x+cZU8VRmOJxbA1K5oDBdxQmdq0OIdADarLxk0Mq+3XS4jgvhG/oKGWcIDCtPG0HgjxOYvF+ilPJQsAyXfbNOg==", "dev": true, "requires": { - "@jest/console": "^24.3.0", - "@jest/fake-timers": "^24.5.0", - "@jest/source-map": "^24.3.0", - "@jest/test-result": "^24.5.0", - "@jest/types": "^24.5.0", - "@types/node": "*", + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", "callsites": "^3.0.0", "chalk": "^2.0.1", "graceful-fs": "^4.1.15", @@ -6925,190 +18531,47 @@ "mkdirp": "^0.5.1", "slash": "^2.0.0", "source-map": "^0.6.0" - }, - "dependencies": { - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "requires": { - "color-convert": "^1.9.0" - } - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "graceful-fs": { - "version": "4.1.15", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.15.tgz", - "integrity": "sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA==", - "dev": true - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", - "dev": true - }, - "slash": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", - "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", - "dev": true - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - } } }, "jest-validate": { - "version": "24.5.0", - "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-24.5.0.tgz", - "integrity": "sha512-gg0dYszxjgK2o11unSIJhkOFZqNRQbWOAB2/LOUdsd2LfD9oXiMeuee8XsT0iRy5EvSccBgB4h/9HRbIo3MHgQ==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-24.9.0.tgz", + "integrity": "sha512-HPIt6C5ACwiqSiwi+OfSSHbK8sG7akG8eATl+IPKaeIjtPOeBUd/g3J7DghugzxrGjI93qS/+RPKe1H6PqvhRQ==", "dev": true, "requires": { - "@jest/types": "^24.5.0", - "camelcase": "^5.0.0", + "@jest/types": "^24.9.0", + "camelcase": "^5.3.1", "chalk": "^2.0.1", - "jest-get-type": "^24.3.0", - "leven": "^2.1.0", - "pretty-format": "^24.5.0" - }, - "dependencies": { - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "requires": { - "color-convert": "^1.9.0" - } - }, - "camelcase": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.2.0.tgz", - "integrity": "sha512-IXFsBS2pC+X0j0N/GE7Dm7j3bsEBp+oTpb7F50dwEVX7rf3IgwO9XatnegTsDtniKCUtEJH4fSU6Asw7uoVLfQ==", - "dev": true - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", - "dev": true - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - } + "jest-get-type": "^24.9.0", + "leven": "^3.1.0", + "pretty-format": "^24.9.0" } }, "jest-watcher": { - "version": "24.5.0", - "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-24.5.0.tgz", - "integrity": "sha512-/hCpgR6bg0nKvD3nv4KasdTxuhwfViVMHUATJlnGCD0r1QrmIssimPbmc5KfAQblAVxkD8xrzuij9vfPUk1/rA==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-24.9.0.tgz", + "integrity": "sha512-+/fLOfKPXXYJDYlks62/4R4GoT+GU1tYZed99JSCOsmzkkF7727RqKrjNAxtfO4YpGv11wybgRvCjR73lK2GZw==", "dev": true, "requires": { - "@jest/test-result": "^24.5.0", - "@jest/types": "^24.5.0", - "@types/node": "*", - "@types/yargs": "^12.0.9", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/yargs": "^13.0.0", "ansi-escapes": "^3.0.0", "chalk": "^2.0.1", - "jest-util": "^24.5.0", + "jest-util": "^24.9.0", "string-length": "^2.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "requires": { - "color-convert": "^1.9.0" - } - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", - "dev": true - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - } } }, "jest-worker": { - "version": "24.4.0", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-24.4.0.tgz", - "integrity": "sha512-BH9X/klG9vxwoO99ZBUbZFfV8qO0XNZ5SIiCyYK2zOuJBl6YJVAeNIQjcoOVNu4HGEHeYEKsUWws8kSlSbZ9YQ==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-24.9.0.tgz", + "integrity": "sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw==", "dev": true, "requires": { - "@types/node": "*", - "merge-stream": "^1.0.1", + "merge-stream": "^2.0.0", "supports-color": "^6.1.0" }, "dependencies": { - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", - "dev": true - }, "supports-color": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", @@ -7120,31 +18583,15 @@ } } }, - "js-levenshtein": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/js-levenshtein/-/js-levenshtein-1.1.6.tgz", - "integrity": "sha512-X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g==", - "dev": true - }, "js-tokens": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz", - "integrity": "sha1-mGbfOVECEw449/mWvOtlRDIJwls=" - }, - "js-yaml": { - "version": "3.13.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.0.tgz", - "integrity": "sha512-pZZoSxcCYco+DIKBTimr67J6Hy+EYGZDY/HCWC+iAEA9h1ByhMXAIVUXMcMFpOCxQ/xjXmPI2MkDL5HRm5eFrQ==", - "dev": true, - "requires": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" - } + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" }, "jsbn": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", - "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=", + "integrity": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==", "dev": true }, "jsdom": { @@ -7181,6 +18628,12 @@ "xml-name-validator": "^3.0.0" } }, + "jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "dev": true + }, "json-parse-better-errors": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", @@ -7188,9 +18641,9 @@ "dev": true }, "json-schema": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", - "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=", + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", + "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==", "dev": true }, "json-schema-traverse": { @@ -7202,37 +18655,31 @@ "json-stringify-safe": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", - "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=", - "dev": true - }, - "json3": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/json3/-/json3-3.3.2.tgz", - "integrity": "sha1-PAQ0dD35Pi9cQq7nsZvLSDV19OE=", + "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==", "dev": true }, "json5": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz", - "integrity": "sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE=", + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz", + "integrity": "sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==", "dev": true }, "jsprim": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", - "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz", + "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==", "dev": true, "requires": { "assert-plus": "1.0.0", "extsprintf": "1.3.0", - "json-schema": "0.2.3", + "json-schema": "0.4.0", "verror": "1.10.0" } }, "jszip": { "version": "2.5.0", "resolved": "https://registry.npmjs.org/jszip/-/jszip-2.5.0.tgz", - "integrity": "sha1-dET9hVHd8+XacZj+oMkbyDCMwnQ=", + "integrity": "sha512-IRoyf8JSYY3nx+uyh5xPc0qdy8pUDTp2UkHOWYNF/IO/3D8nx7899UlSAjD8rf8wUgOmm0lACWx/GbW3EaxIXQ==", "dev": true, "requires": { "pako": "~0.2.5" @@ -7245,29 +18692,17 @@ "dev": true }, "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true }, "kleur": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.2.tgz", - "integrity": "sha512-3h7B2WRT5LNXOtQiAaWonilegHcPSf9nLVXlSTci8lu1dZUuui61+EsPEZqSVxY7rXYmB2DVKMQILxaO5WL61Q==", + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", "dev": true }, - "lcid": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/lcid/-/lcid-2.0.0.tgz", - "integrity": "sha512-avPEb8P8EGnwXKClwsNUgryVjllcRqtMYa49NTsbQagYuT1DcXnl1915oxWjoyGrXR6zH/Y0Zc96xWsPcoDKeA==", - "dev": true, - "requires": { - "invert-kv": "^2.0.0" - } - }, "left-pad": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/left-pad/-/left-pad-1.3.0.tgz", @@ -7275,19 +18710,39 @@ "dev": true }, "leven": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/leven/-/leven-2.1.0.tgz", - "integrity": "sha1-wuep93IJTe6dNCAq6KzORoeHVYA=", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", "dev": true }, "levn": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", - "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", + "integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==", + "dev": true, + "requires": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + } + }, + "load-json-file": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", + "integrity": "sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==", "dev": true, "requires": { - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2" + "graceful-fs": "^4.1.2", + "parse-json": "^4.0.0", + "pify": "^3.0.0", + "strip-bom": "^3.0.0" + }, + "dependencies": { + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "dev": true + } } }, "loader-runner": { @@ -7296,6 +18751,28 @@ "integrity": "sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==", "dev": true }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "dependencies": { + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "dev": true, + "requires": { + "minimist": "^1.2.0" + } + } + } + }, "locate-path": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", @@ -7304,123 +18781,124 @@ "requires": { "p-locate": "^3.0.0", "path-exists": "^3.0.0" - }, - "dependencies": { - "path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", - "dev": true - } } }, "lodash": { - "version": "4.17.11", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.11.tgz", - "integrity": "sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg==", + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", "dev": true }, "lodash.assignin": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/lodash.assignin/-/lodash.assignin-4.2.0.tgz", - "integrity": "sha1-uo31+4QesKPoBEIysOJjqNxqKKI=", + "integrity": "sha512-yX/rx6d/UTVh7sSVWVSIMjfnz95evAgDFdb1ZozC35I9mSFCkmzptOzevxjgbQUsc78NR44LVHWjsoMQXy9FDg==", "dev": true }, "lodash.bind": { "version": "4.2.1", "resolved": "https://registry.npmjs.org/lodash.bind/-/lodash.bind-4.2.1.tgz", - "integrity": "sha1-euMBfpOWIqwxt9fX3LGzTbFpDTU=", + "integrity": "sha512-lxdsn7xxlCymgLYo1gGvVrfHmkjDiyqVv62FAeF2i5ta72BipE1SLxw8hPEPLhD4/247Ijw07UQH7Hq/chT5LA==", + "dev": true + }, + "lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", "dev": true }, "lodash.defaults": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-4.2.0.tgz", - "integrity": "sha1-0JF4cW/+pN3p5ft7N/bwgCJ0WAw=", + "integrity": "sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ==", "dev": true }, "lodash.filter": { "version": "4.6.0", "resolved": "https://registry.npmjs.org/lodash.filter/-/lodash.filter-4.6.0.tgz", - "integrity": "sha1-ZosdSYFgOuHMWm+nYBQ+SAtMSs4=", + "integrity": "sha512-pXYUy7PR8BCLwX5mgJ/aNtyOvuJTdZAo9EQFUvMIYugqmJxnrYaANvTbgndOzHSCSR0wnlBBfRXJL5SbWxo3FQ==", "dev": true }, "lodash.flatten": { "version": "4.4.0", "resolved": "https://registry.npmjs.org/lodash.flatten/-/lodash.flatten-4.4.0.tgz", - "integrity": "sha1-8xwiIlqWMtK7+OSt2+8kCqdlph8=", + "integrity": "sha512-C5N2Z3DgnnKr0LOpv/hKCgKdb7ZZwafIrsesve6lmzvZIRZRGaZ/l6Q8+2W7NaT+ZwO3fFlSCzCzrDCFdJfZ4g==", "dev": true }, "lodash.foreach": { "version": "4.5.0", "resolved": "https://registry.npmjs.org/lodash.foreach/-/lodash.foreach-4.5.0.tgz", - "integrity": "sha1-Gmo16s5AEoDH8G3d7DUWWrJ+PlM=", + "integrity": "sha512-aEXTF4d+m05rVOAUG3z4vZZ4xVexLKZGF0lIxuHZ1Hplpk/3B6Z1+/ICICYRLm7c41Z2xiejbkCkJoTlypoXhQ==", "dev": true }, "lodash.map": { "version": "4.6.0", "resolved": "https://registry.npmjs.org/lodash.map/-/lodash.map-4.6.0.tgz", - "integrity": "sha1-dx7Hg540c9nEzeKLGTlMNWL09tM=", + "integrity": "sha512-worNHGKLDetmcEYDvh2stPCrrQRkP20E4l0iIS7F8EvzMqBBi7ltvFN5m1HvTf1P7Jk1txKhvFcmYsCr8O2F1Q==", "dev": true }, "lodash.merge": { - "version": "4.6.1", - "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.1.tgz", - "integrity": "sha512-AOYza4+Hf5z1/0Hztxpm2/xiPZgi/cjMqdnKTUWTBSKchJlxXXuUSxCCl8rJlf4g6yww/j6mA8nC8Hw/EZWxKQ==", + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", "dev": true }, "lodash.pick": { "version": "4.4.0", "resolved": "https://registry.npmjs.org/lodash.pick/-/lodash.pick-4.4.0.tgz", - "integrity": "sha1-UvBWEP/53tQiYRRB7R/BI6AwAbM=", + "integrity": "sha512-hXt6Ul/5yWjfklSGvLQl8vM//l3FtyHZeuelpzK6mm99pNvN9yTDruNZPEJZD1oWrqo+izBmB7oUfWgcCX7s4Q==", "dev": true }, "lodash.reduce": { "version": "4.6.0", "resolved": "https://registry.npmjs.org/lodash.reduce/-/lodash.reduce-4.6.0.tgz", - "integrity": "sha1-8atrg5KZrUj3hKu/R2WW8DuRTTs=", + "integrity": "sha512-6raRe2vxCYBhpBu+B+TtNGUzah+hQjVdu3E17wfusjyrXBka2nBS8OH/gjVZ5PvHOhWmIZTYri09Z6n/QfnNMw==", "dev": true }, "lodash.reject": { "version": "4.6.0", "resolved": "https://registry.npmjs.org/lodash.reject/-/lodash.reject-4.6.0.tgz", - "integrity": "sha1-gNZJLcFHCGS79YNTO2UfQqn1JBU=", + "integrity": "sha512-qkTuvgEzYdyhiJBx42YPzPo71R1aEr0z79kAv7Ixg8wPFEjgRgJdUsGMG3Hf3OYSF/kHI79XhNlt+5Ar6OzwxQ==", "dev": true }, "lodash.some": { "version": "4.6.0", "resolved": "https://registry.npmjs.org/lodash.some/-/lodash.some-4.6.0.tgz", - "integrity": "sha1-G7nzFO9ri63tE7VJFpsqlF62jk0=", + "integrity": "sha512-j7MJE+TuT51q9ggt4fSgVqro163BEFjAt3u97IqU+JA2DkWl80nFTrowzLpZ/BnpN7rrl0JA/593NAdd8p/scQ==", "dev": true }, "lodash.sortby": { "version": "4.7.0", "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", - "integrity": "sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=", + "integrity": "sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==", "dev": true }, "loglevel": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.6.1.tgz", - "integrity": "sha1-4PyVEztu8nbNyIh82vJKpvFW+Po=", + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.8.0.tgz", + "integrity": "sha512-G6A/nJLRgWOuuwdNuA6koovfEV1YpqqAG4pRUlFaz3jj2QNZ8M4vBqnVA+HBTmU/AMNUtlOsMmSpF6NyOjztbA==", "dev": true }, "loose-envify": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.3.1.tgz", - "integrity": "sha1-0aitM/qc4OcT1l/dCsi3SNR4yEg=", + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", "requires": { - "js-tokens": "^3.0.0" + "js-tokens": "^3.0.0 || ^4.0.0" } }, "lower-case": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-1.1.4.tgz", - "integrity": "sha1-miyr0bno4K6ZOkv31YdcOcQujqw=" + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "requires": { + "tslib": "^2.0.3" + } }, "lru-cache": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.2.tgz", - "integrity": "sha512-wgeVXhrDwAWnIF/yZARsFnMBtdFXOg1b8RIrhilp+0iDYN4mdQcNZElDZ0e4B64BhaxeQ5zN7PMyvu7we1kPeQ==", + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", + "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", "dev": true, "requires": { "pseudomap": "^1.0.2", @@ -7428,56 +18906,42 @@ } }, "make-dir": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz", - "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", "dev": true, "requires": { - "pify": "^3.0.0" + "pify": "^4.0.1", + "semver": "^5.6.0" }, "dependencies": { - "pify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", "dev": true } } }, "makeerror": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.11.tgz", - "integrity": "sha1-4BpckQnyr3lmDk6LlYd5AYT1qWw=", - "dev": true, - "requires": { - "tmpl": "1.0.x" - } - }, - "mamacro": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/mamacro/-/mamacro-0.0.3.tgz", - "integrity": "sha512-qMEwh+UujcQ+kbz3T6V+wAmO2U8veoq2w+3wY8MquqwVA3jChfwY+Tk52GZKDfACEPjuZ7r2oJLejwpt8jtwTA==", - "dev": true - }, - "map-age-cleaner": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz", - "integrity": "sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==", + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", + "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", "dev": true, "requires": { - "p-defer": "^1.0.0" + "tmpl": "1.0.5" } }, "map-cache": { "version": "0.2.2", "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", - "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=", + "integrity": "sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==", "dev": true }, "map-visit": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", - "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=", + "integrity": "sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==", "dev": true, "requires": { "object-visit": "^1.0.0" @@ -7492,62 +18956,66 @@ "hash-base": "^3.0.0", "inherits": "^2.0.1", "safe-buffer": "^5.1.2" - }, - "dependencies": { - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - } } }, "media-typer": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", - "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", "dev": true }, - "mem": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/mem/-/mem-4.2.0.tgz", - "integrity": "sha512-5fJxa68urlY0Ir8ijatKa3eRz5lwXnRCTvo9+TbTGAuTFJOwpGcY0X05moBd0nW45965Njt4CDI2GFQoG8DvqA==", - "dev": true, - "requires": { - "map-age-cleaner": "^0.1.1", - "mimic-fn": "^2.0.0", - "p-is-promise": "^2.0.0" - } - }, "memory-fs": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz", - "integrity": "sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=", + "integrity": "sha512-cda4JKCxReDXFXRqOHPQscuIYg1PvxbE2S2GP45rnwfEK+vZaXC8C1OFvdHIbgw0DLzowXGVoxLaAmlgRy14GQ==", "dev": true, "requires": { "errno": "^0.1.3", "readable-stream": "^2.0.1" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + } + } } }, "merge-descriptors": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", - "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=", + "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==", "dev": true }, "merge-stream": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-1.0.1.tgz", - "integrity": "sha1-QEEgLVCKNCugAXQAjfDCUbjBNeE=", - "dev": true, - "requires": { - "readable-stream": "^2.0.1" - } + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true }, "methods": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", - "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=", + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", "dev": true }, "micromatch": { @@ -7571,11 +19039,73 @@ "to-regex": "^3.0.2" }, "dependencies": { - "kind-of": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==", + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", "dev": true + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", + "dev": true, + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } } } }, @@ -7587,35 +19117,37 @@ "requires": { "bn.js": "^4.0.0", "brorand": "^1.0.1" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "dev": true + } } }, "mime": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.4.1.tgz", - "integrity": "sha512-KI1+qOZu5DcW6wayYHSzR/tXKCDC5Om4s1z2QJjDULzLcmf3DvzS7oluY4HCTrc+9FiKmWUgeNLg7W3uIQvxtQ==", + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", "dev": true }, "mime-db": { - "version": "1.38.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.38.0.tgz", - "integrity": "sha512-bqVioMFFzc2awcdJZIzR3HjZFX20QhilVS7hytkKrv7xFAn8bM1gzc/FOX2awLISvWe0PV8ptFKcon+wZ5qYkg==", + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", "dev": true }, "mime-types": { - "version": "2.1.22", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.22.tgz", - "integrity": "sha512-aGl6TZGnhm/li6F7yx82bJiBZwgiEa4Hf6CNr8YO+r5UHr53tSTYZb102zyU50DOWWKeOv0uQLRL0/9EiKWCog==", + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", "dev": true, "requires": { - "mime-db": "~1.38.0" + "mime-db": "1.52.0" } }, - "mimic-fn": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.0.0.tgz", - "integrity": "sha512-jbex9Yd/3lmICXwYT6gA/j2mNQGU48wCh/VzRd+/Y/PjYQtlg1gLMdZqvu9s/xH7qKvngxRObl56XZR609IMbA==", - "dev": true - }, "minimalistic-assert": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", @@ -7625,22 +19157,22 @@ "minimalistic-crypto-utils": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", - "integrity": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=", + "integrity": "sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==", "dev": true }, "minimatch": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", - "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, "requires": { "brace-expansion": "^1.1.7" } }, "minimist": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", - "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=", + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz", + "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==", "dev": true }, "mississippi": { @@ -7662,39 +19194,28 @@ } }, "mixin-deep": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.1.tgz", - "integrity": "sha512-8ZItLHeEgaqEvd5lYBXfm4EZSFCX29Jb9K+lAHhDKzReKBQKj3R+7NOF6tjqYi9t4oI8VUfaWITJQm86wnXGNQ==", + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", + "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", "dev": true, "requires": { "for-in": "^1.0.2", "is-extendable": "^1.0.1" - }, - "dependencies": { - "is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "dev": true, - "requires": { - "is-plain-object": "^2.0.4" - } - } } }, "mkdirp": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", - "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", "dev": true, "requires": { - "minimist": "0.0.8" + "minimist": "^1.2.6" } }, "move-concurrently": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz", - "integrity": "sha1-viwAX9oy4LKa8fBdfEszIUxwH5I=", + "integrity": "sha512-hdrFxZOycD/g6A6SoI2bB5NA/5NEqD0569+S47WZhPvm46sD50ZHdYaFmnua5lndde9rCHGjmfK7Z8BuCt/PcQ==", "dev": true, "requires": { "aproba": "^1.1.1", @@ -7706,9 +19227,9 @@ } }, "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", "dev": true }, "multicast-dns": { @@ -7724,20 +19245,20 @@ "multicast-dns-service-types": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz", - "integrity": "sha1-iZ8R2WhuXgXLkbNdXw5jt3PPyQE=", + "integrity": "sha512-cnAsSVxIDsYt0v7HmC0hWZFwwXSh+E6PgCrREDuN/EsjgLwA5XRmlMHhSiDPrt6HxY1gTivEa/Zh7GtODoLevQ==", "dev": true }, "nan": { - "version": "2.10.0", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.10.0.tgz", - "integrity": "sha512-bAdJv7fBLhWC+/Bls0Oza+mvTaNQtP+1RyhhhvD95pgUJz6XM5IzgmxOkItJ9tkoCiplvAnXI1tNmmUD/eScyA==", + "version": "2.16.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.16.0.tgz", + "integrity": "sha512-UdAqHyFngu7TfQKsCBgAA6pWDkT8MAO7d0jyOecVhN5354xbLqdn8mV9Tat9gepAupm0bt2DbeaSC8vS52MuFA==", "dev": true, "optional": true }, "nanomatch": { - "version": "1.2.9", - "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.9.tgz", - "integrity": "sha512-n8R9bS8yQ6eSXaV6jHUpKzD8gLsin02w1HSFiegwrs9E098Ylhw5jdyKPaYqvHknHaSCKTPp7C8dGCQ0q9koXA==", + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", + "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", "dev": true, "requires": { "arr-diff": "^4.0.0", @@ -7745,39 +19266,30 @@ "define-property": "^2.0.2", "extend-shallow": "^3.0.2", "fragment-cache": "^0.2.1", - "is-odd": "^2.0.0", "is-windows": "^1.0.2", "kind-of": "^6.0.2", "object.pick": "^1.3.0", "regex-not": "^1.0.0", "snapdragon": "^0.8.1", "to-regex": "^3.0.1" - }, - "dependencies": { - "kind-of": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==", - "dev": true - } } }, "natural-compare": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", "dev": true }, "negotiator": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.1.tgz", - "integrity": "sha1-KzJxhOiZIQEXeyhWP7XnECrNDKk=", + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", "dev": true }, "neo-async": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.0.tgz", - "integrity": "sha512-MFh0d/Wa7vkKO3Y3LlacqAEeHK0mckVqzDieUKTT+KGxi+zIpeVsFxymkIiRpbpDziHc290Xr9A1O4Om7otoRA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", "dev": true }, "nice-try": { @@ -7787,38 +19299,30 @@ "dev": true }, "no-case": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/no-case/-/no-case-2.3.2.tgz", - "integrity": "sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==", - "requires": { - "lower-case": "^1.1.1" - } - }, - "node-fetch": { - "version": "1.7.3", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-1.7.3.tgz", - "integrity": "sha512-NhZ4CsKx7cYm2vSrBAr2PvFOe6sWDf0UYLRqA6svUYg7+/TSfVAu49jYC4BvQ4Sms9SZgdqGBgroqfDhJdTyKQ==", + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", "requires": { - "encoding": "^0.1.11", - "is-stream": "^1.0.1" + "lower-case": "^2.0.2", + "tslib": "^2.0.3" } }, "node-forge": { - "version": "0.7.5", - "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.7.5.tgz", - "integrity": "sha512-MmbQJ2MTESTjt3Gi/3yG1wGpIMhUfcIypUCGtTizFR9IiccFwxSpfp0vtIZlkFclEqERemxfnSdZEMR9VqqEFQ==", + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.10.0.tgz", + "integrity": "sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==", "dev": true }, "node-int64": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", - "integrity": "sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=", + "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", "dev": true }, "node-libs-browser": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.0.tgz", - "integrity": "sha512-5MQunG/oyOaBdttrL40dA7bUfPORLRWMUJLQtMg7nluxUvk5XwnLdL9twQHFAjRx/y7mIMkLKT9++qPbbk6BZA==", + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.1.tgz", + "integrity": "sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==", "dev": true, "requires": { "assert": "^1.1.1", @@ -7831,7 +19335,7 @@ "events": "^3.0.0", "https-browserify": "^1.0.0", "os-browserify": "^0.3.0", - "path-browserify": "0.0.0", + "path-browserify": "0.0.1", "process": "^0.11.10", "punycode": "^1.2.4", "querystring-es3": "^0.2.0", @@ -7843,19 +19347,45 @@ "tty-browserify": "0.0.0", "url": "^0.11.0", "util": "^0.11.0", - "vm-browserify": "0.0.4" + "vm-browserify": "^1.0.1" + }, + "dependencies": { + "punycode": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", + "integrity": "sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==", + "dev": true + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + } + } } }, - "node-modules-regexp": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz", - "integrity": "sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA=", - "dev": true - }, "node-notifier": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/node-notifier/-/node-notifier-5.4.0.tgz", - "integrity": "sha512-SUDEb+o71XR5lXSTyivXd9J7fCloE3SyP4lSgt3lU2oSANiox+SxlNRGPjDKrwU1YN3ix2KN/VGGCg0t01rttQ==", + "version": "5.4.5", + "resolved": "https://registry.npmjs.org/node-notifier/-/node-notifier-5.4.5.tgz", + "integrity": "sha512-tVbHs7DyTLtzOiN78izLA85zRqB9NvEXkAf014Vx3jtSvn/xBl6bR8ZYifj+dFcFrKI21huSQgJZ6ZtL3B4HfQ==", "dev": true, "requires": { "growly": "^1.3.0", @@ -7863,210 +19393,219 @@ "semver": "^5.5.0", "shellwords": "^0.1.1", "which": "^1.3.0" + }, + "dependencies": { + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + } } }, "node-releases": { - "version": "1.1.12", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.12.tgz", - "integrity": "sha512-Y+AQ1xdjcgaEzpL65PBEF3fnl1FNKnDh9Zm+AUQLIlyyqtSc4u93jyMN4zrjMzdwKQ10RTr3tgY1x7qpsfF/xg==", - "dev": true, - "requires": { - "semver": "^5.3.0" - } + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.6.tgz", + "integrity": "sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==", + "dev": true }, "node-zip": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/node-zip/-/node-zip-1.1.1.tgz", - "integrity": "sha1-lNGtZ0o81GoViN1zb0qaeMdX62I=", + "integrity": "sha512-sXfGL65EcaAJqNSXxuyf//i4D4geUtJgZDYUd7IBo2/CH8XY8vcWh1+CBCxuVVyR+S4vAFc3hr//JkCi2+V5vg==", "dev": true, "requires": { "jszip": "2.5.0" } }, "normalize-package-data": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.4.0.tgz", - "integrity": "sha512-9jjUFbTPfEy3R/ad/2oNbKtW9Hgovl5O1FvFWKkKblNXoN/Oou6+9+KKohPK13Yc3/TyunyWhJp6gvRNR/PPAw==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", "dev": true, "requires": { "hosted-git-info": "^2.1.4", - "is-builtin-module": "^1.0.0", + "resolve": "^1.10.0", "semver": "2 || 3 || 4 || 5", "validate-npm-package-license": "^3.0.1" + }, + "dependencies": { + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + } } }, "normalize-path": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", - "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", - "dev": true, - "requires": { - "remove-trailing-separator": "^1.0.1" - } + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true }, "npm-run-path": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", - "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", + "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", "dev": true, "requires": { "path-key": "^2.0.0" } }, "nth-check": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.1.tgz", - "integrity": "sha1-mSms32KPwsQQmN6rgqxYDPFJquQ=", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz", + "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==", "dev": true, "requires": { "boolbase": "~1.0.0" } }, - "number-is-nan": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", - "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=", + "nwsapi": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.2.tgz", + "integrity": "sha512-90yv+6538zuvUMnN+zCr8LuV6bPFdq50304114vJYJ8RDyK8D5O9Phpbd6SZWgI7PwzmmfN1upeOJlvybDSgCw==", "dev": true }, - "nwsapi": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.1.2.tgz", - "integrity": "sha512-TQOQNxqEdxVjwgwNZyvKDF0vALmzQKZJEZwE3fZWDb7Ns5Hw6l9PxJTGKOHZGsmf7R6grsOe8lWxI43Clz79zg==", + "oauth-sign": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", + "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", + "dev": true + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==" + }, + "object-copy": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", + "integrity": "sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==", "dev": true, "requires": { - "jsdom": "^14.0.0" + "copy-descriptor": "^0.1.0", + "define-property": "^0.2.5", + "kind-of": "^3.0.3" }, "dependencies": { - "acorn": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.1.1.tgz", - "integrity": "sha512-jPTiwtOxaHNaAPg/dmrJ/beuzLRnXtB0kQPQ8JpotKJgTB6rX6c8mlf315941pyjBSaPg8NHXS9fhP4u17DpGA==", - "dev": true + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } }, - "jsdom": { - "version": "14.0.0", - "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-14.0.0.tgz", - "integrity": "sha512-/VkyPmdtbwqpJSkwDx3YyJ3U1oawYNB/h5z8vTUZGAzjtu2OHTeFRfnJqyMHsJ5Cyes23trOmvUpM1GfHH1leA==", + "is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", "dev": true, "requires": { - "abab": "^2.0.0", - "acorn": "^6.0.4", - "acorn-globals": "^4.3.0", - "array-equal": "^1.0.0", - "cssom": "^0.3.4", - "cssstyle": "^1.1.1", - "data-urls": "^1.1.0", - "domexception": "^1.0.1", - "escodegen": "^1.11.0", - "html-encoding-sniffer": "^1.0.2", - "nwsapi": "^2.0.9", - "parse5": "5.1.0", - "pn": "^1.1.0", - "request": "^2.88.0", - "request-promise-native": "^1.0.5", - "saxes": "^3.1.5", - "symbol-tree": "^3.2.2", - "tough-cookie": "^2.5.0", - "w3c-hr-time": "^1.0.1", - "w3c-xmlserializer": "^1.0.1", - "webidl-conversions": "^4.0.2", - "whatwg-encoding": "^1.0.5", - "whatwg-mimetype": "^2.3.0", - "whatwg-url": "^7.0.0", - "ws": "^6.1.2", - "xml-name-validator": "^3.0.0" + "kind-of": "^3.0.2" } }, - "parse5": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-5.1.0.tgz", - "integrity": "sha512-fxNG2sQjHvlVAYmzBZS9YlDp6PTSSDwa98vkD4QgVDDCAo84z5X1t5XyJQ62ImdLXx5NdIIfihey6xpum9/gRQ==", - "dev": true + "is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + } }, - "whatwg-url": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.0.0.tgz", - "integrity": "sha512-37GeVSIJ3kn1JgKyjiYNmSLP1yzbpb29jdmwBSgkD9h40/hyrR/OifpVUndji3tmwGgD8qpw7iQu3RSbCrBpsQ==", + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", "dev": true, "requires": { - "lodash.sortby": "^4.7.0", - "tr46": "^1.0.1", - "webidl-conversions": "^4.0.2" + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "dependencies": { + "kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true + } } }, - "ws": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.1.tgz", - "integrity": "sha512-GIyAXC2cB7LjvpgMt9EKS2ldqr0MTrORaleiOno6TweZ6r3TKtoFQWay/2PceJ3RuBasOHzXNn5Lrw1X0bEjqA==", + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", "dev": true, "requires": { - "async-limiter": "~1.0.0" + "is-buffer": "^1.1.5" } } } }, - "oauth-sign": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", - "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", + "object-inspect": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz", + "integrity": "sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==", "dev": true }, - "object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" - }, - "object-copy": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", - "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=", + "object-is": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", + "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", "dev": true, "requires": { - "copy-descriptor": "^0.1.0", - "define-property": "^0.2.5", - "kind-of": "^3.0.3" - }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "dev": true, - "requires": { - "is-descriptor": "^0.1.0" - } - } + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" } }, "object-keys": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.0.11.tgz", - "integrity": "sha1-xUYBd4rVYPEULODgG8yotW0TQm0=", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", "dev": true }, "object-visit": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", - "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=", + "integrity": "sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==", "dev": true, "requires": { "isobject": "^3.0.0" } }, + "object.assign": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", + "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" + } + }, "object.getownpropertydescriptors": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz", - "integrity": "sha1-h1jIRvW0B62rDyNuCYbxSwUcqhY=", + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.4.tgz", + "integrity": "sha512-sccv3L/pMModT6dJAYF3fzGMVcb38ysQ0tEE6ixv2yXJDtEIPph268OlAdJj5/qZMZDq2g/jqvwppt36uS/uQQ==", "dev": true, "requires": { - "define-properties": "^1.1.2", - "es-abstract": "^1.5.1" + "array.prototype.reduce": "^1.0.4", + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.1" } }, "object.pick": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", - "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=", + "integrity": "sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==", "dev": true, "requires": { "isobject": "^3.0.1" @@ -8079,9 +19618,9 @@ "dev": true }, "on-finished": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", - "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", "dev": true, "requires": { "ee-first": "1.1.1" @@ -8096,7 +19635,7 @@ "once": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", "dev": true, "requires": { "wrappy": "1" @@ -8111,74 +19650,30 @@ "is-wsl": "^1.1.0" } }, - "optimist": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz", - "integrity": "sha1-2j6nRob6IaGaERwybpDrFaAZZoY=", - "dev": true, - "requires": { - "minimist": "~0.0.1", - "wordwrap": "~0.0.2" - } - }, "optionator": { - "version": "0.8.2", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.2.tgz", - "integrity": "sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q=", + "version": "0.8.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", + "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", "dev": true, "requires": { "deep-is": "~0.1.3", - "fast-levenshtein": "~2.0.4", + "fast-levenshtein": "~2.0.6", "levn": "~0.3.0", "prelude-ls": "~1.1.2", "type-check": "~0.3.2", - "wordwrap": "~1.0.0" - }, - "dependencies": { - "wordwrap": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", - "integrity": "sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=", - "dev": true - } - } - }, - "original": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/original/-/original-1.0.2.tgz", - "integrity": "sha512-hyBVl6iqqUOJ8FqRe+l/gS8H+kKYjrEndd5Pm1MfBtsEKA038HkkdbAl/72EAXGyonD/PFsvmVG+EvcIpliMBg==", - "dev": true, - "requires": { - "url-parse": "^1.4.3" + "word-wrap": "~1.2.3" } }, "os-browserify": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", - "integrity": "sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=", - "dev": true - }, - "os-locale": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-3.1.0.tgz", - "integrity": "sha512-Z8l3R4wYWM40/52Z+S265okfFj8Kt2cC2MKY+xNi3kFs+XGI7WXu/I309QQQYbRW4ijiZ+yxs9pqEhJh0DqW3Q==", - "dev": true, - "requires": { - "execa": "^1.0.0", - "lcid": "^2.0.0", - "mem": "^4.0.0" - } - }, - "p-defer": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-defer/-/p-defer-1.0.0.tgz", - "integrity": "sha1-n26xgvbJqozXQwBKfU+WsZaw+ww=", + "integrity": "sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==", "dev": true }, "p-each-series": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/p-each-series/-/p-each-series-1.0.0.tgz", - "integrity": "sha1-kw89Et0fUOdDRFeiLNbwSsatf3E=", + "integrity": "sha512-J/e9xiZZQNrt+958FFzJ+auItsBGq+UrQ7nE89AUP7UOTtjHnkISANXLdayhVzh538UnLMCSlf13lFfRIAKQOA==", "dev": true, "requires": { "p-reduce": "^1.0.0" @@ -8187,19 +19682,13 @@ "p-finally": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", - "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=", - "dev": true - }, - "p-is-promise": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/p-is-promise/-/p-is-promise-2.0.0.tgz", - "integrity": "sha512-pzQPhYMCAgLAKPWD2jC3Se9fEfrD9npNos0y150EeqZll7akhEgGhTW/slB6lHku8AvYGiJ+YJ5hfHKePPgFWg==", + "integrity": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==", "dev": true }, "p-limit": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.2.0.tgz", - "integrity": "sha512-pZbTJpoUsCzV48Mc9Nh51VbwO0X9cuPFE8gYwx9BTCt9SF8/b7Zljd2fVgOxhIF/HDTKgpVzs+GPhyKfjLLFRQ==", + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "dev": true, "requires": { "p-try": "^2.0.0" @@ -8215,58 +19704,102 @@ } }, "p-map": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-1.2.0.tgz", - "integrity": "sha512-r6zKACMNhjPJMTl8KcFH4li//gkrXWfbD6feV8l6doRHlzljFWGJ2AP6iKaCJXyZmAUMOPtvbW7EXkbWO/pLEA==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz", + "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==", "dev": true }, "p-reduce": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/p-reduce/-/p-reduce-1.0.0.tgz", - "integrity": "sha1-GMKw3ZNqRpClKfgjH1ig/bakffo=", + "integrity": "sha512-3Tx1T3oM1xO/Y8Gj0sWyE78EIJZ+t+aEmXUdvQgvGmSMri7aPTHoovbXEreWKkL5j21Er60XAWLTzKbAKYOujQ==", "dev": true }, + "p-retry": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-3.0.1.tgz", + "integrity": "sha512-XE6G4+YTTkT2a0UWb2kjZe8xNwf8bIbnqpc/IS/idOBVhyves0mK5OJgeocjx7q5pvX/6m23xuzVPYT1uGM73w==", + "dev": true, + "requires": { + "retry": "^0.12.0" + } + }, "p-try": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.1.0.tgz", - "integrity": "sha512-H2RyIJ7+A3rjkwKC2l5GGtU4H1vkxKCAGsWasNVd0Set+6i4znxbWy6/j16YDPJDWxhsgZiKAstMEP8wCdSpjA==", + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", "dev": true }, "pako": { "version": "0.2.9", "resolved": "https://registry.npmjs.org/pako/-/pako-0.2.9.tgz", - "integrity": "sha1-8/dSL073gjSNqBYbrZ7P1Rv4OnU=", + "integrity": "sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==", "dev": true }, "parallel-transform": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.1.0.tgz", - "integrity": "sha1-1BDwZbBdojCB/NEPKIVMKb2jOwY=", + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.2.0.tgz", + "integrity": "sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==", "dev": true, "requires": { - "cyclist": "~0.2.2", + "cyclist": "^1.0.1", "inherits": "^2.0.3", "readable-stream": "^2.1.5" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + } + } } }, "parse-asn1": { - "version": "5.1.4", - "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.4.tgz", - "integrity": "sha512-Qs5duJcuvNExRfFZ99HDD3z4mAi3r9Wl/FOjEOijlxwCZs7E7mW2vjTpgQ4J8LpTF8x5v+1Vn5UQFejmWT11aw==", + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.6.tgz", + "integrity": "sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==", "dev": true, "requires": { - "asn1.js": "^4.0.0", + "asn1.js": "^5.2.0", "browserify-aes": "^1.0.0", - "create-hash": "^1.1.0", "evp_bytestokey": "^1.0.0", "pbkdf2": "^3.0.3", "safe-buffer": "^5.1.1" } }, + "parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", + "dev": true, + "requires": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + } + }, "parse-passwd": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz", - "integrity": "sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY=", + "integrity": "sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==", "dev": true }, "parse5": { @@ -8276,63 +19809,95 @@ "dev": true }, "parseurl": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.2.tgz", - "integrity": "sha1-/CidTtiZMRlGDBViUyYs3I3mW/M=", + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", "dev": true }, + "pascal-case": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", + "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, "pascalcase": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", - "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=", + "integrity": "sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==", "dev": true }, "path-browserify": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.0.tgz", - "integrity": "sha1-oLhwcpquIUAFt9UDLsLLuw+0RRo=", + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz", + "integrity": "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==", "dev": true }, "path-dirname": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", - "integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=", + "integrity": "sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==", + "dev": true + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", "dev": true }, "path-is-absolute": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", "dev": true }, "path-is-inside": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", - "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=", + "integrity": "sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==", "dev": true }, "path-key": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", "dev": true }, "path-parse": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz", - "integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==", + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", "dev": true }, "path-to-regexp": { "version": "0.1.7", "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", - "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=", + "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==", "dev": true }, + "path-type": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", + "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", + "dev": true, + "requires": { + "pify": "^3.0.0" + }, + "dependencies": { + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "dev": true + } + } + }, "pbkdf2": { - "version": "3.0.17", - "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.0.17.tgz", - "integrity": "sha512-U/il5MsrZp7mGg3mSQfn742na2T+1/vHDCG5/iTI3X9MKUuYUZVLQhyRsg06mCgDBTd57TxzgZt7P+fYfjRLtA==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.2.tgz", + "integrity": "sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==", "dev": true, "requires": { "create-hash": "^1.1.2", @@ -8345,9 +19910,22 @@ "performance-now": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", - "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=", + "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==", + "dev": true + }, + "picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", "dev": true }, + "picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "optional": true + }, "pify": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", @@ -8357,25 +19935,31 @@ "pinkie": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", - "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=", + "integrity": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==", "dev": true }, "pinkie-promise": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", - "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", + "integrity": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==", "dev": true, "requires": { "pinkie": "^2.0.0" } }, "pirates": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.1.tgz", - "integrity": "sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA==", + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.5.tgz", + "integrity": "sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==", + "dev": true + }, + "pkg-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", + "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", "dev": true, "requires": { - "node-modules-regexp": "^1.0.0" + "find-up": "^3.0.0" } }, "pn": { @@ -8385,85 +19969,41 @@ "dev": true }, "portfinder": { - "version": "1.0.20", - "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.20.tgz", - "integrity": "sha512-Yxe4mTyDzTd59PZJY4ojZR8F+E5e97iq2ZOHPz3HDgSvYC5siNad2tLooQ5y5QHyQhc3xVqvyk/eNA3wuoa7Sw==", + "version": "1.0.32", + "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.32.tgz", + "integrity": "sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==", "dev": true, "requires": { - "async": "^1.5.2", - "debug": "^2.2.0", - "mkdirp": "0.5.x" + "async": "^2.6.4", + "debug": "^3.2.7", + "mkdirp": "^0.5.6" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + } } }, "posix-character-classes": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", - "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=", + "integrity": "sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==", "dev": true }, "postcss": { - "version": "7.0.14", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.14.tgz", - "integrity": "sha512-NsbD6XUUMZvBxtQAJuWDJeeC4QFsmWsfozWxCJPWf3M55K9iu2iMDaKqyoOdTJ1R4usBXuxlVFAIo8rZPQD4Bg==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "dev": true, "requires": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" - }, - "dependencies": { - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "requires": { - "color-convert": "^1.9.0" - } - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, - "dependencies": { - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - } - } - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", - "dev": true - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - }, - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - } + "picocolors": "^0.2.1", + "source-map": "^0.6.1" } }, "postcss-modules-extract-imports": { @@ -8487,9 +20027,9 @@ } }, "postcss-modules-scope": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-2.1.0.tgz", - "integrity": "sha512-91Rjps0JnmtUB0cujlc8KIKCsJXWjzuxGeT/+Q2i2HXKZ7nBUeF9YQTZZTNvHVoNYj1AthsjnGLtqDUE0Op79A==", + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-2.2.0.tgz", + "integrity": "sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ==", "dev": true, "requires": { "postcss": "^7.0.6", @@ -8507,14 +20047,13 @@ } }, "postcss-selector-parser": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.2.tgz", - "integrity": "sha512-36P2QR59jDTOAiIkqEprfJDsoNrvwFei3eCqKd1Y0tUsBimsq39BLp7RD+JWny3WgB1zGhJX8XVePwm9k4wdBg==", + "version": "6.0.10", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz", + "integrity": "sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==", "dev": true, "requires": { "cssesc": "^3.0.0", - "indexes-of": "^1.0.1", - "uniq": "^1.0.1" + "util-deprecate": "^1.0.2" } }, "postcss-value-parser": { @@ -8526,122 +20065,85 @@ "prelude-ls": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", - "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=", + "integrity": "sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==", "dev": true }, "pretty-format": { - "version": "24.5.0", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-24.5.0.tgz", - "integrity": "sha512-/3RuSghukCf8Riu5Ncve0iI+BzVkbRU5EeUoArKARZobREycuH5O4waxvaNIloEXdb0qwgmEAed5vTpX1HNROQ==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-24.9.0.tgz", + "integrity": "sha512-00ZMZUiHaJrNfk33guavqgvfJS30sLYf0f8+Srklv0AMPodGGHcoHgksZ3OThYnIvOd+8yMCn0YiEOogjlgsnA==", "dev": true, "requires": { - "@jest/types": "^24.5.0", + "@jest/types": "^24.9.0", "ansi-regex": "^4.0.0", "ansi-styles": "^3.2.0", "react-is": "^16.8.4" - }, - "dependencies": { - "ansi-regex": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", - "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", - "dev": true - }, - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "requires": { - "color-convert": "^1.9.0" - } - }, - "react-is": { - "version": "16.8.6", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.8.6.tgz", - "integrity": "sha512-aUk3bHfZ2bRSVFFbbeVS4i+lNPZr3/WM5jT2J5omUVV1zzcs1nAaf3l51ctA5FFvCRbhrH0bdAsRRQddFJZPtA==", - "dev": true - } } }, - "private": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/private/-/private-0.1.8.tgz", - "integrity": "sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==", - "dev": true - }, "process": { "version": "0.11.10", "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", - "integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=", + "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", "dev": true }, "process-nextick-args": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz", - "integrity": "sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", "dev": true }, - "promise": { - "version": "7.3.1", - "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz", - "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==", - "requires": { - "asap": "~2.0.3" - } - }, "promise-inflight": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", - "integrity": "sha1-mEcocL8igTL8vdhoEputEsPAKeM=", + "integrity": "sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==", "dev": true }, "prompts": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.0.4.tgz", - "integrity": "sha512-HTzM3UWp/99A0gk51gAegwo1QRYA7xjcZufMNe33rCclFszUYAuHe1fIN/3ZmiHeGPkUsNaRyQm1hHOfM0PKxA==", + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", "dev": true, "requires": { - "kleur": "^3.0.2", - "sisteransi": "^1.0.0" + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" } }, "prop-types": { - "version": "15.6.1", - "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.6.1.tgz", - "integrity": "sha512-4ec7bY1Y66LymSUOH/zARVYObB23AT2h8cf6e/O6ZALB/N0sqZFEx7rq6EYPX2MkOdKORuooI/H5k9TlR4q7kQ==", + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", "requires": { - "fbjs": "^0.8.16", - "loose-envify": "^1.3.1", - "object-assign": "^4.1.1" + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" } }, "proxy-addr": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.4.tgz", - "integrity": "sha512-5erio2h9jp5CHGwcybmxmVqHmnCBZeewlfJ0pex+UW7Qny7OOZXTtH56TGNyBizkgiOwhJtMKrVzDTeKcySZwA==", + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", "dev": true, "requires": { - "forwarded": "~0.1.2", - "ipaddr.js": "1.8.0" + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" } }, "prr": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", - "integrity": "sha1-0/wRS6BplaRexok/SEzrHXj19HY=", + "integrity": "sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==", "dev": true }, "pseudomap": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", - "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=", + "integrity": "sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==", "dev": true }, "psl": { - "version": "1.1.31", - "resolved": "https://registry.npmjs.org/psl/-/psl-1.1.31.tgz", - "integrity": "sha512-/6pt4+C+T+wZUieKR620OpzN/LlnNKuWjy1iFLQ/UG35JqHlR/89MP1d96dUfkf6Dne3TuLQzOYEYshJ+Hx8mw==", + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", + "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==", "dev": true }, "public-encrypt": { @@ -8658,10 +20160,10 @@ "safe-buffer": "^5.1.2" }, "dependencies": { - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", "dev": true } } @@ -8700,33 +20202,33 @@ } }, "punycode": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", - "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=", + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", "dev": true }, "qs": { - "version": "6.5.2", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", - "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==", + "version": "6.5.3", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz", + "integrity": "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==", "dev": true }, "querystring": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", - "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=", + "integrity": "sha512-X/xY82scca2tau62i9mDyU9K+I+djTMUsvwf7xnUX5GLvVzgJybOJf4Y6o9Zx3oJK/LSXg5tTZBjwzqVPaPO2g==", "dev": true }, "querystring-es3": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz", - "integrity": "sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=", + "integrity": "sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA==", "dev": true }, "querystringify": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.1.1.tgz", - "integrity": "sha512-w7fLxIRCRT7U8Qu53jQnJyPkYZIaR4n5151KMfcJlO/A9397Wxb1amJvROTK6TOnp7PfoAmg/qXiNHI+08jRfA==", + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", + "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", "dev": true }, "randombytes": { @@ -8749,149 +20251,111 @@ } }, "range-parser": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.0.tgz", - "integrity": "sha1-9JvmtIeJTdxA3MlKMi9hEJLgDV4=", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", "dev": true }, "raw-body": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.3.3.tgz", - "integrity": "sha512-9esiElv1BrZoI3rCDuOuKCBRbuApGGaDPQfjSflGxdy4oyzqghxu6klEkkVIvBje+FF0BX9coEv8KqW6X/7njw==", + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", + "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", "dev": true, "requires": { - "bytes": "3.0.0", - "http-errors": "1.6.3", - "iconv-lite": "0.4.23", + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", "unpipe": "1.0.0" }, "dependencies": { - "iconv-lite": { - "version": "0.4.23", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.23.tgz", - "integrity": "sha512-neyTUVFtahjf0mB3dZT77u+8O0QB89jFdnBkd5P1JgYPbPaia3gXXOVL2fq8VyU2gMMD7SaN7QukTB/pmXYvDA==", - "dev": true, - "requires": { - "safer-buffer": ">= 2.1.2 < 3" - } + "bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "dev": true } } }, "react": { - "version": "16.8.6", - "resolved": "https://registry.npmjs.org/react/-/react-16.8.6.tgz", - "integrity": "sha512-pC0uMkhLaHm11ZSJULfOBqV4tIZkx87ZLvbbQYunNixAAvjnC+snJCg0XQXn9VIsttVsbZP/H/ewzgsd5fxKXw==", + "version": "16.14.0", + "resolved": "https://registry.npmjs.org/react/-/react-16.14.0.tgz", + "integrity": "sha512-0X2CImDkJGApiAlcf0ODKIneSwBPhqJawOa5wCtKbu7ZECrmS26NvtSILynQ66cgkT/RJ4LidJOc3bUESwmU8g==", "dev": true, "requires": { "loose-envify": "^1.1.0", "object-assign": "^4.1.1", - "prop-types": "^15.6.2", - "scheduler": "^0.13.6" - }, - "dependencies": { - "prop-types": { - "version": "15.7.2", - "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.7.2.tgz", - "integrity": "sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==", - "dev": true, - "requires": { - "loose-envify": "^1.4.0", - "object-assign": "^4.1.1", - "react-is": "^16.8.1" - }, - "dependencies": { - "loose-envify": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", - "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", - "dev": true, - "requires": { - "js-tokens": "^3.0.0 || ^4.0.0" - } - } - } - }, - "react-is": { - "version": "16.8.6", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.8.6.tgz", - "integrity": "sha512-aUk3bHfZ2bRSVFFbbeVS4i+lNPZr3/WM5jT2J5omUVV1zzcs1nAaf3l51ctA5FFvCRbhrH0bdAsRRQddFJZPtA==", - "dev": true - } + "prop-types": "^15.6.2" } }, "react-dom": { - "version": "16.8.6", - "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-16.8.6.tgz", - "integrity": "sha512-1nL7PIq9LTL3fthPqwkvr2zY7phIPjYrT0jp4HjyEQrEROnw4dG41VVwi/wfoCneoleqrNX7iAD+pXebJZwrwA==", + "version": "16.14.0", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-16.14.0.tgz", + "integrity": "sha512-1gCeQXDLoIqMgqD3IO2Ah9bnf0w9kzhwN5q4FGnHZ67hBm9yePzB5JJAIQCc8x3pFnNlwFq4RidZggNAAkzWWw==", "dev": true, "requires": { "loose-envify": "^1.1.0", "object-assign": "^4.1.1", "prop-types": "^15.6.2", - "scheduler": "^0.13.6" - }, - "dependencies": { - "prop-types": { - "version": "15.7.2", - "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.7.2.tgz", - "integrity": "sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==", - "dev": true, - "requires": { - "loose-envify": "^1.4.0", - "object-assign": "^4.1.1", - "react-is": "^16.8.1" - }, - "dependencies": { - "loose-envify": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", - "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", - "dev": true, - "requires": { - "js-tokens": "^3.0.0 || ^4.0.0" - } - } - } - }, - "react-is": { - "version": "16.8.6", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.8.6.tgz", - "integrity": "sha512-aUk3bHfZ2bRSVFFbbeVS4i+lNPZr3/WM5jT2J5omUVV1zzcs1nAaf3l51ctA5FFvCRbhrH0bdAsRRQddFJZPtA==", - "dev": true - } + "scheduler": "^0.19.1" + } + }, + "react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + }, + "react-test-renderer": { + "version": "16.14.0", + "resolved": "https://registry.npmjs.org/react-test-renderer/-/react-test-renderer-16.14.0.tgz", + "integrity": "sha512-L8yPjqPE5CZO6rKsKXRO/rVPiaCOy0tQQJbC+UjPNlobl5mad59lvPjwFsQHTvL03caVDIVr9x9/OSgDe6I5Eg==", + "dev": true, + "requires": { + "object-assign": "^4.1.1", + "prop-types": "^15.6.2", + "react-is": "^16.8.6", + "scheduler": "^0.19.1" + } + }, + "read-pkg": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz", + "integrity": "sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==", + "dev": true, + "requires": { + "load-json-file": "^4.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^3.0.0" } }, - "react-is": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.3.2.tgz", - "integrity": "sha512-ybEM7YOr4yBgFd6w8dJqwxegqZGJNBZl6U27HnGKuTZmDvVrD5quWOK/wAnMywiZzW+Qsk+l4X2c70+thp/A8Q==", - "dev": true - }, - "react-test-renderer": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/react-test-renderer/-/react-test-renderer-16.3.2.tgz", - "integrity": "sha512-lL8WHIpCTMdSe+CRkt0rfMxBkJFyhVrpdQ54BaJRIrXf9aVmbeHbRA8GFRpTvohPN5tPzMabmrzW2PUfWCfWwQ==", + "read-pkg-up": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-4.0.0.tgz", + "integrity": "sha512-6etQSH7nJGsK0RbG/2TeDzZFa8shjQ1um+SwQQ5cwKy0dhSXdOncEhb1CPpvQG4h7FyOV6EB6YlV0yJvZQNAkA==", "dev": true, "requires": { - "fbjs": "^0.8.16", - "object-assign": "^4.1.1", - "prop-types": "^15.6.0", - "react-is": "^16.3.2" + "find-up": "^3.0.0", + "read-pkg": "^3.0.0" } }, "readable-stream": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", - "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", "dev": true, "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + }, + "readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "optional": true, + "requires": { + "picomatch": "^2.2.1" } }, "realpath-native": { @@ -8903,21 +20367,34 @@ "util.promisify": "^1.0.0" } }, + "regenerate": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", + "dev": true + }, "regenerate-unicode-properties": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-8.0.2.tgz", - "integrity": "sha512-SbA/iNrBUf6Pv2zU8Ekv1Qbhv92yxL4hiDa2siuxs4KKn4oOoMDHXjAf7+Nz9qinUQ46B1LcWEi/PhJfPWpZWQ==", + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz", + "integrity": "sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==", "dev": true, "requires": { - "regenerate": "^1.4.0" - }, - "dependencies": { - "regenerate": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.0.tgz", - "integrity": "sha512-1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg==", - "dev": true - } + "regenerate": "^1.4.2" + } + }, + "regenerator-runtime": { + "version": "0.13.9", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz", + "integrity": "sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==", + "dev": true + }, + "regenerator-transform": { + "version": "0.15.0", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.0.tgz", + "integrity": "sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg==", + "dev": true, + "requires": { + "@babel/runtime": "^7.8.4" } }, "regex-not": { @@ -8930,34 +20407,76 @@ "safe-regex": "^1.1.0" } }, - "regexp-tree": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/regexp-tree/-/regexp-tree-0.1.5.tgz", - "integrity": "sha512-nUmxvfJyAODw+0B13hj8CFVAxhe7fDEAgJgaotBu3nnR+IgGgZq59YedJP5VYTlkEfqjuK6TuRpnymKdatLZfQ==", + "regexp.prototype.flags": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz", + "integrity": "sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "functions-have-names": "^1.2.2" + } + }, + "regexpu-core": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.2.1.tgz", + "integrity": "sha512-HrnlNtpvqP1Xkb28tMhBUO2EbyUHdQlsnlAhzWcwHy8WJR53UWr7/MAvqrsQKMbV4qdpv03oTMG8iIhfsPFktQ==", + "dev": true, + "requires": { + "regenerate": "^1.4.2", + "regenerate-unicode-properties": "^10.1.0", + "regjsgen": "^0.7.1", + "regjsparser": "^0.9.1", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.0.0" + } + }, + "regjsgen": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.7.1.tgz", + "integrity": "sha512-RAt+8H2ZEzHeYWxZ3H2z6tF18zyyOnlcdaafLrm21Bguj7uZy6ULibiAFdXEtKQY4Sy7wDTwDiOazasMLc4KPA==", "dev": true }, + "regjsparser": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", + "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", + "dev": true, + "requires": { + "jsesc": "~0.5.0" + }, + "dependencies": { + "jsesc": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", + "dev": true + } + } + }, "remove-trailing-separator": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", - "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=", + "integrity": "sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==", "dev": true }, "repeat-element": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.2.tgz", - "integrity": "sha1-7wiaF40Ug7quTZPrmLT55OEdmQo=", + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz", + "integrity": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==", "dev": true }, "repeat-string": { "version": "1.6.1", "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", - "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", + "integrity": "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==", "dev": true }, "request": { - "version": "2.88.0", - "resolved": "https://registry.npmjs.org/request/-/request-2.88.0.tgz", - "integrity": "sha512-NAqBSrijGLZdM0WZNsInLJpkJokL72XYjUpnB0iwsRgxh7dB6COrHnTBNwN0E+lHDAJzu7kLAkDeY08z2/A0hg==", + "version": "2.88.2", + "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", + "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", "dev": true, "requires": { "aws-sign2": "~0.7.0", @@ -8967,7 +20486,7 @@ "extend": "~3.0.2", "forever-agent": "~0.6.1", "form-data": "~2.3.2", - "har-validator": "~5.1.0", + "har-validator": "~5.1.3", "http-signature": "~1.2.0", "is-typedarray": "~1.0.0", "isstream": "~0.1.2", @@ -8977,45 +20496,27 @@ "performance-now": "^2.1.0", "qs": "~6.5.2", "safe-buffer": "^5.1.2", - "tough-cookie": "~2.4.3", + "tough-cookie": "~2.5.0", "tunnel-agent": "^0.6.0", "uuid": "^3.3.2" - }, - "dependencies": { - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - }, - "tough-cookie": { - "version": "2.4.3", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.4.3.tgz", - "integrity": "sha512-Q5srk/4vDM54WJsJio3XNn6K2sCG+CQ8G5Wz6bZhRZoAe/+TxjWB/GlFAnYEbkYVlON9FMk/fE3h2RLpPXo4lQ==", - "dev": true, - "requires": { - "psl": "^1.1.24", - "punycode": "^1.4.1" - } - } } }, "request-promise-core": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.2.tgz", - "integrity": "sha512-UHYyq1MO8GsefGEt7EprS8UrXsm1TxEvFUX1IMTuSLU2Rh7fTIdFtl8xD7JiEYiWU2dl+NYAjCTksTehQUxPag==", + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.4.tgz", + "integrity": "sha512-TTbAfBBRdWD7aNNOoVOBH4pN/KigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw==", "dev": true, "requires": { - "lodash": "^4.17.11" + "lodash": "^4.17.19" } }, "request-promise-native": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/request-promise-native/-/request-promise-native-1.0.7.tgz", - "integrity": "sha512-rIMnbBdgNViL37nZ1b3L/VfPOpSi0TqVDQPAvO6U14lMzOLrt5nilxCQqtDKhZeDiW0/hkCXGoQjhgJd/tCh6w==", + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/request-promise-native/-/request-promise-native-1.0.9.tgz", + "integrity": "sha512-wcW+sIUiWnKgNY0dqCpOZkUbF/I+YPi+f09JZIDa39Ec+q82CpSYniDp+ISgTTbKmnpJWASeJBPZmoxH84wt3g==", "dev": true, "requires": { - "request-promise-core": "1.1.2", + "request-promise-core": "1.1.4", "stealthy-require": "^1.1.1", "tough-cookie": "^2.3.3" } @@ -9023,34 +20524,36 @@ "require-directory": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", "dev": true }, "require-main-filename": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz", - "integrity": "sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", "dev": true }, "requires-port": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", - "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=", + "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", "dev": true }, "resolve": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.10.0.tgz", - "integrity": "sha512-3sUr9aq5OfSg2S9pNtPA9hL1FVEAjvfOC4leW0SNf/mpnaakz2a9femSd6LqAww2RaFctwyf1lCqnTHuF1rxDg==", + "version": "1.22.1", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz", + "integrity": "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==", "dev": true, "requires": { - "path-parse": "^1.0.6" + "is-core-module": "^2.9.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" } }, "resolve-cwd": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz", - "integrity": "sha1-AKn3OHVW4nA46uIyyqNypqWbZlo=", + "integrity": "sha512-ccu8zQTrzVr954472aUVPLEcB3YpKSYR3cg/3lo1okzobPBM+1INXBbBZlDbnI/hbEocnf8j0QVo43hQKrbchg==", "dev": true, "requires": { "resolve-from": "^3.0.0" @@ -9059,23 +20562,49 @@ "resolve-dir": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz", - "integrity": "sha1-eaQGRMNivoLybv/nOcm7U4IEb0M=", + "integrity": "sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg==", "dev": true, "requires": { "expand-tilde": "^2.0.0", "global-modules": "^1.0.0" + }, + "dependencies": { + "global-modules": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz", + "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==", + "dev": true, + "requires": { + "global-prefix": "^1.0.1", + "is-windows": "^1.0.1", + "resolve-dir": "^1.0.0" + } + }, + "global-prefix": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz", + "integrity": "sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg==", + "dev": true, + "requires": { + "expand-tilde": "^2.0.2", + "homedir-polyfill": "^1.0.1", + "ini": "^1.3.4", + "is-windows": "^1.0.1", + "which": "^1.2.14" + } + } } }, "resolve-from": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", - "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=", + "integrity": "sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==", "dev": true }, "resolve-url": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", - "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=", + "integrity": "sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==", "dev": true }, "ret": { @@ -9084,13 +20613,19 @@ "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", "dev": true }, + "retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", + "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==", + "dev": true + }, "rimraf": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz", - "integrity": "sha512-lreewLK/BlghmxtfH36YYVg1i8IAce4TI7oao75I1g245+6BctqTVQiBP3YUJ9C6DQOXJmkYR9X9fCLtCOJc5w==", + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", "dev": true, "requires": { - "glob": "^7.0.5" + "glob": "^7.1.3" } }, "ripemd160": { @@ -9104,39 +20639,51 @@ } }, "rsvp": { - "version": "4.8.4", - "resolved": "https://registry.npmjs.org/rsvp/-/rsvp-4.8.4.tgz", - "integrity": "sha512-6FomvYPfs+Jy9TfXmBpBuMWNH94SgCsZmJKcanySzgNNP6LjWxBvyLTa9KaMfDDM5oxRfrKDB0r/qeRsLwnBfA==", + "version": "4.8.5", + "resolved": "https://registry.npmjs.org/rsvp/-/rsvp-4.8.5.tgz", + "integrity": "sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==", "dev": true }, "run-queue": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz", - "integrity": "sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec=", + "integrity": "sha512-ntymy489o0/QQplUDnpYAYUsO50K9SBrIVaKCWDOJzYJts0f9WH9RFJkyagebkw5+y1oi00R7ynNW/d12GBumg==", "dev": true, "requires": { "aproba": "^1.1.1" } }, "safe-buffer": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz", - "integrity": "sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==", + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", "dev": true }, "safe-regex": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", - "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=", + "integrity": "sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==", "dev": true, "requires": { "ret": "~0.1.10" } }, + "safe-regex-test": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", + "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.3", + "is-regex": "^1.1.4" + } + }, "safer-buffer": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true }, "sane": { "version": "4.1.0", @@ -9155,11 +20702,24 @@ "walker": "~1.0.5" }, "dependencies": { - "minimist": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", - "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", - "dev": true + "anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "dev": true, + "requires": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + } + }, + "normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", + "dev": true, + "requires": { + "remove-trailing-separator": "^1.0.1" + } } } }, @@ -9169,19 +20729,10 @@ "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==", "dev": true }, - "saxes": { - "version": "3.1.9", - "resolved": "https://registry.npmjs.org/saxes/-/saxes-3.1.9.tgz", - "integrity": "sha512-FZeKhJglhJHk7eWG5YM0z46VHmI3KJpMBAQm3xa9meDvd+wevB5GuBB0wc0exPInZiBBHqi00DbS8AcvCGCFMw==", - "dev": true, - "requires": { - "xmlchars": "^1.3.1" - } - }, "scheduler": { - "version": "0.13.6", - "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.13.6.tgz", - "integrity": "sha512-IWnObHt413ucAYKsD9J1QShUKkbKLQQHdxRyw73sw4FN26iWr3DY/H34xGPe4nmL1DwXyWmSWmMrA9TfQbE/XQ==", + "version": "0.19.1", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.19.1.tgz", + "integrity": "sha512-n/zwRWRYSUj0/3g/otKDRPMh6qv2SYMWNq85IEa8iZyAv8od9zDYpGSnpBEjNgcMNq6Scbu5KfIPxNF72R/2EA==", "dev": true, "requires": { "loose-envify": "^1.1.0", @@ -9197,80 +20748,88 @@ "ajv": "^6.1.0", "ajv-errors": "^1.0.0", "ajv-keywords": "^3.1.0" - }, - "dependencies": { - "ajv": { - "version": "6.10.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.10.0.tgz", - "integrity": "sha512-nffhOpkymDECQyR0mnsUtoCE8RlX38G0rYP+wgLWFyZuUyuuojSSvi/+euOiQBIn63whYwYVIIH1TvE3tu4OEg==", - "dev": true, - "requires": { - "fast-deep-equal": "^2.0.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "ajv-keywords": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.4.0.tgz", - "integrity": "sha512-aUjdRFISbuFOl0EIZc+9e4FfZp0bDZgAdOOf30bJmw8VM9v84SHyVyxDfbWxpGYbdZD/9XoKxfHVNmxPkhwyGw==", - "dev": true - } } }, "select-hose": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", - "integrity": "sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo=", + "integrity": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==", "dev": true }, "selfsigned": { - "version": "1.10.4", - "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-1.10.4.tgz", - "integrity": "sha512-9AukTiDmHXGXWtWjembZ5NDmVvP2695EtpgbCsxCa68w3c88B+alqbmZ4O3hZ4VWGXeGWzEVdvqgAJD8DQPCDw==", + "version": "1.10.14", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-1.10.14.tgz", + "integrity": "sha512-lkjaiAye+wBZDCBsu5BGi0XiLRxeUlsGod5ZP924CRSEoGuZAw/f7y9RKu28rwTfiHVhdavhB0qH0INV6P1lEA==", "dev": true, "requires": { - "node-forge": "0.7.5" + "node-forge": "^0.10.0" } }, "semver": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.5.0.tgz", - "integrity": "sha512-4SJ3dm0WAwWy/NVeioZh5AntkdJoWKxHxcmyP622fOkgHa4z3R0TdBJICINyaSDE6uNwVc8gZr+ZinwZAH4xIA==", + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true }, "send": { - "version": "0.16.2", - "resolved": "https://registry.npmjs.org/send/-/send-0.16.2.tgz", - "integrity": "sha512-E64YFPUssFHEFBvpbbjr44NCLtI1AohxQ8ZSiJjQLskAdKuriYEP6VyGEsRDH8ScozGpkaX1BGvhanqCwkcEZw==", + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", "dev": true, "requires": { "debug": "2.6.9", - "depd": "~1.1.2", - "destroy": "~1.0.4", + "depd": "2.0.0", + "destroy": "1.2.0", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "etag": "~1.8.1", "fresh": "0.5.2", - "http-errors": "~1.6.2", - "mime": "1.4.1", - "ms": "2.0.0", - "on-finished": "~2.3.0", - "range-parser": "~1.2.0", - "statuses": "~1.4.0" + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + }, + "dependencies": { + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + } + } + }, + "ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true + } } }, "serialize-javascript": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-1.6.1.tgz", - "integrity": "sha512-A5MOagrPFga4YaKQSWHryl7AXvbQkEqpw4NNYMTNYUNV51bA8ABHgYFpqKx+YFFrw59xMV1qGH1R4AgoNIVgCw==", - "dev": true + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz", + "integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==", + "dev": true, + "requires": { + "randombytes": "^2.1.0" + } }, "serve-index": { "version": "1.9.1", "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", - "integrity": "sha1-03aNabHn2C5c4FD/9bRTvqEqkjk=", + "integrity": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==", "dev": true, "requires": { "accepts": "~1.3.4", @@ -9280,30 +20839,83 @@ "http-errors": "~1.6.2", "mime-types": "~2.1.17", "parseurl": "~1.3.2" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", + "dev": true + }, + "http-errors": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", + "integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==", + "dev": true, + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" + } + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", + "dev": true + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "setprototypeof": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", + "dev": true + }, + "statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", + "dev": true + } } }, "serve-static": { - "version": "1.13.2", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.13.2.tgz", - "integrity": "sha512-p/tdJrO4U387R9oMjb1oj7qSMaMfmOyd4j9hOFoxZe2baQszgHcSWjuya/CiT5kgZZKRudHNOA0pYXOl8rQ5nw==", + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", "dev": true, "requires": { "encodeurl": "~1.0.2", "escape-html": "~1.0.3", - "parseurl": "~1.3.2", - "send": "0.16.2" + "parseurl": "~1.3.3", + "send": "0.18.0" } }, "set-blocking": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", + "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", "dev": true }, "set-value": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.0.tgz", - "integrity": "sha512-hw0yxk9GT/Hr5yJEYnHNKYXkIA8mVJgd9ditYZCe16ZczcaELYYcfvaXesNACk2O8O0nTiPQcQhGUQj8JLzeeg==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", + "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", "dev": true, "requires": { "extend-shallow": "^2.0.1", @@ -9315,23 +20927,30 @@ "extend-shallow": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", "dev": true, "requires": { "is-extendable": "^0.1.0" } + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "dev": true } } }, "setimmediate": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", - "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=" + "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==", + "dev": true }, "setprototypeof": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", - "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", "dev": true }, "sha.js": { @@ -9347,7 +20966,7 @@ "shebang-command": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", "dev": true, "requires": { "shebang-regex": "^1.0.0" @@ -9356,7 +20975,7 @@ "shebang-regex": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", "dev": true }, "shellwords": { @@ -9365,16 +20984,33 @@ "integrity": "sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==", "dev": true }, + "side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "dev": true, + "requires": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + } + }, "signal-exit": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz", - "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=", + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", "dev": true }, "sisteransi": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.0.tgz", - "integrity": "sha512-N+z4pHB4AmUv0SjveWRd6q1Nj5w62m5jodv+GD8lvmbY/83T/rpbJGZOnK5T149OldDj4Db07BSv9xY4K6NTPQ==", + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", + "dev": true + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", + "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", "dev": true }, "snapdragon": { @@ -9393,10 +21029,19 @@ "use": "^3.1.0" }, "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, "define-property": { "version": "0.2.5", "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", "dev": true, "requires": { "is-descriptor": "^0.1.0" @@ -9405,68 +21050,108 @@ "extend-shallow": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", "dev": true, "requires": { "is-extendable": "^0.1.0" } - } - } - }, - "snapdragon-node": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", - "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", - "dev": true, - "requires": { - "define-property": "^1.0.0", - "isobject": "^3.0.0", - "snapdragon-util": "^3.0.1" - }, - "dependencies": { - "define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + }, + "is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", "dev": true, "requires": { - "is-descriptor": "^1.0.0" + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } } }, - "is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", "dev": true, "requires": { - "kind-of": "^6.0.0" + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" } }, - "is-data-descriptor": { + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "dev": true + }, + "kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "dev": true + } + } + }, + "snapdragon-node": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", + "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", + "dev": true, + "requires": { + "define-property": "^1.0.0", + "isobject": "^3.0.0", + "snapdragon-util": "^3.0.1" + }, + "dependencies": { + "define-property": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", "dev": true, "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" + "is-descriptor": "^1.0.0" } - }, - "kind-of": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==", - "dev": true } } }, @@ -9477,55 +21162,59 @@ "dev": true, "requires": { "kind-of": "^3.2.0" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } } }, "sockjs": { - "version": "0.3.19", - "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.19.tgz", - "integrity": "sha512-V48klKZl8T6MzatbLlzzRNhMepEys9Y4oGFpypBFFn1gLI/QQ9HtLLyWJNbPlwGLelOVOEijUbTTJeLLI59jLw==", + "version": "0.3.24", + "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz", + "integrity": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==", "dev": true, "requires": { - "faye-websocket": "^0.10.0", - "uuid": "^3.0.1" + "faye-websocket": "^0.11.3", + "uuid": "^8.3.2", + "websocket-driver": "^0.7.4" + }, + "dependencies": { + "uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "dev": true + } } }, "sockjs-client": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.3.0.tgz", - "integrity": "sha512-R9jxEzhnnrdxLCNln0xg5uGHqMnkhPSTzUZH2eXcR03S/On9Yvoq2wyUZILRUhZCNVu2PmwWVoyuiPz8th8zbg==", + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.6.1.tgz", + "integrity": "sha512-2g0tjOR+fRs0amxENLi/q5TiJTqY+WXFOzb5UwXndlK6TO3U/mirZznpx6w34HVMoc3g7cY24yC/ZMIYnDlfkw==", "dev": true, "requires": { - "debug": "^3.2.5", - "eventsource": "^1.0.7", - "faye-websocket": "~0.11.1", - "inherits": "^2.0.3", - "json3": "^3.3.2", - "url-parse": "^1.4.3" + "debug": "^3.2.7", + "eventsource": "^2.0.2", + "faye-websocket": "^0.11.4", + "inherits": "^2.0.4", + "url-parse": "^1.5.10" }, "dependencies": { "debug": { - "version": "3.2.6", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz", - "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==", + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", "dev": true, "requires": { "ms": "^2.1.1" } - }, - "faye-websocket": { - "version": "0.11.1", - "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.1.tgz", - "integrity": "sha1-8O/hjE9W5PQK/H4Gxxn9XuYYjzg=", - "dev": true, - "requires": { - "websocket-driver": ">=0.5.1" - } - }, - "ms": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", - "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==", - "dev": true } } }, @@ -9536,34 +21225,44 @@ "dev": true }, "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true }, "source-map-resolve": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.1.tgz", - "integrity": "sha512-0KW2wvzfxm8NCTb30z0LMNyPqWCdDGE2viwzUaucqJdkTRXtZiSY3I+2A6nVAjmdOy0I4gU8DwnVVGsk9jvP2A==", + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", + "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", "dev": true, "requires": { - "atob": "^2.0.0", + "atob": "^2.1.2", "decode-uri-component": "^0.2.0", "resolve-url": "^0.2.1", "source-map-url": "^0.4.0", "urix": "^0.1.0" } }, + "source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "dev": true, + "requires": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, "source-map-url": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz", - "integrity": "sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM=", + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz", + "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==", "dev": true }, "spdx-correct": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.0.0.tgz", - "integrity": "sha512-N19o9z5cEyc8yQQPukRCZ9EUmb4HUpnrmaL/fxS2pBo2jbfcFRVuFZ/oFC+vZz0MNNk0h80iMn5/S6qGZOL5+g==", + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz", + "integrity": "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==", "dev": true, "requires": { "spdx-expression-parse": "^3.0.0", @@ -9571,15 +21270,15 @@ } }, "spdx-exceptions": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.1.0.tgz", - "integrity": "sha512-4K1NsmrlCU1JJgUrtgEeTVyfx8VaYea9J9LvARxhbHtVtohPs/gFGG5yy49beySjlIMhhXZ4QqujIZEfS4l6Cg==", + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", + "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", "dev": true }, "spdx-expression-parse": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz", - "integrity": "sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg==", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", "dev": true, "requires": { "spdx-exceptions": "^2.1.0", @@ -9587,15 +21286,15 @@ } }, "spdx-license-ids": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.0.tgz", - "integrity": "sha512-2+EPwgbnmOIl8HjGBXXMd9NAu02vLjOO1nWw4kmeRDFyHn+M/ETfHxQUK0oXg8ctgVnl9t3rosNVsZ1jG61nDA==", + "version": "3.0.12", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.12.tgz", + "integrity": "sha512-rr+VVSXtRhO4OHbXUiAF7xW3Bo9DuuF6C5jH+q/x15j2jniycgKbxU09Hr0WqlSLUs4i4ltHGXqTe7VHclYWyA==", "dev": true }, "spdy": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.0.tgz", - "integrity": "sha512-ot0oEGT/PGUpzf/6uk4AWLqkq+irlqHXkrdbk51oWONh3bxQmBuljxPNl66zlRRcIJStWq0QkLUCPOPjgjvU0Q==", + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz", + "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==", "dev": true, "requires": { "debug": "^4.1.0", @@ -9603,23 +21302,6 @@ "http-deceiver": "^1.2.7", "select-hose": "^2.0.0", "spdy-transport": "^3.0.0" - }, - "dependencies": { - "debug": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", - "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", - "dev": true, - "requires": { - "ms": "^2.1.1" - } - }, - "ms": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", - "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==", - "dev": true - } } }, "spdy-transport": { @@ -9634,34 +21316,6 @@ "obuf": "^1.1.2", "readable-stream": "^3.0.6", "wbuf": "^1.7.3" - }, - "dependencies": { - "debug": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", - "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", - "dev": true, - "requires": { - "ms": "^2.1.1" - } - }, - "ms": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", - "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==", - "dev": true - }, - "readable-stream": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.2.0.tgz", - "integrity": "sha512-RV20kLjdmpZuTF1INEb9IA3L68Nmi+Ri7ppZqo78wj//Pn62fCoJyV9zalccNzDD/OuJpMG4f+pfMl8+L6QdGw==", - "dev": true, - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - } } }, "split-string": { @@ -9673,16 +21327,10 @@ "extend-shallow": "^3.0.0" } }, - "sprintf-js": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", - "dev": true - }, "sshpk": { - "version": "1.16.1", - "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz", - "integrity": "sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==", + "version": "1.17.0", + "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.17.0.tgz", + "integrity": "sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ==", "dev": true, "requires": { "asn1": "~0.2.3", @@ -9697,24 +21345,35 @@ } }, "ssri": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ssri/-/ssri-6.0.1.tgz", - "integrity": "sha512-3Wge10hNcT1Kur4PDFwEieXSCMCJs/7WvSACcrMYrNp+b8kDL1/0wJch5Ni2WrtwEa2IO8OsVfeKIciKCDx/QA==", + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-6.0.2.tgz", + "integrity": "sha512-cepbSq/neFK7xB6A50KHN0xHDotYzq58wWCa5LeWqnPrHG8GzfEjO/4O8kpmcGW+oaxkvhEJCWgbgNk4/ZV93Q==", "dev": true, "requires": { "figgy-pudding": "^3.5.1" } }, "stack-utils": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-1.0.2.tgz", - "integrity": "sha512-MTX+MeG5U994cazkjd/9KNAapsHnibjMLnfXodlkXw76JEea0UiNzrqidzo1emMwk7w5Qhc9jd4Bn9TBb1MFwA==", - "dev": true + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-1.0.5.tgz", + "integrity": "sha512-KZiTzuV3CnSnSvgMRrARVCj+Ht7rMbauGDK0LdVFRGyenwdylpajAp4Q0i6SX8rEmbTpMMf6ryq2gb8pPq2WgQ==", + "dev": true, + "requires": { + "escape-string-regexp": "^2.0.0" + }, + "dependencies": { + "escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "dev": true + } + } }, "static-extend": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", - "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=", + "integrity": "sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==", "dev": true, "requires": { "define-property": "^0.2.5", @@ -9724,24 +21383,81 @@ "define-property": { "version": "0.2.5", "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", "dev": true, "requires": { "is-descriptor": "^0.1.0" } + }, + "is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + } + }, + "kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true } } }, "statuses": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.4.0.tgz", - "integrity": "sha512-zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", "dev": true }, "stealthy-require": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz", - "integrity": "sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks=", + "integrity": "sha512-ZnWpYnYugiOVEY5GkcuJK1io5V8QmNYChG62gSit9pQVGErXtrKuPC55ITaVSukmMta5qpMU7vqLt2Lnni4f/g==", "dev": true }, "stream-browserify": { @@ -9752,6 +21468,32 @@ "requires": { "inherits": "~2.0.1", "readable-stream": "^2.0.2" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + } + } } }, "stream-each": { @@ -9775,18 +21517,61 @@ "readable-stream": "^2.3.6", "to-arraybuffer": "^1.0.0", "xtend": "^4.0.0" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + } + } } }, "stream-shift": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.0.tgz", - "integrity": "sha1-1cdSgl5TZ+eG944Y5EXqIjoVWVI=", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz", + "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==", "dev": true }, + "string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dev": true, + "requires": { + "safe-buffer": "~5.2.0" + }, + "dependencies": { + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true + } + } + }, "string-length": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/string-length/-/string-length-2.0.0.tgz", - "integrity": "sha1-1A27aGo6zpYMHP/KVivyxF+DY+0=", + "integrity": "sha512-Qka42GGrS8Mm3SZ+7cH8UXiIWI867/b/Z/feQSpQx/rbfB8UGknGEZVaUQMOUVj+soY6NpWAxily63HI1OckVQ==", "dev": true, "requires": { "astral-regex": "^1.0.0", @@ -9794,15 +21579,15 @@ }, "dependencies": { "ansi-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", - "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz", + "integrity": "sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==", "dev": true }, "strip-ansi": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "integrity": "sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==", "dev": true, "requires": { "ansi-regex": "^3.0.0" @@ -9811,66 +21596,87 @@ } }, "string-width": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", - "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", "dev": true, "requires": { - "code-point-at": "^1.0.0", - "is-fullwidth-code-point": "^1.0.0", - "strip-ansi": "^3.0.0" + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" } }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "string.prototype.trimend": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.5.tgz", + "integrity": "sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog==", "dev": true, "requires": { - "safe-buffer": "~5.1.0" + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.19.5" + } + }, + "string.prototype.trimstart": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.5.tgz", + "integrity": "sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.19.5" } }, "strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", "dev": true, "requires": { - "ansi-regex": "^2.0.0" + "ansi-regex": "^4.1.0" } }, + "strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "dev": true + }, "strip-eof": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", - "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=", + "integrity": "sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==", "dev": true }, "style-loader": { "version": "0.13.2", "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-0.13.2.tgz", - "integrity": "sha1-dFMzhM9pjHEEx5URULSXF63C87s=", + "integrity": "sha512-0lN0o7DS1G/HRoYJQMEO3yP+tNCuAnNuX1mt/2Yw4edSok45vebtyJoHUyBREasuPYBtZpC3d8wvgY/WD68ZJg==", "dev": true, "requires": { "loader-utils": "^1.0.2" - }, - "dependencies": { - "loader-utils": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.1.0.tgz", - "integrity": "sha1-yYrvSIvM7aL/teLeZG1qdUQp9c0=", - "dev": true, - "requires": { - "big.js": "^3.1.3", - "emojis-list": "^2.0.0", - "json5": "^0.5.0" - } - } } }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + }, + "supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true + }, "svgfont2js": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/svgfont2js/-/svgfont2js-0.1.2.tgz", - "integrity": "sha1-VEhX0TsHlYN4p+7D42N/QJHf/O0=", + "integrity": "sha512-zLuElVTalaU1caMGHvlOzinWBxPUWm3+soyF5yp8fWXQ3/qzcm1t6tGypNaVMoD37buJkJguHjB9Xcy4O3mkbw==", "dev": true, "requires": { "svgpath": "^1.0.7", @@ -9880,216 +21686,73 @@ "svgpath": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/svgpath/-/svgpath-1.0.7.tgz", - "integrity": "sha1-5VQhK4fl0EaRQaKEwCDIf1yaTtA=", + "integrity": "sha512-l80jk+Hkhz9S4CFe+C3M4iem7ULN5/V1SOjfBhSEYIes9Evlq/0Mtio6mLSEfIsyAfgroGbtg+R6ddZQPGVqZQ==", "dev": true }, "symbol-tree": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.2.tgz", - "integrity": "sha1-rifbOPZgp64uHDt9G8KQgZuFGeY=", + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", + "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==", "dev": true }, "tapable": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.1.tgz", - "integrity": "sha512-9I2ydhj8Z9veORCw5PRm4u9uebCn0mcCa6scWoNcbZ6dAtoo2618u9UUzxgmsCOreJpqDDuv61LvwofW7hLcBA==", + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", + "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", "dev": true }, "terser": { - "version": "3.17.0", - "resolved": "https://registry.npmjs.org/terser/-/terser-3.17.0.tgz", - "integrity": "sha512-/FQzzPJmCpjAH9Xvk2paiWrFq+5M6aVOf+2KRbwhByISDX/EujxsK+BAvrhb6H+2rtrLCHK9N01wO014vrIwVQ==", + "version": "4.8.1", + "resolved": "https://registry.npmjs.org/terser/-/terser-4.8.1.tgz", + "integrity": "sha512-4GnLC0x667eJG0ewJTa6z/yXrbLGv80D9Ru6HIpCQmO+Q4PfEtBFi0ObSckqwL6VyQv/7ENJieXHo2ANmdQwgw==", "dev": true, "requires": { - "commander": "^2.19.0", + "commander": "^2.20.0", "source-map": "~0.6.1", - "source-map-support": "~0.5.10" + "source-map-support": "~0.5.12" }, "dependencies": { "commander": { - "version": "2.19.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.19.0.tgz", - "integrity": "sha512-6tvAOO+D6OENvRAh524Dh9jcfKTYDQAqvqezbCW82xj5X0pSrcpxtvRKHLG0yBY6SD7PSDrJaj+0AiOcKVd1Xg==", + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", "dev": true - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - }, - "source-map-support": { - "version": "0.5.11", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.11.tgz", - "integrity": "sha512-//sajEx/fGL3iw6fltKMdPvy8kL3kJ2O3iuYlRoT3k9Kb4BjOoZ+BZzaNHeuaruSt+Kf3Zk9tnfAQg9/AJqUVQ==", - "dev": true, - "requires": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - } } } }, "terser-webpack-plugin": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-1.2.3.tgz", - "integrity": "sha512-GOK7q85oAb/5kE12fMuLdn2btOS9OBZn4VsecpHDywoUC/jLhSAKOiYo0ezx7ss2EXPMzyEWFoE0s1WLE+4+oA==", + "version": "1.4.5", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-1.4.5.tgz", + "integrity": "sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw==", "dev": true, "requires": { - "cacache": "^11.0.2", - "find-cache-dir": "^2.0.0", - "schema-utils": "^1.0.0", - "serialize-javascript": "^1.4.0", - "source-map": "^0.6.1", - "terser": "^3.16.1", - "webpack-sources": "^1.1.0", - "worker-farm": "^1.5.2" - }, - "dependencies": { - "find-cache-dir": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz", - "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==", - "dev": true, - "requires": { - "commondir": "^1.0.1", - "make-dir": "^2.0.0", - "pkg-dir": "^3.0.0" - } - }, - "find-up": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", - "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", - "dev": true, - "requires": { - "locate-path": "^3.0.0" - } - }, - "make-dir": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", - "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", - "dev": true, - "requires": { - "pify": "^4.0.1", - "semver": "^5.6.0" - } - }, - "pkg-dir": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", - "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", - "dev": true, - "requires": { - "find-up": "^3.0.0" - } - }, - "semver": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz", - "integrity": "sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==", - "dev": true - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - } + "cacache": "^12.0.2", + "find-cache-dir": "^2.1.0", + "is-wsl": "^1.1.0", + "schema-utils": "^1.0.0", + "serialize-javascript": "^4.0.0", + "source-map": "^0.6.1", + "terser": "^4.1.2", + "webpack-sources": "^1.4.0", + "worker-farm": "^1.7.0" } }, "test-exclude": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-5.1.0.tgz", - "integrity": "sha512-gwf0S2fFsANC55fSeSqpb8BYk6w3FDvwZxfNjeF6FRgvFa43r+7wRiA/Q0IxoRU37wB/LE8IQ4221BsNucTaCA==", + "version": "5.2.3", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-5.2.3.tgz", + "integrity": "sha512-M+oxtseCFO3EDtAaGH7iiej3CBkzXqFMbzqYAACdzKui4eZA+pq3tZEwChvOdNfa7xxy8BfbmgJSIr43cC/+2g==", "dev": true, "requires": { - "arrify": "^1.0.1", + "glob": "^7.1.3", "minimatch": "^3.0.4", "read-pkg-up": "^4.0.0", - "require-main-filename": "^1.0.1" - }, - "dependencies": { - "find-up": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", - "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", - "dev": true, - "requires": { - "locate-path": "^3.0.0" - } - }, - "load-json-file": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", - "integrity": "sha1-L19Fq5HjMhYjT9U62rZo607AmTs=", - "dev": true, - "requires": { - "graceful-fs": "^4.1.2", - "parse-json": "^4.0.0", - "pify": "^3.0.0", - "strip-bom": "^3.0.0" - } - }, - "parse-json": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", - "dev": true, - "requires": { - "error-ex": "^1.3.1", - "json-parse-better-errors": "^1.0.1" - } - }, - "path-type": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", - "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", - "dev": true, - "requires": { - "pify": "^3.0.0" - } - }, - "pify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", - "dev": true - }, - "read-pkg": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz", - "integrity": "sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=", - "dev": true, - "requires": { - "load-json-file": "^4.0.0", - "normalize-package-data": "^2.3.2", - "path-type": "^3.0.0" - } - }, - "read-pkg-up": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-4.0.0.tgz", - "integrity": "sha512-6etQSH7nJGsK0RbG/2TeDzZFa8shjQ1um+SwQQ5cwKy0dhSXdOncEhb1CPpvQG4h7FyOV6EB6YlV0yJvZQNAkA==", - "dev": true, - "requires": { - "find-up": "^3.0.0", - "read-pkg": "^3.0.0" - } - }, - "strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=", - "dev": true - } + "require-main-filename": "^2.0.0" } }, "throat": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/throat/-/throat-4.1.0.tgz", - "integrity": "sha1-iQN8vJLFarGJJua6TLsgDhVnKmo=", + "integrity": "sha512-wCVxLDcFxw7ujDxaeJC6nfl2XfHJNYs8yUYJnvMgtPEFlttP9tHSfRUv2vBe6C4hkVFPWoP1P6ZccbYjmSEkKA==", "dev": true }, "through2": { @@ -10100,42 +21763,85 @@ "requires": { "readable-stream": "~2.3.6", "xtend": "~4.0.1" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + } + } } }, "thunky": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.0.3.tgz", - "integrity": "sha512-YwT8pjmNcAXBZqrubu22P4FYsh2D4dxRmnWBOL8Jk8bUcRUtc5326kx32tuTmFDAZtLOGEVNl8POAR8j896Iow==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", + "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==", "dev": true }, "timers-browserify": { - "version": "2.0.10", - "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.10.tgz", - "integrity": "sha512-YvC1SV1XdOUaL6gx5CoGroT3Gu49pK9+TZ38ErPldOWW4j49GI1HKs9DV+KGq/w6y+LZ72W1c8cKz2vzY+qpzg==", + "version": "2.0.12", + "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.12.tgz", + "integrity": "sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==", "dev": true, "requires": { "setimmediate": "^1.0.4" } }, "tmpl": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.4.tgz", - "integrity": "sha1-I2QN17QtAEM5ERQIIOXPRA5SHdE=", + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", + "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", "dev": true }, "to-arraybuffer": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz", - "integrity": "sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=", + "integrity": "sha512-okFlQcoGTi4LQBG/PgSYblw9VOyptsz2KJZqc6qtgGdes8VktzUQkj4BI2blit072iS8VODNcMA+tvnS9dnuMA==", + "dev": true + }, + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", "dev": true }, "to-object-path": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", - "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=", + "integrity": "sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==", "dev": true, "requires": { "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } } }, "to-regex": { @@ -10151,15 +21857,30 @@ } }, "to-regex-range": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", - "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", "dev": true, + "optional": true, "requires": { - "is-number": "^3.0.0", - "repeat-string": "^1.6.1" + "is-number": "^7.0.0" + }, + "dependencies": { + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "optional": true + } } }, + "toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "dev": true + }, "tough-cookie": { "version": "2.5.0", "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", @@ -10168,55 +21889,32 @@ "requires": { "psl": "^1.1.28", "punycode": "^2.1.1" - }, - "dependencies": { - "punycode": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", - "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", - "dev": true - } } }, "tr46": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz", - "integrity": "sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk=", + "integrity": "sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==", "dev": true, "requires": { "punycode": "^2.1.0" - }, - "dependencies": { - "punycode": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", - "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", - "dev": true - } } }, - "trim-right": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz", - "integrity": "sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM=", - "dev": true - }, "tslib": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.9.3.tgz", - "integrity": "sha512-4krF8scpejhaOgqzBEcGM7yDIEfi0/8+8zDRZhNZZ2kjmHJ4hv3zCbQWxoJGz1iw5U0Jl0nma13xzHXcncMavQ==", - "dev": true + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", + "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" }, "tty-browserify": { "version": "0.0.0", "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz", - "integrity": "sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=", + "integrity": "sha512-JVa5ijo+j/sOoHGjw0sxw734b1LhBkQ3bvUGNdxnVXDCX81Yx7TFgnZygxrIIWn23hbfTaMYLwRmAxFyDuFmIw==", "dev": true }, "tunnel-agent": { "version": "0.6.0", "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", - "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", + "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==", "dev": true, "requires": { "safe-buffer": "^5.0.1" @@ -10225,108 +21923,94 @@ "tweetnacl": { "version": "0.14.5", "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", - "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=", + "integrity": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==", "dev": true }, "type-check": { "version": "0.3.2", "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", - "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", + "integrity": "sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==", "dev": true, "requires": { "prelude-ls": "~1.1.2" } }, "type-is": { - "version": "1.6.16", - "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.16.tgz", - "integrity": "sha512-HRkVv/5qY2G6I8iab9cI7v1bOIdhm94dVjQCPFElW9W+3GeDOSHmy2EBYe4VTApuzolPcmgFTN3ftVJRKR2J9Q==", + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", "dev": true, "requires": { "media-typer": "0.3.0", - "mime-types": "~2.1.18" + "mime-types": "~2.1.24" } }, "typedarray": { "version": "0.0.6", "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", - "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=", + "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==", "dev": true }, - "ua-parser-js": { - "version": "0.7.17", - "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.17.tgz", - "integrity": "sha512-uRdSdu1oA1rncCQL7sCj8vSyZkgtL7faaw9Tc9rZ3mGgraQ7+Pdx7w5mnOSF3gw9ZNG6oc+KXfkon3bKuROm0g==" + "unbox-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", + "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "has-bigints": "^1.0.2", + "has-symbols": "^1.0.3", + "which-boxed-primitive": "^1.0.2" + } }, "unicode-canonical-property-names-ecmascript": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz", - "integrity": "sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", + "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==", "dev": true }, "unicode-match-property-ecmascript": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz", - "integrity": "sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", + "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", "dev": true, "requires": { - "unicode-canonical-property-names-ecmascript": "^1.0.4", - "unicode-property-aliases-ecmascript": "^1.0.4" + "unicode-canonical-property-names-ecmascript": "^2.0.0", + "unicode-property-aliases-ecmascript": "^2.0.0" } }, "unicode-match-property-value-ecmascript": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.1.0.tgz", - "integrity": "sha512-hDTHvaBk3RmFzvSl0UVrUmC3PuW9wKVnpoUDYH0JDkSIovzw+J5viQmeYHxVSBptubnr7PbH2e0fnpDRQnQl5g==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz", + "integrity": "sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==", "dev": true }, "unicode-property-aliases-ecmascript": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.0.5.tgz", - "integrity": "sha512-L5RAqCfXqAwR3RriF8pM0lU0w4Ryf/GgzONwi6KnL1taJQa7x1TCxdJnILX59WIGOwR57IVxn7Nej0fz1Ny6fw==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", + "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", "dev": true }, "union-value": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.0.tgz", - "integrity": "sha1-XHHDTLW61dzr4+oM0IIHulqhrqQ=", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", + "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", "dev": true, "requires": { "arr-union": "^3.1.0", "get-value": "^2.0.6", "is-extendable": "^0.1.1", - "set-value": "^0.4.3" + "set-value": "^2.0.1" }, "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - }, - "set-value": { - "version": "0.4.3", - "resolved": "https://registry.npmjs.org/set-value/-/set-value-0.4.3.tgz", - "integrity": "sha1-fbCPnT0i3H945Trzw79GZuzfzPE=", - "dev": true, - "requires": { - "extend-shallow": "^2.0.1", - "is-extendable": "^0.1.1", - "is-plain-object": "^2.0.1", - "to-object-path": "^0.3.0" - } + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "dev": true } } }, - "uniq": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz", - "integrity": "sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=", - "dev": true - }, "unique-filename": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz", @@ -10337,9 +22021,9 @@ } }, "unique-slug": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.1.tgz", - "integrity": "sha512-n9cU6+gITaVu7VGj1Z8feKMmfAjEAQGhwD9fE3zvpRRa0wEIx8ODYkVGfSc94M2OX00tUFV8wH3zYbm1I8mxFg==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz", + "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==", "dev": true, "requires": { "imurmurhash": "^0.1.4" @@ -10348,13 +22032,13 @@ "unpipe": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", - "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", "dev": true }, "unset-value": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", - "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=", + "integrity": "sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==", "dev": true, "requires": { "has-value": "^0.3.1", @@ -10364,7 +22048,7 @@ "has-value": { "version": "0.3.1", "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", - "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=", + "integrity": "sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==", "dev": true, "requires": { "get-value": "^2.0.3", @@ -10375,7 +22059,7 @@ "isobject": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", - "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", + "integrity": "sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==", "dev": true, "requires": { "isarray": "1.0.0" @@ -10386,49 +22070,54 @@ "has-values": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", - "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=", + "integrity": "sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==", "dev": true } } }, "upath": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/upath/-/upath-1.1.2.tgz", - "integrity": "sha512-kXpym8nmDmlCBr7nKdIx8P2jNBa+pBpIUFRnKJ4dr8htyYGJFokkr2ZvERRtUN+9SY+JqXouNgUPtv6JQva/2Q==", + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", + "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", "dev": true }, - "upper-case": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-1.1.3.tgz", - "integrity": "sha1-9rRQHC7EzdJrp4vnIilh3ndiFZg=" - }, - "uri-js": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz", - "integrity": "sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==", + "update-browserslist-db": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.9.tgz", + "integrity": "sha512-/xsqn21EGVdXI3EXSum1Yckj3ZVZugqyOZQ/CxYPBD/R+ko9NSUScf8tFF4dOKY+2pvSSJA/S+5B8s4Zr4kyvg==", "dev": true, "requires": { - "punycode": "^2.1.0" + "escalade": "^3.1.1", + "picocolors": "^1.0.0" }, "dependencies": { - "punycode": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", - "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", + "picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", "dev": true } } }, + "uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "requires": { + "punycode": "^2.1.0" + } + }, "urix": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", - "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=", + "integrity": "sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==", "dev": true }, "url": { "version": "0.11.0", "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", - "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=", + "integrity": "sha512-kbailJa29QrtXnxgq+DdCEGlbTeYM2eJUxsz6vjZavrCYPMIFHMKQmSKYAIuUK2i7hgPm28a8piX5NTUtM/LKQ==", "dev": true, "requires": { "punycode": "1.3.2", @@ -10438,37 +22127,26 @@ "punycode": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", - "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=", + "integrity": "sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw==", "dev": true } } }, "url-parse": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.4.4.tgz", - "integrity": "sha512-/92DTTorg4JjktLNLe6GPS2/RvAd/RGr6LuktmWSMLEOa6rjnlrFXNgSbSmkNvCoL2T028A0a1JaJLzRMlFoHg==", + "version": "1.5.10", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", + "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", "dev": true, "requires": { - "querystringify": "^2.0.0", + "querystringify": "^2.1.1", "requires-port": "^1.0.0" } }, "use": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/use/-/use-3.1.0.tgz", - "integrity": "sha512-6UJEQM/L+mzC3ZJNM56Q4DFGLX/evKGRg15UJHGB9X5j5Z3AFbgZvjUh2yq/UJUY4U5dh7Fal++XbNg1uzpRAw==", - "dev": true, - "requires": { - "kind-of": "^6.0.2" - }, - "dependencies": { - "kind-of": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==", - "dev": true - } - } + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", + "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", + "dev": true }, "util": { "version": "0.11.1", @@ -10477,46 +22155,57 @@ "dev": true, "requires": { "inherits": "2.0.3" + }, + "dependencies": { + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", + "dev": true + } } }, "util-deprecate": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", "dev": true }, "util.promisify": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.0.tgz", - "integrity": "sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.1.1.tgz", + "integrity": "sha512-/s3UsZUrIfa6xDhr7zZhnE9SLQ5RIXyYfiVnMMyMDzOc8WhWN4Nbh36H842OyurKbCDAesZOJaVyvmSl6fhGQw==", "dev": true, "requires": { - "define-properties": "^1.1.2", - "object.getownpropertydescriptors": "^2.0.3" + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "for-each": "^0.3.3", + "has-symbols": "^1.0.1", + "object.getownpropertydescriptors": "^2.1.1" } }, "utils-merge": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", - "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", "dev": true }, "uuid": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.3.2.tgz", - "integrity": "sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==", + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", "dev": true }, "v8-compile-cache": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.0.2.tgz", - "integrity": "sha512-1wFuMUIM16MDJRCrpbpuEPTUGmM5QMUg0cr3KFwra2XgOgFcPGDQHDh3CszSCD2Zewc/dh/pamNEW8CbfDebUw==", + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", + "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==", "dev": true }, "validate-npm-package-license": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.3.tgz", - "integrity": "sha512-63ZOUnL4SIXj4L0NixR3L1lcjO38crAbgrTpl28t8jjrfuiOBL5Iygm+60qPs/KsZGzPNg6Smnc/oY16QTjF0g==", + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", "dev": true, "requires": { "spdx-correct": "^3.0.0", @@ -10526,13 +22215,13 @@ "vary": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", - "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", "dev": true }, "verror": { "version": "1.10.0", "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", - "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", + "integrity": "sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==", "dev": true, "requires": { "assert-plus": "^1.0.0", @@ -10541,52 +22230,244 @@ } }, "vm-browserify": { - "version": "0.0.4", - "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-0.0.4.tgz", - "integrity": "sha1-XX6kW7755Kb/ZflUOOCofDV9WnM=", - "dev": true, - "requires": { - "indexof": "0.0.1" - } + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz", + "integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==", + "dev": true }, "w3c-hr-time": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.1.tgz", - "integrity": "sha1-gqwr/2PZUOqeMYmlimViX+3xkEU=", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz", + "integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==", "dev": true, "requires": { - "browser-process-hrtime": "^0.1.2" + "browser-process-hrtime": "^1.0.0" } }, - "w3c-xmlserializer": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-1.1.2.tgz", - "integrity": "sha512-p10l/ayESzrBMYWRID6xbuCKh2Fp77+sA0doRuGn4tTIMrrZVeqfpKjXHY+oDh3K4nLdPgNwMTVP6Vp4pvqbNg==", + "walker": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", + "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", "dev": true, "requires": { - "domexception": "^1.0.1", - "webidl-conversions": "^4.0.2", - "xml-name-validator": "^3.0.0" + "makeerror": "1.0.12" } }, - "walker": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.7.tgz", - "integrity": "sha1-L3+bj9ENZ3JisYqITijRlhjgKPs=", + "watchpack": { + "version": "1.7.5", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-1.7.5.tgz", + "integrity": "sha512-9P3MWk6SrKjHsGkLT2KHXdQ/9SNkyoJbabxnKOoJepsvJjJG8uYTR3yTPxPQvNDI3w4Nz1xnE0TLHK4RIVe/MQ==", "dev": true, "requires": { - "makeerror": "1.0.x" + "chokidar": "^3.4.1", + "graceful-fs": "^4.1.2", + "neo-async": "^2.5.0", + "watchpack-chokidar2": "^2.0.1" } }, - "watchpack": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-1.6.0.tgz", - "integrity": "sha512-i6dHe3EyLjMmDlU1/bGQpEw25XSjkJULPuAVKCbNRefQVq48yXKUpwg538F7AZTf9kyr57zj++pQFltUa5H7yA==", + "watchpack-chokidar2": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/watchpack-chokidar2/-/watchpack-chokidar2-2.0.1.tgz", + "integrity": "sha512-nCFfBIPKr5Sh61s4LPpy1Wtfi0HE8isJ3d2Yb5/Ppw2P2B/3eVSEBjKfN0fmHJSK14+31KwMKmcrzs2GM4P0Ww==", "dev": true, + "optional": true, "requires": { - "chokidar": "^2.0.2", - "graceful-fs": "^4.1.2", - "neo-async": "^2.5.0" + "chokidar": "^2.1.8" + }, + "dependencies": { + "anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "dev": true, + "optional": true, + "requires": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + }, + "dependencies": { + "normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", + "dev": true, + "optional": true, + "requires": { + "remove-trailing-separator": "^1.0.1" + } + } + } + }, + "binary-extensions": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", + "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", + "dev": true, + "optional": true + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "optional": true, + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + } + }, + "chokidar": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", + "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", + "dev": true, + "optional": true, + "requires": { + "anymatch": "^2.0.0", + "async-each": "^1.0.1", + "braces": "^2.3.2", + "fsevents": "^1.2.7", + "glob-parent": "^3.1.0", + "inherits": "^2.0.3", + "is-binary-path": "^1.0.0", + "is-glob": "^4.0.0", + "normalize-path": "^3.0.0", + "path-is-absolute": "^1.0.0", + "readdirp": "^2.2.1", + "upath": "^1.1.1" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "optional": true, + "requires": { + "is-extendable": "^0.1.0" + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", + "dev": true, + "optional": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + } + }, + "fsevents": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "dev": true, + "optional": true, + "requires": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + } + }, + "glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==", + "dev": true, + "optional": true, + "requires": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + }, + "dependencies": { + "is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", + "dev": true, + "optional": true, + "requires": { + "is-extglob": "^2.1.0" + } + } + } + }, + "is-binary-path": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", + "integrity": "sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==", + "dev": true, + "optional": true, + "requires": { + "binary-extensions": "^1.0.0" + } + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "dev": true, + "optional": true + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "optional": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "readdirp": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", + "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", + "dev": true, + "optional": true, + "requires": { + "graceful-fs": "^4.1.11", + "micromatch": "^3.1.10", + "readable-stream": "^2.0.2" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "optional": true, + "requires": { + "safe-buffer": "~5.1.0" + } + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", + "dev": true, + "optional": true, + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + } } }, "wbuf": { @@ -10605,122 +22486,63 @@ "dev": true }, "webpack": { - "version": "4.29.6", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.29.6.tgz", - "integrity": "sha512-MwBwpiE1BQpMDkbnUUaW6K8RFZjljJHArC6tWQJoFm0oQtfoSebtg4Y7/QHnJ/SddtjYLHaKGX64CFjG5rehJw==", - "dev": true, - "requires": { - "@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.0.5", - "acorn-dynamic-import": "^4.0.0", - "ajv": "^6.1.0", - "ajv-keywords": "^3.1.0", - "chrome-trace-event": "^1.0.0", - "enhanced-resolve": "^4.1.0", - "eslint-scope": "^4.0.0", + "version": "4.46.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.46.0.tgz", + "integrity": "sha512-6jJuJjg8znb/xRItk7bkT0+Q7AHCYjjFnvKIWQPkNIOyRqoCGvkOs0ipeQzrqz4l5FtN5ZI/ukEHroeX/o1/5Q==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/wasm-edit": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0", + "acorn": "^6.4.1", + "ajv": "^6.10.2", + "ajv-keywords": "^3.4.1", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^4.5.0", + "eslint-scope": "^4.0.3", "json-parse-better-errors": "^1.0.2", - "loader-runner": "^2.3.0", - "loader-utils": "^1.1.0", - "memory-fs": "~0.4.1", - "micromatch": "^3.1.8", - "mkdirp": "~0.5.0", - "neo-async": "^2.5.0", - "node-libs-browser": "^2.0.0", + "loader-runner": "^2.4.0", + "loader-utils": "^1.2.3", + "memory-fs": "^0.4.1", + "micromatch": "^3.1.10", + "mkdirp": "^0.5.3", + "neo-async": "^2.6.1", + "node-libs-browser": "^2.2.1", "schema-utils": "^1.0.0", - "tapable": "^1.1.0", - "terser-webpack-plugin": "^1.1.0", - "watchpack": "^1.5.0", - "webpack-sources": "^1.3.0" + "tapable": "^1.1.3", + "terser-webpack-plugin": "^1.4.3", + "watchpack": "^1.7.4", + "webpack-sources": "^1.4.1" }, "dependencies": { "acorn": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.1.1.tgz", - "integrity": "sha512-jPTiwtOxaHNaAPg/dmrJ/beuzLRnXtB0kQPQ8JpotKJgTB6rX6c8mlf315941pyjBSaPg8NHXS9fhP4u17DpGA==", - "dev": true - }, - "big.js": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", - "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", - "dev": true - }, - "json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", - "dev": true, - "requires": { - "minimist": "^1.2.0" - } - }, - "loader-utils": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz", - "integrity": "sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==", - "dev": true, - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^2.0.0", - "json5": "^1.0.1" - } - }, - "minimist": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", - "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", + "version": "6.4.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.2.tgz", + "integrity": "sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==", "dev": true } } }, "webpack-cli": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-3.3.0.tgz", - "integrity": "sha512-t1M7G4z5FhHKJ92WRKwZ1rtvi7rHc0NZoZRbSkol0YKl4HvcC8+DsmGDmK7MmZxHSAetHagiOsjOB6MmzC2TUw==", + "version": "3.3.12", + "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-3.3.12.tgz", + "integrity": "sha512-NVWBaz9k839ZH/sinurM+HcDvJOTXwSjYp1ku+5XKeOC03z8v5QitnK/x+lAxGXFyhdayoIf/GOpv85z3/xPag==", "dev": true, "requires": { - "chalk": "^2.4.1", + "chalk": "^2.4.2", "cross-spawn": "^6.0.5", - "enhanced-resolve": "^4.1.0", - "findup-sync": "^2.0.0", - "global-modules": "^1.0.0", + "enhanced-resolve": "^4.1.1", + "findup-sync": "^3.0.0", + "global-modules": "^2.0.0", "import-local": "^2.0.0", - "interpret": "^1.1.0", - "loader-utils": "^1.1.0", - "supports-color": "^5.5.0", - "v8-compile-cache": "^2.0.2", - "yargs": "^12.0.5" + "interpret": "^1.4.0", + "loader-utils": "^1.4.0", + "supports-color": "^6.1.0", + "v8-compile-cache": "^2.1.1", + "yargs": "^13.3.2" }, "dependencies": { - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "requires": { - "color-convert": "^1.9.0" - } - }, - "big.js": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", - "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", - "dev": true - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, "cross-spawn": { "version": "6.0.5", "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", @@ -10734,36 +22556,16 @@ "which": "^1.2.9" } }, - "json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", - "dev": true, - "requires": { - "minimist": "^1.2.0" - } - }, - "loader-utils": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz", - "integrity": "sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==", - "dev": true, - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^2.0.0", - "json5": "^1.0.1" - } - }, - "minimist": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", - "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", "dev": true }, "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", "dev": true, "requires": { "has-flag": "^3.0.0" @@ -10772,141 +22574,250 @@ } }, "webpack-dev-middleware": { - "version": "3.6.1", - "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-3.6.1.tgz", - "integrity": "sha512-XQmemun8QJexMEvNFbD2BIg4eSKrmSIMrTfnl2nql2Sc6OGAYFyb8rwuYrCjl/IiEYYuyTEiimMscu7EXji/Dw==", + "version": "3.7.3", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-3.7.3.tgz", + "integrity": "sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ==", "dev": true, "requires": { "memory-fs": "^0.4.1", - "mime": "^2.3.1", - "range-parser": "^1.0.3", + "mime": "^2.4.4", + "mkdirp": "^0.5.1", + "range-parser": "^1.2.1", "webpack-log": "^2.0.0" }, "dependencies": { "mime": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-2.4.0.tgz", - "integrity": "sha512-ikBcWwyqXQSHKtciCcctu9YfPbFYZ4+gbHEmE0Q8jzcTYQg5dHCr3g2wwAZjPoJfQVXZq6KXAjpXOTf5/cjT7w==", + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz", + "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==", "dev": true } } }, "webpack-dev-server": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-3.2.1.tgz", - "integrity": "sha512-sjuE4mnmx6JOh9kvSbPYw3u/6uxCLHNWfhWaIPwcXWsvWOPN+nc5baq4i9jui3oOBRXGonK9+OI0jVkaz6/rCw==", + "version": "3.11.3", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-3.11.3.tgz", + "integrity": "sha512-3x31rjbEQWKMNzacUZRE6wXvUFuGpH7vr0lIEbYpMAG9BOxi0928QU1BBswOAP3kg3H1O4hiS+sq4YyAn6ANnA==", "dev": true, "requires": { - "ansi-html": "0.0.7", + "ansi-html-community": "0.0.8", "bonjour": "^3.5.0", - "chokidar": "^2.0.0", - "compression": "^1.5.2", - "connect-history-api-fallback": "^1.3.0", + "chokidar": "^2.1.8", + "compression": "^1.7.4", + "connect-history-api-fallback": "^1.6.0", "debug": "^4.1.1", - "del": "^3.0.0", - "express": "^4.16.2", - "html-entities": "^1.2.0", - "http-proxy-middleware": "^0.19.1", + "del": "^4.1.1", + "express": "^4.17.1", + "html-entities": "^1.3.1", + "http-proxy-middleware": "0.19.1", "import-local": "^2.0.0", - "internal-ip": "^4.2.0", + "internal-ip": "^4.3.0", "ip": "^1.1.5", - "killable": "^1.0.0", - "loglevel": "^1.4.1", - "opn": "^5.1.0", - "portfinder": "^1.0.9", + "is-absolute-url": "^3.0.3", + "killable": "^1.0.1", + "loglevel": "^1.6.8", + "opn": "^5.5.0", + "p-retry": "^3.0.1", + "portfinder": "^1.0.26", "schema-utils": "^1.0.0", - "selfsigned": "^1.9.1", - "semver": "^5.6.0", - "serve-index": "^1.7.2", - "sockjs": "0.3.19", - "sockjs-client": "1.3.0", - "spdy": "^4.0.0", - "strip-ansi": "^3.0.0", + "selfsigned": "^1.10.8", + "semver": "^6.3.0", + "serve-index": "^1.9.1", + "sockjs": "^0.3.21", + "sockjs-client": "^1.5.0", + "spdy": "^4.0.2", + "strip-ansi": "^3.0.1", "supports-color": "^6.1.0", "url": "^0.11.0", - "webpack-dev-middleware": "^3.5.1", + "webpack-dev-middleware": "^3.7.2", "webpack-log": "^2.0.0", - "yargs": "12.0.2" + "ws": "^6.2.1", + "yargs": "^13.3.2" }, "dependencies": { "ansi-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", - "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", "dev": true }, - "camelcase": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz", - "integrity": "sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=", + "anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "dev": true, + "requires": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + }, + "dependencies": { + "normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", + "dev": true, + "requires": { + "remove-trailing-separator": "^1.0.1" + } + } + } + }, + "binary-extensions": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", + "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", "dev": true }, - "debug": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", - "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", "dev": true, "requires": { - "ms": "^2.1.1" + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" } }, - "decamelize": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-2.0.0.tgz", - "integrity": "sha512-Ikpp5scV3MSYxY39ymh45ZLEecsTdv/Xj2CaQfI8RLMuwi7XvjX9H/fhraiSuU+C5w5NTDu4ZU72xNiZnurBPg==", + "chokidar": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", + "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", "dev": true, "requires": { - "xregexp": "4.0.0" + "anymatch": "^2.0.0", + "async-each": "^1.0.1", + "braces": "^2.3.2", + "fsevents": "^1.2.7", + "glob-parent": "^3.1.0", + "inherits": "^2.0.3", + "is-binary-path": "^1.0.0", + "is-glob": "^4.0.0", + "normalize-path": "^3.0.0", + "path-is-absolute": "^1.0.0", + "readdirp": "^2.2.1", + "upath": "^1.1.1" } }, - "find-up": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", - "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", "dev": true, "requires": { - "locate-path": "^3.0.0" + "is-extendable": "^0.1.0" } }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", - "dev": true - }, - "ms": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", - "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==", - "dev": true + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + } }, - "semver": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz", - "integrity": "sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==", - "dev": true + "fsevents": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "dev": true, + "optional": true, + "requires": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + } }, - "string-width": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", - "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", + "glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==", "dev": true, "requires": { - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^4.0.0" + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" }, "dependencies": { - "strip-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", "dev": true, "requires": { - "ansi-regex": "^3.0.0" + "is-extglob": "^2.1.0" } } } }, + "is-binary-path": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", + "integrity": "sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==", + "dev": true, + "requires": { + "binary-extensions": "^1.0.0" + } + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "dev": true + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "readdirp": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", + "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.11", + "micromatch": "^3.1.10", + "readable-stream": "^2.0.2" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", + "dev": true, + "requires": { + "ansi-regex": "^2.0.0" + } + }, "supports-color": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", @@ -10916,33 +22827,23 @@ "has-flag": "^3.0.0" } }, - "yargs": { - "version": "12.0.2", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-12.0.2.tgz", - "integrity": "sha512-e7SkEx6N6SIZ5c5H22RTZae61qtn3PYUE8JYbBFlK9sYmh3DMQ6E5ygtaG/2BW0JZi4WGgTR2IV5ChqlqrDGVQ==", + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", "dev": true, "requires": { - "cliui": "^4.0.0", - "decamelize": "^2.0.0", - "find-up": "^3.0.0", - "get-caller-file": "^1.0.1", - "os-locale": "^3.0.0", - "require-directory": "^2.1.1", - "require-main-filename": "^1.0.1", - "set-blocking": "^2.0.0", - "string-width": "^2.0.0", - "which-module": "^2.0.0", - "y18n": "^3.2.1 || ^4.0.0", - "yargs-parser": "^10.1.0" + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" } }, - "yargs-parser": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-10.1.0.tgz", - "integrity": "sha512-VCIyR1wJoEBZUqk5PA+oOBF6ypbwh5aNB3I50guxAL/quggdfs4TtNHQrSazFA3fYZ+tEqfs0zIGlv0c/rgjbQ==", + "ws": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.2.tgz", + "integrity": "sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==", "dev": true, "requires": { - "camelcase": "^4.1.0" + "async-limiter": "~1.0.0" } } } @@ -10958,37 +22859,30 @@ } }, "webpack-sources": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.3.0.tgz", - "integrity": "sha512-OiVgSrbGu7NEnEvQJJgdSFPl2qWKkWq5lHMhgiToIiN9w34EBnjYzSYs+VbL5KoYiLNtFFa7BZIKxRED3I32pA==", + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz", + "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==", "dev": true, "requires": { "source-list-map": "^2.0.0", "source-map": "~0.6.1" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - } } }, "websocket-driver": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.0.tgz", - "integrity": "sha1-DK+dLXVdk67gSdS90NP+LMoqJOs=", + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", + "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", "dev": true, "requires": { - "http-parser-js": ">=0.4.0", + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", "websocket-extensions": ">=0.1.1" } }, "websocket-extensions": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.3.tgz", - "integrity": "sha512-nqHUnMXmBzT0w570r2JpJxfiSD1IzoI+HGVdd3aZ0yNi3ngvQ4jv1dtHt5VGxfI2yj5yqImPhOK4vmIh2xMbGg==", + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", + "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", "dev": true }, "whatwg-encoding": { @@ -10998,24 +22892,8 @@ "dev": true, "requires": { "iconv-lite": "0.4.24" - }, - "dependencies": { - "iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "dev": true, - "requires": { - "safer-buffer": ">= 2.1.2 < 3" - } - } } }, - "whatwg-fetch": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-2.0.4.tgz", - "integrity": "sha512-dcQ1GWpOD/eEQ97k66aiEVpNnapVj90/+R+SXTPYGHpYBBypfKJEQjLrvMZ7YXbKm21gXd4NcuxUTjiv1YtLng==" - }, "whatwg-mimetype": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz", @@ -11034,49 +22912,63 @@ } }, "which": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.0.tgz", - "integrity": "sha512-xcJpopdamTuY5duC/KnTTNBraPK54YwpenP4lzxU8H91GudWpFv38u0CKjclE1Wi2EH2EDz5LRcHcKbCIzqGyg==", + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", "dev": true, "requires": { "isexe": "^2.0.0" } }, + "which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "dev": true, + "requires": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + } + }, "which-module": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", - "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=", + "integrity": "sha512-B+enWhmw6cjfVC7kS8Pj9pCrKSc5txArRyaYGe088shv/FGWH+0Rjx/xPgtsWfsUtS27FkP697E4DDhgrgoc0Q==", "dev": true }, - "wordwrap": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz", - "integrity": "sha1-t5Zpu0LstAn4PVg8rVLKF+qhZD8=", + "word-wrap": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", + "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", "dev": true }, "worker-farm": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/worker-farm/-/worker-farm-1.6.0.tgz", - "integrity": "sha512-6w+3tHbM87WnSWnENBUvA2pxJPLhQUg5LKwUQHq3r+XPhIM+Gh2R5ycbwPCyuGbNg+lPgdcnQUhuC02kJCvffQ==", + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/worker-farm/-/worker-farm-1.7.0.tgz", + "integrity": "sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==", "dev": true, "requires": { "errno": "~0.1.7" } }, "wrap-ansi": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz", - "integrity": "sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", + "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", "dev": true, "requires": { - "string-width": "^1.0.1", - "strip-ansi": "^3.0.1" + "ansi-styles": "^3.2.0", + "string-width": "^3.0.0", + "strip-ansi": "^5.0.0" } }, "wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", "dev": true }, "write-file-atomic": { @@ -11091,9 +22983,9 @@ } }, "ws": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/ws/-/ws-5.2.2.tgz", - "integrity": "sha512-jaHFD6PFv6UgoIVda6qZllptQsMlDEJkTQcybzzXDYM1XO9Y8em691FGMPmM46WGyLU4z9KMgQN+qrux/nhlHA==", + "version": "5.2.3", + "resolved": "https://registry.npmjs.org/ws/-/ws-5.2.3.tgz", + "integrity": "sha512-jZArVERrMsKUatIdnLzqvcfydI85dvd/Fp1u/VOpfdDWQ4c9qWXe+VIeAbQ5FrDwciAkr+lzofXLz3Kuf26AOA==", "dev": true, "requires": { "async-limiter": "~1.0.0" @@ -11106,117 +22998,61 @@ "dev": true }, "xml2js": { - "version": "0.4.19", - "resolved": "https://registry.npmjs.org/xml2js/-/xml2js-0.4.19.tgz", - "integrity": "sha512-esZnJZJOiJR9wWKMyuvSE1y6Dq5LCuJanqhxslH2bxM6duahNZ+HMpCLhBQGZkbX6xRf8x1Y2eJlgt2q3qo49Q==", + "version": "0.4.23", + "resolved": "https://registry.npmjs.org/xml2js/-/xml2js-0.4.23.tgz", + "integrity": "sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug==", "dev": true, "requires": { "sax": ">=0.6.0", - "xmlbuilder": "~9.0.1" + "xmlbuilder": "~11.0.0" } }, "xmlbuilder": { - "version": "9.0.7", - "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-9.0.7.tgz", - "integrity": "sha1-Ey7mPS7FVlxVfiD0wi35rKaGsQ0=", - "dev": true - }, - "xmlchars": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-1.3.1.tgz", - "integrity": "sha512-tGkGJkN8XqCod7OT+EvGYK5Z4SfDQGD30zAa58OcnAa0RRWgzUEK72tkXhsX1FZd+rgnhRxFtmO+ihkp8LHSkw==", - "dev": true - }, - "xregexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/xregexp/-/xregexp-4.0.0.tgz", - "integrity": "sha512-PHyM+sQouu7xspQQwELlGwwd05mXUFqwFYfqPO0cC7x4fxyHnnuetmQr6CjJiafIDoH4MogHb9dOoJzR/Y4rFg==", + "version": "11.0.1", + "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-11.0.1.tgz", + "integrity": "sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==", "dev": true }, "xtend": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz", - "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=", + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", "dev": true }, "y18n": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-3.2.1.tgz", - "integrity": "sha1-bRX7qITAhnnA136I53WegR4H+kE=", + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", + "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==", "dev": true }, "yallist": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", - "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=", + "integrity": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==", "dev": true }, "yargs": { - "version": "12.0.5", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-12.0.5.tgz", - "integrity": "sha512-Lhz8TLaYnxq/2ObqHDql8dX8CJi97oHxrjUcYtzKbbykPtVW9WB+poxI+NM2UIzsMgNCZTIf0AQwsjK5yMAqZw==", + "version": "13.3.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz", + "integrity": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==", "dev": true, "requires": { - "cliui": "^4.0.0", - "decamelize": "^1.2.0", + "cliui": "^5.0.0", "find-up": "^3.0.0", - "get-caller-file": "^1.0.1", - "os-locale": "^3.0.0", + "get-caller-file": "^2.0.1", "require-directory": "^2.1.1", - "require-main-filename": "^1.0.1", + "require-main-filename": "^2.0.0", "set-blocking": "^2.0.0", - "string-width": "^2.0.0", + "string-width": "^3.0.0", "which-module": "^2.0.0", - "y18n": "^3.2.1 || ^4.0.0", - "yargs-parser": "^11.1.1" - }, - "dependencies": { - "ansi-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", - "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", - "dev": true - }, - "find-up": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", - "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", - "dev": true, - "requires": { - "locate-path": "^3.0.0" - } - }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", - "dev": true - }, - "string-width": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", - "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", - "dev": true, - "requires": { - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^4.0.0" - } - }, - "strip-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", - "dev": true, - "requires": { - "ansi-regex": "^3.0.0" - } - } + "y18n": "^4.0.0", + "yargs-parser": "^13.1.2" } }, "yargs-parser": { - "version": "11.1.1", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-11.1.1.tgz", - "integrity": "sha512-C6kB/WJDiaxONLJQnF8ccx9SEeoTTLek8RVbaOIsrAUS8VrBEXfmeSnCZxygc+XC2sNMBIwOOnfcxiynjHsVSQ==", + "version": "13.1.2", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz", + "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", "dev": true, "requires": { "camelcase": "^5.0.0", diff --git a/package.json b/package.json index cd7a3f1e5..56f4522e3 100644 --- a/package.json +++ b/package.json @@ -54,7 +54,7 @@ "webpack-dev-server": "^3.2.1" }, "dependencies": { - "camel-case": "^3.0.0", + "camel-case": "^4.1.2", "prop-types": "^15.5.8" } } diff --git a/src/SvgIcon.js b/src/SvgIcon.js index 792c04e63..a20aa2319 100644 --- a/src/SvgIcon.js +++ b/src/SvgIcon.js @@ -1,7 +1,7 @@ import React, { createElement } from 'react'; import PropTypes from 'prop-types'; -import camelcase from 'camel-case'; +import { camelCase as camelcase } from 'camel-case'; function notNullOrUndef(val) { return (val !== null && val !== undefined)